diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000000000000000000000000000000000..7bb520811b6ddf55ad89a374191cb010da074961 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,6 @@ +datasets/ +embeddings/ +sparse/ +Dockerfile +indexes +.dockerignore diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..dc4fcbbd826d6ac9f4a9c0436a6da99e2076df1c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +pyserini/resources/jars/anserini-0.21.1-SNAPSHOT-fatjar.jar filter=lfs diff=lfs merge=lfs -text +runs/q=NQtest_c=wikidpr_m=bm25.run filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..d51c400d8207d8d70a18efe5af00b987132859fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +*~ +.DS_Store +.idea +__pycache__ +*.pyc +pyserini/resources/jars/*.jar +collections/* +indexes/* +.vscode/ +venv/ +datasets/ +embeddings/ + +# build directories from `python3 setup.py sdist bdist_wheel` +build/ +dist/ +pyserini.egg-info/ + +# runs should be ignored +runs/ + +# logs should also be ignored +logs/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..a9456006ba8948b02c679291df9dce8aef2a475a --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "tools"] + path = tools + url = https://github.com/castorini/anserini-tools.git diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..08e5464229aeb08f8be84ab48de65b5343ecf75d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,53 @@ +FROM nvcr.io/nvidia/pytorch:22.01-py3 + +ENV HOME=/root +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ARG DEBIAN_FRONTEND=noninteractive + +# APP_PATH: assumed to be volume mounted with host +ENV APP_PATH=$HOME/np_app_text_retrieval_inference +ENV PYTHONPATH $APP_PATH + +# EXTERNAL_PATH: assumed having system specific files, not volume mounted with host +ENV EXTERNAL_PATH=/workspace/external +RUN mkdir -p $EXTERNAL_PATH + +WORKDIR $APP_PATH +COPY . $APP_PATH/ + +### ubuntu package +RUN apt-get update +RUN apt-get install git vim unzip wget ffmpeg libsm6 libxext6 -y + +### conda +# note that retriever (based on pyserini) support cpu only for faiss +RUN conda install -c conda-forge faiss-cpu + +### pip +# install editable mode +RUN pip install --upgrade pip && \ + pip install --no-binary :all: nmslib && \ + pip install -e . + +# update java version >= 11 +WORKDIR $EXTERNAL_PATH +RUN cp $APP_PATH/download_oracle_jdk.sh $EXTERNAL_PATH/ +RUN sh download_oracle_jdk.sh +RUN ln -sf ${EXTERNAL_PATH}/jdk-20.0.2/bin/java /opt/conda/bin/java +ENV JAVA_HOME=${EXTERNAL_PATH}/jdk-20.0.2 + +# anserini: need for sparse retrieval/indexing +RUN conda install -c conda-forge maven +RUN mvn -v +RUN git clone https://github.com/castorini/anserini.git +RUN cd anserini && \ + mvn clean -Dmaven.test.skip=true package appassembler:assemble + +# copy fatjar from anserini to app +# will be done at entrypoint +#COPY $EXTERNAL_PATH/anserini/target/anserini-*-fatjar.jar $APP_PATH/pyserini/resources/jars + +## entrypoint: call entrypoint.sh instead +WORKDIR $APP_PATH +#CMD ["bash"] \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..87316b5d920ec55b028c9b830c20abde62062334 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,191 @@ + + 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 + + Copyright 2019-2021 Pyserini authors + + 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. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000000000000000000000000000000000..4ec56fc4d5a1f78f356387aaa7f53bb1aba8e482 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +include *.md +include requirements.txt +include pyserini/2cr/*.yaml +include pyserini/2cr/*.template +include pyserini/resources/jars/anserini-*-fatjar.jar \ No newline at end of file diff --git a/README.md b/README.md index 5b3756bbad63f20ae473fdfe532102c69c63bda6..1e2663996c54151def36500ee197bb545f4822c2 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,261 @@ --- -title: NetsPresso QA -emoji: 📉 -colorFrom: red -colorTo: pink +title: NetsPresso_QA +app_file: run_ralm_netspresso_doc.py sdk: gradio -sdk_version: 3.43.2 -app_file: app.py -pinned: false +sdk_version: 3.41.2 --- +# Text retrieval inference (indexing, search) + +## Installation +1. 저장소 다운로드 + +```bash +git clone https://github.com/nota-github/np_app_text_retrieval_inference +``` + +2. 모델 환경이 정의된 도커 이미지 생성 및 실행 +```bash +cd np_app_semantic_search_inference +docker build --cache-from notadockerhub/np_app_text_retrieval_inference:latest -t notadockerhub/np_app_text_retrieval_inference:latest -f ./Dockerfile . +docker run --name {container_name} --shm-size=8g -it --gpus '"device=0"' -v {your_code_dir}:/root/np_app_text_retrieval_inference -v /{your_data_dir}:/workspace/datasets notadockerhub/np_app_text_retrieval_inference:latest +``` + +* retrieval시에는 gpu가 BERT 기반의 query encoding시에만 사용됩니다. 전체 시간에서는 적은 비율을 차지하므로 cpu만 사용해도 속도에서 큰 차이는 없습니다. +* 원하는 문서들을 indexing하는 경우 BERT를 이용하여 일회성으로 encoding하는데, 이 경우는 gpu를 사용하면 cpu보다 많은 시간을 절약할 수 있습니다. + * 현재 구현에서는 single gpu 사용만을 지원하고 있으며, multi gpu 사용을 위해서는 individual process를 만들어서 병렬로 처리해야 합니다. + +* 대부분의 코드는 [pyserini](https://github.com/castorini/pyserini)에 기반하고 있습니다. + +## Dataset +``` +datasets + |-- dataset_name + | |-- collection.jsonl + | |-- queries.tsv + | |-- qrels.txt (optional, 정량평가를 원할 경우) +``` + +* collection.jsonl: each line is `{"id": "PASSAGE_ID", "contents": "CONTENTS"}`. +* queries.tsv: each line is `QUERY_ID\tCONTENTS`. +* qrels.txt: each line is `QUERY_ID QUERY_TYPE PASSAGE_ID RELEVANCE_SCORE`. + +## Recommended retriever +* sparse model: BM25 +* dense model + * multi-lingual: mDPR, mContriever + * multi-vector: colBERT +* hybrid model: sparse (first-pass) + dense (reranking) +* 다국어를 encode하는 baseline 모델은 `castorini/mdpr-question-nq`을 사용. +* 언어별 다양한 pre-trained 모델은 [HuggingFace model hub](https://huggingface.co/models)에서 검색 해볼 수 있음. + +## Sample dataset +* [mrtydi-korean](https://github.com/castorini/mr.tydi) + * 11개 언어를 포함한 다국어 검색을 위한 benchmark dataset + * 한국어의 경우 1496126개의 passage와 421개의 test query를 제공함 + * `title`과 `text`를 포함한 multi-field를 활용할 수 있음 (일반적으로는 `text`만 사용 가능) +* [data hub](https://www.notion.so/notaai/Data-Hub-V1-Current-Version-45b0b0aa62084b3e985244ebb264d444?pvs=4)에서 원본 데이터 및 indexing된 결과물을 다운받을 수 있음. + * @data_hub:/ssd2/np_app/Dataset_Hub/Semantic_Search/{corpus,indexes} + +## Procedure + +### 1. Indexing +* Fast retrieval을 위해서 collection의 passage에 대한 indexing을 미리 계산함 +* indexing 과정은 미리 만들둔것을 사용해도 됨 + * mrtydi-korean의 경우 data hub에 존재 + * [pre-built indexes for benchmark corpus/model](https://github.com/castorini/pyserini/blob/master/docs/prebuilt-indexes.md) +
+ +* dense model +``` +python -m pyserini.encode \ + input --corpus /path/to/dataset/collection.jsonl \ + --fields text \ + output --embeddings indexes/dataset_name/dense \ + --to-faiss \ + encoder --encoder huggingface_model_name_or_checkpoint_path \ + --fields text \ + --max-length $MAX_LENGTH \ + --batch $BATCH_SIZE \ + --fp16 +``` +* huggingface_model_name_or_checkpoint_path: huggingface model hub에서 제공하는 모델 이름 또는 checkpoint path + * e.g., mrtydi의 경우: `castorini/mdpr-passage-nq` 사용 (retrieval시의 query encoding: `castorini/mdpr-question-nq`) + * tied(vs. split)의 경우 passage/query encoder가 같음(vs. 다름) + +* sparse model +``` +python -m pyserini.index.lucene \ + --collection JsonCollection \ + --input datasets/dataset_name/collection.jsonl \ + --index /path/to/indexing/sparse \ + --fields text \ + --generator DefaultLuceneDocumentGenerator \ + --language $LANG_CODE \ + --threads $NUM_THREADS \ + --storePositions --storeDocvectors --storeRaw +``` +* language code의 경우 ISO 639-1 방식을 따름 (e.g., en, ko, ja, zh) + +* multifield를 활용할 경우 collection의 "contents"의 텍스트내에 field들을 \n으로 구분하고, --fields에 field 이름들(i.e., --fields title text)을 넣어줌. + * mrtydi의 경우 delimiter를 '\n\n'으로 사용함 +``` +{"id": "5#1", "contents": "지미 카터\n\n지미 카터는 조지아주 섬터 카운티 플레인스 마을에서 태어났다. 조지아 공과대학교를 졸업하였다. 그 후 해군에 들어가 전함·원자력·잠수함의 승무원으로 일하였다. 1953년 미국 해군 대위로 예편하였고 이후 땅콩·면화 등을 가꿔 많은 돈을 벌었다. 그의 별명이 \"땅콩 농부\" (Peanut Farmer)로 알려졌다."} +``` + +* MAX_LENGTH: positional embedding의 최대 길이 (e.g., BERT: 512, DPR: 256) + +* 결과물 (dir: /path/to/indexing) + - docid: sets of passage id + - index: concatenation of (compressed) index vectors, binary file + +### 2. Search +* Indexing된 collection에 대하여 query에 대한 ranking 수행 + +#### online +* with sparse indexing +``` +export QUERY="최초로 전기 자동차를 개발한 기업은 어디인가?" +python search_online.py --index_type sparse --index /path/to/indexing/sparse --query "$QUERY" --lang_abbr $LANG_CODE +``` +
+ 결과 예시 +

+ 1 1830196#0       21.52590
+{
+  "id" : "1830196#0",
+  "contents" : "창안 자동차(, )는 중화인민공화국의 자동차 제조 기업이다. 본사는 충칭 시에 있다. 디이 자동차, 둥펑 자동차, 상하이 자동차, 체리 자동차와 함께 중화인민공화국의 5대 자동차 제조 기업으로 여겨진다. 중화인민공화국의 자동차 제조 및 판매, 자동차 엔진 제품 제조 업체이다. 1862년 상하이 시에서 이홍장에 의해 설립되었으며 1950년대 말에 지프를 최초로 생산하면서 자동차 제조 기업이 되었다. 1996년 10월 31일 법인설립되었고 대표자는 장 바오린이다. 1984년에는 일본의 자동차 제조 기업인 스즈키와 제휴 관계를 수립했고 2001년에는 포드 모터 컴퍼니를 합병하면서 창안 포드 자동차(長安福特汽車)가 설립되었다. 2009년에는 하페이 자동차(哈飛汽車), 창허 자동차(昌河汽車)를 합병했다. 충칭 자동차 생산의 태반은 창안자동차가 담당하고 있다. 창안은 1959년 이후 차를 만들어온 국유기업으로 2차대전의 미군용 지프를 본떠 만든 군용트럭이 시발점이었다. 오늘날 라인업은 전기차 하나를 비롯한 17개 모델로 확대됐다. 7개 조립공장과 1개 엔진공장을 통해 한해 약 100만 대를 만든다. 여기에다가 창안은 포드, 푸조와 스즈키와도 합작하고 있어 한해 생산량은 300만 대에 이른다. 창안자동차는 글로벌연구개발시스템을 가동중에 있다. 현재 충칭, 베이징, 허베이, 허페이, 이탈리아 토리노, 일본 요코하마, 영국 버밍엄, 미국 디트로이트 등지에 연구개발센터를 설립하였다. 우리나라 한온시스템은 독일 폴크스바겐, 중국 창안자동차 등에 친환경차용 전동식 컴프레셔를 납품하고 있다."
+}
+ 2 128660#8        19.02320
+{
+  "id" : "128660#8",
+  "contents" : "1990년대에 들어선 직후 가솔린자동차에 의한 환경오염문제가 대두되었다. 1996년 제너럴 모터스(GM)사는 양산 전기차 1호로 볼 수 있는 'EV1' 전기자동차를 개발한다. 이 전기자동차는 미국 캘리포니아 지역에서 임대형식으로 보급된다. 그러나 GM사는 수요가 크지 않아 수익성이 낮다는 이유로 1년만에 전기자동차 'EV1'의 조립라인을 폐쇄한다."
+}
+ 3 320611#0        18.99790
+{
+  "id" : "320611#0",
+  "contents" : "기아 그랜토(Kia Granto) 또는 아시아 그랜토(Asia Granto)는 1995년에 아시아자동차가 생산한 대형 트럭이다. 기아차가 일본 히노 자동차와 기술 제휴해서 히노 프로피아의 차체로 개발한 대형 트럭이다. 기존의 AM 트럭의 후속 차종으로 개발한 트럭으로, 아시아자동차가 창사 30주년을 기념해서 개발한 트럭이다. 선택 사양으로 ABS 브레이크, 속도 제한 장치, 브레이크 라이닝 간극 자동 조정 장치, 오토 그리스, 튜브형 브레이크 파이프, 전기식 변속기 전환 장치 등을 탑재하였다. 1997년에 대한민국산 트럭 최초로 U자형 적재함을 탑재하였으며, 최고 출력 430마력의 FY(8×4) 23톤 덤프 트럭을 출시하였다. 1999년에 아시아자동차가 기아자동차에게 흡수 합병되었으며, 이후 기아자동차에서 생산하다가 2000년 8월에 배기 가스 규제를 충족시키지 못하여 후속 차종 없이 단종되면서, 기아자동차는 대형 트럭 사업을 스카니아 코리아에 양도함에 따라 대형 트럭의 시장에서 완전히 철수하였다."
+}
+ 4 1226703#1       18.78540
+{
+  "id" : "1226703#1",
+  "contents" : "1845년에 회사를 창립 했으며 독일의 전지형 기중기 생산하는 기업 중 가장 오래되었다. 1868년에 말이 끄는 소방차를 개발했으며 1890년에 최초로 증기 소방 차량을 생산했다. 1914년에 최초로 트럭과 특수 차량을 제작했다. 1918년에 안스바흐 자동차 공장과 뉘르베르크 자동차 공장을 합병했다. 1937년에 3축 트럭을 생산 했으며 1943년에 제2차 세계대전으로 기존 공장이 파괴되면서 새로운 공장을 건설했다. 1956년에 군사 목적을 위해 대형 트력과 장비를 개발했다. 1960년대에 최초로 기중기를 제작하기 시작 했으며 1970년대부터 1980년대까지 개발했다. 1985년에 최대 50톤 용량의 가진 전지형 기중기를 개발했다. 1990년 일본의 기중기 회사였던 타다노에 인수 되었다. 1991년에 일본 수출을 위해 전지형 기중기를 생산했다. 1995년에 회사 창립 150주년이 되었다. 2004년에 최초로 험지형 기중기를 제작한데 이어 2009년에 트럭 기중기를 제작했다. 2013년에 공장을 확장 및 이전하면서 현재에 이르고 있다."
+}
+ 5 1045157#14      18.30410
+{
+  "id" : "1045157#14",
+  "contents" : "2010년 3월 세계최초의 2000cc급 자동차를 위한 15Kw급 BLDC발전기 개발, 전기자동차의 주행거 리 제한 극복 세계최초의 동급 내연이륜차의 성능을 능가하는 전기스쿠터 힐리스 모델출시 및 신차발표회 EV전시장 오픈"
+}
+ 6 128661#7        17.92510
+{
+  "id" : "128661#7",
+  "contents" : "1991년 11월 21일 현대자동차는 한국내에서는 최초의 전기자동차를 독자개발했다고 발표했다."
+}
+ 7 1312657#1       17.78780
+{
+  "id" : "1312657#1",
+  "contents" : "1939년에 이탈리아 나폴리 출신인 빈센조 앙헬레스 게르바지오()와 타예레스 나폴리()에 의해 설립했다. 제2차 세계대전 당시 스페인에서 트럭을 생산하기 위해 차체 및 용접을 했으나, 이후 샤시에 특장 트럭 캡 디자인을 개발했다. 1958년에 최초로 공장이 이전되면서 버스를 생산하기 시작했다. 1960년에 세계 최초로 2층 버스를 생산했다. 1962년에 생산 공장이 재이전 되면서 팩토리아스 나폴리스 SA()에 인수되었다. 이 회사는 상용차를 생산한 업체로 주로 버스와 트럭을 생산했다. 1966년에 바헤이로스 디젤 SA()에 매각했다. 1969년에 다시 크라이슬러에 마각이 되었지만 버스 제조 부문의 경우 1971년에 벨기에의 자동차 제조 기업인 반호르에 매각되었다. 1983년에 반호르가 최대 주주가 되었고 인수 최기에 반호르의 브랜드로 차량 생산을 했지만 이후 이스파노 카로세라 SAL()로 사명이 변경되었다. 1997년에 이탈리아의 자동차 제조 기업인 피닌파라나()와 제휴를 맺고 시내버스 모델인 아비토와 고속버스 모델인 디보를 개발하기 시작했다. 2000년 9월에 모로코의 수도 카사블랑카에 공장을 설립했다. 2005년에 인도의 자동차 제조 기업인 타타자동차가 21%의 지분을 획득한데 이어 2009년에 지분 79%를 인수하면서 자회사가 되었다. 2010년에 현재의 사명으로 변경이 되었다. 2013년 9월에 타타자동차는 사라고사 공장 폐쇄를 발표했다. 매출 하락과 미래 전망이 불투명으로 폐쇄 결정을 내렸다."
+}
+ 8 128660#63       17.71300
+{
+  "id" : "128660#63",
+  "contents" : "후지중공업과 마츠비시 자동차는 2005년 8월에 전기자동차의 개발 계획을 발표하였다. 이 2개 회사가 거의 중지 상태였던 전기자동차의 개발을 재개하고 있다. 2008년에 들어 닛산-르노 연합이 전기자동차로 본격 참여 방침을 표명하였고, 도요타도 2010년대 초반에 전기자동차를 출시하기로 발표하는 등 전기 자동차가 활성화 조짐을 보이고 있다."
+}
+ 9 126891#2        17.63640
+{
+  "id" : "126891#2",
+  "contents" : "2007년, 스웨덴의 대표 자동차 메이커인 볼보는 세계 최초로 에탄올 자동차를 제작해서 자동차 경주에 참가했다. 스웨덴에서는 가솔린 자동차의 도시내 사용을 줄이고, 시민들이 자전거로 생활할 수 있게끔 유도하고 있다. 또한 볼보에서 친환경 자동차를 적극적으로 개발하게 하고, 시민들에게는 친환경 자동차 구입비에 150만 원의 보조금을 지급하며, 연료비는 가솔린의 70% 가격에 주유할 수 있게 하는 등 적극적인 탈석유 정책을 시행하고 있다."
+}
+10 128660#3        17.29680
+{
+  "id" : "128660#3",
+  "contents" : "전기자동차는 디젤 엔진, 가솔린 엔진을 사용하는 오토사이클(정적사이클)방식의 자동차보다 먼저 고안 되었다. 1830년부터 1840년 사이에 영국 스코틀랜드의 사업가 앤더슨이 전기자동차의 시초라고 할 수 있는 세계 최초의 원유전기마차를 발명한다. 1835년에 네덜란드 크리스토퍼 베커는 작은 크기의 전기자동차를 만든다."
+}
+
+ +
+ +* with dense indexing +``` +python search_online.py --index_type dense --index /path/to/indexing/dense --query "$QUERY" --encoder huggingface_model_name_or_checkpoint_path --device $DEVICE +``` +* DEVICE: 'cpu' or 'cuda:$GPU_ID' + * search는 현재는 single gpu만 지원됩니다. multi gpu를 사용하려면 individual process를 만들어서 병렬로 처리해야 합니다. + +* with hybrid (first-pass: sparse, reranking: dense) indexing +``` +python search_online.py --index_type hybrid --index /path/to/indexing/sparse,/path/to/indexing/dense --query "$QUERY" --encoder huggingface_model_name_or_checkpoint_path --device $DEVICE --alpha $ALPHA_MULTIPLIED_ON_SPARSE_SCORE --normalization --lang_abbr $LANG_CODE +``` + * ALPHA_MULTIPLIED_ON_SPARSE_SCORE는 (0,2)에서 line search를 하면서 최적의 값을 찾으며 0.5가 기본값입니다. + +#### batch + +* with dense indexing +``` +python -m pyserini.search.faiss \ + --encoder huggingface_model_name_or_checkpoint_path \ + --index /path/to/indexing_dense \ + --topics datasets/dataset_name/queries.tsv \ + --output /path/to/runfile --batch $BATCH_SIZE --threads $NUM_THREADS \ + --hits $TOPK --remove-query --device $DEVICE +``` +* BATCH_SIZE, NUM_THREADS는 기본값을 64, 16으로 사용합니다. + +* with sparse indexing +``` +python -m pyserini.search.lucene --bm25 \ + --topics datasets/dataset_name/queries.tsv \ + --index /path/to/indexing_sparse \ + --hits $TOPK \ + --language $LANG_CODE \ + --output /path/to/runfile +``` + +* hybrid model +``` +python -m pyserini.search.hybrid \ +dense --index /path/to/indexing_dense \ + --encoder huggingface_model_name_or_checkpoint_path \ + --device $DEVICE \ +sparse --index /path/to/indexing_sprase \ +fusion --alpha $ALPHA_MULTIPLIED_ON_SPARSE_SCORE \ +run --topics datasets/dataset_name/queries.jsonl \ + --output /path/to/runfile \ + --threads $NUM_THREADS \ + --batch-size $BATCH_SIZE \ + --hits $TOPK + +python -m pyserini.search.hybrid \ +dense --index path/to/indexing/dense \ + --encoder huggingface_model_name_or_checkpoint_path \ + --device $DEVICE \ +sparse --index /path/to/indexing/sprase \ +fusion --alpha $ALPHA_MULTIPLIED_ON_SPARSE_SCORE \ +run --topics datasets/dataset_name/queries.tsv \ + --output runs/hybrid.run \ + --threads $NUM_THREADS \ + --batch-size $BATCH_SIZE \ + --hits 1000 +``` + +* 결과물 (dir: /path/to/runfile) + format: qid q_type pid topK score retrieval_type + example: + ``` + 46 Q0 271267 1 2.134944 Faiss + 46 Q0 63734 2 2.118700 Faiss + 46 Q0 174045 3 2.110519 Faiss + ... + ``` + +### 3. Evaluation (optional) +* **qrels** 파일은 정량평가를 위한 ground truth 파일로, qid q_type pid relevance_score 형식으로 구성되어 있음. +* **runfile**은 batch로 검색한 결과로, qid q_type pid topK score retrieval_type 형식으로 구성되어 있음. +* 아래 스크립트는 qrels 파일과 runfile을 비교하여 nDCG@10, MRR@100, Recall@100 등의 지표를 계산함. +``` +python -m pyserini.eval.trec_eval -c -mndcg_cut.10 -mrecip_rank -mrecall.100 /path/to/qrels /path/to/runfile + +recip_rank all 0.3628 +recall_100 all 0.7158 +ndcg_cut_10 all 0.3805 +``` -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/__pycache__/search_online.cpython-38.pyc b/__pycache__/search_online.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..788c116781d8648402727b945d7ec5170452a849 Binary files /dev/null and b/__pycache__/search_online.cpython-38.pyc differ diff --git a/analyze_answer_inclusion_in_retrieval.py b/analyze_answer_inclusion_in_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..023d0d6600e9d8683e65fe629c95b25817eef7a9 --- /dev/null +++ b/analyze_answer_inclusion_in_retrieval.py @@ -0,0 +1,100 @@ +import json +from pyserini.search.lucene import LuceneSearcher + +from tqdm import tqdm + +def convert_unicode_to_normal(data): + if isinstance(data, str): + return data.encode('utf-8').decode('utf-8') + elif isinstance(data, list): + assert(isinstance(data[0], str)) + return [sample.encode('utf-8').decode('utf-8') for sample in data] + else: + raise ValueError + +K=30 +index_dir="/root/indexes/index-wikipedia-dpr-20210120" # lucene +runfile_path=f"runs/q=NQtest_c=wikidpr_m=bm25_k={K}.run" # bm25 +qafile_path="/root/nota-fairseq/examples/information_retrieval/open_domain_data/NQ/qa_pairs/test.jsonl" +logging_path="logging_q=NQ_c=wiki_including_ans.jsonl" + +# define searcher with pre-built indexes +searcher = LuceneSearcher(index_dir=index_dir) + +# v2. read qa first (due to runfile query name sort) +print("read qa file") +pair_by_qid = {} +with open(qafile_path, 'r') as fr_qa: + for pair in tqdm(fr_qa): + pair_data = json.loads(pair) + qid, query, answers = pair_data["qid"], pair_data["query"], pair_data["answers"] # str, str, list + pair_by_qid[qid] = {'query': query, 'answers':answers} + +print("check retrieved passage include answer") +qid_with_ans_in_retrieval = [] +with open(runfile_path, 'r') as fr_run, open(logging_path, 'w') as fw_log: + for result in tqdm(fr_run): + fields = result.split(' ') + assert(len(fields) == 6) # qid q_type pid k score engine + + qid_, pid = fields[0], fields[2] + assert(qid_ in pair_by_qid.keys()) + query, answers = pair_by_qid[qid_]['query'], pair_by_qid[qid_]['answers'] + + # get passage + psg_txt = searcher.doc(pid) + psg_txt = psg_txt.raw() + psg_txt = json.loads(psg_txt) + psg_txt = psg_txt['contents'].strip() + psg_txt = convert_unicode_to_normal(psg_txt) + + # check if passage contains answer + #if any([ans in psg_txt for ans in answers]): + for ans in answers: + if ans in psg_txt: + log_w = { + "qid": qid_, + "pid": pid, + "query": query, + "answer": ans, + "passage": psg_txt + } + fw_log.write(json.dumps(log_w, ensure_ascii=False) + '\n') + + if qid_ not in qid_with_ans_in_retrieval: + qid_with_ans_in_retrieval.append(qid_) + break # don't have to count check multiple answer in passage + + +print(f"#qid in test set: {len(pair_by_qid.keys())}, #qid having answer with retrieval(BM25, K={K}): {len(qid_with_ans_in_retrieval)}, Recall = {len(qid_with_ans_in_retrieval)/len(pair_by_qid.keys())*100}") + +# v1 +""" +with open(runfile_path, 'r') as fr_run, open(qafile_path, 'r') as fr_qa: + for pair in tqdm(fr_qa): + pair_data = json.loads(pair) + qid, query, answers = pair_data["qid"], pair_data["query"], pair_data["answers"] # str, str, list + + for k in range(K): + result=fr_run.readline() + print(result) + + fields = result.split(' ') + assert(len(fields) == 6) # qid q_type pid k score engine + + qid_, pid = fields[0], fields[2] + + assert(qid == qid_), f"qid={qid}, qid_={qid_} should be same" + + # get passage + psg_txt = searcher.doc(pid) + psg_txt = psg_txt.raw() + psg_txt = json.loads(psg_txt) + psg_txt = psg_txt['contents'].strip() + psg_txt = convert_unicode_to_normal(psg_txt) + + # check if passage contains answer + if any([ans in psg_txt for ans in answers]): + import pdb + pdb.set_trace() +""" \ No newline at end of file diff --git a/collections/.gitkeep b/collections/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..b1adcd339a516adfb8de4935014f6e8b762c6125 --- /dev/null +++ b/collections/.gitkeep @@ -0,0 +1 @@ +# This is the default directory for document collections. Placeholder so that directory is kept in git. \ No newline at end of file diff --git a/convert_cast22_eval_json_to_queries_tsv.py b/convert_cast22_eval_json_to_queries_tsv.py new file mode 100644 index 0000000000000000000000000000000000000000..970ce092a087cef77b827a15f6e0cf115ab42be0 --- /dev/null +++ b/convert_cast22_eval_json_to_queries_tsv.py @@ -0,0 +1,24 @@ +import json + +from tqdm import tqdm + +### read: cast 22 eval json +eval_json_path="/root/Corpus/CAsT22_eval_queries/cqr_inferred_results.json" + +# read data +with open(eval_json_path, 'r') as fr: + data = json.load(fr) + +# write: queries.tsv (format: {qid}\t{query}) +eval_queries_path = "/root/Corpus/CAsT22_eval_queries/queries_cqr_result.tsv" +with open(eval_queries_path, 'w') as fw: + for sample in tqdm(data): + conv_id = sample['number'] + for turn in sample['turn']: + turn_id = turn['number'] + automatic_rewritten_utterance = turn['automatic_rewritten_utterance'] + + q_id = f"{conv_id}_{turn_id}" + + fw.write(f"{q_id}\t{automatic_rewritten_utterance}\n") + \ No newline at end of file diff --git a/download_oracle_jdk.sh b/download_oracle_jdk.sh new file mode 100644 index 0000000000000000000000000000000000000000..23f34662764416e95d2a986f402ca1d292d90d25 --- /dev/null +++ b/download_oracle_jdk.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +ARCH=$(uname -m) +echo "Architecture: ${ARCH}" + +if [ "$ARCH" = "x86_64" ] +then + JDK_URL="https://download.oracle.com/java/20/latest/jdk-20_linux-x64_bin.tar.gz" +else + JDK_URL="https://download.oracle.com/java/20/latest/jdk-20_linux-aarch64_bin.tar.gz" +fi + +wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" "${JDK_URL}" +tar -xzf jdk-*.tar.gz +rm jdk-*.tar.gz \ No newline at end of file diff --git a/encode_8shards_cuda0.sh b/encode_8shards_cuda0.sh new file mode 100644 index 0000000000000000000000000000000000000000..ae37c35c463d222b5646df1bc708107bc2e9916f --- /dev/null +++ b/encode_8shards_cuda0.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +#SHARD_NUM=8 +SHARDED_CORPUS_PREFIX="/root/Corpus/CAsT22_msmarcov2_kilt_flattened_8shards" +SHARDED_EMBEDDING_PREFIX="/ssd3/geonminkim/indexes/CAsT_21_22_msmarcov2_kilt/dense" + +START_IDX=0 +END_IDX=1 +SHARD_NUM=8 +GPU_ID=0 + +for SHARD_IDX in $(seq $START_IDX $END_IDX); do + echo "encoding for SHARD_IDX = $SHARD_IDX" + python -m pyserini.encode \ + input --corpus $SHARDED_CORPUS_PREFIX/shard_$SHARD_IDX \ + --fields text \ + --shard-id $SHARD_IDX \ + --shard-num $SHARD_NUM \ + output --embeddings $SHARDED_EMBEDDING_PREFIX/shard_$SHARD_IDX \ + --to-faiss \ + encoder --encoder castorini/tct_colbert-v2-msmarco-cqe \ + --fields text \ + --device cuda:$GPU_ID \ + --batch 128 \ + --fp16 +done diff --git a/encode_8shards_cuda1.sh b/encode_8shards_cuda1.sh new file mode 100644 index 0000000000000000000000000000000000000000..f2cbf01a5b4ae5eedc8d0cc8d2ab9b5194969bcf --- /dev/null +++ b/encode_8shards_cuda1.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +#SHARD_NUM=8 +SHARDED_CORPUS_PREFIX="/root/Corpus/CAsT22_msmarcov2_kilt_flattened_8shards" +SHARDED_EMBEDDING_PREFIX="/ssd3/geonminkim/indexes/CAsT_21_22_msmarcov2_kilt/dense" + +START_IDX=2 +END_IDX=3 +SHARD_NUM=8 +GPU_ID=1 + +for SHARD_IDX in $(seq $START_IDX $END_IDX); do + echo "encoding for SHARD_IDX = $SHARD_IDX" + python -m pyserini.encode \ + input --corpus $SHARDED_CORPUS_PREFIX/shard_$SHARD_IDX \ + --fields text \ + --shard-id $SHARD_IDX \ + --shard-num $SHARD_NUM \ + output --embeddings $SHARDED_EMBEDDING_PREFIX/shard_$SHARD_IDX \ + --to-faiss \ + encoder --encoder castorini/tct_colbert-v2-msmarco-cqe \ + --fields text \ + --device cuda:$GPU_ID \ + --batch 128 \ + --fp16 +done \ No newline at end of file diff --git a/encode_8shards_cuda2.sh b/encode_8shards_cuda2.sh new file mode 100644 index 0000000000000000000000000000000000000000..07bfb2bad602fd85742937439b67bf67462228d2 --- /dev/null +++ b/encode_8shards_cuda2.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +#SHARD_NUM=8 +SHARDED_CORPUS_PREFIX="/root/Corpus/CAsT22_msmarcov2_kilt_flattened_8shards" +SHARDED_EMBEDDING_PREFIX="/ssd3/geonminkim/indexes/CAsT_21_22_msmarcov2_kilt/dense" + +START_IDX=4 +END_IDX=5 +SHARD_NUM=8 +GPU_ID=2 + +for SHARD_IDX in $(seq $START_IDX $END_IDX); do + echo "encoding for SHARD_IDX = $SHARD_IDX" + python -m pyserini.encode \ + input --corpus $SHARDED_CORPUS_PREFIX/shard_$SHARD_IDX \ + --fields text \ + --shard-id $SHARD_IDX \ + --shard-num $SHARD_NUM \ + output --embeddings $SHARDED_EMBEDDING_PREFIX/shard_$SHARD_IDX \ + --to-faiss \ + encoder --encoder castorini/tct_colbert-v2-msmarco-cqe \ + --fields text \ + --device cuda:$GPU_ID \ + --batch 128 \ + --fp16 +done diff --git a/encode_8shards_cuda3.sh b/encode_8shards_cuda3.sh new file mode 100644 index 0000000000000000000000000000000000000000..c97517a2366eff4e532fba85bd0ef824663ed52c --- /dev/null +++ b/encode_8shards_cuda3.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +#SHARD_NUM=8 +SHARDED_CORPUS_PREFIX="/root/Corpus/CAsT22_msmarcov2_kilt_flattened_8shards" +SHARDED_EMBEDDING_PREFIX="/ssd3/geonminkim/indexes/CAsT_21_22_msmarcov2_kilt/dense" + +START_IDX=6 +END_IDX=7 +SHARD_NUM=8 +GPU_ID=3 + +for SHARD_IDX in $(seq $START_IDX $END_IDX); do + echo "encoding for SHARD_IDX = $SHARD_IDX" + python -m pyserini.encode \ + input --corpus $SHARDED_CORPUS_PREFIX/shard_$SHARD_IDX \ + --fields text \ + --shard-id $SHARD_IDX \ + --shard-num $SHARD_NUM \ + output --embeddings $SHARDED_EMBEDDING_PREFIX/shard_$SHARD_IDX \ + --to-faiss \ + encoder --encoder castorini/tct_colbert-v2-msmarco-cqe \ + --fields text \ + --device cuda:$GPU_ID \ + --batch 128 \ + --fp16 +done diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000000000000000000000000000000000000..c15cfe4b58309ee1886bd27fc683a98f05d3c6c0 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +HOME=/root + +# check pth +echo "check path for JAVA_HOME" +echo $JAVA_HOME + +# additional environment variable +export PYSERINI_CACHE=/root/indexes + +# APP_PATH: assumed to be volume mounted with host +APP_PATH=$HOME/np_app_text_retrieval_inference + +# EXTERNAL_PATH: assumed having system specific files, not volume mounted with host +EXTERNAL_PATH=/workspace/external + +# copy jar file +cp $EXTERNAL_PATH/anserini/target/anserini-*-fatjar.jar $APP_PATH/pyserini/resources/jars + +# launch /bin/bash +cd $APP_PATH +exec /bin/bash \ No newline at end of file diff --git a/flagged/log.csv b/flagged/log.csv new file mode 100644 index 0000000000000000000000000000000000000000..9c94bafacabfb630120e33b619710f0f0eb3ef8a --- /dev/null +++ b/flagged/log.csv @@ -0,0 +1,272 @@ +질의,검색 결과,flag,username,timestamp +"몸에 반점이 있다면 어떤 질병일 가능성이 있을까? +","문서 1 +정확한 원인은 밝혀져 있지 않으나 유전적, 환경적 요인이 복합되어 작용하는 것으로 짐작된다. 이 질병을 앓는 가족 구성원이 있다면 본인에게도 영향을 받을 가능성이 있다. 영향을 받은 일란성 쌍둥이가 있다면 30%의 확률로 다른 쌍둥이도 이 질병을 가지고 있을 가능성이 있다. 이 질병은 스트레스, 감염, 출생 시에 발병할 수 있다. 제1형 당뇨병, 류마티스 관절염과 같은 자가면역 질환을 가진 환자들이 영향을 받을 가능성이 있다. 흡연은 이 질병의 위험성을 높이며 안구 문제를 더 악화시킬 수 있다. 이 질병은 TSI라는 항체에서 비롯하며 이는 갑상샘 자극 호르몬과 영향도가 비슷하다. 이러한 항체들은 갑상샘이 갑상샘 호르몬을 과도하게 생산하도록 유도한다. 질병 확인을 위한 혈액 검사, 방사성 요오드 섭취를 통한 증상에 기반하여 진단한다. + +문서 2 +1603년 37세의 나이로 사망하였고, 아들 아흐메트 1세가 왕위를 이어받았다. 사망 원인은 정확하게 알려져 있지 않으며, 자연사나 질병일 가능성이 있다. + +문서 3 +이상의 연구 결과들은 오직 가스 행성 및 갈색 왜성이 존재하지 않음을 밝혀줬을 뿐 지구나 금성처럼 작은 행성이 존재할 가능성은 아직 남아 있다. 만약 뜨거운 목성이 항성 가까이 있었다면 이들은 항성 근처를 돌던 지구형 행성의 궤도를 망가뜨려 생명체 발생 가능성을 낮췄을 것이다. 따라서 가스 행성이 없다는 것은 지구 비슷한 행성이 존재할 가능성을 높여 주는 사실이 된다. 통상적으로 밝혀진 연구에 따르면 중원소 함량이 높은 별 주위에는 행성이 있을 확률이 높고 그렇지 않은 별 주위에는 행성이 있을 확률이 적은 것으로 밝혀졌다. 두꺼운 먼지 원반이 있다는 사실은 항성 가까이에 암석 행성이 존재할 가능성을 높이는 것은 사실이다. 그러나 이는 동시에 그 암석 행성이 폭격을 받을 가능성이 높음을 알려주는 사실이기도 하다. 만약 행성이 발견된다면 이후의 연구 방향은 이 행성에 생명체가 살 수 있는 물과 대기가 존재하는지를 충분한 해상도의 망원경을 통해 알아내는 것이 된다. 지구의 산소가 생명체 존재를 나타내는 척도가 되는 것처럼 무기성의 대기 조성은 원시 생명체가 존재함을 나타내는 징표가 될 수 있다. + +문서 4 +치매나 백혈병, 당뇨, 파킨슨병과 같은 난치병들 중에는 세포의 변이나 사멸로 인한 질병이 대다수이다. 이러한 퇴행성 질병의 경우 세포 치료법을 이용해여 치료하는 경우가 많다. 특이점주의자들에 따르면 줄기세포 연구와 같은 세포 연구는 생명 공학 연구의 일부분이며 유전자 DNA 지도를 완벽하게 구조화할 수 있다면 세포분화 치료 혹은 세포복제 치료를 통해 환자 자신의 DNA를 지니고 텔로미어가 연장된 세포를 공급할 수 있을 것이라고 본다. 예컨데 현재 당뇨병 치료에 쓰이는 거부반응 제어제가 위험한 부작용을 일으킬 가능성이 있는 반면 이러한 세포 치료는 부작용 가능성을 급격히 낮출 수 있다. 이러한 세포 치료는 단순히 난치병의 치료에만 그치는 것이 아니라, 교차분화 기술을 이용한 새로운 신체 기관으로의 교체를 가능하게 한다. + +문서 5 +컴퓨터에 의한 시뮬레이션에는, 보이드로 불리는 틈새나 버그가 있고, 내부로부터도 아는 경우가 있을 지도 모르다. 그러한 것을 찾아내 검증할 수 있다면, 거기에 따라 모의현실의 내부에 있는 것을 증명할 수 있을 가능성이 있다. 그러나, 물리 법칙에 반하는 일은, 그 밖에도 설명할 수 있는 가설을 생각할 수 있다(신 등). 영화 《매트릭스》로 그려진 것처럼, 기시감 등의 일상적인 기묘한 체험도 어떠한 버그로서 설명할 수 있을 가능성이 있다. + +문서 6 +예를 들면 대기가 없는 어떤 행성 깊은 단층 속 그늘진 곳이나 화산 동굴 속에 생태계가 형성되어 있을 가능성이 있다. 저명했던 천문학자 칼 세이건은 이 개념을 태양계에 적용하여, 1976년 논문을 통해 목성의 대기 상층부에 유기체가 살고 있을 가능성을 피력했다. 그러나 목성에는 딱딱한 표면이 없기 때문에 생명체가 존재할 가능성은 거의 없다. + +문서 7 +널리 알려져 있다는 사실이 반드시 참임을 보증하는 것은 아니므로 이런 주장은 논리적으로 오류이다. 개인의 신념이 잘못되어 있을 가능성이 있다면 다수의 인간의 신념도 잘못되어 있을 가능성이 있다. 예를 들면, 75%의 사람이 A라고 대답했다고 해도 25%의 확률로 A가 아닐 가능성도 있다. 이 확률이 어떻게 되든 다수가 옳다는 것은 논리적이라고 할 수 없다. 만약 만장일치라고 해도, 표본의 수가 불충분할지도 모르고, 혹은 그 사람들이 모르는 사실이 존재하고 있어서 그 사실을 알면 결과가 바뀔지도 모른다. + +문서 8 +""(a and b)""와 같은 논리식을 계산한다고 하면 ""a""항이 거짓인 경우에, ""b""항을 계산하지 않아도 전체 식의 답을 알 수 있다. ""(a or b)""에서 ""a""항이 참인 경우에도 마찬가지이다. 여기서 항이 복잡한 식이면 이점이 많고, 식에서 결과가 참이나 거짓일 가능성과 계산의 비용에 따라 어떤 항이 먼저 계산되어야 좋은지 알 수 있다. 따라서 ""(a or b or c)""와 같은 식에서 ""a""항이 참값을 가질 가능성이 많다면, 전체 식을 쉽게 계산할 수 있다. 이런 가능성을 보장하기 위해, 컴파일러는 더 계산해야 할 것인지, 다른 항을 지름길 계산 해야 할 것인지를 검사하기도 한다. 이런 검사는 계산을 줄이는 것을 실패할 경우나 꼭 필요한 경우 무조건 전체 식을 계산해야 할 때 시간이 더 많이 걸리게 된다. + +문서 9 +생물학적으로는 인간의 뇌에 필요한 유전 정보를 가지는 인공적인 게놈을 적당한 숙주의 세포에 짜넣는 것으로 인공적으로 생명을 만드는 것도 가능할지도 모른다고 생각되며, 그러한 인공생명체는 의식을 가질 가능성이 높다. 그렇지만 그 생명체 안의 어떤 속성이 의식을 낳는 것일까? 비슷한 것을 비생물학적인 부품에서 만들 수 없는 것인지? 컴퓨터를 설계하기 위한 기술로 그러한 의식체를 낳을 수 없을까? 그러한 행위는 윤리적으로 문제 없을까?와 같은 여러 문제를 안고 있다. + +문서 10 +3부 리그",,,2023-06-16 00:57:35.174375 +"모델 경량화 및 최적화와 관련하여 Netspresso bot에게 물어보세요. +예를들어 + +- Why do I need to use Netspresso? +- Summarize how to compress the model with netspresso. +- Tell me what the pruning is. +- What kinds of hardware can I use with this toolkit? +- Can I use YOLOv8 with this tool? If so, tell me the examples.","1. Why do I need to use Netspresso? +Netspresso is a machine learning pipeline that provides tools and methods for model compression and optimization. By using Netspresso, you can reduce the size and computational cost of your models, making them more efficient for deployment on resource-constrained devices. It also allows you to fine-tune and optimize your models for better performance. Overall, Netspresso helps you achieve lightweight and optimized models for real-time applications. + +2. Summarize how to compress the model with Netspresso. +To compress a model with Netspresso, you can follow these steps: +- Step 1: Prepare your model. +- Step 2: Upload your model to Netspresso. +- Step 3: Choose the compression method (e.g., structured pruning, filter decomposition). +- Step 4: Configure the compression settings (e.g., pruning ratio, compression algorithm). +- Step 5: Start the compression process. +- Step 6: Check the compression result and download the compressed model. + +3. Tell me what pruning is. +Pruning is a model compression technique that involves removing unnecessary parameters or structures from a complex model to make it more compact and efficient. In the context of Netspresso, pruning can be done using structured pruning, which removes entire neurons, filters, or channels from the model. This results in a simplified model that can be deployed without any specific hardware or software requirements for acceleration. + +4. What kinds of hardware can I use with this toolkit? +Netspresso supports various hardware platforms for model deployment. Some of the supported hardware includes NVIDIA Jetson family devices, which can be used with TensorRT for accelerated inference. Other supported platforms include TensorFlow Lite and OpenVINO, which provide optimization for different hardware architectures. The specific hardware compatibility may depend on the compression method and the target framework used in Netspresso. + +5. Can I use YOLOv8 with this tool? If so, tell me the examples. +Yes, you can use YOLOv8 with Netspresso for model compression and optimization. YOLOv8 is a popular object detection model, and Netspresso provides support for object detection models. You can follow the steps in the Netspresso documentation to prepare, upload, compress, and optimize your YOLOv8 model using the available methods and tools in Netspresso. The documentation provides examples and guidelines for using Netspresso with different models, including YOLOv8.","Source 0 +Step 4: Package model (beta) +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by Step 4: Package model (beta)Suggest EditsPackage the model so that it can be deployed directly to the device. +1. Go to Package page +Select New package at the drop-down menu that appears when you click Download button. +2. Package the model +Enter the package name and select a base model to package. +Please note that the package name will be the library name and the name cannot be changed after packaging. +You can include pre/post processing codes (.py) with the model for the package (optional). +Download the pre/post processing code example and modify for your use cases. +3. Download package file and run the package +Packaged file will be automatically downloaded. +To run the package, use the code written below. {package_name} must be changed to your package name. +Pythonfrom np_{package_name}.models.model import NPModel +NPModel.initialize(num_threads=1) # Initialize +npmodel = NPModel() +image_path = ""./test.jpg"" #Image path +print(npmodel.run(image_path)) # Inference +NPModel.finalize() # Memory management +Updated about 1 month ago Table of Contents +1. Go to Package page +2. Package the model +3. Download package file and run the package + +###################################################### + +Source 1 +Step 3: Convert model (beta) +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by Step 3: Convert model (beta)Suggest EditsConvert the model format according to the target device. +1. Go to Convert page +Click the Convert button on Models page. +2. Covert model +Enter the name and memo for the converted model. Select a base model to be converted and the target hardware to benchmark the model. +Depending on the framework of the base model, the options available for converting are different. +Models built with Model Searcher → TensorRT, TensorFlow Lite, OpenVINO +Custom models +ONNX → TensorRT, TensorFlow Lite, OpenVINO +Click the Start converting button to convert the model. (Converting for the NVIDIA Jetson family (TensorRT) may take up to 1 hour.) +3. Check the converting result +Converted model will be displayed on the Models page with performance benchmarks on the selected target hardware.Updated 6 months ago Table of Contents +1. Go to Convert page +2. Covert model +3. Check the converting result + +###################################################### + +Source 2 +Method: Structured Pruning +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by Method: Structured PruningSuggest EditsModel Compression +The goal of model compression is to achieve a model that is simplified from the original without performance deterioration. By compressing the large model, the user can reduce the storage and computational cost and allow to use in real-time applications. +NetsPresso supports the following compression methods. +Structured Pruning +Filter Decomposition +This page describes for Structured Pruning. +What is ""Pruning""? + Pruning is the process of removing individual or groups of parameters from a complex model to make it faster and more compact. This compressing procedure is divided into unstructured pruning and structured pruning by the pruning objects. +Unstructured Pruning + + : Removes individual parameters and returns a sparse model, which requires an additional device to be accelerated. + +Structured Pruning + + : Removes entire neurons, filters, or channels and returns a model, which does not require any particular hardware or software to be accelerated. + + The goal of pruning is to reduce the computational resources and accelerate the model by removing unnecessary filters (Model Compressor only supports structured pruning. Unstructured pruning will be published in near future.). +   However, the fine-tuning process is necessary to compensate for the loss of accuracy. +Structured Pruning +Supported functions + Pruning in Model Compressor provides two pruning functions (Pruning by Channel Index / Criteria) and one recommendation (SLAMP) to fulfill the user's demand on model compression. +Pruning by Channel Index + +  Removes the filters that a user wants to. If the selected filters are redundant or less important, it will return a better performing model. + + Pruning by Criteria + +L2 Norm + + : L2-Norm is used to represent the importance of the corresponding filter. In other words, this method prunes filters based on the magnitude of weights. + +Nuclear Norm + + : The nuclear norm is the sum of the singular values representing the energy. It computes the nuclear norm on the feature map to determine the filter's relevance. For this reason, a portion of the dataset is needed. For more detail, please refer to the following paper. + +Seul-Ki Yeom, Kyung-Hwan Shim, and Jee-Hyun Hwang. Toward compact deep neural networks via energy-aware pruning. arXiv preprint, 2021. + +Geometric Median + + : Geometric Median is used to measure the redundancy of the corresponding filter and remove redundant filters. For more detail, please refer to the following paper. + +Yang He, Ping Liu, Ziwei Wang, Zhilan Hu, and Yi Yang. Filter pruning via geometric median for deep convolutional neural networks acceleration. In CVPR, 2019. + +Normalization + +The distribution and magnitude of the layers are varied, it is vital to compare those different distributions from the same perspective. For this reason, all of the criterion values are normalized by layer as follows. + + ""Recommendation"" in Model Compressor + +  The ""Recommendation"" enables a so-called global pruning, which allocates the pruning ratio for each layer at ease. Current version only supports SLAMP. + +SLAMP (Structured Layer-adaptive Sparsity for the Magnitude-based Pruning) + +SLAMP is inspired by the ""Layer-adaptive Sparsity for the Magnitude-based Pruning"" from ICLR 2021, which is called LAMP. + +Layer-Adaptive sparsity for the Magnitude-based Pruning (LAMP) is an unstructured pruning method, but here, it is modified and developed to measure the layer-wise importance for the Structured pruning. + +Normalization function + + Following normalization function is adopted into the above criteria value. + +What you can do with Model Compressor + Choose one of ""Pruning by Channel Index"" or ""Pruning by Criteria"" by the purpose of the user. + + ""Pruning by Channel Index"" is recommended for the expert, who already knows which filter is unnecessary to solve the issue. + ""Pruning by Criteria"" is recommended for the user who wants to prune certain amounts of ratio on specific layers or beginner of the model compression. + +To use ""Pruning by Channel Index"" + Check ""Pruning by Channel Index"". + Check the layers to be pruned. + Insert the filter index to be pruned (ex. 105, 8, 9, 11-13). + + To use ""Pruning by Criteria"". + + Check one of the criteria (ex. L2-Norm) to calculate the importance score of each filter. + Prune specific layers with a certain amount of ratio. + + Check the layers to be pruned. + Insert the amounts of the ratio to be pruned (ex. 0.2). + + Compress whole layers automatically for the given amounts of ratio. + + Press ""Recommendation"" and insert the amounts of the ratio (ex. 0.8) to compress the model. + +Verification of the Structured Pruning + Pruning in Model Compressor allows to remove the specific filters and preserve the previous knowledge. To verify the pruning method in Model Compressor, we assess the categorical accuracy of the returned compressed model and its fine-tuned model. + + Cifar100 Accuracy of the Compressed Model and Fine-tuned Model +The compressed models are compressed by the following strategies: L2Norm, SLAMP, intersection. (Original models are from here) +The dashed and solid lines in the above image indicate the compressed model from Model Compressor and the model after fine-tuning, respectively, for the given pruning ratio. +🚧Not Supported Layers +Group convolutional layer is currently not supported and will be updated in the near future. +Updated 5 months ago Table of Contents +Model Compression +What is ""Pruning""? +Structured Pruning +Supported functions +What you can do with Model Compressor +Verification of the Structured Pruning +",,,2023-06-28 07:12:14.309344 +What is NetsPresoo?,"NetsPresso is a machine learning pipeline that provides various tools and functionalities for model development and optimization. It includes components such as Model Searcher, Model Compressor, and Model Launcher. NetsPresso aims to simplify the process of developing and deploying machine learning models by offering features like dataset preparation, model compression, and model deployment. It supports tasks like image classification, object detection, semantic segmentation, and super resolution. NetsPresso also provides benchmark results and best practices for different models and datasets.","Source 0 +Model Compressor +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by Model CompressorSuggest EditsUsing NetsPresso Model Compressor on a variety of well-known public datasets, this article shows users how to get outstanding compression results. +The fine-tuning procedure is necessary for each compression. It usually follows the original model's training configuration, except the learning rate. After a few batches of training, the learning rate is optimized by determining if the loss has converged or not. +All of the original and compressed models can be downloaded easily on the Model Compressor Model Zoo. +See Image Classification Results +See Object Detection Results +See Semantic Segmentation Results +See Super Resolution ResultsUpdated 7 months ago Table of Contents +See Image Classification Results +See Object Detection Results +See Semantic Segmentation Results +See Super Resolution Results + +###################################################### + +Source 1 +Connect Personal Server +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by Connect Personal ServerSuggest EditsTo connect a personal server, start by clicking a 'New Server' button on the screen below. +location : My Account > Resources +The way to connect a personal server to NetsPresso is to install an agent on the personal server. +The process is as follows. +Step 1. Create Server +Specifies an identifiable name and the path where the agent will be installed. +Step 2. Set Server +Copy the script that pre-checks the server environment and receives server information. +Make the copied script into sh file and run it in the shell. +As a result of executing the script, you can see server information in json format as shown below. +Copy the server information in json format and paste it into the result input field. +Step 3. Connect Server +As shown below, check the server information and copy the connect script that can connect the server. +Make the copied script into sh file and run it in the shell. +As a result of execution, the server is connected as shown below. +You can check the server you have connected to on the Resources page. +Updated about 1 month ago Table of Contents +Step 1. Create Server +Step 2. Set Server +Step 3. Connect Server + +###################################################### + +Source 2 +- Object Detection +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by - Object DetectionSuggest EditsAll of the original and compressed models can be downloaded easily on the Model Compressor Model Zoo. +You can get Compressed results with Automatic Compression and Compressed (Adv.) results with Advanced Compression. +PyTorch +ModelBest PracticeTypeDatasetmAP(0.5) (%)mAP(0.5:0.95)(%)FLOPs (M)Params (M)Latency (ms)Model Size (MB)YOLOXOriginalCOCO68.049.7156006.2054.2112239.46207.37YOLOXGoogle ColabCompressed-1COCO67.16 (-0.84)48.64 (-1.06)101804.06 (1.53x)19.96 (2.7x)8502.72 (1.44x)76.61 (2.7x)YOLOXGoogle ColabCompressed-2COCO61.43 (-6.57)43.23 (-5.47)38607.03 (4.04x)4.93 (11.0x)4235.37 (2.89x)19.17 (10.80x) +The model’s latency is measured on Raspberry Pi 4B (1.5GHz ARM Cortex). +Options: FP32, ONNX runtime +TensorFlow-Keras +ModelBest PracticeTypeDatasetmAP(0.5) (%)mAP(0.5:0.95)(%)FLOPs (M)Params (M)Latency (ms)Model Size (MB)YOLOv4OriginalPASCAL VOC82.22-61871.8265.3264318.70262.90YOLOv4Google ColabCompressed-1PASCAL VOC87.23 (+5.01)-11459.69 (5.4x)10.59 (6.17x)28651.70 (2.16x)44.12 (5.96x)YOLOv4Google ColabCompressed-2PASCAL VOC87.91 (+5.69)-14442.96 (4.28x)10.71 (6.1x)28976.40 (2.14x)44.36 (5.93x) +YOLOv4 model with EfficientNet B1 based backbone. +The model’s latency is measured on Raspberry Pi 4B (1.5GHz ARM Cortex). +Options: FP32, TFLite +Updated about 2 months ago Table of Contents +PyTorch +TensorFlow-Keras + +###################################################### + +Source 3 +- Object Detection +Jump to ContentDocumentationHomeDocumentationv1.3.0DocumentationLog InLog InMoon (Dark Mode)Sun (Light Mode)v1.3.0HomeDocumentationSearchINTRODUCTIONWelcomeWhat is NetsPresso?Machine Learning Pipeline with NetsPressoAdvantages of NetsPressoBENCHMARKSModel Searcher- Object DetectionModel Compressor- Image Classification- Object Detection- Semantic Segmentation- Super ResolutionUSE CASESFree People Detection ModelsFree Vehicle Detection ModelsNETSPRESSO MODEL SEARCHERFeatures & Scope of supportStep 1: Prepare datasetStep 2: Upload datasetStep 3: Create project (Quick Search)Step 3: Create project (Retraining)Step 4: Check the project result and download a modelNETSPRESSO MODEL COMPRESSORFeatures & Scope of supportMethod: Structured PruningMethod: Filter DecompositionSupported modelsSupported ONNX operatorsStep 1: Prepare modelStep 2: Upload modelStep 3: Compress model (Automatic Compression)Step 3: Compress model (Advanced Compression)Step 4: Check the compression result and download a modelStep 5: Retrain the compressed modelNETSPRESSO MODEL LAUNCHERFeatures & Scope of supportStep 1: Prepare modelStep 2: Upload modelStep 3: Convert model (beta)Step 4: Package model (beta)Personal serverRequirementsConnect Personal ServerRELEASE NOTESNetsPresso ReleasesFAQAbout Credit?Powered by - Object DetectionSuggest EditsQuick Search supports to train a model based on open sources and NPNets will be available with Advanced Search. +YOLOv5 and YOLOv5-NPNets +DatasetModelmAP(0.5) (%)mAP(0.5:0.95) (%)GFLOPsParameters (M)Model Size (MB)PASCAL VOCYOLOv5n72.2444.31.793.62PASCAL VOCYOLOv5n-NPNet73.446.33.51.182.49PASCAL VOCYOLOv5s77.952.2167.0713.7PASCAL VOCYOLOv5s-NPNet80.25612.84.619.05PASCAL VOCYOLOv5m82.159.348.320.9540.2PASCAL VOCYOLOv5m-NPNet83.460.63712.2623.7PASCAL VOCYOLOv5l82.961108.346.2488.6PASCAL VOCYOLOv5l-NPNet85.163.88125.1948.5Updated 5 months ago Table of Contents +YOLOv5 and YOLOv5-NPNets +",,,2023-08-31 13:29:07.271798 diff --git a/integrations/clprf/test_clprf.py b/integrations/clprf/test_clprf.py new file mode 100644 index 0000000000000000000000000000000000000000..132951077d6f26c61b4a2b81f76e6a73f7260168 --- /dev/null +++ b/integrations/clprf/test_clprf.py @@ -0,0 +1,951 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import unittest +from random import randint + +from integrations.lucenesearcher_score_checker import LuceneSearcherScoreChecker +from integrations.utils import run_command, parse_score + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('clprf'): + self.pyserini_root = '../..' + self.anserini_root = '../../../anserini' + else: + self.pyserini_root = '.' + self.anserini_root = '../anserini' + + self.tmp = f'{self.pyserini_root}/integrations/tmp{randint(0, 10000)}' + + if os.path.exists(self.tmp): + shutil.rmtree(self.tmp) + else: + os.mkdir(self.tmp) + + self.pyserini_search_cmd = 'python -m pyserini.search.lucene' + self.pyserini_fusion_cmd = 'python -m pyserini.fusion' + self.pyserini_eval_cmd = 'python -m pyserini.eval.trec_eval' + + self.core17_index_path = os.path.join(self.anserini_root, 'indexes/lucene-index.nyt') + self.core17_qrels_path = os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.core17.txt') + + self.core18_index_path = os.path.join(self.anserini_root, 'indexes/lucene-index.wapo.v2') + self.core18_qrels_path = os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.core18.txt') + + self.robust04_index_path = os.path.join(self.anserini_root, 'indexes/lucene-index.disk45') + self.robust04_qrels_path = os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.robust04.txt') + + self.robust05_index_path = os.path.join(self.anserini_root, 'indexes/lucene-index.robust05') + self.robust05_qrels_path = os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.robust05.txt') + + self.core17_checker = LuceneSearcherScoreChecker( + index=self.core17_index_path, + topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.core17.txt'), + pyserini_topics='core17', + qrels=self.core17_qrels_path, + eval=f'{self.pyserini_eval_cmd} -m map -m P.30') + + self.core18_checker = LuceneSearcherScoreChecker( + index=self.core18_index_path, + topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.core18.txt'), + pyserini_topics='core18', + qrels=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.core18.txt'), + eval=f'{self.pyserini_eval_cmd} -m map -m P.30') + + self.robust04_checker = LuceneSearcherScoreChecker( + index=self.robust04_index_path, + topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.robust04.txt'), + pyserini_topics='robust04', + qrels=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.robust04.txt'), + eval=f'{self.pyserini_eval_cmd} -m map -m P.30') + + self.robust05_checker = LuceneSearcherScoreChecker( + index=self.robust05_index_path, + topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.robust05.txt'), + pyserini_topics='robust05', + qrels=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.robust05.txt'), + eval=f'{self.pyserini_eval_cmd} -m map -m P.30') + + def test_cross_validation(self): + pyserini_topics = 'core17' + os.mkdir(f'{self.tmp}/core17') + for alpha in [x / 10.0 for x in range(0, 11)]: + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17/core17_lr_A{alpha}_bm25.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha {alpha}' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/cross_validate.py \ + --anserini {self.anserini_root} --run_file {self.tmp} --pyserini {self.pyserini_root} \ + --collection core17 --output {self.tmp}/core17_lr.txt --classifier lr ') + + cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_lr.txt' + + status = os.system(cmd) + stdout, stderr = run_command(cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2462, delta=0.0001) + + def test_core17(self): + self.assertTrue(self.core17_checker.run('core17_bm25', '--bm25', 0.2087)) + + def test_core17_rm3(self): + self.assertTrue(self.core17_checker.run('core17_bm25', '--bm25 --rm3', 0.2798)) + + def test_core17_lr(self): + pyserini_topics = 'core17' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.7' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_lr.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2473, delta=0.0001) + + def test_core17_lr_rm3(self): + pyserini_topics = 'core17' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.4 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_lr_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2926, delta=0.0001) + + def test_core17_svm(self): + pyserini_topics = 'core17' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.7' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_svm.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2385, delta=0.0001) + + def test_core17_svm_rm3(self): + pyserini_topics = 'core17' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.4 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_svm_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2956, delta=0.0001) + + def test_core17_avg(self): + pyserini_topics = 'core17' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_avg.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_avg.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2442, delta=0.0001) + + def test_core17_avg_rm3(self): + pyserini_topics = 'core17' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_avg_rm3.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_avg_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2950, delta=0.0001) + + def test_core17_rrf(self): + pyserini_topics = 'core17' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.7' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.7' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/core17_lr.txt {self.tmp}/core17_svm.txt \ + --output {self.tmp}/core17_rrf.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_rrf.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2446, delta=0.0001) + + def test_core17_rrf_rm3(self): + pyserini_topics = 'core17' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.4 --rm3' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.core17_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core17_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.4 --rm3' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/core17_lr_rm3.txt {self.tmp}/core17_svm_rm3.txt \ + --output {self.tmp}/core17_rrf_rm3.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core17.txt \ + {self.tmp}/core17_rrf_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2957, delta=0.0001) + + def test_core18(self): + self.assertTrue(self.core18_checker.run('core18_bm25', '--bm25', 0.2496)) + + def test_core18_rm3(self): + self.assertTrue(self.core18_checker.run('core18_bm25', '--bm25 --rm3', 0.3129)) + + def test_core18_lr(self): + pyserini_topics = 'core18' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_lr.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2839, delta=0.0001) + + def test_core18_lr_rm3(self): + pyserini_topics = 'core18' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_lr_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.3216, delta=0.0001) + + def test_core18_svm(self): + pyserini_topics = 'core18' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_svm.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2841, delta=0.0001) + + def test_core18_svm_rm3(self): + pyserini_topics = 'core18' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_svm_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.3200, delta=0.0001) + + def test_core18_avg(self): + pyserini_topics = 'core18' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_avg.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.4' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_avg.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2860, delta=0.0001) + + def test_core18_avg_rm3(self): + pyserini_topics = 'core18' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_avg_rm3.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.4 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_avg_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.3215, delta=0.0001) + + def test_core18_rrf(self): + pyserini_topics = 'core18' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/core18_lr.txt {self.tmp}/core18_svm.txt \ + --output {self.tmp}/core18_rrf.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_rrf.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2881, delta=0.0001) + + def test_core18_rrf_rm3(self): + pyserini_topics = 'core18' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5 --rm3' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.core18_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/core18_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5 --rm3' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/core18_lr_rm3.txt {self.tmp}/core18_svm_rm3.txt \ + --output {self.tmp}/core18_rrf_rm3.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.core18.txt \ + {self.tmp}/core18_rrf_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.3205, delta=0.0001) + + def test_robust04(self): + self.assertTrue(self.robust04_checker.run('robust04_bm25', '--bm25', 0.2531)) + + def test_robust04_rm3(self): + self.assertTrue(self.robust04_checker.run('robust04_bm25_rm3', '--bm25 --rm3', 0.2908)) + + def test_robust04_lr(self): + pyserini_topics = 'robust04' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_lr.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2747, delta=0.0001) + + def test_robust04_lr_rm3(self): + pyserini_topics = 'robust04' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_lr_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2969, delta=0.0001) + + def test_robust04_svm(self): + pyserini_topics = 'robust04' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_svm.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2726, delta=0.0001) + + def test_robust04_svm_rm3(self): + pyserini_topics = 'robust04' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_svm_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2972, delta=0.0001) + + def test_robust04_avg(self): + pyserini_topics = 'robust04' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_avg.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_avg.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.276, delta=0.0001) + + def test_robust04_avg_rm3(self): + pyserini_topics = 'robust04' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_avg_rm3.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_avg_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2980, delta=0.0001) + + def test_robust04_rrf(self): + pyserini_topics = 'robust04' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/robust04_lr.txt {self.tmp}/robust04_svm.txt \ + --output {self.tmp}/robust04_rrf.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_rrf.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.275, delta=0.0001) + + def test_robust04_rrf_rm3(self): + pyserini_topics = 'robust04' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.robust04_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust04_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/robust04_lr_rm3.txt {self.tmp}/robust04_svm_rm3.txt \ + --output {self.tmp}/robust04_rrf_rm3.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust04.txt \ + {self.tmp}/robust04_rrf_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2977, delta=0.0001) + + def test_robust05(self): + self.assertTrue(self.robust05_checker.run('robust05_bm25', '--bm25', 0.2032)) + + def test_robust05_rm3(self): + self.assertTrue(self.robust05_checker.run('robust05_bm25_rm3', '--bm25 --rm3', 0.2624)) + + def test_robust05_lr(self): + pyserini_topics = 'robust05' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.8' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_lr.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2476, delta=0.0001) + + def test_robust05_lr_rm3(self): + pyserini_topics = 'robust05' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_lr_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2872, delta=0.0001) + + def test_robust05_svm(self): + pyserini_topics = 'robust05' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.8' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_svm.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2486, delta=0.0001) + + def test_robust05_svm_rm3(self): + pyserini_topics = 'robust05' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_svm_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2871, delta=0.0001) + + def test_robust05_avg(self): + pyserini_topics = 'robust05' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_avg.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.8' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_avg.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2485, delta=0.0001) + + def test_robust05_avg_rm3(self): + pyserini_topics = 'robust05' + + run_file_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_avg_rm3.txt \ + --prcl lr svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.6 --rm3' + + status = os.system(run_file_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_avg_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2880, delta=0.0001) + + def test_robust05_rrf(self): + pyserini_topics = 'robust05' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_lr.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_svm.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.5' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/robust05_lr.txt {self.tmp}/robust05_svm.txt \ + --output {self.tmp}/robust05_rrf.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_rrf.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2401, delta=0.0001) + + def test_robust05_rrf_rm3(self): + pyserini_topics = 'robust05' + lr_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_lr_rm3.txt \ + --prcl lr --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(lr_cmd) + self.assertEqual(status, 0) + + svm_cmd = f'{self.pyserini_search_cmd} --index {self.robust05_index_path} \ + --topics {pyserini_topics} --output {self.tmp}/robust05_svm_rm3.txt \ + --prcl svm --prcl.vectorizer TfidfVectorizer --prcl.alpha 0.3 --rm3' + + status = os.system(svm_cmd) + self.assertEqual(status, 0) + + rrf_cmd = f'{self.pyserini_fusion_cmd} \ + --runs {self.tmp}/robust05_lr_rm3.txt {self.tmp}/robust05_svm_rm3.txt \ + --output {self.tmp}/robust05_rrf_rm3.txt --resort' + + status = os.system(rrf_cmd) + self.assertEqual(status, 0) + + score_cmd = f'{self.pyserini_eval_cmd} -m map -m P.30 \ + {self.anserini_root}/src/main/resources/topics-and-qrels/qrels.robust05.txt \ + {self.tmp}/robust05_rrf_rm3.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + score = parse_score(stdout, 'map') + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertAlmostEqual(score, 0.2808, delta=0.0001) + + def tearDown(self): + shutil.rmtree(f'{self.tmp}') + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/clprf/test_trec_covid_r3.py b/integrations/clprf/test_trec_covid_r3.py new file mode 100644 index 0000000000000000000000000000000000000000..c390bd92bbf77368d121d2198a6aefd0d4a9e0f2 --- /dev/null +++ b/integrations/clprf/test_trec_covid_r3.py @@ -0,0 +1,85 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os +import re +import shutil +import unittest +from random import randint + +from pyserini.util import download_url, download_prebuilt_index + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + + curdir = os.getcwd() + if curdir.endswith('clprf'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + + self.tmp = f'{self.pyserini_root}/integrations/tmp{randint(0, 10000)}' + + # In the rare event there's a collision + if os.path.exists(self.tmp): + shutil.rmtree(self.tmp) + + os.mkdir(self.tmp) + os.mkdir(f'{self.tmp}/runs') + + self.round3_runs = { + 'https://raw.githubusercontent.com/castorini/anserini/master/src/main/resources/topics-and-qrels/qrels.covid-round3-cumulative.txt': + 'dfccc32efd58a8284ae411e5c6b27ce9', + } + + download_url('https://ir.nist.gov/covidSubmit/archive/round3/covidex.r3.monot5', + f'{self.tmp}/runs') + + for url in self.round3_runs: + print(f'Verifying stored run at {url}...') + filename = url.split('/')[-1] + filename = re.sub('\\?dl=1$', '', filename) # Remove the Dropbox 'force download' parameter + + download_url(url, self.tmp, md5=self.round3_runs[url], force=True) + self.assertTrue(os.path.exists(os.path.join(self.tmp, filename))) + + def test_bm25(self): + tmp_folder_name = self.tmp.split('/')[-1] + prebuilt_index_path = download_prebuilt_index('trec-covid-r3-abstract') + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/rank_trec_covid.py \ + -alpha 0.5 \ + -clf lr \ + -vectorizer tfidf \ + -new_qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round3.txt \ + -base {self.tmp}/runs/covidex.r3.monot5 \ + -tmp_base {tmp_folder_name} \ + -qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round2-cumulative.txt \ + -index {prebuilt_index_path} \ + -tag covidex.r3.t5.lr \ + -output {self.tmp}/output.json') + with open(f'{self.tmp}/output.json') as json_file: + data = json.load(json_file) + self.assertEqual("0.3333", data['map']) + self.assertEqual("0.6916", data['ndcg']) + + def tearDown(self): + shutil.rmtree(self.tmp) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/clprf/test_trec_covid_r4.py b/integrations/clprf/test_trec_covid_r4.py new file mode 100644 index 0000000000000000000000000000000000000000..6bfd6b58c0ad155ca7279c8383e513b66aa6932c --- /dev/null +++ b/integrations/clprf/test_trec_covid_r4.py @@ -0,0 +1,91 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import gzip +import json +import os +import re +import shutil +import unittest +from random import randint + +from pyserini.util import download_url, download_prebuilt_index + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + + curdir = os.getcwd() + if curdir.endswith('clprf'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + + self.tmp = f'{self.pyserini_root}/integrations/tmp{randint(0, 10000)}' + + # In the rare event there's a collision + if os.path.exists(self.tmp): + shutil.rmtree(self.tmp) + + os.mkdir(self.tmp) + os.mkdir(f'{self.tmp}/runs') + + self.round4_runs = { + 'https://raw.githubusercontent.com/castorini/anserini/master/src/main/resources/topics-and-qrels/qrels.covid-round4-cumulative.txt': + '7a5c27e8e052c49ff72d557051825973', + } + + download_url('https://ir.nist.gov/covidSubmit/archive/round4/covidex.r4.d2q.duot5.gz', + f'{self.tmp}/runs') + + with gzip.open(f'{self.tmp}/runs/covidex.r4.d2q.duot5.gz', 'rb') as f_in: + with open(f'{self.tmp}/runs/covidex.r4.d2q.duot5', 'wb') as f_out: + shutil.copyfileobj(f_in, f_out) + + for url in self.round4_runs: + print(f'Verifying stored run at {url}...') + filename = url.split('/')[-1] + filename = re.sub('\\?dl=1$', '', filename) # Remove the Dropbox 'force download' parameter + + download_url(url, self.tmp, md5=self.round4_runs[url], force=True) + self.assertTrue(os.path.exists(os.path.join(self.tmp, filename))) + print('') + + def test_bm25(self): + tmp_folder_name = self.tmp.split('/')[-1] + prebuilt_index_path = download_prebuilt_index('trec-covid-r4-abstract') + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/rank_trec_covid.py \ + -alpha 0.6 \ + -clf lr \ + -vectorizer tfidf \ + -new_qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round4.txt \ + -base {self.tmp}/runs/covidex.r4.d2q.duot5 \ + -tmp_base {tmp_folder_name} \ + -qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round3-cumulative.txt \ + -index {prebuilt_index_path} \ + -tag covidex.r4.d2q.duot5.lr \ + -output {self.tmp}/output.json') + with open(f'{self.tmp}/output.json') as json_file: + data = json.load(json_file) + self.assertEqual("0.3846", data['map']) + self.assertEqual("0.7745", data['ndcg']) + + def tearDown(self): + shutil.rmtree(self.tmp) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/clprf/test_trec_covid_r5.py b/integrations/clprf/test_trec_covid_r5.py new file mode 100644 index 0000000000000000000000000000000000000000..fb3c6e351a5b9fe8505ba39d4befa3b54183b077 --- /dev/null +++ b/integrations/clprf/test_trec_covid_r5.py @@ -0,0 +1,141 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import re +import shutil +import unittest +import json +import gzip +from random import randint +from pyserini.util import download_url, download_prebuilt_index + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + + curdir = os.getcwd() + if curdir.endswith('clprf'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + + self.tmp = f'{self.pyserini_root}/integrations/tmp{randint(0, 10000)}' + + # In the rare event there's a collision + if os.path.exists(self.tmp): + shutil.rmtree(self.tmp) + + os.mkdir(self.tmp) + os.mkdir(f'{self.tmp}/runs') + + self.round5_runs = { + 'https://ir.nist.gov/covidSubmit/archive/round5/covidex.r5.d2q.1s.gz': + '2181ae5b7fe8bafbd3b41700f3ccde02', + 'https://ir.nist.gov/covidSubmit/archive/round5/covidex.r5.d2q.2s.gz': + 'e61f9b6de5ffbe1b5b82d35216968154', + 'https://ir.nist.gov/covidSubmit/archive/round5/covidex.r5.2s.gz': + '6e517a5e044d8b7ce983f7e165cf4aeb', + 'https://ir.nist.gov/covidSubmit/archive/round5/covidex.r5.1s.gz': + 'dc9b4b45494294a8448cf0693f07f7fd' + } + + for url in self.round5_runs: + print(f'Verifying stored run at {url}...') + filename = url.split('/')[-1] + filename = re.sub('\\?dl=1$', '', filename) # Remove the Dropbox 'force download' parameter + gzip_filename = '.'.join(filename.split('.')[:-1]) + + download_url(url, f'{self.tmp}/runs/', md5=self.round5_runs[url], force=True) + self.assertTrue(os.path.exists(os.path.join(f'{self.tmp}/runs/', filename))) + with gzip.open(f'{self.tmp}/runs/{filename}', 'rb') as f_in: + with open(f'{self.tmp}/runs/{gzip_filename}', 'wb') as f_out: + shutil.copyfileobj(f_in, f_out) + + def test_round5(self): + tmp_folder_name = self.tmp.split('/')[-1] + prebuilt_index_path = download_prebuilt_index('trec-covid-r5-abstract') + + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/rank_trec_covid.py \ + -alpha 0.6 \ + -clf lr \ + -vectorizer tfidf \ + -new_qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round5.txt \ + -base {self.tmp}/runs/covidex.r5.d2q.1s \ + -tmp_base {tmp_folder_name} \ + -qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round4-cumulative.txt \ + -index {prebuilt_index_path} \ + -tag covidex.r5.d2q.1s \ + -output {self.tmp}/output.json') + with open(f'{self.tmp}/output.json') as json_file: + data = json.load(json_file) + self.assertEqual("0.3859", data['map']) + self.assertEqual("0.8221", data['ndcg']) + + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/rank_trec_covid.py \ + -alpha 0.6 \ + -clf lr \ + -vectorizer tfidf \ + -new_qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round5.txt \ + -base {self.tmp}/runs/covidex.r5.d2q.2s \ + -tmp_base {tmp_folder_name} \ + -qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round4-cumulative.txt \ + -index {prebuilt_index_path} \ + -tag covidex.r5.d2q.2s \ + -output {self.tmp}/output.json') + with open(f'{self.tmp}/output.json') as json_file: + data = json.load(json_file) + self.assertEqual("0.3875", data['map']) + self.assertEqual("0.8304", data['ndcg']) + + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/rank_trec_covid.py \ + -alpha 0.6 \ + -clf lr \ + -vectorizer tfidf \ + -new_qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round5.txt \ + -base {self.tmp}/runs/covidex.r5.1s \ + -tmp_base {tmp_folder_name} \ + -qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round4-cumulative.txt \ + -index {prebuilt_index_path} \ + -tag covidex.r5.1s \ + -output {self.tmp}/output.json') + with open(f'{self.tmp}/output.json') as json_file: + data = json.load(json_file) + self.assertEqual("0.3885", data['map']) + self.assertEqual("0.8135", data['ndcg']) + + os.system(f'python {self.pyserini_root}/scripts/classifier_prf/rank_trec_covid.py \ + -alpha 0.6 \ + -clf lr \ + -vectorizer tfidf \ + -new_qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round5.txt \ + -base {self.tmp}/runs/covidex.r5.2s \ + -tmp_base {tmp_folder_name} \ + -qrels {self.pyserini_root}/tools/topics-and-qrels/qrels.covid-round4-cumulative.txt \ + -index {prebuilt_index_path} \ + -tag covidex.r5.2s \ + -output {self.tmp}/output.json') + with open(f'{self.tmp}/output.json') as json_file: + data = json.load(json_file) + self.assertEqual("0.3922", data['map']) + self.assertEqual("0.8311", data['ndcg']) + + def tearDown(self): + shutil.rmtree(self.tmp) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_ance.py b/integrations/dense/test_ance.py new file mode 100644 index 0000000000000000000000000000000000000000..9eef991d07321682b7dfc33a78fb54e29f83f146 --- /dev/null +++ b/integrations/dense/test_ance.py @@ -0,0 +1,185 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for ANCE and ANCE PRF using on-the-fly query encoding.""" + +import os +import socket +import unittest + +from integrations.utils import clean_files, run_command, parse_score, parse_score_qa, parse_score_msmarco +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 256 + self.rocchio_alpha = 0.4 + self.rocchio_beta = 0.6 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_ance_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('ance-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + encoded = QueryEncoder.load_encoded_queries('ance-dl19-passage') + topics = get_topics('dl19-passage') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + encoded = QueryEncoder.load_encoded_queries('ance-dl20') + topics = get_topics('dl20') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def test_msmarco_passage_ance_avg_prf_otf(self): + output_file = 'test_run.dl2019.ance.avg-prf.otf.trec' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics dl19-passage \ + --index msmarco-passage-ance-bf \ + --encoder castorini/ance-msmarco-passage \ + --batch-size {self.batch_size} \ + --threads {self.threads} \ + --output {output_file} \ + --prf-depth 3 \ + --prf-method avg' + cmd2 = f'python -m pyserini.eval.trec_eval -l 2 -m map dl19-passage {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, 'map') + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.4247, delta=0.0001) + + def test_msmarco_passage_ance_rocchio_prf_otf(self): + output_file = 'test_run.dl2019.ance.rocchio-prf.otf.trec' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics dl19-passage \ + --index msmarco-passage-ance-bf \ + --encoder castorini/ance-msmarco-passage \ + --batch-size {self.batch_size} \ + --threads {self.threads} \ + --output {output_file} \ + --prf-depth 5 \ + --prf-method rocchio \ + --rocchio-topk 5 \ + --threads {self.threads} \ + --rocchio-alpha {self.rocchio_alpha} \ + --rocchio-beta {self.rocchio_beta}' + cmd2 = f'python -m pyserini.eval.trec_eval -l 2 -m map dl19-passage {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, 'map') + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.4211, delta=0.0001) + + def test_msmarco_doc_ance_bf_otf(self): + output_file = 'test_run.msmarco-doc.passage.ance-maxp.otf.txt' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-doc-dev \ + --index msmarco-doc-ance-maxp-bf \ + --encoder castorini/ance-msmarco-doc-maxp \ + --output {output_file}\ + --hits 1000 \ + --max-passage \ + --max-passage-hits 100 \ + --output-format msmarco \ + --batch-size {self.batch_size} \ + --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.msmarco_doc_eval --judgments msmarco-doc-dev --run {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score_msmarco(stdout, 'MRR @100') + self.assertEqual(status, 0) + # We get a small difference, 0.3794 on macOS. + self.assertAlmostEqual(score, 0.3796, delta=0.0002) + + def test_msmarco_doc_ance_bf_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('ance_maxp-msmarco-doc-dev') + topics = get_topics('msmarco-doc-dev') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_nq_test_ance_bf_otf(self): + output_file = 'test_run.ance.nq-test.multi.bf.otf.trec' + retrieval_file = 'test_run.ance.nq-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-nq-test \ + --index wikipedia-ance-multi-bf \ + --encoder castorini/ance-dpr-question-multi \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-nq-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.8224, places=4) + + def test_nq_test_ance_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-nq-test') + topics = get_topics('dpr-nq-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_trivia_test_ance_bf_otf(self): + output_file = 'test_run.ance.trivia-test.multi.bf.otf.trec' + retrieval_file = 'test_run.ance.trivia-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-trivia-test \ + --index wikipedia-ance-multi-bf \ + --encoder castorini/ance-dpr-question-multi \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-trivia-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.8010, places=4) + + def test_trivia_test_ance_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-trivia-test') + topics = get_topics('dpr-trivia-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_distilbert_kd.py b/integrations/dense/test_distilbert_kd.py new file mode 100644 index 0000000000000000000000000000000000000000..f930007433b87bdddda72ac63f5e4e61a9432655 --- /dev/null +++ b/integrations/dense/test_distilbert_kd.py @@ -0,0 +1,45 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for DistilBERT KD.""" + +import unittest + +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + # Note that we test actual retrieval in 2CR, so no need to test here. + def test_distilbert_kd_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('distilbert_kd-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + encoded = QueryEncoder.load_encoded_queries('distilbert_kd-dl19-passage') + topics = get_topics('dl19-passage') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + encoded = QueryEncoder.load_encoded_queries('distilbert_kd-dl20') + topics = get_topics('dl20') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_distilbert_tasb.py b/integrations/dense/test_distilbert_tasb.py new file mode 100644 index 0000000000000000000000000000000000000000..db52b313b2eb6e3c9b5610050f729f5d78cd5a00 --- /dev/null +++ b/integrations/dense/test_distilbert_tasb.py @@ -0,0 +1,44 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for DistilBERT TAS-B.""" + +import unittest + +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + def test_distilbert_kd_tas_b_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('distilbert_tas_b-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + encoded = QueryEncoder.load_encoded_queries('distilbert_tas_b-dl19-passage') + topics = get_topics('dl19-passage') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + encoded = QueryEncoder.load_encoded_queries('distilbert_tas_b-dl20') + topics = get_topics('dl20') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_dpr.py b/integrations/dense/test_dpr.py new file mode 100644 index 0000000000000000000000000000000000000000..33e6a38cc01c2def3be23898374536036087d8dd --- /dev/null +++ b/integrations/dense/test_dpr.py @@ -0,0 +1,339 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for DPR model using pre-encoded queries.""" + +import json +import os +import socket +import unittest + +from integrations.utils import clean_files, run_command, parse_score_qa +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 256 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_dpr_nq_test_bf_otf(self): + output_file = 'test_run.dpr.nq-test.multi.bf.otf.trec' + retrieval_file = 'test_run.dpr.nq-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-nq-test \ + --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-nq-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.7947, places=4) + + def test_dpr_nq_test_bf_bm25_hybrid_otf(self): + output_file = 'test_run.dpr.nq-test.multi.bf.otf.bm25.trec' + retrieval_file = 'test_run.dpr.nq-test.multi.bf.otf.bm25.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.hybrid dense --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + sparse --index wikipedia-dpr \ + fusion --alpha 1.3 \ + run --topics dpr-nq-test \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output {output_file} ' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-nq-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.8260, places=4) + + def test_dpr_nq_test_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-nq-test') + topics = get_topics('dpr-nq-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_dpr_trivia_test_bf_otf(self): + output_file = 'test_run.dpr.trivia-test.multi.bf.otf.trec' + retrieval_file = 'test_run.dpr.trivia-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-trivia-test \ + --encoder facebook/dpr-question_encoder-multiset-base \ + --index wikipedia-dpr-multi-bf \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-trivia-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.7887, places=4) + + def test_dpr_trivia_test_bf_bm25_hybrid_otf(self): + output_file = 'test_run.dpr.trivia-test.multi.bf.otf.bm25.trec' + retrieval_file = 'test_run.dpr.trivia-test.multi.bf.otf.bm25.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.hybrid dense --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + sparse --index wikipedia-dpr \ + fusion --alpha 0.95 \ + run --topics dpr-trivia-test \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output {output_file} ' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-trivia-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.8264, places=4) + + def test_dpr_trivia_test_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-trivia-test') + topics = get_topics('dpr-trivia-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_dpr_wq_test_bf_otf(self): + output_file = 'test_run.dpr.wq-test.multi.bf.otf.trec' + retrieval_file = 'test_run.dpr.wq-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-wq-test \ + --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-wq-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.7505, places=4) + + def test_dpr_wq_test_bf_bm25_hybrid_otf(self): + output_file = 'test_run.dpr.wq-test.multi.bf.otf.bm25.trec' + retrieval_file = 'test_run.dpr.wq-test.multi.bf.otf.bm25.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.hybrid dense --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + sparse --index wikipedia-dpr \ + fusion --alpha 0.95 \ + run --topics dpr-wq-test \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output {output_file} ' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-wq-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.7712, places=4) + + def test_dpr_wq_test_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-wq-test') + topics = get_topics('dpr-wq-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_dpr_curated_test_bf_otf(self): + output_file = 'test_run.dpr.curated-test.multi.bf.otf.trec' + retrieval_file = 'test_run.dpr.curated-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-curated-test \ + --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-curated-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file} \ + --regex' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20 --regex' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.8876, places=4) + + def test_dpr_curated_test_bf_bm25_hybrid_otf(self): + output_file = 'test_run.dpr.curated-test.multi.bf.otf.bm25.trec' + retrieval_file = 'test_run.dpr.curated-test.multi.bf.otf.bm25.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.hybrid dense --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + sparse --index wikipedia-dpr \ + fusion --alpha 1.05 \ + run --topics dpr-curated-test \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output {output_file} ' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-curated-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file} \ + --regex' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20 --regex' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.9006, places=4) + + def test_dpr_curated_test_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-curated-test') + topics = get_topics('dpr-curated-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_dpr_squad_test_bf_otf(self): + output_file = 'test_run.dpr.squad-test.multi.bf.otf.trec' + retrieval_file = 'test_run.dpr.squad-test.multi.bf.otf.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.faiss --topics dpr-squad-test \ + --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-squad-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + self.assertAlmostEqual(score, 0.5199, places=4) + + def test_dpr_squad_test_bf_bm25_hybrid_otf(self): + output_file = 'test_run.dpr.squad-test.multi.bf.otf.bm25.trec' + retrieval_file = 'test_run.dpr.squad-test.multi.bf.otf.bm25.json' + self.temp_files.extend([output_file, retrieval_file]) + cmd1 = f'python -m pyserini.search.hybrid dense --index wikipedia-dpr-multi-bf \ + --encoder facebook/dpr-question_encoder-multiset-base \ + sparse --index wikipedia-dpr \ + fusion --alpha 2.0 \ + run --topics dpr-squad-test \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output {output_file} ' + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics dpr-squad-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {retrieval_file}' + cmd3 = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {retrieval_file} --topk 20' + status1 = os.system(cmd1) + status2 = os.system(cmd2) + stdout, stderr = run_command(cmd3) + score = parse_score_qa(stdout, 'Top20') + self.assertEqual(status1, 0) + self.assertEqual(status2, 0) + # This appears to be a flaky test case; previously, we were getting a score of 0.7511, per + # https://github.com/castorini/pyserini/pull/1273/files#diff-799c2c339e1d7defa31fa1e82f9b16886269b37805376ef93f7c8afedcee574e + # Sometimes we get 0.7512. Fix is to reduce tolerance. + self.assertAlmostEqual(score, 0.7514, places=3) + + def test_dpr_squad_test_encoded_queries(self): + encoder = QueryEncoder.load_encoded_queries('dpr_multi-squad-test') + topics = get_topics('dpr-squad-test') + for t in topics: + self.assertTrue(topics[t]['title'] in encoder.embedding) + + def test_convert_trec_run_to_dpr_retrieval_run(self): + trec_run_file = 'tests/resources/simple_test_run_convert_trec_run_dpr.trec' + topics_file = 'tests/resources/simple_topics_dpr.txt' + dpr_run_file = 'test_run.convert.trec_run.dpr.json' + collection_path = "tests/resources/sample_collection_dense" + topic_reader = "io.anserini.search.topicreader.DprNqTopicReader" + index_dir = 'temp_index' + + self.temp_files.extend([dpr_run_file, index_dir]) + cmd1 = f'python -m pyserini.index.lucene -collection JsonCollection ' + \ + f'-generator DefaultLuceneDocumentGenerator ' + \ + f'-threads 1 -input {collection_path} -index {index_dir} -storeRaw' + + cmd2 = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics-file {topics_file} \ + --topics-reader {topic_reader} \ + --index {index_dir} \ + --input {trec_run_file} \ + --output {dpr_run_file}' + _ = os.system(cmd1) + _ = os.system(cmd2) + + with open(dpr_run_file) as f: + topic_data = json.load(f) + + self.assertEqual(topic_data["0"]["answers"], ['text']) + self.assertEqual(topic_data["0"]["question"], "what is in document three") + self.assertEqual(topic_data["1"]["answers"], ['contents']) + self.assertEqual(topic_data["1"]["question"], "what is document two") + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_encode.py b/integrations/dense/test_encode.py new file mode 100644 index 0000000000000000000000000000000000000000..113be14c5fdde71818c3e8af931600698209f1ae --- /dev/null +++ b/integrations/dense/test_encode.py @@ -0,0 +1,137 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for create dense index """ + +import os +import shutil +import unittest +from urllib.request import urlretrieve + +import faiss + +from pyserini.search.faiss import FaissSearcher +from pyserini.search.lucene import LuceneImpactSearcher + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + curdir = os.getcwd() + if curdir.endswith('dense'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + self.temp_folders = [] + self.corpus_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/corpus/jsonl/cacm.json' + self.corpus_path = f'{self.pyserini_root}/integrations/dense/temp_cacm/' + os.makedirs(self.corpus_path, exist_ok=True) + self.temp_folders.append(self.corpus_path) + urlretrieve(self.corpus_url, os.path.join(self.corpus_path, 'cacm.json')) + + def test_dpr_encode_as_faiss(self): + index_dir = f'{self.pyserini_root}/temp_index' + self.temp_folders.append(index_dir) + cmd1 = f'python -m pyserini.encode input --corpus {self.corpus_path} \ + --fields text \ + output --embeddings {index_dir} --to-faiss \ + encoder --encoder facebook/dpr-ctx_encoder-multiset-base \ + --fields text \ + --batch 4 \ + --device cpu' + _ = os.system(cmd1) + searcher = FaissSearcher( + index_dir, + 'facebook/dpr-question_encoder-multiset-base' + ) + q_emb, hit = searcher.search('What is the solution of separable closed queueing networks?', k=1, return_vector=True) + self.assertEqual(hit[0].docid, 'CACM-2445') + self.assertAlmostEqual(hit[0].vectors[0], -6.88267112e-01, places=4) + self.assertEqual(searcher.num_docs, 3204) + + def test_dpr_encode_as_faiss_search_with_partitions(self): + # Create two partitions of the CACM index, search them individually, and merge results to compute top hit + index_dir = f'{self.pyserini_root}/temp_index' + os.makedirs(os.path.join(index_dir, 'partition1'), exist_ok=True) + os.makedirs(os.path.join(index_dir, 'partition2'), exist_ok=True) + self.temp_folders.append(index_dir) + cmd1 = f'python -m pyserini.encode input --corpus {self.corpus_path} \ + --fields text \ + output --embeddings {index_dir} --to-faiss \ + encoder --encoder facebook/dpr-ctx_encoder-multiset-base \ + --fields text \ + --batch 4 \ + --device cpu' + _ = os.system(cmd1) + index = faiss.read_index(os.path.join(index_dir, 'index')) + new_index_partition1 = faiss.IndexFlatIP(index.d) + new_index_partition2 = faiss.IndexFlatIP(index.d) + vectors_partition1 = index.reconstruct_n(0, index.ntotal // 2) + vectors_partition2 = index.reconstruct_n(index.ntotal // 2, index.ntotal - index.ntotal // 2) + new_index_partition1.add(vectors_partition1) + new_index_partition2.add(vectors_partition2) + + faiss.write_index(new_index_partition1, os.path.join(index_dir, 'partition1/index')) + faiss.write_index(new_index_partition2, os.path.join(index_dir, 'partition2/index')) + + with open(os.path.join(index_dir, 'partition1/docid'), 'w') as docid1, open(os.path.join(index_dir, 'partition2/docid'), 'w') as docid2: + with open(os.path.join(index_dir, 'docid'), 'r') as file: + for i in range(index.ntotal): + line = next(file) + if i < (index.ntotal // 2): + docid1.write(line) + else: + docid2.write(line) + + searcher_partition1 = FaissSearcher(index_dir + '/partition1','facebook/dpr-question_encoder-multiset-base') + searcher_partition2 = FaissSearcher(index_dir + '/partition2','facebook/dpr-question_encoder-multiset-base') + q_emb, hit1 = searcher_partition1.search('What is the solution of separable closed queueing networks?', k=2, return_vector=True) + q_emb, hit2 = searcher_partition2.search('What is the solution of separable closed queueing networks?', k=2, return_vector=True) + merged_hits = hit1 + hit2 + merged_hits.sort(key=lambda x: x.score, reverse=True) + + self.assertEqual(merged_hits[0].docid, 'CACM-2445') + self.assertAlmostEqual(merged_hits[0].vectors[0], -6.88267112e-01, places=4) + self.assertEqual(searcher_partition1.num_docs, 1602) + self.assertEqual(searcher_partition2.num_docs, 1602) + + def test_unicoil_encode_as_jsonl(self): + embedding_dir = f'{self.pyserini_root}/temp_embeddings' + self.temp_folders.append(embedding_dir) + cmd1 = f'python -m pyserini.encode input --corpus {self.corpus_path} \ + --fields text \ + output --embeddings {embedding_dir} \ + encoder --encoder castorini/unicoil-msmarco-passage \ + --fields text \ + --batch 4 \ + --device cpu' + _ = os.system(cmd1) + index_dir = f'{self.pyserini_root}/temp_lucene' + self.temp_folders.append(index_dir) + cmd2 = f'python -m pyserini.index -collection JsonVectorCollection \ + -input {embedding_dir} \ + -index {index_dir} \ + -generator DefaultLuceneDocumentGenerator \ + -impact -pretokenized -threads 12 -storeRaw' + _ = os.system(cmd2) + searcher = LuceneImpactSearcher(index_dir, query_encoder='castorini/unicoil-msmarco-passage') + hits = searcher.search('What is the solution of separable closed queueing networks?', k=1) + hit = hits[0] + self.assertEqual(hit.docid, 'CACM-2712') + self.assertAlmostEqual(hit.score, 18.402, places=3) + + def tearDown(self): + for f in self.temp_folders: + shutil.rmtree(f) diff --git a/integrations/dense/test_kilt.py b/integrations/dense/test_kilt.py new file mode 100644 index 0000000000000000000000000000000000000000..4ca7b32a81401953350afc1531676adb945dc27e --- /dev/null +++ b/integrations/dense/test_kilt.py @@ -0,0 +1,69 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for KILT integration.""" + +import os +import re +import socket +import unittest + +from integrations.utils import clean_files, run_command + + +def parse_kilt_score(output, metric, digits=4): + pattern = re.compile(r"[0-1]\.[0-9]*") + for line in output.split('\n')[::-1]: + if metric in line: + score = float(pattern.search(line).group(0)) + return round(score, digits) + return None + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 256 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_kilt_search(self): + run_file = 'test_run.fever-dev-kilt.jsonl' + self.temp_files.append(run_file) + cmd1 = f'python -m pyserini.search --topics fever-dev-kilt \ + --topics-format kilt \ + --index wikipedia-kilt-doc \ + --output {run_file} \ + --output-format kilt \ + --threads {self.threads} \ + --batch-size {self.batch_size}' + status = os.system(cmd1) + self.assertEqual(status, 0) + cmd2 = f'python -m pyserini.eval.evaluate_kilt_retrieval {run_file} fever-dev-kilt --ks 1,100' + stdout, stderr = run_command(cmd2) + score = parse_kilt_score(stdout, "Rprec") + self.assertAlmostEqual(score, 0.3821, delta=0.0001) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_sbert.py b/integrations/dense/test_sbert.py new file mode 100644 index 0000000000000000000000000000000000000000..9402163f0515fc61439780fb35f82e1e8d5ad969 --- /dev/null +++ b/integrations/dense/test_sbert.py @@ -0,0 +1,67 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for ANCE model using on-the-fly query encoding.""" + +import os +import socket +import unittest + +from integrations.utils import clean_files, run_command, parse_score +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 256 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_msmarco_passage_sbert_bf_otf(self): + output_file = 'test_run.msmarco-passage.sbert.bf.otf.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-passage-dev-subset \ + --index msmarco-passage-sbert-bf \ + --encoder sentence-transformers/msmarco-distilbert-base-v3 \ + --batch-size {self.batch_size} \ + --threads {self.threads} \ + --output {output_file} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3314, delta=0.0001) + + def test_msmarco_passage_sbert_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('sbert-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_tct_colbert-v2.py b/integrations/dense/test_tct_colbert-v2.py new file mode 100644 index 0000000000000000000000000000000000000000..148c3608ee57731f99922611c081963511920d36 --- /dev/null +++ b/integrations/dense/test_tct_colbert-v2.py @@ -0,0 +1,132 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for TCT-ColBERTv2 models using on-the-fly query encoding.""" + +import os +import socket +import unittest + +from integrations.utils import clean_files, run_command, parse_score +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 256 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_msmarco_passage_tct_colbert_v2_bf_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert-v2.bf-otf.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-passage-dev-subset \ + --index msmarco-passage-tct_colbert-v2-bf \ + --encoder castorini/tct_colbert-v2-msmarco \ + --batch-size {self.batch_size} \ + --threads {self.threads} \ + --output {output_file} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3440, delta=0.0001) + + def test_msmarco_passage_tct_colbert_v2_hn_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert-v2-hn.bf-otf.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-passage-dev-subset \ + --index msmarco-passage-tct_colbert-v2-hn-bf \ + --encoder castorini/tct_colbert-v2-hn-msmarco \ + --batch-size {self.batch_size} \ + --threads {self.threads} \ + --output {output_file} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3543, delta=0.0001) + + def test_msmarco_passage_tct_colbert_v2_hnp_bf_bm25_hybrid_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert-v2-hnp.bf-otf.bm25.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.hybrid dense --index msmarco-passage-tct_colbert-v2-hnp-bf \ + --encoder castorini/tct_colbert-v2-hnp-msmarco \ + sparse --index msmarco-passage \ + fusion --alpha 0.06 \ + run --topics msmarco-passage-dev-subset \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3682, delta=0.0001) + + def test_msmarco_passage_tct_colbert_v2_hnp_bf_d2q_hybrid_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert-v2-hnp.bf-otf.doc2queryT5.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.hybrid dense --index msmarco-passage-tct_colbert-v2-hnp-bf \ + --encoder castorini/tct_colbert-v2-hnp-msmarco \ + sparse --index msmarco-passage-expanded \ + fusion --alpha 0.1 \ + run --topics msmarco-passage-dev-subset \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3731, delta=0.0001) + + def test_msmarco_passage_tct_colbert_v2_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('tct_colbert-v2-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def test_msmarco_passage_tct_colbert_v2_hn_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('tct_colbert-v2-hn-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def test_msmarco_passage_tct_colbert_v2_hnp_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('tct_colbert-v2-hnp-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/dense/test_tct_colbert.py b/integrations/dense/test_tct_colbert.py new file mode 100644 index 0000000000000000000000000000000000000000..e287bccc1ed3ae2982d0997298d85c20f8338d86 --- /dev/null +++ b/integrations/dense/test_tct_colbert.py @@ -0,0 +1,183 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for TCT-ColBERTv1 models using on-the-fly query encoding.""" + +import os +import socket +import unittest + +from integrations.utils import clean_files, run_command, parse_score +from pyserini.search import QueryEncoder +from pyserini.search import get_topics + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 256 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_msmarco_passage_tct_colbert_bf_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert.bf-otf.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-passage-dev-subset \ + --index msmarco-passage-tct_colbert-bf \ + --encoder castorini/tct_colbert-msmarco \ + --batch-size {self.batch_size} \ + --threads {self.threads} \ + --output {output_file} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + # We get a small difference in scores on macOS vs. Linux, better way to check: + self.assertAlmostEqual(score, 0.3350, delta=0.0002) + + def test_msmarco_passage_tct_colbert_hnsw_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert.hnsw-otf.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-passage-dev-subset \ + --index msmarco-passage-tct_colbert-hnsw \ + --encoder castorini/tct_colbert-msmarco \ + --output {output_file} \ + --output-format msmarco ' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3345, delta=0.0002) + + def test_msmarco_passage_tct_colbert_bf_bm25_hybrid_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert.bf-otf.bm25.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.hybrid dense --index msmarco-passage-tct_colbert-bf \ + --encoder castorini/tct_colbert-msmarco \ + sparse --index msmarco-passage \ + fusion --alpha 0.12 \ + run --topics msmarco-passage-dev-subset \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3529, places=4) + + def test_msmarco_passage_tct_colbert_bf_d2q_hybrid_otf(self): + output_file = 'test_run.msmarco-passage.tct_colbert.bf-otf.doc2queryT5.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.hybrid dense --index msmarco-passage-tct_colbert-bf \ + --encoder castorini/tct_colbert-msmarco \ + sparse --index msmarco-passage-expanded \ + fusion --alpha 0.22 \ + run --topics msmarco-passage-dev-subset \ + --output {output_file} \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3647, places=4) + + def test_msmarco_passage_tct_colbert_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('tct_colbert-msmarco-passage-dev-subset') + topics = get_topics('msmarco-passage-dev-subset') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def test_msmarco_doc_tct_colbert_bf_otf(self): + output_file = 'test_run.msmarco-doc.passage.tct_colbert-otf.txt' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.faiss --topics msmarco-doc-dev \ + --index msmarco-doc-tct_colbert-bf \ + --encoder castorini/tct_colbert-msmarco \ + --output {output_file} \ + --hits 1000 \ + --max-passage \ + --max-passage-hits 100 \ + --output-format msmarco \ + --batch-size {self.batch_size} \ + --threads {self.threads}' + cmd2 = f'python -m pyserini.eval.msmarco_doc_eval --judgments msmarco-doc-dev --run {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @100") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3323, places=4) + + def test_msmarco_doc_tct_colbert_bf_bm25_hybrid_otf(self): + output_file = 'test_run.msmarco-doc.tct_colbert.bf-otf.bm25.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.hybrid dense --index msmarco-doc-tct_colbert-bf \ + --encoder castorini/tct_colbert-msmarco \ + sparse --index msmarco-doc-per-passage \ + fusion --alpha 0.25 \ + run --topics msmarco-doc-dev \ + --output {output_file} \ + --hits 1000 --max-passage --max-passage-hits 100 \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_doc_eval --judgments msmarco-doc-dev --run {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @100") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3701, places=4) + + def test_msmarco_doc_tct_colbert_bf_d2q_hybrid_otf(self): + output_file = 'test_run.msmarco-doc.tct_colbert.bf-otf.doc2queryT5.tsv' + self.temp_files.append(output_file) + cmd1 = f'python -m pyserini.search.hybrid dense --index msmarco-doc-tct_colbert-bf \ + --encoder castorini/tct_colbert-msmarco \ + sparse --index msmarco-doc-expanded-per-passage \ + fusion --alpha 0.32 \ + run --topics msmarco-doc-dev \ + --output {output_file} \ + --hits 1000 --max-passage --max-passage-hits 100 \ + --batch-size {self.batch_size} --threads {self.threads} \ + --output-format msmarco' + cmd2 = f'python -m pyserini.eval.msmarco_doc_eval --judgments msmarco-doc-dev --run {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @100") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.3784, places=4) + + def test_msmarco_doc_tct_colbert_encoded_queries(self): + encoded = QueryEncoder.load_encoded_queries('tct_colbert-msmarco-doc-dev') + topics = get_topics('msmarco-doc-dev') + for t in topics: + self.assertTrue(topics[t]['title'] in encoded.embedding) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/lucenesearcher_anserini_checker.py b/integrations/lucenesearcher_anserini_checker.py new file mode 100644 index 0000000000000000000000000000000000000000..fa75abd224aa68ea4210ab30a56158f0371a9b52 --- /dev/null +++ b/integrations/lucenesearcher_anserini_checker.py @@ -0,0 +1,78 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import filecmp +import os +from typing import List + + +class LuceneSearcherAnseriniMatchChecker: + def __init__(self, anserini_root: str, index: str, topics: str, pyserini_topics: str, qrels: str, eval_root: str): + self.anserini_root = anserini_root + self.index_path = index + self.topics = topics + self.qrels = qrels + self.pyserini_topics = pyserini_topics + + self.anserini_base_cmd = os.path.join(self.anserini_root, + 'target/appassembler/bin/SearchCollection -topicreader Trec') + self.pyserini_base_cmd = 'python -m pyserini.search.lucene' + + self.eval_base_cmd = os.path.join(eval_root, 'tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30') + + @staticmethod + def _cleanup(files: List[str]): + for file in files: + if os.path.exists(file): + os.remove(file) + + def run(self, runtag: str, anserini_extras: str, pyserini_extras: str): + print('-------------------------') + print(f'Running {runtag}:') + print('-------------------------') + + anserini_output = f'verify.anserini.{runtag}.txt' + pyserini_output = f'verify.pyserini.{runtag}.txt' + + anserini_cmd = f'{self.anserini_base_cmd} -index {self.index_path} ' \ + + f'-topics {self.topics} -output {anserini_output} {anserini_extras}' + pyserini_cmd = f'{self.pyserini_base_cmd} --index {self.index_path} ' \ + + f'--topics {self.pyserini_topics} --output {pyserini_output} {pyserini_extras}' + + status = os.system(anserini_cmd) + if not status == 0: + self._cleanup([anserini_output, pyserini_output]) + return False + status = os.system(pyserini_cmd) + if not status == 0: + self._cleanup([anserini_output, pyserini_output]) + return False + + res = filecmp.cmp(anserini_output, pyserini_output) + if res is True: + eval_cmd = f'{self.eval_base_cmd} {self.qrels} {anserini_output}' + status = os.system(eval_cmd) + if not status == 0: + print(f'[FAIL] {runtag} evaluation failure!') + self._cleanup([anserini_output, pyserini_output]) + return False + print(f'[SUCCESS] {runtag} results verified!') + self._cleanup([anserini_output, pyserini_output]) + return True + else: + print(f'[FAIL] {runtag} result do not match!') + self._cleanup([anserini_output, pyserini_output]) + return False diff --git a/integrations/lucenesearcher_score_checker.py b/integrations/lucenesearcher_score_checker.py new file mode 100644 index 0000000000000000000000000000000000000000..579f9aa1dc3ef509a5eee9a66e7a1eed65215ffc --- /dev/null +++ b/integrations/lucenesearcher_score_checker.py @@ -0,0 +1,71 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +from typing import List + +from integrations.utils import run_command, parse_score + + +class LuceneSearcherScoreChecker: + def __init__(self, index: str, topics: str, pyserini_topics: str, qrels: str, eval:str): + self.index_path = index + self.topics = topics + self.qrels = qrels + self.pyserini_topics = pyserini_topics + + self.pyserini_base_cmd = 'python -m pyserini.search.lucene' + + self.eval_base_cmd = eval + + @staticmethod + def _cleanup(files: List[str]): + for file in files: + if os.path.exists(file): + os.remove(file) + + def run(self, runtag: str, pyserini_extras: str, actualscore: float, tokenizer = None): + print('-------------------------') + print(f'Running {runtag}:') + print('-------------------------') + + pyserini_output = f'verify.pyserini.{runtag}.txt' + + pyserini_cmd = f'{self.pyserini_base_cmd} --index {self.index_path} \ + --topics {self.pyserini_topics} --output {pyserini_output} {pyserini_extras}' + + if tokenizer is not None: + pyserini_cmd = pyserini_cmd + f' --tokenizer {tokenizer}' + + status = os.system(pyserini_cmd) + if not status == 0: + return False + + eval_cmd = f'{self.eval_base_cmd} {self.qrels} {pyserini_output}' + status = os.system(eval_cmd) + if not status == 0: + return False + + stdout, stderr = run_command(eval_cmd) + score = parse_score(stdout, 'map') + self._cleanup([pyserini_output]) + + if actualscore != score: + return False + + return True + + diff --git a/integrations/papers/test_ecir2023.py b/integrations/papers/test_ecir2023.py new file mode 100644 index 0000000000000000000000000000000000000000..4c6535e2b6c5dcdedacc8a9b8020d442b7e18645 --- /dev/null +++ b/integrations/papers/test_ecir2023.py @@ -0,0 +1,91 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for commands in Pradeep et al. resource paper at ECIR 2023.""" + +import os +import unittest + +from integrations.utils import clean_files, run_command, parse_score, parse_score_qa + + +class TestECIR2023(unittest.TestCase): + def setUp(self): + self.temp_files = [] + + def test_section5_sub2_first(self): + """Sample code of the first command in Section 5.2.""" + metrics = ["Top5", "Top20", "Top100"] + ground_truth = [73.8, 84.27, 89.34] + + output_file = 'runs/run.nq-test.dkrr.trec' + json_file = 'runs/run.nq-test.dkrr.json' + self.temp_files.append(output_file) + self.temp_files.append(json_file) + + # retrieval + run_cmd = f'python -m pyserini.search.faiss \ + --index wikipedia-dpr-dkrr-nq \ + --topics nq-test \ + --encoder castorini/dkrr-dpr-nq-retriever \ + --output {output_file} --query-prefix question: \ + --threads 72 --batch-size 72 \ + --hits 100' + status = os.system(run_cmd) + self.assertEqual(status, 0) + + # conversion + convert_cmd = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run \ + --topics nq-test \ + --index wikipedia-dpr \ + --input {output_file} \ + --output {json_file}' + status = os.system(convert_cmd) + self.assertEqual(status, 0) + + # evaluation + eval_cmd = f'python -m pyserini.eval.evaluate_dpr_retrieval \ + --retrieval {json_file} \ + --topk 5 20 100' + stdout, stderr = run_command(eval_cmd) + + scores = [] + for mt in metrics: + scores.append(parse_score_qa(stdout, mt, 4) * 100) + + for score in zip(scores, ground_truth): + self.assertAlmostEqual(score[0], score[1], delta=0.02) + + def test_section5_sub2_second(self): + """Sample code of the second command in Section 5.2.""" + + cmd_nq = 'python scripts/repro_matrix/run_all_odqa.py --topics nq' + cmd_tqa = 'python scripts/repro_matrix/run_all_odqa.py --topics nq' + + # run both commands, check if all tests passed (i.e., returned OK) + stdout_nq, stderr_nq = run_command(cmd_nq) + self.assertEqual(stdout_nq.count('[OK]'), 21) + + stdout_tqa, stderr_tqa = run_command(cmd_tqa) + self.assertEqual(stdout_tqa.count('[OK]'), 21) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() + diff --git a/integrations/papers/test_sigir2021.py b/integrations/papers/test_sigir2021.py new file mode 100644 index 0000000000000000000000000000000000000000..b59506e6d4c88d98cc4082ecc271b16b80ed95b1 --- /dev/null +++ b/integrations/papers/test_sigir2021.py @@ -0,0 +1,180 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for commands in Lin et al. (SIGIR 2021) paper.""" + +import os +import unittest + +from integrations.utils import clean_files, run_command, parse_score_msmarco +from pyserini.dsearch import SimpleDenseSearcher, TctColBertQueryEncoder +from pyserini.hsearch import HybridSearcher +from pyserini.index import IndexReader +from pyserini.search import SimpleSearcher +from pyserini.search import get_topics, get_qrels + + +class TestSIGIR2021(unittest.TestCase): + def setUp(self): + self.temp_files = [] + + def test_figure1(self): + """Sample code in Figure 1.""" + + searcher = SimpleSearcher.from_prebuilt_index('msmarco-passage') + hits = searcher.search('what is a lobster roll?', 10) + + self.assertAlmostEqual(hits[0].score, 11.00830, delta=0.0001) + self.assertEqual(hits[0].docid, '7157707') + + self.assertAlmostEqual(hits[9].score, 9.92200, delta=0.0001) + self.assertEqual(hits[9].docid, '6234461') + + self.assertEqual(len(hits), 10) + + def test_figure2(self): + """Sample code in Figure 2.""" + + encoder = TctColBertQueryEncoder('castorini/tct_colbert-msmarco') + searcher = SimpleDenseSearcher.from_prebuilt_index('msmarco-passage-tct_colbert-hnsw', encoder) + hits = searcher.search('what is a lobster roll') + + self.assertAlmostEqual(hits[0].score, 70.53741, delta=0.0001) + self.assertEqual(hits[0].docid, '7157710') + + self.assertAlmostEqual(hits[9].score, 69.01737, delta=0.0001) + self.assertEqual(hits[9].docid, '2920399') + + self.assertEqual(len(hits), 10) + + def test_figure3(self): + """Sample code in Figure 3.""" + + ssearcher = SimpleSearcher.from_prebuilt_index('msmarco-passage') + encoder = TctColBertQueryEncoder('castorini/tct_colbert-msmarco') + dsearcher = SimpleDenseSearcher.from_prebuilt_index('msmarco-passage-tct_colbert-hnsw', encoder) + hsearcher = HybridSearcher(dsearcher, ssearcher) + + hits = hsearcher.search('what is a lobster roll') + + self.assertAlmostEqual(hits[0].score, 71.56023, delta=0.0001) + self.assertEqual(hits[0].docid, '7157715') + + self.assertAlmostEqual(hits[9].score, 70.07635, delta=0.0001) + self.assertEqual(hits[9].docid, '7157708') + + self.assertEqual(len(hits), 10) + + def test_figure4(self): + """Sample code in Figure 4.""" + + topics = get_topics('msmarco-passage-dev-subset') + qrels = get_qrels('msmarco-passage-dev-subset') + + self.assertEqual(len(topics), 6980) + self.assertEqual(len(qrels), 6980) + + # Compute the average length of queries: + avg_qlen = sum([len(topics[t]['title'].split()) for t in topics])/len(topics) + + # Compute the average number of relevance judgments per query: + avg_qrels = sum([len(qrels[t]) for t in topics])/len(topics) + + self.assertAlmostEqual(avg_qlen, 5.925, delta=0.001) + self.assertAlmostEqual(avg_qrels, 1.065, delta=0.001) + + def test_figure5(self): + """Sample code in Figure 5.""" + + # Initialize from a pre-built index: + reader = IndexReader.from_prebuilt_index('robust04') + + terms = reader.terms() + term = next(terms) + self.assertEqual(term.term, '0') + self.assertEqual(term.df, 10826) + self.assertEqual(term.cf, 33491) + + term = next(terms) + + self.assertEqual(term.term, '0,0') + self.assertEqual(term.df, 2) + self.assertEqual(term.cf, 2) + + # Analyze a term: + term = 'atomic' + analyzed = reader.analyze(term) + self.assertEqual(analyzed[0], 'atom') + + # Directly fetch term statistics for a term: + df, cf = reader.get_term_counts(term) + self.assertEqual(df, 5219) + self.assertEqual(cf, 9144) + + # Traverse postings for a term: + postings_list = reader.get_postings_list(term) + self.assertEqual(len(postings_list), 5219) + self.assertEqual(postings_list[0].docid, 432) + self.assertEqual(postings_list[0].tf, 1) + self.assertEqual(postings_list[0].positions, [137]) + self.assertEqual(postings_list[5218].docid, 527779) + self.assertEqual(postings_list[5218].tf, 1) + self.assertEqual(postings_list[5218].positions, [21]) + + # Examples of manipulating document vectors: + tf = reader.get_document_vector('LA071090-0047') + tp = reader.get_term_positions('LA071090-0047') + df = { + term: (reader.get_term_counts(term, analyzer=None))[0] + for term in tf.keys() + } + bm25_vector = { + term: reader.compute_bm25_term_weight('LA071090-0047', + term, + analyzer=None) + for term in tf.keys() + } + + self.assertEqual(tf['hubbl'], 12) + self.assertEqual(tp['caught'], [42, 624, 960]) + self.assertEqual(df['problem'], 82225) + self.assertAlmostEqual(bm25_vector['hubbl'], 7.49397, delta=0.001) + self.assertAlmostEqual(bm25_vector['earth'], 2.64872, delta=0.001) + + def test_section3_3(self): + """Sample code in Section 3.3.""" + + output_file = 'run.msmarco-passage.txt' + self.temp_files.append(output_file) + run_cmd = f'python -m pyserini.search --topics msmarco-passage-dev-subset \ + --index msmarco-passage --output {output_file} \ + --bm25 --output-format msmarco' + status = os.system(run_cmd) + self.assertEqual(status, 0) + + eval_cmd = f'python -m pyserini.eval.msmarco_passage_eval \ + msmarco-passage-dev-subset {output_file}' + stdout, stderr = run_command(eval_cmd) + score = parse_score_msmarco(stdout, "MRR @10") + self.assertAlmostEqual(score, 0.1872, delta=0.0001) + # Temporary fix: this is Lucene 9 code running on Lucene 8 prebuilt index. + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/papers/test_sigir2022.py b/integrations/papers/test_sigir2022.py new file mode 100644 index 0000000000000000000000000000000000000000..3ff3908fd2510f1554eeb455ab5164af0b31fe17 --- /dev/null +++ b/integrations/papers/test_sigir2022.py @@ -0,0 +1,100 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for commands in Ma et al. resource paper and Trotman et al. demo paper at SIGIR 2022.""" + +import os +import unittest + +from integrations.utils import clean_files, run_command, parse_score, parse_score_msmarco + + +class TestSIGIR2021(unittest.TestCase): + def setUp(self): + self.temp_files = [] + + def test_Ma_etal_section4_1a(self): + """Sample code in Section 4.1. in Ma et al. resource paper.""" + + output_file = 'run.msmarco-passage.expanded.txt' + self.temp_files.append(output_file) + run_cmd = f'python -m pyserini.search.lucene \ + --index msmarco-v1-passage-d2q-t5 \ + --topics msmarco-passage-dev-subset \ + --output {output_file} \ + --output-format msmarco \ + --bm25' + status = os.system(run_cmd) + self.assertEqual(status, 0) + + eval_cmd = f'python -m pyserini.eval.msmarco_passage_eval \ + msmarco-passage-dev-subset {output_file}' + stdout, stderr = run_command(eval_cmd) + score = parse_score_msmarco(stdout, "MRR @10") + self.assertAlmostEqual(score, 0.2816, delta=0.0001) + # Note that this is the score with (k1=2.18, b=0.86); score is 0.2723 with default (k1=0.9, b=0.4) parameters. + + def test_Ma_etal_section4_1b(self): + """Sample code in Section 4.1. in Ma et al. resource paper.""" + + output_file = 'run.msmarco-v2-passage.unicoil.txt' + self.temp_files.append(output_file) + run_cmd = f'python -m pyserini.search.lucene \ + --index msmarco-v2-passage-unicoil-0shot \ + --topics msmarco-v2-passage-dev \ + --encoder castorini/unicoil-msmarco-passage \ + --output {output_file} \ + --batch 144 --threads 36 \ + --hits 1000 \ + --impact' + status = os.system(run_cmd) + self.assertEqual(status, 0) + + eval_cmd = f'python -m pyserini.eval.trec_eval -c -M 100 -m map -m recip_rank msmarco-v2-passage-dev {output_file}' + stdout, stderr = run_command(eval_cmd) + score = parse_score(stdout, "recip_rank") + self.assertAlmostEqual(score, 0.1501, delta=0.0001) + # This is the score with otf; with pre-encoded, the score is 0.1499. + + def test_Trotman_etal(self): + """Sample code in Trotman et al. demo paper.""" + + output_file = 'run.msmarco-passage.unicoil.tsv' + self.temp_files.append(output_file) + run_cmd = f'python -m pyserini.search.lucene \ + --index msmarco-passage-unicoil-d2q \ + --topics msmarco-passage-dev-subset-unicoil \ + --output {output_file} \ + --output-format msmarco \ + --batch 36 --threads 12 \ + --hits 1000 \ + --impact' + status = os.system(run_cmd) + self.assertEqual(status, 0) + + eval_cmd = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + stdout, stderr = run_command(eval_cmd) + score = parse_score_msmarco(stdout, "MRR @10", digits=3) + self.assertAlmostEqual(score, 0.352, delta=0.0005) + + # TODO: There's corresponding test code with JASS that's also in the demo paper. We should also add. + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/run_lucenesearcher.py b/integrations/run_lucenesearcher.py new file mode 100644 index 0000000000000000000000000000000000000000..0b22ec89c314c7e227a128ddd634fd467bc674ce --- /dev/null +++ b/integrations/run_lucenesearcher.py @@ -0,0 +1,51 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import hashlib +import os +from typing import List + + +class RunLuceneSearcher: + def __init__(self, index: str, topics: str): + self.index_path = index + self.topics = topics + self.pyserini_base_cmd = 'python -m pyserini.search.lucene' + + @staticmethod + def _cleanup(files: List[str]): + for file in files: + if os.path.exists(file): + os.remove(file) + + def run(self, runtag: str, extras: str) -> str: + print('-------------------------') + print(f'Running {runtag}:') + print('-------------------------') + + output = f'verify.pyserini.{runtag}.txt' + pyserini_cmd = f'{self.pyserini_base_cmd} --index {self.index_path} ' \ + + f'--topics {self.topics} --output {output} {extras}' + + status = os.system(pyserini_cmd) + if not status == 0: + self._cleanup([output]) + return "" + + with open(output, 'rb') as f: + md5 = hashlib.md5(f.read()).hexdigest() + self._cleanup([output]) + return md5 diff --git a/integrations/sparse/test_lucenesearcher_check_core17.py b/integrations/sparse/test_lucenesearcher_check_core17.py new file mode 100644 index 0000000000000000000000000000000000000000..349b21d5af8d7a2e1165b41782d9d34210e22b70 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_core17.py @@ -0,0 +1,59 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import unittest + +from integrations.lucenesearcher_anserini_checker import LuceneSearcherAnseriniMatchChecker + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('sparse'): + anserini_root = '../../../anserini' + pyserini_root = '../..' + else: + anserini_root = '../anserini' + pyserini_root = '.' + + self.checker = LuceneSearcherAnseriniMatchChecker( + anserini_root=anserini_root, + index=os.path.join(anserini_root, 'indexes/lucene-index.nyt'), + topics=os.path.join(pyserini_root, 'tools/topics-and-qrels/topics.core17.txt'), + pyserini_topics='core17', + qrels=os.path.join(pyserini_root, 'tools/topics-and-qrels/qrels.core17.txt'), + eval_root=pyserini_root) + + def test_bm25(self): + self.assertTrue(self.checker.run('core17_bm25', '-bm25', '--bm25')) + + def test_bm25_rm3(self): + self.assertTrue(self.checker.run('core17_bm25_rm3', '-bm25 -rm3', '--bm25 --rm3')) + + def test_qld(self): + self.assertTrue(self.checker.run('core17_qld', '-qld', '--qld')) + + def test_qld_rm3(self): + self.assertTrue(self.checker.run('core17_qld_rm3', '-qld -rm3', '--qld --rm3')) + + def tearDown(self): + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_check_core18.py b/integrations/sparse/test_lucenesearcher_check_core18.py new file mode 100644 index 0000000000000000000000000000000000000000..f80f7fe6cd22de18067fb7ac8b64f3fea5c4920d --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_core18.py @@ -0,0 +1,59 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import unittest + +from integrations.lucenesearcher_anserini_checker import LuceneSearcherAnseriniMatchChecker + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('sparse'): + anserini_root = '../../../anserini' + pyserini_root = '../..' + else: + anserini_root = '../anserini' + pyserini_root = '.' + + self.checker = LuceneSearcherAnseriniMatchChecker( + anserini_root=anserini_root, + index=os.path.join(anserini_root, 'indexes/lucene-index.wapo.v2'), + topics=os.path.join(pyserini_root, 'tools/topics-and-qrels/topics.core18.txt'), + pyserini_topics='core18', + qrels=os.path.join(pyserini_root, 'tools/topics-and-qrels/qrels.core18.txt'), + eval_root=pyserini_root) + + def test_bm25(self): + self.assertTrue(self.checker.run('core18_bm25', '-bm25', '--bm25')) + + def test_bm25_rm3(self): + self.assertTrue(self.checker.run('core18_bm25_rm3', '-bm25 -rm3', '--bm25 --rm3')) + + def test_qld(self): + self.assertTrue(self.checker.run('core18_qld', '-qld', '--qld')) + + def test_qld_rm3(self): + self.assertTrue(self.checker.run('core18_qld_rm3', '-qld -rm3', '--qld --rm3')) + + def tearDown(self): + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_check_irst.py b/integrations/sparse/test_lucenesearcher_check_irst.py new file mode 100644 index 0000000000000000000000000000000000000000..fe2a1181f7d82ad1165999093c409ea63ed73198 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_irst.py @@ -0,0 +1,355 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import unittest +from shutil import rmtree +from random import randint + +from integrations.utils import run_command, parse_score + + +class TestMsmarcoPassageIrst(unittest.TestCase): + def setUp(self): + curdir = os.getcwd() + if curdir.endswith('sparse'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + self.tmp = f'tmp{randint(0, 10000)}' + if os.path.isdir(self.tmp): + rmtree(self.tmp) + os.mkdir(self.tmp) + self.dl19_pass = 'dl19-passage' + self.dl20 = 'dl20' + + def test_sum_aggregation_dl19_passage(self): + # dl19 passage sum + topic = 'dl19-passage' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl19_pass} \ + --index msmarco-v1-passage \ + --output {self.tmp}/regression_test_sum.{topic}.txt \ + --alpha 0.1 ') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -l 2 {topic} {self.tmp}/regression_test_sum.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3281) + self.assertEqual(ndcg_score, 0.5260) + + def test_sum_aggregation_dl20_passage(self): + # dl20 passage sum + topic = 'dl20-passage' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl20} \ + --index msmarco-v1-passage \ + --output {self.tmp}/regression_test_sum.{topic}.txt \ + --alpha 0.1 ') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -l 2 {topic} {self.tmp}/regression_test_sum.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3520) + self.assertEqual(ndcg_score, 0.5578) + + def test_max_aggregation_dl19(self): + # dl19 passage max + topic = 'dl19-passage' + + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl19_pass} \ + --index msmarco-v1-passage \ + --output {self.tmp}/regression_test_max.{topic}.txt \ + --alpha 0.3 \ + --max-sim ') + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -l 2 {topic} {self.tmp}/regression_test_max.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3286) + self.assertEqual(ndcg_score, 0.5371) + + + def test_max_aggregation_dl20_passage(self): + # dl20 passage max + topic = 'dl20-passage' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl20} \ + --index msmarco-v1-passage \ + --output {self.tmp}/regression_test_max.{topic}.txt \ + --alpha 0.3 \ + --max-sim') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -l 2 {topic} {self.tmp}/regression_test_max.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3357) + self.assertEqual(ndcg_score, 0.5469) + + def tearDown(self): + rmtree(self.tmp) + + +class TestMsmarcoDocumentIrst(unittest.TestCase): + def setUp(self): + curdir = os.getcwd() + if curdir.endswith('sparse'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + self.tmp = f'tmp{randint(0, 10000)}' + if os.path.isdir(self.tmp): + rmtree(self.tmp) + os.mkdir(self.tmp) + self.dl19_doc = 'dl19-doc' + self.dl20 = 'dl20' + + def test_sum_aggregation_dl19_doc(self): + # dl19-doc-sum + topic = 'dl19-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl19_doc} \ + --index msmarco-v1-doc \ + --output {self.tmp}/regression_test_sum.{topic}.txt \ + --alpha 0.3') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_sum.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.2524) + self.assertEqual(ndcg_score, 0.5494) + + def test_sum_aggregation_dl20_doc(self): + # dl20-doc-sum + topic = 'dl20-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl20} \ + --index msmarco-v1-doc \ + --output {self.tmp}/regression_test_sum.{topic}.txt \ + --alpha 0.3 ') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_sum.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3825) + self.assertEqual(ndcg_score, 0.5559) + + def test_max_aggregation_dl19_doc(self): + # dl19-doc-max + topic = 'dl19-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl19_doc} \ + --index msmarco-v1-doc \ + --output {self.tmp}/regression_test_max.{topic}.txt \ + --alpha 0.3 \ + --max-sim') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_max.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.2205) + self.assertEqual(ndcg_score, 0.4917) + + def test_max_aggregation_dl20_doc(self): + # dl20-doc-max + topic = 'dl20-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl20} \ + --index msmarco-v1-doc \ + --output {self.tmp}/regression_test_max.{topic}.txt \ + --alpha 0.3 \ + --max-sim') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_max.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3373) + self.assertEqual(ndcg_score, 0.5015) + + def tearDown(self): + rmtree(self.tmp) + + +class TestMsmarcoDocumentSegIrst(unittest.TestCase): + def setUp(self): + curdir = os.getcwd() + if curdir.endswith('sparse'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + self.tmp = f'tmp{randint(0, 10000)}' + if os.path.isdir(self.tmp): + rmtree(self.tmp) + os.mkdir(self.tmp) + self.dl19_doc = 'dl19-doc' + self.dl20 = 'dl20' + + def test_sum_aggregation_dl19_doc_seg(self): + # dl19-doc-seg-sum + topic = 'dl19-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl19_doc} \ + --index msmarco-v1-doc-segmented \ + --output {self.tmp}/regression_test_sum.{topic}.txt \ + --hits 10000 --segments \ + --alpha 0.3') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_sum.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.2711) + self.assertEqual(ndcg_score, 0.5596) + + def test_sum_aggregation_dl20_doc_seg(self): + # dl20-doc-seg-sum + topic = 'dl20-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl20} \ + --index msmarco-v1-doc-segmented \ + --output {self.tmp}/regression_test_sum.{topic}.txt \ + --hits 10000 --segments \ + --alpha 0.3 ') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_sum.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3759) + self.assertEqual(ndcg_score, 0.5343) + + def test_max_aggregation_dl19_doc_seg(self): + # dl19-doc-seg-max + topic = 'dl19-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl19_doc} \ + --index msmarco-v1-doc-segmented \ + --output {self.tmp}/regression_test_max.{topic}.txt \ + --alpha 0.3 \ + --hits 10000 --segments \ + --max-sim') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_max.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.2425) + self.assertEqual(ndcg_score, 0.5193) + + def test_max_aggregation_dl20_doc_seg(self): + # dl20-doc-seg-max + topic = 'dl20-doc' + os.system(f'python -m pyserini.search.lucene.irst \ + --topics {self.dl20} \ + --index msmarco-v1-doc-segmented \ + --output {self.tmp}/regression_test_max.{topic}.txt \ + --alpha 0.3 \ + --hits 10000 --segments \ + --max-sim') + + score_cmd = f'python -m pyserini.eval.trec_eval \ + -c -m map -m ndcg_cut.10 -M 100 {topic} {self.tmp}/regression_test_max.{topic}.txt' + + status = os.system(score_cmd) + stdout, stderr = run_command(score_cmd) + map_score = parse_score(stdout, "map") + ndcg_score = parse_score(stdout, "ndcg") + + self.assertEqual(status, 0) + self.assertEqual(stderr, '') + self.assertEqual(map_score, 0.3496) + self.assertEqual(ndcg_score, 0.5089) + + def tearDown(self): + rmtree(self.tmp) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_check_ltr_msmarco_document.py b/integrations/sparse/test_lucenesearcher_check_ltr_msmarco_document.py new file mode 100644 index 0000000000000000000000000000000000000000..d1cf09dcad2cba9da6cfbe54914b9332d971da33 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_ltr_msmarco_document.py @@ -0,0 +1,60 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import subprocess +import sys +import unittest +from shutil import rmtree + + +class TestLtrMsmarcoDocument(unittest.TestCase): + def test_reranking(self): + if(os.path.isdir('ltr_test')): + rmtree('ltr_test') + os.mkdir('ltr_test') + inp = 'run.msmarco-pass-doc.bm25.txt' + outp = 'run.ltr.msmarco-pass-doc.test.trec' + outp_tsv = 'run.ltr.msmarco-pass-doc.test.tsv' + #Pre-trained ltr model + model_url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-models/model-ltr-msmarco-passage-mrr-v1.tar.gz' + model_tar_name = 'model-ltr-msmarco-passage-mrr-v1.tar.gz' + os.system(f'wget {model_url} -P ltr_test/') + os.system(f'tar -xzvf ltr_test/{model_tar_name} -C ltr_test') + + # IBM model + ibm_model_url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-models/model-ltr-ibm.tar.gz' + ibm_model_tar_name = 'model-ltr-ibm.tar.gz' + os.system(f'wget {ibm_model_url} -P ltr_test/') + os.system(f'tar -xzvf ltr_test/{ibm_model_tar_name} -C ltr_test') + os.system(f'python -m pyserini.search.lucene.ltr \ + --topic tools/topics-and-qrels/topics.msmarco-doc.dev.txt \ + --model ltr_test/msmarco-passage-ltr-mrr-v1/ \ + --qrel tools/topics-and-qrels/qrels.msmarco-doc.dev.txt \ + --index msmarco-doc-per-passage-ltr --ibm-model ltr_test/ibm_model/ \ + --granularity document --output ltr_test/{outp} --max-passage --hits 10000') + + result = subprocess.check_output(f'python tools/scripts/msmarco/msmarco_doc_eval.py --judgments tools/topics-and-qrels/qrels.msmarco-doc.dev.txt --run ltr_test/{outp}', shell=True).decode(sys.stdout.encoding) + a,b = result.find('#####################\nMRR @100:'), result.find('\nQueriesRanked: 5193\n#####################\n') + mrr = result[a+32:b] + # See: + # - https://github.com/castorini/pyserini/issues/951 + # - https://github.com/castorini/pyserini/issues/1430 + self.assertAlmostEqual(float(mrr), 0.3108, delta=0.0002) + rmtree('ltr_test') + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_check_ltr_msmarco_passage.py b/integrations/sparse/test_lucenesearcher_check_ltr_msmarco_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..acb333aa1556f68e268dec20ca732f6a70702de8 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_ltr_msmarco_passage.py @@ -0,0 +1,59 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import subprocess +import sys +import unittest +from shutil import rmtree + +from pyserini.search.lucene import LuceneSearcher + + +class TestLtrMsmarcoPassage(unittest.TestCase): + def test_reranking(self): + if(os.path.isdir('ltr_test')): + rmtree('ltr_test') + os.mkdir('ltr_test') + inp = 'run.msmarco-passage.bm25tuned.txt' + outp = 'run.ltr.msmarco-passage.test.tsv' + #Pre-trained ltr model + model_url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-models/model-ltr-msmarco-passage-mrr-v1.tar.gz' + model_tar_name = 'model-ltr-msmarco-passage-mrr-v1.tar.gz' + os.system(f'wget {model_url} -P ltr_test/') + os.system(f'tar -xzvf ltr_test/{model_tar_name} -C ltr_test') + # IBM model + ibm_model_url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-models/model-ltr-ibm.tar.gz' + ibm_model_tar_name = 'model-ltr-ibm.tar.gz' + os.system(f'wget {ibm_model_url} -P ltr_test/') + os.system(f'tar -xzvf ltr_test/{ibm_model_tar_name} -C ltr_test') + #queries process + os.system(f'python -m pyserini.search.lucene.ltr \ + --model ltr_test/msmarco-passage-ltr-mrr-v1 \ + --topic tools/topics-and-qrels/topics.msmarco-passage.dev-subset.txt \ + --qrel tools/topics-and-qrels/qrels.msmarco-passage.dev-subset.txt \ + --index msmarco-passage-ltr --ibm-model ltr_test/ibm_model/ \ + --output-format tsv --output ltr_test/{outp}') + result = subprocess.check_output(f'python tools/scripts/msmarco/msmarco_passage_eval.py tools/topics-and-qrels/qrels.msmarco-passage.dev-subset.txt ltr_test/{outp}', shell=True).decode(sys.stdout.encoding) + a,b = result.find('#####################\nMRR @10:'), result.find('\nQueriesRanked: 6980\n#####################\n') + mrr = result[a+31:b] + # See https://github.com/castorini/pyserini/issues/951 + self.assertAlmostEqual(float(mrr), 0.2472, delta=0.0001) + rmtree('ltr_test') + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_check_robust04.py b/integrations/sparse/test_lucenesearcher_check_robust04.py new file mode 100644 index 0000000000000000000000000000000000000000..0c770282da90dae52fee0b337b609857c0665e45 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_robust04.py @@ -0,0 +1,59 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import unittest + +from integrations.lucenesearcher_anserini_checker import LuceneSearcherAnseriniMatchChecker + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('sparse'): + anserini_root = '../../../anserini' + pyserini_root = '../..' + else: + anserini_root = '../anserini' + pyserini_root = '.' + + self.checker = LuceneSearcherAnseriniMatchChecker( + anserini_root=anserini_root, + index=os.path.join(anserini_root, 'indexes/lucene-index.disk45'), + topics=os.path.join(pyserini_root, 'tools/topics-and-qrels/topics.robust04.txt'), + pyserini_topics='robust04', + qrels=os.path.join(pyserini_root, 'tools/topics-and-qrels/qrels.robust04.txt'), + eval_root=pyserini_root) + + def test_bm25(self): + self.assertTrue(self.checker.run('robust04_bm25', '-bm25', '--bm25')) + + def test_bm25_rm3(self): + self.assertTrue(self.checker.run('robust04_bm25_rm3', '-bm25 -rm3', '--bm25 --rm3')) + + def test_qld(self): + self.assertTrue(self.checker.run('robust04_qld', '-qld', '--qld')) + + def test_qld_rm3(self): + self.assertTrue(self.checker.run('robust04_qld_rm3', '-qld -rm3', '--qld --rm3')) + + def tearDown(self): + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_check_robust05.py b/integrations/sparse/test_lucenesearcher_check_robust05.py new file mode 100644 index 0000000000000000000000000000000000000000..8c749d32ff752966deeca84bfdc64f42323f3319 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_check_robust05.py @@ -0,0 +1,59 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import unittest + +from integrations.lucenesearcher_anserini_checker import LuceneSearcherAnseriniMatchChecker + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('sparse'): + anserini_root = '../../../anserini' + pyserini_root = '../..' + else: + anserini_root = '../anserini' + pyserini_root = '.' + + self.checker = LuceneSearcherAnseriniMatchChecker( + anserini_root=anserini_root, + index=os.path.join(anserini_root, 'indexes/lucene-index.robust05'), + topics=os.path.join(pyserini_root, 'tools/topics-and-qrels/topics.robust05.txt'), + pyserini_topics='robust05', + qrels=os.path.join(pyserini_root, 'tools/topics-and-qrels/qrels.robust05.txt'), + eval_root=pyserini_root) + + def test_bm25(self): + self.assertTrue(self.checker.run('robust05_bm25', '-bm25', '--bm25')) + + def test_bm25_rm3(self): + self.assertTrue(self.checker.run('robust05_bm25_rm3', '-bm25 -rm3', '--bm25 --rm3')) + + def test_qld(self): + self.assertTrue(self.checker.run('robust05_qld', '-qld', '--qld')) + + def test_qld_rm3(self): + self.assertTrue(self.checker.run('robust05_qld_rm3', '-qld -rm3', '--qld --rm3')) + + def tearDown(self): + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_lucenesearcher_multithread.py b/integrations/sparse/test_lucenesearcher_multithread.py new file mode 100644 index 0000000000000000000000000000000000000000..df53b621f26c2faa0df1d06ea15712fe63896d64 --- /dev/null +++ b/integrations/sparse/test_lucenesearcher_multithread.py @@ -0,0 +1,79 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import unittest + +from integrations.run_lucenesearcher import RunLuceneSearcher + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.test_threads = ['--threads 1 --batch-size 64', '--threads 4 --batch-size 64'] + + def check_equal(self, runner: RunLuceneSearcher, runtag: str, extras: str) -> bool: + checksums = [] + for i, config in enumerate(self.test_threads): + checksum = runner.run(runtag=f'{runtag}-{i}', extras=f'{config} {extras}') + if len(checksum) == 0: + print(f'[FAIL] {runtag} {config} failed to run!') + return False + checksums.append(checksum) + equal = all(x == checksums[0] for x in checksums) + if equal: + print(f'[SUCCESS] {runtag} results match!') + else: + print(f'[FAIL] {runtag} results do not match!') + return equal + + def test_robust04(self): + checker = RunLuceneSearcher(index='robust04', topics='robust04') + self.assertTrue(self.check_equal(checker, 'robust04', extras='')) + + def test_msmarco_passage(self): + checker = RunLuceneSearcher(index='msmarco-v1-passage', topics='msmarco-passage-dev-subset') + self.assertTrue(self.check_equal(checker, 'msmarco-v1-passage', extras='--output-format msmarco')) + + def test_msmarco_passage_docTTTTTquery(self): + checker = RunLuceneSearcher(index='msmarco-v1-passage-d2q-t5', topics='msmarco-passage-dev-subset') + self.assertTrue(self.check_equal(checker, 'msmarco-v1-passage-d2q-t5', extras='--output-format msmarco')) + + def test_msmarco_doc(self): + checker = RunLuceneSearcher(index='msmarco-v1-doc', topics='msmarco-doc-dev') + self.assertTrue(self.check_equal(checker, 'msmarco-v1-doc', extras='--hits 100 --output-format msmarco')) + + def test_msmarco_doc_docTTTTTquery(self): + checker = RunLuceneSearcher(index='msmarco-v1-doc-d2q-t5', topics='msmarco-doc-dev') + self.assertTrue(self.check_equal(checker, 'msmarco-v1-doc-d2q-t5', + extras='--hits 100 --output-format msmarco')) + + def test_msmarco_doc_per_passage(self): + checker = RunLuceneSearcher(index='msmarco-v1-doc-segmented', topics='msmarco-doc-dev') + self.assertTrue( + self.check_equal(checker, 'msmarco-v1-doc-segmented', + extras='--hits 1000 --max-passage --max-passage-hits 100 --output-format msmarco')) + + def test_msmarco_doc_docTTTTTquery_passage(self): + checker = RunLuceneSearcher(index='msmarco-v1-doc-segmented-d2q-t5', topics='msmarco-doc-dev') + self.assertTrue( + self.check_equal(checker, 'msmarco-v1-doc-segmented-d2q-t5', + extras='--hits 1000 --max-passage --max-passage-hits 100 --output-format msmarco')) + + def tearDown(self): + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_nmslib.py b/integrations/sparse/test_nmslib.py new file mode 100644 index 0000000000000000000000000000000000000000..729fa3323247bc46b5aad4f2f80953f1c8a51f43 --- /dev/null +++ b/integrations/sparse/test_nmslib.py @@ -0,0 +1,66 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for nmslib index search""" + +import os +import socket +import unittest + +from integrations.utils import clean_files, run_command, parse_score + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 12 + self.batch_size = 36 + + # Hard-code larger values for internal servers + if socket.gethostname().startswith('damiano') or socket.gethostname().startswith('orca'): + self.threads = 36 + self.batch_size = 144 + + def test_msmarco_passage_deepimpact_nmslib_hnsw(self): + output_file = 'test_run.msmarco-passage.deepimpact.nmslib.tsv' + self.temp_files.append(output_file) + cmd = 'wget https://raw.githubusercontent.com/castorini/pyserini-data/main/encoded-queries/deepimpact_msmarco_passage_dev_topic.jsonl' + status = os.system(cmd) + cmd = 'wget https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/nmslib-index.msmarco-passage.deepimpact.20211012.58d286.tar.gz' + status = os.system(cmd) + cmd = 'tar -xvf nmslib-index.msmarco-passage.deepimpact.20211012.58d286.tar.gz' + status = os.system(cmd) + self.temp_files.append('deepimpact_msmarco_passage_dev_topic.jsonl') + self.temp_files.append('nmslib-index.msmarco-passage.deepimpact.20211012.58d286.tar.gz') + self.temp_files.append('nmslib-index.msmarco-passage.deepimpact.20211012.58d286') + cmd1 = f'python -m pyserini.search.nmslib --topics deepimpact_msmarco_passage_dev_topic.jsonl \ + --index nmslib-index.msmarco-passage.deepimpact.20211012.58d286 \ + --output {output_file} \ + --hits 1000 --batch {self.batch_size} --threads {self.threads} \ + --output-format msmarco --is-sparse --ef 1000' + cmd2 = f'python -m pyserini.eval.msmarco_passage_eval msmarco-passage-dev-subset {output_file}' + status = os.system(cmd1) + stdout, stderr = run_command(cmd2) + score = parse_score(stdout, "MRR @10") + self.assertEqual(status, 0) + self.assertAlmostEqual(score, 0.298, delta=0.001) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/integrations/sparse/test_prebuilt_msmarco_v1_doc.py b/integrations/sparse/test_prebuilt_msmarco_v1_doc.py new file mode 100644 index 0000000000000000000000000000000000000000..f8812c10b671f11f1eab198c841f39e1274785b1 --- /dev/null +++ b/integrations/sparse/test_prebuilt_msmarco_v1_doc.py @@ -0,0 +1,170 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for MS MARCO V1 doc corpora (full and segmented) using pre-built indexes.""" + +import unittest + +from integrations.utils import run_retrieval_and_return_scores + + +class TestPrebuiltMsMarcoV1Doc(unittest.TestCase): + def setUp(self): + self.threads = 16 + self.batch_size = 128 + + # + # doc "full" conditions + # + + def test_doc_full_trec_output(self): + """Test case for MS MARCO V1 doc (full), dev queries, TREC output + on all three pre-built indexes (base, slim, full).""" + + # Loop over all three pre-built indexes. + for index in ['msmarco-v1-doc', 'msmarco-v1-doc-slim', 'msmarco-v1-doc-full']: + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc.trec.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index {index} --topics msmarco-doc-dev --bm25 --hits 1000', + 'msmarco-doc-dev', + 'trec_eval', + [['map', 'map'], ['recall.1000', 'recall_1000']]) + + self.assertTrue('map' in scores) + self.assertTrue('recall.1000' in scores) + self.assertAlmostEqual(scores['map'], 0.2774, delta=0.0001) + self.assertAlmostEqual(scores['recall.1000'], 0.9357, delta=0.0001) + + def test_doc_full_msmarco_output(self): + """Test case for MS MARCO V1 doc (full), dev queries, MS MARCO output + on all three pre-built indexes (base, slim, full).""" + + # Loop over all three pre-built indexes. + for index in ['msmarco-v1-doc', 'msmarco-v1-doc-slim', 'msmarco-v1-doc-full']: + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc.msmarco.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index {index} --topics msmarco-doc-dev --bm25 --hits 100 --output-format msmarco', + 'msmarco-doc-dev', + 'msmarco_doc_string', []) + + self.assertTrue('MRR@100' in scores) + self.assertEqual(scores['MRR@100'], '0.2766351807440808') + + # + # doc segmented conditions + # + + def test_doc_segmented_trec_output(self): + """Test case for MS MARCO V1 doc segmented, dev queries, TREC output + on all three pre-built indexes (base, slim, full).""" + + # Loop over all three pre-built indexes. + for index in ['msmarco-v1-doc-segmented', 'msmarco-v1-doc-segmented-slim', 'msmarco-v1-doc-segmented-full']: + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc-segmented.trec.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index {index} --topics msmarco-doc-dev --bm25 --hits 10000 --max-passage --max-passage-hits 1000', + 'msmarco-doc-dev', + 'trec_eval', + [['map', 'map'], ['recall.1000', 'recall_1000']]) + + self.assertTrue('map' in scores) + self.assertTrue('recall.1000' in scores) + self.assertAlmostEqual(scores['map'], 0.2762, delta=0.0001) + self.assertAlmostEqual(scores['recall.1000'], 0.9311, delta=0.0001) + + def test_doc_segmented_msmarco_output(self): + """Test case for MS MARCO V1 doc segmented, dev queries, MS MARCO output + on all three pre-built indexes (base, slim, full).""" + + # Loop over all three pre-built indexes. + for index in ['msmarco-v1-doc-segmented', 'msmarco-v1-doc-segmented-slim', 'msmarco-v1-doc-segmented-full']: + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc-segmented.msmarco.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index {index} --topics msmarco-doc-dev \ + --bm25 --hits 1000 --max-passage --max-passage-hits 100 --output-format msmarco', + 'msmarco-doc-dev', + 'msmarco_doc_string', []) + + self.assertTrue('MRR@100' in scores) + self.assertEqual(scores['MRR@100'], '0.2755196341768384') + + # + # doc2query conditions + # + + def test_doc_full_expanded_trec_output(self): + """Test case for MS MARCO V1 doc (full) + doc2query-T5 expansions, dev queries, TREC output.""" + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc.expanded.trec.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-doc-d2q-t5 --topics msmarco-doc-dev --bm25 --hits 1000', + 'msmarco-doc-dev', + 'trec_eval', + [['map', 'map'], ['recall.1000', 'recall_1000']]) + + self.assertTrue('map' in scores) + self.assertTrue('recall.1000' in scores) + self.assertAlmostEqual(scores['map'], 0.3273, delta=0.0001) + self.assertAlmostEqual(scores['recall.1000'], 0.9553, delta=0.0001) + + def test_doc_full_expanded_msmarco_output(self): + """Test case for MS MARCO V1 doc (full) + doc2query-T5 expansions, dev queries, MS MARCO output.""" + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc.expanded.msmarco.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-doc-d2q-t5 --topics msmarco-doc-dev --bm25 --hits 100 --output-format msmarco', + 'msmarco-doc-dev', + 'msmarco_doc_string', []) + + self.assertTrue('MRR@100' in scores) + self.assertEqual(scores['MRR@100'], '0.3268656233100833') + + def test_doc_segmented_expanded_trec_output(self): + """Test case for MS MARCO V1 doc segmented + doc2query-T5 expansions, dev queries, TREC output.""" + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc-segmented.expanded.trec.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-doc-segmented-d2q-t5 --topics msmarco-doc-dev \ + --bm25 --hits 10000 --max-passage --max-passage-hits 1000', + 'msmarco-doc-dev', + 'trec_eval', + [['map', 'map'], ['recall.1000', 'recall_1000']]) + + self.assertTrue('map' in scores) + self.assertTrue('recall.1000' in scores) + self.assertAlmostEqual(scores['map'], 0.3213, delta=0.0001) + self.assertAlmostEqual(scores['recall.1000'], 0.9530, delta=0.0001) + + def test_doc_segmented_expanded_msmarco_output(self): + """Test case for MS MARCO V1 doc segmented + doc2query-T5 expansions, dev queries, MS MARCO output.""" + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-doc-segmented.expanded.msmarco.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-doc-segmented-d2q-t5 --topics msmarco-doc-dev \ + --bm25 --hits 1000 --max-passage --max-passage-hits 100 --output-format msmarco', + 'msmarco-doc-dev', + 'msmarco_doc_string', []) + + self.assertTrue('MRR@100' in scores) + self.assertEqual(scores['MRR@100'], '0.320918438140918') + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_prebuilt_msmarco_v1_passage.py b/integrations/sparse/test_prebuilt_msmarco_v1_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..b2424525e46e8765ccdba7c14b3901d35bafaeba --- /dev/null +++ b/integrations/sparse/test_prebuilt_msmarco_v1_passage.py @@ -0,0 +1,96 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for MS MARCO V1 passage corpus using pre-built indexes.""" + +import unittest + +from integrations.utils import run_retrieval_and_return_scores + + +class TestPrebuiltMsMarcoV1Passage(unittest.TestCase): + def setUp(self): + self.threads = 16 + self.batch_size = 128 + + def test_passage_trec_output(self): + """Test case for MS MARCO V1 passage, dev queries, TREC output + on all three pre-built indexes (base, slim, full).""" + + # Loop over all three pre-built indexes. + for index in ['msmarco-v1-passage', 'msmarco-v1-passage-slim', 'msmarco-v1-passage-full']: + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-passage.trec.txt', + f'python -m pyserini.search.lucene \ + --threads {self.threads} --batch-size {self.batch_size} \ + --index {index} --topics msmarco-passage-dev-subset --bm25', + 'msmarco-passage-dev-subset', + 'trec_eval', + [['map', 'map'], ['recall.1000', 'recall_1000']]) + + self.assertTrue('map' in scores) + self.assertTrue('recall.1000' in scores) + self.assertAlmostEqual(scores['map'], 0.1958, delta=0.0001) + self.assertAlmostEqual(scores['recall.1000'], 0.8573, delta=0.0001) + + def test_passage_msmarco_output(self): + """Test case for MS MARCO V1 passage, dev queries, MS MARCO output + on all three pre-built indexes (base, slim, full).""" + + # Loop over all three pre-built indexes. + for index in ['msmarco-v1-passage', 'msmarco-v1-passage-slim', 'msmarco-v1-passage-full']: + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-passage.msmarco.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index {index} --topics msmarco-passage-dev-subset --bm25 --output-format msmarco', + 'msmarco-passage-dev-subset', + 'msmarco_passage_string', []) + + self.assertTrue('MRR@10' in scores) + self.assertEqual(scores['MRR@10'], '0.18741227770955546') + + def test_passage_expanded_trec_output(self): + """Test case for MS MARCO V1 passage w/ doc2query-T5 expansions, dev queries, TREC output.""" + + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-passage.expanded.trec.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-passage-d2q-t5 --topics msmarco-passage-dev-subset --bm25', + 'msmarco-passage-dev-subset', + 'trec_eval', + [['map', 'map'], ['recall.1000', 'recall_1000']]) + + self.assertTrue('map' in scores) + self.assertTrue('recall.1000' in scores) + self.assertAlmostEqual(scores['map'], 0.2893, delta=0.0001) + self.assertAlmostEqual(scores['recall.1000'], 0.9506, delta=0.0001) + + def test_passage_expanded_msmarco_output(self): + """Test case for MS MARCO V1 passage w/ doc2query-T5 expansions, dev queries, MS MARCO output.""" + + scores = run_retrieval_and_return_scores( + 'runs/test_run.msmarco-passage.expanded.msmarco.txt', + f'python -m pyserini.search.lucene --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-passage-d2q-t5 --topics msmarco-passage-dev-subset --bm25 --output-format msmarco', + 'msmarco-passage-dev-subset', + 'msmarco_passage_string', []) + + self.assertTrue('MRR@10' in scores) + self.assertEqual(scores['MRR@10'], '0.281560751807885') + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_prebuilt_robust04.py b/integrations/sparse/test_prebuilt_robust04.py new file mode 100644 index 0000000000000000000000000000000000000000..013872c8a619a84c5a09fcc94d4a09ad9f71ee7c --- /dev/null +++ b/integrations/sparse/test_prebuilt_robust04.py @@ -0,0 +1,42 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for Robust04 using pre-built indexes.""" + +import unittest + +from integrations.utils import run_retrieval_and_return_scores + + +class TestPrebuiltRobust04(unittest.TestCase): + def test_robust04(self): + """Test case for Robust04.""" + + scores = run_retrieval_and_return_scores( + 'runs/test_run.robust04.bm25.txt', + 'python -m pyserini.search.lucene --topics robust04 --index robust04 --bm25', + 'robust04', + 'trec_eval', + [['map', 'map'], ['P.30', 'P_30']]) + + self.assertTrue('map' in scores) + self.assertTrue('P.30' in scores) + self.assertAlmostEqual(scores['map'], 0.2531, delta=0.0001) + self.assertAlmostEqual(scores['P.30'], 0.3102, delta=0.0001) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_prebuilt_unicoil.py b/integrations/sparse/test_prebuilt_unicoil.py new file mode 100644 index 0000000000000000000000000000000000000000..34b6b6a7296c0eda4f03add30a7a9247988aec95 --- /dev/null +++ b/integrations/sparse/test_prebuilt_unicoil.py @@ -0,0 +1,55 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Integration tests for uniCOIL models using on-the-fly query encoding.""" + +import os +import unittest + +from integrations.utils import clean_files, run_command, parse_score + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.temp_files = [] + self.threads = 16 + self.batch_size = 128 + + def test_msmarco_passage_tilde_otf(self): + output_file = 'test_run.msmarco-passage.tilde.otf.tsv' + self.temp_files.append(output_file) + cmd = f'python -m pyserini.search.lucene \ + --threads {self.threads} --batch-size {self.batch_size} \ + --index msmarco-v1-passage-unicoil-tilde \ + --topics msmarco-passage-dev-subset \ + --encoder ielab/unicoil-tilde200-msmarco-passage \ + --output {output_file} \ + --output-format msmarco \ + --impact --hits 1000' + status = os.system(cmd) + self.assertEqual(status, 0) + + # Match score in https://github.com/castorini/pyserini/blob/master/docs/experiments-unicoil-tilde-expansion.md + stdout, stderr = run_command(f'python -m pyserini.eval.msmarco_passage_eval \ + msmarco-passage-dev-subset {output_file}') + self.assertAlmostEqual(0.3495, parse_score(stdout, "MRR @10"), delta=0.0001) + + def tearDown(self): + clean_files(self.temp_files) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_search_pretokenized.py b/integrations/sparse/test_search_pretokenized.py new file mode 100644 index 0000000000000000000000000000000000000000..3c2dafa34627524412d315596f3ce4b982bafe37 --- /dev/null +++ b/integrations/sparse/test_search_pretokenized.py @@ -0,0 +1,88 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import unittest + +from random import randint +from integrations.lucenesearcher_score_checker import LuceneSearcherScoreChecker + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('sparse'): + self.pyserini_root = '../..' + else: + self.pyserini_root = '.' + + self.tmp = f'{self.pyserini_root}/integrations/tmp{randint(0, 10000)}' + + if os.path.exists(self.tmp): + shutil.rmtree(self.tmp) + else: + os.mkdir(self.tmp) + + #wget cacm jsonl file + os.system(f'wget https://raw.githubusercontent.com/castorini/anserini-data/master/CACM/corpus/jsonl/cacm.json -P {self.tmp}/cacm_jsonl') + + #pre tokenized jsonl + os.system(f'python -m pyserini.tokenize_json_collection --input {self.tmp}/cacm_jsonl/ --output {self.tmp}/cacm_bert_jsonl/ --tokenizer bert-base-uncased') + + self.pyserini_index_cmd = 'python -m pyserini.index' + self.pyserini_search_cmd = 'python -m pyserini.search' + self.pyserini_trec_eval_cmd = 'python -m pyserini.eval.trec_eval' + + self.cacm_jsonl_path = os.path.join(self.tmp, 'cacm_jsonl') + self.cacm_bert_jsonl_path = os.path.join(self.tmp, 'cacm_bert_jsonl') + + self.cacm_index_path = os.path.join(self.tmp, 'cacm_index') + self.cacm_bert_index_path = os.path.join(self.tmp, 'cacm_bert_index') + + self.cacm_qrels_path = os.path.join(self.pyserini_root, 'tools/topics-and-qrels/qrels.cacm.txt') + self.cacm_topics_path = os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.cacm.txt') + + os.system(f'{self.pyserini_index_cmd} -collection JsonCollection -generator DefaultLuceneDocumentGenerator -threads 9 -input {self.cacm_jsonl_path} -index {self.cacm_index_path} -storePositions -storeDocvectors -storeRaw' ) + os.system(f'{self.pyserini_index_cmd} -collection JsonCollection -generator DefaultLuceneDocumentGenerator -threads 9 -input {self.cacm_bert_jsonl_path} -index {self.cacm_bert_index_path} -storePositions -storeDocvectors -storeRaw -pretokenized') + + self.cacm_checker = LuceneSearcherScoreChecker( + index=self.cacm_index_path, + topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.cacm.txt'), + pyserini_topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.cacm.txt'), + qrels=self.cacm_qrels_path, + eval=f'{self.pyserini_trec_eval_cmd} -m map -m P.30') + + self.cacm_bert_checker = LuceneSearcherScoreChecker( + index=self.cacm_bert_index_path, + topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.cacm.txt'), + pyserini_topics=os.path.join(self.pyserini_root, 'tools/topics-and-qrels/topics.cacm.txt'), + qrels=self.cacm_qrels_path, + eval=f'{self.pyserini_trec_eval_cmd} -m map -m P.30') + + def test_without_pretokenized(self): + self.assertTrue(self.cacm_checker.run('cacm', '--bm25', 0.3114)) + + def test_with_pretokenized(self): + self.assertTrue(self.cacm_bert_checker.run('cacm_bert', '--bm25', 0.2750, 'bert-base-uncased')) + + def tearDown(self): + shutil.rmtree(f'{self.tmp}') + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/integrations/sparse/test_simple_fusion_search_integration.py b/integrations/sparse/test_simple_fusion_search_integration.py new file mode 100644 index 0000000000000000000000000000000000000000..5d377a451190682b8d77a9978aa86a19395d2b8c --- /dev/null +++ b/integrations/sparse/test_simple_fusion_search_integration.py @@ -0,0 +1,86 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import filecmp +import gzip +import os +import shutil +import unittest + +from tqdm import tqdm + +from pyserini.fusion import FusionMethod +from pyserini.search import get_topics +from pyserini.search import LuceneFusionSearcher +from pyserini.trectools import TrecRun +from pyserini.util import download_url, download_and_unpack_index + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + download_and_unpack_index('https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-01/lucene-index-cord19-abstract-2020-05-01.tar.gz') + download_and_unpack_index('https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-01/lucene-index-cord19-full-text-2020-05-01.tar.gz') + download_and_unpack_index('https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-01/lucene-index-cord19-paragraph-2020-05-01.tar.gz') + + download_url('https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round2/anserini.covid-r2.fusion1.txt.gz', 'runs') + # from https://stackoverflow.com/questions/31028815/how-to-unzip-gz-file-using-python + with gzip.open('runs/anserini.covid-r2.fusion1.txt.gz', 'rb') as f_in: + with open('runs/anserini.covid-r2.fusion1.txt', 'wb') as f_out: + shutil.copyfileobj(f_in, f_out) + + def test_simple_fusion_searcher(self): + index_dirs = ['indexes/lucene-index-cord19-abstract-2020-05-01/', + 'indexes/lucene-index-cord19-full-text-2020-05-01/', + 'indexes/lucene-index-cord19-paragraph-2020-05-01/'] + + searcher = LuceneFusionSearcher(index_dirs, method=FusionMethod.RRF) + + runs, topics = [], get_topics('covid-round2') + for topic in tqdm(sorted(topics.keys())): + query = topics[topic]['question'] + ' ' + topics[topic]['query'] + hits = searcher.search(query, k=10000, query_generator=None, strip_segment_id=True, remove_dups=True) + docid_score_pair = [(hit.docid, hit.score) for hit in hits] + run = TrecRun.from_search_results(docid_score_pair, topic=topic) + runs.append(run) + + all_topics_run = TrecRun.concat(runs) + all_topics_run.save_to_txt(output_path='runs/fused.txt', tag='reciprocal_rank_fusion_k=60') + + # Only keep topic, docid, and rank. Scores may be slightly different due to floating point precision issues and underlying lib versions. + # TODO: We should probably do this in Python as opposed to calling out to shell for better portability. + # This has also proven to be a somewhat brittle test, see https://github.com/castorini/pyserini/issues/947 + # A stopgap for above issue, we're restricting comparison to only top-100 ranks. + # + # Another update (2022/09/17): This test broke again in the Lucene 8->9 upgrade. + # Fixed by restricting comparisons to only top 20. + os.system("""awk '$4 <= 20 {print $1" "$3" "$4}' runs/fused.txt > runs/this.txt""") + os.system("""awk '$4 <= 20 {print $1" "$3" "$4}' runs/anserini.covid-r2.fusion1.txt > runs/that.txt""") + + self.assertTrue(filecmp.cmp('runs/this.txt', 'runs/that.txt')) + + def tearDown(self): + shutil.rmtree('indexes/lucene-index-cord19-abstract-2020-05-01') + shutil.rmtree('indexes/lucene-index-cord19-full-text-2020-05-01') + shutil.rmtree('indexes/lucene-index-cord19-paragraph-2020-05-01') + os.remove('runs/anserini.covid-r2.fusion1.txt.gz') + os.remove('runs/anserini.covid-r2.fusion1.txt') + os.remove('runs/fused.txt') + os.remove('runs/this.txt') + os.remove('runs/that.txt') + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_trec_covid_stored_runs.py b/integrations/sparse/test_trec_covid_stored_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..d7c2af7f1f5024d80b44a94c43d116baa0dc8f6c --- /dev/null +++ b/integrations/sparse/test_trec_covid_stored_runs.py @@ -0,0 +1,113 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import re +import shutil +import unittest +from random import randint + +from pyserini.util import download_url + + +class TestSearchIntegration(unittest.TestCase): + def setUp(self): + self.round3_runs = { + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.abstract.qq.bm25.txt': + 'd08d85c87e30d6c4abf54799806d282f', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.abstract.qdel.bm25.txt': + 'd552dff90995cd860a5727637f0be4d1', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.full-text.qq.bm25.txt': + '6c9f4c09d842b887262ca84d61c61a1f', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.full-text.qdel.bm25.txt': + 'c5f9db7733c72eea78ece2ade44d3d35', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.paragraph.qq.bm25.txt': + '872673b3e12c661748d8899f24d3ba48', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.paragraph.qdel.bm25.txt': + 'c1b966e4c3f387b6810211f339b35852', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.fusion1.txt': + '61cbd73c6e60ba44f18ce967b5b0e5b3', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.fusion2.txt': + 'd7eabf3dab840104c88de925e918fdab', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.final-r3.fusion1.txt': + 'c1caf63a9c3b02f0b12e233112fc79a6', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.final-r3.fusion2.txt': + '12679197846ed77306ecb2ca7895b011', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.final-r3.rf.txt': + '7192a08c5275b59d5ef18395917ff694', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.final-r3.fusion1.post-processed.txt': + 'f7c69c9bff381a847af86e5a8daf7526', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.final-r3.fusion2.post-processed.txt': + '84c5fd2c7de0a0282266033ac4f27c22', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.final-r3.rf.post-processed.txt': + '3e79099639a9426cb53afe7066239011' + } + + self.round4_runs = { + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.abstract.qq.bm25.txt': + '56ac5a0410e235243ca6e9f0f00eefa1', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.abstract.qdel.bm25.txt': + '115d6d2e308b47ffacbc642175095c74', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.full-text.qq.bm25.txt': + 'af0d10a5344f4007e6781e8d2959eb54', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.full-text.qdel.bm25.txt': + '594d469b8f45cf808092a3d8e870eaf5', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.paragraph.qq.bm25.txt': + '6f468b7b60aaa05fc215d237b5475aec', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.paragraph.qdel.bm25.txt': + 'b7b39629c12573ee0bfed8687dacc743', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.fusion1.txt': + '8ae9d1fca05bd1d9bfe7b24d1bdbe270', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.fusion2.txt': + 'e1894209c815c96c6ddd4cacb578261a', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.abstract.qdel.bm25%2Brm3Rf.txt': + '9d954f31e2f07e11ff559bcb14ef16af', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.final-r4.fusion1.txt': + 'a8ab52e12c151012adbfc8e37d666760', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.final-r4.fusion2.txt': + '1500104c928f463f38e76b58b91d4c07', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.final-r4.rf.txt': + '41d746eb86a99d2f33068ebc195072cd' + } + + def check_runs(self, runs): + tmp = f'tmp{randint(0, 10000)}' + + # In the rare event there's a collision + if os.path.exists(tmp): + shutil.rmtree(tmp) + + os.mkdir(tmp) + for url in runs: + print(f'Verifying stored run at {url}...') + filename = url.split('/')[-1] + filename = re.sub('\\?dl=1$', '', filename) # Remove the Dropbox 'force download' parameter + + download_url(url, tmp, md5=runs[url], force=True) + self.assertTrue(os.path.exists(os.path.join(tmp, filename))) + print('') + + shutil.rmtree(tmp) + + def test_round3_runs(self): + self.check_runs(self.round3_runs) + + def test_round4_runs(self): + self.check_runs(self.round4_runs) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_trec_eval_compute_judged.py b/integrations/sparse/test_trec_eval_compute_judged.py new file mode 100644 index 0000000000000000000000000000000000000000..e1892a6ef5da97a8036df9a111f81d94f73947a9 --- /dev/null +++ b/integrations/sparse/test_trec_eval_compute_judged.py @@ -0,0 +1,112 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import unittest +from random import randint + +from integrations.utils import run_command, parse_score +from pyserini.util import download_url + + +class TestTrecEvalComputeJudged(unittest.TestCase): + def test_trec_eval_compute_judged(self): + # Data from https://github.com/castorini/anserini/blob/master/docs/experiments-covid.md + runs = { + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.abstract.qq.bm25.txt': { + 'checksum': 'b1ccc364cc9dab03b383b71a51d3c6cb', + 'ndcg_cut_10': 0.4580, + 'judged_10': 0.5880, + 'recall_1000': 0.4525, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.abstract.qdel.bm25.txt': { + 'checksum': 'ee4e3e6cf87dba2fd021fbb89bd07a89', + 'ndcg_cut_10': 0.4912, + 'judged_10': 0.6240, + 'recall_1000': 0.4714, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.full-text.qq.bm25.txt': { + 'checksum': 'd7457dd746533326f2bf8e85834ecf5c', + 'ndcg_cut_10': 0.3240, + 'judged_10': 0.5660, + 'recall_1000': 0.3758, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.full-text.qdel.bm25.txt': { + 'checksum': '8387e4ad480ec4be7961c17d2ea326a1', + 'ndcg_cut_10': 0.4634, + 'judged_10': 0.6460, + 'recall_1000': 0.4368, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.paragraph.qq.bm25.txt': { + 'checksum': '62d713a1ed6a8bf25c1454c66182b573', + 'ndcg_cut_10': 0.4077, + 'judged_10': 0.6160, + 'recall_1000': 0.4877, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.paragraph.qdel.bm25.txt': { + 'checksum': '16b295fda9d1eccd4e1fa4c147657872', + 'ndcg_cut_10': 0.4918, + 'judged_10': 0.6440, + 'recall_1000': 0.5101, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.fusion1.txt': { + 'checksum': '16875b6d32a9b5ef96d7b59315b101a7', + 'ndcg_cut_10': 0.4696, + 'judged_10': 0.6520, + 'recall_1000': 0.5027, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.fusion2.txt': { + 'checksum': '8f7d663d551f831c65dceb8e4e9219c2', + 'ndcg_cut_10': 0.5077, + 'judged_10': 0.6800, + 'recall_1000': 0.5378, + }, + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round5/anserini.covid-r5.abstract.qdel.bm25%2Brm3Rf.txt': { + 'checksum': '909ccbbd55736eff60c7dbeff1404c94', + 'ndcg_cut_10': 0.6177, + 'judged_10': 0.6620, + 'recall_1000': 0.5505, + } + } + + tmp = f'tmp{randint(0, 10000)}' + + # In the rare event there's a collision + if os.path.exists(tmp): + shutil.rmtree(tmp) + + os.mkdir(tmp) + for url in runs: + filename = url.split('/')[-1] + + download_url(url, tmp, md5=runs[url]['checksum'], force=True) + full_path = os.path.join(tmp, filename) + self.assertTrue(os.path.exists(full_path)) + + eval_cmd = f'python -m pyserini.eval.trec_eval -c -m ndcg_cut.10 -m recall.1000 -m judged.10,100,1000 \ + tools/topics-and-qrels/qrels.covid-round4-cumulative.txt \ + {full_path}' + stdout, stderr = run_command(eval_cmd) + self.assertAlmostEqual(parse_score(stdout, 'ndcg_cut_10'), runs[url]['ndcg_cut_10'], delta=0.0001) + self.assertAlmostEqual(parse_score(stdout, 'judged_10'), runs[url]['judged_10'], delta=0.0001) + self.assertAlmostEqual(parse_score(stdout, 'recall_1000'), runs[url]['recall_1000'], delta=0.0001) + + shutil.rmtree(tmp) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/sparse/test_verify_rrf.py b/integrations/sparse/test_verify_rrf.py new file mode 100644 index 0000000000000000000000000000000000000000..8b8f209bd8264cd9d757adc23fef7eb726985c44 --- /dev/null +++ b/integrations/sparse/test_verify_rrf.py @@ -0,0 +1,127 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import hashlib +import os +import shutil +import unittest +from random import randint + +from pyserini.util import download_url + + +# The purpose of this test case is that, up through and including round 4, the TREC-COVID fusion baselines were +# generated using trectools [1]. This test case ensures that our own internal fusion tools generate *exactly* the +# same output (based on MD5 checksums). +# +# [1] https://github.com/joaopalotti/trectools + +class TestRRF(unittest.TestCase): + def setUp(self): + self.runs = { + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.abstract.qq.bm25.txt': + 'd08d85c87e30d6c4abf54799806d282f', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.abstract.qdel.bm25.txt': + 'd552dff90995cd860a5727637f0be4d1', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.full-text.qq.bm25.txt': + '6c9f4c09d842b887262ca84d61c61a1f', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.full-text.qdel.bm25.txt': + 'c5f9db7733c72eea78ece2ade44d3d35', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.paragraph.qq.bm25.txt': + '872673b3e12c661748d8899f24d3ba48', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round3/anserini.covid-r3.paragraph.qdel.bm25.txt': + 'c1b966e4c3f387b6810211f339b35852', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.abstract.qq.bm25.txt': + '56ac5a0410e235243ca6e9f0f00eefa1', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.abstract.qdel.bm25.txt': + '115d6d2e308b47ffacbc642175095c74', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.full-text.qq.bm25.txt': + 'af0d10a5344f4007e6781e8d2959eb54', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.full-text.qdel.bm25.txt': + '594d469b8f45cf808092a3d8e870eaf5', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.paragraph.qq.bm25.txt': + '6f468b7b60aaa05fc215d237b5475aec', + 'https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round4/anserini.covid-r4.paragraph.qdel.bm25.txt': + 'b7b39629c12573ee0bfed8687dacc743', + } + + self.tmp = f'tmp{randint(0, 10000)}' + + # In the rare event there's a collision + if os.path.exists(self.tmp): + shutil.rmtree(self.tmp) + + os.mkdir(self.tmp) + for url in self.runs: + print(f'Verifying stored run at {url}...') + filename = url.split('/')[-1] + + download_url(url, self.tmp, md5=self.runs[url], force=True) + self.assertTrue(os.path.exists(os.path.join(self.tmp, filename))) + print('') + + def test_round3_fusion_runs(self): + os.system(f'python -m pyserini.fusion --method rrf --runs ' + + f'{self.tmp}/anserini.covid-r3.abstract.qq.bm25.txt ' + + f'{self.tmp}/anserini.covid-r3.full-text.qq.bm25.txt ' + + f'{self.tmp}/anserini.covid-r3.paragraph.qq.bm25.txt ' + + f' --output {self.tmp}/anserini.covid-r3.fusion1.txt ' + + f'--runtag reciprocal_rank_fusion_k=60 --k 100000') + + with open(f'{self.tmp}/anserini.covid-r3.fusion1.txt', 'rb') as f: + md5 = hashlib.md5(f.read()).hexdigest() + self.assertEqual('61cbd73c6e60ba44f18ce967b5b0e5b3', md5) + + os.system(f'python -m pyserini.fusion --method rrf --runs ' + + f'{self.tmp}/anserini.covid-r3.abstract.qdel.bm25.txt ' + + f'{self.tmp}/anserini.covid-r3.full-text.qdel.bm25.txt ' + + f'{self.tmp}/anserini.covid-r3.paragraph.qdel.bm25.txt ' + + f' --output {self.tmp}/anserini.covid-r3.fusion2.txt ' + + f'--runtag reciprocal_rank_fusion_k=60 --k 100000') + + with open(f'{self.tmp}/anserini.covid-r3.fusion2.txt', 'rb') as f: + md5 = hashlib.md5(f.read()).hexdigest() + self.assertEqual('d7eabf3dab840104c88de925e918fdab', md5) + + def test_round4_fusion_runs(self): + os.system(f'python -m pyserini.fusion --method rrf --runs ' + + f'{self.tmp}/anserini.covid-r4.abstract.qq.bm25.txt ' + + f'{self.tmp}/anserini.covid-r4.full-text.qq.bm25.txt ' + + f'{self.tmp}/anserini.covid-r4.paragraph.qq.bm25.txt ' + + f' --output {self.tmp}/anserini.covid-r4.fusion1.txt ' + + f'--runtag reciprocal_rank_fusion_k=60 --k 100000') + + with open(f'{self.tmp}/anserini.covid-r4.fusion1.txt', 'rb') as f: + md5 = hashlib.md5(f.read()).hexdigest() + self.assertEqual('8ae9d1fca05bd1d9bfe7b24d1bdbe270', md5) + + os.system(f'python -m pyserini.fusion --method rrf --runs ' + + f'{self.tmp}/anserini.covid-r4.abstract.qdel.bm25.txt ' + + f'{self.tmp}/anserini.covid-r4.full-text.qdel.bm25.txt ' + + f'{self.tmp}/anserini.covid-r4.paragraph.qdel.bm25.txt ' + + f' --output {self.tmp}/anserini.covid-r4.fusion2.txt ' + + f'--runtag reciprocal_rank_fusion_k=60 --k 100000') + + with open(f'{self.tmp}/anserini.covid-r4.fusion2.txt', 'rb') as f: + md5 = hashlib.md5(f.read()).hexdigest() + self.assertEqual('e1894209c815c96c6ddd4cacb578261a', md5) + + def tearDown(self): + shutil.rmtree(self.tmp) + + +if __name__ == '__main__': + unittest.main() diff --git a/integrations/utils.py b/integrations/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..e7eb6a3e8049c461ce51eb7771751003c5a04840 --- /dev/null +++ b/integrations/utils.py @@ -0,0 +1,123 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import subprocess +import shutil + + +def clean_files(files): + for file in files: + if os.path.exists(file): + if os.path.isdir(file): + shutil.rmtree(file) + else: + os.remove(file) + + +def run_command(cmd, echo=False): + process = subprocess.Popen(cmd.split(), + stdout=subprocess.PIPE, + stderr=subprocess.PIPE) + stdout, stderr = process.communicate() + stdout = stdout.decode('utf-8') + stderr = stderr.decode('utf-8') + if stderr and echo: + print(stderr) + if echo: + print(stdout) + return stdout, stderr + + +def parse_score(output, metric, digits=4): + """Function for parsing the output from `pyserini.eval.trec_eval`.""" + lines = output.split('\n') + # The output begins with a bunch of debug information, get rid of lines until we get to 'Results' + while 'Results' not in lines[0]: + lines.pop(0) + + for line in lines: + if metric in line: + score = float(line.split()[-1]) + return round(score, digits) + return None + + +def parse_score_qa(output, metric, digits=4): + """Function for parsing the output from `pyserini.eval.evaluate_dpr_retrieval`. Currently, the implementation is + the same as `parse_score_msmacro`, but we're keeping separate in case they diverge in the future.""" + for line in output.split('\n'): + if metric in line: + score = float(line.split()[-1]) + return round(score, digits) + return None + + +def parse_score_msmarco(output, metric, digits=4): + """Function for parsing the output from MS MARCO eval scripts. Currently, the implementation is the same as + `parse_score_qa`, but we're keeping separate in case they diverge in the future.""" + for line in output.split('\n'): + if metric in line: + score = float(line.split()[-1]) + return round(score, digits) + return None + + +def parse_score_msmarco_as_string(output, metric): + """Function for parsing the output from MS MARCO eval scripts, but returning result as a string. This is used for + checking results to the entire degree of precision that the script generates.""" + for line in output.split('\n'): + if metric in line: + return line.split()[-1] + return None + + +def run_retrieval_and_return_scores(output_file, retrieval_cmd, qrels, eval_type, metrics): + temp_files = [output_file] + + # Take the base retrieval command and append the output file name to it. + os.system(retrieval_cmd + f' --output {output_file}') + + scores = {} + # How we compute eval metrics depends on the `eval_type`. + if eval_type == 'trec_eval': + for metric in metrics: + cmd = f'python -m pyserini.eval.trec_eval -m {metric[0]} {qrels} {output_file}' + stdout, stderr = run_command(cmd) + scores[metric[0]] = parse_score(stdout, metric[1]) + elif eval_type == 'msmarco_passage': + cmd = f'python -m pyserini.eval.msmarco_passage_eval {qrels} {output_file}' + stdout, stderr = run_command(cmd) + scores['MRR@10'] = parse_score_msmarco(stdout, 'MRR @10') + elif eval_type == 'msmarco_passage_string': + cmd = f'python -m pyserini.eval.msmarco_passage_eval {qrels} {output_file}' + stdout, stderr = run_command(cmd) + scores['MRR@10'] = parse_score_msmarco_as_string(stdout, 'MRR @10') + elif eval_type == 'msmarco_doc': + cmd = f'python -m pyserini.eval.msmarco_doc_eval --judgments {qrels} --run {output_file}' + stdout, stderr = run_command(cmd) + scores['MRR@100'] = parse_score_msmarco(stdout, 'MRR @100') + elif eval_type == 'msmarco_doc_string': + cmd = f'python -m pyserini.eval.msmarco_doc_eval --judgments {qrels} --run {output_file}' + stdout, stderr = run_command(cmd) + scores['MRR@100'] = parse_score_msmarco_as_string(stdout, 'MRR @100') + else: + clean_files(temp_files) + raise ValueError('Unknown eval_type!') + + clean_files(temp_files) + + return scores diff --git a/logging_q=NQ_c=wiki_including_ans.jsonl b/logging_q=NQ_c=wiki_including_ans.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..de70c9b87c36a6e44e6832bbaae3fed78b39cec7 --- /dev/null +++ b/logging_q=NQ_c=wiki_including_ans.jsonl @@ -0,0 +1,12854 @@ +{"qid": "test100", "pid": "18247241", "query": "whens the last time the patriots played the eagles", "answer": "Super Bowl LII", "passage": "\"Malcolm Butler\"\nand three forced fumbles. On January 21, 2018, the Patriots won the to advance to the Super Bowl for the third time in Butler's career. Butler and the Patriots lost Super Bowl LII to the Philadelphia Eagles, 41–33. Butler did not play any defensive snaps in the game, only coming in for a single play on special teams. After the game, Patriots head coach Bill Belichick said his lack of playing time was a \"\"coach's decision,\"\" not due to disciplinary issues. When asked about the benching, Butler stated \"\"I don't know what it was. I guess I wasn't playing or"} +{"qid": "test100", "pid": "19807796", "query": "whens the last time the patriots played the eagles", "answer": "Super Bowl LII", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test1000", "pid": "5520085", "query": "when did the nba add the three point line", "answer": "1979–80", "passage": "\"Three-point field goal\"\nby to , with the change being phased in beginning in October 2010. In December 2012, the WNBA announced that it would be using the FIBA distance, starting in 2013; by 2017, the line at corners were lengthened to match the NBA. The NBA has discussed adding a four-point line, according to president Rod Thorn. In the NBA, three-point field goals have become increasingly more frequent along the years, with effectiveness increasing slightly. The 1979–80 season had an average 0.8 three-point goals per game and 2.8 attempts (29% effectiveness). The 1989–90 season had an average 2.2 three-point goals per game"} +{"qid": "test1000", "pid": "3185128", "query": "when did the nba add the three point line", "answer": "1979–80", "passage": "\"Basketball court\"\nline would give the player three free throws if the shot does not go in, and one if it does. The distance to the three-point line from the center of the basket varies depending on the level or league, and has changed several times. These are the current distances, with the league or level using each distance: The NBA adopted the three-point line at the start of the 1979–80 season. This is of variable distance, ranging from in the corners to behind the top of the key. During the 1994–95, 1995–96 and 1996–97 seasons, the NBA attempted to address decreased"} +{"qid": "test1001", "pid": "2832951", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "\"Cone cell\"\nwhite or have white spots. A white glow in the eye is often seen in photographs taken with a flash, instead of the typical \"\"red eye\"\" from the flash, and the pupil may appear white or distorted. Other symptoms can include crossed eyes, double vision, eyes that do not align, eye pain and redness, poor vision or differing iris colors in each eye. If the cancer has spread, bone pain and other symptoms may occur. Cone cell Cone cells, or cones, are one of 3 types of photoreceptor cells in the retina of mammalian eyes (e.g. the human eye). They"} +{"qid": "test1001", "pid": "2832937", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "\"Cone cell\"\nCone cell Cone cells, or cones, are one of 3 types of photoreceptor cells in the retina of mammalian eyes (e.g. the human eye). They are responsible for color vision and function best in relatively bright light, as opposed to rod cells, which work better in dim light. Cone cells are densely packed in the fovea centralis, a 0.3 mm diameter rod-free area with very thin, densely packed cones which quickly reduce in number towards the periphery of the retina. There are about six to seven million cones in a human eye and are most concentrated towards the macula. The"} +{"qid": "test1001", "pid": "13171382", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "Foveola\nFoveola The foveola is located within a region called the macula, a yellowish, cone photo receptor filled portion of the human retina. The foveola is approximately 0.35 mm in diameter and lies in the center of the fovea and contains only cone cells, and a cone-shaped zone of Müller cells. In this region the cone receptors are found to be longer, slimmer and more densely packed than anywhere else in the retina, thus allowing that region to have the potential to have the highest visual acuity in the eye. The centre of the foveola is sometimes referred to as the"} +{"qid": "test1001", "pid": "3317386", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "\"Fovea centralis\"\nFovea centralis The fovea centralis is a small, central pit composed of closely packed cones in the eye. It is located in the center of the macula lutea of the retina. The fovea is responsible for sharp central vision (also called foveal vision), which is necessary in humans for activities where visual detail is of primary importance, such as reading and driving. The fovea is surrounded by the \"\"parafovea\"\" belt, and the \"\"perifovea\"\" outer region. The parafovea is the intermediate belt, where the ganglion cell layer is composed of more than five rows of cells, as well as the highest"} +{"qid": "test1001", "pid": "2406305", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "\"Photoreceptor cell\"\namacrine cells in the retina. The final result is differing populations of ganglion cells in the retina, a sub-population of which is also intrinsically photosensitive, using the photopigment melanopsin. A non-rod non-cone photoreceptor in the eyes of mice, which was shown to mediate circadian rhythms, was discovered in 1991 by Foster \"\"et al.\"\" These neuronal cells, called intrinsically photosensitive retinal ganglion cells (ipRGC), are a small subset (≈1–3%) of the retinal ganglion cells located in the inner retina, that is, in front of the rods and cones located in the outer retina. These light sensitive neurons contain a photopigment, melanopsin,"} +{"qid": "test1001", "pid": "4658815", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "Hemeralopia\nlight), which is typical of inflammations of eye. Nighttime vision largely remains unchanged due to the use of rods as opposed to cones (during the day), which are affected by hemeralopia and in turn degrade the daytime optical response. Hence, many patients feel they see better at dusk than in daytime. Hemeralopia is known to occur in several ocular conditions. Cone dystrophy and achromatopsia, affecting the cones in the retina, and the anti-epileptic drug trimethadione are typical causes. Adie's pupil, which fails to constrict in response to light; aniridia, which is absence of the iris; and albinism, where the iris"} +{"qid": "test1001", "pid": "5783049", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "\"Dark adaptor goggles\"\nTrendelenburg in 1916. The concept is based on the work by Antoine Béclère on dark adaptation of the eye, where it is noted that fluoroscopy relies on the use of the retinal rods of the eye. Since retinal rods are insensitive to long wavelengths of light, such as red light, while retinal cones are not, the goggles enabled the physicians to adapt their eyes in preparation for the fluoroscopic procedure while still being able to perform other work. Prior to the invention of these goggles, physicians were required to sit in the darkened room where the procedure would be performed"} +{"qid": "test1001", "pid": "586601", "query": "where are the cones in the eye located", "answer": "the retina", "passage": "Retina\nentire retina contains about 7 million cones and 75 to 150 million rods. The optic disc, a part of the retina sometimes called \"\"the blind spot\"\" because it lacks photoreceptors, is located at the optic papilla, where the optic-nerve fibres leave the eye. It appears as an oval white area of 3 mm². Temporal (in the direction of the temples) to this disc is the macula, at whose centre is the fovea, a pit that is responsible for our sharp central vision but is actually less sensitive to light because of its lack of rods. Human and non-human primates possess"} +{"qid": "test1002", "pid": "12445259", "query": "where does puerto rico's power come from", "answer": "Puerto Rico Electric Power Authority", "passage": "\"Economy of Puerto Rico\"\nwill have significant negative effects on the island. Puerto Rico does not have any coal, natural gas, nor oil reserves so it must import all its fuel in order to produce energy. The Puerto Rico Electric Power Authority (PREPA), a government-owned corporation, produces 70% of all energy in Puerto Rico through several power plants dependent on fossil fuels. 58% of PREPA's budget goes directly to these costs. Additional indirect costs of imported fossil fuels are paid through power purchase agreements for the 30% of the country's energy produced through private companies dependent on fossil fuels. To meet energy demands, Puerto"} +{"qid": "test1002", "pid": "15710048", "query": "where does puerto rico's power come from", "answer": "Puerto Rico Electric Power Authority", "passage": "\"Puerto Rico Electric Power Authority\"\nPuerto Rico Electric Power Authority The Puerto Rico Electric Power Authority (PREPA) —Spanish: \"\"Autoridad de Energía Eléctrica \"\" (AEE)— is an electric power company and the government-owned corporation of Puerto Rico responsible for electricity generation, power distribution, and power transmission on the island. PREPA is the only entity authorized to conduct such business in Puerto Rico, making it a government monopoly. The authority is ruled by a board of directors appointed by the governor with the advice and consent of the Senate. Since 2014, PREPA is subject to the Puerto Rico Energy Commission, another government agency whose board of directors"} +{"qid": "test1003", "pid": "2066224", "query": "who is the founder of el pollo loco", "answer": "Juan Francisco Ochoa", "passage": "\"El Pollo Loco\"\nEl Pollo Loco’s mobile app. The rewards program allows customers to earn points for purchases at restaurants and earn rewards. The El Pollo Loco locations in Mexico are not affiliated with or operated by the Costa Mesa, California-based El Pollo Loco, Inc. but are operated by Mexico-based El Pollo Loco, S.A. de C.V., which is still owned by founder Juan Francisco Ochoa and his family. The company specializes in selling Sinaloa-style marinated grilled chicken. In Mexico, El Pollo Loco, S.A. de C.V., operates as El Pollo Loco in over 50 locations within Mexico City and the states of Coahuila, Nuevo"} +{"qid": "test1003", "pid": "2066212", "query": "who is the founder of el pollo loco", "answer": "Juan Francisco Ochoa", "passage": "\"El Pollo Loco\"\nEl Pollo Loco El Pollo Loco, Spanish for \"\"The Crazy Chicken\"\", is the name of two independent restaurant chains that are controlled by different companies, U.S.-based El Pollo Loco, Inc. and Mexico-based El Pollo Loco, S.A. de C.V. Both companies specialize in Mexican-style grilled chicken and were founded by Juan Francisco Ochoa. Ochoa established the first El Pollo Loco restaurant in Guasave, Sinaloa, Mexico in 1974 and then expanded his chain into the United States in 1980. Ochoa then sold his U.S. restaurants in 1983, which became El Pollo Loco, Inc., while keeping the ones in Mexico, which became El"} +{"qid": "test1003", "pid": "2066214", "query": "who is the founder of el pollo loco", "answer": "Juan Francisco Ochoa", "passage": "\"El Pollo Loco\"\ntacos, burritos, enchiladas, and quesadillas. In a bid to compete with companies such as KFC and Chick-fil-A, El Pollo Loco experimented with offering deep fried chicken in the form of breaded chicken tenders at selected locations in the United States for a limited time during the Fall 2016. This experiment is a big departure from its previous marketing campaigns that tout their fired-grilled chicken as a healthy alternative to fried chicken. Juan Francisco Ochoa started the restaurant in Guasave, Sinaloa, Mexico, in 1975. By 1979 the chain had expanded throughout northern Mexico. On December 8, 1980, Ochoa opened his first"} +{"qid": "test1004", "pid": "19396347", "query": "when does the second half of vikings season 5 air", "answer": "2018", "passage": "\"Vikings (season 5)\"\nVikings (season 5) The fifth season of the historical drama television series \"\"Vikings\"\" premiered on November 29, 2017 on History in Canada. The series broadly follows the exploits of the legendary Viking chieftain Ragnar Lothbrok and his crew, and later those of his sons. The first season of the series begins at the start of the Viking Age, marked by the Lindisfarne raid in 793. The fifth season consists of a double order of twenty episodes, split into two parts of ten episodes; the second half premiered on November 28, 2018. The premise of the fifth season differs from the"} +{"qid": "test1005", "pid": "675797", "query": "where do pineapples come from in the world", "answer": "Costa Rica", "passage": "Pineapple\nPineapple The pineapple (\"\"Ananas comosus\"\") is a tropical plant with an edible multiple fruit consisting of coalesced berries, also called pineapples, and the most economically significant plant in the family Bromeliaceae. Pineapples may be cultivated from the offset produced at the top of the fruit, possibly flowering in five to ten months and fruiting in the following six months. Pineapples do not ripen significantly after harvest. In 2016, Costa Rica, Brazil, and the Philippines accounted for nearly one-third of the world's production of pineapples. The word \"\"pineapple\"\" in English was first recorded to describe the reproductive organs of conifer trees"} +{"qid": "test1005", "pid": "3174880", "query": "where do pineapples come from in the world", "answer": "Thailand", "passage": "\"Territory of Hawaii\"\nplantation in the world. For a long stretch of time, Lanai would produce 75% of the world's pineapple and become immortalized as the \"\"Pineapple Island.\"\" By the 1930s, Hawaii became the pineapple capital of the world and pineapple production became its second largest industry. After World War II, there were a total of eight pineapple companies in Hawaii. Today pineapples are imported from Thailand and elsewhere; few are commercially grown in Hawaii. One of the most prominent challenges territorial Hawaii had to face was race relations. Intermarriage was tolerated and even sought after. Many native women married immigrant men and"} +{"qid": "test1005", "pid": "12321620", "query": "where do pineapples come from in the world", "answer": "Costa Rica", "passage": "\"Pineapple production in Ivory Coast\"\nbegan developing their share of the industry. Ivory Coast is Europe's leading pineapple source, supplying over 200,000 tons of fresh fruit a year, or 60% of the European market. On the world scale, Ivory Coast is second only to Costa Rica. Combined, the two produce over 50% of the world's pineapples. The \"\"Société fruitière du Bandama\"\" company created the popular drink Cristelor in 1983. Described as a \"\"delice d'ananas petillant,\"\" (\"\"sparkling pineapple delight\"\"), it is popularly called \"\"pineapple champagne\"\". The company's director, Jean Konan Banny, claimed the idea \"\"came to [him when he thought] to make a wine from pineapples\"\""} +{"qid": "test1005", "pid": "2688890", "query": "where do pineapples come from in the world", "answer": "Thailand", "passage": "\"Fruit wine\"\nmade from fermented plums in a manner similar to the use of apples for cider. It was often associated with the north Cotswolds and was once a product of the city of Worcester. Pomegranate Wine Is a Very Popular Fruit Wine in Israel, Where It Is Called Rimon Pineapple wine is made from the juice of pineapples. Fermentation of the pineapple juice takes place in temperature-controlled vats and is stopped at near-dryness. The result is a soft, dry, fruit wine with a strong pineapple bouquet. Pineapple wine is popular in Thailand and other SE Asian countries, where it is made"} +{"qid": "test1005", "pid": "675803", "query": "where do pineapples come from in the world", "answer": "Philippines", "passage": "Pineapple\nthus making the pineapple the first bromeliad to be introduced by humans outside of the New World. The Spanish introduced it into the Philippines, Hawaii (introduced in the early 19th century, first commercial plantation 1886), Zimbabwe, and Guam. The fruit is said to have been first introduced in Hawaii when a Spanish ship brought it there in the 1500s. The Portuguese took the fruit from Brazil and introduced it into India by 1550. The pineapple was brought to northern Europe by the Dutch from their colony in Surinam. The first pineapple to be successfully cultivated in Europe, is said to"} +{"qid": "test1006", "pid": "10202063", "query": "when does april fools day end at noon", "answer": "April 1st", "passage": "\"April Fools' Day\"\n31. However, for some in Poland \"\"prima aprilis\"\" ends at noon of April 1st, and \"\"prima aprilis\"\" jokes after that hour are considered inappropriate and not classy. Danes, Finns, Icelanders, Norwegians and Swedes celebrate April Fools' Day (\"\"aprilsnar\"\" in Danish; \"\"aprillipäivä\"\" in Finnish). Most news media outlets will publish exactly one false story on April 1; for newspapers this will typically be a first-page article but not the top headline. In Italy, France, Belgium, The Netherlands, and French-speaking areas of Switzerland and Canada, April 1 tradition is often known as \"\"April fish\"\" (\"\"poissons d'avril\"\" in French, \"\"aprilvis\"\" in Dutch or"} +{"qid": "test1007", "pid": "19361634", "query": "where is thank you for your service based", "answer": "Kansas", "passage": "\"Thank You for Your Service (2017 film)\"\nThank You for Your Service (2017 film) Thank You for Your Service is a 2017 American biographical war drama film written and directed by Jason Hall, in his directorial debut, based on the 2013 non-fiction book of the same name by David Finkel. Finkel, a \"\"Washington Post\"\" reporter, wrote about veterans of the 2nd Battalion, 16th Infantry Regiment returning to the vicinity of Fort Riley, Kansas, following a 15-month deployment in Iraq in 2007. The film is about posttraumatic stress disorder (PTSD), depicting U.S. soldiers who try to adjust to civilian life, and stars Miles Teller, Haley Bennett, Beulah Koale,"} +{"qid": "test1008", "pid": "13970718", "query": "new movie of ajay devgan and sonakshi sinha", "answer": "Action Jackson", "passage": "Anandaraj\nAnandaraj Anandaraj is an Indian Tamil film actor and politician. He has acted in villain roles in several Tamil films and has appeared in over a hundred films in different languages including Tamil, Kannada, Telugu and Malayalam. Anandaraj made his Bollywood debut as the main antagonist with \"\"Action Jackson\"\". starring Ajay Devgan and Sonakshi Sinha. Anandaraj was born on 10 November 1958 in Pondicherry, (Puducherry). He enjoyed movies from a very young age. After completing his school he wanted to make a career in cinema, but his father wanted him to become a police officer. Nevertheless, he persuaded his parents"} +{"qid": "test1008", "pid": "13970724", "query": "new movie of ajay devgan and sonakshi sinha", "answer": "Action Jackson", "passage": "Anandaraj\nan arak merchant. Anandaraj Anandaraj is an Indian Tamil film actor and politician. He has acted in villain roles in several Tamil films and has appeared in over a hundred films in different languages including Tamil, Kannada, Telugu and Malayalam. Anandaraj made his Bollywood debut as the main antagonist with \"\"Action Jackson\"\". starring Ajay Devgan and Sonakshi Sinha. Anandaraj was born on 10 November 1958 in Pondicherry, (Puducherry). He enjoyed movies from a very young age. After completing his school he wanted to make a career in cinema, but his father wanted him to become a police officer. Nevertheless, he"} +{"qid": "test1008", "pid": "15698938", "query": "new movie of ajay devgan and sonakshi sinha", "answer": "Action Jackson", "passage": "\"Kunaal Roy Kapur\"\n\"\"Action Jackson\"\" of Prabhu Deva, opposite Ajay Devgan, Sonakshi Sinha and Yami Gautam and \"\"Gollu Aur Pappu\"\", opposite Vir Das and Karishma Tanna. His last release was \"\"Azhar\"\", where he played the role of Reddy (Azharuddin's lawyer). His next release is \"\"The Final Exit\"\" (2017). In 2018, he acted in an eight episode web series called \"\"Going Viral\"\", which aired on Amazon prime. Kunaal is married to Shayonti. They have two children. He is of paternal Punjabi and maternal Jewish descent. Kunaal Roy Kapur Kunaal Roy Kapur is an Indian film actor and director, most known for films like \"\"Delhi"} +{"qid": "test1008", "pid": "17546961", "query": "new movie of ajay devgan and sonakshi sinha", "answer": "Action Jackson", "passage": "\"Action Jackson (2014 film)\"\nAction Jackson (2014 film) Action Jackson is a 2014 Indian action masala film directed by Prabhu Deva and produced by Gordhan Tanwani and Sunil Lulla. It features Ajay Devgn in dual roles, alongside Sonakshi Sinha, Yami Gautam and Manasvi Mamgai as the female leads. Kunaal Roy Kapur appears in a supporting role with Anandaraj portraying the main antagonist. Prabhu Deva and Ajay Devgn have paired for the first time with this film. Action Jackson released on 5 December 2014. Vishi (Ajay Devgn) is a small-time crook who would do anything for money. He falls in love with Khushi (Sonakshi Sinha),"} +{"qid": "test1008", "pid": "13261390", "query": "new movie of ajay devgan and sonakshi sinha", "answer": "Action Jackson", "passage": "\"Sonakshi Sinha\"\nreviews from critics and emerged as a box office hit. Jyoti Sharma Bawa said of Sinha's portrayal: \"\"Sonakshi has nothing to do much in the film and overacts in places. For an actor who has already proved her mettle in the acting department, this definitely is a downer.\"\" Sinha appeared in a music video with Yo Yo Honey Singh titled \"\"Superstar\"\". In July, Sinha jointly bought a team in the World Kabaddi League. Her second release of 2014 was Prabhu Deva's \"\"Action Jackson\"\", with Ajay Devgn and Yami Gautam. She made her Kollywood debut opposite Rajinikanth in KS Ravikumar's \"\"Lingaa\"\","} +{"qid": "test1008", "pid": "16970615", "query": "new movie of ajay devgan and sonakshi sinha", "answer": "Action Jackson", "passage": "\"Ghanta Awards\"\nFor \"\"Race 2\"\" And \"\"Shortcut Romeo\"\" Shit Nobody Saw: \"\"Sona Spa\"\" Worst Remake: \"\"Krrish 3\"\" That's Anything But Sexy: \"\"Grand Masti\"\" Kuoting Krap With Karan: Salman Khan On March 8, 2015, the ceremony was held presenting the awards: Worst Film: \"\"Humshakals\"\" Worst Director: Farah Khan for \"\"Happy New Year\"\" Worst Actress: Sonakshi Sinha for \"\"\"\" and \"\"Action Jackson\"\" Worst Actor: Saif Ali Khan, Ram Kapoor and Riteish Deshmukh for \"\"Humshakals\"\" WTF was That!: Ajay Devgn’s genitals being a good luck charm in \"\"Action Jackson\"\" Anything But Sexy: Sonakshi Sinha as a Boxer in \"\"\"\" Special Sajid Khan Lifetime Achievement Award:"} +{"qid": "test101", "pid": "4169751", "query": "who's playing in the world series and when is it", "answer": "Houston Astros", "passage": "\"1982 World Series\"\nThat has happened three times before, taking the 19th Century contests into account: The Brooklyn Dodgers of 1889 and 1890, the Cardinals, who won the 1886 Series when they were in the American Association, and the Houston Astros, who played in both the 2005 World Series against the Chicago White Sox as a National League team, and the 2017 World Series against the Los Angeles Dodgers as an American League team. This also makes this one of two World Series in the modern era (1903–present) that it is not possible to have a rematch, the other being the Astros and"} +{"qid": "test101", "pid": "4341707", "query": "who's playing in the world series and when is it", "answer": "Los Angeles Dodgers", "passage": "\"1965 World Series\"\nReds did so. Although the Dodgers had played the maximum seven games in four best-of-seven World Series when they were located in Brooklyn (in 1947, 1952, 1955, and 1956), 1965 marked the first time they had done so when located in Los Angeles. It did not happen again until 2017. The Brooklyn Dodgers had also played seven games in the 1920 World Series when it was a best-of-nine series, losing to Cleveland five games to two. 1965 World Series (4–3): Los Angeles Dodgers (N.L.) over Minnesota Twins (A.L.) The Dodgers would return to the World Series the following year, only"} +{"qid": "test101", "pid": "2531344", "query": "who's playing in the world series and when is it", "answer": "Los Angeles Dodgers", "passage": "\"Little League Baseball\"\n1954: Boog Powell, who later played for the Baltimore Orioles plays in the Little League World Series for Lakeland, Florida. Ken Hubbs, who later played for the Chicago Cubs, plays in the Little League World Series for Colton, California. Little League has expanded to more than 3,300 leagues. Jim Barberi who later played for the Los Angeles Dodgers and in a Major League World Series was also a member of the Schenectady, New York team who won the 1954 Series. 1955: There is a Little League organization in each of the 48 U.S. States. George W. Bush begins playing Little"} +{"qid": "test1011", "pid": "761639", "query": "what was the ancient chinese umbrella used for", "answer": "a defense against rain", "passage": "Umbrella\nthat the idea was probably derived from the tent, which remains in an unaltered form to the present day. However, the tradition existing in China is that it originated in standards and banners waving in the air, hence the use of the umbrella was often linked to high-ranking (though not necessarily royalty) in China. On at least one occasion, twenty-four umbrellas were carried before the Emperor when he went out hunting. The umbrella served in this case as a defense against rain rather than sun. The Chinese design was later brought to Japan via Korea and also introduced to Persia"} +{"qid": "test1012", "pid": "388729", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"Statue of Liberty\"\nthe Eiffel factory in the nearby Parisian suburb of Levallois-Perret. The change in structural material from masonry to iron allowed Bartholdi to change his plans for the statue's assembly. He had originally expected to assemble the skin on-site as the masonry pier was built; instead he decided to build the statue in France and have it disassembled and transported to the United States for reassembly in place on Bedloe's Island. In a symbolic act, the first rivet placed into the skin, fixing a copper plate onto the statue's big toe, was driven by United States Ambassador to France Levi P."} +{"qid": "test1012", "pid": "18102518", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"History of parks and gardens of Paris\"\nback to make room for the Rue de Medicis, and the present long basin and the statuary were added to the fountain. During the reign of Louis-Philippe, who was fond of heroes of French history, the garden was decorated with the statues of the Queens of France and French women saints. During the French Third Republic, the government added the statues of writers, painters, composers, mythical figures, and a miniature of the Statue of Liberty by Frédéric Auguste Bartholdi. bringing the number of statues to more than seventy. The garden of the Palais-Royal was built by Cardinal Richelieu, after he"} +{"qid": "test1012", "pid": "4553046", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"Flame of Liberty\"\nnewspaper, the \"\"Flame of Liberty\"\", more broadly, is a lasting symbol of the friendship uniting the two countries, just as the statue itself was when it was given to the United States by France. This project was overseen by the director of the French craft unions at that time, Jacques Graindorge. He foresaw an installation of the \"\"Flame of Liberty\"\" in a public square called Place des États-Unis (United States Square) in the 16th arrondissement, but the mayor of Paris at the time, Jacques Chirac, was opposed to it. After a protracted period of negotiations, it was decided that the"} +{"qid": "test1012", "pid": "388725", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"Statue of Liberty\"\ntook office the following day, selected the Bedloe's Island site that Bartholdi had proposed. On his return to Paris in 1877, Bartholdi concentrated on completing the head, which was exhibited at the 1878 Paris World's Fair. Fundraising continued, with models of the statue put on sale. Tickets to view the construction activity at the Gaget, Gauthier & Co. workshop were also offered. The French government authorized a lottery; among the prizes were valuable silver plate and a terracotta model of the statue. By the end of 1879, about 250,000 francs had been raised. The head and arm had been built"} +{"qid": "test1012", "pid": "15545451", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"Liberty Arcade (Disneyland Paris)\"\nLiberty Arcade (Disneyland Paris) Liberty Arcade is a covered walkthrough area in Main Street, U.S.A. at Disneyland Paris. This is an exhibition about the Statue of Liberty, and a walkway parallel to the main entrance. It opened with the park in 1992. The area keeps visitors dry and warm during rain. When Imagineers were working on the creation of the European Disney resort, they had to envision a Main Street that would cope with the changing climate of the region of Paris. Although a huge Victorian-style glass roof covering the street could be built as in Tokyo Disneyland, the decision"} +{"qid": "test1012", "pid": "12951428", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"Palácio de Ferro\"\nPalácio de Ferro Palácio de Ferro () is a historical building in the Angolan capital Luanda, \"\"believed to have been designed and built by – or by someone associated with – Gustave Eiffel\"\", builder of the world-famous icons, the Eiffel Tower in Paris and the Statue of Liberty in New York City. The history of the structure is shrouded in mystery since no official record of it exists. It is believed to have been pre-built in the 1890s in France and was destined to be placed in Madagascar via boat. Instead, the building ended-up in Angola's Skeleton Coast after the"} +{"qid": "test1012", "pid": "897168", "query": "when was the statue of liberty in france built", "answer": "Paris", "passage": "\"Levi P. Morton\"\nin France. He helped commercial relations between the two countries run smoothly during his term, and, in Paris on October 24, 1881, he placed the first rivet in the construction of the Statue of Liberty. (It was driven into the big toe of Lady Liberty's left foot.) After completion of the statue, he accepted Liberty on behalf of the United States in a ceremony on July 4, 1884 by signing the Union Franco Americaine contract with that date. Morton was elected Vice President of the United States, on the Republican ticket with President Benjamin Harrison, in which capacity he served"} +{"qid": "test1013", "pid": "18384334", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "four", "passage": "\"Cross-country skiing (sport)\"\nsides by the time of the 1985 world championship and it was formally adopted by the FIS in 1986—despite initial opposition from Norway, the Soviet Union and Finland—while preserving events using only classic technique. The Winter Olympic Games are a major international sporting event that occurs once every four years. The first Winter Olympics, the 1924 Winter Olympics, was held in Chamonix, France and included Nordic skiing (which includes cross-country skiing) among the five principal disciplines. Cross-country events have evolved in the Winter Olympics since 1924, as seen in the following timeline: The FIS Nordic World Ski Championships have been"} +{"qid": "test1013", "pid": "7318636", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "four", "passage": "\"Short track speed skating at the Winter Olympics\"\nShort track speed skating at the Winter Olympics Short track speed skating has been a contest at the Winter Olympics since the 1992 Winter Games in Albertville, France. Prior to that, it was a demonstration sport at the 1988 games. The results from the 1988 demonstration competition is not included in the official Olympic statistics. The sport has been dominated by teams from Asia and North America, namely South Korea (IOC code KOR), China (CHN), Canada (CAN) and the United States (USA). Those four countries have won 134 of 168 medals awarded since 1992. South Korea leads the medal tally"} +{"qid": "test1013", "pid": "6883451", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "1960", "passage": "\"Speed skating at the Winter Olympics\"\n• = \"\"official event\"\", (d) = \"\"demonstration event\"\" \"\"Updated after the 2018 Winter Olympics.\"\" Speed skating at the Winter Olympics Speed skating has been featured as a sport in the Winter Olympics since the first winter games in 1924. Women's events were added to the Olympic program for the first time in 1960. The governing body for speed skating, the International Skating Union (ISU), was included in the list of recognized federations when the International Olympic Committee was founded, but was first discussed seriously for the 1908 Summer Olympics in London. No speed skating events were contested, although figure skating"} +{"qid": "test1013", "pid": "7307236", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "2002", "passage": "\"Bobsleigh at the Winter Olympics\"\nThe two-man event was introduced at the 1932 games and a two-woman event was first contested at the 2002 Winter Olympics. Athletes who won at least one gold medal and one bronze medal are listed below. \"\"Updated after 2018 Winter Olympics.\"\" Bobsleigh at the Winter Olympics Bobsleigh is an event in the Winter Olympic Games where a two- or four-person team drives a specially designed sled down an ice track, with the winning team completing the route with the fastest time. The event has been featured since the first Winter Games in 1924 in Chamonix, France, with the exception of"} +{"qid": "test1013", "pid": "6883446", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "1960", "passage": "\"Speed skating at the Winter Olympics\"\nSpeed skating at the Winter Olympics Speed skating has been featured as a sport in the Winter Olympics since the first winter games in 1924. Women's events were added to the Olympic program for the first time in 1960. The governing body for speed skating, the International Skating Union (ISU), was included in the list of recognized federations when the International Olympic Committee was founded, but was first discussed seriously for the 1908 Summer Olympics in London. No speed skating events were contested, although figure skating – also governed by the ISU – was on the programme. The preliminary calendar"} +{"qid": "test1013", "pid": "7307235", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "1960", "passage": "\"Bobsleigh at the Winter Olympics\"\nBobsleigh at the Winter Olympics Bobsleigh is an event in the Winter Olympic Games where a two- or four-person team drives a specially designed sled down an ice track, with the winning team completing the route with the fastest time. The event has been featured since the first Winter Games in 1924 in Chamonix, France, with the exception of the 1960 games in Squaw Valley when the organizing committee decided not to build a track in order to reduce expenses. Other than that exception, the four-man competition has been competed at every game (in 1928, it was a five-man competition)."} +{"qid": "test1013", "pid": "7912993", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "1980", "passage": "\"Cross-country skiing at the 1924 Winter Olympics\"\nCross-country skiing at the 1924 Winter Olympics At the 1924 Winter Olympics, two cross-country skiing events were held. The 50 km competition was held on Wednesday, January 30, 1924 and the 18 km competition was held on Saturday, February 2, 1924. This was also part of the FIS Nordic World Ski Championships as well, which would be combined until the 1980 Winter Olympics. The results of Haug and Grøttumsbråten in the 18 km event should have been disqualified: as entrants of the Nordic combined event, they hadn't entered their names in this event. Tapani Niku wasn't however willing to be"} +{"qid": "test1013", "pid": "80674", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "2002", "passage": "Curling\nthe Canadian team from Regina, Saskatchewan, skipped by Ernie Richardson. (The \"\"skip\"\" is the team member who calls the shots; see below.) Curling was one of the first sports that was popular with women and girls. Curling has been a medal sport in the Winter Olympic Games since the 1998 Winter Olympics. It currently includes men's, women's and mixed doubles tournaments (the mixed tournament was held for the first time in 2018). In February 2002, the International Olympic Committee retroactively decided that the curling competition from the 1924 Winter Olympics (originally called \"\"Semaine des Sports d'Hiver\"\", or International Winter Sports"} +{"qid": "test1013", "pid": "2757791", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "four", "passage": "Annecy\nArchitecture since 1999. On 23 July 2009, Annecy played host to Stage 18 of the Tour de France, as the start/finish point for an individual time trial around Lake Annecy. It will be the start town for stage 10 of the 2018 Tour de France on 17 July 2018. Annecy launched a bid to host the 2018 Winter Olympic Games but lost to Pyeongchang. If they had been chosen, Annecy would have been the fourth French city to host the Winter Olympic Games, after Chamonix (1924), Grenoble (1968), and Albertville (1992). Ligue 1 former team Évian Thonon Gaillard F.C. played"} +{"qid": "test1013", "pid": "298708", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "four", "passage": "\"Olympic Games\"\nwrestling is a Summer Olympic sport, comprising two disciplines: Greco-Roman and Freestyle. It is further broken down into fourteen events for men and four events for women, each representing a different weight class. The Summer Olympics programme includes 26 sports, while the Winter Olympics programme features 15 sports. Athletics, swimming, fencing, and artistic gymnastics are the only summer sports that have never been absent from the Olympic programme. Cross-country skiing, figure skating, ice hockey, Nordic combined, ski jumping, and speed skating have been featured at every Winter Olympics programme since its inception in 1924. Current Olympic sports, like badminton, basketball,"} +{"qid": "test1013", "pid": "10002027", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "1980", "passage": "\"Philippines at the Olympics\"\nfor the country at the Winter Olympics. Philippines at the Olympics The Philippines has competed in every edition of the Summer Olympic Games since its debut in the 1924 edition, except when they participated in the American-led boycott of the 1980 Summer Olympics. Filipino athletes have also competed at the Winter Olympic Games on five different occasions since 1972. The country has also participated in the Summer Youth Olympic Games as well as in the Winter Youth Olympic Games. Participation of Filipino athletes in the Olympics is sanctioned by its National Olympic Committee (NOC). Its NOC since 1975 is the"} +{"qid": "test1013", "pid": "6561031", "query": "how many times have the winter olympics been in the usa since 1924", "answer": "1932", "passage": "\"Gillis Grafström\"\n(1920) and Winter Olympics (1924, 1928), although Eagan remains the only one to have managed the feat in different disciplines. Grafstrom is one of the few athletes who have competed in both the Summer and Winter Olympic games. He is one of the oldest figure skating Olympic champions. In 1914, Grafstrom competed at the last World Championships before the First World War. After the war, Grafström won the Olympic gold medal three successive times (1920, 1924 and 1928) and the silver medal at the 1932 Winter Olympics. He remains the only male figure skater to have won three Olympic gold"} +{"qid": "test1014", "pid": "9577351", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"I'll Sleep When I'm Dead (Bon Jovi song)\"\nI'll Sleep When I'm Dead (Bon Jovi song) \"\"I'll Sleep When I'm Dead\"\" is a song by American rock band Bon Jovi. It was released in July 1993 as the fourth single from their 1992 album, \"\"Keep the Faith\"\". It was written by Jon Bon Jovi, Richie Sambora and Desmond Child. \"\"I'll Sleep When I'm Dead\"\" reached #17 on the UK Charts, #97 in the US and #29 on the Mainstream rock charts. The grave of The Doors' lead singer Jim Morrison was featured in the video clip. The driving drumbeat and catchy chorus of \"\"I'll Sleep When I'm Dead\"\""} +{"qid": "test1014", "pid": "9577353", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"I'll Sleep When I'm Dead (Bon Jovi song)\"\nTour\"\" DVDs. I'll Sleep When I'm Dead (Bon Jovi song) \"\"I'll Sleep When I'm Dead\"\" is a song by American rock band Bon Jovi. It was released in July 1993 as the fourth single from their 1992 album, \"\"Keep the Faith\"\". It was written by Jon Bon Jovi, Richie Sambora and Desmond Child. \"\"I'll Sleep When I'm Dead\"\" reached #17 on the UK Charts, #97 in the US and #29 on the Mainstream rock charts. The grave of The Doors' lead singer Jim Morrison was featured in the video clip. The driving drumbeat and catchy chorus of \"\"I'll Sleep When"} +{"qid": "test1014", "pid": "14734150", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"I'll Sleep When I'm Dead Tour\"\nI'll Sleep When I'm Dead Tour The I'll Sleep When I'm Dead Tour was a concert tour by American hard rock band Bon Jovi that ran during the second half of 1993. The tour was an extension of the Keep the Faith Tour which was in promotion of the 1992 multi-platinum album \"\"Keep the Faith\"\". The tour returned to Europe, Asia and North America and also visited countries such as Australia and Argentina, which were not visited during the initial Keep the Faith tour earlier in the year. The first leg in North America was supported by hard rock band"} +{"qid": "test1014", "pid": "14734152", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"I'll Sleep When I'm Dead Tour\"\nDuring the first leg of the tour, Bon Jovi played at Madison Square Garden in New York to celebrate radio station Z100's birthday. The concert was held on July 28 and featured Duran Duran, Proclaimers, Terence Trent D'Arby and 10,000 Maniacs. I'll Sleep When I'm Dead Tour The I'll Sleep When I'm Dead Tour was a concert tour by American hard rock band Bon Jovi that ran during the second half of 1993. The tour was an extension of the Keep the Faith Tour which was in promotion of the 1992 multi-platinum album \"\"Keep the Faith\"\". The tour returned to"} +{"qid": "test1014", "pid": "11740662", "query": "who sings i'll sleep when i'm dead", "answer": "Warren Zevon", "passage": "\"I'll Sleep When I'm Dead: The Dirty Life and Times of Warren Zevon\"\nI'll Sleep When I'm Dead: The Dirty Life and Times of Warren Zevon I'll Sleep When I'm Dead: The Dirty Life and Times of Warren Zevon is a biography and oral history of the rock musician Warren Zevon compiled by his ex-wife Crystal Zevon and published May 2007 by Ecco Books. The book is an unflinching look at Zevon's \"\"high times and hard ways\"\" and contains many admiring reflections on Zevon's work from his famous musical peers, alongside some unsavory revelations. Included are details about Zevon's abusive behavior toward his ex-wife and children in the 1970s, his many sexual dalliances"} +{"qid": "test1014", "pid": "3974624", "query": "who sings i'll sleep when i'm dead", "answer": "Warren Zevon", "passage": "\"I'll Sleep When I'm Dead (An Anthology)\"\nI'll Sleep When I'm Dead (An Anthology) I’ll Sleep When I’m Dead (An Anthology) is a two-disc compilation album by American singer-songwriter Warren Zevon, released on Rhino Records in 1996. It spans his career from his eponymous debut album on Asylum Records to date of release, ignoring his disowned initial album from 1969, \"\"Wanted Dead or Alive\"\". It contains tracks from all ten of his albums released during this period, and includes contributions to soundtracks and his one-off album with members of R.E.M., \"\"Hindu Love Gods\"\". Disc one collects recordings done for Asylum, and disc two collects recordings done for"} +{"qid": "test1014", "pid": "3974625", "query": "who sings i'll sleep when i'm dead", "answer": "Warren Zevon", "passage": "\"I'll Sleep When I'm Dead (An Anthology)\"\nVirgin and Giant Records. I'll Sleep When I'm Dead (An Anthology) I’ll Sleep When I’m Dead (An Anthology) is a two-disc compilation album by American singer-songwriter Warren Zevon, released on Rhino Records in 1996. It spans his career from his eponymous debut album on Asylum Records to date of release, ignoring his disowned initial album from 1969, \"\"Wanted Dead or Alive\"\". It contains tracks from all ten of his albums released during this period, and includes contributions to soundtracks and his one-off album with members of R.E.M., \"\"Hindu Love Gods\"\". Disc one collects recordings done for Asylum, and disc two"} +{"qid": "test1014", "pid": "9577352", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"I'll Sleep When I'm Dead (Bon Jovi song)\"\nhave made it a crowd favourite during live performances. It had the distinction of being one of the few Bon Jovi songs to be played at virtually every live concert since its introduction, until The Circle Tour in 2010, where it was only played occasionally. When played, it is often incorporated into a medley with a cover song inserted into the middle, such as \"\"Jumpin' Jack Flash\"\" by The Rolling Stones, or \"\"Papa Was a Rollin' Stone\"\" by The Undisputed Truth. Concert footage of \"\"I'll Sleep When I'm Dead\"\" can be viewed on the \"\"Live From London\"\" and \"\"The Crush"} +{"qid": "test1014", "pid": "14731365", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"Keep the Faith Tour\"\nAustralia and South America, as well as revisiting North America, Asia and Europe in the same year. The band played 172 shows during 1993, under both the Keep the Faith Tour and I'll Sleep When I'm Dead Tour. Keep the Faith Tour The Keep the Faith Tour was a concert tour by American hard rock band Bon Jovi that ran during the first half of 1993. The tour was put on in support of the band's multi-platinum 1992 album \"\"Keep the Faith\"\". The concert tour was extended and changed name to the I'll Sleep When I'm Dead Tour at the"} +{"qid": "test1014", "pid": "14731364", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"Keep the Faith Tour\"\nKeep the Faith Tour The Keep the Faith Tour was a concert tour by American hard rock band Bon Jovi that ran during the first half of 1993. The tour was put on in support of the band's multi-platinum 1992 album \"\"Keep the Faith\"\". The concert tour was extended and changed name to the I'll Sleep When I'm Dead Tour at the end of June 1993. While the Keep the Faith Tour ended in Japan in June 1993, the band continued to tour the world with the I'll Sleep When I'm Dead Tour. Under the new tour, the band visited"} +{"qid": "test1014", "pid": "727732", "query": "who sings i'll sleep when i'm dead", "answer": "Bon Jovi", "passage": "\"Bon Jovi\"\non the Mainstream Rock Tracks. Bon Jovi embarked on an extensive international world tour for the album, visiting countries the band had never seen before and headlining stadiums in South America, Europe, Asia and Australia. They visited 37 countries, performed 177 shows and seen them play to 2.5 million fans on the Keep the Faith Tour/I'll Sleep When I'm Dead Tour. In October 1994, Bon Jovi released a greatest hits album titled \"\"Cross Road\"\", with two new tracks: \"\"Always\"\" and \"\"Someday I'll Be Saturday Night\"\". The first single from the album \"\"Always\"\" became Bon Jovi's highest selling single and stayed"} +{"qid": "test1014", "pid": "11740663", "query": "who sings i'll sleep when i'm dead", "answer": "Warren Zevon", "passage": "\"I'll Sleep When I'm Dead: The Dirty Life and Times of Warren Zevon\"\nand his return to drinking and drug use after his diagnosis of incurable cancer. Extensive use is made of excerpts from Zevon's private journals, which are concerned largely with his sexual partners, music industry worries and his relationships with his children, Jordan and Ariel. The book is interspersed with interviews conducted with 87 friends, lovers and collaborators, including Bruce Springsteen, Jackson Browne, Stephen King, Billy Bob Thornton and Bonnie Raitt. It is reputed that before his death Zevon gave the project his blessing and requested that the book be uncompromising in its honesty about even the most unflattering details. I'll"} +{"qid": "test1015", "pid": "2199667", "query": "what level is a city and guilds qualification", "answer": "entry level to level 7", "passage": "\"City and Guilds of London Institute\"\nof accredited qualifications mapped onto the Regulated Qualifications Framework (RQF), Credit and Qualifications Framework for Wales (CQFW) and Scottish Credit and Qualifications Framework (SCQF). As of November 2016, City & Guilds offers 2312 different regulated qualifications, more than any other awarding body. These cover entry level to level 7 on the RQF, with most qualifications falling in the entry level to level 3 range. The range of vocational qualifications covers areas such as engineering technician, arts and craft, tradesman, health and social care, hairdressing, automotive maintenance, construction, and catering, but also more obscure subjects such as sheep shearing, DJing, flower"} +{"qid": "test1016", "pid": "19633615", "query": "who owns the crown plaza hotel in chicago illinois", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Hong Kong Causeway Bay\"\nCrowne Plaza Hong Kong Causeway Bay Crowne Plaza Hong Kong Causeway Bay () is a hotel building in Causeway Bay, Hong Kong. It was completed and opened in 2009. It is an upscale hotel with 263 rooms, of which 10 are suites. It is owned by SEA Group and under the management of the InterContinental Hotels Group (IHG). It is the first Crowne Plaza hotel in Hong Kong. Crowne Plaza Hong Kong Causeway Bay is owned by the SEA Group. The SEA Group was founded in 1956 and was listed on the Hong Kong Stock Exchange in 1973 (SEHK: 0251)."} +{"qid": "test1016", "pid": "9681745", "query": "who owns the crown plaza hotel in chicago illinois", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Liverpool John Lennon Airport Hotel\"\nDavid Lloyd Leisure centre, whilst the other has been adapted as the headquarters of the Shop Direct Group, and is now known as Skyways House. Crowne Plaza Liverpool John Lennon Airport Hotel The Crowne Plaza Liverpool John Lennon Airport Hotel, formerly the Marriott Liverpool South Hotel, is an airport hotel near to Liverpool John Lennon Airport, serving the English city of Liverpool. Today a member of the Crowne Plaza chain owned by the InterContinental Hotels Group, the Grade II* listed Art Deco hotel building has an unusual history. The building was constructed in the 1930s, as the terminal building for"} +{"qid": "test1016", "pid": "9681742", "query": "who owns the crown plaza hotel in chicago illinois", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Liverpool John Lennon Airport Hotel\"\nCrowne Plaza Liverpool John Lennon Airport Hotel The Crowne Plaza Liverpool John Lennon Airport Hotel, formerly the Marriott Liverpool South Hotel, is an airport hotel near to Liverpool John Lennon Airport, serving the English city of Liverpool. Today a member of the Crowne Plaza chain owned by the InterContinental Hotels Group, the Grade II* listed Art Deco hotel building has an unusual history. The building was constructed in the 1930s, as the terminal building for the airport, then known as Speke Aerodrome. It is still sometimes seen on early television news footage, with its terraces packed with fans waiting to"} +{"qid": "test1016", "pid": "19633618", "query": "who owns the crown plaza hotel in chicago illinois", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Hong Kong Causeway Bay\"\nCentre. In 2017, Concord Way Limited, the owner, submitted proposal for turning the building into office and mall. If it passed the discussion, the new tower will remain its height and floor counts will be reduced to 24 floors. Public demonstrated opposition. Crowne Plaza Hong Kong Causeway Bay Crowne Plaza Hong Kong Causeway Bay () is a hotel building in Causeway Bay, Hong Kong. It was completed and opened in 2009. It is an upscale hotel with 263 rooms, of which 10 are suites. It is owned by SEA Group and under the management of the InterContinental Hotels Group (IHG)."} +{"qid": "test1016", "pid": "4083378", "query": "who owns the crown plaza hotel in chicago illinois", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza\"\nCrowne Plaza Crowne Plaza is a multinational chain of full service, upscale hotels headquartered in the United Kingdom. It is catering to business travelers and to the meetings and conventions market. It forms part of the InterContinental Hotels Group family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in 52 countries with more than 400 hotels, usually located in city centers, resorts, coastal towns or near major airports. Originally branded as \"\"Holiday Inn Crowne Plaza\"\", the first United States Holiday Inn Crowne Plaza Hotel was opened in Rockville, Maryland, in 1983. Within"} +{"qid": "test1016", "pid": "8354869", "query": "who owns the crown plaza hotel in chicago illinois", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Belgrade\"\nof the franchising license in 2006. Afterwards, the hotel re-branded as Hotel International CG for a brief period followed by Continental Hotel Belgrade, in both instances without a foreign brand affiliation, before getting sold to Miroslav Mišković's Delta Holding conglomerate in 2008. Mišković kept the existing setup until striking a deal with InterContinental Hotels Group (IHG) about using their Crowne Plaza brand. The hotel closed in July 2012 to undergo a major reconstruction effort before re-opening as Crowne Plaza in December 2013. Crowne Plaza is located in Novi Beograd on the Sava river left bank. Venues and sites of interest"} +{"qid": "test1017", "pid": "35820", "query": "what is the setting of a dolls house", "answer": "a Norwegian town circa 1879", "passage": "\"A Doll's House\"\nA Doll's House A Doll's House (; also translated as \"\"A Doll House\"\") is a three-act play written by Norway's Henrik Ibsen. It premiered at the Royal Theatre in Copenhagen, Denmark, on 21 December 1879, having been published earlier that month. The play is set in a Norwegian town circa 1879. The play is significant for the way it deals with the fate of a married woman, who at the time in Norway lacked reasonable opportunities for self-fulfillment in a male-dominated world. It aroused a great sensation at the time, and caused a “storm of outraged controversy” that went beyond"} +{"qid": "test1019", "pid": "2104043", "query": "what's the nba record for most points in a half", "answer": "59", "passage": "\"Joe Fulks\"\nscored 63 points on February 10, 1949. It remained the most in an NBA game until Elgin Baylor scored 64 points in a 1959 game. Fulks' 63-point outburst came during a Warriors 108-87 victory over the Indianapolis Jets. Fulks made 27 of 56 field goal attempts and nine of 14 free throws. Along the way he shattered the record for most points in one half (33), field goals, and field goal attempts. The 6'5\"\" (1.96 m) Fulks was known both for his athletic drives to the basket as well as his shooting. He was perhaps most remembered as one of"} +{"qid": "test1019", "pid": "6236847", "query": "what's the nba record for most points in a half", "answer": "59", "passage": "\"1977 NBA Finals\"\nvictory in a game 4 in NBA history. Game 5 returned to Philadelphia with the series tied 2–2. Philadelphia spent much of the first half fouling the Blazers, racking up 22 personal fouls and sending the half-time score into the 40s. The Blazers added another 40 points to their total in the third quarter, and with a little over 8 minutes left in the game, Portland led 91–69. Erving rallied his team late in the fourth, scoring 37 points himself, but ultimately lost 110–104. Portland set numerous rebounding records for its team, 59 (48 defensive, team record) in all which"} +{"qid": "test102", "pid": "8615424", "query": "who plays the evil doctor in wonder woman", "answer": "Elena Anaya", "passage": "\"Doctor Poison\"\nDoctor Poison Doctor Poison is the name of two fictional characters, supervillains who appear in DC Comics publications and related media. Both villains were members of the super-villain team Villainy Inc. and have appeared as major recurring enemies for Wonder Woman. The original Princess Maru () incarnation of the character made her cinematic debut in the 2017 film \"\"Wonder Woman\"\", portrayed by Spanish actress Elena Anaya. The Princess Maru incarnation of Doctor Poison first appeared in \"\"Sensation Comics\"\" #2 and was created by William Moulton Marston and Harry G. Peter. The second Doctor Poison first appeared in \"\"Wonder Woman\"\" Vol."} +{"qid": "test1020", "pid": "737086", "query": "who played the king in the ten commandments", "answer": "Yul Brynner", "passage": "\"Yul Brynner\"\nYul Brynner Yul Brynner (born Yuliy Borisovich Briner, ; July 11, 1920 – October 10, 1985) was a Russian-born film and stage actor. Brynner was best known for his portrayal of King Mongkut of Siam in the Rodgers and Hammerstein musical \"\"The King and I\"\", for which he won two Tony Awards and an Academy Award for the film version. He played the role 4,625 times on stage. He also starred as Ramesses II in the Cecil B. DeMille epic \"\"The Ten Commandments\"\" (1956), and played General Bounine in the film \"\"Anastasia\"\" (also 1956), the gunman Chris Adams in \"\"The"} +{"qid": "test1020", "pid": "737096", "query": "who played the king in the ten commandments", "answer": "Yul Brynner", "passage": "\"Yul Brynner\"\nto imitate him, and a shaven head was often referred to as the \"\"Yul Brynner look\"\". Brynner reprised his \"\"Shall We Dance?\"\" segment with Patricia Morison on the TV special \"\"\"\", broadcast March 28, 1954 on all four American TV networks of the time. Brynner's second motion picture was the film version of \"\"The King and I\"\" (1956) with Deborah Kerr. It was a huge success critically and commercially. Cecil B. de Mille hired him for \"\"The Ten Commandments\"\" (1956) to play Ramesses II opposite Charlton Heston after seeing him in the stage version of \"\"The King and I,\"\" telling"} +{"qid": "test1021", "pid": "7498052", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"I Write Sins Not Tragedies\"\nflaw that will be their undoing. What I write are not sins; I write tragedies.\"\" \"\"I Write Sins Not Tragedies\"\" is Panic! at the Disco's first single to have a music video. (\"\"The Only Difference Between Martyrdom and Suicide Is Press Coverage\"\" was the first single, but no video was filmed.) The video for the song takes place at a strange, circus-themed wedding played by the Lucent Dossier Vaudeville Cirque. The video starts as the bride, played by Jessie Preston, and groom, Daniel Isaac McGuffey, are about to be married. Her family dress and behave formally, but are revealed later"} +{"qid": "test1021", "pid": "7498047", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"I Write Sins Not Tragedies\"\nI Write Sins Not Tragedies \"\"I Write Sins Not Tragedies\"\" is a song by American rock band Panic! at the Disco, and is the second single from their debut studio album, \"\"A Fever You Can't Sweat Out\"\" (2005), and was released on February 27, 2006, on both CD and 7\"\" vinyl. The pizzicato cello motif that the song is built upon was played by session musician Heather Stebbins. The song reached No. 7 on the United States \"\"Billboard\"\" Hot 100, the band's only top forty hit until the release of \"\"Hallelujah\"\" in 2015. The band would return the top ten"} +{"qid": "test1021", "pid": "7498055", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"I Write Sins Not Tragedies\"\nVideo of All Time, in a worldwide poll on MTV's website. UK 7\"\" poster bag UK CD single WMI CD single UK CD single UK 7\"\" gatefold sleeve UK 7\"\" picture disc Enhanced CD single !scope=\"\"col\"\" colspan=\"\"3\"\"| Ringtone I Write Sins Not Tragedies \"\"I Write Sins Not Tragedies\"\" is a song by American rock band Panic! at the Disco, and is the second single from their debut studio album, \"\"A Fever You Can't Sweat Out\"\" (2005), and was released on February 27, 2006, on both CD and 7\"\" vinyl. The pizzicato cello motif that the song is built upon was"} +{"qid": "test1021", "pid": "8819793", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"Brendon Urie\"\nwas their lead singer. When Urie filled in for Ross during a band rehearsal, they were impressed with Urie's vocal abilities and he was chosen as their lead singer. Since then, Panic! at the Disco has released six studio albums with Urie as lead vocalist. \"\"A Fever You Can't Sweat Out\"\" was released in 2005 with the hit lead single \"\"I Write Sins Not Tragedies\"\" propelling it to 1.8 million sales. For their second album, \"\"Pretty. Odd.\"\" (2008), Urie also took lyrical responsibility and wrote two of the tracks on the record by himself; those tracks being \"\"I Have Friends"} +{"qid": "test1021", "pid": "6240008", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"Panic! at the Disco\"\nWithin a span of four months, Panic! would see the video for its first single, \"\"I Write Sins Not Tragedies\"\", rocket up the \"\"Billboard\"\" Hot 100 as sales of \"\"Fever\"\" passed the 500,000 mark. At the end of March 2006, the band announced a headlining tour. By August, the group's debut record was certified platinum by the Recording Industry Association of America (RIAA), and the music video for \"\"I Write Sins Not Tragedies\"\" won Video of the Year at the 2006 MTV Video Music Awards. \"\"Some aspects of the fame are annoying, but at the end of the day it's"} +{"qid": "test1021", "pid": "12435375", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"Panic! at the Disco discography\"\nPanic! at the Disco discography Panic! at the Disco is an American rock band that originated in Las Vegas, Nevada. Their 2005 debut album, \"\"A Fever You Can't Sweat Out\"\", reached number 13 on the US \"\"Billboard\"\" 200, and has sold more than 2.2 million copies since its September 2005 release, spearheaded by the quadruple platinum top 10 hit single, \"\"I Write Sins Not Tragedies\"\". The band's second album, \"\"Pretty. Odd.\"\", was released on March 21, 2008, entering the US chart at, and peaking at, number 2. Their third effort, \"\"Vices & Virtues\"\", was released on March 18, 2011, and"} +{"qid": "test1021", "pid": "12041245", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"I Love the New Millennium\"\nShatner Playlist of 2006: \"\"It Ends Tonight\"\" by The All-American Rejects\"\", \"\"Wait a Minute\"\" by The Pussycat Dolls and \"\"I Write Sins Not Tragedies\"\" by Panic! at the Disco Liar of 2006: James Frey Time Capsule of 2007: Britney Spears' leftover hair, Barry Bonds' steroid needle and VHS copy of a drunken David Hasselhoff Sisqó's Hotties I Wanted To See In A Thong: Jessica Biel, Kim Kardashian, Gisele Bundchen and Adriana Lima Blogs: Colton & Aboud on \"\"Knocked Up\"\" Then and Now: Bruce Willis and Taylor Dane Playlist of 2007: \"\"Shut Up and Drive\"\" by Rhianna, \"\"All Good Things (Come"} +{"qid": "test1021", "pid": "7210138", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "\"Shane Drake\"\nthan 50 music videos and co-produced three films. He owns Red Van Pictures, a Los Angeles-based production company. In 2006 Drake was awarded the MTV Video Music Award for Video of the Year for Panic! at the Disco's \"\"I Write Sins Not Tragedies\"\". In 2007 Drake was nominated for the MTV Monster Single of the Year for his video for Timbaland's \"\"The Way I Are\"\". In 2008, he was nominated for MTV Video Music Award for Best Direction and MTV Video Music Award for Best Pop Video with Panic! at the Disco's \"\"Nine in the Afternoon\"\" and MTV Video Music"} +{"qid": "test1021", "pid": "633749", "query": "who is the original singer of i write sins not tragedies", "answer": "Panic! at the Disco", "passage": "Glockenspiel\nsuch as Paul Duncan of Warm Ghost. George Martin, The Beatles' producer, plays glockenspiel on the band's song \"\"Being for the Benefit of Mr. Kite!\"\" to help create the atmosphere of the Pablo Fanque circus performance that inspired the song. John Lennon also plays it on \"\"Only a Northern Song\"\". Panic! at the Disco have used glockenspiel in several of their songs, including their hits \"\"I Write Sins Not Tragedies\"\" and \"\"Build God, Then We'll Talk\"\". Radiohead have used glockenspiel on their single \"\"No Surprises\"\" as well as on \"\"The Tourist\"\", \"\"Lull\"\", \"\"Morning Bell/Amnesiac\"\", \"\"Sit Down/Stand Up\"\", and \"\"All I"} +{"qid": "test1022", "pid": "20948725", "query": "where is the new stadium being built in las vegas", "answer": "Paradise, Nevada", "passage": "\"MSG Sphere Las Vegas\"\nsee what is going on inside. The MSG Sphere Las Vegas will be accessible via the Las Vegas Monorail, RTC Transit and The Deuce. A new Las Vegas Monorail station has been proposed to serve the MSG Sphere and The Venetian. In November 2018, it was confirmed that the new monorail station would be built. MSG Sphere Las Vegas The MSG Sphere Las Vegas is an under-construction music and entertainment venue being built in Paradise, Nevada. Construction on the venue began in 2018 and will be complete by 2021. The venue is being built in partnership between The Madison Square"} +{"qid": "test1022", "pid": "20948723", "query": "where is the new stadium being built in las vegas", "answer": "Paradise, Nevada", "passage": "\"MSG Sphere Las Vegas\"\nMSG Sphere Las Vegas The MSG Sphere Las Vegas is an under-construction music and entertainment venue being built in Paradise, Nevada. Construction on the venue began in 2018 and will be complete by 2021. The venue is being built in partnership between The Madison Square Garden Company and Las Vegas Sands Corporation. The MSG Sphere will be located adjacent to The Venetian Las Vegas and just off the Las Vegas Strip. Once complete, the sphere-shaped venue will have a capacity of 18,000 are will feature LED screens inside and outside of the venue. An identical MSG Sphere will be built"} +{"qid": "test1022", "pid": "19796962", "query": "where is the new stadium being built in las vegas", "answer": "Paradise, Nevada", "passage": "\"Las Vegas Stadium\"\nannounced the launch of the team with a stadium in Miami. The stadium was submitted as a potential site for the 2026 FIFA World Cup, but was later withdrawn from consideration. Las Vegas Stadium Las Vegas Stadium is the working name for a domed stadium under construction in Paradise, Nevada for the Las Vegas Raiders of the National Football League (NFL) and the UNLV Rebels football team of the University of Nevada, Las Vegas (UNLV). It is located on about 62 acres west of Mandalay Bay at Russell Road and Hacienda Avenue and between Polaris Avenue and Dean Martin Drive,"} +{"qid": "test1022", "pid": "19796945", "query": "where is the new stadium being built in las vegas", "answer": "Paradise, Nevada", "passage": "\"Las Vegas Stadium\"\nLas Vegas Stadium Las Vegas Stadium is the working name for a domed stadium under construction in Paradise, Nevada for the Las Vegas Raiders of the National Football League (NFL) and the UNLV Rebels football team of the University of Nevada, Las Vegas (UNLV). It is located on about 62 acres west of Mandalay Bay at Russell Road and Hacienda Avenue and between Polaris Avenue and Dean Martin Drive, just west of Interstate 15. Construction of the $1.8 billion stadium began in September 2017 and is expected to be completed in time for the 2020 NFL season. In January 2016,"} +{"qid": "test1023", "pid": "808832", "query": "name of black man in to kill a mockingbird", "answer": "Tom Robinson", "passage": "\"To Kill a Mockingbird\"\nKill a Mockingbird\"\" was physically impaired, which made him unable to commit the act he was accused of, but also crippled him in other ways. Roslyn Siegel includes Tom Robinson as an example of the recurring motif among white Southern writers of the black man as \"\"stupid, pathetic, defenseless, and dependent upon the fair dealing of the whites, rather than his own intelligence to save him\"\". Although Tom is spared from being lynched, he is killed with excessive violence during an attempted escape from prison, being shot seventeen times. The theme of racial injustice appears symbolically in the novel as"} +{"qid": "test1023", "pid": "1953556", "query": "name of black man in to kill a mockingbird", "answer": "Tom Robinson", "passage": "\"Brock Peters\"\n\"\"Abe Lincoln, Freedom Fighter\"\" (1978), Peters plays Henry, a freed black slave who is falsely accused of robbery but, defended by Abraham Lincoln, is found not guilty due to the fact he has a damaged hand and could not have committed the crime. In \"\"To Kill a Mockingbird\"\", Peters plays Tom Robinson, a black man falsely accused of raping a white girl, whom Atticus Finch shows could not have committed because his hand (and arm) were damaged. In 1970 Peters portrayed the voice of African-American boxer Jack Johnson in Bill Cayton's film of the same name, and it is in"} +{"qid": "test1023", "pid": "808814", "query": "name of black man in to kill a mockingbird", "answer": "Tom Robinson", "passage": "\"To Kill a Mockingbird\"\nfor Capote's nonfiction novel \"\"In Cold Blood\"\". Down the street from the Lees lived a family whose house was always boarded up; they served as the models for the fictional Radleys. The son of the family got into some legal trouble and the father kept him at home for 24 years out of shame. He was hidden until virtually forgotten; he died in 1952. The origin of Tom Robinson is less clear, although many have speculated that his character was inspired by several models. When Lee was 10 years old, a white woman near Monroeville accused a black man named"} +{"qid": "test1023", "pid": "7501667", "query": "name of black man in to kill a mockingbird", "answer": "Tom Robinson", "passage": "\"To Kill a Mockingbird (film)\"\nto turn the other cheek, and to stand for what you believe. He also allows his children to call him by his first name. Early in the film, the children see their father accept hickory nuts, and other produce, from Mr. Cunningham (Crahan Denton) for legal work because the client has no money. Through their father's work as a lawyer, Scout and Jem begin to learn of the racism and evil in their town, aggravated by poverty; they mature quickly as they are exposed to it. The local judge (Paul Fix) appoints Atticus to defend a black man, Tom Robinson"} +{"qid": "test1023", "pid": "2523050", "query": "name of black man in to kill a mockingbird", "answer": "Tom Robinson", "passage": "\"Emmett Till\"\nLoiters in Mississippi. Meanwhile, A Mississippi Mother Burns Bacon\"\" (1960). The same year Harper Lee published \"\"To Kill a Mockingbird\"\", in which a white attorney is committed to defending a black man named Tom Robinson, accused of raping a white woman. Lee, whose novel had a profound effect on civil rights, never commented on why she wrote about Robinson. Literature professor Patrick Chura noted several similarities between Till's case and that of Robinson. Writer James Baldwin loosely based his 1964 drama \"\"Blues for Mister Charlie\"\" on the Till case. He later divulged that Till's murder had been bothering him for"} +{"qid": "test1023", "pid": "808847", "query": "name of black man in to kill a mockingbird", "answer": "Tom Robinson", "passage": "\"To Kill a Mockingbird\"\nthey can \"\"shoot all the bluejays they want\"\", they must remember that \"\"it's a sin to kill a mockingbird\"\". Confused, Scout approaches her neighbor Miss Maudie, who explains that mockingbirds never harm other living creatures. She points out that mockingbirds simply provide pleasure with their songs, saying, \"\"They don't do one thing but sing their hearts out for us.\"\" Writer Edwin Bruell summarized the symbolism when he wrote in 1964, \"\"'To kill a mockingbird' is to kill that which is innocent and harmless—like Tom Robinson.\"\" Scholars have noted that Lee often returns to the mockingbird theme when trying to make"} +{"qid": "test1024", "pid": "2032119", "query": "name the tissue type of the inner most layer of cells", "answer": "Epithelium", "passage": "Epithelium\nEpithelium Epithelium () is one of the four basic types of animal tissue, along with connective tissue, muscle tissue and nervous tissue. Epithelial tissues line the outer surfaces of organs and blood vessels throughout the body, as well as the inner surfaces of cavities in many internal organs. An example is the epidermis, the outermost layer of the skin. There are three principal shapes of epithelial cell: squamous, columnar, and cuboidal. These can be arranged in a single layer of cells as simple epithelium, either squamous, columnar, or cuboidal, or in layers of two or more cells deep as stratified"} +{"qid": "test1024", "pid": "2032133", "query": "name the tissue type of the inner most layer of cells", "answer": "Epithelium", "passage": "Epithelium\nform is epithelia. Epithelium Epithelium () is one of the four basic types of animal tissue, along with connective tissue, muscle tissue and nervous tissue. Epithelial tissues line the outer surfaces of organs and blood vessels throughout the body, as well as the inner surfaces of cavities in many internal organs. An example is the epidermis, the outermost layer of the skin. There are three principal shapes of epithelial cell: squamous, columnar, and cuboidal. These can be arranged in a single layer of cells as simple epithelium, either squamous, columnar, or cuboidal, or in layers of two or more cells"} +{"qid": "test1024", "pid": "2032123", "query": "name the tissue type of the inner most layer of cells", "answer": "Epithelium", "passage": "Epithelium\ncolumnar; (4) pseudostratified. Stratified epithelium differs from simple epithelium in that it is multilayered. It is therefore found where body linings have to withstand mechanical or chemical insult such that layers can be abraded and lost without exposing subepithelial layers. Cells flatten as the layers become more apical, though in their most basal layers the cells can be squamous, cuboidal or columnar. Stratified epithelia (of columnar, cuboidal or squamous type) can have the following specializations: The basic cell types are squamous, cuboidal, and columnar classed by their shape. Cells of epithelial tissue are scutoid shaped, tightly packed and form a"} +{"qid": "test1028", "pid": "4941414", "query": "where was it happened at the world fair filmed", "answer": "Seattle, Washington", "passage": "\"It Happened at the World's Fair\"\nIt Happened at the World's Fair It Happened at the World's Fair is a 1963 American musical film starring Elvis Presley as a cropdusting pilot. It was filmed in Seattle, Washington, site of the \"\"Century 21 Exposition\"\", the 1962 World's Fair. The governor of Washington at the time, Albert Rosellini, suggested the setting to Metro-Goldwyn-Mayer executives. The film made $2.25 million at the box office. Pilot Mike Edwards finds himself in a dilemma, his partner and friend Danny, gambles away the money Mike had set aside to pay their debts. Since they lost their money and a $1,200 debt, the"} +{"qid": "test1028", "pid": "4941418", "query": "where was it happened at the world fair filmed", "answer": "Camarillo, California", "passage": "\"It Happened at the World's Fair\"\nthrough the fountains at what is now the Pacific Science Center. The hitchhiking scene with Elvis and Gary Lockwood was filmed near Camarillo, California, as were some of the flying scenes. The entire hitchhiking scene to the point where they are both picked up by Kam Tong and Vicky Tiu Cayetano in the truck is easily recognizable as 5th Street near Pleasant Valley Road on the South side of Camarillo. While \"\"The Elvis Encyclopedia\"\" believes that the Wilburton Trestle was shown in the movie, further evidence points to a different location. It is actually a trestle over the White River"} +{"qid": "test1028", "pid": "4941417", "query": "where was it happened at the world fair filmed", "answer": "The Seattle Center", "passage": "\"It Happened at the World's Fair\"\nillness so that nurse Diane will come to their apartment and examine her and see Mike again. When Diane discovers that Mike has no kinship to Sue-Lin, she wants to inform the Welfare Board so that Sue-Lin can be removed from Mike and Danny's apartment. There is a mysterious nightfall plane delivery for Mike's and Danny's friend Vince, who is smuggling valuable furs. The film ends with Mike and Diane in love. The Seattle Center, including the Seattle Center Monorail and the Space Needle, serve as backdrops for several scenes in the film. Security officers pursue Presley and the girl"} +{"qid": "test103", "pid": "5632658", "query": "who starred in the movie summer of 42", "answer": "Jennifer O'Neill", "passage": "\"Stealing Home\"\nmake. I hear a lot about that role. People really found that movie on video.\"\" Ever since the release of \"\"Summer of '42\"\", Warner Bros. has attempted to buy back the rights to the film, which they sold to author Herman Raucher in lieu of paying him for the script, under the belief that the film would not be financially successful. \"\"Stealing Home\"\" was greenlit shortly after Raucher denied their latest attempt to purchase the rights, leading to \"\"Summer\"\" star Jennifer O'Neill's assertion that \"\"Stealing Home\"\" was \"\"stolen\"\" from \"\"Summer\"\". Regardless, she said that she enjoyed the movie and called"} +{"qid": "test103", "pid": "4980051", "query": "who starred in the movie summer of 42", "answer": "Gary Grimes", "passage": "\"Robert Mulligan\"\nfor vehicular manslaughter. He then contemplates breaking out of prison and fleeing the country with his girlfriend (played by Barbara Hershey), since neither feels their lives have made any significant difference in America. Also in 1971, Mulligan released \"\"Summer of '42\"\" (1971), which was based on the coming-of-age novel by Herman Raucher and starred Gary Grimes as a teenage stand-in for Raucher who spends a summer vacation in 1942 on Nantucket Island lusting after a young woman (Jennifer O'Neill) whose husband has shipped off to fight in the war. A box office smash, \"\"Summer of '42\"\" went on to gross"} +{"qid": "test103", "pid": "4980510", "query": "who starred in the movie summer of 42", "answer": "Oliver Conant", "passage": "\"Summer of '42\"\nSummer of '42 Summer of '42 is a 1971 American coming-of-age comedy-drama film based on the memoirs of screenwriter Herman Raucher (b. 1928). It tells the story of how Raucher, in his early teens on his 1942 summer vacation on Nantucket Island (off the coast of Cape Cod), embarks on a one-sided romance with a young woman, Dorothy, whose husband has gone off to fight in World War II. The film was directed by Robert Mulligan, and starred Gary Grimes as Hermie, Jerry Houser as his best friend Oscy, Oliver Conant as their nerdy young friend Benjie, Jennifer O'Neill as"} +{"qid": "test103", "pid": "7844764", "query": "who starred in the movie summer of 42", "answer": "Jerry Houser", "passage": "\"Jerry Houser\"\nJerry Houser Jerry Houser (born July 14, 1952) is an American actor and voice actor in film and television. He is best known for his role as Oscar \"\"Oscy\"\" Seltzer in Summer of '42 and its sequel, Class of '44, and the role of Wally Logan in various Brady Bunch spinoffs throughout the 1980s and 90s. Houser was born in Los Angeles, California. Since 1971, he has appeared in dozens of films, TV series, animated series, and commercials. Some of his most notable appearances are \"\"Summer of '42\"\", \"\"Slap Shot\"\" with Paul Newman, and in the \"\"Brady Bunch\"\" spin-off movies"} +{"qid": "test1030", "pid": "683614", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Charleston, West Virginia\"\nuntil the 1960s, several daily Chesapeake and Ohio Railway trains traversed central West Virginia, making stops in Charleston. Destinations in the Mid-West included St. Louis, Chicago, Detroit and Louisville. To the east the trains terminated in either Washington, D.C. or Newport News, Virginia. These featured the \"\"Fast Flying Virginian,\"\" \"\"George Washington,\"\" and the \"\"Sportsman.\"\" Into the late 1940s, the New York Central Railroad operated passenger trains between Columbus, Ohio and Charleston. Interstate 64 crosses the Kanawha River four times as it passes through the Charleston metropolitan area. The Elk River flows into the Kanawha River in downtown Charleston. Charleston is"} +{"qid": "test1030", "pid": "17694648", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Davis Creek (Kanawha River tributary)\"\nportion of the city of Charleston, to the city of South Charleston, where it flows into the Kanawha River. The creek is paralleled by county roads for much of its length, and by West Virginia Route 601 for a portion of its course through South Charleston. Hiking trails follow the creek in the Kanawha State Forest. Davis Creek has the name of Thomas Davis, a pioneer settler. Davis Creek (Kanawha River tributary) Davis Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the"} +{"qid": "test1030", "pid": "17694575", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Campbells Creek (West Virginia)\"\nCampbells Creek (West Virginia) Campbells Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the watershed of the Mississippi River, draining an area of on the unglaciated portion of the Allegheny Plateau, in the Charleston metropolitan area. Campbells Creek flows for its entire length in Kanawha County. It rises approximately east of the unincorporated community of Putney and flows northwestward through Putney and the unincorporated communities of Annfred, Blount, Cinco, and Fivemile; then southwestward through the unincorporated communities of Tad and Coal Fork."} +{"qid": "test1030", "pid": "5967067", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Charleston Distance Run\"\nCharleston Distance Run The Charleston Distance Run is a road running event held annually in Charleston, West Virginia. The race starts in front of the West Virginia State Capitol on the Kanawha Boulevard. The course starts on the flats of the Boulevard before going across the South Side Bridge and up Corridor G, a hill named Capital Hill Punishment for its nearly uphill length. The course winds through Charleston's South Hills for before crossing back over the South Side Bridge. The final are flat; runners go past the West Virginia State Capitol, along the Kanawha River, before finishing at Laidley"} +{"qid": "test1030", "pid": "11725999", "query": "what river flows through charleston west virginia’s capital", "answer": "Elk", "passage": "\"Capital High School (Charleston, West Virginia)\"\nCapital High School (Charleston, West Virginia) Capital High School is a public high school located in Charleston, West Virginia, United States. The original high school in the city was Charleston High School, locally known as \"\"The High,\"\" serving the entire city. In 1940 the school had become overcrowded and the district was divided at the Elk River, with the west side of town attending the new Stonewall Jackson High School (\"\"The Wall\"\"). During the 1980s, enrollment at both schools dropped. In 1989, Capital High School opened, combining the students of these two longtime rivals. The name \"\"Capital\"\" derives from the"} +{"qid": "test1030", "pid": "17694555", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Lens Creek\"\nits course by West Virginia Route 94. The creek was named after Leonard \"\"Len\"\" Morris, a pioneer settler. Lens Creek Lens Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the watershed of the Mississippi River, draining an area of on the unglaciated portion of the Allegheny Plateau, in the Charleston metropolitan area. Lens Creek flows for its entire length in Kanawha County. It rises approximately north-northwest of the unincorporated community of Bloomingrose and flows generally northeastward through the unincorporated community of Hernshaw."} +{"qid": "test1030", "pid": "683573", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Charleston, West Virginia\"\nIroquois dialects meaning \"\"water way\"\" or \"\"Canoe Way\"\" implying the metaphor, \"\"transport way\"\", in the local language. It was and is the name of the river that flows through Charleston. The grammar of the \"\"hard H\"\" sound soon dropped out as new arrivals of various European languages developed West Virginia. The phrase has been a matter of Register (sociolinguistics). In fact, a two-story jail was the first county structure ever built, with the first floor literally dug into the bank of the Kanawha River. Daniel Boone, who was commissioned a lieutenant colonel of the Kanawha County militia, was elected to"} +{"qid": "test1030", "pid": "683571", "query": "what river flows through charleston west virginia’s capital", "answer": "Elk", "passage": "\"Charleston, West Virginia\"\nsettlements. Many slowly migrated into the western part of Virginia. Capitalizing on its many resources made Charleston an important part of Virginia and West Virginia history. Today, Charleston is the largest city in the state and the state capital. Charleston's history goes back to the 18th century. Thomas Bullitt was deeded of land near the mouth of the Elk River in 1773. It was inherited by his brother, Cuthbert Bullitt, upon his death in 1778, and sold to Col. George Clendenin in 1786. The first permanent settlement, Fort Lee, was built in 1787 by Col. Savannah Clendenin and his company"} +{"qid": "test1030", "pid": "683569", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha", "passage": "\"Charleston, West Virginia\"\nCharleston, West Virginia Charleston is the most populous city in, and the capital of, the U.S. state of West Virginia. Located at the confluence of the Elk and Kanawha rivers, the population during the 2016 Census Estimate was 49,138. The Charleston metropolitan area as a whole had 217,916 residents. Charleston is the center of government, commerce, and industry for Kanawha County, of which it is the county seat. Early industries important to Charleston included salt and the first natural gas well. Later, coal became central to economic prosperity in the city and the surrounding area. Today, trade, utilities, government, medicine,"} +{"qid": "test1030", "pid": "17694647", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Davis Creek (Kanawha River tributary)\"\nDavis Creek (Kanawha River tributary) Davis Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the watershed of the Mississippi River, draining an area of on the unglaciated portion of the Allegheny Plateau, in the Charleston metropolitan area. Davis Creek flows for its entire length in Kanawha County. It rises in the Kanawha State Forest approximately west of the unincorporated community of Hernshaw, and flows generally northwestward through the state forest and the unincorporated communities of Loudendale and Davis Creek, and a small"} +{"qid": "test1030", "pid": "3016802", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Kanawha River\"\nKanawha River The Kanawha River ( ) is a tributary of the Ohio River, approximately 97 mi (156 km) long, in the U.S. state of West Virginia. The largest inland waterway in West Virginia, it has formed a significant industrial region of the state since early in the 19th century. It is formed at the town of Gauley Bridge in northwestern Fayette County, approximately 35 mi (56 km) SE of Charleston, by the confluence of the New and Gauley rivers. It flows generally northwest, in a winding course on the unglaciated Allegheny Plateau, through Fayette, Kanawha, Putnam, and Mason counties,"} +{"qid": "test1030", "pid": "683615", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha", "passage": "\"Charleston, West Virginia\"\nserved by Interstate 64, Interstate 77, and Interstate 79. The West Virginia Turnpike's northern terminus is at the southeastern end of the city. Two U.S. routes, US 60, and US 119, cut through the city center. US 21 and US 35 formerly ran through Charleston. WV 25, WV 61, WV 62, and WV 114 are all state highways that are within Charleston's city limits. Charleston is served by Kanawha Valley Regional Transportation Authority. C&H Taxi services the Kanawha valley. Charleston's sister city is: Charleston, West Virginia Charleston is the most populous city in, and the capital of, the U.S. state"} +{"qid": "test1030", "pid": "17694554", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Lens Creek\"\nLens Creek Lens Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the watershed of the Mississippi River, draining an area of on the unglaciated portion of the Allegheny Plateau, in the Charleston metropolitan area. Lens Creek flows for its entire length in Kanawha County. It rises approximately north-northwest of the unincorporated community of Bloomingrose and flows generally northeastward through the unincorporated community of Hernshaw. It flows into the Kanawha River in the city of Marmet. The creek is paralleled for most of"} +{"qid": "test1030", "pid": "1250243", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Middlebourne, West Virginia\"\nMiddlebourne, West Virginia Middlebourne is a town in Tyler County, West Virginia, USA. The population was 815 at the 2010 census. It serves as the county seat of Tyler County. Middlebourne was established by an enactment of the Virginia General Assembly in 1813. Two explanations have been given for the name of the town: One is that it was located halfway between Pennsylvania and a series of salt wells along the Kanawha River upstream of Charleston; the other is that it is located midway between the source and the mouth of Middle Island Creek, which flows through the town. The"} +{"qid": "test1030", "pid": "17694610", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Twomile Creek (Kanawha River)\"\nnorthwest of Elk Hills and flows westward. From the confluence of these forks, Twomile Creek flows westward and southward, through Guthrie, to its mouth at the Kanawha River in the city of Charleston. The creek is paralleled by county roads for much of its length. At Guthrie, it collects the Left Fork Twomile Creek, long, which rises approximately north-northwest of Guthrie and flows generally southward. Twomile Creek (Kanawha River) Twomile Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the watershed of the"} +{"qid": "test1030", "pid": "17694576", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Campbells Creek (West Virginia)\"\nIt flows into the Kanawha River approximately north-northwest of Port Amherst. The creek is paralleled by county roads for most of its course. The Geographic Names Information System lists \"\"Campbell Creek,\"\" \"\"Campbell's Creek,\"\" and \"\"Nip-pi-pin-mah\"\" as historical variant names for the creek. Campbells Creek (West Virginia) Campbells Creek is a tributary of the Kanawha River, long, in West Virginia in the United States. Via the Kanawha and Ohio rivers, it is part of the watershed of the Mississippi River, draining an area of on the unglaciated portion of the Allegheny Plateau, in the Charleston metropolitan area. Campbells Creek flows for"} +{"qid": "test1030", "pid": "12443278", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha", "passage": "\"Stonewall Jackson High School (Kanawha County, West Virginia)\"\nStonewall Jackson High School (Kanawha County, West Virginia) Stonewall Jackson High School is a former high school in Kanawha County, West Virginia. It opened in 1940 and closed in 1989. It was located on the West Side in Charleston, West Virginia. In 1989, Stonewall Jackson High School and Charleston High School consolidated to become Capital High School. It is now a middle school. It is named after the Civil War general Thomas \"\"Stonewall\"\" Jackson who was from Clarksburg, in what is now West Virginia. In the late 1930s, Charleston High School became over-crowded so Stonewall Jackson High School was built"} +{"qid": "test1030", "pid": "13806684", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Transportation in Appalachia\"\nlocks around the falls at Richmond. By then, Washington was quite busy since he was elected president in 1789. The goal was to reach the Kanawha River at its head of navigation about east of what is today Charleston, West Virginia. The canal eventually extended west of Richmond to Buchanan, Virginia. By 1851 westward progress had stopped due to increasing competition from the railroads. Even today river systems provide transport through barge traffic on the Ohio River system. The Monongahela River is navigable its entire length, deep into the interior of West Virginia, with a series of lock/dams ensuring a"} +{"qid": "test1030", "pid": "908398", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Kanawha County, West Virginia\"\nKanawha County, West Virginia Kanawha County ( or ) is a county in the U.S. state of West Virginia. As of the 2010 census, the population was 193,063, making it West Virginia's most populous county. Its county seat is Charleston, the state capital. Kanawha County is part of the Charleston, WV Metropolitan Statistical Area. The county began taking formation on November 14, 1788 under authorization of the Virginia General Assembly, and was founded on October 5, 1789. The county was named for the Kanawha River, which in turn was named after the Indian tribe that lived in the area. The"} +{"qid": "test1030", "pid": "5967069", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha", "passage": "\"Charleston Distance Run\"\nis America's only 15-mile distance run. Charleston Distance Run The Charleston Distance Run is a road running event held annually in Charleston, West Virginia. The race starts in front of the West Virginia State Capitol on the Kanawha Boulevard. The course starts on the flats of the Boulevard before going across the South Side Bridge and up Corridor G, a hill named Capital Hill Punishment for its nearly uphill length. The course winds through Charleston's South Hills for before crossing back over the South Side Bridge. The final are flat; runners go past the West Virginia State Capitol, along the"} +{"qid": "test1030", "pid": "1263702", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha", "passage": "\"Sissonville, West Virginia\"\nSissonville, West Virginia Sissonville is a census-designated place (CDP) in Kanawha County, West Virginia, along the Pocatalico River. The population was 4,028 at the 2010 census. Sissonville is located less than 14 miles north of Charleston (state capital). Sissonville is located in Kanawha County, West Virginia. It was named after an early settler by the name of John Sisson. History shows the first known settler north of Fort Lee (now known as Charleston) was a man named Johnson who built a log cabin near the mouth of Tuppers Creek in 1802 and later built a grist mill in the area."} +{"qid": "test1030", "pid": "3016812", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"Kanawha River\"\nfrom \"\"Conoys\"\" to \"\"Conois\"\" to \"\"Kanawha\"\". The latter spelling was used and has gained acceptance over time. Kanawha River The Kanawha River ( ) is a tributary of the Ohio River, approximately 97 mi (156 km) long, in the U.S. state of West Virginia. The largest inland waterway in West Virginia, it has formed a significant industrial region of the state since early in the 19th century. It is formed at the town of Gauley Bridge in northwestern Fayette County, approximately 35 mi (56 km) SE of Charleston, by the confluence of the New and Gauley rivers. It flows generally"} +{"qid": "test1030", "pid": "5902407", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha", "passage": "\"West Virginia's 2nd congressional district\"\nBerkeley, Braxton, Calhoun, Clay, Glimer, Hampshire, Hardy, Jackson, Jefferson, Kanawha, Lewis, Mason, Morgan, Nicholas, Pendleton, Putnam, Randolph, Roane, Upshur, and Wirt counties. In 2002, Gilmer and Nicholas were removed and for the election cycle beginning in 2012, Mason was removed. West Virginia's 2nd congressional district West Virginia's 2nd congressional district stretches from the Ohio River border with Ohio to the Potomac River border with Maryland and the border with Virginia. It includes the capital city of Charleston and the rapidly growing residential communities of West Virginia's Eastern Panhandle and Potomac Highlands regions connected by a narrow strip of nearly unpopulated"} +{"qid": "test1030", "pid": "4647680", "query": "what river flows through charleston west virginia’s capital", "answer": "Kanawha River", "passage": "\"James River and Kanawha Canal\"\nthe James River and Kanawha Turnpike to provide passage through the most rugged portions of the mountains. The goal was to reach the Kanawha River at its head of navigation, about east of today's Charleston, West Virginia. The portage necessary made competition with railroads along the same route a real threat. Construction of a planned railroad there was delayed by the American Civil War. However, both war damage and interruption in the flow of commerce along the canal did great harm to it. Railroads began to emerge as a more efficient form of transportation in the 1830s, midway in the"} +{"qid": "test1031", "pid": "15128272", "query": "where did chocolate originate the americas spain asia", "answer": "Mesoamerica", "passage": "\"History of chocolate in Spain\"\nspread of cocoa. The marriage of Spanish noblewomen to French royalty and the Jesuits providing chocolate recipes in various countries, such as Italy. Demand for cocoa significantly increased in the mid-16th century and the product flowed into Spanish seaports from where it spread to the rest of Europe. History of chocolate in Spain The history of chocolate in Spain is part of the culinary history of Spain as understood since the 16th century, when the colonization of the Americas began and the cocoa plant was discovered in regions of Mesoamerica, until the present. After the conquest of Mexico, cocoa as"} +{"qid": "test1031", "pid": "742299", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "\"New Spain\"\nNew Spain The Viceroyalty of New Spain ( ) was an integral territorial entity of the Spanish Empire, established by Habsburg Spain during the Spanish colonization of the Americas. It covered a huge area that included territories in North America, Central America, Asia and Oceania. It originated in 1521 after the fall of Mexico-Tenochtitlan, the main event of the Spanish conquest, which did not properly end until much later, as its territory continued to grow to the north. It was officially created on 8 March 1535 as a viceroyalty (Spanish: \"\"virreinato\"\"), the first of four viceroyalties Spain created in the"} +{"qid": "test1031", "pid": "15128246", "query": "where did chocolate originate the americas spain asia", "answer": "Mesoamerica", "passage": "\"History of chocolate in Spain\"\nIn modern Spain, traces of the history of the drink can be seen in the chocolate companies, the chocolate shops and museums. The [Mesoamerican] origin of the cacao tree (to which Linnaeus gave the scientific name Theobroma cacao in 1753) is disputed by modern botanical historians since there are different hypotheses about the region from which it comes. Thus, some theories point to the Amazon region; however, it is estimated that the plant also grew in the wild in other parts of Americas, including the plains of the Orinoco Basin. It is very likely that the Olmecs knew the cacao"} +{"qid": "test1031", "pid": "10960028", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "\"Trade and use of saffron\"\nflourished in European locations extending from Asia Minor, where it originated, to Saffron Walden in England, where it was naturalised. Only subsequently, when its labour-intensive cultivation became largely centred in Kashmir, did it seem sufficiently exotic to qualify as one of the most precious of spices.\"\"Saffron crocus cultivation has long centered on a broad belt of Eurasia bounded by the Mediterranean Sea in the southwest to India and China in the northeast. The major producers of antiquity—Iran, Spain, India, and Greece—continue to dominate the world trade. The cultivation of saffron in the Americas was begun by members of the Schwenkfelder"} +{"qid": "test1031", "pid": "369914", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "\"Spanish cuisine\"\na signal of piety. The arrival of Europeans in America, in 1492, initiated the advent of new culinary elements, such as tomatoes, potatoes, corn, bell peppers, spicy peppers, paprika, vanilla and cocoa or chocolate. Spain is where chocolate was first mixed with sugar to remove its natural bitterness. Other ingredients traveled to the Americas, such as rice, grapes, olives and many types of cereals. Many traditional Spanish dishes such as tortilla de patata (an omelette made with potatoes), would not be possible without the discovery of America. Gazpacho, salmorejo, and pan tumaca are made with tomatoes, which traveled from America"} +{"qid": "test1031", "pid": "15128242", "query": "where did chocolate originate the americas spain asia", "answer": "Mesoamerica", "passage": "\"History of chocolate in Spain\"\nHistory of chocolate in Spain The history of chocolate in Spain is part of the culinary history of Spain as understood since the 16th century, when the colonization of the Americas began and the cocoa plant was discovered in regions of Mesoamerica, until the present. After the conquest of Mexico, cocoa as a commodity travelled by boat from the port of Nueva España to the Spanish coast. The first such voyage to Europe occurred at an unknown date in the 1520s. However it was only in the 17th century that regular trade began from the port of Veracruz, opening a"} +{"qid": "test1031", "pid": "407889", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "Americas\nAccording to historians Kären Wigen and Martin W. Lewis, This shift did not seem to happen in Romance-speaking countries (including France, Italy, Portugal, Spain, Romania, and the Romance-speaking countries of Latin America and Africa), where America is still considered a continent encompassing the North America and South America subcontinents, as well as Central America. The first inhabitants migrated into the Americas from Asia. Habitation sites are known in Alaska and the Yukon from at least 20,000 years ago, with suggested ages of up to 40,000 years. Beyond that, the specifics of the Paleo-Indian migration to and throughout the Americas, including"} +{"qid": "test1031", "pid": "1488854", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "\"Naming of the Americas\"\ndid not reach Spain until a few years after his death. Ringmann may have been misled into crediting Vespucci by the widely published Soderini Letter, a sensationalized version of one of Vespucci's actual letters reporting on the mapping of the South American coast, which glamorized his discoveries and implied that he had recognized that South America was a continent separate from Asia; in fact, it is not known what Vespucci believed on this count, and he may have died believing, like Columbus, that he had reached the East Indies in Asia rather than a new continent. Spain officially refused to"} +{"qid": "test1031", "pid": "15128270", "query": "where did chocolate originate the americas spain asia", "answer": "Americas", "passage": "\"History of chocolate in Spain\"\nin church as well. This whim upset the bishops, who published a circular in 1861 banning chocolate consumption in churches during long sermons. \"\"Chocolatadas\"\", held at the end of religious services, became popular . By the early seventeenth century drinking chocolate began to be popular in Spain, and was first accepted by the upper classes. It gradually expanded in two directions: geographic and social. Other foods from The Americas were not so accepted in Spanish society of the time as cocoa. The remaining foodstuffs were relegated to botanical study situations, or incorporated in some new culinary preparations on exceptional occasions"} +{"qid": "test1031", "pid": "14706013", "query": "where did chocolate originate the americas spain asia", "answer": "Mesoamerica", "passage": "\"Mexican immigration to Spain\"\nuntil 2016. As for concerning Spanish cuisine, the influence of Hispanic flavors in the kitchen is very marked in the rest of Hispanic America and the Philippines. The Spanish kitchen also was enriched with Mexican products such as tomatoes, corn, avocado, vanilla and fine chocolate, which was Mesoamerican origin. Ranchera and mariachi music are well appreciated and disseminated within the Spanish society. There are important interpreters of music that express the different rhythms and lyrics of Mexican singer-songwriters or composers. Rocío Dúrcal and Chavela Vargas are icons that have been well identified with the ranchera genres. Mexican architecture in Spain"} +{"qid": "test1031", "pid": "6464200", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "\"Arroz con pollo\"\nbrought from India and rice from Asia; saffron (used for the yellow colour in Spain, instead of annatto) was introduced by Phoenician traders; tomatoes and peppers (also known as sofrito) are natives of the Americas. Arroz con pollo Arroz con pollo (Spanish for \"\"rice with chicken\"\") is a traditional dish of Spain and Latin America, closely related to paella. In the Dominican Republic it is alternately called locrio de pollo, and in Saint Martin it is called lokri or locreo. There is some debate as to whether it originated in Spain or Puerto Rico. Many Puerto Ricans note that arroz"} +{"qid": "test1031", "pid": "204586", "query": "where did chocolate originate the americas spain asia", "answer": "the Americas", "passage": "\"Western imperialism in Asia\"\nannihilation. The energies of Castile (later, the \"\"unified\"\" Spain), the other major colonial power of the 16th century, were largely concentrated on the Americas, not South and East Asia, but the Spanish did establish a footing in the Far East in the Philippines. After fighting with the Portuguese by the Spice Islands since 1522 and the agreement between the two powers in 1529 (in the treaty of Zaragoza), the Spanish, led by Miguel López de Legazpi, settled and conquered gradually the Philippines since 1564. After the discovery of the return voyage to the Americas by Andres de Urdaneta in 1565,"} +{"qid": "test1032", "pid": "12950801", "query": "who sings so come and dance with me jai ho", "answer": "Mahalaxmi Iyer", "passage": "\"Jai Ho (song)\"\nJai Ho (song) \"\"Jai Ho\"\" is a song composed by A. R. Rahman for the 2008 film, \"\"Slumdog Millionaire\"\". When Danny Boyle, the director of \"\"Slumdog Millionaire\"\", approached Rahman to compose its soundtrack, he included the song. \"\"Jai Ho\"\" accompanies a choreographed dance sequence at the end credits of \"\"Slumdog Millionaire\"\". The song features vocals from Sukhvinder Singh, Mahalaxmi Iyer and Vijay Prakash in Hindi, Urdu and Punjabi. Indian singer Tanvi Shah wrote and provided vocals for an English section of the song. \"\"Jai Ho\"\" is a Hindi phrase which can be roughly translated as \"\"Let [the] victory prevail\"\", \"\"Let"} +{"qid": "test1033", "pid": "879694", "query": "the elements in each period have the same number of", "answer": "electron shells", "passage": "\"Period (periodic table)\"\neighth period. Period (periodic table) A period in the periodic table is a horizontal row. All elements in a row have the same number of electron shells. Each next element in a period has one more proton and is less metallic than its predecessor. Arranged this way, groups of elements in the same column have similar chemical and physical properties, reflecting the periodic law. For example, the alkali metals lie in the first column (group 1) and share similar properties, such as high reactivity and the tendency to lose one electron to arrive at a noble-gas electronic configuration. As of"} +{"qid": "test1033", "pid": "879686", "query": "the elements in each period have the same number of", "answer": "electron shells", "passage": "\"Period (periodic table)\"\nPeriod (periodic table) A period in the periodic table is a horizontal row. All elements in a row have the same number of electron shells. Each next element in a period has one more proton and is less metallic than its predecessor. Arranged this way, groups of elements in the same column have similar chemical and physical properties, reflecting the periodic law. For example, the alkali metals lie in the first column (group 1) and share similar properties, such as high reactivity and the tendency to lose one electron to arrive at a noble-gas electronic configuration. As of 2016, a"} +{"qid": "test1033", "pid": "879687", "query": "the elements in each period have the same number of", "answer": "electron shells", "passage": "\"Period (periodic table)\"\ntotal of 118 elements have been discovered and confirmed. Modern quantum mechanics explains these periodic trends in properties in terms of electron shells. As atomic number increases, shells fill with electrons in approximately the order shown at right. The filling of each shell corresponds to a row in the table. In the s-block and p-block of the periodic table, elements within the same period generally do not exhibit trends and similarities in properties (vertical trends down groups are more significant). However, in the d-block, trends across periods become significant, and in the f-block elements show a high degree of similarity"} +{"qid": "test1033", "pid": "879595", "query": "the elements in each period have the same number of", "answer": "electron shells", "passage": "\"Group (periodic table)\"\nGroup (periodic table) In chemistry, a group (also known as a family) is a column of elements in the periodic table of the chemical elements. There are 18 numbered groups in the periodic table, and the f-block columns (between groups 3 and 4) are not numbered. The elements in a group have similar physical or chemical characteristics of the outermost electron shells of their atoms (i.e., the same core charge), as most chemical properties are dominated by the orbital location of the outermost electron. There are three systems of group numbering. The modern numbering \"\"group 1\"\" to \"\"group 18\"\" is"} +{"qid": "test1034", "pid": "13661867", "query": "bible verse taking the lord's name in vain", "answer": "Exodus 20:7", "passage": "\"Thou shalt not take the name of the Lord thy God in vain\"\nThou shalt not take the name of the Lord thy God in vain \"\"Thou shalt not take the name of the Lord thy God in vain\"\" (KJV; also \"\"You shall not make wrongful use of the name of the Lord your God\"\" (NRSV) and variants) is the fourth of God's Ten Commandments to man. It is a prohibition of blasphemy, specifically, the misuse or \"\"taking in vain\"\" of the name of the God of Israel, or using His name to commit evil. Exodus 20:7 reads: Based on this commandment, Second Temple Judaism by the Hellenistic period developed a taboo of"} +{"qid": "test1034", "pid": "13661891", "query": "bible verse taking the lord's name in vain", "answer": "Exodus 20:7", "passage": "\"Thou shalt not take the name of the Lord thy God in vain\"\nsurvives in our courts of law.\"\" Thou shalt not take the name of the Lord thy God in vain \"\"Thou shalt not take the name of the Lord thy God in vain\"\" (KJV; also \"\"You shall not make wrongful use of the name of the Lord your God\"\" (NRSV) and variants) is the fourth of God's Ten Commandments to man. It is a prohibition of blasphemy, specifically, the misuse or \"\"taking in vain\"\" of the name of the God of Israel, or using His name to commit evil. Exodus 20:7 reads: Based on this commandment, Second Temple Judaism by the"} +{"qid": "test1035", "pid": "10711652", "query": "who plays faith on when calls the heart", "answer": "Andrea Brooks", "passage": "\"Niall Matter\"\nFamily Reunion\"\" in December 2016, where it was confirmed he would join the cast of the Hallmark Channel series \"\"When Calls the Heart\"\" for its fourth season, which began airing in January 2017. First appearing in the episode \"\"The Heart of the Community\"\", he portrayed Shane Cantrell, a single father struggling to connect with his son, who later begins a tentative relationship with Faith Carter (Andrea Brooks). 2017 saw Matter make guest appearances in two CW dramas. In May he appeared in the season three episode of \"\"iZombie\"\", \"\"Some Like it Hot Mess\"\", playing the role of nightclub owner Sage"} +{"qid": "test1035", "pid": "19500803", "query": "who plays faith on when calls the heart", "answer": "Andrea Brooks", "passage": "\"Andrea Brooks\"\nfilm \"\"A Wish for Christmas\"\" directed by Christie Will, whom Brooks had previously worked with in the 2006 short film \"\"Dysfunction\"\". Brooks played the lead role of Mary Hamilton in the Hallmark original television film \"\"Destination Wedding\"\", opposite Rafael Simon, which was broadcast in June 2017 as part of the channel's June Weddings series. Andrea Brooks Andrea Brooks (born March 3, 1989) is a Canadian actress best known for the roles of Faith Carter on the Hallmark series \"\"When Calls the Heart\"\" and Eve Teschmacher in The CW series \"\"Supergirl\"\". Born in Brantford, Ontario, Brooks trained in figure skating, dancing"} +{"qid": "test1036", "pid": "12167092", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Ellen DeGeneres\"\nBurnett, Steve Martin, and Bob Newhart. \"\"Forbes\"\" estimated DeGeneres' 2018 earnings at US$87.5 million, making her the 15th highest-paid entertainer in the world. In 2015, she was named the 50th most powerful woman in the world by \"\"Forbes\"\" and number two on the World Pride Power list. As of August 2, 2018, DeGeneres has more than 76 million followers on Twitter and 55.8 million followers on Instagram, making her the seventh most followed user on Twitter and the 28th most followed user on Instagram. She is a fan of the National Football League and has shown particular support for the"} +{"qid": "test1036", "pid": "16443892", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Kevin Systrom\"\nKevin Systrom Kevin York Systrom (born December 30, 1983) is an American programmer and entrepreneur. He created Instagram, the world's largest photo sharing website. He co‑founded Instagram along with Mike Krieger. Instagram is ranked world's 14th most visited site by Alexa rankings. He was keen programmer and loved photography. Under Systrom as CEO, Instagram has become a fast growing app, with 800 million monthly users as of September 2017. Systrom resigned as CEO of Instagram on September 24, 2018. Systrom was born in 1983 in Holliston, Massachusetts. He is the son of Diane (Pels), a marketing executive at Zipcar, who"} +{"qid": "test1036", "pid": "15024802", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Laura Brown (fashion journalist)\"\nof InStyle. As of January 2018, Brown has 180,000 Instagram followers and more than 43,000 Twitter followers. Of Instagram, Brown has said, \"\"It is the way to present yourself to the world. It is the magazine of your life.\"\" If Instagram is the magazine of one's life, then Brown's demonstrates that she is proud of her Australian heritage: her Instagram feed is full of images of Australian animals such as koalas and kangaroos, and she supports Australian labels such as Zimmermann by often wearing their clothes. Brown is friends with many celebrities, including fellow Australians Naomi Watts, Rose Byrne and"} +{"qid": "test1036", "pid": "6927293", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Celebrity branding\"\nare deciding to attempt to reach the largest assortment of potential consumers possible, rather than reaching a small number of consumers but more frequently – which is described as frequency (Belch & Belch, 2012). An example of the usefulness of a celebrity's reach can be shown in statistics taken from telegraph.co.uk regarding the world's most followed Instagram celebrities. The most followed Instagram celebrity is Selena Gomez, with each post that she makes being viewed by all or most of her 145 million followers. Cristiano Ronaldo is 2nd, with 144 million followers, and Ariana Grande is 3rd with 116 million followers."} +{"qid": "test1036", "pid": "592780", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Model (person)\"\n16 per cent using Facebook. Some Instagram models have gained high-profile modelling jobs and become celebrities. Fitness model Jen Selter had become an Internet celebrity by 2014 with nearly 2 million Instagram followers, gaining professional sports management work and modelling for \"\"Vanity Fair\"\" magazine. Cosplayer and model Anna Faith had acquired over 250,000 Instagram followers by 2014, gaining success from her ability to impersonate the Disney character Elsa. With Facebook's continuing decrease in post reach, Instagram has increasingly become the favorite platform for cosplayers. American actress Caitlin O'Connor had almost 300,000 Instagram followers in 2016, earning most of her social"} +{"qid": "test1036", "pid": "3048851", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Cristiano Ronaldo\"\nin 2013, with Brazilian footballer Neymar topping both lists. Sports market research company Repucom named Ronaldo the most marketable and most recognised football player in the world in May 2014. He was additionally named in the 2014 Time 100, \"\"Time\"\"s annual list of the most influential people in the world. ESPN named Ronaldo the world's most famous athlete in 2016, 2017 and 2018. Ronaldo has established a strong online presence; the most popular sportsperson on social media, he counted 158 million total followers across Facebook, Twitter and Instagram by June 2015. , he has the world's biggest Facebook fanbase with"} +{"qid": "test1036", "pid": "16443905", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Kevin Systrom\"\n2016, Systrom met with Pope Francis at the Vatican, where they discussed the power of images in uniting people \"\"across borders, cultures and generations\"\". Kevin Systrom Kevin York Systrom (born December 30, 1983) is an American programmer and entrepreneur. He created Instagram, the world's largest photo sharing website. He co‑founded Instagram along with Mike Krieger. Instagram is ranked world's 14th most visited site by Alexa rankings. He was keen programmer and loved photography. Under Systrom as CEO, Instagram has become a fast growing app, with 800 million monthly users as of September 2017. Systrom resigned as CEO of Instagram on"} +{"qid": "test1036", "pid": "15558170", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "Instagram\nThe change received \"\"widespread outcry\"\" following Instagram's March announcement, but Instagram stated that the feature would help users discover lost posts, writing that \"\"You may be surprised to learn that people miss on average 70 percent of their feeds. As Instagram has grown, it's become harder to keep up with all the photos and videos people share. This means you often don't see the posts you might care about the most. To improve your experience, your feed will soon be ordered to show the moments we believe you will care about the most.\"\" On May 11, 2016, Instagram revamped its"} +{"qid": "test1036", "pid": "19348457", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"The Shade Room\"\nUnlike most web-based celebrity gossip coverage, Nwandu avoided the typical blog format in favor of publishing full-length stories on Instagram, providing a platform appealing to advertisers. Nwando found Instagram suited to her vision for The Shade Room due to its image-based format. After getting established in the Instagram format, the site was then expanded to include community news, trending news, and user interaction. The Shade Room refers to readers as \"\"roommates\"\", who often provide leads on celebrities to The Shade Room personnel. By the end of 2015, the site was reported to have 2.6 million followers, although the company has"} +{"qid": "test1036", "pid": "17650939", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Manny the Frenchie\"\nFacebook and more than 900,000 followers on Instagram. He has been used as a canine model for consumer Martha Stewart's PetSmart line and has been featured on Steve Harvey's television talk show. In 2016 Manny was awarded The CW's World Dog Award for Most Pawpular and Influential dog. Manny the Frenchie Manny the Frenchie (born February 7, 2011) is a French Bulldog from Chicago, Illinois, that achieved Internet celebrity via the posting of his photographs on various social media websites. He is currently the world's most followed and popular Bulldog on the Internet. Between his channels and the Manny and"} +{"qid": "test1036", "pid": "14769980", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Social media in the fashion industry\"\nfashion brand Tommy Hilfiger has incorporated social media into their marketing strategy effectively. They have understood the power that it has and the influence on consumers. By having someone who is well known and admired the brand received positive attention. Gigi Hadid is one of the most popular super models of 2016, with the Instagram following of 15.5 million people. She has modelled for the cover of Vogue, W, Harpers Bazaar, Elle, TeenVogue, Numéro, Schön! And CR Fashion Book, along with appearing in music videos and television programs around the world. (PVH, C. 2012). Tommy Hilfiger has cast Gigi as"} +{"qid": "test1036", "pid": "11460841", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "Neymar\nMarch 2015, Neymar had the fourth highest social media rank in the world among sportspeople, behind Cristiano Ronaldo, Lionel Messi and David Beckham, with 52 million Facebook fans. He has over 100 million Instagram followers, the second highest for a sportsperson (after Cristiano Ronaldo), and inside the top 10 most followed people. In ESPN's list of active sportspeople in 2016, Neymar was ranked the fourth most famous athlete in the world. To mark the World Cup commencing in Brazil, in June 2014, Neymar appeared with supermodel Gisele Bündchen on the front cover of \"\"Vogue\"\"'s Brazilian edition. In November 2014, Neymar"} +{"qid": "test1036", "pid": "6927335", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Celebrity branding\"\ndemographic. According to the Telegraph (2015), the ten most popular Instagram accounts are all celebrities who all have around 30 million followers. By partnering with one of these celebrities, businesses are already reaching an engaged and targeted audience of 30 million people. Many of America's top-earning celebrities Instagram accounts are continually promoting products such as health supplements, vitamins and detox teas. These aren't spontaneous proclamations, but rather posts paid for by brands to advertise products to the celebrities' sizable following. On Instagram alone a profile with three-to-seven million followers can charge as much as $75,000 per endorsement, even a profile"} +{"qid": "test1036", "pid": "15558218", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "Instagram\npasswords for some users who had used the \"\"Download Your Data\"\" feature were included in the URL and also stored on Facebook's servers due to a security bug that was discovered by the Instagram internal team. Censorship of Instagram has occurred in several different countries. Instagram has been blocked by China following the 2014 Hong Kong protests because a lot of videos and photos are posted. Hong Kong and Macau were not affected as they are special administrative regions of China. Turkey is also known for its strict Internet censorship and periodically blocks social media including Instagram. A few days"} +{"qid": "test1036", "pid": "20818597", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Sondos Alqattan\"\nSondos Alqattan Sondos Alqattan is a Kuwaiti beauty blogger and Instagram user who shot to international prominence after posting a video critical of a Kuwaiti government move to provide better protection and working conditions for migrant domestic workers. With some 2.4 million followers on Instagram, Alqattan was a popular 'social media influencer' in the Arab world and used by a number of beauty brands to promote their products. Although a number of brands were fast to desert her, since media coverage and online attention about the controversy has died down, her popularity has bounced back and she is once again"} +{"qid": "test1036", "pid": "18100729", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Ghost followers\"\nGhost followers Ghost followers, also referred to as ghosts and ghost accounts or lurkers, are users on social media platforms who remain inactive or do not engage in activity. They register on platforms such as Twitter and Instagram. These users follow active members, but do not partake in liking, commenting, messaging, and posting. These accounts may be created by people or by social bots. Many ghost followers are accounts created by scammers who create fictional profiles and use them to target and scam others. Commercial services provide the ability to buy Instagram followers, most of which are ghosts. These individuals"} +{"qid": "test1036", "pid": "15558196", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "Instagram\nsong, and over 1,200 different photographs were submitted. Instagram was listed among \"\"Time\"\"s \"\"50 Best Android Applications for 2013\"\" list. Instagram's users are divided equally with 50% iPhone owners and 50% Android owners. While Instagram has a neutral gender-bias format, 68% of Instagram users are female while 32% are male. Instagram's geographical use is shown to favor urban areas as 17% of US adults who live in urban areas use Instagram while only 11% of adults in suburban and rural areas do so. While Instagram may appear to be one of the most widely used sites for photo sharing, only"} +{"qid": "test1036", "pid": "3596344", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Association football culture\"\nmost followed person. Cristiano, Messi and Neymar are the three most followed sportspeople on Instagram, and all 3 in the top 12 most followed people. Many other players have also become celebrities and are treated as heroes by the fans. Retired players, such as Gary Lineker, have become celebrities in their own right by working on television or radio. Even non-footballers who are connected to football have become famous through their association alone. For instance, after the 2002 World Cup, the head of the Korea Football Association decided to run for president of South Korea. In football, a goal celebration"} +{"qid": "test1036", "pid": "20433802", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Huda Kattan\"\nwere famously worn by Kim Kardashian. Kattan's company, which is based out of Dubai, later began to offer other beauty products, including eye shadow palettes, liquid lipsticks, lip liners, highlighter palettes, foundation, false nails and concealers. Kattan achieved popularity on Instagram, attaining more than 20 million followers as of 2017. Kattan is ranked #1 on the \"\"2017 Influencer Instagram Rich List\"\", earning $18,000 for each post of sponsored content. Kattan has been described as \"\"a Kim Kardashian West of the beauty influencer economy\"\", and was declared one of the \"\"ten most powerful influencers in the world of beauty\"\" by \"\"Forbes\"\""} +{"qid": "test1036", "pid": "19471995", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Violet Benson\"\nbefore becoming known as Daddy Issues. Benson started her Daddy Issues Instagram account on July 5, 2014. Benson has earned over 3 million followers on Instagram and is known as one of the fastest growing accounts and one of the largest funny female accounts that even MTV took notice. Though best known for Instagram, Benson runs several other social media platforms which include a Daddyissues__ Twitter account, a DaddyissuesLA snapchat account, and a secondary instagram account under her own name. Benson has stated that she turns down most requests to upload sponsored posts since it is important for her to"} +{"qid": "test1036", "pid": "20654077", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Alexandra Mary Hirschi\"\nAlexandra Mary Hirschi Alex Hirschi (born September 21, 1985), known as Supercar Blondie is an Australian social media celebrity, presenter, and vlogger. She is best known for her automotive videos, that she posts on regular basis on Facebook, Instagram and YouTube. Her Facebook page, has more than 900 million views with over 4.6 million subscribers and her Instagram over 1.8 million followers. According to Socialbakers her Facebook page is globally the fastest growing Auto page in 2018. In March 2018, Arabian Business listed her as one of the 50 Most Influential Women In The Arab World and Esquire Magazine Middle"} +{"qid": "test1036", "pid": "592777", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Model (person)\"\nmotives dominate over aesthetics in illustration, its artwork commonly employs models. Models are most frequently employed for art classes or by informal groups of experienced artists that gather to share the expense of a model. Instagram models have become popular due to the widespread use of social media. They are models who gain their success as a result of the large number of followers they have on Instagram and other social media. They should not be confused with established models such as Cara Delevingne and Gigi Hadid, who use Instagram to promote their traditional modelling careers, although some models, such"} +{"qid": "test1036", "pid": "10253254", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Surf Girl\"\nSurf Girl SurfGirl Magazine is the worlds most widely read surf and beach lifestyle publication for women. It was the first independent magazine for Women's surfing in the UK. but is now distributed through the USA, Australia, Portugal, South Africa, Germany and France. It has a large international social media following @surfgirlmag on Instagram, Facebook, Pintererst and a website \"\"SurfGirl\"\" was founded in 2002. The magazine targets women of all ages and abilities who are into surfing and surf culture. It features news, travel articles, interviews with professional surfers and UK riders, surfing tips, beauty and health advice, and articles"} +{"qid": "test1036", "pid": "14058638", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Ariana Grande\"\ntotal of more than twelve billion times, her Instagram account had accumulated more than 130 million followers, ranking her as the 3rd most followed person on Instagram, her Twitter account had more than 55 million followers, making it the 12th most followed Twitter account, and her Facebook page had more than 30 million likes. At the age of ten, Grande co-founded the South Florida youth singing group Kids Who Care, which performed for charitable fund-raising events and raised over $500,000 for charities in 2007 alone. In 2009, as a member of the charitable organization Broadway in South Africa, Grande, along"} +{"qid": "test1036", "pid": "19416680", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Dylan Dauzat\"\nfilms as an actor, producer, and associate producer. In 2017, he began his working relationship with Disney, first appearing in the television series 'Hyperlinked'. As of June 2018, his YouTube channel has over 700,000 subscribers with more than 37.4 million views. He currently has over 1.3 million followers on Instagram, more than 734,000 followers on Twitter, and over 275,000 followers on Facebook. In all, he has over 5.5 million followers around the world and across all major social media platforms. He holds the distinction of being ranked #21 Most Famous Viner. He has maintained an audience of over 1.6 million"} +{"qid": "test1036", "pid": "19052134", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"FaZe Clan\"\n\"\"FaZe 2.0\"\" by FaZe members and fans. The FaZe \"\"CS:GO\"\" team went on to become one of the most successful rosters for the 2017/2018 seasons. FaZe Clan is the most popular esports organization in the world, based on the organization's social media following. As of November 28, 2018, FaZe Clan and its members together have 82 million YouTube subscribers, 11.2 billion YouTube views, 11.3 million Twitch followers, 130 million Twitch views, 43.1 million Twitter followers, 45.8 million Instagram followers, 2.8 million Facebook likes and followers. FaZe Clan has made $6,148,290.91 from esport tournament prize pools alone. FaZe Clan started on"} +{"qid": "test1036", "pid": "3278400", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Zlatan Ibrahimović\"\ntattooed names of 50 people suffering from hunger around the world, in a gesture to raise awareness for famine in accordance with the United Nations World Food Programme. Active on social media, Zlatan has over 35 million Instagram followers, the most for a person from Sweden. Independent Swedish film production company Auto Images released the sports documentary \"\"Becoming Zlatan\"\" in February 2016 which follows Ibrahimović through his formative years with Malmö FF and Ajax all the way to his breakthrough with Juventus in 2005. The film has been featured at several film festivals including the International Documentary Film Festival Amsterdam,"} +{"qid": "test1036", "pid": "20772362", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Daryl Aiden Yow\"\nDaryl Aiden Yow Daryl Aiden Yow is a Singapore-based Instagram influencer and photographer who has worked with brands such as Sony, Oppo and Uniqlo. Yow became known on social media as style influencer Andrea Chong's Instagram photographer since 2015. He has accrued more than 100,000 followers on Instagram as of June 2018. =Plagiarism scandal= Yow gained widespread media attention in June 2018 after some of the images on his Instagram account and personal website were discovered to be edited or composited photos made from stock images, or from images found on sites such as Pinterest and Reddit. Acting on a"} +{"qid": "test1036", "pid": "19077551", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Bisa Kdei\"\n574,000 followers as well as his Instagram account were hacked on October 29, 2015. Bisa posted on Twitter confirming the hack and that his media team was working to get it resolved. The hackers posted several sexually suggestive videos and pictures on his page. His Instagram account was shut down and a new account was created. He is back on Facebook, on Bisa Kdei World |url=http://facebook.com/bisakdeiworld| and Instagram as Bisa Kdei |url=http://instagram.com/bisakdei/ Bisa Kdei has come a long way as far as music is concerned and ever since he came into the mainstream, he has been able to touch hearts"} +{"qid": "test1036", "pid": "19842706", "query": "who has most followers on instagram in world", "answer": "Instagram", "passage": "\"Elçin Sangu\"\nD. At the same year in August, Sangu together Baruş Ardıç were cast in the movie \"\"Mutluluk Zamanı\"\" (previously titled \"\"Yanımda Kal\"\" and \"\"Gitme Sen!\"\"). Sangu has a long-time relationship with Yunus Özdiken, who holds a job at a private firm outside the world of arts and entertainment. As of September 2016, she is the most followed Turkish actress on Instagram. Elçin Sangu Elçin Sangu (born 13 August 1985) is a Turkish actress and model, best known for her leading role Defne in the Star TV romantic comedy series \"\"Kiralık Aşk\"\" from June 2015 until its finale in January 2017."} +{"qid": "test1038", "pid": "18501585", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia Capital Municipality\"\nSofia Capital Municipality Sofia Capital Municipality (, \"\"Stolichna obshtina\"\" (also transcribed as \"\"Stolična obština\"\"), \"\"Capital Municipality\"\") is a obshtina (\"\"municipality\"\") in Sofia City Province, Western Bulgaria. It is named after its administrative centre - the city of Sofia, which is also the capital of Sofia City Province and Sofia Province and the capital of Bulgaria as well. The municipality is located mainly in the Sofia field, and also in the foots and lower parts of the mountains of Stara planina and Vitosha, Plana, Lozen, Rila. It is home to 1,442,927 inhabitants from which 1.26 million live in Sofia (as of"} +{"qid": "test1038", "pid": "18386830", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia City Province\"\nSofia City Province Sofia City Province (, \"\"Oblast Sofiya-grad\"\") is a province (\"\"oblast\"\") of Bulgaria. Its administrative center is the city of Sofia, the capital of the country. The province borders on Sofia Province and Pernik Province. It is a city-state, consisting of only 1 municipality – the Sofia Capital Municipality. Bankya, Buhovo, Novi Iskar, Sofia Balsha, Bistritsa, Busmantsi, Chepintsi, Dobroslavtsi, Dolni Bogrov, Dolni Pasarel, German, Gorni Bogrov, Ivanyane, Jeleznitsa, Jelyava, Jiten, Kazichene, Klisura, Kokalyane, Krivina, Kubratovo, Katina, Lokorsko, Lozen, Malo Buchino, Marchaevo, Mirovyane, Mramor, Negovan, Pancharevo, Plana, Podgumer, Svetovrachene, Vladaya, Voluyak, Voynegovtsi, Yana Population (2011 census): 1 291 591"} +{"qid": "test1038", "pid": "18386831", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia City Province\"\nEthnic groups (2011): Identified themselves: 1 178 131 Sofia City Province Sofia City Province (, \"\"Oblast Sofiya-grad\"\") is a province (\"\"oblast\"\") of Bulgaria. Its administrative center is the city of Sofia, the capital of the country. The province borders on Sofia Province and Pernik Province. It is a city-state, consisting of only 1 municipality – the Sofia Capital Municipality. Bankya, Buhovo, Novi Iskar, Sofia Balsha, Bistritsa, Busmantsi, Chepintsi, Dobroslavtsi, Dolni Bogrov, Dolni Pasarel, German, Gorni Bogrov, Ivanyane, Jeleznitsa, Jelyava, Jiten, Kazichene, Klisura, Kokalyane, Krivina, Kubratovo, Katina, Lokorsko, Lozen, Malo Buchino, Marchaevo, Mirovyane, Mramor, Negovan, Pancharevo, Plana, Podgumer, Svetovrachene, Vladaya, Voluyak,"} +{"qid": "test1038", "pid": "682194", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "Sofia\npolitical events. Under Bulgaria's centralised political system, Sofia concentrates much of the political and financial resources of the country. It is the only city in Bulgaria to host three electoral constituencies: the 23rd, 24th and 25th Multi-member Constituencies, which together field 42 mandates in the 240-member National Assembly. With a murder rate of 1.8/per 100.000 people () Sofia is a quite safe capital city. Nevertheless, in the 21st century, crimes, including Bulgarian mafia killings, caused problems in the city, where authorities had difficulties convicting the actors, which had caused the European Commission to warn the Bulgarian government that the country"} +{"qid": "test1038", "pid": "7519194", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"History of Sofia\"\nthe gravest act of terrorism in Bulgarian history, the St Nedelya Church assault, was carried out by the Bulgarian Communist Party, claiming the lives of 150 and injuring other 500. During World War II, Sofia was bombed by Allied aircraft in late 1943 and early 1944, as well as later occupied by the Soviet Union. Bulgaria's regime which allied the country with Nazi Germany was overthrown and Sofia became capital of the Communist-ruled People's Republic of Bulgaria (1946–1989). History of Sofia The history of Sofia, Bulgaria's capital and largest city, spans thousands of years from Antiquity to modern times, during"} +{"qid": "test1038", "pid": "1537429", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "Plovdiv\nmunicipal triangle of Plovdiv, including Maritsa municipality and Rodopi municipality. Population of Plovdiv: At the first census after the Liberation of Bulgaria in 1880 with 24,053 citizens, Plovdiv is the second largest city behind Ruse, which had 26,163 citizens then, and ahead of the capital Sofia, which had 20,501 citizens then. As of the 1887 census, Plovdiv was the largest city in the country for several years with 33,032 inhabitants compared to 30,428 for Sofia. According to the 1946 census, Plovdiv was the second largest city with 126,563 inhabitants compared to 487,000 for the capital. In its ethnic character Plovdiv"} +{"qid": "test1038", "pid": "18501586", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia Capital Municipality\"\n2016). Sofia Capital Municipality includes the following 38 places (cities are shown in bold): Balsha, Bankya, Bistritsa, Buhovo, Busmantsi, Chepintsi, Dobroslavtsi, Dolni Bogrov, Dolni Pasarel, German, Gorni Bogrov, Ivanyane, Jeleznitsa, Jelyava, Jiten, Kazichene, Klisura, Kokalyane, Krivina, Kubratovo, Katina, Lokorsko, Lozen, Malo Buchino, Marchaevo, Mirovyane, Mramor, Negovan, Novi Iskar, Pancharevo, Plana, Podgumer, Sofia, Svetovrachene, Vladaya, Voluyak, Voynegovtsi, Yana Sofia Capital Municipality Sofia Capital Municipality (, \"\"Stolichna obshtina\"\" (also transcribed as \"\"Stolična obština\"\"), \"\"Capital Municipality\"\") is a obshtina (\"\"municipality\"\") in Sofia City Province, Western Bulgaria. It is named after its administrative centre - the city of Sofia, which is also the capital"} +{"qid": "test1038", "pid": "17615298", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Football in Sofia\"\nFootball in Sofia Football is the most popular sport in Sofia, the capital of Bulgaria. Sofia was the first city in the country to have an organized football championship, which was created in 1921. Teams from Sofia have been crowned national champions on 70 occasions in the 90 seasons between 1924 and 2013. As of the late 20th and early 21st centuries, there are four teams from Sofia which have been constant participants in the top national division – Levski, CSKA, Slavia and Lokomotiv. All four have managed to reach the latter stages of European competitions on several occasions, the"} +{"qid": "test1038", "pid": "16083666", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Districts of Sofia\"\nSofia is Yordanka Fandakova. Districts of Sofia Sofia is the capital and largest city of Bulgaria. Politically, administratively and economically, Bulgaria is a highly centralised state. Sofia Municipality is the only municipality in Sofia City Province, which is distinct from Sofia Province, which surrounds but does not include the capital itself. Besides the city proper, the 24 districts of Sofia Municipality encompass three other towns and 34 villages. Each of them has its own district mayor who is elected in a popular election. The head of the Sofia Municipality is its mayor. The assembly members are chosen every four years."} +{"qid": "test1038", "pid": "16083665", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Districts of Sofia\"\nDistricts of Sofia Sofia is the capital and largest city of Bulgaria. Politically, administratively and economically, Bulgaria is a highly centralised state. Sofia Municipality is the only municipality in Sofia City Province, which is distinct from Sofia Province, which surrounds but does not include the capital itself. Besides the city proper, the 24 districts of Sofia Municipality encompass three other towns and 34 villages. Each of them has its own district mayor who is elected in a popular election. The head of the Sofia Municipality is its mayor. The assembly members are chosen every four years. The current mayor of"} +{"qid": "test1038", "pid": "682227", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "Sofia\nNuclear Research and Nuclear Energy will operate the largest cyclotron in the country. All five of Bulgaria's supercomputers and supercomputing clusters are located in Sofia as well. Three of those are operated by the BAS; one by Sofia Tech Park and one by the Faculty of Physics at Sofia University. Sofia is twinned with: In addition Sofia has co-operation agreements with: Serdica Peak on Livingston Island in the South Shetland Islands, Antarctica is named after Serdica. Sofia Sofia ( ; , ) is the capital and largest city of Bulgaria. The city is at the foot of Vitosha Mountain in"} +{"qid": "test1038", "pid": "17615331", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Football in Sofia\"\nbetter in the past on the European stage, however. Here is a summary of the most successful moments of Sofia teams playing in Europe, until 1989 – The only team to have reached a European quarter final in the post-1989 era is Levski, who did so during the 2005–06 UEFA Cup. Football in Sofia Football is the most popular sport in Sofia, the capital of Bulgaria. Sofia was the first city in the country to have an organized football championship, which was created in 1921. Teams from Sofia have been crowned national champions on 70 occasions in the 90 seasons"} +{"qid": "test1038", "pid": "2959261", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Provinces of Bulgaria\"\nProvinces of Bulgaria The provinces of Bulgaria ( Oblasti na Bǎlgarija) are the first level administrative subdivisions of the country. Since 1999, Bulgaria has been divided into 28 provinces ( – \"\"oblasti;\"\" singular: област – \"\"oblast\"\"; also translated as \"\"regions\"\") which correspond approximately to the 28 districts (in Bulgarian: окръг – \"\"okrags\"\", plural: окръзи – \"\"okrǎzi\"\"), that existed before 1987. The provinces are further subdivided into 265 municipalities (singular: община – \"\"obshtina\"\", plural: общини – \"\"obshtini\"\"). Sofia – the capital city of Bulgaria and the largest settlement in the country, is the administrative centre of both Sofia Province and Sofia"} +{"qid": "test1038", "pid": "13524914", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia Pride\"\nSofia Pride Sofia Pride Parade is a peaceful march of LGBT people and their relatives and friends, which combines social and political protest with entertaining elements. It takes place every year in the month of June in Bulgaria's capital Sofia since 2008. The first Sofia Pride parade was held on June 28, 2008,on the same date as the Stonewall riots in New York City that occurred in 1969. Same-sex sexual activity became legal on May 1, 1968. Between 1968 and the collapse of communism in 1989, the country was ruled by a dictator, citizens were not free and therefore no"} +{"qid": "test1038", "pid": "682155", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "Sofia\nSofia Sofia ( ; , ) is the capital and largest city of Bulgaria. The city is at the foot of Vitosha Mountain in the western part of the country. Being in the centre of the Balkan peninsula, it is midway between the Black Sea and the Adriatic Sea, and closest to the Aegean Sea. Sofia has been an area of human habitation since at least 7000 BC. The recorded history of Sofia begins with the attestation of the conquest of Serdica by the Roman Republic in 29 BC from the Celtic tribe Serdi, raided by Huns in 343-347 AD"} +{"qid": "test1038", "pid": "682214", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "Sofia\npeople are 46.8%, another 34.2% of the families are made up by three people, whereas most of the households (36.5%) consist of only one person. Sofia was declared the national capital in 1879. One year later, in 1880, it was the fifth-largest city in the country after Plovdiv, Varna, Ruse and Shumen. Plovdiv remained the most populous Bulgarian town until 1892 when Sofia took the lead. The city is the hot spot of internal migration, the capital population is increasing and is around 17% of the national, thus a small number of people with local roots remain today, they dominate"} +{"qid": "test1038", "pid": "8595461", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia Central Station\"\nSofia Central Station The Central Railway Station Sofia (, \"\"Tsentralna zhelezopatna gara Sofiya\"\") is the main passenger railway station of Sofia, the capital of Bulgaria, as well as the largest railway station of the country. It is located 1 km north of the city centre after Lavov most, on Marie Louise Boulevard in the immediate proximity of the Central Bus Station Sofia. It was completely renovated in 2015-2016. The original building of the Sofia Railway Station was opened on 1 August 1888 to serve the Tsaribrod-Sofia-Vakarel line, the first line of the Bulgarian State Railways entirely built by Bulgarian engineers."} +{"qid": "test1038", "pid": "2959262", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Provinces of Bulgaria\"\nCity Province (Sofia-grad). The capital is included (together with 3 other cities plus 34 villages) in Sofia Capital Municipality (over 90% of whose population lives in Sofia), which is the sole municipality comprising Sofia City province. The provinces do not have official names – legally (in the President's decree on their constitution), they are not named but only described as \"\"oblast with administrative centre [Noun]\"\" - together with a list of the constituting municipalities. In Bulgaria they are usually called \"\"[Adjective] Oblast\"\"; occasionally they are referred to as \"\"Oblast [Noun]\"\" and rarely as \"\"oblast with administrative centre [Noun]\"\". The Bulgarian"} +{"qid": "test1038", "pid": "1949386", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Ruse, Bulgaria\"\nRuse, Bulgaria Ruse (also transliterated as Rousse, Russe; , ) is the fifth largest city in Bulgaria. Ruse is in the northeastern part of the country, on the right bank of the Danube, opposite the Romanian city of Giurgiu, approximately south of Bucharest, Romania's capital, from the Bulgarian Black Sea Coast and from the capital Sofia. It is the most significant Bulgarian river port, serving an important part of the international trade of the country. Ruse is known for its 19th- and 20th-century Neo-Baroque and Neo-Rococo architecture, which attracts many tourists. It is often called the Little Vienna. The Ruse-Giurgiu"} +{"qid": "test1038", "pid": "1949417", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Ruse, Bulgaria\"\nRuse, Bulgaria Ruse (also transliterated as Rousse, Russe; , ) is the fifth largest city in Bulgaria. Ruse is in the northeastern part of the country, on the right bank of the Danube, opposite the Romanian city of Giurgiu, approximately south of Bucharest, Romania's capital, from the Bulgarian Black Sea Coast and from the capital Sofia. It is the most significant Bulgarian river port, serving an important part of the international trade of the country. Ruse is known for its 19th- and 20th-century Neo-Baroque and Neo-Rococo architecture, which attracts many tourists. It is often called the Little Vienna. The Ruse-Giurgiu"} +{"qid": "test1038", "pid": "12641128", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia Public Transport\"\nfollowing trolleybus lines in Sofia are in service: As of January 2017, the following bus lines in Sofia are in service: Central Bus Station Sofia Sofia Public Transport Sofia Public Transport Company operates surface transit in the city. It is overseen by the Sofia Urban Mobility Center (Capital Company for Public Transport). The company has a large fleet of 535 buses, 93 trolleybuses and 156 trams which pass throughout the city. Metropoliten is the municipality-owned company that operates the Sofia Metro with 26 trainsets on 2 lines. (Dec.2014 figures) Sofia is the only city in Bulgaria that operates the four"} +{"qid": "test1038", "pid": "12349125", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Tundzha Municipality\"\nTundzha Municipality Tundzha Municipality () is a municipality of Yambol Province, southeastern Bulgaria. The municipality has an area of 1,218.86 square kilometres, making it the second-largest by area in the country after the Capital Municipality (i.e. the city of Sofia). It covers 44 villages and has a population of 27,225 according to 2005 data. All the villages in the province are administratively equal, and the administrative centre of the municipality is located in the provincial capital of Yambol, which is not part of Tundzha municipality itself: the city is equivalent to Yambol municipality, which is an enclave within Tundzha municipality."} +{"qid": "test1038", "pid": "12641127", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Sofia Public Transport\"\nSofia Public Transport Sofia Public Transport Company operates surface transit in the city. It is overseen by the Sofia Urban Mobility Center (Capital Company for Public Transport). The company has a large fleet of 535 buses, 93 trolleybuses and 156 trams which pass throughout the city. Metropoliten is the municipality-owned company that operates the Sofia Metro with 26 trainsets on 2 lines. (Dec.2014 figures) Sofia is the only city in Bulgaria that operates the four modes of public transport. As of January 2017, the following tram lines in Sofia are in service: Sofia Central Station As of January 2017, the"} +{"qid": "test1038", "pid": "15836686", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"Trolleybuses in Sofia\"\nTrolleybuses in Sofia The Sofia trolleybus system () forms part of the public transport network of Sofia, the capital city of Bulgaria. In operation since 14 February 1941, the system presently comprises nine routes with 257 km network build, of which 193 km are currently in use. As of 2010 the average speed of the trolleybus system in Sofia is 14.4 km/h. Trolleybus transport was the last form of surface public transport to develop in Sofia, after buses and trams. The first Sofia trolleybus line opened on 14 February 1941. It was over long, and connected the city with the"} +{"qid": "test1038", "pid": "7519183", "query": "of which country is sofia the capital city", "answer": "Bulgaria", "passage": "\"History of Sofia\"\nHistory of Sofia The history of Sofia, Bulgaria's capital and largest city, spans thousands of years from Antiquity to modern times, during which the city has been a commercial, industrial, cultural and economic centre in its region and the Balkans. Sofia was originally a Thracian settlement called Serdica () or Sardica (), possibly named after the Thracian tribe Serdi that had populated it. For a short period during the 4th century BC, the city was possessed by Philip of Macedon and his son Alexander the Great. Around 29 BC, Sofia was conquered by the Romans. It became a \"\"municipium\"\", or"} +{"qid": "test1039", "pid": "2120850", "query": "who played hyde in league of extraordinary gentlemen", "answer": "Jason Flemyng", "passage": "\"Jason Flemyng\"\nTwo Smoking Barrels\"\". In the early 2000s he featured in two big-budget Hollywood films which were adaptations of Alan Moore comic books; as John Netley in 2001's \"\"From Hell\"\", with Johnny Depp, and 2003's \"\"The League of Extraordinary Gentlemen\"\", with Sean Connery, in which Flemyng played Dr. Henry Jekyll and Edward Hyde. The latter film was not a success, but Flemyng commented that: \"\"It was a bit of a nightmare... the film cost a fortune and didn't make back the money it was meant to... But I still get a huge kick out of doing films like that and \"\"From"} +{"qid": "test104", "pid": "9863809", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Healing Hands (Elton John song)\"\nHealing Hands (Elton John song) \"\"Healing Hands\"\" was the final Billboard Hot 100 hit single of the 1980s for Elton John, written by Elton John and Bernie Taupin and recorded on his million-selling 1989 album \"\"Sleeping with the Past\"\". The single was released during the late-summer of 1989, and was a top-20 hit in the US. It was paired as a double A-side single with \"\"Sacrifice\"\", which became Elton's first solo number 1 single in the UK. The song was inspired by the Four Tops song \"\"Reach Out, I'll Be There\"\". Produced by Chris Thomas, it was the first of"} +{"qid": "test104", "pid": "8529027", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Sacrifice (song)\"\nSacrifice (song) \"\"Sacrifice\"\" is a ballad performed by musician Elton John. The lyrics are by Bernie Taupin and the music by John. The song appears on the 1989 album \"\"Sleeping with the Past\"\". It was first released in October 1989, then in 1990, and was the second single from the album. It achieved success, particularly in France and the UK, where it became his first solo chart-topper, spending five weeks at the top. A country music cover of the song was performed by Don Henley and Vince Gill as part of the 2018 tribute album \"\"\"\". \"\"Sacrifice\"\" is inspired both"} +{"qid": "test104", "pid": "8529032", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Sacrifice (song)\"\nweeks. First release Second release Sacrifice (song) \"\"Sacrifice\"\" is a ballad performed by musician Elton John. The lyrics are by Bernie Taupin and the music by John. The song appears on the 1989 album \"\"Sleeping with the Past\"\". It was first released in October 1989, then in 1990, and was the second single from the album. It achieved success, particularly in France and the UK, where it became his first solo chart-topper, spending five weeks at the top. A country music cover of the song was performed by Don Henley and Vince Gill as part of the 2018 tribute album"} +{"qid": "test104", "pid": "6674109", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Sleeping with the Past\"\nSleeping with the Past Sleeping with the Past is the 22nd studio album by the English singer-songwriter Elton John, released on 29 April 1989. It is his best-selling album in Denmark (where it was recorded) and is dedicated to his longtime writing partner Bernie Taupin. The album features his first solo number-one single, \"\"Sacrifice\"\", in his home country of the UK, which helped the album also hit number one there, his first since 1974's \"\"Elton John's Greatest Hits\"\". John and Taupin meant for the songs to reflect the style of 1960s R&B icons such as Marvin Gaye, Otis Redding and"} +{"qid": "test104", "pid": "8529029", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Sacrifice (song)\"\nElton John did not tour Europe in both 1989–1990 to support the \"\"Sleeping with the Past\"\" album (with the exception of one appearance in Knebworth Park on 30 June 1990) touring only in the US and Australia. The 1989 European tour was, instead, in support of the \"\"Reg Strikes Back\"\" album, with no material representing \"\"Sleeping with the Past\"\". In all shows that were done to support \"\"Sleeping with the Past\"\" in 1989–1990, Elton played this song solo on his Roland RD-1000 Digital Piano. The video, which follows the song's lyrics, portrays a man and woman having problems in their"} +{"qid": "test104", "pid": "6674114", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Sleeping with the Past\"\nfeatures a different vocal mix and is slightly extended from the original album version (the fade out lasts about ten seconds longer). \"\"Sleeping with the Past\"\" received lukewarm reviews when the album was released in 1989. However, longtime fans of Elton John loved the album and deem it to be one of his best from the 1980s, often vying with 1983's \"\"Too Low for Zero\"\" as John's strongest album of the decade. After peaking at #6 in October 1989 on the UK Albums Chart, the re-release of \"\"Sacrifice\"\" as a double A-side with \"\"Healing Hands\"\" in June 1990, and that"} +{"qid": "test104", "pid": "6674113", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"Sleeping with the Past\"\nupper register would become few and far between. Wynonna Judd recorded a contemporary country music cover version of \"\"Stones Throw from Hurtin'\"\" which was featured in the 1992 film \"\"Leap of Faith\"\" starring Steve Martin. Sinéad O'Connor recorded a cover version of \"\"Sacrifice\"\" for the 1991 \"\"\"\" tribute album. This was John's first album since \"\"Captain Fantastic and the Brown Dirt Cowboy\"\" with John and Taupin writing every song on the album without additional writing credits from others. All tracks written by Elton John and Bernie Taupin. Side one Side two The version of \"\"Durban Deep\"\" on the 1998 remaster"} +{"qid": "test104", "pid": "8027959", "query": "what album is sacrifice by elton john on", "answer": "Sleeping with the Past", "passage": "\"The Very Best of Elton John\"\nThe Very Best of Elton John The Very Best of Elton John is a greatest hits compilation album by Elton John, released in October 1990. His first career-retrospective album, and fourth official greatest-hits album overall, it was released in the United Kingdom and throughout Europe, and in other countries such as Japan and Australia, but not in the United States, where the box set \"\"To Be Continued...\"\" was released the following month instead. The album spans his second album \"\"Elton John\"\" in 1970 to the successful then most-recent 1989 album \"\"Sleeping with the Past\"\". After the huge hit that was"} +{"qid": "test1044", "pid": "2297565", "query": "how much is a 72 oz steak at the big texan", "answer": "$72", "passage": "\"The Big Texan Steak Ranch\"\nTornado Museum resided off in a far corner of the parking lot on the property. The Big Texan is best known for its 72 ounce (4.5 pounds or 2.04 kg) steak, nicknamed \"\"The Texas King.\"\" The steak is free to anyone who, in one hour or less, can eat the entire meal, consisting of the steak itself, a bread roll with butter, a baked potato, shrimp cocktail, and a salad; otherwise, the meal costs $72. Those who have successfully consumed the Texas King meal have their names recorded and posted at the restaurant. As of February 2018, over 9,500 people"} +{"qid": "test1045", "pid": "4540905", "query": "who were the original voices of the flintstones", "answer": "Jean Vander Pyl", "passage": "\"Wilma Flintstone\"\nSlaghoople. Flintstones' writer Earl Kress explained the discrepancy as such: \"\"Unfortunately, it's just as simple as [Hanna-Barbera] not caring about the continuity.\"\" Jean Vander Pyl was the original voice artist of Wilma until her death in 1999. Since then, Tress MacNeille has taken over as Wilma's voice. In \"\"The Flintstone Kids\"\", Wilma was voiced by Julie McWhirter Dees and Elizabeth Lyn Frasier at different points. In the live-action film \"\"The Flintstones\"\", Wilma was played by Elizabeth Perkins, although Vander Pyl made a cameo at Fred's surprise party (in the conga line behind Dino). In the prequel film \"\"The Flintstones in"} +{"qid": "test1045", "pid": "11190629", "query": "who were the original voices of the flintstones", "answer": "Verna Felton", "passage": "\"Pearl Slaghoople\"\nPearl Slaghoople Pearl Slaghoople is a fictional character on the animated TV show \"\"The Flintstones\"\". She is the mother of Wilma Flintstone, who is married to Fred Flintstone. In the original series, she portrays Fred's stereotypically antagonistic mother-in-law, acting as a nagging irritant. Her appearance was similar to Wilma's, although Pearl was noticeably larger-figured, similar in build to the men of Bedrock rather than the more shapely Wilma and Betty. In the original series, she has red hair like her daughter's; in later specials and films, it's transitioned to gray. In the original series she was voiced by Verna Felton,"} +{"qid": "test1045", "pid": "9777991", "query": "who were the original voices of the flintstones", "answer": "Don Messick", "passage": "\"The Gruesomes (The Flintstones)\"\nskin and red hair shown previously on \"\"The Flintstones\"\"), and speaks with a faux-Transylvanian accent instead of a high-pitched voice. It is this version of the character that the modern-age villainous \"\"Laff-A-Lympics\"\" character Mrs. Creepley is based upon. The Gruesomes are replaced in later spin-off series by The Frankenstones, another monster-themed family who move next door to the Flintstones. In 1977, a family similar to the Gruesomes were introduced as part of the \"\"Laff-A-Lympics\"\" segment on \"\"Scooby's All-Star Laff-A-Lympics\"\". The Creepleys consist of Mr. Creepley (voiced by Don Messick), Mrs. Creepley (voiced by Laurel Page), and their son Junior Creepley"} +{"qid": "test1045", "pid": "10289950", "query": "who were the original voices of the flintstones", "answer": "John Stephenson", "passage": "\"The Flintstones: On the Rocks\"\nThe Flintstones: On the Rocks The Flintstones: On the Rocks is a 2001 American animated made-for-television film featuring characters from \"\"The Flintstones\"\" franchise. It debuted on November 3, 2001 on Cartoon Network and was directed by Chris Savino and David Smith. It was dedicated to Hoyt Curtin, longtime Hanna-Barbera conductor and composer and William Hanna, creator of \"\"The Flintstones\"\" and founder of Hanna-Barbera Productions with partner Joseph Barbera. This film marks the final time that any original voice actors (namely John Stephenson as Mr. Slate) would appear in a Flintstones project. It is the only \"\"Flintstones\"\" production to be produced"} +{"qid": "test1045", "pid": "3882661", "query": "who were the original voices of the flintstones", "answer": "Jean Vander Pyl", "passage": "\"Jean Vander Pyl\"\nvoice of Wilma Flintstone, her best-known character, in the original \"\"Flintstones\"\" series. She told an interviewer in 1995 that she received $250 per episode for making \"\"The Flintstones\"\", and in 1966, when the series ended, she rushed to accept $15,000 in lieu of residual payments from syndication. \"\"The Flintstones\"\" ran in syndication across the globe for decades. At the time, Vander Pyl lived in San Clemente, California, and remarked: \"\"If I got residuals, I wouldn't live in San Clemente. I'd \"\"own\"\" San Clemente.\"\" Most of her other voice acting work was also for the Hanna-Barbera studio, where she played her"} +{"qid": "test1045", "pid": "624831", "query": "who were the original voices of the flintstones", "answer": "Alan Reed", "passage": "\"The Flintstones\"\nFinally, the stone houses of this society are cookie-cutter homes positioned into typical neighborhoods. Over 100 other characters appeared throughout the program. Fred Flintstone physically resembles both the voice actor who played him, Alan Reed, and Jackie Gleason, whose series, \"\"The Honeymooners\"\", inspired \"\"The Flintstones\"\". The voice of Barney Rubble was provided by voice actor Mel Blanc, though five episodes during the second season (the first, second, fifth, sixth, and ninth) employed Hanna-Barbera regular Daws Butler while Blanc was incapacitated by a near-fatal car accident. Blanc was able to return to the series much sooner than expected, by virtue of"} +{"qid": "test1045", "pid": "18434495", "query": "who were the original voices of the flintstones", "answer": "John Stephenson", "passage": "\"The Flintstones & WWE: Stone Age SmackDown!\"\noriginal creators William Hanna and Joseph Barbera, who both died respectively in 2001 and 2006. The film marked the first time the character of Mr. Slate was voiced by someone other than John Stephenson who would later die of Alzheimer's disease on May 15, 2015. The film was directed by Spike Brandt and Tony Cervone. Fred Flintstone has promised his wife Wilma they will take a vacation. He wants to request days off work and money from his boss Mr. Slate who just then is hiring an indirect relative named John Cenastone. After getting into trouble, Fred is saved by"} +{"qid": "test1045", "pid": "4528452", "query": "who were the original voices of the flintstones", "answer": "Alan Reed", "passage": "\"Touché Turtle and Dum Dum\"\nTouché Turtle and Dum Dum Touché Turtle and Dum Dum is one of the segments from \"\"The New Hanna-Barbera Cartoon Series\"\", produced by Hanna-Barbera in 1962. This show was originally on \"\"The New Hanna-Barbera Cartoon Series\"\" along with \"\"Wally Gator\"\" and \"\"Lippy the Lion & Hardy Har Har\"\". It has also aired twice on the BBC in the UK during the 1970s and 1980s. Touché Turtle (voiced by Bill Thompson, best remembered as the voice of Droopy) and his sheepdog sidekick Dum Dum (voiced by Alan Reed, better known as Fred Flintstone) were a pair of heroic fencers who battle"} +{"qid": "test1045", "pid": "5349130", "query": "who were the original voices of the flintstones", "answer": "Verna Felton", "passage": "\"Verna Felton\"\nVerna Felton Verna Felton (July 20, 1890December 14, 1966) was an American actress who was best known for providing many voices in numerous Disney animated films, as well as voicing Fred Flintstone's mother-in-law Pearl Slaghoople in Hanna-Barbera's \"\"The Flintstones\"\" (1962–1963). She also had roles in live-action films; however, she was most active in radio programs. She was known for her husky voice and no-nonsense attitude. Two of her most famous roles were as Dennis Day's mother Mrs. Day on \"\"The Jack Benny Program\"\" (1939–1962) and as Hilda Crocker on the CBS sitcom \"\"December Bride\"\" (1952–1959). Felton was born in Salinas,"} +{"qid": "test1045", "pid": "5349138", "query": "who were the original voices of the flintstones", "answer": "Verna Felton", "passage": "\"Verna Felton\"\nVerna Felton Verna Felton (July 20, 1890December 14, 1966) was an American actress who was best known for providing many voices in numerous Disney animated films, as well as voicing Fred Flintstone's mother-in-law Pearl Slaghoople in Hanna-Barbera's \"\"The Flintstones\"\" (1962–1963). She also had roles in live-action films; however, she was most active in radio programs. She was known for her husky voice and no-nonsense attitude. Two of her most famous roles were as Dennis Day's mother Mrs. Day on \"\"The Jack Benny Program\"\" (1939–1962) and as Hilda Crocker on the CBS sitcom \"\"December Bride\"\" (1952–1959). Felton was born in Salinas,"} +{"qid": "test1045", "pid": "3882664", "query": "who were the original voices of the flintstones", "answer": "Alan Reed", "passage": "\"Jean Vander Pyl\"\nher \"\"Flintstones\"\" cast members Alan Reed and Mel Blanc. She went on to voice Mrs. Finkerton on \"\"Inch High, Private Eye\"\", as well as several female characters on \"\"Hong Kong Phooey\"\", \"\"The Tom and Jerry Show\"\" and \"\"Captain Caveman and the Teen Angels\"\". In the 1980s and 1990s, the talented voice actress did voices on \"\"Mister T\"\", \"\"Snorks\"\", \"\"Yogi's Treasure Hunt\"\" and also on \"\"The Flintstone Kids\"\" as Mrs. Slaghoople. She mostly reprised Wilma Flintstone on spin-off series and films such as \"\"The Flintstone Comedy Hour\"\", \"\"The New Fred and Barney Show\"\", \"\"The Flintstone Comedy Show\"\", \"\"The Jetsons Meet the"} +{"qid": "test1045", "pid": "5302571", "query": "who were the original voices of the flintstones", "answer": "Alan Reed", "passage": "\"The Man Called Flintstone\"\nThe film is a parody of the James Bond films. This film was the first feature film voice role for Betty Rubble's voice actress Gerry Johnson. Additionally, it marked the first voice work of Henry Corden, who supplied Fred's singing voice, and would go on to fully assume the role of Fred after Alan Reed's death in 1977. While the film includes numerous musical interludes, including one song performed by Louis Prima, the theme song from the show itself is not used. In the opening scene, secret agent Rock Slag, who is physically identical to Fred Flintstone, is being chased"} +{"qid": "test1045", "pid": "3882658", "query": "who were the original voices of the flintstones", "answer": "Jean Vander Pyl", "passage": "\"Jean Vander Pyl\"\nJean Vander Pyl Jean Thurston Vander Pyl (October 11, 1919 – April 10, 1999) was an American actress and voice actress. Although her career spanned many decades, she is perhaps best remembered as the voice of Wilma Flintstone for the Hanna-Barbera cartoon \"\"The Flintstones\"\". In addition to Wilma Flintstone, she also provided the voices of Pebbles Flintstone, Rosie the robot maid on the animated series \"\"The Jetsons\"\", Goldie, Lola Glamour, Nurse LaRue and other characters in \"\"Top Cat\"\", Winsome Witch on \"\"The Secret Squirrel Show\"\" and Ogee on \"\"The Magilla Gorilla Show\"\". Vander Pyl was born in Philadelphia to John"} +{"qid": "test1047", "pid": "1791279", "query": "when did korn's follow the leader come out", "answer": "August 18, 1998", "passage": "\"Follow the Leader (Korn album)\"\nFollow the Leader (Korn album) Follow the Leader is the third studio album by the American nu metal band Korn. The album was released on August 18, 1998, through Immortal/Epic. This was their first album not produced by Ross Robinson. Instead, it was produced by Steve Thompson and Toby Wright. The album peaked at number one on four charts, including the \"\"Billboard\"\" 200 with 268,000 units sold in its first week of release, \"\"Follow the Leader\"\" is considered by members of Korn to be the band's most commercially–successful album, being certified five-times Platinum by the RIAA. Its singles \"\"Got the"} +{"qid": "test1047", "pid": "1791295", "query": "when did korn's follow the leader come out", "answer": "August 18, 1998", "passage": "\"Follow the Leader (Korn album)\"\nBest Rock Video award, as well as Best Editing. All songs written by Korn except \"\"Earache My Eye\"\" written by Tommy Chong, Gaye Delorme and Richard Marin. All guest appearances feature an extra writing credit by the guest. Follow the Leader (Korn album) Follow the Leader is the third studio album by the American nu metal band Korn. The album was released on August 18, 1998, through Immortal/Epic. This was their first album not produced by Ross Robinson. Instead, it was produced by Steve Thompson and Toby Wright. The album peaked at number one on four charts, including the \"\"Billboard\"\""} +{"qid": "test1047", "pid": "1791286", "query": "when did korn's follow the leader come out", "answer": "August 18, 1998", "passage": "\"Follow the Leader (Korn album)\"\nbreakthrough, and the album that launched nu metal into the mainstream. \"\"Follow the Leader\"\" was released August 18, 1998, and was awarded multi-platinum certification for shipments in excess of five million copies, by the RIAA on March 15, 2002. In fall of 1998, Korn started the Family Values Tour. According to Arvizu, the tour name was due to \"\"so many of their friends who were like family to us played in bands\"\". The tour started on September 22, 1998, ending on October 31, 1998. The tour grossed over 6.4 million (6,400,000). Korn maintained a generally low ticket price, usually no"} +{"qid": "test1048", "pid": "11889063", "query": "who played sam in clarissa explains it all", "answer": "Sean O'Neal", "passage": "\"Sean O'Neal\"\nSean O'Neal Sean O’Neal (born November 29, 1975) is an American actor. He is best known for portraying Sam Anders in the television show \"\"Clarissa Explains It All\"\". O'Neal appeared in the popular long-running French comedy theater show, \"\"Au théâtre ce soir\"\" as Monsieur Bennett at the age of 5 long before he worked on \"\"Clarissa\"\". After \"\"Clarissa\"\", he appeared in other TV series including \"\"Development Hell\"\" and the 2016 film \"\"Penumbra\"\". O'Neal was nominated for two Young Artist Awards (at the time known as the Youth in Film Awards) for his work on \"\"Clarissa Explains It All\"\": Best Young"} +{"qid": "test1048", "pid": "11889064", "query": "who played sam in clarissa explains it all", "answer": "Sean O'Neal", "passage": "\"Sean O'Neal\"\nActor Starring in an Off-Prime Time or Cable Series in 1991 and Best Young Actor Co-Starring in a Cable Series in 1992. Sean O'Neal Sean O’Neal (born November 29, 1975) is an American actor. He is best known for portraying Sam Anders in the television show \"\"Clarissa Explains It All\"\". O'Neal appeared in the popular long-running French comedy theater show, \"\"Au théâtre ce soir\"\" as Monsieur Bennett at the age of 5 long before he worked on \"\"Clarissa\"\". After \"\"Clarissa\"\", he appeared in other TV series including \"\"Development Hell\"\" and the 2016 film \"\"Penumbra\"\". O'Neal was nominated for two Young"} +{"qid": "test1049", "pid": "2948078", "query": "when did new york stop using the electric chair", "answer": "1963", "passage": "\"Old Sparky\"\nthat it violated the state constitution. No inmates were executed during the nine years that capital punishment was reinstated in New York. Ohio was the second state to adopt the electric chair as a means of execution, executing 315 people between 1897 and its last use was in 1963. The state stopped using the electric chair in 2001, and now exclusively utilizes lethal injection in executions. Ohio's Old Sparky is now a museum exhibit in the Ohio State Reformatory. The state installed the \"\"Old Sparky\"\" in 1912 at the Central Correctional Institution (CCI) in Columbia. In 1944 it was used"} +{"qid": "test1049", "pid": "10607282", "query": "when did new york stop using the electric chair", "answer": "1963", "passage": "\"Eddie Lee Mays\"\np.m. on August 15, 1963, accompanied by a Protestant chaplain, and was strapped into the electric chair. He made no final statement to the prison Warden or other witnesses before being electrocuted, and was pronounced dead three minutes later, at 10:04 p.m. Mays would become the last person to be executed by \"\"Old Sparky\"\", New York State's electric chair at Sing Sing prison. The State Electrician was Dow Hover. The electric chair had been the sole method of execution in the State since 1890 (hanging had been abolished in 1888). In 1965, the State of New York repealed the death"} +{"qid": "test105", "pid": "324215", "query": "when did they replace lead with graphite in pencils", "answer": "never contained the element lead", "passage": "Pencil\n\"\"plumbago\"\" (Latin for \"\"lead ore\"\"). Because the pencil core is still referred to as \"\"lead\"\", or a \"\"lead\"\", many people have the misconception that the graphite in the pencil is lead, and the black core of pencils is still referred to as \"\"lead\"\", even though it never contained the element lead. The words for pencil in German (\"\"bleistift\"\"), Irish (\"\"peann luaidhe\"\"), Arabic (قلم رصاص \"\"qalam raṣāṣ\"\"), and some other languages literally mean \"\"lead pen\"\". The value of graphite would soon be realised to be enormous, mainly because it could be used to line the moulds for cannonballs; the mines were"} +{"qid": "test1053", "pid": "528522", "query": "where are the san juan mountains in new mexico", "answer": "northwestern New Mexico", "passage": "\"San Juan Mountains\"\npercent of Colorado voters. The new association consolidated the power of thirty-six mining properties in San Miguel, Ouray, and San Juan counties. The SJDMA refused to consider any reduction in hours or increase in wages, helping to provoke a bitter strike. San Juan Mountains The San Juan Mountains are a high and rugged mountain range in the Rocky Mountains in southwestern Colorado and northwestern New Mexico. The area is highly mineralized (the Colorado Mineral Belt) and figured in the gold and silver mining industry of early Colorado. Major towns, all old mining camps, include Creede, Lake City, Silverton, Ouray, and"} +{"qid": "test1053", "pid": "6402127", "query": "where are the san juan mountains in new mexico", "answer": "northwestern New Mexico", "passage": "\"Ute Mountain Ute Tribe\"\nSan Juan River and its northern tributaries and in the San Juan Mountains including eastern Utah. They moved to the Southern Ute reservation in 1897. Two thousand years ago, the Utes lived and ranged in the mountains and desert over much of the Colorado Plateau: much of present-day eastern Utah, western Colorado, northern Arizona and northwestern New Mexico. The use of lands in the Four Corners area, where the Ute Mountain Ute tribe now live, though, came later. Most anthropologists agree that Utes were established in the Four Corners area by 1500 C.E. The Ute people were hunters and gatherers"} +{"qid": "test1053", "pid": "6402138", "query": "where are the san juan mountains in new mexico", "answer": "northwestern New Mexico", "passage": "\"Ute Mountain Ute Tribe\"\nin 1940. In 1990 the tribe had 1,262 enrolled members. The Ute Mountain Ute Indian Reservation () is located in southwestern Colorado and northwestern New Mexico consisting of 553,008 acres belonging to the Ute Mountain Ute Tribe, but held in trust by the U.S. Government. The reservation is located in the counties of Montezuma and La Plata in Colorado and San Juan County, New Mexico. There are also individually owned lands at Allen Canyon and White Mesa totally 8,499 acres, and 40 acres of school property, in San Juan County, Utah. Most of the people on the reservation live in"} +{"qid": "test1053", "pid": "528517", "query": "where are the san juan mountains in new mexico", "answer": "northwestern New Mexico", "passage": "\"San Juan Mountains\"\nSan Juan Mountains The San Juan Mountains are a high and rugged mountain range in the Rocky Mountains in southwestern Colorado and northwestern New Mexico. The area is highly mineralized (the Colorado Mineral Belt) and figured in the gold and silver mining industry of early Colorado. Major towns, all old mining camps, include Creede, Lake City, Silverton, Ouray, and Telluride. Large scale mining has ended in the region, although independent prospectors still work claims throughout the range. The last large scale mines were the Sunnyside Mine near Silverton, which operated until late in the 20th century and the Idarado Mine"} +{"qid": "test1053", "pid": "9637816", "query": "where are the san juan mountains in new mexico", "answer": "northwestern New Mexico", "passage": "\"Navajo Dam\"\nNavajo Dam Navajo Dam is a dam on the San Juan River, a tributary of the Colorado River, in northwestern New Mexico in the United States. The high earthen dam is situated in the foothills of the San Juan Mountains about upstream and east of Farmington, New Mexico. It was built by the U.S. Bureau of Reclamation (Reclamation) in the 1960s to provide flood control, irrigation, domestic and industrial water supply, and storage for droughts. A small hydroelectric power plant was added in the 1980s. The dam is a major feature of the Colorado River Storage Project, which is designed"} +{"qid": "test1053", "pid": "9637834", "query": "where are the san juan mountains in new mexico", "answer": "northwestern New Mexico", "passage": "\"Navajo Dam\"\nwas built. The high flows have been observed to benefit trout, but the low flows have been estimated to result in a 34 percent reduction of trout habitat. Navajo Dam Navajo Dam is a dam on the San Juan River, a tributary of the Colorado River, in northwestern New Mexico in the United States. The high earthen dam is situated in the foothills of the San Juan Mountains about upstream and east of Farmington, New Mexico. It was built by the U.S. Bureau of Reclamation (Reclamation) in the 1960s to provide flood control, irrigation, domestic and industrial water supply, and"} +{"qid": "test1054", "pid": "12320132", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars: The Clone Wars (novel)\"\nStar Wars: The Clone Wars (novel) Star Wars: The Clone Wars, written by Karen Traviss, is the novelization of the animated movie \"\"\"\". The audio book is narrated by Jeff Gurner. It is the first in a series of five novels designed to tie into the events of the movie and the animated series. The book was released almost 3 weeks before the film was released. Because of this there are some discrepancies between the book and the film. This book, like the movie and series, is set between Star Wars: Episodes 2 and 3. The story follows the heroic"} +{"qid": "test1054", "pid": "19200626", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars: The Force Awakens (novel)\"\nStar Wars: The Force Awakens (novel) Star Wars: The Force Awakens is the novelization of the 2015 . The author, Alan Dean Foster, also wrote \"\"\"\", the 1976 novelization of the first \"\"Star Wars\"\" film. Asked to write the novelization by Shelly Shapiro of Del Rey Books, Foster was given access to the screenplay of the film, along with stills from the film of characters and sets. The novelization includes additional scenes and dialogue. These include: To avoid spoilers caused by the book being released before the movie, the hardcover release was delayed until January 5, 2016. The e-book was"} +{"qid": "test1054", "pid": "6539560", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"The Han Solo Adventures\"\nThe Han Solo Adventures The Han Solo Adventures, written by American science fiction novelist Brian Daley, is a trilogy of novels set in the \"\"Star Wars\"\" fictional universe. It follows the smuggling days of Han Solo and Chewbacca two years before the events of the original \"\"Star Wars\"\" film. The books were released in 1979–1980, making them the first non-movie \"\"Star Wars\"\" books published, except for \"\"Splinter of the Mind's Eye\"\" (1978). They were also the last published until \"\"The Adventures of Lando Calrissian\"\" trilogy in 1983. The three Han Solo books were also published as an omnibus edition in"} +{"qid": "test1054", "pid": "630920", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars (film)\"\nfranchise as an unofficial Star Wars Day. To commemorate the film's 30th anniversary in May 2007, the United States Postal Service issued a set of 15 stamps depicting the characters of the franchise. Approximately 400 mailboxes across the country were also designed to look like R2-D2. Film critic Roger Ebert wrote in his book \"\"The Great Movies\"\", \"\"Like \"\"The Birth of a Nation\"\" and \"\"Citizen Kane\"\", \"\"Star Wars\"\" was a technical watershed that influenced many of the movies that came after.\"\" It began a new generation of special effects and high-energy motion pictures. The film was one of the first"} +{"qid": "test1054", "pid": "14148910", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Harriet the Spy: Blog Wars\"\nHarriet the Spy: Blog Wars Harriet the Spy: Blog Wars is a 2010 Canadian/American television film starring Jennifer Stone that premiered on March 19, 2010 on Movie Central and The Movie Network in Canada, and on March 26, 2010, on Disney Channel in the United States. It is an adaptation of the book \"\"Harriet the Spy\"\", by Louise Fitzhugh, the second after the 1996 \"\"Harriet the Spy\"\" film that starred Michelle Trachtenberg as Harriet. The film was produced by 9 Story Entertainment. Vanessa Morgan, who starred as Marion in the movie, went on to star in \"\"My Babysitter's a Vampire\"\""} +{"qid": "test1054", "pid": "6383180", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Tom McFadden\"\nX-Files\"\". Tom authored the book \"\"Acting For Real\"\" in 2007. Tom McFadden Tom McFadden is an actor who has starred in film and on television, his first feature movie was in the 1968 movie was \"\"Hot Spurs\"\", his other films include \"\"Wrong Is Right\"\" (1982), \"\"\"\" (1985), \"\"976-EVIL\"\" (1988), and \"\"Uncle Sam\"\" (1997). He has starred on some TV movies, his best-known roles being in the 1983 mini series \"\"The Winds of War\"\", and in the 1986 TV movie \"\"The Deliberate Stranger\"\". Tom has made guest appearances on many TV shows, some of those shows range from \"\"Daniel Boone\"\", \"\"Gunsmoke\"\","} +{"qid": "test1054", "pid": "10314033", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars: The Legacy Revealed\"\nmovies. The first main subject of the special discusses the origins of films as they were written in the early 1970s, during a time of social unrest and political upheaval. When \"\"Star Wars\"\" was released it reaffirmed the notion that there is such a thing as good versus evil and evil must be defeated. The films made use of Joseph Campbell's model of the hero's journey as discussed in the book \"\"The Hero With a Thousand Faces\"\". In \"\"Star Wars\"\", two characters embark on the hero's journey, Anakin Skywalker and his son Luke. Luke starts out as a nobody much"} +{"qid": "test1054", "pid": "6453683", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"William Moseley (actor)\"\nin \"\"\"\", despite his character's absence from the book on which the film is based. In 2013, Moseley starred as Daniel Lombardio in the action thriller film \"\"Run\"\" alongside Kelsey Chow. In 2014, he starred as Anderl Gruber in the adventure drama \"\"The Silent Mountain\"\". The movie is about a young Austrian soldier in World War I who fights his way through the Alps to rescue his first love and escape the impending explosion that will rock the mountain. In 2015, he played the role of Jared in the movie \"\"Margarita with a Straw\"\". Later that year, he starred as"} +{"qid": "test1054", "pid": "1875176", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Bill & Ted's Bogus Journey\"\nMaltin also gave \"\"Bogus Journey\"\" 2½ stars, a half-star more than he gave to \"\"Excellent Adventure.\"\" \"\"Variety\"\" wrote that the film has \"\"a few triumphant moments, but not enough to sustain pic's running time.\"\" To coincide with the release of the movie, Marvel Comics released a one-shot comic book adaptation of the movie, hiring Evan Dorkin to adapt the screenplay and pencil the art. Like Archie Goodwin's adaptation of the first \"\"Star Wars\"\" film, Dorkin worked from the original script, which included many of the deleted scenes, and portrayed Death as the archetypal skeletal figure. Due to the popularity of"} +{"qid": "test1054", "pid": "4941406", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"The Art of Star Wars\"\nartwork, props and costumes mounted by Lucasfilm, which was held at various venues in 2000-2001, including the Barbican Art Gallery in London and the Helsinki City Art Museum. Carol Titelman's first volume, originally entitled \"\"The Art of Star Wars\"\", was published in 1979 amid a popular craze for behind-the-scenes, \"\"making-of\"\" media products (such as \"\"The Making of Star Wars\"\" documentary). The book presents a range of pre-production concept art, storyboards, and publicity shots alongside Lucas's screenplay. It has been noted as a rich record of the previsualization behind the 1977 movie that gives the reader an insight into the \"\"possibilities"} +{"qid": "test1054", "pid": "18293506", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars: The Last Jedi\"\nin October. Several tie-in books were released on the same day of the North American release of the movie, including \"\"The Last Jedi: Visual Dictionary\"\", and various children's reading and activity books. Related novelizations included the prequel book \"\"Cobalt Squadron\"\", and the \"\"Canto Bight\"\", a collection of novellas about the Canto Bight Casino. As with \"\"The Force Awakens\"\", there is no official tie-in game for \"\"The Last Jedi\"\", in favor of integrating content from the film into other \"\"Star Wars\"\" video games, including \"\"Star Wars Battlefront II\"\", which introduced various content from the film, during the second week of the"} +{"qid": "test1054", "pid": "5988616", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Northwest Passage (novel)\"\nof the novel, a bidding war arose over the movie rights. MGM purchased the rights for an undisclosed \"\"record sum.\"\" The St. Francis raid, depicted in the first half of the novel, inspired the 1940 movie with the same title, starring Spencer Tracy. The producers' decision to concentrate on the first book of the novel allowed the film to have a happy ending. Roberts, however, intensely disliked the movie, which had the Rogers character burst into tears upon a disappointment (while the historic Rogers had rallied his force to remain strong despite the disappointment), completely omitted the harrowing but pivotal"} +{"qid": "test1054", "pid": "7654790", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars: Episode III – Revenge of the Sith (novel)\"\nStar Wars: Episode III – Revenge of the Sith (novel) Star Wars: Revenge of the Sith is a novelization of the \"\"\"\" written by Matthew Stover and published on April 2, in 2005 by Del Rey Books. The plot of the book corresponds with that of the movie, beginning and ending at the same points. There are several elements added not seen in the film (Lorth Needa as commander of the \"\"Integrity\"\" at the Battle of Coruscant, for example), while several sections of the plot are removed for pacing. All of the deleted scenes with the founders of the Rebel"} +{"qid": "test1054", "pid": "7654811", "query": "was star wars a book or a movie first", "answer": "film", "passage": "\"Star Wars: Episode III – Revenge of the Sith (novel)\"\nhis power and in constant pain from his injuries, he now feels like \"\"a painter gone blind, a composer gone deaf.\"\" Star Wars: Episode III – Revenge of the Sith (novel) Star Wars: Revenge of the Sith is a novelization of the \"\"\"\" written by Matthew Stover and published on April 2, in 2005 by Del Rey Books. The plot of the book corresponds with that of the movie, beginning and ending at the same points. There are several elements added not seen in the film (Lorth Needa as commander of the \"\"Integrity\"\" at the Battle of Coruscant, for example),"} +{"qid": "test1055", "pid": "17901179", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Religion in early Virginia\"\nBeth Shalome. Construction on the Church of Saint Mary in Alexandria was begun in 1795, becoming the first Catholic church in Virginia since the failed Jesuit Mission in the 16th century. The principle of disestablishment would subsequently be included in the First Amendment to the United States Constitution, ratified in December 1791. Religion in early Virginia The history of religion in early Virginia begins with the founding of the Virginia Colony, in particular the commencing of Anglican services at Jamestown in 1607. In 1619, the Church of England was made the established church throughout the Colony of Virginia, becoming a"} +{"qid": "test1055", "pid": "17901155", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Religion in early Virginia\"\nReligion in early Virginia The history of religion in early Virginia begins with the founding of the Virginia Colony, in particular the commencing of Anglican services at Jamestown in 1607. In 1619, the Church of England was made the established church throughout the Colony of Virginia, becoming a dominant religious, cultural, and political force. Throughout the 18th century its power was increasingly challenged by Protestant dissenters and religious movements. Following the American Revolution and political independence from Britain, in 1786 the Virginia Statute for Religious Freedom disestablished the Church of England, ending public support and fully legalizing the public and"} +{"qid": "test1055", "pid": "16638007", "query": "what was the religion in the virginia colony", "answer": "Anglican church", "passage": "\"Fairfax Parish, Virginia\"\nFairfax Parish, Virginia Fairfax Parish was the ecclesiastical jurisdiction of the Anglican church in colonial Virginia with jurisdiction over part of Fairfax County with its central church located at The Falls Church. The parish was created in 1764 from Truro Parish. The Anglican church was the established religion of the Colony of Virginia from 1619 - 1776. Each parish in the colony was ministered to by a single minister and governed by a vestry usually composed of 12 local men of wealth and standing in the community. Parishes were created by acts of the House of Burgesses and the upper"} +{"qid": "test1055", "pid": "16638010", "query": "what was the religion in the virginia colony", "answer": "Anglican church", "passage": "\"Fairfax Parish, Virginia\"\ndwelling for the minister. They are located in present-day Arlington County, with the current house dating to 1810, after the disestablishment of the church. Episcopal Diocese of Virginia:History Fairfax Parish, Virginia Fairfax Parish was the ecclesiastical jurisdiction of the Anglican church in colonial Virginia with jurisdiction over part of Fairfax County with its central church located at The Falls Church. The parish was created in 1764 from Truro Parish. The Anglican church was the established religion of the Colony of Virginia from 1619 - 1776. Each parish in the colony was ministered to by a single minister and governed by"} +{"qid": "test1055", "pid": "1569662", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Colony of Virginia\"\nwere seasoned) to the colonies of Virginia and Carolina. In 1619, the Anglican Church was formally established as the official religion in the colony, and would remain so until shortly after the American Revolution. Establishment meant that local tax funds paid the parish costs, and that the parish had local civic functions such as poor relief. The upper class planters controlled the vestry, which ran the parish and chose the minister. The church in Virginia was controlled by the Bishop of London, who sent priests and missionaries, but there were never enough, and they reported very low standards of personal"} +{"qid": "test1055", "pid": "2825064", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Religion in the United States\"\nThe most religious region of the United States is American Samoa (99.3% religious). From early colonial days, when some English and German settlers moved in search of religious freedom, America has been profoundly influenced by religion. That influence continues in American culture, social life, and politics. Several of the original Thirteen Colonies were established by settlers who wished to practice their own religion within a community of like-minded people: the Massachusetts Bay Colony was established by English Puritans (Congregationalists), Pennsylvania by British Quakers, Maryland by English Catholics, and Virginia by English Anglicans. Despite these, and as a result of intervening"} +{"qid": "test1055", "pid": "12855926", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"English overseas possessions in the Wars of the Three Kingdoms\"\nwas turned into a crown colony in 1624 when the Royal charter of the Virginia Company was revoked. It was mostly High Church Anglican in religion. Bermuda, originally an extension of Virginia, had many Puritans, but its Government and society were dominated by Royalists. The much smaller Maryland was a proprietary colony founded by Roman Catholic gentry, supported by a Protestant underclass. Bermuda, or the Somers Isles, 640 miles from North Carolina, had been colonised as an extension of Virginia in 1612. Its administration had been transferred in 1615 to the Somers Isles Company, a spin-off of the Virginia Company,"} +{"qid": "test1055", "pid": "17901158", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Religion in early Virginia\"\nthen considered \"\"Virginia\"\") with the ill-fated Roanoke Colony (located in present-day North Carolina). Its brief existence saw recorded the first baptisms in North America into the Church of England. Anglican chaplain Robert Hunt was among the first group of English colonists arriving in Virginia in 1607 (and among those dead by 1608). He was succeeded as chaplain by Richard Buck, who served in the post until his death in 1624. By the time the Virginia Company of London was dissolved in 1624, authorities in England had sent 22 Anglican clergymen to the colony. Religious leaders in England felt they had"} +{"qid": "test1055", "pid": "12855404", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Religious views of Thomas Jefferson\"\nthat: For Jefferson, separation of church and state was a necessary reform of the religious tyranny whereby a religion received state endorsement, and those not of that religion were denied rights, and even punished. Following the Revolution, Jefferson played a leading role in the disestablishment of religion in Virginia. Previously as the established state church, the Anglican Church received tax support and no one could hold office who was not an Anglican. The Presbyterian, Baptist and Methodist churches did not receive tax support. As Jefferson wrote in his \"\"Notes on Virginia\"\", pre-Revolutionary colonial law held that \"\"if a person brought"} +{"qid": "test1055", "pid": "17901163", "query": "what was the religion in the virginia colony", "answer": "Anglican church", "passage": "\"Religion in early Virginia\"\nof layman members generally respected in the community, which was known as the vestry. There never was a bishop in colonial Virginia, and in practice, the local vestry controlled the parish. Indeed, there was fierce political opposition to having a bishop in the colony; the Anglican priests themselves were supervised directly by the Bishop of London. By the 1740s, the established Anglican church had about 70 parish priests around the colony. Parishes typically had a church farm (or \"\"glebe\"\") to help support it financially. Each county court gave tax money to the local vestry. The vestry provided the priest a"} +{"qid": "test1055", "pid": "16643717", "query": "what was the religion in the virginia colony", "answer": "Anglican church", "passage": "\"Truro Parish, Virginia\"\nTruro Parish, Virginia Truro Parish was the ecclesiastical jurisdiction of the Anglican church in colonial Virginia with jurisdiction originally over all of Fairfax County. The parish had its central church at the Truro Church and the parish was named for the parish in Truro in Cornwall. The parish was created on November 1, 1732 from Hamilton Parish. It was divided twice: in 1748, Cameron Parish was formed and in 1764 Fairfax Parish was created. After 1765, Truro Parish covered southern Fairfax County until disestablishment ended the parish system by 1786. The Anglican church was the established religion of the Colony"} +{"qid": "test1055", "pid": "3717285", "query": "what was the religion in the virginia colony", "answer": "Anglican", "passage": "\"Richard M. Weaver\"\nThe noncreedal faith Weaver advocated (he was a non-practicing Protestant) grew out of what he termed the South's \"\"older religiousness\"\". This \"\"religion\"\" emphasized a respect for tradition and nature, and for the Anglican/Episcopal church, the established church in Virginia and south during the colonial era. Weaver agreed with the traditional Christian notion that external science and technology could not save man, born a sinner in need of redemption. Weaver believed that the South was the \"\"last non-materialist civilization in the Western World\"\". Weaver came to advocate a revival of Southern traditions as the only cure for a commodity-based capitalism. He"} +{"qid": "test1055", "pid": "2731868", "query": "what was the religion in the virginia colony", "answer": "The Church of England", "passage": "\"History of religion in the United States\"\nfor an established church, guaranteed liberty of conscience to all Christians, and embraced pluralism. Catholic fortunes fluctuated in Maryland during the rest of the 17th century, as they became an increasingly smaller minority of the population. After the Glorious Revolution of 1689 in England, the Church of England was legally established in the colony and English penal laws, which deprived Catholics of the right to vote, hold office, or worship publicly, were enforced. Maryland's first state constitution in 1776 restored the freedom of religion. Virginia was the largest, most populous and most important colony. The Church of England was legally"} +{"qid": "test1056", "pid": "4444255", "query": "who got the most passing yards in the nfl", "answer": "Peyton Manning", "passage": "\"Associated Press NFL Offensive Player of the Year Award\"\nMarino's 5,084 yards stood as the record for 27 years before being broken by Drew Brees in 2011, who won that season's award. In turn, 2013 winner Peyton Manning set league single-season records for passing yards (5,477) and passing touchdowns (55). Associated Press NFL Offensive Player of the Year Award The Associated Press NFL Offensive Player of the Year Award is given annually by the Associated Press (AP) to the offensive player in the National Football League (NFL) deemed to have had the most outstanding season. The winner is chosen by votes from a nationwide panel of sportswriters who regularly"} +{"qid": "test1057", "pid": "14463312", "query": "who is the longest serving manager in manchester united history", "answer": "Sir Alex Ferguson", "passage": "\"2010–11 Manchester United F.C. season\"\n1984). However, their stranglehold on the tournament was broken by West Ham United, who sent an understrength Reds side crashing to a 4–0 defeat at Upton Park in the Fifth Round on 30 November 2010. On 19 December 2010, Sir Alex Ferguson became the longest-serving manager in Manchester United's history, overtaking Sir Matt Busby's record of 24 years, 1 month and 13 days in charge of the club. On 1 February 2011, United equalled the club record league unbeaten run of 29 matches, after a 3–1 win over Aston Villa at Old Trafford. They failed to extend the run however,"} +{"qid": "test1057", "pid": "13672207", "query": "who is the longest serving manager in manchester united history", "answer": "Sir Alex Ferguson", "passage": "\"Arsenal F.C.–Manchester United F.C. rivalry\"\nthis period, there was enmity between the two longest serving managers in Premier League history, Arsenal's Arsène Wenger (1996–2018) and United's Sir Alex Ferguson (1986–2013), and their former club captains Patrick Vieira and Roy Keane. Both managers spurred each other on for greater success, and the contests often involved on-field trouble – seven red cards were shown in matches from February 1997 to February 2005. The league fixture in September 2003, known as the \"\"Battle of Old Trafford\"\", was marred by a mêlée instigated by Arsenal players, who felt striker Ruud van Nistelrooy had cheated to get Vieira sent off."} +{"qid": "test1057", "pid": "3143094", "query": "who is the longest serving manager in manchester united history", "answer": "Sir Alex Ferguson", "passage": "\"Old Trafford\"\noffices are the home to the staff of Inside United, the official Manchester United magazine, the club's official website, and its other administrative departments. Images and advertisements are often emblazoned on the front of the East Stand, most often advertising products and services provided by the club's sponsors, though a tribute to the Busby Babes was displayed in February 2008 to commemorate the 50th anniversary of the Munich air disaster. Above the megastore is a statue of Sir Matt Busby, who was Manchester United's longest-serving manager until he was surpassed by Sir Alex Ferguson in 2010. There is also a"} +{"qid": "test1057", "pid": "12004578", "query": "who is the longest serving manager in manchester united history", "answer": "Sir Alex Ferguson", "passage": "\"Fergie's Fledglings\"\nappearance record holder. The previous holder was Sir Bobby Charlton, the longest serving of the Busby Babes. Giggs went on to hold the post of assistant manager of Manchester United but left the club during the summer of 2016. Fergie's Fledglings Fergie's Fledglings were a group of football players recruited by Manchester United under the management of Sir Alex Ferguson (often nicknamed \"\"Fergie\"\") and trained by assistant coaches Brian Kidd and Eric Harrison, before eventually progressing to the first team during the 1990s. The alliteration in the term is a clear homage to the Busby Babes, the famously youthful Manchester"} +{"qid": "test1057", "pid": "2590889", "query": "who is the longest serving manager in manchester united history", "answer": "Sir Alex Ferguson", "passage": "\"Hereford United F.C.\"\nthe club's biggest rivals at present. Graham Turner was the longest serving Hereford United manager and was also second to Sir Alex Ferguson as the longest serving manager in the English football league, having completed almost 14 seasons at the club. The statistics of Hereford United's four most successful managers from the 1972–73 season onwards are shown below. Statistics include league matches only and are correct as of 7 May 2011. A number of full internationals played for Hereford in its 90-year history, although Brian Evans was the only player to be capped whilst at the club. Gavin McCallum came"} +{"qid": "test1058", "pid": "19354924", "query": "when does walking dead season 8 second half start", "answer": "October 22, 2017", "passage": "\"The Walking Dead (season 8)\"\nThe Walking Dead (season 8) The eighth season of \"\"The Walking Dead\"\", an American post-apocalyptic horror television series on AMC, premiered on October 22, 2017, and concluded on April 15, 2018, consisting of 16 episodes. Developed for television by Frank Darabont, the series is based on the eponymous series of comic books by Robert Kirkman, Tony Moore, and Charlie Adlard. The executive producers are Kirkman, David Alpert, Scott M. Gimple, Greg Nicotero, Tom Luse, and Gale Anne Hurd, with Gimple as showrunner for his fifth and final season. The eighth season received mixed reviews from critics. It was nominated for"} +{"qid": "test1059", "pid": "18516335", "query": "where did the ancestors of the domestic goat originate", "answer": "Iran", "passage": "\"Bovidae in Chinese mythology\"\nfrom Kashmir to Iran, including much desert country characteristic of the historic Western Regions. The European mouflon (\"\"Ovis musimon\"\") is thought to be the ancestor of the modern domestic sheep (\"\"Ovis aries\"\"), and was historically herded by the Xiong Nu, and other population groups located in or near China. The domestic goat (\"\"Capra aegagrus hircus\"\") is a subspecies of goat domesticated from the wild goat of southwest Asia and Eastern Europe. Another species historically found wild in parts of China include the serow and the goral. This group includes various miscellaneous species, including gazelles. Species which have historically ranged in"} +{"qid": "test1059", "pid": "4047754", "query": "where did the ancestors of the domestic goat originate", "answer": "Iran", "passage": "\"Hungarian prehistory\"\nthis language rode horses. Animal husbandry spread on both sides of the Urals from around . The bones of domestic animalscattle, goats, sheep, pigs, and horsescomprised 90% of all animal bones excavated in many settlements. Loan words from Proto-Iranian suggest the Ugric-speaking populations adopted animal husbandry from neighboring peoples. For instance, the Hungarian words for cow \"\"(tehén)\"\" and milk \"\"(tej)\"\" are of Proto-Iranian origin. Archaeological findsincluding seeds of millet, wheat, and barley, and tools including sickles, hoes, and spade handlesprove the local population also cultivated arable lands. The Magyars' ancestors gave up their settled way of life because of the"} +{"qid": "test1059", "pid": "1807478", "query": "where did the ancestors of the domestic goat originate", "answer": "Iran", "passage": "Caprinae\na caprine is a kind of bovid. Although most goat-antelopes are gregarious and have fairly stocky builds, they diverge in many other ways – the muskox (\"\"Ovibos moschatus\"\") is adapted to the extreme cold of the tundra; the Rocky Mountain goat (\"\"Oreamnos americanus\"\") of North America is specialised for very rugged terrain; the urial (\"\"Ovis orientalis\"\") occupies a largely infertile area from Kashmir to Iran, including much desert country. The European mouflon (\"\"Ovis musimon\"\") is thought to be the ancestor of the modern domestic sheep (\"\"Ovis aries\"\"). Many species have become extinct since the last ice age, probably largely because"} +{"qid": "test1060", "pid": "8904504", "query": "when does the implantation of the embryo occur", "answer": "around 9 days after ovulation", "passage": "\"Implantation (human embryo)\"\nImplantation (human embryo) In humans, implantation is the stage of pregnancy at which the embryo adheres to the wall of the uterus. At this stage of prenatal development, the conceptus is called a blastocyst. It is by this adhesion that the embryo receives oxygen and nutrients from the mother to be able to grow. In humans, implantation of a fertilized ovum is most likely to occur around 9 days after ovulation, however this can range between 6 and 12 days. The reception-ready phase of the endometrium of the uterus is usually termed the \"\"implantation window\"\" and lasts about 4 days."} +{"qid": "test1061", "pid": "17964758", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"Tunisia at the FIFA World Cup\"\nwhere they finished in ninth position. Between 1998 and 2006 they had a streak of three World Cup qualifications. They have made their fifth appearance at the finals in the 2018 FIFA World Cup in Russia. As of 2018, Tunisia never survived the group stage of a World Cup. They have won two matches: Mexico in 1978, and Panama in 2018. Tunisia's first World Cup was the 1978 competition held in Argentina. They became the first African team to win a World Cup game, defeating Mexico 3–1 in Rosario. A 1–0 defeat to 1974 semi-finalists Poland followed. Although \"\"The Eagles"} +{"qid": "test1061", "pid": "20948059", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"Speed climbing at the 2018 IFSC Climbing World Cup\"\nSpeed climbing at the 2018 IFSC Climbing World Cup Speed climbing competitions at the 2018 IFSC Climbing World Cup were being held at eight stops. The winners were awarded trophies, and the best three finishers received medals. At the end of the season an overall ranking was determined based upon points, which athletes were awarded for finishing in the top 30 of each individual event. Bassa Mawem won the men's World Cup, Anouck Jaubert won the women's World Cup, and Russian Federation won the National Team Ranking. 75 athletes attended the World Cup in Moscow. Reza Alipour won. 68 athletes"} +{"qid": "test1061", "pid": "18548376", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"2018 FIFA World Cup qualification (UEFA)\"\n2018 FIFA World Cup qualification (UEFA) The European section of the 2018 FIFA World Cup qualification acted as qualifiers for the 2018 FIFA World Cup, which is being held in Russia, for national teams which are members of the Union of European Football Associations (UEFA). Apart from Russia, who qualified automatically as hosts, a total of 13 slots in the final tournament were available for UEFA teams. The qualifying format was confirmed by the UEFA Executive Committee meeting on 22–23 March 2015 in Vienna. The qualification process started on 4 September 2016, almost two months after UEFA Euro 2016, and"} +{"qid": "test1061", "pid": "18548388", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"2018 FIFA World Cup qualification (UEFA)\"\nEuro 2016. 2018 FIFA World Cup qualification (UEFA) The European section of the 2018 FIFA World Cup qualification acted as qualifiers for the 2018 FIFA World Cup, which is being held in Russia, for national teams which are members of the Union of European Football Associations (UEFA). Apart from Russia, who qualified automatically as hosts, a total of 13 slots in the final tournament were available for UEFA teams. The qualifying format was confirmed by the UEFA Executive Committee meeting on 22–23 March 2015 in Vienna. The qualification process started on 4 September 2016, almost two months after UEFA Euro"} +{"qid": "test1061", "pid": "10915586", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"2018 FIFA World Cup\"\nprogram in network history). 2018 FIFA World Cup The 2018 FIFA World Cup was the 21st FIFA World Cup, an international football tournament contested by the men's national teams of the member associations of FIFA once every four years. It took place in Russia from 14 June to 15 July 2018. It was the first World Cup to be held in Eastern Europe, and the 11th time that it had been held in Europe. At an estimated cost of over $14.2 billion, it was the most expensive World Cup. It was also the first World Cup to use the video"} +{"qid": "test1061", "pid": "10915537", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"2018 FIFA World Cup\"\n2018 FIFA World Cup The 2018 FIFA World Cup was the 21st FIFA World Cup, an international football tournament contested by the men's national teams of the member associations of FIFA once every four years. It took place in Russia from 14 June to 15 July 2018. It was the first World Cup to be held in Eastern Europe, and the 11th time that it had been held in Europe. At an estimated cost of over $14.2 billion, it was the most expensive World Cup. It was also the first World Cup to use the video assistant referee (VAR) system."} +{"qid": "test1061", "pid": "8460067", "query": "where is the world cup being held 2018", "answer": "Russia", "passage": "\"United States Davis Cup team\"\nwin was in 2007, defeating Russia in the final. The United States played in the World Group in all but one year (1988) since it was created in 1981, sharing this record with the Czech Republic, and holds the record for ongoing consecutive years in the World Group at 30 as of 2018. Here is the list of all match-ups since 1981, when the competition started being held in the current World Group format. The statistics reflect results since the 1981 Davis Cup, and are up-to-date as of the 2018 Davis Cup World Group 1st round. The statistics reflect results"} +{"qid": "test1062", "pid": "2114253", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Noli Me Tángere (novel)\"\nthough Rizal actually advocated direct representation to the Spanish government and an overall larger role for the Philippines within Spain's political affairs. In 1956, Congress passed Republic Act 1425, more popularly known as the Rizal Law, which requires all levels in Philippine schools to teach the novel as part of their curriculum. \"\"Noli me tangere\"\" is being taught to third year secondary school students, while its sequel \"\"El filibusterismo\"\" is being taught for fourth year secondary school students. The novels are incorporated to their study and survey of Philippine literature. Both of Rizal's novels were initially banned from Catholic educational"} +{"qid": "test1062", "pid": "2114248", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "December 1886", "passage": "\"Noli Me Tángere (novel)\"\ninsisted and ended up lending Rizal ₱300 for 2,000 copies. The printing was finished earlier than the estimated five months. Viola arrived in Berlin in December 1886, and by March 21, 1887, Rizal had sent a copy of the novel to his friend, Blumentritt. The book was banned by Spanish authorities in the Philippines, although copies were smuggled into the country. The first Philippine edition (and the second published edition) was finally printed in 1899 in Manila by Chofre y Compania in Escolta. On August 21, 2007, a 480-page English-language version of \"\"Noli me tangere\"\" was released to major Australian"} +{"qid": "test1062", "pid": "1989143", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Father Dámaso\"\nFather Dámaso Padre Dámaso is one of the notorious characters in the novel \"\"Noli Me Tangere\"\". The novel was written by José Rizal, one of the leaders of the Propaganda Movement in the Philippines. \"\"Noli Me Tangere\"\" (\"\"Touch Me Not\"\" or \"\"Social Cancer\"\") is a controversial and anticlerical novel that exposed the abuses of the Spanish friars (belonging to the Roman Catholic Church) and the Spanish elite in colonial Philippines during the 19th century. The novel, according to the author, represented the state of Philippine society under Spanish colonial rule. It was intended as a liberal-nationalist wake-up call for the"} +{"qid": "test1062", "pid": "4362998", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Rizal Day\"\nby Lt. Col. Antonio Sanz, led by Sanz and Lt. Col. Ildefonso Alegre, and financed by the townsfolk of Camarines Norte and the rest of the Bicol Region. Finished in February 1899, the three-tiered stone pylon inscribing Rizal's novels \"\"Noli Me Tangere\"\" and \"\"El Filibusterismo\"\", and Morga, for Antonio de Morga, author of \"\"Sucesos de las islas Filipinas\"\", a book about the early days of the Spanish colonization in the Philippines. With the victory of the Americans against the Spaniards in the Spanish–American War, the Americans took control of the Philippines. In an effort to demonstrate that they were more"} +{"qid": "test1062", "pid": "2114250", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Noli Me Tángere (novel)\"\nsequel, \"\"El filibusterismo\"\" (nicknamed \"\"El fili\"\"), were banned by Spanish authorities in the Philippines because of their allegations of corruption and abuse by the colonial government and the Catholic Church. Copies of the book were nevertheless smuggled in and hidden, and when Rizal returned to the Philippines after completing medical studies, he quickly ran afoul of the local government. A few days after his arrival, Rizal was summoned to Malacañan Palace by Governor-General Emilio Terrero, who told him of the charge that \"\"Noli me tangere\"\" contained subversive elements. After a discussion, Terrero was appeased but still unable to offer resistance"} +{"qid": "test1062", "pid": "12527792", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Obando Church\"\nObando Church The Obando Church, formally known as the San Pascual Baylon Parish Church, is a Roman Catholic church located in the municipality of Obando in the province of Bulacan, Philippines. Founded by Franciscan missionaries, under the Spanish flag, it is the venue of the three-day Obando Fertility Rites held annually in honor of three patron saints, namely: St. Pascual Baylon, St. Claire of Assisi and Our Lady of Salambao, a celebration that was mentioned by Jose Rizal, the Philippine national hero, in the pages of his Spanish-language novel, the \"\"Noli Me Tangere\"\" (in \"\"Chapter 6: Captain Tiago\"\"). During the"} +{"qid": "test1062", "pid": "10680267", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "Ilustrado\nin his \"\"\"\", referred to the \"\"Ilustrados\"\" as the “rich Intelligentsia” because many were the children of wealthy landowners. They were key figures in the development of Filipino nationalism. The most prominent \"\"Ilustrados\"\" were Graciano López Jaena, Marcelo H. del Pilar, Mariano Ponce, Antonio Luna and José Rizal, the Philippine national hero. Rizal’s novels \"\"Noli Me Tangere\"\" (\"\"Touch Me Not\"\") and \"\"El filibusterismo\"\" (\"\"The Subversive\"\") “exposed to the world the injustices imposed on Filipinos under the Spanish colonial regime”. In the beginning, Rizal and his fellow \"\"Ilustrados\"\" preferred not to win independence from Spain, instead they yearned legal equality for"} +{"qid": "test1062", "pid": "17726324", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Máximo Viola\"\nhis novel \"\"Noli me Tangere\"\" published and considered destroying the manuscript of the book. Viola financed the publication of the first 2000 copies of the novel in 1887, and was later given the galley proof and the first published copy of the novel by Rizal. In 1887, Viola returned to the Philippines to practice his profession as a doctor. He had a brief meeting with Rizal in Manila in late June 1892. Both were suspected to have links with the secessionist movement. Spanish colonial authorities remained suspicious of Viola until the Philippine Revolution. With his two brothers, he stayed in"} +{"qid": "test1062", "pid": "14301993", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Sexuality in the Philippines\"\nhave reached the age of puberty. Filipino historian Ambeth R. Ocampo described that during 19th-century Philippines the sexually attractive female body parts of the time were the \"\"bare arms, a good neck or nape\"\" and \"\"tiny rosy feet\"\". This is exemplified by Ocampo's chosen passages from Soledad Lacson-Locsin's unabridged English-language translation of the 25th Chapter of Jose Rizal's Spanish-language novel, the \"\"Noli Me Tangere\"\": As a part of the process of converting ancient native Filipinos into Catholicism, the Spaniard missionaries forbade the use of penile instruments, and promoted Christian ideas of the wife's fidelity to her husband, premarital virginity, the"} +{"qid": "test1062", "pid": "15903977", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Convent pornography\"\nLouis XVI. During and after the Revolution, the famous works of the Marquis de Sade were printed. They were often accompanied by illustrations and served as political commentary for their author. Filipino historian Ambeth R. Ocampo described that in the 19th-century Philippines the sexually attractive female body parts of the time were the \"\"bare arms, a good neck or nape\"\" and \"\"tiny rosy feet\"\". This is exemplified by Ocampo's chosen passages from Soledad Lacson-Locsin's unabridged English-language translation of the 25th Chapter of Jose Rizal's Spanish-language novel, the \"\"Noli Me Tangere\"\": In \"\"My Sad Republic\"\", Eric Gamalinda incorporated the genre of"} +{"qid": "test1062", "pid": "10788353", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Spanish Filipino\"\nruling government. Originally written in Spanish, the book is more commonly published and read in the Philippines in either Filipino or English. Together with its sequel, \"\"El Filibusterismo\"\", the reading of \"\"Noli\"\" is obligatory for high school students throughout the country. El Filibusterismo (lit. Spanish for \"\"The Filibustering\"\"), also known by its English alternative title The Reign of Greed, is the second novel written by Philippine national hero José Rizal. It is the sequel to \"\"Noli me tangere\"\" and, like the first book, was written in Spanish. It was first published in 1891 in Ghent. The novel's dark theme departs"} +{"qid": "test1062", "pid": "11844502", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Filipino women writers\"\nit is to be a woman in Philippine society. Gabriela Silang was a \"\"katipunera\"\" or a revolutionary – a representation of female bravery – who fought against Spanish colonialism in the 18th century. Silang was a contrast to the chaste and religiously devout image of the Filipino lady as portrayed by Jose Rizal through his Spanish-language novels, \"\"Noli Me Tangere\"\" and \"\"El Filibusterismo\"\". Within the pages of these 19th century novels, Rizal depicted Leonor Rivera - a girlfriend of his - through the fictional character of \"\"Maria Clara\"\" as the epitome of virtue, i.e., the ideal Filipina. Then there was"} +{"qid": "test1062", "pid": "14458454", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Leonor Rivera–Kipping\"\nLeonor Rivera–Kipping Leonor Rivera–Kipping (née Rivera y Bauzon; 11 April 1867 – 28 August 1893) was the childhood sweetheart, and “lover by correspondence” of Philippine national hero José Rizal. Rivera was the “greatest influence” in preventing Rizal from falling in love with other women while Rizal was traveling outside the Philippines. Rivera's romantic relationship with Rizal lasted for eight years. She was immortalized by Rizal as the character María Clara in the Spanish-language novel \"\"Noli Me Tangere.\"\" Her original hometown is in Camiling, Tarlac. Born as Leonor Bauson Rivera, a native of Camiling, Tarlac, was the daughter of Antonio Rivera"} +{"qid": "test1062", "pid": "13292500", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"History of Manila\"\nroads and railways, and the expansion of the ports came to symbolize the rapid development. Being the traditional seat of education and liberal thinking in the Philippines, Manila was a rich field for anticlerical propaganda. The seeds of revolution germinated in 1886 with the publication of José Rizal's book \"\"Noli Me Tangere\"\" (\"\"Touch Me Not\"\"), a novel critical of the way the Spanish friars were governing the Philippines. The Spanish government condemned the book, and Rizal was exiled to Dapitan. In 1892, he returned to Manila to found \"\"La Liga Filipina\"\", a nationalistic organization. Later that year, in Tondo, Andrés"} +{"qid": "test1062", "pid": "10000377", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Without Seeing the Dawn\"\nTimes, New York Sun and Chicago Sun. \"\"Without Seeing the Dawn\"\", the novel, became the culmination of Javellana's short-story writing career. The said novel was also known under the title The Lost Ones. It is currently a book requirement of the Grade 7 students of the University of the Philippines Rural High School. Without Seeing the Dawn The title of Stevan Javellana's only novel in English Without Seeing the Dawn was derived from one of José Rizal's character in the Spanish-language novel \"\"Noli Me Tangere\"\" or \"\"Touch Me Not\"\". Javellana's 368-paged book has two parts, namely \"\"Day\"\" and \"\"Night\"\". The"} +{"qid": "test1062", "pid": "15138903", "query": "rizal finished all the chapters of the novel noli me tangere in", "answer": "Spanish", "passage": "\"Bayaning 3rd World\"\nviews against the Roman Catholic Church during the Spanish regime in the Philippines which he expressed primarily through his two novels \"\"Noli Me Tangere\"\" and \"\"El Filibusterismo\"\". The investigation was done mainly by \"\"interviewing\"\" key individuals in the life of Rizal such as his mother Teodora Alonso, his siblings Paciano, Trinidad, and Narcisa, his love interest and supposed wife Josephine Bracken, and the Jesuit priest who supposedly witnessed Rizal's retraction, Vicente Balaguer. Eventually, the two filmmakers would end up \"\"interviewing\"\" Rizal himself to get to the bottom of the issue. In 1997, director Mike de Leon had been working on"} +{"qid": "test1063", "pid": "9053863", "query": "how many dominoes do you need for mexican train", "answer": "A double-twelve set", "passage": "\"Mexican Train\"\nMexican Train Mexican Train is a game played with number dominoes. The object of the game is for a player to play all the dominoes from his or her hand onto one or more chains, or \"\"trains\"\", emanating from a central hub or \"\"station\"\". The game's most popular name comes from a special optional train that belongs to all players. However, the game can be played without the Mexican Train; such variants are generally called \"\"Private Trains\"\" or \"\"Domino Trains\"\". It is related to the game Chicken Foot. A double-twelve set of dominoes is marketed as the standard for Mexican"} +{"qid": "test1064", "pid": "17587118", "query": "who declared war on the united states four days after pearl harbor", "answer": "Nazi Germany", "passage": "\"German declaration of war against the United States\"\nGerman declaration of war against the United States On 11 December 1941, four days after the Japanese attack on Pearl Harbor and the United States declaration of war against the Japanese Empire, Nazi Germany declared war against the United States, in response to what was claimed to be a series of provocations by the United States government when the US was still officially neutral during World War II. The decision to declare war was made by Adolf Hitler, apparently offhand, almost without consultation. Later that day, the United States declared war on Germany. The course of relations between Germany and"} +{"qid": "test1064", "pid": "17587141", "query": "who declared war on the united states four days after pearl harbor", "answer": "Nazi Germany", "passage": "\"German declaration of war against the United States\"\nin a state of war with the United States of America. Accept, Mr. Charge d'Affaires, the expression of my high consideration. December 11, 1941. RIBBENTROP. Notes Bibliography German declaration of war against the United States On 11 December 1941, four days after the Japanese attack on Pearl Harbor and the United States declaration of war against the Japanese Empire, Nazi Germany declared war against the United States, in response to what was claimed to be a series of provocations by the United States government when the US was still officially neutral during World War II. The decision to declare war"} +{"qid": "test1064", "pid": "5618196", "query": "who declared war on the united states four days after pearl harbor", "answer": "Nazi Germany", "passage": "\"Operation Pastorius\"\nOperation Pastorius Operation Pastorius was a failed German intelligence plan for sabotage inside the United States during World War II. The operation was staged in June 1942 and was to be directed against strategic American economic targets. The operation was named by Admiral Wilhelm Canaris, chief of the German \"\"Abwehr\"\", for Francis Daniel Pastorius, the leader of the first organized settlement of Germans in America. After the Japanese attack on Pearl Harbor on December 7, 1941, followed by Nazi Germany's declaration of war on the United States four days later (and the United States' declaration of war on Germany in"} +{"qid": "test1064", "pid": "3358935", "query": "who declared war on the united states four days after pearl harbor", "answer": "Fascist Italy", "passage": "\"Causes of World War II\"\nwar, the Imperial Japanese Navy attacked Pearl Harbor with the aim of destroying the main American battle fleet at anchor. At the same time, other Japanese forces attacked the U.S.-held Philippines and the British Empire in Malaya, Singapore, and Hong Kong. The USA and the United Kingdom to declare war upon Japan the next day. Four days later the U.S was brought into the European war when on December 11, 1941, Nazi Germany and Fascist Italy declared war on the United States. Hitler chose to declare that the Tripartite Pact required that Germany follow Japan's declaration of war; although American"} +{"qid": "test1064", "pid": "6309428", "query": "who declared war on the united states four days after pearl harbor", "answer": "Nazi Germany", "passage": "\"Japan–United States relations\"\nbetween the Japan's commitment to conquer China, and America's commitment to defend China. Japan's civilian government fell and the Army under General Tojo took full control, bent on war. Japan attacked the American navy base at Pearl Harbor, Hawaii, on December 7, 1941. In response, the United States declared war on Japan. Japan's Axis allies, including Nazi Germany, declared war on the United States days after the attack, bringing the United States into World War II. The conflict was a bitter one, marked by atrocities such as the executions and torture of American prisoners of war by the Imperial Japanese"} +{"qid": "test1065", "pid": "20546517", "query": "when did red bull come to the united states", "answer": "1997", "passage": "\"Kyle Duncan (soccer)\"\n2018, the New York Red Bulls entered into a loan agreement with New York Red Bulls II, and Duncan was listed on the Red Bulls II 2018 USL season roster. However, he started his second MLS game with New York Red Bulls two days later, against Real Salt Lake. Duncan earned his first MLS assist against Minnesota United FC on March 24, 2018. Duncan has represented the United States at the U-18 and U-20 level. New York Red Bulls Kyle Duncan (soccer) Kyle Duncan (born August 8, 1997) is an American association footballer who plays for the New York Red"} +{"qid": "test1066", "pid": "19775766", "query": "when was the last time the crows were in the grand final", "answer": "2017", "passage": "\"2017 Adelaide Football Club season\"\nbeaten the Giants, the Crows finished minor premiers in spite of losing their last two games. When Rory Sloane had surgery to have his appendix removed before the finals, the Crows were forced to play without him in the first week. Without Sloane, the Crows still thrived in wet conditions, keeping to just 11 points, the lowest half-time score in a final since the 1960 VFL Grand Final. The Crows went on to win by 36 points after leading at half time by 44 points, setting up a home preliminary final. This came at the cost of defender Brodie Smith,"} +{"qid": "test1066", "pid": "19775770", "query": "when was the last time the crows were in the grand final", "answer": "2017", "passage": "\"2017 Adelaide Football Club season\"\npoints late in the fourth quarter two late goals were not enough to overcome Melbourne. Needing a win in their final against Collingwood to make the grand final, the Crows came back to win. After being down at three-quarter time by 7 points, the Crows scored 32 points in the final quarter while holding the Magpies to only a behind. Adelaide started the grand final strongly with a goal only 20 seconds into the match by Kellie Gibson. In front the whole match after that kick, the Crows weathered a late comeback to win the first-ever AFLW final by six"} +{"qid": "test1066", "pid": "19766805", "query": "when was the last time the crows were in the grand final", "answer": "2017", "passage": "\"2017 AFL Grand Final\"\non the ground. Adelaide claimed the minor premiership for the second time in their history, finishing on top of the 2017 AFL ladder with 15 wins, 6 losses and 1 draw, edging out Geelong via a better percentage. The Crows recorded two dominant wins in the finals series, defeating Greater Western Sydney by 36 points in the qualifying final and then overwhelming Geelong to win the preliminary final by 61 points. The Richmond Tigers improved immensely from their 13th-place finish last year, ending the home-and-away season with 15 wins and 7 losses (3 of which were by less than six"} +{"qid": "test1066", "pid": "6575197", "query": "when was the last time the crows were in the grand final", "answer": "2017", "passage": "\"Don Pyke\"\nthe head coach of the Adelaide Crows. The Crows made the semi-finals in his first season as coach but were defeated by the Sydney Swans. In 2017 Pyke coached the Crows to their second McClelland Trophy and brought them to their first AFL Grand Final since 1998 but fell short on Grand Final day by 48 points to the Richmond Tigers. ! scope=\"\"row\"\" style=\"\"font-weight:normal\"\"|2016 ! scope=\"\"row\"\" style=\"\"font-weight:normal\"\"|2017 ! scope=\"\"row\"\" style=\"\"font-weight:normal\"\"|2018 ! colspan=2| Career totals ! 71 ! 46 ! 24 ! 1 ! 64.7% ! colspan=2| After his retirement, Pyke continued his involvement with the Eagles, serving as team runner"} +{"qid": "test1066", "pid": "20383017", "query": "when was the last time the crows were in the grand final", "answer": "2017", "passage": "\"2018 Adelaide Football Club season\"\na draw against the and wins against and . They needed to win their final match against to make it to the Grand Final, but despite leading at half-time they lost the match by 21 points and finished the season in fifth. The season opener was a re-match of the 2017 AFL Women's Grand Final, which the Crows had won to claim the inaugural AFL Women's premiership cup. The Crows went into the game missing Courtney Cramey and Abbey Holmes due to injury, and Jenna McCormick due to her W-League duties, then co-captain and 2017 AFLW Best and Fairest Erin"} +{"qid": "test1066", "pid": "20383007", "query": "when was the last time the crows were in the grand final", "answer": "2017", "passage": "\"2018 Adelaide Football Club season\"\naway season was announced on 31 October 2017. Adelaide will host in a re-match of the 2017 AFL Grand Final in round 2 on a Thursday night at the Adelaide Oval. Bryce Gibbs will play against former side for the first time in round 7, then the Crows will face off against ex-Crow Jake Lever for the first time when they play in round 10. Due to injuries from the pre-season, there was uncertainty about whether or not Taylor Walker, due to a foot injury, and Brad Crouch, due to abdominal strain, would be playing. According to Daniel Talia, the"} +{"qid": "test1067", "pid": "13458619", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Calf (leg)\"\nCalf (leg) The calf (Latin: sura) is the back portion of the lower leg in human anatomy. The muscles within the calf correspond to the posterior compartment of the leg. The two largest muscles within this compartment are known together as the calf muscle and attach to the heel via the Achilles tendon. Several other, smaller muscles attach to the knee, the ankle, and via long tendons to the toes. The calf is composed of the muscles of the posterior compartment of the leg: The gastrocnemius and soleus (composing the triceps surae muscle) and the tibialis posterior. The sural nerve"} +{"qid": "test1067", "pid": "5605287", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Triceps surae muscle\"\nto baseline prior to injury. Stretches such as alternating calf raises can improve flexibility as well as mobilize legs before running. Calf muscles are also very suspectable to Fasciculations and people with Benign Fasciculation Syndrome often complain of twitching in either one or both calves. The term is pronounced . It is from Latin \"\"caput\"\" and \"\"sura\"\" meaning \"\"three-headed [muscle] of the calf\"\". Triceps surae muscle The triceps surae is a pair of muscles located at the calf - the two-headed gastrocnemius and the soleus. These muscles both insert into the calcaneus, the bone of the heel of the human"} +{"qid": "test1067", "pid": "12150789", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Calf raises\"\nnot uncommon to hear of some fitness trainers using reps of 50 or more, as they believe the gastrocnemius is composed of slow twitch fibers which benefit from lower weights and higher repetitions. This is not correct. The gastrocnemius is actually made up of fast twitch muscle fibers, which benefit more from heavy loads and low reps (6–8) on the standing calf raise. The soleus, on the other hand, is another plantarflexor of the ankle. The soleus is a slow twitch muscle and will benefit from high reps and lower loads on the seated calf raise. Calf raises Calf raises"} +{"qid": "test1067", "pid": "5605284", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Triceps surae muscle\"\nTriceps surae muscle The triceps surae is a pair of muscles located at the calf - the two-headed gastrocnemius and the soleus. These muscles both insert into the calcaneus, the bone of the heel of the human foot, and form the major part of the muscle of the posterior leg, commonly known as the calf muscle. The triceps surae is connected to the foot through the Achilles tendon, and has 3 heads deriving from the 2 major masses of muscle. The triceps surae is innervated by the tibial nerve, specifically, nerve roots L5–S2. Contraction of the triceps surae induce plantar"} +{"qid": "test1067", "pid": "5613142", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Gastrocnemius muscle\"\nGastrocnemius muscle The gastrocnemius muscle (plural \"\"gastrocnemii\"\") is a superficial two-headed muscle that is in the back part of the lower leg of humans. It runs from its two heads just above the knee to the heel, a two joint muscle. The muscle is named via Latin, from Greek \"\"γαστήρ\"\" (\"\"gaster\"\") \"\"stomach\"\" and \"\"κνήμη\"\" (\"\"knḗmē\"\") \"\"leg\"\"; meaning \"\"stomach of leg\"\" (referring to the bulging shape of the calf). The gastrocnemius is located with the soleus in the posterior (back) compartment of the leg. The lateral head originates from the lateral condyle of the femur, while the medial head originates from"} +{"qid": "test1067", "pid": "5587641", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Soleus muscle\"\nSoleus muscle In humans and some other mammals, the soleus is a powerful muscle in the back part of the lower leg (the calf). It runs from just below the knee to the heel, and is involved in standing and walking. It is closely connected to the gastrocnemius muscle and some anatomists consider them to be a single muscle, the triceps surae. Its name is derived from the Latin word \"\"solea\"\", meaning \"\"sandal\"\". The soleus is located in the superficial posterior compartment of the leg.Soleus is vestigial in the horse. The soleus exhibits significant morphological differences across species. It is"} +{"qid": "test1067", "pid": "17291929", "query": "what is the scientific name for the calf muscle", "answer": "soleus", "passage": "\"Reduced muscle mass, strength and performance in space\"\nrest, no significant measurable changes occurred in maximal isometric calf strength, force-velocity characteristics, myofiber composition, or volume in the calf muscles studied. Since loss of skeletal muscle strength is an expected finding in both spaceflight and bed rest, the investigators concluded that the testing protocol utilized during both studies must have provided sufficient resistance exercise to prevent losses in muscle strength and changes in morphology. Some general conclusions that can be drawn from the data gathered from astronaut/cosmonaut studies are as follows. First, loss of muscle mass is most prevalent in the antigravity muscles such as the soleus; second, the"} +{"qid": "test1067", "pid": "17291928", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Reduced muscle mass, strength and performance in space\"\nin vivo contractile characteristics of the calf muscle were completed. Protocols and timelines for the two studies were identical, which allowed direct comparisons between a spaceflight and a bed rest study of equivalent duration. Calf muscle strength was measured before and on days 2, 8, and 12 of spaceflight and bed rest as well as on days 2 and 8 after spaceflight and bed rest in the two investigations. Muscle biopsies were obtained before and within 3 hours after spaceflight (m. gastrocnemius and m. soleus) and bed rest (m. soleus) just before reloading. After 17 days of spaceflight or bed"} +{"qid": "test1067", "pid": "13458621", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Calf (leg)\"\na study of 22,000 persons 65 or older found that a smaller calf circumference was associated with a higher risk of undernutrition. In France, a study of 6265 persons 65 or older found an inverse correlation between calf circumference and carotid plaques. Calf augmentation and restoration is available, using a range of prosthesis devices and surgical techniques. Calf raises are a method of exercising the gastrocnemius, tibialis posterior and soleus muscles of the lower leg. The movement performed is plantar flexion, a.k.a. ankle extension. \"\"Calf\"\" and \"\"calf of the leg\"\" are documented in use in Middle English, respectively, circa 1350"} +{"qid": "test1067", "pid": "8122279", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "Metamynodon\nother aquatic mammals, \"\"Metamynodon\"\" had small neural spines projecting upwards from the thoracic vertebrae, indicating weak neck muscles, which probably was due to buoyancy and a lack of necessity to support the head while submerged. The ribcage was broad and \"\"Metamynodon\"\" had a barrel-like chest similar to the hippo, which could either be an adaptation to an expanding digestive tract or to develop muscles necessary to prevent rolling over in the water. Like other aquatic mammals, the leg muscles popliteus in the knee, gastrocnemius in the calf, soleus in the calf, extensor digitorum longus in the foot, and peroneus tertius"} +{"qid": "test1067", "pid": "12150783", "query": "what is the scientific name for the calf muscle", "answer": "gastrocnemius", "passage": "\"Calf raises\"\nCalf raises Calf raises are a method of exercising the gastrocnemius, tibialis posterior and soleus muscles of the lower leg. The movement performed is plantar flexion, a.k.a. ankle extension. Calf raises are sometimes done with a flexed knee, usually roughly 90 degrees. This lessens the stretch in the gastrocnemius (a knee flexor), so the movement is done to emphasize the soleus. Bent-knee calf raises are frequently done in a seated position for comfort. Since the weight of the upper body is rested on the seat, resistance is frequently added. Using bodyweight, one leg could be draped across the other (through"} +{"qid": "test1069", "pid": "5244961", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Dynamite (Jamiroquai album)\"\nDynamite (Jamiroquai album) Dynamite is the sixth studio album released by British funk/acid jazz band Jamiroquai. The album was released on 15 June 2005 in Japan, 20 June 2005 in the United Kingdom, 21 July 2005 in Australia and 20 September 2005 in the United States. The album was released after the 2004 movie \"\"Napoleon Dynamite\"\" featured the Jamiroquai song \"\"Canned Heat\"\" in its climactic dance scene. \"\"Feels Just Like It Should\"\" was the first single, reaching No. 8 in its first week on the UK charts. It has since become a No.1 hit on the \"\"Billboard\"\" dance charts in"} +{"qid": "test1069", "pid": "3551552", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite\"\nNapoleon Dynamite Napoleon Dynamite is a 2004 American comedy film produced by Jeremy Coon, Chris Wyatt, Sean Covel and Jory Weitz, written by Jared and Jerusha Hess and directed by Jared Hess. The film stars Jon Heder in the role of the title character, for which he was paid $1,000. After the film's runaway success, Heder re-negotiated his compensation and received a cut of the profits. The film was Jared Hess' first full-length feature and is partially adapted from his earlier short film, \"\"Peluca\"\". \"\"Napoleon Dynamite\"\" was acquired at the Sundance Film Festival by Fox Searchlight Pictures and Paramount Pictures,"} +{"qid": "test1069", "pid": "15629015", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite (TV series)\"\nand #103 in the total viewership rankings for the 2011-12 television season. On August 20, 2015, Adult Swim Canada announced they would begin airing reruns of the series in September 2015. The series is available on Hulu in the United States. \"\"Napoleon Dynamite: The Complete Animated Series\"\", containing all 6 episodes, was released on DVD in Region 1 on November 4, 2014 by Olive Films. Napoleon Dynamite (TV series) Napoleon Dynamite is a 2012 American animated sitcom based on the 2004 indie film of the same name. Set in the small town of Preston, Idaho, it follows the adventures of"} +{"qid": "test1069", "pid": "3551565", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite\"\na movie. It was like, 'Are people going to get this? Is it working?'\"\" The film is set during the 2004–2005 school year, as shown on Napoleon's student ID card in the title sequence. However, the film contains several anachronisms indicating that it would be more appropriately set in the 1980s or 1990s. For example, Deb wears a side ponytail and Napoleon wears Moon Boots, both popular fashion trends of the 1980s. One scene is set at a school dance that plays only 1980s music such as Alphaville's \"\"Forever Young,\"\" whereas an earlier scene features students performing a sign language"} +{"qid": "test1069", "pid": "3551553", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite\"\nin association with MTV Films. It was filmed in and near Franklin County, Idaho in the summer of 2003. It debuted at the Sundance Film Festival in January 2004. The film's total worldwide gross revenue was $46,118,097. The film has since developed a cult following. Napoleon Dynamite is a socially awkward 16-year-old boy from Preston, Idaho, who lives with his grandmother, Carlinda Dynamite, and his older brother, Kipling Ronald \"\"Kip\"\" Dynamite. Kip, 32, is unemployed and boasts of spending hours on Internet chat rooms with his girlfriends and aspiring to be a cage fighter. Napoleon daydreams his way through school,"} +{"qid": "test1069", "pid": "3551578", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite\"\nWeekly\"\" gave the film a C-. \"\"Entertainment Weekly\"\" later ranked Napoleon #88 on its 2010 list of The 100 Greatest Characters of the Last 20 Years, saying, \"\"A high school misfit found a sweet spot, tapping into our inner dork.\"\" The film was on several year-end lists. \"\"Rolling Stone\"\" placed it at number 22 of the 25 Top DVDs of 2004. The term \"\"The Napoleon Dynamite Problem\"\" has been used to describe the phenomenon where \"\"quirky\"\" films such as \"\"Napoleon Dynamite\"\", \"\"Lost in Translation\"\" and \"\"I Heart Huckabees\"\" prove difficult for researchers to create algorithms that are able to predict"} +{"qid": "test1069", "pid": "3551575", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite\"\nsided with Fox on 9 of the 11 issues. Napoleon Pictures was awarded $150,000 based on Fox accounting irregularities. \"\"Napoleon Dynamite\"\" premiered at the Sundance Film Festival on January 17, 2004 and was theatrically released on June 11, 2004 in the United States by Fox Searchlight Pictures, Paramount Pictures and MTV Films. \"\"Napoleon Dynamite\"\" was released on VHS and DVD on December 21, 2004, by 20th Century Fox Home Entertainment in North America and by Paramount Home Entertainment in all other territories. Rotten Tomatoes, a review aggregator, reports that 71% of 170 surveyed critics gave the film a positive review;"} +{"qid": "test1069", "pid": "2628732", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Alphaville (band)\"\nGo club in Hollywood. The two concerts were also live streamed. Alphaville's song \"\"Forever Young\"\" was featured in the movie \"\"Listen to Me\"\" (1989) featuring Kirk Cameron in one of his first film roles. \"\"Forever Young\"\" was played in a high school prom-related scene in the 2004 film \"\"Napoleon Dynamite\"\". It appeared in an episode of the sitcom \"\"It's Always Sunny in Philadelphia\"\" entitled \"\"\"\" during a scene in which a main character attends a high-school prom, and in a goodbye montage of an episode of \"\"30 Rock\"\". In 2007 when Tourism New Zealand featured the song in its \"\"Forever"} +{"qid": "test1069", "pid": "3551580", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite\"\nJanuary 15, 2012. Director Jared Hess, his co-screenwriter wife Jerusha, and Mike Scully are the producers of the show, in association with 20th Century Fox Television. On May 14, 2012, it was announced that Fox had canceled the series after 6 episodes. The complete series was released on DVD on November 4, 2014 by Olive Films. Napoleon Dynamite Napoleon Dynamite is a 2004 American comedy film produced by Jeremy Coon, Chris Wyatt, Sean Covel and Jory Weitz, written by Jared and Jerusha Hess and directed by Jared Hess. The film stars Jon Heder in the role of the title character,"} +{"qid": "test1069", "pid": "15629004", "query": "when did the movie napoleon dynamite come out", "answer": "2004", "passage": "\"Napoleon Dynamite (TV series)\"\nNapoleon Dynamite (TV series) Napoleon Dynamite is a 2012 American animated sitcom based on the 2004 indie film of the same name. Set in the small town of Preston, Idaho, it follows the adventures of the titular 16-year-old boy, who thinks he is skilled at everything. The series was created by the film's co-writers and directors Jared and Jerusha Hess, who developed it with Mike Scully and proposed it to Fox. The series received mixed reviews; critics were divided on how well the source material translated to animation. The premiere episode had a Nielsen rating of 9.5 million viewers, but"} +{"qid": "test107", "pid": "5825672", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"Clas Thunberg\"\nClas Thunberg Arnold Clas (\"\"Classe\"\") Robert Thunberg (5 April 1893 – 28 April 1973) was a Finnish speed skater who won five Olympic gold medals – three at the inaugural Winter Olympics held in Chamonix in 1924 (along with a silver and a bronze medal) and two at the 1928 Winter Olympics held in St. Moritz. He was the most successful athlete at both of these Winter Olympics, sharing the honour for 1928 Winter Olympics with Johan Grøttumsbraaten of Norway. No other athlete ever won such a high fraction of all Olympic events at a single Games. He was born"} +{"qid": "test107", "pid": "3633677", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"1924 Winter Olympics medal table\"\nand they are listed alphabetically. Two bronze medals were awarded in the 500 metres speed skating event for the third place tie. 1924 Winter Olympics medal table The 1924 Winter Olympics, officially known as the I Olympic Winter Games, and known at the time as \"\"Semaine Internationale des Sports d'Hiver\"\" (\"\"International Winter Sports Week\"\"), was a winter multi-sport event held in Chamonix, France, from 25 January to 5 February 1924. Norway topped the table, collecting seventeen medals in total, including four gold, three of which were won by Thorleif Haug in the nordic combined and cross-country skiing events. Norway also"} +{"qid": "test107", "pid": "3633672", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"1924 Winter Olympics medal table\"\n1924 Winter Olympics medal table The 1924 Winter Olympics, officially known as the I Olympic Winter Games, and known at the time as \"\"Semaine Internationale des Sports d'Hiver\"\" (\"\"International Winter Sports Week\"\"), was a winter multi-sport event held in Chamonix, France, from 25 January to 5 February 1924. Norway topped the table, collecting seventeen medals in total, including four gold, three of which were won by Thorleif Haug in the nordic combined and cross-country skiing events. Norway also achieved two podium sweeps, winning all three medals in both the 50 km cross-country skiing and the nordic combined. This remained a"} +{"qid": "test107", "pid": "19671970", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"2018 Winter Olympics medal table\"\nin, Canada held the record for most gold medals won at a single Winter Olympics with 14, which it won in Vancouver in 2010. This mark was equalled by both Norway and Germany at these Olympics. Norway set the record for most total medals at a single Winter Olympics with 39, surpassing the 37 medals of the United States won at the 2010 Winter Olympics. The mark of 30 NOCs winning medals is the highest for any Winter Olympic Games. Hungary won its first Winter Olympic gold medal ever. Norwegian cross-country skier Marit Bjørgen (two gold, one silver, and two"} +{"qid": "test107", "pid": "6591595", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"Speed skating at the 1994 Winter Olympics\"\nSpeed skating at the 1994 Winter Olympics Speed skating at the 1994 Winter Olympics, was held from 13 February to 25 February. Ten events were contested at Hamar Olympic Hall. Norway led the medal table in speed skating on home ice, led by Johann Olav Koss, who won three gold medals. Bonnie Blair was the most successful woman, with a pair of gold medals. Germany won the most total medals, with six, though only a single gold. Belarus and Russia won their first medals in speed skating, with both nations competing in the Olympics for the first time. Four world"} +{"qid": "test107", "pid": "8199602", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"Anders Haugen\"\nwon the 1924 Olympic ski jumping bronze medal in the individual large hill, though he was not awarded the medal due to a scoring error. In 1974, at the 50th reunion of the 1924 Norwegian team, Norwegian sports historian Jacob Vaage was going over the results when he noticed an error. The bronze medal had been awarded to Norwegian skier Thorleif Haug, who also won three gold medals in the first Winter Olympics in Chamonix. On 12 September 1974, Anders Haugen came to Norway as an 86-year-old and was given the bronze medal by Anna Maria Magnussen, Thorleif Haug's youngest"} +{"qid": "test107", "pid": "6591596", "query": "who won the most medals in the 1924 winter olympics", "answer": "Norway", "passage": "\"Speed skating at the 1994 Winter Olympics\"\nrecords and five Olympic records were set in Lillehammer. Twenty-one nations competed in the speed skating events at Lillehammer. Belarus, Kazakhstan, Russia and Ukraine made their Olympic speed skating debuts. Speed skating at the 1994 Winter Olympics Speed skating at the 1994 Winter Olympics, was held from 13 February to 25 February. Ten events were contested at Hamar Olympic Hall. Norway led the medal table in speed skating on home ice, led by Johann Olav Koss, who won three gold medals. Bonnie Blair was the most successful woman, with a pair of gold medals. Germany won the most total medals,"} +{"qid": "test1070", "pid": "17794430", "query": "who dies in akame ga kill night raid", "answer": "Tatsumi", "passage": "\"Akame ga Kill!\"\nwas created from, Tyrant, to awaken with the doctor has predicting that Tastumi can use his Teigu a few more times left before it fully fuses onto his body and consumes him. As this occurs, Night Raid confronts the last members of Wild Hunt and finish them off, with Akame taking out big generals on the Empire's side. Akame leaves a message to Wave that she and Kurome intend to settle things as they promised each other. After his attempt to convince Kurome not to get through with it, fighting his way through Tatsumi, Wave manages to stop the sisters'"} +{"qid": "test1070", "pid": "17794429", "query": "who dies in akame ga kill night raid", "answer": "Tatsumi", "passage": "\"Akame ga Kill!\"\nrest of Wild Hunt. Syura is killed by Lubbock after he captures both him and Tatsumi. Lubbock is killed while attempting to escape, and Tatsumi is sentenced to death despite Esdeath's attempts to save his life. The remaining Night Raid members attack the execution site to rescue Tatsumi while being pursued by the imperial general Budo, who Mine manages to kill at the cost of her Teigu while falling into a coma. Due to the stress he experienced while escaping the execution site, Tatsumi caused Incrusio to transform. It would be revealed that Tatsumi caused the Danger Beast which Incrusio"} +{"qid": "test1070", "pid": "17794425", "query": "who dies in akame ga kill night raid", "answer": "Tatsumi", "passage": "\"Akame ga Kill!\"\nin the U.S., and became the most watched series premiere in Toonami history. Tatsumi is a fighter who, accompanied by his two childhood friends, sets off to the Capital in search of a way to make money to assist his poverty-stricken village. After being separated from his friends in a bandit attack, Tatsumi unsuccessfully attempts to enlist in the army and is swindled out of his money in the Capital. He is taken in by a noble family, but when an assassin group called Night Raid attacks, he learns that his noble hosts actually intended to torture and kill him"} +{"qid": "test1070", "pid": "17794427", "query": "who dies in akame ga kill night raid", "answer": "Tatsumi", "passage": "\"Akame ga Kill!\"\nout of extremely rare materials as well as legendary animals called . The power of the Teigu is so overwhelming that it is said that when two Teigu users fight each other, one of them is bound to die. Although Night Raid successfully assassinate some of Honest's cohorts, they lose Sheele during a fight against capital garrison member Seryu and then Bulat when Honest recruits the Empire's sadist general Esdeath and her Three Beasts. Tatsumi receives Bulat's Teigu, Incursio, as a result while Esdeath replaced her slain subordinates with a group of Teigu-using warriors called the Jaegers. Night Raid, along"} +{"qid": "test1070", "pid": "17794434", "query": "who dies in akame ga kill night raid", "answer": "Tatsumi", "passage": "\"Akame ga Kill!\"\nshe recovered and gave birth to their child, who was conceived prior to Mine's coma. Kurome and Wave end up together as well, with the former still scarred by her past while the latter lost one of his internal organs as a price for using two Teigu at once. As for Akame, still working as an assassin to defend the restoring nation from those who would exploit it, she heads eastward to protect her nation and find a means to restore Tatsumi's human form. In 2007, Takahiro was asked to do a manga for \"\"Square Enix\"\" magazine. He originally came"} +{"qid": "test1070", "pid": "17794432", "query": "who dies in akame ga kill night raid", "answer": "Tatsumi", "passage": "\"Akame ga Kill!\"\nremaining targets. However, Honest rigged the emperor's Teigu to go berserk. To confront the emperor's Teigu, Tatsumi uses his last transformation to defeat it with Wave's help while changing into Tyrant. Before being fully consumed, Tatsumi asks Akame to kill him before he loses control and kills everyone. She does so during her battle with Esdeath, later revealed to have only killed the Danger Beast's soul so Tatsumi can live, managing to defeat the general at the cost of her own sword. Esdeath acknowledges her loss and uses her power to commit suicide while regretting that she never got Tatsumi"} +{"qid": "test1071", "pid": "3410216", "query": "when was the biltmore house opened to the public", "answer": "March 1930", "passage": "\"Biltmore Estate\"\nEdith intermittently occupied the house, living in an apartment carved out of the former Bachelors' Wing, until the marriage of her daughter to John Francis Amherst Cecil in April 1924. The Cecils went on to have two sons who were born in the same room as their mother. In an attempt to bolster the estate's financial situation during the Great Depression, Cornelia and her husband opened Biltmore to the public in March 1930 at the request of the City of Asheville, which hoped the attraction would revitalize the area with tourism. Biltmore closed during World War II and in 1942,"} +{"qid": "test1072", "pid": "698109", "query": "when was the last time the dodgers played yankees in the world series", "answer": "1981", "passage": "\"Reggie Jackson\"\nYankees won. Jackson was medically cleared to play Game Three, but manager Bob Lemon refused to start him or even play him, allegedly acting under orders from Steinbrenner. The Yankees lost that game and Jackson played the remainder of the series, hitting a home run in Game Four. However, they lost the last three games and the World Series to the Dodgers. Jackson had faced the Dodgers four straight times in the World Series by 1981. No other player in Major League history has played against the same team more consecutive times in the Fall Classic. Jackson became a free-agent"} +{"qid": "test1072", "pid": "4169781", "query": "when was the last time the dodgers played yankees in the world series", "answer": "1981", "passage": "\"1981 World Series\"\n1981 World Series The 1981 World Series was the championship series of the 1981 MLB season. It matched the New York Yankees against the Los Angeles Dodgers, marking their third meeting in the Series in five years as well as a record eleventh Series meeting overall and last Series meeting to date. The Dodgers won the Series in six games in a mirror image of the two teams' last Series meeting in , for their first title since and their first victory over the Yankees since and third World Series win over the Yankees, overall. This is the last World"} +{"qid": "test1072", "pid": "4341588", "query": "when was the last time the dodgers played yankees in the world series", "answer": "1981", "passage": "\"1941 World Series\"\nwere back after a one-year hiatus, having won 13 of their last 14 Series games and 28 of their last 31. This was the first Subway Series between the Brooklyn Dodgers and New York Yankees (though the Yankees had already faced the crosstown New York Giants five times). These two teams would meet a total of seven times from 1941 to 1956 — the Dodgers' only victory coming in 1955 — with an additional four matchups after the Dodgers left for Los Angeles, most recently in 1981. Joe Gordon's home run in the second off of Curt Davis put the"} +{"qid": "test1072", "pid": "14643469", "query": "when was the last time the dodgers played yankees in the world series", "answer": "1981", "passage": "\"History of the Miami Marlins\"\nYankee Stadium since 1981, when the Los Angeles Dodgers did it. The Marlins are also the last team to win a World Series at the original Yankee Stadium; the Yankees themselves would not participate in another World Series until 2009, when they defeated the then-defending champion Philadelphia Phillies at the new Yankee Stadium. The Marlins won the series despite scoring fewer runs (17) than the Yankees (21). The offseason after their second World Series title, the Marlins made a questionable cost-cutting move as Derrek Lee was traded to Chicago Cubs for Hee-seop Choi and pitcher Mike Nannini. The Marlins also"} +{"qid": "test1072", "pid": "7611311", "query": "when was the last time the dodgers played yankees in the world series", "answer": "1981", "passage": "\"Old-Timers' Day\"\nhit, and made a shoestring catch in right field, belying his image as a great hitter but a poor fielder. In 1998, the Yankees celebrated the 20th anniversary of the 1977, 1978 and 1981 World Series that they played against the Los Angeles Dodgers, and invited some members of those Dodger teams. The game was won on a home run by Willie Randolph against Tommy John, who played in all three of those World Series, for the Dodgers in 1977 and 1978 and for the Yankees in 1981, on the losing side each time. In 2004, Luis Sojo hit the"} +{"qid": "test1072", "pid": "13544799", "query": "when was the last time the dodgers played yankees in the world series", "answer": "1981", "passage": "\"World Series\"\nnow-Los Angeles Dodgers four times, losing to them in a four-game sweep in 1963, beating them back-to-back in 1977 and 1978 and losing to them in 1981). An all-New York Series did not recur until 2000, when the Yankees defeated the New York Mets in five games. The last World Series played entirely in one ballpark was the 1944 \"\"Streetcar Series\"\" between the St. Louis Cardinals and the St. Louis Browns. The Cardinals won in six games, all held in their shared home, Sportsman's Park. The 1989 World Series, sometimes called the \"\"Bay Bridge Series\"\" or the \"\"BART Series\"\" (after"} +{"qid": "test1074", "pid": "3848360", "query": "who is tinker air force base named after", "answer": "Major General Clarence L. Tinker", "passage": "\"Tinker Air Force Base\"\nTinker Air Force Base Tinker Air Force Base is a major United States Air Force base, with tenant U.S. Navy and other Department of Defense missions, located in Oklahoma City, Oklahoma. The base, originally known as the Midwest Air Depot, is named in honor of Oklahoma native Major General Clarence L. Tinker, the first Native American Major General. Tinker is the headquarters of the Air Force Materiel Command's (AFMC) Oklahoma City Air Logistics Center (OC-ALC), which is the worldwide manager for a wide range of aircraft, engines, missiles, software and avionics and accessories components. The commander of Air Force Sustainment"} +{"qid": "test1074", "pid": "3848371", "query": "who is tinker air force base named after", "answer": "Major General Clarence L. Tinker", "passage": "\"Tinker Air Force Base\"\nAir Force assets(governed by 10 USC 2667). Tinker Air Force Base is named in honor of Major General Clarence L. Tinker. An Osage from Pawhuska, Oklahoma, he received his wings in 1921. He was a graduate of Wentworth Military Academy who went on to become the first major general of Native American descent in U.S. Army history. In 1926 he was awarded the Soldier's Medal for returning to his blazing aircraft to rescue a fellow officer. On 7 June 1942, he led a flight of B-24 Liberators on a long-range strike against Japanese forces on Wake Island during World War"} +{"qid": "test1075", "pid": "18046959", "query": "who does the voice of cruz on cars 3", "answer": "Cristela Alonzo", "passage": "\"Cristela Alonzo\"\nWatch in 2014\"\" by \"\"Cosmopolitan\"\". Alonzo voiced Cruz Ramirez in the Disney-Pixar film \"\"Cars 3\"\" (2017). In 2018 Alonzo did voice work for the podcast series Bubble created by the Maximum Fun network of podcasts. In 2013, with TV producer Becky Clements, Alonzo created her own semi-autobiographical comedy pilot \"\"Cristela\"\" for ABC. She wrote the pilot with her writing partner, Kevin Hench. It was not greenlit as a part of the 2013–2014 television season. In an unusual move, they decided to plan to shoot a pilot presentation with the penalty money (a 30% fee they got when the network initially"} +{"qid": "test1075", "pid": "17765517", "query": "who does the voice of cruz on cars 3", "answer": "Cristela Alonzo", "passage": "\"Cars 3\"\nbecame [his] main resource to find and understand the emotion\"\" in the film's storyline. Scott Morse, the film's story supervisor, said that he wanted to highlight the film's emotional core and the character's relationships, wanting the film to feel like a sports film while also focusing on McQueen realizing \"\"what their relationship meant to Doc.\"\" On January 5, 2017, it was announced that Armie Hammer and Cristela Alonzo would voice Jackson Storm and Cruz Ramirez, respectively. Two months later, Nathan Fillion, Kerry Washington and Lea DeLaria joined the cast. The production utilized a new rendering system, RIS, which made scenes"} +{"qid": "test1075", "pid": "17765506", "query": "who does the voice of cruz on cars 3", "answer": "Cristela Alonzo", "passage": "\"Cars 3\"\nCars 3 Cars 3 is a 2017 American 3D computer-animated comedy-adventure film produced by Pixar Animation Studios and released by Walt Disney Pictures. Directed by Brian Fee in his directorial debut, written by Kiel Murray, Bob Peterson and Mike Rich, and executive-produced by John Lasseter, who directed the previous \"\"Cars\"\" films, the film is the third installment of the \"\"Cars\"\" franchise and a sequel to \"\"Cars 2\"\" (2011). The returning voices of Owen Wilson, Bonnie Hunt and Larry the Cable Guy are joined by Cristela Alonzo, Chris Cooper, Armie Hammer, Nathan Fillion, Kerry Washington and Lea DeLaria, in addition to"} +{"qid": "test1076", "pid": "8394044", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Help Me Make It Through the Night\"\nHelp Me Make It Through the Night \"\"Help Me Make It Through The Night\"\" is a country music ballad written and composed by Kris Kristofferson and released on his 1970 album \"\"Kristofferson\"\". It was covered later in 1970 by Sammi Smith, on the album \"\"Help Me Make It Through the Night\"\". Smith's recording of the song remains the most commercially successful and most well-known version in the United States. Her recording ranks among the most successful country singles of all time in terms of sales, popularity, and radio airplay. It topped the country singles chart, and was also a crossover"} +{"qid": "test1076", "pid": "8394055", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Help Me Make It Through the Night\"\n12 on \"\"Songs They Wish They Had Written\"\" week. In 2015, DeAnna Johnson covered this song on The Voice. Help Me Make It Through the Night \"\"Help Me Make It Through The Night\"\" is a country music ballad written and composed by Kris Kristofferson and released on his 1970 album \"\"Kristofferson\"\". It was covered later in 1970 by Sammi Smith, on the album \"\"Help Me Make It Through the Night\"\". Smith's recording of the song remains the most commercially successful and most well-known version in the United States. Her recording ranks among the most successful country singles of all time"} +{"qid": "test1076", "pid": "14422486", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Help Me Make It Through the Night (album)\"\nalbum consisted of eleven tracks of new material. The release included a series of cover versions, such as Patsy Cline's \"\"There He Goes\"\", The First Edition's \"\"But You Know I Love You\"\", and Johnny Darrell's \"\"With Pen in Hand\"\". Two songs composed by Kris Kristofferson were also included: the Help Me Make It Through the Night and Johnny Cash's \"\"Sunday Mornin' Comin' Down\"\". The debut record also contained five new tracks (\"\"Saunder's Ferry Lane\"\", \"\"He's Everywhere\"\", \"\"Don't Blow No Smoke on Me\"\", \"\"When Michael Calls\"\", and \"\"This Room for Rent\"\"). The album was originally released on an LP record, with"} +{"qid": "test1076", "pid": "10976977", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Why Me (Kris Kristofferson song)\"\n\"\"Why Me\"\", on her 2017 album \"\"\"\"Let Them Fall In Love\"\"\"\". Why Me (Kris Kristofferson song) \"\"Why Me\"\" is an American country and gospel song written and recorded by American country music singer and songwriter Kris Kristofferson. Kristofferson had become the toast of Nashville in the early 1970s, with the massive success of compositions including \"\"For the Good Times,\"\" \"\"Me and Bobby McGee,\"\" \"\"Sunday Morning Coming Down,\"\" and \"\"Help Me Make It Through the Night\"\", among many others. He had a hit of his own as well, with \"\"Lovin' Her Was Easier (Than Anything I'll Ever Do Again).\"\" \"\"Why Me\"\""} +{"qid": "test1076", "pid": "10976968", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Why Me (Kris Kristofferson song)\"\nWhy Me (Kris Kristofferson song) \"\"Why Me\"\" is an American country and gospel song written and recorded by American country music singer and songwriter Kris Kristofferson. Kristofferson had become the toast of Nashville in the early 1970s, with the massive success of compositions including \"\"For the Good Times,\"\" \"\"Me and Bobby McGee,\"\" \"\"Sunday Morning Coming Down,\"\" and \"\"Help Me Make It Through the Night\"\", among many others. He had a hit of his own as well, with \"\"Lovin' Her Was Easier (Than Anything I'll Ever Do Again).\"\" \"\"Why Me\"\" was recorded by Kristofferson in 1972, featuring backing vocals by soon-to-be"} +{"qid": "test1076", "pid": "7086875", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"He Stopped Loving Her Today\"\nto Sherrill and Jones himself, the singer hated the song when he first heard it. In Bob Allen's biography of the singer, Sherrill states, \"\"He thought it was too long, too sad, too depressing and that nobody would ever play it...He hated the melody and wouldn't learn it.\"\" Sherrill also claims that Jones frustrated him by continually singing the song to the melody of the Kris Kristofferson hit \"\"Help Me Make It Through the Night\"\". In the \"\"Same Ole Me\"\" retrospective, Sherrill recalls a heated exchange during one recording session: \"\"I said 'That's not the melody!' and he said 'Yeah,"} +{"qid": "test1076", "pid": "1755773", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"George Jones\"\nby Patsy Cline., According to producer Billy Sherrill and Jones himself, the singer hated the song when he first heard it. In Bob Allen's biography of the singer, Sherrill states, \"\"He thought it was too long, too sad, too depressing and that nobody would ever play it...He hated the melody and wouldn't learn it.\"\" Sherrill also claims that Jones frustrated him by continually singing the song to the melody of the Kris Kristofferson hit \"\"Help Me Make It Through the Night\"\". In the \"\"Same Ole Me\"\" retrospective, Sherrill recalls a heated exchange during one recording session: \"\"I said 'That's not"} +{"qid": "test1076", "pid": "1448690", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Kris Kristofferson\"\nand Bobby McGee\"\" from her posthumous album \"\"Pearl\"\". When released, it stayed on the number-one spot on the charts for weeks. More hits followed from others: Ray Price (\"\"I'd Rather Be Sorry\"\"); Joe Simon (\"\"Help Me Make It Through the Night\"\"); Bobby Bare (\"\"Please Don't Tell Me How the Story Ends\"\"); O.C. Smith (\"\"Help Me Make It Through the Night\"\"); Jerry Lee Lewis (\"\"Me and Bobby McGee\"\"); Patti Page (\"\"I'd Rather Be Sorry\"\"); and Peggy Little (\"\"I've Got to Have You\"\"). The country music performer Kenny Rogers has also recorded some of Kristofferson's compositions, including a version of \"\"Me and"} +{"qid": "test1076", "pid": "1448677", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Kris Kristofferson\"\nKris Kristofferson Kristoffer Kristofferson (born June 22, 1936) is an American actor and singer-songwriter. He wrote and recorded the songs \"\"Me and Bobby McGee\"\", \"\"For the Good Times\"\", \"\"Sunday Mornin' Comin' Down\"\", and \"\"Help Me Make It Through the Night\"\". Kristofferson composed his own songs and collaborated with Nashville songwriters such as Shel Silverstein. In 1985, Kristofferson joined fellow country artists Waylon Jennings, Willie Nelson and Johnny Cash in forming the country music supergroup The Highwaymen, and formed a key creative force in the Outlaw country music movement that eschewed the Nashville music machine in favor of independent songwriting and"} +{"qid": "test1076", "pid": "9822582", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"The Waking Up Laughing Tour\"\ndown.\"\" For the concert at the BJCC Arena, Mary Colurso \"\"(The Birmingham News)\"\" felt McBride gave a crowd pleasing performance. He furthers writes, \"\"Fans expected no less. The lovely singer radiates a wholesome, friendly charm that makes her seem safe and utterly approachable -- the superstar next door, we might say. McBride was at her best while singing two vintage covers: Loretta Lynn's 'You Ain't Woman Enough\"\" and Kris Kristofferson's 'Help Me Make It Through the Night.'\"\" Additional acclaim continue with the concert at the Radio City Music Hall. Mac Randall \"\"(Newsday)\"\" answered, \"\"McBride's voice is honey-sweet and stunningly pure,"} +{"qid": "test1076", "pid": "4870816", "query": "who's the original singer of help me make it through the night", "answer": "Kris Kristofferson", "passage": "\"Dottie West\"\nand Best Female Country Vocal Performance a year later. After the release of \"\"House of Love\"\" in 1974, West notched a number of Top 40 hits including the Top 10 \"\"Last Time I Saw Him\"\", \"\"House of Love\"\", and \"\"Lay Back Lover\"\". Before signing with United Artists Records in 1976, her final RCA album, \"\"Carolina Cousins\"\", was released in 1975. In the late 1970s, West's image underwent a major metamorphosis; the woman who had once performed outfitted in conservative gingham dresses, and had originally refused to record Kris Kristofferson's \"\"Help Me Make It Through the Night\"\" because it was \"\"too"} +{"qid": "test1078", "pid": "10950326", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"History of Jerusalem during the Middle Ages\"\nand completed the construction of the Dome of the Rock over the Foundation Stone on Jerusalem's Temple Mount. Although the Qur'an does not mention the name \"\"Jerusalem\"\", the hadith specify that it was from Jerusalem that Muhammad ascended to heaven in the Night Journey, or Isra and Miraj. Al-Malik built the octagonal and gold-sheeted Dome over the location from which Muhammad was believed to have ascended into heaven. The Al-Aqsa Mosque (named for the \"\"farthest mosque\"\") was also built nearby, again in honor of the story of the Night Journey. Under the early centuries of Muslim rule, especially during the"} +{"qid": "test1078", "pid": "18641318", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"History of Roman and Byzantine domes\"\nCathedral by Charlemagne. The dome was rebuilt by 537–8 with cypress wood from Daphne after being destroyed in a fire. Most domes on churches in the Syrian region were built of wood, like that of the later Dome of the Rock in Jerusalem, and the dome of the Domus Aurea survived a series of earthquakes in the 6th century that destroyed the rest of the building. There is no record of the church being rebuilt after the earthquake of 588, perhaps due to the general abandonment of many public buildings in what was no longer a capital of the Empire."} +{"qid": "test1078", "pid": "11311411", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Kamel al-Budeiri\"\n1923, when Kamel Budeiri left Jerusalem and crossed to Transjordan to meet the Saudi princes of Najd and update them on the latest developments in Jerusalem and unify positions on rejecting the Balfour Declaration and the Zionist intentions of establishing a Jewish state in Palestine. He carried on him pictures of the Aqsa Mosque and the Dome of the Rock with the Star of David placed on its then bronze dome. He took a Bedouin guide from the Howeitat tribe to escort him through the Jordanian deserts to Najd, where he was assassinated in what seems to be part of"} +{"qid": "test1078", "pid": "12496848", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Dome of the Prophet\"\nlarger than the entrance to the Dome of the Rock structure. Dome of the Prophet The Dome of the Prophet () also known as the Dome of Gabriel (\"\"Qubbat Jibril\"\") is a free-standing dome in the northern Temple Mount (\"\"Haram ash-Sharif\"\") in Jerusalem that serves as a symbolic monument rather than a religious building. It is a part of the terrace of the Dome of the Rock and is one of three Ottoman-built free-standing domes in the Temple Mount vicinity. Originally, the Dome of the Prophet was built in 1538 by Muhammad Bey, Ottoman Governor of Jerusalem. However, it was"} +{"qid": "test1078", "pid": "10026807", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Akhmad Kadyrov Mosque\"\nsites of Islam - 27 of them imitating the Dome of the Rock in Jerusalem's Temple Mount compound, 8 are made in the appearance of the Green Dome in Medina's Masjid al-Nabawi and the biggest one measuring 8 meters in length and width, mimicking the Kaaba in Mecca. It took several tons of bronze and 2.5 kg of the highest quality of gold to create the chandeliers containing more than a million pieces and made of selectively designed Chechen ornaments and Swarovski crystals from Turkey. The prayer niche in the qiblah wall of the mosque is 8 meters high and"} +{"qid": "test1078", "pid": "12496845", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Dome of the Prophet\"\nDome of the Prophet The Dome of the Prophet () also known as the Dome of Gabriel (\"\"Qubbat Jibril\"\") is a free-standing dome in the northern Temple Mount (\"\"Haram ash-Sharif\"\") in Jerusalem that serves as a symbolic monument rather than a religious building. It is a part of the terrace of the Dome of the Rock and is one of three Ottoman-built free-standing domes in the Temple Mount vicinity. Originally, the Dome of the Prophet was built in 1538 by Muhammad Bey, Ottoman Governor of Jerusalem. However, it was restored in 1620 on the orders of Farruk Bey, the succeeding"} +{"qid": "test1078", "pid": "12408137", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Armenians in Israel\"\ncentury. Many Armenians from Kütahya, a city in Turkey, were known for their hand-painted ceramic wares and tiles. In 1919, several master craftsmen were brought to Jerusalem to renovate the tiles covering the facade of the Dome of the Rock. They remained in Jerusalem and developed the art of Armenian ceramics. After the 1948 Arab–Israeli War and the establishment of the State of Israel, a number of Armenians residing in what had been the British Mandate of Palestine took up Israeli citizenship, whereas other Armenian residents of Old City of Jerusalem and the territory captured by Jordan received Jordanian nationality.."} +{"qid": "test1078", "pid": "18641577", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"History of Medieval Arabic and Western European domes\"\nthe Holy Sepulchre; an outer dome shell was added in the 14th century. The domed baptisteries of Cremona (1176) and Parma (1196) also appear to have been influenced by the rotunda. The 12th century rotunda of the Holy Sepulchre at Santo Stefano, Bologna, and the basilica at Neuvy-Saint-Sépulchre are imitations of Jerusalem's Church of the Holy Sepulchre although, like many of the imitations across Europe, they differ in their details, including their domes. The Dome of the Rock and the Al-Aqsa Mosque on the Temple Mount of Jerusalem were taken by the crusaders to represent the Temple of Solomon and"} +{"qid": "test1078", "pid": "753395", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Dome of the Rock\"\nDome of the Rock The Dome of the Rock ( \"\"Qubbat al-Sakhrah\"\", \"\"Kippat ha-Sela\"\") is an Islamic shrine located on the Temple Mount in the Old City of Jerusalem. It was initially completed in 691 CE at the order of Umayyad Caliph Abd al-Malik during the Second Fitna on the site of the Second Jewish Temple, destroyed during the Roman Siege of Jerusalem in 70 CE. The original dome collapsed in 1015 and was rebuilt in 1022–23. The Dome of the Rock is in its core one of the oldest extant works of Islamic architecture. Its architecture and mosaics were"} +{"qid": "test1078", "pid": "18861772", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"1834 Jerusalem earthquake\"\n1834 Jerusalem earthquake The 1834 Jerusalem earthquake occurred on 13 May during the first few days of the Peasants' revolt in Palestine against Ibrahim Pasha of Egypt. The earthquake's epicenter was in the Jerusalem area. After a brief lull, fighting resumed the next day. Damage from the quake included the collapse of part of the city wall near the Dome of the Rock, the collapse of the dome over the Chapel of the Ascension, a minaret in the city and one on the Mount of Olives, the collapse or damage of several large Jerusalem homes, and the severe damage of"} +{"qid": "test1078", "pid": "13562074", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Roof-top synagogue\"\nfor approximately six people, around the edges. The large dome was intended as a replica of the Dome of the Rock in Jerusalem. The roof-top synagogue is one of a considerable number of synagogues and synagogue domes built in the form of an octagon, a tradition that developed from the once widely held opinion that the architects of the Dome of the Rock emulated the shape of the Temple in Jerusalem and, therefore, that the ancient Jewish Temple was octagonal in shape. An example of this opinion can be seen in Raphael's \"\"The Marriage of the Virgin. Roof-top synagogue The"} +{"qid": "test1078", "pid": "753418", "query": "what is the big gold dome in jerusalem", "answer": "Dome of the Rock", "passage": "\"Dome of the Rock\"\nBudapest, and the New Synagogue in Berlin, Germany. It was long believed by Christians that the Dome of the Rock echoed the architecture of the Temple in Jerusalem, as can be seen in Raphael's \"\"The Marriage of the Virgin\"\" and in Perugino's \"\"Marriage of the Virgin\"\". Citations Dome of the Rock The Dome of the Rock ( \"\"Qubbat al-Sakhrah\"\", \"\"Kippat ha-Sela\"\") is an Islamic shrine located on the Temple Mount in the Old City of Jerusalem. It was initially completed in 691 CE at the order of Umayyad Caliph Abd al-Malik during the Second Fitna on the site of the"} +{"qid": "test108", "pid": "5099625", "query": "what is the final season of downton abbey", "answer": "the sixth", "passage": "\"Matthew Goode\"\nchess champion. In 2014, Goode co-starred in the ITV drama \"\"Downton Abbey\"\"s Season 5 Christmas special titled \"\"A Moorland Holiday\"\" as Henry Talbot. He returned to \"\"Downton Abbey\"\" in October 2015 beginning in the fourth episode of the sixth season. Goode was also scheduled for a brief appearance in the upcoming \"\"Downton Abbey\"\" film which began production in late August 2018. In May 2015, Goode left \"\"The Good Wife\"\" after the sixth-season finale. After appearing in multiple films in the mid-2010s, he appeared in 2016's \"\"Allied\"\". He began working on WGN's production of \"\"Roadside Picnic\"\" series based on the Strugatsky"} +{"qid": "test108", "pid": "17549360", "query": "what is the final season of downton abbey", "answer": "six", "passage": "\"Downton Abbey (series 1)\"\nin perpetuity. The earl and countess, who have three daughters and no son, arranged for their eldest daughter to marry her cousin, son of the then-heir presumptive. The demise of both heirs in the sinking of the \"\"Titanic\"\" destroys the plans and brings into play a distant male cousin, Matthew Crawley, a solicitor from Manchester, as heir presumptive to Downton and the countess's fortune. Upstairs Downstairs The first series of \"\"Downton Abbey\"\" received universal and widespread critical acclaim, including commercial success. On 14 July 2011, \"\"Downton Abbey\"\" received eleven nominations for the 63rd Primetime Emmy Awards winning six, including"} +{"qid": "test108", "pid": "14929290", "query": "what is the final season of downton abbey", "answer": "six", "passage": "\"Downton Abbey\"\nis hired on Barrow's recommendation. During the annual Downton Abbey Christmas celebration, Tom Branson announces he is moving to America to work for his cousin, taking daughter Sybil with him. Mr Carson proposes marriage to Mrs Hughes and she accepts. In series six, covering the year 1925, changes are once again afoot at Downton Abbey as the middle class rises and more bankrupted aristocrats are forced to sell off their large estates. Downton must do more to ensure its future survival; reductions in staff are considered, forcing Barrow to look for a job elsewhere. Lady Mary defies a blackmailer, who"} +{"qid": "test108", "pid": "14929339", "query": "what is the final season of downton abbey", "answer": "Six", "passage": "\"Downton Abbey\"\nSix on DVD in the US, including the final 2015 Christmas Special. A soundtrack, featuring music from the series and also new songs, was released by Decca in September 2011. Music by John Lunn and Don Black features, with vocals from Mary-Jess Leaverland and Alfie Boe. \"\"Downton Abbey\"\" has been credited with spawning a massive worldwide increase in demand for professionally trained butlers, especially British butlers, notably in China, Russia, and parts of the Middle East. Between 2010 and 2012, demand was thought to have doubled, leading to some butlers fetching salaries as high as £150,000. In 2014, China's first"} +{"qid": "test1080", "pid": "15318530", "query": "where is wind power used most in the united states", "answer": "Texas", "passage": "\"United States Wind Energy Policy\"\nordinances and permitting requirements. At the end of 2010, the installed capacity of wind power in the United States was just over 40,000 megawatts (MW), making it second in the world behind China. In 2010 Wind power accounted for 2.3% of the electricity generated in the United States. This amounted to 94,650 thousand megawatt-hours of electricity. Driven by state renewable energy targets, fourteen states have installed over 1,000 MW of wind capacity, and a total of 37 states now have installed at least some utility-scale wind power. Texas, with 9,728 MW of capacity, has the most installed wind power capacity"} +{"qid": "test1080", "pid": "10077134", "query": "where is wind power used most in the united states", "answer": "Texas", "passage": "\"Wind power in the United States\"\n26.5% of new power capacity. In 2016, Nebraska became the eighteenth state to have installed over 1,000 MW of wind power capacity. Texas, with over 22,000 MW of capacity, about 15% of the state's electricity usage, had the most installed wind power capacity of any U.S. state at the end of 2018. Texas also had more under construction than any other state currently has installed. The state generating the highest percentage of energy from wind power is Iowa, while North Dakota has the most per capita wind generation. The Alta Wind Energy Center in California is the largest wind farm"} +{"qid": "test1080", "pid": "402436", "query": "where is wind power used most in the united states", "answer": "Texas", "passage": "Texas\nUnited Kingdom. The state is a leader in renewable energy commercialization; it produces the most wind power in the nation. In 2014, 10.6% of the electricity consumed in Texas came from wind turbines. The Roscoe Wind Farm in Roscoe, Texas, is one of the world's largest wind farms with a 781.5 megawatt (MW) capacity. The Energy Information Administration states the state's large agriculture and forestry industries could give Texas an enormous amount biomass for use in biofuels. The state also has the highest solar power potential for development in the nation. With large universities systems coupled with initiatives like the"} +{"qid": "test1080", "pid": "10077145", "query": "where is wind power used most in the united states", "answer": "Texas", "passage": "\"Wind power in the United States\"\nthe Clean Power Plan and PTC extensions. After the current PTC phase-out in 2021, additional wind power capacity is expected to be around 5 GW per year. In 2015, electric power generation from wind power was 10 percent or more in twelve U.S. states: Colorado, Idaho, Iowa, Kansas, Maine, Minnesota, North Dakota, Oklahoma, Oregon, and South Dakota, Vermont, and Texas. Iowa, South Dakota, and Kansas each had more than 20 percent of their electric power generation come from wind. Twenty states now have more than five percent of their generation coming from wind. The five states with the most wind"} +{"qid": "test1080", "pid": "14720994", "query": "where is wind power used most in the united states", "answer": "Texas", "passage": "\"Wind power in Kansas\"\nsoutheastern Kansas experienced the majority of high unemployment rates in the state (i.e., >6%). Cloud County Community College has a wind energy technology program in Concordia. CCCC is the only college in the state of Kansas with an AWEA-certified wind energy program and only one of seven in the entire United States. They are located just two miles north of the Meridian Way wind farm. Source: Wind power in Kansas The U.S. State of Kansas has high potential capacity for wind power, second behind Texas. The most recent estimates (2012) are that Kansas has a potential for 952 GW of"} +{"qid": "test1081", "pid": "16582711", "query": "who sang once upon a dream at the end of maleficent", "answer": "Lana Del Rey", "passage": "\"Maleficent (film)\"\non \"\"real sets with real lights\"\". James Newton Howard was hired to score the film in October 2012. On January 23, 2014, it was announced that recording artist Lana Del Rey would be covering the song \"\"Once Upon a Dream\"\", from the 1959 film \"\"Sleeping Beauty\"\" as the title song for \"\"Maleficent\"\". The song \"\"Once Upon a Dream\"\" is based on the Grand Waltz from ballet \"\"Sleeping Beauty\"\" written by Russian composer Tchaikovsky. Del Rey was handpicked by Angelina Jolie to perform the song. The single was released on January 26 and was made available for free for a limited"} +{"qid": "test1081", "pid": "16582714", "query": "who sang once upon a dream at the end of maleficent", "answer": "Lana Del Rey", "passage": "\"Maleficent (film)\"\nphotography. Walt Disney Pictures released the teaser poster for \"\"Maleficent\"\" on November 12, 2013, featuring Jolie in costume and makeup, akin to the character's depiction in the original film. The first trailer was released the following day, on November 13. The first teaser trailer was attached to \"\"\"\", \"\"\"\", \"\"Frozen\"\", and \"\"\"\". Two more trailers were released in January 2014, revealing Maleficent's appearance. A third trailer featured Lana Del Rey singing \"\"Once Upon a Dream\"\". The final trailer was released on March 18, 2014. Starting April 18, 2014, Disney's Hollywood Studios and Disney California Adventure previewed the film inside the"} +{"qid": "test1081", "pid": "16770195", "query": "who sang once upon a dream at the end of maleficent", "answer": "Lana Del Rey", "passage": "\"Once Upon a Dream (Sleeping Beauty song)\"\nWalt Disney Records' album, Dconstructed. \"\"Once Upon a Dream\"\" was covered by American singer and songwriter Lana Del Rey for the dark fantasy film \"\"Maleficent\"\" (2014), which serves as a prequel to and re-imagining of the original \"\"Sleeping Beauty\"\". The song was released on January 26, 2014; it was made available as a free digital download during its first week of availability by the Google Play Store. On February 4, the digital download was made available for purchase. The cover received generally positive reception. \"\"Forbes\"\" called the cover \"\"moody and low-key\"\" while Stereogum described it as \"\"swoony\"\" and \"\"spaced-out\"\". Hypable"} +{"qid": "test1081", "pid": "15944080", "query": "who sang once upon a dream at the end of maleficent", "answer": "Lana Del Rey", "passage": "\"Lana Del Rey\"\nalso titled \"\"Tropico\"\", was made available for purchase via iTunes; it includes the film itself along with the three aforementioned songs. On January 23, 2014, it was announced that Del Rey would be covering the song \"\"Once Upon a Dream\"\" (from the 1959 film \"\"Sleeping Beauty\"\") for the 2014 dark fantasy film \"\"Maleficent\"\". The single was released on January 26. On February 20, Del Rey posted a picture of herself and Dan Auerbach on Twitter with the caption \"\"Me and Dan Auerbach are excited to present you Ultraviolence\"\". The first single off \"\"Ultraviolence\"\", \"\"West Coast\"\", was released on April 14."} +{"qid": "test1081", "pid": "16168550", "query": "who sang once upon a dream at the end of maleficent", "answer": "Lana Del Rey", "passage": "\"Lana Del Rey discography\"\nthe EP. In 2013 and January 2014, Del Rey contributed the songs \"\"Young and Beautiful\"\" and \"\"Once Upon a Dream\"\" to of F. Scott Fitzgerald's \"\"The Great Gatsby\"\" and the soundtrack for \"\"Maleficent\"\", respectively. Her third studio album, \"\"Ultraviolence\"\", was released in the summer of 2014 and debuted at number one in 12 countries. The album produced five singles: \"\"West Coast\"\", \"\"Shades of Cool\"\", \"\"Ultraviolence\"\", \"\"Brooklyn Baby\"\", and \"\"Black Beauty\"\". As of July 2014, \"\"Ultraviolence\"\" has sold more than one million copies worldwide. In December 2014, two songs \"\"Big Eyes\"\" and \"\"I Can Fly\"\" were released, which Del Rey recorded"} +{"qid": "test1082", "pid": "5413338", "query": "who played john connor in the original terminator", "answer": "Michael Edwards", "passage": "\"John Connor\"\nJohn Connor John Connor is a fictional character and the primary protagonist of the \"\"Terminator\"\" franchise. Created by writer and director James Cameron, the character is first referred to in the 1984 film \"\"The Terminator\"\" and first appears in its 1991 sequel \"\"\"\" initially portrayed by Michael Edwards (briefly as the older Connor) and then by teenage actor Edward Furlong throughout the remainder of the film; in addition, Linda Hamilton's real-life son Dalton Abbot played John as a toddler in a dream sequence. The character is subsequently portrayed in the films by Nick Stahl in \"\"\"\" (2003), Christian Bale in"} +{"qid": "test1082", "pid": "5413344", "query": "who played john connor in the original terminator", "answer": "Michael Edwards", "passage": "\"John Connor\"\nsayings like \"\"\"\"hasta la vista\"\", baby!.\"\" He forms an emotional bond with the Terminator, coming to regard it as a father figure, and does not want the Terminator to destroy himself at the end of the film, despite the Terminator's warning that allowing him to continue existing creates the risk that his chip could be used to recreate Skynet at some future date. John Connor is briefly seen at the beginning of the film in a flash-forward as an adult, played by Michael Edwards. Dalton Abbot (Linda Hamilton's son), also played John as a toddler in a dream sequence. The"} +{"qid": "test1083", "pid": "1925644", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "\"Octet rule\"\nOctet rule The octet rule is a chemical rule of thumb that reflects observation that atoms of main-group elements tend to combine in such a way that each atom has eight electrons in its valence shell, giving it the same electron configuration as a noble gas. The rule is especially applicable to carbon, nitrogen, oxygen, and the halogens, but also to metals such as sodium or magnesium. The valence electrons can be counted using a Lewis electron dot diagram as shown at the right for carbon dioxide. The electrons shared by the two atoms in a covalent bond are counted"} +{"qid": "test1083", "pid": "61362", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "Chemistry\nvalence electrons are shared by two atoms: the resulting electrically neutral group of bonded atoms is termed a molecule. Atoms will share valence electrons in such a way as to create a noble gas electron configuration (eight electrons in their outermost shell) for each atom. Atoms that tend to combine in such a way that they each have eight electrons in their valence shell are said to follow the octet rule. However, some elements like hydrogen and lithium need only two electrons in their outermost shell to attain this stable configuration; these atoms are said to follow the \"\"duet rule\"\","} +{"qid": "test1083", "pid": "124525", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "\"Electron counting\"\nshares its electrons with neighboring Ti atoms), C and Ti 'exist' only with appropriate counterions (with which they probably share electrons). So these formalisms are only used to predict stabilities or properties of compounds! Electron counting Electron counting is a formalism used for classifying compounds and for explaining or predicting electronic structure and bonding. Many rules in chemistry rely on electron-counting: Atoms that do not obey their rule are called \"\"electron-deficient\"\" when they have too few electrons to achieve a \"\"noble gas configuration\"\", or \"\"hypervalent\"\" when they have too many electrons. Since these compounds tend to be more reactive than"} +{"qid": "test1083", "pid": "280093", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "\"Noble gas\"\nelectrons. In 1916, Gilbert N. Lewis formulated the \"\"octet rule\"\", which concluded an octet of electrons in the outer shell was the most stable arrangement for any atom; this arrangement caused them to be unreactive with other elements since they did not require any more electrons to complete their outer shell. In 1962, Neil Bartlett discovered the first chemical compound of a noble gas, xenon hexafluoroplatinate. Compounds of other noble gases were discovered soon after: in 1962 for radon, radon difluoride (), which was identified by radiotracer techniques and in 1963 for krypton, krypton difluoride (). The first stable compound"} +{"qid": "test1083", "pid": "124522", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "\"Electron counting\"\nElectron counting Electron counting is a formalism used for classifying compounds and for explaining or predicting electronic structure and bonding. Many rules in chemistry rely on electron-counting: Atoms that do not obey their rule are called \"\"electron-deficient\"\" when they have too few electrons to achieve a \"\"noble gas configuration\"\", or \"\"hypervalent\"\" when they have too many electrons. Since these compounds tend to be more reactive than compounds that obey their rule, electron counting is an important tool for identifying the reactivity of molecules. Two methods of electron counting are popular and both give the same result. It is important, though,"} +{"qid": "test1083", "pid": "767950", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "Tennessine\nastatine is estimated to be between 6.2 and 6.5 g/cm. The known isotopes of tennessine, Ts and Ts, are too short-lived to allow for chemical experimentation at present. Nevertheless, many chemical properties of tennessine have been calculated. Unlike the previous group 17 elements, tennessine may not exhibit the chemical behavior common to the halogens. For example, fluorine, chlorine, bromine, and iodine routinely accept an electron to achieve the more stable electronic configuration of a noble gas, obtaining eight electrons (octet) in their valence shells instead of seven. This ability weakens as atomic weight increases going down the group; tennessine would"} +{"qid": "test1083", "pid": "34586", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "Beryllium\nevidence of lower valence of beryllium is in the solubility of the metal in BeCl, and in two neutral beryllium bis(carbene) compounds in which the Be center bears a formal oxidation state of zero. Due to the octet rule, atoms tend to seek a valence of 8 in order to resemble a noble gas. Beryllium tries to achieve a coordination number of 4 because its two covalent bonds fill half of this octet. Tetracoordination allows beryllium compounds, such as the fluoride or chloride, to form polymers. This characteristic is employed in analytical techniques using EDTA as a ligand. EDTA preferentially"} +{"qid": "test1083", "pid": "280101", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "\"Noble gas\"\nin its electron configuration, especially the outermost shells resulting in trends in chemical behavior: The noble gases have full valence electron shells. Valence electrons are the outermost electrons of an atom and are normally the only electrons that participate in chemical bonding. Atoms with full valence electron shells are extremely stable and therefore do not tend to form chemical bonds and have little tendency to gain or lose electrons. However, heavier noble gases such as radon are held less firmly together by electromagnetic force than lighter noble gases such as helium, making it easier to remove outer electrons from heavy"} +{"qid": "test1083", "pid": "280111", "query": "the octet rule states that in chemical compounds atoms tend to have the electron configuration of a", "answer": "noble gas", "passage": "\"Noble gas\"\nhave found use in the study of the structure and reactivity of fullerenes by means of the nuclear magnetic resonance of the noble gas atom. Noble gas compounds such as xenon difluoride () are considered to be hypervalent because they violate the octet rule. Bonding in such compounds can be explained using a three-center four-electron bond model. This model, first proposed in 1951, considers bonding of three collinear atoms. For example, bonding in is described by a set of three molecular orbitals (MOs) derived from p-orbitals on each atom. Bonding results from the combination of a filled p-orbital from Xe"} +{"qid": "test1086", "pid": "14208570", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"Baby (Justin Bieber song)\"\nepisode, \"\"OMG\"\" (parody of TMZ), there is a clip of Justin Beberry (portrayal of Bieber) singing a parody version called, \"\"Gravy\"\". Baby (Justin Bieber song) \"\"Baby\"\" is a song by Canadian recording artist Justin Bieber. It was released as the lead single from the latter half of Bieber's debut album, \"\"My World 2.0\"\". The track was written by Bieber with Christopher \"\"Tricky\"\" Stewart and Terius \"\"The-Dream\"\" Nash, both of whom worked with Bieber on \"\"One Time\"\", and also by R&B singer Christina Milian and labelmate, rapper Ludacris. It was available for digital download on January 18, 2010. The song received"} +{"qid": "test1086", "pid": "16463457", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"All Around the World (Justin Bieber song)\"\nbe loved\"\". The track opens with he singing, \"\"You're beautiful, beautiful/You should know it/I think it's time, think it's time/That you show it\"\", lines that were compared to One Direction's \"\"What Makes You Beautiful\"\" (2011). As the track follows, Bieber encourages girls to release their inner beauty: \"\"Light it up, so explosive/Why you acting so shy, holding back/DJ bring that back.\"\" During the rap section, Ludacris references their previous collaboration on \"\"Baby\"\" (2010), saying, \"\"Once again, the dynamic duo is back at it!/ JB, Ludacris!/ I love everything about you/ You're imperfectly perfect/ Everyone's itching for beauty/But they're just scratching"} +{"qid": "test1086", "pid": "14208554", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"Baby (Justin Bieber song)\"\nlike/Baby, baby, baby, ooooh/I thought you'd always be mine\"\" to fifties ballads like \"\"Tears on My Pillow\"\", \"\"Why Do Fools Fall in Love\"\" and \"\"Earth Angel\"\". Lyrically, Bieber's lines explain his distress over his lost love, and promise to get it back, featured in lines like, \"\"And I wanna play it cool/But I'm losin' you…/I'm in pieces/So come and fix me…\"\". The chorus features the distinct and repetitive \"\"baby, baby, baby, ohhhh (nooooo)\"\" hook. After the second verse, Ludacris comes in with the verse-rap, an anecdote of young love when he was thirteen, as it runs \"\"When I was 13/I"} +{"qid": "test1086", "pid": "14208548", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"Baby (Justin Bieber song)\"\nBaby (Justin Bieber song) \"\"Baby\"\" is a song by Canadian recording artist Justin Bieber. It was released as the lead single from the latter half of Bieber's debut album, \"\"My World 2.0\"\". The track was written by Bieber with Christopher \"\"Tricky\"\" Stewart and Terius \"\"The-Dream\"\" Nash, both of whom worked with Bieber on \"\"One Time\"\", and also by R&B singer Christina Milian and labelmate, rapper Ludacris. It was available for digital download on January 18, 2010. The song received airplay directly after release, officially impacting mainstream and rhythmic radio on January 26, 2010. The song is uptempo R&B, blending together"} +{"qid": "test1086", "pid": "16463453", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"All Around the World (Justin Bieber song)\"\nAll Around the World (Justin Bieber song) \"\"All Around the World\"\" is a song by Canadian singer Justin Bieber, from his third studio album, \"\"Believe\"\" (2012). It was written by Bieber, Sir Nolan and Nasri of The Messengers in collaboration with Ludacris, who guest features. This was the second collaboration between Bieber and Ludacris, having previously collaborated on \"\"Baby\"\" (2010). It was first released on June 4, 2012, as a promotional single from the album. The song was released as the fourth international single, and the fifth and final US single on February 26, 2013. The Eurodance track features a"} +{"qid": "test1086", "pid": "13600774", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"Justin Bieber\"\nits 25th anniversary to benefit Haiti after the earthquake. Bieber sings the opening line, which was sung by Lionel Richie in the original version. On March 12, 2010, a version of K'naan's \"\"Wavin' Flag\"\", recorded by a collective of Canadian musicians known as Young Artists for Haiti, was released. Bieber is featured in the song, performing the closing lines. In January 2010, \"\"Baby\"\", was released from his debut album, \"\"My World 2.0\"\". The song featured Ludacris, and became an international hit. It charted at number five on the US \"\"Billboard\"\" Hot 100, peaked at number three on the Canadian Hot"} +{"qid": "test1086", "pid": "14208556", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"Baby (Justin Bieber song)\"\nbase satisfied, and Ludacris' brief cameo adds a welcome urban twist.\"\" Bertoli went on to say, \"\"The matchup adds a layer of maturity to Bieber's repertoire and should further solidify his growing presence on the charts.\"\" \"\"Rap-Up\"\" magazine said that \"\"the sweet pop fare gets a little street cred courtesy of the teen sensation's labelmate Ludacris.\"\" Jody Rosen of \"\"Rolling Stone\"\" appreciated the song's vintage doo-wop and fifties aesthetic and hip-hop chants, and said the song included \"\"one of the catchiest choruses concocted by the-Dream and Tricky Stewart, the duo behind \"\"Umbrella\"\" and \"\"Single Ladies.\"\" Luke O'Neill of \"\"Boston Globe\"\""} +{"qid": "test1086", "pid": "14208562", "query": "who sings the rap in baby by justin bieber", "answer": "Ludacris", "passage": "\"Baby (Justin Bieber song)\"\nclimbing the charts, \"\"Baby\"\" gained a new peak of two on the R&B Singles Chart. As of June 2012, Baby has sold 442,432 copies in the United Kingdom. Filming for the music video began during the week of January 25, 2010, in Los Angeles. It was filmed at Universal CityWalk and Lucky Strike Lanes, by director Ray Kay, who had previously directed videos for Beyoncé Knowles, Lady Gaga, Alexandra Burke, and Cheryl Cole, among others. Ludacris said that the video \"\"is like a 2010 version of Michael Jackson's \"\"The Way You Make Me Feel\"\".\"\" Bieber said that the video \"\"will"} +{"qid": "test1087", "pid": "20071633", "query": "who plays the beast on the new beauty and the beast", "answer": "Dan Stevens", "passage": "\"Evermore (Beauty and the Beast song)\"\nEvermore (Beauty and the Beast song) \"\"Evermore\"\" is a song written by composer Alan Menken and lyricist Tim Rice for the musical fantasy film \"\"Beauty and the Beast\"\" (2017), a live-action remake of Disney's 1991 animated film of the same name. Originally recorded for the film by English actor Dan Stevens, who performs the song in his starring role as the titular Beast, \"\"Evermore\"\" was first released as a single by American singer Josh Groban on March 3, 2017. Stevens' version became available on March 10, 2017 when the film's soundtrack was released online, while Groban's cover is played during"} +{"qid": "test1088", "pid": "17752409", "query": "who starred in the film far from the madding crowd", "answer": "Juno Temple", "passage": "\"Far from the Madding Crowd (2015 film)\"\nFar from the Madding Crowd (2015 film) Far from the Madding Crowd is a 2015 British romantic drama film directed by Thomas Vinterberg and starring Carey Mulligan, Matthias Schoenaerts, Michael Sheen, Tom Sturridge and Juno Temple. It is an adaptation of the 1874 novel \"\"Far from the Madding Crowd\"\" by Thomas Hardy. It is the fourth film adaptation of the novel. In 1870 Victorian England, Bathsheba Everdene (Carey Mulligan) is working on her aunt's farm in Dorset. Gabriel Oak (Matthias Schoenaerts), a new neighbour, sees Bathsheba riding her horse and falls in love with her. He proposes, but the headstrong"} +{"qid": "test1088", "pid": "17752424", "query": "who starred in the film far from the madding crowd", "answer": "Juno Temple", "passage": "\"Far from the Madding Crowd (2015 film)\"\na classic for the here and now.\"\" Far from the Madding Crowd (2015 film) Far from the Madding Crowd is a 2015 British romantic drama film directed by Thomas Vinterberg and starring Carey Mulligan, Matthias Schoenaerts, Michael Sheen, Tom Sturridge and Juno Temple. It is an adaptation of the 1874 novel \"\"Far from the Madding Crowd\"\" by Thomas Hardy. It is the fourth film adaptation of the novel. In 1870 Victorian England, Bathsheba Everdene (Carey Mulligan) is working on her aunt's farm in Dorset. Gabriel Oak (Matthias Schoenaerts), a new neighbour, sees Bathsheba riding her horse and falls in love"} +{"qid": "test1088", "pid": "17752422", "query": "who starred in the film far from the madding crowd", "answer": "Carey Mulligan", "passage": "\"Far from the Madding Crowd (2015 film)\"\nSteal Your Thyme\"\" performed by Carey Mulligan and Michael Sheen. A teaser poster was also revealed to mark the 140th anniversary of the novel of the same name. \"\"Far from the Madding Crowd\"\" grossed $12.2 million in North America and $17.9 million in other territories for a worldwide total of $30.2 million. \"\"Far from the Madding Crowd\"\" received positive reviews from critics. On Rotten Tomatoes, the film has a rating of 85%, based on 176 reviews, with the site's critical consensus reading, \"\"\"\"Far from the Madding Crowd\"\" invites tough comparisons to Thomas Hardy's classic novel – and its previous adaptation"} +{"qid": "test1088", "pid": "17752423", "query": "who starred in the film far from the madding crowd", "answer": "Carey Mulligan", "passage": "\"Far from the Madding Crowd (2015 film)\"\n– but stands on its own thanks to strong direction and a talented cast.\"\" Metacritic gave the film a score of 71 out of 100, based on 40 critics, indicating \"\"generally favorable reviews\"\". Carey Mulligan's performance was critically praised and some considered it better than the 1967 adaptation starring Julie Christie. \"\"Rolling Stone\"\"'s Peter Travers, in his three out of four star review, said \"\"Vinterberg may rush the final act, but he brings out the wild side in Mulligan, who can hold a close-up like nobody's business. She's a live wire in a movie that knows how to stir up"} +{"qid": "test1088", "pid": "7308343", "query": "who starred in the film far from the madding crowd", "answer": "Carey Mulligan", "passage": "\"Carey Mulligan\"\nher supporting performances in the action film \"\"Drive\"\" (2011), for which she was nominated for the BAFTA Award for Best Actress in a Supporting Role, and the drama \"\"Shame\"\" (2011). Her appearances in \"\"The Great Gatsby\"\" (2013), \"\"Inside Llewyn Davis\"\" (2013), \"\"Far from the Madding Crowd\"\" (2015), and \"\"Suffragette\"\" (2015) earned her further praise and recognition. In 2015, she was nominated for a Tony Award for Best Lead Actress in a Play for her performance in the Broadway revival of David Hare's \"\"Skylight\"\". In 2017, she starred in the critically acclaimed period drama film \"\"Mudbound\"\", and the following year starred"} +{"qid": "test1088", "pid": "421763", "query": "who starred in the film far from the madding crowd", "answer": "Carey Mulligan", "passage": "\"Thomas Vinterberg\"\noff Metallica's album \"\"Death Magnetic\"\". His 2010 film \"\"Submarino\"\" was nominated for the Golden Bear at the 60th Berlin International Film Festival. In 2012, his film \"\"The Hunt\"\" competed for the Palme d'Or at the 2012 Cannes Film Festival and was nominated for the Best Foreign Language Film award at the 86th Academy Awards. In 2015, he directed \"\"Far From The Madding Crowd\"\", an adaptation of the acclaimed Thomas Hardy novel, starring Carey Mulligan, Matthias Schoenaerts, Michael Sheen and Tom Sturridge. Vinterberg will reunite with Matthias Schoenaerts in \"\"Kursk\"\", a film about the Kursk submarine disaster that happened in 2000."} +{"qid": "test1089", "pid": "5834407", "query": "jawaharlal nehru centre for advanced scientific research jakkur campus", "answer": "Jakkur, Bangalore, India", "passage": "\"Jawaharlal Nehru Centre for Advanced Scientific Research\"\nJawaharlal Nehru Centre for Advanced Scientific Research The Jawaharlal Nehru Centre for Advanced Scientific Research (JNCASR) is a multidisciplinary research institute located at Jakkur, Bangalore, India. It was established by the Department of Science and Technology of the Government of India, to mark the birth centenary of Pandit Jawaharlal Nehru. Researchers at the centre are divided into seven units: Chemistry and Physics of Materials, Engineering Mechanics, Evolutionary and Organismal Biology, Molecular biology and Genetics, New Chemistry, Theoretical Sciences, Educational Technology and Geodynamics. There are two off-campus units: Chemical Biology and Condensed Matter Theory. JNCASR has a faculty-to-student ratio of about"} +{"qid": "test1089", "pid": "5834413", "query": "jawaharlal nehru centre for advanced scientific research jakkur campus", "answer": "Jakkur, Bangalore, India", "passage": "\"Jawaharlal Nehru Centre for Advanced Scientific Research\"\nthe treetops. The institute has a HIV research lab dedicated to the study of Subtype C and it's global dominance. Jawaharlal Nehru Centre for Advanced Scientific Research The Jawaharlal Nehru Centre for Advanced Scientific Research (JNCASR) is a multidisciplinary research institute located at Jakkur, Bangalore, India. It was established by the Department of Science and Technology of the Government of India, to mark the birth centenary of Pandit Jawaharlal Nehru. Researchers at the centre are divided into seven units: Chemistry and Physics of Materials, Engineering Mechanics, Evolutionary and Organismal Biology, Molecular biology and Genetics, New Chemistry, Theoretical Sciences, Educational Technology"} +{"qid": "test109", "pid": "999837", "query": "which site of an enzyme is called allosteric site", "answer": "regulatory site", "passage": "\"Allosteric regulation\"\nAllosteric regulation In biochemistry, allosteric regulation (or allosteric control) is the regulation of an enzyme by binding an effector molecule at a site other than the enzyme's active site. The site to which the effector binds is termed the \"\"allosteric site\"\" or \"\"regulatory site\"\". Allosteric sites allow effectors to bind to the protein, often resulting in a conformational change involving protein dynamics. Effectors that enhance the protein's activity are referred to as \"\"allosteric activators\"\", whereas those that decrease the protein's activity are called \"\"allosteric inhibitors\"\". Allosteric regulations are a natural example of control loops, such as feedback from downstream products"} +{"qid": "test109", "pid": "999844", "query": "which site of an enzyme is called allosteric site", "answer": "regulatory site", "passage": "\"Allosteric regulation\"\na system's statistical ensemble so that it can be analyzed with the allostery landscape model. Allosteric modulation is used to alter the activity of molecules and enzymes in biochemistry and pharmacology. For comparison, a typical drug is made to bind to the active site of an enzyme which thus prohibits binding of a substrate to that enzyme causing a decrease in enzyme activity. Allosteric modulation occurs when an effector binds to an allosteric site (also known as a regulatory site) of an enzyme and alters the enzyme activity. Allosteric modulators are designed to fit the allosteric site to cause a"} +{"qid": "test109", "pid": "8399434", "query": "which site of an enzyme is called allosteric site", "answer": "regulatory site", "passage": "\"Allosteric enzyme\"\nLong-range allostery is especially important in cell signaling. Allosteric regulation is also particularly important in the cell's ability to adjust enzyme activity. The term \"\"allostery\"\" comes from the Greek \"\"allos\"\" (ἄλλος), \"\"other,\"\" and \"\"stereos\"\" (στερεὀς), \"\"solid (object).\"\" This is in reference to the fact that the regulatory site of an allosteric protein is physically distinct from its active site. The protein catalyst (enzyme) may be part of a multi-subunit complex, and/or may transiently or permanently associate with a Cofactor (e.g. adenosine triphosphate). Catalysis of biochemical reactions is vital due to the very low reaction rates of the uncatalysed reactions. A"} +{"qid": "test1090", "pid": "77706", "query": "two atoms of the same element that are covalently bonded", "answer": "shared pairs or bonding pairs", "passage": "\"Covalent bond\"\nCovalent bond A covalent bond, also called a molecular bond, is a chemical bond that involves the sharing of electron pairs between atoms. These electron pairs are known as shared pairs or bonding pairs, and the stable balance of attractive and repulsive forces between atoms, when they share electrons, is known as covalent bonding. For many molecules, the sharing of electrons allows each atom to attain the equivalent of a full outer shell, corresponding to a stable electronic configuration. Covalent bonding includes many kinds of interactions, including σ-bonding, π-bonding, metal-to-metal bonding, agostic interactions, bent bonds, and three-center two-electron bonds. The"} +{"qid": "test1091", "pid": "1932345", "query": "where is arachidonic acid found in the body", "answer": "brain", "passage": "\"Arachidonic acid\"\npresent in the phospholipids (especially phosphatidylethanolamine, phosphatidylcholine, and phosphatidylinositides) of membranes of the body's cells, and is abundant in the brain, muscles, and liver. Skeletal muscle is an especially active site of arachidonic acid retention, accounting for roughly 10-20% of the phospholipid fatty acid content typically. In addition to being involved in cellular signaling as a lipid second messenger involved in the regulation of signaling enzymes, such as PLC-γ, PLC-δ, and PKC-α, -β, and -γ isoforms, arachidonic acid is a key inflammatory intermediate and can also act as a vasodilator. (Note separate synthetic pathways, as described in section below.) Arachidonic"} +{"qid": "test1091", "pid": "8592773", "query": "where is arachidonic acid found in the body", "answer": "brain", "passage": "\"Cat intelligence\"\nfatty acid that plays a role in brain support and cognition is arachidonic acid. Arachidonic acid or AA is found in animal sources such as meat and eggs. AA is required in cat diets, as felines convert insignificant amounts of it from linoleic acid due to the limited delta-6 desaturase. Like DHA, arachidonic acid is often found in the brain tissues of cats and seems to have a supporting role in brain function. In a 2000 study completed by Contreras \"\"et al.\"\", it was found that DHA and AA made up 20% of the fatty acids in the mammalian brain."} +{"qid": "test1091", "pid": "20470998", "query": "where is arachidonic acid found in the body", "answer": "brain", "passage": "\"Cat cognitive support diets\"\nper 1000 kcal ME per day. Omega-6 fatty acids are also needed in feline cognition diets. The important omega-6 fatty acid that plays a role in brain support and cognition is arachidonic acid. Arachidonic acid or AA is found in animal sources such as meat and eggs. AA is required in cat diets, as felines convert insignificant amounts of it from linoleic acid due to the limited delta-6 desaturase. Like DHA, arachidonic acid is often found in the brain tissues of cats and seems to have a supporting role in brain function. In a 2000 study completed by Contreras \"\"et"} +{"qid": "test1091", "pid": "11219895", "query": "where is arachidonic acid found in the body", "answer": "brain", "passage": "\"Free fatty acid receptor 1\"\nacid (DHA) has a higher affinity than other fatty acids for FFA1. DHA makes up 30% and arachidonic acid, another fatty acid found in the brain, makes up 20% of the fatty acids in the brain. Both of these fatty acids must be obtained from the diet because the body cannot make them. A correct balance of these fatty acids is vital to normal brain function and structure. DHA is supplied to the brain via astrocytes, which release DHA so that it reaches a high enough concentration to act as an extracellular signal on FFA1. The abundance of FFA1 in"} +{"qid": "test1091", "pid": "11124270", "query": "where is arachidonic acid found in the body", "answer": "liver", "passage": "\"Peroxisome proliferator-activated receptor alpha\"\nligands include fatty acids such as arachidonic acid as well as other polyunsaturated fatty acids and various fatty acid-derived compounds such as certain members of the 15-hydroxyicosatetraenoic acid family of arachidonic acid metabolites, e.g. 15(\"\"S\"\")-HETE, 15(R)-HETE, and 15(S)-HpETE and 13-hydroxyoctadecadienoic acid, a linoleic acid metabolite. Expression of PPAR-alpha is highest in tissues that oxidize fatty acids at a rapid rate. In rodents, highest mRNA expression levels of PPAR-alpha are found in liver and brown adipose tissue, followed by heart and kidney. Lower PPAR-alpha expression levels are found in small and large intestine, skeletal muscle and adrenal gland. Human PPAR-alpha seems"} +{"qid": "test1091", "pid": "19337388", "query": "where is arachidonic acid found in the body", "answer": "brain", "passage": "\"Gynoid fat distribution\"\nhave increased cognitive capabilities due to these fatty acids being present in the breast milk, as they have been suggested to aid early brain development in foetuses and newborns. The most notable fatty acids found in human breast milk are Docosahexaenoic acid and Arachidonic acid, which have been shown to play crucial roles in the healthy formation and functions of neurons. Gynoid fat contributes toward the Female body shape that girls begin to develop at puberty; it is stored in the breasts and the hips, thighs and bottom. This process is modulated by estrogen, the female sex hormone, causing the"} +{"qid": "test1091", "pid": "1932350", "query": "where is arachidonic acid found in the body", "answer": "brain", "passage": "\"Arachidonic acid\"\nof arachidonic acid. Among other things, arachidonic acid helps to maintain hippocampal cell membrane fluidity. It also helps protect the brain from oxidative stress by activating peroxisome proliferator-activated receptor gamma. ARA also activates syntaxin-3 (STX-3), a protein involved in the growth and repair of neurons. Arachidonic acid is also involved in early neurological development. In one study, infants (18 months) given supplemental arachidonic acid for 17 weeks demonstrated significant improvements in intelligence, as measured by the Mental Development Index. This effect is further enhanced by the simultaneous supplementation of ARA with DHA. In adults, the disturbed metabolism of ARA may"} +{"qid": "test1091", "pid": "86435", "query": "where is arachidonic acid found in the body", "answer": "liver", "passage": "Cat\narachidonic acid) in the liver, but this enzyme has very little activity in cats. This means that arachidonic acid is an essential fatty acid for cats as they lack the ability to create required amounts of linoleic acid. Deficiency of arachidonic acid in cats is related to problems in growth, can cause injury and inflammation to skin (e.g. around the mouth) decreased platelet aggregation, fatty liver, increase in birth defects of kittens whose queens were deficient during pregnancy, and reproductive failure in queens. Arachidonic acid can also be metabolized to eicosanoids that create inflammatory responses which are needed to stimulate"} +{"qid": "test1092", "pid": "2384166", "query": "who appoints the chair of the federal reserve system", "answer": "President of the United States", "passage": "\"Chair of the Federal Reserve\"\nChair of the Federal Reserve The Chair of the Board of Governors of the Federal Reserve System is the head of the Federal Reserve, which is the central banking system of the United States. The position is known colloquially as \"\"Chair of the Fed\"\" or \"\"Fed Chair\"\". The chair is the \"\"active executive officer\"\" of the Board of Governors of the Federal Reserve System. The chair is chosen by the President of the United States from among the members of the Board of Governors; and serves for four-year-terms after appointment. A chair may be appointed for several consecutive terms. William"} +{"qid": "test1092", "pid": "2384168", "query": "who appoints the chair of the federal reserve system", "answer": "President of the United States", "passage": "\"Chair of the Federal Reserve\"\nIn effect, the Federal Reserve Board members in Washington, D.C., were significantly less powerful than the presidents of the regional Federal Reserve Banks prior to 1935. In the 1935 Act, the district heads had their titles changed to \"\"President\"\" (e.g., \"\"President of the Federal Reserve Bank of St. Louis\"\"). As stipulated by the Banking Act of 1935, the President of the United States appoints the seven members of the Board of Governors; they must then be confirmed by the Senate and serve fourteen year terms. The nominees for chair and vice-chair may be chosen by the President from among the"} +{"qid": "test1092", "pid": "5051615", "query": "who appoints the chair of the federal reserve system", "answer": "President of the United States", "passage": "\"Federal Reserve Board of Governors\"\nFederal Reserve Board of Governors The Board of Governors of the Federal Reserve System, commonly known as the Federal Reserve Board, is the main governing body of the Federal Reserve System. It is charged with overseeing the Federal Reserve Banks and with helping implement the monetary policy of the United States. Governors are appointed by the President of the United States and confirmed by the Senate for staggered 14-year terms. By law, the appointments must yield a \"\"fair representation of the financial, agricultural, industrial, and commercial interests and geographical divisions of the country\"\". As stipulated in the Banking Act of"} +{"qid": "test1092", "pid": "14412480", "query": "who appoints the chair of the federal reserve system", "answer": "President of the United States", "passage": "\"Structure of the Federal Reserve System\"\nredeemable only at par, the nominal \"\"owners\"\" do not benefit from this surplus capital. In 2010, the Federal Reserve System contributed $79 billion to the U.S. Treasury. The seven-member Board of Governors is the main governing body of the Federal Reserve System. It is charged with overseeing the 12 District Reserve Banks and with helping implement national monetary policy. Governors are appointed by the President of the United States and confirmed by the Senate for staggered, 14-year terms. By law, the appointments must yield a \"\"fair representation of the financial, agricultural, industrial, and commercial interests and geographical divisions of the"} +{"qid": "test1093", "pid": "7849301", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars Tales Volume 2\"\nStar Wars Tales Volume 2 Star Wars Tales Volume 2 is the second \"\"Star Wars Tales\"\" trade paperback, collecting issues 5-8. Whilst discussing the possibility of knighting Yaddle the Jedi Council revisit the story of her training under the tutelage of Polvin Kut, two-hundred years prior. On a mission to liberate the colonies of the Advozse Warlock Tulak the duo are betrayed on Koba, leading to Kut's death. The Padawan Yaddle is taken hostage by the Warlock but is impervious to his interrogations, warning him 'Rule by terror you do, die by fear you will'. In time Tulak tires of"} +{"qid": "test1093", "pid": "14390698", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: The Old Republic: Fatal Alliance\"\nOrder series and the of the 2008 video game \"\"\"\" and its . \"\"Tassaa Bareesh, a matriarch in the Hutt crime cartel, is holding an auction that's drawing attention from across the galaxy. Representatives of both the Republic and the Sith Empire are present, along with a Jedi Padawan sent to investigate, a disenfranchised trooper drummed out of the Republic's elite Blackstar Squad, and a mysterious Mandalorian with a private agenda. But the Republic's envoy is not what he seems, the Empire's delegate is a ruthless Sith apprentice, the Jedi Padawan is determined to do the right thing and terrified"} +{"qid": "test1093", "pid": "2248857", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Jedi census phenomenon\"\nless and less Jedi left on the Earth... the nearest temple [is] billions of light years away,\"\" the petition says. It adds that \"\"uneducated Padawan\"\" are moving to the dark side... To recruit new Jedi and to bring balance to the Force, we want a Jedi temple,\"\" said the petition that received more than 6,000 signatures on change.org, referring to the famed knights of the fictional \"\"Star Wars\"\" universe. The page on Change.org also features a still of Jedi Grand Master Yoda from \"\"Star Wars: Episode II -- Attack of the Clones\"\" teaching young Jedi how to use a light"} +{"qid": "test1093", "pid": "13543795", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Padmé Amidala\"\nand helps rescue Jedi Master Luminara Unduli and Padawan Barriss Offee. In another chapter, she is thrilled by Anakin's graduation from Padawan to Jedi Knight. In the final chapter, she is briefly seen during General Grievous's assault on Coruscant. Padmé's background prior to her appearance in the prequel films is revealed in \"\"Star Wars\"\" novels and comics. In Terry Moore's comic \"\"A Summer's Dream\"\" printed in \"\"Star Wars Tales 5\"\" (2000) and set a year before the events of \"\"The Phantom Menace\"\", Padmé is the Princess of Theed, Naboo's capital city. A young man, Ian Lago, falls in love with"} +{"qid": "test1093", "pid": "11528584", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Ahsoka Tano\"\nfranchise. Ahsoka was developed to illustrate how Anakin Skywalker develops from the brash, undisciplined Padawan apprentice in \"\"\"\" (2002) to the more reserved Jedi Knight in \"\"\"\" (2005). \"\"Star Wars\"\" creator George Lucas, who had two daughters, also wanted the character to appeal to girls. Early in development, Ahsoka's name was \"\"Ashla\"\". \"\"Clone Wars\"\" supervising director and writer Dave Filoni wrote a fable about Ahsoka's early childhood to help develop the character. He imagined the discovery that she has \"\"the right stuff\"\" to become a Jedi would be a cause for celebration in her hometown. Filoni said he is protective"} +{"qid": "test1093", "pid": "9625913", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars Mini Movie Awards\"\nby article creator - please update\"\" Best Use of Characters (Padawan) Winner: Nathan Hussein (\"\"Happy Birthday Emperor!\"\") Runner up: \"\"unknown by article creator - please update\"\" For the 2007 awards (dubbed Lightsaber, Camera, Action) entrants were required to make a short film of no more than one minute that featured someone using the Hasbro Force Action Lightsaber. This time there will be only two awards, Best Film (Jedi) and Best Film (Padawan). The winners will receive a limited edition Chrome Force Action Lightsaber and a Sony DCR-HC27 camcorder. All finalists will receive a collection of Hasbro \"\"Star Wars\"\" toy. The"} +{"qid": "test1093", "pid": "650671", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Darth Vader\"\nfrom the temple's ruins. Filoni said that it was \"\"an elected decision\"\" not to feature Vader for the third season. Vader makes a final voiceless cameo in the late fourth-season episode “A World Between Worlds”, as Ezra looks back in time to see the conclusion of his duel with Ahsoka before rescuing her from him. Shortly afterward, quotes from Vader are heard echoing in the void after Ezra says his name. Anakin Skywalker is a recurring character in the 2D animated web series \"\"Star Wars: Forces of Destiny\"\". He appears in the episodes \"\"The Padawan Path\"\", \"\"Teach You, I Will\"\""} +{"qid": "test1093", "pid": "650638", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Darth Vader\"\nthe Republic. This fundamental re-write was accomplished both through editing the principal footage, and new and revised scenes filmed during pick-ups in 2004. During production of the \"\"\"\" TV series, Ahsoka Tano was developed to illustrate how Anakin develops from the brash, undisciplined Padawan apprentice in \"\"\"\" (2002) to the more reserved Jedi Knight in \"\"Revenge of the Sith\"\". \"\"Clone Wars\"\" supervising director and \"\"Rebels\"\" co-creator Dave Filoni said that giving Anakin responsibility for a Padawan was meant to place the character in a role that forced him to become more cautious and responsible. It would also give him insight"} +{"qid": "test1093", "pid": "6789231", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: The Last of the Jedi\"\nStar Wars: The Last of the Jedi The Last of the Jedi is a series of young adult science fiction novels written by Jude Watson, begun in 2005. The series is set in the fictional \"\"Star Wars\"\" Universe, in the time period between the end of \"\"\"\" and a few years prior to \"\"Star Wars: Episode IV – A New Hope\"\". This series follows the life of Obi-Wan Kenobi, following the events of \"\"Revenge of the Sith\"\" until he finds an ex-Padawan, Ferus Olin. From here to the end the series focuses on a little band of surviving Jedi. A"} +{"qid": "test1093", "pid": "6789233", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: The Last of the Jedi\"\nwritten by Jude Watson. Star Wars: The Last of the Jedi The Last of the Jedi is a series of young adult science fiction novels written by Jude Watson, begun in 2005. The series is set in the fictional \"\"Star Wars\"\" Universe, in the time period between the end of \"\"\"\" and a few years prior to \"\"Star Wars: Episode IV – A New Hope\"\". This series follows the life of Obi-Wan Kenobi, following the events of \"\"Revenge of the Sith\"\" until he finds an ex-Padawan, Ferus Olin. From here to the end the series focuses on a little band"} +{"qid": "test1093", "pid": "7330803", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: Knights of the Old Republic (comics)\"\n\"\"Gryph\"\" Hierogryph which will allow him to be promoted to Jedi Knight at the academy graduation ceremony the very same day. After numerous hurdles along the way, Zayne manages to capture Gryph, but is late to the graduation ceremony. Upon arriving back at the academy, Zayne is horrified to find the Jedi Masters, his included, standing over the slain corpses of his fellow Padawans. Instinctively, he flees from the scene with Gryph and the two are soon framed for the murder of the Padawans. With no other option, Zayne must now learn the ins and outs of being an outlaw,"} +{"qid": "test1093", "pid": "9625914", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars Mini Movie Awards\"\njudging panel is made up of representatives from Cartoon Network, \"\"Empire\"\" and \"\"Toxic\"\". The awards ceremony was due to be held in November. The Official \"\"Star Wars\"\" Fan Film Awards Star Wars Mini Movie Awards The \"\"Star Wars\"\" Mini Movie Awards a.k.a. \"\"The Artoos\"\" a.k.a. \"\"Episode 3 Inches\"\" was a filmmaking competition held in the UK by Hasbro. The rules stated that filmmakers had to make an animation using \"\"Star Wars\"\" action figures of no more than five minutes. There were three awards - Best Creativity, Best Storyline and Best Use of Characters, and two age categories, Padawan (15 years"} +{"qid": "test1093", "pid": "7330809", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: Knights of the Old Republic (comics)\"\nGorman Vandrayk. One of the large, bulky labor droids that was used at the Jedi Academy on Taris. Elbee was destroyed by the Jedi Masters on a Padawan training mission to the Rogue Moon in order to keep their plan of killing the Padawans a secret. When Zayne returns to the Rogue Moon to search for clues, he finds the remains of Elbee which Camper then tries to fix. Unfortunately, most of Elbee's components were beyond repair so Camper used various parts from other droids to fix Elbee. Labor drones were made to take orders without question, but due to"} +{"qid": "test1093", "pid": "9951921", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: The Clone Wars (2008 TV series)\"\nannounced that \"\"The Clone Wars\"\" would be \"\"winding down\"\" to focus on the \"\"Star Wars\"\" sequel trilogy and a new series, \"\"Star Wars Rebels\"\". On February 13, 2014, Netflix announced that starting on March 7, 2014 they would begin the US distribution of the entire TV series, including some previously unreleased director's cuts, and the previously unaired new season dubbed \"\"The Lost Missions\"\". The latter also became available for purchase on digital video stores, such as iTunes, in . In November 2016, Pablo Hidalgo from the Lucasfilm story group revealed that the \"\"Young Padawans\"\" arc from Season 5 was intended"} +{"qid": "test1093", "pid": "1989553", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Clone Wars (Star Wars)\"\ncomic books set during the conflict. \"\"\"\" novelizes a story arc about Asajj Ventress and Quinlan Vos from eight unfinished episodes of \"\"The Clone Wars,\"\" and the \"\"Kanan\"\" comic book series depicts the eponymous \"\"Star Wars Rebels\"\" character Kanan Jarrus as Jedi Padawan Caleb Dume during the conflict. LucasArts also produced video games like \"\"\"\" and \"\"\"\" that depict the Clone Wars. Comparisons have been made between the political aspects of the Clone Wars and the events leading up to World War II. Radio host Clyde Lewis' article on historical similarities in \"\"Star Wars\"\" claims that Palpatine's tactics parallel those"} +{"qid": "test1093", "pid": "7720031", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: Republic\"\nMaster Tholme, who was protecting the boy. Now two of Tholme's former Padawans have teamed up to rescue their Master, unaware of the forces arrayed against them. Their most immediate foes are a father and son team of Morgukai assassins, who have the training and the weapons to go toe-to-toe with Jedi. But behind it all are the machinations of the notorious Count Dooku! Republic 46-48 (October 2002-January 2003). Written by John Ostrander. Art by C.P. Smith. Young Jedi Knight Obi-Wan Kenobi, and Anakin Skywalker-his even younger Padawan-protect a senator from assassination attempts. Joining the Jedi in their mission is"} +{"qid": "test1093", "pid": "15665015", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Kinect Star Wars\"\nKinect Star Wars Kinect Star Wars is a \"\"Star Wars\"\" video game developed by Terminal Reality and published by LucasArts and Microsoft Studios for the Xbox 360 that uses the Kinect motion peripheral. The game features four game modes: \"\"Jedi Destiny\"\", the primary game mode; podracing; Rancor Rampage; and Galactic Dance-off. In Jedi Destiny, players assume the role models of Jedi Padawans as they wield their lightsabers and use the Force to attack enemies mostly from the prequel trilogy using gestures. Podracing is a race-based game mode, Rancor Rampage is a destruction-based game mode, and Galactic Dance-off is a dance-based"} +{"qid": "test1093", "pid": "18803969", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Kanan Jarrus\"\nbut Prinze, who \"\"was resolute about the fact that his character needed to die\"\" since the beginning of the series, encouraged him to write the scene. In September 2, 2014, Del Rey Books published \"\"\"\", a prequel novel telling the story of how Kanan and Hera met. The comic-book \"\"Kanan\"\" ran for 12 issues and was published by Marvel Comics, the series is set during the events of the first season of \"\"Star Wars Rebels\"\" and focuses on Kanan Jarrus having flashbacks to his time as a Jedi Padawan (when he was known by his real name Caleb Dume). Two"} +{"qid": "test1093", "pid": "726592", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Count Dooku\"\nCount Dooku Count Dooku is a fictional character in the \"\"Star Wars\"\" franchise, appearing in \"\"\"\" and \"\"\"\" as a primary and minor antagonist respectively. He was portrayed by Christopher Lee and voiced by Corey Burton in the animated series \"\"\"\" and \"\"\"\". Once a respected Jedi Master who was trained by Yoda as a Padawan learner, Dooku fell to the Dark side of the Force after the death of his former Padawan - Qui-Gon Jinn - and becomes Darth Sidious's second apprentice under the name \"\"Darth Tyranus\"\". As the leader of the Confederacy of Independent Systems, he is instrumental"} +{"qid": "test1093", "pid": "726608", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Count Dooku\"\nvoice the character in the , while Burton returned to voice the character in the . Count Dooku Count Dooku is a fictional character in the \"\"Star Wars\"\" franchise, appearing in \"\"\"\" and \"\"\"\" as a primary and minor antagonist respectively. He was portrayed by Christopher Lee and voiced by Corey Burton in the animated series \"\"\"\" and \"\"\"\". Once a respected Jedi Master who was trained by Yoda as a Padawan learner, Dooku fell to the Dark side of the Force after the death of his former Padawan - Qui-Gon Jinn - and becomes Darth Sidious's second apprentice under"} +{"qid": "test1093", "pid": "728440", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "Yoda\nwas merely a vision, and that he has passed the test. The priestesses inform Yoda that his training will resume in time. Yoda was heard in the \"\"Star Wars Rebels\"\" episode \"\"Path of the Jedi\"\" with Frank Oz reprising the role for the first time since \"\"Revenge of the Sith\"\". He communicates with Padawan Ezra Bridger and his master Kanan Jarrus during their experience in an ancient temple on Lothal, and helps the pair do some soul-searching to analyze their true motivations. He appears physically for the first time, in the season 2 episode \"\"Shroud of Darkness\"\", in which he"} +{"qid": "test1093", "pid": "7330802", "query": "how do you spell padawan from star wars", "answer": "Padawan", "passage": "\"Star Wars: Knights of the Old Republic (comics)\"\nStar Wars: Knights of the Old Republic (comics) Star Wars: Knights of the Old Republic is a 2006 monthly \"\"Star Wars\"\" comic book series published by Dark Horse Comics. It takes place in the same timeline as the of the same name, eight years prior to the first game. The series ran for 50 issues. In 2012, a five-issue miniseries was released as a follow-up titled Star Wars: Knights of the Old Republic: War. Zayne Carrick, a young Padawan training at the Jedi Academy on Taris is given one last chance at capturing a notorious Snivvian smuggler known as Marn"} +{"qid": "test1094", "pid": "8848641", "query": "who are the australia's got talent judges", "answer": "Kelly Osbourne", "passage": "\"Australia's Got Talent\"\nAustralia's Got Talent Australia's Got Talent is an Australian reality television talent show which premiered on 18 February 2007 on the Seven Network. The show is based on the \"\"Got Talent\"\" series format that originated in the United Kingdom with Simon Cowell. The original judges were Tom Burlinson, Red Symons and Dannii Minogue. Burlinson and Symons did not return for season four and were replaced by Brian McFadden and Kyle Sandilands. Dawn French, Timomatic and Geri Halliwell joined the panel in season seven as replacements for McFadden and Minogue. All four judges from season seven were replaced by Kelly Osbourne,"} +{"qid": "test1094", "pid": "8848648", "query": "who are the australia's got talent judges", "answer": "Kelly Osbourne", "passage": "\"Australia's Got Talent\"\nit was announced that there would be a complete new judging panel, with Sandilands, Timomatic, Halliwell and French being axed. It was later confirmed that Kelly Osbourne, Sophie Monk, Eddie Perfect and Ian Dickson would become the new judges. The first season of \"\"Australia's Got Talent\"\" premiered on Seven Network on 18 February 2007, becoming the second incarnation of the \"\"Got Talent\"\" franchise. The original judges were Dannii Minogue, Tom Burlinson and Red Symons. Singer Bonnie Anderson was crowned the winner of the first season on 28 April 2007, followed by Herb Patten finishing in second place. The second season"} +{"qid": "test1094", "pid": "19161435", "query": "who are the australia's got talent judges", "answer": "Kelly Osbourne", "passage": "\"Australia's Got Talent (season 8)\"\nAustralia's Got Talent (season 8) Australia's Got Talent is an Australian reality television show, based on the original UK series, to find new talent. Nine announced that the show would be returning in 2016 for an eighth season. It is the second season to air on Nine after it was axed in 2013. Auditions are open for September and October 2015. On 28 October 2015, it was announced that Halliwell, French, Timomatic and Sandilands have been replaced with a new panel of judges, they are Kelly Osbourne, Ian \"\"Dicko\"\" Dickson, Sophie Monk and Eddie Perfect. Morris did not return as"} +{"qid": "test1094", "pid": "19161439", "query": "who are the australia's got talent judges", "answer": "Kelly Osbourne", "passage": "\"Australia's Got Talent (season 8)\"\nwinner received $250,000. Fletcher Pilon was announced as the winner. Australia's Got Talent (season 8) Australia's Got Talent is an Australian reality television show, based on the original UK series, to find new talent. Nine announced that the show would be returning in 2016 for an eighth season. It is the second season to air on Nine after it was axed in 2013. Auditions are open for September and October 2015. On 28 October 2015, it was announced that Halliwell, French, Timomatic and Sandilands have been replaced with a new panel of judges, they are Kelly Osbourne, Ian \"\"Dicko\"\" Dickson,"} +{"qid": "test1096", "pid": "6234551", "query": "who played in the stanley cup finals last year", "answer": "Pittsburgh Penguins", "passage": "\"1970–71 NHL season\"\nrest of the game, and the Habs won their third Stanley Cup in four years. It was the final game for Canadiens superstar and captain Jean Beliveau who retired after the season. The Canadiens were the last road team to win a Game 7 of a Stanley Cup Final until the Pittsburgh Penguins in 2009. It was Al MacNeil's final game as Montreal coach — after he had benched Richard for Game 5, The Pocket Rocket declared \"\"[MacNeil] is the worst coach I ever played for!\"\" Although Richard retracted his \"\"angry comment\"\", as he called it, MacNeil still resigned. A"} +{"qid": "test1097", "pid": "18983592", "query": "who has been appointed as the election commissioner of india", "answer": "Om Prakash Rawat", "passage": "\"Om Prakash Rawat\"\nretirement of Achal Kumar Jyoti, Rawat was announced to be the next Chief Election Commissioner on 21 January 2018. Rawat assumed charge as the Chief Election Commissioner of India on 23 January 2018. He retired from the post on 1st December 2018 on attaining 65 years of age. Om Prakash Rawat Om Prakash Rawat (IAST: \"\"Oma Prakāśa Rāvata\"\"; born 2 December 1953) is a retired 1977 batch Indian Administrative Service (IAS) officer of the Madhya Pradesh cadre who served as 22nd Chief Election Commissioner of India. He has also served as one of the twoElection Commissioners of India and the"} +{"qid": "test1098", "pid": "3823774", "query": "who played the virgin in conan the destroyer", "answer": "Olivia d'Abo", "passage": "\"Conan the Destroyer\"\nfor him. He refuses her, but when she promises to resurrect his lost love, Valeria, Conan agrees to the quest. He is to escort the Queen's niece, Jehnna (Olivia d'Abo), a virgin, who is destined to restore the jeweled horn of the dreaming god Dagoth; a magic gem must first be retrieved that will locate the horn. Conan and Malak are joined by Bombaata (Chamberlain), the captain of Taramis's guard. Bombaata has secret orders to kill Conan once the gem is obtained. The gem is secured in the fortress of a powerful wizard, so Conan seeks the help of his"} +{"qid": "test1098", "pid": "3823773", "query": "who played the virgin in conan the destroyer", "answer": "Olivia d'Abo", "passage": "\"Conan the Destroyer\"\nConan the Destroyer Conan the Destroyer is a 1984 American sword and sorcery/adventure film directed by Richard Fleischer, starring Arnold Schwarzenegger and Mako Iwamatsu reprising their roles as Conan and Akiro the wizard, respectively. The cast also includes Grace Jones, Wilt Chamberlain, Tracey Walter, and Olivia d'Abo. It is the sequel to \"\"Conan the Barbarian\"\". The film grossed $31 million in the US. Conan (Schwarzenegger) and his companion, the thief Malak (Walter), are confronted by Queen Taramis (Sarah Douglas) of Shadizar. She tests their combat ability with several of her guards. Satisfied, she tells Conan that she has a quest"} +{"qid": "test1098", "pid": "3823789", "query": "who played the virgin in conan the destroyer", "answer": "Olivia d'Abo", "passage": "\"Conan the Destroyer\"\nmetal music group Prowler changed its name to Taramis after the character from this film. Conan the Destroyer Conan the Destroyer is a 1984 American sword and sorcery/adventure film directed by Richard Fleischer, starring Arnold Schwarzenegger and Mako Iwamatsu reprising their roles as Conan and Akiro the wizard, respectively. The cast also includes Grace Jones, Wilt Chamberlain, Tracey Walter, and Olivia d'Abo. It is the sequel to \"\"Conan the Barbarian\"\". The film grossed $31 million in the US. Conan (Schwarzenegger) and his companion, the thief Malak (Walter), are confronted by Queen Taramis (Sarah Douglas) of Shadizar. She tests their combat"} +{"qid": "test1098", "pid": "3823781", "query": "who played the virgin in conan the destroyer", "answer": "Olivia d'Abo", "passage": "\"Conan the Destroyer\"\nnamed. Sven-Ole Thorsen, who played Thorgrim in the first film, also returned, but this time he had to partially cover his face with a mask, as he was playing a different (yet more bearded) character. Singer Grace Jones performed the female warrior Zula, the last of her tribe. This was the first major role for seven-foot, one-inch-tall basketball player Wilt Chamberlain and the debut of Olivia d'Abo, who played the petulant teenaged princess. David L. Lander was originally cast to play the foolish thief Malak, but due to his deteriorating health from the onset of multiple sclerosis, he was forced"} +{"qid": "test11", "pid": "6452099", "query": "swan lake the sleeping beauty and the nutcracker are three famous ballets by", "answer": "Pyotr Ilyich Tchaikovsky", "passage": "\"Kristian Fredrikson\"\nrealised a long-held ambition to design all three of Pyotr Ilyich Tchaikovsky's ballets. He designed \"\"The Nutcracker\"\" for the Royal New Zealand Ballet, \"\"Swan Lake\"\" for the Houston Ballet, and \"\"The Sleeping Beauty\"\" for the Australian Ballet. This last work was the Australian Ballet's largest ever production, requiring 300 costumes and four major sets, and was still touring at the time of Fredrikson's death. In Australia Fredriksen created costumes and undertook production design for a number of film and television productions including costumes for the feature films \"\"Undercover\"\", \"\"Sky Pirate\"\" and \"\"Short Changed\"\" and production design for television series \"\"Vietnam\"\","} +{"qid": "test1101", "pid": "40569", "query": "when did sweet caroline start at red sox games", "answer": "1997", "passage": "\"Boston Red Sox\"\nnew version by Boston area band The Dropkick Murphys was featured in the 2005 film \"\"Fever Pitch\"\", which tells the story of an obsessive Red Sox fan. The song is frequently played after home wins and inspired the name of Red Sox mascot Wally the Green Monster's \"\"sister\"\" \"\"Tessie\"\". Their song \"\"I'm Shipping Up to Boston\"\" was used to signify the entrance of Boston's closing pitcher. Another song associated with the team and its fanbase is Neil Diamond's 1969 single \"\"Sweet Caroline\"\". The song was first introduced to Fenway Park in 1997. By 2002, its play had been established as"} +{"qid": "test1101", "pid": "9321657", "query": "when did sweet caroline start at red sox games", "answer": "1997", "passage": "\"Build Me Up Buttercup\"\nAC/DC. The Los Angeles Angels play this song during the seventh-inning stretch, after \"\"Take Me Out to the Ball Game\"\"; fans most often sing along with it, much like \"\"Sweet Caroline\"\" with the Boston Red Sox and Pitt Panthers, as well as \"\"New York, New York\"\" with the New York Yankees. The song is also sung by fans and especially students during Wisconsin Badgers football and Boston College Eagles football games. In 1997, the song was used in the Philippine TV programmes \"\"Growing Up\"\" and \"\"T.G.I.S.\"\" (GMA Network). The Orwells cover the song live very fast and often just the"} +{"qid": "test1101", "pid": "4226775", "query": "when did sweet caroline start at red sox games", "answer": "1997", "passage": "\"Sweet Caroline\"\n\"\"Good times never seemed so good,\"\" the crowd sings \"\"So good, so good, so good.\"\" This pattern is repeated whenever the chorus is played. The song has been played at Fenway Park, home of Major League Baseball's Boston Red Sox, since at least 1997, and in the middle of the eighth inning at every game since 2002. On opening night of the 2010 season at Fenway Park, the song was performed by Diamond himself. It is also an unofficial song of the National Football League's Carolina Panthers (played following a victory) and the University of North Carolina at Chapel Hill,"} +{"qid": "test1101", "pid": "15851674", "query": "when did sweet caroline start at red sox games", "answer": "1997", "passage": "\"Ryan Lavarnway\"\nbecame the first Red Sox player to homer in his first start at catcher since Danny Sheaffer in 1987, and the youngest to have a multi-home run game since Nomar Garciaparra did it at exactly the same age (24 years, 51 days) in 1997. On August 1, 2012, Lavarnway was called up from Triple-A Pawtucket Red Sox when Daniel Nava was placed on the 15-day disabled list. On March 27, 2013, the Red Sox optioned Lavarnway to Pawtucket. Manager John Farrell said: \"\"Right now he needs 'everyday' at-bats.\"\" Commenting on Lavarnway having been timed at 1.9 seconds throwing out a"} +{"qid": "test1103", "pid": "127052", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Epistle to the Philippians\"\ndeveloped in the Epistle. Online translations of the Epistle to the Philippians: Online Study of Philippians: Related articles: Epistle to the Philippians The Epistle of Paul to the Philippians, often referred to simply as Philippians, is the eleventh book in the New Testament. Paul and Silas first visited Philippi in Greece during Paul's second missionary journey, which occurred between approximately 49 and 51 AD. Philippi was the location of the first Christian community established in Europe. Biblical scholars are in general agreement that the letter was indeed written by Paul of Tarsus. Although some consider that the letter was written"} +{"qid": "test1103", "pid": "127042", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Epistle to the Philippians\"\nEpistle to the Philippians The Epistle of Paul to the Philippians, often referred to simply as Philippians, is the eleventh book in the New Testament. Paul and Silas first visited Philippi in Greece during Paul's second missionary journey, which occurred between approximately 49 and 51 AD. Philippi was the location of the first Christian community established in Europe. Biblical scholars are in general agreement that the letter was indeed written by Paul of Tarsus. Although some consider that the letter was written from Ephesus in 52–55 AD or Caesarea Maritima in 57–59, the most likely city of provenance was Rome,"} +{"qid": "test1103", "pid": "5768446", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Polycarp's letter to the Philippians\"\nPolycarp's letter to the Philippians The Letter to the Philippians (often simply called Philippians) is an epistle composed around AD 110 to 140 by Polycarp of Smyrna, one of the Apostolic Fathers, from Antioch to the early Christian church in Philippi. The letter is described by Irenaeus as follows: The letter is one of a number believed to have been written by Polycarp, but is the only extant document. The letter was composed in Greek, but the Greek text has not been preserved in its entirety; there is also a Latin translation of the letter. Moreover, a few quotations of"} +{"qid": "test1103", "pid": "781000", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Perseverance of the saints\"\nThey attempt to prove that with the text from the book of Philippians where the apostle Paul writes, \"\"He which hath begun a good work in you will perform it until the day of Jesus Christ\"\" (Philippians 1:6). There are also many non-Calvinists who also maintain that a person who is saved can never be lost. This Free Grace or non-traditional Calvinist doctrine is found predominantly in \"\"free will\"\" Baptist theology, but also other Protestant churches of the evangelical tradition. The doctrine of Perseverance of the Saints is distinct from the doctrine of Assurance, which describes how a person may"} +{"qid": "test1103", "pid": "204322", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "Irenaeus\nJohn the Apostle, and that the Gospel of Luke was written by Luke, the companion of Paul. Scholars contend that Irenaeus quotes from 21 of the 27 New Testament Texts: Matthew (\"\"Book 3, Chapter 16\"\") Mark (\"\"Book 3, Chapter 10\"\") Luke (\"\"Book 3, Chapter 14\"\") John (\"\"Book 3, Chapter 11\"\") Acts of the Apostles (\"\"Book 3, Chapter 14\"\") Romans (\"\"Book 3, Chapter 16\"\") 1 Corinthians (\"\"Book 1, Chapter 3\"\") 2 Corinthians (\"\"Book 3, Chapter 7\"\") Galatians (\"\"Book 3, Chapter 22\"\") Ephesians (\"\"Book 5, Chapter 2\"\") Philippians (\"\"Book 4, Chapter 18\"\") Colossians (\"\"Book 1, Chapter 3\"\") 1 Thessalonians (\"\"Book 5, Chapter"} +{"qid": "test1103", "pid": "18695598", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 3\"\nlose, he could willingly part with it for more of this knowledge; compare ( Philippians 3:10 ) ; or his sense is, that he might gain by Christ, or that Christ might be gain to him, as he found him to be, and as he is to every believer; who by parting with all for Christ, gains much by him, as a justifying righteousness, acceptance with God, peace, pardon, life, grace, and glory. Philippians 3 Philippians 3 is the third chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul"} +{"qid": "test1103", "pid": "13249834", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"National Bible Bee\"\nwas the book of Colossians. The Bible knowledge passage for 2018 is James. The book the contestants will study for nationals is Philippians. 120 contestants are chosen from each age division to compete at the national competition in the fall. All contestants participate in a preliminary round featuring both a written exam and an oral recitation round. The semi-finals feature the top 15 contestants from each division competing in a single-elimination recitation format for five spots in the final challenge round. The format for finals changed from the format used in previous years. Round 1 featured each of the 5"} +{"qid": "test1103", "pid": "12510130", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Minuscule 5\"\nMinuscule 5 Minuscule 5 (in the Gregory-Aland numbering), δ 453 (Soden). It is a Greek minuscule manuscript of the New Testament, on 342 parchment leaves (), dated palaeographically to the 13th century. It has marginalia. The codex contains entire of the New Testament except the Book of Revelation. The order of books: Gospels, Acts, Catholic epistles, Pauline epistles; Hebrews placed before 1 Timothy, Colossians precede Philippians. The text is written in one column per page, 28 lines per page. The text is divided according to the κεφαλαια (\"\"chapters\"\"), whose numbers are given at the margin, and the τιτλοι (\"\"titles of"} +{"qid": "test1103", "pid": "7619802", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 2\"\nthey; he was subject to the like sorrows and griefs, temptations, reproaches, and persecutions; and was like them in everything, excepting sin: a strange and surprising difference this, that he who was \"\"equal to God\"\", should be \"\"like to [sinful] men!\"\" New King James Version Philippians 2 Philippians 2 is the second chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul the Apostle and Saint Timothy. This chapter can be grouped (with cross references to other parts of the Bible): New King James Version New King James Version New"} +{"qid": "test1103", "pid": "5586057", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "Antilegomena\nhe questioned Hebrews, James, Jude and Revelation, these books are sometimes termed \"\"Luther's Antilegomena\"\". Current Lutheran usage expands this to also include 2 Peter, 2 John, and 3 John. F. C. Baur used the term in his classification of the Pauline Epistles, classing Romans, 1–2 Corinthians and Galatians as homologoumena; Ephesians, Philippians, Colossians, 1–2 Thessalonians and Philemon as antilegomena; and the Pastoral Epistles as \"\"\"\"notha\"\"\"\" (spurious writings). The term is sometimes applied also to certain books in the Hebrew Bible. Antilegomena Antilegomena, a direct transliteration of the Greek , refers to written texts whose authenticity or value is disputed. Eusebius"} +{"qid": "test1103", "pid": "19141814", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Mitrophan (Kodić)\"\nOrthodox Church in Belgrade on the theme \"\"The Mystery of Christ According to the Epistles to the Ephesians, Philippians and Colossians of the Holy Apostle Paul\"\". Mitrophan is Professor of New Testament at the St. Sava School of Theology in Libertyville, Illinois. He translated from the Romanian Dumitru Staniloae's \"\"Community and Spirituality in the Orthodox Liturgy\"\", three volumes of \"\"Orthodox Dogmatics\"\", \"\"The Immortal Image of God\"\", \"\"Orthodox Moral Theology\"\", and \"\"The Gospel Image of Christ\"\" by Dumitru Staniloae, and \"\"The Romanian Patericon I and II\"\" and the \"\"Dictionary of Orthodox Theology\"\" by Hieromonk Ioanichie Bălan. He has written two books:"} +{"qid": "test1103", "pid": "13784615", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Papyrus Bodmer III\"\nPapyrus Bodmer III Codex Bodmer III, is a Coptic uncial manuscript of the four Gospels, dated palaeographically to the 4th century. It contains the text of the Gospel of John with some lacunae. It is written in Bohairic dialect of Coptic language. It is the oldest manuscript of the Bohairic version. Originally codex contained 239 pages, but the first 22 are damaged and only small fragments have survived. The Gospel of John is followed by the text of Book of Genesis (1:1-4:2) with page numbers beginning with α in a new series. It has also fragment of Epistle to Philippians"} +{"qid": "test1103", "pid": "18695609", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 4\"\nPhilippians 4 Philippians 4 is the fourth (and the last) chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul the Apostle and Saint Timothy. This chapter can be grouped (with cross references to other parts of the Bible): New King James Version This is a repetition of the exhortation in the preceding chapter; (See Gill on Philippians 3:1); with this addition \"\"alway\"\"; for there is always cause and matter for rejoicing in Christ, even in times of affliction, distress, and persecution; since he is always the same; his grace"} +{"qid": "test1103", "pid": "9982808", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Fred Craddock\"\nFred Craddock Fred Brenning Craddock, Jr. (April 30, 1928 – March 6, 2015) was Bandy Distinguished Professor of Preaching and New Testament Emeritus in the Candler School of Theology at Emory University. He was an ordained minister of the Christian Church (Disciples of Christ) from rural Tennessee. He was the director of the Craddock Center, a non-profit service group which operates in rural Appalachia. Craddock has written a number of books, including \"\"The Pre-Existence of Christ\"\" (1968), \"\"As One Without Authority\"\" (1971, rev. 1974 and 1979), \"\"Overhearing the Gospel\"\" (1978), \"\"The Gospels\"\" (1981), commentaries on John (1982) and Philippians (1984),"} +{"qid": "test1103", "pid": "11979046", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Codex Coislinianus\"\nin several European libraries, in: Paris, Athos, Saint Petersburg, Kiev, Moscow, and Turin. It is cited in all critical editions of the Greek New Testament. The surviving leaves of the codex contain: All these books, belonging to the Pauline epistles, have survived only in fragments. Romans, Philippians, Ephesians, 2 Thes, and Phil have been lost altogether. The codex originally contained the entire Pauline epistles. The leaves were arranged in quarto (four leaves in quire). Only 41 leaves () of the codex have survived. The text is written on parchment in large, square uncials (over 1.5 cm), in one column per"} +{"qid": "test1103", "pid": "5836236", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Bible quiz\"\nteam also has a designated captain, as well as a co-captain who assumes the captain's responsibility in the case of an error-out or quiz-out, who has the ability to challenge a ruling (asking for an opposite ruling) or appeal the question's validity (asking for it to be thrown out). A penalty of ten points will be deducted if a captain challenges twice in one quiz and is overruled both times. There is a material cycle consisting of eight books or groups of books: Luke, 1-2 Corinthians, John, Hebrews & 1-2 Peter, Matthew, Romans & James, Acts, Galatians-Ephesians-Philippians-Colossians & Philemon. Regional"} +{"qid": "test1103", "pid": "127046", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Epistle to the Philippians\"\nthe basis upon which he promises to send Timothy to them for ministry (2:19–23), and an anticipation to also pay them a personal visit (2:24). With this communication Epaphroditus sets out on his homeward journey (2:28–29). There has been ongoing debate regarding where Paul was when he wrote this letter (and therefore the date of the letter's composition). Internal evidence in the letter itself points clearly to it being composed while Paul was in custody (Philippians 1:7,13), but which period of imprisonment is highly debated . Some suggest the Roman imprisonment at the end of the Book of Acts (chapter"} +{"qid": "test1103", "pid": "18695565", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 1\"\ndeath being for his sake, in the faith of him, and the steady profession of it, would be what would glorify him, and so be his gain likewise; and this seems to be the genuine sense of the words, which contain a reason of the apostle's faith, why he was persuaded Christ would be magnified or glorified in his body, whether by life or by death. Philippians 1 Philippians 1 is the first chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul the Apostle and Saint Timothy. This chapter"} +{"qid": "test1103", "pid": "18695610", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 4\"\nis always sufficient; his blood has a continual virtue in it, and always speaks for peace and pardon; his righteousness is an everlasting one, and so is his salvation, and such is his love; though some join this word with what follows, this is what was continually inculcated by him, as being of great importance and use for the comfort of believers, and the honour of Christ. New King James Version New King James Version Philippians 4 Philippians 4 is the fourth (and the last) chapter of the Epistle to the Philippians in the New Testament of the Christian Bible."} +{"qid": "test1103", "pid": "7619795", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 2\"\nPhilippians 2 Philippians 2 is the second chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul the Apostle and Saint Timothy. This chapter can be grouped (with cross references to other parts of the Bible): New King James Version New King James Version New King James Version Or \"\"nevertheless emptied himself\"\"; not of that fulness of grace which was laid up in him from everlasting, for with this he appeared when he was made flesh, and dwelt among men; nor of the perfections of his divine nature, which were"} +{"qid": "test1103", "pid": "18695559", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 1\"\nPhilippians 1 Philippians 1 is the first chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul the Apostle and Saint Timothy. This chapter can be grouped (with cross references to other parts of the Bible): New King James Version New King James Version New King James Version New King James Version Christ was his life \"\"efficiently\"\", the efficient cause and author of his spiritual life; he spoke it into him, produced it in him, and disciplined him with it: and he was his life, objectively, the matter and object"} +{"qid": "test1103", "pid": "18695587", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 3\"\nPhilippians 3 Philippians 3 is the third chapter of the Epistle to the Philippians in the New Testament of the Christian Bible. It is authored by Paul the Apostle and Saint Timothy. This chapter can be grouped (with cross references to other parts of the Bible): New King James Version New King James Version New King James Version Not only the things before mentioned, but anything, and everything else but Christ, or that stood in competition with him, or were short of him; as his natural and acquired parts; the whole compass of learning he had attained to; all that"} +{"qid": "test1103", "pid": "127049", "query": "who was the book of philippians written to", "answer": "the church at Philippi", "passage": "\"Epistle to the Philippians\"\neven death on a cross. For this reason also, God highly exalted Him, and bestowed on Him the name which is above every name, so that at the name of Jesus every knee will bow, of those who are in heaven and on earth and under the earth, and that every tongue will confess that Jesus Christ is Lord, to the glory of God the Father. The letter was written to the church at Philippi, one of the earliest churches to be founded in Europe. They were very attached to Paul, just as he was very fond of them. Of"} +{"qid": "test1103", "pid": "18695592", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Philippians 3\"\nother knowledge, if the author and original of it is considered: it is not of ourselves, nor by the assistance of men; it is not in the book of nature, nor in the schools of the philosophers; it is not of earth, nor earthly, but it comes from afar, from above, from heaven, from God the Father of lights; it is a free grace gift, a distinguishing one, and is very comprehensive, unspeakable, and unchangeable: and as to the object of it, it is Christ, the chiefest among ten thousands; who made the heavens, earth, and seas, and all that"} +{"qid": "test1103", "pid": "6754532", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Book of Life\"\nIt is also mentioned in Paul's letter to the Philippians: While the prevailing tendency among apocryphal writers of the Hasidean school was to give the Book of Life an eschatological meaning, the Jewish liturgy and the tradition relating to the New Year and Atonement days adhered to the ancient view, which took the Book of Life in its natural meaning, preferring, from a practical point of view, the worldliness of Judaism to the heavenliness of the Essenes. Instead of transferring, as is done in the Book of Enoch, the Testament of Abraham, and elsewhere, the great Judgment Day to the"} +{"qid": "test1103", "pid": "19249508", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"God Is Working His Purpose Out\"\nthe LORD, As the waters cover the sea.\"\" The hymn references God being always at work to realize his will for the world and for humanity. It also references Philippians 2:12–13 in that God works in humanity to act according to his purpose. The lyrics for the hymn written by Ainger. 1. 2. 3. 4. God Is Working His Purpose Out \"\"God Is Working His Purpose Out\"\" is an English Christian hymn. It was written in 1894 by Arthur Campbell Ainger as a tribute to the Archbishop of Canterbury, Edward White Benson. The original music for the hymn was written"} +{"qid": "test1103", "pid": "127048", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Epistle to the Philippians\"\nletter begins in standard form for an ancient Hellenistic letter structure, with author – or senders – first, then recipients with a greeting (Phil. 1.1–2). The address and the greeting is clear: Philippians 2:5–11: Have this attitude in yourselves which was also in Christ Jesus, who, although He existed in the form of God, did not regard equality with God a thing to be grasped, but emptied Himself, taking the form of a bond-servant, and being made in the likeness of men. Being found in appearance as a man, He humbled Himself by becoming obedient to the point of death,"} +{"qid": "test1103", "pid": "1299620", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "Ecumenism\necumenism is that people focus primarily on Christ, not on separate church organizations. In Schlink's book \"\"Ökumenische Dogmatik\"\" (1983), he says Christians who see the risen Christ at work in the lives of various Christians or in diverse churches realize that the unity of Christ's church has never been lost, but has instead been distorted and obscured by different historical experiences and by spiritual myopia. Both are overcome in renewed faith in Christ. Included in that is responding to his admonition (John 17; Philippians 2) to be one in him and love one another as a witness to the world."} +{"qid": "test1103", "pid": "18851738", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "\"Troels Engberg-Pedersen\"\nletter to Philippians which drives Paul to view the corporal Christian church as superseding the faith of the individual person. It is this philosophical starting point that guides Paul's emphasis on “citizenship of Heaven” that he alludes to in Philippians 3:15-20, which says \"\"Let us, then, who are ‘perfectly mature’ adopt this attitude. And if you have a different attitude, this too God will reveal to you. Only, with regard to what we have attained, continue on the same course...but our citizenship is in heaven and from it we also await a savior, the Lord Jesus Christ.” Engberg-Pedersen illustrates this"} +{"qid": "test1103", "pid": "6603704", "query": "who was the book of philippians written to", "answer": "Philippians", "passage": "Epaphroditus\nEpaphroditus Epaphroditus () is a New Testament figure appearing as an envoy of the Philippian and Colossian church to assist the Apostle Paul (Philippians 2:25-30). He is regarded as a saint of the Orthodox Church and the Catholic Church, first Bishop of Philippi, and of Andriaca (there are at least two ancient towns called Andriaca, one in Thrace and one in Asia Minor), and first Bishop of Terracina, Italy. There is little evidence that these were all the same man. Epaphroditus appears in the New Testament in the letters to the Philippians (2.25-30, 4.18). This is a “common personal name”,"} +{"qid": "test1104", "pid": "18586293", "query": "who has the most 70 point games in nba history", "answer": "Wilt Chamberlain", "passage": "\"Devin Booker\"\n1999–2000 season. His streak ended at 16 after scoring just 14 points on February 6 against the New Orleans Pelicans. On March 24, Booker became the sixth player in NBA history to score 70 points in a game, accomplishing the feat in the Suns' 130–120 loss to the Celtics at TD Garden. Booker joined Wilt Chamberlain, David Robinson, David Thompson, Elgin Baylor and Kobe Bryant as players to reach 70 in one game. It was the 11th 70-point game in NBA history. Booker finished 21-of-40 shooting overall, including 4-of-11 on 3-pointers, and 24-of-26 from the free throw line. He added"} +{"qid": "test1104", "pid": "18586297", "query": "who has the most 70 point games in nba history", "answer": "Wilt Chamberlain", "passage": "\"Devin Booker\"\nseven 30-point games. In Suns history, only Charlie Scott (8 in 1974–75) has had more 30-point performances through the team's first 17 games of a season. On December 2, he scored a season-high 38 points in a 116–111 loss to the Boston Celtics. He joined Wilt Chamberlain and Elgin Baylor as the only players in NBA history to follow up a 70-point performance with 32+ points in their next game against that same opponent. Two days later, he scored 46 points in a 115–101 win over the Philadelphia 76ers. On December 6, he was ruled out for up to three"} +{"qid": "test1104", "pid": "11667075", "query": "who has the most 70 point games in nba history", "answer": "Wilt Chamberlain", "passage": "\"James Harden\"\nblock in a 105–96 win over the Detroit Pistons. He became just the fourth NBA player in the last 25 years to post those totals in a single game and matched the third-highest point total for any NBA player in his team debut (most for Rockets debut). Two days later, he scored 45 points against the Atlanta Hawks. His 82 total points were the most scored by a player in his first two games with a team in NBA history, surpassing the previous mark held by Wilt Chamberlain, who scored 79 points in his first two career games with the"} +{"qid": "test1105", "pid": "5122749", "query": "what is the meaning of the name habib", "answer": "\"beloved\"", "passage": "Habib\nconfined to Muslims. Notable examples of Christian individuals named Habib include 'Habib the Deacon' and Gabriel Habib and the Philosopher Habib. Habib Habib (; ), sometimes written as Habeeb, is an Arabic masculine given name and occasional surname with the meaning \"\"beloved\"\". The name is popular throughout the Muslim World, though particularly in the Middle East and Africa. In other countries, especially in Yemen and Southeast Asian countries such as Brunei, Singapore, Indonesia and Malaysia, it is an honorific to address a Muslim scholar of Sayyid (a descendant of Muhammad) families and where it is one of the names of"} +{"qid": "test1105", "pid": "5122748", "query": "what is the meaning of the name habib", "answer": "\"beloved\"", "passage": "Habib\nHabib Habib (; ), sometimes written as Habeeb, is an Arabic masculine given name and occasional surname with the meaning \"\"beloved\"\". The name is popular throughout the Muslim World, though particularly in the Middle East and Africa. In other countries, especially in Yemen and Southeast Asian countries such as Brunei, Singapore, Indonesia and Malaysia, it is an honorific to address a Muslim scholar of Sayyid (a descendant of Muhammad) families and where it is one of the names of Prophet Muhammad - حبيب الله \"\"Habib Allah\"\" (Habibullah/ Habiballah). The name, as is the case with other Arabic names, is not"} +{"qid": "test1105", "pid": "15077023", "query": "what is the meaning of the name habib", "answer": "beloved", "passage": "\"Khwaja Habib Ali Shah\"\nto the requests of his children as to what they desired as gifts (iddi) on the occasion of happiness/id. When it came to the turn of Khwaja Habib tears would roll down his eyes and he would weep and request \"\"My dear father, whenever you visit the Khaqah of my beloved Pir-o-Murshid (Sheikh){Hafiz Pir Dastagir}, grant me the privilege of accompanying you.\"\". After studying the Quran and the acquisition of the basic knowledge of Shariat, Khwaja Habib was formally initiated into Tariqa by Al Marifah Hafiz Mohammed Ali Shah (Hafiz Pir Dastagir) Khairabadi. Khwaja Habib took the bayath on the"} +{"qid": "test1106", "pid": "9245531", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"2000 United States presidential election in Florida\"\npercentage points, making the race too close to call. On election day itself, the extent of the mix-ups in the electoral rolls was such that \"\"in a number of precincts in Florida's inner cities, the polling locations were heavily fortified with police\"\". The final official Florida count gave the victory to Bush by 537 votes, making it by percentage not only the tightest race of the campaign (New Mexico was decided by 363 votes but has a much smaller population, with those 363 votes representing a 0.061% margin whereas the 537 votes in Florida were just 0.009%), but the closest"} +{"qid": "test1106", "pid": "11388805", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"Ralph Nader 2000 presidential campaign\"\nof the vote, which he needed to gain federal funds in 2004. Defenders of Nader, including Dan Perkins, argued that the margin in Florida was small enough that Democrats could blame any number of third-party candidates for the defeat, including Workers World Party candidate Monica Moorehead, who received 1,500 votes. Furthermore, in an article published by \"\"Salon.com\"\" on Tuesday, November 28, 2000, progressive activist Jim Hightower mentioned that in Florida, a state Gore lost by only 537 votes, 24,000 Democrats voted for Nader, while another 308,000 Democrats voted for Bush. According to Hightower, 191,000 self-described Liberals in Florida voted for"} +{"qid": "test1106", "pid": "1860147", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"2000 United States presidential election recount in Florida\"\n2000 United States presidential election recount in Florida The Florida election recount of 2000 was a period of vote recounting in Florida that occurred during the weeks after Election Day in the 2000 United States presidential election between George W. Bush and Al Gore. The Florida vote was ultimately settled in Bush's favor by a margin of 537 votes when the U.S. Supreme Court, in \"\"Bush v. Gore\"\", stopped a recount that had been initiated upon a ruling by the Florida Supreme Court. That in turn gave Bush a majority of votes in the Electoral College and victory in the"} +{"qid": "test1106", "pid": "12797327", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"2008 United States presidential election in Florida\"\nthe momentum in the two months before Election Day. Obama ended up winning the state with 51% of the vote, including wins in four counties that Bush won in 2004. Republican George W. Bush of Texas carried The Sunshine State by a convincing margin of 5% in 2004 against Democrat John Kerry, a much greater margin than in 2000 when Bush controversially won the state's 25 electoral votes against Democrat Al Gore of Tennessee by 537 votes. Early polls showed Barack Obama faring poorly in Florida. Barack Obama did not campaign there during the primary season and argued against seating"} +{"qid": "test1106", "pid": "811281", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Palm Beach County, Florida\"\n2000 when it appeared to have impacted the presidential election that year between eventual winner George W. Bush and Al Gore. A major source of controversy was the butterfly ballot used in Palm Beach County, a confusing ballot design which may have caused many voters to mistakenly vote for Reform Party candidate Pat Buchanan instead of Al Gore. Buchanan had an unexpectedly strong showing in the county. In the end, Gore carried the county, but Bush captured the state of Florida by 537 votes after the recount was effectively halted by the Supreme Court of the United States in Bush"} +{"qid": "test1106", "pid": "1516097", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"History of Florida\"\nState Harris to certify the election results. The final official Florida count gave the victory to George W. Bush over Al Gore by 537 votes, a 0.009% margin of difference. The process was extremely divisive, and led to calls for electoral reform in Florida. Florida has the strictest laws penalizing and disenfranchising felons and other criminals, even if they have served their sentences. Together with other penalties, it excluded many minorities who may have voted for the Democratic candidate. Long-term scientific attention has focused on the fragility of the Everglades. In 2000 Congress authorized the Comprehensive Everglades Restoration Plan (CERP)"} +{"qid": "test1106", "pid": "437743", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"2000 United States presidential election\"\navoided campaigning with Clinton. Republicans denounced Clinton's indiscretions, while Gore criticized Bush's lack of experience. On election night, it was unclear who had won, with the electoral votes of the state of Florida still undecided. The returns showed that Bush had won Florida by such a close margin that state law required a recount. A month-long series of legal battles led to the contentious, 5–4 Supreme Court decision of \"\"Bush v. Gore\"\", which ended the recount. With the end of the recount, Bush won Florida by a margin of 0.009%, or 537 votes. The Florida recount and subsequent litigation resulted"} +{"qid": "test1106", "pid": "516920", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"Spoiler effect\"\nballot in Florida received more than the 537 vote difference between Bush and Gore. Still, some observers began to refer to the spoiler effect as the \"\"Nader effect\"\" after the 2000 election. A 2006 study found that at least 40% of Nader voters in Florida would have voted for Bush if Nader had not run, while the other 60% would have voted for Gore. The study concluded that this 60% \"\"did indeed spoil the 2000 presidential election for Gore but only because of highly idiosyncratic circumstances, namely, Florida’s extreme closeness.\"\" In the German presidential election of 1925, Communist Ernst Thälmann"} +{"qid": "test1106", "pid": "18925815", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"United States presidential elections in which the winner lost the popular vote\"\nrelief, and reforms for federal social-insurance programs, though foreign policy was not ignored. The result of the election hinged on voting in Florida, where Bush's narrow margin of victory of just 537 votes out of almost 6 million votes cast on election night triggered a mandatory recount. Litigation in select counties started additional recounts, and this litigation ultimately reached the United States Supreme Court. The Court's contentious decision in \"\"Bush v. Gore\"\", announced on December 12, 2000, ended the recounts, effectively awarding Florida's votes to Bush and granting him the victory. Later studies have reached conflicting opinions on who would"} +{"qid": "test1106", "pid": "437798", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"2000 United States presidential election\"\nall counts. The assertion that Nader's marginal vote hurt Gore is not borne out by polling data. When exit pollers asked voters how they would have voted in a two-way race, Bush actually won by a point. That was better than he did with Nader in the race.\"\" In an online article published by \"\"Salon.com\"\" on Tuesday, November 28, 2000, Texan progressive activist Jim Hightower claimed that in Florida, a state Gore lost by only 537 votes, 24,000 Democrats voted for Nader, while another 308,000 Democrats voted for Bush. According to Hightower, 191,000 self-described liberals in Florida voted for Bush,"} +{"qid": "test1106", "pid": "7749139", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Al Gore\"\nFourteenth Amendment, and further ruled 5–4 that no constitutionally valid recount could be completed by the December 12 deadline. This case ordered an end to recounting underway in selected Florida counties, effectively giving George W. Bush a 537 vote victory in Florida and consequently Florida's 25 electoral votes and the presidency. The results of the decision led to Gore winning the popular vote by approximately 500,000 votes nationwide, but receiving 266 electoral votes to Bush's 271 (one District of Columbia elector abstained). On December 13, 2000, Gore conceded the election. Gore strongly disagreed with the Court's decision, but in his"} +{"qid": "test1106", "pid": "346453", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Ralph Nader\"\nrather have a provocateur than an anesthetizer in the White House.\"\" On another occasion, Nader answered this question with: \"\"No, not at all... There may be a cold shower for four years that would help the Democratic Party... It doesn't matter who is in the White House.\"\" In the 2000 presidential election in Florida, George W. Bush defeated Al Gore by 537 votes. Nader received votes, which led to claims that he was responsible for Gore's defeat. Nader, both in his book \"\"Crashing the Party\"\" and on his website, states: \"\"In the year 2000, exit polls reported that 25% of"} +{"qid": "test1106", "pid": "9245526", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"2000 United States presidential election in Florida\"\nAl Gore, with New Mexico (5), Oregon (7), and Florida (25) too close to call that evening. Gore won New Mexico and Oregon over the following few days, but the result in Florida would have been decisive however those two states had voted. After an intense recount process and the United States Supreme Court's decision in \"\"Bush v. Gore\"\", Bush won Florida’s electoral votes by a margin of only 537 votes out of almost six million cast and as a result became the president-elect. The process was extremely divisive, and led to calls for electoral reform in Florida. \"\"See also"} +{"qid": "test1106", "pid": "11388793", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Ralph Nader 2000 presidential campaign\"\nsecured prominent union help. The California Nurses Association and the United Electrical Workers endorsed his candidacy and campaigned for him. Because Nader had been denied access to the ballot in some states, the Nader 2000 campaign launched an effort to challenge the inclusion criteria for the presidential debates sponsored by the Commission on Presidential Debates. In the 2000 presidential election in Florida, George W. Bush defeated Al Gore by 537 votes. Nader received 97,421 votes in Florida (and Pat Buchanan and Harry Browne received 17,484 and 16,415 respectively), which led to claims that Nader was responsible for Gore's defeat. Critics"} +{"qid": "test1106", "pid": "1860157", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"2000 United States presidential election recount in Florida\"\nstatewide vote count with Bush ahead by 537 votes. The next day, Gore sued under Florida's statutory construct of the \"\"contest phase\"\". On November 28, Judge N. Sanders Sauls of Leon County Circuit Court rejected Gore's request to include the recount results from Miami-Dade and Palm Beach Counties. Gore appealed that decision to the Florida Supreme Court. Sauls also rejected Gore's contest of the election result on December 4, and Gore appealed that decision too. On December 8, the Florida justices, by a 4-3 vote, rejected the selective use of manual recounts in just four counties and ordered immediate manual"} +{"qid": "test1106", "pid": "437772", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"2000 United States presidential election\"\nwinner of Florida's electors by 537 votes. Gore formally contested the certified results. A state court decision overruling Gore was reversed by the Florida Supreme Court, which ordered a recount of over 70,000 ballots previously rejected as undervotes by machine counters. The U.S. Supreme Court halted that order the next day, with Justice Scalia issuing a concurring opinion that \"\"the counting of votes that are of questionable legality does in my view threaten irreparable harm to petitioner\"\" (Bush). On December 12, the Supreme Court ruled in a 7–2 vote that the Florida Supreme Court's ruling requiring a statewide recount of"} +{"qid": "test1106", "pid": "10233202", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Republican Party of Florida\"\nvictory in 1968, the state only voted Democratic in presidential elections in 1976 (Jimmy Carter) 1996 (Bill Clinton), 2008 and 2012 (Barack Obama). The presidential election in 2000 was decided by a margin of 537 votes out of approximately 6 million cast, giving George W. Bush the presidency over Al Gore. The Florida Senate was still dominated by Democrats until 1992, when a majority of Republicans was elected. The Florida House of Representatives turned Republican after the November 1996 election. Since then, the number of Democrats in both chambers have continued to drop. The Florida Legislature became the first legislature"} +{"qid": "test1106", "pid": "1967602", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Vote pairing\"\nfriends in other states—instead of over the Internet). George W. Bush was certified as winning Florida by only 537 votes—by Florida's Secretary of State, Katherine Harris. The Florida Supreme Court then changed this margin to just 193 votes at most, in their ruling on December 8, 2004. Approximately 2,900,000 people voted for George W. Bush and Al Gore each in Florida, while the number who voted for Ralph Nader was certified at 97,421. If only another 0.2% of the voters for Ralph Nader in Florida had vote paired (about 200 divided by 97,421)—if about 1,600 Nader supporters had vote paired"} +{"qid": "test1106", "pid": "5743094", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Florida Democratic Party\"\nDemocrats until Richard Nixon's Southern strategy, which took advantage of white objections to the advances of the Civil Rights Movement which resulted in a regional political realignment for the South. After Nixon's victory in 1968, the state voted Democratic in only four Presidential elections: 1976 (Jimmy Carter), 1996 (Bill Clinton), 2008 and 2012 (Barack Obama). The presidential election in 2000 was decided by a margin of 537 votes out of approximately six million cast in the state, earning George W. Bush the presidency over Al Gore. The Florida Senate was dominated by Democrats until 1992, when a majority of Republicans"} +{"qid": "test1106", "pid": "1003924", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"Bush v. Gore\"\nBy rejecting those ballots, Florida provided Gore a 202-vote lead in the state. The United States District Court for the Northern District of Florida on December 8, 2000, overturned these rejections and ordered that all federal write-in ballots previously rejected be counted. The effect of these additional overseas ballots provided Bush with a 537-vote lead in the state. The ruling also noted: The subsequent analysis revealed that black-majority precincts had three times as many rejected ballots as white precincts. \"\"For minorities, the ballot survey found, a recount would not have redressed the inequities because most ballots were beyond retrieving. But"} +{"qid": "test1106", "pid": "14455394", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Loss of rights due to conviction for criminal offense\"\n43 adults were disenfranchised as of 2006. The issue of disenfranchisement gained awareness in 2000 after the \"\"excruciatingly close\"\" presidential election, wherein 2% of the voting-age population was prohibited from participating. In that election, George W. Bush won Florida by 537 votes, however 31% of black Floridians were denied the vote due to disenfranchisement. Given that African American voters are typically Democratic voters, it was argued at the time that their exclusion \"\"decisively\"\" changed the outcome of the election. In \"\"Reynolds v. Sims\"\", the Court ruled that the right to vote is a \"\"fundamental right,\"\" establishing a strict scrutiny test."} +{"qid": "test1106", "pid": "516918", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"Spoiler effect\"\nRepublican candidate, but lost in the electoral college. In the state of Florida, the final certified vote count showed Bush with just 537 more votes than Gore. Because Bush defeated Gore in Florida, he won the state, received more votes in the electoral college, and became president of the United States. Gore supporters argued that had candidate Ralph Nader, a liberal, not run in the election, the majority of the 97,421 votes he received in Florida would have been cast for Gore. Thus, they contend that Nader's candidacy spoiled the election for Gore by taking away enough votes from Gore"} +{"qid": "test1106", "pid": "6666621", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"George W. Bush\"\nGore\"\" ruling, the Court reversed a Florida Supreme Court decision that had ordered a third count, and stopped an ordered statewide hand recount based on the argument that the use of different standards among Florida's counties violated the Equal Protection Clause of the Fourteenth Amendment. The machine recount showed that Bush had won the Florida vote by a margin of 537 votes out of six million cast. Although he had received 543,895 fewer individual nationwide votes than Gore, Bush won the election, receiving 271 electoral votes to Gore's 266 (Gore's statewide victories had electoral votes tallying 267; however, one of"} +{"qid": "test1106", "pid": "1595544", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Katherine Harris\"\nHarris gained national attention for her role in the Florida election recount, certifying George W. Bush's narrow victory (537 votes) over Al Gore and awarding him the Florida electors, which gained him the national election. Harris was born in Key West, Florida to one of the state's wealthiest and most politically influential families. She is the daughter of Harriet (Griffin) and George W. Harris, Jr., who owned Citrus and Chemical Bank in Lakeland, Florida. Her maternal grandfather was Ben Hill Griffin, Jr., a successful businessman in the citrus and cattle industries and a powerful figure in the state legislature. Shortly"} +{"qid": "test1106", "pid": "1595552", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Katherine Harris\"\nthousands of black voters from the voter rolls, and thus the election between Al Gore and George W. Bush was so close in Florida, separated by 537 votes, that a recount of the votes was called for. After several recounts were inconclusive, citing that the laws governing recounts were unclear, Harris halted the recounting process. She certified that the Republican candidate, Texas Governor George W. Bush, had defeated the Democratic candidate, Vice President Al Gore, in the popular vote of Florida and thus certified the Republican slate of electors. This victory in Florida allowed Bush to win the election. Her"} +{"qid": "test1106", "pid": "811262", "query": "who carried florida by 537 votes in 2000", "answer": "George W. Bush", "passage": "\"Palm Beach County, Florida\"\nTexas Governor George W. Bush, manual recounts were conducted. On December 8, the Florida Supreme Court voted 4-3 to mandate manual recounts in all counties with disputed results. However, the Supreme Court of the United States overturned the decision in Bush v. Gore on December 12, allowing Florida Secretary of the State Katherine Harris to award the 25 electoral votes to Bush, as Harris's tally prior to the state-ordered recounts placed him ahead of Gore by 537 popular votes. In turn, this gave Bush victory in the national election. Following the September 11 attacks in 2001, an FBI investigation revealed"} +{"qid": "test1106", "pid": "6396793", "query": "who carried florida by 537 votes in 2000", "answer": "Bush", "passage": "\"History of the United States Democratic Party\"\nby four votes. Many Democrats blamed Nader's third-party spoiler role for Gore's defeat. They pointed to the states of New Hampshire (4 electoral votes) and Florida (25 electoral votes), where Nader's total votes exceeded Bush's margin of victory. In Florida, Nader received 97,000 votes and Bush defeated Gore by a mere 537. Controversy plagued the election and Gore largely dropped from politics for years, though by 2005 he was making speeches critical of Bush's foreign policy. Despite Gore's close defeat, the Democrats gained five seats in the Senate (including the election of Hillary Clinton in New York) to turn a"} +{"qid": "test1107", "pid": "13678895", "query": "when did ohio state join the big 10", "answer": "1912", "passage": "\"Ohio State–Penn State football rivalry\"\nOhio State–Penn State football rivalry The Ohio State–Penn State football rivalry is an American college football rivalry between the Ohio State Buckeyes and the Penn State Nittany Lions. Ohio State leads the series 20–14. The programs met eight times before 1993 when Penn State joined the Big Ten Conference. Since 1993, the teams have played annually, and the series continues as an annual Big Ten East division game. Penn State won the first four meetings in the series, however the games were scheduled intermittently between 1912 and 1964. The first ever match-up was held in Columbus, Ohio in November 1912."} +{"qid": "test1109", "pid": "2370178", "query": "who is the longest serving member of the house in history", "answer": "John Dingell", "passage": "\"John Dingell\"\nyears, he has the longest Congressional tenure in U.S. history. He was also the longest-serving Dean of the U.S. House of Representatives and Dean of the Michigan congressional delegation. Dingell is one of the final two World War II veterans to have served in Congress; the other is Texas Representative Ralph Hall, who also left Congress in 2015. Dingell was a longtime member of the House Energy and Commerce Committee and chaired the committee for multiple terms. Dingell announced on February 24, 2014, that he would not seek reelection to a 31st term in Congress. His wife, Debbie Dingell, indicated"} +{"qid": "test1109", "pid": "4853605", "query": "who is the longest serving member of the house in history", "answer": "John Dingell", "passage": "\"Emanuel Celler\"\nof his grandparents immigrated from Germany. His paternal grandparents and maternal grandmother were Jewish (his maternal grandfather was Catholic). A graduate of Boys High School, Columbia College, Columbia University and Columbia Law School, he was the first Democrat to ever serve his district and is the fifth longest-serving congressman in history (only John Dingell, Jamie Whitten, John Conyers and Carl Vinson served longer) and the longest-serving member of either house of Congress in New York's history. A practicing lawyer before entering politics, he was particularly involved in issues relating to the judiciary and immigration. During his first twenty-two years in"} +{"qid": "test111", "pid": "6677482", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"You'll Never Find Another Love like Mine\"\non \"\"The Proud Family Soundtrack\"\". You'll Never Find Another Love like Mine \"\"You'll Never Find Another Love like Mine\"\" (written by Kenny Gamble & Leon Huff) is a song performed by R&B singer Lou Rawls on his 1976 album \"\"All Things in Time\"\". The song proved to be Rawls' breakthrough hit, reaching number one on both the R&B and Easy Listening charts as well as number four on the dance chart and number two on the US \"\"Billboard\"\" Hot 100, where it was kept from the top spot for two weeks by \"\"You Should Be Dancing\"\" by The Bee Gees"} +{"qid": "test111", "pid": "6677478", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"You'll Never Find Another Love like Mine\"\nYou'll Never Find Another Love like Mine \"\"You'll Never Find Another Love like Mine\"\" (written by Kenny Gamble & Leon Huff) is a song performed by R&B singer Lou Rawls on his 1976 album \"\"All Things in Time\"\". The song proved to be Rawls' breakthrough hit, reaching number one on both the R&B and Easy Listening charts as well as number four on the dance chart and number two on the US \"\"Billboard\"\" Hot 100, where it was kept from the top spot for two weeks by \"\"You Should Be Dancing\"\" by The Bee Gees and \"\"(Shake, Shake, Shake) Shake"} +{"qid": "test111", "pid": "6677480", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"You'll Never Find Another Love like Mine\"\n\"\"Hit and Run\"\" (2012), \"\"Veronica Mars\"\" (2014), and on the TV sitcoms \"\"My Wife and Kids\"\" (2001–2005), in which Lou Rawls himself sings it to Damon Wayans during a colonoscopy, \"\"That '70s Show\"\" (1998–2006), \"\"South Park\"\" (1997–), \"\"Two and a Half Men\"\" (2003–2015), and \"\"Psych\"\" (2006–2014). The song could also be heard in an episode of \"\"The Proud Family\"\", where Lou Rawls sings and dances with Penny Proud. In addition, it was performed by the singer in doll form in an \"\"Action League Now!\"\" segment on \"\"KaBlam!\"\". The song \"\"If You Could Love Me\"\" by Edwyn Collins uses many of"} +{"qid": "test111", "pid": "4790816", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Wing (South Park)\"\nwas either a \"\"super sweet joke\"\" or a \"\"super sweet not joke\"\", but continued to listen to more of her music, especially whenever they were frustrated. Parker and Stone contacted Wing on using her songs, and she had to approve her cartoon likeness before allowing her music to be used. Parker also says he received a letter of thanks from her for the sales boost she enjoyed as a result of the episode. At the pageant, Token performs the song \"\"You'll Never Find Another Love Like Mine\"\" by Lou Rawls. His singing voice was not provided by the usual dubbing"} +{"qid": "test111", "pid": "2781435", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Laura Pausini\"\nalbum in November 2005, titled \"\"Live in Paris 05\"\". Pausini made a guest appearance on Michael Bublé's 2005 live album \"\"Caught in the Act\"\", singing a duet with Bublé of Lou Rawls' hit \"\"You'll Never Find Another Love Like Mine\"\". The duet was placed on both the audio CD, and the full concert DVD that aired on PBS as an episode of \"\"Great Performances\"\". At the 2006 Lo Nuestro Award, Pausini was nominated in the sections Album of the Year for \"\"Escucha\"\", Song of the Year and Video of the Year for \"\"Viveme\"\" and won the award for Best Female"} +{"qid": "test111", "pid": "16962537", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Disturbia: Original Motion Picture Soundtrack\"\nlike we've temporarily jumped film. Some judicious use of the skip button improves matters considerably, with eerie reggae from Berlin producers Noiseshaper and the sweet tones of singer-songwriter Priscilla Ahn segueing perfectly into Thomas J. Mitchell's classic \"\"Loving You\"\", before Lou Rawls takes us far, far away from little white picket fences and into the big city with \"\"You'll Never Find Another Love Like Mine\"\". Matt Millstein of \"\"Soundtrack.net\"\" gave the soundtrack two-and-a-half stars out of five, stating that \"\"the song soundtrack to D. J. Caruso's recent suspense thriller \"\"Disturbia\"\" suffers the fate of many recent song soundtracks; it feels"} +{"qid": "test111", "pid": "14321071", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Unmistakably Lou\"\nUnmistakably Lou Unmistakably Lou is an album by American R&B singer Lou Rawls, released in 1977 on the Philadelphia International Records label. It was Rawls' second PIR album and performed respectably (#14 R&B and #41 pop), although its sales fell well short of his 1976 PIR debut \"\"All Things in Time\"\". Only one single, \"\"See You When I Git There\"\", was released from the album in the US; alongside \"\"You'll Never Find Another Love Like Mine\"\" and \"\"Lady Love\"\", it remains one of Rawls' best-known PIR songs. Like its predecessor, \"\"Unmistakably Lou\"\" is a well-regarded album for its mix of"} +{"qid": "test111", "pid": "14315413", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"All Things in Time\"\nAll Things in Time All Things in Time is an album by American R&B singer Lou Rawls, released in June 1976 on the Philadelphia International Records label. Coming after a career lull in the years immediately preceding, \"\"All Things in Time\"\" was Rawls' first album for PIR; at the time he was the first artist to sign with PIR after having already enjoyed a substantial recording career and chart success with other record labels. The album includes Rawls' most famous hit song \"\"You'll Never Find Another Love Like Mine\"\". Recorded at the legendary Sigma Sound Studios and produced by such"} +{"qid": "test111", "pid": "3021786", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Lou Rawls\"\nMorning\"\" in 1965, and his final was \"\"Wind Beneath My Wings\"\" in 1983. In addition to those two, nine other singles peaked at positions below the top 50 on the Hot 100, and additional singles reached the R&B, Adult Contemporary and Bubbling Under charts. Lou Rawls Louis Allen Rawls (December 1, 1933 – January 6, 2006) was an American singer, songwriter, actor, voice actor, and record producer. Rawls released more than 60 albums, sold more than 40 million records, and had numerous charting singles, most notably his song \"\"You'll Never Find Another Love Like Mine\"\". He worked as a film,"} +{"qid": "test111", "pid": "3205064", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Michael Bublé (album)\"\nwho had previously worked with the likes of Josh Groban. Foster signed Bublé to his 143 record label, and he started recording a self-titled album in 2001, with David Foster as producer. The album features a range of standards from various eras including \"\"Fever\"\", \"\"The Way You Look Tonight\"\", \"\"For Once in My Life\"\", Van Morrison's \"\"Moondance\"\" and Lou Rawls' \"\"You'll Never Find Another Love Like Mine\"\". Barry Gibb of the Bee Gees performs with Bublé on his version of the group's classic track, \"\"How Can You Mend A Broken Heart\"\". The album was released on February 11, 2003, to"} +{"qid": "test111", "pid": "3021770", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Lou Rawls\"\nLou Rawls Louis Allen Rawls (December 1, 1933 – January 6, 2006) was an American singer, songwriter, actor, voice actor, and record producer. Rawls released more than 60 albums, sold more than 40 million records, and had numerous charting singles, most notably his song \"\"You'll Never Find Another Love Like Mine\"\". He worked as a film, television, and voice actor. He was also a three-time Grammy-winner, all for Best Male R&B Vocal Performance. Rawls was born in Chicago on December 1, 1933, and raised by his grandmother in the Ida B. Wells projects on the city's South Side. He began"} +{"qid": "test111", "pid": "4192405", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Philadelphia International Records\"\nwith the label), 1979; \"\"Back Stabbers\"\" and \"\"Love Train\"\" by The O'Jays, 1972/3; \"\"If You Don't Know Me By Now\"\" and \"\"The Love I Lost\"\" by Harold Melvin & The Blue Notes, 1972/3; \"\"Me and Mrs. Jones\"\" by Billy Paul, 1972; \"\"When Will I See You Again\"\" by The Three Degrees, 1974; and \"\"You'll Never Find Another Love Like Mine\"\" by Lou Rawls, 1976. The label had a distribution deal with CBS Records until 1984. Distribution of the catalog from 1976 onwards was then taken over by EMI, but CBS/Sony Music Entertainment continued to distribute material recorded up to 1976."} +{"qid": "test111", "pid": "3021776", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Lou Rawls\"\nPhiladelphia International and recorded \"\"All Things in Time\"\", which sold a million copies. \"\"You'll Never Find Another Love Like Mine\"\" became his biggest selling single, selling a million copies, topping the R&B and Adult Contemporary charts, and reaching No. 2 on the pop chart. The hit single \"\"Lady Love\"\" followed, from the 1977 album \"\"When You Hear Lou, You've Heard It All\"\". In 1980, Rawls began the \"\"Lou Rawls Parade of Stars Telethon\"\" which benefits the United Negro College Fund. The annual event, known since 1998 as \"\"An Evening of Stars: A Celebration of Educational Excellence\"\", consists of stories of"} +{"qid": "test111", "pid": "8421575", "query": "who sings the song you'll never find another love like mine", "answer": "Lou Rawls", "passage": "\"Dexter Wansel\"\ndistribution, and featured the vocal talents of The Jones Girls (Shirley, Brenda & Valorie), Pearl Williams Jones, Bunny Sigler & Cynthia Biggs. Dexter and wife Judith Wansel have created their own show in 2017 called called Sounds Of Philadelphia, in which during live performances, Grammy award winner Dexter Wansel performs some of the music he helped to create for many world renowned recording artists as well as his own music, with vocalists Marilyn Ashford-Brown and Damon Williams. He also honors Gamble and Huff with a performance of their phenomenal Lou Rawls hit, \"\"You'll Never Find Another Love Like Mine\"\" from"} +{"qid": "test1112", "pid": "6056904", "query": "who played mr. kincaid on the partridge family", "answer": "David Joseph Madden", "passage": "\"Dave Madden\"\nDave Madden David Joseph Madden (December 17, 1931 – January 16, 2014) was a Canadian-born American actor. His most famous role came on the 1970s sitcom \"\"The Partridge Family\"\", in which he played the group's manager, Reuben Kincaid, opposite Shirley Jones's character. Madden later had a recurring role as diner customer Earl Hicks on the mid-1970s to mid-1980s sitcom, \"\"Alice\"\". Madden was born in Sarnia, Ontario, Canada to Verna (née Burleigh) and Roger Madden. He had three older siblings: Sister Mary Roger (1919–), a practicing nun at Saint Mary-of-the-Woods in Indiana; Richard (1921–?); and Jack (1926–1948). He spent his early"} +{"qid": "test1113", "pid": "7425032", "query": "what kind of trees have heart shaped leaves", "answer": "Catalpa", "passage": "\"Catalpa speciosa\"\nCatalpa speciosa Catalpa speciosa, commonly known as the northern catalpa, hardy catalpa, western catalpa, cigar tree, catawba-tree, or bois chavanon, is a species of \"\"Catalpa\"\" native to the midwestern United States. The Latin specific epithet \"\"speciosa\"\" means “showy”. It is a medium-sized, deciduous tree growing to 15–30 meters tall and 12 meters wide. It has a trunk up to 1 m diameter, with brown to gray bark maturing into hard plates or ridges. The leaves are deciduous, opposite (or whorled), large, heart shaped, 20–30 cm long and 15–20 cm broad, pointed at the tip and softly hairy beneath. The leaves"} +{"qid": "test1114", "pid": "7309066", "query": "where did the british empire control an entire continent", "answer": "Australia", "passage": "\"History of Western civilization\"\nliterally \"\"never set\"\" on the British Empire, for it had outposts on every occupied continent. It consolidated control over such far flung territories as Canada and British Guiana in the Americas, Australia and New Zealand in Oceania; Malaya, Hong Kong and Singapore in the Far East and a line of colonial possessions from Egypt to the Cape of Good Hope through Africa. All of India was under British rule by 1870. In 1804, the Shah of the declining Mughal Empire had formally accepted the protection of the British East India Company. Many Britons settled in India, establishing a ruling class."} +{"qid": "test1114", "pid": "13722902", "query": "where did the british empire control an entire continent", "answer": "Australia", "passage": "\"Multiculturalism in Australia\"\nculture. Historically, Australia did not accept all persons, and adhered to the White Australia Policy. The policy was dismantled after World War II by various changes to immigration policy. Prior to settlement by Europeans, the Australian continent was not a single nation, but hosted many different Aboriginal cultures and between 200 and 400 active languages at any one time. According to the 2006 census some 150 indigenous languages are still spoken. The present nation of Australia resulted from a process of immigration intended to fill the continent (also excluding potential rivals to the British Empire). Settlers from the United Kingdom,"} +{"qid": "test1116", "pid": "16034479", "query": "distinctive characteristics of animals classified as vertebrates include", "answer": "have a vertebral column", "passage": "\"Vertebral column\"\nVertebral column The vertebral column, also known as the backbone or spine, is part of the axial skeleton. The vertebral column is the defining characteristic of a vertebrate in which the notochord (a flexible rod of uniform composition) found in all chordates has been replaced by a segmented series of bone: vertebrae separated by intervertebral discs. The vertebral column houses the spinal canal, a cavity that encloses and protects the spinal cord. There are about 50,000 species of animals that have a vertebral column. The human vertebral column is one of the most-studied examples. In a human's vertebral column there"} +{"qid": "test1116", "pid": "16034516", "query": "distinctive characteristics of animals classified as vertebrates include", "answer": "have a vertebral column", "passage": "\"Vertebral column\"\nskull which articulates with the first cervical vertebra. Vertebral column The vertebral column, also known as the backbone or spine, is part of the axial skeleton. The vertebral column is the defining characteristic of a vertebrate in which the notochord (a flexible rod of uniform composition) found in all chordates has been replaced by a segmented series of bone: vertebrae separated by intervertebral discs. The vertebral column houses the spinal canal, a cavity that encloses and protects the spinal cord. There are about 50,000 species of animals that have a vertebral column. The human vertebral column is one of the"} +{"qid": "test1118", "pid": "18134014", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades Darker\"\nFifty Shades Darker Fifty Shades Darker is a 2012 erotic romance novel by British author E. L. James. It is the second installment in the \"\"Fifty Shades\"\" trilogy that traces the deepening relationship between a college graduate, Anastasia Steele, and a young business magnate, Christian Grey. The first and third volumes, \"\"Fifty Shades of Grey\"\" and \"\"Fifty Shades Freed\"\", were published in 2011 and 2012, respectively. The novel is published by Vintage Books and reached No. 1 on the \"\"USA Today\"\" best seller list. Three days after leaving Christian, Anastasia \"\"Ana\"\" Steele begins her job as personal assistant to Jack"} +{"qid": "test1118", "pid": "18134025", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades Darker\"\nnew project, and it was announced that Kim Basinger would play Elena Lincoln. Fifty Shades Darker Fifty Shades Darker is a 2012 erotic romance novel by British author E. L. James. It is the second installment in the \"\"Fifty Shades\"\" trilogy that traces the deepening relationship between a college graduate, Anastasia Steele, and a young business magnate, Christian Grey. The first and third volumes, \"\"Fifty Shades of Grey\"\" and \"\"Fifty Shades Freed\"\", were published in 2011 and 2012, respectively. The novel is published by Vintage Books and reached No. 1 on the \"\"USA Today\"\" best seller list. Three days after"} +{"qid": "test1118", "pid": "16382192", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey\"\nprincipal characters renamed Christian Grey and Anastasia Steele and removed it from her website before publication. Meyer commented on the series, saying \"\"that's really not my genre, not my thing... Good on her—she's doing well. That's great!\"\" This reworked and extended version of \"\"Master of the Universe\"\" was split into three parts. The first, titled \"\"Fifty Shades of Grey\"\", was released as an e-book and a print on demand paperback in May 2011 by The Writers' Coffee Shop, a virtual publisher based in Australia. The second volume, \"\"Fifty Shades Darker\"\", was released in September 2011; and the third, \"\"Fifty Shades"} +{"qid": "test1118", "pid": "17710359", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Oy Vey: A Parody\"\nin the U.S., Canada and overseas have mentioned the spoof of the \"\"Fifty Shades\"\" books in a generally positive way. \"\"Fifty Shades of Oy Vey: A Parody\"\" was also cited and its cover used on the WCBS website's coverage of \"\"Fifty Shades of Grey\"\" and its parodies. An excerpt appeared on the Jewish erotica website Jewrotica.org on March 9, 2015. Fifty Shades of Oy Vey: A Parody Fifty Shades of Oy Vey: A Parody by E.L. Jamesbergstein is a parody of E.L. James' \"\"Fifty Shades of Grey\"\". It was published in print and e-book editions by Alfred A. Knish in"} +{"qid": "test1118", "pid": "17422622", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades (novel series)\"\nFifty Shades (novel series) Fifty Shades is a series of erotic novels by E. L. James. Initially a trilogy consisting of \"\"Fifty Shades of Grey\"\" (2011), \"\"Fifty Shades Darker\"\" and \"\"Fifty Shades Freed\"\" (2012), the series traces the deepening relationship between a college graduate, Anastasia Steele, and a young business man, Christian Grey. Grey introduces Ana to the world of BDSM. James has spoken of her shock at the success of the book, \"\"The explosion of interest has taken me completely by surprise\"\" she said. James has described the \"\"Fifty Shades\"\" trilogy as \"\"my midlife crisis, writ large. All my"} +{"qid": "test1118", "pid": "17422638", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades (novel series)\"\n2015, director Sam Taylor-Johnson confirmed two sequels to be succeeded after the first film, with \"\"Fifty Shades Darker\"\" to be released February 10, 2017. Fifty Shades (novel series) Fifty Shades is a series of erotic novels by E. L. James. Initially a trilogy consisting of \"\"Fifty Shades of Grey\"\" (2011), \"\"Fifty Shades Darker\"\" and \"\"Fifty Shades Freed\"\" (2012), the series traces the deepening relationship between a college graduate, Anastasia Steele, and a young business man, Christian Grey. Grey introduces Ana to the world of BDSM. James has spoken of her shock at the success of the book, \"\"The explosion of"} +{"qid": "test1118", "pid": "16382180", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey\"\nFifty Shades of Grey Fifty Shades of Grey is a 2011 erotic romance novel by British author E. L. James. It is the first instalment in the \"\"Fifty Shades\"\" trilogy that traces the deepening relationship between a college graduate, Anastasia Steele, and a young business magnate, Christian Grey. It is notable for its explicitly erotic scenes featuring elements of sexual practices involving bondage/discipline, dominance/submission, and sadism/masochism (BDSM). Originally self-published as an ebook and a print-on-demand, publishing rights were acquired by Vintage Books in March 2012. \"\"Fifty Shades of Grey\"\" has topped best-seller lists around the world, selling over 125 million"} +{"qid": "test1118", "pid": "17710357", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Oy Vey: A Parody\"\nFifty Shades of Oy Vey: A Parody Fifty Shades of Oy Vey: A Parody by E.L. Jamesbergstein is a parody of E.L. James' \"\"Fifty Shades of Grey\"\". It was published in print and e-book editions by Alfred A. Knish in 2013. Described on its book jacket as \"\"So erotic, you'll plotz,\"\" the comic novel, which follows the outline of the original \"\"Fifty Shades of Grey\"\", tells the story of the relationship between a beautiful young woman, Anatevka Stein, and a portly bagel tycoon, Chaim Silver. When Baruch college senior Anatevka Stein goes to interview Chaim Silver for the Hillel Newsletter,"} +{"qid": "test1118", "pid": "16382210", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey\"\nwarnings regarding their content\"\". In February 2015, the Malaysian Home Ministry banned the \"\"Fifty Shades of Grey\"\" books shortly after banning its film adaptation after permitting them for three years in local bookstores, citing morality-related reasons. A film adaptation of the book was produced by Focus Features, Michael De Luca Productions, and Trigger Street Productions, with Universal Pictures and Focus Features securing the rights to the trilogy in March 2012. Universal is also the film's distributor. Charlie Hunnam was originally cast in the role of Christian Grey alongside Dakota Johnson in the role of Anastasia Steele, but Hunnam gave up"} +{"qid": "test1118", "pid": "17485842", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey (film)\"\nnot filmed as a parody adaptation but \"\"copies without reservation from the unique expressive elements of the \"\"Fifty Shades\"\" trilogy, progressing through the events of \"\"Fifty Shades of Grey\"\" and into the second book, \"\"Fifty Shades Darker\"\"\"\". The lawsuit asked for an injunction, for the profits from all sales of the film, as well as damages, saying that \"\"a quickly and cheaply produced pornographic work [...] is likely to cause Plaintiffs irreparable harm by poisoning public perception of the Fifty Shades Trilogy and the forthcoming Universal films.\"\" Smash Pictures responded to the lawsuit by issuing a counterclaim and requesting a"} +{"qid": "test1118", "pid": "18817968", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Grey: Fifty Shades of Grey as Told by Christian\"\nutter psychopath.\"\" In the US, \"\"The Washington Post\"\" also found little of the original series in the rewrite: \"\"Where Ana had bizarre quirks, a perplexing \"\"inner goddess\"\" who was an Olympic-caliber backflipper, and a general sense of naive wonder that lightened \"\"Fifty Shades\"\" and reminded readers not to take the story too seriously, there is none of that here. \"\"Grey\"\" is dark and unrelenting and far too serious, like Mr. Grey.\"\" Fan reception for \"\"Grey\"\" has been positive and the book sold over 1 million copies in its first week of release. Grey: Fifty Shades of Grey as Told by"} +{"qid": "test1118", "pid": "16534681", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades Freed\"\nthe UK the novel sold over two million copies. Sam Taylor-Johnson, the director of the film adaptation of the first installment of the book series, \"\"Fifty Shades of Grey\"\", confirmed on 6 February 2015 that both \"\"Fifty Shades Freed\"\" and the second book in the trilogy, \"\"Fifty Shades Darker\"\", will also be adapted for film. The film was released on 9 February 2018. In November 2015, Universal Studios announced that both films will be shot back-to-back with principal photography scheduled to commence in early 2016. Fifty Shades Freed Fifty Shades Freed is the third and final installment of the erotic"} +{"qid": "test1118", "pid": "14532559", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Shed Simove\"\nline drawing of a naked man, which happened to be Simove. Simove apologised to the woman involved for the ‘unfortunate factory mix up’. In 2012, Simove launched 'Fifty Shades of Gray' a book containing totally blank pages in fifty different shades of grey. The back jacket of the book described the content inside as 'getting darker and darker as the book goes on'. Random House, publisher of E. L. James's 'Fifty Shades of Grey', sent him a cease and desist letter and Simove was no longer able to sell this title, although a publisher from the Netherlands approached Simove to"} +{"qid": "test1118", "pid": "17485836", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey (film)\"\nout of 100, based on reviews from 46 critics, indicating \"\"mixed or average reviews\"\". In CinemaScore polls conducted during the opening weekend, cinema audiences gave the film an average grade of \"\"C+\"\" on an A+ to F scale. Claudia Puig of \"\"USA Today\"\" wrote that \"\"the dialogue is laughable, the pacing is sluggish and the performances are one-note.\"\" Moira Macdonald of \"\"The Seattle Times\"\" wrote: \"\"\"\"Fifty Shades of Grey\"\" the movie, for the record, is not quite as bad as \"\"Fifty Shades of Grey\"\" the book. But that's not saying much\"\". \"\"We Got This Covered\"\" critic Isaac Feldberg gave the"} +{"qid": "test1118", "pid": "17015792", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Sophie Morgan (author)\"\na real \"\"Fifty Shades of Grey\"\", a memoir by a \"\"real-life Anastasia,\"\" the Fifty Shades heroine. The book purports to be a true-life story of female submission. Morgan's \"\"diary\"\", as narrated in the book, follows the story of her sexual life, from the early days in college to the present time, and describes her experiences with dominant men. Morgan reviewed the film 'Fifty Shades of Grey' when it was released and wrote that she thought the relationship between the two characters was more \"\"abusive rather than romantic\"\". She commented that the characters were \"\"Literally not believable as a human being\"\"."} +{"qid": "test1118", "pid": "16382181", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey\"\ncopies worldwide by June 2015. It has been translated into 52 languages, and set a record in the United Kingdom as the fastest-selling paperback of all time. Critical reception of the book, however, has tended towards the negative, with the quality of its prose generally seen as poor. Universal Pictures and Focus Features produced a film adaptation, which was released on 13 February 2015 and also received generally unfavourable reviews. The second and third volumes of the trilogy, \"\"Fifty Shades Darker\"\" and \"\"Fifty Shades Freed\"\", were published in 2012. \"\"\"\", a version of \"\"Fifty Shades of Grey\"\" being told from"} +{"qid": "test1118", "pid": "18817964", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Grey: Fifty Shades of Grey as Told by Christian\"\nprocess of writing another book in the \"\"Fifty Shades\"\" series due to popular demand from her fanbase. Later that same day she posted an image on her Instagram account that confirmed that the novel would be titled \"\"Grey\"\", that it would be told from the perspective of Christian Grey, and that she had deliberately chosen its publication date in order to coincide with Grey's birthday. Pre-order sales for \"\"Grey\"\" have been extremely strong, which led many retailers to order large quantities of the book in order to meet release day demand. An editor for \"\"The Bookseller\"\" also commented that \"\"Grey\"\""} +{"qid": "test1118", "pid": "19323009", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades (film series)\"\nFifty Shades (film series) Fifty Shades is an American film series that consists of three erotic romantic drama films, based on the \"\"Fifty Shades\"\" trilogy by English author E. L. James. It is distributed by Universal Studios and stars Dakota Johnson and Jamie Dornan as the lead roles Anastasia Steele and Christian Grey, respectively. Sam Taylor-Johnson directed the first film and initially she was slated to be the director of the sequels as well, however subsequently the second and third films were directed by James Foley. The first film, \"\"Fifty Shades of Grey\"\", was released on February 13, 2015, while"} +{"qid": "test1118", "pid": "17422624", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades (novel series)\"\nHowever, the books have also been largely panned by critics, with the first entry in particular \"\"being ridiculed by virtually every critic who has read it.\"\" Since 2015 the series has been expanded with a parallel set of novels \"\"as told by Christian\"\": \"\"\"\" follows the events of \"\"Fifty Shades of Grey\"\" but from the perspective of Christian Grey, while \"\"\"\" (2017) does the same for the plot of \"\"Fifty Shades Darker\"\". Salman Rushdie said about the book: \"\"I've never read anything so badly written that got published. It made \"\"Twilight\"\" look like \"\"War and Peace\"\".\"\" Maureen Dowd described the"} +{"qid": "test1118", "pid": "20403195", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Darker: Fifty Shades Darker as Told by Christian\"\nDarker: Fifty Shades Darker as Told by Christian Darker: Fifty Shades Darker As Told by Christian, also referred to as Darker, is a 2017 erotic romance by British author, E. L. James. It is the fifth installment in the \"\"Fifty Shades\"\" novel series. The books were originally told by Anastasia Steele, the main protagonist, whereas \"\"Darker: Fifty Shades Darker as Told by Christian\"\" is told from the male character's point of view of the events of the second installment, \"\"Fifty Shades Darker\"\". The novel was released on 28 November 2017. After breaking up in \"\"Fifty Shades of Grey\"\", billionaire Christian"} +{"qid": "test1118", "pid": "18510469", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Earned It\"\nEarned It \"\"Earned It\"\", alternatively titled \"\"Earned It (Fifty Shades of Grey)\"\", is a song by Canadian singer The Weeknd. The song was released as the lead single from the soundtrack to the 2015 film \"\"Fifty Shades of Grey\"\" and was included on The Weeknd's second studio album \"\"Beauty Behind the Madness\"\". \"\"Earned It\"\" peaked at number three on the \"\"Billboard\"\" Hot 100, becoming The Weeknd's first top five single. The song's popularity made \"\"Fifty Shades of Grey\"\" the latest soundtrack to generate concurrent top-ten singles with Ellie Goulding's \"\"Love Me like You Do\"\", which also peaked at number three."} +{"qid": "test1118", "pid": "17931800", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Stuart Ashen\"\nwon a Marketing Week \"\"Engage Award\"\" in the \"\"Gaming and Entertainment\"\" section. Ashen released the book \"\"Fifty-Thousand Shades of Grey\"\" on 23 September 2012; it parodies the erotic novel \"\"Fifty Shades of Grey\"\". The title is literal, as the book simply consists of the phrase \"\"Shades of Grey\"\" repeated 50,000 times. In 2013, Ashen, along with Emma Blackery, Dan Howell (Daniel Howell) and Phil Lester (AmazingPhil), starred as a contestant in a re-make of the 1980s TV show \"\"Knightmare\"\" during the YouTube Geek Week event. , Ashen has produced over 710 videos, has over 1.3 million subscribers to his primary"} +{"qid": "test1118", "pid": "6147999", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Arnoldo Mondadori Editore\"\naround the world, of which around 300,000 in Italy, with the aim of supporting the process of growth in digital for books. In 2012 Mondadori publishes Fifty Shades of Grey, the first volume of the erotic trilogy by debut London author E L James, rapidly followed by the two other titles, Fifty Shades Darker and Fifty Shades Freed. The trilogy sees in Italy the same kind of unprecedented success it gained in the English-language world: with more than 3.3 million copies sold in Italy and 130,000 downloads of the electronic version, the three volumes reach first, third and fourth position"} +{"qid": "test1118", "pid": "17162655", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Andrew Shaffer\"\none of the most prominent examples of the 'Great Depression chic' trend in 2009. Shaffer wrote \"\"Fifty Shames of Earl Grey\"\" under the pen name \"\"Fanny Merkin.\"\" \"\"Fifty Shames of Earl Grey\"\" is a parody of E. L. James' popular trilogy, \"\"Fifty Shades of Grey\"\". Publishers Weekly suggested \"\"The parody brings to life all of the arguments for and against 50 Shades, including the feminist concerns, portrayal of BDSM, roots in Twilight fan-fiction, and EL James's writing style.\"\" \"\"Fifty Shames of Earl Grey\"\" was a Goodreads choice 2012 semi-finalist. In 2015, Shaffer's tie-in book to the Syfy channel's Sharknado series"} +{"qid": "test1118", "pid": "16382213", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey\"\nthe release of \"\"Fifty Shades of Grey: A XXX Adaptation\"\", a pornographic film based on the novel, citing copyright and trademark infringement. Smash Pictures, the porn producer, later responded to the lawsuit with a counterclaim that \"\"much or all\"\" of the \"\"Fifty Shades\"\" material was placed in the public domain in its original \"\"Twilight\"\"-based form, but later capitulated and stopped production of their film. Stage productions include: Fifty Shades of Grey Fifty Shades of Grey is a 2011 erotic romance novel by British author E. L. James. It is the first instalment in the \"\"Fifty Shades\"\" trilogy that traces the"} +{"qid": "test1118", "pid": "17485835", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey (film)\"\nBrazil, ($31.3 million), France ($29.5 million), and Spain ($22.6 million). \"\"Fifty Shades of Grey\"\" received generally negative reviews, with criticism of its acting, screenplay, and pacing; however, some critics noted it as an improvement over the book, and others praised the cinematography and set design. On Rotten Tomatoes, the film has an approval rating of 25% based on 261 reviews, with an average rating of 4.2/10. The website's critical consensus reads, \"\"While creatively better endowed than its print counterpart, \"\"Fifty Shades of Grey\"\" is a less than satisfying experience on the screen.\"\" Metacritic gave the film a score of 46"} +{"qid": "test1118", "pid": "15176572", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Maya Banks\"\nhad not read \"\"Fifty Shades of Grey\"\", as she usually avoids reading books written in the first person. She added that many readers felt her \"\"Sweet\"\" series had \"\"ripped \"\"Fifty Shades\"\" off\"\" despite being published several years prior. In 2013, Banks signed with Avon Books for a three-book deal in the contemporary romance genre featuring \"\"psychic elements\"\". She lives in Texas with her husband and three children. When writing, she prefers absolute quiet and avoids music with lyrics. Of her approach to writing, Banks has said \"\"I approach writing the way I approach reading, because I am a voracious reader,"} +{"qid": "test1118", "pid": "19424778", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Elijah Daniel\"\nSanders. He wrote the work as a parody of \"\"Fifty Shades of Grey\"\". Within four hours, he had released the erotic novel titled \"\"Trump Temptations: The Billionaire & The Bellboy\"\" on Amazon. This was Daniel's debut novel. \"\"Trump Temptations\"\" became the number one best seller on Amazon.com in three categories: humorous erotica, LGBT erotica, and gay erotica. The book was listed on Amazon above \"\"Fifty Shades of Grey\"\" by E. L. James, and was featured in \"\"The Washington Post\"\", \"\"Daily News\"\", \"\"Los Angeles Times\"\", \"\"GQ\"\", \"\"Gay Star News\"\", \"\"London Evening Standard\"\", \"\"The Daily Telegraph\"\", and \"\"Vice\"\". \"\"The Guardian\"\" classed the"} +{"qid": "test1118", "pid": "18817966", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Grey: Fifty Shades of Grey as Told by Christian\"\nnegative and many critics have criticized it for being too similar to \"\"Fifty Shades of Grey\"\". The \"\"Daily Mail's\"\" reviewer commented that \"\"Ms James has simply shadowed the whole plot of Book One, reproducing the clunky polystyrene dialogue word for word, and inserting italicised thoughts by Christian himself.\"\" \"\"The Independent\"\" criticized the book and the choice to include Grey's internal monologues, stating that he had a \"\"vacuous mental life\"\" and that \"\"The effect is increasingly comical – Mills & Boon meets \"\"Peep Show\"\" – while the rest of his internal monologue is spent stating the bleeding obvious.\"\" \"\"The Telegraph\"\" wrote"} +{"qid": "test1118", "pid": "17485824", "query": "what are the three fifty shades of grey books", "answer": "Fifty Shades of Grey", "passage": "\"Fifty Shades of Grey (film)\"\nThomas Williams of the Notre Dame Center for Ethics and Culture commented on the release of the film in the United States on Valentine's Day, stating \"\"The irony of Universal Pictures' decision to release its bondage-erotica film Fifty Shades of Grey on the day dedicated to honoring a Christian martyr has not gone unnoticed to many observers, who seem to find the choice unclassy at best.\"\" \"\"Fifty Shades of Grey\"\" was released via DVD and Blu-ray on May 8, 2015. The Blu-ray edition features an unrated cut of the film; the version includes an additional three minutes of footage, the"} +{"qid": "test1119", "pid": "8077959", "query": "who wrote the song going to kansas city", "answer": "Jerry Leiber and Mike Stoller", "passage": "\"Kansas City (Leiber and Stoller song)\"\nKansas City (Leiber and Stoller song) \"\"Kansas City\"\" is a rhythm and blues song written by Jerry Leiber and Mike Stoller in 1952. First recorded by Little Willie Littlefield the same year, the song later became a #1 hit when it was recorded by Wilbert Harrison in 1959. \"\"Kansas City\"\" became one of Leiber and Stoller's \"\"most recorded tunes, with more than three hundred versions,\"\" with several appearing in the R&B and pop record charts. \"\"Kansas City\"\" was written by Jerry Leiber and Mike Stoller, two nineteen-year-old rhythm and blues fans from Los Angeles, who had their first success writing"} +{"qid": "test1119", "pid": "8077975", "query": "who wrote the song going to kansas city", "answer": "Jerry Leiber and Mike Stoller", "passage": "\"Kansas City (Leiber and Stoller song)\"\n\"\"Eighteenth and Vine\"\" for \"\"12th Street and Vine,\"\" which sings just as well, and recognizes Kansas City's jazz history. Kansas City (Leiber and Stoller song) \"\"Kansas City\"\" is a rhythm and blues song written by Jerry Leiber and Mike Stoller in 1952. First recorded by Little Willie Littlefield the same year, the song later became a #1 hit when it was recorded by Wilbert Harrison in 1959. \"\"Kansas City\"\" became one of Leiber and Stoller's \"\"most recorded tunes, with more than three hundred versions,\"\" with several appearing in the R&B and pop record charts. \"\"Kansas City\"\" was written by Jerry"} +{"qid": "test1120", "pid": "19140177", "query": "where did they film the game of thrones", "answer": "Croatia", "passage": "\"New Europe Market\"\nMarket was a four-day event held in May 2013 in Dubrovnik and gathered representatives from 250 companies. The event was held under the auspices of the President of the Republic of Croatia, Ivo Josipović. Topics of discussion ranged from “Sport migration from Public to Pay TV” to “Channel Distribution”. In 2014 New Europe Market included, for the first time, screenings and production workshops. During the conference HBO Adria revealed a replica of the Iron Throne, from Game of Thrones, which was a very popular tourist attraction in Dubrovnik, where Game Of Thrones was partly filmed. Discussions during the NEM concerned"} +{"qid": "test1120", "pid": "12800935", "query": "where did they film the game of thrones", "answer": "Croatia", "passage": "\"Game of Thrones\"\nGame of Thrones Game of Thrones is an American fantasy drama television series created by David Benioff and D. B. Weiss. It is an adaptation of \"\"A Song of Ice and Fire\"\", George R. R. Martin's series of fantasy novels, the first of which is \"\"A Game of Thrones\"\". It is filmed in Belfast and elsewhere in Northern Ireland, Canada, Croatia, Iceland, Malta, Morocco, Scotland, Spain, and the United States. The series premiered on HBO in the United States on April 17, 2011, and its seventh season ended on August 27, 2017. The series will conclude with its eighth season"} +{"qid": "test1120", "pid": "12801030", "query": "where did they film the game of thrones", "answer": "Croatia", "passage": "\"Game of Thrones\"\nin the pilot, playing a character described as \"\"a charismatic socialite hiding a dark secret.\"\" Game of Thrones Game of Thrones is an American fantasy drama television series created by David Benioff and D. B. Weiss. It is an adaptation of \"\"A Song of Ice and Fire\"\", George R. R. Martin's series of fantasy novels, the first of which is \"\"A Game of Thrones\"\". It is filmed in Belfast and elsewhere in Northern Ireland, Canada, Croatia, Iceland, Malta, Morocco, Scotland, Spain, and the United States. The series premiered on HBO in the United States on April 17, 2011, and its"} +{"qid": "test1120", "pid": "6085265", "query": "where did they film the game of thrones", "answer": "Northern Ireland", "passage": "\"Brann Dailor\"\nmusicians Core Atoms and Raheem Amlani. Brann Dailor, Bill Kelliher, and Brent Hinds portrayed \"\"wildlings\"\" on S05E08 episode of \"\"Game of Thrones\"\", which was filmed in Belfast in Northern Ireland. As previously reported, the band's original song \"\"White Walker\"\" is featured on the \"\"Game of Thrones\"\" mixtape \"\"Catch the Throne Vol. 2\"\", but in the instance of their physical appearance, a press release from Reprise Records reports that the band was personally invited to participate in the show by \"\"Game of Thrones\"\" executive producer Dan Weiss, who is a fan of the band. Brann Dailor made quite the scene when"} +{"qid": "test1121", "pid": "6368046", "query": "how many pennsylvania house of representatives are there", "answer": "203", "passage": "\"Pennsylvania House of Representatives\"\nthe second known nationwide. Pennsylvania has never had a female speaker. As of October 17, 2018, 42 of the 203 representatives are women. At 20.7%, this is below the national average of 23.1% women for statewide legislative positions. \"\"As of November 13, 2018\"\" Speaker of the House of Representatives: Mike Turzai (R) Pennsylvania House of Representatives The Pennsylvania House of Representatives is the lower house of the bicameral Pennsylvania General Assembly, the legislature of the U.S. state of Pennsylvania. There are 203 members, elected for two-year terms from single member districts. Following the 2016 elections, the house consisted of 121"} +{"qid": "test1121", "pid": "6368044", "query": "how many pennsylvania house of representatives are there", "answer": "203", "passage": "\"Pennsylvania House of Representatives\"\nPennsylvania House of Representatives The Pennsylvania House of Representatives is the lower house of the bicameral Pennsylvania General Assembly, the legislature of the U.S. state of Pennsylvania. There are 203 members, elected for two-year terms from single member districts. Following the 2016 elections, the house consisted of 121 Republicans and 82 Democrats. Republican Mike Turzai was first elected Speaker of the House on January 6, 2015. In 2012, a State Representative district had an average population of 60,498 residents. It is the largest full-time state legislature in the country. (The New Hampshire House of Representatives is larger but only serves"} +{"qid": "test1122", "pid": "151480", "query": "who designed the first toy released by nintendo", "answer": "Gunpei Yokoi", "passage": "\"Game Boy family\"\ngames have been rereleased digitally through the Virtual Console service for the Nintendo 3DS and Wii U. Nintendo's Game Boy handheld was first released in 1989. The gaming device was the brainchild of long-time Nintendo employee Gunpei Yokoi, who was the person behind the \"\"Ultra Hand\"\", an expanding arm toy created and produced by Nintendo in 1970, long before Nintendo would enter the video game market. Yokoi was also responsible for the Game & Watch series of handhelds when Nintendo made the move from toys to video games. When Yokoi designed the original Game Boy, he knew that to be"} +{"qid": "test1122", "pid": "15554841", "query": "who designed the first toy released by nintendo", "answer": "Gunpei Yokoi", "passage": "\"Ultra Machine\"\nUltra Machine The Ultra Machine is a batting toy made by Nintendo and designed by Gunpei Yokoi in 1967. It is part of Nintendo's \"\"Ultra toy\"\" series, which includes the Ultra Hand and the Ultra Scope. It launches soft balls that are to be hit with a bat. It sold over a million units. It was released elsewhere as the \"\"Slugger Mate\"\". Another version known as the \"\"Ultra Machine Deluxe\"\" was released in 1977. The Ultra Machine appears in both for the Game Boy Advance and for the Wii, as a boss fight in the former and a regular microgame"} +{"qid": "test1125", "pid": "7501535", "query": "when did the nfl start playing in london", "answer": "2007", "passage": "\"Michael Reghi\"\n(final) season of the now defunct NFL Europe (subsequently renamed NFL Europa), Reghi called several games for the NFL Network. Reghi also called games for the FIBA Americas Championship 2007 that aired on NBA TV, and in 2008, he did play by play for the College Basketball Invitational on Fox College Sports and for the Cleveland Gladiators arena football team on FS Ohio. He will do Cleveland Browns preseason games on the radio, starting in 2013, when Jim Donovan calls Browns preseason on television. Reghi is a substitute host on Cleveland Browns Daily, a radio show produced by the team."} +{"qid": "test1125", "pid": "6411147", "query": "when did the nfl start playing in london", "answer": "2007", "passage": "\"Chad Lavalais\"\nof a sports hernia. Lavalais was fined $7500 by the NFL for the hit. The Falcons waived Lavalais on September 2, 2006 right before the 2006 NFL Season. Lavalais reportedly worked out with the Cincinnati Bengals as well as the Minnesota Vikings but was not signed. As such he did not play a snap in 2006. On March 27, 2007, Lavalais signed a one-year contract with the Carolina Panthers. Lavalais was released by the Panthers on August 26, 2007 before the start of the 2007 NFL Season. Lavailais did not return to the NFL. Chad Lavalais Chad Douglas Lavalais (born"} +{"qid": "test1125", "pid": "6005486", "query": "when did the nfl start playing in london", "answer": "2007", "passage": "\"Channing Crowder\"\nwas charged with careless driving and leaving the scene of a crash. Prior to the October 27, 2007 New York Giants–Miami Dolphins game in London, England, Crowder reportedly stated he \"\"couldn't find London on a map\"\". He later implied that he did not believe there were any black people in London as well. In a 2012 interview with NFL Films, Crowder confessed to urinating in his pants \"\"every game\"\" while in the NFL. On June 27, 2011 Crowder intimated on his new radio show that he had sold his jerseys while playing college football for the Florida Gators. Crowder later"} +{"qid": "test1127", "pid": "20736023", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 15)\"\nthe judges were joined by special guest judge, Stephen \"\"tWitch\"\" Boss. Below comprises those who have advanced into the initial top twenty dancers (ten male and ten female dancers), until this year's \"\"twist\"\" which ultimately cut the finalist roster going to the live shows in half. Contestants are listed in chronological order of elimination (TBD). Solos: So You Think You Can Dance (U.S. season 15) So You Think You Can Dance, an American dance competition show, returned for its fifteenth season on Monday, June 4, 2018. The season's judge panel once again features series creator Nigel Lythgoe, as well as"} +{"qid": "test1127", "pid": "10430802", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"Mary Murphy (choreographer)\"\nshe made increasing appearances at the judging table. In 2007, prior to season 3, Murphy was announced as a permanent judge, a position previously held only by Nigel Lythgoe. In 2008, Murphy made guest appearances on international versions of \"\"So You Think You Can Dance\"\", including \"\"So You Think You Can Dance Australia\"\", \"\"So You Think You Can Dance Canada\"\" and \"\"So You Think You Can Dance Scandinavia\"\". In 2008, Murphy reprised her role as judge on season 4 with fellow regular, Nigel Lythgoe, and on the season finale, performed a surprise samba with Dmitry Chaplin. Murphy continued as a"} +{"qid": "test1127", "pid": "20203759", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 14)\"\nSo You Think You Can Dance (U.S. season 14) So You Think You Can Dance, an American dance competition show, returned for its fourteenth season on Monday, June 12, 2017. The new season's judge panel once again features series creator Nigel Lythgoe (who also serves as executive producer), as well as the return of ballroom expert Mary Murphy, along with new permanent member Vanessa Hudgens joining the panel of judges, while Cat Deeley continues in her role as host for a thirteenth consecutive season. Open auditions for season 14 were held in two cities beginning in March 2017. The season"} +{"qid": "test1127", "pid": "17275798", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 10)\"\nKnox was unable to perform. Alex Wong (who was not a competitor on the show) danced in his place with Knox's partner Jenna Johnson. So You Think You Can Dance (U.S. season 10) So You Think You Can Dance, a televised American dance competition, began broadcast of its tenth season on May 14, 2013. It airs on the FOX Television Network and was hosted by Cat Deeley and featured returning permanent judges Nigel Lythgoe, who also serves as one of the show's executive producers, and Mary Murphy. The show featured many of the format changes instituted in the previous season,"} +{"qid": "test1127", "pid": "13607465", "query": "who are the judges on do you think you can dance", "answer": "Mia Michaels", "passage": "\"So You Think You Can Dance Canada (season 2)\"\nMichaels \"\"Judges\"\": Jean-Marc Généreux, Tré Armstrong, Blake McGrath, Luther Brown \"\"Judges\"\": Jean-Marc Généreux, Tré Armstrong, Dan Karaty, Mia Michaels \"\"Judges\"\": Jean-Marc Généreux, Tré Armstrong, Rex Harrington, Mary Murphy \"\"Judges\"\": Jean-Marc Généreux, Tré Armstrong, Blake McGrath, Luther Brown \"\"Judges\"\": Jean-Marc Généreux, Tré Armstrong, Blake McGrath, Luther Brown, Rex Harrington, Kenny Ortega So You Think You Can Dance Canada (season 2) Season 2 of So You Think You Can Dance Canada is a dance reality show and competition that airs on CTV. It is hosted by \"\"ETalk\"\" correspondent and former \"\"MuchMusic\"\" VJ Leah Miller. The series is based on the original American"} +{"qid": "test1127", "pid": "9851513", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 1)\"\nand Dan Karaty \"\"Judges:\"\" Brian Friedman, Mia Michaels, Nigel Lythgoe, Mary Murphy and Dan Karaty \"\"Judges:\"\" Brian Friedman, Mia Michaels, Nigel Lythgoe, Mary Murphy and Dan Karaty So You Think You Can Dance (U.S. season 1) So You Think You Can Dance is an American television dance competition that airs on the Fox network. The first season premiered on July 20, 2005 with Lauren Sánchez as host, Nigel Lythgoe as the main judge, and Mary Murphy, Dan Karaty, Mia Michaels and Brian Friedman as most frequent guest judges. Nick Lazzarini was crowned America's Favorite Dancer on October 5, 2005 with"} +{"qid": "test1127", "pid": "9851510", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 1)\"\nSo You Think You Can Dance (U.S. season 1) So You Think You Can Dance is an American television dance competition that airs on the Fox network. The first season premiered on July 20, 2005 with Lauren Sánchez as host, Nigel Lythgoe as the main judge, and Mary Murphy, Dan Karaty, Mia Michaels and Brian Friedman as most frequent guest judges. Nick Lazzarini was crowned America's Favorite Dancer on October 5, 2005 with 37.7% of the votes. The main auditions for this season were held in following cities: Auditioners had one minute to impress the judges. A contestant deemed to"} +{"qid": "test1127", "pid": "9851541", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 3)\"\nSo You Think You Can Dance (U.S. season 3) So You Think You Can Dance is an American television reality program and dance competition airing on the Fox network. Season three premiered May 24, 2007. Cat Deeley returned for her second consecutive season as host. Nigel Lythgoe returned as a permanent judge, joined this season by choreographer Mary Murphy. The remaining third—and during Vegas Week, fourth—judging spot is filled by a guest judge (\"\"see main article\"\"). Open auditions were held in the following locations: As in the previous season, those making the cut moved on to an intensive week of"} +{"qid": "test1127", "pid": "9851557", "query": "who are the judges on do you think you can dance", "answer": "Nigel Lythgoe", "passage": "\"So You Think You Can Dance (U.S. season 3)\"\nthe season at TVNorge. In Latin America, the show is aired on People & Arts, cable TV. So You Think You Can Dance (U.S. season 3) So You Think You Can Dance is an American television reality program and dance competition airing on the Fox network. Season three premiered May 24, 2007. Cat Deeley returned for her second consecutive season as host. Nigel Lythgoe returned as a permanent judge, joined this season by choreographer Mary Murphy. The remaining third—and during Vegas Week, fourth—judging spot is filled by a guest judge (\"\"see main article\"\"). Open auditions were held in the following"} +{"qid": "test1129", "pid": "5386523", "query": "who sang the songs on walk the line", "answer": "Joaquin Phoenix", "passage": "\"The Blackwood Brothers\"\neach other numerous times. Their song \"\"I Was There When It Happened\"\" can be heard singing on the radio towards the beginning of the movie \"\"Walk the Line (2005)\"\"—when Johnny Cash (played by Joaquin Phoenix) was in Memphis. In the film and according to Cash's autobiography, while auditioning to earn a spot on the Sun Records label in his early career, Cash performed gospel songs that the Blackwoods sang with regularity. They also appeared on \"\"The Johnny Cash Show\"\" and performed in 1971. At the end of the 2008 biopic film \"\"W.\"\", the Blackwood's rendition of \"\"\"\"Winging My Way Back"} +{"qid": "test1130", "pid": "16243847", "query": "who was the great wall of china built to defend against", "answer": "nomads from Inner Asia", "passage": "\"History of the Great Wall of China\"\nHistory of the Great Wall of China The history of the Great Wall of China began when fortifications built by various states during the Spring and Autumn (771–476) and Warring States periods (475–221) were connected by the first emperor of China, Qin Shi Huang, to protect his newly founded Qin dynasty (221–206) against incursions by nomads from Inner Asia. The walls were built of rammed earth, constructed using forced labour, and by 212 ran from Gansu to the coast of southern Manchuria. Later dynasties adopted different policies towards northern frontier defense. The Han (202 – 220), the Northern Qi (550–574),"} +{"qid": "test1131", "pid": "20071633", "query": "who played the beast in the movie beauty and the beast", "answer": "Dan Stevens", "passage": "\"Evermore (Beauty and the Beast song)\"\nEvermore (Beauty and the Beast song) \"\"Evermore\"\" is a song written by composer Alan Menken and lyricist Tim Rice for the musical fantasy film \"\"Beauty and the Beast\"\" (2017), a live-action remake of Disney's 1991 animated film of the same name. Originally recorded for the film by English actor Dan Stevens, who performs the song in his starring role as the titular Beast, \"\"Evermore\"\" was first released as a single by American singer Josh Groban on March 3, 2017. Stevens' version became available on March 10, 2017 when the film's soundtrack was released online, while Groban's cover is played during"} +{"qid": "test1132", "pid": "3776589", "query": "what features of muscle contraction can be determined from an emg (electromyogram)", "answer": "electric potential generated", "passage": "Electromyography\nElectromyography Electromyography (EMG) is an electrodiagnostic medicine technique for evaluating and recording the electrical activity produced by skeletal muscles. EMG is performed using an instrument called an electromyograph to produce a record called an electromyogram. An electromyograph detects the electric potential generated by muscle cells when these cells are electrically or neurologically activated. The signals can be analyzed to detect medical abnormalities, activation level, or recruitment order, or to analyze the biomechanics of human or animal movement. EMG testing has a variety of clinical and biomedical applications. EMG is used as a diagnostics tool for identifying neuromuscular diseases, or as"} +{"qid": "test1133", "pid": "18202238", "query": "what is the meaning of the word autumn", "answer": "fall", "passage": "\"Dorset dialect\"\nthe sex'on tolled the bell\"\"\"\". Dialect words beginning with 's' are spoken with a 'z' if they are Germanic in origin, but words that entered the language later, are not. 'Sun' is 'zun' but 'son' keeps the 's' sound. 'Scene' is the same but 'seen' is 'zeen'. The letter 'f', if the first or last of a word is pronounced as a 'v' but again, only if the word is derived from the original Saxon. The verb 'fall' and 'fall' meaning autumn, are 'vall' and 'fall' respectively, and one would immediately know what is meant by, \"\"This chicken is foul\"\""} +{"qid": "test1133", "pid": "10800713", "query": "what is the meaning of the word autumn", "answer": "fall", "passage": "\"Chanson d'automne\"\nte dire que je m'en vais\"\". The poem uses several stylistic devices and is in many ways typical of Verlaine, in that it employs sound techniques such as consonance (the repetition of \"\"n\"\" and \"\"r\"\" sounds) that also creates an onomatopoeic effect, sounding both monotonous and like a violin. In the second verse, the stop consonant and pause after the word \"\"suffocant\"\" reflect the meaning of the word. The sound of the words \"\"Deçà, delà,\"\" in the third verse evoke the image of a dead leaf falling. Verlaine uses the symbolism of autumn in the poem to describe a sad"} +{"qid": "test1135", "pid": "3611678", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "Rocinante\nstrove to adapt it so as to indicate what he had been before belonging to a knight-errant, and what he then was.\"\" Rocinante Rocinante () is Don Quixote's horse in the novel \"\"Don Quixote\"\" by Miguel de Cervantes. In many ways, Rocinante is not only Don Quixote's horse, but also his double: like Don Quixote, he is awkward, past his prime, and engaged in a task beyond his capacities. in Spanish means a work horse or low-quality horse, but can also mean an illiterate or rough man. There are similar words in French (\"\"roussin; rosse\"\"), Portuguese (\"\"rocim\"\"), Dutch (\"\"ros\"\"), and"} +{"qid": "test1135", "pid": "3611675", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "Rocinante\nRocinante Rocinante () is Don Quixote's horse in the novel \"\"Don Quixote\"\" by Miguel de Cervantes. In many ways, Rocinante is not only Don Quixote's horse, but also his double: like Don Quixote, he is awkward, past his prime, and engaged in a task beyond his capacities. in Spanish means a work horse or low-quality horse, but can also mean an illiterate or rough man. There are similar words in French (\"\"roussin; rosse\"\"), Portuguese (\"\"rocim\"\"), Dutch (\"\"ros\"\"), and Italian (\"\"ronzino\"\"). The etymology is uncertain. The name is a complex pun. In Spanish, \"\"ante\"\" has several meanings and can function as"} +{"qid": "test1135", "pid": "4408585", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Super Don Quix-ote\"\nnamesake, Don Quixote, and features a heroic young knight named Don on a quest to save his love, the fair princess Isabella, who has been kidnapped by a wicked witch for human sacrifice to a demon. Don is accompanied on his travels by a donkey (based on Rocinante, the original Don Quixote's horse), and a fat little man named Sancho (based on Don Quixote's trusty sidekick Sancho Panza). The closest parallel to the original tale is a scene in which Don fights a giant at a windmill. However, the rest of the game pits him against a mummy, a dragon,"} +{"qid": "test1135", "pid": "14363469", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Don Quixote (Picasso)\"\nDon Quixote (Picasso) Don Quixote is a 1955 sketch by Pablo Picasso of the Spanish literary hero and his sidekick, Sancho Panza. It was featured on the August 18–24 issue of the French weekly journal \"\"Les Lettres Françaises\"\" in celebration of the 350th anniversary of the first part of Cervantes’s \"\"Don Quixote\"\". Made on August 10, 1955, the drawing \"\"Don Quixote\"\" was in a very different style than Picasso’s earlier Blue, Rose, and Cubist periods. The drawing is of Don Quixote de la Mancha, his horse Rocinante, his squire Sancho Panza and his donkey Dapple, the sun, and several windmills."} +{"qid": "test1135", "pid": "101687", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Don Quixote\"\nshield, a skinny old horse, and a fast greyhound.\"\") The novel's farcical elements make use of punning and similar verbal playfulness. Character-naming in \"\"Don Quixote\"\" makes ample figural use of contradiction, inversion, and irony, such as the names \"\"Rocinante\"\" (a reversal) and \"\"Dulcinea\"\" (an allusion to illusion), and the word itself, possibly a pun on (jaw) but certainly (Catalan: thighs), a reference to a horse's rump. As a military term, the word \"\"quijote\"\" refers to \"\"cuisses\"\", part of a full suit of plate armour protecting the thighs. The Spanish suffix \"\"-ote\"\" denotes the augmentative—for example, \"\"grande\"\" means large, but \"\"grandote\"\""} +{"qid": "test1135", "pid": "3611677", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "Rocinante\nera antes y primero de todos los rocines del mundo\"\"—\"\"a name, to his thinking, lofty, sonorous, and significant of his condition as a hack before he became what he now was, the first and foremost of all the hacks in the world\"\". In chapter 1, Cervantes describes Don Quixote's careful naming of his steed: Four days were spent in thinking what name to give him, because (as he said to himself) it was not right that a horse belonging to a knight so famous, and one with such merits of his own, should be without some distinctive name, and he"} +{"qid": "test1135", "pid": "101653", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Don Quixote\"\nand Sancho to the funeral of Grisóstomo, a former student who left his studies to become a shepherd after reading pastoral novels (paralleling Don Quixote's decision to become a knight), seeking the shepherdess Marcela. At the funeral Marcela appears, vindicating herself from the bitter verses written about her by Grisóstomo, and claiming her own autonomy and freedom from expectations put on her by pastoral clichés. She disappears into the woods, and Don Quixote and Sancho follow. Ultimately giving up, the two dismount by a pond to rest. Some Galicians arrive to water their ponies, and Rocinante (Don Quixote's horse) attempts"} +{"qid": "test1135", "pid": "101647", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Don Quixote\"\ndons an old suit of armour, renames himself \"\"Don Quixote\"\", names his exhausted horse \"\"Rocinante\"\", and designates Aldonza Lorenzo, a neighboring farm girl, as his lady love, renaming her Dulcinea del Toboso, while she knows nothing of this. Expecting to become famous quickly, he arrives at an inn, which he believes to be a castle; calls the prostitutes he meets \"\"ladies\"\" (\"\"doncellas\"\"); and asks the innkeeper, whom he takes as the lord of the castle, to dub him a knight. He spends the night holding vigil over his armor and becomes involved in a fight with muleteers who try to"} +{"qid": "test1135", "pid": "1508617", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Man of La Mancha\"\nCervantes' life or \"\"Don Quixote\"\"; for example, the historical Cervantes had no contact with the Spanish Inquisition, and Don Quixote's horse Rocinante is never stolen. Wasserman complained repeatedly about people taking the work as a musical version of \"\"Don Quixote\"\". The original 1965 Broadway production ran for 2,328 performances and won five Tony Awards, including Best Musical. The musical has been revived four times on Broadway, becoming one of the most enduring works of musical theatre. The principal song, \"\"The Impossible Dream\"\", became a standard. The musical has played in many other countries around the world, with productions in Dutch,"} +{"qid": "test1135", "pid": "5510831", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"The Man Who Killed Don Quixote\"\nas the guilty party. The police officers soon notice that Toby's bike was the same one that was around Los Sueños and take him in for questioning. En route, they encounter Don Quixote on his horse Rocinante, who sees Toby and demands that the officers release him. When they try to move him along, Quixote attacks them, culminating in one of the officers getting shot and the Gypsy stealing the police car. Toby runs off to a nearby garbage heap, where he is found by Quixote. Supplying him with a donkey and clothes from the film, Quxiote guides Toby to"} +{"qid": "test1135", "pid": "14363470", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Don Quixote (Picasso)\"\nThe bold lines, almost scribbles, that compose the figures are stark against a plain, white background. The figures are almost laconic and deformed, and are dramatic. Sancho Panza looks up at a tall, elongated, gaunt Don Quixote, who, in return, gazes forward. Don Quixote and Rocinante stand nobly, but have a somewhat tired air. The figure, painted with heavy strokes, seems to have been changed multiple times as Picasso painted Don Quixote's torso, arms and shoulder. \"\"The knight's head, capped by what would be Mambrino's helmet, is connected to his shoulders by a neck made with a single, thin line,"} +{"qid": "test1135", "pid": "1508636", "query": "what is don quixote's horse's name", "answer": "Rocinante", "passage": "\"Man of La Mancha\"\nunwilling prisoner to be tried. The Duke taunts Cervantes for his look of fear, and accuses him of not facing reality. This prompts Cervantes to passionately defend his idealism. The Don Quixote play resumes (\"\"Man of La Mancha\"\" – first reprise). Quixote and Sancho have left the inn and encounter a band of Gypsies (\"\"Moorish Dance\"\") who take advantage of Quixote's naiveté and steal everything they own, including Quixote's horse Rocinante and Sancho's donkey Dapple. Quixote and Sancho are forced to return to the inn. Aldonza also shows up at the inn, bruised and ashamed. Quixote swears to avenge her,"} +{"qid": "test1136", "pid": "1173071", "query": "what is the population of fayetteville north carolina", "answer": "204,408 in 2013", "passage": "\"Fayetteville, North Carolina\"\nFayetteville, North Carolina Fayetteville () is a city in Cumberland County, North Carolina, United States. It is the county seat of Cumberland County, and is best known as the home of Fort Bragg, a major U.S. Army installation northwest of the city. Fayetteville has received the All-America City Award from the National Civic League three times. As of the 2010 census it had a population of 200,564, with an estimated population of 204,408 in 2013. It is the 6th-largest city in North Carolina. Fayetteville is in the Sandhills in the western part of the Coastal Plain region, on the Cape"} +{"qid": "test1138", "pid": "2356581", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"California State University, Long Beach\"\nand VR Troopers Power Rangers. Former students have won at least five Academy Awards. Steven Spielberg (Class of 1969, BA 2002) won two Oscars for Best Directing for \"\"Schindler's List\"\" and \"\"Saving Private Ryan\"\" and has directed a number of other successful movies such as \"\"Jaws\"\", \"\"E.T. the Extra-Terrestrial\"\", and \"\"Jurassic Park\"\". Former industrial design major John Dykstra, who has been nominated five times for Academy Awards, won two Oscars for his special effects work on the George Lucas film \"\"Star Wars\"\" and the Sam Raimi film \"\"Spider-Man 2\"\". Deborah L. Scott (BA) won an Oscar for costume design for"} +{"qid": "test1138", "pid": "12655806", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"Leo Rosner\"\nLeo Rosner Leopold \"\"Leo\"\" Rosner (26 June 1918 – 10 October 2008) was a Polish-born Australian musician. Rosner, who was Jewish, survived the Holocaust in Nazi concentration camps during World War II by playing his accordion for Nazi officials. This earned the attention of Oskar Schindler, who saved his life by having him placed on his famous list. His story became known after Australian author Thomas Keneally's 1982 novel, \"\"Schindler's Ark\"\", was adapted into Steven Spielberg's Oscar-winning film, \"\"Schindler's List\"\". He appeared in the epilogue of the film at the Schindler's grave on Mount Zion. Rosner was born in Kraków,"} +{"qid": "test1138", "pid": "3637194", "query": "who won an oscar for schindler's list", "answer": "Michael Kahn", "passage": "\"Michael Kahn (film editor)\"\nmost wins (three) in the category of the Academy Awards for Best Film Editing, tied with Thelma Schoonmaker, Daniel Mandell, and Ralph Dawson. All of the films for which he won Oscars were directed by Steven Spielberg: \"\"Raiders of the Lost Ark\"\" (1981), \"\"Schindler's List\"\" (1993), and \"\"Saving Private Ryan\"\" (1998). He has also received six BAFTA nominations for Best Editing, winning two for \"\"Schindler's List\"\" and \"\"Fatal Attraction\"\". Kahn has been selected for membership in the American Cinema Editors (ACE). In 2011, he received the Career Achievement Award of the American Cinema Editors. At the ceremony, Steven Spielberg said"} +{"qid": "test1138", "pid": "7212238", "query": "who won an oscar for schindler's list", "answer": "Steven Zaillian", "passage": "\"47th British Academy Film Awards\"\nInnocence\"\" won one award: Best Supporting Actress, Miriam Margolyes. \"\"Schindler's List\"\" \"\"Farewell My Concubine (Ba Wang Bie Ji)\"\" Anthony Hopkins in \"\"The Remains of the Day\"\" Holly Hunter in \"\"The Piano\"\" Ralph Fiennes in \"\"Schindler's List\"\" Miriam Margolyes in \"\"The Age of Innocence\"\" Steven Spielberg - \"\"Schindler's List\"\" \"\"Groundhog Day\"\" - Danny Rubin and Harold Ramis\"\" \"\"Schindler's List\"\" - Steven Zaillian \"\"Schindler's List\"\" - Janusz Kamiński \"\"The Piano\"\" - Janet Patterson \"\"The Fugitive\"\" - John Leveque, Bruce Stambler, Becky Sullivan, Scott D. Smith, Donald O. Mitchell, Michael Herbick, Frank A. Montaño \"\"Schindler's List\"\" - Michael Kahn \"\"Jurassic Park\"\" - Dennis"} +{"qid": "test1138", "pid": "2675908", "query": "who won an oscar for schindler's list", "answer": "Branko Lustig", "passage": "\"Branko Lustig\"\nhis first Oscar in 1993 for the production of \"\"Schindler's List\"\", a film based on the novel of Thomas Keneally (which is, in turn, based on the true-life story of a German manufacturer who saved hundreds of Jews during World War II). Lustig himself has a cameo early in the film as a nightclub maitre d’. In July 2015, Lustig presented the Oscar to Yad Vashem for eternal safekeeping. He received his second Oscar for the epic movie \"\"Gladiator\"\" about a struggle for power in Imperial Rome, in 2001. Other major Hollywood films that Lustig has worked on as a"} +{"qid": "test1138", "pid": "12823926", "query": "who won an oscar for schindler's list", "answer": "Branko Lustig", "passage": "\"Croatia–Israel relations\"\npast because of the future. The vast majority of the Croatian people, including my grandparents, were part of the anti-fascist resistance movement, one of the proportionately largest resistance movements in occupied Europe during the World War II. I am grateful to those who put us [Croats] on the right side of history. Croatia is based on anti-fascism and the Croatian War of Independence.\"\" Croatian director Branko Lustig visited Israel with the President Grabar-Kitarović and gave am Oscar he won for the film Schindler's List as a gift to the Yad Vashem. On 30 May 2016, Croatian Foreign Minister Miro Kovač"} +{"qid": "test1138", "pid": "742218", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"Thomas Keneally\"\nSchindler was that \"\"it was the fact that you couldn't say where opportunism ended and altruism began. And I like the subversive fact that the spirit breatheth where it will. That is, that good will emerge from the most unlikely places\"\". The book was later made into a film titled \"\"Schindler's List\"\" (1993) directed by Steven Spielberg, earning the director his first Best Director Oscar. Keneally's meeting with Pfefferberg and their research tours are detailed in \"\"Searching for Schindler: A Memoir\"\" (2007). Some of the Pfefferberg documents that inspired Keneally are now housed in the State Library of New South"} +{"qid": "test1138", "pid": "494573", "query": "who won an oscar for schindler's list", "answer": "Steven Zaillian", "passage": "\"Oskar Schindler\"\nthe project, and he offered the rights to several other directors. After he read a script for the project prepared by Steven Zaillian for Martin Scorsese, he decided to trade him \"\"Cape Fear\"\" for the opportunity to do the Schindler biography. In the film, the character of Itzhak Stern (played by Ben Kingsley) is a composite of Stern, Bankier, and Pemper. Liam Neeson was nominated for the Academy Award for Best Actor for his portrayal of Schindler in the film, which won seven Oscars, including Best Picture. Other film treatments include a 1983 British television documentary produced by Jon Blair"} +{"qid": "test1138", "pid": "371467", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"Steven Spielberg\"\neffects provided by friend George Lucas's Industrial Light & Magic company, the film would eventually become the highest-grossing film of all time (at the worldwide box office) with $914.7 million. This would be the third time that one of Spielberg's films became the highest-grossing film ever. Spielberg's next film, \"\"Schindler's List\"\", was based on the true story of Oskar Schindler, a man who risked his life to save 1,100 Jews from the Holocaust. \"\"Schindler's List\"\" earned Spielberg his first Academy Award for Best Director (it also won Best Picture). With the film a huge success at the box office, Spielberg"} +{"qid": "test1138", "pid": "9978723", "query": "who won an oscar for schindler's list", "answer": "John Williams", "passage": "\"Schindler's List (soundtrack)\"\nSchindler's List (soundtrack) \"\"Schindler's List: Original Motion Picture Soundtrack\"\" is the film score of the 1993 film of the same name, composed and conducted by John Williams. The original score and songs were composed by Williams, and features violinist Itzhak Perlman. The album won the Academy Award for Best Original Score, the BAFTA Award for Best Film Music, and the Grammy Award for Best Score Soundtrack for Visual Media. It also received a Golden Globe Award nomination for Best Original Score. \"\"Theme from Schindler's List\"\" is one of the most recognized contemporary film scores, particularly the violin solo. Many high-level"} +{"qid": "test1138", "pid": "9978725", "query": "who won an oscar for schindler's list", "answer": "John Williams", "passage": "\"Schindler's List (soundtrack)\"\n\"\"Exodus\"\" for mixed choir and orchestra was used as score in the trailer in the film. Schindler's List (soundtrack) \"\"Schindler's List: Original Motion Picture Soundtrack\"\" is the film score of the 1993 film of the same name, composed and conducted by John Williams. The original score and songs were composed by Williams, and features violinist Itzhak Perlman. The album won the Academy Award for Best Original Score, the BAFTA Award for Best Film Music, and the Grammy Award for Best Score Soundtrack for Visual Media. It also received a Golden Globe Award nomination for Best Original Score. \"\"Theme from Schindler's"} +{"qid": "test1138", "pid": "2096053", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"Schindler's Ark\"\nSchindler's Ark Schindler's Ark (released in America as Schindler's List) is a Booker Prize-winning historical fiction novel published in 1982 by Australian novelist Thomas Keneally, which was later adapted into the highly successful movie \"\"Schindler's List\"\" directed by Steven Spielberg. The United States version of the book was called \"\"Schindler's List\"\" from the beginning; it was later reissued in Commonwealth countries under that name as well. The novel was also awarded the Los Angeles Times Book Prize for Fiction in 1983. The book tells the story of Oskar Schindler, a Nazi Party member who turns into an unlikely hero by"} +{"qid": "test1138", "pid": "7212239", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"47th British Academy Film Awards\"\nMuren, Stan Winston, Phil Tippett, Michael Lantieri \"\"Schindler's List - John Williams \"\"Franz Kafka's It's a Wonderful Life\"\" \"\"Orlando\"\" \"\"The Piano - Andrew McAlpine \"\"Wallace & Gromit in The Wrong Trousers\"\" \"\"' \"\"Shadowlands - Richard Attenborough, Brian Eastman Douglas Slocombe Michael Grade 47th British Academy Film Awards The 47th British Film Awards, given by the British Academy of Film and Television Arts in 1994, honoured the best films of 1993. Steven Spielberg's Schindler's List won the award for Best Film (and later won the Academy Award for Best Picture). \"\"Shadowlands\"\" was voted Best British Film of 1993. \"\"Schindler's List\"\" also"} +{"qid": "test1138", "pid": "754237", "query": "who won an oscar for schindler's list", "answer": "Steven Zaillian", "passage": "\"Schindler's List\"\nopened in June 2010. Schindler's List Schindler's List is a 1993 American epic historical period drama film directed and co-produced by Steven Spielberg and written by Steven Zaillian. It is based on the novel \"\"Schindler's Ark\"\" by Australian novelist Thomas Keneally. The film follows Oskar Schindler, a Sudeten German businessman, who saved the lives of more than a thousand mostly Polish-Jewish refugees from the Holocaust by employing them in his factories during World War II. It stars Liam Neeson as Schindler, Ralph Fiennes as SS officer Amon Göth, and Ben Kingsley as Schindler's Jewish accountant Itzhak Stern. Ideas for a"} +{"qid": "test1138", "pid": "754175", "query": "who won an oscar for schindler's list", "answer": "Steven Zaillian", "passage": "\"Schindler's List\"\nSchindler's List Schindler's List is a 1993 American epic historical period drama film directed and co-produced by Steven Spielberg and written by Steven Zaillian. It is based on the novel \"\"Schindler's Ark\"\" by Australian novelist Thomas Keneally. The film follows Oskar Schindler, a Sudeten German businessman, who saved the lives of more than a thousand mostly Polish-Jewish refugees from the Holocaust by employing them in his factories during World War II. It stars Liam Neeson as Schindler, Ralph Fiennes as SS officer Amon Göth, and Ben Kingsley as Schindler's Jewish accountant Itzhak Stern. Ideas for a film about the \"\"Schindlerjuden\"\""} +{"qid": "test1138", "pid": "550176", "query": "who won an oscar for schindler's list", "answer": "Steven Spielberg", "passage": "\"University of California, Irvine\"\nwas a visiting professor at UCI where he taught the graduate fiction workshop for one quarter in 1985. From 1991 to 1995, he was a visiting professor in the writing program at UCI. He is most famous for his book \"\"Schindler's Ark\"\" (1982) (later republished as \"\"Schindler's List\"\"), which won the Booker Prize and is the basis of the film \"\"Schindler's List\"\" that was directed by Steven Spielberg. In January 2009, UCI Professor Reg Penner won the Faraday Medal for his research with nanowires. University of California, Irvine The University of California, Irvine (UCI or UC Irvine), is a public"} +{"qid": "test1138", "pid": "1454923", "query": "who won an oscar for schindler's list", "answer": "John Williams", "passage": "\"Itzhak Perlman\"\ncelebration of Tchaikovsky in Leningrad in December 1990. He has also performed and recorded with his friend and fellow Israeli violinist Pinchas Zukerman on numerous occasions over the years. As well as playing and recording the classical music for which he is best known, Perlman has also played jazz, including an album made with jazz pianist Oscar Peterson, and in addition, klezmer. Perlman has been a soloist for a number of film scores such as the theme of the 1993 film \"\"Schindler's List\"\" by John Williams, which subsequently won an Academy Award for Best Original Score. More recently, he was"} +{"qid": "test1139", "pid": "3553681", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "as a pH indicator", "passage": "\"Bromophenol blue\"\ndichromaticity index. This means it has the largest change in color hue, when the thickness or concentration of observed sample increases or decreases. Bromophenol blue Bromophenol blue (3′,3″,5′,5″-tetrabromophenolsulfonphthalein, BPB, albutest) is used as a pH indicator, a color marker, and a dye. It can be prepared by slowly adding excess bromine to a hot solution of phenolsulfonphthalein in glacial acetic acid. As an acid–base indicator, its useful range lies between pH 3.0 and 4.6. It changes from yellow at pH 3.0 to blue at pH 4.6; this reaction is reversible. Bromophenol blue is structurally related to phenolphthalein (a popular indicator)."} +{"qid": "test1139", "pid": "3553679", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a dye", "passage": "\"Bromophenol blue\"\ncarries a slight negative charge at moderate pH, it will migrate in the same direction as DNA or protein in a gel; the rate at which it migrates varies according to gel density and buffer composition, but in a typical 1% agarose gel in a 1X TAE buffer or TBE buffer, bromophenol blue migrates at the same rate as a DNA fragment of about 300 base pairs, in 2% agarose as 150 bp. Xylene cyanol and orange G may also be used for this purpose. Bromophenol blue is also used as a dye. At neutral pH, the dye absorbs red"} +{"qid": "test1139", "pid": "3553678", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "as a pH indicator", "passage": "\"Bromophenol blue\"\nBromophenol blue Bromophenol blue (3′,3″,5′,5″-tetrabromophenolsulfonphthalein, BPB, albutest) is used as a pH indicator, a color marker, and a dye. It can be prepared by slowly adding excess bromine to a hot solution of phenolsulfonphthalein in glacial acetic acid. As an acid–base indicator, its useful range lies between pH 3.0 and 4.6. It changes from yellow at pH 3.0 to blue at pH 4.6; this reaction is reversible. Bromophenol blue is structurally related to phenolphthalein (a popular indicator). Bromophenol is also used as a color marker to monitor the process of agarose gel electrophoresis and polyacrylamide gel electrophoresis. Since bromophenol blue"} +{"qid": "test1139", "pid": "5287136", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a color marker", "passage": "\"Xylene cyanol\"\nXylene cyanol Xylene cyanol can be used as a color marker, or tracking dye, to monitor the process of agarose gel electrophoresis and polyacrylamide gel electrophoresis. Bromophenol blue and orange G can also be used for this purpose. Once mixed with the sample, the concentration of xylene cyanol is typically about 0.005% to 0.03%. In 1% agarose gels, xylene cyanol migrates at about the same rate as a 4 to 5 kilobase pair DNA fragment, although this depends on the buffer used. Xylene cyanol on a 6% polyacrylamide gel migrates at the speed of a 140 base pair DNA fragment."} +{"qid": "test1139", "pid": "5287137", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a color marker", "passage": "\"Xylene cyanol\"\nOn 20% denaturating (7 M urea) polyacrylamide gel electrophoresis (PAGE), xylene cyanol migrates at about the rate of 25 bases oligonucleotide. Xylene cyanol Xylene cyanol can be used as a color marker, or tracking dye, to monitor the process of agarose gel electrophoresis and polyacrylamide gel electrophoresis. Bromophenol blue and orange G can also be used for this purpose. Once mixed with the sample, the concentration of xylene cyanol is typically about 0.005% to 0.03%. In 1% agarose gels, xylene cyanol migrates at about the same rate as a 4 to 5 kilobase pair DNA fragment, although this depends on"} +{"qid": "test1139", "pid": "7886179", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a color marker", "passage": "\"Cresol Red\"\nand other component). Bromophenol blue and xylene cyanol can also be used for this purpose. Cresol Red Cresol red (full name: \"\"o\"\"-cresolsulfonephthalein) is a triarylmethane dye frequently used for monitoring the pH in aquaria. Cresol red can be used in many common molecular biology reactions in place of other loading dyes. Cresol Red does not inhibit \"\"Taq\"\" polymerase to the same degree as other common loading dyes. Cresol red can also be used as a color marker to monitor the process of agarose gel electrophoresis and polyacrylamide gel electrophoresis. In a 1% agarose gel, it runs approximately at the size"} +{"qid": "test1139", "pid": "7526219", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "as a pH indicator", "passage": "\"Bromocresol green\"\nappear as yellow spots on a light or dark blue background; no heating is necessary. Bromophenol blue solution can be used for the same purpose. The compound is synthesized by bromination of cresol purple (\"\"m\"\"-cresolsulfonphthalein). It is used as a pH indicator and as a tracking dye for DNA agarose gel electrophoresis. It can be used in its free acid form (light brown solid), or as a sodium salt (dark green solid). It is also an inhibitor of the prostaglandin E transport protein. Additional applications include use in sol-gel matrices, the detection of ammonia, and the measurement of albumin in"} +{"qid": "test1139", "pid": "3552178", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a dye", "passage": "\"Coomassie Brilliant Blue\"\nfirst used to visualise proteins in 1964 by Fazekas de St. Groth and colleagues. Protein samples were separated electrophoretically on a cellulose acetate sheet. The sheet was then soaked in sulfosalicylic acid to fix the protein bands and then transferred to a solution of the dye. Two years later in 1965 Meyer and Lambert used Coomassie Brilliant Blue R-250 to stain protein samples after electrophoretic separation in a polyacrylamide gel. They soaked the gel in a dye solution containing methanol, acetic acid and water. As the dye stained the polyacrylamide gel as well as the protein, in order to visualise"} +{"qid": "test1139", "pid": "5983570", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a dye", "passage": "\"Protein methods\"\nmethod is uses a dye to bind to protein. Most commonly Coomassie Brilliant Blue G-250 dye is used. When free of protein, the dye is red but once bound to protein it turns blue. The dye-protein complex absorbs light maximally at the wavelength 595 nanometers and is sensitive for samples containing anywhere from 1 ug to 60 ug. Unlike Lowry and Warburg-Christian Methods, Bradford assays do not rely on Tryptophan and Tyrosine content in proteins which allows the method to be more accurate hypothetically. Lowry assay is similar to biuret assays, but it uses Folin reagent which is more accurate"} +{"qid": "test1139", "pid": "1797986", "query": "what is the purpose of the bromophenol blue dye in the samples", "answer": "a dye", "passage": "\"Methylene blue\"\nof anionic surfactants are carboxylates, phosphates, sulfates, and sulfonates. Methylene blue value reflects the amount of clay minerals in aggregate samples. Methylene blue solution is successively added to fine aggregate which is being agitating in water. The presence of free dye solution can be checked with stain test on a filter paper. In biology methylene blue is used as a dye for a number of different staining procedures, such as Wright's stain and Jenner's stain. Since it is a temporary staining technique, methylene blue can also be used to examine RNA or DNA under the microscope or in a gel:"} +{"qid": "test114", "pid": "791663", "query": "where was uncle tom's cabin first published", "answer": "The National Era", "passage": "\"Uncle Tom's Cabin\"\nmentioned a number of the inspirations and sources for her novel in \"\"A Key to Uncle Tom's Cabin\"\" (1853). This non-fiction book was intended to verify Stowe's claims about slavery. However, later research indicated that Stowe did not read many of the book's cited works until after she had published her novel. \"\"Uncle Tom's Cabin\"\" first appeared as a 40-week serial in \"\"The National Era\"\", an abolitionist periodical, starting with the June 5, 1851, issue. It was originally intended as a shorter narrative that would run for only a few weeks. Stowe expanded the story significantly, however, and it was"} +{"qid": "test114", "pid": "1420373", "query": "where was uncle tom's cabin first published", "answer": "The National Era", "passage": "\"Harriet Beecher Stowe\"\nnot be silent.\"\" Shortly after in June, 1851, when she was 40, the first installment of her \"\"Uncle Tom's Cabin\"\" was published in serial form in the newspaper \"\"The National Era\"\". She originally used the subtitle \"\"The Man That Was A Thing\"\", but it was soon changed to \"\"Life Among the Lowly\"\". Installments were published weekly from June 5, 1851, to April 1, 1852. For the newspaper serialization of her novel, Stowe was paid $400. \"\"Uncle Tom's Cabin\"\" was published in book form on March 20, 1852, by John P. Jewett with an initial print run of 5,000 copies. Each"} +{"qid": "test114", "pid": "5704136", "query": "where was uncle tom's cabin first published", "answer": "The National Era", "passage": "\"Anti-Tom literature\"\nAnti-Tom literature Anti-Tom literature refers to the 19th century pro-slavery novels and other literary works written in response to Harriet Beecher Stowe's \"\"Uncle Tom's Cabin\"\". Also called plantation literature, these writings were generally written by authors from the Southern United States. Books in the genre attempted to show either that slavery was beneficial to African Americans or that the evils of slavery as depicted in Stowe's book were overblown and incorrect. First published in serialized form from 1851–52 (in the abolitionist journal \"\"The National Era\"\"), and in book form in 1852, \"\"Uncle Tom's Cabin\"\" by Harriet Beecher Stowe quickly became"} +{"qid": "test1141", "pid": "4842047", "query": "what is mercy mercy me by marvin gaye about", "answer": "sorrow regarding the environment", "passage": "\"Mercy Mercy Me (The Ecology)\"\nMercy Mercy Me (The Ecology) \"\"Mercy Mercy Me (The Ecology)\"\" was the second single from Marvin Gaye's 1971 album, \"\"What's Going On\"\". Following the breakthrough of the title track's success, the song, written solely by Gaye, became regarded as one of popular music's most poignant anthems of sorrow regarding the environment. Led by Gaye playing piano, strings conducted by Paul Riser and David Van De Pitte, multi-tracking vocals from Gaye and The Andantes, multiple background instruments provided by The Funk Brothers and a leading sax solo by Wild Bill Moore, the song rose to number 4 on \"\"Billboard\"\"'s Pop Singles"} +{"qid": "test1141", "pid": "4842051", "query": "what is mercy mercy me by marvin gaye about", "answer": "sorrow regarding the environment", "passage": "\"Mercy Mercy Me (The Ecology)\"\nthe song as the B-side to the single \"\"You Only Live Once\"\", featuring Eddie Vedder and Josh Homme. Mercy Mercy Me (The Ecology) \"\"Mercy Mercy Me (The Ecology)\"\" was the second single from Marvin Gaye's 1971 album, \"\"What's Going On\"\". Following the breakthrough of the title track's success, the song, written solely by Gaye, became regarded as one of popular music's most poignant anthems of sorrow regarding the environment. Led by Gaye playing piano, strings conducted by Paul Riser and David Van De Pitte, multi-tracking vocals from Gaye and The Andantes, multiple background instruments provided by The Funk Brothers and"} +{"qid": "test1141", "pid": "1598006", "query": "what is mercy mercy me by marvin gaye about", "answer": "the environment", "passage": "\"What's Going On (Marvin Gaye album)\"\n\"\"God Is Love\"\" follows \"\"Save the Children\"\" and makes references to God. \"\"Mercy Mercy Me (The Ecology)\"\" was another emotional plea, this time for the environment. Funk Brother musician Earl Van Dyke once mentioned that Berry Gordy didn't know of the word \"\"ecology\"\" and had to be told what it was. The song featured a memorable tenor saxophone riff from Detroit music legend Wild Bill Moore. \"\"Right On\"\" was a lengthy seven-minute jam influenced by funk rock and Latin soul rhythms that focused on Gaye's own divided soul in which Gaye later pleaded in falsetto, \"\"if you let me, I"} +{"qid": "test1142", "pid": "16833770", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"Acequia Madre de Valero (San Antonio)\"\nAcequia Madre de Valero (San Antonio) Acequia Madre de Valero is an 18th-century agricultural irrigation canal built by the Spanish and located in the Bexar County city of San Antonio in the U.S. state of Texas. When Martín de Alarcón founded San Antonio for Spain by establishing San Antonio de Valero Mission in 1718, Franciscan priest Antonio de Olivares and the Payaya Indians dug Acequia Madre de Valero by hand. It was vital to the missions to be able to divert and control water from the San Antonio River, in order to grow crops and to supply water to the"} +{"qid": "test1142", "pid": "16833773", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"Acequia Madre de Valero (San Antonio)\"\nTexas Historical Commission placed the historic landmark plaque on a limestone block at the Hemisfair Plaza section of Acequia Madre de Valero. Acequia Madre de Valero (San Antonio) Acequia Madre de Valero is an 18th-century agricultural irrigation canal built by the Spanish and located in the Bexar County city of San Antonio in the U.S. state of Texas. When Martín de Alarcón founded San Antonio for Spain by establishing San Antonio de Valero Mission in 1718, Franciscan priest Antonio de Olivares and the Payaya Indians dug Acequia Madre de Valero by hand. It was vital to the missions to be"} +{"qid": "test1142", "pid": "650498", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"San Antonio\"\nin delays, and construction did not start until 1718. Olivares built, with the help of the Payaya Indians, the Misión de San Antonio de Valero (The Alamo), the Presidio San Antonio de Bexar, the bridge that connected both, and the Acequia Madre de Valero. The families who clustered around the presidio and mission formed the beginnings of Villa de Béjar, destined to become the most important town in Spanish Texas. On May 1, the governor transferred ownership of the Mission San Antonio de Valero (later famous as the Alamo) to Fray Antonio de Olivares. On May 5, 1718 he commissioned"} +{"qid": "test1142", "pid": "5497744", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"Spanish missions in Texas\"\nThe mission remained open until 1773. Mission San Antonio de Valero was established on May 1, 1718, as the first Spanish mission along the San Antonio River. It was named for San Antonio de Padua, the patron saint of the mission's founder, Father Antonio de Olivares as well as for the viceroy of New Spain, the Marquis de Valero. The mission later became known as the Alamo. Its first location was west of San Pedro Springs, and after being moved several times, it was finally established above a bend in the San Antonio River, where it would be easy to"} +{"qid": "test1142", "pid": "14523699", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"Antonio de Olivares\"\nde Valero, later known as \"\"The Alamo\"\", based officially the mission. On May 5, was founded the Presidio San Antonio de Bexar, on the west side of the San Antonio River, the source of the present city of San Antonio Texas. The event was chaired by Martin de Alarcón, settling around 30 families in the surrounding area. On July 8, 1718 held at the new Mission San Antonio de Valero the first baptism, as reflected in the baptismal register of the mission. In 1719, Margil obtained permission from the Marqués de San Miguel de Aguayo to found a second mission"} +{"qid": "test1142", "pid": "14211057", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"History of San Antonio\"\nby Payaya Indians to build the bridge that connected the Misión de San Antonio de Valero and Presidio San Antonio de Bexar, and the Acequia Madre de Valero. On May 1, 1718, according to a statement certified to be preserved, Don Martin de Alarcon gave possession to Fray Antonio de Olivares of the Misión de San Antonio de Valero, later known as \"\"The Alamo\"\", based officially the mission. On May 5, was founded the Presidio San Antonio de Bexar, on the west side of the San Antonio River, the source of the present city of San Antonio Texas. The event"} +{"qid": "test1142", "pid": "1277597", "query": "when was the mission san antonio de valero built", "answer": "the 18th century", "passage": "\"Alamo Mission in San Antonio\"\nAlamo Mission in San Antonio The Alamo Mission in San Antonio () is commonly called The Alamo and was originally known as \"\"Misión San Antonio de Valero\"\". It was founded in the 18th century as a Roman Catholic mission and fortress compound, and today is part of the San Antonio Missions World Heritage Site in San Antonio, Texas. It was the site of the Battle of the Alamo in 1836, and is now a museum in the Alamo Plaza Historic District. The compound was one of the early Spanish missions in Texas, built for the education of area American Indians"} +{"qid": "test1142", "pid": "5322140", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"History of Texas\"\nfemale settlers in Spanish Texas. The new missions were over from the nearest Spanish settlement, San Juan Bautista. Martín de Alarcón, who had been appointed governor of Texas in late 1716, wished to establish a way station between the settlements along the Rio Grande and the new missions in East Texas. Alarcón led a group of 72 people, including 10 families, into Texas in April 1718, where they settled along the San Antonio River. Within the next week, the settlers built mission San Antonio de Valero and a presidio, and chartered the municipality of San Antonio de Béxar, now San"} +{"qid": "test1142", "pid": "8913902", "query": "when was the mission san antonio de valero built", "answer": "1718", "passage": "\"San Pedro Springs\"\nsettlement he called Villa de Béxar near the headwaters of San Pedro Creek, but civilian settlement did not materialize. Also, in 1718, another Spanish missionary, Antonio de San Buenaventura y Olivares, built a mission nearby the fort at San Pedro Springs that he named San Antonio de Valero. This was the first permanent European settlement in San Antonio. In the 1730s, an acequia was built to carry water from the springs toward the city for irrigation and household use. By the 1870s, the springs provided water for boating, fishing, and swimming. A municipal swimming pool was built in the park"} +{"qid": "test1142", "pid": "1277650", "query": "when was the mission san antonio de valero built", "answer": "the 18th century", "passage": "\"Alamo Mission in San Antonio\"\nto a different location. Other concerns expressed include the proposed $450 million cost of the project and any efforts to allow political correctness to alter or modify the story of the Alamo. Alamo Mission in San Antonio The Alamo Mission in San Antonio () is commonly called The Alamo and was originally known as \"\"Misión San Antonio de Valero\"\". It was founded in the 18th century as a Roman Catholic mission and fortress compound, and today is part of the San Antonio Missions World Heritage Site in San Antonio, Texas. It was the site of the Battle of the Alamo"} +{"qid": "test1145", "pid": "20595390", "query": "when was the cat and mouse act introduced", "answer": "1913", "passage": "\"Dorothea Chalmers Smith\"\ntheir own defence and refused to plead. Moorhead interrupted the Judge saying \"\"We do not want to hear any more. We refused to listen to you. Please sentence us.\"\" When both women were sentenced to eight-months imprisonment, the women rose from all sections of the court and protested, crying out \"\"Pitt Street, Pitt Street\"\" whilst others starting throwing apples at the Judge and counsel. Both women went on hunger strike immediately. When they became physically weak they were released from prison under the Cat and Mouse Act, which was introduced in April 1913, and allowed for the re-arrest of prisoners"} +{"qid": "test1145", "pid": "4085048", "query": "when was the cat and mouse act introduced", "answer": "1913", "passage": "Henfield\nincluded the wording HENRY BISHOP'S VILLAGE, was used. Bishop is buried in Henfield churchyard. The botanist William Borrer, who specialised in the flora of the British Isles, was born and died in Henfield. When the British government introduced the Cat and Mouse Act in 1913, local Suffragette Elizabeth Robins used her 15th century farmhouse at Backsettown, near Henfield, that she shared with Octavia Wilberforce, as a retreat for suffragettes recovering from hunger strike. Henfield Henfield is a large village and civil parish in the Horsham District of West Sussex, England. It lies south of London, northwest of Brighton, and east"} +{"qid": "test1145", "pid": "2036345", "query": "when was the cat and mouse act introduced", "answer": "1913", "passage": "\"Prisoners (Temporary Discharge for Ill Health) Act 1913\"\nimpact of the Cat and Mouse Act will never be known. Prisoners (Temporary Discharge for Ill Health) Act 1913 The Prisoners (Temporary Discharge for Ill Health) Act, commonly referred to as the Cat and Mouse Act, was an Act of Parliament passed in Britain under Herbert Henry Asquith's Liberal government in 1913. Some members of the Women's Social and Political Union (WSPU, commonly referred to as suffragettes) had been imprisoned for acts of vandalism in support of women's suffrage. In protest at being imprisoned some of the suffragettes undertook hunger strikes. The hunger strikers were then force-fed by the prison"} +{"qid": "test1145", "pid": "2036340", "query": "when was the cat and mouse act introduced", "answer": "1913", "passage": "\"Prisoners (Temporary Discharge for Ill Health) Act 1913\"\nwas viewed as violating basic human rights, not only of the suffragettes but of other prisoners. The Act's nickname of \"\"Cat and Mouse Act\"\", referring to the way the government seemed to play with prisoners as a cat may with a captured mouse, underlined how the cruelty of repeated releases and re-imprisonments turned the suffragettes from targets of scorn to objects of sympathy. The Asquith government's implementation of the Act caused the militant WSPU and the suffragettes to perceive Asquith as the enemy — an enemy to be vanquished in what the organisation saw as an all-out war. A related"} +{"qid": "test1147", "pid": "19441631", "query": "when did lord howe island became a world heritage site", "answer": "in 1982", "passage": "\"Rosemary Edna Sinclair\"\nTokyo, Honolulu, San Francisco, and many other places. Thereafter, she worked as a model. She holds a Bachelor of Arts degree in Arts, Law, and Business and a Master's Degree (MA) in Commerce. Sinclair took up the environmental cause of her birthplace, the Lord Howe Island, in 1982, when it was listed as an UNESCO World Heritage Site. Though the islanders were pleased with the heritage status accorded to the island, Sinclair was unhappy with many of the planning and management actions initiated by the Government of Australia to conserve the newly accorded heritage status, as it affected the basic"} +{"qid": "test1147", "pid": "2821178", "query": "when did lord howe island became a world heritage site", "answer": "in 1982", "passage": "\"Lord Howe Island\"\nLord Howe Island Amendment Act proclaimed a \"\"Permanent Park Preserve\"\" over the north and south ends of the island. Administration of the preserve was outlined in a management plan for the sustainable development of the island prepared by the NSW National Parks and Wildlife Service, which has a ranger stationed on the island. The Island was cited under the UNESCO World Heritage List in 1982. Offshore environmental assets are protected by the Lord Howe Island Marine Park. This consists of a State Marine Park managed by the Marine Parks Authority of New South Wales in the waters out to 3"} +{"qid": "test1147", "pid": "2966555", "query": "when did lord howe island became a world heritage site", "answer": "in 1982", "passage": "\"Lord Howe Island Marine Park\"\nstorm surges from eroding the low lying central region of the island. The sheltered lagoon contains a number of different reef habitats, dominated by sand, lagoonal corals, gravel sheets, algal flats and patch reefs. The high conservation significance of Lord Howe Island and its waters is recognised by its inclusion on the UNESCO World Heritage List in 1982. Conservation values relating to the marine park include the unique combination of tropical and temperature reef taxa, both flora and fauna. These unique taxa include a number of species at the limits of their distribution, reflecting the extreme latitude of the coral"} +{"qid": "test1148", "pid": "2168269", "query": "where did they live in sex and the city", "answer": "New York City", "passage": "\"Robert Paul Smith\"\nthe Place\"\" (1951). \"\"The Tender Trap\"\", a play by Smith and \"\"Dobie Gillis\"\" creator Max Shulman, opened in 1954 with Robert Preston in the leading role. It was later made into a movie starring Frank Sinatra and Debbie Reynolds. A classic example of the \"\"battle-of-the-sexes\"\" comedy, it revolves around the mutual envy of a bachelor living in New York City and a settled family man living in the New York suburbs. \"\"Where Did You Go? Out. What Did You Do? Nothing\"\" is a nostalgic evocation of the inner life of childhood. It advocates the value of privacy to children; the"} +{"qid": "test1148", "pid": "1255312", "query": "where did they live in sex and the city", "answer": "New York City", "passage": "\"Harry Hay\"\nshort as a result of the sudden death of Hay, Sr. Settling into married life, Hay gained employment with the Works Progress Administration supervising the cataloguing of Orange County's civil records, while the couple continued their activism by taking photographs of Los Angeles' slums for a leftist exhibition. However, the marriage did not quell Hay's same-sex attractions, and by 1939 he had begun to seek sexual encounters with other men in local parks on a weekly basis. He would later describe the marriage as \"\"living in an exile world\"\". The couple moved to Manhattan, New York City, where Hay went"} +{"qid": "test1148", "pid": "5471485", "query": "where did they live in sex and the city", "answer": "New York City", "passage": "\"R. Stevie Moore\"\nmany years. According to him, although he lived 13 miles away from the Lincoln Tunnel in the proceeding decades, he rarely ever traveled into New York City. Over the decade, he made sporadic appearances on the public access television variety show \"\"The Uncle Floyd Show\"\". He was also a staff member on the New Jersey-based independent radio station WFMU, where he hosted a weekly \"\"Bedroom Radio\"\" show for about \"\"four or five years\"\" and claimed to be \"\"one of the first that did radio shows that would play Wagner, then The Sex Pistols, then hillbilly, then great funk.\"\" Moore later"} +{"qid": "test1148", "pid": "13338916", "query": "where did they live in sex and the city", "answer": "New York City", "passage": "\"Transgender rights in the United States\"\nmarry was often subject to legal challenge — as was the status of their marriages after transitioning, particularly in cases where an individual's birth sex was interpreted to mean a same-sex marriage had taken place. In 1959, Christine Jorgensen, a trans woman, was denied a marriage license by a clerk in New York City, on the basis that her birth certificate listed her as male; Jorgensen did not pursue the matter in court. Later that same year, Charlotte McLeod, another trans female who underwent gender reassignment surgery, married her husband Ralph H. Heidel in Miami. She did not mention her"} +{"qid": "test1148", "pid": "6396119", "query": "where did they live in sex and the city", "answer": "New York City", "passage": "Related\nRelated Related is an American comedy-drama series that aired on The WB network during the 2005–2006 television season. It revolved around the lives of four close-knit sisters – of Italian descent, raised in Brooklyn – living in New York City. The show was created by former \"\"Sex and the City\"\" writer Liz Tuccillo, and executive produced by \"\"Friends\"\" co-creator Marta Kauffman. Despite heavy promotion, initial ratings did not warrant the show being picked up for a second season when The WB network was folded into The CW. The untitled \"\"Related\"\" theme song is sung by The Veronicas, whose music was"} +{"qid": "test1148", "pid": "6396120", "query": "where did they live in sex and the city", "answer": "New York City", "passage": "Related\nregularly featured in episodes. Related Related is an American comedy-drama series that aired on The WB network during the 2005–2006 television season. It revolved around the lives of four close-knit sisters – of Italian descent, raised in Brooklyn – living in New York City. The show was created by former \"\"Sex and the City\"\" writer Liz Tuccillo, and executive produced by \"\"Friends\"\" co-creator Marta Kauffman. Despite heavy promotion, initial ratings did not warrant the show being picked up for a second season when The WB network was folded into The CW. The untitled \"\"Related\"\" theme song is sung by The"} +{"qid": "test1149", "pid": "2678905", "query": "when's the last time scotland won the calcutta cup", "answer": "2018", "passage": "\"Calcutta Cup\"\nCalcutta Cup The Calcutta Cup is the trophy awarded to the winner of the match between England and Scotland. It is the oldest of several individual competitions that take place under the umbrella of the Six Nations Championship, including: the Millennium Trophy, Centenary Quaich, Giuseppe Garibaldi Trophy and the Auld Alliance Trophy (first contested in 2018). The cup was first competed for in 1879, Scotland were the most recent winners, while England have won the cup the most times overall - at 70 to 40 wins. The cup itself is of Indian workmanship, decorated with cobras and an elephant. On"} +{"qid": "test115", "pid": "1864692", "query": "who has the most podium finishes in australia", "answer": "Michael Schumacher", "passage": "\"Rubens Barrichello\"\n18th place on the grid. This was the longest any driver in Formula One history has waited for a maiden Grand Prix win. Barrichello had a consistent debut season for Ferrari, finishing most races on the podium, but was outscored by the other three reliable drivers: Michael Schumacher, Mika Häkkinen and David Coulthard. Barrichello finished the season ranked fourth after supporting Schumacher as he battled and defeated Häkkinen for the Drivers' Championship, and helping Ferrari win the Constructors' Championship. Barrichello finished the season in third place, achieving a total of 10 podium finishes and scoring a total of 56 championship"} +{"qid": "test1151", "pid": "20199653", "query": "who won the 2017 women's wimbledon final", "answer": "Garbiñe Muguruza", "passage": "\"2017 Wimbledon Championships – Women's Singles\"\nreached the fourth round before losing to Halep. 2017 Wimbledon Championships – Women's Singles Serena Williams was the two-time defending champion, but did not participate this year due to . Garbiñe Muguruza won her second Grand Slam singles title, defeating Venus Williams in the final, 7–5, 6–0. Muguruza became the second Spanish woman to win Wimbledon after Conchita Martínez in 1994. Muguruza also became the first player to defeat both Williams sisters in Grand Slam singles finals. Williams was the oldest player to reach the final since Martina Navratilova, also in 1994, and played her 100th singles match at Wimbledon"} +{"qid": "test1151", "pid": "20199650", "query": "who won the 2017 women's wimbledon final", "answer": "Garbiñe Muguruza", "passage": "\"2017 Wimbledon Championships – Women's Singles\"\n2017 Wimbledon Championships – Women's Singles Serena Williams was the two-time defending champion, but did not participate this year due to . Garbiñe Muguruza won her second Grand Slam singles title, defeating Venus Williams in the final, 7–5, 6–0. Muguruza became the second Spanish woman to win Wimbledon after Conchita Martínez in 1994. Muguruza also became the first player to defeat both Williams sisters in Grand Slam singles finals. Williams was the oldest player to reach the final since Martina Navratilova, also in 1994, and played her 100th singles match at Wimbledon when she defeated reigning French Open champion Jeļena"} +{"qid": "test1151", "pid": "18836324", "query": "who won the 2017 women's wimbledon final", "answer": "Garbiñe Muguruza", "passage": "\"2015 Wimbledon Championships – Women's Singles\"\nMuguruza became the first Spanish woman to make the Wimbledon final since Arantxa Sánchez Vicario in 1996. Muguruza won the title two years later. This tournament is notable for being the first grand slam main draw appearance of 2017 French Open champion Jeļena Ostapenko. 2015 Wimbledon Championships – Women's Singles Petra Kvitová was the defending champion, but was defeated by Jelena Janković in the third round. Serena Williams won her sixth Wimbledon and 21st major title, becoming the oldest woman to win a major singles title in the Open Era. By defeating first-time finalist Garbiñe Muguruza, Serena also achieved her"} +{"qid": "test1151", "pid": "19612353", "query": "who won the 2017 women's wimbledon final", "answer": "Garbiñe Muguruza", "passage": "\"2017 Wimbledon Championships\"\n2017 Wimbledon Championships The 2017 Wimbledon Championships was a Grand Slam tennis tournament that took place at the All England Lawn Tennis and Croquet Club in Wimbledon, London, United Kingdom. The main draw matches commenced on 3 July 2017 and concluded on 16 July 2017. Roger Federer won the Gentlemen's Singles title for a record eighth time, surpassing Pete Sampras and William Renshaw, who both won the Gentlemen's Singles title seven times. Garbiñe Muguruza won the Ladies' Singles title. The 2017 tournament was the 131st edition of the championships, the 50th in the Open Era and the third Grand Slam"} +{"qid": "test1153", "pid": "5051616", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Federal Reserve Board of Governors\"\n1935, the Chair and Vice Chair of the Board are two of seven members of the Board of Governors who are appointed by the President from among the sitting Governors. The terms of the seven members of the Board span multiple presidential and congressional terms. Once a member of the Board of Governors is appointed by the president, he or she functions mostly independently. The Board is required to make an annual report of operations to the Speaker of the U.S. House of Representatives. It also supervises and regulates the operations of the Federal Reserve Banks, and the U.S. banking"} +{"qid": "test1153", "pid": "14412481", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Structure of the Federal Reserve System\"\ncountry\"\", and as stipulated in the Banking Act of 1935, the Chairman and Vice Chairman of the Board are two of seven members of the Board of Governors who are appointed by the President from among the sitting Governors. As an independent federal government agency, the Board of Governors does not receive funding from Congress, and the terms of the seven members of the Board span multiple presidential and congressional terms. Once a member of the Board of Governors is appointed by the president, he or she functions mostly independently. The Board is required to make an annual report of"} +{"qid": "test1153", "pid": "5051618", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Federal Reserve Board of Governors\"\nqualified\"\", it is possible for a member to serve for significantly longer than a full term of 14 years. The law provides for the removal of a member of the Board by the President \"\"for cause\"\". The Chair and Vice Chair of the Board of Governors are appointed by the President from among the sitting Governors. They both serve a four-year term and they can be renominated as many times as the President chooses, until their terms on the Board of Governors expire. All seven board members of the Federal Reserve Board of Governors and five Federal Reserve Bank presidents"} +{"qid": "test1153", "pid": "2384166", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Chair of the Federal Reserve\"\nChair of the Federal Reserve The Chair of the Board of Governors of the Federal Reserve System is the head of the Federal Reserve, which is the central banking system of the United States. The position is known colloquially as \"\"Chair of the Fed\"\" or \"\"Fed Chair\"\". The chair is the \"\"active executive officer\"\" of the Board of Governors of the Federal Reserve System. The chair is chosen by the President of the United States from among the members of the Board of Governors; and serves for four-year-terms after appointment. A chair may be appointed for several consecutive terms. William"} +{"qid": "test1153", "pid": "14412483", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Structure of the Federal Reserve System\"\nare appointed and have qualified\"\", it is possible for a member to serve for significantly longer than a full term of 14 years. The law provides for the removal of a member of the Board by the President \"\"for cause\"\". For a list of the current members of the board of governors, see Federal Reserve Board of Governors. The Federal Open Market Committee (FOMC) created under comprises the seven members of the board of governors and five representatives selected from the regional Federal Reserve Banks. The FOMC is charged under law with overseeing open market operations, the principal tool of"} +{"qid": "test1153", "pid": "5051615", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Federal Reserve Board of Governors\"\nFederal Reserve Board of Governors The Board of Governors of the Federal Reserve System, commonly known as the Federal Reserve Board, is the main governing body of the Federal Reserve System. It is charged with overseeing the Federal Reserve Banks and with helping implement the monetary policy of the United States. Governors are appointed by the President of the United States and confirmed by the Senate for staggered 14-year terms. By law, the appointments must yield a \"\"fair representation of the financial, agricultural, industrial, and commercial interests and geographical divisions of the country\"\". As stipulated in the Banking Act of"} +{"qid": "test1153", "pid": "2384168", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Chair of the Federal Reserve\"\nIn effect, the Federal Reserve Board members in Washington, D.C., were significantly less powerful than the presidents of the regional Federal Reserve Banks prior to 1935. In the 1935 Act, the district heads had their titles changed to \"\"President\"\" (e.g., \"\"President of the Federal Reserve Bank of St. Louis\"\"). As stipulated by the Banking Act of 1935, the President of the United States appoints the seven members of the Board of Governors; they must then be confirmed by the Senate and serve fourteen year terms. The nominees for chair and vice-chair may be chosen by the President from among the"} +{"qid": "test1153", "pid": "14412480", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Structure of the Federal Reserve System\"\nredeemable only at par, the nominal \"\"owners\"\" do not benefit from this surplus capital. In 2010, the Federal Reserve System contributed $79 billion to the U.S. Treasury. The seven-member Board of Governors is the main governing body of the Federal Reserve System. It is charged with overseeing the 12 District Reserve Banks and with helping implement national monetary policy. Governors are appointed by the President of the United States and confirmed by the Senate for staggered, 14-year terms. By law, the appointments must yield a \"\"fair representation of the financial, agricultural, industrial, and commercial interests and geographical divisions of the"} +{"qid": "test1153", "pid": "14412476", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Structure of the Federal Reserve System\"\nnot operate for the purpose of making a profit. The stocks of the regional federal reserve banks are owned by the banks operating within that region and which are part of the system. The System derives its authority and public purpose from the Federal Reserve Act passed by Congress in 1913. As an independent institution, the Federal Reserve System has the authority to act on its own without prior approval from Congress or the President. The members of its Board of Governors are appointed for long, staggered terms, limiting the influence of day-to-day political considerations. The Federal Reserve System's unique"} +{"qid": "test1153", "pid": "134970", "query": "who appoints the members of the board of governors of the federal reserve", "answer": "the President", "passage": "\"Federal Reserve\"\nstructure of the system. Private banks elect members of the board of directors at their regional Federal Reserve Bank while the members of the board of governors are selected by the President of the United States and confirmed by the Senate. The Federal Banking Agency Audit Act, enacted in 1978 as Public Law 95-320 and 31 U.S.C. section 714 establish that the board of governors of the Federal Reserve System and the Federal Reserve banks may be audited by the Government Accountability Office (GAO). The GAO has authority to audit check-processing, currency storage and shipments, and some regulatory and bank"} +{"qid": "test1154", "pid": "2176159", "query": "the most common form of megalithic architecture in europe is", "answer": "the portal tomb", "passage": "Megalith\nwhereas Moses erected twelve pillars symbolizing the tribes of Israel. The tradition of venerating (standing) stones continued in Nabatean times and is reflected in, e.g., the Islamic rituals surrounding the Kaaba and nearby pillars. Related phenomena, such as cupholes, rock-cut tombs and circles also occur in the Middle East. The most common type of megalithic construction in Europe is the portal tomb – a chamber consisting of upright stones (orthostats) with one or more large flat capstones forming a roof. Many of these, though by no means all, contain human remains, but it is debatable whether use as burial sites"} +{"qid": "test1154", "pid": "2176160", "query": "the most common form of megalithic architecture in europe is", "answer": "portal tomb", "passage": "Megalith\nwas their primary function. The megalithic structures of Malta are believed to be the oldest in Europe, in particular Skorba Temples. Though generally known as \"\"dolmens\"\", the term most accepted by archaeologists is \"\"portal tomb\"\". However many local names exist, such as \"\"anta\"\" in Galicia and Portugal, \"\"stazzone\"\" in Sardinia, \"\"hunebed\"\" in the Netherlands, \"\"Hünengrab\"\" in Germany, \"\"dysse\"\" in Denmark, and \"\"cromlech\"\" in Wales. It is assumed that most portal tombs were originally covered by earthen mounds. The second-most-common tomb type is the passage grave. It normally consists of a square, circular, or cruciform chamber with a slabbed or corbelled"} +{"qid": "test1156", "pid": "20767042", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Self-adaptive mechanisms\"\nSelf-adaptive mechanisms Self-adaptive mechanisms, sometimes simply called adaptive mechanisms, in engineering, are underactuated mechanisms that can adapt to their environment. One of the most well-known example of this type of mechanisms are underactuated fingers, grippers, and robotic hands. Contrary to standard underactuated mechanisms where the motion is governed by the dynamics of the system, the motion of self-adaptive mechanisms is generally constrained by compliant elements cleverly located in the mechanisms. Underactuated mechanisms have a lower number of actuators than the number of degrees of freedom (DOF). In a two-dimensional plane, a mechanism can have up to three DOF (two translations,"} +{"qid": "test1156", "pid": "18219195", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "Freedom\naeroplane can also climb and sideslip, giving it six degrees of freedom. Degrees of freedom in mechanics describes the number of independent motions that are allowed to a body, or, in case of a mechanism made of several bodies, the number of possible independent relative motions between the pieces of the mechanism. In the study of complex motor control, there may be so many degrees of freedom that a given action can be achieved in different ways by combining movements with different degrees of freedom. This issue is sometimes called the degrees of freedom problem. In mathematics freedom is the"} +{"qid": "test1156", "pid": "1500181", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Degrees of freedom\"\nDegrees of freedom In many scientific fields, the degrees of freedom of a system is the number of parameters of the system that may vary independently. For example, a point in the plane has two degrees of freedom for translation: its two coordinates; a non-infinitesimal object on the plane might have additional degrees of freedoms related to its orientation. In mathematics, this notion is formalized as the dimension of a manifold or an algebraic variety. When \"\"degrees of freedom\"\" is used instead of \"\"dimension\"\", this usually means that the manifold or variety that models the system is only implicitly defined."} +{"qid": "test1156", "pid": "1500182", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Degrees of freedom\"\nSee: Degrees of freedom In many scientific fields, the degrees of freedom of a system is the number of parameters of the system that may vary independently. For example, a point in the plane has two degrees of freedom for translation: its two coordinates; a non-infinitesimal object on the plane might have additional degrees of freedoms related to its orientation. In mathematics, this notion is formalized as the dimension of a manifold or an algebraic variety. When \"\"degrees of freedom\"\" is used instead of \"\"dimension\"\", this usually means that the manifold or variety that models the system is only implicitly"} +{"qid": "test1156", "pid": "5659924", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Degrees of freedom (mechanics)\"\nhas only one degree of freedom because the positions of the cars behind the engine are constrained by the shape of the track. An automobile with highly stiff suspension can be considered to be a rigid body traveling on a plane (a flat, two-dimensional space). This body has three independent degrees of freedom consisting of two components of translation and one angle of rotation. Skidding or drifting is a good example of an automobile's three independent degrees of freedom. The position and orientation of a rigid body in space is defined by three components of translation and three components of"} +{"qid": "test1156", "pid": "4651356", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Linkage (mechanical)\"\ndegree-of-freedom revolute or prismatic joints, so the system has six degrees of freedom. An example of a simple closed chain is the RSSR spatial four-bar linkage. The sum of the freedom of these joints is eight, so the mobility of the linkage is two, where one of the degrees of freedom is the rotation of the coupler around the line joining the two S joints. It is common practice to design the linkage system so that the movement of all of the bodies are constrained to lie on parallel planes, to form what is known as a \"\"planar linkage\"\". It"} +{"qid": "test1156", "pid": "5659931", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Degrees of freedom (mechanics)\"\nprismatic joints, so the system has six degrees of freedom. An example of a simple closed chain is the RSSR spatial four-bar linkage. The sum of the freedom of these joints is eight, so the mobility of the linkage is two, where one of the degrees of freedom is the rotation of the coupler around the line joining the two S joints. It is common practice to design the linkage system so that the movement of all of the bodies are constrained to lie on parallel planes, to form what is known as a \"\"planar linkage\"\". It is also possible"} +{"qid": "test1156", "pid": "5659925", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Degrees of freedom (mechanics)\"\nrotation, which means that it has six degrees of freedom. The exact constraint mechanical design method manages the degrees of freedom to neither underconstrain nor overconstrain a device. The position of an \"\"n\"\"-dimensional rigid body is defined by the rigid transformation, [\"\"T\"\"] = [\"\"A\"\", \"\"d\"\"], where \"\"d\"\" is an \"\"n\"\"-dimensional translation and \"\"A\"\" is an \"\"n\"\" × \"\"n\"\" rotation matrix, which has \"\"n\"\" translational degrees of freedom and \"\"n\"\"(\"\"n\"\" − 1)/2 rotational degrees of freedom. The number of rotational degrees of freedom comes from the dimension of the rotation group SO(n). A non-rigid or deformable body may be thought of"} +{"qid": "test1156", "pid": "14483556", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Degrees of freedom (physics and chemistry)\"\na fixed surface, then the system has fewer than six degrees of freedom. On the other hand, a system with an extended object that can rotate or vibrate can have more than six degrees of freedom. In classical mechanics, the state of a point particle at any given time is often described with position and velocity coordinates in the Lagrangian formalism, or with position and momentum coordinates in the Hamiltonian formalism. In statistical mechanics, a degree of freedom is a single scalar number describing the microstate of a system. The specification of all microstates of a system is a point"} +{"qid": "test1156", "pid": "7665715", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Kinematic coupling\"\nprecision of a kinematic coupling comes from the idea of Exact Constraint Design. The principle of Exact Constrain Design is the number of points of constraint should be equal to the number of degrees of freedom to be constrained. In a mechanical system there are six potential degrees of freedom. There are three linear degrees of freedom, the \"\"x\"\", \"\"y\"\", and \"\"z\"\" axis, and three rotational degrees of freedom around each axis commonly called pitch, roll and yaw. If a system is under constrained then the two parts are free to move in one of the degrees of freedom. if"} +{"qid": "test1156", "pid": "5659927", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Degrees of freedom (mechanics)\"\nbody, and is described as: See also Euler angles The trajectory of an airplane in flight has three degrees of freedom and its attitude along the trajectory has three degrees of freedom, for a total of six degrees of freedom. The mobility formula counts the number of parameters that define the configuration of a set of rigid bodies that are constrained by joints connecting these bodies. Consider a system of \"\"n\"\" rigid bodies moving in space has 6\"\"n\"\" degrees of freedom measured relative to a fixed frame. In order to count the degrees of freedom of this system, include the"} +{"qid": "test1156", "pid": "7349329", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Overconstrained mechanism\"\nas the crank-driven elliptic trammel, Hoberman mechanisms move because of their particular geometric configurations. Overconstrained mechanisms can be also obtained by assembling together cognate linkages; when their number is more than two, overconstrained mechanisms with negative calculated mobility will result. Overconstrained mechanism An overconstrained mechanism is a linkage that has more degrees of freedom than is predicted by the mobility formula. The mobility formula evaluates the degree of freedom of a system of rigid bodies that results when constraints are imposed in the form of joints connecting the links. If the links of the system move in three-dimensional space, then"} +{"qid": "test1156", "pid": "4651360", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Linkage (mechanical)\"\njoints in a planar linkage that yields a one degree-of-freedom linkage. If we require the mobility of a planar linkage to be \"\"M\"\" = 1 and \"\"f\"\" = 1, the result is or This formula shows that the linkage must have an even number of links, so we have See Sunkari and Schmidt for the number of 14- and 16-bar topologies, as well as the number of linkages that have two, three and four degrees-of-freedom. The planar four-bar linkage is probably the simplest and most common linkage. It is a one degree-of-freedom system that transforms an input crank rotation or"} +{"qid": "test1156", "pid": "7349326", "query": "number of degree of freedom for plane mechanism", "answer": "six", "passage": "\"Overconstrained mechanism\"\nto a fixed plane, or in concentric spheres about a fixed point, then the mobility formula is If a system of links and joints has mobility M=0 or less, yet still moves, then it is called an \"\"overconstrained mechanism\"\". A well-known example of an overconstrained mechanism is the parallel linkage with multiple cranks, as seen in the running gear of steam locomotives. Sarrus mechanism consists of six bars connected by six hinged joints. A general spatial linkage formed from six links and six hinged joints has mobility and is therefore a structure. The Sarrus mechanism has one degree of freedom"} +{"qid": "test1156", "pid": "5659936", "query": "number of degree of freedom for plane mechanism", "answer": "two", "passage": "\"Degrees of freedom (mechanics)\"\npose, but at any point, you can move it only by a forward motion and a steering angle. So it has two control DOFs and three representational DOFs; i.e. it is non-holonomic. A fixed-wing aircraft, with 3–4 control DOFs (forward motion, roll, pitch, and to a limited extent, yaw) in a 3-D space, is also non-holonomic, as it cannot move directly up/down or left/right. A summary of formulas and methods for computing the degrees-of-freedom in mechanical systems has been given by Pennestri, Cavacece, and Vita. In electrical engineering \"\"degrees of freedom\"\" is often used to describe the number of directions"} +{"qid": "test1157", "pid": "8254969", "query": "who plays dusty in the movie pure country", "answer": "George Strait", "passage": "\"Pure Country\"\nsmoke and the lights are turned on, we see Wyatt \"\"Dusty\"\" Chandler (George Strait) entering the stage, and performing \"\"Heartland\"\", \"\"Baby Your Baby\"\", and a shortened version of \"\"Where the Sidewalk Ends\"\". Dusty feels that his elaborate stage show is overwhelming his music, a suspicion confirmed one night when he purposely omits several bars of a chart-topping hit, \"\"Where the Sidewalk Ends\"\". When his fans don't even notice, Dusty cuts the performance short. After the concert, Dusty has a conversation with his drummer, and best friend, Earl. They reminisce on when they were kids, a time much simpler. Without telling"} +{"qid": "test1157", "pid": "8254968", "query": "who plays dusty in the movie pure country", "answer": "George Strait", "passage": "\"Pure Country\"\nPure Country Pure Country is a 1992 American dramatic musical western film directed by Christopher Cain and starring George Strait in his acting debut, with Lesley Ann Warren, Isabel Glasser and Kyle Chandler. The film was considered a box office bomb, but it grossed over $15 million against a $10 million budget, and the soundtrack was a critical success and, to date, is Strait's best selling album. It was followed by two direct-to-video sequels, \"\"\"\" (2010) and \"\"\"\" (2017). The film begins with various shots of the audience chanting \"\"Dusty!\"\", which is repeated throughout. Meanwhile, the band begins, as the"} +{"qid": "test1157", "pid": "7007946", "query": "who plays dusty in the movie pure country", "answer": "George Strait", "passage": "\"Pure Country (soundtrack)\"\nPure Country (soundtrack) Pure Country is the thirteenth studio album and the first soundtrack album by George Strait and to the movie \"\"Pure Country\"\", and all songs are sung by George Strait. It was released in 1992 by MCA Records. It is Strait's most commercially successful album, having sold over six million copies. This was the first George Strait album to not be fully Digital Recorded. Most of the album was cut on full analog sources which is what gave the album a more natural sound. This was the first album of Strait's career to feature Tony Brown, who has"} +{"qid": "test1157", "pid": "13214596", "query": "who plays dusty in the movie pure country", "answer": "George Strait", "passage": "\"I Cross My Heart\"\nI Cross My Heart \"\"I Cross My Heart\"\" is a song written by Steve Dorff and Eric Kaz, and performed by American country music artist George Strait. It was released in September 1992 as the first single to his album \"\"Pure Country\"\", which is also the soundtrack to the movie of the same title. It reached number-one in both the United States and Canada. The song is featured as the movie's finale. The music video was directed by Charley Randazzo, and is completely made from scenes from the movie, Strait's next music video \"\"Heartland\"\" also uses scenes from Pure Country."} +{"qid": "test1158", "pid": "685680", "query": "when was the last easter that fell on april 1st", "answer": "2018", "passage": "\"Good Friday\"\nGood Friday falls within the school holidays in most years in all states and territories except the Northern Territory, although many states now commence their school holidays in early April regardless of Easter. In 2018, for example, when Good Friday fell on 30 March, only Queensland and Victoria had school holidays which coincided with Good Friday. The vast majority of businesses are closed on Good Friday, although many recreational businesses, such as the Sydney Royal Easter Show, open on Good Friday as among non-religious families Good Friday is a popular day to indulge in such activities. In New Zealand,"} +{"qid": "test1159", "pid": "9997854", "query": "when did the passion of the christ come out", "answer": "2004", "passage": "\"The Passion of the Christ (soundtrack)\"\nThe Passion of the Christ (soundtrack) The Passion of the Christ is the soundtrack, on the Sony label, of the 2004 Academy Award-nominated film \"\"The Passion of the Christ\"\" starring James Caviezel, Maia Morgenstern, Christo Jivkov, Hristo Shopov, Francesco DeVito and Monica Bellucci. The original score was composed by John Debney. The album was nominated for the Academy Award for Best Original Score. Mel Gibson, the director for The Passion of the Christ, is believed to have sung in part of the soundtrack. On 2005, the album won a Dove Award for Instrumental Album of the Year at the 36th"} +{"qid": "test1159", "pid": "9997855", "query": "when did the passion of the christ come out", "answer": "2004", "passage": "\"The Passion of the Christ (soundtrack)\"\nGMA Dove Awards. The album was also nominated for the Academy Award for Best Original Score at the 77th Academy Awards (2004). The Passion of the Christ (soundtrack) The Passion of the Christ is the soundtrack, on the Sony label, of the 2004 Academy Award-nominated film \"\"The Passion of the Christ\"\" starring James Caviezel, Maia Morgenstern, Christo Jivkov, Hristo Shopov, Francesco DeVito and Monica Bellucci. The original score was composed by John Debney. The album was nominated for the Academy Award for Best Original Score. Mel Gibson, the director for The Passion of the Christ, is believed to have sung"} +{"qid": "test1160", "pid": "13043665", "query": "how many nfl teams has st louis had", "answer": "four", "passage": "\"Sports in St. Louis\"\nand went on to win championships in 1928, 1930, and the club’s final season, 1931. National Baseball Hall of Fame inductees James “Cool Papa” Bell, Willie “The Devil” Wells, and George “Mule” Suttles wore the St. Louis Stars uniform. St. Louis has been the home of four National Football League (NFL) franchises. Three years after the NFL was founded in 1920, it accepted the St. Louis All-Stars as a franchise for the 1923 NFL season. The team finished 1–4–2 in league play, and a 2–5–2 overall record while finishing fourteenth in the standings. The team's first NFL game was on"} +{"qid": "test1160", "pid": "10072911", "query": "how many nfl teams has st louis had", "answer": "four", "passage": "\"1998 St. Louis Rams season\"\n1998 St. Louis Rams season The 1998 St. Louis Rams season was the team’s 61st year with the National Football League (NFL) and the fourth season in St. Louis. It was the second year for head coach Dick Vermeil. The team failed to improve on its 5–11 record from 1997, and instead finished the season 4–12 and missed the playoffs for the ninth consecutive season, during which they had compiled a league-worst 45–99 record. Despite all of this, the Rams showed many signs of life during the season when they beat playoff teams such as the New York Jets (who"} +{"qid": "test1160", "pid": "12911919", "query": "how many nfl teams has st louis had", "answer": "four", "passage": "\"1971 St. Louis Cardinals (NFL) season\"\n1971 St. Louis Cardinals (NFL) season The St. Louis Cardinals season was the 52nd season the team was in the National Football League and twelfth in St. Louis. The team failed to improve on their previous year's 8–5–1 record, winning only four games. They failed to reach the playoffs for the 23rd straight season, their previous appearance was in 1948 in the championship game. This was the last season the team was co-owned by Charles Bidwill, Jr.; he sold his share to his younger brother Bill in September 1972. The adopted sons of Charles and Violet Bidwill, the two had"} +{"qid": "test1160", "pid": "12936958", "query": "how many nfl teams has st louis had", "answer": "four", "passage": "\"1961 St. Louis Cardinals (NFL) season\"\n1961 St. Louis Cardinals (NFL) season The St. Louis Cardinals season was the team's 42nd season in the National Football League (NFL) and their second in St. Louis. The team improved on their previous year's 6–5–1 record, winning seven games. Despite the improvement, they finished fourth in the seven-team Eastern Conference and failed to qualify for the playoffs (NFL title game) for the thirteenth consecutive season. The Cardinals were led by fourth-year head coach Pop Ivy, who was replaced after a 5–7 start by the tandem of Chuck Drulis, Ray Prochaska, and Ray Willsey. This was the final season of"} +{"qid": "test1160", "pid": "375283", "query": "how many nfl teams has st louis had", "answer": "four", "passage": "\"St. Louis\"\nsix games. The St. Louis Blues of the National Hockey League (NHL) play at the Enterprise Center. They were one of the six teams added to the NHL in the 1967 expansion. The Blues have never won the Stanley Cup, and are the oldest team not to do so. Prior to the Blues, the city was home to the St. Louis Eagles. The team only played in the 1934-35 season. St. Louis has been home to four different National Football League (NFL) teams. The St. Louis All-Stars played in the city in 1923, the St. Louis Gunners in 1934, the"} +{"qid": "test1160", "pid": "12936959", "query": "how many nfl teams has st louis had", "answer": "four", "passage": "\"1961 St. Louis Cardinals (NFL) season\"\nownership by Violet Bidwill Wolfner, who died in January 1962 at age 62. 1961 St. Louis Cardinals (NFL) season The St. Louis Cardinals season was the team's 42nd season in the National Football League (NFL) and their second in St. Louis. The team improved on their previous year's 6–5–1 record, winning seven games. Despite the improvement, they finished fourth in the seven-team Eastern Conference and failed to qualify for the playoffs (NFL title game) for the thirteenth consecutive season. The Cardinals were led by fourth-year head coach Pop Ivy, who was replaced after a 5–7 start by the tandem of"} +{"qid": "test1162", "pid": "691169", "query": "who missed the plane the day the music died", "answer": "Tommy Allsup", "passage": "\"The Day the Music Died\"\nThe Day the Music Died On February 3, 1959, American rock and roll musicians Buddy Holly, Ritchie Valens, and J. P. \"\"The Big Bopper\"\" Richardson were killed in a plane crash near Clear Lake, Iowa, together with pilot Roger Peterson. The event later became known as \"\"The Day the Music Died\"\", after singer-songwriter Don McLean referred to it as such in his 1971 song \"\"American Pie\"\". At the time, Holly and his band, consisting of Waylon Jennings, Tommy Allsup, and Carl Bunch, were playing on the \"\"Winter Dance Party\"\" tour across the Midwest. Rising artists Valens, Richardson and Dion and"} +{"qid": "test1163", "pid": "3628560", "query": "where does the river irk start and finish", "answer": "east of Royton", "passage": "\"River Irk\"\nRiver Irk The River Irk is a river in North West England that flows through the northern suburbs and towns of Greater Manchester. It rises to the east of Royton and runs west past Chadderton, Middleton and Blackley before merging with the River Irwell in Manchester city centre. Historically, the Irk was also known as Iwrck or the Irke, names thought to have been derived from the Roebuck, suggesting that at one time it was a swift-running river. In medieval times, there was a mill by the Irk at which the tenants of the manor ground their corn and its"} +{"qid": "test1164", "pid": "17153838", "query": "where was the movie a walk among the tombstones filmed", "answer": "New York City", "passage": "\"A Walk Among the Tombstones (film)\"\na superhero (a sickle is visible on the hero's chest, a callback to TJ's sickle cell anemia). He sits down and falls asleep. A film adaptation of Block’s novel had been in development for several years with a script from Scott Frank. In 2002, Harrison Ford was attached to star and D. J. Caruso to direct. In May 2012, Liam Neeson had reportedly signed on to play Matthew Scudder in the film, with Frank himself directing, and production slated to begin February 2013. Filming began on March 3, 2013 in New York City. Producers invited author Block to the set"} +{"qid": "test1164", "pid": "15505373", "query": "where was the movie a walk among the tombstones filmed", "answer": "New York City", "passage": "\"Stephanie Andujar\"\nrange, as she plays 10+ characters who intertwine with each other. The show is based on Stephanie's life growing up in New York City and currently has two seasons. Stephanie Andujar Stephanie Andujar (born July 15, 1986) is an American actress, director, producer, singer and songwriter starring in theatre performances from \"\"The Wiz\"\", \"\"The Crucible\"\", and \"\"The Good Woman of Setzuan\"\". Her film career includes the Academy Award-winning film \"\"Precious\"\" (2009), \"\"Pariah\"\" (2011), \"\"See Girl Run\"\" (2012), \"\"Babygirl\"\" (2013), \"\"A Walk Among the Tombstones\"\" (2014), and the film \"\"Marjorie Prime\"\" (2017). Her television career includes NBC’s \"\"\"\" (2007), nurse drama"} +{"qid": "test1165", "pid": "131638", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "Empire\nthe era of the Warring States ended in 221 BC with the universal conquest of Qin. The King of Qin, Ying Zheng, became China's First Emperor and began the pattern of successive dynasties. Ying Zheng connected all the existing defense walls of northern China into what is known today Great Wall of China which marked the northern frontier of China. The Qin Dynasty was short lived and in 207 BC was overthrown by the Han Dynasty (207 BC - AD 220) which became one of East Asia's most long-lived dynasties. In the second century AD the Han Empire expanded into"} +{"qid": "test1165", "pid": "16243888", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nof the Han dynasty, with the Dunhuang manuscripts (discovered in 1900) indicating that the military establishment in the northwest was maintained for most of the Eastern Han period. Following the end of the Han dynasty in 220, China disintegrated into warlord states, which in 280 were briefly reunited under the Western Jin dynasty (265316). There are ambiguous accounts of the Jin rebuilding the Qin wall, but these walls apparently offered no resistance during the Wu Hu uprising, when the nomadic tribes of the steppe evicted the Chinese court from northern China. What followed was a succession of short-lived states in"} +{"qid": "test1165", "pid": "16243932", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nManchus without, decided to surrender to the Manchus and opened the gates for them. The Manchus, having thus entered through the Great Wall, defeated Li Zicheng at the Battle of Shanhai Pass and seized Beijing on June5. They eventually defeated both the rebel-founded Shun dynasty and the remaining Ming resistance, establishing their rule over all of China as the Qing dynasty. Opinions about the Wall's role in the Ming dynasty's downfall are mixed. Historians such as Arthur Waldron and Julia Lovell are critical of the whole wall-building exercise in light of its ultimate failure in protecting China; the former compared"} +{"qid": "test1165", "pid": "16243849", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nGreat Wall failed to stop enemies, including in 1644 when the Manchu Qing marched through the gates of Shanhai Pass and replaced the most ardent of the wall-building dynasties, the Ming, as rulers of China. The Great Wall of China visible today largely dates from the Ming dynasty, as they rebuilt much of the wall in stone and brick, often extending its line through challenging terrain. Some sections remain in relatively good condition or have been renovated, while others have been damaged or destroyed for ideological reasons, deconstructed for their building materials, or lost due to the ravages of time."} +{"qid": "test1165", "pid": "12088935", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"China–Mongolia relations\"\ncomplicated relations. The Great Wall was constructed to ward off the northern nomads attacks, from the Huns during the Qin Dynasty, the Turks during the Tang Dynasty, and later, the Mongolians and Central Asians. In 1271, Mongols under Kublai Khan, grandson of Genghis Khan, established the Yuan Dynasty and conquered all of China in 1279. In 1368, the Chinese under the Ming Dynasty successfully expelled the Mongols from China and in 1388, sacked the Northern Yuan's capital at Karakorum. The Ming Great Wall was strengthened and the period was characterized by repeated Mongol raids into China and Chinese raids into"} +{"qid": "test1165", "pid": "16243847", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nHistory of the Great Wall of China The history of the Great Wall of China began when fortifications built by various states during the Spring and Autumn (771–476) and Warring States periods (475–221) were connected by the first emperor of China, Qin Shi Huang, to protect his newly founded Qin dynasty (221–206) against incursions by nomads from Inner Asia. The walls were built of rammed earth, constructed using forced labour, and by 212 ran from Gansu to the coast of southern Manchuria. Later dynasties adopted different policies towards northern frontier defense. The Han (202 – 220), the Northern Qi (550–574),"} +{"qid": "test1165", "pid": "7784926", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"Great Wall of China\"\nBC by Qin Shi Huang, the first Emperor of China. Little of that wall remains. The Great Wall has been rebuilt, maintained, and enhanced over various dynasties; the majority of the existing wall is from the Ming Dynasty (1368–1644). Apart from defense, other purposes of the Great Wall have included border controls, allowing the imposition of duties on goods transported along the Silk Road, regulation or encouragement of trade and the control of immigration and emigration. Furthermore, the defensive characteristics of the Great Wall were enhanced by the construction of watch towers, troop barracks, garrison stations, signaling capabilities through the"} +{"qid": "test1165", "pid": "14372940", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"Rise of the Great Wall\"\nRise of the Great Wall Rise of the Great Wall is a 1986 Hong Kong television series based on the life of Qin Shi Huang, the First Emperor of China and founder of the Qin dynasty. The series is one of the biggest productions by ATV. The series follows the life of Ying Zheng, the ruler of the Qin state in the Warring States period, who eventually unified China, established the Qin dynasty, and became the First Emperor of a unified China. The series also includes a subplot about Jing Ke, an assassin who attempted to take the emperor's life."} +{"qid": "test1165", "pid": "16243900", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nclearly defined in a series of subsequent bilateral agreements. Several stretches of the old Great Walls, including the Northern Qi Inner Wall near the Hengshan mountain range, became the border between the Song and the Liao. In the northwest, the Song were in conflict with the Western Xia, since they occupied what the Song considered as Chinese land lost during the Tang dynasty. The Song utilized the walls built during the reign of Qin's King Zhaoxiang of the Warring States period, making it the Song–Western Xia border, but the topography of the area was not as sharp and distinct as"} +{"qid": "test1165", "pid": "7784940", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"Great Wall of China\"\nGreat Wall in 1644, after Beijing had already fallen to Li Zicheng's rebels. Before this time, the Manchus had crossed the Great Wall multiple times to raid, but this time it was for conquest. The gates at Shanhai Pass were opened on May 25 by the commanding Ming general, Wu Sangui, who formed an alliance with the Manchus, hoping to use the Manchus to expel the rebels from Beijing. The Manchus quickly seized Beijing, and eventually defeated both the rebel-founded Shun dynasty and the remaining Ming resistance, establishing the Qing dynasty rule over all of China. Under Qing rule, China's"} +{"qid": "test1165", "pid": "537718", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"Qin dynasty\"\nEmperor developed plans to fortify his northern border, to protect against nomadic invasions. The result was the initial construction of what later became the Great Wall of China, which was built by joining and strengthening the walls made by the feudal lords, which would be expanded and rebuilt multiple times by later dynasties, also in response to threats from the north. Another project built during Qin Shi Huang's rule was the Terracotta Army, intended to protect the emperor after his death. The Terracotta Army was inconspicuous due to its underground location, and was not discovered until 1974. The dominant religious"} +{"qid": "test1165", "pid": "658032", "query": "what dynasty completed the great wall of china", "answer": "Ming dynasty", "passage": "\"Inner Mongolia\"\nultimately conquered in 1227, and the Jurchen Jin dynasty fell in 1234. In 1271, Kublai Khan, the grandson of Genghis Khan established the Yuan dynasty. Kublai Khan's summer capital Shangdu (aka Xanadu) was located near present-day Dolonnor. During that time Ongud and Khunggirad peoples dominated the area of what is now Inner Mongolia. After the Yuan dynasty was overthrown by the Han-led Ming dynasty in 1368, the Ming captured parts of Inner Mongolia including Shangdu and Yingchang. The Ming rebuilt the Great Wall of China at its present location, which roughly follows the southern border of the modern Inner Mongolia"} +{"qid": "test1165", "pid": "16243930", "query": "what dynasty completed the great wall of china", "answer": "Ming dynasty", "passage": "\"History of the Great Wall of China\"\nGreat Wall snaking over dramatic landscapes that tourists still see today. Wall construction continued until the demise of the Ming dynasty in 1644. In the decades that led to the fall of the Ming dynasty, the Ming court and the Great Wall itself had to deal with simultaneous internal rebellions and the Manchu invasions. In addition to their conquest of Liaodong, the Manchus had raided across the Great Wall for the first time in 1629, and again in 1634, 1638, and 1642. Meanwhile, the rebels led by warlord Li Zicheng had been gathering strength. In the early months of 1644,"} +{"qid": "test1165", "pid": "18058634", "query": "what dynasty completed the great wall of china", "answer": "Ming dynasty", "passage": "\"Ming Great Wall\"\nin light of its ultimate failure in protecting China; the former compared the Great Wall with the failed Maginot Line of the French in World War II. However, independent scholar David Spindler notes that the Wall, being only part of a complex foreign policy, received \"\"disproportionate blame\"\" because it was the most obvious relic of that policy. Ming Great Wall The Ming Great Wall (明長城; \"\"Ming changcheng\"\"), built by the Ming dynasty (1368–1644), forms the most visible parts of the Great Wall of China today. A comprehensive archaeological survey, using advanced technologies, has concluded that the Ming walls measure from"} +{"qid": "test1165", "pid": "5996833", "query": "what dynasty completed the great wall of china", "answer": "Ming dynasty", "passage": "Simatai\nSimatai Simatai (), a section of the Great Wall of China located in the north of Miyun County, 120 km northeast of Beijing, holds the access to Gubeikou, a strategic pass in the eastern part of the Great Wall. It was closed in June 2010 but has been reopened to tourists in 2014. The section was originally built during the Northern Qi dynasty (550–577) and rebuilt during the Hongwu Emperor's reign during the Ming dynasty. Simatai Great Wall is 5.4 km long with 35 beacon towers. This section of the Great Wall incorporated the different characteristics of each section of"} +{"qid": "test1165", "pid": "1645550", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "Fortification\nWarring States (481–221 BC), mass conversion to stone architecture did not begin in earnest until the Tang dynasty (618–907 AD). The Great Wall of China had been built since the Qin dynasty (221–207 BC), although its present form was mostly an engineering feat and remodelling of the Ming dynasty (1368–1644 AD). In addition to the Great Wall, a number of Chinese cities also employed the use of defensive walls to defend their cities. Notable Chinese city walls include the city walls of Hangzhou, Nanjing, the Old City of Shanghai, Suzhou, Xi'an and the walled villages of Hong Kong. The famous"} +{"qid": "test1165", "pid": "7464486", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"Battle of Mobei\"\nprotecting the northern borders from nomadic raids had been a military priority. During the Zhou Dynasty, northern vassal states such as Yan, Zhao and Qin resorted to defensive strategies, constructing elongated fortresses that served as the precursors of the Great Wall of China. During the Qin Dynasty, the first emperor Qin Shi Huang conscripted thousands of civilian labourers to perfect the Great Wall in order to reinforce military campaigns along the northern border. Han Dynasty China and the nomadic Xiongnu Empire had a very bitter relationship. The Xiongnu were initially a group of steppe tribes kept in check by the"} +{"qid": "test1165", "pid": "7784935", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"Great Wall of China\"\nThere are no surviving historical records indicating the exact length and course of the Qin walls. Most of the ancient walls have eroded away over the centuries, and very few sections remain today. The human cost of the construction is unknown, but it has been estimated by some authors that hundreds of thousands, if not up to a million, workers died building the Qin wall. Later, the Han, the Sui, and the Northern dynasties all repaired, rebuilt, or expanded sections of the Great Wall at great cost to defend themselves against northern invaders. The Tang and Song dynasties did not"} +{"qid": "test1165", "pid": "16243942", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nthe Shanhai Pass, proved popular destinations for these wall watchers. The travelogues of the later 19th century in turn further contributed to the elaboration and propagation of the Great Wall myth. Examples of this myth's growth are the false but widespread belief that the Great Wall of China is visible from the Moon or Mars. The Xinhai Revolution in 1911 forced the abdication of the last Qing Emperor Puyi and ended China's last imperial dynasty. The revolutionaries, headed by Sun Yat-sen, were concerned with creating a modern sense of national identity in the chaotic post-imperial era. In contrast to Chinese"} +{"qid": "test1165", "pid": "16243933", "query": "what dynasty completed the great wall of china", "answer": "Qin", "passage": "\"History of the Great Wall of China\"\nthe Great Wall with the failed Maginot Line of the French in World War II. However, independent scholar David Spindler notes that the Wall, being only part of a complex foreign policy, received \"\"disproportionate blame\"\" because it was the most obvious relic of that policy. The usefulness of the Great Wall as a defence line against northern nomads became questionable under the Qing dynasty, since their territory encompassed vast areas inside and outside the wall: China proper, Manchuria, and Mongolia were all under Qing control. So instead, the Great Wall became the means to limit Han Chinese movement into the"} +{"qid": "test1166", "pid": "5129171", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Mario Cuomo", "passage": "\"1984 Democratic National Convention\"\nChairman at the time, Charles T. Manatt, led the convention. Walter Mondale was nominated for President and Geraldine Ferraro was nominated for Vice President. New York Governor Mario Cuomo gave a well-received keynote speech. Mondale's major rivals for the presidential nomination, Senator Gary Hart and Rev. Jesse Jackson, also gave speeches. Jackson's speech referred to the nation as a \"\"quilt\"\" with places for \"\"[t]he white, the Hispanic, the black, the Arab, the Jew, the woman, the Native American, the small farmer, the business person, the environmentalist, the peace activist, the young, the old, the lesbian, the gay, and the disabled\"\"."} +{"qid": "test1166", "pid": "5129172", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Jesse Jackson", "passage": "\"1984 Democratic National Convention\"\nIt was the first time anyone mentioned lesbians and gays in a national convention address. Jackson also attempted to move the party's platform farther to the left at the Convention, but without much success. He did succeed in one instance, concerning affirmative action. \"\"AIDS poster boy\"\" Bobbi Campbell gave a speech at the National March for Lesbian and Gay Rights, dying of AIDS complications a month later. The candidates for U.S. president earned the following numbers of delegates: Jesse Jackson unsuccessfully called for the suspension of the party's electoral rules to give him a number of delegates closer to the"} +{"qid": "test1166", "pid": "1964615", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Mario Cuomo", "passage": "\"Mario Cuomo\"\nDemocratic candidates, Cuomo beat Lehrman 50.91% to 47.48%. Cuomo actively campaigned for Walter Mondale in the 1984 presidential election, and was named on Mondale's list of vice presidential candidates. Geraldine Ferraro was ultimately nominated as his running mate, but Cuomo was chosen to give the keynote speech at the 1984 Democratic National Convention in San Francisco. He vigorously attacked Ronald Reagan's record and policies in a speech that brought him to national attention, most memorably saying: \"\"There is despair, Mr. President, in the faces that you don't see, in the places that you don't visit, in your shining city.\"\" He"} +{"qid": "test1166", "pid": "20814654", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Mario Cuomo", "passage": "\"A Tale of Two Cities (speech)\"\n2015. Most of his obituaries mentioned the address. Hundreds of people subsequently shared YouTube video of it over social media. A Tale of Two Cities (speech) A Tale of Two Cities was a speech delivered by New York Governor Mario Cuomo on July 16, 1984, at the Democratic National Convention in San Francisco, California. Mario Cuomo was elected Governor of New York on a Democratic Party ticket in 1982. In his inaugural address, he constructed Democratic values metaphorically as caring for a family. The speech was well received by members of both the Democratic and Republican parties and displayed Cuomo's"} +{"qid": "test1166", "pid": "20814630", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Mario Cuomo", "passage": "\"A Tale of Two Cities (speech)\"\nA Tale of Two Cities (speech) A Tale of Two Cities was a speech delivered by New York Governor Mario Cuomo on July 16, 1984, at the Democratic National Convention in San Francisco, California. Mario Cuomo was elected Governor of New York on a Democratic Party ticket in 1982. In his inaugural address, he constructed Democratic values metaphorically as caring for a family. The speech was well received by members of both the Democratic and Republican parties and displayed Cuomo's skill as an orator. Throughout his first year as Governor Cuomo supported numerous liberal policies even as conservatism was growing"} +{"qid": "test1166", "pid": "1866426", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Jesse Jackson", "passage": "\"Marion Barry\"\nNashville Student Movement and then serving as the first chairman of the Student Nonviolent Coordinating Committee (SNCC). Barry came to national prominence as mayor of the national capital, the first prominent civil rights activist to become chief executive of a major American city. He gave the presidential nomination speech for Jesse Jackson at the 1984 Democratic National Convention. His celebrity was transformed into international notoriety in January 1990, when he was videotaped during a sting operation smoking crack cocaine and was arrested by Federal Bureau of Investigation (FBI) officials on drug charges. The arrest and subsequent trial precluded Barry from"} +{"qid": "test1166", "pid": "1790858", "query": "who gave a speech to the democratic national convention in 1984", "answer": "Jesse Jackson", "passage": "\"Ron Kovic\"\nat the 1976 Democratic National Convention, seconding the nomination of draft resister Fritz Efaw for Vice President of the United States. \"\"Time\"\" magazine described the scene as one of the few poignant moments of the convention and many in the audience were brought to tears. On July 12, 1977, Kovic was arrested with 191 students and supporters during the Gym protests at Kent State University. In 1979, Ron Kovic gave a speech at The Libertarian National Convention which nominated Ed Clark for President. In 1988, Kovic was a Jesse Jackson delegate to the Democratic National Convention in Atlanta, Georgia. In"} +{"qid": "test1167", "pid": "20267896", "query": "who won women's singles us open 2017", "answer": "Sloane Stephens", "passage": "\"2017 US Open – Women's Singles\"\nfirst player in history to reach the semifinals of the US Open 10 years apart and then do so another 10 years apart (1997, 2007, and 2017). 2017 US Open – Women's Singles Angelique Kerber was the defending champion, but was defeated in the first round by Naomi Osaka. Kerber became the second US Open defending champion to lose in the first round after Svetlana Kuznetsova in 2005. Sloane Stephens won her first Grand Slam title, defeating Madison Keys in the final, 6–3, 6–0. It was the first all-American women's final at the US Open since 2002, and the second"} +{"qid": "test1167", "pid": "20267893", "query": "who won women's singles us open 2017", "answer": "Sloane Stephens", "passage": "\"2017 US Open – Women's Singles\"\n2017 US Open – Women's Singles Angelique Kerber was the defending champion, but was defeated in the first round by Naomi Osaka. Kerber became the second US Open defending champion to lose in the first round after Svetlana Kuznetsova in 2005. Sloane Stephens won her first Grand Slam title, defeating Madison Keys in the final, 6–3, 6–0. It was the first all-American women's final at the US Open since 2002, and the second time in three years that the final featured two first-time Grand Slam singles finalists from the same country. Stephens became the second unseeded woman in the Open"} +{"qid": "test1167", "pid": "14332051", "query": "who won women's singles us open 2017", "answer": "Sloane Stephens", "passage": "\"2010 BNP Paribas Open – Women's Singles\"\n2010 BNP Paribas Open – Women's Singles The 2010 BNP Paribas Open – Women's Singles was the women's singles event of the 2010 BNP Paribas Open, a WTA Premier Mandatory tennis tournament held in March. Vera Zvonareva was the defending champion, but lost in the fourth round to Samantha Stosur. Jelena Janković won in the final against Caroline Wozniacki, 6–2, 6–4. This tournament marked the first WTA main draw appearance of future World No. 3 and US Open Champion Sloane Stephens, who advanced to the second round before losing to Vera Zvonareva. All seeds receive a bye into the second"} +{"qid": "test1167", "pid": "14332052", "query": "who won women's singles us open 2017", "answer": "Sloane Stephens", "passage": "\"2010 BNP Paribas Open – Women's Singles\"\nround. 2010 BNP Paribas Open – Women's Singles The 2010 BNP Paribas Open – Women's Singles was the women's singles event of the 2010 BNP Paribas Open, a WTA Premier Mandatory tennis tournament held in March. Vera Zvonareva was the defending champion, but lost in the fourth round to Samantha Stosur. Jelena Janković won in the final against Caroline Wozniacki, 6–2, 6–4. This tournament marked the first WTA main draw appearance of future World No. 3 and US Open Champion Sloane Stephens, who advanced to the second round before losing to Vera Zvonareva. All seeds receive a bye into the"} +{"qid": "test1168", "pid": "6409673", "query": "what nfl team has the most expensive super bowl ring", "answer": "the New England Patriots", "passage": "\"Super Bowl ring\"\nring for up to 150 rings for the winning team; any additional costs are borne by the team. Most rings are manufactured by memorabilia company Jostens. In 2015, the rings for the New England Patriots reportedly cost $36,500 each, making them the most expensive rings Jostens has ever produced. The winning team can typically present rings to whomever they choose, including usually, but not limited to: players (active roster or injured), coaches, trainers, executives, personnel, and general staff. Some teams have given rings to former players and coaches that were on the team at some point during the season, despite"} +{"qid": "test1168", "pid": "375992", "query": "what nfl team has the most expensive super bowl ring", "answer": "New England Patriots", "passage": "\"Super Bowl\"\nconference champions to determine the NFL's league champion. Currently, the National Football Conference leads the league with 27 wins to 25 wins for the American Football Conference. The Pittsburgh Steelers have the most Super Bowl championship titles, with six. The New England Patriots have the most Super Bowl appearances, with ten. Charles Haley and Tom Brady both have five Super Bowl rings, which is the record for the most rings won by a single player. The day on which the Super Bowl is played, now considered by some as an unofficial American national holiday, is called \"\"Super Bowl Sunday\"\". It"} +{"qid": "test1168", "pid": "6517992", "query": "what nfl team has the most expensive super bowl ring", "answer": "the New England Patriots", "passage": "\"Adam Timmerman\"\nthe 7th round (230th overall) of the 1995 NFL Draft. He played his first four seasons with the Green Bay Packers, making it to two Super Bowls and winning Super Bowl XXXI. After the 1998 season, Timmerman joined the Rams and won another Super Bowl ring in Super Bowl XXXIV. He also made it back to the Super Bowl with the Rams in Super Bowl XXXVI, losing to the New England Patriots. He became the first player in NFL history to ever win and lose a Super Bowl with one team, the Green Bay Packers, and win and lose a"} +{"qid": "test1168", "pid": "4817593", "query": "what nfl team has the most expensive super bowl ring", "answer": "the New England Patriots", "passage": "\"Ray Perkins\"\nvictory over the Oakland Raiders and a berth in Super Bowl V. Perkins went on to win a Super Bowl ring after the Colts beat the Dallas Cowboys in Super Bowl V. Perkins coached in the NFL as an assistant for the New England Patriots (1974–1977) and San Diego Chargers (1978) before becoming head coach of the New York Giants from 1979 to 1982. Although he only had one winning season, he helped build the team that his successor, Bill Parcells, won two Super Bowls in 1986 and 1990. Perkins hired future NFL head coaches Parcells, Bill Belichick and Romeo"} +{"qid": "test117", "pid": "2507567", "query": "when did the name of bombay change to mumbai", "answer": "1995", "passage": "\"Bombay High Court\"\nof Justice and Mercy are atop this building. In 2016, it was announced that the premises of the Bombay High Court would be shifting to Bandra Kurla Complex. The 125th anniversary of the building was marked by the release of a book, commissioned by the Bar Association, called \"\"\"\"The Bombay High Court: The Story of the Building - 1878–2003\"\"\"\" by local historians Rahul Mehrotra and Sharada Dwivedi. Although the name of the city was changed from Bombay to Mumbai in 1995, the Court as an institution did not follow suit and retained the name Bombay High Court. Although, a bill"} +{"qid": "test117", "pid": "258206", "query": "when did the name of bombay change to mumbai", "answer": "1995", "passage": "Mumbai\nisland has been, from remote antiquity, Bomba, or Mamba Dévi, and that she still..., possesses a temple\"\". By the late 20th century, the city was referred to as \"\"Mumbai\"\" or \"\"Mambai\"\" in Marathi, Konkani, Gujarati, Kannada and Sindhi, and as \"\"Bambai\"\" in Hindi. The Government of India officially changed the English name to \"\"Mumbai\"\" in November 1995. This came at the insistence of the Marathi nationalist Shiv Sena party, which had just won the Maharashtra state elections, and mirrored similar name changes across the country and particularly in Maharashtra. According to \"\"Slate\"\" magazine, \"\"they argued that 'Bombay' was a corrupted"} +{"qid": "test1170", "pid": "19186179", "query": "who is the owner of phoenix mall in chennai", "answer": "Phoenix Mills Limited", "passage": "\"Phoenix Marketcity (Pune)\"\nPhoenix Marketcity (Pune) Phoenix Market City is a shopping mall developed by Phoenix Mills Limited located in Pune, Maharashtra. It was opened in January 2011 and is one of the largest malls in India, with the area of 3.4 million square feet. It is located in the Vimannagar area of Pune. Phoenix Market City has four floors of retail space and several features such as a retail zone, a food court with fine dining restaurants and quick service restaurants, and a nine-screen PVR Cinemas. The food court at the mall has several options. Multinational companies for clothing and style are"} +{"qid": "test1170", "pid": "19186180", "query": "who is the owner of phoenix mall in chennai", "answer": "Phoenix Mills Limited", "passage": "\"Phoenix Marketcity (Pune)\"\nAdidas, Puma, Zara, Nike, Jack&Jones Tommy Hilfiger etc. The mall also consists of Reliance Trends, Reliance Digital and others Phoenix Marketcity (Pune) Phoenix Market City is a shopping mall developed by Phoenix Mills Limited located in Pune, Maharashtra. It was opened in January 2011 and is one of the largest malls in India, with the area of 3.4 million square feet. It is located in the Vimannagar area of Pune. Phoenix Market City has four floors of retail space and several features such as a retail zone, a food court with fine dining restaurants and quick service restaurants, and a"} +{"qid": "test1171", "pid": "16675792", "query": "a request to the supreme court that it review a case that was already decided is made via a(n)", "answer": "a writ of certiorari", "passage": "\"LGBT adoption in the United States\"\nparental rights and to allow her to see her children during the appeals process. On December 14, the Supreme Court granted her request for a stay of the ruling pending their disposition of V.L.'s petition for a writ of certiorari. This is the first adoption case that has made it to the Supreme Court since \"\"Obergefell\"\" was decided. On March 7, 2016, the United States Supreme Court unanimously reversed the Supreme Court of Alabama. The court ruled that the Alabama Supreme Court was incorrect when it refused to recognize the adoption decree from Georgia, ruling that the Full Faith and"} +{"qid": "test1171", "pid": "4771512", "query": "a request to the supreme court that it review a case that was already decided is made via a(n)", "answer": "writ of certiorari", "passage": "\"Florida District Courts of Appeal\"\naffirmed without comment by the district courts cannot be appealed to the Supreme Court, even as a request for discretionary review. Such a case may be reviewed by the United States Supreme Court pursuant to a petition for writ of certiorari. Cases involving the death penalty are heard directly and automatically by the Florida Supreme Court, bypassing the District Courts of Appeal. Florida District Courts of Appeal The Florida District Courts of Appeal (DCAs) are the intermediate appellate courts of the Florida state court system. There are five DCAs: The District Courts of Appeal were created by the Florida Legislature"} +{"qid": "test1172", "pid": "17175731", "query": "when did the usa join world war one", "answer": "April 1917", "passage": "\"United States Army World War I Flight Training\"\nUSA joined World War I in April 1917. In February 1913, the Aviation School contingent in Augusta, Georgia, along with two pilots who had been training in Palm Beach, Florida, transferred to Texas City, Texas, to join ground forces on duty along the border. This meant that the Army Aviation school was concentrated on North Island, San Diego. When the United States entered World War I, the exhausted British and French forces wanted American troops in the trenches of the Western Front as soon as possible. By 1917, aerial warfare was also considered key to the success of the ground"} +{"qid": "test1173", "pid": "719931", "query": "where does the red badge of courage take place", "answer": "the field of battle", "passage": "\"The Red Badge of Courage\"\nThe Red Badge of Courage The Red Badge of Courage is a war novel by American author Stephen Crane (1871–1900). Taking place during the American Civil War, the story is about a young private of the Union Army, Henry Fleming, who flees from the field of battle. Overcome with shame, he longs for a wound, a \"\"red badge of courage,\"\" to counteract his cowardice. When his regiment once again faces the enemy, Henry acts as standard-bearer, who carries a flag. Although Crane was born after the war, and had not at the time experienced battle first-hand, the novel is known"} +{"qid": "test1174", "pid": "13949103", "query": "who sings don't take your guns to town", "answer": "Johnny Cash", "passage": "\"Don't Take Your Guns to Town\"\ntime. The song tells the story of a young cowboy who, ignoring the titular advice from his mother, gets into a gunfight at a saloon and is killed. During an early-1990s guest appearance on the children's program \"\"Sesame Street\"\", Cash performed a version of this song with new child-friendly lyrics titled \"\"Don't Take Your Ones to Town\"\". Don't Take Your Guns to Town \"\"Don't Take Your Guns to Town\"\" is a 1958 single by Johnny Cash. The single was his fifth release to reach the number one position on the country chart, where it stayed for six weeks. \"\"Don't Take"} +{"qid": "test1174", "pid": "13949102", "query": "who sings don't take your guns to town", "answer": "U2", "passage": "\"Don't Take Your Guns to Town\"\nDon't Take Your Guns to Town \"\"Don't Take Your Guns to Town\"\" is a 1958 single by Johnny Cash. The single was his fifth release to reach the number one position on the country chart, where it stayed for six weeks. \"\"Don't Take Your Guns to Town\"\" was also a crossover hit peaking at number thirty-two on the pop chart. The song is also included in the live album \"\"\"\". The song was covered by U2 on their 2001 single \"\"Elevation\"\". Members of the Western Writers of America chose it as one of the Top 100 Western songs of all"} +{"qid": "test1174", "pid": "8267197", "query": "who sings don't take your guns to town", "answer": "Johnny Cash", "passage": "\"Charlie Robison\"\nAntonio, Texas with former MLB player Brooks Kieschnick. On 9/24/2018 Charlie announced that his singing career was over due to voice surgery that could not correct an unannounced medical issue. Robison married Emily Erwin of The Dixie Chicks at the Cibolo Creek Ranch in May 1999. They have three children together: Charles Augustus, called \"\"Gus\"\", born November 11, 2002, and twins Julianna Tex and Henry Benjamin, born on April 14, 2005. Charlie and Emily divorced on August 6, 2008, after nine years of marriage. He appeared on \"\"Kindred Spirits: A tribute to Johnny Cash\"\", singing \"\"Don't Take Your Guns to"} +{"qid": "test1174", "pid": "8621732", "query": "who sings don't take your guns to town", "answer": "Johnny Cash", "passage": "\"The Unissued Johnny Cash\"\nsong \"\"I'll Be All Smiles Tonight\"\" is an outtake from \"\"Blood Sweat and Tears\"\". \"\"Viel zu spät\"\" and \"\"Wo ist Zuhause, Mama\"\" are re-recordings in German of hit songs by Cash. At the time \"\"Don't Take Your Guns to Town\"\" and other country songs were seeing success in Germany, so Columbia had Cash record translations of \"\"I Got Stripes\"\" and \"\"Five Feet High and Rising\"\" for a single. This was probably the first time a country singer recorded a song in a foreign language, but would lead to further recordings of songs in German. All songs written by Johnny Cash"} +{"qid": "test1174", "pid": "7063631", "query": "who sings don't take your guns to town", "answer": "Johnny Cash", "passage": "\"Clancy Lowered the Boom\"\nClancy Lowered the Boom \"\"Clancy Lowered the Boom\"\" is a song written by Hy Heath and Johnny Lange in 1947, made famous by Dennis Day on Jack Benny's radio program (\"\"The Jack Benny Program\"\"). The song follows the adventures of an Irish-American stereotype as he \"\"lowers the boom\"\" on any person that gives him \"\"guff\"\". On his \"\"\"\" record with Willie Nelson, Johnny Cash mentions that the melody for his well-known Columbia Records hit \"\"Don't Take Your Guns to Town\"\" was taken from \"\"Clancy Lowered the Boom\"\". It was also recorded by Bing Crosby, and it was Petula Clark's second"} +{"qid": "test1174", "pid": "8351801", "query": "who sings don't take your guns to town", "answer": "Johnny Cash", "passage": "\"The Junkie and the Juicehead Minus Me\"\nThe Junkie and the Juicehead Minus Me The Junkie and the Juicehead Minus Me is the 48th album by country singer Johnny Cash, released in 1974 on Columbia Records. Although credited to Cash alone, the album includes solo performances by his daughters Rosanne Cash and Carlene Carter (the latter credited as Carlene Routh), predating the launch of their own solo careers. Two songs on the album were written by Kris Kristofferson, while \"\"Don't Take Your Guns to Town\"\" is a re-recording of a highly successful Cash single, his first smash hit for Columbia from back in 1958. \"\"Father and Daughter"} +{"qid": "test1174", "pid": "10481961", "query": "who sings don't take your guns to town", "answer": "Johnny Cash", "passage": "\"Johnny Cash\"\nHis single \"\"Don't Take Your Guns to Town\"\" became one of his biggest hits, and he recorded a collection of gospel songs for his second album for Columbia. However, Cash left behind a sufficient backlog of recordings with Sun that Phillips continued to release new singles and albums from them, featuring previously unreleased material until as late as 1964. Cash was in the unusual position of having new releases out on two labels concurrently. Sun's 1960 release, a cover of \"\"Oh Lonesome Me\"\", made it to number 13 on the C&W charts. Early in his career, Cash was given the"} +{"qid": "test1175", "pid": "111481", "query": "5 cities with the highest population in europe", "answer": "London", "passage": "Europe\nare recognised political goals in Europe today. The Council of Europe Framework Convention for the Protection of National Minorities and the Council of Europe's European Charter for Regional or Minority Languages set up a legal framework for language rights in Europe. The four most populous cities of Europe are Istanbul, Moscow, Paris and London, each have over 10 million residents, and as such have been described as megacities. While Istanbul has the highest total population, one third lies on the Asian side of the Bosporus, making Moscow the most populous city entirely in Europe. The next largest cities in order"} +{"qid": "test1175", "pid": "639450", "query": "5 cities with the highest population in europe", "answer": "London", "passage": "\"North West England\"\nethnic group. North West England is a very diverse region, with Manchester and Liverpool amongst the most diverse cities in Europe. 19.4% of Blackburn with Darwen's population are Muslim, the third-highest among all local authorities in the United Kingdom and the highest outside London. Areas such as Moss Side in Greater Manchester are home to a 30%+ Black British population. In contrast, the town of St. Helens in Merseyside, unusually for a city area, has a very low percentage of ethnic minorities with 98% identifying as White British. The City of Liverpool, over 800 years old, is one of the"} +{"qid": "test1175", "pid": "6652954", "query": "5 cities with the highest population in europe", "answer": "Moscow", "passage": "Istanbul\nroughly equivalent to the agglomeration. Today, it forms one of the largest urban agglomerations in Europe, alongside Moscow. The city's annual population growth of ranks as the highest among the seventy-eight largest metropolises in the Organisation for Economic Co-operation and Development. The high population growth mirrors an urbanization trend across the country, as the second and third fastest-growing OECD metropolises are the Turkish cities of İzmir and Ankara. Istanbul experienced especially rapid growth during the second half of the 20th century, with its population increasing tenfold between 1950 and 2000. This growth in population comes, in part, from an expansion"} +{"qid": "test1175", "pid": "14644051", "query": "5 cities with the highest population in europe", "answer": "Moscow", "passage": "\"History of Chișinău\"\n1820s, was designed by Alexander Opekushin and erected in 1885, making Chişinău the second city after Moscow to have a Pushkin monument. Originally funded by the Chişinău inhabitants, it is the oldest surviving monument in the city. In the late 19th century, especially due to growing anti-Semitic sentiment in the Russian Empire and better economic conditions, many Jews chose to settle in Chişinău. Its population had grown to 92,000 by 1862 and to 125,787 by 1900. By the year 1900, 43% of the population of Chişinău was Jewish – one of the highest numbers in Europe. A large anti-Semitic riot"} +{"qid": "test1175", "pid": "627011", "query": "5 cities with the highest population in europe", "answer": "London", "passage": "Megacity\nof up to one million people. From around 1825 to 1918 London was the largest city in the world, with the population growing rapidly; it was the first city to reach a population of over 5 million in 1900. In 1950, New York City was the only urban area with a population of over 10 million. Geographers had identified 25 such areas as of October 2005, as compared with 19 megacities in 2004 and only nine in 1985. This increase has happened as the world's population moves towards the high (75–85%) urbanization levels of North America and Western Europe. Since"} +{"qid": "test1176", "pid": "10260636", "query": "who is the young man in hawthorne's my kinsman major molineux", "answer": "Robin", "passage": "\"My Kinsman, Major Molineux\"\nMy Kinsman, Major Molineux \"\"My Kinsman, Major Molineux\"\" is a short story written by American author Nathaniel Hawthorne in 1831. It first appeared in the 1832 edition of \"\"The Token and Atlantic Souvenir\"\", published by Samuel Goodrich. It later appeared in \"\"The Snow-Image, and Other Twice-Told Tales\"\", a collection of short stories by Hawthorne published in 1852 by Ticknor, Reed & Fields. The story exemplifies the darkest times of American development. In about 1732, Robin, a youth, arrives by ferry in Boston seeking his kinsman, Major Molineux, an official in the British Colonial government, who has promised him work. Yet"} +{"qid": "test1176", "pid": "10260638", "query": "who is the young man in hawthorne's my kinsman major molineux", "answer": "Robin", "passage": "\"My Kinsman, Major Molineux\"\nsoon pass by. He waits at the spot on the steps of a church where he is greeted by the first polite gentleman he has met all night. Soon, the two men hear the roar of an approaching mob. At its head is the man with the red and black face and in its midst is Major Molineux, tarred and feathered. The crowd is in an uproar, and everyone is laughing. Soon, so is young Robin, as his eyes meet those of the Major, who knows him right away. Disillusioned, the youth asks the gentleman the way back to the"} +{"qid": "test1176", "pid": "16275633", "query": "who is the young man in hawthorne's my kinsman major molineux", "answer": "Robin", "passage": "\"The Old Glory\"\nRobert Brustein writes, \"\"In \"\"Endecott and the Red Cross\"\", a mild-mannered Puritan military man, faced with high-living Anglican-Royalists in colonial America, is forced into shedding blood by political-religious expediency.\"\" The characters in this play include Major Molineux, Colonel Greenough, Robin, and Robin's brother. The play is set in Boston, just as the American Revolution is about to erupt. In his introduction to the published play, Robert Brustein writes, \"\"in \"\"My Kinsman, Major Molineux\"\", the American Revolution unfolds as a violent nightmare experienced by two Deerfield youths seeking out their British cousin in Boston, 'the city of the dead'.\"\" Lowell's version"} +{"qid": "test1178", "pid": "9080565", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"Gun violence in the United States\"\ncount four victims injured as a mass shooting—thus producing much higher figures. Handguns figured in the Virginia Tech massacre, Binghamton shootings, 2009 Fort Hood shooting, Oikos University shooting, and 2011 Tucson shooting. The Aurora theater shooting and the Columbine High School massacre were committed by assailants armed with multiple weapons. AR-15 style rifles have been used in a number of the deadliest mass shooting incidents, and have come to be widely characterized as the weapon of choice for perpetrators of mass shootings. In recent years, the number of public mass shootings has increased substantially, with a steady increase in gun"} +{"qid": "test1178", "pid": "16663725", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"2012 Aurora shooting\"\nJuly 19, 2018, one day before the sixth anniversary of the attack. It consists of a park-like dell with 83 abstract birds, one for each victim. Thirteen of the birds, with translucent wings, are on a center column and represent the twelve dead and the unborn child. The memorial, titled \"\"Ascentiate,\"\" was designed by artist Douwe Blumberg. Maps of crime scene Raw audio Photos 2012 Aurora shooting On July 20, 2012, a mass shooting occurred inside a Century 16 movie theater in Aurora, Colorado, during a midnight screening of the film \"\"The Dark Knight Rises\"\". Dressed in tactical clothing, James"} +{"qid": "test1178", "pid": "16663686", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"2012 Aurora shooting\"\noccurred in Theater 9 at the Century 16 multiplex (operated by Cinemark), located at the Town Center at Aurora shopping mall at 14300 E. Alameda Avenue. Police said Holmes bought a ticket, entered the theater, and sat in the front row. About 20 minutes into the film, he left theater 9 through an emergency exit door beside the movie screen, with direct access to the lightly used parking area at the back of the complex, while propping the door slightly open with a plastic tablecloth holder. There were about 400 people inside theater 9. Holmes then went to his car,"} +{"qid": "test1178", "pid": "16664477", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"James Holmes (mass murderer)\"\nJames Holmes (mass murderer) James Eagan Holmes (born December 13, 1987) is an American convicted murderer responsible for the 2012 Aurora shooting in which he killed 12 people and injured 70 others at a Century 16 movie theater in Aurora, Colorado on July 20, 2012. He had no known criminal background before the shooting occurred. Holmes booby-trapped his apartment with explosives before the shooting, which were defused one day later by a bomb squad. Holmes was arrested shortly after the shooting and was jailed without bail while awaiting trial. Following this, he was hospitalized after attempting suicide several times while"} +{"qid": "test1178", "pid": "16663690", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"2012 Aurora shooting\"\nsomeone yelled that someone was shooting in the lobby. Holmes fired 76 shots in the theater: six from the shotgun, 65 from the semi-automatic rifle, and five from the .40-caliber handgun. The first phone calls to emergency services via 9-1-1 were made at 12:39 a.m. Police arrived within 90 seconds and found three .40-caliber handgun magazines, a shotgun, and a large drum magazine on the floor of the theater. Some people reported the shooting via Twitter or text messaging rather than calling the police; officers were already at the theater by the time that tweets had been sent. Ambulances were"} +{"qid": "test1178", "pid": "16664520", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"James Holmes (mass murderer)\"\nwith other inmates. As a result of the attack, he was secretly transferred to an undisclosed location out of the state. According to the inmate locator on the Federal Bureau of Prisons website, Holmes is currently incarcerated at USP Allenwood in Gregg Township, Union County, Pennsylvania. James Holmes (mass murderer) James Eagan Holmes (born December 13, 1987) is an American convicted murderer responsible for the 2012 Aurora shooting in which he killed 12 people and injured 70 others at a Century 16 movie theater in Aurora, Colorado on July 20, 2012. He had no known criminal background before the shooting"} +{"qid": "test1178", "pid": "16663696", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"2012 Aurora shooting\"\neyes were irritated by the tear gas grenades, while eight others injured themselves while fleeing the theater. The massacre was the deadliest shooting in Colorado since the Columbine High School massacre on April 20, 1999. Ten victims died at the scene and two more were pronounced in local hospitals. Four men Jonathan Blunk, John Larimer, Matt McQuinn, and Alexander Teves died protecting their girlfriends. Gordon Cowden died saving the lives of his two teenage daughters. The dead were: The injured were treated at Children's Hospital Colorado, Denver Health Medical Center, The Medical Center of Aurora, Parker Adventist Hospital, Rose Medical"} +{"qid": "test1178", "pid": "15636364", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"Mass shooting\"\nAustralia has had two mass shootings with 5 or more deaths since 1996, however these shootings involved family members. Notable mass shootings in New Zealand include the 1990 Aramoana massacre. After mass shootings, some survivors have written about their experiences and their experiences have been covered by journalists. A survivor of the Knoxville Unitarian Universalist church shooting wrote about his reaction to other mass shooting incidents. The father of a victim in a mass shooting at a movie theater in Aurora, Colorado, wrote about witnessing other mass shootings after the loss of his son. The survivors of the 2011 Norway"} +{"qid": "test1178", "pid": "16663684", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"2012 Aurora shooting\"\ndeadliest shooting in Colorado since the Columbine High School massacre in 1999. Holmes was arrested in his car outside the cinema minutes later. He had earlier rigged his apartment with homemade explosives and incendiary devices, which were defused by the Arapahoe County Sheriff's Office Bomb Squad a day after the shooting. The shooting prompted an increase in security at movie theaters across the U.S. that were screening the same film, in fear of copycat crimes. It led to a spike in gun sales in Colorado and political debates about gun control in the United States. Holmes confessed to the shooting"} +{"qid": "test1178", "pid": "14255871", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"Crime in Colorado\"\nCrime in Colorado This article describes crime in the U.S. state of Colorado. In 2011, there were 151,125 crimes reported in Colorado. In 2008, there were 158,236 crimes reported in Colorado, including 156 murders, 141,107 property crimes, and 2,094 rapes. Capital punishment is applied in this state. Two of the country's largest mass shootings have occurred in Colorado: The Columbine High School massacre in 1999 and the Aurora movie theater massacre in 2012. Both of these shootings resulted in national and international outrage and mourning. Other notable mass shootings in Colorado include the Colorado YWAM and New Life shootings in"} +{"qid": "test1178", "pid": "17770970", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"John Lanigan (radio)\"\n(Large Market Station of the Year in 1998 and 2003, and Oldies Station of the Year in 2002, 2004, and 2006). Lanigan also is well known in Cleveland for his television work, as in conjunction with his radio shows, he was host of the daily afternoon \"\"Prize Movie\"\" on WUAB channel 43 during the '70s through the early '90s (with a hiatus when he was in Tampa). During his show on July 20, 2012, as the news was breaking about the Aurora theater shootings, Lanigan reported that it was his son Jad, a Lieutenant in the Aurora, Colorado police department,"} +{"qid": "test1178", "pid": "11344398", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"Santikos Theatres\"\nat a San Antonio Police Department patrol car. The suspect was taken to a hospital but was not immediately charged. The shooting immediately sparked fears of a mass shooting as the incident appeared to be similar to the 2012 Aurora shooting, however no one was killed and only two people were wounded. The suspect was taken into custody. Santikos Theatres Santikos Entertainment is a movie theater chain based in San Antonio, Texas, USA. The company was started by Louis Santikos, a Greek entrepreneur, who had moved to Texas and immediately opened nickelodeons in the city in the early 1900s. His"} +{"qid": "test1178", "pid": "1026802", "query": "what theater number was the aurora shooting in", "answer": "9", "passage": "\"Aurora, Colorado\"\nvoters created the City and County of Denver in 1902 and the City and County of Broomfield in 2001. A consolidated city and county of Aurora would likely include areas not within the current city limits, but the new city-county boundaries would be set, restricting future expansion. In 2008, Aurora was designated an All-America City by the National Civic League. In 2017, the Republic of El Salvador opened a consulate in Aurora, serving Colorado, Kansas, Nebraska, and Wyoming. On July 20, 2012, Aurora was the site of the third largest mass shooting in terms of number of casualties in United"} +{"qid": "test1179", "pid": "5053550", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Benjamin Stone (Law & Order character)\"\nBenjamin Stone (Law & Order character) Benjamin \"\"Ben\"\" Stone is a fictional character portrayed by Michael Moriarty in the TV drama \"\"Law & Order\"\". He was the Executive Assistant District Attorney for New York County until his resignation at the end of season four. He appeared in 88 episodes. Stone works in the Manhattan District Attorney's office under Alfred Wentworth (in the pilot episode) and Adam Schiff. He was raised in an Irish Catholic family. He was raised mostly by his Irish grandmother, his father having been an alcoholic. Stone is divorced and has a son, Peter Stone, who was"} +{"qid": "test1179", "pid": "5964411", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Law & Order (season 4)\"\nLaw & Order (season 4) The fourth season of \"\"Law & Order\"\" aired on NBC between September 15, 1993, and May 25, 1994. This is the final season to feature Michael Moriarty as Ben Stone. It is also the first season to include a shorter opening sequence and theme (at 46 seconds), which would be used for the remainder of the series' run. Season four was released on DVD December 6, 2005. There were two cast changes from season 3: This was the first time women played any of the \"\"Law and Order\"\" 's six major characters: both roles would"} +{"qid": "test1179", "pid": "5053557", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Benjamin Stone (Law & Order character)\"\ndebate Senator Kent Conrad, he was replaced by FCC chairman Reed Hundt. Both appearances were scheduled to air on January 26, 1994. Moriarty submitted his resignation to producer Dick Wolf on January 25, 1994, and his departure was written into the series. Benjamin Stone (Law & Order character) Benjamin \"\"Ben\"\" Stone is a fictional character portrayed by Michael Moriarty in the TV drama \"\"Law & Order\"\". He was the Executive Assistant District Attorney for New York County until his resignation at the end of season four. He appeared in 88 episodes. Stone works in the Manhattan District Attorney's office under"} +{"qid": "test1179", "pid": "3623938", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Michael Moriarty\"\nof Korean Air Lines flight 007 in 1983. He portrayed U.S. Air Force Major Hank Daniels, who was largely ignored if not ridiculed for showing how the ill-fated airliner had strayed off course into airspace known by the Soviets to be used by U.S. Air Force electronic surveillance planes as they approached Soviet airspace. From 1990 to 1994, Moriarty starred as Ben Stone on \"\"Law & Order\"\". He left the show in 1994, alleging that his departure was a result of his threatening a lawsuit against then-Attorney General Janet Reno, who had cited \"\"Law & Order\"\" as offensively violent. Moriarty"} +{"qid": "test1179", "pid": "15471447", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Manhood (Law & Order)\"\nto protect\"\". Stone counters that homophobia is no more acceptable than hatred based on race, nationality, religion or politics, and that police officers who allow their own prejudices to interfere with their duties should be held accountable. Nevertheless, the jury acquits the defendants. Co-writer Robert Nathan credits Michael Moriarty with inspiring the strength of his character Ben Stone's closing argument. Moriarty felt that the original summation was weak and suggested that Stone should deliver a variation on Martin Niemöller's famous First they came ... statement, relating the defendants' hatred for gay people to hatred for other groups that might include"} +{"qid": "test1179", "pid": "3623940", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Michael Moriarty\"\nHollywood trade magazine, calling upon fellow artists to stand up with him against attempts to censor TV show content. He subsequently wrote and published \"\"The Gift of Stern Angels\"\", his account of this time in his life. The character of Ben Stone has yet to reappear on the franchise. The February 7, 2018, episode of \"\"\"\" opens with Sam Waterston's character of Jack McCoy delivering a eulogy at Ben Stone's funeral. Wolf and others working on \"\"Law & Order\"\" tell a different story, however. On November 18, 1993, Moriarty and Wolf, along with other television executives, met with Reno to"} +{"qid": "test1179", "pid": "1483912", "query": "who played ben stone son on law and order", "answer": "Michael Moriarty", "passage": "\"Law & Order\"\nas Captain Donald Cragen. On the prosecutor's side, Michael Moriarty was Dick Wolf's choice to play Executive Assistant District Attorney Benjamin \"\"Ben\"\" Stone. The network, however, preferred James Naughton, but, in the end, Wolf's choice would prevail, and Moriarty received the role. As his ADA, Richard Brooks and Eriq La Salle were being considered for the role of Paul Robinette. The network favored La Salle but, once again, the producers' choice prevailed, and Brooks received the role. As their boss, Roy Thinnes was cast as District Attorney Alfred Wentworth. Nearly two years passed between the pilot and production of the"} +{"qid": "test118", "pid": "1512658", "query": "where does the formation of atp take place", "answer": "inner mitochondrial membrane", "passage": "\"ATP synthase\"\nchain as a source of energy. The overall process of creating energy in this fashion is termed oxidative phosphorylation. The same process takes place in the mitochondria, where ATP synthase is located in the inner mitochondrial membrane and the F-part projects into mitochondrial matrix. The consumption of ATP by ATP-synthase pumps proton cations into the matrix. The evolution of ATP synthase is thought to have been modular whereby two functionally independent subunits became associated and gained new functionality. This association appears to have occurred early in evolutionary history, because essentially the same structure and activity of ATP synthase enzymes are"} +{"qid": "test118", "pid": "1512663", "query": "where does the formation of atp take place", "answer": "thylakoid membrane", "passage": "\"ATP synthase\"\nis integrated into thylakoid membrane; the CF-part sticks into stroma, where dark reactions of photosynthesis (also called the light-independent reactions or the Calvin cycle) and ATP synthesis take place. The overall structure and the catalytic mechanism of the chloroplast ATP synthase are almost the same as those of the bacterial enzyme. However, in chloroplasts, the proton motive force is generated not by respiratory electron transport chain but by primary photosynthetic proteins. The ATP synthase isolated from bovine (\"\"Bos taurus\"\") heart mitochondria is, in terms of biochemistry and structure, the best-characterized ATP synthase. Beef heart is used as a source for"} +{"qid": "test1180", "pid": "1450813", "query": "who sang the them song for as told by ginger", "answer": "Macy Gray", "passage": "\"Macy Gray\"\nPoker Showdown\"\", playing for Habitat for Humanity. She finished in third place. In 2002, she was the voice for Seeiah Owens in the video game \"\"SSX Tricky\"\". Gray sang the theme song for the Nickelodeon animated series \"\"As Told by Ginger\"\", composed by Jared Faber and Emily Kapnek. Gray also performed the song on the short-lived UPN romantic comedy \"\"Second Time Around\"\" starring Boris Kodjoe and Nicole Ari Parker in 2004. In August 2008, Gray headlined at the 2008 Summer Sundae music festival in Leicester, England, performing cover versions of Rod Stewart's \"\"Do Ya Think I'm Sexy?\"\", Deee-Lite's \"\"Groove Is"} +{"qid": "test1180", "pid": "2180136", "query": "who sang the them song for as told by ginger", "answer": "Cree Summer", "passage": "\"As Told by Ginger\"\nand often includes her in her social plans. She is intrigued by her \"\"gingerisms\"\", as Courtney calls them. However, Miranda Killgallen (Cree Summer), Courtney's right-hand woman, makes sure that she is not bumped down from her position thanks to Ginger. At home, Ginger records her lively adventures in her diary. Her little brother, Carl (Jeannie Elias), is often scheming with Robert-Joseph \"\"Hoodsey\"\" Bishop (Tress MacNeille) in his own side plots, and her mother, Lois (Laraine Newman), is always there for advice to which Ginger is always open to listen. The series takes place in the fictional suburban town of Sheltered"} +{"qid": "test1181", "pid": "9010526", "query": "where is dia de los muertos celebrated in mexico", "answer": "October 31", "passage": "\"Pan de muerto\"\nPan de muerto ' (), also called ' in Mexico, is a type of pan dulce traditionally baked in Mexico during the weeks leading up to the Día de Muertos, which is celebrated from October 31st to November 2nd. It is a sweetened soft bread shaped like a bun, often decorated with bone-shaped phalange pieces. Pan de muerto is eaten on Día de Muertos, at the gravesite or alternatively, at a tribute called an ofrenda. In some regions, it is eaten for months before the official celebration of Dia de Muertos. In Oaxaca, pan de muerto is the same bread"} +{"qid": "test1181", "pid": "18358691", "query": "where is dia de los muertos celebrated in mexico", "answer": "October 31", "passage": "\"CMLL Super Viernes (October 2014)\"\nand saw Hechicero and Guerrero Maya, Jr. square off on several occasions, possibly sowing the seeds for a future storyline. The October 31, 2014 \"\"Super Viernes\"\" show was the first of Mexican professional wrestling promotion Consejo Mundial de Lucha Libre's \"\"Dia de los Muertos\"\" (\"\"Day of the Dead\"\") celebrations and included six matches in total. As part of their \"\"Dia de los Muerte\"\" celebrations CMLL will admit all kids in costumes for free for this specific show. CMLL will hold a second \"\"Dia de los Muerte\"\" celebration on Sunday November 2, both will include the \"\"Edcanes\"\", CMLL's ring girls and"} +{"qid": "test1183", "pid": "20428451", "query": "who wrote the country song i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (film)\"\nI Can Only Imagine (film) I Can Only Imagine is a 2018 American Christian drama film directed by the Erwin Brothers and written by Alex Cramer, Jon Erwin, and Brent McCorkle, based on the story behind the MercyMe song of the same name, the best-selling Christian single of all time. The film stars J. Michael Finley as Bart Millard, the lead singer who wrote the song about his relationship with his father (Dennis Quaid). Madeline Carroll, Priscilla Shirer, Cloris Leachman, Trace Adkins and Brody Rose also star. \"\"I Can Only Imagine\"\" was released in the United States on March 16,"} +{"qid": "test1183", "pid": "20428465", "query": "who wrote the country song i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (film)\"\n1 film in DVD sales and rentals for the week ending June 16, 2018. I Can Only Imagine (film) I Can Only Imagine is a 2018 American Christian drama film directed by the Erwin Brothers and written by Alex Cramer, Jon Erwin, and Brent McCorkle, based on the story behind the MercyMe song of the same name, the best-selling Christian single of all time. The film stars J. Michael Finley as Bart Millard, the lead singer who wrote the song about his relationship with his father (Dennis Quaid). Madeline Carroll, Priscilla Shirer, Cloris Leachman, Trace Adkins and Brody Rose also"} +{"qid": "test1183", "pid": "6196123", "query": "who wrote the country song i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nI Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and included on their 2001 major-label debut album \"\"Almost There\"\" as"} +{"qid": "test1183", "pid": "6196145", "query": "who wrote the country song i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nDennis Quaid. The film was released on March 16, 2018. I Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and"} +{"qid": "test1183", "pid": "6196138", "query": "who wrote the country song i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nand guitar. But what makes the song are the lyrics, penned by Bart Millard himself. The song speaks about that day that we all dream about when we finally meet Jesus... It's a song that can't be listened to with eyes open\"\". \"\"I Can Only Imagine\"\" debuted on the \"\"Billboard\"\" Hot 100 for the chart week of 11 October 2003 at No. 76. The song peaked at No. 71 for two weeks and spent 16 non-consecutive weeks on the Hot 100. On the Adult Contemporary chart, \"\"I Can Only Imagine\"\" debuted at No. 29 for the chart week of 23"} +{"qid": "test1183", "pid": "6196125", "query": "who wrote the country song i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nImagine\"\" earned the Dove Awards for 'Pop/Contemporary Recorded Song of the Year' and 'Song of the Year'; Millard earned the Dove Award 'Songwriter of the Year' at the same ceremony. With 200 million copies sold, it is the best-selling Christian single of all time, having been certified 3x platinum by the RIAA. As of 2018, it is the only Christian song to reach that milestone. \"\"I Can Only Imagine\"\" was the debut single for United States contemporary Christian and Christian rock band MercyMe. Bart Millard, the band's vocalist, lost his father, Arthur Wesley Millard Jr., in 1991. Millard was 18"} +{"qid": "test1185", "pid": "12655597", "query": "the first line of http request message is called ____", "answer": "status line", "passage": "\"HTTP message body\"\nHTTP message body HTTP Message Body is the data bytes transmitted in an HTTP transaction message immediately following the headers if there are any (in the case of HTTP/0.9 no headers are transmitted). The request/response message consists of the following: The request/status line and headers must all end with (that is, a carriage return followed by a line feed). The empty line must consist of only and no other whitespace. The \"\"optional HTTP message body data\"\" is what this article defines. This could be a response from the web server: The message body (or content) in this example"} +{"qid": "test1185", "pid": "12655598", "query": "the first line of http request message is called ____", "answer": "status line", "passage": "\"HTTP message body\"\nis the text \"\"Hello world!\"\". HTTP message body HTTP Message Body is the data bytes transmitted in an HTTP transaction message immediately following the headers if there are any (in the case of HTTP/0.9 no headers are transmitted). The request/response message consists of the following: The request/status line and headers must all end with (that is, a carriage return followed by a line feed). The empty line must consist of only and no other whitespace. The \"\"optional HTTP message body data\"\" is what this article defines. This could be a response from the web server: The message body"} +{"qid": "test1185", "pid": "174934", "query": "the first line of http request message is called ____", "answer": "status line", "passage": "\"Hypertext Transfer Protocol\"\ntransactions. An HTTP client initiates a request by establishing a Transmission Control Protocol (TCP) connection to a particular port on a server (typically port 80, occasionally port 8080; see List of TCP and UDP port numbers). An HTTP server listening on that port waits for a client's request message. Upon receiving the request, the server sends back a status line, such as \"\"HTTP/1.1 200 OK\"\", and a message of its own. The body of this message is typically the requested resource, although an error message or other information may also be returned. HTTP provides multiple authentication schemes such as basic"} +{"qid": "test1185", "pid": "174949", "query": "the first line of http request message is called ____", "answer": "A request line", "passage": "\"Hypertext Transfer Protocol\"\nby a line feed character). The empty line must consist of only and no other whitespace. In the HTTP/1.1 protocol, all header fields except \"\"Host\"\" are optional. A request line containing only the path name is accepted by servers to maintain compatibility with HTTP clients before the HTTP/1.0 specification in . The response message consists of the following: The status line and other header fields must all end with . The empty line must consist of only and no other whitespace. This strict requirement for is relaxed somewhat within message bodies for consistent use of other system"} +{"qid": "test1186", "pid": "2499708", "query": "when did the battle of badr take place", "answer": "13 March 624", "passage": "\"Battle of Badr\"\nKargil War. Iranian offensive operations against Iraq in the late 1980s were also named after Badr. During the 2011 Libyan civil war, the rebel leadership stated that they selected the date of the assault on Tripoli to be the 20th of Ramadan, marking the anniversary of the Battle of Badr. The Battle of Badr was featured in the 1976 film \"\"The Message\"\", the 2004 animated movie \"\"\"\", and the 2012 TV series \"\"Omar\"\". Battle of Badr The Battle of Badr (), fought on Tuesday, 13 March 624 CE (17 Ramadan, 2 AH in the Islamic calendar) in the Hejaz region"} +{"qid": "test1186", "pid": "2499676", "query": "when did the battle of badr take place", "answer": "13 March 624", "passage": "\"Battle of Badr\"\nBattle of Badr The Battle of Badr (), fought on Tuesday, 13 March 624 CE (17 Ramadan, 2 AH in the Islamic calendar) in the Hejaz region of western Arabia (present-day Saudi Arabia), was a key battle in the early days of Islam and a turning point in Muhammad's struggle with his opponents among the Quraish in Mecca. The battle has been passed down in Islamic history as a decisive victory attributable to divine intervention, or by secular sources to the strategic genius of Muhammad. It is one of the few battles specifically mentioned in the Quran. All knowledge of"} +{"qid": "test1187", "pid": "966947", "query": "who is the captain of richmond football club", "answer": "Trent Cotchin", "passage": "\"Richmond Football Club\"\nplaying home since 1965. Richmond traditionally wears a black guernsey with a yellow sash. The club is coached by Damien Hardwick and its current captain is Trent Cotchin. Five Richmond players have been inducted into the Australian Football Hall of Fame as \"\"Legends\"\" of the sport: Kevin Bartlett, Jack Dyer, Royce Hart, Kevin Sheedy and Ian Stewart. A short-lived football club named Richmond Cricketers was established in 1860 with T.W.S. Wills, Tom Wills, one of the founders of Australian rules football, serving as its inaugural secretary and captain. Wills' cousin H. C. A. Harrison captained Richmond briefly in the early"} +{"qid": "test1187", "pid": "11213808", "query": "who is the captain of richmond football club", "answer": "Trent Cotchin", "passage": "\"Trent Cotchin\"\nTrent Cotchin Trent William Cotchin (born 7 April 1990) is an Australian rules footballer who plays for and captains the Richmond Football Club in the Australian Football League (AFL). He is a Brownlow Medallist, an All-Australian and a three-time Richmond best and fairest winner. Cotchin represented the Victorian Metro side at the 2007 AFL Under 18 Championships and captained the Vic Metro side at 2006 Under 16 Championships. He played for the Northern Knights in the TAC Cup as a junior, before being drafted to Richmond with the second overall pick in the 2007 national draft. He led the club"} +{"qid": "test1189", "pid": "5410278", "query": "who wrote i want to dance with somebody by whitney houston", "answer": "George Merrill", "passage": "\"I Wanna Dance with Somebody (Who Loves Me)\"\nI Wanna Dance with Somebody (Who Loves Me) \"\"I Wanna Dance with Somebody (Who Loves Me)\"\" is the first single from Whitney Houston's second studio album, \"\"Whitney\"\". It was produced by Narada Michael Walden, and written by George Merrill and Shannon Rubicam of the band Boy Meets Girl, who had previously written the number-one Whitney Houston hit \"\"How Will I Know.\"\" The song received mixed reviews from critics, who compared the musical arrangement to her own \"\"How Will I Know\"\" and Cyndi Lauper's \"\"Girls Just Want to Have Fun.\"\" The song won the Grammy Award for Best Female Pop Vocal"} +{"qid": "test1189", "pid": "5410300", "query": "who wrote i want to dance with somebody by whitney houston", "answer": "George Merrill", "passage": "\"I Wanna Dance with Somebody (Who Loves Me)\"\nsimilar version of '99 tour's on Arista Records 25th Anniversary Celebration, taped at Shrine Auditorium in Los Angeles on April 10, and broadcast on May 15 on NBC. Bibliography I Wanna Dance with Somebody (Who Loves Me) \"\"I Wanna Dance with Somebody (Who Loves Me)\"\" is the first single from Whitney Houston's second studio album, \"\"Whitney\"\". It was produced by Narada Michael Walden, and written by George Merrill and Shannon Rubicam of the band Boy Meets Girl, who had previously written the number-one Whitney Houston hit \"\"How Will I Know.\"\" The song received mixed reviews from critics, who compared the"} +{"qid": "test1189", "pid": "5233611", "query": "who wrote i want to dance with somebody by whitney houston", "answer": "George Merrill", "passage": "\"Boy Meets Girl (band)\"\nBoy Meets Girl (band) Boy Meets Girl is an American pop-music duo consisting of keyboardist and vocalist George Merrill and singer Shannon Rubicam. They are perhaps best known for their hit song \"\"Waiting for a Star to Fall\"\" from 1988 and for writing two of Whitney Houston's number one hits: \"\"How Will I Know\"\" and \"\"I Wanna Dance with Somebody (Who Loves Me).\"\" The members of Boy Meets Girl, George Merrill and Shannon Rubicam, wrote and composed a number of songs for other artists. Most famous are their two number one hits written for Whitney Houston, \"\"How Will I Know\"\""} +{"qid": "test1189", "pid": "12393520", "query": "who wrote i want to dance with somebody by whitney houston", "answer": "George Merrill", "passage": "\"George Merrill (songwriter)\"\nGeorge Merrill (songwriter) George Merrill (born January 10, 1956) is an American songwriter whose work mostly dates from the mid- to late 1980s. He co-wrote \"\"How Will I Know\"\", which was a hit for Whitney Houston in 1986, as well as Houston's 1987 hit \"\"I Wanna Dance with Somebody (Who Loves Me)\"\". From the mid- to late 1980s to the present day, Merrill has been one half of vocal duo Boy Meets Girl, who are best remembered for the late-1988 hit \"\"Waiting for a Star to Fall\"\". He wrote the song and had initially offered it to Houston and Belinda"} +{"qid": "test1189", "pid": "12393536", "query": "who wrote i want to dance with somebody by whitney houston", "answer": "George Merrill", "passage": "\"Shannon Rubicam\"\nShannon Rubicam Shannon Rubicam (born October 11, 1951 in Seattle, Washington) is an American female singer/songwriter who is best known for being half of the mid-to-late-1980s pop duo Boy Meets Girl. Her husband, George Merrill, was the other half of Boy Meets Girl, who are best remembered for their 1988 hit \"\"Waiting for a Star to Fall\"\". Merrill and Rubicam first met in 1975 when both were performing at a friend's wedding. The couple also wrote two hit songs for Whitney Houston, \"\"How Will I Know\"\" and \"\"I Wanna Dance with Somebody (Who Loves Me)\"\", both of which hit Number"} +{"qid": "test1189", "pid": "5409532", "query": "who wrote i want to dance with somebody by whitney houston", "answer": "George Merrill", "passage": "\"How Will I Know\"\nwith \"\"I Wanna Dance With Somebody (Who Loves Me)\"\". How Will I Know \"\"How Will I Know\"\" is a song recorded by American recording artist Whitney Houston for her eponymous debut album, which was released in February 1985. The song was released by Arista Records in November that year, as the album's third single. Composed by George Merrill and Shannon Rubicam, the song was originally intended for Janet Jackson, but she passed on it. Houston then recorded the song with altered lyrics and production from Narada Michael Walden. The lyrics speak about the protagonist trying to discern if a boy"} +{"qid": "test1192", "pid": "3938494", "query": "what song is played while raising the american flag", "answer": "Reveille", "passage": "Reveille\nU.S. Army posts and Air Force bases, \"\"Reveille\"\" is played by itself or followed by the bugle call \"\"To the Colors\"\" at which time the national flag is raised and all U.S. military personnel outdoors are required to come to attention and present a salute in uniform, either to the flag or in the direction of the music if the flag is not visible. While in formation, soldiers are brought to the position of parade rest while \"\"Reveille\"\" plays then called to attention and present arms as the national flag is raised. On board U.S. Navy, Marine Corps, and Coast"} +{"qid": "test1193", "pid": "772922", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"FC Barcelona\"\nChampions League in the quarter-finals earlier in the year) to be crowned champions of La Liga for the 23rd time, they drew after Atlético defender Diego Godín headed in the equaliser in the 49th minute, giving Atlético the championship. Barcelona won the treble in the 2014–15 season, winning La Liga, Copa del Rey and Champions League titles, and became the first European team to have won the treble twice. On 17 May, the club clinched their 23rd La Liga title after defeating Atlético Madrid. This was Barcelona's seventh La Liga title in the last ten years. On 30 May, the"} +{"qid": "test1193", "pid": "13322922", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"2009–10 La Liga\"\n2009–10 La Liga The 2009–10 La Liga season (known as the \"\"Liga BBVA\"\" for sponsorship reasons) was the 79th La Liga since its establishment. Barcelona were the defending champions, having won their 19th La Liga title in the previous season. The campaign began on 29 August 2009 ended on 16 May 2010 due to all top-flight European leagues ending earlier than the previous season because of 2010 FIFA World Cup. A total of 20 teams contested the league, 17 of which already contested in the 2008–09 season and three of which were promoted from the Segunda División. In addition, a"} +{"qid": "test1193", "pid": "13322925", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"2009–10 La Liga\"\ngoals scored. Atlético Madrid and Sevilla supporters 2009–10 La Liga The 2009–10 La Liga season (known as the \"\"Liga BBVA\"\" for sponsorship reasons) was the 79th La Liga since its establishment. Barcelona were the defending champions, having won their 19th La Liga title in the previous season. The campaign began on 29 August 2009 ended on 16 May 2010 due to all top-flight European leagues ending earlier than the previous season because of 2010 FIFA World Cup. A total of 20 teams contested the league, 17 of which already contested in the 2008–09 season and three of which were promoted"} +{"qid": "test1193", "pid": "13322923", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"2009–10 La Liga\"\nnew match ball - the Nike T90 Ascente - served as the official ball for all matches. On 16 May 2010, Barcelona were declared champions after their 4–0 victory over Valladolid, their 20th La Liga title. Lionel Messi won the LFP Award for Best Player for the second consecutive time. Teams promoted from 2008–09 Segunda División Teams relegated to 2009–10 Segunda División La Liga's governing body, the Liga de Fútbol Profesional, honoured the competition's best players and coach with the LFP Awards. The Pichichi Trophy is awarded to the player who scores the most goals in a season. The Zamora"} +{"qid": "test1193", "pid": "18029060", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"2014–15 FC Barcelona season\"\nthe title. This was Barcelona's seventh La Liga title in the last ten years. On 21 May, Xavi had announced that he will leave Barcelona at the end of the season for Al-Sadd in Qatar. On 23 May, Barcelona played the final match of La Liga against Deportivo at Camp Nou; Messi scored twice in the 2–2 draw. This was Xavi's last La Liga match. On 30 May, Barca took on Athletic Bilbao to play the final of the Copa del Rey at the Camp Nou. Barcelona won the match 3–1, clinching their 27th title. Messi scored twice, with the"} +{"qid": "test1193", "pid": "10474713", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"1929 La Liga\"\n1929 La Liga The 1929 Primera División season started February 10, 1929, and finished June 23, 1929. A total of 10 teams participated in the league. After the failure to create a national league in 1928, that ended with the teams split into two unconcluded leagues, finally they agreed with the Royal Spanish Football Federation its creation. Barcelona won the title after beating Real Unión in the last round and taking advantage of the loss of Real Madrid at Athletic Bilbao. The Catalans were claimed the inaugural champions. After months of discuss, on 23 November 1928 agreed the creation of"} +{"qid": "test1193", "pid": "492896", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"La Liga\"\nbeen prominent, winning 8 titles, La Liga has also seen other champions, including Atlético Madrid, Valencia, and Deportivo de La Coruña. In the 2010s, Atlético Madrid has become an increasingly stronger team, forming a trio alongside Real Madrid and Barcelona. According to UEFA's league coefficient, La Liga has been the top league in Europe over the last five years and has led Europe for more years (21) than any other country. It has also produced the continent's top-rated club more times (21) than any other league, more than double that of second-placed Serie A. Its clubs have won the most"} +{"qid": "test1193", "pid": "4462596", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"Steve McManaman\"\namnesia over McManaman's time in Spain\"\". Nonetheless, McManaman managed to pick up a second La Liga medal for the year, and was in the squad that won the Intercontinental Cup in Japan. At the start of the 2003–04 pre-season, the signing of fellow Englishman David Beckham proved the last straw in eventually forcing McManaman down the pecking order at Real Madrid. McManaman remained with the club for its full pre-season, even after coach Vicente del Bosque was given a shock sacking 24 hours after having won the club's last La liga title, but in the close season, and the arrival"} +{"qid": "test1193", "pid": "3706285", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"Deportivo Alavés\"\nsuccumbed in 2008–09. A subsequent black period in \"\"Segunda B\"\" lasted four years until Alavés was bought by José Antonio Querejeta and were promoted again to the second division in 2013 as overall champions of the third tier, providing an opportunity to sort out its economic difficulties. Three years later, on 29 May 2016, Alavés was promoted to La Liga as second tier champions after beating Numancia 2–0 to overtake Leganés on the final day. On 10 September 2016, Alavés got their first win of their return season in La Liga by defeating defending La Liga champions Barcelona 2–1 at"} +{"qid": "test1193", "pid": "8502979", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"2006–07 La Liga\"\nfrom a 1–0 deficit to beat Mallorca 3–1 and clinch the title on head-to-head superiority. Teams promoted from 2005–06 Segunda División Teams relegated to 2006–07 Segunda División The Pichichi Trophy is awarded to the player who scores the most goals in a season. The Zamora Trophy is awarded to the goalkeeper with least goals to games ratio. \"\"Last updated 17 June 2007\"\" Cuco Ziganda (Osasuna head coach) and David Belenguer (Getafe footballer) 2006–07 La Liga The 2006–07 La Liga season, the 76th since its establishment, started on 27 August 2006 and finished on 17 June 2007. Real Madrid won La"} +{"qid": "test1193", "pid": "3537579", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"Copa de la Liga\"\nCopa de la Liga The Copa de la Liga (League Cup in Spanish) was a Spanish football tournament created in 1982. Due to time constraints, saturation and club pressure, the competition only lasted four years, being cancelled in 1986. Winning the trophy helped two clubs to complete unique cup doubles: FC Barcelona with the Copa del Rey (1983) and Real Madrid with the UEFA Cup (1985). In all four finals, the team that played the second leg at home won the trophy. The League Cup was a straight knock-out competition. All ties were played over two legs, home and away,"} +{"qid": "test1193", "pid": "12946587", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"History of FC Barcelona\"\nfirst European team to have won the treble twice. On 17 May, the club clinched their 23rd La Liga title after defeating Atlético Madrid. This was Barcelona's seventh La Liga title in the last ten years. On 30 May, the club defeated Athletic Bilbao in the Copa del Rey final at Camp Nou. On 6 June, Barcelona won the Champions League final with a 3–1 win against Juventus, which completed the treble, the club's second in six years. History of FC Barcelona The history of Futbol Club Barcelona goes from the football club's founding in 1899 and up to current"} +{"qid": "test1193", "pid": "20650934", "query": "who won la liga in the last 10 years", "answer": "Barcelona", "passage": "\"2018–19 La Liga\"\nthe two top teams from the Segunda División, and the winners of the play-offs. The first team to be relegated from La Liga were Málaga. Their relegation was ensured on 19 April 2018, following a late 1−0 defeat to Levante, ending their 10-year spell in the top division. The second team to be relegated were Las Palmas, after a 4−0 home defeat to Deportivo Alavés on 22 April 2018, ending their three-year spell in the league. The last team to be relegated were Deportivo La Coruña, following a 4−2 home loss to Barcelona on 29 April 2018. This result ensured"} +{"qid": "test1193", "pid": "492895", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"La Liga\"\ninception. Nine teams have been crowned champions, with Real Madrid winning the title a record 33 times and Barcelona 25 times. Barcelona won the inaugural La Liga in 1929 with Athletic Bilbao claiming several titles in the league's early years. Barcelona and Real Madrid dominated the championship in the 1950s, winning four La Liga titles each throughout the decade. Real Madrid dominated La Liga from the 1960s through the 1980s, when Barcelona, Athletic Bilbao, and Real Sociedad won the league twice in those years. From the 1990s onward, Barcelona has dominated La Liga, winning 15 titles. Although Real Madrid has"} +{"qid": "test1193", "pid": "16513702", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"2013–14 La Liga\"\nBarcelona. However, with the two teams facing off, Barcelona could claim the title with a win. The game ended in a draw, giving the \"\"Colchoneros\"\" their first league title in 18 years, and their tenth overall. It was the first time since the 2003–04 La Liga that a club other than Barcelona or Real Madrid, who finished second and third respectively, have won the title. Osasuna, Real Valladolid and Real Betis finished in the bottom three and were relegated. Cristiano Ronaldo won the La Liga Award for Best Player for the first time. As the top scorer with 31 goals,"} +{"qid": "test1193", "pid": "9516067", "query": "who won la liga in the last 10 years", "answer": "Real Madrid", "passage": "\"Enrique Fernández Viola\"\nEnrique Fernández Viola Enrique Fernández Viola, commonly referred to as Enrique Fernández, (10 June 1912 – 6 October 1985) was a Uruguayan football player and manager who played for Nacional, Talleres (RE), Independiente, FC Barcelona, Uruguay and the Catalan XI. As a manager, he won two Uruguayan championships with Nacional and La Liga titles with both FC Barcelona and Real Madrid. Along with Radomir Antic, he is one of only two coaches to have taken charge of both FC Barcelona and Real Madrid and he is the only coach to have won La Liga titles with both. He was born"} +{"qid": "test1194", "pid": "4603411", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Paternoster, Western Cape\"\nthe product from South Africa. The climate is mostly known for its infrequent rainfall, dry countryside and high offshore winds. The area receives most of its rainfall during winter and has a Mediterranean climate. The climate supports the growth of the famous wild flowers that the West Coast is renowned for. Paternoster, Western Cape Paternoster (pronounced ) is one of the oldest fishing villages on the West Coast of South Africa. It is situated 15 km north-west of Vredenburg and 145 km north of Cape Town, at Cape Columbine between Saldanha Bay and St Helena Bay. The town covers an"} +{"qid": "test1194", "pid": "6921593", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"KwaZulu-Cape coastal forest mosaic\"\nThe southern limit is at Cape St. Francis, east of Port Elizabeth in the Eastern Cape Province, where the KwaZulu-Cape forests transition to the Knysna-Amatole montane forests. The ecoregion has a seasonally moist subtropical climate. Rainfall ranges from 1500 mm to 900 mm per year. The northern portion is generally receives more rainfall, typically in the summer months, while the southern portion receives most of its rainfall in the winter months, which is typical of the Mediterranean climate region to the west. Rainfall diminishes away from the coast, and the coastal forest mosaic yields to the drier Maputaland-Pondoland bushland and"} +{"qid": "test1194", "pid": "6246892", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "Stilbaai\nStilbaai Stilbaai, also known as the \"\"Bay of Sleeping Beauty\"\", is a town along the southern coast of South Africa about four hours by car from Cape Town. It is part of the Hessequa Local Municipality in the Western Cape province. Alternate spellings of the town's name include \"\"Stillbay\"\", \"\"Stilbay\"\" and \"\"Stillbaai\"\". Stilbaai has a temperate climate and receives almost the same amount of rainfall in all four seasons, with peaks in autumn and spring. Temperature averages between 20° and 28° Celsius in the summer and between 12° and 20° Celsius in the winter. Rainfall is 639,2 mm per annum"} +{"qid": "test1194", "pid": "16325834", "query": "during which season does cape town receive rainfall", "answer": "summer", "passage": "Lusikisiki\nLusikisiki Lusikisiki is a town in the Ingquza Hill Local Municipality in the Eastern Cape Province, South Africa. The name is onomatopoeic, derived from the rustling sound of reeds in the wind, named by the local AmaMpondo people. Lusikisiki is 45 kilometers inland from and north of Port St Johns. The town is positioned along the R61 leading to Kokstad. Lusikisiki receives high levels of rainfall, ranging between 874mm - 1060mm of rain per annum. Rainfall is considered unseasonal, although Lusikisiki receives the majority of its rainfall during summer. Winter temperatures reach their lowest in July, averaging 8 degrees Celsius"} +{"qid": "test1194", "pid": "8188361", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "Natrampalli\nfrom southwest to northeast. The seasonal climate conditions are moderate. Weather is colder during winter and hotter in summer due to hills and forests surrounding the town. The seasons are classified as follows: The average maximum and minimum temperature are and respectively. The town typically receives a maximum rainfall of , during the September, October and November. Light moderate rainfall of occurs during the months of June, July & August. Natrampalli is well connected by road. It is situated on (NH 46- Krishnagiri- Bargur- Natrampalli). The town lies on the highway (NH 46) of the Bangalore-Chennai section which is part"} +{"qid": "test1194", "pid": "8174478", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "Jolarpettai\nand rail. There is no airport in Jolarpet but the nearest airport is Kempegowda International Airport at Bangalore, which is from the town. The seasonal climate conditions are moderate. Weather is colder during winter and hotter in summer due to hills and forests surrounding the town. The average maximum and minimum temperature are 42 °C and 13 °C respectively. The town typically receives a maximum rainfall of 35 cm, 37 cm during the September, October and November. Light moderate rainfall of 10 cm to 32 cm occurs during the months of June, July & August. The wind direction during April"} +{"qid": "test1194", "pid": "8136303", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "Garhmukteshwar\nand the town then has a mild, dry winter season from late October to the middle of March Lowest temperature recorded is . Rainfall is about 80 cm to 100 cm per annum, which is suitable for growing crops. Most of the rainfall is received during the monsoon. Humidity varies from 30 to 100%. The town receives no snow. There are two railways stations in the town, call Garhmukteshwar and Garhmukteshwar Bridge (Brijghat). They are on the Delhi-Moradabad line. Garhmukteshwar Garhmukteshwar (also spelled Garhmukhteshwar) is a city and a municipal board in Hapur district in the state of Uttar Pradesh,"} +{"qid": "test1194", "pid": "18058474", "query": "during which season does cape town receive rainfall", "answer": "summer", "passage": "\"Narsapur, Adilabad district\"\nseason. The air is generally dry during the rest of the year, the district part of the year being the summer season when the humidity in the afternoon is 25%. The rainfall in the town, in general increases from the southwest towards the northeast. About 85% of annual rainfall is received during the southwest monsoon season. The peak rainy month is July. The variation in the Annual rainfall of a year is not very large. Annual rainfall of the district is 1044.5m.m. The cold weather commences towards the end of November when the temperature begins to fall rapidly. December is"} +{"qid": "test1194", "pid": "20731483", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Table Mountain National Park Marine Protected Area\"\nis a summer rainfall region, receiving most of its rainfall during the summer months of December to February. The South-western Cape has a Mediterranean type climate, with most of its rainfall during the winter months from June to September. During the summer the dominant factor determining the weather in the region is a high pressure zone, known as the Atlantic High, located over the South Atlantic ocean to the west of the Cape coast. Winds circulating in an anticlockwise direction from such a system reach the Cape from the south-east, producing periods of up to several days of high winds"} +{"qid": "test1194", "pid": "1885764", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Plymouth, Massachusetts\"\nJanuary, with an average high temperature of and an average low of . Much like the rest of the Northeastern seaboard, Plymouth receives ample amounts of precipitation year-round. On average, summer months receive slightly less precipitation than winter months. Plymouth averages about of rainfall a year. Plymouth, like other coastal Massachusetts towns, is very vulnerable to Nor'easter weather systems. The town is sometimes vulnerable to Atlantic hurricanes and tropical storms, which infrequently threaten the Cape Cod region during the early autumn months. As of the census of 2010, there were 56,468 people, 21,269 households, and 14,742 families residing in the"} +{"qid": "test1194", "pid": "13731838", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Alishan, Chiayi\"\nsquare kilometres. It is located at an elevation of in the western highlands of Taiwan. Alishan has a subtropical highland climate (Köppen: Cwb) with extremely wet and mild conditions during the monsoon season when the town receives of rain in five months, and cool and drier conditions during the winter months. Temperatures remain relatively constant throughout the year, with only noticeably cooler temperatures during the winter months of December to February of the following year. When typhoons hit Taiwan during the wet season, rainfall in highland locations like Alishan can exceed per day, which is the heaviest rainfall in the"} +{"qid": "test1194", "pid": "8118889", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Aminagar Sarai\"\ntown then has a mild, dry winter season from late October to the middle of March. The lowest temperature ever recorded is −0.4 °C (31.3 °F), recorded on Sunday, 6 January 2013. Rainfall is about 845 millimetres (33 in) per annum, which is suitable for growing crops. Most of the rainfall is received during the monsoon. Humidity varies from 30 to 100%. The town receives no snow. The nearest airport is the Indira Gandhi International Airport which is about 100 km away. By road Aminagar Sarai is not well-connected. It is 3 km off State Highway 58 (Baghpat-Meerut State Highway)."} +{"qid": "test1194", "pid": "2310615", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Mossel Bay\"\ncountry - one of the results of which was that Mossel Bay merged with the smaller, neighbouring villages of Friemersheim, Great Brak River and Herbertsdale to form the present-day Municipality of Mossel Bay in December 2000. Mossel Bay’s climate is mild throughout the year as the town is situated in the area where the winter rainfall and all-year rainfall regions of the Western Cape Province meet. Its weather is influenced by the Agulhas Current of the Indian Ocean to the south, and by the presence of the Outeniqua Mountains to the north. Mossel Bay receives 80% of its rainfall at"} +{"qid": "test1194", "pid": "750621", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Geography of South Africa\"\nits wind: the dry \"\"South-Easter\"\" which blows almost incessantly in summer (December–February), and the \"\"North-Wester\"\" which accompanies the cold fronts that roll in from the Atlantic during winter (June–August). The vegetation of the Cape area consists of fynbos, some grassland and Albany thickets. The eastern section of the Karoo does not extend as far north as the western part, giving way to the flat landscape of the Free State, which – though still semi-arid – receives somewhat more rain. North of the Vaal River the Highveld is better watered, with an annual rainfall of and a high altitude (around )"} +{"qid": "test1194", "pid": "6469153", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "Dharchula\nthe town. Summers are warm and shiny, whereas the winters are cold. The higher altitude regions of Dharchula (basically upper valleys) receives snow during the winter season (December to February end). The area also receives heavy rainfall during the rainy season (July–September) which disrupts the normal course of life of the people and often causes landslides in the mountain areas. The entire town looks beautiful during winters with snow-capped hills all around and you are in the middle of the valley. As the sun rises the snow starts melting and there are streams flowing down towards the river. These streams"} +{"qid": "test1194", "pid": "2094395", "query": "during which season does cape town receive rainfall", "answer": "summer", "passage": "Anse-Bertrand\nrainfall during the year, with a wetter season between July and November which coincides with hurricane season. The town receives below 1500 mm of rainfall. Tropical heat is the norm, bringing constant high temperatures, especially during the summer. Trade winds, called alizés, blow from the north-east and often temper the climate. The economy rests primarily on agriculture, particularly on sugar cane. There was sugar cultivation in the 1800s, but it ended. It is endowed with a rich past whose remnants you can see through a number of windmills scattered over the commune such as Habitation La Mahaudière. The beach, Anse"} +{"qid": "test1194", "pid": "14500605", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Climate of the Falkland Islands\"\nHoward on eastern islands both receive about of rainfall every year, as opposed to islands such as Westpoint which only receives a year. The overall rainfall for the archipelago is around . The flat areas, in particular Lafonia are the driest areas of the islands with precipitation in the range a year. Other writers have recorded an average of 310 mm per year in the west of the islands. The rainfall in 2009 as recorded from 17 different stations in \"\"The Wool Press\"\" varied between 356 mm at Cape Dolphin and 898 mm at Port Howard. During winter sleet and"} +{"qid": "test1194", "pid": "4842776", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "Sivaganga\nduring winter it is 28 °C. The minimum temperature varies from 24.5 °C to 26.0 °C. The seasonal climate conditions are moderate and the weather is uniformly salubrious. The town gets major rainfall during the North East monsoon period. The Annual normal rainfall varies from 336.2 mm. The average annual rainfall being received in the town is 931 mm. According to 2011 census, Sivaganga had a population of 40,403 with a sex-ratio of 990 females for every 1,000 males, much above the national average of 929. A total of 3,880 were under the age of six, constituting 1,985 males and"} +{"qid": "test1194", "pid": "15370072", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Cape Lowland Freshwater Wetland\"\nCape Lowland Freshwater Wetland Cape Lowland Freshwater Wetland is a critically endangered vegetation type of the Western Cape, South Africa. This type of riparian vegetation and its accompanying ecosystem is found in the Western Cape, South Africa, on freshwater floodplains, along the lower stretches of rivers and around seasonal vleis and estuaries. The terrain is typically flat and the soil is rich and silty. It is restricted to a winter rainfall area. This used to be one of the major ecosystems on the Cape Flats of Cape Town. The Cape Flats used to have a great many wetlands, rivers and"} +{"qid": "test1194", "pid": "13671539", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Tirupattur taluk\"\nis a century old municipal market having 413 shops which helps in promoting commercial and economic activities of the town. This town is known for recording coldest temperature in the Tamil Nadu plains during winter. The seasonal climate conditions are moderate and the weather is uniformly salubrious. The town experiences hot summers and cool winters. The town gets its majority of rainfall during the south west monsoon period. September and October are the wettest months with around 400 mm of rain being received in these two months. The town also experiences fairly frequent thunderstorms in late April and May, which"} +{"qid": "test1194", "pid": "7656946", "query": "during which season does cape town receive rainfall", "answer": "winter", "passage": "\"Ajristan District\"\n°F). The lowest recorded temperature was on 8 January 1970. Spring starts in early April and ends in late May with average temperatures near 15 °C (60 °F). Unlike areas to the east, Ajristan does not have a monsoon season of heavy rainfall. Highest recorded rainfall within 24 hours is on 17 December 2000. Highest recorded monthly rainfall is in March 1982, and the highest recorded annual rainfall was in 1982. Snowfall occurs primarily in December, January, and February and is the principal precipitation in the winter. During a severe drought from 1999 to 2001, Ajristan did not receive any"} +{"qid": "test1195", "pid": "10210732", "query": "when did the dust bowl end in oklahoma", "answer": "1940", "passage": "\"Do Re Mi (Woody Guthrie song)\"\nDo Re Mi (Woody Guthrie song) \"\"Do Re Mi\"\" is a folksong by American songwriter Woody Guthrie. The song deals with the experiences and reception of Dust Bowl migrants when they arrive in California. It is known for having two guitar parts, both recorded by Guthrie. Written by Woody Guthrie, the song is included on his 1940 folk album Dust Bowl Ballads. It takes the form of a warning to would-be migrants to stay where they are (places of origin mentioned include Texas, Oklahoma, Kansas, Georgia and Tennessee). The argument is made on the basis that there are already too"} +{"qid": "test1196", "pid": "17860628", "query": "who sings my anaconda don't want none", "answer": "Sir Mix-a-Lot", "passage": "\"The Pinkprint\"\na \"\"romantic narrative\"\" following the four previous songs which features Minaj bragging. The song is lyrically sexually explicit and sees Jeremih singing about wanting to be Nicki's favorite. Minaj raps about wanting to be the \"\"primary role in a man's life\"\". \"\"Buy a Heart\"\" features rapper Meek Mill, who sings the hook of the song. \"\"Trini Dem Girls\"\" is a dancehall track that features a guest appearance from rapper LunchMoney Lewis. The song contains echoing handclaps and a \"\"Diwali Riddim\"\" with a \"\"blaring\"\" chorus. \"\"Anaconda\"\" is a hip-hop and pop-rap song that heavily samples \"\"Baby Got Back\"\" by Sir Mix-a-Lot."} +{"qid": "test1197", "pid": "20845605", "query": "who sang i ran all the way home", "answer": "The Impalas", "passage": "\"Sorry (I Ran All the Way Home)\"\nSorry (I Ran All the Way Home) \"\"Sorry (I Ran All the Way Home)\"\" is a song written by Artie Zwirn and Harry Giosasi and produced and arranged by LeRoy Holmes The single was performed by New York based, doo-wop group The Impalas. It reached #2 on the U.S. pop chart, behind both, The Happy Organ by Dave \"\"Baby\"\" Cortez and Kansas City by Wilbert Harrison. It also went to #14 on the U.S. R&B chart. Overseas, \"\"Sorry (I Ran All the Way Home)\"\" went to #28 on the UK Singles Chart in 1959. The song was featured on their"} +{"qid": "test1197", "pid": "20845606", "query": "who sang i ran all the way home", "answer": "The Impalas", "passage": "\"Sorry (I Ran All the Way Home)\"\n1959 album, \"\"Sorry (I Ran All the Way Home)\"\". The song ranked #24 on \"\"Billboard's\"\" Year-End top 100 singles of 1959. Sorry (I Ran All the Way Home) \"\"Sorry (I Ran All the Way Home)\"\" is a song written by Artie Zwirn and Harry Giosasi and produced and arranged by LeRoy Holmes The single was performed by New York based, doo-wop group The Impalas. It reached #2 on the U.S. pop chart, behind both, The Happy Organ by Dave \"\"Baby\"\" Cortez and Kansas City by Wilbert Harrison. It also went to #14 on the U.S. R&B chart. Overseas, \"\"Sorry (I"} +{"qid": "test1197", "pid": "10520055", "query": "who sang i ran all the way home", "answer": "The Impalas", "passage": "\"The Impalas\"\nThe Impalas The Impalas were an American doo-wop group in the late 1950s, best known for their hit, \"\"Sorry (I Ran All the Way Home)\"\". The group formed in 1958 in Brooklyn, New York, and was composed of lead singer Joe \"\"Speedo\"\" Frazier (September 5, 1943 – April 1, 2014), Richard Wagner, Lenny Renda and Tony Carlucci. They were a racially integrated group--Frazier was the only black member. They recorded for Hamilton Records and were found by songwriters Artie Zwirn and Aristides \"\"Gino\"\" Giosasi, who wrote the song \"\"Sorry (I Ran All the Way Home)\"\". In 1959 disc jockey Alan"} +{"qid": "test1197", "pid": "940753", "query": "who sang i ran all the way home", "answer": "The Impalas", "passage": "Doo-wop\nwhite performers included The Del-Vikings, who hit big in 1957 with \"\"Come Go With Me\"\" and \"\"Whispering Bells\"\", The Crests, whose \"\"16 Candles\"\" appeared in 1958, and The Impalas, whose \"\"Sorry (I Ran All the Way Home)\"\" was a hit in 1959. Female doo-wop singers were unusual in the early days. Lillian Leach, lead singer of the Mellows from 1953 to 1958, helped pave the way for other women in doo-wop, soul and R&B. Doo-wop groups achieved 1951 R&B chart hits such as \"\"Sixty Minute Man\"\" by Billy Ward and His Dominoes, \"\"Where Are You?\"\" by The Mello-Moods, \"\"The Glory"} +{"qid": "test1198", "pid": "1032245", "query": "what is the population of keystone heights florida", "answer": "1,350", "passage": "\"Keystone Heights, Florida\"\nwas $19,157. About 5.1% of families and 8.3% of the population were below the poverty line, including 10.5% of those under age 18 and 7.5% of those age 65 or over. Keystone Heights has a city manager form of government, with a mayor and four council members, all elected at large. They serve three-year terms. Keystone Heights, Florida Keystone Heights is a city located in southwestern Clay County, Florida, United States. The population of the city was 1,350 at the 2010 census. In 1918, the area that would eventually become known as the city of Keystone Heights was a small"} +{"qid": "test1198", "pid": "1032237", "query": "what is the population of keystone heights florida", "answer": "1,350", "passage": "\"Keystone Heights, Florida\"\nKeystone Heights, Florida Keystone Heights is a city located in southwestern Clay County, Florida, United States. The population of the city was 1,350 at the 2010 census. In 1918, the area that would eventually become known as the city of Keystone Heights was a small community known as Brooklyn located along present day State Road 100, about one mile north of the present location of Keystone Heights on Lake Brooklyn. In those early days Brooklyn consisted of a large unpainted building called the Brooklyn Hotel; a combination general store and post office; and several small houses scattered about. Property Developer"} +{"qid": "test1199", "pid": "11925685", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Communist Party of Georgia (Soviet Union)\"\nCommunist Party of Georgia (Soviet Union) Georgian Communist Party (; ) was a political party in Georgia. Georgia was incorporated into the Soviet Union as the Georgian Soviet Socialist Republic after 25 February 1921 when the Red Army entered its capital Tbilisi and installed a communist government led by Georgian Bolshevik Filipp Makharadze. After the 1924 August Uprising in Georgia the country was incorporated into the Transcaucasian Socialist Federative Soviet Republic until 1936. During its period as a Soviet Socialist Republic it was ruled by the First Secretary of the Georgian Communist Party including; Samson Mamulia, Lavrentiy Beria, Candide Charkviani,"} +{"qid": "test1199", "pid": "11925686", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Communist Party of Georgia (Soviet Union)\"\nVasil Mzhavanadze and Eduard Shevardnadze. Its political descendant is the Communist Party of Georgia which was formed in 1992 after Georgia declared independence in April 1991. Communist Party of Georgia (Soviet Union) Georgian Communist Party (; ) was a political party in Georgia. Georgia was incorporated into the Soviet Union as the Georgian Soviet Socialist Republic after 25 February 1921 when the Red Army entered its capital Tbilisi and installed a communist government led by Georgian Bolshevik Filipp Makharadze. After the 1924 August Uprising in Georgia the country was incorporated into the Transcaucasian Socialist Federative Soviet Republic until 1936. During"} +{"qid": "test1199", "pid": "526910", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "Tbilisi\nArmy invaded Tbilisi after bitter fighting at the outskirts of the city and declared Soviet rule. In 1921, the Democratic Republic of Georgia was occupied by the Soviet Bolshevik forces from Russia, and until 1936 Tbilisi functioned first as the capital city of the Transcaucasian SFSR (which included Armenia, Azerbaijan, and Georgia), and afterwards until 1991 as the capital of the Georgian Soviet Socialist Republic. During Soviet rule, Tbilisi's population grew significantly, the city became more industrialized, and it also came to be an important political, social, and cultural centre of the Soviet Union. In 1980 the city housed the"} +{"qid": "test1199", "pid": "11276946", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"1991 Georgian independence referendum\"\nof independence on the second anniversary of the Soviet army crackdown on peaceful protests in Tbilisi on 9 April 1989. The referendum coincided with a private visit of the former U.S. President Richard Nixon who visited a few polling stations in Georgia’s capital Tbilisi before his departure to Moscow later that day. 1991 Georgian independence referendum An independence referendum was held in the Georgian Soviet Socialist Republic on 31 March 1991. It was approved by 99.5% of voters. The referendum was sanctioned by the Georgian Supreme Council which was elected in the first multi-party elections held in Soviet Georgia in"} +{"qid": "test1199", "pid": "2337394", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Transcaucasian Socialist Federative Soviet Republic\"\nlegislative body), and the Council of People's Commissars (the government). Mamia Orakhelashvili, a Georgian Bolshevik leader, became the first chairman of the Transcaucasian SFSR Council of People's Commissars. Tbilisi was the capital of the republic. The republic became a founding member of the Soviet Union on December 30 along with the Russian SFSR, the Ukrainian SSR, and the Byelorussian SSR. In December 1936, the Transcaucasian SFSR was dissolved and divided again among the Georgian, Armenian and Azerbaijani SSRs. After the Red Army invasion of Georgia, Abkhazia, hitherto an autonomous province within the Democratic Republic of Georgia, was declared a Soviet"} +{"qid": "test1199", "pid": "14754352", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Soviet Occupation Day (Georgia)\"\nSoviet Occupation Day (Georgia) Soviet Occupation Day (, \"\"sabch'ot'a okupats'iis dge\"\") is a holiday in the country of Georgia. It is observed annually on February 25 to commemorate the Red Army invasion of Georgia in 1921. The holiday was established in 2010 and its first observance was in 2011. In February 1921, the Red Army, following the post-1917 turmoil in Transcaucasia, entered Georgia, which was then the Menshevik-controlled Democratic Republic of Georgia. The Georgian Menshevik army was defeated and the government fled the country. On February 25, 1921 the Red Army entered the capital Tbilisi and installed a communist government,"} +{"qid": "test1199", "pid": "9346958", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Government of the Democratic Republic of Georgia in Exile\"\nSocial Democratic (Menshevik) Party and other anti-Soviet organizations in Georgia, and thus presented a certain nuisance value for the Soviet authorities. The NGG encouraged and helped the Committee for Independence of Georgia, an inter-party bloc in Georgia, in its struggle against the Bolshevik regime, which culminated in the 1924 August Uprising. Prior to the revolt, Noe Khomeriki, the Minister of Agriculture in exile, Benia Chkhikvishvili, the former mayor of Tbilisi, and Valiko Jugheli, the former commander of the People’s Guard, secretly returned to Georgia, but were arrested and shortly executed by the Soviet secret police, Cheka. The NGG attempted on"} +{"qid": "test1199", "pid": "4641798", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"August Uprising\"\nArmy and Cheka troops, under orders of the Georgian Bolsheviks Joseph Stalin and Sergo Ordzhonikidze, suppressed the insurrection and instigated a wave of mass repressions that killed several thousand citizens of Georgia. The August uprising proved one of the last major rebellions against the early Soviet government, and its defeat marked a definitive establishment of Soviet rule in Georgia. The Red Army proclaimed Georgia a Soviet Socialist Republic on 25 February 1921, when they took control of Tiflis (Tbilisi), the capital of Georgia, and forced the Menshevik government into exile. Loyalty of the Georgian population to the new regime did"} +{"qid": "test1199", "pid": "2499933", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Merab Kostava\"\nMerab Kostava Merab Kostava () (May 26, 1939 – October 13, 1989) was a Georgian dissident, musician and poet; one of the leaders of the National-Liberation movement in Georgia. Along with Zviad Gamsakhurdia, he led the dissident movement in Georgia against the Soviet Union, until his death in a car accident in 1989. Kostava was born in 1939 in Tbilisi, of the Georgian Soviet Socialist Republic, USSR (the current capital of Georgia). In 1954, Kostava and Zviad Gamsakhurdia founded the Georgian youth underground organization \"\"Gorgasliani,\"\" a tribute to Vakhtang Gorgasali, the medieval Georgian king who supposedly founded the capital, Tbilisi."} +{"qid": "test1199", "pid": "2771817", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "Tskhinvali\nTskhinvali Tskhinvali ( ; , ; , ) is a city in the cultural region of South Ossetia, Transcaucasia and the capital of the \"\"de facto\"\" independent Republic of South Ossetia (which has been recognised by the Russian Federation and four other UN member states) and the former Soviet Georgian South Ossetian Autonomous Oblast. The city had been administratively divided into the region (\"\"mkhare\"\") of Shida Kartli by Georgia after the revocation of the autonomous oblast. It’s located on the Great Liakhvi River approximately 100 kilometres (62 mi) northwest of the Georgian capital Tbilisi. The name of Tskhinvali is derived"} +{"qid": "test1199", "pid": "20013861", "query": "capital of georgia the former soviet republic 7 letters", "answer": "Tbilisi", "passage": "\"Itsik Moshe\"\n(World Union of Jewish students) for the purpose of introducing the organization to the Soviet Union. In 1989, during the Soviet regime established the first mission of WUJS in the capital of Georgia, Tbilisi and after that in other countries of the Soviet Union. In 1989, he was elected as the first representative of the Jewish Agency in Soviet Union and established first international official representation center in Soviet Socialist Republic of Georgia. Until 1992 Itsik Moshe served as the head of the Jewish Agency Representation Centers in South Caucasus and Central Asia. In 1995 achieved the highest professional role"} +{"qid": "test12", "pid": "10190714", "query": "how many episodes are there in dragon ball z", "answer": "291 episodes", "passage": "\"Dragon Ball\"\nApril 5, 2009, the series premiered in Japan airing in Fuji TV. \"\"Dragon Ball Z Kai\"\" reduced the episode count to 159 episodes (167 episodes internationally), from the original footage of 291 episodes. Damaged frames were removed, resulting in some minor shots being remade from scratch in order to fix cropping, and others to address continuity issues. The majority of the international versions, including Funimation Entertainment's English dub, are titled \"\"Dragon Ball Z Kai\"\". premiered on Fuji TV on February 7, 1996 and ran until November 19, 1997 for 64 episodes. Unlike the first two anime series, it is not"} +{"qid": "test12", "pid": "17435896", "query": "how many episodes are there in dragon ball z", "answer": "291", "passage": "\"Dragon Ball Z\"\nerrors in the script were caused by dashes (—) and double-quotes (\"\") failing to appear, which resulted in confusing dialogue. Shunsuke Kikuchi composed the score for \"\"Dragon Ball Z\"\". The opening theme for the first 199 episodes is \"\"Cha-La Head-Cha-La\"\" performed by Hironobu Kageyama. The second opening theme used up until the series finale at episode 291 is \"\"We Gotta Power\"\" also performed by Kageyama. The ending theme used for the first 199 episodes is performed by MANNA. The second ending theme used for the remaining episodes is performed by Kageyama. Kenji Yamamoto composed the score for \"\"Dragon Ball Kai\"\"."} +{"qid": "test120", "pid": "20845394", "query": "who wrote song what a friend we have in jesus", "answer": "Joseph M. Scriven", "passage": "\"What a Friend\"\nsong samples the Christian hymn What a Friend We Have in Jesus by Joseph M. Scriven, who wrote it in 1855 to comfort his mother in Iceland while he was living in Canada. Maher shows God’s faithfulness even in the midst of personal sorrow and devastation. On the song, Maher sings about the joy of our friendship with the Saviour. \"\"Aleteia\"\" described the song as \"\"switching gears from quiet worship to bouncing folk-rock, with a country-pop hook, where the piece is infused with a jubilant energy, which is aided by a perfectly employed gospel-ish choir.\"\" A lyric video was released"} +{"qid": "test120", "pid": "10170718", "query": "who wrote song what a friend we have in jesus", "answer": "Charles Crozat Converse", "passage": "\"What a Friend We Have in Jesus\"\nWhat a Friend We Have in Jesus \"\"What a Friend We Have in Jesus\"\" is a Christian hymn originally written by preacher Joseph M. Scriven as a poem in 1855 to comfort his mother who was living in Ireland while he was in Canada. Scriven originally published the poem anonymously, and only received full credit for it in the 1880s. The tune to the hymn was composed by Charles Crozat Converse in 1868. William Bolcom composed a setting of the hymn. The hymn also has many versions with different lyrics in multiple languages. The \"\"Handbook to the Lutheran Hymnal\"\" notes,"} +{"qid": "test120", "pid": "9917914", "query": "who wrote song what a friend we have in jesus", "answer": "Charles Crozat Converse", "passage": "\"Charles Crozat Converse\"\nCharles Crozat Converse Charles Crozat Converse (October 7, 1832 – October 18, 1918) was an American attorney who also worked as a composer of church songs. He is notable for setting to music the words of Joseph Scriven to become the hymn \"\"What a Friend We Have in Jesus\"\". Converse published an arrangement of \"\"The Death of Minnehaha\"\", with words by Henry Wadsworth Longfellow. He was born in Warren, Massachusetts. He studied law and music in Leipzig, Germany, returned home in 1857, and was graduated at the Albany Law School in 1861. Many of his musical compositions appeared under the"} +{"qid": "test120", "pid": "14986380", "query": "who wrote song what a friend we have in jesus", "answer": "Joseph M. Scriven", "passage": "\"Ibu Pertiwi (song)\"\nthis adoptation resembled the Christian hymn What a Friend We Have in Jesus, originally written by Joseph M. Scriven as a poem in 1855. The hymn is sung in Indonesian as \"\"Yesus Kawan yang Sejati\"\" and in Toba Batak as \"\"Ise do Alealenta\"\" and is popular in Batak churches, as well as in Protestant and Roman Catholic churches. Even though Indonesia has a statistically larger Muslim community, the hymn is quite widely known. Prior his death in 1958, the melody of the music was adopted by Ismail Marzuki, the composer of the Ibu Pertiwi song. Ibu Pertiwi (song) Ibu Pertiwi"} +{"qid": "test1201", "pid": "10979282", "query": "who sang i dig rock and roll music", "answer": "Peter, Paul and Mary", "passage": "\"I Dig Rock and Roll Music\"\nI Dig Rock and Roll Music \"\"I Dig Rock and Roll Music\"\" is a 1967 song by the American folk group Peter, Paul and Mary, written by Paul Stookey, James Mason and Dave Dixon. Credited to Stookey-Mason-Dixon, the song's lyrics reference contemporary rock artists including the Mamas & the Papas, Donovan, and the Beatles. The song parodies and satirizes the vocal style of the Mamas & the Papas in the first verse, Donovan in the second verse and the Beatles in the third verse. Matthew Greenwald of AllMusic commented that the song \"\"simply celebrates the simple joy of pop music"} +{"qid": "test1201", "pid": "10979284", "query": "who sang i dig rock and roll music", "answer": "Peter, Paul and Mary", "passage": "\"I Dig Rock and Roll Music\"\nnoted for its psychedelic feedback effects, miming the volume swell on the electric guitar from Donovan's 1966 song \"\"Sunshine Superman\"\". The backing vocal effect in the verse, parodying the Beatles, reflects \"\"Yellow Submarine\"\". I Dig Rock and Roll Music \"\"I Dig Rock and Roll Music\"\" is a 1967 song by the American folk group Peter, Paul and Mary, written by Paul Stookey, James Mason and Dave Dixon. Credited to Stookey-Mason-Dixon, the song's lyrics reference contemporary rock artists including the Mamas & the Papas, Donovan, and the Beatles. The song parodies and satirizes the vocal style of the Mamas & the"} +{"qid": "test1201", "pid": "5253595", "query": "who sang i dig rock and roll music", "answer": "Peter, Paul and Mary", "passage": "WYCD\nCream, Iron Butterfly, and The J. Geils Band. The success of WABX inspired other Detroit stations such as WKNR-FM and 101.1 WXYZ-FM to adopt the progressive-rock approach. \"\"Air Ace\"\" Dave Dixon was a musician himself who co-wrote the Peter, Paul and Mary hit \"\"I Dig Rock and Roll Music.\"\" During the 1970s, WABX evolved into a more mainstream album oriented rock station, albeit one that took a softer, more laid-back approach than its competitors. The station was branded as \"\"WABX 99\"\" during this era with a logo similar to the one used by the current WABX in Evansville, Indiana, featuring"} +{"qid": "test1201", "pid": "13710533", "query": "who sang i dig rock and roll music", "answer": "Peter, Paul and Mary", "passage": "\"Wings (1968 band)\"\nWings (1968 band) Wings was a folk rock band from the late sixties (not to be confused with the band later formed by Paul McCartney). The band members were veterans from an assortment of other sixties bands. Initially, the band was made up of Oz Bach of Spanky and Our Gang on bass, Pam Robins of Serendipity Singers sang, and on guitar Eddie Simon, younger brother of Paul Simon of Simon & Garfunkel. Before their first and only album was recorded, Eddie Simon was replaced with Jim Mason who co-wrote the Peter, Paul and Mary song \"\"I Dig Rock and"} +{"qid": "test1202", "pid": "2265003", "query": "what is the meaning of cc and bcc", "answer": "Blind carbon copy", "passage": "\"Blind carbon copy\"\nthe recipients to know who else has received a Bcc message, The interpretation of \"\"Bcc:\"\" as \"\"blind courtesy copy\"\" is a backronym and not the original meaning; the historic RFC 733 has an explicit \"\"blind carbon\"\" annotation in its definition of the Bcc: header field syntax. \"\"Cc:\"\" and \"\"Bcc:\"\" mean \"\"carbon copy\"\" and \"\"blind carbon copy\"\" respectively. Sending \"\"courtesy copies\"\" of mailing list replies also directly to the author(s) of answered message(s) is a common practice on some lists, and matches a new interpretation of \"\"Cc:\"\" as abbreviation for \"\"courtesy copy\"\". Blind carbon copy Blind carbon copy (abbreviated Bcc:) allows"} +{"qid": "test1202", "pid": "1806587", "query": "what is the meaning of cc and bcc", "answer": "Carbon copy", "passage": "\"Carbon copy\"\nin use include \"\"cc'ing\"\". Merriam-Webster uses \"\"cc\"\", \"\"cc'd\"\" and \"\"cc'ing\"\", respectively. In common usage, an email message has three fields for addressees: the To field is for principal recipients of the message, the CC field indicates secondary recipients whose names are visible to one another and to the principal, and the BCC (blind carbon copy) field contains the names of tertiary recipients whose names are invisible to each other and to the primary and secondary recipients. It is considered good practice to indicate to the other recipients that a new participant has been added to the list of receivers (e.g."} +{"qid": "test1202", "pid": "538008", "query": "what is the meaning of cc and bcc", "answer": "Carbon copy", "passage": "\"Email client\"\nedit text. Some applications permit the use of a program-external editor. The email clients will perform formatting according to RFC 5322 for headers and body, and MIME for non-textual content and attachments. Headers include the destination fields, \"\"To\"\", \"\"Cc\"\" (short for \"\"Carbon copy\"\"), and \"\"Bcc\"\" (\"\"Blind carbon copy\"\"), and the originator fields \"\"From\"\" which is the message's author(s), \"\"Sender\"\" in case there are more authors, and \"\"Reply-To\"\" in case responses should be addressed to a different mailbox. To better assist the user with destination fields, many clients maintain one or more address books and/or are able to connect to an"} +{"qid": "test1203", "pid": "4059735", "query": "the victim was asking for it is an example of a", "answer": "Victim blaming", "passage": "\"Victim blaming\"\non the lack of parental supervision and the drugs and alcohol at the party, and on Leigh's sexuality. The media coverage of the murder has been cited as an example of victim blaming. In a case that became infamous in 2011, an 11-year-old female rape victim who suffered repeated gang rapes in Cleveland, Texas, was accused by a defense attorney of being a seductress who lured men to their doom. \"\"Like the spider and the fly. Wasn't she saying, 'Come into my parlor', said the spider to the fly?\"\", he asked a witness. The \"\"New York Times\"\" ran an article"} +{"qid": "test1203", "pid": "4059710", "query": "the victim was asking for it is an example of a", "answer": "Victim blaming", "passage": "\"Victim blaming\"\nor weak.\"\" A typical expression of victim blaming is the \"\"asking for it\"\" idiom, e.g. \"\"she was asking for it\"\" said of a victim of violence or sexual assault. Secondary victimization is the re-traumatization of the sexual assault, abuse, or rape victim through the responses of individuals and institutions. Types of secondary victimization include victim blaming, disbelieving the victim's story, minimizing the severity of the attack, and inappropriate post-assault treatment by medical personnel or other organizations. Secondary victimization is especially common in cases of drug-facilitated, acquaintance, military sexual trauma and statutory rape. Sexual assault victims experience stigmatization based on rape"} +{"qid": "test1204", "pid": "16856832", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "\"Wild Bactrian camel\"\nBactrian camel and has been described as \"\"lithe, and slender-legged, with very narrow feet and a body that looks laterally compressed.\"\" The humps of the wild Bactrian camel are smaller, lower and more conical in shape than those of the Bactrian camel. These humps may often be about half the size of those of a domesticated Bactrian camel. The wild Bactrian camel has a flatter skull (\"\"havtagai\"\", the Mongolian name for a wild Bactrian camel, means \"\"flat-head\"\") and a different shape of foot. The wool of the wild Bactrian camel is always sandy coloured and shorter and sparser than that"} +{"qid": "test1204", "pid": "2150873", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "Dromedary\nshares the genus \"\"Camelus\"\" with the Bactrian camel (\"\"C. bactrianus\"\") and the wild Bactrian camel (\"\"C. ferus\"\"). The dromedary belongs to the family Camelidae. The ancient Greek philosopher Aristotle (4th century BC) was the first to describe the species of \"\"Camelus\"\". He named two species in his \"\"History of Animals\"\"; the one-humped Arabian camel and the two-humped Bactrian camel. The dromedary was given its current binomial name \"\"Camelus dromedarius\"\" by Swedish zoologist Carl Linnaeus in his 1758 publication \"\"Systema Naturae\"\". In 1927, British veterinarian Arnold Leese classified dromedaries by their basic habitats; the hill camels are small, muscular animals and"} +{"qid": "test1204", "pid": "2548121", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "\"Bactrian camel\"\nBactrian camel The Bactrian camel (\"\"Camelus bactrianus\"\") is a large, even-toed ungulate native to the steppes of Central Asia. The Bactrian camel has two humps on its back, in contrast to the single-humped dromedary camel. Its population of two million exists mainly in the domesticated form. Their name comes from the ancient historical region of Bactria. Domesticated Bactrian camels have served as pack animals in inner Asia since ancient times. With its tolerance for cold, drought, and high altitudes, it enabled the travel of caravans on the Silk Road. A small number of feral Bactrian camels still roam the Mangystau"} +{"qid": "test1204", "pid": "79743", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "Camel\nCamel A camel is an even-toed ungulate in the genus \"\"Camelus\"\" that bears distinctive fatty deposits known as \"\"humps\"\" on its back. Camels have long been domesticated and, as livestock, they provide food (milk and meat) and textiles (fiber and felt from hair). As working animals, camels—which are uniquely suited to their desert habitats—are a vital means of transport for passengers and cargo. There are three surviving species of camel. The one-humped dromedary makes up 94% of the world's camel population, and the two-humped Bactrian camel makes up the remainder. The Wild Bactrian camel is a separate species and is"} +{"qid": "test1204", "pid": "5997854", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "Camelops\nspear to be attached to the stone tool. Biochemical analyses have shown that Clovis tools were used in butchering camels. Because soft tissues are generally not preserved in the fossil record, it is not certain if \"\"Camelops\"\" possessed a hump, like modern camels, or lacked one, like its modern llama relatives. Because one-humped camels are now known to have evolved from two-humped camels, it would follow that \"\"Camelops\"\", if it had humps, probably had two, as this would be the more parsimonious view. \"\"Camelops hesternus\"\" was approximately tall at the shoulder, making it slightly taller than modern Bactrian camels; it"} +{"qid": "test1204", "pid": "2150869", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "Dromedary\nDromedary The dromedary ( or ), also called the Arabian camel (\"\"Camelus dromedarius\"\"), is a large, even-toed ungulate with one hump on its back. The dromedary is the tallest of the three species of camel; adult males stand at the shoulder, while females are tall. Males typically weigh between , and females weigh between . The species' distinctive features include its long, curved neck, narrow chest, a single hump (compared with two on the Bactrian camel and wild Bactrian camel), and long hairs on the throat, shoulders and hump. The coat is generally a shade of brown. The hump, tall"} +{"qid": "test1204", "pid": "2548127", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "\"Bactrian camel\"\nbase genetic code. However, with so few wild camels, what the natural genetic diversity within a population would have been is not clear. Another difference is the ability of these wild camels to drink saltwater slush, although whether the camel can extract useful water from it is not yet certain. Domesticated camels are unable to drink such salty water. The Bactrian camel is the largest mammal in its native range and is the largest living camel. Shoulder height is from , head-and-body length is , and the tail length is . At the top of the humps, the average height"} +{"qid": "test1204", "pid": "2548122", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "\"Bactrian camel\"\nProvince of southwest Kazakhstan and the Nubra Valley in India. Bactrian camels, whether domesticated or feral, are a separate species from the wild Bactrian camel which is the only truly wild (as opposed to feral) species of camel in the world. The Bactrian camel shares the genus \"\"Camelus\"\" with the dromedary (\"\"C. dromedarius\"\") and the wild Bactrian camel (\"\"C. ferus\"\"). The Bactrian camel belongs to the family Camelidae. The ancient Greek philosopher Aristotle was the first to describe the species of \"\"Camelus\"\": in his 4th-century-BC \"\"History of Animals\"\" he identified the one-humped Arabian camel and the two-humped Bactrian camel. The"} +{"qid": "test1204", "pid": "2548131", "query": "what is the name of a camel with 2 humps", "answer": "Bactrian", "passage": "\"Bactrian camel\"\nliters at once. When well fed, the humps are plump and erect, but as resources decline, the humps shrink and lean to the side. When moving faster than a walking speed, they pace, by stepping forwards with both legs on the same side (as opposed to trotting, using alternate diagonals as done by most other quadrupeds). Speeds of up to have been recorded, but they rarely move this fast. Bactrian camels are also said to be good swimmers. The sense of sight is well developed and the sense of smell is extremely good. The lifespan of Bactrian camels is estimated"} +{"qid": "test1206", "pid": "6093882", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Momma's House 2\"\nwho was originally played by Jascha Washington. Nia Long also did not reprise her role, which resulted in her character, Sherry, being written out. The film received overwhelmingly negative reviews from film critics as well. Big Momma's House 2 Big Momma's House 2 is a 2006 American crime comedy film, the sequel to 2000's \"\"Big Momma's House\"\" and the second installment of the \"\"Big Momma\"\" trilogy. The film was directed by John Whitesell and starring Martin Lawrence reprising his role as FBI agent Malcolm Turner. The film was released theatrically on January 27, 2006 and was critically panned as critics"} +{"qid": "test1206", "pid": "14594541", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Mommas: Like Father, Like Son\"\nBig Momma, with other characters from the movie. Big Mommas: Like Father, Like Son Big Mommas: Like Father, Like Son (also known as \"\"Big Momma's House 3\"\") is a 2011 American action comedy film and the third and final installment in the \"\"Big Momma\"\" trilogy, which is a sequel to 2000's \"\"Big Momma's House\"\" and 2006's \"\"Big Momma's House 2\"\". The film was directed by John Whitesell and starring Martin Lawrence reprising his role as FBI agent Malcolm Turner. Jascha Washington declined to reprise his role as Trent Pierce from the original film, and Brandon T. Jackson replaced him for"} +{"qid": "test1206", "pid": "14594529", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Mommas: Like Father, Like Son\"\nBig Mommas: Like Father, Like Son Big Mommas: Like Father, Like Son (also known as \"\"Big Momma's House 3\"\") is a 2011 American action comedy film and the third and final installment in the \"\"Big Momma\"\" trilogy, which is a sequel to 2000's \"\"Big Momma's House\"\" and 2006's \"\"Big Momma's House 2\"\". The film was directed by John Whitesell and starring Martin Lawrence reprising his role as FBI agent Malcolm Turner. Jascha Washington declined to reprise his role as Trent Pierce from the original film, and Brandon T. Jackson replaced him for his role. The film was released on February"} +{"qid": "test1206", "pid": "6093873", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Momma's House 2\"\nBig Momma's House 2 Big Momma's House 2 is a 2006 American crime comedy film, the sequel to 2000's \"\"Big Momma's House\"\" and the second installment of the \"\"Big Momma\"\" trilogy. The film was directed by John Whitesell and starring Martin Lawrence reprising his role as FBI agent Malcolm Turner. The film was released theatrically on January 27, 2006 and was critically panned as critics felt that a sequel was unnecessary. Unlike the first film, \"\"Big Momma's House 2\"\" takes on a family friendly tone compared to the original film's more mature target demographic. The film was panned by film"} +{"qid": "test1206", "pid": "17563545", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Momma's House\"\nBig Momma's House Big Momma's House is a 2000 American action comedy film directed by Raja Gosnell, written by Darryl Quarles and Don Rhymer, and starring Martin Lawrence as FBI agent Malcolm Turner. The majority of the film took place in Cartersville, Georgia, but the film was shot on location in California. The prime shooting spots were Los Angeles and Orange County. The film is also notable for being one of only four titles to be released on the EVD video format. It is the first installment in a trilogy series called \"\"Big Momma\"\", which includes two sequels, \"\"Big Momma's"} +{"qid": "test1206", "pid": "17563558", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Momma's House\"\nDVD. Big Momma's House Big Momma's House is a 2000 American action comedy film directed by Raja Gosnell, written by Darryl Quarles and Don Rhymer, and starring Martin Lawrence as FBI agent Malcolm Turner. The majority of the film took place in Cartersville, Georgia, but the film was shot on location in California. The prime shooting spots were Los Angeles and Orange County. The film is also notable for being one of only four titles to be released on the EVD video format. It is the first installment in a trilogy series called \"\"Big Momma\"\", which includes two sequels, \"\"Big"} +{"qid": "test1206", "pid": "2478931", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Martin Lawrence\"\nand \"\"Big Momma's House\"\". He also starred in critical- and box-office failures, including \"\"Black Knight\"\" and \"\"National Security\"\". Regardless, his salary steadily increased to over $10 million per film role. He continues to work in film, with such films as \"\"Big Momma's House 2\"\", which opened at No. 1 at North American box office and grossed almost $28 million its first weekend, and \"\"Wild Hogs\"\" (2007), in which he played a bored suburbanite seeking adventure on the open road in a biker comedy alongside John Travolta, Tim Allen and William H. Macy. In 2006, Lawrence appeared on \"\"Inside the Actors"} +{"qid": "test1206", "pid": "6972172", "query": "who plays big momma in big mommas house", "answer": "Ella Mitchell", "passage": "\"Ella Mitchell\"\nElla Mitchell Ella Mitchell (15 August 1937) is an African-American soul singer and actress. Mitchell is best remembered for playing the comic role as Hattie Mae Pierce (Big Momma) in the 2000 comedy film \"\"Big Momma's House\"\" and Evillene the evil witch in the original Broadway theatre production of the musical \"\"The Wiz\"\". Mitchell appeared in the 1975 film \"\"Lord Shango\"\". Mitchell reprised her role as Evillene when \"\"The Wiz\"\" revived on Broadway in 1984. She reprised the role again when the show was on tour in 1992. Mitchell was a member of The Gospel All Stars and The Bradford"} +{"qid": "test1206", "pid": "6972173", "query": "who plays big momma in big mommas house", "answer": "Ella Mitchell", "passage": "\"Ella Mitchell\"\nSingers, and performed with the Alvin Ailey American Dance Theater for 30 years. Ella Mitchell Ella Mitchell (15 August 1937) is an African-American soul singer and actress. Mitchell is best remembered for playing the comic role as Hattie Mae Pierce (Big Momma) in the 2000 comedy film \"\"Big Momma's House\"\" and Evillene the evil witch in the original Broadway theatre production of the musical \"\"The Wiz\"\". Mitchell appeared in the 1975 film \"\"Lord Shango\"\". Mitchell reprised her role as Evillene when \"\"The Wiz\"\" revived on Broadway in 1984. She reprised the role again when the show was on tour in"} +{"qid": "test1206", "pid": "14594538", "query": "who plays big momma in big mommas house", "answer": "Martin Lawrence", "passage": "\"Big Mommas: Like Father, Like Son\"\n$32 million to make the film, less than previous films in the series. They were able to reduce costs because Lawrence agreed to take a pay cut and thanks to tax incentives in Georgia. Principal photography began in April 2010. \"\"Big Mommas: Like Father, Like Son\"\" was panned by critics. On Rotten Tomatoes the film has an approval rating of 5% based on 60 reviews with an average rating of 2.7/10. The site's critical consensus reads, \"\"Unnecessary, unfunny, and generally unwelcome, \"\"Big Mommas: Like Father, Like Son\"\" offers more of the same for fans of Martin Lawrence's perplexingly popular series.\"\""} +{"qid": "test1207", "pid": "11684974", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in Missouri\"\ncandidate secured a majority of the electoral vote. It was also the only presidential election in which the candidate who received a plurality of electoral votes (Andrew Jackson) did not become President, a source of great bitterness for Jackson and his supporters, who proclaimed the election of Adams a corrupt bargain. Voters chose three representatives, or electors to the Electoral College, who voted for President and Vice President. Missouri voted for the Democratic-Republican candidate, Henry Clay. Statewide winner in bold. 1824 United States presidential election in Missouri This article describes the United States presidential election, 1824, in Missouri. Missouri has"} +{"qid": "test1207", "pid": "17129821", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in Maryland\"\n1824 United States presidential election in Maryland The 1824 United States presidential election in Maryland took place between October 26 and December 2, 1824, as part of the 1824 United States presidential election. Voters chose eleven representatives, or electors to the Electoral College, who voted for President and Vice President. During this election, the Democratic-Republican Party was the only major national party, and four different candidates from this party sought the Presidency. Although Maryland voted for John Quincy Adams over Andrew Jackson, William H. Crawford and Henry Clay, only three electoral votes were assigned to Adams, while Jackson received seven"} +{"qid": "test1207", "pid": "17129822", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in Maryland\"\nand Crawford received one. Adams won Maryland by a margin of 0.32%. 1824 United States presidential election in Maryland The 1824 United States presidential election in Maryland took place between October 26 and December 2, 1824, as part of the 1824 United States presidential election. Voters chose eleven representatives, or electors to the Electoral College, who voted for President and Vice President. During this election, the Democratic-Republican Party was the only major national party, and four different candidates from this party sought the Presidency. Although Maryland voted for John Quincy Adams over Andrew Jackson, William H. Crawford and Henry Clay,"} +{"qid": "test1207", "pid": "504064", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election\"\nspeak on their behalf. The 1824 presidential election marked the final collapse of the Republican-Federalist political framework. Considering the large numbers of candidates and strong regional preferences, it is not surprising that the results of the election of 1824 were inconclusive. The electoral map confirmed the candidates' sectional support, with Adams winning outright in the New England states, Jackson gleaning success in states throughout the nation, Clay attracting votes from the West, and Crawford attracting votes from the eastern South. Andrew Jackson received more electoral and popular votes than any other candidate, but not the majority of 131 electoral votes"} +{"qid": "test1207", "pid": "2345480", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"William H. Crawford\"\npresidency. Crawford suffered a severe stroke in 1823, but nonetheless sought to succeed Monroe in the 1824 election. The Democratic-Republican Party splintered into factions as several others also sought the presidency. No candidate won a majority of the electoral vote, so the United States House of Representatives chose the president in a contingent election. Under the terms of the Constitution, the House selected from the three candidates who received the most electoral votes, leaving Andrew Jackson, John Quincy Adams, and Crawford in the running. The House selected Adams, who asked Crawford to remain at Treasury. Refusing Adams' offer, Crawford accepted"} +{"qid": "test1207", "pid": "17129717", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in Illinois\"\n1824 United States presidential election in Illinois The 1824 United States presidential election in Illinois took place between October 26 and December 2, 1824, as part of the 1824 United States presidential election. Voters chose three representatives, or electors to the Electoral College, who voted for President and Vice President. During this election, the Democratic-Republican Party was the only major national party, and four different candidates from this party sought the Presidency. Although Illinois voted for John Quincy Adams over Andrew Jackson, Henry Clay, and William H. Crawford, only one of the state's electoral votes were assigned to Adams, while"} +{"qid": "test1207", "pid": "18133520", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States elections\"\nwhom were members of the Democratic-Republican Party. The Democratic-Republicans had largely been successful in fielding only one presidential candidate in previous elections (except in 1812), but the breakdown of the congressional nominating caucus and a lack of meaningful opposition from the Federalists allowed for a multi-candidate field. Senator Andrew Jackson from Tennessee, Secretary of State John Quincy Adams, Secretary of the Treasury William Crawford, and Speaker of the House Henry Clay all received electoral votes. With no candidate receiving a majority of the electoral vote, the House chose among the three candidates (Jackson, Adams, and Crawford) with the most electoral"} +{"qid": "test1207", "pid": "19693919", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"United States presidential elections in New York\"\na majority of the electoral vote. It was also the only presidential election in which the candidate who received a plurality of electoral votes (Andrew Jackson) did not become President, a source of great bitterness for Jackson and his supporters, who proclaimed the election of Adams a corrupt bargain. In elections prior to 1824, New York did not conduct a popular vote. Each Elector was appointed by the state legislature. United States presidential elections in New York Following is a table of United States presidential elections in New York, ordered by year. Since its admission to statehood in 1788, New"} +{"qid": "test1207", "pid": "2960704", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"Stephen Van Rensselaer\"\nreceived a majority of electoral votes in the 1824 presidential election, the U.S. House had to choose from the top three finishers—Adams, Andrew Jackson, and William H. Crawford. House members voted first individually by state, and then each state cast one ballot for the candidate who received a majority of the state's House delegation; a candidate had to carry 13 state delegations to win the election. Van Rensselaer had intended to vote for Crawford, but changed his mind and voted for Adams. His vote gave Adams a majority of the New York delegation; winning New York gave Adams 13 states"} +{"qid": "test1207", "pid": "17122986", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in New York\"\n1824 United States presidential election in New York The 1824 United States presidential election in New York took place between October 26 and December 2, 1824, as part of the 1824 United States presidential election. The state legislature chose thirty-six representatives, or electors to the Electoral College, who voted for President and Vice President. During this election, the Democratic-Republican Party was the only major national party, and four different candidates from this party sought the Presidency. New York cast twenty-six electoral votes for John Quincy Adams, five for William H. Crawford, four for Henry Clay and one for Andrew Jackson."} +{"qid": "test1207", "pid": "17122987", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in New York\"\n1824 United States presidential election in New York The 1824 United States presidential election in New York took place between October 26 and December 2, 1824, as part of the 1824 United States presidential election. The state legislature chose thirty-six representatives, or electors to the Electoral College, who voted for President and Vice President. During this election, the Democratic-Republican Party was the only major national party, and four different candidates from this party sought the Presidency. New York cast twenty-six electoral votes for John Quincy Adams, five for William H. Crawford, four for Henry Clay and one for Andrew Jackson."} +{"qid": "test1207", "pid": "19882587", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"Faithless electors in the 2016 United States presidential election\"\nare bound by federal law in the event that state law were to contradict federal law. Only four times in American history (1876, 1888, 2000 and 2016) has a presidential candidate lost the popular vote but achieved the electoral college majority, thereby assuming the presidency; in the last three such cases, no candidate polled an absolute majority of the popular vote. In an additional case (1824) the candidate with the highest popular vote (Andrew Jackson) also had the most electoral votes but, crucially, did \"\"not\"\" have a majority in the Electoral College. Despite John Quincy Adams's having lost the popular"} +{"qid": "test1207", "pid": "13021462", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"United States presidential election\"\ndelegation. Electors chosen this way are pledged to vote for a particular presidential and vice presidential candidate (offered by the same political party). So, while the Constitution says that the President and Vice President are chosen separately, in practice they are chosen together. The 12th Amendment also established rules when no candidate wins a majority vote in the Electoral College. In the presidential election of 1824, Andrew Jackson received a plurality, but not a majority, of electoral votes cast. The election was thrown to the House of Representatives, and John Quincy Adams was elected to the presidency. A deep rivalry"} +{"qid": "test1207", "pid": "17129718", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"1824 United States presidential election in Illinois\"\nthe remaining two were assigned to Jackson. Adams won Illinois by a margin of 5.23%. 1824 United States presidential election in Illinois The 1824 United States presidential election in Illinois took place between October 26 and December 2, 1824, as part of the 1824 United States presidential election. Voters chose three representatives, or electors to the Electoral College, who voted for President and Vice President. During this election, the Democratic-Republican Party was the only major national party, and four different candidates from this party sought the Presidency. Although Illinois voted for John Quincy Adams over Andrew Jackson, Henry Clay, and"} +{"qid": "test1207", "pid": "19692265", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"United States presidential elections in Connecticut\"\nWar. The election of 1824 was a complex realigning election following the collapse of the prevailing Democratic-Republican Party, resulting in four different candidates each claiming to carry the banner of the party, and competing for influence in different parts of the country. The election was the only one in history to be decided by the House of Representatives under the provisions of the Twelfth Amendment to the United States Constitution after no candidate secured a majority of the electoral vote. It was also the only presidential election in which the candidate who received a plurality of electoral votes (Andrew Jackson)"} +{"qid": "test1207", "pid": "19692268", "query": "who received the most (but not a majority of) electoral votes in 1824", "answer": "Andrew Jackson", "passage": "\"United States presidential elections in Delaware\"\nWar. The election of 1824 was a complex realigning election following the collapse of the prevailing Democratic-Republican Party, resulting in four different candidates each claiming to carry the banner of the party, and competing for influence in different parts of the country. The election was the only one in history to be decided by the House of Representatives under the provisions of the Twelfth Amendment to the United States Constitution after no candidate secured a majority of the electoral vote. It was also the only presidential election in which the candidate who received a plurality of electoral votes (Andrew Jackson)"} +{"qid": "test1208", "pid": "1406409", "query": "who plays the walking boss in cool hand luke", "answer": "Morgan Woodward", "passage": "\"Cool Hand Luke\"\nsalary was \"\"multiplied by ten the minute (he) won,\"\" also adding \"\"the happiest part was that I didn't have to play only villains anymore.\"\" Strother Martin, known for his appearances in westerns, was cast as the Captain, a prison warden who is depicted as a cruel and insensitive leader, severely punishing Luke for his escapes. The role of Luke's dying mother, Arletta, who visits him in prison, was passed to Jo Van Fleet after it was rejected by Bette Davis. Morgan Woodward was cast as Boss Godfrey, a laconic, cruel and remorseless prison officer who Woodward described as a \"\"walking"} +{"qid": "test1208", "pid": "7262682", "query": "who plays the walking boss in cool hand luke", "answer": "Morgan Woodward", "passage": "\"Morgan Woodward\"\nMorgan Woodward Thomas Morgan Woodward (born September 16, 1925) is an American actor. He is best known for his recurring role on the soap opera \"\"Dallas\"\" as Marvin \"\"Punk\"\" Anderson. He also played the silent, sunglasses-wearing \"\"man with no eyes\"\", Boss Godfrey (the Walking Boss) in \"\"Cool Hand Luke\"\" (1967), and has the most guest appearances on \"\"Gunsmoke\"\", according to \"\"Gunsmoke\"\" by Barabas. Woodward was born in Fort Worth, Texas, the third of five sons of Dr. Valin Woodward and his wife, Frances McKinley. He grew up in Arlington, Texas, graduating from high school in 1944. After serving in the"} +{"qid": "test1208", "pid": "7262691", "query": "who plays the walking boss in cool hand luke", "answer": "Morgan Woodward", "passage": "\"Morgan Woodward\"\nHeritage Museum. In 1986, he was inducted into the Order of West Range of Pi Kappa Alpha fraternity. Woodward made many other television guest appearances, including: Morgan Woodward Thomas Morgan Woodward (born September 16, 1925) is an American actor. He is best known for his recurring role on the soap opera \"\"Dallas\"\" as Marvin \"\"Punk\"\" Anderson. He also played the silent, sunglasses-wearing \"\"man with no eyes\"\", Boss Godfrey (the Walking Boss) in \"\"Cool Hand Luke\"\" (1967), and has the most guest appearances on \"\"Gunsmoke\"\", according to \"\"Gunsmoke\"\" by Barabas. Woodward was born in Fort Worth, Texas, the third of five"} +{"qid": "test1208", "pid": "1406426", "query": "who plays the walking boss in cool hand luke", "answer": "Morgan Woodward", "passage": "\"Cool Hand Luke\"\nof the era. The film was an inductee of the 2005 National Film Registry list. The book was adapted into a West End play by Emma Reeves. It opened at London's Aldwych Theatre starring Marc Warren, but closed after less than two months, following poor reviews. The show was chosen by \"\"The Times\"\" both as \"\"Critic's Choice\"\" and \"\"What the Critics Would Pay To See.\"\" An episode of the television show \"\"The Dukes of Hazzard\"\" entitled \"\"Cool Hands Luke and Bo\"\" was shown with Morgan Woodward playing \"\"Colonel Cassius Claiborne\"\" the boss of a neighboring county and warden of its"} +{"qid": "test1208", "pid": "1406393", "query": "who plays the walking boss in cool hand luke", "answer": "Morgan Woodward", "passage": "\"Cool Hand Luke\"\nwhich begins with \"\"What we've got here is failure to communicate,\"\" was listed at No. 11 on the American Film Institute's list of the 100 most memorable movie lines. Decorated war veteran Lucas \"\"Luke\"\" Jackson (Paul Newman), is arrested for cutting parking meters off their poles one drunken night. He is sentenced to two years in prison and sent to a Florida chain gang prison run by a stern warden, the Captain (Strother Martin), and a stoic rifleman, Walking Boss Godfrey (Morgan Woodward), whose eyes are always covered by a pair of mirrored sunglasses. Carr (Clifton James) the floorwalker, tells"} +{"qid": "test1209", "pid": "16236105", "query": "what is the third book in the lunar chronicles", "answer": "Cress", "passage": "\"The Lunar Chronicles\"\nstop the tyranny of Queen Levana and her thaumaturge, Sybil. \"\"Cress\"\" is the third book in \"\"The Lunar Chronicles\"\" and fourth chronologically. It was published on February 4, 2014. Crescent Moon, or \"\"Cress\"\" Darnel (based on Rapunzel), is an imprisoned shell (a Lunar without special abilities) working with Sybil to help Lunar ships. Living alone on a satellite and harboring an enormous crush on Carswell Thorne, she secretly works to sabotage the wicked Lunar queen, and eventually Cress teams up with Cinder and becomes entangled in her plot to save Earth. As complications arise and the crew is separated, they"} +{"qid": "test1209", "pid": "2737594", "query": "what is the third book in the lunar chronicles", "answer": "Cress", "passage": "Rapunzel\nwhich she re-envisions sixteen of the \"\"Grimm's Fairy tales\"\". \"\"Cress\"\" the third book in the Lunar Chronicles is a young adult science fiction media of Rapunzel written by Marissa Meyer. Crescent, aka \"\"Cress\"\" is a prisoner on a satellite who is rescued and falls in love with her hero \"\"Capt. Thorne\"\" amidst the story about \"\"Cinder\"\" a cyborg version of Cinderella. Lunar Chronicles is a tetralogy with a futuristic take on classic fairytales which also include characters such as \"\"Cinder\"\" (Cinderella), \"\"Scarlet\"\" (Red Riding Hood) and \"\"Winter\"\" (Snow White). Kate Forsyth has written a book that contains both commentary on"} +{"qid": "test1209", "pid": "16052235", "query": "what is the third book in the lunar chronicles", "answer": "Cress", "passage": "\"Winter (Meyer novel)\"\nWinter (Meyer novel) Winter is a 2015 young adult science fiction novel written by American author Marissa Meyer and published by Macmillan Publishers through their subsidiary Feiwel & Friends. It is the fourth and final book in \"\"The Lunar Chronicles\"\" series and the sequel to \"\"Cress\"\". The story is loosely based on the fairy tale of \"\"Snow White\"\", similar to its predecessors \"\"Cinder\"\", \"\"Scarlet\"\" and \"\"Cress\"\" which were loosely based on \"\"Cinderella\"\", \"\"Little Red Riding Hood\"\" and \"\"Rapunzel\"\" respectively. It was a \"\"USA Today\"\" and \"\"Wall Street Journal\"\" bestselling novel. Due to Princess Winter's refusal to use the Lunar gift,"} +{"qid": "test1210", "pid": "9371310", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rules of Engagement (TV series)\"\non that night. It also marked the fourth night on which the series would air, with it previously airing on Mondays, Wednesdays (two airings), and Thursdays. On October 7, 2011, however, it was announced that \"\"Rules of Engagement\"\" would move back to its 8:30PM EST Thursday timeslot following \"\"The Big Bang Theory\"\", replacing new sitcom \"\"How to Be a Gentleman\"\" which was moved to the new Saturday time slot. The episode order was cut from the original 18, down to 13 (plus two unaired episodes from season five) on November 14, 2011. Effective January 12, 2012, CBS removed \"\"Rules of"} +{"qid": "test1210", "pid": "9371311", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rules of Engagement (TV series)\"\nEngagement\"\" from its Thursday lineup, replacing it with the new sitcom \"\"Rob\"\" starring Rob Schneider. \"\"Rules\"\" would return to its Thursday 8:30 PM time slot on March 29, after \"\"Rob\"\" had finished airing its 8-episode order, resulting in a total of 15 episodes in season 6. On May 21, 2012, CBS renewed \"\"Rules of Engagement\"\" for a seventh season of 13 episodes to air mid-season, bringing the total number of produced episodes to 100. Season 7 began airing on Mondays at 8:30, starting February 4, 2013. On May 10, 2013, \"\"Rules of Engagement\"\" was cancelled by CBS after seven seasons"} +{"qid": "test1210", "pid": "9371315", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rules of Engagement (TV series)\"\nseason, and are included in the fifth season collection. Therefore, the sixth season’s DVD release features the 13 episodes produced over that time period, versus the 15 that were broadcast by CBS. Polish channel TVN started filming its own version of the show, called \"\"Reguły Gry\"\" (literally meaning \"\"Rules of the Game\"\" in Polish). It premiered on 16 February 2012 on TVN sister channel TVN 7 as its first original production. Rules of Engagement (TV series) Rules of Engagement is an American sitcom that ran on CBS from February 5, 2007, to May 20, 2013, originally airing as a mid-season"} +{"qid": "test1210", "pid": "9371308", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rules of Engagement (TV series)\"\nthat this season would start in September, in contrast to its usual midseason start, and received an expanded 24-episode order. (The fifth season was the first and only season to have a full-season order.) The first 15 episodes aired on Monday nights, usually in the 8:30 pm Eastern/7:30 pm Central time slot following \"\"How I Met Your Mother\"\". Then on February 24, 2011, the series moved to Thursdays at 8:30 pm Eastern/7:30 pm Central, following \"\"The Big Bang Theory\"\", after the cancellation of \"\"$h*! My Dad Says\"\". On January 31, 2011, CBS ordered an additional two episodes of the series"} +{"qid": "test1210", "pid": "9371305", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rules of Engagement (TV series)\"\nRules of Engagement (TV series) Rules of Engagement is an American sitcom that ran on CBS from February 5, 2007, to May 20, 2013, originally airing as a mid-season replacement. The series was produced by Adam Sandler's Happy Madison Productions in association with CBS Television Studios and Sony Pictures Television (SPT controls the North American rights while CBS controls the international rights). Although the show received negative reviews throughout its run, it always earned reasonably good ratings, helping the show reach 100 episodes (typically the minimum needed for syndication) over seven seasons. Two couples and their single friend deal with"} +{"qid": "test1210", "pid": "15788407", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rule of marteloio\"\nto engage in tacking, changing bearing repeatedly. How does it return to its intended course? This is where the rule of marteloio came in. The rule of marteloio addressed the problem of changing bearing at sea. More specifically, it helped a navigator plot the traverse from one navigational course to another. For example, suppose a ship was to sail from Corsica to Genoa, a course bearing straight north (\"\"Tramontana\"\") for some 130 miles. But the winds are not cooperative, and the ship was forced to sail northwest (\"\"Maestro\"\") for some 70 miles. How does it return to its original route?"} +{"qid": "test1210", "pid": "9371307", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Rules of Engagement (TV series)\"\nshow. The series was renewed for a second season, which began as a mid-season replacement for \"\"The New Adventures of Old Christine\"\" on Monday, September 24, 2007, with production halted after nine episodes on November 6, 2007, in the wake of a writers' strike. After the strike ended, CBS announced that the show would return April 14, 2008, with a further six episodes. Seasons three and four were both mid-season entries launched in March 2009 and March 2010. On May 18, 2010, it was announced that CBS had renewed \"\"Rules of Engagement\"\" for a 5th season. It was later announced"} +{"qid": "test1210", "pid": "11515910", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"2008 Florida State Seminoles football team\"\n2008 Florida State Seminoles football team The 2008 Florida State Seminoles football team represented Florida State University during the 2008 NCAA Division I FBS football season. The team was coached by Bobby Bowden and played their home games at Doak Campbell Stadium in Tallahassee, Florida. It was Florida State's 17th season as a member of the Atlantic Coast Conference (ACC). The Seminoles were without as many as 12 scholarship players for the first three games of the season because of suspensions carrying over from the previous season for violating team rules, although it has not been disclosed how many of"} +{"qid": "test1210", "pid": "8166261", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Closing Time (Semisonic song)\"\n\"\"The Office\"\" titled \"\"Doomsday\"\", it is revealed that new manager Andy Bernard ends every work day by leading the office in singing \"\"Closing Time\"\". While no one in the office particularly likes the song (and Stanley Hudson admits his joy on hearing Andy sing it solely relates to his appreciation for anything that ends a workday), Wilson felt its usage on the show was enjoyable. The song was featured in the series finale of \"\"Rules of Engagement\"\" (season 7 episode 13) as the final credits were played. The song was featured in the television series \"\"How I Met Your Mother\"\","} +{"qid": "test1210", "pid": "20450399", "query": "how many seasons of rules of engagement is there", "answer": "7", "passage": "\"Number Crunch\"\nthe previous episode, which was watched by 12.66 million viewers with a 2.8/7 in the 18-49 demographics. With these ratings, \"\"Person of Interest\"\" was the most watched show on CBS for the night beating \"\"The Mentalist\"\" and \"\"Rules of Engagement\"\", first on its timeslot and third for the night in the 18-49 demographics, behind a rerun of \"\"The Big Bang Theory\"\", and \"\"The X Factor\"\". \"\"Number Crunch\"\" received generally positive reviews from critics. Keysha Couzens of \"\"TV Overmind\"\" wrote \"\"As \"\"Person of Interest\"\" unfolds during its first season, it's continued to impress with how they lay out their story each"} +{"qid": "test1212", "pid": "5958229", "query": "who won the super heavyweight gold medal at the 2000 olympics", "answer": "Audley Harrison", "passage": "\"Mukhtarkhan Dildabekov\"\nMukhtarkhan Dildabekov Mukhtarkhan Qabylanbekuly Dildabekov (; born March 19, 1976 in Shymkent, Ontustik Qazaqstan) is a Kazakh boxer, best known to win the silver medal in the Super Heavyweight division (+91 kg) at the 2000 Summer Olympics. At the 1999 World Amateur Boxing Championships in Houston, Texas he also won silver losing to Sinan Şamil Sam. In 2000 at the Olympics he lost to the Briton Audley Harrison. On his way to the final he has beaten Cuban Alexis Rubalcaba and the Uzbek fighter Rustam Saidov. Results: He won gold at the Asian Games 1998 but had to settle for"} +{"qid": "test1212", "pid": "4303246", "query": "who won the super heavyweight gold medal at the 2000 olympics", "answer": "Audley Harrison", "passage": "\"Audley Harrison\"\nAudley Harrison Audley Hugh Harrison, (born 26 October 1971) is a British former professional boxer who competed from 2001 to 2013. As an amateur he represented Great Britain at the 2000 Olympics, winning a gold medal in the super-heavyweight division and becoming the first ever British boxer to win Olympic gold in that division. Harrison turned professional the following year after signing a contract with BBC Sport, and went on to have seventeen fights on the network before their cancellation of all boxing broadcasts. In his professional career he challenged for the WBA, British, and Commonwealth heavyweight titles. In 2009,"} +{"qid": "test1212", "pid": "4570054", "query": "who won the super heavyweight gold medal at the 2000 olympics", "answer": "Audley Harrison", "passage": "\"Paolo Vidoz\"\nPaolo Vidoz Paolo Vidoz (born 21 August 1970 in Gorizia) is a retired boxer from Italy, who won the Olympic bronze medal, twice won the bronze medal at the World Amateur Boxing Championships: 1997 and 1999 and also won a silver medal at the European Championships. He won Olympic Bronze in 2000 at Super Heavyweight after beating Calvin Brock and Samuel Peter but lost to Audley Harrison. His first match was held at Madison Square Garden on 27 January 2001, against Chris Morris. He won the match via knockout at 2 minutes and 22 seconds in the first round. Vidoz"} +{"qid": "test1212", "pid": "4570059", "query": "who won the super heavyweight gold medal at the 2000 olympics", "answer": "Audley Harrison", "passage": "\"Paolo Vidoz\"\nafter deciding to hang up the gloves following the loss. Paolo Vidoz Paolo Vidoz (born 21 August 1970 in Gorizia) is a retired boxer from Italy, who won the Olympic bronze medal, twice won the bronze medal at the World Amateur Boxing Championships: 1997 and 1999 and also won a silver medal at the European Championships. He won Olympic Bronze in 2000 at Super Heavyweight after beating Calvin Brock and Samuel Peter but lost to Audley Harrison. His first match was held at Madison Square Garden on 27 January 2001, against Chris Morris. He won the match via knockout at"} +{"qid": "test1213", "pid": "5082606", "query": "where can i get a state issued id", "answer": "DMV", "passage": "\"Real ID Act\"\nin the proposed rulemaking process, it was not included in the latest rulemaking process. DHS could consider additional technological requirements to be incorporated into the licenses after consulting with the states. In addition, DHS has required the use of RFID chips in its Enhanced Driver's License program, which the Department is proposing as an alternative to Real ID. Before a card can be issued, the applicant must provide the following documentation: Digital images of each document will be stored in each state DMV database. Section 202(c)(3) of the Real ID Act requires the states to \"\"verify, with the issuing agency,"} +{"qid": "test1215", "pid": "3048660", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "fourth ventricle", "passage": "\"Cerebral aqueduct\"\nname \"\"mesencephalic duct.\"\" The aqueduct functions to connect the third and fourth ventricles and to ensure the flow of cerebrospinal fluid through these areas. Aqueductal stenosis, a narrowing of the cerebral aqueduct, obstructs the flow of CSF and has been associated with non-communicating hydrocephalus. Such narrowing can be congenital, arise via tumor compression, or through cyclical gliosis secondary to an initial partial obstruction. Cerebral aqueduct The cerebral aqueduct, also known as the aqueductus mesencephali, mesencephalic duct, sylvian aqueduct, or aqueduct of Sylvius, is within the mesencephalon (or midbrain), contains cerebrospinal fluid (CSF), and connects the third ventricle in the diencephalon"} +{"qid": "test1215", "pid": "1643085", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "Hydrocephalus\nexamine its own lower eyelids. The elevated intracranial pressure may cause compression of the brain, leading to brain damage and other complications. Conditions among affected individuals vary widely. If the foramina of the fourth ventricle or the cerebral aqueduct are blocked, cerebrospinal fluid (CSF) can accumulate within the ventricles. This condition is called internal hydrocephalus and it results in increased CSF pressure. The production of CSF continues, even when the passages that normally allow it to exit the brain are blocked. Consequently, fluid builds inside the brain, causing pressure that dilates the ventricles and compresses the nervous tissue. Compression of"} +{"qid": "test1215", "pid": "3048659", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "\"Cerebral aqueduct\"\nCerebral aqueduct The cerebral aqueduct, also known as the aqueductus mesencephali, mesencephalic duct, sylvian aqueduct, or aqueduct of Sylvius, is within the mesencephalon (or midbrain), contains cerebrospinal fluid (CSF), and connects the third ventricle in the diencephalon to the fourth ventricle within the region of the mesencephalon and metencephalon, located dorsal to the pons and ventral to the cerebellum. The cerebral aqueduct, as other parts of the ventricular system of the brain, develops from the central canal of the neural tube, and it originates from the portion of the neural tube that is present in the developing mesencephalon, hence the"} +{"qid": "test1215", "pid": "3752809", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "\"Fourth ventricle\"\nFourth ventricle The fourth ventricle is one of the four connected fluid-filled cavities within the human brain. These cavities, known collectively as the ventricular system, consist of the left and right lateral ventricles, the third ventricle, and the fourth ventricle. The fourth ventricle extends from the cerebral aqueduct (\"\"aqueduct of Sylvius\"\") to the obex, and is filled with cerebrospinal fluid (CSF). The fourth ventricle has a characteristic diamond shape in cross-sections of the human brain. It is located within the pons or in the upper part of the medulla oblongata. CSF entering the fourth ventricle through the cerebral aqueduct can"} +{"qid": "test1215", "pid": "2708430", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "\"Human brain\"\ncisterns. The four ventricles, two lateral, a third, and a fourth ventricle, all contain choroid plexus that produces cerebrospinal fluid. The third ventricle lies in the midline and is connected to the lateral ventricles. A single duct, the cerebral aqueduct between the pons and the cerebellum, connects the third ventricle to the fourth ventricle. Three separate openings, the middle and two lateral apertures, drain the cerebrospinal fluid from the fourth ventricle to the cisterna magna one of the major cisterns. From here, cerebrospinal fluid circulates around the brain and spinal cord in the subarachnoid space, between the arachnoid mater and"} +{"qid": "test1215", "pid": "2698492", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "Midbrain\ncolliculi) - located just above the trochlear nerve - process certain auditory information. Each of the inferior colliculi sends information to the corresponding medial geniculate nucleus, with which it is directly connected. The homologous structures to the colliculi in some lower vertebrates (fish and amphibians) are called \"\"optic lobes\"\"; in those animals, they integrate sensory information from the eyes and certain auditory reflexes The cerebral aqueduct is the part of the ventricular system which links the third ventricle (rostally) with the fourth ventricle (caudally); as such it is responsible for continuing the circulation of cerebrospinal fluid. The cerebral aqueduct is"} +{"qid": "test1215", "pid": "4570309", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "\"Lateral ventricles\"\nlateral, third, and fourth ventricles, connected by thinner channels. In the lateral ventricles, specialized areas – choroid plexuses – appear, which produce cerebrospinal fluid. If its production is bigger than reabsorption or its circulation is blocked – the enlargement of the ventricles may appear and cause a hydrocephalus. The neural canal that does not expand and remains the same at the level of the midbrain superior to the fourth ventricle forms the cerebral aqueduct. The fourth ventricle narrows at the obex (in the caudal medulla), to become the central canal of the spinal cord. Fetal lateral ventricles may be diagnosed"} +{"qid": "test1215", "pid": "17565932", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "\"Aqueductal stenosis\"\nAqueductal stenosis Aqueductal stenosis is a narrowing of the aqueduct of Sylvius which blocks the flow of cerebrospinal fluid (CSF) in the ventricular system. Blockage of the aqueduct can lead to hydrocephalus, specifically as a common cause of congenital and/or obstructive hydrocephalus. The aqueduct of Sylvius is the channel which connects the third ventricle to the fourth ventricle and is the narrowest part of the CSF pathway with a mean cross-sectional area of 0.5 mm in children and 0.8 mm in adults. Because of its small size, the aqueduct is the most likely place for a blockage of CSF in"} +{"qid": "test1215", "pid": "94096", "query": "where does cerebrospinal fluid flow to when it exits the cerebral aqueduct", "answer": "the fourth ventricle", "passage": "\"Cerebrospinal fluid\"\nAlthough noted by Hippocrates, it was only in the 18th century that Emanuel Swedenborg is credited with its rediscovery, and as late as 1914 that Harvey W. Cushing demonstrated CSF was secreted by the choroid plexus. There is about 125–150 mL of CSF at any one time. This CSF circulates within the ventricular system of the brain. The ventricles are a series of cavities filled with CSF. The majority of CSF is produced from within the two lateral ventricles. From here, CSF passes through the interventricular foramina to the third ventricle, then the cerebral aqueduct to the fourth ventricle. From"} +{"qid": "test1216", "pid": "10616340", "query": "who translated the play neel darpan into english", "answer": "Michael Madhusudan Dutta", "passage": "\"Nil Darpan\"\nsensing its importance, mentioned Nil Durpan in conversation with the Lieutenant Governor, Grant.Grant expressed a wish to see a translation of it and print a few copies to be circulated privately amongst friends. After the discussion, Seton-Karr asked Long to arrange for a translation of the play in English. Michael Madhusudan Dutta translated it under the supervision of Long. Long as the editor cut out some coarse passages and wrote a short prefatory note for the play. When the translation was complete, Seton-Karr ordered printing of five hundred copies in lieu of Grant's wish of a few copies. Then Long"} +{"qid": "test1216", "pid": "10616562", "query": "who translated the play neel darpan into english", "answer": "Michael Madhusudan Dutta", "passage": "\"Indigo revolt\"\nforerunner of the non-violent passive resistance later successfully adopted by Gandhi. The revolt had a strong effect on the government, which immediately appointed the \"\"Indigo Commission\"\" in 1860. In the commission report, E. W. L. Tower noted that \"\"not a chest of Indigo reached England without being stained with human blood\"\". Dinabandhu Mitra's 1859 play Nil Darpan is based on the revolution. It was translated into English by Michael Madhusudan Dutta and published by Rev. James Long. It attracted much attention in England, where the people were stunned at the savagery of their countrymen. The British Government sent Rev. Long"} +{"qid": "test1217", "pid": "4882082", "query": "under the federal unemployment tax act which party pays unemployment taxes", "answer": "Employers", "passage": "\"Federal Unemployment Tax Act\"\nFederal Unemployment Tax Act The Federal Unemployment Tax Act (or FUTA, ) is a United States federal law that imposes a federal employer tax used to help fund state workforce agencies. Employers report this tax by filing an annual Form 940 with the Internal Revenue Service. In some cases, the employer is required to pay the tax in installments during the tax year. FUTA covers a federal share of the costs of administering the unemployment insurance (UI) and job service programs in every state. In addition, FUTA pays one-half of the cost of extended unemployment benefits (during periods of high"} +{"qid": "test1217", "pid": "4882088", "query": "under the federal unemployment tax act which party pays unemployment taxes", "answer": "Employers", "passage": "\"Federal Unemployment Tax Act\"\nthrough 2016, and their respective reduction amounts (in %): The following wages are exempt from Federal Unemployment Tax Act payments: Federal Unemployment Tax Act The Federal Unemployment Tax Act (or FUTA, ) is a United States federal law that imposes a federal employer tax used to help fund state workforce agencies. Employers report this tax by filing an annual Form 940 with the Internal Revenue Service. In some cases, the employer is required to pay the tax in installments during the tax year. FUTA covers a federal share of the costs of administering the unemployment insurance (UI) and job service"} +{"qid": "test1217", "pid": "4882084", "query": "under the federal unemployment tax act which party pays unemployment taxes", "answer": "the employer", "passage": "\"Federal Unemployment Tax Act\"\nthe worker's earnings reach $7,000 during a given year, the employer no longer pays any FUTA for that year with respect to that worker. Certain credits are allowed with respect to state unemployment taxes paid that may reduce the effective FUTA rate to 0.8%. Effective July 1, 2011, the rate decreased to 6.0%. That rate may be reduced by an amount up to 5.4% through credits for contributions to state unemployment programs under sections 3302(a) and 3302(b), resulting in a minimum effective rate on and after July 1, 2011 of 0.6% (6.0% - 5.4%). The credit against the federal tax"} +{"qid": "test1217", "pid": "9431947", "query": "under the federal unemployment tax act which party pays unemployment taxes", "answer": "the employer", "passage": "\"Cafeteria plan\"\nmost today are operated through a \"\"salary redirection agreement\"\", which is a payroll deduction in all but name. Deductions under such agreements are often called pre-tax deductions. Salary redirection contributions are not actually or constructively received by the participant. Therefore, those contributions are not generally considered wages for federal income tax purposes, nor are they usually subject to Federal Insurance Contributions Act tax (FICA) and Federal Unemployment Tax Act (FUTA). Reasons for implementing a Section 125 plan are primarily for the tax savings advantages for the employer and employee. Both parties save on taxes and therefore increase their spendable income."} +{"qid": "test1217", "pid": "2336273", "query": "under the federal unemployment tax act which party pays unemployment taxes", "answer": "Employers", "passage": "\"Unemployment benefits\"\nwhich met Federal standards, but the rules have recently changed. The FUTA tax rate is now, as of 30 June 2011, 6.0 percent of taxable wages of employees who meet both the above and following criteria, and the taxable wage base is the first $7,000 paid in wages to each employee during a calendar year. Employers who pay the state unemployment tax on time receive an offset credit of up to 5.4 percent regardless of the rate of tax they pay their state. Therefore, the net FUTA tax rate is generally 0.6 percent (6.0 percent - 5.4 percent), for a"} +{"qid": "test1217", "pid": "14070871", "query": "under the federal unemployment tax act which party pays unemployment taxes", "answer": "Employers", "passage": "\"Taxation in Puerto Rico\"\nSocial Security and Medicare taxes. Only certain residents of Puerto Rico are required to file federal income tax forms. According to the Internal Revenue Service: Employers in Puerto Rico are subject to both Federal Insurance Contributions Act (FICA) tax (a payroll withholding tax, which funds Social Security and Medicare) and the Federal Unemployment Tax Act (FUTA). Employers in Puerto Rico must withhold the employee portion of FICA taxes from their employees' wages and contribute the employer portion of FICA. Puerto Rico imposes a separate income tax in lieu of federal income tax.All federal employees, those who do business with the"} +{"qid": "test1218", "pid": "9838538", "query": "what is the oldest street in the philippines", "answer": "Cebu City", "passage": "\"Colon Street\"\nColon Street Colon Street (Cebuano: \"\"Dalang Colon\"\") is a historical street in downtown Cebu City that is often called the oldest and the shortest national road in the Philippines. It is named after Cristóbal Colón (Christopher Columbus). It traces its origins to the town plan by Miguel Lopez de Legazpi, the Spanish conquistador who arrived in the Philippines to establish a colony in 1565..Colon street was once owned by the family name of Fronteras Colon, crowded and a bit run-down now, was the site of fashionable shops, offices, and movie houses. It was once the heart of Cebu City's shopping"} +{"qid": "test1218", "pid": "1977536", "query": "what is the oldest street in the philippines", "answer": "Cebu City", "passage": "\"Cebu City\"\ncountry, Cebu came under Japanese occupation during WW II. The Japanese encountered some opposition there from guerrillas and irregular forces led by Col. James Cushing and the Cebu Area Command. It was finally liberated with the Battle for Cebu City in March and April 1945. The military general headquarters of the Philippine Commonwealth Army and 8th Constabulary Regiment of the Philippine Constabulary, active from 3 January 1942 to 30 June 1946, was stationed in Cebu City during World War II. Colon Street, the oldest national road in the Philippines, is the center of a dense and compact area in downtown"} +{"qid": "test1218", "pid": "316007", "query": "what is the oldest street in the philippines", "answer": "Cebu City", "passage": "\"Transportation in the Philippines\"\nof Quezon to Bicol Region. Located in Cebu City is the Colon Street, considered the oldest thoroughfare in the country. Among the major highways in Mindanao are Sayre Highway, Butuan–Cagayan de Oro–Iligan Road, Surigao–Davao Coastal Road, Davao–Cotabato Road, and Maria Clara L. Lobregat Highway. The Philippines has numerous expressways and most of them are located in the main island of the country, Luzon. The first expressway systems in the country are the North Luzon Expressway formerly known as North Diversion Road and the South Luzon Expressway, formerly known as South Super Highway. Both were built in the 1970s, during the"} +{"qid": "test1219", "pid": "13603760", "query": "the gulf stream the world's fastest ocean current flows along the western side of this water body", "answer": "Atlantic ocean", "passage": "\"Gulf Stream\"\nthermal energy could also be harnessed to produce electricity using the temperature difference between cold deep water and warm surface water. Gulf Stream The Gulf Stream, together with its northern extension the North Atlantic Drift, is a warm and swift Atlantic ocean current that originates in the Gulf of Mexico and stretches to the tip of Florida, and follows the eastern coastlines of the United States and Newfoundland before crossing the Atlantic Ocean. The process of western intensification causes the Gulf Stream to be a northward accelerating current off the east coast of North America. At about , it splits"} +{"qid": "test1219", "pid": "2364908", "query": "the gulf stream the world's fastest ocean current flows along the western side of this water body", "answer": "Atlantic ocean", "passage": "\"Thermohaline circulation\"\nestimates of the thermohaline circulation or, more accurately, the meridional overturning circulation. The deep water masses that participate in the MOC have chemical, temperature and isotopic ratio signatures and can be traced, their flow rate calculated, and their age determined. These include Pa / Th ratios. The Gulf Stream, together with its northern extension towards Europe, the North Atlantic Drift, is a powerful, warm, and swift Atlantic ocean current that originates at the tip of Florida, and follows the eastern coastlines of the United States and Newfoundland before crossing the Atlantic Ocean. The process of western intensification causes the Gulf"} +{"qid": "test1220", "pid": "16838309", "query": "in florida it is illegal to sell alcohol before 1 pm on any sunday. this is an example of", "answer": "Blue laws", "passage": "\"Blue laws in the United States\"\nSundays. Hunting is prohibited on Sundays. Maine is also one of three states where it is illegal for almost all businesses to open on Thanksgiving, most notably the big department stores. Alcohol sales remain restricted but allowed between the hours of 1 a.m. and 7 a.m. Monday through Saturday and 1 a.m. and 9 a.m. on Sunday. In Maryland, \"\"a new or used car dealer may not sell, barter, deliver, give away, show, or offer for sale a motor vehicle or certificate of title for a motor vehicle on Sunday\"\", except in Howard County, Montgomery County, and Prince George's County."} +{"qid": "test1220", "pid": "16838304", "query": "in florida it is illegal to sell alcohol before 1 pm on any sunday. this is an example of", "answer": "Blue laws", "passage": "\"Blue laws in the United States\"\nand liquor sales are entirely prohibited on Sunday and Christmas Day. (Some exceptions for private facilities are made for Sundays). Washington, D.C. allows private retailers (Class A) to sell distilled spirits, but the District Council requires Class A retailers to be closed on Sundays (Class B retailers, such as grocery stores, may sell beer and wine on Sundays). However, in December 2012, the Council voted to repeal the Sunday restriction. The repeal took effect May 1, 2013. Several counties prohibit the sale of alcohol and sex toys on Sunday and during certain hours. Sunday retail alcohol sales in stores were"} +{"qid": "test1220", "pid": "16838328", "query": "in florida it is illegal to sell alcohol before 1 pm on any sunday. this is an example of", "answer": "Blue laws", "passage": "\"Blue laws in the United States\"\nit cannot sell liquor. Liquor cannot be sold at retail stores during any of the following times: Wholesalers can deliver liquor to retailers at any time except on Sunday or Christmas; however, local distributors can only deliver liquor to retailers between 5 a.m. and 9 p.m. on any day except Sunday, Christmas or any day where the retailer is prohibited from selling liquor. There are forms of hunting on Sunday that are illegal, such as deer, turkey, dove and duck, and other forms that are legal. The forms of Sunday hunting that are legal are hunting on licensed hunting preserves,"} +{"qid": "test1220", "pid": "16838303", "query": "in florida it is illegal to sell alcohol before 1 pm on any sunday. this is an example of", "answer": "Blue laws", "passage": "\"Blue laws in the United States\"\non Sundays until repealed on February 28, 2018, and many states ban selling cars on Sundays. Arizona previously limited alcohol sales hours on Sundays (2 a.m. to 10 a.m.; the other six days of the week alcohol could be purchased starting at 6 a.m.). This law was repealed in 2010. Arkansas has 75 counties, 39 of which are \"\"dry\"\", meaning the sale of any alcoholic beverage is prohibited entirely. (Some exceptions are made for private facilities). Private facilities must have licenses, which can be rigorous. Sale of alcoholic beverages on Christmas Day is entirely prohibited, even in private facilities. Alcohol"} +{"qid": "test1220", "pid": "16838305", "query": "in florida it is illegal to sell alcohol before 1 pm on any sunday. this is an example of", "answer": "Blue laws", "passage": "\"Blue laws in the United States\"\nprohibited by the Georgia General Assembly up until 2011. On April 28, 2011, Georgia Governor Nathan Deal signed legislation allowing local communities to vote on whether to allow alcohol sales on Sundays. Sales are still restricted on Sundays before 12:30 p.m. On November 8, 2011, voters in more than 100 Georgia cities and counties voted on a bill that would allow stores to sell alcohol on Sundays. It passed in Valdosta, Atlanta, Savannah and many other cities. Before this, cities and counties of sufficiently large populations such as most of Metro Atlanta already had Sunday alcohol sales at bars and"} +{"qid": "test1221", "pid": "119480", "query": "who is the most selling music artist of all time", "answer": "The Beatles", "passage": "England\nFrederick Delius, Gustav Holst, Ralph Vaughan Williams and others. Present-day composers from England include Michael Nyman, best known for \"\"The Piano\"\", and Andrew Lloyd Webber, whose musicals have achieved enormous success in the West End and worldwide. In the field of popular music, many English bands and solo artists have been cited as the most influential and best-selling musicians of all time. Acts such as The Beatles, Led Zeppelin, Pink Floyd, Elton John, Queen, Rod Stewart and The Rolling Stones are among the highest selling recording artists in the world. Many musical genres have origins in (or strong associations with)"} +{"qid": "test1221", "pid": "16303226", "query": "who is the most selling music artist of all time", "answer": "The Beatles", "passage": "\"Elvis Presley albums discography\"\n146.5 million albums units only in the United States, making him the second best selling solo albums artist of all time in this country, and the biggest selling solo artist of all time. He is in the U.S second overall, behind Garth Brooks and The Beatles. According to Presley's record label, RCA, their estimation is the best selling artist of all time, with sales to over 1.5 billion records worldwide in all formats (600 million only in the United States). Notes FTD (Follow That Dream), Sony Music's Official Elvis Presley Collectors label, was established in 1999 to serve the dedicated"} +{"qid": "test1221", "pid": "11066402", "query": "who is the most selling music artist of all time", "answer": "The Beatles", "passage": "\"Razor & Tie\"\nLady\"\" and \"\"West Side Story.\"\" In 2015, \"\"Billboard\"\" published its inaugural \"\"Greatest Of All Time\"\" rankings, a comprehensive collection of the best-selling songs, albums and artists in music history. With 22 Top 10 debuts since 2001, Kidz Bop was #4 on the \"\"Most Billboard 200 Top 10 Albums\"\" list, just behind The Rolling Stones, Barbra Streisand, The Beatles and Bob Dylan. Kidz Bop held the fourth-highest tally of any artist in history and the most Top 10 debuts of any artist since 2000. After 25 years of operating independently, in September 2015, Concord Bicycle Music acquired a \"\"significant\"\" percentage of"} +{"qid": "test1222", "pid": "14004944", "query": "what class of ship is the carnival glory", "answer": "Conquest", "passage": "\"Dream-class cruise ship\"\nDream-class cruise ship The Dream class is a class of cruise ships, operated by Carnival Cruise Lines and Costa Cruises, The lead vessel of the class, \"\"Carnival Dream\"\", entered service in September 2009. \"\"Carnival Dream\"\" and her sisters, \"\"Carnival Magic\"\", \"\"Carnival Breeze\"\" and \"\"Costa Diadema\"\", measure about 130,000 GT and the first three were the largest ships ever built for Carnival Cruise Line until the Carnival Vista launched in 2015. The vessels design is an evolution from the \"\"Conquest\"\" class cruise ships. Notable additions in the designs are a half-mile exterior promenade on deck 5, with outside cafes, Jacuzzis situated"} +{"qid": "test1222", "pid": "9393165", "query": "what class of ship is the carnival glory", "answer": "Conquest", "passage": "\"Conquest-class cruise ship\"\nConquest-class cruise ship The \"\"Conquest\"\" class is a class of cruise ships owned by Carnival Cruise Lines, a subdivision of the Carnival Corporation. The \"\"Conquest\"\" design is an original Carnival design, based on the \"\"Destiny\"\" class. The \"\"Conquest\"\"-class design was modified from the \"\"Destiny\"\"-class design by lengthening the ship by around 59 feet which expanded most of the facilities and adding a reservations-only restaurant (a steakhouse) above the lido deck. Staterooms are identical to those of \"\"Destiny\"\" class but due to the lengthening there are more of them. Public rooms are nearly identical to those of \"\"Destiny\"\" class as well."} +{"qid": "test1222", "pid": "12175579", "query": "what class of ship is the carnival glory", "answer": "Conquest", "passage": "\"Concordia-class cruise ship\"\nConcordia-class cruise ship The \"\"Concordia\"\" class is a class of cruise ships that are operated by Costa Cruises and Carnival Cruise Lines, subsidiaries of Carnival Corporation & plc. The ship's design is based on the design of Carnival's \"\"Conquest\"\"-class fleet of ships. However, their design from lido (pool) deck up to the top deck was enlarged and redesigned. The most notable difference is the structure around the main pool. The main pool features a glass exterior on both sides of the ship. A retractable macrodome was also added for the main pool. Another notable difference is the enlargement of its"} +{"qid": "test1222", "pid": "9393167", "query": "what class of ship is the carnival glory", "answer": "Conquest", "passage": "\"Conquest-class cruise ship\"\non a poster in the 2004 film \"\"Christmas with the Kranks\"\". Conquest-class cruise ship The \"\"Conquest\"\" class is a class of cruise ships owned by Carnival Cruise Lines, a subdivision of the Carnival Corporation. The \"\"Conquest\"\" design is an original Carnival design, based on the \"\"Destiny\"\" class. The \"\"Conquest\"\"-class design was modified from the \"\"Destiny\"\"-class design by lengthening the ship by around 59 feet which expanded most of the facilities and adding a reservations-only restaurant (a steakhouse) above the lido deck. Staterooms are identical to those of \"\"Destiny\"\" class but due to the lengthening there are more of them. Public"} +{"qid": "test1223", "pid": "14479806", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Darkhovin Nuclear Power Plant\"\nother country was ready to cooperate in its construction. Iran started to indigenously design the reactor for Darkhovin Nuclear Power Plant basing the design on IR-40 reactor using heavy water. The Iranian nuclear reactor design has a capacity of 360 MW. The plant was announced in 2008, originally scheduled to come online in 2016, but construction has been delayed. There is currently no public information on how many reactors the power station is planned to house. The plant is going to be Iran's first indigenously designed and built nuclear power plant besides the research reactor of IR-40. In 1976 novel"} +{"qid": "test1223", "pid": "7188847", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Nuclear power in the United States\"\n2015, a majority had supported nuclear power. support peaked at 62% in 2010, and has been in decline since. According to a CBS News poll, what had been growing acceptance of nuclear power in the United States was eroded sharply following the 2011 Japanese nuclear accidents, with support for building nuclear power plants in the U.S. dropping slightly lower than it was immediately after the Three Mile Island accident in 1979. Only 43 percent of those polled after the Fukushima nuclear emergency said they would approve building new power plants in the United States. A Washington Post-ABC poll conducted in"} +{"qid": "test1223", "pid": "20110405", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Robert Ferguson (physicist)\"\nnuclear plants planned or ordered between 1972 and 1983. No new plants were licensed in the United States by the NRC from that time until 2012, and more than 80 anti-nuclear groups were formed in the United States out of fear of nuclear reactors after the Three Mile Island accident. Washington Public Power Supply System: In 1980, Ferguson was selected by a national recruitment firm as a candidate for Chief Executive Officer of the troubled Washington Public Power Supply System (WPPSS), now called Energy Northwest, a municipal utility. His friend and mentor Senator Henry M. Jackson (“Scoop” Jackson) from Washington"} +{"qid": "test1223", "pid": "11000274", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Anti-nuclear movement in the United States\"\nAnti-nuclear protests reached a peak in the 1970s and 1980s and grew out of the environmental movement. Campaigns that captured national public attention involved the Calvert Cliffs Nuclear Power Plant, Seabrook Station Nuclear Power Plant (by the Clamshell Alliance), Diablo Canyon Power Plant, Shoreham Nuclear Power Plant, and Three Mile Island. Beginning in the 1980s, many anti-nuclear power activists began shifting their interest, by joining the rapidly growing Nuclear Freeze campaign, and the primary concern about nuclear hazards in the US changed from the problems of nuclear power plants to the prospects of nuclear war. On June 3, 1981, the"} +{"qid": "test1223", "pid": "11000276", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Anti-nuclear movement in the United States\"\nhistory. International Day of Nuclear Disarmament protests were held on June 20, 1983, at 50 sites across the United States. There were many Nevada Desert Experience protests and peace camps at the Nevada Test Site during the 1980s and 1990s. More recent campaigning by anti-nuclear groups has related to several nuclear power plants including the Enrico Fermi Nuclear Power Plant, Indian Point Energy Center, Oyster Creek Nuclear Generating Station, Pilgrim Nuclear Generating Station, Salem Nuclear Power Plant, and Vermont Yankee Nuclear Power Plant. There have also been campaigns relating to the Y-12 Nuclear Weapons Plant, the Idaho National Laboratory, Yucca"} +{"qid": "test1223", "pid": "13445603", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Montague Nuclear Power Plant\"\nHampshire. This series of protests, which resulted in 1,400 arrests, inspired nuclear opposition groups in other parts of the United States. A total of 63 nuclear units were canceled in the USA between 1975 and 1980. Many nuclear plant proposals were no longer viable due to the downturn of electricity demand increases, significant cost and time overruns, and more complex regulatory requirements. Also, there was considerable public opposition to nuclear power in the USA by this time. Montague Nuclear Power Plant The Montague Nuclear Power Plant was a proposed nuclear power plant to be located in Montague, Massachusetts. The plant"} +{"qid": "test1223", "pid": "10800162", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Greifswald Nuclear Power Plant\"\nGreifswald Nuclear Power Plant Greifswald nuclear power station (German: \"\"Kernkraftwerk Greifswald\"\", KKW Greifswald), also known as Lubmin nuclear power station, was the largest nuclear power station in East Germany before closure shortly after the German reunification. The plants were of the VVER-440/V-230 type, which was the second generation of Soviet-designed plants. The plant is in Lubmin near Greifswald, in the state of Mecklenburg-Vorpommern. In late 1989, nuclear regulatory bodies of countries operating VVER plants found the need to fit many new safety systems, which were stated to have been necessary in almost all areas. All East German reactors were closed"} +{"qid": "test1223", "pid": "132060", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Environmental movement in the United States\"\nand the largest political demonstration in American history. International Day of Nuclear Disarmament protests were held on June 20, 1983 at 50 sites across the United States. There were many Nevada Desert Experience protests and peace camps at the Nevada Test Site during the 1980s and 1990s. More recent campaigning by anti-nuclear groups has related to several nuclear power plants including the Enrico Fermi Nuclear Power Plant, Indian Point Energy Center, Oyster Creek Nuclear Generating Station, Pilgrim Nuclear Generating Station, Salem Nuclear Power Plant, and Vermont Yankee Nuclear Power Plant. There have also been campaigns relating to the Y-12 Nuclear"} +{"qid": "test1223", "pid": "12440839", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Nuclear power debate\"\npower, exclusively due to development in China. Many studies have documented how nuclear power plants generate 16% of global electricity, but provide only 6.3% of energy production and 2.6% of final energy consumption. This mismatch stems mainly from the poor consumption efficiency of electricity compared to other energy carriers, and the transmission losses associated with nuclear plants which are usually situated far away from sources of demand. For some countries, nuclear power affords energy independence. Nuclear power has been relatively unaffected by embargoes, and uranium is mined in countries willing to export, including Australia and Canada. However, countries now responsible"} +{"qid": "test1223", "pid": "7188788", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Nuclear power in the United States\"\nwere concerned about nuclear accidents, nuclear proliferation, high cost of nuclear power plants, nuclear terrorism and radioactive waste disposal. There were many anti-nuclear protests in the United States which captured national public attention during the 1970s and 1980s. These included the well-known Clamshell Alliance protests at Seabrook Station Nuclear Power Plant and the Abalone Alliance protests at Diablo Canyon Nuclear Power Plant, where thousands of protesters were arrested. Other large protests followed the 1979 Three Mile Island accident. In New York City on September 23, 1979, almost 200,000 people attended a protest against nuclear power. Anti-nuclear power protests preceded the"} +{"qid": "test1223", "pid": "12051822", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Anti-nuclear protests in the United States\"\n22 February 1974, Washington's Birthday, organic farmer Sam Lovejoy took a crowbar to the weather-monitoring tower which had been erected at the Montague Nuclear Power Plant site. Lovejoy felled 349 feet of the 550 foot tower and then took himself to the local police station, where he presented a statement in which he took full responsibility for the action. Lovejoy's action galvanized local public opinion against the plant. The Montague nuclear power plant proposal was canceled in 1980, after $29 million was spent on the project. Seabrook power plant was proposed as a twin-reactor plant in 1972, at an estimated"} +{"qid": "test1223", "pid": "11947088", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"China–Pakistan Power Plant Corporation\"\nPower in the Middle East\"\"\"\" by Nick, Cypro, Washington University Press, 2001 China–Pakistan Power Plant Corporation China-Pakistan Power Plant Corporation is a corporation set up by the governments of China and Pakistan to build nuclear power plants in Pakistan and China. Pakistan has shortage of electricity resulting in periodic blackouts all over the country. These nuclear plants will help alleviate power shortage in expanding economy. This will help Pakistan’s nuclear energy requirements of 8,800 megawatts by 2030 by expediting the delivery of six nuclear power plants of 300MW each. Earlier, China had assisted Pakistan in setting up the Chashma Nuclear"} +{"qid": "test1223", "pid": "19325514", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"More Hall Annex\"\nreview of the UW experiment. The staff members were praised by the AEC for protecting the public by sealing the materials and evacuating the building for six hours. In the late 1970s, development of nuclear power in the United States slowed to a halt, as new plants were cancelled or put on hold. The 1983 financial collapse of the Washington Public Power Supply System, a government agency planning to build five large nuclear power plants throughout the state, and the Three Mile Island accident of 1979 both contributed to a decline in interest in the university's nuclear program. Student use"} +{"qid": "test1223", "pid": "15445112", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Regions of the Nuclear Regulatory Commission\"\nWalnut Creek Field Office, supporting resident inspection activities at power plants in the Pacific states of Washington, Oregon and California until , when the Walnut Creek Field Office was abolished to further reduce costs. Regions of the Nuclear Regulatory Commission The Nuclear Regulatory Commission has divided the US territory into four regions: These four regions oversee the operation of 104 power-producing reactors, and 36 non-power-producing reactors. This oversight is done on several levels, for example: Headquartered in King of Prussia, Pennsylvania, Region I oversees 15 plants in the north-eastern United States. Headquartered in Atlanta, Georgia, Region II oversees 18 plants"} +{"qid": "test1223", "pid": "12817209", "query": "how many nuclear power plants in washington state", "answer": "3", "passage": "\"Kiket Island\"\nKiket Island and vicinity has been called one of the best-studied areas of coastal Washington. Ecological studies were made in the last decades of the twentieth century, when the site was considered for a nuclear power plant. In 1969, Seattle City Light and Snohomish County PUD considered building a $250 million 1,100 MW nuclear power plant on the island. By 1972, the plan for the nuclear plant was dropped due to environmental concerns. Seattle City Light and Snohomish County PUD sold the property in 1980. On June 23, 2010, a joint ownership agreement was signed by the state Parks and"} +{"qid": "test1224", "pid": "8105614", "query": "when did mcdonald's sell 1 million burgers", "answer": "By 1965", "passage": "\"History of McDonald's\"\nheavily to McDonald's success. In 1961 Kroc bought out the McDonald brothers for $2.7 million, aiming at making McDonald's the number one fast-food chain in the country. On May 3, 1960, Kroc assisted Christopher Boulos in opening a McDonald's franchise in DeKalb, Illinois. By 1965, the McDonald's at 805 W. Lincoln Highway sold over 4 million burgers and of fries. Boulos was the first Greek-American McDonald's franchise operator. In 1965, McDonald's Corporation went public. Common shares were offered at $22.50 per share. By the end of the first day's trading, the price had risen to $30. A block of 100"} +{"qid": "test1225", "pid": "2942334", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"United States men's national soccer team\"\nUnited States men's national soccer team The United States Men's National Soccer Team (USMNT) is controlled by the United States Soccer Federation and competes in the Confederation of North, Central American and Caribbean Association Football. The team has appeared in ten FIFA World Cups, including the first in 1930, where they reached the semi-finals. The U.S. participated in the 1934 and 1950 World Cups, winning 1–0 against England in the latter. After 1950, the U.S. did not qualify for the World Cup until 1990. The U.S. hosted the 1994 World Cup, where they lost to Brazil in the round of"} +{"qid": "test1225", "pid": "9245130", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"World Series of Soccer\"\nof 1992 U.S. Cup) June 3, 1992 Soldier Field Chicago United States 1–0 Portugal (match part of 1992 U.S. Cup) June 6, 1992 Soldier Field Chicago United States 1–1 Italy (match part of 1992 U.S. Cup) In 1993, USSF resurrected the World Series of Soccer to prepare the national team for the 1994 FIFA World Cup. As the host nation, the U.S. did not need to qualify. Therefore, USSF sought other games to provide the team with competitive experience. Jan 30 United States 2-2 Denmark Feb 13 United States 0-1 Russia Feb 21 United States 0-0 Russia May 8 United"} +{"qid": "test1225", "pid": "3110201", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"United States women's national soccer team\"\nto Sweden. The US team directly qualified for the 1999 FIFA Women's World Cup as hosts of the event. Because of this, they did not participate in the 1998 CONCACAF Championship, which was the qualification tournament for the World Cup. The Algarve Cup is a global invitational tournament for national teams in women's soccer hosted by the Portuguese Football Federation (FPF). Held annually in the Algarve region of Portugal since 1994, it is one of the most prestigious women's football events, alongside the Women's World Cup and Women's Olympic Football. Since 2016, the SheBelieves Cup has gained more interest from"} +{"qid": "test1225", "pid": "2932113", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"Soccer in the United States\"\nCup tournaments. The U.S. finished third in the World Cup in 1930, and played in the 1934 World Cup. The next World Cup participation came in the 1950 World Cup, where they upset England 1-0 in group play. After 1950, the USA did not return to the World Cup for another 40 years. The fortunes of the U.S. national team changed in the 1990s, with the team participating in every World Cup between 1990 and 2014. The U.S. hosted the 1994 World Cup, beating Colombia to reach the knockout rounds, before losing to Brazil in the round of sixteen. The"} +{"qid": "test1225", "pid": "19731232", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"History of the United States women's national soccer team\"\nSolo for 6 months. Hope Solo is appealing the suspension. The US team directly qualified for the 1999 FIFA Women's World Cup as hosts of the event. Because of this, they did not participate in the 1998 CONCACAF Championship, which was the qualification tournament for the World Cup. The Algarve Cup is a global invitational tournament for national teams in women's soccer hosted by the Portuguese Football Federation (FPF). Held annually in the Algarve region of Portugal since 1994, it is one of the most prestigious women's football events, alongside the Women's World Cup and Women's Olympic Football. International Women's"} +{"qid": "test1225", "pid": "11100013", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"2014 FIFA World Cup bids\"\nconditions are right, people will take it seriously.\"\"\"\" In June 2002, the United States Soccer Federation (USSF) announced it expressed interest to offer a bid for the 2014 FIFA World Cup. Robert Contiguglia was confident that the United States can put together a very strong bid. The United States hosted the 1994 FIFA World Cup, as well as the 1999 FIFA Women's World Cup and 2003 FIFA Women's World Cup. The United States also attempted to host the 2022 FIFA World Cup, but lost out to Qatar, but won rights to the 2026 FIFA World Cup along with Mexico"} +{"qid": "test1225", "pid": "9708079", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"1997 U.S. Cup\"\n1997 U.S. Cup The 1997 U.S. Cup was a United States Soccer Federation (USSF) organized tournament held in January 1997. USSF had hosted the annual U.S. Cup since 1992, except for the FIFA World Cup years of 1994 and 1998 when no tournament took place. The 1997 U.S. Cup included the host United States, Mexico, Peru and Denmark. Staged as a six-game, round robin tournament, the team with the best win-loss record took the title. This was the only U.S. Cup for both Peru and Denmark, and the third for Mexico. They had won the previous cup and would go"} +{"qid": "test1225", "pid": "1310173", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"1994 FIFA World Cup\"\n1994 FIFA World Cup The 1994 FIFA World Cup was the 15th FIFA World Cup, held in nine cities across the United States from 17 June to 17 July 1994. The United States was chosen as the host by FIFA on 4 July 1988. Despite the host nation's lack of football tradition, the tournament was the most financially successful in World Cup history; aided by the high-capacity stadia in the United States, it broke the World Cup average attendance record with nearly 69,000 spectators per game, a mark that still stands. The total attendance of nearly 3.6 million for the"} +{"qid": "test1225", "pid": "20296440", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"Morocco 2026 FIFA World Cup bid\"\nMorocco 2026 FIFA World Cup bid The Morocco 2026 FIFA World Cup bid was Morocco's unsuccessful bid to host the 2026 FIFA World Cup. It competed with the United 2026 bid of Canada, Mexico, and the United States for hosting rights. The 2026 bid was Morocco's fifth bid to host the FIFA World Cup after four unsuccessful attempts in 1994, 1998, 2006 and 2010 lost out to the United States, France, Germany and South Africa. If successful, it would have been the second African country, after the 2010 tournament in South Africa, as well as the second Arab and Muslim"} +{"qid": "test1225", "pid": "1310193", "query": "when did the united states host the world cup", "answer": "1994", "passage": "\"1994 FIFA World Cup\"\nNew York hosted seven matches including a semi-final; Boston (Foxborough), San Francisco (Stanford) and Dallas hosted 6 matches each and Chicago, Washington and Orlando each hosted 5 matches. The least used was the Pontiac Silverdome near Detroit, the first indoor stadium used in a World Cup, with four group stage games. The Pontiac Silverdome was also the only venue of the 9 used that did not host any knockout round matches. Because of the large area of the continental United States, the match locations were often far apart. Some teams in Groups A and B had to travel from Los"} +{"qid": "test1226", "pid": "6037580", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Joey Stivic\"\nJoey Stivic Joseph Michael \"\"Joey\"\" Stivic is a fictional character who first appeared on the 1970s American sitcom \"\"All in the Family\"\". Joey Stivic was the son and only child of Mike Stivic (played by Rob Reiner) and Gloria Stivic (played by Sally Struthers), and the grandson of Archie Bunker (Carroll O'Connor) and Edith Bunker (Jean Stapleton). The character first appeared as a newborn baby in a two-part episode of \"\"All in the Family\"\" that aired in December 1975. After many appearances on \"\"All in the Family\"\" until Reiner and Struthers left the series in 1978 (by that time, Joey"} +{"qid": "test1226", "pid": "3166092", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Michael Stivic\"\nMichael Stivic Michael Casimir \"\"Mike\"\" Stivic is a fictional character on the 1970s American television sitcom \"\"All in the Family\"\". He was the live-in son-in-law of the series' lead character, Archie Bunker, who frequently called him \"\"Meathead\"\". Michael was the husband of Archie's daughter Gloria (played by Sally Struthers). Rob Reiner played the role of Michael Stivic throughout the series. The character of Michael Stivic is an Americanized version of the British original: \"\"Till Death Us Do Part\"\"'s Mike Rawlins, the Trotskyist \"\"Randy Scouse Git\"\" who arouses the passionate ire of his arch-conservative father-in-law Alf Garnett. For the American version"} +{"qid": "test1226", "pid": "3166108", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Michael Stivic\"\nNobel Prize and they'd write 'Meathead wins the Nobel Prize'.\"\" A later episode of \"\"All in the Family\"\" reveals that Archie Bunker himself was referred to as \"\"Meathead\"\" in his youth. Norman Lear said his father used to call him \"\"Meathead\"\". Michael Stivic Michael Casimir \"\"Mike\"\" Stivic is a fictional character on the 1970s American television sitcom \"\"All in the Family\"\". He was the live-in son-in-law of the series' lead character, Archie Bunker, who frequently called him \"\"Meathead\"\". Michael was the husband of Archie's daughter Gloria (played by Sally Struthers). Rob Reiner played the role of Michael Stivic throughout the"} +{"qid": "test1226", "pid": "1834890", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Carroll O'Connor\"\nof Bunker's long-suffering wife, Edith Bunker, whom Lear remembered from seeing in the play and film \"\"Damn Yankees\"\". The producer sent the show over to ABC twice, but it did not get picked up. They then approached CBS with more success, and accordingly, \"\"All in the Family\"\" was retooled and debuted early in 1971. The show also starred unknown character actors, such as Rob Reiner as Archie's liberal son-in-law, Michael \"\"Meathead\"\" Stivic, and Sally Struthers as Archie and Edith's only child and Mike's wife, Gloria. The cast had a unique on- and off-camera chemistry, especially Reiner, who became O'Connor's best"} +{"qid": "test1226", "pid": "263894", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Marx Brothers\"\nappeared, sometimes with Chico and Zeppo caricatured, in cartoons starring Mickey Mouse, Flip the Frog and others. In the \"\"Airwolf\"\" episode 'Condemned', four anti-virus formulae for a deadly plague were named after the four Marx Brothers. In \"\"All in the Family\"\", Rob Reiner often did imitations of Groucho, and Sally Struthers dressed as Harpo in one episode in which she (as Gloria Stivic) and Rob (as Mike Stivic) were going to a Marx Brothers film festival, with Reiner dressing as Groucho. Gabe Kaplan did many Groucho imitations on his sit-com \"\"Welcome Back, Kotter\"\" and Robert Hegyes sometimes imitated both Chico"} +{"qid": "test1226", "pid": "2083570", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Archie Bunker\"\nthree-year old Gloria with her. The inspiration for Archie Bunker was Alf Garnett, the character from the BBC1 sitcom \"\"Till Death Us Do Part\"\", on which \"\"All in the Family\"\" was based. When first introduced on \"\"All in the Family\"\" in 1971, Archie is the head of a family consisting of his wife Edith (Jean Stapleton), his adult daughter Gloria (Sally Struthers), and his liberal son-in-law, college student Michael \"\"Mike\"\" Stivic (Rob Reiner), with whom Archie disagrees on virtually everything; Archie frequently characterizes Mike as a \"\"dumb Polack\"\" and usually addresses him as \"\"Meathead\"\" because, in Archie's words, he is"} +{"qid": "test1226", "pid": "3671440", "query": "who played mike stivic on all in the family", "answer": "Rob Reiner", "passage": "\"Embassy Pictures\"\nLanguage Film. During this period, Rob Reiner, whom up to that point had been most famous for playing Mike \"\"Meathead\"\" Stivic on \"\"All in the Family\"\", began his directorial career with two Embassy releases, \"\"This is Spinal Tap\"\" and \"\"The Sure Thing\"\". His third film, \"\"Stand By Me\"\", started at Embassy, but it almost got cancelled because of the sale to Columbia days before filming was to begin. Norman Lear ended up putting up his own money for completion funds. Lear and Perenchio sold Embassy Communications (including Tandem Productions) to The Coca-Cola Company for $485 million on June 18, 1985,"} +{"qid": "test1227", "pid": "16912591", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"The Secret of Crickley Hall (TV series)\"\nThe Secret of Crickley Hall (TV series) The Secret of Crickley Hall is a BBC television adaptation by Joe Ahearne of the 2006 supernatural thriller novel of the same name written by the British author James Herbert. The series presents two parallel dramas. The main storyline, set in 2006, follows the events of the Caleigh family who rent Crickley Hall because Gabe Caleigh (Tom Ellis) gets a short contract in the area; the other is a series of flashbacks following events in 1943 when orphanswho have been evacuated from London during World War IIare living at Crickley Hall. Gabe Caleigh,"} +{"qid": "test1227", "pid": "16912605", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"The Secret of Crickley Hall (TV series)\"\nCam was dead and this is later revealed to be sadly true. In 1943, the secret of Crickley Hall is revealed when Augustus gases all the orphans to death, except Stefan who escapes and accidentally kills Augustus. In present day, Gordon/Maurice tries to kill Loren in the hope that Augustus will stop haunting him if he has one more child At the very beginning of the film the house used was in Oxford Road, Altrincham. The village of Downham, Lancashire, was used for the village of Devils Cleave where the real village pub, The Assheton Arms, acted as the Barnaby"} +{"qid": "test1227", "pid": "15004990", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"Craig Parkinson\"\nOn the Box's Harry Hamburg. In 2011 Parkinson appeared as the corrupt DS Matt 'Dot' Cottan in the award-winning BBC Two series \"\"Line of Duty\"\". In 2012 he appeared as the Reverend Horace in the BBC supernatural thriller \"\"The Secret of Crickley Hall\"\", adapted from the novel of the same name written by British author James Herbert. \"\"The Secret of Crickley Hall\"\" also featured his wife. Parkinson also starred in the music video for the song \"\"Two Fingers\"\" by Jake Bugg. In 2013 he starred in the ITV1 comedy drama series \"\"Great Night Out\"\" as Glyn. He also appeared as"} +{"qid": "test1227", "pid": "16912604", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"The Secret of Crickley Hall (TV series)\"\nthe help of psychic, Lilli Peel in the hopes that she will help Eve find out where Cam is. Back in 1943, it is revealed that Maurice and Magda are having a secret affair and upon being discovered by Nancy (who was searching for Augustus Cribben's punishment book) Maurice kills Nancy and throws her body down the well after desperate encouragement from Magda. In present day, Maurice, now under the alias of Gordon Pyke, visits Crickley Hall where the past comes back to haunt him. Eve becomes desperate for answers when Lilli claims the ghost of Augustus told her that"} +{"qid": "test1227", "pid": "16912600", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"The Secret of Crickley Hall (TV series)\"\nvillage in 1943. Gabe sees Percy tending to the graves in the church yard. At the church, the Caleigh family are greeted by the Reverend Andrew, who tells them about the flash flood that struck the village in 1943. He tells Gabe not to trust Percy. Later, he tells Percy, \"\"Let go of the orphans and Crickley Hall!\"\" The Caleighs return home and Clyde is missing. Gabe and Loren search for Clyde, not knowing that Percy has him locked away. Cally is in her bedroom and hears a noise in the hallway. She goes to open a door and Augustus"} +{"qid": "test1227", "pid": "16912603", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"The Secret of Crickley Hall (TV series)\"\nabout the ghosts. Gabe is told that Eve heard Cam's voice, but Gabe doesn’t believe her, while Calley and Loren play in the bathroom. When the family are all in bed, Augustus goes into Loren's room and beats her with the cane. Her parents run in and turn on the light to a distressed Loren. All but Eve vote to leave the house. Eve tells the children that the ghosts know where Cam is and so they must stay. As Eve sleeps, Augustus says, \"\"She's mine.\"\" Eve discovers that Crickley Hall was an orphanage back in 1943 and seeks out"} +{"qid": "test1227", "pid": "6910312", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"Douglas Henshall\"\npremiere of the new play \"\"55 Days\"\". In 2012, he starred as Augustus Cribben in \"\"The Secret of Crickley Hall\"\", and in the ITV television film of Ian Rankin's novel \"\"Doors Open\"\". In 2013 Henshall played Detective Inspector Jimmy Perez in the BBC two-part drama \"\"Shetland\"\" filmed in Lerwick and Glasgow.. The story was based on Ann Cleeves' Shetland crime novel \"\"Red Bones\"\". A second series of six episodes consisted of three, two-part, stories based on Cleeve's \"\"Raven Black\"\", \"\"Dead Water\"\" and \"\"Blue Lightning\"\". It screened in the UK in March and April 2014. A further series was filmed in"} +{"qid": "test1227", "pid": "15343874", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "Chapel-en-le-Frith\nWhite Peak, consisting largely of limestone grasslands, nevertheless with spectacular bluffs and the occasional gorge. Combs Moss, a gritstone 'edge', dominates the valley in which Chapel lies from the south and Eccles Pike rises sharply above the town to its west and provides a commanding 360° viewpoint. There are two schools in the town: Chapel-en-le-Frith High School and Chapel-en-le-Frith Primary School. Scenes from the BBC TV series \"\"The Village\"\" and \"\"The Secret of Crickley Hall\"\" were filmed in and around Chapel; Bowden Hall featured in both series. In 2015 Halfords made their Christmas advert around Grange Park Road in Chapel-en-le-Frith."} +{"qid": "test1227", "pid": "9937146", "query": "the secret of crickley hall how many episodes", "answer": "3", "passage": "\"Maisie Williams\"\nTo date, she has appeared in all seven broadcast seasons. In 2012, Williams played Loren Caleigh in the BBC series \"\"The Secret of Crickley Hall\"\" and appeared in a Funny or Die skit titled \"\"The Olympic Ticket Scalper\"\". She also appeared in the independent films \"\"Heatstroke\"\" (2012) and \"\"Gold\"\" (2013), and the short films \"\"Corvidae\"\" (2013) and \"\"Up On The Roof\"\" (2013). Williams also signed on to play Lorna Thompson in the sci-fi film \"\"We Are Monsters\"\", which was set for a 2014 release. In 2014, Williams portrayed Lydia in the British film \"\"The Falling\"\", which premiered on 11 October"} +{"qid": "test1228", "pid": "5380229", "query": "who sang what i like about you originally", "answer": "The Romantics.", "passage": "\"What I Like About You (song)\"\nWhat I Like About You (song) \"\"What I Like About You\"\" is a song by American rock band The Romantics. The song, written by Romantics members Wally Palmar, Mike Skill and Jimmy Marinos in 1979 is included on the band's self-titled debut album (1980), and was also released as a single. Marinos, the band's drummer, is the lead vocalist on the song. The band filmed a music video for the song that appeared frequently on MTV during the early 1980s. \"\"What I Like About You\"\" was written by Palmar, Marinos and Skill around a guitar part by Skill. The song's"} +{"qid": "test1228", "pid": "7322567", "query": "who sang what i like about you originally", "answer": "The Romantics", "passage": "\"Shrek (character)\"\n\"\"Shrek 2\"\". In \"\"Shrek in the Swamp Karaoke Dance Party!\"\", Shrek sings \"\"Just the Way You Are\"\". In Far Far Away Idol, he sang \"\"What I Like About You\"\" by The Romantics with Fiona. Shrek has a little problem socializing due to the fact that people think he is a mean ugly ogre, even though his appearance is remarkably humanoid, with a few cosmetic exceptions. In the process Shrek is said to have sociophobia. However, from \"\"Shrek the Third\"\" onward, Shrek has become a well-liked celebrity, at least in Far Far Away. In the fourth movie, people manage to realize"} +{"qid": "test1228", "pid": "7269683", "query": "who sang what i like about you originally", "answer": "The Romantics", "passage": "\"Falling Uphill\"\nFalling Uphill Falling Uphill is the first album by the Canadian girl pop rock band Lillix. It released by Maverick Records on May 27, 2003. The album includes a cover version of The Romantics' song \"\"What I Like About You\"\". This song also appeared on the \"\"Freaky Friday\"\" soundtrack as well as in the \"\"What I Like About You\"\" TV comedy series. The single releases are \"\"It's About Time\"\", \"\"What I Like About You\"\" and \"\"Tomorrow\"\". The only single to reach the charts is \"\"It's About Time\"\" (a promotional single), which peaked at #17 on the Japan Top 20 chart."} +{"qid": "test123", "pid": "18094628", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"The Walk (2015 film)\"\ntowers, and Philippe gives a final look to the camera, with the Twin Towers in the background, as he says the expiry date on the pass was crossed out and changed to \"\"forever.\"\" On January 23, 2014, it was announced that Robert Zemeckis would direct a film based on the story of Philippe Petit's walk between the Twin Towers of the World Trade Center in 1974. It was also confirmed that Zemeckis wanted Joseph Gordon-Levitt to star in the film as Petit. Zemeckis first came across the story of Petit from the children's book \"\"The Man Who Walked Between the"} +{"qid": "test123", "pid": "8427348", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"The Man Who Walked Between the Towers\"\nThe Man Who Walked Between the Towers The Man Who Walked Between the Towers is a children's picture book written and illustrated by American Mordicai Gerstein. Published in 2003, the book recounts the heart-stopping achievement of Philippe Petit, a French man who, on an August morning in 1974, walked, lay, knelt and danced on a tightrope wire between the roofs of the twin towers of the World Trade Center, a quarter mile above the ground. Gerstein won the 2004 Caldecott Medal for his illustrations. The book has been adapted to film and ballet. \"\"The Man Who Walked Between The Towers\"\""} +{"qid": "test123", "pid": "8427349", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"The Man Who Walked Between the Towers\"\nfollows the French street performer Philippe Petit in an illustrated children's book made by author Mordicai Gerstein. Philippe Petit had an idea to walk a wire between the twin towers and acted upon it with much planning and setting up. He had once walked a wire on the Notre Dame where he lived in Paris, France. Early on an August morning, since the towers were not quite finished, Philippe Petit and his friend dressed up as a construction worker and went up the south tower. They got a 440 lbs of cable into the elevator. Took it to the top"} +{"qid": "test123", "pid": "4887253", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"Philippe Petit\"\nSeptember 11 attacks, during which the Twin Towers were destroyed. He wrote that on that morning, \"\"My towers became our towers. I saw them collapse – hurling, crushing thousands of lives. Disbelief preceded sorrow for the obliteration of the buildings, perplexity descended before rage at the unbearable loss of life.\"\" Petit paid tribute to those who were killed and supported rebuilding the towers, promising that \"\"When the towers again twin-tickle the clouds, I offer to walk again, to be the expression of the builders' collective voice. Together, we will rejoice in an aerial song of victory.\"\" A different complex of"} +{"qid": "test123", "pid": "10007467", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"Red Road Flats\"\n(third prize) at the Cannes film festival. In July 2007, the French high wire artist Didier Pasquette, a protege of Philippe Petit (famous for his high wire walk between the Twin Towers of the World Trade Center in New York), undertook a high wire stunt between two of the Red Road towers, attempting to cross the gap between Towers 4 and 5. Although thwarted by Glasgow's temperamental weather he managed to walk across the chasm, backwards on one occasion. From 19 February to 27 June 2010, the Red Road flats featured in the \"\"Multi-Story\"\" exhibition at Glasgow's Gallery of Modern"} +{"qid": "test123", "pid": "4887240", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"Philippe Petit\"\nof the Sydney Harbour Bridge, in Sydney, Australia. In planning for the Twin Towers walk, Petit had to learn how to accommodate such issues as the swaying of the high towers due to wind, which was part of their design; effects of wind and weather on the wire at that height, how to rig a steel cable across the gap between the towers (at a height of ), and how to gain entry with his collaborators, first to scope out the conditions and lastly, to stage the project. They had to get heavy equipment to the rooftops. He traveled to"} +{"qid": "test123", "pid": "4887254", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"Philippe Petit\"\nbuildings has been developed on the site, and does not offer this opportunity. Philippe Petit Philippe Petit (; born 13 August 1949) is a French high-wire artist who gained fame for his high-wire walk between the Twin Towers of the World Trade Center in New York City, on the morning of August 7, 1974 as well as his high wire walk between the towers of Notre Dame cathedral in Paris, 1971. For his unauthorized feat above the ground – which he referred to as \"\"le coup\"\" – he rigged a cable and used a custom-made long, balancing pole. He performed"} +{"qid": "test123", "pid": "4887233", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"Philippe Petit\"\nPhilippe Petit Philippe Petit (; born 13 August 1949) is a French high-wire artist who gained fame for his high-wire walk between the Twin Towers of the World Trade Center in New York City, on the morning of August 7, 1974 as well as his high wire walk between the towers of Notre Dame cathedral in Paris, 1971. For his unauthorized feat above the ground – which he referred to as \"\"le coup\"\" – he rigged a cable and used a custom-made long, balancing pole. He performed for 45 minutes, making eight passes along the wire. The following week, he"} +{"qid": "test123", "pid": "6533934", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"Mordicai Gerstein\"\nMordicai Gerstein Mordicai Gerstein (born November 24, 1935 in Los Angeles, California) is an American artist, writer, and film director, best known for illustrating and writing children's books. He illustrated the comic mystery fiction series \"\"Something Queer is Going On\"\", 1973 to 2003, written by Elizabeth Levy. Gerstein won the 2004 Caldecott Medal for U.S. picture book illustration, recognizing \"\"The Man Who Walked Between the Towers\"\" (Roaring Brook Press, 2003), which he also wrote. Created in response to the September 11 attacks, it features the story of Philippe Petit's unauthorized high-wire walk between the Twin Towers of the World Trade"} +{"qid": "test123", "pid": "8427355", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"The Man Who Walked Between the Towers\"\naway. Truly affecting.\"\" The School Library Journal claimed \"\"With its graceful majesty and mythic overtones, this unique and uplifting book is at once a portrait of a larger-than-life individual and a memorial to the towers and the lives associated with them.\"\" The Man Who Walked Between the Towers The Man Who Walked Between the Towers is a children's picture book written and illustrated by American Mordicai Gerstein. Published in 2003, the book recounts the heart-stopping achievement of Philippe Petit, a French man who, on an August morning in 1974, walked, lay, knelt and danced on a tightrope wire between the"} +{"qid": "test123", "pid": "13561099", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "Funambola\nFunambola Funambola is an album of the Italian singer Patrizia Laquidara, released in 2007 by Ponderosa Music&Art. It includes 13 songs and it is inspired by the French tightrope walker Philippe Petit, who walked on a steel wire between the Twin Towers of New York City. Tightrope walking has this time both a physical and an intimate meaning, as a never ending research of a mental equilibrium, perhaps lasting, when found, only the space of a morning. Intimate thought and introspecion are actually the main themes of Patrizia Laquidara's songs and this is shown very well by this album, thanks"} +{"qid": "test123", "pid": "13561100", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "Funambola\nto the perfect symbiosis of texts and melodies. Funambola Funambola is an album of the Italian singer Patrizia Laquidara, released in 2007 by Ponderosa Music&Art. It includes 13 songs and it is inspired by the French tightrope walker Philippe Petit, who walked on a steel wire between the Twin Towers of New York City. Tightrope walking has this time both a physical and an intimate meaning, as a never ending research of a mental equilibrium, perhaps lasting, when found, only the space of a morning. Intimate thought and introspecion are actually the main themes of Patrizia Laquidara's songs and this"} +{"qid": "test123", "pid": "17465329", "query": "who is the guy who walked across the twin towers", "answer": "Philippe Petit", "passage": "\"TriStar Productions\"\nand counting on the good will of the Hollywood creative types to give the unit an edge. It was jointly announced on August 1, 2013 by Rothman, Michael Lynton, the CEO of Sony Entertainment and co-chairman and CEO of SPE, and Amy Pascal, co-chairwoman of SPE. The venture was launched on September 1 and Rothman would hold an equity share in the venture with the ability to bring in other outside investments. TSP first deal was for To Walk the Clouds autobiography, which is about Philippe Petit, a French high wire walker who walked in 1974 between the Twin Towers."} +{"qid": "test1232", "pid": "2455282", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "Pictou\nNova Scotia at the time Pictou was settled, the town's tourism slogan is \"\"The Birthplace of New Scotland\"\", which is based on being the first primarily made up Scottish immigrants. The first wave of immigrants arrived on September 15, 1773, on the \"\"Hector\"\". When the \"\"Hector\"\" arrived, there were already a few families in Pictou that had arrived on the Betsy six years earlier.The town has an indirect connection to Scottish settlement in New Zealand; the Reverend Norman McLeod emigrated to Pictou from Scotland some years after the \"\"Hector\"\" but eventually re-settled with his parishioners at St. Ann's on Cape"} +{"qid": "test1232", "pid": "20289170", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Pictou Harbour\"\nBetsey from Philadelphia. The Hector arrived in 1773, bringing the first Scottish settlers to arrive in the province directly from Scotland. Timber was being exported to Britain from Pictou harbour as early as 1777 and the first ship was built there in 1788 by Thomas Copeland. By 1803, fifty vessels loaded squared timber for Britain. The Harriet was launched in 1798 with a registered tonnage of 422 tons and is believed to be the largest built in Nova Scotia at the time. By 1830 coal was being brought from the inland towns by steamboat for transshipment and soon coal and"} +{"qid": "test1232", "pid": "10085675", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Hector (ship)\"\n(Scottish Highland Clearances) forced many Gaelic families off their ancestral lands. The first ship loaded with Hebridean colonists arrived on \"\"St.-John's Island\"\" (Prince Edward Island) in 1770, with later ships following in 1772, and 1774. In 1773 a ship named \"\"The Hector\"\" landed in Pictou, Nova Scotia, with 189 settlers, mostly originating from Lochbroom. In 1784 the last barrier to Scottish settlement – a law restricting land-ownership on Cape Breton Island – was repealed, and soon both PEI and Nova Scotia were predominantly Gaelic-speaking. It is estimated more than 50,000 Gaelic settlers emigrated to Nova Scotia and Cape Breton Island"} +{"qid": "test1232", "pid": "5835901", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Canadian Gaelic\"\nturn the countryside itself secured a reputation among the Highlanders for its size, beauty, and wealth of natural resources. They would remember Canada when in 1762 the earliest of the (Scottish Highland Clearances) forced many Gaelic families off their ancestral lands. The first ship loaded with Hebridean colonists arrived on \"\"St.-John's Island\"\" (Prince Edward Island) in 1770, with later ships following in 1772, and 1774. In September 1773 a ship named \"\"The Hector\"\" landed in Pictou, Nova Scotia, with 189 settlers who departed from Loch Broom. In 1784 the last barrier to Scottish settlement – a law restricting land-ownership on"} +{"qid": "test1232", "pid": "17924904", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Pictou Shipyard\"\nregistry began in 1840. Shipbuilding and ship repair began in Pictou in various places near the town a few years after settlement in 1773 via the Hector, with the first cargo of squared timber leaving Pictou in 1774. Other than the current site itself, the most significant site in the shipbuilding industry was located on Windmill Point where Captain William Lowden first settled in 1788. He eventually moved into the town of Pictou and continued his ship work. Captain Lowden is traditionally considered to be the father of shipbuilding in Pictou County as he was made famous by his construction"} +{"qid": "test1232", "pid": "10085674", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Hector (ship)\"\nHector (ship) Hector was a ship famous for having been part of the first significant migration of Scottish settlers to Nova Scotia in 1773. The replica of the original ship is located at the Hector Heritage Quay, a heritage centre run by local volunteers, in Pictou. A full rigged Fluyt, \"\"Hector\"\" (built in the Netherlands before 1750) was employed in local trade in waters off the British Isles as well as the immigrant trade to North America, having made at least one trip c. 1770 carrying Scottish emigrants to Boston, Massachusetts. In 1762 the earliest of the \"\"Fuadaich nan Gàidheal\"\""} +{"qid": "test1232", "pid": "1370666", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Pictou County\"\narea. It might also be a corruption of Poictou, an old province in France. Nicolas Denys named the harbour \"\"La rivière de Pictou\"\" in the 1660s. Pictou was a receiving point for many Scottish immigrants moving to a new home in northern Nova Scotia and Cape Breton Island following the Highland Clearances of the late 18th and early 19th centuries. Consequently, the town's slogan is \"\"The Birthplace of New Scotland\"\"; the first wave of immigrants is acknowledged to have arrived on September 15, 1773, on the \"\"Hector\"\". Pictou County includes the towns of New Glasgow, Stellarton, Pictou, Westville and Trenton."} +{"qid": "test1232", "pid": "9681286", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"History of Nova Scotia\"\nScotia were aware of the demands being made by Americans, and hoped their moderate proposals would reduce possible tensions with the British government. In 1762, the earliest of the \"\"Fuadaich nan Gàidheal\"\" (Scottish Highland Clearances) forced many Gaelic families off their ancestral lands. The first ship loaded with Hebridean colonists arrived on \"\"St. John's Island\"\" (Prince Edward Island) in 1770, with later ships following in 1772 and 1774. In 1773, a ship named \"\"The Hector\"\" landed in Pictou, Nova Scotia, with 169 settlers mostly originating from the Isle of Skye. In 1784, the last barrier to Scottish settlement—a law restricting"} +{"qid": "test1232", "pid": "10287774", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Scottish Canadians\"\nof Gaels began to arrive in Prince Edward Island, and in 1773 the ship \"\"Hector\"\" brought 200 Gaels to Pictou, beginning a new stream of Highland emigration — the town's slogan is \"\"The Birthplace of New Scotland\"\". At the end of the 18th century, Cape Breton Island had become a centre of Scottish Gaelic settlement, where only Scottish Gaelic was spoken. A number of Scottish Loyalists who had fled the United States in 1783 arrived in Glengarry County (in eastern Ontario) and Nova Scotia. In 1803, Lord Thomas Douglas, 5th Earl of Selkirk, who was sympathetic to the plight of"} +{"qid": "test1232", "pid": "9420745", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Leonard W. Murray\"\ndescendant of the Scottish immigrants who travelled to Pictou County on the Hector in 1773, and his mother was Jane Falconer (1868–1968). Simon was mid-level manager in various enterprises in Pictou Landing, and Leonard grew up close to the water. At 14 years of age, Murray left Pictou Academy to join the first intake of 21 recruits into the Royal Naval College of Canada in Halifax, which had just been created by the Naval Service Act of 4 May 1910. \"\"The first winter at the naval college was absolute hell, we had no uniforms, we arrived in what we stood"} +{"qid": "test1232", "pid": "13104054", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Woodside, Kings County, Nova Scotia\"\nWoodside, Kings County, Nova Scotia \"\"Woodside\"\" is a community in the Canadian province of Nova Scotia, located in Kings County. It was founded by the Woodside family, whom came over from Scotland in 1773 on the ship Hector. Some members of the family stayed in the Pictou region, but some lead by the family head E. Woodside migrated and established themselves in what is now known as Woodside, Kings County. Although most of the Woodside Clan left Pictou and Woodside and has since spread out to Prince Edward Island and other provinces (such as Ontario and New Brunswick), there is"} +{"qid": "test1232", "pid": "1842100", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"New Glasgow, Nova Scotia\"\nthe county. Scottish immigrants, including those on the ship Hector in 1773, settled the area of the East River of Pictou during the late 18th and early 19th centuries. Deacon Thomas Fraser first settled the area at the head of navigation on the East River of Pictou in 1784. The settlement was officially named \"\"New Glasgow\"\", after Glasgow in Scotland, in 1809, the same year its first trading post was developed. The discovery of large coal deposits in the East River valley during the early 19th century saw New Glasgow, at the head of navigation, quickly develop into a manufacturing"} +{"qid": "test1232", "pid": "13104055", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Woodside, Kings County, Nova Scotia\"\nstill some land and descendants of the original family in Nova Scotia. Woodside, Kings County, Nova Scotia \"\"Woodside\"\" is a community in the Canadian province of Nova Scotia, located in Kings County. It was founded by the Woodside family, whom came over from Scotland in 1773 on the ship Hector. Some members of the family stayed in the Pictou region, but some lead by the family head E. Woodside migrated and established themselves in what is now known as Woodside, Kings County. Although most of the Woodside Clan left Pictou and Woodside and has since spread out to Prince Edward"} +{"qid": "test1232", "pid": "10085676", "query": "when did the ship hector arrived in pictou", "answer": "1773", "passage": "\"Hector (ship)\"\nbetween 1815 and 1870. Her famous voyage took place in 1773 with a departure date around the second week of July, carrying 189 Highlanders who were immigrating to Nova Scotia. The vessel's owner, Mr. John Pagan, along with Dr. John Witherspoon, purchased three shares of land near Pictou, Nova Scotia. Pagan and Witherspoon hired John Ross as a recruiting agent for settlers willing to emigrate to Pictou with an offer of free passage, 1 year of free provisions, and a farm. The settlers (23 families, 25 single men) were recruited at Greenock Renfrewshire and at Lochbroom (Ross-shire) with the majority"} +{"qid": "test1235", "pid": "1613866", "query": "who sang on the back in black album", "answer": "Malcolm Young", "passage": "\"Back in Black\"\nwho made his recorded debut with the band on \"\"Back in Black\"\". The album was composed by Johnson, Angus and Malcolm Young, and recorded over seven weeks in the Bahamas from April to May 1980 with producer Robert John \"\"Mutt\"\" Lange, whom they had previously worked with on their previous album. Following its completion, the group mixed \"\"Back in Black\"\" at Electric Lady Studios in New York City. The album's all-black cover was designed as a \"\"sign of mourning\"\" for Scott. As their sixth international studio release, \"\"Back in Black\"\" was an unprecedented success. It has sold an estimated 50"} +{"qid": "test1236", "pid": "142062", "query": "who played gareth in four weddings and a funeral", "answer": "Simon Callow", "passage": "\"Four Weddings and a Funeral\"\nFour Weddings and a Funeral Four Weddings and a Funeral is a 1994 British romantic comedy film directed by Mike Newell. It was the first of several films by screenwriter Richard Curtis to feature Hugh Grant, and follows the adventures of Charles (Grant) and his circle of friends through a number of social occasions as they each encounter romance. Andie MacDowell stars as Charles' love interest Carrie, with Kristin Scott Thomas, James Fleet, Simon Callow, John Hannah, Charlotte Coleman, David Bower, Corin Redgrave and Rowan Atkinson in supporting roles. It was made in six weeks and cost under £3 million,"} +{"qid": "test1237", "pid": "18251211", "query": "who is the actor that plays saul on grace and frankie", "answer": "Sam Waterston", "passage": "\"Grace and Frankie\"\n2018, the series was renewed for a fifth season, with RuPaul announced to guest star as a rival of Grace and Frankie. Casting announcements began in June 2014, with Martin Sheen cast in the role of Robert, Grace's husband. The following month, Sam Waterston was cast in the role of Sol, Frankie's husband. June Diane Raphael and Baron Vaughn were then added to the cast, with Raphael cast in the role of Brianna, Grace and Robert's elder daughter, who rebels against Grace's decorum. Vaughn signed onto the role of Nwabudike, Frankie and Sol's son. Shortly afterwards, Ethan Embry and Brooklyn"} +{"qid": "test1237", "pid": "18251217", "query": "who is the actor that plays saul on grace and frankie", "answer": "Sam Waterston", "passage": "\"Grace and Frankie\"\nthat they had \"\"made a joke in an interview about our salaries, which was taken out of context.\"\" Grace and Frankie Grace and Frankie is an American comedy web television series created by Marta Kauffman and Howard J. Morris for Netflix. The series stars Jane Fonda and Lily Tomlin in the title roles of Grace and Frankie, two unlikely friends who are brought together after their husbands announce that they are in love with each other and plan to get married. Sam Waterston, Martin Sheen, Brooklyn Decker, Ethan Embry, June Diane Raphael, and Baron Vaughn co-star in supporting roles. It"} +{"qid": "test1237", "pid": "18251207", "query": "who is the actor that plays saul on grace and frankie", "answer": "Sam Waterston", "passage": "\"Grace and Frankie\"\nGrace and Frankie Grace and Frankie is an American comedy web television series created by Marta Kauffman and Howard J. Morris for Netflix. The series stars Jane Fonda and Lily Tomlin in the title roles of Grace and Frankie, two unlikely friends who are brought together after their husbands announce that they are in love with each other and plan to get married. Sam Waterston, Martin Sheen, Brooklyn Decker, Ethan Embry, June Diane Raphael, and Baron Vaughn co-star in supporting roles. It premiered on Netflix on May 8, 2015, with all 13 episodes of the first season released simultaneously. The"} +{"qid": "test1238", "pid": "8086313", "query": "who sang the song oh what a lonely boy", "answer": "Andrew Gold", "passage": "\"Lonely Boy (Andrew Gold song)\"\nLonely Boy (Andrew Gold song) \"\"Lonely Boy\"\" is an international hit song from 1977, written and recorded by Andrew Gold in 1976 for his album \"\"What's Wrong with This Picture?\"\" It spent five months on the American charts, peaking at number seven in both Canada and the United States, and number 11 in the United Kingdom. While \"\"Lonely Boy\"\" would be Gold's biggest U.S. hit, his \"\"Never Let Her Slip Away\"\" achieved greater success in the U.K. The song follows the life of a child who feels neglected by his parents after the birth of a younger sister. Many assume"} +{"qid": "test1239", "pid": "19479780", "query": "who won the 2017 ncaa mens basketball tournament", "answer": "North Carolina", "passage": "\"2017–18 North Carolina Tar Heels men's basketball team\"\nSeason !colspan=12 style=|ACC Tournament !colspan=12 style=| NCAA Tournament *AP does not release post-NCAA Tournament rankings 2017–18 North Carolina Tar Heels men's basketball team The 2017–18 North Carolina Tar Heels men's basketball team represented the University of North Carolina at Chapel Hill during the 2017–18 NCAA Division I men's basketball season. The team's head coach was Roy Williams, who was in his 15th season as UNC's head men's basketball coach. The Tar Heels played their home games at the Dean Smith Center in Chapel Hill, North Carolina as members of the Atlantic Coast Conference. They finished the season 26–11, 11–7 in"} +{"qid": "test124", "pid": "12472160", "query": "where do the royalties for winnie the pooh go", "answer": "Slesinger, Inc.", "passage": "Winnie-the-Pooh\nthe stylised Disney Pooh, Disney markets Classic Pooh merchandise which more closely resembles E.H. Shepard's illustrations. In 1991, Stephen Slesinger, Inc. filed a lawsuit against Disney which alleged that Disney had breached their 1983 agreement by again failing to accurately report revenue from Winnie the Pooh sales. Under this agreement, Disney was to retain approximately 98% of gross worldwide revenues while the remaining 2% was to be paid to Slesinger. In addition, the suit alleged that Disney had failed to pay required royalties on all commercial exploitation of the product name. Though the Disney corporation was sanctioned by a judge"} +{"qid": "test124", "pid": "10712976", "query": "where do the royalties for winnie the pooh go", "answer": "Slesinger, Inc.", "passage": "\"Shirley Slesinger Lasswell\"\nwith the \"\"Los Angeles Times\"\", \"\"I thought, 'Now what do I do?' But it was right there for me. I decided to promote Pooh.\"\" Lasswell initially began designing Winnie the Pooh related products, such as clothing, toys and dolls for sale at upscale American department stores in the 1950s under Stephen Slesinger, Inc. However, Lasswell also began to expand Winnie the Pooh into other markets. She was in the initial stages of developing Pooh for television when she met Walt Disney, founder and head of the Walt Disney Company. Disney wanted to create a television show featuring the Winnie The"} +{"qid": "test124", "pid": "7345314", "query": "where do the royalties for winnie the pooh go", "answer": "Slesinger, Inc.", "passage": "\"Winnie the Pooh (Disney character)\"\nbefore his death in 1996. Sometime around 2000, the Pooh Properties Trust licensed additional rights to Disney and accepted a buyout of their claims to royalties as defined in a 1991 lawsuit brought by Stephen Slesinger, Inc. Although Slesinger's rights are arguably more valuable, the combined value paid by Disney to The Pooh Properties Trust is said to be approximately $300 million for Milne's portion of those rights. To further minimize Disney's legal exposure to Slesinger, Disney paid money to the Pooh Properties attorneys and trusts to use the name of Clare Milne, daughter of Christopher Robin, in an attempt"} +{"qid": "test1241", "pid": "3498411", "query": "how many plane surfaces does a cylinder have", "answer": "two parallel planes", "passage": "Cylinder\nparallel planes is called a (solid) '. The line segments determined by an element of the cylindrical surface between the two parallel planes is called an \"\"element of the cylinder\"\". All the elements of a cylinder have equal lengths. The region bounded by the cylindrical surface in either of the parallel planes is called a ' of the cylinder. The two bases of a cylinder are congruent figures. If the elements of the cylinder are perpendicular to the planes containing the bases, the cylinder is a ', otherwise it is called an '. If the bases are disks (regions whose"} +{"qid": "test1241", "pid": "3498415", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "Cylinder\na right section of a cylinder is a conic section (parabola, ellipse, hyperbola) then the solid cylinder is said to be parabolic, elliptic or hyperbolic respectively. For a right circular cylinder, there are several ways in which planes can meet a cylinder. First, consider planes that intersect a base in at most one point. A plane is tangent to the cylinder if it meets the cylinder in a single element. The right sections are circles and all other planes intersect the cylindrical surface in an ellipse. If a plane intersects a base of the cylinder in exactly two points then"} +{"qid": "test1241", "pid": "3498414", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "Cylinder\nof solids of revolution. A cylindric section is the intersection of a cylinder's surface with a plane. They are, in general, curves and are special types of \"\"plane sections\"\". The cylindric section by a plane that contains two elements of a cylinder is a parallelogram. Such a cylindric section of a right cylinder is a rectangle. A cylindric section in which the intersecting plane intersects and is perpendicular to all the elements of the cylinder is called a \"\"\"\". If a right section of a cylinder is a circle then the cylinder is a circular cylinder. In more generality, if"} +{"qid": "test1241", "pid": "17791795", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "\"Intersection curve\"\nIntersection curve In geometry, an intersection curve is, in the most simple case, the intersection line of two non-parallel planes in Euclidean 3-space. In general, an intersection curve consists of the common points of two \"\"transversally\"\" intersecting surfaces, meaning that at any common point the surface normals are not parallel. This restriction excludes cases where the surfaces are touching or have surface parts in common. The analytic determination of the intersection curve of two surfaces is easy only in simple cases; for example: a) the intersection of two planes, b) plane section of a quadric (sphere, cylinder, cone, etc.), c)"} +{"qid": "test1241", "pid": "1292987", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "Quadric\ngenerates the ellipsoid, the elliptic paraboloid or the hyperboloid of two sheets, depending on whether the chosen plane at infinity cuts the quadric in the empty set, in a point, or in a nondegenerate conic respectively. These all have positive Gaussian curvature. The third case generates the hyperbolic paraboloid or the hyperboloid of one sheet, depending on whether the plane at infinity cuts it in two lines, or in a nondegenerate conic respectively. These are doubly ruled surfaces of negative Gaussian curvature. The degenerate form generates the elliptic cylinder, the parabolic cylinder, the hyperbolic cylinder, or the cone, depending on"} +{"qid": "test1241", "pid": "3498410", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "Cylinder\nline and which pass through a fixed plane curve in a plane not parallel to the given line. Any line in this family of parallel lines is called an \"\"element\"\" of the cylindrical surface. From a kinematics point of view, given a plane curve, called the \"\"directrix\"\", a cylindrical surface is that surface traced out by a line, called the \"\"generatrix\"\", not in the plane of the directrix, moving parallel to itself and always passing through the directrix. Any particular position of the generatrix is an element of the cylindrical surface. A solid bounded by a cylindrical surface and two"} +{"qid": "test1241", "pid": "3498427", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "Cylinder\nis a quadratic cone, the plane at infinity passing through the vertex can intersect the cone at two real lines, a single real line (actually a coincident pair of lines), or only at the vertex. These cases give rise to the hyperbolic, parabolic or elliptic cylinders respectively. This concept is useful when considering degenerate conics, which may include the cylindrical conics. A \"\"solid circular cylinder\"\" can be seen as the limiting case of a -gonal prism where approaches infinity. The connection is very strong and many older texts treat prisms and cylinders simultaneously. Formulas for surface area and volume are"} +{"qid": "test1241", "pid": "9873207", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "\"Development (differential geometry)\"\neach other or \"\"developments\"\" of each other. Differently put, the correspondence provides an isometry, locally, between the two surfaces. In particular, if one of the surfaces is a plane, then the other is called a developable surface: thus a developable surface is one which is locally isometric to a plane. The cylinder is developable, but the sphere is not. Development can be generalized further using flat connections. From this point of view, rolling the tangent plane over a surface defines an affine connection on the surface (it provides an example of parallel transport along a curve), and a developable surface"} +{"qid": "test1241", "pid": "20232177", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "\"Circular section\"\nintersection of with the plane at infinity consists of one or two real lines, that is when is either a hyperbolic paraboloid, a parabolic cylinder or a hyperbolic cylinder. In this case the points at infinity of are real (intersection of a real plane with real lines). Thus the plane sections of cannot be circles (neither ellipses). If is a sphere, its intersection with the plane at infinity is the ombilic, and all plane sections are circles. If is a surface of revolution, its intersection with the ombilic consists of a pair of complex conjugate points (which are double points)."} +{"qid": "test1241", "pid": "384173", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "\"Surface (topology)\"\nformula, . Thus, the connected sum of three real projective planes is homeomorphic to the connected sum of the real projective plane with the torus. Any connected sum involving a real projective plane is nonorientable. A closed surface is a surface that is compact and without boundary. Examples are spaces like the sphere, the torus and the Klein bottle. Examples of non-closed surfaces are: an open disk, which is a sphere with a puncture; a cylinder, which is a sphere with two punctures; and the Möbius strip. As with any closed manifold, a surface embedded in Euclidean space that is"} +{"qid": "test1241", "pid": "4357539", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "\"Cross section (geometry)\"\nsymmetry axis. In more generality, the plane sections of a quadric are conic sections. A cross-section of a solid right circular cylinder extending between two bases is a disk if the cross-section is parallel to the cylinder's base, or an elliptic region (see diagram at right) if it is neither parallel nor perpendicular to the base. If the cutting plane is perpendicular to the base it consists of a rectangle (not shown) unless it is just tangent to the cylinder, in which case it is a single line segment. The term cylinder can also mean the lateral surface of a"} +{"qid": "test1241", "pid": "3498409", "query": "how many plane surfaces does a cylinder have", "answer": "two", "passage": "Cylinder\nhoped that context makes the meaning clear. In this article both points of view are presented and distinguished by referring to \"\"solid cylinders\"\" and \"\"cylindrical surfaces\"\", but keep in mind that in the literature the unadorned term cylinder could refer to either of these or to an even more specialized object, the \"\"right circular cylinder\"\". The definitions and results in this section are taken from the 1913 text, \"\"Plane and Solid Geometry\"\" by George Wentworth and David Eugene Smith . A \"\"\"\" is a surface consisting of all the points on all the lines which are parallel to a given"} +{"qid": "test1242", "pid": "9198489", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"Wimbledon Effect\"\nWimbledon Effect The Wimbledon effect (Japanese: ウィンブルドン現象, rōmaji: \"\"Uinburudon Genshō\"\", literally \"\"Wimbledon Phenomenon\"\") is a chiefly British and Japanese analogy (which possibly originated in Japan) which compares the tennis fame of the Wimbledon Championships, held at the All England Lawn Tennis and Croquet Club in Wimbledon, London, with the economic success of the United Kingdom's financial services industries – especially those clustered in the City of London. The point of the analogy is that a national and international institution (the All England Club) can be highly successful despite the lack of strong native competition, as in modern tennis Britain has"} +{"qid": "test1242", "pid": "1176135", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"Wimbledon, North Dakota\"\nWimbledon, North Dakota Wimbledon is a city in Barnes County, North Dakota, United States. The population was 216 at the 2010 census. Wimbledon was founded in 1892. It was named for Wimbledon, London, which was the birthplace of John H. Gibson, who homesteaded the land the town was built on. Wimbledon is located at (47.170662, -98.459941). According to the United States Census Bureau, the city has a total area of , all of it land. As of the census of 2010, there were 216 people, 94 households, and 55 families residing in the city. The population density was . There"} +{"qid": "test1242", "pid": "10050060", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"1922 Wimbledon Championships\"\n1922 Wimbledon Championships The 1922 Wimbledon Championships were the 42nd edition of the prestigious tennis tournament, held at the All England Lawn Tennis and Croquet Club in Wimbledon, London. The tournament ran from 26 June until 10 July. It was the 42nd staging of the Wimbledon Championships, and the first Grand Slam tennis event of 1922. This edition of Wimbledon was historically important as being the first in which all defending champions were required to play in the main draw. Previously, the Gentlemen's Singles, Ladies' Singles, and Gentlemen's Doubles used a system known as the Challenge Round, in which the"} +{"qid": "test1242", "pid": "1176142", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"Wimbledon, North Dakota\"\nwas completed, and the remaining two facilities were closed, and all students in the district began attending the new Barnes County North Public School. Wimbledon, North Dakota Wimbledon is a city in Barnes County, North Dakota, United States. The population was 216 at the 2010 census. Wimbledon was founded in 1892. It was named for Wimbledon, London, which was the birthplace of John H. Gibson, who homesteaded the land the town was built on. Wimbledon is located at (47.170662, -98.459941). According to the United States Census Bureau, the city has a total area of , all of it land. As"} +{"qid": "test1242", "pid": "5217697", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"2001 Wimbledon Championships\"\n2001 Wimbledon Championships The 2001 Wimbledon Championships was a tennis tournament played on grass courts at the All England Lawn Tennis and Croquet Club in Wimbledon, London in England, held from 25 June to 9 July 2001. It was the 115th edition of the Wimbledon Championships, part of the 2001 ATP and WTA Tours, and it was the third Grand Slam tennis event of the year. The tournament was the first in Wimbledon's 124-year history in which 32 players in the men's and women's draws were seeded, instead of the usual sixteen. This move was made to appease clay court"} +{"qid": "test1242", "pid": "933049", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"Wimbledon, London\"\nas well as for Elisabeth Beresford's series of children's stories about the Wombles. Wimbledon was given as the site where the sixth Martian invasion cylinder landed in H.G. Wells' book \"\"The War of the Worlds\"\" and is mentioned briefly in the same author's \"\"The Time Machine\"\" and \"\"When the Sleeper Wakes\"\". Each October thousands attend the Wimbledon BookFest, which has been running since 2006. Over 60 events are held around Wimbledon, including at the Big Tent on the Common. Wimbledon, London Wimbledon is a district and town of south-west London, England, south-west of the centre of London at Charing Cross,"} +{"qid": "test1242", "pid": "10050099", "query": "in which city are the wimbledon game held", "answer": "London", "passage": "\"1946 Wimbledon Championships\"\n1946 Wimbledon Championships The 1946 Wimbledon Championships took place on the outdoor grass courts at the All England Lawn Tennis and Croquet Club in Wimbledon, London, United Kingdom. The tournament was held from Monday 24 June until Saturday 6 July 1946. It was the 60th staging of the Wimbledon Championships and the first one held after a six-year break due to World War II. In 1946 and 1947 Wimbledon was held before the French Championships and was thus the second Grand Slam tennis event of the year. Yvon Petra defeated Geoff Brown, 6–2, 6–4, 7–9, 5–7, 6–4 Pauline Betz defeated"} +{"qid": "test1243", "pid": "16064207", "query": "who played the first phantom of the opera", "answer": "Michael Crawford", "passage": "\"Discworld characters\"\non the character Frank Spencer, from the 1970s British TV series \"\"[[Some Mothers Do 'Ave 'Em]]\"\". Spencer was played by actor [[Michael Crawford]], who is also known as the original performer of the title character in the musical \"\"[[The Phantom of the Opera (1986 musical)|Phantom of the Opera]]\"\". A professional scribe who in \"\"[[The Truth (novel)|The Truth]]\"\" has a career of writing down interesting news for various Lords and Ladies abroad, this led to him becoming the editor of the Disc's first newspaper, \"\"The Ankh-Morpork Times\"\". He has an obsessive dislike of lying, which he has however learned to work"} +{"qid": "test1243", "pid": "3393280", "query": "who played the first phantom of the opera", "answer": "Michael Crawford", "passage": "\"Michael Ball (singer)\"\nCameron Mackintosh asked Ball to play Raoul in the second casting of \"\"The Phantom of the Opera\"\" in London, which was necessary after Michael Crawford (who played the Phantom) and Steve Barton (who played Raoul) left the London show to appear in the Broadway staging in New York City. Mackintosh thought that Ball would not be under too much pressure as Raoul, and that the part was right for him. Ball played Alex in \"\"Aspects of Love\"\", both in London and New York, and Giorgio in the London production of Stephen Sondheim's \"\"Passion\"\". \"\"Alone Together\"\" was his one-man show first"} +{"qid": "test1243", "pid": "16903562", "query": "who played the first phantom of the opera", "answer": "Michael Crawford", "passage": "\"The Phantom of the Opera at the Royal Albert Hall\"\nAlbert Hall creative team, the original creative team, as well as the original leads from both the London and Broadway productions, and the original London cast, including Michael Crawford and Sarah Brightman. Brightman sings \"\"The Phantom of the Opera\"\" with four Phantoms: Colm Wilkinson from the original workshop and the Canadian production, Anthony Warlow from the Australian production, Peter Jöback, who has now played the role in the West End, Broadway, and Sweden, John Owen-Jones from the London and 25th Anniversary Tour productions. The performance concludes when Ramin Karimloo joins the four Phantoms to sing \"\"The Music of the Night\"\","} +{"qid": "test1245", "pid": "3323067", "query": "why does cooling water run through the condenser", "answer": "condense the steam", "passage": "\"Cooling tower\"\nthese large towers are very prominent, the vast majority of cooling towers are much smaller, including many units installed on or near buildings to discharge heat from air conditioning. Cooling towers originated in the 19th century through the development of condensers for use with the steam engine. Condensers use relatively cool water, via various means, to condense the steam coming out of the cylinders or turbines. This reduces the back pressure, which in turn reduces the steam consumption, and thus the fuel consumption, while at the same time increasing power and recycling boiler-water. However the condensers require an ample supply"} +{"qid": "test1246", "pid": "278122", "query": "when does a cell have condensed visible chromosomes also known as sister chromatids", "answer": "metaphase", "passage": "Mitosis\nenvelope breaks down. The preprophase band disappears during nuclear envelope breakdown and spindle formation in prometaphase. During prophase, which occurs after G interphase, the cell prepares to divide by tightly condensing its chromosomes and initiating mitotic spindle formation. During interphase, the genetic material in the nucleus consists of loosely packed chromatin. At the onset of prophase, chromatin fibers condense into discrete chromosomes that are typically visible at high magnification through a light microscope. In this stage, chromosomes are long, thin and thread-like. Each chromosome has two chromatids. The two chromatids are joined at the centromere. Gene transcription ceases during prophase"} +{"qid": "test1246", "pid": "1514602", "query": "when does a cell have condensed visible chromosomes also known as sister chromatids", "answer": "metaphase", "passage": "Anaphase\nAnaphase 'Anaphase' (from the Greek ἀνά, \"\"up\"\" and φάσις, \"\"stage\"\"), is the stage of mitosis after the metaphase when replicated chromosomes are split and the daughter chromatids are moved to opposite poles of the cell. Chromosomes also reach their overall maximum condensation in late anaphase, to help chromosome segregation and the re-formation of the nucleus. Anaphase starts when the anaphase promoting complex marks an inhibitory chaperone called securin with ubiquitin for destruction. Securin is a protein which inhibits a protease known as separase. The destruction of securin unleashes separase which then breaks down cohesin, a protein responsible for holding sister"} +{"qid": "test1246", "pid": "2088524", "query": "when does a cell have condensed visible chromosomes also known as sister chromatids", "answer": "metaphase", "passage": "\"Homologous chromosome\"\nthe same in mitosis as they do in meiosis. Prior to every single mitotic division a cell undergoes, the chromosomes in the parent cell replicate themselves. The homologous chromosomes within the cell will ordinarily not pair up and undergo genetic recombination with each other. Instead, the replicants, or sister chromatids, will line up along the metaphase plate and then separate in the same way as meiosis II - by being pulled apart at their centromeres by nuclear mitotic spindles. If any crossing over does occur between sister chromatids during mitosis, it does not produce any new recombinant genotypes. Homologous pairing"} +{"qid": "test1246", "pid": "278126", "query": "when does a cell have condensed visible chromosomes also known as sister chromatids", "answer": "metaphase", "passage": "Mitosis\nthe cell successfully passes through the metaphase checkpoint, it proceeds to anaphase. During \"\"anaphase A\"\", the cohesins that bind sister chromatids together are cleaved, forming two identical daughter chromosomes. Shortening of the kinetochore microtubules pulls the newly formed daughter chromosomes to opposite ends of the cell. During \"\"anaphase B\"\", polar microtubules push against each other, causing the cell to elongate. In late anaphase, chromosomes also reach their overall maximal condensation level, to help chromosome segregation and the re-formation of the nucleus. In most animal cells, anaphase A precedes anaphase B, but some vertebrate egg cells demonstrate the opposite order of"} +{"qid": "test1246", "pid": "1626659", "query": "when does a cell have condensed visible chromosomes also known as sister chromatids", "answer": "metaphase", "passage": "Chromatid\nidentical, and said to be homozygous; however, if mutation(s) occur, they will present slight differences, in which case they are heterozygous. The pairing of chromatids should not be confused with the ploidy of an organism, which is the number of homologous versions of a chromosome. Chromonema is the fibre-like structure in prophase in the primary stage of DNA condensation. In metaphase, they are called chromatids. Chromatids may be sister or non-sister chromatids. A sister chromatid is either one of the two chromatids of the same chromosome joined together by a common centromere. A pair of sister chromatids is called a"} +{"qid": "test1246", "pid": "3508638", "query": "when does a cell have condensed visible chromosomes also known as sister chromatids", "answer": "metaphase", "passage": "Condensin\nis present in the cytoplasm during interphase, and gains access to chromosomes only after the nuclear envelope breaks down at the end of prophase. During prometaphase and metaphase, both condensin I and condensin II contribute to the assembly of condensed chromosomes, in which two sister chromatids are fully resolved. The two complexes apparently stay associated with chromosomes after the sister chromatids separate from each other in anaphase. At least one of the subunits of condensin I is known to be a direct target of a cyclin-dependent kinase (Cdk). Recent studies have shown that condensins participate in a wide variety of"} +{"qid": "test1247", "pid": "2927680", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Bat Masterson (TV series)\"\njobs. Bat Masterson (TV series) Bat Masterson is an American Western television series which showed a fictionalized account of the life of real-life marshal/gambler/dandy Bat Masterson. The title character was played by Gene Barry and the half-hour black-and-white shows ran on NBC from 1958 to 1961. The series was produced by Ziv Television Productions. \"\"Bat\"\" is a nickname for Masterson's first name, Bartholemew. The show took a tongue-in-cheek outlook, with Barry's Masterson often dressed in expensive Eastern clothing and preferring to use his cane rather than a gun to get himself out of trouble. Masterson was also portrayed as a"} +{"qid": "test1247", "pid": "2927672", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Bat Masterson (TV series)\"\nBat Masterson (TV series) Bat Masterson is an American Western television series which showed a fictionalized account of the life of real-life marshal/gambler/dandy Bat Masterson. The title character was played by Gene Barry and the half-hour black-and-white shows ran on NBC from 1958 to 1961. The series was produced by Ziv Television Productions. \"\"Bat\"\" is a nickname for Masterson's first name, Bartholemew. The show took a tongue-in-cheek outlook, with Barry's Masterson often dressed in expensive Eastern clothing and preferring to use his cane rather than a gun to get himself out of trouble. Masterson was also portrayed as a ladies'"} +{"qid": "test1247", "pid": "4695553", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Gene Barry\"\nthe new romantic interest of series star Eve Arden. While the show was canceled in 1956, Barry's character—a ladies' man with expensive tastes—served as the model for three shows in which he starred. \"\"Bat Masterson\"\", a fictionalized recounting of the life of the real-life U.S. Marshal, gambler, and gunman was broadcast by NBC-TV from 1958 to 1961. (In 1990, Barry recreated the role of Bat Masterson for two episodes of \"\"Guns of Paradise\"\" along with Hugh O'Brian as Wyatt Earp and the following year in \"\"\"\", also with O'Brian as Wyatt Earp.) In his next TV series, \"\"Burke's Law\"\", Barry"} +{"qid": "test1247", "pid": "6016536", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Luke Short\"\nOn February25, 1958, Grant Richards played Short in the episode \"\"Wyatt Fights\"\" of the ABC/Desilu western series \"\"The Life and Legend of Wyatt Earp\"\". In the story line, deputy Wyatt Earp (Hugh O'Brian) is caught in the middle when two saloon owners want to take over a third establishment, the Long Branch Saloon. Paul Brinegar played the role of James H. \"\"Dog \"\" Kelley, the mayor of Dodge City. On January7, 1960, an episode called \"\"The Pied Piper of Dodge City\"\" (Season2, episode13) was broadcast on the \"\"Bat Masterson\"\" TV series which starred Gene Barry as Masterson. In that episode"} +{"qid": "test1247", "pid": "2345073", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Maverick (TV series)\"\nseries, including \"\"Bat Masterson\"\" (Gene Barry), \"\"Wyatt Earp\"\" (Hugh O'Brian), the \"\"Rifleman\"\" (Chuck Connors) and his son Mark (Johnny Crawford), Caine from \"\"Kung Fu\"\" (David Carradine), \"\"The Westerner\"\" (Brian Keith), a thinly disguised \"\"Virginian\"\" (James Drury) and Trampas (Doug McClure, who had appeared briefly as a hotel clerk in a first season \"\"Maverick\"\" episode), and \"\"Cheyenne\"\" Bodie (Clint Walker). As each hero appears onscreen, a few bars of the theme song from his original series plays in the background. A lavish theatrical film version was released in 1994 entitled \"\"Maverick\"\" starring Mel Gibson as Bret Maverick, Jodie Foster as a"} +{"qid": "test1247", "pid": "8495589", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"The Westerner (TV series)\"\nof 1950s and 1960s television Western series leads reprising their roles in quick cameo appearances (Gene Barry as Bat Masterson, Hugh O'Brian as Wyatt Earp, Jack Kelly as Bart Maverick, Clint Walker as Cheyenne Bodie, David Carradine as \"\"Kung Fu\"\"'s Caine, Chuck Connors as The Rifleman, and so on). A two-DVD set of the complete series was released by Shout! Factory in February 2017. The Westerner (TV series) The Westerner is a highbrow American Western series that aired on NBC from September 30 to December 30, 1960. Created, written and produced by Sam Peckinpah, who also directed some episodes, the"} +{"qid": "test1247", "pid": "19756455", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Dorothy Johnson (model actress)\"\nshow \"\"Love That Bob\"\". Episodes where she is credited include \"\"Bob Retrenches\"\" aired on NBC-TV April 8, 1958, \"\"Bob Judges a Beauty Pageant\"\" aired on NBC-TV December 16, 1958 and \"\"Bob and the Dumb Blonde\"\" aired on NBC-TV September 30, 1958. She was cast in the part of Claire Cantrell in an episode titled \"\"Death by the Half Dozen\"\" of \"\"Bat Masterson\"\", a popular western television series starring Gene Barry as Masterson. Her character is the fiancée of the sheriff of Mesquite Springs, Nevada. While riding in a stage coach, she gets kidnapped by an outlaw gang and held for"} +{"qid": "test1247", "pid": "8202018", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Robert J. Wilke\"\nBoone\"\". He appeared twice on \"\"The Virginian\"\", \"\"Cimarron Strip\"\", and \"\"The Guns of Will Sonnett\"\", and once on Barry Sullivan's \"\"The Tall Man\"\", Kirby Grant's \"\"Sky King\"\", Andrew Duggan's \"\"Lancer\"\", Robert Conrad's \"\"The Wild Wild West\"\", and the ABC family western \"\"The Monroes\"\". Wilke appeared as a dishonest fight promoter in the 1958 episode \"\"The Fighter\"\" of NBC's western series, \"\"Bat Masterson\"\", having engaged on screen in fisticuffs with Gene Barry, who played Masterson. In 1960 Wilke was cast as Red Dog Hanlon in the episode \"\"End of a Dream\"\" of the NBC western series \"\"Riverboat\"\", starring Darren McGavin and"} +{"qid": "test1247", "pid": "17428797", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Mason Alan Dinehart\"\ninspired the name of the Brown Derby restaurants in Los Angeles. By the time Dinehart left \"\"The Life and Legend of Wyatt Earp\"\", Gene Barry had already assumed for nearly a year the role of a more mature Masterson, one in his early forties, in the NBC western series \"\"Bat Masterson\"\". Some viewers complained of the change in actors portraying Bat Masterson, but in time Barry was the one most remembered for the role, not Dinehart, who left show business. Dinehart's first acting role was uncredited as \"\"Superman\"\" at the age of twelve in the 1948 film \"\"Superman\"\". Dinehart was"} +{"qid": "test1247", "pid": "10178500", "query": "who played bat masterson in the tv series", "answer": "Gene Barry", "passage": "\"Elaine Stewart\"\nand \"\"The Adventures of Hajji Baba\"\". Stewart had a small but key role, as Anne Boleyn, in 1953's \"\"Young Bess\"\". She co-starred with Jeff Chandler in the film noir \"\"The Tattered Dress\"\" (1957), with Victor Mature in the western \"\"Escort West\"\" (1958) and shared top billing with John Derek in a 1958 adventure film, \"\"High Hell\"\", before turning to television. Stewart guest-starred in TV series such as \"\"Bat Masterson\"\" and \"\"Burke's Law\"\", both starring Gene Barry. In her last acting appearance on TV, she played Irene Grey in the \"\"Perry Mason\"\" episode \"\"The Case of the Capering Camera\"\" in 1964."} +{"qid": "test1249", "pid": "18255217", "query": "who played caesar in planet of the apes war", "answer": "Andy Serkis", "passage": "\"War for the Planet of the Apes\"\nWar for the Planet of the Apes War for the Planet of the Apes is a 2017 American science fiction film directed by Matt Reeves and written by Mark Bomback and Reeves. A sequel to \"\"Rise of the Planet of the Apes\"\" (2011) and \"\"Dawn of the Planet of the Apes\"\" (2014), it is the third installment in the \"\"Planet of the Apes\"\" reboot series. The film stars Andy Serkis, Woody Harrelson and Steve Zahn, and follows a confrontation between the apes, led by Caesar, and the humans for control of Earth. Like its predecessor, its premise shares several similarities"} +{"qid": "test1249", "pid": "2417383", "query": "who played caesar in planet of the apes war", "answer": "Andy Serkis", "passage": "\"Andy Serkis\"\ndone critically acclaimed motion capture work in several other films, including the title character in the 2005 version of King Kong (in which he also played the ship's cook in live action) and as Caesar in \"\"Rise of the Planet of the Apes\"\" (2011), \"\"Dawn of the Planet of the Apes\"\" (2014), and \"\"War for the Planet of the Apes\"\" (2017). He also worked with game developers Ninja Theory on the 2007 release \"\"Heavenly Sword\"\", providing the motion capture and voice for King Bohan (the game's main villain). Serkis was cast as serial killer Ian Brady in the BAFTA-nominated \"\"Longford\"\","} +{"qid": "test125", "pid": "1348502", "query": "all the motor neurons that control the skeletal muscles are", "answer": "Somatic motor neurons", "passage": "\"Motor neuron\"\ncategories: Somatic motor neurons originate in the central nervous system, project their axons to skeletal muscles (such as the muscles of the limbs, abdominal, and intercostal muscles), which are involved in locomotion. The three types of these neurons are the \"\"alpha efferent neurons\"\", \"\"beta efferent neurons\"\", and \"\"gamma efferent neurons\"\". They are called efferent to indicate the flow of information from the central nervous system (CNS) to the periphery. In addition to voluntary skeletal muscle contraction, alpha motor neurons also contribute to muscle tone, the continuous force generated by noncontracting muscle to oppose stretching. When a muscle is stretched, sensory"} +{"qid": "test125", "pid": "2391493", "query": "all the motor neurons that control the skeletal muscles are", "answer": "Somatic", "passage": "\"Somatic nervous system\"\nthe efferent somatic nervous system involves a sequence that begins in the upper cell bodies of motor neurons (upper motor neurons) within the precentral gyrus (which approximates the primary motor cortex). Stimuli from the precentral gyrus are transmitted from upper motor neurons and down the corticospinal tract, via axons to control skeletal (voluntary) muscles. These stimuli are conveyed from upper motor neurons through the ventral horn of the spinal cord, and across synapses to be received by the sensory receptors of alpha motor neurons (large lower motor neurons) of the brainstem and spinal cord. Upper motor neurons release a neurotransmitter,"} +{"qid": "test125", "pid": "2391491", "query": "all the motor neurons that control the skeletal muscles are", "answer": "efferent nerves", "passage": "\"Somatic nervous system\"\nSomatic nervous system The somatic nervous system (SNS or voluntary nervous system) is the part of the peripheral nervous system associated with the voluntary control of body movements via skeletal muscles. The somatic nervous system consists of afferent nerves or sensory nerves, and efferent nerves or motor nerves. Afferent nerves are responsible for relaying sensation from the body to the central nervous system; efferent nerves are responsible for sending out commands from the CNS to the body, stimulating muscle contraction; they include all the non-sensory neurons connected with skeletal muscles and skin. The \"\"a-\"\" of \"\"afferent\"\" and the \"\"e-\"\" of"} +{"qid": "test125", "pid": "12561005", "query": "all the motor neurons that control the skeletal muscles are", "answer": "efferent nerves", "passage": "Muscle\nmuscles react to reflexive nerve stimuli that do not always send signals all the way to the brain. In this case, the signal from the afferent fiber does not reach the brain, but produces the reflexive movement by direct connections with the efferent nerves in the spine. However, the majority of muscle activity is volitional, and the result of complex interactions between various areas of the brain. Nerves that control skeletal muscles in mammals correspond with neuron groups along the primary motor cortex of the brain's cerebral cortex. Commands are routed though the basal ganglia and are modified by input"} +{"qid": "test1250", "pid": "3726101", "query": "when did men's curling start in the olympics", "answer": "1924", "passage": "\"Curling at the 1924 Winter Olympics\"\nCurling at the 1924 Winter Olympics The curling event at the 1924 Winter Olympics was contested only by men. It is the first curling event in Olympic history. In February 2006, a few days before the start of the 2006 Winter Olympics, the International Olympic Committee ruled that the curling medals were part of the official Olympic programme in 1924, and not a demonstration event as many authoritative sources had previously claimed (although the IOC itself had never done so). This official confirmation was the culmination of an investigative campaign begun by the Glasgow-based newspaper \"\"The Herald\"\", on behalf of"} +{"qid": "test1250", "pid": "3726103", "query": "when did men's curling start in the olympics", "answer": "1924", "passage": "\"Curling at the 1924 Winter Olympics\"\nAll games were 18 ends in length. \"\"Monday 28 January 1924; 10:00 am\"\" \"\"Tuesday 29 January 1924; 10:00 am\"\" \"\"Wednesday 30 January 1924; 10:00 am\"\" Curling at the 1924 Winter Olympics The curling event at the 1924 Winter Olympics was contested only by men. It is the first curling event in Olympic history. In February 2006, a few days before the start of the 2006 Winter Olympics, the International Olympic Committee ruled that the curling medals were part of the official Olympic programme in 1924, and not a demonstration event as many authoritative sources had previously claimed (although the IOC"} +{"qid": "test1250", "pid": "19691549", "query": "when did men's curling start in the olympics", "answer": "1998", "passage": "\"Canada at the 2018 Winter Olympics\"\nofficial introduction at the 1998 Winter Olympics, Canada failed to medal in men's and women's curling, but did win gold in mixed doubles curling, a category making its Olympic debut. On Day 2 of the Games, Mark McMorris won the bronze medal in the men's slopestyle. This was eleven months after the snowboarder ended up in a coma. Pairs skater Eric Radford became the first openly gay man to win a gold medal at any Winter Olympics, as part of the Canadian team that won the team figure skating competition. A corner of Canada Olympic House was set aside as"} +{"qid": "test1250", "pid": "12576697", "query": "when did men's curling start in the olympics", "answer": "1924", "passage": "\"United States Curling Association\"\nStates Curling Association typically holds ten national championship events each season. The United States has placed twice in the Olympics for curling events. The country earned a bronze medal for the men's curling team at the 2006 Turin Winter Olympics and a gold medal for the men's curling team in the 2018 Pyeongchang Winter Olympics. John Shuster and Joe Polo were the medal leaders in both years. Curling for men was included in the Olympic program in 1924, but was dropped and replaced as a demonstration sport in 1932. It continued as a demonstration sport for both men and women"} +{"qid": "test1250", "pid": "17852298", "query": "when did men's curling start in the olympics", "answer": "1998", "passage": "\"Curling at the 2014 Winter Olympics – Statistics\"\nCurling at the 2014 Winter Olympics – Statistics This is a statistical synopsis of the curling tournaments at the 2014 Winter Olympics. A total of thirty-three curlers are Olympic veterans. Two female curlers from the inaugural Olympic curling event in Nagano in 1998 returned to the Olympics. Seven female curlers and one male curler who competed in Salt Lake City in 2002 have qualified again. Ten curlers from the Torino Olympics in 2006 are competing at these Olympics, and fifteen women and eighteen men who participated in the 2010 Vancouver Olympics have returned. In curling, each player is graded on"} +{"qid": "test1250", "pid": "20941868", "query": "when did men's curling start in the olympics", "answer": "1998", "passage": "\"Viktor Kim\"\nnational curling teams on many international curling tournaments. He is \"\"founder of Kazakhstani curling\"\": after when he seen curling competition on 1998 Winter Olympics in Nagano, he founded Kazakhstan Curling Association in 2003 and for today he is Secretary General of this Association. He is member of National Olympic Committee of the Republic of Kazakhstan. He started play curling in 2003, first his coach was Russian curler and coach Alexander Kirikov. He is ethnical Korean living in Kazakhstan. His son Daniel Kim is curler and curling coach too. Viktor and Daniel played in one team many times, for example on"} +{"qid": "test1250", "pid": "15272391", "query": "when did men's curling start in the olympics", "answer": "1924", "passage": "\"Karuizawa International Curling Championship\"\nKaruizawa International Curling Championship The Karuizawa International Curling Championship is a curling bonspiel held annually since the Olympic Games in Nagano at the SCAP Karuizawa Arena in Kariuzawa, Japan. The bonspiel is held to commemorate the curling event at the 1998 Nagano Olympics, the first official curling event in the Olympic programme since the 1924 Winter Olympics. It is also held to help promote curling throughout Japan. The event became a World Curling Tour event in 2014. A total of 24 teams (12 men's and 12 women's teams) are invited each year to participate in the championship. The teams play"} +{"qid": "test1250", "pid": "4732252", "query": "when did men's curling start in the olympics", "answer": "1998", "passage": "\"World Junior Curling Championships\"\nWorld Junior Curling Championships The World Junior Curling Championships are an annual curling bonspiel featuring the world's best curlers who are 21 years old or younger. The competitions for both men and women occur at the same venue. The men's tournament has occurred since 1975 and the women's since 1988. Since curling became an Olympic sport in 1998, the World Junior Curling Championship of the year preceding the Olympic Games have been held at the site of the curling tournament for the upcoming Games. Teams qualify to participate in the World Junior Curling Championships through final rankings at the previous"} +{"qid": "test1251", "pid": "2813040", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "\"Corpus luteum\"\nfollicle-stimulating hormone (FSH). A new corpus luteum develops with each menstrual cycle. The \"\"corpus luteum\"\" develops from an ovarian follicle during the luteal phase of the menstrual cycle or oestrous cycle, following the release of a secondary oocyte from the follicle during ovulation. The follicle first forms a corpus hemorrhagicum before it becomes a corpus luteum, but the term refers to the visible collection of blood, left after rupture of the follicle, that secretes progesterone. While the oocyte (later the zygote if fertilization occurs) traverses the Fallopian tube into the uterus, the corpus luteum remains in the ovary. The corpus"} +{"qid": "test1251", "pid": "6511823", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "Luteolysis\nthe gonadotropin luteinizing hormone (LH). During a pregnancy, the corpus luteum remains on the ovary releasing progesterone which will maintain a state of uterine quiescence and close the cervix until the delivery of the fetus. Alternatively if no implantation of a blastocyst occurs, the corpus luteum is degraded to a corpus albicans (scar tissue) by PGF2alpha released by uterine endometrial cells. Degradation of the corpus luteum will result in reduced levels of progesterone, promoting an increase in follicle-stimulating hormone (FSH) secretion by the adenohypophysis, which will trigger the development of a new follicle on the ovary. If pregnancy occurs, the"} +{"qid": "test1251", "pid": "2813039", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Corpus luteum\"\nCorpus luteum The corpus luteum (Latin for \"\"yellow body\"\"; plural corpora lutea) is a temporary endocrine structure in female ovaries and is involved in the production of relatively high levels of progesterone, moderate levels of estradiol, inhibin A and small amounts of estrogen. It is the remains of the ovarian follicle that has released a mature ovum during a previous ovulation. The corpus luteum is colored as a result of concentrating carotenoids (including lutein) from the diet and secretes a moderate amount of estrogen to inhibit further release of gonadotropin-releasing hormone (GnRH) and thus secretion of luteinizing hormone (LH) and"} +{"qid": "test1251", "pid": "304056", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "Ovary\nmature simultaneously. Follicles are composed of different types and number of cells according to the stage of their maturation, and their size is indicative of the stage of oocyte development. When the oocyte finishes its maturation in the ovary, a surge of luteinizing hormone secreted by the pituitary gland stimulates the release of the oocyte through the rupture of the follicle, a process called ovulation. The follicle remains functional and reorganizes into a corpus luteum, which secretes progesterone in order to prepare the uterus for an eventual implantation of the embryo. At maturity, ovaries secrete estrogen, testosterone, inhibin, and progesterone."} +{"qid": "test1251", "pid": "13213979", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Corpus luteum cyst\"\nfrom a follicle. The follicle then becomes a secretory gland that is known as the corpus luteum. The ruptured follicle begins producing large quantities of estrogen and progesterone in preparation for conception. If a pregnancy doesn't occur, the corpus luteum usually breaks down and disappears. It may, however, fill with fluid or blood, causing the corpus luteum to expand into a cyst, and stay in the ovary. Usually, this cyst is on only one side, and does not produce any symptoms. In women of reproductive age cysts with a diameter of less than 5 cm are common, clinically inconsequential, and"} +{"qid": "test1251", "pid": "6511824", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "Luteolysis\nplacental hormone chorionic gonadotropin continues to maintain the corpus luteum, but in some species it will eventually degrade sometime during pregnancy. If pregnancy occurs in equine, the placental hormone equine chorionic gonadotropin released by endometrial cup continue to maintain the progesterone by acting as LH and FSH for follicles in ovary which will in return lead to increase in amount of corpus luteum. Luteolysis Luteolysis (also known as luteal regression) is the structural and functional degradation of the corpus luteum (CL), which occurs at the end of the luteal phase of both the estrous and menstrual cycles in the absence"} +{"qid": "test1251", "pid": "6511822", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "Luteolysis\nthe lifespan of the corpus luteum will increase drastically. Luteolysis in primates (including humans), however, is not caused by prostaglandin, and removal of the uterus will not prolong the life of the corpus luteum. However, primates do respond to PGF2a, and asthmatics should take great care when handling this hormone as PGF2a is bronchoconstrictor. Estrogen, secreted by Granulosa Cells and primarily progesterone, secreted by the corpus luteum, inhibit the release of luteinizing hormone (LH) and Follicle Stimulating Hormone (FSH) by the adenohypophysis (anterior lobe of the pituitary gland) via classical negative feedback mechanisms. This removes the luteotrophic support provided by"} +{"qid": "test1251", "pid": "6511871", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Luteal phase\"\nmay cause one or two days of fertile cervical mucus, lower basal body temperatures, or both. This is known as a \"\"secondary oestrogen surge\"\". The hormones produced by the corpus luteum also suppress production of the FSH and LH that the corpus luteum needs to maintain itself. With continued low levels of FSH and LH, the corpus luteum will atrophy. The death of the corpus luteum results in falling levels of progesterone and oestrogen. These falling levels of ovarian hormones cause increased levels of FSH, which begins recruiting follicles for the next cycle. Continued drops in levels of oestrogen and"} +{"qid": "test1251", "pid": "1843950", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Luteinizing hormone\"\nthat innervate GnRH-1 neurons also can stimulate GnRH-1 release. These GABA neurons also possess ERs and may be responsible for the GnRH-1 surge. Part of the inhibitory action of endorphins on GnRH-1 release is through inhibition of these GABA neurons. Rupture of the ovarian follicle at ovulation causes a drastic reduction in estrogen synthesis and a marked increase in secretion of progesterone by the corpus luteum in the ovary, reinstating a predominantly negative feedback on hypothalamic secretion of GnRH-1. LH acts upon the Leydig cells of the testis and is regulated by gonadotropin-releasing hormone (GnRH). The Leydig cells produce testosterone"} +{"qid": "test1251", "pid": "893757", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Menstrual cycle\"\nand LH cause the remaining parts of the dominant follicle to transform into the corpus luteum, which produces progesterone. The increased progesterone in the adrenals starts to induce the production of estrogen. The hormones produced by the corpus luteum also suppress production of the FSH and LH that the corpus luteum needs to maintain itself. Consequently, the level of FSH and LH fall quickly over time, and the corpus luteum subsequently atrophies. Falling levels of progesterone trigger menstruation and the beginning of the next cycle. From the time of ovulation until progesterone withdrawal has caused menstruation to begin, the process"} +{"qid": "test1251", "pid": "20914147", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estradiol", "passage": "\"Human reproductive ecology\"\nfrom hypothalamic, pituitary, and ovarian axis. Gonadotropin-releasing hormone (GnRH) secretes from the hypothalamus. Hypothalamic GnRH pulse influences the pulsatile secretion of Follicle stimulating hormone (FSH) and Luteinizing hormone (LH) from the pituitary gland . During the menstrual cycle, due to a decreased level of inhibin-A and steroid hormones, the level of FSH increases . Due to these hormonal changes, the corpus luteum gets destroyed. The elevated level of FSH helps to recruit a cohort of the FSH-sensitive antral follicles in that cycle . During this phase, elevated FSH level stimulates the production of estradiol, Inhibin A and B. Following that,"} +{"qid": "test1251", "pid": "893721", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "\"Menstrual cycle\"\nand the lining of the uterus thickens. Follicles in the ovary begin developing under the influence of a complex interplay of hormones, and after several days one or occasionally two become dominant (non-dominant follicles shrink and die). Approximately mid-cycle, 24–36 hours after the luteinizing hormone (LH) surges, the dominant follicle releases an ovocyte, in an event called ovulation. After ovulation, the ovocyte only lives for 24 hours or less without fertilization while the remains of the dominant follicle in the ovary become a corpus luteum; this body has a primary function of producing large amounts of progesterone. Under the influence"} +{"qid": "test1251", "pid": "1843948", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "\"Luteinizing hormone\"\nthe mechanism(s) are not yet clear. The increase in LH production only lasts for 24 to 48 hours. This \"\"LH surge\"\" triggers ovulation, thereby not only releasing the egg from the follicle, but also initiating the conversion of the residual follicle into a corpus luteum that, in turn, produces progesterone to prepare the endometrium for a possible implantation. LH is necessary to maintain luteal function for the second two weeks of the menstrual cycle. If pregnancy occurs, LH levels will decrease, and luteal function will instead be maintained by the action of hCG (human chorionic gonadotropin), a hormone very similar"} +{"qid": "test1251", "pid": "1843946", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Luteinizing hormone\"\nsubunit gene activity is restricted to the pituitary gonadotropic cells. It is regulated by the gonadotropin-releasing hormone from the hypothalamus. Inhibin, activin, and sex hormones do not affect genetic activity for the beta subunit production of LH. In females: ovulation, maintaining of corpus luteum and secretion of progesterone. In males: testosterone secretion. LH supports theca cells in the ovaries that provide androgens and hormonal precursors for estradiol production. At the time of menstruation, FSH initiates follicular growth, specifically affecting granulosa cells. With the rise in estrogens, LH receptors are also expressed on the maturing follicle, which causes it to produce"} +{"qid": "test1251", "pid": "6511870", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Luteal phase\"\nweeks, is called the follicular phase. After ovulation, the anterior pituitary hormones FSH and LH cause the remaining parts of the dominant follicle to transform into the corpus luteum. It continues to grow for some time after ovulation and produces significant amounts of hormones, particularly progesterone, and, to a lesser extent, oestrogen. Progesterone plays a vital role in making the endometrium receptive to implantation of the blastocyst and supportive of the early pregnancy; it also has the side effect of raising the woman's basal body temperature. Several days after ovulation, the increasing amount of estrogen produced by the corpus luteum"} +{"qid": "test1251", "pid": "11426846", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "\"Human sexuality\"\ncauses a Graafian follicle to surface the ovary. The follicle ruptures and the ripe ovum is expelled into the abdominal cavity. The fallopian tubes pick up the ovum with the fimbria. The cervical mucus changes to aid the movement of sperm. On days 15 to 28—the post-ovulatory stage, the Graafian follicle—now called the corpus luteum—secretes estrogen. Production of progesterone increases, inhibiting LH release. The endometrium thickens to prepare for implantation, and the ovum travels down the Fallopian tubes to the uterus. If the ovum is not fertilized and does not implant, menstruation begins. The sexual response cycle is a model"} +{"qid": "test1251", "pid": "13213982", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "\"Corpus luteum cyst\"\nprogesterone-only pill can cause increased frequency of these cysts. Corpus Luteum Cyst Women Health Information. Corpus luteum cyst A Corpus luteum cyst is a type of ovarian cyst which may rupture about the time of menstruation, and take up to three months to disappear entirely. A corpus luteum cyst rarely occurs at age 50+, because eggs are no longer being released in menopausal women. Corpus luteum cysts may contain blood and other fluids. The physical shape of a corpus luteum cyst may appear as an enlargement of the ovary itself, rather than a distinct mass -like growth on the surface"} +{"qid": "test1251", "pid": "2813046", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "\"Corpus luteum\"\nIn an estrous cycle, the lining degenerates back to normal size. If the egg is fertilized and implantation occurs, the syncytiotrophoblast (derived from trophoblast) cells of the blastocyst secrete the hormone human chorionic gonadotropin (hCG, or a similar hormone in other species) by day 9 post-fertilization. Human chorionic gonadotropin signals the corpus luteum to continue progesterone secretion, thereby maintaining the thick lining (endometrium) of the uterus and providing an area rich in blood vessels in which the zygote(s) can develop. From this point on, the corpus luteum is called the \"\"corpus luteum graviditatis\"\". The introduction of prostaglandins at this point"} +{"qid": "test1251", "pid": "1406163", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "estrogen", "passage": "Ovulation\nits lifespan. Without the oocyte, the follicle folds inward on itself, transforming into the corpus luteum (pl. corpora lutea), a steroidogenic cluster of cells that produces estrogen and progesterone. These hormones induce the endometrial glands to begin production of the proliferative endometrium and later into secretory endometrium, the site of embryonic growth if implantation occurs. The action of progesterone increases basal body temperature by one-quarter to one-half degree Celsius (one-half to one degree Fahrenheit). The corpus luteum continues this paracrine action for the remainder of the menstrual cycle, maintaining the endometrium, before disintegrating into scar tissue during menses. The start"} +{"qid": "test1251", "pid": "5047147", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "Pseudopregnancy\nPseudopregnancy Pseudopregnancy is the term used to describe a false pregnancy in the wider mammalian species. It is a physical state whereby all the signs and symptoms of pregnancy are exhibited, with the exception of the presence of a foetus. The corpus luteum (the remains of an ovulated ovarian follicle) is responsible for the development of maternal behavior and lactation, which are mediated by the continued production of progesterone by the corpus luteum through some or all of pregnancy. In most species, the corpus luteum is degraded in the absence of a pregnancy. However, in some species, the corpus luteum"} +{"qid": "test1251", "pid": "2813045", "query": "which hormone is released from the ruptured follicle or corpus luteum", "answer": "progesterone", "passage": "\"Corpus luteum\"\nis essential for establishing and maintaining pregnancy in females. The corpus luteum secretes progesterone, which is a steroid hormone responsible for the decidualization of the endometrium (its development) and maintenance, respectively. It also produces relaxin, a hormone responsible for softening of the pubic symphysis which helps in parturition. If the egg is not fertilized, the corpus luteum stops secreting progesterone and decays (after approximately 10 days in humans). It then degenerates into a corpus albicans, which is a mass of fibrous scar tissue. The uterine lining (endometrium) is expelled through the vagina (in mammals that go through a menstrual cycle)."} +{"qid": "test1253", "pid": "165662", "query": "what was hawaii's primary export to the united states", "answer": "macadamia nuts", "passage": "Hawaii\nhas been the largest industry, contributing 24.3% of the gross state product (GSP) in 1997, despite efforts to diversify. The state's gross output for 2003 was billion; per capita income for Hawaii residents in 2014 was . Hawaiian exports include food and clothing. These industries play a small role in the Hawaiian economy, due to the shipping distance to viable markets, such as the West Coast of the contiguous U.S. The state's food exports include coffee, macadamia nuts, pineapple, livestock, sugarcane and honey. By weight, honey bees may be the state's most valuable export. According to the Hawaii Agricultural Statistics"} +{"qid": "test1256", "pid": "13924335", "query": "where does the last name hidalgo come from", "answer": "Spanish", "passage": "\"Germán Martínez Hidalgo\"\nhide from the Inquisition, He's also cousin of Mexican actress Silvia Pinal Hidalgo the Hidalgo family shortened the last name from Hidalgo y Costilla, Mr. Martinez Hidalgo is descendant of Manuel Mariano Hidalgo y Costilla, younger brother of Miguel Hidalgo y Costilla, Manuel Mariano Hidalgo was a lawyer defending Sephardic jews against the Spanish Inquisition, later the Inquisition found and determined the Hidalgo y Costilla family was in fact a Jewish family from Spain, the Hidalgos were accused as \"\"judaizantes\"\" (Jews respecting the law of Moses but hiding under Spanish names and identities.) Mr. Hidalgo was the director of the"} +{"qid": "test1256", "pid": "11408858", "query": "where does the last name hidalgo come from", "answer": "Spanish", "passage": "\"Battle of Calderón Bridge\"\nwas later given the title of \"\"conde de Calderón\"\" for the Spanish victory. The battle owes its name to the adjoining bridge, and the combatants' objective. The Battle of Calderón Bridge was the last militant episode of the first stage of the War of Independence. Following Hidalgo's failed attempt to take Mexico City in October 1810, insurgent troops retreated toward Guanajuato, pursued by Royalist forces led by General Félix María Calleja. Unable to defend positions at Aculco, where Calleja's army intercepted the insurgents, Hidalgo decided to continue his army's retreat towards Guadalajara. The insurgent army, numbering approximately 100,000, took up"} +{"qid": "test1256", "pid": "15018923", "query": "where does the last name hidalgo come from", "answer": "Spanish", "passage": "\"Sanctuary of Atotonilco\"\nwas considered sacred before the arrival of the Spanish because of the hot mineral springs. The name Atotonilco is common in Mexico, especially in the central highlands, with the best known in Jalisco. The name comes from a Nahuatl phrase “in hot water” which refers to thermal springs. Chichimecas came to this particular place to perform penance rites, puncturing themselves with maguey thorns and washing away guilt in the thermal springs. According to tradition, Father Neri arrived here from preaching at missions in Dolores Hidalgo. While resting under a mesquite tree where the sanctuary is now located, he dreamt of"} +{"qid": "test1256", "pid": "6729170", "query": "where does the last name hidalgo come from", "answer": "Spanish", "passage": "Soconusco\nCiudad Hidalgo, Tapachula, Tuxtla Chico, Unión Juárez and Tuzantán. The region’s capital and Mexico’s main border city for this area is Tapachula. Tapachula was founded by the Spanish as an Indian town in 1590, with the name coming from the local language meaning “place of the conquered.” Most of the city’s monumental structures are in Art Deco style from the early 20th century, when the coffee plantations brought wealth to the area. The main monumental building is the old municipal palace, which is next to the San Agustín parish, both of which face Hidalgo Plaza. Other important sites in the"} +{"qid": "test1256", "pid": "4532064", "query": "where does the last name hidalgo come from", "answer": "Spanish", "passage": "\"Metro Popotla\"\nMetro Popotla Metro Popotla is a station on Line 2 of the Mexico City Metro system. It is located in the Colonia Popotla district of the Miguel Hidalgo borough of Mexico City, northwest of the city centre, near the Calzada México-Tacuba. The name of the station comes from a town that once existed in the zone. The logo depicts an ahuehuete tree, referring to the \"\"Árbol de la Noche Triste\"\" – the \"\"tree of the night of sorrow\"\" – where Spanish conquistador Hernán Cortés stopped his retreat from Tenochtitlán and cried after being defeated by Cuitláhuac in the Battle of"} +{"qid": "test1257", "pid": "7303522", "query": "jonny cash one piece at a time car", "answer": "Cadillac", "passage": "\"One Piece at a Time\"\nOne Piece at a Time \"\"One Piece at a Time\"\" is a country novelty song written by Wayne Kemp and recorded by Johnny Cash and the Tennessee Three in 1976. It was the last song performed by Cash to reach number one on the Billboard Hot Country Singles chart and the last of Cash's songs to reach the Billboard Hot 100, on which it peaked at number 29. The singer leaves his home in Kentucky in 1949 to pursue work at General Motors in Detroit, Michigan. He installs wheels on Cadillacs, watching each one roll by day after day on"} +{"qid": "test1258", "pid": "12696439", "query": "when was the canadian pacific railway started and finished", "answer": "between 1881 and 1885", "passage": "\"Canadian Pacific Railway in British Columbia\"\nCanadian Pacific Railway in British Columbia The Canadian Pacific Railway is a Canadian Class I railway that stretches from Montreal, Quebec, to Vancouver, British Columbia. The British Columbia (BC) portion of the railway was constructed between 1881 and 1885, fulfilling a promise extended to BC when it entered Confederation in 1871. For decades, it was the only practical means of long–distance passenger transport in Canada. The Confederation League (which included such figures as Amor De Cosmos, John Robson, and Robert Beaven) led the chorus pressing for the colony to join Canada, which had been created out of three British North"} +{"qid": "test1259", "pid": "20624637", "query": "who built pedestrian bridge at florida international university", "answer": "Munilla Construction Management", "passage": "\"Florida International University pedestrian bridge collapse\"\nproposed penalties. OSHA cited Figg Bridge Engineers Inc., a civil and structural engineering company; Network Engineering Services Inc. (doing business as Bolton Perez & Assoc.), a construction engineering and inspection firm; Structural Technologies LLC (doing business as Structural Technologies/VSL), specializing in post-tensioning in bridges and buildings; Munilla Construction Management LLC, a bridge and building construction company; and The Structural Group of South Florida Inc., a contractor specializing in concrete formwork. Florida International University pedestrian bridge collapse On March 15, 2018, a , recently-erected section of the FIU Sweetwater UniversityCity pedestrian bridge collapsed onto the Tamiami Trail (U.S. Route 41). Eight"} +{"qid": "test1259", "pid": "20624611", "query": "who built pedestrian bridge at florida international university", "answer": "Munilla Construction Management", "passage": "\"Florida International University pedestrian bridge collapse\"\nproject was funded with a $19.4 million Transportation Investment Generating Economic Recovery (TIGER) grant from the United States Department of Transportation in 2013, along with state agencies. The bridge itself cost $9 million to construct. The main companies behind the construction project are Munilla Construction Management (MCM), a Miami-based construction management firm, and FIGG Bridge Engineers, a Tallahassee-based firm. Unlike most bridges in Florida, the design for this project was overseen by the university itself, not the Florida Department of Transportation. Florida International University is known for its expertise in accelerated bridge construction, and has attracted international scholars as PhD"} +{"qid": "test1260", "pid": "8152783", "query": "band who had a hit with heart and soul crossword", "answer": "British pop band T'Pau", "passage": "\"Heart and Soul (T'Pau song)\"\nthat same month and this time, it became a hit, equaling the US peak of No. 4 in September. Heart and Soul (T'Pau song) \"\"Heart and Soul\"\" is a song by British pop band T'Pau. Featuring vocalist Carol Decker, the song was released as the group's first single in 1987 from their debut album \"\"Bridge of Spies\"\". Following its inclusion in a Pepe Jeans advert, the single reached No. 4 in both the US and UK charts. The song is notable for its usage of various vocal overdubs. This makes the song, in its initial studio form, impossible to perform"} +{"qid": "test1260", "pid": "1546175", "query": "band who had a hit with heart and soul crossword", "answer": "T'Pau", "passage": "\"T'Pau (band)\"\nT'Pau (band) T'Pau is a British pop group led by singer Carol Decker. They had a string of Top 40 hits in the UK in the late 1980s, most notably \"\"China in Your Hand\"\", \"\"Heart and Soul\"\" and \"\"Valentine\"\", and several hits in Europe, before disbanding in the early 1990s. Decker still performs under the name T'Pau at solo shows and 1980s nostalgia concerts, and in 2013 she reunited with original bandmember and co-songwriter Ronnie Rogers for a 25th anniversary UK tour. The band formed in 1986 in Shropshire, taking their name from a Vulcan elder of the same name"} +{"qid": "test1260", "pid": "1546182", "query": "band who had a hit with heart and soul crossword", "answer": "T'Pau", "passage": "\"T'Pau (band)\"\nit out to the wider audience anymore.\"\" Despite this however the album did manage to edge into the charts at No.98, their first chart action for more than two decades. Track listing Track listing T'Pau (band) T'Pau is a British pop group led by singer Carol Decker. They had a string of Top 40 hits in the UK in the late 1980s, most notably \"\"China in Your Hand\"\", \"\"Heart and Soul\"\" and \"\"Valentine\"\", and several hits in Europe, before disbanding in the early 1990s. Decker still performs under the name T'Pau at solo shows and 1980s nostalgia concerts, and in"} +{"qid": "test1260", "pid": "1546178", "query": "band who had a hit with heart and soul crossword", "answer": "T'Pau", "passage": "\"T'Pau (band)\"\nalbum the year before. It produced the UK Top 20 single \"\"Secret Garden\"\", though chart returns were diminishing by this point, and two following singles earned very modest success. Third album \"\"The Promise\"\" followed in 1991: it peaked at No. 10 in the UK, earning a silver disc. It included one Top 20 hit, \"\"Whenever You Need Me\"\", but the band's commercial peak had now passed and they split up following its release. A compilation album, \"\"Heart and Soul – The Very Best of T'Pau\"\", was released in 1993 and reached the UK Top 40. Another greatest hits release appeared"} +{"qid": "test1260", "pid": "8069918", "query": "band who had a hit with heart and soul crossword", "answer": "T'Pau", "passage": "\"Red (T'Pau album)\"\nRugby League Centenary '95. It peaked at #130 in the UK. She performed the song at Wembley Stadium during the opening and closing ceremonies. By 1997 though, Decker had taken the decision to build a 'new' T'Pau around her, and get back on the road after assembling a massive amount of new material. Although she considered continuing as a solo artist, it was advised that it would be easier if the band name was rekindled. The newly reformed band featured none of the original members aside from Decker. A brand new version of the band's original hit \"\"Heart and Soul\"\""} +{"qid": "test1261", "pid": "9960426", "query": "the german princes who chose the holy roman empire were called", "answer": "prince-electors", "passage": "\"Imperial election (Holy Roman Empire)\"\nof a territory of imperial immediacy (which usually comprised a part of their diocesan territory). Thus the prince-bishoprics were elective monarchies too. The same holds true for prince-abbeys, whose prince-abbesses or prince-abbots were elected by a college of clerics and imperially appointed as princely rulers in a pertaining territory. Initially seven electors chose the \"\"King of the Romans\"\" as the Emperor's designated heir was known. The elected king then went on to be crowned by the Pope. The prince-electors were: Later additions to the electoral council were: Imperial election (Holy Roman Empire) The election of a Holy Roman Emperor was"} +{"qid": "test1261", "pid": "9960425", "query": "the german princes who chose the holy roman empire were called", "answer": "prince-electors", "passage": "\"Imperial election (Holy Roman Empire)\"\nthe Roman Empire during the Migration Period, the Early Middle Ages, the Holy Roman Empire and the Kingdom of Poland from 1573 to 1795 (see History of Poland, period of the Aristocratic Republic). From the 13th century, the right to elect kings in the Holy Roman Empire was granted to a limited number of imperial princes, the so called prince-electors. There are various theories over the emergence of their exclusive election right. The secular electoral seats were hereditary. However, spiritual electors (and other prince-(arch)bishops) were usually elected by the cathedral chapters as religious leaders, but simultaneously ruled as monarch (prince)"} +{"qid": "test1261", "pid": "181548", "query": "the german princes who chose the holy roman empire were called", "answer": "the Prince-Electors", "passage": "Prince-elector\nof arms of the states granted the electoral dignity: Three ecclesiastic/spiritual electors (archbishops): Four secular electors: Electors added in 17th century: During the collapse of the Holy Roman Empire, between 1803 and 1806: Prince-elector The Prince-electors ( pl. \"\"Kurfürsten\"\", , ) of the Holy Roman Empire, or Electors for short, were the members of the electoral college that elected the Holy Roman Emperor. From the 13th century onwards, the Prince-Electors had the privilege of electing the King of the Romans, who would be crowned by the Pope as Holy Roman Emperor. Charles V was the last to be a crowned"} +{"qid": "test1261", "pid": "15271752", "query": "the german princes who chose the holy roman empire were called", "answer": "the Prince-Electors", "passage": "\"Imperial Diet (Holy Roman Empire)\"\ncemented the concept of \"\"territorial rule\"\" (\"\"Landesherrschaft\"\"), the largely independent rule of the dukes over their respective territories, and also limited the number of electors to seven. The Pope, contrary to modern myth, was never involved in the electoral process but only in the process of ratification and coronation of whomever the Prince-Electors chose. However, until the late 15th century, the Diet was not actually formalized as an institution. Instead, the dukes and other princes would irregularly convene at the court of the Emperor; these assemblies were usually referred to as \"\"Hoftage\"\" (from German \"\"Hof\"\" \"\"court\"\"). Only beginning in 1489"} +{"qid": "test1261", "pid": "181513", "query": "the german princes who chose the holy roman empire were called", "answer": "the Prince-Electors", "passage": "Prince-elector\nPrince-elector The Prince-electors ( pl. \"\"Kurfürsten\"\", , ) of the Holy Roman Empire, or Electors for short, were the members of the electoral college that elected the Holy Roman Emperor. From the 13th century onwards, the Prince-Electors had the privilege of electing the King of the Romans, who would be crowned by the Pope as Holy Roman Emperor. Charles V was the last to be a crowned Emperor (elected 1519, crowned 1530); his successors were elected Emperors directly by the electoral college, each being titled \"\"Elected Emperor of the Romans\"\" (; ). In practice, every emperor from 1440 onwards (except"} +{"qid": "test1261", "pid": "9960423", "query": "the german princes who chose the holy roman empire were called", "answer": "prince-electors", "passage": "\"Imperial election (Holy Roman Empire)\"\nImperial election (Holy Roman Empire) The election of a Holy Roman Emperor was generally a two-stage process whereby, from at least the 13th century, the King of the Romans was elected by a small body of the greatest princes of the Empire, the prince-electors. This was then followed shortly thereafter by his coronation as Emperor, an appointment that was normally for life. Until 1530, emperors were crowned by the Pope. In 1356, the Emperor Charles IV promulgated the Golden Bull, which became the fundamental law by which all future kings and emperors were elected. Although the Holy Roman Empire is"} +{"qid": "test1262", "pid": "6782845", "query": "where does the name de la rosa come from", "answer": "Spanish", "passage": "\"Jaime de la Rosa\"\nJaime de la Rosa Tomás de la Rosa (September 18, 1921 - December 2, 1992), also known as his nickname Jaime de la Rosa was a Filipino pre-war and postwar actor better known as Jimmy in Philippine showbiz. Tomás de la Rosa was the first screen name he used, later changing it to Jaime. Born in Lubao, Pampanga on September 18, 1921. He is the younger brother of Rogelio dela Rosa and became one of LVN Pictures's bankable star. He was married to Beatriz S. Dela Rosa (December 5, 1922 – September 18, 2000). He has Spanish and Chinese ancestry."} +{"qid": "test1262", "pid": "9679069", "query": "where does the name de la rosa come from", "answer": "Spanish", "passage": "\"Las Lajas Sanctuary\"\nLas Lajas Sanctuary Las Lajas Sanctuary (Spanish: \"\"Santuario de Las Lajas\"\") is a basilica church located in the southern Colombian Department of Nariño, in the municipality of Ipiales, and built inside the canyon of the Guáitara River. The present church was built in Gothic Revival style between 1916 and 1949. The name \"\"Laja\"\" (slab) comes from the name of a type of flat sedimentary rock similar to shale and slate. The inspiration for the church's creation was a purported miraculous event in 1754, when Amerindian Maria Meneses de Quiñones and her deaf-mute daughter Rosa were caught in a very strong"} +{"qid": "test1262", "pid": "11802929", "query": "where does the name de la rosa come from", "answer": "Spanish", "passage": "\"Fabián de la Rosa\"\ninto his training de la Rosa's father died, forcing the young painter to drop out of the school in order to help feed his family. It was during this time that he painted his first known masterpiece, \"\"La Perla de Lucban.\"\" In 1893, he entered the \"\"Escuela Superior de Pintura Escultura y Grabado\"\" at the age of 24 where he received training from Lorenzo Guerrero and Miguel Zaragoza. In 1898, de la Rosa won a contest for a scholarship to Spanish Art Academy of San Fernando in Madrid. However, the outbreak of the Philippine Revolution meant his dream would not"} +{"qid": "test1263", "pid": "2496732", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "\"Huey Lewis\"\nof Rock & Roll,\"\" and \"\"If This Is It\"\" all reached No. 6. Lewis knew Nick Lowe and Dave Edmunds from having played harmonica on their 1979 albums (\"\"Labour of Lust\"\" and \"\"Repeat When Necessary\"\") and produced Lowe's 1985 version of \"\"I Knew the Bride (When She Used to Rock and Roll)\"\". He later produced several songs (including one where he sang backup and played harmonica) on Bruce Hornsby & The Range's debut album, \"\"The Way It Is.\"\" Hornsby thanked him by writing the song \"\"Jacob's Ladder\"\", a No. 1 single from the News' next album. His song \"\"The Power"} +{"qid": "test1263", "pid": "15287526", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "\"I Knew the Bride\"\nof the song have been released on various albums, including: I Knew the Bride \"\"I Knew the Bride (When She Used to Rock 'n' Roll)\"\" is a song written by Nick Lowe and first popularized by Dave Edmunds. It was released on Edmunds's 1977 album \"\"Get It\"\" and a year later in a live version by Nick Lowe's Last Chicken in the Shop on \"\"Live Stiffs Live\"\". Lowe performed the song during a Stiff Records European tour with Elvis Costello, Ian Dury, Wreckless Eric, and Larry Wallis; the tour was filmed for the 1981 documentary \"\"If It Ain't Stiff, It"} +{"qid": "test1263", "pid": "15287522", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "\"I Knew the Bride\"\nI Knew the Bride \"\"I Knew the Bride (When She Used to Rock 'n' Roll)\"\" is a song written by Nick Lowe and first popularized by Dave Edmunds. It was released on Edmunds's 1977 album \"\"Get It\"\" and a year later in a live version by Nick Lowe's Last Chicken in the Shop on \"\"Live Stiffs Live\"\". Lowe performed the song during a Stiff Records European tour with Elvis Costello, Ian Dury, Wreckless Eric, and Larry Wallis; the tour was filmed for the 1981 documentary \"\"If It Ain't Stiff, It Ain't Worth a Fuck\"\". In 1985, Nick Lowe recorded a"} +{"qid": "test1263", "pid": "1477662", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "Rockabilly\nClearwater Revival, John Roman Jackson, Don McLean, Linda Ronstadt and the Everly Brothers, the film \"\"American Graffiti\"\" and the television show \"\"Happy Days\"\" created curiosity about the real music of the 1950s, particularly in England, where a rockabilly revival scene began to develop from the 1970s in record collecting and clubs. The most successful early product of the scene was Dave Edmunds, who joined up with songwriter Nick Lowe to form a band called Rockpile in 1975. They had a string of minor rockabilly-style hits like \"\"I Knew the Bride (When She Used to Rock 'n' Roll)\"\". The group became"} +{"qid": "test1263", "pid": "10057271", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "\"You Never Can Tell (song)\"\nFrench New Wave dance sequence feel\"\". Nick Lowe has indicated this song was a source of inspiration for his song \"\"I Knew the Bride (When She Used to Rock 'n' Roll)\"\", which has been recorded by Dave Edmunds, Status Quo, and Lowe himself. Emmylou Harris' recording of \"\"You Never Can Tell\"\" - entitled \"\"(You Never Can Tell) C'est La Vie\"\" - was the lead single from her 1977 Warner Bros. Records album \"\"Luxury Liner\"\". Harris had sung Chuck Berry songs as a member of a DC-based folk trio early in her career. Her decision to record \"\"...C'est La Vie\"\" was"} +{"qid": "test1263", "pid": "15287523", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "\"I Knew the Bride\"\nslower studio version for the album \"\"The Rose of England\"\", produced by Huey Lewis (on harmonica) and featuring Lewis' band \"\"The News\"\". It reached #27 on the US rock chart and #77 on the US pop chart. Edmunds released several live versions over the years, from 1987’s \"\"I Hear You Rockin’\"\", to 1999’s \"\"KIng Biscuit Flour Hour Presents\"\", to 2005’s \"\"Live and Pickin’\"\", and 2011’s \"\"A Pile of Rock Live\"\". He also released a remixed studio version on 1999’s \"\"Hand Picked Musical Fantasies\"\", which also appeared on the 2004 release \"\"From Small Things: The Best of Dave Edmunds\"\". The original"} +{"qid": "test1263", "pid": "8323923", "query": "who sang i knew the bride when she used to rock and roll", "answer": "Dave Edmunds", "passage": "\"Get It (Dave Edmunds album)\"\nGet It (Dave Edmunds album) Get It is the third album by Welsh rock musician Dave Edmunds, released in 1977. Some of the songs were performed by an early \"\"trio\"\" version of Rockpile (Edmunds, Nick Lowe and Terry Williams); others (such as \"\"I Knew the Bride\"\" and \"\"Little Darlin'\"\") were recorded by Edmunds solo. Also recorded in these sessions was the non-album Edmunds-Lowe tune \"\"As Lovers Do\"\", which was used as the B-side of both \"\"Here Comes the Weekend\"\" and the later \"\"Crawling from the Wreckage\"\". \"\"New York's a Lonely Town\"\", the B-side of \"\"Where or When\"\" was also recorded"} +{"qid": "test1264", "pid": "7087410", "query": "when did the first ninja turtles come out", "answer": "1984", "passage": "\"Teenage Mutant Ninja Turtles (Mirage Studios)\"\nof \"\"Daredevil\"\". After conceiving the Turtles' mentor as a rat who had come from Japan and was a ninja master, Eastman and Laird thought of giving the turtles Japanese names, but as Laird explained, \"\"we couldn't think of authentic-sounding Japanese names\"\". Instead they went with Renaissance artists, and picked the four they were most familiar with, with the help of Laird's copy of \"\"Janson's History of Art\"\". The first issue of \"\"Teenage Mutant Ninja Turtles\"\" was advertised in issues #1 and #2 of Eastman and Laird's 1984 comic, \"\"Gobbledygook\"\", in addition to the Comics Buyer's Guide, issue 545. The full"} +{"qid": "test1265", "pid": "16810696", "query": "what song did the titanic band play when it sank", "answer": "\"Autumn\"", "passage": "\"The Sinking of the Titanic\"\ncontinue to perform as the ship sank. In April 1912, Bride had told the \"\"New York Times\"\": \"\"[T]he band was still playing. I guess all of the band went down. They were playing \"\"Autumn\"\" then. I swam with all my might. I suppose I was 150 feet away when the Titanic on her nose, with her after-quartet sticking straight up in the air, began to settle - slowly...the way the band kept playing was a noble thing...and the last I saw of the band, when I was floating out in the sea with my lifebelt on, it was still on"} +{"qid": "test1265", "pid": "15884783", "query": "what song did the titanic band play when it sank", "answer": "\"Autumn\"", "passage": "\"Legends and myths regarding RMS Titanic\"\nthe hymn \"\"Nearer, My God, to Thee\"\". Hartley reportedly once said to a friend if he were on a sinking ship, \"\"Nearer, My God, to Thee\"\" would be one of the songs he would play. But Walter Lord's book \"\"A Night to Remember\"\" popularised wireless operator Harold Bride's 1912 account (\"\"New York Times\"\") that he heard the song \"\"Autumn\"\" before the ship sank. It is considered Bride either meant the hymn tune known as \"\"Autumn\"\" or the tune of the then-popular waltz \"\"Songe d'Automne\"\" but neither was in the White Star Line songbook for the band. Bride is one of"} +{"qid": "test1267", "pid": "8230523", "query": "most home runs by 2 teammates in a season", "answer": "115", "passage": "\"50 home run club\"\n(MVP) Award in the same year as their 50 home run season. Mantle is the only player to have earned the Major League Triple Crown alongside achieving 50 home runs, leading both leagues in batting average, home runs and runs batted in (RBI). Mantle and Maris—collectively known as the M&M Boys—are the only teammates to reach the 50 home run club in the same season, hitting a combined 115 home runs in 1961 and breaking the single-season record for home runs by a pair of teammates. Albert Belle is the only player to amass 50 or more doubles in addition"} +{"qid": "test1267", "pid": "8382534", "query": "most home runs by 2 teammates in a season", "answer": "115", "passage": "\"M&M Boys\"\nhe never knew the record was his. During their record-breaking season of 1961, the M&M Boys became the only teammates to join the 50 home run club in the same season, hitting a combined 115 home runs to break the single-season record for home runs by a pair of teammates. This record was previously held by Yankee sluggers Babe Ruth and Lou Gehrig, who hit 60 and 47 home runs, respectively, in . In addition, Mantle and Maris combined to record 269 RBI. Contrary to popular belief, the M&M Boys were actually close friends and no hostility existed between the"} +{"qid": "test1267", "pid": "3205437", "query": "most home runs by 2 teammates in a season", "answer": "Roger Maris", "passage": "\"Norm Cash\"\nbatted in (fourth), 119 runs scored (fourth), 124 walks (second) for a .488 on-base percentage (first), and 354 total bases (second) for a .662 slugging average (second); but his season was overshadowed by the 61 home runs of Roger Maris, and teammate Rocky Colavito finished with more home runs and RBI. Still, his .361 average would be the highest by any major league player in the 1960s. The Tigers finished 101–61 for their best regular season record since 1934, and scored the most runs in baseball, though they finished second in the AL, eight games behind the New York Yankees;"} +{"qid": "test1268", "pid": "15630432", "query": "season 2 attack on titan how many episodes", "answer": "12", "passage": "\"How the States Got Their Shapes\"\nMay 2011. Season 2 premiered in the fall of 2012, with a slightly more reality-oriented format and episodes shortened to half an hour, airing Saturdays on H2, with encore showings on Friday night on the History channel. Many of Season 2's episodes contained material already covered in Season 1. How the States Got Their Shapes How the States Got Their Shapes is a US television series that aired on the History Channel. It is hosted by Brian Unger and is based on Mark Stein's book, \"\"How the States Got Their Shapes\"\". The show deals with how the various states"} +{"qid": "test1268", "pid": "18839996", "query": "season 2 attack on titan how many episodes", "answer": "12", "passage": "\"Attack on Titan (film)\"\nstandards thus: \"\"I'm sorry, but deciding what movies to see based on their budget, and comparing everything to Hollywood, that's like how some people feel secure buying Okame natto when they go to the supermarket\"\". Higuchi referenced one critic of the film's characters, saying \"\"who's the idiot who gave this guy an early release of the film?!\"\" On Rotten Tomatoes, \"\"Attack on Titan: Part 1\"\" received a 58% approval rating based on 12 reviews, with an average rating of 6.5/10. \"\"Part 2\"\" received a 57% approval rating based on 7 reviews, with an average rating of 6/10. \"\"Attack on Titan:"} +{"qid": "test1268", "pid": "19148877", "query": "season 2 attack on titan how many episodes", "answer": "12", "passage": "\"Teen Titans (season 2)\"\nability to move the earth while struggling to accept her boundaries and the Titans as her friends. The season premiered on January 10, 2004 and ran until August 21, 2004, broadcasting 13 episodes. The season also aired on Kids' WB on later dates. The season re-aired on Kids' WB during the 2007–08 U.S. network television season on The CW for the final time, but instead airing episodes out of order. Warner Bros. Home Video released the second season on DVD in the United States on September 12, 2006 and in Canada on September 26, 2006. Upon release of the season"} +{"qid": "test1268", "pid": "5583699", "query": "season 2 attack on titan how many episodes", "answer": "12", "passage": "\"Skysurfer Strike Force\"\n\"\"DVD Episodes\"\" Alien Attack (Episodes 1-4): \"\"City of Terror\"\", \"\"Death Paint\"\", \"\"Voodoo Master\"\", \"\"Alien Attack\"\" Time Storm (Episodes 5-8): \"\"Titan of Terror\"\", \"\"Cyber-magic\"\", \"\"The Ancient City\"\", \"\"Time Storm\"\" Mountain of Fear (Episodes 9-12): \"\"Killer Ants\"\", \"\"Dogs of Doom\"\", \"\"Mountain of Fear\"\", \"\"Terror Toons\"\" Life Force (Episodes 13-16): \"\"Life Force\"\", \"\"The Black Box\"\", \"\"Terror in the Jungle\"\", \"\"The Crawling Horror\"\" Crime City (Episodes 17-20): \"\"Crime City\"\", \"\"Attack of the Slitha Monsters Part 1\"\", \"\"Attack of the Slitha Monsters Part 2\"\", \"\"Sword of Power\"\" Skysurfer Strike Force Skysurfer Strike Force is an American/Japanese animated series that was featured on the BKN cartoon"} +{"qid": "test1268", "pid": "13641282", "query": "season 2 attack on titan how many episodes", "answer": "12", "passage": "\"The Super Hero Squad Show\"\n12–16, \"\"Tales of Evil\"\" contains episodes 17–21, and \"\"Mother of Doom\"\" contains episodes 22–26. Home video releases of Season 2 have yet to be announced. Magna Home Entertainment released \"\"The Super Hero Squad Show: The Infinity Fractal War\"\" (Vol 1) and \"\"Titanic Team-Ups\"\" (Vol 2) on June 2, 2010 and \"\"The Lethal Legion Strikes\"\" (Vol 3) on September 8, 2010. Each DVD includes 6–7 episodes of the show, as well as character profiles. (Australian Release). The final volume of Season 1, entitled \"\"Quest for the Infinity Sword\"\" (Vol 4) was released on November 3, 2010, containing the final six episodes"} +{"qid": "test1270", "pid": "7383817", "query": "who played buffy the vampire slayer in the movie", "answer": "Kristy Swanson", "passage": "\"Buffy the Vampire Slayer filming locations\"\nBuffy the Vampire Slayer filming locations Many scenes in the movie and television series \"\"Buffy the Vampire Slayer\"\" were shot on locations in and around Los Angeles, California. In the 1992 motion picture version of \"\"Buffy the Vampire Slayer\"\" starring Kristy Swanson, Marshall High School at 400 Tracy Street in Los Angeles provided locations for Hemery High School. After the events of that movie, Buffy Summers was expelled from Hemery and moved to Sunnydale, where she attended Sunnydale High School, whose exterior scenes were shot at Torrance High School at 2200 W. Carson Street in Torrance, California. During the fourth"} +{"qid": "test1270", "pid": "582848", "query": "who played buffy the vampire slayer in the movie", "answer": "Kristy Swanson", "passage": "\"Buffy the Vampire Slayer\"\n1992 movie \"\"Buffy the Vampire Slayer\"\", which featured Kristy Swanson in the title role. The director, Fran Rubel Kuzui, saw it as a \"\"pop culture comedy about what people think about vampires.\"\" Whedon disagreed: \"\"I had written this scary film about an empowered woman, and they turned it into a broad comedy. It was crushing.\"\" The script was praised within the industry, but the movie was not. Several years later, Gail Berman (later a Fox executive, but at that time President and CEO of the production company Sandollar Television, who owned the TV rights to the movie) approached Whedon to"} +{"qid": "test1272", "pid": "3146955", "query": "how long did the menendez brothers get in prison for killing their parents", "answer": "life", "passage": "\"Lyle and Erik Menendez\"\nAttorney Gil Garcetti announced immediately that the brothers would be retried. The second trial was somewhat less publicized, partly because Judge Stanley Weisberg refused to allow cameras in the courtroom. During the second trial, Weisberg did not allow much defense testimony about the sexual abuse claims, and also would not allow the jury to vote on manslaughter charges rather than murder charges. Both brothers were convicted of two counts of first-degree murder and conspiracy to commit murder. In the penalty phase of the trial, the jury chose sentences for the brothers of life in prison without the possibility of parole"} +{"qid": "test1272", "pid": "20439492", "query": "how long did the menendez brothers get in prison for killing their parents", "answer": "life", "passage": "\"Stanley Weisberg\"\nand Weisberg himself was parodied on \"\"Saturday Night Live\"\", where he was portrayed by Phil Hartman. The Menendez brothers were convicted in the second trial, and on July 2, 1996, Weisberg sentenced the two to life in prison without the possibility of parole. Weisberg retired from the judgeship in 2008. In the 2017 \"\"Law & Order True Crime\"\" depiction of the Menendez brothers trial, Weisberg was portrayed by Anthony Edwards. Stanley Weisberg Stanley Weisberg (born c. 1944) is a former prosecutor and Los Angeles County Superior Court judge known for presiding over the trials of the police officers charged with"} +{"qid": "test1272", "pid": "7365134", "query": "how long did the menendez brothers get in prison for killing their parents", "answer": "life", "passage": "\"Island of Fire\"\nis a police officer who goes undercover in a prison, hoping to determine how the fingerprints on a recently killed felon could belong to a con who had been executed three months before. While inside, he is tortured for getting involved in internal matters. His fellow prisoners include Da Chui (Jackie Chan), who accidentally killed a card player while trying to raise money for an operation to save his girlfriend's life, Iron Ball (Andy Lau), who has himself thrown in jail to exact revenge for his dead brother killed by Da Chui, Kui (Jimmy Wang Yu), a leader of the"} +{"qid": "test1272", "pid": "9136689", "query": "how long did the menendez brothers get in prison for killing their parents", "answer": "life", "passage": "\"The Killing Box\"\nScofield will probably get life in prison for the escape. The brothers are taken to a Las Cruces, New Mexico holding facility, where the authorities are preparing them for their return to Fox River. Michael's phone vibrates in an evidence bag and the brothers discuss how they will contact Sara Tancredi. Michael asserts himself, demanding to have a phone call. The officer replies that it will have to wait until he is back at Fox River. Agent Kim tells Mahone to kill Michael and Lincoln, but Mahone protests, stating that they are in a room filled with law enforcement officers."} +{"qid": "test1273", "pid": "1068591", "query": "who does marge's voice on the simpsons", "answer": "Julie Deborah Kavner", "passage": "\"Julie Kavner\"\nJulie Kavner Julie Deborah Kavner (born September 7, 1950) is an American actress. She first attracted notice for her role as Brenda Morgenstern, the younger sister of Valerie Harper's title character in the sitcom \"\"Rhoda\"\", for which she won a Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series. She is best known for her voice role as Marge Simpson on the animated television series \"\"The Simpsons\"\". She also voices other characters for the show, including Marge’s mother, Jacqueline Bouvier, and sisters Patty and Selma Bouvier. Known for her improvisation and distinctive \"\"honeyed gravel voice\"\", Kavner was cast"} +{"qid": "test1275", "pid": "13474329", "query": "who owned the colts when they left baltimore", "answer": "Robert Irsay", "passage": "\"History of the Indianapolis Colts\"\nHistory of the Indianapolis Colts The Indianapolis Colts are a professional American football team based in Indianapolis, Indiana. They play in the South Division of the American Football Conference (AFC) in the National Football League (NFL). The organization began play in 1953 as the Baltimore Colts with the team located in Baltimore, Maryland; it relocated to Indianapolis following the 1983 season. Carroll Rosenbloom brought an NFL franchise to Baltimore in 1953 and owned the team until 1972 when he traded the franchise to Robert Irsay. The Baltimore Colts won the NFL Championship in 1958, 1959 and 1968, with the Colts"} +{"qid": "test1275", "pid": "14414933", "query": "who owned the colts when they left baltimore", "answer": "Robert Irsay", "passage": "\"Baltimore Colts relocation to Indianapolis\"\nReal estate investor Will Keland was originally slated to buy the Colts from Rosenbloom. Keland could not generate the necessary funds to purchase the team, but his golfing buddy Robert Irsay, who originally was slated to own only 1 percent of the team, did possess the necessary funds and moved in to make the purchase. On July 13, 1972, Irsay became owner of the Colts. Under the terms of the arrangement, he bought the Los Angeles Rams for $19 million, then traded them to Rosenbloom for the Colts and $3 million in cash. In 1971, Baltimore mayor William Donald Schaefer"} +{"qid": "test1275", "pid": "16462245", "query": "who owned the colts when they left baltimore", "answer": "Irsay", "passage": "\"History of the Baltimore Colts\"\nBaltimore in 1999. The Baltimore Colts Marching Band, which continued to operate after the Colts moved, became Baltimore's Marching Ravens. On the other hand, there have been many former Baltimore Colts players who have embraced the franchise as continuous, from Baltimore to Indianapolis. In 2009, Jim Irsay held a reunion of his favorite Colts team ever, the 1975 AFC East champions. 39 of the 50 players on that roster attended the reunion at Lucas Oil Stadium, including quarterback Bert Jones and running back Lydell Mitchell. Also, On February 5, 2012, at Super Bowl XLVI, Hall-of-Fame Baltimore Colts wide receiver Raymond"} +{"qid": "test1275", "pid": "17883800", "query": "who owned the colts when they left baltimore", "answer": "Robert Irsay", "passage": "\"Zanvyl Krieger\"\nand sciences in the United States. The school was renamed in his honor after the donation. Krieger was a major investor in Baltimore sports, including the Baltimore Colts, Baltimore Orioles and Baltimore Clippers. He was a force in keeping the Colts franchise in Baltimore in 1952, but he later sold his stock in Carroll Rosenbloom. He regretted the decision, when Robert Irsay moved the Colts to Indianapolis in 1984. Krieger later said, \"\"When Irsay took the Colts, I was crushed. I felt I had lost my longtime friend. I felt I had given birth to something only to have this"} +{"qid": "test1276", "pid": "5182283", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"Phantom of the Opera (1976 musical)\"\nPhantom of the Opera (1976 musical) Phantom of the Opera is a 1976 musical with book and lyrics by Ken Hill. It is the first musical adaptation of the novel \"\"The Phantom of the Opera\"\" by Gaston Leroux, about the hideously disfigured Phantom's amorous obsession with the magnificent, naïve singer, Christine. Hill wrote the original English lyrics to the music of Verdi, Gounod, Offenbach, Mozart, Weber, Donizetti, and Boito. Hill’s \"\"Phantom of the Opera\"\" was the first musical version of the story by Gaston Leroux and has enjoyed financial success. Hill's musical inspired the award-winning Andrew Lloyd Webber musical version"} +{"qid": "test1276", "pid": "2076452", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (1986 musical)\"\nThe Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath the Paris Opéra House. The musical opened in London's West End in 1986, and on Broadway in 1988. It won the 1986 Olivier Award"} +{"qid": "test1276", "pid": "2076497", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (1986 musical)\"\nMelbourne run ended on 12 December 2011 the production moved to the Capitol Theatre in Sydney where it played from January to April 2012. The Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath"} +{"qid": "test1276", "pid": "7866606", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (2004 soundtrack)\"\nThe Phantom of the Opera (2004 soundtrack) The Phantom of the Opera is the soundtrack to the 2004 film based on the Andrew Lloyd Webber musical, There are two versions released, the standard 14-track release and a two-disc deluxe edition. In addition to the listed tracks, versions of \"\"The Phantom of the Opera\"\" remixed by Junior Vasquez were made available to iTunes customers who purchased the expanded edition. In 2006, \"\"The Phantom of the Opera\"\" won the RIAJ's Japan Gold Disc Award for \"\"Best Soundtrack Album of the Year.\"\" Chart-wise, the album performed fairly well, reaching the top position of"} +{"qid": "test1276", "pid": "8797032", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nPeter Jöback and Erkan Aki. What makes this particular song unique within the musical is its unusual hard rock style, since most of the songs in the musical have a more operatic style. Early in the musical's production, Andrew Lloyd Webber met Jim Steinman, who described \"\"The Phantom of the Opera\"\" as a rock song invading an opera house. This is what inspired the hard rock style of the song, which influenced all of the rock-based instruments in the song including drums and electric guitar. \"\"The Phantom of the Opera\"\" song was also specially arranged by the show's original orchestrator,"} +{"qid": "test1276", "pid": "7776898", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"Adaptations of The Phantom of the Opera\"\nAdaptations of The Phantom of the Opera There have been many literary and dramatic works based on Gaston Leroux's novel \"\"The Phantom of the Opera,\"\" ranging from stage musicals to films to children's books. Some well known stage and screen adaptations of the novel are the 1925 film and the Andrew Lloyd Webber musical (see \"\"The Phantom of the Opera (1986 musical)\"\"); Susan Kay's 1990 \"\"Phantom\"\" is one of the best known novels and includes in-depth study of the title character's life and experiences. Several different computer games have been released based on the Phantom of the Opera or that"} +{"qid": "test1276", "pid": "7776899", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"Adaptations of The Phantom of the Opera\"\nmake some reference to it. Adaptations of The Phantom of the Opera There have been many literary and dramatic works based on Gaston Leroux's novel \"\"The Phantom of the Opera,\"\" ranging from stage musicals to films to children's books. Some well known stage and screen adaptations of the novel are the 1925 film and the Andrew Lloyd Webber musical (see \"\"The Phantom of the Opera (1986 musical)\"\"); Susan Kay's 1990 \"\"Phantom\"\" is one of the best known novels and includes in-depth study of the title character's life and experiences. Several different computer games have been released based on the Phantom"} +{"qid": "test1276", "pid": "3320350", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"Charles Hart (lyricist)\"\nCharles Hart (lyricist) Charles Hart (born 3 June 1961) is a British lyricist, songwriter and musician. He is best known for writing the lyrics to, and contributing to the book of, Andrew Lloyd Webber's stage musical \"\"The Phantom of the Opera\"\" and for writing the lyrics to \"\"Bend It Like Beckham the Musical\"\". He also co-wrote (with Don Black) the lyrics to Lloyd Webber's 1989 musical \"\"Aspects of Love\"\". Hart also re-wrote Glenn Slater's lyrics for \"\"Love Never Dies\"\", the sequel to \"\"Phantom\"\". Born in London, Hart was educated at Desborough School, Maidenhead, Robinson College, Cambridge and the Guildhall School"} +{"qid": "test1276", "pid": "6183540", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"Don Juan Triumphant\"\nDon Juan Triumphant Don Juan Triumphant is the name of a fictional opera written by the title character in the novel \"\"The Phantom of the Opera\"\". In the 1986 musical \"\"The Phantom of the Opera\"\" by Andrew Lloyd Webber, the concept is expanded as an opera within a musical and the performance of it plays a major role in the storyline. The fictional piece draws major inspiration from the Mozart's famous work \"\"Don Giovanni\"\" yet the Phantom's opera is depicted as far more bleak and dark. In the novel \"\"The Phantom of the Opera\"\" by novelist Gaston Leroux, \"\"Don Juan"} +{"qid": "test1276", "pid": "7929663", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"Madame Giry\"\nMadame Giry Madame Giry is a fictional character from Gaston Leroux's 1909 novel \"\"The Phantom of the Opera\"\". She is a fairly intermediate character in the novel, although her role is much increased in the Andrew Lloyd Webber musical. This article will deal with both versions separately. Madame Giry is also a character in the musical Love Never Dies, a sequel to The Phantom of the Opera. Madame Giry is an aging woman who works as a concierge in the \"\"rue de Provence\"\", who looks after patrons of the Opera, principally those who sit in the boxes. One night, whilst"} +{"qid": "test1276", "pid": "7160358", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Music of the Night\"\nwas called \"\"Married Man\"\". The lyrics were later rewritten and the song was added into \"\"The Phantom of the Opera\"\". A year before \"\"The Phantom Of The Opera\"\" opened at Her Majesty's Theatre, the original version of the song was performed at Andrew Lloyd Webber's own theatre at Sydmonton, along with the first drafts of the show. The audience were a specially gathered group of Webber's acquaintances. The Phantom was played by Colm Wilkinson, who sang \"\"The Music Of The Night\"\" in Act One. As Charles Hart had not yet become involved in writing the song, in places the lyrics"} +{"qid": "test1276", "pid": "8797051", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nLindsey Stirling did an accompanied instrumental version of the song on her \"\"Phantom of the Opera\"\" single in 2012. The Phantom of the Opera (Andrew Lloyd Webber song) \"\"The Phantom of the Opera\"\" is a song from the stage musical of the same name. It was composed by Andrew Lloyd Webber, with lyrics written by Charles Hart and Richard Stilgoe, and additional lyrics by Mike Batt. The song was originally recorded by Sarah Brightman and Steve Harley, which became a UK hit single in 1986, prior to the musical. In its theatrical debut, it was sung by Brightman and Michael"} +{"qid": "test1276", "pid": "16903541", "query": "who wrote the phantom of the opera music", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera at the Royal Albert Hall\"\nThe Phantom of the Opera at the Royal Albert Hall The Phantom of the Opera at the Royal Albert Hall is a 2011 British film adaptation of Andrew Lloyd Webber's 1986 musical \"\"The Phantom of the Opera\"\", which in turn was based on the 1910 French novel \"\"Le Fantôme de l'Opéra\"\" by Gaston Leroux. To celebrate the 25th anniversary of the musical, three special performances were filmed at the Royal Albert Hall, the third of which was screened live worldwide on 2 October 2011. For further releases, footage from all three performances was edited together. To mark the extraordinary milestone"} +{"qid": "test1277", "pid": "7396130", "query": "when did the first movie of harry potter come out", "answer": "2001", "passage": "\"Harry Potter Movie Magic Experience\"\nHarry Potter Movie Magic Experience The Harry Potter Movie Magic Experience at Warner Bros. Movie World in Gold Coast, Queensland, Australia was a walk-through attraction which featured several recreations of sets from the Harry Potter movies. The original attraction opened on 26 December 2001, themed to the first movie while a second version opened one year later to coincide with the second movie. The Harry Potter Movie Magic Experience closed in 2003 and was replaced by The Official Matrix Exhibit. The attraction launched within a month of the Australasian Premiere of Harry Potter and the Philosopher's Stone at Warner Bros."} +{"qid": "test1277", "pid": "14759156", "query": "when did the first movie of harry potter come out", "answer": "2001", "passage": "\"Harry Potter in amusement parks\"\nStudios Japan. In 2001, Time Warner used this license to construct and operate the Harry Potter Movie Magic Experience at Warner Bros. Movie World on the Gold Coast, Australia. The attraction was a small indoor walkthrough featuring many re-creations of locations in the first two movies. After two years of operation this attraction was removed. A \"\"Harry Potter\"\" themed attraction at a Universal Studios park or a Disney park was rumored in 2003. However, the rights to the Harry Potter franchise had been acquired by Warner Bros., who denied all rumors. In January 2007, About.com reported a rumor from a"} +{"qid": "test1277", "pid": "14759155", "query": "when did the first movie of harry potter come out", "answer": "2001", "passage": "\"Harry Potter in amusement parks\"\nHarry Potter in amusement parks This article details the appearance of Harry Potter theming in amusement parks. In the late 1990s, Universal Parks and Resorts began discussing the possibility of purchasing the license for Harry Potter to create and theme amusement park rides. As Time Warner owns the license, a small walkthrough attraction was constructed at Warner Bros. Movie World called the Harry Potter Movie Magic Experience in 2001. This attraction was removed two years later. In 2010, Universal's Islands of Adventure park opened The Wizarding World of Harry Potter. Similar attractions are destined for Universal Studios Hollywood and Universal"} +{"qid": "test1278", "pid": "989512", "query": "where do secondary xylem and phloem cells arise from", "answer": "the vascular cambium", "passage": "\"Tissue (biology)\"\npart of the 'plumbing system' of a plant. Primarily, phloem carries dissolved food substances throughout the plant. This conduction system is composed of sieve-tube member and companion cells, that are without secondary walls. The parent cells of the vascular cambium produce both xylem and phloem. This usually also includes fibers, parenchyma and ray cells. Sieve tubes are formed from sieve-tube members laid end to end. The end walls, unlike vessel members in xylem, do not have openings. The end walls, however, are full of small pores where cytoplasm extends from cell to cell. These porous connections are called sieve plates."} +{"qid": "test1278", "pid": "12366342", "query": "where do secondary xylem and phloem cells arise from", "answer": "The vascular cambium", "passage": "\"Plant stem\"\nthe xylem and phloem in the vascular bundles and connects to form a continuous cylinder. The vascular cambium cells divide to produce secondary xylem to the inside and secondary phloem to the outside. As the stem increases in diameter due to production of secondary xylem and secondary phloem, the cortex and epidermis are eventually destroyed. Before the cortex is destroyed, a cork cambium develops there. The cork cambium divides to produce waterproof cork cells externally and sometimes phelloderm cells internally. Those three tissues form the periderm, which replaces the epidermis in function. Areas of loosely packed cells in the periderm"} +{"qid": "test1278", "pid": "672659", "query": "where do secondary xylem and phloem cells arise from", "answer": "The vascular cambium", "passage": "Root\nplants. For example, storage roots of sweet potato have secondary growth but are not woody. Secondary growth occurs at the lateral meristems, namely the vascular cambium and cork cambium. The former forms secondary xylem and secondary phloem, while the latter forms the periderm. In plants with secondary growth, the vascular cambium, originating between the xylem and the phloem, forms a cylinder of tissue along the stem and root. The vascular cambium forms new cells on both the inside and outside of the cambium cylinder, with those on the inside forming secondary xylem cells, and those on the outside forming secondary"} +{"qid": "test1278", "pid": "1754000", "query": "where do secondary xylem and phloem cells arise from", "answer": "the vascular cambium", "passage": "\"Vascular cambium\"\nmore detail, the vascular cambium is a plant tissue located between the xylem and the phloem in the stems and roots of certain vascular plants. It is a cylinder of unspecialized meristem cells that divide to form secondary vascular tissues. It is the source of both secondary xylem growth inwards towards the pith, and secondary phloem growth outwards to the bark. Unlike the xylem and phloem, it does not transport water, minerals or food through the plant. Vascular cambia are found in dicots and gymnosperms but not monocots, which usually lack secondary growth. A few leaf types also have a"} +{"qid": "test1278", "pid": "672660", "query": "where do secondary xylem and phloem cells arise from", "answer": "The vascular cambium", "passage": "Root\nphloem cells. As secondary xylem accumulates, the \"\"girth\"\" (lateral dimensions) of the stem and root increases. As a result, tissues beyond the secondary phloem including the epidermis and cortex, in many cases tend to be pushed outward and are eventually \"\"sloughed off\"\" (shed). At this point, the cork cambium begins to form the periderm, consisting of protective cork cells containing suberin. In roots, the cork cambium originates in the pericycle, a component of the vascular cylinder. The vascular cambium produces new layers of secondary xylem annually. The xylem vessels are dead at maturity but are responsible for most water transport"} +{"qid": "test1278", "pid": "1754002", "query": "where do secondary xylem and phloem cells arise from", "answer": "The vascular cambium", "passage": "\"Vascular cambium\"\ncambia thus join up to form a ring (in three dimensions, a tube) which separates the primary xylem and primary phloem, the \"\"cambium ring\"\". The vascular cambium produces secondary xylem on the inside of the ring, and secondary phloem on the outside, pushing the primary xylem and phloem apart. The vascular cambium usually consists of two types of cells: The vascular cambium is maintained by a network of interacting signal feedback loops. Currently, both hormones and short peptides have been identified as information carriers in these systems. While similar regulation occurs in other meristems of plants, the cambial meristem receives"} +{"qid": "test1278", "pid": "1459179", "query": "where do secondary xylem and phloem cells arise from", "answer": "the vascular cambium", "passage": "\"Bark (botany)\"\nphellogen (cork cambium) and phelloderm constitute the periderm. Cork cell walls contain suberin, a waxy substance which protects the stem against water loss, the invasion of insects into the stem, and prevents infections by bacteria and fungal spores. The cambium tissues, i.e., the cork cambium and the vascular cambium, are the only parts of a woody stem where cell division occurs; undifferentiated cells in the vascular cambium divide rapidly to produce secondary xylem to the inside and secondary phloem to the outside. Phloem is a nutrient-conducting tissue composed of sieve tubes or sieve cells mixed with parenchyma and fibers. The"} +{"qid": "test1278", "pid": "6403743", "query": "where do secondary xylem and phloem cells arise from", "answer": "the vascular cambium", "passage": "\"Vascular tissue\"\nstem with phloem towards the exterior of the stem. In the stems of some Asterales dicots, there may be phloem located inwardly from the xylem as well. Between the xylem and phloem is a meristem called the vascular cambium. This tissue divides off cells that will become additional xylem and phloem. This growth increases the girth of the plant, rather than its length. As long as the vascular cambium continues to produce new cells, the plant will continue to grow more stout. In trees and other plants that develop wood, the vascular cambium allows the expansion of vascular tissue that"} +{"qid": "test1278", "pid": "989511", "query": "where do secondary xylem and phloem cells arise from", "answer": "the vascular cambium", "passage": "\"Tissue (biology)\"\nof pits present. The pit pairs allow water to pass from cell to cell. Though most conduction in xylem tissue is vertical, lateral conduction along the diameter of a stem is facilitated via rays. Rays are horizontal rows of long-living parenchyma cells that arise out of the vascular cambium. In trees and other woody plants, rays radiate out from the center of stems and roots and appear like spokes on a wheel in cross section. Rays, unlike vessel members and tracheids, are alive at functional maturity. Phloem consists of: Phloem is an equally important plant tissue as it also is"} +{"qid": "test1278", "pid": "12367815", "query": "where do secondary xylem and phloem cells arise from", "answer": "the vascular cambium", "passage": "Tree\nthe transport of the sap containing the sugars made by photosynthesis to other parts of the tree. It is a soft spongy layer of living cells, some of which are arranged end to end to form tubes. These are supported by parenchyma cells which provide padding and include fibres for strengthening the tissue. Inside the phloem is a layer of undifferentiated cells one cell thick called the vascular cambium layer. The cells are continually dividing, creating phloem cells on the outside and wood cells known as xylem on the inside. The newly created xylem is the sapwood. It is composed"} +{"qid": "test128", "pid": "10042999", "query": "who has scored more goals in the premier league", "answer": "Alan Shearer", "passage": "\"2007–08 Premier League\"\nThe Manchester United winger's 31 goals from 34 league appearances helped see off stiff opposition for this award from Arsenal's Emmanuel Adebayor and Fernando Torres of Liverpool. This was the first Premier League season that a player has scored more than 30 goals since Alan Shearer's 31-goal haul for Blackburn Rovers twelve years prior. Liverpool goalkeeper Pepe Reina claimed the Premier League Golden Glove award for the third season in succession. Clean sheets in 18 out of the 38 games meant Reina kept more clean sheets than any other goalkeeper in the top flight during the 2007–08 campaign. The Premier"} +{"qid": "test128", "pid": "6657502", "query": "who has scored more goals in the premier league", "answer": "Alan Shearer", "passage": "\"1992–93 in English football\"\nPaul McGrath. Gary Pallister played every minute of Manchester United's title-winning Premier League campaign. No other player matched that feat until the 2014–15 season, more than two decades later. Coventry signed Newcastle striker Micky Quinn for a nominal fee in November, and he responded by scoring 17 Premier League goals (the first 10 in 6 games) to keep the Sky Blues clear of relegation. Striker Les Ferdinand established himself as one of the country's top marksmen with more than 20 goals in all competitions for Queens Park Rangers. Alan Shearer scored 16 goals in his first 21 Premier League games"} +{"qid": "test128", "pid": "1721193", "query": "who has scored more goals in the premier league", "answer": "Alan Shearer", "passage": "\"Thierry Henry\"\nIn terms of goal-scoring awards, Henry was the European Golden Boot winner in 2004 and 2005 (sharing it with Villarreal's Diego Forlán in 2005). Henry was also the top goalscorer in the Premier League for a record four seasons (2002, 2004, 2005, 2006). In 2006, he became the first player to score more than 20 goals in the league for five consecutive seasons (2002 to 2006). With 175, Henry is currently fifth in the list of all-time Premier League goalscorers, behind Alan Shearer, Andy Cole, Wayne Rooney and Frank Lampard. All of his Premier League goals were for Arsenal, giving"} +{"qid": "test1281", "pid": "2061361", "query": "where was the first sonic drive in located", "answer": "Woodward, Oklahoma", "passage": "\"Sonic Drive-In\"\nthe cars. Smith borrowed several automobiles from a friend who owned a used-car lot to establish a layout for controlled parking. He also had some so-called \"\"jukebox boys\"\" come in and wire an intercom system in the parking lot. Sales immediately tripled. Charles Woodrow Pappe, an entrepreneur, chanced upon the Shawnee drive-in and was impressed. He and Smith negotiated the first franchise location in Woodward, Oklahoma, in 1956, based on nothing more than a handshake. By 1958, two more drive-ins were built, in Enid and Stillwater. Upon learning that the Top Hat name was already trademarked, Smith and Pappe changed"} +{"qid": "test1282", "pid": "15896856", "query": "who voices hiccup in how to train your dragon 2", "answer": "Jay Baruchel", "passage": "\"How to Train Your Dragon (franchise)\"\nDragon 2\"\". It was released on DVD separately on March 3, 2015, and it also includes \"\"Book of Dragons\"\" and \"\"Legend of the Boneknapper Dragon\"\". It was directed by John Sanford and Elaine Bogan, and it features the voices of Jay Baruchel and America Ferrera along with the cast from the television series. In the short, a hunt for a lost sheep turns into a competition between Hiccup and his friends for the first title of Dragon Racing Champion of Berk. A Broadway-style production named \"\"How To Train Your Dragon ON ICE\"\" is currently on Royal Caribbean's Allure of the"} +{"qid": "test1282", "pid": "8202546", "query": "who voices hiccup in how to train your dragon 2", "answer": "Jay Baruchel", "passage": "\"How to Train Your Dragon\"\nhorses and hawks so that he can fulfill his promise which stated that if humans didn't change by the time he died, dragons would have to go into hibernation. Hiccup also instructed Fishlegs to perpetuate that the whole story was just a myth. DreamWorks Animation released on 26 March 2010 a computer-animated film adaptation \"\"How to Train Your Dragon\"\", directed by Chris Sanders and Dean DeBlois, the directors of \"\"Lilo & Stitch\"\". The film features Gerard Butler as Stoick the Vast, Hiccup's father, Craig Ferguson as Gobber the Belch, and Jay Baruchel as Hiccup. The film proved to be a"} +{"qid": "test1284", "pid": "6196145", "query": "when is i can only imagine coming out", "answer": "March 16, 2018", "passage": "\"I Can Only Imagine (MercyMe song)\"\nDennis Quaid. The film was released on March 16, 2018. I Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and"} +{"qid": "test1285", "pid": "8313330", "query": "who sings the song rock you like a hurricane", "answer": "German rock band Scorpions", "passage": "\"Rock You Like a Hurricane\"\nRock You Like a Hurricane \"\"Rock You Like a Hurricane\"\" is a song by German rock band Scorpions. The song was released as the lead single from their ninth studio album, \"\"Love at First Sting\"\" (1984). It was written by Klaus Meine, Herman Rarebell, Rudolf Schenker and arranged/produced by Dieter Dierks. The lyrics of \"\"Rock You Like a Hurricane\"\" also reference the title of the album on which it originally appeared – \"\"Love at First Sting\"\". \"\"Rock You Like a Hurricane\"\" reached number 25 in the USA \"\"Billboard\"\" Hot 100, greatly contributing to the album's success, and MTV put the"} +{"qid": "test1285", "pid": "8313335", "query": "who sings the song rock you like a hurricane", "answer": "German rock band Scorpions", "passage": "\"Rock You Like a Hurricane\"\nof the German football team Hannover 96, as Scorpions originated from the same city. The team formerly used the song as entrance music. The song is referenced in Dave Eggers' 2002 novel \"\"You Shall Know Our Velocity\"\", in which the main characters attempt to anonymously distribute money on a round the world trip by taping parcels containing cash and bearing the line \"\"Here I am Rock You Like a Hurricane\"\" onto houses, animals and other objects. Band members Production Rock You Like a Hurricane \"\"Rock You Like a Hurricane\"\" is a song by German rock band Scorpions. The song was"} +{"qid": "test1285", "pid": "6554655", "query": "who sings the song rock you like a hurricane", "answer": "Scorpions", "passage": "\"Jorma Taccone\"\nninja who did not belong. \"\"The ’Bu\"\", a parody of \"\"The OC\"\", also starred Sarah Chalke (\"\"Roseanne\"\", \"\"Scrubs\"\") as Melissa and Andy Samberg as Aaron. In the group's first Channel 101 show, \"\"ITV Buzz Countdown\"\", Taccone played Chris Hoffman, a fictional VJ on a parody of MTV's \"\"Total Request Live\"\". He made a cameo appearance in \"\"Role Models\"\" as Mitch from Graphics, in which he sings a karaoke version of the Scorpions' \"\"Rock You Like a Hurricane\"\", he co-stars in the Gnarls Barkley music video for the song \"\"Who's Gonna Save My Soul\"\". Taccone appeared as Cha-Ka in Universal's 2009"} +{"qid": "test1285", "pid": "4994821", "query": "who sings the song rock you like a hurricane", "answer": "Scorpions", "passage": "\"Klaus Meine\"\nlyrics to Scorpions' songs. He also shared authorship of some lyrics with Herman Rarebell (former drummer of Scorpions) on some songs like the major hit \"\"Rock You Like a Hurricane\"\". Meine composed some songs alone like \"\"Wind of Change\"\", \"\"You and I\"\", \"\"But the Best for You\"\", \"\"Does Anyone Know\"\", \"\"A Moment in a Million Years\"\", \"\"Moment of Glory\"\", \"\"I Wanted to Cry\"\", \"\"Back to You\"\", \"\"My City, My Town\"\", \"\"Follow Your Heart\"\", \"\"Rock'n' Roll Band\"\", \"\"The World We Used To Know\"\" and \"\"Who We Are\"\". In 1981, after a world tour and during the recording of the \"\"Blackout\"\" album,"} +{"qid": "test1285", "pid": "814340", "query": "who sings the song rock you like a hurricane", "answer": "Scorpions", "passage": "\"Chicago Blackhawks\"\ngoal song during the 2008-09 NHL season. The Blackhawks also had dedicated goal songs for Patrick Kane (\"\"Rock You Like a Hurricane\"\" by The Scorpions), Jonathan Toews (\"\"Johnny B. Goode\"\" by Chuck Berry), and Patrick Sharp (\"\"Sharp Dressed Man\"\" by ZZ Top). It is a tradition for Blackhawks fans to applaud and cheer loudly during the singing of the national anthem. This tradition originated during a 1985 Campbell Conference playoff game at Chicago Stadium versus the Edmonton Oilers. Wayne Messmer, the Blackhawks home games national anthem singer from 1980 to 1994, was the anthem singer when this tradition began. Jim"} +{"qid": "test1285", "pid": "14381719", "query": "who sings the song rock you like a hurricane", "answer": "Scorpions", "passage": "\"Shin (singer)\"\npowerful voice which is rare in Mandopop. Shin is also renowned for his high screams while singing rock songs. He got the public attention by singing Scorpions's Still Loving You and other foreign rock band's songs in Harlem Yu's show 音樂大不同. He became popular in mainland China by the song 死了都要愛 Shin's musical style includes Heavy Metal, Hard Rock, Pop Rock and Mandopop in which he mainly sings Hard Rock. He also tried other music genres like nu metal, progressive rock and Britpop in songs such as 再見, 頑強 and 英國的夏天. After leaving the band, in September 2007, Shin released"} +{"qid": "test1285", "pid": "20491429", "query": "who sings the song rock you like a hurricane", "answer": "Scorpions", "passage": "\"50th Anniversary World Tour\"\nwith \"\"No One Like You\"\" and \"\"Big City Nights\"\". After the concert was done, band return to stage to play \"\"Still Loving You\"\" and \"\"Rock You Like a Hurricane\"\". During the concert in Barclays Center In Brooklyn on September 12, 2015, 12-year old guitarist Brandon Niederauer joined the band on stage to play guitar on song \"\"No One Like You\"\". Scorpions teamed up with \"\"Yahoo!\"\" for their first global live streaming. \"\"Yahoo!\"\" streamed band's live performance on September 12, 2015 at 9:10 p.m. ET from Barclays Center in Brooklyn. Live streaming was available for desktop computers on Yahoo! Screen website"} +{"qid": "test1286", "pid": "6551277", "query": "who has the most conference championships in college basketball", "answer": "Kansas", "passage": "\"Kansas Jayhawks men's basketball\"\nKansas Jayhawks men's basketball The Kansas Jayhawks men's basketball program is the intercollegiate men's basketball program of the University of Kansas. The program is classified in the NCAA's Division I and the team competes in the Big 12 Conference. Kansas is considered one of the most prestigious college basketball programs in the country with 5 overall claimed National Championships (3 NCAA Tournament championships, 2 Helms National Championships), as well being a National Runner-Up six times and having the most conference titles in the nation. Kansas is the all-time consecutive conference titles record holder with 14 consecutive titles, which is an"} +{"qid": "test1286", "pid": "5425378", "query": "who has the most conference championships in college basketball", "answer": "Kansas", "passage": "\"Bruce Weber (basketball)\"\nBruce Weber (basketball) Bruce Brett Weber (born October 19, 1956) is an American college basketball coach who is currently the men's basketball head coach at Kansas State University. Weber was formerly head coach at Southern Illinois University and the University of Illinois. Weber has won conference championships and conference coach of the year awards at each of the three schools where he has served as head coach. He has guided his teams to a combined total of twelve NCAA Tournaments, including an appearance with Illinois in the championship game of the 2005 NCAA Tournament. Weber was the consensus national coach"} +{"qid": "test1287", "pid": "13570324", "query": "which is the tallest building in the world 2018", "answer": "Burj Khalifa", "passage": "\"History of the world's tallest buildings\"\n101 in 2008 to become the building with the highest occupied floor. Using the criteria of highest tip (including antennae), the World Trade Center in New York City was the world's tallest building from 1972 to 2000, until the Sears Tower in Chicago (which already had a higher occupied floor than the World Trade Center) had its antenna extended to give that building the world's tallest tip; a title it held until the 2010 completion of Burj Khalifa. Petronas Towers and Taipei 101 were never the world's tallest buildings by the highest–tip criteria. Since 2010, Burj Khalifa has been the"} +{"qid": "test1287", "pid": "13464579", "query": "which is the tallest building in the world 2018", "answer": "Burj Khalifa", "passage": "\"Downtown Dubai\"\nand gathers hundreds of thousands of residents and tourists. In 2018, Burj Khalifa's owner and the host of the event, Emaar hosted a special light and laser show 'Light Up 2018' which brought in over a million visitors and reached over 2.5 billion people through live television broadcast and live streams on social media. 'Light Up 2018' broke a world record for the 'largest light and sound show on a single building.' In May 2015, Emaar announced the twin tower project called Forte Towers – one of which will be a 70 storey building, making it the third tallest tower"} +{"qid": "test1287", "pid": "1964562", "query": "which is the tallest building in the world 2018", "answer": "Burj Khalifa", "passage": "\"New Year's Eve\"\norganization can also fine shops for offering New Year's-related products, and confiscate them. However, the organization does not go after individual citizens holding private celebrations. In Dubai, United Arab Emirates, the Burj Khalifa—the world's tallest building—has hosted an annual fireworks display, which is among the world's most expensive. A fireworks show was not held for 2018, with the tower instead hosting a multimedia projection show with as part of \"\"Light Up 2018\"\". The show set a Guinness World Record for the largest light and sound show staged on a single building. Each major city in Australia holds New Year's Eve"} +{"qid": "test1287", "pid": "13570314", "query": "which is the tallest building in the world 2018", "answer": "Burj Khalifa", "passage": "\"History of the world's tallest buildings\"\nHistory of the world's tallest buildings The tallest building in the world, as of 2019, is Burj Khalifa. The title of \"\"world's tallest building\"\" has been borne by various buildings, such as the Rouen Cathedral and the Empire State Building. The skyscraper was invented in Chicago in 1884 when the Home Insurance Building was constructed using a steel-frame with curtain walls instead of load-bearing walls. For the next hundred years, the world's tallest building was always in the United States with New York City accumulating 86 years, and Chicago accumulating 30 years. After just over a century (1885–1998), the distinction"} +{"qid": "test1287", "pid": "13570332", "query": "which is the tallest building in the world 2018", "answer": "Burj Khalifa", "passage": "\"History of the world's tallest buildings\"\nHistory of the world's tallest buildings The tallest building in the world, as of 2019, is Burj Khalifa. The title of \"\"world's tallest building\"\" has been borne by various buildings, such as the Rouen Cathedral and the Empire State Building. The skyscraper was invented in Chicago in 1884 when the Home Insurance Building was constructed using a steel-frame with curtain walls instead of load-bearing walls. For the next hundred years, the world's tallest building was always in the United States with New York City accumulating 86 years, and Chicago accumulating 30 years. After just over a century (1885–1998), the distinction"} +{"qid": "test1287", "pid": "13464573", "query": "which is the tallest building in the world 2018", "answer": "Burj Khalifa", "passage": "\"Downtown Dubai\"\nwas completed and ready for occupancy by 4 January 2010. Burj Khalifa is estimated to have cost US$1.5 billion. In addition to being the tallest building in the world, Burj Khalifa holds six other world records, including ‘tallest free-standing structure in the world’, ‘elevator with the longest running distance in the world’ and ‘highest number of storeys in the world’. The Dubai Mall is the world's largest shopping mall by total area. It is the home of 1,200 shops in addition to numerous attractions, including an Olympic-size ice rink, an aquarium and a water zoo. In March 2018, the owner"} +{"qid": "test1289", "pid": "11746753", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Earth-centered inertial\"\nthe orientation of the Earth's rotational axis in space. The Earth's orbit plane is called the ecliptic, and it does not coincide with the Earth's equatorial plane. The angle between the Earth's equatorial plane and the ecliptic, \"\"ε\"\", is called the obliquity of the ecliptic and \"\"ε\"\" ≈ 23.4°. An equinox occurs when the earth is at a position in its orbit such that a vector from the earth toward the sun points to where the ecliptic intersects the celestial equator. The equinox which occurs near the first day of spring (with respect to the North hemisphere) is called the"} +{"qid": "test1289", "pid": "668516", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Orbital inclination\"\nlatitude and 20° south latitude, then its orbital inclination would be 20°. The inclination is one of the six orbital elements describing the shape and orientation of a celestial orbit. It is the angle between the orbital plane and the plane of reference, normally stated in degrees. For a satellite orbiting a planet, the plane of reference is usually the plane containing the planet's equator. For planets in the Solar System, the plane of reference is usually the ecliptic, the plane in which the Earth orbits the Sun. This reference plane is most practical for Earth-based observers. Therefore, Earth's inclination"} +{"qid": "test1289", "pid": "2219577", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Inclined orbit\"\nInclined orbit A satellite is said to occupy an inclined orbit around Earth if the orbit exhibits an angle other than 0° to the equatorial plane. This angle is called the orbit's inclination. A planet is said to have an inclined orbit around the Sun if it has an angle other than 0° to the ecliptic plane. A geosynchronous orbit is an inclined orbit with an altitude of that completes one revolution every sidereal day tracing out a small figure-eight shape in the sky. A geostationary orbit is a special case of geosynchronous orbit with no inclination, and therefore no"} +{"qid": "test1289", "pid": "232278", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "Latitude\nlatitude, to avoid ambiguity with the geodetic latitude and the auxiliary latitudes defined in subsequent sections of this article. Besides the equator, four other parallels are of significance: The plane of the Earth's orbit about the Sun is called the ecliptic, and the plane perpendicular to the rotation axis of the Earth is the equatorial plane. The angle between the ecliptic and the equatorial plane is called variously the axial tilt, the obliquity, or the inclination of the ecliptic, and it is conventionally denoted by . The latitude of the tropical circles is equal to and the latitude of the"} +{"qid": "test1289", "pid": "587313", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Celestial coordinate system\"\nnutation. The fundamental plane is the plane of the Earth's orbit, called the ecliptic plane. There are two principal variants of the ecliptic coordinate system: geocentric ecliptic coordinates centered on the Earth and heliocentric ecliptic coordinates centered on the center of mass of the solar system. The geocentric ecliptic system was the principal coordinate system for ancient astronomy and is still useful for computing the apparent motions of the Sun, Moon, and planets. The heliocentric ecliptic system describes the planets' orbital movement around the Sun, and centers on the barycenter of the solar system (i.e. very close to the center"} +{"qid": "test1289", "pid": "1277387", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Solar time\"\nmore than 24 hours of clock time. As explained in the equation of time article, this is due to the eccentricity of the Earth's orbit (i.e. the Earth's orbit is not perfectly circular, meaning that the Earth-Sun distance varies throughout the year), and the fact that the Earth's axis is not perpendicular to the plane of its orbit (the so-called obliquity of the ecliptic). The effect of this is that a clock running at a constant rate – e.g. completing the same number of pendulum swings in each hour – cannot follow the actual Sun; instead it follows an imaginary"} +{"qid": "test1289", "pid": "8102491", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Orbit of the Moon\"\nits diameter, or about half a degree on the celestial sphere, each hour. The Moon differs from most satellites of other planets in that its orbit is close to the ecliptic plane instead of that of its primary (in this case, Earth's equatorial plane). The Moon's orbital plane is inclined by about 5.1° with respect to the ecliptic plane, whereas the Moon's equatorial plane is tilted by only 1.5°. The properties of the orbit described in this section are approximations. The Moon's orbit around Earth has many irregularities (perturbations), the study of which (lunar theory) has a long history. The"} +{"qid": "test1289", "pid": "417186", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Tidal acceleration\"\nplanet with a satellite. The plane of the Moon's orbit around Earth lies close to the plane of Earth's orbit around the Sun (the ecliptic), rather than in the plane perpendicular to the axis of rotation of Earth (the equator) as is usually the case with planetary satellites. The mass of the Moon is sufficiently large, and it is sufficiently close, to raise tides in the matter of Earth. In particular, the water of the oceans bulges out towards and away from the Moon. The average tidal bulge is synchronized with the Moon's orbit, and Earth rotates under this tidal"} +{"qid": "test1289", "pid": "6885783", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Lunar standstill\"\nlower above the horizon, and back. The Moon differs from most natural satellites around other planets in that it remains near the ecliptic (the plane of Earth's orbit around the Sun) instead of Earth's equatorial plane. The Moon's maximum and minimum declination vary because the plane of the Moon's orbit around Earth is inclined about 5.14° with respect to the ecliptic plane, and the spatial direction of the Moon's orbital inclination gradually changes over an 18.6-year cycle, alternately adding to or subtracting from the 23.5° tilt of Earth's axis. Therefore, the maximum declination of the Moon varies roughly from (23.5°"} +{"qid": "test1289", "pid": "6379911", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Orbital plane (astronomy)\"\nOrbital plane (astronomy) The orbital plane of a revolving body is the geometric plane on which its orbit lies. A common example would be the centers of a massive body, of an orbiting body, and of the orbiting object at another time. The orbital plane is defined in relation to a reference plane by two parameters: inclination (\"\"i\"\") and longitude of the ascending node (Ω). Three non-collinear points in space suffice to determine the orbital plane. By definition, the reference plane for the Solar System is usually considered to be Earth's orbital plane. This defines the ecliptic, the circular path"} +{"qid": "test1289", "pid": "111109", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "Earth\nnew moon to new moon, is 29.53 days. Viewed from the celestial north pole, the motion of Earth, the Moon, and their axial rotations are all counterclockwise. Viewed from a vantage point above the north poles of both the Sun and Earth, Earth orbits in a counterclockwise direction about the Sun. The orbital and axial planes are not precisely aligned: Earth's axis is tilted some 23.44 degrees from the perpendicular to the Earth–Sun plane (the ecliptic), and the Earth–Moon plane is tilted up to ±5.1 degrees against the Earth–Sun plane. Without this tilt, there would be an eclipse every two"} +{"qid": "test1289", "pid": "906020", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Axial tilt\"\nright-hand rule to define a \"\"positive pole\"\" for the purpose of determining orientation. Using this convention, Venus is tilted 177° (\"\"upside down\"\"). Earth's orbital plane is known as the ecliptic plane, and Earth's tilt is known to astronomers as the obliquity of the ecliptic, being the angle between the ecliptic and the celestial equator on the celestial sphere. It is denoted by the Greek letter \"\"ε\"\". Earth currently has an axial tilt of about 23.4°. This value remains about the same relative to a stationary orbital plane throughout the cycles of axial precession. But the ecliptic (\"\"i.e\"\"., Earth's orbit) moves"} +{"qid": "test1289", "pid": "8102494", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Orbit of the Moon\"\nthe perigee and apogee, respectively – makes one complete revolution every 8.85 Earth years, or 3,232.6054 days, as it rotates slowly in the same direction as the Moon itself (direct motion). The Moon's apsidal precession is distinct from the nodal precession of its orbital plane and axial precession of moon itself. The mean inclination of the lunar orbit to the ecliptic plane is 5.145°. Theoretical considerations show that the present inclination relative to the ecliptic plane arose by tidal evolution from an earlier near-Earth orbit with a fairly constant inclination relative to Earth's equator. It would require an inclination of"} +{"qid": "test1289", "pid": "2314786", "query": "the plane of earth's orbit is called the", "answer": "ecliptic", "passage": "\"Milankovitch cycles\"\nthe ecliptic\"\" or \"\"planetary precession\"\". Earth's current inclination relative to the invariable plane (the plane that represents the angular momentum of the Solar System, approximately the orbital plane of Jupiter) is 1.57°. Milankovitch did not study apsidal precession. It was discovered more recently and measured, relative to Earth's orbit, to have a period of about 70,000 years. However, when measured independently of Earth's orbit, but relative to the invariable plane, precession has a period of about 100,000 years. This period is very similar to the 100,000-year eccentricity period. Both periods closely match the 100,000-year pattern of glacial events. Artifacts taken"} +{"qid": "test129", "pid": "11852445", "query": "who is the richest club in the championship", "answer": "Manchester City", "passage": "\"2008–09 in English football\"\nThe race to get into the Premier League is being headed by Wolverhampton Wanderers, Preston North End and Birmingham City who are level on 10 points at the top of the Football League Championship after four games. 1 September 2008: Manchester City are taken over by the Abu Dhabi group to become the richest club in England, and pay a national record £32.4million for Real Madrid and Brazil striker Robinho, while Manchester United pay a club record £30.75million for Tottenham Hotspur and Bulgaria striker Dimitar Berbatov. In League Two, Kevin Bond becomes the first manager to be removed of the"} +{"qid": "test1290", "pid": "3734191", "query": "when is the strictly come dancing results show recorded", "answer": "Saturday", "passage": "\"Strictly Come Dancing\"\nStrictly Come Dancing Strictly Come Dancing (informally known as Strictly) is a British television dance contest in which celebrities partner with professional dancers to compete in mainly ballroom and Latin dance. Each couple is scored out of 10 by a panel of judges. The format has been exported to over 40 other countries, and has also inspired a modern dance-themed spin-off \"\"Strictly Dance Fever\"\". The show is currently presented by Tess Daly and Claudia Winkleman. The show has run on BBC One since 15 May 2004, primarily on Saturday evenings with a following Sunday night results show (with certain exceptions)"} +{"qid": "test1290", "pid": "3235819", "query": "when is the strictly come dancing results show recorded", "answer": "Sunday night", "passage": "\"Claudia Winkleman\"\nregularly on the programme. In 2012, it was announced that Zoë Ball would be the regular presenter of \"\"Strictly Come Dancing: It Takes Two\"\", with Winkleman's involvement in Series 10 of the show being limited to co-hosting the Sunday night results show with Tess Daly. Winkleman continues to host the Sunday night results show for \"\"Strictly Come Dancing\"\". On 8 May 2014, it was announced that Winkleman would replace Bruce Forsyth as co-presenter, with Tess Daly, of the main \"\"Strictly Come Dancing\"\" show for the twelfth series. Winkleman started her journalism career as a travel writer, with columns about her"} +{"qid": "test1290", "pid": "12938488", "query": "when is the strictly come dancing results show recorded", "answer": "Saturday", "passage": "\"Strictly Come Dancing (series 7)\"\nthe seventh series on Saturday nights only was partly an attempt to reduce conflict with the rival talent show, as ITV had hinted that The X Factor's results show would be broadcast on Sunday evening. Sources at the BBC described the move as \"\"better for the viewers... people at home lose out if things are competing against one another... We wanted to make Strictly Come Dancing an unmissable TV event\"\". However, the BBC still came under intense criticism when the extended Saturday show, initially running from 7–9pm, clashed almost entirely with The X Factor's main show. ITV sources accused the"} +{"qid": "test1290", "pid": "3734205", "query": "when is the strictly come dancing results show recorded", "answer": "Saturday", "passage": "\"Strictly Come Dancing\"\nRoll and The Charleston. The Argentine Tango coaches in series three were Flavia Cacace and Vincent Simone, both of whom have subsequently competed in the show. From Series 1-4, the results show was shown live, later on the Saturday 1 hour after the performances. From Series 5 onwards, the results show is recorded on the Saturday night directly after the live show and incorporates the result of the viewers' votes which are completed by 21:30. This was confirmed by the official BBC website in 2008: Throughout the Sunday results show the presenters refer to 'last night' in reference to the"} +{"qid": "test1290", "pid": "16319845", "query": "when is the strictly come dancing results show recorded", "answer": "Sunday night", "passage": "\"The X Factor (UK series 9)\"\nbut the controversial live results show the following night, which saw Ella Henderson eliminated after ending up in the bottom two with James Arthur, produced 9.44 million for \"\"The X Factor\"\". \"\"I'm a Celebrity...\"\" was again the highest rated show of the Sunday night, while \"\"Strictly Come Dancing\"\" just came up on top of \"\"The X Factor\"\" by a margin of less than 500,000, though \"\"The X Factor\"\"s peak of nearly 11 million was higher than \"\"Strictly Come Dancing\"\" peak of 10.4 million. The final result received the lowest viewing figures for a final in seven years. It was beaten"} +{"qid": "test1290", "pid": "3235824", "query": "when is the strictly come dancing results show recorded", "answer": "Sunday night", "passage": "\"Claudia Winkleman\"\nseriously injured when her Halloween costume caught fire. Winkleman stated that the costume brushed against a candle in a Jack O'Lantern. Winkleman was subsequently replaced by Zoë Ball as host of \"\"Strictly Come Dancing\"\" for three weeks. This incident prompted the government to tighten the flame retardant standards of Halloween costumes. Claudia Winkleman Claudia Anne Winkleman (born 15 January 1972) is an English television presenter, model, film critic, radio personality, and journalist. Between 2004 and 2010, she presented \"\"\"\" on weeknights on BBC Two. Since 2010, she has co-presented \"\"Strictly Come Dancing\"\"s main results show on Sunday nights with Tess"} +{"qid": "test1290", "pid": "3734214", "query": "when is the strictly come dancing results show recorded", "answer": "Saturday", "passage": "\"Strictly Come Dancing\"\nwas unchanged from the previous series. The first programme was a catch-up show and preview to the new series, before the start of the competition on 6 October, which ran for 12 weeks. The show featured 14 new celebrities, who were paired with 14 professional dancers. In a change to the previous format, the results show was recorded on Saturday and broadcast on Sunday, rather than shown live later on Saturday. In addition to this, the two couples who were at the bottom of the table after the viewers' vote were subject to a dance-off, where they reprised their routine,"} +{"qid": "test1292", "pid": "1935024", "query": "what percent of the us population controls the wealth", "answer": "1%", "passage": "\"Empire of Brazil\"\ndespite its progress, a country where wealth was very unequally distributed. However, for purposes of comparison, according to historian Steven C. Topik, in the United States, \"\"by 1890, 80 percent of the population lived on the margin of subsistence, while 20 percent controlled almost all wealth.\"\" As new technologies appeared, and with increases in internal productivity, exports increased considerably. This made it possible to reach equilibrium in the balance of trade. During the 1820s sugar constituted about 30% of total exports while cotton constituted 21%, coffee 18% and leather and skins 14%. Twenty years later coffee would reach 42%, sugar"} +{"qid": "test1292", "pid": "3968633", "query": "what percent of the us population controls the wealth", "answer": "1%", "passage": "\"Distribution of wealth\"\ncommon measure is the ratio of total amount of wealth in the hand of top say 1% of the wealth distribution over the total wealth in the economy. In many societies, the richest ten percent control more than half of the total wealth. \"\"Pareto Distribution\"\" has often been used to mathematically quantify the distribution of wealth at the right tail (the wealth of very rich). In fact, the tail of wealth distribution, similar to the one of income distribution, behave like Pareto distribution but with ticker tail. \"\"Wealth over people (WOP) curves\"\" are a visually compelling way to show the"} +{"qid": "test1292", "pid": "5805205", "query": "what percent of the us population controls the wealth", "answer": "1%", "passage": "\"Bottom of the pyramid\"\nto the pyramids of Egypt. It has been reported that the gap between the ToP and BoP is widening over time in such a way that only 1% of the world population controls 50% of the wealth today, and the other 99% is having access to the remaining 50% only. On the basis of this report the wealth pyramid would look like the one shown in the illustration. The standards and benchmarks developed – for example less than $2.5 a day – always tell us about the upper limit of what we call the BoP, and not actually about its"} +{"qid": "test1292", "pid": "1823810", "query": "what percent of the us population controls the wealth", "answer": "1%", "passage": "\"Social class in the United States\"\nmore than one-million dollars. One could therefore fall under the assumption that less than five percent of American society are members of rich households. The richest 1% of the American population owns as much as the combined wealth of the bottom 90%, or perhaps even more. Members of the upper class control and own significant portions of corporate America and may exercise indirect power through the investment of capital. The high salaries and the potential for amassing great wealth through stock options have greatly increased the power and visibility of the \"\"corporate elite\"\". There is disagreement over whether the \"\"nouveau"} +{"qid": "test1292", "pid": "2309921", "query": "what percent of the us population controls the wealth", "answer": "1%", "passage": "\"Economic inequality\"\nabout 0.7% of the human population's wealth, which is the same as the bottom half of the population. In January 2015, Oxfam reported that the wealthiest 1 percent will own more than half of the global wealth by 2016. An October 2014 study by Credit Suisse also claims that the top 1% now own nearly half of the world's wealth and that the accelerating disparity could trigger a recession. In October 2015, Credit Suisse published a study which shows global inequality continues to increase, and that half of the world's wealth is now in the hands of those in the"} +{"qid": "test1293", "pid": "847363", "query": "what languages are spoken in india the most", "answer": "Marathi", "passage": "\"Indo-Aryan languages\"\nMarathi, and Punjabi. The Indo-Aryan languages of North India and Pakistan form a dialect continuum. What is called \"\"Hindi\"\" in India is frequently Standard Hindi, the Sanskritized version of the colloquial Hindustani spoken in the Delhi area since the Mughals. However, the term Hindi is also used for most of the central Indic dialects from Bihar to Rajasthan. The spoken New Indo-Aryan dialects from Assam in the east to the borders of Afghanistan in the west form a linguistic continuum across the plains of North India, Pakistan and Bangladesh. In the Central Zone Hindi-speaking areas, for a long time the"} +{"qid": "test1293", "pid": "337776", "query": "what languages are spoken in india the most", "answer": "Hindi", "passage": "\"Punjabi language\"\nlanguage divided into Hindi, with more Sanskritisation, and Urdu, with more Persianisation, but in Punjabi both Sanskrit and Persian words are used with a liberal approach to language. Later, it was influenced by Portuguese and English, though these influences have been minor in comparison to Persian and Arabic. However, in India, English words in the official language are more widespread than Hindi. Punjabi is the most widely spoken language in Pakistan, the eleventh -most widely spoken in India and spoken Punjabi diaspora in various countries. Punjabi is the most widely spoken language in Pakistan, being the native language of %"} +{"qid": "test1293", "pid": "1951664", "query": "what languages are spoken in india the most", "answer": "Telugu", "passage": "\"Languages of India\"\nand Urdu) with official status in more than one state. It is also spoken by a significant number of people in the Andaman and Nicobar Islands, Chhattisgarh, Karnataka, Maharashtra, Odisha, Tamil Nadu, Gujarat and by the Sri Lankan Gypsy people. It is one of six languages with classical status in India. Telugu ranks fourth by the number of native speakers in India (81 million in the 2011 Census), fifteenth in the \"\"Ethnologue\"\" list of most-spoken languages worldwide and is the most widely spoken Dravidian language. Tamil (also spelt as \"\"Thamizh\"\": தமிழ்) is a Dravidian language predominantly spoken in Tamil Nadu,"} +{"qid": "test1293", "pid": "12989740", "query": "what languages are spoken in india the most", "answer": "Bengali", "passage": "\"Bengali language\"\nBengali language Bengali (), also known by its endonym Bangla (; ), is an Indo-Aryan language primarily spoken by the Bengalis in the Indian subcontinent. It is the official and most widely spoken language of Bangladesh and second most widely spoken of the 22 scheduled languages of India, behind Hindi. The official and \"\"de facto\"\" national language of Bangladesh is Modern Standard Bengali (Literary Bengali). It serves as the \"\"lingua franca\"\" of the nation, with 98% of Bangladeshis being fluent in Bengali (including dialects) as their first language. Within India, Bengali is the official language of the states of West"} +{"qid": "test1293", "pid": "14725225", "query": "what languages are spoken in india the most", "answer": "Bengali", "passage": "\"Ethnic groups of Tamil Nadu\"\na Dravidian ethnic group of India. They are the native speakers of the Telugu language. According to Census of India, Telugu language has 74 million speakers making it as the third largest spoken language in India after Hindi and Bengali. They are native to the South Indian states of Andhra Pradesh & Telangana. Telugu is also the most widely spoken language in South India. In Tamil Nadu, they are found in Chennai, Coimbatore, Tiruvallur, Kanchipuram, Krishnagiri, Thiruvannamalai, Vellore, Thanjavur, Tuticorin, Salem, Perambalur and Ariyalur districts. According to the 2001 census, Telugu is spoken by 5.65% of the population of Tamil"} +{"qid": "test1293", "pid": "1951628", "query": "what languages are spoken in india the most", "answer": "Hindi", "passage": "\"Languages of India\"\nmillion native speakers and 122 which were spoken by more than 10,000 people. Two contact languages have played an important role in the history of India: Persian and English. Persian was the court language during the Mughal period in India. It reigned as an administrative language for several centuries until the era of British colonisation. English continues to be an important language in India. It is used in higher education and in some areas of the Indian government. Hindi, the most commonly spoken language in India today, serves as the \"\"lingua franca\"\" across much of North and Central India. However,"} +{"qid": "test1293", "pid": "408273", "query": "what languages are spoken in india the most", "answer": "Bengali", "passage": "\"Tamil Nadu\"\nofficial language for communication purposes. When India adopted national standards, Tamil was the first language to be recognised as a classical language of India. As of 2001 census, Tamil is spoken as the first language by 89.41 percent of the state's population followed by Telugu (5.65%), Kannada (1.67%), Urdu (1.51%) and Malayalam (0.89%). Other Languages spoken are Hindi, Gujarati, Marathi, Bengali etc which are mostly spoken by migrant people. Tamil Nadu is one of the most literate states in India. Tamil Nadu has performed reasonably well in terms of literacy growth during the decade 2001–2011. A survey conducted by the"} +{"qid": "test1293", "pid": "6357997", "query": "what languages are spoken in india the most", "answer": "Bengali", "passage": "\"Toto language\"\nToto language Toto is a Sino-Tibetan language spoken on the border of India and Bhutan, by the tribal Toto people in Totopara, West Bengal along the border with Bhutan. It is also spoken in Subhapara, Dhunchipara, and Panchayatpara hillocks on India-Bhutan border in Jalpaiguri district, West Bengal (\"\"Ethnologue\"\"). Toto is listed as a critically endangered language by UNESCO, with perhaps 1,000 speakers. However, most families in the community speak Toto at home. Most children learn Toto at home, although they use Bengali in school. Anthropological Survey of India (AnSI) set out to conduct a study on language of the primitive"} +{"qid": "test1293", "pid": "273461", "query": "what languages are spoken in india the most", "answer": "Bengali", "passage": "\"Marathi language\"\nMarathi language Marathi (; ; ) is an Indo-Aryan language spoken predominantly by around 83 million Marathi people of Maharashtra, India. It is the official language and co-official language in the Maharashtra and Goa states of Western India, respectively, and is one of the 22 scheduled languages of India. There were 83 million speakers in 2011; Marathi ranks 19th in the list of most spoken languages in the world. Marathi has the third largest number of native speakers in India, after Hindi and Bengali. Marathi has some of the oldest literature of all modern Indian languages, dating from about 900"} +{"qid": "test1293", "pid": "12269747", "query": "what languages are spoken in india the most", "answer": "Hindi", "passage": "Indo-Canadians\nlanguage come from both India and Sri Lanka. Hindi, as India's most spoken language, is now the language primarily used by new Indian immigrants, especially ones with ties to Northern India and Central India. As an official language used by the Government of India and by almost half of India's population, Hindi plays a key role as a lingua franca between Indo-Canadians who don't necessarily feel comfortable to speak in English. Urdu is primarily spoken by Muslim South Asians from Northern India and Pakistan. However, individuals of Indian descent from Africa and the Caribbean may also speak it as well."} +{"qid": "test1293", "pid": "100160", "query": "what languages are spoken in india the most", "answer": "Telugu", "passage": "\"Dravidian languages\"\nDravidian languages The Dravidian languages are a language family spoken mainly in southern India and parts of eastern and central India, as well as in Sri Lanka with small pockets in southwestern Pakistan, southern Afghanistan, Nepal, Bangladesh and Bhutan, and overseas in other countries such as Malaysia, Philippines, Indonesia and Singapore. The Dravidian languages with the most speakers are Telugu, Tamil, Kannada and Malayalam. There are also small groups of Dravidian-speaking scheduled tribes, who live outside Dravidian-speaking areas, such as the Kurukh in Eastern India and Gondi in Central India. The Dravidian languages are spoken by more than 215 million"} +{"qid": "test1293", "pid": "4651766", "query": "what languages are spoken in india the most", "answer": "Hindi", "passage": "\"North India\"\nspoken in notable numbers throughout the region. A large part of North India is taken up by the so-called Hindi Belt, which here subsumes most of the Rajasthani languages, dialects of Western Hindi, Bhojpuri, Awadhi, Garhwali and Kumaoni. Several Sino-Tibetan languages are spoken in the Himalayan region like Kinnauri, Ladakhi and Lahuli–Spiti languages. Austro-Asiatic languages like Korwa/Kodaku is also spoken in some parts of this region. Dance of North India too has diverse \"\"folk\"\" and \"\"classical\"\" forms. Among the well-known folk dances are the \"\"bhangra\"\" of the Punjab, Ghoomar of Rajasthan and \"\"rouf\"\" and \"\"bhand pather\"\" of Kashmir. Main dance"} +{"qid": "test1293", "pid": "1951639", "query": "what languages are spoken in india the most", "answer": "Bengali", "passage": "\"Languages of India\"\ngroup are Hindi (or more correctly, Hindustani, which includes Hindi and Urdu), Bengali, Konkani, Marathi, Gujarati, Punjabi, Kashmiri, Rajasthani, Sindhi, Assamese (Asamiya), Maithili and Odia. Aside from the Indo-Aryan languages, other Indo-European languages are also spoken in India, the most prominent of which is English, as a \"\"lingua franca\"\". The second largest language family is the Dravidian language family, accounting for some 277 million speakers, or approximately 20.5% as per 2018 estimate The Dravidian languages are spoken mainly in southern India and parts of eastern and central India as well as in parts of northeastern Sri Lanka, Pakistan, Nepal and"} +{"qid": "test1294", "pid": "1290877", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore\"\nother countries, was 849m tonnes in 2004. Australia and Brazil dominate the seaborne trade, with 72% of the market. BHP, Rio and Vale control 66% of this market between them. In Australia iron ore is won from three main sources: pisolite \"\"channel iron deposit\"\" ore derived by mechanical erosion of primary banded-iron formations and accumulated in alluvial channels such as at Pannawonica, Western Australia; and the dominant metasomatically-altered banded iron formation related ores such as at Newman, the Chichester Range, the Hamersley Range and Koolyanobbing, Western Australia. Other types of ore are coming to the fore recently, such as oxidised"} +{"qid": "test1294", "pid": "15059458", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore mining in Western Australia\"\non 1 April 1969 on board of the \"\"Osumi Maru\"\". Newman remained a \"\"closed\"\" company town until 1981. Rio Tinto's iron ore operations in the Pilbara began in 1966, with the Mount Tom Price mine opened that year, becoming the company's first mine to open in the Pilbara. In 2008-09, expenditure for exploration in iron ore in Western Australia increased by 33 percent compared to the previous financial year, 2007-08. The A$560million spend on iron ore exploration accounted for 45 percent of all mineral exploration expenditure in the state. The bulk of iron ore production in Western Australia comes from"} +{"qid": "test1294", "pid": "15052587", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Paraburdoo mine\"\nParaburdoo mine The Paraburdoo mine is an iron ore mine located in the Pilbara region of Western Australia, near Paraburdoo. The mine is owned and operated by Rio Tinto Iron Ore, and is one of twelve iron ore mines the company operates in the Pilbara. In 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15% increase over 2008. The Pilbara operations accounted for almost 13% of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the mine is located, contains 80% of all identified iron ore reserves in Australia and"} +{"qid": "test1294", "pid": "15054059", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Brockman 4 mine\"\nBrockman 4 mine The Brockman 4 mine is an iron ore mine located in the Pilbara region of Western Australia, 60 kilometres north-west of Tom Price. The mine, located near the existing Brockman mine, was opened in 2010. The mine is fully owned and operated by Rio Tinto Iron Ore and will be one of thirteen iron ore mines the company operates in the Pilbara. The Hamersley Range, where the mine is located, is, with 80% of all identified iron ore reserves in Australia, one of the major iron ore provinces in the world. The mine is serviced by the"} +{"qid": "test1294", "pid": "15059475", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore mining in Western Australia\"\na list of currently active iron ore mines in Western Australia: This is a list of former iron ore mines in Western Australia: Annual statistics for the Western Australian iron ore mining industry: Iron ore mining in Western Australia Iron ore mining in Western Australia, in the financial year 2008-09, accounted for 47 percent of the total value of the state's resources, with a value of A$33.56 billion. The overall value of the mineral and petroleum industry in Western Australia was A$71.3 billion in 2008-09, a 19 percent increase compared to the previous financial year. Western Australia's iron ore output"} +{"qid": "test1294", "pid": "15054015", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Hope Downs mine\"\nHope Downs mine The Hope Downs 4 mine is an iron ore mine located in the Pilbara region of Western Australia, 100 kilometres northwest of Newman. The mine is partly owned and operated by Rio Tinto Iron Ore and is one of twelve iron ore mines the company operates in the Pilbara. In the calendar year 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15 percent increase from 2008. The Pilbara operations accounted for almost 13 percent of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the mine is"} +{"qid": "test1294", "pid": "15052488", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Nammuldi mine\"\nNammuldi mine The Nammuldi mine is an iron ore mine located in the Pilbara region of Western Australia, 60 kilometres north-west of Tom Price. The mine is fully owned and operated by Rio Tinto Iron Ore and is one of twelve iron ore mines the company operates in the Pilbara. In the calendar year 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15 percent increase from 2008. The Pilbara operations accounted for almost 13 percent of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the mine is located, contains"} +{"qid": "test1294", "pid": "15052506", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Mount Tom Price mine\"\nMount Tom Price mine The Mount Tom Price mine is an iron ore mine located in the Pilbara region of Western Australia, near the town of Tom Price. The mine is fully owned and operated by Rio Tinto Iron Ore and is one of twelve iron ore mines the company operates in the Pilbara. In the calendar year 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15 percent increase from 2008. The Pilbara operations accounted for almost 13 percent of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the"} +{"qid": "test1294", "pid": "15052597", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Channar mine\"\nChannar mine The Channar mine is an iron ore mine located in the Pilbara region of Western Australia, 17 kilometres south-east of Paraburdoo. The mine is partly owned and operated by Rio Tinto Iron Ore and is one of fifteen iron ore mines the company operates in the Pilbara. In the calendar year 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15 percent increase from 2008. The Pilbara operations accounted for almost 13 percent of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the mine is located, contains 80"} +{"qid": "test1294", "pid": "15052613", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Eastern Range mine\"\nEastern Range mine The Eastern Range mine is an iron ore mine in the Pilbara region of Western Australia, 10 kilometres south-east of Paraburdoo. The mine is partly owned and operated by Rio Tinto Iron Ore and is one of twelve iron ore mines the company operates in the Pilbara. In the calendar year 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15 percent increase from 2008. The Pilbara operations accounted for almost 13 percent of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the mine is located, contains"} +{"qid": "test1294", "pid": "15059456", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore mining in Western Australia\"\nmineral was in short supply, that mining began in earnest. Up until the mid-1960s, iron ore production in Western Australia, and Australia as a whole, was negligible, in the range of less than 10 million tons a year. By the mid-1970s, this figure had reached 100 million tonnes, with the majority coming from Western Australia. Production slightly declined in the 1980s but it improved in the 1990s, reaching 150 million tonnes for the country by 1997 and 200 million tonnes by 2003. The first mine in the Pilbara, the Goldsworthy mine, was developed by Utah Development Co. in 1965. A"} +{"qid": "test1294", "pid": "15052590", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Paraburdoo mine\"\nmines in the region. Paraburdoo mine The Paraburdoo mine is an iron ore mine located in the Pilbara region of Western Australia, near Paraburdoo. The mine is owned and operated by Rio Tinto Iron Ore, and is one of twelve iron ore mines the company operates in the Pilbara. In 2009, the combined Pilbara operations produced 202 million tonnes of iron ore, a 15% increase over 2008. The Pilbara operations accounted for almost 13% of the world's 2009 iron ore production of 1.59 billion tonnes. The Hamersley Range, where the mine is located, contains 80% of all identified iron ore"} +{"qid": "test1294", "pid": "4529720", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Paraburdoo, Western Australia\"\nParaburdoo, Western Australia Paraburdoo is a mining town in the Pilbara region of Western Australia. The name of the town comes from an Aboriginal word for 'white cockatoo'. Paraburdoo was developed in the early 1970s to support Hamersley Iron's (now Pilbara Iron) local iron ore mining operations, and gazetted as a town in 1972. Most of the town's residents are employed by Pilbara Iron's mining operation and the supporting services. The region is served by Paraburdoo Airport, which is situated 9 km from the town. The town provides housing to workers of the three near-by Rio Tinto mines, those being"} +{"qid": "test1294", "pid": "15059454", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore mining in Western Australia\"\nIron ore mining in Western Australia Iron ore mining in Western Australia, in the financial year 2008-09, accounted for 47 percent of the total value of the state's resources, with a value of A$33.56 billion. The overall value of the mineral and petroleum industry in Western Australia was A$71.3 billion in 2008-09, a 19 percent increase compared to the previous financial year. Western Australia's iron ore output for 2011 was 474 million tonnes, 97% of Australian production. The bulk of Western Australian ore went to China, which imported 70 percent of 2010 production, followed by Japan with 19% and South"} +{"qid": "test1294", "pid": "4529722", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Paraburdoo, Western Australia\"\nswimming pools, tennis courts, netball, cricket and football fields. Paraburdoo has its own shopping facilities and medical centres. Paraburdoo, Western Australia Paraburdoo is a mining town in the Pilbara region of Western Australia. The name of the town comes from an Aboriginal word for 'white cockatoo'. Paraburdoo was developed in the early 1970s to support Hamersley Iron's (now Pilbara Iron) local iron ore mining operations, and gazetted as a town in 1972. Most of the town's residents are employed by Pilbara Iron's mining operation and the supporting services. The region is served by Paraburdoo Airport, which is situated 9 km"} +{"qid": "test1294", "pid": "15059459", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore mining in Western Australia\"\nthe Pilbara region of the state. A number of mines however are also located in the Mid West and Kimberley regions as well as in the Wheatbelt. The big two producers, Rio Tinto and BHP Billiton accounted for 90 percent of all iron ore production in the state in 2008-09, with the third-biggest producer being the Fortescue Metals Group. Rio Tinto operates twelve iron ore mines in Western Australia, BHP Billiton seven, Fortescue two, all of those are located in the Pilbara region. The three largest iron ore producers operate private rail networks to transport ore from their mines to"} +{"qid": "test1294", "pid": "5517685", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron Knob\"\nWorld War II, iron ore from Iron Knob was also exported to Japan. In the financial year 1935-36, 291,961 tonnes of ore from Iron Knob was shipped there via the seaport of Whyalla. This became a controversial matter in the late 1930s due in part to Australia's known reserves at the time being limited to Iron Knob and Yampi Sound in Western Australia. Japan was also considered an 'aggressor' nation following acts of war against China in 1937. Waterfront workers and seamen protested against the export of iron ore to Japan, leading to strikes and arrests. In 1937, output from"} +{"qid": "test1294", "pid": "15059461", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Iron ore mining in Western Australia\"\nthe Goldsworthy railway. In June 2010, the Australian Competition Tribunal ruled that FMG would be granted access to Rio Tinto's Robe River line and BHP Billiton's Goldsworthy line but not to the busier Hamersley and Mount Newman lines. Treasurer Wayne Swan suggested that several advantages would accrue from access to the rail lines by third parties. It would increase competition, reduce duplication of infrastructure, and reduce environmental damage. Atlas Iron, another junior iron ore miner, is hopeful to come to terms with BHP Billiton in regards to using some of the company's rail infrastructure, the Goldsworthy railway, in the future."} +{"qid": "test1294", "pid": "15134602", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Orebodies 18, 23 and 25 mine\"\nMudd\"\". At Orebody 25, BHP operates a processing plant consisting of a primary and secondary crusher, and a screening plant. BHP Billiton does not report the annual production of the mine separately, but rather together with its other Newman operations which, in 2009-10, produced a combined 37 million tonnes of ore. Orebodies 18, 23 and 25 mine The Orebodies 18, 23 and 25 mine is an iron ore mine located in the Pilbara region of Western Australia, 8 kilometres east of Newman. The mine is majority-owned (85 percent) and operated by BHP Billiton, and is one of seven iron ore"} +{"qid": "test1294", "pid": "15622501", "query": "where does iron ore come from in australia", "answer": "Western Australia", "passage": "\"Mount Gibson, Western Australia\"\nis moved first by road to Perenjori, Western Australia where it is hauled by rail to the port of Geraldton. Mount Gibson, Western Australia Mount Gibson, Western Australia is located on the Wubin - Mount Magnet section of the Great Northern Highway in the mid-west region of Western Australia. Mount Gibson is also the name of a pastoral lease (sheep station) and a nature conservancy project. In the early twentieth century it was a gold exploration area, and continued to be of interest for some time. Currently it is the site of an iron ore mine. The iron ore mine"} +{"qid": "test1295", "pid": "6196145", "query": "when was i can only imagine the song released", "answer": "1999", "passage": "\"I Can Only Imagine (MercyMe song)\"\nDennis Quaid. The film was released on March 16, 2018. I Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and"} +{"qid": "test1295", "pid": "6196123", "query": "when was i can only imagine the song released", "answer": "1999", "passage": "\"I Can Only Imagine (MercyMe song)\"\nI Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and included on their 2001 major-label debut album \"\"Almost There\"\" as"} +{"qid": "test1295", "pid": "6196126", "query": "when was i can only imagine the song released", "answer": "1999", "passage": "\"I Can Only Imagine (MercyMe song)\"\nat the time. Millard began writing the words \"\"I can only imagine\"\" on items when he was thinking about his father. During the recording of the band's 1999 independent album \"\"The Worship Project\"\", MercyMe needed one more song to fill out the album. Millard, alone on a bus in the middle of the night, finally wrote the lyrics to the song by drawing on his thoughts and personal faith about what one would experience standing before God in Heaven. Millard attests that \"\"['I Can Only Imagine'] is one of the only songs I have ever written where there wasn't any"} +{"qid": "test1295", "pid": "6196124", "query": "when was i can only imagine the song released", "answer": "2001", "passage": "\"I Can Only Imagine (MercyMe song)\"\nthe fifth song on the album. \"\"I Can Only Imagine\"\" was released in 2001 as the album's lead single. It gained significant airplay on Christian radio formats before crossing over to mainstream radio formats such as adult contemporary and Top 40 in late 2003 and into 2004; to aid in promotion to these markets, a double A-side physical single (combined with \"\"Word of God Speak\"\") was released in 2003. It charted on several formats, including the \"\"Billboard\"\" Adult Contemporary (where it peaked at No. 5) and the Hot 100 (where it peaked at No. 71). In 2002, \"\"I Can Only"} +{"qid": "test1295", "pid": "6196142", "query": "when was i can only imagine the song released", "answer": "1999", "passage": "\"I Can Only Imagine (MercyMe song)\"\nas a wake-up call for Barry E. Wilmore during STS-129. The original version of \"\"I Can Only Imagine\"\" was a track on MercyMe's 1999 independent release \"\"The Worship Project\"\". In August 2006, both an acoustic and live form (as well as the original 1999 version) were included in the 'Platinum edition' of \"\"Almost There\"\". MercyMe recorded a version of the song for their \"\"iTunes Originals\"\" album. In 2009, two further variants were included on their compilation album \"\"10\"\"; a 'symphony version' featuring the London Symphony Orchestra, and a live version. \"\"I Can Only Imagine\"\" has also been covered by several"} +{"qid": "test1295", "pid": "11546924", "query": "when was i can only imagine the song released", "answer": "2001", "passage": "\"The Worship Project\"\nband would release one more independent album, 2000's \"\"Look\"\", before signing with INO Records and releasing their 2001 album \"\"Almost There\"\". Two songs from \"\"The Worship Project\"\" were re–recorded and included on \"\"Almost There\"\" – \"\"I Can Only Imagine\"\" and \"\"Cannot Say Enough\"\". \"\"I Can Only Imagine\"\" was released as the album's second single and became the band's breakthrough hit, topping the US Christian radio charts and receiving a GMA Dove Award for \"\"Song of the Year\"\" before becoming a hit on US mainstream radio as well. It became the first Christian song to be certified double platinum by the"} +{"qid": "test1295", "pid": "9675169", "query": "when was i can only imagine the song released", "answer": "2001", "passage": "\"Almost There (album)\"\nedition, CCM Magazine listed Almost There as one of '100 Albums You Need to Own'. In the following year, the previous magazine, ranked \"\"I Can Only Imagine\"\" as the fourth-greatest song in Christian music. At the 33rd GMA Dove Awards, \"\"I Can Only Imagine\"\" won the awards for Song of the Year and Pop/Contemporary Recorded Song of the Year. Almost There (album) Almost There is the first major-label studio album by the American Christian rock band MercyMe. Produced by Pete Kipley, the album was released on August 14, 2001 by INO Records. After releasing six independent records, the band decided"} +{"qid": "test1295", "pid": "6196130", "query": "when was i can only imagine the song released", "answer": "2001", "passage": "\"I Can Only Imagine (MercyMe song)\"\nbe standing before God. Regarding this theme, Millard explained to Fox News that \"\"I was always told that if he could choose, he would rather be in Heaven than here with me. As a Christian I believed that, but as an 18-year-old it was a little hard to swallow. So the questions in the song came from me asking God what was so great about Him that my dad would rather be there.\"\" \"\"I Can Only Imagine\"\" was re-recorded for their major-label debut record \"\"Almost There\"\" and released as its lead single in 2001. The album was recorded in various"} +{"qid": "test1296", "pid": "19942466", "query": "when did gaurdians of the galaxy 2 come out", "answer": "2017", "passage": "\"Samsung Galaxy A3 (2017)\"\nA3 (2017) will not be coming to the United States, China, Malaysia and India. Samsung Galaxy A3 (2017) The Samsung Galaxy A3 (2017) is an Android smartphone produced by Samsung Electronics. It was announced on January 2, 2017, along with Samsung Galaxy A5 (2017) and Samsung Galaxy A7 (2017). This move marks Samsung's first product launch since the discontinuation of the Galaxy Note 7 back on October 2016. The Samsung Galaxy A3 (2017) runs Android 6.0.1 Marshmallow right out-of-the-box and runs on Grace UX interface. The smartphone features an Exynos 7870 SoC consisting of 8 ARM Cortex-A53 backed by the"} +{"qid": "test1296", "pid": "19942463", "query": "when did gaurdians of the galaxy 2 come out", "answer": "2017", "passage": "\"Samsung Galaxy A5 (2017)\"\nwhen the device is in standby. Following the unveiling, Samsung announced that they will sell up to 20 million smartphones, targeting Western and Eastern Europe, Africa, Asia and Latin America. Unlike its predecessors, the Galaxy A5 (2017) will not be coming to the United States. However, the Galaxy A5 (2017) is going to be sold in Canada, unlike the 2016 edition. Samsung Galaxy A5 (2017) The Samsung Galaxy A5 (2017) is an Android smartphone produced by Samsung Electronics. It was announced on January 2, 2017, along with Samsung Galaxy A3 (2017) and Samsung Galaxy A7 (2017). This move marks Samsung's"} +{"qid": "test1296", "pid": "20021604", "query": "when did gaurdians of the galaxy 2 come out", "answer": "2017", "passage": "\"Samsung Galaxy Book\"\nSamsung Galaxy Book The Samsung Galaxy Book is a Windows 10-based 2-in-1 PC produced and marketed by Samsung Electronics. It is the successor of the Galaxy TabPro S and comes in 2 models: a 10.6-inch model and a 12-inch model. Its successor, the Samsung Galaxy Book2, was announced in October 2018. On 27 February 2017, Samsung unveiled the Galaxy Book alongside with the Samsung Galaxy Tab S3 at the MWC 2017. The introductory price for the 12-inch model was $1,130 (Wi-Fi only) and $1,300 (LTE via Verizon). The 10-inch model started at $630. The Galaxy Book 10 shares the same"} +{"qid": "test1297", "pid": "20305902", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Hart of Dixie (Season 4)\"\noptions. Hart of Dixie (Season 4) The fourth and final season of \"\"Hart of Dixie\"\" premiered on November 15, 2014 and ended on March 27, 2015, with a total of 10 episodes. The series was later cancelled on May 7, 2015. The final season deals with Zoe's pregnancy and her relationship with Wade. George, Lemon, Lavon and Annabeth enter a tumultuous love affair while Brick has to deal with his past in order to move forward. Erica Piccininni was cast as the new firefighter and love interest for Brandi Burkhardt's character, Crickett Watts. \"\"Dawson's Creek\"\" star Meredith Monroe was cast"} +{"qid": "test1297", "pid": "20305899", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Hart of Dixie (Season 4)\"\nHart of Dixie (Season 4) The fourth and final season of \"\"Hart of Dixie\"\" premiered on November 15, 2014 and ended on March 27, 2015, with a total of 10 episodes. The series was later cancelled on May 7, 2015. The final season deals with Zoe's pregnancy and her relationship with Wade. George, Lemon, Lavon and Annabeth enter a tumultuous love affair while Brick has to deal with his past in order to move forward. Erica Piccininni was cast as the new firefighter and love interest for Brandi Burkhardt's character, Crickett Watts. \"\"Dawson's Creek\"\" star Meredith Monroe was cast as"} +{"qid": "test1297", "pid": "16623322", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Hart of Dixie (season 1)\"\nfirst season has an approval rating of 35% based on 17 reviews, with an average rating of 3.9/10. The site's critical consensus reads, \"\"\"\"It's got a solid cast, but Hart of Dixie is unfortunately rife with paper-thin characters and illogical plotting.\"\"\"\" Hart of Dixie: The Complete First Season was released on DVD in the US on October 2, 2012. The 5 disc set includes all 22 episodes from the first season, special features and various language and subtitle options. Hart of Dixie (season 1) The CW ordered the pilot of \"\"Hart of Dixie\"\" on February 1, 2011. The season premiered"} +{"qid": "test1297", "pid": "20305901", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Hart of Dixie (Season 4)\"\nRatings rose in the fourth season, but was not enough to sustain a renewal. Series creator Leila Gerstein later hinted to fans via Twitter that the series was unlikely to return for a fifth season. On the 29th of July, 2015, Rachel Bilson put to rest the rumours surrounding the cancellation of the series once and for all via her Instagram account. Hart of Dixie: The Fourth and Final Season was released on DVD in the US on October 27, 2015. The 2 disc set includes all 10 episodes from the fourth and final season and various language and subtitle"} +{"qid": "test1297", "pid": "15616865", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Hart of Dixie\"\nABC sitcom \"\"Last Man Standing\"\". Travis was written out after the first two episodes. Meredith Monroe appeared in one episode as Lemon's estranged mother. JoBeth Williams appeared in three episodes as Candice Hart, the mother of Bilson's character. On July 26, 2013, it was announced that Kaitlyn Black was upgraded to series regular status for season three. \"\"Hart of Dixie\"\" first season has received mixed reviews, scoring a 43 out of 100 on the review aggregator Metacritic. TVGuide.com described the show as \"\"\"\"Southern Exposure\"\"\"\" and, in a later review, stated that the actors are better than the \"\"cutesy\"\" material, although"} +{"qid": "test1297", "pid": "19515902", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Dixi (TV series)\"\nin 2018. My Heroes Comic Strip was released for Abi, Abi's dad had an illness that's why Abi framed Billie. It was how her dad got better in My Heroes Comic Strip In 2016 TV Episodes were released - Season 1 + 2 were released on TV (featuring 10 episodes on TV) And in 2017 there were 12 episodes of \"\"Dixi 3\"\". In 2018 there were 13 episodes of \"\"Dixi: Friends4Ever\"\". Dixi (TV series) Dixi is an interactive web programme for children age 7–14 that premiered on CBBC Online in 2014. \"\"Dixi\"\" has run for 4 series, and 130 episodes."} +{"qid": "test1297", "pid": "12785597", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Rachel Bilson\"\nYork, I Love You\"\". She appeared in the 100th episode of \"\"How I Met Your Mother\"\" (\"\"Girls Versus Suits\"\") as Ted Mosby's latest love interest and the Mother's room mate. In September 2008, she started shooting the indie romantic film \"\"Waiting for Forever\"\", directed by James Keach. In September 2009 Rachel appeared as a celebrity guest judge in the third episode of \"\"Project Runway\"\" (season 6). Bilson starred in the 2011 indie film \"\"L!fe Happens\"\". In 2011, Bilson began starring in The CW series \"\"Hart of Dixie\"\", executive produced by \"\"The O.C.\"\" creator Josh Schwartz. On May 7, 2015, the"} +{"qid": "test1297", "pid": "2485358", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Major-General's Song\"\nthe school musical. Similarly, in season 2 of \"\"Slings & Arrows\"\", Richard Smith-Jones uses the song to audition for the festival's musical. In the pilot episode of \"\"90210\"\", Annie Wilson sings the beginning of the song in a flash back of her old school performance. The song is sung by Brick Breeland in season 1 of \"\"Hart of Dixie\"\" in episode 19, \"\"Destiny & Denial\"\". Parodies or pastiches of the song have been sung in a number of television programs. For example, the computer-animated series \"\"ReBoot\"\" ended its third season (Episode 39: \"\"End Prog\"\") with a recap of the entire"} +{"qid": "test1297", "pid": "5419769", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Josh Cooke\"\n7\"\" on \"\"Numb3rs\"\". Cooke played Ben Coles on \"\"Better with You\"\", a sitcom which began in 2010 and was cancelled after 22 episodes. Cooke voiced various characters in Seth Green's \"\"Robot Chicken\"\" and made an appearance in the hit Showtime series \"\"Dexter\"\" as Louis Greene. Cooke played Joel Stevens, boyfriend of Rachel Bilson's character Zoe Hart, in CW's \"\"Hart of Dixie\"\" (season 3) and appears as Sue Heck's college professor on whom she has a strong crush in the seventh season of \"\"The Middle.\"\" In 2018, he guest starred as Greg in \"\"Younger\"\" as Caitlin's older boyfriend. In 2006, Cooke"} +{"qid": "test1297", "pid": "15626947", "query": "hart of dixie season 4 how many episodes", "answer": "10", "passage": "\"Gossip Girl (season 5)\"\n2011–12 television schedule, \"\"Gossip Girl\"\" stayed on Monday night and moved to the 8:00 pm Eastern/7:00 pm Central timeslot as a lead-in to \"\"Hart of Dixie\"\", which is produced by \"\"Gossip Girl\"\"'s executive producers Josh Schwartz and Stephanie Savage. The fifth season premiered on Monday, September 26, 2011. Filming for the season began on July 7, 2011. On August 3, 2011, The CW ordered two additional episodes for the fifth season, which will now total at 24. Executive producer Joshua Safran announced that he would be \"\"pulling out all the stops\"\" to make the 100th episode of the show special,"} +{"qid": "test1298", "pid": "7721176", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Old Flames Can't Hold a Candle to You\"\nOld Flames Can't Hold a Candle to You \"\"Old Flames Can't Hold a Candle to You\"\" is a country song written by singer-songwriter Pebe Sebert and Hugh Moffatt. It was a number 14 U.S. country hit for Joe Sun in 1978, and a number 86 hit for Brian Collins the same year. It was later covered by Dolly Parton, who took it to the top of the U.S. country singles charts in August 1980.. Parton included her version on her 1980 \"\"Dolly, Dolly, Dolly\"\" album, and it was released as the album's second single after the success of \"\"Starting Over"} +{"qid": "test1298", "pid": "7721177", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Old Flames Can't Hold a Candle to You\"\nAgain\"\". In 2013, Sebert's daughter, Kesha, released an acoustic cover of the song as part of her extended play \"\"Deconstructed\"\". A new version featuring Parton is a track on Kesha's 2017 album \"\"Rainbow\"\". In the song, the narrator tells their lover not to feel threatened by past affairs for these \"\"old flames\"\" are in the past. Old Flames Can't Hold a Candle to You \"\"Old Flames Can't Hold a Candle to You\"\" is a country song written by singer-songwriter Pebe Sebert and Hugh Moffatt. It was a number 14 U.S. country hit for Joe Sun in 1978, and a number"} +{"qid": "test1298", "pid": "16868675", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Pebe Sebert\"\nand Choir. She began playing coffeehouses in Chicago and Europe throughout her high-school years. In the 1970s Sebert wrote \"\"Old Flames Can't Hold a Candle to You\"\" with then-husband Hugh Moffatt for American Country singer Joe Sun for his album \"\"Old Flames\"\". Sun's version soon became a hit, peaking at #14 on the \"\"Billboard\"\" Hot Country Songs chart. Two years after Sun's version was released, entertainer Dolly Parton included a cover of the song on her 1980 album \"\"Dolly, Dolly, Dolly\"\". Parton's version became a huge hit, reaching #1 on the \"\"Billboard\"\" Hot Country Songs chart. \"\"Old Flames Can't Hold"} +{"qid": "test1298", "pid": "16868680", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Pebe Sebert\"\na Candle to You\"\", between Kesha and Parton. Sebert was married to Hugh Moffatt, with whom she wrote \"\"Old Flames Can't Hold a Candle to You\"\", for seven years, separating in 1984. They had one child together, Lagan Sebert. She claims that after the divorce, she and Lagan lived on welfare payments and food stamps. In 1987, Sebert gave birth to daughter Kesha Rose Sebert. Sebert frequently brought Kesha and her brothers along to recording studios and encouraged Kesha to sing. She moved the family to Nashville, Tennessee in 1991 after securing a new publishing deal for her songwriting. Through"} +{"qid": "test1298", "pid": "14135934", "query": "who wrote old flames cant hold a candle to you", "answer": "Hugh Moffatt", "passage": "Kesha\nAngeles, California. Her mother, Patricia Rose \"\"Pebe\"\" Sebert, is a singer-songwriter who co-wrote the 1978 single \"\"Old Flames Can't Hold a Candle to You\"\" with Hugh Moffatt for Joe Sun, made popular by country music artist Dolly Parton on her 1980 album \"\"Dolly, Dolly, Dolly\"\". Pebe, a single mother, struggled financially while supporting herself, Kesha, and Kesha's older brother Lagan; they relied on welfare payments and food stamps to get by. When Kesha was an infant, Pebe would often have to look after her onstage while performing. Kesha says she has no knowledge of her father's identity, though she has"} +{"qid": "test1298", "pid": "8553808", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Hugh Moffatt (singer)\"\nsinger-songwriter Katy Moffatt. He was married to songwriter Pebe Sebert, with whom he wrote \"\"Old Flames Can't Hold a Candle to You\"\", in 1977, but the couple separated in 1984. They have one son, Lagan Blue Sebert, a video and documentary film producer living in New York City. Sebert is also the mother of pop star Kesha and for this reason Moffatt is sometimes assumed to be the father of Kesha, but he is not. Moffatt says, \"\"I have enormous respect for Kesha. I admire her music, her talent, her work ethic, and the fact that she has clearly established"} +{"qid": "test1298", "pid": "9560147", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Asshole (song)\"\nsong uses samples from Dolly Parton's \"\"Old Flames Can't Hold a Candle to You\"\", so the complete writing list includes Leary himself, Chris Phillips, and Pebe Sebert and Hugh Moffatt, for the samples. The song became a minor hit, with the music video gaining airplay on MTV and MuchMusic in a censored form. The song was also popular in Australia, and was voted No. 1 in a major Australian youth radio poll (the Triple J Hottest 100) as well as reaching No. 2 in the singles chart. In the end of year chart for 1994, the song was placed at"} +{"qid": "test1298", "pid": "14647592", "query": "who wrote old flames cant hold a candle to you", "answer": "Pebe Sebert", "passage": "\"Warrior (Kesha album)\"\nchart. Credits adapted from the liner notes of \"\"Warrior\"\". Deconstructed is the second extended play (EP) by American recording artist Kesha, released digitally on November 30, 2012, alongside her second studio album \"\"Warrior\"\" (2012). The EP was also released as a bonus disc with the fan edition of \"\"Warrior\"\", available only through her website in the United States. \"\"Deconstructed\"\" contains five tracks, four of which are new versions of Kesha's previous songs, and one being a cover of Dolly Parton's \"\"Old Flames Can't Hold a Candle to You\"\" (1980), co-written by Kesha's mother, Pebe Sebert. The EP's version of \"\"Die"} +{"qid": "test1299", "pid": "2028098", "query": "who plays the robot maid in richie rich", "answer": "Brooke Wexler", "passage": "\"Richie Rich (comics)\"\nLotta in Bonnie Dell. For the Ape Entertainment comic book series debuting in 2011, the character was updated by emphasizing his altruistic side: \"\"A mix of James Bond and Indiana Jones with the bank account of Donald Trump, Richie Rich is an altruistic adventurer who travels the world helping the less fortunate!\"\" The new Richie was joined by updated versions of his robot maid Irona and his butler Cadbury. Netflix debuted a 2015 half-hour comedy series titled \"\"Richie Rich\"\" with Jake Brennan starring as Richie Rich, along with Joshua Carlon, Jenna Ortega, Lauren Taylor, Kiff VandenHeuvel, and Brooke Wexler. However,"} +{"qid": "test13", "pid": "1614691", "query": "cast of law & order special victim unit", "answer": "Mariska Hargitay", "passage": "\"Law & Order: Special Victims Unit\"\nThe show starred Christopher Meloni as Detective Elliot Stabler and Mariska Hargitay as Detective Olivia Benson for its first twelve seasons until the former left the cast, unable to come to an agreement on his contract. As of November 29, 2018, \"\"Law & Order: Special Victims Unit\"\" has aired 444 original episodes. On May 9, 2018, NBC renewed the series for a twentieth season, which allowed it to tie the flagship \"\"Law & Order\"\" and \"\"Gunsmoke\"\" for the longest-running scripted drama in U.S. television history. The season premiered on September 27, 2018. The idea for \"\"Law & Order: Special Victims"} +{"qid": "test13", "pid": "1614710", "query": "cast of law & order special victim unit", "answer": "Ice-T", "passage": "\"Law & Order: Special Victims Unit\"\nand \"\"\"\". Ice-T originally agreed to do only four episodes of \"\"Law & Order: Special Victims Unit\"\", but he quickly gained affection for the ensemble nature of the cast. He relocated to New York City before his four-episode contract was up and remained with the show as Munch's permanent partner, Detective Odafin \"\"Fin\"\" Tutuola. Initially, the show focused exclusively on the policework of the detectives in the Special Victims Unit of the 16th precinct, with members of the District Attorney's office occasionally appearing as guest roles crossing over from the original \"\"Law & Order\"\". From season two onwards, the format"} +{"qid": "test13", "pid": "10107397", "query": "cast of law & order special victim unit", "answer": "Stephanie March", "passage": "\"Law & Order: Special Victims Unit (season 5)\"\nLaw & Order: Special Victims Unit (season 5) The fifth season of the television series, \"\"\"\" premiered September 23, 2003, and ended May 18, 2004, on NBC. \"\"Law & Order: SVU\"\" moved away from its Friday night slot to Tuesday nights at 10pm/9c. Casey Novak, the unit's longest-serving ADA, was introduced in the fifth episode when Diane Neal joined the cast to fill the absence left by Stephanie March. Early reports about Stephanie March leaving the cast at the end of indicate that the first Season 5 episodes were written if not filmed by May 2003. The sixth episode, \"\"Coerced\"\","} +{"qid": "test13", "pid": "1614711", "query": "cast of law & order special victim unit", "answer": "Stephanie March", "passage": "\"Law & Order: Special Victims Unit\"\nwas changed to be more faithful to the original \"\"Law & Order\"\" concept by including court cases. Stephanie March had little television experience before being cast on \"\"Law & Order: Special Victims Unit\"\", nor did she watch much TV. Nevertheless, March was cast as Assistant District Attorney Alexandra Cabot at the beginning of season two but still believed that, due to the grim nature of the series, it would be short-lived. She stayed with the series for three seasons, however, and left when she believed she had reached the natural conclusion of the character's development. She would later reprise the"} +{"qid": "test13", "pid": "17251548", "query": "cast of law & order special victim unit", "answer": "Ice-T", "passage": "\"Law & Order: Special Victims Unit (season 15)\"\nLaw & Order: Special Victims Unit (season 15) The fifteenth season of \"\"\"\" made its debut with a two-hour premiere episode on September 25, 2013, at 9pm/8c - 11pm/10c (Eastern), on NBC. \"\"Law & Order: Special Victims Unit\"\" was renewed for a fifteenth season on April 26, 2013, which consists of 24 episodes. Cast-member Mariska Hargitay (Detective Olivia Benson) revealed on May 25, 2013, that her contract had been renewed for the upcoming season. Ice-T (Detective Fin Tutuola) announced on Twitter that filming on the fifteenth season commenced on July 24, 2013. In August 2013, Leight revealed that the storyline"} +{"qid": "test13", "pid": "17251551", "query": "cast of law & order special victim unit", "answer": "Dann Florek", "passage": "\"Law & Order: Special Victims Unit (season 15)\"\nJohn Munch) would depart the main cast in the fifth episode, \"\"Wonderland Story.\"\" The storyline showed Munch retiring from the Special Victims Unit after 15 years in order to move onto becoming a Special District Attorney Investigator, which allowed the character to make future recurring appearances on the series. Belzer, one of the series' original cast members, collectively portrayed Munch for 20 years as a regular on \"\"\"\" (1993–99) and later \"\"SVU\"\", in conjunction with guest appearances in other \"\"Law & Order\"\" universe shows. On December 10, 2013, it was announced that Dann Florek (Captain Donald Cragen) would depart \"\"SVU\"\""} +{"qid": "test13", "pid": "11344180", "query": "cast of law & order special victim unit", "answer": "Richard Belzer", "passage": "\"Law & Order: Special Victims Unit (season 2)\"\nno ill feelings about her time on \"\"Law & Order: Special Victims Unit\"\", but felt the casting on \"\"Leap Years\"\" was a \"\"rare opportunity.\"\" Roger Friedman of Fox News reported that Richard Belzer arranged for Hurd to be fired because her character was receiving too many storylines and distracting attention from him, but that report was never confirmed. Although Jeffries departed from the Special Victims Unit during the episode \"\"Asunder,\"\" her character was still present in the episode \"\"Runaway,\"\" which marked the character's final appearance. \"\"Runaway\"\" was originally intended to air before \"\"Asunder\"\" but was broadcast out of order. The"} +{"qid": "test13", "pid": "1614719", "query": "cast of law & order special victim unit", "answer": "Raúl Esparza", "passage": "\"Law & Order: Special Victims Unit\"\nfrom the main cast to a guest starring role and recurring actor Joel de la Fuente's not appearing for the first time since 2002. Of the latter change, Warren Leight said, \"\"those scenes [which featured Fuente] can be dry\"\" and hired Gilbert Gottfried as a more comedic replacement. In addition to these changes, Linus Roache became a recurring cast member in his role of Michael Cutter, whom he played on \"\"Law & Order\"\"; on \"\"SVU\"\" former Executive ADA Cutter serves as the Bureau Chief for ADAs attached to the Special Victims Unit. In season 14, Raúl Esparza joined the cast"} +{"qid": "test13", "pid": "10281039", "query": "cast of law & order special victim unit", "answer": "Richard Belzer", "passage": "\"Chester Lake (Law & Order: Special Victims Unit)\"\nBeach's fellow cast members, Richard Belzer and Ice-T. It was decided at the end of the to write Lake out of the series in an effort to bring the focus of the show back to the core cast. Neal Baer said the departure was mutual and amicable, and Beach said that he enjoyed his year on \"\"SVU\"\" but was looking forward to \"\"new adventures.\"\" Reaction to Lake was negative. Susan Green and Randee Dawn, writers of \"\"Law & Order: Special Victims Unit: The Unofficial Companion\"\", felt that Lake was never fully accepted by \"\"SVU\"\" viewers. They felt his presence seemed"} +{"qid": "test13", "pid": "1614712", "query": "cast of law & order special victim unit", "answer": "Diane Neal", "passage": "\"Law & Order: Special Victims Unit\"\ncharacter as a guest appearance in season six and as a regular character on the short-lived Wolf series, \"\"Conviction\"\", where she was promised more to do. Diane Neal had previously guest starred on \"\"Law & Order: Special Victims Unit\"\" in season three before being cast as Cabot's replacement, Casey Novak, in season five. Neal remained with the show through the end of season nine, after which she was replaced by Michaela McManus. March returned to the show in the tenth season (after McManus' departure from the cast) when Neal Baer proposed Cabot receive a character arc to revitalize the second"} +{"qid": "test13", "pid": "14443647", "query": "cast of law & order special victim unit", "answer": "Richard Belzer", "passage": "\"Payback (Law & Order: Special Victims Unit)\"\nmarked the first appearance of Christopher Meloni and Mariska Hargitay, who auditioned for the show in 1999, in the iconic roles of Elliot Stabler and Olivia Benson. Richard Belzer and Dann Florek were known to the producers for their previous appearances in \"\"Law & Order\"\". Casting for the lead characters of \"\"Law & Order: Special Victims Unit\"\" occurred in spring 1999. Dick Wolf, along with officials from NBC and Studios USA were at the final auditions for the two leads at Rockefeller Center. The last round had been narrowed down to six finalists. For the female lead, Detective Olivia Benson,"} +{"qid": "test13", "pid": "1614706", "query": "cast of law & order special victim unit", "answer": "Richard Belzer", "passage": "\"Law & Order: Special Victims Unit\"\naudition for the role. Shortly after the cancellation of \"\"\"\", Richard Belzer heard that Benjamin Bratt had left \"\"Law & Order\"\". Belzer requested his manager to call Wolf and pitch the idea for Belzer's character from \"\"Homicide\"\", Detective John Munch, to become the new partner of Jerry Orbach's character, Detective Lennie Briscoe, since they had previously teamed in three \"\"Homicide\"\" crossovers. Wolf loved the idea, but had already cast Jesse L. Martin as Briscoe's new partner, Detective Ed Green. The idea was reconfigured, however, to have Munch on \"\"Law & Order: Special Victims Unit\"\" instead. Since the character of Munch"} +{"qid": "test13", "pid": "16203065", "query": "cast of law & order special victim unit", "answer": "Ice-T", "passage": "\"Law & Order: Special Victims Unit (season 14)\"\nmillion total viewers. This is the first season of \"\"SVU\"\" to have any kind of crossover with now-ended \"\"Law & Order\"\" spinoff \"\"\"\", with Kathryn Erbe guest starring in two episodes \"\"\"\" and \"\"Poisoned Motive\"\" as her \"\"LOCI\"\" character, Alexandra Eames, and Denis O'Hare guest starring in the episode \"\"Presumed Guilty\"\" as his \"\"LOCI\"\" character, . \"\"Law & Order: Special Victims Unit\"\" was renewed for a fourteenth season on May 9, 2012. Prior to the season fourteen renewal, cast members Ice-T (Detective Fin Tutuola) and Mariska Hargitay (Detective Olivia Benson) had already renewed their contracts through the fourteenth season. Ice-T"} +{"qid": "test13", "pid": "10139559", "query": "cast of law & order special victim unit", "answer": "Mariska Hargitay", "passage": "\"Law & Order: Special Victims Unit (season 6)\"\nthe show's second season. Law & Order: Special Victims Unit (season 6) The sixth season of the television series, \"\"\"\" premiered September 21, 2004 and ended May 24, 2005 on NBC. It aired on Tuesday nights at 10pm/9c. In January 2005, when the season was halfway through airing, Mariska Hargitay won the Golden Globe Award for Best Actress - Television Series Drama becoming the first regular cast member of any \"\"Law & Order\"\" series to win a Golden Globe. Emmy Ann Wooding, a long time assistant at Wolf Films, died in a car accident while the sixth season"} +{"qid": "test13", "pid": "10139547", "query": "cast of law & order special victim unit", "answer": "Mariska Hargitay", "passage": "\"Law & Order: Special Victims Unit (season 6)\"\nLaw & Order: Special Victims Unit (season 6) The sixth season of the television series, \"\"\"\" premiered September 21, 2004 and ended May 24, 2005 on NBC. It aired on Tuesday nights at 10pm/9c. In January 2005, when the season was halfway through airing, Mariska Hargitay won the Golden Globe Award for Best Actress - Television Series Drama becoming the first regular cast member of any \"\"Law & Order\"\" series to win a Golden Globe. Emmy Ann Wooding, a long time assistant at Wolf Films, died in a car accident while the sixth season was being filmed. The seventh episode"} +{"qid": "test13", "pid": "10281040", "query": "cast of law & order special victim unit", "answer": "Richard Belzer", "passage": "\"Chester Lake (Law & Order: Special Victims Unit)\"\ndesigned to phase out one of two longtime favorites in the cast, either Richard Belzer or Ice-T, and that this did nothing to endear him to the audience. Molly Willow of \"\"The Columbus Dispatch\"\" agreed that Lake took away time from Belzer's character, John Munch, and, on the announcement of Beach's departure, said that \"\"Munch is better anyway.\"\" Chester Lake (Law & Order: Special Victims Unit) Detective Chester Lake is a fictional character played by Adam Beach in the American crime drama television series \"\"\"\" on NBC. Lake is the first detective of Native American descent on a \"\"Law &"} +{"qid": "test13", "pid": "10903025", "query": "cast of law & order special victim unit", "answer": "Diane Neal", "passage": "\"Law & Order: Special Victims Unit (season 9)\"\nreally looking forward to the future.\"\" Adam Beach fully joined the cast as Detective Chester Lake, who had already appeared twice on the show. A plan announced by Neal Baer in February 2007 was to portray the detective as a special victim himself. This was fulfilled in the episode \"\"Fight\"\" which reveals that Lake was a foster child. However, days after Diane Neal's departure was announced, Adam Beach announced that he was departing the cast as well. \"\"I very much enjoyed my year on \"\"Law & Order: SVU\"\",\"\" Beach said. \"\"Now I'm looking forward to new adventures.\"\" Cynthia Nixon guest"} +{"qid": "test13", "pid": "5314493", "query": "cast of law & order special victim unit", "answer": "Christopher Meloni", "passage": "\"Law & Order (franchise)\"\nactors have also been frequently cast. Also as the result of sharing the same pool of New York-based television actors, the series' casts have had significant overlap with that of the former HBO series \"\"Oz\"\". This is perhaps most pronounced in \"\"Law & Order: Special Victims Unit\"\", whose cast has included three regularly credited actors (Christopher Meloni, BD Wong and Dean Winters), as well as two recurring actors (J. K. Simmons and Mike Doyle) who were also regularly credited actors on \"\"Oz\"\", also Kathryn Erbe from \"\"Oz\"\" starring in \"\"Law & Order: Criminal Intent\"\". Similarly, \"\"Law & Order: UK\"\" sees"} +{"qid": "test13", "pid": "1614703", "query": "cast of law & order special victim unit", "answer": "Mariska Hargitay", "passage": "\"Law & Order: Special Victims Unit\"\nShapovalova. Casting for the lead characters of \"\"Law & Order: Special Victims Unit\"\" occurred in the spring of 1999. Dick Wolf, along with officials from NBC and Studios USA were at the final auditions for the two leads at Rockefeller Center. The last round had been narrowed down to seven finalists. For the female lead, Detective Olivia Benson, actresses Samantha Mathis, Reiko Aylesworth, and Mariska Hargitay were being considered. For the male role, Detective Elliot Stabler, the finalists were Tim Matheson, John Slattery, Nick Chinlund, and Christopher Meloni. Hargitay and Meloni had auditioned in the final round together and, after"} +{"qid": "test1301", "pid": "8173755", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "rock band Urge Overkill", "passage": "\"Girl, You'll Be a Woman Soon\"\nQuentin Tarantino's 1994 film \"\"Pulp Fiction\"\". Re-issued as a single, this version achieved some chart success both domestically and internationally. Girl, You'll Be a Woman Soon \"\"Girl, You'll Be a Woman Soon\"\" is a song written by American musician Neil Diamond, whose recording of it on Bang Records reached number 10 on the US pop singles chart in 1967. The song enjoyed a second life when it appeared on the 1994 \"\"Pulp Fiction\"\" soundtrack, performed by rock band Urge Overkill. Other versions have been recorded by Cliff Richard (1968), Jackie Edwards (1968), the Biddu Orchestra (1978), and 16 Volt (1998)."} +{"qid": "test1301", "pid": "8173753", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "rock band Urge Overkill", "passage": "\"Girl, You'll Be a Woman Soon\"\nGirl, You'll Be a Woman Soon \"\"Girl, You'll Be a Woman Soon\"\" is a song written by American musician Neil Diamond, whose recording of it on Bang Records reached number 10 on the US pop singles chart in 1967. The song enjoyed a second life when it appeared on the 1994 \"\"Pulp Fiction\"\" soundtrack, performed by rock band Urge Overkill. Other versions have been recorded by Cliff Richard (1968), Jackie Edwards (1968), the Biddu Orchestra (1978), and 16 Volt (1998). The song first appeared on Diamond's album \"\"Just for You\"\". The mono and stereo versions of this song differ slightly."} +{"qid": "test1301", "pid": "648759", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "Urge Overkill", "passage": "\"Pulp Fiction\"\nlike rock and roll, even Morricone music. It sounds like rock and roll spaghetti Western music.\"\" Some of the songs were suggested to Tarantino by his friends Chuck Kelley and Laura Lovelace, who were credited as music consultants. Lovelace also appeared in the film as Laura, a waitress; she reprises the role in \"\"Jackie Brown\"\". The soundtrack album, \"\"Music from the Motion Picture Pulp Fiction\"\", was released along with the film in 1994. The album peaked on the \"\"Billboard\"\" 200 chart at number 21. The single, Urge Overkill's cover of the Neil Diamond song \"\"Girl, You'll Be a Woman Soon\"\","} +{"qid": "test1301", "pid": "1763452", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "Urge Overkill", "passage": "\"Urge Overkill\"\nUrge Overkill Urge Overkill is an alternative rock band, formed in Chicago, United States, consisting of Nathan Kaatrud, who took the stage name Nash Kato (vocals/guitar), and Eddie \"\"King\"\" Roeser (vocals/guitar/bass guitar). They are widely known for their song \"\"Sister Havana\"\" and their cover of Neil Diamond's \"\"Girl, You'll Be a Woman Soon\"\", which was notably used in Quentin Tarantino's \"\"Pulp Fiction\"\". Their first album since 1995, \"\"Rock & Roll Submarine\"\", was released in 2011. Kato and Roeser met at Northwestern University in 1985. They formed Urge Overkill (getting the name from a phrase in the lyrics of the Parliament"} +{"qid": "test1301", "pid": "1763459", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "Urge Overkill", "passage": "\"Urge Overkill\"\nthe release of the album. On October 8, 2011, Urge Overkill opened for Weezer at the Red Bull Riot Fest at the historic Congress Theater in Chicago. Urge Overkill Urge Overkill is an alternative rock band, formed in Chicago, United States, consisting of Nathan Kaatrud, who took the stage name Nash Kato (vocals/guitar), and Eddie \"\"King\"\" Roeser (vocals/guitar/bass guitar). They are widely known for their song \"\"Sister Havana\"\" and their cover of Neil Diamond's \"\"Girl, You'll Be a Woman Soon\"\", which was notably used in Quentin Tarantino's \"\"Pulp Fiction\"\". Their first album since 1995, \"\"Rock & Roll Submarine\"\", was released"} +{"qid": "test1301", "pid": "13153657", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "Urge Overkill", "passage": "Waterlaso\n\"\"What Have You Ever Done To Deserve Everything You've Ever Wanted\"\" making several 10 Best lists for that year. Currently living in Los Angeles, he's now working with Keith Krey (Drums), Nick Cullen (Guitar, Bass) and Padra Moinian (Synth). Waterlaso has most recently released \"\"Wild\"\" on Mountain Fighting for which they enlisted one of the most influential producers in indie music Mark Kramer to put the finishing touches on the record. He has worked with Galaxie 500, Ween and produced Urge Overkill who covered \"\"Girl You'll Be A Woman Soon\"\" for the Pulp Fiction soundtrack. Waterlaso has had music featured"} +{"qid": "test1301", "pid": "5597056", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "Urge Overkill", "passage": "\"Music from the Motion Picture Pulp Fiction\"\nas Vincent and Mia enter Jackrabbit Slim's. The soundtrack reached No. 21 on the Billboard 200, and at the time, went platinum (100,000 units) in Canada alone. By November 12, 1994, total sales of more than 1.6 million were reached and by 1996 over 2 million units had been sold. In 1995 the soundtrack reached No. 6 on the charts according to SoundScan. The soundtrack helped launch the band Urge Overkill, which covered Neil Diamond's \"\"Girl, You'll Be a Woman Soon\"\" (produced by Kramer) in 1993, into a mainstream market. Sony \"\"received a nice sum\"\" for \"\"Son of a Preacher"} +{"qid": "test1301", "pid": "20127031", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "Urge Overkill", "passage": "\"Stull (EP)\"\nFiction\"\". Upon re-issue, Urge Overkill's version of \"\"Girl, You'll Be a Woman Soon\"\" charted at number 59 on the \"\"Billboard\"\" Hot 100. The \"\"Stull\"\" EP received largely positive reviews from critics, with Stephen Thomas Erlewine of AllMusic and Johan Kugelberg of \"\"Spin\"\" both complimenting the record. \"\"Stull\"\" contains two cover songs, the first of which is \"\"Girl, You'll Be a Woman Soon\"\", which was originally penned by Neil Diamond. According to the band's bassist and vocalist Eddie \"\"King\"\" Roeser, the group's decision to record the cover was \"\"spur-of-the-moment\"\" Two years after the song was issued on \"\"Stull\"\", it was re-released"} +{"qid": "test1301", "pid": "20127030", "query": "who sang you'll be a woman soon in pulp fiction", "answer": "rock band Urge Overkill", "passage": "\"Stull (EP)\"\nStull (EP) Stull is the second extended play by the alternative rock band Urge Overkill. It was released in 1992 and would be the band's final major release on independent label Touch and Go Records. The EP's title and cover are direct references to Stull Cemetery, located just west of Lawrence, Kansas. Since the 1970s, urban legends have been spread that the cemetery is one of the seven portals to Hell. \"\"Stull\"\" also includes a cover of Neil Diamond's song \"\"Girl, You'll Be a Woman Soon\"\", which would later be re-released on the soundtrack to Quentin Tarantino's 1994 film \"\"Pulp"} +{"qid": "test1302", "pid": "4130811", "query": "where does a roadrunner live in the desert", "answer": "mountainous shrubland", "passage": "Roadrunner\nand generally prefer sprinting to flying, though it will fly to escape predators. During flight, the short, rounded wings reveal a white crescent in the primary feathers. The roadrunner has a slow and descending dove-like \"\"coo\"\". It also makes a rapid, vocalized clattering sound with its beak. Roadrunners inhabit the deserts of the southwestern United States, Mexico, and Central America. They live in arid lowland or mountainous shrubland, widely dispersed in dry open country with scattered brush. They are non-migratory, staying in their breeding area year-round. The greater roadrunner is not currently considered threatened in the US, but is habitat-limited."} +{"qid": "test1303", "pid": "4709532", "query": "who was the first president of the constituent assembly", "answer": "Dr. Rajendra Prasad", "passage": "\"Constituent Assembly of India\"\nthe Assembly approved the draft constitution on 26 November 1949. On 26 January 1950 the constitution took effect (commemorated as Republic Day), and the Constituent Assembly became the Provisional Parliament of India (continuing until after the first elections under the new constitution in 1952). Dr. Sachchidananda Sinha was the first chairman (temporary) of Constituent Assembly. Later Dr. Rajendra Prasad was elected as the president and Its vice-president was Harendra Coomar Mookerjee, a Christian from Bengal and former vice-chancellor of Calcutta University. Also chairing the assembly's Minorities Committee, Mookerjee was appointed governor of West Bengal after India became a republic. Jurist"} +{"qid": "test1303", "pid": "16600402", "query": "who was the first president of the constituent assembly", "answer": "Dr. Rajendra Prasad", "passage": "\"Sachchidananda Sinha\"\nHe was Deputy President of the Assembly in 1921. He also held the office of the President in the Bihar and Orissa Legislative Council. He was appointed Executive Councillor and Finance Member of the Government of Bihar and Orissa, and, thus, was the first Indian who was ever appointed as a Finance Member of a Province. Later, he also was a member of the Bihar Legislative Assembly. In 1946, he was named the Interim President of the Constituent Assembly of India on 9 December 1946. He was replaced by Dr. Rajendra Prasad after indirect election on 11 December 1946. A"} +{"qid": "test1305", "pid": "15362916", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"Tyrese Gibson\"\non the Billboard 200, with first-week sales of 77,000 copies, making it Gibson's first number one album of his career. Gibson rose to prominence as an actor when he starred in John Singleton's \"\"Baby Boy\"\" in 2001. Gibson has a recurring role in two of the highest-grossing film series: \"\"The Fast and the Furious\"\" and \"\"Transformers\"\". Gibson plays Roman Pearce in \"\"The Fast and the Furious\"\" film series. He first played Pearce alongside his best friend Paul Walker in 2003's \"\"2 Fast 2 Furious\"\", his second collaboration with Singleton. He returned as Roman Pearce in \"\"Fast Five\"\" (2011), \"\"Fast &"} +{"qid": "test1305", "pid": "16014441", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"The Turbo Charged Prelude for 2 Fast 2 Furious\"\nThe Turbo Charged Prelude for 2 Fast 2 Furious The Turbo Charged Prelude for 2 Fast 2 Furious is a 2003 American short film directed by Philip G. Atwell, produced by Chris Palladino, and written by Keith Dinielli. It is the first short film in \"\"The Fast and the Furious\"\" franchise, and stars Paul Walker. This is a continuation to \"\"The Fast and the Furious\"\" (2001) and details the events prior to \"\"2 Fast 2 Furious\"\" (2003), where runaway fugitive Brian O'Conner leaves Los Angeles in order to evade police capture. It was released on June 3, 2003, and was"} +{"qid": "test1305", "pid": "11887893", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"Dominic Toretto\"\nDominic Toretto Dominic \"\"Dom\"\" Toretto is a fictional character and one of the three main protagonists of \"\"The Fast and the Furious\"\" franchise, the others being Brian O'Conner and Sean Boswell. He is portrayed by Vin Diesel and was created by screenwriter Gary Scott Thompson. Dom is introduced in the first film of the series \"\"The Fast and the Furious\"\" (2001). He later appears in \"\"Fast & Furious\"\" (2009), \"\"Fast Five\"\" (2011), \"\"Fast & Furious 6\"\" (2013), \"\"Furious 7\"\" (2015), and \"\"The Fate of the Furious\"\" (2017), as well as the short film, \"\"Los Bandoleros\"\" (2009) and a cameo appearance"} +{"qid": "test1305", "pid": "14469932", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"More Fast and Furious\"\nMore Fast and Furious More Fast and Furious: Music from and Inspired by the Motion Picture The Fast and the Furious is the second of two soundtracks for the film \"\"The Fast and the Furious\"\". It was originally released on December 18, 2001, by Island Records. In contrast to the hip hop-oriented first soundtrack, this album contains alternative metal and nu metal songs, as well as selected tracks from the film score composed by BT. The following songs are featured in the film or its promotional material but not on any of its soundtrack albums: The album was criticized by"} +{"qid": "test1305", "pid": "1840299", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"The Fast and the Furious (2001 film)\"\nWhen Mia tells him that it's not going to be that simple, Brian tells her that he's got time. This ending was released in the collection bundle DVD version. The film's score was composed by music producer BT, mixing electronica with hip-hop and industrial influences. Two soundtracks were released for the film. The first one features mostly hip-hop and rap music. The second one, titled \"\"More Fast and Furious\"\", features alternative metal, post-grunge and nu metal songs, as well as select tracks from BT's score. \"\"The Fast and the Furious\"\" was released on June 22, 2001 in North America and"} +{"qid": "test1305", "pid": "14469933", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"More Fast and Furious\"\nlisteners for its use of copy-protection software, which rendered it unplayable not only on computers with CD-ROM drives, but also on regular CD players and other CD-based devices. More Fast and Furious More Fast and Furious: Music from and Inspired by the Motion Picture The Fast and the Furious is the second of two soundtracks for the film \"\"The Fast and the Furious\"\". It was originally released on December 18, 2001, by Island Records. In contrast to the hip hop-oriented first soundtrack, this album contains alternative metal and nu metal songs, as well as selected tracks from the film score"} +{"qid": "test1305", "pid": "1840283", "query": "when did first fast and furious come out", "answer": "2001", "passage": "\"The Fast and the Furious (2001 film)\"\nThe Fast and the Furious (2001 film) The Fast and the Furious is a 2001 action film directed by Rob Cohen, produced by Neal H. Moritz, and written by Gary Scott Thompson and David Ayer. It is the first installment in \"\"The Fast and the Furious\"\" franchise. The film follows Brian O'Conner (Paul Walker), an undercover cop tasked with discovering the identities and stopping a group of unknown automobile hijackers led by Dominic Toretto (Vin Diesel). The film also stars Michelle Rodriguez, Jordana Brewster, Rick Yune, Chad Lindberg, Johnny Strong, and Ted Levine. Development for \"\"The Fast and the Furious\"\""} +{"qid": "test1307", "pid": "17043701", "query": "when do mr schuester and emma get together", "answer": "the fourth season", "passage": "\"I Do (Glee)\"\nI Do (Glee) \"\"I Do\"\" is the fourteenth episode of the fourth season of the American musical television series \"\"Glee\"\", and the eightieth episode overall. Written and directed by co-creators Ian Brennan and Brad Falchuk, respectively, it aired on Fox in the United States on February 14, 2013, and features the events surrounding the long-anticipated wedding of Will Schuester and Emma Pillsbury. Rachel Berry (Lea Michele), Kurt Hummel (Chris Colfer), Santana Lopez (Naya Rivera), Quinn Fabray (Dianna Agron), Mercedes Jones (Amber Riley), and Mike Chang (Harry Shum Jr.) return to Lima to attend the wedding of Will Schuester (Matthew Morrison)"} +{"qid": "test1307", "pid": "17043708", "query": "when do mr schuester and emma get together", "answer": "the fourth season", "passage": "\"I Do (Glee)\"\nEllie Goulding's \"\"Anything Could Happen\"\" performed by Benoist, McHale and Artist. I Do (Glee) \"\"I Do\"\" is the fourteenth episode of the fourth season of the American musical television series \"\"Glee\"\", and the eightieth episode overall. Written and directed by co-creators Ian Brennan and Brad Falchuk, respectively, it aired on Fox in the United States on February 14, 2013, and features the events surrounding the long-anticipated wedding of Will Schuester and Emma Pillsbury. Rachel Berry (Lea Michele), Kurt Hummel (Chris Colfer), Santana Lopez (Naya Rivera), Quinn Fabray (Dianna Agron), Mercedes Jones (Amber Riley), and Mike Chang (Harry Shum Jr.) return"} +{"qid": "test1309", "pid": "17758577", "query": "where was the u.s.s maine when it exploded in 1898", "answer": "Havana Harbor", "passage": "\"Cuba–Spain relations\"\nPoet José Martí who died in May 1895 at the Battle of Dos Ríos. The war lasted until 1898 when the United States deployed forces to the island. That same year, American naval ship, USS Maine (ACR-1) exploded and sank in the Havana Harbor and resulted in the United States blaming the incident on Spain. This resulted in the Spanish–American War which began in April 1898 until August 1898. At the end of the war, the United States came out as the victors in the war and obtained Cuba as a possession and it resulted in the defeat and collapse"} +{"qid": "test1309", "pid": "13248629", "query": "where was the u.s.s maine when it exploded in 1898", "answer": "Havana Harbor", "passage": "\"Derby-Hall Bandstand\"\nimages; Town Hall and the U.S. Post Office. Old-timers may remember when the site of Town Hall East used to be the Lyric Theatre, where generations of Oyster Bay residents fell in love with the movies. Three cannons surround the bandstand, each with a unique history. The cannon facing Town Hall has on its base a tablet, cast from metal recovered from the wreckage of the USS Maine, which was destroyed in Havana Harbor February 15, 1898. Two hundred and sixty six men lost their lives when more than live tons of powder charges exploded completely destroying the forward third"} +{"qid": "test1309", "pid": "12152736", "query": "where was the u.s.s maine when it exploded in 1898", "answer": "Havana Harbor", "passage": "\"Havana Harbor\"\ntheir safety could not be assured in the state of affairs at that time. On February 15, 1898 the \"\"Maine\"\" exploded and sank in the harbor. It became a major rallying call for the Spanish–American War, and it caused the US to finally intercede on Cuba's behalf. In 1910 the wreck was removed from the harbor as it was posing a hazard to navigation. It was sunk in deep water in the Gulf of Mexico with proper military ceremonies. On March 4, 1960, the harbor was the scene of a deadly explosion when the French freighter \"\"La Coubre\"\", carrying 76"} +{"qid": "test1309", "pid": "4164344", "query": "where was the u.s.s maine when it exploded in 1898", "answer": "Havana Harbor", "passage": "\"Puerto Rican Campaign\"\ncommercial commodity which the United States lacked: sugar. On February 15, 1898 the USS Maine exploded and sunk in Havana Harbor, Cuba. According to the Navy's leading weapons expert, Philip Alger, the explosion was due to a coal fire igniting a reserve magazine of six tons of gunpowder, much of which was already degrading due to the humid climate. However, the United States forwarded an ultimatum to Spain to withdraw from Cuba following the sinking of the \"\"Maine\"\". In response, Spain broke off diplomatic relations with the United States, and on April 23, 1898 Spain declared war. On April 25,"} +{"qid": "test131", "pid": "853919", "query": "who played stumpy in the movie rio bravo", "answer": "Walter Brennan", "passage": "\"Rio Bravo (film)\"\na gun Dude used to be. Chance's friend Pat Wheeler (Ward Bond) and his wagon train of supplies stop in town, with a young gunslinger, Colorado Ryan (Ricky Nelson), riding guard. Inside the jail, Stumpy (Walter Brennan), Chance's game-legged deputy, keeps watch over the jail and Joe, who knows that Stumpy holds an old grudge against Joe's wealthy and powerful brother. Joe warns his jailers that Nathan Burdette will not like how his brother is being treated. A mysterious woman nicknamed Feathers (Angie Dickinson) is in the saloon, playing poker. In the meantime, Dude and Chance patrol the town. Hotel"} +{"qid": "test131", "pid": "2672739", "query": "who played stumpy in the movie rio bravo", "answer": "Walter Brennan", "passage": "\"Walter Brennan\"\nat his ranch in Moorpark in Ventura. He died of emphysema at the age of 80 in Oxnard, California. His remains were interred at San Fernando Mission Cemetery in Los Angeles. Film historians and critics have long regarded Brennan as one of the finest character actors in motion picture history. While the roles he was adept at playing were diverse, he is probably best remembered for his portrayals in Western movies, such as Judge Roy Bean in \"\"The Westerner\"\", trail hand Nadine Groot in \"\"Red River\"\", and Deputy Stumpy in \"\"Rio Bravo\"\". He was the first actor to win three"} +{"qid": "test131", "pid": "853916", "query": "who played stumpy in the movie rio bravo", "answer": "Walter Brennan", "passage": "\"Rio Bravo (film)\"\nRio Bravo (film) Rio Bravo is a 1959 American Western film produced and directed by Howard Hawks and starring John Wayne, Dean Martin, Ricky Nelson, Angie Dickinson, Walter Brennan, and Ward Bond. Written by Jules Furthman and Leigh Brackett, based on the short story \"\"Rio Bravo\"\" by B. H. McCampbell, the film is about the sheriff of the town of Rio Bravo, Texas, who arrests the brother of a powerful local rancher to help his drunken deputy/friend. With the help of a cripple and a young gunfighter, they hold off the rancher's gang. \"\"Rio Bravo\"\" was filmed on location at"} +{"qid": "test131", "pid": "853937", "query": "who played stumpy in the movie rio bravo", "answer": "Walter Brennan", "passage": "\"Rio Bravo (film)\"\nof \"\"Rio Bravo\"\", on both occasions under a different title. Both of these remakes were directed by Hawks, both starred John Wayne, and in each case, the script was written by Leigh Brackett. All involve lawmen working against an entrenched criminal element, partially by \"\"holing up\"\" in their jailhouses. Rio Bravo (film) Rio Bravo is a 1959 American Western film produced and directed by Howard Hawks and starring John Wayne, Dean Martin, Ricky Nelson, Angie Dickinson, Walter Brennan, and Ward Bond. Written by Jules Furthman and Leigh Brackett, based on the short story \"\"Rio Bravo\"\" by B. H. McCampbell, the"} +{"qid": "test1310", "pid": "6501689", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "\"Anant Chaturdashi\"\nAnant Chaturdashi Anant Chaturdashi is a festival observed and celebrated by Jains and Hindus. Chaturdashi is the 14th day of the lunar fortnight. In the normal course, Anant Chaturdashi falls 10 days after Ganesh Chaturthi. This is an important day in the Jain calendar of festivities. Digambara Jains observe Paryushana in the last 10 days of the bhado month, Anant Chaturdashi (also known as Anant Chaudas) is the last day of Paryushana. Kshamavani, the day the Jains ask for forgiveness for mistakes they have made intentionally or otherwise, is observed one day after Anant Chaturdashi. This is the day when"} +{"qid": "test1310", "pid": "6501698", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "\"Anant Chaturdashi\"\nvery much, but all their alms were spent on each other only. The donkey was cruelty and anger. Finally, the elephant was Kaundinya's pride. Anant Chaturdashi Anant Chaturdashi is a festival observed and celebrated by Jains and Hindus. Chaturdashi is the 14th day of the lunar fortnight. In the normal course, Anant Chaturdashi falls 10 days after Ganesh Chaturthi. This is an important day in the Jain calendar of festivities. Digambara Jains observe Paryushana in the last 10 days of the bhado month, Anant Chaturdashi (also known as Anant Chaudas) is the last day of Paryushana. Kshamavani, the day the"} +{"qid": "test1310", "pid": "3614066", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "Dhar\ncommunity bhajan singing at the village chaupals in the night with the accompaniment of harmonium (peti) mridang, tabala, dholak-manjire, mandal, zanch, kundi, thali, payli and dhak is the most common amusement. Vasant Pnchmi, Maha Shivaratri, Holi, Ramnavmi, Raksha-Bandhan, Nag-Panchmi, Janmashtami, Ganesh Chaturthi, Anant Chaturdashi, Sarva Pitri Amavsya, dusshera, Deepawali, Dol Gyaras, Hanuman Jayanti, etc., are celebrated with great religious zeal and enthusiasm by the Hindus Shradha Paksha (fortnight) is celebrated from poornima of Bhadra to amavasya Kunwar. Popular festivals of Muslims include muharram, Id, Miladunabi, etc., which they celebrate with their traditional gaiety. Christians celebrate Christmas and Good Friday and"} +{"qid": "test1310", "pid": "12487143", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "Ganesha\n(January/February).\"\" An annual festival honours Ganesha for ten days, starting on Ganesha Chaturthi, which typically falls in late August or early September. The festival begins with people bringing in clay idols of Ganesha, symbolising the god's visit. The festival culminates on the day of Ananta Chaturdashi, when the idols (\"\"murtis\"\") are immersed in the most convenient body of water. Some families have a tradition of immersion on the 2nd, 3rd, 5th, or 7th day. In 1893, Lokmanya Tilak transformed this annual Ganesha festival from private family celebrations into a grand public event. He did so \"\"to bridge the gap between"} +{"qid": "test1310", "pid": "14935464", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "\"Lalbaugcha Raja\"\nLalbaugcha Raja Lal Bagcha Raja (Marathi: लालबागचा राजा, meaning: The King of Lalbaug) is the most famous Sarvajanik Ganapati kept at Lalbaug, a prominent locality in Mumbai during the Ganesh Chaturthi festival. The idol is kept for public display for 11 days; thereafter it is immersed on the auspicious day of Anant Chaturdashi. It is believed that this idol of Lord Ganesha is Navsacha Ganpati (Marathi: नवसाचा गणपती) (which means the \"\"one who fulfills all wishes\"\") and hence over 1.5 million people visit this Ganesh Pandal daily during the 10-day Ganesha festival. In 2018, the Lalbaugcha Raja Ganpati entered 84"} +{"qid": "test1310", "pid": "4183687", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "\"Narayan Rao\"\nthat \"\"the guiding spirits behind the conspiracy were Anandibai, the disgruntled wife of Raghunath and Tulaji Pawar, a servant. He [Tulaji] was the main link between the smarting couple in the palace and the clamoring sepoys outside\"\". During the Ganesh Festival of 1773 (the actual date was 30 August 1773, the last day of Ganesh Festival i.e. Anant Chaturdashi), several Gardi guards, led by their captain, Sumer Singh Gardi, entered the palace and started creating a commotion. They intended to release Raghunathrao. Raghunathrao and his wife Anandibai, who were opposed to Narayanrao, had promised the Gardis that they would mediate"} +{"qid": "test1310", "pid": "14935470", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "\"Lalbaugcha Raja\"\nget a glimpse of Lalbaugcha Raja Ganesha idol from some distance without going onto the stage. This line is also popular: It takes around 5–8 hours and sometimes up to 12–14 hours to get darshan in this line, especially on weekends. Lalbaugcha Raja Lal Bagcha Raja (Marathi: लालबागचा राजा, meaning: The King of Lalbaug) is the most famous Sarvajanik Ganapati kept at Lalbaug, a prominent locality in Mumbai during the Ganesh Chaturthi festival. The idol is kept for public display for 11 days; thereafter it is immersed on the auspicious day of Anant Chaturdashi. It is believed that this idol"} +{"qid": "test1310", "pid": "15072193", "query": "in the honour of which god is anant chaturdashi celebrated", "answer": "Ganesh", "passage": "\"Anantasaayi Vishnu Temple\"\nto Vishnu are celebrated here. Most important is Ananta Chaturdashi falling on Bhadrapada. Anantasaayi Vishnu Temple The Anantasaayi Vishnu temple is located in Sambalpur. It is famous for the black chlorite image of resting Vishnu. The temple was built in early sixteenth century by the Chauhan king, Balaram Dev. The main temple is of \"\"Rekha deula\"\". Several images of Ganesha, Garuda and Avatars of Narayana are depicted in the temple architecture. It is said that the queen brought this image of Narayana in dowry and the king built temple in honour of the deity. It is situated within two kilometres"} +{"qid": "test1311", "pid": "65374", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Geography of Costa Rica\"\nGeography of Costa Rica Costa Rica is located on the Central American Isthmus, surrounding the point 10° north of the equator and 84° west of the prime meridian. It borders both the Caribbean Sea (to the east) and the North Pacific Ocean (to the west), with a total of 1,290 km of coastline (212 km on the Caribbean coast and 1,016 km on the Pacific). Costa Rica shares a border with Nicaragua to the north (313 km long border) and with Panama to the south (348 km long border). The area of Costa Rica is 51,100 km² of which 51,060"} +{"qid": "test1311", "pid": "18911910", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Honduras–Nicaragua border\"\nHonduras–Nicaragua border The Honduras–Nicaragua border is the 352 km long international boundary between Honduras and Nicaragua, linking the Gulf of Fonseca (Pacific Ocean) to the Caribbean Sea coast, which separates southern Honduras from northern Nicaragua. The Coco River forms part of the east border. It passes between the following departments, from west to east: Honduras and Nicaragua were part of, respectively, Central American Federation and the United Provinces of Central America, between 1823 and 1838, when the unions of countries fell apart and both nations gained their independence and define the border. In 1937, the issuance of a stamp from"} +{"qid": "test1311", "pid": "283245", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"History of Nicaragua\"\nthe social security system led to the 2018 Nicaraguan protests to which the government responded with violence and harsh repression. General: History of Nicaragua Nicaragua is the third least densely populated nation in Central America, with a demographic similar in size to its smaller neighbors. It is located about midway between Mexico and Colombia, bordered by Honduras to the north and Costa Rica to the south. Nicaragua ranges from the Caribbean Sea on the nation's east coast, and the Pacific Ocean bordering the west. Nicaragua also possesses a series of islands and cays located in the Caribbean Sea. Nicaragua's name"} +{"qid": "test1311", "pid": "283191", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"History of Nicaragua\"\nHistory of Nicaragua Nicaragua is the third least densely populated nation in Central America, with a demographic similar in size to its smaller neighbors. It is located about midway between Mexico and Colombia, bordered by Honduras to the north and Costa Rica to the south. Nicaragua ranges from the Caribbean Sea on the nation's east coast, and the Pacific Ocean bordering the west. Nicaragua also possesses a series of islands and cays located in the Caribbean Sea. Nicaragua's name is derived from Nicarao, the name of the Nahuatl-speaking tribe which inhabited the shores of Lake Nicaragua before the Spanish conquest"} +{"qid": "test1311", "pid": "174205", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Geography of Honduras\"\nGeography of Honduras Honduras is a country in Central America. Honduras borders the Caribbean Sea and the North Pacific Ocean. Guatemala lies to the west, Nicaragua south east and El Salvador to the south west. Honduras is the second largest Central American republic, with a total area of . Honduras has a Caribbean coastline extending from the mouth of the Río Motagua in the west to the mouth of the Río Coco in the east, at Cape Gracias a Dios. The southeastern side of the triangle is a land border with Nicaragua. It follows the Río Coco near the Caribbean"} +{"qid": "test1311", "pid": "20222710", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Spanish conquest of Nicaragua\"\nits two largest lakes. The country is bordered to the north by Honduras, and to the south by Costa Rica; it is bordered to the west by the Pacific Ocean and to the east by the Caribbean Sea. Nicaragua is divided into three broad regions, the Pacific Lowlands in the west, the Central Highlands, and the Caribbean Lowlands in the east. The Pacific lowlands are largely a coastal plain extending approximately inland from the Pacific Ocean. A chain of volcanoes extends from the Gulf of Fonseca southeast towards Lake Nicaragua; many of them are active. The volcanoes lie along the"} +{"qid": "test1311", "pid": "314668", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Costa Rica", "passage": "\"Geography of Panama\"\nvia Caribbean Sea with Pacific Ocean. Central Panama has the unusual distinction of having the sun rise over the Pacific and set over the Atlantic. Geography of Panama Panama is a country located in Central America, bordering both the Caribbean Sea and the Pacific Ocean, between Colombia and Costa Rica. Panama is located on the narrow and low Isthmus of Panama. This S-shaped isthmus is situated between 7° and 10° north latitude and 77° and 83° west longitude. Panama encompasses approximately 77,082 square kilometers (29,762 sq mi), is 772 kilometers (480 mi) in length, and is between 60 and 177"} +{"qid": "test1311", "pid": "283246", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Geography of Nicaragua\"\nGeography of Nicaragua Nicaragua (officially the Republic of Nicaragua ) is a country in Central America, bordering both the Caribbean Sea and the North Pacific Ocean, between Costa Rica and Honduras. Nicaragua is the largest country in Central America. Nicaragua covers a total area of 130,370 square kilometers (119,990 square kilometers of which is land area) and contains a variety of climates and terrains. The country's physical geography divides it into three major zones: the Pacific lowlands, the wetter, cooler central highlands, and the Caribbean lowlands. The natural regions are the following: The Pacific lowlands extend about 75 kilometers inland"} +{"qid": "test1311", "pid": "5010226", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Costa Rica", "passage": "\"Volcán Barú\"\nYou can, however, see both the Pacific Ocean and Caribbean Sea from the summit on a clear day. Volcán Barú The Volcán Barú (also Volcán de Chiriquí) is an active stratovolcano and the tallest mountain in Panama, at high. It lies about 35 km off the border of Costa Rica. It is also the twelfth highest peak in Central America. Due to its height and the narrowness of the isthmus of Panama, it is possible (though relatively rare) to see both the Pacific Ocean and Caribbean Sea from Volcán Barú's peak on a clear day. The small town of Volcán"} +{"qid": "test1311", "pid": "18911750", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Costa Rica–Nicaragua border\"\nCosta Rica–Nicaragua border The Costa Rica–Nicaragua border is the line of 309 km long, east-west direction, separating the north of Costa Rica's territory of Nicaragua, extending between the Caribbean Sea (E) and the Pacific Ocean (W) coasts. It passes almost directly on Lake Nicaragua and the River San Juan. The border separates, from east to west: These two nations have integrated the United Provinces of Central America from 1826 until 1838, when this Federation was broken. From there, the two nations gained independence, coming into existence this border. In 2010 the Costa Rican Deputy Foreign Minister Carlos Roverssi, complained that"} +{"qid": "test1311", "pid": "120508", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Geography of El Salvador\"\nGeography of El Salvador El Salvador borders the North Pacific Ocean to the south and southwest, with Guatemala to the north-northwest and Honduras to the north-northeast. In the southeast, the Golfo de Fonseca separates it from Nicaragua. El Salvador is the smallest Central American country and is the only one without a coastline on the Caribbean sea. El Salvador, along with the rest of Central America, is one of the most seismologically active regions on earth, situated atop three of the large tectonic plates that constitute the Earth's surface. The motion of these plates causes the area's earthquake and volcanic"} +{"qid": "test1311", "pid": "76276", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Central America\"\nCentral America Central America (, , \"\"Centroamérica\"\" ) is located on the southern tip of North America, or is sometimes defined as a subcontinent of the Americas , bordered by Mexico to the north, Colombia to the southeast, the Caribbean Sea to the east, and the Pacific Ocean to the west and south. Central America consists of seven countries: Belize, Costa Rica, El Salvador, Guatemala, Honduras, Nicaragua, and Panama. The combined population of Central America has been estimated to be 41,739,000 (2009 estimate) and 42,688,190 (2012 estimate). Central America is a part of the Mesoamerican biodiversity hotspot, which extends from"} +{"qid": "test1311", "pid": "3553721", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Gulf of Fonseca\"\nGulf of Fonseca The Gulf of Fonseca (; ), part of the Pacific Ocean, is a gulf on Central America, bordering El Salvador, Honduras, and Nicaragua. Fonseca Bay was discovered for Europeans in 1522 by Gil González de Ávila, and named by him after his patron, Archbishop Juan Fonseca, the implacable enemy of Columbus. In 1849, E. G. Squier negotiated a treaty for the United States to build a canal across Honduras from the Caribbean Sea to the Gulf. Frederick Chatfield, the British commander in Central America, was afraid the American presence in Honduras would destabilize the British Mosquito Coast,"} +{"qid": "test1311", "pid": "283190", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "Nicaragua\nas well as Román González. Recently, football has gained popularity. The Dennis Martínez National Stadium has served as a venue for both baseball and football. The first ever national football-only stadium in Managua, the Nicaragua National Football Stadium, was completed in 2011. Nicaragua Nicaragua (; ), officially the Republic of Nicaragua (), is the largest country in the Central American isthmus, bordered by Honduras to the northwest, the Caribbean to the east, Costa Rica to the south, and the Pacific Ocean to the southwest. Managua is the country's capital and largest city and is also the third-largest city in Central"} +{"qid": "test1311", "pid": "5535080", "query": "which central american nations border the pacific ocean and the caribbean sea", "answer": "Nicaragua", "passage": "\"Matagalpa, Nicaragua\"\ndeclare the Cacaopera as National Heroes by the Congress of the Republic next month of September 2011. Matagalpa was an existing indigenous town when the first Spaniards came to this region by 1528 during an attempt to find a water passage to the \"\"Northern Sea\"\", the Caribbean. (Nicaragua's Spanish colonization originated from the direction of the Pacific Ocean, which was called the Southern Sea by the Spaniards. Matagalpa is located in the continental divide between the Pacific Ocean and the Caribbean Sea. Many stories are preserved from colonial times about the British-controlled Mosquito Coast, and the Spanish-colonized Pacific area. Gold"} +{"qid": "test1312", "pid": "17834736", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "complex sentence", "passage": "\"Sentence clause structure\"\nSentence clause structure In grammar, sentence clause structure commonly known as sentence composition is the classification of sentences based on the number and kind of clauses in their syntactic structure. Such division is an element of traditional grammar. A \"\"simple sentence\"\" consists of only one clause. A \"\"compound sentence\"\" consists of two or more independent clauses. A \"\"complex sentence\"\" has at least one independent clause plus at least one dependent clause. A set of words with no independent clause may be an \"\"incomplete sentence\"\", also called a \"\"sentence fragment\"\". A sentence consisting of at least one dependent clause and at"} +{"qid": "test1312", "pid": "3839398", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "complex sentence", "passage": "\"Dependent clause\"\nexample, \"\"When he was in New York\"\" is not a complete sentence; it needs to be completed by an independent clause, as in: or equivalently A \"\"complex sentence\"\" contains an independent clause and at least one dependent clause. A sentence with two or more independent clauses plus (one or more) dependent clauses is referred to as a \"\"compound-complex sentence\"\". (Every clause contains a subject and predicate). Here are some English examples: My sister cried \"\"because she scraped her knee\"\". (complex sentence) \"\"When they told me\"\" \"\"(that) I won the contest\"\", I cried, but I didn't faint. (compound-complex sentence) This sentence"} +{"qid": "test1312", "pid": "17834748", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "complex sentence", "passage": "\"Sentence clause structure\"\nview comma splices as a form of run-on sentence, others limit the term to independent clauses that are joined without punctuation. Sentence clause structure In grammar, sentence clause structure commonly known as sentence composition is the classification of sentences based on the number and kind of clauses in their syntactic structure. Such division is an element of traditional grammar. A \"\"simple sentence\"\" consists of only one clause. A \"\"compound sentence\"\" consists of two or more independent clauses. A \"\"complex sentence\"\" has at least one independent clause plus at least one dependent clause. A set of words with no independent clause"} +{"qid": "test1312", "pid": "17834742", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "complex sentence", "passage": "\"Sentence clause structure\"\nclause is a complex sentence. A sentence with two or more independent clauses plus one or more dependent clauses is called compound-complex or complex-compound. In addition to a subject and a verb, dependent clauses contain a subordinating conjunction or similar word. There are a large number of subordinating conjunctions in English. Some of these give the clause an adverbial function, specifying time, place, or manner. Such clauses are called adverbial clauses. This complex sentence contains an adverbial clause, \"\"When I stepped out into the bright sunlight from the darkness of the movie house\"\". The adverbial clause describes when the action"} +{"qid": "test1312", "pid": "17834741", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "A complex sentence", "passage": "\"Sentence clause structure\"\nexpressed. The coordinator \"\"and\"\" is used, and a comma is correctly used before the \"\"and.\"\"http://www.yourdictionary.com/ The use of a comma to separate two independent clauses without the addition of an appropriate conjunction is called a comma splice and is generally considered an error (when used in the English language). Example: A complex sentence has one or more dependent clauses (also called subordinate clauses). Since a dependent clause cannot stand on its own as a sentence, complex sentences must also have at least one independent clause. In short, a sentence with one or more dependent clauses and at least one independent"} +{"qid": "test1312", "pid": "3519601", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "complex sentence", "passage": "\"Cleft sentence\"\nin (1) and (2), the foci are in bold. The remaining portions of the cleft sentences in (1) and (2) are noun phrases that contain headless relative clauses. (NB: Tagalog does not have an overt copula.) This construction is also used for WH-questions in Tagalog, when the WH-word used in the question is either \"\"sino\"\" \"\"who\"\" or \"\"ano\"\" \"\"what\"\", as illustrated in (3) and (4). Cleft sentence A cleft sentence is a complex sentence (one having a main clause and a dependent clause) that has a meaning that could be expressed by a simple sentence. Clefts typically put a particular"} +{"qid": "test1312", "pid": "4586613", "query": "what kind of sentence contains an independent clause and a dependent clause", "answer": "complex sentence", "passage": "\"Irish syntax\"\nirregular verbs. The word order in an Irish subordinate clause is the same as in a main clause. The types of subordination discussed here are: complementation, relative clauses, and wh-questions (which are formed as a kind of relative clause in Irish). The subordinate clause is a part of the main clause in a purely syntactic complementation. In Irish it is introduced by \"\"that\"\" in the positive and \"\"that... not\"\" in the negative. Other examples of complex sentences using complementizers: A conditional clause gives the condition under which something will happen. In Irish there are two kinds of conditional clauses, depending"} +{"qid": "test1313", "pid": "3273086", "query": "what was the book wealth of nations about", "answer": "what builds nations' wealth", "passage": "\"The Wealth of Nations\"\nThe Wealth of Nations An Inquiry into the Nature and Causes of the Wealth of Nations, generally referred to by its shortened title The Wealth of Nations, is the \"\"magnum opus\"\" of the Scottish economist and moral philosopher Adam Smith. First published in 1776, the book offers one of the world's first collected descriptions of what builds nations' wealth, and is today a fundamental work in classical economics. By reflecting upon the economics at the beginning of the Industrial Revolution, the book touches upon such broad topics as the division of labour, productivity, and free markets. \"\"The Wealth of Nations\"\""} +{"qid": "test1314", "pid": "20056166", "query": "when will the flash season 4 be released", "answer": "October 10, 2017", "passage": "\"The Flash (season 4)\"\nThe Flash (season 4) The fourth season of the American television series \"\"The Flash\"\", which is based on the DC Comics character Barry Allen / Flash, premiered on The CW on October 10, 2017, and ran for 23 episodes until May 22, 2018. The season follows a crime scene investigator with superhuman speed who fights criminals, including others who have also gained superhuman abilities. It is set in the Arrowverse, sharing continuity with the other television series of the universe, and is a spin-off of \"\"Arrow\"\". The season is produced by Berlanti Productions, Warner Bros. Television, and DC Entertainment, with"} +{"qid": "test1314", "pid": "20056189", "query": "when will the flash season 4 be released", "answer": "October 10, 2017", "passage": "\"The Flash (season 4)\"\nDoviak gave the finale a B+, praising the light tone and character moments, while adding that \"\"None of this can make up for the long stretches of mediocrity this year, but at least it doesn’t leave me with a bad taste in my mouth.\"\" General references The Flash (season 4) The fourth season of the American television series \"\"The Flash\"\", which is based on the DC Comics character Barry Allen / Flash, premiered on The CW on October 10, 2017, and ran for 23 episodes until May 22, 2018. The season follows a crime scene investigator with superhuman speed who"} +{"qid": "test1316", "pid": "1820792", "query": "who does luke skywalker fall in love with", "answer": "Mara Jade", "passage": "\"Skywalker family\"\ndescendant of Luke Skywalker and is a Jedi master. He is the father of Cade Skywalker. The descendant of Anakin Skywalker, Luke Skywalker, Mara Jade Skywalker and Ben Skywalker, and the son of Kol Skywalker. He is a protagonist of the \"\"\"\" comic series. According to the comic book series from Dark Horse called \"\"\"\", which takes place 125 years after \"\"Return of the Jedi\"\", Cade Skywalker, son of Kol Skywalker and a direct descendant of Luke Skywalker, is the last surviving Skywalker of his time. It is shown that he has completely abandoned the Jedi way after an attack"} +{"qid": "test1316", "pid": "1820790", "query": "who does luke skywalker fall in love with", "answer": "Mara Jade", "passage": "\"Skywalker family\"\nKenobi's estranged brother. To explain subsequent references, \"\"Star Wars: Lone Wolf: A Tale of Obi-Wan and Luke\"\" introduces \"\"Owen Kenobi\"\", a personification of the bond Kenobi feels toward Owen Lars. In the Expanded Universe book \"\"Tatooine Ghost\"\", Shmi's granddaughter, Leia, is given Shmi's old journal, which describes Anakin's childhood. Leia learns, through Shmi's love for Anakin, to forgive her father for his role in the destruction of Alderaan and for torturing her aboard the Death Star, as depicted in \"\"A New Hope\"\". Luke Skywalker and Mara Jade Skywalker's son. Named after Obi-Wan \"\"Ben\"\" Kenobi, Jedi Knight. Former student of Jacen"} +{"qid": "test1316", "pid": "644676", "query": "who does luke skywalker fall in love with", "answer": "Mara Jade", "passage": "\"Luke Skywalker\"\nCilghal, Kirana Ti and others. He is forced to contend with the spirit of ancient Sith Lord Exar Kun, who lures one of his most powerful students, Kyp Durron, to the dark side. An older and wiser Luke Skywalker also appears in the \"\"\"\" and \"\"\"\" video games at the rank of Jedi Master. In \"\"Jedi Outcast\"\", Luke helps Kyle Katarn in his fight against Desann and Empire Reborn by driving off Desann and his Reborn forces from Valley of the Jedi. In the \"\"Hand of Thrawn Duology\"\", Luke, now a Jedi Master, works again with Mara Jade, who has"} +{"qid": "test1316", "pid": "644673", "query": "who does luke skywalker fall in love with", "answer": "Mara Jade", "passage": "\"Luke Skywalker\"\ntrying to do for six months before the start of the novel by finding old Jedi records and archives. In \"\"The Thrawn Trilogy\"\", Luke meets former Emperor's Hand Mara Jade, who is bound by Palpatine's disembodied voice that repeatedly commands \"\"You will kill Luke Skywalker\"\". Mara Jade is working with her boss, a fringe-of-the-galaxy smuggler named Talon Karrde, who also plays a crucial role in this era. Although she was ready to fulfill that order to stop the voice, circumstances force her to keep him alive long enough to have him help escape a mutual danger. Despite her threats, Luke"} +{"qid": "test1317", "pid": "5239877", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Dan Enright\"\nrevive his career as a host and producer: \"\"The Joker's Wild\"\". One of the original pilots of \"\"The Joker's Wild\"\" was produced in 1969 during Barry's collaboration with Mark Goodson and Bill Todman and was emceed by Allen Ludden. Although credited as \"\"A Jack Barry Production\"\", there had been speculation that ex-partner Enright was somehow involved with the show, and indeed Enright was credited as executive producer in the show's final year on CBS. Nonetheless, \"\"Joker\"\" proved to be a success. In 1975 it was canceled by CBS but reruns of \"\"Joker\"\" did so well on local Los Angeles and"} +{"qid": "test1317", "pid": "3643667", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"The Joker's Wild\"\ncandidates to host the original series when CBS was still not entirely sold on Jack Barry as host, due to his involvement in the quiz show scandals of the 1950s. However, Martindale already chose to host \"\"Gambit,\"\" another of the three game shows that premiered on the same day in 1972 on CBS (\"\"New Price\"\" also debuted that day). O'Donnell was an announcer on the series in question also. The theme music in these games was a remix of the 1977–86 theme. In 2003, a mobile game based on \"\"The Joker's Wild\"\" was released by Sony Pictures Digital Entertainment. In"} +{"qid": "test1317", "pid": "3643618", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"The Joker's Wild\"\nJohnny Jacobs, a longtime friend of host Jack Barry, was the original announcer of \"\"The Joker's Wild\"\". Jacobs served through most of its CBS run, with Johnny Gilbert and Roy Rowan filling in for Jacobs on occasion. When the series returned to first-run syndication in 1977, Jacobs, Gilbert, and Jay Stewart alternated the primary announcer position. Stewart became the exclusive announcer for \"\"The Joker's Wild\"\" (as well as for all Barry & Enright-produced game shows at the time) during the 1978–79 season; Bob Hilton and Art James were substitutes for Stewart for the 1980–81 season whenever he was unavailable. In"} +{"qid": "test1317", "pid": "3643613", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"The Joker's Wild\"\nTBS, with Snoop Dogg as host and co-executive producer with Michael Strahan. Jack Barry, who created the show and eventually used it to revive his partnership with longtime producer Dan Enright, hosted all versions of the show up until his death in May 1984. Barry was not the original choice to host, due to his past involvement in the 1950s quiz show scandals. As a result, Allen Ludden hosted the first two pilots for CBS. Barry hosted the local KTLA series in 1971, but CBS was still hesitant to let him host the network run in 1972. Tom Kennedy, Wink"} +{"qid": "test1317", "pid": "4699045", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Jack Barry (game show host)\"\nKCOP, for two seasons, before moving back to KHJ on March 4, 1984. The new, syndicated \"\"Joker\"\" was a huge success, enough that it enabled Barry to reach back to his days as a children's program creator and host, launching in 1979 \"\"Joker! Joker!! Joker!!!\"\", a weekly kids' version of \"\"The Joker's Wild\"\" in which children could win savings bonds (their family members assisted them in playing the bonus rounds). The new \"\"Joker\"\" was so successful that Barry and Enright gambled on reviving a show whose reputation had been somewhat damaged by the ancient quiz show scandal. \"\"Tic-Tac-Dough\"\", with new"} +{"qid": "test1317", "pid": "2996932", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Marc Summers\"\nand \"\"The Price Is Right\"\" for helping him pursue a game-show career. Summers was a young page at CBS when \"\"The Price Is Right\"\" premiered with \"\"The Joker's Wild\"\" and \"\"Gambit\"\" in 1972, and he often asked advice of Barker, Jack Barry and Wink Martindale—the shows' respective hosts—about a hosting career. He claims it's the best possible education and training in the game show field, and it was during this time that Summers got his first on-air experience, as a fill-in announcer on \"\"The Joker's Wild\"\". Summers served as host of \"\"Drunk Double Dare\"\" during Drunk Day, an annual episode"} +{"qid": "test1317", "pid": "3643641", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"The Joker's Wild\"\nand won that as well, taking an additional $100,000 prize. In the 1979 tournament, Dillon advanced to the finals where he faced Eileen Jason, who had previously won over $55,000 in cash and prizes in her reign as champion. Jason defeated Dillon to end his two-year reign as tournament champion, winning the $250,000 prize. Immediately after the game (on-air) host Jack Barry offered Dillon a job as a writer for the show, it's unknown if he ever accepted it. In 1980, \"\"The Joker's Wild\"\" became the first television program to advertise that it was giving away a $1,000,000 prize. It"} +{"qid": "test1317", "pid": "4699041", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Jack Barry (game show host)\"\nshort-lived. In 1970, Barry produced a pilot with a similar concept to The Joker's Wild called \"\"The Honeymoon Game,\"\" hosted by Jim McKrell. After that failed to sell, Barry reworked the format and launched a local version of \"\"The Joker's Wild\"\" in 1971 on Los Angeles' KTLA, while early in that same year also selling \"\"The Reel Game\"\" to ABC. Barry also hosted this show, pitting three contestants in answering questions centered around vintage newsreel footage, for cash prizes, and the chance for a new car (which no contestants won during the run). The series ran weekly in prime-time for"} +{"qid": "test1317", "pid": "4699043", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Jack Barry (game show host)\"\neven brought Dan Enright back as \"\"The Joker's Wild\"\"'s executive producer toward the end of its first network run, mentioning Enright at the end of the final CBS installment. The two renewed their working partnership full-time in 1976, launching \"\"Break the Bank\"\", hosted by Tom Kennedy, on ABC's daytime lineup. When ABC cancelled the show despite decent ratings, Barry himself hosted and produced the show for weekly syndication during the 1976–77 season. In 1975, Jack Barry became the first client of what became the powerhouse Creative Artist Agency. In the fall of 1976, Barry sold reruns of \"\"The Joker's Wild's\"\""} +{"qid": "test1317", "pid": "2213658", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Bob Barker\"\nwas \"\"The Savers\"\" (the theme used on \"\"The Joker's Wild\"\", which has led some to believe that Cox or DUNDAS was an alias for Jack Barry or Dan Enright, since \"\"Joker\"\" used the theme in its original 1968 pilot). There is at least one (somewhat low-quality) clip of the pilot on the video sharing website YouTube. In 1980, Barker hosted a series called \"\"That's My Line\"\" for Goodson-Todman. The series was not a game show, but rather a program along the lines of \"\"Real People\"\" and \"\"That's Incredible!\"\" The show's second season in 1981 focused more on unusual stunts, and"} +{"qid": "test1317", "pid": "4699042", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Jack Barry (game show host)\"\n16 weeks. \"\"The Joker's Wild\"\" made its national debut on CBS in 1972 (debuting on the same day as \"\"The Price Is Right and Gambit\"\") with Barry hosting and packaging the show (under the Jack Barry Productions name) until CBS cancelled it in 1975. Jack Barry Productions, meanwhile, also packaged \"\"Hollywood's Talking\"\", Geoff Edwards' first game show, and \"\"Blank Check\"\", hosted by veteran quiz and game host and announcer Art James. Even before \"\"Joker\"\", however, Barry had displayed no loss of concurrent hosting and production skill, doing both with \"\"The Reel Game\"\" and a 1970s revival of \"\"Juvenile Jury\"\". Barry"} +{"qid": "test1317", "pid": "4699040", "query": "who was the original host of jokers wild", "answer": "Jack Barry", "passage": "\"Jack Barry (game show host)\"\nIn December 1968, Barry embarked on an idea that would launch his national comeback, and eventually become the most successful game show project of his career. He developed and produced two pilots for \"\"The Joker's Wild\"\" emceed by Allen Ludden. CBS held off on picking up the series at first. Finally, in 1969 Barry became a host again, for ABC's \"\"The Generation Gap\"\", replacing original host Dennis Wholey for the final weeks of its series. In the summer of 1969, Barry entered into a limited association with Goodson-Todman Productions to collaborate on new game show creations but the partnership was"} +{"qid": "test1319", "pid": "10018950", "query": "five tools of security management to overcome computer crime", "answer": "implementation", "passage": "\"Internet police\"\nis an organization responsible for the management of security incidents in .ee computer networks. Its task is to assist Estonian Internet users in the implementation of preventive measures in order to reduce possible damage from security incidents and to help them in responding to security threats. CERT Estonia deals with security incidents that occur in Estonian networks, are started there, or have been notified of by citizens or institutions either in Estonia or abroad. \"\"Cyber Crime Investigation Cell\"\" is a wing of Mumbai Police, India, to deal with computer crimes, and to enforce provisions of India's Information Technology Law, namely,"} +{"qid": "test132", "pid": "1380563", "query": "where is the protien made in the cell", "answer": "cell nucleus", "passage": "\"Lipid bilayer\"\nLipid bilayer The lipid bilayer (or phospholipid bilayer) is a thin polar membrane made of two layers of lipid molecules. These membranes are flat sheets that form a continuous barrier around all cells. The cell membranes of almost all organisms and many viruses are made of a lipid bilayer, as are the nuclear membrane surrounding the cell nucleus, and other membranes surrounding sub-cellular structures. The lipid bilayer is the barrier that keeps ions, proteins and other molecules where they are needed and prevents them from diffusing into areas where they should not be. Lipid bilayers are ideally suited to this"} +{"qid": "test1320", "pid": "1918958", "query": "who sang what are we doing in love", "answer": "Dottie West", "passage": "\"Kenny Rogers\"\non tour for several years, as well as appearing on several network television specials which showcased them. Their hits together \"\"Every Time Two Fools Collide\"\" (#1), \"\"Anyone Who Isn't Me Tonight\"\" (#2), \"\"What Are We Doin' in Love\"\" (#1), \"\"All I Ever Need Is You\"\" (#1) and \"\"Till I Can Make It On My Own\"\" (#3) all became Country standards. Of West, Rogers stated in a 1995 TNN interview: \"\"She, more than anybody else I ever worked with, sang with such emotion that you actually believed what she sang. A lot of people sing words, Dottie West sang emotions.\"\" In"} +{"qid": "test1321", "pid": "1592261", "query": "at what age are you no longer a toddler", "answer": "36 months", "passage": "Toddler\npreviously experienced. The toddler developmental timeline shows what an average toddler can do at what age from 12 months onward. Times vary greatly from child to child. It is common for some toddlers to master certain skills such as walking well before other skills, like talking. Even close siblings can vary greatly in the time taken to achieve each key milestone. Toddler A toddler is a child 12 to 36 months old. The toddler years are a time of great cognitive, emotional and social development. The word is derived from \"\"to toddle\"\", which means to walk unsteadily, like a child"} +{"qid": "test1321", "pid": "1592253", "query": "at what age are you no longer a toddler", "answer": "36 months", "passage": "Toddler\nToddler A toddler is a child 12 to 36 months old. The toddler years are a time of great cognitive, emotional and social development. The word is derived from \"\"to toddle\"\", which means to walk unsteadily, like a child of this age. Toddler development can be broken down into a number of interrelated areas. There is reasonable consensus about what these areas may include: Although it is useful to chart defined periods of development, it is also necessary to recognize that development exists on a continuum, with considerable individual differences between children. There is a wide range of what may"} +{"qid": "test1322", "pid": "5624371", "query": "how many episodes are there in ordeal by innocence", "answer": "three", "passage": "\"Ordeal by Innocence\"\nbrother of Jacko, who commits suicide after financial ruin. Kirsten is shown being arrested at the end, unlike in the original novel in which her arrest was not explicitly included in the actual text. BBC One broadcast a three-episode series based on \"\"Ordeal by Innocence\"\" in 2018. It was filmed in Inverkip, Scotland, and stars Bill Nighy as Leo Argyll (changed from \"\"Argyle\"\" in the novel), Crystal Clarke as Tina Argyll, Luke Treadaway as Arthur Calgary, Anna Chancellor as Rachel Argyll, Ella Purnell as Hester Argyll, Eleanor Tomlinson as Mary Argyll, Morven Christie as Kirsten Lindstrom, Matthew Goode as Philip"} +{"qid": "test1322", "pid": "20632550", "query": "how many episodes are there in ordeal by innocence", "answer": "three", "passage": "\"Ordeal by Innocence (TV series)\"\ndue to the sexual assault allegations against Westwick. Its broadcast over the Eastertide of 2018 has split the series into three episodes across three weeks which has lead to some dubbing it \"\"ordeal by iPlayer\"\". After the drama had completed filming, the actor playing the part of Mickey Argyll (Ed Westwick) was accused of sexual assault by two women. In the wake of other sexual assault scandals in 2017, the BBC decided to delay the broadcast pending an investigation into the allegations against Westwick. When two more women came forward to allege impropriety by Westwick, the BBC auditioned a new"} +{"qid": "test1322", "pid": "20632556", "query": "how many episodes are there in ordeal by innocence", "answer": "three", "passage": "\"Ordeal by Innocence (TV series)\"\nevery other dark, delicious thing that the writer Sarah Phelps did to the story\"\". The \"\"Radio Times\"\" reported that viewer feedback was positive although some had commented that the programme was confusing due to its forwards and backwards time jumps. Others criticised its soundtrack music and accused the male characters of looking too similar to each other. Ordeal by Innocence (TV series) Ordeal by Innocence is a three-part BBC drama that was first broadcast during April 2018. It is based on the Agatha Christie novel of the same name and is the third English-language filmed version to be broadcast. The"} +{"qid": "test1322", "pid": "20632539", "query": "how many episodes are there in ordeal by innocence", "answer": "three", "passage": "\"Ordeal by Innocence (TV series)\"\nOrdeal by Innocence (TV series) Ordeal by Innocence is a three-part BBC drama that was first broadcast during April 2018. It is based on the Agatha Christie novel of the same name and is the third English-language filmed version to be broadcast. The drama stars Morven Christie, Bill Nighy, Anna Chancellor, Alice Eve and Eleanor Tomlinson amongst others. The show was originally intended to be broadcast as part of the BBC Christmas programming but was held back due to original cast member Ed Westwick being accused of sexual assault. His scenes were later reshot with Christian Cooke taking his place."} +{"qid": "test1322", "pid": "20632554", "query": "how many episodes are there in ordeal by innocence", "answer": "three", "passage": "\"Ordeal by Innocence (TV series)\"\n\"\"The Sunday Telegraph\"\", Ed Cumming described the series as \"\"taut writing\"\" but questioned the necessity for three episodes. He also noted that \"\"everyone was so unlikeable\"\". \"\"The Times\"\" gave the first episode four stars out of five and noted that in spite of the production having to have 35 scenes re-shot with new actor Christian Cooke, the production was seamless. Similarly, the second episode was awarded four stars out of five. The reviewer lamented that the series had been \"\"eked out over three weeks instead of a fortnight\"\" but had described the episode as \"\"rattling along rather nicely\"\". Special mention"} +{"qid": "test1323", "pid": "13447366", "query": "who played the hobbits in the lord of the rings", "answer": "Ian Holm", "passage": "\"Frodo Baggins\"\nBilbo in the same company's adaptation of \"\"The Hobbit\"\". In the 1981 BBC radio serial of \"\"The Lord of the Rings\"\", Frodo is played by Ian Holm, who later played Bilbo in Peter Jackson's film adaptation of \"\"The Lord of the Rings\"\". In the 1993 television miniseries \"\"Hobitit\"\" by Finnish broadcaster Yle, Frodo is played by Taneli Mäkelä. In \"\"The Lord of the Rings\"\" film trilogy (2001-2003) directed by Peter Jackson, Frodo is played by American actor Elijah Wood. Dan Timmons writes in the Mythopoeic Society's \"\"Tolkien on Film: Essays on Peter Jackson’s The Lord of the Rings\"\" (Mythopoeic Press,"} +{"qid": "test1323", "pid": "2460999", "query": "who played the hobbits in the lord of the rings", "answer": "Ian Holm", "passage": "\"The Lord of the Rings (film series)\"\nSeptember 2009, the dispute was settled. The success of the \"\"Lord of the Rings\"\" trilogy led to Jackson directing a trilogy of prequels based on Tolkien's children's book \"\"The Hobbit\"\". The films, which were released between 2012 and 2014, used much of the cast and crew of \"\"The Lord of the Rings\"\", including Ian McKellen, Andy Serkis, Hugo Weaving, Elijah Wood, Ian Holm (as older Bilbo), Christopher Lee, Cate Blanchett and Orlando Bloom who reprised their roles. Although the \"\"Hobbit\"\" films were even more commercially successful than \"\"The Lord of the Rings\"\", they received mixed reviews from critics. Numerous video"} +{"qid": "test1323", "pid": "9859332", "query": "who played the hobbits in the lord of the rings", "answer": "Elijah Wood", "passage": "\"Special effects of The Lord of the Rings film series\"\nat about 4 ft 6 in (137 cm), and Men and Elves are average human height, about 5 to 6 ft (150 to 180 cm). However, the films used two scale sets instead of three by casting taller than average actors to play Dwarves, then combining Dwarves and Hobbits into one size scale. For example, John Rhys-Davies, who played Gimli, is taller than Elijah Wood, who played Frodo. Thus in the ending shot of the Council of Elrond scene when all nine members of the Fellowship of the Ring are standing together, Rhys-Davies and the four Hobbit actors were filmed"} +{"qid": "test1323", "pid": "1485898", "query": "who played the hobbits in the lord of the rings", "answer": "Elijah Wood", "passage": "\"The Lord of the Rings: The Fellowship of the Ring\"\nFellowship of the Ring\"\" makes extensive use of digital, practical and make-up special effects throughout. One notable illusion used in almost every scene involved setting a proper scale so that the characters all appear to be the correct height. For example, Elijah Wood is tall in real life, but his character Frodo Baggins is barely four feet in height. A variety of techniques were used to depict the hobbits and Gimli the Dwarf as being of diminutive stature. Fortunately, John-Rhys Davies – who played Gimli – happens to be the correct height in proportion to the hobbit actors, so did"} +{"qid": "test1324", "pid": "16116381", "query": "what does fancy dress mean in the uk", "answer": "costumes", "passage": "\"Fancy Dress Festival\"\nof seven. One of A. K. Yamoah’s brothers, A. W. Yamoah, moved to Abasraba, a suburb of Winneba, in 1933. A merchant by trade, he imported masks and brass instruments and founded a Fancy Dress group called Red Cross or Number Four. This group was composed mainly of the town elite, including high school and college youth; prospective members had to pass entrance exams on English language and Ghanaian cultural studies. Adult members of means paid monthly dues, which funded the importing of costumes and Halloween masks from abroad at year's end. Children below eight years of age and poor"} +{"qid": "test1324", "pid": "16058319", "query": "what does fancy dress mean in the uk", "answer": "costumes", "passage": "\"Jokers' Masquerade\"\nJokers' Masquerade Jokers' Masquerade is a prominent online retailer selling fancy dress costumes and accessories. Founded in 2001, the company was originally an online joke shop run by owners Mark and Sandra Lewis. Following the lack of availability of fancy dress in the local area, they decided to add fancy dress costumes to the site in an attempt to see if there was demand for online fancy dress. Jokers' Masquerade currently hold two Guinness World Records. It attained both in association with The Swansea University Students' Union, based in Wales. In 2009 both worked together to break the world record"} +{"qid": "test1324", "pid": "16058320", "query": "what does fancy dress mean in the uk", "answer": "costumes", "passage": "\"Jokers' Masquerade\"\nfor the largest gathering of Smurfs. In 2011 they again joined forces to break the largest gathering of skeletons world record. Jokers' Masquerade Jokers' Masquerade is a prominent online retailer selling fancy dress costumes and accessories. Founded in 2001, the company was originally an online joke shop run by owners Mark and Sandra Lewis. Following the lack of availability of fancy dress in the local area, they decided to add fancy dress costumes to the site in an attempt to see if there was demand for online fancy dress. Jokers' Masquerade currently hold two Guinness World Records. It attained both"} +{"qid": "test1325", "pid": "18436675", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nThe Bastard Executioner The Bastard Executioner is an American historical fiction drama television series, created by Kurt Sutter and aired on FX from September 15, 2015, to November 17, 2015. On November 18, 2015, Sutter announced that FX had cancelled the series after one season. Set in early 14th century Wales, Wilkin Brattle, a Welsh knight in the army of King Edward I of England is betrayed by an Englishman who has a lust for power and who leaves him for dead. When he is near death, a child apparition implores Brattle to lay down his sword and follow the"} +{"qid": "test1325", "pid": "18436684", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nMetacritic, the show holds a rating of 55. The Bastard Executioner The Bastard Executioner is an American historical fiction drama television series, created by Kurt Sutter and aired on FX from September 15, 2015, to November 17, 2015. On November 18, 2015, Sutter announced that FX had cancelled the series after one season. Set in early 14th century Wales, Wilkin Brattle, a Welsh knight in the army of King Edward I of England is betrayed by an Englishman who has a lust for power and who leaves him for dead. When he is near death, a child apparition implores Brattle"} +{"qid": "test1325", "pid": "9245490", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Richard Brake\"\n\"\"Set Fire to the Stars\"\", which premiered at the Edinburgh International Film Festival on June 23, 2014. In 2015, he appeared on the FX historical fiction drama \"\"The Bastard Executioner\"\" as Baron Edwin Pryce. Due to scheduling conflicts with \"\"The Bastard Executioner\"\", Brake was unable to reprise as The Night King for the sixth season of \"\"Game of Thrones\"\" and was replaced by Vladimir Furdik, one of the shows main stunt performers. Brake guest-starred on an episode of \"\"Grimm\"\" as a hunter with a penchant for severing a foot from his victims. He co-starred with Melissa McCarthy and Jason Statham"} +{"qid": "test1325", "pid": "18436683", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nfor a 10-episode series for fall launch. On November 18, 2015, FX and Sutter announced that Sutter had cancelled the series. Reviews for \"\"The Bastard Executioner\"\" were polarized, with praise being directed toward the action sequences, writing and acting, and criticism toward the pacing, limited development, and excessive violence. It holds a rating of 49% (rotten) on the review aggregator website Rotten Tomatoes based on 53 critics. The website's consensus reads: \"\"Kurt Sutter's \"\"The Bastard Executioner\"\" doesn't want for dark thrills, but it unfortunately has more enthusiasm for brutality and gore than necessary narrative focus.\"\" Out of 37 reviews in"} +{"qid": "test1325", "pid": "18436678", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nhas been led astray. The plot partially involves the fallout from the Madog ap Llywelyn Welsh rebellion. \"\"The Bastard Executioner\"\", the first pilot for Imagine TV with FX Network, stemmed from an idea by Grazer: \"\"I find the executioner to be an incredibly fascinating and provocative character\"\", he said. \"\"He deals with the highest order and the lowest order in the culture. It's about as morally complex a profession as you can imagine\"\". Grazer pitched the idea to 20th Television chairmen Dana Walden and Gary Newman. The two, along with Fox21 president Bert Salke, suggested Sutter as writer. After meeting"} +{"qid": "test1325", "pid": "18436682", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nCastle and Fforest Fawr. Filming began on 23, 2015. The show's producers spent 10 months considering locations in Wales with the help of the Welsh Government’s Wales Screen service, which encourages film and television productions to use locations, crews, and facilities throughout Wales. The project was one of the first major productions to move into Pinewood Studios' new facility in Cardiff. The set for the series, in the form of a medieval village with a small castle, was constructed to the west of Cardiff at Dragon International Film Studios in Llanilid. On May 22, 2015,\"\"The Bastard Executioner\"\" was picked up"} +{"qid": "test1325", "pid": "20137574", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Carly Wray\"\ncancellation, writing episodes of Kurt Sutter's \"\"The Bastard Executioner\"\" for FX, and the David Fincher series \"\"Mindhunter\"\", a Netflix drama based on the works of legendary FBI profiler John Douglas. She then became a co-producer on the third and final season of \"\"The Leftovers\"\" and a producer on the second season of \"\"Westworld\"\" on HBO. On May 4, 2017, HBO announced that Wray is one of four writers working on a potential pilot for a \"\"Game of Thrones\"\" spin-off. In addition to Wray, Max Borenstein, Jane Goldman, and Brian Helgeland are also working on potential pilots. Wray has been working"} +{"qid": "test1325", "pid": "18376550", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Timothy V. Murphy\"\nTimothy V. Murphy Timothy Vincent Murphy (born 5 April 1960 in Tralee, County Kerry) is an Irish actor based in Los Angeles. His notable 2015 roles have been on \"\"The Bastard Executioner\"\", \"\"Grace and Frankie\"\", and \"\"True Detective\"\". He played 'Galen O'Shea' for three seasons on the Kurt Sutter FX series, \"\"Sons of Anarchy.\"\" For his portrayal, Murphy won the 2013 BuzzFocus Readers Choice Award for \"\"Best Villain\"\". He appeared for two seasons on \"\"NCIS: LA\"\" as Russian super-villain ‘Sidorov’ and a season on the CBS series, \"\"Criminal Minds,\"\" as Paget Brewster’s nemesis/love interest ‘Ian Doyle’. He has guest starred"} +{"qid": "test1325", "pid": "7273955", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Alec Newman\"\nreach 68,000 blind veterans unaware of the assistance the charity can provide. This was in conjunction with his portrayal of Mal Walker, a blind veteran of Afghanistan in the feature film \"\"Greyhawk\"\", directed by Guy Pitt. In August 2013, he began work on Season 2 of DirecTV's series \"\"Rogue\"\". The series aired in 2014. Other American television appearances include the 2013 NBC series \"\"Dracula\"\", and a recurring role in \"\"\"\". He subsequently appeared in the BBC America series \"\"The Last Kingdom\"\". This was followed with a series role in Kurt Sutter's short lived FX show \"\"The Bastard Executioner\"\", shot in"} +{"qid": "test1325", "pid": "18436680", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nnot writing it on period speech just because there's no actual recording of what that vernacular sounded like with intonation and everything.\"\" The series was announced in December 2013. Sutter began writing the scripts once the last episode of \"\"Sons of Anarchy\"\" had wrapped up in late 2014. Katey Sagal is \"\"definitely...involved\"\" in the series. Paris Barclay, who directed 15 episodes of \"\"Sons of Anarchy\"\", directed the pilot and was executive producer. Charles Murray, a writer/co-executive producer of the last two seasons of \"\"Sons of Anarchy\"\", was a writer/co-executive producer on the series. Nichole Beattie was another \"\"Sons of Anarchy\"\""} +{"qid": "test1325", "pid": "18678026", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Ross O'Hennessy\"\nappearance at the Wrexham Comic Con event in November 2015. Ross O'Hennessy Ross O'Hennessy (born 1974) is a Welsh actor. He is best known for his role of Lord of Bones in Game of Thrones\"\", \"\"Da Vinci's Demons\"\", The Musketeers, and playing the blood thirsty Role of Sir Locke in Kurt Sutter's new international television series \"\"The Bastard Executioner\"\". In 2015, he replaced Edward Dogliani as Lord of Bones in Season 5 of the HBO series \"\"Game of Thrones\"\". Since appearing in \"\"Game of Thrones\"\" Ross O'Hennessy has been cast to play the vicious character of Carnage Cliff in the"} +{"qid": "test1325", "pid": "18678021", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Ross O'Hennessy\"\nRoss O'Hennessy Ross O'Hennessy (born 1974) is a Welsh actor. He is best known for his role of Lord of Bones in Game of Thrones\"\", \"\"Da Vinci's Demons\"\", The Musketeers, and playing the blood thirsty Role of Sir Locke in Kurt Sutter's new international television series \"\"The Bastard Executioner\"\". In 2015, he replaced Edward Dogliani as Lord of Bones in Season 5 of the HBO series \"\"Game of Thrones\"\". Since appearing in \"\"Game of Thrones\"\" Ross O'Hennessy has been cast to play the vicious character of Carnage Cliff in the feature film adaption of the comic book Accident Man. O'Hennessy"} +{"qid": "test1325", "pid": "18436677", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\ntroops. Revenge, however, is not complete, as the raiders want all the soldiers who slaughtered their kin to die by the sword. Brattle assumes the identity of a journeyman punisher (executioner), injected into the plot just moments before the Baron's death. Brattle, aka Gawain Maddox, enters Castle Ventris with the intent of identifying the remaining murderers so his fellow raiders can exact revenge. Castle intrigue traps Brattle in his new alias and disdainful profession. Brattle must lead this double life while trying to determine whether this new path is the one the apparition has chosen for him, or if he"} +{"qid": "test1325", "pid": "12538914", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Arthur Howe Holdsworth\"\nDevon (whose members Edmund Bastard, Edmund Pollexfen Bastard and John Bastard sat with him for Dartmouth) and others. Arthur Howe's Holdsworth's eldest son Arthur Bastard Eastabrook Holdsworth lived at Widdicombe House after the death of his father. Arthur Bastard Eastbrook Holdsworth's daughter Alice Mary married Edmund St. Aubyn at Dartmouth, Devon, in 1847; his daughter Georgina married in 1868 at Stokenham, Devon, Thomas Levett-Prinsep, eldest son of Thomas Levett-Prinsep JP of Croxall Hall, Derbyshire. They had one son. Arthur Howe Holdsworth Arthur Howe Holdsworth (1780–1860) of Mount Galpin in the parish of Townstal and of Widecombe in the parish of"} +{"qid": "test1325", "pid": "19559311", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Battle of the Bastards\"\nand mass to move around, and a person who's a normal size would have a very difficult time pulling that off\"\". \"\"Battle of the Bastards\"\" was directed by Miguel Sapochnik, who had directed the fifth-season episodes \"\"The Gift\"\" and \"\"Hardhome\"\". In an \"\"Entertainment Weekly\"\" interview before the episode aired, Sapochnik said he was brought on board by Benioff and Weiss after his previous-season success; \"\"Hardhome\"\" won several awards, including Primetime Creative Arts Emmy Awards. About how the episode should be shot, he said: \"\"Every battle on \"\"Thrones\"\" is unique. I think that's why Benioff and Weiss keep doing them. In"} +{"qid": "test1325", "pid": "16145542", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Colonial American bastardy laws\"\nand explained to the courtroom that if somehow they ended up pregnant as a result that the man would marry them, thus preventing the birth of a bastard child. A child being born out of wedlock automatically resulted in a trial to determine who the father was and who and how the bastard would be cared for. To catch fornicators, one had to either find the couple committing the act, or the couple had to immediately confess their sin. Someone finding a pair engaged in fornication was rare. Thus, many times court cases relied on confessions to bring about charges"} +{"qid": "test1325", "pid": "18436676", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\npath of a different man. Later in life, Wilkin lives as a married peasant farmer, awaiting the birth of a child. His new life of peace is shattered by the unbearable taxes assessed on the peasants by none other than \"\"Baron\"\" Erik Ventris, the man who had betrayed Wilkin. Pressured by his fellow villagers, Wilkin leads a raid on the Baron's tax collector, which leads Ventris to the revenge killing and burning of all the women and children in Brattle's village. Brattle's raiders seek battle with the Baron ending in the death of Ventris and the massacre of the Baron's"} +{"qid": "test1325", "pid": "15251366", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Ed Sheeran\"\nwhile he was in the country for a one-off performance. In May 2015, he appeared as himself and performed on a live episode of the NBC sitcom \"\"Undateable\"\". Later that year, while in Australia, he recorded scenes for the soap \"\"Home and Away\"\", as a character based on himself. After recording a cover version of Foy Vance's \"\"Make It Rain\"\" for \"\"Sons of Anarchy\"\", Sheeran was cast by creator Kurt Sutter to play Sir Cormac in the medieval drama \"\"The Bastard Executioner\"\" on FX. Sheeran also appeared as himself in the 2016 film \"\"Bridget Jones's Baby\"\" in a scene where"} +{"qid": "test1325", "pid": "18436681", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nalumna on the staff of writers. She has also written extensively for AMC's \"\"The Walking Dead\"\" and \"\"Rubicon\"\". The series was filmed in Wales, United Kingdom, and featured a mostly British cast. Barclay left for the UK on January 2 to work on casting and location matters. Sutter stayed in the US to finalize the script. He joined Barclay a few days later in the United Kingdom. The draft of the pilot script was sent to the studio executives at FX on the 7th of January. During mid-January Sutter and Barclay visited several possible shooting locations in Wales, including Caerphilly"} +{"qid": "test1325", "pid": "15936963", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Pinewood Group\"\nlargest and most prolific studio. Pinewood Studio Wales opened in north-east Cardiff in January 2015. Television series \"\"The Bastard Executioner\"\" and \"\"Sherlock\"\" have been shot there, with a remake of \"\"The Crow\"\" anticipated to be filmed there in the future. Shepperton Studios is often described as the home for independent filmmaking in the UK but it has also been used for the production of a number of blockbuster films including \"\"\"\", which used eight of the fifteen stages at Shepperton. Teddington Studios was a specialist television studio complex on the banks of the River Thames. It had eight television studios"} +{"qid": "test1325", "pid": "19927088", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Pinewood Studio Wales\"\nPinewood Studio Wales Pinewood Studio Wales is a British film and television studio operated by the Pinewood Group in Cardiff, Wales. The studio was announced in February 2014, after negotiations between Pinewood Group and the Welsh government resulted in an agreement for Pinewood to rent the site of the former Wentloog Environmental Centre in the suburb of St Mellons in north-east Cardiff. Construction began in the second half of 2014, and the studio opened in January 2015. The historical television series \"\"The Bastard Executioner\"\" was filmed on Stage 1 of the complex, and in other locations in Wales, and released"} +{"qid": "test1325", "pid": "2291613", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "Executioner\nFrance and many other European countries, far from being shunned, British executioners such as William Marwood, James Berry, Albert Pierrepoint, and Harry Allen were widely known and respected by the public. In Japan, executioners have been held in contempt as part of the burakumin class (today executions in Japan are not carried out by professional executioners, but by prison guards). In \"\"Memories of Silk and Straw\"\", by Junichi Saga, one of the families surveyed in the Japanese village of Tsuchiura is that of an executioner family (\"\"The Last Executioner\"\", p. 54). This family does suffer social isolation, even though the"} +{"qid": "test1325", "pid": "10736537", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Kurt Sutter\"\n\"\"Southpaw\"\", and Eminem was eyed for the lead role. The film was dropped by Dreamworks in 2011, and was later picked up by MGM and Columbia Pictures. Antoine Fuqua directed the film, and Jake Gyllenhaal replaced Eminem in the lead. Rachel McAdams, Rita Ora, 50 Cent, and Forest Whitaker also appeared in the film. \"\"Southpaw\"\" was released on July 24, 2015, by The Weinstein Company. In 2014, it was announced Sutter had begun developing \"\"The Bastard Executioner\"\", a new series for FX, The series was ordered to pilot on December 12, 2014. Katey Sagal, Lee Jones, and Stephen Moyer signed"} +{"qid": "test1325", "pid": "7192480", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Paris Barclay\"\nHalle Berry, and \"\"Manhattan\"\", a Tommy Schlamme/Sam Shaw period drama for WGN America; and Glee’s emotional flashback episode \"\"2009\"\" – the first half of the series finale, \"\"a perfect tribute to the origins of Glee, the original cast, and Cory Monteith.\"\" In 2015, Paris continued his role as Executive Producer/Director on FX's \"\"The Bastard Executioner\"\". The show starred Katey Sagal, Stephen Moyer, and Matthew Rhys. At the end of the year, he was enlisted by FOX to direct an episode of \"\"Empire\"\", the Television Critics Association program of the year. In 2016, Paris joined the Shondaland family by directing an"} +{"qid": "test1325", "pid": "18436679", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"The Bastard Executioner\"\nwith Grazer and taking some time to contemplate the idea, Sutter built a whole world around it, and the pitch was taken to FX. Sutter explained the writing process and obstacles for the show on his vlog: \"\"It's sort of fun of jumping into completely different world, completely different time, completely different vernacular, it's a toughest thing for me right now with the pilot is the story is all broken on my board here but you know trying to find different rhythms of speech and vernacular\"\". Sutter held his fans hostage who were eagerly waiting for his new project. \"\"I'm"} +{"qid": "test1325", "pid": "10718581", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "Llanharan\nLlanharn colliery closed in 1962, the area westward along the Bridgend Road became the commercial heart of a relatively flourishing mining village that survived even the depression years. Since the 1970s the residents of Llanharan have become more reliant on commuting to work as local employment reduces. Local amenities have also closed over the years including Llanharan's cinema, railway station and library. In 2015 a new source of work came with the building of a set for the filming of the medieval drama The Bastard Executioner. In 1997 Llanharan rugby ground was used in the box office smash film Up"} +{"qid": "test1325", "pid": "6977697", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Bhai Mani Singh\"\nthe officers. Thus no money could be collected or paid to the government and Bhai Mani Singh was ordered to be executed. Bhai Mani Singh was taken to Lahore in chains. When Bhai Mani Singh could not pay the fine the dues he had agreed to pay the Mughals (to legally hold the event) he was ordered to convert to Islam. Refusing to give up his beliefs he was ordered death by dismemberment. When the executioner started to begin with his wrists, Bhai Mani Singh sincerely reminded the executioner of the sentence, reminding the executioner of his punishment and to"} +{"qid": "test1325", "pid": "7308336", "query": "how many seasons of the bastard executioner are there", "answer": "one", "passage": "\"Sam Hall (song)\"\nsix sound recordings made. Comic Minstrel W.G. Ross adapted one version probably in the 1840s, and changed the name from “Jack Hall” to “Sam Hall”. The song also appears to have been adapted to fit the region in which it was sung; some versions refer to Sam Hall being hanged at Tyburn, some at Cootehill. Also it is unclear what, if any, uncouth language was original to the song. Various versions have Sam Hall call his executioners “muckers”, “fuckers”, “buggers”, “muggers”, \"\"critters\"\" or “bastards”. To add to the confusion, the song is associated with the song “Captain Kidd”, aka “Robert"} +{"qid": "test1327", "pid": "18513575", "query": "who does the democratic republic of congo trade with", "answer": "Kenya", "passage": "\"Democratic Republic of the Congo–Kenya relations\"\n90 million people. The DRC, is a net importer of Kenyan agricultural and manufactured goods. As DRC is largely landlocked it uses the Mombasa Port to ease access to international markets. Democratic Republic of the Congo–Kenya relations Democratic Republic of the Congo–Kenya relations are bilateral relations between Kenya and Democratic Republic of the Congo. The DRC is a strategic partner of Kenya in many areas, particularly trade and security. Kenya maintains an embassy in Kinshasa and the Democratic Republic of the Congo in Nairobi. President Kabila of the DRC has visited Kenya on multiple occasions. On one of the occasions"} +{"qid": "test1327", "pid": "18513572", "query": "who does the democratic republic of congo trade with", "answer": "Kenya", "passage": "\"Democratic Republic of the Congo–Kenya relations\"\nDemocratic Republic of the Congo–Kenya relations Democratic Republic of the Congo–Kenya relations are bilateral relations between Kenya and Democratic Republic of the Congo. The DRC is a strategic partner of Kenya in many areas, particularly trade and security. Kenya maintains an embassy in Kinshasa and the Democratic Republic of the Congo in Nairobi. President Kabila of the DRC has visited Kenya on multiple occasions. On one of the occasions he met with Former President Kibaki to discuss issues pertaining gold smuggled from mines in Kivu, Eastern DRC. The gold smuggling business has been thought to fund the rebels in DRC."} +{"qid": "test1327", "pid": "12797578", "query": "who does the democratic republic of congo trade with", "answer": "Belgium", "passage": "\"Greeks in the Democratic Republic of the Congo\"\nGreeks in the Democratic Republic of the Congo The first Greek communities in the Democratic Republic of the Congo were established prior to the colonization of the country by Belgium. The Greek presence in the Congos reached a peak in the 1950s when many Greeks fled Egypt as their properties were seized by the nationalist government there. The Greek communities organized their own schools and churches and Greeks were active in trade, fishing, transport, coffee growing and the music industry. Also, a small group of Greek Jews emigrated to the DR. Congo. In the early to mid 20th century nearly"} +{"qid": "test1327", "pid": "2839186", "query": "who does the democratic republic of congo trade with", "answer": "Belgium", "passage": "\"Banana, Democratic Republic of the Congo\"\ncentury, largely as part of the slave trade. Henry Morton Stanley arrived at Banana in 1879 at the start of an exploratory expedition funded by Léopold II of Belgium. Following the Conference of Berlin (1884–85) the European powers recognized Léopold's claim to the Congo basin, and in a ceremony at Banana in 1885 the king announced the establishment of the Congo Free State, headed by himself, beginning the period of European colonization. Banana was the main Belgian naval base of the Congo until independence in 1960. Banana, Democratic Republic of the Congo Banana is a small seaport in the Bas-Congo"} +{"qid": "test1327", "pid": "6716287", "query": "who does the democratic republic of congo trade with", "answer": "Zambia", "passage": "\"Mansa, Zambia\"\n\"\"chitemene\"\" (a form of subsistence farming) has degraded the surrounding woodlands appreciably. Nevertheless, as a commercial hub serving the whole province, the town is home to a daily market, banks, warehouses, a number of large stores and dealers, and a Shoprite supermarket. Although only 50 km east from the Democratic Republic of the Congo, and cut off from the Copperbelt by the Congo Pedicle, Mansa does not have direct trade links to that country. Wars and frequent conflict in the Congo over the past fifty years have frequently hindered the development of Mansa. The Luapula which forms the border is"} +{"qid": "test1327", "pid": "17953155", "query": "who does the democratic republic of congo trade with", "answer": "South Africa", "passage": "\"Andrew Sparkes\"\nAndrew Sparkes Andrew Sparkes CMG (born 4 July 1959) is a former British diplomat who was ambassador to the Democratic Republic of Congo, Kosovo and Nepal. Andrew James Sparkes was educated at King Edward's School, Birmingham, Manchester Grammar School and Trinity Hall, Cambridge. He taught English in Japan 1981–82, then joined the Diplomatic Service. In his early career he served at Ankara, Bangkok, Jakarta and on secondment to the then Department of Trade and Industry. Sparkes was Deputy High Commissioner to South Africa (and Consul-General for Johannesburg and Pretoria) 2001–04, Ambassador to the Democratic Republic of Congo 2004–07, and Ambassador"} +{"qid": "test1327", "pid": "17668192", "query": "who does the democratic republic of congo trade with", "answer": "Belgium", "passage": "\"Democratic Republic of the Congo–Republic of the Congo relations\"\nDemocratic Republic of the Congo–Republic of the Congo relations The Republic of the Congo–Democratic Republic of the Congo relations or the Brazzaville-Kinshasa relations refers to the bilateral relations of the Republic of the Congo (Brazzaville) and the Democratic Republic of the Congo (Kinshasa). The two nations share the basin of the Congo River after which both nations are named. The two nations' capital cities, Brazzaville and Kinshasa, are the two closest capital cities on Earth after Rome and the Vatican City, facing each other on both sides of the Congo River. As francophone nations formerly ruled by Belgium and France,"} +{"qid": "test1328", "pid": "4811814", "query": "what was the purpose of the bantu education act", "answer": "enforcing racially separated educational facilities", "passage": "\"Bantu Education Act, 1953\"\nBantu Education Act, 1953 The Bantu Education Act, 1953 (Act No. 47 of 1953; later renamed the Black Education Act, 1953) was a South African segregation law which legalised several aspects of the apartheid system passed by the Apartheid regime which was really not on the side of the black community. Its major provision was enforcing racially separated educational facilities. Even universities were made \"\"tribal\"\", and all but three missionary schools chose to close down when the government no longer would help support their schools. Very few authorities continued using their own finances to support education for native Africans. In"} +{"qid": "test1332", "pid": "4120077", "query": "who gets first pick of fa cup games", "answer": "BBC", "passage": "\"Nicolás Medina\"\nteam. In an interview he stated that: \"\"\"\"The evidence suggests that Nicolas hasn't got it because the previous manager didn't pick him.\"\"\"\" Medina eventually left Sunderland having only played once for the first team; in an FA Cup tie against Bolton Wanderers (he was substituted in this game but the BBC described it as \"\"\"\"an impressive debut\"\"\"\"). He remains the most expensive Sunderland player to never play a first-team league game. Given that fact, he is recognized as one of Sunderland's worst transfers. Due to the issues getting playing time at Sunderland A.F.C., Medina went on loan to CD Leganes"} +{"qid": "test1332", "pid": "142455", "query": "who gets first pick of fa cup games", "answer": "BBC", "passage": "\"FA Cup\"\nnot continue. ITV lost the rights to the FA Cup beginning with the 2014–15 FA Cup, terrestrial rights will return to BBC Sport, with the final being shown on BBC One while BT Sport hold the pay TV rights. Under this deal, the BBC will show around the same number of games as ITV and still having the first pick for each round. Matches involving Welsh clubs are sometimes exclusively broadcast on Welsh language channel S4C, which is also available to view across the rest of the United Kingdom on satellite and cable television, and through the channel's website. A"} +{"qid": "test1332", "pid": "12042688", "query": "who gets first pick of fa cup games", "answer": "BBC", "passage": "\"1982–83 FA Cup\"\nAlbion v Norwich City (TVS & Anglia) All regions showed those two games FA Cup Semi-Finals \"\"BBC\"\" Arsenal v Manchester United \"\"ITV\"\" Brighton & Hove Albion v Sheffield Wednesday (All regions) FA Cup Final Brighton & Hove Albion v Manchester United. Both games showed live on BBC and ITV (All Regions) 1982–83 FA Cup The FA Cup 1982–83 was the 102nd season of the world's oldest football knockout competition, The Football Association Challenge Cup, or FA Cup for short. The competition was won by Manchester United, who drew the first final 2–2, but won the replay 4–0. The first round"} +{"qid": "test1332", "pid": "12630292", "query": "who gets first pick of fa cup games", "answer": "BBC", "passage": "\"1926–27 FA Cup\"\nthe final at Wembley. The 1927 FA Cup Final was won by Cardiff City, who beat Arsenal 1–0. It is most remembered for Arsenal goalkeeper Dan Lewis' mistake which led to the only goal of the game. It was also the first ever Cup Final to be broadcast by BBC Radio. Commentators were Derek McCulloch and George Allison, who would later manage Arsenal. 1926–27 FA Cup The 1926–27 FA Cup was the 52nd staging of the world's oldest football cup competition, the Football Association Challenge Cup, commonly known as the FA Cup. Welsh club Cardiff City won the competition for"} +{"qid": "test1337", "pid": "1033071", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Fort Myers Beach, Florida\"\nFort Myers Beach, Florida Fort Myers Beach is a town located on Estero Island in Lee County, Florida, United States. The population was 6,277 at the 2010 census. It is part of the Cape Coral-Fort Myers, Florida Metropolitan Statistical Area. It was officially incorporated on December 31, 1995. Fort Myers Beach is located at (26.438676, -81.925620). According to the United States Census Bureau, the town has a total area of , of which is land and (53.41%) is water. The town is situated on the barrier island of Estero Island. Fort Myers Beach has a tropical climate and has the"} +{"qid": "test1337", "pid": "1033124", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"North Fort Myers, Florida\"\nNorth Fort Myers, Florida North Fort Myers is a census-designated place (CDP) in Lee County, Florida, United States. The population was 36,609 at the 2010 census. It is part of the Cape Coral-Fort Myers, Florida Metropolitan Statistical Area. North Fort Myers is located at (26.7029, -81.8844), northwest across the Caloosahatchee River from Fort Myers proper. According to the United States Census Bureau, the CDP has a total area of , of which is land and (3.61%) is water. As of the census of 2010, there were 39,407 people, 19,788 households, and 12,539 families residing in the CDP. The population density"} +{"qid": "test1337", "pid": "1033085", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Fort Myers Shores, Florida\"\nFort Myers Shores, Florida Fort Myers Shores is a census-designated place (CDP) in Lee County, Florida, United States. The population was 5,793 at the 2000 census. It is part of the Cape Coral-Fort Myers, Florida Metropolitan Statistical Area. Fort Myers Shores is located at (26.712252, -81.737962). According to the United States Census Bureau, the CDP has a total area of , of which is land and (13.01%) is water. As of the census of 2000, there were 5,793 people, 2,172 households, and 1,598 families residing in the CDP. The population density was 2,699.2 people per square mile (1,040.3/km²). There were"} +{"qid": "test1337", "pid": "1033068", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Fort Myers, Florida\"\nFort Myers was 62,298 during the 2010 census. Between the 2000 census and 2010 census, the city's population increased at a rate of 29.2 percent. Fort Myers is one of two cities that make up the Cape Coral-Fort Myers Metropolitan Statistical Area. The 2010 population for the metropolitan area was 618,754. The population of Lee County, Florida and the Cape Coral-Fort Myers Metropolitan Statistical Area has grown 40.3 percent since the census in 2000, much faster than the average growth rate of 17.6 percent experienced throughout the State of Florida. Fort Myers is governed by a six-member city council where"} +{"qid": "test1337", "pid": "9121710", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Riverdale High School (Fort Myers, Florida)\"\nRiverdale High School (Fort Myers, Florida) Riverdale High School, located in Fort Myers, Florida, United States, is one of the many high schools in Lee County. The first two years of Riverdale began at the present-day site of Dunbar High School. Riverdale was located in this area for approximately two years while the current site was still in construction. Jack Hogg was the principal for the first two years. In the 1972-1973 school year, the school moved to its present-day location and the principal became Mike Prymas. The current principal is Scott Cook. Riverdale High School offers the International Baccalaureate"} +{"qid": "test1337", "pid": "805675", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Lee County, Florida\"\nLee County, Florida Lee County is located in southwest Florida on the Gulf Coast. As of the 2010 census, the population was 618,754. The county seat is Fort Myers (with a 2016 estimated population of 77,146), and the largest city is Cape Coral with an estimated 2016 population of 179,804. Lee County comprises the Cape Coral–Fort Myers, FL Metropolitan Statistical Area. Lee County was created in 1887 from Monroe County. Today, Fort Myers is the center of a popular tourist area in Southwest Florida and the seat of Lee County. It is about south of Tampa at the meeting point"} +{"qid": "test1337", "pid": "9121711", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Riverdale High School (Fort Myers, Florida)\"\nprogram, Advanced Placement, dual enrollment, vocational, honors and general education classes. Several Riverdale High students attracted national notoriety as members of a self-styled teen militia called the Lords of Chaos. They went on a crime spree culminating in the murder of Mark Schwebes, Riverdale High School's band director, on April 30, 1996. Riverdale High School (Fort Myers, Florida) Riverdale High School, located in Fort Myers, Florida, United States, is one of the many high schools in Lee County. The first two years of Riverdale began at the present-day site of Dunbar High School. Riverdale was located in this area for"} +{"qid": "test1337", "pid": "1033070", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Fort Myers, Florida\"\ninclude: \"\"See: Lee County Library System\"\" for other libraries in the county. Library Services include: The City of Palms Classic is an annual high school basketball tournament held in Fort Myers, Florida, since 1973. Several of its alumni have made it to the NBA. The Fort Myers Metropolitan Area is served by two separate airports in and around the city limits. Buses run by LeeTran provide local service in Fort Myers. Fort Myers has a twinning agreement with: Fort Myers, Florida Fort Myers or Ft. Myers, is the county seat and commercial center of Lee County, Florida, United States. It"} +{"qid": "test1337", "pid": "9922081", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Dunbar High School (Fort Myers, Florida)\"\nDunbar High School (Fort Myers, Florida) Dunbar High School is a school located in Fort Myers, Florida. It was established in 1926 and re-established in 2000. This secondary school is home to the Dunbar High School Academy of Technology Excellence and the Dunbar High School Center for Math and Science. It is the home of the \"\"Fighting Tigers\"\". The school mascot is a tiger and the school colors are orange and green. The school received an \"\"A\"\" grade for the 2009-2010 school year, along with two other Lee County schools. In 1926, Dunbar High School was constructed as the third"} +{"qid": "test1337", "pid": "1033043", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"East Dunbar, Fort Myers, Florida\"\nEast Dunbar, Fort Myers, Florida East Dunbar is a former census-designated place (CDP) in Lee County, Florida, United States. The population was 1,935 at the 2000 census. The area has been annexed by the city of Fort Myers and is part of the Metropolitan Statistical Area. East Dunbar is located at (26.633400, -81.843207). According to the United States Census Bureau, the CDP has a total area of , of which is land and 1.23% is water. As of the census of 2000, there were 1,935 people, 627 households, and 432 families residing in the CDP. The population density was 2,427.3"} +{"qid": "test1337", "pid": "1033055", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Fort Myers, Florida\"\nFort Myers, Florida Fort Myers or Ft. Myers, is the county seat and commercial center of Lee County, Florida, United States. It has grown rapidly in recent years. As of the 2010 census, the city population was 62,298 and in 2017 was estimated at 79,943. Fort Myers is a gateway to the Southwest Florida region and a major tourist destination within Florida. The winter estates of Thomas Edison (\"\"Seminole Lodge\"\") and Henry Ford (\"\"The Mangoes\"\") are major attractions. The city is named after Colonel Abraham Myers. Spain originally had colonial influence in Florida, succeeded by Great Britain and, lastly, the"} +{"qid": "test1337", "pid": "1033030", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"Captiva, Florida\"\nCaptiva, Florida Captiva is a census-designated place in Lee County, Florida, United States. It is located on Captiva Island. As of 2015 the CDP had a total year-round population of 379. It is part of the Cape Coral-Fort Myers, Florida Metropolitan Statistical Area. Captiva's many large estates, condominiums, and businesses have recovered from the serious damage due to 2004's Hurricane Charley. There is a toll to use the causeway that goes from Fort Myers to Sanibel Island. Captiva is accessed by a small bridge that crosses Blind Pass from Sanibel Island. Captiva is located at (26.518028, -82.191057). According to the"} +{"qid": "test1337", "pid": "8960940", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "\"North Fort Myers High School\"\nNorth Fort Myers High School North Fort Myers High School (commonly called \"\"North\"\" or \"\"North High\"\") is an American 9-12 high school located in North Fort Myers, Florida. It is the official center for the arts and media for the West Zone in Lee County's School Choice Program; is part of the Lee County School District; and currently serves approximately 1572 students. The official school colors are red, black & white and the athletic teams are known as \"\"The Red Knights\"\". North Fort Myers High School offers AICE, Advanced Placement, Dual Enrollment, Vocational, Honors and general education classes, in addition"} +{"qid": "test1337", "pid": "7234197", "query": "where is fort myers located at in florida", "answer": "Lee County", "passage": "WXCW\nWXCW WXCW, virtual channel 46 (UHF digital channel 45), is a CW-affiliated television station serving Fort Myers, Florida, United States that is licensed to Naples (as such, WXCW is one of two Fort Myers-based stations that is licensed to Naples, alongside ABC affiliate WZVN-TV). The station is locally owned by Sun Broadcasting; Fort Myers Broadcasting Company, which owns Fort Myers-licensed CBS affiliate WINK-TV (channel 11), operates WXCW under a shared services agreement. The two stations share studios on Palm Beach Boulevard (SR 80) in northeast Fort Myers; WXCW's transmitter is located near the Charlotte and Lee County line. The station"} +{"qid": "test1338", "pid": "7442609", "query": "state the position of india in terms of population size", "answer": "second", "passage": "Pathanamthitta\nthe 12th place in terms of population size in the state. In total density of the District is 452 Persons per km which the 12th in States as per 2011 Census. In Sex-ratio, the District is in the 2nd position with 1132 females per 1,000 males. In Child Sex-ratio, the District has the 1st rank with 976 female children per 1000 male children. The District has the second position in total literacy rate (96.55 per cent) and female literacy rate (95.83 per cent). Agricultural Labourers constitute 14.1 per cent while Cultivators form 10.5 per cent of the Total Workers in"} +{"qid": "test1339", "pid": "6679802", "query": "who became a leader of the indian national congress", "answer": "Mahatma Gandhi", "passage": "\"History of the Indian National Congress\"\nHistory of the Indian National Congress From its foundation on 28 December 1885 by A.O. Hume, a retired British officer, until the time India gained its independence on 15 August 1947, the Indian National Congress was considered to be the largest and most prominent Indian public organization, as well as the central and defining influence of the long Indian Independence Movement. After India became independent, Mahatma Gandhi asked the leaders to dissolve Indian National Congress, and to form a new organisation to govern the nation. Retired British Indian Civil Service (ICS) officer Allan Octavian Hume founded the Indian National Congress"} +{"qid": "test1339", "pid": "1324739", "query": "who became a leader of the indian national congress", "answer": "Mahatma Gandhi", "passage": "\"Indian National Congress\"\nIndian National Congress The Indian National Congress (INC, often called the Congress Party or simply Congress) is a broadly based political party in India. Founded in 1885, it was the first modern nationalist movement to emerge in the British Empire in Asia and Africa. From the late 19th century, and especially after 1920, under the leadership of Mahatma Gandhi, Congress became the principal leader of the Indian independence movement. Congress led India to independence from Great Britain, and powerfully influenced other anti-colonial nationalist movements in the British Empire. Congress is a secular party whose socialdemocratic platform is generally considered to"} +{"qid": "test1339", "pid": "6679815", "query": "who became a leader of the indian national congress", "answer": "Mahatma Gandhi", "passage": "\"History of the Indian National Congress\"\nMohandas Karmchand Gandhi, who later on became more popular as Mahatma Gandhi, had success in defeating the British in Champaran and Kheda, giving India its first victory in the struggle for freedom. Then Indian National Congress had supported that movement; Indians gained confidence in the working of that organization that the British could be thwarted through that organization, and millions of young people from across the country flooded into Congress membership. A whole class of political leaders disagreed with Gandhi. Bipin Chandra Pal, Muhammad Ali Jinnah, Annie Besant, Bal Gangadhar Tilak all criticized the idea of civil disobedience. But Gandhi"} +{"qid": "test1339", "pid": "9703867", "query": "who became a leader of the indian national congress", "answer": "Mahatma Gandhi", "passage": "\"Lala Ram Prakash Gupta\"\nJawaharlal Nehru who later become the first prime minister of India had become a prominent leader of the Indian National Congress which was demanding and fighting for complete political independence from the British occupation. This was also a time when Mahatma Gandhi briefly resigned from the Indian National Congress, Subhash Bose (popularly referred to as 'Netaji') had strong philosophical clashes with Mahatma Gandhi, and the struggle for independence became much stronger than in the past. From 1935 to 1947 when India finally got independence, Ram Prakash was one of the most active political and social leaders in the Punjab chapter"} +{"qid": "test134", "pid": "313848", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"Philadelphia Eagles\"\nsince week 15 and threw for 352 passing yards and three touchdowns. The Eagles traveled to Minneapolis to compete in Super Bowl LII, their third attempt at a title, against Tom Brady and the New England Patriots in a rematch of Super Bowl XXXIX from 2005. With Foles at the helm, Philadelphia started off the game strong, leading the Patriots 22–12 at halftime. New England's only lead was by one point in the fourth quarter, 33–32. The Eagles rallied back and scored an 11-yard touchdown to tight end Zach Ertz. The last score of the game was a 46-yard field"} +{"qid": "test134", "pid": "19807796", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test134", "pid": "19629916", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"Kamu Grugier-Hill\"\na two-point conversion after every touchdown. The Eagles went on to win the game 37-9. Grugier-Hill won his first Super Bowl ring when the Eagles defeated the New England Patriots in Super Bowl LII 41-33. Grugier-Hill recorded his first career interception by picking off a pass from New York Giants quarterback Eli Manning on October 11, 2018. Kamu Grugier-Hill Kamu Grugier-Hill (born May 16, 1994) is an American Football linebacker for the Philadelphia Eagles of the National Football League (NFL). He played college football for Eastern Illinois, and was drafted by the New England Patriots in the sixth round (208th"} +{"qid": "test134", "pid": "20428530", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"Tre Sullivan\"\nTre Sullivan Tre Sullivan (born December 21, 1994) is an American football safety for the Philadelphia Eagles of the National Football League (NFL). He played college football at Shepherd. Sullivan signed with the Philadelphia Eagles as an undrafted free agent on May 11, 2017. He was waived/injured by the Eagles on September 2, 2017 and placed on injured reserve. He was released on September 8, 2017. On November 7, 2017 Sullivan was re-signed to the Eagles’ practice squad. He was on the practice squad when the Eagles defeated the New England Patriots in Super Bowl LII. He signed a reserve/future"} +{"qid": "test134", "pid": "17161894", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"Isaac Seumalo\"\nOn April 29, 2016, the Philadelphia Eagles selected Seumalo in the third round (79th overall) of the 2016 NFL Draft. In 2017, Seumalo played in 14 games, starting two at left guard. He won his first Super Bowl ring when the Eagles defeated the New England Patriots 41-33 in Super Bowl LII. Isaac Seumalo Isaac Seumalo (born October 29, 1993) is an American football guard and center for the Philadelphia Eagles of the National Football League. He played college football at Oregon State University. A native of Corvallis, Oregon, Seumalo attended Corvallis High School, where he was an 5A First"} +{"qid": "test134", "pid": "10152678", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"Corey Graham\"\nby the Bills. On August 3, 2017, Graham signed a one-year contract with the Philadelphia Eagles. Graham won his second Super Bowl ring when the Eagles defeated the New England Patriots 41-33 in Super Bowl LII with Graham recording 5 tackles. On August 5, 2018, Graham re-signed with the Eagles on a one-year deal. Corey Graham Corey Dewayne Graham (born July 25, 1985) is an American football free safety for the Philadelphia Eagles of the National Football League (NFL). He was drafted by the Chicago Bears in the fifth round of the 2007 NFL Draft. He played college football at"} +{"qid": "test134", "pid": "11053194", "query": "when's the last time the philadelphia eagles played the new england patriots", "answer": "in Super Bowl LII", "passage": "\"2008 World Series\"\nSubsequent regular season meetings between the Rays and the Phillies would be relatively uncommon. The Rays only visited Philadelphia twice within the next seven years (in 2012 and 2015). This would be the last professional sports championship for the city of Philadelphia until the Philadelphia Eagles defeated the New England Patriots 41-33 in Super Bowl LII in 2018. For the Rays, at the same time the ticker-tape parade went down Broad Street in Philadelphia, thousands of Rays' fans attended a rally at Straub Park in St. Petersburg, celebrating their 2008 season. Mayor Rick Baker said that the rally \"\"really needed"} +{"qid": "test1341", "pid": "3285217", "query": "what is the filename extension used for all java source files", "answer": ".java", "passage": "\"Java class file\"\nJava class file A Java class file is a file (with the .class filename extension) containing Java bytecode that can be executed on the Java Virtual Machine (JVM). A Java class file is usually produced by a Java compiler from Java programming language source files (.java files) containing Java classes (alternatively, other JVM languages can also be used to create class files). If a source file has more than one class, each class is compiled into a separate class file. JVMs are available for many platforms, and a class file compiled on one platform will execute on a JVM of"} +{"qid": "test1341", "pid": "4398550", "query": "what is the filename extension used for all java source files", "answer": ".java", "passage": "JHTML\nJHTML JHTML stands for Java within HTML. This is a page authoring system developed at Art Technology Group (ATG). Files with a \"\".jhtml\"\" filename extension contain standard HTML tags in addition to proprietary tags that reference Java objects running on a special server set up to handle requests for pages of this sort. When a request is made for a JHTML page, e.g. \"\"index.jhtml\"\", the request for this page is forwarded from the HTTP server to another system running a Java application server. The JHTML page is compiled first into a .java file and then into a Java .class file."} +{"qid": "test1342", "pid": "9187628", "query": "who cracked the enigma code in world war 2", "answer": "Turing", "passage": "\"Hugh Whitemore\"\nform of a staged biography was \"\"Breaking the Code\"\" (1986) which was centered on Alan Turing, who was responsible for cracking the German Enigma code during World War II and resisted an adherence to the English code of sexual discretion with his homosexuality, for which he was charged with gross indecency. A television adaptation was broadcast in the UK in 1996. \"\"The Best of Friends\"\" (1987), about the friendship Dame Laurentia McLachlan, the Abbess of Stanbrook Abbey in Worcestershire, shared with George Bernard Shaw and Sydney Cockerell, director of the Fitzwilliam Museum in Cambridge. An adaptation by Whitemore of the"} +{"qid": "test1342", "pid": "5596916", "query": "who cracked the enigma code in world war 2", "answer": "Turing", "passage": "\"Lord Grey Academy\"\nLord Grey Academy Lord Grey Academy is a comprehensive co-educational Academy in West Bletchley, Milton Keynes. Lord Grey has four school houses: Lorenz, Enigma, Colossus and Turing, whose names relate to World War II code-breaking work at Bletchley Park. The first two of the house names refer to German enciphering machines and the third to the world's first programmable electronic digital computer that helped 'crack' their codes. Alan Turing was a British scientist at Bletchley Park who developed the principles that led to the creation of Colossus. He also laid the groundwork for modern computing and artificial intelligence. Lord Grey"} +{"qid": "test1342", "pid": "12747", "query": "who cracked the enigma code in world war 2", "answer": "Turing", "passage": "\"Alan Turing\"\nthe UK. During the Second World War, Turing worked for the Government Code and Cypher School (GC&CS) at Bletchley Park, Britain's codebreaking centre that produced Ultra intelligence. For a time he led Hut 8, the section that was responsible for German naval cryptanalysis. Here he devised a number of techniques for speeding the breaking of German ciphers, including improvements to the pre-war Polish bombe method, an electromechanical machine that could find settings for the Enigma machine. Turing played a pivotal role in cracking intercepted coded messages that enabled the Allies to defeat the Nazis in many crucial engagements, including the"} +{"qid": "test1342", "pid": "9528831", "query": "who cracked the enigma code in world war 2", "answer": "Turing", "passage": "\"Peter Hilton\"\nof a join of spheres. Peter Hilton died in Binghamton, New York, United States, at age 87. Hilton is portrayed by actor Matthew Beard in the 2014 film \"\"The Imitation Game\"\", which tells the tale of Alan Turing and the cracking of Nazi Germany's Enigma code. Peter Hilton Peter John Hilton (7 April 19236 November 2010) was a British mathematician, noted for his contributions to homotopy theory and for code-breaking during the Second World War. Hilton was born in London, the son of Elizabeth Amelia (Freedman) and Mortimer Jacob Hilton, and was educated at St Paul's School. He won a"} +{"qid": "test1342", "pid": "17502065", "query": "who cracked the enigma code in world war 2", "answer": "Turing", "passage": "\"The Imitation Game\"\nwar (and the puzzle was not set by Turing, who was no good at them). Google, which sponsored the New York Premiere of the film, launched a competition called \"\"The Code-Cracking Challenge\"\" on 23 November 2014. It is a skill contest where entrants must crack a code provided by Google. The prize/s will be awarded to entrant/s who crack the code and submit their entry the fastest. In November 2014, ahead of the film's US release, \"\"The New York Times\"\" reprinted the 1942 puzzle from \"\"The Daily Telegraph\"\" used in recruiting codebreakers at Bletchley Park during the Second World War."} +{"qid": "test1344", "pid": "15561210", "query": "when was the last time unc did not make the ncaa tournament", "answer": "2003", "passage": "\"2011–12 North Carolina Tar Heels men's basketball team\"\nState before falling to Florida State in the championship game. They were also invited to the 2012 NCAA Division I Men's Basketball Tournament reaching the Elite Eight where they were defeated by Kansas. This was the second time UNC lost to Kansas in the NCAA Tournament with Roy Williams as UNC head coach. Roy Williams previously coached Kansas from 1988–2003. Kansas later fell to Kentucky 59-67 in the National Championship Game. The Tar Heels won their previous three games in the NCAA Tournament by an average of 13.7 points. In the second-round game versus Creighton, starting UNC point guard Kendall"} +{"qid": "test1344", "pid": "9257009", "query": "when was the last time unc did not make the ncaa tournament", "answer": "2003", "passage": "\"North Carolina Tar Heels men's basketball\"\nto win the conference regular season championship outright. The team fell to Florida State in the championship game of the 2012 ACC Men's Basketball Tournament. The team was a #1 seed in the Midwest Regional of the 2012 NCAA Men's Division I Basketball Tournament; the team reached the Elite Eight and was defeated by Kansas 80-67. This defeat was the second time UNC lost to Kansas in the NCAA Tournament with Roy Williams as UNC head coach. He previously coached Kansas from 1988 to 2003. The loss to Kansas was also UNC's second straight loss in the Elite Eight, after"} +{"qid": "test1344", "pid": "18887824", "query": "when was the last time unc did not make the ncaa tournament", "answer": "2003", "passage": "\"High Point Panthers women's soccer\"\nPanthers entered the 2003 Big South Tournament at 8–9 and the #6 seed, but surprised the conference by capturing the tournament title with a 0–0, 3–2 penalty-kick shootout win over UNC-Asheville to gain the first Division I NCAA tournament bid in High Point Panthers history. In the NCAA tournament, High Point lost 8–0 to eventual champion North Carolina. Forward Jen Evans, the career goals leader, paced the 2003 team with 10 scores, and also played a pivotal role on the 2007 squad that returned to the NCAA tournament. The Panthers once again ran into UNC in the 2007 tournament and"} +{"qid": "test1344", "pid": "14407426", "query": "when was the last time unc did not make the ncaa tournament", "answer": "2003", "passage": "\"UNC Wilmington Seahawks\"\nAssociation. UNC Wilmington won the CAA’s automatic bid to play in the NCAA Regionals in 2004, 2006, 2012, and 2015. In addition, the program received at-large bids to the NCAA Tournament in 2003, 2008 and 2016. UNCW set a CAA record with four consecutive 40-win seasons from 2003–06 and set a school record with 44 victories in 2008, including a 21-game winning streak. The rich heritage of UNCW baseball began when the Seahawks captured the NCJAA 1961 and 1963 National Championships. The Seahawks have sent over 90 players to play professionally. UNCW has hosted the CAA baseball tournament at Brooks"} +{"qid": "test1344", "pid": "4262571", "query": "when was the last time unc did not make the ncaa tournament", "answer": "2003", "passage": "\"Tobacco Road (rivalry)\"\nthe same tournament 4 times (1991, 2003, 2004, 2005). Prior to the 2014 NCAA Tournament, at least one of the teams had made the Sweet 16 since 1979. Aside from the ACC Tournament, the four schools have only played each other in the postseason twice, never in the NCAA tournament. The only two times came in the NIT Tournament: Wake beat NC State in a semifinal game of the 2000 NIT Tournament and went on to win the tournament, and UNC beat Duke in a semifinal game of the 1971 NIT Tournament, also winning the tournament. The four schools have"} +{"qid": "test1345", "pid": "4245444", "query": "which foreign currency option is the​ right but not the​ obligation to buy foreign​ currency", "answer": "foreign exchange option", "passage": "\"Foreign exchange option\"\nGarman–Kohlhagen is always used. Foreign exchange option In finance, a foreign exchange option (commonly shortened to just FX option or currency option) is a derivative financial instrument that gives the right but not the obligation to exchange money denominated in one currency into another currency at a pre-agreed exchange rate on a specified date. See Foreign exchange derivative. The foreign exchange options market is the deepest, largest and most liquid market for options of any kind. Most trading is over the counter (OTC) and is lightly regulated, but a fraction is traded on exchanges like the International Securities Exchange, Philadelphia"} +{"qid": "test1345", "pid": "4245434", "query": "which foreign currency option is the​ right but not the​ obligation to buy foreign​ currency", "answer": "foreign exchange option", "passage": "\"Foreign exchange option\"\nForeign exchange option In finance, a foreign exchange option (commonly shortened to just FX option or currency option) is a derivative financial instrument that gives the right but not the obligation to exchange money denominated in one currency into another currency at a pre-agreed exchange rate on a specified date. See Foreign exchange derivative. The foreign exchange options market is the deepest, largest and most liquid market for options of any kind. Most trading is over the counter (OTC) and is lightly regulated, but a fraction is traded on exchanges like the International Securities Exchange, Philadelphia Stock Exchange, or the"} +{"qid": "test1345", "pid": "3113273", "query": "which foreign currency option is the​ right but not the​ obligation to buy foreign​ currency", "answer": "foreign exchange option", "passage": "\"Foreign exchange market\"\nforeign exchange option (commonly shortened to just FX option) is a derivative where the owner has the right but not the obligation to exchange money denominated in one currency into another currency at a pre-agreed exchange rate on a specified date. The FX options market is the deepest, largest and most liquid market for options of any kind in the world. Controversy about currency speculators and their effect on currency devaluations and national economies recurs regularly. Economists, such as Milton Friedman, have argued that speculators ultimately are a stabilizing influence on the market, and that stabilizing speculation performs the important"} +{"qid": "test1346", "pid": "6855395", "query": "how many house of representative do we have in nigeria", "answer": "360", "passage": "\"House of Representatives (Nigeria)\"\nHouse of Representatives (Nigeria) The House of Representatives is the lower house of Nigeria's bicameral National Assembly. The Senate is the upper house. The current House of Representatives, formed following elections held in April 2015, has a total of 360 members who are elected in single-member constituencies using the simple majority (or first-past-the-post) system. Members serve four-year terms. The Speaker of the Nigerian House of Representatives is the presiding officer of the house. A group of 37 House members of Nigeria’s ruling party, the All Progressives Congress have defected to opposition parties underscoring rising political tensions due to the upcoming"} +{"qid": "test1348", "pid": "10062636", "query": "who sings blame it on the bossa nova", "answer": "Eydie Gormé", "passage": "\"Blame It on the Bossa Nova\"\nBlame It on the Bossa Nova \"\"Blame It on the Bossa Nova\"\" is a song written by Cynthia Weil (lyrics) and Barry Mann which was a 1963 hit single for Eydie Gormé, reaching number 7 on the Hot 100 in \"\"Billboard\"\" in March 1963. The song also peaked at number 23 in the UK, whereas \"\"Yes, My Darling Daughter\"\" became the biggest hit for Eydie there, reaching number 10. Produced by Al Kasha who had been responsible for the 1 hit \"\"Go Away Little Girl\"\" by Gormé's husband Steve Lawrence, \"\"Blame It on the Bossa Nova\"\" featured backing vocals by"} +{"qid": "test1348", "pid": "10062644", "query": "who sings blame it on the bossa nova", "answer": "Eydie Gormé", "passage": "\"Blame It on the Bossa Nova\"\npå Jorden\"\". In Québec, the song was recorded in French by Margot Lefebvre as \"\"C'est la faute au bossa nova\"\", written by Pierre Nolès. Blame It on the Bossa Nova \"\"Blame It on the Bossa Nova\"\" is a song written by Cynthia Weil (lyrics) and Barry Mann which was a 1963 hit single for Eydie Gormé, reaching number 7 on the Hot 100 in \"\"Billboard\"\" in March 1963. The song also peaked at number 23 in the UK, whereas \"\"Yes, My Darling Daughter\"\" became the biggest hit for Eydie there, reaching number 10. Produced by Al Kasha who had been"} +{"qid": "test1349", "pid": "7042340", "query": "who is the supreme court judge was a former chief justice of kerala high court", "answer": "Konakuppakatil Gopinathan Balakrishnan", "passage": "\"K. G. Balakrishnan\"\nRani. He has 5 brothers and 2 sisters. His younger brother K. G. Bhaskaran was government pleader in Kerala High Court and another brother K. G. Raju was conferred IAS by Kerala Government and served as District Collector for Wayanad, Kerala. K. G. Balakrishnan Konakuppakatil Gopinathan Balakrishnan (K. G. Balakrishnan) (b. 12 May 1945) was the former Chairperson of the National Human Rights Commission of India. He is a former Chief Justice of India. He was the first judge from the state of Kerala to become the Chief Justice of the Supreme Court. His tenure lasting more than three years"} +{"qid": "test135", "pid": "534797", "query": "what was the purpose of a revival meeting during the second great awakening", "answer": "evangelizing", "passage": "\"Second Great Awakening\"\nhalf century earlier, the Second reflected Romanticism characterized by enthusiasm, emotion, and an appeal to the super-natural. It rejected the skepticism, deism, and rationalism left over from the Enlightenment. At about the same time, similar movements flourished in Europe. Pietism was sweeping German countries. Evangelicalism was waxing strong in England. The Second Great Awakening occurred in several episodes and over different denominations; however, the revivals were very similar. As the most effective form of evangelizing during this period, revival meetings cut across geographical boundaries, and the movement quickly spread throughout Kentucky, Tennessee and southern Ohio. Each denomination had assets that"} +{"qid": "test1350", "pid": "13505777", "query": "who has won more grand slam titles in tennis", "answer": "Roger Federer", "passage": "\"Sport in Switzerland\"\nlast few years several Swiss tennis players, like Roger Federer, Stanislas Wawrinka and Martina Hingis, became Grand Slam singles champions. Federer has won 20 Grand Slam titles and holds the record for the longest consecutive stay as the world number 1. Another Swiss tennis figure is Marc Rosset, winning the singles gold medal at the 1992 Olympics. Switzerland is also the home of the sailing team Alinghi which won the America's Cup in 2003 and defended the title in 2007. Golf is becoming increasingly popular, with already more than 35 courses available and more in planning. André Bossert is a"} +{"qid": "test1350", "pid": "5236025", "query": "who has won more grand slam titles in tennis", "answer": "Roger Federer", "passage": "\"Fabrice Santoro\"\nsingles play (444, though he won even more matches). He also has the second-most appearances in singles competition at Grand Slam events behind Roger Federer (70). In singles play, Santoro earned six titles, but reached the quarterfinals at a Grand Slam only once. His career-high ranking of world no. 17 belied his impressive record against top ten opposition. He had arguably even greater success in doubles competition, with two Grand Slam doubles titles, one Grand Slam mixed doubles title, and 25 doubles championships overall to his name. Since late 2014, Santoro is a coach of Ukrainian tennis player Sergiy Stakhovsky."} +{"qid": "test1350", "pid": "1906303", "query": "who has won more grand slam titles in tennis", "answer": "Roger Federer", "passage": "\"Roger Federer\"\nLaver Cup; the annual team tennis tournament which pits Europe against the rest of the world. He co-founded the tournament in honor of tennis legend Rod Laver and the inaugural edition was played in 2017. In 2018, Federer returned to the Australian Open to defend his 2017 title and won his 20th Grand Slam tournament. This win placed him a total of four major titles ahead of long-time rival Rafael Nadal, who had won 16 Grand Slam tournaments. However, Nadal winning the 2018 French Open narrowed the gap back to three. Roger Federer has huge popularity in the world of"} +{"qid": "test1350", "pid": "19612353", "query": "who has won more grand slam titles in tennis", "answer": "Roger Federer", "passage": "\"2017 Wimbledon Championships\"\n2017 Wimbledon Championships The 2017 Wimbledon Championships was a Grand Slam tennis tournament that took place at the All England Lawn Tennis and Croquet Club in Wimbledon, London, United Kingdom. The main draw matches commenced on 3 July 2017 and concluded on 16 July 2017. Roger Federer won the Gentlemen's Singles title for a record eighth time, surpassing Pete Sampras and William Renshaw, who both won the Gentlemen's Singles title seven times. Garbiñe Muguruza won the Ladies' Singles title. The 2017 tournament was the 131st edition of the championships, the 50th in the Open Era and the third Grand Slam"} +{"qid": "test1351", "pid": "14798171", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Falcons–Saints rivalry\"\nthe best in sports: \"\"Every year, bus caravans loaded with rowdy (and usually very inebriated) fans make the seven-hour trip between the two cities. Unless you've attended a Falcons-Saints debauchery-filled afternoon, you'll just have to take my word for how much fun it really can be.\"\" Atlanta currently leads the all-time series 52-48 (51-48 regular season, 1-0 playoffs). Each team has appeared in the Super Bowl at least once, the Saints winning Super Bowl XLIV while the Falcons lost in Super Bowls XXXIII and in LI. It began in 1967, the first year of play for the Saints, and press"} +{"qid": "test1351", "pid": "17425391", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Buccaneers–Saints rivalry\"\nboth New Orleans and Tampa Bay have managed to sweep their opponent on multiple occasions. New Orleans has swept Tampa Bay five times (2002, 2006, 2012, 2013, 2014). Tampa Bay has swept New Orleans twice (2005, 2007). The Saints notably swept Tampa Bay the season the Buccaneers won Super Bowl XXXVII. The two franchises have each appeared in the Super Bowl once. They made their first respective Super Bowl appearances in 2002 (Tampa Bay) and 2009 (New Orleans). Both managed to win the Super Bowl in their lone appearance; they are two of only four teams to currently be undefeated"} +{"qid": "test1351", "pid": "12903812", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"2009 New Orleans Saints season\"\nplayoff berth, a first-round bye and—for the first time ever—the top seed in the NFC. The Saints defeated Kurt Warner and the defending NFC Champions Arizona Cardinals in the , and proceeded to host the NFC Championship Game for the first time in franchise history. There, they defeated Brett Favre and the Minnesota Vikings in overtime, then went on to face Peyton Manning and the Indianapolis Colts at Super Bowl XLIV in the franchise's first-ever Super Bowl appearance. The Saints won the Super Bowl 31–17, giving the city of New Orleans its first NFL championship. The Saints are the first"} +{"qid": "test1351", "pid": "4450419", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl XLIV\"\nJohn Randle, and Emmitt Smith – were named the day before. The Saints won the coin toss, marking the 13th straight Super Bowl the NFC won the toss (the Cardinals won the toss in Super Bowl XLIII but elected to defer to the second half, giving the Steelers the ball to open the game). The Who performed at the Super Bowl XLIV halftime show. The band played a medley of their hits, consisting of \"\"Pinball Wizard\"\", \"\"Baba O'Riley\"\", \"\"Who Are You\"\", \"\"See Me, Feel Me\"\", and \"\"Won't Get Fooled Again\"\". For the first time since the Super Bowl XXXIV halftime"} +{"qid": "test1351", "pid": "5958118", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Reconstruction of New Orleans\"\ndollars in revenue for the host city. Tulane University hosted the first and second rounds of the 2007 NCAA Men's Division I Basketball Championship. The Superdome has since hosted several college football bowl games, and a Super Bowl. The New Orleans Bowl resumed in December 2006, and the Sugar Bowl and 2008 BCS National Championship Game took in January 2008. New Orleans hosted the Super Bowl in 2013 for the first time since Hurricane Katrina. In February 2010, the New Orleans Saints won Super Bowl XLIV. In mid-March 2007 a local group of investors began conducting a study to see"} +{"qid": "test1351", "pid": "4630216", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Drought (sport)\"\nNBA teams, the Rockets and Clippers, never won a Super Bowl or an NBA championship when located within the city. The Padres are tied with the Texas Rangers for the most World Series appearances (two) of the seven teams without a World Series championship. The Chargers won the 1963 AFL championship and only appeared in one Super Bowl (Super Bowl XXIX, which they lost to the San Francisco 49ers, 49–26). Some cities with at least three teams have shorter yet notable droughts. Minneapolis–Saint Paul has not reached a championship series or Super Bowl since the Twins won the 1991 World"} +{"qid": "test1351", "pid": "3135903", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Drew Brees\"\n(1,026), attempts (1,678), and yards (11,792). For his many career accomplishments and records, Brees has been hailed as one of the greatest passers of all time. Brees earned the starting job with the Chargers in 2002 and made the Pro Bowl in 2004. Nine months after suffering a dislocation in his right shoulder joint and a tear of the labrum and rotator cuff, Brees signed with the Saints as a free agent in 2006. He had immediate success in New Orleans, eventually leading the Saints to their first-ever Super Bowl in Super Bowl XLIV, resulting in a 31–17 victory over"} +{"qid": "test1351", "pid": "20917187", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Brady/Belichick Era\"\npredictability of opposing teams, and meetings with Tom Brady that only covered how to beat Baltimore Ravens All-Pro safety Ed Reed. Belichick is third all-time for wins as a coach. He is the longest tenured active coach in the NFL, and has won the most postseason games, at 28. He is the only coach to win three Super Bowls in four years and the only head coach in NFL history to have won 5 Super Bowls. Brady attended college at University of Michigan, where he battled for the starting role. He would lead the Wolverines to the 1999 Rose Bowl,"} +{"qid": "test1351", "pid": "4450420", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl XLIV\"\nshow, there was no crowd of fans surrounding the halftime stage. This performance was also released as downloadable content for the Rock Band series, named \"\"The Who Super Bowl S-mashup\"\". Retailers had ordered much more New Orleans Saints merchandise prior to the game than they had ordered Colts merchandise. The NFL estimated that US$100million worth of Super Bowl merchandise would be sold. The Saints won the coin toss and chose to receive, but their first possession resulted in a punt after going three-and-out. The Colts offense took the field for the first time, with the ball spotted at their own"} +{"qid": "test1351", "pid": "8915769", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"History of the Green Bay Packers\"\n(three consecutive league championships) for only the second time in franchise history and the first time since they were named league champions following the 1929–31 seasons. To this day, no other NFL team has matched or surpassed this record. The Packers' back-to-back wins in the first two Super Bowls remains a Super Bowl record, and has since been tied seven times by six other franchises: the Miami Dolphins won Super Bowls VII and VIII following the 1972 and 1973 seasons, the Pittsburgh Steelers won Super Bowls IX and X following the 1974 and 1975 seasons as well as Super Bowls"} +{"qid": "test1351", "pid": "5671787", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Eastern Hancock High School\"\nthe year around the county. Eastern Hancock offers Science, Social Studies, Mathematics, English, and Fine Arts academic teams. They all compete annually at the Academic Super Bowl. They also won the 2003 and 2011 State Science Academic Championships. The Eastern Hancock Fine Arts Team finished 6th in the State in 2012. In addition, Eastern Hancock has a Spell Bowl team. Spell Bowl members spend the semester figuring out how to spell complex words and compete every year at the annual Indiana Spell Bowl Competition. There are many facilities around the school, including: Eastern Hancock also has many athletic facilities, including:"} +{"qid": "test1351", "pid": "7167364", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl XLVII\"\ntwo different stadiums. The 49ers won Super Bowls XXIII and XXIX in Miami at what is now known as Hard Rock Stadium. Super Bowl XLVII earned many nicknames, including the \"\"Bro Bowl\"\", \"\"Harbaugh Bowl\"\", \"\"HarBowl\"\", \"\"Super Baugh\"\", \"\"Brother Bowl\"\", and \"\"Superbro\"\", as this was the first Super Bowl featuring brothers as opposing head coaches: Baltimore's John Harbaugh and San Francisco's Jim Harbaugh, whose clubs previously met in a 2011 Thanksgiving Day game, which John Harbaugh's Ravens won 16–6, which was also the first time that two brothers had met as rival head coaches in the NFL. Due to a power"} +{"qid": "test1351", "pid": "9277484", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"NFL Kickoff Game\"\nSuper Bowl XLIV, hosted the kickoff game at the Superdome against the Vikings, a rematch of the previous season's NFC Championship Game. There was consideration of a match-up against the Steelers (to create a contest between the last two Super Bowl champions) but it did not come to fruition due to various logistical reasons. 2011: The Packers hosted the 2011 Kickoff Game after winning Super Bowl XLV. They defeated the New Orleans Saints, a match-up of the winners of the two previous Super Bowls, the first time this has occurred. The Saints are only the second team to have played"} +{"qid": "test1351", "pid": "16858105", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl LI\"\nthe Super Bowl (the previous record was ten points, set by the Washington Redskins in Super Bowl XXII and matched by the New Orleans Saints in Super Bowl XLIV and by the Patriots in Super Bowl XLIX); it is the third-largest comeback win in NFL playoff history, behind The Comeback (32-point deficit; Buffalo Bills trailed 35–3 and won 41–38) and between the Indianapolis Colts and the Kansas City Chiefs during the 2013–14 NFL playoffs (28-point deficit; Colts trailed 38–10 and won, 45–44). In addition to being the largest Super Bowl comeback, the game set the record for the largest fourth-quarter"} +{"qid": "test1351", "pid": "8293847", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Steve Gleason\"\nwent on to have the most successful season in their history up to that time. Gleason did not play for the 2009 Saints team that won Super Bowl XLIV, but in September 2011, he was awarded a Super Bowl ring by the Saints. At the same ceremony he was awarded the key to the city of New Orleans by mayor Mitch Landrieu. In July 2012, \"\"Rebirth\"\", a statue depicting Gleason blocking the punt was raised outside the Superdome; a news report commented that the blocked punt \"\"etched Steve Gleason into Saints lore and became symbolic of New Orleans' resilience in"} +{"qid": "test1351", "pid": "286772", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"New York Jets\"\nSince 1968, the Jets have appeared in the playoffs 13 times, and in the AFC Championship Game four times, most recently losing to the Pittsburgh Steelers in 2010. However, the Jets have never returned to the Super Bowl, making them one of three NFL teams to win their lone Super Bowl appearance, along with the New Orleans Saints and Tampa Bay Buccaneers. Apart from the Cleveland Browns and Detroit Lions, who have never reached the Super Bowl (although both won NFL championships prior to 1966), the Jets' drought is the longest among current NFL franchises. The team's training facility, Atlantic"} +{"qid": "test1351", "pid": "286695", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"New Orleans Saints\"\nSuper Bowl championship that they have won, and as it is the only Super Bowl the Saints have appeared in, they join the New York Jets and Tampa Bay Buccaneers as the only three NFL teams to win their lone Super Bowl appearance. In 51 seasons (through 2017), the Saints' record was overall, 349–432–5 in the regular season and 9–11 in the playoffs. First the brainchild of local sports entrepreneur Dave Dixon, who later built the Louisiana Superdome and founded the USFL, the Saints were actually secretly born in a backroom deal brought about by U.S. Congressman Hale Boggs, U.S."} +{"qid": "test1351", "pid": "376023", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl\"\nPatriots' 2007 record at 18–1. The following season, the Steelers logged their record sixth Super Bowl title (XLIII) in a 27–23, final-minute victory against the Arizona Cardinals. The 2009 season saw the New Orleans Saints defeat the Indianapolis Colts in Super Bowl XLIV by a score of 31–17 to take home their first Championship. With this victory, the Saints joined the Tampa Bay Buccaneers and New York Jets as the only teams to have won in their sole Super Bowl appearance. The 2010s have seen parity between the two conferences, but not within them. Since the start of 2010, five"} +{"qid": "test1351", "pid": "4450372", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl XLIV\"\nSuper Bowl XLIV Super Bowl XLIV was an American football game between the National Football Conference (NFC) champions New Orleans Saints and the American Football Conference (AFC) champions Indianapolis Colts to decide the National Football League (NFL) champion for the 2009 season. The Saints defeated the Colts by a score of 31–17, earning their first Super Bowl win. The game was played at Hard Rock Stadium (formerly Joe Robbie Stadium) in Miami Gardens, Florida, for the fifth time (and in South Florida for the tenth time), on February 7, 2010, the latest calendar date for a Super Bowl yet. This"} +{"qid": "test1351", "pid": "8852173", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"St. John's High School (Massachusetts)\"\nprogram won three consecutive Central/Western Mass Super Bowls from 2004-2006. They also won super bowls in 1977, 1985, 1988, 2001, 2009, 2010, and 2017. One highlight to the football season is the annual Thanksgiving football game between Saint John's and rival St. Peter-Marian. The game is held at Fitton Field in Worcester. The St. John's-Saint Peter-Marian football rivalry is the oldest Catholic high school rivalry in the nation. The Saint John's ski team won the 2007 state championship. The Saint John's golf team won three consecutive state titles from 2005–2007, and two more in 2011-2012. In 2006, the 4 by"} +{"qid": "test1351", "pid": "4450373", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl XLIV\"\nwas the Saints' first Super Bowl appearance and the fourth for the Colts franchise, their second appearance in four seasons. The Saints entered the game with a 13–3 record for the 2009 regular season, compared to the Colts' 14–2 record. In the playoff games, both teams placed first in their respective conferences, marking the first time since Super Bowl XXVIII (16 years previously) that both number-one seeds have reached the Super Bowl. The Colts entered the Super Bowl off victories over the Baltimore Ravens and New York Jets, while the Saints advanced after defeating the previous year's runners up the"} +{"qid": "test1351", "pid": "9383612", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Who Dat?\"\nthe Minnesota Vikings in the Superdome, fans from all across New Orleans, including fans who were exiting the game, started a Mardi Gras-style \"\"Who Dat\"\" on Bourbon Street with modified lyrics, chanting, \"\"Who Dat, Who Dat, Who Dat in the Super Bowl!\"\" in reference to the Saints advancing to the Super Bowl for the first time ever in their 43-year history. In Super Bowl XLIV, on February 7, 2010, the Saints beat the Indianapolis Colts 31-17. \"\"Drew Dat\"\" has occasionally been used in honor of quarterback Drew Brees. In recent years the phrase \"\"Who Dat Nation\"\" has become a popular"} +{"qid": "test1351", "pid": "376024", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl\"\nof the nine Super Bowl winners hailed from the NFC, the other four from the AFC. Following up the Saints' win in Super Bowl XLIV, the 2010 season brought the Green Bay Packers their fourth Super Bowl (XLV) victory and record thirteenth NFL championship overall with the defeat of the Pittsburgh Steelers in February 2011. In Super Bowl XLVI, the New York Giants won another title by defeating the New England Patriots. In Super Bowl XLVII the Baltimore Ravens snapped the NFC's three-game winning streak in a 34–31 victory over the San Francisco 49ers. Super Bowl XLVIII, played at New"} +{"qid": "test1351", "pid": "11036384", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"2009 NFL season\"\n24, 2010 at 3:00 pm,which saw the Indianapolis Colts come from behind to defeat the New York Jets, 30–17. It was followed by the NFC Championship Game at 6:30 pm which featured many back to back scoring drives by two high scoring Vikings and Saints offenses. But the Minnesota Vikings 4 fumbles and a Brett Favre interception late in the fourth quarter proved to be too much to handle as the New Orleans Saints won 31–28 in overtime which granted the franchise's first Super Bowl appearance in its 43-year history. Super Bowl XLIV was held February 7 at Miami Gardens,"} +{"qid": "test1351", "pid": "15577699", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Joe Williams (running back, born 1947)\"\nfor several years. Williams was selected by the Dallas Cowboys in the twelfth round (309th overall) of the 1970 NFL Draft because of his speed. As a rookie, he was used sparingly and spent most of his time on the taxi squad; the Cowboys won the NFC title but lost Super Bowl V. He earned a Super Bowl ring in his second season as a member of the Super Bowl VI-winning team under coach Tom Landry. A few weeks later on January 31, 1972, he was traded to the New Orleans Saints in exchange for a fourth round draft choice"} +{"qid": "test1351", "pid": "375999", "query": "how many times has the saints won the super bowl", "answer": "1", "passage": "\"Super Bowl\"\nand \"\"The Game\"\", the Associated Press reported that \"\"Super Bowl\"\" \"\"grew and grew and grew-until it reached the point that there was Super Week, Super Sunday, Super Teams, Super Players, ad infinitum\"\". \"\"Super Bowl\"\" became official beginning with the third annual game. Roman numerals were first affixed for the fifth edition, in January 1971. After the NFL's Green Bay Packers won the first two Super Bowls, some team owners feared for the future of the merger. At the time, many doubted the competitiveness of AFL teams compared with their NFL counterparts, though that perception changed when the AFL's New York"} +{"qid": "test1352", "pid": "11044183", "query": "when was the last time the los angeles lakers won a championship", "answer": "2010", "passage": "\"2001–02 Los Angeles Lakers season\"\nuntil 2009, in which they defeated the Orlando Magic in five games. They even won another title in 2010, where they defeated the Boston Celtics in seven games. As of 2018, the Lakers are the most recent team to have accomplished a three-peat. (3) Los Angeles Lakers vs. (6) Portland Trail Blazers Last Playoff Meeting: 2001 Western Conference First Round (Los Angeles won 3-0) (2) San Antonio Spurs vs. (3) Los Angeles Lakers Last Playoff Meeting: 2001 Western Conference Finals (Los Angeles won 4-0) (1) Sacramento Kings vs. (3) Los Angeles Lakers Last Playoff Meeting: 2001 Western Conference Semifinals (Los"} +{"qid": "test1352", "pid": "13329694", "query": "when was the last time the los angeles lakers won a championship", "answer": "2010", "passage": "\"2010 NBA Finals\"\ntoughest series by far. Furthermore, Lakers forward Luke Walton and his father Hall of Famer Bill Walton became the only (as of 2011) father and son to both have won multiple NBA championships Bill in and and Luke in and 2010. Lastly, this would become Kobe Bryant’s final championship. , this remains the last NBA Finals appearance for either the Celtics or the Lakers. The next Boston vs. Los Angeles championship matchup would be in 2018 when the Boston Red Sox defeated the Los Angeles Dodgers to win the World Series 4 games to 1. The series win brought the"} +{"qid": "test1352", "pid": "7495137", "query": "when was the last time the los angeles lakers won a championship", "answer": "2010", "passage": "\"Jordan Farmar\"\nJordan Farmar Jordan Robert Farmar (born November 30, 1986) is an American former professional basketball player who last played for the Sacramento Kings of the National Basketball Association (NBA). In high school, he was named the \"\"Los Angeles Times\"\" High-School Player of the Year in 2003–04. Playing for UCLA in college, he was the Rivals.com National Freshman of the Year in 2004–05. Farmar was selected 26th overall in the first round of the 2006 NBA draft by the Los Angeles Lakers. With the Lakers, he won two NBA championships in 2009 and 2010. Farmar was born in Los Angeles. His"} +{"qid": "test1353", "pid": "17843837", "query": "how many gold medals did australia win in the 2000 olympics", "answer": "16", "passage": "\"200 metres at the Olympics\"\nCampbell-Brown repeated that feat in 2008. Usain Bolt was the first person to win two Olympic 200 m gold medals at the 2012 Summer Olympics, and at the 2016 Summer Olympics he defended his title to win his third Olympic 200 m gold medal. Merlene Ottey is the most decorated athlete, having won four medals in the event (though none of them gold). Allyson Felix has won three medals, as has Poland's Irena Szewińska. Reflecting how sprint athletes often compete over various distances, many of the medalists in the Olympic 200 metres have had success in the Olympic 100 metres"} +{"qid": "test1354", "pid": "20353584", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek Upper Falls\"\nFalls. On September 2, 2017, a wildfire started in Eagle Creek, affecting 45% of its forest, mainly the surface level. Before this there had never been a major fire affecting Eagle Creek land. Fortunately, the trails and campground were not disturbed. With the Eagle Creek fire on the news in September, the creek had more attention and exposure drawn to it, which may increase the amount of visitors. The Eagle Creek Fire is an ongoing wildfire in the Columbia River Gorge in the U.S. states of Oregon and Washington. The fire was started on September 2, 2017, reportedly caused by"} +{"qid": "test1354", "pid": "5884422", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek (Multnomah County, Oregon)\"\nEagle Creek (Multnomah County, Oregon) Eagle Creek is a creek in Hood River County, Oregon, United States. The creek drains into the Columbia River in Multnomah County, with its outlet on the Columbia River Gorge. It is in the Mount Hood National Forest. The Eagle Creek Trail – the most popular trail in the Gorge – follows the creek. Tunnel Falls and Punch Bowl Falls, located on Eagle Creek, are remote and scenic waterfalls along the creek. The Historic Columbia River Highway crosses the creek's outlet to the Columbia River. A substantial hike through some occasionally rough terrain is required"} +{"qid": "test1354", "pid": "5884420", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek (Multnomah County, Oregon)\"\nEagle Creek (Multnomah County, Oregon) Eagle Creek is a creek in Hood River County, Oregon, United States. The creek drains into the Columbia River in Multnomah County, with its outlet on the Columbia River Gorge. It is in the Mount Hood National Forest. The Eagle Creek Trail – the most popular trail in the Gorge – follows the creek. Tunnel Falls and Punch Bowl Falls, located on Eagle Creek, are remote and scenic waterfalls along the creek. The Historic Columbia River Highway crosses the creek's outlet to the Columbia River. A substantial hike through some occasionally rough terrain is required"} +{"qid": "test1354", "pid": "20330298", "query": "where is the eagle creek fire located in oregon", "answer": "Cascade Locks", "passage": "\"Eagle Creek Fire\"\nalso was ordered to write apology letters to 152 people trapped on the Eagle Creek trail because of the spreading flames, the city of Cascade Locks, the Forest Service, Oregon State Parks, the Oregon Department of Transportation, the Confederated Tribes of Warm Springs, the Columbia River Intertribal Fish Commission and many others. On May 21, 2018, a judge ordered the 15-year old to pay more than $36 million in restitution, which includes more than $21 million on behalf of the U.S. Forest Service, $12.5 million to the Oregon Department of Transportation, more than $1.6 million to the Oregon State Fire"} +{"qid": "test1354", "pid": "20330295", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek Fire\"\nEagle Creek Fire The Eagle Creek Fire was a destructive wildfire in the Columbia River Gorge in the U.S. states of Oregon and Washington. The fire was started on September 2, 2017, by a 15-year-old boy igniting fireworks during a burn ban. The fire burned 50,000 acres, and burned for three months, before being declared completely contained. As of May 29, 2018 it was found still smoldering in some areas. In mid-September 2017, highway closures and local evacuations were gradually being lifted. By September 28, 2017, the fire had consumed and was 46% contained. In late October, fire growth was"} +{"qid": "test1354", "pid": "20330299", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek Fire\"\nMarshal, more than $1 million to Union Pacific Railroad and varying amounts to Oregon State Parks, Allstate Insurance and a woman who lost her home in the fire. In his sentencing, Judge John A Olsen stated that the terms of the repayment were for a payment plan lasting for ten years, provided that the offender completed five years of probation and did not commit any crimes in the ten-year period. The Eagle Creek Fire was reported on September 2 at 4:00 PM in the Columbia River Gorge. By the morning of September 3, the fire had grown to . On"} +{"qid": "test1354", "pid": "6867623", "query": "where is the eagle creek fire located in oregon", "answer": "Cascade Locks", "passage": "\"Yacolt Burn\"\nto east. A build-up of slash from loggers had not been burned off properly in the preceding two summers. On September 8 a fire was started by boys trying to burn a nest of hornets near Eagle Creek, Oregon. Other large fires there occurred independently or combined with other fires started soon thereafter, including one started by a locomotive in Dodson, Oregon. Other accounts cite lightning as the genesis of the fire as well as careless campers and berry pickers, hunters, and loggers cutting slash. The fire spread rapidly, extending from Bridal Veil, Oregon to Cascade Locks, Oregon before burning"} +{"qid": "test1354", "pid": "20330301", "query": "where is the eagle creek fire located in oregon", "answer": "Cascade Locks", "passage": "\"Eagle Creek Fire\"\non the bare ground while the sky glowed red. Several additional staff from the Forest Service arrived overnight with welcome space blankets and some provisions. The next morning, Pacific Northwest Search and Rescue, along with Mountain Wave Search and Rescue, escorted the hikers out to Wahtum Lake and bussed them back to the Eagle Creek Trailhead. The community of Cascade Locks, Oregon was the first to experience mandatory evacuations, with 283 structures, including 15 businesses, being threatened by the fire. Salmon hatcheries at Cascade Locks were forced to release 600,000 fish six months earlier than expected. The fire also threatened"} +{"qid": "test1354", "pid": "20331846", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"2017 Oregon wildfires\"\nFire in Curry County, Oregon, and the Eagle Creek Fire in the Columbia River Gorge National Scenic Area, which was started by illegal fireworks use. Fires in the Columbia River Gorge shut down Interstate 84, the state's major east–west freeway, for several days in early September. The 2016/2017 winter in Oregon was the second wettest winter in the past 75 years. Between the dates of October 1, 2016, and April 26, 2017, Portland International Airport received 45.5 inches (116 centimeters) of rain. The month of February 2017 was the wettest February on record in Oregon with 10.36 inches (26 centimeters)"} +{"qid": "test1354", "pid": "13131813", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek waterfalls\"\nleads to Punch Bowl Falls and continues a further to Tunnel Falls. Eagle Creek waterfalls Eagle Creek is a tributary of the Columbia River in Multnomah and Hood River counties in the U.S. state of Oregon. It cuts through a narrow canyon in its descent to the Columbia River Gorge and is known for its concentration of 13 waterfalls in about distance. Eight major falls are on Eagle Creek and the East Fork Eagle Creek itself, while five are on its tributaries. The highest falls of Eagle Creek is \"\"Twister Falls\"\", which is a unique cascade of . The highest"} +{"qid": "test1354", "pid": "13131803", "query": "where is the eagle creek fire located in oregon", "answer": "Columbia River Gorge", "passage": "\"Eagle Creek waterfalls\"\nEagle Creek waterfalls Eagle Creek is a tributary of the Columbia River in Multnomah and Hood River counties in the U.S. state of Oregon. It cuts through a narrow canyon in its descent to the Columbia River Gorge and is known for its concentration of 13 waterfalls in about distance. Eight major falls are on Eagle Creek and the East Fork Eagle Creek itself, while five are on its tributaries. The highest falls of Eagle Creek is \"\"Twister Falls\"\", which is a unique cascade of . The highest tributary waterfall is \"\"Wauna Falls\"\" which has a total drop of with"} +{"qid": "test1354", "pid": "20330302", "query": "where is the eagle creek fire located in oregon", "answer": "Cascade Locks", "passage": "\"Eagle Creek Fire\"\nhistoric structures in the Eagle Creek Day Use Area, specifically those built by the Civilian Conservation Corps in the 1930s. The fire also threatened the Multnomah Falls Lodge, which was saved by water tenders. As of September 27, the Eagle Creek Fire had burned and was 46% contained. Rainfall during previous days had significantly contained and newly downgraded the fire. The Incident Command Post was relocated from Hood River County Fairgrounds to the Best Western Columbia River Inn in Cascade Locks. In the early hours of September 6, the Eagle Creek Fire merged with the Indian Creek Fire. Fire officials"} +{"qid": "test1355", "pid": "1843759", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Corey Haim\"\nand like 'help Corey,' you know, 'where's our Corey,' you know and the whole misconception thing, from the people out there. Um, you know, they have every right to feel the way they do and things are great with me, as you see, I'm very, good shape now and on the ball. Things are happening.\"\" In a further attempt to regain his wholesome image, Haim set up a pre-recorded drug advice line for teens. He admitted on \"\"The Arsenio Hall Show\"\" that he was high while giving the advice. Fellow \"\"Lost Boys\"\" actor Brooke McCarter began managing Haim in an"} +{"qid": "test1355", "pid": "19990487", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Lost Boys (franchise)\"\nThe Lost Boys (franchise) The Lost Boys is a multimedia franchise about vampires. The original \"\"The Lost Boys\"\" was released in 1987 and starred Jason Patric, Corey Haim, Kiefer Sutherland, Jami Gertz, Corey Feldman, Dianne Wiest, Edward Herrmann, Alex Winter, Jamison Newlander, and Barnard Hughes. A direct-to-DVD sequel, \"\"\"\", was released in 2008. Corey Feldman returned as Edgar Frog, with a cameo by Corey Haim as Sam Emerson. Kiefer Sutherland's half-brother Angus Sutherland plays the lead vampire. A third film entitled \"\"\"\", with Feldman serving as an executive producer in addition to playing Edgar Frog, and Newlander returning as Alan"} +{"qid": "test1355", "pid": "19990491", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Lost Boys (franchise)\"\nof their Cult Classics Movie Figures. Michael also received a figure. The Lost Boys (franchise) The Lost Boys is a multimedia franchise about vampires. The original \"\"The Lost Boys\"\" was released in 1987 and starred Jason Patric, Corey Haim, Kiefer Sutherland, Jami Gertz, Corey Feldman, Dianne Wiest, Edward Herrmann, Alex Winter, Jamison Newlander, and Barnard Hughes. A direct-to-DVD sequel, \"\"\"\", was released in 2008. Corey Feldman returned as Edgar Frog, with a cameo by Corey Haim as Sam Emerson. Kiefer Sutherland's half-brother Angus Sutherland plays the lead vampire. A third film entitled \"\"\"\", with Feldman serving as an executive producer"} +{"qid": "test1355", "pid": "11946821", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"S. Darko\"\na child, entitled \"\"The Last Unicorn\"\", about a princess and a boy named Justin. A boy appears, and commands Corey to come with him in order to save Samantha. She follows him to a cave where she goes through a portal that takes her back in time. Everything moves backwards to when Samantha is walking down the road. Corey and Randy drive up to Samantha again and when they stop, Corey is nicer to her. As Randy drives off, the other car still runs into him, and this time Corey is killed instead. Samantha is devastated by Corey's death. After"} +{"qid": "test1355", "pid": "15593664", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Gathering (Armstrong novel)\"\nit all the way through. Sam is later taken away in the van with Nicole and Annie when the facility is evacuated. She doesn't manage to escape, but moves into Badger Lake with the Tillson's after Maya, Kit, and Antone broker the deal with the Nasts. Corey is Daniel's best guy friend. He has a younger brother named Travis and they are the sons of police chief Carling. The two boys are popular at school. Corey is described to be big and burly with dark hair and about 6'1\"\". He's the second place island wrestling champion next to Daniel. He"} +{"qid": "test1355", "pid": "2919954", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Giles Corey\"\nwife was Mary Bright; they were married on April 11, 1664, when Corey was 53 years old, and she bore him a son named John. In 1676, at the age of 65, Corey was brought to trial in Essex County, Massachusetts, for allegedly beating to death one of his indentured farm workers, Jacob Goodale (also spelled \"\"Goodell\"\" or \"\"Goodall\"\"), son of Robert and Catherine Goodale and brother to Isaac Goodale. According to witnesses, Corey had severely beaten Goodale with a stick after he was allegedly caught stealing apples from Corey's brother-in-law, and though Corey eventually sent him to receive medical"} +{"qid": "test1355", "pid": "2919952", "query": "different ways to spell corey for a boy", "answer": "Cory", "passage": "\"Giles Corey\"\nin Salem, which opened in 1801. His exact grave location in the cemetery is unmarked and unknown. There is a memorial plaque to him in the nearby Charter Street Cemetery. Giles Corey was born in Northampton, England, sometime before 16 August 1611, the date on which he was baptized in the church of the Holy Sepulchre. Giles was the son of Giles and Elizabeth Corey. His birth is recorded in the parish records. His name is quite often spelled \"\"Corey\"\", but the baptismal record is \"\"Cory\"\". It is not certain when exactly he arrived in North America, but there is"} +{"qid": "test1355", "pid": "11698562", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Back to the 80s (musical)\"\nEileen. She confesses that she wants to go to prom with him, but thinks he's going with Eileen. Corey tells her that he turned down every invitation he got because he didn't want to go with anyone but her. Before the prom, Mr. Cocker and Ms. Brannigan make up and resolve their differences. At the prom, the students enjoy the band (\"\"Wake Me Up Before You Go-Go (Reprise)\"\"). The popular boys (Huey, Billy and Lionel) go to prom with the popular girls (Cyndi, Mel and Kim), however, Michael is left without a date. The students begin to dance together, Corey"} +{"qid": "test1355", "pid": "1924860", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Two Coreys\"\nThe Two Coreys The Two Coreys (also known as The Coreys) were two actors, popular in the 1980s, Corey Feldman (born 1971) and Corey Haim (1971–2010). The two young actors appeared in many films together, most notably a number of successful teen-oriented films in the late 1980s. Feldman starred in \"\"Gremlins\"\", \"\"The Goonies\"\", and \"\"\"\" while Haim starred in \"\"Silver Bullet\"\" and \"\"Lucas\"\" before the duo were paired for the first time in 1987's \"\"The Lost Boys\"\". Becoming a brand, The Two Coreys achieved mainstream fame and notoriety as teen idols, but each later experienced a public downfall due to"} +{"qid": "test1355", "pid": "7226610", "query": "different ways to spell corey for a boy", "answer": "Correy", "passage": "Khouri\na priest. Due to the Lebanese diaspora, which started in the late 19th century, the name has acquired different variants in different countries and is also uncommonly spelled as El Khoury, Elcure, Elkhori, Kouri, Couri, Koury, Coury, Kourie, Koory, Koorey, Kuri, Khuri, Khury, Kury, Curi, Cury, Coorey, Courey, Korey, Kory, Corey, Chory, Correy and in Latin America as Kure, Cure, Correa, Juri, Jury, Cura, Jure, Eljure, Aljure or Alcuri. Khouri Khoury (also transliterated as \"\"Khouri\"\" (, \"\"Χούρι\"\"(Greek) () is an Arabic surname that is common to Christians in the Middle East. The term Khoury means \"\"priest\"\" in Arabic. It derives"} +{"qid": "test1355", "pid": "904790", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Corey Feldman\"\nAs Corey Feldman's Truth Movement Corey Feldman Corey Scott Feldman (born July 16, 1971) is an American actor and singer. He became well known during the 1980s, with roles as a youth in films such as \"\"Gremlins\"\" (1984), \"\"The Goonies\"\" (1985) and \"\"Stand by Me\"\" (1986). In 1987, Feldman starred in the horror comedy film \"\"The Lost Boys\"\" with Corey Haim; they became known as \"\"The Two Coreys\"\" and went on to appear in other films together, including \"\"License to Drive\"\" (1988) and \"\"Dream a Little Dream\"\" (1989). Feldman was born in Reseda, California, the son of musician Bob Feldman"} +{"qid": "test1355", "pid": "1924863", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Two Coreys\"\non July 29, 2007. The show was canceled before finishing the second season. The final episode aired August 17, 2008. The Two Coreys The Two Coreys (also known as The Coreys) were two actors, popular in the 1980s, Corey Feldman (born 1971) and Corey Haim (1971–2010). The two young actors appeared in many films together, most notably a number of successful teen-oriented films in the late 1980s. Feldman starred in \"\"Gremlins\"\", \"\"The Goonies\"\", and \"\"\"\" while Haim starred in \"\"Silver Bullet\"\" and \"\"Lucas\"\" before the duo were paired for the first time in 1987's \"\"The Lost Boys\"\". Becoming a brand,"} +{"qid": "test1355", "pid": "1843739", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Corey Haim\"\nCorey Haim Corey Ian Haim (December 23, 1971 – March 10, 2010) was a Canadian actor, known for a 1980s Hollywood career as a teen idol. He starred in a number of films, such as \"\"Lucas\"\", \"\"Silver Bullet\"\", \"\"Murphy's Romance\"\", \"\"License to Drive\"\", \"\"Dream a Little Dream\"\", and \"\"Snowboard Academy\"\". His best-known role was alongside Corey Feldman in \"\"The Lost Boys\"\", which made Haim a household name. Known as The Two Coreys, the duo became 1980s icons and appeared together in seven movies, later starring in the A&E American reality show \"\"The Two Coreys\"\". Haim's early success led to money"} +{"qid": "test1355", "pid": "904768", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Corey Feldman\"\nCorey Feldman Corey Scott Feldman (born July 16, 1971) is an American actor and singer. He became well known during the 1980s, with roles as a youth in films such as \"\"Gremlins\"\" (1984), \"\"The Goonies\"\" (1985) and \"\"Stand by Me\"\" (1986). In 1987, Feldman starred in the horror comedy film \"\"The Lost Boys\"\" with Corey Haim; they became known as \"\"The Two Coreys\"\" and went on to appear in other films together, including \"\"License to Drive\"\" (1988) and \"\"Dream a Little Dream\"\" (1989). Feldman was born in Reseda, California, the son of musician Bob Feldman and cocktail waitress Sheila Feldman."} +{"qid": "test1355", "pid": "1843806", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Corey Haim\"\nthe Writers Guild for \"\"giving a memorial that his friends and fans have wanted\"\". Haim was the subject of a TV program, \"\"Autopsy: The Last Hours of Corey Haim\"\", which premiered on November 23, 2016, on the Reelz channel. Corey Haim Corey Ian Haim (December 23, 1971 – March 10, 2010) was a Canadian actor, known for a 1980s Hollywood career as a teen idol. He starred in a number of films, such as \"\"Lucas\"\", \"\"Silver Bullet\"\", \"\"Murphy's Romance\"\", \"\"License to Drive\"\", \"\"Dream a Little Dream\"\", and \"\"Snowboard Academy\"\". His best-known role was alongside Corey Feldman in \"\"The Lost Boys\"\","} +{"qid": "test1355", "pid": "14222455", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Lost Boys: The Thirst\"\nsequel to the original 1987 film \"\"The Lost Boys\"\", following \"\"\"\". In this sequel, Corey Feldman and Jamison Newlander reprise their roles again as Edgar and Alan Frog. It was released as a direct-to-video film in October 2010. Warner Premiere set the DVD and Blu-ray release for October 12, 2010. It received negative reviews from critics and currently holds a rating on review aggregator site Rotten Tomatoes. Lost Boys: The Thirst Lost Boys: The Thirst is a 2010 horror comedy film directed by Dario Piana and stars Corey Feldman, Casey B. Dolan, Tanit Phoenix and Jamison Newlander. It is a"} +{"qid": "test1355", "pid": "3172276", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Lost Boys\"\nThe Lost Boys The Lost Boys is a 1987 American horror comedy film directed by Joel Schumacher, starring Jason Patric, Corey Haim, Kiefer Sutherland, Jami Gertz, Corey Feldman, Dianne Wiest, Edward Herrmann, Alex Winter, Jamison Newlander, and Barnard Hughes. The film is about two brothers who move to California and end up fighting a gang of young vampires. The title is a reference to the Lost Boys in J. M. Barrie's stories about Peter Pan and Neverland, who, like the vampires, never grow up. The film was followed by two direct-to-video sequels, \"\"\"\" and \"\"\"\" and spawned a franchise with"} +{"qid": "test1355", "pid": "1477923", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Elias James Corey\"\nto honor his father, who died eighteen months after Corey's birth. His widowed mother, brother, two sisters and an aunt and uncle all lived together in a spacious house, struggling through the Great Depression. As a young boy, Corey was rather independent and enjoyed sports such as baseball, football, and hiking. He attended a Catholic elementary school and Lawrence High School in Lawrence, Massachusetts. At the age of 16, Corey entered MIT, where he earned both a bachelor's degree in 1948 and a Ph.D. under Professor John C. Sheehan in 1951. Upon entering MIT, Corey's only experience with science was"} +{"qid": "test1355", "pid": "8215972", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Joel Corey\"\ngave baseball up to pursue a football career. Outside of football, Corey is a quiet, humble person who does not particularly enjoy doing interviews saying even in Primary school speaking in front of the class wasn't his forte. Corey enjoys surfing, in Torquay with teammate Cameron Ling, as he finds it \"\"pretty peaceful, it clears your head\"\". His nickname, Smithy, comes from the fact that his surname is also a popular boys given name. Though Corey still calls Western Australia home, he has no intentions of returning there anytime soon. Corey has two dogs, a Kelpie and a Staffordshire terrier."} +{"qid": "test1355", "pid": "902646", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Teen idol\"\nDemi Moore, Judd Nelson, Molly Ringwald, and Ally Sheedy. They starred in many coming of age films together in some fashion and became incredibly popular without being musicians. Actors Corey Feldman and Corey Haim also became teen idols during the later part of the 1980s with films \"\"The Goonies\"\" and together \"\"The Lost Boys\"\", \"\"Dream a Little dream\"\" and \"\"License to Drive\"\" among other films. They were dubbed \"\"the two Coreys\"\". Before Corey Haim's death in 2010, they did a reality TV show for two seasons (2007–08) on A&E named \"\"The Two Coreys\"\" after their 1980s moniker. Actor River Phoenix"} +{"qid": "test1355", "pid": "7795134", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Bryan Corey\"\nArizona Diamondbacks after being selected 63rd in the expansion draft. After his short spell with the Diamondbacks in , Corey became a Triple-A journeyman, playing for Triple-A affiliates of the Arizona Diamondbacks (), Detroit Tigers (1999), Oakland Athletics (), San Diego Padres (), Los Angeles Dodgers (–), Chicago Cubs (), Florida Marlins (), Texas Rangers (), and Boston Red Sox (2006-). In addition, he pitched in the Japan Central League with the Yomiuri Giants in 2004. On June 19, 2006, Corey had his contract purchased by the Texas Rangers to pitch in the bullpen, but was designated for assignment by"} +{"qid": "test1355", "pid": "12495801", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"Corey's Coming\"\nsong going more indepth about John Joseph's stories and Corey's revelation. This version was often performed at Chapin's concerts. Chapin never really explained in the song who Corey actually is or whether she is real or not. Chapin said the song was about \"\"an old man with a dream and a young boy who buys it\"\" in live version's introduction on \"\"Legends of the Lost and Found\"\". Many listeners believe Corey is an imaginary character that only exists in the mind of John Joseph and his stories, which is why he states that reality is only a word. However, it"} +{"qid": "test1355", "pid": "3172299", "query": "different ways to spell corey for a boy", "answer": "Corey", "passage": "\"The Lost Boys\"\nin 2000. In the film's sequel, \"\"Cry Little Sister\"\" was covered by a Seattle-based rock band, Aiden. The soundtrack was first released on LP and cassette in 1987 by Atlantic Records, then CD in 1990. The Lost Boys The Lost Boys is a 1987 American horror comedy film directed by Joel Schumacher, starring Jason Patric, Corey Haim, Kiefer Sutherland, Jami Gertz, Corey Feldman, Dianne Wiest, Edward Herrmann, Alex Winter, Jamison Newlander, and Barnard Hughes. The film is about two brothers who move to California and end up fighting a gang of young vampires. The title is a reference to the"} +{"qid": "test1357", "pid": "5220982", "query": "how many counties does the state of georgia have", "answer": "159", "passage": "\"Boss Hogg\"\nwho performed frequently on radio, stage, and film prior to his role in \"\"The Dukes of Hazzard\"\". \"\"Boss\"\" Hogg was the sole commissioner of Hazzard County, Georgia, and thus held all executive and judicial powers therein. (In real life, Georgia is the only state which still allows this form of government, and in only nine of its 159 counties.) As the wealthiest man in the county, he would do \"\"almost\"\" anything to get his hands on more money, including executing many nefarious and criminal schemes. However, he does not tolerate anyone (even the Dukes, despite Hogg's constant rivalry with them)"} +{"qid": "test1359", "pid": "2615768", "query": "who made the most free throws in nba history", "answer": "Karl Malone", "passage": "\"Karl Malone\"\nthe records for most free throws attempted and made, in addition to co-holding the record for the second-most first team All-NBA selections in history (tied with Kobe Bryant and behind LeBron James). He is considered one of the best power forwards in NBA history. Malone played college basketball at Louisiana Tech University. In his three seasons with Louisiana Tech, he helped the Bulldogs basketball team to its first-ever NCAA tournament in 1984 and to first place in the Southland Conference in 1985. The Utah Jazz drafted Malone in 1985 with the 13th overall pick in the first round. Malone appeared"} +{"qid": "test1359", "pid": "2615803", "query": "who made the most free throws in nba history", "answer": "Karl Malone", "passage": "\"Karl Malone\"\ntimes. Malone led the NBA in free throws made a league-record seven times. He was a physical defender and rebounder, and one of the most durable players ever in the NBA. He maintained a high level of play even at age 40, becoming the oldest player to both log a triple-double and to be a starter on an NBA Finals-bound team. Malone's work ethic showed prominently in his formative years in the NBA, when he raised his free throw shooting percentage from below 50% to 75%. Malone wore number 32 for the Utah Jazz. He wore number 11 for the"} +{"qid": "test136", "pid": "10138005", "query": "when was catch me if you can made", "answer": "2002", "passage": "\"Catch Me If You Can (soundtrack)\"\nin \"\"The Simpsons\"\" episode \"\"Catch 'Em If You Can\"\". \"\"Catch Me If You Can\"\" was covered by Argentine actress Valentina Zenere in Disney Channel from the Argentine TV series \"\"Soy Luna\"\". Catch Me If You Can (soundtrack) Catch Me If You Can: Music from the Motion Picture is the original soundtrack of the 2002 film of the same name, starring Leonardo DiCaprio, Tom Hanks, Christopher Walken, Martin Sheen and Amy Adams. The original score was composed and conducted by John Williams. The film was the twentieth collaboration between Williams and director Steven Spielberg. The album was also produced by John"} +{"qid": "test136", "pid": "11320882", "query": "when was catch me if you can made", "answer": "2002", "passage": "\"Catch Me If You Can (musical)\"\nCatch Me If You Can (musical) Catch Me If You Can is a musical with a libretto by Terrence McNally and a theatrical score by Marc Shaiman and Scott Wittman. It follows the story of a con artist named Frank Abagnale Jr. A majority of the plot is borrowed from the 2002 film of the same name, which in turn was based on the 1980 autobiography of the same name by Abagnale and Stan Redding. After a tryout musical performance in Seattle in 2009, \"\"Catch Me If You Can\"\" opened at Broadway's Neil Simon Theatre in April 2011. The production"} +{"qid": "test136", "pid": "10138004", "query": "when was catch me if you can made", "answer": "2002", "passage": "\"Catch Me If You Can (soundtrack)\"\nCatch Me If You Can (soundtrack) Catch Me If You Can: Music from the Motion Picture is the original soundtrack of the 2002 film of the same name, starring Leonardo DiCaprio, Tom Hanks, Christopher Walken, Martin Sheen and Amy Adams. The original score was composed and conducted by John Williams. The film was the twentieth collaboration between Williams and director Steven Spielberg. The album was also produced by John Williams. It was nominated for the Academy Award for Best Original Score and the Grammy Award for Best Score Soundtrack for Visual Media. The first track of the soundtrack is featured"} +{"qid": "test136", "pid": "12590615", "query": "when was catch me if you can made", "answer": "2002", "passage": "\"Catch Me If You Can (book)\"\nCatch Me If You Can (book) Catch Me If You Can is the semi-autobiography of Frank Abagnale Jr., a former con artist who, as a young man, cashed $2.5 million worth of bad checks while impersonating a Pan Am pilot, a doctor, a teacher, and an attorney. The book is co-written by Stan Redding, and was adapted into a 2002 film of the same name by director Steven Spielberg, starring Leonardo DiCaprio as Abagnale and Tom Hanks as the FBI agent who pursued him. The book details the life of Frank Abagnale, who was one of the most famous con-artists"} +{"qid": "test136", "pid": "1700922", "query": "when was catch me if you can made", "answer": "2002", "passage": "\"Catch Me If You Can\"\nCatch Me If You Can Catch Me If You Can is a 2002 American biographical crime film directed and produced by Steven Spielberg from a screenplay by Jeff Nathanson. The film stars Leonardo DiCaprio and Tom Hanks, with Christopher Walken, Martin Sheen, and Nathalie Baye in supporting roles. The film is based on the life of Frank Abagnale, who, before his 19th birthday, successfully performed cons worth millions of dollars by posing as a Pan American World Airways pilot, a Georgia doctor, and a Louisiana parish prosecutor. His primary crime was check fraud; he became so experienced that the FBI"} +{"qid": "test1360", "pid": "6793493", "query": "which is the ring finger for male in india", "answer": "the left ring finger", "passage": "\"Only the Ring Finger Knows\"\nOnly the Ring Finger Knows In the school that Wataru Fujii goes to, when one wears matching rings on their right middle finger it is a sign of friendship, a ring on the right ring finger means single, and to wear matching rings on the left ring finger means a couple. One day Wataru accidentally switches rings with the very kind, handsome, popular senior, Yuichi Kazuki, because for some strange twist, their rings match. For reasons that Wataru doesn't understand, Yuichi becomes uncharacteristically mean to Wataru. After this strange incident, Wataru and Kazuki happened to meet more often, starting an"} +{"qid": "test1360", "pid": "6793496", "query": "which is the ring finger for male in india", "answer": "the left ring finger", "passage": "\"Only the Ring Finger Knows\"\nAs of mid-2005, the English-language edition of the manga was in its third printing, with sales of over 12,000 copies. Only the Ring Finger Knows In the school that Wataru Fujii goes to, when one wears matching rings on their right middle finger it is a sign of friendship, a ring on the right ring finger means single, and to wear matching rings on the left ring finger means a couple. One day Wataru accidentally switches rings with the very kind, handsome, popular senior, Yuichi Kazuki, because for some strange twist, their rings match. For reasons that Wataru doesn't understand,"} +{"qid": "test1361", "pid": "7872901", "query": "what disney cartoon character's middle name is fauntleroy", "answer": "Donald Duck", "passage": "\"Nazis in fiction\"\nJapanese involvement in the war, with the Nazis as a backup. The Looney Tunes and Walt Disney Studios used the Nazis as a ploy for their comic characters. However, Disney seemed to concentrate more on the German people within the Nazi Regime, as shown in their 1943 film, \"\"Der Fuehrers' Face\"\", starring Donald Duck. Warner Brothers produced a series of propaganda cartoons named Private Snafu to train recruits on what not to do if they were in a situation similar to those in the cartoons. The comic-book industry were able to boost their sales because of their help in the"} +{"qid": "test1361", "pid": "8267259", "query": "what disney cartoon character's middle name is fauntleroy", "answer": "Donald Duck", "passage": "\"Brand licensing\"\nDisney India, Viacom 18 and Cartoon Network Enterprises. Characters licensed out by Disney India include Mickey Mouse and Donald Duck. Viacom has brought in popular characters from Nickelodeon like Dora The Explorer and SpongeBob SquarePants. Cartoon Network boasts of a portfolio including characters such as Ben 10, Powerpuff Girls, Mr. Bean, Roll no. 21, We Bare Bears. Brand Licensing in Italy started in the seventies with very few Licensing Agencies. Apart from Disney which had its own dedicated office in the market, all the other big Entertainment majors were represented by independent agencies. One of these companies named DIC 2"} +{"qid": "test1361", "pid": "6822526", "query": "what disney cartoon character's middle name is fauntleroy", "answer": "Donald Duck", "passage": "\"Walt Disney Cartoon Classics\"\nreused from: \"\"Goofy Gymnastics\"\" (1948), \"\"How to Play Golf\"\" (1944) These three videos came out originally for Valentine's Day in 1995-96. They are still released almost every year around the beginning of January through the middle of February, and retail for around $10.00 each. The Walt Disney Cartoon Classics series was released in other different countries. Walt Disney Cartoon Classics Walt Disney Cartoon Classics was a series of cartoon compilations from Disney. It was one of their first attempts to put cartoons on home video, after Mickey Mouse and Donald Duck Cartoon Collections. The first 14 volumes, from 1983–1986, came"} +{"qid": "test1364", "pid": "12116641", "query": "where was the movie 500 days of summer filmed", "answer": "Los Angeles", "passage": "\"500 Days of Summer\"\n\"\"Los Angeles Times\"\" describes the film as having \"\"finely honed sense of taste\"\" to include the Bradbury Building where Tom goes for his job interview. To help promote the film, Gordon-Levitt and Deschanel starred in the debut episode of Microsoft Zune and \"\"Mean Magazine\"\"s \"\"Cinemash\"\" series. In the episode, they \"\"mash\"\" the characters from the film \"\"Sid and Nancy\"\" with story elements from \"\"500 Days of Summer\"\". Marc Webb created a music video as a companion piece to the film, titled \"\"The Bank Heist\"\". It features Deschanel and Gordon-Levitt dancing to \"\"Why Do You Let Me Stay Here?\"\", a song"} +{"qid": "test1364", "pid": "12116646", "query": "where was the movie 500 days of summer filmed", "answer": "Los Angeles", "passage": "\"500 Days of Summer\"\nit will end and is about how the hero has no idea why\"\". \"\"Premiere\"\" also awarded the film four stars out of four, stating \"\"Much like the actual summer (the season, not the character), we never wanted it to end\"\". Michael Ordoña of the \"\"Los Angeles Times\"\" gave a positive review. He wrote, \"\"\"\"500 Days of Summer\"\" is something seldom seen: an original romantic comedy. It bristles with energy, emotion and intellect, as it flits about the dizzying highs and weeping-karaoke lows of a passionate entanglement\"\". Dana Stevens of \"\"Slate\"\" also praised the film and described it as \"\"a keeper."} +{"qid": "test1364", "pid": "12116640", "query": "where was the movie 500 days of summer filmed", "answer": "Los Angeles", "passage": "\"500 Days of Summer\"\nreading Alain de Botton's \"\"The Architecture of Happiness\"\". The film was originally set in San Francisco but was later moved to Los Angeles and the script rewritten to make better use of the location. Buildings used include the Los Angeles Music Center (which includes the Dorothy Chandler Pavilion) and the towers of California Plaza. The older Fine Arts Building is featured in the film, in a scene where Tom shows it to Summer and mentions its designers, Walker and Eisen, two of his favorite architects, although he incorrectly gives the partners' names as \"\"Walker and Eisner.\"\" Christopher Hawthorne of the"} +{"qid": "test1366", "pid": "16588133", "query": "where can carbon be found in the biosphere", "answer": "soil", "passage": "\"Terrestrial biological carbon cycle\"\nback into the atmosphere. Part of the net primary production, or the remaining carbon absorbed by the biosphere, is emitted back into the atmosphere through fires and heterotrophic respiration. The rest is converted into soil organic carbon, which is released more slowly, or \"\"inert\"\" dissolved carbon, which can remain in the biosphere for an unknown period of time. Carbon in the terrestrial biosphere enters the geosphere only through highly specialized processes. When anaerobic decomposition converts organic material into hydrocarbon rich materials and is then deposited as sediment, the carbon can enter the geosphere through tectonic processes and remain there for"} +{"qid": "test1366", "pid": "16588132", "query": "where can carbon be found in the biosphere", "answer": "plants", "passage": "\"Terrestrial biological carbon cycle\"\nplants. Carbon storage in the biosphere is influenced by a number of processes on different time-scales: while carbon uptake through autotrophic respiration follows a diurnal and seasonal cycle, carbon can be stored in the terrestrial biosphere for up to several centuries, e.g. in wood or soil. Most carbon leaves the terrestrial biosphere through respiration. When oxygen is present, aerobic respiration occurs, producing carbon dioxide. If oxygen is not present, e.g. as is the case in marshes or in animals' digestive tracts, anaerobic respiration can occur, which produces methane. About half of the gross primary production is respired by plants directly"} +{"qid": "test1366", "pid": "16588130", "query": "where can carbon be found in the biosphere", "answer": "plants", "passage": "\"Terrestrial biological carbon cycle\"\natmosphere, although small amounts of carbon leave the terrestrial biosphere and enter the oceans as dissolved organic carbon (DOC). Most carbon in the terrestrial biosphere is stored in forests: they hold 86% of the planet's terrestrial above-ground carbon and forest soils also hold 73% of the planet's soil carbon. Carbon stored inside plants can be transferred into other organisms during plant consumption. When animals eat plants, for example, the organic carbon stored in the plants is converted into other forms and utilized inside the animals. The same is true for bacteria and other heterotrophs. Dead plant material in or above"} +{"qid": "test1366", "pid": "1703981", "query": "where can carbon be found in the biosphere", "answer": "plants", "passage": "\"Biosphere 2\"\nthus release the stored carbon dioxide in later years when the facility might need additional carbon. Many suspected the drop in oxygen was due to microbes in the soil. The soils were selected to have enough carbon to provide for the plants of the ecosystems to grow from infancy to maturity, a plant mass increase of perhaps 20 tons (18,000 kg). The release rate of that soil carbon as carbon dioxide by respiration of soil microbes was an unknown that the Biosphere 2 experiment was designed to reveal. Subsequent research showed that Biosphere 2's farm soils had reached a more"} +{"qid": "test1366", "pid": "57276", "query": "where can carbon be found in the biosphere", "answer": "soil", "passage": "Biosphere\nthe deepest parts of the ocean, and at least high in the atmosphere. Microorganisms, under certain test conditions, have been observed to survive the vacuum of outer space. The total amount of soil and subsurface bacterial carbon is estimated as 5 × 10 g, or the \"\"weight of the United Kingdom\"\". The mass of prokaryote microorganisms—which includes bacteria and archaea, but not the nucleated eukaryote microorganisms—may be as much as 0.8 trillion tons of carbon (of the total biosphere mass, estimated at between 1 and 4 trillion tons). Barophilic marine microbes have been found at more than a depth of"} +{"qid": "test1366", "pid": "582359", "query": "where can carbon be found in the biosphere", "answer": "other living organisms", "passage": "\"Carbon cycle\"\nmanufacturing concrete. The terrestrial biosphere includes the organic carbon in all land-living organisms, both alive and dead, as well as carbon stored in soils. About 500 gigatons of carbon are stored above ground in plants and other living organisms, while soil holds approximately 1,500 gigatons of carbon. Most carbon in the terrestrial biosphere is organic carbon, while about a third of soil carbon is stored in inorganic forms, such as calcium carbonate. Organic carbon is a major component of all organisms living on earth. Autotrophs extract it from the air in the form of carbon dioxide, converting it into organic"} +{"qid": "test1366", "pid": "2886348", "query": "where can carbon be found in the biosphere", "answer": "plants", "passage": "\"Natural environment\"\nthe capacity for growth, functional activity and the continual change preceding death. A diverse variety of living organisms (life forms) can be found in the biosphere on Earth, and properties common to these organisms—plants, animals, fungi, protists, archaea, and bacteria—are a carbon- and water-based cellular form with complex organization and heritable genetic information. Living organisms undergo metabolism, maintain homeostasis, possess a capacity to grow, respond to stimuli, reproduce and, through natural selection, adapt to their environment in successive generations. More complex living organisms can communicate through various means. An ecosystem (also called as environment) is a natural unit consisting of"} +{"qid": "test1366", "pid": "19160343", "query": "where can carbon be found in the biosphere", "answer": "plants", "passage": "\"Soil regeneration\"\nbiospheres to the atmosphere. By means of oil, gas and irresponsible farming, much of the natural carbon in the earth's pedosphere has been released into the atmosphere, contributing to greenhouse gasses. Agriculture is seen to be one of the main players in the depletion of soil richness in human history. Certain agricultural practices can deplete soil of carbon, such as monoculture, failing to rotate crops sufficiently, and intensive livestock grazing. Soil that is low in carbon will not support plant life and is susceptible to desertification. Without plants, soil cannot hold water sufficiently, and will become dry and brittle over"} +{"qid": "test1367", "pid": "19975753", "query": "who is the winner of bigg boss kannada season", "answer": "Chandan Shetty", "passage": "\"Bigg Boss Kannada (season 5)\"\nBigg Boss Kannada (season 5) Bigg Boss Kannada 5 (BBK5) was the fifth season of the Kannada television series Bigg Boss Kannada, that premiered on 15 October 2017. Sudeep reprised his role as the host of the show. The finale of the season took place 28 January 2018, and rapper Chandan Shetty was declared the winner of the show and was awarded the prize money of 50 lakh. Sales representative Diwaker was voted the runner-up. Sudeep had signed a deal with the channel Colors Kannada to host the next five seasons starting from the previous season. During the grand finale"} +{"qid": "test1367", "pid": "17228350", "query": "who is the winner of bigg boss kannada season", "answer": "Chandan Shetty", "passage": "\"Bigg Boss Kannada\"\nban on the show because of its popularity affecting the performances of movies in the box office. The fifth season of the show was aired in Colors Super, the second Kannada GEC by Viacom18 to increase the viewership for the channel. The season premiered on 15 October 2017 and has been the first season to include non-celebrity housemates selected through online audition process.. The grand finale was held on 28th and 29th January 2018 and Chandan Shetty emerged as the winner. A 'Bigg Boss' House is constructed for every season. For the first two seasons, the house was located in"} +{"qid": "test1370", "pid": "8306456", "query": "where does the saskatchewan river start and end", "answer": "central Saskatchewan", "passage": "\"North Saskatchewan River\"\nNorth Saskatchewan River The North Saskatchewan River is a glacier-fed river that flows from the Canadian Rockies continental divide east to central Saskatchewan, where it joins with another major river to make up the Saskatchewan River. Its water flows eventually into the Hudson Bay. The Saskatchewan River system is the largest shared between the Canadian provinces of Alberta and Saskatchewan. Its watershed includes most of southern and central Alberta and Saskatchewan. The North Saskatchewan River has a length of , and a drainage area of . At its end point at Saskatchewan River Forks it has a mean discharge of"} +{"qid": "test1370", "pid": "9258680", "query": "where does the saskatchewan river start and end", "answer": "the Hudson Bay", "passage": "\"Geography of Saskatchewan\"\nSaskatchewan which are all a part of the Nelson river basin. The Churchill River connects lakes and streams through the lower portion of the Canadian shield. Rupert's Land a historical political division of Canada comprised all lands of the Hudson Bay drainage system between the years 1670 to 1870. Frenchman River does not flow east to Hudson Bay, but rather south to the Missouri River, which is part of the Missouri river basin catchment area. The Mackenzie River basin of north Saskatchewan flows north draining into the Arctic Ocean, which belongs to the Mackenzie river basin drainage area. There are"} +{"qid": "test1370", "pid": "1840162", "query": "where does the saskatchewan river start and end", "answer": "the Hudson Bay", "passage": "\"Saskatchewan River\"\nmajor branches, the North Saskatchewan and the South Saskatchewan, at the Saskatchewan River Forks. Both source rivers originate from glaciers in the Alberta Rockies. The St. Mary River, draining the Hudson Bay Divide region of Glacier National Park, also empties into the Saskatchewan River via the south fork. The combined stream flows east-northeast, into Codette Lake formed by the Francois Finlay Dam at Nipawin then into Tobin Lake, formed by the E.B. Campbell Dam. It then flows northeast, passing through a region of marshes, where it is joined from the northwest by the Torch River and the Mossy River. At"} +{"qid": "test1370", "pid": "11210526", "query": "where does the saskatchewan river start and end", "answer": "central Saskatchewan", "passage": "\"Big River, Saskatchewan\"\nPublic High School (Grade 7 to 12) & TD Michel Public School (Pre-K to Grade 6). They are part of the Saskatchewan Rivers School Division #119 out of Prince Albert. Big River, Saskatchewan Big River is a town located on the southern end of Cowan Lake in north central Saskatchewan, Canada. It is just north of Saskatchewan's extensive grain belt on Highway 55 (part of the inter-provincial Northern Woods and Water Route) and about sixteen kilometres west of Prince Albert National Park. Delaronde Lake is accessed east of the town. Big River is approximately 132 kilometres to Prince Albert. Except"} +{"qid": "test1370", "pid": "11210524", "query": "where does the saskatchewan river start and end", "answer": "central Saskatchewan", "passage": "\"Big River, Saskatchewan\"\nBig River, Saskatchewan Big River is a town located on the southern end of Cowan Lake in north central Saskatchewan, Canada. It is just north of Saskatchewan's extensive grain belt on Highway 55 (part of the inter-provincial Northern Woods and Water Route) and about sixteen kilometres west of Prince Albert National Park. Delaronde Lake is accessed east of the town. Big River is approximately 132 kilometres to Prince Albert. Except for some land cleared for farming and a few natural meadows, the town is surrounded by the northern boreal forest. Big River began as a company town created as a"} +{"qid": "test1371", "pid": "2278650", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Spanish Steps\"\nSpanish Steps The Spanish Steps () are a set of steps in Rome, Italy, climbing a steep slope between the Piazza di Spagna at the base and Piazza Trinità dei Monti, dominated by the Trinità dei Monti church at the top. The monumental stairway of 174 steps (the slightly elevated drainage system is often mistaken for the first step) was built with French diplomat Étienne Gueffier’s bequeathed funds of 20,000 \"\"scudi\"\", in 1723–1725, linking the Bourbon Spanish Embassy, and the Trinità dei Monti church that was under the patronage of the Bourbon kings of France, both located above — to"} +{"qid": "test1371", "pid": "2278662", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Spanish Steps\"\nnovel, \"\"Tender Is the Night\"\". The Steps are featured in Anthony Burgess's 1977 novel, \"\"Abba Abba\"\". Spanish Steps The Spanish Steps () are a set of steps in Rome, Italy, climbing a steep slope between the Piazza di Spagna at the base and Piazza Trinità dei Monti, dominated by the Trinità dei Monti church at the top. The monumental stairway of 174 steps (the slightly elevated drainage system is often mistaken for the first step) was built with French diplomat Étienne Gueffier’s bequeathed funds of 20,000 \"\"scudi\"\", in 1723–1725, linking the Bourbon Spanish Embassy, and the Trinità dei Monti church"} +{"qid": "test1371", "pid": "9164984", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Michelangelo Cerquozzi\"\nfamily, the Colonna family, Cardinal Rapaccioli, Modenese Count Camillo Carandini, count Carpegna and Monsignor Raggi. Many of his patrons were from circles that supported the Spanish cause in Italy. Cerquozzi would also collaborate on designs of Famiano Strada's \"\"De Bello Belgico\"\" celebrating Alessandro Farnese's campaigns to recapture the Spanish Netherlands for the Spanish emperor. His friends included Pietro da Cortona, Giacinto Brandi, and Cornelis Bloemaert. Among his pupils were Matteo Bonicelli and Giovanni Francesco Gerardi. Cerquozzi never married and remained childless. When he died on 29 March 1660 in Rome in his house located near the Spanish Steps he had"} +{"qid": "test1371", "pid": "2278660", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Spanish Steps\"\n\"\"One Shot\"\" from their album \"\"Stories of a Stranger\"\", which contains the lyrics \"\"Rome is burning, you can taste the embers / I am walking hard on Spanish Steps\"\". In 2007, John Tesh of Entertainment Tonight fame, recorded an instrumental tune called \"\"Spanish Steps\"\" on his \"\"A Passionate Life\"\" album. On 16 January 2008, Italian artist Graziano Cecchini covered the Steps with hundreds of thousands of multicoloured plastic balls. He claimed that it was done to make the world notice the situation of the Karen people in Myanmar, and as a protest against the living conditions of artists in Italy."} +{"qid": "test1371", "pid": "19362050", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Three Steps Over Heaven\"\nsees for the first time the writing \"\"Io e te tre metri sopra il cielo\"\" (\"\"Me and you three steps over heaven\"\"), she is in the road that passes under Corso Francia in Rome. The castle is located in the township of Santa Marinella. The film has some substantial differences and omissionsfrom the novel. A CD of the movie soundtrack was released on 4 March 2004 in Italy. Tracks On 9 March 2007, the sequel to the movie \"\"Ho voglia di te\"\" (I want you), was released from the book of the same title. In 2010, a Spanish remake of"} +{"qid": "test1371", "pid": "13368821", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Keats–Shelley Memorial House\"\nSpanish Steps in 1724–25. The project was designed by Francesco de Sanctis, who wanted to frame the steps with an identical building on either side. Keats–Shelley Memorial House The Keats–Shelley Memorial House is a writer's house museum in Rome, Italy, commemorating the Romantic poets John Keats and Percy Bysshe Shelley. The museum houses one of the world's most extensive collections of memorabilia, letters, manuscripts, and paintings relating to Keats and Shelley, as well as Byron, Wordsworth, Robert Browning, Elizabeth Barrett Browning, Oscar Wilde, and others. It is located on the second floor of the building situated just to the south"} +{"qid": "test1371", "pid": "9819269", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Christopher Janney\"\nof photo-electric sensors placed one per step, a computer and sound system, the work has been temporarily set up on an existing stairways (Spanish Steps- Rome, Italy; Metropolitan Museum of Art- New York, NY) and transforms the space into a creatively playful \"\"sound environment\"\" composed of melodic instruments and environmental sounds. The original installation, his MIT thesis, Soundstair ©1978 is a permanent piece in the Boston Museum of Science. Other permanent locations of Soundstair (the musical stairs): Christopher Janney Christopher Janney (born 1950) is an American composer/artist/architect known for his work on the interrelation of architecture and music. Sometimes he"} +{"qid": "test1371", "pid": "7151899", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Robert Underwood Johnson\"\nto the tyranny of vogue.” As Secretary of the American Committee, He was a driving force for the effort to acquire and preserve as the Keats-Shelley museum from a museum the rooms in Rome on Spanish Steps leading up to the Santa Trinita dei Monti church where the poet John Keats and his friend Joseph Severn spent Keats's final months in 1821. Percy Shelley apparently resided temporarily in a home across the steps. He served as the U.S. Ambassador to Italy from April 1920 to July 1921, and represented the United States as observer at the San Remo conference of"} +{"qid": "test1371", "pid": "18940739", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Spanish Steps (Washington D.C.)\"\nlocated at the top of the steps. Following a car collision that damaged the original balustrade and fountain, the steps were restored in 1999. Spanish Steps (Washington D.C.) The Spanish Steps are an urban arrangement in the Kalorama neighborhood of Washington, D.C., on 22nd Street NW just south of S Street NW. Inspired by the City Beautiful movement, the steps accommodate a steep difference of level between S Street and the parallel immediately to the south, Decatur Place NW. Named with reference to the Spanish Steps in Rome, though obviously of no comparable scale and grandeur, they were designed by"} +{"qid": "test1371", "pid": "13362543", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Babington's tea room\"\nBabington's tea room Babington's tea room, established in 1893, is a traditional English tea shop at the foot of the Spanish Steps in the Piazza di Spagna in Rome, Italy. The shop was founded in 1893 by Isabel Cargill and Anne Marie Babington, two English women, with the intention of catering for the many English-speaking people in Rome. Originally the tea room was on Via dei Due Macelli, a sideroad of the Piazza di Spagna, but the establishment's success encouraged the owners to relocate to the Piazza di Spagna 23. It is located on the ground floor of an 18th-century"} +{"qid": "test1371", "pid": "3440103", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Piazza di Spagna\"\nPiazza di Spagna Piazza di Spagna, at the bottom of the Spanish Steps, is one of the most famous squares in Rome (Italy). It owes its name to the Palazzo di Spagna, seat of the Embassy of Spain among the Holy See. Nearby is the famed Column of the Immaculate Conception of the Blessed Virgin Mary. In the middle of the square is the famous Fontana della Barcaccia, dating to the beginning of the baroque period, sculpted by Pietro Bernini and his son, the more famous Gian Lorenzo Bernini. At the right corner of the Spanish Steps rises the house"} +{"qid": "test1371", "pid": "12445101", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Benito Mussolini\"\nSpain, and was seen by the British Foreign Office as the first step towards creating an Anglo-Italian alliance. In April 1938, Britain and Italy signed the Easter Accords under which Britain promised to recognise Ethiopia as Italian in exchange for Italy pulling out of the Spanish Civil War. The Foreign Office understood that it was the Spanish Civil War that was pulling Rome and Berlin closer together, and believed if Mussolini could be persuaded to disengage from Spain, then he would return to the Allied camp. To get Mussolini out of Spain, the British were prepared to pay such prices"} +{"qid": "test1371", "pid": "12637438", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Frederick Lee Bridell\"\nlandscape within which light moves through the scene, highlighting form and shadow. In his subjects, Bridell was much influenced by Turner, but he remained true to his own style. The Temple of Venus, Bridell hoped would one day hang between the Turners and Claudes in the National Gallery. The present location of this work is unknown, last appearing at auction in 1913. Freed from financial constraint, Bridell was able to travel to Italy in the autumn of 1858. He set up a studio in Rome, near the Spanish Steps,in December of that year. There are entertaining descriptions of life in"} +{"qid": "test1371", "pid": "10810993", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Palazzo Malta\"\nPalazzo Malta Palazzo Malta, officially named as the Magistral Palace (), and also known as \"\"Palazzo di Malta\"\" or \"\"Palazzo dell'Ordine di Malta\"\", is the most important of the two headquarters of the Sovereign Military Order of Malta (the other being Villa Malta), a Roman Catholic lay religious order and a sovereign subject of international law. It is located in Via dei Condotti 68 in Rome, Italy, a few minutes' walk from the Spanish Steps, and has been granted extraterritoriality by the Italian Government. The Palace is a property of the Order of Malta since 1630. On 12 June 1798,"} +{"qid": "test1371", "pid": "10810998", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Palazzo Malta\"\nPalazzo Malta Palazzo Malta, officially named as the Magistral Palace (), and also known as \"\"Palazzo di Malta\"\" or \"\"Palazzo dell'Ordine di Malta\"\", is the most important of the two headquarters of the Sovereign Military Order of Malta (the other being Villa Malta), a Roman Catholic lay religious order and a sovereign subject of international law. It is located in Via dei Condotti 68 in Rome, Italy, a few minutes' walk from the Spanish Steps, and has been granted extraterritoriality by the Italian Government. The Palace is a property of the Order of Malta since 1630. On 12 June 1798,"} +{"qid": "test1371", "pid": "13362544", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Babington's tea room\"\nbuilding from which one can see the Spanish Steps, the staircase of the Trinità dei Monti church. Babington's survived two world wars, the advent of fast food and various economic crises, to become a Roman institution and tourist attraction. Babington's tea room Babington's tea room, established in 1893, is a traditional English tea shop at the foot of the Spanish Steps in the Piazza di Spagna in Rome, Italy. The shop was founded in 1893 by Isabel Cargill and Anne Marie Babington, two English women, with the intention of catering for the many English-speaking people in Rome. Originally the tea"} +{"qid": "test1371", "pid": "19353677", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Roberto Wirth\"\nRoberto Wirth Roberto Enrico Wirth (born May 25, 1950 in Rome) is the owner and Managing Director of the Hotel Hassler, a five-star hotel located at the top of the Spanish Steps in Rome, Italy. Roberto E. Wirth represents the fifth generation of Swiss hoteliers. His parents Oscar Wirth and Carmen Bucher Wirth were both descendants of two families of hoteliers: the Bucher family from the Luzern area in Switzerland and the Wirth family from Maulach, Germany. Wirth was born profoundly deaf. He is the founder and President of CABSS Assistance Center for Deaf and Deafblind Children / Centro Assistenza"} +{"qid": "test1371", "pid": "19353687", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Roberto Wirth\"\ndeaf and forced to confront the prejudices of others, starting with those of his own family. The copyright fees are donated to non-profit CABSS (Assistance Center for Deaf and Deafblind Children), the association founded by Roberto Wirth dedicated to the support of deaf and deafblind children. Roberto Wirth Roberto Enrico Wirth (born May 25, 1950 in Rome) is the owner and Managing Director of the Hotel Hassler, a five-star hotel located at the top of the Spanish Steps in Rome, Italy. Roberto E. Wirth represents the fifth generation of Swiss hoteliers. His parents Oscar Wirth and Carmen Bucher Wirth were"} +{"qid": "test1371", "pid": "13368817", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Keats–Shelley Memorial House\"\nKeats–Shelley Memorial House The Keats–Shelley Memorial House is a writer's house museum in Rome, Italy, commemorating the Romantic poets John Keats and Percy Bysshe Shelley. The museum houses one of the world's most extensive collections of memorabilia, letters, manuscripts, and paintings relating to Keats and Shelley, as well as Byron, Wordsworth, Robert Browning, Elizabeth Barrett Browning, Oscar Wilde, and others. It is located on the second floor of the building situated just to the south of the base of the Spanish Steps and east of the Piazza di Spagna. In November 1820, the English poet John Keats, who was dying"} +{"qid": "test1371", "pid": "19072916", "query": "where are the spanish steps located in italy", "answer": "Rome", "passage": "\"Monument of Piazza Mentana\"\nwith Garibaldi against the Franco-papal forces, died at the Battle of Mentana and the next day at Monterotondo. The plaque reads: \"\"To the Brave who fell at Mentana, consecrating Rome to Free Italy\"\". The bronze group depicts two soldiers: one holding aloft and aiming a revolver, while he holds a wounded companion who still raises a flag or standard. Critics noted the similarities of the subject to the \"\"Monument to the Cairoli Brothers\"\" (1883) by Ercole De Rosa, a statue located near the Spanish Steps in Rome, which display a similar dramatic event with two soldiers. (Mazzanti). Both statues also"} +{"qid": "test1372", "pid": "5121760", "query": "what does the m number mean on a pint glass", "answer": "the manufacturing company or site", "passage": "\"Pint glass\"\ncertain steps be taken to ensure that a pint of beer is indeed a pint. Though this can be achieved using \"\"metered dispense\"\" (calibrated pumps), the more common solution is to use certified one-pint glasses. Until recently these had a crown stamp indicating that the certification had been done by an agency of the Crown. The number etched upon the glasses stands for the manufacturing company or site. Most pint glasses used in the United Kingdom today have actually been produced in France. Under the EU Measuring Instruments Directive (Directive 2004/22/EC), the certification of measuring instruments and devices used in"} +{"qid": "test1373", "pid": "176010", "query": "other than water what else has hydrogen bonds", "answer": "inorganic molecules such as water", "passage": "\"Hydrogen bond\"\nthem somewhat stronger than a van der Waals interaction, and weaker than fully covalent or ionic bonds. This type of bond can occur in inorganic molecules such as water and in organic molecules like DNA and proteins. Intermolecular hydrogen bonding is responsible for the high boiling point of water (100 °C) compared to the other group 16 hydrides that have much weaker hydrogen bonds. Intramolecular hydrogen bonding is partly responsible for the secondary and tertiary structures of proteins and nucleic acids. It also plays an important role in the structure of polymers, both synthetic and natural. In 2011, an IUPAC"} +{"qid": "test1374", "pid": "5120396", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Waiting for a Star to Fall\"\nWaiting for a Star to Fall \"\"Waiting for a Star to Fall\"\" is a song released by the pop duo Boy Meets Girl in 1988. It was a worldwide hit and became their signature song. Since its release, it has been remixed and covered by many artists, including Cabin Crew and Sunset Strippers. The song was inspired by an actual falling star that Shannon Rubicam had seen at one of Whitney Houston's concerts at the Greek Theatre. Initially, the duo did not consider recording it, and instead submitted the song to Clive Davis hoping he would decide to use it"} +{"qid": "test1374", "pid": "5233611", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Boy Meets Girl (band)\"\nBoy Meets Girl (band) Boy Meets Girl is an American pop-music duo consisting of keyboardist and vocalist George Merrill and singer Shannon Rubicam. They are perhaps best known for their hit song \"\"Waiting for a Star to Fall\"\" from 1988 and for writing two of Whitney Houston's number one hits: \"\"How Will I Know\"\" and \"\"I Wanna Dance with Somebody (Who Loves Me).\"\" The members of Boy Meets Girl, George Merrill and Shannon Rubicam, wrote and composed a number of songs for other artists. Most famous are their two number one hits written for Whitney Houston, \"\"How Will I Know\"\""} +{"qid": "test1374", "pid": "5120401", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Waiting for a Star to Fall\"\nthe UK Singles Chart in March 2005. Meanwhile, SonyBMG had Sunset Strippers remix the original track under the title \"\"Falling Stars\"\", which was released a week after the Cabin Crew version, and made number three on the UK Singles Chart. This caused some confusion at the time, with two songs being released into the charts around the same time that sounded essentially the same. Weekly charts Year-end charts Weekly charts Year-end charts Waiting for a Star to Fall \"\"Waiting for a Star to Fall\"\" is a song released by the pop duo Boy Meets Girl in 1988. It was a"} +{"qid": "test1374", "pid": "12393536", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Shannon Rubicam\"\nShannon Rubicam Shannon Rubicam (born October 11, 1951 in Seattle, Washington) is an American female singer/songwriter who is best known for being half of the mid-to-late-1980s pop duo Boy Meets Girl. Her husband, George Merrill, was the other half of Boy Meets Girl, who are best remembered for their 1988 hit \"\"Waiting for a Star to Fall\"\". Merrill and Rubicam first met in 1975 when both were performing at a friend's wedding. The couple also wrote two hit songs for Whitney Houston, \"\"How Will I Know\"\" and \"\"I Wanna Dance with Somebody (Who Loves Me)\"\", both of which hit Number"} +{"qid": "test1374", "pid": "5233624", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Sunset Strippers\"\nSunset Strippers Sunset Strippers are an electronic music group from the UK. They are known for their 2005 song \"\"Falling Stars\"\" which sampled the 1988 hit song \"\"Waiting for a Star to Fall\"\" by Boy Meets Girl, and was involved in a sampling battle with Cabin Crew. \"\"Star To Fall\"\" and reached number 3 in the UK Singles Chart in March 2005. The music video for \"\"Falling Stars\"\" features Benji Weeratunge listening to the song in his headphones while washing his clothes in a launderette. Three attractive young women enter the launderette and begin to dance all at once while"} +{"qid": "test1374", "pid": "5233619", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Cabin Crew\"\nCabin Crew Cabin Crew (also known as Aviators, RobKAY and Ben Garden and others) are a dance music duo from Sydney, Australia that consists of DJs and record producers Ben Garden and Rob Kittler. They are best known for their song \"\"Star to Fall\"\" (also known as \"\"Star2Fall\"\"), which is a remix of the 1988 hit song \"\"Waiting for a Star to Fall\"\" by Boy Meets Girl, a song that was involved in a \"\"sample battle\"\" with Sunset Strippers. Cabin Crew originally remixed the track, but SonyBMG would not clear the sample for release. Instead, they enlisted Sunset Strippers to"} +{"qid": "test1374", "pid": "18108659", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Higher (Star Pilots song)\"\nwell as Survivors' song 1982 song \"\"Eye of the Tiger\"\". Higher (Star Pilots song) \"\"Higher\"\" is a song written by Johan Fjellström, Joakim Udd and Johan Becker, and performed by Star Pilots at Melodifestivalen 2009. The song was performed in the 4th semifinal inside the Malmö Arena on 28 February 2009, and went further to Andra chansen where it ended up knocked out. The single peaked at 6th position at the Swedish singles chart. Several newspaper readers in Sweden blamed the song for being similar to the 1988 Boy Meets Girl song \"\"Waiting For a Star to Fall\"\" and the"} +{"qid": "test1374", "pid": "18108658", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"Higher (Star Pilots song)\"\nHigher (Star Pilots song) \"\"Higher\"\" is a song written by Johan Fjellström, Joakim Udd and Johan Becker, and performed by Star Pilots at Melodifestivalen 2009. The song was performed in the 4th semifinal inside the Malmö Arena on 28 February 2009, and went further to Andra chansen where it ended up knocked out. The single peaked at 6th position at the Swedish singles chart. Several newspaper readers in Sweden blamed the song for being similar to the 1988 Boy Meets Girl song \"\"Waiting For a Star to Fall\"\" and the 2008 Jenny \"\"Velvet\"\" Petterssons song \"\"Take My Body Close\"\" as"} +{"qid": "test1374", "pid": "12393520", "query": "when boy meets girl waiting for a star to fall", "answer": "1988", "passage": "\"George Merrill (songwriter)\"\nGeorge Merrill (songwriter) George Merrill (born January 10, 1956) is an American songwriter whose work mostly dates from the mid- to late 1980s. He co-wrote \"\"How Will I Know\"\", which was a hit for Whitney Houston in 1986, as well as Houston's 1987 hit \"\"I Wanna Dance with Somebody (Who Loves Me)\"\". From the mid- to late 1980s to the present day, Merrill has been one half of vocal duo Boy Meets Girl, who are best remembered for the late-1988 hit \"\"Waiting for a Star to Fall\"\". He wrote the song and had initially offered it to Houston and Belinda"} +{"qid": "test1375", "pid": "20595720", "query": "trick taking card game name derived from spanish for man", "answer": "Skat", "passage": "\"Officers' Skat\"\nbarracks, but not at the skat table, so often there was no third man.\"\" As a result, a variation of skat for two players was derived. The name coachman's skat (\"\"Kutscherskat\"\") comes from the fact that coachmen were supposed to have whiled away their waiting time with this game, while their gentlemen went off to a social event, there being often 2 coachmen (including the postilion per coach. The cards were laid out between the coaches on the coach box. Officers' Skat Officers' Skat (\"\"Offiziersskat\"\"), is a trick-taking card game for two players which is based on the rules of"} +{"qid": "test1376", "pid": "1937271", "query": "what percentage of the population is naturally blonde", "answer": "2%", "passage": "\"Human hair color\"\nof both. More pheomelanin creates a more golden or strawberry blond color, and more eumelanin creates an ash or sandy blond color. Many children born with blond hair develop darker hair as they age, with the majority of natural blonds developing a hair color of a dark blond hue by the time they reach middle age. Pregnancy hormones hasten this process. Natural light blond hair is rare in adulthood, with claims of the world's population ranging from 2% naturally blond to 16% in the US. Blond hair is most commonly found in Northern and Western Europeans and their descendants but"} +{"qid": "test1376", "pid": "2564467", "query": "what percentage of the population is naturally blonde", "answer": "2%", "passage": "Blond\nFrench females are natural blondes, of which 60% bleach their hair to a lighter tone of blond. In Portugal, an average 11% of the population shows traces of blondism, peaking at 14.3–15.1% blond people in Póvoa de Varzim in northern Portugal. In northern Spain, 17% of the population shows traces of blondism, but in southern Spain just 2% of the people are blond. In Italy, a study of Italian men conducted by Ridolfo Livi between 1859 and 1863 on the records of the National Conscription Service showed that 8.2% of Italian men exhibited blond hair. Blondism frequency varies among regions"} +{"qid": "test1377", "pid": "9426694", "query": "when was the last time miss texas won miss america", "answer": "1975", "passage": "\"Debra Maffett\"\nDebra Maffett Debra Sue Maffett (born November 9, 1956) is an American beauty pageant titleholder from Cut and Shoot, Texas and was named Miss America 1983. Maffett graduated from S.P. Waltrip High School in Houston, Texas, in 1975. Although she competed in the Miss Texas pageant several years without winning, she moved to California and was subsequently crowned Miss California 1982. She represented California when she won the Miss America crown. Some controversy arose after it was revealed that Maffett underwent nasal surgery to correct her deviated septum. Maffett served as a host on, \"\"PM Magazine,\"\" NBC and CBS pilots,"} +{"qid": "test1377", "pid": "5253278", "query": "when was the last time miss texas won miss america", "answer": "1975", "passage": "\"Miss Texas\"\nMiss Texas The Miss Texas competition was founded in 1937 as a scholarship contest for young women. The winner represents Texas in the Miss America pageant; three winners have gone on to be crowned Miss America (but none since 1975). To become Miss Texas, a contestant must first win a local competition. A young woman may compete at the local and state level more than once, but may only compete in the national Miss America competition one time. Hundreds of women participate each year in the local pageants, culminating in the selection of local finalists who compete for the Miss"} +{"qid": "test1377", "pid": "5253280", "query": "when was the last time miss texas won miss america", "answer": "1975", "passage": "\"Miss Texas\"\nMiss Texas 2018 on June 30, 2018 at Eisemann Center in Richardson, Texas. She will compete for the title of Miss America 2019 on September 9, 2018 in Atlantic City, New Jersey. The year in parentheses indicates the year of the Miss America competition the award/placement was garnered. Miss Texas The Miss Texas competition was founded in 1937 as a scholarship contest for young women. The winner represents Texas in the Miss America pageant; three winners have gone on to be crowned Miss America (but none since 1975). To become Miss Texas, a contestant must first win a local competition."} +{"qid": "test1377", "pid": "5180946", "query": "when was the last time miss texas won miss america", "answer": "1975", "passage": "\"Shirley Cothran\"\nTexas 1974 and won the Miss America 1975 title. She currently tours as a motivational speaker and still resides in Texas. She married Richard Barret in 1976 and has four children, David, Julia, John, and Mark. Shirley Cothran Shirley Cothran Barret (born September 18, 1952 in Denton County, Texas) is an American beauty pageant titleholder from Texas. She graduated from Denton High School in 1970 and was the second Miss America from that high school as Phyllis George was crowned Miss America before her in 1971. She later attended North Texas State University and earned her bachelor of science in"} +{"qid": "test1378", "pid": "3201593", "query": "who sang first line of we are the world", "answer": "Lionel Richie", "passage": "\"We Are the World\"\nlines in the song's repetitive chorus proclaim, \"\"We are the world, we are the children, we are the ones who make a brighter day, so let's start giving\"\". \"\"We Are the World\"\" opens with Lionel Richie, Stevie Wonder, Paul Simon, Kenny Rogers, James Ingram, Tina Turner, and Billy Joel singing the first verse. Michael Jackson and Diana Ross follow, completing the first chorus together. Dionne Warwick, Willie Nelson, and Al Jarreau sing the second verse, before Bruce Springsteen, Kenny Loggins, Steve Perry, and Daryl Hall go through the second chorus. Co-writer Jackson, Huey Lewis, Cyndi Lauper, and Kim Carnes follow"} +{"qid": "test1379", "pid": "2876946", "query": "who formed and first came to the colony of maryland", "answer": "the English", "passage": "\"George Calvert, 1st Baron Baltimore\"\nwhich would become the state of Maryland. Calvert died five weeks before the new Charter was sealed, leaving the settlement of the Maryland colony to his son Cecil (1605–1675). His second son Leonard Calvert (1606–1647) was the first colonial governor of the Province of Maryland. Little is known of the ancestry of the Yorkshire branch of the Calverts. At George Calvert's knighting, it was claimed that his family originally came from Flanders (a Dutch-speaking area today across the English Channel in modern Belgium). Calvert's father, (an earlier) Leonard, was a country gentleman who had achieved some prominence as a tenant"} +{"qid": "test1379", "pid": "8756224", "query": "who formed and first came to the colony of maryland", "answer": "the English", "passage": "\"Charles Neale\"\nCharles Neale Charles Neale (1751–1823) was a leader of the Jesuit mission in America. He was born in the Catholic colony of Maryland to a prominent family, descended from Captain James Neale, who had settled in the colony in 1642 with a royal grant of land of two thousand acres. The family traced its origins to the noble O'Neill family of Ireland, from whom came the kings of Ulster. Among his direct descendants were Oswald Neale (grandfather to Charles) and his brother, Father Bennett Neale, S.J., one of the first Jesuits in the English colony. Charles' siblings included Father William"} +{"qid": "test1379", "pid": "2699556", "query": "who formed and first came to the colony of maryland", "answer": "the English", "passage": "\"Province of Maryland\"\nProvince of Maryland The Province of Maryland was an English and later British colony in North America that existed from 1632 until 1776, when it joined the other twelve of the Thirteen Colonies in rebellion against Great Britain and became the U.S. state of Maryland. Its first settlement and capital was St. Mary's City, in the southern end of St. Mary's County, which is a peninsula in the Chesapeake Bay and is also bordered by four tidal rivers. The province began as a proprietary colony of the English Lord Baltimore, who wished to create a haven for English Catholics in"} +{"qid": "test138", "pid": "3663790", "query": "what is the official symbol of the carnival of quebec", "answer": "Bonhomme Carnaval", "passage": "\"Ceinture fléchée\"\nthe time. It is adorned by an arrowed pattern and was worn around the winter coats of the time. It is also a symbol of the Lower Canada Rebellion and the Quebec Winter Carnival, as it is worn by the festival mascot, Bonhomme Carnaval. Imitations are sold and seen throughout the carnival. The belt is represented in a number of artistic creations, such as the illustration \"\"Le Vieux de '37\"\" by Henri Julien, the painting \"\"L'Assemblée des six-comtés\"\" by Charles Alexander Smith and the song \"\"Mon Pays, suivi du Reel des Aristocrates\"\" from néo-trad musical band Les Cowboys Fringants. The"} +{"qid": "test138", "pid": "3549948", "query": "what is the official symbol of the carnival of quebec", "answer": "Bonhomme Carnaval", "passage": "\"Quebec Winter Carnival\"\nQuebec Winter Carnival The Quebec Winter Carnival (), commonly known in both English and French as Carnaval, is a pre-Lenten festival held in Quebec City. After being held intermittently since 1894, the \"\"Carnaval de Québec\"\" has been celebrated annually since 1955. That year \"\"Bonhomme Carnaval\"\", the mascot of the festival, made his first appearance. Up to one million people attended the \"\"Carnaval de Québec\"\" in 2006 making it, at the time, the largest winter festival in the world (since overtaken by the Harbin Festival). The most famous attractions of this winter festival are the night-time and daytime parades led by"} +{"qid": "test138", "pid": "3549949", "query": "what is the official symbol of the carnival of quebec", "answer": "Bonhomme Carnaval", "passage": "\"Quebec Winter Carnival\"\nmascot Bonhomme Carnaval. The parades wind through the upper city, decorated for the occasion with lights and ice sculptures. Numerous public and private parties, shows and balls are held across the city, some of them outside in the bitter cold, testimony to the Québécois' fabled joie de vivre. Other major events include: Outdoor dance parties are held at the Ice Palaces. Also not part of the official program but worth a visit or a stay, the Quebec City Ice Hotel is open every year from early January to late March with its bar, nightclub, exhibition galleries and ceremonial chapel. Quebec"} +{"qid": "test1380", "pid": "8008409", "query": "who has played in the most masters tournaments", "answer": "Gary Player", "passage": "\"Wentworth Senior Masters\"\nwas £250,000. Wentworth Senior Masters The Wentworth Senior Masters was a men's professional golf tournament on the European Seniors Tour from 1997 to 2007. The first tournament was won by multi-major winner Gary Player. It was staged at the Wentworth Club beyond the western fringe of London, which has the headquarters of the PGA European Tour European Seniors Tour Championship, as the Seniors Tour's fixed location tournament. It was played on the Edinburgh Course. The two European Tour tournaments at the club (the corporate-sponsored PGA Championship and the World Play Championship) were played over the West Course. In 2007 the"} +{"qid": "test1380", "pid": "8008408", "query": "who has played in the most masters tournaments", "answer": "Gary Player", "passage": "\"Wentworth Senior Masters\"\nWentworth Senior Masters The Wentworth Senior Masters was a men's professional golf tournament on the European Seniors Tour from 1997 to 2007. The first tournament was won by multi-major winner Gary Player. It was staged at the Wentworth Club beyond the western fringe of London, which has the headquarters of the PGA European Tour European Seniors Tour Championship, as the Seniors Tour's fixed location tournament. It was played on the Edinburgh Course. The two European Tour tournaments at the club (the corporate-sponsored PGA Championship and the World Play Championship) were played over the West Course. In 2007 the prize fund"} +{"qid": "test1382", "pid": "142444", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"FA Cup\"\nwinners of the FA Cup since the League's creation. Other than Tottenham's victory, only 24 finalists have come from outside English football's top tier, with a record of 7 wins and 17 runners-up: and none at all from the third tier or lower, Southampton (1902, then in the Southern League) being the last finalist from outside the top two tiers. Sunderland's win in 1973 was considered a major upset, having beaten Leeds United who finished third in the top flight that season., as was West Ham's victory over Arsenal in 1980 as the Gunners were in their third successive FA"} +{"qid": "test1382", "pid": "6657508", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"1992–93 in English football\"\nAston Villa and Norwich City mirrors that of the final Second Division table of 1974-75, the last season Manchester United played outside the top flight. Blackburn Rovers won the Third Division the same season. Arsenal became the first team to win the FA Cup and League Cup in the same season, beating Sheffield Wednesday 2–1 in both finals. Steve Morrow scored the winning goal in the League Cup final, but was accidentally dropped by captain Tony Adams during the post-match celebrations, broke his arm and missed the FA Cup triumph. Arsenal's double gave them two places in UEFA competitions, meaning"} +{"qid": "test1382", "pid": "9610719", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"1980 FA Cup Final\"\n1980 FA Cup Final The 1980 FA Cup Final was contested by West Ham United and Arsenal at Wembley. West Ham won by a single goal, scored by Trevor Brooking. To date, it is the last time a team from outside the top flight has won the FA Cup. It was West Ham's third FA Cup triumph and the last time that they have won a major trophy. The 1980 Cup Final was the 99th final to be played since 1872, and the 52nd to be played at Wembley since 1923. The tie involved Arsenal, who had played in the"} +{"qid": "test1382", "pid": "11299915", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"History of the FA Cup\"\nin the 1973 FA Cup Final, Sunderland were the first Cup winners from outside the top flight since West Bromwich Albion in 1931. The feat was repeated twice over the next seven seasons (by Southampton in 1976 and West Ham United in 1980) but has not been accomplished since. In 1980, West Ham United became the last side to date to win the competition from outside the top division in football. They were a Second Division outfit when they beat holders Arsenal 1–0 thanks to a goal by Trevor Brooking. Four second level clubs – Queens Park Rangers in 1982,"} +{"qid": "test1382", "pid": "3652184", "query": "last team to win fa cup outside top flight", "answer": "West Ham United", "passage": "\"Lawrie McMenemy\"\ninto double figures). However Southampton, who were in the Second Division at the time (the current Championship) and had a much older team, put up a stern challenge for United. The only goal of the game was scored by Bobby Stokes with just seven minutes to go, and captain Peter Rodrigues received the FA Cup from the Queen. They were the second club in four seasons to win the FA Cup from outside the First Division of English football after Sunderland in 1973 and only one more side from outside the top flight (West Ham United in 1980) has won"} +{"qid": "test1382", "pid": "7171236", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"1979–80 in English football\"\nthan league championships. Arsenal faced Valencia of Spain in the European Cup Winners' Cup final, days after their FA Cup final loss. It finished goalless after extra time, and Arsenal lost the penalty shoot-out after misses from Liam Brady and Graham Rix. Second Division West Ham United, managed by John Lyall, won the FA Cup, beating Arsenal 1–0 with a Trevor Brooking goal. They are the last team to win the FA Cup from outside the top division. Wolverhampton Wanderers overcame the challenge of European champions Nottingham Forest to lift their second League Cup. The match finished 1–0 with a"} +{"qid": "test1382", "pid": "19470097", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"2016–17 Arsenal F.C. season\"\n2016–17 Arsenal F.C. season The 2016–17 season was Arsenal's 25th in the Premier League and 97th consecutive season in the top flight of English football. The club participated in the Premier League, FA Cup, EFL Cup and the UEFA Champions League. Arsenal finished outside the top four of the Premier League for the first time since the 1995–96 season, but they won the FA Cup for a record 13th time, beating Chelsea 2–1 in the final. The victory saw manager Arsène Wenger become the most successful manager in FA Cup history with seven wins. The season covers the period from"} +{"qid": "test1382", "pid": "14457086", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"West Yorkshire derby\"\nyet to return to the top flight since 2004. Huddersfield Town were the first team in English football to win the First Division title three times in a row back in the 1920s – a feat only matched by Liverpool, Manchester United and Arsenal – they also claimed the FA Cup, Charity Shield and finished as runners-up in the league three times in this period. Huddersfield spent 45 years outside of the top flight between 1972 and 2017. \"\"The Terriers\"\" had numerous promotions and relegations between the second, third and fourth tiers of English football. However, under their new manager"} +{"qid": "test1382", "pid": "7070018", "query": "last team to win fa cup outside top flight", "answer": "Arsenal", "passage": "\"Charlton Athletic W.F.C.\"\nthe process. The team also reached the semi final of the Women's FA Cup, where they lost 2–0 to treble-winning Arsenal. In 1993–94 Bromley Borough won the National League Division One South by ten points, securing promotion into the top flight of English women's football. Although they were handed a chastening 10–1 defeat by Doncaster Belles in the fifth round of the FA Women's Cup Following a swift rise through the divisions, the club won promotion into the National Premier League. The club entered the top-flight as Croydon, having tied up with Croydon FC. Debbie Bampton was appointed player-manager in"} +{"qid": "test1383", "pid": "1554617", "query": "where did you go to drink during prohibition", "answer": "Speakeasies", "passage": "Speakeasy\nwhich Prohibition is indirectly responsible. \"\"Blind tiger\"\" also referred to illegal drinking establishment in which the seller's identity was concealed. A drawer runs into a wall of what appears to be a billiard saloon. You pull out the drawer, drop in your change, shove the drawer back, call for what you want and then pull out the drawer again and there it is, \"\"Straight\"\" or \"\"Spiked\"\" just as you'd have it. Nobody is heard or seen, and the blind tiger, apparently without any keeper, works like a charm. Speakeasies, though illegal, were numerous and popular during the Prohibition years. Some"} +{"qid": "test1384", "pid": "2382635", "query": "where does the edinburgh fringe festival take place", "answer": "in Edinburgh, Scotland", "passage": "\"Edinburgh Festival Fringe\"\nFringe 2,696,884 tickets for 53,232 performances of 3,398 shows. In addition to ticketed, programmed events, the Fringe Street Events hosted by Virgin Money run each day of the festival, primarily on the Royal Mile and at the Mound Precinct. Edinburgh Festival Fringe The Edinburgh Festival Fringe (often referred to as simply The Fringe or Edinburgh Festival) is the world's largest arts festival, which in 2018 spanned 25 days and featured more than 55,000 performances of 3,548 different shows in 317 venues. Established in 1947 as an alternative to the Edinburgh International Festival, it takes place annually in Edinburgh, Scotland, in"} +{"qid": "test1384", "pid": "2382580", "query": "where does the edinburgh fringe festival take place", "answer": "in Edinburgh, Scotland", "passage": "\"Edinburgh Festival Fringe\"\nEdinburgh Festival Fringe The Edinburgh Festival Fringe (often referred to as simply The Fringe or Edinburgh Festival) is the world's largest arts festival, which in 2018 spanned 25 days and featured more than 55,000 performances of 3,548 different shows in 317 venues. Established in 1947 as an alternative to the Edinburgh International Festival, it takes place annually in Edinburgh, Scotland, in the month of August. It is an open access (or \"\"unjuried\"\") performing arts festival, meaning there is no selection committee, and anyone may participate, with any type of performance. The official Fringe Programme categorises shows into sections for theatre,"} +{"qid": "test1384", "pid": "10586011", "query": "where does the edinburgh fringe festival take place", "answer": "in Edinburgh, Scotland", "passage": "\"The Edge Festival\"\nThe Edge Festival The Edge Festival was an annual music festival held in Edinburgh, Scotland, during August of each year. Formerly known as T on the Fringe, The Edge was part of the Edinburgh Festival Fringe, the world's largest arts fringe festival (to the larger Edinburgh Festival). Unlike other music festivals, The Edge did not take place at one location, with performers instead playing numerous venues across the city during the month. The festival was founded under the T on the Fringe name by DF Concerts and Tennent's Lager, with DF continuing to promote the festival after the departure of"} +{"qid": "test1384", "pid": "10586020", "query": "where does the edinburgh fringe festival take place", "answer": "in Edinburgh, Scotland", "passage": "\"The Edge Festival\"\nFiasco, Gomez, Tom Gray, Phoenix, Get Cape. Wear Cape. Fly, Stornoway and dan le sac vs Scroobius Pip. The festival featured a performance by Michael Rother, formerly of Neu!. The Edge Festival The Edge Festival was an annual music festival held in Edinburgh, Scotland, during August of each year. Formerly known as T on the Fringe, The Edge was part of the Edinburgh Festival Fringe, the world's largest arts fringe festival (to the larger Edinburgh Festival). Unlike other music festivals, The Edge did not take place at one location, with performers instead playing numerous venues across the city during the"} +{"qid": "test1386", "pid": "17308157", "query": "where does safe haven take place in the book", "answer": "Southport, North Carolina", "passage": "\"Safe Haven (novel)\"\nSafe Haven (novel) Safe Haven is a Fantasy romantic novel by American novelist Nicholas Sparks. It was published in 2010. According to WorldCat, the book is held in 2242 libraries Erin flees her abusive alcoholic husband, Kevin, takes on a different identity and changes her name to Katie. She arrives in Southport, North Carolina. Finding work at a seafood restaurant, she becomes friends with her neighbor, Jo, and gets to know the town's general store owner, Alex. Katie is interested in Alex, who is a widower with two children. Alex and Katie's relationship becomes romantic, encouraged by Jo. Alex's former"} +{"qid": "test1388", "pid": "17475339", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Vermont\"\nwould remain under control of the Democrats in presidential elections until Dwight D. Eisenhower won it in 1952. 1928 United States presidential election in Vermont The 1928 United States presidential election in Vermont took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary 48 states. Voters chose 4 representatives, or electors to the Electoral College, who voted for president and vice president. Vermont voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover's running mate"} +{"qid": "test1388", "pid": "20329363", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Wyoming\"\n1928 United States presidential election in Wyoming The 1928 United States presidential election in Wyoming took place on November 6, 1928, as part of the 1928 United States presidential election. Wyoming voters chose three representatives, or electors, to the Electoral College, who voted for president and vice president. Wyoming was won by United States Secretary of Commerce and mining engineer Herbert Hoover (R–Iowa), running with Senator Charles Curtis, with 63.68 percent of the popular vote, against the 42nd Governor of New York Al Smith (D–New York), running with Arkansas Senator and former Governor Joseph Robinson, with 35.37 percent. Hoover won"} +{"qid": "test1388", "pid": "20662448", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Michigan\"\n1928 United States presidential election in Michigan The 1928 United States presidential election in Michigan took place on November 6, 1928, as part of the 1928 United States presidential election. Michigan voters chose fifteen representatives, or electors, to the Electoral College, who voted for president and vice president. Michigan voted for Republican nominees Herbert Hoover of California and his running mate Charles Curtis in a landslide. The ticket received slightly over 70% of the popular vote compared to the Democrat's Al Smith of New York and Joseph T. Robinson's 28.92%. With 70.36% of the popular vote, Michigan would prove to"} +{"qid": "test1388", "pid": "20662449", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Michigan\"\nbe Hoover's second strongest victory in the nation after Kansas. As of 2018, this remains the last time the Republican candidate carried Wayne County, home of Michigan's most populated city, Detroit. 1928 United States presidential election in Michigan The 1928 United States presidential election in Michigan took place on November 6, 1928, as part of the 1928 United States presidential election. Michigan voters chose fifteen representatives, or electors, to the Electoral College, who voted for president and vice president. Michigan voted for Republican nominees Herbert Hoover of California and his running mate Charles Curtis in a landslide. The ticket received"} +{"qid": "test1388", "pid": "20172845", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Connecticut\"\nHoover won Connecticut by a narrow margin of 8.06 percent. 1928 United States presidential election in Connecticut The 1928 United States presidential election in Connecticut took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose seven representatives, or electors to the Electoral College, who voted for president and vice president. Connecticut voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover’s running mate was Senate Majority Leader Charles Curtis of Kansas,"} +{"qid": "test1388", "pid": "17466152", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Massachusetts\"\n1928 United States presidential election in Massachusetts The 1928 United States presidential election in Massachusetts took place on November 6, 1928, as part of the 1928 United States presidential election, which was held throughout all contemporary 48 states. Voters chose eighteen representatives, or electors to the Electoral College, who voted for president and vice president. Massachusetts voted for the Democratic nominee, Governor Alfred E. Smith of New York, over the Republican nominee, Secretary of Commerce Herbert Hoover of California. Smith's running mate was Senator Joseph Taylor Robinson of Arkansas, while Hoover’s running mate was Senate Majority Leader Charles Curtis of"} +{"qid": "test1388", "pid": "17475335", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Vermont\"\n1928 United States presidential election in Vermont The 1928 United States presidential election in Vermont took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary 48 states. Voters chose 4 representatives, or electors to the Electoral College, who voted for president and vice president. Vermont voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover's running mate was Senate Majority Leader Charles Curtis of Kansas, while Smith ran with Senator Joseph Taylor Robinson of Arkansas."} +{"qid": "test1388", "pid": "17466160", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Massachusetts\"\nDemocratic stronghold in the modern era. 1928 United States presidential election in Massachusetts The 1928 United States presidential election in Massachusetts took place on November 6, 1928, as part of the 1928 United States presidential election, which was held throughout all contemporary 48 states. Voters chose eighteen representatives, or electors to the Electoral College, who voted for president and vice president. Massachusetts voted for the Democratic nominee, Governor Alfred E. Smith of New York, over the Republican nominee, Secretary of Commerce Herbert Hoover of California. Smith's running mate was Senator Joseph Taylor Robinson of Arkansas, while Hoover’s running mate was"} +{"qid": "test1388", "pid": "20172856", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Maine\"\nHoover won Maine by a margin of 37.67 percent, making Maine his third-strongest state after Kansas and Michigan. 1928 United States presidential election in Maine The 1928 United States presidential election in Maine took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose six representatives, or electors to the Electoral College, who voted for president and vice president. Maine voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover’s running mate"} +{"qid": "test1388", "pid": "20172844", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Connecticut\"\n1928 United States presidential election in Connecticut The 1928 United States presidential election in Connecticut took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose seven representatives, or electors to the Electoral College, who voted for president and vice president. Connecticut voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover’s running mate was Senate Majority Leader Charles Curtis of Kansas, while Smith ran with Senator Joseph Taylor Robinson of Arkansas."} +{"qid": "test1388", "pid": "20266075", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in South Carolina\"\n1928 United States presidential election in South Carolina The 1928 United States presidential election in South Carolina took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose nine representatives, or electors to the Electoral College, who voted for president and vice president. South Carolina voted for the Democratic nominee, Governor Alfred E. Smith of New York, over the Republican nominee, Secretary of Commerce Herbert Hoover of California. Smith ran with Senator Joseph Taylor Robinson of Arkansas, while Hoover’s running mate was Senate Majority Leader Charles"} +{"qid": "test1388", "pid": "20266076", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in South Carolina\"\nCurtis of Kansas. Smith won South Carolina by a margin of 82.85 percent. 1928 United States presidential election in South Carolina The 1928 United States presidential election in South Carolina took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose nine representatives, or electors to the Electoral College, who voted for president and vice president. South Carolina voted for the Democratic nominee, Governor Alfred E. Smith of New York, over the Republican nominee, Secretary of Commerce Herbert Hoover of California. Smith ran with Senator Joseph"} +{"qid": "test1388", "pid": "17458687", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in New York\"\n1928 United States presidential election in New York The 1928 United States presidential election in New York took place on November 6, 1928. All contemporary 48 states were part of the 1928 United States presidential election. New York voters chose 45 electors to the Electoral College, which selected the president and vice president. New York was won by Republican Secretary of Commerce Herbert Hoover of California, who was running against Democratic Governor of New York Alfred E. Smith. Hoover's running mate was Senate Majority Leader Charles Curtis of Kansas, while Smith's running mate was Senator Joseph Taylor Robinson of Arkansas."} +{"qid": "test1388", "pid": "20084922", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in New Hampshire\"\n1928 United States presidential election in New Hampshire The 1928 United States presidential election in New Hampshire took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose four representatives, or electors to the Electoral College, who voted for president and vice president. New Hampshire voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover’s running mate was Senate Majority Leader Charles Curtis of Kansas, while Smith ran with Senator Joseph Taylor"} +{"qid": "test1388", "pid": "20084923", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in New Hampshire\"\nRobinson of Arkansas. Hoover won New Hampshire by a margin of 17.63 percent, almost exactly the same as his national figure, though a decline upon Coolidge’s 1924 margin. 1928 United States presidential election in New Hampshire The 1928 United States presidential election in New Hampshire took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose four representatives, or electors to the Electoral College, who voted for president and vice president. New Hampshire voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over"} +{"qid": "test1388", "pid": "20173031", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Rhode Island\"\n1928 United States presidential election in Rhode Island The 1928 United States presidential election in Rhode Island took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose five representatives, or electors to the Electoral College, who voted for president and vice president. Rhode Island voted for the Democratic nominee, Governor Alfred E. Smith of New York, over the Republican nominee, Secretary of Commerce Herbert Hoover of California. Smith's running mate was Senator Joseph Taylor Robinson of Arkansas, while Hoover’s running mate was Senate Majority Leader"} +{"qid": "test1388", "pid": "20173033", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Rhode Island\"\nfour times. Rhode Island would not vote for another Republican presidential candidate until Dwight D. Eisenhower in 1952. 1928 United States presidential election in Rhode Island The 1928 United States presidential election in Rhode Island took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose five representatives, or electors to the Electoral College, who voted for president and vice president. Rhode Island voted for the Democratic nominee, Governor Alfred E. Smith of New York, over the Republican nominee, Secretary of Commerce Herbert Hoover of California."} +{"qid": "test1388", "pid": "20172855", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Maine\"\n1928 United States presidential election in Maine The 1928 United States presidential election in Maine took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose six representatives, or electors to the Electoral College, who voted for president and vice president. Maine voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover’s running mate was Senate Majority Leader Charles Curtis of Kansas, while Smith ran with Senator Joseph Taylor Robinson of Arkansas."} +{"qid": "test1388", "pid": "20906463", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"United States presidential election in Kansas, 1928\"\nUnited States presidential election in Kansas, 1928 The 1928 United States presidential election in Kansas took place on November 6, 1928, as part of the 1928 United States Presidential Election which was held throughout all contemporary forty-eight states. Voters chose ten representatives, or electors to the Electoral College, who voted for president and vice president. Kansas voted for the Republican nominee, Secretary of Commerce Herbert Hoover of California, over the Democratic nominee, Governor Alfred E. Smith of New York. Hoover’s running mate was Senate Majority Leader Charles Curtis of Kansas, while Smith ran with Senator Joseph Taylor Robinson of Arkansas."} +{"qid": "test1388", "pid": "15695725", "query": "who was elected president of the united states in 1928", "answer": "Herbert Hoover", "passage": "\"1928 United States presidential election in Pennsylvania\"\n1928 United States presidential election in Pennsylvania The 1928 United States presidential election in Pennsylvania took place on November 6, 1928. Voters chose 38 representatives, or electors to the Electoral College, who voted for president and vice president. Pennsylvania overwhelmingly voted for the Republican nominee, U.S. Secretary of Commerce Herbert Hoover, over the Democratic nominee, New York Governor Al Smith. Hoover won Pennsylvania by a landslide margin of 31.35 percentage points. The Republicans at this time were associated with the booming economy of the 1920s while Smith was associated with the corruption of Tammany Hall. Despite losing the state, Smith"} +{"qid": "test1389", "pid": "13423897", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"How the Grinch Stole Christmas!\"\nGrinch Grinches the Cat in the Hat\"\". Max, the Grinch's dog, and the Grinch himself also appear in the children's puppet show \"\"The Wubbulous World of Dr. Seuss\"\". The Grinch, Cindy Lou Who, and Max, appear in \"\"Seussical\"\", a musical which takes it plot from several Dr. Seuss books. How the Grinch Stole Christmas! How the Grinch Stole Christmas! is a children's story by Theodor \"\"Dr. Seuss\"\" Geisel written in rhymed verse with illustrations by the author. It follows the Grinch, a grouchy, solitary creature who attempts to put an end to Christmas by stealing Christmas-themed items from the homes"} +{"qid": "test1389", "pid": "11705180", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "Whoville\nsnouts and twelve toes. In the live-action film, the fur was missing from the Whos. Just north of Whoville, atop a high mountain, Mount Crumpit, a bitter, cave-dwelling creature named the Grinch lives with his dog Max. Cindy Lou Who is a generous young girl who was introduced in the book \"\"How the Grinch Stole Christmas!\"\" In the 2000 live action film, \"\"How the Grinch Stole Christmas!\"\" she is played by actress Taylor Momsen. The Grinch is a fictional, green colored creature with a cat-like face and cynical personality. He lives in isolation upon Mt. Crumpet with his dog Max."} +{"qid": "test1389", "pid": "7707210", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"How the Grinch Stole Christmas (2000 film)\"\nto erect before he leaves. The mayor then shames Cindy Lou for inviting the Grinch. Since the Grinch's attack has failed to crush the Whos' Christmas spirit, he concocts a plan to steal all of their presents, decorations, and food while they are sleeping. Creating a Santa suit and powered sleigh, and dressing his dog Max as a reindeer, the Grinch descends to Whoville and steals all of the Christmas gifts. When Cindy Lou catches him stealing the tree, he tells her he is taking it to Santa's workshop for repair of a defective light. On Christmas morning, the Whos"} +{"qid": "test1389", "pid": "9175852", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"Dr. Seuss' How the Grinch Stole Christmas! The Musical\"\nLake City, Spokane, Seattle, New York City, Chicago, Costa Mesa and Denver. In 2015, the production toured in North America with shows in Worcester, Detroit, Appleton, Columbus, Jacksonville, Orlando and Fort Lauderdale. Stefán Karl performed as Grinch, Bob Lauder as Old Max, and Genny Gagnon and Rachel Katzke as Cindy Lou Who. The musical will make its UK premiere at The Lowry, in Salford from 10 December 2019 to 5 January 2020. Dr. Seuss' How the Grinch Stole Christmas! The Musical Dr. Seuss' How the Grinch Stole Christmas! The Musical, or simply How the Grinch Stole Christmas! The Musical, is"} +{"qid": "test1389", "pid": "7902041", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"How the Grinch Stole Christmas! (TV special)\"\nnarrator. The Grinch (voiced by Boris Karloff) is the film's main character. He lives in a cave atop Mt. Crumpit, located above the village of Whoville. The Grinch is a surly character with a heart \"\"two sizes too small\"\" who has especially hated Christmas for 53 years. On Christmas Eve, he finally becomes fed up with seeing the decorations and hearing all the music and caroling in the village and wishes he could stop Christmas Day from coming to Whoville. When he sees his dog, Max, with snow all over his face in the shape of a hat and beard,"} +{"qid": "test1389", "pid": "13423883", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"How the Grinch Stole Christmas!\"\nhigh mountain just north of the town of Whoville, home of the merry and warm-hearted Whos. His only companion is his unloved, but loyal dog, Max. From his cave, the Grinch can hear the noisy Christmas festivities that take place in Whoville. Continuously annoyed, he devises a wicked scheme to steal their presents, trees, and food for their Christmas feast. He crudely disguises himself as Santa Claus, and forces Max, disguised as a reindeer, to drag a sleigh down the mountain towards Whoville. Once at Whoville, the Grinch slides down the chimney of one house and steals all of the"} +{"qid": "test1389", "pid": "7902043", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"How the Grinch Stole Christmas! (TV special)\"\ndrink before sending her back to bed. He empties the first house of all the food and Christmas-related items, namely presents, the tree, decorations and even the stockings on the chimney, then repeats the process at the other houses in Whoville, while also taking the village decorations. With the Whos' stolen Christmas goods, the Grinch and Max travel back up Mt. Crumpit. Before dropping the loaded sleigh off the mountain, the Grinch waits to hear a sad cry from the Whos. However, down in the village, the Whos joyously begin to sing Christmas carols, proving that the spirit of Christmas"} +{"qid": "test1389", "pid": "2418804", "query": "dogs name in the grinch who stole christmas", "answer": "Max", "passage": "\"The Nightmare Before Christmas\"\nlight entertainment while marveling at how adept Hollywood has become at these techniques. There are songs, laughs, and a little romance. In short, \"\"The Nightmare Before Christmas\"\" does what it intends to: entertain.\"\" Desson Thomson of \"\"The Washington Post\"\" enjoyed stylistic features in common with Oscar Wilde, German Expressionism, the Brothers Grimm and \"\"The Cabinet of Dr. Caligari\"\". Michael A. Morrison discusses the influence of Dr. Seuss' \"\"How the Grinch Stole Christmas!\"\" on the film, writing that Jack parallels the Grinch and Zero parallels Max, the Grinch's dog. Philip Nel writes that the film \"\"challenges the wisdom of adults through"} +{"qid": "test139", "pid": "6831991", "query": "when is dancing on ice on the tv", "answer": "2019", "passage": "\"Dancing on Ice\"\nseries in 2019. The presenters and judges are yet to be confirmed by ITV. The participating celebrities began being confirmed on 1 October 2018. All information in this table comes from BARB. including figures from ITV+1 and ITV HD channels Like many other reality TV shows, \"\"Dancing on Ice\"\" has had a number of supplementary shows. The first was \"\"Dancing on Ice Defrosted\"\". It was presented by Stephen Mulhern and aired on ITV2 immediately after the main ITV show and again after the results show. The show featured opinions from celebrity guests and past contestants as well as from Torvill"} +{"qid": "test1392", "pid": "17477816", "query": "theme of the song roar by katy perry", "answer": "self-empowerment", "passage": "\"Roar (song)\"\nRoar (song) \"\"Roar\"\" is a song by American singer Katy Perry for her fourth studio album, \"\"Prism\"\" (2013). It was released as the lead single from the record on August 10, 2013. Perry co-wrote the song with Bonnie McKee and its producers Dr. Luke, Max Martin, and Cirkut. It is a pop song containing elements of arena rock and lyrics centering on standing up for oneself and self-empowerment. Some critics praised the track's production while others felt that its lyrics contained \"\"clichés\"\". To promote the song, Perry performed under the Brooklyn Bridge at the end of the 2013 MTV Video"} +{"qid": "test1392", "pid": "17477821", "query": "theme of the song roar by katy perry", "answer": "standing up for oneself", "passage": "\"Roar (song)\"\nPerry's vocal range spawns from the low note B to the high note E, while the music follows the chord progression of B–Cm–Gm–E. The song shares the theme of empowerment with Perry's single \"\"Firework\"\". Perry described the track as a song speaking about standing up for oneself. Perry announced \"\"Roar\"\" would be the first single from \"\"Prism\"\" with the release of a video teaser featuring the singer burning a blue wig. More video teasers were released onto YouTube, showing Perry at a funeral with a coffin decorated with the singer's famous pink and white pinwheels dress, and entering a recording"} +{"qid": "test1392", "pid": "15314654", "query": "theme of the song roar by katy perry", "answer": "self-empowerment", "passage": "\"Part of Me (Katy Perry song)\"\nroutine behind her. On March 19, 2012, Perry performed \"\"Part of Me\"\" as part of a Live Lounge special for BBC Radio 1, along with \"\"The One That Got Away\"\" (2011), \"\"Firework\"\" (2011), \"\"Thinking of You\"\" (2009) and a censored version of \"\"Niggas in Paris\"\" (2011). The performances were closely similar, through their depiction of Perry as a superhero and their theme of self-empowerment. Katie Brine of MTV commented that \"\"Even when Katy is getting serious, there's always fun to be had.\"\" On April 26, 2012, Perry performed the track on season 11 of \"\"American Idol\"\". This was similar to"} +{"qid": "test1393", "pid": "1955146", "query": "who picks the players in the nfl draft", "answer": "each team", "passage": "\"Fantasy football (American)\"\nnormally consists of NFL rookies only), where each team drafts NFL players. These players are kept unless they are traded or dropped, whereby they enter a pool of unowned players that any team may claim. In most leagues, no player may be owned by more than one team, although some leagues do allow for this. There are essentially two types of drafts. In a traditional \"\"serpentine\"\" or \"\"snake\"\" draft, owners take turns drafting players in a \"\"snake\"\" method, i.e. the owner who picks first in the odd rounds picks last in the even rounds, in the interests of fairness. In"} +{"qid": "test1395", "pid": "4767517", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\nRear-view mirror A rear-view mirror (or rearview mirror) is a mirror in automobiles and other vehicles, designed to allow the driver to see rearward through the vehicle's rear window (rear windshield). In cars, the rear-view mirror is usually affixed to the top of the windshield on a double-swivel mount allowing it to be adjusted to suit the height and viewing angle of any driver and to swing harmlessly out of the way if impacted by a vehicle occupant in a collision. The rear-view mirror is augmented by one or more side-view mirrors, which serve as the only rear-vision mirrors on"} +{"qid": "test1395", "pid": "4767528", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\non automated teller machines and similar. Rear-view mirror A rear-view mirror (or rearview mirror) is a mirror in automobiles and other vehicles, designed to allow the driver to see rearward through the vehicle's rear window (rear windshield). In cars, the rear-view mirror is usually affixed to the top of the windshield on a double-swivel mount allowing it to be adjusted to suit the height and viewing angle of any driver and to swing harmlessly out of the way if impacted by a vehicle occupant in a collision. The rear-view mirror is augmented by one or more side-view mirrors, which serve"} +{"qid": "test1395", "pid": "4767521", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\nmirrors. Camera systems are usually mounted to the rear bumper or lower parts of the car, allowing for better rear visibility. Aftermarket secondary rear-view mirrors are available. They attach to the main rear-view mirror and are independently adjustable to view the back seat. This is useful to enable adults to monitor children in the back seat. A prismatic rear-view mirror—sometimes called a \"\"day/night mirror\"\"—can be tilted to reduce the brightness and glare of lights, mostly for high-beam headlights of vehicles behind which would otherwise be reflected directly into the driver's eyes at night. This type of mirror is made of"} +{"qid": "test1395", "pid": "4767524", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\nCurrent systems usually use photosensors mounted in the rear-view mirror to detect light and dim the mirror by means of electrochromism. This electrochromic feature has also been incorporated into side-view mirrors allowing them to dim and reduce glare as well. On trucks and buses the load often blocks rearward vision out the backlight. In the U.S. virtually all trucks and buses have a side view mirror on each side, often mounted on the doors and viewed out the side windows, which are used for rear vision. These mirrors leave a large unviewable (“blind”) area behind the vehicle, which tapers down"} +{"qid": "test1395", "pid": "4767525", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\nas the distance increases. This is a safety issue which the driver must compensate for, often with a person guiding the truck back in congested areas, or by backing in a curve. “Spot mirrors”, a convex mirror which provides a distorted image of the entire side of the vehicle, are commonly mounted on at least the right side of a vehicle. In the U.S. mirrors are considered “safety equipment”, and are not included in width restrictions. Depending on the type of motorcycle, the motorcycle may or may not have rear-view mirrors. Street-legal motorcycles are generally required to have rear-view mirrors."} +{"qid": "test1395", "pid": "9146615", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Wing mirror\"\nWing mirror A wing mirror, also known as the fender mirror, door mirror, outside rear-view mirror or side view mirror, is a mirror found on the exterior of motor vehicles for the purposes of helping the driver see areas behind and to the sides of the vehicle, outside the driver's peripheral vision (in the 'blind spot'). For mirrors on bicycles and motorcycles see \"\"Rear-view mirror\"\". Although almost all modern cars mount their side mirrors on the doors—normally at the A-pillar—rather than the wings (the portion of the body above the wheel well), the term \"\"wing mirror\"\" is still frequently used."} +{"qid": "test1395", "pid": "4767519", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\nCain from France patented a \"\"\"\"Warning mirror for automobiles\"\"\"\". The Argus Dash Mirror, adjustable to any position to see the road behind, appeared in 1908. Earliest known rear-view mirror mounted on a racing vehicle appeared on Ray Harroun's Marmon race car at the inaugural Indianapolis 500 race in 1911. Harroun himself claimed he got the idea from seeing a mirror used for a similar purpose on a horse-drawn vehicle in 1904. Harroun also claimed that the mirror vibrated constantly due to the rough brick surface, and it was rendered largely useless. Elmer Berger is usually credited with inventing the rear-view"} +{"qid": "test1395", "pid": "3492442", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "Anadol\nand gauges of the Böcek were ahead of their time, and were used many years later by future passenger vehicles in Europe. The Böcek had a 1298 cc Ford engine, which provided very good performance given the vehicle's small dimensions. In line with the pop-art designs of that period, the Böcek had asymmetrical front and rear ends. The front grille was asymmetrical, while in the rear there were 3 brake lights at left and 2 at right. The rear-view mirror, which was formed of 5 different angled mirrors that provided a telescopic view, was mounted on top of the windshield."} +{"qid": "test1395", "pid": "9146622", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Wing mirror\"\nplanar, convex, and/or aspheric mirrors on either side of the vehicle. American research suggests non-planar driver side mirrors may help reduce crashes. Wing mirror A wing mirror, also known as the fender mirror, door mirror, outside rear-view mirror or side view mirror, is a mirror found on the exterior of motor vehicles for the purposes of helping the driver see areas behind and to the sides of the vehicle, outside the driver's peripheral vision (in the 'blind spot'). For mirrors on bicycles and motorcycles see \"\"Rear-view mirror\"\". Although almost all modern cars mount their side mirrors on the doors—normally at"} +{"qid": "test1395", "pid": "1313465", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Mirror image\"\nand the same effect as a real, symmetrically arranged half-space behind a window (instead of the mirror). Shadows may extend from the mirror into the halfspace before it, and vice versa. In mirror writing a text is deliberately displayed in mirror image, in order to be read through a mirror. For example, emergency vehicles such as ambulances or fire engines use mirror images in order to be read from a driver's rear-view mirror. Some movie theaters also take advantage of mirror writing in a Rear Window Captioning System used to assist individuals with hearing impairments watching the film. In the"} +{"qid": "test1395", "pid": "9146617", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Wing mirror\"\nside location. In the 1940s many roads were unpaved and had two lanes, one in each direction. Drivers had to be aware only of traffic on their side and directly behind them (rear view). Due to this, most passenger vehicles with an internal rear-view mirror until the late 1960s had the passenger-side mirror only as an optional addition, as it was considered a luxury. In the U.S. and Canada, the U.S. National Highway Traffic Safety Administration's Federal Motor Vehicle Safety Standard 111 and the Canada Motor Vehicle Safety Standard 111 require the driver side mirror to provide \"\"unit magnification\"\", i.e.,"} +{"qid": "test1395", "pid": "2850542", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Vehicle blind spot\"\nno zones. In transport, driver visibility is the maximum distance at which the driver of a vehicle can see and identify prominent objects around the vehicle. Visibility is primarily determined by weather conditions (see visibility) and by a vehicle's design. The parts of a vehicle that influence visibility include the windshield, the dashboard and the pillars. Good driver visibility is essential to safe road traffic. Blind spots may occur in the front of the driver when the A-pillar (also called the windshield pillar), side-view mirror, or interior rear-view mirror block a driver's view of the road. Behind the driver, cargo,"} +{"qid": "test1395", "pid": "4767526", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Rear-view mirror\"\nMotorcycles for off-road use only normally do not have rear-view mirrors. Rear-view mirrors come in various shapes and designs, and have various methods of mounting the mirrors to the motorcycle, most commonly to the handlebars. Rear-view mirrors can also be attached to the rider's motorcycle helmet. Some bicycles are equipped with a rear-view mirror mounted on a handlebar. Rear-view mirrors may also be fitted to the bicycle frame, on a helmet on the arm or the frame of a pair of eyeglasses. This allows what is behind to be checked continuously without turning round. Rear-view mirrors almost never come with"} +{"qid": "test1395", "pid": "7801652", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Little Trees\"\nfreshener design, and has filed several lawsuits against makers of lookalike products and against companies that use their products in other commercial media. Little Trees have been featured in multiple aspects of popular culture. In the United States, many states have regulations concerning obstructed view, objects hanging from the rear-view mirror, obstructed windshield, or similar legislation. Citations and/or custodial arrests for violations of such statutes are not unknown. Little Trees Little Trees are disposable air fresheners shaped like a stylized evergreen tree, marketed for use in motor vehicles, and most commonly seen hanging from rear-view mirrors. They are made of"} +{"qid": "test1395", "pid": "2850545", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Vehicle blind spot\"\nmatter. The area directly behind vehicles is the source of back-up collisions, particularly involving pedestrians, children, and objects directly aft of a vehicle. That area has been called a \"\"killing zone\"\". These problems are the object of a number of technological solutions, including (in rough order of technological complexity, simplest first): rear-view mirror, side-view mirror. fresnel lens, sonar, parking sensors, and backup camera. A similar problem attaches to positions left and right of a vehicles' rear bumper as the driver attempts to back out of a parking space. Specially designed cross traffic alert warning systems have been developed to address"} +{"qid": "test1395", "pid": "3066261", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Newly licensed driver plate\"\ngranted a first full driving licence must display N-plates (Novice) on the vehicle for a period of 2 years. In Israel, the driving tutoring has to be performed by a special teacher, named \"\"Driving teacher\"\" (). The lessons are performed on a modified vehicle with additional controlling pedals at the front passenger seat, — this allows the teacher to control the vehicle during lessons and prevent accidents. Additionally, auxiliary mirrors are fixed atop of side rear-view mirrors, providing the teacher with the rear views. It is the teacher's responsibility to affix the L-plate before each lesson and to remove it"} +{"qid": "test1395", "pid": "5193030", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Lexus GX\"\nknee airbags and rear side torso airbags. New safety options include a Pre-Collision System, Driver Monitoring System, lane departure warning system, and Lexus Enform with Safety Connect telematics. Optional cameras located at the rear door, rear-view mirror, and passenger-side mirror provided views of the vehicle's sides. Low-beam HID headlamp projectors were offered with an Intelligent High Beam feature which automatically dimmed the high beams depending on traffic conditions and an Adaptive Front lighting System (AFS) that swiveled the headlamps in corners. On 28 May 2012 Lexus China announced the market launch of the GX 400, which replaces the GX 460"} +{"qid": "test1395", "pid": "740534", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Fresnel lens\"\nof a Fresnel lens is a rear view enhancer, as the wide view angle of a lens attached to the rear window permits examining the scene behind a vehicle, particularly a tall or bluff-tailed one, more effectively than a rear-view mirror alone. Multi-focal Fresnel lenses are also used as a part of retina identification cameras, where they provide multiple in- and out-of-focus images of a fixation target inside the camera. For virtually all users, at least one of the images will be in focus, thus allowing correct eye alignment. Fresnel lenses have also been used in the field of popular"} +{"qid": "test1395", "pid": "300194", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Open-wheel car\"\nas pioneering the rear-view mirror which appeared on his 1911 Indianapolis 500 winning car, though he himself claimed he got the idea from seeing a mirror used for a similar purpose on a horse-drawn vehicle in 1904. A typical open-wheeler has a minimal cockpit sufficient only to enclose the driver's body, with the head exposed to the air. In the Whelen Modified Tour and other short track modified series, the driver's head is contained in the car. In modern cars the engine is often located directly behind the driver, and drives the rear wheels; except in asphalt modified cars, such"} +{"qid": "test1395", "pid": "5642938", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "Gentex\nnotification appliances including speaker/strobes, mini-horns, bells, and weatherproof devices. Gentex first introduced a rear-view mirror that automatically adjusted to glare conditions in 1982. Gentex introduced an automatic dimming mirror based on electrochromism in 1987. The reduction of glare eliminates the temporary blind spot caused by the Troxler effect after the glare source leaves the field of view. These mirrors have forward- and rearward-facing sensors to measure the ambient light level and glare of approaching vehicles, respectively. An electrochromic gel is placed between two pieces of glass, which allows the mirror to dim in proportion to the glare level. In 1991,"} +{"qid": "test1395", "pid": "4315754", "query": "which mirror is used in vehicles for rear view", "answer": "rear-view mirror", "passage": "\"Ford Bronco\"\nrear-view mirror. For 1995, a vented front bumper was added (it was added to the XLT for 1996). Cosmetic exterior and interior changes included a sweeping front end and a new dashboard. Maroon and blue leather seats were first offered in 1991 (1992 model year) through the end of production. Power mirrors were again offered from 1991 launch, and from 1995, the Bronco became the first vehicle to incorporate turn signal lights in its side mirrors. All 1994–1996 Eddie Bauers have an overhead console. Some 1994–1996 XLTs and Eddie Bauers have lighted sun visors and a dimming rear-view mirror. From"} +{"qid": "test1396", "pid": "11160394", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Cara Dunne-Yates\"\nParalympics - bronze medal for women's alpine combo - alpine skiing (Innsbruck, Austria).
1984 Winter Paralympics - bronze medal for women's downhill - alpine skiing(Innsbruck, Austria).
1984 Winter Paralympics - silver medal for women's giant slalom - alpine skiing(Innsbruck, Austria). 1988 Winter Paralympics - silver medal for women's downhill - alpine skiing (Innsbruck, Austria).
1988 Winter Paralympics - silver medal for women's giant slalom - alpine skiing (Innsbruck, Austria).
IPC Alpine Skiing World Championships 1982 - bronze medal for women's alpine combo - alpine skiing (Le Diablerets, Switzerland).
1982 - bronze medal for women's downhill - alpine skiing(Le Diablerets, Switzerland).
"} +{"qid": "test1396", "pid": "7962204", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"FIS Alpine World Ski Championships 2011\"\nFIS Alpine World Ski Championships 2011 The FIS Alpine World Ski Championships 2011 were the 41st FIS Alpine World Ski Championships, held 7–20 February in Germany at Garmisch-Partenkirchen, Bavaria. These were the second alpine world championships in Garmisch-Partenkirchen, which previously hosted in 1978. It also hosted the first Olympic alpine skiing competition, a combined event at the 1936 Winter Olympics. The FIS awarded the championships on 25 May 2006, in Vilamoura, Portugal. The runner-up was Schladming, Austria, which hosted the next championships in 2013. Prior to landing the 2011 event in 2006, Garmisch-Partenkirchen had unsuccessfully bid to host the world"} +{"qid": "test1396", "pid": "15379195", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"FIS Alpine World Ski Championships 1939\"\nFIS Alpine World Ski Championships 1939 The FIS Alpine World Ski Championships 1939 were held 12–15 February at Kasprowy Wierch in the Western Tatras, south of Zakopane, Poland. Due to World War II, these were the last official championships for nine years, until the 1948 Winter Olympics. Josef Jennewein, Wilhelm Walch and Helga Gödl were Austrians but after the \"\"Anschluss\"\" in 1938 they were citizen of \"\"Nazi\"\"-Germany. The medals which they did win do still count for Germany. Hellmuth Lantschner also was an Austrian but he did change to Germany in 1935 and did start for the German Ski Federation"} +{"qid": "test1396", "pid": "10848855", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Sara Mustonen (skier)\"\nSara Mustonen (skier) Sara Kristiina Mustonen (23 December 1962, Rovaniemi, Finland – 12 September 1979, Hintertux, Austria) was a Finnish alpine skier. She is the youngest skier ever to win the Finnish alpine ski championship with her gold medal in the women’s slalom in 1977 when she was only 14 years old. Between 1975 and 1979 Mustonen won as many as 25 medals in Finnish alpine ski championships, 10 of which in women’s category. She won the slalom in 1977 and 1978, giant slalom in 1978 and 1979, and downhill in 1979. She represented the skiing club Ounasvaaran Hiihtoseura of"} +{"qid": "test1396", "pid": "15379196", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"FIS Alpine World Ski Championships 1939\"\nsince that time. FIS Alpine World Ski Championships 1939 The FIS Alpine World Ski Championships 1939 were held 12–15 February at Kasprowy Wierch in the Western Tatras, south of Zakopane, Poland. Due to World War II, these were the last official championships for nine years, until the 1948 Winter Olympics. Josef Jennewein, Wilhelm Walch and Helga Gödl were Austrians but after the \"\"Anschluss\"\" in 1938 they were citizen of \"\"Nazi\"\"-Germany. The medals which they did win do still count for Germany. Hellmuth Lantschner also was an Austrian but he did change to Germany in 1935 and did start for the"} +{"qid": "test1396", "pid": "16819015", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"LW1 (classification)\"\nThe LW1 factoring during the 2011/2012 skiing season was 0.838 for Slalom, 0.8233 for Giant Slalom, 0.8203 for Super-G and 0.8462 for downhill. This class competed at its own medal events at competitions in the 1990s, before being grouped with other classes. LW1 was not grouped with other classes at the 1990 Disabled Alpine World Championships for disciplines that included the downhill. At the 1992 Winter Paralympics and 1994 Winter Paralympics, it was grouped with LW2 for men's para-Alpine events. For the 1996 Disabled Alpine World Championships, in Lech, Austria, it was grouped with LW3 and LW5 for medal events."} +{"qid": "test1396", "pid": "8587878", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Harald Paumgarten\"\nfinished 18th. He won a bronze medal in the 4 x 10 km at the 1933 FIS Nordic World Ski Championships in Innsbruck. Paumgarten's older brother Fridtjof (1903-1986) won several skiing competitions and was on the 1928 Austrian Olympic team, but did not compete due to a training injury. Paumgarten's younger sister Gerda Paumgarten (1907-2000) was also a successful skier, winning 4 Alpine World Championship medals. After retiring from competitive skiing, Paumgarten became a banker in New York City, but then returned to skiing as an instructor at the first alpine skiing school in the United States, Peckett's in Sugar"} +{"qid": "test1396", "pid": "7267826", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"1978–79 FIS Alpine Ski World Cup\"\n1978–79 FIS Alpine Ski World Cup The 13th World Cup season began in December 1978 in Austria and concluded in March 1979 in Japan. The overall winners were Peter Lüscher of Switzerland, his first overall win, and Annemarie Moser-Pröll of Austria, her sixth (which remained the record until 2017-18, when Austria's Marcel Hirscher won his seventh overall title). Although Ingemar Stenmark did not win the overall title due to restrictions on the number of races that counted for overall championship points, he won 13 races during the season (including the last four in a row and six of the last"} +{"qid": "test1396", "pid": "4307048", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Kjetil André Aamodt\"\nKjetil André Aamodt Kjetil André Aamodt (born 2 September 1971) is a former World Cup alpine ski racer from Norway, a champion in the Olympics, World Championships, and World Cup. He is the most decorated ski racer from Norway. Born in Oslo, Aamodt is the only alpine skier to win 8 Olympic medals, and has won 5 World Championship gold medals as well as 21 individual World Cup events. Described as an all-round alpine skier, Aamodt participated in all alpine skiing disciplines in the World Cup and World Championships, and is one of only 5 male alpine skiers to have"} +{"qid": "test1396", "pid": "8270647", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Hubert Strolz\"\nopponents did it better than he (quite often he was - unexpected - intercepted as a race-leader, and in the FIS Alpine Skiing World Championships 1989, he was third in the Super-G but at last Tomaž Čižman (22nd starter) could obtain the bronze medal. He now runs a skiing and snowboard school in his hometown Warth. Sports Reference Hubert Strolz Hubert Strolz, nickname \"\"Hubsi\"\", (born 26 June 1962) is a former alpine skier from Austria. At the 1988 Olympics in Calgary he won a gold medal in the combined and silver in the Giant Slalom. In the World Cup, he"} +{"qid": "test1396", "pid": "4536313", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Lasse Kjus\"\nColorado. Five skiers had previously earned four medals at a single World Championship (through 1980, the Winter Olympics also served as World Championships for alpine skiing): Toni Sailer of Austria in 1956 at Cortina and in 1958 at Bad Gastein, Marielle Goitschel of France in 1966 at Portillo, Chile, Jean-Claude Killy of France in 1968 at Grenoble, Rosi Mittermaier of Germany in 1976 at Innsbruck, and Pirmin Zurbriggen of Switzerland in 1987 at Crans-Montana; the first four did so when only four medal events were contested, but no one before or since has medaled in all five alpine disciplines, downhill,"} +{"qid": "test1396", "pid": "6950521", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Michael Walchhofer\"\nMichael Walchhofer Michael Walchhofer (born 28 April 1975, in Radstadt) is a former World Cup alpine ski racer from Austria. He started his career in slalom, but then moved over to the speed events. During his career he won the World Cup season title in downhill three times, an Olympic silver medal, and one gold, two silvers, and a bronze medal at World Championships. Walchofer became the first to win the Bormio downhill three times in December 2010. His last World Cup race was the downhill at the finals in Lenzerheide in March 2011. Walchhofer has been a longtime owner"} +{"qid": "test1396", "pid": "9731823", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"FIS Alpine World Ski Championships 1966\"\nFIS Alpine World Ski Championships 1966 The FIS Alpine World Ski Championships 1966 were held in South America from 4–14 August at Portillo, Chile. To this day, it remains the only alpine world championships contested in the southern hemisphere. It took place well out of the established season, nearly five months before the first World Cup season, which began in early January 1967. Assignment did happen at the FIS-Congress at Athens in May 1963, but Germany (West-Germany), Switzerland and Austria did vote against. \"\"Sunday, 7 August\"\" \"\"Tuesday, 9 August (run 1)
Wednesday, 10 August (run 2)\"\" \"\"Sunday, 14 August\"\" \"\"Monday, 8"} +{"qid": "test1396", "pid": "11160392", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Cara Dunne-Yates\"\nher stepfather prepared for and competed in the first ever U.S. Blind National Alpine Championships; she won the gold medal in giant slalom. At age 11, she competed in the adult women's category, demonstrating for the first time the front guiding technique. She was selected as the team's youngest member. She competed with the U.S. Paralympic Alpine Ski Team (1982 through 1989)and medalled in world championship events in Switzerland, Canada, Austria, and Sweden. Throughout her skiing career, Dunne-Yates was exclusively coached and guided by her stepfather, Richard Zabelski. U.S. National Alpine skiing Championships 1979 developed and pioneered the \"\"Front Guiding\"\""} +{"qid": "test1396", "pid": "4548801", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Alpine skiing at the 1964 Winter Olympics\"\n1950 and 1952, but returned as a World Championship event in 1954 as a \"\"paper race\"\" which used the results from the three events. During the Olympics from 1956 through 1980, World Championship medals were awarded by the FIS for the combined event. The combined returned as a separate event at the World Championships in 1982 and at the Olympics in 1988. Men's Combined Women's Combined Alpine skiing at the 1964 Winter Olympics Alpine skiing at the 1964 Winter Olympics consisted of six events, held near Innsbruck, Austria, from January 30 to February 8, 1964. The men's downhill was held"} +{"qid": "test1396", "pid": "16439886", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Gerhard Nenning\"\nGerhard Nenning Gerhard Nenning (29 September 1940 in Lech – 22 June 1995 in Bregenz) was an Austrian former alpine skier who competed in the 1964 Winter Olympics (6th in the giant slalom, 7th in the downhill and 7th in the slalom) and 1968 Winter Olympics (8th in the giant slalom, 9th in the slalom). He could win the silver medal in the Alpine Combined in that 1964 Winter Olympics, but that medal did only count for the FIS Alpine Skiing World Championships. Before establishing the World Cup, he did win several relevant races like the slalom at Kitzbühel in"} +{"qid": "test1396", "pid": "4307052", "query": "how many medals did austria win in the 2011 alpine skiing world championships", "answer": "8", "passage": "\"Kjetil André Aamodt\"\nand inducted into the International Ski Racing Hall of Fame. 1 overall, 1 super-G, 1 giant slalom, 1 slalom Kjetil André Aamodt Kjetil André Aamodt (born 2 September 1971) is a former World Cup alpine ski racer from Norway, a champion in the Olympics, World Championships, and World Cup. He is the most decorated ski racer from Norway. Born in Oslo, Aamodt is the only alpine skier to win 8 Olympic medals, and has won 5 World Championship gold medals as well as 21 individual World Cup events. Described as an all-round alpine skier, Aamodt participated in all alpine skiing"} +{"qid": "test1397", "pid": "2076497", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Phantom of the Opera (1986 musical)\"\nMelbourne run ended on 12 December 2011 the production moved to the Capitol Theatre in Sydney where it played from January to April 2012. The Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath"} +{"qid": "test1397", "pid": "2076452", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Phantom of the Opera (1986 musical)\"\nThe Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath the Paris Opéra House. The musical opened in London's West End in 1986, and on Broadway in 1988. It won the 1986 Olivier Award"} +{"qid": "test1397", "pid": "3320350", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"Charles Hart (lyricist)\"\nCharles Hart (lyricist) Charles Hart (born 3 June 1961) is a British lyricist, songwriter and musician. He is best known for writing the lyrics to, and contributing to the book of, Andrew Lloyd Webber's stage musical \"\"The Phantom of the Opera\"\" and for writing the lyrics to \"\"Bend It Like Beckham the Musical\"\". He also co-wrote (with Don Black) the lyrics to Lloyd Webber's 1989 musical \"\"Aspects of Love\"\". Hart also re-wrote Glenn Slater's lyrics for \"\"Love Never Dies\"\", the sequel to \"\"Phantom\"\". Born in London, Hart was educated at Desborough School, Maidenhead, Robinson College, Cambridge and the Guildhall School"} +{"qid": "test1397", "pid": "7160358", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Music of the Night\"\nwas called \"\"Married Man\"\". The lyrics were later rewritten and the song was added into \"\"The Phantom of the Opera\"\". A year before \"\"The Phantom Of The Opera\"\" opened at Her Majesty's Theatre, the original version of the song was performed at Andrew Lloyd Webber's own theatre at Sydmonton, along with the first drafts of the show. The audience were a specially gathered group of Webber's acquaintances. The Phantom was played by Colm Wilkinson, who sang \"\"The Music Of The Night\"\" in Act One. As Charles Hart had not yet become involved in writing the song, in places the lyrics"} +{"qid": "test1397", "pid": "8797051", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nLindsey Stirling did an accompanied instrumental version of the song on her \"\"Phantom of the Opera\"\" single in 2012. The Phantom of the Opera (Andrew Lloyd Webber song) \"\"The Phantom of the Opera\"\" is a song from the stage musical of the same name. It was composed by Andrew Lloyd Webber, with lyrics written by Charles Hart and Richard Stilgoe, and additional lyrics by Mike Batt. The song was originally recorded by Sarah Brightman and Steve Harley, which became a UK hit single in 1986, prior to the musical. In its theatrical debut, it was sung by Brightman and Michael"} +{"qid": "test1397", "pid": "8797030", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nThe Phantom of the Opera (Andrew Lloyd Webber song) \"\"The Phantom of the Opera\"\" is a song from the stage musical of the same name. It was composed by Andrew Lloyd Webber, with lyrics written by Charles Hart and Richard Stilgoe, and additional lyrics by Mike Batt. The song was originally recorded by Sarah Brightman and Steve Harley, which became a UK hit single in 1986, prior to the musical. In its theatrical debut, it was sung by Brightman and Michael Crawford in their roles as Christine Daaé and the Phantom. The song is performed in Act I after the"} +{"qid": "test1397", "pid": "2076456", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Phantom of the Opera (1986 musical)\"\nhe declined in order to fulfill his commitments on a Bonnie Tyler album. Alan Jay Lerner was then recruited, but he became seriously ill after joining the project and was forced to withdraw; none of his contributions (mostly involving the song \"\"Masquerade\"\") are credited in the show. Richard Stilgoe, the lyricist for \"\"Starlight Express,\"\" wrote most of the original lyrics for the production. Charles Hart, a young and then-relatively unknown lyricist, later rewrote many of the lyrics, along with original lyrics for \"\"Think of Me\"\". Some of Stilgoe's original contributions are still present in the final version, however. Inspired in"} +{"qid": "test1397", "pid": "32622", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"Alan Jay Lerner\"\nGodfrey\"\". He had also received an urgent call from Andrew Lloyd Webber, asking him to write the lyrics to \"\"The Phantom of the Opera\"\". He wrote \"\"Masquerade\"\", but he then informed Webber that he wanted to leave the project because he was losing his memory (due to an undiagnosed brain tumor) and Charles Hart replaced him. He had turned down an invitation to write the English-language lyrics for the musical version of \"\"Les Misérables\"\". After Lerner's death, Paul Blake made a musical revue based on Lerner's lyrics and life entitled \"\"Almost Like Being In Love\"\", which featured music by Frederick"} +{"qid": "test1397", "pid": "8440881", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"Vivian Ellis\"\nsociety instituted an annual event – the Vivian Ellis Prize – to encourage young composers and lyricists to write for the musical stage. Ellis gave all the writers the same advice: \"\"Try and put at least one hit song in every musical you write.\"\" Several of the promising writers featured in the competition went on to success, including Charles Hart who wrote lyrics for \"\"The Phantom of the Opera\"\", and Philip Glassborow whose comedy musical \"\"The Great Big Radio Show!\"\" was a personal favourite. Ellis as a composer was \"\"rediscovered\"\" in the 1980s when his 1929 musical \"\"Mr. Cinders\"\" (featuring"} +{"qid": "test1397", "pid": "3320355", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"Charles Hart (lyricist)\"\nto feature in an exhibition organized by UNICEF to celebrate the UN Convention on the Rights of the Child. Hart was a long-standing trustee and supporter of the UK charity ratings agency, Intelligent Giving. He is represented by Berlin Associates. Charles Hart (lyricist) Charles Hart (born 3 June 1961) is a British lyricist, songwriter and musician. He is best known for writing the lyrics to, and contributing to the book of, Andrew Lloyd Webber's stage musical \"\"The Phantom of the Opera\"\" and for writing the lyrics to \"\"Bend It Like Beckham the Musical\"\". He also co-wrote (with Don Black) the"} +{"qid": "test1397", "pid": "655390", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"Andrew Lloyd Webber\"\nby the 1911 Gaston Leroux novel. He wrote the part of Christine for his then-wife, Sarah Brightman, who played the role in the original London and Broadway productions alongside Michael Crawford as the Phantom. The production was directed by Harold Prince, who had also earlier directed \"\"Evita.\"\" Charles Hart wrote the lyrics for \"\"Phantom\"\" with some additional material provided by Richard Stilgoe, with whom Lloyd Webber co-wrote the book of the musical. It became a hit and is still running in both the West End and on Broadway; in January 2006 it overtook \"\"Cats\"\" as the longest-running musical on Broadway."} +{"qid": "test1397", "pid": "7160355", "query": "who wrote lyrics for phantom of the opera", "answer": "Charles Hart", "passage": "\"The Music of the Night\"\nThe Music of the Night \"\"The Music of the Night\"\" (also labeled as just \"\"Music of the Night\"\") is a major song, as a male solo, from the 1986 musical \"\"The Phantom of the Opera\"\". The music was written by Andrew Lloyd Webber with lyrics by Charles Hart. It has appeared on multiple soundtracks of the musical, such as the original cast version in which English actor Michael Crawford sings the song. Initially made famous by Michael Crawford, the actor who originated the role of the Phantom both in the West End and on Broadway, the song has sold millions"} +{"qid": "test1398", "pid": "6671520", "query": "what culture region is germany a part of", "answer": "Central Germany", "passage": "\"Central Germany (cultural area)\"\nCentral Germany (cultural area) Central Germany () is an economic and cultural region in Germany. Its exact borders depend on context, but it is often defined as being a region within the federal states of Saxony, Thuringia and Saxony-Anhalt, or a smaller part of this region, such as the metropolitan area of Leipzig and Halle plus the surrounding counties. The name dates from the German Empire, when the region was approximately in the centre of the country. Since the German Empire's eastern territories became part of Poland (and Russia in the aftermath of World War II), \"\"Central Germany\"\" has been"} +{"qid": "test1398", "pid": "6671530", "query": "what culture region is germany a part of", "answer": "Central Germany", "passage": "\"Central Germany (cultural area)\"\nbeen refused. Germany's first democratic constitution, the Weimar Constitution of 1919, was deliberated and enacted in the city of Weimar. Central Germany is home to several UNESCO world heritage sites. Present central Germany is part of three German federal states: Saxony, Saxony-Anhalt and Thuringia. A large part of the region is part of the Central German Metropolitan Region which comprises a regional development zone in the European METREX network. it includes major cities in Thuringia and Saxony-Anhalt, as well as the \"\"Saxon triangle\"\" of cities that set up the organization in 1994 (Leipzig, Halle, Dresden and Chemnitz-Zwickau). Central Germany (cultural"} +{"qid": "test1398", "pid": "6671527", "query": "what culture region is germany a part of", "answer": "Central Germany", "passage": "\"Central Germany (cultural area)\"\nthis eastern part, although part of the state of Saxony, is not part of the central German cultural region, as historically, the Lusatia region has its own history and traditions (see i.a. the Lusatian League), being closely linked to Bohemia. The same is true for Magdeburg and the areas surrounding it (i.e. the areas north of Anhalt) as they neither belong to the central German dialect group nor do they have a close cultural connection with the more southern parts, they were traditionally connected to Brandenburg and Prussia. Central Germany has played a crucial role in the development of German"} +{"qid": "test14", "pid": "1352700", "query": "who designed the garden city of new earswick", "answer": "architect Barry Parker", "passage": "\"New Earswick\"\narchitect Barry Parker were commissioned to produce an overall plan for a new 'garden' village and the detailed designs for its first houses. They also designed the garden cities of Letchworth and Welwyn Garden City. The building of New Earswick created a balanced village community where rents were kept low, but still represented a modest commercial return on the capital invested. Houses were open to any working people, not just Rowntree employees. The village was to be a demonstration of good practice. The Trust Deed of the Joseph Rowntree Village Trust, which was set up in 1904 to build and"} +{"qid": "test14", "pid": "5136644", "query": "who designed the garden city of new earswick", "answer": "Raymond Unwin", "passage": "\"Raymond Unwin\"\nand when he married his star designer Clarice Cliff in 1940, she moved into the house and lived there until 1972. It is her association that has made the house particularly famous since. In 1902 Parker and Unwin were asked to design a model village at New Earswick near York for Joseph and Benjamin Seebohm Rowntree, and the following year they were given the opportunity to take part in the creation of Letchworth (loosely based on the Utopian plan of Ebenezer Howard), when the First Garden City Company asked them to submit a plan. In 1903 they were involved with"} +{"qid": "test14", "pid": "1352699", "query": "who designed the garden city of new earswick", "answer": "planner Raymond Unwin", "passage": "\"New Earswick\"\nto the slums that had developed in York and other cities during the previous century, the deprivation of which had been revealed in Seebohm Rowntree's report of 1901, entitled \"\"Poverty: a study of town life\"\". It revealed appalling statistics of dark, overcrowded and insanitary housing. As a result of the report, Joseph Rowntree's conviction that it must be possible to provide better housing for people on low incomes led him to acquire 150 acres of land near the village of Earswick, two and a half miles to the north of the centre of York. The planner Raymond Unwin and the"} +{"qid": "test140", "pid": "855731", "query": "what are the band members names of the rolling stones", "answer": "Keith Richards", "passage": "\"Brian Jones\"\nweaving\"\" where both players would play rhythm and lead parts together; Richards would carry the style on with later Stones guitarists and the sound would become a Rolling Stones trademark. After he founded the Rolling Stones as a British blues outfit in 1962, and gave the band its name, Jones' fellow band members Mick Jagger and Keith Richards began to take over the band's musical direction, especially after they became a successful songwriting team. Jones also did not get along with the band's manager, Andrew Loog Oldham, who pushed the band into a musical direction at odds with Jones' blues"} +{"qid": "test140", "pid": "8716262", "query": "what are the band members names of the rolling stones", "answer": "Keith Richards", "passage": "\"John Michell (writer)\"\nsituated at what he claimed were the apex of two ley lines. Through Michael Rainey, Michell was introduced to the members of rock band The Rolling Stones at the Courtfield Road home of band member Brian Jones. Michell befriended the band's lead singer, Mick Jagger, and he accompanied the band on a visit to Stonehenge. Michell then went on a visit to Woolhope in Herefordshire with Keith Richards, Anita Pallenberg, Christopher Gibbs, and the filmmaker Kenneth Anger, where they hunted for ley lines and UFOs. Marianne Faithfull later recounted that band member Jones was particularly interested in Michell's ideas. He"} +{"qid": "test140", "pid": "4395630", "query": "what are the band members names of the rolling stones", "answer": "Ronnie Wood", "passage": "\"Will Calhoun\"\nKing, Herb Alpert, Dr. John, Jaco Pastorius, Wayne Shorter, Marcus Miller, Public Enemy, and Ronnie Wood. He plays on \"\"Crimson Deep\"\" from the album \"\"What Lies Beneath\"\" by Finnish symphonic metal singer Tarja. He is also a member of the Stone Raiders musical band. He was voted \"\"Best new drummer of 1988\"\" by \"\"Modern Drummer\"\" magazine's readers' poll, then again as \"\"Number one progressive drummer\"\" three times (1989, 1991 & 1992). He was named \"\"Best Drummer of 1990\"\" by \"\"Rolling Stone\"\" magazine's critics poll. He has won two Grammy Awards, one in 1989 for Best Hard Rock Performance by a"} +{"qid": "test140", "pid": "11216893", "query": "what are the band members names of the rolling stones", "answer": "Ronnie Wood", "passage": "\"25×5: the Continuing Adventures of the Rolling Stones\"\n25×5: the Continuing Adventures of the Rolling Stones 25x5: The Continuing Adventures of the Rolling Stones is a documentary featuring rock group The Rolling Stones, charting the period between the band's formation in 1962 and the release of its then latest album, 1989's \"\"Steel Wheels\"\". It was directed by acclaimed British documentary-maker Nigel Finch. Alongside much archive footage, the film also featured extensive original interviews with band members Mick Jagger, Keith Richards, Bill Wyman, Charlie Watts and Ronnie Wood. The band's two guitarists who preceded Ronnie Wood, Brian Jones and Mick Taylor are featured in archive interviews only. Jones died"} +{"qid": "test140", "pid": "8470930", "query": "what are the band members names of the rolling stones", "answer": "Keith Richards", "passage": "\"Respectable (The Rolling Stones song)\"\n1997-1998 Bridges to Babylon Tour was released on the album \"\"No Security\"\". The Stones were joined on stage by John Mayer to play a live version during their 50 and Counting Tour on 13 December 2012 at the Prudential Center in Newark, New Jersey. The Canadian band Les Respectables take their band name from this song and they were Rolling Stones fans. Respectable (The Rolling Stones song) \"\"Respectable\"\" is a song by The Rolling Stones from their 1978 album \"\"Some Girls\"\". It was written by Mick Jagger and Keith Richards. In the liner notes to the 1993 compilation album \"\"\"\""} +{"qid": "test1400", "pid": "6492481", "query": "who pays medical bills in great britain where does the money come from to pay these bills", "answer": "taxes", "passage": "\"Early American currency\"\n1775. This depreciation of colonial currency was harmful to creditors in Great Britain when colonists paid their debts with money that had lost value. The British Parliament passed several Currency Acts to regulate the paper money issued by the colonies. The Currency Act of 1751 restricted the issue of paper money in New England. It allowed the existing bills to be used as legal tender for public debts (i.e. paying taxes), but disallowed their use for private debts (e.g. for paying merchants). In 1776, British economist Adam Smith criticized colonial bills of credit in his most famous work, \"\"The Wealth"} +{"qid": "test1400", "pid": "3664841", "query": "who pays medical bills in great britain where does the money come from to pay these bills", "answer": "taxes", "passage": "\"Currency Act\"\nthan what was taxed out of circulation, the currency depreciated in relation to the British pound sterling. The resultant inflation was harmful to merchants in Great Britain, who were forced to accept the depreciated currency from colonists for payment of debts. The Act limited the future issue of bills of credit to certain circumstances. It allowed the existing bills to be used as legal tender for public debts (i.e. paying taxes), but disallowed their use for private debts (e.g. for paying merchants). The Currency Act 1764 (4 Geo. III c. 34) extended the 1751 Act to all of the British"} +{"qid": "test1401", "pid": "20427701", "query": "who plays poppy in the beat goes on", "answer": "Amanda Leighton", "passage": "\"Trolls: The Beat Goes On!\"\nTrolls: The Beat Goes On! Trolls: The Beat Goes On! is a 2018 American animated television series produced by DreamWorks Animation that is based on the 3D computer-animated romantic comedy musical film \"\"Trolls\"\". The series premiered on Netflix on January 19, 2018 exclusively in the United States, Canada, Latin America, United Kingdom, Ireland, Australia, New Zealand, the Nordics, Benelux, and France. Amanda Leighton, Skylar Astin, Kari Wahlgren, Sam Lerner, David Kaye, David Fynn, Sean T. Krishnan, Whoopi Goldberg, Kevin Michael Richardson, Fryda Wolff and Tom Kenny provide the new voices for Princess Poppy, Branch, Bridget, King Gristle, King Peppy, Biggie"} +{"qid": "test1401", "pid": "16971899", "query": "who plays poppy in the beat goes on", "answer": "Amanda Leighton", "passage": "\"Trolls (film)\"\nDVD also include one episode of \"\"Spirit Riding Free\"\" and two of \"\"\"\". A 26-episode animated series based on the film, entitled \"\"Trolls: The Beat Goes On!\"\" that airs on Netflix premiered on January 19, 2018. The show stars Amanda Leighton as Poppy, Skylar Astin as Branch, and Funches who is reprising his role as Cooper. Trolls (film) Trolls is a 2016 American computer-animated buddy musical comedy film based on the Troll dolls created by Thomas Dam. The film was directed by Mike Mitchell and co-directed by Walt Dohrn, written by Jonathan Aibel and Glenn Berger and based on a"} +{"qid": "test1403", "pid": "18261824", "query": "how many ceos of fortune 500 companies are female", "answer": "32", "passage": "\"Gender diversity\"\nnumber of Female CEO’s with the FTSE 100 also rose between 2014 and 2015 also increased. In Spring 2014 the report showed there were 4 female CEOs in the FTSE 100, this increase to 5 by Spring 2015. By 2017, the number of female CEOs among Fortune 500 companies numbered 32 (~6%). Female Chief Financial Officers Female CFO’s in the FTSE 100 saw the highest increase. In Spring 2014 there were 8 female CFO’s in the FTSE 100, this rose to 12 by Spring 2015. Although rather than 100 companies, this figure was out of 99 due to one company"} +{"qid": "test1403", "pid": "1767526", "query": "how many ceos of fortune 500 companies are female", "answer": "32", "passage": "\"JPMorgan Chase\"\nthe end of 2008 as an individual bank (not including subsidiaries). As of 2018, JPMorgan Chase is ranked #20 on the Fortune 500 rankings of the largest United States corporations by total revenue. For the first time in 2018, a new Securities and Exchange Commission rule mandated under the 2010 Dodd-Frank financial reform requires publicly traded companies to disclose how their CEOs are compensated in comparison with their employees. In public filings, companies have to disclose their \"\"Pay Ratios,\"\" or the CEO's compensation divided by the median employee's. According to SEC filings, JPMorgan Chase & Co. paid its CEO $28,320,175"} +{"qid": "test1403", "pid": "18006430", "query": "how many ceos of fortune 500 companies are female", "answer": "32", "passage": "\"Women in positions of power\"\nof the 192 representatives, only 32 are women, which is only 16.67% female, barely over half of what they recommend for governing bodies. Additionally, of these 32 countries represented by women, only three, the United States, Singapore, and Luxembourg, are considered core countries, making women-represented core countries only an even smaller percentage. Most top and high-power positions in businesses and companies are held by men. Women currently hold 4.4 percent of Fortune 500 CEO roles and 4.4 percent of Fortune 1000 CEO roles. Research has shown “a consistent difference favoring men in accessibility to, and utility of, resources for power”."} +{"qid": "test1403", "pid": "8767228", "query": "how many ceos of fortune 500 companies are female", "answer": "32", "passage": "\"PTT Public Company Limited\"\nThailand listed in Fortune Global 500 companies. The company ranks 81st among top 500 on the Fortune 500, and 180 on the Forbes 2000. For 2016 PTT PCL reported revenues of 1,737,148 million baht, net income of 94,609 million baht, assets of 2,232,331 million baht, and total equity of 762,948 million baht. PTT's 15 directors were compensated with 14.9 million baht in meeting allowances in 2016, plus 38.7 million baht in bonuses. The president and CEO's salary for the year was 30.6 million baht plus a 9.6 million baht bonus. The company in 2016 employed 4,616 (PTT) and 24,680 at"} +{"qid": "test1404", "pid": "20056166", "query": "how many episodes is season 4 of the flash", "answer": "23 episodes", "passage": "\"The Flash (season 4)\"\nThe Flash (season 4) The fourth season of the American television series \"\"The Flash\"\", which is based on the DC Comics character Barry Allen / Flash, premiered on The CW on October 10, 2017, and ran for 23 episodes until May 22, 2018. The season follows a crime scene investigator with superhuman speed who fights criminals, including others who have also gained superhuman abilities. It is set in the Arrowverse, sharing continuity with the other television series of the universe, and is a spin-off of \"\"Arrow\"\". The season is produced by Berlanti Productions, Warner Bros. Television, and DC Entertainment, with"} +{"qid": "test1404", "pid": "20056189", "query": "how many episodes is season 4 of the flash", "answer": "23 episodes", "passage": "\"The Flash (season 4)\"\nDoviak gave the finale a B+, praising the light tone and character moments, while adding that \"\"None of this can make up for the long stretches of mediocrity this year, but at least it doesn’t leave me with a bad taste in my mouth.\"\" General references The Flash (season 4) The fourth season of the American television series \"\"The Flash\"\", which is based on the DC Comics character Barry Allen / Flash, premiered on The CW on October 10, 2017, and ran for 23 episodes until May 22, 2018. The season follows a crime scene investigator with superhuman speed who"} +{"qid": "test1404", "pid": "13031121", "query": "how many episodes is season 4 of the flash", "answer": "19", "passage": "\"LaFleur (Lost)\"\nLaFleur (Lost) \"\"LaFleur\"\" is the eighth television episode of the fifth season of ABC's \"\"Lost\"\". The 94th episode of the show overall, \"\"LaFleur\"\" aired on March 4, 2009, on ABC in the United States, being simulcast on A in Canada. The episode was written by co-executive producers Elizabeth Sarnoff and Kyle Pennington and directed by editor Mark Goldman. Having lost Charlotte Lewis in the time flashes, James \"\"Sawyer\"\" Ford, Juliet Burke, Miles Straume, Jin-Soo Kwon and Daniel Faraday realize the time flashes have stopped, and they find themselves in 1974. Sawyer then perpetuates a lie to the DHARMA Initiative to"} +{"qid": "test1404", "pid": "19877161", "query": "how many episodes is season 4 of the flash", "answer": "23", "passage": "\"Flash vs. Arrow\"\nThe CW during the 2013–14 television season, when Barry Allen was introduced in the eighth episode of \"\"Arrow\"\"s second season ahead of the debut of \"\"The Flash\"\". In July 2014, it was announced that the eighth episodes of the third season of \"\"Arrow\"\" and the first season of \"\"The Flash\"\" would be a two-hour crossover event. The crossover was originally planned as the seventh episodes of each series, but was pushed back due to the large amount of work needed to accomplish it. In particular, the schedule coordination of trying to \"\"jam another episode into the 23-episode schedule for each"} +{"qid": "test1406", "pid": "8375536", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Baca family of New Mexico\"\nde Albizu. It does not appear that Antonio had any sons to carry on the Baca name. Antonio was executed on 21 July 1643 for treason against the colonial government. Alonzo Baca, born in Nuevo Mexico, was the youngest sibling. Although he took part in the same conspiracy that resulted in his brother Antonio's death, Alonzo survived the affair. He may have had at least one son, another Cristóbal Baca. It appears that the Baca surname may have continued through Alonzo’s progeny, including the second Cristóbal Baca. The Pueblo Revolt occurred in 1680. Subsequently, many Spanish families fled Nuevo Mexico"} +{"qid": "test1406", "pid": "16653954", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Bartolomé Baca\"\nhim on the Canadian River. Only a few turned up, and the others could not be found, much to Baca's displeasure. In January 1825 there were Comanche raids near San Elizario and El Paso. Apparently the main Comanche chief obeyed Baca's request to come to Santa Fe on this occasion, but Baca reported that the Comanches were \"\"insolent as they have become accustomed to be.\"\" In 1825 Baca and New Mexico's legislature, the \"\"Diputación Provincial\"\", opened the land of the Pueblo Indians of Pecos to settlement by Mexicans wherever the land was not cultivated. Baca issued licenses to U.S. citizens"} +{"qid": "test1406", "pid": "5617233", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Elfego Baca\"\nReserve, New Mexico), Elfego Baca arrested a drunk cowboy named Charlie McCarty. Baca flashed his badge at McCarty and took Charlie's gun. McCarty's fellow cowboys tried to take him by force, but Baca resisted and opened fire on the cowboys, killing the horse of John Slaughter's foreman, which fell on him and killed him. Baca shot another cowboy in the knee. Subsequently, Justice of the Peace Ted White granted Charlie's freedom and summoned Bert Hearne, a rancher from Spur Lake Ranch, to bring Baca back to the Justice for questioning relating to what the Justice considered murder. After Baca refused"} +{"qid": "test1406", "pid": "8375538", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Baca family of New Mexico\"\n26 October 1754, the oldest son of Juan Antonio Baca and Maria Romero. He had over 20 children by three different wives. The Cabeza de Baca family are often known by the abbreviated surnames of either C. de Baca or de Baca. The surname \"\"Baca\"\" is often assumed to be a variation of the name \"\"Cabeza de Vaca.\"\" Cabeza de Vaca means \"\"head of a cow\"\" in Spanish. There are two possible origins of this name: Some researchers have discovered an erroneous link between Crístobal Baca’s wife Ana Ortíz and Christopher Columbus, among others. As noted previously, Ana Ortíz was"} +{"qid": "test1406", "pid": "4807361", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Roman Catholic Archdiocese of Santa Fe\"\nIn response, Zubiria appointed him to supervise all of the major parishes in southern New Mexico (Mora). Baca felt most comfortable in one of the parishes, named Mesilla, where he decided to take a political position as a part of the Church, continuing Zubiria’s mission of resistance. Baca became politically active in the area, lending his support to the Republican party. He supported the Republican candidates because he felt that it aligned with his Catholic faith, and that Mexicans who supported Democrats were “betraying” their religion. Despite his support for Republicans, in 1871, Baca and Jose Manuel Gallegos, who was"} +{"qid": "test1406", "pid": "5617243", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Elfego Baca\"\nlegend was that / Like \"\"el gato\"\", \"\"the cat\"\" / Nine lives had Elfego Baca.\"\" Elfego Baca Elfego Baca (February 10, 1865 – August 27, 1945) was a gunman, lawman, lawyer, and politician in the closing days of the American wild west. Baca was born in Socorro, New Mexico, just before the end of the American Civil War to Francisco and Juana Maria Baca. His family moved to Topeka, Kansas, when he was a young child. Upon his mother’s death in 1880, Baca returned with his father to Belen, New Mexico, where his father became a marshal. In 1884, at"} +{"qid": "test1406", "pid": "5617231", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Elfego Baca\"\nElfego Baca Elfego Baca (February 10, 1865 – August 27, 1945) was a gunman, lawman, lawyer, and politician in the closing days of the American wild west. Baca was born in Socorro, New Mexico, just before the end of the American Civil War to Francisco and Juana Maria Baca. His family moved to Topeka, Kansas, when he was a young child. Upon his mother’s death in 1880, Baca returned with his father to Belen, New Mexico, where his father became a marshal. In 1884, at age 19, Baca acquired some guns and became a deputy sheriff (whether through purchasing a"} +{"qid": "test1406", "pid": "18030074", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Maxine Baca Zinn\"\nMaxine Baca Zinn Maxine Baca Zinn (born June 11, 1942), \"\"née\"\" Baca, is an American sociologist known for her work on gender, race, and ethnicity and particularly, the experience of women of color at the intersection of race, class, and gender. Baca Zinn has published a large number of articles and book chapters as well as co-authored several sociology books on the family. Much of her work focuses specifically on Mexican American families. Maxine Baca Zinn was born on June 11, 1942 in Santa Fe, New Mexico to Presente and Louise Duran Baca. She grew up in Santa Fe where"} +{"qid": "test1406", "pid": "7869481", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Lee Baca\"\nwhen she was a year old. Baca lived with his grandparents Clara and Thomas Baca. Thomas Baca came from Albuquerque, New Mexico. In 1960, Baca graduated from Benjamin Franklin High School, located in the Highland Park neighborhood of Los Angeles, California. In high school, Baca was the student senior class president. Baca graduated from East Los Angeles College. In 1971, Baca received a bachelor's degree from California State University, Los Angeles. In 1974, Baca earned a Masters of Public Administration degree from USC. In 1993, Baca received a Doctorate of Public Administration degree from USC School of Policy, Planning, and"} +{"qid": "test1406", "pid": "11214790", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Ezequiel Cabeza De Baca\"\nSanitarium in Santa Fe, with only a score of persons attending. He died on February 18, 1917 in office. He had been sick for a long period of time and had traveled to California for treatments which were not successful. He was buried in the Mount Calvary Cemetery in Las Vegas, New Mexico. De Baca County is named for Governor de Baca. Ezequiel and Margarita Cabeza de Baca had 14 children. Ezequiel Cabeza De Baca Ezequiel Cabeza De Baca (November 1, 1864 – February 18, 1917) was the first Hispano elected for office as lieutenant governor in New Mexico's first"} +{"qid": "test1406", "pid": "5773135", "query": "where does the last name baca come from", "answer": "New Mexico", "passage": "\"Congressional Hispanic Caucus\"\nAmerican political system. Arizona: California: Florida: Illinois: Nevada: New Jersey: New Mexico: New York: Northern Mariana Islands: Texas: Last updated: May 15, 2018 On January 31, 2007, a story on the Politico.com website reported that Rep. Joe Baca had called Rep. Loretta Sanchez a \"\"whore\"\" in a conversation with Speaker of the California Assembly Fabian Núñez, prompting Sanchez to resign from the CHC. Rep. Baca has denied this charge, but two other CHC members, Linda Sánchez (Loretta's sister) and Hilda Solis, expressed support for Loretta Sanchez. In the case of Solis, Baca called her \"\"a kiss-up to Speaker Nancy Pelosi,\"\""} +{"qid": "test1408", "pid": "16365466", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015 Rugby World Cup – Oceania qualification\"\nIslands, in a one-off match to determine who qualified for the 2015 Rugby World Cup. 2015 Rugby World Cup – Oceania qualification The Federation of Oceania Rugby Unions (FORU) section of the 2015 Rugby World Cup qualification involved five teams competing for one spot in the final tournament in England. In addition to four automatically qualified teams, Oceania was allocated one direct qualifying place (Oceania 1) for the 2015 Rugby World Cup to be held in England. It was the last region to begin its qualification process for 2015. The 2013 FORU Oceania Cup was the regional qualification tournament, with"} +{"qid": "test1408", "pid": "4440680", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"Eddie Jones (rugby union)\"\nEddie Jones (rugby union) Eddie Jones (born 30 January 1960) is an Australian rugby union coach and former player who is the current head coach of the England national team, a position he has held since 2015. Between 2001 and 2005 he coached , taking the team to the 2003 Rugby World Cup Final, and from 2012 to 2015 he coached , leading them in the 2015 Rugby World Cup and their upset win over . Jones was an assistant coach for South Africa in 2007 when the Springboks won the 2007 Rugby World Cup. Jones began his coaching career"} +{"qid": "test1408", "pid": "18758547", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015–16 European Rugby Champions Cup\"\n2015–16 European Rugby Champions Cup The 2015–16 European Rugby Champions Cup was the second European Rugby Champions Cup championship (21st overall), the annual rugby union club competition for teams from the top six nations in European rugby. The European Rugby Champions Cup replaced the Heineken Cup, which was Europe's top-tier competition for rugby clubs for the first nineteen years of professional European rugby union. As a result of the 2015 Rugby World Cup being held in England, the tournament started slightly later than in previous seasons, with the opening round taking place on the weekend of 13/14/15 November 2015. The"} +{"qid": "test1408", "pid": "341786", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"Rugby union\"\nfuture competitions every four years thereafter. The most important tournament in rugby union is the Rugby World Cup, a men's tournament that has taken place every four years since 1987 among national rugby union teams. New Zealand has won the Rugby World Cup the most (3 times) and is the current cup holder, winning the 2015 Rugby World Cup held at Twickenham, beating Australia in the final. England (2003) were the first team from the Northern Hemisphere to win, the other champions being New Zealand (1987, 2011 and 2015), Australia (1991 and 1999), and South Africa (1995 and 2007). The"} +{"qid": "test1408", "pid": "18758555", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015–16 European Rugby Champions Cup\"\nfollows: The winners of the semi-finals contested the final, at Grand Stade de Lyon, on 14 May 2016. 2015–16 European Rugby Champions Cup The 2015–16 European Rugby Champions Cup was the second European Rugby Champions Cup championship (21st overall), the annual rugby union club competition for teams from the top six nations in European rugby. The European Rugby Champions Cup replaced the Heineken Cup, which was Europe's top-tier competition for rugby clubs for the first nineteen years of professional European rugby union. As a result of the 2015 Rugby World Cup being held in England, the tournament started slightly later"} +{"qid": "test1408", "pid": "16365464", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015 Rugby World Cup – Oceania qualification\"\n2015 Rugby World Cup – Oceania qualification The Federation of Oceania Rugby Unions (FORU) section of the 2015 Rugby World Cup qualification involved five teams competing for one spot in the final tournament in England. In addition to four automatically qualified teams, Oceania was allocated one direct qualifying place (Oceania 1) for the 2015 Rugby World Cup to be held in England. It was the last region to begin its qualification process for 2015. The 2013 FORU Oceania Cup was the regional qualification tournament, with the winner playing Fiji in a one-off match for the qualifying place. The winner of"} +{"qid": "test1408", "pid": "7457434", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015 Rugby World Cup\"\n2015 Rugby World Cup The 2015 Rugby World Cup was the eighth Rugby World Cup, the quadrennial rugby union world championship. The tournament was hosted by England from 18 September to 31 October. Of the 20 countries competing in the World Cup in 2011, there was only one change: Uruguay replaced Russia. This was the first World Cup with no new teams to the tournament. Reigning champions New Zealand won the cup and defended their title by defeating Australia in the final 34–17; South Africa defeated Argentina to take third place. This was the first Rugby World Cup where no"} +{"qid": "test1408", "pid": "18868751", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015 Rugby World Cup squads\"\n2015. Statistics do not include players who joined a squad during the tournament. 2015 Rugby World Cup squads The 2015 Rugby World Cup was an international rugby union tournament to be held in England and Wales from 18 September until 31 October 2015. Twenty national teams competed, and each brought a 31-man squad to the tournament. The tournament was administered by World Rugby, to whom each team had to submit their finalised squad by 31 August 2015. A player may be replaced for medical or compassionate reasons, but would be unable to return to the squad. Any replacement players had"} +{"qid": "test1408", "pid": "18868745", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"2015 Rugby World Cup squads\"\n2015 Rugby World Cup squads The 2015 Rugby World Cup was an international rugby union tournament to be held in England and Wales from 18 September until 31 October 2015. Twenty national teams competed, and each brought a 31-man squad to the tournament. The tournament was administered by World Rugby, to whom each team had to submit their finalised squad by 31 August 2015. A player may be replaced for medical or compassionate reasons, but would be unable to return to the squad. Any replacement players had an enforced stand-down period of 48 hours before they can take the field."} +{"qid": "test1408", "pid": "17126035", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"Roger Clarke (rugby administrator)\"\nunion in the wake of the 2015 Rugby World Cup due to be held in England. Clarke was appointed alongside former players of the England national rugby union team and the British and Irish Lions, Fran Cotton and Peter Wheeler. In 2013, Clarke said that he would like to see some of the legacy money invested in grassroots rugby facilities. Roger Clarke (rugby administrator) Roger Clarke is a rugby union administrator from Royal Tunbridge Wells, Kent, England. Clarke was educated at Royal Tunbridge Wells Grammar school, The Skinners' School where he also played rugby union for the school. Clarke then"} +{"qid": "test1408", "pid": "14442339", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"Sport in Chile\"\nby Queen Elizabeth II of England in 2004, and a second title in 2007. Chile hosted the World Polo Championship in 1992, where it won second place, and received third place in the 2004 World Cup held in France. Chile will made its debut in Rugby league in 2015. Although there has been no games on home soil all players meet eligibility guidelines. Rugby union has been played in Chile since at least the 1880s, introduced by the British. The Chile Rugby Union was formed in 1935 and was renamed the Rugby Federation of Chile in 1948. At present, rugby"} +{"qid": "test1408", "pid": "341722", "query": "where was the 2015 rugby union world cup held", "answer": "England", "passage": "\"Rugby football\"\ngames between younger players. Much larger versions of traditional balls are also available for purchase, but these are mainly for their novelty attraction. The Rugby World Cup, which was first held in New Zealand and Australia in 1987, occurs every four years. It is an international tournament organized by World Rugby. The event is played in the union format and features the top 20 teams from around the world. The current world champions are New Zealand, who won the 2015 Rugby World Cup, which was played in England. The Rugby League World Cup was the first World Cup of either"} +{"qid": "test1409", "pid": "7814778", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"Political history of the United Kingdom (1945–present)\"\nresulted in the formation of a minority conservative government which was supported by the Northern Irish Democratic Unionist Party. Political history of the United Kingdom (1945–present) When Britain emerged victorious from the Second World War, the Labour Party under Clement Attlee came to power and created a comprehensive welfare state, with the establishment of the National Health Service giving free healthcare to all British citizens, and other reforms to benefits. The Bank of England, railways, heavy industry, and coal mining were all nationalised. The most controversial issue was nationalisation of steel, which was profitable unlike the others. Economic recovery was"} +{"qid": "test1409", "pid": "7814654", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"Political history of the United Kingdom (1945–present)\"\nPolitical history of the United Kingdom (1945–present) When Britain emerged victorious from the Second World War, the Labour Party under Clement Attlee came to power and created a comprehensive welfare state, with the establishment of the National Health Service giving free healthcare to all British citizens, and other reforms to benefits. The Bank of England, railways, heavy industry, and coal mining were all nationalised. The most controversial issue was nationalisation of steel, which was profitable unlike the others. Economic recovery was slow, housing was in short supply, bread was rationed along with many necessities in short supply. It was an"} +{"qid": "test1409", "pid": "8587095", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"Family Allowances Act 1945\"\nFamily Allowances Act 1945 The Family Allowances Act 1945 (8 & 9 Geo. VI c. 41) was an Act of Parliament in the United Kingdom. Enacted in June 1945 when a caretaker Conservative government was in power, it came into operation from August 6, 1946, and was the first law to provide child benefit in the United Kingdom. Family allowances had been one of the items proposed by the Beveridge Report in 1942. The Labour Party briefly debated pressing for allowances during the Second World War, but a party conference resolution to this end was opposed by the trades unions"} +{"qid": "test1409", "pid": "204208", "query": "in 1945 which party came into power in england", "answer": "Labour", "passage": "Irgun\nIn order to increase the popularity of the Irgun organization and ideology, Irgun employed propaganda. This propaganda was mainly aimed at the British, and included the idea of Eretz Israel. According to Irgun , the Jewish state was not only to encompass all of Mandatory Palestine, but also The Emirate of Transjordan. When the Labour party came into power in Britain in July 1945, Irgun published an announcement entitled, \"\"We shall give the Labour Government a Chance to Keep Its Word.\"\" In this publication, Irgun stated, \"\"Before it came to power, this Party undertook to return the Land of Israel"} +{"qid": "test1409", "pid": "432778", "query": "in 1945 which party came into power in england", "answer": "Labour", "passage": "\"History of the United Kingdom\"\nParty experts went into the files to find the detailed plans for nationalisation. To their surprise, there were no plans. The leaders decided to act fast to keep up the momentum of the 1945 electoral landslide. They started with the Bank of England, civil aviation, coal, and Cable and Wireless. Then came railways, canals, road haulage and trucking, electricity, and gas. Finally came iron and steel, which was a special case because it was a manufacturing industry. Altogether, about one fifth of the economy was nationalised. Labour dropped its plans to nationalise farmlands. The procedure used was developed by Herbert"} +{"qid": "test1409", "pid": "12245645", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"1945 Motherwell by-election\"\nAs a result, the only opposition in by-election came from independents, minor parties and occasional unofficial party candidates aligned with major parties. For the by-election, the Labour Party stood Alexander Anderson. His only opposition came from the Scottish National Party (SNP), then a small party advocating Scottish independence, who stood Party Secretary Robert McIntyre. The election was won by McIntyre, who became the first SNP Member of Parliament. However, Anderson regained the seat from McIntyre at the 1945 general election a few months later. 1945 Motherwell by-election The Motherwell by-election was held on 12 April 1945, following the death of"} +{"qid": "test1409", "pid": "17335756", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"Social history of the United Kingdom (1945–present)\"\nby liberal economist William Beveridge. The creation of Britain's publicly funded National Health Service under health minister Aneurin Bevan remains Labour's proudest achievement. However the Labour Party had developed no detailed nationalization plans. Improvising, they started with the Bank of England, civil aviation, coal and Cable and Wireless. Then came railways, canals, road haulage and trucking, electricity, and gas. Finally came iron and steel, which was a special case because it was a manufacturing industry. Altogether, about one fifth of the economy was taken over. Labour dropped the notion of nationalising farms. On the whole nationalisation went smoothly, with two"} +{"qid": "test1409", "pid": "7814660", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"Political history of the United Kingdom (1945–present)\"\nto Labour's defeat in the 2010 election. It was replaced by a Conservative-Liberal Democrat coalition, headed by David Cameron, that pursued a series of public spending cuts to reduce the budget deficit. In June 2016, the UK voted to leave the European Union. Conservatives replaced Cameron with Theresa May. After the Second World War, the landslide 1945 election returned the Labour Party to power and Clement Attlee became Prime Minister of the United Kingdom. The party quickly nationalised critical sectors of the economy, especially declining industries. The Bank of England was nationalised along with railways (see Transport Act 1947), coal"} +{"qid": "test1409", "pid": "13227591", "query": "in 1945 which party came into power in england", "answer": "Labour Party", "passage": "\"Penry Williams\"\nWith rifts in the Liberal Party healed, the party's fortunes recovered at the 1923 general election, and Williams regained his seat. His return was short-lived, because at the 1924 general election he was unseated in a close three-way contest by the Labour Party candidate Ellen Wilkinson. At the 1929 general election, he stood as the Liberal Party candidate for Berwick-on-Tweed where he came close to gaining the seat from the Conservatives. Penry Williams Penry Williams (5 September 1866 – 26 June 1945) was a Liberal Party politician in England. He was born in Middlesbrough, the son of Edward Williams, a"} +{"qid": "test141", "pid": "3346005", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Gamaliel\nof the Apostles chapter 5 speaks of Gamaliel as a man, held in great esteem by all Jews, who spoke to not condemn the apostles of Jesus in to death, and as the Jewish law teacher of Paul the Apostle in . \"\"Gamaliel\"\" is a Hebrew name meaning \"\"reward of God\"\". In the Talmud, Gamaliel is described as bearing the titles Nasi and \"\"Rabban\"\" (our master), as the president of the Great Sanhedrin in Jerusalem; although some dispute this, it is not doubted that he held a senior position in the highest court in Jerusalem. Gamaliel holds a reputation in"} +{"qid": "test141", "pid": "13377094", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Paul the Apostle and Judaism\"\nquite free to eat anything offered to idols, never appealing or even mentioning the Jerusalem council. He rather attempts to persuade them by appealing to the care they should have for other believers who might not feel so free. Paul himself described several meetings with the apostles in Jerusalem, though it is difficult to reconcile any of them fully with the account in Acts (see also Paul the Apostle#Council of Jerusalem). Paul claims he \"\"went up again to Jerusalem\"\" (i.e., not the first time) with Barnabas and Titus \"\"in response to a revelation\"\", in order to \"\"lay before them the"} +{"qid": "test141", "pid": "3224232", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Council of Jerusalem\"\nfornication and idolatry, sometimes referred to as the Apostolic Decree or Jerusalem Quadrilateral. Accounts of the council are found in Acts of the Apostles chapter 15 (in two different forms, the Alexandrian and Western versions) and also possibly in Paul's letter to the Galatians chapter 2. Some scholars dispute that Galatians 2 is about the Council of Jerusalem (notably because Galatians 2 describes a private meeting) while other scholars dispute the historical reliability of the Acts of the Apostles. The Council of Jerusalem is generally dated to 48 AD, roughly 15 to 25 years after the crucifixion of Jesus, between"} +{"qid": "test141", "pid": "16027027", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Ancient church councils (pre-ecumenical)\"\nin particular the obligation to abstain from eating blood or what has been strangled, are not accepted by all Christian churches. The Acts of the Apostles records, without using for it the term \"\"council\"\" or \"\"synod\"\", what has been called the Council of Jerusalem: to respond to a consultation by Paul of Tarsus, the apostles and elders of the Church in Jerusalem met to address the question of observance of biblical law in the early Christian community, which included Gentile converts. This is the only such meeting recorded in the New Testament, and may be referred to also in the"} +{"qid": "test141", "pid": "3594048", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"History of male circumcision\"\nwas one thing to read the Law and another thing to practice it. Despite his mother Helen and Ananias's fear of the consequences, Josephus said that God looked after Izates and his reign was peaceful and blessed. The Council of Jerusalem in Acts of the Apostles 15 addressed the issue of whether circumcision was required of new converts to Christianity. Both Simon Peter and James the Just spoke against requiring circumcision in Gentile converts and the Council ruled that circumcision was not necessary. However, Acts 16 and many references in the Letters of Paul show that the practice was not"} +{"qid": "test141", "pid": "11418281", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Origins of Christianity\"\nthe writings of Paul. According to the New Testament, Saul of Tarsus first persecuted the early Jewish Christians, but then converted. He adopted the name Paul and started proselytizing among the Gentiles, adopting the title \"\"Apostle to the Gentiles.\"\" He persuaded the leaders of the Jerusalem Church to allow Gentile converts exemption from most Jewish commandments at the Council of Jerusalem, which opened the way for a much larger Christian Church, extending far beyond the Jewish community. While Paul was inspired by the early Christian apostles, his writings elaborate on their teachings, and also give interpretations which are different from"} +{"qid": "test141", "pid": "2384603", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Cerinthus\nthe Apostles Paul and Peter at Jerusalem, and had sent out men to Antioch commanding that gentile converts must be circumcised and keep the Law, prompting the convention of the Jerusalem Council (c. 50). After these things, Epiphanius says that Cerinthus founded a school in the Roman province of Asia Minor, which at its height spread into the province of Galatia. According to Galatian tradition, Paul wrote his epistle to the Galatians against Cerinthus' followers who were troubling the church. In Asia, early Christian writers identify Cerinthus as an adversary of the Apostle John. According to Irenaeus, his teacher Polycarp"} +{"qid": "test141", "pid": "12647641", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Incident at Antioch\"\naccount of an incident at Antioch given by Paul in his letters, and the historical reliability of the Acts of the Apostles is disputed. According to the Epistle to the Galatians chapter 2, Peter had traveled to Antioch and there was a dispute between him and Paul. The Epistle does not exactly say if this happened after the Council of Jerusalem or before it, but the incident is mentioned in Paul's letter as his next subject after describing a meeting in Jerusalem which some scholars consider to be the council. An alternative time, which many believe to be better suited"} +{"qid": "test141", "pid": "55664", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Barnabas\nBarnabas Barnabas (; Greek: Βαρνάβας), born Joseph, was an early Christian, one of the prominent Christian disciples in Jerusalem. According to Acts 4:36, Barnabas was a Cypriot Jew. Named an apostle in Acts 14:14, he and Paul the Apostle undertook missionary journeys together and defended Gentile converts against the Judaizers. They traveled together making more converts (c. 45–47), and participated in the Council of Jerusalem (c. 50) Barnabas and Paul successfully evangelized among the \"\"God-fearing\"\" Gentiles who attended synagogues in various Hellenized cities of Anatolia. Barnabas' story appears in the Acts of the Apostles, and Paul mentions him in some"} +{"qid": "test141", "pid": "1296634", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Ebionites\nJerusalem Church. Eusebius records that Clement of Alexandria wrote that Peter, James and John chose James, the brother of Jesus, as bishop of Jerusalem, but Eusebius also subjects James to the authority of all the apostles. Peter baptised Cornelius the Centurion, introducing uncircumcised Gentiles into the church in Judea. Paul, \"\"Apostle to the Gentiles\"\", established many churches and developed a Christian theology (see Pauline Christianity). At the Council of Jerusalem (\"\"c\"\" 49), Paul argued to abrogate Mosaic observances for non-Jewish converts. When Paul recounted the events to the Galatians (), he referred only to the remembrance of the poor rather"} +{"qid": "test141", "pid": "3224236", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Council of Jerusalem\"\nas well, as the Apostolic Decree indicates. The dispute was between those, such as the followers of the \"\"Pillars of the Church\"\", led by James, who believed, following his interpretation of the Great Commission, that the church must observe the Torah, i.e. the rules of traditional Judaism, and Paul the Apostle, who believed there was no such necessity. (See also Supersessionism, New Covenant, Antinomianism, Hellenistic Judaism, Paul the Apostle and Judaism.) At the Council, following advice offered by Simon Peter ( and ), Barnabas and Paul gave an account of their ministry among the gentiles (), and the apostle James"} +{"qid": "test141", "pid": "3260268", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Apostolic Age\"\nthey were led by James the Just. According to , they described themselves as 'disciples of the Lord' and [followers] 'of the Way', and according to a settled community of disciples at Antioch were the first to be called 'Christians'. Saul of Tarsus, commonly known as Paul the Apostle, persecuted the early Jewish Christians, such as Saint Stephen, then converted and adopted the title of \"\"Apostle to the Gentiles\"\" and started proselytizing among the Gentiles. He persuaded the leaders of the Jerusalem Church to allow Gentile converts exemption from most Jewish commandments at the Council of Jerusalem. According to the"} +{"qid": "test141", "pid": "5504989", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Hyperdispensationalism\nto do with the newly-revealed mystery to and through the apostle Paul, who is not sent out until years later with the new ministry to the gentiles to establish a new church which is composed of both believing Israelites and believing gentiles, not just Israelites (which includes proselytes to Judaism), as in Acts 2. Paul, it is specifically noted, was sent to preach the gospel but not to baptize, unlike notably the Lord's commission to his apostles. The new church is not obligated to any Jewish rituals (like water baptism), according to the determination of the Council of Jerusalem recorded"} +{"qid": "test141", "pid": "15577748", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Saint Peter\"\nhis opinion in the debate over converting Gentiles was crucial, etc. According to the Acts of the Apostles, Peter and John were sent from Jerusalem to Samaria (). Peter/Cephas is mentioned briefly in the opening chapter of Paul's Epistle to the Galatians, which mentions a trip by Paul to Jerusalem where he meets Peter (). Peter features again in Galatians, fourteen years later, when Paul (now with Barnabas and Titus) returned to Jerusalem (), and then, when Peter came to Antioch, Paul opposed Peter to his face \"\"because he [Peter] was in the wrong\"\" (NIV) (). At the Council of"} +{"qid": "test141", "pid": "2073524", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"James, brother of Jesus\"\nthe Bar Kokhba revolt in 130. Following the second destruction of Jerusalem and the rebuilding of the city as Aelia Capitolina, subsequent bishops were Greeks. James the Just was \"\"from an early date with Peter a leader of the Church at Jerusalem and from the time when Peter left Jerusalem after Herod Agrippa's attempt to kill him, James appears as the principal authority who presided at Council of Jerusalem.\"\" The Pauline epistles and the later chapters of the Acts of the Apostles portray James as an important figure in the Christian community of Jerusalem. When Paul arrives in Jerusalem to"} +{"qid": "test141", "pid": "55690", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Barnabas\n1538 given the grand old Monastery of Saint Barnabas by the city wall of Milan. This being their main seat, the Order was thenceforth known by the popular name of \"\"Barnabites\"\". Barnabas Barnabas (; Greek: Βαρνάβας), born Joseph, was an early Christian, one of the prominent Christian disciples in Jerusalem. According to Acts 4:36, Barnabas was a Cypriot Jew. Named an apostle in Acts 14:14, he and Paul the Apostle undertook missionary journeys together and defended Gentile converts against the Judaizers. They traveled together making more converts (c. 45–47), and participated in the Council of Jerusalem (c. 50) Barnabas and"} +{"qid": "test141", "pid": "179874", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"History of Israel\"\neffigies of the Emperor Caligula in Synagogues and in the Jewish temple. Jesus was born in the last years of Herod's rule, probably in the Judean city of Bethlehem. Jesus is thought to have been a Galilean Jewish reformer (from Nazareth), and was executed in Jerusalem by the Roman governor Pontius Pilate between 25 and 35 CE. All his key followers, the Twelve Apostles, were Jews including Paul the Apostle (5–67 CE) who took critical steps towards creating a new religion, defining Jesus as the \"\"Son of God\"\". In the year 50 CE, the Council of Jerusalem led by Paul,"} +{"qid": "test141", "pid": "3609620", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "Judaizers\ngroups dispute the label because \"\"Judaizers\"\" is typically used as a pejorative. Most Christians believe that much of the Old Covenant has been superseded, while according to some modern Protestants it has been completely abrogated and replaced by the Law of Christ. The Christian debate over Judaizing began in the lifetime of the apostles, notably at the Council of Jerusalem and the incident at Antioch. It has been carried on parallel to continuing debates about Paul the Apostle and Judaism, Protestant views of the Ten Commandments, and Christian ethics. The word \"\"Judaizer\"\" comes from \"\"Judaize\"\", which is seldom used in"} +{"qid": "test141", "pid": "2286760", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Apostle (Latter Day Saints)\"\nmember of the council (). Today twelve men with this same divine calling and ordination constitute the Quorum of the Twelve Apostles in The Church of Jesus Christ of Latter-day Saints. The title was also applied to others who, though not of the number of the original twelve, yet were called to serve as special witnesses of the Lord. Paul repeatedly spoke of himself as an apostle (; ; ; ). He applied the titles to James, the Lord's brother (), and also to Barnabas (; cf. ). The New Testament does not inform us whether these three brethren also"} +{"qid": "test141", "pid": "327758", "query": "which apostle spoke at the council of jerusalem", "answer": "Paul", "passage": "\"Paul the Apostle\"\nand John accepted Paul's mission to the Gentiles. The Jerusalem meetings are mentioned in Acts, and also in Paul's letters. For example, the Jerusalem visit for famine relief apparently corresponds to the \"\"first visit\"\" (to Peter and James only). F. F. Bruce suggested that the \"\"fourteen years\"\" could be from Paul's conversion rather than from his first visit to Jerusalem. Despite the agreement achieved at the Council of Jerusalem, Paul recounts how he later publicly confronted Peter in a dispute sometimes called the \"\"Incident at Antioch\"\", over Peter's reluctance to share a meal with Gentile Christians in Antioch because they"} +{"qid": "test1410", "pid": "2039943", "query": "where does porter fly out of in toronto", "answer": "Billy Bishop Toronto City Airport", "passage": "\"Billy Bishop Toronto City Airport\"\nCanada Express began flying out of the airport on May 1, 2011. United Continental Holdings (the merged Continental Airlines and United Airlines), however, decided not to fly out of the airport. The 16 slots previously held by United Continental Holdings were awarded to Porter in September 2011. On June 20, 1941, two Norwegian pilots training at the Island Airport were killed. Their Northrop N-3PB seaplane was taking off from the harbour waters, when a ferry boat, Sam McBride travelling from the mainland to the Toronto Island crossed their path. The plane crashed into the upper level of the ferry, then"} +{"qid": "test1410", "pid": "4914884", "query": "where does porter fly out of in toronto", "answer": "Billy Bishop Toronto City Airport", "passage": "\"Windsor International Airport\"\nwidely been attributed to aggressive efforts to attract more flights to existing destinations, and to new destinations. In 2011, Porter Airlines began flying from Windsor to Toronto (Billy Bishop Toronto City Airport) and Porter declared that Windsor is one of its most successful new markets. However, 37% of the local market still use Detroit Metro Airport as its airport of choice. In early October 2013, the City of Windsor announced it would invest $14.1 million into the airport to create a multi-model cargo terminal. The project is expected to create approximately 105 jobs for the City of Windsor and has"} +{"qid": "test1410", "pid": "7095434", "query": "where does porter fly out of in toronto", "answer": "Billy Bishop Toronto City Airport", "passage": "\"Porter Airlines\"\nPorter Airlines Porter Airlines is a regional airline headquartered at Billy Bishop Toronto City Airport on the Toronto Islands in Toronto, Ontario, Canada. Owned by Porter Aviation Holdings, formerly known as REGCO Holdings Inc., Porter operates regularly scheduled flights between Toronto and locations in Canada and the United States using Canadian-built Bombardier Dash-8 Q 400 turboprop aircraft. Porter's operation at the Toronto airport was launched in 2006 with some controversy. Robert Deluce, who is now the CEO of Porter Airlines, proposed creating a regional airline using Bombardier turboprop aircraft to service major cities of Canada within the range of Toronto."} +{"qid": "test1410", "pid": "7095472", "query": "where does porter fly out of in toronto", "answer": "Billy Bishop Toronto City Airport", "passage": "\"Porter Airlines\"\nfree flights. Porter Airlines Porter Airlines is a regional airline headquartered at Billy Bishop Toronto City Airport on the Toronto Islands in Toronto, Ontario, Canada. Owned by Porter Aviation Holdings, formerly known as REGCO Holdings Inc., Porter operates regularly scheduled flights between Toronto and locations in Canada and the United States using Canadian-built Bombardier Dash-8 Q 400 turboprop aircraft. Porter's operation at the Toronto airport was launched in 2006 with some controversy. Robert Deluce, who is now the CEO of Porter Airlines, proposed creating a regional airline using Bombardier turboprop aircraft to service major cities of Canada within the range"} +{"qid": "test1410", "pid": "2039898", "query": "where does porter fly out of in toronto", "answer": "Billy Bishop Toronto City Airport", "passage": "\"Billy Bishop Toronto City Airport\"\nupgrades. A bridge was started but cancelled by Toronto City Council in 2003. By 2005, the airport recorded only 68,000 flights annually, down from a historic high of 800,000 in 1987. The only carrier operating at the airport was Air Canada affiliate Air Canada Jazz, operating flights between Toronto and Ottawa. In 2006, Jazz was forced out of the airport by REGCO, the terminal owners, which announced a new \"\"Porter Airlines\"\" regional airline. Porter began regional airline service with flights to Ottawa in the fall of 2006 using Q400 series Dash 8 planes, 70-seat aircraft. Its entry into service was"} +{"qid": "test1410", "pid": "4640167", "query": "where does porter fly out of in toronto", "answer": "Billy Bishop Toronto City Airport", "passage": "\"Quebec City–Windsor Corridor\"\nAirport, London International Airport, Region of Waterloo International Airport, Billy Bishop Toronto City Airport, Kingston/Norman Rogers Airport, Lake Simcoe Regional Airport and Gatineau-Ottawa Executive Airport. Montréal-Mirabel International Airport is a large facility near Montreal that is mainly used for cargo flights but is also home to medical evacuation and general aviation flights. Inside the corridor, the busiest area of travel is the Toronto–Ottawa–Montreal triangle. Air Canada serves the three cities with its \"\"Rapidair\"\" service, offering hourly flights, and its principal competitor WestJet offers similar service. Air Canada and Porter Airlines fly from Billy Bishop Toronto City Airport to Ottawa and"} +{"qid": "test1412", "pid": "20567821", "query": "who proposed that electrons behave like waves and particles", "answer": "Einstein", "passage": "\"20th century in science\"\nthe same behavior observed from different perspectives — that particles can behave like waves, and waves (radiation) can behave like particles. Broglie's proposal offered an explanation of the restriction motion of electrons within the atom. The first publications of Broglie's idea of \"\"matter waves\"\" had drawn little attention from other physicists, but a copy of his doctoral thesis chanced to reach Einstein, whose response was enthusiastic. Einstein stressed the importance of Broglie's work both explicitly and by building further on it. In 1925, Austrian-born physicist Wolfgang Pauli developed the Pauli exclusion principle, which states that no two electrons around a"} +{"qid": "test1413", "pid": "229555", "query": "how many senators are there in the us senate", "answer": "100", "passage": "\"Ku Klux Klan\"\nwith the group's economic, nativist, and anti-Catholic beliefs.\"\" Newman says Black \"\"disliked the Catholic Church as an institution\"\" and gave over 100 anti-Catholic speeches in his 1926 election campaign to KKK meetings across Alabama. Black was elected US senator in 1926 as a Democrat. In 1937 President Franklin D. Roosevelt appointed Black to the Supreme Court without knowing how active in the Klan he had been in the 1920s. He was confirmed by his fellow Senators before the full KKK connection was known; Justice Black said he left the Klan when he became a senator. Many groups and leaders, including"} +{"qid": "test1414", "pid": "7314548", "query": "phase change from gas to solid is called", "answer": "Deposition", "passage": "\"Deposition (phase transition)\"\ntarget surface. Again, the molecules do not go through an intermediate liquid state when going from the gas to the solid. See also physical vapor deposition, which is a class of processes used to deposit thin films of various materials onto various surfaces. Deposition releases energy and is an exothermic phase change. Deposition (phase transition) Deposition is a thermodynamic process, a phase transition in which gas transforms into solid without passing through the liquid phase. The reverse of deposition is sublimation and hence sometimes deposition is called desublimation. One example of deposition is the process by which, in sub-freezing air,"} +{"qid": "test1414", "pid": "7314545", "query": "phase change from gas to solid is called", "answer": "Deposition", "passage": "\"Deposition (phase transition)\"\nDeposition (phase transition) Deposition is a thermodynamic process, a phase transition in which gas transforms into solid without passing through the liquid phase. The reverse of deposition is sublimation and hence sometimes deposition is called desublimation. One example of deposition is the process by which, in sub-freezing air, water vapor changes directly to ice without first becoming a liquid. This is how snow forms in clouds, as well as how frost and hoar frost form on the ground or other surfaces. Another example is when frost forms on a leaf. For deposition to occur, thermal energy must be removed from"} +{"qid": "test1414", "pid": "2670532", "query": "phase change from gas to solid is called", "answer": "desublimation", "passage": "\"Sublimation (phase transition)\"\nSublimation (phase transition) Sublimation is the transition of a substance directly from the solid to the gas phase, without passing through the intermediate liquid phase. Sublimation is an endothermic process that occurs at temperatures and pressures below a substance's triple point in its phase diagram, which corresponds to the lowest pressure at which the substance can exist as a liquid. The reverse process of sublimation is deposition or desublimation, in which a substance passes directly from a gas to a solid phase. Sublimation has also been used as a generic term to describe a solid-to-gas transition (sublimation) followed by a"} +{"qid": "test1415", "pid": "121751", "query": "what is the longest english word in the dictionary", "answer": "pneumonoultramicroscopicsilicovolcanoconiosis", "passage": "\"Longest word in English\"\nmajor English language dictionaries is \"\"pneumonoultramicroscopicsilicovolcanoconiosis\"\", a word that refers to a lung disease contracted from the inhalation of very fine silica particles, specifically from a volcano; medically, it is the same as silicosis. The word was deliberately coined to be the longest word in English, and has since been used in a close approximation of its originally intended meaning, lending at least some degree of validity to its claim. The \"\"Oxford English Dictionary\"\" contains \"\"pseudopseudohypoparathyroidism\"\" (30 letters). \"\"Merriam-Webster's Collegiate Dictionary\"\" does not contain \"\"antidisestablishmentarianism\"\" (28 letters), as the editors found no widespread, sustained usage of the word in its"} +{"qid": "test1415", "pid": "4920906", "query": "what is the longest english word in the dictionary", "answer": "pneumonoultramicroscopicsilicovolcanoconiosis", "passage": "\"Longest words\"\nhas been certified by the Dutch Language Union (the official Dutch language institute) and is included in many open-source applications, contains the following longest words, which are 40 letters long: The word often said to be the longest in Dutch – probably because of its funny meaning and alliteration – which has also appeared in print, is \"\" (\"\"construction ground for the Hottentot soldiers' tents exhibition\"\"); counting 53 letters. The 45-letter word pneumonoultramicroscopicsilicovolcanoconiosis is the longest English word that appears in a major dictionary. Antidisestablishmentarianism, at 28 letters, is the longest non-coined, non-systematic English word in Oxford Dictionaries. It refers"} +{"qid": "test1415", "pid": "18030111", "query": "what is the longest english word in the dictionary", "answer": "pneumonoultramicroscopicsilicovolcanoconiosis", "passage": "\"Antidisestablishmentarianism (word)\"\nAntidisestablishmentarianism (word) The English word antidisestablishmentarianism (, ) is notable for its unusual length of 28 letters and 12 syllables, and is one of the longest words in the English language. It has been cited as the longest word in the English language (excluding coined and technical terms), although some sources say that it is not used enough to carry that title. The longest word found in a major dictionary is \"\"pneumonoultramicroscopicsilicovolcanoconiosis\"\", but this is a technical term that was coined specifically to be the longest word. The word became known in the public realm in the United States via"} +{"qid": "test1415", "pid": "2364280", "query": "what is the longest english word in the dictionary", "answer": "Pneumonoultramicroscopicsilicovolcanoconiosis", "passage": "Pneumonoultramicroscopicsilicovolcanoconiosis\nPneumonoultramicroscopicsilicovolcanoconiosis Pneumonoultramicroscopicsilicovolcanoconiosis () is a word invented by the president of the National Puzzlers' League as a synonym for the disease known as silicosis. It is the longest word in the English language published in a dictionary, the \"\"Oxford English Dictionary\"\", which defines it as \"\"an artificial long word said to mean a lung disease caused by inhaling very fine ash and sand dust.\"\" Silicosis is a form of occupational lung disease caused by inhalation of crystalline silica dust, and is marked by inflammation and scarring in the form of nodular lesions in the upper lobes of the lungs. It"} +{"qid": "test1416", "pid": "11467455", "query": "who has the most all star mvp awards", "answer": "Bob Pettit", "passage": "\"NBA All-Star Game Most Valuable Player Award\"\nThe player(s) with the most votes or ties for the most votes wins the award. No All-Star Game MVP was named in 1999 since the game was canceled due to the league's lockout. , the most recent recipient is Los Angeles Lakers forward LeBron James. Bob Pettit and Kobe Bryant are the only two players to win the All-Star Game MVP four times. Oscar Robertson, Michael Jordan, Shaquille O'Neal, and LeBron James have each won the award three times, while Bob Cousy, Julius Erving, Isiah Thomas, Magic Johnson, Karl Malone, Allen Iverson, and Russell Westbrook have all won the award"} +{"qid": "test1416", "pid": "13154769", "query": "who has the most all star mvp awards", "answer": "Bob Pettit", "passage": "\"2011 NBA All-Star Game\"\nwas unable to participate due to injury. Kobe Bryant, selected to his 13th straight All-Star game after becoming the leading vote-getter, had 37 points, 14 rebounds, and three steals and won his fourth All-Star Game Most Valuable Player (MVP) Award, tying Hall of Famer Bob Pettit for the most All-Star MVP awards. LeBron James had the second triple-double in All-Star Game history with 29 points, 12 rebounds, and 10 assists. Blake Griffin is the first rookie to play in the All-Star since Yao Ming in 2003. The T-Mobile Rookie Challenge featured a team of standout first-year players ('Rookies') against a"} +{"qid": "test1421", "pid": "1949282", "query": "who sang the theme song to that 70s show", "answer": "Big Star", "passage": "\"That '70s Show\"\nfor the show. The show usually opens with the theme song, \"\"In the Street\"\", written by Alex Chilton and Chris Bell of the band Big Star. The original version of the song appeared on Big Star's 1972 debut album \"\"#1 Record\"\". In 2000, Chilton confirmed that he was paid $70 in royalties each time the show aired, an amount he thought ironic, given the show's title. Big Star's original version of the song was not used on the show. Instead, a cover version sung by Todd Griffin was used as the theme song for the show's first season. Beginning in"} +{"qid": "test1421", "pid": "1949283", "query": "who sang the theme song to that 70s show", "answer": "Todd Griffin", "passage": "\"That '70s Show\"\nthe second season, the theme song was performed by the band Cheap Trick. Unlike previous versions of the song, Cheap Trick ended the song with the repeated phrase \"\"We're all alright!\"\" quoting the ending of their 1978 hit song \"\"Surrender\"\". Both versions of the song (Todd Griffin and Cheap Trick) used on the show end with somebody yelling \"\"Hello, Wisconsin!\"\" In Griffin's version, Danny Masterson is the one yelling \"\"Hello, Wisconsin!\"\" while it is unknown who yells it in Cheap Trick's version during the opening. On the soundtrack, \"\"That '70s Album (Rockin')\"\", Cheap Trick's lead singer Robin Zander yells \"\"Hello,"} +{"qid": "test1427", "pid": "8696652", "query": "who is the original singer of you re going to love me", "answer": "Jennifer Holliday", "passage": "\"And I Am Telling You I'm Not Going\"\nNot Going\"\", often considered the show's signature tune, describe Effie's love for Curtis, both strongly devoted and defiant. She refuses to let Curtis leave her behind, and boldly proclaims to him, \"\"I'm staying and you ... you're gonna love me.\"\" In addition to its presence in the musical, \"\"And I Am Telling You I'm Not Going\"\" is also notable as the debut single of two women who portrayed Effie. Jennifer Holliday originated the role on Broadway in 1981 and won a Tony Award for her performance as well as the Grammy for Best R&B Performance, Female for its re-release in"} +{"qid": "test1428", "pid": "8699976", "query": "who laid the foundation of school of possibilism", "answer": "Strabo", "passage": "\"Possibilism (geography)\"\nPossibilism (geography) Possibilism in cultural geography is the theory that the environment sets certain constraints or limitations, but culture is otherwise determined by social conditions. In Cultural ecology Marshall Sahlins used this concept in order to develop alternative approaches to the environmental determinism dominant at that time in ecological studies. Theory by Strabo in 64 BC that humans can make things happen by their own intelligence over time. Strabo cautioned against the assumption that nature and actions of humans were determined by the physical environment they inhabited. He observed that humans were the active elements in a human-environmental partnership. The"} +{"qid": "test1429", "pid": "3171322", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Town of Cambridge\"\nTown of Cambridge The Town of Cambridge is a local government area in the inner western suburbs of the Western Australian capital city of Perth, about west of Perth's central business district and extending to the Indian Ocean at City Beach. The Town covers an area of and had a population of almost 27,000 as at the 2016 Census. It was originally part of the City of Perth before the restructuring by the Western Australian State Government in 1994. Historically the area was part of the North Perth municipality, gazetted in 1901, which was absorbed into the City of Perth"} +{"qid": "test1429", "pid": "7420268", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Perth Concert Hall (Western Australia)\"\nand café. On 27 September 2006 the Perth Concert Hall participated in a twinning ceremony and the signing of Mutual Understanding with the Perth Concert Hall, Scotland. As a result of this twinning the Concert Hall now flies the St Andrews Flag at the front of the venue to commemorate the twinning. Perth Concert Hall (Western Australia) The Perth Concert Hall is a concert hall located in Perth, the capital of the Australian state of Western Australia. Owned by the City of Perth, the hall is the main venue of the West Australian Symphony Orchestra, and also hosts a number"} +{"qid": "test1429", "pid": "7420255", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Perth Concert Hall (Western Australia)\"\nPerth Concert Hall (Western Australia) The Perth Concert Hall is a concert hall located in Perth, the capital of the Australian state of Western Australia. Owned by the City of Perth, the hall is the main venue of the West Australian Symphony Orchestra, and also hosts a number of other events and performances. The building itself is located in Perth's central business district, adjacent to the Supreme Court Gardens and Government House. The building has two façades: facing north over St Georges Terrace, and facing south over the Swan River. The concert hall was constructed on land granted to the"} +{"qid": "test1429", "pid": "6107310", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Perth Oval\"\nPerth Oval Perth Oval (also known as nib Stadium under a naming rights agreement with nib Health Funds; will be known as HBF Park from 2019 under an agreement with HBF) is a sports stadium in Perth, the capital of the Australian state of Western Australia. Located close to Perth's central business district, the stadium currently has a maximum capacity of 20,500 people for sporting events and 25,000 people for concerts, with the ground's record attendance of 32,000 people set during an Ed Sheeran concert in 2015. The land on which the stadium was built was made a public reserve"} +{"qid": "test1429", "pid": "8879402", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Electorates of the Australian states and territories\"\nthe Western Australian Legislative Assembly. 42 are in the Perth metropolitan area and 17 are in the rest of the state. Electorates of the Australian states and territories A State Electoral District is an electorate within the Lower House or Legislative Assembly of Australian states and territories. Most state electoral districts (except the Australian Capital Territory and Tasmania, which have multi-member electorates using a proportional voting method) send a single member to a state or territory's parliament using the preferential method of voting. The area of a state electoral district is dependent upon the Electoral Acts in the various states"} +{"qid": "test1429", "pid": "3171324", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Town of Cambridge\"\ndivided into 2 wards, each electing 4 councillors. Town of Cambridge The Town of Cambridge is a local government area in the inner western suburbs of the Western Australian capital city of Perth, about west of Perth's central business district and extending to the Indian Ocean at City Beach. The Town covers an area of and had a population of almost 27,000 as at the 2016 Census. It was originally part of the City of Perth before the restructuring by the Western Australian State Government in 1994. Historically the area was part of the North Perth municipality, gazetted in 1901,"} +{"qid": "test1429", "pid": "5400934", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Division of Perth\"\nDivision of Perth The Division of Perth is an Australian electoral division in the state of Western Australia. It is named after Perth, the capital city of Western Australia, where the Division is located. The division was one of the original 65 divisions to be contested at the first Federal election. It extends northeast along the north bank of the Swan River from Perth, including suburbs such as Maylands, Mount Lawley, Bayswater, Ashfield, Bedford, Morley, Beechboro and the Perth city centre. It is a primarily residential area, although contains an industrial area at Bayswater and major commercial centres in Perth"} +{"qid": "test1429", "pid": "330739", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "Perth\nfor business and government, Perth dominates the Western Australian economy, despite the major mining, petroleum, and agricultural export industries being located elsewhere in the state. Perth's function as the state's capital city, its economic base and population size have also created development opportunities for many other businesses oriented to local or more diversified markets. Perth's economy has been changing in favour of the service industries since the 1950s. Although one of the major sets of services it provides is related to the resources industry and, to a lesser extent, agriculture, most people in Perth are not connected to either; they"} +{"qid": "test1429", "pid": "16639200", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Tourism in Perth\"\nTourism in Perth Tourism in Perth - the capital city of Western Australia, is an important part of the Australian state's economy, contributing to the prosperity of businesses in the city, as well as other regions of the state. Perth had approximately 2.8 million domestic visitors and 0.7 million international visitors in the year ending March 2012. Traditionally produced information about Perth, and Western Australia has been in pamphlets and brochures, however a considerable amount of information is now on the internet with a range of promotional websites emanating from government and commercially based organisations. Tourism Western Australia's web site"} +{"qid": "test1429", "pid": "330703", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "Perth\nPerth Perth () is the capital and largest city of the Australian state of Western Australia. It is the fourth-most populous city in Australia, with a population of 2,022,044 living in Greater Perth. Perth is part of the South West Land Division of Western Australia, with the majority of the metropolitan area located on the Swan Coastal Plain, a narrow strip between the Indian Ocean and the Darling Scarp. The first areas settled were on the Swan River at Guildford, with the city's central business district and port (Fremantle) both later founded downriver. Perth was founded by Captain James Stirling"} +{"qid": "test1429", "pid": "7792806", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Australian rules football in Western Australia\"\nAustralian rules football in Western Australia Australian rules football in Western Australia is the most popular sport in the state. Organised football in the Perth/Fremantle region of Western Australia dates back to 1881. Back then though rugby union was the dominant football code. Only one senior club, \"\"Unions\"\", played Australian Rules. In 1883 a second club, \"\"Swans\"\", emerged, but Australian Rules' growth remained much subdued compared to that of Victoria and South Australia. However, in those days many young men of Perth's wealthier families were educated in Adelaide, the capital of South Australia. On returning home from there they naturally"} +{"qid": "test1429", "pid": "8010137", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Perth Gaol\"\nPerth Gaol The Perth Gaol (often referred to as the Old Perth Gaol) was a gaol (jail) built in Perth, the state capital of Western Australia, between 1854 and 1856 to house convicts and other prisoners. It is located just west of Beaufort Street. It operated until March 1888 when the last prisoner was transferred to Fremantle Prison. The main gaol building, minus the yards, stands today adjacent to the Western Australian Museum in Perth. In addition to a number of displays of colonial and prison related artefacts, the building houses the museum's retail shop and coffee shop. Prior to"} +{"qid": "test1429", "pid": "15332780", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Australian regional rivalries\"\nfrom the Federal Government's home in the Australian Capital Territory. The state has the fourth largest population of the Australian States and Territories with 9.8% of the national total, and about one-third the population of Victoria and New South Wales. Some Western Australian towns are located closer to its South East Asian neighbours to the North than to cities interstate; the capital Perth is closer to Jakarta than to Sydney or Melbourne. At the same time, it has abundant natural resources and primary industries that contribute a significant part of Australia's economy, particularly in the mining sector. As at June"} +{"qid": "test1429", "pid": "330751", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "Perth\narts, cultural and educational institutions, including the Art Gallery of Western Australia, Western Australian Museum, State Library of Western Australia, State Records Office, and Perth Institute of Contemporary Arts (PICA). The State Theatre Centre of Western Australia is also located there, and is the home of the Black Swan State Theatre Company and the Perth Theatre Company. Other performing arts companies based in Perth include the West Australian Ballet, the West Australian Opera and the West Australian Symphony Orchestra, all of which present regular programmes. The Western Australian Youth Orchestras provide young musicians with performance opportunities in orchestral and other"} +{"qid": "test1429", "pid": "9150785", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of Armadale\"\nCity of Armadale The City of Armadale is a local government area in the south-eastern suburbs of the Western Australian capital city of Perth, about southeast of Perth's central business district. The City covers an area of , much of which is state forest rising into the Darling Scarp to the east, and had a population of almost 80,000 as at the 2016 Census. Prior to European settlement, the area now known as the City of Armadale was part of the land that was occupied by the Aboriginal Noongar people. Prior to 1894, the area was part of the Canning"} +{"qid": "test1429", "pid": "12433211", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Kimberley–Perth Canal\"\nKimberley–Perth Canal The Kimberley–Perth Canal is a proposal to channel water from the Fitzroy River in the Kimberley region of Western Australia via the Pilbara, to the southwestern capital of Perth, a distance of approximately . In the late 1980s, Water Resources Minister Ernie Bridge proposed a water pipeline from the Kimberley. In 2005, infrastructure company Tenix proposed the idea of a $2 billion, wide canal as a solution for Perth and the Western Australian region's water problems. The canal proposal was presented as part of Colin Barnett's unsuccessful 2005 state election campaign. As opposition leader, he ruled it out"} +{"qid": "test1429", "pid": "14915801", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Perth Metropolitan Region\"\nPerth Metropolitan Region The Perth metropolitan region or Perth metropolitan area is a term used to describe the administrative area and geographical extent of the Western Australian capital city of Perth and its conurbation. It generally includes the coastal strip from Two Rocks in the north to Singleton in the south, and inland to The Lakes in the east, but its extent can be defined in a number of ways: The Perth metropolitan region is grouped with the Peel region in some urban planning documents including the Western Australian Planning Commission's \"\"Directions 2031 and Beyond\"\" and the \"\"Perth and Peel@3.5million\"\""} +{"qid": "test1429", "pid": "3179235", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of South Perth\"\nCity of South Perth's Local History Collection which have been scanned and catalogued by dedicated library staff. Picture South Perth City of South Perth The City of South Perth is a local government area in the inner southern suburbs of the Western Australian capital city of Perth about south of Perth's central business district. The City covers an area of , maintains of roads and a little over 4.3 km² of parks and gardens, and had a population of about 42,000 at the 2016 Census. The area broadly forms a peninsula, being bounded on three sides by the waters of"} +{"qid": "test1429", "pid": "12433214", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Kimberley–Perth Canal\"\nserious environmental damage. Kimberley–Perth Canal The Kimberley–Perth Canal is a proposal to channel water from the Fitzroy River in the Kimberley region of Western Australia via the Pilbara, to the southwestern capital of Perth, a distance of approximately . In the late 1980s, Water Resources Minister Ernie Bridge proposed a water pipeline from the Kimberley. In 2005, infrastructure company Tenix proposed the idea of a $2 billion, wide canal as a solution for Perth and the Western Australian region's water problems. The canal proposal was presented as part of Colin Barnett's unsuccessful 2005 state election campaign. As opposition leader, he"} +{"qid": "test1429", "pid": "6107324", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Perth Oval\"\nredevelopment is 20,727 in a 2015 NRL season game between the South Sydney Rabbitohs and New Zealand Warriors on 6 June 2015. nib Stadium has been the venue of major music concerts, including: Perth Oval Perth Oval (also known as nib Stadium under a naming rights agreement with nib Health Funds; will be known as HBF Park from 2019 under an agreement with HBF) is a sports stadium in Perth, the capital of the Australian state of Western Australia. Located close to Perth's central business district, the stadium currently has a maximum capacity of 20,500 people for sporting events and"} +{"qid": "test1429", "pid": "9123218", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of Kalamunda\"\nconsultation on whether to become a city in 2015, and was renamed the City of Kalamunda on 1 July 2017. The city is divided into four wards. City of Kalamunda The City of Kalamunda is a local government area in the eastern metropolitan region of the Western Australian capital city of Perth about east of Perth's central business district. The city covers an area of , much of which is state forest rising into the Darling Scarp to the east. According to the 2016 Census, the city recorded a population of 57,449 people. The Darling Range Road District was gazetted"} +{"qid": "test1429", "pid": "4509745", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"Rally Australia\"\nThe event has also been a round of the Australian Rally Championship although not consistently as the ARC technical regulations has been incompatible with the WRC in some years. Similarly the Western Australian Rally Championship has also been a part of Rally Australia during its Perth based history. During the years when Rally New Zealand replaced Rally Australia on the WRC calendar, the rally was run as an Australian Rally Championship round, titled Coffs Coast Rally. The FIA World Rally Championship first came to Australia hosted in the state capital of Perth, Western Australia. Initially a super-special stage was run"} +{"qid": "test1429", "pid": "5727396", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"ABC Radio Perth\"\nrest of Australia. This is primarily because Western Australia's time zone is two hours behind Australian Eastern Standard Time, or three hours behind Australian Eastern Daylight Time, and most national programs are broadcast live across Australia, at a time earlier in Australian Western Standard Time. Unlike all other state capital ABC Local Radio stations, 720 ABC Perth does not produce a weekday evening program, or any weekend programs except for \"\"Saturday Breakfast\"\". A weekday early morning program was formerly produced, but terminated as a result of funding cuts in November 2013 and replaced with a program compiling content previously produced"} +{"qid": "test1429", "pid": "9150787", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of Armadale\"\nand gardens. The city has been divided into seven wards, each with two councillors. The mayor is elected from among the councillors. Elector Information - http://www.banned.oestex.com City of Armadale The City of Armadale is a local government area in the south-eastern suburbs of the Western Australian capital city of Perth, about southeast of Perth's central business district. The City covers an area of , much of which is state forest rising into the Darling Scarp to the east, and had a population of almost 80,000 as at the 2016 Census. Prior to European settlement, the area now known as the"} +{"qid": "test1429", "pid": "3171416", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of Gosnells\"\nelected. The three wards were: City of Gosnells The City of Gosnells is a local government area in the southeastern suburbs of the Western Australian capital city of Perth, located northwest of Armadale and about southeast of Perth's central business district. The City covers an area of , much of which is state forest rising into the Darling Scarp to the east, and had a population of approximately 118,000 at the 2016 Census. The name Gosnells dates back to 1862 when Charles Gosnell who was the owner of London cosmetic company John Gosnell & Co., bought Canning location 16 from"} +{"qid": "test1429", "pid": "9123217", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of Kalamunda\"\nCity of Kalamunda The City of Kalamunda is a local government area in the eastern metropolitan region of the Western Australian capital city of Perth about east of Perth's central business district. The city covers an area of , much of which is state forest rising into the Darling Scarp to the east. According to the 2016 Census, the city recorded a population of 57,449 people. The Darling Range Road District was gazetted in 1897. On 1 July 1961, it became the Shire of Kalamunda after the enactment of the \"\"Local Government Act 1960\"\". The Shire of Kalamunda commenced community"} +{"qid": "test1429", "pid": "3171412", "query": "perth is the capital of which australian state", "answer": "Western Australia", "passage": "\"City of Gosnells\"\nCity of Gosnells The City of Gosnells is a local government area in the southeastern suburbs of the Western Australian capital city of Perth, located northwest of Armadale and about southeast of Perth's central business district. The City covers an area of , much of which is state forest rising into the Darling Scarp to the east, and had a population of approximately 118,000 at the 2016 Census. The name Gosnells dates back to 1862 when Charles Gosnell who was the owner of London cosmetic company John Gosnell & Co., bought Canning location 16 from the Davis family who were"} +{"qid": "test143", "pid": "3211898", "query": "who played daisy duke in the new dukes of hazzard", "answer": "Jessica Simpson", "passage": "\"The Dukes of Hazzard (film)\"\nThe Dukes of Hazzard (film) The Dukes of Hazzard is a 2005 American buddy comedy road film based on the television series, \"\"The Dukes of Hazzard\"\". The film was directed by Jay Chandrasekhar and released on August 5, 2005, by Warner Bros. Pictures. As in the television series, the film depicts the adventures of cousins Bo, Luke, and Daisy, and their Uncle Jesse, as they outfox crooked Hazzard County Commissioner Boss Hogg and Sheriff Rosco P. Coltrane. The film was the acting debut of pop singer Jessica Simpson. While financially successful, the film met with negative reviews from critics. The"} +{"qid": "test143", "pid": "2905523", "query": "who played daisy duke in the new dukes of hazzard", "answer": "Jessica Simpson", "passage": "\"Daisy Duke\"\nDaisy Duke for a poster, which sold 5 million copies. The poster created unexpected admiration from Nancy Reagan and other staff after Bach visited, then sent a copy to one of her former schoolteachers employed in the White House. In the 2005 feature film \"\"The Dukes of Hazzard\"\", Daisy Duke is portrayed by Jessica Simpson. Film critics commended Simpson on her performance, but claimed that her portrayal had little in common with the character Catherine Bach created, and that she was merely cast because of her celebrity status. Daisy's costume was slightly modified for the film to make her more"} +{"qid": "test1430", "pid": "10150389", "query": "how much for a passport in the philippines", "answer": "$60 abroad", "passage": "\"Philippine passport\"\ndata page. Physical signatures are once again required for biometric passports issued after August 15, 2016, with the signature field on page 3. Philippine citizens had visa-free or visa on arrival access to 66 countries and territories, ranking the Philippine passport 72nd in terms of travel freedom (tied with a passport from Tunisia) according to the Henley Passport Index. The new biometric Philippine passport costs 950 pesos (approximately $18) in the Philippines or $60 abroad. Overtime processing for new passports costs an additional 250 pesos. Persons who take advantage of overtime processing get their passports within seven days for applications"} +{"qid": "test1432", "pid": "6923258", "query": "who carried the us flag in the 2014 olympics", "answer": "Julie Chu", "passage": "\"Julie Chu\"\nin psychology. Chu is the first Asian American woman to play for the U.S. Olympic ice hockey team; she competed in the 2002, 2006, 2010, and 2014 Winter Olympics. She is tied as the second-most decorated U.S. female in Olympic Winter Games history. The four-time Olympian was chosen through a vote of each winter sport's team captain to carry the American flag during the Closing Ceremony of the 2014 Sochi Olympics. Chu is the second ice hockey player to serve as flag bearer for Team USA. During her time at Harvard, Chu became the all-time leading scorer in NCAA history"} +{"qid": "test1433", "pid": "3200168", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XL\"\nrefrigerator\"\" spot ranked as the top spot. This was just the fifth time in Super Bowl history when a lower-seeded team opened as the favorite to win; the previous occurrences were Super Bowls XXXIX (AFC second-seeded New England Patriots were favored by seven points over NFC top-seed Philadelphia Eagles), XXXV (AFC fourth-seeded Baltimore Ravens were favored by three points over NFC top-seed New York Giants), XXIII (NFC second-seeded San Francisco 49ers were favored by seven points over AFC first-seed Cincinnati Bengals), and XVII (AFC second-seeded Miami Dolphins were favored by three points over NFC top-seed Washington Redskins). In each but"} +{"qid": "test1433", "pid": "9688802", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"1997 Green Bay Packers season\"\nin the NFC Championship. Some in the media dubbed the NFC title game as \"\"the real Super Bowl\"\" because of the 49ers' and Packers' league dominance, and the relative inferiority of the AFC in recent Super Bowls. Green Bay's win marked the third consecutive year the team had defeated San Francisco in the playoffs. The Packers entered Super Bowl XXXII as 11 1/2 point favorites. The point spread was likely determined by Green Bay's victory in the previous Super Bowl, the AFC's string of 13 consecutive Super Bowl losses, and Denver's losses in four previous Super Bowls. The game itself"} +{"qid": "test1433", "pid": "376012", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl\"\nseasons. Nine players and three coaches and administrators on the team have been inducted into the Pro Football Hall of Fame. Pittsburgh still remains the only team to win back-to-back Super Bowls twice and four Super Bowls in a six-year period. The Steelers' dynasty was interrupted only by the Oakland Raiders' Super Bowl XI win and the Cowboys winning their second Super Bowl of the decade. In the 1980s and 1990s, the tables turned for the AFC, as the NFC dominated the Super Bowls of the new decade and most of those in the 1990s. The NFC won 16 of"} +{"qid": "test1433", "pid": "1661129", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"National Football Conference\"\nNFC in 1995. Parity is generally greater among NFC teams than AFC teams. The only NFC team that has never made a Super Bowl appearance is the Detroit Lions. Since the 2002 realignment, the only time that an NFC team has made back-to-back Super Bowl appearances are the Seattle Seahawks in 2013 and 2014. Between 2000 and 2016, the NFC has sent 12 different teams to the Super Bowl, whereas the AFC had sent only six: the Baltimore Ravens (2 times), the Denver Broncos (2 times), the Indianapolis Colts (2 times), the Oakland Raiders (1 time), the New England Patriots"} +{"qid": "test1433", "pid": "376024", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl\"\nof the nine Super Bowl winners hailed from the NFC, the other four from the AFC. Following up the Saints' win in Super Bowl XLIV, the 2010 season brought the Green Bay Packers their fourth Super Bowl (XLV) victory and record thirteenth NFL championship overall with the defeat of the Pittsburgh Steelers in February 2011. In Super Bowl XLVI, the New York Giants won another title by defeating the New England Patriots. In Super Bowl XLVII the Baltimore Ravens snapped the NFC's three-game winning streak in a 34–31 victory over the San Francisco 49ers. Super Bowl XLVIII, played at New"} +{"qid": "test1433", "pid": "14178501", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"2010 Green Bay Packers season\"\ndefeating the Philadelphia Eagles 21–16 in the Wild Card round, the Atlanta Falcons 48–21 in the Divisional round and long time rivals, Chicago Bears 21–14 in the NFC Championship, the team advanced to Super Bowl XLV in which they faced the AFC's 2nd seed Pittsburgh Steelers. The Packers defeated the Steelers 31–25 to win their fourth Super Bowl and 13th NFL championship. The Packers became the second overall team after the 2005 Pittsburgh Steelers, and the first NFC team, to win the Super Bowl as a sixth seed, as well as becoming the second NFC team to win three straight"} +{"qid": "test1433", "pid": "7167385", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XLVII\"\nThe last time a metropolitan area won the World Series and Super Bowl in the same season was when the Boston Red Sox won the 2004 World Series followed by the Patriots winning Super Bowl XXXIX (and the Patriots won Super Bowl XXXVIII earlier in 2004). As the 49ers – who were attempting to join the New York Giants and Green Bay Packers as the only teams to win a Super Bowl in three different decades – were the designated home team in the annual rotation between AFC and NFC teams, San Francisco elected to wear their red jerseys, which"} +{"qid": "test1433", "pid": "376018", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl\"\nDenver Broncos to an upset victory over the defending champion Packers, snapping the NFC's 13-year winning streak. The following year, the Broncos defeated the Atlanta Falcons in Super Bowl XXXIII, Elway's fifth Super Bowl appearance, his second NFL championship, and his final NFL game. The back-to-back victories heralded a change in momentum in which AFC teams would win nine out of 12 Super Bowls. In the years between 1995 and 2016, five teams – the Steelers, New England Patriots, Broncos, Baltimore Ravens, and Indianapolis Colts – accounted for 20 of the 22 AFC Super Bowl appearances (including the last 14),"} +{"qid": "test1433", "pid": "5106165", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"NFC West\"\nwith a 7–9 playoff record, 5-4 as a member of the NFC West. The Seahawks hold a record of 137–102-1 since joining the NFC West (325–318-1 overall), with three Super Bowl appearances, winning Super Bowl XLVIII to go with a playoff record of 16–14; they are currently 13–9 in the playoffs as a member of the NFC West, having gone 3–5 while in the AFC West. Since re-alignment, the Seahawks have led the division in wins, division titles, and playoff appearances. Following 2001, the Atlanta Falcons, Carolina Panthers, and New Orleans Saints left the NFC West to join the newly"} +{"qid": "test1433", "pid": "394928", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XXXII\"\nRice and Stallworth. Denver was the first team with a previous 0–2 Super Bowl record to win (their record had been 0–4). The Broncos' victory snapped the NFC's 13-game winning streak in the Super Bowl, becoming the first AFC team to win the NFL championship since the Los Angeles Raiders defeated the Washington Redskins in Super Bowl XVIII. Denver also became the first team to score on four 1-yard touchdown runs in a Super Bowl. The Packers became the third defending Super Bowl champion to lose the Super Bowl, joining the Dallas Cowboys (won Super Bowl XII, lost Super Bowl"} +{"qid": "test1433", "pid": "3200108", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XL\"\nSuper Bowl XL Super Bowl XL was an American football game between the National Football Conference (NFC) champion Seattle Seahawks and the American Football Conference (AFC) champion Pittsburgh Steelers to decide the National Football League (NFL) champion for the 2005 season. The Steelers defeated the Seahawks by the score of 21–10. The game was played on February 5, 2006 at Ford Field in Detroit, Michigan. With the win, the Steelers tied the San Francisco 49ers and the Dallas Cowboys with the then-record five Super Bowls. The Steelers' victory was their first Super Bowl victory since Super Bowl XIV. Pittsburgh, who"} +{"qid": "test1433", "pid": "403892", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XXXVI\"\nSuper Bowl XXXVI Super Bowl XXXVI was an American football game between the National Football Conference (NFC) champion St. Louis Rams and the American Football Conference (AFC) champion New England Patriots to decide the National Football League (NFL) champion for the 2001 season. The Patriots defeated the Rams by the score of 20–17. It was New England's first Super Bowl championship, and the franchise's first league championship of any kind, having suffered two previous losses. The game was also notable for snapping the AFC East's long streak of not being able to win a Super Bowl championship, as the division's"} +{"qid": "test1433", "pid": "393895", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl VIII\"\nSuper Bowl VIII Super Bowl VIII was an American football game between the National Football Conference (NFC) champion Minnesota Vikings and the American Football Conference (AFC) champion Miami Dolphins to decide the National Football League (NFL) champion for the 1973 season. The Dolphins defeated the Vikings by the score of 24–7 to win their second consecutive Super Bowl, the first team to do so since the Green Bay Packers in Super Bowls I and II, and the first AFL/AFC team to do so. The game was played on January 13, 1974 at Rice Stadium in Houston, Texas. This was the"} +{"qid": "test1433", "pid": "4453863", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"AFC Championship Game\"\nfor Super Bowl XVIII and, in their first appearance in a NFC conference title game, a win over the Carolina Panthers for Super Bowl XL. The Pittsburgh Steelers have the most appearances in the AFC Championship Game at 16, with 11 of those games being in Pittsburgh, the most for either conference. The most AFC Conference Championships have been won by the New England Patriots winning 10 of them and going to 7 straight (2011–present). At the end of each regular season, a series of playoff games involving the top six teams in the AFC are conducted. In the current"} +{"qid": "test1433", "pid": "394751", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XXIX\"\npeople also thought that the NFC Championship Game between the 49ers and the Cowboys was \"\"the real Super Bowl\"\", because those two teams were commonly viewed as vastly superior to any AFC team. Furthermore, San Francisco defeated San Diego, 38–15, during the regular season. As a result, the 49ers entered the game favored to win by 18½ points, surpassing the 18 point spread in which the Baltimore Colts were favored over the New York Jets in Super Bowl III more than two decades prior. Many also speculated that Super Bowl XXIX would be the least watched game in Super Bowl"} +{"qid": "test1433", "pid": "4245732", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XLIII\"\nSuper Bowl XLIII Super Bowl XLIII was an American football game between the American Football Conference (AFC) champions Pittsburgh Steelers and the National Football Conference (NFC) champions Arizona Cardinals to decide the National Football League (NFL) champion for the 2008 season. The Steelers defeated the Cardinals by the score of 27–23. The game was played on February 1, 2009 at Raymond James Stadium in Tampa, Florida. With this victory, the Steelers became the first team to win six Super Bowl championships. The win was also Pittsburgh's second Super Bowl victory in four years, after winning Super Bowl XL at the"} +{"qid": "test1433", "pid": "394931", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XXXIII\"\nSuper Bowl XXXIII Super Bowl XXXIII was an American football game played between the American Football Conference (AFC) champion Denver Broncos and the National Football Conference (NFC) champion Atlanta Falcons to decide the National Football League (NFL) champion for the 1998 season. The Broncos defeated the Falcons by the score of 34–19, winning their second consecutive Super Bowl. The game was played on January 31, 1999, at Pro Player Stadium in Miami, Florida (now part of the suburb of Miami Gardens, which became a separate city in 2003). The defending Super Bowl champion Broncos entered the game with an AFC-best"} +{"qid": "test1433", "pid": "106436", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Dallas Cowboys\"\nThe Cowboys' streak of 190 consecutive sold-out regular and post-season games (home and away) began in 2002. The franchise has made it to the Super Bowl eight times, tied with the Pittsburgh Steelers and the Denver Broncos for second most Super Bowl appearances in history, just behind the New England Patriots record ten Super Bowl appearances. This has also corresponded to eight NFC championships, most in the NFC. The Cowboys have won five of those Super Bowl appearances, tying them with their NFC rivals, the San Francisco 49ers, and the AFC's Patriots; all three are second to Pittsburgh's record six"} +{"qid": "test1433", "pid": "393932", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl VIII\"\nto Dwight Stephenson, who like Langer is a member of the Hall of Fame. Source: \"\"Note: A seven-official system was not used until the 1978 season.\"\" Leo Miles was the first African-American to officiate in a Super Bowl. Super Bowl VIII Super Bowl VIII was an American football game between the National Football Conference (NFC) champion Minnesota Vikings and the American Football Conference (AFC) champion Miami Dolphins to decide the National Football League (NFL) champion for the 1973 season. The Dolphins defeated the Vikings by the score of 24–7 to win their second consecutive Super Bowl, the first team to"} +{"qid": "test1433", "pid": "393968", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl X\"\nSuper Bowl X Super Bowl X was an American football game between the National Football Conference (NFC) champion Dallas Cowboys and the American Football Conference (AFC) champion Pittsburgh Steelers to decide the National Football League (NFL) champion for the 1975 season. The Steelers defeated the Cowboys by the score of 21–17 to win their second consecutive Super Bowl. They were the third team to win back-to-back Super Bowls. (The Miami Dolphins won Super Bowls VII and VIII, and the Green Bay Packers won Super Bowls I and II.) It was also the first Super Bowl in which both participating teams"} +{"qid": "test1433", "pid": "395020", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XXXV\"\nSuper Bowl XXXV Super Bowl XXXV was an American football game between the American Football Conference (AFC) champion Baltimore Ravens and the National Football Conference (NFC) champion New York Giants to decide the National Football League (NFL) champion for the 2000 season. The Ravens defeated the Giants by the score of 34–7, tied for the seventh largest Super Bowl margin of victory with Super Bowl XXXVII. The game was played on January 28, 2001 at Raymond James Stadium in Tampa, Florida. The Ravens, who posted a 12–4 regular season record, became the third wild card team to win the Super"} +{"qid": "test1433", "pid": "394177", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XIV\"\nlead Pittsburgh to the 1984 AFC Championship game, where they lost to Marino's Miami Dolphins. But they would not reach a Super Bowl until the 1995 season, losing to the Dallas Cowboys 27–17 in Super Bowl XXX. Kicker Matt Bahr would win another Super Bowl with the New York Giants during the 1990 season. He kicked the game-winning field goal in Super Bowl XXV, and a week earlier booted the game-winning field goal against the San Francisco 49ers in the NFC Championship Game, thus denying the 49ers a chance at three straight Super Bowl victories and surpassing the Steelers' total"} +{"qid": "test1433", "pid": "4185059", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XLI\"\nSuper Bowl XLI Super Bowl XLI was an American football game played between the American Football Conference (AFC) champion Indianapolis Colts and the National Football Conference (NFC) champion Chicago Bears to decide the National Football League (NFL) champion for the 2006 season. The Colts defeated the Bears by the score of 29–17. The game was played on February 4, 2007 at Dolphin Stadium in Miami Gardens, Florida. This game featured two teams ending long Super Bowl appearance droughts. The Colts, who finished with a 12–4 regular season record, were making their first Super Bowl appearance since winning Super Bowl V"} +{"qid": "test1433", "pid": "20116476", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"2018–19 NFL playoffs\"\nthe AFC Championship Game. Fox has exclusive coverage of the NFC Championship Game. CBS will have exclusive coverage of Super Bowl LIII. 2018–19 NFL playoffs The 2018–19 NFL playoffs will begin on January 5, 2019, after the 2018 season, and conclude with Super Bowl LIII on Sunday, February 3, 2019 at Mercedes-Benz Stadium in Atlanta, Georgia. Source: All playoff games will be broadcast nationally on network television. ABC and ESPN will simulcast 1 NFC Wild Card game, while CBS And NBC will broadcast two AFC playoff games and CBS having the rest of the AFC Playoffs. Coverage of the NFC"} +{"qid": "test1433", "pid": "20547432", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Dilly Dilly\"\nfor the AFC and NFC Championship games. For Super Bowl LII, Bud Light aired \"\"Ye Olde Pep Talk\"\" as well as debuting the third one in their trilogy titled \"\"The Bud Knight\"\". Bud Light also released web videos for each of the teams participating in the AFC and NFC Championships. In March 2018, during the Loyola Ramblers men's basketball's NCAA tournament run, the Bud Light King delivered beers to fans. Bud Light also released a \"\"Philly Philly\"\" bottle-and-glasses package to commemorate the Philadelphia Eagles' Super Bowl LII win, and had the Bud Knight appear at their championship parade. Skywriting of"} +{"qid": "test1433", "pid": "19775696", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Miracle at the Met\"\nin 1986, passing for 490 yards against the Washington Redskins.) By winning this game, the Vikings clinched the NFC Central division title and a spot in the playoffs. As the #3 seed, they traveled to Philadelphia to face the Eagles. Despite holding a 14–7 lead at halftime, the Vikings lost 31–16, and the Eagles went on to win the NFC Championship and appear in Super Bowl XV. The Browns overcame their loss and defeated the Cincinnati Bengals in the season's final game to win the AFC Central division, but then lost in devastating fashion to the eventual Super Bowl champion"} +{"qid": "test1433", "pid": "393823", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl VI\"\n22 minutes and 40 seconds of overtime play in the final Chiefs game at Municipal Stadium. Later, Miami shut out the defending Super Bowl champion Baltimore Colts, 21–0, in the AFC Championship Game, with safety Dick Anderson intercepting 3 passes from Colts quarterback Johnny Unitas and returning one of them for a 62-yard touchdown. Meanwhile, the Cowboys marched to the Super Bowl with playoff wins over the Minnesota Vikings, 20–12 in the NFC Divisional Playoffs, and the San Francisco 49ers, 14–3 in the NFC Championship Game, giving up only one touchdown in the two games. Soon after the Dolphins' win"} +{"qid": "test1433", "pid": "17473834", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl LII\"\nBowl XXXIX, their one win being a 35-28 win at Gillette Stadium in December during their relatively weak 2015 season, where after falling behind 14-0, they proceeded to rally for 35 points and hold them down to only two more touchdowns on their end to win, allowing them to finally get their first revenge for eleven years prior. The Patriots were the designated home team for Super Bowl LII, because the AFC team is the designated home team in even-numbered years and the NFC team in odd-numbered years. As the designated home team, the Patriots chose to wear their road"} +{"qid": "test1433", "pid": "394491", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XXIV\"\nSuper Bowl XXIV Super Bowl XXIV was an American football game between the National Football Conference (NFC) champion San Francisco 49ers and the American Football Conference (AFC) champion Denver Broncos to decide the National Football League (NFL) champion for the 1989 season. The game was played on January 28, 1990, at the Louisiana Superdome in New Orleans, Louisiana. The 49ers defeated the Broncos by the score of 55–10, winning their second consecutive Super Bowl, and tying the Pittsburgh Steelers with four Super Bowl victories. San Francisco also became the first team to win back-to-back Super Bowls with two different head"} +{"qid": "test1433", "pid": "4450439", "query": "who has more super bowl wins nfc or afc", "answer": "NFC", "passage": "\"Super Bowl XLIV\"\nfinished 4–12 after they lost Luck to a shoulder injury for the year. Since Super Bowl XLIV, Indianapolis has been 65–63, with a 3–4 postseason record. Super Bowl XLIV Super Bowl XLIV was an American football game between the National Football Conference (NFC) champions New Orleans Saints and the American Football Conference (AFC) champions Indianapolis Colts to decide the National Football League (NFL) champion for the 2009 season. The Saints defeated the Colts by a score of 31–17, earning their first Super Bowl win. The game was played at Hard Rock Stadium (formerly Joe Robbie Stadium) in Miami Gardens, Florida,"} +{"qid": "test1435", "pid": "16341347", "query": "nuclear power plant that blew up in russia", "answer": "Chernobyl", "passage": "\"Anti-nuclear movement in Russia\"\nout of the ten nuclear power plants can be found in the European part of Russia. In the Eastern part of Urals, two other nuclear power plants can be found. Russia has a long history of nuclear power plants. It was beneficial to the country when it first began but the view quickly changed in the post-Chernobyl period. On April 26, 1986 when the Chernobyl Nuclear Plant malfunctioned, it gave birth to the anti-nuclear movement in Russia and many anti-nuclear organizations emerged in the USSR. Many of these anti-nuclear protest or activities took place in the 1980s, which motivated people"} +{"qid": "test1435", "pid": "12633166", "query": "nuclear power plant that blew up in russia", "answer": "Chernobyl", "passage": "\"Smolensk Nuclear Power Plant\"\nSmolensk Nuclear Power Plant Smolensk Nuclear Power Plant ( []) is a nuclear power station in Russia. It is located in the Smolensk region, in Desnogorsk province, approximately 100 km from Smolensk, 115 km from Bryansk and 320 km from Moscow. Smolensk Nuclear Power Plant is the biggest nuclear plant in the Nechernozem region of Russia. The plant operates three RBMK-1000 reactors (1000 MW water-cooled graphite-moderated channel-type reactors). The plant was supposed to have four units but the construction of the 4th reactor was stopped in 1993 following the Chernobyl disaster. All the units are equipped with emergency response systems,"} +{"qid": "test1435", "pid": "16341353", "query": "nuclear power plant that blew up in russia", "answer": "Chernobyl", "passage": "\"Anti-nuclear movement in Russia\"\nfrom the site of the planned power plant, a local movement has been in existence for several years that has managed to delay construction of the plant. This movement was also responsible for organizing a demonstration of 5,000 people in autumn 2009- one of the largest protests against nuclear energy in Russia in the 21st century. The event was largely ignored by the Russian national media, although it was a unique event for the country. Rostov Nuclear Power Plant Around the 1970s, Russia began to construct the Rostov Nuclear Power Plant, which was in the pre-Chernobyl era. After locals from"} +{"qid": "test1435", "pid": "9209775", "query": "nuclear power plant that blew up in russia", "answer": "Chernobyl Nuclear Power Plant", "passage": "\"Leningrad Nuclear Power Plant\"\nLeningrad Nuclear Power Plant Leningrad Nuclear Power Plant ( ()) is a nuclear power plant located in the town of Sosnovy Bor in Russia's Leningrad Oblast, on the southern shore of the Gulf of Finland, some to the west of the city centre of Saint Petersburg. It consists of four nuclear reactors of the RBMK-1000 type. These reactors are similar to reactors No. 1 and 2 of the Chernobyl Nuclear Power Plant. Two units of the VVER-1200 type are under construction at Power Plant II to replace the current RBMK reactors when they reach the end of their service lives."} +{"qid": "test1435", "pid": "7189532", "query": "nuclear power plant that blew up in russia", "answer": "Chernobyl Nuclear Power Plant", "passage": "\"Nuclear power in Russia\"\nconsidering postponing commissioning new nuclear plants in Russia due to excess generation capacity and that new nuclear electricity prices are higher than for existing plant. The Russian government is considering reducing support for new nuclear under its support contracts, called Dogovor Postavki Moshnosti (DPM), which guarantee developers a return on investment through increased payments from consumers for 20 years. Eleven of Russia's reactors are of the RBMK 1000 type, similar to the one at Chernobyl Nuclear Power Plant. Some of these RBMK reactors were originally to be shut down but have instead been given life extensions and uprated in output"} +{"qid": "test1435", "pid": "11576503", "query": "nuclear power plant that blew up in russia", "answer": "Chernobyl", "passage": "\"Belarusian nuclear power plant\"\nBelarusian nuclear power plant The Belarusian nuclear power plant is a multi-reactor nuclear power plant project in Belarus. Initial plans were announced in the 1980s, but were suspended after the 1986 Chernobyl disaster. The drive for the current project was fueled by the Russia-Belarus energy dispute in 2007. The project foresees construction of two nuclear reactors between 2016 and 2020, and probably two more reactors by 2025. The reactors would be supplied by Atomstroyexport and the plant would be located in the Astravyets District, Grodno Region. In the 1980s there were plans to build a nuclear heating and power plant"} +{"qid": "test1436", "pid": "1579439", "query": "who is stephanie's mom on the bold and the beautiful", "answer": "Taylor Hayes", "passage": "\"The Bold and the Beautiful\"\nto marriage) with another love of his life, Dr. Taylor Hayes. In addition, the rivalry between Ridge's mother Stephanie and Brooke plays a key role in the drama. Following one of her breakups with Ridge, Brooke marries his father, Eric, who divorces Stephanie to do so. Brooke gives birth to two of Eric's children. The couple eventually divorce and Eric reconciles with Stephanie. Likewise, Brooke and Ridge resume their pattern of an on-again-off-again relationship, between Brooke's relationships with other men and Forrester family members, and Ridge's multiple reunions with Taylor. Eric eventually marries Brooke's sister, Donna Logan, and legally adopts"} +{"qid": "test1436", "pid": "12156811", "query": "who is stephanie's mom on the bold and the beautiful", "answer": "Taylor Hayes", "passage": "\"Taylor Hayes (The Bold and the Beautiful)\"\nher daughter. In 2011, Whip and Taylor's marriage ends when he realizes she still loves Ridge. Stephanie and Thomas lie about Thomas sleeping with Brooke on an island they were stranded on. As a result, Ridge and Taylor get back together and make it to the altar, but Stephanie confesses the truth, and Ridge reunites with Brooke. Taylor later begins romancing Thorne again, and exerts her power as trustee of Forrester Creations. In 2012, Taylor counsels Brooke's sister Katie Logan Spencer (Heather Tom) who is suffering from postnatal depression. Taylor says goodbye to best friend Stephanie before she dies from"} +{"qid": "test1438", "pid": "79921", "query": "who did carolina lose to in the super bowl", "answer": "Denver Broncos", "passage": "\"Carolina Panthers\"\nNFC Championship Game. They did not have another winning season until 2003, when they won the NFC Championship Game and reached Super Bowl XXXVIII, losing 32–29 to the New England Patriots. After recording playoff appearances in 2005 and 2008, the team failed to record another playoff appearance until 2013, the first of three consecutive NFC South titles. After losing in the divisional round to the San Francisco 49ers in 2013 and the Seattle Seahawks in 2014, the Panthers returned to the Super Bowl in 2015, but lost to the Denver Broncos. The Panthers have reached the playoffs seven times, advancing"} +{"qid": "test1438", "pid": "7973155", "query": "who did carolina lose to in the super bowl", "answer": "Denver Broncos", "passage": "\"2006 Stanley Cup Finals\"\nteam (the Carolina Courage of the defunct Women's United Soccer Association won the 2002 Founders Cup), although the Hurricanes made it to the 2002 Stanley Cup Finals, losing to the Detroit Red Wings in 5 games; and the Carolina Panthers made it to Super Bowl XXXVIII, but lost to the New England Patriots, and Super Bowl 50, losing to the Denver Broncos. It is also, as of 2018, the only world championship by a current North Carolina team in any of the four major league sports. In the United States, this was the first Stanley Cup Final to be broadcast"} +{"qid": "test1438", "pid": "9868174", "query": "who did carolina lose to in the super bowl", "answer": "New England Patriots", "passage": "\"2007 New England Patriots season\"\nregular season since the NFL expanded its schedule to sixteen games in 1978. Thus, they broke the record for victories in a single regular season that had been shared by the 1984 San Francisco 49ers, the 1985 Chicago Bears, the 1998 Minnesota Vikings, and the 2004 Pittsburgh Steelers, and later tied by the 2011 Green Bay Packers and 2015 Carolina Panthers, who each finished with a record of 15–1. The 1984 49ers and 1985 Bears would win Super Bowl XIX and Super Bowl XX, respectively, the 1998 Vikings and 2004 Steelers would lose their conference championship games, the 2011 Packers"} +{"qid": "test1438", "pid": "4160523", "query": "who did carolina lose to in the super bowl", "answer": "New England Patriots", "passage": "\"Curse of Billy Penn\"\nhome-field advantage in postseason play based on regular-season record. The Eagles lost the 2001 NFC Championship game on the road to the St. Louis Rams 29-24, the 2002 NFC Championship game at home to the Tampa Bay Buccaneers 27-10, and the 2003 NFC Championship game to the Carolina Panthers 14-3. The Rams and Panthers would both lose to the New England Patriots in Super Bowl XXXVI and Super Bowl XXXVIII, while the Buccaneers won Super Bowl XXXVII over the Oakland Raiders. During the period of the alleged Curse of Billy Penn, Philadelphia sports fans were infamous for rude and unsportsmanlike"} +{"qid": "test1438", "pid": "6517992", "query": "who did carolina lose to in the super bowl", "answer": "New England Patriots", "passage": "\"Adam Timmerman\"\nthe 7th round (230th overall) of the 1995 NFL Draft. He played his first four seasons with the Green Bay Packers, making it to two Super Bowls and winning Super Bowl XXXI. After the 1998 season, Timmerman joined the Rams and won another Super Bowl ring in Super Bowl XXXIV. He also made it back to the Super Bowl with the Rams in Super Bowl XXXVI, losing to the New England Patriots. He became the first player in NFL history to ever win and lose a Super Bowl with one team, the Green Bay Packers, and win and lose a"} +{"qid": "test1438", "pid": "8915816", "query": "who did carolina lose to in the super bowl", "answer": "New England Patriots", "passage": "\"History of the Green Bay Packers\"\nwin, the Packers joined the Steelers, 49ers and Cowboys as the only NFL teams to win at least four Super Bowls. They would eventually be joined by the New York Giants, who won their fourth Super Bowl (Super Bowl XLVI) following the 2011 season, and the New England Patriots, who won their fourth Super Bowl (Super Bowl XLIX) following the 2014 season. Despite a lack of practices and training due to a lockout in the off-season, the Packers defeated New Orleans 42-34, hosting the first game of the 2011 season. After a touch-and-go battle with Carolina in Week 2, the"} +{"qid": "test144", "pid": "10883531", "query": "when was the first australian prime minister elected", "answer": "1901", "passage": "\"Women in government\"\nbecame Queensland's first female premier, a position she occupies for five years, and Julia Gillard MP becomes Deputy Prime Minister. Three years later, Gillard is elected as Australia's first female prime minister. Dame Quentin Bryce became the first and only woman appointed to Governor-General, a position that is representative of the Monarch, in 2008 and served until 2014. Christine Milne is the only woman that has been head of a major political party when she was elected leader of the Australian Greens in 2012. Indigenous people, women in particular, are grossly underrepresented in Australian Parliament. Since Federation in 1901, there"} +{"qid": "test144", "pid": "6095178", "query": "when was the first australian prime minister elected", "answer": "1901", "passage": "\"Simon Fraser (Australian politician)\"\npreserve of the squatters, representing South Yarra Province, and remained a member until 1901. He was a Minister without Portfolio from 1890 to 1892. He was a Victorian delegate to the 1894 Colonial Conference in Ottawa, and a member of the Constitutional Convention which drafted the Australian Constitution. In 1901, following the federation of the Australian colonies, Fraser was elected as one of the first six Victorian members of the Australian Senate, remaining a senator until his retirement in 1913. When elected he was a supporter of prime minister Edmund Barton's Protectionist Party, but he was not favourable to Barton's"} +{"qid": "test1440", "pid": "14718198", "query": "who is the girl in the stone sour video say you'll haunt me", "answer": "Joanna Moskawa", "passage": "\"Say You'll Haunt Me\"\non July 27, 2010. The video begins with a car (1972 Plymouth Barracuda) pulling into a creepy alleyway with Corey Taylor being pulled out of the trunk by his bandmates. He is then lead upstairs to be strapped into a chair and interrogated by a woman (Joanna Moskawa) who seems to have an aggression towards him. As this is happening, ghostly images of the band perform in front of each member, the video also features these images solo inside an abandoned warehouse including Taylor. Taylor is then blindfolded and then a weird screen is brought out. Corey then walks into"} +{"qid": "test1442", "pid": "15148797", "query": "what's the biggest nfl stadium in the united states", "answer": "Michigan Stadium", "passage": "\"2011 Michigan Wolverines football team\"\nthe third-biggest comeback in Michigan history and tied for the second-biggest comeback at Michigan Stadium. The game's announced crowd of 114,804 set the all-time attendance record for a football game—college or NFL—and broke the Michigan Stadium attendance record. The previous Michigan Stadium record was 113,411 spectators, established at the 2010 \"\"Big Chill at the Big House\"\" ice hockey game. In recognition of his performance during the game, the Big Ten named Denard Robinson its Offensive Player of the Week, while the Davey O'Brien Award named him its Quarterback of the Week. He was also named Rivals.com's Big Ten and National"} +{"qid": "test1443", "pid": "10723316", "query": "who sings in cry baby for johnny depp", "answer": "James Intveld", "passage": "\"James Intveld\"\nwas in the 1984 film Roadhouse 66, performing a song at the said roadhouse, acting alongside of Willem Dafoe. Intveld has appeared in a number of films, mostly in smaller, supporting roles such as co-starring with Billy Bob Thornton in \"\"Chrystal\"\". Intveld lent his vocals to the titular character in John Waters' 1990 film \"\"Cry-Baby\"\" (with Cry-Baby being played onscreen by Johnny Depp), though left out of the main credits for this role, he is credited as the vocalist for all songs \"\"performed\"\" by the character. Intveld also appears in the George Strait music video, \"\"The Seashores of Old Mexico\"\"."} +{"qid": "test1443", "pid": "4013297", "query": "who sings in cry baby for johnny depp", "answer": "James Intveld", "passage": "\"J. D. Souther\"\nradio in 1981. In 1987, he contributed, performed, and did the vocal arrangements for the \"\"\"\" concert and video, sang the Platters' \"\"Smoke Gets In Your Eyes\"\" in Steven Spielberg's 1989 film \"\"Always\"\", and wrote the theme song to the 1989-1992 sitcom \"\"Anything But Love\"\". He wrote the song \"\"Wishing on Another Lucky Star\"\", featured on the soundtrack of the movie \"\"Permanent Record\"\". Souther co-wrote \"\"Doin' Time For Bein' Young\"\", a song performed by James Intveld for the soundtrack of the 1990 Johnny Depp movie \"\"Cry-Baby\"\". On October 14, 2008, Souther released \"\"If the World Was You\"\", his first new"} +{"qid": "test1445", "pid": "7826709", "query": "what type of database is library literature and information science", "answer": "bibliographic", "passage": "\"Library and information science\"\nepistemological criteria of what constitutes knowledge. Among other approaches, Evidence Based Library and Information Practice should also be mentioned. Some core journals in LIS are: Important bibliographical databases in LIS are, among others, Social Sciences Citation Index and Library and Information Science Abstracts This is a list of some of the major conferences in the field. An advertisement for a full Professor in information science at the Royal School of Library and Information Science, spring 2011, provides one view of which subdisciplines are well-established: \"\"The research and teaching/supervision must be within some (and at least one) of these well-established information"} +{"qid": "test1445", "pid": "7514197", "query": "what type of database is library literature and information science", "answer": "bibliographic", "passage": "\"Bibliographic database\"\ntime required to publish two American abstracting journals, the \"\"Index Medicus\"\" of the National Library of Medicine and the \"\"Scientific and Technical Aerospace Reports\"\" of the National Aeronautics and Space Administration (NASA). By the late 1960s such bodies of digitized alphanumeric information, known as bibliographic and numeric databases, constituted a new type of information resource. Online interactive retrieval became commercially viable in the early 1970s over private telecommunications networks. The first services offered a few databases of indexes and abstracts of scholarly literature. These databases contained bibliographic descriptions of journal articles that were searchable by keywords in author and title,"} +{"qid": "test1445", "pid": "1810142", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "MEDLINE\nMEDLINE MEDLINE (Medical Literature Analysis and Retrieval System Online, or MEDLARS Online) is a bibliographic database of life sciences and biomedical information. It includes bibliographic information for articles from academic journals covering medicine, nursing, pharmacy, dentistry, veterinary medicine, and health care. MEDLINE also covers much of the literature in biology and biochemistry, as well as fields such as molecular evolution. Compiled by the United States National Library of Medicine (NLM), MEDLINE is freely available on the Internet and searchable via PubMed and NLM's National Center for Biotechnology Information's Entrez system. MEDLARS (Medical Literature Analysis and Retrieval System) is a computerised"} +{"qid": "test1445", "pid": "7826693", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "\"Library and information science\"\nthe other hand has mostly concentrated on libraries and their internal processes and best practices. It is also relevant to consider that information science used to be done by scientists, while librarianship has been split between public libraries and scholarly research libraries. Library schools have mainly educated librarians for public libraries and not shown much interest in scientific communication and documentation. When information scientists from 1964 entered library schools, they brought with them competencies in relation to information retrieval in subject databases, including concepts such as recall and precision, boolean search techniques, query formulation and related issues. Subject bibliographic databases"} +{"qid": "test1445", "pid": "5063606", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "\"Controlled vocabulary\"\nof Congress Subject Headings, are an essential component of bibliography, the study and classification of books. They were initially developed in library and information science. In the 1950s, government agencies began to develop controlled vocabularies for the burgeoning journal literature in specialized fields; an example is the Medical Subject Headings (MeSH) developed by the U.S. National Library of Medicine. Subsequently, for-profit firms (called Abstracting and indexing services) emerged to index the fast-growing literature in every field of knowledge. In the 1960s, an online bibliographic database industry developed based on dialup X.25 networking. These services were seldom made available to the"} +{"qid": "test1445", "pid": "6485093", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "Cataloging\nCataloging In library and information science, cataloging (or cataloguing) is the process of creating metadata representing information resources, such as books, sound recordings, moving images, etc. Cataloging provides information such as creator names, titles, and subject terms that describe resources, typically through the creation of bibliographic records. The records serve as surrogates for the stored information resources. Since the 1970s these metadata are in machine-readable form and are indexed by information retrieval tools, such as bibliographic databases or search engines. While typically the cataloging process results in the production of library catalogs, it also produces other types of discovery tools"} +{"qid": "test1445", "pid": "1810153", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "MEDLINE\nPubMed), they also have some help with curating it into something comprehensible and practically applicable for patients and family members. MEDLINE MEDLINE (Medical Literature Analysis and Retrieval System Online, or MEDLARS Online) is a bibliographic database of life sciences and biomedical information. It includes bibliographic information for articles from academic journals covering medicine, nursing, pharmacy, dentistry, veterinary medicine, and health care. MEDLINE also covers much of the literature in biology and biochemistry, as well as fields such as molecular evolution. Compiled by the United States National Library of Medicine (NLM), MEDLINE is freely available on the Internet and searchable via"} +{"qid": "test1445", "pid": "14727490", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "\"SPIN bibliographic database\"\nSPIN bibliographic database SPIN (Searchable Physics Information Notices) bibliographic database is an indexing and abstracting service produced by the American Institute of Physics (AIP). The content focus of SPIN is described as the most significant areas of physics research. This type of literature coverage spans the major physical science journals and magazines. Major conference proceedings that are reported by the American Institute of Physics, member societies, as well as affiliated organizations are also included as part of this database. References, or citations, provide access to more than 1.5 million articles as of 2010. \"\"SPIN\"\" has no print counterpart. Delivery of"} +{"qid": "test1445", "pid": "7826692", "query": "what type of database is library literature and information science", "answer": "bibliographic database", "passage": "\"Library and information science\"\nare separate fields: Another indication of the different uses of the two terms are the indexing in UMI's Dissertations Abstracts. In \"\"Dissertations Abstracts Online\"\" on November 2011 were 4888 dissertations indexed with the descriptor LIBRARY SCIENCE and 9053 with the descriptor INFORMATION SCIENCE. For the year 2009 the numbers were 104 LIBRARY SCIENCE and 514 INFORMATION SCIENCE. 891 dissertations were indexed with both terms (36 in 2009). It should be considered that information science grew out of documentation science and therefore has a tradition for considering scientific and scholarly communication, bibliographic databases, subject knowledge and terminology etc. Library science, on"} +{"qid": "test1446", "pid": "10219876", "query": "who sang the theme song from russia with love", "answer": "Matt Monro", "passage": "\"From Russia with Love (soundtrack)\"\nFrom Russia with Love (soundtrack) From Russia with Love is the soundtrack for the second James Bond film of the same name. This is the first series film with John Barry as the primary soundtrack composer. John Barry, arranger of Monty Norman's \"\"James Bond Theme\"\" for \"\"Dr. No\"\", would be the dominant Bond series composer for most of its history and the inspiration for fellow series composer, David Arnold (who uses cues from this soundtrack in his own for \"\"Tomorrow Never Dies\"\"). The theme song was composed by Lionel Bart of Oliver! fame and sung by Matt Monro. Following the"} +{"qid": "test1447", "pid": "689360", "query": "who established the idea that microorganisms play a role in disease", "answer": "Robert Koch", "passage": "Bacteriology\ndiscovery of the connection of microorganisms to disease can be dated back to the nineteenth century, when German physician Robert Koch introduced the science of microorganisms to the medical field. He identified bacteria as the cause of infectious diseases and process of fermentation in diseases. French Scientist Louis Pasteur developed techniques to produce vaccines. Both Koch and Pasteur played a role in improving antisepsis in medical treatment. This had an enormous positive effect on public health and gave a better understanding of the body and diseases. In 1870-1885 the modern methods of bacteriology technique were introduced by the use of"} +{"qid": "test1447", "pid": "5543324", "query": "who established the idea that microorganisms play a role in disease", "answer": "Agostino Bassi", "passage": "\"Agostino Bassi\"\nAgostino Bassi Agostino Bassi, sometimes called de Lodi (25 September 1773 – 8 February 1856), was an Italian entomologist. He preceded Louis Pasteur in the discovery that microorganisms can be the cause of disease (the germ theory of disease). He discovered that the muscardine disease of silkworms was caused by a living, very small, parasitic organism, a fungus that would be named eventually \"\"Beauveria bassiana\"\" in his honor. In 1844, he stated the idea that not only animal (insect), but also human diseases are caused by other living microorganisms; for example, measles, syphilis, and the plague. He was the son"} +{"qid": "test1447", "pid": "185671", "query": "who established the idea that microorganisms play a role in disease", "answer": "Agostino Bassi", "passage": "\"History of medicine\"\ncertain endemic infectious diseases. However the decline in many of the most lethal diseases was due more to improvements in public health and nutrition than to advances in medicine. Medicine was revolutionized in the 19th century and beyond by advances in chemistry, laboratory techniques, and equipment. Old ideas of infectious disease epidemiology were gradually replaced by advances in bacteriology and virology. In the 1830s in Italy, Agostino Bassi traced the silkworm disease muscardine to microorganisms. Meanwhile, in Germany, Theodor Schwann led research on alcoholic fermentation by yeast, proposing that living microorganisms were responsible. Leading chemists, such as Justus von Liebig,"} +{"qid": "test1447", "pid": "173526", "query": "who established the idea that microorganisms play a role in disease", "answer": "Robert Koch", "passage": "\"Robert Koch\"\nand observed them through a microscope. His work with anthrax is notable in that he was the first to link a specific microorganism with a specific disease, rejecting the idea of spontaneous generation and supporting the germ theory of disease. During his time as the government advisor with the Imperial Department of Health in Berlin in the 1880s, Robert Koch became interested in tuberculosis research. At the time, it was widely believed that tuberculosis was an inherited disease. However, Koch was convinced that the disease was caused by a bacterium and was infectious, and tested his four postulates using guinea"} +{"qid": "test1447", "pid": "18085184", "query": "who established the idea that microorganisms play a role in disease", "answer": "Robert Koch", "passage": "\"Diseases and epidemics of the 19th century\"\nJohn Snow, \"\"et al.\"\", as to contaminated drinking water being the likely source of the disease, relatively quickly identified the East London Water Company as the source of the contaminated water. Quick action prevented further deaths. During the fifth cholera pandemic, Robert Koch isolated \"\"Vibrio cholerae\"\" and proposed postulates to explain how bacteria caused disease. His work helped to establish the germ theory of disease. Prior to this time, many physicians believed that microorganisms were spontaneously generated, and disease was caused by direct exposure to filth and decay. Koch helped establish that the disease was more specifically contagious and was"} +{"qid": "test1447", "pid": "278243", "query": "who established the idea that microorganisms play a role in disease", "answer": "Robert Koch", "passage": "Microorganism\na curved tube so dust particles would settle and not come in contact with the broth. By boiling the broth beforehand, Pasteur ensured that no microorganisms survived within the broths at the beginning of his experiment. Nothing grew in the broths in the course of Pasteur's experiment. This meant that the living organisms that grew in such broths came from outside, as spores on dust, rather than spontaneously generated within the broth. Thus, Pasteur dealt the death blow to the theory of spontaneous generation and supported the germ theory of disease. In 1876, Robert Koch (1843–1910) established that microorganisms can"} +{"qid": "test1449", "pid": "12258481", "query": "how many us states are commonwealths and which states are they", "answer": "Virginia", "passage": "\"U.S. state\"\nexistence identifying themselves as commonwealths, rather than states. These commonwealths are states, but legally, each is a commonwealth because the term is contained in its constitution. As a result, \"\"commonwealth\"\" is used in all public and other state writings, actions or activities within their bounds. The term, which refers to \"\"a state in which the supreme power is vested in the people\"\", was first used in Virginia during the Interregnum, the 1649–60 period between the reigns of Charles I and Charles II during which parliament's Oliver Cromwell as Lord Protector established a republican government known as the Commonwealth of England."} +{"qid": "test1449", "pid": "5175666", "query": "how many us states are commonwealths and which states are they", "answer": "Kentucky", "passage": "\"Commonwealth's attorney\"\nname of Virginia is \"\"Commonwealth of Virginia\"\". At the time of the formation of the United States, it was one of three original states that used \"\"Commonwealth\"\" in its name, the others being Massachusetts and Pennsylvania. At the time, Virginia adopted \"\"Commonwealth's attorney\"\" as the title for its official prosecutors, while Massachusetts and Pennsylvania adopted the title district attorney. When Kentucky broke away from Virginia in 1792 to become the 15th state, Kentucky adopted the style, laws and titles of Virginia, which it has retained, making it the only State outside the original 13 States to have \"\"Commonwealth\"\" in its"} +{"qid": "test1449", "pid": "8833916", "query": "how many us states are commonwealths and which states are they", "answer": "Virginia", "passage": "\"Virginia State Route 113\"\nVirginia State Route 113 State Route 113 (SR 113) is an unsigned primary state highway in the U.S. state of Virginia. The state highway runs from U.S. Route 11E, US 19, US 421, and SR 381 north to US 11 and US 19 within Bristol. SR 113 begins at a one-way pair at separate intersections with Commonwealth Avenue, which carries US 11E, US 19, US 421, and SR 381, north of downtown Bristol. SR 113 heads east from Commonwealth Avenue along Cumberland Street and west toward the avenue as Sycamore Street, both of which are two-way streets. Northbound SR 113"} +{"qid": "test145", "pid": "712376", "query": "where is the country music hall of fame located", "answer": "Nashville, Tennessee", "passage": "\"Country Music Hall of Fame and Museum\"\nCountry Music Hall of Fame and Museum The Country Music Hall of Fame and Museum in Nashville, Tennessee, is one of the world's largest museums and research centers dedicated to the preservation and interpretation of American vernacular music. Chartered in 1964, the museum has amassed one of the world's most extensive musical collections. The Country Music Hall of Fame and Museum is one of the world's largest and most active popular music research centers and the world's largest repository of country music artifacts. Early in the 1960s, as the Country Music Association's campaign to publicize country music was accelerating, CMA"} +{"qid": "test145", "pid": "712390", "query": "where is the country music hall of fame located", "answer": "Nashville, Tennessee", "passage": "\"Country Music Hall of Fame and Museum\"\nrecording studio environment on the Second Floor. Architect: Tuck-Hinton Architects, PLC Exhibit Designer: Ralph Appelbaum Associates Inc. Country Music Hall of Fame and Museum The Country Music Hall of Fame and Museum in Nashville, Tennessee, is one of the world's largest museums and research centers dedicated to the preservation and interpretation of American vernacular music. Chartered in 1964, the museum has amassed one of the world's most extensive musical collections. The Country Music Hall of Fame and Museum is one of the world's largest and most active popular music research centers and the world's largest repository of country music artifacts."} +{"qid": "test1452", "pid": "3942528", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Sunflowers (Van Gogh series)\"\nthis subject again, I've told you just how matters stand.\"\" The two \"\"Sunflowers\"\" in question show two buttons each; one of them was preceded by a small study, and a fourth large canvas combines both compositions. These were Van Gogh's first paintings with \"\"\"\"nothing but sunflowers\"\"\"\"—yet, he had already included sunflowers in still life and landscape earlier. In a letter to Theo, dating from 21 or 22 August 1888, Vincent wrote: \"\"I'm painting with the gusto of a Marseillais eating bouillabaisse, which won’t surprise you when it's a question of painting large sunflowers.\"\" At this time he had three paintings"} +{"qid": "test1452", "pid": "8617188", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"The Painter of Sunflowers\"\nThe Painter of Sunflowers The Painter of Sunflowers (in French: Le Peintre de Tournesols) is a portrait of Vincent van Gogh by Paul Gauguin in December 1888. The painting is exhibited at the Van Gogh Museum in Amsterdam. The portrait was painted when Gauguin visited Van Gogh in Arles, France. Vincent had pleaded with Gauguin to come to Arles to start an art-colony. Gauguin eventually agreed after funding for the transportation and expenses was provided by Vincent's brother Theo Van Gogh; however Gauguin only stayed for two months as the two often quarreled and the famous incident where Van Gogh"} +{"qid": "test1452", "pid": "447070", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Vincent van Gogh\"\nto work on the \"\"Décoration for the Yellow House,\"\" probably the most ambitious effort he ever undertook. He completed two chair paintings: \"\"Van Gogh's Chair\"\" and \"\"Gauguin's Chair.\"\" After much pleading from Van Gogh, Gauguin arrived in Arles on 23 October, and in November the two painted together. Gauguin depicted Van Gogh in his \"\"The Painter of Sunflowers\"\"; Van Gogh painted pictures from memory, following Gauguin's suggestion. Among these \"\"imaginative\"\" paintings is \"\"Memory of the Garden at Etten\"\". Their first joint outdoor venture was at the Alyscamps, when they produced the pendants \"\"Les Alyscamps\"\". The single painting Gauguin completed during"} +{"qid": "test1452", "pid": "3942537", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Sunflowers (Van Gogh series)\"\nthe Vincent van Gogh Foundation, established 1962 by Vincent Willem van Gogh, the artist's nephew, and on permanent loan to the Van Gogh Museum, Amsterdam. Five other versions are recorded in the Van Gogh estate papers: Two Arles versions left the artist's estate unrecorded: Sunflowers (Van Gogh series) Sunflowers (original title, in French: Tournesols) is the name of two series of still life paintings by the Dutch painter Vincent van Gogh. The first series, executed in Paris in 1887, depicts the flowers lying on the ground, while the second set, executed a year later in Arles, shows a bouquet of"} +{"qid": "test1452", "pid": "3942525", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Sunflowers (Van Gogh series)\"\nSunflowers (Van Gogh series) Sunflowers (original title, in French: Tournesols) is the name of two series of still life paintings by the Dutch painter Vincent van Gogh. The first series, executed in Paris in 1887, depicts the flowers lying on the ground, while the second set, executed a year later in Arles, shows a bouquet of sunflowers in a vase. In the artist's mind both sets were linked by the name of his friend Paul Gauguin, who acquired two of the Paris versions. About eight months later van Gogh hoped to welcome and to impress Gauguin again with \"\"Sunflowers\"\", now"} +{"qid": "test1452", "pid": "447069", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Vincent van Gogh\"\nvisit Arles in 1888, Van Gogh hoped for friendship, and the realisation of his idea of an artists' collective. While waiting, in August he painted \"\"Sunflowers\"\". When Boch visited again, Van Gogh painted a portrait of him, as well as the study \"\"The Poet Against a Starry Sky.\"\" In preparation for Gauguin's visit, Van Gogh bought two beds on advice from the station's postal supervisor Joseph Roulin, whose portrait he painted. On 17 September he spent his first night in the still sparsely furnished Yellow House. When Gauguin consented to work and live in Arles with him, Van Gogh started"} +{"qid": "test1452", "pid": "447106", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Vincent van Gogh\"\nhis mirror. Van Gogh painted several landscapes with flowers, including roses, lilacs, irises, and sunflowers. Some reflect his interests in the language of colour, and also in Japanese ukiyo-e. There are two series of dying sunflowers. The first was painted in Paris in 1887 and shows flowers lying on the ground. The second set was completed a year later in Arles, and is of bouquets in a vase positioned in early morning light. Both are built from thickly layered paintwork, which, according to the London National Gallery, evoke the \"\"texture of the seed-heads\"\". In these series, Van Gogh was not"} +{"qid": "test1452", "pid": "3942526", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Sunflowers (Van Gogh series)\"\npart of the painted \"\"Décoration for the Yellow House\"\" that he prepared for the guestroom of his home in Arles, where Gauguin was supposed to stay. After Gauguin's departure, van Gogh imagined the two major versions as wings of the \"\"Berceuse Triptych\"\", and finally he included them in his Les XX in Bruxelles exhibit. Little is known of Van Gogh's activities during the two years he lived with his brother, Theo, in Paris, 1886–1888. The fact that he had painted \"\"Sunflowers\"\" already is only revealed in the spring of 1889, when Gauguin claimed one of the Arles versions in exchange"} +{"qid": "test1452", "pid": "3942529", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"Sunflowers (Van Gogh series)\"\non the go, and intended to do more; as he explained to his brother: \"\"in the hope of living in a studio of our own with Gauguin, I'd like to do a decoration for the studio. Nothing but large sunflowers\"\". Leaving aside the first two versions, all Arlesian \"\"Sunflowers\"\" are painted on size 30 canvases. None meets the descriptions supplied by van Gogh himself in his announcement of the series in every detail. The first version differs in size, is painted on a size 20 canvas—not on a size 15 canvas as indicated—and all the others differ in the number"} +{"qid": "test1452", "pid": "16136589", "query": "how many paintings of sunflowers did van gogh paint", "answer": "two", "passage": "\"The Letters of Vincent van Gogh\"\nvan Gogh had completed his second group of \"\"Sunflower\"\" paintings, amongst his most iconic paintings, two of which decorated Gauguin's room, as well as his famous painting \"\"The Yellow House\"\" depicting the house they shared. The letter is unique in being a joint letter from the two, and can be read in both the original French and an English translation at the website of the Van Gogh Museum's edition of the letters. In it they discuss, amongst other matters, their plans to form an artists' commune, possibly abroad. In reality their relationship was always fraught, and by the end of"} +{"qid": "test1454", "pid": "8422541", "query": "who is known as the philippine queen of bossa nova", "answer": "Sitti Navarro", "passage": "Sitti\nSitti Sitti Katrina Baiddin Navarro-Ramirez (born November 29, 1984 in Las Piñas), known professionally as Sitti, is a Filipino bossa nova singer. After releasing her first album, \"\"Café Bossa\"\", in 2006, other bossa nova acts in the Philippines followed. Navarro is also featured in the segment \"\"A.S.A.P. Sessionistas\"\" of the variety show \"\"ASAP\"\". Sitti Navarro was born to lawyer Rolando Navarro and Lydia Baiddin, in Manila, Philippines. Sitti is of Samal and Tausūg descent. She identifies herself as being Jama Mapun (Sama Kagayan), one of the Sama-Bajau subgroups in Tawi-Tawi. She graduated from the University of the Philippines Diliman in"} +{"qid": "test1455", "pid": "14102859", "query": "when was the last time it snowed in england on christmas day", "answer": "2009", "passage": "\"Winter of 2009–10 in Europe\"\nof Serbia in Loznica, said that the temperature was in the town. Heavy snowfall began in Saint Petersburg, Russia. By 26 December the city was under 35 cm of snow, creating the largest December snowfall recorded in the city since 1881. On Christmas Day, parts of Britain had a White Christmas for the first time since 2004 after snow fell in northern and central Scotland and parts of England (including Nottinghamshire). A man in Leeds, West Yorkshire, froze to death after spending 24 hours in his car. A total of 21 people were reported to have died during the cold"} +{"qid": "test1455", "pid": "14173403", "query": "when was the last time it snowed in england on christmas day", "answer": "2009", "passage": "\"Winter of 2009–10 in Great Britain and Ireland\"\nof North Yorkshire, particularly the Harrogate area, experienced heavy snowfall during the day. On Christmas Day parts of Britain had a White Christmas for the first time since 2004 after snow fell in parts of Scotland, parts of northern and central England and north Wales. A man in Leeds, West Yorkshire froze to death after spending 24 hours in his car. A total of 21 people were reported to have died during the cold snap in the UK. Many parts of northwestern Ireland had a white Christmas also, whilst freezing rain affected most other parts of the state. On Boxing"} +{"qid": "test1455", "pid": "1501456", "query": "when was the last time it snowed in england on christmas day", "answer": "2009", "passage": "\"White Christmas (weather)\"\n2004, 2009 and 2010), with nine of these having snow \"\"lying on the ground\"\" at 09:00 (1964, 1970, 1980, 1993, 1995, 1999, 2004, 2009 and 2010). The maximum amount of lying snow ever recorded on Christmas Day was at Casement Aerodrome in 2010. At Dublin Airport, there have been 12 Christmas Days with snowfall since 1941 (1950, 1956, 1962, 1964, 1970, 1984, 1990, 1993, 1995, 1999, 2000 and 2004). The statistical likelihood of snow falling on Christmas Day at Dublin Airport is approximately once every 5.9 years. However, the only Christmas Day at the airport ever to have lying snow"} +{"qid": "test1455", "pid": "13980783", "query": "when was the last time it snowed in england on christmas day", "answer": "2009", "passage": "\"A Chance of Snow\"\nA Chance of Snow A Chance of Snow is an American TV movie starring JoBeth Williams and Michael Ontkean. It premiered on Lifetime Television on December 7, 1998. As of 2009, it was shown in the 25 Days of Christmas programming block on ABC Family, but it was not shown in 2010. This film is directed by Tony Bill. The movie revolves around Maddie Parker who is on the verge of divorcing her sportswriter husband Matt Parker after his brief extra-marital affair. When the snow fall has affects flights at the Minneapolis airport on Christmas Eve, they find themselves included"} +{"qid": "test1455", "pid": "14173402", "query": "when was the last time it snowed in england on christmas day", "answer": "2009", "passage": "\"Winter of 2009–10 in Great Britain and Ireland\"\nwith train services cancelled for the majority of the day from Southampton Airport Parkway. Two women were killed and more than 40 people injured following a coach crash on an ungritted country road in Cornwall as a party returned from a trip to see Christmas lights in Mousehole the previous evening. Weather forecasters warned of icy conditions and further snowfall into Christmas Eve, affecting particularly northern England and the East Midlands, which would disrupt those who were planning to travel for the Christmas holidays. Lying snow gave some travel disruption; however, Christmas Eve was a relatively calm day. However, parts"} +{"qid": "test1456", "pid": "787345", "query": "who was the father of the princes in the tower", "answer": "Edward IV of England", "passage": "\"Princes in the Tower\"\nPrinces in the Tower \"\"The Princes in the Tower\"\" is an expression frequently used to refer to Edward V, King of England and Richard of Shrewsbury, Duke of York. The two brothers were the only sons of Edward IV of England and Elizabeth Woodville surviving at the time of their father's death in 1483. When they were 12 and 9 years old, respectively, they were lodged in the Tower of London by the man appointed to look after them, their uncle, the Lord Protector: Richard, Duke of Gloucester. This was supposedly in preparation for Edward's forthcoming coronation as king. However,"} +{"qid": "test1456", "pid": "509997", "query": "who was the father of the princes in the tower", "answer": "Edward IV", "passage": "\"Edward V of England\"\nEdward V of England Edward V (2 November 1470) succeeded his father, Edward IV, as King of England and Lord of Ireland upon the latter's death on 9 April 1483. He was never crowned, and his brief reign was dominated by the influence of his uncle and Lord Protector, the Duke of Gloucester, who deposed him to reign as Richard III on 26 June 1483; this was confirmed by the Act entitled Titulus Regius, which denounced any further claims through his father's heirs. Edward and his younger brother Richard of Shrewsbury, Duke of York, were the Princes in the Tower"} +{"qid": "test1457", "pid": "735262", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Muhammad Ali\"\nwent on to win six Kentucky Golden Gloves titles, two national Golden Gloves titles, an Amateur Athletic Union national title, and the Light Heavyweight gold medal in the 1960 Summer Olympics in Rome. Clay's amateur record was 100 wins with five losses. Ali said in his 1975 autobiography that shortly after his return from the Rome Olympics, he threw his gold medal into the Ohio River after he and a friend were refused service at a \"\"whites-only\"\" restaurant and fought with a white gang. The story was later disputed, and several of Ali's friends, including Bundini Brown and photographer Howard"} +{"qid": "test1457", "pid": "5665713", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Eddie Crook Jr.\"\nEddie Crook Jr. Edward \"\"Eddie\"\" Crook Jr. (April 19, 1929 – July 25, 2005) won a gold medal for the United States as a boxing teammate of Muhammad Ali in the 1960 Summer Olympics. Crook was also a member of Omega Psi Phi fraternity. Boxing out of Detroit, Crook was an Olympic Gold medalist for the United States at the 1960 Olympic Games in Rome, in the 165 pound class. Crook defeated Tadeusz Walasek of Poland in the Gold medal match by 3-2 decision. Reportedly he was the only Army boxer to ever win an Olympic Gold Medal. He had"} +{"qid": "test1457", "pid": "735251", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Muhammad Ali\"\nMuhammad Ali Muhammad Ali (; born Cassius Marcellus Clay Jr.; January 17, 1942 – June 3, 2016) was an American professional boxer, activist, and philanthropist. Nicknamed \"\"The Greatest\"\", he is widely regarded as one of the most significant and celebrated sports figures of the 20th century and one of the greatest boxers of all time. He was born and raised in Louisville, Kentucky, and began training as an amateur boxer when he was 12 years old. At age 18, he won a gold medal in the light heavyweight division at the 1960 Summer Olympics in Rome, then turned professional later"} +{"qid": "test1457", "pid": "11511454", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Giulio Saraudi\"\nGiulio Saraudi Giulio Saraudi (3 July 1938 – 20 April 2005) was an Italian boxer, and an Olympic bronze medalist. Giulio Saraudi was born to Carlo Saraudi, a light heavyweight boxer who finished fourth at the 1924 Olympics. Giulio's younger brother Vittorio was also an elite light heavyweight boxer. Giulio Saraudi won the light heavyweight bronze medal at the 1960 Olympic Games, behind Muhammad Ali (then known as Cassius Clay) and Zbigniew Pietrzykowski. Saraudi did not fight Clay, he lost to Pietrzykowski in a semifinal. At the European championships Saraudi won a gold medal in 1961 and a bronze in"} +{"qid": "test1457", "pid": "459947", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Wilma Rudolph\"\nwoman in the world in the 1960s and became the first American woman, to win three gold medals in a single Olympic Games. Due to the worldwide television coverage of the 1960 Summer Olympics, Rudolph became an international star along with other Olympic athletes such as Cassius Clay (later known as Muhammad Ali), Oscar Robertson, and Rafer Johnson who competed in Italy. As an Olympic champion in the early 1960s, Rudolph was among the most highly visible black women in America and abroad. She became a role model for black and female athletes and her Olympic successes helped elevate women's"} +{"qid": "test1457", "pid": "368664", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Summer Olympic Games\"\nthe strict quarantine laws of Australia, the equestrian events were held in Stockholm. At the 1960 Rome Games a young light-heavyweight boxer named Cassius Clay, later known as Muhammad Ali, arrived on the scene. Ali would later throw his gold medal away in disgust after being refused service in a whites-only restaurant in his home town of Louisville, Kentucky. He was awarded a new medal 36 years later at the 1996 Olympics in Atlanta. Other performers of note in 1960 included Wilma Rudolph, a gold medallist in the 100 meters, 200 meters and 4 × 100 meters relay events. The"} +{"qid": "test1457", "pid": "5469164", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Parkland, Louisville\"\nbeen restored to its original 1950s condition when Ali lived there. Ali returned to this home in Parkland after his win of Olympic gold in the 1960 Rome Olympics. In 2016, the home opened as a museum called the Muhammad Ali Childhood Home Museum. Both Bochetto and Weiss hope that the renovation will help promote further pride and growth in the Parkland section of Louisville. Parkland, Louisville Parkland is a neighborhood in Louisville, Kentucky, USA. Its boundaries are 34th Street on the west, West Broadway on the north, Woodland Avenue on the south, and 26th Street on the east. It"} +{"qid": "test1457", "pid": "6602970", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Bud Bruner\"\nStitch, future WBA World Heavyweight Champion Jimmy Ellis and Mayfield Pennington, who defeated former World Welterweight and Middleweight Champion Emile Griffith. Muhammad Ali, then known as Cassius Clay, occasionally trained at Bruner's gym. His first gym workout after winning an Olympic gold medal in 1960 was at Bruner's Headline Gym. Larry Boeck wrote in the October 9, 1960, edition of the \"\"Courier-Journal\"\": \"\"Clay gives the impression, when Bruner's name is injected into the conversation, that he respects the ring knowledge of Bud in both matters of boxing technique and of integrity and astuteness in the often shady world of ring"} +{"qid": "test1457", "pid": "15322823", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Chuck Bodak\"\nGloves team in the late 1950s and began working with young teenager named Cassius Clay who changed his name to Muhammad Ali. Bodak trained Ali for the last four years of his amateur career that culminated with the winning of a Gold Medal for the light-heavyweight competition at the 1960 Summer Olympic Games held in Rome, Italy. He was known for his trademark headbands with photos of his fighters as well as his handmade jewelry and collages that he liked to give away as gifts. Bodak moved to Chicago, Illinois in 1958 where he was a boxing coach for the"} +{"qid": "test1457", "pid": "16549715", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Ali: An American Hero\"\nAli: An American Hero Ali: An American Hero is an American television film which aired on August 31, 2000 on FOX. It chronicles portions of the career of heavyweight boxer Muhammad Ali, who is portrayed by David Ramsey. Cassius Clay (David Ramsey), winner of the gold medal for boxing in the light heavyweight division at the 1960 Summer Olympics, rises in the professional ranks and defeats heavyweight boxing champion Sonny Liston in a stunning upset to capture the title in 1964. Controversy surrounds his decision to join the Nation of Islam, his name change from Cassius Clay to Muhammad Ali,"} +{"qid": "test1457", "pid": "8952542", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Joe E. Martin\"\ntwelve-year-old then known as Cassius Clay approached Martin to report that his bicycle had been stolen and told Martin that he wanted to \"\"whup\"\" the thief. Martin offered to teach him how to box and guided his career for the next six years. As a 1960 Olympic coach, Martin accompanied the champion to the Olympic Games in Rome, Italy, when Ali won a gold medal. In the 1950s Martin helped produce a weekly television show on WAVE-TV called \"\"Tomorrow's Champions\"\", which was broadcast for twelve years. After winning the gold medal, Ali began his professional career but maintained contact with"} +{"qid": "test1457", "pid": "19772692", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Muhammad Ramzan Ali\"\nin the long jump, 7.43m, was set in 1960. Muhammad Ramzan Ali Muhammad Ramzan Ali (born 13 December 1932) is a Pakistani former athlete who competed in track and field events. Ali represented Pakistan in both long jump and triple jump at the 1956 Summer Olympics. In 1958 he won Asian Games bronze medals in the 4 x 100 metres relay and long jump, as well as a bronze medal in the long jump at the British Commonwealth Games in Cardiff. At the 1960 Summer Olympics, Ali again represented Pakistan in the long jump and was also a member of"} +{"qid": "test1457", "pid": "19772691", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Muhammad Ramzan Ali\"\nMuhammad Ramzan Ali Muhammad Ramzan Ali (born 13 December 1932) is a Pakistani former athlete who competed in track and field events. Ali represented Pakistan in both long jump and triple jump at the 1956 Summer Olympics. In 1958 he won Asian Games bronze medals in the 4 x 100 metres relay and long jump, as well as a bronze medal in the long jump at the British Commonwealth Games in Cardiff. At the 1960 Summer Olympics, Ali again represented Pakistan in the long jump and was also a member of their 4x 100 metres relay team. His personal best"} +{"qid": "test1457", "pid": "735263", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"Muhammad Ali\"\nBingham, denied it. Brown told \"\"Sports Illustrated\"\" writer Mark Kram, \"\"Honkies sure bought into that one!\"\" Thomas Hauser's biography of Ali stated that Ali was refused service at the diner but that he lost his medal a year after he won it. Ali received a replacement medal at a basketball intermission during the 1996 Olympics in Atlanta, where he lit the torch to start the games. Clay made his professional debut on October 29, 1960, winning a six-round decision over Tunney Hunsaker. From then until the end of 1963, Clay amassed a record of 19–0 with 15 wins by knockout."} +{"qid": "test1457", "pid": "798768", "query": "when did muhammad ali win an olympic gold medal", "answer": "1960", "passage": "\"1996 Summer Olympics\"\nBasil Poledouris. Muhammad Ali lit the Olympic cauldron and later received a replacement gold medal for his boxing victory in the 1960 Summer Olympics. For the torch ceremony, more than 10,000 Olympic torches were manufactured by the American Meter Company and electroplated by Erie Plating Company. Each torch weighed about and was made primarily of aluminum, with a Georgia pecan wood handle and gold ornamentation. The 1996 Summer Olympic programme featured 271 events in 26 sports. Softball, beach volleyball and mountain biking debuted on the Olympic program, together with women's football and lightweight rowing. In women's gymnastics, Lilia Podkopayeva became"} +{"qid": "test1458", "pid": "3160313", "query": "when was harry potter and the philosopher's stone made", "answer": "1997", "passage": "\"Harry Potter and the Philosopher's Stone (film)\"\nHarry Potter and the Philosopher's Stone (film) Harry Potter and the Philosopher's Stone (released in the United States as Harry Potter and the Sorcerer's Stone) is a 2001 fantasy film directed by Chris Columbus and distributed by Warner Bros. Pictures. It is based on J. K. Rowling's 1997 novel of the same name. The film is the first instalment in the long-running \"\"Harry Potter\"\" film series and was written by Steve Kloves and produced by David Heyman. Its story follows Harry Potter's first year at Hogwarts School of Witchcraft and Wizardry as he discovers that he is a famous wizard"} +{"qid": "test1458", "pid": "3160356", "query": "when was harry potter and the philosopher's stone made", "answer": "1997", "passage": "\"Harry Potter and the Philosopher's Stone (film)\"\nYears of Film Scores. Harry Potter and the Philosopher's Stone (film) Harry Potter and the Philosopher's Stone (released in the United States as Harry Potter and the Sorcerer's Stone) is a 2001 fantasy film directed by Chris Columbus and distributed by Warner Bros. Pictures. It is based on J. K. Rowling's 1997 novel of the same name. The film is the first instalment in the long-running \"\"Harry Potter\"\" film series and was written by Steve Kloves and produced by David Heyman. Its story follows Harry Potter's first year at Hogwarts School of Witchcraft and Wizardry as he discovers that he"} +{"qid": "test1458", "pid": "5725274", "query": "when was harry potter and the philosopher's stone made", "answer": "14 November 2001", "passage": "\"Harry Potter\"\nGilliam, Jonathan Demme, and Alan Parker were considered, Chris Columbus was appointed on 28 March 2000 as the director for \"\"Harry Potter and the Philosopher's Stone\"\" (titled \"\"\"\"Harry Potter and the Sorcerer's Stone\"\"\"\" in the United States), with Warner Bros. citing his work on other family films such as \"\"Home Alone\"\" and \"\"Mrs. Doubtfire\"\" and proven experience with directing children as influences for their decision. After extensive casting, filming began in October 2000 at Leavesden Film Studios and in London itself, with production ending in July 2001. \"\"Philosopher's Stone\"\" was released on 14 November 2001. Just three days after the"} +{"qid": "test1458", "pid": "1871098", "query": "when was harry potter and the philosopher's stone made", "answer": "1997", "passage": "\"Harry Potter and the Prisoner of Azkaban\"\nwill meet again. \"\"Harry Potter and the Prisoner of Azkaban\"\" is the third book in the \"\"Harry Potter\"\" series. The first, \"\"Harry Potter and the Philosopher's Stone\"\" (\"\"Harry Potter and the Sorcerer's Stone\"\" in the US), was published by Bloomsbury on 26 June 1997 and the second, \"\"Harry Potter and the Chamber of Secrets\"\", was published on 2 July 1998. Rowling started to write the \"\"Prisoner of Azkaban\"\" the day after she finished \"\"The Chamber of Secrets\"\". Rowling's favourite aspect of this book was introducing the character Remus Lupin, Rowling additionally said in 2004 that \"\"Prisoner of Azkaban\"\" was \"\"the"} +{"qid": "test1459", "pid": "20270729", "query": "when does thomas rhett's new album come out", "answer": "September 8, 2017", "passage": "\"Life Changes (Thomas Rhett album)\"\nLife Changes (Thomas Rhett album) Life Changes is the third studio album from American country pop singer Thomas Rhett. Released on September 8, 2017, through Valory Music Group, Rhett produced the album alongside Dann Huff, Jesse Frasure, Julian Bunetta and Joe London. It includes the chart-topping singles \"\"Craving You\"\" with Maren Morris, and \"\"Unforgettable\"\". The album debuted at No. 1 with 123,000 album-equivalent units, giving Rhett his first number one album on the \"\"Billboard\"\" 200. \"\"Craving You\"\", a duet with Maren Morris, was released digitally on March 31, 2017 as the record's lead single. It was promoted to country radio"} +{"qid": "test1459", "pid": "20270732", "query": "when does thomas rhett's new album come out", "answer": "September 8, 2017", "passage": "\"Life Changes (Thomas Rhett album)\"\nIt has sold 301,200 copies in the United States as of November 2018. Life Changes (Thomas Rhett album) Life Changes is the third studio album from American country pop singer Thomas Rhett. Released on September 8, 2017, through Valory Music Group, Rhett produced the album alongside Dann Huff, Jesse Frasure, Julian Bunetta and Joe London. It includes the chart-topping singles \"\"Craving You\"\" with Maren Morris, and \"\"Unforgettable\"\". The album debuted at No. 1 with 123,000 album-equivalent units, giving Rhett his first number one album on the \"\"Billboard\"\" 200. \"\"Craving You\"\", a duet with Maren Morris, was released digitally on March"} +{"qid": "test1460", "pid": "1326863", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "Castleford\nCastleford Castleford is a town in the metropolitan borough of Wakefield, West Yorkshire, England. It had a population of 40,210 at the 2011 Census. Historically in the West Riding of Yorkshire, to the north of the town centre the River Calder joins the River Aire and the Aire and Calder Navigation. The town is the site of a Roman settlement. Within the historical Castleford Borough are the suburbs of Airedale, Cutsyke, Ferry Fryston, Fryston Village, Glasshoughton, Half Acres, Hightown, Lock Lane, Wheldale and Whitwood. Castleford is home to the rugby league Super League team Castleford Tigers. Castleford's history dates back"} +{"qid": "test1460", "pid": "13377229", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Alan Hardisty\"\na Tigers Hall of Fame inductee. Arriva Yorkshire honoured 13 rugby league footballers on Thursday 20 August 2009, at a ceremony at the Jungle, the home of the Castleford. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds, and Tim Butcher, editor of Rugby League World. The 'Arriva Yorkshire Rugby League Dream Team' is; Trevor Foster MBE, Neil Fox MBE, Albert Goldthorpe, Alan Hardisty, Stan Kielty,"} +{"qid": "test1460", "pid": "12314838", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Stan Kielty\"\nFame Inductee. Arriva Yorkshire honoured 13 rugby league footballers on Thursday 20 August 2009, at a ceremony at The Jungle, the home of the Castleford Tigers. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds, and Tim Butcher, editor of Rugby League World. The 'Arriva Yorkshire Rugby League Dream Team' is; Trevor Foster MBE, Neil Fox MBE, Albert Goldthorpe, Alan Hardisty, Stan Kielty, Lewis Jones, Roger"} +{"qid": "test1460", "pid": "11081773", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Roger Millward\"\nRoger Millward, Steve Nash, Jim Mills, Keith Elwell, Steve Pitchford, Terry Randall, George Nicholls and Greg Pierce. Arriva Yorkshire honoured 13 rugby league footballers on Thursday 20 August 2009, at a ceremony at Wheldon Road, the home of Castleford. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds, and Tim Butcher, editor of \"\"Rugby League World\"\". The 'Arriva Yorkshire Rugby League Dream Team' is; Trevor Foster"} +{"qid": "test1460", "pid": "7743038", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Trevor Foster\"\nand Ernest Ward. Arriva Yorkshire honoured 13 rugby league footballers on Thursday 20 August 2009, at a ceremony at The Jungle, the home of the Castleford Tigers. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds, and Tim Butcher, editor of Rugby League World. The 'Arriva Yorkshire Rugby League Dream Team' is; Trevor Foster MBE, Neil Fox MBE, Albert Goldthorpe, Alan Hardisty, Stan Kielty, Lewis Jones,"} +{"qid": "test1460", "pid": "8400930", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Garry Schofield\"\n13 rugby league footballers on Thursday 20 August 2009, at a ceremony at Wheldon Road, the home of Castleford. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds, and Tim Butcher, managing director of League Publications Ltd, who publish \"\"League Express\"\" and \"\"Rugby League World\"\". The 'Arriva Yorkshire Rugby League Dream Team' included Schofield. After retiring, Schofield became a media pundit and is well known for"} +{"qid": "test1460", "pid": "14457088", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"West Yorkshire derby\"\nTown A.F.C., was in the Football League. Before dissolving in March 2010, Farsley Celtic A.F.C. had a 'one-way' rivalry with Leeds United. They are based in the Leeds Metropolitan district however they did not reach the Football League. Rugby league is also big in West Yorkshire, the teams who are, or have been, in the European Super League are; Bradford Bulls, Castleford Tigers, Halifax, Huddersfield Giants, Leeds Rhinos, and Wakefield Trinity. Other rugby league clubs in West Yorkshire are Batley Bulldogs, Dewsbury Rams, Featherstone Rovers, Hunslet Hawks and Keighley Cougars, and any combination of them teams playing against each other"} +{"qid": "test1460", "pid": "6542568", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Dave Valentine\"\nat a ceremony at Wheldon Road, the home of the Castleford. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds, and Tim Butcher, editor of Rugby League World. The 'Arriva Yorkshire Rugby League Dream Team' is; Trevor Foster MBE, Neil Fox MBE, Albert Goldthorpe, Alan Hardisty, Stan Kielty, Lewis Jones, Roger Millward MBE, Malcolm Reilly, Garry Schofield, Keith Senior, David Topliss, Dave Valentine, and Adrian Vowles."} +{"qid": "test1460", "pid": "1326878", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "Castleford\n1939 until 1950. It remained as an independent track meaning no affiliation to the National Greyhound Racing Club. It became a sports ground by 1960 and today has been redeveloped into the Castleford Lock Lane Sports Centre Castleford Rugby Union Football Club Castleford Castleford is a town in the metropolitan borough of Wakefield, West Yorkshire, England. It had a population of 40,210 at the 2011 Census. Historically in the West Riding of Yorkshire, to the north of the town centre the River Calder joins the River Aire and the Aire and Calder Navigation. The town is the site of a"} +{"qid": "test1460", "pid": "6166258", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"Lewis Jones (rugby)\"\nof 2015, he is 9th in British rugby league's \"\"most points in a career\"\" record list behind; Neil Fox, Jim Sullivan, Kevin Sinfield, Gus Risman, John Woods, Mick Nanyn, Cyril Kellett and Kel Coslett. Arriva Yorkshire honoured thirteen rugby league footballers on Thursday 20 August 2009, at a ceremony at Wheldon Road, the home of Castleford. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team', which included Jones. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from"} +{"qid": "test1460", "pid": "9066344", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"David Topliss\"\nSeptember 1990, and was the coach in the 29–16 victory over Sheffield Eagles in the 1992–93 Yorkshire County Cup Final during the 1992–93 season at Elland Road, Leeds on Sunday 18 October 1992. Arriva Yorkshire honoured 13 rugby league footballers on Thursday 20 August 2009, at a ceremony at The Jungle, the home of the Castleford Tigers. A fleet of new buses were named after the 'Arriva Yorkshire Rugby League Dream Team'. Members of the public nominated the best ever rugby league footballers to have played in West Yorkshire, supported by local rugby league journalists; James Deighton from BBC Leeds,"} +{"qid": "test1460", "pid": "1317844", "query": "a town in west yorkshire on the river aire home to a rugby league team", "answer": "Castleford", "passage": "\"West Yorkshire\"\nBradford City and Leeds United. Rugby league is also big in West Yorkshire. The teams who are, or have been, in the European Super League are Bradford Bulls, Castleford Tigers, Halifax, Huddersfield Giants, Leeds Rhinos, and Wakefield Trinity. Other rugby league clubs in West Yorkshire are Batley Bulldogs, Dewsbury Rams, Featherstone Rovers, Hunslet Hawks and Keighley Cougars. Any combination of these teams playing against each other would be called a West Yorkshire derby even if the rivalry is not as great as other rivalries between teams in the area. The main rugby union club in the county is Yorkshire Carnegie."} +{"qid": "test1461", "pid": "9453242", "query": "who sings only love can break your heart", "answer": "Neil Young", "passage": "\"Only Love Can Break Your Heart\"\nThe original version is mostly in black and white and depicts Lucy from early 90s pop trio Golden miming the vocals (Lambert refused to appear in the video). The second features Cracknell miming to Lambert's vocals and depicts the band entering a cinema in a small French town where they see themselves in a movie. Only Love Can Break Your Heart \"\"Only Love Can Break Your Heart\"\" is a song written by Neil Young. It has been covered by many bands, including a 1990 single by Saint Etienne. The song is the third track on Neil Young's album \"\"After the"} +{"qid": "test1461", "pid": "9453238", "query": "who sings only love can break your heart", "answer": "Neil Young", "passage": "\"Only Love Can Break Your Heart\"\nOnly Love Can Break Your Heart \"\"Only Love Can Break Your Heart\"\" is a song written by Neil Young. It has been covered by many bands, including a 1990 single by Saint Etienne. The song is the third track on Neil Young's album \"\"After the Gold Rush\"\". The song was supposedly written for Graham Nash after Nash's split from Joni Mitchell, though Young in interviews has been somewhat tentative in admitting or remembering this. Released as a single in October 1970, it became Young's first top 40 hit as a solo artist, peaking at number 33 in the U.S. The"} +{"qid": "test1461", "pid": "14119024", "query": "who sings only love can break your heart", "answer": "Neil Young", "passage": "\"Moira Lambert\"\nMoira Lambert Moira Lambert is a British singer and recording artist. She has collaborated with Saint Etienne on the Neil Young cover \"\"Only Love Can Break Your Heart\"\" (which went Top 40 in the UK and to No 1 in the US Hot Dance charts). Moira began singing, playing acoustic guitar and song-writing as a child in Africa, largely influenced by the Celtic folk songs her parents taught her. While at school in the UK she became a fan of the British indie scene, enjoying acts like The Smiths and The Cure, later exploring vintage records by artists like Sandy"} +{"qid": "test1462", "pid": "18135690", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"Bogdan Žerajić\"\naction brought Young Bosnia to the public attention. Žerajić's attempt of assassination had a significant influence on young people of Bosnia and Herzegovina. After this attempt new revolutionary circles were established in Sarajevo, Mostar, Tuzla and Banja Luka. An evening before the assassination of Archduke Franz Ferdinand of Austria, Gavrilo Princip, Čabrinović and Ilić visited the grave of Žerajić for the last time. Žerajić's proclamation \"\"He who wants to live, let him die. He who wants to die, let him live\"\", was quoted by Gavrilo Princip in one of the songs he wrote (). The official press in Bosnia and"} +{"qid": "test1462", "pid": "3324118", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"History of Sarajevo\"\nmore modern and advanced nation than the Ottoman Empire, Sarajevo was quickly westernized and adapted to their standards. A western education system was implemented, and Sarajevo's inhabitants started writing in Latin script for the first time. By 1910, Sarajevo was populated by just under 52,000 people. Just four years later the most famous event in the history of Habsburg Sarajevo, and perhaps in the city’s history, occurred. The Assassination in Sarajevo, during which a young Serb nationalist Gavrilo Princip assassinated Archduke Franz Ferdinand of Austria and his wife Sophie, Duchess of Hohenberg, on their visit to the city, started a"} +{"qid": "test1462", "pid": "16300822", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"Josip Vancaš\"\nas drawings for the residential and ecclesiastical interiors. In 1911, as a representative in Bosnia-Herzegovina Parliament, he submitted a resolution on the protection of cultural monuments in Bosnia & Herzegovina. On 29 June 1914, he was one of the speakers addressing the crowd that later vandalized and looted Serb-owned property in Sarajevo during the unrest after Gavrilo Princip's assassination of Archduke Franz Ferdinand of Austria. Vancaš also wrote several studies on Bosnian folk and urban architecture. From 1921 until his death in 1932 he lived in Zagreb. His most significant works include Neo-Gothic Sarajevo Cathedral (1884–89), neo-Renaissance palace of what"} +{"qid": "test1462", "pid": "17976797", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"Slobodan Princip\"\nnumber of schools in Bosnia and Belgrade have been named after him as well. Slobodan Princip Slobodan Princip (; 25 May 1914–May 1942), nicknamed Seljo (Сељо), was a Yugoslav Partisan fighter and the district staff chief of Partisan Sarajevo Oblast during World War II. He was posthumously awarded the Hero of Yugoslavia. He was the nephew of Gavrilo Princip. Princip was born in Hadžići, near Sarajevo, Austria-Hungary (now Bosnia and Herzegovina), into an ethnic Serb family. His father Jovan (\"\"Jovo\"\") was the brother of Gavrilo Princip, the assassin of Archduke Franz Ferdinand of Austria. He joined the Communist Youth (SKOJ)"} +{"qid": "test1462", "pid": "3538252", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"SMS Goeben\"\nOn 29 June 1913, the Second Balkan War broke out and the Mediterranean Division was retained in the area. On 23 October 1913, \"\"Konteradmiral\"\" Souchon assumed command of the squadron. \"\"Goeben\"\" and \"\"Breslau\"\" continued their activities in the Mediterranean, and visited some 80 ports before the outbreak of World War I. The navy made plans to replace \"\"Goeben\"\" with her sister , but the assassination of Archduke Franz Ferdinand of Austria in Sarajevo, Bosnia, on 28 June 1914 and the subsequent rise in tensions between the Great Powers made this impossible. After the assassination, Admiral Souchon assessed that war was"} +{"qid": "test1462", "pid": "20693683", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"Višnja Mosić\"\nwore. Following the Sarajevo assassination of Crown Prince Franz Ferdinand, Mosić was arrested and taken to prison in Sarajevo, where she spent two years, after which she was transferred to Vienna. In the trial that took place, she pretended she was feeble minded and was released. She died on September 13, 1937. Višnja Mosić Višnja Mosić (1870 - September 13, 1937) was a Serbian war heroine during the First World War. For approximately ten years before the Assassination of Archduke Franz Ferdinand of Austria and the outbreak of World War I, she was a member of the Young Bosnia organization."} +{"qid": "test1462", "pid": "3164639", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"Young Bosnia\"\nand the Battle of Kosovo. Two notable organizations are referred to in connection with Young Bosnia: Narodna Odbrana and Black Hand. During a Serbian kangaroo court in French-occupied Salonika in 1916–17, Chief of Serbian Military Intelligence Dragutin Dimitrijević Apis testified that he had organized the assassination of Archduke Franz Ferdinand of Austria, in Sarajevo on 28 June 1914, (the assassin was Gavrilo Princip). In the process, he used not only his power over elements of the Serbian military, but also the Black Hand. Leaders of the Black Hand in turn had penetrated Narodna Odbrana and used that organization to infiltrate"} +{"qid": "test1462", "pid": "17976795", "query": "who was assassinated during a visit to sarajevo in bosnia", "answer": "Archduke Franz Ferdinand of Austria", "passage": "\"Slobodan Princip\"\nSlobodan Princip Slobodan Princip (; 25 May 1914–May 1942), nicknamed Seljo (Сељо), was a Yugoslav Partisan fighter and the district staff chief of Partisan Sarajevo Oblast during World War II. He was posthumously awarded the Hero of Yugoslavia. He was the nephew of Gavrilo Princip. Princip was born in Hadžići, near Sarajevo, Austria-Hungary (now Bosnia and Herzegovina), into an ethnic Serb family. His father Jovan (\"\"Jovo\"\") was the brother of Gavrilo Princip, the assassin of Archduke Franz Ferdinand of Austria. He joined the Communist Youth (SKOJ) during his gymnasium years in Sarajevo. The Partisan and Chetnik forces captured Rogatica on"} +{"qid": "test1464", "pid": "8487216", "query": "when was the first book made into a movie", "answer": "1924", "passage": "\"Film Booking Offices of America\"\nBooking Offices concentrated on low-budget movies, with an emphasis on Westerns, romantic melodramas, and comedy shorts. From its first productions in early 1920 through late 1928, when it was dissolved in a merger, the company produced approximately 400 films under the brand of either Robertson-Cole Pictures or FBO Pictures. Between 1924 and 1926, several higher-end productions were made under the rubric of Gothic Pictures. The studio's top-of-the-line movies, aimed at major exhibition venues beyond the reach of most FBO films, were sometimes marketed as FBO \"\"Gold Bond\"\" pictures. Without the backing of large corporate interests, nor the security of its"} +{"qid": "test1466", "pid": "2244000", "query": "what allows chyme to enter the small intestine", "answer": "pyloric valve", "passage": "Chyme\nstarches in chyme that were not digested fully in the small intestine. When all of the nutrients have been absorbed from chyme, the remaining waste material changes into semisolids that are called feces. The feces pass to the rectum, to be stored until ready to be discharged from the body during defecation. The chyme of an unweaned calf is the defining ingredient of pajata, a traditional Roman recipe. Chyme Chyme or chymus (; from Greek χυμός \"\"khymos\"\", \"\"juice\"\") is the semi-fluid mass of partly digested food that is expelled by the stomach, through the pyloric valve, into the duodenum (the"} +{"qid": "test1466", "pid": "2243995", "query": "what allows chyme to enter the small intestine", "answer": "pyloric valve", "passage": "Chyme\nChyme Chyme or chymus (; from Greek χυμός \"\"khymos\"\", \"\"juice\"\") is the semi-fluid mass of partly digested food that is expelled by the stomach, through the pyloric valve, into the duodenum (the beginning of the small intestine). Chyme results from the mechanical and chemical breakdown of a bolus and consists of partially digested food, water, hydrochloric acid, and various digestive enzymes. Chyme slowly passes through the pyloric sphincter and into the duodenum, where the extraction of nutrients begins. Depending on the quantity and contents of the meal, the stomach will digest the food into chyme in anywhere between 40 minutes"} +{"qid": "test1468", "pid": "14060400", "query": "author of the hymn great is thy faithfulness", "answer": "William M. Runyan", "passage": "\"Great Is Thy Faithfulness\"\nThy great faithfulness, mercy, and love. Pardon for sin and a peace that endureth,
Thine own dear presence to cheer and to guide;
Strength for today, and bright hope for tomorrow
Blessings all mine, with ten thousand beside. Great Is Thy Faithfulness Great Is Thy Faithfulness is a popular Christian hymn written by Thomas Chisholm (1866–1960) with music composed by William M. Runyan (1870–1957) in Baldwin City, Kansas, U.S. The phrase \"\"great is thy faithfulness\"\" comes from the Old Testament Book of Lamentations 3:23. These exact words occur in both the King James Bible and the Revised Standard Version. Thomas"} +{"qid": "test1468", "pid": "14060397", "query": "author of the hymn great is thy faithfulness", "answer": "William M. Runyan", "passage": "\"Great Is Thy Faithfulness\"\nGreat Is Thy Faithfulness Great Is Thy Faithfulness is a popular Christian hymn written by Thomas Chisholm (1866–1960) with music composed by William M. Runyan (1870–1957) in Baldwin City, Kansas, U.S. The phrase \"\"great is thy faithfulness\"\" comes from the Old Testament Book of Lamentations 3:23. These exact words occur in both the King James Bible and the Revised Standard Version. Thomas O. Chisholm wrote the poem in 1923 about God's faithfulness over his lifetime. Chisholm sent the song to William Runyan in Kansas, who was affiliated with both the Moody Bible Institute and Hope Publishing Company. Runyan set the"} +{"qid": "test1468", "pid": "16301968", "query": "author of the hymn great is thy faithfulness", "answer": "William M. Runyan", "passage": "\"William M. Runyan\"\nroyalties from his song \"\"Great is Thy Faithfulness.\"\" William M. Runyan William M. Runyan (1870-1957) was an Christian composer from the United States who wrote the music to the well-known hymn \"\"Great Is Thy Faithfulness\"\". In 1870, William Marion Runyan was born in Marion, New York to a Methodist minister Rev. William White Runyan (born 1828) and his wife Hannah (Orcutt) Runyan (born 1839). At age fourteen, Runyan and his family moved to Marion, Kansas. As a youth, Runyan served as a church organist and graduated from Marion High School in Kansas. Runyan was ordained as a Methodist minister at"} +{"qid": "test1468", "pid": "16301965", "query": "author of the hymn great is thy faithfulness", "answer": "William M. Runyan", "passage": "\"William M. Runyan\"\nWilliam M. Runyan William M. Runyan (1870-1957) was an Christian composer from the United States who wrote the music to the well-known hymn \"\"Great Is Thy Faithfulness\"\". In 1870, William Marion Runyan was born in Marion, New York to a Methodist minister Rev. William White Runyan (born 1828) and his wife Hannah (Orcutt) Runyan (born 1839). At age fourteen, Runyan and his family moved to Marion, Kansas. As a youth, Runyan served as a church organist and graduated from Marion High School in Kansas. Runyan was ordained as a Methodist minister at age twenty-one and then pastored various congregations in"} +{"qid": "test1469", "pid": "14432146", "query": "what type of rock dominates the earth's surface", "answer": "sedimentary rock", "passage": "\"Earth analog\"\nprobable frequency and distribution of Earth-like planets. Another criterion often cited is that an Earth analog must be terrestrial, that is, it should possess a similar surface geology—a planetary surface composed of similar surface materials. The closest known examples are Mars and Titan and while there are similarities in their types of landforms and surface compositions, there are also significant differences such as the temperature and quantities of ice. Many of Earth's surface materials and landforms are formed as a result of interaction with water (such as clay and sedimentary rocks) or as a byproduct of life (such as limestone"} +{"qid": "test1469", "pid": "18625879", "query": "what type of rock dominates the earth's surface", "answer": "Sedimentary", "passage": "\"Conservation and restoration of shipwreck artifacts\"\natmospheric agents, such as rain, rivers, winds and gas releases from the Earth's crust. There are three type of Stones (rocks) indicative of the physical characteristics from its formative process. These three categories are: igneous or volcanic rocks (basalt, granite, etc.), sedimentary or deposit rocks (limestone, sandstone, arenite, etc.), and metamorphic rocks (marble, slate, gypsum, etc.). Igneous rocks are formed by the cooling and/or solidification of magma and the formation of a dense network of crystals—below the Earth's surface as intrusive rock or on the surface as effusive rock. Sedimentary rocks are formed by the deposition of the remains of"} +{"qid": "test1469", "pid": "5649965", "query": "what type of rock dominates the earth's surface", "answer": "sedimentary", "passage": "\"Rock cycle\"\ncalled intrusive or plutonic and cools very slowly, producing a coarse-grained texture such as the rock granite. As a result of volcanic activity, magma (which is called lava when it reaches Earth's surface) may cool very rapidly while being on the Earth's surface exposed to the atmosphere and are called extrusive or volcanic rocks. These rocks are fine-grained and sometimes cool so rapidly that no crystals can form and result in a natural glass, such as obsidian, however the most common fine grained rock would be known as basalt. Any of the three main types of rocks (igneous, sedimentary, and"} +{"qid": "test1469", "pid": "1623638", "query": "what type of rock dominates the earth's surface", "answer": "Sedimentary", "passage": "\"Rock (geology)\"\nform much of the continental crust. Over 700 types of igneous rocks have been described, most of them having formed beneath the surface of Earth's crust. These have diverse properties, depending on their composition and the temperature and pressure conditions in which they were formed. Sedimentary rocks are formed at the earth's surface by the accumulation and cementation of fragments of earlier rocks, minerals, and organisms or as chemical precipitates and organic growths in water (sedimentation). This process causes clastic sediments (pieces of rock) or organic particles (detritus) to settle and accumulate, or for minerals to chemically precipitate (evaporite) from"} +{"qid": "test1469", "pid": "10692281", "query": "what type of rock dominates the earth's surface", "answer": "Sedimentary", "passage": "\"Geology of solar terrestrial planets\"\nis basalt, a denser volcanic rock that is the primary constituent of the ocean floors. Sedimentary rock is formed from the accumulation of sediment that becomes compacted together. Nearly 75% of the continental surfaces are covered by sedimentary rocks, although they form only about 5% of the crust. The third form of rock material found on Earth is metamorphic rock, which is created from the transformation of pre-existing rock types through high pressures, high temperatures, or both. The most abundant silicate minerals on the Earth's surface include quartz, the feldspars, amphibole, mica, pyroxene, and olivine. Common carbonate minerals include calcite"} +{"qid": "test1469", "pid": "6088569", "query": "what type of rock dominates the earth's surface", "answer": "sedimentary rock", "passage": "\"Atmospheric escape\"\nHO in oceans, greatly decreasing the atmospheric density. With liquid water running over the surface of Earth, CO can be drawn down from the atmosphere and sequestered in sedimentary rocks. Some estimates indicate that nearly all carbon on Earth is contained in sedimentary rocks, with the atmospheric portion being approximately 1/250,000 of Earth's CO reservoir. If both of the reservoirs were released to the atmosphere, Earth's atmosphere would be even denser than Venus's atmosphere. Therefore, the dominant “loss” mechanism of Earth's atmosphere is not escape to space, but sequestration. However, in 1 billion years' time, the Sun will be 10%"} +{"qid": "test1469", "pid": "6398553", "query": "what type of rock dominates the earth's surface", "answer": "sedimentary rock", "passage": "\"Jack Hills\"\nand the resultant sediment deposited as sedimentary rock. The zircons and various aspects of their geochemistry provide evidence for the existence of continental-type crust on the surface of the earth during the Hadean eon, contrasting with earlier ideas on the earliest phase of Earth's history. Additionally, oxygen isotopic ratios in the zircons provide evidence for the presence of liquid water on the surface, if not a water ocean; also contrasting with earlier ideas on Earth's history. The theory of humid and cool conditions before the Late Heavy Bombardment has been promoted as Cool Early Earth. The Jack Hills banded iron"} +{"qid": "test1469", "pid": "549062", "query": "what type of rock dominates the earth's surface", "answer": "sedimentary", "passage": "\"Metamorphic rock\"\nMetamorphic rock Metamorphic rocks arise from the transformation of existing rock types, in a process called metamorphism, which means \"\"change in form\"\". The original rock (protolith) is subjected to heat (temperatures greater than 150 to 200 °C) and pressure ( or more), causing profound physical or chemical change. The protolith may be a sedimentary, igneous, or existing metamorphic rock. Metamorphic rocks make up a large part of the Earth's crust and form 12% of the Earth's land surface. They are classified by texture and by chemical and mineral assemblage (metamorphic facies). They may be formed simply by being deep beneath"} +{"qid": "test1469", "pid": "549082", "query": "what type of rock dominates the earth's surface", "answer": "sedimentary", "passage": "\"Metamorphic rock\"\nthe foliation is called \"\"gneissosity\"\"), granoblastic (includes granulite, some marbles and quartzite), and hornfelsic (includes hornfels and skarn). Metamorphic rock Metamorphic rocks arise from the transformation of existing rock types, in a process called metamorphism, which means \"\"change in form\"\". The original rock (protolith) is subjected to heat (temperatures greater than 150 to 200 °C) and pressure ( or more), causing profound physical or chemical change. The protolith may be a sedimentary, igneous, or existing metamorphic rock. Metamorphic rocks make up a large part of the Earth's crust and form 12% of the Earth's land surface. They are classified by"} +{"qid": "test1470", "pid": "20049005", "query": "when is season 8 for game of thrones", "answer": "2019", "passage": "\"Game of Thrones (season 8)\"\nto premiere in April 2019. Ramin Djawadi is set to return as the composer of the show for the eighth season. On December 6, 2018, HBO released the first official teaser trailer for the eighth season. Game of Thrones (season 8) The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Unlike the first six seasons that each had ten episodes and the seventh that had seven episodes, the eighth season will have only six episodes. Like the previous season, it will largely consist of original content not found"} +{"qid": "test1470", "pid": "20048999", "query": "when is season 8 for game of thrones", "answer": "2019", "passage": "\"Game of Thrones (season 8)\"\nDream of Spring\"\". The season will be adapted for television by David Benioff and D. B. Weiss. Filming officially began on October 23, 2017, and concluded in July 2018. The season is scheduled to premiere in April 2019. The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Like the previous season, it will largely consist of original content not found currently in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series; it will instead adapt material Martin has revealed to showrunners about the upcoming novels"} +{"qid": "test1470", "pid": "20290574", "query": "when is season 8 for game of thrones", "answer": "2019", "passage": "\"Game of Thrones Tapestry\"\n8 is aired in 2019, the tapestry is planned to grow to reflect that season's six episodes. The Game of Thrones Tapestry is a campaign which celebrates Northern Ireland and its historic contribution to the legacy linen mills which once was the largest linen and textile industry of its time. At the end of the 19th century, it had been estimated that over 100,000 people in the North of Ireland were employed in the manufacture and decoration of linen. Today, the Irish linen and textile industry is much smaller, whereas a growing number of the Northern Irish have found direct"} +{"qid": "test1471", "pid": "9323168", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "\"I Want a Hippopotamus for Christmas\"\nI Want a Hippopotamus for Christmas \"\"I Want a Hippopotamus for Christmas\"\" is a Christmas novelty song written by John Rox (1902–1957) and performed by Gayla Peevey (10 years old at the time) in 1953. The song peaked at number 24 on \"\"Billboard\"\" magazine's pop chart in December 1953. Peevey was a child star (born in Oklahoma City, Oklahoma), before her family moved to Ponca City, Oklahoma, when she was five. When released nationally by Columbia Records the song shot to the top of the charts, and the city zoo acquired a baby hippo named Matilda. Peevey was filmed performing"} +{"qid": "test1471", "pid": "9323173", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "\"I Want a Hippopotamus for Christmas\"\nLion. Lake Street Dive recorded a version on \"\"Holidays Rule (Vol. 2)\"\" released on October 13, 2017 by Capitol Records, UMG Recordings. I Want a Hippopotamus for Christmas \"\"I Want a Hippopotamus for Christmas\"\" is a Christmas novelty song written by John Rox (1902–1957) and performed by Gayla Peevey (10 years old at the time) in 1953. The song peaked at number 24 on \"\"Billboard\"\" magazine's pop chart in December 1953. Peevey was a child star (born in Oklahoma City, Oklahoma), before her family moved to Ponca City, Oklahoma, when she was five. When released nationally by Columbia Records the"} +{"qid": "test1471", "pid": "9323170", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "\"I Want a Hippopotamus for Christmas\"\nsucceeded, and she was presented with an actual hippopotamus, which she donated to the city zoo. The hippopotamus lived for nearly 50 years. Peevey, by this point 73 years old, was again present when the Oklahoma City Zoo acquired a rare pygmy hippopotamus in 2017. Gayla Peevey later recorded as Jamie Horton, scoring the \"\"Billboard\"\" Hot 100-charter \"\"My Little Marine\"\" in 1960. The B-side of the original 78 featured the song \"\"Are my Ears on Straight?\"\" It is a Dr. Demento Christmas staple, and is currently available on Dr. Demento's \"\"\"\". A version by Vicki Dale and the Peter Pan"} +{"qid": "test1471", "pid": "6751083", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "\"Gayla Peevey\"\nteaching and owned her own advertising firm for 15 years. She is married to Cliff Henderson. They have a daughter, Sydney Forest, and 3 grandchildren. The Oklahoma City Zoo capitalized upon the popularity of \"\"I Want A Hippopotamus for Christmas\"\" with a fundraising campaign to \"\"buy a hippo for Gayla\"\". The fund raised $3,000 (equivalent to US$ in ), and a baby hippopotamus named Matilda was purchased and given to Peevey which she then donated to the zoo. The hippopotamus named Matilda spent 45 years in the Oklahoma City Zoo, and then died at age 47 from a heart attack"} +{"qid": "test1471", "pid": "15581286", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "\"Sydney Forest\"\nSydney Forest Sydney Forest is an American composer and musician. Her music has been featured in several films, notably Studio Ghibli's English dub of \"\"Kiki's Delivery Service\"\". Born in San Diego, Sydney Forest is the daughter of Gayla Peevey (who became famous in her childhood for singing the novelty hit \"\"I Want a Hippopotamus for Christmas\"\"). Upon entering into her career, Forest was signed to a deal with Disney Music Publishing shortly after she began gigging in Los Angeles. Her lyrics and music gained a great deal of attention including the National Academy of Songwriters’ Lionel Richie Songwriting Award. Forest"} +{"qid": "test1471", "pid": "13312569", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "WKZG\nWECB continued its holiday music past Christmas, with the promise that \"\"one more gift\"\" would be presented at 3 PM on December 31; along with that announcement, cryptic advertisements asking \"\"Hey! Where's Chuck?\"\" appeared in local newspapers. At 3 p.m. on December 31 (after Gayla Peevey's \"\"I Want a Hippopotamus for Christmas\"\" finished playing), WECB became WCHK-FM and introduced a new adult hits format under the branding of \"\"Chuck FM\"\", with The Rolling Stones' \"\"Start Me Up\"\" the first song being played. \"\"Chuck FM\"\" was patterned after the Jack FM-style of adult hits stations, in that the music playlist was"} +{"qid": "test1471", "pid": "6751082", "query": "who sang original i want a hippopotamus for christmas", "answer": "Gayla Peevey", "passage": "\"Gayla Peevey\"\nGayla Peevey Gayla Rienette Peevey (born March 8, 1943) is a former singer and child star from Oklahoma City, Oklahoma. Her family moved to Ponca City, Oklahoma, in 1948. She is best known for her recording, under her maiden name Gayla Peevey, of \"\"I Want a Hippopotamus for Christmas\"\" (Columbia 4-40106, 1953). Peevey recorded the novelty song when she was 10 years old. In 1960, under the name Jamie Horton, she had a minor hit with the song \"\"Robot Man\"\", a Connie Francis cover. Peevey graduated from San Diego State University with a Bachelor of Education degree. She eventually left"} +{"qid": "test1472", "pid": "3345043", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Tea Act\"\nThe action united all parties in Britain against the American radicals. Parliament enacted the Boston Port Act, which closed Boston Harbor until the dumped tea was paid for. This was the first of the so-called Coercive Acts, or Intolerable Acts as they were called by the colonists, passed by Parliament in response to the Boston Tea Party. These harsh measures united many colonists even more in their frustrations against Britain, and were one of the many causes of the American Revolutionary War. The Taxation of Colonies Act 1778 repealed the tea tax and others that had been imposed on the"} +{"qid": "test1472", "pid": "1976223", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Intolerable Acts\"\nDecember 16, 1773, a group of Patriot colonists associated with the Sons of Liberty destroyed 342 chests of tea in Boston, Massachusetts, an act that came to be known as the Boston Tea Party. The colonists partook in this action because Parliament had passed the Tea Act, which granted the British East India Company a monopoly on tea sales in the colonies, thereby saving the company from bankruptcy. This made British tea less expensive, which Parliament thought would be a welcome change in the colonies. In addition, there was added a small tax on which the colonists were not allowed"} +{"qid": "test1472", "pid": "1976218", "query": "what act did parliament pass after the boston tea party", "answer": "The Intolerable Acts", "passage": "\"Intolerable Acts\"\nIntolerable Acts The Intolerable Acts were punitive laws passed by the British Parliament in 1774 after the Boston Tea Party. The laws were meant to punish the Massachusetts colonists for their defiance in the Tea Party protest in reaction to changes in taxation by the British to the detriment of colonial goods. In Great Britain, these laws were referred to as the Coercive Acts. The acts took away self-governance and historic rights of Massachusetts, triggering outrage and resistance in the Thirteen Colonies. They were key developments in the outbreak of the American Revolutionary War in April, 1775. Four of the"} +{"qid": "test1472", "pid": "1976232", "query": "what act did parliament pass after the boston tea party", "answer": "The Intolerable Acts", "passage": "\"Intolerable Acts\"\nwhich meant that all of the colonies would become involved when the American Revolutionary War began at Lexington and Concord. Notes Bibliography Further reading Intolerable Acts The Intolerable Acts were punitive laws passed by the British Parliament in 1774 after the Boston Tea Party. The laws were meant to punish the Massachusetts colonists for their defiance in the Tea Party protest in reaction to changes in taxation by the British to the detriment of colonial goods. In Great Britain, these laws were referred to as the Coercive Acts. The acts took away self-governance and historic rights of Massachusetts, triggering outrage"} +{"qid": "test1472", "pid": "7320409", "query": "what act did parliament pass after the boston tea party", "answer": "The Intolerable Acts", "passage": "\"Battles of Lexington and Concord\"\nBoston. Ralph Waldo Emerson describes the first shot fired by the Patriots at the North Bridge in his \"\"Concord Hymn\"\" as the \"\"shot heard round the world\"\". The British Army's infantry was nicknamed \"\"redcoats\"\" and sometimes \"\"devils\"\" by the colonists. They had occupied Boston since 1768 and had been augmented by naval forces and marines to enforce what the colonists called The Intolerable Acts, which had been passed by the British Parliament to punish the Province of Massachusetts Bay for the Boston Tea Party and other acts of defiance. General Thomas Gage was the military governor of Massachusetts and commander-in-chief"} +{"qid": "test1472", "pid": "7212991", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Nonconsumption agreements\"\nthe already volatile colonists and resulted in a group of people living in Boston enacting the infamous Boston Tea Party, where in three ships worth of tea barrels were dumped into the Boston Harbor. In reaction to the colonists' actions regarding the Boston Tea Party, Britain decided to pass what were known as the Intolerable Acts. These acts were aimed at bringing the colonies back into compliance with the King’s wishes and included the outlawing of town meetings. Once again, the colonists were outraged. In response, twelve of the thirteen colonies formed the First Continental Congress, where they drafted a"} +{"qid": "test1472", "pid": "20787360", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Rowan Resolves\"\nRowan Resolves Rowan Resolves is the short name for a colonial era document called \"\"Resolutions by inhabitants of Rowan County concerning resistance to Parliamentary taxation and the Provincial Congress of North Carolina.\"\" It was signed in Salisbury, Rowan County, in the royal Province of North Carolina on August 8, 1774 in response to a series of punitive laws passed by the British Parliament in 1774, the Intolerable Acts, after the political protest against Tea Act in Boston, the Colony of Massachusetts Bay, commonly known as Boston Tea Party. Rowan County was the first county in North Carolina to adopt such"} +{"qid": "test1472", "pid": "11924722", "query": "what act did parliament pass after the boston tea party", "answer": "the Coercive Acts", "passage": "\"Petition to the King\"\nseen as legitimate means of collecting revenues to pay off the nearly two-fold increase in British debt stemming from the war. Many colonists in the Americas, however, developed a different conception of their role within the British Empire. In particular, because the colonies were not directly represented in Parliament, colonists argued that Parliament had no right to levy taxes upon them. After colonists destroyed thousands of pounds of British-taxed tea during the Boston Tea Party, Parliament passed the Coercive Acts in 1774, punishing the colonies for their actions. These punitive Acts were vehemently opposed by the colonists, leading the newly"} +{"qid": "test1472", "pid": "1976219", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Intolerable Acts\"\nacts were issued in direct response to the Boston Tea Party of December 16, 1773. The British Parliament hoped these punitive measures would, by making an example of Massachusetts, reverse the trend of colonial resistance to parliamentary authority that had begun with the 1764 Sugar Act. A fifth act, the Quebec Act, enlarged the boundaries of what was then the Province of Quebec and instituted reforms generally favorable to the French Catholic inhabitants of the region; although unrelated to the other four Acts, it was passed in the same legislative session and seen by the colonists as one of the"} +{"qid": "test1472", "pid": "6616354", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"History of New England\"\npolitical freedoms and local democracy, which they felt was increasingly threatened by the English government. The main grievance was taxation, which colonists argued could only be imposed by their own legislatures and not by the Parliament in London. Their political cry was \"\"no taxation without representation.\"\" A ship was planning to land tea in Boston on December 16, 1773, and Patriots associated with the Sons of Liberty raided the ship and dumped all the tea into the harbor. This Boston Tea Party outraged British officials, and the King and Parliament decided to punish Massachusetts, passing the Intolerable Acts in 1774."} +{"qid": "test1472", "pid": "15873114", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Expulsion of the Loyalists\"\nBoston Tea Party threw tea into Boston harbor in protest of the Tea Act; the tea was ruined but no people were hurt. To teach the colonials a lesson the British Parliament passed the Intolerable Acts, which stripped Massachusetts of its traditional self-rule and sent General Thomas Gage to govern the province. The anger of the Patriots spread up and down the 13 colonies. In New York they were active in destroying printing-presses from which had issued Tory pamphlets, in breaking windows of private houses, in stealing livestock and personal effects, and in destroying property. A favorite pastime was tarring"} +{"qid": "test1472", "pid": "434467", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"United States Declaration of Independence\"\nParliament was the legislature of Great Britain only, and that the colonies, which had their own legislatures, were connected to the rest of the empire only through their allegiance to the Crown. The issue of Parliament's authority in the colonies became a crisis after Parliament passed the Coercive Acts (known as the Intolerable Acts in the colonies) in 1774 to punish the colonists for the Gaspee Affair of 1772 and the Boston Tea Party of 1773. Many colonists saw the Coercive Acts as a violation of the British Constitution and thus a threat to the liberties of all of British"} +{"qid": "test1472", "pid": "9222155", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Fairfax Resolves\"\nFairfax Resolves The Fairfax Resolves was a set of resolutions adopted by a committee in Fairfax County in the colony of Virginia on July 18, 1774, in the early stages of the American Revolution. Written primarily by George Mason, the resolutions rejected the British Parliament's claim of supreme authority over the American colonies. More than thirty counties in Virginia passed similar resolutions in 1774, \"\"but the Fairfax Resolves were the most detailed, the most influential, and the most radical.\"\" After Parliament passed the Coercive Acts, also known as the Intolerable Acts, to punish Massachusetts for the Boston Tea Party, the"} +{"qid": "test1472", "pid": "1970881", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Colonial history of the United States\"\nTownshend Revenue Act (1767); and Tea Act (1773). In response to the Boston Tea Party, Parliament passed the Intolerable Acts: Second Quartering Act (1774); Quebec Act (1774); Massachusetts Government Act (1774); Administration of Justice Act (1774); Boston Port Act (1774); Prohibitory Act (1775). By this point, the 13 colonies had organized themselves into the Continental Congress and begun setting up independent governments and drilling their militia in preparation for war. In the British colonies, the three forms of government were provincial (royal colony), proprietary, and charter. These governments were all subordinate to the King of England, with no explicit relationship"} +{"qid": "test1472", "pid": "470008", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Thirteen Colonies\"\nthe East India Company in an effort to undercut competition, and Prime Minister North's ministry hoped that this would establish a precedent of colonists accepting British taxation policies. Trouble escalated over the tea tax, as Americans in each colony boycotted the tea, and those in Boston dumped the tea in the harbor during the Boston Tea Party in 1773 when the Sons of Liberty dumped thousands of pounds of tea into the water. Tensions escalated in 1774 as Parliament passed the laws known as the Intolerable Acts, which greatly restricted self-government in the colony of Massachusetts. These laws also allowed"} +{"qid": "test1472", "pid": "6293642", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"France in the American Revolutionary War\"\nbillion livres in debt. After its defeat in the Seven Years' War in 1763, France lost its vast holdings in North America. Meanwhile, the American colonists and the British government began to fight over whether Parliament in London or the colonial assemblies had primary responsibility for taxation. As part of that conflict, the colonists organized the Boston Tea Party in response to a tax on tea. The British government responded by passing the Intolerable Acts, which included the closing of Boston Harbor and the revocation of Massachusetts's colonial charter. This conflict exacerbated tensions further. The ideological conflict escalated into open"} +{"qid": "test1472", "pid": "2178244", "query": "what act did parliament pass after the boston tea party", "answer": "Intolerable Acts", "passage": "\"Boston Port Act\"\nBoston Port Act The Boston Port Act was an Act of the Parliament of Great Britain which became law on March 31, 1774, and took effect on June 1, 1774. It was one of five measures (variously called the \"\"Intolerable Acts\"\", the \"\"Punitive Acts\"\" or the \"\"Coercive Acts\"\") that were enacted during the spring of 1774 to punish Boston for the Boston Tea Party. The Act was a response to the Boston Tea Party. King George III's speech of 7 March 1774 charged the colonists with attempting to injure British commerce and subvert the Constitution, and on the 18th Lord"} +{"qid": "test1475", "pid": "11521531", "query": "how many nfl games were played in london", "answer": "21", "passage": "\"NFL International Series\"\nonly holdup with games in Germany was what he dubbed \"\"an inventory management thing. How many games do we actually have?\"\" The success of the International Series has led the NFL to focus its global expansion aims on the possibility of having a full franchise located in London. While no set timetable has been set, the league is working on a goal of establishing a franchise by around 2021, assuming they have all the necessary arrangements in place. It is believed this would be most likely achieved through relocation of an existing franchise, with the Jaguars most often linked due"} +{"qid": "test1476", "pid": "19448292", "query": "what is alpha centauri's approximate distance from earth", "answer": "4.37 light-years", "passage": "\"Breakthrough Starshot\"\nBreakthrough Starshot Breakthrough Starshot is a research and engineering project by the Breakthrough Initiatives to develop a proof-of-concept fleet of light sail spacecraft named \"\"StarChip\"\", to be capable of making the journey to the Alpha Centauri star system 4.37 light-years away. A flyby mission has been proposed to Proxima Centauri b, an Earth-sized exoplanet in the habitable zone of its host star, Proxima Centauri, in the Alpha Centauri system. At a speed between 15% and 20% of the speed of light, it would take between twenty and thirty years to complete the journey, and approximately four years for a return"} +{"qid": "test1477", "pid": "1860051", "query": "when did the ouija board game come out", "answer": "July 1, 1890", "passage": "Ouija\nto refer to any talking board. According to Hasbro, players take turns asking questions and then \"\"wait to see what the planchette spells out\"\" for them. It is recommended for players over the age of 8. Following its commercial introduction by businessman Elijah Bond on July 1, 1890, the ouija board was regarded as a parlor game unrelated to the occult until American spiritualist Pearl Curran popularized its use as a divining tool during World War I. Spiritualists claimed that the dead were able to contact the living and reportedly used a talking board very similar to a modern ouija"} +{"qid": "test1479", "pid": "17671452", "query": "who wins america's next top model cycle 20", "answer": "Jourdan Miller", "passage": "\"Jourdan Miller\"\nJourdan Miller Jourdan Miller (born October 6, 1993) is an American fashion model, best known for winning the twentieth cycle of \"\"America's Next Top Model\"\". Miller was born in Olympia, Washington. In 1993, Miller's family relocated to Bend, Oregon where she was raised with her two sisters. Prior to her appearance on \"\"America's Next Top Model\"\", Miller studied at Mountain View High School in Bend. She was previously signed to Code Model Management in New York. In 2013, Miller appeared in Cycle 20 of the CW Network reality television show \"\"America's Next Top Model\"\", in which she competed against fifteen"} +{"qid": "test1479", "pid": "17671455", "query": "who wins america's next top model cycle 20", "answer": "Jourdan Miller", "passage": "\"Jourdan Miller\"\nMiller also became the second \"\"America's Next Top Model\"\" winner to have also never even appeared in the bottom three. This was preceded by cycle 13 winner Nicole Fox. She is also the second winner of the show to have received a total of six first call-outs after Ann Ward, the winner of cycle 15 After winning \"\"America's Next Top Model\"\", Miller received a modeling contract with NEXT Model Management in Los Angeles, an eight-page spread in the December/January 2014 issue of \"\"Nylon\"\" magazine and a $100,000-ad campaign with Guess. Following her win in \"\"America's Next Top Model\"\", Miller was"} +{"qid": "test148", "pid": "284360", "query": "what was the first video game for nintendo", "answer": "EVR Race", "passage": "Nintendo\nof Nintendo's most famous video games and become one of the most recognisable figures in the video game industry. In 1975, Nintendo moved into the video arcade game industry with \"\"EVR Race\"\", designed by their first game designer, Genyo Takeda, and several more games followed. Nintendo had some small success with this venture, but the release of \"\"Donkey Kong\"\" in 1981, designed by Miyamoto, changed Nintendo's fortunes dramatically. The success of the game and many licensing opportunities (such as ports on the Atari 2600, Intellivision and ColecoVision) gave Nintendo a huge boost in profit and in addition, the game also"} +{"qid": "test1481", "pid": "7074838", "query": "who has won the most olympic medals in curling", "answer": "Mirjam Ott", "passage": "\"Mirjam Ott\"\nMirjam Ott Mirjam Ott (born 27 January 1972 in Bern, Switzerland) is a retired Swiss curler who lives in Laax, Switzerland. She is the 2012 World Curling Champion skip. She is the skip (captain) of the Swiss Olympic Curling Team. She has participated in several Olympic Games contests and has won numerous awards in many other curling events worldwide. Ott won the Olympic silver medal twice; in the 2002 Olympic Games in Salt Lake City (with skip Luzia Ebnöther) and 2006 in Turin (as skip herself), making her the first woman with two Olympic medals in curling. In 2008 the"} +{"qid": "test1481", "pid": "14136555", "query": "who has won the most olympic medals in curling", "answer": "Torger Nergård", "passage": "\"Thomas Løvold\"\nThomas Løvold Thomas Løvold (born 27 January 1981) is a Norwegian curler. At Junior level, Løvold competed as skip and won gold medals at the 2002 and 2003 World Junior Curling Championships \"\"B\"\" tournaments. He has gained worldwide attention for having played as the alternate for Team Thomas Ulsrud at the 2010 Vancouver Winter Olympics and played third for Team Torger Nergård at the 2010 World Curling Championship in Cortina d'Ampezzo, Italy, winning the silver medal at both tournaments. Thomas Løvold also skips his own team on World Curling Tour events. His most successful tournament was the 2009 Lucerne Curling"} +{"qid": "test1481", "pid": "10678298", "query": "who has won the most olympic medals in curling", "answer": "Eva Lund", "passage": "\"Curling at the 2010 Winter Olympics\"\nfrom Asia to win an Olympic curling medal. The gold medal match was one of the closest medal games in Olympic competition. Team Canada won the silver medal, their best performance since the 1998 Nagano Olympic Games when Sandra Schmirler skipped the Canadians to gold. Team Sweden won the gold medal. Anette Norberg, Eva Lund, Cathrine Lindahl, and Anna Le Moine (née Anna Bergström [Anna Svärd in Torino]) became the first curlers to win two gold medals at the Olympic Games. The men's competition concluded on Saturday, February 27, 2010. In the bronze medal match, Markus Eggler of Switzerland became"} +{"qid": "test1481", "pid": "17855132", "query": "who has won the most olympic medals in curling", "answer": "Mirjam Ott", "passage": "\"Alina Pätz\"\nAlina Pätz Alina Pätz (born 8 March 1990 in Urdorf, Switzerland) is a two-time World champion Swiss curler. She currently throws fourth stones on Team Silvana Tirinzoni on the World Curling Tour and is the former alternate player for the Mirjam Ott rink which represented Switzerland at the 2014 Winter Olympics. Playing as the alternate for the Ott rink, Pätz won a gold medal at the 2012 Ford World Women's Curling Championship and a bronze medal at the 2013 European Curling Championships. Pätz has also won a silver medal at the 2010 European Mixed Curling Championship (Lead for Claudio Pätz)"} +{"qid": "test1481", "pid": "4661473", "query": "who has won the most olympic medals in curling", "answer": "Kevin Martin", "passage": "\"Kevin Martin (curler)\"\nprairies rivalry ever which spanned over 2 decades from 1991-2014; with Glenn Howard from 2007-2014, perhaps the best two team rivalry in Canadian curling history, and his rivalry with Sweden's Peja Lindholm from 1997-2006, perhaps the best ever men's Canada-Europe rivalry. Over his 30-year curling career, he won four Briers, a gold medal at the 2010 Winter Olympics, and one world championship. He went to a total of three Winter Olympics and four World Championships, and won a total of two Olympic medals and three World Championship medals. He won 15 Grand Slam titles on the World Curling Tour (the"} +{"qid": "test1482", "pid": "20431174", "query": "who played david on the assassination of gianni versace", "answer": "Cody Fern", "passage": "\"The Assassination of Gianni Versace: American Crime Story\"\nthat Finn Wittrock will star in \"\"The Assassination of Gianni Versace\"\", playing Jeffrey Trail, Cunanan's first victim. In November 2017, the official Twitter account for the series revealed that Judith Light and Dascha Polanco are part of the cast. In December 2017, the official webpage for the series released cast and character bios revealing that Max Greenfield would play Ronnie, whilst confirming the casting of Judith Light as Marilyn Miglin, Dascha Polanco as Detective Lori Wieder, Jon Jon Briones as Modesto Cunanan, Cody Fern as David Madson, and Mike Farrell as Lee Miglin. According to multiple set reports and photos,"} +{"qid": "test1484", "pid": "12790514", "query": "all the gases in the earth's atmosphere", "answer": "Water vapor", "passage": "\"Earth science\"\nmade up of about 78.0% nitrogen, 20.9% oxygen, and 0.92% argon. 75% of the gases in the atmosphere are located within the troposphere, the bottom-most layer. The remaining one percent of the atmosphere (all but the nitrogen, oxygen, and argon) contains small amounts of other gases including CO and water vapors. Water vapors and CO allow the Earth's atmosphere to catch and hold the Sun's energy through a phenomenon called the greenhouse effect. This allows Earth's surface to be warm enough to have liquid water and support life. In addition to storing heat, the atmosphere also protects living organisms by"} +{"qid": "test1484", "pid": "5345779", "query": "all the gases in the earth's atmosphere", "answer": "oxygen", "passage": "\"History of Earth\"\nmelting in basalt. Earth is often described as having had three atmospheres. The first atmosphere, captured from the solar nebula, was composed of light (atmophile) elements from the solar nebula, mostly hydrogen and helium. A combination of the solar wind and Earth's heat would have driven off this atmosphere, as a result of which the atmosphere is now depleted of these elements compared to cosmic abundances. After the impact which created the moon, the molten Earth released volatile gases; and later more gases were released by volcanoes, completing a second atmosphere rich in greenhouse gases but poor in oxygen. Finally,"} +{"qid": "test1484", "pid": "1294142", "query": "all the gases in the earth's atmosphere", "answer": "carbon dioxide", "passage": "Hydrosphere\na very thin atmosphere rich in hydrogen and helium similar to the present atmosphere of Mercury. Later the gases hydrogen and helium were expelled from the atmosphere. The gases and water vapor released as the Earth cooled became its present atmosphere. Other gases and water vapor released by volcanoes also entered the atmosphere. As the Earth cooled the water vapor in the atmosphere condensed and fell as rain. The atmosphere cooled further as atmospheric carbon dioxide dissolved in to rain water. In turn this further caused the water vapor to condense and fall as rain. This rain water filled the"} +{"qid": "test1484", "pid": "1639877", "query": "all the gases in the earth's atmosphere", "answer": "small amounts of other gases", "passage": "\"Atmosphere of Earth\"\nAtmosphere of Earth The atmosphere of Earth is the layer of gases, commonly known as air, that surrounds the planet Earth and is retained by Earth's gravity. The atmosphere of Earth protects life on Earth by creating pressure allowing for liquid water to exist on the Earth's surface, absorbing ultraviolet solar radiation, warming the surface through heat retention (greenhouse effect), and reducing temperature extremes between day and night (the diurnal temperature variation). By volume, dry air contains 78.09% nitrogen, 20.95% oxygen, 0.93% argon, 0.04% carbon dioxide, and small amounts of other gases. Air also contains a variable amount of water"} +{"qid": "test1484", "pid": "307245", "query": "all the gases in the earth's atmosphere", "answer": "oxygen", "passage": "Planet\nAll of the Solar System planets except Mercury have substantial atmospheres because their gravity is strong enough to keep gases close to the surface. The larger giant planets are massive enough to keep large amounts of the light gases hydrogen and helium, whereas the smaller planets lose these gases into space. The composition of Earth's atmosphere is different from the other planets because the various life processes that have transpired on the planet have introduced free molecular oxygen. Planetary atmospheres are affected by the varying insolation or internal energy, leading to the formation of dynamic weather systems such as hurricanes,"} +{"qid": "test1484", "pid": "12982476", "query": "all the gases in the earth's atmosphere", "answer": "carbon dioxide", "passage": "\"Greenhouse gas\"\nGreenhouse gas A greenhouse gas is a gas that absorbs and emits radiant energy within the thermal infrared range. Greenhouse gases cause the greenhouse effect. The primary greenhouse gases in Earth's atmosphere are water vapor, carbon dioxide, methane, nitrous oxide and ozone. Without greenhouse gases, the average temperature of Earth's surface would be about , rather than the present average of . The atmospheres of Venus, Mars and Titan also contain greenhouse gases. Human activities since the beginning of the Industrial Revolution (around 1750) have produced a 40% increase in the atmospheric concentration of carbon dioxide (), from 280 ppm"} +{"qid": "test1484", "pid": "17554229", "query": "all the gases in the earth's atmosphere", "answer": "Methane", "passage": "\"Atmospheric mining\"\nand it could be difficult navigating through the rings of Saturn. Also, Earth's atmosphere can be mined for carbon dioxide to produce fuel and to reduce the levels of greenhouse gas in the atmosphere. Hydrogen may fuel chemical and nuclear propulsion. Helium-3 may fuel nuclear propulsion. Methane may fuel chemical propulsion. Carbon dioxide mining on earth will reduce the level of greenhouse gases & can also produce fuel. Hydrogen and helium are abundant in outer planets. An aerostat would be a buoyant station in the atmosphere that gathers and stores gases. A vehicle would transfer the gases from the aerostat"} +{"qid": "test1484", "pid": "11685059", "query": "all the gases in the earth's atmosphere", "answer": "carbon dioxide", "passage": "\"Greenhouse Gases Observing Satellite\"\nband to enhance observation accuracy. The satellite uses a spectrometer to measure different elements and compounds based on their response to certain types of light. This technology allows the satellite to measure \"\"the concentration of greenhouse gases in the atmosphere at a super-high resolution.\"\" Greenhouse Gases Observing Satellite The Greenhouse Gases Observing Satellite (GOSat), also known as , is an Earth observation satellite and the world's first satellite dedicated to greenhouse-gas-monitoring. It measures the densities of carbon dioxide and methane from 56,000 locations on the Earth's atmosphere. The GOSAT was developed by the Japan Aerospace Exploration Agency (JAXA) and launched"} +{"qid": "test1484", "pid": "12982535", "query": "all the gases in the earth's atmosphere", "answer": "carbon dioxide", "passage": "\"Greenhouse gas\"\na scientific consensus evolved that increasing concentrations of greenhouse gases in the atmosphere cause a substantial rise in global temperatures and changes to other parts of the climate system, with consequences for the environment and for human health. Greenhouse gas A greenhouse gas is a gas that absorbs and emits radiant energy within the thermal infrared range. Greenhouse gases cause the greenhouse effect. The primary greenhouse gases in Earth's atmosphere are water vapor, carbon dioxide, methane, nitrous oxide and ozone. Without greenhouse gases, the average temperature of Earth's surface would be about , rather than the present average of ."} +{"qid": "test1484", "pid": "1639925", "query": "all the gases in the earth's atmosphere", "answer": "nitrogen", "passage": "Atmosphere\natmospheres were then modified over time by various complex factors, resulting in quite different outcomes. The atmospheres of the planets Venus and Mars are primarily composed of carbon dioxide, with small quantities of nitrogen, argon, oxygen and traces of other gases. The composition of Earth's atmosphere is largely governed by the by-products of the life that it sustains. Dry air from Earth's atmosphere contains 78.08% nitrogen, 20.95% oxygen, 0.93% argon, 0.04% carbon dioxide, and traces of hydrogen, helium, and other \"\"noble\"\" gases (by volume), but generally a variable amount of water vapor is also present, on average about 1% at"} +{"qid": "test1484", "pid": "17730299", "query": "all the gases in the earth's atmosphere", "answer": "carbon dioxide", "passage": "\"Migration of marine species in the Northern Atlantic Ocean\"\nMigration of marine species in the Northern Atlantic Ocean The world's oceans are warming due to climate change. Climate change is caused by three major factors which are the greenhouse effect, variation in the sun's energy that reaches Earth, and changes in reflectivity within Earth's atmosphere and its surface. The greenhouse effect is caused by greenhouse gases that absorb sunlight. Energy from the sun that reaches Earth is either retained or sent into space. Greenhouse gases in Earth's atmosphere such as carbon dioxide, methane, and water vapor absorb energy which cause a blanketing effect that warms the earth. Aerosols such"} +{"qid": "test1484", "pid": "1639880", "query": "all the gases in the earth's atmosphere", "answer": "carbon dioxide", "passage": "\"Atmosphere of Earth\"\n10 ppm by volume in the coldest portions of the atmosphere to as much as 5% by volume in hot, humid air masses, and concentrations of other atmospheric gases are typically quoted in terms of dry air (without water vapor). The remaining gases are often referred to as trace gases, among which are the greenhouse gases, principally carbon dioxide, methane, nitrous oxide, and ozone. Filtered air includes trace amounts of many other chemical compounds. Many substances of natural origin may be present in locally and seasonally variable small amounts as aerosols in an unfiltered air sample, including dust of mineral"} +{"qid": "test1484", "pid": "1639915", "query": "all the gases in the earth's atmosphere", "answer": "nitrogen", "passage": "\"Atmosphere of Earth\"\nfrom the Deep Space Climate Observatory (DSCOVR) and show Earth as it rotates during a day. Atmosphere of Earth The atmosphere of Earth is the layer of gases, commonly known as air, that surrounds the planet Earth and is retained by Earth's gravity. The atmosphere of Earth protects life on Earth by creating pressure allowing for liquid water to exist on the Earth's surface, absorbing ultraviolet solar radiation, warming the surface through heat retention (greenhouse effect), and reducing temperature extremes between day and night (the diurnal temperature variation). By volume, dry air contains 78.09% nitrogen, 20.95% oxygen, 0.93% argon, 0.04%"} +{"qid": "test1484", "pid": "1639916", "query": "all the gases in the earth's atmosphere", "answer": "nitrogen", "passage": "Atmosphere\nAtmosphere An atmosphere (from Modern Greek ἀτμός \"\"(atmos)\"\", meaning 'vapour', and σφαῖρα \"\"(sphaira)\"\", meaning 'sphere') is a layer or a set of layers of gases surrounding a planet or other material body, that is held in place by the gravity of that body. An atmosphere is more likely to be retained if the gravity it is subject to is high and the temperature of the atmosphere is low. The atmosphere of Earth is composed of nitrogen (about 78%), oxygen (about 21%), argon (about 0.9%) , carbon dioxide (0.03%) and other gases in trace amounts. Oxygen is used by most organisms"} +{"qid": "test1484", "pid": "2886337", "query": "all the gases in the earth's atmosphere", "answer": "nitrogen", "passage": "\"Natural environment\"\nvegetation. The changing vegetation occurs because when trees cannot get adequate water they start to deteriorate, leading to a decreased food supply for the wildlife in an area. The atmosphere of the Earth serves as a key factor in sustaining the planetary ecosystem. The thin layer of gases that envelops the Earth is held in place by the planet's gravity. Dry air consists of 78% nitrogen, 21% oxygen, 1% argon and other inert gases, such as carbon dioxide. The remaining gases are often referred to as trace gases, among which are the greenhouse gases such as water vapor, carbon dioxide,"} +{"qid": "test1485", "pid": "674699", "query": "where does the last name galvez come from", "answer": "Spanish", "passage": "Cajuns\nGalvez, their contribution to the winning of the war has been recognized. \"\"Galvez leaves New Orleans with an army of Spanish regulars and the Louisiana militia made up of 600 Cajun volunteers and captures the British strongholds of Fort Bute at Bayou Manchac, across from the Acadian settlement at St. Gabriel. On September 7, 1779 Galvez attacked Fort Bute and then on September 21, 1779 attacked and captured Baton Rouge.\"\" A review of participating soldiers shows many common Cajun names among those who fought in the battles of Baton Rouge and West Florida. The Galvez Chapter of the Daughters of"} +{"qid": "test1485", "pid": "8552131", "query": "where does the last name galvez come from", "answer": "Spanish", "passage": "\"Galvez, Louisiana\"\nthis group went by the name \"\"Grey.\"\"). Permission was granted, and in honor of the Spanish Governor, the refugees named their settlement \"\"Galveztown\"\". Galvez sent settlers from the Canary Islands, known as Isleños, to Galveztown in 1779, hoping to establish a military stronghold against the British in West Florida, who controlled nearby Baton Rouge at the time. The plans for the town called for it to be built in traditional Spanish \"\"villa\"\" layout including a military fort or presidio, although evidence of the town's actual layout, including the fort, is limited. From the start, diseases such as smallpox and scabies"} +{"qid": "test1485", "pid": "1605650", "query": "where does the last name galvez come from", "answer": "Spanish", "passage": "\"Livingston, Guatemala\"\ninto Spanish by liberal leader José Francisco Barrundia - were used as the basis for the laws of the liberal government of the United Provinces of Central America in the early 19th century. However, this government did not come to fruition in Guatemala, because of the conservative and clerical revolution led by Rafael Carrera in 1838 that overthrew governor Mariano Galvez and gave way to a conservative and Catholic regime that lasted until 1871 in Guatemala. In the 1960s, the importance of the region known as Franja Transversal del Norte was in livestock, exploitation of precious export wood and archaeological"} +{"qid": "test1485", "pid": "18160640", "query": "where does the last name galvez come from", "answer": "Spanish", "passage": "\"Francisco Collell\"\nFrancisco Collell Francisco Collell was a Spanish military official and politician who served as interim governor of West Florida between October 1810 and February 1811. He was also sub-lieutenant and Commandant of Galvez Town, Louisiana. Francisco Collell joined the Spanish Army in his youth, a place where he succeeded, obtaining the Commandant title. In 1779, after being promoted to sub-lieutenantwhile he retained the Commandant titleof Galvez Town, Louisiana, Collell laid out land lots and constructed houses in Galvez Town for the Spanish (Canarian) settlers. He led strikes of poor people and sent medicines to cure diseases of the Canarians in"} +{"qid": "test1485", "pid": "4962878", "query": "where does the last name galvez come from", "answer": "Spanish", "passage": "\"Military history of Puerto Rico\"\nout of the Puerto Rican dock. The governor of Louisiana, Bernardo de Gálvez, was named Field Marshal of the Spanish colonial army in North America. In 1779, Galvez and his troops, composed of Puerto Ricans and people from other Spanish colonies, distracted the British from the revolution by capturing Pensacola, the capital of the British colony of West Florida and the cities of Baton Rouge, St. Louis and Mobile. The Puerto Rican troops, under the leadership of Brigadier General Ramón de Castro, helped defeat the British and Indian army of 2,500 soldiers and British warships in Pensacola. Galvez and his"} +{"qid": "test1485", "pid": "742356", "query": "where does the last name galvez come from", "answer": "Spanish", "passage": "\"New Spain\"\nSeptember 1779 to May 1781, Bernardo de Galvez led an army in a campaign along the Gulf Coast against the British. Galvez's army consisted of Spanish regulars from throughout Latin America and a militia which consisted of mostly Acadians along with Creoles, Germans, and Native Americans. Galvez's army engaged and defeated the British in battles fought at Manchac and Baton Rouge, Louisiana, Natchez, Mississippi, Mobile, Alabama, and Pensacola, Florida. The loss of Mobile and Pensacola left the British with no bases along the Gulf Coast. In 1782, forces under Galvez's overall command captured the British naval base at Nassau on"} +{"qid": "test1486", "pid": "6910133", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Newark–World Trade Center\"\nservice on the Newark–World Trade Center line had to be changed. On weekdays, trains ran between either Newark Penn Station and 33rd Street or Hoboken Terminal. On weekends, trains ran between Newark Penn Station and 33rd Street with Hoboken Terminal as an interim stop. Express service was suspended indefinitely. During overnight hours daily, trains ran between Newark and 33rd Street via Hoboken and was the only branch operating on PATH during those times. When Exchange Place reopened on June 29, 2003, service ran between Newark and that station daily around the clock. Service to World Trade Center was restored on"} +{"qid": "test1486", "pid": "17732812", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Sports in Newark, New Jersey\"\nHistorically, Newark was home to the minor professional Newark Bulldogs, a Canadian-American Hockey League franchise which played one season in 1928-29. Newark is the transportation hub for the Red Bull Arena, home stadium of Major League Soccer's Red Bulls, across the Passaic River from Newark's Riverbank Park in Harrsion, with shuttle bus service running from downtown train stations. PATH trains from Newark Penn Station are one stop to nearby Harrison station. Newark, particularly the Ironbound, and the adjacent West Hudson towns on the Passaic, Harrison and Kearny, have a long tradition of soccer. Kearny's nickname, \"\"Soccer Town USA\"\" is inspired"} +{"qid": "test1486", "pid": "2038987", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"PATH (rail system)\"\nat a different location from the original Hudson Terminal. The new station cost $35 million to build, and saw 85,000 daily passengers at the time of its opening. At this time, the Hudson Terminal was shut down. In January 1973, the Port Authority released plans to double the length of the PATH system. The plan called for a extension of the Newark–World Trade Center line from Newark Penn Station to Plainfield, New Jersey. A stop at Elizabeth would allow the PATH to serve Newark Airport as well. At the Newark Airport stop, there would be a transfer to a people"} +{"qid": "test1486", "pid": "6910135", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Newark–World Trade Center\"\nsouthwest from Newark Penn Station to Newark Liberty International Airport, after a nearly two-year study. The Board of Commissioners approved the Capital Plan, including the airport extension, on February 19, 2014. Plans call for the extension to follow the existing Northeast Corridor Line used by Amtrak and NJ Transit to the Newark Liberty International Airport station, where passengers can connect to the AirTrain Newark airport monorail system. Newark–World Trade Center The Newark–World Trade Center is a rapid transit service operated by the Port Authority Trans-Hudson (PATH). It is colored red on the PATH service map and trains on this service"} +{"qid": "test1486", "pid": "3757751", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Pennsylvania Station (Newark)\"\ncontinue on and terminate at New York Penn Station, and one morning train continuing to Hoboken. It is the western terminus of the Newark–World Trade Center line of the PATH train, operated by the Port Authority of New York and New Jersey. Trains terminate on the upper level and return to service on the lower level. On the lower level is the south end of the Newark Light Rail. Passengers on this light rail system from Newark and its nearby suburbs can transfer to Amtrak or PATH trains, or travel to Newark Broad Street or downtown Newark. Newark Penn Station"} +{"qid": "test1486", "pid": "3758232", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Hoboken Terminal\"\n\"\"Downtown Train\"\" video (1990) and Eric Clapton's video for his 1996 single \"\"Change the World\"\". Access to other NJ Transit rail lines is available at Newark Penn Station (which also serves Amtrak), Secaucus Junction, or Newark Broad Street. PATH trains provide 24-hour service from a three-track underground station located north of the surface platforms. Entrances are from the main concourse or street, below the Hudson Place bus station with both an elevator and stairs. Travel to Newark Penn Station always requires a transfer, as does weekday service to Journal Square Transportation Center. Hoboken Terminal is the terminus for two of"} +{"qid": "test1486", "pid": "4647012", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Harrison station (PATH)\"\ncard turnstiles, installed here and at all other PATH stations in January 2005. Before then, passengers could take the short ride to Newark for free (trains discharge and pick up passengers at different fare-control areas in Newark Penn Station, so fare beating to New York was not possible). These six turnstiles lead past a Ticket Vending Machine and another machine for two trip PATH MetroCards to a covered staircase. This staircase goes down to an intermediate landing where another staircase turns right and goes down to the street. A new staircase facing the opposite direction from the original goes down"} +{"qid": "test1486", "pid": "3757752", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Pennsylvania Station (Newark)\"\ncarries the IATA airport code of ZRP. Newark Penn has 8 tracks and 6 platforms for both NJT and PATH ( Newark Light Rail not included) but PATH trains from NYc arrive on the Uppe Note: Shows platform layouts only, not the actual station layout. Pennsylvania Station (Newark) Pennsylvania Station (also known as Newark Penn Station) is an intermodal passenger station in Newark, New Jersey. Located at Raymond Plaza, between Market Street and Raymond Boulevard, Newark Penn Station is served by multiple rail and bus carriers, making it the fourth-busiest transportation hub in the New York metropolitan area. It is"} +{"qid": "test1486", "pid": "925442", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Essex County, New Jersey\"\nwaterfront of Newark. Leaving Penn Station, the line comes up from the subway and runs on streets or at grade for most of its length. It stops at NJPAC/Center Street, Atlantic Street, and Riverfront Stadium before reaching Broad Street Station. From Broad Street it takes a different route stopping at Washington Park and NJPAC/Center Street before arriving at Penn Station. The PATH also operates out of Newark Penn Station. It has direct service to Harrison, Jersey City, and Lower Manhattan. With a free transfer, the PATH also provides service to Hoboken, as well as Greenwich Village Chelsea, and Midtown Manhattan."} +{"qid": "test1486", "pid": "925438", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Essex County, New Jersey\"\nall trains that use the lines are electric, because they connect to non-electrified track. NJ Transit has five lines that make stops in the county. All of them stop at either Newark Penn Station or Newark Broad Street Station. The Northeast Corridor Line from Trenton with connections from Philadelphia's 30th Street Station, Camden, and Princeton has stops at Newark Airport and Newark Penn Stations before continuing to Secaucus Junction and New York Penn Station. The North Jersey Coast Line from Bay Head or Long Branch also stops at Newark Airport and Newark Penn Stations before continuing to Secaucus Junction and"} +{"qid": "test1486", "pid": "17824638", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Mass Transit Super Bowl\"\nstadium. In anticipation of increased ridership for the Super Bowl, platforms at Secaucus were extended to accommodate multi-level 10-car train sets which can handle about 1,400 to 1,800 passengers per trip, moving about 14,000 or 15,000 people an hour. Eleven lines of New Jersey Transit Rail Operations and the Metro North Port Jervis Line converge at the station, which is one stop from New York Penn Station, Hoboken Terminal, Newark Penn Station or Broad Street Station. While Amtrak does not normally stop at Secaucus, several trains were scheduled to stop there on game day. Only ticket-holders and those with a"} +{"qid": "test1486", "pid": "523748", "query": "where does the path train stop in newark", "answer": "Newark Penn Station", "passage": "\"Port Authority of New York and New Jersey\"\nStreet, and 200 Greenwich Street. Also part of the plans was the World Trade Center Transportation Hub, which opened in March 2016 and replaced the temporary PATH station that opened in November 2003. The Port Authority is in the process of building a new terminal at Newark Airport to replace current Terminal A, which is expected to be completed by 2022. The new terminal started construction in June 2017 and will open in 2022. The PATH's Newark–World Trade Center train route is planned to be extended from its current terminus at Newark Penn Station to a new Newark Liberty International"} +{"qid": "test1487", "pid": "232456", "query": "on which river did the exploration of the louisiana purchase begin", "answer": "Missouri River", "passage": "\"Louisiana Purchase\"\nto explore and map the new territory. All three started from the Mississippi River. The Lewis and Clark Expedition (1804) traveled up the Missouri River; the Red River Expedition (1806) explored the Red River basin; the Pike Expedition (1806) also started up the Missouri, but turned south to explore the Arkansas River watershed. The maps and journals of the explorers helped to define the boundaries during the negotiations leading to the Adams–Onís Treaty, which set the western boundary as follows: north up the Sabine River from the Gulf of Mexico to its intersection with the 32nd parallel, due north to"} +{"qid": "test1487", "pid": "1862175", "query": "on which river did the exploration of the louisiana purchase begin", "answer": "Missouri River", "passage": "\"American frontier\"\nin the area of the Louisiana Purchase amounted to about $2.6 billion in current dollars, or $8.5 billion in 2012 dollars (nearly $9 billion in 2016 dollars). Additional sums were paid to the Indians living east of the Mississippi for their lands, as well as payments to Indians living in parts of the west outside the Louisiana Purchase. Even before the purchase Jefferson was planning expeditions to explore and map the lands. He charged Lewis and Clark to \"\"explore the Missouri River, and such principal stream of it, as, by its course and communication with the waters of the Pacific"} +{"qid": "test1487", "pid": "5709770", "query": "on which river did the exploration of the louisiana purchase begin", "answer": "Missouri River", "passage": "\"History of Montana\"\ndistant from the seats of power for this political boundary change to have much impact upon them, but the Louisiana Purchase would prove a sea-change for the area. The Louisiana Purchase sparked interest in knowing the character of the lands the nation had purchased, including their flora and fauna and the peoples who inhabited them. President Thomas Jefferson, an advocate of exploration and scientific inquiry, had the Congress appropriate $2,500 for an expedition up the Missouri River and down the Columbia River to the Pacific Ocean. He had envisioned an expedition of this nature since at least the early 1790s,"} +{"qid": "test1487", "pid": "12080590", "query": "on which river did the exploration of the louisiana purchase begin", "answer": "Missouri River", "passage": "\"Lewis and Clark Landing\"\nLewis and Clark Landing Lewis and Clark Landing is a public park located at 515 North Riverfront Drive in Downtown Omaha, Nebraska . This park is situated along the eight-foot-tall (2.4 m) river walk of the Missouri River just north of U.S. Interstate 480. Lewis and Clark Landing is the original landing site of the 1804 Lewis and Clark Expedition. The Lewis and Clark Expedition took place from 1804 to 1806. The purpose of the expedition was to explore the land which the United States had purchased from France through the Louisiana Purchase in 1803. Lewis and Clark Landing now"} +{"qid": "test1487", "pid": "9915913", "query": "on which river did the exploration of the louisiana purchase begin", "answer": "Missouri River", "passage": "\"Treaty of Fort Clark\"\nthe newly acquired Louisiana Purchase. The affected tribes, upset with the terms, were to side with the British in the War of 1812. Following the settlement of that war, John C. Sullivan for the United States was to survey the ceded land in 1816 (adjusting it 23 miles westward to the mouth of the Kansas River to create the Indian Boundary Line west of which and south of which virtually all tribes were to be removed in the Indian Removal Act in 1830. When Lewis and Clark began their explorations of the Missouri River in 1804, Pierre Chouteau of the"} +{"qid": "test1487", "pid": "1067309", "query": "on which river did the exploration of the louisiana purchase begin", "answer": "Missouri River", "passage": "\"Burlington, Iowa\"\nexplorers to map the Louisiana Purchase. The Lewis and Clark Expedition followed the Missouri River, while Lt. Zebulon Pike followed the Mississippi River. In 1805, Pike landed at the bluffs below Burlington and raised the United States Flag for the first time on what would become Iowa soil and recommended construction of a fort. The recommendation went unheeded. The American Fur Company of John Jacob Astor established a post in the area in 1829. Settlement began in 1833, shortly after the Black Hawk Purchase, when Samuel (aka Simpson) White, Amzi Doolitle, and Morton M. McCarver crossed the Mississippi River from"} +{"qid": "test1489", "pid": "18255218", "query": "when does planet of the apes come out 2017", "answer": "July 14, 2017", "passage": "\"War for the Planet of the Apes\"\nto the fifth film in the original series, \"\"Battle for the Planet of the Apes\"\", but it is not a direct remake. Principal photography began on October 14, 2015, in Vancouver, British Columbia, Canada. \"\"War for the Planet of the Apes\"\" premiered in New York City on July 10, 2017, and was theatrically released in the United States on July 14, 2017, by 20th Century Fox. The film has grossed over $490 million and received critical praise, with many reviewers highlighting the performances (particularly Serkis's), visual effects, story, direction, and musical score. The film received a nomination for Best Special"} +{"qid": "test1489", "pid": "10517520", "query": "when does planet of the apes come out 2017", "answer": "July 14, 2017", "passage": "\"Matt Reeves\"\nto develop in summer 2013, but Reeves left the project in order to direct the science fiction film \"\"Dawn of the Planet of the Apes\"\", the sequel to \"\"Rise of the Planet of the Apes\"\", released in 2014. He returned to direct the third film in the series, \"\"War for the Planet of the Apes\"\", which was released on July 14, 2017. Since 2011, Reeves has been working on the script of \"\"8 O'Clock in the Morning\"\", a science fiction film based on the short story of same name written by Ray Nelson, previously adapted by John Carpenter as \"\"They"} +{"qid": "test1490", "pid": "803348", "query": "when was the first time lebron went to the finals", "answer": "2007", "passage": "\"Dallas Mavericks\"\nSpurs in the first round of the Western Conference Playoffs. Although the Mavericks managed to obtain the number two seed, they were defeated by the Spurs in six games. During the 2011 playoffs, a role reversal of sorts occurred between the two rivals, when the top seeded Spurs were defeated by the eighth seeded Memphis Grizzlies, the first time an eight seed defeated a one seed since the infamous Mavs-Warriors series of 2007. In addition, the Mavericks defeated the LeBron James-led Miami Heat in the NBA Finals, similar again to how the 2007 Spurs defeated a LeBron James-led Cleveland Cavaliers"} +{"qid": "test1490", "pid": "17996939", "query": "when was the first time lebron went to the finals", "answer": "2007", "passage": "\"2015 NBA Playoffs\"\nstraight playoff appearance) entered the playoffs as the first seeds of their respective conferences. The Warriors and Hawks advanced to the Conference Finals for the first time since 1976 and 1970, respectively. The Cleveland Cavaliers made their first postseason appearance since 2010, the final season of LeBron James' first stint with the Cavaliers. They also made their first Conference Finals appearance since 2009, where they lost 4–2 to the Orlando Magic, and their first Finals appearance since 2007, when they were swept by the San Antonio Spurs. On the other hand, James' former team, the Miami Heat, missed the playoffs"} +{"qid": "test1490", "pid": "11043366", "query": "when was the first time lebron went to the finals", "answer": "2007", "passage": "\"2006–07 San Antonio Spurs season\"\nConference Semifinals (Utah won 4–1) LeBron James and the Cleveland Cavaliers entered the 2007 Finals as newcomers. Game 1 was the first NBA Finals appearance in franchise history, and the first for each of its players (other than reserve point guard Eric Snow). However, the San Antonio Spurs had been to the Finals in three of the past eight seasons, winning a championship each time. With solid performances by Tim Duncan, Tony Parker, and Manu Ginóbili, the Spurs won the series opener in convincing fashion, limiting LeBron James to 14 points on 4–16 shooting. The Spurs took a stranglehold on"} +{"qid": "test1490", "pid": "4911523", "query": "when was the first time lebron went to the finals", "answer": "2007", "passage": "\"Dwane Casey\"\nteam was 53–69, and he was fired on January 23, 2007, after only a season and a half with the Timberwolves. At the time of his firing, the Timberwolves were 20–20, he was replaced by assistant coach Randy Wittman, who went 12–30 for the rest of the season. During the 2008–09 NBA season Casey served as an assistant coach for the Dallas Mavericks. During the 2009–10 NBA season, the Mavericks won a division title. In 2011, the Mavericks defeated the Miami Heat in the 2011 NBA Finals and won their first championship. LeBron James of the Heat would later admit"} +{"qid": "test1490", "pid": "11043865", "query": "when was the first time lebron went to the finals", "answer": "2007", "passage": "\"2006–07 Cleveland Cavaliers season\"\none of the most memorable postseason games in recent NBA history. In a match that went into double overtime, the Cavaliers stunned the Pistons on their home court, thanks to LeBron James' playoff career-high 48 point performance. James scored the Cavaliers' final 25 points of the game, including all 18 points in overtime making it two straight two-point wins at the Palace in Game 5. This time around the heavily favored Cavaliers took advantage of their home court in 2007 and exploded in Game 6 to close out the Pistons once and for all, and to clinch the franchise's first"} +{"qid": "test1492", "pid": "2421578", "query": "who plays the voice of john smith in pocahontas", "answer": "Mel Gibson", "passage": "\"Pocahontas (1995 film)\"\nPocahontas (1995 film) Pocahontas is a 1995 American animated musical romantic drama film produced by Walt Disney Feature Animation for Walt Disney Pictures. The 33rd Disney animated feature film, it was directed by Mike Gabriel and Eric Goldberg and is loosely based on the life of the Native American woman of the same name. It portrays a fictionalized account of her historical encounter with Englishman John Smith and the Jamestown settlers that arrived from the Virginia Company. The voice cast stars Irene Bedard and Mel Gibson as Pocahontas and Smith, respectively, with David Ogden Stiers, Russell Means, Christian Bale, Billy"} +{"qid": "test1492", "pid": "9956070", "query": "who plays the voice of john smith in pocahontas", "answer": "Mel Gibson", "passage": "\"Donal Gibson\"\nDonal Gibson Donal Gibson (born February 13, 1958) is an American actor, and younger brother of award-winning actor and director Mel Gibson. Gibson was born in Peekskill, New York. Donal has done voice acting in shows like \"\"ReBoot\"\" and \"\"Justice League Unlimited\"\" (as Captain Boomerang). His most notable voice acting role was probably as Captain John Smith in Disney's \"\"\"\", a role which was played by his brother Mel in the first film, \"\"Pocahontas\"\". Aside of voice acting, Donal has also appeared for minor roles in films starring his brother Mel, such as \"\"Braveheart\"\", \"\"Conspiracy Theory\"\", and \"\"Maverick\"\", as well"} +{"qid": "test1492", "pid": "2421607", "query": "who plays the voice of john smith in pocahontas", "answer": "Mel Gibson", "passage": "\"Pocahontas (1995 film)\"\nAccording to Bedard, she took a train to Buffalo, New York where she was walked in wearing a sundress and a straw hat, and read for the part. Back on the set of \"\"Lakota Woman\"\", she learned that she was cast in the role. Michelle St. John had also auditioned for the role of Pocahontas, and was given the role of Nakoma after Bedard was cast. Mel Gibson was cast as English settler John Smith following a desire to make \"\"something for my kids.\"\" In a notable contrast to previous voice actors for Disney animated features, Gibson provided the singing"} +{"qid": "test1494", "pid": "3705540", "query": "distance from one side of a bridge to the other crossword", "answer": "span", "passage": "\"Fatih Sultan Mehmet Bridge\"\nThere are two other bridges that connect Europe and Asia located in Istanbul which are named Yavuz Sultan Selim Bridge and 15 July Martyrs Bridge (formerly known as Bosphorus Bridge). The bridge is situated between Hisarüstü (European side) and Kavacık (Asian side). It is a gravity-anchored suspension bridge with steel pylons and vertical hangers. The aerodynamic deck hangs on double vertical steel cables. It is 1,510 m long with a deck width of 39 m. The distance between the towers (main span) is 1,090 m and their height over road level is 105 m. The clearance of the bridge from"} +{"qid": "test1494", "pid": "17762997", "query": "distance from one side of a bridge to the other crossword", "answer": "span", "passage": "\"Stony Creek Bridge\"\nbridge has two upright \"\"queen posts\"\" on either side, each placed about one-third of the way along the span, connected across the top by a beam. (In comparison, each side of a king post bridge has a single \"\"king post\"\" in the center of the span.) A diagonal brace runs between the top of the queen post and the outer edge. Queen post bridges can span greater distances than single-upright king post bridges. The queen post truss bridge is of ancient origin, and both king post and queen post trusses were constructed from timber from the Middle Ages through early"} +{"qid": "test1495", "pid": "20125279", "query": "who played the detective in little boy blue", "answer": "Stephen Graham", "passage": "\"Little Boy Blue (TV series)\"\nLittle Boy Blue (TV series) Little Boy Blue is an ITV drama series, shown over four sixty-minute episodes from 24 April to 15 May 2017. The series focuses on the murder of Rhys Jones in Croxteth, Liverpool in 2007. Stephen Graham was cast as Detective Superintendent Dave Kelly and Sinead Keenan and Brían F. O'Byrne were cast as Melanie and Steve Jones, respectively in a new four-part drama titled \"\"Little Boy Blue\"\". On 18 April 2017, it was confirmed that the programme would begin its broadcasting on 24 April 2017 on a weekly basis, concluding on 15 May. \"\"Little Boy"} +{"qid": "test1495", "pid": "20125280", "query": "who played the detective in little boy blue", "answer": "Stephen Graham", "passage": "\"Little Boy Blue (TV series)\"\nBlue\"\" aired in four sixty-minute episodes. Whilst filming took place in Liverpool, the murder scene itself was filmed outside Liverpool as a sign of respect for his parents. However locations used in Liverpool include the Anglican Cathedral and Liverpool Crown Court. Little Boy Blue (TV series) Little Boy Blue is an ITV drama series, shown over four sixty-minute episodes from 24 April to 15 May 2017. The series focuses on the murder of Rhys Jones in Croxteth, Liverpool in 2007. Stephen Graham was cast as Detective Superintendent Dave Kelly and Sinead Keenan and Brían F. O'Byrne were cast as Melanie"} +{"qid": "test1496", "pid": "6602316", "query": "when do they put the rockefeller tree up", "answer": "mid November", "passage": "\"Rockefeller Center Christmas Tree\"\n(2012–present), and Hoda Kotb (2017–present). Tallest Tree on Record Rockefeller Center Christmas Tree The Rockefeller Center Christmas Tree is a large Christmas tree placed annually in Rockefeller Center, in Midtown Manhattan. The tree is erected in mid November and lit in a public ceremony in late November or early December. Since 1997, the lighting has been broadcast live, to hundreds of millions, on NBC's \"\"Christmas in Rockefeller Center\"\" telecast on a Wednesday after Thanksgiving. The broadcast features live entertainment and a tree lighting ceremony, where the tree is lit by the current Mayor of New York City and special guests."} +{"qid": "test1496", "pid": "6602306", "query": "when do they put the rockefeller tree up", "answer": "mid November", "passage": "\"Rockefeller Center Christmas Tree\"\nRockefeller Center Christmas Tree The Rockefeller Center Christmas Tree is a large Christmas tree placed annually in Rockefeller Center, in Midtown Manhattan. The tree is erected in mid November and lit in a public ceremony in late November or early December. Since 1997, the lighting has been broadcast live, to hundreds of millions, on NBC's \"\"Christmas in Rockefeller Center\"\" telecast on a Wednesday after Thanksgiving. The broadcast features live entertainment and a tree lighting ceremony, where the tree is lit by the current Mayor of New York City and special guests. An estimated 125 million people visit the attraction each"} +{"qid": "test1497", "pid": "13145593", "query": "what do you say when you win bingo", "answer": "Bingo", "passage": "Zynga\nemployee recalled Mark Pincus advising him to \"\"copy what [Zynga's competitors] do and do it until you get their numbers.\"\" NimbleBit founder Ian Marsh has accused Zynga of copying its award-winning \"\"Tiny Tower\"\" game to create \"\"Dream Heights\"\". Within a week, Buffalo Studios alleged that its game \"\"Bingo Blitz\"\" was copied by Zynga in making \"\"Zynga Bingo\"\". Pincus responded by saying that tower-building games have existed since \"\"SimTower\"\" (1994) and that Zynga uses mechanics and ideas developed throughout the history of video games to create \"\"best in market games.\"\" He added that \"\"Bingo Blitz\"\" has similarities to the discontinued Zynga"} +{"qid": "test1498", "pid": "699110", "query": "who is the head of parliament in uk", "answer": "Elizabeth II", "passage": "\"Legislatures of the United Kingdom\"\nUK Parliament, the British Parliament, the Westminster Parliament or \"\"Westminster\"\") is the supreme legislative body for the United Kingdom and also for English Law. It alone possesses legislative supremacy and thereby ultimate power over all other political bodies in the UK and its territories. Its head is the Sovereign of the United Kingdom (currently Queen Elizabeth II) and its seat is the Palace of Westminster in Westminster, London. The United Kingdom Legislation may take the form of Acts (passed directly by Parliament) or Statutory Instruments, made under the authority of an Act of Parliament by either a government minister or"} +{"qid": "test1499", "pid": "105743", "query": "which term means the study of the nature and causes of disease", "answer": "pathology", "passage": "Disease\ndisease: infectious diseases, deficiency diseases, hereditary diseases (including both genetic diseases and non-genetic hereditary diseases), and physiological diseases. Diseases can also be classified in other ways, such as communicable versus non-communicable diseases. The deadliest diseases in humans are coronary artery disease (blood flow obstruction), followed by cerebrovascular disease and lower respiratory infections. The study of disease is called \"\"pathology\"\", which includes the study of \"\"etiology\"\", or cause. In many cases, terms such as \"\"disease\"\", \"\"disorder\"\", \"\"morbidity\"\", \"\"sickness\"\" and \"\"illness\"\" are used interchangeably. There are situations, however, when specific terms are considered preferable. In an infectious disease, the incubation period is"} +{"qid": "test1499", "pid": "1784942", "query": "which term means the study of the nature and causes of disease", "answer": "pathology", "passage": "\"Transmissible spongiform encephalopathy\"\nhighly variable nature of prion disease pathology, is why a prion disease cannot be diagnosed based solely on a patient's symptoms. Mutations in the PRNP gene cause prion disease. Familial forms of prion disease are caused by inherited mutations in the PRNP gene. Only a small percentage of all cases of prion disease run in families, however. Most cases of prion disease are sporadic, which means they occur in people without any known risk factors or gene mutations. In rare circumstances, prion diseases also can be transmitted by exposure to prion-contaminated tissues or other biological materials obtained from individuals with"} +{"qid": "test150", "pid": "6219286", "query": "who sings the theme song for the tv show cops", "answer": "Inner Circle", "passage": "\"Cops (TV program)\"\nOn April 25, 2018, the video recorded by the \"\"Cops\"\" camera crew was released. The video was shown in open court and The Omaha World Herald requested a copy, which it later released. The wrongful death lawsuit filed against the City of Omaha by Trevor Dion is still ongoing. The show's theme song is \"\"Bad Boys\"\", performed by reggae group Inner Circle, which is played over a montage of clips. All episodes of \"\"Cops\"\" begin with a disclaimer which was introduced in the third season: The disclaimer in the first two seasons was slightly different by stating: \"\"\"\"COPS\"\" is filmed"} +{"qid": "test150", "pid": "15361333", "query": "who sings the theme song for the tv show cops", "answer": "Inner Circle", "passage": "\"Bad Boys (Inner Circle song)\"\nBad Boys (Inner Circle song) \"\"Bad Boys\"\" is a 1987 song by the Jamaican reggae band Inner Circle, which obtained high popularity in the United States after its re-release in 1993, peaking at number 8 on the \"\"Billboard\"\" Hot 100 and number 7 on the Top 40 Mainstream. It is well known as the opening theme to the U.S. TV show \"\"Cops\"\". The song was originally released in 1987 on the album \"\"One Way\"\" and obtained minor airplay and poor sales. However, in 1992, it was also included on the \"\"Bad to the Bone\"\" album, and the song was released"} +{"qid": "test1502", "pid": "10539678", "query": "where is fulda and what is its significance", "answer": "Hesse, Germany", "passage": "\"Ehrenberg, Hesse\"\ntown Gersfeld (district Fulda) in the south and the municipality Poppenhausen (district Fulda) in the west. The smallest village of the municipality is characterized by prevailing agriculture. In the centre of the village there is a bakehouse where the annual Melpertser Bakehousefestival is taking place. In Melperts there is a pottery. Ehrenberg, Hesse Ehrenberg is a municipality in the district of Fulda, in Hesse, Germany. The municipality is located in the centre of the wildlife park \"\"Hessische Rhön\"\" in a level of 450 up to 900 meters and approx. 30 km from Fulda. Most of its districts are situated in"} +{"qid": "test1502", "pid": "15888739", "query": "where is fulda and what is its significance", "answer": "Hesse, Germany", "passage": "\"Göbelnrod station\"\nThe station is located on the Vogelsberg Railway (Gießen - Fulda). The station is served by RB services operated by DB. In 1908 the building was erected and the station was opened. For the State Conservation Office Hesse, the station building is a cultural monument for its rail traffic-historical significance and for historical reasons. The station is served daily by hourly Regionalbahn (RB 45) services on the Limburg (Lahn)–Weilburg–Wetzlar–Gießen–Alsfeld (Oberhess)–Fulda route. In the peak, additional Regionalbahn services run on the Gießen–Grünberg–Mücke route. Göbelnrod station Göbelnrod () is a railway station in Göbelnrod, Hesse, Germany. The former through station has been"} +{"qid": "test1502", "pid": "1979333", "query": "where is fulda and what is its significance", "answer": "Hesse, Germany", "passage": "\"Fulda (river)\"\nthe river meets the Werra in Hannoversch Münden, Lower Saxony, where the Fulda and the Werra join to form the Weser river. Cities along the Fulda include: Fulda (river) The Fulda () is a river in Hesse, Germany. It is one of two headstreams of the Weser (the other one being the Werra). The Fulda is long. The river arises at Wasserkuppe in the Rhön mountains. From there it runs northeast, flanked by the Knüll mountains in the west and the Seulingswald in the east. Near Bebra it changes direction to the northwest. After joining the Eder river it flows"} +{"qid": "test1502", "pid": "1641231", "query": "where is fulda and what is its significance", "answer": "Hesse, Germany", "passage": "\"Fulda (district)\"\nmerged into 23 bigger ones, and in 1974 the city of Fulda lost its status as district-free city and joined the district again. In 1972 the major part of the Hünfeld district was added to the district. The district is located in the Rhön and Vogelsberg mountains. The main river of the district is the Fulda. Fulda (district) Fulda () is a \"\"Kreis\"\" (district) in the north-east of Hesse, Germany. Neighboring districts are Hersfeld-Rotenburg, Wartburgkreis, Schmalkalden-Meiningen, Rhön-Grabfeld, Bad Kissingen, Main-Kinzig, Vogelsbergkreis. The district was created in 1821, when the duchy of Fulda became a province of Hesse, and was split"} +{"qid": "test1502", "pid": "8246614", "query": "where is fulda and what is its significance", "answer": "Hesse, Germany", "passage": "Gersfeld\n1815. During the Austro-Prussian War, it was occupied by Prussia before its annexation in the newly established Hesse Nassau province. It was finally incorporated in the state of Hesse in 1945. Gersfeld Gersfeld is a town in the district of Fulda, in Hesse, Germany. It is situated on the Fulda River, in the Rhön Mountains, southeast of Fulda. It belonged to the abbey-principality of Fulda before secularisation in 1803. It then belonged to the Principality of Nassau-Orange-Fulda between 1803 and 1806, to France between 1806 and 1810, and then later to the Grand Duchy of Frankfurt between 1810 and 1813."} +{"qid": "test1503", "pid": "3061168", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "WZTV\nwas reported that Sinclair and Fox were working on a deal that would see its Fox affiliates renew their affiliation agreement in exchange for Sinclair selling some of its Fox affiliates directly to Fox Television Stations. The deal would have seen between six and ten Fox affiliates owned by Sinclair and Tribune (all in markets with an NFL team) become Fox owned-and-operated stations. It was not known if WZTV will be one of the stations sold, although the stations being sold to Fox were expected to be from Tribune Media (notably KCPQ in Seattle, where Sinclair already owns KOMO-TV), many"} +{"qid": "test1503", "pid": "4966176", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "KUNS-TV\nstations, serving the Yakima–Walla Walla–Pasco–Richland–Kennewick market of central Washington. All of these stations are owned and operated by Sinclair Broadcast Group as of 2017. At one point, KUNS had a fourth translator, KWWA-CA channel 49, which served Ellensburg. However, its license was canceled on June 4, 2008. KUNS-TV KUNS-TV, virtual channel 51 (UHF digital channel 50), is a Univision-affiliated television station serving Seattle and Tacoma, Washington, United States that is licensed to Bellevue. The station is owned by the Sinclair Broadcast Group, as part of a duopoly with Seattle-licensed ABC affiliate KOMO-TV (channel 4). The two stations share studios and"} +{"qid": "test1503", "pid": "5570275", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "WXIN\nbetween six and ten Fox affiliates owned by Sinclair and Tribune in markets with an NFL franchise become Fox owned-and-operated stations. It is not known if WXIN will be one of the stations sold nor how the deal could be brokered with regards to its duopoly with WTTV/WTTK, although the stations being sold to Fox are expected to largely come from Tribune Media (notably KCPQ and its MyNetworkTV-affiliated sister KZJO in Seattle, where Sinclair already owns ABC affiliate KOMO-TV and Univision affiliate KUNS-TV), many of which were previously owned by Fox. (Sinclair may sell additional Fox affiliates to other groups"} +{"qid": "test1503", "pid": "7773166", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "KVI\nstations was $373.3. Although nearly all of Sinclair's broadcast properties are television stations, the company has retained KVI, KPLZ-FM, KOMO and KOMO-FM. The deal was completed on August 8, 2013. KVI KVI (570 kHz) is a commercial AM radio station in Seattle, Washington. KVI is owned by the Sinclair Broadcast Group and it airs a conservative talk radio format called \"\"News Talk 570 KVI.\"\" Its transmitter is on Vashon Island and its studios and offices are located with co-owned Channel 4 KOMO-TV at KOMO Plaza (formerly Fisher Plaza) in Seattle. On weekdays, KVI airs both local and nationally syndicated shows."} +{"qid": "test1503", "pid": "4204471", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "WPGH-TV\nin markets with an NFL team) become Fox owned-and-operated stations. It is not known if WPGH-TV will be one of the stations sold, although the stations being sold to Fox are expected to be from Tribune Media (notably KCPQ in Seattle, where Sinclair already owns KOMO-TV), many of which were previously owned by Fox. A sale to Fox would make WPGH-TV the third O&O station in the Pittsburgh market alongside KDKA-TV and WPCW. It was later reported that sister station WPNT might be included in the deal as well. On May 9, 2018, Sinclair announced that seven Fox affiliates would"} +{"qid": "test1503", "pid": "3060953", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "WUTV\nof its Fox affiliates directly to Fox Television Stations. The deal would see between six and ten Fox affiliates owned by Sinclair and Tribune (all in markets with an NFL team) become Fox owned-and-operated stations. It is not known if WUTV will be one of the stations sold, although the stations being sold to Fox are expected to be from Tribune Media (notably KCPQ in Seattle, where Sinclair already owns KOMO-TV), many of which were previously owned by Fox. A sale to Fox would make WUTV Buffalo's first Big Four network O&O since WBUF-TV (channel 17, now PBS member WNED-TV),"} +{"qid": "test1503", "pid": "6413648", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "\"Fisher Communications\"\nFisher Communications Fisher Communications was a media company in the United States. Based in Seattle, Washington, the company primarily owned a number of radio and television stations in the Western United States. It was the last company in the Seattle area to own a local TV station before being acquired by Sinclair Broadcast Group. Fisher was acquired the same year KOMO-TV's competitor KING-TV's owner, Belo, was acquired by Gannett Company. Fisher Companies, Inc.'s Fisher Communications by 1998 owned 25 radio stations and 2 TV stations. Fisher Companies also owned a flour milling and food distribution company and real estate development"} +{"qid": "test1503", "pid": "6413652", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "\"Fisher Communications\"\nPST on June 10. Fisher Communications Fisher Communications was a media company in the United States. Based in Seattle, Washington, the company primarily owned a number of radio and television stations in the Western United States. It was the last company in the Seattle area to own a local TV station before being acquired by Sinclair Broadcast Group. Fisher was acquired the same year KOMO-TV's competitor KING-TV's owner, Belo, was acquired by Gannett Company. Fisher Companies, Inc.'s Fisher Communications by 1998 owned 25 radio stations and 2 TV stations. Fisher Companies also owned a flour milling and food distribution company"} +{"qid": "test1503", "pid": "4424059", "query": "what stations in seattle are owned by sinclair", "answer": "KUNS-TV", "passage": "\"Armstrong Williams\"\nthe license of KVCW; KVCW and KSNV themselves remain under Sinclair ownership. The transaction was finalized on October 30. Howard Stirk Holdings revealed in its January 2015 application to purchase Las Vegas station KVMY that it again planned to acquire the WLYH-TV license from Nexstar Broadcasting Group. The sale was completed on November 12, 2015. These transactions made Williams the largest African-American owner of television stations in the United States. On April 24, 2018, Sinclair announced that as part of its merger with Tribune Media, Howard Stirk Holdings would have acquired Sinclair-owned KUNS-TV in Seattle and KMYU in St. George,"} +{"qid": "test1503", "pid": "4966165", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "KUNS-TV\nKUNS-TV KUNS-TV, virtual channel 51 (UHF digital channel 50), is a Univision-affiliated television station serving Seattle and Tacoma, Washington, United States that is licensed to Bellevue. The station is owned by the Sinclair Broadcast Group, as part of a duopoly with Seattle-licensed ABC affiliate KOMO-TV (channel 4). The two stations share studios and offices with sister radio stations KOMO (1000 AM and 97.7 FM), KVI (570 AM), and KPLZ-FM (101.5 MHz) within KOMO Plaza (formerly Fisher Plaza) in the Lower Queen Anne section of Seattle, directly across the street from the Space Needle. KUNS-TV's transmitter is located on Queen Anne"} +{"qid": "test1503", "pid": "11079399", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "KOMO-FM\nKOMO-FM KOMO-FM (97.7 FM) is a radio station simulcasting the all-news radio format of Seattle, Washington's KOMO (1000). Licensed to Oakville, Washington, United States, it effectively serves as a full-power translator station serving the southern portion of the Olympic Peninsula. The station is currently owned by South Sound Broadcasting, but is programmed and managed via a local marketing agreement by KOMO Radio's owner, Sinclair Broadcast Group. In June 2017 the outright sale of the station to Sinclair for $6.75 million was announced; the sale is pending FCC approval. The station's studios and offices are co-located with television partner KOMO-TV within"} +{"qid": "test1503", "pid": "3299343", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "KCPQ\nthe FCC on November 20, 2014. On May 8, 2017, Sinclair Broadcast Group—which has owned ABC affiliate KOMO-TV (channel 4) and Univision affiliate KUNS-TV (channel 51) since it acquired the duopoly from Seattle-based Fisher Communications in 2013—entered into an agreement to acquire Tribune Media for $3.9 billion, plus the assumption of $2.7 billion in debt held by Tribune. As KOMO and KCPQ rank among the four highest-rated stations in the Seattle−Tacoma market in total day viewership and broadcasters are not currently allowed to legally own more than two full-power television stations in a single market, it is likely that the"} +{"qid": "test1503", "pid": "3566467", "query": "what stations in seattle are owned by sinclair", "answer": "KOMO-TV", "passage": "\"KOMO (AM)\"\nan implicit promotion of KOMO-TV. The radio station instead promotes itself as \"\"AM 1000\"\" in ads on KIRO-TV and KING-TV. Some such ads make tongue-in-cheek references to the restriction. KOMO (AM) KOMO (1000 kHz) is a commercial AM radio station licensed to Seattle, Washington and serving the Seattle metropolitan area. Owned by the Sinclair Broadcast Group, the station primarily airs an all-news radio format. It is the local affiliate for ABC News Radio and identifies itself as \"\"KOMO News 1000 AM and 97.7 FM.\"\" KOMO is a clear-channel Class A station, broadcasting at 50,000 watts, the maximum power for American"} +{"qid": "test1508", "pid": "2671513", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn Belt\"\nVice President Henry A. Wallace, a pioneer of hybrid seed, declared that the Corn Belt has developed the \"\"most productive agricultural civilization the world has ever seen\"\". Most corn grown today is fed to livestock, especially hogs and poultry. In recent decades soybeans have grown in importance. The U.S. produces 40% of the world crop. By 1950, 99% of corn has been grown from hybrids. In 1997, the USEPA published its report on United States' ecoregions, in part based on \"\"land use\"\". Its \"\"Level III\"\" region classification contains three contiguous \"\"Corn Belt\"\" regions, Western (47), Central (54), and Eastern (55),"} +{"qid": "test1508", "pid": "17340605", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn production in the United States\"\nwas undertaken by Meriwether Lewis in 1804, the immigrant settlers had already spread its growth in many parts of the country due to its suitability in varying climatic and soil conditions. Once the suitability of land in the central part of the country, the Midwestern United States, was scientifically established by Lewis and Clark, settlers moved to the area in large numbers, and started reaping large corn crops. Over the centuries, the crop varieties underwent changes to get better yields, while farming methods were improved. As a result, the fertile belt soon came to be known as \"\"the Corn Belt\"\"."} +{"qid": "test1508", "pid": "991673", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Midwestern United States\"\nstates were Iowa, Illinois, Nebraska, and Minnesota, together accounting for more than half of the corn grown in the United States. The Corn Belt also sometimes is defined to include parts of South Dakota, North Dakota, Wisconsin, and Kentucky. The region is characterized by relatively level land and deep, fertile soils, high in organic matter. Former Vice President Henry A. Wallace, a pioneer of hybrid seeds, declared in 1956 that the Corn Belt developed the \"\"most productive agricultural civilization the world has ever seen\"\". Today, the U.S. produces 40 percent of the world crop. Iowa produces the largest corn crop"} +{"qid": "test1508", "pid": "2671511", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn Belt\"\nCorn Belt The Corn Belt is a region of the Midwestern United States that, since the 1850s, has dominated corn production in the United States. More generally, the concept of the \"\"Corn Belt\"\" connotes the area of the Midwest dominated by farming and agriculture. There is lack of consensus regarding the constituents of the Corn Belt, although it often includes: Iowa, Illinois, Indiana, southern Michigan, western Ohio, eastern Nebraska, eastern Kansas, southern Minnesota, and parts of Missouri. It also sometimes includes: South Dakota, North Dakota, all of Ohio, Wisconsin, all of Michigan, and Kentucky. The region is characterized by level"} +{"qid": "test1508", "pid": "2671514", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn Belt\"\nstretching from Indiana to eastern Nebraska. Corn Belt The Corn Belt is a region of the Midwestern United States that, since the 1850s, has dominated corn production in the United States. More generally, the concept of the \"\"Corn Belt\"\" connotes the area of the Midwest dominated by farming and agriculture. There is lack of consensus regarding the constituents of the Corn Belt, although it often includes: Iowa, Illinois, Indiana, southern Michigan, western Ohio, eastern Nebraska, eastern Kansas, southern Minnesota, and parts of Missouri. It also sometimes includes: South Dakota, North Dakota, all of Ohio, Wisconsin, all of Michigan, and Kentucky."} +{"qid": "test1508", "pid": "10365918", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn Belt derecho\"\nCorn Belt derecho The Corn Belt derecho was a progressive derecho which affected a large area of the central United States on June 29, 1998. In the morning, thunderstorms, including a supercell, developed over South Dakota and tracked into central Iowa. As the thunderstorms reached central Iowa, a strong rear-inflow jet developed which caused the thunderstorm to take on a different characteristic, becoming a derecho. It traveled more than 600 miles in about ten hours, causing more than $125 million worth of widespread damage destruction, especially to crops, and was responsible for power outages to nearly a half a million"} +{"qid": "test1508", "pid": "10365925", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn Belt derecho\"\none person and injured 174. Copy from the above referenced website. Corn Belt derecho The Corn Belt derecho was a progressive derecho which affected a large area of the central United States on June 29, 1998. In the morning, thunderstorms, including a supercell, developed over South Dakota and tracked into central Iowa. As the thunderstorms reached central Iowa, a strong rear-inflow jet developed which caused the thunderstorm to take on a different characteristic, becoming a derecho. It traveled more than 600 miles in about ten hours, causing more than $125 million worth of widespread damage destruction, especially to crops, and"} +{"qid": "test1508", "pid": "991672", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Midwestern United States\"\nnetworks which place extension agents in each state. Iowa State University became the nation's first designated land-grant institution when the Iowa Legislature accepted the provisions of the 1862 Morrill Act on September 11, 1862, making Iowa the first state in the nation to do so. The Corn Belt is a region of the Midwest where corn has, since the 1850s, been the predominant crop, replacing the native tall grasses. The \"\"Corn Belt\"\" region is defined typically to include Iowa, Illinois, Indiana, southern Michigan, western Ohio, eastern Nebraska, eastern Kansas, southern Minnesota, and parts of Missouri. , the top four corn-producing"} +{"qid": "test1508", "pid": "190474", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Primary sector of the economy\"\ncommon in countries in Africa than in Japan. Mining in 19th-century South Wales provides a case study of how an economy can come to rely on one form of activity. In developed countries the primary industry has become more technologically advanced, for instance the mechanization of farming as opposed to hand picking and planting. In more developed countries, additional capital is invested in primary means of production. As an example, in the United States' corn belt, combine harvesters pick the corn, and sprayers spray large amounts of insecticides, herbicides and fungicides, producing a higher yield than is possible using less"} +{"qid": "test1508", "pid": "10077884", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "Farmworker\nUnited States has rich, fertile soil, and so it produces corn, soybeans, cattle, hogs, and dairy products and has become known as the Corn Belt of America. In contrast, agriculture in California’s Mediterranean and moderate climate produces more than half of the nation's fruits, vegetables, and nuts, which require hand-harvesting and a large labor force. Over the last century the amount of farmland in production has remained relatively steady, but the number of operating farms has continually dropped, signifying a consolidation of farm enterprises. Around the 1930s hard economic times hit the country with the Great Depression and the Dust"} +{"qid": "test1508", "pid": "17340606", "query": "the world famous corn belt is in which country", "answer": "United States", "passage": "\"Corn production in the United States\"\nHybrid cropping techniques were widely practiced from the late 1880s, and the hybrid corn varieties developed with cross and re-cross breeding techniques developed by university research. This ushered a new age of agriculture. The 1% area devoted to hybrid varieties in 1934 rose to 78% in the 1940s and continued to rise thereafter. In the 1950s, Henry A. Wallace, former Vice President and former Secretary of Agriculture, and an early developer of hybrid seeds, observed that \"\"the Corn Belt had developed into the most productive agricultural civilization the world has ever seen\"\". This trend has continued and now the corn"} +{"qid": "test1509", "pid": "5385141", "query": "who is the ceo of crate and barrel", "answer": "Neela Montgomery", "passage": "\"Crate & Barrel\"\nin July 2014. While a replacement was sought, Otto Group asked Segal to return as a consultant to bring back the original company culture and values in an attempt to increase sales and employee productivity and morale. Doug Diemoz, formerly with competitors Restoration Hardware and Williams-Sonoma, became CEO of Crate & Barrel on August 1, 2015. Doug Diemoz departed April 2017. It was announced Neela Montgomery would assume his role. Crate & Barrel offers a variety of \"\"upmarket\"\" housewares, furniture, and related merchandise. These are displayed in the \"\"vignette\"\" style, where items are grouped together as they might appear in"} +{"qid": "test1510", "pid": "1488850", "query": "who were the the continent of the americas named after logically", "answer": "Amerigo Vespucci", "passage": "\"Naming of the Americas\"\nNaming of the Americas The naming of the Americas, or America occurred shortly after Christopher Columbus's voyage to the Americas in 1492. It is generally accepted that the name derives from Amerigo Vespucci, the Italian explorer, who explored the new continents in the following years. However, some have suggested other explanations, including being named after a mountain range in Nicaragua, or after Richard Amerike of Bristol. In modern English, North and South America are generally considered separate continents, and taken together are called \"\"the Americas\"\" in the plural, parallel to similar situations such as the Carolinas. When conceived as a"} +{"qid": "test1510", "pid": "12539134", "query": "who were the the continent of the americas named after logically", "answer": "Amerigo Vespucci", "passage": "Continent\nIntroductio\"\", Waldseemüller noted that the earth is divided into four parts, Europe, Asia, Africa and the fourth part, which he named \"\"America\"\" after Amerigo Vespucci's first name. On the map, the word \"\"America\"\" was placed on part of South America. From the 16th century the English noun \"\"continent\"\" was derived from the term \"\"continent land\"\", meaning continuous or connected land and translated from the Latin \"\"terra continens\"\". The noun was used to mean \"\"a connected or continuous tract of land\"\" or mainland. It was not applied only to very large areas of land—in the 17th century, references were made to"} +{"qid": "test1510", "pid": "1488863", "query": "who were the the continent of the americas named after logically", "answer": "Amerigo Vespucci", "passage": "\"Naming of the Americas\"\nbeen named for him rather than for Amerigo Vespucci. It is not widely accepted. Naming the continent after a European colonizer is seen by some civil society groups as problematic. In 1977, the World Council of Indigenous Peoples (Consejo Mundial de Pueblos Indígenas) proposed using the term Abya Yala instead of \"\"America\"\" when referring to the continent. There are also names in other indigenous languages such as Ixachilan and Runa Pacha. Some scholars have picked up the term with a reference to the illegitimacy of colonialism. Naming of the Americas The naming of the Americas, or America occurred shortly after"} +{"qid": "test1510", "pid": "190054", "query": "who were the the continent of the americas named after logically", "answer": "Amerigo Vespucci", "passage": "Italy\nof the North American continent in 1497; Amerigo Vespucci, who first demonstrated in about 1502 that the New World was not Asia as initially conjectured, but a fourth continent previously unknown to people of the Old World (America is named after him); and Giovanni da Verrazzano, renowned as the first European to explore the Atlantic coast of North America between Florida and New Brunswick in 1524. Furthermore, the Papal States was involved in resolving disputes between competing colonial powers. The only attempt by an Italian state to colonise the Americas was taken into consideration by Ferdinando I de' Medici, Grand"} +{"qid": "test1510", "pid": "21628", "query": "who were the the continent of the americas named after logically", "answer": "Amerigo Vespucci", "passage": "\"Amerigo Vespucci\"\nview. The book accompanying the map stated: \"\"I do not see what right any one would have to object to calling this part, after Americus who discovered it and who is a man of intelligence, Amerige, that is, the Land of Americus, or America: since both Europa and Asia got their names from women\"\". It is possible that Vespucci was not aware that Waldseemüller had named the continent after him. The two disputed letters claim that Vespucci made four voyages to America, while at most two can be verified from other sources. At the moment, there is a dispute between"} +{"qid": "test1510", "pid": "5016", "query": "who were the the continent of the americas named after logically", "answer": "Amerigo Vespucci", "passage": "\"American (word)\"\nthe continents. For the country there is the term '. Thus, a citizen of the United States is an ', whereas an ' is an inhabitant of the Americas. In Hungarian the term amerikai (American) refers to a person or a thing from the United States. The name \"\"America\"\" was coined by Martin Waldseemüller from \"\"Americus Vespucius\"\", the Latinized version of the name of Amerigo Vespucci (1454–1512), the Italian explorer who mapped South America's east coast and the Caribbean Sea in the early 16th century. Later, Vespucci's published letters were the basis of Waldseemüller's 1507 map, which is the first"} +{"qid": "test1511", "pid": "1194503", "query": "towns on the border of texas and oklahoma", "answer": "Texhoma", "passage": "\"Texhoma, Oklahoma\"\nTexhoma, Oklahoma Texhoma is a town in Texas County, Oklahoma, United States. The population was 926 at the 2010 census. Texhoma is a divided city with the Texas–Oklahoma state border separating the town from Texhoma, Texas. The name of the town is a portmanteau of Texas and Oklahoma. Founded around the Rock Island Railroad laying tracks through the area, much of the town's local economy is from ranching and livestock. Before No Man's Land was opened for settlers in 1890, the area now known as the Oklahoma Panhandle was sparsely settled ranchland. After the opening some of the land was"} +{"qid": "test1511", "pid": "1194505", "query": "towns on the border of texas and oklahoma", "answer": "Texhoma", "passage": "\"Texhoma, Oklahoma\"\nfar north and west as present Boise City, and south into the Texas Panhandle to the present town of Gruver. The land was quickly homesteaded and proved to be a rich agricultural area. Texhoma is located at (36.504421, -101.786517). According to the United States Census Bureau, the town has a total area of , all of it land. Texhoma is most known for the fact that it is paired with another Texhoma across the border in Texas. Tourists come for the border sign that separates Oklahoma and Texas, and the sign is very iconic. As of the census of 2000,"} +{"qid": "test1511", "pid": "1194509", "query": "towns on the border of texas and oklahoma", "answer": "Texhoma", "passage": "\"Texhoma, Oklahoma\"\ngrade students are served by the Texhoma Independent School District in Texas, while fifth through twelfth grade students by Texhoma Public Schools in Oklahoma. It is the only city in Oklahoma where graduating students can attend either Oklahoma or Texas public universities at the in-state tuition rates for either. Texhoma High School is housed in a pair of monolithic dome structures. Registered Historic Places in the Texhoma area: Texhoma, Oklahoma Texhoma is a town in Texas County, Oklahoma, United States. The population was 926 at the 2010 census. Texhoma is a divided city with the Texas–Oklahoma state border separating the"} +{"qid": "test1514", "pid": "12711878", "query": "who killed missy in a bend in the road", "answer": "Brian", "passage": "\"A Bend in the Road\"\nnot able to have children which was the reason why her marriage didn't work. Due to her kindness she offered to tutor Jonah after school. She loved Miles and enjoyed spending times with Jonah. After she discovered that her brother, Brian, was Missy's killer she was torn apart. He is a sweet seven-year-old boy who loves to spend time with his friends. Since he was really young when his mother died he does not really understand what happened. The only thing he knows is that his mom was never coming back. After his mother died he started having nightmares from"} +{"qid": "test1516", "pid": "7495252", "query": "who is the designer in devil wears prada", "answer": "Valentino Garavani", "passage": "\"The Devil Wears Prada (film)\"\nreviewing or even mentioning the book in their pages. Wintour's spokespeople deny the claim, but costume designer Patricia Field says many designers told her they did not want to risk Wintour's wrath. Only Valentino Garavani, who had designed the black evening gown Streep wears in the museum benefit scene, chose to make an appearance. Coincidentally, he was in New York during production and Finerman dared Field, an acquaintance, to ask him personally. Much to her surprise, he accepted. Other cameos of note include Heidi Klum as herself and Weisberger as the twins' nanny. Streep's daughter's film debut as a barista"} +{"qid": "test1517", "pid": "3732925", "query": "which songs did liam write as you were", "answer": "For What It's Worth", "passage": "\"Paul Arthurs\"\nTheir EP was released in May 2014 under Cherry Red Records. The EP includes four tracks and is available on vinyl and digital download. Beady Eye In 2013 and 2014 Gem Archer left the band Beady Eye twice due to a head injury. Gem was replaced by Arthurs and for the first time in 15 years Liam and Paul stood together on stage. Liam Gallagher Paul also joined Liam Gallagher to play rhythm guitar on the song \"\"Bold\"\" and keyboard on \"\"For What It's Worth\"\" on Liam's solo album \"\"As You Were\"\". He joined the band on their debut performance"} +{"qid": "test1518", "pid": "19862360", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"2017 English cricket season\"\nVipers in the final. The Minor Counties competed for the 2017 Minor Counties Championship and MCCA Knockout Trophy, both of which were won by Berkshire County Cricket Club. Club and recreational cricket was played throughout both countries. The 2017 ICC Champions Trophy was held in England and Wales in June. Eight international men's teams competed in the tournament which was won by Pakistan who defeated India in the final at The Oval. Groups stage matches were played at The Oval, Edgbaston and at Sophia Gardens in Cardiff. The 2017 Women's Cricket World Cup was held in England in June and"} +{"qid": "test1518", "pid": "4758592", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"Culture of Pakistan\"\nwon the Hockey World Cup a record four times. The Pakistan national cricket team won the Cricket World Cup in 1992, were runners-up in 1999, and co-hosted the games in 1987 and 1996. Additionally, they have also won the ICC World Twenty20 in 2009 and were runners-up in 2007. The team has also won the Austral-Asia Cup in 1986, 1990, and 1994. In 2017, Pakistan won the 2017 ICC Champions Trophy against their rival India. At the international level, Pakistan has competed many times at the Summer Olympics in field hockey, boxing, athletics, swimming, and shooting. Hockey is the sport"} +{"qid": "test1518", "pid": "19862358", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"2017 English cricket season\"\n2017 English cricket season The 2017 English cricket season was the 118th in which the County Championship had been an official competition. The season, which began on 28 March and ended on 29 September, featured two global one-day competitions played in England and Wales, the 2017 ICC Champions Trophy and the 2017 Women's Cricket World Cup. England Women's team won the World Cup, defeating India Women in the final at Lord's. Pakistan beat India in the Champions Trophy final. The season included mens international tours of England by South Africa and West Indies. England played four Test matches against South"} +{"qid": "test1518", "pid": "10623502", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"History of the Pakistani cricket team\"\nCup (1): 1992 ICC World Twenty20 (1): 2009 ICC Champions Trophy (1): 2017 ICC ASIA CUP (2) History of the Pakistani cricket team The Pakistan cricket team made its Test cricket debut in 1952 and has since become one of the most successful teams in modern cricket. The team reached the semi-finals of the 1979,1983, 1987 and 2011 World Cups, and finals in 1992 and 1999, and won the 1992 ICC Cricket World Cup by defeating England in the final with the captaincy of Imran Khan They are one of the most successful T20 sides but faced a big failure"} +{"qid": "test1518", "pid": "7235625", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"Sport in Pakistan\"\nfrom a young age. Pakistan has won international cricket events, which include the 1992 Cricket World Cup, the 2009 ICC World Twenty20 and the 2017 ICC Champions Trophy besides finishing as runner-up in the 1999 Cricket World Cup and the 2007 ICC World Twenty20. Pakistan's cricket teams take part in domestic competitions such as the Quaid-e-Azam Trophy, the Patron's Trophy, ABN-AMRO Twenty-20 Cup, and the ABN-AMRO Champions Trophy. International Test and one-day matches are played between the Pakistan national cricket team and foreign opponents regularly. Women's cricket is also very popular, with Kiran Baluch holding the current record of the"} +{"qid": "test1518", "pid": "3342045", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"Pakistan national cricket team\"\n1996 World Cups, with the 1996 final being hosted at Gaddafi Stadium in Lahore. The team has also played 139 Twenty20 Internationals, the most of any team, winning 89 losing 47 and tying 3. Pakistan won the 2009 ICC World Twenty20 and were runners-up in the inaugural tournament in 2007. Pakistan also won the 2017 ICC Champions Trophy for the first time, defeating India. Pakistan has the distinct achievement of having won each of the major ICC international cricket tournaments: ICC Cricket World Cup, ICC World Twenty20, and ICC Champions Trophy; as well as the ICC Test Championship. Pakistan has"} +{"qid": "test1518", "pid": "19808979", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"2017 Women's Cricket World Cup Qualifier\"\n2017 Women's Cricket World Cup Qualifier The 2017 ICC Women's Cricket World Cup Qualifier was an international women's cricket tournament that was held in Colombo, Sri Lanka, from 7 to 21 February 2017. It was the final stage of the qualification process for the 2017 World Cup in England. The tournament was the fourth edition of the World Cup Qualifier, and the first to be held in Sri Lanka. The final was contested between India and South Africa, with India winning by 1 wicket. Along with the two finalists, both Sri Lanka and Pakistan have qualified for the 2017 Women's"} +{"qid": "test1518", "pid": "1540348", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"1996 Cricket World Cup\"\n1996 Cricket World Cup The 1996 Cricket World Cup, also called the Wills World Cup 1996 after its official sponsors, ITC's Wills brand, was the sixth Cricket World Cup, organised by the International Cricket Council (ICC). It was the second World Cup to be hosted by Pakistan and India, and for the first time by Sri Lanka. The tournament was won by Sri Lanka, who defeated Australia in the final at the Gaddafi Stadium in Lahore, Punjab. The Wills World Cup was played in India, Pakistan and Sri Lanka. Controversy dogged the tournament before any games were played; Australia and"} +{"qid": "test1518", "pid": "1527953", "query": "who won the world cup in cricket 2017", "answer": "Pakistan", "passage": "\"1999 Cricket World Cup\"\n1999 Cricket World Cup The 1999 Cricket World Cup (officially known as ICC Cricket World Cup '99) was the seventh edition of the Cricket World Cup, organised by the International Cricket Council (ICC). It was hosted primarily by England, with some games being played in Scotland, Ireland, Wales and the Netherlands. The tournament was won by Australia, who beat Pakistan by 8 wickets in the final at Lord's Cricket Ground in London. New Zealand and South Africa were the other semi-finalists. The tournament featured 12 teams, playing a total of 42 matches. In the group stage, the teams were divided"} +{"qid": "test1519", "pid": "4051156", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Chris Carmack\"\nregular for season 2. In 2018, Carmack was cast onto the ABC hit medical drama Grey's Anatomy, currently playing \"\"Ortho God\"\", Dr. Atticus \"\"Link\"\" Lincoln. Carmack announced his engagement to Erin Slaver on March 2, 2016. They married in October 2018. The couple welcomed their daughter on August 30, 2016. \"\"Nashville, Season 6: Episode 1\"\" (2018) \"\"Nashville, Season 6: Episode 2\"\" (2018) \"\"Nashville, Season 6: Episode 4\"\" (2018) \"\"Nashville, Season 6: Episode 5\"\" (2018) \"\"Nashville, Season 6: Episode 6\"\" (2018) \"\"Nashville, Season 6: Episode 7\"\" (2018) \"\"Nashville, Season 6: Episode 8\"\" (2018) \"\"Nashville, Season 6: Episode 9\"\" (2018) \"\"Nashville, Season"} +{"qid": "test1519", "pid": "16347875", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (2012 TV series)\"\nreleased on May 12, 2015. \"\"\"\" was released on December 4, 2015. \"\"Nashville: On the Record 3 (Live)\"\", featuring performances from many of the cast in concert, was released on December 16, 2015 to digital download. \"\"\"\" was released on May 13, 2016 \"\"\"\" was released on March 10, 2017. \"\"\"\" was released on June 1, 2017. \"\"\"\" was released on August 10, 2017. Starting with season six, an EP was released each week digitally containing that week's songs. \"\"The Music of Nashville: Season 6, Volume 1\"\" was released on February 23, 2018. \"\"The Music of Nashville: Season 6, Volume"} +{"qid": "test1519", "pid": "20327545", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (season 6)\"\nNashville (season 6) The sixth and final season of the American television musical drama series \"\"Nashville\"\", created by Callie Khouri, premiered on January 4, 2018, on CMT. The season consisted of 16 episodes. As with seasons three through five, the episodes are named after songs from a variety of country artists, including Miranda Lambert (\"\"New Strings\"\"), George Jones (\"\"Sometimes You Just Can't Win\"\"), Tanya Tucker (\"\"Two Sparrows in a Hurricane\"\"), and Hank Williams (\"\"Beyond the Sunset\"\"). In April 2017, it was announced that the series had been renewed for a sixth season, with a 16-episode order. In an interview following"} +{"qid": "test1519", "pid": "19708969", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (season 5)\"\nNashville (season 5) The fifth season of the American television musical drama series \"\"Nashville\"\", created by Callie Khouri, it premiered on December 15, 2016, on CMT, the first on the network. The show features an ensemble cast with Connie Britton and Hayden Panettiere in the leading roles as two country music superstars, Rayna Jaymes and Juliette Barnes. The season consisted of 22 episodes that were aired in two parts of eleven episodes each, with Britton appearing in the first part only. As with seasons three and four, the episodes are named after songs from a variety of country artists, including"} +{"qid": "test1519", "pid": "4051157", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Chris Carmack\"\n6: Episode 10\"\" (2018) \"\"Nashville, Season 6: Episode 16\"\" (2018) \"\"\"\" (2013) \"\"\"\" (2013) \"\"\"\" (2014) Nashville: On the Record (2014) \"\"\"\" (2014) Nashville: On the Record Volume 2 (2015) \"\"\"\" (2015) \"\"\"\" (2015) Nashville: On the Record Volume 3 (2016) \"\"\"\" (2016) \"\"\"\" (2017) \"\"\"\" (2017) \"\"\"\" (2017) \"\"The Music of Nashville: Season 6, Volume 1\"\" (2018) \"\"The Music of Nashville: Season 6, Volume 2\"\" (2018) Chris Carmack James Christopher Carmack (born December 22, 1980) is an American actor, singer and former fashion model, known for his roles in two popular television shows—the 2003 teen drama series \"\"The O.C.\"\","} +{"qid": "test1519", "pid": "18836225", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (season 4)\"\nNashville (season 4) The fourth season of the American television musical drama series \"\"Nashville\"\", created by Callie Khouri, premiered on September 23, 2015, on ABC and concluded on May 25, 2016. The show features an ensemble cast with Connie Britton and Hayden Panettiere in the leading roles as two country music superstars, Rayna Jaymes and Juliette Barnes. The season consisted of 21 episodes and was the last season to air on ABC before the series moved to CMT As with season three, the episodes are named after songs from a variety of country artists, including Lucinda Williams (\"\"Can't Let Go\"\"),"} +{"qid": "test1519", "pid": "10244003", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Lily Mariye\"\nof the script (Best Short Film Award - Moondance International Film Festival, Best Screenplay Award - Brussels Independent Film Festival). The short film version of \"\"The Shangri-la Cafe\"\" was included on a DVD release of AFI shorts entitled \"\"Celebrating AFI\"\". In 2012 Mariye was chosen to participate in the Disney/ABC/DGA Directing Program. In 2016 she directed Episode 14, Season 4 of ABC's \"\"Nashville (season 4)\"\" and Episode 4 after \"\"Nashville (season 5)\"\" moved to CMT. She also directed an episode of Season 2 of Amazon's \"\"Just Add Magic\"\" and episode 17, Season 4 of Freeform's \"\"The Fosters.\"\" In 2017 she"} +{"qid": "test1519", "pid": "19708973", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (season 5)\"\nAubrey Peeples were announced to not be returning to the series in June 2016, although Chase did make a guest appearance. Nashville (season 5) The fifth season of the American television musical drama series \"\"Nashville\"\", created by Callie Khouri, it premiered on December 15, 2016, on CMT, the first on the network. The show features an ensemble cast with Connie Britton and Hayden Panettiere in the leading roles as two country music superstars, Rayna Jaymes and Juliette Barnes. The season consisted of 22 episodes that were aired in two parts of eleven episodes each, with Britton appearing in the"} +{"qid": "test1519", "pid": "18836227", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (season 4)\"\n2015. The third episode was shot on August 7, 2015. Filming for Season 4 was completed on April 4, 2016. The third season was the last to feature Eric Close as a series regular; he will no longer appear in the show as a main cast member. On July 25, 2015 Riley Smith was cast as Markus Keen, for a season long arc. Keen will be the newest Highway 65 artist, and Rayna promises to help him strip down his sound. When he realizes how much the label needs his album to be a hit, he begins to control Rayna."} +{"qid": "test1519", "pid": "18836228", "query": "how many episodes are there in season six of nashville", "answer": "16", "passage": "\"Nashville (season 4)\"\nOn October 13, 2015, it was announced that Hayden Panettiere would be temporarily leaving the series to receive treatment for post-partum depression; at the time she had completed seven episodes. Panettiere returned to the set on January 8, 2016 to begin work on the fourteenth episode. Nashville (season 4) The fourth season of the American television musical drama series \"\"Nashville\"\", created by Callie Khouri, premiered on September 23, 2015, on ABC and concluded on May 25, 2016. The show features an ensemble cast with Connie Britton and Hayden Panettiere in the leading roles as two country music superstars, Rayna"} +{"qid": "test152", "pid": "2907501", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"Nellie Fox\"\nscored the only run when Sherm Lollar hit into a double play in the fourth inning (this was only the second time that a World Series game did not have an RBI). It was Fox's only postseason experience, and the White Sox did not make it back to the World Series until they swept the 2005 World Series from the Houston Astros. Fox played his final two seasons (1964–65) with the Houston Colt .45s and Astros. Joe Morgan later said that he looked up to Fox's example as a rookie with the Astros; Fox and Morgan were both diminutive second"} +{"qid": "test152", "pid": "4169751", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"1982 World Series\"\nThat has happened three times before, taking the 19th Century contests into account: The Brooklyn Dodgers of 1889 and 1890, the Cardinals, who won the 1886 Series when they were in the American Association, and the Houston Astros, who played in both the 2005 World Series against the Chicago White Sox as a National League team, and the 2017 World Series against the Los Angeles Dodgers as an American League team. This also makes this one of two World Series in the modern era (1903–present) that it is not possible to have a rematch, the other being the Astros and"} +{"qid": "test152", "pid": "10180969", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"History of the Houston Astros\"\nand had an ERA of 1.29, won the NLCS MVP. The Astros' opponent in their first ever World Series was the Chicago White Sox. Games 1 and 2 were held at U.S. Cellular Field in Chicago, while Games 3 and 4 were played at Minute Maid Park. Game 3 also marked the first Fall Classic game to be played in the state of Texas, and was the longest game in World Series history, lasting 14 innings. Early conventional wisdom held that the White Sox were a slight favorite, but that Houston would be an even match. However, the Astros' situational"} +{"qid": "test152", "pid": "20401143", "query": "who did the astros play last time they were in the world series", "answer": "Los Angeles Dodgers", "passage": "\"2018 Los Angeles Dodgers season\"\nColorado and the most ever at Dodger Stadium. The Houston Astros came to town next, for a rematch of the two teams that played in the 2017 World Series. Justin Verlander struck out 14 batters in 7 innings while only allowing four hits as the Astros took the opener 2–1. The Astros scored four times in the sixth and seven times in the eighth to route the Dodgers 14–0 in the following game. RBI doubles by Bellinger and Dozier helped the Dodgers salvage the last game of the series, 3–2. The Dodgers traveled to Oakland Coliseum to play the Oakland"} +{"qid": "test152", "pid": "8326188", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"Drayton McLane\"\nthe National League in winning percentage (.543), but never won a World Series. The Astros, originally the Colt 45's, were founded in 1962. They won their first World Series in 2017 (2017 World Series). Up until 2017, the Astros 2005 season was the most successful season on the field for the Houston franchise. Winning the \"\"National League Pennant\"\" to advance to the World Series, Houston hosted the first World Series game ever played in the State of Texas. However, the Astros, who had rallied from a losing record earlier in the season, were swept by the Chicago White Sox in"} +{"qid": "test152", "pid": "4200548", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"2005 World Series\"\nRadio was the nationwide radio broadcaster, as it had been since 1998. Jon Miller and Joe Morgan provided the play-by-play and analysis. Locally, KTRH-AM and WMVP were the primary carriers for the World Series in the Houston and Chicago markets. For KTRH long time Astros voice Milo Hamilton provided play-by-play while John Rooney called the games for the White Sox. Game 4 was Rooney's last call after seventeen years as the radio voice of the White Sox, as he left to take the same position with the St. Louis Cardinals. The Cardinals proceeded to win the 2006 World Series, making"} +{"qid": "test152", "pid": "11021289", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"2005 Houston Astros season\"\nand the first 1-0 game in any Series game since Game 5 of the 1996 World Series when the New York Yankees shut out the Braves in the last game ever played at Atlanta–Fulton County Stadium. 2005 World Series (4-0): Chicago White Sox (A.L.) over Houston Astros (N.L.) 2005 Houston Astros season The Houston Astros' 2005 season was a season in which the Houston Astros qualified for the postseason for the second consecutive season. The Astros overcame a sluggish 15–30 start to claim the wild card playoff spot, and would go on to win the National League pennant to advance"} +{"qid": "test152", "pid": "4200521", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"2005 World Series\"\nChicago by virtue of the AL's 7–5 victory over the NL in the 2005 MLB All-Star Game. The Astros were attempting to become the fourth consecutive wild card team to win the Series, following the Anaheim Angels (2002), Florida Marlins (2003) and Boston Red Sox (2004). Both teams were attempting to overcome decades of disappointment, with a combined 132 years between the two teams without a title. The Astros were making their first Series appearance in 44 years of play, while the White Sox had waited exactly twice as long for a title, having last won the Series in 1917,"} +{"qid": "test152", "pid": "4200526", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"2005 World Series\"\nthe lead two games to one, the teams played an eighteen-inning marathon in Game 4, which was the longest (in both time and innings played) postseason game in history. In this game, Roger Clemens made only the second relief appearance of his career, and the first in postseason play. Chris Burke's walk-off home run ended the game in the bottom of the eighteenth. For the second straight year, the Astros played the St. Louis Cardinals in the League Championship Series. Like the White Sox, the Astros dropped Game 1, but were able to regroup and win Games 2–4. With the"} +{"qid": "test152", "pid": "10316342", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"History of the Chicago White Sox\"\na championship series was in the 1956 World Series between the Brooklyn Dodgers and New York Yankees, and the 1928 Yankees were the last team to win four consecutive complete games in a championship series. In fact, the last time any major league pitching staff had hurled four straight complete game victories was near the end of the 1983 regular season, when the Texas Rangers accomplished the feat. The White Sox now advanced to the World Series, where they would take on the National League champion Houston Astros. The White Sox' appearance in the World Series was bittersweet for longtime"} +{"qid": "test152", "pid": "10180970", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"History of the Houston Astros\"\nhitting continued to plague them throughout the World Series. The White Sox swept the Astros in the best-of-seven series with a run differential of only six. After losing the World Series the Astros prepared for the offseason by signing Preston Wilson and moving Lance Berkman to first base, ending the long tenure by Jeff Bagwell. The Astros resigned pitcher Roger Clemens and traded two minor league prospects to the Tampa Bay Devil Rays for left-handed hitter Aubrey Huff and cash. In August 2006, Preston Wilson said that he wasn't getting enough playing time since Luke Scott returned from AAA ball"} +{"qid": "test152", "pid": "10679652", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"2005 Chicago White Sox season\"\nSox 7, Astros 6 This game was the longest game in World Series history time wise, and tied for the longest game in World Series history according to innings. In the first World Series game played in the state of Texas, the hometown Astros got off to a good start. They jumped out to a 4-0 lead through four innings. However, in the fifth, the White Sox put up a five spot to take the lead 5-4 in a 46-pitch inning for Houston's Roy Oswalt. But, the Astros would tie up the score in the bottom of the eighth, and"} +{"qid": "test152", "pid": "4200527", "query": "who did the astros play last time they were in the world series", "answer": "White Sox", "passage": "\"2005 World Series\"\nAstros on the verge of clinching their first ever National League pennant in Game 5, Albert Pujols hit a mammoth three-run home run off Brad Lidge in the top of the ninth inning to take the lead, and subsequently stave off elimination. However, behind NLCS MVP Roy Oswalt, the Astros were able to defeat the Cards 5–1 in Game 6 and earned a trip to the World Series. This was the Astros' first World Series appearance in franchise history. Playing in their first World Series home game since 1959, the White Sox took an early lead with a home run"} +{"qid": "test1522", "pid": "2003819", "query": "what is the limit of resolution of the human eye in micrometers", "answer": "~55-75 micrometers", "passage": "\"Naked eye\"\n0.0003 radians. At a viewing distance of 16\"\" = ~ 400 mm, which is considered a normal reading distance in the USA, the smallest object resolution will be ~ 0.116 mm. For inspection purposes laboratories use a viewing distance of 200–250 mm, which gives the smallest size of the object recognizable to the naked eye of ~0.058- 0.072 mm(~55-75 micrometers). The accuracy of a measurement ranges from 0.1 to 0.3 mm and depends on the experience of the observer. The latter figure is the usual positional accuracy of faint details in maps and technical plans. A clean atmosphere is indicated"} +{"qid": "test1523", "pid": "11521526", "query": "where is the nfl game in london played", "answer": "Twickenham Stadium", "passage": "\"NFL International Series\"\nfour games in London branded as NFL London Games and one game in Mexico City branded as the NFL Mexico Game. In January 2018, it was announced that three games would be played in London that year, with two at Wembley and the other the first game at Tottenham Hotspur's new stadium. However, it was later confirmed that the opening of the new Tottenham Hotspur Stadium would be delayed and therefore all three games would be held at Wembley. Having already fulfilled the minimum three-game requirement for Twickenham Stadium in 2017, it will no longer host games. The Mexico City"} +{"qid": "test1523", "pid": "7550250", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"History of the New York Giants\"\nGiants made the playoffs for the third consecutive season. In a September game against the Eagles, they tied the NFL record for most sacks in a game by sacking Philadelphia quarterback Donovan McNabb 12 times, with Osi Umenyiora recording six of those sacks. They became the third NFL franchise to win 600 games when they defeated the Atlanta Falcons 31–10 in October. That same month, they also played in the NFL's first regular season game outside of North America, in London's Wembley Stadium, where they beat Miami 13–10. They ended the regular season 10–6 and defeated Tampa Bay 24–14 in"} +{"qid": "test1523", "pid": "4174842", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"Sport in the United Kingdom\"\nthe NFL has played at least one game each season at Wembley Stadium since 2007. Wembley has hosted multiple games in each season since 2013, and the series has since expanded to include other locations in London. Twickenham began hosting NFL games in 2016, and the primary site for London games will switch from Wembley to the new Tottenham Hotspur stadium once it opens in 2018. The NFL currently plans, with the support of the UK Government, to establish an NFL team in London. Once invented in England, bandy has been virtually unknown in the United Kingdom for most of"} +{"qid": "test1523", "pid": "11521521", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"NFL International Series\"\nthe Rams' place and agreed to play a home game in London for four seasons from 2013 through 2016. With this announcement also came news that the NFL were working to schedule a second UK game from 2013 onwards. (The Jaguars later extended their agreement with Wembley Stadium through 2020 in an agreement announced in October 2015.) In October 2012, it was announced that the Jaguars would host the San Francisco 49ers and the Minnesota Vikings would host the Pittsburgh Steelers, marking the first season with multiple games in London. The NFL played three international games for the 2014 season,"} +{"qid": "test1523", "pid": "11521508", "query": "where is the nfl game in london played", "answer": "Twickenham Stadium", "passage": "\"NFL International Series\"\nand will continue to host at least two NFL games through at least 2020; beginning in 2016, the series began expanding to more stadiums, first to Twickenham Stadium in London (2016–2017) and to Estadio Azteca in Mexico City (2016–2021) and eventually to Tottenham Hotspur Stadium in London (2019–2027), with possible future plans to expand the series to Germany and/or Canada. Prior to 2005, the NFL's primary method of promoting its game abroad was through the American Bowl, a series of preseason games played around the world, and NFL Europe, a developmental league based in Europe. The American Bowls ended in"} +{"qid": "test1523", "pid": "11521519", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"NFL International Series\"\nYork Giants at Wembley Stadium in London, England on October 28, 2007. The Giants defeated the Dolphins 13–10 in the first regular season NFL game held outside North America. The first 40,000 tickets sold out for the game in the first 90 minutes of sales. The game was aired regionally on Fox. A single game was held in London each year through 2011. Like the 2007 game, each was televised nationally in England, but only regionally in the United States. On January 20, 2012, NFL commissioner Roger Goodell confirmed that from 2012 to 2014, the St. Louis Rams would play"} +{"qid": "test1523", "pid": "9508580", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"Wembley Stadium\"\nby the NFL to strengthen the NFL fanbase in London and internationally. Future plans to have a permanent NFL team in London have been suggested. Another first was recorded in 2014 as three regular season NFL games were played at Wembley. The Oakland Raiders hosted the Miami Dolphins on 28 September at 6 pm BST, the Atlanta Falcons hosted the Detroit Lions on 26 October at 1:30 pm GMT and the Jacksonville Jaguars hosted the Dallas Cowboys on 9 November at 6 pm GMT. At 9:30 am ET, the Detroit-Atlanta game was the earliest kick off in NFL history and"} +{"qid": "test1523", "pid": "19700007", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"Expansion of major sports leagues in the United States and Canada\"\nCity between the San Francisco 49ers and Arizona Cardinals drew a crowd of over 103,000 to Azteca Stadium (a 1994 crowd of over 112,000 at Azteca Stadium is the largest to attend a pre-season game). There has been talk of expanding the International Series to Ireland, where the owner of the Pittsburgh Steelers is currently serving as US ambassador. The NFL then began its International Series, holding at least one regular-season game at Wembley Stadium in London every year since 2007. Preliminary talks to expand the NFL season with each team playing one game overseas was curtailed because the expansion"} +{"qid": "test1523", "pid": "11521520", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"NFL International Series\"\none of their eight home games each year at Wembley Stadium. However, on August 13, 2012, the team announced that they would not play the proposed games in London in 2013 and 2014, only the 2012 game against the New England Patriots that had already been scheduled. Goodell had previously proposed the use of certain regular teams in the International Series in an effort to build a fan base for those teams, raising the prospect of a permanent NFL team on the British Isles. An NFL bid to become anchor tenants of London's Olympic Stadium failed. The Jacksonville Jaguars took"} +{"qid": "test1523", "pid": "376057", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"Super Bowl\"\ndifferent stadiums, six of which no longer exist and one of which does not yet exist, either have hosted or are scheduled to host Super Bowls. The years listed in the table below are the years the game was actually played (\"\"will be played\"\") rather than what NFL season it is considered to have been. Future venues: The game has never been played in a region that lacked an NFL or AFL franchise, though London, England has occasionally been mentioned as a host city for a Super Bowl in the near future. Wembley Stadium has hosted several NFL games as"} +{"qid": "test1523", "pid": "284586", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"National Football League\"\nNFL team is based in the contiguous United States. Although no team is based in a foreign country, the Jacksonville Jaguars began playing one home game a year at Wembley Stadium in London, England, in 2013 as part of the NFL International Series. The Jaguars' agreement with Wembley was originally set to expire in 2016, but has since been extended through 2020. The Buffalo Bills played one home game every season at Rogers Centre in Toronto, Ontario, Canada, as part of the Bills Toronto Series from to . Mexico also hosted an NFL regular-season game, a 2005 game between the"} +{"qid": "test1523", "pid": "20130660", "query": "where is the nfl game in london played", "answer": "Wembley Stadium", "passage": "\"Jermaine Eluemunor\"\nJermaine Eluemunor Jermaine Eluemunor ( ; born December 13, 1994) is a British-American football guard for the Baltimore Ravens of the National Football League (NFL). He played college football at Texas A&M. Eluemunor was born to a Nigerian father and English mother in Chalk Farm, London. He attended Haverstock School. Growing up, he played rugby and cricket. He became interested in American football after watching the 2007 Miami Dolphins-New York Giants game on television. The game was played at Wembley Stadium in London as part of the NFL International Series. Eluemunor moved to the United States with his father at"} +{"qid": "test1524", "pid": "9971577", "query": "who is the secretary of state for northern ireland", "answer": "Karen Bradley", "passage": "\"Ministry of Justice (United Kingdom)\"\ndo belong from then to the Secretary of State for Northern Ireland, currently Karen Bradley. The vast majority of the Ministry of Justice's work takes place in England and Wales. The ministry has no responsibility for devolved criminal justice policy, courts, prisons or probation matters in either Scotland or Northern Ireland, though the Advocate Generals for Scotland and Northern Ireland (who hold their own, separate offices) are subordinate to the Justice Secretary. Within the jurisdiction of England and Wales, the Ministry of Justice is responsible for ensuring that all suspected offenders (including children and young people) are appropriately dealt with"} +{"qid": "test1525", "pid": "8792343", "query": "when did they stop making jello pudding pops", "answer": "the 90s", "passage": "\"Pudding Pop\"\nPudding Pop Pudding Pops, frosty ice pop treats originally made and marketed by Jell-O, were first launched with Bill Cosby acting as spokesperson. He marketed them as chocolate \"\"Puddin' Pops!\"\" With a creamy inside surprise. Pudding Pops originated in Baton Rouge, Louisiana in the 1970s in the United States of America. In its first year, it earned $100,000,000, and after 5 years, it was earning $300,000,000 a year. Despite strong sales into the 90s, Pudding Pops were eventually discontinued due to not being profitable. After being absent for a time, they were reintroduced to grocery stores under the \"\"Popsicle\"\" brand"} +{"qid": "test1525", "pid": "8792344", "query": "when did they stop making jello pudding pops", "answer": "around 2011", "passage": "\"Pudding Pop\"\nname. However, due to differences in texture to the original and different shape, popularity never reached its predecessors which resulted in them beginning to be pulled from stores around 2011. Pudding Pops come in a variety pack of chocolate, vanilla and chocolate-vanilla swirl, which have 90 calories per serving, 3 grams of fat, and 15 grams of carbohydrates. Pudding Pop Pudding Pops, frosty ice pop treats originally made and marketed by Jell-O, were first launched with Bill Cosby acting as spokesperson. He marketed them as chocolate \"\"Puddin' Pops!\"\" With a creamy inside surprise. Pudding Pops originated in Baton Rouge, Louisiana"} +{"qid": "test1526", "pid": "7002539", "query": "who are the two teams in super bowl 2018", "answer": "Philadelphia Eagles", "passage": "\"Super Bowl XLVI\"\nX, Super Bowl XIII, and Super Bowl XXX and are the only teams to meet in the Super Bowl more than twice; the San Francisco 49ers and Cincinnati Bengals, who met in Super Bowl XVI and Super Bowl XXIII; and the Cowboys and Buffalo Bills, who met in Super Bowl XXVII and Super Bowl XXVIII and are the only teams to face each other in two consecutive Super Bowls; and later the Patriots and the Philadelphia Eagles becoming the 6th set of teams to have a rematch in Super Bowl history and 7th overall, meeting in Super Bowl LII after"} +{"qid": "test1526", "pid": "376041", "query": "who are the two teams in super bowl 2018", "answer": "Philadelphia Eagles", "passage": "\"Super Bowl\"\nfranchise outside of the Super Bowl. No team has ever played the Super Bowl in its home stadium. The closest any team has come was the 2017 Minnesota Vikings, who were within one win of playing Super Bowl LII in U.S. Bank Stadium, but lost the NFC Championship game to the Philadelphia Eagles. Two teams have played the Super Bowl in their home market: the San Francisco 49ers, who played Super Bowl XIX in Stanford Stadium instead of Candlestick Park; and the Los Angeles Rams, who played Super Bowl XIV in the Rose Bowl instead of the Los Angeles Memorial"} +{"qid": "test1526", "pid": "19807797", "query": "who are the two teams in super bowl 2018", "answer": "New England Patriots", "passage": "\"2017 Philadelphia Eagles season\"\nwon 24–21. Backup quarterback Nick Foles was named Super Bowl MVP and became the first backup to receive this award since his opponent, Tom Brady, did in Super Bowl XXXVI. The Eagles defeated both Super Bowl teams from the previous NFL season (the New England Patriots and the Atlanta Falcons) in the playoffs. They also defeated both teams who had beaten them in their only two previous Super Bowl appearances. They defeated the Oakland Raiders in the regular season, who beat them in Super Bowl XV and the Patriots in the Super Bowl, who previously beat them in Super Bowl"} +{"qid": "test1526", "pid": "17555413", "query": "who are the two teams in super bowl 2018", "answer": "Philadelphia Eagles", "passage": "\"James Develin\"\n2017, Develin signed a two-year contract extension with the Patriots. The deal included a $300,000 signing bonus, $200,000 in guaranteed salary, and a maximum value of $2.85 million. On December 19, 2017, Develin was selected to the 2018 Pro Bowl as a starting fullback. Develin could not play in the Pro Bowl because of his team advancing to Super Bowl LII. The Patriots lost in the Super Bowl to the Philadelphia Eagles by a score of 41-33 without Develin recording any statistics. On June 14, 2018, Develin signed a two-year, $3.8 million contract extension with the Patriots through the 2020"} +{"qid": "test1526", "pid": "20468759", "query": "who are the two teams in super bowl 2018", "answer": "Philadelphia Eagles", "passage": "\"2018 Philadelphia Eagles season\"\n2018 Philadelphia Eagles season The National Football League 2018 Philadelphia Eagles season is the team's 86th season and their third under head coach Doug Pederson. The Eagles entered the season as the defending champions of Super Bowl LII, and opened the season with the NFL Kickoff Game on September 6, beating the Atlanta Falcons 18–12. A vast majority of their Super Bowl-winning squad from the 2017 season was retained, although some notable losses included tight end Trey Burton (who contributed to the Philly Special in the Super Bowl), defensive end Vinny Curry, and cornerback Patrick Robinson. Franchise quarterback Carson Wentz,"} +{"qid": "test1526", "pid": "6224943", "query": "who are the two teams in super bowl 2018", "answer": "Philadelphia Eagles", "passage": "\"History of the Philadelphia Eagles\"\ninjuries plagued the team including their quarterback Carson Wentz who was still recovering from an ACL injury. Nick Foles would be the starting quarterback to begin the season and helped win the team their opening game against the Atlanta Falcons 18-12. History of the Philadelphia Eagles The history of the Philadelphia Eagles begins in 1933. In their history, the Eagles have appeared in the Super Bowl three times, losing in their first two appearances but winning the third, in 2018. They won three NFL Championships, the precursor to the Super Bowl, in four appearances. The beginning era of the Eagles"} +{"qid": "test1526", "pid": "10271205", "query": "who are the two teams in super bowl 2018", "answer": "New England Patriots", "passage": "\"Sports-related curses\"\ncursed by Vince Lombardi; that beating Lombardi meant never winning the trophy named after him. The Eagles broke the alleged curse in 2018 by defeating the New England Patriots by a score of 41–33 in Super Bowl LII. The Super Bowl curse or Super Bowl hangover is a phrase referring to one of three things that occur in the National Football League (NFL): Super Bowl participant clubs that follow up with lower-than-expected performance the following year; NFL teams that do not repeat as Super Bowl champions; and host teams of the Super Bowl that do not play the game on"} +{"qid": "test1526", "pid": "12066102", "query": "who are the two teams in super bowl 2018", "answer": "New England Patriots", "passage": "\"Whitehall High School (Pennsylvania)\"\nstarting offensive center for the New England Patriots, Matt Millen, a former defensive linebacker with three Super Bowl-winning teams, and Saquon Barkley, a running back who was taken 2nd overall in the 2018 NFL Draft by the New York Giants, to which he is their current starting running back. Millen's career as President and General Manager of the Detroit Lions has been a subject of criticism. Between Koppen and Millen, Whitehall alumni have won six Super Bowls, with Koppen winning two with the Patriots and Millen winning two with the Oakland Raiders, one with the San Francisco 49ers and one"} +{"qid": "test1527", "pid": "5877815", "query": "who is the sixth president of the united states", "answer": "John Quincy Adams", "passage": "\"George Washington Adams\"\nGeorge Washington Adams George Washington Adams (April 12, 1801 – April 30, 1829) was the eldest son of John Quincy Adams, the sixth President of the United States. He had a troubled life and died of apparent suicide at age 28. George Washington Adams was born in Berlin, the capital of the Kingdom of Prussia, on April 12, 1801. He was a member of the distinguished Adams family, the eldest son of John Quincy Adams, the sixth President of the United States, who was then serving as a diplomatic representative of the United States, and his English-born wife Louisa Catherine"} +{"qid": "test1527", "pid": "212536", "query": "who is the sixth president of the united states", "answer": "John Quincy Adams", "passage": "\"John Quincy Adams\"\nJohn Quincy Adams John Quincy Adams (; July 11, 1767 – February 23, 1848) was an American statesman who served as the sixth President of the United States from 1825 to 1829. He served as the eighth United States Secretary of State immediately before becoming president. During his long diplomatic and political career, Adams also served as an ambassador, and represented Massachusetts as a United States Senator and as a member of the United States House of Representatives. He was the eldest son of John Adams, who served as president from 1797 to 1801. Initially a Federalist like his father,"} +{"qid": "test1527", "pid": "11228108", "query": "who is the sixth president of the united states", "answer": "John Quincy Adams", "passage": "\"Presidency of John Quincy Adams\"\nPresidency of John Quincy Adams The presidency of John Quincy Adams began on March 4, 1825, when John Quincy Adams was inaugurated as President of the United States, and ended on March 4, 1829. Adams, the sixth United States president, took office following the 1824 presidential election, in which he and three other Democratic-Republicans—Henry Clay, William H. Crawford, and Andrew Jackson—sought the presidency. No candidate won a majority of Electoral College votes, and so the United States House of Representatives chose the president in a contingent election. With the help of Clay, Adams was elected by the House, and Clay"} +{"qid": "test1527", "pid": "11228161", "query": "who is the sixth president of the united states", "answer": "John Quincy Adams", "passage": "\"Presidency of John Quincy Adams\"\nAmerican Political Science Association’s Presidents and Executive Politics section ranked Adams as the 23rd best president. Presidency of John Quincy Adams The presidency of John Quincy Adams began on March 4, 1825, when John Quincy Adams was inaugurated as President of the United States, and ended on March 4, 1829. Adams, the sixth United States president, took office following the 1824 presidential election, in which he and three other Democratic-Republicans—Henry Clay, William H. Crawford, and Andrew Jackson—sought the presidency. No candidate won a majority of Electoral College votes, and so the United States House of Representatives chose the president in"} +{"qid": "test1528", "pid": "686446", "query": "who turns into a bear in the hobbit", "answer": "Beorn", "passage": "Beorn\nfor purposes not completely explained. Later in \"\"The Hobbit\"\", it is said that \"\"Beorn indeed became a great chief afterwards in those regions and ruled a wide land between the mountains and the wood; and it is said that for many generations the men of his line had the power of taking bear's shape and some were grim men and bad, but most were in heart like Beorn, if less in size and strength.\"\" (\"\"The Hobbit\"\" chapter 18 'The Return Journey'). It appears the ability to change shape into a bear was not exclusive to Beorn as an individual and"} +{"qid": "test1529", "pid": "20734672", "query": "when did reba mcentire record back to god", "answer": "2017", "passage": "\"Back to God\"\nand Randy Houser. Doug Sisemore, Reba McEntire and Jay DeMarcus provided production for the track. McEntire performed the song alongside Lauren Daigle at the 2017 American Country Music Awards. The performance was met with great praise, prompting them to release an official duet version of the song on April 2, 2017. The song was originally written by Randy Houser, who recorded the song for his 2008 album, \"\"Anything Goes\"\". McEntire found it, and said the song had a special place in her heart. “When Randy didn’t release it as a single, I thought, hmm, maybe someday I get to do"} +{"qid": "test1529", "pid": "20734674", "query": "when did reba mcentire record back to god", "answer": "2017", "passage": "\"Back to God\"\nare scattered with shots of different people feeling loss and hurt of faith, ultimately united by their collective experience in church, where they start to heal. Back to God \"\"Back to God\"\" is a song performed by American singer, Reba McEntire. It was released as the second single from her 2017 album, \"\"\"\", on January 20, 2017. A duet version with Lauren Daigle was released on April 2, 2017. The song became McEntire first Hot Christian Songs No. 1, and Daigle's second. The track held the No. 1 position for one week. \"\"Back to God\"\" was originally released on January"} +{"qid": "test1529", "pid": "20734671", "query": "when did reba mcentire record back to god", "answer": "2017", "passage": "\"Back to God\"\nBack to God \"\"Back to God\"\" is a song performed by American singer, Reba McEntire. It was released as the second single from her 2017 album, \"\"\"\", on January 20, 2017. A duet version with Lauren Daigle was released on April 2, 2017. The song became McEntire first Hot Christian Songs No. 1, and Daigle's second. The track held the No. 1 position for one week. \"\"Back to God\"\" was originally released on January 20, 2017 as the second single from her twenty-ninth studio album \"\"\"\"Sing It Now: Songs of Faith & Hope\"\".\"\" The song was written by Dallas Davidson"} +{"qid": "test1529", "pid": "20486043", "query": "when did reba mcentire record back to god", "answer": "2017", "passage": "\"My Kind of Christmas (Reba McEntire album)\"\nMy Kind of Christmas (Reba McEntire album) My Kind of Christmas is the third Christmas album by American country music singer-songwriter Reba McEntire. The album was released on September 2, 2016, by Nash Icon/Rockin' R Records available exclusively through Cracker Barrel. McEntire produced the album with her musical director Doug Sisemore. The album was reissued on October 13, 2017, with additional tracks and new cover art. To promote the album, McEntire hosted the annual CMA Country Christmas show. The album has sold 58,900 copies in the United States as of November 2017. In 2018, Reba recorded the song, What Child"} +{"qid": "test1529", "pid": "20486044", "query": "when did reba mcentire record back to god", "answer": "2017", "passage": "\"My Kind of Christmas (Reba McEntire album)\"\nIs This, with the Southern Gospel Family Group The Isaacs All tracks are produced by Reba McEntire and Doug Sisemore, with the exception of \"\"Silent Night\"\", which was produced by Greg Kurstin. My Kind of Christmas (Reba McEntire album) My Kind of Christmas is the third Christmas album by American country music singer-songwriter Reba McEntire. The album was released on September 2, 2016, by Nash Icon/Rockin' R Records available exclusively through Cracker Barrel. McEntire produced the album with her musical director Doug Sisemore. The album was reissued on October 13, 2017, with additional tracks and new cover art. To promote"} +{"qid": "test153", "pid": "247761", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "\"Minimum wage\"\nrecognition of unions which in turn established minimum wage policy among their members, as in New Zealand in 1894, followed by Australia in 1896 and the United Kingdom in 1909. In the United States, statutory minimum wages were first introduced nationally in 1938, and they were reintroduced and expanded in the United Kingdom in 1998. There is now legislation or binding collective bargaining regarding minimum wage in more than 90 percent of all countries. In the European Union, 22 member states out of 28 currently have national minimum wages. Other countries, such as Sweden, Finland, Denmark, Switzerland, Austria, and Italy,"} +{"qid": "test153", "pid": "10313724", "query": "when was the minimum wage established in the united states", "answer": "1912", "passage": "\"Minimum wage in the United States\"\nLeague, the Women's Trade Union League (WTLU) of Massachusetts under the leadership of Elizabeth Evans took up the cause of minimum wage legislation in Massachusetts. Over the next two years, a coalition of social reform groups and labor advocates in Boston pushed for minimum wage legislation in the state. On June 4, 1912, Massachusetts passed the first minimum wage legislation in the United States, which established a state commission for recommending non-compulsory minimum wages for women and children. The passage of the bill was significantly assisted by the Lawrence textile strike which had raged for ten weeks at the beginning"} +{"qid": "test153", "pid": "10313728", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "\"Minimum wage in the United States\"\nCoast Hotel Co. v. Parrish\"\" (1937) and upheld the constitutionality of minimum wage legislation enacted by Washington state and overturned the \"\"Adkins\"\" decision which marked the end of the \"\"Lochner\"\" era. In 1938, the minimum wage was re-established pursuant to the Fair Labor Standards Act, this time at a uniform rate of $0.25 per hour ($4.78 in 2017 dollars). The Supreme Court upheld the Fair Labor Standards Act in \"\"United States v. Darby Lumber Co.\"\" (1941), holding that Congress had the power under the Commerce Clause to regulate employment conditions. The 1938 minimum wage law only applied to \"\"employees engaged"} +{"qid": "test153", "pid": "10313727", "query": "when was the minimum wage established in the united states", "answer": "1933", "passage": "\"Minimum wage in the United States\"\ngave women the right to vote and equal legal status. In 1933, the Roosevelt administration during the New Deal made the first attempt at establishing a national minimum wage regiment with the National Industrial Recovery Act, which set minimum wage and maximum hours on an industry and regional basis. The Supreme Court, however, in \"\"Schechter Poultry Corp. v. United States\"\" (1935) ruled the act unconstitutional, and the minimum wage regulations were abolished. Two years later after President Roosevelt's overwhelming reelection in 1936 and discussion of judicial reform, the Supreme Court took up the issue of labor legislation again in \"\"West"} +{"qid": "test153", "pid": "10462604", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "\"History of the minimum wage\"\nfirst introduced nationally in 1938 by president Franklin D. Roosevelt. In addition to the federal minimum wage, nearly all states within the United States have their own minimum wage laws with the exception of Alabama, Louisiana, Mississippi, South Carolina, and Tennessee. Sixteen states have a minimum wage that is higher than the federal minimum wage. In the 1960s, minimum wage laws were introduced into Latin America as part of the Alliance for Progress; however these minimum wages were, and are, low. In the European Union, 18 member states currently have national minimum wages. Many countries, such as Norway, Sweden, Finland,"} +{"qid": "test153", "pid": "10462603", "query": "when was the minimum wage established in the united states", "answer": "1912", "passage": "\"History of the minimum wage\"\nmade it clear it would not accept a national minimum wage. Finally, with the return of Labour, the National Minimum Wage Act 1998 set a minimum of ₤3.60 per hour, with lower rates for younger workers. It largely affected workers in high turnover service industries such as fast food restaurants, and members of ethnic minorities. In 1912, the state of Massachusetts, United States, set minimum wages for women and children, and some states enacted similar protective laws. Under the Massachusetts laws, there was \"\"the power only to investigate conditions and recommend changes\"\". In the United States, statutory minimum wages were"} +{"qid": "test153", "pid": "10313743", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "\"Minimum wage in the United States\"\nMilwaukee County, Wisconsin, as well as the California cities of Los Angeles, San Francisco, Long Beach, San Jose, Richmond, and Oakland. In 2016, the District of Columbia Council passed a minimum wage ordinance that included a union waiver, but Mayor Vincent Gray vetoed it. Later that year, the council approved an increase without the union waiver. The federal minimum wage was introduced in 1938 at the rate of $0.25 per hour ($4.78 in 2018 dollars). By 1950 the minimum wage had risen to $0.75 per hour. The minimum wage had its highest purchasing power in 1968, when it was $1.60"} +{"qid": "test153", "pid": "247766", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "\"Minimum wage\"\nconsiderations weigh in as labor leaders seek to win support by demanding the highest possible rate. Other concerns include purchasing power, inflation indexing and standardized working hours. In the United States, the minimum wage promulgated by the Fair Labor Standards Act of 1938. According to the Economic Policy Institute, the minimum wage in the United States would have been $18.28 in 2013 if the minimum wage had kept pace with labor productivity. To adjust for increased rates of worker productivity in the United States, raising the minimum wage to $22 (or more) an hour has been presented. According to the"} +{"qid": "test153", "pid": "17969923", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "\"Minimum Wage Fairness Act\"\nMinimum Wage Fairness Act The Minimum Wage Fairness Act () is a bill that would amend the Fair Labor Standards Act of 1938 (FLSA) to increase the federal minimum wage for employees to $10.10 per hour over the course of a two-year period. The bill was strongly supported by President Barack Obama and many of the Democratic Senators, but strongly opposed by Republicans in the Senate and House. The bill was introduced into the United States Senate during the 113th United States Congress. In the United States workers generally must be paid no less than the statutory minimum wage. As"} +{"qid": "test153", "pid": "13322150", "query": "when was the minimum wage established in the united states", "answer": "1938", "passage": "Ageism\nwages is often enshrined in law. For example, in both the United States and the United Kingdom minimum wage laws allow for employers to pay lower wages to young workers. Many state and local minimum wage laws mirror such an age-based, tiered minimum wage. As well, the Fair Labor Standards Act of 1938 was amended in 1986 to allow the United States Secretary of Labor to provide special certificates to allow an employer to pay less than the minimum wage to individuals whose earning or productive capacity is impaired by age, physical or mental deficiency, or injury. These employees must"} +{"qid": "test1531", "pid": "1631461", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\npopular in stationary applications such as telecommunications sites, due to their small footprint and installation flexibility. The electrical characteristics of VRLA batteries differ somewhat from wet-cell lead–acid batteries, requiring caution in charging and discharging. Lead–acid batteries lose the ability to accept a charge when discharged for too long due to \"\"sulfation\"\", the crystallization of lead sulfate. They generate electricity through a double sulfate chemical reaction. Lead and lead dioxide, the active materials on the battery's plates, react with sulfuric acid in the electrolyte to form lead sulfate. The lead sulfate first forms in a finely divided, amorphous state, and easily"} +{"qid": "test1531", "pid": "1631462", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nreverts to lead, lead dioxide and sulfuric acid when the battery recharges. As batteries cycle through numerous discharges and charges, some lead sulfate is not recombined into electrolyte and slowly converts to a stable crystalline form that no longer dissolves on recharging. Thus, not all the lead is returned to the battery plates, and the amount of usable active material necessary for electricity generation declines over time. Sulfation occurs in lead–acid batteries when they are subjected to insufficient charging during normal operation. It impedes recharging; sulfate deposits ultimately expand, cracking the plates and destroying the battery. Eventually so much of"} +{"qid": "test1531", "pid": "1631473", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nthen no longer available to participate in the normal charge/discharge cycle, so a battery temporarily revived with EDTA will have a reduced life expectancy. Residual EDTA in the lead–acid cell forms organic acids which will accelerate corrosion of the lead plates and internal connectors. The active materials change physical form during charge/discharge, resulting in growth and distortion of the electrodes, and shedding of electrode into the electrolyte. Once the active material has fallen out of the plates, it cannot be restored into position by any chemical treatment. Similarly, internal physical problems such as cracked plates, corroded connectors, or damaged separators"} +{"qid": "test1531", "pid": "19619596", "query": "what are the active materials of a lead acid battery", "answer": "lead dioxide", "passage": "\"Jeanne Burbank\"\nthe study of polymorphs of lead dioxide and their implications for battery design and processing of battery materials. She also developed a special electroplating cell for dynamic x-ray diffraction studies. This was used to study the properties of electrodes made of materials such as lead and silver-zinc. In 1969, she was commended when awarded the William Blum award: \"\"Your methods of applying X-ray and electron microscopy to the materials and components of lead-acid and silver-zinc batteries have made a substantial contribution to the understanding of battery grid corrosion and active materials reactions.\"\" In 1971, Jeanne retired. She settled in Tucson,"} +{"qid": "test1531", "pid": "1631430", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nthe plates are mechanically grooved to increase their surface area. In 1880, Camille Alphonse Faure patented a method of coating a lead grid (which serves as the current conductor) with a paste of lead oxides, sulfuric acid and water, followed by curing phase in which the plates were exposed to gentle heat in a high humidity environment. The curing process caused the paste to change to a mixture of lead sulfates which adhered to the lead plate. Then, during the battery's initial charge (called \"\"formation\"\") the cured paste on the plates was converted into electrochemically active material (the \"\"active mass\"\")."} +{"qid": "test1531", "pid": "1631441", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nweight of an automotive-type lead–acid battery rated around 60 A·h 19.2 pounds of a 32 pound (8.7 kg of a 14.5 kg) battery is lead or internal parts made of lead; the balance is electrolyte, separators, and the case. Separators between the positive and negative plates prevent short-circuit through physical contact, mostly through dendrites (\"\"treeing\"\"), but also through shedding of the active material. Separators allow the flow of ions between the plates of an Electro-chemical cell to form a closed circuit. Wood, rubber, glass fiber mat, cellulose, and PVC or polyethylene plastic have been used to make separators. Wood was"} +{"qid": "test1531", "pid": "12013281", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "UltraBattery\nLead forms part of the negative battery electrode. Carbon forms part of the negative ultracapacitor electrode. The electrolyte solution is made up of sulfuric acid and water. Lead Sulfate is a white crystal or powder. Normal lead acid battery operation sees small lead sulfate crystals growing on the negative electrode during discharging and dissolving back into the electrolyte during charging. The electrodes are constructed of a lead grid, with a lead-based active material compound – lead oxide – forming the remainder of the positive plate. UltraBattery can be used for a range of energy storage applications, such as: UltraBattery is"} +{"qid": "test1531", "pid": "1631458", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nactive material. Consider a battery that has been completely discharged (such as occurs when leaving the car lights on overnight, a current draw of about 6 amps). If it then is given a fast charge for only a few minutes, the battery plates charge only near the interface between the plates and the electrolyte. In this case the battery voltage might rise to a value near that of the charger voltage; this causes the charging current to decrease significantly. After a few hours this interface charge will spread to the volume of the electrode and electrolyte; this leads to an"} +{"qid": "test1531", "pid": "1631472", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\npace with emission standards for lead smelters. Chemical additives have been used ever since the lead–acid battery became a commercial item, to reduce lead sulfate build up on plates and improve battery condition when added to the electrolyte of a vented lead–acid battery. Such treatments are rarely, if ever, effective. Two compounds used for such purposes are Epsom salts and EDTA. Epsom salts reduces the internal resistance in a weak or damaged battery and may allow a small amount of extended life. EDTA can be used to dissolve the sulfate deposits of heavily discharged plates. However, the dissolved material is"} +{"qid": "test1531", "pid": "1631440", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nor for starting marine diesel engines. However, because tubes/cylinders have less active material in the same volume, they also have a lower energy density than flat-plate cells. And, less active material at the electrode also means they have less material available to shed before the cell becomes unusable. Tubular/cylindrical electrodes are also more complicated to manufacture uniformly, which tends to make them more expensive than flat-plate cells. These trade-offs limit the range of applications in which tubular/cylindrical batteries are meaningful to situations where there is insufficient space to install higher capacity (and thus larger) flat-plate units. About 60% of the"} +{"qid": "test1531", "pid": "1631433", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\n1930s and eventually led to the development of lead-calcium grid alloys in 1935 for standby power batteries on the U.S. telephone network. Related research led to the development of lead-selenium grid alloys in Europe a few years later. Both lead-calcium and lead-selenium grid alloys still add antimony, albeit in much smaller quantities than the older high-antimony grids: lead-calcium grids have 4–6% antimony while lead-selenium grids have 1–2%. These metallurgical improvements give the grid more strength, which allows it carry more weight, i.e. more active material, and so the plates can be thicker, which in turn contributes to battery lifespan since"} +{"qid": "test1531", "pid": "1631445", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nacid may be blown out through the over pressure vent. To reduce the water loss rate calcium is alloyed with the plates, however gas build-up remains a problem when the battery is deeply or rapidly charged or discharged. To prevent over-pressurization of the battery casing, AGM batteries include a one-way blow-off valve, and are often known as \"\"valve regulated lead–acid\"\", or VRLA, designs. Another advantage to the AGM design is that the electrolyte becomes the separator material, and mechanically strong. This allows the plate stack to be compressed together in the battery shell, slightly increasing energy density compared to liquid"} +{"qid": "test1531", "pid": "11490686", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Nanowire battery\"\npossibility of TMO-based nanowires as electrode materials. Some recent investigations into this concept are discussed in the following subsection. Lead-acid battery is the oldest type of rechargeable battery cell. Even though the raw material (PbO) for the cell production is fairly accessible and cheap, lead-acid battery cells have relatively small specific energy. The paste thickening effect (volumetric expansion effect) during the operation cycle also blocks the effective flow of the electrolyte. These problems limited the potential of the cell to accomplish some energy-intensive tasks. In 2014, experimentalist successfully obtained PbO nanowire through simple template electrodeposition. The performance of this nanowire"} +{"qid": "test1531", "pid": "233940", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "Lead\nof sound studios. Organ pipes are often made from a lead alloy, mixed with various amounts of tin to control the tone of each pipe. Lead is an established shielding material from radiation in nuclear science and in X-ray rooms due to its denseness and high attenuation coefficient. Molten lead has been used as a coolant for lead-cooled fast reactors. The largest use of lead in the early 21st century is in lead–acid batteries. The reactions in the battery between lead, lead dioxide, and sulfuric acid provide a reliable source of voltage. The lead in batteries undergoes no direct contact"} +{"qid": "test1531", "pid": "1631442", "query": "what are the active materials of a lead acid battery", "answer": "Lead", "passage": "\"Lead–acid battery\"\nthe original choice, but deteriorated in the acid electrolyte. Rubber separators are stable in battery acid and provide valuable electrochemical advantages that other materials cannot. An effective separator must possess a number of mechanical properties; such as permeability, porosity, pore size distribution, specific surface area, mechanical design and strength, electrical resistance, ionic conductivity, and chemical compatibility with the electrolyte. In service, the separator must have good resistance to acid and oxidation. The area of the separator must be a little larger than the area of the plates to prevent material shorting between the plates. The separators must remain stable over"} +{"qid": "test1531", "pid": "4876809", "query": "what are the active materials of a lead acid battery", "answer": "sulfuric acid", "passage": "\"Battery room\"\nunsafe accumulation can be calculated from the number of cells and the charging current, given the chemistry of the battery. The life span of secondary batteries is reduced at high temperature and the energy storage capacity is reduced at low temperature, so a battery room must have heating or cooling to maintain the proper temperature. Batteries may contain large quantities of corrosive electrolytes such as sulfuric acid used in lead-acid batteries or caustic potash (aka potassium hydroxide) used in NiCad batteries. Materials of the battery room must resist corrosion and contain any accidental spills. Plant personnel must be protected from"} +{"qid": "test1531", "pid": "396241", "query": "what are the active materials of a lead acid battery", "answer": "sulfuric acid", "passage": "\"Sulfuric acid\"\ndrain cleaners, as an electrolyte in lead-acid batteries and in various cleaning agents. Although nearly 100% sulfuric acid can be made, the subsequent loss of at the boiling point brings the concentration to 98.3% acid. The 98% grade is more stable in storage, and is the usual form of what is described as \"\"concentrated sulfuric acid\"\". Other concentrations are used for different purposes. Some common concentrations are: \"\"Chamber acid\"\" and \"\"tower acid\"\" were the two concentrations of sulfuric acid produced by the lead chamber process, chamber acid being the acid produced in the lead chamber itself (<70% to avoid contamination"} +{"qid": "test1535", "pid": "10751560", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks (video game)\"\nAlvin and the Chipmunks (video game) Alvin and the Chipmunks is a video game. The game was released on December 4, 2007. It follows The Chipmunks as they play their way from small venues (such as a high school prom or a civic center) to massive crowds at Burning Munk and ultimately Rockathonapalooza. The soundtrack features 40 songs, including \"\"All the Small Things\"\" by Blink-182, \"\"It's Tricky\"\" by Run-D.M.C., and \"\"Heartbreak Hotel\"\" by Elvis Presley. The gameplay itself is similar to other rhythm games such as \"\"Rock Band\"\" and \"\"Guitar Hero\"\". Jason Lee reprised his role as David Seville in"} +{"qid": "test1535", "pid": "13395346", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks: The Squeakquel\"\nAlvin and the Chipmunks: The Squeakquel Alvin and the Chipmunks: The Squeakquel is a 2009 American live-action/computer animated musical family comedy film directed by Betty Thomas. It is the second live action/animated film starring Alvin and the Chipmunks and stars Justin Long, Matthew Gray Gubler, Jesse McCartney, Christina Applegate, Anna Faris, Amy Poehler, David Cross, Zachary Levi, and Jason Lee. The film was written by Jon Vitti, Jonathan Aibel and Glenn Berger, distributed by 20th Century Fox, and produced by Fox 2000 Pictures, Regency Enterprises and Bagdasarian Company. It is a sequel to the 2007 film \"\"Alvin and the Chipmunks\"\""} +{"qid": "test1535", "pid": "15780696", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks: Chipwrecked\"\nAlvin and the Chipmunks: Chipwrecked Alvin and the Chipmunks: Chipwrecked is a 2011 American live action/computer animated musical family comedy adventure film directed by Mike Mitchell. It is the third live action/animated film starring Alvin and the Chipmunks following the 2009 film \"\"\"\", which was a sequel to the 2007 film \"\"Alvin and the Chipmunks\"\". The film stars Justin Long, Matthew Gray Gubler, Jesse McCartney, Christina Applegate, Anna Faris, Amy Poehler, Jenny Slate, David Cross and Jason Lee. It was distributed by 20th Century Fox and produced by Fox 2000 Pictures, Regency Enterprises and Bagdasarian Company. The film was released"} +{"qid": "test1535", "pid": "15780709", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks: Chipwrecked\"\nrespective roles. Jason Lee and David Cross reprise their roles as well. It follows the plot of the movie. The Chipmunks and Chipettes get washed up on an island. It's up to the player to play as the Chipmunks, Chipettes, Dave, or Ian to get back to the city. In June 2013, 20th Century Fox announced that a sequel, \"\"\"\", would be released on December 11, 2015. On December 18, 2014 however, it was announced for a December 23, 2015 release. On October 14, 2015, the release date was pushed forward to December 18, 2015. Alvin and the Chipmunks: Chipwrecked"} +{"qid": "test1535", "pid": "10244835", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks (film)\"\nDecember 18, 2015. Alvin and the Chipmunks (film) Alvin and the Chipmunks is a 2007 American live-action computer animated musical comedy film directed by Tim Hill. Based on the characters of the same name created by Ross Bagdasarian, Sr., the film stars Justin Long, Matthew Gray Gubler, Jesse McCartney, Cameron Richardson, David Cross, and Jason Lee. It was released worldwide on December 14, 2007, by 20th Century Fox and produced by Fox 2000 Pictures and Regency Enterprises. \"\"Alvin and the Chipmunks\"\" grossed $217 million in North America and $361 million at the box office worldwide on a budget of $60"} +{"qid": "test1535", "pid": "10244815", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks (film)\"\nAlvin and the Chipmunks (film) Alvin and the Chipmunks is a 2007 American live-action computer animated musical comedy film directed by Tim Hill. Based on the characters of the same name created by Ross Bagdasarian, Sr., the film stars Justin Long, Matthew Gray Gubler, Jesse McCartney, Cameron Richardson, David Cross, and Jason Lee. It was released worldwide on December 14, 2007, by 20th Century Fox and produced by Fox 2000 Pictures and Regency Enterprises. \"\"Alvin and the Chipmunks\"\" grossed $217 million in North America and $361 million at the box office worldwide on a budget of $60 million and was"} +{"qid": "test1535", "pid": "13395360", "query": "who plays david in alvin and the chipmunks", "answer": "Jason Lee", "passage": "\"Alvin and the Chipmunks: The Squeakquel\"\ntropical backdrops for many of the movie's shipboard scenes). A fourth film, \"\"\"\", was released on December 18, 2015. Alvin and the Chipmunks: The Squeakquel Alvin and the Chipmunks: The Squeakquel is a 2009 American live-action/computer animated musical family comedy film directed by Betty Thomas. It is the second live action/animated film starring Alvin and the Chipmunks and stars Justin Long, Matthew Gray Gubler, Jesse McCartney, Christina Applegate, Anna Faris, Amy Poehler, David Cross, Zachary Levi, and Jason Lee. The film was written by Jon Vitti, Jonathan Aibel and Glenn Berger, distributed by 20th Century Fox, and produced by Fox"} +{"qid": "test1537", "pid": "13553568", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\nFu instead of Japanese-Okinawan Karate. The film's music was composed by James Horner. It is an international co-production between China, Hong Kong, and the United States. Principal photography took place in Beijing, China, and filming began in July 2009 and ended on October 16, 2009. \"\"The Karate Kid\"\" was released theatrically worldwide on June 11, 2010 by Sony Pictures. \"\"The Karate Kid\"\" received mixed reviews and it earned $359.1 million on a $40 million budget. The plot concerns 12-year-old Dre Parker (Smith) from Detroit, Michigan who moves to Beijing, China with his mother (Taraji P. Henson) and runs afoul of"} +{"qid": "test1537", "pid": "13553567", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\nThe Karate Kid (2010 film) The Karate Kid (known as The Kung Fu Dream in China) is a 2010 family martial arts drama film directed by Harald Zwart, and part of \"\"The Karate Kid\"\" series. It stars Jaden Smith, Taraji P. Henson and Jackie Chan in lead roles, and it was produced by Jerry Weintraub, James Lassiter, Ken Stovitz and Jaden's parents Will Smith and Jada Pinkett Smith. The screenplay by Christopher Murphey was from the story written by Robert Mark Kamen for the original \"\"The Karate Kid\"\". Unlike the original, this remake is set in China, and features Kung"} +{"qid": "test1537", "pid": "13553579", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\nthe film as \"\"The Kung Fu Kid\"\", and he believed the film would only be called \"\"The Karate Kid\"\" in America, and \"\"The Kung Fu Kid\"\" in China. This theory held true in the People's Republic of China, where the film is titled \"\"The Kung Fu Dream\"\" (), and in Japan and South Korea, where the film is titled \"\"Best Kid\"\" () after the local title of the 1984 film in both countries. Sony had considered changing the title of the film, but Jerry Weintraub, one of the producers, rejected the idea. Weintraub was also the producer of the original"} +{"qid": "test1537", "pid": "13553589", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\nas the director. In April 2017, Eisner returned to direct the sequel. In October of the same year, Jackie Chan stated that the initial script for the film was not working very well, but the newer one being worked on was much better. The Karate Kid (2010 film) The Karate Kid (known as The Kung Fu Dream in China) is a 2010 family martial arts drama film directed by Harald Zwart, and part of \"\"The Karate Kid\"\" series. It stars Jaden Smith, Taraji P. Henson and Jackie Chan in lead roles, and it was produced by Jerry Weintraub, James Lassiter,"} +{"qid": "test1537", "pid": "13553578", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\nrefashioned as a star vehicle for Jaden Smith\"\" and that it would \"\"borrow elements from the original plot, wherein a bullied youth learns to stand up for himself with the help of an eccentric mentor.\"\" On June 22, 2009, Jackie Chan told a Los Angeles Chinatown concert crowd that he was leaving for Beijing to film the remake as Jaden Smith's teacher. Despite maintaining the original title, the 2010 remake does not feature karate, which is from Okinawa (Japan), but focuses on the main character learning kung fu in China. Chan told interviewers that film cast members generally referred to"} +{"qid": "test1537", "pid": "13553580", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\n\"\"Karate Kid\"\". The Chinese government granted the filmmakers access to the Forbidden City, the Great Wall of China, and the Wudang Mountains. On some occasions, the filmmakers had to negotiate with residents who were not accustomed to filming activity. Icelandic composer Atli Örvarsson was originally hired to score the film, but he was replaced by American composer James Horner. \"\"The Karate Kid\"\" marked Horner's return to scoring after his work on the 2009 film \"\"Avatar\"\". The score was released on June 15, 2010. The official theme song to the film is \"\"Never Say Never\"\", a song written by Adam Messinger,"} +{"qid": "test1537", "pid": "13553583", "query": "where does the karate kid 2010 take place", "answer": "China", "passage": "\"The Karate Kid (2010 film)\"\nappearance from Will Smith. The United Kingdom premiere was held July 15. It was attended by Chan and Smith, as well as producers Will and Jada Pinkett Smith. In the Mainland China version of the film, scenes of bullying were shortened by the censors, and a kissing scene is removed. John Horn said that the editing ultimately resulted in \"\"two slightly different movies\"\". \"\"The Karate Kid\"\" was released on DVD and Blu-ray on October 5, 2010 by Sony Pictures Home Entertainment, and it was released on Mastered in 4K Blu-ray on May 14, 2013. \"\"The Karate Kid\"\" received mixed reviews."} +{"qid": "test1538", "pid": "6545502", "query": "who lives at the end of king lear", "answer": "Kent", "passage": "\"Rota Fortunae\"\nLear\"\". The Earl of Kent, who was once held dear by the King, has been banished, only to return in disguise. This disguised character is placed in the stocks for an overnight and laments this turn of events at the end of Act II, Scene 2: In Act IV, scene vii, King Lear also contrasts his misery on the \"\"wheel of fire\"\" to Cordelia's \"\"soul in bliss\"\". Rosalind and Celia also discuss Fortune, especially as it stands opposed to Nature, in \"\"As You Like It\"\", Act I, scene ii. In Anthony Trollope's novel \"\"The Way We Live Now\"\", the character"} +{"qid": "test1538", "pid": "11654329", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"The History of King Lear\"\nThe History of King Lear The History of King Lear is an adaptation by Nahum Tate of William Shakespeare's \"\"King Lear\"\". It first appeared in 1681, some seventy-five years after Shakespeare's version, and is believed to have replaced Shakespeare's version on the English stage in whole or in part until 1838. Unlike Shakespeare's tragedy, Tate's play has a happy ending, with Lear regaining his throne, Cordelia marrying Edgar, and Edgar joyfully declaring that \"\"truth and virtue shall at last succeed.\"\" Regarded as a tragicomedy, the play has five acts, as does Shakespeare's, although the number of scenes is different, and"} +{"qid": "test1538", "pid": "11654369", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"The History of King Lear\"\nShakespeare and Performance MLitt/MFA program. The History of King Lear The History of King Lear is an adaptation by Nahum Tate of William Shakespeare's \"\"King Lear\"\". It first appeared in 1681, some seventy-five years after Shakespeare's version, and is believed to have replaced Shakespeare's version on the English stage in whole or in part until 1838. Unlike Shakespeare's tragedy, Tate's play has a happy ending, with Lear regaining his throne, Cordelia marrying Edgar, and Edgar joyfully declaring that \"\"truth and virtue shall at last succeed.\"\" Regarded as a tragicomedy, the play has five acts, as does Shakespeare's, although the number"} +{"qid": "test1538", "pid": "660889", "query": "who lives at the end of king lear", "answer": "Kent", "passage": "\"King Lear\"\nLearning that Cordelia has been disinherited, the Duke of Burgundy withdraws his suit, but the King of France is impressed by her honesty and marries her nonetheless. The King of France is shocked by Lear's decision because up until this time Lear has only praised and favoured Cordelia (\"\"... she whom even but now was your best object, / The argument of your praise, balm of your age, ...\"\"). Meanwhile, Gloucester has introduced his illegitimate son Edmund to Kent. Lear announces he will live alternately with Goneril and Regan, and their husbands. He reserves to himself a retinue of one"} +{"qid": "test1538", "pid": "660904", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"King Lear\"\nrestores Lear to the throne, and succeeds him as ruler after his death. During the 17th century, Shakespeare's tragic ending was much criticised and alternative versions were written by Nahum Tate, in which the leading characters survived and Edgar and Cordelia were married (despite the fact that Cordelia was previously betrothed to the King of France). As Harold Bloom states: \"\"Tate's version held the stage for almost 150 years, until Edmund Kean reinstated the play's tragic ending in 1823.\"\" Although an exact date of composition cannot be given, many academic editors of the play date \"\"King Lear\"\" between 1603 and"} +{"qid": "test1538", "pid": "11654362", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"The History of King Lear\"\nwas equally appalled by the introduction of a romance between Cordelia and Edgar, which had not been part of the old legend. While acknowledging that prior to Shakespeare's writing of \"\"King Lear\"\", some versions of the story had ended happily, and that Tate's returning of the crown to Lear was therefore not a complete innovation, Jameson complained that on stage: they have converted the seraph-like Cordelia into a puling love heroine, and sent her off victorious at the end of the play—exit with drums and colours flying—to be married to Edgar. Now anything more absurd, more discordant with all our"} +{"qid": "test1538", "pid": "2039289", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"Happy ending\"\nactively disliked. In the Seventeenth Century, the Irish author Nahum Tate sought to improve William Shakespeare's \"\"King Lear\"\" in his own heavily modified version in which Lear survives and Cordelia marries Edgar. Tate's version dominated performances for a century and a half, Shakespeare's original nearly forgotten. Both David Garrick and John Philip Kemble, while taking up some of Shakespeare's original text, kept Tate's happy ending. Edmund Kean played \"\"King Lear\"\" with its tragic ending in 1823, but failed and reverted to Tate's crowd-pleaser after only three performances. Only in 1838 did William Macready at Covent Garden successfully restore Shakespeare's original"} +{"qid": "test1538", "pid": "15297419", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"King Lear (1953 film)\"\nKing Lear (1953 film) King Lear is a 1953 live television adaptation of the Shakespeare play staged by Peter Brook and starring Orson Welles. Preserved on kinescope, it aired October 18, 1953, as part of the CBS television series \"\"Omnibus\"\", hosted by Alistair Cooke. The cast includes Micheál Mac Liammóir and Alan Badel. A heavily abridged version of the play, this production condensed the play by eliminating the characters of Edgar and Edmund. To compensate for their absence, the role of Oswald is expanded to take Edmund's part in the play's climax, and \"\"Poor Tom\"\" is included not as a"} +{"qid": "test1538", "pid": "660918", "query": "who lives at the end of king lear", "answer": "Kent", "passage": "\"King Lear\"\nthe realm of which the king is head, not to Lear himself, and he tells Lear to behave better for the good of the realm. By contrast, Lear makes an argument similar to James that as king, he holds absolute power and could disregard the views of his subjects if they displease him whenever he liked. In the play, the characters like the Fool, Kent and Cordelia, whose loyalties are institutional, seeing their first loyalty to the realm, are portrayed more favorably than those like Regan and Goneril, who insist they are only loyal to the king, seeing their loyalties"} +{"qid": "test1538", "pid": "660888", "query": "who lives at the end of king lear", "answer": "Kent", "passage": "\"King Lear\"\nher bond, no more and no less. Infuriated, Lear disinherits Cordelia and divides her share between her elder sisters. The Earl of Gloucester and the Earl of Kent observe that, by dividing his realm between Goneril and Regan, Lear has awarded his realm in equal shares to the peerages of the Duke of Albany (Goneril's husband) and the Duke of Cornwall (Regan's husband). Kent objects to Lear's unfair treatment of Cordelia; enraged by Kent's protests, Lear banishes him from the country. Lear then summons the Duke of Burgundy and the King of France, who have both proposed marriage to Cordelia."} +{"qid": "test1538", "pid": "11654360", "query": "who lives at the end of king lear", "answer": "Kent", "passage": "\"The History of King Lear\"\n\"\"these blockheads\"\" who believed that \"\"the daughterly \"\"Cordelia\"\" must whimper [her] love affections before [she] could hope to touch the gentle hearts in the boxes.\"\" Some years previously, Lamb had criticised Tate's alterations as \"\"tamperings\"\", and had complained that for Tate and his followers, Shakespeare's treatment of Lear's story: Quoting that extract from Lamb, and calling him \"\"a better authority\"\" than Johnson or Schlegel \"\"on any subject in which poetry and feelings are concerned\"\", essayist William Hazlitt also rejected the happy ending, and argued that after seeing the afflictions that Lear has endured, we feel the truth of Kent's words"} +{"qid": "test1538", "pid": "15297420", "query": "who lives at the end of king lear", "answer": "Edgar", "passage": "\"King Lear (1953 film)\"\ndisguised Edgar but as an actual madman. Welles returned to America to star in this presentation. He was guarded by IRS agents, prohibited to leave his hotel room when not at the studio, prevented from making any purchases, and the entire sum (less expenses) he earned went to his tax bill. Welles returned to England after the broadcast. King Lear (1953 film) King Lear is a 1953 live television adaptation of the Shakespeare play staged by Peter Brook and starring Orson Welles. Preserved on kinescope, it aired October 18, 1953, as part of the CBS television series \"\"Omnibus\"\", hosted by"} +{"qid": "test1539", "pid": "5035054", "query": "which body system differentiates a male from a female", "answer": "reproductive", "passage": "\"Male reproductive system\"\nMale reproductive system The male reproductive system consists of a number of sex organs that play a role in the process of human reproduction. These organs are located on the outside of the body and within the pelvis. The main male sex organs are the penis and the testicles which produce semen and sperm, which, as part of sexual intercourse, fertilize an ovum in the female's body; the fertilized ovum (zygote) develops into a fetus, which is later born as an infant. The corresponding system in females is the female reproductive system. The penis is the male intromittent organ. It"} +{"qid": "test1539", "pid": "6598512", "query": "which body system differentiates a male from a female", "answer": "reproductive", "passage": "\"Sex differences in human physiology\"\npreclude overlap in distributions. For example, most males are taller than most females, but an individual female could be taller than an individual male. The most obvious differences between males and females include all the features related to reproductive role, notably the endocrine (hormonal) systems and their physiological and behavioural effects, including gonadal differentiation, internal and external genital and breast differentiation, and differentiation of muscle mass, height, and hair distribution. The human genome consists of two copies of each of 23 chromosomes (a total of 46). One set of 23 comes from the mother and one set comes from the"} +{"qid": "test1539", "pid": "9105427", "query": "which body system differentiates a male from a female", "answer": "reproductive", "passage": "\"Sexual differentiation in humans\"\nThe sex of an early embryo cannot be determined because the reproductive structures do not differentiate until the seventh week. Prior to this, the child is considered bipotential because it cannot be identified as male or female. The internal genitalia consist of two accessory ducts: mesonephric ducts (male) and paramesonephric ducts (female). The mesonephric system is the precursor to the male genitalia and the paramesonephric to the female reproductive system. As development proceeds, one of the pairs of ducts develops while the other regresses. This depends on the presence or absence of the sex determining region of the Y chromosome,"} +{"qid": "test1539", "pid": "9105425", "query": "which body system differentiates a male from a female", "answer": "the external genitalia", "passage": "\"Sexual differentiation in humans\"\ngrow into either male or female organs. This process is called sexual differentiation. The precursor of the internal female sex organs is called the Müllerian system. By 7 weeks, a fetus has a genital tubercle, urogenital groove and sinus, and labioscrotal folds. In females, without excess androgens, these become the clitoris, urethra and vagina, and labia Differentiation between the sexes of the sex organs occurs throughout embryological, fetal and later life. This includes both internal and external genital differentiation. In both males and females, the sex organs consist of three structures: the gonads, the internal genitalia, and the external genitalia."} +{"qid": "test1539", "pid": "5035060", "query": "which body system differentiates a male from a female", "answer": "the external genitalia", "passage": "\"Male reproductive system\"\nurogenital sinus, and the other embryonic structures differentiate into the external genitalia. In the absence of testicular secretions, the female genitalia are formed. At six weeks post conception, the differentiation of the external genitalia in the male and female has not taken place. At eight weeks, a distinct phallus is present during the indifferent stage. By the 10th-12th week, the genitalia are distinctly male or female being and derived from their homologous structures. At 16 weeks post conception, the genitalia are formed and distinct. The masculinization of the embryonic reproductive structures occurs as a result of testosterone secreted by the"} +{"qid": "test1539", "pid": "13195062", "query": "which body system differentiates a male from a female", "answer": "reproductive", "passage": "\"Synodontis caudalis\"\nmandible is used to differentiate between species; in \"\"S. caudalis\"\", there are 70 to 80 teeth on the mandible. The body color is a uniform brownish. The maximum total length of the species is . Generally, females in the genus \"\"Synodontis\"\" tend to be slightly larger than males of the same age. In the wild, the species has been found in the rapids of the lower Congo River system and Pool Malebo. It has also been found in the Fimi River and from portions of the Kasai River system. The reproductive habits of most of the species of \"\"Synodontis\"\" are"} +{"qid": "test1539", "pid": "5142868", "query": "which body system differentiates a male from a female", "answer": "reproductive", "passage": "\"Human reproductive system\"\nthe development of the human fetus. Despite the differences between the adult female and male are derived from the intermediate mesoderm. The three main fetal precursors of the reproductive organs are the Wolffian duct, the Müllerian ducts, and the gonads. Endocrine hormones are a well-known and critical controlling factor in the normal differentiation of the reproductive system. The Wolffian duct forms the epididymis, vas deferens, ductus deferens, ejaculatory duct, and seminal vesicle in the male reproductive system, but essentially disappears in the female reproductive system. The reverse is true for the Müllerian duct, as it essentially disappears in the male"} +{"qid": "test154", "pid": "18846586", "query": "who sings theme tune to orange is the new black", "answer": "Spektor", "passage": "\"You've Got Time\"\nYou've Got Time \"\"You've Got Time\"\" is the main title theme song for the Netflix Original Series \"\"Orange Is the New Black\"\", written, composed and performed by Regina Spektor. The song was nominated in the Best Song Written for Visual Media category at the 56th Annual Grammy Awards. The song was written specifically for \"\"Orange Is the New Black\"\" by Regina Spektor, who was approached by the show's creator, Jenji Kohan. Kohan said, \"\"I listened to Regina's albums obsessively while writing the series, so I immediately thought of her for our theme song.\"\" Additionally Spektor had previously performed a cover"} +{"qid": "test154", "pid": "18846588", "query": "who sings theme tune to orange is the new black", "answer": "Spektor", "passage": "\"You've Got Time\"\nlike it?' And then she said, 'This is fucking awesome, I love it! It’s going to fit really well!'\"\" The song has been well received. Casey Cipriani of \"\"Indiewire\"\" wrote that the song's lyrics suggesting animals trapped in a cage was ideal for \"\"Orange Is the New Black\"\". Garin Pirnia of \"\"Rolling Stone\"\" noted that after the song begins with Spektor's \"\"aggressive\"\" guitar playing, \"\"'You've Got Time' softens during the bridge, though, generating an aura of hope. When Spektor sings the title refrain, it works literally for the prison motif but also alludes to the show's themes of redemption and"} +{"qid": "test1540", "pid": "13610232", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid: Dog Days (book)\"\nDiary of a Wimpy Kid: Dog Days (book) Diary of a Wimpy Kid: Dog Days is a novel written by American author and cartoonist Jeff Kinney, and is the fourth book in the \"\"Diary of a Wimpy Kid\"\" series. It was released on October 12, 2009 in the USA and October 13, 2009, in Canada. The film, \"\"\"\", released on August 3, 2012, was based on the book and its predecessor, \"\"\"\". The book starts with Greg Heffley describing how he is more of an \"\"indoor person\"\", and how he will spend his summer vacation playing video games in the"} +{"qid": "test1540", "pid": "16558330", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid: The Third Wheel\"\nDiary of a Wimpy Kid: The Third Wheel Diary of a Wimpy Kid: The Third Wheel is a 2012 bestselling children's novel and the seventh book in the Diary of a Wimpy Kid series, written by American author Jeff Kinney. Kinney announced the book in March 2012, with \"\"The Third Wheel\"\"s cover revealed in May 2012. The book was released on November 13, 2012. Greg recalls several anecdotes from the time of his conception to his preschool years, notable ones include how his mother read to him before bed, how his parents’ excessive kissing supposedly led to his premature birth,"} +{"qid": "test1540", "pid": "15702161", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film series)\"\nDiary of a Wimpy Kid (film series) Diary of a Wimpy Kid is a series of films based on the series of books, \"\"Diary of a Wimpy Kid\"\" by Jeff Kinney. The series consists of four films: \"\"Diary of a Wimpy Kid\"\" (2010), \"\"\"\" (2011), \"\"\"\" (2012) and the latest fourth film \"\" \"\"(2017) as well as a short film entitled \"\"Diary of a Wimpy Kid: Class Clown\"\" (2012) \"\"Diary of a Wimpy Kid\"\" was released March 19, 2010, as it moved up from a previously scheduled April 2 release date. Principal production began on September 21, 2009 and was"} +{"qid": "test1540", "pid": "20128718", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid: The Getaway\"\nis the 12th book in the series, and was released everywhere except Canada and China on November 7, 2017. A week since its release, it has received 4.5/5 stars on Waterstones with 786 reviews. Diary of a Wimpy Kid: The Getaway Diary of a Wimpy Kid: The Getaway is the twelfth book in the \"\"Diary of a Wimpy Kid\"\" series by Jeff Kinney. The book was unveiled during the 2017 Diary of a Wimpy Kid Virtually Live Event which was live streamed via YouTube as part of the 10th anniversary of the first book. The book was published and released"} +{"qid": "test1540", "pid": "15715493", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid: Dog Days (film)\"\nDiary of a Wimpy Kid: Dog Days (film) Diary of a Wimpy Kid: Dog Days (sometimes known as Diary of a Wimpy Kid 3: Dog Days) is a 2012 American comedy film directed by David Bowers from a screenplay by Wallace Wolodarsky and Maya Forbes. It stars Zachary Gordon and Steve Zahn. Robert Capron, Devon Bostick, Rachael Harris, Peyton List, Grayson Russell, and Karan Brar also have prominent roles. It is the third installment in the \"\"Diary of a Wimpy Kid\"\" film series, and is mashup of the and in the series, but draws mostly from the fourth book. The"} +{"qid": "test1540", "pid": "15702167", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film series)\"\nFox in late 2014. The film was teased with the conclusion of the 2012 animated short film \"\"\"\", which ended with a scene adapted from the \"\"Cabin Fever\"\" book. As of 2018, no updates of the project have been announced since. In August 2018, CEO of 20th Century Fox Stacey Snider announced that a television series based on \"\"Diary of a Wimpy Kid\"\" is currently being developed. With the upcoming acquisition by Disney, it is possible that it will appear on one of the latter's services. Diary of a Wimpy Kid (film series) Diary of a Wimpy Kid is a"} +{"qid": "test1540", "pid": "13899137", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film)\"\nDiary of a Wimpy Kid (film) Diary of a Wimpy Kid (sometimes known as Diary of a Wimpy Kid: The Movie) is a 2010 American comedy film directed by Thor Freudenthal and based on Jeff Kinney's book of the same name. The film stars Zachary Gordon and Robert Capron. Devon Bostick, Rachael Harris, Steve Zahn, and Chloë Grace Moretz also have prominent roles. It is the first film in the \"\"Diary of a Wimpy Kid\"\" film series, and was followed by three sequels, \"\"\"\" (2011), \"\"\"\" (2012) and \"\"\"\" (2017). The film earned $75.7 million on a $15 million budget."} +{"qid": "test1540", "pid": "13899151", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film)\"\nIt was based on the second book in the series, . Zachary Gordon reprised his role in the film. \"\"\"\" was released on August 3, 2012 and is based on \"\"\"\" and \"\"\"\", including scenes from both books. An animated short film, , was released along with the DVD of . A film based on \"\"\"\" was released in May 2017 featuring a new cast starring Jason Drucker, Alicia Silverstone, and Tom Everett Scott. Diary of a Wimpy Kid (film) Diary of a Wimpy Kid (sometimes known as Diary of a Wimpy Kid: The Movie) is a 2010 American comedy"} +{"qid": "test1540", "pid": "12300173", "query": "how many series of diary of a wimpy kid are there", "answer": "12", "passage": "\"Diary of a Wimpy Kid: The Last Straw\"\n\"\"The Three Stooges\"\". An advance screening for the film was held on July 31, 2012. Diary of a Wimpy Kid: The Last Straw Diary of a Wimpy Kid: The Last Straw is a novel written by American author and cartoonist Jeff Kinney, the third book in the \"\"Diary of a Wimpy Kid\"\" series. The book acts as a journal and follows the adventures of Greg Heffley, the narrator of the book, who is in the second half of his seventh-grade year. This book was released in the US on January 13, 2009. The book begins on January 1, with Greg"} +{"qid": "test1542", "pid": "15053870", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Agreement of August 1905\"\nJapan–Korea Agreement of August 1905 The Japan-Korea Protocol of August 1905 was made between representatives of the Empire of Japan and the Korean Empire in 1905. Negotiations were concluded on August 13, 1905. This treaty granted permission to Japanese vessels to navigate coastal and inland waters of Korea. The treaty preamble asserted that the Envoy Extraordinary and Minister Plenipotentiary of His Majesty the Emperor of Japan and the Minister of State for Foreign Affairs of His Majesty the Emperor of Korea were \"\"respectively duly empowered\"\" to negotiate and to agree upon the specific language of the proposed bilateral treaty: Japanese"} +{"qid": "test1542", "pid": "15053722", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Agreement of August 1904\"\nnull and void\"\"\"\" by Treaty on Basic Relations between Japan and the Republic of Korea concluded in 1965. Japan–Korea Agreement of August 1904 The Japan–Korea Protocol of August 1904 was made between representatives of the Empire of Japan and the Korean Empire in 1904. Negotiations were concluded on August 22, 1904. This treaty required Korea to engage financial and diplomatic advisers designated by Japan. Also, the treaty required Korea to consult with Japan before making treaties with foreign powers, and before granting concessions or making contracts with foreigners. The treaty presumes that the Envoy Extraordinary and Minister Plenipotentiary of His"} +{"qid": "test1542", "pid": "15053875", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Agreement of August 1905\"\nevidence to the international community. For example, This treaty was confirmed to be \"\"\"\"already null and void\"\"\"\" by Treaty on Basic Relations between Japan and the Republic of Korea concluded in 1965. Japan–Korea Agreement of August 1905 The Japan-Korea Protocol of August 1905 was made between representatives of the Empire of Japan and the Korean Empire in 1905. Negotiations were concluded on August 13, 1905. This treaty granted permission to Japanese vessels to navigate coastal and inland waters of Korea. The treaty preamble asserted that the Envoy Extraordinary and Minister Plenipotentiary of His Majesty the Emperor of Japan and the"} +{"qid": "test1542", "pid": "15053719", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Agreement of August 1904\"\nJapan–Korea Agreement of August 1904 The Japan–Korea Protocol of August 1904 was made between representatives of the Empire of Japan and the Korean Empire in 1904. Negotiations were concluded on August 22, 1904. This treaty required Korea to engage financial and diplomatic advisers designated by Japan. Also, the treaty required Korea to consult with Japan before making treaties with foreign powers, and before granting concessions or making contracts with foreigners. The treaty presumes that the Envoy Extraordinary and Minister Plenipotentiary of His Majesty the Emperor of Japan and the Minister of State for Foreign Affairs \"\"ad interim\"\" of His Majesty"} +{"qid": "test1542", "pid": "5661596", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "Taft", "passage": "\"Japan–Korea Treaty of 1905\"\nby several names including \"\"Second Japan–Korea Convention\"\" (Japanese: 第二次日韓協約, Korean: 제2차 한일협약, 第二次韓日協約), \"\"Eulsa Restriction Treaty\"\" (Korean: 을사늑약, 乙巳勒約), \"\"Eulsa Protection Treaty\"\" (Japanese: 乙巳保護条約, Korean: 을사보호조약), and \"\"Korea Protection Treaty\"\" (Japanese: 韓国保護条約). Following Imperial Japan’s victory in the Russo-Japanese War, with its subsequent withdrawal of Russian influence, and the Taft–Katsura Agreement, in which the United States allegedly agreed not to interfere with Japan in matters concerning Korea, the Japanese government sought to formalize its sphere of influence over the Korean Peninsula. Delegates of both Empires met in Seoul to resolve differences in matters pertaining to Korea’s future foreign policy; however,"} +{"qid": "test1542", "pid": "2771422", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "Empire of Japan", "passage": "\"Treaty on Basic Relations between Japan and the Republic of Korea\"\nthe extended negotiations which produced this bilateral agreement. This diplomatic agreement established \"\"normal\"\" diplomatic relations between two East Asian neighbors. The original documents of this agreement are kept respectively by Japan and Korea. The treaty is drafted using English, Japanese, and Korean, and each is considered authentic. In case of a \"\"divergence of interpretation,\"\" the English-language version shall be deemed authoritative and prevailing. The 1965 Treaty also declared that: It is confirmed that all treaties or agreements concluded between the Empire of Japan and the Empire of Korea on or before August 22, 1910 are already null and void. With"} +{"qid": "test1542", "pid": "15053863", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Agreement of April 1905\"\nJapan–Korea Agreement of April 1905 The Japan–Korea Protocol of August 1905 was made between the Empire of Japan and the Korean Empire in 1905. Negotiations were concluded on April 1, 1905. This treaty transferring responsibility for postal, telegraph, and telephone service to Japan. The provisions of the treaty encompassed the right of eminent domain or condemnation against public property and against private property. In this context, the treaty provided for no compensation or payments except that Japan \"\"shall deliver to the Korean Government a suitable percentage\"\" of the profits. The treaty preamble asserted that the Envoy Extraordinary and Minister Plenipotentiary"} +{"qid": "test1542", "pid": "8007126", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Treaty of 1907\"\nappointments of Japanese as officials in the areas of finance, policing and technology shall be set down by a later agreement. Japan–Korea Treaty of 1907 The Japan–Korea Treaty of 1907 was made between the Empire of Japan and the Korean Empire in 1907. Negotiations were concluded on July 24, 1907. The treaty provided that Korea should act under the guidance of a Japanese resident general. The effect of the treaty's provisions was that the administration of internal affairs was turned over to Japan. The Korean Empire had become a protectorate of Japan under the terms of the earlier Eulsa Treaty"} +{"qid": "test1542", "pid": "9015864", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "Empire of Japan", "passage": "\"Yamagata–Lobanov Agreement\"\naccess to Manchuria and a lease over the Liaotung Peninsula. The Yamagata–Lobanov Agreement was superseded by the Nishi-Rosen Agreement of 1898. Yamagata–Lobanov Agreement The (), signed in Saint Petersburg on 9 June 1896, was the second of three agreements signed between the Empire of Japan and the Empire of Russia concerning disputes regarding their sphere of influence over Korea. With pro-Japanese and pro-Russian factions within the Joseon dynasty competing for power, the increasingly unstable political situation in Korea was endangering the economic and strategic interests of both Japan and Russia. After the assassination of Empress Myeongseong, Korean Emperor Gojong had"} +{"qid": "test1542", "pid": "4239999", "query": "who negotiated an agreement with japan concerning the future of korea", "answer": "the Korean Empire", "passage": "\"Japan–Korea Treaty of 1910\"\nKorean Empire, Emperor Sunjong of Korea refused to sign the treaty as required under Korean law. The treaty was instead signed by Prime Minister Lee Wan-yong of the Korean Empire, and Resident General Count Terauchi Masatake of the Empire of Japan. This issue caused considerable difficulty in negotiating the establishment of basic diplomatic relations between the countries. Korea insisted on including a chapter stipulating, \"\"The treaty was null and void\"\". A compromise was reached in language of Article II of the 1965 Treaty on Basic Relations: \"\"It is confirmed that all treaties or agreements concluded between the Empire of Japan"} +{"qid": "test1543", "pid": "652613", "query": "what was the final episode of quantum leap", "answer": "\"Mirror Image\"", "passage": "\"Quantum Leap\"\nright what once went wrong\"\" and trigger the next leap. An episode typically ends as a cliffhanger, showing the first few moments of Sam's next leap (along with him again uttering \"\"Oh, boy!\"\" on discovering his situation), which is repeated in the following episode's cold open. Though initially Sam's leaping is believed by Al and the others on the Quantum Leap team to be random, the characters come to believe in later seasons that someone or something is controlling Sam's leaping, and this is a central focus of the show's finale episode, \"\"Mirror Image\"\". When Sam leaps, his body is"} +{"qid": "test1543", "pid": "652618", "query": "what was the final episode of quantum leap", "answer": "\"Mirror Image\"", "passage": "\"Quantum Leap\"\nthe discovery of the Watergate scandal. Two notable episodes place Sam directly at the center of significant historical events, one being the leap into Oswald. In \"\"Goodbye Norma Jean\"\", Sam appears as Marilyn Monroe's bodyguard, who saves her life and convinces Marilyn to remain alive for her starring role in \"\"The Misfits\"\". Other episodes explore the past of the main characters, such as Sam saving his brother from being killed in the Vietnam War, and saving Al's marriage to Beth. In the final episode, \"\"Mirror Image\"\", Sam leaps through spacetime as himself (without replacing another person), arriving at the exact"} +{"qid": "test1543", "pid": "7797542", "query": "what was the final episode of quantum leap", "answer": "\"Mirror Image\"", "passage": "\"Al Calavicci\"\nmen should be allowed into the military. The experiences of watching homophobic violence first-hand made Al change his mind and admit he'd been wrong. Though separated by decades, Sam and Al continued to work closely together until the people at Project Quantum Leap lost contact with Sam. In the series' final episode (\"\"Mirror Image\"\"), Sam is caught in a strange leap wherein he meets strangely parallel versions of people he had met on other adventures. The bartender likens the strong friendship between Sam and Al to that of Don Quixote and his trusted squire, Sancho Panza, saying that one would"} +{"qid": "test1545", "pid": "9962690", "query": "what time do tam tams start in montreal", "answer": "around 10:30am", "passage": "Tam-Tams\nmain outdoor sporting ground. As such, the entire area is generally quite popular on Sundays in the summertime, drawing an exceptionally diverse crowd to myriad activities. The Tam-Tams typically start around 10:30am and continue until sunset. It is not an officially sanctioned nor sponsored event, simply a regular if technically spontaneous event. As such, it's difficult to pinpoint when it started or what motivated the first drum circle. Spending Sundays in Mount Royal Park has been popular since the park was inaugurated in 1876, and the nature and design of Fletcher's Field has always made it a popular spot for"} +{"qid": "test1547", "pid": "2432710", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"India national cricket team\"\nteam team sponsor until 2022 is OPPO since 2017. Previously, the Indian team was sponsored by Star India from 2014 to 2017, Sahara India Pariwar from 2002 to 2013 and ITC Limited (with Wills and ITC Hotels barands) from 1993 to 2002. The current kit sponsor for the Indian team until 2020 is Nike, which in 2005 acquired the rights from BCCI. The deal with Nike has been extended twice for a period of five years each time; in 2011 and 2016 respectively. Paytm, since 2015 is currently the sponsor for all matches played by the team within India until"} +{"qid": "test1547", "pid": "2432708", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"India national cricket team\"\nthe nickname of 'Men in Blue' for the Indian cricket team. Due to their love for blue colour, Nike launched the mega campaign called 'Bleed Blue' for the support of Indian team in 2011 World Cup which turned out to be a huge success and people over the internet and places adopted this to cheer for India. Similar to the first-class kits, BCCI logo is placed on the left chest while the logo of the kit manufacturer (Nike) sits on the right chest. OPPO is currently the official team sponsor and its logo is present on the central part of"} +{"qid": "test1547", "pid": "8765847", "query": "oppo is sponsor of which country's national cricket team", "answer": "the Indian national cricket team", "passage": "Oppo\nbid to sponsor the Indian national cricket team and has achieved the rights to display their logo on the team’s kits from 2017 to 2022. Between this period the Indian national cricket team will play 259 International matches consisting of 62 Tests, 152 ODIs, and 45 T20 Internationals. This number also includes the 2019 World Cup in England and 2020 T20 World Cup in Australia. The current base price for bilateral matches involving India has been set at Rs 4.1 crore (approx.) and for Asian Cricket Council (ACC) and International Cricket Council (ICC) matches, it is Rs 1.56 crore (approx.)"} +{"qid": "test1547", "pid": "2432702", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"India national cricket team\"\nCricket whites have been traditionally used by the team when playing first-class cricket. In addition to their whites, Indian fielders wear a dark blue cap or a white wide-brimmed sun hat, with the BCCI logo in the center. Helmets are also dark blue. Some players sport the Indian flag on their helmet. The branding is minimal for whites; the BCCI logo is placed on the left chest while the team sponsor's (currently OPPO) logo is present on the right chest. The kit manufacturer's (Nike) logo would be printed on the sleeve of the players' leading arms. Since colours have made"} +{"qid": "test1547", "pid": "19638819", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"Rahul Johri\"\nOfficer at the Board of Control for Cricket in India (BCCI) and assumed the position on 1st June, 2016. He oversaw the sale of IPL broadcast rights to Star India for Rs. 16,348 crore, doubling the previous broadcast rights sale to Sony India in 2012 for Rs. 8,200 crore. The media rights for BCCI and IPL were awarded to Star India in 2017. Johri supervised the Indian Cricket team’s current sponsorship agreement. On March 2017, BCCI announced OPPO Digital as Team India’s (senior, junior and women’s teams) new sponsor. The five year contract is worth Rs 1079 crore. IIn April"} +{"qid": "test1547", "pid": "2894321", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"Board of Control for Cricket in India\"\nOppo became the official Indian cricket team sponsor for a period of five years at a cost of . The media rights for 25 neutral venue one-day matches to be played over the next 5 years were awarded to Zee Telefilms for $ 219.16 million. BCCI had avoided taxes on its income, claiming exemption as a charitable organisation. Although the Income Tax Department withdrew this exemption in 2007-08, BCCI only paid tax amounting to against its tax liability of in the 2009-10 financial year On 12 September 2006 BCCI, announced that it will spend 1,600 crore over the subsequent one"} +{"qid": "test1547", "pid": "5604353", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"South Africa women's national cricket team\"\nstage of the competition. The achievement of South Africa's women raised publicity of the sport in their own country, where South African Women's Cricket Association president Colleen Roberts described the exposure of the women's game as \"\"pathetic\"\". Roberts explained that one of the main problems surrounding the promotion of the sport was the lack of teams touring South Africa, due to women's cricket in the country having no sponsor. South Africa did manage to attract a team to tour in 2001–02, with India travelling to the country to contest four ODIs and a Test match. After winning the ODI series"} +{"qid": "test1547", "pid": "13820335", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"Dheeraj and East Coast\"\nThis company won the \"\"Developer’s Commitment to Efficient Buildings\"\" award at the Middle East Awards 2000 organised by ITP Business Publishing which is based in United Arab Emirates in the Middle East. DEC LLC started sponsoring Cricket in T20 after signing as official sponsor for the Black Caps, New Zealand's National cricket team. It also sponsors Victorian Bushrangers, the domestic cricket team of Australia and Mumbai Indians of the Indian Premier League. Dheeraj and East Coast Dheeraj and East Coast LLC or simply DEC is a real estate developer based in Dubai in United Arab Emirates. This Company is a"} +{"qid": "test1547", "pid": "20762160", "query": "oppo is sponsor of which country's national cricket team", "answer": "India", "passage": "\"Oppo phones\"\nOppo phones Oppo phones are smartphones produced by the Chinese company Oppo. They produce phones in their A series, Find series, F Series, N series and R series. Oppo also produces headphones and Blu-ray players under its Oppo Digital brand. The Oppo K-Series is the newest addition of smartphones under the brand, consisting of the Oppo K1 which was launched in October 2018. The Oppo F Series are selfie-centered devices in which OPPO used their tagline \"\"Selfie Expert\"\" On 3 August 2016, Oppo launched the F1s in India. The Oppo F1s is a selfie-centric phone which succeeds the Oppo F1."} +{"qid": "test1548", "pid": "4866494", "query": "how many jimmy johns are there in the us", "answer": "almost 3,000 stores", "passage": "\"Jimmy John's\"\nCoulter mentored Liautaud and “taught [him] how to effectively run multiple units.” Liautaud continued opening more stores and developed a prototype before beginning franchising in 1994. Franchising continued until 2002 when Liautaud stopped selling franchises for one year to give support for stores that were struggling. The first franchise store opened in Eau Claire, Wisconsin. In 2001, the hundredth Jimmy John's store opened in Mt. Pleasant, Michigan. In 2007, the five-hundredth store opened in Seattle, Washington, and in 2010, the thousandth opened in Beaverton, Oregon. As of March 2017, Jimmy John's has almost 3,000 stores with plans for expansion up"} +{"qid": "test155", "pid": "9768396", "query": "when did the the regulatory reform (fire safety) order 2005 first come into effect", "answer": "1 October 2006", "passage": "\"Regulatory Reform (Fire Safety) Order 2005\"\nRegulatory Reform (Fire Safety) Order 2005 The Regulatory Reform (Fire Safety) Order 2005 (officially listed as \"\"The Regulatory Reform (Fire Safety) Order 2005 S.I. 2005 No. 1541\"\") is a statutory instrument, applicable only in England and Wales. The Order places the responsibility on individuals within an organisation to carry out risk assessments to identify, manage and reduce the risk of fire. The Order was made into law on 7 June 2005 and came into force on 1 October 2006. Guidance for Businesses and Organisation is available in the form of 16 Government Published documents, with general guidance, a 5-Step Checklist"} +{"qid": "test155", "pid": "9769518", "query": "when did the the regulatory reform (fire safety) order 2005 first come into effect", "answer": "1 October 2006", "passage": "\"History of fire safety legislation in the United Kingdom\"\nand issued in 2006. See Approved Document - Part B - Fire Safety Vol 1 & 2 (available to download free from the UK Government's \"\"Planning Portal\"\" website). A major simplification and enlargement of the scope of the English and Welsh fire safety laws was implemented by the Regulatory Reform (Fire Safety) Order 2005 (RR (FS)O 2005, in force 1 October 2006). The new Fire Safety Order again amended and extended the scope of fire safety provision within the Building Regulations 2000. Building Regulation (Reg.16B) now require a developer or architect to hand over sufficient fire safety information to the"} +{"qid": "test1551", "pid": "3213577", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"Red Dragon (2002 film)\"\nRed Dragon (2002 film) Red Dragon is a 2002 horror film based on the novel of the same title by Thomas Harris. Anthony Hopkins stars as psychiatrist and serial killer, Dr. Hannibal Lecter. It is a prequel to \"\"The Silence of the Lambs\"\" (1991) and \"\"Hannibal\"\" (2001). The novel was originally adapted into the film \"\"Manhunter\"\" (1986). The film was directed by Brett Ratner and written for the screen by Ted Tally, who also wrote the screenplay for \"\"The Silence of the Lambs\"\". Hopkins reprises Lecter, a role he played twice before in \"\"The Silence of the Lambs\"\" and \"\"Hannibal\"\","} +{"qid": "test1551", "pid": "17215934", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"Hannibal Lecter (franchise)\"\nHannibal Lecter (franchise) The \"\"Hannibal Lecter\"\" franchise is an American media franchise that features the titular character, Hannibal Lecter, who originally appeared in a series of novels (starting with \"\"Red Dragon\"\" in 1981) by Thomas Harris. The series has since expanded into film and television. The first adaptation was the 1986 film \"\"Manhunter\"\", which was an adaptation of \"\"Red Dragon\"\", directed by Michael Mann. The next adaptation was 1991's \"\"The Silence of the Lambs\"\", which was directed by Jonathan Demme and was the first film to feature Anthony Hopkins in the role of Hannibal Lecter. \"\"Silence\"\" was a success, both"} +{"qid": "test1551", "pid": "3048019", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"Hannibal (film)\"\nHannibal (film) Hannibal is a 2001 American psychological horror thriller film directed by Ridley Scott, adapted from Thomas Harris's 1999 novel of the same name. It is the sequel to the 1991 Academy Award–winning film \"\"The Silence of the Lambs\"\" in which Anthony Hopkins returns to his role as the serial killer, Hannibal Lecter. Julianne Moore co-stars, in the role first held by Jodie Foster, as FBI Special Agent Clarice Starling. The film had a difficult and occasionally troubling pre-production history. When the novel was published in 1999, \"\"The Silence of the Lambs\"\" director Jonathan Demme, screenwriter Ted Tally, and"} +{"qid": "test1551", "pid": "3048082", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"Hannibal (film)\"\non novels by Thomas Harris. Hannibal (film) Hannibal is a 2001 American psychological horror thriller film directed by Ridley Scott, adapted from Thomas Harris's 1999 novel of the same name. It is the sequel to the 1991 Academy Award–winning film \"\"The Silence of the Lambs\"\" in which Anthony Hopkins returns to his role as the serial killer, Hannibal Lecter. Julianne Moore co-stars, in the role first held by Jodie Foster, as FBI Special Agent Clarice Starling. The film had a difficult and occasionally troubling pre-production history. When the novel was published in 1999, \"\"The Silence of the Lambs\"\" director Jonathan"} +{"qid": "test1551", "pid": "404956", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"The Silence of the Lambs (film)\"\nThe Silence of the Lambs (film) The Silence of the Lambs is a 1991 American psychological horror-thriller film directed by Jonathan Demme from a screenplay written by Ted Tally, adapted from Thomas Harris's 1988 novel of the same name. The film stars Jodie Foster, Anthony Hopkins, Scott Glenn, Ted Levine, and Anthony Heald. In the film, Clarice Starling, a young FBI trainee, seeks the advice of the imprisoned Dr. Hannibal Lecter, a brilliant psychiatrist and cannibalistic serial killer to apprehend another serial killer, known only as \"\"Buffalo Bill\"\", who skins his female victims' corpses. The novel was Harris's first and"} +{"qid": "test1551", "pid": "404984", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"The Silence of the Lambs (film)\"\nthe \"\"Playboy\"\" centerfold.\"\" The Silence of the Lambs (film) The Silence of the Lambs is a 1991 American psychological horror-thriller film directed by Jonathan Demme from a screenplay written by Ted Tally, adapted from Thomas Harris's 1988 novel of the same name. The film stars Jodie Foster, Anthony Hopkins, Scott Glenn, Ted Levine, and Anthony Heald. In the film, Clarice Starling, a young FBI trainee, seeks the advice of the imprisoned Dr. Hannibal Lecter, a brilliant psychiatrist and cannibalistic serial killer to apprehend another serial killer, known only as \"\"Buffalo Bill\"\", who skins his female victims' corpses. The novel was"} +{"qid": "test1551", "pid": "7498593", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"The Silence of the Lambs (novel)\"\nActor, Best Actress, and Best Screenplay. It stars Jodie Foster as Clarice Starling and Anthony Hopkins as Hannibal Lecter. In 2005, comedian-musicians Jon and Al Kaplan parodied the story, especially the film, in \"\"Silence! The Musical\"\". It premiered Off-Off-Broadway and has since had productions in London and Los Angeles. In 2012, the Los Angeles production won the Los Angeles Drama Critics Circle awards for Score, Lead Performance, and Choreography. The Silence of the Lambs (novel) The Silence of the Lambs is a novel by Thomas Harris. First published in 1988, it is the sequel to Harris' 1981 novel \"\"Red Dragon\"\"."} +{"qid": "test1551", "pid": "1426034", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"Hannibal Lecter\"\nwas \"\"Manhunter\"\" (based on \"\"Red Dragon\"\") which features Brian Cox as Lecter, spelled \"\"Lecktor\"\". In 1991, Anthony Hopkins won an Academy Award for his portrayal of the character in \"\"The Silence of the Lambs\"\". He would reprise the role in \"\"Hannibal\"\" in 2001 and in a second adaptation of \"\"Red Dragon\"\" made in 2002 under the original title. The NBC television series \"\"Hannibal\"\" debuted in 2013, and focuses on the development of the relationship between Lecter and Will Graham, an FBI profiler. In the series, Lecter is portrayed by Danish actor Mads Mikkelsen, who won a Saturn Award for his"} +{"qid": "test1551", "pid": "26419", "query": "who plays hannibal in silence of the lambs", "answer": "Anthony Hopkins", "passage": "\"Anthony Hopkins\"\nCollege of Music & Drama in 1957, he trained at the Royal Academy of Dramatic Art in London, and was then spotted by Laurence Olivier who invited him to join the Royal National Theatre. In 1968, he achieved renown, playing Richard the Lionheart in the Academy Award-winning film \"\"The Lion in Winter\"\". In the mid 1970s, Richard Attenborough, who would direct five Hopkins films, called him \"\"the greatest actor of his generation.\"\" Hopkins is perhaps best known for his portrayal of Hannibal Lecter in \"\"The Silence of the Lambs,\"\" for which he won the Academy Award for Best Actor, its"} +{"qid": "test1552", "pid": "1499557", "query": "where is the oldest civilization known to man", "answer": "Mesopotamia", "passage": "\"Culture of Iraq\"\nCulture of Iraq Iraq has one of the world's oldest cultural histories. Iraq is where the Ancient Mesopotamian civilizations were, whose legacy went on to influence and shape the civilizations of the Old World. Culturally, Iraq has a very rich heritage. The country is known for its poets and its painters and sculptors are among the best in the Arab world, some of them being world-class. Iraq is known for producing fine handicrafts, including rugs and carpets. The architecture of Iraq is seen in the sprawling metropolis of Baghdad, where the construction is mostly new, with some islands of exquisite"} +{"qid": "test1552", "pid": "14478846", "query": "where is the oldest civilization known to man", "answer": "Mesopotamia", "passage": "\"Andean civilizations\"\nIt is the oldest known civilization in the Americas and one of the Cradles of civilization where civilization separately originated in the ancient world. It flourished between the 30th century BCE and the 18th century BCE. The alternative name, Caral-Supe, is derived from the Sacred City of Caral in the Supe Valley, a large and well-studied Norte Chico site. Complex society in Norte Chico arose a millennium after Sumer in Mesopotamia, was contemporaneous with the Egyptian pyramids, and predated the Mesoamerican Olmec by nearly two millennia. The Chavín culture in Peru is thought to have been primarily a religious movement."} +{"qid": "test1552", "pid": "1499574", "query": "where is the oldest civilization known to man", "answer": "Mesopotamia", "passage": "\"Culture of Iraq\"\nand Ballet school Baghdad. Baghdad also features a number of museums including the National Museum of Iraq - which houses the world's largest and finest collection of artifacts and relics of Ancient Iraq civilizations; some of which were stolen during the Iraq War. Culture of Iraq Iraq has one of the world's oldest cultural histories. Iraq is where the Ancient Mesopotamian civilizations were, whose legacy went on to influence and shape the civilizations of the Old World. Culturally, Iraq has a very rich heritage. The country is known for its poets and its painters and sculptors are among the best"} +{"qid": "test1554", "pid": "15014697", "query": "what episode does caroline come into the originals", "answer": "Brave New World", "passage": "\"Brave New World (The Vampire Diaries)\"\nBrave New World (The Vampire Diaries) \"\"Brave New World\"\" is the 2nd episode of the second season of The CW television series, \"\"The Vampire Diaries\"\" and the 24th episode of the series overall. It originally aired on September 16, 2010. The episode was written by Brian Young and directed by John Dahl. Caroline (Candice Accola) wakes up in the hospital after Katherine (Nina Dobrev) killed her and she is hungry. She asks for food from the nurse but she sends her back to bed. Caroline smells blood from the next room and without knowing what is happening to her, she"} +{"qid": "test1556", "pid": "6356144", "query": "where is the extensor pollicis longus tendon located", "answer": "dorsally on the forearm", "passage": "\"Extensor pollicis longus muscle\"\nExtensor pollicis longus muscle In human anatomy, the extensor pollicis longus muscle (EPL) is a skeletal muscle located dorsally on the forearm. It is much larger than the extensor pollicis brevis, the origin of which it partly covers and acts to stretch the thumb together with this muscle. The extensor pollicis longus arises from the dorsal surface of the ulna and from the interosseous membrane, next to the origins of abductor pollicis longus and extensor pollicis brevis. Passing through the third tendon compartment, lying in a narrow, oblique groove on the back of the lower end of the radius, it"} +{"qid": "test1556", "pid": "6356148", "query": "where is the extensor pollicis longus tendon located", "answer": "dorsally on the forearm", "passage": "\"Extensor pollicis longus muscle\"\ninterphalangeal joint by flexor pollicis longus is considerably reduced in wrist flexion. It also applies an extensor force at the metacarpophalangeal joint together with the extensor pollicis brevis and extends and adducts at the carpometacarpal joint of the thumb. Tenosynovitis, inflammatory irritation of the synovial sheath, is relatively common in the third compartment after repetitive activities such as drum playing. Extensor pollicis longus muscle In human anatomy, the extensor pollicis longus muscle (EPL) is a skeletal muscle located dorsally on the forearm. It is much larger than the extensor pollicis brevis, the origin of which it partly covers and acts"} +{"qid": "test1557", "pid": "2833986", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"History of the Ottoman Empire\"\nguilds of writers had denounced the printing press as \"\"the Devil's Invention\"\", and were responsible for a 53-year lag between its invention by Johannes Gutenberg in Europe in c. 1440 and its introduction to the Ottoman society with the first Gutenberg press in Istanbul that was established by the Sephardic Jews of Spain in 1493 (who had migrated to the Ottoman Empire a year earlier, escaping from the Spanish Inquisition of 1492.) However, the printing press was used only by the non-Muslims in the Ottoman Empire until the 18th century. In 1726, Ibrahim Muteferrika convinced the Grand Vizier Nevşehirli Damat"} +{"qid": "test1557", "pid": "20098644", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "ChatScript\ninformation can be defined to generate appropriate facts. table: ~inventors(^who ^what) createfact(^who invent ^what) DATA: \"\"Johannes Gutenberg\"\" \"\"printing press\"\" \"\"Albert Einstein\"\" [\"\"Theory of Relativity\"\" photon \"\"Theory of General Relativity\"\"] The above table links people to what they invented (1 per line) with Einstein getting a list of things he did. ChatScript embeds the Curl library and can directly read and write facts in JSON to a website. A ChatScript engine can run in local or server mode. ChatScript comes with a copy of English WordNet embedded within, including its ontology, and creates and extends its own ontology via concept declarations."} +{"qid": "test1557", "pid": "484503", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"History of East Asia\"\nSheng in the Pinyin system). Pi Sheng's type was made of baked clay, as described by the Chinese scholar Shen Kuo (1031–1095). The world's first metal-based movable type printing press was invented in Korea in 1234, 210 years before Johannes Gutenberg invented a similar press in Germany. Jikji is the world's oldest extant movable metal print book. It was published in Heungdeok Temple in 1377, 78 years prior to Gutenberg's \"\"42-Line Bible\"\" printed during the years 1452-1455. In 1603, the Tokugawa shogunate (military dictatorship) ushered in a long period of isolation from foreign influence in order to secure its power."} +{"qid": "test1557", "pid": "11113187", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"Schweipolt Fiol\"\nPoland. Unfortunately his attempts to reform the state led to the Partitions of Poland carried out by Prussia, Austria and Russia. The world's first movable type printing technology was invented and developed in China by the Han Chinese printer Bi Sheng between the years 1041 and 1048. In the West, the invention of an improved movable type mechanical printing technology in Europe is credited to the German printer Johannes Gutenberg in 1450. The exact date of Gutenberg's press is debated based on existing screw presses. Gutenberg, a goldsmith by profession, developed a printing system by both adapting existing technologies and"} +{"qid": "test1557", "pid": "263463", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"Mass media\"\nmost known to be printed before about 1600 have not survived. The term \"\"mass media\"\" was coined with the creation of print media, which is notable for being the first example of mass media, as we use the term today. This form of media started in Europe in the Middle Ages. Johannes Gutenberg's invention of the printing press allowed the mass production of books to sweep the nation. He printed the first book, a Latin Bible, on a printing press with movable type in 1453. The invention of the printing press gave rise to some of the first forms of"} +{"qid": "test1557", "pid": "9039638", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"Global spread of the printing press\"\nGlobal spread of the printing press The global spread of the printing press began with the invention of the printing press with movable type by Johannes Gutenberg in Mainz, Germany . Western printing technology was adopted in all world regions by the end of the 19th century, displacing the manuscript and block printing. In the Western world, the operation of a press became synonymous with the enterprise of publishing and lent its name to a new branch of media, the \"\"press\"\" (see List of the oldest newspapers). Gutenberg's first major print work was the 42-line Bible in Latin, printed probably"} +{"qid": "test1557", "pid": "9039649", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"Global spread of the printing press\"\n19th century. On the effects of Gutenberg's printing Global spread of the printing press The global spread of the printing press began with the invention of the printing press with movable type by Johannes Gutenberg in Mainz, Germany . Western printing technology was adopted in all world regions by the end of the 19th century, displacing the manuscript and block printing. In the Western world, the operation of a press became synonymous with the enterprise of publishing and lent its name to a new branch of media, the \"\"press\"\" (see List of the oldest newspapers). Gutenberg's first major print work"} +{"qid": "test1557", "pid": "6960200", "query": "who invented the printing press and what year", "answer": "Johannes Gutenberg", "passage": "\"Berrow's Worcester Journal\"\nBerrow's Worcester Journal Berrow's Worcester Journal is a weekly freesheet tabloid newspaper, based in Worcester, England. Owned by Newsquest, the newspaper is delivered across central and southern Worcestershire county. Worcester was one of the earliest location in Britain to have a printing press where its first press was established in 1548 (about 100 years after Johannes Gutenberg's invention of movable type) and set up by who printed several books on it between 1548 and 1553. The first established records of a Worcester newspaper date from 1690 when Stephen Bryan founded the Worcester Post-Man, which has been published ever since, although"} +{"qid": "test1558", "pid": "20007327", "query": "who won the election for mayor in boston", "answer": "Marty J. Walsh", "passage": "\"2017 Boston mayoral election\"\n2017 Boston mayoral election The Boston mayoral election of 2017 was held on Tuesday, November 7, 2017, to elect the mayor of Boston, Massachusetts. Incumbent Democratic mayor Marty J. Walsh won re-election to a second term, defeating District 7 City Councilor Tito Jackson, and two long-shot candidates, Robert Cappucci and Joseph Wiley. A non-partisan preliminary election was held on Tuesday, September 26, 2017, with Walsh and Jackson advancing into a November runoff election. In the November election, Walsh secured a landslide victory, winning by a two-to-one margin. A total of 109,034 of the city's approximately 392,000 registered voters cast a"} +{"qid": "test1558", "pid": "20587538", "query": "who won the election for mayor in boston", "answer": "Marty Walsh", "passage": "\"2013 Boston City Council election\"\nseek re-election, as they ran for Mayor of Boston; Arroyo was eliminated in the preliminary election, while Connolly was defeated by Marty Walsh in the general election. Councillor Salvatore LaMattina was re-elected. Councillor Bill Linehan was re-elected. Councillor Frank Baker ran unopposed and was re-elected. Councillor Charles Yancey was re-elected. The seat formerly held by Robert Consalvo was won by Timothy McCarthy. Consalvo did not seek re-election, as he was running for Mayor of Boston. Councillor Matt O'Malley was re-elected. Councillor Tito Jackson was re-elected. The seat formerly held by Michael P. Ross was won by Josh Zakim. Ross did"} +{"qid": "test1559", "pid": "17348635", "query": "how many episodes in adventure time season 1", "answer": "26", "passage": "\"Adventure Time (season 6)\"\nFor the first five and a half seasons, the show aired on Monday nights. However starting with \"\"Breezy\"\", the show began to air on different days; following \"\"Breezy\"\", many episodes aired on Thursdays, although the season's seventeenth episode, \"\"Ghost Fly\"\", aired on a Tuesday night as a Halloween special. Following several months without new episodes, four installments—\"\"Everything's Jake\"\", \"\"Is That You\"\", \"\"Jake the Brick\"\", and \"\"Dentist\"\"—aired back-to-back on November 24, 25, 26, and 28, respectively. Likewise, the final six episodes of the season aired during the week of June 1, with the two-part season finale airing on June 5. In"} +{"qid": "test1559", "pid": "13267083", "query": "how many episodes in adventure time season 1", "answer": "26", "passage": "\"The New Adventures of Black Beauty\"\nepisodes were omitted. Image Entertainment released both productions on DVD in Region 1 as two seasons of the same show. The Season 1 DVD set contains all 26 episodes of the 1990-1991 production, including the two omitted by Questar. The Season 2 DVD set contains all 26 episodes of the 1992 production. In 2012 Madacy Entertainment and Image Entertainment released \"\"The Best of Black Beauty\"\", a 10 disk Region 1 box set containing 42 episodes of \"\"The Adventures of Black Beauty\"\" and 44 episodes of \"\"The New Adventures of Black Beauty\"\", with episodes from both the New Zealand and Australian"} +{"qid": "test156", "pid": "13610232", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid: Dog Days (book)\"\nDiary of a Wimpy Kid: Dog Days (book) Diary of a Wimpy Kid: Dog Days is a novel written by American author and cartoonist Jeff Kinney, and is the fourth book in the \"\"Diary of a Wimpy Kid\"\" series. It was released on October 12, 2009 in the USA and October 13, 2009, in Canada. The film, \"\"\"\", released on August 3, 2012, was based on the book and its predecessor, \"\"\"\". The book starts with Greg Heffley describing how he is more of an \"\"indoor person\"\", and how he will spend his summer vacation playing video games in the"} +{"qid": "test156", "pid": "16558330", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid: The Third Wheel\"\nDiary of a Wimpy Kid: The Third Wheel Diary of a Wimpy Kid: The Third Wheel is a 2012 bestselling children's novel and the seventh book in the Diary of a Wimpy Kid series, written by American author Jeff Kinney. Kinney announced the book in March 2012, with \"\"The Third Wheel\"\"s cover revealed in May 2012. The book was released on November 13, 2012. Greg recalls several anecdotes from the time of his conception to his preschool years, notable ones include how his mother read to him before bed, how his parents’ excessive kissing supposedly led to his premature birth,"} +{"qid": "test156", "pid": "20128718", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid: The Getaway\"\nis the 12th book in the series, and was released everywhere except Canada and China on November 7, 2017. A week since its release, it has received 4.5/5 stars on Waterstones with 786 reviews. Diary of a Wimpy Kid: The Getaway Diary of a Wimpy Kid: The Getaway is the twelfth book in the \"\"Diary of a Wimpy Kid\"\" series by Jeff Kinney. The book was unveiled during the 2017 Diary of a Wimpy Kid Virtually Live Event which was live streamed via YouTube as part of the 10th anniversary of the first book. The book was published and released"} +{"qid": "test156", "pid": "15702161", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film series)\"\nDiary of a Wimpy Kid (film series) Diary of a Wimpy Kid is a series of films based on the series of books, \"\"Diary of a Wimpy Kid\"\" by Jeff Kinney. The series consists of four films: \"\"Diary of a Wimpy Kid\"\" (2010), \"\"\"\" (2011), \"\"\"\" (2012) and the latest fourth film \"\" \"\"(2017) as well as a short film entitled \"\"Diary of a Wimpy Kid: Class Clown\"\" (2012) \"\"Diary of a Wimpy Kid\"\" was released March 19, 2010, as it moved up from a previously scheduled April 2 release date. Principal production began on September 21, 2009 and was"} +{"qid": "test156", "pid": "12300173", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid: The Last Straw\"\n\"\"The Three Stooges\"\". An advance screening for the film was held on July 31, 2012. Diary of a Wimpy Kid: The Last Straw Diary of a Wimpy Kid: The Last Straw is a novel written by American author and cartoonist Jeff Kinney, the third book in the \"\"Diary of a Wimpy Kid\"\" series. The book acts as a journal and follows the adventures of Greg Heffley, the narrator of the book, who is in the second half of his seventh-grade year. This book was released in the US on January 13, 2009. The book begins on January 1, with Greg"} +{"qid": "test156", "pid": "15692650", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid: Cabin Fever\"\nDiary of a Wimpy Kid: Cabin Fever Diary of a Wimpy Kid: Cabin Fever is a 2011 bestselling and award-winning children's book and the sixth book in the \"\"Diary of a Wimpy Kid\"\" series, written by American author Jeff Kinney. The book was released on November 15, 2011 and was the fastest-selling book of 2011, giving him the third-strongest opening-week sales for a children's author. \"\"Cabin Fever\"\" had a first printing run of six million copies, which Amulet Books stated was one of their most significant titles for that year. In 2012 Kinney won a \"\"Best Author\"\" \"\"Children's Choice Award\"\""} +{"qid": "test156", "pid": "15702167", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film series)\"\nFox in late 2014. The film was teased with the conclusion of the 2012 animated short film \"\"\"\", which ended with a scene adapted from the \"\"Cabin Fever\"\" book. As of 2018, no updates of the project have been announced since. In August 2018, CEO of 20th Century Fox Stacey Snider announced that a television series based on \"\"Diary of a Wimpy Kid\"\" is currently being developed. With the upcoming acquisition by Disney, it is possible that it will appear on one of the latter's services. Diary of a Wimpy Kid (film series) Diary of a Wimpy Kid is a"} +{"qid": "test156", "pid": "15715493", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid: Dog Days (film)\"\nDiary of a Wimpy Kid: Dog Days (film) Diary of a Wimpy Kid: Dog Days (sometimes known as Diary of a Wimpy Kid 3: Dog Days) is a 2012 American comedy film directed by David Bowers from a screenplay by Wallace Wolodarsky and Maya Forbes. It stars Zachary Gordon and Steve Zahn. Robert Capron, Devon Bostick, Rachael Harris, Peyton List, Grayson Russell, and Karan Brar also have prominent roles. It is the third installment in the \"\"Diary of a Wimpy Kid\"\" film series, and is mashup of the and in the series, but draws mostly from the fourth book. The"} +{"qid": "test156", "pid": "15702164", "query": "how many books are in the diary of a whimpy kid series", "answer": "12", "passage": "\"Diary of a Wimpy Kid (film series)\"\nin the \"\"Diary of a Wimpy Kid\"\" film series. It was released on August 3, 2012 and is based on the third book \"\"The Last Straw\"\" and the fourth book \"\"Dog Days\"\". The film was directed by David Bowers and features the same familiar cast of characters, introducing a few new ones, and also focusing on lesser characters not elaborated on in previous films, including Frank Heffley (Steve Zahn), Mr. Robert Jefferson (Alf Humphreys) and Holly Hills (Peyton List). \"\"Dog Days\"\" is the first film in the series not to be released in March. \"\"Diary of a Wimpy Kid: The"} +{"qid": "test1561", "pid": "7083220", "query": "which country has the most coastline in the world", "answer": "Canada", "passage": "Mexico\nthe United States. As of 2017, Mexico was the 6th most visited country in the world and had the 15th highest income from tourism in the world which is also the highest in Latin America. The vast majority of tourists come to Mexico from the United States and Canada followed by Europe and Asia. A smaller number also come from other Latin American countries. In the 2017 Travel and Tourism Competitiveness Report, Mexico was ranked 22nd in the world, which was 3rd in the Americas. The coastlines of Mexico harbor many stretches of beaches that are frequented by sunbathers and"} +{"qid": "test1561", "pid": "61578", "query": "which country has the most coastline in the world", "answer": "Canada", "passage": "\"Economy of Canada\"\nto its abundant natural resources and small population. Canada is unusual among developed countries in the importance of the primary sector, with the logging and oil industries being two of Canada's most important. Canada also has a sizable manufacturing sector, based in Central Canada, with the automobile industry and aircraft industry being especially important. With the world's longest coastline, Canada has the 8th largest commercial fishing and seafood industry in the world. Canada is one of the global leaders of the entertainment software industry. It is a member of the APEC, NAFTA, G7, G20, OECD and WTO. With the exception"} +{"qid": "test1562", "pid": "12051494", "query": "how many casinos are in atlantic city new jersey", "answer": "seven", "passage": "\"Casino Reinvestment Development Authority\"\nseventeen members as follows: Casino Reinvestment Development Authority The Casino Reinvestment Development Authority or CRDA is a New Jersey state governmental agency that was founded in 1984 and is responsible for directing the spending of casino reinvestment funds in public and private projects to benefit Atlantic City and other areas of the state. From 1985 through April 2008, CRDA spent US$1.5 billion on projects in Atlantic City and US$300 million throughout New Jersey. Reinvestment funds are received from New Jersey casinos, which are required by law to contribute 1.25% of gross revenue funds toward projects that are approved by the"} +{"qid": "test1566", "pid": "3901494", "query": "where did the potter's wheel first develop", "answer": "in the Near East", "passage": "\"Potter's wheel\"\narrangement allowed the potter to rotate the vessel during construction, rather than walk around it to add coils of clay. The earliest forms of the potter's wheel (called \"\"tourneys\"\" or \"\"slow wheels\"\") were probably developed as an extension to this procedure. Tournettes, in use around 4500 BC in the Near East, were turned slowly by hand or by foot while coiling a pot. Only a small range of vessels were fashioned on the tournette, suggesting that it was used by a limited number of potters. The introduction of the slow wheel increased the efficiency of hand-powered pottery production. In the"} +{"qid": "test1566", "pid": "11366697", "query": "where did the potter's wheel first develop", "answer": "in the Near East", "passage": "\"Mycenaean pottery\"\npotter's wheel was developed in the Near East around 3500 BC. This was then adopted by the people of Mesopotamia who later altered the performance of the wheel to make it faster. Around 2000 years later, during the Late Helladic period, Mycenaeans adopted the wheel. The idea behind the pottery wheel was to increase the production of pottery. The wheels consisted of a circular platform, either made of baked clay, wood or terracotta and were turned by hand; the artist usually had an assistant that turned the wheel while he molded the clay. Clay is dug from the ground, checked"} +{"qid": "test1567", "pid": "3000582", "query": "when's the last time army won the army navy game", "answer": "2017", "passage": "\"Army–Navy Game\"\nwith their comrades. The game is the last of three contests in the annual Commander-in-Chief's Trophy series, awarded to each season's winner of the triangular series between Army, Navy, and Air Force since 1972. In years when Navy and Army have each beaten Air Force before the Army–Navy Game (1972, 1977, 1978, 1996, 2005, 2012 and 2017) the Army-Navy game has also determined whether Army or Navy would win this trophy. In years when Air Force has split its two games, the Army-Navy game determines whether the trophy is shared or won outright by the winner of the game. The"} +{"qid": "test1567", "pid": "440452", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"United States Military Academy\"\nfootball began in 1890, when Navy challenged the cadets to a game of the relatively new sport. Navy defeated Army at West Point that year, but Army avenged the loss in Annapolis the following year. The rival academies still clash every December in what is traditionally the last regular-season Division I college-football game. The 2015 football season marked Navy's fourteenth consecutive victory over Army, the longest streak in the series since inception. On December 10, 2016 Army won for the first time in 14 years, beating Navy, 21–17. Navy quarterback Keenan Reynolds became the first Navy QB to beat Army"} +{"qid": "test1567", "pid": "8999849", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army Black Knights football\"\navenged the loss in Annapolis the following year. The academies still clash every December in what is traditionally the last regular-season Division I college-football game. The 2016 Army–Navy Game marked Army's first recent win after fourteen consecutive losses to Navy. From 1944 to 1950, the Cadets had 57 wins, 3 losses and 4 ties. During this time span, Army won three national championships. Army's football team reached its pinnacle of success during the Second World War under coach Earl Blaik when Army won three consecutive national championships in 1944, 1945 and 1946, and produced three Heisman trophy winners: Doc Blanchard"} +{"qid": "test1567", "pid": "15183188", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Notre Dame football rivalry\"\nseries went on a ten-year hiatus starting in 1947 and lasting until 1957. The game was played in South Bend for the first time and the Fighting Irish won 27–7. Since then, there have been infrequent meetings over the past several decades, with Army's last win coming in 1958. Like Navy, due to the small capacity of Army's Michie Stadium, the Black Knights would play their home games at a neutral site, which for a number of years was Yankee Stadium and before that, the Polo Grounds. In 1957, the game was played in Philadelphia's Municipal (later John F. Kennedy"} +{"qid": "test1567", "pid": "8888168", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Navy Midshipmen football\"\nover a football program that had won just four games over the previous five seasons. In 1950, Erdelatz led an upset of arch-rival Army. The Black Knights entered the game with an 8–0 record which had not lost in 28 contests. Army also had defeated Navy five times in the last six games. Although Navy had only a 2–6 record, an outstanding defensive effort resulted in a 14–2 victory for the Midshipmen. After two years at Navy, Erdelatz's record stood at 5–12–1, but he would never again have a losing season in his final seven seasons and would finish 5–3–1"} +{"qid": "test1567", "pid": "3000584", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Navy Game\"\nNavy with a 21–17 victory for the first time since 2001. On December 8, 2018, Army beat Navy 17-10 to increase their winning streak in the series to 3 games. Army also won the Commander in Chief's Trophy outright for just the eighth time in the trophy's history. The American national anthem was usually sung by combined members of the United States Military Academy and the United States Naval Academy choirs. Philadelphia has been the traditional home of the Army-Navy game. Eighty-eight of 119 games have been contested in Philadelphia including every game from 1932-1982 excepting three that were relocated"} +{"qid": "test1567", "pid": "5120966", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"A Civil War: Army vs. Navy\"\nA Civil War: Army vs. Navy A Civil War: Army vs. Navy is a book published in 1996 by popular sports author John Feinstein. In it, Feinstein writes about his experiences spending time with both American football teams of the United States Military Academy (Army) and the United States Naval Academy (Navy) during the 1995 season, leading up to the annual Army–Navy Game at Veterans Stadium in Philadelphia. It follows the members of each football team throughout the season, through the highs and lows of the season. Coming into the 1995 season, Army had won the previous three Army–Navy Games"} +{"qid": "test1567", "pid": "7528770", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"The Army-Navy Game (M*A*S*H)\"\nThe Army-Navy Game (M*A*S*H) \"\"The Army–Navy Game\"\" is episode #20 of the first season of the TV series \"\"M*A*S*H\"\", originally airing on February 25, 1973; its repeat on September 9, 1973 was the last official telecast in \"\"M*A*S*H\"\"s first season on CBS. The episode was co-written by cast member McLean Stevenson (\"\"Lt. Col. Henry Blake\"\"). Excitement runs high in the camp on the day of the Army-Navy football game, with several members of the 4077th putting money into a betting pool. As the game starts, the unit comes under enemy attack, causing some damage and injuries. When a bomb falls"} +{"qid": "test1567", "pid": "15183190", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Notre Dame football rivalry\"\nhave won the last 15 meetings, the longest in the rivalries history. It had been thirteen years since Army had beaten Notre Dame. In fact, the last time Army had scored against the Irish was in 1938. The Irish were the defending national champions, but lost many key players to graduation and the armed services. The Irish even lost head coach Frank Leahy to military service, and were now being led by Ed McKeever. Notre Dame went into the game 5–1 and ranked 5, coming off a 32–13 loss to Navy. The Army squad was being led by Glenn Davis"} +{"qid": "test1567", "pid": "3000583", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Navy Game\"\nrivalries Army and Navy have with Air Force are much less intense than the Army–Navy rivalry, primarily due to the relative youth of the USAFA, established in 1954, and the physical distance between the USAFA and the other two schools. The Army–Air Force and Navy–Air Force games are usually played at the academies' regular home fields, although on occasion they have been held at a neutral field. Navy won 14 Army-Navy games in a row from 2002 to 2015, the longest winning streak in the history of the series. On December 10, 2016, Army snapped its 14-game losing streak against"} +{"qid": "test1567", "pid": "1987918", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Heisman Trophy\"\nat halftime of the last major national telecast (generally a rivalry game) of the college football season. ABC essentially showed highlights since the award was handed out as part of an annual weeknight dinner at the Heisman Club. At the time, the event had usually been scheduled for the week following the Army–Navy Game. The most watched Heisman ceremony ever was in 2009 when Mark Ingram won over Toby Gerhart and Colt McCoy. On December 8, 1977, CBS (who paid $200,000 for the rights) aired a one-hour (at 10:00 p.m. Eastern Time) special to celebrate the presentation of the Heisman"} +{"qid": "test1567", "pid": "14220306", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"2004 Emerald Bowl\"\nthough Liberty Bowl organizers were seeking a matchup of more \"\"high-powered offenses\"\". After defeating the Army Black Knights with a score of 42–13 in that year's Army–Navy Game, the Midshipmen ended the regular season with a record of 9–2, the first time since the 1963 college football season that Navy had won nine or more games in a season. Wins over Army and the Air Force Falcons secured Navy's second consecutive Commander-in-Chief's Trophy. Navy's previous bowl game, the 2003 Houston Bowl, had ended in a 38–14 loss to the Texas Tech Red Raiders. The University of New Mexico Lobos accepted"} +{"qid": "test1567", "pid": "8999848", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army Black Knights football\"\nCoast Conference, and UMass belongs to the Atlantic 10 Conference. Three players from Army have won the Heisman Trophy: Doc Blanchard (1945), Glenn Davis (1946), and Pete Dawkins (1958). The three major service academies—Air Force, Army, and Navy—compete for the Commander-in-Chief's Trophy, which is awarded to the academy that defeats the others in football that year (or retained by the previous winner in the event of a three-way tie). Army's football program began on November 29, 1890, when Navy challenged the cadets to a game of the relatively new sport. Navy defeated Army at West Point that year, but Army"} +{"qid": "test1567", "pid": "5178111", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"History of American football\"\nstate of Kansas. Baker beat Kansas 22–9. On the 27th, Vanderbilt played Nashville (Peabody) at Athletic Park and won 40–0. It was the first time organized football played in the state of Tennessee. The 29th also saw the first instance of the Army–Navy Game. Navy won 24–0. The first nighttime football game was played in Mansfield, Pennsylvania on September 28, 1892 between Mansfield State Normal and Wyoming Seminary and ended at halftime in a 0–0 tie. The Army-Navy game of 1893 saw the first documented use of a football helmet by a player in a game. Joseph M. Reeves had"} +{"qid": "test1567", "pid": "12002872", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"1955 Sugar Bowl\"\nwith two first place votes. Their last game was the annual Army–Navy Game against the fifth-ranked Army Black Knights. Neither team had an edge going into the contest; both had similar records, offensive and defensive rankings, and scores against common opponents. Sportswriters considered the game to be the biggest of the season, and the Lambert-Meadowlands Trophy, awarded to the best team in the Eastern United States, would be awarded to the winner of the game. The match was closely fought throughout, but Navy managed to hold a lead for the majority of the second half, and won 27-20. They moved"} +{"qid": "test1567", "pid": "3000577", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Navy Game\"\nthe last regular-season game played in Division I FBS football. With the permanent expansion of the regular season to 12 games starting in 2006, several conference championship games joined the Army–Navy Game on its then-current date of the first weekend of December. In 2009, the game was moved from the first Saturday in December to the second Saturday; this means that it no longer conflicts with conference championship games and once again is the last non-bowl contest in college football. For much of the first half of the 20th century, both Army and Navy were often national powers, and the"} +{"qid": "test1567", "pid": "3000586", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Navy Game\"\nat Franklin Field, the home field of the University of Pennsylvania. From 1936 through 1979, all games contested in Philadelphia were held in Municipal Stadium, renamed John F. Kennedy Stadium in 1964. From 1980-2001, all games contested in Philadelphia were hosted by Veterans Stadium. Since 2003, all games contested in Philadelphia have been played in Lincoln Financial Field. In these games, Navy holds a 10-2 advantage, although the last game was won by Army. Only six games have ever been held on the campus of either academy, primarily because neither team plays at an on-campus stadium large enough to accommodate"} +{"qid": "test1567", "pid": "3000579", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Navy Game\"\nBowl VI. Wide receiver and return specialist Phil McConkey (Navy, 1979) was a popular player on the New York Giants squad that won Super Bowl XXI. Running back Napoleon McCallum (Navy, 1985) was able to complete his commitment to the Navy and play for the then-Los Angeles Raiders in 1986. After satisfying his Navy commitment, he joined the Raiders full-time. Running back Kyle Eckel (Navy, 2005) was a two-time Army-Navy Game MVP and played in the Super Bowl twice during a five year career, once with the team who originally signed him, the New England Patriots in Super Bowl XLII,"} +{"qid": "test1567", "pid": "14304708", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Percy Northcroft\"\nThe 1906 victory broke a four-game winning streak for Army. After the 1906 season, Northcroft was selected as a third-team All-American by Walter Camp for \"\"Collier's Weekly\"\" and a second-team All-American by Caspar Whitney for \"\"The Outing Magazine\"\". As a junior in 1907, Northcroft helped lead Navy to a record of 9–2–1, including eight shutouts. The 1907 Navy team also won its second consecutive victory over Army in the last game of the season. Following the 1907 season, Northcroft was elected by his fellow Midshipmen as the captain of the 1908 Navy football team. As a senior in 1908, the"} +{"qid": "test1567", "pid": "7528772", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"The Army-Navy Game (M*A*S*H)\"\ndown, Father Mulcahy wins the football pool, having placed the only bet on Navy. The Army-Navy Game (M*A*S*H) \"\"The Army–Navy Game\"\" is episode #20 of the first season of the TV series \"\"M*A*S*H\"\", originally airing on February 25, 1973; its repeat on September 9, 1973 was the last official telecast in \"\"M*A*S*H\"\"s first season on CBS. The episode was co-written by cast member McLean Stevenson (\"\"Lt. Col. Henry Blake\"\"). Excitement runs high in the camp on the day of the Army-Navy football game, with several members of the 4077th putting money into a betting pool. As the game starts, the"} +{"qid": "test1567", "pid": "19091196", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Early history of American football\"\nand won 40–0. It was the first time organized football played in the state of Tennessee. The 29th also saw the first instance of the Army–Navy Game. Navy won 24–0. Rutgers was first to extend the reach of the game. An intercollegiate game was first played in the state of New York when Rutgers played Columbia on November 2, 1872. It was also the first scoreless tie in the history of the fledgling sport. Yale football started the same year and had its first match against Columbia, the nearest college to play football. It took place at Hamilton Park in"} +{"qid": "test1567", "pid": "3000593", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Army–Navy Game\"\nCadet) quarterback Rollie Stichweh. Stichweh led off the game with a touchdown drive that featured the first use of instant replay on television. Army nearly won the game after another touchdown and two point conversion, Stichweh recovered the onside kick and drove the ball to the Navy 2 yard line. On 4th down and no timeouts, crowd noise prevented Stichweh from calling a play and time expired with the 21–15 final score. Staubach won the Heisman Trophy that year and was bumped off the scheduled cover of \"\"Life\"\" magazine due to the coverage of the assassination. Stichweh and Staubach would"} +{"qid": "test1567", "pid": "11729565", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Jimmy Lewis (lacrosse)\"\nwinner in 1964, 1965 and 1966. In 1965, Lewis led Navy to a 12 and 0 record while defeating Army 18-7 en route to the Midshipmen's fourth straight undisputed national championship. During this stretch Navy won 22nd games in a row. Lewis led Navy to three straight National Championships at a time when the top team was voted on by the USILA. This is considered the greatest stretch of lacrosse in Navy lacrosse history, an eight-year period from 1960 through 1968, where Navy won outright or shared in eight straight national titles. Lewis was elected to the National Lacrosse Hall"} +{"qid": "test1567", "pid": "12090186", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Ben Crosby\"\nhe was \"\"of the opinion that they [Navy] will certainly win\"\". Crosby also caught the attention of the press with his scheduling of more frequent practices leading up to the game, including night practices on a lighted field. He closed all press and fan access to the practices, an unusual action at the time, because Navy officials claimed that Army had learned their plays the prior year by observing the practices. Crosby's actions proved effective as, on November 26 at West Point, Navy led Army for the entire game and won easily, 12–4. About a month after the game, in"} +{"qid": "test1567", "pid": "13482182", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Frank Whitcombe\"\nand the Rugby cup. This was the start of Whitcombe's rugby union playing career with the Army. He had a sparkling career playing twenty seven times for the Army team and won two caps. on 23 February 1935 Whitcombe played on the winning Army team v Territorial Army at Taunton R.F.C. by 18 - 5. A game used as a trial match for the upcoming inter services. He then won his first cap on the winning Army Rugby Union team against the Royal Navy 11–8, on 2 March, in a famous victory with the Army team having only 13 players,"} +{"qid": "test1567", "pid": "11276987", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Ken Niumatalolo\"\nit had not seen in decades. Navy went 45–29 under Johnson and appeared in a bowl game every year from 2003 through Johnson's last season in Annapolis in 2007. The Mids also won the Commander-in-Chief's Trophy, the annual football trophy contested by Navy, Army and Air Force, from 2003 through 2007. The 2006 first-class midshipmen (seniors, Class of 2007) went 8–0 against the other academies during their careers at Navy. The Class of 2009 repeated this achievement during the 2008 season with the seventh straight victory over Army and the sixth straight victory over Air Force. Under Johnson, Navy also"} +{"qid": "test1567", "pid": "8888191", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Navy Midshipmen football\"\nthe United States Air Force Academy (Air Force). Navy controlled the trophy from 2003 to 2009, marking one of the longest times any academy has had possession of the prestigious trophy. Typically, the Navy–Air Force game is played in early October followed by Army-Navy in early December. When Navy has possession of the trophy, it is displayed in a glass case in Bancroft Hall, the Midshipmen's dormitory. Navy has won 15 Commander-in-Chief's Trophies (1973, 1975, 1978, 1979, 1981, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012, 2013, 2015). Navy has played Notre Dame in 87 annual games without interruption since"} +{"qid": "test1567", "pid": "8888187", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"Navy Midshipmen football\"\nthe national championship based on retroactive rankings by both the William Boand and Deke Houlgate mathematical poll systems. † Co-champions Navy has participated in 23 bowl games, garnering a record of 11–11–1. The Army-Navy Game, played annually on the last weekend of the college football regular season in early December, pits the football teams of the U.S. Military Academy at West Point, New York (Army) against the Navy Midshipmen. It is one of the most traditional and enduring rivalries in college football, and is televised every year by CBS. It was in the 1963 Army–Navy game that instant replay made"} +{"qid": "test1567", "pid": "18942540", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"1890 Army Cadets football team\"\nthat the planned match \"\"is beginning to assume almost national proportions.\"\" During the game, Army's quarterback Kirby Walker was knocked out of the game four times, the last time being carried off the field and to the hospital in an unconscious state. After the victory, Navy cadets in Annapolis \"\"fired twenty-four great guns, and then paraded the streets with horns.\"\" A 20-year-old Army player, Dennis Michie, was the captain of the 1890 Army football team, though he is sometimes listed as the team's head coach. Michie was the lightest player on the team at 142 pounds. Michie was killed in"} +{"qid": "test1567", "pid": "15322947", "query": "when's the last time army won the army navy game", "answer": "Army", "passage": "\"2011 Vanderbilt Commodores football team\"\nthe last game was 10–34 Georgia. Army and Vandy have played eight games since 1968. The series is tied at 4 games each. In 2009, Army won their last meeting in overtime, 13–16. Vandy has played Arkansas eight times since 1949. Vandy trails the series 2–6, and Arkansas has won the last two last games. The last game was an Arkansas win, 14–49. Vanderbilt had a chance to tie the game with :12 left in the 4th quarter, but Carey Spear missed a 27-yard field goal and hooked it right. The Hogs survived their second upset of the season, with"} +{"qid": "test1569", "pid": "91151", "query": "the resting stage of the cell cycle is", "answer": "Interphase", "passage": "\"Cell cycle\"\na series of changes that takes place in a newly formed cell and its nucleus, before it becomes capable of division again. It is also called preparatory phase or intermitosis. Previously it was called resting stage because there is no apparent activity related to cell division.Typically interphase lasts for at least 91% of the total time required for the cell cycle. Interphase proceeds in three stages, G, S, and G, followed by the cycle of mitosis and cytokinesis. The cell's nuclear DNA contents are duplicated during S phase but may continue till G in case of heterochromatin. The first phase"} +{"qid": "test1569", "pid": "294496", "query": "the resting stage of the cell cycle is", "answer": "Interphase", "passage": "\"Nuclear pore\"\nand mitochondrial transcripts. As the NPC controls access to the genome, it is essential that it exists in large amounts in stages of the cell cycle where plenty of transcription is necessary. For example, cycling mammalian and yeast cells double the amount of NPC in the nucleus between the G1 and G2 phase of the cell cycle, and oocytes accumulate large numbers of NPCs to prepare for the rapid mitosis that exists in the early stages of development. Interphase cells must also keep up a level of NPC generation to keep the levels of NPC in the cell constant as"} +{"qid": "test1569", "pid": "1731834", "query": "the resting stage of the cell cycle is", "answer": "Interphase", "passage": "Interphase\nin interphase, the cell proceeds to prophase, or in plants to preprophase, which is the first stage of mitosis. G phase is viewed as either an extended G phase where the cell is neither dividing nor preparing to divide and or as a distinct quiescent stage which occurs outside of the cell cycle. In gamete production interphase is succeeded by meiosis. In programmed cell death, interphase is followed or preempted by apoptosis. Interphase Interphase is the phase of the cell cycle in which a typical cell spends most of its life. During this phase, the cell copies its DNA in"} +{"qid": "test157", "pid": "13743153", "query": "who wrote lord have mercy on the working man", "answer": "Kostas", "passage": "\"Lord Have Mercy on the Working Man\"\nMusic Culture: From Hard Times to Heaven\"\", Curtis W. Ellison wrote that the song's music video \"\"confronted a litany of personal oppressions attributed to government policy\"\" that coincided with Bill Clinton's presidential campaign. \"\"Lord Have Mercy on the Working Man\"\" spent 20 weeks on the \"\"Billboard\"\" Hot Country Singles & Tracks (now Hot Country Songs) charts in 1992, peaking at number 5. The song also reached number 10 on the Canadian \"\"RPM\"\" Country Tracks charts. Lord Have Mercy on the Working Man \"\"Lord Have Mercy on the Working Man\"\" is a song written by Kostas and recorded by American country"} +{"qid": "test157", "pid": "13743150", "query": "who wrote lord have mercy on the working man", "answer": "Kostas", "passage": "\"Lord Have Mercy on the Working Man\"\nLord Have Mercy on the Working Man \"\"Lord Have Mercy on the Working Man\"\" is a song written by Kostas and recorded by American country music singer Travis Tritt. It was released in August 1992 as the first of five singles from his third studio album, \"\"T-R-O-U-B-L-E\"\". The song became Tritt's tenth entry on the \"\"Billboard\"\" Hot Country Singles & Tracks (now Hot Country Songs) charts, where it peaked at number 5. \"\"Lord Have Mercy on the Working Man\"\" is a moderate up-tempo whose lyrics centralize on a theme of economic injustice towards blue collar workers. The instrumentation features various"} +{"qid": "test157", "pid": "8003909", "query": "who wrote lord have mercy on the working man", "answer": "Kostas", "passage": "T-R-O-U-B-L-E\nMercy on the Working Man\"\" was the first single released from this album. This song, written by Kostas, features Brooks & Dunn, T. Graham Brown, George Jones, Little Texas, Dana McVicker, Tanya Tucker and Porter Wagoner as backing vocalists on the final chorus. Two cover songs are also included: the title track, originally a single in 1975 for Elvis Presley, and \"\"Leave My Girl Alone\"\", previously recorded by Stevie Ray Vaughan on his 1989 album \"\"In Step\"\", and Chicago blues guitarist Buddy Guy before that. Adapted from the liner notes. Guest vocals on last chorus of \"\"Lord Have Mercy on"} +{"qid": "test157", "pid": "4287976", "query": "who wrote lord have mercy on the working man", "answer": "Kostas", "passage": "\"Travis Tritt\"\nAugust of that same year, Tritt released the album \"\"T-R-O-U-B-L-E\"\". Its first single was \"\"Lord Have Mercy on the Working Man,\"\" a song written by Kostas. This song, which featured backing vocals from Brooks & Dunn, T. Graham Brown, George Jones, Little Texas, Dana McVicker (who also sang backup on Tritt's first two albums), Tanya Tucker and Porter Wagoner, peaked at number four. Its follow-up, \"\"Can I Trust You with My Heart,\"\" became Tritt's third \"\"Billboard\"\" number one in early 1993. The album's next three singles did not perform as well on the charts: the title track (a cover of"} +{"qid": "test1570", "pid": "6931412", "query": "who plays in the new mary poppins movie", "answer": "Emily Blunt", "passage": "\"Mary Poppins\"\nfilm is not a reboot or remake of the original 1964 film, Mary Poppins revisits the Banks children from the first film. It is loosely based on the other seven \"\"Mary Poppins\"\" books by Travers, and expands beyond them. Emily Blunt stars as Mary Poppins, alongside Lin-Manuel Miranda in the role of Jack, a similar character to Dick Van Dyke's Bert from the first film. It was announced on 31 May 2016 that the film is titled \"\"Mary Poppins Returns\"\" and takes place in Depression-era London, 20 years after the original film. Emily Mortimer and Ben Whishaw play grown up"} +{"qid": "test1571", "pid": "9433", "query": "branch of science that deals with the structure of human body parts", "answer": "Anatomy", "passage": "Anatomy\nAnatomy Anatomy (Greek anatomē, \"\"dissection\"\") is the branch of biology concerned with the study of the structure of organisms and their parts. Anatomy is a branch of natural science which deals with the structural organization of living things. It is an old science, having its beginnings in prehistoric times. Anatomy is inherently tied to developmental biology, embryology, comparative anatomy, evolutionary biology, and phylogeny, as these are the processes by which anatomy is generated over immediate (embryology) and long (evolution) timescales. Anatomy and physiology, which study (respectively) the structure and function of organisms and their parts, make a natural pair of"} +{"qid": "test1571", "pid": "9494", "query": "branch of science that deals with the structure of human body parts", "answer": "Anatomy", "passage": "Anatomy\nMagnetic resonance imaging, computed tomography, and ultrasound imaging have all enabled examination of internal structures in unprecedented detail to a degree far beyond the imagination of earlier generations. Anatomy Anatomy (Greek anatomē, \"\"dissection\"\") is the branch of biology concerned with the study of the structure of organisms and their parts. Anatomy is a branch of natural science which deals with the structural organization of living things. It is an old science, having its beginnings in prehistoric times. Anatomy is inherently tied to developmental biology, embryology, comparative anatomy, evolutionary biology, and phylogeny, as these are the processes by which anatomy is"} +{"qid": "test1571", "pid": "9434", "query": "branch of science that deals with the structure of human body parts", "answer": "Anatomy", "passage": "Anatomy\nrelated disciplines, and they are often studied together. Human anatomy is one of the essential basic sciences that are applied in medicine. The discipline of anatomy is divided into macroscopic and microscopic anatomy. Macroscopic anatomy, or gross anatomy, is the examination of an animal's body parts using unaided eyesight. Gross anatomy also includes the branch of superficial anatomy. Microscopic anatomy involves the use of optical instruments in the study of the tissues of various structures, known as histology, and also in the study of cells. The history of anatomy is characterized by a progressive understanding of the functions of the"} +{"qid": "test1571", "pid": "12042728", "query": "branch of science that deals with the structure of human body parts", "answer": "Anatomy", "passage": "\"Lāi-goā-kho Khàn-hō͘-ha̍k\"\nknowledge available at the time of publication. Given the motif of the book in the first chapter, it is shown as follows. This translates to: (Chapter 1: ″The structure of human body″: Anatomy, as is a part of science, and its object is studying the structure of human body…) This book served as a link between past and future in Taiwan medical history and promoted the development of earlier Taiwan medicine localization. Lāi-goā-kho Khàn-hō͘-ha̍k Lāi-goā-kho Khàn-hō͘-ha̍k (; ) is a Taiwanese-language human nursing textbook. The book was compiled by English M.D. and his Taiwanese assistant Tân Toā-lô (). It was"} +{"qid": "test1573", "pid": "1300658", "query": "disagreements involving slavery and states' rights were two of the main causes of", "answer": "the American Civil War", "passage": "\"Slavery and States' Rights\"\nSlavery and States' Rights \"\"Slavery and States' Rights\"\" was a speech given by former Confederate States Army general Joseph Wheeler on July 31, 1894. The speech deals with the American Civil War and is considered to be a \"\"Lost Cause\"\" view at the war's causation. It is generally understood to argue that the Union (or the North) was to blame for the war, and downplays slavery as a cause. The Richmond, Virginia \"\"Dispatch\"\" stated, \"\"The House of Representatives being in Committee of the Whole, on appropriations and expenditures, and having under consideration the bill to remove the charge of desertion"} +{"qid": "test1573", "pid": "1300674", "query": "disagreements involving slavery and states' rights were two of the main causes of", "answer": "the American Civil War", "passage": "\"Slavery and States' Rights\"\nfrom General Winfield Scott, \"\"Wayward sisters, part in peace.\"\" Wheeler stated, \"\"In obedience to all this advice, the Southern States did secede, and almost immediately the vast Federal armies were raised.\"\" Wheeler ended his speech by describing the magnitude of casualties killed in the war. Slavery and States' Rights \"\"Slavery and States' Rights\"\" was a speech given by former Confederate States Army general Joseph Wheeler on July 31, 1894. The speech deals with the American Civil War and is considered to be a \"\"Lost Cause\"\" view at the war's causation. It is generally understood to argue that the Union (or"} +{"qid": "test1573", "pid": "11103271", "query": "disagreements involving slavery and states' rights were two of the main causes of", "answer": "the American Civil War", "passage": "\"Issues of the American Civil War\"\nand later secession. The most controversial right claimed by Southern states was the alleged right of Southerners to spread slavery into territories owned by the United States. Under Lincoln's leadership, the war was fought to preserve the Union. With slavery so deeply divisive, Union leaders by 1862 reached the decision that slavery had to end in order for the Union to be restored. Union war evolved as the war progressed in response to political and military issues, and historians do not use them to explain the causes of the war. The key new issues were the elimination of slavery and"} +{"qid": "test1573", "pid": "1517851", "query": "disagreements involving slavery and states' rights were two of the main causes of", "answer": "the American Civil War", "passage": "\"Casus belli\"\nstates (mainly due to the economic disparities and moral questions caused by slavery) was the cause of the American Civil War, the Confederate attack on Fort Sumter (April 12–14, 1861) served as \"\"casus belli\"\" for igniting the deadliest war in American history. In the eyes of the United States, the sinking of provided \"\"casus belli\"\" for the Spanish–American War. There have been several alternative explanations for the explosion, such as that proposed by Mr. Evans, a senior editor of Newsweek. In his book, he identifies a flaw in the design of USS \"\"Maine\"\" whereby the boiler room stood right next"} +{"qid": "test1573", "pid": "11103280", "query": "disagreements involving slavery and states' rights were two of the main causes of", "answer": "the American Civil War", "passage": "\"Issues of the American Civil War\"\nwas the \"\"cornerstone of the Confederacy\"\" when the war began and then said that the war was not about slavery but states' rights after Southern defeat. Stampp said that Stephens became one of the most ardent defenders of the Lost Cause. The historian William C. Davis also mentioned inconsistencies in Southern states' rights arguments. He explained the Confederate Constitution's protection of slavery at the national level as follows: The \"\"States' rights\"\" debate cut across the issues. Southerners argued that the federal government was strictly limited and could not abridge the rights of states as reserved in the Tenth Amendment, and"} +{"qid": "test1573", "pid": "2441520", "query": "disagreements involving slavery and states' rights were two of the main causes of", "answer": "the American Civil War", "passage": "\"Origins of the American Civil War\"\nWe of the South contend that slavery is right, and that this is a confederate Republic of sovereign States.\"\" Stampp mentioned Confederate Vice President Alexander Stephens' \"\"A Constitutional View of the Late War Between the States\"\" as an example of a Southern leader who said that slavery was the \"\"cornerstone of the Confederacy\"\" when the war began and then later switched course in saying that the war was not about slavery but states' rights after the Confederacy's defeat. Stampp said that Stephens became one of the most ardent defenders of the Lost Cause. Historian William C. Davis also mentioned inconsistencies"} +{"qid": "test1574", "pid": "10651065", "query": "who wrote the song after you've gone", "answer": "Turner Layton", "passage": "\"After You've Gone (song)\"\nAfter You've Gone (song) \"\"After You've Gone\"\" is a 1918 popular song composed by Turner Layton with lyrics by Henry Creamer. It was recorded by Marion Harris on July 22, 1918, and released by Victor Records. The chorus adheres to a standard ABAC pattern but is only 20 measures long. There are four 4-bar phrases, followed by a 4 measure tag. The song is harmonically active, with chord changes almost every measure. The opening four notes are identical to the opening notes of Peg o' My Heart (1912)—at the time songwriters often borrowed the first few notes of a hit"} +{"qid": "test1574", "pid": "10651066", "query": "who wrote the song after you've gone", "answer": "Turner Layton", "passage": "\"After You've Gone (song)\"\nmelody. After You've Gone (song) \"\"After You've Gone\"\" is a 1918 popular song composed by Turner Layton with lyrics by Henry Creamer. It was recorded by Marion Harris on July 22, 1918, and released by Victor Records. The chorus adheres to a standard ABAC pattern but is only 20 measures long. There are four 4-bar phrases, followed by a 4 measure tag. The song is harmonically active, with chord changes almost every measure. The opening four notes are identical to the opening notes of Peg o' My Heart (1912)—at the time songwriters often borrowed the first few notes of a"} +{"qid": "test1574", "pid": "8458341", "query": "who wrote the song after you've gone", "answer": "Turner Layton", "passage": "\"After You've Gone (TV series)\"\nas appearing in a pilot programme for BBC Three called \"\"The Things I Haven't Told You\"\" (which has not been picked up). The theme song is \"\"After You've Gone\"\" and is performed by Jamie Cullum. The song was composed by Turner Layton with lyrics by Henry Creamer and was originally released in 1918 by Marion Harris. The BBC announced in January that it had commissioned a third series with eight episodes and a Christmas special, they also announced that a fourth series had been commissioned that included ten episodes and a festive one-off for 2009. Later the BBC made a"} +{"qid": "test1576", "pid": "611594", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "Astronomy\ncollisions of the Earth with those objects. The measurement of stellar parallax of nearby stars provides a fundamental baseline in the cosmic distance ladder that is used to measure the scale of the Universe. Parallax measurements of nearby stars provide an absolute baseline for the properties of more distant stars, as their properties can be compared. Measurements of the radial velocity and proper motion of stars allows astronomers to plot the movement of these systems through the Milky Way galaxy. Astrometric results are the basis used to calculate the distribution of speculated dark matter in the galaxy. During the 1990s,"} +{"qid": "test1576", "pid": "650704", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Visual binary\"\nparallax is another commonly used method for determining the distance to a binary system. No parallax is measured, the word is simply used to place emphasis on the fact that the distance is being estimated. In this method, the luminosity of a star is estimated from its spectrum. It is important to note that the spectra from distant stars of a given type are assumed to be the same as the spectra of nearby stars of the same type. The star is then assigned a position on the Hertzsprung-Russel diagram based on where it is in its life-cycle. The star's"} +{"qid": "test1576", "pid": "310493", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "Parallax\nthat the effect would be undetectable if the stars were far enough away, but for various reasons such gigantic distances involved seemed entirely implausible: it was one of Tycho's principal objections to Copernican heliocentrism that in order for it to be compatible with the lack of observable stellar parallax, there would have to be an enormous and unlikely void between the orbit of Saturn (then the most distant known planet) and the eighth sphere (the fixed stars). In 1989, the satellite Hipparcos was launched primarily for obtaining improved parallaxes and proper motions for over 100,000 nearby stars, increasing the reach"} +{"qid": "test1576", "pid": "1639058", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Stellar parallax\"\ndispersion based on their distance. Other uses of the term parallax in astronomy, with different meanings are the photometric parallax method, spectroscopic parallax, and dynamical parallax. Stellar parallax Stellar parallax is the apparent shift of position of any nearby star (or other object) against the background of distant objects. Created by the different orbital positions of Earth, the extremely small observed shift is largest at time intervals of about six months, when Earth arrives at exactly opposite sides of the Sun in its orbit, giving a baseline distance of about two astronomical units between observations. The parallax itself is considered"} +{"qid": "test1576", "pid": "1639046", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Stellar parallax\"\nStellar parallax Stellar parallax is the apparent shift of position of any nearby star (or other object) against the background of distant objects. Created by the different orbital positions of Earth, the extremely small observed shift is largest at time intervals of about six months, when Earth arrives at exactly opposite sides of the Sun in its orbit, giving a baseline distance of about two astronomical units between observations. The parallax itself is considered to be half of this maximum, about equivalent to the observational shift that would occur due to the different positions of Earth and the Sun, a"} +{"qid": "test1576", "pid": "1639054", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Stellar parallax\"\nwith the largest parallax), Proxima Centauri, has a parallax of 0.7687 ± 0.0003 arcsec. This angle is approximately that subtended by an object 2 centimeters in diameter located 5.3 kilometers away. In 1989 the satellite Hipparcos was launched primarily for obtaining parallaxes and proper motions of nearby stars, increasing the number of stellar parallaxes measured to milliarcsecond accuracy a thousandfold. Even so, Hipparcos is only able to measure parallax angles for stars up to about 1,600 light-years away, a little more than one percent of the diameter of the Milky Way Galaxy. The Hubble telescope WFC3 now has a precision"} +{"qid": "test1576", "pid": "2991266", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Extraterrestrial skies\"\nouter space of exoplanets can be extrapolated from open source software such as Celestia or Stellarium, and it appears that due to parallax, distant stars change their position less than nearby ones. For alien observers, the Sun would be visible to the naked human eye only at distances below 20 – 27 parsec (60–90 ly). Whenever the sun is observed from another star, it always appears on the opposite coordinates in the sky. Thus an observer located near a star with RA at 4 hr and declination −10 would see the sun located at RA: 16 hr, dec: +10. A"} +{"qid": "test1576", "pid": "26020", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Aberration of light\"\nthe apparent position of a star to an observer on Earth varies periodically over the course of a year as the Earth's velocity changes as it revolves around the Sun, by a maximum angle of approximately 20 arcseconds in right ascension or declination. The term \"\"aberration\"\" has historically been used to refer to a number of related phenomena concerning the propagation of light in moving bodies. Aberration should not be confused with \"\"parallax\"\". The latter is a change in the apparent position of a relatively nearby object, as measured by a moving observer, relative to more distant objects that define"} +{"qid": "test1576", "pid": "12961195", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"De Stella Nova\"\nobservations. Kepler also mentions the measurements made by David Fabricius in Osteel, which agreed with his own. (They were so precise that in 1943 they allowed Walter Baade to locate the supernova remnant, SNR G4.5+6.8). Kepler’s measurements allowed him to be certain that the ‘new star’ showed no parallax. Thus, as suggested by the supernova observed 32 years previously by Tycho Brahe (SN 1572), the Aristotelian doctrine that the distant stars were fixed in the firmament must be false. Kepler also mentioned his measures of the object’s brightness, which compared it with Jupiter, Venus, Mars and several nearby stars. These"} +{"qid": "test1576", "pid": "1639055", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Stellar parallax\"\nof 20 to 40 microarcseconds, enabling reliable distance measurements up to for a small number of stars. This gives more accuracy to the Cosmic distance ladder and improves the knowledge of distances in the Universe, based on the dimensions of the Earth's orbit. The European Space Agency's Gaia mission, launched 19 December 2013, is expected to measure parallax angles to an accuracy of 10 microarcseconds for all moderately bright stars, thus mapping nearby stars (and potentially planets) up to a distance of tens of thousands of light-years from Earth. Data Release 2 in 2018 claims mean errors for the parallaxes"} +{"qid": "test1576", "pid": "16907987", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Eta Lupi\"\nposition angle of 248° from the primary. It is an F-type main sequence star with a classification of F5 V and an estimated 1.29 times the Sun's mass. Eta Lupi η Lupi, often Latinised as Eta Lupi, is a probable triple star system in the southern constellation of Lupus. It is visible to the naked eye with an apparent visual magnitude of 3.41. Based upon an annual parallax shift of 27.80 mas as seen from Earth, it is located around distant from the Sun. It is a member of the Upper Centaurus Lupus subgroup of the nearby Sco OB2 association."} +{"qid": "test1576", "pid": "1720877", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "\"Gliese 1061\"\nGliese 1061 Gliese 1061 is a type of star known as a red dwarf, located approximately 12 light-years from Earth in the southern constellation of Horologium. Even though it is a relatively nearby star it has an apparent visual magnitude of about 13 so it can only be seen with at least a moderately-sized telescope. The proper motion of Gliese 1061 has been known since 1974, but it was estimated to be further away: approximately 25 light years distant based upon an estimated parallax of 0.130″. Its distance was only accurately determined in 1997 by the RECONS team. At that"} +{"qid": "test1576", "pid": "310494", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby", "passage": "Parallax\nof the method tenfold. Even so, Hipparcos is only able to measure parallax angles for stars up to about 1,600 light-years away, a little more than one percent of the diameter of the Milky Way Galaxy. The European Space Agency's Gaia mission, launched in December 2013, will be able to measure parallax angles to an accuracy of 10 microarcseconds, thus mapping nearby stars (and potentially planets) up to a distance of tens of thousands of light-years from Earth. In April 2014, NASA astronomers reported that the Hubble Space Telescope, by using spatial scanning, can now precisely measure distances up to"} +{"qid": "test1576", "pid": "310485", "query": "is parallax more pronounced with nearby stars or with distant stars", "answer": "nearby objects", "passage": "Parallax\nParallax Parallax () is a displacement or difference in the apparent position of an object viewed along two different lines of sight, and is measured by the angle or semi-angle of inclination between those two lines. Due to foreshortening, nearby objects show a larger parallax than farther objects when observed from different positions, so parallax can be used to determine distances. To measure large distances, such as the distance of a planet or a star from Earth, astronomers use the principle of parallax. Here, the term \"\"parallax\"\" is the semi-angle of inclination between two sight-lines to the star, as observed"} +{"qid": "test1577", "pid": "13170460", "query": "which two regions grow most of china’s rice", "answer": "provinces along the Yangtze River", "passage": "\"Rice production in China\"\nRice production in China Rice production in China is an important part of the national economy. China is the world's largest producer of rice, and the crop makes up a little less than half of the country's total grain output. China accounts for 30% of all world rice production. In a given year total rice output came from four different crops. The early rice crop grows primarily in provinces along the Yangtze River and in provinces in the south; it is planted in February to April and harvested in June and July and contributes about 34 percent to total rice"} +{"qid": "test1577", "pid": "13170463", "query": "which two regions grow most of china’s rice", "answer": "provinces along the Yangtze River", "passage": "\"Rice production in China\"\ntransportation systems combined to induce farmers to feed large quantities of lower quality rice to livestock. Rice production in China Rice production in China is an important part of the national economy. China is the world's largest producer of rice, and the crop makes up a little less than half of the country's total grain output. China accounts for 30% of all world rice production. In a given year total rice output came from four different crops. The early rice crop grows primarily in provinces along the Yangtze River and in provinces in the south; it is planted in February"} +{"qid": "test1578", "pid": "510020", "query": "the fertile crescent is located between what two bodies of water", "answer": "Tigris", "passage": "\"Fertile Crescent\"\ngreat semicircle, for lack of a name, may be called the Fertile Crescent. It may also be likened to the shores of a desert-bay, upon which the mountains behind look down—a bay not of water but of sandy waste, some across, forming a northern extension of the Arabian desert and sweeping as far north as the latitude of the northeast corner of the Mediterranean. This desert-bay is a limestone plateau of some height—too high indeed to be watered by the Tigris and Euphrates, which have cut cañons obliquely across it. Nevertheless, after the meager winter rains, wide tracts of the"} +{"qid": "test1578", "pid": "10227515", "query": "the fertile crescent is located between what two bodies of water", "answer": "Tigris", "passage": "\"Mesopotamian Marshes\"\nbureaucracies were developed there during the Uruk period. Due to the geographical location and ecological factors of the Fertile Crescent, a crescent-shape fertile area running from the basins of the Nile in Egypt, northwards along the Mediterranean coast in Palestine and Israel, and southwards again along the Euphrates and the Tigris towards the Persian Gulf, civilizations were able to develop agricultural and technological programmes. The crucial trigger was the availability of wild edible plant species. Farming arose early in the Fertile Crescent because the area had a large quantity of wild wheat and pulse species that were nutritious and easy"} +{"qid": "test1578", "pid": "510026", "query": "the fertile crescent is located between what two bodies of water", "answer": "Tigris", "passage": "\"Fertile Crescent\"\nThe western zone around the Jordan and upper Euphrates rivers gave rise to the first known Neolithic farming settlements (referred to as Pre-Pottery Neolithic A (PPNA), which date to around 9,000 BCE (and includes sites such as Göbekli Tepe and Jericho). This region, alongside Mesopotamia (which lies to the east of the Fertile Crescent, between the rivers Tigris and Euphrates), also saw the emergence of early complex societies during the succeeding Bronze Age. There is also early evidence from the region for writing and the formation of hierarchical statelevel societies. This has earned the region the nickname \"\"The cradle of"} +{"qid": "test1579", "pid": "6490778", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"1966–67 European Cup\"\ntop scorers from the 1966–67 European Cup (excluding preliminary round) are as follows: 1966–67 European Cup The 1966–67 season of the European Cup football club tournament was won by Celtic for the first time in the final against Internazionale, who eliminated defending champions Real Madrid in the quarter-finals. They were the first British team to win the cup and also remain the only Scottish team to do so. The Soviet Union entered its champion for the first time this season. \"\"CSKA Red Flag won 6–1 on aggregate.\"\" \"\"Vorwärts Berlin won 12–1 on aggregate.\"\" Liverpool beat Petrolul Ploiești 2–0 in a"} +{"qid": "test1579", "pid": "7516178", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"1966–67 in Scottish football\"\n1966–67 in Scottish football The 1966–67 season was the 94th season of competitive football in Scotland and the 70th season of Scottish league football. A number of significant events occurred during the season. The domestic campaign was dominated by Celtic, who along with winning all 5 tournaments they entered, became the first British team to win the European Cup; the great Celtic team who achieved this were later nicknamed the Lisbon Lions. 1966–67 was arguably Scottish football's best ever season in European football, with Rangers reaching the final of the Cup Winners Cup and Kilmarnock reaching the Fairs Cup semi-finals."} +{"qid": "test1579", "pid": "6271970", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"European Cup and UEFA Champions League history\"\nperiod is well remembered in Italy with many at the time expecting the club to match the domination of Real throughout the decade. Real Madrid, who defeated Inter in the 1966 semi-final, went to win a sixth European Cup with victory against FK Partizan in the Heysel Stadium, Brussels, of the great 1950s side, only Francisco Gento played in all six winning teams, with this Real Madrid being composed solely of Spanish players – a major contrast to the multicultural teams of five years before. In 1967, Celtic became the first British team to win the competition, coming back from"} +{"qid": "test1579", "pid": "6490775", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"1966–67 European Cup\"\n1966–67 European Cup The 1966–67 season of the European Cup football club tournament was won by Celtic for the first time in the final against Internazionale, who eliminated defending champions Real Madrid in the quarter-finals. They were the first British team to win the cup and also remain the only Scottish team to do so. The Soviet Union entered its champion for the first time this season. \"\"CSKA Red Flag won 6–1 on aggregate.\"\" \"\"Vorwärts Berlin won 12–1 on aggregate.\"\" Liverpool beat Petrolul Ploiești 2–0 in a play-off match to proceed to the Second Round. \"\"Atlético Madrid won 5–1 on"} +{"qid": "test1579", "pid": "3878791", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"Football in the United Kingdom\"\nand Chelsea (1)) Celtic became the first British club to win the Cup in 1967, beating Italian side Inter who had won 2 of the previous 3 finals 2–1 in Lisbon. The first English team to win the competition was Manchester United, who defeated two-time winners Benfica of Portugal 4–1 at Wembley a year later, in 1968. English teams enjoyed the most successful period when they won the European Cup six years in a row from 1977 to 1982. As a result of the Heysel Stadium disaster of 1985, English clubs (though not those of other British associations) were banned"} +{"qid": "test1579", "pid": "11290510", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"Celtic F.C. in European football\"\nCeltic F.C. in European football Celtic Football Club is a Scottish football club based in Glasgow, which has regularly taken part in European competitions since its first appearance in the 1962–63 Inter-Cities Fairs Cup. Since then, the club has competed in every UEFA organised competition, with the exception of the UEFA Super Cup and the defunct Intertoto Cup. The club became the first British team and only Scottish team to date to win the European Cup, by beating Inter Milan in the 1967 final. The team that defeated Inter at the final held at the Estádio Nacional in Lisbon have"} +{"qid": "test1579", "pid": "4174805", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"Sport in the United Kingdom\"\nand English domestic leagues have had success in European club competitions, most notably the UEFA Champions League or its predecessor the European Cup. Glasgow's Celtic won the 1966-67 European Cup, becoming the first British team to do so, with a team composed entirely of players born and raised within the local area around the club's stadium, while the following year, Manchester United became the first English club to win the competition, 10 years after the team had been the victim of a notorious air disaster in Munich while playing in the same competition. Liverpool, with 5 wins, is the most"} +{"qid": "test1579", "pid": "783400", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"Celtic F.C.\"\nconsecutive league titles and the 1967 European Cup. Celtic have won the Scottish league championship 49 times, most recently in 2017–18, which was their seventh consecutive championship. They have won the Scottish Cup 38 times and the Scottish League Cup 18 times. The club's greatest season was 1966–67, when Celtic became the first British team to win the European Cup, also winning the Scottish league championship, the Scottish Cup, the League Cup and the Glasgow Cup. Celtic also reached the 1970 European Cup Final and the 2003 UEFA Cup Final, losing in both. Celtic have a long-standing fierce rivalry with"} +{"qid": "test1579", "pid": "4767827", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "Umbro\nbe sponsored by Umbro. The England national team won its only title in 1966 wearing kits by Umbro (the deal had been signed in 1954). Of the 16 teams that competed, 15 wore kit manufactured by Umbro, the only exception being the USSR. At the same time, 85% of British football teams wore kits by the company, including Celtic, the first British team to win a European Cup in 1967. Liverpool FC won the first four of their five European Cups while wearing Umbro kits, in 1977, 1978, 1981 and 1984. In 1974, Umbro's founder, Harold Humphreys, died. His sons"} +{"qid": "test1579", "pid": "7516188", "query": "who was the first british team to win the european cup", "answer": "Celtic", "passage": "\"1966–67 in Scottish football\"\nagainst Wales and Northern Ireland. Bobby Brown was then appointed as the national team's first full-time manager, with the England match proving to be a memorable start to his tenure. Key: 1966–67 in Scottish football The 1966–67 season was the 94th season of competitive football in Scotland and the 70th season of Scottish league football. A number of significant events occurred during the season. The domestic campaign was dominated by Celtic, who along with winning all 5 tournaments they entered, became the first British team to win the European Cup; the great Celtic team who achieved this were later nicknamed"} +{"qid": "test1580", "pid": "13908722", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"A Rugrats Passover\"\nA Rugrats Passover \"\"A Rugrats Passover\"\" is the 26th and final episode of the third season of the American animated television series \"\"Rugrats\"\", and its 65th episode overall. It was broadcast originally on April 13, 1995, on the cable network Nickelodeon. The plot follows series regulars Grandpa Boris and the babies as they become trapped in the attic on Passover; to pass the time, Boris tells the Jewish story of the Exodus. During the episode the babies themselves reenact the story, with young Tommy portraying Moses, while his cousin Angelica represents the Pharaoh of Egypt. \"\"A Rugrats Passover\"\" was directed"} +{"qid": "test1580", "pid": "1563367", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "Rugrats\nFrom 1998 until 2004, \"\"Rugrats\"\" based-products included watches and various toys. In 2012, co-creator Arlene Klasky stated that, if Nickelodeon asked Klasky Csupo to, she would be more than happy to produce new episodes of \"\"Rugrats\"\" and bring it back for a tenth season. On September 2, 2015, it was announced on \"\"Variety\"\" that Nickelodeon may \"\"seek to experiment with retooled versions of classics\"\" that could include \"\"Rugrats\"\". The following day, \"\"The Independent\"\" announced that \"\"\"\"Rugrats\"\" could soon be back on our screens too\"\". In July 2016, it was revealed that Nickelodeon was in talks with Klasky Csupo and Paul"} +{"qid": "test1580", "pid": "1563321", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "Rugrats\nepisodes broadcast were \"\"A Rugrats Passover\"\" and \"\"A Rugrats Chanukah\"\", two Jewish-themed episodes that received critical acclaim; during this time, well after the end of the show's production run, \"\"Rugrats\"\" began to receive a boost in ratings and popularity, due to constant reruns on Nickelodeon. In 1996, Klasky Csupo Animation began producing new episodes, and the show's fourth season began airing in 1997. As a result of the show's popularity, a series of theatrical films were released; \"\"The Rugrats Movie\"\", which introduced Tommy's younger brother Dil, was released in 1998, \"\",\"\" which introduced Kimi, Kira, and Fifi, released in 2000,"} +{"qid": "test1580", "pid": "1563348", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "Rugrats\nand Paramount Home Media Distribution released Seasons 1 and 2 on DVD. In February 2018, Nickelodeon and Paramount Home Media Distribution released Seasons 3 and 4 on DVD. In Australia, all seasons have been released by Beyond Home Entertainment. Since its debut in 1991, \"\"Rugrats\"\" has generally received positive reviews from critics and fans. In a 1995 interview, Steven Spielberg (who, at the time, was producing several competing animated series for Warner Bros.) referred to the show as one of several shows that were the best children's programming at the time. Spielberg described \"\"Rugrats\"\" as \"\"sort of a TV \"\"Peanuts\"\""} +{"qid": "test1580", "pid": "14115962", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"At the Movies (Rugrats)\"\nAt the Movies (Rugrats) \"\"At the Movies\"\" is the first half of the third episode of the animated television series \"\"Rugrats.\"\" It originally aired on the television network Nickelodeon on August 25, 1991, during the series' first season. In the episode, Didi and Stu take The Rugrats to a movie theatre to see \"\"The Dummi Bears and the Land Without Smiles\"\", but Tommy is infatuated with seeing a monster movie, \"\"Reptar!\"\". He and the babies sneak out of the theater room to catch a showing of \"\"Reptar!\"\" while leaving a wake of accidental mayhem and destruction as they do. \"\"At"} +{"qid": "test1580", "pid": "14115973", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"At the Movies (Rugrats)\"\nat other times during pre-school and elementary school. This demographic was the general age of \"\"Rugrats\"\"' viewers, and likely the reason behind Reptar's species. \"\"At the Movies\"\" became available on the VHS release entitled \"\"Rugrats: Return of Reptar\"\" in 1997. The release included several other Reptar themed episodes, including \"\"Reptar 2010\"\" and \"\"Reptar on Ice.\"\" It was released both as part of a special promotional deal between Paramount Home Entertainment and Oral-B and as a re-promotion of \"\"Rugrats\"\" videos during the holiday season. \"\"At the Movies\"\" introduced characters such as Reptar and the Dummi Bears—each of whom would become recurring"} +{"qid": "test1580", "pid": "13934533", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"A Rugrats Chanukah\"\nand published by Simon & Schuster in 1997. \"\"A Rugrats Chanukah\"\" was originally broadcast on December 4, 1996, on Nickelodeon. It was repeated twice that same night, the episode received a Nielsen rating of 7.9 in the show's target demographic of children aged 2–11. On December 1, 2001, CBS broadcast the episode for the first time on its network, at 8:30 p.m. Eastern Time. Carrying a TV-Y parental rating, it followed the \"\"Rugrats\"\" Christmas special, \"\"The Santa Experience\"\". Nickelodeon has aired the episode throughout subsequent holiday seasons. \"\"A Rugrats Chanukah\"\" received overwhelmingly positive reviews from television critics, and is one"} +{"qid": "test1580", "pid": "4595076", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"The Rugrats Movie\"\ndifferent \"\"CatDog\"\" short titled \"\"\"\"Winslow's Home Videos\"\"\"\", in which Winslow shows moments of CatDog's daily lives. \"\"The Rugrats Movie\"\" was released on VHS and DVD on March 30, 1999 by Paramount Home Video, which was reprinted many times. Paramount also released the film on Laserdisc. In 2011, the film was re-released in a three-disc trilogy set alongside its sequels, in honor of \"\"Rugrats\"\"' 20th anniversary. The movie has yet to be released on Blu-ray. \"\"The Rugrats Movie: Music From the Motion Picture\"\" was released on November 3, 1998. The enhanced soundtrack contained thirteen tracks, bonus CD-ROM demos and commercials. Amazon.com's"} +{"qid": "test1580", "pid": "13908732", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"A Rugrats Passover\"\n1992 followed a call by Nickelodeon to the \"\"Rugrats\"\" production staff, pitching the concept of a special episode concerning Hanukkah. The crew agreed instead that a Passover special would offer both \"\"historical interest\"\" and a \"\"funny idea\"\", so Paul Germain—founder of the series along with Arlene Klasky and Gábor Csupó—pitched the Passover idea instead. Germain wrote the episode's teleplay along with regular \"\"Rugrats\"\" writers Peter Gaffney, Rachel Lipman, and Jonathon Greenberg; animators Jim Duffy, Steve Socki, and Jeff McGrath directed. While scripting the episode, now entitled \"\"A Rugrats Passover\"\", the writers were forced to audit many elements of the portrayal"} +{"qid": "test1580", "pid": "1563347", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "Rugrats\nreleased on June 2, 2009, along with the first and second seasons of \"\"The Fairly OddParents\"\" (although the \"\"Rugrats\"\" Season 2 was released in a \"\"Best of\"\" collection). Season 3 and 4 were released on September 23, 2011, through the CreateSpace program. Season 5 was released shortly after on October 4. On October 6, 2011, the complete Seasons 6–8 were released through CreateSpace, and Season 9 was released in a \"\"Best of\"\" collection. Amazon re-released seasons 2 & 9 as complete seasons on May 9, 2014. As of February 2017, the Amazon.com releases have been discontinued. In May 2017, Nickelodeon"} +{"qid": "test1580", "pid": "9347129", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"Reptar on Ice\"\n1999. \"\"In Search of the Mighty Reptar\"\" was a part of Nickelodeon's \"\"Rugrats Go Reptar!\"\" event that published several different other merchandise types for \"\"Rugrats,\"\" including direct-to-video releases and magazines. Reptar on Ice \"\"Reptar on Ice\"\" is the tenth episode of the second season of the animated television series \"\"Rugrats\"\". It is the first segment of the twenty-third episode for the entire series. The episode was written by Peter Gaffney and directed by Howard E. Baker. It was originally broadcast on November 8, 1992. \"\"Reptar on Ice\"\" followed the infant main characters, Tommy, Chuckie, Phil, and Lil going to an"} +{"qid": "test1580", "pid": "19881555", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"Mother's Day (Rugrats)\"\nthe show's specials, including \"\"Mother's Day\"\", earned high ratings. \"\"Mother's Day\"\" was featured on the VHS release \"\"Rugrats: Mommy Mania\"\", which came out on January 4, 1998\"\".\"\" It was included on the 2011 DVD package of the show's fourth season, with the press release listing it as one of the \"\"special episodes\"\". A writer from DVD Talk argued that the episode should also have been featured on the 2004 DVD release \"\"Rugrats Holiday Celebration\"\" given the lack of content on the collection's second disc. The releases were distributed by Viacom. The episode was later made purchasable as a digital download"} +{"qid": "test1580", "pid": "8842006", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"Peter Gaffney\"\nPeter Gaffney Peter Gaffney is an American writer and editor. He is best known for his writing work on \"\"The Simpsons\"\" and \"\"Rugrats\"\". He spent five years as a writer and creative consultant for MTV. He also made animated cartoons for both children and adults. He wrote for \"\"Recess\"\", which was created by fellow \"\"Rugrats\"\" writer Joe Ansolabehere and \"\"Rugrats\"\" creator Paul Germain. Gaffney has also co-created \"\"Aaahh!!! Real Monsters\"\" with Gabor Csupo in 1994. The show was to air on Nickelodeon especially for Halloween. It lasted for fifty-two episodes and four seasons. He has edited books such as \"\"The"} +{"qid": "test1580", "pid": "4614734", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"Rugrats in Paris: The Movie\"\ndethroned \"\"Rugrats in Paris\"\" to #3, thus placing it behind \"\"Bridget Jones\"\" and \"\"Spy Kids\"\". A third installment, entitled \"\"Rugrats Go Wild\"\", was released on June 13, 2003, featuring the characters from \"\"The Wild Thornberrys\"\". Rugrats in Paris: The Movie Rugrats in Paris: The Movie is a 2000 American animated comedy-drama film based on the Nickelodeon animated television series \"\"Rugrats\"\". It is the sequel to 1998's \"\"The Rugrats Movie\"\" and the second film in the \"\"Rugrats\"\" film series. This film marks the first appearance of new \"\"Rugrats\"\" character, Kimi Watanabe, and her mother, Kira. The film was released in the"} +{"qid": "test1580", "pid": "14421773", "query": "how many seasons of the rugrats are there", "answer": "9", "passage": "\"Judaism in Rugrats\"\nwritten by them;\"\" so she took a break so she could do research into her family memorabilia and conceive a personality to reflect in the character's voice. In 1992, Nickelodeon executives pitched the idea of making a Chanukah special to the \"\"Rugrats\"\" production team. Germain, however, responded with a Passover special instead, as he considered it to be a \"\"funny idea\"\" and of \"\"historical interest\"\". While scripting the episode, now entitled \"\"A Rugrats Passover\"\", the writers were forced to audit many elements of the portrayal of the Ten Plagues, particularly the last one, so that the episode would remain accessible"} +{"qid": "test1581", "pid": "8422616", "query": "when was the last time the womens hockey team won gold", "answer": "2018", "passage": "\"Scotland women's national field hockey team\"\nat the 2012 Olympic Games. Also with the Great Britain team, Maguire won silver at the 2012 FIH Hockey Champions Trophy (as did Bartlett), and a gold medal for winning the 2014–15 FIH Hockey World League Semi-finals. These are the 18 players selected for the Gold Coast XXI Commonwealth Games in Australia, 6th to 14th April 2018. Scotland women's national field hockey team The Scotland women's national field hockey team represents Scotland in international women's field hockey competitions, with the exception of the Olympic Games when Scottish players are eligible to play for the Great Britain women's national field hockey"} +{"qid": "test1581", "pid": "19692028", "query": "when was the last time the womens hockey team won gold", "answer": "2018", "passage": "\"United States at the 2018 Winter Olympics\"\nwomen's team sprint event. Skip John Shuster led his team to the United States' first-ever gold medal in curling, winning the men's curling over Sweden. The United States women's national ice hockey team also won the gold in the women's ice hockey tournament for the first time since the inauguration of the sport in 1998 over the four-time defending gold medalist Canada in an overtime penalty shootout. The United States earned medals in at least one event in 11 different sports, the most of any nation. These Games also witnessed the 100th Winter Olympic gold medal for the Americans, won"} +{"qid": "test1582", "pid": "17060029", "query": "when did the twenty one pilots hiatus start", "answer": "November 2016", "passage": "\"Twenty One Pilots\"\nthe band's official iconography by logos of a skull and alien head atop lines resembling keys. In November 2016, during the Blurryface World Tour, the Wood Green tube station in London was decorated in Clique-related artwork, spanning over one-hundred advertising panels. During the 2017 Tour De Columbus, Twenty One Pilots hosted a public art show, dubbed \"\"Artøpia\"\", exclusively for Clique-related artwork at the Nationwide Arena in the United States. Current members Former members Timeline Twenty One Pilots Twenty One Pilots (stylized as twenty one pilots or twenty øne piløts) is an American musical duo from Columbus, Ohio. The band was"} +{"qid": "test1583", "pid": "1369561", "query": "when did ibuprofen become available over the counter", "answer": "1983", "passage": "Ibuprofen\n1961. Adams initially tested the drug as treatment for his hangover. The drug was launched as a treatment for rheumatoid arthritis in the United Kingdom in 1969, and in the United States in 1974. Later, in 1983 and 1984, it became the first NSAID (other than aspirin) to be available over the counter (OTC) in these two countries. Dr. Adams was subsequently awarded an OBE in 1987. Boots was awarded the Queen's Award for Technical Achievement for the development of the drug in 1987. Ibuprofen was made available under prescription in the United Kingdom in 1969, and in the United"} +{"qid": "test1583", "pid": "18960214", "query": "when did ibuprofen become available over the counter", "answer": "1983", "passage": "\"Stewart Adams (chemist)\"\nin general pharmacies, but the Committee on Safety of Medicines (DHSS) declined; in April 1982, there was another request by Boots. Ibuprofen became on sale for general pharmacy (over-the-counter) in 1983, as Nurofen. Adams said in 2007 \"\"Getting the drug approved by the two countries with the toughest regulatory authorities – the UK and the US – was a goal I wanted to achieve. For me, that was the most exciting time of all.\"\" Nurofen was launched 8 August 1983 by Crookes Products Ltd. Ibuprofen went over the counter in the USA in June 1984 by the Food and Drug"} +{"qid": "test1583", "pid": "1369562", "query": "when did ibuprofen become available over the counter", "answer": "1984", "passage": "Ibuprofen\nStates in 1974. In the years since, the good tolerability profile, along with extensive experience in the population, as well as in so-called phase-IV trials (postapproval studies), have resulted in the availability of ibuprofen OTC in pharmacies worldwide, as well as in supermarkets and other general retailers. Ibuprofen is its INN, BAN, AAN and USAN approved name. Advil is manufactured by Pfizer and has been on the market since 1984. Ibuprofen is commonly available in the United States up to the FDA's 1984 dose limit OTC, rarely used higher by prescription. In 2009, the first injectable formulation of ibuprofen was"} +{"qid": "test1583", "pid": "1768086", "query": "when did ibuprofen become available over the counter", "answer": "1984", "passage": "\"Family planning\"\namong those 45–49, 29% of men and 21% of women have been sterilized. Female sterilization has been declining since 1996, when the intrauterine system was introduced. Emergency contraception has been available since the 1970s, a product was specifically licensed for emergency contraception in 1984, and emergency contraceptives became available over the counter in 2001. Since becoming available over the counter it has not reduced the use of other forms of contraception, as some moralists feared it might. In any year only 5% of women of childbearing age use emergency hormonal contraception. Despite widespread availability of contraceptives, almost half of pregnancies"} +{"qid": "test1583", "pid": "17416659", "query": "when did ibuprofen become available over the counter", "answer": "1984", "passage": "\"Prevalence of birth control\"\nNational Health Service since 1974, and 74% of reproductive age women use some form of contraception. The levonorgestrel intrauterine system has been massively popular. Sterilization is popular in older age groups, among those 45-49, 29% of men and 21% of women have been sterilized. Female sterilization has been declining since 1996, when the intrauterine system was introduced. Emergency contraception has been available since the 1970s, a product was specifically licensed for emergency contraception in 1984, and emergency contraceptives became available over the counter in 2001. Since becoming available over the counter it has not reduced the use of other forms"} +{"qid": "test1583", "pid": "10065359", "query": "when did ibuprofen become available over the counter", "answer": "1984", "passage": "Encaprin\n1984, where it was marketed as a fast acting analgesic, particularly for mild arthritis relief, while being easier on the stomach than traditional aspirin tablets, due to its distributed aspirin micro-granules. The brand saw problems early on when a trademark infringement suit was filed by SmithKline Beckman, the makers of Ecotrin. The ruling sided with Procter & Gamble, and they were allowed to keep the Encaprin name. Success for Encaprin was short-lived, however, as the product faced intense competition from Tylenol, other aspirin products, and ibuprofen brands Advil and Nuprin, which were approved for over-the counter sale in May 1984,"} +{"qid": "test1584", "pid": "10551513", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Gandhi Memorial International School\"\nschool. GMIS students from 1983 are also the singers of the Dunia Fantasi theme song. The school offers its students learning options from Nursery, PYP, MYP, IGCSE, Science and Commerce, and the Full International Baccalaureate (IB) Diploma. The GMIS follows the IB curriculum as well as the Indian Matriculation Board of secondary. GMIS is accredited by the University of Cambridge Local Examinations Syndicate (IGCSE, Examinations), and the Board of Secondary Education, Association of Indian Universities, Australian Music Examinations Board (Melbourne), University of Delhi and the University of Mumbai. GMIS is also an IB world school, certified in being a test"} +{"qid": "test1584", "pid": "17022141", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Oaktree International School, Kolkata\"\nOaktree International School, Kolkata Oaktree International School, Kolkata, West Bengal, India, is a co-educational and residential school following the IB (International Baccalaureate) syllabus. It is Eastern India's first authorized IB World School. The School is located at Joka, 15 kilometers south of the heart of Kolkata, and operates on a sprawling 30-acre site. Oaktree International School imparts the IB MYP, DP and IGCSE curriculums. It also provides full, weekly and day boarding facilities. The school currently offers Grades 6 - 12. The Mission Statement of the School is as follows: \"\"\"\"Oaktree International School will provide its students with a world-class"} +{"qid": "test1584", "pid": "18720306", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"ISE International School\"\nschool that runs the International Baccalaureate program. All classes, with the exception of second language courses, are taught in English. IB starts at eleventh grade and continues on to the end of twelfth grade when students receive their IB diploma. This is an option students would choose at the end of tenth grade to decide on what schools they want to go or what they want to do. Students from ISE have gone on to study at the following institutions of higher learning: The board of directors approved the concept and construction of a Fine Arts Center contract in November"} +{"qid": "test1584", "pid": "5655642", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"United Nations International School\"\nthe Board of Trustees is Catherine Pollard. UNIS is a member of the Council of International Schools, the International Baccalaureate Organization, the European Council of International Schools, the New York State Association of Independent Schools, the National Association of Independent Schools, the College Board and is registered with the New York Board of Regents as an independent, not-for-profit school. In the formative years, UNIS offers a school-designed curriculum, from Kindergarten to Grade 10. Junior and senior students enroll in the International Baccalaureate Diploma (IBDP) or IB Courses, where a wide range of subjects are offered. Within the framework of IB"} +{"qid": "test1584", "pid": "5191395", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"St Edward's School, Oxford\"\nSt Edward's School, Oxford St. Edward's School (known colloquially as 'Teddies') is a co-educational, independent boarding school (an English public school) in Oxford, England. Approximately sixty pupils live in each of its twelve Houses. The School is a member of the Rugby Group, the Headmasters' and Headmistresses' Conference, and the Oxfordshire Independent and State School Partnership. Termly fees in 2017/2018 are £12,190 for boarding and £9,755 for day pupils. The School teaches the GCSE, A Level and International Baccalaureate (IB) qualifications. The Sixth Form is split evenly between pupils studying A Levels and the IB Diploma. The School was founded"} +{"qid": "test1584", "pid": "9418249", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"St Paul's Grammar School\"\nInternational Baccalaureate IB Middle Years Programme Certificate; students also received the former Board of Studies School Certificate before it was scrapped in 2011. In Years 11 and 12, students can either undertake the IB Diploma Programme or the NESA Higher School Certificate. It teaches Languages Such as Latin, French, Chinese and Spanish The school's sporting facilities include a full-sized athletics oval, a smaller sports field and basketball courts. The school has a sports centre with two basketball courts and a small amount of spectator seating. This building is also used for major school functions with room for seating for 2,500"} +{"qid": "test1584", "pid": "17990626", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Learning Alliance\"\nsocieties at Learning Alliance include: Learning Alliance- Lahore Preschool offers facilities such as: http://learningalliance.edu.pk/ Learning Alliance Learning Alliance is a private, coeducational institution located in Lahore and Faisalabad, Pakistan. Founded in 1996 as Lahore Preschool, the school has since expanded to Middle and Senior school under the Cambridge International Examination board, and the International Baccalaureate (IB). It is one of the first schools in Lahore to have introduced IB education to the school curriculum, since the introduction of the Middle Years Programme (MYP), and more recently, the Primary Years Programme (PYP). Approximately 2,500 full-time learners are currently enrolled across 4"} +{"qid": "test1584", "pid": "8304291", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"San Clemente High School (San Clemente, California)\"\nV, AP Calculus AB, AP Calculus BC, and AP Statistics. The school also offers the following International Baccalaureate (IB) courses: IB Literature, IB Math Studies, IB Math (SL/HL), IB Latin American 20th Century, IB Economics, IB Biology, IB Chemistry, IB Environmental Studies, IB Physics (SL/HL), IB Languages (French, Japanese, Spanish), IB Dance (SL/HL), IB Music Appreciation (SL) and Music (SL/HL), IB Psychology, IB Theory of Knowledge (TOK). The average class size is 35. The school has about 3,000 students and about 108 teachers. The percent of teachers with a full credential is 100%. The graduation rate as of 2012 is"} +{"qid": "test1584", "pid": "17990616", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Learning Alliance\"\nLearning Alliance Learning Alliance is a private, coeducational institution located in Lahore and Faisalabad, Pakistan. Founded in 1996 as Lahore Preschool, the school has since expanded to Middle and Senior school under the Cambridge International Examination board, and the International Baccalaureate (IB). It is one of the first schools in Lahore to have introduced IB education to the school curriculum, since the introduction of the Middle Years Programme (MYP), and more recently, the Primary Years Programme (PYP). Approximately 2,500 full-time learners are currently enrolled across 4 campuses. Classes offered at Lahore Preschool (LPS) Gulberg range from Playgroup (age 2-2.5) to"} +{"qid": "test1584", "pid": "3909276", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Alec Peterson\"\nThe Story of the International Baccalaureate and the United World Colleges\"\", a historical account on the development of the IB programmes and the United World Colleges closely linked to them. Peterson died in 1988. The IBO Cardiff Headquarters building, Peterson House, is named after him. Peterson campaigned strongly against what he called 'over-specialisation' in British pre-university education. In his 1960 report \"\"Arts and Science Sides in the Sixth Form\"\", he vocally described the need for a new kind of educational system, essentially very similar to what the IB Diploma Programme eventually was to become. The new system would provide broader"} +{"qid": "test1584", "pid": "15926448", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Hong Kong Academy\"\nschool was added in September 2006 and in 2007 the board approved the inclusion of a high school programme that began in 2008/9 academic year. HKA graduated its first IB Diploma cohort in May 2012. The Hong Kong Academy Early Childhood programme consists of grades PK1-G1. Students study four International Baccalaureate (IB) Primary Years Programme (PYP) units of inquiry, integrating Art, Music, Physical Education and Mandarin. Each class has two full-time teachers. In PK1 and PK2, one is English-speaking and one is Mandarin-speaking. HKA was one of the first schools in Hong Kong to adopt the International Baccalaureate Primary Years"} +{"qid": "test1584", "pid": "18056359", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Carlsbad International School\"\nCarlsbad International School Carlsbad International School is a private, co-educational, Central European, boarding and day school for high school students, Grades 9 – 12. It is located in the UNESCO candidate spa town of Karlovy Vary, west of Prague, in the Czech Republic, was founded in 2013, and opened in 2014. In March 2015 it was accredited by the International Baccalaureate Organization to administer the IB Diploma Programme. It is a member of the Association of European Boarding Schools. Full boarding tuition is €32,500, while day students pay €21,500. In May 2017 it became a Member of the Council of"} +{"qid": "test1584", "pid": "6383083", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Hockerill Anglo-European College\"\nThe Music College was officially opened by Lord David Puttnam on 8 October 2006. It became an Academy in 2011. Hockerill has more than 800 students, with about a third boarding. There are three types of boarding; full, weekly and flexible. Full boarders generally live overseas, weekly boarders generally live elsewhere in the British Isles and flexible boarders may have parents who work long hours. Hockerill also offers the International Baccalaureate (IB) where students complete a rigorous academic programme alongside extra-curricular clubs such as sports teams, CCF, Model United Nations, Interact, debating, or Spectrum. Spectrum is Hockerill’s GSA (Gay Straight"} +{"qid": "test1584", "pid": "2751127", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"International Baccalaureate\"\norganisation (NGO) at United Nations Educational, Scientific and Cultural Organization (UNESCO) and has collaborative relationships with the Council of Europe and the Organisation Internationale de la Francophonie (OIF). The IB governance is composed of an IB Board of Governors and six committees (access and advancement, audit, education, finance, human resources and governance). The Board of Governors appoints the Director General, sets the strategic direction of the organisation, adopts a mission statement, makes policy, oversees the IB's financial management, and ensures autonomy and integrity of the IB Diploma Programme examinations and other student assessment. The structure of its different committees are"} +{"qid": "test1584", "pid": "6915648", "query": "what is the full form of ib board", "answer": "International Baccalaureate", "passage": "\"Kennebunk High School\"\nJune 2015, which passed. Advanced Placement Kennebunk High School offers Advanced Placement courses following the College Board AP curriculum. Subjects include \"\" Art, Computer Science, English Literature, English Language and Composition, Calculus (Levels AB and BC), U.S. History, European History, US Government, Comparative Governments, Chemistry, and Statistics\"\". International Baccalaureate Kennebunk High School also offers courses within the International Baccalaureate curriculum, as set by the IB Organization. Students are able to obtain certificates and the full IB diploma following the completion of their high school career. Courses taught following the International Baccalaureate curriculum include History of the Americas HL, Visual"} +{"qid": "test1585", "pid": "20123682", "query": "when did lynyrd skynyrd's plane crash happen", "answer": "October 20, 1977", "passage": "\"Street Survivors: The True Story of the Lynyrd Skynyrd Plane Crash\"\nStreet Survivors: The True Story of the Lynyrd Skynyrd Plane Crash Street Survivors: The True Story of the Lynyrd Skynyrd Plane Crash is an upcoming American musical survival drama film directed by Jared Cohn and written by Cohn and Brian Perera. The film stars Ian Shultis, Taylor Clift, Samuel Kay Forrest, Rich Dally III, Neill Byrnes, Anthony Rocco Bovo and Mark Dippolito. On June 23, 2016, it was reported that Cleopatra Entertainment was producing a biopic about the rock band, Lynyrd Skynyrd, whose plane crashed on October 20, 1977, killing three band members Ronnie Van Zant (Lead Vocals), Steve Gaines"} +{"qid": "test1585", "pid": "3870964", "query": "when did lynyrd skynyrd's plane crash happen", "answer": "October 20, 1977", "passage": "\"Ed King\"\nstraw. King's departure in 1975 happened during a particularly difficult tour which the band dubbed the \"\"Torture Tour\"\", a tour which also claimed drummer and founding member Bob Burns weeks earlier due to a mental breakdown. The band continued with only two guitarists for a few months before discovering Steve Gaines in 1976. Gaines was killed in a plane crash along with his sister Cassie Gaines and Van Zant on October 20, 1977. King was one of the guitarists in the reunited Lynyrd Skynyrd in 1987, and played a major role. He was forced to leave the band again in"} +{"qid": "test1585", "pid": "6269630", "query": "when did lynyrd skynyrd's plane crash happen", "answer": "October 20, 1977", "passage": "\"Gillsburg, Mississippi\"\nband members were seriously injured in the crash. Gillsburg was home to the Wall family, one of the last black families to be held in peonage in the United States. Gillsburg, Mississippi Gillsburg is an unincorporated community in Amite County, Mississippi. The community is part of the McComb, Mississippi Micropolitan Statistical Area. Gillsburg was the location of the October 20, 1977 plane crash that killed several members of the band Lynyrd Skynyrd. A rental plane carrying the band between shows from Greenville, South Carolina, to Louisiana State University in Baton Rouge, Louisiana, was low on fuel and crashed in a"} +{"qid": "test1585", "pid": "13408185", "query": "when did lynyrd skynyrd's plane crash happen", "answer": "October 20, 1977", "passage": "\"1977 Mississippi CV-240 crash\"\nthe crash, as Steven Tyler and Joe Perry had pressured their management into renting that specific plane for use on their tour. The doomed flight of October 20, 1977 was intended to be the last Lynyrd Skynyrd would make on the Convair CV-240. \"\"We were flying in a plane that looked like it belonged to the Clampett family,\"\" said Pyle, and the band had decided that their status as one of the world's top rock acts warranted an upgrade. After arriving in Baton Rouge, the band planned on acquiring a Learjet to replace the 30-year-old plane, which all in the"} +{"qid": "test1586", "pid": "3048752", "query": "when did cristiano ronaldo go to manchester united", "answer": "2003", "passage": "\"Cristiano Ronaldo\"\nhowever, the Manchester United players urged Ferguson to sign him. After the game, Ferguson agreed to pay Sporting £12.24 million for what he considered to be \"\"one of the most exciting young players\"\" he had ever seen. A decade after his departure from the club, in April 2013, Sporting honoured Ronaldo by selecting him to become their 100,000th member. Ronaldo became Manchester United's first-ever Portuguese player when he signed before the 2003–04 season. His transfer fee of £12.24 million made him, at the time, the most expensive teenager in English football history. Although he requested the number 28, his number"} +{"qid": "test1587", "pid": "4529531", "query": "when did the nfl adopt a salary cap", "answer": "1994", "passage": "\"Ken Norton Jr.\"\nscored a touchdown on a fumble recovery in the fourth quarter of Super Bowl XXVII, helping to seal a Cowboys victory. In 1994 when a salary cap was instituted in the NFL, the Cowboys organization felt they could find linebackers through the draft, without the need of paying a premium and adversely impacting the salary cap, so they allowed talented and productive players like Ken Norton Jr., Darrin Smith, Dixon Edwards, and Robert Jones to leave via free agency, instead of signing them into long-term contracts. During the first year of free agency, he joined the San Francisco 49ers from"} +{"qid": "test1588", "pid": "388424", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"Coat of arms of South Africa\"\nCoat of arms of South Africa The present coat of arms of South Africa was introduced on Freedom Day 27 April 2000. It replaced the earlier national arms, which had been in use since 1910. The motto ' is written in the Khoisan language of the ǀXam people and translates literally to \"\"diverse people unite\"\". The previous motto, in Latin, was ', translated as \"\"From unity, strength\"\". The design process was initiated when, in 1999, the Department of Arts, Culture, Science and Technology requested ideas for the new coat-of-arms from the public. A brief was then prepared based on the"} +{"qid": "test1588", "pid": "388431", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"Coat of arms of South Africa\"\narms were used. The original rendition (1910) was the only version used until 1930, and it continued to be used as the rank badge of warrant officers in the South African Defence Force and South African National Defence Force until 2002. The second version, painted in 1930 and known as the \"\"ordinary coat of arms\"\", and the third version, painted in 1932 and known as the \"\"embellished coat of arms\"\", were both used until 2000. Coat of arms of South Africa The present coat of arms of South Africa was introduced on Freedom Day 27 April 2000. It replaced the"} +{"qid": "test1588", "pid": "2649627", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"South African Navy\"\nthe Royal Navy and wore the same uniforms and similar insignia. In 1959 the Crown in the SAN cap badge was replaced with the Lion of Nassau from the crest of the country's coat of arms. A black beret replaced the peaked cap in working uniforms. In 2000 the new Coat of Arms was unveiled and the Chief of the Navy tasked Fleet Command to look at revising the Navy uniforms to reflect the new coat of arms. This saw new rank insignia for non commissioned officers being implemented as well as the introduction of a side cap. The rank"} +{"qid": "test1588", "pid": "388425", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"Coat of arms of South Africa\"\nideas received, along with input from the Cabinet. The Government Communication and Information System then approached Design South Africa to brief ten of the top designers. Three designers were chosen to present their concepts to the Cabinet. Iaan Bekker's design was chosen. The new arms were introduced on Freedom Day, 27 April 2000. The change reflected the government's aim to highlight the democratic change in South Africa and a new sense of patriotism. The coat of arms is a series of elements organised in distinct symmetric egg-like or oval shapes placed on top of one another. The completed structure of"} +{"qid": "test1588", "pid": "19719538", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"Coat of arms of South Africa (1910–2000)\"\nstill used for official purposes after 2000. Until 2007, the South African passport was still issued with the old coat of arms on the cover. This was attributed to the government's desire to use up old stocks of passports before issuing ones with the new design. Coat of arms of South Africa (1910–2000) The coat of arms of South Africa between 1910 and 2000 was granted to the Union of South Africa by King George V and later amended by the British College of Arms. It contained representation of the four provinces within the Union. The coat of arms was"} +{"qid": "test1588", "pid": "3248831", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"ǀXam language\"\nof all clicks save the bilabial. Other changes noted include the Blue Crane's speech, who ends the first syllable of almost every word with a /t/. ǀXam was used for the South African motto on the coat of arms adopted on 27 April 2000: The intended meaning is \"\"Diverse people unite\"\" or, on a collective scale, \"\"Unity in Diversity\"\". The word-for-word translation is \"\"people who are different meet.\"\" However, it is not known if that phrase would have been idiomatic in ǀXam. Because it is extinct, ǀXam is not one of the eleven official languages of South Africa. ǀXam language"} +{"qid": "test1588", "pid": "19719537", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"Coat of arms of South Africa (1910–2000)\"\ndenomination of the South African rand. Following the end of apartheid in the 1990s, the new Constitution of South Africa stated that the coat of arms would remain the same despite the flag and anthem changing. Nevertheless the arms were still viewed as outdated as they had been created by the white British and Afrikaner minorities without input from the black majority. In 1999, the Department of Arts and Culture held a contest to design a new coat of arms. In 2000, the coat of arms was replaced on Freedom Day. Despite the replacement, the old coat of arms was"} +{"qid": "test1588", "pid": "19719532", "query": "who unveiled the new coat of arms on 27 april 2000", "answer": "South Africa", "passage": "\"Coat of arms of South Africa (1910–2000)\"\nCoat of arms of South Africa (1910–2000) The coat of arms of South Africa between 1910 and 2000 was granted to the Union of South Africa by King George V and later amended by the British College of Arms. It contained representation of the four provinces within the Union. The coat of arms was later retained by the Republic of South Africa throughout the apartheid regime, and for a period after the end of apartheid. The 1910 coat of arms was replaced in 2000 by a more Africanised coat of arms of South Africa. The coat of arms featured a"} +{"qid": "test1589", "pid": "12472140", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "Winnie-the-Pooh\nWinnie-the-Pooh Winnie-the-Pooh, also called Pooh Bear, is a fictional anthropomorphic teddy bear created by English author A. A. Milne. The first collection of stories about the character was the book \"\"Winnie-the-Pooh\"\" (1926), and this was followed by \"\"The House at Pooh Corner\"\" (1928). Milne also included a poem about the bear in the children's verse book \"\"When We Were Very Young\"\" (1924) and many more in \"\"Now We Are Six\"\" (1927). All four volumes were illustrated by E. H. Shepard. The Pooh stories have been translated into many languages, including Alexander Lenard's Latin translation, \"\"Winnie ille Pu\"\", which was first"} +{"qid": "test1589", "pid": "4581663", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "\"The Many Adventures of Winnie the Pooh\"\nderived from three previously released animated featurettes Disney produced based upon the Winnie-the-Pooh books by A. A. Milne: \"\"Winnie the Pooh and the Honey Tree\"\" (1966), \"\"Winnie the Pooh and the Blustery Day\"\" (1968), and \"\"Winnie the Pooh and Tigger Too\"\" (1974). Extra material was used to link the three featurettes together to allow the stories to merge into each other. A fourth, shorter featurette was added to bring the film to a close, originally made during production of \"\"Blustery Day\"\" (based on the presence of Jon Walmsley as Christopher Robin). The sequence was based on the final chapter of"} +{"qid": "test1589", "pid": "18204969", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "\"Winnie the Pooh (franchise)\"\nbounce and get caught in a tree. \"\"Winnie the Pooh Discovers the Seasons\"\" is a short film made by Walt Disney Productions' educational media division, released on September 6, 1981. \"\"Winnie the Pooh and a Day for Eeyore\"\" is the Disney's Winnie the Pooh animated featurette, based on two chapters from the books \"\"Winnie-the-Pooh\"\" and \"\"The House at Pooh Corner\"\", originally released theatrically on March 11, 1983, with the 1983 re-issue of \"\"The Sword in the Stone\"\". It is the fourth and final of Disney's original theatrical featurettes adapted from the Pooh books by A. A. Milne. Produced by Rick"} +{"qid": "test1589", "pid": "6835714", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "\"Winnie the Pooh and a Day for Eeyore\"\nWinnie the Pooh and a Day for Eeyore Winnie the Pooh and a Day for Eeyore is a 1983 Disney Winnie the Pooh animated featurette, based on two chapters from the books \"\"Winnie-the-Pooh\"\" and \"\"The House at Pooh Corner\"\", originally released theatrically on March 25, 1983, with the 1983 re-issue of \"\"The Sword in the Stone\"\". It is the fourth and final of Disney's original theatrical featurettes adapted from the Pooh books by A. A. Milne. Produced by Rick Reinert Productions, this was the first Disney animated film since the 1938 Silly Symphonies short \"\"Merbabies\"\" to be produced by an"} +{"qid": "test1589", "pid": "6835726", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "\"Winnie the Pooh and a Day for Eeyore\"\nand Eeyore joins in\"\" (Chapter VI from \"\"The House at Pooh Corner\"\"), and \"\"In which Eeyore has a birthday and gets two presents\"\" (Chapter VI of \"\"Winnie the Pooh\"\"). Winnie the Pooh and a Day for Eeyore Winnie the Pooh and a Day for Eeyore is a 1983 Disney Winnie the Pooh animated featurette, based on two chapters from the books \"\"Winnie-the-Pooh\"\" and \"\"The House at Pooh Corner\"\", originally released theatrically on March 25, 1983, with the 1983 re-issue of \"\"The Sword in the Stone\"\". It is the fourth and final of Disney's original theatrical featurettes adapted from the Pooh"} +{"qid": "test1589", "pid": "19769721", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "\"Winnie-the-Pooh: The Best Bear in All the World\"\nWinnie-the-Pooh: The Best Bear in All the World Winnie-the-Pooh: The Best Bear in All the World is the second authorised sequel to A. A. Milne's original \"\"Winnie-the-Pooh\"\" stories. It was published on 6 October 2016 to mark the 90th anniversary of the publication of the first \"\"Winnie-the-Pooh\"\" book. The sequel is an anthology of four short stories, each written by a leading children's author. The four contributors are Paul Bright, Jeanne Willis, Kate Saunders, and Brian Sibley. The illustrations, in the style of the originals by E. H. Shepard, are by Mark Burgess. The book attracted national press coverage because"} +{"qid": "test1589", "pid": "4310772", "query": "how many winnie the pooh books are there", "answer": "four", "passage": "\"Walt Disney Animation Studios\"\nthe year in North America with estimated rentals of $4.75 million. A featurette adaptation of one of A. A. Milne's \"\"Winnie-the-Pooh\"\" stories, \"\"Winnie the Pooh and the Honey Tree\"\", was released in 1966, to be followed by several other \"\"Pooh\"\" featurettes over the years and a full-length compilation feature, \"\"The Many Adventures of Winnie the Pooh\"\", which was released in 1977. Walt Disney died in December 1966, ten months before the studio's next film \"\"The Jungle Book\"\", was completed and released. The film was a success, finishing 1967 as the fourth highest-grossing film of the year. Following Walt Disney's death,"} +{"qid": "test159", "pid": "17762184", "query": "what is the largest bill in american money", "answer": "$100", "passage": "\"Chicago Calling\"\nthe savings bank for safety, Bill leaves. Bobby catches up to him and gives him the boyfriend's money, over $100. They agree that Bill will use what he needs and when Bobby finds his own money, he will replace it all in a manner that will ensure the boyfriend never knows his money was taken. The phone company is closed by the time Bill arrives, so the two take in a baseball game. After the game ends, Bobby notices the money is gone from his jeans' pocket. However, they discover that someone turned it in to the lost and found."} +{"qid": "test1590", "pid": "3191904", "query": "who gets to race in the daytona clash", "answer": "Daytona Pole Award winners", "passage": "\"Advance Auto Parts Clash\"\nstart that then culminates in a 50 lap final segment. Like the All-Star Race held at Charlotte, the race awards no championship points but instead offers a large cash purse – circumstances which are supposed to encourage an all-out driving style not seen in regular-season races. The 2018 Clash at Daytona will not be a predetermined number of cars; rather, the field is limited to drivers who meet more exclusive criteria. Only drivers who were Daytona Pole Award winners, former Clash race winners, former Daytona 500 pole winners who competed full-time in 2017, and drivers who qualified for the 2017"} +{"qid": "test1590", "pid": "20504138", "query": "who gets to race in the daytona clash", "answer": "former Clash race winners", "passage": "\"2018 Advance Auto Parts Clash\"\nat 31 degrees, while the front stretch, the location of the finish line, is banked at 18 degrees. The race is 75 laps in length, and is divided into two segments; the first is 25 laps and the second is 50 laps. The race is open to those drivers who won a pole in the 2017 season or had won \"\"The Clash\"\" previously. The 2018 Clash at Daytona will not be a predetermined number of cars; rather, the field is limited to drivers who meet more exclusive criteria. Only drivers who were 2017 Pole Award winners, former Clash race winners,"} +{"qid": "test1590", "pid": "19969098", "query": "who gets to race in the daytona clash", "answer": "former Clash race winners", "passage": "\"2017 Advance Auto Parts Clash\"\nmore exclusive criteria. Only drivers who were 2016 Pole Award winners, former Clash race winners, former Daytona 500 pole winners who competed full–time in 2016 and drivers who qualified for the 2016 Chase are eligible. Brad Keselowski was the fastest in the first practice session with a time of 46.972 and a speed of . Denny Hamlin was the fastest in the final practice session with a time of 45.795 and a speed of . Brad Keselowski led the field to the green flag at 11:35 a.m. under mostly sunny skies, after it was postponed from the night before. The"} +{"qid": "test1591", "pid": "11951790", "query": "what kind of food did the woolly mammoth eat", "answer": "grass and sedges", "passage": "\"Woolly mammoth\"\ndigestion has been found in the intestines of several woolly mammoths, giving a good picture of their diet. Woolly mammoths sustained themselves on plant food, mainly grass and sedges, which were supplemented with herbaceous plants, flowering plants, shrubs, mosses, and tree matter. The composition and exact varieties differed from location to location. Woolly mammoths needed a varied diet to support their growth, like modern elephants. An adult of six tons would need to eat daily, and may have foraged as long as twenty hours every day. The two-fingered tip of the trunk was probably adapted for picking up the short"} +{"qid": "test1591", "pid": "11951751", "query": "what kind of food did the woolly mammoth eat", "answer": "grass and sedges", "passage": "\"Woolly mammoth\"\nof the woolly mammoth was mainly grass and sedges. Individuals could probably reach the age of 60. Its habitat was the mammoth steppe, which stretched across northern Eurasia and North America. The woolly mammoth coexisted with early humans, who used its bones and tusks for making art, tools, and dwellings, and the species was also hunted for food. It disappeared from its mainland range at the end of the Pleistocene 10,000 years ago, most likely through climate change and consequent shrinkage of its habitat, hunting by humans, or a combination of the two. Isolated populations survived on St. Paul Island"} +{"qid": "test1593", "pid": "18526936", "query": "when does kubo and the two strings release", "answer": "August 19, 2016", "passage": "\"Kubo and the Two Strings\"\nteam at one point purchased an industrial robot off of eBay but found that it would not work with their setup. Dario Marianelli composed and conducted the score for the film. The film screened at the Melbourne International Film Festival on August 13, 2016, and was theatrically released in the United States on August 19, 2016. \"\"Kubo and the Two Strings\"\" grossed $48 million in North America and $29.5 million in other territories for a worldwide total of $77.5 million, against a budget of $60 million. In the United States, the film was released on August 19, 2016, alongside \"\"Ben-Hur\"\""} +{"qid": "test1593", "pid": "18938954", "query": "when does kubo and the two strings release", "answer": "August 19, 2016", "passage": "\"The Space Between Us (film)\"\nwas later switched with STX's other release, \"\"Bad Moms\"\", and was moved its release date later to August 19, 2016. However, \"\"Kubo and the Two Strings\"\", \"\"Ben-Hur\"\", and \"\"War Dogs\"\" were all slated for August 19, 2016 and STX Entertainment moved its release date later to December 21, 2016, allowing more time for work on the visual effects. The film's release date was later moved to December 16, 2016, and finally STX Entertainment moved its release date later to February 3, 2017. \"\"The Space Between Us\"\" grossed $7.9 million in the United States and Canada and $6.9 million in other"} +{"qid": "test1593", "pid": "18442210", "query": "when does kubo and the two strings release", "answer": "August 19, 2016", "passage": "\"War Dogs (2016 film)\"\nterritories for a worldwide total of $86.2 million, against a budget of $40 million. In the United States and Canada, \"\"War Dogs\"\" was released on August 19, 2016, alongside \"\"Ben-Hur\"\" and \"\"Kubo and the Two Strings\"\", and was projected to gross $12–15 million from 3,100 theaters in its opening weekend. The film made $1.3 million from its Thursday night previews and $5.5 million on its first day (including previews). It went on to gross $14.3 million in its opening weekend, finishing third at the box office and first among new releases. \"\"War Dogs\"\" received mixed reviews from critics. On Rotten"} +{"qid": "test1594", "pid": "5552609", "query": "what is the hot coffee mod in san andreas", "answer": "a normally inaccessible mini-game", "passage": "\"Hot Coffee mod\"\nHot Coffee mod Hot Coffee is a normally inaccessible mini-game in the 2004 video game \"\"\"\", developed by Rockstar North. Public awareness of the existence of the mini-game arrived with the release of the \"\"Hot Coffee\"\" mod, created for the Microsoft Windows port of \"\"GTA: San Andreas\"\" in 2005. This mod enables access to the mini-game. The mini-game portrays animated sexual intercourse between the main character, Carl \"\"CJ\"\" Johnson, and his chosen in-game girlfriend. The name of the mod is derived from the girlfriend's offer for the main character to come into her home for \"\"coffee\"\", a euphemism for sex."} +{"qid": "test1594", "pid": "5552629", "query": "what is the hot coffee mod in san andreas", "answer": "a normally inaccessible mini-game", "passage": "\"Hot Coffee mod\"\nto the controversy over the game and over backdating allegations for just over $20 million. Hot Coffee mod Hot Coffee is a normally inaccessible mini-game in the 2004 video game \"\"\"\", developed by Rockstar North. Public awareness of the existence of the mini-game arrived with the release of the \"\"Hot Coffee\"\" mod, created for the Microsoft Windows port of \"\"GTA: San Andreas\"\" in 2005. This mod enables access to the mini-game. The mini-game portrays animated sexual intercourse between the main character, Carl \"\"CJ\"\" Johnson, and his chosen in-game girlfriend. The name of the mod is derived from the girlfriend's offer"} +{"qid": "test1594", "pid": "18992372", "query": "what is the hot coffee mod in san andreas", "answer": "a normally inaccessible mini-game", "passage": "\"Modding in Grand Theft Auto\"\nofficial modification tool Rockstar has released is \"\"Rockstar Editor\"\", a tool which allows users to record and edit videos in-game. Options such as effects, audio, speed, cameras and navigation tools are made available to the player. \"\"Hot Coffee\"\" is a normally inaccessible mini-game in \"\"\"\". The mini-game portrays crudely animated sexual intercourse between the main character and a chosen partner. After Patrick Wildenborg, who also went by the alias \"\"PatrickW\"\", modified the game to make the mini-game accessible, \"\"Hot Coffee\"\" quickly gained notoriety worldwide, impacting consumer culture, politics and the video game industry as a whole. Rockstar initially blamed a"} +{"qid": "test1598", "pid": "278111", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "Mitosis\ncycle—the division of the mother cell into two daughter cells genetically identical to each other. The process of mitosis is divided into stages corresponding to the completion of one set of activities and the start of the next. These stages are prophase, prometaphase, metaphase, anaphase, and telophase. During mitosis, the chromosomes, which have already duplicated, condense and attach to spindle fibers that pull one copy of each chromosome to opposite sides of the cell. The result is two genetically identical daughter nuclei. The rest of the cell may then continue to divide by cytokinesis to produce two daughter cells. Producing"} +{"qid": "test1598", "pid": "576710", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "Fertilisation\nzygote. This is the point when fertilisation actually occurs; pollination and fertilisation are two separate processes. The nucleus of the other sperm cell fuses with two haploid polar nuclei (contained in the central cell) in the centre of the gametophyte. The resulting cell is triploid (3n). This triploid cell divides through mitosis and forms the endosperm, a nutrient-rich tissue, inside the seed. The two central-cell maternal nuclei (polar nuclei) that contribute to the endosperm arise by mitosis from the single meiotic product that also gave rise to the egg. Therefore, maternal contribution to the genetic constitution of the triploid endosperm"} +{"qid": "test1598", "pid": "91155", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "\"Cell cycle\"\na spindle. The relatively brief \"\"M phase\"\" consists of nuclear division (karyokinesis). It is a relatively short period of the cell cycle. M phase is complex and highly regulated. The sequence of events is divided into phases, corresponding to the completion of one set of activities and the start of the next. These phases are sequentially known as: Mitosis is the process by which a eukaryotic cell separates the chromosomes in its cell nucleus into two identical sets in two nuclei. During the process of mitosis the pairs of chromosomes condense and attach to fibers that pull the sister chromatids"} +{"qid": "test1598", "pid": "278110", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "Mitosis\nMitosis In cell biology, mitosis () is a part of the cell cycle when replicated chromosomes are separated into two new nuclei. Cell division gives rise to genetically identical cells in which the number of chromosomes is maintained. In general, mitosis (division of the nucleus) is preceded by the S stage of interphase (during which the DNA is replicated) and is often accompanied or followed by cytokinesis, which divides the cytoplasm, organelles and cell membrane into two new cells containing roughly equal shares of these cellular components. Mitosis and cytokinesis together define the mitotic (M) phase of an animal cell"} +{"qid": "test1598", "pid": "15904843", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "Amitosis\ncolleagues have demonstrated that such nuclei, derived from polyploid placental cells, receive one or more than onr copies of a microscopically identifiable region of the chromatin, demonstrating that even without the reassuring iconography of identical chromosomes being distributed into \"\"identical\"\" daughter cells, this particular amitotic process results in representative transmission of chromatin. Studying rat polyploid trophoblasts, this research group has shown that the nuclear envelope of the giant nucleus is involved in this subdivision of a highly polyploid nucleus into low-ploidy nuclei (Zybina and Zybina). Polyploid cells are also at the heart of experiments to determine how some cells may"} +{"qid": "test1598", "pid": "13471166", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "Karyorelictea\nincluding karyorelicteans, possess two different kinds of nucleus, which separate the functions of gene expression and sexual recombination. The macronuclei, or somatic nuclei, are the site of transcription, while the smaller micronuclei, or germline nuclei, are only active during sexual reproduction, where they first undergo meiosis to form gametic nuclei, which are exchanged when two mating cells conjugate. Two gametic nuclei fuse to form a zygotic nucleus, which divides by mitosis into two daughter nuclei, one of which develops into a new micronucleus and the other into a macronucleus; the old macronucleus typically disintegrates (see main article). In most ciliates,"} +{"qid": "test1598", "pid": "91156", "query": "state the process that divides one nucleus into two genetically identical nuclei", "answer": "mitosis", "passage": "\"Cell cycle\"\nto opposite sides of the cell. Mitosis occurs exclusively in eukaryotic cells, but occurs in different ways in different species. For example, animals undergo an \"\"open\"\" mitosis, where the nuclear envelope breaks down before the chromosomes separate, while fungi such as \"\"Aspergillus nidulans\"\" and \"\"Saccharomyces cerevisiae\"\" (yeast) undergo a \"\"closed\"\" mitosis, where chromosomes divide within an intact cell nucleus. Prokaryotic cells, which lack a nucleus, divide by a process called binary fission. Mitosis is immediately followed by cytokinesis, which divides the nuclei, cytoplasm, organelles and cell membrane into two cells containing roughly equal shares of these cellular components. Mitosis and"} +{"qid": "test1599", "pid": "786712", "query": "who is the originator of the plan-do-check-act model of performance improvement", "answer": "W. Edwards Deming", "passage": "\"W. Edwards Deming\"\nis a common myth to credit Plan-Do-Check-Act (PDCA) to Deming. Deming referred to the PDCA cycle as a \"\"corruption.\"\" Deming worked from the Shewhart cycle and over time eventually developed the Plan-Do-Study-Act (PDSA) cycle, which has the idea of deductive and inductive learning built into the learning and improvement cycle. Deming finally published the PDSA cycle in 1993, in \"\"The New Economics\"\" on p. 132. Deming has added to the myth that he taught the Japanese the PDSA cycle with this quote on p. 247, \"\"The PDSA Cycle originated in my teaching in Japan in 1950. It appeared in the"} +{"qid": "test1599", "pid": "11270057", "query": "who is the originator of the plan-do-check-act model of performance improvement", "answer": "W. Edwards Deming", "passage": "\"Change management\"\npyramid with project management managing technical aspects and people implementing change at the base and leadership setting the direction at the top. The Change Management Model consists of four stages: The Plan-Do-Check-Act Cycle, created by W. Edwards Deming, is a management method to improve business method for control and continuous improvement of When determining which of the latest techniques or innovations to adopt, there are four major factors to be considered: Although there are many types of organizational changes, the critical aspect is a company's ability to win the buy-in of their organization's employees on the change. Effectively managing organizational"} +{"qid": "test1599", "pid": "17405193", "query": "who is the originator of the plan-do-check-act model of performance improvement", "answer": "W. Edwards Deming", "passage": "\"Knowledge society\"\nand teaching. The ability to individually reflect on personal learning requirements and seek knowledge in whatever method is appropriate characterizes lifelong learning. One model that supports this type of learning is the W. Edwards Deming Plan-do-check-act cycle that promotes continuous improvement. Educational professionals will need to prepare learners to be accountable for their own lifelong learning. Knowledge society A knowledge society generates, shares and makes available to all members of the society knowledge that may be used to improve the human condition. A knowledge society differs from an information society in that the former serves to transform information into resources"} +{"qid": "test1599", "pid": "3482741", "query": "who is the originator of the plan-do-check-act model of performance improvement", "answer": "W. Edwards Deming", "passage": "PDCA\nproceed with a better base-line. Work in the next do phase should not create recurrence of the identified issues; if it does, then the action was not effective. PDCA was made popular by W. Edwards Deming, who is considered by many to be the father of modern quality control; however, he always referred to it as the \"\"Shewhart cycle\"\". Later in Deming's career, he modified PDCA to \"\"Plan, Do, Study, Act\"\" (PDSA) because he felt that \"\"check\"\" emphasized inspection over analysis. The PDSA cycle was used to create the model of know-how transfer process, and other models. The concept of"} +{"qid": "test16", "pid": "17771467", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"The Curse of Oak Island\"\nInc. approved $1,271,546 in film funding for the production of the 4th season. In October 2017, a fifth season was announced, which began airing on November 7, 2017. Season 6 began airing November 13, 2018. The Curse of Oak Island The Curse of Oak Island is an active reality television series that first premiered in Canada on the History network on January 5, 2014. The show features what is known as the Oak Island mystery, showing efforts to search for historical artifacts and treasure. \"\"The Curse of Oak Island\"\" follows brothers Marty and Rick Lagina, originally from Kingsford, Michigan, through"} +{"qid": "test16", "pid": "17771463", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"The Curse of Oak Island\"\nThe Curse of Oak Island The Curse of Oak Island is an active reality television series that first premiered in Canada on the History network on January 5, 2014. The show features what is known as the Oak Island mystery, showing efforts to search for historical artifacts and treasure. \"\"The Curse of Oak Island\"\" follows brothers Marty and Rick Lagina, originally from Kingsford, Michigan, through their efforts to find the speculated treasure or historical artifacts believed to be on Oak Island. The series discusses the history of the island, recent discoveries, theories, and prior attempts to investigate the site. Areas"} +{"qid": "test16", "pid": "20242388", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"Randall Sullivan\"\nthe documentary \"\"Reckless Indifference\"\", and he was an executive producer on the Oprah Winfrey Network mini-series, \"\"Miracle Detectives\"\". Sullivan is also an actor on the History Channel reality-TV show, \"\"The Curse of Oak Island\"\", where he plays himself. He is currently executive producing the upcoming film, \"\"City of Lies\"\" starring Johnny Depp and Forest Whitaker. Sullivan lives in Portland, Oregon. For most of his life Sullivan identified as an atheist, but in 1995 he underwent a spiritual conversion to Catholicism while he was in Medjugorje reporting on the Bosnian War. This experience was influential to his research and writing of"} +{"qid": "test16", "pid": "17201022", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"Lori Verderame\"\nLori Verderame Lori Verderame (best known as Dr. Lori) is a TV personality, author, art, collectibles, and antiques appraiser with a Ph.D. in art, antiques and architectural history from Penn State University. She resides in Bucks County, Pennsylvania. Dr. Lori Verderame is the award winning antiquities expert on the History channel’s #1 rated TV show, The Curse of Oak Island which airs internationally on the History Channel. She is also the star appraiser on the American TV show \"\"Auction Kings\"\" which airs internationally on Discovery channel. On Discovery's Auction Kings, she appraised Thomas Jefferson's writing desk, Elizabeth Taylor's photographs from"} +{"qid": "test16", "pid": "9076710", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"Kevin Burns\"\nValkyrie Legacy\"\", his second co-production with Bryan Singer; and \"\"\"\" in 2009. Since 2010, Burns and his company Prometheus Entertainment have produced The History Channel TV series \"\"Ancient Aliens\"\", \"\"America's Book of Secrets\"\", and \"\"The Curse of Oak Island\"\" along with the reality TV series \"\"Kendra on Top\"\" for WEtv, and other non-fiction series and specials. Along with his business partner Jon Jashni, Burns played an integral part in the development and creation of the \"\"Lost in Space\"\" reboot for Netflix and will serve as executive producer on the show, slated for release in 2018. Primetime Emmy Awards Daytime Emmy"} +{"qid": "test16", "pid": "19871746", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"Frederick G. Nolan\"\nFrederick G. Nolan Frederick G. Nolan (July 5, 1927 – June 4, 2016) was a land surveyor as well as a known Oak Island treasure hunter. He has appeared on the History Channel's TV series about the Island, The Curse of Oak Island, in episodes 7 and 8 of season 3. Nolan was one of the first land surveyors in the province of Nova Scotia to receive designation as a Provincial Land Surveyor. With his brother he opened a surveying company called Nolan Brothers Surveys. Some of their notable works include the layout of the entire Westmount Subdivision at the"} +{"qid": "test16", "pid": "19871748", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"Frederick G. Nolan\"\non June 4, 2016, at the age of 88. Frederick G. Nolan Frederick G. Nolan (July 5, 1927 – June 4, 2016) was a land surveyor as well as a known Oak Island treasure hunter. He has appeared on the History Channel's TV series about the Island, The Curse of Oak Island, in episodes 7 and 8 of season 3. Nolan was one of the first land surveyors in the province of Nova Scotia to receive designation as a Provincial Land Surveyor. With his brother he opened a surveying company called Nolan Brothers Surveys. Some of their notable works include"} +{"qid": "test16", "pid": "17771464", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"The Curse of Oak Island\"\nof interest include the \"\"Money Pit\"\", Borehole 10-x, Smith's Cove, \"\"Nolan's Cross\"\", the \"\"Hatch\"\", the \"\"Watchtower\"\" and the \"\"Swamp\"\". The Lagina brothers became fascinated with the island after reading the January 1965 issue of \"\"Reader's Digest\"\" magazine that features an article on the Restall family's work to investigate the so-called \"\"Money Pit\"\". Marty and his brother Rick obtained a controlling interest in Oak Island Tours, which reportedly owns most of the island. The brothers were later approached by Prometheus Entertainment to do a reality show. Rick and Marty have engaged the assistance of father-and-son Dan and Dave Blankenship, permanent residents"} +{"qid": "test16", "pid": "17771466", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"The Curse of Oak Island\"\ndual cypher containing instructions as how to defeat the money pit flood tunnels with corn; authors Kathleen McGowen and Alen Butler discussing their theory involving the fabled Knights Templar treasure and an alleged relocation of historical religious artifacts to the island; and John O'Brien discussing his theory that the island contains treasures of the Aztec Empire. It has also been suggested by Zena Halpern, without evidence, that the Templars worshipped the Phoenician goddess Tanit. Having started in 2014, \"\"The Curse of Oak Island\"\" is currently in its sixth season. On August 2, 2016, it was announced that Nova Scotia Business"} +{"qid": "test16", "pid": "869903", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"Oak Island\"\nknown as the Money Pit, a formation of boulders called Nolan's Cross, the beach at Smith's Cove, and a triangle-shaped swamp. The Money Pit area has been repeatedly excavated; critics argue that there is no treasure and that the Money Pit is a natural phenomenon. More than fifty books have been published recounting the island's history and exploring competing theories. Several works of fiction have been based upon the Money Pit, including \"\"The Money Pit Mystery\"\", \"\"Riptide\"\", \"\"The Hand of Robin Squires\"\", and \"\"Betrayed: The Legend of Oak Island\"\". In January 2014, the History Channel aired \"\"The Curse of Oak"} +{"qid": "test16", "pid": "10207716", "query": "where is the tv show the curse of oak island filmed", "answer": "Oak Island", "passage": "\"John Chatterton\"\nthat of Joseph Bannister, a pirate captain of the late 17th century. The discovery of the \"\"Golden Fleece\"\" was chronicled by Robert Kurson in his 2015 book \"\"Pirate Hunters\"\". In the fall of 2015, Chatterton was featured on the TV series \"\"The Curse of Oak Island\"\" in an exploratory dive to the bottom of Borehole 10-x, a borehole with a depth of more than 200 feet. In 1970-71, John Chatterton served one twelve-month tour of duty in the Vietnam War as a combat medic in the 4th Battalion, 31st Infantry Regiment, 23rd Infantry Division (Americal Division). In November 2000, John"} +{"qid": "test160", "pid": "5774061", "query": "where are unipolar neurons found in spinal cord", "answer": "the distal dorsal root", "passage": "\"Pseudounipolar neuron\"\nThe axon has a peripheral branch (from the cell body to the periphery: skin, joint and muscle) and a central branch (from the cell body to spinal cord). The soma (cell body) of each pseudounipolar neuron is located within a dorsal root ganglion. The axon leaves the cell body (and out of the dorsal root ganglion) into the dorsal root, where it splits into two branches. The central branch goes to the dorsal columns of the spinal cord, where it forms synapses with other neurons. The peripheral branch travels through the distal dorsal root into the spinal nerve all the"} +{"qid": "test1600", "pid": "376982", "query": "where does stevia in the raw come from", "answer": "South America", "passage": "Stevia\nof stevia as a food additive or dietary supplement varies from country to country. In the United States, high-purity stevia glycoside extracts are generally recognized as safe (GRAS) since 2008 and allowed as ingredients in food products, but stevia leaf and crude extracts do not have GRAS or Food and Drug Administration (FDA) approval for use in food. The European Union approved stevia additives in 2011, while the people of Japan have widely used stevia as a sweetener for decades. The plant \"\"Stevia rebaudiana\"\" has been used for more than 1,500 years by the Guaraní peoples of South America, who"} +{"qid": "test1600", "pid": "17988758", "query": "where does stevia in the raw come from", "answer": "South America", "passage": "\"Stevia (genus)\"\nStevia (genus) Stevia () is a genus of about 240 species of herbs and shrubs in the sunflower family (Asteraceae), native to subtropical and tropical regions from western North America to South America. The species \"\"Stevia rebaudiana\"\" is widely grown for the sweet compounds (steviol glycosides) extracted from its leaves, widely used as a sugar substitute under the generic name stevia and several trade names. The genus \"\"Stevia\"\" consists of 240 species of plants native to South America, Central America, and Mexico, with several species found as far north as Arizona, New Mexico, and Texas. The genus was named for"} +{"qid": "test1600", "pid": "17988759", "query": "where does stevia in the raw come from", "answer": "South America", "passage": "\"Stevia (genus)\"\nSpanish botanist and physician Petrus Jacobus Stevus (Pedro Jaime Esteve 1500–1556) a professor of botany at the University of Valencia. Human use of the sweet species \"\"S. rebaudiana\"\" originated in South America. Stevia (genus) Stevia () is a genus of about 240 species of herbs and shrubs in the sunflower family (Asteraceae), native to subtropical and tropical regions from western North America to South America. The species \"\"Stevia rebaudiana\"\" is widely grown for the sweet compounds (steviol glycosides) extracted from its leaves, widely used as a sugar substitute under the generic name stevia and several trade names. The genus \"\"Stevia\"\""} +{"qid": "test1600", "pid": "9334144", "query": "where does stevia in the raw come from", "answer": "South America", "passage": "\"Steviol glycoside\"\nSteviol glycoside Steviol glycosides are the chemical compounds responsible for the sweet taste of the leaves of the South American plant \"\"Stevia rebaudiana\"\" (Asteraceae) and the main ingredients (or precursors) of many sweeteners marketed under the generic name stevia and several trade names. They also occur in the related species \"\"Stevia phlebophylla\"\" (but in no other species of \"\"Stevia\"\") and in the plant \"\"Rubus chingii\"\" (Rosaceae). Steviol glycosides from \"\"Stevia rebaudiana\"\" have been reported to be between 30 and 320 times sweeter than sucrose, although there is some disagreement in the technical literature about these numbers. They are heat-stable, pH-stable,"} +{"qid": "test1601", "pid": "11365222", "query": "who does the voice of little chef in ratatouille", "answer": "Ian Holm", "passage": "\"Ratatouille (film)\"\nyoung garbage boy who befriends Remy; Ian Holm as Skinner, the head chef of Auguste Gusteau's restaurant; Janeane Garofalo as Colette, a rôtisseur at Gusteau's restaurant; Peter O'Toole as Anton Ego, a restaurant critic; Brian Dennehy as Django, Remy's father and leader of his clan; Peter Sohn as Emile, Remy's older brother; and Brad Garrett as Auguste Gusteau, a recently deceased chef. The plot follows a rat named Remy, who dreams of becoming a chef and tries to achieve his goal by forming an alliance with a Parisian restaurant's garbage boy. Development of \"\"Ratatouille\"\" began in 2000 when Pinkava wrote"} +{"qid": "test1602", "pid": "4043158", "query": "who said have you no sense of decency", "answer": "Joseph Nye Welch", "passage": "\"Joseph N. Welch\"\nJoseph N. Welch Joseph Nye Welch (October 22, 1890 – October 6, 1960) was an American lawyer who served as the chief counsel for the United States Army while it was under investigation for Communist activities by Senator Joseph McCarthy's Senate Permanent Subcommittee on Investigations, an investigation known as the Army–McCarthy hearings. His confrontation with McCarthy during the hearings, in which he famously asked McCarthy \"\"At long last, have you left no sense of decency?\"\" is seen as a turning point in the history of McCarthyism. Welch was born in Primghar, Iowa, on October 22, 1890, the seventh and youngest"} +{"qid": "test1603", "pid": "3763837", "query": "who sings the skye boat song on outlander", "answer": "Bear McCreary", "passage": "\"The Skye Boat Song\"\nis used as the theme music for the TV Series \"\"Outlander\"\" sung by Raya Yarbrough and arranged by Bear McCreary. Notably, the word \"\"\"\"lad\"\"\"\" used in the version by Robert Louis Stevenson is replaced by \"\"\"\"lass\"\"\"\" to reflect the story. The Skye Boat Song \"\"The Skye Boat Song\"\" is a modern Scottish song which has entered into the folk canon in recent times. It can be played as a waltz, recalling the escape of Prince Charles Edward Stuart (Bonnie Prince Charlie) from Uist to the Isle of Skye after his defeat at the Battle of Culloden in 1746. The text"} +{"qid": "test1603", "pid": "3763833", "query": "who sings the skye boat song on outlander", "answer": "Bear McCreary", "passage": "\"The Skye Boat Song\"\nof Drinking & Rebellion\"\". Bear McCreary adapted the song as the opening titles of the 2014 TV series \"\"Outlander\"\", sung by Raya Yarbrough, changing the text of Robert Louis Stevenson's poem \"\"Sing Me a Song of a Lad That Is Gone\"\" (1892) to fit the story. Patrick Troughton as the second Doctor on the British science-fiction television series \"\"Doctor Who\"\" played the song repeatedly on his recorder in Episode 6, Scene 10 of \"\"The Web of Fear\"\" (broadcast 9 March 1968). It can also be heard playing background instrumental in several episodes of the American serial killer television series \"\"Dexter\"\"."} +{"qid": "test1604", "pid": "645612", "query": "how much of the world's diamonds does de beers own", "answer": "33% in 2013", "passage": "\"De Beers\"\nawareness of blood diamonds that forced De Beers to \"\"avoid the risk of bad publicity\"\" by limiting sales to its own mined products. De Beers' market share of rough diamonds fell from as high as 90% in the 1980s to 33% in 2013, because of a more fragmented diamond market bringing greater competition, as well as more transparency and greater liquidity. In November 2011, the Oppenheimer family announced its intention to sell all its 40% stake in De Beers to Anglo American plc, thereby increasing Anglo American's ownership of the company to 85% (the other 15% is owned by the"} +{"qid": "test1606", "pid": "3494625", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Western Railway zone\"\nMaharashtra. The Western coast of India served by Western Railway has a number of ports, most important among them being Kandla, Hajira, Surat, Dahej, Mundra, Okha, Porbandar, Bhavnagar in Gujarat state and Mumbai in Maharashtra. Two Nuclear power plants are there on the Western Railway Zone line. Kakrapar Atomic Power Station which is in Gujarat state and the nearest railway station is Vyara and second is Tarapur Atomic Power Station which is in Maharashtra state and nearest railway station is Boisar. Navapur railway station is unique as it falls in both the state's of Gujarat and Maharashtra because both were"} +{"qid": "test1606", "pid": "12865885", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Narora Atomic Power Station\"\nNarora Atomic Power Station Narora Atomic Power Station (NAPS) is located in Narora, Bulandshahar District in Uttar Pradesh, India. The plant is thus placed 68 km from the district headquarters in Bulandshahr, 502 km from Mussoorie, 303 km from Lucknow. The plant houses two reactors, each a pressurized heavy-water reactor (PHWR) capable of producing 220 MW of electricity. Commercial operation of NAPS-1 began on 1 January 1991, NAPS-2 on 1 July 1992. With India not being a signatory to the Treaty on the Non-Proliferation of Nuclear Weapons the reactors are not under IAEA safeguards. 31 May 1993 after months of"} +{"qid": "test1606", "pid": "12865886", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Narora Atomic Power Station\"\noperation two steam turbine blades in NAPS-1 malfunctioned causing a major fire. This in combination with problems in the reactor's cabling system nearly lead to a nuclear meltdown. Narora Atomic Power Station Narora Atomic Power Station (NAPS) is located in Narora, Bulandshahar District in Uttar Pradesh, India. The plant is thus placed 68 km from the district headquarters in Bulandshahr, 502 km from Mussoorie, 303 km from Lucknow. The plant houses two reactors, each a pressurized heavy-water reactor (PHWR) capable of producing 220 MW of electricity. Commercial operation of NAPS-1 began on 1 January 1991, NAPS-2 on 1 July 1992."} +{"qid": "test1606", "pid": "5410372", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Bhabha Atomic Research Centre\"\nthat have benefited from BARC expertise but which fall under the NPCIL (Nuclear Power Corporation of India Limited) are KAPP (Kakrapar Atomic Power Project), RAPP (Rajasthan Atomic Power Project), and TAPP (Tarapur Atomic Power Project). The Bhabha Atomic Research Centre in addition to its nuclear research mandate, also conducts research in other high technology areas like accelerators, micro electron beams, materials design, supercomputers, and computer vision among the few. The BARC has dedicated departments for these specialised fields. BARC has designed and developed, for its own use an infrastructure of supercomputers, Anupam using state of the art technology. Bhabha Atomic"} +{"qid": "test1606", "pid": "10792125", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Kakrapar Atomic Power Station\"\noriginally were estimated to be ₹ 382.52 crore, the plant was finally finished at a price of ₹ 1,335 crore. Construction of units 3 & 4 started in November 2010. Kakrapar Atomic Power Station Kakrapar Atomic Power Station is a nuclear power station in India, which lies in the proximity of the city of Vyara in the state of Gujarat. It consists of two 220 MW pressurised water reactor with heavy water as moderator (PHWR). KAPS-1 went critical on 3 September 1992 and began commercial electricity production a few months later on 6 May 1993. KAPS-2 went critical on 8"} +{"qid": "test1606", "pid": "10792124", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Kakrapar Atomic Power Station\"\nKakrapar Atomic Power Station Kakrapar Atomic Power Station is a nuclear power station in India, which lies in the proximity of the city of Vyara in the state of Gujarat. It consists of two 220 MW pressurised water reactor with heavy water as moderator (PHWR). KAPS-1 went critical on 3 September 1992 and began commercial electricity production a few months later on 6 May 1993. KAPS-2 went critical on 8 January 1995 and began commercial production on 1 September 1995. In January 2003, CANDU Owners Group (COG) declared KAPS as the best performing pressurised heavy water reactor. The construction costs"} +{"qid": "test1606", "pid": "9535043", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Tarapur Atomic Power Station\"\nTarapur 1 and 2 and reported many shortfalls, following which NPCIL installed seismic sensors. In 2011, AERB formed a 10-member committee, consisting of experts from Indian Institutes of Technology (IIT) and India Meteorological Department (IMD), to assess the vulnerability of the Tarapur to earthquakes and tsunamis. A. Gopalakrishnan, former director of AERB, said that Tarapur 1 and 2 reactors are much older than the reactors involved in the Fukushima nuclear accident and argued that they should be immediately decommissioned. Tarapur Atomic Power Station Tarapur Atomic Power Station (T.A.P.S.) is located in Tarapur, Palghar, India. It was the first commercial nuclear"} +{"qid": "test1606", "pid": "7391421", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Tarapur, Maharashtra\"\nnot only the largest nuclear power reactor in the country but also the largest power unit in India. It was commissioned seven months ahead of schedule, at a cost much lower than the original estimate, by the Nuclear Power Corporation of India. Tarapur Atomic Power Station (320 MW) (T.A.P.S.) was constructed by the American companies Bechtel and GE near village Akkarpatti. The new reactors (1080 MW) were constructed by L & T and Gammon India. Both these power stations are operated by Nuclear Power Corporation of India Limited. The personnel operating the power plant live in a residential complex called"} +{"qid": "test1606", "pid": "20667868", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Transformers and Electricals Kerala Limited\"\nthe Tata Power Company Ltd started a 500 MW Thermal Power plant at Trombay, Mumbai, TELK installed 600 MVA generator transformer for the unit in 1982. In the 1990s TELK revamped its export activities and exported transformers to the Sultanate of Oman and 330 kV Gas Circuit Breakers to Nigeria in 1994. The products are also exported to other countries like Indonesia, Iran, Cambodia, Malaysia, Vietnam, and Singapore. The biggest power transformer ever made in the country (rating 630 MVA Transformers) for Tarapur Atomic Power Station, Tarapur, Maharashtra was installed by TELK in 2003. Because of the financial crisis, the"} +{"qid": "test1606", "pid": "19426007", "query": "which is produced in plants of narora kakrapar tarapur", "answer": "Atomic Power", "passage": "\"Chutka Nuclear Power Plant\"\nDam in 1984. Meanwhile, within the 30-kilometre radius of the site, a survey was completed in the area, which is almost 60% covered with water, the remaining barren land and a small area of cultivated land with poor soil conditions. The survey was started in December 2012. The proposed 700 MW PHWR reactors are indigenous and similar to the ones currently under construction in Kakrapar Atomic Power Station (KAPP-3 &4) and Rajasthan Atomic Power Station (RAPP-7 & 8). Being built by the Nuclear Power Corporation of India, the project is estimated to cost 17,000 Crore ( 2.56 billions) as of"} +{"qid": "test1607", "pid": "9316938", "query": "when did fender start making amps in mexico", "answer": "1996", "passage": "\"Ed Wool\"\nBeauty ('Fretless Wonder'), Martin D-41 Guitar, 1972 SUNN Model-T Amp 1976-1987: 1967 Epiphone Sheraton, 1981 Black Gibson 347, '62 Fender Stratocaster, 1977 Mesa Boogie Mark I amp, Marshall Jubilee Combo Amp, 1987-1992: 1987 Red Warmoth SuperStrat Guitar, 1982 Fender Super Champ Amp, 1986 Mesa BassMaster Amp, 1996 Mesa Blue Angle amp head 1992-1999: 1981 Mesa Studio 22Plus Amp, 1996 Mesa Blue Angel Amp, Fender Tone Master Amp, Mesa Dual Rectifier Amp, and 1987 Warmoth Guitar 1999–Present: 1998 Rivera Fandango Amp(Late '60's Plexi and '59 Tweed Bassman / Twin Pre-amps), 2004 Acoustic Echo Amp, 2002 Fender BassBreaker Amp (Fender Custom Shop:"} +{"qid": "test1608", "pid": "395050", "query": "who has the most rushing yards in a super bowl", "answer": "Timmy Smith", "passage": "\"Super Bowl XXXV\"\nrookie to rush for 100 yards in the Super Bowl, joining Timmy Smith in Super Bowl XXII, while also being the first rookie to score a rushing touchdown in a Super Bowl since Smith in 1988), and caught a pass for 4 yards. Stokley was the top receiver of the game with 3 receptions for 52 yards and a touchdown. Jermaine Lewis recorded 152 total all-purpose yards (111 kickoff return yards, 34 punt return yards, 7 receiving yards, 1 rushing yard) and a touchdown. Collins had a passer rating for the game of only 7.1, the second worst in Super"} +{"qid": "test161", "pid": "501619", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": "\"Domain name\"\nin the tree holds information associated with the domain name. The tree sub-divides into \"\"zones\"\" beginning at the DNS root zone. A domain name consists of one or more parts, technically called \"\"labels\"\", that are conventionally concatenated, and delimited by dots, such as \"\"example.com\"\". The top-level domains (TLDs) such as com, net and org are the highest level of domain names of the Internet. Top-level domains form the DNS root zone of the hierarchical Domain Name System. Every domain name ends with a top-level domain label. When the Domain Name System was devised in the 1980s, the domain name space"} +{"qid": "test161", "pid": "102783", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": "\"Domain Name System\"\nAuthority over the new zone is said to be \"\"delegated\"\" to a designated name server. The parent zone ceases to be authoritative for the new zone. The definitive descriptions of the rules for forming domain names appear in RFC 1035, RFC 1123, and RFC 2181. A domain name consists of one or more parts, technically called \"\"labels\"\", that are conventionally concatenated, and delimited by dots, such as example.com. The right-most label conveys the top-level domain; for example, the domain name www.example.com belongs to the top-level domain \"\"com\"\". The hierarchy of domains descends from right to left; each label to the"} +{"qid": "test161", "pid": "10647971", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": "Web.com\nIn February 2017, Domain Name Wire reported that Web.com gave away 375,000 .xyz domains to its customers, as part of an agreement with the top-level domain's registry, which received an advertising credit worth $3 million. Web.com Web.com Group Inc. is an American company headquartered in Jacksonville, Florida that provides domain name registration and web development services. Established in 1999, the company was known as Website Pros Inc. until early 2008, after acquiring an Atlanta-based company called Web.com, which was founded in 1981 and formerly known as Interland, Inc. Web.com has 3.3 million subscribers, as of 2016, and 3,500 employees throughout"} +{"qid": "test161", "pid": "3463108", "query": "what are the parts of a domain name called", "answer": "subdomain", "passage": "Subdomain\nSubdomain In the Domain Name System (DNS) hierarchy, a subdomain is a domain, that is a part of a main domain. The Domain Name System (DNS) has a tree structure or hierarchy, with each non-RR (resource record) node on the tree being a domain name. A subdomain is a domain that is part of a larger domain; the only domain that is not also a subdomain is the root domain. For example, codice_1 and codice_2 are subdomains of the codice_3 domain, which in turn is a subdomain of the codice_4 top-level domain (TLD). A \"\"subdomain\"\" expresses relative dependence, not absolute"} +{"qid": "test161", "pid": "3236627", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": "\"Fully qualified domain name\"\nthe top-level domain. However, in some cases the full stop (period) character is required at the end of the fully qualified domain name. If domain names do not end with a period, the Domain Name Server appends one as a suffix. In contrast to a domain name that is fully specified, a domain name that does not include the full path of labels up to the DNS root is often called a \"\"partially qualified domain name\"\". A fully qualified domain name consists of a list of domain labels representing the hierarchy from the lowest relevant level in the DNS to"} +{"qid": "test161", "pid": "420427", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": "\"Top-level domain\"\nTop-level domain A top-level domain (TLD) is one of the domains at the highest level in the hierarchical Domain Name System of the Internet. The top-level domain names are installed in the root zone of the name space. For all domains in lower levels, it is the last part of the domain name, that is, the last label of a fully qualified domain name. For example, in the domain name www.example.com, the top-level domain is com. Responsibility for management of most top-level domains is delegated to specific organizations by the Internet Corporation for Assigned Names and Numbers (ICANN), which operates"} +{"qid": "test161", "pid": "420440", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": "\"Top-level domain\"\nuse the top-level pseudo-domain home for local DNS resolution of routers, modems and gateways. Top-level domain A top-level domain (TLD) is one of the domains at the highest level in the hierarchical Domain Name System of the Internet. The top-level domain names are installed in the root zone of the name space. For all domains in lower levels, it is the last part of the domain name, that is, the last label of a fully qualified domain name. For example, in the domain name www.example.com, the top-level domain is com. Responsibility for management of most top-level domains is delegated to"} +{"qid": "test161", "pid": "19012733", "query": "what are the parts of a domain name called", "answer": "top-level domain", "passage": ".tor\n.tor .tor is a pseudo-top-level domain host suffix implemented by the OnioNS project, which aims to add DNS infrastructure to the Tor network enabling the selection of meaningful and globally-unique domain name for hidden services, which users can then reference from the Tor Browser. The project aims to address the major usability issue that has been with Tor hidden services since their introduction in 2002. Beta release of the server, client and domain name reservation tool (so called hidden service) software parts and their supporting common library were announced in the Tor developers mailing list in August 2015. According to"} +{"qid": "test1610", "pid": "7517008", "query": "known as the punk poet who used poetry in their music", "answer": "John Cooper Clarke", "passage": "\"Punk literature\"\nintroduced us to his girlfriend, Mildred, who turned out to be a wig on a wadge of newspaper on the end of an iron pipe. Inspired by punk poet John Cooper Clarke and dub poet Linton Kwesi Johnson, a \"\"ranting poetry\"\" scene developed in the early 80s, which included performers such as \"\"Seething\"\" Wells, Joolz, Attila the Stockbroker, Porky the Poet, \"\"Teething\"\" Wells, Garry Johnson, The Big J, Little Brother, Swift Nick, Little Dave and Ginger John. Ranting poets often provided support at punk/new wave gigs and some went on to release their own records or appear on punk compilations."} +{"qid": "test1610", "pid": "7517006", "query": "known as the punk poet who used poetry in their music", "answer": "John Cooper Clarke", "passage": "\"Punk literature\"\npunk rock bands. Notable punk zines include \"\"Maximum RocknRoll\"\", \"\"Punk Planet\"\", \"\"Cometbus\"\", \"\"Girl Germs\"\", \"\"Kill Your Pet Puppy\"\", \"\"J.D.s\"\", \"\"Sniffin' Glue\"\", \"\"Absolutely Zippo\"\", \"\"Suburban Rebels\"\" and \"\"Punk Magazine\"\". Notable punk journalists and magazine contributors include Mykel Board, John Holmstrom, Robert Eggplant and Aaron Cometbus. Many punk poets are also musicians, including Richard Hell, Jim Carroll, Patti Smith, John Cooper Clarke, Nick Toczek, Raegan Butcher and Attila the Stockbroker. Carroll's autobiographical works are among the first-known examples of punk literature. The Medway Poets, an English punk poetry performance group founded in 1979, included punk musician Billy Childish. They are credited with"} +{"qid": "test1611", "pid": "1504195", "query": "who sang it must have been love but its over now", "answer": "Roxette", "passage": "T.A.T.u.\nt.A.T.u., Lena Katina and Julia Volkova. Both Lena and Julia knew each other before the auditions. Both girls stood out among the others, especially because of their appearance and vocal experience, but the producers decided to start with 14-year-old Katina, who sang \"\"It Must Have Been Love\"\" by Roxette. Katina began recording demos, including \"\"Yugoslavia\"\", a protest song about NATO bombing of Yugoslavia. After the demos were cut, Shapovalov insisted that another girl be added to the project. Thus, in late 1999, 14-year-old Julia Volkova was added to the group to complete the duo. She also started recording not long"} +{"qid": "test1612", "pid": "2131074", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Fibula\nFibula The fibula or calf bone is a leg bone located on the lateral side of the tibia, with which it is connected above and below. It is the smaller of the two bones and in proportion to its length, the slenderest of all the long bones. Its upper extremity is small, placed toward the back of the head of the tibia, below the level of the knee joint, and excluded from the formation of this joint. Its lower extremity inclines a little forward, so as to be on a plane anterior to that of the upper end; it projects"} +{"qid": "test1612", "pid": "2131087", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Fibula\ntypically narrower in all but the most primitive tetrapods. In many animals, it still articulates with the posterior part of the lower extremity of the femur, but this feature is frequently lost (as it is in humans). In some animals, the reduction of the fibula has proceeded even further than it has in humans, with the loss of the tarsal articulation, and, in extreme cases (such as the horse), partial fusion with the tibia. Fibula The fibula or calf bone is a leg bone located on the lateral side of the tibia, with which it is connected above and below."} +{"qid": "test1612", "pid": "1828746", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Tibia\nsyndesmosis with very little movement. The tibia is named for the flute \"\"tibia\"\". It is the second largest bone in the human body next to the femur. The leg bones are the strongest long bones as they support the rest of the body. In human anatomy, the tibia is the second largest bone next to the femur. As in other vertebrates the tibia is one of two bones in the lower leg, the other being the fibula, and is a component of the knee and ankle joints. The leg bones (femur, tibia and fibula) are the strongest long bones as"} +{"qid": "test1612", "pid": "1828745", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Tibia\nTibia The tibia (plural tibiae or tibias), also known as the shinbone or shankbone, is the larger, stronger, and anterior (frontal) of the two bones in the leg below the knee in vertebrates (the other being the fibula, behind and to the outside of the tibia), and it connects the knee with the ankle bones. The tibia is found on the medial side of the leg next to the fibula and closer to the median plane or centre-line. The tibia is connected to the fibula by the interosseous membrane of the leg, forming a type of fibrous joint called a"} +{"qid": "test1612", "pid": "10014754", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Tasmaniosaurus\nthin, with the thinnest section right behind the front structure. The specimen preserves several bones of the back legs, including a poorly preserved bone which has sometimes been identified as either a fibula or a femur. On the one hand, it is seemingly thinner than the preserved tibiae, supporting its identification as a fibula. On the other hand, this quality may be due to crushing, and the fact that it is longer in length than the tibia supports its identification as a femur.The other two leg bones are more easily identifiable as both tibiae. They are more robust than those"} +{"qid": "test1612", "pid": "7701929", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Westlothiana\nsomewhat larger ankle bones, known as \"\"proximal tarsals\"\", connect to the bones of the lower leg. These three are the medium-sized fibulare (which connects to the fibula), the small tibiale (which connects to the tibia), and the quite large intermedium which lies in the middle and contacts both the fibula and tibia. Four small numbered bones known as \"\"centralia\"\" fill in the gaps between the proximal and distal tarsals. In basal amniotes, the condition is quite different, with the ankle only formed by eight bones. The five distal tarsals are typically unchanged, but usually only a single centrale is preserved."} +{"qid": "test1612", "pid": "4733631", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "\"Tarsus (skeleton)\"\nTarsus (skeleton) The tarsus is a cluster of seven articulating bones in each foot situated between the lower end of tibia and fibula of the lower leg and the metatarsus. It is made up of the midfoot (cuboid, medial, intermediate, and lateral cuneiform, and navicular) and hindfoot (talus and calcaneus). The tarsus articulates with the bones of the metatarsus, which in turn articulate with the proximal phalanges of the toes. The joint between the tibia and fibula above and the tarsus below is referred to as the ankle joint. In humans the largest bone in the tarsus is the calcaneus,"} +{"qid": "test1612", "pid": "1828767", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Tibia\ntuberosity of the tibia, a crest to which the patellar ligament attaches in mammals, is instead the point for the tendon of the quadriceps muscle in reptiles, birds, and amphibians, which have no patella. Tibia The tibia (plural tibiae or tibias), also known as the shinbone or shankbone, is the larger, stronger, and anterior (frontal) of the two bones in the leg below the knee in vertebrates (the other being the fibula, behind and to the outside of the tibia), and it connects the knee with the ankle bones. The tibia is found on the medial side of the leg"} +{"qid": "test1612", "pid": "17760731", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "\"Anatomical terms of bone\"\nbody. The \"\"Malleolus\"\" () is the bony prominence on each side of the ankle. These are known as the medial and lateral malleolus. Each leg is supported by two bones, the tibia on the inner side (medial) of the leg and the fibula on the outer side (lateral) of the leg. The \"\"medial malleolus\"\" is the prominence on the inner side of the ankle, formed by the lower end of the tibia. The \"\"lateral malleolus\"\" is the prominence on the outer side of the ankle, formed by the lower end of the fibula. The \"\"trochanters\"\" are parts of the femur,"} +{"qid": "test1612", "pid": "15339121", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "\"Fibular artery\"\nare named according to what bone they are near (e.g. tibialis anterior and the tibial nerve are near the tibia). So the artery that runs near the smaller leg bone had two names: the \"\"peroneal artery\"\" and the \"\"fibular artery\"\". The term \"\"fibula\"\" eventually became the standard name for the bone, but many of the related arteries, muscles, and nerves are still called by the Greek derived name \"\"peroneal\"\". The Terminologia Anatomica, the international standard for anatomical nomenclature, states that both \"\"fibula\"\" and \"\"perone\"\" derived names are acceptable, but lists the \"\"fibula\"\" derived names as the preferred terms. Like \"\"fibula\"\","} +{"qid": "test1612", "pid": "2131086", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Fibula\nclosely related to the lateral collateral ligament of the knee. Therefore, this ligament is prone to injury in this type of avulsion fracture. The word \"\"fibula\"\" can be dated back to c. 1670 to describe a clasp or brooch – see fibula (brooch) – and was first used in English for the smaller bone in the lower leg c. 1706. It derives from Latin \"\"fībula,\"\" also meaning a clasp or brooch. The bone was so called because it resembles a clasp like a modern safety pin. Because the fibula bears relatively little weight in comparison with the tibia, it is"} +{"qid": "test1612", "pid": "5803120", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Archaeoindris\nknown for this species. Historically, some remains from other subfossil lemurs have been mistakenly attributed to \"\"Archaeoindris\"\", resulting in incorrect interpretations of its anatomy and behavior. In 1934, Lamberton missed earlier attribution errors and incorrectly labeled a tibia and two fibulae (lower leg bones) from a species of koala lemur (\"\"Megaladapis grandidieri\"\") as belonging to \"\"Archaeoindris\"\". Because of these misattributions and Lamberton's use of the immature bones, his reconstruction was inaccurate. In 1936, Alice Carleton corrected Lamberton by identifying the tibia and fibulae as belonging to a koala lemur. Carleton's corrections were later confirmed and other misattributions were corrected in"} +{"qid": "test1612", "pid": "14083957", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "\"Osteofibrous dysplasia\"\nOsteofibrous dysplasia Osteofibrous dysplasia (also known as ossifying fibroma) is a rare, benign non-neoplastic condition with no known cause. It is considered a fibrovascular defect. Campanacci described this condition in two leg bones, the tibia and fibula, and coined the term. This condition should be differentiated from Nonossifying fibroma and fibrous dysplasia of bone. The tibia is the most commonly involved bone, accounting for 85% of cases. It is usually painless, although there may be localized pain or fracture, and presents as a localized firm swelling of the tibia in children less than two decades old (median age for males"} +{"qid": "test1612", "pid": "11545726", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Proterochampsidae\nis narrow and positioned downward relative to other lateral projections on the bone. The calcaneum also has a facet that attaches to both the fibula bone of the leg and another tarsal, or ankle bone. A hemicylindrical facet on the calcaneum attaches to another bone in the ankle called the astragalus. The astragalus has facets that attach to the tibia and fibula that are adjacent to each other. Proterochampsidae was named in 1966 by A.S. Romer in his book \"\"Vertebrate Paleontology, 3rd edition\"\". Members such as \"\"Proterochampsa\"\" and \"\"Cerritosaurus\"\" had been known for several decades prior to the family's creation."} +{"qid": "test1612", "pid": "9289793", "query": "where is the tibia and fibula bone located", "answer": "leg", "passage": "Malleolus\nMalleolus A malleolus is the bony prominence on each side of the human ankle. Each leg is supported by two bones, the tibia on the inner side (medial) of the leg and the fibula on the outer side (lateral) of the leg. The medial malleolus is the prominence on the inner side of the ankle, formed by the lower end of the tibia. The lateral malleolus is the prominence on the outer side of ankle, formed by the lower end of the fibula. The word \"\"malleolus\"\" (), plural \"\"malleoli\"\" (), comes from Latin and means \"\"small hammer\"\". (It is cognate"} +{"qid": "test1613", "pid": "7800842", "query": "who sings he thinks he'll keep her", "answer": "Mary Chapin Carpenter", "passage": "\"He Thinks He'll Keep Her\"\nHe Thinks He'll Keep Her \"\"He Thinks He'll Keep Her\"\" is a song co-written and recorded by American country music artist Mary Chapin Carpenter. It was released in December 1993 as the sixth single from the album \"\"Come On Come On\"\". The song peaked at No. 2 on the \"\"Billboard\"\" Hot Country Songs chart. It was written by Carpenter and Don Schlitz. The song was nominated for the Grammy Award for Record of the Year, and was accompanied by a live performance music video, taken from the 1993 CBS special \"\"Women of Country\"\", where Carpenter was accompanied by Emmylou Harris,"} +{"qid": "test1613", "pid": "7800844", "query": "who sings he thinks he'll keep her", "answer": "Mary Chapin Carpenter", "passage": "\"He Thinks He'll Keep Her\"\nspecial \"\"Women of Country\"\" – was directed by Bud Schaetzle, and premiered in early 1994. He Thinks He'll Keep Her \"\"He Thinks He'll Keep Her\"\" is a song co-written and recorded by American country music artist Mary Chapin Carpenter. It was released in December 1993 as the sixth single from the album \"\"Come On Come On\"\". The song peaked at No. 2 on the \"\"Billboard\"\" Hot Country Songs chart. It was written by Carpenter and Don Schlitz. The song was nominated for the Grammy Award for Record of the Year, and was accompanied by a live performance music video, taken"} +{"qid": "test1613", "pid": "2672652", "query": "who sings he thinks he'll keep her", "answer": "Mary Chapin Carpenter", "passage": "\"Mary Chapin Carpenter\"\n\"\"Billboard\"\" Hot 100 and at No. 11 on Adult Contemporary. The sixth single on \"\"Come On Come On\"\", \"\"He Thinks He'll Keep Her\"\", was Carpenter's biggest hit off the album, charting at No. 2 on Billboard's Country chart and at No. 1 on Radio & Records's Country chart. Written by Carpenter and Don Schlitz, the fast-paced song follows a 36-year-old homemaker who leaves her husband, and was inspired by a 1970s series of Geritol commercials in which a man boasts of his wife's seemingly limitless energy and her many accomplishments, then concludes by saying, \"\"My wife ... I think I'll"} +{"qid": "test1613", "pid": "3159360", "query": "who sings he thinks he'll keep her", "answer": "Mary Chapin Carpenter", "passage": "Geritol\nnerve?... She has to keep begging him, \"\"Will you keep me one more day?\"\" \"\"All right, one more day: now, get back to the kitchen!\"\" The line was the inspiration for Mary Chapin Carpenter's 1993 song \"\"He Thinks He'll Keep Her\"\". The line was also used by Garry Trudeau to explain why his character Joanie Caucus left her husband in \"\"Doonesbury\"\". On September 12, 1972, Joanie explained she'd been serving dinner to her husband's bowling team. When one of them complimented her French fries, \"\"Clinton leaned back in his chair and with a big, stupid grin said, 'My wife, I"} +{"qid": "test1613", "pid": "12650133", "query": "who sings he thinks he'll keep her", "answer": "Mary Chapin Carpenter", "passage": "\"Party Doll and Other Favorites\"\nParty Doll and Other Favorites Party Doll and Other Favorites is the first compilation album by American country music singer Mary Chapin Carpenter. It was released in 1999 on the Columbia Records label and comprises a mix of her greatest hits, several album cuts, and newly recorded tracks. The collection uses live or special event recordings in place of the studio cuts in several cases, others like \"\"I Feel Lucky\"\" and \"\"He Thinks He'll Keep Her\"\" are the original album versions. Of the new material, \"\"Almost Home\"\" and \"\"Wherever You Are\"\" were both released as singles, respectively reaching numbers 22"} +{"qid": "test1613", "pid": "8712711", "query": "who sings he thinks he'll keep her", "answer": "Mary Chapin Carpenter", "passage": "\"Come On Come On\"\nCome On Come On Come On Come On is the fourth album by Mary Chapin Carpenter. Seven of its tracks became \"\"Billboard\"\" Hot Country Singles hits in 1992, 1993, and 1994. They were, chronologically, \"\"I Feel Lucky\"\" at #4, \"\"Not Too Much to Ask\"\" (a duet with Joe Diffie) at #15, \"\"Passionate Kisses\"\" at #4, \"\"The Hard Way\"\" at #11, \"\"The Bug\"\" (a cover of a Dire Straits song) at #16, \"\"He Thinks He'll Keep Her\"\" at #2, and \"\"I Take My Chances\"\" also at #2. The album topped out at #6 on the Billboard Country Albums chart. By 2017,"} +{"qid": "test1614", "pid": "3808230", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"Oklahoma Panhandle\"\nthat was most adversely affected by the drought of the 1930s. The drought began in 1932 and created massive dust storms. By 1935, the area was widely known as the Dust Bowl. The dust storms were largely a result of poor farming techniques and a plow-up of the native grasses that held the fine soil in place. Despite government efforts to implement conservation measures and change the basic farming methods of the region, the Dust Bowl persisted for nearly a decade. It contributed significantly to the length of the Great Depression in the United States. Each of the three counties"} +{"qid": "test1614", "pid": "705454", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"Dust Bowl\"\nrefers to the event itself (the term \"\"Dirty Thirties\"\" is also sometimes used). The drought and erosion of the Dust Bowl affected that centered on the panhandles of Texas and Oklahoma and touched adjacent sections of New Mexico, Colorado, and Kansas. The Dust Bowl forced tens of thousands of poverty-stricken families to abandon their farms, unable to pay mortgages or grow crops, and losses reached $25 million per day by 1936 (). Many of these families, who were often known as \"\"Okies\"\" because so many of them came from Oklahoma, migrated to California and other states to find that the"} +{"qid": "test1614", "pid": "8936289", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"History of Oklahoma\"\nThe federal Agricultural Adjustment Act paid them to reduce production; prices rose and the distress was over, Short-term drought and long-term poor agricultural practices led to the Dust Bowl, when massive dust storms blew away the soil from large tracts of arable land and deposited it on nearby farms or even far-distant locations. The resulting crop failures forced many small farmers to flee the state altogether. Although the most persistent dust storms primarily affected the Panhandle, much of the state experienced occasional dusters, intermittent severe drought, and occasional searing heat. Towns such as Alva, Altus, and Poteau each recorded temperatures"} +{"qid": "test1614", "pid": "9839097", "query": "what states were most affected by the dust bowl", "answer": "Kansas", "passage": "\"Dust pneumonia\"\n1930s. In 1935, dozens of people died in Kansas from dust pneumonia. Red Cross volunteers made and distributed thousands of dust masks, although some farmers and other people in the affected areas refused to wear them. Dust pneumonia was featured in the work of several musicians and artists of the day, such as Woody Guthrie's song \"\"Dust Pneumonia Blues\"\". Dust pneumonia Dust pneumonia describes disorders caused by excessive exposure to dust storms, particularly during the Dust Bowl in the United States. A form of pneumonia, dust pneumonia results when the lungs are filled with dust, inflaming the alveoli. Symptoms of"} +{"qid": "test1614", "pid": "12819978", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"Black Sunday (storm)\"\nthe prairies of Canada and the United States during the 1930s, and later to describe the area in the United States that was most affected by the storms, including western Kansas, eastern Colorado, northeastern New Mexico, and the Oklahoma and Texas panhandles. The \"\"black blizzards\"\" started in the Eastern states in 1930, affecting agriculture from Maine to Arkansas. By 1934 they had reached the Great Plains, stretching from North Dakota to Texas, and from the Mississippi River Valley to the Rocky Mountains. \"\"The Dust Bowl\"\" (as an area) received its name following the disastrous \"\"Black Sunday\"\" storm in April 1935,"} +{"qid": "test1614", "pid": "18679875", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"The Harvest Gypsies\"\nChina, then Japan, Mexico, and the Philippines (Steinbeck discusses the treatment of non-white/non-American workers more extensively in Article VI). But the combination of the Great Depression and the Dust Bowl introduced a new type of migrant worker: the white American family, women and children included. They came from \"\"the agricultural populations of Oklahoma, Nebraska, and parts of Kansas and Texas\"\" most affected by the Dust Bowl. Steinbeck describes these families as once-prosperous - or at least once self-sustaining - farmers from the Midwest, \"\"resourceful and intelligent Americans\"\" and honest workers who experienced the \"\"curious and terrible pain\"\" of having everything"} +{"qid": "test1614", "pid": "705453", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"Dust Bowl\"\nor \"\"black rollers\"\" – traveled cross country, reaching as far as the East Coast and striking such cities as New York City and Washington, D.C. On the plains, they often reduced visibility to or less. Associated Press reporter Robert E. Geiger happened to be in Boise City, Oklahoma, to witness the \"\"Black Sunday\"\" black blizzards of April 14, 1935; Edward Stanley, Kansas City news editor of the Associated Press coined the term \"\"Dust Bowl\"\" while rewriting Geiger's news story. While the term \"\"the Dust Bowl\"\" was originally a reference to the geographical area affected by the dust, today it usually"} +{"qid": "test1614", "pid": "12202677", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"Droughts in the United States\"\nof the soil ended up deposited in the Atlantic Ocean, carried by prevailing winds which were in part created by the dry and bare soil conditions itself. These immense dust storms—given names such as \"\"Black Blizzards\"\" and \"\"Black Rollers\"\"—often reduced visibility to a few feet (around a meter). The Dust Bowl affected , centered on the panhandles of Texas and Oklahoma, and adjacent parts of New Mexico, Colorado, and Kansas. Millions of acres of farmland became useless, and hundreds of thousands of people were forced to leave their homes; many of these families (often known as \"\"Okies\"\", since so many"} +{"qid": "test1614", "pid": "437952", "query": "what states were most affected by the dust bowl", "answer": "Nebraska", "passage": "\"Geography of the United States\"\nStates is affected by a variety of natural disasters yearly. Although drought is rare, it has occasionally caused major disruption, such as during the Dust Bowl (1931–1942). Farmland failed throughout the Plains, entire regions were virtually depopulated, and dust storms ravaged the land. The Great Plains and Midwest, due to the contrasting air masses, see frequent severe thunderstorms and tornado outbreaks during spring and summer with around 1,000 tornadoes occurring each year. The strip of land from north Texas north to Kansas and Nebraska and east into Tennessee is known as Tornado Alley, where many houses have tornado shelters and"} +{"qid": "test1614", "pid": "1336647", "query": "what states were most affected by the dust bowl", "answer": "Texas", "passage": "\"Dalhart, Texas\"\nDalhart, Texas Dalhart is a city in Dallam and Hartley Counties in the U.S. state of Texas, and the county seat of Dallam County. The population was 7,930 at the 2010 census. Founded in 1901, Dalhart is named for its location on the border of Dallam and Hartley Counties; its name is a portmanteau of the names of the two counties. The city was founded at the site of a railroad junction, which heavily contributed to its early growth. Dalhart was in the center of the Dust Bowl, an area adversely affected by a long period of drought and dust"} +{"qid": "test1614", "pid": "12202697", "query": "what states were most affected by the dust bowl", "answer": "Texas", "passage": "\"Droughts in the United States\"\nits worst drought seen since the Dust Bowl years of the 1930s. Most of the drought in Texas ended or had it impacts ease by spring and summer 2012 as precipitation returned to the region, while the New Mexican drought continued unbroken into 2014. The Texas and Southwest U.S. drought was also accompanied by a severe heat wave that brought record setting heat to much of Texas, including but not limited to bringing a 40-day stretch of temperatures at or above to Dallas, Texas. Drought of severe magnitude also affected a large portion of the Southeastern US, especially Georgia and"} +{"qid": "test1614", "pid": "12202687", "query": "what states were most affected by the dust bowl", "answer": "Iowa", "passage": "\"Droughts in the United States\"\nsome states thanks to normal rainfalls returning to some portions of the United States. Dry conditions, however, increased again during 1989, affecting Iowa, Illinois, Missouri, eastern Nebraska, Kansas and certain portions of Colorado. The drought also affected Canada in certain divisions. The drought of 1988 became the worst drought since the Dust Bowl 50 years before in the United States; 2008 estimates put damages from the drought somewhere between $80 billion and almost $120 billion in damage (2008 USD). The drought of 1988 was so devastating that in later years it was compared against Hurricane Andrew in 1992 and against"} +{"qid": "test1614", "pid": "15893323", "query": "what states were most affected by the dust bowl", "answer": "Texas", "passage": "\"Bastrop County Complex Fire\"\nlargely contained in late September, the fire was declared controlled on October 10. The fire moved underground later in October and was finally extinguished on October 29. In the months before the Bastrop County Complex fire, Texas was affected by a series of wildfires amid several distinct record-breaking meteorological conditions conducive to combustion. During 2011, Texas endured its most severe single-year drought since the 1950s, received the lowest single-year rainfall since 1895, and experienced the hottest June–August period of any U.S. state at any point in time on record – exceeding that of even the Dust Bowl of the 1930s."} +{"qid": "test1614", "pid": "1075686", "query": "what states were most affected by the dust bowl", "answer": "Kansas", "passage": "\"Rolla, Kansas\"\nin 1913. Rolla is a corruption of Raleigh, for Sir Walter Raleigh. In the 1930s, the prosperity of the area was severely affected by its location within the Dust Bowl. This catastrophe intensified the economic impact of the Great Depression in the region. Rolla is located at (37.118293, −101.632391). According to the United States Census Bureau, the city has a total area of , all of it land. According to the Köppen Climate Classification system, Rolla has a semi-arid climate, abbreviated \"\"BSk\"\" on climate maps. As of the census of 2010, there were 442 people, 166 households, and 124 families"} +{"qid": "test1614", "pid": "12819982", "query": "what states were most affected by the dust bowl", "answer": "Oklahoma", "passage": "\"Black Sunday (storm)\"\nan approaching dust storm: The Black Sunday storm is detailed in the 2012 Ken Burns PBS documentary \"\"The Dust Bowl\"\". Musicians and songwriters began to reflect the Dust Bowl and the events of the 1930s in their music. Woody Guthrie, a singer-songwriter from Oklahoma, wrote a variety of songs documenting his experiences living during the era of dust storms. Several were collected in his first album \"\"Dust Bowl Ballads\"\". One of them, \"\"Great Dust Storm\"\", describes the events of Black Sunday. An excerpt of the lyrics follows: \"\"On the 14th day of April of 1935, \"\"There struck the worst of"} +{"qid": "test1616", "pid": "4786268", "query": "who starred in the film walk the line", "answer": "Ginnifer Goodwin", "passage": "\"Walk the Line\"\nWalk the Line Walk the Line is a 2005 American biographical drama film directed by James Mangold. The screenplay, written by Mangold and Gill Dennis, is based on two autobiographies authored by singer-songwriter Johnny Cash—\"\"\"\" and \"\"\"\". The film follows Cash's early life, his romance with June Carter, and his ascent to the country music scene. It stars Joaquin Phoenix as Cash, Reese Witherspoon as Carter, Ginnifer Goodwin as Vivian Liberto, and Robert Patrick as Cash's father. \"\"Walk the Line\"\" previewed at the Telluride Film Festival on September 4, 2005, and went into wide release on November 18. The film"} +{"qid": "test1616", "pid": "4786287", "query": "who starred in the film walk the line", "answer": "Ginnifer Goodwin", "passage": "\"Walk the Line\"\nreceived a Grammy at the 49th Annual Grammy Awards for Best Compilation Soundtrack Album for Motion Pictures, Television or Other Visual Media. Walk the Line Walk the Line is a 2005 American biographical drama film directed by James Mangold. The screenplay, written by Mangold and Gill Dennis, is based on two autobiographies authored by singer-songwriter Johnny Cash—\"\"\"\" and \"\"\"\". The film follows Cash's early life, his romance with June Carter, and his ascent to the country music scene. It stars Joaquin Phoenix as Cash, Reese Witherspoon as Carter, Ginnifer Goodwin as Vivian Liberto, and Robert Patrick as Cash's father. \"\"Walk"} +{"qid": "test1616", "pid": "7265839", "query": "who starred in the film walk the line", "answer": "Reese Witherspoon", "passage": "\"Walk the Line (soundtrack)\"\nor Comedy and Reese Witherspoon was awarded the Best Actress - Musical or Comedy, as well as the film won the Best Picture - Musical or Comedy. Joaquin Phoenix and Reese Witherspoon were also nominated for the Academy Award for Best Actor and Best Actress, which Witherspoon won. \"\"Walk the Line\"\" is an enhanced CD which also contains two deleted scenes from the film: Phoenix performing \"\"Rock 'n' Roll Ruby\"\" and Phoenix and Witherspoon together near the scene of \"\"Jackson\"\". The cover features the two stars in an early publicity still, several of which were included as bonus postcards in"} +{"qid": "test1616", "pid": "1526728", "query": "who starred in the film walk the line", "answer": "Joaquin Phoenix", "passage": "\"Pierce Brosnan\"\na 17% rating on Rotten Tomatoes. Brosnan's next film was 2005's \"\"The Matador\"\". He starred as Julian Noble, a jaded, neurotic assassin who meets a travelling salesman (Greg Kinnear) in a Mexican bar. The film garnered generally positive reviews. Roger Ebert for the \"\"Chicago Sun-Times\"\" called Brosnan's performance the best of his career. Brosnan was nominated for a Golden Globe award for Best Actor in a Musical or Comedy, but lost to Joaquin Phoenix for \"\"Walk the Line.\"\". In 2006, Brosnan narrated \"\"The Official Film of the 2006 FIFA World Cup\"\", directed by Michael Apted. In 2007, Brosnan appeared in"} +{"qid": "test1618", "pid": "4462756", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Human rights in Europe\"\nYugoslavia, (Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia) are in various stages of human rights development. Slovenia, which suffered least in the Yugoslav wars, is a member of EU and is widely considered to have a good human rights record and policy, Croatia joined the EU and is considered to have a good human rights, Republic of Macedonia and Montenegro have formed stable governments and have fair human rights records. However, Bosnia-Herzegovina and Serbia retain questionable rights records, the former entirely governed under UN Mandate, as is a part of the latter (Kosovo). Bosnia-Herzegovina is the most ethnically"} +{"qid": "test1618", "pid": "13226824", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Bosnia and Herzegovina–Croatia relations\"\nand Herzegovina and Croatia were engaged in the early-1990s Yugoslav wars, armed conflicts which followed the break-up of SFR Yugoslavia into five sovereign countries: Bosnia and Herzegovina, Croatia, Republic of Macedonia, Slovenia, and FR Yugoslavia (later broken up into Serbia, Montenegro and Kosovo). Croats, Bosniaks and Serbs (including Bosnian Croats and Bosnian Serbs) fought each other exchanging alliances in a series of conflicts. The majority of the wars were fought on Bosnia–Herzegovina territory, where Croats established the Croatian Republic of Herzeg-Bosnia. However, after the wars Bosnia and Herzegovina and Croatia retained the same border they had during SFR Yugoslavia, and"} +{"qid": "test1618", "pid": "6569540", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Greek Catholic Church of Croatia and Serbia\"\nCatholic Eparchy of Križevci had full jurisdiction over all Eastern Catholics of the Byzantine Rite throughout the entire territory of former Yugoslavia, including all of its successor states: Croatia, Slovenia, Bosnia-Herzegovina, Serbia, Montenegro and Macedonia. During that time, it mostly gathered its faithful among the Croats in central and eastern Croatia, among the Rusyns or Ukrainians in eastern Croatia, northern Bosnia and northern Serbia and among Macedonians in Macedonia. After the formation of independent successor states from what had been Yugoslavia, the process of administrative reorganization was initiated. In 2001, a separate Byzantine Catholic Apostolic Exarchate of Macedonia was formed"} +{"qid": "test1618", "pid": "5333143", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Breakup of Yugoslavia\"\nin Yugoslavia. In January 1992, Croatia and Yugoslavia signed an armistice under UN supervision, while negotiations continued between Serb and Croat leaderships over the partitioning of Bosnia and Herzegovina. On 15 January 1992, the independence of Croatia and Slovenia was recognized around the world. Slovenia, Croatia, and Bosnia would later be admitted as member states of the United Nations on 22 May 1992. Macedonia was admitted as a member state of the United Nations on 8 April 1993. The independence of Bosnia and Herzegovina proved to be the final blow to the pan-Yugoslav Socialist Federal Republic of Yugoslavia. On 28"} +{"qid": "test1618", "pid": "15276207", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"U2 concert in Sarajevo\"\nlauded by Bosnians. Socialist Federal Republic of Yugoslavia was composed of six constituent republics: Bosnia-Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. In 1991, Croatia, and Slovenia seceded from Yugoslavia. Bosnia-Herzegovina—a republic with a mixed population consisting of Bosniaks, Serbs, and Croats—followed suit in March 1992 in a highly controversial referendum, creating tension in the ethnic communities. Bosnian Serb militias, whose strategic goal was to secede from Bosnia and Herzegovina and unite with Serbia, encircled Sarajevo with a siege force of 18,000 stationed in the surrounding hills, from which they assaulted the city with weapons that included artillery, mortars, tanks, anti-aircraft"} +{"qid": "test1618", "pid": "5333067", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Breakup of Yugoslavia\"\nBreakup of Yugoslavia The breakup of Yugoslavia occurred as a result of a series of political upheavals and conflicts during the early 1990s. After a period of political crisis in the 1980s, constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused bitter inter-ethnic Yugoslav wars. The wars primarily affected Bosnia and Herzegovina and neighboring parts of Croatia. After the Allied victory in World War II, Yugoslavia was set up as a federation of six republics, with borders drawn along ethnic and historical lines: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia and Slovenia. In"} +{"qid": "test1618", "pid": "11011551", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"World War II in Yugoslav Macedonia\"\nline. The new leadership of the People's Republic of Macedonia headed by Lazar Kolishevski confirmed the decisions of AVNOJ, and Macedonia joined Yugoslavia. Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia eventually all became part of the Socialist Federal Republic of Yugoslavia . The Macedonian national feelings were already ripe at that time as compared to 1941. Subsequently, to wipe out the remaining bulgarophile sentiments, the new Communist authorities persecuted the right-wing nationalists with the charges of \"\"great-Bulgarian chauvinism\"\". The next task was also to break up all the organisations that opposed the idea of Yugoslavia. So even older"} +{"qid": "test1618", "pid": "2026713", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Socialist Federal Republic of Yugoslavia\"\nactually meant and whether it was satisfied. Following the secession of Bosnia and Herzegovina, the SFR Yugoslavia was considered dissolved into five successor states on 27 April 1992: Bosnia and Herzegovina, Croatia, Macedonia, Slovenia and the Federal Republic of Yugoslavia (later renamed \"\"Serbia and Montenegro\"\"). Badinter Commission later (1991-1993) noted that Yugoslavia disintegrated into several independent states, so it is not possible to talk about the secession of Slovenia and Croatia from Yugoslavia. In September 1992, the Federal Republic of Yugoslavia (consisting of Serbia and Montenegro) failed to achieve \"\"de jure\"\" recognition as the continuation of the Socialist Federal Republic"} +{"qid": "test1618", "pid": "12365363", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Bogić Bogićević\"\nYugoslavia and allow the Yugoslav army to remove recently elected secessionist governments, particularly in Croatia and Slovenia, as well as in Macedonia and his native Bosnia and Herzegovina. Bogićević rejected the proposal, and thus by one vote, the Yugoslav collective presidency voted against enacting martial law. Wartime period 1992 to 1995 he spent in Sarajevo under the siege. He was a member of the House of Representatives of Bosnia and Herzegovina, and vice president of the Social Democratic Party of Bosnia and Herzegovina. Bogićević was the vice-president of the Social Democratic Party of Bosnia and Herzegovina, and chairman of the"} +{"qid": "test1618", "pid": "2026772", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Socialist Federal Republic of Yugoslavia\"\nidentify with the former Yugoslav state may self-identify as Yugoslavs. All of the successor states are candidates for European Union membership, with Slovenia and Croatia already having joined. Slovenia joined in 2004, and Croatia followed in 2013. Macedonia, Montenegro and Serbia are official candidates. Bosnia and Herzegovina has submitted an application and Kosovo has not submitted an application but is nevertheless recognized as \"\"potential candidate\"\" for a possible future enlargement of the European Union. All states of the former Yugoslavia, with the exception of Kosovo, have subscribed to the Stabilisation and Association Process with the EU. EULEX (European Union Rule"} +{"qid": "test1618", "pid": "2281111", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Presidency of Bill Clinton\"\nCold War, Serbian nationalist Slobodan Milošević took power as the leader of the Socialist Republic of Serbia. His nationalist policies alienated leaders of the other constituent countries of Yugoslavia, a multi-ethnic state that had been established in 1918. Slovenia, Croatia, and the Republic of Macedonia each declared independence from Yugoslavia in 1991, but Serbian forces forcefully opposed Croatia's independence, beginning the Yugoslav Wars. In 1992, Bosnia and Herzegovina also declared independence. As in Croatia, a significant minority of Serbs opposed to independence lived in Bosnia and Herzegovina, and the Bosnian War began between proponents and opponents of independence. ethnic cleansing"} +{"qid": "test1618", "pid": "8964747", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Yugoslavia at the 1992 Winter Olympics\"\nYugoslavia at the 1992 Winter Olympics Athletes from the Socialist Federal Republic of Yugoslavia competed at the 1992 Winter Olympics in Albertville, France. It was the final Olympic Games for Yugoslavia under this name, which at that point consisted of Bosnia and Herzegovina, Montenegro and Serbia. Republic of Macedonia had become independent but the skier Vesna Dunimagloska participated as part of Yugoslav team. Croatia and Slovenia participated as independent nations for the first time at these Games, while Bosnia and Herzegovina participated in the 1992 Summer Olympics. Yugoslavia missed the 1994 Winter Olympics because of international sanctions, but a united"} +{"qid": "test1618", "pid": "13052189", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"OT Band\"\n2008. The contestants include young singers from all the countries of former SFR Yugoslavia (except Slovenia) — Serbia, Croatia, Bosnia and Herzegovina, Montenegro and Macedonia. Four of sixteen contestants were Vukašin Brajić, Đorđe Gogov, Nikola Paunović and Nikola Sarić. All of them are from Serbia; Brajić was born in Bosnia and Herzegovina, but has lived in Serbia since his childhood. During the show, Brajić, Gogov, Paunović and Sarić were recognized as rock musicians, and they were named the \"\"OT Rockers\"\". The singing professor Mirko Vukomanović, and a famous Serbian music producer, told that Brajić and Sarić are very good guitarists,"} +{"qid": "test1618", "pid": "15589452", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"1992 Bosnian independence referendum\"\nnot recognized internationally. In late December 1991, Bosniak and Croat politicians asked the European Economic Community (EEC) to recognize Bosnia and Herzegovina with Slovenia, Croatia and Macedonia as sovereign nations. The Badinter Arbitration Committee, set up by the EEC, initially refused to recognize Bosnia and Herzegovina because of its \"\"absence of a referendum\"\" while it determined (among other things) that Yugoslavia was in the process of dissolution and the internal boundaries of its republics could not be altered without agreement. In January 1992, the EEC ruled that \"\"the will of the peoples of Bosnia Herzegovina to constitute the Social Republic"} +{"qid": "test1618", "pid": "362820", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Demographics of Slovenia\"\nindigenous minorities under the Constitution of Slovenia, which guarantees them seats in the National Assembly. Most other minority groups, particularly those from other parts of the former Yugoslavia (except for one part of autochthonous community of Serbs and Croats), relocated after World War II for economic reasons. Around 12.4% of the inhabitants of Slovenia were born abroad. According to data from 2008, there were around 100,000 non-EU citizens living in Slovenia, or around 5% of the overall population of the country. The highest number came from Bosnia and Herzegovina, followed by immigrants from Serbia, Macedonia, Croatia and Kosovo. The number"} +{"qid": "test1618", "pid": "6678785", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Southeast European Cooperative Initiative\"\nregion. The SECI was originally composed of Albania, Bosnia and Herzegovina, Bulgaria, Macedonia, Greece, Hungary, Moldova, Romania, Turkey, Yugoslavia, Croatia and Slovenia. However those last three participants caused some growing pains for the initiative in its nascent stages. Yugoslavia’s invitation was revoked after the country cancelled local election results when a minority party won the popular vote, eventually being allowed in as Serbia and Montenegro and Slovenia and Croatia originally agreed to join but only as observer nations. The Slovenian concern was that they were a Central European country, not part of SEE, but once Hungary joined, they quickly followed"} +{"qid": "test1618", "pid": "2026740", "query": "bosnia and herzegovina croatia macedonia and slovenia all used to be parts of", "answer": "Yugoslavia", "passage": "\"Socialist Federal Republic of Yugoslavia\"\nof Slovenia, Croatia, Macedonia, and Bosnia and Herzegovina separated from it, though the Yugoslav military controlled parts of Croatia and Bosnia prior to the state's dissolution. By 1992, only the republics of Serbia and Montenegro remained committed to union, and formed the Federal Republic of Yugoslavia (FRY) in that year. The SFRY recognised \"\"nations\"\" \"\"(narodi)\"\" and \"\"nationalities\"\" \"\"(narodnosti)\"\" separately; the former included the constituent South Slavic peoples (Croats, Macedonians, Montenegrins, Muslims (from 1971), Serbs and Slovenes), while the latter included other Slavic and non-Slavic ethnic groups such as Bulgarians, Czechs, Rusyns and Slovaks (Slavic); or Albanians, Germans, Hungarians, Italians and"} +{"qid": "test1619", "pid": "5498557", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "Bassae\na subtly curved floor, though the columns have entasis. The temple is unusual in that it has examples of all three of the classical orders used in ancient Greek architecture: Doric, Ionic, and Corinthian. Doric columns form the peristyle while Ionic columns support the interior and a single Corinthian column features in the centre of the interior. The Corinthian capital is the earliest example of the order found to date. It was relatively sparsely decorated on the exterior. Inside, however, there was a continuous Ionic frieze showing Athenians in battle with Amazons and the Lapiths engaged in battle with Centaurs."} +{"qid": "test1619", "pid": "874634", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ionic order\"\nIonic order The Ionic order forms one of the three classical orders of classical architecture, the other two canonic orders being the Doric and the Corinthian. There are two lesser orders: the Tuscan (a plainer Doric), and the rich variant of Corinthian called the composite order, both added by 16th-century Italian architectural writers, based on Roman practice. Of the three canonic orders, the Ionic order has the narrowest columns. The Ionic capital is characterized by the use of volutes. The Ionic columns normally stand on a base which separates the shaft of the column from the stylobate or platform; the"} +{"qid": "test1619", "pid": "874647", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ionic order\"\nedifices antiques de Rome\"\" (Paris 1682). Ionic order The Ionic order forms one of the three classical orders of classical architecture, the other two canonic orders being the Doric and the Corinthian. There are two lesser orders: the Tuscan (a plainer Doric), and the rich variant of Corinthian called the composite order, both added by 16th-century Italian architectural writers, based on Roman practice. Of the three canonic orders, the Ionic order has the narrowest columns. The Ionic capital is characterized by the use of volutes. The Ionic columns normally stand on a base which separates the shaft of the column"} +{"qid": "test1619", "pid": "87437", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Classical order\"\nAncient Greek architecture: Doric, Ionic, and Corinthian. These three were adopted by the Romans, who modified their capitals. The Roman adoption of the Greek orders took place in the 1st century BC. The three Ancient Greek orders have since been consistently used in neo-classical European architecture. Sometimes the Doric order is considered the earliest order, but there is no evidence to support this. Rather, the Doric and Ionic orders seem to have appeared at around the same time, the Ionic in eastern Greece and the Doric in the west and mainland. Both the Doric and the Ionic order appear to"} +{"qid": "test1619", "pid": "3435631", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ancient Greek temple\"\na thin \"\"abacus\"\". The eponymous Corinthian capital of the Corinthian order is crowned by rings of stylised acanthus leaves, forming tendrils and volutes that reach to the corners of the \"\"abacus\"\". The capitals support the entablature. In the Doric order, the entablature always consists of two parts, the architrave and the Doric frieze (or triglyph frieze). The Ionic order of Athens and the Cyclades also used a frieze above an architrave, whereas the frieze remained unknown in the Ionic architecture of Asia Minor until the 4th century BC. There, the architrave was directly followed by the \"\"dentil\"\". The frieze was"} +{"qid": "test1619", "pid": "6704725", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"The Lawn\"\ncolumns, that originally held the University's library. There are a total of 206 columns surrounding the Lawn: 16 on The Rotunda, 38 on the Pavilions, 152 on the walkways. The columns are of varying orders according to the formality and usage of the space, with Corinthian columns on the exterior of the Rotunda giving way to Doric, Ionic, and Composite orders inside; Doric, Ionic, or Corinthian on each of the pavilions; and a relatively humble Tuscan colonnade along the Lawn walkways. Jefferson's design for the Lawn sought to find an alternative to traditional single-building college architecture, such as that he"} +{"qid": "test1619", "pid": "11647779", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ancient Corinth\"\nstyle of classical architecture after the Doric and the Ionic. The Corinthian order was the most complicated of the three, showing the city's wealth and the luxurious lifestyle, while the Doric order evoked the rigorous simplicity of the Spartans, and the Ionic was a harmonious balance between these two following the cosmopolitan philosophy of Ionians like the Athenians. The city had two main ports: to the west on the Corinthian Gulf lay Lechaion, which connected the city to its western colonies (Greek: apoikiai) and Magna Graecia, while to the east on the Saronic Gulf the port of Kenchreai served the"} +{"qid": "test1619", "pid": "87431", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Classical order\"\nClassical order An order in architecture is a certain assemblage of parts subject to uniform established proportions, regulated by the office that each part has to perform. Coming down to the present from Ancient Greek and Ancient Roman civilization, the architectural orders are the styles of classical architecture, each distinguished by its proportions and characteristic profiles and details, and most readily recognizable by the type of column employed. The three orders of architecture—the Doric, Ionic, and Corinthian—originated in Greece. To these the Romans added, in practice if not in name, the Tuscan, which they made simpler than Doric, and the"} +{"qid": "test1619", "pid": "637266", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ancient Greek architecture\"\nso that the elegance of its proportions and the effects of light on its surfaces might be viewed from all angles. Nikolaus Pevsner refers to \"\"the plastic shape of the [Greek] temple ... placed before us with a physical presence more intense, more alive than that of any later building\"\". The formal vocabulary of ancient Greek architecture, in particular the division of architectural style into three defined orders: the Doric Order, the Ionic Order and the Corinthian Order, was to have profound effect on Western architecture of later periods. The architecture of ancient Rome grew out of that of Greece"} +{"qid": "test1619", "pid": "651017", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Doric order\"\nDoric order The Doric order was one of the three orders of ancient Greek and later Roman architecture; the other two canonical orders were the Ionic and the Corinthian. The Doric is most easily recognized by the simple circular capitals at the top of columns. Originating in the western Dorian region of Greece, it is the earliest and in its essence the simplest of the orders, though still with complex details in the entablature above. The Greek Doric column was fluted or smooth-surfaced, and had no base, dropping straight into the stylobate or platform on which the temple or other"} +{"qid": "test1619", "pid": "651035", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Doric order\"\nin a Protestant church a Greek Doric porch promised a return to an untainted early church; it was equally appropriate for a library, a bank or a trustworthy public utility. The revived Doric did not return to Sicily until 1789, when a French architect researching the ancient Greek temples designed an entrance to the Botanical Gardens in Palermo. Doric order The Doric order was one of the three orders of ancient Greek and later Roman architecture; the other two canonical orders were the Ionic and the Corinthian. The Doric is most easily recognized by the simple circular capitals at the"} +{"qid": "test1619", "pid": "567743", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Corinthian order\"\nCorinthian order The Corinthian order is the last developed of the three principal classical orders of ancient Greek and Roman architecture. The other two are the Doric order which was the earliest, followed by the Ionic order. When classical architecture was revived during the Renaissance, two more orders were added to the canon, the Tuscan order and the Composite order. The Corinthian, with its offshoot the Composite, is the most ornate of the orders. This architectural style is characterized by slender fluted columns and elaborate capitals decorated with acanthus leaves and scrolls. There are many variations. The name \"\"Corinthian\"\" is"} +{"qid": "test1619", "pid": "637311", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ancient Greek architecture\"\norder co-existed with the Doric, being favoured by the Greek cities of Ionia, in Asia Minor and the Aegean Islands. It did not reach a clearly defined form until the mid 5th century BC. The early Ionic temples of Asia Minor were particularly ambitious in scale, such as the Temple of Artemis at Ephesus. The Corinthian Order was a highly decorative variant not developed until the Hellenistic period and retaining many characteristics of the Ionic. It was popularised by the Romans. The Doric order is recognised by its capital, of which the \"\"echinus\"\" is like a circular cushion rising from"} +{"qid": "test1619", "pid": "7455028", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Roland Fréart de Chambray\"\nmoderne\"\", which marked the first complete translation of Vitruvius into French and upheld the superiority of the Ancients over the Moderns, a polemic that was to erupt in the following decades into a virtual culture war. In his preface, Fréart de Chambray argues that the Classical orders (the Doric, the Ionic, and Corinthian) which he assigns to Greek precedents, are perfect models for all architecture; he condemns the \"\"Roman orders\"\" (the Tuscan and the Composite) as corrupt. Citing the use of the Corinthian order in the Temple of Solomon, he declares it to be the ‘flower of Architecture and the"} +{"qid": "test1619", "pid": "9305907", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"French Renaissance architecture\"\nCorinthian order on top. The order used on each level determined the style of that level of the facade. Philibert de l'Orme went further and added two new orders to his facades, French Doric and the French Ionic. These columns were regular Doric and Ionic columns decorated with ornamental bands or rings. The second period featured also a wide variety of decorate plaques and sculptural decoration on the facades, usually borrowed from ancient Greek or Roman models. These included the Caryatide; elaborate cartouches; 'Renommées', relief statues representing Fame, over doorways; \"\"Grotesques\"\", often in the form of satyrs and griffons; and"} +{"qid": "test1619", "pid": "87458", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Classical order\"\nand proportions, and made use of the order throughout. The Delhi Order reappears in some later Lutyens buildings including Campion Hall, Oxford. Classical order An order in architecture is a certain assemblage of parts subject to uniform established proportions, regulated by the office that each part has to perform. Coming down to the present from Ancient Greek and Ancient Roman civilization, the architectural orders are the styles of classical architecture, each distinguished by its proportions and characteristic profiles and details, and most readily recognizable by the type of column employed. The three orders of architecture—the Doric, Ionic, and Corinthian—originated in"} +{"qid": "test1619", "pid": "3959646", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Tuscan order\"\nTuscan order The Tuscan order is in effect a simplified Doric order, with un-fluted columns and a simpler entablature with no triglyphs or guttae. While relatively simple columns with round capitals had been part of the vernacular architecture of Italy and much of Europe since at least Etruscan architecture, the Romans did not consider this style to be a distinct architectural order (for example, the Roman architect Vitruvius did not include it alongside his descriptions of the Greek Doric, Ionic, and Corinthian orders). Instead the Tuscan order, presented as a standardized formal order, is an invention of Italian Renaissance writers"} +{"qid": "test1619", "pid": "637310", "query": "doric ionic and corinthian orders all refer to types of", "answer": "architecture", "passage": "\"Ancient Greek architecture\"\nOrder, the Ionic Order and the Corinthian Order, the names reflecting their regional origins within the Greek world. While the three orders are most easily recognizable by their capitals, the orders also governed the form, proportions, details and relationships of the columns, entablature, pediment and the stylobate. The different orders were applied to the whole range of buildings and monuments. The Doric Order developed on mainland Greece and spread to Magna Graecia (Italy). It was firmly established and well-defined in its characteristics by the time of the building of the Temple of Hera at Olympia, c. 600 BC. The Ionic"} +{"qid": "test1620", "pid": "9507934", "query": "when was the last year the eagles went to the superbowl", "answer": "2017", "passage": "\"Adam Simpson\"\nLeigh Tudor and Peter Sumich. In his first year as senior coach the Eagles finished 9th. The following year, Simpson and the Eagles surprised many commentators by their performance when the club finished 2nd at the end home & away rounds. The team went onto play in the 2015 AFL Grand Final, which they lost to Hawthorn. In the following two seasons the Eagles made the finals, bowing out in the elimination final and the semi-final in 2016 and 2017 respectively. Simpson coached the Eagles to their second grand final in four seasons in 2018, and in contrast to 2015"} +{"qid": "test1621", "pid": "6919483", "query": "who made the first to record with the electric guitar", "answer": "George Warren Barnes", "passage": "\"George Barnes (musician)\"\nGeorge Barnes (musician) George Warren Barnes (July 17, 1921 – September 5, 1977) was an American swing jazz guitarist who played the first electric guitar in 1931. He made the first commercial recording of an electric guitar on March 1, 1938, in sessions with Big Bill Broonzy. Barnes was born in South Chicago Heights, Illinois in 1921. His father was a guitarist and taught Barnes acoustic guitar at the age of nine. A year later, in 1931, Barnes's brother made a pickup and amplifier for him. Barnes said that he was the first person to play electric guitar. From 1935–1937,"} +{"qid": "test1621", "pid": "6919494", "query": "who made the first to record with the electric guitar", "answer": "George Warren Barnes", "passage": "\"George Barnes (musician)\"\n\"\"George Barnes' Living Guitar Method; The Easy Way to Learn All the Chords and Rhythms\"\" and \"\"Ten Duets for Two Guitars\"\" (recorded with his partner Carl Kress) for Music Minus One. In 1965, he wrote \"\"How to Arrange for Solo Guitar\"\", published by Peermusic. He also produced the first guitar course offered on cassette tape, \"\"The Great George Barnes Guitar Course\"\", published in 1970 by Prentice Hall. With Cootie Williams George Barnes (musician) George Warren Barnes (July 17, 1921 – September 5, 1977) was an American swing jazz guitarist who played the first electric guitar in 1931. He made the"} +{"qid": "test1622", "pid": "8368107", "query": "what is the money called in south korea", "answer": "won", "passage": "\"Media of South Korea\"\nin South Korea, which launched in 1956. In South Korea, terrestrial television broadcasting is common and popular. As terrestrial broadcasters, there are 5 channels with 4 television stations: KBS, MBC, EBS are public broadcasters while SBS is a commercial broadcaster (so-called many public broadcasters). It is a unique system; unlike South Korea, almost every county has one public broadcaster and many commercial broadcasters. KBS is funded by public money accrued from a television license fee gathered from all South Korea households with a television set. As of 2010, the fee is 2500 won (about 2 USD). Due to low public"} +{"qid": "test1622", "pid": "2035939", "query": "what is the money called in south korea", "answer": "won", "passage": "\"South Korean won\"\nof the Chinese character 錢 (\"\"qián\"\") which means \"\"money\"\" and also used as a unit of money in ancient times. The current won (1962 to present) is written in hangul only and does not officially have any hanja associated with it. Prior to 1910, the won was the currency. During the colonial era under the Japanese (1910-45), the won was replaced by the Korean yen which was at par with the Japanese Yen. After World War II ended in 1945, Korea was divided, resulting in two separate currencies, both called won, for the South and the North. Both the Southern"} +{"qid": "test1622", "pid": "17944619", "query": "what is the money called in south korea", "answer": "won", "passage": "\"2014 LPGA of Korea Tour\"\n2014 LPGA of Korea Tour The 2014 LPGA of Korea Tour was the 37th season of the LPGA of Korea Tour, the professional golf tour for women operated by the Korea Ladies Professional Golf' Association. It consisted of 29 golf tournaments, 25 played in South Korea, two in China, one in Taiwan, and one in Japan. Kim Hyo-joo won five tournaments and was the leading money winner with earnings of ₩1,208,978,590. The number in parentheses after winners' names show the player's total number wins in official money individual events on the LPGA of Korea Tour, including that event. Events in"} +{"qid": "test1622", "pid": "16985170", "query": "what is the money called in south korea", "answer": "won", "passage": "\"2013 LPGA of Korea Tour\"\n2013 LPGA of Korea Tour The 2013 LPGA of Korea Tour was the 36th season of the LPGA of Korea Tour, the professional golf tour for women operated by the Korea Ladies Professional Golf' Association. It consisted of 23 golf tournaments, 20 played in South Korea, two played in China, and one played in Taiwan. Jang Ha-na won three tournaments and was the leading money winner with earnings of ₩689,542,549. The number in parentheses after winners' names show the player's total number wins in official money individual events on the LPGA of Korea Tour, including that event. Events in bold"} +{"qid": "test1623", "pid": "10600581", "query": "who won three stanley cups in a row", "answer": "New York Islanders", "passage": "\"1982 Stanley Cup Finals\"\n1982 Stanley Cup Finals The 1982 Stanley Cup Finals was the championship series of the National Hockey League's (NHL) 1981–82 season, and the culmination of the 1982 Stanley Cup playoffs. It was played between the Vancouver Canucks in their first Finals appearance and the defending champion New York Islanders, in their third Finals appearance. The Islanders won the best-of-seven series, four games to none, to win their third consecutive and overall Stanley Cup championship. This is also the most recent time that a Stanley Cup Champion has won three in a row and the first, and so far only, time"} +{"qid": "test1623", "pid": "6217021", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"Curse of 1940\"\nplayoffs for the first time and defeated the Rangers. The two teams squared off again in 1979, a series the Rangers won. They went on to lose the Cup Finals to the Montreal Canadiens, who won their fourth Stanley Cup in a row. The Islanders won the Stanley Cup for the first time in , beginning their own streak of four consecutive championships; their title capped off their 11th season and the team surpassed the then-57-year-old Rangers for total Cups won. During the Islanders' second Cup run, in , the Islanders swept the Rangers in the second round. During that"} +{"qid": "test1623", "pid": "10401040", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"1930 Stanley Cup Finals\"\n1930 Stanley Cup Finals The 1930 Stanley Cup Finals was played between the Boston Bruins and the Montreal Canadiens. In a best of three series, Montreal won 4–3 and 3–0 to win the team's third Stanley Cup championship. The defending champion Boston Bruins had an outstanding season. Their final record of 38–5–1 translates to an .875 winning percentage, the best in NHL history. The team did not lose two games in a row all season, until being swept by the Canadiens. This prompted the change for the following year in the Finals format to a best-of-five format. The final was"} +{"qid": "test1623", "pid": "10609660", "query": "who won three stanley cups in a row", "answer": "New York Islanders", "passage": "\"1983–84 Edmonton Oilers season\"\nstraight year. The Oilers would sweep the Minnesota North Stars in the Campbell Conference final, setting up a Stanley Cup rematch against the New York Islanders. The Islanders, who swept the Oilers the previous year, were looking to win their 5th straight Stanley Cup. Edmonton, however, had other plans, and after the teams split the first 2 games in New York, the Oilers would win 3 in a row to win the series in 5 games, and win their first Stanley Cup, becoming the first team from the WHA to win the cup. Mark Messier won the Conn Smythe Trophy"} +{"qid": "test1623", "pid": "3060902", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"Joe Hall\"\nThistles, and in the National Hockey Association as a member of the Quebec Bulldogs. He played for the Montreal Canadiens in their first two seasons in the National Hockey League from 1917-1919. Hall won the Stanley Cup with the Kenora Thistles in 1907, for which he received a \"\"loving cup\"\" which is on display in the Hockey Hall of Fame. He won the Cup with the Quebec Bulldogs in 1912 and 1913. He also challenged for the Stanley Cup in 1904 with the Winnipeg Rowing Club. In 1919, Hall was part of the Montreal Canadiens team that made it to"} +{"qid": "test1623", "pid": "6215920", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"1968–69 NHL season\"\n1968–69 NHL season The 1968–69 NHL season was the 52nd season of the National Hockey League. Twelve teams each played 76 games (two more than in 1967–68). For the second time in a row, the Montreal Canadiens faced the St. Louis Blues in the Stanley Cup finals. Montreal won their second consecutive Stanley Cup as they swept the Blues in four, an identical result to the previous season. Prior to this season no player in NHL history had ever achieved 100 points in a season, but 1968–69 saw three achieve the feat. The Boston Bruins' Phil Esposito led the way"} +{"qid": "test1623", "pid": "10950460", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"1937 Stanley Cup Finals\"\nbecame the first rookie goaltender to post two shutouts in the finals. He would not play again for the Wings. The Wings became the first U.S.-based team to win the Cup two years in a row. 1937 Stanley Cup Finals The 1937 Stanley Cup Finals was contested by the defending champion Detroit Red Wings and the New York Rangers in their fifth Final series appearance. Detroit would win the series 3–2 to win their second and second-straight Stanley Cup. Detroit defeated Montreal Canadiens in a best-of-five 3–2 to advance to the final. The Rangers had to play two best-of three"} +{"qid": "test1623", "pid": "6277562", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"1977–78 NHL season\"\n1977–78 NHL season The 1977–78 NHL season was the 61st season of the National Hockey League. The Montreal Canadiens won their third Stanley Cup in a row, defeating the Boston Bruins four games to two in the Stanley Cup Finals. Clarence Campbell retired as NHL President, prior to this season. John Ziegler succeeded him. A trophy for the top defensive forward, the Frank J. Selke Trophy, made its debut this season and went to Bob Gainey, who played left wing for Montreal. On June 14, 1978, the league approved the merger of the financially struggling Cleveland Barons and Minnesota North"} +{"qid": "test1623", "pid": "6277571", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"1977–78 NHL season\"\nthe World Hockey Association.\"\" 1977–78 NHL season The 1977–78 NHL season was the 61st season of the National Hockey League. The Montreal Canadiens won their third Stanley Cup in a row, defeating the Boston Bruins four games to two in the Stanley Cup Finals. Clarence Campbell retired as NHL President, prior to this season. John Ziegler succeeded him. A trophy for the top defensive forward, the Frank J. Selke Trophy, made its debut this season and went to Bob Gainey, who played left wing for Montreal. On June 14, 1978, the league approved the merger of the financially struggling Cleveland"} +{"qid": "test1623", "pid": "8202606", "query": "who won three stanley cups in a row", "answer": "Montreal Canadiens", "passage": "\"1925 Stanley Cup Finals\"\nHalderson became the first players to win both an Olympic gold medal and the Stanley Cup. Fredrickson and Halderson had been members of the Winnipeg Falcons who won gold at the 1920 Olympic Games. 1925 Stanley Cup Finals The 1925 Stanley Cup Finals saw the Western Canada Hockey League (WCHL) champion Victoria Cougars defeat the National Hockey League (NHL) champion Montreal Canadiens three games to one in a best-of-five game series. The Canadiens were substitute NHL representatives, as the final series to decide the NHL champion was not played. The Cougars were the last non-NHL team to win the Cup"} +{"qid": "test1624", "pid": "6135854", "query": "who played young monica in love and basketball", "answer": "Kyla Pratt", "passage": "\"Love & Basketball\"\nMagic Johnson's number: 32. Quincy wanted to be like his father and play for the Clippers, wearing number 22. However, Monica has to work hard to establish herself, while Quincy was born with natural star potential. As the two struggle to reach their goals of playing professionally, they must also deal with their emotions for each other. The film spans roughly thirteen years of friendship between childhood sweethearts Monica Wright and Quincy McCall. The first quarter of the story begins in 1981, when Monica (played as a youth by Kyla Pratt) and her family moved to Los Angeles from Atlanta,"} +{"qid": "test1625", "pid": "13046453", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place: The Movie\"\nand then 'Magical' is about casting a spell on a guy and this song, 'Magic', ties into \"\"Wizards of Waverly Place: The Movie\"\"\"\". Although recorded for an episode, \"\"Make it Happen\"\" doesn't appear on the album, for an unknown reason. The album includes songs from and inspired by the TV series and \"\"Wizards of Waverly Place: The Movie\"\". \"\"Magic\"\" by Selena Gomez is a digital single on the iTunes Store. The song was released on July 21, 2009 as part of the Radio Disney iTunes Pass. \"\"Magic\"\" premiered on Radio Disney and a music video to Disney Channel on July"} +{"qid": "test1625", "pid": "13434147", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place (soundtrack)\"\nWizards of Waverly Place (soundtrack) Wizards of Waverly Place is the soundtrack album from the Disney Channel Original Series of the same name. The album was released as a physical CD, enhanced CD and digital on August 4, 2009, under Walt Disney Records. The album includes songs from and inspired by the television series and \"\"\"\". In an interview with Disney Channel's commercial-segment, \"\"Disney 365\"\", Selena Gomez discussed her interpretations of the songs on the soundtrack saying: \"\"\"\"Disappear\"\" is more of a romantic song. It's basically talking about how a girl likes a guy and they [she] don't want him"} +{"qid": "test1625", "pid": "9651559", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place\"\nbetween good and evil atop the Leaning Tower of Pisa. The film is titled \"\"The Wizards Return: Alex vs. Alex\"\" and premiered on March 15, 2013. This series was created and as produced by Todd J. Greenwald, who began developing the show after working as a writer and consulting producer during the first season of \"\"Hannah Montana\"\". The show is produced by It's a Laugh Productions and Disney Channel Original Productions. The theme song, \"\"Everything Is Not What It Seems\"\", written by John Adair and Steve Hampton, is of techno-pop style and is performed by Selena Gomez. The series was"} +{"qid": "test1625", "pid": "14630546", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place (season 4)\"\nwaving her wand to reveal the title logo and the name of the creator. The theme song \"\"Everything Is Not What It Seems\"\" has also been remixed and sung by Selena Gomez for the fourth season of the show. Alex and Justin are sent back to level one in the wizard competition after \"\"exposing\"\" wizardry in \"\"Alex Tells the World\"\", leaving Max as the most expected to become the family wizard. In \"\"Alex Gives Up\"\", Alex quits the competition, but eventually decides to stay in the competition in \"\"Journey to the Center of Mason\"\" to be with Mason. Before then,"} +{"qid": "test1625", "pid": "9651551", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place\"\nof Waverly Place\"\" chronicles the adventures of the Russo Family. The Russos live on Waverly Place in Manhattan's Greenwich Village, above a sandwich shop which they own and run. The family consists of siblings Alex (Selena Gomez), Justin (David Henrie), and Max (Jake T. Austin). The three teenagers are wizards and live with their Italian father, Jerry (David DeLuise), a former family wizard, and their mortal Mexican mother, Theresa (Maria Canals Barrera). When the Russo siblings complete their wizard training, they have to participate in a competition to decide who will become the Family Wizard (the one to keep his/her"} +{"qid": "test1625", "pid": "14597403", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place (season 1)\"\ntechno-pop style and is performed by Selena Gomez. The series is filmed at Hollywood Center Studios in Hollywood, California. Set on Waverly Place in Manhattan, New York's Greenwich Village neighborhood, \"\"Wizards of Waverly Place\"\" centers on the Italian-Mexican Russo family, which includes Alex (Selena Gomez), her older brother Justin (David Henrie) and their younger brother Max (Jake T. Austin). The three Russo siblings are wizards in training and live with their Italian-American father Jerry (David DeLuise), a former wizard, and their Mexican-American mother Theresa, who is a mortal. Alex also has a mortal friend, Harper (Jennifer Stone), who at first"} +{"qid": "test1625", "pid": "14744278", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Shake It Up (U.S. TV series)\"\ncast and various artists, with the theme song \"\"Shake It Up\"\" performed by American singer and actress Selena Gomez. The theme was written and produced by Aris Archontis, Jeanne Lurie and Chen Neeman, who also penned the opening title themes to fellow Disney series \"\"Sonny with a Chance\"\" and \"\"Good Luck Charlie\"\". In initial casting, Disney searched for two female co-leads. Although boasting elaborate credits of prior television experience, including guest starring on \"\"Wizards of Waverly Place\"\", Bella Thorne was cast after never dancing professionally before, and took dance classes three times a week to improve. Zendaya had theater background"} +{"qid": "test1625", "pid": "13046456", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place: The Movie\"\n2011, Selena Gomez confirmed in an interview that the proposed sequel would not be filmed. However, on July 28, 2011, Maria Canals Barrera stated in an interview that the project was \"\"not 100% dead anymore\"\" and that she was \"\"hopeful\"\" that a second film would be produced. Later, it was confirmed that the \"\"Wizards\"\" would return in a special event entitled \"\"\"\" in early 2013. Wizards of Waverly Place: The Movie Wizards of Waverly Place: The Movie is a 2009 American made-for-television comedy-drama fantasy film based on the Disney Channel Original Series \"\"Wizards of Waverly Place\"\". It was directed by"} +{"qid": "test1625", "pid": "13434148", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place (soundtrack)\"\nto disappear, and then \"\"Magical\"\" is about casting a spell on a guy and this song, \"\"Magic\"\", ties into \"\"Wizards of Waverly Place: The Movie\"\"\"\". Although recorded for the episode, \"\"Make It Happen\"\" doesn't appear on the album, for an unknown reason. In response to the soundtrack, Stephen Thomas Erlewine of Allmusic recognized \"\"Wizards\"\" for its \"\"teen revamps of boomer classics that parents can enjoy too\"\". He also stated that the album is \"\"agreeable\"\" and that Selena Gomez \"\"inevitably stands out from the pack\"\". However, Erlewine said: \"\"the dang-awful version of America's \"\"You Can Do Magic\"\" by Drew Seeley is"} +{"qid": "test1625", "pid": "14597404", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place (season 1)\"\ndoes not know the Russos are wizards. The theme song begins with Alex (Selena Gomez) waking up in the morning with her alarm clock going off. She uses a spell to make the time 6:30. She then goes into the bathroom where Justin (David Henrie) is looking at himself in the mirror and spitting out mouthwash when Alex pushes him to the side. He gets annoyed and then uses magic to trap her in the mirror. In the kitchen, Max (Jake T. Austin) has an orange which he turns into a vanilla cupcake. Meanwhile, Harper (Jennifer Stone) meets Alex at"} +{"qid": "test1625", "pid": "13046452", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Wizards of Waverly Place: The Movie\"\n7th-most-watched program on multi-channel viewing for that week, and the second-highest views watched on Disney Channel UK. The \"\"What's What Edition\"\" of the film premiered on October 24, 2009 on Disney Channel, part of a \"\"Wizards of Waverly Place\"\" marathon. The \"\"What's What Edition\"\" featured exclusive behind-the-scenes information on the film during the presentation. In an interview with Disney Channel's commercial-segment, \"\"Disney 365\"\", Selena Gomez discussed her interpretations of the songs on the soundtrack saying: \"\"'Disappear' is more of a romantic song. It's basically talking about how a girl likes a guy and they [she] don't want him to disappear,"} +{"qid": "test1625", "pid": "8683190", "query": "who sings the wizards of waverly place theme song", "answer": "Selena Gomez", "passage": "\"Selena Gomez\"\nsuccess. The series received numerous nominations and awards. Gomez recorded the theme song for the series, titled \"\"Everything is Not What It Seems\"\". Gomez later appeared in the music video for the song \"\"Burnin' Up\"\", which the Jonas Brothers had recorded and released, and later, she also appeared in an episode of the reality series \"\"\"\". While working on the second season of \"\"Wizards of Waverly Place\"\", Gomez appeared on the Disney Channel special \"\"\"\" alongside various other Disney stars. She contributed a cover of the song \"\"Cruella de Vil\"\" to the compilation album \"\"DisneyMania 6\"\", and later recorded the"} +{"qid": "test1628", "pid": "7659830", "query": "who won the academy award for best original musical score", "answer": "Alexandre Desplat", "passage": "\"Alexandre Desplat\"\nscores for \"\"The Luzhin Defence\"\", \"\"Girl with a Pearl Earring\"\", \"\"Syriana\"\", \"\"Birth\"\", \"\"Hostage\"\", \"\"Casanova\"\", \"\"The Nest\"\" and \"\"The Painted Veil\"\", for which he won the Golden Globe Award for Best Original Score, Los Angeles Film Critics Association Award for Best Music, and the 2006 World Soundtrack Award. He won the 2007 BMI Film Music Award, 2007 World Soundtrack Award, 2007 European Film Award, and received his first Academy Award nomination for Best Original Score for \"\"The Queen\"\". He also won the Silver Berlin Bear at the Berlin Film Festival for Best Film Music in \"\"The Beat that My Heart Skipped\"\"."} +{"qid": "test1629", "pid": "434499", "query": "whose new political ideas of natural rights influenced the declaration of independence", "answer": "Francis Hutcheson", "passage": "\"United States Declaration of Independence\"\nHistorian Garry Wills argued that Jefferson was influenced by the Scottish Enlightenment, particularly Francis Hutcheson, rather than Locke, an interpretation that has been strongly criticized. Legal historian John Phillip Reid has written that the emphasis on the political philosophy of the Declaration has been misplaced. The Declaration is not a philosophical tract about natural rights, argues Reid, but is instead a legal document—an indictment against King George for violating the constitutional rights of the colonists. Historian David Armitage has argued that the Declaration was strongly influenced by de Vattel's \"\"The Law of Nations\"\", the dominant international law treatise of the"} +{"qid": "test1629", "pid": "2159310", "query": "whose new political ideas of natural rights influenced the declaration of independence", "answer": "Francis Hutcheson", "passage": "\"Natural and legal rights\"\nby Francis Hutcheson. In his \"\"Inquiry into the Original of Our Ideas of Beauty and Virtue\"\" (1725), Hutcheson foreshadowed the Declaration of Independence, stating: “For wherever any Invasion is made upon unalienable Rights, there must arise either a perfect, or external Right to Resistance. . . . Unalienable Rights are essential Limitations in all Governments.” Hutcheson, however, placed clear limits on his notion of unalienable rights, declaring that “there can be no Right, or Limitation of Right, inconsistent with, or opposite to the greatest publick Good.\"\" Hutcheson elaborated on this idea of unalienable rights in his \"\"A System of Moral"} +{"qid": "test1629", "pid": "214373", "query": "whose new political ideas of natural rights influenced the declaration of independence", "answer": "John Locke", "passage": "\"John Locke\"\nstate of nature was not enough, so people established a civil society to resolve conflicts in a civil way with help from government in a state of society. However, Locke never refers to Hobbes by name and may instead have been responding to other writers of the day. Locke also advocated governmental separation of powers and believed that revolution is not only a right but an obligation in some circumstances. These ideas would come to have profound influence on the Declaration of Independence and the Constitution of the United States. According to Locke, unused property is wasteful and an offence"} +{"qid": "test1629", "pid": "400080", "query": "whose new political ideas of natural rights influenced the declaration of independence", "answer": "John Locke", "passage": "Self-determination\nself-determination, because of the explicit invocation of natural law, the natural rights of man, as well as the consent of, and sovereignty by, the people governed; these ideas were inspired particularly by John Locke's enlightened writings of the previous century. Thomas Jefferson further promoted the notion that the will of the people was supreme, especially through authorship of the United States Declaration of Independence which inspired Europeans throughout the 19th century. The French Revolution was motivated similarly and legitimatized the ideas of self-determination on that Old World continent. Within the New World during the early 19th century, most of the"} +{"qid": "test163", "pid": "20110827", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship in 2016. Villanova defeated Michigan, 79–62. Donte DiVincenzo, a reserve player, scored 31 points for Villanova, and was named the"} +{"qid": "test163", "pid": "20110834", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n180 countries. In Canada, the game aired on TSN. Radio coverage in the United States was provided by Westwood One. 2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship"} +{"qid": "test163", "pid": "9737949", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats men's basketball\"\nand Kansas in 2018), which is sixth most all-time. The Villanova Wildcats have appeared in the NCAA Tournament 37 times, the eighth highest total in NCAA history. They have won the Big East regular season championship eight times, most recently winning four straight from 2014 to 2017. They won the Big East Tournament in 1995, 2015, 2017, and 2018. Villanova entered the 2016–2017 season with an all-time winning percentage of (.648), placing the Wildcats tied for 13th among all NCAA Division I basketball programs. Through 2018, Villanova has 1,753 wins, which is 23rd among Division I men's basketball teams. Villanova"} +{"qid": "test163", "pid": "9737947", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats men's basketball\"\nVillanova Wildcats men's basketball Villanova University's men's basketball team represents Villanova University and competes in the Big East Conference of NCAA Division I College basketball. Their first season was the 1920–21 season. Named the \"\"Wildcats\"\", Villanova is also a member of the Philadelphia Big Five, a rivalry of Philadelphia college basketball teams. The Wildcats have won the National Championship three times: 1985, 2016, and 2018. Their 1985 NCAA championship as an 8 seed still stands as the lowest seed ever to win the title. The game is referred to as \"\"The Perfect Game\"\" as they shot a record 78.6% as"} +{"qid": "test163", "pid": "9737996", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats men's basketball\"\ngrown larger after the success of the 2005–06 season. It is now held in the Pavilion and is open to the public and students. Following an inter-team scrimmage, notable music artists perform. Villanova Wildcats men's basketball Villanova University's men's basketball team represents Villanova University and competes in the Big East Conference of NCAA Division I College basketball. Their first season was the 1920–21 season. Named the \"\"Wildcats\"\", Villanova is also a member of the Philadelphia Big Five, a rivalry of Philadelphia college basketball teams. The Wildcats have won the National Championship three times: 1985, 2016, and 2018. Their 1985 NCAA"} +{"qid": "test163", "pid": "9817011", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats\"\nJack Kraft to Final Four of the 1971 NCAA University Division Basketball Tournament. Coach Rollie Massimino took Villanova to a surprising 1985 National Championship. Current Coach Jay Wright reached the Final Four at the 2009 NCAA Division I Men's Basketball Tournament behind Dante Cunningham and Scottie Reynolds. The team most recently won the 2018 NCAA Division I Men's Basketball Tournament for their third National Championship. Villanova won the 1985 NCAA Division I Men's Basketball Tournament with a historic 66-64 win over top-seeded Georgetown. The eighth-seeded Wildcats (unranked in the final AP poll) beat Dayton (at Dayton), top-seeded Michigan, Maryland and"} +{"qid": "test163", "pid": "9817013", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats\"\nand had 16 points in the game, was named the NCAA Tournament's Most Outstanding Player. On April 4, 2016, the Wildcats won their second NCAA Championship in Men's Basketball, the first time in 31 years. They beat the North Carolina Tar Heels 77-74 off a buzzer-beater shot by Kris Jenkins with 0.5 seconds remaining in regulation. Two years later, on April 2, 2018, Villanova earned its third national championship beating the Michigan Wolverines 79-62. The Villanova Wildcats women's basketball team are coached by Harry Perretta, now serving his 34th year as head coach of the team. For the 2017–18 season,"} +{"qid": "test163", "pid": "20252166", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"2017–18 Big East Conference men's basketball season\"\nGarden in New York from March 7 through March 10, 2018. Villanova defeated Providence to win the tournament championship and receive the conference's automatic bid to the NCAA Tournament. Six Big East schools received bids to the NCAA Tournament (Butler, Creighton, Providence, Seton Hall, Villanova, and Xavier). Only Villanova won more than one game in the Tournament, but the Wildcats defeated Michigan to win the NCAA Championship for the second time in three years. Marquette received a bit to the National Invitation Tournament, where they advanced to the quarterfinals before losing to eventual NIT champions Penn State. Villanova guard Jalen"} +{"qid": "test163", "pid": "9737948", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats men's basketball\"\na team for the game. Their 2016 NCAA Championship, is referred to as \"\"The Perfect Ending\"\" and is the only NCAA Men's Championship game to be won on a buzzer beater, as Kris Jenkins drained a shot as time expired. They made the Final Four in 1939, 1971, 1985, 2009, 2016 and 2018; their six Final Four appearances are 13th most all-time. As of 2018, they have an NCAA Tournament record of 64–36 (). Villanova has defeated six No. 1 seeds in the NCAA tournament (Michigan and Georgetown in 1985, Pittsburgh in 2009, and Kansas and North Carolina in 2016,"} +{"qid": "test163", "pid": "20110832", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n16 points ahead of Michigan. Villanova outscored Michigan by a score of 42–34 in the second half to win the championship by a score of 79–62. Villanova led Michigan in rebounds, 38–27, and limited the Wolverines to three three-point shots. With the 17 point victory, Villanova won each game in the tournament by double digit margins. DiVincenzo scored a total of 31 points, the most in a national championship game by a player who did not start. DiVincenzo's 31 points led the game, and he was named the NCAA Basketball Tournament Most Outstanding Player. The National Championship game was broadcast"} +{"qid": "test163", "pid": "11472631", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Villanova Wildcats football\"\nwill continue to compete for National Championships in the College Football Championship Subdivision as a member of the Colonial Athletic Conference (\"\"CAA\"\"). This decision had the effect of ending the question of whether Villanova should move up to the FBS for football. The NEW basketball centric BIG EAST has proven to be a great success for Villanova University catapulting the Men's Basketball program to the top of the NCAA winning National Championships in 2016 and 2018. Villanova Wildcats football The Villanova Wildcats football program represents Villanova University in the NCAA Division I Football Championship Subdivision (FCS, known as Division I-AA"} +{"qid": "test163", "pid": "8743375", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"Sports in Pennsylvania\"\n1954, while Villanova won the championship in 1985, 2016, and 2018. In football, four different Pennsylvania schools claim Division I FBS championships. Pittsburgh claims nine national titles, Penn claims seven titles, Penn State claims two titles, and Lafayette claims one title. Since the division's formation in 1978, Villanova's 2009 championship is the lone FCS championship won by a Pennsylvania school. Lehigh also has one appearance in the championship game. Championships won by Pennsylvania teams in NCAA Division I FBS football, NCAA Division I Men's Basketball, and the five major leagues (MLB, NHL, NFL, NBA, MLS): Lacrosse in Pennsylvania has a"} +{"qid": "test163", "pid": "20110830", "query": "when was the last time villanova won the ncaa basketball championship", "answer": "2018", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n2018 Big East Men's Basketball Tournament, Villanova was ranked No. 1 in the AP Poll and earned the No. 1 seed in the East Regional. In the first round, Villanova defeated the No. 16 Radford Highlanders, 87–61. Villanova blew out the No. 9 Alabama Crimson Tide by a score of 81–58 in the second round. In the Sweet 16, Villanova beat the West Virginia Mountaineers, 90–78. Villanova won against the No. 3 Texas Tech Red Raiders, 71–59, to make the Final Four. They defeated the Kansas Jayhawks by a score of 95–79 in the Final Four to reach the championship"} +{"qid": "test1630", "pid": "8251911", "query": "when was the movie the king and i made", "answer": "1956", "passage": "\"Censorship in Thailand\"\nbanned from cinemas in Thailand owing to its unfavorable depiction of Buddhist monks, was released in 2010 with an 18+ rating under the new law. All versions of the story of Anna Leonowens and King Mongkut (Rama IV) have been banned in Thailand, including the 1956 musical The King and I. More recently, the 1999 movie Anna and the King was also banned for \"\"several scenes that distort history and insult the king\"\", despite the fact that a number of changes were made to the script. Censorship Board member Thepmontri Limpayom castigated the film, saying: \"\"The filmmakers have made King"} +{"qid": "test1632", "pid": "19244966", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "\"Statue of Ahimsa\"\nStatue of Ahimsa The Statue of Ahimsa is located at Mangi-Tungi, near Nashik in the Indian state of Maharashtra. It is the tallest Jain statue in the world. The statue depicts the first Jain Tirthankara, Rishabhanatha. The statue is 108 feet (32.9 meters) tall – 121 feet (36.8 meters) including pedestal. The statue has been carved out of the Mangi-Tungi hills, which are considered to be sacred by the Jains. This statue holds the Guinness world record for the tallest Jain Idol. The certificate was awarded to Ganini Gyanmati Mataji, Chandnamati Mataji and Swami Ravindrakirtiji on 6 March 2016. The"} +{"qid": "test1632", "pid": "19915961", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "\"Tourism in India by state\"\nthe world – Sanjay Gandhi National Park. The Bibi Ka Maqbara at Aurangabad, the Mahalakshmi temple at Kolhapur, the cities of Nashik, Trimbak famous for religious importance, the city of Pune the seat of the Maratha Empire and the fantastic Ganesh Chaturthi celebrations together contribute for the Tourism sector of Maharashtra. Mangi Tungi in Nashik is a very important pilgrimage of the Jain community. The 108 ft tall Statue of Ahimsa at Mangi Tungi, the tallest Jain Statue in the world is attracting Jain devotees from around the world. This statue holds the Guinness world record for the tallest Jain"} +{"qid": "test1632", "pid": "19244972", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "\"Statue of Ahimsa\"\nof performing the Abhishek on the first day. Panchamrit Abhishek was performed using milk, flowers, orange juice, sugar cane juice, water, saffron etc. Statue of Ahimsa The Statue of Ahimsa is located at Mangi-Tungi, near Nashik in the Indian state of Maharashtra. It is the tallest Jain statue in the world. The statue depicts the first Jain Tirthankara, Rishabhanatha. The statue is 108 feet (32.9 meters) tall – 121 feet (36.8 meters) including pedestal. The statue has been carved out of the Mangi-Tungi hills, which are considered to be sacred by the Jains. This statue holds the Guinness world record"} +{"qid": "test1632", "pid": "10493143", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "\"Tourism in Maharashtra\"\ncosmopolitan nature, Mumbai has proven a popular tourism destination most often visited by Indians. This city is famous for its Grapes and Vineyards. It is known as \"\"The Wine Capital of India\"\" owing to 22 wineries being located here out of a total of 46 throughout India. Several wine festivals and wine tasting tours are held in this region. Nashik is also surrounded by various forts and hills and has an abundance of hiking trails. A 108 feet tall statue of the first Jain Tirthankar Rishabhdev was consecrated at Mangi Tungi in 2016, which is the tallest Jain statue in"} +{"qid": "test1632", "pid": "12357524", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "\"Jainism in North Karnataka\"\nmonolithic idol of the Shri 1008 Bhagavan Parshvanatha and the smaller statues of the other 8 Jain Teerthankaras. The statue stands on a 48-foot high pedestal making the total height 109 feet. The statue is the tallest statue of the Lord Parshvanatha. Dakshina Bharati Jain Sabha is a social service organization of the Jains of South India. The organization has its headquarter at Kolhapur. The association is credited with being one of the first Jain associations to start reform movements among the Jains in modern India. The organization mainly seeks to represent the interests of the native Jains of Maharashtra"} +{"qid": "test1632", "pid": "14643151", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "\"Bal Patil\"\nbeen declared as religious minority in many states of India. However, the Jain community still awaits recognition as a National Minority. In 2010, Bal Patil was awarded the \"\"Jewel of Jain World\"\" award presented by the Jain World Foundation. The award was presented to Mr. Patil for his vision and lifetime dedication to Jainism. Bal Patil Bal Patil (Marathi: बाळ पाटील; 1932–2011) was a Jain scholar, journalist, social activist and Jain minority status advocate from Mumbai, Maharashtra. He was appointed as a member of State Minority Commission by the Govt. of Maharashtra from 2001 to 2004. He was the Secretary-General"} +{"qid": "test1632", "pid": "7609055", "query": "the world's tallest jain statue is located in which state of india", "answer": "Maharashtra", "passage": "Rishabhanatha\nHe is sometimes shown presenting a bowl to his followers and teaching them the art of pottery, painting a house, or weaving textiles. The visit of his mother Marudevi is also shown extensively in painting. He is also associated with his Bull emblem, the Nyagrodha tree, Gomukha (bull-faced) Yaksha, and Chakreshvari Yakshi. Statue of Ahimsa, carved out of a single rock, is a tall ( including pedestal) statue of Rishabhanatha and is 1,840 sq feet in size. It is said to be the world's tallest Jain idol. It is located above from sea level, near Mangi-Tungi hills near Nashik (Maharashtra)."} +{"qid": "test1633", "pid": "9169644", "query": "when do dwight and angela start dating again", "answer": "Goodbye Toby", "passage": "\"Angela Martin\"\nstill doesn't reveal their relationship. In \"\"Fun Run\"\" Angela asks Dwight to feed her cat Sprinkles, who is terminally ill, but Dwight kills it in a misguided act of mercy, which causes Angela to break up with him. After Angela begins a relationship with Andy in Season 4, she stops dating Dwight, but at the end of \"\"Goodbye Toby\"\" Phyllis sees Angela cheating on Andy with Dwight. Dwight ends their affair in \"\"The Duel\"\" after learning that she has been having sexual relations with Andy. In \"\"The Delivery\"\" Dwight, who wants to improve his sales by having a child, asks"} +{"qid": "test1634", "pid": "16136656", "query": "when did fortnite save the world first come out", "answer": "July 25, 2017", "passage": "\"Fortnite: Save the World\"\ncould cross-play between all three platforms. Epic later corrected this, calling it a \"\"configuration error\"\". On July 26, 2017, it was announced that \"\"Fortnite\"\" had sold over 500,000 digital pre-order copies. On August 18, 2017, Epic confirmed that \"\"Fortnite\"\" had surpassed over a million players. Fortnite: Save the World Fortnite: Save the World is a co-op third-person shooter survival video game developed and published by Epic Games. The game was released as a paid-for early access title for Microsoft Windows, macOS, PlayStation 4 and Xbox One on July 25, 2017, with a full free-to-play release expected sometime in 2019. The"} +{"qid": "test1634", "pid": "16136618", "query": "when did fortnite save the world first come out", "answer": "July 25, 2017", "passage": "\"Fortnite: Save the World\"\nFortnite: Save the World Fortnite: Save the World is a co-op third-person shooter survival video game developed and published by Epic Games. The game was released as a paid-for early access title for Microsoft Windows, macOS, PlayStation 4 and Xbox One on July 25, 2017, with a full free-to-play release expected sometime in 2019. The retail versions of the game were published by Gearbox Software, while online distribution of the PC versions is handled by Epic's launcher. \"\"Fortnite\"\" is set in contemporary Earth, where the sudden appearance of a worldwide storm causes 98% of the world's population to disappear, and"} +{"qid": "test1634", "pid": "16136649", "query": "when did fortnite save the world first come out", "answer": "July 25, 2017", "passage": "\"Fortnite: Save the World\"\n\"\"League of Legends\"\" and \"\"Warframe\"\". Since the game had already been announced earlier in 2014 through \"\"Game Informer\"\", Epic opted not to use their Electronic Entertainment Expo time or space in June 2017 to re-announce the game, fearing that coverage of it would be lost in the deluge of other gaming news coming out of the event. Instead, the Epic marketing team worked with Twitch and other game streamers to provide them early copies of the game to play and promote on their channels in the weeks leading up to their target release date of July 25, 2017. However, a"} +{"qid": "test1634", "pid": "16136650", "query": "when did fortnite save the world first come out", "answer": "July 25, 2017", "passage": "\"Fortnite: Save the World\"\nfew weeks before this date, Epic recognized that the game was still not ready for release; it was playable but not content complete. Rather than prolonging it further, Epic decided to release the game into paid early access on July 25, 2017, which would also allow them to get active feedback on the game as they progressed in development. At the time of the start of early access, Gearbox Software helped distribute the game on physical media. With the popularity of \"\"Fortnite Battle Royale\"\", which was first released in early access around September 2017 and gained considerable attention by early"} +{"qid": "test1635", "pid": "8548474", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Battle of the Sexes (tennis)\"\nsexes\"\". Riggs had been one of the world's top tennis players in the 1940s; he was ranked year-end World No. 1 three times and had won six major titles during his career. After he retired from professional tennis in 1951, Riggs remained a master promoter of himself and of tennis. In 1973, he opined that the female game was inferior and that even at his current age of 55 he could still beat any of the top female players. Riggs first challenged Billie Jean King, but when she declined, Margaret Court stepped in. At the time, Court was 30 years"} +{"qid": "test1635", "pid": "8548472", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Battle of the Sexes (tennis)\"\nBattle of the Sexes (tennis) In tennis, \"\"Battle of the Sexes\"\" is a term that has been used to describe various exhibition matches played between a man and a woman (or, in one case, a doubles match between two men and two women). Most famously, the term is used for a nationally televised match in 1973, held at the Houston Astrodome, between 55-year-old Bobby Riggs and 29-year-old Billie Jean King, which King won in three sets. The match attracted massive attention and was viewed by an estimated 90 million people around the world. King's win is considered a milestone in"} +{"qid": "test1635", "pid": "1067970", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Billie Jean King\"\n1939, and was considered the World No. 1 male tennis player for 1941, 1946, and 1947. He then became a self-described tennis \"\"hustler\"\" who played in promotional challenge matches. Claiming that the women's game was so inferior to the men's game that even a 55-year-old like himself could beat the current top female players, he challenged and defeated Margaret Court 6–2, 6–1. King, who previously had rejected challenges from Riggs, then accepted a lucrative financial offer to play him for $100,000, winner-take-all. Dubbed \"\"the Battle of the Sexes\"\", the Riggs-King match took place at the Houston Astrodome in Texas on"} +{"qid": "test1635", "pid": "1067923", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Billie Jean King\"\nfor gender equality and has long been a pioneer for equality and social justice. In 1973, at age 29, she won the \"\"Battle of the Sexes\"\" tennis match against the 55-year-old Bobby Riggs. She was also the founder of the Women's Tennis Association and the Women's Sports Foundation. She was also instrumental in persuading cigarette brand Virginia Slims to sponsor women's tennis in the 1970s and went on to serve on the board of their parent company Philip Morris in the 2000s. Regarded by many in the sport as one of the greatest tennis players of all time, King was"} +{"qid": "test1635", "pid": "5858187", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Ted Tinling\"\nappearances, he designed her wedding dress when she married John Lloyd in 1979. A close friend of Billie Jean King – designing her dress for the famous \"\"Battle of the Sexes\"\" tennis match in 1973 – he became player liaison on the Virginia Slims Women's Tennis Association tour that King helped to create. He continued to design daring and unusual dresses for stars such as Martina Navratilova, Chris Evert, Evonne Goolagong and Virginia Wade throughout this time but his role in the infrastructure of tennis became more important and he became an official media spokesperson for the game. It was"} +{"qid": "test1635", "pid": "3358581", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Pancho Segura\"\nfamous \"\"Battle of the Sexes\"\" tennis match between Billie Jean King and Bobby Riggs in 1973, Segura openly supported Riggs. When King won the match, Segura declared disgustedly that Riggs was only the third-best senior player, behind himself and Gardnar Mulloy. He challenged King to another match, which King refused. In the 1966 episode of \"\"I Dream of Jeannie\"\" titled \"\"Always on Sunday\"\", Segura made a cameo appearance as himself. Segura retired from playing Singles after the 1970 US Open at Forest Hills at age 49. Segura was inducted into the International Tennis Hall of Fame in Newport, Rhode Island,"} +{"qid": "test1635", "pid": "17809108", "query": "who won battle of the sexes tennis game", "answer": "Billie Jean King", "passage": "\"Timeline of women's sports\"\n1973 – Billie Jean King won the \"\"Battle of the Sexes\"\" tennis match against Bobby Riggs in America. 1973 – The US Open was the first Grand Slam tournament to offer equal prize money. 1973 – Terry Williams Munz became the first woman in America awarded an athletic scholarship when she accepted a golf scholarship from the University of Miami. 1974 – Angela Hernandez (also known as Angela Hernandez Gomez and just Angela), of Spain, won a case in the Spanish Supreme Court allowing women to be bullfighters in Spain; a prohibition against women doing so was put in place"} +{"qid": "test1636", "pid": "4270852", "query": "the most important battles in the revolutionary war", "answer": "Saratoga campaign", "passage": "\"Battle of Hubbardton\"\nRevolutionary War reenactments. The site's visitor center features a permanent exhibit which tells the story of the Battle of Hubbardton and places it in its context of the Revolutionary War. The Hubbardton Battlefield Trail features interpretive signs highlighting important points and locations of the battle. The battle is used as the backdrop for the climax of the film \"\"Time Chasers\"\". The battlefield is approximately 20 miles northwest of Rutland, Vermont, where most of the film's production was centered. Battle of Hubbardton The Battle of Hubbardton was an engagement in the Saratoga campaign of the American Revolutionary War fought in the"} +{"qid": "test1639", "pid": "19910120", "query": "who is the actress who plays baker on blue bloods", "answer": "Abigail Hawk", "passage": "\"Abigail Hawk\"\nwas changed to \"\"Det. Abigail Baker\"\" in subsequent episodes) in 2010, and thereafter appeared in all but a handful of episodes. In October 2017, Hawk was a guest of honor at the Spring Gala of HeartShare Human Services of New York, and received the Linda Dano Award. Hawk is married to FDNY Lieutenant Bryan Spies. Abigail Hawk Abigail Hawk (born Abigail Diane Gustafson, May 4 1985) is an American actress known for playing Samantha Bonner in the 1995 TV series \"\"Reality Check\"\", Detective Abigail Baker in \"\"Blue Bloods\"\", Riley Thomas in the 2016 holiday TV movie, \"\"A Christmas in Vermont\"\","} +{"qid": "test1639", "pid": "19910119", "query": "who is the actress who plays baker on blue bloods", "answer": "Abigail Hawk", "passage": "\"Abigail Hawk\"\nTV series \"\"Reality Check\"\". She received a Bachelor of Fine Arts in Theatre from the University of Maryland, College Park in 2004. After a number of small parts in productions including \"\"\"\", and \"\"Across the Universe\"\", Hawk was hired for her role on \"\"Blue Bloods\"\". In that show, she plays Detective 2nd Grade Abigail Baker, a member of the Police Commissioner's (Detective) Squad who serves as the primary aide to Police Commissioner Frank Reagan. Hawk's character was introduced in the first season of the series (although Detective Baker's name was shown as \"\"Det. Melissa Baker\"\" in the closing credits, it"} +{"qid": "test1639", "pid": "19910118", "query": "who is the actress who plays baker on blue bloods", "answer": "Abigail Hawk", "passage": "\"Abigail Hawk\"\nAbigail Hawk Abigail Hawk (born Abigail Diane Gustafson, May 4 1985) is an American actress known for playing Samantha Bonner in the 1995 TV series \"\"Reality Check\"\", Detective Abigail Baker in \"\"Blue Bloods\"\", Riley Thomas in the 2016 holiday TV movie, \"\"A Christmas in Vermont\"\", and Ellie in Domenica Cameron-Scorsese's 2017 directorial debut, \"\"Almost Paris\"\". For her performance in \"\"Almost Paris\"\", Hawk won the \"\"Best Actress\"\" award at the 2017 Golden Door Film Festival. Born in Marietta, Georgia, Hawk attended the North Springs Charter School of Arts and Sciences, in Sandy Springs, Georgia. While a student, she appeared in the"} +{"qid": "test1639", "pid": "16559300", "query": "who is the actress who plays baker on blue bloods", "answer": "Abigail Hawk", "passage": "\"Blue Bloods (season 1)\"\nof two children Jack and Sean. Sami Gayle portrayed Erin's teenage daughter Nicole \"\"Nikki\"\" Reagan-Boyle (Marlene Lawston played this role in the pilot episode). Abigail Hawk portrayed Abigail Baker, Frank's primary aide. Brothers Andrew and Tony Terraciano portray Sean and Jack Reagan, Danny and Linda's sons. Gregory Jbara acted as Garrett Moore, the NYPD's Deputy Commissioner of Public Information. Robert Clohessy played Sgt. Sidney Gormley, the immediate supervisor of Danny and the other detectives at the precinct. Actress Dylan Moore appeared in the first six episodes as Jamie's brief fiancée Sydney Davenport. Bruce Altman portrayed Mayor Frank Russo, Frank's superior."} +{"qid": "test1640", "pid": "20630129", "query": "where is the villa in call me by your name", "answer": "Moscazzano", "passage": "\"Villa Albergoni\"\nthe Academy Award-winning film \"\"Call Me by Your Name\"\" (2017). The interior was decorated for the film by Violante Visconti di Modrone, a relative of Luchino Visconti. Villa Albergoni Villa Albergoni is a villa (or country mansion) in Moscazzano, Lombardy, northern Italy that dates back to the 16th-century. Due to previous owners, it is also known as \"\"Palazzo\"\" or \"\"Villa Vimercati\"\", \"\"Villa Griffoni\"\" or \"\"Villa Sant'Angelo\"\". It is located at 3, Via Montodine. Villa Albergoni is located on a plateau near the Adda river, in a marshy area that was politically difficult to control on the border between the Republic"} +{"qid": "test1640", "pid": "19554865", "query": "where is the villa in call me by your name", "answer": "Moscazzano", "passage": "\"Call Me by Your Name (film)\"\nmuch or be shocked about a totally naked woman. It's the men.\"\" Guadagnino picked actors based on their performances and chemistry rather than on their sexuality. He said, \"\"The idea that you have to cast only someone who has a certain set of skills, and worse, a certain gender identity in any role: that's oppressive to me.\"\" The main location set for the Perlmans' residence was Villa Albergoni, an uninhabited 17th-century mansion in Moscazzano. Guadagnino wanted to buy the house but could not afford it, so he made a film there instead. A landscape designer was hired to construct an"} +{"qid": "test1641", "pid": "17503566", "query": "what are the five compulsory prayers in islam", "answer": "Maghrib", "passage": "Salah\nobligatory prayers as well as the voluntary prayers (before and after) are listed below: Sunni Muslims also perform two rakats nafl (voluntary) after the Zuhr and Maghrib prayers. During the Isha prayer, they perform the two rakats nafl after the two Sunnat-Mu'akkadah and after the witr prayer. Table notes The \"\"Fard Salah\"\" are all of the compulsory Muslim prayers - the five daily prayers, as well as the Friday prayer (Salat al-Jumu'ah) and the Eid prayers (Eid prayers). Non-performance of any these prayers renders one a non-Muslim according to the stricter Hanbali madhhab of Sunni Islam, while the other Sunni"} +{"qid": "test1641", "pid": "4052814", "query": "what are the five compulsory prayers in islam", "answer": "Isha", "passage": "\"Isha prayer\"\nIsha prayer The Isha prayer ( \"\"\"\" , \"\"night prayer\"\") is the night-time daily prayer recited by practicing Muslims. It is the fifth of the five daily prayers– (\"\"salat\"\") [Islamic evening begins at maghrib]. The five daily prayers collectively are one pillar of the Five Pillars of Islam, in Sunni Islam, and one of the ten Practices of the Religion (\"\"Furū al-Dīn\"\") according to Shia Islam. It is a four rak'ah prayer and in Sunni Islam, the two Sunnah rak'ah following the Isha' are highly recommended and so is the third rakat Wajib Witr. There are a few optional prayers"} +{"qid": "test1641", "pid": "4122301", "query": "what are the five compulsory prayers in islam", "answer": "Asr", "passage": "\"Asr prayer\"\nAsr prayer The Asr prayer ( \"\"\"\", \"\"afternoon prayer\"\") is \"\"the afternoon\"\" daily prayer recited by practicing Muslims. It is the third of the five daily prayers (the Islamic date begins at \"\"maghrib\"\"). The Asr prayer consist of four rakaas. The five daily prayers collectively are one pillar of the Five Pillars of Islam, in Sunni Islam, and one of the ten Practices of the Religion (\"\"Furū al-Dīn\"\") according to Shia Islam. When travelling, according to some \"\"madh'habs\"\", it may be reduced to two \"\"rakaʿāt\"\". The Asr daily prayer may be mentioned as the middle prayer in the Qur'an at"} +{"qid": "test1641", "pid": "4122153", "query": "what are the five compulsory prayers in islam", "answer": "Fajr", "passage": "\"Fajr prayer\"\nFajr prayer The Fajr prayer ( \"\"\"\", \"\"dawn prayer\"\") an obligatory prayer ('Subuh' prayer) with two \"\"rakat\"\" (prescribed movements), and one of the five daily prayers offered by practising Muslims. Fajr means dawn in the Arabic language. The five daily prayers collectively form one pillar of the Five Pillars of Islam, in Sunni Islam, and one of the ten Practices of the Religion (\"\"Furū al-Dīn\"\") according to Shia Islam. The Fajr prayer is mentioned by name in the Qur'an at sura 24 (An-Nur) ayah. Inspired by the tafsir of the two hadiths that were transmitted on behalf of the Islamic"} +{"qid": "test1641", "pid": "354337", "query": "what are the five compulsory prayers in islam", "answer": "Isha", "passage": "Ramadan\nwill also use this time to give a larger portion of sadaqah in order to maximize the reward that will await them at the Last Judgment. Tarawih () refers to extra prayers performed by Muslims at night in the Islamic month of Ramadan. Contrary to popular belief, they are not compulsory. However, many Muslims pray these prayers in the evening during Ramadan. Some scholars maintain that Tarawih is neither \"\"fard\"\" or a \"\"Sunnah\"\", but is the preponed \"\"Tahajjud\"\" (night prayer) prayer shifted to post-\"\"Isha'\"\" for the ease of believers. But a majority of Sunni scholars regard the Tarawih prayers as"} +{"qid": "test1641", "pid": "4122259", "query": "what are the five compulsory prayers in islam", "answer": "Zuhr", "passage": "\"Zuhr prayer\"\nis the first prayer. The five daily prayers collectively are one of the Five Pillars of Islam in Sunni Islam, and one of the ten Practices of the Religion ( \"\"furūʿ ad-dīn\"\") according to Shia Islam. The Holy Qur'an has reiterated its importance, \"\"Attend constantly to prayers and to the middle prayer and stand up truly obedient to Allah\"\". It is reduced to two rakaʿāt when traveling. In both of the sects, four rakaʿāt are mandatory (\"\"Fard\"\") and are prayed silently. However, in Sunni Islam, four rakaʿāt prior to the Fard raka'ah and two rakaʿāt following the Fard raka'ah are"} +{"qid": "test1641", "pid": "17503568", "query": "what are the five compulsory prayers in islam", "answer": "Zuhr", "passage": "Salah\ncarry it out no Muslim is considered blameworthy, but if no one carries it out, all incur a collective punishment. Men are required to perform the fard salat in (\"\"jama'ah\"\"), behind an imam when they are able. According to most Islamic scholars, performing prayers in congregation is mustahabb (recommended) for men, when they are able, but is neither required nor forbidden for women. Salat al-Jumu'ah is a congregational prayer on Friday, which replaces the Zuhr prayer. It is compulsory upon men to perform it in congregation, while women may perform it so or may perform Zuhr salat instead. Salat al-Jumu'ah"} +{"qid": "test1641", "pid": "140174", "query": "what are the five compulsory prayers in islam", "answer": "Fajr", "passage": "\"Five Pillars of Islam\"\nif one is able. \"\"Shahada\"\" is a declaration of faith and trust that professes that there is only one God \"\"(Allah)\"\" and that Muhammad is God's messenger. It is a set statement normally recited in Arabic: \"\"lā ʾilāha ʾillā-llāhu muḥammadun rasūlu-llāh\"\" () \"\"There is no god but God (and) Muhammad is the messenger of God.\"\" It is essential to utter it to become a Muslim and to convert to Islam. \"\"Salah\"\" (\"\"ṣalāh\"\") is the Islamic prayer. \"\"Salah\"\" consists of five daily prayers according to the Sunna; the names are according to the prayer times: \"\"Fajr\"\" (dawn), \"\"Dhuhr\"\" (noon), \"\"ʿAṣr\"\" (afternoon),"} +{"qid": "test1643", "pid": "17279560", "query": "who is the premier of northern cape 2018", "answer": "Sylvia Lucas", "passage": "\"Sylvia Lucas\"\nthe MEC Environment and Nature Conservation in the Northern Cape. Lucas participated in ANC international study tours in the United Kingdom, Canada and the United States, and \"\"holds numerous university certificates.\"\" After former Northern Cape premier Hazel Jenkins collapsed, suffering a stroke, in 2012, the Executive Council of the Province appointed Grizelda Cjiekella as Acting Premier for the duration of Premier Jenkins' incapacity leave. When, a year later, Hazel Jenkins stepped down from the post of Premier of the Northern Cape, it was Sylvia Lucas whom the ANC in the province announced, on 19 April 2013, as the premier's successor."} +{"qid": "test1643", "pid": "2579538", "query": "who is the premier of northern cape 2018", "answer": "Sylvia Lucas", "passage": "\"Northern Cape\"\nAfrican general election, 2009|election of 22 April 2009. Hazel Jenkins became Premier following the election, and COPE became the official opposition. Jenkins was later replaced by Sylvia Lucas in 2013. The 2014 election saw the ANC returned to power once again with an increased mandate, while DA once again became official opposition, after the collapse of COPE. In 2018 King Khoebaha Cornelius III Declared the independence of the Sovereign State of Good Hope The Northern Cape is South Africa's largest province, and distances between towns are enormous due to its sparse population. Its size is just shy of the size"} +{"qid": "test1643", "pid": "2579536", "query": "who is the premier of northern cape 2018", "answer": "Sylvia Lucas", "passage": "\"Northern Cape\"\npremier of the Northern Cape as of 2013 was Sylvia Lucas of the African National Congress. The politics of the Northern Cape are dominated by the African National Congress (ANC), but their position has not been as strong as in many other Provinces of South Africa|provinces of South Africa. Initially, no party had an absolute majority. In 1994 the ANC's Manne Dipico became the first Premier of the Northern Cape after Ethne Papenfus, the sole elected representative of the Democratic Party (South Africa)|Democratic Party (DP), voted with the ANC. In return, she was elected speaker of the legislature. The ANC"} +{"qid": "test1643", "pid": "17278742", "query": "who is the premier of northern cape 2018", "answer": "Sylvia Lucas", "passage": "\"Grizelda Cjiekella\"\nCape Provincial Legislature. She held the position until April 2009 when she was appointed MEC for Education in the Province. After Northern Cape premier Hazel Jenkins collapsed, suffering a stroke, in 2012, the Executive Council of the Province met on 20 February, unanimously resolving to appoint Grizelda Cjiekella as Acting Premier for the duration of Premier Jenkins’ incapacity leave. Her term as Acting Premier ended on 2 April 2013 when Hazel Jenkins officially stepped down from the post of Premier of the Northern Cape and was to be succeeded by Sylvia Lucas, the Provincial Minister for Environmental Affairs. Grizelda Cjiekella"} +{"qid": "test1643", "pid": "17279557", "query": "who is the premier of northern cape 2018", "answer": "Sylvia Lucas", "passage": "\"Sylvia Lucas\"\nSylvia Lucas Sylvia Lucas is the fourth Premier of the Northern Cape Province, South Africa, elected and inaugurated as successor to Hazel Jenkins. She served briefly as Acting Premier and before that as MEC (Member of the Executive Council) for Environmental Affairs in the Northern Cape Provincial Legislature. She was born on 22 April 1964, and grew up in Upington in the Northern Cape. Lucas attended the Carlton Van Heerden High School in Upington where in the early 1980s she first became involved in political activities. She later took part in the Rosedale rent boycotts, and was part of the"} +{"qid": "test1643", "pid": "13328937", "query": "who is the premier of northern cape 2018", "answer": "Sylvia Lucas", "passage": "\"Hazel Jenkins\"\nthe Northern Cape and was to be succeeded by Sylvia Lucas, the Provincial Minister for Environmental Affairs. However the motion to recognize Jenkins' stepping down was opposed on procedural grounds. A vote in the Northern Cape legislature on 30 April 2013, in which opposition parties COPE and the Democratic Alliance took part, failed to achieve the required two thirds support for the motion to be carried. Accordingly, Jenkins technically remained premier and Lucas was sworn in on the same day as Grizelda Cjiekella's successor as acting premier of the province. Jenkins resigned as premier with effect from 22 May 2013,"} +{"qid": "test1644", "pid": "2749441", "query": "what are the monomer building blocks of dna and rna", "answer": "Nucleotides", "passage": "Ribonucleotide\nRibonucleotide In biochemistry, a ribonucleotide is a nucleotide containing ribose as its pentose component. It is considered a molecular precursor of nucleic acids. Nucleotides are the basic building blocks of DNA and RNA. The monomer itself from ribonucleotides forms the basic building blocks for RNA. However, the reduction of ribonucleotide, by enzyme ribonucleotide reductase (RNR), forms deoxyribonucleotide, which is the essential building block for DNA. There are several differences between DNA deoxyribonucleotides and RNA ribonucleotides. Successive nucleotides are linked together via phosphodiester bonds by 3'-5'. Ribonucleotides are also utilized in other cellular functions. These special monomers are utilized in both"} +{"qid": "test1644", "pid": "303359", "query": "what are the monomer building blocks of dna and rna", "answer": "Nucleotides", "passage": "Nucleotide\nNucleotide Nucleotides are organic molecules that serve as the monomer units for forming the nucleic acid polymers deoxyribonucleic acid (DNA) and ribonucleic acid (RNA), both of which are essential biomolecules within all life-forms on Earth. Nucleotides are the building blocks of nucleic acids; they are composed of three subunit molecules: a nitrogenous base, a five-carbon sugar (ribose or deoxyribose), and at least one phosphate group. A nucleoside is a nitrogenous base and a 5-carbon sugar. Thus a nucleoside plus a phosphate group yields a nucleotide. Nucleotides also play a central role in metabolism at a fundamental, cellular level. They carry"} +{"qid": "test1645", "pid": "11234285", "query": "university of michigan school of public health ranking", "answer": "#4", "passage": "\"University of Michigan School of Public Health\"\non graduate programs, the University of Michigan School of Public Health was ranked as the #4 School of Public Health in the country and also had the #1 Healthcare Management program in the country in 2011. University of Michigan School of Public Health The University of Michigan School of Public Health is one of the professional graduate schools of the University of Michigan. Located in Ann Arbor, Michigan, UM SPH is one of the oldest schools of public health in the country and is also considered one of the top schools focusing on health in the United States. Founded in"} +{"qid": "test1648", "pid": "19896213", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"I Don't Feel at Home in This World Anymore\"\nof 7.4/10. The site's critical consensus reads, \"\"\"\"I Don't Feel At Home In This World Anymore\"\" transcends its unwieldy title to offer timely, intoxicatingly dark observations on gender dynamics and social norms in modern America.\"\" On Metacritic, the film has a 75 out of 100 rating, based on 15 reviews, indicating \"\"generally favorable reviews\"\". I Don't Feel at Home in This World Anymore I Don't Feel at Home in This World Anymore (often stylized I don't feel at home in this world anymore.) is a 2017 American comedy thriller film written and directed by Macon Blair in his directorial debut."} +{"qid": "test1648", "pid": "19896203", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"I Don't Feel at Home in This World Anymore\"\nI Don't Feel at Home in This World Anymore I Don't Feel at Home in This World Anymore (often stylized I don't feel at home in this world anymore.) is a 2017 American comedy thriller film written and directed by Macon Blair in his directorial debut. It stars Melanie Lynskey, Elijah Wood, David Yow, Jane Levy and Devon Graye. The film had its world premiere at the Sundance Film Festival on January 19, 2017; it went on to win the Grand Jury Prize for the U.S. Dramatic competition. It was released by Netflix on 24 February 2017. Nursing assistant Ruth"} +{"qid": "test1648", "pid": "19526009", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"Macon Blair\"\nmade his directorial debut on \"\"I Don't Feel At Home in This World Anymore\"\". It had its world premiere at the 2017 Sundance Film Festival and won that festival's Grand Jury Prize. It was released on February 24, 2017, by Netflix. He is married to actress Lee Eddy. Together they have a son, Buck (b. 2015). Macon Blair Macon Blair (born 1974) is an American actor, screenwriter, director and film producer known for his roles in the films \"\"Blue Ruin\"\" and \"\"Green Room\"\", as well as his directorial debut \"\"I Don't Feel at Home in This World Anymore\"\". Blair was"} +{"qid": "test1648", "pid": "19896212", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"I Don't Feel at Home in This World Anymore\"\nplayed young Ruth) In April 2016, it was announced Melanie Lynskey and Elijah Wood had been cast in the film, with Macon Blair writing and directing the film. Principal photography began in April 2016, in Portland, Oregon. The film had its world premiere at the Sundance Film Festival on January 19, 2017. It received a worldwide release on February 24, 2017, streaming exclusively on Netflix. \"\"I Don't Feel At Home in This World Anymore\"\" received positive reviews from film critics. It currently holds an 88% \"\"fresh\"\" rating on review aggregator Rotten Tomatoes, based on 51 reviews, with an average score"} +{"qid": "test1648", "pid": "5495395", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"Melanie Lynskey\"\nin the BBC Two comedy pilot \"\"Our Ex-Wife\"\". Lynskey received praise for her portrayal of Ruth, a downtrodden vigilante, in the comedic thriller \"\"I Don't Feel at Home in This World Anymore\"\" (2017). The film's director, Macon Blair, wrote the character with Lynskey in mind. The role was physically challenging for her, as it involved several stunts and the use of prosthetics. Peter Debruge of \"\"Variety\"\" felt that Lynskey's performance was her \"\"best work yet\"\", while \"\"Time Out\"\"'s Joshua Rothkopf described her as \"\"seething and magnetic\"\". The film—which also starred Elijah Wood—was awarded the Grand Jury Prize at Sundance, while"} +{"qid": "test1648", "pid": "19526008", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"Macon Blair\"\nMacon Blair Macon Blair (born 1974) is an American actor, screenwriter, director and film producer known for his roles in the films \"\"Blue Ruin\"\" and \"\"Green Room\"\", as well as his directorial debut \"\"I Don't Feel at Home in This World Anymore\"\". Blair was born in Alexandria, Virginia and began working with his childhood friend Jeremy Saulnier in 2007 on the film \"\"Murder Party\"\". In 2013, he played Dwight Evans in the critically acclaimed film \"\"Blue Ruin\"\". In 2015, he starred in Saulnier's film \"\"Green Room\"\". Blair co-wrote and starred in the dark comedy \"\"Small Crimes\"\" starring Nikolaj Coster-Waldau. Blair"} +{"qid": "test1648", "pid": "19896211", "query": "who wrote i can feel at home in this world anymore", "answer": "Macon Blair", "passage": "\"I Don't Feel at Home in This World Anymore\"\nto be bitten by a water moccasin. Ruth leaves him to die from his wounds. Panicked that she cannot find Tony on her way back, Ruth sees her grandmother's ghost point her in the correct direction. Grateful that Ruth saved her life, Meredith neglects to identify her as one of the burglars to Bendix. Ruth returns to her daily life with Tony, who survives his wounds. Writer and director Macon Blair makes a cameo appearance as a man Ruth meets at a bar. The movie is dedicated \"\"For Lee & Buck.\"\" (Lee Eddy who played Angie & Buck Eddy-Blair who"} +{"qid": "test1649", "pid": "15401422", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Omar Fakhri\"\nlate 1960s, lymphocytes and antibodies were thought to act separately and have different functions. While working on immunotherapy for cancer, Fakhri found that neither lymphocytes nor antibodies were effective against cancer cells. Inspired by what he had observed in his work with coagulation factors, Dr. Fakhri decided to investigate the cooperation between antibodies and lymphocytes to see if there might be parallels with the way different coagulation factors operated. He found that when lymphocytes were mixed with cancerous cells in the presence of antibodies the lymphocytes encircled the cancer cells and destroyed them. He called these lymphocytes “co-optable lymphocytes.” As"} +{"qid": "test1649", "pid": "8818321", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"Wandering cell\"\nin the blood network. Two types of lymphocytes are present in the bloodstream, which are the B cells and the T cells. B cells are wandering cells that are antibody factories. They are capable of producing molecules that can recognize and bond to specific types of molecules present in infectious organisms or substances that the body identifies as foreign. Every individual B cell makes only one particular type of antibody, specific to only one type of foreign substance. For example, where one cell produces antibody against one of the many viral causes of a cold, another cell's antibodies will ignore"} +{"qid": "test1649", "pid": "18799685", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"T independent antigen (TI)\"\nT independent antigen (TI) T independent antigen elicits antibody production by B lymphocytes without T lymphocyte involvement. There are 2 distinct subgroups of TI antigens, different in mechanism of activating B lymphocytes. TI-1 antigen, which has an activity that can directly activate B cells and TI-2 antigen, which has highly repetitive structure and causes simultaneous cross-linking of specific B cell receptors (BCR) on B lymphocyte. The most commonly released isotype of antibodies in this type of immune reaction is low affinity IgM. For most protein antigens, the production of antibodies by B lymphocytes is dependent on stimulation of helper T"} +{"qid": "test1649", "pid": "18799690", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"T independent antigen (TI)\"\nby dendritic cells (DC) and macrophages is required. T independent antigen (TI) T independent antigen elicits antibody production by B lymphocytes without T lymphocyte involvement. There are 2 distinct subgroups of TI antigens, different in mechanism of activating B lymphocytes. TI-1 antigen, which has an activity that can directly activate B cells and TI-2 antigen, which has highly repetitive structure and causes simultaneous cross-linking of specific B cell receptors (BCR) on B lymphocyte. The most commonly released isotype of antibodies in this type of immune reaction is low affinity IgM. For most protein antigens, the production of antibodies by B"} +{"qid": "test1649", "pid": "7304264", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "Idiotopes\nis said to be an \"\"anti-idiotypic antibody\"\". If such is the case, the anti-idiotypic antibodies will be able to bind to the B lymphocyte receptor for the original antigen and inhibit the immune response to that antigen. This type of regulation was proposed by Niels Jerne in 1974. He termed it the \"\"Network Hypothesis\"\". This type of B lymphocyte regulation may be partially responsible for preventing an immune response from getting out of control, which would elicit damage to host tissue or even cause an autoimmune diseased state. Because of the resemblance of anti-idiotypic antibodies to the original antigen, vaccine"} +{"qid": "test1649", "pid": "1291799", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "Histocompatibility\nmethods of typing are used to check for HLA allele expression. Serological typing involves incubating lymphocytes from the recipient with serum containing known antibodies against the varying HLA alleles. If the serum contains an antibody specific for a HLA allele that is present on the recipient's lymphocyte, the antibodies will bind to the cell and activate a complement signaling cascade resulting in cell lysis. A lysed cell will take up an added dye such as trypan blue allowing for identification. Comparing which serums triggers cell lysis allows identification of HLA alleles present on the cell surface of the recipients cells."} +{"qid": "test1649", "pid": "667253", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "Allergy\na type I hypersensitivity reaction against an allergen encountered for the first time and presented by a professional antigen-presenting cell causes a response in a type of immune cell called a T2 lymphocyte; a subset of T cells that produce a cytokine called interleukin-4 (IL-4). These T2 cells interact with other lymphocytes called B cells, whose role is production of antibodies. Coupled with signals provided by IL-4, this interaction stimulates the B cell to begin production of a large amount of a particular type of antibody known as IgE. Secreted IgE circulates in the blood and binds to an IgE-specific"} +{"qid": "test1649", "pid": "2036379", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "Lymphocyte\nLymphocyte A lymphocyte is one of the subtypes of white blood cell in a vertebrate's immune system. Lymphocytes include natural killer cells (which function in cell-mediated, cytotoxic innate immunity), T cells (for cell-mediated, cytotoxic adaptive immunity), and B cells (for humoral, antibody-driven adaptive immunity). They are the main type of cell found in lymph, which prompted the name \"\"lymphocyte\"\". The three major types of lymphocyte are T cells, B cells and natural killer (NK) cells. Lymphocytes can be identified by their large nucleus. T cells (thymus cells) and B cells (bone marrow- or bursa-derived cells) are the major cellular components"} +{"qid": "test1649", "pid": "10099142", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Immunoglobulin light chain\"\nImmunoglobulin light chain The immunoglobulin light chain is the small polypeptide subunit of an antibody (immunoglobulin). A typical antibody is composed of two immunoglobulin (Ig) heavy chains and two Ig light chains. There are two types of light chain in humans: Antibodies are produced by B lymphocytes, each expressing only one class of light chain. Once set, light chain class remains fixed for the life of the B lymphocyte. In a healthy individual, the total kappa to lambda ratio is roughly 2:1 in serum (measuring intact whole antibodies) or 1:1.5 if measuring free light chains, with a highly divergent ratio"} +{"qid": "test1649", "pid": "11581616", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "MELISA\nmetal sensitivity in metal-sensitive patients. A MELISA test measures a so-called type-IV delayed hypersensitivity reaction. In contrast to a type-I allergy, which is mediated by IgE antibodies and is often tested using an ELISA test, a type-IV hypersensitivity reaction is mediated by T-lymphocytes (or memory lymphocytes) that have had prior contact with a given allergen. In genetically predisposed individuals, an ongoing everyday exposure to allergens can induce the type-IV hypersensitivity with a resulting allergic reaction. The test procedure is a cell culture and requires live memory lymphocytes. Lymphocytes are isolated and cultured in an incubator for five days. A portion"} +{"qid": "test1649", "pid": "11363966", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Testicular immunology\"\nof B-lymphocytes in the testis is significant, since these are the antibody-producing cells of the immune system. Since anti-sperm antibodies can cause infertility, it is important that antibody-producing B-lymphocytes are kept separated from the testis. T-lymphocytes (T-cells) are white blood cells which take part in cell-mediated immunity. They are often found within tissues where they can be activated by antigen-presenting cells upon infection. They are present in rat and human testes, where they constitute approximately 10 to 20% of the immune cells present, as well as mouse and ram testes. Both cytotoxic T-cells and Helper T cells are found in"} +{"qid": "test1649", "pid": "10757577", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Guillain–Barré syndrome\"\nthe myelin sheath by white blood cells (T lymphocytes and macrophages); this process is preceded by activation of a group of blood proteins known as complement. In contrast, the axonal variant is mediated by IgG antibodies and complement against the cell membrane covering the axon without direct lymphocyte involvement. Various antibodies directed at nerve cells have been reported in Guillain–Barré syndrome. In the axonal subtype, these antibodies have been shown to bind to gangliosides, a group of substances found in peripheral nerves. A ganglioside is a molecule consisting of ceramide bound to a small group of hexose-type sugars and containing"} +{"qid": "test1649", "pid": "6459546", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Acute severe asthma\"\nduring the late-phase (or chronic) reaction. The simple explanation for allergic inflammation in asthma begins with the development of a predominantly helper T2 lymphocyte–driven, as opposed to helper T1 lymphocyte–driven, immune milieu, perhaps caused by certain types of immune stimulation early in life. This is followed by allergen exposure in a genetically susceptible individual. Specific allergen exposure (e.g., dust mites) under the influence of helper T2 helper T cells leads to B-lymphocyte elaboration of immunoglobulin E (IgE) antibodies specific to that allergen. The IgE antibody attaches to surface receptors on airway mucosal mast cells. One important question is whether atopic"} +{"qid": "test1649", "pid": "2036390", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "Lymphocyte\nThe effects of other viruses or lymphocyte disorders can also often be estimated by counting the numbers of lymphocytes present in the blood. In some cancers, such as melanoma and colorectal cancer, lymphocytes can migrate into and attack the tumor. This can sometimes lead to regression of the primary tumor. Lymphocyte A lymphocyte is one of the subtypes of white blood cell in a vertebrate's immune system. Lymphocytes include natural killer cells (which function in cell-mediated, cytotoxic innate immunity), T cells (for cell-mediated, cytotoxic adaptive immunity), and B cells (for humoral, antibody-driven adaptive immunity). They are the main type of"} +{"qid": "test1649", "pid": "3139184", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Hashimoto's thyroiditis\"\nof Hashimoto's thyroiditis develops. Various autoantibodies may be present against thyroid peroxidase, thyroglobulin and TSH receptors, although a small percentage of people may have none of these antibodies present. As indicated in various twin studies a percentage of the population may also have these antibodies without developing Hashimoto's thyroiditis. Nevertheless, antibody-dependent cell-mediated cytotoxicity is a substantial factor behind the apoptotic fall-out of Hashimoto's thyroiditis. Activation of cytotoxic T-lymphocytes (CD8+ T-cells) in response to cell-mediated immune response affected by helper T-lymphocytes (CD4+ T-cells) is central to thyrocyte destruction. As is characteristic of type IV hypersensitivities, recruitment of macrophages is another effect"} +{"qid": "test1649", "pid": "6818493", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"Common gamma chain\"\nwhere it binds to cytokines and the other end of the protein resides in the interior of the cell where it transmits signals to the cell's nucleus. The common gamma chain partners with other proteins to direct blood-forming cells to form lymphocytes (a type of white blood cell). The receptor also directs the growth and maturation of lymphocyte subtypes: T cells, B cells, and natural killer cells. These cells kill viruses, make antibodies, and help regulate the entire immune system. Cytokine receptor common subunit gamma also known as interleukin-2 receptor subunit gamma or IL-2RG is a protein that in humans"} +{"qid": "test1649", "pid": "14479449", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"Pluripotency (biological compounds)\"\ncytokines, like interferon gamma, that activate macrophages and cytotoxic T lymphocytes (CTLs). Interferon gamma represents an example of pluripotency in itself. Many cytokines are pluripotent, in that each of these compounds can activate specific behavior in some cell types and inhibit other behavior in other cell types. Once activated by T lymphocytes or Natural Killer cells, interferon gamma upregulates expression of macrophages and both types of Major Histocompatibility Complex (MHC) antigens. In B lymphocytes (B cells), interferon gamma stimulates antibody class switching. All of these cells have different, specialized functions, but they all came from one pluripotent cell. Pluripotency (biological"} +{"qid": "test1649", "pid": "1683187", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"B cell\"\nB cell B cells, also known as B lymphocytes, are a type of white blood cell of the lymphocyte subtype. They function in the humoral immunity component of the adaptive immune system by secreting antibodies. Additionally, B cells present antigen (they are also classified as professional antigen-presenting cells (APCs)) and secrete cytokines. In mammals, B cells mature in the bone marrow, which is at the core of most bones. In birds, B cells mature in the bursa of Fabricius, a lymphoid organ. (The \"\"B\"\" from B cells comes from the name of this organ, where it was first discovered by"} +{"qid": "test1649", "pid": "2564217", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "Phagocyte\nof invaders. On the other hand, the adaptive immune system of jawed vertebrates—the basis of acquired immunity—is highly specialized and can protect against almost any type of invader. The adaptive immune system is not dependent on phagocytes but lymphocytes, which produce protective proteins called antibodies, which tag invaders for destruction and prevent viruses from infecting cells. Phagocytes, in particular dendritic cells and macrophages, stimulate lymphocytes to produce antibodies by an important process called antigen presentation. Antigen presentation is a process in which some phagocytes move parts of engulfed materials back to the surface of their cells and \"\"present\"\" them to"} +{"qid": "test1649", "pid": "20976267", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"Epstein-Barr virus-associated lymphoproliferative diseases\"\nthe recruitment phase of study (see https://clinicaltrials.gov/ct2/show/NCT02631109?term=epstein-barr+virus&cond=Hemophagocytic+Lymphohistiocytoses&rank=1). Other salvage therapy regimens for refractory EBV+ HLH include one using anti-interferon-γ monoclonal antibody or alemtuzumab, a monoclonal antibody directed against the CD52 antigen on mature lymphocytes, are also currently undergoing clinical trials. While EBV preferentially infects B cells, it may also infect other lymphocyte types viz., CD4+ T cells (i..e T helper cells), CD8+ cells (i.e. cytotoxic T cells), NK cells (i.e. natural killer cells). The mechanism by which the virus infects these other cell types is unknown but may be their direct movement from B cells that have infected. Peripheral T"} +{"qid": "test1649", "pid": "20310960", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Infectious tolerance\"\nphenomenon of T cell mediated suppression, in particular the use of non-depleting anti-CD4 monoclonal antibodies, demonstrating that neither thymus nor clonal deletion is necessary to induce tolerance. In 1989 was successfully induced classical transplantation tolerance to skin grafts in adult mice using antibodies blocking T cell coreceptors in CD4+ populations. Later was shown that the effect of monoclonal antibodies is formation of regulatory T lymphocytes. It has been shown that transfer of tolerance to other recipients can be made without further manipulation and that this tolerance transfer depends only on CD4+ T-lymphocytes. Because second-generation tolerance arises in the absence of"} +{"qid": "test1649", "pid": "12334697", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"History and naming of human leukocyte antigens\"\nrecipient improved the likelihood of kidney survival in the recipient. The antigen list still exists, although it has been reorganized to fit what we have since learned about genetics, refined, and greatly expanded. As the study of these 'rejection' sera and \"\"allo\"\"-antigens progressed, certain patterns in the antibody recognition were recognized. The first major observation, in 1969, was that an allotypic antibodies to \"\"4\"\" (\"\"Four\"\") was only found on lymphocytes, while most of the antigens, termed \"\"LA\"\", recognized most cells in the body. This group \"\"4\"\" antigen on lymphocytes would expand into \"\"4a\"\", \"\"4b\"\" and so on, becoming the \"\"D\"\""} +{"qid": "test1649", "pid": "9942399", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Low-density lipoprotein receptor-related protein 8\"\nalso speculation that the antibody/β2GPI complexes sensitize other cell types through various LDL family receptors to lead to less common symptoms other than thrombosis. Reduced expression of ApoER2 in peripheral blood lymphocytes can contribute to major depressive disorder (MDD) in some patients. Major depressive disorder is the most common psychiatric disorder, where people show symptoms of low self-esteem and a loss of interest in pleasure. By studying the levels of ApoER2 mRNA, low levels of ApoER2 were discovered. Results from experiments have shown that this could be because of transcriptional alterations in lymphocytes. However, low levels of ApoER2 do not"} +{"qid": "test1649", "pid": "1851823", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Immunosuppressive drug\"\nCD3-directed antibodies. They are used to prevent the rejection of transplanted organs, but also to track changes in the lymphocyte subpopulations. It is reasonable to expect similar new drugs in the future. Muromonab-CD3 is a murine anti-CD3 monoclonal antibody of the IgG2a type that prevents T-cell activation and proliferation by binding the T-cell receptor complex present on all differentiated T cells. As such it is one of the most potent immunosuppressive substances and is administered to control the steroid- and/or polyclonal antibodies-resistant acute rejection episodes. As it acts more specifically than polyclonal antibodies it is also used prophylactically in transplantations."} +{"qid": "test1649", "pid": "29095", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "Antibody\nform. The B lymphocyte, in this ready-to-respond form, is known as a \"\"naive B lymphocyte.\"\" The naive B lymphocyte expresses both surface IgM and IgD. The co-expression of both of these immunoglobulin isotypes renders the B cell ready to respond to antigen. B cell activation follows engagement of the cell-bound antibody molecule with an antigen, causing the cell to divide and differentiate into an antibody-producing cell called a plasma cell. In this activated form, the B cell starts to produce antibody in a secreted form rather than a membrane-bound form. Some daughter cells of the activated B cells undergo isotype"} +{"qid": "test1649", "pid": "14587037", "query": "where are antibodies made and by what type of lymphocyte", "answer": "B cells", "passage": "\"Antibodies from lymphocyte secretions\"\nif only ALS test is positive. The reason is that this method is potentially an early biomarker of active infection. However, if a subject does not show any physical symptoms, the doctors cannot prescribe anti-TB treatment. Antibodies from lymphocyte secretions The antibodies from lymphocyte secretions (ALS) assay is an immunological assay to detect active diseases like tuberculosis, cholera, typhoid etc. Recently, ALS assay nods the scientific community as it is rapidly used for diagnosis of Tuberculosis. The principle is based on the secretion of antibody from \"\"in vivo\"\" activated plasma B cells found in blood circulation for a short period"} +{"qid": "test1649", "pid": "4852601", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "Alloimmunity\nfully understood, but it is known that it is associated with alloantibody and cytokine production. Endothelium of the blood vessels is being damaged, therefore the graft is not sufficiently supplied with blood and is replaced with fibrous tissue (fibrosis). It takes two months at least to reject the graft in this way. CD4 and CD8 T-lymphocytes along with other mononuclear leukocytes (their exact function regarding the topic is not known) participate in the rejection. B-lymphocytes, NK cells and cytokines also play a role in it. Humoral (antibody-mediated) type of rejection is caused by recipient’s B-lymphocytes which produce alloantibodies against donor"} +{"qid": "test1649", "pid": "5662763", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "Lymphokine\nto produce antibodies. Important lymphokines secreted by the T helper cell include: Lymphokine Lymphokines are a subset of cytokines that are produced by a type of immune cell known as a lymphocyte. They are protein mediators typically produced by T cells to direct the immune system response by signaling between its cells. Lymphokines have many roles, including the attraction of other immune cells, including macrophages and other lymphocytes, to an infected site and their subsequent activation to prepare them to mount an immune response. Circulating lymphocytes can detect a very small concentration of lymphokine and then move up the concentration"} +{"qid": "test1649", "pid": "11305571", "query": "where are antibodies made and by what type of lymphocyte", "answer": "lymph", "passage": "\"Interferon alpha-1\"\nantibody MEDI-545 in SLE patients suggested possible disease activity improvement in SLE patients. Another phase I clinical trial has reported a dose-dependent inhibition of IFN-α/β-inducible genes in both peripheral blood and skin biopsies in SLE patients treated with anti-IFN monoclonal antibody therapy. Also, some studies suggest that type I IFN in circulation may be useful to predict response to immunotherapy in RA. Interferon alpha-1 Interferon alpha-1/13 is a protein that in humans is encoded by the \"\"IFNA1\"\" gene. Leukocyte interferon is produced predominantly by B lymphocytes. Immune interferon (IFN-gamma; MIM 147570) is produced by mitogen- or antigen-stimulated T lymphocytes.[supplied by"} +{"qid": "test165", "pid": "106394", "query": "what is the significance of the sahara desert", "answer": "the largest hot desert", "passage": "Desertification\nof the Sahara Desert. The world's most noted deserts have been formed by natural processes interacting over long intervals of time. During most of these times, deserts have grown and shrunk independent of human activities. Paleodeserts are large sand seas now inactive because they are stabilized by vegetation, some extending beyond the present margins of core deserts, such as the Sahara, the largest hot desert. Desertification has played a significant role in human history, contributing to the collapse of several large empires, such as Carthage, Greece, and the Roman Empire, as well as causing displacement of local populations. Historical evidence"} +{"qid": "test165", "pid": "2141801", "query": "what is the significance of the sahara desert", "answer": "the largest hot desert", "passage": "Sahara\nSahara The Sahara (, ; , ', 'the Great Desert') is the largest hot desert and the third largest desert in the world after Antarctica and the Arctic. Its area of is comparable to the area of China or the United States. The name 'Sahara' is derived from a dialectal Arabic word for \"\"desert\"\", ' ( ). The desert comprises much of North Africa, excluding the fertile region on the Mediterranean Sea coast, the Atlas Mountains of the Maghreb, and the Nile Valley in Egypt and Sudan. It stretches from the Red Sea in the east and the Mediterranean in"} +{"qid": "test165", "pid": "2141871", "query": "what is the significance of the sahara desert", "answer": "the largest hot desert", "passage": "Sahara\ngovernment, who, according to Keenan, \"\"documented a space of intercultural mediation,\"\" contributing much to preserving the indigenous cultural identities in the region. Sahara The Sahara (, ; , ', 'the Great Desert') is the largest hot desert and the third largest desert in the world after Antarctica and the Arctic. Its area of is comparable to the area of China or the United States. The name 'Sahara' is derived from a dialectal Arabic word for \"\"desert\"\", ' ( ). The desert comprises much of North Africa, excluding the fertile region on the Mediterranean Sea coast, the Atlas Mountains of the"} +{"qid": "test1650", "pid": "12192908", "query": "explorer who led an early voyage to the coast of newfoundland", "answer": "Jacques Cartier", "passage": "\"Natural scientific research in Canada\"\nto have explored the area along the Newfoundland, Labrador and Greenland coasts in 1500 and 1501. In 1524, Giovanni da Verrazzano sailing under the French flag, explored the east coast of North America from Cape Fear to Newfoundland. During voyages of exploration in 1534 and 1535–1536, the French explorer Jacques Cartier \"\"discovered\"\" and mapped the St. Lawrence River as far inland as Hochelaga (Montreal). Samuel de Champlain is well known for his explorations of the St Lawrence and Acadia, in 1603 and 1604. The search for fabled Northwest Passage to the orient intrigued European explorers for 300 years. The first"} +{"qid": "test1650", "pid": "8291980", "query": "explorer who led an early voyage to the coast of newfoundland", "answer": "Jacques Cartier", "passage": "\"16th century in North American history\"\n16th century in North American history The historical record in North America begins in the second half of the 16th century, with ongoing European exploration. Giovanni da Verrazzano explored the East Coast of North America from Florida to presumably Newfoundland in 1524. Jacques Cartier made a series of voyages on behalf of the French crown in 1534 and explored the St. Lawrence River. André Thevet's \"\"The new found worlde, or Antarctike\"\" is an English translation of Thevet's \"\"Les singularitez de la France antarctique\"\", first published in 1558. André Thevet was a Franciscan friar who accompanied Villegagnon in 1555 when he"} +{"qid": "test1650", "pid": "619055", "query": "explorer who led an early voyage to the coast of newfoundland", "answer": "Jacques Cartier", "passage": "\"History of North America\"\nof Isabella I and Ferdinand II, Queen and King of newly united Spain. In 1492 Columbus reached land in the Bahamas. Almost 500 years after the Norse, John Cabot explored the east coast of what would become Canada in 1497. Giovanni da Verrazzano explored the East Coast of North America from Florida to presumably Newfoundland in 1524. Jacques Cartier made a series of voyages on behalf of the French crown in 1534 and explored the St. Lawrence River. In order to understand what constitutes as successful colonization, it is important to understand what colonization means. Colonization refers to large-scale population"} +{"qid": "test1650", "pid": "628339", "query": "explorer who led an early voyage to the coast of newfoundland", "answer": "Jacques Cartier", "passage": "\"French colonization of the Americas\"\nand English Newfoundland, thus promoting French interests. In 1534, Francis I of France sent Jacques Cartier on the first of three voyages to explore the coast of Newfoundland and the St. Lawrence River. He founded New France by planting a cross on the shore of the Gaspé Peninsula. The French subsequently tried to establish several colonies throughout North America that failed, due to weather, disease, or conflict with other European powers. Cartier attempted to create the first permanent European settlement in North America at Cap-Rouge (Quebec City) in 1541 with 400 settlers but the settlement was abandoned the next year"} +{"qid": "test1650", "pid": "14063466", "query": "explorer who led an early voyage to the coast of newfoundland", "answer": "Jacques Cartier", "passage": "\"Territorial evolution of North America prior to 1763\"\nof what would become Canada in 1497. Giovanni da Verrazzano explored the East Coast of North America from Florida to presumably Newfoundland in 1524. Jacques Cartier made a series of voyages on behalf of the French crown in 1534 and penetrated the St. Lawrence River. These powers slowly replaced the native nations of the North American east coast and then spread into the interior. The main powers in North America frequently fought over territory. One of the biggest wars was the French and Indian War that ended in France leaving the continent and giving up its claims in the Treaty"} +{"qid": "test1650", "pid": "9213356", "query": "explorer who led an early voyage to the coast of newfoundland", "answer": "Jacques Cartier", "passage": "\"History of immigration to Canada\"\nBasque whalers may have begun fishing the Grand Banks as early as the 15th century. The next European explorer acknowledged as landing in what is now Canada was John Cabot, who landed somewhere on the coast of North America (probably Newfoundland or Cape Breton Island) in 1497 and claimed it for King Henry VII of England. Portuguese and Spanish explorers also visited Canada, but it was the French who first began to explore further inland and set up colonies, beginning with Jacques Cartier in 1534. Under Pierre Dugua, Sieur de Mons, the first French settlement was made in 1604 in"} +{"qid": "test1651", "pid": "662223", "query": "where does the journey start in the canterbury tales", "answer": "London", "passage": "Tabard\nthe Tabard Inn in Southwark, London, established in 1307 and remembered as the starting point for Geoffrey Chaucer's pilgrims on their journey to Canterbury in \"\"The Canterbury Tales\"\", dating from about the 1380s. By the second half of the 15th century, tabards, now open at the sides and so usually belted, were also being worn by knights in military contexts over their armour, and were usually emblazoned with their arms (though sometimes worn plain). The \"\"Oxford English Dictionary\"\" first records this use of the word in English in 1450. Tabards were apparently distinguished from surcoats by being open-sided, and by"} +{"qid": "test1651", "pid": "10204656", "query": "where does the journey start in the canterbury tales", "answer": "London", "passage": "\"Elizabeth Robins Pennell\"\na touring wheel-woman\"\". She started off cycling in the 1870s, while she still lived in Philadelphia. On moving to London, she and her husband exchanged their Coventry Rotary tandem tricycle for a Humber model, going on to experiment with a single tricycle, a tandem bicycle, and finally a single bicycle with a step-through (\"\"dropped\"\") frame. The first journey that she turned into a book was \"\"A Canterbury Pilgrimage\"\", a homage to Chaucer's \"\"Canterbury Tales\"\", as a gentle introduction to cycling in England. Over the next few years, the pair took several trips together, including another literary pilgrimage, this time on"} +{"qid": "test1651", "pid": "93945", "query": "where does the journey start in the canterbury tales", "answer": "London", "passage": "\"The Canterbury Tales\"\nThe Canterbury Tales The Canterbury Tales () is a collection of 24 stories that runs to over 17,000 lines written in Middle English by Geoffrey Chaucer between 1387 and 1400. In 1386, Chaucer became Controller of Customs and Justice of Peace and, in 1389, Clerk of the King's work. It was during these years that Chaucer began working on his most famous text, \"\"The Canterbury Tales\"\". The tales (mostly written in verse, although some are in prose) are presented as part of a story-telling contest by a group of pilgrims as they travel together from London to Canterbury to visit"} +{"qid": "test1652", "pid": "18694918", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "\"Legends of Tomorrow\"\nAllen / Flash, though he ultimately did not appear in the first season. In August 2015, Casper Crump was cast as Vandal Savage. On March 11, 2016, the series was renewed for a second season, which debuted in October 2016. The producers have considered adjusting the Legends team for additional seasons, with Joseph David-Jones' Connor Hawke and Megalyn Echikunwoke's Vixen potential additions. For the second season, Klemmer revealed that \"\"Arrow\"\" writer Keto Shimizu and \"\"The Flash\"\" writer Grainne Godfree would be working on \"\"Legends\"\" in order to \"\"make our stories work in concert\"\" with \"\"Arrow\"\" and \"\"The Flash\"\". Klemmer also"} +{"qid": "test1652", "pid": "18694929", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "\"Legends of Tomorrow\"\nFlash\"\"s first season, \"\"Fast Enough\"\", and later made appearances in the show's second season in November 2015. In July 2015, Guggenheim revealed that the resurrection of Sara Lance would be launched in the first few episodes of \"\"Arrow\"\"s fourth season, with the events of the eighth episodes of \"\"Arrow\"\" and \"\"The Flash\"\"—which were a crossover event—being used to set up the other characters of \"\"Legends of Tomorrow\"\". Franz Drameh was introduced as the new other half of Firestorm in the fourth episode of the second season of \"\"The Flash\"\". Crump, Hentschel and James debut in the crossover episodes for the"} +{"qid": "test1652", "pid": "18661114", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "Arrowverse\nthe character Green Arrow, which debuted in October 2012. It was shortly followed by \"\"The Flash\"\" in 2014, and the animated web-series \"\"Vixen\"\" in 2015. The universe was expanded in 2016, when in January of that year a new series titled \"\"Legends of Tomorrow\"\" debuted, which would star characters who originally appeared on both \"\"Arrow\"\" and \"\"The Flash\"\". The universe then expanded yet again later that year when the CBS series \"\"Supergirl\"\" was moved to The CW for its second season, where it has remained. A second animated web-series, \"\"\"\", was released in 2017, which followed Ray Terrill / The"} +{"qid": "test1652", "pid": "19877161", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "\"Flash vs. Arrow\"\nThe CW during the 2013–14 television season, when Barry Allen was introduced in the eighth episode of \"\"Arrow\"\"s second season ahead of the debut of \"\"The Flash\"\". In July 2014, it was announced that the eighth episodes of the third season of \"\"Arrow\"\" and the first season of \"\"The Flash\"\" would be a two-hour crossover event. The crossover was originally planned as the seventh episodes of each series, but was pushed back due to the large amount of work needed to accomplish it. In particular, the schedule coordination of trying to \"\"jam another episode into the 23-episode schedule for each"} +{"qid": "test1652", "pid": "17843399", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "\"The Flash (2014 TV series)\"\n\"\"No sweat suits or strange code names; he \"\"will be\"\" The Flash.\"\" While researching the best way to depict the Flash's lightning speed, Johns stated it would not just be the standard \"\"blurring around\"\". Barry ultimately appeared twice in \"\"Arrow\"\" second season, with the planned backdoor pilot cancelled in favor of a traditional pilot by The CW executives, who had been impressed by early cuts of Barry's first two episodes on \"\"Arrow\"\". This allowed the creative team to flesh out Barry's story and his world on a bigger budget, as opposed to a backdoor pilot's constraint of incorporating characters from"} +{"qid": "test1652", "pid": "19882417", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "\"Heroes Join Forces\"\nWilliam (she never learned about him due to Barry's time traveling) he decides to continue to keep the secret from her. Malcolm collects Savage's ashes while whispering, \"\"You owe me one, buddy.\"\" The two series have been written in a shared fictional universe (Arrowverse) on The CW since the 2013–14 television season, when Barry Allen was introduced in the eighth episode of \"\"Arrow\"\"s second season ahead of the debut of \"\"The Flash\"\". The following year, the eighth episodes of the third season of \"\"Arrow\"\" and the first season of \"\"The Flash\"\" formed a two-part event titled \"\"Flash vs. Arrow\"\". In"} +{"qid": "test1652", "pid": "19667553", "query": "when did the flash first appear on arrow", "answer": "second season", "passage": "\"Pilot (The Flash)\"\nin three episodes of \"\"Arrow\"\" season two, written by Berlanti, Kreisberg and Johns. The third appearance would serve as a backdoor pilot for the new show. Kreisberg added that Barry would be a forensic scientist, and the introduction of his superpower, and his reactions to it, would be very human and grounded. Barry ultimately appears in two episodes of \"\"Arrow\"\" second season. The planned backdoor pilot was cancelled in favor of a traditional pilot by The CW executives impressed by early cuts of Barry's first two appearances on \"\"Arrow\"\". The pilot allowed the creative team to flesh out Barry's story"} +{"qid": "test1653", "pid": "6794556", "query": "where is the world's largest thermometer located", "answer": "Baker, California, USA", "passage": "\"World's tallest thermometer\"\nafter summer 2017. The world's tallest thermometer is located at 72157 Baker Boulevard in Baker, California. It is visible from three different angles along Interstate 15 in Southern California's Mojave Desert. A gift shop at the base of the thermometer stands near a commemorative plaque that describes the history of the site. World's tallest thermometer The World's Tallest Thermometer is a landmark located in Baker, California, USA. It is an electric sign that commemorates the record 134 degrees Fahrenheit (57 degrees Celsius) recorded in nearby Death Valley on July 10, 1913. The sign weighs and is held together by of"} +{"qid": "test1653", "pid": "6794553", "query": "where is the world's largest thermometer located", "answer": "Baker, California, USA", "passage": "\"World's tallest thermometer\"\nWorld's tallest thermometer The World's Tallest Thermometer is a landmark located in Baker, California, USA. It is an electric sign that commemorates the record 134 degrees Fahrenheit (57 degrees Celsius) recorded in nearby Death Valley on July 10, 1913. The sign weighs and is held together by of concrete. It stands tall and is capable of displaying a maximum temperature of , both of which are a reference to the temperature record. It was built in 1991 by the Young Electric Sign Company of Salt Lake City, Utah for Willis Herron, a local Baker businessman who spent $700,000 to build"} +{"qid": "test1653", "pid": "11496928", "query": "where is the world's largest thermometer located", "answer": "Baker, California", "passage": "\"The Big Empty (2003 film)\"\nlocation in Los Angeles and Baker, California, which is a real town in southern California where most of the story takes place. Many of its locations are real, including the Royal Hawaiian Motel. Several landmarks in Baker are also shown, including the world's tallest thermometer. The Alto Nido apartments where John Person is living are the same ones where William Holden lived in the beginning of \"\"Sunset Blvd\"\". While the famous Hollywood Star Lanes were used in an exterior shot near the end of the story, the interior shots of the bowling alley were filmed at a different location. The"} +{"qid": "test1655", "pid": "97576", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "DNA\nmediate the function of the genome. Genomic DNA is tightly and orderly packed in the process called DNA condensation, to fit the small available volumes of the cell. In eukaryotes, DNA is located in the cell nucleus, with small amounts in mitochondria and chloroplasts. In prokaryotes, the DNA is held within an irregularly shaped body in the cytoplasm called the nucleoid. The genetic information in a genome is held within genes, and the complete set of this information in an organism is called its genotype. A gene is a unit of heredity and is a region of DNA that influences"} +{"qid": "test1655", "pid": "1879390", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "\"DNA microarray\"\nDNA microarray A DNA microarray (also commonly known as DNA chip or biochip) is a collection of microscopic DNA spots attached to a solid surface. Scientists use DNA microarrays to measure the expression levels of large numbers of genes simultaneously or to genotype multiple regions of a genome. Each DNA spot contains picomoles (10 moles) of a specific DNA sequence, known as \"\"probes\"\" (or \"\"reporters\"\" or \"\"oligos\"\"). These can be a short section of a gene or other DNA element that are used to hybridize a cDNA or cRNA (also called anti-sense RNA) sample (called \"\"target\"\") under high-stringency conditions. Probe-target"} +{"qid": "test1655", "pid": "18063468", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "\"Halobacterium noricense\"\ngroup of known genes. This group contains 213 known genes. The genus \"\"Halobacterium\"\" is currently known as monophyletic because their 16S rRNA have less than 80% similarity with their closest relatives, the methanogens. According to Joint Genome Institute, another complete genome analysis of \"\"Halobacterium\"\" (strain DL1) species was sequenced using 454 GS FLX, Illumina GAIIx. \"\"Halobacterium noricense\"\" (strain CBA1132) was recently isolated from solar salt and a complete genomic analysis was performed by researchers from Korea in 2016. The researchers extracted the DNA using a QuickGene DNA tissue kit, which uses a membrane with extremely fine pores to collect DNA"} +{"qid": "test1655", "pid": "175328", "query": "the complete collection of dna and genes is called", "answer": "chromosome", "passage": "Heredity\ngene; different genes have different sequences of bases. Within cells, the long strands of DNA form condensed structures called chromosomes. Organisms inherit genetic material from their parents in the form of homologous chromosomes, containing a unique combination of DNA sequences that code for genes. The specific location of a DNA sequence within a chromosome is known as a locus. If the DNA sequence at a particular locus varies between individuals, the different forms of this sequence are called alleles. DNA sequences can change through mutations, producing new alleles. If a mutation occurs within a gene, the new allele may affect"} +{"qid": "test1655", "pid": "6900316", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "\"Spacer DNA\"\nSpacer DNA Spacer DNA or intergenic spacer (IGS) is a region of non-coding DNA between genes. The term is used particularly for the spacer DNA between the many tandemly repeated copies of the ribosomal RNA genes. In bacteria, spacer DNA sequences are only a few nucleotides long. In eukaryotes, they can be extensive and include repetitive DNA, comprising the majority of the DNA of the genome. In ribosomal DNA, there are spacers within and between gene clusters, called internal transcribed spacer (ITS) and external transcribed spacers (ETS), respectively. In animals, the mitochondrial DNA genes generally have very short spacers. In"} +{"qid": "test1655", "pid": "901319", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "\"Mitochondrial DNA\"\nprotists is a heterogeneous collection of linear molecules (type 6). Genome types 4 and 6 both range from 1–200 kbp in size. Endosymbiotic gene transfer, the process of genes that were coded in the mitochondrial genome being transferred to the cell's main genome likely explains why more complex organisms, such as humans, have smaller mitochondrial genomes than simpler organisms, such as protists. Mitochondrial DNA is replicated by the DNA polymerase gamma complex which is composed of a 140 kDa catalytic DNA polymerase encoded by the \"\"POLG\"\" gene and two 55 kDa accessory subunits encoded by the \"\"POLG2\"\" gene. The replisome"} +{"qid": "test1655", "pid": "8575752", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "\"Gene delivery\"\navailable to deliver genes to host cells. When genes are delivered to bacteria or plants the process is called transformation and when it is used to deliver genes to animals it is called transfection. This is because transformation has a different meaning in relation to animals, indicating progression to a cancerous state. For some bacteria no external methods are need to introduce genes as they are naturally able to take up foreign DNA. Most cells require some sort of intervention to make the cell membrane permeable to DNA and allow the DNA to be stably inserted into the hosts genome."} +{"qid": "test1655", "pid": "43420", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "Bioinformatics\nsequences that are related, but not identical. A variant of this sequence alignment is used in the sequencing process itself. Before sequences can be analyzed they have to be obtained. DNA sequencing is still a non-trivial problem as the raw data may be noisy or afflicted by weak signals. Algorithms have been developed for base calling for the various experimental approaches to DNA sequencing. Most DNA sequencing techniques produce short fragments of sequence that need to be assembled to obtain complete gene or genome sequences. The so-called shotgun sequencing technique (which was used, for example, by The Institute for Genomic"} +{"qid": "test1655", "pid": "664288", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "Genomics\nGenomics Genomics is an interdisciplinary field of science focusing on the structure, function, evolution, mapping, and editing of genomes. A genome is an organism's complete set of DNA, including all of its genes. In contrast to genetics, which refers to the study of individual genes and their roles in inheritance, genomics aims at the collective characterization and quantification of genes, which direct the production of proteins with the assistance of enzymes and messenger molecules. In turn, proteins make up body structures such as organs and tissues as well as control chemical reactions and carry signals between cells. Genomics also involves"} +{"qid": "test1655", "pid": "11608761", "query": "the complete collection of dna and genes is called", "answer": "genome", "passage": "\"Hepatitis B\"\nmRNA. The viral DNA is found in the nucleus soon after infection of the cell. The partially double-stranded DNA is rendered fully double-stranded by completion of the (+) sense strand and removal of a protein molecule from the (−) sense strand and a short sequence of RNA from the (+) sense strand. Non-coding bases are removed from the ends of the (−) sense strand and the ends are rejoined. There are four known genes encoded by the genome, called C, X, P, and S. The core protein is coded for by gene C (HBcAg), and its start codon is preceded"} +{"qid": "test1655", "pid": "7276705", "query": "the complete collection of dna and genes is called", "answer": "chromosome", "passage": "Gene\nlong DNA helix on which thousands of genes are encoded. The region of the chromosome at which a particular gene is located is called its locus. Each locus contains one allele of a gene; however, members of a population may have different alleles at the locus, each with a slightly different gene sequence. The majority of eukaryotic genes are stored on a set of large, linear chromosomes. The chromosomes are packed within the nucleus in complex with storage proteins called histones to form a unit called a nucleosome. DNA packaged and condensed in this way is called chromatin. The manner"} +{"qid": "test1655", "pid": "97595", "query": "the complete collection of dna and genes is called", "answer": "chromosome", "passage": "DNA\ntemplate as part of its structure. It synthesizes telomeres at the ends of chromosomes. Telomeres prevent fusion of the ends of neighboring chromosomes and protect chromosome ends from damage. Transcription is carried out by a DNA-dependent RNA polymerase that copies the sequence of a DNA strand into RNA. To begin transcribing a gene, the RNA polymerase binds to a sequence of DNA called a promoter and separates the DNA strands. It then copies the gene sequence into a messenger RNA transcript until it reaches a region of DNA called the terminator, where it halts and detaches from the DNA. As"} +{"qid": "test1655", "pid": "10454837", "query": "the complete collection of dna and genes is called", "answer": "chromosome", "passage": "\"Artificial gene synthesis\"\nArtificial gene synthesis Artificial gene synthesis, sometimes known as DNA printing is a method in synthetic biology that is used to create artificial genes in the laboratory. Based on solid-phase DNA synthesis, it differs from molecular cloning and polymerase chain reaction (PCR) in that it does not have to begin with preexisting DNA sequences. Therefore, it is possible to make a completely synthetic double-stranded DNA molecule with no apparent limits on either nucleotide sequence or size The method has been used to generate functional bacterial or yeast chromosomes containing approximately one million base pairs. Creating novel nucleobase pairs in addition"} +{"qid": "test1657", "pid": "9727985", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs and the Magic Flute\"\nFlute Smurfers\"\") was published, marking the 50th anniversary of the original story to introduce the Smurfs. This story tells of how the Smurfs make the magic flute and how it ends up in the hands of a human merchant. Peyo, the creator of the Smurfs, oversaw the production of \"\"La Flûte à six schtroumpfs\"\" at Brussels' Belvision in 1975. The film was based on Peyo's comic album of the same name, and the ninth to feature his duo of characters, Johan and Peewit. The music score was written by Michel Legrand, a recent Oscar winner for \"\"Summer of '42\"\" and"} +{"qid": "test1657", "pid": "15711456", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs\"\nthat the Smurfs on either side had different ideas as to how the term \"\"smurf\"\" should be used: for instance, the Northern Smurfs called a certain object a \"\"bottle smurfer\"\", while the Southern Smurfs called it a \"\"smurf opener\"\". This story is considered a parody on the still ongoing \"\"taalstrijd\"\" (language war) between French- and Dutch-speaking communities in Belgium. When they first appeared in 1958, the Smurfs lived in a part of the world called \"\"\"\"Le Pays Maudit\"\"\"\" (French for \"\"the Cursed Land\"\"). To reach it required magic or travelling through dense forests, deep marshes, a scorching desert and a"} +{"qid": "test1657", "pid": "13229796", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Egg and the Smurfs\"\nrequired for the ceremony but there are only 99 Smurfs in the village and Papa Smurf is at a loss as to how to make up the required number. Meanwhile, Vanity Smurf decides to make himself a large mirror. Since the process of hammering and polishing the required sheet of metal proves to be unbearably noisy, and he insists on working through the night, the other Smurfs demand that he continue in the forest. Vanity finishes his mirror but is then caught in a storm. Sheltering under a tree, he is admiring himself in his new mirror when it is"} +{"qid": "test1657", "pid": "7105239", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"Johan and Peewit\"\nin a 2008 Smurf adventure called \"\"Les schtroumpfeurs de flûte\"\" (French: \"\"The Flute Smurfers\"\"). This story, published to mark the 50th anniversary of the first appearance of the Smurfs, is a prequel to \"\"La flûte à six schtroumpfs\"\" (published in English as \"\"The Smurfs and the Magic Flute\"\") and tells how the Smurfs first deliver the flute which was to be the basis of the 1958 story. Johan and Peewit help out a human friend of the Smurfs, but do not actually get to meet the little blue elves themselves. Few of Johan and Peewit's adventures have been published in"} +{"qid": "test1657", "pid": "15711467", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs\"\nthey did not do so until 1992 (two years later). The decreased ratings were the result of the network changing the format of the show, resulting in the final season featuring regular time travel with only a few Smurfs. In the TV series, many classical masterpieces are used as background music during the episodes, among them Franz Schubert's Unfinished Symphony (Symphony No. 8 in B minor), Edvard Grieg's Peer Gynt and Modest Mussorgsky's Pictures at an Exhibition. Reruns of the show are played on the Cartoon Network's sister channel Boomerang. \"\"The Smurfs\"\" was named the 97th best animated series by"} +{"qid": "test1657", "pid": "9727988", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs and the Magic Flute\"\nmore animated features, many of which were distributed by their short-lived children's subsidiary, Clubhouse Pictures. The theatrical poster for the film boasted, \"\"It's the Smurfs' ONE and ONLY full-length motion picture...ever!\"\" Prior to \"\"Flute\"\", however, a black-and-white compilation feature, \"\"Les Aventures des Schtroumpfs\"\", was released in Belgium in the mid-1960s, and had been forgotten by the time this film debuted in the US in 1983. The film features Papa Smurf, Brainy Smurf, Grouchy Smurf, Hefty Smurf (named \"\"Strong-man Smurf\"\" in the UK dub) Handy Smurf, Clumsy Smurf, Greedy Smurf (named \"\"Sweetie\"\" in the American dub), Poet Smurf, Farmer Smurf, and"} +{"qid": "test1657", "pid": "15711460", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs\"\nand his young friend Peewit and the wizard Homnibus. There are 105 Smurfs. Since the first appearance of the Smurfs in \"\"Johan et Pirlouit\"\" in 1958, 31 Smurf comics volumes have been created, 16 of them by Peyo, the others by his studio. Originally, the Smurf stories appeared in \"\"Spirou\"\" magazine with reprints in many different magazines, but after Peyo left the publisher Dupuis, many comics were first published in dedicated Smurf magazines, which existed in French, Dutch, German and Turkish. A number of short stories and one page gags have been collected into comic books next to the regular"} +{"qid": "test1657", "pid": "11927811", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs (comics)\"\nThe Smurfs (comics) The Smurfs () is a Belgian comic series, created by cartoonist Peyo (pen name of Pierre Culliford). The titular creatures were introduced as supporting characters in an already established series, \"\"Johan and Peewit\"\" in 1958, and starred in their own series from 1959. Thirty \"\"Smurf\"\" comic albums have been created, 16 of them by Peyo. Originally, the \"\"Smurf\"\" stories appeared in \"\"Spirou\"\" magazine with reprints in many different magazines, but after Peyo left the publisher Dupuis, many comics were first published in dedicated \"\"Smurf\"\" magazines, which existed in French, Dutch and German. A number of short stories"} +{"qid": "test1657", "pid": "4664908", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"Smurf: Rescue in Gargamel's Castle\"\nof a Saturday-morning cartoon show\"\", and the audio was described as \"\"sophisticated\"\" with nuanced sounds such as ominous organ music and the \"\"muted echo\"\" accompaniment to standard leaps. The reviewers also cautioned players to \"\"prepare for frustration\"\" until they learned how to accurately judge leaps. The game was given the award for \"\"Best Video Game Audiovisual Effects\"\" at the 4th annual Arkie Awards. Smurf: Rescue in Gargamel's Castle Smurf: Rescue in Gargamel's Castle is a 1982 video game published and developed by Coleco for the ColecoVision and Atari 2600. The game is based on the television series \"\"The Smurfs\"\". In"} +{"qid": "test1657", "pid": "11928132", "query": "how many seasons of the smurfs are there", "answer": "9", "passage": "\"The Smurfs merchandising\"\nKings Island At Kings Island near Cincinnati, Ohio, \"\"The Smurfs' Enchanted Voyage\"\" opened in 1984. It was similar to Disney's \"\"It's A Small World\"\". People would ride in a boat around the world of the Smurfs celebrating the seasons of Winter, Fall, Summer, and Spring. It was removed during the 1991 season. The interactive dark ride \"\"Boo Blasters on Boo Hill\"\" takes place in 2010. Kings Dominion The earlier \"\"Land of the Dooz\"\" mine train attraction became \"\"Smurf Mountain\"\". In 1995, it was eventually closed to make room for the popular \"\"\"\" opened in 1998. California's Great America Opening in"} +{"qid": "test1658", "pid": "9936130", "query": "when does sloan come into grey's anatomy", "answer": "season two", "passage": "\"Mark Sloan (Grey's Anatomy)\"\nMark Sloan (Grey's Anatomy) Mark Everett Sloan, M.D., F.A.C.S. is a fictional character from ABC's medical drama television series \"\"Grey's Anatomy\"\", portrayed by Eric Dane. Created by showrunner Shonda Rhimes, the character was introduced in season two as Derek Shepherd's best friend who caused the end of Shepherd's marriage by sleeping with his wife, Addison Montgomery-Shepherd. He moves to Seattle in season three and becomes Seattle Grace Hospital's new plastics attending to reconcile with Derek, and is dubbed \"\"McSteamy\"\" by the female interns for his good looks. Mark's focal storyline in the series involved his romantic relationship with Lexie Grey,"} +{"qid": "test1658", "pid": "9936131", "query": "when does sloan come into grey's anatomy", "answer": "season two", "passage": "\"Mark Sloan (Grey's Anatomy)\"\nwho served as one of the interns on his service when they started dating. Both he and Lexie sustained life-threatening injuries after an aviation accident in the eighth-season finale, which resulted in their deaths. Seattle Grace Mercy West is later renamed Grey-Sloan Memorial Hospital in their memory. Mark first appears in season two, introduced as a highly respected otolaryngologist sub-specialized in plastic surgery and the childhood best friend of neurosurgeon Derek Shepherd (Patrick Dempsey). In his first appearance, he flirts with Meredith Grey, and Derek punches him in the face. Derek explains that Mark had an affair with his wife,"} +{"qid": "test1659", "pid": "1068611", "query": "who does the voice of nelson on simpsons", "answer": "Nancy Jean Cartwright", "passage": "\"Nancy Cartwright\"\nNancy Cartwright Nancy Jean Cartwright (born October 25, 1957) is an American actress and voice actress, known for her long-running role as Bart Simpson on the animated television series \"\"The Simpsons\"\". Cartwright also voices other characters for the show, including Nelson Muntz, Ralph Wiggum, Todd Flanders, Kearney and Database. Cartwright was born in Dayton, Ohio. Cartwright moved to Hollywood in 1978 and trained alongside voice actor Daws Butler. Her first professional role was voicing Gloria in the animated series \"\"Richie Rich\"\", which she followed with a starring role in the television movie \"\"Marian Rose White\"\" (1982) and her first feature"} +{"qid": "test1659", "pid": "1068640", "query": "who does the voice of nelson on simpsons", "answer": "Nancy Jean Cartwright", "passage": "\"Nancy Cartwright\"\nNancy Cartwright Nancy Jean Cartwright (born October 25, 1957) is an American actress and voice actress, known for her long-running role as Bart Simpson on the animated television series \"\"The Simpsons\"\". Cartwright also voices other characters for the show, including Nelson Muntz, Ralph Wiggum, Todd Flanders, Kearney and Database. Cartwright was born in Dayton, Ohio. Cartwright moved to Hollywood in 1978 and trained alongside voice actor Daws Butler. Her first professional role was voicing Gloria in the animated series \"\"Richie Rich\"\", which she followed with a starring role in the television movie \"\"Marian Rose White\"\" (1982) and her first feature"} +{"qid": "test166", "pid": "6650336", "query": "what causes cracked skin at the corners of your mouth", "answer": "allergies", "passage": "\"Angular cheilitis\"\nAngular cheilitis Angular cheilitis (AC) is inflammation of one or both corners of the mouth. Often the corners are red with skin breakdown and crusting. It can also be itchy or painful. The condition can last for days to years. Angular cheilitis is a type of cheilitis (inflammation of the lips). Angular cheilitis can be caused by infection, irritation, or allergies. Infections include by fungi such as \"\"Candida albicans\"\" and bacteria such as \"\"Staph. aureus\"\". Irritants include poorly fitting dentures, licking the lips or drooling, mouth breathing resulting in a dry mouth, sun exposure, overclosure of the mouth, smoking, and"} +{"qid": "test166", "pid": "972478", "query": "what causes cracked skin at the corners of your mouth", "answer": "irritation", "passage": "Millipede\nsurface, in what may provide camouflage for the millipede and increased dispersal for the mosses. Millipedes generally have little impact on human economic or social well-being, especially in comparison with insects, although locally they can be a nuisance or agricultural pest. Millipedes do not bite, and their defensive secretions are mostly harmless to humans — usually causing only minor discolouration on the skin — but the secretions of some tropical species may cause pain, itching, local erythema, edema, blisters, eczema, and occasionally cracked skin. Eye exposures to these secretions causes general irritation and potentially more severe effects such as conjunctivitis"} +{"qid": "test166", "pid": "13088011", "query": "what causes cracked skin at the corners of your mouth", "answer": "infection", "passage": "\"Herpes labialis\"\nthe mouth and be mistaken for angular cheilitis of another cause. Sometimes termed \"\"angular herpes simplex\"\". A cold sore at the corner of the mouth behaves similarly to elsewhere on the lips. Rather than utilizing antifungal creams, angular herpes simplex is treated in the same way as a cold sore, with topical antiviral drugs. Herpes labialis infection occurs when the herpes simplex virus comes into contact with oral mucosal tissue or abraded skin of the mouth. Infection by the type 1 strain of herpes simplex virus (HSV-1) is most common; however, cases of oral infection by the type 2 strain"} +{"qid": "test166", "pid": "10416258", "query": "what causes cracked skin at the corners of your mouth", "answer": "infection", "passage": "Dermatophagia\nof their mouth, cheeks, and/or lips, causing blisters in and outside of the mouth. If the behavior is left unchecked for an extended period, calluses may start to develop where most of the biting is done. Skin chewing can be bolstered by times of apprehension and other unpleasant events. Blisters in particular can cause a feeling of desire to pull or bite off the affected skin and nails (since the skin is dead, thus easily pulled off), which could be detrimental, causing infection. Another disorder, known as excoriation disorder, the repetitive action of uncontrollably picking at one's skin, can sometimes"} +{"qid": "test166", "pid": "20281459", "query": "what causes cracked skin at the corners of your mouth", "answer": "infection", "passage": "\"Cracked nipple\"\nand pulling the nipple, the friction and rubbing of skin to skin. The cause of sore, cracked nipples can also be from a yeast or Candida infection in the baby or the mother or both. Thrush can develop after the use of antibiotics. For first-time breastfeeding mothers, it normally takes a few tries before the latch is right, which can make the nipples tender and sore the first few days. If the nipples become cracked or bleed, the latch may need to be corrected. Women are advised to keep on breastfeeding, as it will actually help the nipples heal. A"} +{"qid": "test166", "pid": "20281461", "query": "what causes cracked skin at the corners of your mouth", "answer": "infection", "passage": "\"Cracked nipple\"\nform. The nipples of nursing mothers naturally make a lubricant to prevent drying, cracking, or infections. Cracked nipples may be able to be prevented by: Roman chamomile can be applied directly to the skin for pain and swelling and is used to treat cracked nipples. Cracked nipples can be treated with 100% lanolin. Glycerin nipple pads can be chilled and placed over the nipples to help soothe and heal cracked or painful nipples. If the cause of cracked nipples is from thrush, treatment is usually begun with nystatin. If the mother is symptomatic then the mother and the baby can"} +{"qid": "test166", "pid": "14506289", "query": "what causes cracked skin at the corners of your mouth", "answer": "infection", "passage": "\"Defatting (medical)\"\nDefatting (medical) Defatting is the chemical dissolving of dermal lipids, from the skin, on contact with defatting agents. This can result in water loss from the affected area and cause the whitening and drying of the skin which may result in cracking, secondary infection and chemical irritant contact dermatitis. Defatting is caused by the exposure of human skin to a chemical substance, including alcohols, detergents, chemical solvents and motor oil. Aliphatic compounds (commonly found in kerosene) cause defatting action, with lower-boiling point aliphatics having the greatest defatting action and therefore the most potential to cause dermatitis. Aromatic compounds, such as"} +{"qid": "test1665", "pid": "14252440", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Ganoga Lake\"\ndown the steep escarpment of the Allegheny Front. About 300 to 250 million years ago, the Allegheny Plateau, Allegheny Front, and Appalachian Mountains all formed in the Alleghenian orogeny. This happened long after the sedimentary rocks at the lake were deposited, when the part of Gondwana that became Africa collided with what became North America, forming Pangaea. In the years since, up to 5,000 feet (1,500 m) of rock has been eroded away by streams and weather. At least three major glaciations in the past million years have been the final factor in shaping the land around the lake today."} +{"qid": "test1665", "pid": "560128", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Nearctic realm\"\nrepresented by the Madrean Region. Although North America and South America are presently joined by the Isthmus of Panama, these continents were separated for about 180 million years, and evolved very different plant and animal lineages. When the ancient supercontinent of Pangaea split into two about 180 million years ago, North America remained joined to Eurasia as part of the supercontinent of Laurasia, while South America was part of the supercontinent of Gondwana. North America later split from Eurasia. North America has been joined by land bridges to both Asia and South America since then, which allowed an exchange of"} +{"qid": "test1665", "pid": "13987498", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Waterfalls in Ricketts Glen State Park\"\nof the rocks that are found in the park and in the Kitchen Creek drainage basin: sandstone, shale, siltstone, and conglomerates. About 300 to 250 million years ago, the Allegheny Plateau, Allegheny Front, and Appalachian Mountains all formed in the Alleghanian orogeny. This happened long after the sedimentary rocks in the park were deposited, when the part of Gondwana that became Africa collided with what became North America, forming Pangaea. In the years since, up to 5,000 feet (1,500 m) of rock has been eroded away by streams and weather. At least three major glaciations in the past million years"} +{"qid": "test1665", "pid": "3745436", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Mississippi embayment\"\nin what was once a single, continuous mountain range comprising the modern Appalachian range, which runs roughly on a north–south axis along the Atlantic coast of the United States, and the Ouachita range, which runs on a rough east–west axis west of the Mississippi River. The ancestral Appalachian-Ouachita range was thrust up when the tectonic plate carrying North America came into contact with the plates carrying South America and Africa when all three became joined in the ancient supercontinent Pangaea about 300 million years ago. Explaining the formation of the embayment requires explaining how part of a mountain range became"} +{"qid": "test1665", "pid": "9035977", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Leonard Harrison State Park\"\npark is at an elevation of on the Allegheny Plateau, which formed in the Alleghenian orogeny some 300 million years ago, when Gondwana (specifically what became Africa) and what became North America collided, forming Pangaea. While the gorge and its surroundings appear mountainous, these are not true mountains: instead years of erosion have made this a dissected plateau, causing the \"\"mountainous\"\" terrain seen today. The hardest of the ancient rocks are on top of the ridges, while the softer rocks eroded away forming the valleys. The land on which Leonard Harrison State Park sits has undergone tremendous change over the"} +{"qid": "test1665", "pid": "17903235", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Rise of the Continents\"\n200 million years ago North and South America were carved from Pangaea, and pushed westwards as separate island continents. The episode explains how subduction has created the longest continual mountain range in the world - the Andes, and how 300 million years ago New York was at the heart of a huge mountain range. Using llama as an example, Iain explains how most of South America's wildlife originated in North America, and only came south when the two island continents of North and South America joined three million years ago. To reveal Eurasia's origins, Prof Iain Stewart climbs up to"} +{"qid": "test1665", "pid": "12773115", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Quehanna Wild Area\"\nthe state; streams here have cut deep valleys with steep-sided slopes. In the southern part of Quehanna Wild Area, the Mosquito Creek gorge is up to deep, and the Red Run gorge in the north is almost deep. The Allegheny Plateau formed in the Alleghenian orogeny some 300 million years ago, when the part of Gondwana that became Africa collided with the landmass that became North America, forming Pangaea. In the dissected plateau, years of erosion have cut away the soft rocks, forming the valleys, and leaving the hardest rocks relatively untouched. The land on which Quehanna Wild Area sits"} +{"qid": "test1665", "pid": "8661445", "query": "what land mass was north america a part of about 300 million years ago", "answer": "Pangaea", "passage": "\"Black Moshannon State Park\"\nAllegheny Plateau, just west of the Allegheny Front, a steep escarpment which rises in , and marks the transition between the Ridge-and-Valley Appalachians to the east and the Allegheny Plateau to the west. The Allegheny Plateau and Appalachian mountains were all formed in the Alleghenian orogeny some 300 million years ago, when Gondwana (specifically what became Africa) and what became North America collided, forming Pangaea. The lake within the park is at an elevation of about , and the park itself sits in a natural basin. The basin and the underlying sandstone trap water and thus form the lake and"} +{"qid": "test1668", "pid": "11983598", "query": "how old is baby in dirty dancing movie", "answer": "17", "passage": "\"Shane Harper\"\nmusical TV special \"\"The Passion\"\", which was released March 20, 2016 on fox. In 2017, Harper played the role of Robbie, a charming waiter at the resort who woos and then cheats on Baby's older sister, Lisa, in the TV movie \"\"Dirty Dancing\"\" for ABC. He played the role of Sam Grover in the indie film \"\"Flock of Four\"\". He also guest starred in the CBS dramas \"\"Code Black\"\" and \"\"Wisdom of the Crowd\"\". In 2018, Harper starred as Josh Wheaton in the third film in the franchise \"\"\"\". He also starred as Tom Paxton in the PixL original movie"} +{"qid": "test1668", "pid": "3186482", "query": "how old is baby in dirty dancing movie", "answer": "17", "passage": "\"Dirty Dancing\"\nAbigail Breslin, Colt Prattes, Debra Messing, Sarah Hyland, Nicole Scherzinger, Billy Dee Williams & Shane Harper. It aired on May 24, 2017. It received negative reviews from a majority of critics. Dirty Dancing Dirty Dancing is a 1987 American romantic drama dance film written by Eleanor Bergstein and directed by Emile Ardolino. It stars Jennifer Grey as Frances \"\"Baby\"\" Houseman, a young woman who falls in love with dance instructor Johnny Castle (Patrick Swayze) at her family's resort. The film was based on screenwriter Eleanor Bergstein's own childhood. She originally wrote a screenplay for the Michael Douglas film \"\"It's My"} +{"qid": "test1668", "pid": "8065480", "query": "how old is baby in dirty dancing movie", "answer": "17", "passage": "\"Do You Love Me\"\ntheir album \"\"Saturday Night at the Movies\"\". In February 2015, Chester See & Andy Lange uploaded a cover of \"\"Do You Love Me\"\" to See's YouTube channel. In 2017 Colt Prattes, Nicole Scherzinger, and J. Quinton Johnson covered the song for ABC's \"\"Dirty Dancing\"\" movie remake. In 2018, Ian Gillan and the Javelins recorded a version as the lead single of their self-titled album of rock and roll covers. \"\"Do You Love Me\"\" is featured prominently in the 1987 film \"\"Dirty Dancing\"\", reviving the record's popularity. Re-issued as a single from the \"\"More Dirty Dancing\"\" soundtrack album, \"\"Do You Love"} +{"qid": "test1668", "pid": "19390571", "query": "how old is baby in dirty dancing movie", "answer": "17", "passage": "\"Dirty Dancing (2017 film)\"\n21 reviews, with an average rating of 3.9/10. On Metacritic, the film was given a score of 39 out of 100 based on 16 critics, indicating \"\"generally unfavorable reviews\"\". Kimberly Roots of TVLine gave \"\"Dirty Dancing\"\" a D, stating: \"\"By adding unnecessary elements and turning \"\"Dirty Dancing\"\" into a musical, ABC proves that it wouldn't know what made the original film special if it hit them in the pachanga.\"\" Mae Abdulbaki of theyoungfolks.com gave \"\"Dirty Dancing\"\" a 3 (out of 10), stating \"\"Remaking one of the most popular and beloved movies in the history of cinema feels almost disrespectful on"} +{"qid": "test1668", "pid": "3186433", "query": "how old is baby in dirty dancing movie", "answer": "17-year-old", "passage": "\"Dirty Dancing\"\nalbums and multiple singles, including \"\"(I've Had) The Time of My Life\"\", which won both the Golden Globe and Academy Award for Best Original Song, and a Grammy Award for best duet. The film's popularity led to a 2004 prequel, \"\"\"\", and a stage version which has had sellout performances in Australia, Europe, and North America. A made-for-TV remake was also released in 2017. In the summer of 1963 17-year-old Frances \"\"Baby\"\" Houseman is vacationing with her affluent family at Kellerman's resort. Her father, Jake, is doctor and friend to Max Kellerman, the resort proprietor. Exploring one night, Baby surreptitiously"} +{"qid": "test167", "pid": "563917", "query": "who captained the first european ship to sail around the tip of africa", "answer": "Bartolomeu Dias", "passage": "\"Bartolomeu Dias\"\nBartolomeu Dias Bartolomeu Dias (; ; Anglicized: Bartholomew Diaz; c. 1450 – 29 May 1500), a nobleman of the Portuguese royal household, was a Portuguese explorer. He sailed around the southernmost tip of Africa in 1488, the first to do so, setting up the route from Europe to Asia later on. Dias is the first European peri-Age of Discovery to anchor at what is present-day South Africa. Bartolomeu Dias was a squire of the royal court, superintendent of the royal warehouses, and sailing-master of the man-of-war \"\"São Cristóvão\"\" (Saint Christopher). Very little is known of his early life. King John"} +{"qid": "test167", "pid": "4384921", "query": "who captained the first european ship to sail around the tip of africa", "answer": "Bartolomeu Dias", "passage": "\"Portuguese Navy\"\nisland of Santa Maria in 1427. In 1424, Gil Eanes crosses the Cape Bojador. Diogo Cão and Bartolomeu Dias arrived to the mouth of the Zaire River in 1482. In the same year, the São Jorge da Mina castle is built in the coast of Western Africa, by Diogo de Azambuja, becoming one of the most important Portuguese naval bases. In 1488, Bartolomeu Dias becomes the first European to sail around the southernmost tip of Africa, the Cape of Good Hope. João Vaz Corte-Real arrives to Newfoundland in 1473. Part of the coast of Newfoundland would be charted by the"} +{"qid": "test167", "pid": "19340340", "query": "who captained the first european ship to sail around the tip of africa", "answer": "Bartolomeu Dias", "passage": "\"Portuguese discovery of the sea route to India\"\nbut they were very expensive because it was an inconvenience to trade. For example, it was dangerous and time consuming to travel by land from Europe to India. As a result, King D. João II of Portugal established a plan for ships to explore the coast of Africa to see if India was navigable via around the cape, and through the Indian Ocean. King João II appointed Bartolomeu Dias, on October 10, 1486, to head an expedition to sail around the southern tip of Africa in the hope of finding a trade route to India. Dias helped in the construction"} +{"qid": "test167", "pid": "11832040", "query": "who captained the first european ship to sail around the tip of africa", "answer": "Bartolomeu Dias", "passage": "\"Portugal–Spain relations\"\nthe Iberian nation closer to the coast. Portugal was in a position to explore the area facing the Atlantic and adjacent to the African coasts. In successfully doing so, it discovered that Africa has been the Arab world's major source of gold brought by camel caravans across the Sahara. This prompted Prince Henry to send expeditions farther south along the Africa coast. Bartolomeu Dias and his crew found themselves sailing in the eastern coast of Africa after a South Atlantic gale blew their ships around the southern tip of the African continent. This passage is now known as the Cape"} +{"qid": "test1670", "pid": "3423882", "query": "during the great depression in the 1930s the u.s. economy experienced a", "answer": "recession", "passage": "\"Responsible Government League\"\nBritain's House of Lords. Newfoundland was granted dominion status and was as independent as Australia, Canada, or New Zealand in this Period. This was confirmed in the Balfour declaration and in The Statute of Westminster, 1931. The Great Depression hit the Newfoundland economy hard causing the dominion government to collapse in bankruptcy. Newfoundland's economy experienced many cycles of recession. Its government's finances collapsed completely in the early 1930s due in part to considerable debts incurred by the government in its aid of the Allied effort during the First World War and the large government debt acquired in constructing a railway"} +{"qid": "test1670", "pid": "14960842", "query": "during the great depression in the 1930s the u.s. economy experienced a", "answer": "recession", "passage": "\"Great Recession in the United States\"\ngovernment spent more while the private sector (e.g., households and businesses, particularly the banking sector) reduced the debt burdens accumulated during the pre-recession decade. President Obama declared the bailout measures started under the Bush Administration and continued during his Administration as completed and mostly profitable as of December 2014. After the Great Depression of the 1930s, the American economy experienced robust growth, with periodic lesser recessions, for the rest of the 20th century. The federal government enforced the Securities Exchange Act (1934) and The Chandler Act (1938), which tightly regulated the financial markets. The Securities Exchange Act of 1934 regulated"} +{"qid": "test1670", "pid": "2940349", "query": "during the great depression in the 1930s the u.s. economy experienced a", "answer": "economic recession", "passage": "\"History of Georgia (U.S. state)\"\nfrom a peak of 156,000 in 1925 to 1,400 in 1930. The state was relatively prosperous in the 1910s. The price of cotton remained high, until the end of World War I. Lower commodity prices in the 1920s had a negative impact on the rural economy, which, in turn, effected the entire state. By 1932, economic recession had deteriorated into a severe depression. Cotton prices decreased from a high of $1.00 a pound during World War I, to $.20 in the late 1920s, to lows of 6 cents in 1931 and 1932. The Great Depression proved to be difficult, economically,"} +{"qid": "test1670", "pid": "14055215", "query": "during the great depression in the 1930s the u.s. economy experienced a", "answer": "recession", "passage": "\"Economy of Argentina\"\nGrowth then slowed considerably, such that by 1941 Argentina's real per capita GDP was roughly half that of the U.S. Even so, from 1890 to 1950 the country's per capita income was similar to that of Western Europe; although income in Argentina remained considerably less evenly distributed. The Great Depression caused Argentine GDP to fall by a fourth between 1929 and 1932. Having recovered its lost ground by the late 1930s partly through import substitution, the economy continued to grow modestly during World War II (in contrast to the recession caused by the previous world war). The war led to"} +{"qid": "test1671", "pid": "9365930", "query": "who wrote the song oh lord won't you buy me a mercedes benz", "answer": "Janis Joplin", "passage": "\"Jeppe: The Cruel Comedy\"\nthe text says that Schoenberg is physically hurting Jeppe when in fact, he is not. Near the end of the opera, Erik dons a cowboy hat and demonically screams at Jeppe in a fashion more akin to rock music than opera. In the American premiere, the role was played by Nathan Baer, the only principal not doubled over the four performances, whose approach to the role in this scene suggested Oingo Boingo's Danny Elfman. Further, rock music is interpolated by Luna and the patrons of her tavern, quoting Janis Joplin's \"\"Oh Lord, won't you buy me a Mercedes-Benz.\"\" Jeppe initially"} +{"qid": "test1671", "pid": "9365815", "query": "who wrote the song oh lord won't you buy me a mercedes benz", "answer": "Janis Joplin", "passage": "\"Sven-David Sandström\"\nand premiered by the Oregon Bach Festival in 2009 and also performed at the Rheingau Musik Festival that year, and works by Purcell. His work draws on ideas from modernist music, minimalist music, jazz, and popular music. Indeed, in Act II of \"\"Jeppe\"\", the chorus sings the line \"\"O Lord, Won't You Buy Me a Mercedes-Benz\"\" in harmony based on the original Janis Joplin melody. He has recently become interested in Tejano music and has been working with incorporating that idiom into his work much as composers of Romantic music collected folk music and incorporated it into their works. He"} +{"qid": "test1671", "pid": "6618727", "query": "who wrote the song oh lord won't you buy me a mercedes benz", "answer": "Janis Joplin", "passage": "\"Mercedes Benz (song)\"\nMercedes Benz (song) \"\"Mercedes Benz\"\" is an \"\"a cappella\"\" song written by singer Janis Joplin with the poets Michael McClure and Bob Neuwirth, and originally recorded by Joplin. In the song, the singer asks the Lord to prove His love for her by buying her a Mercedes-Benz, a color TV, and a \"\"night on the town.\"\" There is also a reference to \"\"Dialing for Dollars\"\", a franchised format local television program, which required one to be watching the show to win when the show called your phone number, hence the singer's need for a TV. The song is considered to"} +{"qid": "test1671", "pid": "6618730", "query": "who wrote the song oh lord won't you buy me a mercedes benz", "answer": "Janis Joplin", "passage": "\"Mercedes Benz (song)\"\nThe remixed version was included on collections of Joplin's greatest hits. Notes Mercedes Benz (song) \"\"Mercedes Benz\"\" is an \"\"a cappella\"\" song written by singer Janis Joplin with the poets Michael McClure and Bob Neuwirth, and originally recorded by Joplin. In the song, the singer asks the Lord to prove His love for her by buying her a Mercedes-Benz, a color TV, and a \"\"night on the town.\"\" There is also a reference to \"\"Dialing for Dollars\"\", a franchised format local television program, which required one to be watching the show to win when the show called your phone number,"} +{"qid": "test1671", "pid": "6618728", "query": "who wrote the song oh lord won't you buy me a mercedes benz", "answer": "Bob Neuwirth", "passage": "\"Mercedes Benz (song)\"\nbe a rejection of consumerism. The song's lyrics were written at Vahsen's, a Port Chester, New York bar, on August 8, 1970 during an impromptu poetry jam between Joplin and songwriter Bob Neuwirth. The lyrics were inspired by the first line of a song written by San Francisco beat poet Michael McClure, \"\"Come on, God, and buy me a Mercedes Benz.\"\" Joplin heard it sung by a friend of McClure's, and she began to sing it, too. At the Port Chester bar, Joplin sang the line a few times and began riffing on the McClure lyrics, while Neuwirth copied the"} +{"qid": "test1673", "pid": "145640", "query": "when was the first epistle of john written", "answer": "AD 95–110", "passage": "\"First Epistle of John\"\nFirst Epistle of John The First Epistle of John, often referred to as First John and written 1 John or I John, is the first of the Johannine epistles of the New Testament, and the fourth of the catholic epistles. It is attributed to John the Evangelist, traditionally thought to be the author of the Gospel of John and the other two Johannine epistles. This epistle was probably written in Ephesus in AD 95–110. The work was written to counter docetism, which is the belief that Jesus did not come \"\"in the flesh\"\", but only as a spirit. It also"} +{"qid": "test1673", "pid": "145652", "query": "when was the first epistle of john written", "answer": "AD 95–110", "passage": "\"First Epistle of John\"\ninclude it as a footnote. First Epistle of John The First Epistle of John, often referred to as First John and written 1 John or I John, is the first of the Johannine epistles of the New Testament, and the fourth of the catholic epistles. It is attributed to John the Evangelist, traditionally thought to be the author of the Gospel of John and the other two Johannine epistles. This epistle was probably written in Ephesus in AD 95–110. The work was written to counter docetism, which is the belief that Jesus did not come \"\"in the flesh\"\", but only"} +{"qid": "test1674", "pid": "402000", "query": "who was the inventor who developed a way to record sound", "answer": "Thomas Edison", "passage": "\"Thomas Edison\"\nseemed to move, causing a lightbulb to glow. The following is a list of people who worked for Thomas Edison in his laboratories at Menlo Park or West Orange or at the subsidiary electrical businesses that he supervised. Museums Information and media by Frank Lewis Dyer and Thomas Commerford Martin. Thomas Edison Thomas Alva Edison (February 11, 1847October 18, 1931) was an American inventor and businessman, who has been described as America's greatest inventor. He is credited with developing many devices in fields such as electric power generation, mass communication, sound recording, and motion pictures. These inventions, which include the"} +{"qid": "test1674", "pid": "401919", "query": "who was the inventor who developed a way to record sound", "answer": "Thomas Edison", "passage": "\"Thomas Edison\"\nThomas Edison Thomas Alva Edison (February 11, 1847October 18, 1931) was an American inventor and businessman, who has been described as America's greatest inventor. He is credited with developing many devices in fields such as electric power generation, mass communication, sound recording, and motion pictures. These inventions, which include the phonograph, the motion picture camera, and the long-lasting, practical electric light bulb, had a widespread impact on the modern industrialized world. He was one of the first inventors to apply the principles of mass production and teamwork to the process of invention, working with many researchers and employees. He is"} +{"qid": "test1674", "pid": "11526655", "query": "who was the inventor who developed a way to record sound", "answer": "Thomas Edison", "passage": "\"Optical sound\"\napproached Bell & Howell to modify one of their cameras to his design, but the results were unsatisfactory. Later, the Wall Camera Corporation rebuilt the machine with improved results. De Forest also worked with early newsreel maker Freeman Harrison Owens, who had developed his own patented sound camera by 1921, and spent time in Berlin working with the Tri-Ergon corporation and investigating European sound film systems. There he met Finnish inventor Eric Tigerstedt (\"\"Finland's Thomas Edison\"\"), who improved Phonofilm's amplification system to be audible in a large theater. Phonofilm was used mainly to record stage performances, speeches, and musical acts"} +{"qid": "test1676", "pid": "857131", "query": "who helped them recapture mycenae once they were old enough to fight", "answer": "Aegisthus", "passage": "Thyestes\nkilled Atreus. While Thyestes ruled Mycenae, the sons of Atreus, Agamemnon and Menelaus, were exiled to Sparta. There, King Tyndareus accepted them as the royalty that they were. Shortly after, he helped the brothers return to Mycenae to overthrow Thyestes, forcing him to live in Cytheria, where he died. As a token of good will and allegiance, King Tyndareus offered his daughters to Agamemnon and Menelaus as wives, Clytemnestra and Helen respectively. When Agamemnon left Mycenae for the Trojan War, Aegisthus seduced Agamemnon's wife, Clytemnestra, and the couple plotted to kill her husband upon his return. They succeeded, killing Agamemnon"} +{"qid": "test1677", "pid": "1415610", "query": "who said i'll gladly pay you tuesday", "answer": "Wimpy", "passage": "\"J. Wellington Wimpy\"\nthe phrase was even the title of Episode 6 of the fourth season of \"\"Cheers\"\" \"\"I'll Gladly Pay You Tuesday.\"\" In Robert Altman's 1980 live-action musical film \"\"Popeye,\"\" where Wimpy was played by veteran character actor Paul Dooley, one of Harry Nilsson's original songs, \"\"Everything Is Food\"\", featured Dooley singing the catch-phrase, as he took a hamburger, as \"\"I would gladly pay you Tuesday for a hamburger today.\"\" The response from the chorus, as they reclaimed the same hamburger from him, uneaten, was \"\"He would gladly pay you Tuesday for a hamburger today.\"\" Later in the film, a sign in"} +{"qid": "test1677", "pid": "1415608", "query": "who said i'll gladly pay you tuesday", "answer": "Wimpy", "passage": "\"J. Wellington Wimpy\"\na time – e.g., in \"\"Popeye the Sailor Meets Sindbad the Sailor\"\" he is seen grinding meat or eating burgers almost the entire time – however, he is usually too cheap to pay for them himself. A recurring joke involves Wimpy's attempts to con other patrons of the diner owned by Rough House into buying his meal for him. His best-known catchphrase started in 1931 as, \"\"Cook me up a hamburger. I'll pay you Thursday.\"\" In 1932, this then became the famous, \"\"I'll gladly pay you Tuesday for a hamburger today.\"\" Rough House explains why Wimpy is able to get"} +{"qid": "test1677", "pid": "1415609", "query": "who said i'll gladly pay you tuesday", "answer": "Wimpy", "passage": "\"J. Wellington Wimpy\"\naway with this tactic in one strip, stating that \"\"He never comes around on Tuesday\"\". Rough House once suffered a mental breakdown from Wimpy's shenanigans, and demanded that Wimpy be kept out of his hospital room. Wimpy disobeyed this command, resulting in a rare altercation with Popeye. The phrase was also slightly altered in the episode \"\"Spree Lunch\"\" to \"\"I'll have a hamburger, for which I will gladly pay you Tuesday.\"\" This phrase is now commonly used to illustrate financial irresponsibility and still appears in modern comedies such as \"\"The Drew Carey Show\"\" and \"\"The Office\"\". The initial part of"} +{"qid": "test1677", "pid": "14691819", "query": "who said i'll gladly pay you tuesday", "answer": "Wimpy", "passage": "\"History of the hamburger\"\nsignature phrase, \"\"I will gladly pay you Tuesday for a hamburger today\"\", became popular and widely known. During the height of his popularity in the 1930s, Wimpy introduced the hamburger to the youth of the time as a healthy food. It also resulted in the creation of a chain of fast food restaurants called Wimpy's in his honor, which sold hamburgers for ten cents. In a similar fashion, the fictional character Jughead Jones, who first appeared in Archie Comics in 1941, was passionate about food generally, and hamburgers specifically. Fictional characters related to the hamburger, such as the Ronald McDonald"} +{"qid": "test1677", "pid": "13514832", "query": "who said i'll gladly pay you tuesday", "answer": "Wimpy", "passage": "Popeye\nand named \"\"Swee'Pea.\"\" Other regular characters in the strip were J. Wellington Wimpy, a hamburger-loving moocher who would \"\"gladly pay you Tuesday for a hamburger today\"\" (he was also soft-spoken and cowardly; Vickers Wellington bombers were nicknamed \"\"Wimpys\"\" after the character); George W. Geezil, a local cobbler who spoke in a heavily affected accent and habitually attempted to murder or wish death upon Wimpy; and Eugene the Jeep, a yellow, vaguely dog-like animal from Africa with magical powers. In addition, the strip featured the Sea Hag, a terrible pirate, as well as the last witch on earth (her even more"} +{"qid": "test1678", "pid": "13653385", "query": "when was 13 reasons why released on netflix", "answer": "March 31, 2017", "passage": "\"Thirteen Reasons Why\"\nthe original release of the book, that became the basis of the dramatic television series \"\"13 Reasons Why\"\" released through Netflix on March 31, 2017. The screenplay contains several deviations from the book, including, but not limited to, name changes, plot elements, and character personalities. \"\"Thirteen Reasons Why\"\" was first published in hardcover on October 18, 2007, by RazorBill, a young adult imprint of Penguin Books. The audiobook on CD was released at the same time by Listening Library, a division of Penguin Books, featuring the voices of Debra Wiseman as Hannah and Joel Johnstone as Clay. The novel was"} +{"qid": "test1678", "pid": "14044300", "query": "when was 13 reasons why released on netflix", "answer": "March 31, 2017", "passage": "\"13 Reasons Why\"\nSugar, Steve Golin, Mandy Teefey, and Kristel Laiblin serving as executive producers. Filming for the show took place in the Northern Californian towns of Vallejo, Benicia, San Rafael, Crockett and Sebastopol during the summer of 2016. The 13-episode first season and the special were released on Netflix on March 31, 2017. Therapy dogs were present on set for the actors because of the intense and emotional content of the series. On May 7, 2017, it was announced that Netflix had renewed the series for a second season. Filming for the second season began on June 12, 2017, but was briefly"} +{"qid": "test1678", "pid": "14044294", "query": "when was 13 reasons why released on netflix", "answer": "March 31, 2017", "passage": "\"13 Reasons Why\"\nand Netflix ordering the show straight to series in October 2015, with Gomez instead serving as an executive producer. The first season was released on Netflix on March 31, 2017. It received positive reviews from critics and audiences, who praised its subject matter and acting, particularly the performances of Minnette and Langford. For her performance, Langford received a Golden Globe Award nomination for Best Actress in a Drama Series. However, its graphic depiction of issues such as suicide and rape, along with other mature content prompted concerns from mental health professionals. In response, Netflix added a warning card and from"} +{"qid": "test1679", "pid": "465387", "query": "what's the biggest country in western europe", "answer": "France", "passage": "\"Transport in Serbia\"\nand Macedonia) as well as to Western Europe (mainly to countries of Western Europe with large Serb diaspora such as Germany, Austria, France, Switzerland, etc.). Routes, both domestic and international, are served by more than 100 bus companies, biggest of which are Lasta and Niš-Ekspres. The Brotherhood and Unity Highway was one of the first highways of Central-Eastern Europe. Opened as early as 1950, it became the backbone of Yugoslav road system, and linked Belgrade through Zagreb and Ljubljana with Austrian border, and through Niš and Skopje with Greek border. It became the main road link between Central Europe and"} +{"qid": "test1679", "pid": "2141038", "query": "what's the biggest country in western europe", "answer": "Russia", "passage": "\"Carlsberg Group\"\ntake over Greece's third largest brewery, the Olympic Brewery, adding to its operations in the country already and effectively transforming the firm into the second biggest market player in Greece. The old brewery in Copenhagen is open for tours. The Carlsberg Group divides their operations into three market areas: Northern and Western Europe, Eastern Europe and Asia. Baltic Beverages Holding is owned by Carlsberg. Previously, it was a joint venture between Carlsberg and Scottish & Newcastle in Russia. The company is a significant operator in the brewing industry in Russia, Ukraine, the Baltic countries, Kazakhstan and Uzbekistan. It has a"} +{"qid": "test1679", "pid": "19343885", "query": "what's the biggest country in western europe", "answer": "France", "passage": "Autodata\nthe region. Autodata France was created in 2011, with offices just outside Bordeaux, to support what was becoming one of the biggest country-specific markets for Autodata. In 2015 Autodata France included a new company set-up, as Autodata purchased one of its biggest distributors in Europe, SFTA. In May 2014, with much interest, Autodata was purchased by Bowmark Capital and Five Arrows for £150 million. In the same year Autodata opened access to a new API (Application programming interface) based product, allowing organisations to build their own solutions, powered by the databases of Autodata.This was further developed, until being officially launched"} +{"qid": "test1679", "pid": "461490", "query": "what's the biggest country in western europe", "answer": "Russia", "passage": "\"Western Europe\"\nand United Kingdom. Eastern Europe, meanwhile is formed by countries with dominant Eastern Orthodox churches, including Greece, Belarus, Bulgaria, Serbia, Romania, Russia, and Ukraine for instance. The schism is the break of communion and theology between what are now the Eastern (Orthodox) and Western (Roman Catholic from the 11th century, as well as from the 16th century also Protestant) churches. This division dominated Europe for centuries, in opposition to the rather short-lived Cold War division of 4 decades. Since the Great Schism of 1054, Europe has been divided between Roman Catholic and Protestant churches in the West and the Eastern"} +{"qid": "test1679", "pid": "4937989", "query": "what's the biggest country in western europe", "answer": "France", "passage": "\"Road bicycle racing\"\npopular in Western Europe, centered historically on France, Spain, Italy and the Low Countries. Since the mid-1980s the sport has diversified with professional races now held on all continents of the globe. Semi-professional and amateur races are also held in many countries. The sport is governed by the Union Cycliste Internationale (UCI). As well as the UCI's annual World Championships for men and women, the biggest event is the Tour de France, a three-week race that can attract over 500,000 roadside supporters a day. Road racing in its modern form originated in the late 19th century. It began as an"} +{"qid": "test1679", "pid": "1268190", "query": "what's the biggest country in western europe", "answer": "France", "passage": "\"Common Agricultural Policy\"\nrely very little on agriculture as part of their economy (in the United Kingdom agriculture employs 1.6% of the total workforce and in the Netherlands 2.0%). The UK therefore receives less than half what France gets, despite a similar sized economy and population. Other countries receive more benefit from different areas of the EU budget. Overall, certain countries make net contributions, notably Germany (the largest contribution overall) and the Netherlands (the biggest contribution per person), but also the UK and France. The largest per capita beneficiaries are Greece and Ireland. Another aspect is difference between older Western European and newer"} +{"qid": "test168", "pid": "4402172", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"A Whiter Shade of Pale\"\nA Whiter Shade of Pale \"\"A Whiter Shade of Pale\"\" is the debut single by the British rock band Procol Harum, released 12 May 1967. The single reached number 1 in the UK Singles Chart on 8 June 1967 and stayed there for six weeks. Without much promotion, it reached number 5 on the \"\"Billboard\"\" pop chart in the United States. One of the anthems of the 1967 Summer of Love, it is one of the best selling singles in history, having sold more than 10 million copies worldwide. With its Bach-derived instrumental melody, soulful vocals, and unusual lyrics –"} +{"qid": "test168", "pid": "4901675", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Procol Harum (album)\"\nopening track and without \"\"A Whiter Shade of Pale\"\" or \"\"Good Captain Clack\"\". The set includes bonus singles of the original monaural and alternate stereo versions of \"\"A Whiter Shade of Pale\"\". A 2009 remaster by Salvo Records, using the original mono masters, was released, with bonus tracks including the singles \"\"A Whiter Shade of Pale\"\", \"\"Homburg\"\", B-sides and alternate stereo takes. However, many of the tracks are played at a higher speed. A 2015 remaster by Cherry Red Records expands the album into a 2-CD set. A live version of the track \"\"Conquistador\"\", from the album \"\"Procol Harum Live"} +{"qid": "test168", "pid": "11479513", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"A Question of Honour (song)\"\nof Pale\"\" US single featured all of the \"\"A Question of Honour\"\" remixes from the remix CD. In 2011 the song was certified by the Recording Industry Association of Japan as a Gold single for more than 100,000 digital downloads. Sarah Brightman released her cover of the Procol Harum song \"\"A Whiter Shade of Pale\"\" as a single with \"\"A Question of Honour\"\" in 2001. \"\"A Whiter Shade of Pale\"\" is from her 2000 album \"\"La Luna\"\". A Question of Honour (song) \"\"A Question of Honour\"\" is a 1995 single by soprano Sarah Brightman, from her album \"\"Fly\"\". It peaked"} +{"qid": "test168", "pid": "2704202", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Yumi Matsutoya\"\nduet with the vocalist Kei Tani. It was released as the group's first new single since 1986, and climbed to #14 on the Oricon chart. It was the highest chart position they have ever reached. In 2012 Yumi came to London to record \"\"A Whiter Shade of Pale\"\" with Procol Harum, a band she considered an inspiration for her work. She sang a duet with Gary Brooker on this new version of the 1967 classic, which featured three verses and a guitar solo by Geoff Whitehorn. Yumi and Procol Harum then played a series of December concerts in major Japanese"} +{"qid": "test168", "pid": "1502926", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Procol Harum\"\nProcol Harum Procol Harum () are an English rock band formed in 1967. Their best-known recording is the 1967 hit single \"\"A Whiter Shade of Pale\"\", considered a classic in popular music and one of the few singles to have sold over 10 million copies. Although noted for their baroque and classical influence, Procol Harum's music also embraces the blues, R&B, and soul. In 2018, the band was honoured by the Rock and Roll Hall of Fame when \"\"A Whiter Shade of Pale\"\" was inducted into the brand-new Singles category. The Paramounts, based in Southend-on-Sea, Essex, led by Gary Brooker"} +{"qid": "test168", "pid": "10096428", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Conquistador (Procol Harum song)\"\nwhich gives it a mariachi-esque but mournful sound. Besides \"\"A Whiter Shade of Pale\"\", \"\"Conquistador\"\" was the band's highest charting single. It peaked at #16 on the \"\"Billboard\"\" Hot 100 on 29 July 1972, exactly five years to the date after \"\"A Whiter Shade of Pale\"\" ascended to its #5 peak, and helped catapult the album into the top five. \"\"Conquistador\"\" peaked at #22 on the UK Singles Chart. The song was generally well received by music critics. Bruce Eder of Allmusic praised it as \"\"the most accessible song\"\" on \"\"Procol Harum Live In Concert with the Edmonton Symphony Orchestra\"\","} +{"qid": "test168", "pid": "4402187", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"A Whiter Shade of Pale\"\nreached number 5 on the \"\"Billboard\"\" Hot 100 and sold over 1 million copies. It also peaked at number 22 on the soul charts there. The song was included on the US release of the \"\"Procol Harum\"\" album, in September 1967, but not on the subsequent UK version. In the Netherlands, the single entered the chart at number 1 in June 1967 and reached number 1 again in July 1972. A May 1972 re-release on Fly Records peaked at number 13 in the UK. \"\"A Whiter Shade of Pale\"\" has continued to receive critical acclaim. Along with Queen's \"\"Bohemian Rhapsody\"\","} +{"qid": "test168", "pid": "1502952", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Procol Harum\"\nLondon Palladium on 9 October. 2019 starts with a Caribbean cruise hosted by Justin Hayward, with many well-known rock acts. A US tour follows. In July 2009, Matthew Fisher won a British court judgment awarding him 40% of the music royalties from 2005 onwards for 1967's \"\"A Whiter Shade of Pale\"\", which had previously gone 50% to Brooker for the music and 50% to Reid for the lyrics. Procol Harum Procol Harum () are an English rock band formed in 1967. Their best-known recording is the 1967 hit single \"\"A Whiter Shade of Pale\"\", considered a classic in popular music"} +{"qid": "test168", "pid": "5980172", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Riot V\"\nMike DiMeo, who had played with Howard Stern sidekick Stuttering John Melendez in a local band named Josie Sang, with a view toward making a more hard rock oriented solo album. Eventually, those plans were dropped and the proposed solo effort turned into another Riot album, 1993's \"\"Nightbreaker\"\", which featured a remake of the \"\"Fire Down Under\"\" classic 'Outlaw' as well as covers of Deep Purple's 'Burn' and 'A Whiter Shade of Pale' by Procol Harum. The following LP, the Native American-themed \"\"Brethren of the Long House\"\" (1996), which saw John Macaluso (TNT, Powermad) briefly take over for Bobby Jarzombek"} +{"qid": "test168", "pid": "3688891", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "Scopitone\nHas a Thousand Eyes\"\" and \"\"Baby Face\"\") and Procol Harum (\"\"A Whiter Shade of Pale\"\") later on. In one Scopitone recording, Dionne Warwick lay on a white shag rug with an offstage fan urging her to sing \"\"Walk On By\"\". Another had Nancy Sinatra and a troupe of go-go girls shimmy to \"\"These Boots Are Made for Walkin'\"\". Inspired by burlesque, blonde bombshell Joi Lansing performed \"\"Web of Love\"\" and \"\"The Silencer\"\", and Julie London sang \"\"Daddy\"\" against a backdrop of strippers. The artifice of such scenes led Susan Sontag to identify Scopitone films as \"\"part of the canon of"} +{"qid": "test168", "pid": "1502947", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Procol Harum\"\nU.S. tour supporting Yes. In 2012 the Japanese artist Yumi Matsutoya came to London to record \"\"A Whiter Shade of Pale\"\" with Procol Harum, a band she considered an inspiration for her work. She sang a duet with Gary Brooker on this new version of the 1967 classic, which featured three verses and a guitar solo by Geoff Whitehorn. Yumi and Procol Harum then played a series of December concerts in major Japanese cities, one of which was recorded for a later television showing (on 31 March 2013). In 2012, Henry Scott-Irvine published a biography of the band, \"\"Procol Harum"} +{"qid": "test168", "pid": "4402190", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"A Whiter Shade of Pale\"\nTV show. Procol Harum subsequently made a second promotional clip, using \"\"Scopitone\"\" technology. By this time, Robin Trower and B.J. Wilson had replaced Royer and Harrison in the band, so only three of the five musicians on the recording are represented. No performance footage appears in this film – only scenes of the five musicians cavorting around London and running across fields. The same lineup, with Fisher wearing a monk's cowl, mimed to the song on \"\"Top of the Pops\"\", although Brooker sang live. Black-and-white footage of the performance has been shown online. The song represents 1967 on the 2004"} +{"qid": "test168", "pid": "13978026", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Donald Lautrec\"\n(Deep in My Countryside) which he sang in the movie \"\"Pas de vacances pour les idoles\"\" (No Holiday for Idols). In 1966 he travelled to France where he participated in television and radio, and received the Newcomer of the Year Award at the Gala des Artistes. In 1967 Lautrec was selected to sing Expo 67's theme song \"\"Un jour, un jour\"\" (an English version was also recorded as \"\"Hey Friend, Say Friend\"\"), composed by Stéphane Venne. That summer his French interpretation of the Procol Harum song, \"\"A Whiter Shade of Pale\"\"—titled \"\"Le jour du dernier jour\"\" (The Day of the"} +{"qid": "test168", "pid": "4402176", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"A Whiter Shade of Pale\"\nphrase stuck in his mind. The original lyrics had four verses, of which only two are heard on the original recording. The third verse has been heard in live performances by Procol Harum, and more seldom also the fourth. Claes Johansen, in his book \"\"Procol Harum: Beyond the Pale\"\", suggests that the song \"\"deals in metaphorical form with a male/female relationship which after some negotiation ends in a sexual act\"\". This is supported by Tim de Lisle in \"\"Lives of the Great Songs\"\", who remarks that the lyrics concern a drunken seduction, which is described through references to sex as"} +{"qid": "test168", "pid": "1320576", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"Bee Gees\"\nfilm \"\"Wonderwall\"\", according to director Joe Massot. On 27 February 1968, the band, backed by the 17-piece Massachusetts String Orchestra, began their first tour of Germany with two concerts at Hamburg Musikhalle. In March 1968, the band was supported by Procol Harum (who had a well-known hit \"\"A Whiter Shade of Pale\"\") on their German tour. As Robin's partner Molly Hullis recalls: \"\"Germans were wilder than the fans in England at the heights of Beatlemania.\"\" The tour schedule took them to 11 venues in as many days with 18 concerts played, finishing with a brace of shows at the Stadthalle,"} +{"qid": "test168", "pid": "6460459", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"David Knights\"\ngroup. He is fairly inactive in the music industry these days. David Knights David Knights (born David John Knights, 28 June 1945, Islington, North London) is a British musician who was the original bass guitarist in the band Procol Harum. He played bass on the hit single \"\"A Whiter Shade of Pale\"\". He was in the band long enough to play on their first three albums. He departed in 1969, to be replaced by Chris Copping. When he was in Procol Harum he used a Gibson EB-0 bass. He also performed with a band named Ruby, that released one album"} +{"qid": "test168", "pid": "6460458", "query": "who sang a whiter shade of pale first", "answer": "Procol Harum", "passage": "\"David Knights\"\nDavid Knights David Knights (born David John Knights, 28 June 1945, Islington, North London) is a British musician who was the original bass guitarist in the band Procol Harum. He played bass on the hit single \"\"A Whiter Shade of Pale\"\". He was in the band long enough to play on their first three albums. He departed in 1969, to be replaced by Chris Copping. When he was in Procol Harum he used a Gibson EB-0 bass. He also performed with a band named Ruby, that released one album before disbanding. He also produced a single for Mickey Jupp's Legend"} +{"qid": "test1680", "pid": "6969183", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Tug of war at the Summer Olympics\"\nits time as an Olympic sport, it was considered to be part of the Olympic athletics programme, although the sports of tug of war and athletics are now considered distinct. Teams consisted of 6 members in 1900 (Denmark and Sweden competed together), 5 members in 1904, and 8 members in the last three appearances of the sport. Tug of war at the Summer Olympics Tug of war was contested as a team event in the Summer Olympics at every Olympiad from 1900 to 1920. Originally the competition was entered by groups called clubs. A country could enter more than one"} +{"qid": "test1680", "pid": "8346579", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Great Britain at the 1920 Summer Olympics\"\nmedals in the women's singles; Holman took silver and McKane won the bronze. Great Britain competed in the Olympic tug of war tournament for the third time in 1920, the final appearance of the sport in the Olympics. Along with Sweden and the United States, Great Britain's three appearances in the five Olympic tug of war tournaments were the most of any nation. The Bergvall System was used in 1920. Great Britain won all three of its matches, taking the gold medal to become the only country to win two Olympic golds in the tug of war. All matches were"} +{"qid": "test1680", "pid": "351776", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Tug of war\"\nand women participate. The sport was part of the Olympic Games from 1900 until 1920, but has not been included since. The sport is part of the World Games. The Tug of War International Federation (TWIF), organises World Championships for nation teams biannually, for both indoor and outdoor contests, and a similar competition for club teams. In England the sport was formally governed by the AAA until 1984, but is now catered for by the Tug of War Association (formed in 1958), and the Tug of War Federation of Great Britain (formed in 1984). In Scotland, the Scottish Tug of"} +{"qid": "test1680", "pid": "2346061", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"City of London Police\"\nthe 1920 Summer Olympics the team regained its title, beating the Netherlands. This was the last time tug of war was an Olympic sport, which means the City of London Police is still the reigning Olympic champion. The City of London Police Museum is dedicated to the police force and its story of policing. Exhibits include uniforms, Victorian-era police equipment and artefacts, communication devices, World War II displays, and exhibits about Jack the Ripper and other famous murder cases. The museum relocated in November 2016 to the space formerly used by the Clockmakers' Museum, next to the Guildhall Library. The"} +{"qid": "test1680", "pid": "8925450", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"United States at the 1920 Summer Olympics\"\nthe four events, the United States took only a single bronze medal in the team single shots event. The United States competed in the Olympic tug of war tournament for the third time in 1920, the final appearance of the sport in the Olympics. The Americans joined the British in tying Sweden's mark for most appearances in the short life of tug of war at the Olympics at three of five. The Bergvall System was used in 1920. The Americans lost in the quarterfinals to eventual gold-medallist Great Britain, thus putting the United States in contention for the silver medal."} +{"qid": "test1680", "pid": "16777082", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Bergvall system\"\nthe football, the ice hockey and the tug of war. Although the system is fair, there are two main flaws: Because of these flaws, the system was dropped by Olympic organisers after 1924 and was abandoned by the NCAA in the 1930s. Bergvall system The Bergvall system was a variation of the traditional knockout tournament system which was used at the 1912, 1920 and 1924 Summer Olympics. It was devised for the Olympics by Erik Bergvall, a Swedish water polo player, journalist and sports official. However, a similar system had been in use for sports competitions in the United States"} +{"qid": "test1680", "pid": "6837714", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Great Britain at the Olympics\"\n(three as part of mixed teams). Great Britain have competed in all five triathlon competitions that have taken place since 2000. Their best finish is a 1st and 2nd place in the men's triathlon, and 3rd-place finish in the women's triathlon, in 2016. Great Britain's Olympic tug of war debut came when the nation hosted the Games in 1908. Great Britain was then one of only two teams to compete in 1912 and also won the last Tug of War competition held in the Olympics in 1920. Prior to participating, as host nation, in the 2012 volleyball tournaments, Great Britain"} +{"qid": "test1680", "pid": "8935483", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Italy at the 1920 Summer Olympics\"\nnation's debut in the sport. Balbi and Colombo reached the quarterfinals in the men's doubles, the best result for Italy that year. Italy competed in the Olympic tug of war tournament for the first time in 1920, the final appearance of the sport in the Olympics. The Bergvall System was used in 1920. Italy lost its first match in the semifinals to the Netherlands. Because the Dutch went on to win the silver medal, Italy received an opportunity to contest the bronze. In the bronze medal semifinals, the Italians lost again, this time to the United States, to finish fifth"} +{"qid": "test1680", "pid": "17129674", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Olympic results index\"\nthe 2000 Summer Olympics|2000]] [[Triathlon at the 2004 Summer Olympics|2004]] [[Triathlon at the 2008 Summer Olympics|2008]] [[Triathlon at the 2012 Summer Olympics|2012]] [[Triathlon at the 2016 Summer Olympics|2016]] [[Triathlon at the 2020 Summer Olympics|2020]] [[Triathlon at the 2024 Summer Olympics|2024]] [[Tug of war at the 1900 Summer Olympics|1900]] [[Tug of war at the 1904 Summer Olympics|1904]] [[Tug of war at the 1908 Summer Olympics|1908]] [[Tug of war at the 1912 Summer Olympics|1912]] [[Tug of war at the 1920 Summer Olympics|1920]] [[Volleyball at the 1964 Summer Olympics|1964]] [[Volleyball at the 1968 Summer Olympics|1968]] [[Volleyball at the 1972 Summer Olympics|1972]] [[Volleyball at"} +{"qid": "test1680", "pid": "6969182", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Tug of war at the Summer Olympics\"\nTug of war at the Summer Olympics Tug of war was contested as a team event in the Summer Olympics at every Olympiad from 1900 to 1920. Originally the competition was entered by groups called clubs. A country could enter more than one club in the competition, making it possible for one country to earn multiple medals. This happened in 1904, when the United States won all three medals, and in 1908 when the podium was occupied by three British teams. Sweden was also among the top countries with two medals, one as a member of the mixed team. During"} +{"qid": "test1680", "pid": "11226646", "query": "when was the last time tug-of-war was an official olympic sport", "answer": "1920", "passage": "\"Frederick Humphreys (athlete)\"\nFrederick Humphreys (athlete) Frederick Harkness Humphreys (28 January 1878 – 10 August 1954) was a British tug of war competitor and sport wrestler who competed in the 1908 Summer Olympics in London, in the 1912 Summer Olympics in Stockholm, and in the 1920 Summer Olympics in Antwerp. He was also a constable in the City of London Police, collar number 970, as were two of his brothers. He was part of the British City of London Police team which won two gold (1908 and 1920) and one silver medal (1912) in three consecutive tug of war competitions. (There were no"} +{"qid": "test1681", "pid": "2546705", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "Rashidun\nRashidun The Rashidun\"\" Caliphs (Rightly Guided Caliphs; '), often simply called, collectively, \"\"\"\"'the \"\"Rashidun\"\", is a term used in Sunni Islam to refer to the 30-year reign of the first four caliphs (successors) following the death of the Islamic prophet Muhammadﷺ, namely: Abu Bakr, Umar, Uthman ibn Affan, and Ali of the Rashidun Caliphate, the first caliphate. The concept of \"\"Rightly Guided Caliphs\"\" originated with the later Abbasid Caliphate based in Baghdad. It is a reference to the Sunni imperative \"\"Hold firmly to my example (\"\"sunnah\"\") and that of the Rightly Guided Caliphs\"\" (Ibn Majah, Abu Dawood). The first four"} +{"qid": "test1681", "pid": "9389546", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Rashidun Caliphate\"\nRashidun Caliphate The Rashidun Caliphate (, '; 632–661) was the first of the four major caliphates established after the death of the Islamic Prophet Muhammad. It was ruled by the first four successive caliphs (successors) of Muhammad after his death in 632 CE (AH 11). These caliphs are collectively known in Sunni Islam as the \"\"Rashidun\"\", or \"\"Rightly Guided\"\" caliphs ( '). This term is not used in Shia Islam as Shia Muslims do not consider the rule of the first three caliphs as legitimate. The Rashidun Caliphate is characterized by a twenty-five year period of rapid military expansion, followed"} +{"qid": "test1681", "pid": "5734228", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Criticism of Islam\"\nincluding the period ruled by the four Rashidun caliphs (often called the \"\"rightly guided caliphs)\"\", Islamic law permitted citizens to freely express their views, including criticism of Islam and religious authorities, without fear of persecution. As such, there have been several notable critics and skeptics of Islam that arose from within the Islamic world itself. In tenth and eleventh-century Syria there lived a blind poet called Al-Ma'arri. He became well known for a poetry that was affected by a \"\"pervasive pessimism.\"\" He labeled religions in general as \"\"noxious weeds\"\" and said that Islam does not have a monopoly on truth."} +{"qid": "test1681", "pid": "2546721", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "Rashidun\nShia Muslims, the first three of the four were usurpers. Accepted traditions of both Sunni and Shia Muslims detail disagreements and tensions between the four rightly guided caliphs. They were called the \"\"Rightly-Guided\"\" because they have been seen as model Muslim leaders by Sunni Muslims. This terminology came into a general use around the world, since Sunni Islam has been the dominant Islamic tradition, and for a long time it has been considered the most authoritative source of information about Islam in the Western world. They were all close companions of Muhammad, and his relatives: the daughters of Abu Bakr"} +{"qid": "test1681", "pid": "398720", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Sunni Islam\"\nend products of several centuries of competition between ideologies. Both sects used each other to further cement their own identities and doctrines. The first four caliphs are known among Sunnis as the Rashidun or \"\"Rightly-Guided Ones\"\". Sunni recognition includes the aforementioned Abu Bakr as the first, Umar as the second, Uthman as the third, and Ali as the fourth. Sunnis recognised different rulers as the caliph, though they did not include anyone in the list of the rightly guided ones or \"\"Rashidun\"\" after the murder of Ali, until the caliphate was constitutionally abolished in Turkey on 3 March 1924. The"} +{"qid": "test1681", "pid": "9389627", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Rashidun Caliphate\"\nthe Rashidun, meaning the Rightly Guided Caliphs, because they are believed to have followed the Qur'an and the sunnah (example) of Muhammad in all things. Traditional Sunni Islamic lawyers agree that \"\"shura\"\", loosely translated as “consultation of the people”, is a function of the caliphate. The Majlis al-Shura advise the caliph. The importance of this is premised by the following verses of the Qur'an: The majlis is also the means to elect a new caliph. Al-Mawardi has written that members of the majlis should satisfy three conditions: they must be just, they must have enough knowledge to distinguish a good"} +{"qid": "test1681", "pid": "858109", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "Uthman\nUthman Uthman ibn Affan (), also known in English by the Turkish and Persian rendering Osman (579 – 17 June 656), was a second cousin, son-in-law and notable companion of the Islamic prophet Muhammad the third of the \"\"Rashidun\"\", or \"\"Rightly Guided Caliphs\"\". Born into a prominent Meccan clan, Banu Umayya of the Quraysh tribe, he played a major role in early Islamic history. When Caliph Umar ibn al-Khattab died in office aged 59/60 years, ʿUthmān, aged 64/65 years, succeeded him and was the second-oldest to rule as Caliph. Uthman was married to Ruqayyah, and upon her death, married Umm"} +{"qid": "test1681", "pid": "9389552", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Rashidun Caliphate\"\nfor 30 years (the length of the Rashidun Caliphate) and would then be followed by kingship. Furthermore, according to other hadiths in Sunan Abu Dawood and Musnad Ahmad ibn Hanbal, towards the end times, the Rightly Guided Caliphate will be restored once again by God. Shortly before his death, Muhammad called all the Muslims who had accompanied him on the final Hajj (pilgrimage) to gather around at a place known as Ghadir Khumm. Muhammad gave a long sermon, part of which states: This event has been narrated by both Shia and Sunni sources. Further, after the sermon, Abu Bakr, Umar,"} +{"qid": "test1681", "pid": "11039726", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Criticism of Islamism\"\nIslam was in existence. Abul Ala Maududi indicates it was the era of the Prophet and the 30-year reign of the four \"\"rightly guided caliphs\"\" (\"\"Rashidun\"\"). Qutb's brother Muhammad thought the only time \"\"Islam was ... enforced in its true form\"\" was for fifteen years, during the first two caliphs, plus three years from 717 to 720 A.D. For the Shiite Ayatollah Khomeini, the five-year reign of Caliph Ali was the truly Islamic era Muslims should imitate. Meddeb protests that this excludes not only any non-Muslim culture, but most of Muslim history including the Golden Age of Islam: \"\"How can"} +{"qid": "test1681", "pid": "5997071", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Islamic state\"\nby Muhammad in Medina in 622 CE, under the Constitution of Medina. It represented the political unity of the Muslim \"\"Ummah\"\" (nation). It was subsequently transformed into the caliphate by Muhammad's disciples, who were known as the Rightly Guided (\"\"Rashidun\"\") Caliphs (632–661 CE). The Islamic State significantly expanded under the Umayyad Caliphate (661–750) and consequently the Abbasid Caliphate (750–1258). The essence or guiding principles of an Islamic government or Islamic state, is the concept of \"\"Al-Shura\"\". Different scholars have different understandings or thoughts, with regard to the concept al-Shura. However, most Muslim scholars are of the opinion that Islamic al-Shura"} +{"qid": "test1681", "pid": "9389625", "query": "the rule of the three rightly guided caliphs was called", "answer": "Rashidun", "passage": "\"Rashidun Caliphate\"\nSunni view that the head of state or governor should be chosen based on lineage alone. This argument is advanced by Sunni Muslims that Muhammad's companion Abu Bakr was elected by the community, and this was the proper procedure. They further argue that a caliph is ideally chosen by election or community consensus. The caliphate became a hereditary office or the prize of the strongest general after the Rashidun caliphate. However, Sunni Muslims believe this was after the 'rightly guided' caliphate ended (Rashidun caliphate). Abu Bakr Al-Baqillani has said that the leader of the Muslims simply should be from the"} +{"qid": "test1685", "pid": "2857839", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nprefectures. The mines are still in operation and cadmium pollution levels remain high, although improved nutrition and medical care has reduced the occurrence of itai-itai disease. Itai-itai disease (イタイイタイ病 itai-itai byō, \"\"it hurts-it hurts disease\"\") was the name given to the mass cadmium poisoning of Toyama Prefecture, Japan, starting around 1912. The term \"\"itai-itai disease\"\" was coined by locals for the severe pains (Japanese: 痛い itai) that people with itai-itai disease felt in the spine and joints. Any person infected with Cd-Poisoning must seek immediate medical help. Detoxification of Cadmium (Cd) with EDTA (Ethylene Diamine TetraAcetate) and other chelators is"} +{"qid": "test1685", "pid": "7590048", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Four Big Pollution Diseases of Japan\"\nissues of compensation for technology-related mass damage which continue to have repercussions in legal cases in Japan today. Itai-itai disease first occurred in 1912 within Toyama Prefecture. This disease was given the name \"\"itai-itai\"\" because this was the phrase victims would frequently cry out; it translates into \"\"it-hurts it-hurts disease\"\". The cause of itai-itai disease was determined to be cadmium poisoning in the drinking water from the Jinzū River basin. The source of cadmium was discovered to be from Mitsui Mining and Smelting Company. Mitsui Mining began to discharge cadmium into the Jinzū River in 1910. The cadmium poisoned the"} +{"qid": "test1685", "pid": "2857834", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nwomen's age. Recent animal studies have shown that cadmium poisoning alone is not enough to elicit all of the symptoms of itai-itai disease. These studies are pointing to damage of the mitochondria of kidney cells by cadmium as a key factor of the disease. Itai-itai disease was caused by cadmium poisoning due to mining in Toyama Prefecture. The earliest records of mining for gold in the area date back to 1710. Regular mining for silver started in 1589, and soon thereafter, mining for lead, copper, and zinc began. Increased demand for raw materials during the Russo-Japanese War and World War"} +{"qid": "test1685", "pid": "2857838", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nalso started an investigation in 1961, determining that the Mitsui Mining and Smelting's Kamioka Mining Station caused the cadmium pollution and that the worst-affected areas were 30 km downstream of the mine. In 1968, the Ministry of Health and Welfare issued a statement about the symptoms of \"\"itai-itai\"\" disease caused by the cadmium poisoning. The reduction of the levels of cadmium in the water supply reduced the number of new cases; no new case has been recorded since 1946. While the people with the worst symptoms came from Toyama prefecture, the government found patients with itai-itai disease in five other"} +{"qid": "test1685", "pid": "2857833", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nItai-itai disease One of the main effects of cadmium poisoning is weak and brittle bones. Spinal and leg pain is common, and a waddling gait often develops due to bone deformities caused by the cadmium. The pain eventually becomes debilitating, with fractures becoming more common as the bone weakens. Other complications include coughing, anemia, and kidney failure, leading to death. A marked prevalence in older, postmenopausal women has been observed. The cause of this phenomenon is not fully understood, and is currently under investigation. Current research has pointed to general malnourishment, as well as poor calcium metabolism relating to the"} +{"qid": "test1685", "pid": "2857845", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nOn 17 March 2012, officials concluded the cleanup project of the cadmium-polluted areas in the Jinzū River basin. Eight-hundred and sixty-three hectares of topsoil had been replaced since the cleanup began in 1979 at a total cost of ¥40.7 billion. The project had been financed by the Japanese national government, Mitsui Mining, and the Gifu and Toyama prefectural governments. Itai-itai disease One of the main effects of cadmium poisoning is weak and brittle bones. Spinal and leg pain is common, and a waddling gait often develops due to bone deformities caused by the cadmium. The pain eventually becomes debilitating, with"} +{"qid": "test1685", "pid": "7590050", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Four Big Pollution Diseases of Japan\"\nitai-itai disease was caused by their discharge of cadmium into the Jinzū River. Mitsui Mining was also obliged to pay recovery costs for the land. This meant that they had to ensure the poisoned land was returned to a safe and cultivable state. The first report of Minamata disease originated in Minamata in Kumamoto Prefecture in the year 1956. Many of the earliest patients became insane from the symptoms and in some cases died within a month of being afflicted. After an extensive investigation, the Minamata disease was identified as a heavy metal poisoning, specifically methylmercury poisoning, transmitted by the"} +{"qid": "test1685", "pid": "2857837", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nbuilt a basin to store the mining waste water before leading it into the river. This proved ineffective, and many had already been sickened. The causes of the poisoning were not well understood and, up to 1946, it was thought to be simply a regional disease or a type of bacterial infection. Medical tests started in the 1940s and 1950s, searching for the cause of the disease. Initially, it was expected to be lead poisoning due to the lead mining upstream. Only in 1955 did Dr. Hagino and his colleagues suspect cadmium as the cause of the disease. Toyama Prefecture"} +{"qid": "test1685", "pid": "20400758", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Onsan illness\"\nproblem. The collective group of symptoms was termed \"\"Onsan illness\"\" as a root cause was initially unknown and later thought to be cadmium poisoning. It is believed that over 500 cases of cadmium poisoning have occurred in Onsan. Comparisons have been drawn with the Itai-itai disease, which caused similar symptoms and was caused by cadmium poisoning from the mining industry in the Toyama prefecture in Japan. The health impact combined with the risk to their livelihoods sparked a grass roots movement supported by the media. While the government maintained their position that poisoning is not the cause of this illness,"} +{"qid": "test1685", "pid": "8265759", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Kamioka Observatory\"\nsubsidiary of the Mitsui Mining and Smelting Co. \"\"Mitsui Kinzoku\"\"). The mine is famous as the site of one of the greatest mass-poisonings in Japanese history. From 1910 to 1945, the mine operators released cadmium from the processing plant into the local water. This cadmium caused what the locals called itai-itai disease. The disease caused weakening of the bones and extreme pain. Although mining operations have ceased, the smelting plant continues to process zinc, lead and silver from other mines and recycling. While current experiments are all located in the northern Mozumi mine, the Tochibora mine 10 km south is"} +{"qid": "test1685", "pid": "2857836", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nfields, but also for drinking water, washing, fishing, and other uses by downstream populations. Due to the cadmium poisoning, the fish in the river started to die, and the rice irrigated with river water did not grow well. The cadmium and other heavy metals accumulated at the bottom of the river and in the water of the river. This water was then used to irrigate the rice fields. The rice absorbed heavy metals, especially the cadmium. The cadmium accumulated in the people eating contaminated rice. When the population complained to Mitsui Mining & Smelting Co. about this pollution, the company"} +{"qid": "test1685", "pid": "69531", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "Cadmium\ncontaminated the Jinzū River in Japan with cadmium and traces of other toxic metals. As a consequence, cadmium accumulated in the rice crops along the riverbanks downstream of the mines. Some members of the local agricultural communities consumed the contaminated rice and developed itai-itai disease and renal abnormalities, including proteinuria and glucosuria. The victims of this poisoning were almost exclusively post-menopausal women with low iron and other mineral body stores. Similar general population cadmium exposures in other parts of the world have not resulted in the same health problems because the populations maintained sufficient iron and other mineral levels. Thus,"} +{"qid": "test1685", "pid": "4732509", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Cadmium poisoning\"\nworking with cadmium it is important to do so under a fume hood to protect against dangerous fumes. Brazing fillers which contain cadmium should be handled with care. Serious toxicity problems have resulted from long-term exposure to cadmium plating baths. Buildup of cadmium levels in the water, air, and soil has been occurring particularly in industrial areas. Environmental exposure to cadmium has been particularly problematic in Japan where many people have consumed rice that was grown in cadmium-contaminated irrigation water. This phenomenon is known as itai-itai disease. Food is another source of cadmium. Plants may contain small or moderate amounts"} +{"qid": "test1685", "pid": "2857843", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nand eighty-four patients have been legally recognized since 1967, of whom 54 were recognized in the period from 1980 to 2000. An additional 388 people have been identified as potential patients, those who had not been officially examined yet. Fifteen people with itai-itai were still alive . The cadmium pollution had contaminated many agricultural areas. Heavy metal pollution affected many areas in Japan, and as a result the Prevention of Soil Contamination in Agricultural Land Law of 1970 was enacted. It ordered planting to be stopped so that restoration of the soil could be enacted to areas with 1ppm of"} +{"qid": "test1685", "pid": "2857835", "query": "itai-itai disease was a form of poisoning associated with ingestion of", "answer": "cadmium", "passage": "\"Itai-itai disease\"\nI, as well as new mining technologies from Europe, increased the output of the mines, putting the Kamioka Mines in Toyama among the world's top mines. Production increased even more before World War II. Starting in 1910 and continuing through 1945, cadmium was released in significant quantities by mining operations, and the disease first appeared around 1912. Prior to World War II, the mining, controlled by the Mitsui Mining & Smelting Co., Ltd., increased to satisfy the wartime demand. This subsequently increased the pollution of the Jinzū River and its tributaries. The river was used mainly for irrigation of rice"} +{"qid": "test1686", "pid": "9862135", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Pittsburgh Steelers", "passage": "\"History of the Minnesota Vikings\"\nBowl in franchise history, Super Bowl VIII, against the Miami Dolphins at Rice Stadium in Houston, Texas. The Dolphins prevailed 24–7. The Vikings won the Central Division again in 1974 with a 10–4 record. In the playoffs, they built on their cold weather reputation, defeating both the St. Louis Cardinals and the Los Angeles Rams in frozen Metropolitan Stadium. On January 12, 1975, The Vikings played in their second straight Super Bowl, Super Bowl IX (3rd overall), losing to the Pittsburgh Steelers, 16–6, at Tulane Stadium in New Orleans. In 1975, Mike Lynn, who had been hired the previous year"} +{"qid": "test1686", "pid": "11856835", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Miami Dolphins", "passage": "\"Super Bowl curse\"\n1998 Miami Dolphins, the 2016 Houston Texans, and the 2017 Minnesota Vikings, the Vikings being the first to qualify for their conference's title game. From 1966–2011 (excluding the six Super Bowl games held in a stadium without a professional team), the Super Bowl host team has had 11 winning seasons, four split seasons, and 25 losing seasons. Mathematically, the probability of that many losing seasons or more occurring by chance (assuming a 50 percent chance of having a losing season (disregarding .500 seasons)) is 7.69 percent. It should be noted, however, that the Super Bowl host stadium is selected several"} +{"qid": "test1686", "pid": "394009", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Oakland Raiders", "passage": "\"Super Bowl XI\"\nSuper Bowl XI Super Bowl XI was an American football game between the American Football Conference (AFC) champion Oakland Raiders and the National Football Conference (NFC) champion Minnesota Vikings to decide the National Football League (NFL) champion for its 1976 season. The Raiders defeated the Vikings by the score of 32–14 to win their first Super Bowl. The game was played on January 9, 1977, at the Rose Bowl in Pasadena, California. This remains the Super Bowl scheduled earliest during the calendar year. This was the Raiders’ second Super Bowl appearance after losing Super Bowl II. They posted a 13–1"} +{"qid": "test1686", "pid": "9975473", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Miami Dolphins", "passage": "\"1973 Minnesota Vikings season\"\nin the NFC Divisional Playoff game at home and went on to upset the Dallas Cowboys 27–10 in Irving, Texas to win the NFC Championship, before losing 24–7 to the Miami Dolphins in Super Bowl VIII at Rice Stadium in Houston. Notes The day of this game was declared \"\"Karl Kassulke Day\"\" in honor of former Viking safety Karl Kassulke, who was left paralyzed in a motorcycle accident just before the beginning of training camp. 1973 Minnesota Vikings season The 1973 season was the Minnesota Vikings' 13th in the National Football League. With a 12–2 record, the Vikings regained the"} +{"qid": "test1686", "pid": "271630", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Pittsburgh Steelers", "passage": "\"Minnesota Vikings\"\nin franchise history, Super Bowl VIII, against the Miami Dolphins at Rice Stadium in Houston, Texas; however, the Dolphins prevailed, 24–7. The Vikings won the Central Division again in 1974 with a 10–4 record. In the playoffs they built on their cold weather reputation, defeating both the St. Louis Cardinals and the Los Angeles Rams in frozen Metropolitan Stadium. The Vikings played in their second straight Super Bowl, Super Bowl IX (3rd overall), losing to the Pittsburgh Steelers, 16–6, at Tulane Stadium in New Orleans on January 12, 1975. Led by Tarkenton and running back Chuck Foreman, the 1975 Vikings"} +{"qid": "test1686", "pid": "9852288", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Pittsburgh Steelers", "passage": "\"2007 Minnesota Vikings season\"\nPeterson was named 2007 Offensive Rookie of the Year for 2007. The Vikings began the 2007 offseason by losing their defensive coordinator, Mike Tomlin, who was hired to be the head coach of the Pittsburgh Steelers on January 21, 2007. Coach Brad Childress waited until after the Super Bowl to hire Leslie Frazier, who served as special assistant to the head coach/defensive backs coach under Tony Dungy at the Indianapolis Colts. Frazier became the Vikings' new defensive coordinator on February 8. Frazier played cornerback for the 1985 Chicago Bears, and had just won Super Bowl XLI over his former Bears"} +{"qid": "test1686", "pid": "9868174", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Pittsburgh Steelers", "passage": "\"2007 New England Patriots season\"\nregular season since the NFL expanded its schedule to sixteen games in 1978. Thus, they broke the record for victories in a single regular season that had been shared by the 1984 San Francisco 49ers, the 1985 Chicago Bears, the 1998 Minnesota Vikings, and the 2004 Pittsburgh Steelers, and later tied by the 2011 Green Bay Packers and 2015 Carolina Panthers, who each finished with a record of 15–1. The 1984 49ers and 1985 Bears would win Super Bowl XIX and Super Bowl XX, respectively, the 1998 Vikings and 2004 Steelers would lose their conference championship games, the 2011 Packers"} +{"qid": "test1686", "pid": "394575", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Pittsburgh Steelers", "passage": "\"Super Bowl XXVI\"\nSuper Bowl XXVI Super Bowl XXVI was an American football game between the National Football Conference (NFC) champion Washington Redskins and the American Football Conference (AFC) champion Buffalo Bills to decide the National Football League (NFL) champion for the 1991 season. The Redskins defeated the Bills by a score of 37–24, becoming the fourth team after the Pittsburgh Steelers, the Oakland Raiders and the San Francisco 49ers to win three Super Bowls. The Bills became the third team, after the Minnesota Vikings (Super Bowls VIII and IX) and the Denver Broncos (Super Bowls XXI and XXII) to lose back-to-back Super"} +{"qid": "test1686", "pid": "393932", "query": "who did the minnesota vikings lose to in the super bowl", "answer": "Miami Dolphins", "passage": "\"Super Bowl VIII\"\nto Dwight Stephenson, who like Langer is a member of the Hall of Fame. Source: \"\"Note: A seven-official system was not used until the 1978 season.\"\" Leo Miles was the first African-American to officiate in a Super Bowl. Super Bowl VIII Super Bowl VIII was an American football game between the National Football Conference (NFC) champion Minnesota Vikings and the American Football Conference (AFC) champion Miami Dolphins to decide the National Football League (NFL) champion for the 1973 season. The Dolphins defeated the Vikings by the score of 24–7 to win their second consecutive Super Bowl, the first team to"} +{"qid": "test1687", "pid": "8132817", "query": "who are considered to be the founding fathers", "answer": "Benjamin Franklin", "passage": "\"Samuel Johnson (American educator)\"\nHappiness\"\". Dr. Samuel Johnson, along with Dr. Benjamin Franklin and Dr. William Smith, may be considered one of the “Founding Grandfathers” who \"\"first created the idealistic moral philosophy of 'the pursuit of Happiness', and then taught it in American colleges to the generation of men who would become the Founding Fathers.\"\" Today, there is once again a great deal of intellectual activity on the philosophy of happiness. Johnson is honored together with Timothy Cutler and Thomas Bradbury Chandler with a feast day on the liturgical calendar of the Episcopal Church (USA) on August 17. Samuel Johnson (American educator) Samuel Johnson"} +{"qid": "test1688", "pid": "9640191", "query": "who sings in walk hard the dewey cox story", "answer": "John C. Reilly", "passage": "\"Walk Hard: The Dewey Cox Story\"\nWalk Hard: The Dewey Cox Story Walk Hard: The Dewey Cox Story is a 2007 American comedy film directed by Jake Kasdan, and written by Kasdan and co-producer Judd Apatow. It stars John C. Reilly, Jenna Fischer, Tim Meadows and Kristen Wiig. The plot echoes the storyline of 2005's Johnny Cash biopic \"\"Walk the Line\"\" and 2004's Ray Charles biopic \"\"Ray\"\". \"\"Walk Hard\"\" is a parody of the biopic genre as a whole. As \"\"Walk Hard\"\" heavily references the film \"\"Walk the Line\"\", the Dewey Cox persona is mostly based on Johnny Cash; but the character also includes elements of"} +{"qid": "test1688", "pid": "9640207", "query": "who sings in walk hard the dewey cox story", "answer": "John C. Reilly", "passage": "\"Walk Hard: The Dewey Cox Story\"\nas quality compositions. The soundtrack was nominated for both a Grammy and Golden Globe Award and was nominated and won the Sierra Award for Best Song in a Motion Picture from the Las Vegas Film Critics Society. John C. Reilly sang on all the tracks and played guitar on most of them. Walk Hard: The Dewey Cox Story Walk Hard: The Dewey Cox Story is a 2007 American comedy film directed by Jake Kasdan, and written by Kasdan and co-producer Judd Apatow. It stars John C. Reilly, Jenna Fischer, Tim Meadows and Kristen Wiig. The plot echoes the storyline of"} +{"qid": "test1688", "pid": "9640203", "query": "who sings in walk hard the dewey cox story", "answer": "John C. Reilly", "passage": "\"Walk Hard: The Dewey Cox Story\"\nfellow director Judd Apatow. They then began writing the film together. The tongue-in-cheek references in this fake biopic were drawn from various sources. Apatow and Kasdan noted that they watched various types of biopics for inspiration, including those of Jimi Hendrix and Marilyn Monroe. Despite the humorous approach, the film was crafted in the serious tone of films earmarked for an Oscar, adding to the irony. John C. Reilly, who actually sings and plays guitar, was chosen to play the title role. \"\"We took the clichés of movie biopics and just had fun with them,\"\" Reilly said. The \"\"deliberate miscasting\"\""} +{"qid": "test1688", "pid": "9640204", "query": "who sings in walk hard the dewey cox story", "answer": "John C. Reilly", "passage": "\"Walk Hard: The Dewey Cox Story\"\nof celebrity cameos, such as Elvis Presley and The Beatles, was intended to enhance the comedy. The movie's poster is a reference to the \"\"young lion\"\" photos of Jim Morrison. The film was praised by notable critics, including Roger Ebert (who gave the film 3 out of 4 stars), receiving 74% positive reviews at Rotten Tomatoes, classifying it as \"\"certified fresh\"\". The movie, however, was not commercially successful, taking $18 million at the US box office which was less than the film's budget. John C. Reilly received a Golden Globe nomination for his role. The film was released on DVD"} +{"qid": "test1688", "pid": "5968833", "query": "who sings in walk hard the dewey cox story", "answer": "John C. Reilly", "passage": "\"Billy Don't Be a Hero\"\nlyrics \"\"take a walk, Billy, don't be a hero.\"\" In \"\",\"\" the song is briefly heard during a montage in a disco cover by Dewey Cox (John C. Reilly) performing on rollerblades during \"\"The Dewey Cox Show.\"\" A much longer cut of this scene can be seen in the director's cut, and the whole performance was included in the extras for the 2-Disc editions. In \"\"The Powerpuff Girls\"\", the leader of the Gang Green Gang, Ace, says to another member, Billy, \"\"Billy, don't be a hero!\"\" when he decides to save the Powerpuff Girls from a subway train. In \"\"The"} +{"qid": "test169", "pid": "18682748", "query": "what material was used to build the roofs of houses in burzahom", "answer": "birch", "passage": "\"Burzahom archaeological site\"\nterrace which is part of the floodplain of the Jhelum river and has Karewa soil (clay) formation. The site has a commanding view of the Dal lake which is about away. In the Kashmiri language 'Burzahom' means \"\"birch\"\", a tree species (that generally grows in the elevation range of in the Himalayas), which is found in the excavated housing area in the form of roofing material, and thus confirming the existence of the tree even in the pre-historic Neolithic times. The first excavation at the Burzahom site was a limited exercise in 1936, carried out by the Yale–Cambridge Expedition headed"} +{"qid": "test1690", "pid": "12613624", "query": "who is the writer of a walk to remember", "answer": "American writer Nicholas Sparks", "passage": "\"A Walk to Remember (novel)\"\nA Walk to Remember (novel) A Walk to Remember is a novel by American writer Nicholas Sparks, released in October 1999. The novel, set in 1958–1959 in Beaufort, North Carolina, is a story of two teenagers who fall in love with each other despite the disparity of their personalities. \"\"A Walk to Remember\"\" is adapted in the film of the same name. Sparks wrote the manuscripts for \"\"A Walk to Remember\"\", his third novel, in the summer of 1999. He wrote it in North Carolina, which is the setting of the novel. Like his first published novel \"\"The Notebook\"\", the"} +{"qid": "test1690", "pid": "12613641", "query": "who is the writer of a walk to remember", "answer": "American writer Nicholas Sparks", "passage": "\"A Walk to Remember (novel)\"\nthe late 1990s. Sparks and the producer thought that because the film was suitable for teenagers \"\"because of the message it provided\"\", they had to make the adaptation more contemporary. A Walk to Remember (novel) A Walk to Remember is a novel by American writer Nicholas Sparks, released in October 1999. The novel, set in 1958–1959 in Beaufort, North Carolina, is a story of two teenagers who fall in love with each other despite the disparity of their personalities. \"\"A Walk to Remember\"\" is adapted in the film of the same name. Sparks wrote the manuscripts for \"\"A Walk to"} +{"qid": "test1690", "pid": "13205561", "query": "who is the writer of a walk to remember", "answer": "Nicholas Sparks", "passage": "\"The Last Song (film)\"\ncreate a star vehicle to help Cyrus break out of the pop persona she had developed through the franchise and to introduce Cyrus to older audiences. During her meeting with Reed, Cyrus expressed a desire to film a movie similar to \"\"A Walk to Remember\"\", a 2002 film based on a novel by Nicholas Sparks. \"\"A Walk to Remember\"\" helped Mandy Moore, then a teen pop star much like Cyrus, launch an acting career. Disney called Adam Shankman, director of \"\"A Walk to Remember\"\", who signed on to produce the potential Cyrus film along with his sister and Offspring Entertainment"} +{"qid": "test1690", "pid": "3491019", "query": "who is the writer of a walk to remember", "answer": "Nicholas Sparks", "passage": "\"A Walk to Remember\"\nSparks), the music video for Moore's single \"\"Cry\"\", and the film's theatrical trailer. A \"\"Family-Edited Version\"\" was later released on December 24, 2002. In the HBO television series \"\"Entourage\"\", the character of Vincent Chase was credited as having a small supporting role in the film. In the fictional \"\"Entourage\"\" universe, Chase has an on-set relationship with Moore during the filming of \"\"A Walk to Remember\"\". A Walk to Remember A Walk to Remember is a 2002 American coming-of-age romantic drama film directed by Adam Shankman and written by Karen Janszen, based on Nicholas Sparks' 1999 novel of the same name."} +{"qid": "test1690", "pid": "3491006", "query": "who is the writer of a walk to remember", "answer": "Nicholas Sparks", "passage": "\"A Walk to Remember\"\nthey get married in the church where her mother was married. Their very last summer together is spent as man and wife. The inspiration for \"\"A Walk to Remember\"\" was Nicholas Sparks' sister, Danielle Sparks Lewis, who died of cancer in 2000. In a speech he gave after her death in Berlin, the author admits that \"\"In many ways, Jamie Sullivan was my younger sister\"\". The plot was inspired by her life; Danielle met a man who wanted to marry her, \"\"even when he knew she was sick, even when he knew that she might not make it\"\". Both the"} +{"qid": "test1694", "pid": "9689462", "query": "who supported states rights during the civil war", "answer": "the Confederacy", "passage": "\"Texas Democratic Party\"\nparty's perspective. Texas Democrats began to discard Jacksonian-nationalism in favor of the states' rights agenda of the Deep South. A conflict emerged within the Party between pro-Union Democrats and secessionists. During the war, supporters of the Union disappeared from the political scene or moved north. Those who stayed politically active reluctantly supported the Confederacy. During Reconstruction, the rift between Unionist and Secessionist Democrats remained. For a short period immediately after the war, the Texas Democratic Party was a formidable political force, but they quickly split apart because their positions on freedmen varied greatly; some supported full civil rights, while others"} +{"qid": "test1695", "pid": "18801369", "query": "when was the last grand slam hit in the world series", "answer": "2016", "passage": "\"2016 World Series\"\nFormer Indians pitcher Dennis Martínez threw out the ceremonial first pitch before the game. The Cubs scored three runs in the first inning, all with two outs, on a Kris Bryant home run and a two-run double by Addison Russell after two singles off Josh Tomlin. In the third inning, the Cubs loaded the bases on a walk and two singles off Tomlin, who was relieved by Dan Otero. Following the pitching change, Russell hit a grand slam to extend the Cubs lead to 7–0. Russell's grand slam was the first in a World Series game since Paul Konerko of"} +{"qid": "test1696", "pid": "820496", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "Help!\non \"\"Beatles VI\"\". \"\"You Like Me Too Much\"\" and \"\"Tell Me What You See\"\" were rejected for use in the film by its director, Richard Lester, though they did appear on the album (and also on \"\"Beatles VI\"\"). Much later, in June 1965, the song \"\"Wait\"\" was recorded for the album. However, \"\"Wait\"\" (with some newly added overdubs) ended up on \"\"Rubber Soul\"\" when another song was needed to complete that album. The album cover shows the Beatles with their arms positioned to spell out a word in flag semaphore. According to cover photographer Robert Freeman, \"\"I had the idea"} +{"qid": "test1696", "pid": "5579705", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"Tell Me What You See\"\nTell Me What You See \"\"Tell Me What You See\"\" is a song by the English rock band the Beatles that first appeared in 1965 on their album \"\"Help!\"\" in the United Kingdom and on \"\"Beatles VI\"\" in the United States. As with all Beatles compositions by either of the two, the song is credited to Lennon–McCartney. Regarding the song's authorship, Paul McCartney said, \"\"I seem to remember it as mine. I would claim it as a 60-40 but it might have been totally me.\"\" John Lennon said, in his interviews with \"\"Playboy\"\" (1980) and \"\"Hit Parader\"\" (1972), that \"\"Tell"} +{"qid": "test1696", "pid": "5579709", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"Tell Me What You See\"\nyour day.\"\" The same inscription was parodied by Lennon in his 1965 book \"\"A Spaniard in the Works\"\". The song has been covered by other artists, including Teenage Fanclub and Jacob's Trouble. Tell Me What You See \"\"Tell Me What You See\"\" is a song by the English rock band the Beatles that first appeared in 1965 on their album \"\"Help!\"\" in the United Kingdom and on \"\"Beatles VI\"\" in the United States. As with all Beatles compositions by either of the two, the song is credited to Lennon–McCartney. Regarding the song's authorship, Paul McCartney said, \"\"I seem to remember"} +{"qid": "test1696", "pid": "3886085", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"Lennon–McCartney\"\nsix covers and eight Lennon–McCartney originals. The subsequent release, \"\"Help!\"\" (1965), had two covers and two Harrison compositions along with ten Lennon–McCartney tracks; it was the last Beatles album to feature a non-original composition until \"\"Let It Be\"\", which included an arrangement of the traditional Liverpool folk song \"\"Maggie Mae\"\". Among the songs in this post-\"\"Help!\"\" output, Harrison contributed between one and four songs per album, and Starr wrote two songs in total and received a joint credit with Lennon and McCartney for a third (\"\"What Goes On\"\"). In addition, \"\"Flying\"\" and \"\"Dig It\"\" were credited to all four Beatles."} +{"qid": "test1696", "pid": "4095196", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"Rock 'n' Roll Music (album)\"\nBerry, Little Richard, Carl Perkins and Larry Williams. \"\"Rock 'n' Roll Music\"\" was the first Beatles album to include \"\"I'm Down\"\", which had previously only been available as the B-side of the \"\"Help!\"\" single. Controversy surrounded the album's artwork, which featured an embossed colour portrait of The Beatles against a shiny silver background, with the album's title spelled out in what is presumed to be neon lights. Symbols of the 1950s were used on the inside of the album's gatefold sleeve, including a jukebox, an outdoor movie screen with a picture of Marilyn Monroe, a ice cream, a 1957 Chevrolet,"} +{"qid": "test1696", "pid": "10219725", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"Yesterday and Today\"\nNorth American LPs until 1967, Capitol Records selected songs for \"\"Yesterday and Today\"\" that the company had culled from the albums the band released in Britain and other territories overseen by EMI, together with tracks issued on what were non-album singles outside North America. The industry preference in the US for shorter LPs facilitated this policy, as did the fact that the Beatles' \"\"A Hard Day's Night\"\" and \"\"Help!\"\" albums became genuine soundtrack albums there, since the non-film songs had been replaced by orchestral selections from the respective film scores. In this way, \"\"Yesterday and Today\"\" was the Beatles' ninth"} +{"qid": "test1696", "pid": "3709966", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"From Me to You\"\napproximately 1.1 million copies in 1964. An instrumental arrangement, \"\"From Me to You Fantasy\"\" is used in the film, \"\"Help!\"\", arranged by Ken Thorne, and is track 3 of the original U.S. release of the soundtrack album. It appears during scenes of attempts to remove the ring from Ringo's finger while he sleeps in the Beatles' communal apartment. \"\"From Me to You\"\" made its first album appearance (overall) on the Canadian \"\"Twist and Shout\"\" LP in 1964. That same year, it made its US album debut on Vee-Jay's \"\"Jolly What! England's Greatest Recording Stars: The Beatles and Frank Ifield on"} +{"qid": "test1696", "pid": "17731575", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"The U.S. Albums\"\nThe Beatles\"\", \"\"Help!\"\" and \"\"The Early Beatles\"\") for the mono version, this set uses a dedicated (2009 master) mono mix. In cases where Capitol uses a \"\"Duophonic\"\" stereo mix, this set uses a dedicated stereo mix. For tracks released on the UK \"\"Help!\"\" and \"\"Rubber Soul\"\", the 1987 stereo remix (as remastered in 2009) was used. The U.S. Albums The U.S. Albums is a box set compilation comprising the remastered American albums released by the Beatles between 1964 and 1970. The box set was released on 21 January 2014 in the United States, marking the fiftieth anniversary of the Beatles'"} +{"qid": "test1696", "pid": "7921323", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"The Beatles in Italy\"\nThe Beatles in Italy The Beatles in Italy is a Beatles compilation album released in Italy in 1965 (Parlophon PMCQ 31506). Despite its title, \"\"The Beatles in Italy\"\" is not a live album, but, rather, a compilation of previously released studio recordings. The album was issued in Italy in 1965 to capitalise on the band's appearance in Italy during their 1965 European tour, and the release of the film, \"\"Help!\"\" Instead of consisting of songs that they sang in Italy, the album consists entirely of single and EP tracks that had not been collected into an LP. All original copies"} +{"qid": "test1696", "pid": "820505", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "Help!\nMuch\"\", \"\"Tell Me What You See\"\", and \"\"Dizzy Miss Lizzy\"\". \"\"I've Just Seen A Face\"\" and \"\"It's Only Love\"\" were placed on \"\"Rubber Soul\"\" with its follow-up album \"\"Yesterday and Today\"\" receiving the remaining two tracks: \"\"Yesterday\"\" and \"\"Act Naturally\"\". The American version of \"\"Help!\"\" reached the number one spot on the \"\"Billboard\"\" album charts for nine weeks starting on 11 September 1965. In the US, the album sold 1,314,457 copies by 31 December 1965 and 1,594,032 copies by the end of the decade. According to Mark Lewisohn and Alan W. Pollack. The Beatles Additional musicians The songs included in"} +{"qid": "test1696", "pid": "13750708", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"The Beatles (The Original Studio Recordings)\"\nalbum in the Beatles catalogue. The first four albums (\"\"Please Please Me\"\", \"\"With the Beatles\"\", \"\"A Hard Day's Night\"\" and \"\"Beatles for Sale\"\") made their CD debut in stereo, though most songs from those albums have previously appeared on CD in stereo on various compilations. Both \"\"Help!\"\" and \"\"Rubber Soul\"\" use the remixes prepared by George Martin for the original 1987 CD releases (the original 1965 stereo mixes were released on \"\"The Beatles in Mono\"\"). \"\"Magical Mystery Tour\"\" is presented in the sequence and artwork of its original North American Capitol Records album release, as opposed to the UK six-song"} +{"qid": "test1696", "pid": "820494", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "Help!\n\"\"Help!\"\" album, on \"\"Yesterday and Today\"\". \"\"Bad Boy\"\" and \"\"Dizzy Miss Lizzy\"\" (both written by Larry Williams and recorded on 10 May 1965, Williams' birthday) were both aimed at the American market and originally not intended to appear on \"\"Help!\"\", but \"\"Dizzy Miss Lizzy\"\" ultimately did. Both songs appeared on \"\"Beatles VI\"\", released in the US in June 1965. \"\"Bad Boy\"\" was not released in the UK until \"\"A Collection of Beatles Oldies\"\", and was that album's only cover song. A few songs that were recorded and intended for the film were not used because of the Beatles' suggestions. Lennon"} +{"qid": "test1696", "pid": "5566412", "query": "what album is help by the beatles on", "answer": "Help!", "passage": "\"Help! (song)\"\nSullivan Show\"\", broadcast the following month; the show is available on the DVD \"\"The 4 Complete Ed Sullivan Shows Starring The Beatles\"\". \"\"Help!\"\" was included in the set list for The Beatles' 1965 US tour. The 15 August performance at Shea Stadium was seen in the 1966 documentary \"\"The Beatles at Shea Stadium\"\", although the audio for the song was re-recorded prior to release. The group's 29 August performance at the Hollywood Bowl was chosen for the 1977 album \"\"The Beatles at the Hollywood Bowl\"\". The final live concert performances of \"\"Help!\"\" were heard within The Beatles' 1965 UK tour"} +{"qid": "test1697", "pid": "17016160", "query": "in the song i drive your truck who is he talking about", "answer": "his brother", "passage": "\"I Drive Your Truck\"\nI Drive Your Truck \"\"I Drive Your Truck\"\" is a song written by Jessi Alexander, Connie Harrington, and Jimmy Yeary and recorded by American country music artist Lee Brice. It was released in December 2012 as the third single from his album \"\"Hard 2 Love\"\". The song is about the narrator driving a truck owned by his brother, who died in action in the United States Army. Co-writer Connie Harrington was inspired to write it after hearing an interview on \"\"Here and Now\"\" with a father, Paul Monti, whose son, Medal of Honor recipient Jared, was killed in Afghanistan while"} +{"qid": "test1697", "pid": "17016163", "query": "in the song i drive your truck who is he talking about", "answer": "his brother", "passage": "\"I Drive Your Truck\"\nhas sold 870,000 copies in the US as of April 2014. I Drive Your Truck \"\"I Drive Your Truck\"\" is a song written by Jessi Alexander, Connie Harrington, and Jimmy Yeary and recorded by American country music artist Lee Brice. It was released in December 2012 as the third single from his album \"\"Hard 2 Love\"\". The song is about the narrator driving a truck owned by his brother, who died in action in the United States Army. Co-writer Connie Harrington was inspired to write it after hearing an interview on \"\"Here and Now\"\" with a father, Paul Monti, whose"} +{"qid": "test1702", "pid": "6289951", "query": "who played g baby in the movie hardball", "answer": "DeWayne Warren", "passage": "\"Hardball (film)\"\n(Julian Griffith), a sweet, overweight, asthmatic player; Jamal (Michael B. Jordan), Andre’s best friend and the oldest on the team; Miles Penfield II (A. Delon Ellis, Jr.), the brilliant pitcher who listens to Notorious BIG’s ‘Big Poppa’ to pitch well; and Jarius \"\"G-Baby\"\" Evans (DeWayne Warren), Kofi’s much Younger brother who is too young to play so he becomes Conor’s assistant. The kids tell Conor it is because their teacher, Elizabeth \"\"Sister\"\" Wilkes (Diane Lane), is making several boys finish a book report. Conor visits the teacher, but his life is threatened repeatedly by his bookies for not paying his"} +{"qid": "test1703", "pid": "740966", "query": "who played john coffey in the movie the green mile", "answer": "Michael Clarke Duncan", "passage": "\"The Green Mile (novel)\"\nfeature film of the same name. Released in 1999, the film was directed by Darabont and starred Tom Hanks as Paul Edgecombe and Michael Clarke Duncan as John Coffey. The setting is changed from 1932 to 1935 in order to include the film \"\"Top Hat\"\", which does not appear in the book. The Green Mile (novel) The Green Mile is a 1996 serial novel by American writer Stephen King. It tells the story of death row supervisor Paul Edgecombe's encounter with John Coffey, an unusual inmate who displays inexplicable healing and empathetic abilities. The serial novel was originally released in"} +{"qid": "test1703", "pid": "5587019", "query": "who played john coffey in the movie the green mile", "answer": "Michael Clarke Duncan", "passage": "\"The Frying Game\"\nchair, Homer meets a man resembling Michael Clarke Duncan's character John Coffey in \"\"The Green Mile\"\". While recording lines for the episode, the staff were told that Duncan was visiting the Fox studios. Having not recorded the lines for the character yet, the staff asked Duncan if he wanted to voice the character, but he declined. The music that plays during the scene is also from \"\"The Green Mile\"\". The idea that Homer's execution was in fact a reality show on Fox was conceived by former staff writer George Meyer. According to fellow writer Matt Selman, the writing staff liked"} +{"qid": "test1703", "pid": "3678082", "query": "who played john coffey in the movie the green mile", "answer": "Michael Clarke Duncan", "passage": "\"The Green Mile (film)\"\nThe Green Mile (film) The Green Mile is a 1999 American fantasy crime drama film written and directed by Frank Darabont and adapted from Stephen King’s 1996 novel of the same name. The film stars Tom Hanks as Paul Edgecomb and Michael Clarke Duncan as John Coffey, with supporting roles by David Morse, Bonnie Hunt, and James Cromwell. The film also features Dabbs Greer in his final film, as the older Paul Edgecomb. The film, told in a flashback format, tells the story of Paul's life as a death row corrections officer during the U.S. Great Depression, and the supernatural"} +{"qid": "test1703", "pid": "3678095", "query": "who played john coffey in the movie the green mile", "answer": "Michael Clarke Duncan", "passage": "\"The Green Mile (film)\"\nAwards 2000 Motion Picture Sound Editors (Golden Reel Awards) 2000 People's Choice Awards 2001 Science Fiction and Fantasy Writers of America (Nebula Award) 2000 Screen Actors Guild Awards 4th Golden Satellite Awards The Green Mile (film) The Green Mile is a 1999 American fantasy crime drama film written and directed by Frank Darabont and adapted from Stephen King’s 1996 novel of the same name. The film stars Tom Hanks as Paul Edgecomb and Michael Clarke Duncan as John Coffey, with supporting roles by David Morse, Bonnie Hunt, and James Cromwell. The film also features Dabbs Greer in his final film,"} +{"qid": "test1703", "pid": "12383058", "query": "who played john coffey in the movie the green mile", "answer": "Michael Clarke Duncan", "passage": "\"Michael Clarke Duncan\"\n1997, Duncan quit the personal-protection business. After having begun his career with several bit parts playing bouncers in films such as \"\"Bulworth\"\" and \"\"A Night at the Roxbury\"\", Duncan first came to prominence when he was cast as Bear in the blockbuster Michael Bay action film \"\"Armageddon\"\" (1998). During the production of the film, Duncan struck up a friendship with castmate Bruce Willis and it was Willis' influence that helped him to get his breakout role as gentle giant John Coffey in the Frank Darabont film \"\"The Green Mile\"\" (1999). Starring alongside Tom Hanks, Duncan's performance netted him an Academy"} +{"qid": "test1703", "pid": "12383055", "query": "who played john coffey in the movie the green mile", "answer": "Michael Clarke Duncan", "passage": "\"Michael Clarke Duncan\"\nMichael Clarke Duncan Michael Clarke Duncan (December 10, 1957September 3, 2012) was an American actor, best known for his breakout role as John Coffey in \"\"The Green Mile\"\" (1999), for which he was nominated for the Academy Award for Best Supporting Actor and various similar honors. He also appeared in motion pictures such as \"\"Armageddon\"\" (1998), \"\"The Whole Nine Yards\"\" (2000), \"\"The Scorpion King\"\" (2002), \"\"Daredevil\"\" (2003) and \"\"\"\" (2006). His voice can be heard in films such as \"\"Brother Bear\"\" (2003), \"\"Kung Fu Panda\"\" (2008) and \"\"Green Lantern\"\" (2011). Duncan was born in Chicago, Illinois, and raised in a"} +{"qid": "test1704", "pid": "9769293", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "\"Joseph Heller\"\nHappened\"\", was finally published in 1974. Critics were enthusiastic about the book, and both its hardcover and paperback editions reached number one on the \"\"New York Times\"\" bestseller list. Heller wrote another five novels, each of which took him several years to complete. One of them, \"\"Closing Time,\"\" revisited many of the characters from \"\"Catch-22\"\" as they adjusted to post-war New York. All of the novels sold respectably well, but could not duplicate the success of his first novel. Told by an interviewer that he had never produced anything else as good as \"\"Catch-22\"\", Heller famously responded, \"\"Who has?\"\" Heller"} +{"qid": "test1704", "pid": "20533644", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "\"Catch-22 (miniseries)\"\nCatch-22 (miniseries) Catch-22 is an upcoming American-British-Italian drama miniseries based on the book of the same name written by Joseph Heller that is set to premiere on Hulu in the United States, Channel 4 in the United Kingdom, and Sky Italia in Italy. The series, a co-production between the three networks, stars Christopher Abbott, Kyle Chandler, Hugh Laurie, and George Clooney, who is also set to executive produce alongside Grant Heslov, Luke Davies, David Michôd, Richard Brown, and Steve Golin. \"\"Catch-22\"\" is described by Hulu as \"\"the story of the incomparable, artful dodger, Yossarian, a US Air Force bombardier in"} +{"qid": "test1704", "pid": "3083695", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller.", "passage": "\"Orr (Catch-22)\"\nItaly, causing him to undergo a revelation as to Orr's motives about his actions and re-energizes him to keep on \"\"fighting the system\"\". It is only then that he realises that Orr's requests that Yossarian should fly with him was actually a scheme for them both to escape to Sweden. In Mike Nichols' 1970 film adaptation of the novel, Orr was played by Bob Balaban. Orr (Catch-22) Orr is a fictional character in the classic novel \"\"Catch-22\"\" by Joseph Heller. Orr is a World War II bomber pilot who shares a tent with his good friend, the protagonist of the"} +{"qid": "test1704", "pid": "9769299", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "\"Joseph Heller\"\nKurt Vonnegut said, \"\"Oh, God, how terrible. This is a calamity for American literature.\"\" In April 1998, Lewis Pollock wrote to \"\"The Sunday Times\"\" for clarification as to \"\"the amazing similarity of characters, personality traits, eccentricities, physical descriptions, personnel injuries and incidents\"\" in \"\"Catch-22\"\" and a novel published in England in 1951. The book that spawned the request was written by Louis Falstein and titled \"\"The Sky is a Lonely Place\"\" in Britain and \"\"Face of a Hero\"\" in the United States. Falstein's novel was available two years before Heller wrote the first chapter of \"\"Catch-22\"\" (1953). \"\"The Times\"\" stated:"} +{"qid": "test1704", "pid": "4089649", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "\"Catch-22 (logic)\"\nCatch-22 (logic) A catch-22 is a paradoxical situation from which an individual cannot escape because of contradictory rules. The term was coined by Joseph Heller, who used it in his 1961 novel \"\"Catch-22\"\". An example is: Catch-22s often result from rules, regulations, or procedures that an individual is subject to, but has no control over, because to fight the rule is to accept it. Another example is a situation in which someone is in need of something that can only be had by not being in need of it (\"\"e.g\"\", a bank will never issue someone a loan if they"} +{"qid": "test1704", "pid": "11836935", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "\"B-25 Mitchell aircraft in Catch-22\"\nB-25 Mitchell aircraft in Catch-22 When \"\"Catch-22\"\" began preliminary production, Paramount made a decision to hire the Tallmantz Aviation organization to obtain sufficient North American B-25 Mitchell (B-25) bomber aircraft to recreate a Mediterranean wartime base as depicted in the Joseph Heller novel of the same name. Tallmantz president, Frank G. Tallman found the war-surplus aircraft. He also gathered aircrew to fly the aircraft and ground support crew to maintain the fleet. \"\"Catch-22\"\"'s budget could accommodate 17 flyable B-25s, and an additional non-flyable hulk was acquired in Mexico, made barely ferry-able and flown with landing gear down to the Guaymas,"} +{"qid": "test1704", "pid": "4089650", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "\"Catch-22 (logic)\"\n\"\"need\"\" the money). One connotation of the term is that the creators of the \"\"catch-22\"\" situation have created arbitrary rules in order to justify and conceal their own abuse of power. Joseph Heller coined the term in his 1961 novel \"\"Catch-22\"\", which describes absurd bureaucratic constraints on soldiers in World War II. The term is introduced by the character Doc Daneeka, an army psychiatrist who invokes \"\"Catch-22\"\" to explain why any pilot requesting mental evaluation for insanity—hoping to be found not sane enough to fly and thereby escape dangerous missions—demonstrates his own sanity in creating the request and thus cannot"} +{"qid": "test1704", "pid": "339886", "query": "who wrote catch 22 (both names)", "answer": "Joseph Heller", "passage": "Q.E.D.\nadopted two forward slashes (//) or four forward slashes (////). In other cases, authors have elected to segregate proofs typographically by displaying them as indented blocks. In Joseph Heller's book \"\"Catch-22\"\", the Chaplain, having been told to examine a forged letter allegedly signed by him (which he knew he didn't sign), verified that his \"\"name\"\" was in fact there. His investigator replied, \"\"Then you wrote it. Q.E.D.\"\" The chaplain said he didn't write it and that it wasn't his handwriting, to which the investigator replied, \"\"Then you signed your name in somebody else's handwriting again.\"\" In the 1978 science-fiction radio"} +{"qid": "test1705", "pid": "19554805", "query": "where was the world chess tournament 2017 held", "answer": "Tbilisi, Georgia", "passage": "\"Chess World Cup 2017\"\nChess World Cup 2017 The Chess World Cup 2017 was a 128-player single-elimination chess tournament, held in Tbilisi, Georgia, from 2 to 27 September 2017. It was won by Armenian grandmaster Levon Aronian. This was the second time he had won the Chess World Cup, 12 years after his first win in 2005. The top two finishers in the tournament, Aronian and Ding Liren, qualified for the Candidates Tournament 2018 for the World Chess Championship 2018. At the 85th FIDE Congress held during the 41st Chess Olympiad, FIDE received bids to host the World Cup 2017 and 2018 Olympiad from"} +{"qid": "test1705", "pid": "19554811", "query": "where was the world chess tournament 2017 held", "answer": "Tbilisi, Georgia", "passage": "\"Chess World Cup 2017\"\nforfeiting the game. He also checked out of his hotel and booked a flight for Dallas, where he is studying for a master's degree in Computer Science technology at the University of Texas. The Chess Federation of Canada filed a formal complaint about the incident. FIDE issued a report on the incident on October 1. Chess World Cup 2017 The Chess World Cup 2017 was a 128-player single-elimination chess tournament, held in Tbilisi, Georgia, from 2 to 27 September 2017. It was won by Armenian grandmaster Levon Aronian. This was the second time he had won the Chess World Cup,"} +{"qid": "test1706", "pid": "1774452", "query": "who votes to elect a rajya sabha memmber", "answer": "state legislatures", "passage": "\"Rajya Sabha\"\nfor a member of Rajya Sabha are same as for a member of Lok Sabha. Rajya Sabha members are elected by state legislatures rather than directly through the electorate by single transferable vote method. From 18 July 2018, Rajya Sabha MPs can speak in 22 Indian languages in House as the Upper House has facility for simultaneous interpretation in all the 22 official languages of India. Article 84 of the Constitution lays down the qualifications for membership of Parliament. A member of the Rajya Sabha must: In addition, twelve members are nominated by the President of India having special knowledge"} +{"qid": "test1707", "pid": "20298334", "query": "when does season 8 of hawaii five o premiere", "answer": "September 29, 2017", "passage": "\"Hawaii Five-0 (2010 TV series, season 8)\"\nHawaii Five-0 (2010 TV series, season 8) The eighth season of the CBS police procedural drama series \"\"Hawaii Five-0\"\" premiered on September 29, 2017 for the 2017–18 television season. CBS renewed the series for a 23 episode eighth season on March 23, 2017. However, on November 6, 2017 CBS ordered an additional episode for the season and did the same again on February 8, 2018 bringing the count to 25 episodes. The season concluded on May 18, 2018. The eighth season ranked #18 for the 2017-18 television season and had an average of 11 million viewers. The series was also"} +{"qid": "test1707", "pid": "20298341", "query": "when does season 8 of hawaii five o premiere", "answer": "September 29, 2017", "passage": "\"Hawaii Five-0 (2010 TV series, season 8)\"\nout of 47 reviews and an average rating of 3.4 out of 5 for the season. Meanwhile, Metacritic has an average of 4.5/5 based on 6 reviews. Hawaii Five-0 (2010 TV series, season 8) The eighth season of the CBS police procedural drama series \"\"Hawaii Five-0\"\" premiered on September 29, 2017 for the 2017–18 television season. CBS renewed the series for a 23 episode eighth season on March 23, 2017. However, on November 6, 2017 CBS ordered an additional episode for the season and did the same again on February 8, 2018 bringing the count to 25 episodes. The season"} +{"qid": "test171", "pid": "5886196", "query": "in what part of the digestive tube do you expect the initial digestion of starch", "answer": "the mouth", "passage": "\"Extracellular digestion\"\ninitial components of the gastrointestinal tract are the mouth and the pharynx, which is the common passage of the oral and nasal cavities. The pharynx leads to the esophagus, a muscular tube that delivers food to the stomach, where some preliminary digestion occurs; here, the digestion is extracellular. From the stomach, food passes to the small intestine, where a battery of digestive enzymes continue the digestive process. The products of digestion are absorbed across the wall of the intestine into the bloodstream. What remains is emptied into the large intestine, where some of the remaining water and minerals are absorbed;"} +{"qid": "test171", "pid": "17916241", "query": "in what part of the digestive tube do you expect the initial digestion of starch", "answer": "the mouth", "passage": "\"Human digestive system\"\nmoistens and softens food, and along with the chewing action of the teeth, transforms the food into a smooth bolus. The bolus is further helped by the lubrication provided by the saliva in its passage from the mouth into the esophagus. Also of importance is the presence in saliva of the digestive enzymes amylase and lipase. Amylase starts to work on the starch in carbohydrates, breaking it down into the simple sugars of maltose and dextrose that can be further broken down in the small intestine. Saliva in the mouth can account for 30% of this initial starch digestion. Lipase"} +{"qid": "test171", "pid": "1430916", "query": "in what part of the digestive tube do you expect the initial digestion of starch", "answer": "the mouth", "passage": "Digestion\nsmall molecules the body can use. In the human digestive system, food enters the mouth and mechanical digestion of the food starts by the action of mastication (chewing), a form of mechanical digestion, and the wetting contact of saliva. Saliva, a liquid secreted by the salivary glands, contains salivary amylase, an enzyme which starts the digestion of starch in the food; the saliva also contains mucus, which lubricates the food, and hydrogen carbonate, which provides the ideal conditions of pH (alkaline) for amylase to work. After undergoing mastication and starch digestion, the food will be in the form of a"} +{"qid": "test171", "pid": "1430940", "query": "in what part of the digestive tube do you expect the initial digestion of starch", "answer": "the mouth", "passage": "Digestion\ncephalic phase in which saliva is produced in the mouth and digestive enzymes are produced in the stomach. Mechanical and chemical digestion begin in the mouth where food is chewed, and mixed with saliva to begin enzymatic processing of starches. The stomach continues to break food down mechanically and chemically through churning and mixing with both acids and enzymes. Absorption occurs in the stomach and gastrointestinal tract, and the process finishes with defecation. The human gastrointestinal tract is around 9 meters long. Food digestion physiology varies between individuals and upon other factors such as the characteristics of the food and"} +{"qid": "test1711", "pid": "9222536", "query": "when did the book thief movie come out", "answer": "2013", "passage": "\"The Book Thief\"\nIt was directed by Brian Percival. Michael Petroni wrote the script. Geoffrey Rush and Emily Watson portrayed the Hubermanns, Ben Schnetzer was Max Vandenburg, Nico Liersch was Rudy Steiner, and Sophie Nélisse was Liesel Meminger. John Williams wrote the music soundtrack. Much of the movie was filmed in Görlitz, Germany. The Book Thief The Book Thief is a 2005 historical novel by Australian author Markus Zusak and is his most popular work. Published in 2005, \"\"The Book Thief\"\" became an international bestseller and was translated into several languages. It was adapted into a 2013 feature film of the same name."} +{"qid": "test1711", "pid": "17156745", "query": "when did the book thief movie come out", "answer": "2013", "passage": "\"Gintama: The Movie: The Final Chapter: Be Forever Yorozuya\"\nGintama: The Movie: The Final Chapter: Be Forever Yorozuya \"\"The Final Chapter\"\" was first announced August 2012 although major details were not released until early 2013. Although the film has been marketed as \"\"Final Chapter\"\" Sorachi and Fujita did not confirm it was the last anime production from \"\"Gin Tama\"\"; the former wrote the story with the concept of the series' ending. Two themes were provided by the bands SPYAIR and Tommy heavenly6, with latter's song having already been used in the television series. While working in a cinema, Gintoki comes upon a \"\"movie thief\"\" (a figure in Japanese culture"} +{"qid": "test1712", "pid": "3200081", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"Super Bowl XXXIX\"\nSeahawks, 28–24, ten years later and Super Bowl LI against the Atlanta Falcons, 34-28, two years later. The latest Super Bowl win for the Patriots makes it ten titles among the four Boston teams (5 by the Patriots, 3 by the Red Sox, and one each by the Celtics and Bruins) since 2002. With the Eagles’ loss, the city of Philadelphia’s sports championship drought continued (no Philly-based pro sports team since the 1983 Sixers won the NBA title) until the Phillies won the 2008 World Series. The Eagles did not return to the Super Bowl until 2017, also with a"} +{"qid": "test1712", "pid": "17025369", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"Lane Johnson\"\nFocus. He was ranked the top right tackle and received a $250,000 bonus for making the Pro Bowl. Johnson did not attend the Pro Bowl as the Eagles would play in Super Bowl LII. Johnson and Chris Long wore rubber masks of a German Shepherd (symbolic of the team's underdog status) after the 2017 Divisional playoff game versus the Atlanta Falcons, as the Falcons were considered favorites to win. Following the game, Philadelphia Eagles fans bought so many dog masks from Amazon that they were sold out. In Super Bowl LII, the Eagles defeated the New England Patriots 41-33 to"} +{"qid": "test1712", "pid": "6224942", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"History of the Philadelphia Eagles\"\nfirst time since the 2004 season. The Eagles would face Tom Brady and the New England Patriots in a rematch of Super Bowl XXXIX at Super Bowl LII. The Eagles would end up winning the game 41-33 to give the Eagles their first Super Bowl Championship and their first championship since the 1960 season before the NFL-AFL merger. Nick Foles would be named Super Bowl MVP. The Eagles came back from a successful 2017 season hoping to become the first repeat Super Bowl victors since the New England Patriots during their 2003 and 2004 season. Before the season started many"} +{"qid": "test1712", "pid": "16409522", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"Brandon Brooks (American football)\"\nstarter and remained there throughout his Texans tenure. On March 9, 2016, Brooks signed a five-year, $40 million contract with the Philadelphia Eagles. He started 14 games at right guard in his first year in Philadelphia. On December 19, 2017, Brooks was named to his first Pro Bowl along with right tackle Lane Johnson after starting all 16 games at right guard. He could not play in the Pro Bowl because of his team advancing to the Super Bowl. Brooks would win his first Super Bowl when the Eagles defeated the New England Patriots in Super Bowl LII 41-33. Brandon"} +{"qid": "test1712", "pid": "19807841", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nas the rest of the game represented total domination from Nick Foles and the Eagles' offense, who racked up 456 total yards and 38 unanswered points. With a blowout win against one of the league's top defenses, the Eagles advanced to their third Super Bowl. The Philadelphia Eagles entered Super Bowl LII as a 5.5 point underdog to the defending champions; the New England Patriots. This was also their first appearance in 13 years, with their last Super Bowl berth happening in 2005 (Super Bowl XXXIX), which also happened to be against the New England Patriots. In the first quarter,"} +{"qid": "test1712", "pid": "19807797", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nwon 24–21. Backup quarterback Nick Foles was named Super Bowl MVP and became the first backup to receive this award since his opponent, Tom Brady, did in Super Bowl XXXVI. The Eagles defeated both Super Bowl teams from the previous NFL season (the New England Patriots and the Atlanta Falcons) in the playoffs. They also defeated both teams who had beaten them in their only two previous Super Bowl appearances. They defeated the Oakland Raiders in the regular season, who beat them in Super Bowl XV and the Patriots in the Super Bowl, who previously beat them in Super Bowl"} +{"qid": "test1712", "pid": "19807796", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test1712", "pid": "19807846", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nthe Patriots' last hopes. The Philadelphia Eagles defeated the Patriots by a score of 41–33. Nick Foles also was named Super Bowl MVP after the game. With this win, the Eagles finally won their first Super Bowl, and their first NFL title since 1960. A Super Bowl victory parade took place four days later on February 8. 2017 Philadelphia Eagles season The 2017 Philadelphia Eagles season was the franchise's 85th season in the National Football League, the 15th playing their home games at Lincoln Financial Field, and the second under head coach Doug Pederson. The Eagles improved their 7–9 record"} +{"qid": "test1712", "pid": "20468759", "query": "when did the eagles win the super bowl", "answer": "2017", "passage": "\"2018 Philadelphia Eagles season\"\n2018 Philadelphia Eagles season The National Football League 2018 Philadelphia Eagles season is the team's 86th season and their third under head coach Doug Pederson. The Eagles entered the season as the defending champions of Super Bowl LII, and opened the season with the NFL Kickoff Game on September 6, beating the Atlanta Falcons 18–12. A vast majority of their Super Bowl-winning squad from the 2017 season was retained, although some notable losses included tight end Trey Burton (who contributed to the Philly Special in the Super Bowl), defensive end Vinny Curry, and cornerback Patrick Robinson. Franchise quarterback Carson Wentz,"} +{"qid": "test1713", "pid": "387031", "query": "who is the biggest selling female group of all time", "answer": "Spice Girls", "passage": "\"Spice Girls\"\nthe biggest-selling single by an all-female group of all time. Riding a wave of publicity and hype, the group released their next singles in the UK and Europe; in October \"\"Say You'll Be There\"\" was released topping the charts at number one for two weeks. In December \"\"2 Become 1\"\" was released, becoming their first Christmas number-one and selling 462,000 copies in its first week, making it the fastest selling single of the year. The two tracks continued the group's remarkable sales, giving them three of the top five biggest selling songs of 1996 in the UK. In November 1996,"} +{"qid": "test1713", "pid": "387100", "query": "who is the biggest selling female group of all time", "answer": "Spice Girls", "passage": "\"Spice Girls\"\neleven, it is also the highest-ever debut by a British band in the US, beating the previous record held by The Beatles for \"\"I Want to Hold Your Hand\"\" and the joint highest entry for a debut act, tying with Alanis Morissette. \"\"Spice\"\" is the 18th biggest-selling album of all time in the UK with over 3 million copies sold, and topped the charts for 15 non-consecutive weeks, the most by a female group in the UK. It is also the biggest-selling album of all time by a girl group, with sales of over 28 million copies worldwide. \"\"Spiceworld\"\" shipped"} +{"qid": "test1713", "pid": "387035", "query": "who is the biggest selling female group of all time", "answer": "Spice Girls", "passage": "\"Spice Girls\"\nin the US, and became the biggest-selling album of 1997 in the US, peaking at number one, and was certified 7× Platinum by the RIAA for sales in excess of 7.4 million copies. The album is also included in the Top 100 Albums of All Time list of the Recording Industry Association of America (RIAA) based on US sales. In total, the album sold over 28 million copies worldwide becoming the biggest-selling album of all-time by an all-female group. Later that month, the Spice Girls won two Brit Awards for Best British Video, \"\"Say You'll Be There\"\" and Best British"} +{"qid": "test1713", "pid": "387032", "query": "who is the biggest selling female group of all time", "answer": "Spice Girls", "passage": "\"Spice Girls\"\nthe Spice Girls released their debut album \"\"Spice\"\" in Europe. The success was unprecedented and drew comparisons to Beatlemania, leading the press to dub it \"\"Spice mania\"\" and the group the \"\"Fab Five\"\". In seven weeks \"\"Spice\"\" had sold 1.8 million copies in Britain alone, making the Spice Girls the fastest selling British act since the Beatles. In total, the album sold over 3 million copies in Britain, the biggest-selling album of all time in the UK by a female group, certified 10× Platinum, and peaked at number one for fifteen non-consecutive weeks. In Europe the album became the biggest-selling"} +{"qid": "test1713", "pid": "387020", "query": "who is the biggest selling female group of all time", "answer": "Spice Girls", "passage": "\"Spice Girls\"\nhave sold 85 million records worldwide, making them the best-selling female group of all time, one of the best-selling pop groups of all time, and the biggest British pop success since The Beatles. Among the highest profile acts in 1990s British popular culture, \"\"Time\"\" called them \"\"arguably the most recognizable face\"\" of Cool Britannia, the mid-1990s celebration of youth culture in the UK. Measures of their success include international record sales, a 2007–2008 reunion tour, merchandising, iconic symbolism such as Halliwell's Union Jack dress representing \"\"girl power\"\", and a film, \"\"Spice World\"\". The group became one of the most successful"} +{"qid": "test1713", "pid": "387030", "query": "who is the biggest selling female group of all time", "answer": "Spice Girls", "passage": "\"Spice Girls\"\nout-and-out pop. He wrote: \"\"JUST WHEN BOYS with guitars threaten to rule pop life – Damon's all over \"\"Smash Hits\"\", Ash are big in \"\"Big!\"\" and Liam can't move for tabloid frenzy – an all-girl, in-yer-face pop group have arrived with enough sass to burst that rockist bubble.\"\" The song entered the charts at number three before moving up to number one the following week and staying there for seven weeks. The song proved to be a global hit, hitting number one in 37 countries and becoming not only the biggest selling debut single by an all-female group but also"} +{"qid": "test1714", "pid": "10219876", "query": "who sang from russia with love james bond", "answer": "Matt Monro", "passage": "\"From Russia with Love (soundtrack)\"\nFrom Russia with Love (soundtrack) From Russia with Love is the soundtrack for the second James Bond film of the same name. This is the first series film with John Barry as the primary soundtrack composer. John Barry, arranger of Monty Norman's \"\"James Bond Theme\"\" for \"\"Dr. No\"\", would be the dominant Bond series composer for most of its history and the inspiration for fellow series composer, David Arnold (who uses cues from this soundtrack in his own for \"\"Tomorrow Never Dies\"\"). The theme song was composed by Lionel Bart of Oliver! fame and sung by Matt Monro. Following the"} +{"qid": "test1715", "pid": "441493", "query": "where is urinary bladder located in human body", "answer": "on the pelvic floor", "passage": "\"Urinary bladder\"\nUrinary bladder The urinary bladder is a hollow muscular organ in humans and some other animals that collects and stores urine from the kidneys before disposal by urination. In the human the bladder is a hollow muscular, and distensible (or elastic) organ, that sits on the pelvic floor. Urine enters the bladder via the ureters and exits via the urethra. The typical human bladder will hold between 300 and (10.14 and ) before the urge to empty occurs, but can hold considerably more. In humans, the bladder is a hollow muscular organ situated at the base of the pelvis. Urine"} +{"qid": "test1717", "pid": "6693619", "query": "who sang gonna sit right down and write myself a letter", "answer": "Fats Waller", "passage": "\"I'm Gonna Sit Right Down and Write Myself a Letter\"\nI'm Gonna Sit Right Down and Write Myself a Letter \"\"I'm Gonna Sit Right Down and Write Myself a Letter\"\" is a 1935 popular song with music by Fred E. Ahlert and lyrics by Joe Young. It has been recorded many times, and has become a standard of the Great American Songbook. It was popularized by Fats Waller, who recorded it in 1935 at the height of his fame. It is one of several songs from the Harlem Renaissance featured in the Broadway musical \"\"Ain't Misbehavin'\"\". American Public Media's business-news program, Marketplace, uses a portion of Fats Waller's version to"} +{"qid": "test1717", "pid": "6012938", "query": "who sang gonna sit right down and write myself a letter", "answer": "Fats Waller", "passage": "\"Billy Williams (singer)\"\nBilly Williams (singer) Wilfred Williams (December 28, 1910 – October 17, 1972) was an African-American singer. He had a successful cover recording of Fats Waller's \"\"I'm Gonna Sit Right Down And Write Myself A Letter\"\" in 1957. The record sold over one million copies, and was awarded a gold disc. His trademark hook for his songs was to shout \"\"Oh, Yeah\"\" at the end of lyrics. A Methodist minister's son, Williams was born in Waco, Texas. His early youth was spent in Texas, before the family moved to Ohio. Growing up, he sang in choirs at churches where his father"} +{"qid": "test1717", "pid": "16150557", "query": "who sang gonna sit right down and write myself a letter", "answer": "Fats Waller", "passage": "\"Kisses on the Bottom\"\nSit Right Down and Write Myself a Letter\"\", originally a hit for Fats Waller in 1935. Said McCartney in the liner notes, \"\"I worked with Diana Krall, and great jazz musicians like John Clayton. This is an album very tender, very intimate. This is an album you listen to at home after work, with a glass of wine or a cup of tea.\"\" The disc was helmed by LiPuma who has previously worked with Miles Davis and Barbra Streisand, among others. The album is mostly standards, with two originals written in the same style (\"\"My Valentine\"\" and \"\"Only Our Hearts\"\")."} +{"qid": "test1717", "pid": "6012941", "query": "who sang gonna sit right down and write myself a letter", "answer": "Fats Waller", "passage": "\"Billy Williams (singer)\"\nhelp homeless men. Williams was married to the former Louis Traverse, and they had two children, Sharon and Leslie. In 1957, Mrs. Williams had charges of desertion and non-support against him dismissed after the two reached a financial support agreement. The case was heard in Bergen County, New Jersey. On October 17, 1972, Williams died in Chicago, Illinois, after having a heart attack. He was 61 years old. Billy Williams (singer) Wilfred Williams (December 28, 1910 – October 17, 1972) was an African-American singer. He had a successful cover recording of Fats Waller's \"\"I'm Gonna Sit Right Down And Write"} +{"qid": "test1718", "pid": "46425", "query": "how many rooms is there in buckingham palace", "answer": "775", "passage": "\"Buckingham Palace\"\nhigh and contains over of floorspace. The floor area is smaller than the Royal Palace of Madrid, the Papal Palace and Quirinal Palace in Rome, the Louvre in Paris, the Hofburg Palace in Vienna, and the Forbidden City. There are 775 rooms, including 188 staff bedrooms, 92 offices, 78 bathrooms, 52 principal bedrooms, and 19 state rooms. It also has a post office, cinema, swimming pool, doctor's surgery, and jeweller's workshop. The principal rooms are contained on the \"\"piano nobile\"\" behind the west-facing garden façade at the rear of the palace. The centre of this ornate suite of state rooms"} +{"qid": "test1718", "pid": "46412", "query": "how many rooms is there in buckingham palace", "answer": "775", "passage": "\"Buckingham Palace\"\nThe palace has 775 rooms, and the garden is the largest private garden in London. The state rooms, used for official and state entertaining, are open to the public each year for most of August and September and on some days in winter and spring. In the Middle Ages, the site of the future palace formed part of the Manor of Ebury (also called Eia). The marshy ground was watered by the river Tyburn, which still flows below the courtyard and south wing of the palace. Where the river was fordable (at Cow Ford), the village of Eye Cross grew."} +{"qid": "test172", "pid": "6892771", "query": "who was the french chef given credit for developing the classic kitchen​ brigade", "answer": "Georges Auguste Escoffier", "passage": "\"Brigade de cuisine\"\nis unnecessary. Note: Despite the use of \"\"chef\"\" in English as the title for a cook, the word actually means \"\"chief\"\" or \"\"head\"\" in French. Similarly, \"\"cuisine\"\" means \"\"kitchen\"\", but also refers to food or cooking generally, or a type of food or cooking. Brigade de cuisine Brigade de cuisine (, \"\"kitchen brigade\"\") is a system of hierarchy found in restaurants and hotels employing extensive staff, commonly referred to as \"\"kitchen staff\"\" in English-speaking countries. The concept was developed by Georges Auguste Escoffier (1846-1935). This structured team system delegates responsibilities to different individuals who specialize in certain tasks in the"} +{"qid": "test172", "pid": "4930223", "query": "who was the french chef given credit for developing the classic kitchen​ brigade", "answer": "Georges Auguste Escoffier", "passage": "Saucier\nSaucier A saucier () or sauté chef is a position in the classical brigade style kitchen. It can be translated into English as \"\"sauce cook\"\". In addition to preparing sauces, the saucier prepares stews, hot hors d'œuvres, and sautés food to order. Although it is often considered the highest position of the station cooks, the saucier is typically still tertiary to the chef and sous-chef. In Georges Auguste Escoffier's system of the classic kitchen brigade, outlined in his \"\"Guide Culinaire\"\", the saucier is \"\"responsible for all sautéed items and most sauces.\"\" The 1979 film \"\"Apocalypse Now\"\" character, \"\"Chef\"\" Hicks (played"} +{"qid": "test1721", "pid": "9948371", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Christianity in Indonesia\"\nChristianity in Indonesia Christianity is Indonesia's second-largest religion, after Islam. Indonesia also has the second-largest Christian population in Southeast Asia after the Philippines, the largest Protestant population in Southeast Asia, and the fourth-largest Christian in Asia after the Philippines, India and China. Indonesia's 24 million Christians constitute 10% of the country's population, with 7% Protestant (17 million) and 3% Catholic (7 million). Some provinces in Indonesia are majority Christian (Protestant or Catholic). Christianity, a minority religion in Indonesia, is not evenly spread throughout the archipelago. Indonesian provinces with a majority of the population self-identifying as Christian are Papua, West Papua,"} +{"qid": "test1721", "pid": "7589019", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Religion in Asia\"\nand normative example (called the Sunnah and composed of hadith) of Muhammad, considered by them to be the last prophet of God. South Asia and Southeast Asia are home of the most populous Muslim countries, with Indonesia, Pakistan, India, and Bangladesh having more than 100 million adherents each. According to U.S. government figures, in 2006 there were 20 million Muslims in China. In the Western Asia, the non-Arab countries of Iran and Turkey are the largest Muslim-majority countries. In South Asia, Pakistan and Bangladesh are the countries with the largest Muslim-majority. In Central Asia, Afghanistan and Uzbekistan are the countries"} +{"qid": "test1721", "pid": "4339803", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Buddhism by country\"\nBuddhism by country Buddhism is a religion practiced by an estimated 488 million in the world, 495 million, or 535 million people as of the 2010s, representing 9% to 10% of the world's total population. China is the country with the largest population of Buddhists, approximately 244 million or 18.2% of its total population. They are mostly followers of Chinese schools of \"\"Mahayana\"\", making this the largest body of Buddhist traditions. Mahayana, also practiced in broader East Asia, is followed by over half of the world's Buddhists. The second largest body of Buddhist schools is \"\"Theravada\"\", mostly followed in Southeast"} +{"qid": "test1721", "pid": "4339805", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Buddhism by country\"\nGeneral: Buddhism by country Buddhism is a religion practiced by an estimated 488 million in the world, 495 million, or 535 million people as of the 2010s, representing 9% to 10% of the world's total population. China is the country with the largest population of Buddhists, approximately 244 million or 18.2% of its total population. They are mostly followers of Chinese schools of \"\"Mahayana\"\", making this the largest body of Buddhist traditions. Mahayana, also practiced in broader East Asia, is followed by over half of the world's Buddhists. The second largest body of Buddhist schools is \"\"Theravada\"\", mostly followed in"} +{"qid": "test1721", "pid": "19142413", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Smart villages in Asia\"\nAsia. Geographical marking in the Western Asia consists of 19 countries/territorial states. 5 countries of Asia from this region hold strong financial stability and resources for social development. In this region three countries, According to population demography Turkey, Iraq and Yemen stand at 10th, 13th and 20th position respectively Covers largest part of Asia with a 17,098,242 km area in the Northern sub-region of Asia. Russia is the world's fourth largest electricity producer after the United States, China, and Japan. Russia exports electricity to countries e.g. Latvia, Lithuania, Poland etc. However, import and export reversal has also been reported due"} +{"qid": "test1721", "pid": "11686254", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Economy of East Asia\"\nworld's second largest economy in August 2010. Until 2015, China was the world's fastest-growing major economy, with growth rates averaging 10% over 30 years. Its rapid and sustained economic expansion has lifted hundred of millions of people out of poverty and has made the nation a major engine of economic growth globally. By the end of 2015, China's economy accounted for 51 percent of the total economy in East Asia and commanded 59 percent of East Asia's trade, making China an economic powerhouse for regional growth as well as making the country the largest trading partner of virtually every East"} +{"qid": "test1721", "pid": "18942894", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Islam by country\"\nthe Muslims in the countries of Southeast Asia constitute the world's third largest population of Muslims. In the countries of the Malay Archipelago Muslims are majorities in each country other than Singapore, the Philippines, and East Timor. About 15% of Muslims reside in Sub-Saharan Africa, and sizeable Muslim communities are also found in the Americas, the Caucasus, China, Europe, the Philippines and Russia. Western Europe hosts many Muslim immigrant communities where Islam is the second largest religion after Christianity, where it represents 6% of the total population or 24 million people. Converts and immigrant communities are found in almost every"} +{"qid": "test1721", "pid": "18080215", "query": "what is the second largest country in asia", "answer": "China", "passage": "\"Natural gas in Russia\"\nof oil, making the deal closer to what Russia had wanted than to what China had been asking for. The total value of the deal was estimated at US$400 billion. It will increase Russian exports to countries not part of the former Soviet Union by 25% and make China the country's 2nd largest customer, after Germany. The agreement was reached as Chinese and Russian leaders met to discuss greater cooperation in Asia without involvement of Western powers. It was seen as an important political and economic victory for Russian President Vladimir Putin. It allows Russia to diversify its natural business"} +{"qid": "test1721", "pid": "3513805", "query": "what is the second largest country in asia", "answer": "China", "passage": "Aviva\nAviva Aviva plc is a British multinational insurance company headquartered in London, United Kingdom. It has about 33 million customers across 16 countries. In the United Kingdom, Aviva is the largest general insurer and a leading life and pensions provider. In addition, Aviva has a focus on five markets in Europe and in Asia, the company is focused on the growth markets of China and South East Asia. Aviva is also the second largest general insurer in Canada. Aviva has a primary listing on the London Stock Exchange and is a constituent of the FTSE 100 Index. The name of"} +{"qid": "test1723", "pid": "8117936", "query": "who played ashley on the young and the restless", "answer": "Brenda Epperson", "passage": "\"Ashley Abbott\"\nLives\"\" as Kristen DiMera, a character she had portrayed there over 14 years prior. Davidson made a brief return to \"\"The Young and the Restless\"\" in March 2013 for the soap's 40th anniversary. After subsequent guest appearances, Davidson returned to \"\"The Young and the Restless\"\" on September 3, 2014, as a series regular. In June 2018, Davidson quit the role, and would exit once again. Eileen Davidson originated the role of Ashley Abbott in June 1982, until her first exit on December 2, 1988. The role was immediately recast with Brenda Epperson, who portrayed Ashley for seven years from December"} +{"qid": "test1723", "pid": "3237196", "query": "who played ashley on the young and the restless", "answer": "Eileen Davidson", "passage": "\"Eileen Davidson\"\nlater, Davidson signed a three-year contract with \"\"The Young and the Restless\"\"'s sister soap \"\"The Bold and the Beautiful\"\" to once again play her \"\"The Young and the Restless\"\" character Ashley Abbott at the request of \"\"The Bold and the Beautiful\"\" executive producer Bradley Bell. She first aired on March 9, 2007. Ken Corday called Davidson about a week before she was fired from \"\"The Young and the Restless\"\" to get permission to use a picture of her on \"\"Days of Our Lives\"\". The picture, which featured Davidson as Susan, was shown in December 2006. After she was fired from"} +{"qid": "test1723", "pid": "3237195", "query": "who played ashley on the young and the restless", "answer": "Eileen Davidson", "passage": "\"Eileen Davidson\"\nfrom \"\"The Young and the Restless\"\" due to lack of storyline. Her last airdate as Ashley was January 11, 2007. According to co-star Melody Thomas Scott, the firing was protested behind the scenes of \"\"The Young and the Restless\"\" and was seen as unfair. Scott said: \"\"That was so heartbreaking. We're still upset about that. That was a blow. Terrible. Eileen Davidson was such a part of the core of the show and such a brilliant actress; beautiful and always prepared. It was crazy. I'm not the only one who feels that way.\"\" In a surprise move a few months"} +{"qid": "test1723", "pid": "8117933", "query": "who played ashley on the young and the restless", "answer": "Brenda Epperson", "passage": "\"Ashley Abbott\"\nAshley Abbott Ashley Abbott is a fictional character from \"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\", two American soap operas on the CBS network. She has been most notably portrayed by Eileen Davidson, who originated the role in June 1982 before departing in 1988. Brenda Epperson portrayed Ashley from 1988 to 1995, before Shari Shattuck portrayed the role for the next three years, until Davidson's return in 1999. Davidson was nominated in 2003 for Daytime Emmy Award for Outstanding Lead Actress in a Drama Series. The character is the daughter of Dina Mergeron and Brent Davis,"} +{"qid": "test1723", "pid": "3271741", "query": "who played ashley on the young and the restless", "answer": "Eileen Davidson", "passage": "\"Katherine Kelly Lang\"\nincluded only the four core characters: Brooke, Ridge, Stephanie and Eric. As of February 2015, Lang is one of only two actors to be on \"\"The Bold and the Beautiful\"\" throughout the series. The other is John McCook, who portrays Eric Forrester. She appeared as Brooke on \"\"The Young and the Restless\"\" in 1999, interacting with Eric Braeden (Victor), Peter Bergman (Jack) and Eileen Davidson (Ashley). Lang previously appeared on \"\"The Young and the Restless\"\" as Gretchen in 1981, and returned to the soap, for a brief stint, in July 2007. Her work as Brooke has been recognized with seven"} +{"qid": "test1723", "pid": "8117969", "query": "who played ashley on the young and the restless", "answer": "Brenda Epperson", "passage": "\"Ashley Abbott\"\nUpon Davidson's firing in 2012, Giddens wrote: \"\"I am sincerely hoping the brass at \"\"Y&R\"\" can't possibly be this stupid, but if they are, Gary Tomlin better blow up Davidson's phone STAT about a \"\"Days of Our Lives\"\" return!\"\" Ashley Abbott Ashley Abbott is a fictional character from \"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\", two American soap operas on the CBS network. She has been most notably portrayed by Eileen Davidson, who originated the role in June 1982 before departing in 1988. Brenda Epperson portrayed Ashley from 1988 to 1995, before Shari Shattuck portrayed the"} +{"qid": "test1723", "pid": "8117966", "query": "who played ashley on the young and the restless", "answer": "Eileen Davidson", "passage": "\"Ashley Abbott\"\nthink I am done with this genre, something like The Young and the Restless heiress Ashley Abbott (Eileen Davidson) announcing that she, not Lil' Billy (Billy Miller), not Cruella de Bardwell (Judith Chapman) or Gary Ewing (Ted Shackelford) and no, not even Smilin' Jack (Peter Bergman) will be running Jabot Cosmetics, happens.\"\" In 2009, Jillian Bowe (also of Zap2it) wondered if Ashley was \"\"insane in the membrane\"\" due to her hearing a crying child around the Newman ranch, writing: \"\"Is \"\"The Beauty\"\" starting to crack up? Certainly looks that when some freaky things take place on \"\"The Young and the"} +{"qid": "test1723", "pid": "8164794", "query": "who played ashley on the young and the restless", "answer": "Eileen Davidson", "passage": "\"Devon Hamilton\"\nhave to use sign language that often. The Young and the Restless worked in conjunction with \"\"Advanced Bionics\"\" for the storyline. The storyline was revisited in early 2012 when the character's hearing is fully restored due to another surgery. James revealed that Devon's most recent surgery to restore his hearing was actually inspired by real life advances in cochlear implants. His co-star, Eileen Davidson, whom at the time played his stepmother, Ashley Abbott, brought the information to James's attention, who presented the information to Maria Arena Bell. The advances were eventually incorporated into the show. Of the decision to incorporate"} +{"qid": "test1723", "pid": "9169255", "query": "who played ashley on the young and the restless", "answer": "Brenda Epperson", "passage": "\"Susan Banks\"\nwho resembled Davidson. Actress, Brenda Epperson was considered for the role, an actress Davidson suggested to replace her in her role as Ashley Abbott on \"\"The Young and the Restless\"\", due to their uncanny resemblance. Instead of casting Epperson, or any actress for that matter, Davidson suggested that she play both roles: Kristen and her alter. The show ultimately agreed. On rehearsing, Davidson related: “I had a tape recorder and I would read the scene and turn it off when the character I was supposed to be talked. I ran lines that way. The major way that I knew it"} +{"qid": "test1724", "pid": "11545614", "query": "who has scored the most points for wales v france", "answer": "Neil Jenkins", "passage": "\"1999 Five Nations Championship\"\nfinal match. England were heavy favourites to beat Wales and claim both the tournament title and Grand Slam. With England leading the match by six points as the game entered injury time, Wales centre Scott Gibbs evaded a number of tackles to score a try from approximately 20 metres. Neil Jenkins successfully converted to claim victory for Wales by a single point and hand the Championship to Scotland in one of the most memorable matches in the tournament's history. Scotland had staged their own remarkable upset the previous day, scoring five first-half tries to beat France in Paris for only"} +{"qid": "test1727", "pid": "13395990", "query": "who wrote the song balls to the wall", "answer": "Wolf Hoffmann", "passage": "\"Balls to the Wall (song)\"\nBalls to the Wall (song) \"\"Balls to the Wall\"\" is a song by German heavy metal band Accept. The song was released as the lead single from their 1983 fifth studio album of the same name. The anthemic title track is the album's best known song, and became Accept's signature song, for which a music video was shot that received American airplay on MTV. Asked about the meaning of the song, guitarist Wolf Hoffmann replied: Filmed in January 1984 in London, the song's music video consists of clips of the band performing the song onstage intercut with scenes of a"} +{"qid": "test1727", "pid": "8493410", "query": "who wrote the song balls to the wall", "answer": "Deaffy", "passage": "\"Balls to the Wall\"\na band who has as individuals -so little to do with controversy and absolutely nothing in particular with anything but being VERY straight\"\" The front cover is strikingly similar to photographer Robert Mapplethorpe's work \"\"Patrice, N.Y.C.\"\" from 1977, although Mapplethorpe isn't mentioned among the credits (\"\"Cover idea: Deaffy with special thanks to A. Janowiak\"\"). This album was the only Accept album which guitarist Herman Frank played on until 2010's \"\"Blood of the Nations\"\" (though he was given credit on 1982's \"\"Restless and Wild\"\"). Professional wrestler Chris Jericho's band, Fozzy, did their own cover of the song \"\"Balls to the Wall\"\"."} +{"qid": "test1727", "pid": "13395991", "query": "who wrote the song balls to the wall", "answer": "Udo Dirkschneider", "passage": "\"Balls to the Wall (song)\"\nwrecking ball taking down a clock tower and scenes with fans of the band headbanging against the wall of the tower. Later during the buildup to the final chorus, the fans march through the rubble of the tower, and presumably head towards the stage where the band is performing. At the end of the video, singer Udo Dirkschneider rides the wrecking ball into the tower and takes out the front doors of the building it stands upon. When he discussed the scene with \"\"songfacts.com\"\", Dirkschneider explained he was apprehensive about riding the ball because of the cold, wintry conditions on"} +{"qid": "test1728", "pid": "7426413", "query": "who talks for belle in beauty and the beast", "answer": "Paige O'Hara", "passage": "\"Belle (Beauty and the Beast)\"\nBelle (Beauty and the Beast) Belle is a fictional character who appears in Walt Disney Pictures' animated feature film \"\"Beauty and the Beast\"\" (1991). Originally voiced by American actress and singer Paige O'Hara, Belle is the non-conforming daughter of an inventor who yearns to abandon her predictable village life in return for adventure. When her father Maurice is imprisoned by a cold-hearted beast, Belle offers him her own freedom in exchange for her father's, and eventually learns to love the Beast despite his unsightly outward appearance. Walt Disney Studios chairman Jeffrey Katzenberg commissioned \"\"Beauty and the Beast\"\" as an animated"} +{"qid": "test1728", "pid": "18553291", "query": "who talks for belle in beauty and the beast", "answer": "Paige O'Hara", "passage": "\"Beauty and the Beast (2017 film)\"\nwere revealed to be in talks to play Gaston and the Beast respectively, and Watson confirmed their casting the following day through tweets. The rest of the principal cast, including Josh Gad, Emma Thompson, Kevin Kline, Audra McDonald, Ian McKellen, Gugu Mbatha-Raw, Ewan McGregor and Stanley Tucci were announced between March and April to play LeFou, Mrs. Potts, Maurice, Madame de Garderobe, Cogsworth, Plumette, Lumière and Cadenza, respectively. Susan Egan, who originated the role of Belle on Broadway, commented on the casting of Watson as \"\"perfect\"\". Paige O'Hara, who voiced Belle in the original animated film and its sequels, offered"} +{"qid": "test1728", "pid": "7912635", "query": "who talks for belle in beauty and the beast", "answer": "Paige O'Hara", "passage": "\"Belle's Magical World\"\nBelle's Magical World Belle's Magical World (also known as Beauty and the Beast: Belle's Magical World) is a 1998 direct-to-video animated musical film produced by Walt Disney Television Animation. It was released on February 17, 1998, and is a followup to the 1991 Walt Disney Pictures animated feature film \"\"Beauty and the Beast\"\", featuring the voices of David Ogden Stiers as Cogsworth, Robby Benson as The Beast, Gregory Grudt, who replaced Bradley Pierce as Chip Potts, Paige O'Hara as Belle, Anne Rogers, who replaced Angela Lansbury as Mrs. Potts, and Jerry Orbach as Lumiere. The film features two songs performed"} +{"qid": "test1729", "pid": "12879358", "query": "what is a coherent set of values and beliefs about public policy called", "answer": "ideology", "passage": "\"Interactive acculturation\"\ngovernment. But in civic ideologies, there is no public financial support for these private values or for the continuation and flourishing of the particular culture. The cultural identities and values are allowed but not promoted by the host nation in a government policy of non-intervention. Many European countries and various Latin American countries espouse a civic ideology to some extent. These countries often witness flourishing immigrant populations that maintain a cultural identity and sometimes language. These are the set of beliefs and policies that support both the adoption of public values by the immigrant population but also of some private"} +{"qid": "test1731", "pid": "740105", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Bicolor cat\"\nsuch as \"\"cap-and-saddle\"\", \"\"mask-and-mantle\"\" and \"\"magpie\"\" (more randomly splashed). Bicolors are found in many cat breeds, as well as being common in domestic longhair and domestic shorthair cats. Solid color bicolor cats occur because there is a white spotting gene present along with a recessive allele of the agouti gene, which evens out the usual striped pattern of the colors of the coat. In contrast, \"\"tabby\"\" cats have an agouti gene that produces striping of the coat. The Abyssinian has agouti (ticked tabby) fur, giving the appearance of even color with color-banded hairs. White spotting can also occur with any"} +{"qid": "test1731", "pid": "8504075", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Tabby cat\"\nbasic color pattern. The \"\"Patched\"\" tabby is a calico or tortoiseshell cat with tabby patches (also known as \"\"caliby\"\" and \"\"torbie\"\", respectively). All those patterns have been observed in random-bred populations. Several additional patterns are found in specific breeds. A modified Classic tabby is found in the Sokoke breed. Some are due to the interaction of wild and domestic genes. Rosetted and marbled patterns are found in the Bengal breed. The Mackerel tabby pattern has vertical, gently curving stripes on the side of the body. The stripes are narrow and may be continuous or broken into bars and spots on"} +{"qid": "test1731", "pid": "8504080", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Tabby cat\"\nred cats and the patches of red on tortoiseshell cats will show tabby striping. The primary tabby pattern gene, \"\"Mc/mc or Mc/Mc\"\", sets the basic pattern of stripes that underlies the coat. \"\"Mc\"\" is the wild-type tabby gene and produces what is called a Mackerel Striped tabby. Classic tabbies are cats who also possess \"\"mc/mc\"\", a recessive mutant gene that produces the blotched pattern. The spotted gene is directly connected to the Mc gene; it 'breaks' the lines of a Mackerel tabby, turning it into spots. The spotted gene is dominant as well, which means a Spotted will be Sp/sp"} +{"qid": "test1731", "pid": "8504078", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Tabby cat\"\nin the spine. The Spotted tabby is a modifier that breaks up the Mackerel tabby pattern so that the stripes appear as spots. Similarly, the stripes of the Classic tabby pattern may be broken into larger spots. Both large spot and small spot patterns can be seen in the Australian Mist, Bengal, Serengeti, Egyptian Mau, Arabian Mau, Maine Coon, and Ocicat breeds. The tabby patterns are due to three distinct gene loci and one modifier: The agouti gene, \"\"A/a\"\", controls whether or not the tabby pattern is expressed. The dominant \"\"A\"\" expresses the underlying tabby pattern, while the recessive non-agouti"} +{"qid": "test1731", "pid": "8504072", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Tabby cat\"\nTabby cat A tabby is any domestic cat (\"\"Felis catus\"\") that has a coat featuring distinctive stripes, dots, lines or swirling patterns, usually together with a mark resembling an 'M' on its forehead. Tabbies are sometimes erroneously assumed to be a cat breed. In fact, the tabby pattern is found in many breeds, and is a genetic landrace common among the general mixed-breed population. The tabby pattern is a naturally occurring feature that may be related to the coloration of the domestic cat's direct ancestor, the African wildcat (\"\"Felis lybica lybica\"\"), which—along with the European wildcat (\"\"Felis silvestris silvestris\"\") and"} +{"qid": "test1731", "pid": "2945727", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Cat coat genetics\"\nbasic pattern of stripes that underlies the coat. The basic wild-type tabby gene, \"\"Mc\"\", produces what is called a \"\"mackerel striped\"\" tabby (stripes look like thin fishbones and may break up into bars or spots), while a recessive mutant, \"\"mc\"\", produces a blotched or \"\"classic\"\" tabby pattern (broad bands, whorls, and spirals of dark color on pale background usually with bulls-eye or oyster pattern on flank). The classic tabby is most common in Iran, Great Britain and in lands that were once part of the British Empire and Persian Empire. The gene responsible for this differential patterning has been identified"} +{"qid": "test1731", "pid": "4031524", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Point coloration\"\ndistribution is between a sepia and a point cat. The \"\"lynx point\"\" pattern is formed by cross-breeding a colorpoint cat with a tabby cat (or breeding cats that already possess the lynx point pattern). It is characterized by a mixture of the darkening (reduced) of point coloration, with distinct tabby striping on the head, tail, and legs, and an otherwise uniform and comparatively pale body. It is an accepted pattern, in some cat registries but not others, for particular breeds, mostly Siamese-related. Lynx point coloration was also a feature of some of the foundation stock of the Siberian. Tan points"} +{"qid": "test1731", "pid": "12629656", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Dragon Li\"\nDragon Li The Dragon Li displays a unique golden-brown, broken-mackerel (also known as broken-striped) tabby pattern; distinctive ear tipping; large round almond shaped luminescent yellow/green eyes; and a strong full bodied stature reminiscent of its wild nature. The eponymous Dragon Li is thought in China to be a natural self-domesticating breed by way of a wildcat subspecies, the Chinese mountain cat (\"\"Felis silvestris bieti\"\"). While this theory is still somewhat controversial, it has also not been scientifically disproven, and is therefore widely accepted as the origin of this breed within established breeding sources in China. (All other cat breeds in"} +{"qid": "test1731", "pid": "1293704", "query": "what breed of cat has spots and stripes", "answer": "tabby", "passage": "\"Manx cat\"\nancestry, have been celebrated on Isle of Man postage stamps since the 1980s, and recent publications often show marbled and spotted varieties. The original insular stock, however, were of less widespread variation. Lane, having \"\"seen a great many of them\"\" wrote of Manx cats that \"\"[i]t is curious that the colours in this variety seem somewhat limited\"\" and that the breed \"\"does not comprise all the colours usually associated with other short-haired varieties\"\". He reported only very common black, common black and white, common grey-striped tabby, uncommon tortoiseshell, and very rare all-white specimens in 1903. Calico and point-coloured are notably"} +{"qid": "test1732", "pid": "13900571", "query": "who voiced simba in the lion king 2", "answer": "Matthew Broderick", "passage": "\"Criticism of The Walt Disney Company\"\nat cloudbursts in the shape of his father lion, as pointed out by Frederick L. Schodt. The similarity is alluded to in a scene from \"\"The Simpsons\"\" episode \"\"'Round Springfield\"\", where a parody of Mufasa (voiced by Harry Shearer) in the clouds tells Lisa Simpson, \"\"You must avenge my death, Kimba...dah, I mean Simba!\"\". Matthew Broderick has said that when he was hired as the voice of adult Simba in \"\"The Lion King\"\", he presumed the project was related to \"\"Kimba the White Lion\"\". \"\"I thought he meant Kimba, who was a white lion in a cartoon when I was"} +{"qid": "test1732", "pid": "3744025", "query": "who voiced simba in the lion king 2", "answer": "Matthew Broderick", "passage": "Simba\ndeliver the direction of the character.\"\" Matthew Broderick provided the speaking voice of adult Simba. The first actor to be assigned to \"\"The Lion King\"\", Broderick learned of the role while he was on vacation in Ireland, where he received a telephone call from his agent informing him that the directors were interested in casting him as Simba. The directors decided to cast him as Simba because they felt that he was \"\"perfect\"\" for the role; according to producer Don Hahn, Broderick's voice resembled \"\"the kind of character who could be irresponsible and likeable, but you also felt that he"} +{"qid": "test1732", "pid": "2065751", "query": "who voiced simba in the lion king 2", "answer": "Matthew Broderick", "passage": "\"The Lion King II: Simba's Pride\"\nhe would reprise his role as Banzai the Hyena from the first film, but the character was ultimately cut from the sequel. In December 1996, Matthew Broderick was confirmed to be returning as Simba while his wife, Sarah Jessica Parker, and Jennifer Aniston were in talks to voice Aisha, Simba's daughter. Andy Dick was also confirmed to have signed on to voice Nunka, the young villain-in-training-turned hero, who attempts to romance Aisha. Ultimately, the character was renamed Kiara (after it was discovered that Aisha was the name of a female Power Ranger), and voiced by Neve Campbell, from the \"\"Scream\"\""} +{"qid": "test1732", "pid": "895756", "query": "who voiced simba in the lion king 2", "answer": "Matthew Broderick", "passage": "\"The Lion King\"\ncast that includes Matthew Broderick, James Earl Jones, Jeremy Irons, Jonathan Taylor Thomas, Moira Kelly, Nathan Lane, Ernie Sabella, Rowan Atkinson, Robert Guillaume, Madge Sinclair, Whoopi Goldberg, Cheech Marin, and Jim Cummings. The story takes place in a kingdom of lions in Africa and was influenced by William Shakespeare's \"\"Hamlet\"\". \"\"The Lion King\"\" tells the story of Simba, a young lion who is to succeed his father, Mufasa, as King of the Pride Lands; however, after Simba's paternal uncle Scar murders Mufasa, Simba is manipulated into thinking he was responsible and flees into exile. Upon maturation living with two wastrels,"} +{"qid": "test1733", "pid": "14000878", "query": "when did the angel of the north get built", "answer": "1998", "passage": "Retta\n1992, Retta graduated from Duke University in Durham, North Carolina, where she was pre-med and graduated with a degree in sociology. After graduating from Duke, Retta worked as a chemist. In her spare time, she did stand-up at Charlie Goodnights Comedy Club in Raleigh, North Carolina. Eventually she moved to Los Angeles to pursue a career in comedy. Retta started performing stand-up comedy in 1996, although she said she did not start \"\"earning money\"\" until 1998, when she began touring on the college circuit. Retta said she used to get \"\"really nauseated\"\" before a performance, but that the feeling passed"} +{"qid": "test1733", "pid": "13245243", "query": "when did the angel of the north get built", "answer": "1998", "passage": "\"History of the Los Angeles Angels\"\nhowever. Prior to the Angels' World Series victory in 2002, some had theorized that the team did not have success because its stadium, Angel Stadium of Anaheim, was supposedly built upon an ancient Native American burial ground (although Anaheim city historians have not been able to either confirm or debunk the theory). The Walt Disney Company effectively took control of the Angels in 1996, when it was able to gain enough support on the board to hire Tony Tavares as team president. Gene Autry, however, remained as chairman until his death in 1998. In 1999, Tavares hired Bill Stoneman as"} +{"qid": "test1734", "pid": "6018929", "query": "when did mcgee became a regular on ncis", "answer": "in season two", "passage": "\"Timothy McGee\"\nTimothy McGee Timothy \"\"Tim\"\" Farragut McGee () is a fictional character from the CBS television series \"\"NCIS\"\". He is portrayed by Sean Murray. McGee specializes in cybersecurity and computer crime, and is a graduate of Johns Hopkins University and MIT. Murray appeared as a guest star in eight episodes of the first season of \"\"NCIS\"\"; in season two he joined the main cast and was added to the opening credits. McGee was born in Bethesda, Maryland, on September 13, 1978, to an Irish American family. He spent his childhood in Alameda, California, as his father was a naval officer stationed"} +{"qid": "test1735", "pid": "446397", "query": "when was 1 john 5 7 added to the bible", "answer": "the 9th century", "passage": "Vulgate\nand Damasus; which subsequently were occasionally attached to Jerome's Gallican Psalter when that supplanted the Hebraic Psalter in the Vulgate in the 9th century. Many medieval manuscripts also include a pseudonymous prologue from Jerome for the Catholic Epistles, composed to support the interpolated Comma Johanneum at 1 John 5:7. The Latin biblical texts in use before Jerome's Vulgate are usually referred to collectively as the , or \"\"Old Latin Bible\"\"; where \"\"Old Latin\"\" means that they are older than the Vulgate and written in Latin, not that they are written in Old Latin. Jerome himself uses the term \"\"Latin Vulgate\"\""} +{"qid": "test1737", "pid": "4968131", "query": "who is jojo in horton hears a who", "answer": "Jesse McCartney", "passage": "\"Jesse McCartney\"\nin the Disney Channel show, \"\"The Suite Life of Zack & Cody\"\". In 2007, he starred as himself in the Disney Channel show, \"\"Hannah Montana\"\". In 2008, McCartney was also featured as the voice of \"\"Horton Hears A Who!\"\"s JoJo McDodd. McCartney also voiced Theodore in the 2007 film \"\"Alvin and the Chipmunks\"\", the 2009 film \"\"\"\", the 2011 film \"\"\"\", and the 2015 film \"\"\"\", in addition to voicing Terence in the 2008 film \"\"Tinker Bell\"\". He also voices Robin in the \"\"Young Justice\"\" series. In 2008, McCartney co-starred along with Elisabeth Harnois in an independent teenage drama feature"} +{"qid": "test1738", "pid": "2124603", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "microfilament", "passage": "Microfilament\nstructures. Cross-linking proteins determine filament orientation and spacing in the bundles and networks. These structures are regulated by many other classes of actin-binding proteins, including motor proteins, branching proteins, severing proteins, polymerization promoters, and capping proteins. Measuring approximately 6 nm in diameter, microfilaments are the thinnest fibers of the cytoskeleton. They are polymers of actin subunits (globular actin, or G-actin), which as part of the fiber are referred to as filamentous actin, or F-actin. Each microfilament is made up of two helical, interlaced strands of subunits. Much like microtubules, actin filaments are polarized. Electron micrographs have provided evidence of their"} +{"qid": "test1738", "pid": "2551344", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "microfilament", "passage": "Actin\nActin Actin is a family of globular multi-functional proteins that form microfilaments. It is found in essentially all eukaryotic cells (the only known exception being nematode sperm), where it may be present at a concentration of over 100 μM; its mass is roughly 42-kDa, with a diameter of 4 to 7 nm. An actin protein is the monomeric subunit of two types of filaments in cells: microfilaments, one of the three major components of the cytoskeleton, and thin filaments, part of the contractile apparatus in muscle cells. It can be present as either a free monomer called G-actin (globular) or"} +{"qid": "test1738", "pid": "2551358", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "Microfilaments", "passage": "Actin\nthe actin homologue MreB has been identified, which is a protein that is capable of polymerizing into microfilaments; and in archaea the homologue Ta0583 is even more similar to the eukaryotic actins. Cellular actin has two forms: monomeric globules called G-actin and polymeric filaments called F-actin (that is, as filaments made up of many G-actin monomers). F-actin can also be described as a microfilament. Two parallel F-actin strands must rotate 166 degrees to lie correctly on top of each other. This creates the double helix structure of the microfilaments found in the cytoskeleton. Microfilaments measure approximately 7 nm in diameter"} +{"qid": "test1738", "pid": "43636", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "microfilament", "passage": "\"Cell (biology)\"\nin place; helps during endocytosis, the uptake of external materials by a cell, and cytokinesis, the separation of daughter cells after cell division; and moves parts of the cell in processes of growth and mobility. The eukaryotic cytoskeleton is composed of microfilaments, intermediate filaments and microtubules. There are a great number of proteins associated with them, each controlling a cell's structure by directing, bundling, and aligning filaments. The prokaryotic cytoskeleton is less well-studied but is involved in the maintenance of cell shape, polarity and cytokinesis. The subunit protein of microfilaments is a small, monomeric protein called actin. The subunit of"} +{"qid": "test1738", "pid": "1373897", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "Microfilaments", "passage": "Cytoskeleton\nmotor proteins. Microfilaments are composed of linear polymers of G-actin proteins, and generate force when the growing (plus) end of the filament pushes against a barrier, such as the cell membrane. They also act as tracks for the movement of myosin molecules that affix to the microfilament and \"\"walk\"\" along them. In general, the major component or protein of microfilaments are actin. The G-actin monomer combines to form a polymer which continues to form the microfilament (actin filament). These subunits then assemble into two chains that intertwine into what is called, F-actin chains. Myosin motoring along F-actin filaments generates contractile"} +{"qid": "test1738", "pid": "2124616", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "Microfilaments", "passage": "Microfilament\nby ActA or VCA, the Arp complex is believed to undergo a major conformational change, bringing its two actin-related protein subunits near enough to each other to generate a new filament gate. Whether ATP hydrolysis may be required for nucleation and/or Y-branch release is a matter under active investigation. Microfilament Microfilaments, also called actin filaments, are filaments in the cytoplasm of eukaryotic cells that form part of the cytoskeleton and are primarily composed of polymers of actin, but in cells are modified by and interact with numerous other proteins. Microfilaments are usually about 7 nm in diameter and composed of"} +{"qid": "test1738", "pid": "7215026", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "microfilament", "passage": "\"Cell cortex\"\nand actin microfilaments form a mesh-like structure that is continuously remodeled by polymerization, depolymerization and branching. Many proteins are involved in the cortex regulation and dynamics including formins with roles in actin polymerization, Arp2/3 complexes that give rise to actin branching and capping proteins. Due to the branching process and the density of the actin cortex, the cortical cytoskeleton can form a highly complex meshwork such as a fractal structure. Specialized cells are usually characterized by a very specific cortical actin cytoskeleton. For example in red blood cells, the cell cortex consists of a two-dimensional cross-linked elastic network with pentagonal"} +{"qid": "test1738", "pid": "1373890", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "Microfilaments", "passage": "Cytoskeleton\nA main component in the cytoskeleton that helps show the true function of this muscle contraction is known as a microfilament. Microfilaments are composed of the most abundant cellular protein known as actin. During contraction of a muscle, within each muscle cell, myosin molecular motors collectively exert forces on parallel actin filaments. Muscle contraction starts from nerve impulses which then causes increased amounts of calcium to be released from the sarcoplasmic reticulum. Increases in calcium in the cytosol allows muscle contraction to begin with the help of two proteins, tropomyosin and troponin. Tropomyosin inhibits the interaction between actin and myosin,"} +{"qid": "test1738", "pid": "4979143", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "microfilament", "passage": "Tropomyosin\nhead to interact with the actin filament and cause contraction. The cytoskeleton is an elaborate network of filaments required for the proper functioning of a range of cellular processes including cell motility, cell division, intracellular trafficking, and the maintenance of cell shape. The cytoskeleton is composed of three distinct filament systems: microtubules, intermediate filaments, and microfilaments (also known as the actin cytoskeleton). It is the dynamic interactions between these filaments that provide cells with unique structures and functions. A number of regulatory mechanisms, employing many actin-binding proteins, have evolved to control the dynamics of the actin filament system. It is"} +{"qid": "test1738", "pid": "2124600", "query": "the part of the cytoskeleton made from the protein actin is called", "answer": "Microfilaments", "passage": "Microfilament\nMicrofilament Microfilaments, also called actin filaments, are filaments in the cytoplasm of eukaryotic cells that form part of the cytoskeleton and are primarily composed of polymers of actin, but in cells are modified by and interact with numerous other proteins. Microfilaments are usually about 7 nm in diameter and composed of two strands of actin. Microfilament functions include cytokinesis, amoeboid movement and cell motility in general, changes in cell shape, endocytosis and exocytosis, cell contractility and mechanical stability. Microfilaments are flexible and relatively strong, resisting buckling by multi-piconewton compressive forces and filament fracture by nanonewton tensile forces. In inducing cell"} +{"qid": "test1739", "pid": "3371923", "query": "who plays jack in battle of the sexes", "answer": "Bill Pullman", "passage": "\"Jack Kramer\"\nstay away from the tournament. Jack Kramer died from a soft tissue cancer on September 12, 2009 at his home in the Bel Air neighborhood of Los Angeles, California. Kramer was inducted into the International Tennis Hall of Fame in Newport, Rhode Island, in 1968. From 1979 until 1981 the Los Angeles Tennis Open, a tournament he was involved with since the 1950s, was known as the \"\"Jack Kramer Open\"\". He was portrayed by actor Bill Pullman in the 2017 movie \"\"Battle of the Sexes\"\". Jack Kramer John Albert \"\"Jack\"\" Kramer (August 1, 1921 – September 12, 2009) was an"} +{"qid": "test1740", "pid": "348038", "query": "is a network connection device that can build tables that identify addresses on each network", "answer": "routing table", "passage": "\"Router (computing)\"\nalong the optical fiber lines of the Internet backbone. Though routers are typically dedicated hardware devices, software-based routers also exist. When multiple routers are used in interconnected networks, the routers can exchange information about destination addresses using a routing protocol. Each router builds up a routing table listing the preferred routes between any two systems on the interconnected networks. A router has two types of network element components organized onto separate \"\"planes\"\": A router may have interfaces for different types of physical layer connections, such as copper cables, fiber optic, or wireless transmission. It can also support different network layer"} +{"qid": "test1740", "pid": "1600608", "query": "is a network connection device that can build tables that identify addresses on each network", "answer": "a router", "passage": "Zigbee\ninput and output cluster identifiers, unique within the context of a given profile and associated to an incoming or outgoing data flow in a device. Binding tables contain source and destination pairs. Depending on the available information, device discovery may follow different methods. When the network address is known, the IEEE address can be requested using unicast communication. When it is not, petitions are broadcast (the IEEE address being part of the response payload). End devices will simply respond with the requested address while a network coordinator or a router will also send the addresses of all the devices associated"} +{"qid": "test1740", "pid": "5216512", "query": "is a network connection device that can build tables that identify addresses on each network", "answer": "routing table", "passage": "\"Content addressable network\"\nfind a node already in the overlay network, bootstrapping nodes may be used to inform the joining node of IP addresses of nodes currently in the overlay network. After the joining node receives an IP address of a node already in the CAN, it can attempt to identify a zone for itself. The joining node randomly picks a point in the coordinate space and sends a join request, directed to the random point, to one of the received IP addresses. The nodes already in the overlay network route the join request to the correct device via their zone-to-IP routing tables."} +{"qid": "test1740", "pid": "5399972", "query": "is a network connection device that can build tables that identify addresses on each network", "answer": "routing table", "passage": "\"Virtual routing and forwarding\"\nVirtual routing and forwarding In IP-based computer networks, virtual routing and forwarding (VRF) is a technology that allows multiple instances of a routing table to co-exist within the same router at the same time. Because the routing instances are independent, the same or overlapping IP addresses can be used without conflicting with each other. Network functionality is improved because network paths can be segmented without requiring multiple routers. VRF may be implemented in a network device by distinct routing tables known as forwarding information bases (FIBs), one per routing instance. Alternatively, a network device may have the ability to configure"} +{"qid": "test1740", "pid": "5399977", "query": "is a network connection device that can build tables that identify addresses on each network", "answer": "routing table", "passage": "\"Virtual routing and forwarding\"\nMPLS environment. , the key element in the Cisco MPLS VPN technology. Virtual routing and forwarding In IP-based computer networks, virtual routing and forwarding (VRF) is a technology that allows multiple instances of a routing table to co-exist within the same router at the same time. Because the routing instances are independent, the same or overlapping IP addresses can be used without conflicting with each other. Network functionality is improved because network paths can be segmented without requiring multiple routers. VRF may be implemented in a network device by distinct routing tables known as forwarding information bases (FIBs), one per"} +{"qid": "test1741", "pid": "1213783", "query": "when did the royal proclamation of 1763 end", "answer": "the American Revolutionary War", "passage": "\"Royal Proclamation of 1763\"\nIn August 1770, it was decided that Washington should personally make a trip to the western region, where he located tracts for himself and military comrades and eventually was granted letters patent for tracts of land there. The lands involved were open to Virginians under terms of the Treaty of Lochaber of 1770, except for the lands located 2 miles south of Fort Pitt, now known as Pittsburgh. In the United States, the Royal Proclamation of 1763 ended with the American Revolutionary War because Great Britain ceded the land in question to the United States in the Treaty of Paris"} +{"qid": "test1741", "pid": "3786781", "query": "when did the royal proclamation of 1763 end", "answer": "1783", "passage": "\"Nonintercourse Act\"\nthe entire United States, including the original thirteen. No defendant has yet persuaded a court otherwise. However, the defendant will defeat this element if the challenged conveyance occurred before 1790. The Confederation Congress Proclamation of 1783 may cover conveyances between 1783 and 1790, but the only court to consider it held that the Confederation Congress had neither the power nor the intent to prohibit conveyances to states within their borders. The Royal Proclamation of 1763 may cover conveyances between 1763 and 1783; however, the only court to examine such a conveyance found that it satisfied the requirements of the Proclamation."} +{"qid": "test1741", "pid": "1054358", "query": "when did the royal proclamation of 1763 end", "answer": "the American Revolutionary War", "passage": "\"Prairie du Rocher, Illinois\"\nof Paris was signed in 1763; however, the British did not arrive in force until 1765. To avoid British rule, many of the town's French residents moved across the Mississippi River to towns such as Ste. Genevieve and St. Louis in what was now, via the secret Treaty of Fontainebleau, Spanish Louisiana. Additionally, King George III's Royal Proclamation of 1763 designated all the land west of the Appalachians and east of the Mississippi an Indian Reserve. He tried to prevent settlers entering from the then-British Colonies. During the American Revolutionary War, George Rogers Clark captured Prairie du Rocher for the"} +{"qid": "test1741", "pid": "15456992", "query": "when did the royal proclamation of 1763 end", "answer": "the American Revolutionary War", "passage": "\"St. Philippe, Illinois\"\nwas signed in 1763; however, the British did not arrive in force until 1765. To avoid British rule, many of the town's French residents moved across the Mississippi River to towns such as Ste. Genevieve and St. Louis in what was now, via the secret Treaty of Fontainebleau, Spanish Louisiana. Additionally, King George III's Royal Proclamation of 1763 designated all the land west of the Appalachians and east of the Mississippi as an Indian Reserve. He tried to prevent settlers entering from the then-British Colonies. During the American Revolutionary War, George Rogers Clark captured Prairie du Rocher for the colonies"} +{"qid": "test1743", "pid": "14257127", "query": "when did response to state of the union start", "answer": "in 1966", "passage": "\"Response to the State of the Union address\"\nUnion addresses, there have been five official responses to non–State of the Union speeches which were delivered soon after presidential inaugurations. Response to the State of the Union address The response to the State of the Union address is a rebuttal speech, often brief, delivered by a representative (or representatives) of the opposition party following a presidential State of the Union address. When the president is a Democrat, the rebuttal is given by a Republican, and vice versa. The practice began in 1966 when Republican U.S. Senator Everett Dirksen (Illinois) and U.S. Representative Gerald Ford (Michigan) appeared on TV to"} +{"qid": "test1743", "pid": "14257125", "query": "when did response to state of the union start", "answer": "in 1966", "passage": "\"Response to the State of the Union address\"\nResponse to the State of the Union address The response to the State of the Union address is a rebuttal speech, often brief, delivered by a representative (or representatives) of the opposition party following a presidential State of the Union address. When the president is a Democrat, the rebuttal is given by a Republican, and vice versa. The practice began in 1966 when Republican U.S. Senator Everett Dirksen (Illinois) and U.S. Representative Gerald Ford (Michigan) appeared on TV to offer a response to the address by Democratic President Lyndon Johnson. The opposition party's response has varied in format, ranging from"} +{"qid": "test1744", "pid": "9770", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"Articles of Confederation\"\ngovernment. Under the Articles, the states retained sovereignty over all governmental functions not specifically relinquished to the national Congress, which was empowered to make war and peace, negotiate diplomatic and commercial agreements with foreign countries, and to resolve disputes between the states. The document also stipulates that its provisions \"\"shall be inviolably observed by every state\"\" and that \"\"the Union shall be perpetual\"\". Summary of the purpose and content of each of the 13 articles: Under the Articles, Congress had the authority to regulate and fund the Continental Army, but it lacked the power to compel the States to comply"} +{"qid": "test1744", "pid": "9778", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"Articles of Confederation\"\nLoyalists and allowing them to seek compensation. This incomplete British implementation of the Treaty of Paris would later be resolved by the implementation of Jay's Treaty in 1795, after the federal Constitution came into force. Under the Articles of Confederation, the central government's power was kept quite limited. The Confederation Congress could make decisions, but lacked enforcement powers. Implementation of most decisions, including modifications to the Articles, required unanimous approval of all thirteen state legislatures. Congress was denied any powers of taxation: it could only request money from the states. The states often failed to meet these requests in full,"} +{"qid": "test1744", "pid": "428340", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"Second Amendment to the United States Constitution\"\na fear that the federal government, by neglecting the upkeep of the militia, could have overwhelming military force at its disposal through its power to maintain a standing army and navy, leading to a confrontation with the states, encroaching on the states' reserved powers and even engaging in a military takeover. Article VI of the Articles of Confederation states: In contrast, of the U.S. Constitution states: A foundation of American political thought during the Revolutionary period was concerned about political corruption and governmental tyranny. Even the federalists, fending off their opponents who accused them of creating an oppressive regime, were"} +{"qid": "test1744", "pid": "11812949", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"Federalist Era\"\nStates had functioned under the Articles of Confederation, which provided for a loose confederation of states. At the 1787 Philadelphia Convention, delegates from most of the states wrote a new constitution that created a more powerful federal government. After the convention, this constitution was submitted to the states for ratification. Those who advocated ratification became known as Federalists, while those opposed to ratification became known as anti-Federalists. After the Federalists won the ratification debate in all but two states, the new constitution took effect and new elections were held for Congress and the presidency. The first elections returned large Federalist"} +{"qid": "test1744", "pid": "6149755", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"History of the United States House of Representatives\"\ncapitalized only because all nouns were capitalized in English before the Industrial Revolution. The Second Continental Congress continued in office while the War for Independence continued, producing the Articles of Confederation— the country's first constitution— in 1777, which was ratified by all of the states by 1781. Under the Articles of Confederation, the Congress of the Confederation was a unicameral body in which each state was equally represented, and in which each state had a veto over most action. States could, and did, ignore what did pass. The ineffectiveness of the federal government under the Articles led Congress to summon"} +{"qid": "test1744", "pid": "18133653", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"1788–89 United States elections\"\nunder the Articles of Confederation, which provided for a very limited central government; what power that did exist was vested in the Congress of the Confederation, a unicameral legislature consisting of representatives elected by the states. The Congress of the Confederation had elected a president, but this position was largely ceremonial and was not equivalent to the presidency that was established by the United States Constitution. Under the U.S. Constitution, the president was chosen by the Electoral College, which consisted of electors selected by each state. Prior to the ratification of the Twelfth Amendment, each elector cast two votes; the"} +{"qid": "test1744", "pid": "512468", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"Alexander Hamilton\"\n1780. In this letter he wrote, \"\"The fundamental defect is a want of power in Congress...the confederation itself is defective and requires to be altered; it is neither fit for war, nor peace.\"\" While on Washington's staff, Hamilton had become frustrated with the decentralized nature of the wartime Continental Congress, particularly its dependence upon the states for voluntary financial support. Under the Articles of Confederation, Congress had no power to collect taxes or to demand money from the states. This lack of a stable source of funding had made it difficult for the Continental Army both to obtain its necessary"} +{"qid": "test1744", "pid": "19459073", "query": "who had the most governmental power under the articles of confederation", "answer": "the states", "passage": "\"Import-Export Clause\"\ndid not apply to imports and exports with other states, although this interpretation has been questioned by modern legal scholars. The United States were first organized under the Articles of Confederation, under which the states maintained significant autonomy while the national government was weak. Among the major weaknesses of the Articles of Confederation was the inability to regulate commerce with foreign nations and among the states and the inability of the national government to impose taxes. The national government lacked power to enforce acts of Congress and requests for money from the states were frequently ignored. The Articles of Confederation"} +{"qid": "test1746", "pid": "13189263", "query": "who donates a christmas tree to trafalgar square", "answer": "Oslo, Norway", "passage": "\"Trafalgar Square Christmas tree\"\nTrafalgar Square Christmas tree The Trafalgar Square Christmas tree is a Christmas tree donated to the people of Britain by the city of Oslo, Norway each year since 1947. The tree is prominently displayed in Trafalgar Square from the beginning of December until 6 January. The Trafalgar Square Christmas tree has been an annual gift to the people of Britain by the city of Oslo as a token of gratitude for British support to Norway during the Second World War. The tree has provided a central focus for the Trafalgar Square traditional carol-singing programme, performed by different groups raising money"} +{"qid": "test1746", "pid": "13189267", "query": "who donates a christmas tree to trafalgar square", "answer": "Oslo, Norway", "passage": "\"Trafalgar Square Christmas tree\"\ncountdown to Christmas. Since 2009, the Poetry Society has commissioned new poems annually for display on banners around the base of the tree. In 2010, schoolchildren also performed one of the poems at the lighting-up ceremony. Trafalgar Square Christmas tree The Trafalgar Square Christmas tree is a Christmas tree donated to the people of Britain by the city of Oslo, Norway each year since 1947. The tree is prominently displayed in Trafalgar Square from the beginning of December until 6 January. The Trafalgar Square Christmas tree has been an annual gift to the people of Britain by the city of"} +{"qid": "test1746", "pid": "95505", "query": "who donates a christmas tree to trafalgar square", "answer": "Oslo, Norway", "passage": "\"Christmas tree\"\nthe Armistice in 1918 the city of Manchester sent a tree, and £500 to buy chocolate and cakes, for the children of the much-bombarded town of Lille in northern France. In some cases the trees represent special commemorative gifts, such as in Trafalgar Square in London, where the City of Oslo, Norway presents a tree to the people of London as a token of appreciation for the British support of Norwegian resistance during the Second World War; in Boston, where the tree is a gift from the province of Nova Scotia, in thanks for rapid deployment of supplies and rescuers"} +{"qid": "test1747", "pid": "11408718", "query": "who starred in the movie on golden pond", "answer": "Dabney Coleman", "passage": "\"On Golden Pond (1981 film)\"\n\"\"The New York Times\"\" review, Vincent Canby said, \"\"As a successful Broadway play, \"\"On Golden Pond\"\" was processed American cheese, smooth, infinitely spreadable and bland, with color added by the actors . . . the movie . . . still American cheese, but its stars – Henry Fonda, Katharine Hepburn, Jane Fonda and Dabney Coleman – add more than color to this pasteurized product. \"\"On Golden Pond\"\" now has the bite of a good old cheddar . . . Mr. Fonda gives one of the great performances of his long, truly distinguished career. Here is film acting of the highest"} +{"qid": "test1747", "pid": "11408702", "query": "who starred in the movie on golden pond", "answer": "William Lanteau", "passage": "\"On Golden Pond (1981 film)\"\nOn Golden Pond (1981 film) On Golden Pond is a 1981 American drama film directed by Mark Rydell. The screenplay by Ernest Thompson was adapted from his 1979 play of the same name. The film stars Katharine Hepburn and Henry Fonda (in his final acting performance) in the lead roles along with Jane Fonda, Doug McKeon, Dabney Coleman and William Lanteau appearing in supporting roles. The film's narrative revolves around an aged couple, cantankerous retiree Norman Thayer and his conciliatory wife Ethel, who spend summers at their New England vacation home on the shores of idyllic Golden Pond. This year,"} +{"qid": "test1747", "pid": "1000410", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"On Golden Pond (play)\"\nwho often was ill during the run, eventually was diagnosed with pneumonia, forcing the production to a sudden close. Michael Learned and Tom Bosley starred in a 2006-07 US national tour produced by Finn. Jack Klugman headlined a 2008 tour. The play was adapted for the screen written by Thompson in 1981. The film \"\"On Golden Pond\"\" was released in December 1981, directed by Mark Rydell & produced by Bruce Gilbert with Henry Fonda, Katharine Hepburn and Jane Fonda in the starring cast. In 2001, CBS aired a live television adaptation of the play that was heavily publicized in the"} +{"qid": "test1747", "pid": "3104594", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"Family (1976 TV series)\"\nrevealed to be a lesbian. \"\"Family\"\" also contends with alcoholism (Doug's sister; Buddy's old friend) as well as adoption, when the family adopts a girl named Annie Cooper (Quinn Cummings) after her parents' death. A 1979 episode (directed by actress Joanne Woodward) guest-stars Henry Fonda as a visiting elderly relative who is beginning to experience senility and memory loss. Two years later, Fonda would win an Academy Award for playing a similar character in \"\"On Golden Pond\"\". In 1988, plans for a reunion movie were in the works, but the writers' strike that year halted production and it was never"} +{"qid": "test1747", "pid": "11408722", "query": "who starred in the movie on golden pond", "answer": "William Lanteau", "passage": "\"On Golden Pond (1981 film)\"\nsong than this sticky confection.\"\" \"\"Mad\"\" magazine satirized the film as \"\"On Olden Pond\"\". American Film Institute recognition On Golden Pond (1981 film) On Golden Pond is a 1981 American drama film directed by Mark Rydell. The screenplay by Ernest Thompson was adapted from his 1979 play of the same name. The film stars Katharine Hepburn and Henry Fonda (in his final acting performance) in the lead roles along with Jane Fonda, Doug McKeon, Dabney Coleman and William Lanteau appearing in supporting roles. The film's narrative revolves around an aged couple, cantankerous retiree Norman Thayer and his conciliatory wife Ethel,"} +{"qid": "test1747", "pid": "5835403", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"Ernest Thompson\"\nplay \"\"On Golden Pond\"\", which he wrote at the age of twenty-eight. The play opened Off Of Broadway in 1978, starring Tom Aldredge and Frances Sternhagen. A great success at the Kennedy Center, it opened at the New Apollo Theater on Broadway February 28, 1979. Revived the following season at the Century Theatre, \"\"On Golden Pond\"\" ran for more than 400 performances. It went on to become a hit 1981 film, starring Katharine Hepburn and Henry Fonda. Thompson won the Academy Award for Best Adapted Screenplay in 1981, as well as awards from the Golden Globes and the Writers Guild"} +{"qid": "test1747", "pid": "11408716", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"On Golden Pond (1981 film)\"\nthe Lost Ark\"\", which earned $209,562,121. \"\"On Golden Pond\"\" garnered widespread critical acclaim with critics highlighting the performances of Katharine Hepburn and Henry Fonda. The review aggregator Rotten Tomatoes gives the film an approval rating of 92% based on 386 reviews, with an average rating of 8.7/10. The website's critical consensus reads, \"\"\"\"There's little that happens in On Golden Pond that isn't thoroughly predictable from the start, but the film is blessed with so much star power, charm and honest sentiment that everyone in the audience is willing to ignore the cliches and go the distance.\"\" Roger Ebert of the"} +{"qid": "test1747", "pid": "14038403", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"Thayer IV\"\nThayer IV The Thayer IV was the name of the boat used in the 1981 film \"\"On Golden Pond\"\". There were 3 Thayer IV's used in the movie, including 1 replica used for a crash scene. One was a 1950 Chris-Craft Sportsman (U22-1460), bought by a family in 1982 from marine coordinator Pat Curtin as one of the boats used in the movie. The other boat, also a Chris-Craft Sportsman (U22-1802), was sold in 1983 by the marine coordinator for the movie, Mr. Pat Curtin, as the boat which Henry Fonda and Katharine Hepburn used for their excursions on Golden"} +{"qid": "test1747", "pid": "11408720", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"On Golden Pond (1981 film)\"\nis a mixed blessing, but it offers one performance of rare quality and three others that are very good. That's not half-bad.\"\" \"\"TV Guide\"\" rates it 3 ½ out of a possible four stars, calling it \"\"a beautifully photographed movie filled with poignancy, humor, and (of course) superb acting . . . there could have been no finer final curtain for [Henry Fonda] than this.\"\" Channel 4 sums up its review by stating, \"\"Henry Fonda and Katharine Hepburn both shine in an impressively executed Hollywood drama. [It] has its mawkish moments but there's a certain pleasure in that, and writer"} +{"qid": "test1747", "pid": "11408704", "query": "who starred in the movie on golden pond", "answer": "Henry Fonda", "passage": "\"On Golden Pond (1981 film)\"\nBest Actress (Hepburn) and Best Adapted Screenplay (Thompson). Henry Fonda won his only competitive Oscar with this film and at the age of 76 became the oldest winner in the Best Actor category, while Katharine Hepburn won her fourth Best Actress award, extending her own record for the most Oscars won by a thespian. \"\"On Golden Pond\"\" is also one of the few movies to earn the nominations for five major Academy Awards (Best Picture, Director, Actor, Actress, and Screenplay). An aging couple, Ethel and Norman Thayer, continue the long tradition of spending each summer at their cottage on a"} +{"qid": "test1747", "pid": "11408719", "query": "who starred in the movie on golden pond", "answer": "Dabney Coleman", "passage": "\"On Golden Pond (1981 film)\"\norder . . . Miss Hepburn . . . is also in fine form. One of the most appealing things about her as an actress is the way she responds to – and is invigorated by – a strong co-star . . . she needs someone to support, challenge and interact with. Mr. Fonda is the best thing that's happened to her since Spencer Tracy and Humphrey Bogart . . . an added pleasure is the opportunity to see Dabney Coleman [in] a role that goes beyond the caricatures he's usually given to play . . . \"\"On Golden Pond\"\""} +{"qid": "test1748", "pid": "742614", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Basic Rate Interface\"\nBasic Rate Interface Basic Rate Interface (BRI, 2B+D, 2B1D) \"\"or\"\" Basic Rate Access is an Integrated Services Digital Network (ISDN) configuration intended primarily for use in subscriber lines similar to those that have long been used for voice-grade telephone service. As such, an ISDN BRI connection can use the existing telephone infrastructure at a business. The BRI configuration provides 2 data (bearer) channels (B channels) at 64 kbit/s each and 1 control (delta) channel (D channel) at 16 kbit/s. The B channels are used for voice or user data, and the D channel is used for any combination of data,"} +{"qid": "test1748", "pid": "200519", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Integrated Services Digital Network\"\nof ADSL in 2003, the importance of ISDN for data transfer began to decrease and is today limited to niche business applications with point-to-point requirements. A study of the German Department of Science shows the following spread of ISDN-channels per 1,000 inhabitants in the year 2005: In ISDN, there are two types of channels, \"\"B\"\" (for \"\"bearer\"\") and \"\"D\"\" (for \"\"data\"\"). \"\"B channels\"\" are used for data (which may include voice), and \"\"D channels\"\" are intended for signaling and control (but can also be used for data). There are two ISDN implementations. Basic Rate Interface (BRI), also called basic rate"} +{"qid": "test1748", "pid": "520360", "query": "isdn uses b & d channels. what is d channel use for", "answer": "control and signaling information", "passage": "\"Primary Rate Interface\"\n30 B- and two D-channels for a bandwidth of 2.048 Mbit/s. The first timeslot on the E1 is used for synchronization purposes and is not considered to be a B- or D-channel. The D-channel typically uses timeslot 16 on an E1, while it is timeslot 24 for a T1. Fewer active bearer channels, sometimes called user channels, may be used in fractional T1 or E1 services. The Integrated Services Digital Network (ISDN) prescribes two levels of service: Each B-channel carries data, voice, and other services. The D-channel carries control and signaling information. Larger connections are possible using PRI pairing. A"} +{"qid": "test1748", "pid": "3833833", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Non-Facility Associated Signalling\"\nNon-Facility Associated Signalling Non-Facility Associated Signaling or NFAS is a Primary Rate Interface configuration whereby multiple T1 carriers share a signaling channel (or D channel). A T1 circuit typically carries 24 individual timeslots. Each timeslot in turn carries a single telephone call. When a T1 circuit is used to carry Primary Rate ISDN one of the timeslots is used to carry the D channel. A single Primary Rate ISDN circuit is thus sometimes described as 23B + D. There are 23 bearer channels carrying voice or data, and one D channel carrying the Common Channel Signaling. In an NFAS configuration,"} +{"qid": "test1748", "pid": "200523", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Integrated Services Digital Network\"\nprocess called B channel BONDING, or via use of Multi-Link PPP \"\"bundling\"\" or by using an H0, H11, or H12 channel on a PRI. The D channel can also be used for sending and receiving X.25 data packets, and connection to X.25 packet network, this is specified in X.31. In practice, X.31 was only commercially implemented in the UK, France, Japan and Germany. A set of \"\"reference points\"\" are defined in the ISDN standard to refer to certain points between the telco and the end user ISDN equipment. Most NT-1 devices can perform the functions of the NT2 as well,"} +{"qid": "test1748", "pid": "200497", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Integrated Services Digital Network\"\ncarrier wave transmission are integrated rather than separate as in earlier technology. The entry level interface to ISDN is the Basic Rate Interface (BRI), a 128 kbit/s service delivered over a pair of standard telephone copper wires. The 144 kbit/s payload rate is broken down into two 64 kbit/s bearer channels ('B' channels) and one 16 kbit/s signaling channel ('D' channel or data channel). This is sometimes referred to as 2B+D. The interface specifies the following network interfaces: BRI-ISDN is very popular in Europe but is much less common in North America. It is also common in Japan — where"} +{"qid": "test1748", "pid": "200516", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Integrated Services Digital Network\"\nto retire the UK's ISDN infrastructure by 2025. France Telecom offers ISDN services under their product name Numeris (2 B+D), of which a professional Duo and home Itoo version is available. ISDN is generally known as RNIS in France and has widespread availability. The introduction of ADSL is reducing ISDN use for data transfer and Internet access, although it is still common in more rural and outlying areas, and for applications such as business voice and point-of-sale terminals. In Germany, ISDN was very popular with an installed base of 25 million channels (29% of all subscriber lines in Germany as"} +{"qid": "test1748", "pid": "520359", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Primary Rate Interface\"\nPrimary Rate Interface The Primary Rate Interface (PRI) is a telecommunications interface standard used on an Integrated Services Digital Network (ISDN) for carrying multiple DS0 voice and data transmissions between the network and a user. PRI is the standard for providing telecommunication services to enterprises and offices. It is based on T-carrier (T1) transmission in the US, Canada, and Japan, while the E-carrier (E1) is common in Europe and Australia. The T1 line consists of 23 bearer (B) channels and one data (D) channel for control purposes, for a total bandwidth of 24x64-kbit/s or 1.544 Mbit/s. The E1 carrier provides"} +{"qid": "test1748", "pid": "2047843", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Internet access\"\nmethods. ISDN has been used for voice, video conferencing, and broadband data applications. ISDN was very popular in Europe, but less common in North America. Its use peaked in the late 1990s before the availability of DSL and cable modem technologies. Basic rate ISDN, known as ISDN-BRI, has two 64 kbit/s \"\"bearer\"\" or \"\"B\"\" channels. These channels can be used separately for voice or data calls or bonded together to provide a 128 kbit/s service. Multiple ISDN-BRI lines can be bonded together to provide data rates above 128 kbit/s. Primary rate ISDN, known as ISDN-PRI, has 23 bearer channels (64"} +{"qid": "test1748", "pid": "12628399", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Um interface\"\n26-multiframe. The channel bit rate of a half-rate GSM channel is 11.4 kbit/s, although the actual data capacity is 4.8-7 kbit/s, depending on the channel coding. This channel is normally used with the GSM 06.20 Half Rate or GSM 06.90 Adaptive Multi-Rate speech codec. These point-to-point channels correspond to the ISDN D channel and are referred to as Dm channels. The SDCCH is used for most short transactions, including initial call setup step, registration and SMS transfer. It has a payload data rate of 0.8 kbit/s. Up to eight SDCCHs can be time-multiplexed onto a single physical channel. The SDCCH"} +{"qid": "test1748", "pid": "200501", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Integrated Services Digital Network\"\nkHz with G.711 encoding. B-channels can also be used to carry data, since they are nothing more than digital channels. Each one of these channels is known as a DS0. Most B channels can carry a 64kbit/s signal, but some were limited to 56K because they traveled over RBS lines. This was commonplace in the 20th century, but has since become less so. X.25 can be carried over the B or D channels of a BRI line, and over the B channels of a PRI line. X.25 over the D channel is used at many point-of-sale (credit card) terminals because"} +{"qid": "test1748", "pid": "17311835", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Narrowband ISDN\"\nsaved, but by an unexpected application: Internet access. Various companies now sell ISDN adapters that combine the 2B + D channels into a single 144 kbit/s digital channel. Many Internet providers also support these adapters. So the people can access the Internet over a 144 kbit/s digital link, instead of a 28.8 kbit/s analog modem link and for affordable price that may be a niche for N-ISDN for the next few years. N-ISDN is also known as Normal-ISDN. Narrowband refers to data communication and telecommunications tools, technologies and services that utilize a narrower set or band of frequencies in the"} +{"qid": "test1748", "pid": "200495", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"Integrated Services Digital Network\"\nof 128 kbit/s bandwidth in both upstream and downstream directions. Channel bonding can achieve a greater data rate; typically the ISDN B-channels of three or four BRIs (six to eight 64 kbit/s channels) are bonded. ISDN is employed as the network, data-link and physical layers in the context of the OSI model. In common use, ISDN is often limited to usage to Q.931 and related protocols, which are a set of signaling protocols establishing and breaking circuit-switched connections, and for advanced calling features for the user. They were introduced in 1986. In a videoconference, ISDN provides simultaneous voice, video, and"} +{"qid": "test1748", "pid": "2798364", "query": "isdn uses b & d channels. what is d channel use for", "answer": "data", "passage": "\"B channel\"\nB channel B channel (bearer) is a telecommunications term which refers to the ISDN channel in which the primary data or voice communication is carried. It has a bit rate of 64 kbit/s in full duplex. The term is applied primarily in relation to the ISDN access interfaces (PRA or PRI and BRA or BRI), since deeper in the PSTN network an ISDN bearer channel is essentially indistinguishable from any other bearer channel. Apart from any transmission errors, the purpose of the network is to carry the contents of the B channel transparently between the endpoints of the call. Exceptions"} +{"qid": "test175", "pid": "5123973", "query": "who played mark on the show the rifleman", "answer": "John Ernest Crawford", "passage": "\"Johnny Crawford\"\na one-way ticket to California and encouraged her to pursue a Hollywood career. This led Jackson to early appearances on the \"\"Tonight Show Starring Johnny Carson\"\", before she was cast as a regular on \"\"SNL\"\". Johnny Crawford John Ernest Crawford (born March 26, 1946) is an American character actor, singer, and musician. At age 12, Crawford rose to fame for playing Mark McCain, the son of Lucas McCain (played by Chuck Connors), in the popular ABC Western series, \"\"The Rifleman,\"\" which originally aired from 1958 to 1963. Crawford first performed before a national audience as a Mouseketeer. Crawford was born"} +{"qid": "test1751", "pid": "13882089", "query": "which supreme court judge has surved in international court of justice", "answer": "Dalveer Bhandari", "passage": "\"India and the United Nations\"\nSecurity Council. From 1945 to present, a total of 3 members from India have been appointed as Judges of the International Court of Justice, the primary judicial branch of the United Nations. Moreover, Nagendra Singh was appointed as the President from 1985 to 1988. In addition, 3 member have also served as Judges sitting ad hoc. Now India's Supreme Court Justice 'Justice: Dalveer Bhandari' has been appointed as the judge in International Court of Justice for a second term. Justice Dalveer Bhandari has studied at JNVU Jodhpur and served as judge in both high court and The Supreme Court in"} +{"qid": "test1752", "pid": "3458490", "query": "who is known as father of green revolution in india", "answer": "Mankombu Sambasivan Swaminathan", "passage": "\"M. S. Swaminathan\"\nM. S. Swaminathan Mankombu Sambasivan Swaminathan (born 7 August 1925) is an Indian geneticist and international administrator, renowned for his leading role in India's Green Revolution, a program under which high-yield varieties of wheat and rice seedlings were planted in the fields of poor farmers. Swaminathan is known as the \"\"Father of Green Revolution in India\"\" for his leadership and success in introducing and further developing high-yielding varieties of wheat in India. He is the founder of the MS Swaminathan Research Foundation . His stated vision is to rid the world of hunger and poverty. Swaminathan is an advocate of"} +{"qid": "test1752", "pid": "3458507", "query": "who is known as father of green revolution in india", "answer": "Mankombu Sambasivan Swaminathan", "passage": "\"M. S. Swaminathan\"\nthe value of the lysine content so that Sharbati Sonora was viewed positively. The report of the committee noted that it was not an isolated incident and that such practice \"\"pervades the entire scientific and academic community in this country. M. S. Swaminathan Mankombu Sambasivan Swaminathan (born 7 August 1925) is an Indian geneticist and international administrator, renowned for his leading role in India's Green Revolution, a program under which high-yield varieties of wheat and rice seedlings were planted in the fields of poor farmers. Swaminathan is known as the \"\"Father of Green Revolution in India\"\" for his leadership and"} +{"qid": "test1753", "pid": "19726464", "query": "who sing say you won't let go", "answer": "James Arthur", "passage": "\"Say You Won't Let Go\"\nspending four non-consecutive weeks at the top of the charts. The song has also charted in Australia, France, New Zealand and Sweden. On February 26, 2017, it was announced on Channel 4's \"\"Sunday Brunch\"\" that the single had sold 2 million copies worldwide. A music video to accompany the release of \"\"Say You Won't Let Go\"\" was first released onto YouTube on 9 September 2016 at a total length of three minutes and thirty seconds. Say You Won't Let Go \"\"Say You Won't Let Go\"\" is a song by British singer and songwriter James Arthur. The song was released as"} +{"qid": "test1753", "pid": "19726460", "query": "who sing say you won't let go", "answer": "James Arthur", "passage": "\"Say You Won't Let Go\"\nSay You Won't Let Go \"\"Say You Won't Let Go\"\" is a song by British singer and songwriter James Arthur. The song was released as a digital download on 9 September 2016 in the United Kingdom by Columbia Records as the lead single from his second studio album \"\"Back from the Edge\"\" (2016). The single peaked at the top of the UK Singles Chart, a position it maintained for three weeks. Outside the United Kingdom, the single has topped the charts in Australia, New Zealand, Sweden and the Republic of Ireland. It also became his breakthrough hit in the US,"} +{"qid": "test1754", "pid": "8459385", "query": "who monitor the recovery of the location during a disaster", "answer": "management team", "passage": "\"Disaster recovery plan\"\nstructure of the contingency organization may not be the same as the existing organization chart. The contingency organization is usually structured with teams responsible for major functional areas such as administrative functions, facilities, logistics, user support, computer backup, restoration, and any other important area. The management team is especially important because it coordinates the recovery process. The team assesses the disaster, activates the recovery plan, and contacts team managers. The management team also oversees, documents and monitors the recovery process. It is helpful when management team members are the final decision-makers in setting priorities, policies and procedures. Each team has"} +{"qid": "test1755", "pid": "7766400", "query": "where does the synthesis of new dna from existing dna occurs", "answer": "origins of replication", "passage": "\"Duck plague\"\nhost cell causes separation of the nucleocapsid from viral DNA and proteins. Multiple necessary viral proteins are located within the envelope. DNA and proteins enter the host cell nucleus and turn-off host cell synthesis of nucleic acids, proteins, and other macro molecules. There are two hypothesized origins of replication in the IRS and TRS regions of the genome. Immature capsids are formed from coiled DNA. L genes are transcribed “after the synthesis of DNA and viral protein onset”. Virion DNA maturation occurs as the nucleocapids “budd through nuclear membrane”. Completed viral replication occurs within 12 hours of infection. Vacuoles of"} +{"qid": "test1756", "pid": "8538773", "query": "who sings gimme shelter with mick jagger", "answer": "Merry Clayton", "passage": "\"Merry Clayton\"\nknown for her 1969 duet with Mick Jagger on the Rolling Stones song \"\"Gimme Shelter,\"\" though on some releases her name is misspelled as \"\"Mary.\"\" According to Jagger, this collaboration came about due partially to chance. Jagger states that they thought “it’d be great to have a woman come do the…chorus.” They called Clayton “randomly” in the middle of the night, and she showed up to the studio “in curlers” and did the verse in a few takes, which Jagger remarks is “pretty amazing.” The Stones had asked Bonnie Bramlett to sing on the song, but Bramlett's husband, Delaney, refused"} +{"qid": "test1756", "pid": "8160259", "query": "who sings gimme shelter with mick jagger", "answer": "Merry Clayton", "passage": "\"Gimme Shelter\"\nGimme Shelter \"\"Gimme Shelter\"\" is the opening track to the 1969 album \"\"Let It Bleed\"\" by the Rolling Stones. Greil Marcus, writing in \"\"Rolling Stone\"\" magazine at the time of its release, praised the song, stating that the band has \"\"never done anything better\"\". Although the first word was spelled \"\"Gimmie\"\" on that album, subsequent recordings by the band and other musicians have made \"\"Gimme\"\" the customary spelling. The recording features Richards playing in an open tuning on electric guitar. The recording also features vocals by Merry Clayton. \"\"Gimme Shelter\"\" was written by the Rolling Stones' lead vocalist Mick Jagger"} +{"qid": "test1756", "pid": "8160261", "query": "who sings gimme shelter with mick jagger", "answer": "Merry Clayton", "passage": "\"Gimme Shelter\"\nrecorded at a last-minute late-night recording session during the mixing phase, arranged by her friend and record producer Jack Nitzsche. After the first verse is sung by Jagger, Merry Clayton enters and they share the next three verses. A harmonica solo by Jagger and guitar solo by Richards follow. Then, with great energy, Clayton repeatedly sings \"\"Rape, murder! It's just a shot away! It's just a shot away!\"\", almost screaming the final stanza. She and Jagger then repeat the line \"\"It's just a shot away\"\" and finish with repeats of \"\"It's just a kiss away\"\". When speaking of her inclusion"} +{"qid": "test1756", "pid": "11846241", "query": "who sings gimme shelter with mick jagger", "answer": "Merry Clayton", "passage": "\"Matt Ellis (Australian musician)\"\nthe south and his love for the Mississippi Delta region. There was a surprise performance by gospel great (who sang the duet \"\"Gimme Shelter\"\" with Mick Jagger on the \"\"Let it Bleed\"\" album), Merry Clayton. Ellis mixed the album with Craig Schumacher (Calexico, Devotchka, Iron & Wine, Neko Case, Richard Buckner) at his WaveLab studios in Tucson, Arizona. The lead single, \"\"Heart of Mine\"\", was featured on Andrew Zimmern's \"\"Appetite For Life\"\" and received an Honorable Mention in the International Songwriting Competition in the Americana category. \"\"Heart of Mine\"\"'s music video, directed by Ellis, took home third place for Best"} +{"qid": "test1756", "pid": "8538770", "query": "who sings gimme shelter with mick jagger", "answer": "Merry Clayton", "passage": "\"Merry Clayton\"\nMerry Clayton Merry Clayton (born December 25, 1948) is an American soul and gospel singer and an actress. She provided a number of backing vocal tracks for major performing artists in the 1960s, most notably in her duet with Mick Jagger on the Rolling Stones song \"\"Gimme Shelter.\"\" Clayton is featured in \"\"20 Feet from Stardom\"\", the Oscar-winning documentary about background singers and their contributions to the music industry. In 2013, she released \"\"The Best of Merry Clayton\"\", a compilation of her favorite songs. Clayton was born in Gert Town, New Orleans, Louisiana. Clayton was born on Christmas Day, and"} +{"qid": "test1756", "pid": "8160260", "query": "who sings gimme shelter with mick jagger", "answer": "Merry Clayton", "passage": "\"Gimme Shelter\"\nand guitarist Keith Richards, the band's primary songwriting team. Richards began working on the song's signature opening riff in London whilst Jagger was away filming \"\"Performance\"\". As released, the song begins with Richards performing a guitar intro, soon joined by Jagger's lead vocal. Of \"\"Let It Bleed\"\"'s bleak world view, Jagger said in a 1995 interview with \"\"Rolling Stone\"\" magazine: Similarly, on NPR in 2012: However, the song's inspiration was not initially Vietnam or social unrest, but Keith Richards seeing people scurrying for shelter from a sudden rain storm. According to him: The recording features guest vocals by Merry Clayton,"} +{"qid": "test1757", "pid": "9625852", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Tony Stonem\"\nhospital, the incident where Tony was run over is shown to have profoundly damaged her. One of the Skins writers suggested that prior to Skins: Fire, Effy had moved to London to live with Tony, and they lived together for a while before Tony left with Michelle to which Effy ended up flatting with Naomi. Writer Russell T Davies opines that Tony belongs to the same character archetype as his earlier Stuart Alan Jones, on \"\"Queer as Folk\"\" in being an unlikable character with whom audiences fail to connect, \"\"because there's barely any recognition. Tony isn't believable.\"\" Unlike Davies' character,"} +{"qid": "test1757", "pid": "14798792", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Sid (Skins series 1)\"\ngoes to Sid's house to tell him, also. Sid, sexually frustrated, bored, and looking forward to seeing Michelle decides to go. He changes and escapes from the house while his parents are arguing. At the concert, Tony and Abigail share a scripted kiss scene, upsetting Michelle as Tony seems a bit too into it. Michelle and Sid burst backstage where Michelle finds Tony with his hand up Abigail's shirt. Tony tells Michelle that he was just feeling Abigail's diaphragm but Michelle does not believe this. Furious, Michelle storms from the concert and Tony tells Sid he set it up on"} +{"qid": "test1757", "pid": "14797857", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Jal (Skins series 1)\"\nsongs, Tony snogs Abigail. Jal witnesses Tony's act of betrayal to Michelle, and distraught, sits and broods with Sid. The two agree to go out drinking with a man who had been chatting to Jal. However, he turns out to be an associate of Mad's, and leads them to a narrow alleyway where Mad steals Sid's credit cards and wallet and smashes Jal's expensive clarinet. Jal's brothers, Ace and Lynton chase after Mad, along with Donny, but Mad gets the better of them and they end up hospitalised. Enraged with what Mad did to his daughter, Ronny and his guys"} +{"qid": "test1757", "pid": "19624354", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Tony (Skins series 2)\"\nwant to end up like him. Tony returns to the dorm, where Matt and Toby congratulate him and leave. He has sex with the girl, and afterwards she affectionately tells him not to look back. Back from the university, Tony goes to the club to find Sid and Michelle having sex in the bathroom. He proclaims that he loves both Sid and Michelle, but that it is wrong for them to be together because Sid loves Cassie, and Tony and Michelle love each other. Tony goes home and goes to bed, revealing the girl's tattoo on his back. The scenes"} +{"qid": "test1757", "pid": "14800930", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Michelle (Skins series 1)\"\nrelationship with her father, who is unseen in this episode. Tony and Michelle break up in this episode, which leads to the group isolating Tony in favour of Michelle in the next episode. A number of revelations also change the series' dynamics to set up for the finale. Tony recites Romeo and Juilet to Michelle's window. This is later portrayed in a series 5 episode of \"\"Grace\"\", episode 7 when Rich serenades to grace using the line \"\"It is the east and Juliet is the sun.\"\" which Tony uses but this time Rich climbs up to Grace's room reciting different"} +{"qid": "test1757", "pid": "9768052", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Sid Jenkins\"\nSid Jenkins Sidney \"\"Sid\"\" Jenkins is a fictional character in the television series \"\"Skins\"\" portrayed by Mike Bailey. In the first series, Sid is portrayed as a nice guy stereotype, an unlucky virgin who is nervous around girls, and has low self-esteem. Tony Stonem (his best friend) is his role model, whom he frequently looks up to. However, by the second series, Sid is more dependable and following Tony's accident, becomes more confident in his own skin, leading him to have sexual relationships with both Cassie Ainsworth and Michelle Richardson, as well as standing up for himself more often. Sid"} +{"qid": "test1757", "pid": "14797479", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Tony (Skins series 1)\"\nthe beautiful Michelle and it is revealed that Sid is very attracted to her. Michelle and Tony tell Sid he is being set up with Cassie who was recently in hospital and is good in bed provided she isn't hungry, according to \"\"everyone\"\". Tony asks Sid to pick up some drugs off his dealer, Mad Twatter. Tony auditions for the city chamber choir and succeeds in getting a part. He then flirts with a private school girl Abigail Stock and agrees to attend her house party with his friends. Most of his friends, however, have other plans. Tony's gay friend"} +{"qid": "test1757", "pid": "14801153", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Effy (Skins series 1)\"\nthe first time before passing out. As they wait at the meeting point, Tony admits to Sid that he manipulated Michelle to break up with Josh. Sid is disgusted and they two get into a brief fist fight. Sid calls him a selfish monster and leaves. Tony is picked up by a stranger on a motorbike, who offers to take him to Effy. Sid calls Cassie and they meet at a fast food restaurant and make up. Tony is taken to Josh's club, and calls Michelle to tell her where he is. In turn, she calls Sid to inform him"} +{"qid": "test1757", "pid": "10315736", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Kim Bauer\"\nher to shoot him, which she does and later Kate Warner is sent to pick up Kim who is overwhelmed. She ends the season in the arms of her father, who is going to a hospital for the treatment of the wounds inflicted on him during the day. Kim starts her internship for CTU during the time of Vice President Prescott's assassination. However, Tony Almeida and Michelle Dessler are reluctant to take her in due to the day's events. Instead, CTU analyst Sean Walker welcomes her with open arms, having her work in the tech wing. Tony and Michelle's bad"} +{"qid": "test1757", "pid": "9768072", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Sid Jenkins\"\nthis was intended as a reference to Sid. Sid Jenkins Sidney \"\"Sid\"\" Jenkins is a fictional character in the television series \"\"Skins\"\" portrayed by Mike Bailey. In the first series, Sid is portrayed as a nice guy stereotype, an unlucky virgin who is nervous around girls, and has low self-esteem. Tony Stonem (his best friend) is his role model, whom he frequently looks up to. However, by the second series, Sid is more dependable and following Tony's accident, becomes more confident in his own skin, leading him to have sexual relationships with both Cassie Ainsworth and Michelle Richardson, as well"} +{"qid": "test1757", "pid": "14800923", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Michelle (Skins series 1)\"\nMichelle (Skins series 1) \"\"Michelle\"\" is the seventh episode of the first series of the British teen drama \"\"Skins\"\". It was written by Bryan Elsley and directed by Minkie Spiro Michelle at e4.com/skins It premiered on E4 on 8 March 2007. It is told from the point of view of main character Michelle Richardson. Michelle angrily watches Tony and Maxxie hang out together on the Green as if none of the events of the previous episode happened. She breaks up with Tony for not confessing to cheating on her. Jal attempts to comfort her and Maxxie attempts"} +{"qid": "test1757", "pid": "14800931", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Michelle (Skins series 1)\"\nparts of the scene in the play. Michelle (Skins series 1) \"\"Michelle\"\" is the seventh episode of the first series of the British teen drama \"\"Skins\"\". It was written by Bryan Elsley and directed by Minkie Spiro Michelle at e4.com/skins It premiered on E4 on 8 March 2007. It is told from the point of view of main character Michelle Richardson. Michelle angrily watches Tony and Maxxie hang out together on the Green as if none of the events of the previous episode happened. She breaks up with Tony for not confessing to cheating on her. Jal"} +{"qid": "test1757", "pid": "14798795", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Sid (Skins series 1)\"\npeople, and the two dance. Just as it seems Sid and Michelle are going to finally get together, Tony shows up and reconciles with Michelle. Sid tries to leave, but Tony holds him back, making Sid watch while Tony steals the girl right out from under him. Cassie attempts suicide up on one of her favourite park benches, one with a view of some of Bristol's housing estates. She takes many pills with vodka. Sid rings Cassie's mobile but gets through to Jal who is riding in the ambulance with her. Sid goes to the hospital, but an angry Jal"} +{"qid": "test1757", "pid": "9392770", "query": "who does tony end up with on skins", "answer": "Michelle", "passage": "\"Skins (UK TV series)\"\ndate Josh Stock (Abigail's brother, played by Ben Lloyd-Hughes) until Tony breaks them up by sending naked photos of Abigail from Josh's phone. In \"\"Effy\"\", Josh seeks revenge on Tony and his younger sister Effy, by drugging her and effectively taking her for ransom. In the finale episode, \"\"Everyone\"\", it is Anwar's birthday. Anwar and Maxxie are reconciled when Anwar's father welcomes Maxxie to the birthday party, accepting his homosexuality. Chris' relationship with Angie ends violently when her fiancé returns. Tony confesses to Michelle that he loves her and wants to change his manipulative ways (whilst on the phone), only"} +{"qid": "test1759", "pid": "19661071", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\nYou Get Me (film) You Get Me is a 2017 American thriller film directed by Brent Bonacorso and written by Ben Epstein. The film stars Bella Thorne, Halston Sage, Taylor John Smith, Anna Akana and Nash Grier. It was released on Netflix on June 23, 2017. Tyler is a high school student in love with his girlfriend Alison 'Ali'. One night at a party, Tyler discovers that Ali used to be a heavy partier and would often drink and sleep around. Tyler gets angry and the couple break up. Outside the party, he meets the mysterious Holly. They end up"} +{"qid": "test1759", "pid": "19661073", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\nsoon becomes suspicious of Holly when she discovers Holly’s lack of any social media presence. Some time passes and Tyler begins to suspect that Holly is dangerous, especially when meeting her stepmom, Corinne, who reveals that Holly takes medication for a mental disorder. The next day, Holly intentionally causes Lydia to have an extreme allergic reaction after overhearing her telling Ali that she doesn't buy Holly’s story and is going to find out what's going on. Holly later shows up at Tyler’s house, telling him that she wants the two of them to get back together. When Tyler rebukes her,"} +{"qid": "test1759", "pid": "19661074", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\nHolly tells Ali that she and Tyler slept together. Tyler and Ali meet at the beach, where he confesses everything to her. Ali states that she never wants to talk to him again, before leaving. Holly then proceeds to get Tyler suspended, saying that he assaulted her. While on suspension, Tyler finds out that Holly's real first name is Elizabeth, and then looks her up online and discovers that she violently assaulted another female student over a boy, and was interred to a mental institution for a while as a result. That night, Ali is kidnapped by Holly, and Tyler"} +{"qid": "test1759", "pid": "19661075", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\nsoon comes to this deduction himself when Ali fails to respond to his text messages or calls. Meanwhile, Ali awakens to discover that she has been tied up and bound to a chair in Holly's house. Corinne comes home and finds Ali, and attempts to rescue her. However, Holly sneaks up behind Corinne and suffocates her with a plastic bag, killing her. When Tyler arrives at Holly’s house, he discovers Ali unconscious. Ali has been tied mid-air to the ceiling, forehead bleeding. Tyler manages to free Ali, and the two escape outside, but, before they can get away, Holly stops"} +{"qid": "test1759", "pid": "19661078", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\nlacking in originality but also dullness. Felix Vasquez Jr. of \"\"Cinema Crazed\"\" describes it as \"\"an abysmal entry in to this ridiculous sub-genre\"\" and that although the film aspires to be \"\"Fatal Attraction\"\", \"\"it barely registers as a \"\"Swimfan\"\" clone\"\". You Get Me (film) You Get Me is a 2017 American thriller film directed by Brent Bonacorso and written by Ben Epstein. The film stars Bella Thorne, Halston Sage, Taylor John Smith, Anna Akana and Nash Grier. It was released on Netflix on June 23, 2017. Tyler is a high school student in love with his girlfriend Alison 'Ali'. One"} +{"qid": "test1759", "pid": "19661076", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\nthem at gunpoint. Holly shoots Tyler in the shoulder and then Ali picks up the fire poker, which Tyler had dropped when the two were confronted by Holly, and stabs Holly. Later, Holly, still alive, is wheeled into the back of an ambulance and asks the paramedic man to never leave her and makes him promise. Bella Thorne and Halston Sage were cast as female leads Holly and Ali, respectively in March 2016. Taylor John Smith was cast as male lead Tyler in April 2016. Added to the cast at the same time were Nash Grier, Anna Akana, Garcelle Beauvais"} +{"qid": "test1759", "pid": "19661072", "query": "who does tyler end up with in you get me", "answer": "Ali", "passage": "\"You Get Me (film)\"\npartying and sleeping together. They spend the rest of the weekend in Holly's huge house, with Holly telling Tyler her father died and her stepmom travels a lot. Tyler says that the weekend was special before leaving, seemingly forgetting all about Ali. Tyler gets back together with Ali the following day, and while at school, notices Holly. Holly reveals that she goes there now and wanted to surprise him. Tyler tries cutting ties with Holly multiple times but he fails each time. Holly starts hanging out with Ali, as well as Ali and Tyler’s friends, Gil and Lydia. Lydia, however,"} +{"qid": "test176", "pid": "12186126", "query": "who played ricky in secret life of the american teenager", "answer": "Daren Maxwell Kagasoff", "passage": "\"Daren Kagasoff\"\nDaren Kagasoff Daren Maxwell Kagasoff \"\"[KA-guh-sawf]\"\" (born September 16, 1987) is an American actor. He is known for starring as Ricky Underwood on the ABC Family teen drama series \"\"The Secret Life of the American Teenager\"\" from 2008 to 2013. Kagasoff was born in Encino, California to Elise Kagasoff (née Levy) and Barry Kagasoff, a diamond merchant. He is the middle of three children; he has an older brother, Justin, and a younger sister, Natalie. Kagasoff graduated from Montclair Preparatory High School in 2005 where he played on his school's baseball team. While attending school at San Francisco State University,"} +{"qid": "test176", "pid": "12186129", "query": "who played ricky in secret life of the american teenager", "answer": "Daren Maxwell Kagasoff", "passage": "\"Daren Kagasoff\"\nDaren Kagasoff Daren Maxwell Kagasoff \"\"[KA-guh-sawf]\"\" (born September 16, 1987) is an American actor. He is known for starring as Ricky Underwood on the ABC Family teen drama series \"\"The Secret Life of the American Teenager\"\" from 2008 to 2013. Kagasoff was born in Encino, California to Elise Kagasoff (née Levy) and Barry Kagasoff, a diamond merchant. He is the middle of three children; he has an older brother, Justin, and a younger sister, Natalie. Kagasoff graduated from Montclair Preparatory High School in 2005 where he played on his school's baseball team. While attending school at San Francisco State University,"} +{"qid": "test1760", "pid": "20518266", "query": "who won the gold for the men's figure skating", "answer": "Yuzuru Hanyu", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\nFigure skating at the 2018 Winter Olympics – Men's singles The men's single figure skating competition of the 2018 Winter Olympics was held on 16 and 17 February 2018 at the Gangneung Ice Arena in Gangneung, South Korea. The short program was held on 16 February and the free skating was held on 17 February. This medal event was the 1000th medal event in the history of the Winter Olympic Games. With his victory at the 2018 Winter Olympics, Yuzuru Hanyu became the first male figure skater to win two consecutive gold medals after Dick Button, who did so in"} +{"qid": "test1761", "pid": "13370617", "query": "when did the song holiday road come out", "answer": "1983", "passage": "\"Holiday Road\"\nHoliday Road \"\"Holiday Road\"\" is a 1983 single written, composed, and recorded by former Fleetwood Mac guitarist Lindsey Buckingham. The song was written for the 1983 film \"\"National Lampoon's Vacation.\"\" The song was also used in the sequels \"\"National Lampoon's European Vacation,\"\" \"\"Vegas Vacation,\"\" and \"\"Vacation.\"\" While the song peaked at only No. 82 on the \"\"Billboard\"\" Hot 100 chart, it has since become one of Buckingham's best known songs. Buckingham released a live version of the song on his 2008 album \"\"Live at the Bass Performance Hall.\"\" In July of 2015, a remastered edition of \"\"Holiday Road\"\" was re-released,"} +{"qid": "test1761", "pid": "13370620", "query": "when did the song holiday road come out", "answer": "1983", "passage": "\"Holiday Road\"\nthe comedy podcast Dynamic Banter, hosted by Mike Falzone and Steve Zaragoza. The parody was made by and features the voice of their friend Owen Carter. Holiday Road \"\"Holiday Road\"\" is a 1983 single written, composed, and recorded by former Fleetwood Mac guitarist Lindsey Buckingham. The song was written for the 1983 film \"\"National Lampoon's Vacation.\"\" The song was also used in the sequels \"\"National Lampoon's European Vacation,\"\" \"\"Vegas Vacation,\"\" and \"\"Vacation.\"\" While the song peaked at only No. 82 on the \"\"Billboard\"\" Hot 100 chart, it has since become one of Buckingham's best known songs. Buckingham released a live"} +{"qid": "test1761", "pid": "5573381", "query": "when did the song holiday road come out", "answer": "1983", "passage": "\"Spotlight (Madonna song)\"\nrock band Sly and the Family Stone. In 1983, Curtis Hudson and Lisa Stevens of the group Pure Energy had written the song \"\"Holiday\"\", which Madonna recorded and released as the third single from her self-titled debut album. After the single's commercial success, Hudson wrote a song sounding like \"\"Holiday\"\", in case Warner Bros., Madonna's record company, wanted to release a similar sounding single. He named it \"\"Spotlight\"\" and offered it to Madonna, who recorded the song for her 1986 album \"\"True Blue\"\" but did not include it because of its similarity to \"\"Holiday\"\". When Madonna decided to create \"\"You"} +{"qid": "test1764", "pid": "8028892", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"Rational Dress Society\"\nan opportunity to escape overly restrictive societal norms. In 1889, a member of the Rational Dress Society, Charlotte Carmichael Stopes, staged a coup at a meeting of the British Association for the Advancement of Science in Newcastle upon Tyne, when she arranged an impromptu addition to the programme on the subject of rational dress. Her speech was reported by newspapers across Britain and the notion of rational dress was the biggest news from the meeting. Rational Dress Society The Rational Dress Society was an organisation founded in 1881 in London. It described its purpose thus: \"\"The Rational Dress Society protests"} +{"qid": "test1764", "pid": "8028890", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"Rational Dress Society\"\nRational Dress Society The Rational Dress Society was an organisation founded in 1881 in London. It described its purpose thus: \"\"The Rational Dress Society protests against the introduction of any fashion in dress that either deforms the figure, impedes the movements of the body, or in any way tends to injure the health. It protests against the wearing of tightly-fitting corsets; of high-heeled shoes; of heavily-weighted skirts, as rendering healthy exercise almost impossible; and of all tie down cloaks or other garments impeding on the movements of the arms. It protests against crinolines or crinolettes of any kind as ugly"} +{"qid": "test1764", "pid": "8437768", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"Bohemian style\"\n20th century, 80% of stenographers were women. By this time, such movements as the Rational Dress Society (1881), with which the Morrises and Georgiana Burne-Jones were involved, were beginning to exercise some influence on women's dress, although the pre-Raphaelite look was still considered \"\"advanced\"\" in the late years of the 19th century. Queen Victoria's precocious daughter Princess Louise, an accomplished painter and artist who mixed in bohemian circles, was sympathetic to rational dress and to the developing women's movement generally (although her rumoured pregnancy at the age of 18 was said to have been disguised by tight corsetry). However, it"} +{"qid": "test1764", "pid": "20514388", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"Florence Wallace Pomeroy, Viscountess Harberton\"\nPomeroy became involved in the campaign for dress reform in 1880, after the death of her daughter Aline. In 1883 she became President of the Rational Dress Society (which she possibly co-founded in 1881), which described the attributes of \"\"perfect\"\" dress as: In 1893, \"\"The Guardian\"\" mentioned her \"\"Short Skirts League\"\" whose members would wear skirts of at least above the ground when out walking. In 1898, she founded the Rational Dress League. She was a keen cyclist, and one of her most celebrated moments was when the landlady of the Hautboy Inn at Ockham, Surrey, refused to serve her"} +{"qid": "test1764", "pid": "1634484", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"Bicycle touring\"\nwithin him. Wells puts Hoopdriver in a new brown cycling suit to show the importance of the venture and the freedom on which he is embarking. Hoopdriver finds the bicycle raises his social standing, at least in his imagination, and he calls to himself as he rides that he's \"\"a bloomin' dook \"\" The New Woman that he pursues wears Rational Dress of a sort that scandalised society but made cycling much easier. The Rational Dress Society was founded in 1881 in London. It said: The Rational Dress Society protests... against crinolines or crinolettes of any kind as ugly and"} +{"qid": "test1764", "pid": "19973358", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"E. M. King\"\nlecture in Dublin in 1878 on equal suffrage, King appears to have withdrawn from public life between 1875 and 1881. For part of this time she was resident in Dresden, Germany with her daughters. While there she wrote to Florence Pomeroy, Viscountess Harberton in support of her views on dress reform and, on her return to England in 1882, they established the Rational Dress Society with Lady Harberton as president and King as honorary secretary. King resumed her public role with addresses and publications on dress reform and announced that the Rational Dress Society would stage an exhibition in 1883."} +{"qid": "test1764", "pid": "10339326", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "Dress\nStates who were involved in dress reform in the 1850s found themselves the center of attention, both positive and negative. By 1881, the Rational Dress Society had formed in reaction to the restrictive dress of the era. In the early twentieth century, the look popularized by the Gibson Girl was fashionable. The upper part of women's dresses in the Edwardian era included a \"\"pigeon breast\"\" look that gave way to a corseted waist and an s-shaped silhouette. Women called their dresses \"\"waists\"\" if one-piece, or \"\"shirtwaists,\"\" if it consisted of a skirt and a blouse. The bodice of the dresses"} +{"qid": "test1764", "pid": "19773066", "query": "when did the rational dress society begin to work", "answer": "1881", "passage": "\"Ada Ballin\"\nfather and her elder brother and still a student at UCL. She published the \"\"Science of Dress\"\" in 1885 which gave a range of advice to women and their children. She continued her association with UCL and she was attending their UC Society meetings in 1886. Ballin was the editor of the monthly illustrated journal \"\"Baby: the Mothers' Magazine\"\" in 1887 which proposed that babies should be dressed in wool with their arms free. She married Alfred Thompson in 1881. She launched and edited \"\"Womanhood\"\" in 1898 which she targeted at the New Woman. The magazine proposed rational dress as"} +{"qid": "test1765", "pid": "190963", "query": "why is the indian ocean the warmest in the world", "answer": "human induced greenhouse warming", "passage": "\"Indian Ocean\"\nthe Indian subcontinent. In the southern hemisphere, the winds are generally milder, but summer storms near Mauritius can be severe. When the monsoon winds change, cyclones sometimes strike the shores of the Arabian Sea and the Bay of Bengal. The Indian Ocean is the warmest ocean in the world. Long-term ocean temperature records show a rapid, continuous warming in the Indian Ocean, at about during 1901–2012. Indian Ocean warming is the largest among the tropical oceans, and about 3 times faster than the warming observed in the Pacific. Research indicates that human induced greenhouse warming, and changes in the frequency"} +{"qid": "test1766", "pid": "18693478", "query": "where was the film manchester by the sea filmed", "answer": "Lynn", "passage": "\"Manchester by the Sea (film)\"\nManchester by the Sea (film) Manchester by the Sea is a 2016 American drama film written and directed by Kenneth Lonergan and starring Casey Affleck, Michelle Williams, Kyle Chandler, and Lucas Hedges. The plot follows a man after his brother dies and he is entrusted with caring for his teenage nephew. The film premiered at the Sundance Film Festival on January 23, 2016, and was soon picked up by Amazon Studios for distribution. \"\"Manchester by the Sea\"\" was filmed during March and April 2015 in the Massachusetts town of the same name as well as Beverly, Essex, Gloucester, Swampscott, Lynn,"} +{"qid": "test1766", "pid": "18693511", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nAll music is written by Lesley Barber unless otherwise noted. The orchestra was conducted by James Shearman. Jacoba Barber-Rozema, Barber's daughter, provided additional vocals. The album was recorded and mixed by XXX, and edited by Mick Gormley. The album was produced by Barber and Stefan Karrer. Manchester by the Sea (film) Manchester by the Sea is a 2016 American drama film written and directed by Kenneth Lonergan and starring Casey Affleck, Michelle Williams, Kyle Chandler, and Lucas Hedges. The plot follows a man after his brother dies and he is entrusted with caring for his teenage nephew. The film premiered"} +{"qid": "test1766", "pid": "13610762", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"The Butterfly Tattoo (film)\"\nof behind the scenes videos were released online during the production. The score was composed by Richard Bodgers, whilst several bands local to the Oxford area where the film was shot also contributed to the soundtrack. The film had its public première on 13 September 2008 at the International Film by the Sea festival in Vlissingen, Netherlands. This was followed by screenings at the Dutch Film Festival, the New York International Independent Film and Video Festival, where it was the opening feature, and the Exposures Film Festival in Manchester. The film had a limited release in Los Angeles on 17"} +{"qid": "test1766", "pid": "19303598", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Mary Mallen\"\nRepertory Theatre in the critically acclaimed production of \"\"Juno and the Paycock,\"\" where she gave \"\"the standout performance\"\" as Mary Boyle. Mallen appeared as Sharon in writer-director Kenneth Lonergan’s \"\"Manchester by the Sea\"\", which premiered at the 2016 Sundance Film Festival. Mary Mallen Mary Catherine Mallen is an American actress and singer. Since graduating from The Royal Academy of Dramatic Art, she has appeared in various theatrical productions. She also acted as Sharon in Kenneth Lonergan’s film \"\"Manchester by the Sea\"\". Mallen was born in Boston, Massachusetts, the daughter of Julie and Joseph. She began acting at the age of"} +{"qid": "test1766", "pid": "18693505", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nthe 74th ceremony: Best Picture, Best Director, Best Supporting Actress (for Williams) and Best Screenplay. \"\"Manchester by the Sea\"\" received six nominations at the 70th British Academy Film Awards: Best Film, Best Direction, Best Actor in a Leading Role (Affleck), Best Actress in a Supporting Role (Williams), and Best Original Screenplay (Longergan). Affleck won Best Actor in a Leading Role and Lonergan won Best Original Screenplay. The National Board of Review listed the film as their top of 2016. Lesley Barber was selected to score the film, as she had previously worked on Lonergan's film \"\"You Can Count On Me\"\"."} +{"qid": "test1766", "pid": "18693494", "query": "where was the film manchester by the sea filmed", "answer": "Lynn", "passage": "\"Manchester by the Sea (film)\"\nbefore filming. Principal photography began on March 23, 2015, in the namesake town of Manchester-by-the-Sea, Massachusetts. Filming took place elsewhere on the North Shore, at locations in Beverly, Essex, Gloucester, Swampscott, Lynn, Middleton, Tewksbury, and Salem. Filming wrapped a month later on April 30, 2015. In October 2018, Damon revealed in an interview with \"\"The Bill Simmons Podcast\"\" that Lonergan had originally planned to shoot a different ending to the film. It would have been a retreating drone shot of a flashback of Affleck's and William's characters, along with their children and extended family, on his brother's boat, whale watching"} +{"qid": "test1766", "pid": "19905956", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"London Film Critics Circle Awards 2016\"\nLondon Film Critics Circle Awards 2016 The 37th London Film Critics' Circle Awards, honouring the best in film for 2016, were announced by the London Film Critics' Circle on 22 January 2017. La La Land Toni Erdmann I, Daniel Blake Fire at Sea Casey Affleck – \"\"Manchester by the Sea\"\" Isabelle Huppert – \"\"Things to Come\"\" Mahershala Ali – \"\"Moonlight\"\" Tom Bennett – \"\"Love & Friendship\"\" Naomie Harris – \"\"Moonlight\"\" Andrew Garfield – \"\"Hacksaw Ridge\"\" and \"\"Silence\"\" Kate Beckinsale – \"\"Love & Friendship\"\" Lewis MacDougall – \"\"A Monster Calls\"\" László Nemes – \"\"Son of Saul\"\" Kenneth Lonergan – \"\"Manchester by"} +{"qid": "test1766", "pid": "18693499", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nwell as the performances of Affleck, Williams and Hedges. After an early screening at the Sundance Festival, \"\"Rolling Stone\"\" called it the \"\"must-see film\"\" of the 2016. As more critic reviews were published, Rotten Tomatoes assigned the film an approval rating of 95% based on 308 reviews, with an average rating of 8.9/10. The website's critical consensus reads, \"\"\"\"Manchester by the Sea\"\" delivers affecting drama populated by full-bodied characters, marking another strong step forward for writer-director Kenneth Lonergan.\"\" On Metacritic, the film has a weighted average score of 96 out of 100 based on 52 critics, indicating \"\"universal acclaim\"\". According"} +{"qid": "test1766", "pid": "18693497", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\n2016. The Toronto International Film Festival screened the film on September 13, 2016. The New York Film Festival (which ran from September 30–October 16, 2016) included the film in its \"\"main slate,\"\" and invited Longergan to participate in audience question-and-answer sessions after the October 2 and 11, 2016 screenings of the film. and the BFI London Film Festival on October 8, 2016. The film was theatrically released on November 18, 2016. The film was made available to stream on Amazon in the US on February 7, 2017, and on Amazon Prime on May 5 of that year. \"\"Manchester by the"} +{"qid": "test1766", "pid": "12360624", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Edge of Darkness (2010 film)\"\nWilliam Monahan (fresh from winning an Academy Award for King's \"\"The Departed\"\") to re-write the screenplay. Michael Wearing and BBC Films also co-produced the film. Filming began on 18 August 2008 in Boston, Massachusetts. A scene where Craven scatters his daughter's ashes at a beach was filmed at Rockport on 25 and 26 September. They shot some scenes in Merrimac, Massachusetts from 15 September 2008 to 18 September 2008. Additional scenes were shot in Malden, Massachusetts in the old Malden hospital. Some of the final scenes were shot at a home in Manchester-by-the-Sea, Massachusetts. Additionally, Gibson and his crew set"} +{"qid": "test1766", "pid": "18693504", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nhold it without weeping and wailing and gnashing your teeth. To be there, and not be there.\"\" \"\"Manchester by the Sea\"\" received six nominations at the 89th Academy Awards: Best Picture, Best Director, Best Actor (Affleck), Best Supporting Actor (Hedges), Best Supporting Actress (Williams) and Best Original Screenplay, winning two for Best Original Screenplay for Lonergan and Best Actor for Affleck. It was the first-ever film released by a digital streaming service to be nominated for Best Picture. Affleck won the Golden Globe Award for Best Actor – Motion Picture Drama; the film was nominated for four additional awards at"} +{"qid": "test1766", "pid": "11880523", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"The Proposal (2009 film)\"\n24 hours. Filming continued at the Motif Number One building on Bradley Wharf (April 14–16), the Haskins Building (April 15–18), and the central business district of Rockport (April 17). Principal photography relocated to Manchester-by-the-Sea, Massachusetts on April 22, where it resumed over an approximate period of two weeks. In response, city officials accommodated the producers by renting out all publicly owned parking lots. Filming for \"\"The Proposal\"\" was shortly delayed after Bullock and her husband were involved in a car accident. The wedding scene was filmed in a three-story twentieth century Victorian home; photography took place at the residence for"} +{"qid": "test1766", "pid": "19887791", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"San Diego Film Critics Society Awards 2016\"\nSan Diego Film Critics Society Awards 2016 The 21st San Diego Film Critics Society Awards were announced on December 12, 2016. Hell or High Water David Mackenzie – \"\"Hell or High Water\"\" Casey Affleck – \"\"Manchester by the Sea\"\" Sônia Braga – \"\"Aquarius\"\" Mahershala Ali – \"\"Moonlight\"\" (TIE) Ben Foster – \"\"Hell or High Water\"\" (TIE) Michelle Williams – \"\"Manchester by the Sea\"\" Ryan Gosling – \"\"The Nice Guys\"\" Taylor Sheridan – \"\"Hell or High Water\"\" Whit Stillman – \"\"Love & Friendship\"\" Kubo and the Two Strings Weiner Mountains May Depart Giles Nuttgens – \"\"Hell or High Water\"\" Mary Zophres"} +{"qid": "test1766", "pid": "17692848", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"All at Sea (TV series)\"\nunexplained reasons and it has never been released on DVD. All at Sea (TV series) All at Sea is a short-lived British children's television sitcom set in a bed and breakfast. It stars Nicola Stephenson, Steve Edge, Ryan Wilkinson, Olivia Cosgrove and Sam Hattersley amongst others. It is filmed on location in Scarborough and various locations around South Manchester (principally Stockport) and at studios in Manchester. The house filmed is located in Bowdon, Altricham. It is produced by CBBC (CBBC's in-house production company) A second series began airing in September 2014. The series was nominated for the 2014 Kids' BAFTA"} +{"qid": "test1766", "pid": "18693498", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nSea\"\" grossed $47.7 million in the United States and Canada and $31.3 million in other territories for a worldwide total of $79 million, against a production budget of $9 million. The film began a limited release on November 18, 2016, and grossed $256,498 from four theaters for the weekend, making for a per-theater average of $64,125. It began a wide release on December 16, 2016, opening against \"\"Rogue One\"\" and \"\"Collateral Beauty\"\", and grossed $4.2 million, finishing 6th at the box office. \"\"Manchester by the Sea\"\" received largely positive reviews, with particular praise reserved for Lonergan's screenplay and direction, as"} +{"qid": "test1766", "pid": "17692845", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"All at Sea (TV series)\"\nAll at Sea (TV series) All at Sea is a short-lived British children's television sitcom set in a bed and breakfast. It stars Nicola Stephenson, Steve Edge, Ryan Wilkinson, Olivia Cosgrove and Sam Hattersley amongst others. It is filmed on location in Scarborough and various locations around South Manchester (principally Stockport) and at studios in Manchester. The house filmed is located in Bowdon, Altricham. It is produced by CBBC (CBBC's in-house production company) A second series began airing in September 2014. The series was nominated for the 2014 Kids' BAFTA awards for Best Comedy. It was nominated again in 2015"} +{"qid": "test1766", "pid": "7588668", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Kenneth Lonergan\"\nEnd\"\". Justin Chang of \"\"Variety\"\" noted that Lonergan is \"\"always a superb director of actresses,\"\" particularly in “Manchester by the Sea” where the director \"\"gives the women in his ensemble their due.\"\" Lonergan is married to actress J. Smith-Cameron. They have one daughter, Nellie. Kenneth Lonergan Kenneth Lonergan (born October 16, 1962) is an American film director, playwright, and screenwriter. He is best known for co-writing \"\"Gangs of New York\"\" (2002), and for writing and directing \"\"You Can Count On Me\"\" (2000), \"\"Margaret\"\" (2011), and \"\"Manchester by the Sea\"\" (2016). Lonergan earned an Academy Award nomination as Best Director for"} +{"qid": "test1766", "pid": "19894294", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Dallas–Fort Worth Film Critics Association Awards 2016\"\ntop honors: Best Picture, Best Director (Barry Jenkins), Best Supporting Actor (Mahershala Ali), and the Russell Smith Award. \"\"La La Land\"\" and \"\"Manchester by the Sea\"\" both won two awards. \"\"Manchester by the Sea\"\" won Best Actor (Casey Affleck) and Best Screenplay (Kenneth Lonergan), while \"\"La La Land\"\" won Best Cinematography (Linus Sandgren) and Best Musical Score (Justin Hurwitz). Winners are listed first and highlighted with boldface. Other films ranked by the annual poll are listed in order. While most categories saw 5 honorees named, categories ranged from as many as 10 (Best Film) to as few as 2 (Best"} +{"qid": "test1766", "pid": "19905957", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"London Film Critics Circle Awards 2016\"\nthe Sea\"\" Babak Anvari – \"\"Under the Shadow\"\" Brady Hood – \"\"Sweet Maddie Stone\"\" \"\"Victoria\"\" – Sturla Brandth Grøvlen, cinematography London Film Critics Circle Awards 2016 The 37th London Film Critics' Circle Awards, honouring the best in film for 2016, were announced by the London Film Critics' Circle on 22 January 2017. La La Land Toni Erdmann I, Daniel Blake Fire at Sea Casey Affleck – \"\"Manchester by the Sea\"\" Isabelle Huppert – \"\"Things to Come\"\" Mahershala Ali – \"\"Moonlight\"\" Tom Bennett – \"\"Love & Friendship\"\" Naomie Harris – \"\"Moonlight\"\" Andrew Garfield – \"\"Hacksaw Ridge\"\" and \"\"Silence\"\" Kate Beckinsale –"} +{"qid": "test1766", "pid": "18959482", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Collateral Beauty\"\nin New York City, where filming also took place in Queens and Manhattan. On March 10, 2016, filming took place at the Whitney Museum of American Art. \"\"Collateral Beauty\"\" was released by Warner Bros. on December 16, 2016. \"\"Collateral Beauty\"\" grossed $31 million in the United States and Canada and $57.2 million in other territories for a worldwide total of $88.2 million, against a production budget of $36 million. The film was released alongside \"\"Rogue One\"\" and the wide expansion of \"\"Manchester by the Sea\"\", and was initially expected to gross $11–13 million from 3,028 theaters in its opening weekend,"} +{"qid": "test1766", "pid": "18693483", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nof these events, Lee is reluctant to commit to the guardianship and unwilling to move back to Manchester, where the locals treat him as an outcast. He begins planning for Patrick to move to Boston with him. Patrick is deeply rooted in the Manchester community and strongly objects to the idea. Lee commits to staying only through the end of the school year. Over time, Patrick and Lee re-establish their bond, despite conflicts about Joe's boat, Patrick's girlfriends, and their future living arrangements. Through flashbacks, Patrick's mother Elise is shown to have had substance abuse problems and abandoned the family,"} +{"qid": "test1766", "pid": "18693502", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\n\"\"Manchester\"\" doesn’t just ask for time and effort; it earns it.\"\" In a mixed review, Lanre Bakare of \"\"The Guardian\"\" gave the film three-out-of five stars, saying the \"\"impact of this impressive drama is suffocated by the silence and suffering of its central character.\"\" The film was included on many end-of-year lists, including those of the American Film Institute, \"\"Rolling Stone\"\", the BBC, \"\"The New York Times\"\", the \"\"Los Angeles Times\"\", and \"\"The Washington Post\"\". The scene which drew the most critical praise featured the characters Randi and Lee speaking again years after their divorce. Anthony Lane called it the"} +{"qid": "test1766", "pid": "19115267", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Loving (2016 film)\"\nits sixth weekend, at 572 locations, while still maintaining its No. 2 spot in the limited release box office, behind \"\"Manchester by the Sea\"\" (2016); it earned $633,993, for a $6.8 million domestic cumulative. By its seventh weekend, \"\"Loving\"\" fell to the fifth-highest-grossing film for the weekend within the limited release box office. \"\"BoxOffice\"\" estimated that during the holiday weekend, \"\"Loving\"\" was expected to gross $76,930 in the three-day frame, while hitting $107,730 for the four-day weekend, where it grossed $92,919. \"\"Loving\"\" received praise for its acting, Nichols' direction and screenplay, and the film's faithfulness to the Lovings' account. On"} +{"qid": "test1766", "pid": "18693490", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nI don't like this lie that everybody gets over things that easily. Some people can't get over something major that's happened to them at all; why can’t they have a movie too?\"\" The film's events take place through the cultural filter of a blue-collar, New England community. John Krasinski and Matt Damon initially approached Lonergan about developing the story in New England. As Lonergan researched the areas surrounding Manchester-by-the-Sea, he sought to include details specific to the area, such as its distance from Quincy, the delayed burial because of the frozen ground in a historical cemetery, and the realities of"} +{"qid": "test1766", "pid": "15324856", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Ciarán Griffiths\"\nHilton Hotel in Manchester. He has also appeared in adverts, including the BT vision advert where he is featured having his hair washed. In 2016, he appeared in \"\"Vera\"\", on ITV in the episode, \"\"The Sea Glass\"\", he played the role of Steve Stonnall. On New Year's Day 2018, Griffiths made a guest appearance in the BBC One soap opera, \"\"EastEnders\"\", playing Milo. Film Television Video Games Griffiths is an avid supporter of Manchester United. Ciarán Griffiths Ciarán Joseph Griffiths (; born 3 March 1983; Manchester, England) is an English actor, best known for his roles as Gary Best in"} +{"qid": "test1766", "pid": "1092096", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester-by-the-Sea, Massachusetts\"\nan iridescent color when the sun sets. This beach is quite popular during summer months in particular because it is easily accessible from Boston by a half-mile walk from the MBTA train station. Also located on this historic beach is the famous tourist attraction \"\"Eaglehead\"\", a rock composite that is the focal point of rock climbing and other recreation activities. The town provided the backdrop for these films: It was also featured in a season of the TV series \"\"This Old House\"\", and was featured in a \"\"Main Streets and Back Roads\"\" episode of \"\"Chronicle\"\". Manchester-by-the-Sea, Massachusetts Manchester-by-the-Sea (or simply"} +{"qid": "test1766", "pid": "7588663", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Kenneth Lonergan\"\nKenneth Lonergan Kenneth Lonergan (born October 16, 1962) is an American film director, playwright, and screenwriter. He is best known for co-writing \"\"Gangs of New York\"\" (2002), and for writing and directing \"\"You Can Count On Me\"\" (2000), \"\"Margaret\"\" (2011), and \"\"Manchester by the Sea\"\" (2016). Lonergan earned an Academy Award nomination as Best Director for \"\"Manchester by the Sea\"\", and was nominated for an Academy Award for Best Original Screenplay for \"\"You Can Count On Me\"\", \"\"Gangs of New York\"\", and \"\"Manchester by the Sea\"\", winning for the latter at the 89th Academy Awards. He also won the BAFTA"} +{"qid": "test1766", "pid": "18693496", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Manchester by the Sea (film)\"\nfilm was executive produced by Josh Godfrey, John Krasinski, Declan Baldwin, and Bill Migliore. The film had its world premiere on January 23, 2016, at the Sundance Film Festival. Shortly after, Amazon Studios acquired U.S. distribution rights to the film for $10 million, beating Sony Pictures Classics, Universal Pictures, Lionsgate, and Fox Searchlight. This was the second largest disclosed purchase at the Sundance Film Festival after \"\"The Birth of a Nation\"\" at $17.5 million. Roadside Attractions, of which Lionsgate owns 45%, later became co-distributor of the film with Amazon. The film was screened at the Telluride Film Festival in September"} +{"qid": "test1766", "pid": "3232347", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"Chris Moore (film producer)\"\nLivePlanet, and the company produced the TV series \"\"Project Greenlight\"\" as well as several films. In 2016, he produced \"\"Manchester by the Sea\"\" through his production company, The Media Farm, in which he was nominated for an Academy Award. Moore is married to Jenno Topping, who is also a film producer. They have a daughter named Maddie. Chris Moore (film producer) Chris Moore is an American film producer who has worked in the industry since the 1990s. Moore's first film was \"\"Glory Daze\"\" (1995), followed by successes \"\"Good Will Hunting\"\" (1997) and \"\"American Pie\"\" (1999). In addition to producing films"} +{"qid": "test1766", "pid": "19887792", "query": "where was the film manchester by the sea filmed", "answer": "Manchester", "passage": "\"San Diego Film Critics Society Awards 2016\"\n– \"\"La La Land\"\" Blu Murray – \"\"Sully\"\" Jess Gonchor – \"\"Hail, Caesar!\"\" The Jungle Book Sing Street Lily Gladstone – \"\"Certain Women\"\" Hell or High Water Michael Shannon for \"\"Elvis & Nixon\"\", \"\"Loving\"\", \"\"Midnight Special\"\", and \"\"Nocturnal Animals\"\" San Diego Film Critics Society Awards 2016 The 21st San Diego Film Critics Society Awards were announced on December 12, 2016. Hell or High Water David Mackenzie – \"\"Hell or High Water\"\" Casey Affleck – \"\"Manchester by the Sea\"\" Sônia Braga – \"\"Aquarius\"\" Mahershala Ali – \"\"Moonlight\"\" (TIE) Ben Foster – \"\"Hell or High Water\"\" (TIE) Michelle Williams – \"\"Manchester by"} +{"qid": "test1767", "pid": "2875660", "query": "consist of the sum of the fixed and variable costs for any given level of production", "answer": "total cost (TC)", "passage": "\"Average cost\"\nAverage cost In economics, average cost and/or unit cost is equal to total cost (TC) divided by the number of goods produced (the output quantity, Q). It is also equal to the sum of average variable costs (total variable costs divided by Q) plus average fixed costs (total fixed costs divided by Q). Average costs may be dependent on the time period considered (increasing production may be expensive or impossible in the short term, for example). Average costs affect the supply curve and are a fundamental component of supply and demand. Average cost is distinct from the price, and depends"} +{"qid": "test1768", "pid": "2463641", "query": "where was thomas and the magic railroad filmed", "answer": "the Isle of Man", "passage": "\"Thomas and the Magic Railroad\"\nBritt Allcroft Company and the Isle of Man Film Commission. It was distributed by Destination Films in the United States and Icon Film Distribution in the United Kingdom. This was the last feature film to star Mara Wilson for 15 years. The film tells the story of Lily Stone (Wilson), the granddaughter of the caretaker (Fonda) of an enchanted steam engine who is lacking an appropriate supply of coal, and Mr. Conductor (Baldwin) of Shining Time Station, whose provisions of magical gold dust are at a critical low. To ameliorate these problems, Lily and Mr. Conductor enlist the help of"} +{"qid": "test1768", "pid": "7751918", "query": "where was thomas and the magic railroad filmed", "answer": "the Isle of Man", "passage": "\"Port St Mary railway station\"\nThomas and the Magic Railroad along with several other railway locations. The engines of the Isle of Man Railway however did not appear in the film. For filming purposes the interior of the shed was dressed to become a workshop where the engine \"\"Lady\"\" resided; at this time the fabric of the building was also restored, with new external doors and improved lighting. The exterior also saw use in 2001 when it was used for a night shoot for the Channel Four production of \"\"Cinderella\"\" which also featured the locomotive \"\"Caledonia\"\", then carrying the deep blue livery. Sequences for various"} +{"qid": "test1768", "pid": "2463654", "query": "where was thomas and the magic railroad filmed", "answer": "Isle of Man", "passage": "\"Thomas and the Magic Railroad\"\ncompany being in the middle of a corporate restructuring and sale. In the Summer of 1998, during Series 5 of \"\"Thomas\"\"'s production, Allcroft saw an Isle of Man Film Commission advert. They were offering tax incentives to companies wanting to film on the Island. Allcroft visited and felt that the location was perfect. During that year, Barry London became Chairman of the newly founded Destination Films (owned by Sony Pictures). He renewed his interest in the project and Destination Films became the main financial backer and studio for the film. The movie was filmed at the Strasburg Rail Road in"} +{"qid": "test1768", "pid": "2463657", "query": "where was thomas and the magic railroad filmed", "answer": "the Isle of Man", "passage": "\"Thomas and the Magic Railroad\"\nfrightening for young children by test audiences. Lily Stone (played by Mara Wilson) was intended to be the narrator of the story. Before filming, Thomas's voice would be provided by John Bellis, a fireman and part-time taxi driver who worked on the film as the Isle of Man transportation co-ordinator and facilities manager. Bellis received the role when he happened to pick up Britt Allcroft and her crew from the airport. According to Allcroft, after hearing him speak for the first time, she told her colleagues, \"\"I have just heard the voice of Thomas. That man is exactly how Thomas"} +{"qid": "test1769", "pid": "9522168", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"Radio 4 News FM\"\nand provided the listener with \"\"access to the raw material, the events as they unfolded, from the daily military press conferences, the Presidential briefings to what it was like living in Baghdad, in Tel Aviv, with the troops in Saudi Arabia\"\". The service was run by Jenny Abramsky and produced by volunteers, working on their days off: Brian Redhead, John Humphrys, Nick Clarke, Robin Lustig, Nicholas Witchell, Bob Simpson and Nick Ross. Journalist Georgina Henry wrote at the time: The continuation of Radio 4's rolling news service on the FM frequency has created friction at the BBC. Radio news and"} +{"qid": "test1769", "pid": "8406598", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"Jared Kushner\"\ninvolvement with the Trump campaign. In the letter, Kushner wrote, \"\"In my opinion, accusations like 'racist' and 'anti-Semite' are being thrown around with a carelessness that risks rendering these words meaningless.\"\" During the presidential transition, Kushner was said to be his father-in-law's \"\"confidant\"\", and one of Donald Trump's closest advisors, even more so than Trump's four adult children. Trump was reported to have requested the top-secret security clearance for him to attend the Presidential daily intelligence briefings as his staff-level companion, along with General Mike Flynn, who already had the clearance prior to his resignation. Kushner was reportedly an influential"} +{"qid": "test1769", "pid": "2951139", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"President's Daily Brief\"\nlearned. And the transition team said last week Trump would be increasing his PDB participation to three times a week.\"\" In mid-December 2016, the CIA website said Obama had initiated electronic delivery of the written brief in 2014 and that he received it six days a week. President's Daily Brief The President's Daily Brief (PDB), sometimes referred to as the President's Daily Briefing or the President's Daily Bulletin, is a top-secret document produced and given each morning to the President of the United States, and is also distributed to a small number of top-level US officials who are approved by"} +{"qid": "test1769", "pid": "2951131", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"President's Daily Brief\"\nPresident's Daily Brief The President's Daily Brief (PDB), sometimes referred to as the President's Daily Briefing or the President's Daily Bulletin, is a top-secret document produced and given each morning to the President of the United States, and is also distributed to a small number of top-level US officials who are approved by the President, and includes highly classified intelligence analysis, information about covert operations of the US Central Intelligence Agency and reports from the most sensitive US sources or those shared by allied intelligence agencies. The PDB is also provided to the President-elect of the United States, between election"} +{"qid": "test1769", "pid": "19149878", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"Robert Oscar Lopez\"\nhe had organized at the Ronald Reagan Presidential Library to a \"\"KKK camp.\"\" Lopez has served as the President of the International Children's Rights Institute since 2014. He has authored articles about his opposition to same-sex parenting. He testified against same-sex marriage in Minnesota. He wrote an amicus curiae brief for the Supreme Court in the Obergefell vs. Hodges case about same-sex marriage. According to \"\"The Daily Caller\"\", \"\"He is — or was — bisexual. He is now married to a woman. \"\" According to \"\"Inside Higher Ed\"\", he \"\"identifies as bisexual.\"\" He is member of the Southern Baptist Convention."} +{"qid": "test1769", "pid": "7834552", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"Central Intelligence Agency\"\nService. Of that 1,000 few would accept hardship postings. In the first days of George W. Bush's presidency, Al Qaeda threats were ubiquitous in daily Presidential CIA briefings, but it may have become a case of the boy who cries wolf. The agency's predictions were dire, but carried little weight, and the attentions of the President and his defense staff were elsewhere. The CIA arranged the arrests of suspected Al Qaeda members through cooperation with foreign agencies, but the CIA could not definitively say what effect these arrests had had, and it could not gain hard intelligence from those captured."} +{"qid": "test1769", "pid": "2951138", "query": "who has access to the presidential daily briefing", "answer": "the President", "passage": "\"President's Daily Brief\"\nputative 86% in-person attendance record) though \"\"Bush records [were] not yet available electronically for analysis\"\". Obama records, by contrast in this analysis, showed that during \"\"his first 1,225 days in office, Obama attended his PDB just 536 times — or 43.8 percent of the time. During 2011 and the first half of 2012 [within the 1,225 days analyzed], his attendance ... [fell] to just over 38 percent.\"\" In the first six weeks of the presidential transition of Donald Trump in 2016, the President-elect averaged about one PDB a week. He had \"\"participated in multiple PDBs in some weeks, CNN has"} +{"qid": "test177", "pid": "6870742", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Ned Brooks\"\nNed Brooks Ned Brooks (August 13, 1901 – April 13, 1969) was an American television and radio journalist who was moderator of NBC's \"\"Meet the Press\"\" on television from 1953 until 1965, and earlier on radio. Brooks is the second-longest tenured moderator of the program, after Tim Russert. Born in Kansas City, Missouri, he was raised in Warren, Ohio, and attended public schools there. He was a 1924 graduate of The Ohio State University where he became a member of Phi Kappa Tau fraternity. He began his career in newspaper reporting in Ohio at the \"\"Ohio State Journal\"\" and for"} +{"qid": "test177", "pid": "6870743", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Ned Brooks\"\n\"\"Scripps-Howard\"\" newspapers for whom he covered Congress from 1932 until 1947. For five years he was managing editor of the \"\"Youngstown (Ohio) Telegram\"\". He was later a broadcaster for \"\"Three-Star Extra,\"\" carried on NBC radio (but produced by the ad agency for its sponsor, Sunoco). Ned Brooks Ned Brooks (August 13, 1901 – April 13, 1969) was an American television and radio journalist who was moderator of NBC's \"\"Meet the Press\"\" on television from 1953 until 1965, and earlier on radio. Brooks is the second-longest tenured moderator of the program, after Tim Russert. Born in Kansas City, Missouri, he was"} +{"qid": "test177", "pid": "1442351", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Meet the Press\"\nPress\"\" from 1989 through December 1, 1991. All this occurred despite the increasing ratings of NBC News' other programs (and those of the network generally) during that period. The program originally aired at noon Eastern Time every Sunday, before moving to a 9:00 a.m. slot by the early 1990s. Network officials, concerned for the show's future, turned to Tim Russert, the network's Washington, D.C., bureau chief. He took over as moderator of \"\"Meet the Press\"\" on December 8, 1991, and remained with the program until his death on June 13, 2008, becoming the longest serving moderator in the program's history."} +{"qid": "test177", "pid": "12149741", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Luke Russert\"\nLuke Russert Lucas Russert (born August 22, 1985), best known as Luke Russert is an American broadcast news correspondent, who worked for NBC News from 2008 to 2016. His reporting was seen on \"\"NBC Nightly News\"\", \"\"TODAY\"\", NBCNews.com, and MSNBC. He also was a guest anchor on various MSNBC programs, including \"\"Andrea Mitchell Reports\"\" and \"\"Way Too Early\"\". Russert is the son of newsman Tim Russert, who died of a heart attack in 2008 and had been the longest-serving moderator of \"\"Meet the Press\"\", and his wife Maureen Orth, a special correspondent for \"\"Vanity Fair\"\". Russert graduated from St. Albans"} +{"qid": "test177", "pid": "12149749", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Luke Russert\"\nbestselling book \"\"Big Russ and Me\"\". Luke Russert Lucas Russert (born August 22, 1985), best known as Luke Russert is an American broadcast news correspondent, who worked for NBC News from 2008 to 2016. His reporting was seen on \"\"NBC Nightly News\"\", \"\"TODAY\"\", NBCNews.com, and MSNBC. He also was a guest anchor on various MSNBC programs, including \"\"Andrea Mitchell Reports\"\" and \"\"Way Too Early\"\". Russert is the son of newsman Tim Russert, who died of a heart attack in 2008 and had been the longest-serving moderator of \"\"Meet the Press\"\", and his wife Maureen Orth, a special correspondent for \"\"Vanity"} +{"qid": "test177", "pid": "7476440", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Cleveland–Marshall College of Law\"\npast five years. The Law School Transparency estimated debt-financed cost of attendance for three years is $168,538. The average indebtedness of the 73 percent of 2013 Cleveland–Marshall College of Law graduates who took out loans was $81,357. Many notable judges, politicians, and business leaders have graduated from Cleveland-Marshall. The late Tim Russert (lauded television journalist and lawyer who appeared for more than 16 years as the longest-serving moderator of NBC's \"\"Meet the Press\"\") graduated from Cleveland-Marshall in 1976. Carl Stokes, the first African-American mayor of a major U.S. city, graduated from Cleveland-Marshall in 1956 and was admitted to the Ohio"} +{"qid": "test177", "pid": "2691878", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Tim Russert\"\nTim Russert Timothy John Russert (May 7, 1950 – June 13, 2008) was an American television journalist and lawyer who appeared for more than 16 years as the longest-serving moderator of NBC's \"\"Meet the Press\"\". He was a senior vice president at NBC News, Washington bureau chief and also hosted an eponymous CNBC/MSNBC weekend interview program. He was a frequent correspondent and guest on NBC's \"\"The Today Show\"\" and \"\"Hardball\"\". Russert covered several presidential elections, and he presented the NBC News/\"\"Wall Street Journal\"\" survey on the \"\"NBC Nightly News\"\" during the 2008 U.S. presidential election. \"\"Time\"\" magazine included Russert in"} +{"qid": "test177", "pid": "2691911", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"Tim Russert\"\nfor good seating. Mika Brzezinski of MSNBC's \"\"Morning Joe\"\" dubbed the scene \"\"a new low, even for Washington tackiness\"\". Tim Russert Timothy John Russert (May 7, 1950 – June 13, 2008) was an American television journalist and lawyer who appeared for more than 16 years as the longest-serving moderator of NBC's \"\"Meet the Press\"\". He was a senior vice president at NBC News, Washington bureau chief and also hosted an eponymous CNBC/MSNBC weekend interview program. He was a frequent correspondent and guest on NBC's \"\"The Today Show\"\" and \"\"Hardball\"\". Russert covered several presidential elections, and he presented the NBC News/\"\"Wall"} +{"qid": "test177", "pid": "1446049", "query": "who had the longest tenure as moderator on meet the press", "answer": "Tim Russert", "passage": "\"NBC News\"\ndeath of the influential moderator Tim Russert of \"\"Meet the Press\"\" in June 2008, Tom Brokaw took over as an interim host; and on December 14, 2008, David Gregory became the new moderator of the show until August 14, 2014, when NBC announced that NBC News Political Director Chuck Todd would take over as the 12th moderator of Meet the Press starting September 7, 2014. David Gregory's last broadcast was August 10, 2014. By 2009, NBC had established leadership in network news, airing the highest-rated morning, evening, and Sunday interview news programs. Its ability to share costs with MSNBC and"} +{"qid": "test1770", "pid": "12940894", "query": "what tool is available from microsoft as an alternative to the usmt for smaller migrations", "answer": "Windows Easy Transfer", "passage": "\"User State Migration Tool\"\nUser State Migration Tool The User State Migration Tool (USMT) is a Microsoft command line utility program intended to allow advanced users, comfortable with Scripting languages, to transfer files and settings between PCs. This task is also performed by Windows Easy Transfer, recommended for general users. USMT supports the high-volume, automated deployment of files and settings from Microsoft Windows versions 2000, XP, Vista and Windows 7 and is useful in migrating user settings and files during OS upgrades. 32-bit to 64-bit migrations are supported, but 64-bit to 32-bit are not. Because USMT has high complexity and a command line interface,"} +{"qid": "test1770", "pid": "12940896", "query": "what tool is available from microsoft as an alternative to the usmt for smaller migrations", "answer": "Windows Easy Transfer", "passage": "\"User State Migration Tool\"\nSettings Transfer Wizard and Windows Easy Transfer). USMT is designed to perform mass migrations and allows customizations designed for corporate environments. With Windows 8, many settings and data are now being synchronized in cloud services via a Microsoft Account and OneDrive. USMT consists of two separate programs. Scanstate.exe scans the source PC for the data and settings and stores it in a .MIG file. Loadstate migrates the data and settings from the .MIG file onto the target PC. What to transfer is specified as commandline switches in the configuration XML files migapp.xml, migsys.xml, miguser.xml and other optional Config.xml files. Which"} +{"qid": "test1770", "pid": "11732505", "query": "what tool is available from microsoft as an alternative to the usmt for smaller migrations", "answer": "Windows Easy Transfer", "passage": "\"Windows Easy Transfer\"\nnot transfer applications, only files and most settings. Windows Easy Transfer was discontinued in Windows 10. Microsoft partnered with Laplink to provide a free version of PCmover Express as an alternative, for a limited time. End users also had the ability to upgrade to PCmover Professional (a paid version) which allows the transfer of applications as well. For Windows 2000, Microsoft had developed the User State Migration Tool command line utility that allowed users of Windows 95, Windows 98, and Windows NT 4.0 to migrate their data and settings to the newer operating system; the command-line tool did not"} +{"qid": "test1771", "pid": "5787850", "query": "who appoints the chief election commissioner of india", "answer": "the president", "passage": "\"Chief Election Commissioner of India\"\nChief Election Commissioner of India The Chief Election Commissioner heads the Election Commission of India, a body constitutionally empowered to conduct free and fair elections to the national and state legislatures and of President and Vice-President. Chief Election Commissioner of India is usually a member of the Indian Civil Service and mostly from the Indian Administrative Service. It is very difficult to remove the authority of the Chief Election Commissioner once appointed by the president, as two-thirds of the Lok Sabha and the Rajya Sabha need to vote against him for disorderly conduct or improper actions. Despite the recent changes"} +{"qid": "test1771", "pid": "16788614", "query": "who appoints the chief election commissioner of india", "answer": "President of India", "passage": "\"Election Commissioner of India\"\nto preserve the independence of election commission. Chief Election Commissioner of India can be removed from his office by the Parliament with a two-thirds majority in both the Lok Sabha and the Rajya Sabha on the grounds of proved misbehavior or incapacity. Other Election Commissioners can be removed by the President of India on the recommendation of the Chief Election Commissioner. A Chief Election Commissioner has never been impeached in India. In 2009, just before the 2009 Lok Sabha Elections, Chief Election Commissioner N. Gopalaswami sent a recommendation to President Prathibha Patil to remove Election Commissioner Navin Chawla, who was"} +{"qid": "test1771", "pid": "19036451", "query": "who appoints the chief election commissioner of india", "answer": "President of India", "passage": "\"Election Commission of India\"\nOther Election Commissioners can be removed by the President of India on the recommendation of the Chief Election Commissioner. A Chief Election Commissioner has never been impeached in India. In 2009, just before the 2009 Lok Sabha Elections, Chief Election Commissioner N. Gopalaswami sent a recommendation to President Prathibha Patil to remove Election Commissioner Navin Chawla, who was soon to take office as the chief election commissioner and to subsequently supervise the Lok Sabha Election, citing his partisan behavior in favor of one political party. The President opined that such a recommendation is not binding on the president, and hence"} +{"qid": "test1771", "pid": "15556341", "query": "who appoints the chief election commissioner of india", "answer": "President of India", "passage": "\"Central Information Commission\"\nmore than 10 Information Commissioners (IC) who are appointed by the President of India. The first Chief Information Commissioner of India was Wajahat Habibullah. The present Chief Information Commissioner of India is Radha Krishna Mathur.CIC and members are appointed by the President of India on the recommendation of a committee consisting of—Prime Minister as Chairperson, the Leader of Opposition in the Lok Sabha; a Union Cabinet Minister to be nominated by the Prime Minister. There are two woman who became CIC till now first is Ms Deepak Sandhu (4th CIC) and Second Ms Sushma Singh(5th CIC) Central Information Commission The"} +{"qid": "test1771", "pid": "12888814", "query": "who appoints the chief election commissioner of india", "answer": "President of India", "passage": "\"N. Gopalaswami\"\ncharge of software development and industry promotion division and also the head of Software Technology Park of India (STPI) Society and SATCOMM India Society. Gopalaswami was appointed as a Chancellor for Rashtriya Sanskrit Vidyapeetha, Deemed University, Tirupati on 21 October 2015 for a term of five years. During his tenure as the Chief Election Commissioner N Gopalaswami on 31 January 2009 sent his recommendation for removal of Election Commissioner Navin Chawla to the President of India. He alleged that Chawla had discharged his duties as Election Commissioner in a partisan manner, seeking to further the interests of \"\"one party.\"\" The"} +{"qid": "test1772", "pid": "935184", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Human nutrition\"\ninstance, is used as table sugar. Polysaccharides, which include starch and glycogen, are often referred to as 'complex' carbohydrates because they are typically long multiple-branched chains of sugar units. The difference is that complex carbohydrates take longer to digest and absorb since their sugar units must be separated from the chain before absorption. The spike in blood glucose levels after ingestion of simple sugars is thought to be related to some of the heart and vascular diseases, which have become more common in recent times. Simple sugars form a greater part of modern diets than in the past, perhaps leading"} +{"qid": "test1772", "pid": "375902", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Starch\nsynthase then adds the ADP-glucose via a 1,4-alpha glycosidic bond to a growing chain of glucose residues, liberating ADP and creating amylose. The ADP-glucose is almost certainly added to the non-reducing end of the amylose polymer, as the UDP-glucose is added to the non-reducing end of glycogen during glycogen synthesis. Starch branching enzyme introduces 1,6-alpha glycosidic bonds between the amylose chains, creating the branched amylopectin. The starch debranching enzyme isoamylase removes some of these branches. Several isoforms of these enzymes exist, leading to a highly complex synthesis process. Glycogen and amylopectin have similar structure, but the former has about one"} +{"qid": "test1772", "pid": "18926886", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Beer chemistry\"\nlive. Yeast metabolize the carbohydrate source to form a number of compounds including ethanol. The process of brewing beer starts with malting and mashing, which breaks down the long carbohydrates in the barley grain into more simple sugars. This is important because yeast can only metabolize very short chains of sugars. Long-carbohydrates are polymers, large branching linkages of the same molecule over and over. In the case of barley, we mostly see polymers called amylopectin and amylose which are made of repeating linkages of glucose. On very large time-scales (thermodynamically) these polymers would break down on their own, and there"} +{"qid": "test1772", "pid": "375896", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Starch\namylose and 75 to 80% amylopectin by weight. Glycogen, the glucose store of animals, is a more highly branched version of amylopectin. In industry, starch is converted into sugars, for example by malting, and fermented to produce ethanol in the manufacture of beer, whisky and biofuel. It is processed to produce many of the sugars used in processed foods. Mixing most starches in warm water produces a paste, such as wheatpaste, which can be used as a thickening, stiffening or gluing agent. The biggest industrial non-food use of starch is as an adhesive in the papermaking process. Starch can be"} +{"qid": "test1772", "pid": "167809", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Glucose\nGlucose Glucose (also called dextrose) is a simple sugar with the molecular formula . Glucose is the most abundant monosaccharide, a subcategory of carbohydrates. Glucose is mainly made by plants and most algae during photosynthesis from water and carbon dioxide, using energy from sunlight. There it is used to make cellulose in cell walls, which is the most abundant carbohydrate. In energy metabolism, glucose is the most important source of energy in all organisms. Glucose for metabolism is partially stored as a polymer, in plants mainly as starch and amylopectin and in animals as glycogen. Glucose circulates in the blood"} +{"qid": "test1772", "pid": "11903491", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Inborn errors of carbohydrate metabolism\"\nbranched long chains made out of the simple sugar glucose, is an energy storage form for carbohydrates in many human cells; this is most important in liver, muscle and certain brain cells. The monosaccharide glucose-6-phosphate (G-6-P) is typically the input substance for glycogenesis. G-6-P is most commonly created from glucose by the action of the enzymes glucokinase (see glycolysis step 1) or hexokinase. Through the action of several enzymes glycogen is build up: On an alternative metabolic pathway the simple sugar galactose (Gal, which is typically derived from lactose) is converted by the enzyme galactokinase (GALK) to galactose-1-phosphate (Gal-1-P), which"} +{"qid": "test1772", "pid": "167817", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Glucose\nthree known forms can be crystallized: α-glucopyranose, β-glucopyranose and β-glucopyranose hydrate. Glucose is a building block of the disaccharides lactose and sucrose (cane or beet sugar), of oligosaccharides such as raffinose and of polysaccharides such as starch and amylopectin, glycogen or cellulose. The glass transition temperature of glucose is 31 °C and the Gordon-Taylor constant (an experimentally determined constant for the prediction of the glass transition temperature for different mass fractions of a mixture of two substances) is 4.5. In its fleeting open-chain form, the glucose molecule has an open (as opposed to cyclic) and unbranched backbone of six carbon"} +{"qid": "test1772", "pid": "1685225", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Maltose\nthe branch points of glycogen and amylopectin. Like glucose, maltose is a reducing sugar, because the ring of one of the two glucose units can open to present a free aldehyde group; the other one cannot because of the nature of the glycosidic bond. Maltose can be broken down to glucose by the maltase enzyme, which catalyses the hydrolysis of the glycosidic bond. Maltose in aqueous solution exhibits mutarotation, because the α and β isomers that are formed by the different conformations of the anomeric carbon have different specific rotations, and in aqueous solutions, these two forms are in equilibrium."} +{"qid": "test1772", "pid": "2844397", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Amylopectin\nand be insoluble. Its counterpart in animals is glycogen, which has the same composition and structure, but with more extensive branching that occurs every eight to 12 glucose units. Plants store starch within specialized organelles called amyloplasts. When energy is needed for cell work, the plant hydrolyzes the starch, releasing the glucose subunits. Humans and other animals that eat plant foods also use amylase, an enzyme that assists in breaking down amylopectin. Starch is made of about 70% amylopectin by weight, though it varies depending on the source (higher in medium-grain rice to 100% in glutinous rice, waxy potato starch,"} +{"qid": "test1772", "pid": "6730424", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Branching (polymer chemistry)\"\npolyethylene requires special methods. Because of the way polyamides are formed, nylon would seem to be limited to unbranched, straight chains. But \"\"star\"\" branched nylon can be produced by the condensation of dicarboxylic acids with polyamines having three or more amino groups. Branching also occurs naturally during enzymatically-catalyzed polymerization of glucose to form polysaccharides such as glycogen (animals), and amylopectin, a form of starch (plants). The unbranched form of starch is called amylose. The ultimate in branching is a completely crosslinked network such as found in Bakelite, a phenol-formaldehyde thermoset resin. In free radical polymerization, branching occurs when a chain"} +{"qid": "test1772", "pid": "19581861", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Floridean starch\"\npoints using α(1,6) linkages. It differs from other common α-linked glucose polymers in the frequency and position of the branches, which gives rise to different physical properties. The structure of floridean starch polymers is most similar to amylopectin and is sometimes described as \"\"semi-amylopectin\"\". Floridean starch is often described in contrast to starch (a mixture of amylopectin and amylose) and glycogen: Historically, floridean starch has been described as lacking amylose. However, amylose has been identified as a component of floridean starch granules in some cases, particularly in unicellular red algae. Features such as UDP-glucose building blocks and cytosolic storage differentiate"} +{"qid": "test1772", "pid": "6191988", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Carbohydrase\nWater → α-Glucose α-amylase breaks starch down into maltose and dextrin, by breaking down large, insoluble starch molecules into soluble starches (amylodextrin, erythrodextrin, and achrodextrin) producing successively smaller starches and ultimately maltose. β-amylase catalyses the hydrolysis of starch into maltose by the process of removing successive maltose units from the non-reducing ends of the chains. γ-Amylase will cleave the last α(1–4)glycosidic linkages at the nonreducing end of amylose and amylopectin, yielding glucose. Carbohydrase Carbohydrase is a set of enzymes that catalyzes 5 types of breakdown during carbohydrates into simple sugars. Carbohydrases are produced in the pancreas and salivary glands, breaking"} +{"qid": "test1772", "pid": "1991974", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Blood sugar level\"\nBlood sugar level The blood sugar level, blood sugar concentration, or blood glucose level is the amount of glucose present in the blood of humans and other animals. Glucose is a simple sugar and approximately 4 grams of glucose are present in the blood of a human at all times. The body tightly regulates blood glucose levels as a part of metabolic homeostasis. Glucose is stored in skeletal muscle and liver cells in the form of glycogen; in fasted individuals, blood glucose is maintained at a constant level at the expense of glycogen stores in the liver and skeletal muscle."} +{"qid": "test1772", "pid": "6296770", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Glycogen storage disease type IV\"\nthe gene but show no symptoms of the disease. It affects 1 in 800,000 individuals worldwide, with 3% of all Glycogen Storage Diseases being type IV. It is a result of the absence of the glycogen branching enzyme, which is critical in the production of glycogen. This leads to very long unbranched glucose chains being stored in glycogen. The long unbranched molecules have a low solubility which leads to glycogen precipitation in the liver. These deposits subsequently build up in the body tissue, especially the heart and liver. The inability to breakdown glycogen in muscle cells causes muscle weakness. The"} +{"qid": "test1772", "pid": "375903", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Starch\nbranch point per ten 1,4-alpha bonds, compared to about one branch point per thirty 1,4-alpha bonds in amylopectin. Amylopectin is synthesized from ADP-glucose while mammals and fungi synthesize glycogen from UDP-glucose; for most cases, bacteria synthesize glycogen from ADP-glucose (analogous to starch). In addition to starch synthesis in plants, starch can be synthesized from non-food starch mediated by an enzyme cocktail. In this cell-free biosystem, beta-1,4-glycosidic bond-linked cellulose is partially hydrolyzed to cellobiose. Cellobiose phosphorylase cleaves to glucose 1-phosphate and glucose; the other enzyme—potato alpha-glucan phosphorylase can add a glucose unit from glucose 1-phosphorylase to the non-reducing ends of starch."} +{"qid": "test1772", "pid": "2844398", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Amylopectin\nand waxy corn, and lower in long-grain rice, amylomaize, and russet potatoes, for example). Amylopectin is highly branched, being formed of 2,000 to 200,000 glucose units. Its inner chains are formed of 20-24 glucose subunits. Dissolved amylopectin starch has a lower tendency of retrogradation (gelling) during storage and cooling. For this main reason, the waxy starches are used in different applications mainly as a thickening agent or stabilizer. Amylopectin Amylopectin is a water-insoluble polysaccharide and highly branched polymer of α-glucose units found in plants. It is one of the two components of starch, the other being amylose. Glucose units are"} +{"qid": "test1772", "pid": "1451785", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Glycogen\nof blood glucose in fasted, sedentary individuals. Glycogen is the analogue of starch, a glucose polymer that functions as energy storage in plants. It has a structure similar to amylopectin (a component of starch), but is more extensively branched and compact than starch. Both are white powders in their dry state. Glycogen is found in the form of granules in the cytosol/cytoplasm in many cell types, and plays an important role in the glucose cycle. Glycogen forms an energy reserve that can be quickly mobilized to meet a sudden need for glucose, but one that is less compact than the"} +{"qid": "test1772", "pid": "7569514", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Absorptive state\"\nAbsorptive state Absorptive state is the period in which the gastrointestinal tract is full and the anabolic processes exceed catabolism. The fuel used for this process is glucose. Carbohydrates - Simple sugars are sent to the liver where they are converted to glucose. The glucose then travels to the blood or is converted to glycogen and fat (triglyceride). The glycogen and fat will be stored in the liver and adipose tissue, respectively, as reserves for the post-absorptive state. The remaining glucose is taken in for use by body cells or stored in skeletal muscle as glycogen. Triglycerides - Chylomicrons, the"} +{"qid": "test1772", "pid": "325279", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Polysaccharide\nplants, and is sometimes referred to as \"\"animal starch\"\", having a similar structure to amylopectin but more extensively branched and compact than starch. Glycogen is a polymer of α(1→4) glycosidic bonds linked, with α(1→6)-linked branches. Glycogen is found in the form of granules in the cytosol/cytoplasm in many cell types, and plays an important role in the glucose cycle. Glycogen forms an energy reserve that can be quickly mobilized to meet a sudden need for glucose, but one that is less compact and more immediately available as an energy reserve than triglycerides (lipids). In the liver hepatocytes, glycogen can compose"} +{"qid": "test1772", "pid": "19581860", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Floridean starch\"\nFloridean starch Floridean starch is a type of a storage glucan found in glaucophytes and in red algae (also known as rhodophytes), in which it is usually the primary sink for fixed carbon from photosynthesis. It is found in grains or granules in the cell's cytoplasm and is composed of an α-linked glucose polymer with a degree of branching intermediate between amylopectin and glycogen, though more similar to the former. The polymers that make up floridean starch are sometimes referred to as \"\"semi-amylopectin\"\". Floridean starch consists of a polymer of glucose molecules connected primarily by α(1,4) linkages, with occasional branch"} +{"qid": "test1772", "pid": "6820246", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Glycogen branching enzyme\"\nbulkier substrate such as branched sugar. Through primary structure analysis and the x-ray crystallographic structures of the members of the α-amylase family, seven residue were conserved, Asp335, His340, Arg403, Asp 405, Glu458, His525, and Asp526 (E coli. numbering). These residues are implicated in catalysis and substrate binding. Glycogen binding enzymes in other organisms have also been crystallized and structurally determined, demonstrating both similarity and variation to GBE found in Escherichia coli. In glycogen, every 10 to 14 glucose units, a side branch with an additional chain of glucose units occurs. The side chain attaches at carbon atom 6 of a"} +{"qid": "test1772", "pid": "4714625", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Glycogen phosphorylase\"\nresidues from the outer branch to the other end, and then a α1-6 glucosidase enzyme is required to break the remaining (single glucose) α1-6 residue that remains in the new linear chain. After all this is done, glycogen phosphorylase can continue. The enzyme is specific to α1-4 chains, as the molecule contains a 30-angstrom-long crevice with the same radius as the helix formed by the glycogen chain; this accommodates 4-5 glucosyl residues, but is too narrow for branches. This crevice connects the glycogen storage site to the active, catalytic site. Glycogen phosphorylase has a pyridoxal phosphate (PLP, derived from Vitamin"} +{"qid": "test1772", "pid": "325273", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "Polysaccharide\nthumb, polysaccharides contain more than ten monosaccharide units, whereas oligosaccharides contain three to ten monosaccharide units; but the precise cutoff varies somewhat according to convention. Polysaccharides are an important class of biological polymers. Their function in living organisms is usually either structure- or storage-related. Starch (a polymer of glucose) is used as a storage polysaccharide in plants, being found in the form of both amylose and the branched amylopectin. In animals, the structurally similar glucose polymer is the more densely branched glycogen, sometimes called \"\"animal starch\"\". Glycogen's properties allow it to be metabolized more quickly, which suits the active lives"} +{"qid": "test1772", "pid": "7569516", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Absorptive state\"\nfat stores. Some are used to make plasma proteins, but most leave through liver sinusoids to be used by body cells to construct proteins. Absorptive state Absorptive state is the period in which the gastrointestinal tract is full and the anabolic processes exceed catabolism. The fuel used for this process is glucose. Carbohydrates - Simple sugars are sent to the liver where they are converted to glucose. The glucose then travels to the blood or is converted to glycogen and fat (triglyceride). The glycogen and fat will be stored in the liver and adipose tissue, respectively, as reserves for the"} +{"qid": "test1772", "pid": "2076726", "query": "glycogen and amylopectin are long chains of which simple sugar(s)", "answer": "glucose", "passage": "\"Backbone chain\"\nsugar) which contains a linkage that is \"\"alpha\"\" to glucose and \"\"beta\"\" to fructose. Generally, carbohydrates which our bodies break down are \"\"alpha\"\"-linked (example: glycogen) and those which have structural function are \"\"beta\"\"-linked (example: cellulose). Deoxyribonucleic acid (DNA) and ribonucleic acid (RNA) are of great importance because they code for the production of all cellular proteins. They are made up of monomers called nucleotides which consist of an organic base: A, G, C and T or U, a pentose sugar, and a phosphate group. They have backbones in which the 3’ carbon of the ribose sugar is connected to the"} +{"qid": "test1775", "pid": "19908395", "query": "who wrote were going on a bear hunt", "answer": "Michael Rosen", "passage": "\"We're Going on a Bear Hunt\"\nWe're Going on a Bear Hunt We're Going on a Bear Hunt is a 1989 children's picture book written by Michael Rosen and illustrated by Helen Oxenbury. It has won numerous awards and was the subject of a \"\"Guinness World Record\"\" for \"\"Largest Reading Lesson\"\" with a book-reading attended by 1,500 children, and an additional 30,000 listeners online, in 2014. Five children and their dog go out to hunt a bear. They travel through grass, a river, mud, a forest and a snowstorm before coming face to face with a bear in its cave. This meeting causes panic and the"} +{"qid": "test1775", "pid": "19908401", "query": "who wrote were going on a bear hunt", "answer": "Michael Rosen", "passage": "\"We're Going on a Bear Hunt\"\nfestive sadness.\"\" A mobile app, based on the book, was launched in December 2016. It is available on Amazon, Android, and Apple platforms. We're Going on a Bear Hunt We're Going on a Bear Hunt is a 1989 children's picture book written by Michael Rosen and illustrated by Helen Oxenbury. It has won numerous awards and was the subject of a \"\"Guinness World Record\"\" for \"\"Largest Reading Lesson\"\" with a book-reading attended by 1,500 children, and an additional 30,000 listeners online, in 2014. Five children and their dog go out to hunt a bear. They travel through grass, a river,"} +{"qid": "test1776", "pid": "596944", "query": "what is the revolution period of venus in earth years", "answer": "224.7 Earth days", "passage": "\"Sidereal time\"\nsituation is quite different for Mercury and Venus. Mercury's sidereal day is about two-thirds of its orbital period, so by the prograde formula its solar day lasts for two revolutions around the Sun— three times as long as its sidereal day. Venus rotates retrograde with a sidereal day lasting about 243.0 Earth days, or about 1.08 times its orbital period of 224.7 Earth days; hence by the retrograde formula its solar day is about 116.8 Earth days, and it has about 1.9 solar days per orbital period. By convention, rotation periods of planets are given in sidereal terms unless otherwise"} +{"qid": "test1776", "pid": "7683689", "query": "what is the revolution period of venus in earth years", "answer": "224.7 Earth days", "passage": "\"Terraforming of Venus\"\nslowest rotation period of any known object in the Solar System. A Venusian sidereal day thus lasts more than a Venusian year (243 versus 224.7 Earth days). However, the length of a solar day on Venus is significantly shorter than the sidereal day; to an observer on the surface of Venus, the time from one sunrise to the next would be 116.75 days. Therefore, the slow Venerian rotation rate would result in extremely long days and nights, similar to the day-night cycles in the polar regions of earth, only shorter. The slow rotation might also account for the lack of"} +{"qid": "test1777", "pid": "810223", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "Veto\nallowing either house of that legislature to nullify decisions of agencies in the executive branch simply by passing a resolution. In this case, Chadha's deportation was suspended and the House of Representatives passed a resolution overturning the suspension, so that the deportation proceedings would continue. This, the Court held, amounted to the House of Representatives passing legislation without the concurrence of the Senate, and without presenting the legislation to the President for consideration and approval (or veto). Thus, the Constitutional principle of bicameralism and the separation of powers doctrine were disregarded in this case, and this legislative veto of executive"} +{"qid": "test1777", "pid": "1746580", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "\"Pocket veto\"\nPocket veto A pocket veto is a legislative maneuver that allows a president or other official with veto power to exercise that power over a bill by taking no action (instead of affirmatively vetoing it). The President of Finland has the power to pocket veto bills passed by the parliament; however, such vetoes are temporary in effect. Article 111 of the Indian constitution stipulates that the President shall give assent to a bill passed by both houses of the parliament or return the bill as soon as possible for reconsideration with his recommendation. The Indian Constitution does not give a"} +{"qid": "test1777", "pid": "428163", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "\"Article Five of the United States Constitution\"\nnot require Presidential approval before it goes out to the states. While Article I Section 7 provides that all federal legislation must, before becoming Law, be presented to the President for his or her signature or veto, Article V provides no such requirement for constitutional amendments approved by Congress, or by a federal convention. Thus the president has no official function in the process. In \"\"Hollingsworth v. Virginia\"\" (1798), the Supreme Court affirmed that it is not necessary to place constitutional amendments before the President for approval or veto. Three times in the 20th century, concerted efforts were undertaken by"} +{"qid": "test1777", "pid": "3325527", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "\"Clinton v. City of New York\"\nwas submitted in the Senate, but failed to win approval. The Legislative Line Item Veto Act has therefore not become law. Clinton v. City of New York Clinton v. City of New York, 524 U.S. 417 (1998), is a legal case in which the Supreme Court of the United States ruled that the line-item veto as granted in the Line Item Veto Act of 1996 violated the Presentment Clause of the United States Constitution because it impermissibly gave the President of the United States the power to unilaterally amend or repeal parts of statutes that had been duly passed by"} +{"qid": "test1777", "pid": "1832795", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "\"Sheikh Mujibur Rahman\"\nvary). In response, he began increasing his powers. In 1974, Mujib declared a state of emergency. In 1975, his political supporters approved a constitutional amendment with few other parties of a new system called BAKSHAL. Banning all opposition political parties against BAKSHAL. Mujib assumed the presidency and was given extraordinary powers. According to \"\"Time\"\" magazine: Under the new system, executive powers are vested in the President, who will be elected directly every five years, and in a Council of Ministers appointed by him. Although an elected Parliament can pass legislation, the President has veto power and can dissolve Parliament indefinitely."} +{"qid": "test1777", "pid": "2445761", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "\"President of the Czech Republic\"\nto sign legislation acts as a check on the power of the legislature. The only kind of bills a President can neither veto nor approve are acts that would change the constitution. The president also has the leading role in the appointment of persons to key high offices, including appointment of judges to the Supreme and Constitutional Courts (with the permission of the Senate), and members of the Bank Board of the Czech National Bank. There are some powers reserved to the President, but can be exercised only under limited circumstances. Chief among these is the dissolution of the Chamber"} +{"qid": "test1777", "pid": "810225", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "Veto\nthe President to be either approved or rejected as a whole. An action by which the President might pick and choose which parts of the bill to approve or not approve amounted to the President acting as a legislator instead of an executive and head of state—and particularly as a single legislator acting in place of the entire Congress—thereby violating the separation of powers doctrine. Prior to being declared unconstitutional, President Clinton had applied the line-item veto to the federal budget 82 times. In 2006, Senator Bill Frist introduced the Legislative Line Item Veto Act of 2006 in the United"} +{"qid": "test1777", "pid": "427992", "query": "who has the power to approve or veto legislation constitution", "answer": "the President", "passage": "\"Article One of the United States Constitution\"\ncould disapprove the cancellation and reinstate the funds. The President could veto the disapproval, but the Congress, by a two-thirds vote in each House, could override the veto. In the case \"\"Clinton v. City of New York\"\", the Supreme Court found the Line Item Veto Act unconstitutional because it violated the Presentment clause. First, the procedure delegated legislative powers to the President, thereby violating the nondelegation doctrine. Second, the procedure violated the terms of Section Seven, which state, \"\"if he approve [the bill] he shall sign it, but if not he shall return it.\"\" Thus, the President may sign the"} +{"qid": "test1778", "pid": "729421", "query": "when was the taming ofthe shrew first performed", "answer": "prior to June 1592", "passage": "\"The Taming of the Shrew\"\ncontains the line \"\"He calls his Kate, and she must come and kiss him.\"\" This must refer to \"\"The Shrew\"\", as there is no corresponding \"\"kissing scene\"\" in \"\"A Shrew\"\". There are also verbal similarities between both \"\"Shrew\"\" plays and the anonymous play \"\"A Knack To Know A Knave\"\" (first performed at The Rose on 10 June 1592). \"\"Knack\"\" features several passages common to both \"\"A Shrew\"\" and \"\"The Shrew\"\", but it also borrows several passages unique to \"\"The Shrew\"\". This suggests \"\"The Shrew\"\" was on stage prior to June 1592. In his 1982 edition of the play for The"} +{"qid": "test178", "pid": "8930701", "query": "who has the talismans in sailor moon s", "answer": "Haruka", "passage": "\"Sailor Moon (TV series)\"\nreturns to her own time, now freed from the Black Moon Clan's corruption. Some time later, the Sailor Soldiers encounter the Death Busters, an evil organization that is summoning monsters called Daimons to steal Heart Crystals from humans. Their intention is to locate three specific Heart Crystals that contain special Talismans. Joining the Sailor Soldiers are Haruka Tenoh and Michiru Kaioh, who operate as Sailor Uranus and Sailor Neptune respectively. The two are also seeking the Talismans for different purposes and come into conflict with the other Sailor Soldiers. Sailor Pluto returns to the present day as Setsuna Meioh; Chibiusa"} +{"qid": "test178", "pid": "8930702", "query": "who has the talismans in sailor moon s", "answer": "Haruka and Michiru", "passage": "\"Sailor Moon (TV series)\"\nalso returns, now donning her own magical girl identity of Sailor Chibi Moon. The Death Busters eventually discover that Haruka and Michiru hold two of the Talismans and acquire them at the cost of their lives, but Setsuna — who holds the third — revives them. The Talismans create the Holy Grail, allowing Usagi to acquire a second form: Super Sailor Moon. The Death Busters' intentions then change to harvesting Heart Crystals en masse to resurrect the malevolent entity known as Mistress 9. Chibiusa also befriends a sickly girl named Hotaru, unaware that she is the daughter of the Death"} +{"qid": "test178", "pid": "4522652", "query": "who has the talismans in sailor moon s", "answer": "Sailor Pluto", "passage": "\"Death Busters\"\nherself by unleashing the powers of the Legendary Holy Grail and the Silver Crystal while within the entity. But the gambit caused the Outer Guardians' Talismans to resonate and awaken Sailor Saturn, who uses her \"\"Death Reborn Revolution\"\" to weaken Pharaoh 90 but stayed her hand from killing him when Sailor Moon emerged unharmed. The dying Pharaoh 90 attempts to flee back into the Tau System as Saturn gives chase, having Sailor Pluto use her \"\"Dark Dome Close\"\" to seal the dimensional distortion and trap Pharaoh 90 within his dying world. Like all of the head villains in the manga,"} +{"qid": "test178", "pid": "4522658", "query": "who has the talismans in sailor moon s", "answer": "Sailor Pluto", "passage": "\"Death Busters\"\nas a reckless driver. A brilliant inventor, she is able to construct and jury rig weaponry and computer technology through the use of everyday items, like her deadly shoulder-mounted flamethrower, the Fire Buster, and later in the series booby-traps the under-construction Marine Cathedral. Eudial actually succeeds in getting two of the Talismans, but loses them to Sailor Pluto. She uses the Fire Buster to try to attack Super Sailor Moon, but she deflects it back to her. Furious, she escapes in her car, only to find that Mimete has torn out its brakes and filled it with snails. The car"} +{"qid": "test1783", "pid": "20040002", "query": "who eliminated costa rica in world cup 2014", "answer": "Netherlands", "passage": "\"Costa Rica national football team results (2014)\"\nmyself [in the balls]\"\". Costa Rica topped the group undefeated after beating both Uruguay and Italy, finishing with a draw against England. The \"\"Ticos\"\" would defeat Greece in the Round of 16 throughout the penalty shootouts. Costa Rica was then eliminated by the Netherlands in the quarter-finals again in the penalty shootouts. After the World Cup, Jorge Luis Pinto resigned as the coach of the national team, denouncing that a member of his coaching staff requested his sacking. Paulo Wanchope assumed as the interim coach of the team, only to be confirmed in the charge in January 2015. With Wanchope"} +{"qid": "test1783", "pid": "6618618", "query": "who eliminated costa rica in world cup 2014", "answer": "Netherlands", "passage": "\"Group of death\"\nGhana, Czech Republic and the United States) were nominated as \"\"group of death\"\". In the 2014 World Cup, three groups were acknowledged in the media as \"\"group of death\"\": Group B (Spain, the Netherlands, Chile, Australia), Group D (Uruguay, Costa Rica, England and Italy), and Group G (Germany, Portugal, Ghana and the United States); Group G was considered especially difficult in the U.S., as they had been eliminated by its \"\"weakest\"\" team, Ghana, in each of the past two tournaments. In the 2018 World Cup, there were three groups that were considered groups of death: Group E (Brazil, Costa Rica,"} +{"qid": "test1786", "pid": "7586921", "query": "when did the steel mills closed in youngstown ohio", "answer": "September 19, 1977", "passage": "\"Youngstown Sheet and Tube\"\nworkers on September 19, 1977, a day remembered locally as \"\"Black Monday.\"\" The Brier Hill Works and the company's plants in Indiana were sold to Jones and Laughlin Steel, later acquired by Ling-Temco-Vought (LTV), a conglomerate. The Brier Hill Works closed in 1979 as part of a continued wave of steel mill closings that devastated the Youngstown economy. The Brier Hill Works was eventually reopened in 1986 by Cargill Corporation, under the name North Star Steel. In 2002, Cargill sold the operations to recycling mini-mill Vallourec Group, a French conglomerate. The Indiana Harbor mill continues operating, owned by ArcelorMittal. In"} +{"qid": "test1786", "pid": "1333811", "query": "when did the steel mills closed in youngstown ohio", "answer": "September 19, 1977", "passage": "\"Youngstown, Ohio\"\neconomically diversified, as did larger industrial cities such as Chicago, Pittsburgh, Akron, or Cleveland. Hence, when economic changes forced the closure of plants throughout the 1970s, the city was left with few substantial economic alternatives. The September 19, 1977, announcement of the closure of a large portion of Youngstown Sheet and Tube, an event still referred to as \"\"Black Monday\"\", is widely regarded as the death knell of the old area steel industry in Youngstown. In the wake of the steel plant shutdowns, the community lost an estimated 40,000 manufacturing jobs, 400 satellite businesses, $414 million in personal income, and"} +{"qid": "test1786", "pid": "15156809", "query": "when did the steel mills closed in youngstown ohio", "answer": "September 19, 1977", "passage": "\"Economy of Youngstown, Ohio\"\nimpacted by a loss of the steel industry jobs which started on September 19, 1977, on what became known to locals as \"\"Black Monday\"\", and continued into the mid-1980s. While the loss of steel industry jobs in the region coincided with the general deindustrialization of Rust Belt cities such as Youngstown as well as the United States as a whole, Youngstown's economic struggles have been well documented. In the Mahoning Valley region, where Youngstown is located, the city's population was halved, while non-industrial businesses were forced to close or relocate due to cascading effects resulting from Youngstown's deindustrialization. Founded by"} +{"qid": "test1787", "pid": "2382846", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal Railway\"\nKnown as the Panama Railroad Company when founded in the 19th century, today it is operated as Panama Canal Railway Company (reporting mark: PCRC). Since 1998 it has been jointly owned by Kansas City Southern and Mi-Jack Products and leased to the government of Panama. The Panama Canal Railway currently provides both freight and passenger service. The principal incentive for the United States to build the rail line was the vast increase in passenger and freight traffic to California following the 1849 California Gold Rush. The United States Congress had provided subsidies to companies to operate mail and passenger steamships"} +{"qid": "test1787", "pid": "677808", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama City\"\n1999, the United States officially transferred control of the Panama Canal Zone to Panama, which remains in control today. The city of Panama is still a banking center, although with very visible controls in the flow of cash. Shipping is handled through port facilities in the area of Balboa operated by the Hutchison Whampoa Company of Hong Kong and through several ports on the Caribbean side of the isthmus. Balboa, which is located within the greater Panama metropolitan area, was formerly part of the Panama Canal Zone, and the administration of the former Panama Canal Zone was headquartered there. Panamá"} +{"qid": "test1787", "pid": "334999", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal\"\nArtificially created in 1913 by damming the Chagres River, Gatun Lake is an essential part of the Panama Canal, providing the millions of liters of water necessary to operate the Panama Canal locks each time a ship passes through. At the time it was formed, Gatun Lake was the largest human-made lake in the world. The impassable rainforest around the lake has been the best defense of the Panama Canal. Today these areas remain practically unscathed by human interference and are one of the few accessible areas where various native Central American animal and plant species can be observed undisturbed"} +{"qid": "test1787", "pid": "2100145", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal Zone\"\nand under the supervision of the Secretary of War. Defense of the canal was the responsibility of the Secretary of War who retained control of troops with provisions for Presidential appointment of an Army officer in wartime who would have \"\"exclusive authority over the operation of the Panama Canal and the Government of the Canal Zone.\"\" The Executive Order noted in closing \"\"that the supervision of the operations of the Panama Canal under the permanent organization should be under the Secretary of War\"\" thus establishing the essentially military arrangement and atmosphere for the canal and Canal Zone. Effective July 1,"} +{"qid": "test1787", "pid": "334960", "query": "who owns and operates the panama canal today", "answer": "Panama Canal Authority", "passage": "\"Panama Canal\"\nCape Horn route around the southernmost tip of South America via the Drake Passage or Strait of Magellan. Colombia, France, and later the United States controlled the territory surrounding the canal during construction. The US continued to control the canal and surrounding Panama Canal Zone until the 1977 Torrijos–Carter Treaties provided for handover to Panama. After a period of joint American–Panamanian control, in 1999, the canal was taken over by the Panamanian government. It is now managed and operated by the government-owned Panama Canal Authority. Annual traffic has risen from about 1,000 ships in 1914, when the canal opened, to"} +{"qid": "test1787", "pid": "9704664", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Latin America–United States relations\"\nbuilding of the Panama Canal absorbed American attention from 1903. The US facilitated a revolt that made Panama independent and set up the Panama Canal Zone as an American owned and operated district that was finally returned to Panama in 1979. The Canal opened in 1914 and proved a major factor in world trade. The United States paid special attention to protection of the military approaches to the Panama Canal, including threats by Germany. Repeatedly it seized temporary control of the finances of several countries, especially Haiti and Nicaragua. The Mexican Revolution started in 1911; it alarmed American business interests"} +{"qid": "test1787", "pid": "6782822", "query": "who owns and operates the panama canal today", "answer": "Panama Canal Authority", "passage": "\"Panama Canal Authority\"\nPanama Canal Authority The Panama Canal Authority () is the agency of the government of Panama responsible for the operation and management of the Panama Canal. The ACP took over the administration of the canal from the Panama Canal Commission, the joint US–Panama agency that managed the canal, on December 31, 1999, when the canal was handed over from the United States to Panama as per the Torrijos–Carter Treaties. The Panama Canal Authority is established under Title XIV of the National Constitution, and has exclusive responsibility for the operation, administration, management, preservation, maintenance, and modernization of the canal. It is"} +{"qid": "test1787", "pid": "6782825", "query": "who owns and operates the panama canal today", "answer": "Panama Canal Authority", "passage": "\"Panama Canal Authority\"\nAuthority Board of Directors is made up of the following members: Panama Canal Authority The Panama Canal Authority () is the agency of the government of Panama responsible for the operation and management of the Panama Canal. The ACP took over the administration of the canal from the Panama Canal Commission, the joint US–Panama agency that managed the canal, on December 31, 1999, when the canal was handed over from the United States to Panama as per the Torrijos–Carter Treaties. The Panama Canal Authority is established under Title XIV of the National Constitution, and has exclusive responsibility for the operation,"} +{"qid": "test1787", "pid": "7248084", "query": "who owns and operates the panama canal today", "answer": "Panamanian government", "passage": "\"Inter-American Highway\"\npresence in Central America, especially in Panama. The American-owned and operated both the Panama Canal and the Panama Railroad, but with the looming war in Europe, the United States felt it necessary to establish a more direct connection with Panama. Therefore, the American and Panamanian governments agreed to begin the construction of a trans-isthmian highway located outside of the Canal Zone. Thus, the construction of the actual Inter-American Highway was instigated by the United States as a safety precaution at the beginning of World War II. As with the Panama Canal project, the principal engineers and administrators of the highway"} +{"qid": "test1787", "pid": "334997", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal\"\nbid to negotiate a 25-year contract for operation of the container shipping ports located at the canal's Atlantic and Pacific outlets. The contract was not affiliated with the ACP or Panama Canal operations and was won by the firm Hutchison Whampoa, a Hong Kong–based shipping interest owned by Li Ka-shing. While globally the Atlantic Ocean is east of the isthmus and the Pacific is west, the general direction of the canal passage from the Atlantic to the Pacific is from northwest to southeast, because of the shape of the isthmus at the point the canal occupies. The Bridge of the"} +{"qid": "test1787", "pid": "5013136", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"William Nelson Cromwell\"\nin 1898 the chief of the French Canal Syndicate (a group that owned large swathes of land across Panama), Philippe Bunau-Varilla, hired him to lobby the US Congress to build a canal across Panama, and not across Nicaragua, as rivals would have it. On June 19, 1902, three days after senators received stamps showing volcanic activity in Nicaragua (although this was more the work of Philippe Bunau-Varilla), they voted for the Panama route for the canal. For his lobbying efforts, he received the sum of $800,000. (about million USD today). After the Hay–Bunau-Varilla Treaty was ratified, Cromwell was paid another"} +{"qid": "test1787", "pid": "7997989", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal expansion project\"\nPresident Varela indicated that he anticipated the expansion to be complete around May 2016. The expanded canal began commercial operation on 26 June 2016. The first ship to cross the canal using the third set of locks was a modern New Panamax vessel, the Chinese-owned container ship \"\"Cosco Shipping Panama.\"\" The United States dispatched a navy ship to Panama to demonstrate U.S. naval power to the Chinese ship. The main purpose of the canal expansion program is to increase Panama's ability to benefit from the growing traffic demand. This growing demand is manifested in both the increased cargo volumes and"} +{"qid": "test1787", "pid": "4721276", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "Zonian\nto return. Zonian A Zonian is a person associated with the Panama Canal Zone, a political entity which existed between 1903 and the absorption of the Canal Zone into the Republic of Panama between 1980 and 2000. Many Zonians are descendants of the civilian American workers who came to the area during the early 1900s to work and maintain the canal. Today Zonians might work at the canal itself. Others may have been American citizens born in the Canal Zone or who spent their childhood there. A significant presence of American canal workers remained in the Canal region until 1999."} +{"qid": "test1787", "pid": "4721274", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "Zonian\nZonian A Zonian is a person associated with the Panama Canal Zone, a political entity which existed between 1903 and the absorption of the Canal Zone into the Republic of Panama between 1980 and 2000. Many Zonians are descendants of the civilian American workers who came to the area during the early 1900s to work and maintain the canal. Today Zonians might work at the canal itself. Others may have been American citizens born in the Canal Zone or who spent their childhood there. A significant presence of American canal workers remained in the Canal region until 1999. Many of"} +{"qid": "test1787", "pid": "6198457", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"History of the Panama Canal\"\nFormer US Ambassador to Panama Linda Watt, who served from 2002 to 2005, said that the canal operation in Panamanian hands has been \"\"outstanding\"\". \"\"The international shipping community is quite pleased\"\", Watt added. History of the Panama Canal The idea of the Panama canal dates back to 1513, when Vasco Núñez de Balboa first crossed the isthmus. The narrow land bridge between North and South America houses the Panama Canal, a water passage between the Atlantic and Pacific Oceans. The earliest European colonists recognized this potential, and several proposals for a canal were made. By the late nineteenth century, technological"} +{"qid": "test1787", "pid": "7530594", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Limited\"\nPanama Limited The Panama Limited was a passenger train operated from 1911 to 1971 by the Illinois Central Railroad between Chicago, Illinois, and New Orleans, Louisiana. The \"\"Panama Limited\"\" took its name from the Panama Canal, which in 1911 was then under construction and three years from completion. For most of its career, the train was \"\"all-Pullman\"\", carrying sleeping cars only. The \"\"Panama Limited\"\" was one of many trains discontinued when Amtrak began operations in 1971, though Amtrak revived the service later that year and continued it until 1981. Today, overnight service between Chicago and New Orleans is provided by"} +{"qid": "test1787", "pid": "18269883", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Charles Wesley Powell\"\nown death in 1935. In 1939, the Tropical Station was transferred to the Canal Zone Government. During its almost 13 years of existence, the Tropical Station supplied the greenhouses in Saint Louis with a constant flow of living plants.\"\" \"\"Today, Ancon Hill is a popular jogging and hiking trek. All manner of vegetation and birds can be seen, including a large number of orchids (which are protected by CITES).\"\" On August 30, 1926, Powell travelled from Panama to the United States on the , a Panama Railway Company steamship and the first ship to officially transit the Panama Canal in"} +{"qid": "test1787", "pid": "1655695", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"United States invasion of Panama\"\n1989 June–September 1989 (Operation Nimrod Dancer) October 1989 (Operation Nimrod Dancer) December 1989 D-Day, 20 December 1989 3 January 1990 (D-Day + 14) 31 January 1990 (D-Day + 42) September 1994 (D-Day + approximately 4.5 years) The United States had maintained numerous military bases and a substantial garrison throughout the Canal Zone to protect the American-owned Panama Canal and to maintain American control of this strategically important area. On September 7, 1977, U.S. President Jimmy Carter and the \"\"de facto\"\" leader of Panama, General Omar Torrijos, signed Torrijos–Carter Treaties, which set in motion the process of handing over the Panama"} +{"qid": "test1787", "pid": "6198453", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"History of the Panama Canal\"\nof locks using part of the abandoned 1940s approach canals. Following a referendum, work began in 2007 and the expanded canal began commercial operations on June 26, 2016. After a two-year delay, the new locks allow the transit of Panamax ships (which have a greater cargo capacity than the original locks can handle). The first ship to cross the canal through the third set of locks was a Panamax container ship, the Chinese-owned \"\"Cosco Shipping Panama\"\". The cost of the expansion was estimated at $5.25 billion. After construction, the canal and the Canal Zone surrounding it were administered by the"} +{"qid": "test1787", "pid": "3691774", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"USS Kamehameha (SSBN-642)\"\nfew weeks in Honolulu giving the people of Hawaii the opportunity to go aboard and see the submarine named in honor of the King of Hawaii. In early June 1970, with the Gold Crew operating the boat, \"\"Kam\"\" got underway for Charleston, South Carolina, via the Panama Canal, for duty with Submarine Squadron 18, based at Charleston. The submerged transit to the canal took about seven days, and upon arrival off the coast of Panama, \"\"Kam\"\" surfaced and was met by the Panama Canal pilot who would take her through. The passage through the Panama Canal was given priority by"} +{"qid": "test1787", "pid": "11196016", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Jack Vaughn\"\n1964 President Johnson made an address to the Panamanian people proposing the negotiation of an entirely new treaty on the Panama Canal. \"\"In these new proposals we will take every possible step to deal fairly and to deal helpfully with the citizens of both Panama and of the United States who have served so faithfully through the years in operating and maintaining the Panama Canal,\"\" said Johnson. Although Vaughn takes no credit for President Carter's efforts beginning in 1977 to complete negotiations for a new Panama Canal treaty, Vaughn's early initiatives to reach an understanding with Panama paved the way"} +{"qid": "test1787", "pid": "13615442", "query": "who owns and operates the panama canal today", "answer": "Panamanian government", "passage": "\"Trams in Panama\"\nRepublic of Panama declared its separation from Colombia, having previously been the Isthmus Department of Colombia. In 1904 the United States took over operations of the Compagnie Nouvelle du Canal de Panama and expanded the effort, eventually completing the Panama Canal. While canal construction was underway, on 29 October 1906 the new Panamanian government let a contract for a new tramway in Panama City. The initial attempt to build the new line failed and the contract was put up for bid once more. The contract was taken up by a person working for the United Fruit Company, who formed a"} +{"qid": "test1787", "pid": "8878769", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Arco Iris, Panama\"\nArco Iris, Panama Rainbow City, now known as the sector Arco Iris, in the corregimiento Cristóbal, is a section of the city of Colón in the Republic of Panama. It was originally built as segregated housing for Panama Canal employees and was developed into a proper town by the Canal Zone Government. During over a century of history, Rainbow City was home to some of Panama Canal's teachers, workers, and athletes. During the French canal construction era, in the 1880s, the area occupied by Rainbow City today showed up in maps as a little settlement called Guava Ridge. By the"} +{"qid": "test1787", "pid": "6782823", "query": "who owns and operates the panama canal today", "answer": "Panama Canal Authority", "passage": "\"Panama Canal Authority\"\nresponsible for the operation of the canal in a safe, continuous, efficient, and profitable manner. The Organic Law of the Panama Canal Authority, passed on June 11, 1997, provides the legal framework for the canal's organization and operation. Because of its unique nature, the ACP has financial autonomy, as well as ownership of the canal's assets. The Board of Directors is responsible for establishing policies for the operation, improvement, and modernization of the Canal, as well as supervising its management pursuant to the National Constitution, the Panama Canal Authority Organic Law, and the Regulations thereto appertaining. The board of directors"} +{"qid": "test1787", "pid": "13132155", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"History of Panama (1977–present)\"\nits operations are interfered with [the United States and Panama shall each] have the right to take such steps as each deems necessary, ... including the use of military force in the Republic of Panama, to reopen the Canal or restore the operations of the Canal\"\". Modifications of the Panama Canal Treaty included a reservation requiring statutory authorization for payments to Panama set forth in Article XIII and another stating that any action taken by the United States to secure accessibility to the Canal \"\"shall not have as its purpose or be interpreted as a right of intervention in the"} +{"qid": "test1787", "pid": "2859383", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Health measures during the construction of the Panama Canal\"\ntragic, it was far less than during the French era. Today, the Panama canal area is regarded as free of yellow fever and malaria. Health measures during the construction of the Panama Canal One of the greatest challenges facing the builders of the Panama Canal was dealing with the tropical diseases rife in the area. The health measures taken during the construction contributed greatly to the success of the canal's construction. These included general health care, the provision of an extensive health infrastructure, and a major program to eradicate disease-carrying mosquitoes from the area. By the time the United States"} +{"qid": "test1787", "pid": "335031", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal\"\nby then, the canal's re-inauguration was slated for April 2016. On March 23, 2016, the expansion inauguration was set for June 26, 2016. The new locks opened for commercial traffic on 26 June 2016, and the first ship to cross the canal using the third set of locks was a modern New Panamax vessel, the Chinese-owned container ship \"\"Cosco Shipping Panama\"\". The original locks, now over 100 years old, allow engineers greater access for maintenance, and are projected to continue operating indefinitely. The total cost is unknown since the expansion's contractors are seeking at least an addition from the canal"} +{"qid": "test1787", "pid": "6782824", "query": "who owns and operates the panama canal today", "answer": "Panama Canal Authority", "passage": "\"Panama Canal Authority\"\nis made up as follows: The Directors shall serve in their posts for a term of 9 years, and may only be removed for the reasons set forth in Article 20 of the Panama Canal Authority Organic Law. The Panama Canal is defined by law to be an inalienable patrimony of the Republic of Panama. Therefore, it may not be sold, assigned, mortgaged, or otherwise encumbered or transferred. The Panama Canal Authority Board of Directors is responsible for establishing policies for the operation, improvement, and modernization of the Canal, as well as supervising its management. At present, the Panama Canal"} +{"qid": "test1787", "pid": "2100146", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"Panama Canal Zone\"\n1951, under an act of Congress dated September 26, 1950 (64 Stat. 1038), governance of the Canal Zone was through the Canal Zone Government with the canal operated by the Panama Canal Company until 1979 when the Panama Canal Commission took over its governance. The entire structure was under the control of the United States government with the Secretary of the Army appointing the Panama Canal Company board of directors and the Canal Zone Government was entirely financed by the company. The office of Governor of the Panama Canal Zone was not usually a stepping stone to higher political office"} +{"qid": "test1787", "pid": "18720378", "query": "who owns and operates the panama canal today", "answer": "Panama", "passage": "\"History of the Nicaragua Canal\"\nconsidering the Spooner Act to authorize the Panama Canal. In addition to the promise of earlier completion of the Panama Canal, opponents of the Nicaraguan canal cited the risk of volcanic activity at the Momotombo volcano. They favored construction of a canal through the Isthmus of Panama. In 1898, the chief of the French Canal Syndicate (a group that owned large swathes of land across Panama), Philippe Bunau Varilla, hired William Nelson Cromwell to lobby the United States Congress for the Panama Canal. In 1902, taking advantage of a year with increased volcanic activity in the Caribbean Sea, Cromwell planted"} +{"qid": "test179", "pid": "9327303", "query": "when was where have all the flowers gone written", "answer": "1955", "passage": "\"Where Have All the Flowers Gone?\"\na special Grammy award established in 1973 to honor recordings that are at least 25 years old and that have \"\"qualitative or historical significance.\"\" Where Have All the Flowers Gone? \"\"Where Have All the Flowers Gone?\"\" is a modern folk-style song. The melody and the first three verses were written by Pete Seeger in 1955 and published in \"\"Sing Out!\"\" magazine. Additional verses were added in May 1960 by Joe Hickerson, who turned it into a circular song. Its rhetorical \"\"where?\"\" and meditation on death place the song in the \"\"ubi sunt\"\" tradition. In 2010, the \"\"New Statesman\"\" listed it"} +{"qid": "test179", "pid": "9327299", "query": "when was where have all the flowers gone written", "answer": "1955", "passage": "\"Where Have All the Flowers Gone?\"\nWhere Have All the Flowers Gone? \"\"Where Have All the Flowers Gone?\"\" is a modern folk-style song. The melody and the first three verses were written by Pete Seeger in 1955 and published in \"\"Sing Out!\"\" magazine. Additional verses were added in May 1960 by Joe Hickerson, who turned it into a circular song. Its rhetorical \"\"where?\"\" and meditation on death place the song in the \"\"ubi sunt\"\" tradition. In 2010, the \"\"New Statesman\"\" listed it as one of the \"\"Top 20 Political Songs\"\". The 1964 release of the song as a Columbia Records Hall of Fame series 45 single,"} +{"qid": "test179", "pid": "9327300", "query": "when was where have all the flowers gone written", "answer": "1955", "passage": "\"Where Have All the Flowers Gone?\"\n13-33088, by Pete Seeger was inducted into the Grammy Hall of Fame in 2002 in the Folk category. Seeger found inspiration for the song in October 1955 while he was on a plane bound for a concert at Oberlin College, one of the few venues which would hire him during the McCarthy era. Leafing through his notebook he saw the passage, \"\"Where are the flowers, the girls have plucked them. Where are the girls, they've all taken husbands. Where are the men, they're all in the army.\"\" These lines were taken from the traditional Cossack folk song \"\"Koloda-Duda\"\", referenced in"} +{"qid": "test1790", "pid": "13049436", "query": "who has won the most world series in baseball", "answer": "New York Yankees", "passage": "\"World Series ring\"\non World Series rings. The New York Yankees Museum, located in Yankee Stadium, has an exhibit with replicas of all Yankees' World Series rings, including the pocket watch given after the 1923 World Series. Yogi Berra won the most World Series rings with 10, as a player. Frankie Crosetti won 17 as a player and as a coach. Yogi Berra Museum and Learning Center. World Series ring A World Series ring is an award given to Major League Baseball players who win the World Series. Since only one Commissioner's Trophy is awarded to the team, a World Series ring is"} +{"qid": "test1790", "pid": "13518715", "query": "who has won the most world series in baseball", "answer": "the New York Yankees", "passage": "\"St. Louis Cardinals\"\nSt. Louis Cardinals The St. Louis Cardinals are an American professional baseball team based in St. Louis, Missouri. The Cardinals compete in Major League Baseball (MLB) as a member club of the National League (NL) Central division. Busch Stadium has been their home ballpark since 2006. One of the most successful franchises in baseball history, the Cardinals have won 11 World Series championships, the second-most in Major League Baseball (behind the New York Yankees) and the most in the National League. Their 19 National League pennants rank third in NL history. In addition, St. Louis has won 13 division titles"} +{"qid": "test1791", "pid": "15955441", "query": "where are the winter olympic games being played", "answer": "Beijing", "passage": "\"Ice hockey at the 2006 Winter Olympics – Women's qualification\"\nwinners qualified for the Olympic tournament. Games were played in Podolsk, Russia. Games were played in Bad Tölz, Germany. Games were played in Beijing, China. Ice hockey at the 2006 Winter Olympics – Women's qualification Qualification for the women's tournament at the 2006 Winter Olympics was determined by the IIHF World Ranking following the 2004 Women's World Ice Hockey Championships. The top four teams in the World Ranking received automatic berths into the Olympics, Italy received an automatic berth as host, and all other teams had an opportunity to qualify for the remaining three spots in the Olympics. Three round-robins"} +{"qid": "test1795", "pid": "4878420", "query": "who was the viceroy when the simon commission visited india", "answer": "Lord Irwin", "passage": "\"Simon Commission\"\nfrom some members of the Muslim League and also both Hindus and members of the Central Sikh League. An All-India Committee for Cooperation with the Simon Commission was established by the Council of India and by selection of the Viceroy, Lord Irwin. The members of the committee were: C. Sankaran Nair (Chairman), Arthur Froom, Nawab Ali Khan, Shivdev Singh Uberoi, Zulfiqar Ali Khan, Hari Singh Gour, Abdullah Al-Mamun Suhrawardy, Kikabhai Premchand and M. C. Rajah. In Burma (Myanmar), which was included in the terms of reference of the Simon Commission, there was strong suspicion either that Burma's unpopular union with"} +{"qid": "test1795", "pid": "2081405", "query": "who was the viceroy when the simon commission visited india", "answer": "Lord Irwin", "passage": "\"Rufus Isaacs, 1st Marquess of Reading\"\nCaptain of Deal Castle in 1927, a position he held until 1934. As Viceroy Reading was appointed GCSI and GCIE \"\"ex officio\"\" in 1921, and in 1922 was promoted to GCVO. As a former Viceroy, Reading was critical of some of the policies of his successor Lord Irwin. On 5 November 1929 he attacked Irwin in the House of Lords for using the term “Dominion Status” with regard to India, prior to the report of the Simon Commission. On his return from India, Reading, who had no pension and was a heavy spender, sat on several corporate boards, and later"} +{"qid": "test1795", "pid": "5213317", "query": "who was the viceroy when the simon commission visited india", "answer": "Lord Irwin", "passage": "\"Round Table Conferences (India)\"\nRound Table Conferences (India) The three Round Table Conferences of 1930–32 were a series of conferences organized by the British Government and Indian national congress was participant to discuss constitutional reforms in India. These started in November 1930 and ended in December 1932. They were conducted as per the recommendation of Jinnah to Viceroy Lord Irwin and Prime Minister Ramsay MacDonald, and by the report submitted by the Simon Commission in May 1930. Demands for swaraj, or self-rule, in India had been growing increasingly strong. Mahatma Gandhi, Sir Tej Bahadur Sapru, Srinivasa, Sir Muhammad Zafrulla Khan and Mirabehn are key"} +{"qid": "test1795", "pid": "2081431", "query": "who was the viceroy when the simon commission visited india", "answer": "Lord Irwin", "passage": "\"John Simon, 1st Viscount Simon\"\nChamberlain wrote of him to the Viceroy of India Lord Irwin (12 August 1928): \"\"I am always trying to like him, and believing I shall succeed when something crops up to put me off\"\". Dutton describes his eventual report as a \"\"lucid exposition of the problems of the subcontinent in all their complexity\"\". However, he had been hampered by the Inquiry's terms of reference (no Indians were included on the committee) and his conclusions were overshadowed by the Irwin Declaration of October 1929, to which Simon was opposed, which promised India eventual dominion status. Simon was appointed GSCI 1930. Before"} +{"qid": "test1795", "pid": "11919510", "query": "who was the viceroy when the simon commission visited india", "answer": "Lord Irwin", "passage": "\"History of the British Raj\"\nTable Conferences of 1930–32 were a series of conferences organised by the British Government to discuss constitutional reforms in India. They were conducted according to the recommendation of Muslim leader Muhammad Ali Jinnah to the Viceroy Lord Irwin and the Prime Minister Ramsay MacDonald, and by the report submitted by the Simon Commission in May 1930. Demands for swaraj, or self-rule, in India had been growing increasingly strong. By the 1930s, many British politicians believed that India needed to move towards dominion status. However, there were significant disagreements between the Indian and the British leaders that the Conferences could not"} +{"qid": "test1796", "pid": "405605", "query": "who in germany signed the treaty of versailles", "answer": "colonial minister Johannes Bell", "passage": "\"Treaty of Versailles\"\nposition in the event of renewed hostilities. Upon receiving this, the new government recommended signing the treaty. The National Assembly voted in favour of signing the treaty by 237 to 138, with five abstentions (there were 421 delegates in total). This result was wired to Clemenceau just hours before the deadline. Foreign minister Hermann Müller and colonial minister Johannes Bell travelled to Versailles to sign the treaty on behalf of Germany. The treaty was signed on 28 June 1919 and ratified by the National Assembly on 9 July by a vote of 209 to 116. Conservatives, nationalists and ex-military leaders"} +{"qid": "test1796", "pid": "4669347", "query": "who in germany signed the treaty of versailles", "answer": "Gustav Bauer", "passage": "\"Article 231 of the Treaty of Versailles\"\ntreaty within seven days or face the resumption of hostilities. The German government was divided on whether to sign or reject the peace treaty. On 19 June, Chancellor Philipp Scheidemann resigned rather than sign the treaty and was followed by Brockdorff-Rantzau and other members of the government, leaving Germany without a cabinet or peace delegation. After being advised by Field Marshal Paul von Hindenburg that Germany was in no condition to resume the war, President Friedrich Ebert and the new Chancellor, Gustav Bauer, recommended that the Weimar National Assembly ratify the treaty. The Assembly did so by a large majority,"} +{"qid": "test1797", "pid": "119134", "query": "who holds the record for most platinum albums", "answer": "Elvis Presley", "passage": "\"Elvis Presley\"\n146.5 million certified album sales in the U.S., third all time behind the Beatles and Garth Brooks. He holds the records for most gold albums (117, more than twice as many as second-place Barbra Streisand's 51), most platinum albums (67), and most multi-platinum albums (27). His total of 197 album certification awards (including one diamond award), far outpaces the Beatles' second-best 122. He has the most gold singles (54) and the fourth-most platinum singles (27, behind Rihanna, Taylor Swift, and Chris Brown). A vast number of recordings have been issued under Presley's name. The total number of his original master"} +{"qid": "test1797", "pid": "8030649", "query": "who holds the record for most platinum albums", "answer": "Elvis Presley", "passage": "\"Barbra Streisand discography\"\nhas certified sales of more than 68.5 million albums, according to the Recording Industry Association of America. With 52 gold and 31 platinum albums, Streisand exceeds all other female singers and all other recording artists other than Elvis Presley. She is the only female artist to have achieved fourteen multi-platinum albums, including the soundtrack for her film \"\"A Star Is Born\"\". Her recordings have earned her eight Grammy Awards and the Grammy's Lifetime Achievement Award and Legend Award. According to \"\"Billboard\"\", Streisand holds the record for the female with the most number one albums (11). \"\"Billboard\"\" also recognizes Streisand as"} +{"qid": "test1797", "pid": "16303225", "query": "who holds the record for most platinum albums", "answer": "Elvis Presley", "passage": "\"Elvis Presley albums discography\"\nElvis Presley albums discography This is a discography of albums by Elvis Presley. The Recording Industry Association of America (RIAA) first began tracking sales of Elvis Presley in 1958, who did not receive his first Gold Album award until that year. In August 1992, he was awarded with 110 gold, platinum and multi-platinum albums and singles, the largest presentation of gold and platinum record awards in history. According to the latest data from the RIAA website, Elvis has a total of 117 gold, 67 platinum and 27 multi-platinum album awards by the organization. According to RIAA, he has sold over"} +{"qid": "test1799", "pid": "1820255", "query": "who starred in an officer and a gentleman", "answer": "Richard Gere", "passage": "\"An Officer and a Gentleman\"\non the original record. \"\"Up Where We Belong\"\" was released as a single and became a global hit peaking at number one in the US, Canada, and Australia, and reaching the top 10 in many other countries. An Officer and a Gentleman An Officer and a Gentleman is a 1982 American romantic drama film starring Richard Gere, Debra Winger, and Louis Gossett Jr., who won the Academy Award for Best Supporting Actor for the film, making him the first African American to do so. It tells the story of Zack Mayo (Gere), a United States Navy Aviation Officer Candidate who"} +{"qid": "test1799", "pid": "1820231", "query": "who starred in an officer and a gentleman", "answer": "Richard Gere", "passage": "\"An Officer and a Gentleman\"\nAn Officer and a Gentleman An Officer and a Gentleman is a 1982 American romantic drama film starring Richard Gere, Debra Winger, and Louis Gossett Jr., who won the Academy Award for Best Supporting Actor for the film, making him the first African American to do so. It tells the story of Zack Mayo (Gere), a United States Navy Aviation Officer Candidate who is beginning his training at Aviation Officer Candidate School. While Zack meets his first true girlfriend during his training, a young \"\"townie\"\" named Paula (Winger), he also comes into conflict with the hard-driving Marine Corps Gunnery Sergeant"} +{"qid": "test1799", "pid": "5529156", "query": "who starred in an officer and a gentleman", "answer": "Richard Gere", "passage": "\"Dilbert Dunker\"\nthe water's surface. Dilbert Dunker The Dilbert Dunker is a device for training pilots on how to correctly escape a submerged plane. It was invented by Wilfred Kaneb, a nautical engineer, during World War II. The device was featured in the 1982 film, \"\"An Officer and a Gentleman\"\", starring Richard Gere and Debra Winger. The word Dilbert is not listed in the dictionary although the term is used in the United States Navy to define a person who is slow witted and incapable of getting things done correctly {see , a World War II-era cartoon character who is a bumbling"} +{"qid": "test1799", "pid": "5529154", "query": "who starred in an officer and a gentleman", "answer": "Richard Gere", "passage": "\"Dilbert Dunker\"\nDilbert Dunker The Dilbert Dunker is a device for training pilots on how to correctly escape a submerged plane. It was invented by Wilfred Kaneb, a nautical engineer, during World War II. The device was featured in the 1982 film, \"\"An Officer and a Gentleman\"\", starring Richard Gere and Debra Winger. The word Dilbert is not listed in the dictionary although the term is used in the United States Navy to define a person who is slow witted and incapable of getting things done correctly {see , a World War II-era cartoon character who is a bumbling navy pilot}. It"} +{"qid": "test18", "pid": "15448459", "query": "who is the current director of the us mint", "answer": "David J. Ryder", "passage": "\"Director of the United States Mint\"\nDirector of the United States Mint The Director of the United States Mint is a presidential appointment needing Senate confirmation. David J. Ryder became director in April 2018. He previously served as director from 1992 to 1993. When the position of director is vacant, the senior career (non-political) official of the mint serves as the acting director/deputy director. Until the appointment of Mr. Ryder as director, the mint had been without an official director since the resignation of Edmund C. Moy in 2011. Richard A. Peterson succeeded Mr. Moy and was the longest-serving acting director/deputy director in the mint's history."} +{"qid": "test18", "pid": "15448461", "query": "who is the current director of the us mint", "answer": "David J. Ryder", "passage": "\"Director of the United States Mint\"\nof 1873 specified a five-year term for directors. The director operates with general directions provided by the United States Secretary of the Treasury. Director of the United States Mint The Director of the United States Mint is a presidential appointment needing Senate confirmation. David J. Ryder became director in April 2018. He previously served as director from 1992 to 1993. When the position of director is vacant, the senior career (non-political) official of the mint serves as the acting director/deputy director. Until the appointment of Mr. Ryder as director, the mint had been without an official director since the resignation"} +{"qid": "test18", "pid": "15447538", "query": "who is the current director of the us mint", "answer": "David J. Ryder", "passage": "\"David J. Ryder\"\nNovember 1993 via a recess appointment. In 2017, Ryder was again nominated as Director of the United States Mint by President Donald Trump and confirmed by a voice vote on March 21, 2018. David J. Ryder David J. Ryder (born October 14, 1955) is the current Director of the United States Mint. He formerly was in the same position from 1992 to 1993. David J. Ryder was born in Billings, Montana on October 14, 1955. He attended Boise State University. Ryder worked for the United States Department of Commerce as deputy commissioner general of the U.S. Pavilion at the 1984"} +{"qid": "test180", "pid": "7996633", "query": "industrial city in germany on the rhine herne canal", "answer": "Henrichenburg", "passage": "\"Rhine–Herne Canal\"\nRhine–Herne Canal The Rhine–Herne Canal () is a transportation canal in the Ruhr area of North Rhine-Westphalia, Germany, with five canal locks. The canal was built over a period of eight years (5 April 1906 - 14 July 1914) and connects the harbour in Duisburg on the Rhine () with the Dortmund-Ems Canal near Henrichenburg (), following the valley of the Emscher. It was widened in the 1980s. The Rhein-Herne canal ship was designed specifically for this canal; normally of about 1300–1350 ton capacity, it has a maximum draft of , a length of approximately , and maximum beam of"} +{"qid": "test180", "pid": "7996648", "query": "industrial city in germany on the rhine herne canal", "answer": "Henrichenburg", "passage": "\"Rhine–Herne Canal\"\nFish that inhabit the canal include European eel, European carp, zander, carp bream, common roach and common rudd, as well as the less common pike and rainbow trout. Rhine–Herne Canal The Rhine–Herne Canal () is a transportation canal in the Ruhr area of North Rhine-Westphalia, Germany, with five canal locks. The canal was built over a period of eight years (5 April 1906 - 14 July 1914) and connects the harbour in Duisburg on the Rhine () with the Dortmund-Ems Canal near Henrichenburg (), following the valley of the Emscher. It was widened in the 1980s. The Rhein-Herne canal ship"} +{"qid": "test180", "pid": "7996634", "query": "industrial city in germany on the rhine herne canal", "answer": "Henrichenburg", "passage": "\"Rhine–Herne Canal\"\n. Originally the Rhine-Herne canal ended in Herne, where it met a branch of the \"\"Dortmund-Ems-Kanal\"\" running from Henrichenburg to Herne, the intersection situated just above the East Herne lock. After the closure of the last part of the Henrichenburg to Herne canal, the Henrichenburg-Herne section of the \"\"Dortmund-Ems\"\" was added to the Rhein-Herne Canal. The distribution of water in the canal is realised through five pump stations. Located at Duisburg-Meiderich, Oberhausen, Gelsenkirchen, Wanne-Eickel and East Herne, they pump water from the Rhine into the canal at each stage. As well as this, water from the Lippe river to the"} +{"qid": "test180", "pid": "7996636", "query": "industrial city in germany on the rhine herne canal", "answer": "Duisburg", "passage": "\"Rhine–Herne Canal\"\nand in breadth a new sluice chamber with a usable length of and a breadth of were commissioned, so that bigger ships with lighters (barges) as specified in Euro class II can pass through the sluice gates. The canal begins in Duisburg along with the Schifffahrtskanal; connected to land by three bays of the \"\"Kanalhafen\"\", and to the rest of the world via the Rhine. The Rhine-Herne Canal headquarters is in the Meiderich district of Duisburg, it serves as the water and shipping management canal and its locks from Essen to Herne. From here maintenance and repair work are organised"} +{"qid": "test180", "pid": "19228798", "query": "industrial city in germany on the rhine herne canal", "answer": "Henrichenburg", "passage": "\"Wasserverband Westdeutsche Kanäle\"\nnavigable rivers. The oldest part, the Dortmund-Ems Canal, is connecting the eastern Ruhr since 1898 with the North Sea. In 1914 the connection to the Rhine followed via the Rhine-Herne Canal and the Datteln-Hamm Canal was opened, too. In 1930 the Wesel-Datteln Canal was finished. All these connected waterways need to bridge altitude differences between the starting point, the connected harbours and the arrival point. For these purposes there are today e.g at the Rhine-Herne Canal 5 sluices and at the Wesel-Datteln Canal 6 sluices; at the Henrichenburg boat lift two ancient and two actually utilized sluices facilitate the bypassing"} +{"qid": "test180", "pid": "7292050", "query": "industrial city in germany on the rhine herne canal", "answer": "Duisburg", "passage": "\"Turks in Germany\"\nestimate by a European official suggesting that there are seven million Turks living in Germany, including the second generation. The Turkish community in Germany is concentrated predominantly in urban centers. The vast majority are found in the former West Germany, particularly in industrial regions such as the states of North Rhine-Westphalia (where a third of German Turks live), and Baden-Württemberg and the working-class neighbourhoods of cities like Berlin (especially in Neukölln), Hamburg, Bremen, Cologne, Duisburg, Düsseldorf, Frankfurt, Mannheim, Mainz, Nuremberg, Munich, and Stuttgart. Among the German districts in 2011 Duisburg, Gelsenkirchen, Heilbronn, Herne, North Rhine-Westphalia and Ludwigshafen had the highest"} +{"qid": "test180", "pid": "7996647", "query": "industrial city in germany on the rhine herne canal", "answer": "Henrichenburg", "passage": "\"Rhine–Herne Canal\"\nMarmorit (Hafen Marmorit) is the port of cement and lime mortar manufacturer and distributor \"\"Marmorit Knauf GmbH\"\" located north of a disused canal side channel and just north of the bridge carrying \"\"Wartburgstraße\"\" (Wartburgstreet). The actual facility consists of little more than a pier. Here after ends (or begins) the Rhine–Herne Canal, which meets the Dortmund-Ems canal (at the 14.7-kilometre mark) near the old Henrichenburg boat lift (replaced in 1962 by a newer lock, and in 1989 by a new larger lock). The terminal is used as a mooring for pleasure craft. It forms part of the Waltrop lock park."} +{"qid": "test1800", "pid": "4285331", "query": "what does the msc in msc cruises stand for", "answer": "Mediterranean Shipping Company S.A.", "passage": "\"MSC Cruises\"\nMSC Cruises MSC Cruises is a global cruise line that was founded in Italy, is registered in Switzerland, and has its headquarters in Geneva. MSC Cruises is the world's largest privately held cruise company, employing 16,500 people worldwide and having offices in 45 countries . MSC Cruises (.p.A.) is part of the Mediterranean Shipping Company S.A. (MSC), the world's second biggest container shipping operator. MSC Cruises is the fourth largest cruise company in the world, after Carnival Corporation & plc, Royal Caribbean Cruises Ltd. and Norwegian Cruise Line with a 7.2% share of all passengers carried in 2017. MSC Cruises"} +{"qid": "test1801", "pid": "268034", "query": "ajay devgan preity zinta and madhuri dixit movie", "answer": "Yeh Raaste Hain Pyaar Ke", "passage": "\"Madhuri Dixit\"\nthen played the title character in \"\"Gaja Gamini\"\", the first feature film directed by painter M. F. Husain. Hussain was fixated with Dixit, and watched her \"\"Hum Aapke Hain Koun..!\"\" several times, and was certain that he would make a film only with her. The film followed the story of Gaja Gamini, who appears in various incarnations as Mona Lisa, Shakuntala and others. \"\"Pukar\"\" was an average grosser, while the latter bombed at the box office. In 2001, Dixit starred in Deepak Shivdasani's love triangle \"\"Yeh Raaste Hain Pyaar Ke\"\" opposite Ajay Devgan and Preity Zinta. Dixit followed up by"} +{"qid": "test1801", "pid": "3934423", "query": "ajay devgan preity zinta and madhuri dixit movie", "answer": "Yeh Raaste Hain Pyaar Ke", "passage": "\"Ajay Devgn\"\ndo well at the box office. In the same year, Devgn starred in his first home production; \"\"Raju Chacha\"\", with Kajol. The film was moderately successful. In 2001, Devgn starred in another moderately successful film; \"\"Yeh Raaste Hain Pyaar Ke\"\" with Madhuri Dixit and Preity Zinta. His next release was \"\"Lajja\"\", with Manisha Koirala, Madhuri Dixit, Jackie Shroff and Anil Kapoor. He was nominated for the Filmfare Best Supporting Actor Award. However, the film was not popular with the public. Mahesh Manjrekar's \"\"Tera Mera Saath Rahen\"\" followed. In 2002, Devgn performed in Ram Gopal Varma's fictional examination of the Mumbai"} +{"qid": "test1801", "pid": "6089794", "query": "ajay devgan preity zinta and madhuri dixit movie", "answer": "Yeh Raaste Hain Pyaar Ke", "passage": "\"Yeh Raaste Hain Pyaar Ke\"\nYeh Raaste Hain Pyaar Ke Yeh Raaste Hain Pyaar Ke (,) is a 2001 Bollywood romantic drama film. It is a love triangle directed by Deepak Shivdasani. The movie was average on box office by earning 13.2cr in india. Two con artists and car thieves, Vicky (Ajay Devgn) and Sakshi (Preity Zinta), are faced with death when they accidentally kill Bhanwarlal's (Deep Dhillon) brother. Bhanwarlal and his other brother swear to avenge the death of their brother and mistakenly kill Rohit Verma (Ajay Devgn), is a look-alike of Vicky. The mistaken identity causes Sakshi to think that Vicky is dead"} +{"qid": "test1802", "pid": "2721436", "query": "the very last episode of that's so raven", "answer": "Where There's Smoke", "passage": "\"That's So Raven\"\nsoundtrack, released in 2004. In Disney Channel Asia, an Asian version of the show's theme song was made. The music video debuted on January 17, 2007, back-to-back with the 100th episode of \"\"That's So Raven\"\". It also aired in China on CCTV as 那是因此掠夺. The series is the third-longest running Disney Channel Original Series, with its popularity extending the show's contract from 65 to 100 episodes. The last episode produced was \"\"The Way We Were\"\", but then \"\"Checkin' Out\"\" was produced. Although it was chronologically the last episode, it did not air last; instead, \"\"Where There's Smoke\"\" aired last. The"} +{"qid": "test1803", "pid": "8623499", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Interrupted aortic arch\"\ngo undetected, delaying treatment until closure of the ductus arteriosus produces symptoms. Curative treatment consists of open heart surgery soon after birth, preferably within the first week after birth while there is a patent ductus arteriosus. Awaiting surgery, prostaglandin can be administered to keep the ductus arteriosus open, thereby allowing blood flow to the lower body. After successful treatment, the patient is monitored for the rest of their life by a specialist to ensure that problems do not occur. Failure to treat the condition yields a mortality rate of 90% at a median age of 4 days. Death occurs due"} +{"qid": "test1803", "pid": "3248272", "query": "when does closure of the ductus arteriosus occur", "answer": "at birth", "passage": "\"Ductus arteriosus\"\nDuctus arteriosus In the developing fetus, the ductus arteriosus, also called the ductus Botalli, is a blood vessel connecting the main pulmonary artery to the proximal descending aorta. It allows most of the blood from the right ventricle to bypass the fetus's fluid-filled non-functioning lungs. Upon closure at birth, it becomes the ligamentum arteriosum. There are two other fetal shunts, the ductus venosus and the foramen ovale. The ductus arteriosus is formed from the left 6th aortic arch during embryonic development and attaches to the final part of the aortic arch (the isthmus of aorta) and the first part of"} +{"qid": "test1803", "pid": "3248277", "query": "when does closure of the ductus arteriosus occur", "answer": "at birth", "passage": "\"Ductus arteriosus\"\neffects of the NSAIDs and maintain the patency of the DA for the remainder of the pregnancy. A patent ductus arteriosus affects approximately 4% of infants with Down syndrome (DS). A failure to thrive is a very common sign of this condition. Ductus arteriosus In the developing fetus, the ductus arteriosus, also called the ductus Botalli, is a blood vessel connecting the main pulmonary artery to the proximal descending aorta. It allows most of the blood from the right ventricle to bypass the fetus's fluid-filled non-functioning lungs. Upon closure at birth, it becomes the ligamentum arteriosum. There are two other"} +{"qid": "test1803", "pid": "12661956", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "Fetus\nas long as the ductus remains open: in such cases the closure of the ductus can be delayed by the administration of prostaglandins to permit sufficient time for the surgical correction of the anomalies. Conversely, in cases of patent ductus arteriosus, where the ductus does not properly close, drugs that inhibit prostaglandin synthesis can be used to encourage its closure, so that surgery can be avoided. Other heart birth defects include ventricular septal defect, pulmonary atresia, and tetralogy of Fallot. Fetal pain , its existence and its implications are debated politically and academically. According to the conclusions of a review"} +{"qid": "test1803", "pid": "4081552", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Adaptation to extrauterine life\"\nresistance, which leads to an increase in pressure gradient from the left atrium. The left atrium now has higher pressure than the right atrium causing the foramen ovale to close. Within the first 10 minutes of birth, blood begins to flow left-to-right through the ductus arteriosus. This causes a significant increase in output of the left ventricle and increase in stroke volume. Subsequently, calcium channel activity increases and potassium channel decreases furthering ductal constriction. Functional closure of the ductus arteriosus occurs within the first 24 hours, with permanent closure following within 4 weeks. Lastly cardiac output increases to nearly double"} +{"qid": "test1803", "pid": "2903806", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Patent ductus arteriosus\"\nPatent ductus arteriosus Patent ductus arteriosus (PDA) is a condition wherein the ductus arteriosus fails to close after birth. Early symptoms are uncommon, but in the first year of life include increased work of breathing and poor weight gain. An uncorrected PDA may lead to congestive heart failure with increasing age. The ductus arteriosus is a fetal blood vessel that closes soon after birth. In a PDA, the vessel does not close and remains \"\"patent\"\" (open), resulting in an irregular transmission of blood between the aorta and the pulmonary artery. PDA is common in newborns with persistent respiratory problems such"} +{"qid": "test1803", "pid": "2903812", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Patent ductus arteriosus\"\na \"\"patent ductus arteriosus\"\", the blood flow is reversed from that of \"\"in utero\"\" flow; i.e., the blood flow is from the higher-pressure aorta to the now lower-pressure pulmonary arteries. In normal newborns, the DA is substantially narrowed within 12–24 hours after birth, and seals completely after three weeks. The primary stimulus for closure of the DA is an increase in neonatal blood oxygen content. Withdrawal from maternal circulating prostaglandins also contributes to ductal closure. The residual scar tissue from the fibrotic remnants of the DA, called the \"\"ligamentum arteriosum\"\", remains in the normal adult heart. Some evidence suggests that"} +{"qid": "test1803", "pid": "18683027", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Franz Freudenthal\"\nas a patent ductus arteriosus (PDA). This occurs when the ductus arteriosus blood vessel, which bypasses the lungs before a baby is born, fails to close up soon after birth. The affected infant suffers from labored breathing, failure to gain weight and other problems. The condition is much more common in Bolivia, where the country around La Paz is at an elevation of , than in other places. The device is made from a single wire of nitinol, a flexible alloy of nickel and titanium. Nitinol was originally developed by the US military. The tiny \"\"Nit Occlud\"\" devices are small"} +{"qid": "test1803", "pid": "3099259", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Dextro-Transposition of the great arteries\"\novale and ductus arteriosus are allowed to close naturally, the newborn will likely not survive long enough to receive corrective surgery. With complex d-TGA, the infant will fail to thrive and is unlikely to survive longer than a year if corrective surgery is not performed. In most cases, the patient's condition will deteriorate to the point of inoperability if the defect is not corrected in the first year. While the foramen ovale and ductus arteriosus are open after birth, some mixing of red and blue blood occurs allowing a small amount of oxygen to be delivered to the body; if"} +{"qid": "test1803", "pid": "11147855", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Prostaglandin EP4 receptor\"\nof EP receptor antagonists and agonists in animals as well as animal and human tissues indicate that this receptor serves various functions. However, an EP receptor function found in these studies does not necessarily indicate that in does so in humans since EP receptor functions can vary between species. EP plays a critical role in postnatal closure of the ductus arteriosus as defined in mice lacking a functional gene for this receptor, i.e. EP(-/-) mice (see Knockout mouse). About 95% of EP(-/-) mice die within 3 days of birth due to the pulmonary congestion and heart failure caused by a"} +{"qid": "test1803", "pid": "3099254", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Dextro-Transposition of the great arteries\"\nand the ductus arteriosus. The foramen ovale is a hole in the atrial septum which allows blood from the right atrium to flow into the left atrium; after birth, the left atrium will be filled with blood returning from the lungs and the foramen ovale will close. The ductus arteriosus is a small, artery-like structure which allows blood to flow from the trunk of the pulmonary artery into the aorta; after birth, the blood in the pulmonary artery will flow into the lungs and the ductus arteriosus will close. Sometimes these shunts will fail to close after birth; these defects"} +{"qid": "test1803", "pid": "7130032", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Aortic arches\"\nthe left pulmonary artery and forms the ductus arteriosus; this duct remains pervious during the whole of fetal life, but then closes within the first few days after birth due to increased O concentration. Oxygen concentration causes the production of bradykinin which causes the ductus to constrict occluding all flow. Within 1–3 months, the ductus is obliterated and becomes the ligamentum arteriosum. The ductus arteriosus connects at a junction point that has a low pressure zone (commonly called Bernoulli's principle) created by the inferior curvature (inner radius) of the artery. This low pressure region allows the artery to receive (siphon)"} +{"qid": "test1803", "pid": "2903814", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Patent ductus arteriosus\"\nblock the blood vessel with woven structures of nitinol wire. Because prostaglandin E2 is responsible for keeping the DA open, NSAIDs (which can inhibit prostaglandin synthesis) such as indomethacin or a special form of ibuprofen have been used to initiate PDA closure. Recent findings from a systematic review concluded that, for closure of a PDA in preterm and/or low birth weight infants, ibuprofen is as effective as indomethacin. It also causes fewer side effects (such as transient renal insufficiency) and reduces the risk of necrotising enterocolitis. A review and meta-analysis showed that paracetamol may be effective for closure of a"} +{"qid": "test1803", "pid": "15247129", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "Hydrocodone/ibuprofen\nas there are conflicting reports of birth defects after in utero exposure. However, it is accepted that NSAIDs prevent closure of the fetal ductus arteriosus, which happens during the later stages of pregnancy. Because of this, ibuprofen should be avoided after 30 weeks gestation. Hydrocodone and Ibuprofen are excreted in breast milk, so appropriate caution should be taken when prescribing to breastfeeding mothers. There is no evidence to support altered pharmacokinetic properties due to differences in gender or age. However, this drug combination has not been tested in children. The side effects for hydrocodone/ibuprofen are a combination of the side"} +{"qid": "test1803", "pid": "5647300", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Ductus venosus\"\nis open at the time of birth and is the reason why umbilical vein catheterization works. The ductus venosus naturally closes during the first week of life in most full-term neonates; however, it may take much longer to close in pre-term neonates. Functional closure occurs within minutes of birth. Structural closure in term babies occurs within 3 to 7 days. After it closes, the remnant is known as ligamentum venosum. Ductus venosus In the fetus, the ductus venosus (Arantius' duct after Julius Caesar Aranzi) shunts a portion of the left umbilical vein blood flow directly to the inferior vena cava."} +{"qid": "test1803", "pid": "3248275", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Ductus arteriosus\"\nbetween vaginal and scheduled caesarean deliveries, at 26.97 and 28.93 h, respectively (p=0.0245). In some types of congenital heart defect (e.g., transposition of the great arteries), prostaglandins may be administered to maintain DA patency, allowing for the continual circulation and oxygenation of blood, until surgery can be performed. DA closure may be induced by administration of nonsteroidal anti-inflammatory drugs (NSAIDs), which inhibit prostaglandin production. The most common NSAID that is used to force DA closure is Indomethacin (a prostaglandin synthetase inhibitor), which can be administered after birth (used in first week of life). However, in the presence of a congenital"} +{"qid": "test1803", "pid": "2918964", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Ligamentum arteriosum\"\nLigamentum arteriosum The ligamentum arteriosum () is a small ligament that is the remnant of the ductus arteriosus formed within three weeks after birth. At the superior end, the ligamentum attaches to the aorta—at the final part of the aortic arch (the isthmus of aorta) or the first part of the descending aorta. On the other, inferior end, the ligamentum is attached to the top of the left pulmonary artery. The ligament is a vestige of the ductus arteriosus, a temporary fetal structure that shunts blood from the pulmonary arteries to the aorta, in order to avoid circulating blood through"} +{"qid": "test1803", "pid": "2918966", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Ligamentum arteriosum\"\nrapid decelerations recoil, consequently potentially resulting in ruptured aorta. Ligamentum arteriosum The ligamentum arteriosum () is a small ligament that is the remnant of the ductus arteriosus formed within three weeks after birth. At the superior end, the ligamentum attaches to the aorta—at the final part of the aortic arch (the isthmus of aorta) or the first part of the descending aorta. On the other, inferior end, the ligamentum is attached to the top of the left pulmonary artery. The ligament is a vestige of the ductus arteriosus, a temporary fetal structure that shunts blood from the pulmonary arteries to"} +{"qid": "test1803", "pid": "4994600", "query": "when does closure of the ductus arteriosus occur", "answer": "at birth", "passage": "\"Hypoplastic left heart syndrome\"\nHypoplastic left heart syndrome Hypoplastic left heart syndrome (HLHS) is a rare congenital heart defect in which the left side of the heart is severely underdeveloped. It may affect the left ventricle, aorta, aortic valve, or mitral valve. At birth, the ductus arteriosus is still open, and there is higher than normal resistance to blood flow in the lungs. This allows for adequate oxygenation via mixing between the atria and a normal appearance at birth. When the ductus begins to close and pulmonary vascular resistance decreases, blood flow through the ductus is restricted and flow to the lungs is increased,"} +{"qid": "test1803", "pid": "4633139", "query": "when does closure of the ductus arteriosus occur", "answer": "birth", "passage": "\"Recurrent laryngeal nerve\"\nrise to the superior laryngeal nerve. The arteries of the fourth arch, which project between the nerves of the fourth and sixth arches, become the left-sided arch of the aorta and the right subclavian artery. The arteries of the sixth arch persists as the ductus arteriosus on the left, and is obliterated on the right. After birth, the ductus arteriosus regresses to form the ligamentum arteriosum. During growth, these arteries descend into their ultimate positions in the chest, creating the elongated recurrent paths. In roughly 1 out of every 100–200 people, the right inferior laryngeal nerve is nonrecurrent, branching off"} +{"qid": "test1807", "pid": "8618861", "query": "when does scully come back in season 2", "answer": "8", "passage": "\"Giuseppe Sculli\"\nfor F.C. Crotone against his current club F.C. Messina at the last match-day of the 2001–02 Serie B. He was sold by Juventus to Genoa for €300,000. In the 2007-08 season, Sculli finally made his return to football, his first match back was against Catania in Serie A's Round 2. He went on to make 35 appearances that season, scoring 4 goals. The next season, he managed a career high 9 goals in 35 Serie A appearances. The following season, Sculli made his European football debut in the Europa League, scoring goals Slavia Prague and LOSC LIlle as Genoa went"} +{"qid": "test1807", "pid": "13096766", "query": "when does scully come back in season 2", "answer": "One Breath", "passage": "\"Per Manum\"\nscan that seems to vindicate his story. As the agents leave, Doggett notes similarities between the case and Scully's history, although he does not yet know that Scully is pregnant. In a flashback, Fox Mulder (David Duchovny) tells Scully that her abduction (in the second season episodes \"\"Ascension and \"\"One Breath\"\") has rendered her infertile, as her ova were harvested for genetic experiments. Mulder later found them in a secret facility (in fourth season's \"\"Memento Mori\"\"), but they were not viable. At Zeus Genetics clinic, Scully overhears a pregnant woman, Mary Hendershot (Saxon Trainor), who is telling her doctor that"} +{"qid": "test1807", "pid": "8618860", "query": "when does scully come back in season 2", "answer": "8", "passage": "\"Giuseppe Sculli\"\nfor a lump sum of €1.05M. Sculli signed a contract until the summer of 2008, and was immediately loaned out to Messina for the 2005-06 season. Sculli was a vital part of Messina's set-up, playing on either wing and managed 2 goals in 33 appearances. In 2006, Juventus were relegated to Serie B, at which point Sculli made a return to the first team. He made a few appearances in friendly matches, but was loaned to newly promoted Serie B team Genoa on 24 August. In November 2006, he was suspended 8 months for accused of match-fixing when he played"} +{"qid": "test1807", "pid": "8618859", "query": "when does scully come back in season 2", "answer": "8", "passage": "\"Giuseppe Sculli\"\nsum of €450K along with Paro and Gastaldello as part of the deal of Nicola Legrottaglie transfer. Sculli endured a difficult campaign at Chievo in the 2003–04 season, struggling for playing time and form, scoring 3 goals in 20 appearances. He was sent on loan to Serie A side Brescia Calcio in an attempt to aid the player in regaining his form. Sculli played much more this season, making 28 appearances, but for the first time in his senior professional career, failed to score a single goal that season. Juventus brought back Sculli, Paro and Gastaldello from Chievo in 2005"} +{"qid": "test1807", "pid": "11752750", "query": "when does scully come back in season 2", "answer": "8", "passage": "\"Millennium (The X-Files)\"\nsuppose, but still seems worth it for having brought back Lance Henriksen.\"\" The episode is notable for featuring the first actual kiss between Fox Mulder and Dana Scully. The series had featured other brushes with kisses between the two leads: in the fourth season episode \"\"Small Potatoes\"\", a shapeshifter, disguised as Mulder, nearly kissed Scully; in the 1998 film, the two's \"\"lips brushed slightly before Scully got stung by a virus-carrying bee\"\"; and in the sixth season entry \"\"Triangle\"\", Mulder kissed a Scully-lookalike from the 1930s in a reverie. John Shiban developed the idea for a Mulder–Scully kiss, which was"} +{"qid": "test1807", "pid": "2374044", "query": "when does scully come back in season 2", "answer": "8", "passage": "\"Dana Scully\"\nLady of Sorrows\"\", a private Catholic hospital – where she stayed for seven years, until rejoining the FBI. In contrast to Mulder's credulous \"\"believer\"\" character, Scully is the skeptic for the first seven seasons, choosing to base her beliefs on what science can prove. She later on becomes a \"\"believer\"\" after Mulder's abduction at the end of season seven. Scully has appeared in all but five episodes of \"\"The X-Files\"\", and in the 20th Century Fox films \"\"The X-Files\"\", released in 1998, and \"\"\"\", released ten years later. The episodes she does not appear in are \"\"3\"\", \"\"Zero Sum\"\", \"\"Unusual"} +{"qid": "test1807", "pid": "15949514", "query": "when does scully come back in season 2", "answer": "8", "passage": "\"Ryan Scully\"\nclub. After 46 appearances for Dunfermline in all competitions, Scully was awarded the club's player of the year award. After returning from a successful loan spell with Dunfermline, Scully signed a two-year contract extension with the club, which will keep him until 2016. Scully made his Premiership debut coming on as a substitute for injured goalkeeper Tomáš Černý in a 1–1 draw with Hamilton Accies. Thistle were relegated via the playoffs at the end of the 2017/18 season. Following that relegation, Scully was one of many players released by Thistle. After his release from \"\"Thistle\"\", Scully signed for fellow Championship"} +{"qid": "test1808", "pid": "13616188", "query": "what is the process to become a santero", "answer": "a cleansing ritual", "passage": "\"Santería\"\norigins and strongholds of Cuban Lucumí culture and religion. To become a \"\"Santero\"\" or \"\"Santera\"\" (Priest or Priestess of Santería), the initiator must go through an intensive week-long initiation process in which the teaching of the ritual skills and moral behavior occurs informally and nonverbally. To begin with, the initiator goes through what is called a cleansing ritual. The initiator's \"\"Padrino\"\" (godfather) cleanses the head with special herbs and water. The \"\"Padrino\"\" rubs the herbs and water in a specific pattern of movements into the scalp of the head. However, if a person is entering Santería for the need of"} +{"qid": "test1809", "pid": "14407398", "query": "how many countries participated for the first time in the 2014 olympic winter games in sochi", "answer": "Brazil", "passage": "\"Jaqueline Mourão\"\nJaqueline Mourão Jaqueline Mourão (born 27 December 1975) is a Brazilian cross country skier. Born and raised in the mountainous city of Belo Horizonte, Brazil, she only began cross-country skiing at the age of 29 and competed in a XC-Ski race for the first time in December 2005. Participating in 3 Winter Olympics at Torino (XC-Ski), Vancouver (XC-Ski) and Sochi (XC-Ski & Biathlon) as well as in 2 Summer Olympics in Athens (MTB) and Beijing (MTB). For her 5th Olympic Games, she competed at the 2014 Sochi Olympics in both Country Skiing and Biathlon, and carried the Brazilian flag during"} +{"qid": "test181", "pid": "3269940", "query": "what is a real world application of an atwood machine", "answer": "An elevator with a counterbalance", "passage": "\"Atwood machine\"\nand not the traction of the string on the pulley rim), these equations simplify as the following results: Acceleration: Tension in string segment nearest \"\"m\"\": Tension in string segment nearest \"\"m\"\": Atwood's original illustrations show the main pulley's axle resting on the rims of another four wheels, to minimize friction forces from the bearings. Many historical implementations of the machine follow this design. An elevator with a counterbalance approximates an ideal Atwood machine and thereby relieves the driving motor from the load of holding the elevator cab — it has to overcome only weight difference and inertia of the two"} +{"qid": "test1810", "pid": "18938990", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nDrama Series. The recurring actors listed here are those who appeared in season 7. They are listed by the region in which they first appear. Series creators and executive producers David Benioff and D. B. Weiss serve as showrunners for the seventh season. The directors for the seventh season are Jeremy Podeswa (episodes 1 and 7), Mark Mylod (episodes 2 and 3), Matt Shakman (episodes 4 and 5) and Alan Taylor (episode 6). This marks Taylor's return to the series after an absence since the second season. Shakman is a first-time \"\"Game of Thrones\"\" director, with the rest each"} +{"qid": "test1810", "pid": "18938987", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nGame of Thrones (season 7) The seventh and penultimate season of the fantasy drama television series \"\"Game of Thrones\"\" premiered on HBO on July 16, 2017, and concluded on August 27, 2017. Unlike previous seasons that consisted of ten episodes each, the seventh season consisted of only seven. Like the previous season, it largely consisted of original content not found in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series, while also incorporating material Martin revealed to showrunners about the upcoming novels in the series. The series was adapted for television by David Benioff and D. B. Weiss."} +{"qid": "test1810", "pid": "18939007", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\non-demand viewing for one hour before being removed. Data from piracy monitoring firm MUSO indicates that season seven was pirated more than one billion times mostly by unauthorized streaming, with torrent and direct downloads accounting for about 15 percent of this piracy. On average, each episode is estimated to have been pirated 140 million times, making \"\"Game of Thrones\"\" the most-pirated television series in 2017. Game of Thrones (season 7) The seventh and penultimate season of the fantasy drama television series \"\"Game of Thrones\"\" premiered on HBO on July 16, 2017, and concluded on August 27, 2017. Unlike previous seasons"} +{"qid": "test1810", "pid": "18938999", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nseason of the series includes its longest episode, with the finale running for 81 minutes. The penultimate episode also runs for 71 minutes – around 16 minutes longer than an average \"\"Game of Thrones\"\" episode. The first five episodes mostly run longer than average (55 minutes), at 59, 59, 63, 50, and 59 minutes respectively. The previous longest episode in the series was the sixth-season finale, \"\"The Winds of Winter\"\", which ran for 69 minutes. Ramin Djawadi returned as the composer of the show for the seventh season. On Metacritic, the season (based on the first episode) has a score"} +{"qid": "test1810", "pid": "18668996", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Dave Hill (screenwriter)\"\neach. Dave Hill (screenwriter) Dave Hill is an American television writer. He is known for writing three episodes of the HBO series \"\"Game of Thrones\"\": in season 5, \"\"Sons of the Harpy\"\"; in season 6, \"\"Home\"\"; and in season 7, \"\"Eastwatch\"\". Dave Hill began working as an assistant to \"\"Game of Thrones\"\" executive producers/writers David Benioff and D.B. Weiss in season 2. In 2014, Hill became a staff writer for the fifth season and was assigned to write an episode. He was credited as story editor on Season 6 and executive story editor on Season 7, and wrote an episode"} +{"qid": "test1810", "pid": "18668995", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Dave Hill (screenwriter)\"\nDave Hill (screenwriter) Dave Hill is an American television writer. He is known for writing three episodes of the HBO series \"\"Game of Thrones\"\": in season 5, \"\"Sons of the Harpy\"\"; in season 6, \"\"Home\"\"; and in season 7, \"\"Eastwatch\"\". Dave Hill began working as an assistant to \"\"Game of Thrones\"\" executive producers/writers David Benioff and D.B. Weiss in season 2. In 2014, Hill became a staff writer for the fifth season and was assigned to write an episode. He was credited as story editor on Season 6 and executive story editor on Season 7, and wrote an episode for"} +{"qid": "test1810", "pid": "10430613", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Mark Mylod\"\nand executive-produced the pilot episode of the U.S. version of the dramedy, \"\"Shameless\"\", for Showtime. He remains a co-executive producer and frequent director on the series. In 2011, Mylod directed and executive-produced the pilot of the ABC fantasy series \"\"Once Upon a Time\"\". In 2014, he directed the pilot episode for American TV Series \"\"The Affair\"\". In 2014 he directed episodes 3 and 4 of Season 5 of the HBO series \"\"Game of Thrones\"\". He came back for Season 6, where he directed episode 7 and 8 and episode 2 of season 7. Mylod is married to costume designer Amy"} +{"qid": "test1810", "pid": "4481681", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Mastodon (band)\"\nThrone Vol. 2\"\" mixtape to promote the fifth season of the HBO TV series Game of Thrones. Dailor, Hinds, and Kelliher also appeared in episode 8 of the season as wildlings. This mixtape will also feature songs by various other acts, ranging from Killswitch Engage to Snoop Dogg. Hinds and Kelliher once again returned to Game of Thrones as wights among the White Walker army for the season 7 finale episode, \"\"The Dragon and the Wolf\"\". The band's seventh studio album \"\"Emperor of Sand\"\" was released on March 31, 2017. The theme for the album was cancer, inspired by Troy's"} +{"qid": "test1810", "pid": "20300002", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Beyond the Wall (Game of Thrones)\"\nBeyond the Wall (Game of Thrones) \"\"Beyond the Wall\"\" is the sixth and penultimate episode of the seventh season of HBO's fantasy television series \"\"Game of Thrones\"\", and the 66th overall. It was written by series co-creators David Benioff and D. B. Weiss, and directed by Alan Taylor. At 70 minutes, it was the series' longest episode until the airing of the season's finale. The episode's main plot focuses on Jon Snow's raiding party as they journey north of the Wall; they successfully capture a wight to prove the threat, though Thoros is killed. Daenerys rescues the group from the"} +{"qid": "test1810", "pid": "12801025", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Game of Thrones\"\nGame of Thrones\"\" () by series writer Bryan Cogman, was published on September 27, 2012. The 192-page book, illustrated with concept art and behind-the-scenes photographs, covers the creation of the series' first two seasons and its principal characters and families. \"\"After the Thrones\"\" is a live aftershow in which hosts Andy Greenwald and Chris Ryan discuss episodes of the series. It airs on HBO Now the Monday after each sixth-season episode. The Game of Thrones Live Concert Experience, a 28-city orchestral tour which will perform the series' soundtrack with composer Ramin Djawadi, is scheduled to begin February 15, 2017 in"} +{"qid": "test1810", "pid": "20048998", "query": "how many episodes in series 7 of game of thrones are there", "answer": "seven", "passage": "\"Game of Thrones (season 8)\"\nGame of Thrones (season 8) The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Unlike the first six seasons that each had ten episodes and the seventh that had seven episodes, the eighth season will have only six episodes. Like the previous season, it will largely consist of original content not found currently in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series and will also adapt material Martin has revealed to showrunners about the upcoming novels in the series, \"\"The Winds of Winter\"\" and \"\"A"} +{"qid": "test1810", "pid": "18680088", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"The Gift (Game of Thrones)\"\nThe Gift (Game of Thrones) \"\"The Gift\"\" is the seventh episode of the fifth season of HBO's fantasy television series \"\"Game of Thrones\"\", and the 47th overall. The episode was written by the series' creators David Benioff and D. B. Weiss, and directed by Miguel Sapochnik, his directorial debut for the series. This episode marks the final appearance for Peter Vaughan. Jon leaves for Hardhome with Tormund and some rangers, in spite of Ser Alliser's complaints. Before they leave, Sam gives Jon a bag of dragonglass weapons, reminding him of their use against the White Walkers. Afterward, Sam and Gilly"} +{"qid": "test1810", "pid": "18680102", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"The Gift (Game of Thrones)\"\ninstallment that delivers long-awaited plot turns in a satisfying manner, even though it continues a disturbing theme from the previous episode.\"\" Erik Kain of \"\"Forbes\"\" called this a \"\"terrific, exciting, tense episode,\"\" though, like Myles McNutt of \"\"The A.V. Club\"\", he questioned both the \"\"anemic\"\" Dorne storyline and the gratuitousness of Tyene exposing her breasts in the prison scene. The Gift (Game of Thrones) \"\"The Gift\"\" is the seventh episode of the fifth season of HBO's fantasy television series \"\"Game of Thrones\"\", and the 47th overall. The episode was written by the series' creators David Benioff and D. B. Weiss,"} +{"qid": "test1810", "pid": "17142234", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"Game of Thrones (season 4)\"\nseries won for Best Stunt Team. For the 72nd Golden Globe Awards, the series was nominated for Best Television Series – Drama. For the 67th Directors Guild of America Awards, Alex Graves was nominated for Outstanding Directing – Drama Series for the episode \"\"The Children\"\". The fourth season of \"\"Game of Thrones\"\" was released on DVD and Blu-ray in region 1 on . Between January 30 and February 5, 2015, the last two episodes of season four were shown in 205 IMAX theaters in the U.S. \"\"Game of Thrones\"\" is the first TV series released in this format. The show"} +{"qid": "test1810", "pid": "15804667", "query": "how many episodes in series 7 of game of thrones are there", "answer": "7", "passage": "\"The Specials (TV series)\"\nweb series by D. B. Weiss (co-creator of \"\"Game of Thrones\"\"). Together, and with the help of Rosie O'Donnell they brought it to executives at OWN, including Oprah Winfrey. OWN acquired two seasons of the show. Season 1 consists of the web series with some extra footage recut into six 21-minute episodes. It launched together with season 2 on OWN as a back-to-back marathon on 7 September 2014. Season 2 consists of seven 21-minute episodes. It premiered together with season 2 on OWN as a back-to-back marathon on 7 September 2014. It picks up 2 years after the end of"} +{"qid": "test1811", "pid": "11420171", "query": "who has the best batting average in test cricket", "answer": "Don Bradman", "passage": "\"Steve Smith (cricketer)\"\nSteve Smith (cricketer) Steven Peter Devereux Smith (born 2 June 1989) is an Australian international cricketer and former captain of the Australian national team. On 30 December 2017, he reached a Test batting rating of 947, the second-highest of all time, only behind Don Bradman's 961. He was ranked top Test batsman in the world in 2015, 2016 and 2017, according to the ICC Player Rankings. At various times, Smith has been described as one of the best batsmen in the world and considered the \"\"best since Bradman\"\" due to his high batting average. He played for New South Wales"} +{"qid": "test1811", "pid": "15760108", "query": "who has the best batting average in test cricket", "answer": "Australia's Sir Donald Bradman", "passage": "\"Batting average (cricket)\"\nare usually subject to a minimum qualification of 20 innings played or completed, in order to exclude batsmen who have not played enough games for their skill to be reliably assessed. Under this qualification, the highest Test batting average belongs to Australia's Sir Donald Bradman, with 99.94. Given that a career batting average over 50 is exceptional, and that only five other players have averages over 60, this is an outstanding statistic. The fact that Bradman's average is so far above that of \"\"any\"\" other cricketer has led several statisticians to argue that, statistically at least, he was the greatest"} +{"qid": "test1811", "pid": "4331259", "query": "who has the best batting average in test cricket", "answer": "Don Bradman", "passage": "\"Ken Barrington\"\nKen Barrington Kenneth Frank Barrington (24 November 1930 14 March 1981), was an English international cricketer who played for England and Surrey in the 1950s and 1960s. He was a right-handed batsman and occasional leg-spin bowler, known for his jovial good humour and long, defensive innings \"\"batting with bulldog determination and awesome concentration\"\". His batting improved with the quality of the opposition; he averaged 39.87 in the County Championship, 45.63 in first-class cricket, 58.67 in Test cricket and 63.96 against Australia. Only Don Bradman (99.94) has made more than Barrington's 6,806 Test runs at a higher average, which is the"} +{"qid": "test1812", "pid": "8839854", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Andersen Corporation\"\nAndersen Corporation was founded in 1903 as the Andersen Lumber Company by Danish immigrant Hans Jacob Andersen and his family at Hudson, Wisconsin. In 1929 the name of the firm was changed to Andersen Frame Company and in 1937 to Andersen Corporation. Originally Andersen Lumber Company was based in Hudson, Wisconsin where logs arrived to their location via the St. Croix River. In 1905, Andersen originated the “two bundle” method, which streamlined the window construction process. By standardizing sizes of frame pieces, then packaging them in separate horizontal and vertical pairs, units could be assembled on the job site in"} +{"qid": "test1812", "pid": "20261104", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Lisbeth Zornig Andersen\"\nLisbeth Zornig Andersen Lisbeth Malene Zornig Andersen (born February 12, 1968) is a Danish economist, activist, author, and former chair of the Danish Children’s Council. Her focus is on marginalized people, especially children. Lisbeth Zornig Andersen became famous in Denmark after the documentary \"\"My childhood in hell\"\" (original title: \"\"Min barndom i helvede\"\"), depicting her childhood in a lower class family where she was affected by, among others, sexual abuse. The documentary followed her autobiography \"\"Zornig – Anger is my middle name\"\" (original title: \"\"Zornig – Vrede er mit mellemnavn\"\"). Lisbeth Zornig Andersen is the founder of Huset Zornig, a"} +{"qid": "test1812", "pid": "17525052", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Dantes Plads\"\nto Danish Philologists was installed on the square in 1938. It was designed by William P. Larsen and Viggo Sten Møller. Dantes Plads Dantes Plads (lit. \"\"Dante's Square\"\") is a public square located in front of the Ny Carlsberg Glyptotek where it connects H. C. Andersens Boulevard to Vester Voldgade in central Copenhagen, Denmark. The name Dantes Plads was introduced in connection with the installation of the Dante Column in front of the Ny Carlsberg Glyptotek in 1924. The name originally referred to the section of Vestre Boulevard (now H. C. Andersens Boulevard) between Kongensgade and Stormgade. The boulevard was"} +{"qid": "test1812", "pid": "14237949", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Jens Andersen Beldenak\"\nwas sentenced in 1530 to honor loss. In 1533 he was transferred to Kjærstrup by Daniel Rantzau, was abducted and beaten to Holstein. After six months in captivity, he was bought free of any relatives in Lübeck, where he spent his last days. Jens Andersen Beldenak are depicted in the altarpiece of the church Faaborg. Jens Andersen Beldenak Jens Andersen Beldenak, (the Bald), Danish bishop, born in the village of Brøndum, the Limfjord, died 20 January 1537. Historians generally considered him a controversial figure due to his being a contrarian in addition to a quarrelsome character. Aside from his position"} +{"qid": "test1812", "pid": "16662235", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Carlo Wieth\"\nCarlo Wieth Carlo Rossini Wieth (11 December 1885 – 30 June 1943) was a Danish stage and film actor whose career began at the turn of the twentieth century and lasted until his death in 1943. Wieth was born as Carl Andersen in Copenhagen to Marius Hans Lindegaard Andersen, who was a judge, and his wife Jacobine Kirstine Wieth Andersen. He would begin his acting career after adding an \"\"o\"\" to his given name of Carl and taking his mother's maiden name. He was educated at the Royal Danish Theatre from 1903 to 1905 and made his stage debut in"} +{"qid": "test1812", "pid": "2474393", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Martin Andersen Nexø\"\nMartin Andersen Nexø Martin Andersen Nexø (26 June 1869 – 1 June 1954) was a Danish writer. . Martin Andersen Nexø was born to a large family (the fourth of eleven children) in Christianshavn, at the time an impoverished district of Copenhagen. In 1877, his family moved to Nexø, and he adopted the name of this town as his last name. Having been an industrial worker before, in Nexø he attended a folk high school, and later worked as a journalist. He spent the mid-1890s travelling in Southern Europe, and his book \"\"Soldage\"\" (1903) (English: \"\"Days in the Sun\"\") is"} +{"qid": "test1812", "pid": "2933730", "query": "where does the last name andersen originate from", "answer": "Danish", "passage": "\"Hans Christian Andersen Award\"\nHans Christian Andersen Award The Hans Christian Andersen Awards are two literary awards by the International Board on Books for Young People (IBBY), recognising one living author and one living illustrator for their \"\"lasting contribution to children's literature\"\". The writing award was inaugurated in 1956, the illustration award in 1966. The former is sometimes called the \"\"Nobel Prize for children's literature\"\". The awards are named after Hans Christian Andersen, the 19th-century Danish author of fairy tales, and each winner receives the Hans Christian Andersen Medaille, a gold medal with the bust of Andersen (see image). Medals are presented at the"} +{"qid": "test1812", "pid": "12181639", "query": "where does the last name andersen originate from", "answer": "Norwegian", "passage": "\"Niklas Andersen\"\nNiklas Andersen Niklas Andersen (born 4 August 1988) is a German football defender of Norwegian descent who plays for SSVg Velbert. The defender played in the youth system of Hamburger SV, Eintracht Frankfurt and Schalke 04. He moved often, due to following his father and coach, Jørn Andersen. In 2005, he gained a foothold in Rot-Weiss Essen's A youth team and was called up in the last season for the Regionalliga team. For the 2008–09 season Andersen moved to Bundesliga club Werder Bremen where he signed a contract running until 30 June 2012. Andersen made his debut for the Werder"} +{"qid": "test1813", "pid": "15643671", "query": "what is best thing i never had song about", "answer": "revenge and karma", "passage": "\"Best Thing I Never Had\"\nthat the ballad is reminiscent of Beyoncé's own 2008 songs \"\"Halo\"\" and \"\"Scared Of Lonely\"\", owing to its cascading piano work and drum beat. James Dinh of MTV News wrote that \"\"Best Thing I Never Had\"\" sounds like a song from a Broadway musical; he attributed the comparison to Beyoncé's collaboration with the band from \"\"Fela!\"\" to gain inspiration from the play's subject, Nigerian musician and composer Fela Kuti. The song's lyrics are about the breakdown of a relationship between Beyoncé and her lover, a situation that suits both of them. They also touch on revenge and karma, particularly the"} +{"qid": "test1814", "pid": "4720520", "query": "what started the war between us and japan", "answer": "attack on Pearl Harbor", "passage": "\"Essence of Decision\"\npublic popularity. Above all, he described using rational actor models as dangerous. By using such models (and modes of thinking), people made unreliable assumptions about reality, which could have disastrous consequences. Part of what allowed the attack on Pearl Harbor to be pulled off was the \"\"assumption\"\" that, since Japan would lose such a war, they would never dare attack. The \"\"assumption\"\" under MAD is that nobody will ever start a nuclear war because of its consequences. However, humans are not inextricably bound to act in a rational manner, which history has proven time and time again. While Allison did"} +{"qid": "test1816", "pid": "15551131", "query": "who were the nationalist in the spanish civil war", "answer": "the CEDA", "passage": "\"Nationalist faction (Spanish Civil War)\"\nNationalist faction (Spanish Civil War) The Nationalist faction () or Rebel faction () was a major faction in the Spanish Civil War of 1936 to 1939. It was composed of a variety of political groups that supported the Spanish coup of July 1936 against the Second Spanish Republic, including the Falange, the CEDA, and two rival monarchist claimants: the Alfonsists and the Carlists. In 1937, all the groups were merged into the Falange. One of the main leaders () of the 1936 coup, General Francisco Franco, would lead this faction throughout the war and later would become the dictator of"} +{"qid": "test1816", "pid": "15551159", "query": "who were the nationalist in the spanish civil war", "answer": "the CEDA", "passage": "\"Nationalist faction (Spanish Civil War)\"\n\"\"Whites\"\", Polish, Romanian, and Belgian volunteers came to Spain to fight on the side of the Nationals. Nationalist faction (Spanish Civil War) The Nationalist faction () or Rebel faction () was a major faction in the Spanish Civil War of 1936 to 1939. It was composed of a variety of political groups that supported the Spanish coup of July 1936 against the Second Spanish Republic, including the Falange, the CEDA, and two rival monarchist claimants: the Alfonsists and the Carlists. In 1937, all the groups were merged into the Falange. One of the main leaders () of the 1936 coup,"} +{"qid": "test1817", "pid": "2056368", "query": "winner of the women's royal rumble match", "answer": "Asuka", "passage": "\"Stephanie McMahon\"\nRaw women's roster (Alicia Fox, Asuka, Nia Jax, Dana Brooke, and Raw Women's Champion Alexa Bliss), Raw Commissioner Stephanie came out and the brawl stopped. Stephanie recapped the leaps that women's wrestling had taken the past few years, going from a revolution to an evolution of women's wrestling, including the first-ever women's Hell in a Cell match, the first-ever women's Money in the Bank ladder match, and women main eventing \"\"Raw\"\" and \"\"SmackDown\"\". She then announced the first-ever women's Royal Rumble match for the 2018 Royal Rumble with the winner receiving a match at WrestleMania 34 for either the Raw"} +{"qid": "test1817", "pid": "11296594", "query": "winner of the women's royal rumble match", "answer": "Asuka", "passage": "\"The Bella Twins\"\nthe Royal Rumble on January 28, Brie and Nikki would return to action in the first ever women's Royal Rumble match at No. 28 and No. 27, respectively, making it into the final four with Asuka and Sasha Banks, with Nikki eliminating Brie before being eliminated herself by the winner Asuka. At SummerSlam on August 19, The Bella Twins appeared in a backstage segment with Renee Young and teased an appearance at the upcoming Evolution pay-per-view. The two would later be present at ringside during a Raw Women's Championship match between Alexa Bliss and Ronda Rousey. On the September 3"} +{"qid": "test1817", "pid": "3057808", "query": "winner of the women's royal rumble match", "answer": "Asuka", "passage": "\"Mercedes-Benz Superdome\"\non April 8, 2018. At the event, Charlotte Flair defeated the 2018 Women's Royal Rumble winner Asuka, ending her 2-year undefeated streak as well as retaining the SmackDown Women's Championship, Brock Lesnar defeated Roman Reigns to retain the Universal Championship in the main event, also AJ Styles defeated the 2018 Men's Royal Rumble winner Shinsuke Nakamura to retain the WWE Championship which was also promoted as the main event. In the event, former UFC star Ronda Rousey made her WWE debut in a mixed tag team match with her partner Kurt Angle to defeat Stephanie McMahon and Triple H. Daniel"} +{"qid": "test1818", "pid": "7925996", "query": "striking the funny bone is actually compression of the", "answer": "The ulnar nerve", "passage": "\"Medial epicondyle of the humerus\"\ncommon flexor tendon) of some of the flexor muscles of the forearm: the flexor carpi radialis, the flexor carpi ulnaris, the flexor digitorum superficialis, and the palmaris longus. The ulnar nerve runs in a groove on the back of this epicondyle. The medial epicondyle protects the ulnar nerve. The ulnar nerve is vulnerable because it passes close to the surface along the back of the bone. Striking the medial epicondyle causes a tingling sensation in the ulnar nerve. This response is known as striking the “funny bone”. The name funny bone could be from a play on the words humorous"} +{"qid": "test1818", "pid": "1811451", "query": "striking the funny bone is actually compression of the", "answer": "The ulnar nerve", "passage": "\"Ulnar nerve\"\nby striking the medial epicondyle of the humerus from posteriorly, or inferiorly with the elbow flexed. The ulnar nerve is trapped between the bone and the overlying skin at this point. This is commonly referred to as bumping one's \"\"funny bone\"\". This name is thought to be a pun, based on the sound resemblance between the name of the bone of the upper arm, the \"\"humerus\"\" and the word \"\"humorous\"\". Alternatively, according to the Oxford English Dictionary it may refer to \"\"the peculiar sensation experienced when it is struck\"\". The ulnar nerve originates from the C8-T1 nerve roots (and occasionally"} +{"qid": "test1819", "pid": "428199", "query": "list of rights protected by the first amendment", "answer": "freedom of the press", "passage": "\"First Amendment to the United States Constitution\"\nv. United States\"\" (1971), the Supreme Court ruled that the First Amendment protected against prior restraint—pre-publication censorship—in almost all cases. The Petition Clause protects the right to petition all branches and agencies of government for action. In addition to the right of assembly guaranteed by this clause, the Court has also ruled that the amendment implicitly protects freedom of association. In 1776, the second year of the American Revolutionary War, the Virginia colonial legislature passed a Declaration of Rights that included the sentence \"\"The freedom of the press is one of the greatest bulwarks of liberty, and can never be"} +{"qid": "test1819", "pid": "10227273", "query": "list of rights protected by the first amendment", "answer": "freedom of speech", "passage": "\"Internet censorship in the United States\"\nInternet censorship in the United States Internet censorship in the United States is the suppression of information published or viewed on the Internet in the United States. The U.S. possesses protection of freedom of speech and expression against federal, state, and local government censorship, a right protected by the First Amendment of the United States Constitution. These protections extend to the Internet; however, the U.S. government has censored sites in the past, and they are increasing in number to this day. In 2014, the United States was added to Reporters Without Borders (RWB)'s list of \"\"Enemies of the Internet\"\", a"} +{"qid": "test1819", "pid": "20543513", "query": "list of rights protected by the first amendment", "answer": "freedom of the press", "passage": "\"Richmond Newspapers, Inc. v. Virginia\"\nunconstitutional, violating the Sixth Amendment, which grants the right to a public trial, the Fourteenth Amendment, which protects citizenship rights, and the freedom of the press clause of the First Amendment. In his oral argument, Coleman asserted that the amendments in question, particularly the Sixth Amendment, were in place to protect the accused, not the public. Furthermore, Coleman argued that the statute in question was, indeed, constitutional because, acting in accordance with the statute, the prosecutor, the judge, and the defense counsel, \"\"two of whom are charged with representing the public interest,\"\" all agreed to the closure. He also went"} +{"qid": "test182", "pid": "284023", "query": "who starred in the movie natural born killers", "answer": "Robert Downey Jr.", "passage": "\"Natural Born Killers\"\nNatural Born Killers Natural Born Killers is a 1994 American satirical black comedy crime film directed by Oliver Stone and starring Woody Harrelson, Juliette Lewis, Robert Downey Jr., Tom Sizemore, and Tommy Lee Jones. The film tells the story of two victims of traumatic childhoods who became lovers and mass murderers, and are irresponsibly glorified by the mass media. The film is based on an original screenplay by Quentin Tarantino that was heavily revised by Stone, writer David Veloz, and associate producer Richard Rutowski. Tarantino received a story credit. Jane Hamsher, Don Murphy, and Clayton Townsend produced the film, with"} +{"qid": "test182", "pid": "284056", "query": "who starred in the movie natural born killers", "answer": "Robert Downey Jr.", "passage": "\"Natural Born Killers\"\nHigh School massacre. The soundtrack was released August 23, 1994 by Interscope Records. Tracks 10, 13, 18, 20, 23, and 25 are assembled from various recordings and dialogue from the film. Natural Born Killers Natural Born Killers is a 1994 American satirical black comedy crime film directed by Oliver Stone and starring Woody Harrelson, Juliette Lewis, Robert Downey Jr., Tom Sizemore, and Tommy Lee Jones. The film tells the story of two victims of traumatic childhoods who became lovers and mass murderers, and are irresponsibly glorified by the mass media. The film is based on an original screenplay by Quentin"} +{"qid": "test1820", "pid": "16973718", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "\"Fish physiology\"\nsome pelagic bony fish species. The respiration and circulation process begins when deoxygenated blood travels to the shark's two-chambered heart. Here the shark pumps blood to its gills via the ventral aorta artery where it branches into afferent brachial arteries. Reoxygenation takes place in the gills and the reoxygenated blood flows into the efferent brachial arteries, which come together to form the dorsal aorta. The blood flows from the dorsal aorta throughout the body. The deoxygenated blood from the body then flows through the posterior cardinal veins and enters the posterior cardinal sinuses. From there blood enters the heart ventricle"} +{"qid": "test1820", "pid": "541136", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "Shark\nventilation is also true of some pelagic bony fish species. The respiration and circulation process begins when deoxygenated blood travels to the shark's two-chambered heart. Here the shark pumps blood to its gills via the ventral aorta artery where it branches into afferent brachial arteries. Reoxygenation takes place in the gills and the reoxygenated blood flows into the efferent brachial arteries, which come together to form the dorsal aorta. The blood flows from the dorsal aorta throughout the body. The deoxygenated blood from the body then flows through the posterior cardinal veins and enters the posterior cardinal sinuses. From there"} +{"qid": "test1820", "pid": "473075", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "Heart\narteries, arterioles, and ultimately capillaries. In the capillaries, oxygen and nutrients from blood are supplied to body cells for metabolism, and exchanged for carbon dioxide and waste products. Capillary blood, now deoxygenated, travels into venules and veins that ultimately collect in the superior and inferior vena cavae, and into the right heart. The cardiac cycle refers to the sequence of events in which the heart contracts and relaxes with every heartbeat. The period of time during which the ventricles contract, forcing blood out into the aorta and main pulmonary artery, is known as systole, while the period during which the"} +{"qid": "test1820", "pid": "472793", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "Artery\nis the root systemic artery (i.e., main artery). In humans, it receives blood directly from the left ventricle of the heart via the aortic valve. As the aorta branches, and these arteries branch in turn, they become successively smaller in diameter, down to the arterioles. The arterioles supply capillaries, which in turn empty into venules. The very first branches off of the aorta are the coronary arteries, which supply blood to the heart muscle itself. These are followed by the branches off the aortic arch, namely the brachiocephalic artery, the left common carotid, and the left subclavian arteries. The capillaries"} +{"qid": "test1820", "pid": "6330657", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "Praxagoras\nthe breath of life from the lungs to the left side of the heart through the aorta to the arteries of the body. He believed the arteries stemmed from the heart, but the veins came from the liver. Veins carried blood, which was created by digested food, to the rest of the body. The combination of blood and pneuma generated heat. As one of the humors, thick, cold phlegm gathered in the arteries would cause paralysis. Also, he believed that arteries were the channels through which voluntary motion was given to the body, and that the cause of epilepsy was"} +{"qid": "test1820", "pid": "648890", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "\"Human body\"\ndrain blood into the right side of the heart. From here, the blood is pumped into the lungs where it receives oxygen and drains back into the left side of the heart. From here, it is pumped into the body's largest artery, the aorta, and then progressively smaller arteries and arterioles until it reaches tissue. Here blood passes from small arteries into capillaries, then small veins and the process begins again. Blood carries oxygen, waste products, and hormones from one place in the body to another. Blood is filtered at the kidneys and liver. The body consists of a number"} +{"qid": "test1820", "pid": "12928791", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "\"Hypoplastic right heart syndrome\"\nleft and right portions of the pulmonary artery and joined with the upper portion of the aorta.[7] The proximal pulmonary artery is connected to the aortic arch, while the narrowed segment of the pulmonary trunk is repaired. An aortopulmonary shunt is created to connect the aorta to the main pulmonary artery to provide pulmonary blood flow to the lungs.[7] The Glen procedure disconnects the superior vena cava from the heart and connects it to the right pulmonary artery so deoxygenated blood from the upper body goes directly to the lungs.[10] The Fontan procedure, done usually after the patient is two"} +{"qid": "test1820", "pid": "22206", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "The aorta", "passage": "Aorta\nAorta The aorta ( ) is the main artery in the human body, originating from the left ventricle of the heart and extending down to the abdomen, where it splits into two smaller arteries (the common iliac arteries). The aorta distributes oxygenated blood to all parts of the body through the systemic circulation. In anatomical sources, the aorta is usually divided into sections. One way of classifying a part of the aorta is by anatomical compartment, where the thoracic aorta (or thoracic portion of the aorta) runs from the heart to the diaphragm. The aorta then continues downward as the"} +{"qid": "test1820", "pid": "304728", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "Octopus\nblood cells, and gives the blood a bluish colour. The systemic heart has muscular contractile walls and consists of a single ventricle and two atria, one for each side of the body. The blood vessels consist of arteries, capillaries and veins and are lined with a cellular endothelium which is quite unlike that of most other invertebrates. The blood circulates through the aorta and capillary system, to the vena cavae, after which the blood is pumped through the gills by the auxiliary hearts and back to the main heart. Much of the venous system is contractile, which helps circulate the"} +{"qid": "test1820", "pid": "5336586", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "\"Transposition of the great vessels\"\n(dextro-TGA) deoxygenated blood from the right heart is pumped immediately through the aorta and circulated to the body and the heart itself, bypassing the lungs altogether, while the left heart pumps oxygenated blood continuously back into the lungs through the pulmonary artery. In effect, two separate \"\"circular\"\" (parallel) circulatory systems are created. It is called a cyanotic congenital heart defect (CHD) because the newborn infant turns blue from lack of oxygen. Levo-Transposition of the great arteries is an acyanotic heart defect in which the primary arteries are transposed, with the aorta anterior and to the left of the pulmonary artery,"} +{"qid": "test1820", "pid": "677613", "query": "what is the name of the main artery which takes blood from the heart to the body", "answer": "aorta", "passage": "\"Circulatory system\"\nis the portion of the cardiovascular system which transports oxygenated blood away from the heart through the aorta from the left ventricle where the blood has been previously deposited from pulmonary circulation, to the rest of the body, and returns oxygen-depleted blood back to the heart. The brain has a dual blood supply that comes from arteries at its front and back. These are called the \"\"anterior\"\" and \"\"posterior\"\" circulation respectively. The anterior circulation arises from the internal carotid arteries and supplies the front of the brain. The posterior circulation arises from the vertebral arteries, and supplies the back of"} +{"qid": "test1822", "pid": "18190419", "query": "where is most of the worlds gold held", "answer": "United States", "passage": "\"2014 United States FIBA Basketball World Cup team\"\n2014 United States FIBA Basketball World Cup team The United States men's national basketball team won the gold medal at the 2014 FIBA Basketball World Cup held in Spain. Prior to 2014, the event was known as the FIBA World Championship. The 24-team tournament was held from August 30 to September 14, and the victory automatically qualified the U.S. into the 2016 Olympics in Brazil. Kyrie Irving was named the Most Valuable Player (MVP) of the tournament. The United States had automatically qualified for the World Cup by virtue of the gold medal won by their 2012 Olympic team. The"} +{"qid": "test1823", "pid": "2202776", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Solomon Islands skink\"\nThe toes on all four legs have thick, curved nails used for climbing and gripping tree limbs. As a crepuscular animal, it is most active during the dusk and dawn hours, feeding primarily at dusk. it also is active and eats during the hours of dawn, though to a lesser extent. it has quite good eyesight and relies upon it to identify threats, as well as potential food.. it relies heavily on its sense of smell, and uses it to identify its territory and other members of its group, called a circulus. Like snakes, the skink \"\"smells\"\" by flicking its"} +{"qid": "test1823", "pid": "2331265", "query": "animals that are active at dawn and dusk", "answer": "Crepuscular", "passage": "\"Crepuscular animal\"\nCrepuscular animal Crepuscular animals are those that are active primarily during twilight (that is, the periods of dawn and dusk). This is distinguished from diurnal and nocturnal behavior, where an animal is active during the hours of daylight or the hours of darkness, respectively. The term is not precise, however, as some crepuscular animals may also be active on a moonlit night or during an overcast day. The term matutinal is used for animals that are active only before sunrise, and vespertine for those active only after sunset. The time of day an animal is active depends on a number"} +{"qid": "test1823", "pid": "564194", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "Cheetah\ncheetah are shorter as well as straighter than those of other cats. Absence of protection makes the claws blunt; however, the large and strongly curved dewclaw is remarkably sharp. Cheetahs are diurnal (active mainly during the day), whereas leopards, tigers, and lions are nocturnal (active mainly at night); diurnality allows better observation and monitoring of the animal. Hunting is the major activity throughout the day; peaks are observed during dawn and dusk indicating crepuscular tendencies. Groups rest in grassy clearings after dusk, though males and juveniles often roam around at night. The cheetah is an alert animal; individuals often inspect"} +{"qid": "test1823", "pid": "2331270", "query": "animals that are active at dawn and dusk", "answer": "Crepuscular", "passage": "\"Crepuscular animal\"\nbirds include the common nighthawk, barn owl, owlet-nightjar, chimney swift, American woodcock, spotted crake, and white-breasted waterhen. Many moths, beetles, flies, and other insects are crepuscular and vespertine. Crepuscular animal Crepuscular animals are those that are active primarily during twilight (that is, the periods of dawn and dusk). This is distinguished from diurnal and nocturnal behavior, where an animal is active during the hours of daylight or the hours of darkness, respectively. The term is not precise, however, as some crepuscular animals may also be active on a moonlit night or during an overcast day. The term matutinal is used"} +{"qid": "test1823", "pid": "2331267", "query": "animals that are active at dawn and dusk", "answer": "Crepuscular", "passage": "\"Crepuscular animal\"\nnot absolute however, because crepuscular animals may also be active on a bright moonlit night or on a dull day. Some animals casually described as nocturnal are in fact crepuscular. Special classes of crepuscular behaviour include matutinal (or \"\"matinal\"\") and vespertine, denoting species active only in the dawn or only in the dusk, respectively. Those that are active during both morning and evening twilight are said to have a bimodal activity pattern. The various patterns of activity are thought to be mainly antipredator adaptations, though some could equally well be predatory adaptations. Many predators forage most intensively at night, whereas"} +{"qid": "test1823", "pid": "18442073", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"East African cheetah\"\ncan vary greatly from . Female cheetahs can reproduce at 13 to 16 months of age with an average age of sexual maturity between 21 and 22 months. Cheetah cub births mostly occurs during January to August in East Africa after 90 to 95 days of gestation. Cheetahs are diurnal animals (active mainly during the day), whereas the stronger apex predators, such as hyenas, African leopards and lions are nocturnal (active mainly at night). Hunting is the major activity throughout the day; peaks are observed during dawn and dusk indicating crepuscular tendencies. Groups rest in grassy clearings after dusk, though"} +{"qid": "test1823", "pid": "2970878", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Indian nightjar\"\nEggs may be moved short distances. The newly hatched chick is covered in down with brown above and light rufous below. The eye is open on hatching and the chick can sit upright and make a weak sound. Nightjars are most active, and mostly feed, near dawn and dusk (crepuscular - active during the twilight). At dusk, they often fly around livestock to feed on insects swarming around the animals. At night, they like to take advantage of insects swarming around street lamps or other artificial light sources. They are keeping their bills wide open as they fly through clouds"} +{"qid": "test1823", "pid": "726897", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "Nocturnality\nactivity level at will, becoming nocturnal or diurnal in response to their environment or the routine of their owners. Cats normally demonstrate crepuscular behavior, bordering nocturnal, being most active in hunting and exploration at dusk and dawn. Nocturnality Nocturnality is an animal behavior characterized by being active during the night and sleeping during the day. The common adjective is \"\"nocturnal\"\", versus diurnal meaning the opposite. Nocturnal creatures generally have highly developed senses of hearing, smell, and specially adapted eyesight. Such traits can help animals such as the \"\"Helicoverpa zea\"\" moths avoid predators. Some animals, such as cats and ferrets, have"} +{"qid": "test1823", "pid": "5168805", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Vespertine (biology)\"\nactivity, vespertine activity is limited to dusk rather than full darkness. Unlike vespertine activity, crepuscular activity may resume in dim twilight before dawn. A related term is matutinal, referring to activity limited to the dawn twilight. The word \"\"vespertine\"\" is derived from the Latin word \"\"vesper\"\" (evening). Vespertine (biology) Vespertine is a term used in the life sciences to indicate something of, relating to, or occurring in the evening. In botany, a vespertine flower is one that opens or blooms in the evening. In zoology, the term is used for a creature that becomes active at dusk, such as bats"} +{"qid": "test1823", "pid": "1916016", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Craters of the Moon National Monument and Preserve\"\nbecome locally extinct. Traditional livestock grazing continues within the grass/shrublands administered by the BLM. Most desert animals are nocturnal, or mainly active at night. Nocturnal behavior is an adaptation to both predation and hot summer daytime temperatures. Nocturnal animals at Craters of the Moon include woodrats (also called packrats), skunks, foxes, bobcats, mountain lions, bats, nighthawks, owls, and most other small desert rodents. Animals that are most active at dawn and dusk, when temperatures are cooler than mid-day, are called crepuscular. The subdued morning and evening light helps make them less visible to predators, but is bright enough to allow"} +{"qid": "test1823", "pid": "2849394", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Fisher (animal)\"\nweeks. Kits are completely dependent on their mother's milk for the first 8–10 weeks, after which they begin to switch to a solid diet. After 4 months, kits become intolerant of their litter mates, and at 5 months, the mother pushes them out on their own. After one year, juveniles will have established their own range. Fishers are generally crepuscular, being most active at dawn and dusk. They are active year-round, and are solitary, associating with other fishers only for mating. Males become more active during mating season. Females are least active during pregnancy and gradually increase activity after birth"} +{"qid": "test1823", "pid": "12246933", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "Xerocole\nXerocole A xerocole (), commonly referred to as a desert animal, is an animal adapted to live in the desert. The main challenges they must overcome are lack of water and excessive heat. To conserve water, they both avoid evaporation and concentrate excretions (i.e. urine and feces). Some are so adept at conserving water or obtaining it from food that they do not need to drink at all. To escape the desert heat, Xeroxes tend to be either nocturnal or crepuscular, most active at dawn and dusk. Xerocoles have developed a variety of mechanisms to reduce water loss via evaporation."} +{"qid": "test1823", "pid": "6697824", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Rock cavy\"\nThe rock cavies belong to the subfamily Caviinae along with the guinea pig, desert cavy, and cuis. Rock cavies are found in dry, rocky areas with low, scrubby vegetation, and they like to reside close to stony mountains and hills. In appearance and habits they closely resemble the unrelated rock hyrax of Africa (an example of convergent evolution). They usually shelter in crevices. They are reportedly seen at day and night, but are most active at dawn or dusk. Animals most active at this time are known as crepuscular. Studies show that there is a direct link between the retina"} +{"qid": "test1823", "pid": "11452661", "query": "animals that are active at dawn and dusk", "answer": "crepuscular", "passage": "\"Snow leopard\"\nleopards defend their territory. Like other cats, snow leopards use scent marks to indicate their territories and common travel routes. These are most commonly produced by scraping the ground with the hind feet before depositing urine or scat, but they also spray urine onto sheltered patches of rock. Snow leopards are crepuscular, being most active at dawn and dusk. They are known for being extremely secretive and well camouflaged. The snow leopard is a carnivore and actively hunts its prey. It is an opportunistic hunter and also eats carrion. It can kill animals two to four times its own weight,"} +{"qid": "test1829", "pid": "18867425", "query": "what's the name of the last mission impossible movie", "answer": "Mission: Impossible – Fallout", "passage": "\"Mission: Impossible – Fallout\"\nin the dialogue as before,\"\" but added, \"\"Crashes and petrolhead spills are what this franchise is reasonably expected to deliver. And this is what it cheerfully does.\"\" \"\"Sight & Sound\"\" Nick Pinkerton wrote \"\"A strong contender for the most consistently cinematic franchise of the last 25 years, the \"\"Mission: Impossible\"\" films also offer a case study in the idea of the actor as auteur, with Tom Cruise continuing to present himself as a fearless screen immortal in \"\"Fallout\"\".\"\" Mission: Impossible – Fallout Mission: Impossible – Fallout is a 2018 American action spy film written, produced, and directed by Christopher McQuarrie."} +{"qid": "test1829", "pid": "18867423", "query": "what's the name of the last mission impossible movie", "answer": "Mission: Impossible – Fallout", "passage": "\"Mission: Impossible – Fallout\"\nCruise as an \"\"evergreen movie star with the daredevil heart of a stuntman\"\" and that he \"\"puts every ounce of effort he can into the long, hard work of maintaining a blockbuster franchise.\"\" \"\"The Hollywood Reporter\"\" Todd McCarthy praised director Christopher McQuarrie, saying that with \"\"Mission: Impossible - Fallout\"\" he \"\"tops what he did with Cruise three years ago,\"\" and also singled out Vanessa Kirby for playing her character with \"\"a mix of elegance and frisky abandon.\"\" J.R. Kinnard of \"\"PopMatters\"\" wrote, \"\"Though it lacks the gritty humanity of something like George Miller's \"\"\"\" (2015), \"\"Mission: Impossible – Fallout\"\" is"} +{"qid": "test1829", "pid": "18867416", "query": "what's the name of the last mission impossible movie", "answer": "Mission: Impossible – Fallout", "passage": "\"Mission: Impossible – Fallout\"\nNovember 20, 2018 and was released on DVD, Blu-ray, and Ultra HD Blu-ray on December 4, 2018. The digital and Blu-ray releases include behind-the-scenes featurettes, a deleted scenes montage, an isolated score, and three commentary tracks. \"\"Mission: Impossible – Fallout\"\" grossed $220.2 million in the United States and Canada, and $570.9 million in other territories, for a total worldwide gross of $791 million, against a production budget of $178 million. In the United States and Canada, this film was released alongside \"\"Teen Titans Go! To the Movies\"\", and was projected to gross $48–65 million in its opening weekend, with some"} +{"qid": "test183", "pid": "2888754", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"The Wizard of Oz (1939 film)\"\nfor her sister's death, then vanishes. Glinda tells Dorothy to follow the yellow brick road to the Emerald City, where she can ask the Wizard of Oz to help her get back home. On her journey Dorothy meets the Scarecrow, who wants a brain; the Tin Woodman, who desires a heart; and the Cowardly Lion, who needs courage. Dorothy invites them to accompany her to the Emerald City, where they can ask the Wizard to help them too. Despite harassment from the Witch they reach the Emerald City and are eventually permitted to see the Wizard, who appears as a"} +{"qid": "test183", "pid": "15180730", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"The Wizard of Oz (1942 musical)\"\ngreat Wizard of Oz to help her return home. The Wicked Witch of the West, sister of the late Wicked Witch of the East, vows revenge upon Dorothy. Dorothy meets the Scarecrow and the Tin Woodman. The Scarecrow wants to get a brain, and the Tin Woodman needs a heart (\"\"If I Only Had a Brain\"\"/\"\"If I Only Had a Heart\"\"). Dorothy suggests that the Wizard can help them too (\"\"We're Off to See the Wizard\"\"). They then meet the Cowardly Lion (\"\"If I Only Had the Nerve\"\"). The four friends travel down the yellow brick road, having been warned"} +{"qid": "test183", "pid": "654688", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"The Wonderful Wizard of Oz\"\ncap to summon the Winged Monkeys two more times. When Dorothy and her friends meet the Wizard of Oz again, Toto tips over a screen in a corner of the throne room that reveals the Wizard. He sadly explains he is a humbug—an ordinary old man who, by a hot air balloon, came to Oz long ago from Omaha. The Wizard provides the Scarecrow with a head full of bran, pins, and needles (\"\"a lot of bran-new brains\"\"), the Tin Woodman with a silk heart stuffed with sawdust, and the Cowardly Lion a potion of \"\"courage\"\". Their faith in the"} +{"qid": "test183", "pid": "2302125", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"The Tin Woodman of Oz\"\neven when the parts of their body are separated from each other.) Without a heart, the Tin Woodman felt he could no longer love Nimmie Amee and he left her. Dorothy and the Scarecrow found him after he had rusted in the forest (an event related in \"\"The Wonderful Wizard of Oz\"\") and went with him to the Emerald City where the Wizard gave him a heart. Woot suggests that the heart may have made him kind, but it did not make him loving, or he would have returned to Nimmie Amee. This shames the Tin Woodman and inspires him"} +{"qid": "test183", "pid": "2763075", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"Tin Woodman\"\nthe Wizard in Oz\"\", he serves as defense counsel in the trial of Eureka. He affects the plot of a book most notably in \"\"The Patchwork Girl of Oz\"\", in which he forbids the young hero from collecting the wing of a butterfly needed for a magical potion because his heart requires him to protect insects from cruelty. Baum also wrote a short book titled \"\"The Scarecrow and the Tin Woodman\"\", part of the \"\"Little Wizard Stories of Oz\"\" series for younger readers. In \"\"The Tin Woodman of Oz\"\", Nick Chopper finally sets out to find his lost love, Nimmie"} +{"qid": "test183", "pid": "654683", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"The Wonderful Wizard of Oz\"\nkisses her on the forehead, giving her magical protection from harm. On her way down the yellow brick road, Dorothy attends a banquet held by a Munchkin man named Boq. The next day, Dorothy frees the Scarecrow from the pole on which he is hanging, applies oil from a can to the rusted connections of the Tin Woodman, and meets the Cowardly Lion. The Scarecrow wants a brain, the Tin Woodman wants a heart, and the Cowardly Lion wants courage, so Dorothy encourages the three of them to journey with her and Toto to the Emerald City to ask for"} +{"qid": "test183", "pid": "8155667", "query": "who wants a heart in the wizard of oz", "answer": "Tin Woodman", "passage": "\"The Wizard of Oz (1902 musical)\"\non Dorothy's feet. She tells Dorothy that if she wants to get home, she must ask the Wizard of Oz to help her. After a while everyone exits, and Dorothy is left alone with a Scarecrow hung on a pole. She wishes she had someone to talk to, and the Scarecrow comes to life. He gets down from the pole and complains that he has no brain. Dorothy suggests that he join her on the road to the Emerald City, and he sings \"\"Alas for the Man Without Brains\"\". Dorothy and the Scarecrow come upon the Tin Woodman, who has"} +{"qid": "test1831", "pid": "1467967", "query": "in which country bikram sambhat the official calender", "answer": "Nepal", "passage": "Nepal\ncountry, the Bikram Sambat, which falls in mid-April and is divided into 12 months. Saturday is the official weekly holiday. Main annual holidays include the Martyr's Day (18 February), and a mix of Hindu and Buddhist festivals such as Dashain in autumn, Tihar in mid-autumn and Chhath in late autumn. During Swanti, the Newars perform the Mha Puja ceremony to celebrate New Year's Day of the lunar calendar Nepal Sambat. Being a Secular country Nepal has holiday on main festivals of minority religions in the nation too. The national cuisine of Nepal is Dhindo and Gundruk.The staple Nepali meal is"} +{"qid": "test1831", "pid": "9679723", "query": "in which country bikram sambhat the official calender", "answer": "Nepal", "passage": "\"Kartik (month)\"\nname of the month is derived from the name of the star Krittika (কৃত্তিকা). It marks the start of the dry season ( \"\"Hemôntô\"\"). \"\"Kārttikai\"\" (கார்த்திகை, ) is the eighth month of the Tamil calendar used by Tamils across the world. It corresponds to November/December in the Gregorian calendar. It begins when the sun enters the sign of Scorpio. Many festivals, such as Karthikai Deepam, are celebrated in this month. The name of the month is derived from a star, \"\"kārttikai\"\" (கார்த்திகை). According to the Bikram Sambat calendar of Nepal, which is also the country's official calendar, Kartik is the"} +{"qid": "test1831", "pid": "16985289", "query": "in which country bikram sambhat the official calender", "answer": "Nepal", "passage": "\"Wilson Bikram Rai\"\nWilson Bikram Rai Wilson Bikram Rai () is a Nepalese comedian, actor, singer, dancer and producer. He is best known for his role as Takme Buda on NTV sitcom \"\"Meri Bassai\"\" (2012–2015). Now he is playing comedy web series Khas Khus. He often imitates the retired ex-British Gurkha army Limbu man in Limbu accent as 'Takme Buda' to entertain his spectators. He had successfully traveled more than 20 countries. He is also the Brand Ambassador of Italian Shoes Black Horse. Wilson Bikram Rai was born in Birtamod, Jhapa Nepal where his father and sister still resides. He studied in Little"} +{"qid": "test1831", "pid": "16985291", "query": "in which country bikram sambhat the official calender", "answer": "Nepal", "passage": "\"Wilson Bikram Rai\"\nMovies of Rai. Wilson Bikram Rai Wilson Bikram Rai () is a Nepalese comedian, actor, singer, dancer and producer. He is best known for his role as Takme Buda on NTV sitcom \"\"Meri Bassai\"\" (2012–2015). Now he is playing comedy web series Khas Khus. He often imitates the retired ex-British Gurkha army Limbu man in Limbu accent as 'Takme Buda' to entertain his spectators. He had successfully traveled more than 20 countries. He is also the Brand Ambassador of Italian Shoes Black Horse. Wilson Bikram Rai was born in Birtamod, Jhapa Nepal where his father and sister still resides. He"} +{"qid": "test1831", "pid": "9750618", "query": "in which country bikram sambhat the official calender", "answer": "Nepal", "passage": "\"Prince Hridayendra of Nepal\"\ngrandfather Gyanendra Bir Bikram Shah Dev is the deposed king of Nepal and his grandmother is Queen Komal Rajya Lakshmi Devi Shah, a member of the Rana dynasty. Through his mother he is descended from the Indian princely family of Sikar, which belongs to the Shekhawat clan. Following Hindu custom he was officially named \"\"Hridayendra Bir Bikram Shah Dev\"\" in a ceremony at the Narayanhity Royal Palace eleven days after his birth. At birth he was given the title Nava Yuvaraj \"\"(Young Crown Prince)\"\" being the eldest son of the heir apparent. In Hinduism there are a number of stages"} +{"qid": "test1831", "pid": "8233723", "query": "in which country bikram sambhat the official calender", "answer": "Nepal", "passage": "\"Nepal Sambat\"\nused Saka era. However, Nepal Sambat remained in official use for a time even after the coming of the Shahs. For example, the treaty with Tibet signed during the reign of Pratap Singh Shah is dated Nepal Sambat 895 (1775 AD). In 1903, Saka Sambat, in turn, was superseded by Bikram Sambat as the official calendar. However, the government continued to use Saka Sambat on gold and silver coins till 1912 when it was fully replaced by Bikram Sambat. The campaign to reinstate Nepal Sambat as the national calendar began in the 1920s when Dharmaditya Dharmacharya, a Buddhist and Nepal"} +{"qid": "test1832", "pid": "18689624", "query": "when did the first fleet arive in australia", "answer": "1788", "passage": "\"First Fleet Re-enactment Voyage\"\nFirst Fleet Re-enactment Voyage The First Fleet Reenactment Voyage (also known as the Second First Fleet) was a project to assemble a fleet of tall ships to sail from England to Australia in a historical reenactment of the First Fleet that colonised Australia in 1788. The reenactment was first conceived in 1977 and organised to commemorate Australia's bicentenary of colonisation. Despite opposition and minimal funding from the Australian government, the project attracted the support of high-profile adventurers Thor Heyerdahl, Alan Villiers, and Sir Edmund Hillary, as well as former Australian political figures and the British Royal Family. Several corporations offered"} +{"qid": "test1832", "pid": "383959", "query": "when did the first fleet arive in australia", "answer": "1788", "passage": "Sydney\none of the richest in Australia in terms of Aboriginal archaeological sites, with thousands of engravings located throughout the region. In 1770, during his first Pacific voyage in the Endeavour, Lieutenant James Cook, after leaving Botany Bay, saw the entrance to Port Jackson, but sailed past and did not enter the inlet. In 1788, the \"\"First Fleet\"\" of convicts, led by Arthur Phillip, were the first recorded Europeans to sail into Port Jackson. Here they founded Sydney as a British penal colony, the first European settlement in Australia. Phillip named the city \"\"Sydney\"\" in recognition of Thomas Townshend, 1st Viscount"} +{"qid": "test1832", "pid": "11434342", "query": "when did the first fleet arive in australia", "answer": "1788", "passage": "\"William Bradley (Royal Navy officer)\"\nfaculty. Bradley entered the Royal Navy in 1772, and served on a rapid succession of ships before becoming lieutenant in 1778. He continued in service aboard , , , , , and until 1786, when he joined . His service during the American Revolutionary War was not significant, but Bradley was attached on the \"\"Sirius\"\" to the First Fleet destined to colonise Australia. ]During 1788, Bradley did not involve himself directly in colonial affairs, but instead joined John Hunter in extensive operations along the Sydney Harbour coastline. The two men were often away from the colony for extended periods, conducting"} +{"qid": "test1833", "pid": "470675", "query": "who came up with the idea of the transcontinental railroad", "answer": "Dr. Hartwell Carver", "passage": "\"First Transcontinental Railroad\"\n1832 when Dr. Hartwell Carver published an article in the \"\"New York Courier & Enquirer\"\" advocating building a transcontinental railroad from Lake Michigan to Oregon. In 1847 he submitted to the U.S. Congress a \"\"Proposal for a Charter to Build a Railroad from Lake Michigan to the Pacific Ocean\"\", seeking a congressional charter to support his idea. Congress agreed to support the idea. Under the direction of the Department of War, the Pacific Railroad Surveys were conducted from 1853 through 1855. These included an extensive series of expeditions of the American West seeking possible routes. A report on the explorations"} +{"qid": "test1833", "pid": "12018196", "query": "who came up with the idea of the transcontinental railroad", "answer": "Dr. Hartwell Carver", "passage": "\"Hartwell Carver\"\nthe great-grandson of John Carver, who came over on the \"\"Mayflower\"\" and was the first governor of Plymouth Colony. Carver was interred at Mount Hope Cemetery in Rochester, New York under a 54-foot (16 m) monument erected by the Union Pacific Railroad. The monument is the second tallest in the cemetery. The inscription reads: Hartwell Carver Dr. Hartwell Carver (1789 – April 16, 1875) was an American doctor, businessman, and an early promoter of what would become the Transcontinental Railroad. Carver's push for a railroad to connect both coasts of the United States began in 1832 with a proposal that"} +{"qid": "test1834", "pid": "19671953", "query": "when are the opening ceremonies for the 2018 olympic games", "answer": "9 February 2018", "passage": "\"2018 Winter Olympics opening ceremony\"\n2018 Winter Olympics opening ceremony The opening ceremony of the 2018 Winter Olympics was held at the Pyeongchang Olympic Stadium in Pyeongchang, South Korea on 9 February 2018. It began at 20:00 KST and finished at approximately 22:20 KST. The Games were officially opened by President of the Republic of Korea Moon Jae-in. The site of the opening ceremony, Pyeongchang Olympic Stadium, was built specifically for the Games. The pentagonal stadium seats 35,000. The organizers for the event said the shape was chosen because it is a combination of different shapes, a circle, a square, and a triangle, which represent"} +{"qid": "test1834", "pid": "19998394", "query": "when are the opening ceremonies for the 2018 olympic games", "answer": "9 February 2018", "passage": "\"Japan at the 2018 Winter Olympics\"\nJapan at the 2018 Winter Olympics Japan competed at the 2018 Winter Olympics in Pyeongchang, South Korea, from 9 to 25 February 2018, with 124 competitors in 13 sports. They won 13 medals in total, four gold, five silver and four bronze, ranking 11th in the medal table. Six medals of those were won in the speed skating events. Ski jumper Noriaki Kasai was chosen to be the flag bearer during the opening ceremony. On 9 February 2018, on the opening day of the Games, he became the first athlete in history to participate in 8 different Winter Olympics. The"} +{"qid": "test1834", "pid": "18444077", "query": "when are the opening ceremonies for the 2018 olympic games", "answer": "9 February 2018", "passage": "\"2016 Summer Olympics closing ceremony\"\nSoul Brasileiro\"\"\"\" with slowly modificated lyrics in celebration to those who volunteered during the games. The flag handover ceremony began as standard with the Greek national anthem and the Olympic anthem sung in English. Rio de Janeiro mayor Eduardo Paes handed the flag to IOC president Thomas Bach, who then handed it over to Tokyo governor Yuriko Koike. The flag was raised again in PyeongChang for the 2018 Winter Olympics on 9 February 2018 for the opening ceremony. The directors for the show were (creative supervisor), Ringo Sheena (creative supervisor and music director), Mikiko Mizuno (choreographer and stage director) and"} +{"qid": "test1835", "pid": "14470106", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Marshall Islands and the United Nations\"\nand Israel) and no country abstaining. The Marshall Islands are also one of the staunchest supporters of Israel, like the United States. In December 2017, the Marshall Islands was one of just nine countries (including the United States and Israel) to vote against a motion adopted by the United Nations General Assembly condemning the United States' recognition of Jerusalem as the capital of Israel. The United States government had threatened to cut aid to states voting in favour of the motion. Marshall Islands and the United Nations The Marshall Islands joined the United Nations on September 17, 1991. Although the"} +{"qid": "test1835", "pid": "20215575", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Relinquishment of United States nationality\"\nthe receiving country. Based on this, the State Department does not receive U.S. citizens and non-citizen nationals as diplomats representing a foreign country to the United States. The State Department permits such individuals to represent a foreign country in its diplomatic mission at United Nations Headquarters in New York City, but while in such positions they enjoy only official acts immunity and not diplomatic immunity. Thus, an individual wishing to assume a diplomatic or consular position in the United States may choose to relinquish U.S. citizenship. One early example of this, which was described at the time as the first"} +{"qid": "test1835", "pid": "14142353", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Religion and politics in the United States\"\nReligion and politics in the United States Religion in the United States is remarkable in its high adherence level compared to other developed countries. The First Amendment to the country's Constitution prevents the government from having any authority in religion, and guarantees the free exercise of religion. A majority of Americans report that religion plays a \"\"very important\"\" role in their lives, a proportion unusual among developed nations, though similar to other nations in the Americas. Many faiths have flourished in the United States, including imports spanning the country's multicultural heritage as well as those founded within the country, and"} +{"qid": "test1835", "pid": "293047", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Nation state\"\nand the Kingdom of Scotland, but the Treaty of Union (1707) that set out the agreed terms has ensured the continuation of distinct features of each state, including separate legal systems and separate national churches. In 2003, the British Government described the United Kingdom as \"\"countries within a country\"\". While the Office for National Statistics and others describe the United Kingdom as a \"\"nation state\"\", others, including a then Prime Minister, describe it as a \"\"multinational state\"\", and the term Home Nations is used to describe the four national teams that represent the four nations of the United Kingdom (England,"} +{"qid": "test1835", "pid": "11631757", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Marshall Islands–United States relations\"\noverwhelming support for the United States. On 13 key issues in 2008, the Marshall Islands matched the vote of the United States 100% of the time. In 2015, however, the Marshall Islands voted to condemn the US embargo over Cuba. The motion at the United Nations was supported by 191 member states, with two votes against (the United States and Israel) and no country abstaining. In December 2017, the Marshall Islands was one of just nine countries (including the United States and Israel) to vote against a motion adopted by the United Nations General Assembly condemning the United States' recognition"} +{"qid": "test1835", "pid": "13011056", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Canada–United States Safe Third Country Agreement\"\nCanada–United States Safe Third Country Agreement The Canada–United States Safe Third Country Agreement, officially the Agreement between the Government of Canada and the Government of the United States of America for cooperation in the examination of refugee status claims from nationals of third countries, is a treaty between the governments of Canada and the United States to better manage the flow of refugee claimants at the shared land border. Under the agreement persons seeking refugee status must make their claim in the first country they arrive in, either the United States or Canada, unless they qualify for an exception. For"} +{"qid": "test1835", "pid": "3693034", "query": "is the united states a country or nation", "answer": "country", "passage": "\"United Nations Security Council Resolution 1559\"\nUnited Nations Security Council Resolution 1559 United Nations Security Council resolution 1559, adopted on 2 September 2004, after recalling resolutions 425 (1978), 426 (1978), 520 (1982) and 1553 (2004) on the situation in Lebanon, the Council supported free and fair presidential elections in Lebanon and called upon remaining foreign forces to withdraw from the country. Nine countries voted in favor: Angola, Benin, Chile, France, Germany, Romania, Spain, the United Kingdom, and the United States. Six countries abstained: Algeria, Brazil, China, Pakistan, the Philippines and Russia. The resolution was sponsored by France and the United States. The cooperation between these two"} +{"qid": "test1835", "pid": "2392615", "query": "is the united states a country or nation", "answer": "country", "passage": "\"United States Golf Association\"\nthe question of a national amateur championship. Earlier that year, the Newport Country Club and Saint Andrew's Golf Club, Yonkers, New York, both declared the winners of their tournaments the \"\"national amateur champion.\"\" That autumn, delegates from Newport, St. Andrew's, The Country Club, Chicago Golf Club, and Shinnecock Hills Golf Club met in New York City to form a national governing body, which would administer the championship and also the Rules of Golf for the country. On December 22, 1894, the Amateur Golf Association of the United States was officially formed, and was shortly thereafter renamed the \"\"United States Golf"} +{"qid": "test1835", "pid": "13980175", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Visa policy of Montenegro\"\na diplomatic passport: Nationals of the following countries can visit Montenegro if they are holding a diplomatic or service passport: Holders of a Laissez-Passer, issued by the United Nations, provided travelling on duty can also visit Montenegro visa-free. Nationals of any country may visit Montenegro without a visa for up to 30 days if they hold a passport with visas issued by Ireland, a Schengen Area member state, the United Kingdom or the United States or if they are permanent residents of those countries. Residents of the United Arab Emirates do not require a visa for up to 10 days,"} +{"qid": "test1835", "pid": "435704", "query": "is the united states a country or nation", "answer": "country", "passage": "\"United States Department of State\"\nUnited States Department of State The United States Department of State (DOS), commonly just referred to as the State Department, is the federal executive department that advises the President and represents the country in international affairs and foreign policy issues. Equivalent to the foreign ministry of other countries, it was established in 1789 as the nation's first executive department. The current Secretary of State is Mike Pompeo, who ascended to the office in April 2018 after Rex Tillerson resigned. The State Department's duties include implementing the foreign policy of the United States, operating the nation's diplomatic missions abroad, negotiating treaties"} +{"qid": "test1835", "pid": "6659305", "query": "is the united states a country or nation", "answer": "country", "passage": "\"United States men's national Australian rules football team\"\nUnited States men's national Australian rules football team The United States national Australian rules football team, nicknamed the Revolution, represents the United States of America in the sport of Australian rules football. The Revolution are named after the American Revolution (an event which gave the country separation from the British Empire) and wear the colors of the American flag. The team plays in international tournaments, including the Australian Football International Cup, as well as exhibition matches against other countries. The US national team has participated in every International Cup since its inception in 2002. The team's best result has been"} +{"qid": "test1835", "pid": "7792835", "query": "is the united states a country or nation", "answer": "country", "passage": "\"History of the flags of the United States\"\nnations with UN seats, the U.S. maintains and exercises jurisdictional control over the countries in defense, security, and funding grants. Since 1777, the national ensign of the United States has also simultaneously served as its national flag. The current version is shown below; for previous versions, please see the section \"\"Historical progression of designs\"\" above. History of the flags of the United States This article describes the evolution of the flag of the United States of America, as well as other flags used within the country, such as the flags of governmental agencies. There are also separate flags for embassies"} +{"qid": "test1835", "pid": "3022974", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Member states of the League of Nations\"\nwas the only country to be expelled by the League (in 1939, following its invasion of Finland). Despite formulating the concept and signing the Covenant, the United States never joined the League of Nations. Member states of the League of Nations Between 1920 and 1939, a total of 63 countries became member states of the League of Nations. The Covenant forming the League of Nations was included in the Treaty of Versailles and came into force on 10 January 1920. The League of Nations was dissolved on 18 April 1946, when its assets and responsibilities were transferred to the United"} +{"qid": "test1835", "pid": "291131", "query": "is the united states a country or nation", "answer": "country", "passage": "\"Foreign relations of North Korea\"\nUnited States. This led to the first face to face-to-face discussion between the Supreme Leader of North Korea and a sitting United States President. The Constitution of the DPRK establishes the country's foreign policy. While Article 2 of the constitution describes the country as a \"\"revolutionary state,\"\" Article 9 says that the country will work to achieve Korean reunification, maintain state sovereignty and political independence, and \"\"national unity.\"\" Many articles specifically outline the country's foreign policy. Article 15 says that the country will \"\"protect the democratic national rights of Korean compatriots overseas and their legitimate rights and interests as recognized"} +{"qid": "test1835", "pid": "4089888", "query": "is the united states a country or nation", "answer": "country", "passage": "\"American nationalism\"\nAmerican nationalism American nationalism or United States nationalism is a form of civic nationalism found in the United States. Essentially, it indicates the aspects that characterize and distinguish the United States as an autonomous political community. The term often serves to explain efforts to reinforce its national identity and self-determination within their national and international affairs. American scholars such as Hans Kohn state that the United States government institutionalized a civic nationalism founded upon legal and rational concepts of citizenship, being based on common language and cultural traditions. The Founding Fathers of the United States established the country upon classical"} +{"qid": "test1837", "pid": "6912298", "query": "when does jim propose to pam on the office", "answer": "In the Season 5 premiere", "passage": "\"Pam Beesly\"\nthat he will propose to Pam that evening. Just as Jim is preparing to propose, however, Andy Bernard stands up and makes his own impromptu proposal to Angela. Having had his thunder stolen by Andy, Jim reluctantly puts the ring back in his jacket pocket, leaving Pam visibly disappointed as she was expecting Jim to propose that night. In the Season 5 premiere, \"\"Weight Loss\"\", Pam begins her three-month course at the Pratt Institute. In this episode, Jim proposes in the pouring rain at a rest stop, saying that he \"\"can't wait\"\". In \"\"Business Trip\"\", Pam learns that she is"} +{"qid": "test1838", "pid": "6904218", "query": "when were cigarette ads banned from tv uk", "answer": "1 August 1965", "passage": "\"Woodbine (cigarette)\"\na packet of Woodbines from his pocket and light one up, followed by a happy tune and a man reading the line \"\"\"\"Light up life with a Woodbine! It's Britain's best-selling cigarette!\"\"\"\". at the end. The ads were never played on TV however, as all television commercials for cigarettes were banned on 1 August 1965. A jingle was also made to promote Woodbine in the late 1950s or early 1960s. Woodbine (cigarette) Woodbine is a British brand of cigarettes, currently owned and manufactured by Imperial Tobacco. Woodbine cigarettes are named after the many Woodbine flowers. Woodbine was launched in 1888"} +{"qid": "test1839", "pid": "6448498", "query": "when did the sat become out of 1600", "answer": "2014", "passage": "\"Woodrow Wilson High School (Dallas)\"\nSAT higher than the DISD overall average of 13.3%. It had 204 students, 21.1% of the tested students, at that level in 2013. In 2014 it was 354 students, 28.8% of the total tested students, an increase by 59 students. The DISD administration stated that students who score 990 or above on the SAT are likely to not require remedial classes when attending universities and colleges. In 2014-2015 Woodrow students earned an average SAT score of 898 out of 1600, however that number masks the large variation in scores between subgroups. White students scored an average of 1105 out of"} +{"qid": "test1839", "pid": "11578187", "query": "when did the sat become out of 1600", "answer": "2014", "passage": "\"Jason Castro (singer)\"\nschool's soccer team and an honor student. He received a 1340 out of 1600 on his SAT. Castro was a junior majoring in Construction Science at Texas A&M University in College Station on a full academic scholarship when he auditioned for \"\"American Idol\"\". Castro has sported dreadlocks since his senior year of high school. In 2014, symbolic of a spiritual reawakening, he cut his dreadlocks and has since worn his hair much shorter. Castro performed as a drummer with the rock band Charlemagne, which later became Keeping Lions. He has stated that his musical influences include Ray LaMontagne, Ben Harper,"} +{"qid": "test1839", "pid": "1487776", "query": "when did the sat become out of 1600", "answer": "2016", "passage": "\"Northwestern University\"\nthe undergraduate class of 2022 (entering 2018). For early decision, 1,072 out of 4,049 applicants were admitted, for an acceptance rate of 26%. In regular decision, 2,320 out of 36,518 applicants were admitted, for an acceptance rate of 6.35%. In total, 3,392 out of 40,425 applicants were admitted for an overall acceptance rate of 8.4%, making Northwestern one of the most selective schools in the United States. For freshmen enrolling in the class of 2021, the interquartile range (middle 50%) on the post-2016 SAT was a combined (verbal and math) 1420-1560 out of 1600, ACT composite scores for the middle"} +{"qid": "test184", "pid": "1437841", "query": "what are the importance of rigor mortis in meat processing", "answer": "tenderness of meat", "passage": "\"Rigor mortis\"\nfibers. Rigor mortis then spreads to the other muscles, including the internal organs, within the next four to six hours. The onset of rigor mortis is affected by the individual's age, sex, physical condition, and muscular build. Rigor mortis may not be perceivable in many infant and child corpses due to their smaller muscle mass. Rigor mortis is very important in meat technology. The onset of rigor mortis and its resolution partially determine the tenderness of meat. If the post-slaughter meat is immediately chilled to 15 °C (59 °F), a phenomenon known as cold shortening occurs, whereby the muscle sarcomeres"} +{"qid": "test1840", "pid": "12693305", "query": "who is the prime minister of india full name", "answer": "Narendra Modi", "passage": "\"India–Palestine relations\"\nthen, Indian support for Palestine has been lukewarm although India still recognizes the legitimacy of aspirations of Palestine. Prime Minister Narendra Modi, became the first Prime Minister of India to visit Palestine in 2018. The visit was called \"\"Grand Affair\"\" and historic for India to reaffirm its ties. India was the first non-Arab country to contemporaneously recognize the Palestine Liberation Organisation's authority as \"\"the sole legitimate representative of the Palestinian people.\"\" A PLO office was set up in the Indian capital in 1975, with full diplomatic relations established in March 1980. India recognized Palestine's statehood following declaration on 18 November"} +{"qid": "test1840", "pid": "1283647", "query": "who is the prime minister of india full name", "answer": "Narendra Modi", "passage": "\"Sathya Sai Baba\"\nlife. Other devotees have spoken of his anticipated resurrection, reincarnation or awakening. His body lay in state for two days and was buried with full state honours on 27 April 2011. An estimated 500,000 people attended the burial, among them the Indian Prime Minister Manmohan Singh, Congress president Sonia Gandhi, then Gujarat Chief Minister Narendra Modi (India's Present Prime Minister), Cricketer Sachin Tendulkar and Union Ministers S. M. Krishna and Ambika Soni, as well as other political leaders and prominent figures. Sai Baba's death triggered an outpouring of grief from followers who included Indian politicians, movie stars, athletes and industrialists."} +{"qid": "test1842", "pid": "14533778", "query": "when does god of war ghost of sparta take place", "answer": "ancient Greece", "passage": "\"God of War: Ghost of Sparta\"\nGod of War: Ghost of Sparta God of War: Ghost of Sparta is a third-person action-adventure video game developed by Ready at Dawn and Santa Monica Studio, and published by Sony Computer Entertainment (SCE). It was first released for the PlayStation Portable (PSP) handheld console on November 2, 2010. The game is the sixth installment in the \"\"God of War\"\" series and the fourth chronologically. Loosely based on Greek mythology, \"\"Ghost of Sparta\"\" is set in ancient Greece with vengeance as its central motif. The player controls the protagonist Kratos, the God of War. Kratos is still haunted by the"} +{"qid": "test1844", "pid": "12118911", "query": "what is in a pat o brien hurricane", "answer": "rum", "passage": "\"Brian O'Brien\"\nwas quietly transferred to the Institute of Optics to help develop the \"\"metascopes\"\" for night vision. It was in relation to this work, in 1948, that Albert Noyes and O'Brien were awarded The Medal of Merit by President Harry S. Truman, the highest civilian award given by government. In a report sent to President Valentine, O' Brien estimated that the Institute had \"\"spent\"\" about one million dollars for the war effort \"\"including overhead allowances to the University.\"\" There was also a marked increase in undergraduate students during this time period. Recognizing his own personal research involvement O' Brien decided to"} +{"qid": "test1844", "pid": "16214599", "query": "what is in a pat o brien hurricane", "answer": "rum", "passage": "\"Sweet Jane (band)\"\nSweet Jane (band) Sweet Jane are an Irish band formed in 2008. The current line-up consists of Danda Paxton (lead guitar/vocals), Neil Paxton ( backing vocals/keyboards/ guitar), Ruairi Paxton (bass), Conor Paxton (guitar) and Donagh O Brien (drums). The group began working together after guitarist and songwriter Danda Paxton asked Lydia Des Dolles to provide vocals on a number of tracks he had written. Along with Ruairi Paxton and Donagh O Brien they recorded and released their first EP 'Black Boots and Black Hearts'. 2009 saw the band sign to Irish Label Reekus Records and together they released 'You're Making"} +{"qid": "test1844", "pid": "9079600", "query": "what is in a pat o brien hurricane", "answer": "rum", "passage": "\"Chris Brien\"\nChris Brien Christian John Brien is a drummer, percussionist and drum clinician. From 1992 he was a member of Australian rock, funk and disco band, Swoop and appears on all three of their studio albums, \"\"Thriller\"\" (October 1993), \"\"Woxo Principle\"\" (November 1995), and \"\"Be What You Is\"\" (January 1999). Their most popular single, \"\"Apple Eyes\"\", was released in 1995, which reached No. 9 on the ARIA Singles Chart. At the ARIA Music Awards of 1994 Swoop were nominated for 'Best New Talent' for \"\"Thriller\"\"; at the 1996 awards they were nominated for 'Song of the Year' and 'Best Video' for"} +{"qid": "test1844", "pid": "3852059", "query": "what is in a pat o brien hurricane", "answer": "rum", "passage": "\"Pat O'Brien's Bar\"\ntheir bulging surplus of rum. When they decided to serve it in a hurricane glass, shaped like a hurricane lamp, the hurricane was born. Other locations of Pat O'Brien's Bar: Pat O'Brien's Bar Pat O'Brien's Bar is a bar located in New Orleans, Louisiana that began operation as a legal liquor establishment on December 3, 1933, at the intersection of Royal and St. Peter streets in the French Quarter. Before that, during Prohibition the bar was known as Mr. O'Brien's Club Tipperary; the password \"\"storm's brewin'\"\" was required to gain entrance to the establishment. In December 1942 it moved to"} +{"qid": "test1844", "pid": "19209930", "query": "what is in a pat o brien hurricane", "answer": "rum", "passage": "\"Mary Pat Christie\"\n& Co.. Mary Pat has been the family's primary breadwinner, earning $500,000 of the couple's total income of $700,000 in 2014. She left her position with Angelo, Gordon & Co. in April 2015, stating that she wanted to spend more time with her family. When Hurricane Sandy devastated communities along the Jersey Shore in 2012, Mary Pat took a three-month leave from her job to set up and run the Hurricane Sandy New Jersey Relief Fund. Mary Pat heads the Hurricane Sandy New Jersey Relief Fund, the Drumthwacket Foundation and New Jersey Heroes. She used her fundraising prowess again to"} +{"qid": "test1847", "pid": "5643059", "query": "who sings good night on the beatles white album", "answer": "Ringo Starr", "passage": "\"Good Night (Beatles song)\"\nGood Night (Beatles song) \"\"Good Night\"\" is a song by the Beatles, composed by John Lennon, but credited to Lennon–McCartney. It is sung by Ringo Starr, the only Beatle to appear on the track. The music was provided by an orchestra arranged and conducted by George Martin. It is the last song on the Beatles' 1968 album \"\"The Beatles\"\" (also known as the \"\"White Album\"\"). John Lennon wrote the song as a lullaby for his five-year-old son Julian. The original version of \"\"Good Night\"\" featured George Harrison and John Lennon playing the melody on guitars with them and Paul McCartney"} +{"qid": "test1847", "pid": "5643064", "query": "who sings good night on the beatles white album", "answer": "Ringo Starr", "passage": "\"Good Night (Beatles song)\"\nA one-second clip of the song is heard on the Paul McCartney album \"\"Liverpool Sound Collage\"\" at 3:38 on the track \"\"Plastic Beetle\"\". Good Night (Beatles song) \"\"Good Night\"\" is a song by the Beatles, composed by John Lennon, but credited to Lennon–McCartney. It is sung by Ringo Starr, the only Beatle to appear on the track. The music was provided by an orchestra arranged and conducted by George Martin. It is the last song on the Beatles' 1968 album \"\"The Beatles\"\" (also known as the \"\"White Album\"\"). John Lennon wrote the song as a lullaby for his five-year-old son"} +{"qid": "test1847", "pid": "13286447", "query": "who sings good night on the beatles white album", "answer": "Ringo Starr", "passage": "\"A Beginning\"\nrecorded on 22 July 1968, using the same orchestra that appeared on the Beatles' song \"\"Good Night\"\". A Beginning \"\"A Beginning\"\" is an instrumental piece composed by the Beatles' producer George Martin and intended as an introduction to \"\"Don't Pass Me By\"\", Ringo Starr's first solo composition from the Beatles' 1968 double album \"\"The Beatles\"\" (also known as the \"\"White Album\"\"). It was instead used as an incidental cue in the Beatles' cartoon film \"\"Yellow Submarine\"\" and heard right before \"\"Eleanor Rigby.\"\" It was included on \"\"Anthology 3\"\" as a replacement of a planned \"\"new Beatles song,\"\" \"\"Now and Then\"\""} +{"qid": "test1847", "pid": "349769", "query": "who sings good night on the beatles white album", "answer": "Ringo Starr", "passage": "\"Ringo Starr\"\nappeared in interview segments with fellow drummer Keith Moon. Since the breakup of the Beatles, Starr has released 19 solo studio albums: Ringo Starr Sir Richard Starkey (born 7 July 1940), known professionally as Ringo Starr, is an English musician, singer, songwriter and actor who gained worldwide fame as the drummer for the Beatles. He occasionally sang lead vocals, usually for one song on an album, including \"\"With a Little Help from My Friends\"\", \"\"Yellow Submarine\"\", \"\"Good Night\"\", and their cover of \"\"Act Naturally\"\". He also wrote the Beatles' songs \"\"Don't Pass Me By\"\" and \"\"Octopus's Garden\"\", and is credited"} +{"qid": "test1850", "pid": "6218473", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Supreme Court of Illinois\"\nSupreme Court of Illinois The Supreme Court of Illinois is the state supreme court, the highest court of the state of Illinois. The court's authority is granted in Article VI of the current Illinois Constitution, which provides for seven justices elected from the five appellate judicial districts of the state: Three justices from the First District (Cook County) and one from each of the other four districts. Each justice is elected for a term of ten years and the chief justice is elected by the court from its members for a three-year term. The court has limited original jurisdiction and"} +{"qid": "test1850", "pid": "9179663", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Lloyd A. Karmeier\"\n2007. An article about this appointment as Chief Justice in \"\"Illinois Lawyer Now\"\" wrote, \"\"Throughout his tenure on the Supreme Court, Justice Karmeier has made frequent appearances before school, civic, and professional organizations to speak about the court's work. He regularly lectures at continuing legal education programs and contributes articles to the ISBA Bench and Bar Section Council Newsletter.\"\" Karmeier became 120th chief justice of the Illinois Supreme Court on October 31, 2016, and was sworn in by Rita Garman, who herself had served as chief justice. According to \"\"Herald and Review\"\", \"\"In his position, which he'll fill for three"} +{"qid": "test1850", "pid": "17423248", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Judiciary of Illinois\"\nJudiciary of Illinois The Judiciary of Illinois is the unified court system of Illinois responsible for applying the Constitution and law of Illinois. It consists of the Supreme Court, Appellate Court, and circuit courts. The Supreme Court oversees the administration of the court system. The court system is hierarchical and consists of the: The Supreme Court of Illinois is the state supreme court and consists of seven justices including a chief justice. The court has limited original jurisdiction and has final appellate jurisdiction. It has mandatory jurisdiction in capital cases and cases where the constitutionality of laws has been called"} +{"qid": "test1850", "pid": "17423262", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Judiciary of Illinois\"\naccusing attorney by the Attorney Registration and Disciplinary Commission. Judiciary of Illinois The Judiciary of Illinois is the unified court system of Illinois responsible for applying the Constitution and law of Illinois. It consists of the Supreme Court, Appellate Court, and circuit courts. The Supreme Court oversees the administration of the court system. The court system is hierarchical and consists of the: The Supreme Court of Illinois is the state supreme court and consists of seven justices including a chief justice. The court has limited original jurisdiction and has final appellate jurisdiction. It has mandatory jurisdiction in capital cases and"} +{"qid": "test1850", "pid": "17423256", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Judiciary of Illinois\"\nThe Illinois Judicial Conference committees are charged with examining and making recommendations on matters of judicial branch policy. The Illinois Criminal Justice Information Authority published information about criminal justice issues in \"\"On Good Authority\"\". The chief justice of the Supreme Court is elected by the court from its members for a three-year term. Circuit judges in a circuit elect one of their members to serve as chief judge of the circuit court. Cases may be assigned to general or specialized divisions by the chief judge who has general administrative authority in the circuit, subject to the overall administrative authority of"} +{"qid": "test1850", "pid": "13162211", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"John Hossack\"\nCaton, Chief Justice of the Supreme Court of Illinois, who was stationed in Ottawa, Illinois. Chief Justice Caton agreed that the state law by which Gray was being held was unconstitutional, but nevertheless ordered the Jonesboro sheriff to turn Gray over to the U.S. Commissioner in Springfield, Illinois so that the federal government could determine how to proceed under the Fugitive Slave Law of 1850. A number of abolitionists, including Hossack, attended the court that day, and, upon hearing Chief Justice Caton's decision, they yelled at Gray to run, Hossack saying \"\"If you want your liberty, come.\"\" Other abolitionists then"} +{"qid": "test1850", "pid": "7193307", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Thomas L. Kilbride\"\na pilot program to promote electronically filing legal documents to the court, a cost and time saving process. Thomas L. Kilbride Thomas L. Kilbride (born August 5, 1953) is an American judge currently serving on the Supreme Court of Illinois. Kilbride served as Chief Justice of the court from October 2010 through October 25, 2013. He was elected to the Illinois Supreme Court Justice for the Third District in 2000 and elected Chief Justice by his colleagues in October 2010 for a three-year term. Kilbride was born in LaSalle, Illinois. He received a B.A. degree \"\"magna cum laude\"\" from St."} +{"qid": "test1850", "pid": "7193304", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Thomas L. Kilbride\"\nThomas L. Kilbride Thomas L. Kilbride (born August 5, 1953) is an American judge currently serving on the Supreme Court of Illinois. Kilbride served as Chief Justice of the court from October 2010 through October 25, 2013. He was elected to the Illinois Supreme Court Justice for the Third District in 2000 and elected Chief Justice by his colleagues in October 2010 for a three-year term. Kilbride was born in LaSalle, Illinois. He received a B.A. degree \"\"magna cum laude\"\" from St. Mary's College in Winona, Minnesota in 1978 and received his law degree from Antioch School of Law in"} +{"qid": "test1850", "pid": "13977973", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"George A. Cooke\"\nof Representatives, representing the 33rd District. He served two terms. Upon the death of Justice Guy C. Scott of the Illinois Supreme Court in 1909, Cooke ran for and won election to the Fourth District of the Illinois Supreme Court. Cooke served out the remainder of Justice Scott's term and then won re-election to a full term in 1912. He served as chief justice of the court for two consecutive terms in 1913 and 1914. In 1918, Cooke left the bench to become chief counsel of the Peoples Gas Light and Coke Company, a position he held for the next"} +{"qid": "test1850", "pid": "19515114", "query": "who picks the chief justice of the illinois supreme court", "answer": "the court", "passage": "\"Chief Justice of the Supreme Court of Indonesia\"\nChief Justice of the Supreme Court of Indonesia The Chief Justice of the Supreme Court of Indonesia () is the head of the Supreme Court of Indonesia. The chief justice and his or her deputy is elected by the Supreme Court justices from among the members of the court. Sometimes the process is controversial and attracts public criticism. For example, in early 2012 rumours about vote buying were reported in the Jakarta press as speculation mounted about the arrangements underway for the selection of new chief justice to replace Harifin Tumpa, who retired as chief justice in March 2012. It"} +{"qid": "test1851", "pid": "309340", "query": "who began the age of exploration in portugal", "answer": "Prince Henry", "passage": "Portugal\nson-in-law of Ferdinand I of Portugal, claimed the throne of Portugal. A faction of petty noblemen and commoners, led by John of Aviz (later King John I of Portugal) and commanded by General Nuno Álvares Pereira defeated the Castilians in the Battle of Aljubarrota. With this battle, the House of Aviz became the ruling house of Portugal. Portugal spearheaded European exploration of the world and the Age of Discovery. Prince Henry the Navigator, son of King João I, became the main sponsor and patron of this endeavour. During this period, Portugal explored the Atlantic Ocean, discovering several Atlantic archipelagos like"} +{"qid": "test1851", "pid": "8090103", "query": "who began the age of exploration in portugal", "answer": "Prince Henry", "passage": "\"History of cartography\"\nand Kingdom of Portugal) were at the vanguard of European overseas exploration, discovering and mapping the coasts of the Americas, Africa, and Asia, in what became known as the Age of Discovery (also known as the Age of Exploration). Spain and Portugal were magnets for the talent, science and technology from the Italian city-states. Portugal's methodical expeditions started in 1419 along West Africa's coast under the sponsorship of Prince Henry the Navigator, with Bartolomeu Dias reaching the Cape of Good Hope and entering the Indian Ocean in 1488. Ten years later, in 1498, Vasco da Gama led the first fleet"} +{"qid": "test1851", "pid": "5184725", "query": "who began the age of exploration in portugal", "answer": "Prince Henry", "passage": "\"Portuguese Canadians\"\nlife of 16th-century poet Luís de Camões, considered Portugal's greatest poet, were taking place in many communities across the country. Portugal played a pioneering role in the explorations of the New World in the 15th and 16th centuries. In the 15th century, Prince Henry of Portugal, better known as Henry the Navigator, established a school of navigation in Sagres, in the Algarve region of Portugal. From this school emerged explorers who found their way to the Indies, South America, North America and Africa, including Gaspar Corte-Real, who was one of the earliest European explorers of Canada. Corte-Real explored the northeast"} +{"qid": "test1851", "pid": "247041", "query": "who began the age of exploration in portugal", "answer": "Prince Henry", "passage": "\"Middle Ages\"\nEckhart and Johannes Tauler (d. 1361). Theatre also developed in the guise of miracle plays put on by the Church. At the end of the period, the development of the printing press in about 1450 led to the establishment of publishing houses throughout Europe by 1500. In the early 15th century, the countries of the Iberian peninsula began to sponsor exploration beyond the boundaries of Europe. Prince Henry the Navigator of Portugal (d. 1460) sent expeditions that discovered the Canary Islands, the Azores, and Cape Verde during his lifetime. After his death, exploration continued; Bartolomeu Dias (d. 1500) went around"} +{"qid": "test1851", "pid": "309304", "query": "who began the age of exploration in portugal", "answer": "Prince Henry", "passage": "Portugal\nOurique in 1139 and was recognised as such, by neighbouring kingdoms, on the Treaty of Zamora, in 1143. In the 15th and 16th centuries, Portugal established the first global empire, becoming one of the world's major economic, political and military powers. During this period, today referred to as the Age of Discovery, Portuguese explorers pioneered maritime exploration, notably under royal patronage of Prince Henry the Navigator and King John II, with such notable voyages as Bartolomeu Dias' sailing beyond the Cape of Good Hope (Cabo da Boa Esperança) (1488), Vasco da Gama's discovery of the sea route to India (1497–98)"} +{"qid": "test1852", "pid": "12836055", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"History of Palestine\"\nrefugees from the now dissolved Mandate of Palestine fueled the regional ambitions of King Abdullah I, who sought control over what had been the British Jerusalem and Samaria districts on the west bank of Jordan River. Towards this goal the king granted Jordanian citizenship to all Arab holders of the Palestinian Mandate identity documents in February 1949, and outlawed the terms \"\"Palestinian\"\" and \"\"Transjordanian\"\" from official usage, changing the country's name from the Emirate of Trans-Jordan to the Hashemite Kingdom of Jordan. The area east of the river became known as \"\"al-Ḍiffah al-Sharqiyyal\"\", or \"\"The East Bank\"\". In April 1950,"} +{"qid": "test1852", "pid": "20412794", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan's Point Historic District\"\nchapel built in 1874. The district was listed on the National Register of Historic Places in 2016. Jordan's Point Historic District The Jordan's Point Historic District encompasses a collection of historic industrial resources at Jordan's Point Park in Lexington, Virginia. The area, long a major local crossing point of the Maury River, was developed about 1800 by John Jordan and John Moorhead, who established a sawmill on the site. In 1806 they dammed the river, and then built a cotton mill in 1808. Of this and later industrial activity on the site, only foundation remnants and the millrace remain; surviving"} +{"qid": "test1852", "pid": "20412793", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan's Point Historic District\"\nJordan's Point Historic District The Jordan's Point Historic District encompasses a collection of historic industrial resources at Jordan's Point Park in Lexington, Virginia. The area, long a major local crossing point of the Maury River, was developed about 1800 by John Jordan and John Moorhead, who established a sawmill on the site. In 1806 they dammed the river, and then built a cotton mill in 1808. Of this and later industrial activity on the site, only foundation remnants and the millrace remain; surviving structures associated with the development include the miller's house (c. 1815), now a local museum, and a"} +{"qid": "test1852", "pid": "1248265", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"West Jordan, Utah\"\n\"\"Jordan River\"\". Like its Middle Eastern namesake, the Jordan River flows from a fresh water lake (Utah Lake) to an inland salt sea (Great Salt Lake). West Jordan was founded around 1849 on the western banks of the Jordan River. One of the first sawmills in the area was built in 1850 in the city by Archibald Gardner. Gardner was a devout Mormon whose legacy can still be seen in modern West Jordan. His collection of mills and houses, now historic, have been renovated into a specialty shopping district known as \"\"Gardner Village\"\". Early West Jordan relied primarily on agriculture,"} +{"qid": "test1852", "pid": "12110597", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan Village, Connecticut\"\nJordan Village, Connecticut Jordan is a village in the town of Waterford, Connecticut, and the historic center of the town. It was named from the Jordan River. The village was listed on the National Register of Historic Places as Jordan Village Historic District in 1990. Jordan Village is located on land known historically as Jordan Plain, a flat land area at the head of Jordan Cove, an estuary off Long Island Sound. The historic district is centered on the intersection of Rope Ferry Road and North Road, two important early roads, providing access to New London to the east, the"} +{"qid": "test1852", "pid": "5501837", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Navarre, Florida\"\nfrom Veracruz. A skilled cartographer, scientist, mathematician and theologian, Sigüenza was responsible for scouting and mapping possible sites of Spanish colonization in Northwest Florida during the expedition. While traveling in the area of East Bay in April 1693 the Spanish discovered what is today called the East Bay River. In honor of Captain Jordan de Reina, an officer who had taken part in the Barroto-Romero voyage of 1686 as well as Sigüenza's in 1693, the Spanish dubbed the waters on which they traveled, \"\"The River Jordan\"\". On April 11, 1693, while sailing up East Bay River, sailors aboard the Spanish"} +{"qid": "test1852", "pid": "19202554", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Wadi al-Far'a (river)\"\nWadi al-Far'a (river) Wadi al-Far'a (Arabic name) or Nahal Tirza (Hebrew name) is a stream in the northern West Bank that empties into the Jordan River south of Damia Bridge (Arabic: Jisr Damiya). It is the largest stream in the West Bank. Wadi al-Far'a is located in the rugged area of the West Bank and cuts east through the Jordan Valley, passing through the Palestinian village of Wadi al-Far'a. The Tirzah Reservoir is used to collect the floodwater of Wadi al-Far'a before it flows into the Jordan River. The Arabic name of Wadi al-Far'a is transliterated in Roman script in"} +{"qid": "test1852", "pid": "3185060", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "Heshbon\nHeshbon Heshbon (also Hesebon, Esebon, Esbous, Esebus; , , ;) was an ancient town located east of the Jordan River in what is now the Kingdom of Jordan, historically within the territories of ancient Ammon. Today, it is a ruin, bearing its old Arabic namesake, \"\"Tell Ḥesbān\"\", located ca. north of Madaba. Ancient Heshbon was beyond, i.e. east of, the Jordan. The city was where the Israelites passed by on their entry to the Promised Land, and was assigned to the tribe of Reuben; afterwards it was given to the Tribe of Gad and became a Levitical city for the"} +{"qid": "test1852", "pid": "589363", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan River\"\nJordan River The Jordan River or River Jordan (, \"\"Nahar ha-Yarden\"\"; , , \"\"Nahr al-Urdunn\"\"; , \"\"Iordànes\"\") is a river in the Middle East that flows roughly north to south through the Sea of Galilee (Hebrew: כנרת Kinneret, Arabic: Bohayrat Tabaraya, meaning Lake of Tiberias) and on to the Dead Sea. Jordan and the Golan Heights border the river to the east, while the West Bank and Israel lie to its west. Both Jordan and the West Bank take their names from the river. The river has a major significance in Judaism and Christianity since many believe that the Israelites"} +{"qid": "test1852", "pid": "589383", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan River\"\nthe subject of roots reggae artist Burning Spear's song of the same title. Jordan River The Jordan River or River Jordan (, \"\"Nahar ha-Yarden\"\"; , , \"\"Nahr al-Urdunn\"\"; , \"\"Iordànes\"\") is a river in the Middle East that flows roughly north to south through the Sea of Galilee (Hebrew: כנרת Kinneret, Arabic: Bohayrat Tabaraya, meaning Lake of Tiberias) and on to the Dead Sea. Jordan and the Golan Heights border the river to the east, while the West Bank and Israel lie to its west. Both Jordan and the West Bank take their names from the river. The river has"} +{"qid": "test1852", "pid": "10223449", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Monmouth Land District\"\nMonmouth Land District Monmouth Land District is one of the twenty land districts of Tasmania which are part of the cadastral divisions of Tasmania. It was formerly one of the 18 counties of Tasmania. It is bordered by the River Derwent to the south, the Clyde River to the west, and a small part of the Jordan River to the north. It includes the parts of Greater Hobart which are located to the east of the Derwent, such as Rosny Park and Bridgewater. It also includes Kempton and Hamilton. On 15 January 1836 George Arthur, the Lieutenant Governor of the"} +{"qid": "test1852", "pid": "10223450", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Monmouth Land District\"\nIsland of Van Diemen's Land proclaimed, via The Hobart Town Courier, the first counties and parishes to be surveyed in the colony. Monmouth Land District Monmouth Land District is one of the twenty land districts of Tasmania which are part of the cadastral divisions of Tasmania. It was formerly one of the 18 counties of Tasmania. It is bordered by the River Derwent to the south, the Clyde River to the west, and a small part of the Jordan River to the north. It includes the parts of Greater Hobart which are located to the east of the Derwent, such"} +{"qid": "test1852", "pid": "3990641", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Palestine (region)\"\n\"\"Palaestina\"\" (\"\"I\"\" and \"\"II\"\", also known as \"\"Palaestina Prima\"\", \"\"First Palestine\"\", and \"\"Palaestina Secunda\"\", \"\"Second Palestine\"\"), have served as a name for the geographic area between the Jordan River and the Mediterranean Sea. Under Arab rule, \"\"Filastin\"\" (or \"\"Jund Filastin\"\") was used administratively to refer to what was under the Byzantines \"\"Palaestina Secunda\"\" (comprising Judaea and Samaria), while \"\"Palaestina Prima\"\" (comprising the Galilee region) was renamed \"\"Urdunn\"\" (\"\"Jordan\"\" or \"\"Jund al-Urdunn\"\"). Nineteenth-century sources refer to Palestine as extending from the sea to the caravan route, presumably the Hejaz-Damascus route east of the Jordan River valley. Others refer to it as"} +{"qid": "test1852", "pid": "8859793", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Sunday River (Androscoggin River tributary)\"\nSunday River (Androscoggin River tributary) Sunday River is a river in Oxford County, Maine in the United States. It is a tributary of the Androscoggin River, which flows east and south to join the Kennebec River in Merrymeeting Bay near the Atlantic Ocean. Sunday River flows from headwaters near Mount Carlo in the Mahoosuc Range. The river flows east, collecting the waters of tributaries including the South Branch Sunday River, Bull Branch, Miles Notch Brook, Goose Eye Brook, Jordan Brook, Merrill Brook, Simons Brook, and others. Most of these tributaries flow southeast from the Mahoosucs. A few flow north from"} +{"qid": "test1852", "pid": "16565973", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Mutasarrifate of Jerusalem\"\nalthough the border was moved to the current Israel-Egypt border in 1906, and the area north of the Negev Desert is labelled \"\"Filastin\"\" (Palestine). The division was bounded on the west by the Mediterranean, on the east by the River Jordan and the Dead Sea, on the north by a line from the mouth of the river Auja to the bridge over the Jordan near Jericho, and on the south by a line from midway between Gaza and Arish to Aqaba. Administrative divisions of the Mutasarrifate (1872-1909): The Mutasarrıfs of Jerusalem were appointed by the Porte to govern the district."} +{"qid": "test1852", "pid": "11893488", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Water politics in the Middle East\"\nfor dealing with the political, economic and social aspects, so that if necessary results are not achieved, collective Arab military preparations, when they are not completed, will constitute the ultimate practical means for the final liquidation of Israel.\"\" The project was to divert 20 to 30 million cubic metres of water from the river Jordan tributaries to Syria and Jordan for the development of Syria and Jordan. This led to military intervention from Israel, first with tank fire and then, as the Syrians shifted the works further eastward, with airstrikes. On 10 June 1967, the last day of the Six"} +{"qid": "test1852", "pid": "16296483", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Sandy Historic District\"\nrather than north to south like the county's most prominent Main Street. The street runs from a few blocks west of State Street to the steps of Sandy Elementary School, which is within the historic district, and passes in front of various historic buildings. As was once very common in early Great Basin settlements, irrigation water flows in street-side gutters in some places. The East Jordan Canal, a much larger canal carrying water from the Jordan River north toward Salt Lake City, also passes through the center of the district. The district is served by the UTA TRAX light rail"} +{"qid": "test1852", "pid": "7322214", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "FrontRunner\nthe east and 985 West and the Utah and Salt Lake Canal on the west. It then curves north again as it passes just west of the Joint Dam and then crosses over the South Jordan Canal. It then crosses back over the Jordan River and then the Jordan and Salt Lake City Canal. Continuing north, and slightly to the east, it parallels the South Jordan Canal, the South Jordan Canal Trail, and the Jordan River on the west and 1300 West on the east until about 15300 South. It then curves to the northeast and crosses 1300 West at"} +{"qid": "test1852", "pid": "13472840", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"The East Bank of the Jordan\"\nraised historical and practical arguments in favor of keeping Greater Israel, on both sides of the river. However, the World Zionist Organization accepted the borders that were outlined by the British government, and the removal of the territory east of the Jordan River from the British Mandate's boundaries, and preferred to focus on developing the Land of Israel west of the Jordan. The Revisionist Zionist movement and its founder, Ze'ev Jabotinsky, and also some in the liberal \"\"Ahdut Ha'voda\"\", continued to perceive the land east of the Jordan River as suitable for Jewish building, and a territory that should be"} +{"qid": "test1852", "pid": "192747", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Geography of Israel\"\nacross the highlands roughly from east to west; the largest is the Jezreel Valley (also known as the Plain of Esdraelon), which stretches from Haifa southeast to the valley of the Jordan River, and is across at its widest point. East of the central highlands lies the Jordan Rift Valley, which is a small part of the -long Syrian-East African Rift. In Israel the Rift Valley is dominated by the Jordan River, the Sea of Galilee (an important freshwater source also known as Lake Tiberias and Lake Kinneret), and the Dead Sea. The Jordan, Israel's largest river (), originates in"} +{"qid": "test1852", "pid": "16276305", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Battle of Sharon\"\nmorning of 22 September by Chaytor's Force before it turned east to capture Es Salt and capture Amman during the Second Battle of Amman. Chauvel ordered Barrow's 4th Cavalry Division at Beisan to advance southwards along the banks of the Jordan River on 23 September to cut this line of retreat. The encirclement of what remained of the Seventh and Eighth Armies, still west of the Jordan River in the Judean Hills, was complete on 25 September. The Australian Mounted Division followed the 4th Cavalry Division through the Musmus Pass to Lejjun. The 3rd Light Horse Brigade was ordered to"} +{"qid": "test1852", "pid": "5280311", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "Coele-Syria\nthe name Cœle (or Hollow Syria) was applied to the whole of the southern portion of Syria, but under the Romans, it was confined to \"\"Cœlesyria Proper\"\" and variously included the district east of Anti-Libanus, about Damascus, and a portion of Palestine east of the Jordan river (possibly of: Trans-Jordan, Perea, or the Decapolis). The name Syria comes from the ancient Greek regional name for the Levantine colonies and colonial territories which they had established and which were \"\"formerly comprehended as part of Assyria\"\" (see Name of Syria). Syria had an uncertain border to the northeast that Pliny the Elder"} +{"qid": "test1852", "pid": "13472841", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"The East Bank of the Jordan\"\nincluded within the future Jewish state. The Irgun's emblem included an image of most parts of the Land of Israel in the original borders of the British Mandate. The song \"\"The East of the Jordan\"\" reflects the idea of the Jewish state existing on both sides of the Jordan River. In the first stanza of the song, Jabotinsky compares the Jordan River to a spinal cord. The second stanza also emphasizes that the Jordan River is located in the midst of the Land of Israel. The third stanza includes an additional ideological message, in which everyone in Greater Israel will"} +{"qid": "test1852", "pid": "269334", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Meir Kahane\"\nbomb thrown at an Arab bus.\"\" In some of his writings, Kahane argued that Israel should never start a war for territory but that if a war were launched against Israel, Biblical territory should be annexed. However, in an interview, he defined Israel's \"\"minimal borders\"\" as follows: \"\"The southern boundary goes up to El Arish, which takes in all of northern Sinai, including Yamit. To the east, the frontier runs along the western part of the East Bank of the Jordan River, hence part of what is now Jordan. Eretz Yisrael also includes part of Lebanon and certain parts of"} +{"qid": "test1852", "pid": "14053169", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Skaneateles Historic District\"\nbeing almost totally destroyed by fire in 1835. Also included are properties on Jordan Street up to the intersection of Fennell Street, and the stone mill property on Fennell Street. Architects whose work is represented in the district include Stanford White (\"\"The Boulders\"\", 100 East Genesee Street, 1881) and Horatio Nelson White (St. James' Episcopal Church, 94 East Genesee Street, 1873). The Greek Revival, Federal, Italianate and Romanesque Revival styles are represented within the district, which is \"\"an intact, cohesive collection of commercial and residential buildings located on a picturesque, tree-lined street...\"\" The district was added to the National Register"} +{"qid": "test1852", "pid": "14915805", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan River (Victoria)\"\nJordan River (Victoria) The Jordan River, a perennial river of the West Gippsland catchment, is located in the Alpine region of the Australian state of Victoria. The Jordan River rises near The Springs, south of Woods Point, part of the Great Dividing Range. The headwaters drain a marginal area of the Big River State Forest near Jordan Gap, Jordan Cutting and McAdam Gap. The river flows generally south by east, much of its course through the Thomson State Forest, before reaching its confluence with the Thomson River within the northern reaches of the Thomson Reservoir. The river descends over its"} +{"qid": "test1852", "pid": "14915808", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Jordan River (Victoria)\"\nJordan River (Victoria) The Jordan River, a perennial river of the West Gippsland catchment, is located in the Alpine region of the Australian state of Victoria. The Jordan River rises near The Springs, south of Woods Point, part of the Great Dividing Range. The headwaters drain a marginal area of the Big River State Forest near Jordan Gap, Jordan Cutting and McAdam Gap. The river flows generally south by east, much of its course through the Thomson State Forest, before reaching its confluence with the Thomson River within the northern reaches of the Thomson Reservoir. The river descends over its"} +{"qid": "test1852", "pid": "19764860", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Delilah Pierce\"\nthe River Jordan, Cairo, Ethiopia, Nigeria, Ghana, and Dakar. She was a member of the Smith-Mason Gallery of Art in Washington, DC, as well as, the Old Sculpin Gallery and Cousen Rose Gallery’s in Massachusetts. Her work is among the permanent collections in the Smithsonian Museum of American Art, University of District of Columbia, Howard University, Evans-Tibbs Collection, Barnett-Aden Collection, Smith-Mason Gallery of Art, and Bowie State College. A month before her death in 1992, she obtained an honorary degree from the University of the District of Columbia, Washington, DC (DHL). She supported local education. Delilah Pierce Delilah Williams Pierce"} +{"qid": "test1852", "pid": "16981690", "query": "what is the collection of the districts to the east of the jordan river", "answer": "Jordan", "passage": "\"Transjordan (region)\"\nTransjordan (region) Transjordan, the East Bank, or the Transjordanian Highlands (), is the part of the Southern Levant east of the Jordan River, mostly contained in present-day Jordan. The region, known as Transjordan, was controlled by numerous powers throughout history. During the early modern era, the region of Transjordan was included under jurisdiction of Ottoman Syrian provinces. During World War I, Transjordan region was taken by the British, who had temporarily included it in OETA. Initially, the area was directly governed by the British, who decided to divide Transjordan region into 3 administrative districts – Ajloun, Balqa and Karak, with"} +{"qid": "test1855", "pid": "14605864", "query": "who won the fifth season of america's got talent", "answer": "Michael Grimm", "passage": "\"America's Got Talent (season 5)\"\nAmerica's Got Talent (season 5) The fifth season of America's Got Talent, an American television reality show talent competition, premiered in the United States on the NBC network and on Canada's Global on June 1, 2010. Soul singer Michael Grimm was named the winner on May 26, 2011, beating 10-year-old classical crossover singer Jackie Evancho. The season 5 selection process appears to carry over that of the past two seasons, but the Las Vegas Round was changed to that of the second and third seasons, which gave the performers a second chance to showcase their act. Instead of an audition"} +{"qid": "test1855", "pid": "14605877", "query": "who won the fifth season of america's got talent", "answer": "Michael Grimm", "passage": "\"America's Got Talent (season 5)\"\nshow is once again hosted by Nick Cannon with Sharon Osbourne and Piers Morgan as judges. Piers Morgan announced on \"\"The Tonight Show with Jay Leno\"\" on July 27, 2010 that he signed a three year contract to stay on \"\"Talent\"\". America's Got Talent (season 5) The fifth season of America's Got Talent, an American television reality show talent competition, premiered in the United States on the NBC network and on Canada's Global on June 1, 2010. Soul singer Michael Grimm was named the winner on May 26, 2011, beating 10-year-old classical crossover singer Jackie Evancho. The season 5 selection"} +{"qid": "test1855", "pid": "14022714", "query": "who won the fifth season of america's got talent", "answer": "Michael Grimm", "passage": "\"Michael Grimm (musician)\"\nthe Top Ten show of the sixth season of \"\"America's Got Talent\"\" on September 6, 2011. Also in the summer an autumn of 2011, Grimm opened for Stevie Nicks. Michael Grimm (musician) Michael Joseph Grimm (born December 30, 1978) is an American singer/songwriter and winner of the fifth season of \"\"America's Got Talent.\"\" Grimm was born in Colorado on the Fort Carson base, moved to Slidell, Louisiana, but later raised in Waveland, Mississippi. He currently resides in Henderson, Nevada. He was raised by his grandparents in Mississippi. Making good on a promise, \"\"America's Got Talent\"\" (\"\"AGT\"\") winner Grimm proposed on"} +{"qid": "test1856", "pid": "19071496", "query": "when does the sword art online movie take place", "answer": "2026", "passage": "\"Sword Art Online: Hollow Realization\"\nand Seven, a new PvP feature, and an additional story. The paid expansion pack \"\"Shrine Maiden of the Abyss\"\", to be released in 2017, will add an additional three chapters into the game. \"\"Hollow Realization\"\" takes place in \"\"Sword Art: Origin\"\", a restoration of Aincrad titled Ainground, with intentions of research and development in the year 2026, three years after the original \"\"Sword Art Online\"\" event. However, unlike in \"\"Sword Art Online\"\", Aincrad is one large floor, instead of multiple, while the castle itself was renamed to Ainground, where several monsters can be battled. The main character of the game"} +{"qid": "test1856", "pid": "19387304", "query": "when does the sword art online movie take place", "answer": "2026", "passage": "\"Sword Art Online The Movie: Ordinal Scale\"\nSword Art Online The Movie: Ordinal Scale In the year 2026, the Augma is released to the public as an alternative system to the AmuSphere, due to its function to simulate reality while the player is conscious rather than using FullDive. The most prominent combat-based game is Ordinal Scale, in which a player's abilities are ranked by ordinal numbers. Asuna, Lisbeth and Silica encourage Kirito to play OS upon hearing that Aincrad bosses have appeared. Kirito joins Asuna and Klein in a boss fight where the game's mascot, AI idol singer Yuna, appears and gives players buff effects as she"} +{"qid": "test1856", "pid": "19387318", "query": "when does the sword art online movie take place", "answer": "2026", "passage": "\"Sword Art Online The Movie: Ordinal Scale\"\nwhilst also avoiding nearly all of its most aggravating faults.\"\" Sword Art Online The Movie: Ordinal Scale In the year 2026, the Augma is released to the public as an alternative system to the AmuSphere, due to its function to simulate reality while the player is conscious rather than using FullDive. The most prominent combat-based game is Ordinal Scale, in which a player's abilities are ranked by ordinal numbers. Asuna, Lisbeth and Silica encourage Kirito to play OS upon hearing that Aincrad bosses have appeared. Kirito joins Asuna and Klein in a boss fight where the game's mascot, AI idol"} +{"qid": "test1857", "pid": "1988411", "query": "which approach to psychology focuses on the body especially the brain and nervous system", "answer": "neuropsychology", "passage": "Neuropsychology\nNeuropsychology Neuropsychology is the study of the structure and function of the brain as they relate to specific psychological processes and behaviours. It is both an experimental and clinical field of psychology that aims to understand how behavior and cognition are influenced by brain functioning and is concerned with the diagnosis and treatment of behavioral and cognitive effects of neurological disorders. Whereas classical neurology focuses on the physiology of the nervous system and classical psychology is largely divorced from it, neuropsychology seeks to discover how the brain correlates with the mind. It thus shares concepts and concerns with neuropsychiatry and"} +{"qid": "test1857", "pid": "1988442", "query": "which approach to psychology focuses on the body especially the brain and nervous system", "answer": "neuropsychology", "passage": "Neuropsychology\nfor the task to be completed. Neuropsychology Neuropsychology is the study of the structure and function of the brain as they relate to specific psychological processes and behaviours. It is both an experimental and clinical field of psychology that aims to understand how behavior and cognition are influenced by brain functioning and is concerned with the diagnosis and treatment of behavioral and cognitive effects of neurological disorders. Whereas classical neurology focuses on the physiology of the nervous system and classical psychology is largely divorced from it, neuropsychology seeks to discover how the brain correlates with the mind. It thus shares"} +{"qid": "test1857", "pid": "13259059", "query": "which approach to psychology focuses on the body especially the brain and nervous system", "answer": "neuropsychology", "passage": "\"Basic science (psychology)\"\nbackdrop for clinical work. Psychopathology is a term used in abnormal psychology that suggests an underlying pathology Biological psychology or behavioral neuroscience is the scientific study of the biological bases of behavior and mental processes. Biological psychologists view all behavior as dependent on the nervous system, and study the neural basis for behavior. This is the approach taken in behavioral neuroscience, cognitive neuroscience, and neuropsychology. The goal of neuropsychology is to understand how the structure and function of the brain relate to specific behavioral and psychological processes. Neuropsychology is particularly concerned with brain injury in attempting to understand normal psychological"} +{"qid": "test1857", "pid": "14310137", "query": "which approach to psychology focuses on the body especially the brain and nervous system", "answer": "neuropsychology", "passage": "\"Subfields of psychology\"\nexample through genome-wide association studies. This approach to understanding the genetic influences on behavior have seen recent successes in, for example, schizophrenia. Psychiatric genetics is a subfield of behavioral genetics. Biological psychology is the scientific study of the biological substrates of behavior and mental states. Seeing all behavior as intertwined with the nervous system, biological psychologists feel it is sensible to study how the brain functions in order to understand behavior. This is the approach taken in behavioral neuroscience, cognitive neuroscience, and neuropsychology. Neuropsychology is the branch of psychology that aims to understand how the structure and function of the"} +{"qid": "test1859", "pid": "105398", "query": "how did the dominican republic get its name", "answer": "patron saint, Saint Dominic", "passage": "\"Dominican Republic\"\nof the island, who were subjected to slavery, and to the education of the inhabitants of the island. For most of its history, up until independence, the country was known as —the name of its present capital and patron saint, Saint Dominic—and continued to be commonly known as such in English until the early 20th century. The residents were called \"\"Dominicans\"\" (), which is the adjective form of \"\"Domingo\"\", and the revolutionaries named their newly independent country \"\"Dominican Republic\"\" (). In the national anthem of the Dominican Republic (), the term \"\"Dominicans\"\" does not appear. The author of its lyrics,"} +{"qid": "test186", "pid": "2491214", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi\"\ntranquilizer darts while her cub escapes hiding in a bush. Parker names the cub Thirsty after his enthusiasm when drinking from a nearby river. The paperwork that accompanies the shipment of the two tigers to Pi's family's zoo in Pondicherry states that the cub's name is \"\"Richard Parker\"\" and the hunter's given name is \"\"Thirsty\"\" and his surname is \"\"None Given\"\", due to a mix-up with the names. Pi's father finds the story so amusing that they continue to call the tiger \"\"Richard Parker\"\". Brian Bethune of \"\"Maclean's\"\" describes \"\"Life of Pi\"\" as a \"\"head-scratching combination of dense religious allegory,"} +{"qid": "test186", "pid": "2491213", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi\"\nship sinks in the middle of the Pacific Ocean during a voyage to North America. Richard Parker is a royal Bengal tiger who is stranded on the lifeboat with Pi when the ship sinks. Richard Parker lives on the lifeboat with Pi and is kept alive with the food and water Pi delivers. Richard Parker develops a relationship with Pi that allows them to coexist in their struggle. In the novel, a hunter named Richard Parker is hired to kill a panther thought to have killed seven people within two months. Instead, he accidentally immobilizes a female Bengal tiger with"} +{"qid": "test186", "pid": "15380598", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi (film)\"\nsupports his desire to grow, but his rationalist father tries to secularize him. Pi's family owns a zoo, and Pi takes interest in the animals, especially a Bengal tiger named Richard Parker. After Pi gets dangerously close to Richard Parker, his father forces him to witness the tiger killing a goat. When Pi is 16, his father announces that they must move to Canada, where he intends to settle and sell the animals. The family books passage with the animals on a Japanese freighter. During a storm, the ship founders while Pi is on deck. He tries to find his"} +{"qid": "test186", "pid": "2491193", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi\"\nLife of Pi Life of Pi is a Canadian fantasy adventure novel by Yann Martel published in 2001. The protagonist is Piscine Molitor \"\"Pi\"\" Patel, an Indian boy from Pondicherry who explores issues of spirituality and practicality from an early age. He survives 227 days after a shipwreck while stranded on a lifeboat in the Pacific Ocean with a Bengal tiger named Richard Parker. The novel has sold more than ten million copies worldwide. It was rejected by at least five London publishing houses before being accepted by Knopf Canada, which published it in September 2001. The UK edition won"} +{"qid": "test186", "pid": "2491206", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi\"\nsort of with a capital 'S' – something that would direct my life.\"\" He spoke of being lonely and needing direction in his life, and found that writing the novel met this need. The name of Martel's tiger, Richard Parker, was inspired by a character in Edgar Allan Poe's nautical adventure novel \"\"The Narrative of Arthur Gordon Pym of Nantucket\"\" (1838). In this book, Richard Parker is a mutineer who is stranded and eventually cannibalized on the hull of an overturned ship (and there is a dog aboard who is named Tiger). The author also had in mind another occurrence"} +{"qid": "test186", "pid": "15380600", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi (film)\"\nthe orangutan. Richard Parker emerges from under the tarpaulin, killing the hyena before retreating back to cover for several days. Pi fashions a small tethered raft from flotation vests which he retreats to for safety from Richard Parker. Despite his moral code against killing, he begins fishing, enabling him to sustain the tiger as well. When the tiger jumps into the sea to hunt for fish and then comes threateningly towards Pi, Pi considers letting him drown, but ultimately helps him back into the boat. One night, a humpback whale breaches near the boat, destroying the raft and its supplies."} +{"qid": "test186", "pid": "15380601", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi (film)\"\nPi trains Richard Parker to accept him in the boat, and realizes that caring for the tiger is also helping keep himself alive. Weeks later they encounter a floating island of interconnected trees. It is a lush jungle of edible plants, fresh water pools and a large population of meerkats, enabling Pi and Richard Parker to eat and drink freely and regain strength. At night, the island transforms into a hostile environment. Richard Parker retreats to the lifeboat while Pi and the meerkats sleep in the trees; the water pools turn acidic, digesting the fish in them. Pi deduces that"} +{"qid": "test186", "pid": "2491199", "query": "what is the tigers name in life of pi", "answer": "Richard Parker", "passage": "\"Life of Pi\"\nOrange Juice. A tiger has been hiding under the boat's tarpaulin: it's Richard Parker, who had boarded the lifeboat with ambivalent assistance from Pi himself some time before the hyena attack. Suddenly emerging from his hideaway, Richard Parker kills and eats the hyena. Frightened, Pi constructs a small raft out of rescue flotation devices, tethers it to the bow of the boat and makes it his place of retirement. He begins conditioning Richard Parker to take a submissive role by using food as a positive reinforcer, and seasickness as a punishment mechanism, while using a whistle for signals. Soon, Pi"} +{"qid": "test1860", "pid": "6223401", "query": "when does congress declare war for the first time", "answer": "War of 1812", "passage": "\"Origins of the War of 1812\"\nthe territorial expansion. On the first of June 1812, President James Madison gave a speech to the U.S. Congress, recounting American grievances against Great Britain, though not specifically calling for a declaration of war. After Madison's speech, the House of Representatives quickly voted (79 to 49) to declare war, and the Senate by 19 to 13. The conflict formally began on 18 June 1812 when Madison signed the measure into law. This was the first time that the United States had declared war on another nation, and the Congressional vote would prove to be the closest vote to declare war"} +{"qid": "test1860", "pid": "4231170", "query": "when does congress declare war for the first time", "answer": "War of 1812", "passage": "\"War Powers Clause\"\nWar Powers Clause Article I, Section 8, Clause 11 of the United States Constitution, sometimes referred to as the War Powers Clause, vests in the Congress the power to declare war, in the following wording: A number of wars have been declared under the United States Constitution, although there is some controversy as to the exact number, as the Constitution does not specify the form of such a declaration. Five wars have been declared by Congress under their constitutional power to do so: the War of 1812, the Mexican–American War, the Spanish–American War, World War I, and World War II."} +{"qid": "test1860", "pid": "459302", "query": "when does congress declare war for the first time", "answer": "War of 1812", "passage": "\"War of 1812\"\nlaw and proclaimed it the next day. This was the first time that the United States had declared war on another nation, and the Congressional vote was the closest vote to formally declare war in American history. The Authorization for Use of Military Force Against Iraq Resolution of 1991, while not a formal declaration of war, was a closer vote. None of the 39 Federalists in Congress voted in favour of the war; critics of war subsequently referred to it as \"\"Mr. Madison's War.\"\" Earlier in London on May 11, an assassin had killed Prime Minister Spencer Perceval, which resulted"} +{"qid": "test1860", "pid": "14924915", "query": "when does congress declare war for the first time", "answer": "War of 1812", "passage": "\"Powers of the United States Congress\"\nprocess for going to war, they asked for and received formal war declarations from Congress for the War of 1812, the Mexican–American War, the Spanish–American War, World War I, and World War II, although President Theodore Roosevelt's military move into Panama in 1903 did not get Congressional assent. Presidents have initiated war without Congressional war declarations; Truman called the Korean War a \"\"police action\"\" and the Vietnam War lasted over a decade without a declaration of war. In 1970, Time magazine noted: \"\"All told, it has been calculated, U.S. presidents have ordered troops into position or action without a formal"} +{"qid": "test1863", "pid": "18615865", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Los Angeles Stadium at Hollywood Park\"\nLos Angeles Stadium at Hollywood Park The Los Angeles Stadium at Hollywood Park, or LASED (short for Los Angeles Stadium and Entertainment District), is an open-air stadium and entertainment complex district under construction in Inglewood, California, United States. Formerly the site of Hollywood Park Racetrack, it is approximately from Los Angeles International Airport, and is located immediately south of The Forum. Planned to open in 2020, the stadium will serve as the home to the Los Angeles Rams and Los Angeles Chargers of the National Football League (NFL). It is also scheduled to host Super Bowl LVI in February 2022"} +{"qid": "test1863", "pid": "18798743", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Super Bowl LIII\"\nevent conflicts in 2020 and 2021, were then pitted against Los Angeles Stadium at Hollywood Park in Inglewood, California for Super Bowl LIV and Super Bowl LV hosting rights. Miami eventually won the rights to host Super Bowl LIV, and Los Angeles won the rights to host Super Bowl LV. However, on May 23, 2017, NFL owners opted to award Super Bowl LV to Tampa and give Super Bowl LVI to Los Angeles after it was announced that Los Angeles Stadium at Hollywood Park would open in 2020 due to construction delays. New Orleans would be awarded Super Bowl LVIII."} +{"qid": "test1863", "pid": "10912220", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Sports in Los Angeles\"\nlater date. The Rams play their home games at Los Angeles Memorial Coliseum in Exposition Park until their new stadium, Los Angeles Stadium at Hollywood Park in Inglewood, is completed in 2020. In 2017, the Chargers announced they would be leaving San Diego to rejoin the Rams as the second team. For 2017 through 2019, the Chargers are playing in Carson at the soccer-specific StubHub Center until the new shared stadium is complete. 2017 marked the first time since 1960 that the Rams and Chargers shared the same market and the first time since 1994 that the market had two"} +{"qid": "test1863", "pid": "18615884", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Los Angeles Stadium at Hollywood Park\"\norganizing committee left the stadium out of the bid book as unbuilt stadiums in the bidding process are deductions in the bid evaluations. The United Bid committee stated they would re-evaluate the stadium selection process and re-visit LA Stadium as their main option stadium in the Los Angeles Metro area in June 2020. The American bid to host the World Cup was awarded by FIFA on June 13, 2018. The Hollywood Park stadium is expected to host soccer matches during the 2028 Summer Olympics. Los Angeles organizers had also proposed that the stadium co-host the Games' ceremonies with Los Angeles"} +{"qid": "test1863", "pid": "20955380", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"2019 NFL season\"\nat Hard Rock Stadium in Miami on Fox. This will be the third and final season for the Los Angeles Chargers at ROKiT Field at Dignity Health Sports Park, and this will also be the fourth and final season for the Los Angeles Rams at United Airlines Memorial Coliseum (as each stadium will be known in 2019 under new naming rights deals). Both the Chargers and the Rams will move to Los Angeles Stadium at Hollywood Park in Inglewood, California in 2020. A buyout window in the Buffalo Bills' lease on New Era Field opens after the 2019 season ends."} +{"qid": "test1863", "pid": "15342052", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Del Mar racetrack\"\npresident Joe Harper announced his intention to return to a dirt surface for the 2015 racing season. Harper cited a lack of synthetic surfaces in Southern California as the reason for the switch - Santa Anita Park had experimented with a synthetic surface but then reverted to dirt, while Hollywood Park, which had a synthetic surface, is defunct and being converted to Los Angeles Stadium at Hollywood Park, the future home of the NFL's Los Angeles Rams and Los Angeles Chargers. This facility is expected to open in 2020. The track races from July to September as well as a"} +{"qid": "test1863", "pid": "2815020", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"StubHub Center\"\namong its kind in MLS, after Canadian Toronto FC's BMO Field. In addition to hosting LA Galaxy games since its opening, the stadium also served as the home of the now-defunct Chivas USA MLS team from 2005 to 2014. The StubHub Center became the temporary home of the Los Angeles Chargers beginning in 2017 – making it the smallest NFL stadium – until the completion of the Los Angeles Stadium at Hollywood Park in 2020, which they will then share with the Los Angeles Rams. During the 2018 Los Angeles Chargers season, while the Chargers play in the stadium, the"} +{"qid": "test1863", "pid": "8318980", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"History of the National Football League in Los Angeles\"\ntheir demands were not met. The league's absence from Los Angeles ended in early 2016, when the Rams received league approval to return to the area beginning at the start of the 2016 season. Currently, Los Angeles is the home of the NFL's Los Angeles Rams and Los Angeles Chargers, the last of whom announced their intent to return to Los Angeles from its previous home in San Diego in January 2017. The two teams will share Los Angeles Stadium at Hollywood Park when the stadium opens in Inglewood in 2020. In addition to the NFL, Los Angeles has been"} +{"qid": "test1863", "pid": "19043774", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Los Angeles bid for the 2024 Summer Olympics\"\nCalifornia soccer Stadium and the American Football L.A. Stadium at Hollywood Park are currently under construction with completion dates of 2018 and 2020 respectively. The Los Angeles Memorial Coliseum renovations are scheduled to begin in mid-2017 by USC. The Los Angeles Convention Center (LACOEX) remodel and additions are to begin in 2018. The NBC/IBC proposed center is set to be completed in 2019. All of these proposed venues will be renovated or completed with or without the Olympic Games being awarded. Olympic ceremonies could be held in two venues simultaneously; the ceremony would begin at the Los Angeles Memorial Coliseum"} +{"qid": "test1863", "pid": "10721715", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"2028 Summer Olympics\"\nhave seven years to prepare for the Olympic Games, Los Angeles will see an additional four years, giving the city eleven years for preparations. The Los Angeles bid relied on a majority of existing venues; other venues that are already under construction were planned regardless of the Games. Banc of California Stadium, which opened in 2018 as the home of Major League Soccer's Los Angeles FC, will host football (soccer) and several events in athletics. Los Angeles Stadium at Hollywood Park, home of the NFL's Los Angeles Rams and Los Angeles Chargers upon its completion in 2020, will host the"} +{"qid": "test1863", "pid": "3222650", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"California State University, Dominguez Hills\"\nis online ticket marketplace StubHub. The $150 million complex was developed and is operated by the Anschutz Entertainment Group; with a seating capacity of 27,000, it is the second-largest soccer-specific stadium in MLS, after BMO Field. During its first decade, the stadium's sponsor was hardware retailer The Home Depot. The Los Angeles Chargers of the National Football League will use the stadium from 2017 until the completion of the Los Angeles Stadium at Hollywood Park. The new venue will be shared with the Los Angeles Rams and is scheduled to open in 2020. StubHub Center was also the site of"} +{"qid": "test1863", "pid": "3807477", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Hollywood Park Racetrack\"\nhome of the Los Angeles Rams and the Los Angeles Chargers of the National Football League, when the stadium is completed in 2020. Until then, the Rams temporarily play home games at the Los Angeles Memorial Coliseum and the Chargers play at the StubHub Center. The track was opened on June 10, 1938 by the Hollywood Turf Club the racetrack was designed by noted racetrack architect Arthur Froehlich. Its chairman was Jack L. Warner of the Warner Bros. film studio. Prominent shareholders included Jack Warner's brother and fellow Warner Bros. executive Harry, Hollywood studio executives Walt Disney, Samuel Goldwyn, Darryl"} +{"qid": "test1863", "pid": "19128099", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"2016 Los Angeles Rams season\"\nnamed interim head coach. After receiving permission to void its lease on the Edward Jones Dome in St. Louis during the 2015 season, the team officially filed an application to relocate back to Los Angeles on January 4, 2016, where it would play at the Los Angeles Stadium at Hollywood Park in Inglewood when completed; construction began in December 2015, and the opening is scheduled for 2020. In the interim, the Rams would play seven of their home games at the Los Angeles Memorial Coliseum, and the eighth game at Twickenham Stadium in London as part of the NFL International"} +{"qid": "test1863", "pid": "13518853", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Los Angeles Rams\"\nRams began a season ticket deposit campaign that lasted from January 15 to February 8 which resulted in more than 56,000 season ticket deposits made. The Los Angeles Memorial Coliseum is the temporary home stadium of the Rams for four seasons (2016 to 2019) until the Los Angeles Stadium at Hollywood Park is opened for the 2020 season. On February 4, 2016, the Los Angeles Rams selected Oxnard, California to be the site of their minicamp, offseason team activities, and offseason program that began on April 18. In March, it was announced that the Rams would be featured on HBO's"} +{"qid": "test1863", "pid": "374879", "query": "los angeles stadium at hollywood park opening date", "answer": "2020", "passage": "\"Los Angeles Chargers\"\n1970, and played their home games at SDCCU Stadium. The return of the Chargers to Los Angeles was announced for the 2017 season, just one year after the Rams had moved back to the city from St. Louis. The Chargers will play their home games at the StubHub Center until the opening in 2020 of the Los Angeles Stadium at Hollywood Park, which they will share with the Rams. The Chargers won one AFL title in 1963 and reached the AFL playoffs five times and the AFL Championship four times before joining the NFL () as part of the AFL–NFL"} +{"qid": "test1864", "pid": "2812619", "query": "another name for a hairpin bend crossword clue", "answer": "hairpin bend", "passage": "\"Hairpin turn\"\nHairpin turn A hairpin turn (also hairpin bend, hairpin corner, etc.), named for its resemblance to a hairpin/bobby pin, is a bend in a road with a very acute inner angle, making it necessary for an oncoming vehicle to turn about 180° to continue on the road. Such turns in ramps and trails may be called switchbacks in American English, by analogy with switchback railways. In British English \"\"switchback\"\" is more likely to refer to a heavily undulating road—a use extended from the rollercoaster and the \"\"other\"\" type of switchback railway. Hairpin turns are often built when a route climbs"} +{"qid": "test1864", "pid": "2812622", "query": "another name for a hairpin bend crossword clue", "answer": "hairpin bend", "passage": "\"Hairpin turn\"\nalpine skiing. A hairpin consists of two consecutive vertical or \"\"closed gates\"\" which must be negotiated very quickly. (Three or more consecutive closed gates are known as a flush.) Hairpin turn A hairpin turn (also hairpin bend, hairpin corner, etc.), named for its resemblance to a hairpin/bobby pin, is a bend in a road with a very acute inner angle, making it necessary for an oncoming vehicle to turn about 180° to continue on the road. Such turns in ramps and trails may be called switchbacks in American English, by analogy with switchback railways. In British English \"\"switchback\"\" is more"} +{"qid": "test1865", "pid": "5218835", "query": "when did the nba start playing zone defense", "answer": "2002", "passage": "\"Zone defense\"\nand one defender guards a specific player on the offense. A variant of this is triangle-and-two, in which three defenders are in a 2–1 zone and two defenders guard two specific offensive players. Zone defenses are common in international, college, and youth competition. In the National Basketball Association, zone defenses were prohibited until the 2001–2002 season, and most teams do not use them as a primary defensive strategy. The NBA has a defensive three-second violation rule, which makes it more difficult for teams to play zone, since such defenses usually position a player in the middle of the key to"} +{"qid": "test1866", "pid": "11036924", "query": "what is the rank of india in economic growth", "answer": "12", "passage": "\"Economic development in India\"\nreforms, it could sustain the rate and even reach the government's 2011 target of 10%. States have large responsibilities over their economies. The average annual growth rates (2007-12) for Gujarat (13.86%), Uttarakhand (13.66%), Bihar (10.15%) or Jharkhand (9.85%) were higher than for West Bengal (6.24%), Maharashtra (7.84%), Odisha (7.05%), Punjab (6.85%) or Assam (5.88%). India is the sixth-largest economy in the world and the third largest by purchasing power parity adjusted exchange rates (PPP). On per capita basis, it ranks 140th in the world or 129th by PPP. The economic growth has been driven by the expansion of the services"} +{"qid": "test1866", "pid": "4552285", "query": "what is the rank of india in economic growth", "answer": "12", "passage": "\"Economy of India\"\nEconomy of India The economy of India is a developing mixed economy. It is the world's sixth-largest economy by nominal GDP and the third-largest by purchasing power parity (PPP). The country ranks 139th in per capita GDP (nominal) with $2,134 and 122nd in per capita GDP (PPP) with $7,783 . After the 1991 economic liberalisation, India achieved 6-7% average GDP growth annually. Since 2014 with the exception of 2017, India's economy has been the world's fastest growing major economy, surpassing China. The long-term growth prospective of the Indian economy is positive due to its young population, corresponding low dependency ratio,"} +{"qid": "test1866", "pid": "12880115", "query": "what is the rank of india in economic growth", "answer": "12", "passage": "\"Economic liberalisation in India\"\nWorld Bank to continue liberalisation. Before 2015, India grew at a slower pace than China, which had been liberalising its economy since 1978. In 2015, India's GDP growth outpaced that of China. \"\"The McKinsey Quarterly\"\" stated that removing major obstacles \"\"would free India's economy to grow as fast as China's, at 10% a year\"\". There has been significant debate, however, around liberalisation as an inclusive economic growth strategy. Income inequality has deepened in India since 1992, with consumption among the poorest staying stable while the wealthiest generate consumption growth. India's gross domestic product (GDP) growth rate in 2012–13 was the"} +{"qid": "test1866", "pid": "4171257", "query": "what is the rank of india in economic growth", "answer": "12", "passage": "\"Economy of Asia\"\nstates that removing main obstacles \"\"would free India's economy to grow at 10% a year\"\". There has been significant debate, however, around liberalisation as an inclusive economic growth strategy. Since 1992, income inequality has deepened in India with consumption among the poorest staying stable while the wealthiest generate consumption growth. As India's gross domestic product (GDP) growth rate became lowest in 2012–13 over a decade, growing merely at 5.1%,[6] more criticism of India's economic reforms surfaced, as it apparently failed to address employment growth, nutritional values in terms of food intake in calories, and also exports growth – and thereby"} +{"qid": "test1867", "pid": "6817192", "query": "when did gimme gimme gimme start", "answer": "1999", "passage": "\"Gimme! Gimme! Gimme! (A Man After Midnight)\"\nWhen the single came out in the winter of 1999 in Sweden, it earned a Gold certification. It also became their third top ten hit there and the band's third top 40 hit in Germany. The song peaked at no. 51 in Switzerland, no. 27 in the Netherlands, no. 20 in Mexico, and no. 22 in Argentina and Chile. \"\"Gimme! Gimme! Gimme! (A Man After Midnight)\"\" was recorded in Spanish for the Latin American promotion that started in early 2000. The music video was directed by Sebastian Reed, and it was filmed in Sweden. The video starts with the boys"} +{"qid": "test1867", "pid": "3825355", "query": "when did gimme gimme gimme start", "answer": "1999", "passage": "\"Gimme Gimme Gimme (TV series)\"\nGimme Gimme Gimme (TV series) Gimme Gimme Gimme is a BBC television sitcom by Tiger Aspect Productions that was first aired in three series from 1999 to 2001. It was written by Jonathan Harvey, who developed the series with Kathy Burke. The title from the show stems from both the main characters' continual search for a male partner, and the theme music is a cover of ABBA's \"\"Gimme! Gimme! Gimme! (A Man After Midnight)\"\". The first two series were originally shown on BBC Two and were deemed successful enough for the third series to be shown on BBC One. The"} +{"qid": "test1867", "pid": "3825372", "query": "when did gimme gimme gimme start", "answer": "1999", "passage": "\"Gimme Gimme Gimme (TV series)\"\nfor the first two series and the special; the third series was directed by Tristram Shapeero. Gimme Gimme Gimme (TV series) Gimme Gimme Gimme is a BBC television sitcom by Tiger Aspect Productions that was first aired in three series from 1999 to 2001. It was written by Jonathan Harvey, who developed the series with Kathy Burke. The title from the show stems from both the main characters' continual search for a male partner, and the theme music is a cover of ABBA's \"\"Gimme! Gimme! Gimme! (A Man After Midnight)\"\". The first two series were originally shown on BBC Two"} +{"qid": "test1869", "pid": "5423099", "query": "who sang the songs in the movie beyond the sea", "answer": "Kevin Spacey", "passage": "\"Beyond the Sea (song)\"\nfilms, TV shows, and video games, including: Kevin Spacey sang the song in the movie \"\"Beyond the Sea\"\", a biopic about Bobby Darin, in a \"\"fantasy\"\" sequence leading up to his marriage to Sandra Dee. Robbie Williams sang a version in the closing credits of \"\"Finding Nemo\"\". \"\"Beyond the Sea\"\" is the third episode of \"\"Generator Rex\"\", the tile character meets a pretty E.V.O. girl called Circe and the two soon forge a connection. This song is used in the trailer for the 2018 film \"\"The Meg\"\". Beyond the Sea (song) \"\"Beyond the Sea\"\" is a 1945 contemporary pop romantic"} +{"qid": "test1870", "pid": "20183167", "query": "where's the tv show the crossing filmed", "answer": "British Columbia, Canada", "passage": "\"The Crossing (TV series)\"\nThe Crossing (TV series) The Crossing is an American science fiction thriller series that aired on ABC. The series debuted on April 2, 2018, and aired its final episode on June 9, 2018 On March 19, 2018, ABC released the pilot episode on their website. The series was filmed in British Columbia, Canada. On May 11, 2018, ABC cancelled the show after one season. Refugees fleeing a war seek asylum in an American town—but they claim to be from America, 180 years in the future. Moreover, at least one of the refugees exhibits apparently superhuman powers that may make her"} +{"qid": "test1871", "pid": "13051893", "query": "who scored the most goals in premier league season", "answer": "Chelsea", "passage": "\"2009–10 Chelsea F.C. season\"\nfootball that was displayed, which resulted in the team breaking several Premier League records and statistics including most goals scored in a season (103), most goals scored at home in a season (68) and best goal difference in a season (+71). Chelsea won the FA Cup and the English Premier League to complete the Double for the first time in their history, while breaking numerous Premier League records in the number of goals they managed. Supplier: Adidas / Sponsor: Samsung The kit was first worn against Blackburn Rovers in the second-to-last Premier League game of the 2008–09 season. The away"} +{"qid": "test1871", "pid": "142733", "query": "who scored the most goals in premier league season", "answer": "Alan Shearer", "passage": "\"Premier League\"\nhis fourth overall scoring title by scoring 27 goals in the 2005–06 season. Andrew Cole and Alan Shearer hold the record for most goals in a season (34) – for Newcastle and Blackburn respectively. Ryan Giggs of Manchester United holds the record for scoring goals in consecutive seasons, having scored in the first 21 seasons of the league. The Premier League maintains two trophies – the genuine trophy (held by the reigning champions) and a spare replica. Two trophies are held in the event that two clubs could win the League on the final day of the season. In the"} +{"qid": "test1871", "pid": "4048552", "query": "who scored the most goals in premier league season", "answer": "Alan Shearer", "passage": "\"1992–93 FA Premier League\"\nUnited. The top goalscorer in the Premier League's inaugural season was Teddy Sheringham, who scored one goal for Nottingham Forest before his early-season transfer followed by 21 for Tottenham Hotspur for a total of 22. Alan Shearer had scored 16 goals by Christmas before suffering a season-ending injury. 1992–93 FA Premier League The 1992–93 FA Premier League was the inaugural season of the Premier League, the top division of English football. The season began on 15 August 1992 and ended on 11 May 1993. The league was made up of the 22 clubs that broke away from The Football League"} +{"qid": "test1871", "pid": "681111", "query": "who scored the most goals in premier league season", "answer": "Alan Shearer", "passage": "\"Newcastle United F.C.\"\nLeague table and have the ninth-highest total of major honours won by an English club with 11 wins. The holder of the record for the most appearances is Jimmy Lawrence, having made 496 first team appearances between 1904 and 1921. The club's top goal scorer is Alan Shearer, who scored 206 goals in all competitions between 1996 and 2006. Andy Cole holds the record for the most goals scored in a season: 41 in the 1993–94 season in the Premier League. Shay Given is the most capped international for the club, with 134 appearances for Republic of Ireland. The club's"} +{"qid": "test1871", "pid": "6662936", "query": "who scored the most goals in premier league season", "answer": "Alan Shearer", "passage": "\"Sergio Agüero\"\nseasons in the division. Three days later, he scored his 100th Premier League goal in a 1–1 draw at Newcastle. He reached the century in 147 games, second only to Alan Shearer who did so in 124. The goal was also Agüero's sixth against Newcastle for the season, making his just the sixth player in the Premier League era to have scored six goals against the same club in a single campaign. Agüero ended the 2015–16 Premier League season with 24 goals, one behind Golden Boot winner Harry Kane and level with Jamie Vardy. However, with his goals coming from"} +{"qid": "test1871", "pid": "14552433", "query": "who scored the most goals in premier league season", "answer": "Andy Cole", "passage": "\"Premier League Golden Boot\"\nPremier League Golden Boot, with Henry achieving this on two occasions (2004 and 2005). Shearer, Hasselbaink and Van Persie are the only players to win the Golden Boot with two clubs. Andy Cole and Shearer – with 34 goals in 1993–94 and 1994–95, respectively – scored the most goals to win the Golden Boot when the Premier League was a 42-game season, Mohamed Salah with 32 goals in 2017–18 holds the record for the current 38-game season, while Nicolas Anelka scored the fewest to clinch the award outright, with 19 goals in 2008–09. The all-time record for lowest number of"} +{"qid": "test1872", "pid": "12898323", "query": "the first significant restriction on free immigration in u.s. history was the", "answer": "Naturalization Act of 1790", "passage": "\"History of Japanese Americans\"\nended 40 years of bans against immigration from Japan and other countries. The Naturalization Act of 1790 restricted naturalized U.S. citizenship to \"\"free white persons,\"\" and an 1870 amendment extended the right to African Americans, but the Issei and other Asian immigrants were excluded from citizenship. As a result, the Issei were unable to vote, and faced additional restrictions such as the inability to own land under many state laws. These laws would remain in effect until 1952, when the Supreme Court ruled alien land laws unconstitutional and the Walter-McCarran Act removed race-based requirements for naturalization. Like most of the"} +{"qid": "test1872", "pid": "11324252", "query": "the first significant restriction on free immigration in u.s. history was the", "answer": "Chinese Exclusion Act in 1882", "passage": "\"History of laws concerning immigration and naturalization in the United States\"\nthe United States. There were also significant restrictions on some Asians at the state level; in California, for example, non-citizen Asians were not allowed to own land. After the immigration of 123,000 Chinese in the 1870s, who joined the 105,000 who had immigrated between 1850 and 1870, Congress passed the Chinese Exclusion Act in 1882 which targeted a single ethnic group by specifically limiting further Chinese immigration. Chinese had immigrated to the Western United States as a result of unsettled conditions in China, the availability of jobs working on railroads, and the Gold Rush that was going on at that"} +{"qid": "test1873", "pid": "17399571", "query": "when did the granite mountain hotshots get certified", "answer": "2008", "passage": "\"Prescott Fire Department\"\nwater system was installed and the Prescott Volunteer Fire Department was started with a single hose company using a two-wheeled cart hand drawn with of hose. In 1954 the then four separate volunteer companies were merged into one and named Prescott Fire Department. The Granite Mountain Hotshots were a group within the department whose mission was to fight wildfires. Founded in 2002 as a fuels mitigation crew, it transitioned to a handcrew (Type 2 I/A) in 2004, and ultimately to a hotshot crew in 2008. The crew had their own fire station, station 7, where equipment, including two 10-person crew"} +{"qid": "test1874", "pid": "4853726", "query": "who played the creature on jeepers creepers 3", "answer": "Jonathan Breck", "passage": "\"Jeepers Creepers (2001 film)\"\nagain October 4, and it was announced that it would air on the SyFy channel on October 28, with a Blu-ray/digital release on December 28, 2017. Jeepers Creepers (2001 film) Jeepers Creepers is a 2001 American-German horror film written and directed by Victor Salva. The film takes its name from the 1938 song \"\"Jeepers Creepers\"\", which is featured in the film. Francis Ford Coppola executive produced, and the film stars Gina Philips, Justin Long, Jonathan Breck, and Eileen Brennan. Philips and Long play two older siblings who become the targets of a demonic creature (Breck) in rural Florida. Trish Jenner"} +{"qid": "test1874", "pid": "4853714", "query": "who played the creature on jeepers creepers 3", "answer": "Jonathan Breck", "passage": "\"Jeepers Creepers (2001 film)\"\nJeepers Creepers (2001 film) Jeepers Creepers is a 2001 American-German horror film written and directed by Victor Salva. The film takes its name from the 1938 song \"\"Jeepers Creepers\"\", which is featured in the film. Francis Ford Coppola executive produced, and the film stars Gina Philips, Justin Long, Jonathan Breck, and Eileen Brennan. Philips and Long play two older siblings who become the targets of a demonic creature (Breck) in rural Florida. Trish Jenner (Philips) and her brother Darry (Long) are traveling home from college for spring break. As they drive through the Florida countryside, an old rusty truck (a"} +{"qid": "test1874", "pid": "13443858", "query": "who played the creature on jeepers creepers 3", "answer": "Jonathan Breck", "passage": "\"Jeepers Creepers 3\"\nJeepers Creepers 3 Jeepers Creepers 3 is a 2017 American horror film written and directed by Victor Salva and the third \"\"Jeepers Creepers\"\" film, taking place in between \"\"Jeepers Creepers\"\" and \"\"Jeepers Creepers 2.\"\" Jonathan Breck reprises his role as the Creeper. Gina Philips returns in a cameo as Trish Jenner, her first return to the series since the original film. The film was shown in theaters on September 26, 2017 in what was originally announced as a one-night-only showing and was then shown again on October 4, 2017. A shuriken flies through the air and hits a wooden post"} +{"qid": "test1874", "pid": "4853725", "query": "who played the creature on jeepers creepers 3", "answer": "Jonathan Breck", "passage": "\"Jeepers Creepers (2001 film)\"\nMcCoy\"\" AKA \"\"Roach\"\" who is a car thief and regular in the Poho County jail. In the second film, he portrays \"\"Coach Dwayne Barnes\"\". On September 11, 2015, \"\"Jeepers Creepers 3\"\" was officially greenlit, with a planned 2017 release. Victor Salva returns as director, Jonathan Breck returns as The Creeper, and Gina Philips returns as Trish Jenner, her first screen role in five years. Production was halted in 2016 until it resumed in February 2017, and completed in April. The film opened for what was said would be only a one-night showing on September 26, 2017; it was then shown"} +{"qid": "test1876", "pid": "12785591", "query": "who played zoe hart on hart of dixie", "answer": "Rachel Sarah Bilson", "passage": "\"Rachel Bilson\"\nRachel Bilson Rachel Sarah Bilson (born August 25, 1981) is an American actress. Born to a California show business family, Bilson made her television debut in 2003, and then landed the role of Summer Roberts on the prime-time drama series \"\"The O.C.\"\" Bilson made her movie debut in \"\"The Last Kiss\"\" (2006) and starred in the science-fiction-action film \"\"Jumper\"\" (2008). From 2011 to 2015, she starred as Dr. Zoe Hart on The CW series \"\"Hart of Dixie\"\". Bilson was born in Los Angeles, the daughter of Janice Stango, a sex therapist, and Danny Bilson, a writer, director, and producer. She"} +{"qid": "test1876", "pid": "12785602", "query": "who played zoe hart on hart of dixie", "answer": "Rachel Sarah Bilson", "passage": "\"Rachel Bilson\"\nparental consent. Bilson and Christensen separated in September 2017. Rachel Bilson Rachel Sarah Bilson (born August 25, 1981) is an American actress. Born to a California show business family, Bilson made her television debut in 2003, and then landed the role of Summer Roberts on the prime-time drama series \"\"The O.C.\"\" Bilson made her movie debut in \"\"The Last Kiss\"\" (2006) and starred in the science-fiction-action film \"\"Jumper\"\" (2008). From 2011 to 2015, she starred as Dr. Zoe Hart on The CW series \"\"Hart of Dixie\"\". Bilson was born in Los Angeles, the daughter of Janice Stango, a sex therapist,"} +{"qid": "test1877", "pid": "10719775", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"First white child\"\nMartín de Argüelles, Jr., born in the Spanish colony of St. Augustine, Florida, was the first white child known to be born in what is now the continental United States. Born in 1566, his father was a hidalgo and one of the expeditioners who went to New Spain with Captain General Pedro Menéndez de Avilés in 1565. St. Augustine, Florida, is also the oldest continuously occupied European-founded city anywhere in the United States excluding Puerto Rico. Virginia Dare, born in 1587 at the Roanoke Colony, was the first child born in North America to English parents, and her memory was"} +{"qid": "test1877", "pid": "12138082", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"English diaspora\"\nplayed a major part in Paraguay's continual existence, because the British Empire had invested heavily throughout South America, including Paraguay. English Immigration began in the 1500s. Sir Walter Raleigh led expeditions to North America in order to found new settlements and find gold and named Virginia in honor of Elizabeth, the Virgin Queen. In 1585 Sir Walter Raleigh sent several shiploads of colonists to the 'New World', who settled on Roanoke Island. It was here that Eleanor White Dare gave birth to a daughter, Virginia Dare, the first child born of English parents in America. The first immigrants mysteriously disappeared"} +{"qid": "test1877", "pid": "8262068", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Inner Banks\"\nfirst in North America to be settled by English and related northern Europeans. Virginia Dare was born on nearby Roanoke Island in 1587, in what is today part of North Carolina. She is recorded as the first English child born in North America. The Roanoke colony did not survive. From the 17th century through the antebellum era, the cash crops were tobacco and cotton, both of which were labor-intensive in cultivation and processing. Major planters imported thousands of enslaved Africans for their work force through 1808, when the Atlantic trade was prohibited by Congress. They and their descendants were integral"} +{"qid": "test1877", "pid": "2650312", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"History of women in the United States\"\nfirst English people to arrive in America were the members of the Roanoke Colony who came to North Carolina in July 1587, with 17 women, 91 men, and 9 boys as the founding colonists. On August 18, 1587, Virginia Dare was born; she was the first English child born in the territory of the United States. Her mother was Eleanor Dare, the daughter of John White, governor of the Roanoke colony. It is not known what happened to the members of the Roanoke colony; however, it is likely that they were attacked by Native Americans, and those not killed were"} +{"qid": "test1877", "pid": "2316289", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"St Bride's Church\"\nby law. In the late 1580s, one Eleanor White, daughter to artist and explorer John White, was married in St Bride's, to the tiler and bricklayer Ananias Dare. Their daughter Virginia Dare was to be the first English child born in North America. She was born on Roanoke Island on 18 August 1587: \"\"Elenora, daughter to the governour and wife to Ananias Dare, one of the assistants, was delivered of a daughter in Roanoke\"\". The child was healthy and \"\"was christened there the Sunday following, and because this childe was the first Christian borne in Virginia, she was named Virginia\"\"."} +{"qid": "test1877", "pid": "924234", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Dare County, North Carolina\"\nis located on the Manteo waterfront. It serves as exhibit space for the N.C. Maritime Museum on Roanoke Island. Dare County Regional Airport, a general aviation airport, is located in Dare County. Public education is run by Dare County Schools: Dare County, North Carolina Dare County is the easternmost county in the U.S. state of North Carolina. As of the 2010 Census, the population was 33,920. Its county seat is Manteo. The county is named after Virginia Dare, the first child born in the Americas to English parents, who was born in what is now Dare County. Dare County is"} +{"qid": "test1877", "pid": "924226", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Dare County, North Carolina\"\nDare County, North Carolina Dare County is the easternmost county in the U.S. state of North Carolina. As of the 2010 Census, the population was 33,920. Its county seat is Manteo. The county is named after Virginia Dare, the first child born in the Americas to English parents, who was born in what is now Dare County. Dare County is included in the Kill Devil Hills, NC Micropolitan Statistical Area, which is also included in the Virginia Beach-Norfolk, VA-NC Combined Statistical Area. At one time, the now-abandoned town of Buffalo City was the largest community in the county. Because it"} +{"qid": "test1877", "pid": "293621", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"North Carolina\"\nI granted a charter to Sir Walter Raleigh, for whom the state capital is named, for land in present-day North Carolina (then part of the territory of Virginia). It was the second American territory which the English attempted to colonize. Raleigh established two colonies on the coast in the late 1580s, but both failed. The fate of the \"\"Lost Colony\"\" of Roanoke Island remains one of the most widely debated mysteries of American history. Virginia Dare, the first English child to be born in North America, was born on Roanoke Island on August 18, 1587; Dare County is named for"} +{"qid": "test1877", "pid": "5686116", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Ananias Dare\"\nAnanias Dare Ananias Dare (c. 1560 – 1587, \"\"legal death\"\") was a colonist of the Roanoke Colony of 1587. He was the husband of Eleanor White, whom he married at St Bride's Church in London, and the father of Virginia Dare, the first English child born in America. Dare died on June 27, 1587 and his death is still unknown. He was the father of Virginia Dare, whose birth on August 18, 1587, was the first recorded to English parents on the continent of North America. Dare was a London tiler and bricklayer. Very little else is known of Dare"} +{"qid": "test1877", "pid": "1970810", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Colonial history of the United States\"\nFlorida's Atlantic coast (1564–65), Saint Croix Island, Maine (1604-05), and Fort Saint Louis, Texas (1685–89). The most notable English failures were the \"\"Lost Colony of Roanoke\"\" (1587–90) in North Carolina and Popham Colony in Maine (1607–08). It was at the Roanoke Colony that Virginia Dare became the first English child born in the Americas; her fate is unknown. Starting in the 15th century, Spain built a colonial empire in the Americas consisting of New Spain and other vice-royalties. New Spain included territories in Florida, Alabama, Mississippi, much of the United States west of the Mississippi River, parts of Latin America"} +{"qid": "test1877", "pid": "18844319", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Dare Stones\"\nto the colonists. They are mainly supposed to have been written by Eleanor White Dare, who was the daughter of John White and the mother of Virginia Dare, the first child of English descent to be born in North America. L.E. Hammond, a Californian tourist, claimed in 1937 to have found a stone inscribed by Eleanor Dare. He took it to Emory University, Atlanta, where it was examined by Dr Haywood Jefferson Pearce, Jr., professor of American history. It stated on one side that Eleanor's husband and daughter were dead, and asked the finder to communicate this to her father:"} +{"qid": "test1877", "pid": "9129340", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"Eleanor Dare\"\nEleanor Dare Eleanor Dare (née White; c.1568 – after August 18, 1587) of Westminster, London, England, was a member of the Roanoke Colony and the daughter of John White, the colony's governor. While little is known about her life, more is known about her than most of the sixteen other women who left England in 1587 as part of the Roanoke expedition. She married Ananias Dare, a London tiler and bricklayer. It is known that she gave birth to Virginia Dare, the first child of English parents born in North America, on August 18, 1587, shortly after their arrival, and"} +{"qid": "test1877", "pid": "2650321", "query": "who was the first english child born in north america", "answer": "Virginia Dare", "passage": "\"History of women in the United States\"\nsexuality as metaphors for national, religious, and racial differences. Jamestown, the first English settlement in America, was established in 1607 in what is now Virginia. The first women to arrive in Jamestown, (known in the ship's manifest as) Mistress Forrest, wife of Thomas Forrest, Esq and her fourteen-year-old maid, Anne Burras, arrived in late 1608. In December 1608 Anne Burras married a carpenter and laborer named John Laydon in the first wedding ceremony held in Jamestown, and in 1609 they had a child named Virginia Laydon (not to be confused with Virginia Dare), who was the first child born in"} +{"qid": "test1878", "pid": "2014356", "query": "when did the word of wisdom become mandatory", "answer": "February 1834", "passage": "\"Word of Wisdom\"\nabiding by the recommendations and prohibitions of the Word of Wisdom was not considered mandatory: it explicitly declares itself to be \"\"not by commandment or constraint\"\". In February 1834, however, Joseph Smith proposed a resolution before the high council of the church that stated, \"\"No official member in this Church is worthy to hold an office after having the word of wisdom properly taught him; and he, the official member, neglecting to comply with and obey it.\"\" This resolution was accepted unanimously by the council. In 1842, Smith's brother Hyrum, who was the Assistant President of the Church and its"} +{"qid": "test1879", "pid": "525407", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "\"Mount Everest\"\nMount Everest Mount Everest, known in Nepali as Sagarmatha () and in Tibetan as Chomolungma (), is Earth's highest mountain above sea level, located in the Mahalangur Himal sub-range of the Himalayas. The international border between Nepal (Province No. 1) and China (Tibet Autonomous Region) runs across its summit point. The current official elevation of , recognized by China and Nepal, was established by a 1955 Indian survey and subsequently confirmed by a Chinese survey in 1975. In 2005, China remeasured the rock height of the mountain, with a result of 8844.43 m. There followed an argument between China and"} +{"qid": "test1879", "pid": "525577", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "\"Mount Everest\"\nto climbers on those routes but also to the base camps. Mount Everest Mount Everest, known in Nepali as Sagarmatha () and in Tibetan as Chomolungma (), is Earth's highest mountain above sea level, located in the Mahalangur Himal sub-range of the Himalayas. The international border between Nepal (Province No. 1) and China (Tibet Autonomous Region) runs across its summit point. The current official elevation of , recognized by China and Nepal, was established by a 1955 Indian survey and subsequently confirmed by a Chinese survey in 1975. In 2005, China remeasured the rock height of the mountain, with a"} +{"qid": "test1879", "pid": "8370866", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "\"Elaine Hamilton-O'Neal\"\nin Italy for seven more years. After exhibiting in Rome, Milan, and at the Venice Bienniale, she found herself drawn to the Himalayas. The Himalayas are a mountain range in Asia, separating the Indian subcontinent from the Tibetan Plateau. By extension, it is also the name of a massive mountain system that includes the Karakoram, the Hindu Kush, and smaller ranges that extend out from the Pamir Knot. Together, the Himalayan mountain system is home to the world's highest peaks, which include Mount Everest and K2, which is part of the Karakoram Range. The mountains have profoundly shaped the cultures"} +{"qid": "test1879", "pid": "277584", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "Mountaineering\nElias Mountains. There has been a long tradition of climbers going on expeditions to the Greater Ranges, a term generally used for the Andes (e.g. the Cordillera Blanca in Peru) and the high peaks of Asia including the Himalayas (e.g. the Mount Everest of Nepal/Tibet/ India), Karakoram, Hindu Kush, Pamir Mountains, Tien Shan and Kunlun Mountains. In the past this was often on exploratory trips or to make first ascents. With the advent of cheaper, long-haul air travel, mountaineering holidays in the Greater Ranges are now undertaken much more frequently and ascents of even Everest and Vinson Massif (the highest"} +{"qid": "test1879", "pid": "1706993", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "Chough\nthat mountain range it reaches in the summer, and has been recorded at altitude on Mount Everest. The Alpine chough breeds above in Europe, in Morocco, and in the Himalayas. It has nested at , higher than any other bird species, and it has been observed following mountaineers ascending Mount Everest at an altitude of . Where the two species occur in the same mountains, the Alpine species tends to breed at a higher elevation than its relative, since it is better adapted for a diet at high altitudes. The choughs are medium-sized corvids; the red-billed chough is 39–40 centimetres"} +{"qid": "test1879", "pid": "8703322", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "\"Singalila Ridge\"\nSingalila Ridge The Singalila Ridge is a north-south mountain ridge running from northwestern West Bengal through Sikkim in the Indian part of the Himalayas. The district of Ilam in Nepal falls on the western part of this ridge. The ridge separates mountain ranges of West Bengal from other Himalayan ranges to its west. The two highest peaks of West Bengal, Sandakphu () and Phalut () are located on the ridge. The Singalila National Park encompasses the ridge. It is noted for its views of Kanchenjunga and Mount Everest. The trek from Manebhanjan to Sandakphu and Phalut is popular amongst adventure"} +{"qid": "test1879", "pid": "19068991", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "\"South Summit (Mount Everest)\"\nSouth Summit (Mount Everest) The South Summit of Mount Everest in the Himalayas is the second-highest peak on Earth, and is a subsidiary peak to the primary peak of Mount Everest. Although its elevation above sea level of is higher than the second-highest mountain on Earth, K2 (whose summit is above sea level), it is only considered a separate peak and not a separate mountain as its prominence is only 11 meters. The peak is a dome-shaped peak of snow and ice, and is connected to the summit of Mount Everest by the Cornice Traverse and Hillary Step. It was"} +{"qid": "test1879", "pid": "20114810", "query": "mount everest is part of what mountain range", "answer": "Himalayas", "passage": "\"Khiji Tholedemba\"\nKhiji Tholedemba Khiji Tholedemba () (3440m) is the highest and the most attractive hill located in western Okhaldhunga district of Nepal. Khiji Tholedemba is located in Khiji Chandeshwori near Khijiphalate and Khijikati in Okhaldhunga district and rest of the hills are located in Dolakha, Ramechhap and Solukhumbu. From Phulchowk (Lalitpur), these hills were used for survey of Mount Everest in the past. The panoramic view of Gaura Parvat, Gaurishankar, Himalayas, Numbur mountain range to Mount Everest can be viewed form Khiji Toledemba. High mountain view, Flora, diverse culture of ethnic groups Sunuwar, Sherpa, Bhuje, Chetri and other minorities are the"} +{"qid": "test1881", "pid": "18459549", "query": "who is the president of the republic of zambia", "answer": "Edgar Lungu", "passage": "\"Miles Sampa\"\nMiles Sampa Miles Sampa is a Zambian politician and a former Member of Parliament for Matero Constituency.He was elected Mayor of Lusaka in August 2018. After the death of the Fifth President of the Republic of Zambia, Michael Chilufya Sata, Sampa's uncle, Sampa was elected as President of the party at a controversial Patriotic Front general conference. His election was later deemed illegal by the courts of law. Edgar Lungu, who would later become President, was declared the rightful PF president. Sampa was later appointed as commerce deputy Minister in Edgar Lungu's government. He resigned and left PF shortly before"} +{"qid": "test1881", "pid": "18517162", "query": "who is the president of the republic of zambia", "answer": "Edgar Lungu", "passage": "\"Kenya–Zambia relations\"\nKenya–Zambia relations Kenya–Zambia relations are bilateral relations between Kenya and Zambia. Zambia is a partner of Kenya in many areas particularly trade, energy and agriculture. Kenya and Zambia have generally enjoyed warm relations. They cooperate in areas such as agriculture, tourism, information and communication and education. They have also signed an MOU on science, technology and innovation. The first Joint Permanent Commission for Cooperation that was signed by the presidents of the two countries on 8 September 1982. President Uhuru Kenyatta visited Zambia in July 2015 on the invitation of President Edgar Lungu of Zambia. Zambia has on numerous occasions"} +{"qid": "test1882", "pid": "9354069", "query": "where was the salvation army's christmas collection kettle first introduced", "answer": "San Francisco", "passage": "\"Christmas Kettle\"\nChristmas Kettle The Christmas Kettle (also referred to as the Red Kettle due to its color) is The Salvation Army's most famous street campaign. It is most recognized during the Christmas season through its volunteers who stand outside of businesses and play or sing Christmas carols, or ring bells to inspire passersby to place donations of cash and checks inside the trademark red kettles. A tradition on the \"\"kettle\"\" started in 1891, in San Francisco, by Salvation Army officer Captain Joseph McFee. Captain McFee, resolving to provide a free Christmas dinner to the poor of San Francisco, remembered a sight"} +{"qid": "test1882", "pid": "896187", "query": "where was the salvation army's christmas collection kettle first introduced", "answer": "San Francisco", "passage": "\"The Salvation Army\"\nof saloons and public houses. The Salvation Army's reputation in the United States improved as a result of its disaster relief efforts following the Galveston Hurricane of 1900 and the 1906 San Francisco earthquake. The familiar use of bell ringers to solicit donations from passers-by \"\"helps complete the American portrait of Christmas.\"\" In the U.S. alone, over 25,000 volunteers with red kettles are stationed near retail stores during the weeks preceding Christmas for fundraising. The church remains a highly visible and sometimes controversial presence in many parts of the world. In 1994, the \"\"Chronicle of Philanthropy\"\", an industry publication, released"} +{"qid": "test1882", "pid": "9354070", "query": "where was the salvation army's christmas collection kettle first introduced", "answer": "San Francisco", "passage": "\"Christmas Kettle\"\nhe saw in Liverpool, England. From his days as a sailor McFee remembered a large pot displayed on the Stage Landing, called \"\"Simpson's Pot.\"\" The pot took in donations put in by passersby. Taking this idea, McFee asked for permission from San Francisco city authorities to place a crab pot and tripod at the Oakland ferry landing. The kettle - and McFee's call of \"\"Keep the Pot Boiling!\"\" - drew in passengers and donations. The idea spread, and is in use by many Salvation Army charities worldwide. Innovations from the crab pot have included self ringing kettles, booths that play"} +{"qid": "test1883", "pid": "15351807", "query": "what type of energy do satellites generally use to communicate with earth", "answer": "electromagnetic waves", "passage": "\"Non-ionizing radiation\"\nradio and satellite communications. Radio waves are a type of electromagnetic radiation with wavelengths in the electromagnetic spectrum longer than infrared light. Like all other electromagnetic waves, they travel at the speed of light. Naturally occurring radio waves are made by lightning, or by astronomical objects. Artificially generated radio waves are used for fixed and mobile radio communication, broadcasting, radar and other navigation systems, satellite communication, computer networks and innumerable other applications. Different frequencies of radio waves have different propagation characteristics in the Earth's atmosphere; long waves may cover a part of the Earth very consistently, shorter waves can reflect"} +{"qid": "test1883", "pid": "556251", "query": "what type of energy do satellites generally use to communicate with earth", "answer": "electromagnetic waves", "passage": "\"Communications satellite\"\nCommunications satellite A communications satellite is an artificial satellite that relays and amplifies radio telecommunications signals via a transponder; it creates a communication channel between a source transmitter and a receiver at different locations on Earth. Communications satellites are used for television, telephone, radio, internet, and military applications. There are over 2,000 communications satellites in Earth’s orbit, used by both private and government organizations. Wireless communication uses electromagnetic waves to carry signals. These waves require line-of-sight, and are thus obstructed by the curvature of the Earth. The purpose of communications satellites is to relay the signal around the curve of"} +{"qid": "test1884", "pid": "18534539", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 2)\"\nFargo (season 2) The second season of \"\"Fargo\"\", an American anthology black comedy–crime drama television series created by Noah Hawley, premiered on October 12, 2015, on the basic cable network FX. Its principal cast consists of Kirsten Dunst, Patrick Wilson, Jesse Plemons, Jean Smart, and Ted Danson. The season had ten episodes, and its initial airing concluded on December 14, 2015. As an anthology, each \"\"Fargo\"\" season possesses its own self-contained narrative, following a disparate set of characters in various settings. A prequel to the events in its first season, season two of \"\"Fargo\"\" takes place in the Upper Midwest"} +{"qid": "test1884", "pid": "18534565", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 2)\"\nRonald Reagan: Extended \"\"Fargo\"\" cut\"\", \"\"The True History of Crime in the Midwest\"\", and \"\"Skip Sprang TV Commercial\"\". Fargo (season 2) The second season of \"\"Fargo\"\", an American anthology black comedy–crime drama television series created by Noah Hawley, premiered on October 12, 2015, on the basic cable network FX. Its principal cast consists of Kirsten Dunst, Patrick Wilson, Jesse Plemons, Jean Smart, and Ted Danson. The season had ten episodes, and its initial airing concluded on December 14, 2015. As an anthology, each \"\"Fargo\"\" season possesses its own self-contained narrative, following a disparate set of characters in various settings. A"} +{"qid": "test1884", "pid": "18534561", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 2)\"\nwebsite felt that the series was \"\"the rare cable drama that forgoes attenuated storytelling and moral ambiguity, and instead delivers episode after episode where a lot happens, and all of it matters\"\". The ensemble performances were frequently mentioned in the critiques. Lowry cited the cast as one of the show's strongest assets, and Robert Biano in \"\"USA Today\"\" wrote that \"\"Fargo\"\" cast was \"\"with nary a false note\"\". \"\"The Daily Telegraph\"\" critic Michael Hogan singled out Dunst, Danson and Wilson for their work on the show, as did the \"\"San Francisco Chronicle\"\" David Wiegand, whose opinion was that many of"} +{"qid": "test1884", "pid": "19086471", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fear and Trembling (Fargo)\"\nFear and Trembling (Fargo) \"\"Fear and Trembling\"\" is the fourth episode of the second season of the FX anthology series \"\"Fargo\"\", and the fourteenth episode of the series overall. It was written by Steve Blackman and directed by Michael Uppendahl. The episode first aired on November 2, 2015, and was seen by 1.28 million viewers. As Otto is being taken to a doctor's appointment, Simone has sex with Milligan, inadvertently mentioning the doctor visit. The Kitchens then eliminate Otto's guards in the parking lot outside the medical clinic, leaving Otto unharmed. Meanwhile, Floyd, Dodd, and Bear meet with Bulo and"} +{"qid": "test1884", "pid": "18687784", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Morton's Fork (Fargo)\"\nMorton's Fork (Fargo) \"\"Morton's Fork\"\" is the tenth and final episode of the first season of the FX anthology series \"\"Fargo\"\". The episode aired on June 17, 2014 in the United States on FX. It was written by series creator and showrunner Noah Hawley and directed by Matt Shakman. The title refers to a dilemma of the same name, posed in the episode by FBI agents Pepper (Keegan-Michael Key) and Budge (Jordan Peele). As each season of \"\"Fargo\"\" follows a different story and characters, the season finale is the conclusion of all storylines developed thus far. In \"\"Morton's Fork\"\", Lester"} +{"qid": "test1884", "pid": "18095833", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"Fargo (season 1)\"\nTelevision Film and Best Actor – Miniseries or Television Film for Thornton's performance as Malvo. In 2012, it was announced that FX, with the Coen brothers as executive producers, was developing a new television series based on the 1996 Academy Award-winning film \"\"Fargo\"\". It was later announced that adaptation would be a 10-episode limited series. Series creator Noah Hawley served as the sole writer for all ten episodes of the season, while the task of directing was given to Adam Bernstein, Randall Einhorn, Colin Bucksey, Scott Winant and Matt Shakman. On August 2, 2013, it was announced that Billy Bob"} +{"qid": "test1884", "pid": "18534564", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 2)\"\ncategories, two TCA Award nominations in two categories, and one Empire Award nomination. At the 6th Critics' Choice Television Awards, \"\"Fargo\"\" won four awards from eight nominations, the majority of which acknowledged the performance work of the show's cast. On February 23, 2016, 20th Century Fox released the second season of \"\"Fargo\"\" on DVD and Blu-ray formats in region 1. In addition to all ten episodes, both DVD and Blu-ray disc formats include five featurettes; \"\"Lou on Lou: A Conversation with Patrick Wilson, Keith Carradine and Noah Hawley\"\", \"\"Waffles and Bullet Holes: A Return to Sioux Falls\"\", \"\"The Films of"} +{"qid": "test1884", "pid": "19138626", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"The Castle (Fargo)\"\nThe Castle (Fargo) \"\"The Castle\"\" is the ninth and penultimate episode of the second season of the FX anthology series \"\"Fargo\"\", and the nineteenth episode of the series overall. It was written by series showrunner Noah Hawley alongside Steve Blackman and directed by Adam Arkin. The episode first aired on December 7, 2015, and was seen by 1.31 million viewers. The episode was notable for the controversial appearance of a UFO during its climax, which served as a culmination of numerous UFO-related references recurring throughout the season. \"\"The Castle\"\" was acclaimed by critics, who praised its script, acting performances, and"} +{"qid": "test1884", "pid": "15630432", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"How the States Got Their Shapes\"\nMay 2011. Season 2 premiered in the fall of 2012, with a slightly more reality-oriented format and episodes shortened to half an hour, airing Saturdays on H2, with encore showings on Friday night on the History channel. Many of Season 2's episodes contained material already covered in Season 1. How the States Got Their Shapes How the States Got Their Shapes is a US television series that aired on the History Channel. It is hosted by Brian Unger and is based on Mark Stein's book, \"\"How the States Got Their Shapes\"\". The show deals with how the various states"} +{"qid": "test1884", "pid": "18534541", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 2)\"\nacclaim and was cited as one of the strongest programs of the 2015 television season. It was a candidate for a multitude of awards, including the Primetime Emmy Award for Outstanding Limited Series and Golden Globe Award for Best Miniseries or Television Film, and won several other honors recognizing outstanding achievement in acting, directing, writing, cinematography, editing, special effects, and creative direction. Details of a new season first emerged in the media following a Television Critics Association (TCA) press event, and by July 21, 2014, FX commissioned ten episodes for \"\"Fargo\"\" second season. As an anthology, each season of"} +{"qid": "test1884", "pid": "18534558", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"Fargo (season 2)\"\nreview aggregator Rotten Tomatoes, the second season holds a 100% score based on 53 reviews, with an average rating of 9.19 out of 10. The site's critical consensus reads: \"\"Season two of \"\"Fargo\"\" retains all the elements that made the series an award-winning hit, successfully delivering another stellar saga powered by fascinating characters, cheeky cynicism, and just a touch of the absurd\"\". The season also holds the rare distinction of having each episode maintain a perfect 100% rating as well. Metacritic gives the season a score of 96, based on 33 reviews, indicating \"\"universal acclaim\"\". It was the highest rated"} +{"qid": "test1884", "pid": "19138639", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"The Castle (Fargo)\"\na 100% rating on Rotten Tomatoes, with the consensus reading \"\"With \"\"The Castle,\"\" Fargo delivers a penultimate episode that is both explosive and contemplative, setting the stage for a humdinger of a finale.\"\" IGN's Terri Schwartz gave the episode a 9.8 out of 10, believing that the episode lived up to the anticipation of its violent climax, with particular praise towards how it handled the fate of the Gerhardts. Schwartz responded positively to the UFO scene, stating \"\"I didn't expect Fargo to go all the way with its extra-terrestrial storyline even though I was hoping it would, but it seems"} +{"qid": "test1884", "pid": "10290561", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"Caitlynne Medrek\"\nStoryBook Theatre and will make her directing debut in the fall of 2017 with \"\"Pinkalicious\"\" for StoryBook Theatre as well. In the summer of 2015, she was cast in Episode 10 of AMC's highly acclaimed \"\"Hell on Wheels\"\". Since 2015, her film career has excelled further with many more anime projects in the works, a role on Season 2 of Wynonna Earp, a principal role in Season 3 of The Detour and a recurring role on Season 3 on the highly acclaimed series Fargo, as Grace Stussy. In 2016, she started her own Princess Party Company named YYC Princess which"} +{"qid": "test1884", "pid": "18071248", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"The Rooster Prince (Fargo)\"\nrich and entertainingly theatrical additional characters this world and story continues to leave me wanting more.\"\" The episode was given an 8.8/10 \"\"great\"\" rating. The Rooster Prince (Fargo) \"\"The Rooster Prince\"\" is the second episode of the first season of the FX anthology series \"\"Fargo\"\". The episode aired on April 22, 2014 in the United States on FX. It was written by series creator and showrunner Noah Hawley and directed by Adam Bernstein. The title refers to the Jewish parable of the same name. In the episode, the Fargo mafia sends two hitmen, Mr. Wrench (Russell Harvard) and Mr. Numbers"} +{"qid": "test1884", "pid": "18071241", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"The Rooster Prince (Fargo)\"\nThe Rooster Prince (Fargo) \"\"The Rooster Prince\"\" is the second episode of the first season of the FX anthology series \"\"Fargo\"\". The episode aired on April 22, 2014 in the United States on FX. It was written by series creator and showrunner Noah Hawley and directed by Adam Bernstein. The title refers to the Jewish parable of the same name. In the episode, the Fargo mafia sends two hitmen, Mr. Wrench (Russell Harvard) and Mr. Numbers (Adam Goldberg), to find the man behind the murder of Sam Hess; the man in question, Lorne Malvo (Billy Bob Thornton), is hired by"} +{"qid": "test1884", "pid": "17467724", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (TV series)\"\ntake place in 1979 and focus on Sioux Falls, South Dakota, as referenced by Lou Solverson and others in the first season. The ten episodes are set in Luverne, Minnesota, Fargo, North Dakota, and Sioux Falls. Hawley agreed that this takes place before the events of the film, but he believes all the stories connect: \"\"I like the idea that somewhere out there is a big, leather-bound book that's the history of true crime in the Midwest, and the movie was Chapter 4, Season 1 was Chapter 9 and this is Chapter 2,\"\" he said. \"\"You can turn the pages"} +{"qid": "test1884", "pid": "18095836", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 1)\"\non three episodes by Billy Bob Thornton, Allison Tolman and Noah Hawley, deleted scenes, three behind-the-scenes featurettes, and in select sets, an exclusive, collectible beanie. Fargo (season 1) The first season of the anthology black comedy–crime drama television series \"\"Fargo\"\", premiered on April 15, 2014, on FX. Starring Billy Bob Thornton, Allison Tolman, Colin Hanks and Martin Freeman, the season consisted of ten episodes and concluded its initial airing on June 17, 2014. Set in January 2006, the season follows hitman Lorne Malvo (Thornton) who stops at a hospital in Bemidji, Minnesota following a car accident and influences local mild-mannered"} +{"qid": "test1884", "pid": "18534545", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (season 2)\"\nthem one or two hours of it,\"\" he remarked. Once hired, the actors trained with a dialect coach to master a Minnesota accent. Dunst and Jesse Plemons were the season's first lead castings (as Peggy and Ed Blumquist) in December 2014. Dunst found out about the project through her agency, and read scripts for two episodes, viewed \"\"Fargo\"\" first season, and its namesake film, before securing her role. The actress recalled, \"\"I was so impressed by the way it looked, the writing; it was such high-quality television.\"\" Plemons came to Hawley's attention for his work in \"\"Friday Night Lights\"\" (2006–11)"} +{"qid": "test1884", "pid": "19169501", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"Fargo (season 3)\"\nFargo (season 3) The third season of \"\"Fargo\"\", an American anthology black comedy–crime drama television series created by Noah Hawley, premiered on April 19, 2017, on the basic cable network FX. The season had ten episodes, and its initial airing concluded on June 21, 2017. As an anthology, each \"\"Fargo\"\" season possesses its own self-contained narrative, following a disparate set of characters in various settings, albeit in a connected shared universe. The third season is set primarily between December 2010 and March 2011, in three Minnesota towns: St. Cloud, Eden Valley, and Eden Prairie, and is the only season to"} +{"qid": "test1884", "pid": "18687792", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"Morton's Fork (Fargo)\"\nin Norwegian), which was the main theme of the original film. The episode was first aired in the US on FX on June 17, 2014 and obtained 1.98 million viewers. The episode was acclaimed by critics. It currently holds a perfect 100% rating on Rotten Tomatoes. \"\"The A.V. Club\"\" writers Zack Handlen and Todd VanDerWerff gave the episode an \"\"B+\"\" rating. Another positive review came from IGN writer Roth Cornet, who gave the episode a \"\"9.5/10\"\" \"\"amazing\"\" rating. Morton's Fork (Fargo) \"\"Morton's Fork\"\" is the tenth and final episode of the first season of the FX anthology series \"\"Fargo\"\". The"} +{"qid": "test1884", "pid": "8203798", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Tales of Wells Fargo\"\npilot for \"\"Tales of Wells Fargo\"\" originally premiered as an episode of the anthology series \"\"Schlitz Playhouse of Stars\"\". In the 1960-61 season, \"\"Wells Fargo\"\" was scheduled opposite ABC's detective series \"\"Surfside 6\"\" and CBS's new sitcom \"\"Bringing Up Buddy\"\", starring Frank Aletter. \"\"Wells Fargo\"\" and \"\"Surfside 6\"\" survived another year, but \"\"Bringing Up Buddy\"\" was cancelled. \"\"Wells Fargo\"\" was the lead-in that year to a new NBC Western, \"\"Klondike\"\", but that series, set in the gold rush town of Skagway, Alaska, survived only seventeen episodes. For its first two years, the series was also in the top ten Nielsen"} +{"qid": "test1884", "pid": "19138640", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"The Castle (Fargo)\"\neach season of this show is going to include one sequence that can't quite be explained and deeply roots this story in fiction. Last year was the fish falling from the sky, and this year is a flying saucer. The parallel between such an inexplicable burst of violence unfolding the same night as an inexplicable sight like an alien spacecraft makes this a somber touch on an otherwise incredible sequence.\"\" She also praised Kirsten Dunst's performance as Peggy during the episode's ending. Zack Handlen of The A.V. Club awarded the episode an A grade, complimenting \"\"how well this episode delivers"} +{"qid": "test1884", "pid": "1271619", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Fargo (film)\"\nin the same fictional continuity as the film, each season features a different story, cast, and decade-setting. In season one, the episode \"\"Eating the Blame\"\" reintroduces the buried ransom money for a minor three-episode subplot. The series continues to be a success, and has had two additional seasons made thus far. Fargo (film) Fargo is a 1996 black comedy crime film written, produced, and directed by Joel and Ethan Coen. Frances McDormand stars as Marge Gunderson, a pregnant Minnesota police chief investigating roadside homicides that ensue after a desperate car salesman (William H. Macy) hires two criminals (Steve Buscemi and"} +{"qid": "test1884", "pid": "18082121", "query": "how many episodes in season 2 of fargo", "answer": "ten", "passage": "\"Buridan's Ass (Fargo)\"\nfor a Miniseries, Movie, or Dramatic Special for this episode. Buridan's Ass (Fargo) \"\"Buridan's Ass\"\" is the sixth episode of the first season of the FX anthology series \"\"Fargo\"\". The episode aired on May 20, 2014 in the United States on FX. It was written by series creator and showrunner Noah Hawley and directed by Colin Bucksey. The title refers to the paradox in logic known as Buridan's ass. In the episode, Lorne Malvo (Billy Bob Thornton), policemen Molly Solverson (Allison Tolman) and Gus Grimly (Colin Hanks), and hitmen Mr. Wrench (Russell Harvard) and Mr. Numbers (Adam Goldberg) all end"} +{"qid": "test1884", "pid": "19169508", "query": "how many episodes in season 2 of fargo", "answer": "10", "passage": "\"Fargo (season 3)\"\nin various technical and creative categories. Fargo (season 3) The third season of \"\"Fargo\"\", an American anthology black comedy–crime drama television series created by Noah Hawley, premiered on April 19, 2017, on the basic cable network FX. The season had ten episodes, and its initial airing concluded on June 21, 2017. As an anthology, each \"\"Fargo\"\" season possesses its own self-contained narrative, following a disparate set of characters in various settings, albeit in a connected shared universe. The third season is set primarily between December 2010 and March 2011, in three Minnesota towns: St. Cloud, Eden Valley, and Eden Prairie,"} +{"qid": "test1885", "pid": "18636074", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Jessie Anderson (The Walking Dead)\"\ncomics because the show and characters aren't always exact to the comics. If you've seen the comics, my character has short black hair with bangs and wears a headband — and she's a meek; she's a weaker character than I'm playing on the show, which is great because I enjoy playing a stronger character.\"\" Jessie Anderson (The Walking Dead) Jessie Anderson is a fictional character in the comic book series \"\"The Walking Dead\"\" and is portrayed by Alexandra Breckenridge in the television series of the same name. She is a resident in the Alexandria Safe-Zone. Created by writer Robert Kirkman"} +{"qid": "test1885", "pid": "16163302", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Shane Walsh (The Walking Dead)\"\nsee what Rick has become and tells him to continue fighting. Shane Walsh was created by Robert Kirkman and Tony Moore, the writer and original artist of \"\"The Walking Dead\"\" comic book series. The character first appeared in the first issue of the comic book series in October 2003, but was expanded upon greatly in the television show adapted from the comics in 2010. As a result, Shane lives much longer in the chronology of the story in the show than he does in the comics. Kirkman described the comic book version of Shane's character as a short and quick"} +{"qid": "test1885", "pid": "5507572", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (comic book)\"\ncharacters introduced to the show and deceased characters alive in the comic book as a reason for this. Robert Kirkman himself has mentioned that the series will follow much closer to the comic series with Gimple's run. With the series' ninth season, which started broadcast in October 2018, Angela Kang was promoted to showrunner with Gimple now in charge of all \"\"Walking Dead\"\" properties at AMC. This also was accompanied by the largest deviation from the comics, with the departure of Rick Grimes, played by Andrew Lincoln, from the show, though Lincoln will reprise Rick in three feature-length films to"} +{"qid": "test1885", "pid": "5507571", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (comic book)\"\non October 31, 2010 with high ratings. On November 8, 2010, after broadcasting two episodes, AMC renewed \"\"The Walking Dead\"\" for a second season of 13 episodes, which began on October 16, 2011. The TV show is loosely inspired by the comic, introducing new characters and deviating from the comic in certain plot points. The fifth season premiered on October 12, 2014, with Scott M. Gimple as the show's third showrunner. Gimple has said that he would stay closer in line to the comic book series events \"\"as much as possible\"\", but ultimately remix stories with certain characters, referencing original"} +{"qid": "test1885", "pid": "4885609", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Telltale Games\"\nwhich were subsequently used by The Odd Gentlemen to create their 2015 episodic \"\"King's Quest\"\" game. Telltale's breakthrough success came with the licenses of the comic book series \"\"The Walking Dead\"\" and \"\"Fables\"\" in association with Warner Bros. Interactive Entertainment in 2011. Allison anticipated that \"\"The Walking Dead\"\" series could be a $20 to $30 million franchise. Their \"\"The Walking Dead\"\" video game presented an alteration of Telltale's approach, as rather than a traditional adventure game where players would need to solve puzzles, \"\"The Walking Dead\"\" was more focused on providing a cinematic experience but presenting choices to the player,"} +{"qid": "test1885", "pid": "18845844", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead: Michonne\"\nThe Walking Dead: Michonne The Walking Dead: Michonne is an episodic interactive drama graphic adventure survival horror based on Robert Kirkman's \"\"The Walking Dead\"\" comic book series by Telltale Games. Taking place between issues 126 and 139 of \"\"The Walking Dead\"\" comic series, the game shows events of what Michonne was up to during her temporary departure from the group of survivors led by Rick Grimes in the midst of a zombie apocalypse. Samira Wiley voiced Michonne in the game. The three-episode series was released between February and April 2016 for personal computers, PlayStation 3 and 4 and Xbox 360"} +{"qid": "test1885", "pid": "17195521", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Sasha Williams (The Walking Dead)\"\nSasha Williams (The Walking Dead) Sasha Williams is a fictional character (portrayed by Sonequa Martin-Green) from \"\"The Walking Dead\"\", an AMC television horror drama series. The character was created by Robert Kirkman, the creator of \"\"The Walking Dead\"\" comic book series which the show is based on and in which Sasha has no counterpart. Sasha, her brother Tyreese, and a small family of other survivors stumble upon the prison where Rick's group has already been set up. After being denied sanctuary at the prison, the surviving members of Sasha's group find themselves at Woodbury and serve as soldiers and look-outs"} +{"qid": "test1885", "pid": "20409131", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Morales (The Walking Dead)\"\nMorales (The Walking Dead) Morales is a fictional character from the horror drama television series \"\"The Walking Dead\"\", which airs on AMC in the United States and is based on the comic book series of the same name. He was created by series developer Frank Darabont and portrayed by Juan Pareja. Morales is an original character in the television series and has no counterpart in the comics. The character was first introduced in the first season as a member of the group that series protagonist Rick Grimes encounters in Atlanta. After a long absence in the series, Morales briefly returns"} +{"qid": "test1885", "pid": "20458088", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Siddiq (The Walking Dead)\"\nSiddiq (The Walking Dead) Siddiq is a fictional character from the comic book series \"\"The Walking Dead\"\" and the television series of the same name, where he is portrayed by Avi Nash. Siddiq is a member of the construction crew who arrived during the two year time skip. During the fair, he heads up the effort to build rooms for the new arrivals. Siddiq appears in \"\"\"\", which takes place before he first appeared in the comics. In the season premiere \"\"Mercy\"\", Siddiq is first seen surrendering to Carl and tells him that he has not eaten in a few"} +{"qid": "test1885", "pid": "5507556", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (comic book)\"\nby Moore (issues No. 1–6) and Charlie Adlard (issue No. 7 onward). Moore continued to do the covers through issue No. 24. \"\"The Walking Dead\"\" received the 2007 and 2010 Eisner Award for Best Continuing Series at San Diego Comic-Con International. The series was adapted into the AMC television series \"\"The Walking Dead\"\", which premiered in 2010. The television program loosely follows the storyline of the comic book. The franchise has also spawned multiple additional media properties, including video games (such as \"\"The Walking Dead\"\" video game), a companion television series (\"\"Fear the Walking Dead\"\"), webisode series (\"\"\"\", \"\"\"\", and"} +{"qid": "test1885", "pid": "14642311", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead (TV series)\"\nPowell, and Matt Negrete. In January 2018, it was announced that Gimple would be promoted to the newly created position of Chief Content Officer of the entire \"\"Walking Dead\"\" franchise, and that Angela Kang would replace him as showrunner beginning with the ninth season. The television series generally tends to follow Kirkman's comic series across major characters and plots; for instance, events of the premiere episode of the seventh season correlate to events in issue #100 of the comics. The show does not attempt to go step-by-step with the comics, and has leeway in the narrative. In particular, the show's"} +{"qid": "test1885", "pid": "14642325", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead (TV series)\"\nGimple stated that they plan to create three AMC Original Films to explore events related to Rick's character in the future, starring Lincoln, and with the first expected to begin production in 2019. Besides Lincoln, Pollyanna McIntosh (Jadis / Anne) will also star in these films. Gimple stated that these will not simply be extended episodes, nor will attempt to adapt any of the comic stories, but will heavily involve Kirkman in their development. \"\"Fear the Walking Dead\"\" is a companion series to \"\"The Walking Dead\"\", developed by AMC. AMC started development of the show around September 2013 and committed"} +{"qid": "test1885", "pid": "18180615", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead (video game series)\"\nDead\"\" series is based on the comic series of the same name. The game's events run concurrently to the comic, starting at the onset of a zombie apocalypse, where dead humans have become undead \"\"walkers\"\" that feed on the living which quickly overwhelmed most of the population. As established in the comic and show, this is a result of a virus that all living humans possess that takes over the brain of the body once the person dies, and the only way to stop this is to destroy the brain. The game series initially starts in Georgia, with the whole"} +{"qid": "test1885", "pid": "18371405", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead (season 6)\"\nGilliard Jr., Andrew J. West and Chad L. Coleman (since their first appearances on the show), who were all credited as main cast in previous seasons. On October 7, 2014, AMC renewed \"\"The Walking Dead\"\" for a sixth season. Scott M. Gimple said that the sixth season would continue to remix material from the comic and explained that there would be a flashback backstory to some of the characters: \"\"There are other people that we're going to see throughout the season from the comics, and I'm excited for people to see it, but I don't want to tell them now."} +{"qid": "test1885", "pid": "16898897", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Caesar Martinez (The Walking Dead)\"\nCaesar Martinez (The Walking Dead) Caesar Ramón Martínez is a recurring fictional character from the comic book series \"\"The Walking Dead\"\" and is portrayed by Jose Pablo Cantillo in the third and fourth seasons of the television show of the same name. Martínez is introduced in the 27th issue of the comic book series in April 2006 as the loyal second-in-command to The Governor. He is responsible for bringing Rick Grimes and two of his fellow survivors, Michonne and Glenn into Woodbury to be questioned and later tortured. In the television series, he is introduced in the third season's third"} +{"qid": "test1885", "pid": "5507555", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (comic book)\"\nThe Walking Dead (comic book) The Walking Dead is a black-and-white comic book series created by writer Robert Kirkman with art by Tony Moore. It focuses on Rick Grimes, a Kentucky deputy who is shot in the line of duty and awakens from a coma in a zombie apocalypse that has resulted in a state-wide quarantine. After joining with other survivors, including his loved ones, he gradually takes on the role of leader of a community as it struggles to survive the zombie apocalypse. First issued in 2003 by publisher Image Comics, the comic is written by Kirkman with art"} +{"qid": "test1885", "pid": "16631334", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead: Survival Instinct\"\nThe Walking Dead: Survival Instinct The Walking Dead: Survival Instinct is a single-player post apocalyptic first-person shooter video game developed by Terminal Reality and published by Activision. It is based on and canon to \"\"The Walking Dead\"\" television series, in contrast to the video game by Telltale Games, which is based on and canon to the comics. \"\"The Walking Dead: Survival Instinct\"\" acts as a prequel to the TV series; it is set in the Georgia countryside and focuses on Daryl and Merle Dixon as they make their way to Atlanta during the early days of the zombie apocalypse. \"\"The"} +{"qid": "test1885", "pid": "4697246", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Scott M. Gimple\"\nDead\"\" and \"\"Fear the Walking Dead\"\", with Angela Kang succeeding him as showrunner. Gimple has also worked on Disney's \"\"Pepper Ann\"\" and as a writer for \"\"The Simpsons\"\" comics, including editing the Simpsons' Episode Guidebook \"\"\"\". He created the cartoon \"\"Fillmore!\"\" and the comic book \"\"Heroes Anonymous\"\" with Bill Morrison. While initial reactions to Scott Gimple's time as show runner on The Walking Dead were mostly positive, fan backlash began in full after fans accused Gimple of degrading the quality of the show with character death fake outs becoming more common, a lack of directorial style, poor dialogue and destroying"} +{"qid": "test1885", "pid": "16889872", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (franchise)\"\nThe Walking Dead (franchise) The Walking Dead is a media franchise created by Robert Kirkman and Tony Moore including a comic book series, two television series, six novels, video games, and various other media such as audio books and sound tracks. \"\"The Walking Dead\"\" is a monthly black-and-white comic book series chronicling the travels of Rick Grimes, his family, and other survivors of a zombie apocalypse. First issued in 2003 by publisher Image Comics, the series was created by writer Robert Kirkman and artist Tony Moore (who was later replaced by Charlie Adlard from issue #7 onward, though Moore continued"} +{"qid": "test1885", "pid": "15783484", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Days Gone Bye (The Walking Dead)\"\nDays Gone Bye (The Walking Dead) \"\"Days Gone Bye\"\" is the pilot episode of the post-apocalyptic horror television series \"\"The Walking Dead\"\". It originally aired on AMC in the United States on October 31, 2010. The episode was written and directed by Frank Darabont, the series creator. Robert Kirkman, the creator of the eponymous series of comic books, considered the idea of creating a television show based on the comic series, but did not move forward. Frank Darabont expressed interest in developing the series for television. In January 2010, AMC formally announced that it had ordered a pilot for a"} +{"qid": "test1885", "pid": "5507085", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Robert Kirkman\"\nwill be able to vote on which becomes an ongoing series. Each series is co-created by Silvestri who also provides cover art. In 2010, he also began producing the television adaption of his comic book series \"\"The Walking Dead\"\", the pilot of which was directed by Frank Darabont. Kirkman has written or co-written seven episodes of the series. Kirkman also created and serves as an executive producer on the show's companion series, \"\"Fear the Walking Dead\"\". In July 2010, Kirkman announced he would launch and run a new Image Comics imprint called Skybound Entertainment. On February 9, 2012, Tony Moore"} +{"qid": "test1885", "pid": "14642324", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (TV series)\"\nbased on \"\"The Walking Dead\"\" have been released via AMC's website–\"\"\"\" (2011), \"\"\"\" (2012), \"\"\"\" (2013) and \"\"\"\" (2017). In 2011, AMC debuted an animated comic book version of \"\"The Walking Dead\"\" novel's beginning, featuring the voice of actor Phil LaMarr. A live after-show titled \"\"Talking Dead\"\" premiered on AMC on October 16, 2011, following the encore presentation of \"\"The Walking Dead\"\" season two premiere. \"\"Talking Dead\"\" features host Chris Hardwick discussing the latest episode with fans, actors, and producers of \"\"The Walking Dead\"\". Following the departure of Andrew Lincoln as Rick Grimes during season 9, chief content officer Scott"} +{"qid": "test1885", "pid": "18989086", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Fear the Walking Dead (season 1)\"\nFear the Walking Dead (season 1) The first season of \"\"Fear the Walking Dead\"\", an American horror-drama television series on AMC, premiered on August 23, 2015, and concluded on October 4, 2015, consisting of six episodes. The series is a companion series and prequel to \"\"The Walking Dead\"\", which is based on the comic book series of the same name by Robert Kirkman, Tony Moore, and Charlie Adlard. On March 9, 2015, AMC announced it had ordered \"\"Fear the Walking Dead\"\" to series, with a two-season commitment. The second season, comprising 15 episodes, premiered on April 10, 2016. The season"} +{"qid": "test1885", "pid": "14642301", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead (TV series)\"\ntook over the role of showrunner from Scott M. Gimple, who was promoted to chief content officer for \"\"The Walking Dead\"\" franchise. The season starts with a timeskip of about a year and a half from Season 8, which coincides with the comic's narrative after the \"\"All Out War\"\" arc. Season nine is the final season on the show for actors Andrew Lincoln and Lauren Cohan. Executive producer David Alpert said in 2014 that the original comics have given them enough ideas for Rick Grimes and company over the next seven years. \"\"I happen to love working from source material,"} +{"qid": "test1885", "pid": "18989093", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"Fear the Walking Dead (season 1)\"\n2015. A special edition version of the first season was released on Blu-ray and DVD on March 22, 2016, with new bonus features, including deleted scenes, seven featurettes, and audio commentaries by cast and crew, on all six episodes. Fear the Walking Dead (season 1) The first season of \"\"Fear the Walking Dead\"\", an American horror-drama television series on AMC, premiered on August 23, 2015, and concluded on October 4, 2015, consisting of six episodes. The series is a companion series and prequel to \"\"The Walking Dead\"\", which is based on the comic book series of the same name by"} +{"qid": "test1885", "pid": "5507559", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (comic book)\"\nIn May of 2018, Image Comics and its imprint Skybound Entertainment, the company that has driven development of \"\"The Walking Dead\"\" comic series since 2010, jointly announced \"\"The Walking Dead Day.\"\" The fan-oriented event has a scheduled date of October 13, 2018 and will coincide with the release of a \"\"Walking Dead #1 15th Anniversary Variant Edition,\"\" with cover art by current series artist Charlie Adlard. A select number of \"\"The Walking Dead Day\"\" participating local comic shops become part of the comic's story line, with their own special edition of Adlard's anniversary cover, featuring the store’s logo incorporated into"} +{"qid": "test1885", "pid": "5507557", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (comic book)\"\n\"\"\"\"), and various additional publications, including novels (\"\"\"\"). The original pitch by Kirkman and Moore was for a followup to George A. Romero's \"\"Night of the Living Dead\"\", with the series taking place in the 1960s. Image Comics co-founder Jim Valentino suggested using an original concept instead so the creators would own the property outright. The revised pitch became \"\"The Walking Dead.\"\" \"\"The Walking Dead\"\" debuted in 2003, published by Image Comics, with art by Tony Moore for the first six issues and Cliff Rathburn shading the art after issue five. Charlie Adlard took over as artist on issue #7,"} +{"qid": "test1885", "pid": "16654228", "query": "which came first the walking dead comic or show", "answer": "comic", "passage": "\"The Walking Dead: Season Two\"\nmake video games based on \"\"The Walking Dead\"\" comics, they signed a contract for a \"\"multi-year, multi-platform, multi-title\"\" license. This license went into effect after the success of the first season of \"\"The Walking Dead\"\", when Telltale commissioned a second series of games based on the franchise. The first season was considered highly successful, helping to revitalize the adventure game genre which had been in decline since the mid-1990s, with Telltale being recognized as one of the top development studios in 2012. During an interview on IGN's Up at Noon, writer Gary Whitta teased more \"\"The Walking Dead\"\" from Telltale"} +{"qid": "test1885", "pid": "18180611", "query": "which came first the walking dead comic or show", "answer": "comic book", "passage": "\"The Walking Dead (video game series)\"\nThe Walking Dead (video game series) The Walking Dead is an episodic, graphic adventure video game series developed and published by Telltale Games, based on \"\"The Walking Dead\"\" comic book series. First released in April 2012, the series currently spans three main five-episode seasons, an additional episode as downloadable content, and a mini three-episode season, with plans to release a fourth and final season in 2018. The games have been released to personal computers, game consoles, and mobile devices and have had both digital and physical releases. The series, like the comic, starts with an epidemic that turns the dead"} +{"qid": "test1886", "pid": "12216232", "query": "who plays grace in the secret life of the american teenager", "answer": "Megan Park", "passage": "\"Megan Park\"\non the popular Disney channel Family show \"\"Life with Derek\"\" as Amy, a love interest of Derek and head cheerleader ex-girlfriend to Max. Her largest role to date has been in the ABC Family series \"\"The Secret Life of the American Teenager\"\", where she plays one of the main characters, Grace Bowman, a conservative Christian teen and cheerleader who, along with her boyfriend, struggle with her purity vow until marriage. In 2013, Park lost the role of Nicki in the sitcom \"\"Undateable\"\" to Briga Heelan. Heelan had originally been cast in the role, but was believed to be unable to"} +{"qid": "test1886", "pid": "12216234", "query": "who plays grace in the secret life of the american teenager", "answer": "Megan Park", "passage": "\"Megan Park\"\nthe TV series \"\"The Secret Life of the American Teenager\"\". Park also appeared, together with Tyler Hilton, in a music video called \"\"(Kissed You) Good Night\"\" recorded by the American country music group Gloriana. In July 2006, Park started dating actor and singer Tyler Hilton, after meeting him on the set of \"\"Charlie Bartlett\"\". They became engaged in December 2013, and married on October 10, 2015. Megan Park Megan Park (born July 24, 1986) is a Canadian actress and singer. She is known for her portrayal of Grace Bowman in the television series \"\"The Secret Life of the American Teenager\"\"."} +{"qid": "test1886", "pid": "13185766", "query": "who plays grace in the secret life of the american teenager", "answer": "Megan Park", "passage": "\"The Secret Life of the American Teenager (season 2)\"\nThe Secret Life of the American Teenager (season 2) The second season of \"\"The Secret Life of the American Teenager\"\", an American television series created by Brenda Hampton, debuted on the ABC Family television network on Monday, June 22, 2009 at 8:00PM. Season two regular cast members include Shailene Woodley, India Eisley, Daren Kagasoff, Francia Raisa, Kenny Baumann, Molly Ringwald, Mark Derwin, Megan Park, and Greg Finley II. Following the first season, Jorge Pallo and Luke Zimmerman were demoted to recurring guest stars. Jorge returned for a select number of episodes to wrap up his character's storyline and eventually departed"} +{"qid": "test1886", "pid": "12924902", "query": "who plays grace in the secret life of the american teenager", "answer": "Megan Park", "passage": "\"The Secret Life of the American Teenager (season 1)\"\nThe Secret Life of the American Teenager (season 1) The first season of \"\"The Secret Life of the American Teenager\"\", an American television series created by Brenda Hampton, debuted on the ABC Family television network on July 1, 2008. The first season comprises 23 episodes, the first eleven of which ended on September 9, 2008. Despite marketing issues, the remaining twelve ended up as part of the first season, which concluded its initial airing on March 23, 2009. Season one regular cast members include Shailene Woodley, Molly Ringwald, Daren Kagasoff, Kenny Baumann, Francia Raisa, Megan Park, India Eisley, Greg Finley"} +{"qid": "test1886", "pid": "12216231", "query": "who plays grace in the secret life of the american teenager", "answer": "Megan Park", "passage": "\"Megan Park\"\nMegan Park Megan Park (born July 24, 1986) is a Canadian actress and singer. She is known for her portrayal of Grace Bowman in the television series \"\"The Secret Life of the American Teenager\"\". Born in Lindsay, Ontario, Park began her acting career with small parts starting at age 6. She attended Oakridge Secondary School, in London, Ontario. She was also a part of the Original Kids Theatre program. Her first major roles came with a guest spot on the Lifetime series \"\"Angela's Eyes\"\" and a minor role in the indie movie \"\"Charlie Bartlett\"\". Park completed a guest starring role"} +{"qid": "test1889", "pid": "13322290", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"The Whiskey Ain't Workin'\"\nare bailed out by a woman who was also at the bar. Compiled from liner notes. The Whiskey Ain't Workin' \"\"The Whiskey Ain't Workin'\"\" is a song recorded by American country music artists Travis Tritt and Marty Stuart. It was released in November 1991 as the third single from Tritt's album \"\"It's All About to Change\"\". It peaked at number 2 on the \"\"Billboard\"\" country music chart in the United States, and at number 4 on the country singles chart in Canada. The song was written by Stuart and Ronny Scaife. The music video is directed by Gerry Wenner. In"} +{"qid": "test1889", "pid": "13322289", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"The Whiskey Ain't Workin'\"\nThe Whiskey Ain't Workin' \"\"The Whiskey Ain't Workin'\"\" is a song recorded by American country music artists Travis Tritt and Marty Stuart. It was released in November 1991 as the third single from Tritt's album \"\"It's All About to Change\"\". It peaked at number 2 on the \"\"Billboard\"\" country music chart in the United States, and at number 4 on the country singles chart in Canada. The song was written by Stuart and Ronny Scaife. The music video is directed by Gerry Wenner. In it, Tritt and Stuart are at a bar and they wind up going to jail but"} +{"qid": "test1889", "pid": "8003296", "query": "who sings the whiskey ain't workin anymore", "answer": "Travis Tritt", "passage": "\"It's All About to Change\"\nIt's All About to Change It's All About To Change is the second studio album by American country singer Travis Tritt, released on Warner Bros. Records in 1991. The tracks \"\"The Whiskey Ain't Workin'\"\", \"\"Nothing Short of Dying\"\", \"\"Anymore\"\", and \"\"Here's a Quarter (Call Someone Who Cares)\"\" were released as singles; \"\"Bible Belt\"\" also charted from unsolicited airplay. \"\"Anymore\"\" was the second single of Tritt's career to reach Number One on the Hot Country Songs charts. Overall, this is Tritt's highest-certified album; with sales of over three million copies in the U.S., it has been certified 3× Platinum by the"} +{"qid": "test1889", "pid": "4287973", "query": "who sings the whiskey ain't workin anymore", "answer": "Travis Tritt", "passage": "\"Travis Tritt\"\nAin't Workin',\"\" respectively the first and third singles, both reached number two, with the number-one \"\"Anymore\"\" in between. \"\"Nothing Short of Dying\"\" was the fourth single, with a peak at number four on \"\"Billboard\"\"; both it and \"\"The Whiskey Ain't Working\"\" went to Number One on \"\"Radio & Records\"\". \"\"Bible Belt,\"\" another cut from the album (recorded in collaboration with Little Feat), appeared in the 1992 film \"\"My Cousin Vinny\"\" (the lyrics for the song, however, were changed for the version played in the movie to match the story line). Although not released as a single, it peaked at number"} +{"qid": "test1889", "pid": "4287974", "query": "who sings the whiskey ain't workin anymore", "answer": "Travis Tritt", "passage": "\"Travis Tritt\"\n72 country based on unsolicited airplay and was the b-side to \"\"Nothing Short of Dying.\"\" \"\"Bible Belt\"\" was inspired by a youth pastor whom Tritt knew in his childhood. Stuart offered \"\"The Whiskey Ain't Workin' Anymore\"\" to Tritt backstage at the CMA awards show, and they recorded it as a duet through the suggestion of Tritt's record producer, Gregg Brown. The duet won both artists the next year's Grammy Award for Best Country Collaboration with Vocals. Tritt and Stuart charted a second duet, \"\"This One's Gonna Hurt You (For a Long, Long Time),\"\" which went to number seven in mid-1992"} +{"qid": "test1889", "pid": "4287964", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"Travis Tritt\"\nthan 40 times on the Hot Country Songs charts, including five number ones — \"\"Help Me Hold On,\"\" \"\"Anymore,\"\" \"\"Can I Trust You with My Heart,\"\" \"\"Foolish Pride\"\", and \"\"Best of Intentions\"\" — and 15 additional top ten singles. Tritt's musical style is defined by mainstream country and Southern rock influences. He has received two Grammy Awards, both for Best Country Collaboration with Vocals: in 1992 for \"\"The Whiskey Ain't Workin',\"\" a duet with Marty Stuart, and again in 1998 for \"\"Same Old Train\"\", a collaboration with Stuart and nine other artists. In addition, he has received four awards from"} +{"qid": "test1889", "pid": "18459531", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"Craig Wayne Boyd\"\nin country music. Boyd was signed to a publishing deal with EMI. He spent many years songwriting. Boyd began touring, opening for acts such as Jamey Johnson, Randy Houser, and Brantley Gilbert. On September 30, 2014, Boyd debuted on seventh season of \"\"The Voice\"\". During his Blind Audition, Boyd sang \"\"The Whiskey Ain't Workin'\"\" by Travis Tritt and Marty Stuart. Two coaches (Blake Shelton and Pharrell Williams) turned around. Boyd chose Blake Shelton as his coach. During the Battle Rounds, Boyd was paired with James David Carter to sing \"\"Wave on Wave\"\"\"\" by Pat Green. Coach Shelton chose Carter over"} +{"qid": "test1889", "pid": "2195032", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"35th Annual Grammy Awards\"\nwhere held at the ceremony, including \"\"Constant Craving\"\" by k. d. lang, \"\"Give It Away\"\" by the Red Hot Chili Peppers with George Clinton and P-Funk, \"\"Save the Best for Last\"\" by Vanessa Williams, \"\"My Lovin' (You're Never Gonna Get It)\"\" by En Vogue, \"\"The Lady Is a Tramp\"\" by Tony Bennett and Natalie Cole, \"\"The Whiskey Ain't Workin'\"\" by Travis Tritt and Marty Stuart, \"\"People Everyday\"\" by Arrested Development, \"\"Achy Breaky Heart\"\" by Billy Ray Cyrus, \"\"Hallelujah!\"\" by Mervyn Warren and Los Angeles Master Chorale, \"\"Beauty and the Beast\"\" by Celine Dion and Peabo Bryson as well as \"\"Cherokee\"\""} +{"qid": "test1889", "pid": "3398833", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"Marty Stuart\"\nIn 1991, he released another album, \"\"Tempted\"\", and the title track became Stuart's first Top-5 hit. In 1991, Marty co-wrote a song with Travis Tritt called \"\"The Whiskey Ain't Workin'.\"\" The song was recorded as a duet on Tritt's 1991 album \"\"It's All About to Change\"\", and became Marty's biggest hit. In 1992, his former record company, Columbia finally released his album \"\"Let There Be Country\"\". That same year, Stuart released the album \"\"This One's Gonna Hurt You\"\" on MCA. The album's title track, a duet with Travis Tritt, was released as a single, and became another Top Ten hit"} +{"qid": "test1889", "pid": "13354795", "query": "who sings the whiskey ain't workin anymore", "answer": "Travis Tritt", "passage": "\"Tempted (album)\"\na duet partner on Travis Tritt's \"\"The Whiskey Ain't Workin'.\"\" Several songs on this album are covers. \"\"I'm Blue, I'm Lonesome\"\" was co-written by Bill Monroe and Hank Williams and was featured on Monroe's 1966 album, \"\"High Lonesome Sound of Bill Monroe\"\". In addition, \"\"Get Back to the Country\"\" was released as a single in 1985 by Neil Young from his album \"\"Old Ways\"\". Jana Pendragon of Allmusic gave the album four-and-a-half stars out of five, comparing it to Dwight Yoakam's \"\"Hillbilly Deluxe\"\" in style and saying, \"\"Stuart kicks country-pop in its well-defined hindquarters[…]But Stuart is just as deadly when"} +{"qid": "test1889", "pid": "19299332", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"The Marty Party Hit Pack\"\nThe Marty Party Hit Pack The Marty Party Hit Pack is a compilation album by American country music singer Marty Stuart. It was released in 1995 via MCA Nashville. The album includes several cuts from Stuart's 1991 album \"\"Tempted\"\" and 1992 album \"\"This One's Gonna Hurt You\"\", plus his 1991 duet with Travis Tritt, \"\"The Whiskey Ain't Workin'\"\", previously on Tritt's 1991 album \"\"It's All About to Change\"\". Two tracks on the album previously appeared on multi-artist tribute albums: the rendition of The Band's \"\"The Weight\"\" previously appeared on the 1994 album \"\"Rhythm, Country and Blues\"\", and the rendition of"} +{"qid": "test1889", "pid": "19299335", "query": "who sings the whiskey ain't workin anymore", "answer": "Marty Stuart", "passage": "\"The Marty Party Hit Pack\"\nby the Recording Industry Association of America (RIAA) on August 10, 1998 for U.S. shipments of 500,000 copies. The Marty Party Hit Pack The Marty Party Hit Pack is a compilation album by American country music singer Marty Stuart. It was released in 1995 via MCA Nashville. The album includes several cuts from Stuart's 1991 album \"\"Tempted\"\" and 1992 album \"\"This One's Gonna Hurt You\"\", plus his 1991 duet with Travis Tritt, \"\"The Whiskey Ain't Workin'\"\", previously on Tritt's 1991 album \"\"It's All About to Change\"\". Two tracks on the album previously appeared on multi-artist tribute albums: the rendition of"} +{"qid": "test1890", "pid": "13702900", "query": "who died doing the luge in the olympics", "answer": "Nodar Kumaritashvili", "passage": "\"2010 Winter Olympics opening ceremony\"\nrespect for their colleague, Nodar Kumaritashvili, who died in a luge accident earlier that day. The team left an empty space in the processional and left the stadium immediately following the procession. They had indicated they would not participate in the opening ceremony or withdraw completely, but decided against doing so. The team wore black scarves and armbands to honor Kumaritashvili while a black ribbon was affixed to the team's flag. Teams from some countries, including Australia, Azerbaijan also wore black armbands in respect of Kumaritashvili. China, which hosted the last Olympics in Beijing, also got a standing ovation due"} +{"qid": "test1890", "pid": "12657238", "query": "who died doing the luge in the olympics", "answer": "Nodar Kumaritashvili", "passage": "\"Luge at the 2010 Winter Olympics\"\nthem emerged unhurt. On 18 February 2010, FIL President Josef Fendt issued the following statement: \"\"At the conclusion of the luge competition at the Vancouver 2010 Olympic Games, our thoughts are with the family of Nodar Kumaritashvili. We again offer our heartfelt condolences to them, to his friends and to the entire Georgian Luge Federation. Nodar Kumaritashvili will forever stay in the hearts of all the members of the Luge family.
This has also been a difficult time for the Olympic athletes who competed in these Games. Their solidarity and sportsmanship was a tribute to the friend we lost."} +{"qid": "test1891", "pid": "20428451", "query": "who wrote and performed i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (film)\"\nI Can Only Imagine (film) I Can Only Imagine is a 2018 American Christian drama film directed by the Erwin Brothers and written by Alex Cramer, Jon Erwin, and Brent McCorkle, based on the story behind the MercyMe song of the same name, the best-selling Christian single of all time. The film stars J. Michael Finley as Bart Millard, the lead singer who wrote the song about his relationship with his father (Dennis Quaid). Madeline Carroll, Priscilla Shirer, Cloris Leachman, Trace Adkins and Brody Rose also star. \"\"I Can Only Imagine\"\" was released in the United States on March 16,"} +{"qid": "test1891", "pid": "20428465", "query": "who wrote and performed i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (film)\"\n1 film in DVD sales and rentals for the week ending June 16, 2018. I Can Only Imagine (film) I Can Only Imagine is a 2018 American Christian drama film directed by the Erwin Brothers and written by Alex Cramer, Jon Erwin, and Brent McCorkle, based on the story behind the MercyMe song of the same name, the best-selling Christian single of all time. The film stars J. Michael Finley as Bart Millard, the lead singer who wrote the song about his relationship with his father (Dennis Quaid). Madeline Carroll, Priscilla Shirer, Cloris Leachman, Trace Adkins and Brody Rose also"} +{"qid": "test1891", "pid": "6196126", "query": "who wrote and performed i can only imagine", "answer": "MercyMe", "passage": "\"I Can Only Imagine (MercyMe song)\"\nat the time. Millard began writing the words \"\"I can only imagine\"\" on items when he was thinking about his father. During the recording of the band's 1999 independent album \"\"The Worship Project\"\", MercyMe needed one more song to fill out the album. Millard, alone on a bus in the middle of the night, finally wrote the lyrics to the song by drawing on his thoughts and personal faith about what one would experience standing before God in Heaven. Millard attests that \"\"['I Can Only Imagine'] is one of the only songs I have ever written where there wasn't any"} +{"qid": "test1891", "pid": "6196123", "query": "who wrote and performed i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nI Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and included on their 2001 major-label debut album \"\"Almost There\"\" as"} +{"qid": "test1891", "pid": "6196145", "query": "who wrote and performed i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nDennis Quaid. The film was released on March 16, 2018. I Can Only Imagine (MercyMe song) \"\"I Can Only Imagine\"\" (sometimes shortened to \"\"Imagine\"\") is a single recorded by Christian rock band MercyMe. Written and composed by lead vocalist Bart Millard, the song, based around a main piano track, was inspired by the death of Millard's father and considers what it would be like in Heaven and to be standing before God. The song was first issued as a track on MercyMe's 1999 album \"\"The Worship Project\"\", which was released on an independent record label. The song was re-recorded and"} +{"qid": "test1891", "pid": "6196134", "query": "who wrote and performed i can only imagine", "answer": "MercyMe", "passage": "\"I Can Only Imagine (MercyMe song)\"\nwe kind of became the 'adult contemporary poster child' when 'I Can Only Imagine' took off\"\". A music video was released for \"\"I Can Only Imagine\"\". Millard recalled the video's inspiration: \"\"I just kept seeing all these people holding picture frames [at MercyMe concerts] that are empty because we all carry these people with us in some way. I've had so many people after a show pull out a picture of someone they've lost. These people embrace these photos and I just thought how can we tap into that\"\". The video features everyday people as well as several music artists"} +{"qid": "test1891", "pid": "6196140", "query": "who wrote and performed i can only imagine", "answer": "MercyMe", "passage": "\"I Can Only Imagine (MercyMe song)\"\nof No. 33. On the Country Songs chart, the song debuted at No. 58 for the chart week of 27 December 2003, reaching an eventual peak of No. 52, which it held for two weeks. According to Mike Curb on the Curb Records website, \"\"I Can Only Imagine\"\" also peaked at No. 1 on the \"\"Billboard\"\" Hot 100 Singles Sales chart for 10 weeks, No. 1 on the \"\"Radio & Records\"\" Christian AC chart for two weeks, and No. 15 on the Christian CHR chart. In April 2010, \"\"I Can Only Imagine\"\" was certified platinum by the RIAA, signifying sales"} +{"qid": "test1891", "pid": "6196138", "query": "who wrote and performed i can only imagine", "answer": "Bart Millard", "passage": "\"I Can Only Imagine (MercyMe song)\"\nand guitar. But what makes the song are the lyrics, penned by Bart Millard himself. The song speaks about that day that we all dream about when we finally meet Jesus... It's a song that can't be listened to with eyes open\"\". \"\"I Can Only Imagine\"\" debuted on the \"\"Billboard\"\" Hot 100 for the chart week of 11 October 2003 at No. 76. The song peaked at No. 71 for two weeks and spent 16 non-consecutive weeks on the Hot 100. On the Adult Contemporary chart, \"\"I Can Only Imagine\"\" debuted at No. 29 for the chart week of 23"} +{"qid": "test1891", "pid": "6196139", "query": "who wrote and performed i can only imagine", "answer": "MercyMe", "passage": "\"I Can Only Imagine (MercyMe song)\"\nMay 2003, with an eventual peak of No. 5 for the chart week of 8 September 2003; in all, \"\"I Can Only Imagine\"\" spent 30 weeks on the chart. On the Adult Top 40 chart, \"\"I Can Only Imagine\"\" debuted at No. 39 for the chart week of 9 August 2003 and reached a peak position of No. 27, holding that spot for three consecutive weeks; in all, the song spent 26 weeks on the chart. On the Mainstream Top 40 chart, the song debuted at No. 37 for the chart week of 12 July 2003, reaching an eventual peak"} +{"qid": "test1893", "pid": "5939378", "query": "who sings i want to rock and roll", "answer": "Kiss", "passage": "\"Fire and Water (Free album)\"\npast and current Kiss frontman Paul Stanley. Black Stone Cherry's version of the title track appeared on the \"\"Classic Rock\"\" covermount CD \"\"Black Stone Cherry – Hits, Rarities & Live\"\" in 2014. \"\"Paul Rodgers is hands-down the greatest rock 'n' roll singer that's ever lived,\"\" enthused frontman Chris Robertson. \"\"One of \"\"[drummer]\"\" John Fred's favourite songs is 'Fire and Water'. And I was like, 'I want to see if I can even sing it!' You gotta be slightly crazy to attempt singing a Paul Rodgers song, but I think we did a cool version. It's acoustic, but still kinda heavy.\"\""} +{"qid": "test1893", "pid": "5508920", "query": "who sings i want to rock and roll", "answer": "Kiss", "passage": "\"Rock and Roll Over\"\nRock and Roll Over Rock and Roll Over is the fifth studio album by American rock band Kiss, released in 1976. It was recorded at the Star Theatre, and in order to get the proper drum sound, Peter Criss recorded the drum tracks in a bathroom, communicating via video-link with the rest of the band. Criss' vocals are featured on the tracks \"\"Baby Driver\"\" and \"\"Hard Luck Woman\"\". Paul Stanley, who originally wanted the latter song to be sung by Rod Stewart, gave it to Criss, after Gene Simmons insisted Criss sing the song instead. Although \"\"Hard Luck Woman\"\" did"} +{"qid": "test1895", "pid": "5973010", "query": "how many champions league trophies does arsenal have", "answer": "13", "passage": "\"Mathieu Debuchy\"\nmy best to help Arsenal compete for trophies\"\". He made his competitive debut for Arsenal in their 3–0 victory over defending league champions Manchester City in the 2014 FA Community Shield at Wembley Stadium on 10 August 2014. Six days later he featured in the Premier League for the first time as an Arsenal player, his injury-time shot was saved and then converted by Aaron Ramsey for a 2–1 win at home against Crystal Palace. Debuchy was sent off for two bookings on 27 August in Arsenal's win over Beşiktaş in the Champions League play-offs. On 13 September 2014, Debuchy"} +{"qid": "test1895", "pid": "16496669", "query": "how many champions league trophies does arsenal have", "answer": "13", "passage": "\"2012–13 Arsenal F.C. season\"\nChampions League also proved fruitless, as despite a valiant effort in Bavaria winning 2–0, they were ultimately knocked out on the away goals rule against Bayern Munich, thus extending their trophy drought for an eighth season. The highest scoring game in their season was the famous 7–5 win in the League Cup (after extra time), where they came back from 4 goals down to beat Reading. Arsenal's highest scoring league win was the 7–3 win against Newcastle United in December. This season, Arsenal finished fourth after having to close another large points gap (like last season) between themselves and their"} +{"qid": "test1895", "pid": "13502667", "query": "how many champions league trophies does arsenal have", "answer": "13", "passage": "\"Brunswick-Balke Collender Cup\"\nOhio does not have any photos of it. Had the trophy survived, the Green Bay Packers would have gained permanent possession of the trophy upon winning their third consecutive league title in 1931. Starting with the 1934 Championship game, 13 years after the original was awarded, a replacement trophy was finally commissioned, and the league's championship team from that season onward received the Ed Thorp Memorial Trophy. The trophy was named after Ed Thorp, a noted referee, rules expert, and sporting goods dealer. Thorp died in 1934, and a large, traveling trophy was made that year, passed along from champion"} +{"qid": "test1897", "pid": "4957122", "query": "what cities are in san joaquin county california", "answer": "Tracy", "passage": "\"Mountain House, San Joaquin County, California\"\nHacienda Business Park and the Dublin/Pleasanton BART station. San Joaquin RTD provides van service to the Tracy Transit Center. Mountain House, San Joaquin County, California Mountain House is a census-designated place and planned community in San Joaquin County, California. An exurb of the San Francisco Bay Area, Mountain House is 5 miles (8 km) from the City of Tracy near Interstate 205. The community of Mountain House in San Joaquin County / Alameda County lies two miles (3 km) northeast of and borrows the name of Alameda County's historical Mountain House, a halfway stop for forty-niners passing over the Altamont"} +{"qid": "test1897", "pid": "16989681", "query": "what cities are in san joaquin county california", "answer": "Stockton", "passage": "\"Government of San Joaquin County, California\"\nseveral other elected offices including the Sheriff, District Attorney, and Assessor, and numerous county departments and entities under the supervision of the County Administrator. Some chartered cities such as Stockton and Tracy provide municipal services such as police, public safety, libraries, parks and recreation, and zoning. Some other cities arrange to have the County provide some or all of these services on a contract basis. In addition, several entities of the government of California have jurisdiction conterminous with San Joaquin County, such as the San Joaquin County Superior Court. The five-member elected San Joaquin County Board of Supervisors (BOS) is"} +{"qid": "test1897", "pid": "4957106", "query": "what cities are in san joaquin county california", "answer": "Tracy", "passage": "\"Mountain House, San Joaquin County, California\"\nMountain House, San Joaquin County, California Mountain House is a census-designated place and planned community in San Joaquin County, California. An exurb of the San Francisco Bay Area, Mountain House is 5 miles (8 km) from the City of Tracy near Interstate 205. The community of Mountain House in San Joaquin County / Alameda County lies two miles (3 km) northeast of and borrows the name of Alameda County's historical Mountain House, a halfway stop for forty-niners passing over the Altamont Pass (historic Livermore Pass) on their way to the gold country of the Sierra Nevada foothills located at the"} +{"qid": "test1897", "pid": "962403", "query": "what cities are in san joaquin county california", "answer": "Stockton", "passage": "\"Stockton, California\"\nStockton, California Stockton is a city in and the county seat of San Joaquin County in the Central Valley of the U.S. state of California. Stockton was founded by Captain Charles Maria Weber in 1849 after he acquired Rancho Campo de los Franceses. The city is named after Robert F. Stockton, and it was the first community in California to have a name not of Spanish or Native American origin. The city is located on the San Joaquin River in the northern San Joaquin Valley and had an estimated population of 320,554 by the California Department of Finance for 2017."} +{"qid": "test1897", "pid": "859613", "query": "what cities are in san joaquin county california", "answer": "Lodi", "passage": "\"San Joaquin County, California\"\nSan Joaquin County, California San Joaquin County () is a county in the U.S. state of California. As of the 2010 census, the population was 685,306. The county seat is Stockton. San Joaquin County comprises the Stockton–Lodi–Tracy metropolitan statistical area within the regional San Jose–San Francisco–Oakland combined statistical area. The county is located in Northern California's Central Valley just east of the very highly populated nine-county San Francisco Bay Area region and is separated from the Bay Area by the Diablo Range of low mountains with its Altamont Pass. One of the smaller counties in area in California, it has"} +{"qid": "test1897", "pid": "14947273", "query": "what cities are in san joaquin county california", "answer": "Manteca", "passage": "\"South San Joaquin Irrigation District\"\nSouth San Joaquin Irrigation District The South San Joaquin Irrigation District (SSJID), in Southern San Joaquin County, California, was formed in 1909. It was established to provide a reliable and affordable source of irrigation water for 72,000 acres of agricultural area surrounding Escalon, Ripon, and Manteca, California. In 2005, as unprecedented urban growth replaced agricultural land, the district expanded into providing domestic water service to South San Joaquin County cities with its state-of-the-art membrane filtration water treatment plant. SSJID’s historic water rights allow for several hydroelectric power plants on a series of dams and reservoirs on the Stanislaus River. SSJID"} +{"qid": "test1897", "pid": "16988328", "query": "what cities are in san joaquin county california", "answer": "Tracy", "passage": "\"Earle E. Williams\"\nHe was also president of the Tracy District Chamber of Commerce, the San Joaquin County Chamber of Commerce, and the San Joaquin County Historical Society; regional vice-president of District 8 of the Conference of California Historical Societies; and served on the Tracy Community Memorial Hospital board of directors, Tracy Planning Commission, and the Tracy City Council. He was also mayor of Tracy. Williams' extensive historical research made him known as \"\"the historian\"\" of southern San Joaquin County. Among his writings are his books \"\"Old Spanish Trails of the San Joaquin Valley\"\", \"\"El Camino Viejo: A Brief History of California's Forgotten"} +{"qid": "test1897", "pid": "859631", "query": "what cities are in san joaquin county california", "answer": "Lodi", "passage": "\"San Joaquin County, California\"\nstaff and faculty as well as community members. \"\"The Pacifican\"\", University of the Pacific's newspaper since 1908 features News, Opinion, Lifestyles, and Sports pertinent to the Pacific campus and surrounding Stockton community. The television show Sons of Anarchy was set in Charming, California, a fictional town in San Joaquin County. Several scenes throughout the series take place in Stockton. San Joaquin Regional Transit District provides city bus service within Stockton. RTD also runs intercity routes throughout the county, and subscription commuter routes to Livermore, Pleasanton, Sacramento, and Santa Clara County. The cities of Lodi, Escalon, Manteca, Tracy and Ripon operate"} +{"qid": "test1897", "pid": "1025982", "query": "what cities are in san joaquin county california", "answer": "Stockton", "passage": "\"Visalia, California\"\nVisalia, California Visalia ( ) is a city situated in the agricultural San Joaquin Valley of California, approximately southeast of San Francisco, north of Los Angeles, west of Sequoia National Park and south of Fresno. The population was 130,104 at the 2015 census. Visalia is the 5th largest city in the San Joaquin Valley after Fresno, Bakersfield, Stockton and Modesto; the 44th most populous in California; and 198th in the United States. As the county seat of Tulare County, Visalia serves as the economic and governmental center to one of the most productive single agricultural counties in the country. Yosemite,"} +{"qid": "test1898", "pid": "1621244", "query": "the first element on the periodic table is", "answer": "hydrogen", "passage": "\"Period 1 element\"\nPeriod 1 element A period 1 element is one of the chemical elements in the first row (or period) of the periodic table of the chemical elements. The periodic table is laid out in rows to illustrate periodic (recurring) trends in the chemical behaviour of the elements as their atomic number increases: a new row is begun when chemical behaviour begins to repeat, meaning that elements with similar behaviour fall into the same vertical columns. The first period contains fewer elements than any other row in the table, with only two: hydrogen and helium. This situation can be explained by"} +{"qid": "test1898", "pid": "1621254", "query": "the first element on the periodic table is", "answer": "hydrogen", "passage": "\"Period 1 element\"\nby a low-temperature separation process called fractional distillation. Period 1 element A period 1 element is one of the chemical elements in the first row (or period) of the periodic table of the chemical elements. The periodic table is laid out in rows to illustrate periodic (recurring) trends in the chemical behaviour of the elements as their atomic number increases: a new row is begun when chemical behaviour begins to repeat, meaning that elements with similar behaviour fall into the same vertical columns. The first period contains fewer elements than any other row in the table, with only two: hydrogen"} +{"qid": "test1898", "pid": "879688", "query": "the first element on the periodic table is", "answer": "hydrogen", "passage": "\"Period (periodic table)\"\nacross periods. Seven periods of elements occur naturally on Earth. For period 8, which includes elements which may be synthesized after 2016, see the extended periodic table. A group in chemistry means a family of objects with similarities like different families. There are 7 periods, going horizontally across the periodic table. The first period contains the least elements than any other, with only two, hydrogen and helium. They therefore do not follow the octet rule. Chemically, helium behaves like a noble gas, and thus is taken to be part of the group 18 elements. However, in terms of its nuclear"} +{"qid": "test1898", "pid": "311749", "query": "the first element on the periodic table is", "answer": "hydrogen", "passage": "\"Periodic table\"\nbeen slowly expanded and refined with the discovery or synthesis of further new elements and the development of new theoretical models to explain chemical behaviour. The modern periodic table now provides a useful framework for analyzing chemical reactions, and continues to be widely used in chemistry, nuclear physics and other sciences. All the elements from atomic numbers 1 (hydrogen) through 118 (oganesson) have been either discovered or synthesized, completing the first seven rows of the periodic table. The first 98 elements exist in nature, although some are found only in trace amounts and others were synthesized in laboratories before being"} +{"qid": "test1898", "pid": "12279254", "query": "the first element on the periodic table is", "answer": "hydrogen", "passage": "\"Periodic table (crystal structure)\"\nPeriodic table (crystal structure) For elements that are solid at standard temperature and pressure the table gives the crystalline structure of the most thermodynamically stable form(s) in those conditions. In all other cases the structure given is for the element at its melting point. Data is presented only for the first 114 elements as well as the 118th (hydrogen through flerovium and oganesson), and predictions are given for elements that have never been produced in bulk (astatine, francium, and elements 100–114 and 118). Among the undiscovered elements, predictions are only available for ununennium and unbinilium (eka-francium and eka-radium), which are"} +{"qid": "test1899", "pid": "4265898", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Laughlin\"\nLaughlin, three additional Golden Nugget resorts have been developed in Atlantic City, New Jersey, Biloxi, Mississippi and Lake Charles, Louisiana. Golden Nugget Laughlin The Golden Nugget Laughlin (formerly the Nevada Club) is a hotel and casino located on the banks of the Colorado River in Laughlin, Nevada. It is owned and operated by Landry's, Inc. It offers a number of restaurants, 300 guest rooms and suites, a casino floor, and meeting spaces. The Golden Nugget offers water taxi service from Bullhead City, Arizona, on the opposite side of the river. Restaurants at the Golden Nugget include Bubba Gump Shrimp Company,"} +{"qid": "test1899", "pid": "7224613", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Atlantic City\"\nWVRL in Elizabeth City, North Carolina. Golden Nugget Atlantic City Golden Nugget Atlantic City is a hotel, casino, and marina located in Atlantic City, New Jersey. Opened in 1985 as Trump's Castle, it was renamed Trump Marina in 1997. Landry's, Inc. purchased the casino from Trump Entertainment Resorts in February 2011, and the sale was approved in late May. Landry's took control of the property on May 23, 2011. The resort sits on a property and contains a casino; 728 guest rooms; seven restaurants; a nightclub; a 462-seat theater; a recreation deck with a health spa, outdoor heated pool, hot"} +{"qid": "test1899", "pid": "7224604", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Atlantic City\"\nGolden Nugget Atlantic City Golden Nugget Atlantic City is a hotel, casino, and marina located in Atlantic City, New Jersey. Opened in 1985 as Trump's Castle, it was renamed Trump Marina in 1997. Landry's, Inc. purchased the casino from Trump Entertainment Resorts in February 2011, and the sale was approved in late May. Landry's took control of the property on May 23, 2011. The resort sits on a property and contains a casino; 728 guest rooms; seven restaurants; a nightclub; a 462-seat theater; a recreation deck with a health spa, outdoor heated pool, hot tubs, cabanas, tennis and basketball courts,"} +{"qid": "test1899", "pid": "17945900", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Lake Charles\"\nGolden Nugget Lake Charles Golden Nugget Lake Charles is a 242-acre waterfront casino resort in Lake Charles, Louisiana, United States, owned and operated by Houston-based Landry's, Inc. The resort features 1038 guest rooms and suites housed in a 22-story tower, an 18-hole golf course, 30,000 square feet of meeting space, more than a dozen dining and bar options, a private beach, marina, spa & salon, retail corridor and expansive 24-hour casino floor. Golden Nugget Lake Charles is the fifth Golden Nugget property, joining the original location in Downtown Las Vegas, and others in Laughlin, Nevada; Atlantic City, New Jersey and"} +{"qid": "test1899", "pid": "4265869", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Las Vegas\"\nGolden Nugget Las Vegas The Golden Nugget Las Vegas is a luxury hotel and casino located in Las Vegas, Nevada on the Fremont Street Experience. The property is owned and operated by Landry's, Inc. It is the largest casino in the downtown area, with a total of 2,419 deluxe guest rooms and suites. The Golden Nugget was originally built in 1946, making it one of the oldest casinos in the city. Jackie Gaughan at one time owned a stake in the hotel as part of his many downtown properties. Steve Wynn bought a stake in the Nugget, which he increased"} +{"qid": "test1899", "pid": "4265876", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Las Vegas\"\nwas still basically flat. Golden Nugget Las Vegas The Golden Nugget Las Vegas is a luxury hotel and casino located in Las Vegas, Nevada on the Fremont Street Experience. The property is owned and operated by Landry's, Inc. It is the largest casino in the downtown area, with a total of 2,419 deluxe guest rooms and suites. The Golden Nugget was originally built in 1946, making it one of the oldest casinos in the city. Jackie Gaughan at one time owned a stake in the hotel as part of his many downtown properties. Steve Wynn bought a stake in the"} +{"qid": "test1899", "pid": "4265896", "query": "who owns the golden nugget casino in atlantic city", "answer": "Landry's, Inc.", "passage": "\"Golden Nugget Laughlin\"\nGolden Nugget Laughlin The Golden Nugget Laughlin (formerly the Nevada Club) is a hotel and casino located on the banks of the Colorado River in Laughlin, Nevada. It is owned and operated by Landry's, Inc. It offers a number of restaurants, 300 guest rooms and suites, a casino floor, and meeting spaces. The Golden Nugget offers water taxi service from Bullhead City, Arizona, on the opposite side of the river. Restaurants at the Golden Nugget include Bubba Gump Shrimp Company, Claim Jumper, Saltgrass Steak House and Starbucks. The property was previously known as the Nevada Club. In 1986, the resort"} +{"qid": "test190", "pid": "3667771", "query": "when did the us stop drafting for the vietnam war", "answer": "1973", "passage": "\"Military service\"\nand substitutes were criminals or men with debilitating health problems, and thus largely useless. The Confederate government had begun drafting men in early 1862. Conscription was next used after the United States entered World War I in 1917. The first peacetime conscription came with the Selective Training and Service Act of 1940. When World War II ended, so did the draft. It was quickly reinstated with the Korean War and retained for the next 20 years, especially in the Vietnam War. Active conscription (\"\"the draft\"\") ended in 1973. In 1979, President Jimmy Carter, a Democrat, brought back draft registration. All"} +{"qid": "test190", "pid": "4516945", "query": "when did the us stop drafting for the vietnam war", "answer": "1973", "passage": "\"Vietnam War casualties\"\nin the military. The number of US military personnel in Vietnam jumped from 23,300 in 1965 to 465,600 by the end of 1967. Between October 1966 and June 1969, 246,000 soldiers were recruited through Project 100,000, of whom 41% were black, while blacks only made up about 11% of the population of the US. Of the 27 million draft-age men between 1964 and 1973, 40% were drafted into military service, and only 10% were actually sent to Vietnam. This group was made up almost entirely of either work-class or rural youth. College students who did not avoid the draft were"} +{"qid": "test190", "pid": "15435081", "query": "when did the us stop drafting for the vietnam war", "answer": "1973", "passage": "\"Draft-card burning\"\nthe Republican Wednesday Group the year before. At the beginning of his second term as President, Nixon stopped the draft after February 1973. The last man to be drafted entered the US Army on June 30, 1973. Draft-card burning Draft-card burning was a symbol of protest performed by thousands of young men in the US and Australia in the 1960s and early 1970s. The first draft-card burners were American men taking part in the opposition to United States involvement in the Vietnam War. The first well-publicized protest was in December 1963, with a 22-year old conscientious objector, Eugene Keyes, setting"} +{"qid": "test1900", "pid": "11790077", "query": "when was to god be the glory written", "answer": "around 1872", "passage": "\"To God Be the Glory\"\nthe Son;
But purer, and higher, and greater will be
Our wonder, our rapture, when Jesus we see. To God Be the Glory To God Be the Glory is a hymn with lyrics by Fanny Crosby and tune by William Howard Doane, first published in 1875. It appears to have been written around 1872 but was first published in 1875 in Lowry and Doane's song collection, \"\"\"\"Brightest and Best\"\".\"\" It was already popular in Great Britain before publication. Ira Sankey had introduced it there during Moody's 1873-1874 evangelistic campaigns. Despite this, the song failed to achieve wide usage in the"} +{"qid": "test1900", "pid": "11790074", "query": "when was to god be the glory written", "answer": "around 1872", "passage": "\"To God Be the Glory\"\nTo God Be the Glory To God Be the Glory is a hymn with lyrics by Fanny Crosby and tune by William Howard Doane, first published in 1875. It appears to have been written around 1872 but was first published in 1875 in Lowry and Doane's song collection, \"\"\"\"Brightest and Best\"\".\"\" It was already popular in Great Britain before publication. Ira Sankey had introduced it there during Moody's 1873-1874 evangelistic campaigns. Despite this, the song failed to achieve wide usage in the United States and was included in very few hymnals. In 1954 Cliff Barrows, song leader for Billy Graham,"} +{"qid": "test1901", "pid": "16159643", "query": "billy ocean when the going gets tough movie", "answer": "The Jewel of the Nile", "passage": "\"When the Going Gets Tough, the Tough Get Going (song)\"\nWhen the Going Gets Tough, the Tough Get Going (song) \"\"When the Going Gets Tough, the Tough Get Going\"\" is a song co-written and originally recorded by English singer Billy Ocean in 1985. Written by Wayne Brathwaite, Barry Eastmond, Mutt Lange and Billy Ocean, the song was used as the theme song for the Michael Douglas film, \"\"The Jewel of the Nile\"\". The saxophone solo is by Vernon Jeffrey Smith. Aided by a video featuring Douglas and co-stars Kathleen Turner and Danny DeVito as lip-synching backup singers, the song became a major international hit reaching number one on the UK"} +{"qid": "test1901", "pid": "1478210", "query": "billy ocean when the going gets tough movie", "answer": "The Jewel of the Nile", "passage": "\"Billy Ocean\"\nsuccesses for Ocean, respectively. It also earned Ocean a second nomination for Best Male R&B Vocal Performance at the 1987 Grammy Awards. In February 1986, Ocean's video of \"\"When the Going Gets Tough, the Tough Get Going\"\" was banned by the BBC, owing to such non-union members as the American actors Michael Douglas, Kathleen Turner and Danny DeVito, all three of whom were cast members of \"\"Romancing the Stone\"\" and \"\"The Jewel of the Nile\"\", miming to the backing vocals. At the 1987 Brit Awards, Ocean was nominated for the Brit Award for Best British Male. Ocean's next album, \"\"Tear"} +{"qid": "test1901", "pid": "1478209", "query": "billy ocean when the going gets tough movie", "answer": "The Jewel of the Nile", "passage": "\"Billy Ocean\"\nLive Aid in 1985, singing \"\"Caribbean Queen\"\" and \"\"Loverboy\"\", from JFK Stadium in Philadelphia. His 1986 album \"\"Love Zone\"\" also sold well. It included the successful singles \"\"When the Going Gets Tough, the Tough Get Going\"\", the theme from the film \"\"The Jewel of the Nile;\"\" this was a No. 1 success in the UK and a No. 2 in the United States; and \"\"There'll Be Sad Songs (To Make You Cry)\"\" (a US No. 1, and also a major UK success). Also included were the title track and \"\"Love Is Forever\"\", which were No. 10 and No. 16 US"} +{"qid": "test1901", "pid": "6200460", "query": "billy ocean when the going gets tough movie", "answer": "The Jewel of the Nile", "passage": "\"The Jewel of the Nile\"\non a new adventure in a fictional African desert, in an effort to find the fabled \"\"Jewel of the Nile\"\". \"\"The Jewel of the Nile\"\" is notable for its top 40 theme song performed by Billy Ocean, \"\"When the Going Gets Tough, the Tough Get Going\"\". Taking place six months after the events in \"\"Romancing the Stone\"\", Joan Wilder's (Kathleen Turner) and Jack Colton's (Michael Douglas) romance has grown stale. While moored at a port in the South of France, Joan, suffering writer's block, wants to return to New York, while Jack prefers aimlessly sailing the world on his boat,"} +{"qid": "test1901", "pid": "12817409", "query": "billy ocean when the going gets tough movie", "answer": "The Jewel of the Nile", "passage": "\"Love Zone\"\nLove Zone Love Zone is the sixth album recorded by British R&B singer and songwriter Billy Ocean. The album includes the hit singles \"\"Love Zone\"\" and \"\"There'll Be Sad Songs (To Make You Cry)\"\", as well as \"\"When the Going Gets Tough, the Tough Get Going\"\", which had originally been featured on the soundtrack to the 1985 film \"\"The Jewel of the Nile\"\". The album was certified double platinum by the Recording Industry Association of America (RIAA) for shipments of over 2 million copies. The album also received a nomination for Best Male R&B Vocal Performance at the 29th Grammy"} +{"qid": "test1901", "pid": "12817410", "query": "billy ocean when the going gets tough movie", "answer": "The Jewel of the Nile", "passage": "\"Love Zone\"\nAwards in February 1987. Love Zone Love Zone is the sixth album recorded by British R&B singer and songwriter Billy Ocean. The album includes the hit singles \"\"Love Zone\"\" and \"\"There'll Be Sad Songs (To Make You Cry)\"\", as well as \"\"When the Going Gets Tough, the Tough Get Going\"\", which had originally been featured on the soundtrack to the 1985 film \"\"The Jewel of the Nile\"\". The album was certified double platinum by the Recording Industry Association of America (RIAA) for shipments of over 2 million copies. The album also received a nomination for Best Male R&B Vocal Performance"} +{"qid": "test1902", "pid": "2564254", "query": "who won the 30 man royal rumble match", "answer": "Randy Orton", "passage": "\"Royal Rumble (2004)\"\nthe Royal Rumble. Goldberg defeated Matt Hardy and announced that he would participate in the Royal Rumble match on January 12. On the January 15 episode of \"\"SmackDown\"\", several qualifying matches were held for the Royal Rumble, including a battle royal between Full Blooded Italians, which Nunzio won. On January 19, Goldberg, Randy Orton, Rob Van Dam, Booker T, Mark Henry and Chris Jericho won matches to qualify for a Battle Royal to determine the #30 entrant of the Royal Rumble match. Goldberg won the match and earned the #30 spot in the Royal Rumble. The professional wrestling matches at"} +{"qid": "test1902", "pid": "4368996", "query": "who won the 30 man royal rumble match", "answer": "Randy Orton", "passage": "\"Royal Rumble (2005)\"\na scheduling of more than one main event. The main event was the annual 30-man Royal Rumble match, which featured wrestlers from both brands. Batista, the twenty-eighth entrant, won the match by last eliminating John Cena, the twenty-fifth entrant. The primary match on the Raw brand was Triple H versus Randy Orton for the World Heavyweight Championship, which Triple H won by pinfall after performing a Pedigree. The primary match on the SmackDown! brand was a Triple Threat match for the WWE Championship between reigning champion John \"\"Bradshaw\"\" Layfield, Kurt Angle, and The Big Show, which JBL won by pinning"} +{"qid": "test1902", "pid": "12201674", "query": "who won the 30 man royal rumble match", "answer": "Randy Orton", "passage": "\"Royal Rumble (2009)\"\nthe event's supercard, a scheduling of more than one main event. The main event was the annual 30-man Royal Rumble match which featured wrestlers from all three brands. Randy Orton, the eighth entrant, won the match by last eliminating Triple H, the seventh entrant. The primary match on the Raw brand was John Cena versus John \"\"Bradshaw\"\" Layfield for the World Heavyweight Championship, which Cena won by pinfall after performing an Attitude Adjustment. The primary match on the SmackDown brand was a No Disqualification match between Jeff Hardy and Edge for the WWE Championship. The predominant match on the ECW"} +{"qid": "test1902", "pid": "6878500", "query": "who won the 30 man royal rumble match", "answer": "Randy Orton", "passage": "\"Royal Rumble (2006)\"\nevent's supercard, a scheduling of more than one main event. The main feature of the event was the 30-man Royal Rumble match, which featured wrestlers from both brands. Rey Mysterio, the second entrant, won the match by last eliminating Randy Orton, the thirtieth entrant. The primary match on the SmackDown! brand was Kurt Angle versus Mark Henry for the World Heavyweight Championship, which Angle won after pinning Henry with a roll-up. The predominant match on the Raw brand was Edge versus John Cena for the WWE Championship, which Cena won after forcing Edge to submit to the STFU. Prior to"} +{"qid": "test1902", "pid": "9720965", "query": "who won the 30 man royal rumble match", "answer": "Randy Orton", "passage": "\"Royal Rumble (2008)\"\nChampionship. Five professional wrestling matches were featured on the event's supercard, a scheduling of more than one main event. The main event was the annual 30-man Royal Rumble match, which featured wrestlers from all three brands. John Cena, the thirtieth entrant and returning from a torn Pectoral muscle, won the match by last eliminating Triple H, the twenty-ninth entrant. The primary match on the Raw brand was Randy Orton versus Jeff Hardy for the WWE Championship, which Orton won by pinfall after performing an RKO. The primary match on the SmackDown brand was Edge versus Rey Mysterio for the World"} +{"qid": "test1904", "pid": "239986", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"Lake Superior\"\nLake Superior Lake Superior (; ), the largest of the Great Lakes of North America, is also the world's largest freshwater lake by surface area, and the third largest freshwater lake by volume. The lake is shared by the Canadian province of Ontario to the north, the U.S. state of Minnesota to the west, and Wisconsin and the Upper Peninsula of Michigan to the south. The farthest north and west of the Great Lakes chain, Superior has the highest elevation of all five great lakes and drains into the St. Mary's River. The Ojibwe name for the lake is \"\"gichi-gami\"\""} +{"qid": "test1904", "pid": "240015", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"Lake Superior\"\nother Great Lakes fish, populations have also been affected by the accidental or intentional introduction of foreign species such as the sea lamprey and Eurasian ruffe. Accidental introductions have occurred in part by the removal of natural barriers to navigation between the Great Lakes. Overfishing has also been a factor in the decline of fish populations. Lake Superior Lake Superior (; ), the largest of the Great Lakes of North America, is also the world's largest freshwater lake by surface area, and the third largest freshwater lake by volume. The lake is shared by the Canadian province of Ontario to"} +{"qid": "test1904", "pid": "2726776", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"Great Bear Lake\"\nLake region. The former mining area Port Radium, site of the Eldorado Mine, where pitchblende was discovered, was located on the eastern shore. Echo Bay Mines Limited leased the old camp and mill at Port Radium to recover silver and copper values from 1965 to 1981. Great Bear Lake The Great Bear Lake (; Slavey: \"\"Sahtú\"\"; ) is the largest lake entirely in Canada (Lake Superior and Lake Huron straddling the Canada–US border are larger), the fourth-largest in North America, and the eighth-largest in the world. The lake is in the Northwest Territories, on the Arctic Circle between 65 and"} +{"qid": "test1904", "pid": "2726771", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"Great Bear Lake\"\nGreat Bear Lake The Great Bear Lake (; Slavey: \"\"Sahtú\"\"; ) is the largest lake entirely in Canada (Lake Superior and Lake Huron straddling the Canada–US border are larger), the fourth-largest in North America, and the eighth-largest in the world. The lake is in the Northwest Territories, on the Arctic Circle between 65 and 67 degrees of northern latitude and between 118 and 123 degrees western longitude, above sea level. The name originated from the Dënesųłiné word \"\"satudene\"\", meaning \"\"grizzly bear water people.\"\" The Sahtu Dene people are named after the lake. Grizzly Bear Mountain on the shore of the"} +{"qid": "test1904", "pid": "239951", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"Lake Michigan\"\nLake Michigan Lake Michigan is one of the five Great Lakes of North America and the only one located entirely within the United States. The other four Great Lakes are shared by the U.S. and Canada. It is the second-largest of the Great Lakes by volume () and the third-largest by surface area (), after Lake Superior and Lake Huron (and is slightly smaller than the U.S. state of West Virginia). To the east, its basin is conjoined with that of Lake Huron through the wide Straits of Mackinac, giving it the same surface elevation as its easterly counterpart; the"} +{"qid": "test1904", "pid": "1712541", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"SS Edmund Fitzgerald\"\nSS Edmund Fitzgerald SS \"\"Edmund Fitzgerald\"\" was an American Great Lakes freighter that sank in a Lake Superior storm on November 10, 1975, with the loss of the entire crew of 29. When launched on June 7, 1958, she was the largest ship on North America's Great Lakes, and she remains the largest to have sunk there. For 17 years, \"\"Edmund Fitzgerald\"\" carried taconite iron ore from mines near Duluth, Minnesota, to iron works in Detroit, Toledo, and other Great Lakes ports. As a workhorse, she set seasonal haul records six times, often breaking her own previous record. Captain Peter"} +{"qid": "test1904", "pid": "3196450", "query": "which is the largest great lake in north america", "answer": "Lake Superior", "passage": "\"Twin Ports\"\nTwin Ports The Twin Ports of Duluth, Minnesota and Superior, Wisconsin, are located at the western part of Lake Superior (the westernmost of North America's Great Lakes) and together are considered the largest freshwater port in the world. They are twin cities and seaports, connected to the Atlantic Ocean through the Great Lakes and the Saint Lawrence Seaway. The Twin Ports are at the core of the U.S. Census Bureau's \"\"Duluth, MN-WI Metropolitan Statistical Area\"\", which includes all of Wisconsin's Douglas County, and Minnesota's Carlton and Saint Louis counties. With a 2010 census population of 279,771, the Duluth MSA ranked"} +{"qid": "test1905", "pid": "20875687", "query": "during the first world war against which country germany did not fight", "answer": "Austria-Hungary", "passage": "\"Religious effects of World War I\"\npower and influence. Religious effects of World War I Christianity in both Europe and the United States served to unite fellow soldiers of the same denomination and motivated them to fight. Some European countries shared unity across denominations while others did not. In Germany, Catholic and Protestant differences caused tension while Austria-Hungary did not unify Catholic services. The Greek Orthodox Church received much of its income from pilgrimage. The First World War stopped pilgrimage and a heavy tax was required of those who didn't want to fight in the war. The factors caused the Greek Orthodox Church to borrow large"} +{"qid": "test1905", "pid": "20875674", "query": "during the first world war against which country germany did not fight", "answer": "Austria-Hungary", "passage": "\"Religious effects of World War I\"\nReligious effects of World War I Christianity in both Europe and the United States served to unite fellow soldiers of the same denomination and motivated them to fight. Some European countries shared unity across denominations while others did not. In Germany, Catholic and Protestant differences caused tension while Austria-Hungary did not unify Catholic services. The Greek Orthodox Church received much of its income from pilgrimage. The First World War stopped pilgrimage and a heavy tax was required of those who didn't want to fight in the war. The factors caused the Greek Orthodox Church to borrow large amounts of money"} +{"qid": "test1905", "pid": "10394004", "query": "during the first world war against which country germany did not fight", "answer": "Austria-Hungary", "passage": "\"Military history of Italy during World War I\"\nto provide compensation for whatever advantage in that area: Austria-Hungary did consult Germany but not Italy before issuing the ultimatum to Serbia, and refused any compensation before the end of the war. Almost a year after the war's commencement, after secret parallel negotiations with both sides (with the Allies in which Italy negotiated for territory if victorious, and with the Central Powers to gain territory if neutral) Italy entered the war on the side of the Allied Powers. Italy began to fight against Austria-Hungary along the northern border, including high up in the now-Italian Alps with very cold winters and"} +{"qid": "test1907", "pid": "384672", "query": "how many countries in the world have scouts", "answer": "216", "passage": "Scouting\nas of 2006 10 million registered Guides around the world, from 216 countries and territories. Fifteen years passed between the first publication of \"\"Scouting for Boys\"\" and the creation of the current largest supranational Scout organization, WOSM, and millions of copies had been sold in dozens of languages. By that point, Scouting was the purview of the world's youth, and several Scout associations had already formed in many countries. Alternative groups have formed since the original formation of the Scouting \"\"Boy Patrols\"\". They can be a result of groups or individuals who maintain that the WOSM and WAGGGS are more"} +{"qid": "test1908", "pid": "3297248", "query": "how many seasons of johnny bravo are there", "answer": "four", "passage": "\"Johnny Bravo\"\nretained this format for the third season. The series sat in limbo once again until it was renewed for a fourth season in 2003, which aired in 2004. The final season of the series returned to the humor of the original shorts and first season of the series, although the Jungle Boy character from the first season never returned. In 2009, IGN ranked \"\"Johnny Bravo\"\" No. 71 for its Top 100 Animated Series list. After the series ended in 2004, the No. 5 Kellogg's Chevrolet was given a special paint scheme with Johnny Bravo on the hood. It was driven"} +{"qid": "test1908", "pid": "3297239", "query": "how many seasons of johnny bravo are there", "answer": "four", "passage": "\"Johnny Bravo\"\nof four seasons and 67 episodes. The first three seasons were produced by Hanna-Barbera Cartoons, while the fourth season was produced by Cartoon Network Studios. \"\"Johnny Bravo\"\" was nominated for 4 Annie Awards, 1 YoungStar Award, and 2 Golden Reel Awards. The series is notable for helping launch the careers of several animators, including Seth MacFarlane and Butch Hartman. Spin-off media include comic books, DVD and VHS releases, collectible toys, and video games. The series centers on Johnny Bravo (voiced by Jeff Bennett, except for UK-exclusive voice work, which was provided by Marc Silk), a muscular, narcissistic, and dimwitted self-proclaimed"} +{"qid": "test191", "pid": "18567737", "query": "who performed the halftime show at super bowl 51", "answer": "Lady Gaga", "passage": "\"Super Bowl LI halftime show\"\nSuper Bowl LI halftime show The Super Bowl LI Halftime show took place on February 5, 2017, at NRG Stadium in Houston, Texas, as part of Super Bowl LI. Lady Gaga headlined the show performing a medley of her songs, including material from her then-most recent studio album, \"\"Joanne\"\". The National Football League (NFL) confirmed the singer would helm the LI halftime show after discussions with the singer Adele proved unproductive. Gaga began rehearsing the show by January 2017 and had no guest performers. Her sister gave her the idea of performing from atop the NRG Stadium; Gaga worked on"} +{"qid": "test191", "pid": "16858082", "query": "who performed the halftime show at super bowl 51", "answer": "Lady Gaga", "passage": "\"Super Bowl LI\"\nBowl 50, confirmed that she would be performing at the Super Bowl LI halftime show on her Instagram account with the message: \"\"It's not an illusion. The rumors are true. This year the SUPER BOWL goes GAGA!\"\" Fox Sports president and executive producer of the show, John Entz, confirmed Gaga's involvement adding \"\"[She] is one of the most electric performers of our generation, and we couldn't be happier with the choice to have her headline the Super Bowl LI Halftime Show... It is going to be an incredible night.\"\" Lady Gaga opened the halftime show with a combination of \"\"God"} +{"qid": "test191", "pid": "18567775", "query": "who performed the halftime show at super bowl 51", "answer": "Lady Gaga", "passage": "\"Super Bowl LI halftime show\"\nMain performer Creative personnel Vendors Lighting crew Art design team Stage video and projection crew Intel Shooting Star drone team All Access Staging & Productions crew Super Bowl LI halftime show The Super Bowl LI Halftime show took place on February 5, 2017, at NRG Stadium in Houston, Texas, as part of Super Bowl LI. Lady Gaga headlined the show performing a medley of her songs, including material from her then-most recent studio album, \"\"Joanne\"\". The National Football League (NFL) confirmed the singer would helm the LI halftime show after discussions with the singer Adele proved unproductive. Gaga began rehearsing"} +{"qid": "test1911", "pid": "1543416", "query": "who did the united states fight in the war of 1812", "answer": "United Kingdom", "passage": "\"Colonial militia in Canada\"\nthe new units were organized within the British army, but charged wholly with the defence of their home colonies. Their professional presence also enhanced training for the citizen militia and established many traditions that continue to modern times. In 1812, with the United Kingdom engaged in Europe, the United States took the opportunity to declare war and launch another attempt to capture Canada and expand westward into Indian territories. While British redcoats did most of the fighting in the War of 1812, Canadian militia and allied Indian warriors proved to be a vital part of Canada's defence. The merit of"} +{"qid": "test1911", "pid": "503785", "query": "who did the united states fight in the war of 1812", "answer": "United Kingdom", "passage": "\"1812 United States presidential election\"\nunsuccessfully challenged Madison for the party's 1808 presidential nomination. While the May 1812 Democratic-Republican congressional nominating caucus re-nominated Madison, the party's New York caucus, also held in May, nominated Clinton for president. After the United States declared war on the United Kingdom in June 1812, Clinton sought to create a coalition of anti-war Democratic-Republicans and Federalists. With Clinton in the race, the Federalist Party declined to formally put forth a nominee, hoping its members would vote for Clinton, but they did not formally endorse him, fearing that an explicit endorsement of Clinton would hurt the party's fortunes in other races."} +{"qid": "test1914", "pid": "14118001", "query": "who was it that described the structure of dna", "answer": "Francis Crick", "passage": "\"Nucleic acid tertiary structure\"\nnew RNA and DNA molecules are structurally characterized. The double helix is the dominant tertiary structure for biological DNA, and is also a possible structure for RNA. Three DNA conformations are believed to be found in nature, A-DNA, B-DNA, and Z-DNA. The \"\"B\"\" form described by James D. Watson and Francis Crick is believed to predominate in cells. James D. Watson and Francis Crick described this structure as a double helix with a radius of 10 Å and pitch of 34 Å, making one complete turn about its axis every 10 bp of sequence. The double helix makes one complete"} +{"qid": "test1914", "pid": "13983383", "query": "who was it that described the structure of dna", "answer": "Francis Crick", "passage": "\"What Mad Pursuit\"\nWhat Mad Pursuit What Mad Pursuit: A Personal View of Scientific Discovery is a book published in 1988 and written by Francis Crick, the English co-discoverer in 1953 of the structure of DNA. In this book, Crick gives important insights into his work on the DNA structure, along with the Central Dogma of molecular biology and the genetic code, and his later work on neuroscience. The main purpose of Crick's book is to describe some of his experiences before and during the \"\"classical period\"\" of molecular biology from the 1953 discovery of the DNA double helix to the 1966 elucidation"} +{"qid": "test1914", "pid": "20492392", "query": "who was it that described the structure of dna", "answer": "James Watson", "passage": "\"Rosalind Franklin and DNA\"\nthe contribution made by Rosalind Franklin, who died in 1958, was largely forgotten. The main motive for Sayre's book came from James Watson's memoir \"\"The Double Helix : A Personal Account of the Discovery of the Structure of DNA\"\". Published in 1968, \"\"The Double Helix\"\" reflected the account of the discovery in which Franklin was portrayed as \"\"uninteresting\"\", \"\"belligerent\"\", and \"\"sharp, stubborn mind\"\", referring her as \"\"Rosy\"\", the name she did not want to be called. Watson described her as having \"\"all the imagination of English blue-stocking adolescents\"\", and \"\"the product of an unsatisfied mother\"\". As a close friend of"} +{"qid": "test1916", "pid": "17628851", "query": "who sings for the beast in the new movie", "answer": "Dan Stevens", "passage": "\"Beauty and the Beast (franchise)\"\nof Friendship\"\" is a live-action/animated direct-to-video installment of the film series. It was directed by Jimbo Mitchell, and released on August 17, 1999. It is set during the original film, and was released in part to help promote Disney Channel's television series, Sing Me a Story with Belle. On March 17, 2017, Disney released a live-action adaptation of the film, which was directed by Bill Condon. The movie stars Emma Watson as Belle, Dan Stevens as the Beast, Luke Evans as Gaston, Ewan McGregor as Lumière, Ian McKellen as Cogsworth, Emma Thompson as Mrs. Potts, Kevin Kline as Maurice, and"} +{"qid": "test1918", "pid": "3156798", "query": "when is the fa cup semi-finals being played", "answer": "Wembley Stadium", "passage": "\"Stamford Bridge (stadium)\"\nof the FA Cup Final from 1920 to 1922, before being replaced by Wembley Stadium in 1923. It has staged ten FA Cup semi-finals, ten Charity Shield matches, and three England matches, the last in 1932. It was one of the home venues for the representative London XI team that played in the original Inter-Cities Fairs Cup. The team played the home leg of the two-legged final at Stamford Bridge, drawing 2–2 with FC Barcelona; they lost the away leg 6–0, however. Results of FA Cup Finals at Stamford Bridge Stamford Bridge has also hosted a variety of other sporting"} +{"qid": "test1918", "pid": "9596150", "query": "when is the fa cup semi-finals being played", "answer": "Wembley Stadium", "passage": "\"FA Cup semi-finals\"\nif the game went into extra time. Villa Park is the most used stadium in FA Cup semi–final history, having hosted 55 semi–finals. The highest attendance for an FA Cup semi-final is 88,141 for Everton's penalty win over Manchester United on 19 April 2009. It was the fourth semi-final to be played at the new Wembley Stadium. The highest winning margin was Newcastle United's 6–0 victory over Fulham in the 1908 Anfield semi-final. The highest post-war winning margin was Stoke City's 5–0 victory over Bolton Wanderers in the second 2011 semi-final on 17 April 2011. The highest-scoring match was Hull"} +{"qid": "test1918", "pid": "10906107", "query": "when is the fa cup semi-finals being played", "answer": "Wembley Stadium", "passage": "\"Ray Olivier\"\nPlay Off Semi Final – 4th Official, 2005 League One Play Off Semi Final – 4th Official, 2005 U18 International England v Norway – Referee, 2003 Birmingham County FA Senior Cup Final - Referee, 2001 FA Umbro Trophy Semi - Final - Referee, 1998 England \"\"B\"\" v Chile \"\"B\"\" - Assistant Referee, 1998 Intertoto Cup Kongsvinger (Norway) v F.C. Twente (the Netherlands) - Assistant Referee, 1997 GM Vauxhall Conference Spalding Cup Final - Referee, 1996 FA Umbro Trophy Final - Assistant Referee, Wembley Stadium and in 1996 U21 International Armenia v Germany - Assistant Referee. Although never to officiate as"} +{"qid": "test192", "pid": "12148528", "query": "who lives in the blue house in balamory", "answer": "Edie McCredie", "passage": "\"Balamory (series 3)\"\nHoolie. Then they learn different types of energy in the nursery. It's a foggy day in Balamory today and Edie tells Archie he's ironing some blankets for ghosts. Miss Hoolie, Edie and Archie dresses up as ghosts in the nursery. Balamory (series 3) This article contains episode information and plot summaries from the British television programme \"\"Balamory\"\". Season Three was broadcast on 20th September 2004. Edie McCredie and Archie come with a way of how they can hide themselves while deer spotting, but it causes chaos around the town.
Josie Jump searches for special building blocks to help her tell"} +{"qid": "test192", "pid": "12148509", "query": "who lives in the blue house in balamory", "answer": "Edie McCredie", "passage": "\"Balamory (series 3)\"\nBalamory (series 3) This article contains episode information and plot summaries from the British television programme \"\"Balamory\"\". Season Three was broadcast on 20th September 2004. Edie McCredie and Archie come with a way of how they can hide themselves while deer spotting, but it causes chaos around the town.
Josie Jump searches for special building blocks to help her tell a fairground story.
Penny gets distracted by watching a football match, and forgets to make an important order for the shop. Suzie takes a flying lesson, but needs someone to go with her so they can tell the children what"} +{"qid": "test1921", "pid": "5914430", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Papa's Got a Brand New Bag\"\nPapa's Got a Brand New Bag \"\"Papa's Got a Brand New Bag\"\" is a song written and recorded by James Brown. Released as a two-part single in 1965, it was Brown's first song to reach the \"\"Billboard\"\" Hot 100 Top Ten, peaking at number eight, and was a number-one R&B hit, topping the charts for eight weeks. It won Brown his first Grammy Award, for Best Rhythm & Blues Recording. Consolidating the rhythmic innovations of earlier James Brown recordings such as \"\"I've Got Money\"\" and \"\"Out of Sight\"\", \"\"Papa's Got a Brand New Bag\"\" is considered seminal in the emergence"} +{"qid": "test1921", "pid": "5914435", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Papa's Got a Brand New Bag\"\nthe mixes of Public Enemy's 1994 song \"\"Give it up\"\", \"\"Flavor Flav\"\" is heard to say \"\"Papa's got a brand new bag.\"\" The same line is also heard in the rap part of Color Me Badd's 1991 single \"\"Color Me Badd\"\" and Big Daddy Kane's 1989 song \"\"Warm It Up, Kane\"\". Papa's Got a Brand New Bag \"\"Papa's Got a Brand New Bag\"\" is a song written and recorded by James Brown. Released as a two-part single in 1965, it was Brown's first song to reach the \"\"Billboard\"\" Hot 100 Top Ten, peaking at number eight, and was a number-one"} +{"qid": "test1921", "pid": "18062908", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Papa's Got a Brand New Pigbag\"\nwell known for its brass riff, the bassline of the track was also ranked by \"\"Stylus Magazine\"\" at number 40 in their 2005 list of the \"\"Top 50 Basslines of All Time\"\". The piece's title is a play on the James Brown song \"\"Papa's Got a Brand New Bag\"\". Papa's Got a Brand New Pigbag \"\"Papa's Got a Brand New Pigbag\"\" is a 1981 instrumental performed by the British dance-punk band Pigbag. The instrumental was written by Pigbag, who produced it, along with, Dave Hunt and Dick O'Dell. Initially, \"\"Papa's Got a Brand new Pigbag\"\" hit number 2 on the"} +{"qid": "test1921", "pid": "5914434", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Papa's Got a Brand New Bag\"\n1995\"\", and the 2009 Expanded Edition of \"\"Live at the Garden\"\". It is also featured in medleys on \"\"Love Power Peace\"\" and \"\"Say It Live and Loud\"\". \"\"with the James Brown Band:\"\" \"\"Papa's Got a Brand New Excuse,\"\" an episode of \"\"The Fresh Prince of Bel Air\"\", was named for the song. The song's title was also played on for \"\"The Simpsons\"\" episode \"\"Poppa's Got a Brand New Badge\"\". 2013 musical Kinky Boots contains the line \"\"Papa's got a brand new shoe\"\" in the song \"\"Everybody Say Yeah\"\" (music and lyrics by Cyndi Lauper). Towards the end of one of"} +{"qid": "test1921", "pid": "4269424", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Poppa's Got a Brand New Badge\"\nis also used in \"\"The Sopranos\"\"' title sequence. Michels stated that the parody was \"\"very fun\"\" to animate; \"\"Being from New Jersey, it was a labor of love,\"\" he said in the episode's DVD commentary. The episode title is a reference to the James Brown song \"\"Papa's Got A Brand New Bag\"\". While \"\"The Frying Game\"\" was originally thought to be the last episode of the season, \"\"Poppa's Got a Brand New Badge\"\" was later revealed to be the real season finale. Although new episodes of \"\"The Simpsons\"\" usually air on Sundays, \"\"Poppa's Got a Brand New Badge\"\" aired on"} +{"qid": "test1921", "pid": "2710180", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "Pigbag\nRough Trade, the title being a clear pun on James Brown's \"\"Papa's Got A Brand New Bag\"\". The track quickly became an underground dance hit, selling many thousands of copies and charting well. The song, and the Paul Oakenfold remix Reach Up (Papa's Got A Brand New Pigbag) has become a stadium anthem in English football (particularly in the Football League), originally adopted by Middlesbrough F.C, often played or chanted before a match or at half time, or after the scoring of a goal, and often incorporating the name of a player into the song. Around this time Hamlin left"} +{"qid": "test1921", "pid": "10969055", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Out of Sight (song)\"\nOut of Sight (song) \"\"Out of Sight\"\" is a rhythm and blues song recorded by James Brown in 1964. A twelve-bar blues written by Brown under the pseudonym \"\"Ted Wright\"\", the stuttering, staccato dance rhythms and blasting horn section riffs of its instrumental arrangement were an important evolutionary step in the development of funk music. In his 1986 autobiography Brown wrote that \"\"Out of Sight\"\" was another beginning, musically and professionally. My music - and most music - changed with \"\"Papa's Got a Brand New Bag\"\", but it really started on \"\"Out of Sight\"\" ... You can hear the band"} +{"qid": "test1921", "pid": "19839082", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Anna King (singer)\"\nnumber 52 on the pop chart later that year. She also recorded an album, \"\"Back To Soul\"\", produced by James Brown, which included what critic Richie Unterberger describes as King's \"\"gritty and powerful\"\" singing on such tracks as \"\"If You Don't Think\"\". After releasing two more singles, King left the James Brown revue in late 1964, and recorded \"\"Mama's Got a Bag of Her Own\"\", an answer record to Brown's \"\"Papa's Got a Brand New Bag\"\". Released on the End label, it was written and produced by Ronald Moseley and Robert Bateman, but was not a hit. She then formed"} +{"qid": "test1921", "pid": "5835244", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"James Brown discography\"\nearly 1960s. Brown's solo aspirations started around 1962. By the time of \"\"Papa's Got a Brand New Bag\"\", he used the Flames less and less as he became a full-fledged solo artist who was now involved in the development of a new R&B subgenre, funk. Eventually the Famous Flames left him in 1968 as did his James Brown band by 1970 and Brown hired The J.B.'s who helped contribute to his continuing success in the 1970s. After their disbanding, Brown struggled for a number of years with recordings before the release of 1985's \"\"Living in America\"\", and having success with"} +{"qid": "test1921", "pid": "9322545", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Cold Sweat\"\n\"\"Cold Sweat\"\" developed from an earlier James Brown song, \"\"I Don't Care\"\", recorded in 1962 and first released on the album \"\"Tour the U.S.A.\"\". According to Brown, \"\"it was a slow, bluesy tune then. It was good that way, but I was really getting into my funk bag now, and it became an almost completely different tune, except for the lyrics.\"\" Ellis recalled in an interview that Building on the innovations of Brown's earlier songs \"\"Out of Sight\"\" and \"\"Papa's Got a Brand New Bag\"\", \"\"Cold Sweat\"\" was a watershed event in the evolution of funk music. While those songs"} +{"qid": "test1921", "pid": "4009806", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"I Got You (I Feel Good)\"\nI Got You (I Feel Good) \"\"I Got You (I Feel Good)\"\" is a song by American singer James Brown. Recorded and released as a single in 1965, it was his highest charting song and is arguably his best-known recording. \"\"I Got You (I Feel Good)\"\" is a twelve-bar blues with a brass-heavy instrumental arrangement similar to Brown's previous hit, \"\"Papa's Got a Brand New Bag\"\". It also features the same emphasis \"\"on the one\"\" (i.e. the first beat of the measure) that characterizes Brown's developing funk style. The lyrics have Brown exulting in how good he feels (\"\"nice, like"} +{"qid": "test1921", "pid": "210439", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"James Brown\"\nto national public attention in the late 1950s as a member of the singing group The Famous Flames with the hit ballads \"\"Please, Please, Please\"\" and \"\"Try Me\"\", Brown built a reputation as a tireless live performer with the Famous Flames and his backing band, sometimes known as the James Brown Band or the James Brown Orchestra. His success peaked in the 1960s with the live album \"\"Live at the Apollo\"\" and hit singles such as \"\"Papa's Got a Brand New Bag\"\", \"\"I Got You (I Feel Good)\"\" and \"\"It's a Man's Man's Man's World\"\". During the late 1960s he"} +{"qid": "test1921", "pid": "13818441", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Brian's Got a Brand New Bag\"\naddition to Visitor and the regular cast, actor Hart Bochner, James Burkholder, actress Aimee Garcia, Jack Samson, actress Stacey Scowley, Debra Skelton, Reginald VelJohnson, actor Tico Wells, actress Mae Whitman, and actor Bruce Willis guest-starred in the episode in both voice and live-action appearances. Recurring guest voice actors Alexandra Breckenridge, writer Steve Callaghan, voice actor Ralph Garman, writer Danny Smith, writer Alec Sulkin, and writer John Viener also made minor appearances. Recurring guest cast members Adam West and Patrick Warburton also made appearances in the episode. The title is a reference to the James Brown song \"\"Papa's Got a Brand"} +{"qid": "test1921", "pid": "5625493", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Bobby Byrd\"\nvocal group. Brown's backing band was a separate group known as the James Brown Orchestra (later known as The J.B.s). The early songs, most of which Byrd participated with the exception of \"\"Try Me\"\", featured Byrd and contributed a great deal to establishing Brown's career before he finally became a full-fledged solo artist with the release of \"\"Papa's Got a Brand New Bag\"\" in 1965. Though Brown asserted himself as the full-fledged leader, he was still just a member of the Flames until that group left him in 1968. In addition, it was Byrd who later saved Brown's career numerous"} +{"qid": "test1921", "pid": "210456", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"James Brown\"\ngospel-tinged vocals, polished choreography and timing as well as Brown's energetic dance moves and high-octane singing upstaged the proposed closing act, the Rolling Stones. Having signed a new deal with King, Brown released his song \"\"Papa's Got a Brand New Bag\"\", which became his first top ten pop hit and won him his first Grammy Award. Later in 1965, he issued \"\"I Got You\"\", which became his second single in a row to reach number-one on the R&B chart and top ten on the pop chart. Brown followed that up with the ballad \"\"It's a Man's Man's Man's World\"\" which"} +{"qid": "test1921", "pid": "8242274", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Bernard Odum\"\nAlabama. Bernard Odum Bernard Odum (1932 – August 17, 2004) was a US bass guitar player best known for performing in James Brown's band in the 1960s. Odum started playing with Brown in 1956 and became a full-time member of Brown's band in 1958. He worked in the James Brown band until the end of the 1960s, and played on such hits as \"\"Papa's Got A Brand New Bag\"\" (1965), \"\"I Got You (I Feel Good)\"\" (1965), and \"\"Cold Sweat\"\" (1967). In 1969, Odum and most of the other musicians in Brown's band walked out on him over a pay"} +{"qid": "test1921", "pid": "8242272", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Bernard Odum\"\nBernard Odum Bernard Odum (1932 – August 17, 2004) was a US bass guitar player best known for performing in James Brown's band in the 1960s. Odum started playing with Brown in 1956 and became a full-time member of Brown's band in 1958. He worked in the James Brown band until the end of the 1960s, and played on such hits as \"\"Papa's Got A Brand New Bag\"\" (1965), \"\"I Got You (I Feel Good)\"\" (1965), and \"\"Cold Sweat\"\" (1967). In 1969, Odum and most of the other musicians in Brown's band walked out on him over a pay dispute"} +{"qid": "test1921", "pid": "9169505", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Jimmy Nolen\"\npopular music such as hip hop is often overlooked. James Brown cuts such as \"\"Papas Got a Brand New Bag,\"\" \"\"I Got You (I Feel Good),\"\" \"\"It's a Man's Man's Man's World,\"\" \"\"Cold Sweat,\"\" \"\"Bring it Up (Hipster’s Avenue),\"\" \"\"Ain’t it Funky,\"\" \"\"Funky Drummer,\"\" and \"\"The Boss\"\" have been sampled, mimicked and otherwise utilized by countless producers, DJs, and MCs. Eric B., the producer/DJ associated with Rakim Allah's early recordings, was known for his use of James Brown samples, most of which featured Nolen, \"\"Jabo\"\" Starks and/or Clyde Stubblefield. A good example of this would be “Move the Crowd”, in"} +{"qid": "test1921", "pid": "1423240", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Solomon Burke\"\nhis \"\"Papa's Got a Brand New Bag\"\" in late 1965, James Brown, believing he deserved to be crowned \"\"King of Soul\"\", hired Burke to perform for one night in Chicago, but ended up paying not to perform but rather to watch him perform instead, expecting Burke also to surrender his crown and title to him. According to Burke, \"\"He paid me $7,500 to stand onstage and hand him my robe and crown. It was a great gig: I got paid and I didn't have to sing a note.\"\" Burke accepted Brown's money, but retained his title and regal paraphernalia. As"} +{"qid": "test1921", "pid": "20446313", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"James Brown (guitarist)\"\nHe is a clothing ambassador for the British brand Farah In 2012, Brown commented to Clash Magazine what is what is like sharing a name with the soul legend, James Brown, \"\"I'll never forget Christmas Day of 2006 when he passed away, I was drunk as a sailor the night before and awoke in the morning to find 26 text messages from friends saying 'R.I.P James' and 'Papa's Got A Brand New Body Bag'. I thought I'd died or something.\"\" James Brown (guitarist) James Brown (born 19 June 1984 in Leeds, United Kingdom) is the guitarist with English indie rock"} +{"qid": "test1921", "pid": "2394141", "query": "who wrote papa got a brand new bag", "answer": "James Brown", "passage": "\"Melvin Parker\"\nMelvin Parker Melvin Parker (born June 7, 1944, Kinston, North Carolina) is a drummer. He and his brother, saxophonist Maceo Parker were important members of James Brown's band. Parker's drumming style was a major ingredient in James Brown's early funk music innovations in the 1960s. In 1964 and 1965 Parker was the drummer on three of Brown's recordings: \"\"Out of Sight,\"\" \"\"Papa's Got A Brand New Bag,\"\" and \"\"I Got You (I Feel Good).\"\" Parker's first association with Brown ended when he was drafted in the mid-1960s. He was replaced in the band by Clyde Stubblefield and Jabo Starks. Parker"} +{"qid": "test1924", "pid": "1829473", "query": "who was the main character in their eyes were watching god", "answer": "Janie Crawford", "passage": "\"Their Eyes Were Watching God\"\nTheir Eyes Were Watching God Their Eyes Were Watching God is a 1937 novel and the best known work by African-American writer Zora Neale Hurston. The novel narrates main character Janie Crawford's \"\"ripening from a vibrant, but voiceless, teenage girl into a woman with her finger on the trigger of her own destiny.\"\" As a young woman, who is fair-skinned with long hair, she expects more out of life, but comes to realize that people must learn about life 'fuh theyselves' (for themselves), just as people can only go to God for themselves. Set in central and southern Florida in"} +{"qid": "test1924", "pid": "1829510", "query": "who was the main character in their eyes were watching god", "answer": "Janie Crawford", "passage": "\"Their Eyes Were Watching God\"\nand de checkers' (70-71) so that he and the other men could play (Bernard 9). Their Eyes Were Watching God Their Eyes Were Watching God is a 1937 novel and the best known work by African-American writer Zora Neale Hurston. The novel narrates main character Janie Crawford's \"\"ripening from a vibrant, but voiceless, teenage girl into a woman with her finger on the trigger of her own destiny.\"\" As a young woman, who is fair-skinned with long hair, she expects more out of life, but comes to realize that people must learn about life 'fuh theyselves' (for themselves), just as"} +{"qid": "test1924", "pid": "1829479", "query": "who was the main character in their eyes were watching god", "answer": "Janie Crawford", "passage": "\"Their Eyes Were Watching God\"\nthe Uplift agenda, the magazine also included homoerotic work as well as portrayals of prostitution. Foreshadowing the African-American community's response to \"\"Their Eyes Were Watching God\"\", \"\"FIRE!!\"\" sold very poorly and was condemned as maligning the image of the community. A \"\"Baltimore Afro-American\"\" reviewer wrote that he \"\"just tossed the first issue of \"\"FIRE!!\"\" into the fire\"\". The main character Janie Crawford, an African-American woman in her early forties, tells the story of her life to her best friend Pheoby Watson through an extended flashback. Readers receive the story of her life in three major periods corresponding to her marriages"} +{"qid": "test1927", "pid": "2500111", "query": "who is the highest selling r&b artist of all time", "answer": "Michael Jackson", "passage": "\"1990s in music\"\nR&B artists such as Janet Jackson, Michael Jackson, Whitney Houston and Mariah Carey are some of the best selling music artists of all time, and especially in the 1990s brought Contemporary R&B to a worldwide platform. In the mid-1990s, neo soul, which added 1970s soul influences to the hip hop soul blend, arose, led by artists such as D'Angelo, Erykah Badu, Lauryn Hill, and Maxwell. Lauryn Hill and Missy Elliott further blurred the line between R&B and hip hop by recording both styles. D'Angelo's \"\"Brown Sugar\"\" was released in June 1995. Although sales were sluggish at first, the album was"} +{"qid": "test1927", "pid": "5295349", "query": "who is the highest selling r&b artist of all time", "answer": "Michael Jackson", "passage": "\"One More Chance (The Notorious B.I.G. song)\"\nScience\"\" (featuring rapper Craig G). Evans was an up-and-coming R&B artist at the time. The remix, produced by Rashad Smith samples DeBarge's 1983 song \"\"Stay with Me\"\". The song peaked at #2 on the \"\"Billboard\"\" Hot 100 and topped the Hot R&B/Hip-Hop Songs chart. It was the highest debuting single of all time, tying with Michael Jackson and Janet Jackson song \"\"Scream\"\" when it entered the Hot 100 at #5 at the time. (This record stood until later that year, when Michael Jackson's \"\"You Are Not Alone\"\" debuted at number one.) It remained the highest debuting single for a rap"} +{"qid": "test1927", "pid": "1269285", "query": "who is the highest selling r&b artist of all time", "answer": "Michael Jackson", "passage": "\"Madonna (entertainer)\"\nher as the best-selling female recording artist and the fourth best-selling act of all time, behind the Beatles, Elvis Presley, and Michael Jackson. According to the Recording Industry Association of America (RIAA), she is the best-selling female rock artist of the 20th century and the second top-selling female albums artist in the United States, with 64.5 million certified albums. Madonna is the most certified artist of all time in United Kingdom, with 45 awards from the British Phonographic Industry (BPI) as of April 2013. Madonna remains the highest-grossing solo touring artist of all time, with over $1.4 billion earned from"} +{"qid": "test1928", "pid": "11095629", "query": "a country having an island location and a country having continental location", "answer": "Australia", "passage": "\"Boundaries between the continents of Earth\"\nislands have no permanent population. All land claims south of 60°S latitude are held in abeyance by the Antarctic Treaty System. The South Georgia and the South Sandwich Islands are closer to Antarctica than to any other continent. However, they are politically associated with the inhabited Falkland Islands which are closer to South America. Furthermore, Argentina, a South American country, maintains its irredentist claims on the islands. The continental shelf boundary separates the two island groups. The Prince Edward Islands are located between Africa and Antarctica, and are the territory of South Africa, an African country. The Australian Macquarie Island"} +{"qid": "test1928", "pid": "11095630", "query": "a country having an island location and a country having continental location", "answer": "Australia", "passage": "\"Boundaries between the continents of Earth\"\nand the New Zealand Antipodes Islands, Auckland Islands, and Campbell Islands, are all located between the Oceanian countries of Australia and New Zealand and Antarctica. Australia's Heard Island and McDonald Islands and the French Kerguelen Islands are located on the Kerguelen Plateau, on the Antarctic continental plate. The French Crozet Islands, Île Amsterdam, Île Saint-Paul, and the Norwegian Bouvet Island are also located on the Antarctic continental plate, and are not often associated with other continents. Boundaries between the continents of Earth The boundaries between the continents of Earth are generally a matter of geographical convention. Several slightly different conventions"} +{"qid": "test1928", "pid": "6075672", "query": "a country having an island location and a country having continental location", "answer": "Australia", "passage": "\"Double-banded plover\"\nthroughout New Zealand however, they are more commonly located around northland coastal areas and around near off shore islands, as well as dense population located on Stewart Island. They are located sparsely on the west coast around Taharoa to the North Cape with a few isolated pairs found around Taranaki. Populations distributed throughout the Auckland and Chatham Islands have been observed to only travel locally throughout the year, whereas birds located on the mainland around high country outwash fans in the South Island generally commence migrations of hundreds of kilometres to Australia. Birds that don’t migrate out of New Zealand"} +{"qid": "test1929", "pid": "20964269", "query": "who plays the girl in wreck it ralph", "answer": "Sarah Silverman", "passage": "\"Wreck-It Ralph (franchise)\"\nThe characters Wreck-It Ralph and Vanellope feature in the 2013 video game \"\"Disney Infinity\"\". Sarah Silverman returns to voice the character of Vanellope, while the character Wreck-It Ralph is voiced by actor Brian T. Delaney. Wreck-It Ralph again features in the 2015 video game \"\"Disney Infinity 3.0\"\", voiced by actor Brian T. Delaney. Wreck-It Ralph will make an appearance in \"\"Kingdom Hearts III\"\" as a Link. When summoned, he will place explosive blocks and destroy them, causing damage to nearby enemies. The first film was nominated for the Academy Award for Best Animated Feature in 2012. Wreck-It Ralph (franchise) Wreck-It"} +{"qid": "test1929", "pid": "15683659", "query": "who plays the girl in wreck it ralph", "answer": "Sarah Silverman", "passage": "\"Wreck-It Ralph\"\nWreck-It Ralph Wreck-It Ralph is a 2012 American 3D computer-animated comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 52nd Disney animated feature film. The film was directed by Rich Moore, who also directed episodes of \"\"The Simpsons\"\" and \"\"Futurama\"\", and the screenplay was written by Phil Johnston and Jennifer Lee from a story by Moore, Johnston, and Jim Reardon. John Lasseter served as the executive producer. The film features the voices of John C. Reilly, Sarah Silverman, Jack McBrayer and Jane Lynch and tells the story of the eponymous arcade game"} +{"qid": "test1929", "pid": "15683696", "query": "who plays the girl in wreck it ralph", "answer": "Sarah Silverman", "passage": "\"Wreck-It Ralph\"\nplanned. Moore also hopes to specifically include an appearance from Mario, citing a \"\"good relationship with Nintendo\"\". On June 30, 2016, Walt Disney Animation Studios announced that the sequel would be released on March 9, 2018, with John C. Reilly, Rich Moore, and writer Phil Johnston attached. John C. Reilly and Sarah Silverman will reprise their roles as Wreck-It Ralph and Vanellope von Schweetz, respectively. The plot will focus on \"\"Ralph leaving the arcade and wrecking the Internet\"\". In April 2017, the sequel was pushed to November 21, 2018 due to \"\"A Wrinkle in Time\"\" taking over its date. Wreck-It"} +{"qid": "test1929", "pid": "13226879", "query": "who plays the girl in wreck it ralph", "answer": "Stefanie Scott", "passage": "\"Stefanie Scott\"\nsecond assistant director in the show's first season. Scott released a song entitled, \"\"Girl I Used to Know\"\" in the same year. The official music video for the song premiered on October 26, the music video features an appearance by Orlando based band Before You Exit portraying as her band. In 2013 Scott was a guest star on the fifteenth season of \"\"\"\" as Clare Wilson. Scott provided the voice of Moppet Girl in \"\"Wreck-It Ralph\"\". Scott also guest-starred on the Disney Channel show \"\"Jessie\"\", as Maybelle. In 2014, Scott began to film four movies, \"\"\"\" (released in June 2015),"} +{"qid": "test1929", "pid": "15683693", "query": "who plays the girl in wreck it ralph", "answer": "Sarah Silverman", "passage": "\"Wreck-It Ralph\"\nA mobile game titled \"\"Wreck-it Ralph\"\" was released in November 2012 for iOS and Android systems, with a Windows Phone 8 version following almost a year later. Initially, the game consisted of three mini-games, \"\"Fix-it Felix Jr.\"\", \"\"Hero's Duty\"\" and \"\"Sweet Climber\"\", which were later joined by \"\"Turbo Time\"\" and \"\"Hero's Duty: Flight Command\"\". The game was retired on August 29, 2014. Ralph also appears in Sega's \"\"Sonic & All-Stars Racing Transformed\"\" as a playable guest character. Ralph and Vanellope appear as playable characters in \"\"Disney Infinity\"\" as well (voiced by Brian T. Delaney and Sarah Silverman, respectively); the Disney"} +{"qid": "test193", "pid": "1618926", "query": "when was the worlds first laptop computer introduced in the market and by whom", "answer": "September 1980", "passage": "Laptop\nwas the Epson HX-20, invented (patented) by Suwa Seikosha's Yukio Yokozawa in July 1980, introduced at the COMDEX computer show in Las Vegas by Japanese company Seiko Epson in 1981, and widely released in 1982. It had an LCD screen, a rechargeable battery, and a calculator-size printer, in a chassis, the size of an A4 notebook. It was described as a \"\"laptop\"\" and \"\"notebook\"\" computer in its patent. The portable micro computer Portal of the French company R2E Micral CCMC officially appeared in September 1980 at the Sicob show in Paris. It was a portable microcomputer designed and marketed by"} +{"qid": "test1930", "pid": "380171", "query": "love is not love that alters when it alteration finds meaning", "answer": "Sonnet 116", "passage": "Sonnet\nand usually summarizes the theme of the poem or introduces a fresh new look at the theme. With only a rare exception, the meter is iambic pentameter. This example, Shakespeare's \"\"Sonnet 116\"\", illustrates the form (with some typical variances one may expect when reading an Elizabethan-age sonnet with modern eyes): Let me not to the marriage of true minds (A) Admit impediments, love is not love (B)* Which alters when it alteration finds, (A) Or bends with the remover to remove. (B)* O no, it is an ever fixèd mark (C)** That looks on tempests and is"} +{"qid": "test1930", "pid": "8592912", "query": "love is not love that alters when it alteration finds meaning", "answer": "Sonnet 116", "passage": "\"Sonnet 116\"\nnegation to define love according to Lukas Erne, \"\"The first and the third [quatrains], it is true, define love negatively: 'love is not...'; Love's not...'. The two quatrains are further tied together by the reappearance of the verbs 'to bend' and 'to alter'.\"\" Love is defined in vague terms in the first quatrain. Garry Murphy observes that the meaning shifts with the distribution of emphasis. He suggests that in the first line the stress should properly be on \"\"me\"\": \"\"Let ME not to the marriage of true minds...\"\"; the sonnet then becomes \"\"not just a gentle metaphoric definition but an"} +{"qid": "test1931", "pid": "5571953", "query": "what olympic athlete has won the most medals", "answer": "American swimmer Michael Phelps", "passage": "\"Sports in the United States\"\nfor the United States. U.S. athletes have won a total of 2,522 medals (1,022 of them being gold) at the Summer Olympic Games and another 305 at the Winter Olympic Games. Most medals have been won in athletics (track and field) (801, 32%) and swimming (553, 22%). American swimmer Michael Phelps is the most decorated Olympic athlete of all time, with 28 Olympic medals, 23 of them gold. The United States has sent athletes to every celebration of the modern Olympic Games except the 1980 Summer Olympics hosted by the Soviet Union in Moscow, which it boycotted because of the"} +{"qid": "test1931", "pid": "16313479", "query": "what olympic athlete has won the most medals", "answer": "Michael Phelps", "passage": "\"2012 Summer Olympics medal table\"\n2012 Summer Olympics medal table The 2012 Summer Olympics medal table is a list of National Olympic Committees (NOCs) ranked by the number of gold medals won during the 2012 Summer Olympics in London, the capital of the United Kingdom, from 27 July to 12 August 2012. Approximately 10,800 athletes participated in 302 events in 26 sports. Of the 204 NOCs participating, 85 received at least one medal; 56 won at least one gold medal. Athletes from the United States won the most gold medals, with 46, and the most overall, with 103. Michael Phelps and Missy Franklin won the"} +{"qid": "test1932", "pid": "5966045", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Linda Harrison (actress)\"\nperiod, Dick was telling me about this fabulous book called \"\"Planet of the Apes\"\" and that it was going to make a great movie. He said, \"\"I want you to play the ape, Dr. Zira.\"\" On March 8, 1966, immediately after her brief appearance on \"\"Batman\"\", Harrison was filmed in ape makeup for a proposed film version of Pierre Boulle's satirical novel, \"\"Monkey Planet\"\", later released as \"\"Planet of the Apes\"\". Zanuck had financed the test in order to show Fox's money men that, despite all doubts to the contrary, the \"\"Planet of the Apes\"\" project was feasible. The test,"} +{"qid": "test1932", "pid": "8074380", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Boom! Studios\"\n\"\"Dawn of the Planet of the Apes: Contagion\"\" bridging \"\"Rise of the Planet of the Apes\"\" and \"\"Dawn of the Planet of the Apes\"\". They followed this with a six-issue limited series called \"\"Dawn of the Planet of the Apes\"\", in the modern movie continuity. The original \"\"Planet of the Apes\"\" movie continuity crossed over with \"\"Star Trek The Original Series\"\" in a co-publishing deal with IDW Publishing. Other film adaptations include an ongoing series based on \"\"Big Trouble In Little China\"\" written by Eric Powell and John Carpenter, an \"\"Escape from New York\"\" comic book, an ongoing series with"} +{"qid": "test1932", "pid": "3235972", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Battle for the Planet of the Apes\"\nthe Forbidden Zone, a hymnal on the pipe organ reading \"\"Mendez II,\"\" busts of past leaders of the mutant society (such as Mendez XIV), and the mutant leader in \"\"Beneath\"\" is also named Mendez. It is clear that Governor Mendez is a different leader than his predecessors, Breck and Kolp, since he is more sympathetic to the apes, as long as they do not invade their territory. In 2006, the \"\"Planet of the Apes\"\" movies were re-released separately and in a new box set. This version was earlier released as a bootleg. Listed are the additional scenes: \"\"Battle for the"} +{"qid": "test1932", "pid": "7204776", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (comics)\"\nthe Planet of the Apes\"\" and \"\"Dawn of the Planet of the Apes\"\". In December 2014 Boom! started the six-issue series \"\"Dawn of the Planet of the Apes\"\", set in the movie continuity of the second reboot film. Some of the comics have been collected together as trade paperbacks: In addition, Adventure Comics released trade-paperback compilations of Marvel's adaptations of the first three films, as well as a collection of its own first four monthly issues, entitled \"\"Monkey Planet.\"\" Planet of the Apes (comics) Planet of the Apes comics are tie-ins to the \"\"Planet of the Apes\"\" media franchise. They"} +{"qid": "test1932", "pid": "18255236", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"War for the Planet of the Apes\"\nfirst things that Mark and I did because we had just finished \"\"Dawn\"\" was that we decided to watch a million movies. We decided to do what people fantasize what Hollywood screenwriters get to do but no one actually does. We got Fox to give us a theater and we watched movie after movie. We watched every \"\"Planet of the Apes\"\" movie, war movies, westerns, \"\"Empire Strikes Back\"\"... We just thought, 'We have to pretend we have all the time in the world,' even though we had limited time. We got really inspired.\"\" Additionally, during production, Reeves and Bomback sought"} +{"qid": "test1932", "pid": "15070315", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Andrew Cosby\"\nonline as a free webcomic. At San Diego Comic Con International 2014, they published a one shot Dawn of the Planet of the Apes: Contagion bridging Rise of the Planet of the Apes and Dawn of the Planet of the Apes.[37] They are following this with a six-issue series Dawn of the Planet of the Apes in the modern movie continuity[38] as the classic movie continuity crosses over with Star Trek The Original Series in a co-publishing deal with IDW Publishing.[39] Other film adaptations include an ongoing series based on Big Trouble In Little China[40] written by Eric Powell and"} +{"qid": "test1932", "pid": "15070314", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Andrew Cosby\"\ncreated. BOOM!'s published many adaptations of popular films. Its Planet of the Apes series of comics is the longest-running adaptation of the series, publishing more comics than Marvel (29 issues) and Malibu (50 issues).[35] BOOM!'s series include: Planet of the Apes (16 issues plus an annual, a \"\"giant\"\" issue, a \"\"special\"\" issue, and a \"\"Spectacular\"\"), Betrayal on the Planet of the Apes (4 issues),[36] Exile on Planet of the Apes (4 issues), and Planet of the Apes: Cataclysm (12 issues). Just before the release of Rise of the Planet of the Apes BOOM! serialized a one-shot prelude to the movie"} +{"qid": "test1932", "pid": "7204763", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (comics)\"\nfive movies, the magazine featured original \"\"Apes\"\" stories, with writing from Doug Moench and Gerry Conway and art from Mike Esposito, Mike Ploog, George Tuska, and many others. Articles about the making of both the movie series and the later \"\"Planet of the Apes\"\" television series were also a mainstay. In 1975, Adventures on the Planet of the Apes offered color versions of the adaptations of the first two films in five- or six-issue arcs, for total of 11 issues. It was written by Doug Moench. The stories from the U.S. magazine were edited and released by Marvel UK in"} +{"qid": "test1932", "pid": "8074379", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Boom! Studios\"\nthe longest-running adaptation of the series, publishing more comics than Marvel (29 issues) and Malibu (50 issues). BOOM!'s series include: \"\"Planet of the Apes\"\" (16 issues plus an annual, a \"\"giant\"\" issue, a \"\"special\"\" issue, and a \"\"Spectacular\"\"), \"\"Betrayal on the Planet of the Apes\"\" (4 issues), \"\"Exile on Planet of the Apes\"\" (4 issues), and \"\"Planet of the Apes: Cataclysm\"\" (12 issues). Just before the release of \"\"Rise of the Planet of the Apes\"\" BOOM! serialized a one-shot prelude to the movie online as a free webcomic. At San Diego Comic Con International 2014, they published a one shot"} +{"qid": "test1932", "pid": "4626642", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Return to the Planet of the Apes\"\nCharacters in the animated series frequently mention prominent apes noticeably named after human historical figures by appropriately inserting the word \"\"ape\"\" into their name. A notable example is \"\"William Apespeare\"\", an ape analog of William Shakespeare. Another scene shows a couple of ape soldiers chatting about a new movie called \"\"The Apefather\"\", an apparent analog of \"\"The Godfather\"\" (unlike the live-action series and movies, the ape society is presented as being technologically advanced – as in the novel – rather than agrarian). Austin Stoker, the voice of Jeff, had previously played Mr. MacDonald in \"\"Battle for the Planet of the"} +{"qid": "test1932", "pid": "16563621", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Dawn of the Planet of the Apes\"\nsequels, \"\"Dawn\"\" is to \"\"Rise of the Planet of the Apes\"\" what \"\"The Empire Strikes Back\"\" was to \"\"Star Wars\"\"—it's that much better.\"\" Tim Robey of \"\"The Daily Telegraph\"\" said, \"\"There's evident patience and intelligence to the filmmaking all over, as well as an engagement with genuine ideas about diplomacy, deterrence, law and leadership. However often it risks monkey-mad silliness, it's impressively un-stupid.\"\" Drew McWeeny of HitFix awarded the film an \"\"A+\"\" grade and said \"\"\"\"Dawn\"\" is not just a good genre movie or a good summer movie. It's a great science-fiction film, full-stop, and one of the year's very"} +{"qid": "test1932", "pid": "1344315", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Beneath the Planet of the Apes\"\ncommon to virtually every sequel in movie history—but it's reasonably entertaining and fast-moving, a good enough Saturday matinee kind of movie.\"\" \"\"The Monthly Film Bulletin\"\" declared, \"\"Certainly it's nice to see some of the magnificent settings again, and most of the acting is of a high standard; but this isn't enough to transcend the script's limitations or the virtual annihilation of the original's deftly constructed atmosphere.\"\" Beneath the Planet of the Apes Beneath the Planet of the Apes is a 1970 American science fiction film directed by Ted Post and written by Paul Dehn. It is the second of five"} +{"qid": "test1932", "pid": "4626646", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Return to the Planet of the Apes\"\nDVD case for the individual release has many errors. The episodes are listed in airdate order as opposed to the chronological order on the actual DVDs, one episode is listed as airing the day before it actually aired and two are shown as having the same airdate resulting in the airdates of the two subsequent episodes being one week off. Return to the Planet of the Apes Return to the Planet of the Apes is an animated series, by DePatie-Freleng Enterprises in association with 20th Century Fox Television, based upon \"\"Planet of the Apes\"\" by Pierre Boulle. Boulle's novel had"} +{"qid": "test1932", "pid": "7204774", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (comics)\"\nthe Apes\"\", set two years later. Beginning in September 2012, \"\"Planet of the Apes: Cataclysm\"\" took over as Boom!'s regular monthly series. Set eight years prior to the original Planet of the Apes, this series was written by Corinna Sara Bechko and Gabriel Hardman, authors of both the \"\"Betrayal\"\" and \"\"Exile\"\" miniseries, and mixed several characters from those series with characters from the original movie. Boom! and IDW Publishing published a crossover between \"\"Planet of the Apes\"\" and \"\"\"\", titled \"\"\"\". The first issue was published in December 2014. In February 2017, Boom! and DC Comics published a 6 issue"} +{"qid": "test1932", "pid": "7204775", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (comics)\"\ncrossover called \"\"Planet of the Apes/Green Lantern\"\". It was set soon after the events of the first film. Just before the release of the feature film \"\"Rise of the Planet of the Apes\"\" Boom! serialized 6 installments of five-page webcomics that served as a prelude to the movie. The stories featured Alpha and Bright Eyes, Caesar's parents, and detailed their capture in the wild and the time they spent in the Gen-Sys Laboratories. At San Diego Comic Con International 2014, Boom! published a one-shot stand-alone print comic book, called Dawn of the Planet of the Apes: Contagion bridging \"\"Rise of"} +{"qid": "test1932", "pid": "4626640", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Return to the Planet of the Apes\"\nIn order for the series to make any sense, the episodes need to be viewed in order. The animated series does chronologically fit with the rest of the \"\"Apes\"\" universe. It borrows characters and elements from the movies, the TV series and the original novel. General Urko is borrowed from the TV series. Along with Zaius, Zira and Cornelius, Brent (renamed here as Ron Brent) and Nova are from the movie series. Krador and the Underdwellers in the animated series are loosely based on the mutants in \"\"Beneath the Planet of the Apes\"\". As with the live action television series,"} +{"qid": "test1932", "pid": "5966087", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Linda Harrison (actress)\"\nJr. and Sara Karloff. Harrison found it \"\"rewarding when you really haven't done anything for a number of years and then, all of a sudden, people want your autograph. It was very gratifying.\"\" Eventually, Harrison became an institution at Planet of the Apes cons. \"\"I like it. It's very good. You're being appreciated for your work.\"\" In 2001, she had a cameo as the \"\"Woman in Cart\"\" in Tim Burton's remake of \"\"Planet of the Apes\"\". \"\"They are much more brutal in the new movie,\"\" she said. \"\"And strong. They literally hurl the humans 50 or 60 feet.\"\" Most of"} +{"qid": "test1932", "pid": "7204772", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (comics)\"\nthe \"\"Empire\"\" follow-up. Boom!'s \"\"Planet of the Apes\"\" series of comics is the longest-running adaptation of the series, publishing more comics than Marvel (29 issues) and Malibu (50 issues). Beginning April 2011, Boom! Studios launched a new series written by novelist Daryl Gregory, illustrated by Carlos Magno and edited by Ian Brill, with covers by Karl Richardson and Chad Hardin that took place 500 years before the original 1968 \"\"Planet of the Apes\"\" movie in the continuity of the first five films. It ran for a total of 16 issues, ending in August 2012. The storyline was continued in \"\"Planet"} +{"qid": "test1932", "pid": "13813710", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes\"\nindependent film director, would develop a new \"\"Apes\"\" movie. At a Fox executive's invitation, Rifkin pitched a concept for \"\"Return to the Planet of the Apes\"\", an alternative sequel to \"\"Planet\"\" that ignored the other four films. In Rifkin's initial concept, Taylor's descendant Duke launches a Spartacus-like uprising against Roman-inspired ape oppressors led by General Izan. Days before the project was scheduled to enter pre-production, Fox brought in new studio executives who sent it back to development. They commissioned Rifkin to write several redrafts, but found them unsatisfactory and ultimately scrapped the project. After several years in limbo, Fox returned"} +{"qid": "test1932", "pid": "12677622", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (2001 film)\"\nto a sequel, \"\"but not a sequel to the fifth film, an alternate sequel to the first film\"\". He took influences from \"\"Spartacus\"\", with the storyline being \"\"the ape empire had reached its Roman era. A descendant of Charlton Heston's character named Duke would eventually lead a human slave revolt against the oppressive Roman-esque apes, led by General Izan. A real sword and sandal spectacular, monkey style. \"\"Gladiator\"\" did the same movie without the ape costumes.\"\" Titled \"\"Return to the Planet of the Apes\"\", the project was put on fast track and almost entered pre-production. Rick Baker was hired to"} +{"qid": "test1932", "pid": "19069255", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Nick Thurston\"\nsecondary ape protagonist in \"\"Dawn of the Planet of the Apes.\"\" Nick has also acted on the set of several TV shows including \"\"Ghost Whisperer,\"\" \"\"Cold Case,\"\" and \"\"The Truth Below\"\" on well-known TV broadcasting stations including CBS and MTV. Thurston has also appeared in \"\"The Lake,\"\" an online TV series created by Warner Bros. Entertainment Inc.. Thurston was born in Oakland, California on December 7, 1987. Thurston portrays Blue Eyes in \"\"Dawn of the Planet of the Apes.\"\" Here, Thurston plays the role of a young, rebellious, and stubborn ape. This is Thurston’s first experience with a blockbuster movie,"} +{"qid": "test1932", "pid": "1418060", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Roddy McDowall\"\nthird \"\"Apes\"\" film with 1972's \"\"Conquest of the Planet of the Apes\"\". He had supporting roles in \"\"The Life and Times of Judge Roy Bean\"\" (1972) and \"\"The Poseidon Adventure\"\" (1972) and starred in a pilot that did not go to series, \"\"Topper Returns\"\" (1973), and \"\"The Legend of Hell House\"\" (1973). His final \"\"Apes\"\" movie was \"\"Battle for the Planet of the Apes\"\" (1973). He also appeared in \"\"McMillan & Wife\"\", \"\"Love, American Style\"\", \"\"Arnold\"\" (1973), a remake of \"\"Miracle on 34th Street\"\" (1973), \"\"The Elevator\"\" (1974), and \"\"The Snoop Sisters\"\". He starred in the short lived TV spin-off"} +{"qid": "test1932", "pid": "9203450", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes: Best of Guano Apes\"\nNasic starting her solo career and the remaining three formed IO. The album charted at number 32 in their native Germany. All tracks are written by Sandra Nasić, Henning Rümenapp, Stefan Ude and Dennis Poschwatta unless otherwise noted. Planet of the Apes: Best of Guano Apes Planet of the Apes: Best of Guano Apes is a greatest hits album by Guano Apes, released on 29 November 2004. The album is distributed by BMG and is available in three versions: The album features all of their singles, their favourite songs and one new song - \"\"Break the Line\"\". The digipak version"} +{"qid": "test1932", "pid": "3772310", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Professor Bobo\"\napes, and of sensory-driven primate, often regressing to more primitive desires and actions. In the first three shows of Season 8, he leads an ape laboratory directed by the \"\"Lawgiver\"\" (\"\"Planet of the Apes\"\") to continue the movie-watching \"\"experiments\"\" on Mike Nelson and his robots, again trapped in the \"\"Satellite of Love\"\". In subsequent shows, Bobo travels with the Lawgiver, who turns out to be Pearl Forrester (inheriting the mad scientist role from her son, Dr. Clayton Forrester). Bobo ultimately becomes one of her henchmen after his planet is destroyed when Mike Nelson helps the apes and their new mutant"} +{"qid": "test1932", "pid": "170672", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Gene Roddenberry\"\naired as a TV movie in March 1973, setting new records for the \"\"Thursday Night Movie of the Week\"\". Roddenberry was asked to produce four more scripts for episodes, but before production could begin again, CBS aired the film \"\"Planet of the Apes.\"\" It was watched by an even greater audience than \"\"Genesis II.\"\" CBS scrapped \"\"Genesis II\"\" and replaced it with a television series based on the film; the results were disastrous from a ratings standpoint, and \"\"Planet of the Apes\"\" was quickly canceled. \"\"The Questor Tapes\"\" project reunited him with his \"\"Star Trek\"\" collaborator, Gene L. Coon, who"} +{"qid": "test1932", "pid": "12258581", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (1968 film)\"\n\"\"The Twilight Zone\"\" creator Rod Serling, though it was finally rejected for a number of reasons. A prime concern was cost, as the technologically advanced ape society portrayed by Serling's script would have involved expensive sets, props, and special effects. The previously blacklisted screenwriter Michael Wilson was brought in to rewrite Serling's script and, as suggested by director Franklin J. Schaffner, the ape society was made more primitive as a way of reducing costs. Serling's stylized twist ending was retained, and became one of the most famous movie endings of all time. The exact location and state of decay of"} +{"qid": "test1932", "pid": "8745681", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Battlefield Earth (film)\"\ninto human hunting grounds …\"\" Hap Erstein of \"\"The Palm Beach Post\"\" commented: \"\"…production designer Patrick Tatopoulos contributes some good work, imagining the ruins of Denver and Washington, D.C., with echoes of \"\"Planet of the Apes\"\".\"\" In her book \"\"I Love Geeks: The Official Handbook\"\", Carrie Tucker lists \"\"Battlefield Earth\"\" as a cult classic in the \"\"so bad, it's good\"\" genre. \"\"Battlefield Earth\"\" frequently appears on worst film lists, and is included on Rotten Tomatoes' \"\"100 Worst of the Worst Movies\"\" list. Rotten Tomatoes ranked the film 27th in the 100 worst reviewed films of the first decade of the"} +{"qid": "test1932", "pid": "5316386", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"Planet of the Apes (TV series)\"\nruins. Discussions for a \"\"Planet of the Apes\"\" television series were made by producer Arthur P. Jacobs as early as 1971. Because of the success of the films, the idea of a television series was put on hold until after the completion of \"\"Battle for the Planet of the Apes\"\" in the first half of 1973. However, shortly after the premiere of \"\"Battle\"\", Jacobs died, and his production company APJAC Productions sold all \"\"Planet of the Apes\"\" rights and privileges to 20th Century Fox. Subsequently, television rights for the first three \"\"Planet of the Apes\"\" films were sold to CBS"} +{"qid": "test1932", "pid": "9988166", "query": "list all the planet of the ape movies", "answer": "Planet of the Apes", "passage": "\"The Terrible Thunderlizards\"\nBill and Scooter. The Thuggosaurs are a race of undead dinosaurs that live in the X-Zone on the outskirts of Jurassic City (a frequent target of the Thuggosaurs) and are recurring antagonists in the program. The Thuggosaurs are a parody of the hooded, mutant survivors living in the Forbidden Zone from the movies \"\"Beneath the Planet of the Apes\"\" and prequel \"\"Battle for the Planet of the Apes\"\" and their targeting of Ape City. Thuggo (voiced by Brad Garrett) is the diabolical leader of a group of black-hooded skeleton-like Thuggosaurs. He is a Megalosaurus. His vanity insists he always look"} +{"qid": "test1933", "pid": "331313", "query": "what is the highest base on the ph scale", "answer": "greater than 14", "passage": "PH\ntemperature increases. Pure water is neutral, pH 7 at (25 °C), being neither an acid nor a base. Contrary to popular belief, the pH value can be less than 0 or greater than 14 for very strong acids and bases respectively. Measurements of pH are important in agronomy, medicine, chemistry, water treatment, and many other applications. The pH scale is traceable to a set of standard solutions whose pH is established by international agreement. Primary pH standard values are determined using a concentration cell with transference, by measuring the potential difference between a hydrogen electrode and a standard electrode such"} +{"qid": "test1934", "pid": "15950260", "query": "who sang if this world were mine with luther vandross", "answer": "Tammi Terrell", "passage": "\"Instant Love\"\nreached #16 on the R&B charts. The two artists did however make an impact with their duet on a remake of the Marvin Gaye & Tammi Terrell classic \"\"If This World Were Mine\"\" which became the biggest hit (#4 R&B) off of this album. A third single, \"\"Look Before You Leap\"\", stalled out at #77 on the R&B charts. 9. \"\"Instant Love\"\" (single edit) - 3:58 10. \"\"If This World Were Mine\"\" (with Luther Vandross) (single edit) - 4:00 Instant Love Instant Love is a 1982 album by American singer Cheryl Lynn, released on Columbia Records. Luther Vandross produced the"} +{"qid": "test1934", "pid": "15950259", "query": "who sang if this world were mine with luther vandross", "answer": "Tammi Terrell", "passage": "\"Instant Love\"\nInstant Love Instant Love is a 1982 album by American singer Cheryl Lynn, released on Columbia Records. Luther Vandross produced the album and also performed a duet with Lynn on \"\"If This World Were Mine\"\", a cover of the original recording by Marvin Gaye and Tammi Terrell. The arrangements were by Luther Vandross, Marcus Miller and Nat Adderley, Jr. The album peaked at #7 on the R&B album charts and #133 on The Billboard 200. Coming off of his success with Aretha Franklin's \"\"Jump to It,\"\" Cheryl and Luther delivered the title cut as a first single, but it only"} +{"qid": "test1934", "pid": "5495556", "query": "who sang if this world were mine with luther vandross", "answer": "Cheryl Lynn", "passage": "\"Cheryl Lynn\"\non to chart more than a dozen Pop and Rock songs throughout the years, Lynn's vocal was credited for the groups charting their only R&B (#18) and Dance (#80) on the \"\"Billboard\"\" charts. In 1981 Ray Parker Jr. was called in to produced Lynn's third album, \"\"In The Night\"\". It featured the major dance & R&B single, \"\"Shake It Up, Tonight\"\". The next year, Luther Vandross was asked to produce Lynn's fourth album, \"\"Instant Love\"\". The 2nd single from the album, \"\"If This World Were Mine\"\" – a 1982 duet with Luther Vandross that was a cover version of a"} +{"qid": "test1935", "pid": "3686259", "query": "what grade was arnold from hey arnold in", "answer": "fourth", "passage": "\"Hey Arnold!: The Movie\"\n(each including a boss on the fourth level) and the player can play as Arnold, Gerald, Grandpa, and Grandma. Helga is playable only with a cheat code found on various websites. A television film entitled \"\"\"\" serves as a sequel to this film. \"\"Hey Arnold!: The Jungle Movie\"\" originally aired in the United States on November 24, 2017, over 13 years after the conclusion of the television series. The debut airing was simulcast on Nickelodeon, TeenNick, and Nicktoons. Hey Arnold!: The Movie Hey Arnold!: The Movie (or simply Hey Arnold!) is a 2002 American animated adventure comedy film based on"} +{"qid": "test1935", "pid": "1657405", "query": "what grade was arnold from hey arnold in", "answer": "fourth", "passage": "\"Hey Arnold!\"\nHey Arnold! Hey Arnold! is an American animated television series created by Craig Bartlett that aired on Nickelodeon from October 7, 1996 to June 8, 2004. The show centers on a fourth grader named Arnold, who lives with his grandparents in an inner-city boarding house. Episodes center on his experiences navigating big city life while dealing with the problems he and his friends encounter. Bartlett's idea for the show is based on a minor character named Arnold whom he created while working on \"\"Pee-wee's Playhouse\"\". The executives enjoyed the character, and Bartlett completed the cast by drawing inspiration from people"} +{"qid": "test1935", "pid": "3686254", "query": "what grade was arnold from hey arnold in", "answer": "fourth", "passage": "\"Hey Arnold!: The Movie\"\njumbotron monitor to be destroyed. Helga denies ever having loved Arnold, claiming that she said those things in \"\"the heat of the moment\"\". Arnold, unconvinced, pretends to accept it as she returns home. In 1998, the Nickelodeon cable network renewed the original \"\"Hey Arnold!\"\" series for a fourth season, and gave creator Craig Bartlett the chance to develop two feature-length adaptations. As work on the fifth season was completing, in 2001, Bartlett and company engaged in the production of the first film, titled \"\"Arnold Saves the Neighborhood\"\". The \"\"Neighborhood\"\" project was originally produced for television and home video, but eventually"} +{"qid": "test1935", "pid": "19750803", "query": "what grade was arnold from hey arnold in", "answer": "fourth", "passage": "\"Hey Arnold!: The Jungle Movie\"\nfrom the original series, and 11 new cast members to replace former actors who retired, grew up, or died. In 1998, when Nickelodeon renewed \"\"Hey Arnold!\"\" for a fourth season, they offered series creator Craig Bartlett a chance to develop two feature-length films based on the series: one as a TV movie or direct-to-video, called \"\"Arnold Saves the Neighborhood\"\", and another slated for a theatrical release. Nickelodeon asked Bartlett to do \"\"the biggest idea he could think of\"\" for the theatrical film. After looking at the series, Bartlett decided to make the theatrical feature as a spiritual sequel/follow-up to the"} +{"qid": "test1936", "pid": "18218704", "query": "who has the most rings in the nba right now 2017", "answer": "Bill Russell", "passage": "\"NBA Championship ring\"\nNBA Championship ring The NBA Championship ring is an annual award given by the National Basketball Association to the team that wins the NBA Finals. Rings are presented to the team's players, coaches, and members of the executive front office. Red Auerbach has the most rings overall with 16. Phil Jackson has the most as coach and Bill Russell has the most as a player (11 each) NBA Championship rings have been handed out since the first NBA Finals in 1947. In the modern era, the rings are handed to the defending champions during the team's first home game each"} +{"qid": "test1936", "pid": "18218705", "query": "who has the most rings in the nba right now 2017", "answer": "Bill Russell", "passage": "\"NBA Championship ring\"\nseason. NBA Championship rings are silver or gold and include the following features: In three NBA Finals, John Havlicek chose two wrist watches and a liqueur tray set as commemorative items. NBA Championship ring The NBA Championship ring is an annual award given by the National Basketball Association to the team that wins the NBA Finals. Rings are presented to the team's players, coaches, and members of the executive front office. Red Auerbach has the most rings overall with 16. Phil Jackson has the most as coach and Bill Russell has the most as a player (11 each) NBA Championship"} +{"qid": "test1936", "pid": "19423220", "query": "who has the most rings in the nba right now 2017", "answer": "Bill Russell", "passage": "\"2017 NBA Playoffs\"\nThompson's, and Draymond Green's second in three years. Durant, who scored over 30 points in each of five games (the first player to do so since Shaquille O'Neal in 2000 with Los Angeles), was the recipient of the 2017 Bill Russell NBA Finals' MVP award. Within each conference, the eight teams with the most wins qualify for the playoffs. The seedings are based on each team's record. Each conference's bracket is fixed; there is no reseeding. All rounds are best-of-seven series; the team that has four wins advances to the next round. As stated above, all rounds, including the NBA"} +{"qid": "test1937", "pid": "1052555", "query": "when was the first wonder woman comic released", "answer": "January 1942", "passage": "\"Wonder Woman\"\nWonder Woman Wonder Woman is a fictional superhero appearing in American comic books published by DC Comics. The character is a founding member of the Justice League, and an ambassador of the Amazon people. The character first appeared in \"\"All Star Comics\"\" #8 in October 1941 with her first feature in \"\"Sensation Comics\"\" #1, January 1942. The \"\"Wonder Woman\"\" title has been published by DC Comics almost continuously except for a brief hiatus in 1986. In her homeland, the island nation of Themyscira, her official title is Princess Diana of Themyscira, Daughter of Hippolyta. When blending into the society outside"} +{"qid": "test1937", "pid": "15997930", "query": "when was the first wonder woman comic released", "answer": "December 1941", "passage": "\"Wonder Woman in other media\"\nor that references Wonder Woman: Wonder Woman in other media Since her debut in \"\"All Star Comics\"\" #8 (December 1941), Diana Prince/Wonder Woman has appeared in a number of formats besides comic books. Genres include animated television shows, direct-to-DVD animated films, video games, the 1970s live action television series, \"\"Wonder Woman\"\", the 2014 CGI theatrical release, \"\"The Lego Movie\"\", and the live-action DCEU films, \"\"\"\" (2016), \"\"Wonder Woman\"\" (2017), and \"\"Justice League\"\" (2017). She will appear in \"\"Wonder Woman 1984\"\", which will be released in 2020. \"\"Batman v Superman: Dawn of Justice\"\" is a 2016 American superhero film and the"} +{"qid": "test1937", "pid": "15997897", "query": "when was the first wonder woman comic released", "answer": "December 1941", "passage": "\"Wonder Woman in other media\"\nWonder Woman in other media Since her debut in \"\"All Star Comics\"\" #8 (December 1941), Diana Prince/Wonder Woman has appeared in a number of formats besides comic books. Genres include animated television shows, direct-to-DVD animated films, video games, the 1970s live action television series, \"\"Wonder Woman\"\", the 2014 CGI theatrical release, \"\"The Lego Movie\"\", and the live-action DCEU films, \"\"\"\" (2016), \"\"Wonder Woman\"\" (2017), and \"\"Justice League\"\" (2017). She will appear in \"\"Wonder Woman 1984\"\", which will be released in 2020. \"\"Batman v Superman: Dawn of Justice\"\" is a 2016 American superhero film and the second installment of the DC"} +{"qid": "test1937", "pid": "9462011", "query": "when was the first wonder woman comic released", "answer": "December 1941", "passage": "\"Wonder Woman (Earth-Two)\"\nWonder Woman (Earth-Two) Wonder Woman of Earth-Two is a fictional DC Comics superheroine retconned from original stories by Wonder Woman writer and creator William Moulton Marston and his wife Elizabeth Holloway Marston. This version of Wonder Woman first appeared in \"\"All Star Comics\"\" #8 (December 1941). This was after DC Comics established a multiverse in their published stories to explain how heroes could have been active before (and during) World War II and retain their youth and (subsequent) origins during the 1960s. The Earth-Two Wonder Woman was first featured as a character separate from Wonder Woman (known as Earth-One Wonder"} +{"qid": "test1937", "pid": "1052688", "query": "when was the first wonder woman comic released", "answer": "January 1942", "passage": "\"Wonder Woman\"\nwe truly think they wouldn’t be labeled sluts? I have my doubts.\"\" Wonder Woman Wonder Woman is a fictional superhero appearing in American comic books published by DC Comics. The character is a founding member of the Justice League, and an ambassador of the Amazon people. The character first appeared in \"\"All Star Comics\"\" #8 in October 1941 with her first feature in \"\"Sensation Comics\"\" #1, January 1942. The \"\"Wonder Woman\"\" title has been published by DC Comics almost continuously except for a brief hiatus in 1986. In her homeland, the island nation of Themyscira, her official title is Princess"} +{"qid": "test1937", "pid": "9462033", "query": "when was the first wonder woman comic released", "answer": "December 1941", "passage": "\"Wonder Woman (Earth-Two)\"\nPrincess Diana winning the tournament and traveling to the United States in 1941 (coinciding with the character's Earth-Two history). Wonder Woman (Earth-Two) Wonder Woman of Earth-Two is a fictional DC Comics superheroine retconned from original stories by Wonder Woman writer and creator William Moulton Marston and his wife Elizabeth Holloway Marston. This version of Wonder Woman first appeared in \"\"All Star Comics\"\" #8 (December 1941). This was after DC Comics established a multiverse in their published stories to explain how heroes could have been active before (and during) World War II and retain their youth and (subsequent) origins during the"} +{"qid": "test1938", "pid": "17162655", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Andrew Shaffer\"\none of the most prominent examples of the 'Great Depression chic' trend in 2009. Shaffer wrote \"\"Fifty Shames of Earl Grey\"\" under the pen name \"\"Fanny Merkin.\"\" \"\"Fifty Shames of Earl Grey\"\" is a parody of E. L. James' popular trilogy, \"\"Fifty Shades of Grey\"\". Publishers Weekly suggested \"\"The parody brings to life all of the arguments for and against 50 Shades, including the feminist concerns, portrayal of BDSM, roots in Twilight fan-fiction, and EL James's writing style.\"\" \"\"Fifty Shames of Earl Grey\"\" was a Goodreads choice 2012 semi-finalist. In 2015, Shaffer's tie-in book to the Syfy channel's Sharknado series"} +{"qid": "test1938", "pid": "16382212", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades of Grey\"\nAn album of songs selected by E. L. James was released on 11 September 2012 by EMI Classics under the title \"\"Fifty Shades of Grey: The Classical Album\"\", and reached number four on the US \"\"Billboard\"\" classical music albums chart in October 2012. A \"\"Seattle P-I\"\" reviewer favourably wrote that the album would appeal both to fans of the series and to \"\"those who have no intention of reading any of the Grey Shades\"\". The \"\"Fifty Shades of Grey\"\" trilogy has inspired many parodies in print, in film, online, and on stage. In November 2012, Universal Studios attempted to prevent"} +{"qid": "test1938", "pid": "17485795", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades of Grey (film)\"\nFifty Shades of Grey (film) Fifty Shades of Grey is a 2015 American erotic romantic drama film directed by Sam Taylor-Johnson, with a screenplay by Kelly Marcel. The film is based on E. L. James’ 2011 novel of the same name and stars Dakota Johnson as Anastasia Steele, a college graduate who begins a sadomasochistic relationship with young business magnate Christian Grey, played by Jamie Dornan. The film premiered at the 65th Berlin International Film Festival on February 11, 2015 and was released on February 13, 2015, by Universal Pictures and Focus Features. Despite receiving generally negative reviews, it was"} +{"qid": "test1938", "pid": "17485846", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades of Grey (film)\"\nto lampoon.\"\" Fifty Shades of Grey (film) Fifty Shades of Grey is a 2015 American erotic romantic drama film directed by Sam Taylor-Johnson, with a screenplay by Kelly Marcel. The film is based on E. L. James’ 2011 novel of the same name and stars Dakota Johnson as Anastasia Steele, a college graduate who begins a sadomasochistic relationship with young business magnate Christian Grey, played by Jamie Dornan. The film premiered at the 65th Berlin International Film Festival on February 11, 2015 and was released on February 13, 2015, by Universal Pictures and Focus Features. Despite receiving generally negative reviews,"} +{"qid": "test1938", "pid": "18580006", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades Freed (film)\"\nFifty Shades Freed (film) Fifty Shades Freed is a 2018 American erotic romantic drama film directed by James Foley and written by Niall Leonard, and based on E. L. James's 2012 novel of the same name. It is the third and final installment in the \"\"Fifty Shades\"\" film series, following \"\"Fifty Shades of Grey\"\" (2015) and \"\"Fifty Shades Darker\"\" (2017). The film stars Dakota Johnson and Jamie Dornan as Anastasia Steele and Christian Grey, respectively, and follows the couple as they marry, and must deal with Ana's former boss (Eric Johnson), who begins to stalk them. Principal photography on \"\"Fifty"} +{"qid": "test1938", "pid": "18817962", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Grey: Fifty Shades of Grey as Told by Christian\"\nGrey: Fifty Shades of Grey as Told by Christian Grey: Fifty Shades of Grey As Told by Christian, also referred to as Grey, is a 2015 erotic romance by British author E. L. James. It is the fourth installment in the \"\"Fifty Shades\"\" series, which had its start as fanfiction. The novel was released on 18 June 2015 to coincide with the birth date of the character Christian Grey. The work's first printing run consisted of 1.25 million copies. Christian Grey, a successful and rich 27-year-old businessman, meets 21-year-old university student Anastasia \"\"Ana\"\" Steele when she interviews him on behalf"} +{"qid": "test1938", "pid": "16382213", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades of Grey\"\nthe release of \"\"Fifty Shades of Grey: A XXX Adaptation\"\", a pornographic film based on the novel, citing copyright and trademark infringement. Smash Pictures, the porn producer, later responded to the lawsuit with a counterclaim that \"\"much or all\"\" of the \"\"Fifty Shades\"\" material was placed in the public domain in its original \"\"Twilight\"\"-based form, but later capitulated and stopped production of their film. Stage productions include: Fifty Shades of Grey Fifty Shades of Grey is a 2011 erotic romance novel by British author E. L. James. It is the first instalment in the \"\"Fifty Shades\"\" trilogy that traces the"} +{"qid": "test1938", "pid": "16382180", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades of Grey\"\nFifty Shades of Grey Fifty Shades of Grey is a 2011 erotic romance novel by British author E. L. James. It is the first instalment in the \"\"Fifty Shades\"\" trilogy that traces the deepening relationship between a college graduate, Anastasia Steele, and a young business magnate, Christian Grey. It is notable for its explicitly erotic scenes featuring elements of sexual practices involving bondage/discipline, dominance/submission, and sadism/masochism (BDSM). Originally self-published as an ebook and a print-on-demand, publishing rights were acquired by Vintage Books in March 2012. \"\"Fifty Shades of Grey\"\" has topped best-seller lists around the world, selling over 125 million"} +{"qid": "test1938", "pid": "17422622", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades (novel series)\"\nFifty Shades (novel series) Fifty Shades is a series of erotic novels by E. L. James. Initially a trilogy consisting of \"\"Fifty Shades of Grey\"\" (2011), \"\"Fifty Shades Darker\"\" and \"\"Fifty Shades Freed\"\" (2012), the series traces the deepening relationship between a college graduate, Anastasia Steele, and a young business man, Christian Grey. Grey introduces Ana to the world of BDSM. James has spoken of her shock at the success of the book, \"\"The explosion of interest has taken me completely by surprise\"\" she said. James has described the \"\"Fifty Shades\"\" trilogy as \"\"my midlife crisis, writ large. All my"} +{"qid": "test1938", "pid": "17422638", "query": "who is the writer of 50 shades of grey", "answer": "E. L. James", "passage": "\"Fifty Shades (novel series)\"\n2015, director Sam Taylor-Johnson confirmed two sequels to be succeeded after the first film, with \"\"Fifty Shades Darker\"\" to be released February 10, 2017. Fifty Shades (novel series) Fifty Shades is a series of erotic novels by E. L. James. Initially a trilogy consisting of \"\"Fifty Shades of Grey\"\" (2011), \"\"Fifty Shades Darker\"\" and \"\"Fifty Shades Freed\"\" (2012), the series traces the deepening relationship between a college graduate, Anastasia Steele, and a young business man, Christian Grey. Grey introduces Ana to the world of BDSM. James has spoken of her shock at the success of the book, \"\"The explosion of"} +{"qid": "test1939", "pid": "6309953", "query": "when does synapsis of homologous chromosomes occur in mitosis", "answer": "prophase I of meiosis", "passage": "Synapsis\nSynapsis Synapsis (also called syndesis) is the pairing of two homologous chromosomes that occurs during meiosis. It allows matching-up of homologous pairs prior to their segregation, and possible chromosomal crossover between them. Synapsis takes place during prophase I of meiosis. When homologous chromosomes synapse, their ends are first attached to the nuclear envelope. These end-membrane complexes then migrate, assisted by the extranuclear cytoskeleton, until matching ends have been paired. Then the intervening regions of the chromosome are brought together, and may be connected by a protein-RNA complex called the synaptonemal complex. Autosomes undergo synapsis during meiosis, and are held together"} +{"qid": "test1939", "pid": "737967", "query": "when does synapsis of homologous chromosomes occur in mitosis", "answer": "prophase I of meiosis", "passage": "\"Chromosomal crossover\"\nChromosomal crossover Chromosomal crossover (or crossing over) is the exchange of genetic material between 2 homologous chromosomes non-sister chromatids that results in recombinant chromosomes during sexual reproduction. It is one of the final phases of genetic recombination, which occurs in the \"\"pachytene\"\" stage of prophase I of meiosis during a process called synapsis. Synapsis begins before the synaptonemal complex develops and is not completed until near the end of prophase I. Crossover usually occurs when matching regions on matching chromosomes break and then reconnect to the other chromosome. Crossing over was described, in theory, by Thomas Hunt Morgan. He relied"} +{"qid": "test1939", "pid": "2088519", "query": "when does synapsis of homologous chromosomes occur in mitosis", "answer": "prophase I of meiosis", "passage": "\"Homologous chromosome\"\nhelps make a population more stable by providing a wider range of genetic traits for natural selection to act on. In prophase I of meiosis I, each chromosome is aligned with its homologous partner and pairs completely. In prophase I, the DNA has already undergone replication so each chromosome consists of two identical chromatids connected by a common centromere. During the zygotene stage of prophase I, the homologous chromosomes pair up with each other. This pairing occurs by a synapsis process where the synaptonemal complex - a protein scaffold - is assembled and joins the homologous chromosomes along their lengths."} +{"qid": "test1940", "pid": "15151257", "query": "when did the age of new media began", "answer": "the 1980s", "passage": "\"Technological and industrial history of 21st-century Canada\"\nNew Brunswick uses just such a system, developed by Cisco Systems Canada Co. to manage its fish farm operations. Digital media were first introduced to Canada in the 1980s, when the CD and DVD became popular with consumers. The traditional media began to develop an on-line presence in the new century. Newspapers including Canada's two English-language \"\"national\"\", dailies, \"\"The Globe and Mail\"\" and the National Post went on line as did the weekly Maclean's news magazine. The French-language press did the same including the daily \"\"La Presse\"\" and the bi-weekly \"\"L'actualité\"\" newsmagazine. Television broadcasters got into the game, including the"} +{"qid": "test1942", "pid": "18246580", "query": "the legend of heroes trails in the sky the 3rd vita", "answer": "July 14, 2016", "passage": "\"The Legend of Heroes: Trails in the Sky the 3rd\"\ngames, which became \"\"The 3rd\"\". While the first two entries focused on the more upbeat adventures of Estelle and Joshua, \"\"The 3rd\"\" shifts its story-telling into a darker direction. \"\"The 3rd\"\" was released on a number of different platforms since it original Windows release. A PlayStation Portable port was released on July 24, 2008. A high definition PlayStation 3 port was released in June 2013. It was also released on PlayStation Plus on January 2014. It has received an HD \"\"Evolution\"\" remake for PlayStation Vita on July 14, 2016. An English localization by Xseed Games was released for Windows on"} +{"qid": "test1943", "pid": "2809323", "query": "where does the us launch space shuttles from", "answer": "Florida", "passage": "STS-63\nSTS-63 STS-63 was the first mission of the US/Russian Shuttle-Mir Program, which carried out the first rendezvous of the American Space Shuttle with Russia's space station \"\"Mir\"\". Known as the 'Near-Mir' mission, the flight used Space Shuttle \"\"Discovery\"\", which lifted off from launch pad 39B on 3 February 1995 from Kennedy Space Center, Florida. A night launch and the 20th mission for \"\"Discovery\"\", it marked the first time a Space Shuttle mission had a female pilot, Eileen Collins, the first EVAs for both a UK born astronaut Michael Foale and a US astronaut of African heritage Bernard A. Harris, Jr."} +{"qid": "test1943", "pid": "2733726", "query": "where does the us launch space shuttles from", "answer": "Florida", "passage": "STS-61-B\nSTS-61-B STS-61-B was NASA's 23rd Space Shuttle mission, and its second using Space Shuttle \"\"Atlantis\"\". The shuttle was launched from Kennedy Space Center, Florida, on 26 November 1985. During STS-61-B, the shuttle crew deployed three communications satellites, and tested techniques of constructing structures in orbit. \"\"Atlantis\"\" landed at Edwards Air Force Base, California, at 16:33 EST on 3 December 1985, after 6 days and 21 hours in orbit. STS-61-B marked the quickest turnaround of a Shuttle orbiter from launch to launch in history – just 54 days elapsed between \"\"Atlantis\"\"' launch on STS-51-J and launch on STS-61-B. The mission was"} +{"qid": "test1943", "pid": "1541213", "query": "where does the us launch space shuttles from", "answer": "Florida", "passage": "STS-31\nSTS-31 STS-31 was the thirty-fifth mission of the American Space Shuttle program, which launched the Hubble Space Telescope astronomical observatory into Earth orbit. The mission used the Space Shuttle \"\"Discovery\"\" (the tenth for this orbiter), which lifted off from Launch Complex 39B on 24 April 1990 from Kennedy Space Center, Florida. \"\"Discovery\"\"'s crew deployed the telescope on 25 April, and spent the rest of the mission tending to various scientific experiments in the shuttle's payload bay and operating a set of IMAX cameras to record the mission. \"\"Discovery\"\"'s launch marked the first time since January 1986 that two Space Shuttles"} +{"qid": "test1943", "pid": "9118563", "query": "where does the us launch space shuttles from", "answer": "Florida", "passage": "\"Timeline of STS-121\"\nDaylight Time, Space Shuttle Discovery launched from the Kennedy Space Center at Cape Canaveral, Florida. This was the third attempt at launch. It was also the first (and only) US Space Shuttle to launch on the United States' Independence Day. During and after launch much attention was paid to monitoring the external tank for the loss of insulation foam. The shuttle was equipped with a number of new cameras, and video was also taken from spotter planes. Each solid rocket booster contained three cameras - one to monitor the separation, and two focused on the leading edge. The video from"} +{"qid": "test1943", "pid": "2809402", "query": "where does the us launch space shuttles from", "answer": "Florida", "passage": "STS-71\nSTS-71 STS-71 was the third mission of the US/Russian Shuttle-Mir Program and the first Space Shuttle docking to Russian space station \"\"Mir\"\". It started on 27 June 1995 with the launch of Space Shuttle \"\"Atlantis\"\" from launch pad 39A at the Kennedy Space Center in Florida. The shuttle delivered a relief crew of two cosmonauts Anatoly Solovyev and Nikolai Budarin to the station and recovered Increment astronaut Norman Thagard. \"\"Atlantis\"\" returned to Earth on 7 July with a crew of eight. It was the first of seven straight missions to \"\"Mir\"\" flown by \"\"Atlantis\"\". For the five days the shuttle"} +{"qid": "test1943", "pid": "10631223", "query": "where does the us launch space shuttles from", "answer": "Florida", "passage": "\"NASA recovery ship\"\nand motion information about the shuttle and any debris during launch. Aside from their usual missions of retrieving the Space Shuttle SRBs, the \"\"Liberty Star\"\" and \"\"Freedom Star\"\" have occasionally been used for other purposes. Starting in 1998, the ships began making use of their downtime between Shuttle launches by towing the Space Shuttle external fuel tanks from their assembly plant at Michoud Assembly Facility in New Orleans, Louisiana to the Vehicle Assembly Building at the Kennedy Space Center in Florida. The ships performed similar missions when the Ares 1-X rocket was tested. To withstand the towing burden, \"\"Liberty Star\"\""} +{"qid": "test1944", "pid": "6511076", "query": "where did the peanut butter jelly time song come from", "answer": "Buckwheat Boyz", "passage": "\"Buckwheat Boyz\"\nBuckwheat Boyz The Buckwheat Boyz was an American musical group founded by Marcus Bowens and Jermaine Fuller, with the later addition of J.J. O'Neal and Dougy Williams. The Buckwheat Boyz were signed by Koch Records, and recorded their first and only full-length record. From this self-titled album, the song \"\"Peanut Butter Jelly Time\"\" became popular on the Internet after a flash music video featuring an animated dancing banana was created. The popularity of the song increased as it was featured on TV shows such as \"\"The Proud Family\"\", \"\"Family Guy\"\", and \"\"Regular Show\"\". In 2002, founding member and vocalist Jermaine"} +{"qid": "test1945", "pid": "8652872", "query": "who was the drummer with the travelling wilburys", "answer": "Jim Keltner", "passage": "\"She's My Baby (Traveling Wilburys song)\"\nmusic video for the single, which was directed by David Leland and produced by Limelight Films. The clip shows the four Wilburys and drummer Jim Keltner performing the track and a snippet of Dylan riding a bike on the set. Additional musicians She's My Baby (Traveling Wilburys song) \"\"She's My Baby\"\" is a song by the British–American supergroup the Traveling Wilburys and the opening track of their 1990 album \"\"Traveling Wilburys Vol. 3\"\". The song was written by all four members of the band – George Harrison, Jeff Lynne, Bob Dylan and Tom Petty – and each of them sing"} +{"qid": "test1945", "pid": "421524", "query": "who was the drummer with the travelling wilburys", "answer": "Jim Keltner", "passage": "\"Traveling Wilburys\"\npeople I could ever wish to work with. Every day was like, 'Wow!' ... it was fun from day one.\"\" Jim Keltner, the session drummer and percussionist, was not listed as a Wilbury on either album. However, he is seen in all of the group's music videos, and on the DVD released in 2007, he is given the nickname \"\"Buster Sidebury\"\". Overdubs to the bonus tracks \"\"Maxine\"\" and \"\"Like a Ship\"\" also credited as \"\"Ayrton Wilbury\"\", a pseudonym for Dhani Harrison. The name Ayrton was used in honour of F1 racer Ayrton Senna. Jim Horn played saxophone on both"} +{"qid": "test1945", "pid": "16356800", "query": "who was the drummer with the travelling wilburys", "answer": "Jim Keltner", "passage": "\"Inside Out (Traveling Wilburys song)\"\nHarris\"\". BBC Radio 2. The Wilburys, together with their drummer, Jim Keltner, recorded the basic track for \"\"Inside Out\"\" in Bel Air. As with all the songs on the album, other instrumentation and the vocals were overdubbed at Harrison's Friar Park studio in July. The song was sequenced as the second track on \"\"Vol. 3\"\", between \"\"She's My Baby\"\" and \"\"If You Belonged to Me\"\". The album was released on the band's Wilbury record label on 29 October 1990 in the UK and 6 November in the United States. Authors Chip Madinger and Mark Easter describe \"\"Inside Out\"\" as arguably"} +{"qid": "test1945", "pid": "4770552", "query": "who was the drummer with the travelling wilburys", "answer": "Jim Keltner", "passage": "\"Traveling Wilburys Vol. 1\"\ntogether again for nine days in May, recording the basic tracks and vocals at Dave Stewart’s home studio in Los Angeles. Overdubs and mixing were carried out in England at Harrison’s home studio, FPSHOT (short for Friar Park Studio, Henley-on-Thames). Masquerading as the Wilbury brothers, the participants would be known as Nelson (Harrison), Otis (Lynne), Lucky (Dylan), Lefty (Orbison), and Charlie T. Jr. (Petty) Wilbury, with drummer Jim Keltner credited as Buster Sidebury. Harrison was no stranger to the use of alternate identities, as he had adopted them with \"\"Sgt. Pepper's Lonely Hearts Club Band\"\" and with his plethora of"} +{"qid": "test1945", "pid": "2943811", "query": "who was the drummer with the travelling wilburys", "answer": "Jim Keltner", "passage": "\"Jim Keltner\"\nthe 1980s supergroup the Traveling Wilburys, playing under the pseudonym \"\"Buster Sidebury\"\". Keltner became Ry Cooder's go-to drummer, recording with him on many of his albums for over 40 years, including the following, as well as playing with him in Little Village. Keltner, as a freelance drummer, has worked with a long list of artists. Jim Keltner recorded two albums with his band Attitudes for George Harrison's Dark Horse label. The band also included Danny Kortchmar, David Foster and Paul Stallworth, and recorded \"\"Attitudes\"\" in 1975 and \"\"Good News\"\" in 1977. He is featured on Carly Simon's 1971 album, \"\"Anticipation\"\"."} +{"qid": "test1946", "pid": "6866902", "query": "what was the actual year that the movie regarding the titans took place", "answer": "1971", "passage": "\"George C. Marshall High School\"\nend of the 1971 AAA state championship football game between T.C. Williams High School and George Marshall High School. The movie was dramatized from a Washington Post series about race relations in the high school football fishbowl of 1971, as the Hollywood-underdog T.C. Williams Titans took on the powerful Marshall Statesmen (coached by Ed Henry). The most notable dramatic license taken in the movie was to convert what was actually a regular-season matchup between Marshall and T.C. Williams into a made-for-Hollywood state championship. In reality, the Marshall game was the toughest game T.C. Williams played all year and the actual"} +{"qid": "test1946", "pid": "2180878", "query": "what was the actual year that the movie regarding the titans took place", "answer": "1971", "passage": "\"T. C. Williams High School\"\n1971 AAA state championship football game between T. C. Williams and George C. Marshall High School. The dramatic license taken in the movie was to convert what was actually a mid-season matchup between T. C. Williams and Marshall into a made-for-Hollywood state championship. In reality, the Marshall game was the toughest game T. C. Williams played all year and the actual state championship (against Andrew Lewis High School of Salem) was a 27–0 blowout. As depicted in the movie, the real Titans won the Marshall game on a fourth down come-from-behind play at the very end of the game. T."} +{"qid": "test1946", "pid": "6866903", "query": "what was the actual year that the movie regarding the titans took place", "answer": "1971", "passage": "\"George C. Marshall High School\"\nstate championship (against Andrew Lewis High School of the Roanoke Valley) was a 27-0 blowout. The Titans actually did win the Marshall game on a fourth down come-from-behind play at the very end of the game. In addition to the added drama of the Marshall game, there were apparently some legal issues concerning the use of Andrew Lewis High School's name in the movie. Ignored in both the original newspaper articles and the movie is the fact that in 1971, the city of Alexandria consolidated three four-year high schools into a single two-year school, with only juniors and seniors. As"} +{"qid": "test1947", "pid": "9864789", "query": "when was the cleveland browns last winning game", "answer": "2016", "passage": "\"History of the Cleveland Browns\"\nseason. Collins was named the game's MVP. This would be the last time that any professional sports team from Cleveland would win a league title until 2016, when the NBA's Cleveland Cavaliers won the 2016 NBA Finals. To date, this remains the last time that the Browns have won the NFL title. The following year was a strong one as Jim Brown gritted out another league-leading rushing season. The Browns ended with an 11–3 record and comfortably won the eastern division. That set up a second straight appearance in the NFL Championship game against the Packers on a slippery, mucky"} +{"qid": "test1947", "pid": "9381650", "query": "when was the cleveland browns last winning game", "answer": "2016", "passage": "\"1964 NFL Championship Game\"\nwinning Browns team received about $8,000, while Colts players made around This was about triple the amount for the players' shares in the AFL championship game. 1964 NFL Championship Game The 1964 National Football League Championship Game was the 32nd annual championship game, held on December 27 at Cleveland Stadium in Cleveland, Ohio. With an attendance of 79,544, it was the first NFL title game to be televised by CBS. The game marked the last championship won by a major-league professional sports team from Cleveland until 2016 when the Cleveland Cavaliers won the NBA Finals. The Baltimore Colts finished the"} +{"qid": "test1947", "pid": "18414307", "query": "when was the cleveland browns last winning game", "answer": "2016", "passage": "\"2015 Cleveland Browns season\"\nthey lost to the Pittsburgh Steelers by 41-0. With the win, the Browns snapped their 7-game losing streak and improved to 3-10. This is the Browns' last win until Week 16, 2016 against the San Diego Chargers. With the loss, the Browns fell to 3-11. The Browns fall to 3-12 with the loss. With the Ravens' win over the Steelers, they are assured last place in the AFC North for the season. The Steelers made the playoffs with a dominating 28-12 win over the Browns (coupled with a Jets loss to the Bills). The game was competitive for three quarters,"} +{"qid": "test1947", "pid": "9864889", "query": "when was the cleveland browns last winning game", "answer": "2016", "passage": "\"History of the Cleveland Browns\"\nday of the 2018 NFL season, the Browns tied the Pittsburgh Steelers with 21 points after neither team scored in overtime, ending the Browns losing streak at 17 games. However, their winless streak extended to 18 games. On September 20, the Browns defeated the Jets, 21-17 to win their first game since week 16 of the 2016 season, ending their winless streak at 19 games, which was the 4th longest in NFL history. History of the Cleveland Browns The history of the Cleveland Browns American football team began in 1944 when taxi-cab magnate Arthur B. \"\"Mickey\"\" McBride secured a Cleveland,"} +{"qid": "test195", "pid": "4169751", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"1982 World Series\"\nThat has happened three times before, taking the 19th Century contests into account: The Brooklyn Dodgers of 1889 and 1890, the Cardinals, who won the 1886 Series when they were in the American Association, and the Houston Astros, who played in both the 2005 World Series against the Chicago White Sox as a National League team, and the 2017 World Series against the Los Angeles Dodgers as an American League team. This also makes this one of two World Series in the modern era (1903–present) that it is not possible to have a rematch, the other being the Astros and"} +{"qid": "test195", "pid": "4169665", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"1989 World Series\"\nHRs hit by a single team (5) in a World Series game (the New York Yankees won Game 4 of the 1928 World Series against the St. Louis Cardinals, which like this series, would end in a sweep). This record for combined HRs in a World Series game would endure until Game 2 in 2017, in which the Astros and Dodgers combined for 8 HRs. At the time, October 28 was the latest end date ever for a World Series, even though the series only lasted the minimum four games. (The 1981 Series, which went six games, had also ended"} +{"qid": "test195", "pid": "11973648", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"Brent Strom\"\n46–30 with a 3.65 ERA. Since 1992, Strom has moved around a lot, serving as the pitching coach for the Tucson Toros, Houston Astros, the Kansas City Royals, and back to the Houston Astros. He has also served as the minor league pitching coordinator in the Montreal Expos/Washington Nationals organization. He also served as the St. Louis Cardinals minor league pitching instructor. He became the Houston Astros pitching coach before the 2014 season. He served as the pitching coach for the Astros in 2017, when they won the World Series for the first time ever. As of June 2018, Strom"} +{"qid": "test195", "pid": "19533481", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"2017 World Series\"\n13 chances with runners in scoring position in the game. Kershaw pitched four scoreless innings of relief in the game, and in the process, he broke Orel Hershiser's Dodgers postseason record with his 33rd strikeout. Morton pitched four innings of relief to earn the win, as Corey Seager grounded out to José Altuve, who threw to Yuli Gurriel to end the game, with the Astros winning their first championship in franchise history, and ending their 56-year drought. Springer won the World Series MVP Award. With the Astros' win, for the first time since 2002, when the Angels beat the Giants"} +{"qid": "test195", "pid": "9786954", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"Tyler Clippard\"\nThe Astros finished the 2017 season with a 101–61 record, clinching the AL West. Clippard, however, was not part of any postseason action, although he was still on the Astros 40-man roster at the time. The Astros won their first World Series in franchise history as they bested the Los Angeles Dodgers in 7 games of the 2017 World Series. Clippard would still win his first career World Series championship after 11 seasons of service in the Majors. On March 7, 2018, Clippard signed a minor league contract with the Toronto Blue Jays. His contract was purchased by the Blue"} +{"qid": "test195", "pid": "8326188", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"Drayton McLane\"\nthe National League in winning percentage (.543), but never won a World Series. The Astros, originally the Colt 45's, were founded in 1962. They won their first World Series in 2017 (2017 World Series). Up until 2017, the Astros 2005 season was the most successful season on the field for the Houston franchise. Winning the \"\"National League Pennant\"\" to advance to the World Series, Houston hosted the first World Series game ever played in the State of Texas. However, the Astros, who had rallied from a losing record earlier in the season, were swept by the Chicago White Sox in"} +{"qid": "test195", "pid": "20830061", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"2018 World Series\"\nteam since the 1992 Atlanta Braves, to lose consecutive Fall Classics. The Boston Red Sox' most recent World Series appearance was their 2013 win over the St. Louis Cardinals. The Los Angeles Dodgers, who last won a World Series in 1988 over the Oakland Athletics, made their second consecutive appearance, after losing to the Houston Astros in 2017. The two franchises faced each other in the 1916 World Series; the Red Sox won the series in five games against the then-Brooklyn Robins. Red Sox manager Alex Cora and Dodgers manager Dave Roberts were teammates on the Dodgers in 2002, 2003,"} +{"qid": "test195", "pid": "17375181", "query": "when is last time the astros won the world series", "answer": "2017", "passage": "\"Tony Kemp (baseball)\"\nHarvey. In 17 games with the Astros, Kemp had a .216 average and 4 RBI. The Astros finished the season with a 101-61 record and eventually won the 2017 World Series, their first ever championship title. Kemp did not participate in any playoff action, but was still on the 40-man roster at the time, and won his first championship title. In March 2018, the Astros optioned Kemp back to Fresno. He was called up on May 16 to replace Jake Marisnick. As of September 27, Kemp has played in 94 games for the 2018 Astros, batting .267/.352/.401 with 6 HR"} +{"qid": "test1951", "pid": "11815516", "query": "who is the robot in lost in space 2018", "answer": "Brian Steele", "passage": "\"Brian Steele\"\nBrian Steele Brian Steele is an American actor who has had many roles as monsters and creatures on television and in films. In 2018, he appears as The Robot in \"\"Lost in Space\"\". Steele stands at 6 ft 7 in (2.01m). In 2006–2014 Steele portrayed the prank redeeming Sasquatch in over 40 \"\"Messin' with Sasquatch\"\" commercials for Jack Links Jerky. On television, Steele played the Bigfoot called Harry in the series \"\"Harry and the Hendersons\"\" before moving on to play creatures in theatrical motion pictures, with roles like Mr. Wink in \"\"\"\" wearing over 130 pounds of makeup. Steele has"} +{"qid": "test1951", "pid": "11815517", "query": "who is the robot in lost in space 2018", "answer": "Brian Steele", "passage": "\"Brian Steele\"\nportrayed Drake Beast in \"\"\"\", Sammael in \"\"Hellboy\"\", Lycan werewolves in \"\"Underworld\"\" and \"\"\"\", William Corvinus in \"\"\"\", T-600 in \"\"Terminator Salvation\"\", Berzerker Predator in \"\"Predators\"\", and a Bigfoot in the Eduardo Sánchez horror-thriller film \"\"Exists\"\". Brian Steele has participated in multiple ultra-distance, self-supported cycling races, including the Tour Divide mountain bike race and the Trans Am Bike Race. Brian Steele Brian Steele is an American actor who has had many roles as monsters and creatures on television and in films. In 2018, he appears as The Robot in \"\"Lost in Space\"\". Steele stands at 6 ft 7 in (2.01m)."} +{"qid": "test1953", "pid": "7837681", "query": "when was the letter j introduced to the alphabet", "answer": "in Middle High German", "passage": "J\nJ J is the tenth letter in the modern English alphabet and the ISO basic Latin alphabet. Its normal name in English is \"\"jay\"\" or, now uncommonly, \"\"jy\"\" . When used for the palatal approximant, it may be called \"\"yod\"\" ( or ) or \"\"yot\"\" ( or ). The letter \"\"J\"\" originated as a swash letter \"\"I\"\", used for the letter \"\"I\"\" at the end of Roman numerals when following another \"\"I\"\", as in \"\"XXIIJ\"\" or \"\"xxiij\"\" instead of \"\"XXIII\"\" or \"\"xxiii\"\" for the Roman numeral representing 23. A distinctive usage emerged in Middle High German. Gian Giorgio Trissino (1478–1550)"} +{"qid": "test1954", "pid": "2109980", "query": "what is money as a medium of exchange", "answer": "fiat money", "passage": "\"Medium of exchange\"\nMedium of exchange Medium of exchange is one of the three fundamental functions of money in mainstream economics. It is a widely accepted token which can be exchanged for goods and services. Because it can be exchanged for any good or service it acts as an intermediary instrument and avoids the limitations of barter; where what one wants has to be exactly matched with what the other has to offer. Most forms of money can act as mediums of exchange including commodity money, representative money and most commonly fiat money. Representative and fiat money often exist in digital form as"} +{"qid": "test1954", "pid": "2109983", "query": "what is money as a medium of exchange", "answer": "fiat money", "passage": "\"Medium of exchange\"\nof exchange can typically and be subdivided to small enough units to approximate the value of any good or service. A barter transaction typically happens over a short period of time, or on the spot. A medium of exchange can held for a period of time until what is wanted becomes available. This relates to another function of money, the store of value. The ideal medium of exchange should be spread throughout the marketplace so that anyone with stuff to exchange can buy and sell. When money also serves the function of a store of value, as fiat money does,"} +{"qid": "test1954", "pid": "18616234", "query": "what is money as a medium of exchange", "answer": "fiat money", "passage": "\"Balances Mechanics\"\ninto a medium of exchange by monetization. Debt claims against business banks are monetized claims because they commonly are accepted as fiat money as medium of exchange. The most essential application field of Balances Mechanics in economics is the analysis of changes in net financial assets. Net financial assets is the margin between claims and liabilities and changes with the expense-revenue-balances. In contrast to that, the money creation of the bank system generates medium of exchange against debt (in which an accurate demarcation of medium of exchange as part of the monetary assets is not possible). Revenue surpluses of a"} +{"qid": "test1954", "pid": "5352221", "query": "what is money as a medium of exchange", "answer": "fiat money", "passage": "\"Token money\"\nand can become a more useful medium of exchange. With token money, exchanges are not considered fully complete because the exchange of value is not equivalent. Value is hoped to be rendered at some future time. Examples of this include bills of exchange or negotiable instrument and certificates. Token money does not have free coinage. The majority of currencies in circulation exist in digital form, as accounts in a bank's database. The account may either be representative money or fiat money. Similarly, token money can exist in digital form. Digital token money is usually controlled by its developers and used"} +{"qid": "test1954", "pid": "2109987", "query": "what is money as a medium of exchange", "answer": "fiat money", "passage": "\"Medium of exchange\"\nprecisely because it does not satisfy the criteria for a medium of exchange cited above. Specifically, prevailing fiat money is free floating and depending upon its supply market finds or sets a value to it that continues to change as the supply of money is changed with respect to the economy's demand. Increasing free floating money supply with respect to needs of the economy reduces the quantity of the basket of the goods and services to which it is linked by the market and that provides it purchasing power. Thus it is not a unit or standard measure of wealth"} +{"qid": "test1954", "pid": "13192567", "query": "what is money as a medium of exchange", "answer": "fiat money", "passage": "\"Fiat money\"\nFiat money Fiat money is a currency without intrinsic value that has been established as money, often by government regulation. Fiat money does not have use value, and has value only because a government maintains its value, or because parties engaging in exchange agree on its value. It was introduced as an alternative to commodity money and representative money. Commodity money is created from a good, often a precious metal such as gold or silver, which has uses other than as a medium of exchange (such a good is called a commodity). Representative money is similar to fiat money, but"} +{"qid": "test1956", "pid": "111228", "query": "how many levels are there on the eiffel tower", "answer": "three", "passage": "\"Eiffel Tower\"\nlevel contained three restaurants—one French, one Russian and one Flemish—and an \"\"Anglo-American Bar\"\". After the exposition closed, the Flemish restaurant was converted to a 250-seat theatre. A promenade wide ran around the outside of the first level. At the top, there were laboratories for various experiments, and a small apartment reserved for Gustave Eiffel to entertain guests, which is now open to the public, complete with period decorations and lifelike mannequins of Eiffel and some of his notable guests. In May 2016, an apartment was created on the first level to accommodate four competition winners during the UEFA Euro 2016"} +{"qid": "test1956", "pid": "16425665", "query": "how many levels are there on the eiffel tower", "answer": "three", "passage": "\"Eiffel Tower (Cedar Fair)\"\nEiffel Tower (Cedar Fair) The Eiffel Towers at Kings Dominion and Kings Island are replicas of the Eiffel Tower in Paris, France. They opened at Kings Island in 1972 and Kings Dominion in 1975, each when the park originally opened. Both of the replicas at Kings Dominion and Kings Island are one-third replicas of the Eiffel Tower in Paris. They were both constructed by then-owner Taft Broadcasting. Each tower stands tall with the observation floor high. The Eiffel Tower at Kings Dominion was built by Bristol Steel. It was modeled and built at Kings Island three years prior to construction."} +{"qid": "test1957", "pid": "8479544", "query": "when will fairy tail final season be released", "answer": "2018", "passage": "\"Fairy Tail\"\n\"\"Fairy Tail\"\" began airing on October 7, 2018. A-1 Pictures, CloverWorks, and Bridge have been confirmed to be producing and animating the final season, which is set to run for 51 episodes. Nine original video animations (OVAs) of \"\"Fairy Tail\"\" have been produced and released on DVD by A-1 Pictures and Satelight, each bundled with a limited edition \"\"tankōbon\"\" volume of the manga. The first OVA, is an adaptation of the manga omake of the same name, and was released with Volume 26 on April 15, 2011. The second, is also an adaptation of the omake of the same name,"} +{"qid": "test1957", "pid": "8479543", "query": "when will fairy tail final season be released", "answer": "2018", "passage": "\"Fairy Tail\"\nby Shinji Takeuchi; the original series' voice actors also returned to the project along with director Shinji Ishihira and writer Masashi Sogo. The official website for the sequel was launched on January 7, 2014. The series premiered on TV Tokyo on April 5, 2014, and was being simulcast by Funimation Entertainment. The second series concluded its run on March 26, 2016. On March 22, 2016, Mashima announced via Twitter that another \"\"Fairy Tail\"\" series was being developed. On July 20, 2017, Mashima confirmed on Twitter that the final season of \"\"Fairy Tail\"\" would air in 2018. The final season of"} +{"qid": "test1957", "pid": "8479524", "query": "when will fairy tail final season be released", "answer": "2018", "passage": "\"Fairy Tail\"\na sequel storyboarded by Mashima, titled \"\"Fairy Tail 100 Years Quest\"\", which launched on July 25, 2018. The manga series was originally licensed for an English language release in North America by Del Rey Manga, which began releasing the individual volumes on March 25, 2008 and ended its licensing with the 12th volume release in September 2010. In December 2010, Kodansha USA took over North American release of the series. The Southeast Asian network Animax Asia aired an English-language version of the anime for seven seasons from 2010 to 2015. The manga was also licensed in the United Kingdom by"} +{"qid": "test1957", "pid": "8479539", "query": "when will fairy tail final season be released", "answer": "2018", "passage": "\"Fairy Tail\"\n\"\"Lightning Gods\"\" in 2016 from May 4 to September 14. On April 5, 2018, Mashima stated that he had \"\"decided to create a spin-off comic and another spin-off manga for the sequel to \"\"Fairy Tail\"\".\"\" On July 25, 2018, a sequel manga titled \"\"Fairy Tail 100 Years Quest\"\" was released on Kodansha's \"\"Magazine Pocket\"\" app, storyboarded by Mashima and illustrated by Atsuo Ueda. Another spin-off, \"\"\"\" by Kenshirō Sakamoto, was released on July 26 on the same app. On June 27, 2018, Hiro announced another spin-off manga, tentatively titled, \"\"Fairy Tail City Hero\"\", written and illustrated by Ushio Andō. \"\"Fairy"} +{"qid": "test1957", "pid": "20683329", "query": "when will fairy tail final season be released", "answer": "2018", "passage": "\"My Fairy Tail Love Story\"\nAugust 31, 2017. The full trailer of the film was released on January 19, 2018. The film was released on February 14, 2018 under Regal Entertainment. It is Rated G by the Movie and Television Review and Classification Board (MTRCB). My Fairy Tail Love Story My Fairy Tail Love Story is a 2018 Filipino fantasy romantic directed by Perci Intalan, starring Janella Salvador, Elmo Magalona and Kiko Estrada. It is produced by Regal Entertainment. It was released on February 14, 2018 by Regal Entertainment. Chantel (Janella Salvador) is a spoiled brat cursed to be a mermaid after she disturbed corals"} +{"qid": "test1957", "pid": "20683328", "query": "when will fairy tail final season be released", "answer": "2018", "passage": "\"My Fairy Tail Love Story\"\nMy Fairy Tail Love Story My Fairy Tail Love Story is a 2018 Filipino fantasy romantic directed by Perci Intalan, starring Janella Salvador, Elmo Magalona and Kiko Estrada. It is produced by Regal Entertainment. It was released on February 14, 2018 by Regal Entertainment. Chantel (Janella Salvador) is a spoiled brat cursed to be a mermaid after she disturbed corals under the sea. With the help of her best friend Noah (Elmo Magalona), they go on a journey to find her Prince Charming who she believes will break the curse she's in. The film released its 1-minute Official Teaser on"} +{"qid": "test1958", "pid": "11357803", "query": "when did somewhere over the rainbow come out", "answer": "1939", "passage": "\"Somewhere Over the Slaughterhouse\"\nSomewhere Over the Slaughterhouse Somewhere over the Slaughterhouse is the sixth studio album by Buckethead. To date it is his only solo album to be released as both a CD and LP and is currently out of print. Problems with rights ownership make a reissue unlikely. A download can be obtained at TDRS Music. The title track features an intentionally mangled rendition of the song \"\"Over the Rainbow\"\", popularly known as \"\"Somewhere over the Rainbow\"\", from the 1939 movie \"\"The Wizard of Oz\"\", as sung by the main character Dorothy Gale portrayed by Judy Garland. It is the inspiration for"} +{"qid": "test1958", "pid": "11357804", "query": "when did somewhere over the rainbow come out", "answer": "1939", "passage": "\"Somewhere Over the Slaughterhouse\"\nthe title of the track, and thereby the album. Somewhere Over the Slaughterhouse Somewhere over the Slaughterhouse is the sixth studio album by Buckethead. To date it is his only solo album to be released as both a CD and LP and is currently out of print. Problems with rights ownership make a reissue unlikely. A download can be obtained at TDRS Music. The title track features an intentionally mangled rendition of the song \"\"Over the Rainbow\"\", popularly known as \"\"Somewhere over the Rainbow\"\", from the 1939 movie \"\"The Wizard of Oz\"\", as sung by the main character Dorothy Gale"} +{"qid": "test1959", "pid": "849750", "query": "which layer of the osi model handles physical addressing", "answer": "physical layer or layer 1", "passage": "\"Physical layer\"\nPhysical layer In the seven-layer OSI model of computer networking, the physical layer or layer 1 is the first and lowest layer. This layer may be implemented by a PHY chip. The physical layer consists of the electronic circuit transmission technologies of a network. It is a fundamental layer underlying the higher level functions in a network. Due to the plethora of available hardware technologies with widely varying characteristics, this is perhaps the most complex layer in the OSI architecture. The physical layer defines the means of transmitting raw bits rather than logical data packets over a physical data link"} +{"qid": "test196", "pid": "1707624", "query": "who is the speaker in shooting an elephant", "answer": "Orwell", "passage": "\"Shooting an Elephant\"\ninterview with George Stuart, a contemporary of Orwell in Burma, who said that Orwell was transferred to Kathar as punishment for shooting an elephant. \"\"An elephant was considered a valuable asset to any timber firm...and Orwell would have been severely reprimanded for such unnecessary slaughter. It was not long after the incident that he was transferred from Moulmein to a quiet post in Upper Burma called Katha.\"\" Davison also includes in the complete works a news item from the \"\"Rangoon Gazette\"\", March 22, 1926 which describes a Major E. C. Kenny shooting an elephant in similar circumstances. When one biographer"} +{"qid": "test196", "pid": "1707610", "query": "who is the speaker in shooting an elephant", "answer": "Orwell", "passage": "\"Shooting an Elephant\"\nShooting an Elephant \"\"Shooting an Elephant\"\" is an essay by English writer George Orwell, first published in the literary magazine \"\"New Writing\"\" in late 1936 and broadcast by the BBC Home Service on 12 October 1948. The essay describes the experience of the English narrator, possibly Orwell himself, called upon to shoot an aggressive elephant while working as a police officer in Burma. Because the locals expect him to do the job, he does so against his better judgment, his anguish increased by the elephant's slow and painful death. The story is regarded as a metaphor for British imperialism, and"} +{"qid": "test196", "pid": "1707625", "query": "who is the speaker in shooting an elephant", "answer": "Orwell", "passage": "\"Shooting an Elephant\"\nquestioned Orwell's wife, Sonia Brownell, she replied, \"\"Of course he shot a fucking a [sic] elephant. He said he did. Why do you always doubt his word!\"\" Shooting an Elephant \"\"Shooting an Elephant\"\" is an essay by English writer George Orwell, first published in the literary magazine \"\"New Writing\"\" in late 1936 and broadcast by the BBC Home Service on 12 October 1948. The essay describes the experience of the English narrator, possibly Orwell himself, called upon to shoot an aggressive elephant while working as a police officer in Burma. Because the locals expect him to do the job, he"} +{"qid": "test196", "pid": "2874752", "query": "who is the speaker in shooting an elephant", "answer": "Orwell", "passage": "Mahout\ndance\"\" sequence of the 1952 Gene Kelly film \"\"Singin' in the Rain\"\". The word \"\"mahout\"\" also features in the lyrics of the song \"\"Drop the Pilot\"\", by Joan Armatrading. George Orwell's essay \"\"Shooting an Elephant\"\" discusses the relationship of an elephant to its mahout: \"\"It was not, of course, a wild elephant, but a tame one which had gone 'must.' It had been chained up, as tame elephants always are when their attack of 'must' is due, but on the previous night it had broken its chain and escaped. Its mahout, the only person who could manage it when it"} +{"qid": "test196", "pid": "12205891", "query": "who is the speaker in shooting an elephant", "answer": "Orwell", "passage": "\"Cultural depictions of elephants\"\nthrough the oliphaunts of J. R. R. Tolkien's \"\"The Lord of the Rings\"\" trilogy and the alien invaders of Larry Niven and Jerry Pournelle's 1985 science fiction novel, \"\"Footfall\"\". Notable short stories featuring elephants include Rudyard Kipling's \"\"Toomai of the Elephants\"\" and \"\"The Elephant's Child\"\"; as well as Mark Twain's \"\"The Stolen White Elephant\"\". George Orwell wrote an allegorical essay, \"\"Shooting an Elephant\"\"; and in \"\"Hills Like White Elephants\"\", Ernest Hemingway used the allegorical white elephant, alluding to a pregnancy as an unwanted gift. The animal is also seen in historical novels. \"\"The Elephant's Journey\"\" (Portuguese: \"\"A Viagem do Elefante\"\","} +{"qid": "test196", "pid": "3135764", "query": "who is the speaker in shooting an elephant", "answer": "Orwell", "passage": "Musth\nsays that the king's elephants drip ichor in seven streams to match the scent put forth by the seven-leaved 'sapta-cchada' (= \"\"seven-leaf\"\") tree (perhaps \"\"Alstonia scholaris\"\"). Some poets turn it around to compare the elephant's ichor to the \"\"saptacchada\"\". The phenomenon has been described in poetry much before the time of Kalidasa, in Sanskrit, Tamil and Pali literature. \"\"Shooting an Elephant\"\" is an autobiographical account by George Orwell in which he describes how an elephant in Burma had an attack of musth and killed an Indian, which in turn, caused the death of the elephant. Sangam poetry describes musth. Kummatoor"} +{"qid": "test1960", "pid": "18939005", "query": "when does season 7 game of thrones dvd release", "answer": "December 12, 2017", "passage": "\"Game of Thrones (season 7)\"\nThe first official trailer for season 7 was released on May 24, 2017. The trailer set a world record for being the most viewed show trailer ever, being viewed 61 million times across digital platforms, in the first 24 hours. The second official trailer was released on June 21, 2017. The season premiere was screened at the Walt Disney Concert Hall in Los Angeles on July 12, 2017. The season was released on Blu-ray and DVD in region 1 on December 12, 2017. The season premiere was pirated 90 million times in the first three days after it aired. On"} +{"qid": "test1961", "pid": "1463252", "query": "when did hootie and the blowfish come out", "answer": "1986", "passage": "\"Hootie & the Blowfish\"\nsingles in the country. Hootie & the Blowfish formed in 1986. The quartet met when they were freshmen at the University of South Carolina in Columbia. Bryan heard Rucker singing in the showers of the dorm they shared and was impressed by his vocal ability. They began playing cover tunes as The Wolf Brothers; eventually they collaborated with Felber, a former high school bandmate of Bryan's, and Jim \"\"Soni\"\" Sonefeld as Hootie & the Blowfish. The name is a conjunction of the nicknames of two of their college friends. Brantley Smith was the original drummer for the band. He left"} +{"qid": "test1961", "pid": "1463267", "query": "when did hootie and the blowfish come out", "answer": "1986", "passage": "\"Hootie & the Blowfish\"\nAcademy to recognize achievement in the mainly English-language music industry. The MTV Video Music Award is an award presented by the cable channel MTV to honor the best in the music video medium. Hootie & the Blowfish Hootie & the Blowfish is an American rock band that was formed in Columbia, South Carolina, in 1986 by Darius Rucker, Mark Bryan, Dean Felber and Jim Sonefeld. As of July 2010, the band had charted sixteen singles on various \"\"Billboard\"\" singles charts and recorded five studio albums. Their debut album, \"\"Cracked Rear View\"\" (1994), is the 19th-best-selling album of all time in"} +{"qid": "test1961", "pid": "1463251", "query": "when did hootie and the blowfish come out", "answer": "1986", "passage": "\"Hootie & the Blowfish\"\nHootie & the Blowfish Hootie & the Blowfish is an American rock band that was formed in Columbia, South Carolina, in 1986 by Darius Rucker, Mark Bryan, Dean Felber and Jim Sonefeld. As of July 2010, the band had charted sixteen singles on various \"\"Billboard\"\" singles charts and recorded five studio albums. Their debut album, \"\"Cracked Rear View\"\" (1994), is the 19th-best-selling album of all time in the United States, and was certified platinum 21 times. They have sold over 21 million copies of their albums in the United States. The group was also popular in Canada, having three number-one"} +{"qid": "test1961", "pid": "7216127", "query": "when did hootie and the blowfish come out", "answer": "1986", "passage": "\"Mark Bryan\"\nMark Bryan Mark William Bryan (born May 6, 1967) is an American musician. He is a founding member, songwriter, and the lead guitarist for the band Hootie & the Blowfish. In 1986, Bryan and his friend Darius Rucker formed a duo called The Wolf Brothers while attending the University of South Carolina. Eventually, friends Dean Felber and Jim Sonefeld joined the band, which led to the founding of Hootie & the Blowfish in 1989. Bryan has also made three solo albums, including \"\"30 on the Rail\"\", \"\"End of the Front\"\", and \"\"Songs of the Fortnight\"\". Bryan was born in Silver"} +{"qid": "test1961", "pid": "3123428", "query": "when did hootie and the blowfish come out", "answer": "1986", "passage": "\"Darius Rucker\"\nhis dream. Rucker has been the lead singer of Hootie & the Blowfish since its formation in 1986. He met fellow band members Mark Bryan, Jim \"\"Soni\"\" Sonefeld, and Dean Felber while attending the University of South Carolina. Bryan heard Rucker singing in the shower, and the two became a duo, playing R.E.M. covers at a local venue. They later recruited Felber and finally Sonefeld joined in 1989. As a member of Hootie & the Blowfish, Rucker has recorded six studio albums: \"\"Cracked Rear View\"\" – 1994, \"\"Fairweather Johnson\"\" – 1996, \"\"Musical Chairs\"\" – 1998, \"\"Scattered, Smothered & Covered\"\" –"} +{"qid": "test1961", "pid": "19935265", "query": "when did hootie and the blowfish come out", "answer": "2003", "passage": "\"Nick Brophy\"\nIn Sept of 2001 he worked with the production team The Matrix on Avril Lavigne’s “Let Go” album which eventually sold over 6 million copies. The following year Brophy engineered 3 albums with producer Don Was, which included Hootie & the Blowfish “Hootie & the Blowfish”, the Rolling Stones “40 Licks” and Carly Simon “Christmas Is Almost Here”. During his time at Worlds End, Nick worked on albums with producers Dave Sardy, Paul Lani and Was as well as producing an album for Warner Australia artist “Mishelle Bradford-Jones\"\". In 2003, at the suggestion of friend and country artist Phil Vassar,"} +{"qid": "test1962", "pid": "16032677", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Tom and Jerry and the Wizard of Oz\"\nTom and Jerry and the Wizard of Oz Tom and Jerry & The Wizard of Oz is a 2011 animated musical fantasy comedy direct-to-video film starring Tom and Jerry, produced by Warner Bros. Animation. The film is an animated semi-adaptation of the 1939 musical film, \"\"The Wizard of Oz\"\" with the addition of Tom and Jerry. Droopy and Butch from Tex Avery's \"\"Droopy\"\" series also cameo as minor antagonists. Dorothy is a girl, who lives in Kansas with her Aunt Em and Uncle Henry, as well as farmhands Hunk, Hickory, and Zeke. She has a pet dog named Toto, a"} +{"qid": "test1962", "pid": "4257345", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Toto (Oz)\"\nToto (Oz) Toto is a fictional dog in L. Frank Baum's \"\"Oz\"\" series of children's books, and works derived from them. His name is pronounced with a long \"\"O\"\", a homophone of \"\"toe toe\"\". He was originally a small terrier drawn by W. W. Denslow for the first edition of \"\"The Wonderful Wizard of Oz\"\" (1900). He reappears in numerous adaptations, such as \"\"The Wizard of Oz\"\" (1939), \"\"The Wiz\"\" (1978) and \"\"Return to Oz\"\" (1985). Toto belongs to Dorothy Gale, the heroine of the first and many subsequent books. In the first book, he never spoke, although other animals,"} +{"qid": "test1962", "pid": "8155665", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"The Wizard of Oz (1902 musical)\"\nthis piece. It was not mentioned in the original novel, though it is mentioned in \"\"Ozma of Oz\"\" (1907). The main plot of the show, as recounted in newspapers of the time, is Pastoria's attempts to regain the throne from the Wizard of Oz. The original protagonists' search for the Wizard puts them on the wrong side of the law. A young girl named Dorothy Gale lives on the great Kansas prairies with her Aunt Em, Uncle Henry, and little dog, Toto. One day, while she is playing with her pet cow Imogene, a fierce whirlwind appears. Dorothy and Toto"} +{"qid": "test1962", "pid": "7439951", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Terry (dog)\"\nof Oz\"\" at Grauman's Chinese Theater; because of the popularity of the film, her name was changed to Toto in 1942. She had 16 total film appearances, three of which were playing in theaters at the same time in the fall of 1939: \"\"The Wizard of Oz\"\", \"\"The Women\"\", and \"\"Bad Little Angel\"\". Her last one was \"\"Tortilla Flat\"\" (1942), in which she was reunited with \"\"Oz\"\" director Victor Fleming and Frank Morgan, who played the Wizard. Terry was the mother of Rommy, another movie Cairn terrier, who appeared in other films including \"\"Reap the Wild Wind\"\" (1942) and \"\"Air"} +{"qid": "test1962", "pid": "20071373", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Dorothy and the Wizard of Oz\"\nbravery and farm girl feistiness. And whether it’s magic, Munchkins, flying monkeys or her arch-nemesis Wilhelmina, the wicked witch-in-training and niece of the Wicked Witch of the West, Dorothy is ready to track down and put a stop to any problem that comes Oz’s way with help from her dog Toto and their friends Scarecrow, Tin Man, and Cowardly Lion. At the start of the second season, the Wizard of Oz ends up back in Oz after getting mixed up in another tornado. Now that he has returned at last, he plots to make himself into a real wizard by"} +{"qid": "test1962", "pid": "7139614", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"The Wonderful Wizard of Oz (1986 TV series)\"\nby L. Frank Baum. The first story arc is an adaptation of the first Oz book, \"\"The Wonderful Wizard of Oz\"\". It follows the adventures of Dorothy, an orphan girl living out in the gray prairies of Kansas with her Aunt Em, her Uncle Henry and her dog Toto. One day, After Em and Uncle Henry leave Dorothy and Toto alone in order to travel into town. A tornado appears, uproots the farmhouse, with Dorothy and Toto inside, and transports it to the Land of Oz. In Oz Dorothy meets the Good Witch of the North, who tells her that"} +{"qid": "test1962", "pid": "5093530", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "Boq\nBoq Boq is a minor character in \"\"The Wonderful Wizard of Oz\"\" by L. Frank Baum. He becomes a more prominent character in Gregory Maguire's 1995 novel \"\"\"\", which purports to show the lives of some of Baum's characters from another perspective, and more prominent still in the Broadway musical \"\"Wicked\"\" which is based on Maguire's novel. In Baum's \"\"The Wonderful Wizard of Oz\"\", Boq is a rich Munchkin man who lives in the eastern quadrant called Munchkin Country in the Land of Oz. He gladly provides shelter for Dorothy and her dog Toto on their first night in Oz"} +{"qid": "test1962", "pid": "2316724", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Dorothy Gale\"\nrelative. (It is also possible that \"\"Aunt\"\" and \"\"Uncle\"\" are affectionate terms of a foster family and that Dorothy is not related to either of them, although Zeb in \"\"Dorothy and the Wizard in Oz\"\" claims to be Dorothy's second cousin, related through Aunt Em. Little mention is made of what happened to Dorothy's birth parents, other than a passing reference to her mother being dead.) Along with her small black dog, Toto, Dorothy is swept away by a tornado to the Land of Oz and, much like Alice of \"\"Alice's Adventures in Wonderland\"\", they enter an alternative world filled"} +{"qid": "test1962", "pid": "2756085", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Toto (band)\"\nand Jeff graduated. With the addition of former S.S. Fools singer Bobby Kimball, the group began to work on their first album in 1976 after signing with Columbia Records. Once the band came together, David Paich began composing what would become the eponymous debut album, Toto. According to popular myth, at the first recording sessions, in order to distinguish their own demo tapes from other bands' in the studio, Jeff Porcaro wrote the word \"\"Toto\"\" on them. In the early 1980s, band members told the press that the band was named after Toto the dog from \"\"The Wizard of Oz\"\"."} +{"qid": "test1962", "pid": "5237073", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "Billina\nBillina serves in this adventure, the role that Dorothy's pet dog Toto served in the first Oz book, \"\"The Wonderful Wizard of Oz\"\" (1900). A spunky, sassy and talkative chicken, Billina was originally named Bill because, she tells Dorothy, \"\"no one could tell whether I was going to be a hen or a rooster\"\". Dorothy insists on changing the hen's name to a feminine form. Billina endures several scares with the Kansas farm girl before they defeat the Nome King as only a hen can since eggs are poisonous to Nomes. At the end of the novel, Billina settles in"} +{"qid": "test1962", "pid": "2895714", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Land of Oz\"\nPatchwork Girl of Oz\"\", Dorothy specifies that he cannot speak because he is not a fairy dog. However, in \"\"Ozma of Oz\"\", the chicken Billina acquires speech merely by being swept to the lands near Oz, and in \"\"Dorothy and the Wizard in Oz\"\", the same is true of the kitten Eureka and the cab horse Jim when reaching the land of Mangaboos, a similarly magical land. In \"\"Tik-Tok of Oz\"\", Baum restored the continuity: Toto can speak, and always could, but never bothered to, because it was unnecessary. An additional inconsistency is introduced with \"\"Tik-Tok of Oz\"\": Hank the"} +{"qid": "test1962", "pid": "7239052", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"The Wonderful Wizard of Oz (1910 film)\"\nlarge cast before the camera, and it is unlikely that they will all ever be identified. Michael Patrick Hearn emphasizes that this cast list is not contemporary with the film and may have no basis in fact. The character Imogene the Cow did not appear in the novel. The cow was used as a replacement for Toto the dog in the stage musical. Many of the costumes and much of the make-up in this film, though notably, not of the Tin Woodman, resemble those used in the 1902 Broadway musical \"\"The Wizard of Oz\"\". (None of the songs in the"} +{"qid": "test1962", "pid": "1622065", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Ruby slippers\"\nof 2018. In L. Frank Baum's original novel, \"\"The Wonderful Wizard of Oz\"\" (1900), on which the film is based, Dorothy wears Silver Shoes. However, the color of the shoes was changed to red in order to take full advantage of the new Technicolor film process being used in big-budget Hollywood films of that era. Film screenwriter Noel Langley is credited with the idea. In the MGM film, an adolescent farm girl named Dorothy (played by Judy Garland), her dog Toto, and their farmhouse are swept away from Kansas by a tornado and taken to the magical Land of Oz."} +{"qid": "test1962", "pid": "655405", "query": "what is the dogs name in wizard of oz", "answer": "Toto", "passage": "\"Andrew Lloyd Webber\"\nthe West End. Following the opening of \"\"Love Never Dies\"\", Lloyd Webber again began a search for a new musical theatre performer in the BBC One series \"\"Over the Rainbow\"\". He cast the winner, Danielle Hope, in the role of Dorothy, and a dog to play Toto in his forthcoming stage production of \"\"The Wizard of Oz\"\". He and lyricist and composer Tim Rice wrote a number of new songs for the production to supplement the songs from the film. On 1 March 2011, \"\"The Wizard of Oz\"\" opened at The Palladium Theatre, starring Danielle Hope as Dorothy and Michael"} +{"qid": "test1965", "pid": "6317440", "query": "when was the last easter fell on april 1", "answer": "2018", "passage": "\"School holiday\"\n1 holidays have been scheduled around Easter, reflecting the three-term system's notion of an extended Easter break within Term 1; although since the mid-1990s this has gradually changed, and now only Queensland and Victoria tie the school holidays closely to Easter; the remainder of Australia and all of New Zealand now have a fixed length to Term 1 which leads to a school holiday in April and the Easter period falling within Term 1 in some years with an early Easter, such as 2018. The Term 2 holidays generally take place in early July, possibly beginning in the last days"} +{"qid": "test1966", "pid": "20044015", "query": "who won nfl football coach of the year", "answer": "Sean McVay", "passage": "\"Associated Press NFL Coach of the Year Award\"\nMiami Dolphins. Chuck Knox and Bill Belichick have each been awarded three times. The incumbent AP NFL Coach of the Year is Sean McVay, who led the Los Angeles Rams to the playoffs after a surprising turnaround, inheriting a team that went 4–12 the previous year and leading it to an 11–5 record and division title. Associated Press NFL Coach of the Year Award The Associated Press National Football League Coach of the Year Award is presented annually by the Associated Press (AP) to the National Football League (NFL) coach adjudged to have had the most outstanding season. It has"} +{"qid": "test1966", "pid": "17562986", "query": "who won nfl football coach of the year", "answer": "Sean McVay", "passage": "\"Active NFL head coach career Super Bowl history\"\nas a head coach). Vance Joseph, Doug Marrone, Sean McVay, Matt Nagy and Dirk Koetter are the only coaches who have never won or lost a Super Bowl having never made it to one. Six of the coaches have won a Super Bowl as head coach with their current teams, John Harbaugh, Bill Belichick, Sean Payton, Pete Carroll, Doug Pederson and Mike Tomlin. To group all wins or losses together, double left click on heading. Active NFL head coach career Super Bowl history There are 32 head coaches in the National Football League (NFL) for the 32 respective teams. Twenty-one"} +{"qid": "test1967", "pid": "141919", "query": "who abolished the monarchy and declared france a republic", "answer": "Convention", "passage": "\"French Revolution\"\nConvention abolished the monarchy, making France the French First Republic. A new French Republican Calendar was introduced to replace the Christian Gregorian calendar, renaming the year 1792 as year 1 of the Republic. With wars against Prussia and Austria having started earlier in 1792, France also declared war on the Kingdom of Great Britain and the Dutch Republic in November 1792. In the course of 1793, the Holy Roman Empire, the kings of Portugal and Naples and the Grand-Duke of Tuscany declared war against France. In the Brunswick Manifesto, the Imperial and Prussian armies threatened retaliation on the French population"} +{"qid": "test1967", "pid": "164832", "query": "who abolished the monarchy and declared france a republic", "answer": "Convention", "passage": "\"History of Europe\"\nvarious laws including the Declaration of the Rights of Man and of the Citizen, the abolition of feudalism, and a fundamental change in the relationship between France and Rome. At first the king agreed with these changes and enjoyed reasonable popularity with the people. As anti-royalism increased along with threat of foreign invasion, the king tried to flee and join France's enemies. He was captured and on 21 January 1793, having been convicted of treason, he was guillotined. On 20 September 1792 the National Convention abolished the monarchy and declared France a republic. Due to the emergency of war, the"} +{"qid": "test1967", "pid": "141910", "query": "who abolished the monarchy and declared france a republic", "answer": "Convention", "passage": "\"French Revolution\"\nmore moderate Girondists and the more radical Montagnards inside the Convention, with rumour used as a weapon by both sides. The Girondists lost ground when they seemed too conciliatory. But the pendulum swung again and after Thermidor, the men who had endorsed the massacres were denounced as terrorists. Chaos persisted until the Convention, elected by universal male suffrage and charged with writing a new constitution, met on 20 September 1792 and became the new \"\"de facto\"\" government of France. The next day it abolished the monarchy and declared a republic. The following day – 22 September 1792, the first morning"} +{"qid": "test1967", "pid": "18562887", "query": "who abolished the monarchy and declared france a republic", "answer": "Convention", "passage": "\"Paris in the 18th century\"\ncommon criminals. Voting for members of the Convention took place in early September, under the intimidating eye of the sans-culottes, who filled the Paris voting places. Twenty-four members were elected from Paris, including Robespierre, Danton, Marat, Camille Desmoulins, and the painter David. On 20 September, the hastily assembled revolutionary army won an indecisive victory at Valmy, causing the Prussians to withdraw, and saving Paris from attacks by the royalists. On 21 September, at its first meeting, the Convention abolished the monarchy, and the next day declared France to be a republic. The Convention moved its meeting place to a large"} +{"qid": "test1967", "pid": "721797", "query": "who abolished the monarchy and declared france a republic", "answer": "Convention", "passage": "\"Louis XVIII of France\"\nto France. Their property and titles were confiscated. The monarchy of France was abolished by the National Convention on 21 September 1792. Louis XVI was executed in January 1793. This left his young son, Louis Charles, as the titular King. The princes-in-exile proclaimed Louis Charles \"\"Louis XVII of France\"\". The Count of Provence now unilaterally declared himself regent for his nephew, who was too young to be head of the House of Bourbon. Louis Charles died in June 1795. His only surviving sibling was his sister Marie-Thérèse, who was not considered a candidate for the throne because of France's traditional"} +{"qid": "test1967", "pid": "2276727", "query": "who abolished the monarchy and declared france a republic", "answer": "Convention", "passage": "\"History of Paris\"\nfamily were imprisoned in the Temple fortress. On 21 September, at its first meeting, the Convention abolished the monarchy, and the next day declared France to be a republic. The Convention moved its meeting place to a large hall, a former theatre, the Salle des Machines within the Tuileries Palace. The Committee of Public Safety, charged with hunting down the enemies of the Revolution, established its headquarters in the Pavillon de Flore, the south pavilion of the Tuileries, while the Tribunal, the revolutionary court, set up its courtroom within the old Palais de la Cité, the medieval royal residence on"} +{"qid": "test1968", "pid": "5884041", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Ten Commandments\"\nverse, is used for public Torah reading, while the \"\"ta'am tachton\"\" (lower accentuation), which divides the text into verses of more even length, is used for private reading or study. The verse numbering in Jewish Bibles follows the \"\"ta'am tachton\"\". In Jewish Bibles the references to the Ten Commandments are therefore and . The Samaritan Pentateuch varies in the Ten Commandments passages, both in that the Samaritan Deuteronomical version of the passage is much closer to that in Exodus, and in that Samaritans count as nine commandments what others count as ten. The Samaritan tenth commandment is on the sanctity"} +{"qid": "test1968", "pid": "8299689", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Women in the Bible\"\nwomen in the Hebrew Bible. Most theologians agree the Hebrew Bible does not depict the slave, the poor, or women, as different metaphysically in the manner other societies of the same eras did. Theologians Evelyn Stagg and Frank Stagg say the Ten Commandments of Exodus 20 contain aspects of both male priority and gender balance. In the tenth commandment against coveting, a wife is depicted in the examples not to be coveted: house, \"\"wife,\"\" male or female slave, ox or donkey, or 'anything that belongs to your neighbour.' On the other hand, the fifth commandment to honor parents does not"} +{"qid": "test1968", "pid": "5884022", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Ten Commandments\"\nTen Commandments The Ten Commandments (, \"\"Aseret ha'Dibrot\"\"), also known as the Decalogue, are a set of biblical principles relating to ethics and worship, which play a fundamental role in Judaism and Christianity. The commandments include instructions to worship only God, to honour one's parents, and to keep the sabbath, as well as prohibitions against idolatry, blasphemy, murder, adultery, theft, dishonesty, and coveting. Different religious groups follow different traditions for interpreting and numbering them. The Ten Commandments appear twice in the Hebrew Bible, in the books of Exodus and Deuteronomy. Modern scholarship has found likely influences in Hittite and Mesopotamian"} +{"qid": "test1968", "pid": "5884067", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Ten Commandments\"\n34:28 identifies a different list as the ten commandments, that of Exodus 34:11–27. Since this passage does not prohibit murder, adultery, theft, etc., but instead deals with the proper worship of Yahweh, some scholars call it the \"\"Ritual Decalogue\"\", and disambiguate the ten commandments of traditional understanding as the \"\"Ethical Decalogue\"\". According to these scholars the Bible includes multiple versions of events. On the basis of many points of analysis including linguistic it is shown as a patchwork of sources sometimes with bridging comments by the editor (Redactor) but otherwise left intact from the original, frequently side by side. Richard"} +{"qid": "test1968", "pid": "12453266", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Robert Barker (printer)\"\nof poor quality, and it contained many mistakes which were corrected in subsequent printings. The Wicked Bible, also known as \"\"The Adulterous Bible\"\" or \"\"The Sinners' Bible\"\" was published in 1631 by Robert Barker and Martin Lucas, both royal printers in London, and was intended to be a word-for-word reprint of the King James Bible. However, in the Ten Commandments (Exodus 20:14) the word \"\"not\"\" in the sentence \"\"Thou shalt not commit adultery\"\" was omitted. About a year later, Barker and Lucas were fined £300 (roughly equivalent to 33,800 pounds today) and were deprived of their printer's licences. The fact"} +{"qid": "test1968", "pid": "737032", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Mount Sinai\"\nMount Sinai Mount Sinai (, \"\"Har Sinai\"\"; or ; or ; ; ), also known as Mount Horeb or Gabal Musa, is a mountain in the Sinai Peninsula of Egypt that is a possible location of the biblical Mount Sinai, which is considered a holy site by the Abrahamic religions. Mount Sinai is mentioned many times in the Book of Exodus and other books of the Bible, and the Quran. According to Jewish, Christian, and Islamic tradition, the biblical Mount Sinai was the place where Moses received the Ten Commandments. Mount Sinai is a moderately high mountain near the city"} +{"qid": "test1968", "pid": "13666138", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Honour thy father and thy mother\"\nHonour thy father and thy mother \"\"Honour thy father and thy mother\"\" is one of the Ten Commandments in the Hebrew Bible. The commandment is generally regarded in Protestant and Jewish sources as the fifth in both the list in Exodus 20:1–21, and in Deuteronomy (Dvarim) 5:1–23. Catholics count this as the fourth. These commandments were enforced as law in many jurisdictions, and are still considered enforceable law by some. Exodus 20, 1 describes the Ten Commandments as being spoken by God, inscribed on two stone tablets by the finger of God, broken by Moses, and rewritten on replacement stones"} +{"qid": "test1968", "pid": "8428429", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Jealousy in religion\"\nneither will he rest content, though you give many gifts.\"\" (Book of Proverbs 6:32–35, World English Bible) The destructive potential of romantic jealousy may underlie the strong prohibitions against actions that can provoke it. Two of the Ten Commandments prohibit feelings and actions that could potentially provoke romantic jealousy. The tenth commandment says \"\"You shall not covet your neighbor's wife,\"\" and the seventh commandment says \"\"You shall not commit adultery.\"\" (Exodus 20: 14–17, World English Bible). The punishment for committing adultery was death, both for the adulteress and the adulterer. The destructive potential of male romantic jealousy may also underlie"} +{"qid": "test1968", "pid": "6819915", "query": "location of the ten commandments in the bible", "answer": "Exodus", "passage": "\"Biblical Mount Sinai\"\nancient peoples, from the locations where the majority of scholars currently place them. Biblical Mount Sinai According to the Book of Exodus, Mount Sinai (Hebrew: הר סיני, \"\"Har Sinai\"\") is the mountain at which the Ten Commandments were given to Moses by God. In the Book of Deuteronomy, these events are described as having transpired at Mount Horeb. \"\"Sinai\"\" and \"\"Horeb\"\" are generally considered to refer to the same place by scholars. Hebrew Bible texts describe the theophany at Mount Sinai in terms which a minority of scholars, following Charles Beke (1873), have suggested may literally describe the mountain as"} +{"qid": "test197", "pid": "8925471", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Sheila Carter\"\nSheila Carter Sheila Carter is a fictional character from \"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\", American soap operas on the CBS network. Created by William J. Bell, the role was introduced in 1990 — by Edward J. Scott — under the portrayal of Kimberlin Brown, who portrayed the role for many intervals on both soaps until 2006. That same year, Michelle Stafford took over the role, after Sheila had plastic surgery to look like Phyllis Summers. Brown returned to the role of Sheila on \"\"The Bold and the Beautiful\"\", beginning on June 9, 2017. Sheila"} +{"qid": "test197", "pid": "8925515", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Sheila Carter\"\nherself outside the closed mansion door. Sheila is often considered to be one of the most popular villains in daytime. Kimberlin Brown was nominated for a Daytime Emmy in the role as Outstanding Supporting Actress in 1993. Sheila Carter Sheila Carter is a fictional character from \"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\", American soap operas on the CBS network. Created by William J. Bell, the role was introduced in 1990 — by Edward J. Scott — under the portrayal of Kimberlin Brown, who portrayed the role for many intervals on both soaps until 2006. That"} +{"qid": "test197", "pid": "3451144", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Kimberlin Brown\"\nKimberlin Brown Kimberlin Brown Pelzer (born June 29, 1961) is an American actress best known for her role as Sheila Carter in \"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\" between 1990 and 2018. Brown was born in Hayward, California. She has been married to Gary Pelzer since May 1991. They have two children, Alexes Marie (born 1994) and Nicholas. Kimberlin started on \"\"The Young and the Restless\"\" in 1990 (after originally auditioning for the role of Cassandra Rawlins) and moved to \"\"The Bold and the Beautiful\"\" in 1992 playing Sheila on both soaps. While she left"} +{"qid": "test197", "pid": "19983831", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"The Bold and the Beautiful characters (2017)\"\non October 2, 2017. Mateo is introduced as the Forrester Estate manager, who is hired by Sheila Carter (Kimberlin Brown) to seduce Quinn Fuller (Rena Sofer), and cause her to betray Eric Forrester (John McCook)'s trust and have an affair, leading to the eventual end of their marriage. The Bold and the Beautiful characters (2017) \"\"The Bold and the Beautiful\"\" is an American television soap opera. It was first broadcast on March 23, 1987, and airs on CBS. The following is a list of characters that first appeared or will appear in the soap in 2017, by order of first"} +{"qid": "test197", "pid": "7090889", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Sally Spectra\"\nsold to Nick Marone (Jack Wagner), Sally was still considered family, and beloved by everyone. In fact, Eric considered her a Forrester herself. She also gave nicknames to others in her extended family, namely Felicia Forrester (Lesli Kay), whom she affectionately called \"\"Fifi.\"\" In addition, Sally defended Stephanie against Sheila Carter (Kimberlin Brown), who was harassing the Forrester matriarch after poisoning her with mercury pills, this planted the seeds of Stephanie and Sally's friendship. Sally Spectra Sally Spectra is a fictional character from the American soap opera \"\"The Bold and the Beautiful\"\". Sally was played by actress Darlene Conley from"} +{"qid": "test197", "pid": "1579411", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"The Young and the Restless\"\nsaw on-screen, but the man he could and would become.\"\" Bell rewrote the story to save the character and put Braeden on contract. Victor's romance with Nikki Reed became a prominent plot in the series. With the success of another iconic character, Kimberlin Brown's Sheila Carter, Bell made daytime drama history in 1992 by successfully crossing her over from \"\"The Young and the Restless\"\" to his second soap, \"\"The Bold and the Beautiful\"\". The success of the crossover was due, in part, to the creativity of Bell, as the nefarious character of Sheila was presumed to have died in a"} +{"qid": "test197", "pid": "8925472", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Sheila Carter\"\nis known as a villain. A significant portion of Sheila's history on both soaps revolves around her long-running conflict with Lauren Fenmore, whom she has attempted to kill on multiple occasions. She has also had conflicts with Stephanie Forrester, Maggie Forrester, Amber Moore, Taylor Hayes, Brooke Logan, Phyllis Summers and Quinn Fuller. The role was portrayed by Kimberlin Brown for a total of 16 years. Her first run was on \"\"The Young and the Restless\"\" from May 1990 to May 20, 1992, when the character crossed over to \"\"The Bold and the Beautiful\"\" from May 21, 1992, to October 2,"} +{"qid": "test197", "pid": "12156807", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Taylor Hayes (The Bold and the Beautiful)\"\nCarter (Kimberlin Brown) who is criminally insane has broken out of jail. She tries to warn Eric, but instead is shot by Sheila while shielding Brooke. Taylor survives emergency surgery but dies in Ridge's arms due to heart failure. In 2005, Taylor re-appears at Bridget Forrester (Ashley Jones) and Nick Marone's (Jack Wagner) wedding ceremony and is soon revealed to be alive. She had been removed from the hospital by Prince Omar after her apparent death and was kept alive in a coma before waking up. Taylor learns that Ridge is now married to Brooke and they share a son"} +{"qid": "test197", "pid": "10380998", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Michelle Stafford", "passage": "\"The Young and the Restless storylines\"\n\"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\", the character was later handed over to Michelle Stafford, who also plays Phyllis. Although this recast was mainly storyline-directed, since Sheila had plastic surgery to look like Phyllis, fans of Sheila have expressed mixed opinions regarding Brown's absence in the role. Unlike other soaps in the 1980s or 1990s, \"\"The Young and the Restless\"\" avoided preachy social issues. When they did touch on such issues as abortion or the homeless crisis or AIDS, it was only as a plot device with a few facts and statistics thrown in for"} +{"qid": "test197", "pid": "12156847", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Taylor Hayes (The Bold and the Beautiful)\"\nthe writing began when the character of Morgan appeared on the show. Furthermore, both Tylo and Bell agreed that Taylor was at a \"\"brick wall\"\", but Bell was \"\"afraid to go beyond that\"\" and have the character go \"\"off the deep end\"\", in fear of destroying her integrity. However, Tylo believed that \"\"in reality that's what she needed – to be more human. But she just got boring instead\"\". Taylor is gunned down by Sheila Carter (Kimberlin Brown) and appears to die in hospital a few days later due to her injuries. Tylo eventually returned to the soap, with Taylor"} +{"qid": "test197", "pid": "3451148", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Kimberlin Brown\"\nOctober 2017, Brown formally announced her candidacy as a Republican for California's 36th congressional district, challenging Democrat Raul Ruiz in the November 2018 election. Kimberlin Brown Kimberlin Brown Pelzer (born June 29, 1961) is an American actress best known for her role as Sheila Carter in \"\"The Young and the Restless\"\" and \"\"The Bold and the Beautiful\"\" between 1990 and 2018. Brown was born in Hayward, California. She has been married to Gary Pelzer since May 1991. They have two children, Alexes Marie (born 1994) and Nicholas. Kimberlin started on \"\"The Young and the Restless\"\" in 1990 (after originally auditioning"} +{"qid": "test197", "pid": "14098288", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Amber Moore\"\ntold \"\"Soap Opera Digest\"\": \"\"He's been wonderful and fun. We've got really great chemistry that I think is very natural. We have a different dynamic, and at the same time when Amber is doing all of this horrible stuff, she really is in love with him\"\". After that relationship failed, she was married to Daniel Romalotti (Michael Graziadei). The marriage was short; she left Genoa City and returned to Los Angeles. Amber arrived in Los Angeles (\"\"The Bold and the Beautiful\"\") from Death Valley, where she meets Sheila Carter (Kimberlin Brown) in 1997. Originally hired by James (Ian Buchanan) and"} +{"qid": "test197", "pid": "8167963", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Lauren Fenmore\"\nLauren Fenmore Lauren Fenmore is a fictional character from the American CBS soap opera \"\"The Young and the Restless\"\". Introduced by William J. Bell, the character made her debut during the episode airing on January 21, 1983, portrayed by Tracey E. Bregman. In 1992, Bregman brought the character to \"\"The Bold and the Beautiful\"\", resulting in her migrating there fully in 1995. The character was first married to private investigator Paul Williams (Doug Davidson) for two years. Much of Lauren's history on both soap operas revolves around her rivalry with villain Sheila Carter (Kimberlin Brown). They first fought over Scott"} +{"qid": "test197", "pid": "8167984", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Lauren Fenmore\"\neven kidnapping Lauren briefly. Lauren Fenmore Lauren Fenmore is a fictional character from the American CBS soap opera \"\"The Young and the Restless\"\". Introduced by William J. Bell, the character made her debut during the episode airing on January 21, 1983, portrayed by Tracey E. Bregman. In 1992, Bregman brought the character to \"\"The Bold and the Beautiful\"\", resulting in her migrating there fully in 1995. The character was first married to private investigator Paul Williams (Doug Davidson) for two years. Much of Lauren's history on both soap operas revolves around her rivalry with villain Sheila Carter (Kimberlin Brown). They"} +{"qid": "test197", "pid": "14098278", "query": "who plays sheila carter on the bold and the beautiful", "answer": "Kimberlin Brown", "passage": "\"Amber Moore\"\nand becoming an enemy of Sheila Carter (Kimberlin Brown), a psychotic criminal. She last appeared during the episode that aired April 14, 2005. Frantz was later brought over to \"\"The Young and the Restless\"\" by former head writer Lynn Marie Latham, where she aired from November 28, 2006 to May 27, 2010. There, she became involved in storylines involving Katherine Chancellor (Jeanne Cooper), the show's matriarch. She also had romances with Cane Ashby (Daniel Goddard) and Daniel Romalotti (Michael Graziadei). After her exit, she returned to \"\"The Bold and the Beautiful\"\". Upon her return, she became pregnant and gave birth"} +{"qid": "test1970", "pid": "18798528", "query": "who did the us share the oregon country with", "answer": "British", "passage": "\"James K. Polk (song)\"\nsong says that Polk \"\"made the English sell the Oregon Territory\"\" during his presidency. In fact, the US had claimed part of what was then called Oregon Country prior to Polk's administration. Polk did sign the Oregon Treaty with the United Kingdom in 1846, which delineated American and British claims in the Pacific Northwest. Only after this treaty was the Oregon Territory established. Although \"\"Factory Showroom\"\" received a lukewarm response from critics, \"\"James K. Polk\"\" has been generally well regarded. In a review of the song for AllMusic, Stewart Mason praised the song for both its melody and its lyrics,"} +{"qid": "test1970", "pid": "13991384", "query": "who did the us share the oregon country with", "answer": "British", "passage": "\"Territorial evolution of North America since 1763\"\nThe Treaty of 1818 established the 49th parallel north west of the Lake of the Woods as the border with British-held lands, and Oregon Country was established as a shared land between the United States and United Kingdom. Oregon Country consisted of most of present-day Idaho and Oregon, all of Washington, and a portion of Montana, as well as the southern part of the unorganized British territory which became British Columbia. The treaty transferred the Red River Basin to the United States, consisting of northwestern Minnesota, northeastern North Dakota, and the northeastern tip of South Dakota. The southern portion of"} +{"qid": "test1970", "pid": "3181396", "query": "who did the us share the oregon country with", "answer": "British", "passage": "\"Fort Hall\"\nOregon Country (which they called the Columbia District or the Columbia Department) from their headquarters at Fort Vancouver on the Columbia River. As the British did not want American pioneers in Oregon, the British officials newly at Fort Hall discouraged pioneers. They showed new emigrants the abandoned wagons of earlier emigrants who lost their oxen. They were forced to proceed on foot with any remaining domestic animals. In 1843, Marcus Whitman, a missionary who had established a mission near present-day Walla Walla, Washington, led a wagon train westward from Fort Hall, despite discouragement from the British. His reports, when received"} +{"qid": "test1971", "pid": "13095618", "query": "when did rob dyrdek's fantasy factory end", "answer": "March 5, 2015", "passage": "\"Rob Dyrdek's Fantasy Factory\"\nJanuary 1, 2015 and ended March 5, 2015. Rob Dyrdek's Fantasy Factory Rob Dyrdek's Fantasy Factory is an American reality television series that aired on MTV and debuted on February 8, 2009. The factory is a space for skateboarder Rob Dyrdek to manage two aspects of his life, business and pleasure. The 25,000-square-foot complex contains two distinct areas: A warehouse designed for skateboarding and an office complex. Dyrdek's cousin, Christopher \"\"Drama\"\" Pfaff serves as Dyrdek's assistant on the show. Christopher \"\"Big Black\"\" Boykin, originally from \"\"Rob & Big\"\", made his debut appearance to the Fantasy Factory beginning in the fourth"} +{"qid": "test1972", "pid": "880494", "query": "roman god of the underworld also called orcus or pluto", "answer": "Dis Pater", "passage": "Orcus\nbecause Pluto and 90482 Orcus are both plutinos. Orcus Orcus () was a god of the underworld, punisher of broken oaths in Italic and Roman mythology. As with Hades, the name of the god was also used for the underworld itself. In the later tradition, he was conflated with Dis Pater. Orcus was portrayed in paintings in Etruscan tombs as a hairy, bearded giant. A temple to Orcus may have existed on the Palatine Hill in Rome. It is likely that he was transliterated from the Greek daemon Horkos, the personification of Oaths and a son of Eris. The origins"} +{"qid": "test1972", "pid": "959836", "query": "roman god of the underworld also called orcus or pluto", "answer": "Dis Pater", "passage": "\"Pluto (mythology)\"\nthe underworld. \"\"Plūtō\"\" (; genitive \"\"Plūtōnis\"\") is the Latinized form of the Greek \"\"Plouton\"\". Pluto's Roman equivalent is Dis Pater, whose name is most often taken to mean \"\"Rich Father\"\" and is perhaps a direct translation of \"\"Plouton.\"\" Pluto was also identified with the obscure Roman Orcus, like Hades the name of both a god of the underworld and the underworld as a place. The borrowed Greek name \"\"Pluto\"\" is sometimes used for the ruler of the dead in Latin literature, leading some mythology handbooks to assert misleadingly that Pluto was the Roman counterpart of Hades. \"\"Pluto\"\" (\"\"Pluton\"\" in French"} +{"qid": "test1972", "pid": "959841", "query": "roman god of the underworld also called orcus or pluto", "answer": "Dis Pater", "passage": "\"Pluto (mythology)\"\nabundance or riches, Pluto expresses the aspect of the underworld god that was positive, symbolized in art by the \"\"horn of plenty\"\" (cornucopia), by means of which \"\"Plouton\"\" is distinguished from the gloomier Hades. The Roman poet Ennius (\"\"ca.\"\" 239–169 BC), the leading figure in the Hellenization of Latin literature, considered Pluto a Greek god to be explained in terms of the Roman equivalents Dis Pater and Orcus. It is unclear whether Pluto had a literary presence in Rome before Ennius. Some scholars think that rituals and beliefs pertaining to Pluto entered Roman culture with the establishment of the Saecular"} +{"qid": "test1972", "pid": "880489", "query": "roman god of the underworld also called orcus or pluto", "answer": "Dis Pater", "passage": "Orcus\nThe so-called Tomb of Orcus, an Etruscan site at Tarquinia, is a misnomer, resulting from its first discoverers mistaking as Orcus a hairy, bearded giant that was actually a figure of a Cyclops. The Romans sometimes conflated Orcus with other gods such as Pluto, Hades, and Dis Pater, god of the land of the dead. The name \"\"Orcus\"\" seems to have been given to his evil and punishing side, as the god who tormented evildoers in the afterlife. Like the name Hades (or the Norse Hel, for that matter), \"\"Orcus\"\" could also mean the land of the dead. Orcus was"} +{"qid": "test1972", "pid": "880488", "query": "roman god of the underworld also called orcus or pluto", "answer": "Dis Pater", "passage": "Orcus\nOrcus Orcus () was a god of the underworld, punisher of broken oaths in Italic and Roman mythology. As with Hades, the name of the god was also used for the underworld itself. In the later tradition, he was conflated with Dis Pater. Orcus was portrayed in paintings in Etruscan tombs as a hairy, bearded giant. A temple to Orcus may have existed on the Palatine Hill in Rome. It is likely that he was transliterated from the Greek daemon Horkos, the personification of Oaths and a son of Eris. The origins of Orcus may have lain in Etruscan religion."} +{"qid": "test1974", "pid": "13491903", "query": "cast of a nightmare on elm street 1984", "answer": "Robert Englund", "passage": "\"A Nightmare on Elm Street (2010 film)\"\n1984 but changed to a child killer instead. Freddy's physical appearance was changed with the use of computer-generated imagery to be closer to that of a burn victim. Because of the positive experiences Platinum Dunes' producers had in the area, \"\"A Nightmare on Elm Street\"\" was filmed primarily in Illinois. Robert Englund, who portrayed Freddy in the previous eight films, voiced his support of the remake and the casting of Haley in the role of Freddy. \"\"A Nightmare on Elm Street\"\" was officially released in North America on April 30, 2010, and later released in foreign markets on May 8,"} +{"qid": "test1974", "pid": "7441254", "query": "cast of a nightmare on elm street 1984", "answer": "Heather Langenkamp", "passage": "\"Nancy Thompson (A Nightmare on Elm Street)\"\nNancy Thompson (A Nightmare on Elm Street) Nancy Thompson (named Nancy Holbrook in the 2010 reboot) is a fictional character in the \"\"A Nightmare on Elm Street\"\" franchise. She was portrayed by actress Heather Langenkamp in the original film series and by Rooney Mara in the 2010 remake. Introduced in the original \"\"A Nightmare on Elm Street\"\" film in 1984, Nancy is the first person to battle Freddy Krueger and survive. In \"\"\"\" (1987), Nancy guides the last of the Elm Street children with their battle against Freddy. In \"\"Wes Craven's New Nightmare\"\" (1994), Heather Langenkamp must become Nancy once"} +{"qid": "test1974", "pid": "1351703", "query": "cast of a nightmare on elm street 1984", "answer": "Johnny Depp", "passage": "\"Wes Craven\"\ntheir resources and came up with $90,000. Later, in Craven's best-known film, \"\"A Nightmare on Elm Street\"\" (1984), Cunningham directed one of the chase scenes, although he was not credited. Their characters, Freddy Krueger and Jason Voorhees, appeared together in the slasher film \"\"Freddy vs. Jason\"\" (2003) with Cunningham acting as producer, while screenwriter Victor Miller is credited as \"\"Character Creator\"\". Later, in \"\"The Last House on the Left\"\" remake (2009), Cunningham and Craven share production credits. Craven had a hand in launching actor Johnny Depp's career by casting him in \"\"A Nightmare on Elm Street\"\", Depp's first major film"} +{"qid": "test1974", "pid": "19985751", "query": "cast of a nightmare on elm street 1984", "answer": "Amanda Wyss", "passage": "\"Tina Gray (A Nightmare on Elm Street)\"\nTina Gray (A Nightmare on Elm Street) Christina \"\"Tina\"\" Gray (named Christina \"\"Kris\"\" Fowles in the 2010 reboot) is a fictional character in the \"\"A Nightmare on Elm Street\"\" franchise. She was created by Wes Craven. The character was portrayed by Amanda Wyss in the original film and Katie Cassidy in the 2010 film. A high school student whose death is the catalyst for the events of the series, Gray is the false protagonist of the 1984 original film. She also appears in the novels, \"\"Wes Craven's New Nightmare\"\" (1994), \"\"Freddy vs. Jason\"\" (2003), 2010 reboot, merchandise based on the"} +{"qid": "test1974", "pid": "6343188", "query": "cast of a nightmare on elm street 1984", "answer": "Heather Langenkamp", "passage": "\"A Nightmare on Elm Street\"\nA Nightmare on Elm Street A Nightmare on Elm Street is a 1984 American slasher film written and directed by Wes Craven, and produced by Robert Shaye. It stars Heather Langenkamp, John Saxon, Ronee Blakley, Amanda Wyss, Jsu Garcia, Robert Englund, and Johnny Depp in his film debut. The plot focuses on four teenagers, living on one street in a fictitious town of Ohio, whose dreams are invaded by a burnt killer with a bladed glove. In the dreams, the teenagers are killed, but they also die in reality. The teenagers do not understand the cause of this strange phenomenon,"} +{"qid": "test1974", "pid": "6343226", "query": "cast of a nightmare on elm street 1984", "answer": "Heather Langenkamp", "passage": "\"A Nightmare on Elm Street\"\nreturning to the series in a cameo role. A Nightmare on Elm Street A Nightmare on Elm Street is a 1984 American slasher film written and directed by Wes Craven, and produced by Robert Shaye. It stars Heather Langenkamp, John Saxon, Ronee Blakley, Amanda Wyss, Jsu Garcia, Robert Englund, and Johnny Depp in his film debut. The plot focuses on four teenagers, living on one street in a fictitious town of Ohio, whose dreams are invaded by a burnt killer with a bladed glove. In the dreams, the teenagers are killed, but they also die in reality. The teenagers do"} +{"qid": "test1974", "pid": "2025919", "query": "cast of a nightmare on elm street 1984", "answer": "Robert Englund", "passage": "\"A Nightmare on Elm Street (franchise)\"\nas to whether it would be a good idea to remake the film. Craven expressed his displeasure, primarily because the filmmakers chose not to have him as a consultant to the film, unlike with the 2009 remake \"\"The Last House on the Left\"\" where he \"\"shepherd[ed] it towards production\"\". In contrast, Robert Englund felt it was time for \"\"A Nightmare on Elm Street\"\" to be remade. Englund liked the idea of being able to \"\"exploit the dreamscape\"\" with CGI and other technologies that did not exist when Craven was making the original \"\"Nightmare on Elm Street\"\" in 1984. When comparing"} +{"qid": "test1974", "pid": "19985761", "query": "cast of a nightmare on elm street 1984", "answer": "Amanda Wyss", "passage": "\"Tina Gray (A Nightmare on Elm Street)\"\nher...\"\" Tommy Hutson stated, \"\"Like Marion Crane's demise in \"\"Psycho\"\", Tina's violent murder was a catalyst that propelled the other characters into action.\"\" Tina Gray (A Nightmare on Elm Street) Christina \"\"Tina\"\" Gray (named Christina \"\"Kris\"\" Fowles in the 2010 reboot) is a fictional character in the \"\"A Nightmare on Elm Street\"\" franchise. She was created by Wes Craven. The character was portrayed by Amanda Wyss in the original film and Katie Cassidy in the 2010 film. A high school student whose death is the catalyst for the events of the series, Gray is the false protagonist of the 1984"} +{"qid": "test1974", "pid": "13491894", "query": "cast of a nightmare on elm street 1984", "answer": "Robert Englund", "passage": "\"A Nightmare on Elm Street (2010 film)\"\nwhen he was not consulted on the project. Robert Englund, who portrayed Freddy in the previous eight films, voiced his support of the remake and the casting of Haley in the role of Freddy. \"\"A Nightmare on Elm Street\"\" was officially released in North America on April 30, 2010, and later released in foreign markets on May 8, 2010. The film was met with negative reviews from both film critics and audience members who scored the film a C+ in CinemaScore polls. Regardless, \"\"A Nightmare on Elm Street\"\" broke the record for midnight openings for a horror film and grossed"} +{"qid": "test1974", "pid": "10947153", "query": "cast of a nightmare on elm street 1984", "answer": "Heather Langenkamp", "passage": "\"Texas Fear Fest\"\npart of an \"\"A Nightmare on Elm Street\"\" reunion featuring Heather Langenkamp, Amanda Wyss, Nick Corri, John Saxon, and Ronee Blakley. Also held was a tribute to \"\"\"\" with the stars of the film Ken Sagoes, Rodney Eastman, Jennifer Rubin, and Penelope Sudrow. \"\"\"\" also celebrated its 20th anniversary at Texas Fear Fest. Lisa Wilcox, Brooke Theiss, Andras Jones, and Kelly Jo Minter from \"\"\"\" also appeared. Friday Night Frights and Alamo Drafthouse screened the original \"\"A Nightmare on Elm Street\"\" (with the cast hosting), \"\"\"\" (with director/cast hosting), and \"\"Fright Night\"\" with guest hosts Chris Sarandon, Stephen Geoffreys, Jonathan"} +{"qid": "test1974", "pid": "6343197", "query": "cast of a nightmare on elm street 1984", "answer": "Heather Langenkamp", "passage": "\"A Nightmare on Elm Street\"\na bright morning where all of her friends and her mother are still alive. She gets into Glen's convertible to go to school and then the top suddenly comes down and locks them in as the car drives uncontrollably down the street. Two girls playing jump rope are heard chanting Krueger's nursery rhyme as Marge is grabbed by Krueger through the front door window. The cast of \"\"A Nightmare on Elm Street\"\" included a crew of veteran actors such as Robert Englund and John Saxon and several aspiring young actors like Johnny Depp and Heather Langenkamp. Krueger's disfigured face was"} +{"qid": "test1974", "pid": "15575869", "query": "cast of a nightmare on elm street 1984", "answer": "Robert Englund", "passage": "\"A Nightmare on Elm Street 2: Freddy's Revenge\"\nA Nightmare on Elm Street 2: Freddy's Revenge A Nightmare on Elm Street 2: Freddy's Revenge is a 1985 American slasher film directed by Jack Sholder and the second installment in the \"\"A Nightmare on Elm Street\"\" film series. The screenplay was written by David Chaskin. It stars Mark Patton, Kim Myers, Robert Rusler and Robert Englund as Freddy Krueger. Patton plays Jesse Walsh, a teenager who, after moving into the home of Nancy Thompson, begins to have recurring nightmares of Freddy Krueger who is out to possess him in order to kill in the real world. It is the"} +{"qid": "test1975", "pid": "911474", "query": "african countries that begin with the letter a", "answer": "Angola", "passage": "\"Hampton, Virginia\"\n20 plus Africans captured from the slave ship \"\"Sao Joao Bautista\"\". These were the first Africans to come ashore on English-occupied land in what would become the United States. John Rolfe, the widower of Pocahontas, wrote in a letter that he was at Point Comfort and witnessed the arrival of the first Africans. Although these first Bantu men from Angola were considered indentured servants, their arrival marked the beginning of slavery in North America. Two of the first Africans to arrive at Old Point Comfort in 1619 were Antoney and Isabella. Their child, the first of African descent born in"} +{"qid": "test1976", "pid": "19587397", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Rudolf Allers\"\nin 1958. In 1908 he married Carola Meitner, sister Lise physical and contributor to the Nobel laureate Otto Hahn. Allers is buried in St. Mary's Cemetery in Washington DC. Rudolf Allers Rudolf Allers (1883-1963) was an Austrian psychiatrist who was a member of the first group of the founder of psychoanalysis, Sigmund Freud. Allers was the only Catholic to join the first group of the founder of psychoanalysis Sigmund Freud. Together with Alfred Adler, he later distanced himself from psychoanalysis as understood by Freud and his followers. He was later detached from the group of Adler along with Oswald Schwarz."} +{"qid": "test1976", "pid": "19587395", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Rudolf Allers\"\nRudolf Allers Rudolf Allers (1883-1963) was an Austrian psychiatrist who was a member of the first group of the founder of psychoanalysis, Sigmund Freud. Allers was the only Catholic to join the first group of the founder of psychoanalysis Sigmund Freud. Together with Alfred Adler, he later distanced himself from psychoanalysis as understood by Freud and his followers. He was later detached from the group of Adler along with Oswald Schwarz. He taught at the University of Vienna (1919). He was master of Viktor Frankl, guidance of Hans Urs von Balthasar and friend of St. Edith Stein. Both von Balthasar"} +{"qid": "test1976", "pid": "9198059", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Resistance (psychoanalysis)\"\nAdditionally, many psychologists believe that the success of psychoanalysis is not due its various explanatory systems or its reasoning for repression, but rather simply due to the process of communication. Resistance (psychoanalysis) Resistance, in the context of the field of psychoanalysis, refers to oppositional behavior when an individual's unconscious defenses of the ego are threatened by an external source. Sigmund Freud, the founder of psychoanalytic theory, developed his concept of resistance as he worked with patients who suddenly developed uncooperative behaviors during sessions of talk therapy. He reasoned that an individual that is suffering from a psychological affliction, which Sigmund"} +{"qid": "test1976", "pid": "20959647", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Freud and the Question of Pseudoscience\"\nlogical incoherence\"\" and that it was \"\"neither a brilliant criticism nor an important analysis of psychoanalysis.\"\" Freud and the Question of Pseudoscience Freud and the Question of Pseudoscience is a 1998 book about Sigmund Freud, the founder of psychoanalysis, by the philosopher Frank Cioffi. The book received positive reviews. Cioffi discusses the work of Sigmund Freud, the founder of psychoanalysis. He also criticizes the philosopher Adolf Grünbaum and his work \"\"The Foundations of Psychoanalysis\"\" (1984), and Richard Wollheim and James Hopkins's anthology \"\"Philosophical essays on Freud\"\" (1982). \"\"Freud and the Question of Pseudoscience\"\" was published by Open Court in 1998."} +{"qid": "test1976", "pid": "9198051", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Resistance (psychoanalysis)\"\nResistance (psychoanalysis) Resistance, in the context of the field of psychoanalysis, refers to oppositional behavior when an individual's unconscious defenses of the ego are threatened by an external source. Sigmund Freud, the founder of psychoanalytic theory, developed his concept of resistance as he worked with patients who suddenly developed uncooperative behaviors during sessions of talk therapy. He reasoned that an individual that is suffering from a psychological affliction, which Sigmund Freud believed to be derived from the presence of suppressed illicit or unwanted thoughts, may inadvertently attempt to impede any attempt to confront a subconsciously perceived threat. This would be"} +{"qid": "test1976", "pid": "16235476", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"The Foundations of Psychoanalysis\"\nThe Foundations of Psychoanalysis The Foundations of Psychoanalysis: A Philosophical Critique is a 1984 book by the philosopher Adolf Grünbaum, in which the author offers a philosophical critique of the work of Sigmund Freud, the founder of psychoanalysis. Grünbaum evaluates the status of psychoanalysis as a natural science, criticizes the method of free association and Freud's theory of dreams, and discusses the psychoanalytic theory of paranoia. He attributes a view to Freud he calls the \"\"Tally Argument\"\", arguing that Freud used it to defend analytic interpretations. He also criticizes the views of psychoanalysis put forward by other philosophers, including the"} +{"qid": "test1976", "pid": "16235536", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"The Foundations of Psychoanalysis\"\nview that Freud abandoned his seduction theory because of adverse evidence, claiming that Freud could not have had any such evidence. John Kerr identified \"\"The Foundations of Psychoanalysis\"\" as the most infuential work in the \"\"contemporary debate over the evidentiary status of Freud's claims\"\" in \"\"A Dangerous Method\"\" (2012). The Foundations of Psychoanalysis The Foundations of Psychoanalysis: A Philosophical Critique is a 1984 book by the philosopher Adolf Grünbaum, in which the author offers a philosophical critique of the work of Sigmund Freud, the founder of psychoanalysis. Grünbaum evaluates the status of psychoanalysis as a natural science, criticizes the method"} +{"qid": "test1976", "pid": "20959645", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Freud and the Question of Pseudoscience\"\nFreud and the Question of Pseudoscience Freud and the Question of Pseudoscience is a 1998 book about Sigmund Freud, the founder of psychoanalysis, by the philosopher Frank Cioffi. The book received positive reviews. Cioffi discusses the work of Sigmund Freud, the founder of psychoanalysis. He also criticizes the philosopher Adolf Grünbaum and his work \"\"The Foundations of Psychoanalysis\"\" (1984), and Richard Wollheim and James Hopkins's anthology \"\"Philosophical essays on Freud\"\" (1982). \"\"Freud and the Question of Pseudoscience\"\" was published by Open Court in 1998. \"\"Freud and the Question of Pseudoscience\"\" received positive reviews from Sebastian Gardner in \"\"The Times Literary"} +{"qid": "test1976", "pid": "14172014", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Introduction to Psychoanalysis\"\nIntroduction to Psychoanalysis Introduction to Psychoanalysis or Introductory Lectures on Psycho-Analysis () is a set of lectures given by Sigmund Freud, the founder of psychoanalysis, in 1915-17 (published 1916-17). The 28 lectures offer an elementary stock-taking of his views of the unconscious, dreams, and the theory of neuroses at the time of writing, as well as offering some new technical material to the more advanced reader. The lectures became the most popular and widely translated of his works. However, some of the positions outlined in \"\"Introduction to Psychoanalysis\"\" would subsequently be altered or revised in Freud's later work; and in"} +{"qid": "test1976", "pid": "16103087", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Child psychoanalysis\"\nChild psychoanalysis Child psychoanalysis is a sub-field of psychoanalysis which was founded by Anna Freud. Freud used the work of her father Sigmund Freud with certain modifications directed towards the needs of children. Since its inception, child psychoanalysis has grown into a well-known therapeutic technique for children and adolescents. For many years, the work of Sigmund Freud was considered revolutionary in his creation of psychotherapy, or talk therapy, and his theories regarding childhood experiences affecting a person later in life. His legacy was continued by his daughter Anna Freud in her pursuit of psychotherapy and her fathers theories as applied"} +{"qid": "test1976", "pid": "16103095", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Child psychoanalysis\"\ncomorbidity. Child psychoanalysis Child psychoanalysis is a sub-field of psychoanalysis which was founded by Anna Freud. Freud used the work of her father Sigmund Freud with certain modifications directed towards the needs of children. Since its inception, child psychoanalysis has grown into a well-known therapeutic technique for children and adolescents. For many years, the work of Sigmund Freud was considered revolutionary in his creation of psychotherapy, or talk therapy, and his theories regarding childhood experiences affecting a person later in life. His legacy was continued by his daughter Anna Freud in her pursuit of psychotherapy and her fathers theories as"} +{"qid": "test1976", "pid": "16636133", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Freud: The Mind of the Moralist\"\nFreud: The Mind of the Moralist Freud: The Mind of the Moralist (1959; second edition 1961) is a book about Sigmund Freud, the founder of psychoanalysis, by the sociologist Philip Rieff, who described his motive in writing it as being to \"\"show the mind of Freud, not the man or the movement he founded, as it derives lessons on the right conduct of life from the misery of living it.\"\" Rieff places Freud and psychoanalysis in historical context. The writer Susan Sontag contributed to the work to such an extent that she has been considered an unofficial co-author. One of"} +{"qid": "test1976", "pid": "14172016", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Introduction to Psychoanalysis\"\nthe results of thirty years of devoted and painstaking research. While they are not at all controversial, we incidentally see in a clearer light the distinctions between the master and some of his distinguished pupils. Introduction to Psychoanalysis Introduction to Psychoanalysis or Introductory Lectures on Psycho-Analysis () is a set of lectures given by Sigmund Freud, the founder of psychoanalysis, in 1915-17 (published 1916-17). The 28 lectures offer an elementary stock-taking of his views of the unconscious, dreams, and the theory of neuroses at the time of writing, as well as offering some new technical material to the more advanced"} +{"qid": "test1976", "pid": "20962842", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Sigmund Freud Institute\"\nSigmund Freud Institute The Sigmund Freud Institute (SFI) is a research institute for psychoanalysis located in Frankfurt am Main. It was established in 1960 as an institute and training center for psychoanalysis and psychosomatic medicine. Renamed in 1964, it is now called after Sigmund Freud, the founder of psychoanalysis. Since 1995 the institution has been dedicated entirely to research. The declared aims of the Sigmund Freud Institute (SFI) are both research on social psychology/sociology, psychology and medicine/psychosomatics and also support for young scientists. The research is focussed on the psychic effects of societal change, the foundations of psychoanalysis, prevention and"} +{"qid": "test1976", "pid": "21003233", "query": "who is regarded as the founder of psychoanalysis", "answer": "Sigmund Freud", "passage": "\"Freud and His Critics\"\nFreud and His Critics Freud and His Critics is a 1993 book by the historian Paul Robinson about Sigmund Freud, the founder of psychoanalysis, and three authors critical of Freud: the psychologist Frank Sulloway, the former psychoanalyst Jeffrey Moussaieff Masson, and the philosopher Adolf Grünbaum. The book received positive reviews. Commentators credited Robinson with providing useful discussions of Sulloway, Masson, and Grünbaum, and some concluded that he discredited their arguments. Robinson discusses Sigmund Freud, the founder of psychoanalysis, and three of his critics: the psychologist Frank Sulloway, the former psychoanalyst Jeffrey Moussaieff Masson, and the philosopher Adolf Grünbaum. He examines"} +{"qid": "test1978", "pid": "17834646", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Volcano House, Iceland\"\nOpal, Obsidian, Rock crystal and Iceland spar. Volcano House offers guidance and information throughout the exhibit. The interior design of the exhibition is meant to look like it's from 1973 which is the year when the volcanic eruption in Heimaey in the Westman Islands occurred. The Volcano House cinema presents two documentaries covering two of the most powerful volcanic eruptions that have occurred in Iceland over the last 40 years - the 1973 eruption in Heimaey on the Westman Islands, and the 2010 eruption of Eyjafjallajökull in South Iceland. The documentaries are exclusively made for Volcano House and can not"} +{"qid": "test1978", "pid": "189932", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "Iceland\n2010, a volcano in Eyjafjallajökull in the south of Iceland erupted for the first time since 1821, forcing 600 people to flee their homes. Additional eruptions on 14 April forced hundreds of people to abandon their homes. The resultant cloud of volcanic ash brought major disruption to air travel across Europe. Another large eruption occurred on 21 May 2011. This time it was the Grímsvötn volcano, located under the thick ice of Europe's largest glacier, Vatnajökull. Grímsvötn is one of Iceland's most active volcanoes, and this eruption was much more powerful than the 2010 Eyjafjallajökull activity, with ash and lava"} +{"qid": "test1978", "pid": "3163932", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Volcanology of Iceland\"\nfrom a single eruption in historic times. The eruption under Eyjafjallajökull (\"\"glacier of Eyjafjöll\"\") in 2010 was notable because the volcanic ash plume disrupted air travel in northern Europe for several weeks; however this volcano is minor in Icelandic terms. In the past, eruptions of Eyjafjallajökull have been followed by eruption of the larger volcano Katla, but after the 2010 eruption no signs of an imminent eruption of Katla were seen. The eruption in May 2011 at Grímsvötn under the Vatnajökull glacier sent thousands of tonnes of ash into the sky in a few days, raising concerns of a repeat"} +{"qid": "test1978", "pid": "17834643", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Volcano House, Iceland\"\nVolcano House, Iceland Volcano House is a Geology exhibition in Reykjavík, Iceland, located at Tryggvagata 11. The exhibition gives a brief overview of Iceland’s geological history and volcanic systems. Every hour the Volcano House shows two documentaries, one about the volcanic eruption of Eyjafjallajökull in 2010 and one about the volcanic eruption in the Westman Islands in 1973. Volcano House also includes a coffee shop and a gift shop. Opening hours are from 9.00 - 22.00 every day of the week. Admission for the Geology exhibition is free, but ticket price for the cinema, both documentaries, is 1990 ISK per"} +{"qid": "test1978", "pid": "14476319", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"2010 eruptions of Eyjafjallajökull\"\nstill exceeded the levels observed before the eruption, therefore scientists at the Icelandic Meteorological Office (IMO) and the Institute of Earth Sciences, University of Iceland (IES) continued to monitor the volcano. In October 2010, Ármann Höskuldsson, a scientist at the University of Iceland Institute of Earth Sciences, stated that the eruption was officially over, although the area was still geothermally active and might erupt again. Eyjafjallajökull () is one of Iceland's smaller ice caps located in the far south of the island. Situated to the north of Skógar and to the west of the larger ice cap Mýrdalsjökull, Eyjafjallajökull covers"} +{"qid": "test1978", "pid": "14476320", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"2010 eruptions of Eyjafjallajökull\"\nthe caldera of a volcano high, which has erupted relatively frequently since the last ice age. The most recent major eruptions occurred in 920, 1612, and from 1821 to 1823. Previous eruptions of Eyjafjallajökull have been followed by eruptions at its larger neighbour, Katla. On 20 April 2010 Icelandic President Ólafur Grímsson said, \"\"the time for Katla to erupt is coming close ... we [Iceland] have prepared ... it is high time for European governments and airline authorities all over the world to start planning for the eventual Katla eruption\"\". The volcanic events starting in March 2010 were considered to"} +{"qid": "test1978", "pid": "3168510", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Katla (volcano)\"\nKatla (volcano) Katla () is a large volcano in southern Iceland. It is very active; twenty eruptions have been documented between 930 and 1918, at intervals of 20–80 years. It has not erupted violently for years, although there may have been small eruptions that did not break the ice cover, including ones in 1955, 1999, and 2011. Prior eruptions have had a Volcanic Explosivity Index (VEI) of between 4 and 6 on a scale of 0 to 8. In comparison, the Eyjafjallajökull 2010 eruption had a VEI-4. The bigger VEI-6 eruptions are comparable to Mount Pinatubo's 1991 eruption. Katla is"} +{"qid": "test1978", "pid": "3168239", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Eyjafjallajökull\"\nvolcano Katla under the Mýrdalsjökull ice cap erupted and at the same time steam columns were seen on the summit of Eyjafjallajökull. The ash of Eyjafjallajökull’s 1821 eruptions is to be found all over the south of Iceland. It is dark grey in colour, small-grained and intermediate rock containing about 28–40% silicon dioxide. On 26 February 2010, unusual seismic activity along with rapid expansion of the Earth's crust was registered by the Meteorological Institute of Iceland. This gave geophysicists evidence that magma was pouring from underneath the crust into the magma chamber of the Eyjafjallajökull volcano and that pressure stemming"} +{"qid": "test1978", "pid": "5442691", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Disaster tourism\"\n20 March 2010. At this time, about 500 farmers and their families from the areas of Fljótshlíð, Eyjafjöll, and Landeyjar were evacuated overnight, but allowed to return to their farms and homes after Civil Protection Department risk assessment. On 14 April 2010, Eyjafjallajökull erupted for the second time, requiring 800 people to be evacuated. In the wake of the first eruption, tour companies offered trips to see the volcano. However, the ash cloud from the second eruption disrupted air traffic over Great Britain and most of northern and western Europe, making it difficult to travel to Iceland even though Iceland's"} +{"qid": "test1978", "pid": "1082116", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "Askja\nit one of the most far-travelled Icelandic tephras. The last eruption of Askja was in 1961. The outer caldera of Askja, representing a prehistoric eruption, is about 50 km², and there is evidence of other later caldera-forming events within it. The main crater floor lies at about 1,100 m. In June 2010, Volcano expert Hazel Rymer said seismic activity was increasing at Askja and that an eruption could be around the corner The increased earthquake activity is located to the northeast of the central volcano, in the direction of Herðubreið. It was ruled out that any activity from Eyjafjallajökull was"} +{"qid": "test1978", "pid": "19896902", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Ari Trausti Guðmundsson\"\nRussia and Britain and was one of the experts lecturing in Europe on the Eyjafjallajökull eruption in 2010. Ari Trausti frequently lectures on the volcanic activity in Iceland or is interviewed by the media on various volcanoes and volcanic eruptions as well as Icelandic glaciers. Currently, he work on the high-tech LAVA exhibition in the town of Hvolsvöllur in South-Iceland. Ari Trausti comes from a family of artists: his brother Erró is a postmodern painter and pop artist in Paris; their father, Guðmundur frá Miðdal, was well-known painter, sculptor, photographer and writer and his mother, Lydia, was a leading ceramist."} +{"qid": "test1978", "pid": "15156189", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Ragnar Th. Sigurdsson\"\nRagnar Th. Sigurdsson Ragnar Th. Sigurdsson, , (b. 1958) is a photographer specializing in landscapes portraying the natural beauty of Iceland, Greenland and the Arctic. In March 2010, he gained international recognition with his shots of the erupting volcano Eyjafjallajökull. After completing his education in Iceland and Sweden, Sigurdsson embarked on a career as a news photographer in 1975. Since 1985, he has operated from his own studio with work for travel publications, business reports and advertising agencies in addition to illustrations for the Icelandic authorities and regions. His work on nature and travel has covered geological formations, volcanoes, waterfalls"} +{"qid": "test1978", "pid": "14481546", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Effects of the April 2010 Eyjafjallajökull eruption\"\nEffects of the April 2010 Eyjafjallajökull eruption The eruption of the Eyjafjallajökull volcano in Iceland on 20th March 2010 affected the economic, political and cultural activities in Europe and across the world. There was an extensive air travel disruption caused by the closure of airspace over many countries affecting the travel arrangements of hundreds of thousands of people in Europe and elsewhere. Sporting, entertainment and many other events were cancelled, delayed or disrupted when individuals or teams were unable to travel to their destination. The state funeral of Lech Kaczyński and Maria Kaczyńska on 18 April 2010 was affected as"} +{"qid": "test1978", "pid": "14481567", "query": "name of volcano that erupted in iceland in 2010", "answer": "Eyjafjallajökull", "passage": "\"Effects of the April 2010 Eyjafjallajökull eruption\"\nlay the Third Runway at Heathrow to rest and concentrate government minds on more environmentally friendly and sustainable forms of transport?\"\" Effects of the April 2010 Eyjafjallajökull eruption The eruption of the Eyjafjallajökull volcano in Iceland on 20th March 2010 affected the economic, political and cultural activities in Europe and across the world. There was an extensive air travel disruption caused by the closure of airspace over many countries affecting the travel arrangements of hundreds of thousands of people in Europe and elsewhere. Sporting, entertainment and many other events were cancelled, delayed or disrupted when individuals or teams were unable"} +{"qid": "test1979", "pid": "12322030", "query": "where is the second largest mall in america", "answer": "Florida", "passage": "\"Triple Five Group\"\na project in Miami-Dade County, Florida which would become the largest mall in the United States if built. As of May 2018, the proposal for American Dream Miami has been approved by local authorities, but construction on the mall has not yet begun, pending regulatory approval. Triple Five Group Triple Five Group is a conglomerate based in Edmonton, Alberta, Canada, which specializes in shopping malls, entertainment complexes, and hotels. The company owns and operates two of North America's largest malls, the West Edmonton Mall in Alberta and the Mall of America in Minnesota, both of which contain a wide variety"} +{"qid": "test1979", "pid": "20714715", "query": "where is the second largest mall in america", "answer": "Florida", "passage": "\"American Dream Miami\"\nAmerican Dream Miami American Dream Miami is a proposed megamall and entertainment complex intended for Miami-Dade County, Florida, United States, which will become the largest shopping mall in the United States if built. The project is being developed by Triple Five Group, owners of two of North America's largest malls, West Edmonton Mall and Mall of America. The project shares its branding with American Dream Meadowlands, currently under construction in New Jersey. The proposed location of American Dream Miami is part of the Everglades region of Florida, near Everglades National Park but within Miami-Dade County's Urban Development Boundary. The site"} +{"qid": "test1979", "pid": "6586677", "query": "where is the second largest mall in america", "answer": "Florida", "passage": "\"Sawgrass Mills\"\nact as an extension to the Colonnade Outlets. Sawgrass Mills Sawgrass Mills is an outlet shopping mall operated by the Simon Property Group, in Sunrise, Florida, a city in Broward County. With of retail selling space, it is the eleventh largest mall in the United States, the largest single story outlet mall in the U.S., the largest shopping mall in Broward County, the second largest mall in Florida and the Miami metropolitan area after the Aventura Mall, and the third largest shopping mall in the southeastern United States. It opened in 1990 as the third mall developed by the now-defunct"} +{"qid": "test1980", "pid": "20802945", "query": "legends of tomorrow season 3 finale air date", "answer": "April 9, 2018", "passage": "\"Legends of Tomorrow (season 3)\"\n\"\"Legends of Tomorrow\"\" on November 28. The third season began airing on October 10, 2017 on The CW in the United States, and concluded on April 9, 2018. The season was made available for streaming on Netflix in late April 2018, soon after the season finale aired. It was released on Blu-Ray on September 25, 2018. The review aggregator website Rotten Tomatoes reported a 100% approval rating with an average rating of 8.27/10 based on 13 reviews. The website's consensus reads, \"\"\"\"DC's Legends of Tomorrow\"\" lightens up the tone in its third season while spotlighting adventurous plots and a distinct"} +{"qid": "test1980", "pid": "20802937", "query": "legends of tomorrow season 3 finale air date", "answer": "April 9, 2018", "passage": "\"Legends of Tomorrow (season 3)\"\nLegends of Tomorrow (season 3) The third season of the American television series \"\"Legends of Tomorrow\"\", which is based on characters from DC Comics, premiered on The CW on October 10, 2017 and ran for 18 episodes until April 9, 2018. The season follows the Legends, a dysfunctional team of time-traveling superheroes and anti-heroes, and their mission to correct anachronisms in time that they unintentionally caused. It is set in the Arrowverse, sharing continuity with the other television series of the universe, and is a spin-off of \"\"Arrow\"\" and \"\"The Flash\"\". The season is produced by Berlanti Productions, Warner Bros."} +{"qid": "test1981", "pid": "12201605", "query": "where is the meridian that is opposite the prime meridian located", "answer": "the 180th meridian", "passage": "\"90th meridian west\"\n90th meridian west The meridian 90° west of Greenwich is a line of longitude that extends from the North Pole across the Arctic Ocean, North America, the Gulf of Mexico, Central America, the Pacific Ocean, the Southern Ocean, and Antarctica to the South Pole. In Antarctica, the meridian defines the western limit of Chile's territorial claim. The land further west is not claimed by any nation. The 90th meridian west forms a great circle with the 90th meridian east, located midway between the Prime meridian and the 180th meridian; thus the center of the Western Hemisphere is on this meridian."} +{"qid": "test1981", "pid": "604685", "query": "where is the meridian that is opposite the prime meridian located", "answer": "the 180th meridian", "passage": "\"Prime meridian\"\nPrime meridian A prime meridian is a meridian (a line of longitude) in a geographic coordinate system at which longitude is defined to be 0°. Together, a prime meridian and its antimeridian (the 180th meridian in a 360°-system) form a great circle. This great circle divides the sphere, e.g., Earth, into two hemispheres. If one uses directions of East and West from a defined prime meridian, then they can be called the Eastern Hemisphere and the Western Hemisphere. A prime meridian is ultimately arbitrary, unlike an equator, which is determined by the axis of rotation—and various conventions have been used"} +{"qid": "test1981", "pid": "604701", "query": "where is the meridian that is opposite the prime meridian located", "answer": "the 180th meridian", "passage": "\"Prime meridian\"\nplanetographic systems have been defined: Prime meridian A prime meridian is a meridian (a line of longitude) in a geographic coordinate system at which longitude is defined to be 0°. Together, a prime meridian and its antimeridian (the 180th meridian in a 360°-system) form a great circle. This great circle divides the sphere, e.g., Earth, into two hemispheres. If one uses directions of East and West from a defined prime meridian, then they can be called the Eastern Hemisphere and the Western Hemisphere. A prime meridian is ultimately arbitrary, unlike an equator, which is determined by the axis of rotation—and"} +{"qid": "test1982", "pid": "20217950", "query": "where is the orinoco river located on a map", "answer": "in South America", "passage": "\"Orinoco Basin\"\nOrinoco Basin The Orinoco Basin is the part of South America drained by the Orinoco river and its tributaries. The Orinoco watershed covers an area of about 990000 km, making it the third largest in South America, covering most of Venezuela and eastern part of Colombia. The Orinoco is one of the most important rivers in the world due to its length and flow (2140 km and more than 30000 m/s), the extent of its basin (1 million km) and especially its historical importance and economic and the meaning it has had for Venezuela, where most of its basin is"} +{"qid": "test1982", "pid": "887547", "query": "where is the orinoco river located on a map", "answer": "in South America", "passage": "Orinoco\nOrinoco The Orinoco River () is one of the longest rivers in South America at . Its drainage basin, sometimes known as the Orinoquia, covers , with 76.3 percent of it in Venezuela and the remainder in Colombia. It is the fourth largest river in the world by discharge volume of water. The Orinoco River and its tributaries are the major transportation system for eastern and interior Venezuela and the llanos of Colombia. The environment in the Orinoco's basin is extremely diverse; it hosts a wide variety of flora and fauna. The mouth of the Orinoco River at the Atlantic"} +{"qid": "test1984", "pid": "7832884", "query": "what does zonia receive from reuben in the play", "answer": "kiss", "passage": "\"Joe Turner's Come and Gone\"\nkeep his promise to Eugene and release the pigeons. They marvel at the idea that people could come back to life in the form of spirits. Reuben then asks Zonia if he can kiss her on the lips and she agrees. They decide that later in life they will find each other to get married. \"\"Scene Five\"\"- In the final scene Loomis and Zonia leave the boardinghouse as it is Saturday. Bertha tells Mattie that all she needs in life is love and laughing- which they all start to do. Then Martha Pentecost [Loomis] enters with Selig looking for Loomis"} +{"qid": "test1984", "pid": "13098151", "query": "what does zonia receive from reuben in the play", "answer": "kiss", "passage": "\"Patience (play)\"\nparty Paul walks in the room when Reuben and Sarah are kissing; he does nothing. Reuben knows that when Paul did nothing it was completely out of character and he is never able to get the image out of his head. Returning to the present, Reuben is now at Sarah’s house. They talk about Paul but Reuben does not mention his encounter with him earlier that day. They talk about how Paul had begged Sarah to stay, which she did and then nine years later he told her that he was not happy anymore and was leaving for Vancouver to"} +{"qid": "test1985", "pid": "7188333", "query": "dynamin is associated with which type of vesicle", "answer": "newly formed vesicles", "passage": "Dynamin\nDynamin Dynamin is a GTPase responsible for endocytosis in the eukaryotic cell. Dynamin is part of the \"\"dynamin superfamily\"\", which includes classical dynamins, dynamin-like proteins, Mx proteins, OPA, mitofusins, and GBPs. Members of the dynamin family are principally involved in the scission of newly formed vesicles from the membrane of one cellular compartment and their targeting to, and fusion with, another compartment, both at the cell surface (particularly caveolae internalization) as well as at the Golgi apparatus. Dynamin family members also play a role in many processes including division of organelles, cytokinesis and microbial pathogen resistance. Dynamin itself is a"} +{"qid": "test1987", "pid": "6953679", "query": "kings and queens of england in the 1900s", "answer": "Edward VII", "passage": "\"Frederick Russell Burnham\"\ndays before leaving for London, he was promoted to the rank of major, having received letters of commendation or congratulations from Baden-Powell, Rhodes, and Field Marshal Roberts. On his arrival in England, Burnham was commanded to dine with Queen Victoria and to spend the night at Osborne House. A few months later, after the Queen's death, King Edward VII personally presented Burnham with the Queen's South Africa Medal with four bars for the battles at Driefontein (March 10, 1900), Johannesburg (May 31, 1900), Paardeberg (February 17–26, 1900), and Cape Colony (October 11, 1899 – May 31, 1902), in addition to"} +{"qid": "test1987", "pid": "572364", "query": "kings and queens of england in the 1900s", "answer": "George V", "passage": "\"Queen Elizabeth The Queen Mother\"\n3rd quarters, Ermine, three bows stringed paleways proper (Bowes). The shield is surmounted by the imperial crown, and supported by the crowned lion of England and a lion rampant per fess Or and Gules. Queen Elizabeth The Queen Mother Elizabeth Angela Marguerite Bowes-Lyon (4 August 1900 – 30 March 2002) was the wife of King George VI and the mother of Queen Elizabeth II and Princess Margaret, Countess of Snowdon. She was Queen consort of the United Kingdom and the Dominions from her husband's accession in 1936 until his death in 1952, after which she was known as Queen Elizabeth"} +{"qid": "test1987", "pid": "12107173", "query": "kings and queens of england in the 1900s", "answer": "George V", "passage": "\"Grandchildren of Queen Victoria and Prince Albert of Saxe-Coburg and Gotha\"\nand her sister Princess Margaret, Countess of Snowdon (1930–2002). As the only children of King George VI and Elizabeth Bowes-Lyon (the Queen Mother, 1900–2002), Elizabeth and Margaret were thus great-granddaughters of Edward VII, great-great-granddaughters of Queen Victoria. Queen Victoria → King Edward VII → King George V → King George VI → Queen Elizabeth II Edward's and Alexandra's daughter Princess Maud of Wales became Queen of Norway when her husband, Prince Carl of Denmark, became King Haakon VII (1905–1957) upon the dissolution of Norway's union with Sweden in 1905. Their son, and Edward's grandson, became King Olav V (1957–1991); and"} +{"qid": "test1987", "pid": "1728858", "query": "kings and queens of england in the 1900s", "answer": "George V", "passage": "\"Prince Henry, Duke of Gloucester\"\nof King George V and Queen Mary. His widow became the longest-lived member of the British royal family in history. Prince Henry was born on 31 March 1900, at York Cottage, on the Sandringham Estate during the reign of his great-grandmother Queen Victoria. His father was the Duke of York (later King George V), the eldest surviving son of the Prince and Princess of Wales (later King Edward VII and Queen Alexandra). His mother was the Duchess of York (later Queen Mary), the only daughter of the Duke and Duchess of Teck. At the time of his birth, he was"} +{"qid": "test1988", "pid": "4274429", "query": "when did they stop making the nissan xterra", "answer": "2015", "passage": "\"Nissan Xterra\"\nE. Trim levels for the Oting were called the China III MT L, China III MT E, China III AT L, China IV MT L, China IV MT E, Diesel 2WD and the Diesel 4WD. Following the Xterra's discontinuation from the U.S. market in 2015, Nissan began testing a Navara-based SUV. The Nissan Terra made its debut in Asia in early 2018. Nissan Xterra The Nissan Xterra is a front-engine, 2-wheel or 4-wheel drive, five-door, five passenger, truck-based compact SUV manufactured and marketed by Nissan Motors from 1999-2015 across two generations; the first (1999-2004) sharing a platform as well as"} +{"qid": "test1988", "pid": "4274419", "query": "when did they stop making the nissan xterra", "answer": "2015", "passage": "\"Nissan Xterra\"\nNissan Xterra The Nissan Xterra is a front-engine, 2-wheel or 4-wheel drive, five-door, five passenger, truck-based compact SUV manufactured and marketed by Nissan Motors from 1999-2015 across two generations; the first (1999-2004) sharing a platform as well as front bumper, hood, A-pillar, windshield and front doors with the Nissan Frontier pickup — and the second (2005-2015) also sharing its platform with the Frontier. While the two Xterra generations differed significantly, both prioritized ruggedness and affordability over luxury and used body-on-frame construction along with underbody skid plates. Both generations also used a two-box design with c-pillar-mounted rear door handles, asymmetrical rear"} +{"qid": "test1988", "pid": "4274426", "query": "when did they stop making the nissan xterra", "answer": "2015", "passage": "\"Nissan Xterra\"\nmoved from Smyrna, Tennessee, to Nissan's facility in Canton, Mississippi. Early US models include X, S and PRO-4X, with a choice of 6-speed manual or 5-speed automatic transmissions, a choice of part-time 4-wheel drive or 2-wheel drive. Changes include: The Xterra was discontinued in the U.S. after the 2015 model year. Poor fuel economy, declining sales, and mandated upgrades to safety and emissions were cited as reasons. All Nissan-produced Xterras manufactured outside the U.S. were built in São José dos Pinhais, Brazil until 2007. (Nissan ceased Brazilian production entirely in 2007.) It is built under license by Pars Khodro in"} +{"qid": "test1988", "pid": "9008973", "query": "when did they stop making the nissan xterra", "answer": "2015", "passage": "\"Nissan Rogue\"\npassenger volume than its V6-powered sibling, and a nearly equal cargo area of vs. . The first generation Rogue remained in production for the 2013–2015 model years as the Rogue Select. The Rogue is manufactured at the Nissan Smyrna assembly plant in Tennessee, United States. The Nissan Rogue made its debut at the North American International Auto Show in Detroit on January 7, 2007. It replaces the Nissan X-Trail in Canada as Nissan's entry-level SUV and the body-on-frame Nissan Xterra in Mexico due to the Smyrna plant freeing capacity for the 2009 Suzuki Equator, but the Xterra continued on sale"} +{"qid": "test1988", "pid": "3468788", "query": "when did they stop making the nissan xterra", "answer": "2015", "passage": "\"XTERRA Triathlon\"\nXTERRA Triathlon XTERRA is a series of cross triathlon races, i.e. three-sport races which include swimming, mountain biking, and trail running. The XTERRA Global Tour is owned and produced by TEAM Unlimited. The XTERRA race series is the best-known series of cross triathlons, and is considered by most to be the \"\"de facto\"\" world championship of the sport. It began in 1996 on the Hawaiian island of Maui as the \"\"Aquaterra\"\", and was later renamed the \"\"XTERRA\"\". Japanese automaker Nissan licensed the name from the triathlon series for their own 1999-2015 sport utility vehicle — and was the race series'"} +{"qid": "test1988", "pid": "4274428", "query": "when did they stop making the nissan xterra", "answer": "2015", "passage": "\"Nissan Xterra\"\nXterra called the Oting from 2007 to 2015. It is based on the first generation of the Xterra. It was available with the 2.4 litre \"\"4G64\"\" and \"\"4G69\"\" or a 2.5 litre turbo diesel engine paired to a 5 speed manual gearbox. In comparison to pricing, the Chinese market Nissan Paladin was priced at 159,800 to 244,800 RMB (25,264 to 38,702 USD) while the Oting was priced at 119,800 to 154,800 RMB (18,940 to 24,473 USD). Trim levels for the Paladin were called the 2WD S, 2WD C, 2WD L, 2WD E, 4WD S, 4WD C, 4WD L and 4WD"} +{"qid": "test1989", "pid": "5021377", "query": "who played the nurse on andy griffith show", "answer": "Julie Adams", "passage": "\"Andy Taylor (The Andy Griffith Show)\"\nbe real or believable.) source In Season Two, Andy dated a few ladies, including Karen Moore, a cousin of Thelma Lou (only in one episode), and County Nurse Mary Simpson (played by two different actresses Julie Adams and Sue Ane Langdon). In early Season Three, Andy dated Peggy McMillan (Joanna Moore), another county nurse, who chalked up four appearances on the show. In \"\"Class Reunion\"\", Andy was reunited with an old girlfriend, Sharon DeSpain. On a number of occasions, Barney meddled into Andy's romantic life and tried to arrange dates for him, which invariably turned out to be ill-suited or"} +{"qid": "test1989", "pid": "6583741", "query": "who played the nurse on andy griffith show", "answer": "Julie Adams", "passage": "\"Sue Ane Langdon\"\nmusical versions. Langdon was more frequently seen on the small screen in guest spot roles such as Kitty Marsh during the NBC portion (1959–1961) of \"\"Bachelor Father\"\". The next year, she appeared twice on Rod Cameron's syndicated crime drama \"\"COronado 9\"\". In 1961 she made her first of three appearances on \"\"Perry Mason\"\" as Rowena Leach in \"\"The Case of the Crying Comedian\"\". In 1962, she appeared as nurse Mary Simpson in an episode of CBS's \"\"The Andy Griffith Show\"\". (Another actress, Julie Adams, also played Nurse Mary on the Griffith Show.) In another popular situation comedy, Langdon played a"} +{"qid": "test1989", "pid": "5926682", "query": "who played the nurse on andy griffith show", "answer": "Julie Adams", "passage": "\"Julie Adams\"\nMe\"\", sometimes walking from table to table in a nightclub set, he did them perfectly in one take.\"\" On television in 1962, Adams portrayed Mary Simpson, a county nurse and romantic interest of Sheriff Andy Taylor on \"\"The Andy Griffith Show\"\". She also made four guest appearances on \"\"Perry Mason\"\"; the most memorable was the 1963 episode, \"\"The Case of the Deadly Verdict,\"\" when she played Janice Barton, Perry's only convicted client during the show's nine-year run on CBS. In 1964, she played Janice Blake in “The Case of the Missing Button”. In 1965, she played the role of defendant"} +{"qid": "test199", "pid": "20105273", "query": "when were 2 dollar bills stopped being made", "answer": "current denomination of U.S. currency", "passage": "\"United States two-dollar bill\"\nUnited States two-dollar bill The United States two-dollar bill ($2) is a current denomination of U.S. currency. The portrait of the third President of the United States (1801–09), Thomas Jefferson, is featured on the obverse of the note. The reverse features an engraving of the painting \"\"Declaration of Independence\"\" by John Trumbull. Throughout the $2 bill's pre-1929 life as a large-sized note, it was issued as a United States Note, National Bank Note, silver certificate, Treasury or \"\"Coin\"\" Note and Federal Reserve Bank Note. When U.S. currency was changed to its current size, the $2 bill was issued only as"} +{"qid": "test1990", "pid": "961602", "query": "where was the tv show in the heat of the night filmed", "answer": "Decatur in Dekalb County", "passage": "\"In the Heat of the Night (TV series)\"\nseason, the show was moved to Georgia, to an area east of Atlanta and it remained there for the rest of its run. The principal area of Sparta was in fact downtown Covington, Georgia. Rural scenes were filmed in a wide surrounding area, in the Georgia counties of Newton (where Covington is located), Rockdale, Walton, Morgan, and Jasper. Decatur in Dekalb County was used as a stand-in for an episode as the Mississippi Capital city of Jackson, and Atlanta itself was used in one episode, in which Bubba worked on a case there. In fact, during the series' run, many"} +{"qid": "test1990", "pid": "5956394", "query": "where was the tv show in the heat of the night filmed", "answer": "Atlanta", "passage": "\"Gary Anthony Williams\"\nthe improv comedy TV series \"\"Whose Line is it Anyway\"\", and is a regular member of the live improv comedy show \"\"The Black Version\"\". Born in Fayetteville, Georgia, Williams was involved in theater, comedy and television in Atlanta, where his credits include acting with the Georgia Shakespeare Festival, performing and writing for Agatha's: A Taste of Mystery and being a longtime member of Atlanta's longest running improv troupe, Laughing Matters. Williams had recurring roles in the television series \"\"I'll Fly Away\"\" and \"\"In the Heat of the Night\"\", both filmed in the Atlanta area. He moved to Los Angeles in"} +{"qid": "test1991", "pid": "5205576", "query": "who sang the end of the world as we know it", "answer": "R.E.M.", "passage": "\"It's the End of the World as We Know It (And I Feel Fine)\"\nIt depicts a young skateboarder, Noah Ray, in a cluttered room of an abandoned, half-collapsed farmhouse. As he rummages through the junk, which includes several band pictures and flyers, he shows off various toys and items to the camera and plays with a dog that wanders into the house. As the video ends, he goes shirtless and starts performing skateboard tricks while still inside the room. R.E.M. It's the End of the World as We Know It (And I Feel Fine) \"\"It's the End of the World as We Know It (And I Feel Fine)\"\" is a song by American"} +{"qid": "test1991", "pid": "11969634", "query": "who sang the end of the world as we know it", "answer": "R.E.M.", "passage": "\"As We Know It\"\nEnd of the World as We Know It (And I Feel Fine)\"\" by R.E.M.. Dave Anderson of \"\"TV Guide\"\" liked the use of Anna Nalick's song in three key scenes. He called the scene where O'Malley convinces Bailey to go through with the birth \"\"Knight's turn for Emmy consideration.\"\" \"\"Wetpaint\"\" named it in December 2011 one of the 5 best episodes of \"\"Grey's Anatomy\"\" along with the first part \"\"It's the End of the World\"\". \"\"Variety\"\" listed the episode in its top 10 most bizarre medical maladies encountered in the series. As We Know It \"\"As We Know It\"\" is"} +{"qid": "test1991", "pid": "5205571", "query": "who sang the end of the world as we know it", "answer": "R.E.M.", "passage": "\"It's the End of the World as We Know It (And I Feel Fine)\"\nIt's the End of the World as We Know It (And I Feel Fine) \"\"It's the End of the World as We Know It (And I Feel Fine)\"\" is a song by American rock band R.E.M., which first appeared on their 1987 album \"\"Document\"\". It was released as a single in November 1987, reaching No. 69 in the US \"\"Billboard\"\" Hot 100 and later reaching No. 39 on the UK Singles Chart on its re-release in December 1991. The song originated from a previously unreleased song called \"\"PSA\"\" (\"\"Public Service Announcement\"\"); the two are very similar in melody and tempo."} +{"qid": "test1993", "pid": "8320727", "query": "who headed the 7th central pay commission of india", "answer": "Justice A.K Mathur", "passage": "\"Pay Commission\"\nvarious pay scales and mainly focused on reducing number of pay scales and bring the idea of pay bands. It recommended for removal of Group-D cadre. The Government of India has initiated the process to constitute the 7th Central Pay Commission along with finalisation of its Terms of Reference, the composition and the possible timeframe for submission of its Report. On 25 September 2013 then Finance Minister P Chidambaram announced that Prime Minister Manmohan Singh has approved the constitution of the 7th Pay Commission. Its recommendations are likely to be implemented with effect from 1 January 2016. Justice A.K Mathur"} +{"qid": "test1994", "pid": "721915", "query": "when did john steinbeck write of mice and me", "answer": "1937", "passage": "\"Of Mice and Men\"\nThampi is also based on the novel. \"\"Of Mice and Men\"\" was adapted by Donna Franceschild as a radio play directed by Kirsty Williams starring David Tennant broadcast on BBC Radio 4 on 7 March 2010. Of Mice and Men Of Mice and Men is a novella written by author John Steinbeck. Published in 1937, it tells the story of George Milton and Lennie Small, two displaced migrant ranch workers, who move from place to place in California in search of new job opportunities during the Great Depression in the United States. Steinbeck based the novella on his own experiences"} +{"qid": "test1994", "pid": "721893", "query": "when did john steinbeck write of mice and me", "answer": "1937", "passage": "\"Of Mice and Men\"\nOf Mice and Men Of Mice and Men is a novella written by author John Steinbeck. Published in 1937, it tells the story of George Milton and Lennie Small, two displaced migrant ranch workers, who move from place to place in California in search of new job opportunities during the Great Depression in the United States. Steinbeck based the novella on his own experiences working alongside migrant farm workers as a teenager in the 1910s (before the arrival of the Okies he would vividly describe in \"\"The Grapes of Wrath\"\"). The title is taken from Robert Burns' poem \"\"To a"} +{"qid": "test1994", "pid": "9404435", "query": "when did john steinbeck write of mice and me", "answer": "1937", "passage": "\"Of Mice and Men in popular culture\"\nand Lennie-type characters to serve as comic relief. Other examples in animation include: http://comicbook.com/blog/2014/03/16/the-walking-deads-the-grove-is-steinbecks-of-mice-and-men-with-the-undead/ Of Mice and Men in popular culture Of Mice and Men is a novella by John Steinbeck, which tells the story of George and Lennie, two displaced migrant workers in California during the Great Depression (1929–1939). The story is set on a ranch a few miles from Soledad in the Salinas Valley. Since its initial publication in 1937, it has been frequently referenced in popular culture. Homages to the characters Lennie and George have been especially popular in American cartoons and animated films. The \"\"New York"} +{"qid": "test1994", "pid": "13018600", "query": "when did john steinbeck write of mice and me", "answer": "1937", "passage": "\"Of Mice and Men (play)\"\nfollowing tables show the casts of the principal original productions: The production was chosen as Best Play in 1938 by the New York Drama Critics' Circle. The 2014 production earned two Tony Award nominations at the 68th Tony Awards (O'Dowd—Leading Actor and Japhy Weideman—Lighting Design). Brooks Atkinson of \"\"The New York Times\"\" wrote that \"\"Steinbeck has caught on paper two odd and lovable farm vagrants whose fate is implicit in their characters.\"\" Of Mice and Men (play) Of Mice and Men is a play adapted from John Steinbeck's 1937 novel of the same name. The play, which predates the Tony"} +{"qid": "test1994", "pid": "18679866", "query": "when did john steinbeck write of mice and me", "answer": "1937", "passage": "\"The Harvest Gypsies\"\nPublishers in New York feared that the market could not support two novels on the same topic in the same year. Collins compiled these extensive interviews that contained residents' stories, songs, and folklore into a compendium which he shared with Steinbeck, who used it and his own notes to write \"\"The Harvest Gypsies.\"\" \"\"The Harvest Gypsies\"\" preceded several of Steinbeck’s celebrated works with migrant workers at the center, among them \"\"Of Mice and Men\"\" (1937) and \"\"The Grapes of Wrath\"\" (1939). According to Steinbeck scholar Robert DeMott, \"\"The Harvest Gypsies\"\" provided Steinbeck a repository of precise information and folk values:"} +{"qid": "test1994", "pid": "211154", "query": "when did john steinbeck write of mice and me", "answer": "1937", "passage": "\"John Steinbeck\"\n\"\"East of Eden\"\" (1952), and the novellas \"\"Of Mice and Men\"\" (1937) and \"\"The Red Pony\"\" (1937). The Pulitzer Prize-winning \"\"The Grapes of Wrath\"\" (1939) is considered Steinbeck's masterpiece and part of the American literary canon. In the first 75 years after it was published, it sold 14 million copies. Most of Steinbeck's work is set in central California, particularly in the Salinas Valley and the California Coast Ranges region. His works frequently explored the themes of fate and injustice, especially as applied to downtrodden or everyman protagonists. Steinbeck was born on February 27, 1902, in Salinas, California. He was"} +{"qid": "test1995", "pid": "15154727", "query": "what types of cells go through binary fission", "answer": "domains of Archaea and Bacteria", "passage": "\"Fission (biology)\"\nFission (biology) Fission, in biology, is the division of a single entity into two or more parts and the regeneration of those parts into separate entities resembling the original. The object experiencing fission is usually a cell, but the term may also refer to how organisms, bodies, populations, or species split into discrete parts. The fission may be \"\"binary fission\"\", in which a single entity produces two parts, or \"\"multiple fission\"\", in which a single entity produces multiple parts. Organisms in the domains of Archaea and Bacteria reproduce with binary fission. This form of asexual reproduction and cell division is"} +{"qid": "test1995", "pid": "11518994", "query": "what types of cells go through binary fission", "answer": "prokaryotic", "passage": "\"Relative biological effectiveness\"\nprokaryotic cells such as bacteria, simple eukaryotic cells such as single celled plants, and advanced eukaryotic cells derived from organisms such as rats. The doses are adjusted to the LD-50 point; that is, to the amount that will cause 50% of the cells to become unable to undergo mitotic division (or, for bacteria, binary fission), thus being effectively sterilized — even if they can still carry out other cellular functions. The types \"\"R\"\" of ionizing radiation most considered in RBE evaluation are X-rays and gamma radiation (both consisting of photons), alpha radiations (helium-4 nuclei), beta radiation (electrons and positrons), neutron"} +{"qid": "test1996", "pid": "14359547", "query": "real name of daya in taarak mehta ka ooltah chashmah", "answer": "Disha Vakani", "passage": "\"Disha Vakani\"\nDisha Vakani Disha Vakani (born 17 August 1978) is an Indian film and television actress. She made her career as a stage actress in Gujarati plays like \"\"Kamal Patel v/s Dhamal Patel\"\" and \"\"Lali Lila\"\". She has appeared in supporting roles in films like \"\"Devdas\"\" (2002) and \"\"Jodha Akbar\"\" (2008). She is playing the lead role of Daya Jethalal Gada in SAB TV's sitcom \"\"Taarak Mehta Ka Ooltah Chashmah\"\" since 2008. Disha Vakani was born in a Gujarati family in Ahmedabad, Gujarat. She graduated in the Dramatic arts from Gujarat College in Ahmedabad. She married a Mumbai-based chartered accountant named"} +{"qid": "test1996", "pid": "14359548", "query": "real name of daya in taarak mehta ka ooltah chashmah", "answer": "Disha Vakani", "passage": "\"Disha Vakani\"\nMayur Padia on 24 November 2015. On November 30 2017, she gave birth to a baby girl named Stuti Padia. Her brother Mayur Vakani also plays her on-screen brother Sundar Lal in the television serial \"\"Taarak Mehta Ka Ooltah Chashmah\"\". Disha Vakani Disha Vakani (born 17 August 1978) is an Indian film and television actress. She made her career as a stage actress in Gujarati plays like \"\"Kamal Patel v/s Dhamal Patel\"\" and \"\"Lali Lila\"\". She has appeared in supporting roles in films like \"\"Devdas\"\" (2002) and \"\"Jodha Akbar\"\" (2008). She is playing the lead role of Daya Jethalal Gada"} +{"qid": "test1997", "pid": "16156015", "query": "when did vat change from 17.5 to 20", "answer": "4 January 2011", "passage": "\"Value-added tax in the United Kingdom\"\nthe 2010 general election there were reports that the Conservatives would raise VAT if they gained power. The party denied the reports. Following the election in May 2010, the Conservatives formed a coalition government with the Liberal Democrats. In the 2010 budget, described by PM David Cameron as an \"\"emergency budget\"\", Chancellor George Osborne announced that the standard rate of VAT would increase from 17.5% to 20% with effect from 4 January 2011. Before the 2015 general election Labour claimed that the Conservatives would raise VAT to 22.5% if they were re-elected and Osborne reputedly refused to deny the claim."} +{"qid": "test1997", "pid": "3568636", "query": "when did vat change from 17.5 to 20", "answer": "4 January 2011", "passage": "\"Taxation in the United Kingdom\"\n1 July 2006) and smoking cessation products (from 1 July 2007). On 1 December 2008, VAT was reduced to 15 percent, as a reaction to the late-2000s recession, by Chancellor Alistair Darling. On 1 January 2010 VAT returned to 17.5 percent. On 4 January 2011 VAT was raised to 20 percent by Chancellor George Osborne, where it remains. Excise duties are charged on, amongst other things, motor fuel, alcohol, tobacco, betting and vehicles. Stamp duty is charged on the transfer of shares and certain securities at a rate of 0.5 percent. Modernised versions of stamp duty, stamp duty land tax"} +{"qid": "test1997", "pid": "14572514", "query": "when did vat change from 17.5 to 20", "answer": "4 January 2011", "passage": "\"June 2010 United Kingdom budget\"\npeople out of the tax system and reducing income tax on the low-paid by £200 p.a. The main rate of VAT will increase from 17.5% to 20% on 4 January 2011. This had been widely predicted before the Budget. No taxes will be imposed on items that are currently zero-rated (e.g. food, children's clothes). A new bank levy was announced, to raise £2 billion p.a. Corporation Tax will fall progressively in 1% increments for each of the next four years, from 28% to 24%. The small companies' tax rate will be cut from 21% to 20%. Capital Gains Tax increases"} +{"qid": "test1999", "pid": "4547716", "query": "where does florida natural orange juice come from", "answer": "Lake Wales, Florida", "passage": "\"Florida's Natural Growers\"\nFlorida's Natural Growers Florida's Natural Growers (stylized \"\"Floridas Natural\"\") is an agricultural cooperative based in Lake Wales, Florida. It is currently owned by over 1,100 grower members. It was the only national orange juice maker that uses only US-grown fruit (grown by its cooperative members in Florida) in its products. Florida's Natural Growers was founded in 1933 as Florida Citrus Canners Cooperative. Its initial operations included canning juice and grapefruit sections for its members, and in 1938 began extracting juice with automated machines. During World War II, the company produced concentrated orange juice for the military; after the war, 80%"} +{"qid": "test1999", "pid": "4547718", "query": "where does florida natural orange juice come from", "answer": "Lake Wales, Florida", "passage": "\"Florida's Natural Growers\"\nDundee Citrus Growers Association, Winter Haven Citrus Growers Association, and Umatilla Citrus Growers Association. In 2001, the company opened \"\"Grove House\"\", a visitor's center across the street from its Lake Wales, Florida processing plant. Grove House is open daily except Sunday, and is closed from Memorial Day through the last day of September. Florida's Natural produces not-from-concentrate citrus juices (mainly orange juice) under the Florida's Natural and Donald Duck brand names. In the 1970s and 1980s, Florida's Natural worked with The Walt Disney Company to develop the Orange Bird character for marketing and promotions. The company's primary marketing strategy is"} +{"qid": "test20", "pid": "309430", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "Portugal\n52 per cent increase in the estimated lithium resources at the Mina do Barroso Lithium Project in northern Portugal, saying the country could become the first European supplier of spodumene, a lithium-bearing mineral. The company said the estimated mineral resources at the mine now stood at 14 million tonnes. Lithium prices have risen in expectation of growing demand for the mineral, which is used in batteries for electric vehicles and for storing electricity from the power grid. Europe consumes more than 20 per cent of the global supply of battery-grade lithium but currently has to import all its supplies of"} +{"qid": "test20", "pid": "10114703", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "Jadarite\nMuseum in London and the National Research Council of Canada conducted tests on it. Chris Stanley, from the Natural History Museum, described Jadarite as being unique to mineralogy. The mineral discovery may be commercially important because the mineral contains lithium and boron, both relatively rare industrially important elements. Lithium is used for lithium batteries; boron is used in alloys, ceramic, glasses, and other applications. It is estimated that there are 200 million tons of the lithium borate ore, which would make the future Jadar mines one of the world's largest lithium deposits, supplying 10% of the world's demand for lithium."} +{"qid": "test20", "pid": "18913740", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium–silicon battery\"\nLithium–silicon battery Lithium–silicon batteries are a lithium-ion battery technology that employ a silicon anode and lithium ions as the charge carriers. Silicon has a much larger energy density (25 times as many lithium ions) than graphite. Silicon's large volume change when lithium is inserted is the main obstacle to commercializing this device. Commercial battery anodes may have small amounts of silicon, boosting their performance slightly. The amounts are closely held trade secrets, limited as of 2018 to at most 10% of the anode. The first laboratory experiments with lithium-silicon batteries took place in the late 1990s. Test sample production of"} +{"qid": "test20", "pid": "5516199", "query": "what is the main mineral in lithium batteries", "answer": "lithium", "passage": "Lithiophilite\na variety of secondary manganese phosphates and oxides. It is a late-stage mineral in some complex granite pegmatites. Members of the triphylite-lithiophilite series readily alter to secondary minerals. The type locality is the Branchville Quarry, Branchville, Fairfield County, Connecticut where it was first reported in 1878. The largest documented single crystal of lithiophilite was found in New Hampshire, US, measured 2.44×1.83×1.22 m and weighed ~20 tonnes. The synthetic form of triphylite, lithium iron phosphate, is a promising material for the production of lithium-ion batteries. Lithiophilite Lithiophilite is a mineral containing the element lithium. It is lithium manganese(II) phosphate with formula:"} +{"qid": "test20", "pid": "14018025", "query": "what is the main mineral in lithium batteries", "answer": "lithium", "passage": "\"Oro Blanco\"\nomits to mention the word \"\"lithium\"\". Oro Blanco Oro Blanco ( BCS: ORO BLANCO) is an investment company based in Chile. Through its 83.23%-owned subsidiary Calichera, the company holds interests in the Chilean Chemical company SQM. The company's majority shareholder is Norte Grande, with 86.1% of its interests. According to the fact finding website, \"\"snopes.com\"\". The claims made by Oro Blanco, through a viral marketing advertisement created by Kent Moors, are fraudulent The 'superfuel' turns out to be lithium, which is mined as the mineral lithium carbonate. Purified lithium is used in lithium-ion batteries (which include the batteries that power"} +{"qid": "test20", "pid": "9361439", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium iron phosphate battery\"\nLithium iron phosphate battery The lithium iron phosphate () battery, also called LFP battery (with \"\"LFP\"\" standing for \"\"lithium ferrophosphate\"\"), is a type of rechargeable battery, specifically a lithium-ion battery, which uses as a cathode material, and a graphitic carbon electrode with a metallic current collector grid as the anode. The specific capacity of is higher than that of the related lithium cobalt oxide () chemistry, but its energy density is slightly lower due to its low operating voltage. The main problem of is its low electrical conductivity. Therefore, all the cathodes under consideration are actually /C. Because of low"} +{"qid": "test20", "pid": "9361452", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium iron phosphate battery\"\napplications include flashlights, radio-controlled models, portable motor-driven equipment, industrial sensor systems. and emergency lighting. Lithium iron phosphate battery The lithium iron phosphate () battery, also called LFP battery (with \"\"LFP\"\" standing for \"\"lithium ferrophosphate\"\"), is a type of rechargeable battery, specifically a lithium-ion battery, which uses as a cathode material, and a graphitic carbon electrode with a metallic current collector grid as the anode. The specific capacity of is higher than that of the related lithium cobalt oxide () chemistry, but its energy density is slightly lower due to its low operating voltage. The main problem of is its low"} +{"qid": "test20", "pid": "10850049", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium iron phosphate\"\nmanganese oxide (), and lithium nickel oxide (). The anodes are generally made of carbon. Lithium iron phosphate exists naturally in the form of the mineral triphylite, but such material have insufficient purity for use in batteries. With general chemical formula of , adopts the olivine structure. M includes not only Fe but also Co, Mn and Ti. The first commercial was C/ and therefore, refer to the whole group of as lithium iron phosphate, . However, more than one olivine-type phase may be used as a battery's cathode material. Olivine compounds such as , , and have the same"} +{"qid": "test20", "pid": "14018024", "query": "what is the main mineral in lithium batteries", "answer": "lithium", "passage": "\"Oro Blanco\"\nOro Blanco Oro Blanco ( BCS: ORO BLANCO) is an investment company based in Chile. Through its 83.23%-owned subsidiary Calichera, the company holds interests in the Chilean Chemical company SQM. The company's majority shareholder is Norte Grande, with 86.1% of its interests. According to the fact finding website, \"\"snopes.com\"\". The claims made by Oro Blanco, through a viral marketing advertisement created by Kent Moors, are fraudulent The 'superfuel' turns out to be lithium, which is mined as the mineral lithium carbonate. Purified lithium is used in lithium-ion batteries (which include the batteries that power electric cars), though the advertisement persistently"} +{"qid": "test20", "pid": "16192003", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"High capacity oceanographic lithium battery pack\"\nthe capacity of their battery packs. When possible, oceanographers use alkaline batteries because they are inexpensive and readily available. However, when alkaline batteries provide insufficient capacity, oceanographers turn to lithium battery packs, which can supply three times the capacity. Battery packs based on lithium thionyl chloride chemistry cost more than alkaline battery packs, but they provide roughly three times the energy density at about 60% of the weight (both by volume). Lithium batteries have other advantages as well. They produce negligible gas, and what gas is produced is contained in hermetically sealed metal containers. The voltage over the life of"} +{"qid": "test20", "pid": "1631253", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium-ion battery\"\nRecent advances in battery technology involve using a solid as the electrolyte material. The most promising of these being ceramics. Solid ceramic electrolytes are mostly lithium metal oxides which allow lithium ion transport through the solid more readily due to the intrinsic lithium. The main benefit of solid electrolytes is that there is no risk of leaks, which is a serious safety issue for batteries with liquid electrolytes. Solid ceramic electrolytes can be further broken down into two main categories: ceramic and glassy. Ceramic solid electrolytes are highly ordered compounds with crystal structures that usually have ion transport channels. Common"} +{"qid": "test20", "pid": "232083", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "Lithium\nincreased the demand for lithium and became the dominant use in 2007. With the surge of lithium demand in batteries in the 2000s, new companies have expanded brine extraction efforts to meet the rising demand. Lithium production has greatly increased since the end of World War II. The metal is separated from other elements in igneous minerals. The metal is produced through electrolysis from a mixture of fused 55% lithium chloride and 45% potassium chloride at about 450 °C. As of 2015, most of the world's lithium production is in South America, where lithium-containing brine is extracted from underground pools"} +{"qid": "test20", "pid": "1631236", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium-ion battery\"\naccepting and releasing lithium ions. Reversible intercalation in graphite and intercalation into cathodic oxides was discovered during 1974–76 by J. O. Besenhard at TU Munich. Besenhard proposed its application in lithium cells. Electrolyte decomposition and solvent co-intercalation into graphite were severe early drawbacks for battery life. There were two main trends in the research and development of electrode materials for lithium ion rechargeable batteries. One was the approach from the field of electrochemistry centering on graphite intercalation compounds, and the other was the approach from the field of new nano-carbonaceous materials. The negative electrode of today’s lithium ion rechargeable battery"} +{"qid": "test20", "pid": "12391482", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium–sulfur battery\"\nare intercalated in the anode and cathodes. Each sulfur atom can host two lithium ions. Typically, lithium-ion batteries accommodate only 0.5–0.7 lithium ions per host atom. Consequently, Li-S allows for a much higher lithium storage density. Polysulfides are reduced on the cathode surface in sequence while the cell is discharging: Across a porous diffusion separator, sulfur polymers form at the cathode as the cell charges: These reactions are analogous to those in the sodium–sulfur battery. The main challenges of Li-S batteries is the low conductivity of sulfur and its massive volume change upon discharging and finding a suitable cathode is"} +{"qid": "test20", "pid": "232091", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "Lithium\nthe lithium space: \"\"SQM, controlled by billionaire Julio Ponce, is the second-largest, followed by Rockwood, which is backed by Henry Kravis’s KKR & Co., and Philadelphia-based FMC\"\", with Talison mentioned as the biggest producer. Global consumption may jump to 300,000 metric tons a year by 2020 from about 150,000 tons in 2012, to match the demand for lithium batteries that has been growing at about 25% a year, outpacing the 4% to 5% overall gain in lithium production. Lithium salts are extracted from water in mineral springs, brine pools, and brine deposits. Brine excavation is probably the only lithium extraction"} +{"qid": "test20", "pid": "5466846", "query": "what is the main mineral in lithium batteries", "answer": "lithium", "passage": "\"Geoffrey Ballard\"\nwere introduced to Keith Prater at the University of Texas chemistry department, and sold him on the idea of developing a new rechargeable lithium battery technology with them. Prater was able to quickly determine that no one knew what the product of the lithium-salt reactions in existing batteries were, and guessed that it was lithium dithionite, which he was able to synthesize. Working in a trailer, Ballard and Schwartz built a simple battery and Prater brought a sample of the lithium dithionite, and when they were placed together and charged, a weak current was produced. After further development the system"} +{"qid": "test20", "pid": "9964832", "query": "what is the main mineral in lithium batteries", "answer": "lithium", "passage": "\"Cessna CitationJet/M2\"\nreplacing certain lithium-ion batteries installed as the main aircraft battery with either a Ni-Cad or a lead acid battery. This AD was prompted by a report of a battery fire that resulted after an energized ground power unit was connected to one of the affected airplanes equipped with a lithium-ion battery as the main aircraft battery. We are issuing this AD to correct the unsafe condition on these products. Cessna CitationJet/M2 The Cessna CitationJet/M2/CJ series (Model 525) are light business jets built by Cessna and part of the Citation family. Launched in October 1989, its first flight was on April"} +{"qid": "test20", "pid": "5442004", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Mobile phone features\"\nLithium ion batteries are also used, as they are lighter and do not have the voltage depression due to long-term over-charging that nickel metal-hydride batteries do. Many mobile phone manufacturers use lithium–polymer batteries as opposed to the older lithium-ion, the main advantages being even lower weight and the possibility to make the battery a shape other than strict cuboid. GSM mobile phones require a small microchip called a Subscriber Identity Module or SIM card, to function. The SIM card is approximately the size of a small postage stamp and is usually placed underneath the battery in the rear of the"} +{"qid": "test20", "pid": "9361440", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium iron phosphate battery\"\ncost, low toxicity, well-defined performance, long-term stability, etc. is finding a number of roles in vehicle use, utility scale stationary applications, and backup power. is a natural mineral of the olivine family (triphylite). Its use as a battery electrode which was first described in published literature by John B. Goodenough's research group at the University of Texas in 1996, as a cathode material for rechargeable lithium batteries. Because of its low cost, non-toxicity, the natural abundance of iron, its excellent thermal stability, safety characteristics, electrochemical performance, and specific capacity (170 mA·h/g, or 610 C/g) it has gained considerable market acceptance."} +{"qid": "test20", "pid": "1650272", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "Drill\n(NiCd) batteries and lithium-ion batteries, with each holding about half the market share. NiCd batteries have been around longer, so they are less expensive (their main advantage), but have more disadvantages compared to lithium-ion batteries. NiCd disadvantages are limited life, self-discharging, environment problems upon disposal, and eventually internally short circuiting due to dendrite growth. Lithium-ion batteries are becoming more common because of their short charging time, longer life, absence of memory effect, and low weight. Instead of charging a tool for an hour to get 20 minutes of use, 20 minutes of charge can run the tool for an hour."} +{"qid": "test20", "pid": "5512758", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium battery\"\nLithium battery Lithium batteries are primary batteries that have lithium as an anode. These types of batteries are also referred to as lithium-metal batteries. They stand apart from other batteries in their high charge density (long life) and high cost per unit. Depending on the design and chemical compounds used, lithium cells can produce voltages from (comparable to a zinc–carbon or alkaline battery) to about . Disposable primary lithium batteries must be distinguished from secondary lithium-ion, lithium iron phosphate and lithium-polymer, which are rechargeable batteries. Lithium is especially useful, because its ions can be arranged to move between the anode"} +{"qid": "test20", "pid": "17643182", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium ion manganese oxide battery\"\nmade of alternating layers of lithium ions and lithium and manganese ions in a 1:2 ratio, similar to the layered structure of . Although is electrochemically inactive, it can be charged to a high potential (4.5 V v.s Li) in order to undergo lithiation/de-lithiation. However, extracting lithium from at such a high potential results in loss of oxygen from the electrode surface which leads to poor capacity and cycling stability. One of the main research efforts in the field of lithium-manganese oxide electrodes for lithium-ion batteries involves developing composite electrodes using structurally integrated layered and spinel , with a chemical"} +{"qid": "test20", "pid": "18738838", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium as an investment\"\nincreased tendency for costlier components to be targeted for replacement by new technologies. Current projections of the global market for lithium-ion batteries range from $26 billion in 2023 (\"\"Navigant Research\"\") to a very optimistic $33 billion in 2019 (\"\"Transparency Market Research\"\"). Lithium metal is an extremely soft, highly reactive, and flammable element. It is most frequently found in deposits such as spodumene and pegmatite minerals, with larger resources in the U.S., Canada, Australia, China, Zimbabwe, and Russia. Lithium possesses a unique chemical profile making it the lightest metal in the periodic table and the least dense solid element. Its atomic"} +{"qid": "test20", "pid": "1631303", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium-ion battery\"\na result of the ban. Researchers are actively working to improve the power density, safety, cycle durability (battery life), recharge time, cost, flexibility, and other characteristics, as well as research methods and uses, of these batteries. Lithium-ion battery A lithium-ion battery or Li-ion battery (abbreviated as LIB) is a type of rechargeable battery in which lithium ions move from the negative electrode to the positive electrode during discharge and back when charging. Li-ion batteries use an intercalated lithium compound as one electrode material, compared to the metallic lithium used in a non-rechargeable lithium battery. Lithium-ion batteries are common rechargeable batteries"} +{"qid": "test20", "pid": "10067269", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium superoxide\"\nthough not necessarily impossible. In a lithium-air battery, when there is a one electron reduction during discharge, lithium superoxide is formed as seen in the following reaction: This product will then react and proceed to form lithium peroxide, LiO: The mechanism for this last reaction has not been confirmed and chemists are having difficulties developing a theory of what may be happening. Another significant challenge of these batteries is finding an ideal solvent in which to perform these reactions; ether- and amide-based solvents are currently used, but these compounds readily react with oxygen and decompose. A suitable solvent would need"} +{"qid": "test20", "pid": "232052", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "Lithium\nLithium Lithium (from ) is a chemical element with symbol Li and atomic number 3. It is a soft, silvery-white alkali metal. Under standard conditions, it is the lightest metal and the lightest solid element. Like all alkali metals, lithium is highly reactive and flammable, and is stored in mineral oil. When cut, it exhibits a metallic luster, but moist air corrodes it quickly to a dull silvery gray, then black tarnish. It never occurs freely in nature, but only in (usually ionic) compounds, such as pegmatitic minerals which were once the main source of lithium. Due to its solubility"} +{"qid": "test20", "pid": "1631230", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium-ion battery\"\nLithium-ion battery A lithium-ion battery or Li-ion battery (abbreviated as LIB) is a type of rechargeable battery in which lithium ions move from the negative electrode to the positive electrode during discharge and back when charging. Li-ion batteries use an intercalated lithium compound as one electrode material, compared to the metallic lithium used in a non-rechargeable lithium battery. Lithium-ion batteries are common rechargeable batteries for portable electronics, with a high energy density, tiny memory effect and low self-discharge. LIBs are also growing in popularity for military, battery electric vehicle and aerospace applications. Chemistry, performance, cost and safety characteristics vary across"} +{"qid": "test20", "pid": "1544882", "query": "what is the main mineral in lithium batteries", "answer": "lithium", "passage": "Spodumene\nhas over its more popular brine rivals is the purity of the lithium carbonate it can produce. While all product used by the battery industry has to be at least 99.5% lithium carbonate, the makeup of the remaining 0.5% is important; higher amounts of iron, magnesium or other deleterious materials makes brine a less attractive product. Hiddenite is a pale emerald green gem variety first reported from Alexander County, North Carolina, US. It was named in honor of William Earl Hidden (16 February 1853 - 12 June 1918), mining engineer, mineral collector, and mineral dealer. This emerald green variety of"} +{"qid": "test20", "pid": "12391488", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium–sulfur battery\"\nRack-Mounted Battery that weighs only 25 kg and is fully scalable. OXIS anticipates that its Lithium-Sulfur batteries will cost about $200/kWh in mass production. OXIS has also been involved in the European Consortium for Lithium-Sulphur Power for Space Environments (ECLIPSE) H2020 project. This project is developing high-capacity Li-S batteries for satellites and launchers. Sony, which also commercialized the first lithium-ion battery, plans to introduce lithium–sulfur batteries to the market in 2020. Lithium–sulfur battery The lithium–sulfur battery (Li–S battery) is a type of rechargeable battery, notable for its high specific energy. The low atomic weight of lithium and moderate weight of"} +{"qid": "test20", "pid": "12228695", "query": "what is the main mineral in lithium batteries", "answer": "Lithium", "passage": "\"Lithium-titanate battery\"\nLithium-titanate battery The lithium-titanate battery is a type of rechargeable battery which has the advantage of being faster to charge than other lithium-ion batteries. Titanate batteries are used in certain Japanese-only versions of Mitsubishi's i-MiEV electric vehicle, and Honda uses them in its EV-neo electric bike and Fit EV. They are also used in the Tosa concept electric bus. Due to their high level of safety, lithium-titanate batteries are used in mobile medical devices A lithium-titanate battery is a modified lithium-ion battery that uses lithium-titanate nanocrystals, instead of carbon, on the surface of its anode. This gives the anode a"} +{"qid": "test2000", "pid": "19723529", "query": "who is eliminated in big boss kannada 5", "answer": "Shruti", "passage": "\"Bigg Boss Kannada (season 4)\"\nis also and alumnus of Bigg Boss Kannada from the third season. Neravanda Aiyappa is a cricketer who played for Karnataka team in Ranji and other domestic tournaments; he is an alumnus of Bigg Boss Kannada from the third season. Shruti is the yesteryear actress and politician; she is an alumnus and Winner of Bigg Boss Kannada from the third season. Neethu is an actress who appears in Kannada films; she is an alumnus of Bigg Boss Kannada from the second season. Rishika Singh is an actress who appears in Kannada films; she is an alumnus of Bigg Boss Kannada"} +{"qid": "test2001", "pid": "1780173", "query": "where does the sciatic nerve run in the foot", "answer": "on the posterior aspect", "passage": "\"Sciatic nerve\"\nSciatic nerve The sciatic nerve (also called \"\"ischiadic nerve\"\", \"\"ischiatic nerve\"\") is a large nerve in humans and other animals. It begins in the lower back and runs through the buttock and down the lower limb. It is the longest and widest single nerve in the human body, going from the top of the leg to the foot on the posterior aspect. The sciatic nerve provides the connection to the nervous system for nearly the whole of the skin of the leg, the muscles of the back of the thigh, and those of the leg and foot. It is derived"} +{"qid": "test2001", "pid": "7530131", "query": "where does the sciatic nerve run in the foot", "answer": "on the posterior aspect", "passage": "\"Sole (foot)\"\nthe nail beds of these toes. It also provides motor innervation to abductor hallucis, flexor hallucis brevis, flexor digitorum brevis, and the first lumbrical. The saphenous nerve from the femoral nerve provides sensory innervation to the medial side of the foot as well as the medial side of the leg. Likewise, the sural nerve provides sensory innervation to the skin on the lateral side of the foot as well as the skin on the posterior aspect of the lower leg. The tibial nerve from the sciatic nerve provides sensory innervation to the skin of the sole and toes, and the"} +{"qid": "test2002", "pid": "18032518", "query": "what state courts can order a new trial", "answer": "appellate court", "passage": "\"Supreme Court of Justice (Austria)\"\ncivil case, the appellate court first checks whether the trial court has committed procedural errors; if yes, it orders a retrial, sending the case back to the trial court. If no, or if the case is criminal, the appellate court conducts what is essentially a retrial itself − the appellate trial does not merely review questions of law but also questions of fact, assessing evidence and questioning witnesses. In addition to the appeal on facts and law against the verdict of the trial court, an appeal at law ( in civil trials, in criminal cases) can be filed against the"} +{"qid": "test2002", "pid": "8745", "query": "what state courts can order a new trial", "answer": "appellate court", "passage": "\"Appellate procedure in the United States\"\nfrom state to state. The right to file an appeal can also vary from state to state; for example, the New Jersey Constitution vests judicial power in a Supreme Court, a Superior Court, and other courts of limited jurisdiction, with an appellate court being part of the Superior Court. A party who files an appeal is called an \"\"appellant\"\", \"\"plaintiff in error\"\", \"\"petitioner\"\" or \"\"pursuer\"\", and a party on the other side is called a \"\"appellee\"\". A \"\"cross-appeal\"\" is an appeal brought by the respondent. For example, suppose at trial the judge found for the plaintiff and ordered the defendant"} +{"qid": "test2002", "pid": "6506803", "query": "what state courts can order a new trial", "answer": "appellate court", "passage": "\"Section 11 of the Canadian Charter of Rights and Freedoms\"\nin 1991 the Supreme Court ruled in \"\"R. v. Furtney\"\" that section 11(g) does not require that all people must be \"\"aware\"\" of what is criminal and what is not. International law is recognized by section 11(g), and the Court acknowledged the federal government is not obligated to make sure all Canadians are aware of what international law says. Section 11(h) provides that This provision prohibits double jeopardy, but only applies after the trial is finally concluded. The Crown has the right to appeal from acquittals. If the appellate court sets aside an acquittal and orders a new trial, that"} +{"qid": "test2002", "pid": "20667365", "query": "what state courts can order a new trial", "answer": "appellate court", "passage": "\"Burks v. United States\"\nthe Court held that the Double Jeopardy Clause posed no bar to retrying a defendant, who, like Burks, had unsuccessfully moved the trial court for a judgment of acquittal and, alternatively, a new trial, but whose conviction was reversed for insufficiency of the evidence by an appellate court. But five years later, in \"\"Sapir v. United States,\"\" the Supreme Court issued a single-paragraph per curiam opinion, vacating a Court of Appeals' order that directed a new trial under similar factual circumstances as in \"\"Bryan.\"\" The Court did not explain itself. But Justice Douglas wrote a concurring opinion, in which he"} +{"qid": "test2002", "pid": "14776446", "query": "what state courts can order a new trial", "answer": "appellate court", "passage": "\"Ronald E. Nehring\"\nalso ruled that in order to challenge rulings made at trial, an appellant must adequately brief the issues asserted on appeal, must provide to the appellate court an adequate record to support the contentions raised in the appeal, and must procedurally and properly challenge the trial court's decision in order for the appeal before relief on appeal can be granted by an appellate court. \"\"Deseret News\"\": Ronald E. Nehring Ronald E. Nehring (born 1947) was a Justice of the Utah Supreme Court. He was appointed to the court in 2003 by Utah Governor Michael Leavitt, and he retired in 2015."} +{"qid": "test2003", "pid": "12167092", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Ellen DeGeneres\"\nBurnett, Steve Martin, and Bob Newhart. \"\"Forbes\"\" estimated DeGeneres' 2018 earnings at US$87.5 million, making her the 15th highest-paid entertainer in the world. In 2015, she was named the 50th most powerful woman in the world by \"\"Forbes\"\" and number two on the World Pride Power list. As of August 2, 2018, DeGeneres has more than 76 million followers on Twitter and 55.8 million followers on Instagram, making her the seventh most followed user on Twitter and the 28th most followed user on Instagram. She is a fan of the National Football League and has shown particular support for the"} +{"qid": "test2003", "pid": "16443892", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Kevin Systrom\"\nKevin Systrom Kevin York Systrom (born December 30, 1983) is an American programmer and entrepreneur. He created Instagram, the world's largest photo sharing website. He co‑founded Instagram along with Mike Krieger. Instagram is ranked world's 14th most visited site by Alexa rankings. He was keen programmer and loved photography. Under Systrom as CEO, Instagram has become a fast growing app, with 800 million monthly users as of September 2017. Systrom resigned as CEO of Instagram on September 24, 2018. Systrom was born in 1983 in Holliston, Massachusetts. He is the son of Diane (Pels), a marketing executive at Zipcar, who"} +{"qid": "test2003", "pid": "15024802", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Laura Brown (fashion journalist)\"\nof InStyle. As of January 2018, Brown has 180,000 Instagram followers and more than 43,000 Twitter followers. Of Instagram, Brown has said, \"\"It is the way to present yourself to the world. It is the magazine of your life.\"\" If Instagram is the magazine of one's life, then Brown's demonstrates that she is proud of her Australian heritage: her Instagram feed is full of images of Australian animals such as koalas and kangaroos, and she supports Australian labels such as Zimmermann by often wearing their clothes. Brown is friends with many celebrities, including fellow Australians Naomi Watts, Rose Byrne and"} +{"qid": "test2003", "pid": "6927293", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Celebrity branding\"\nare deciding to attempt to reach the largest assortment of potential consumers possible, rather than reaching a small number of consumers but more frequently – which is described as frequency (Belch & Belch, 2012). An example of the usefulness of a celebrity's reach can be shown in statistics taken from telegraph.co.uk regarding the world's most followed Instagram celebrities. The most followed Instagram celebrity is Selena Gomez, with each post that she makes being viewed by all or most of her 145 million followers. Cristiano Ronaldo is 2nd, with 144 million followers, and Ariana Grande is 3rd with 116 million followers."} +{"qid": "test2003", "pid": "592780", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Model (person)\"\n16 per cent using Facebook. Some Instagram models have gained high-profile modelling jobs and become celebrities. Fitness model Jen Selter had become an Internet celebrity by 2014 with nearly 2 million Instagram followers, gaining professional sports management work and modelling for \"\"Vanity Fair\"\" magazine. Cosplayer and model Anna Faith had acquired over 250,000 Instagram followers by 2014, gaining success from her ability to impersonate the Disney character Elsa. With Facebook's continuing decrease in post reach, Instagram has increasingly become the favorite platform for cosplayers. American actress Caitlin O'Connor had almost 300,000 Instagram followers in 2016, earning most of her social"} +{"qid": "test2003", "pid": "3048851", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Cristiano Ronaldo\"\nin 2013, with Brazilian footballer Neymar topping both lists. Sports market research company Repucom named Ronaldo the most marketable and most recognised football player in the world in May 2014. He was additionally named in the 2014 Time 100, \"\"Time\"\"s annual list of the most influential people in the world. ESPN named Ronaldo the world's most famous athlete in 2016, 2017 and 2018. Ronaldo has established a strong online presence; the most popular sportsperson on social media, he counted 158 million total followers across Facebook, Twitter and Instagram by June 2015. , he has the world's biggest Facebook fanbase with"} +{"qid": "test2003", "pid": "16443905", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Kevin Systrom\"\n2016, Systrom met with Pope Francis at the Vatican, where they discussed the power of images in uniting people \"\"across borders, cultures and generations\"\". Kevin Systrom Kevin York Systrom (born December 30, 1983) is an American programmer and entrepreneur. He created Instagram, the world's largest photo sharing website. He co‑founded Instagram along with Mike Krieger. Instagram is ranked world's 14th most visited site by Alexa rankings. He was keen programmer and loved photography. Under Systrom as CEO, Instagram has become a fast growing app, with 800 million monthly users as of September 2017. Systrom resigned as CEO of Instagram on"} +{"qid": "test2003", "pid": "15558170", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "Instagram\nThe change received \"\"widespread outcry\"\" following Instagram's March announcement, but Instagram stated that the feature would help users discover lost posts, writing that \"\"You may be surprised to learn that people miss on average 70 percent of their feeds. As Instagram has grown, it's become harder to keep up with all the photos and videos people share. This means you often don't see the posts you might care about the most. To improve your experience, your feed will soon be ordered to show the moments we believe you will care about the most.\"\" On May 11, 2016, Instagram revamped its"} +{"qid": "test2003", "pid": "19348457", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"The Shade Room\"\nUnlike most web-based celebrity gossip coverage, Nwandu avoided the typical blog format in favor of publishing full-length stories on Instagram, providing a platform appealing to advertisers. Nwando found Instagram suited to her vision for The Shade Room due to its image-based format. After getting established in the Instagram format, the site was then expanded to include community news, trending news, and user interaction. The Shade Room refers to readers as \"\"roommates\"\", who often provide leads on celebrities to The Shade Room personnel. By the end of 2015, the site was reported to have 2.6 million followers, although the company has"} +{"qid": "test2003", "pid": "17650939", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Manny the Frenchie\"\nFacebook and more than 900,000 followers on Instagram. He has been used as a canine model for consumer Martha Stewart's PetSmart line and has been featured on Steve Harvey's television talk show. In 2016 Manny was awarded The CW's World Dog Award for Most Pawpular and Influential dog. Manny the Frenchie Manny the Frenchie (born February 7, 2011) is a French Bulldog from Chicago, Illinois, that achieved Internet celebrity via the posting of his photographs on various social media websites. He is currently the world's most followed and popular Bulldog on the Internet. Between his channels and the Manny and"} +{"qid": "test2003", "pid": "14769980", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Social media in the fashion industry\"\nfashion brand Tommy Hilfiger has incorporated social media into their marketing strategy effectively. They have understood the power that it has and the influence on consumers. By having someone who is well known and admired the brand received positive attention. Gigi Hadid is one of the most popular super models of 2016, with the Instagram following of 15.5 million people. She has modelled for the cover of Vogue, W, Harpers Bazaar, Elle, TeenVogue, Numéro, Schön! And CR Fashion Book, along with appearing in music videos and television programs around the world. (PVH, C. 2012). Tommy Hilfiger has cast Gigi as"} +{"qid": "test2003", "pid": "11460841", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "Neymar\nMarch 2015, Neymar had the fourth highest social media rank in the world among sportspeople, behind Cristiano Ronaldo, Lionel Messi and David Beckham, with 52 million Facebook fans. He has over 100 million Instagram followers, the second highest for a sportsperson (after Cristiano Ronaldo), and inside the top 10 most followed people. In ESPN's list of active sportspeople in 2016, Neymar was ranked the fourth most famous athlete in the world. To mark the World Cup commencing in Brazil, in June 2014, Neymar appeared with supermodel Gisele Bündchen on the front cover of \"\"Vogue\"\"'s Brazilian edition. In November 2014, Neymar"} +{"qid": "test2003", "pid": "6927335", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Celebrity branding\"\ndemographic. According to the Telegraph (2015), the ten most popular Instagram accounts are all celebrities who all have around 30 million followers. By partnering with one of these celebrities, businesses are already reaching an engaged and targeted audience of 30 million people. Many of America's top-earning celebrities Instagram accounts are continually promoting products such as health supplements, vitamins and detox teas. These aren't spontaneous proclamations, but rather posts paid for by brands to advertise products to the celebrities' sizable following. On Instagram alone a profile with three-to-seven million followers can charge as much as $75,000 per endorsement, even a profile"} +{"qid": "test2003", "pid": "15558218", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "Instagram\npasswords for some users who had used the \"\"Download Your Data\"\" feature were included in the URL and also stored on Facebook's servers due to a security bug that was discovered by the Instagram internal team. Censorship of Instagram has occurred in several different countries. Instagram has been blocked by China following the 2014 Hong Kong protests because a lot of videos and photos are posted. Hong Kong and Macau were not affected as they are special administrative regions of China. Turkey is also known for its strict Internet censorship and periodically blocks social media including Instagram. A few days"} +{"qid": "test2003", "pid": "20818597", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Sondos Alqattan\"\nSondos Alqattan Sondos Alqattan is a Kuwaiti beauty blogger and Instagram user who shot to international prominence after posting a video critical of a Kuwaiti government move to provide better protection and working conditions for migrant domestic workers. With some 2.4 million followers on Instagram, Alqattan was a popular 'social media influencer' in the Arab world and used by a number of beauty brands to promote their products. Although a number of brands were fast to desert her, since media coverage and online attention about the controversy has died down, her popularity has bounced back and she is once again"} +{"qid": "test2003", "pid": "18100729", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Ghost followers\"\nGhost followers Ghost followers, also referred to as ghosts and ghost accounts or lurkers, are users on social media platforms who remain inactive or do not engage in activity. They register on platforms such as Twitter and Instagram. These users follow active members, but do not partake in liking, commenting, messaging, and posting. These accounts may be created by people or by social bots. Many ghost followers are accounts created by scammers who create fictional profiles and use them to target and scam others. Commercial services provide the ability to buy Instagram followers, most of which are ghosts. These individuals"} +{"qid": "test2003", "pid": "15558196", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "Instagram\nsong, and over 1,200 different photographs were submitted. Instagram was listed among \"\"Time\"\"s \"\"50 Best Android Applications for 2013\"\" list. Instagram's users are divided equally with 50% iPhone owners and 50% Android owners. While Instagram has a neutral gender-bias format, 68% of Instagram users are female while 32% are male. Instagram's geographical use is shown to favor urban areas as 17% of US adults who live in urban areas use Instagram while only 11% of adults in suburban and rural areas do so. While Instagram may appear to be one of the most widely used sites for photo sharing, only"} +{"qid": "test2003", "pid": "3596344", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Association football culture\"\nmost followed person. Cristiano, Messi and Neymar are the three most followed sportspeople on Instagram, and all 3 in the top 12 most followed people. Many other players have also become celebrities and are treated as heroes by the fans. Retired players, such as Gary Lineker, have become celebrities in their own right by working on television or radio. Even non-footballers who are connected to football have become famous through their association alone. For instance, after the 2002 World Cup, the head of the Korea Football Association decided to run for president of South Korea. In football, a goal celebration"} +{"qid": "test2003", "pid": "20433802", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Huda Kattan\"\nwere famously worn by Kim Kardashian. Kattan's company, which is based out of Dubai, later began to offer other beauty products, including eye shadow palettes, liquid lipsticks, lip liners, highlighter palettes, foundation, false nails and concealers. Kattan achieved popularity on Instagram, attaining more than 20 million followers as of 2017. Kattan is ranked #1 on the \"\"2017 Influencer Instagram Rich List\"\", earning $18,000 for each post of sponsored content. Kattan has been described as \"\"a Kim Kardashian West of the beauty influencer economy\"\", and was declared one of the \"\"ten most powerful influencers in the world of beauty\"\" by \"\"Forbes\"\""} +{"qid": "test2003", "pid": "19471995", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Violet Benson\"\nbefore becoming known as Daddy Issues. Benson started her Daddy Issues Instagram account on July 5, 2014. Benson has earned over 3 million followers on Instagram and is known as one of the fastest growing accounts and one of the largest funny female accounts that even MTV took notice. Though best known for Instagram, Benson runs several other social media platforms which include a Daddyissues__ Twitter account, a DaddyissuesLA snapchat account, and a secondary instagram account under her own name. Benson has stated that she turns down most requests to upload sponsored posts since it is important for her to"} +{"qid": "test2003", "pid": "20654077", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Alexandra Mary Hirschi\"\nAlexandra Mary Hirschi Alex Hirschi (born September 21, 1985), known as Supercar Blondie is an Australian social media celebrity, presenter, and vlogger. She is best known for her automotive videos, that she posts on regular basis on Facebook, Instagram and YouTube. Her Facebook page, has more than 900 million views with over 4.6 million subscribers and her Instagram over 1.8 million followers. According to Socialbakers her Facebook page is globally the fastest growing Auto page in 2018. In March 2018, Arabian Business listed her as one of the 50 Most Influential Women In The Arab World and Esquire Magazine Middle"} +{"qid": "test2003", "pid": "592777", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Model (person)\"\nmotives dominate over aesthetics in illustration, its artwork commonly employs models. Models are most frequently employed for art classes or by informal groups of experienced artists that gather to share the expense of a model. Instagram models have become popular due to the widespread use of social media. They are models who gain their success as a result of the large number of followers they have on Instagram and other social media. They should not be confused with established models such as Cara Delevingne and Gigi Hadid, who use Instagram to promote their traditional modelling careers, although some models, such"} +{"qid": "test2003", "pid": "10253254", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Surf Girl\"\nSurf Girl SurfGirl Magazine is the worlds most widely read surf and beach lifestyle publication for women. It was the first independent magazine for Women's surfing in the UK. but is now distributed through the USA, Australia, Portugal, South Africa, Germany and France. It has a large international social media following @surfgirlmag on Instagram, Facebook, Pintererst and a website \"\"SurfGirl\"\" was founded in 2002. The magazine targets women of all ages and abilities who are into surfing and surf culture. It features news, travel articles, interviews with professional surfers and UK riders, surfing tips, beauty and health advice, and articles"} +{"qid": "test2003", "pid": "14058638", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Ariana Grande\"\ntotal of more than twelve billion times, her Instagram account had accumulated more than 130 million followers, ranking her as the 3rd most followed person on Instagram, her Twitter account had more than 55 million followers, making it the 12th most followed Twitter account, and her Facebook page had more than 30 million likes. At the age of ten, Grande co-founded the South Florida youth singing group Kids Who Care, which performed for charitable fund-raising events and raised over $500,000 for charities in 2007 alone. In 2009, as a member of the charitable organization Broadway in South Africa, Grande, along"} +{"qid": "test2003", "pid": "19416680", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Dylan Dauzat\"\nfilms as an actor, producer, and associate producer. In 2017, he began his working relationship with Disney, first appearing in the television series 'Hyperlinked'. As of June 2018, his YouTube channel has over 700,000 subscribers with more than 37.4 million views. He currently has over 1.3 million followers on Instagram, more than 734,000 followers on Twitter, and over 275,000 followers on Facebook. In all, he has over 5.5 million followers around the world and across all major social media platforms. He holds the distinction of being ranked #21 Most Famous Viner. He has maintained an audience of over 1.6 million"} +{"qid": "test2003", "pid": "19052134", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"FaZe Clan\"\n\"\"FaZe 2.0\"\" by FaZe members and fans. The FaZe \"\"CS:GO\"\" team went on to become one of the most successful rosters for the 2017/2018 seasons. FaZe Clan is the most popular esports organization in the world, based on the organization's social media following. As of November 28, 2018, FaZe Clan and its members together have 82 million YouTube subscribers, 11.2 billion YouTube views, 11.3 million Twitch followers, 130 million Twitch views, 43.1 million Twitter followers, 45.8 million Instagram followers, 2.8 million Facebook likes and followers. FaZe Clan has made $6,148,290.91 from esport tournament prize pools alone. FaZe Clan started on"} +{"qid": "test2003", "pid": "3278400", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Zlatan Ibrahimović\"\ntattooed names of 50 people suffering from hunger around the world, in a gesture to raise awareness for famine in accordance with the United Nations World Food Programme. Active on social media, Zlatan has over 35 million Instagram followers, the most for a person from Sweden. Independent Swedish film production company Auto Images released the sports documentary \"\"Becoming Zlatan\"\" in February 2016 which follows Ibrahimović through his formative years with Malmö FF and Ajax all the way to his breakthrough with Juventus in 2005. The film has been featured at several film festivals including the International Documentary Film Festival Amsterdam,"} +{"qid": "test2003", "pid": "20772362", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Daryl Aiden Yow\"\nDaryl Aiden Yow Daryl Aiden Yow is a Singapore-based Instagram influencer and photographer who has worked with brands such as Sony, Oppo and Uniqlo. Yow became known on social media as style influencer Andrea Chong's Instagram photographer since 2015. He has accrued more than 100,000 followers on Instagram as of June 2018. =Plagiarism scandal= Yow gained widespread media attention in June 2018 after some of the images on his Instagram account and personal website were discovered to be edited or composited photos made from stock images, or from images found on sites such as Pinterest and Reddit. Acting on a"} +{"qid": "test2003", "pid": "19077551", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Bisa Kdei\"\n574,000 followers as well as his Instagram account were hacked on October 29, 2015. Bisa posted on Twitter confirming the hack and that his media team was working to get it resolved. The hackers posted several sexually suggestive videos and pictures on his page. His Instagram account was shut down and a new account was created. He is back on Facebook, on Bisa Kdei World |url=http://facebook.com/bisakdeiworld| and Instagram as Bisa Kdei |url=http://instagram.com/bisakdei/ Bisa Kdei has come a long way as far as music is concerned and ever since he came into the mainstream, he has been able to touch hearts"} +{"qid": "test2003", "pid": "19842706", "query": "who has the most followers in the world on instagram", "answer": "Instagram", "passage": "\"Elçin Sangu\"\nD. At the same year in August, Sangu together Baruş Ardıç were cast in the movie \"\"Mutluluk Zamanı\"\" (previously titled \"\"Yanımda Kal\"\" and \"\"Gitme Sen!\"\"). Sangu has a long-time relationship with Yunus Özdiken, who holds a job at a private firm outside the world of arts and entertainment. As of September 2016, she is the most followed Turkish actress on Instagram. Elçin Sangu Elçin Sangu (born 13 August 1985) is a Turkish actress and model, best known for her leading role Defne in the Star TV romantic comedy series \"\"Kiralık Aşk\"\" from June 2015 until its finale in January 2017."} +{"qid": "test2004", "pid": "250709", "query": "who used morse code in world war 2", "answer": "naval bases", "passage": "\"Morse code\"\nfor use with early communications systems and for identification of navigational beacons which transmitted continuous two- or three-letter identifiers in Morse code. Aeronautical charts show the identifier of each navigational aid next to its location on the map. Radiotelegraphy using Morse code was vital during World War II, especially in carrying messages between the warships and the naval bases of the belligerents. Long-range ship-to-ship communication was by radio telegraphy, using encrypted messages because the voice radio systems on ships then were quite limited in both their range and their security. Radiotelegraphy was also extensively used by warplanes, especially by long-range"} +{"qid": "test2006", "pid": "5264204", "query": "where was the tv show high chaparral filmed", "answer": "California", "passage": "\"The High Chaparral\"\nenergies on \"\"The High Chaparral\"\". After the show's cancellation in 1971 after only four years, Dortort chose not to return to \"\"Bonanza\"\" and retired. All the exterior filming was done at the famous Old Tucson Studios near Tucson, Arizona (site of frequent movie-making for several decades) and in the nearby Saguaro National Park, although in a few later episodes, some filming was done in California and (in season three) in the Coronado National Forest south of Tucson. The interiors were generally filmed at the NBC television studios in Burbank. The series has appeared on CBN, Family Channel, Hallmark Channel, INSP,"} +{"qid": "test2006", "pid": "15533333", "query": "where was the tv show high chaparral filmed", "answer": "California", "passage": "\"Pepe Hern\"\none of his last appearances in films. It was on television where Hern maintained greater continuity and visibility, participating in several TV series episodes such as \"\"The Rifleman\"\" (1961-1962), \"\"The Fugitive\"\" (1963), \"\"I Spy\"\" (1966), \"\"The High Chaparral\"\" (1967), \"\"Bonanza\"\" (1964-1970), \"\"The Streets of San Francisco\"\" (1972), \"\"Lou Grant\"\" (1977), \"\"The Bionic Woman\"\" (1977), and \"\"Charlie's Angels\"\" (1979). In 1984, Hern appeared in an episode of \"\"Murder, She Wrote\"\" and an episode of \"\"Hill Street Blues\"\". He died on February 28, 2009 in Los Angeles, California. This is a list of film of Pepe Hern This is a list of"} +{"qid": "test2006", "pid": "17715645", "query": "where was the tv show high chaparral filmed", "answer": "California", "passage": "\"Charles H. Gray\"\n\"\"Have Gun - Will Travel\"\", \"\"Riverboat\"\", \"\"Death Valley Days\"\", \"\"Gunslinger\"\", \"\"Laredo\"\", \"\"The Road West\"\", \"\"The Iron Horse\"\", \"\"The High Chaparral\"\", \"\"The Virginian\"\", \"\"Bearcats!\"\", \"\"Bonanza\"\" and \"\"Alias Smith and Jones\"\". He also appeared in many TV movies. Charles H. Gray Charles H. Gray (November 27, 1921 St. Louis, Missouri – August 2, 2008 Joshua Tree, San Bernardino County, California) was an American television and film actor. Gray was best known for his work in the TV series \"\"Highway Patrol\"\" as Officer Edwards, trail scout Clay Forrester in \"\"Rawhide\"\" and as Bill Foster in the soap opera \"\"The Young and the Restless\"\"."} +{"qid": "test2006", "pid": "9167132", "query": "where was the tv show high chaparral filmed", "answer": "California", "passage": "\"Chaparral High School (El Cajon, California)\"\nto attend Chaparral. The student population changes as students are returned to their school of residence upon completion of their remediation and/or academic goals. Chaparral offers programs and services to supplement the basic education program. Some of these services include an incoming orientation, Special Education Program, extended day tutorials and Title I support. Chaparral High School teaches programs such as Anger Management, and many other programs that students can use to fit into their daily lifestyles. Chaparral High School (El Cajon, California) Chaparral High School is the main continuation high school located in El Cajon, California for the Grossmont Union"} +{"qid": "test2006", "pid": "96741", "query": "where was the tv show high chaparral filmed", "answer": "California", "passage": "Chaparral\n30 to 50 years. In one study, a detailed analysis of historical fire data concluded that fire suppression activities have been ineffective at excluding fire from southern California chaparral, unlike in ponderosa pine forests. In addition, the number of fires is increasing in step with population growth. Chaparral stand age does not have a significant correlation to its tendency to burn. Low humidity, low fuel moisture, and high winds appear to be the primary factors in determining when and where a chaparral fire occurs and how large it becomes. Fires can be beneficial to plant communities by clearing away canopies"} +{"qid": "test2007", "pid": "6805705", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\nIndia to National Advisory Committee on Accounting Standards (NACAS). and sets the accounting standards to be followed by other types of organisations. ICAI is solely responsible for setting the Standards on Auditing (SAs) to be followed in the audit of financial statements in India. It also issues other technical standards like Standards on Internal Audit (SIA), Corporate Affairs Standards (CAS) etc. to be followed by practicing Chartered Accountants. It works closely with the Government of India, Reserve Bank of India and the Securities and Exchange Board of India in formulating and enforcing such standards. Members of the Institute are known"} +{"qid": "test2007", "pid": "8079108", "query": "authorities involved in formulating accounting standard in india", "answer": "Accounting Standards Board", "passage": "\"Institute of Cost Accountants of India\"\nwidening their knowledge base and in improving their skills to be at the cutting edge of technology by providing training and expertise in critical areas. The Institute of Cost Accountants of India (ICAI), recognizing the need for structured approach to the measurement of cost in manufacture or service sector and to provide guidance to the user organizations, government bodies, regulators, research agencies and academic institutions to achieve uniformity and consistency in classification, measurement and assignment of cost to product and services, has constituted Cost Accounting Standards Board (CASB) in the year 2001 with the objective of formulating the Cost Accounting"} +{"qid": "test2007", "pid": "6805753", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\nsuch as the RBI, SEBI and IRDA, CBDT. IASB, the issuer of IFRS, is also supporting the ICAI in its endeavours towards convergence. ICAI has revised/formulated Ind AS on the basis of the amendments and new IFRS issued by the IASB subsequent to February 2011. IFRS-converged Indian Accounting Standards (Ind AS) has been implemented in India in a phased manner from 1 April 2015 being the voluntary date of adoption of Ind AS. The mandatory application of Ind AS has been restricted to listed and unlisted companies with a net worth of Rs. 500 crore and above from the accounting"} +{"qid": "test2007", "pid": "19264995", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Audit in India\"\nParliament of India with the objective of regulating accountancy profession in India. ICAI is the second largest professional accounting body in the world in terms of membership second only to AICPA. It prescribes the qualifications for a Chartered Accountant, conducts the requisite examinations and grants license in the form of Certificate of Practice. Apart from this primary function, it also helps various government agencies like RBI, SEBI, MCA, CAG, IRDA, etc. in policy formulation. ICAI actively engages itself in aiding and advising economic policy formulation. For example, ICAI has submitted its suggestions on the proposed Direct Taxes Code Bill, 2010."} +{"qid": "test2007", "pid": "20301721", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"National Financial Reporting Authority\"\nas the first chairman of the body in October 2018. Other posts however, still remain vacant. Due to notification of NFRA, India is now eligible for membership of International Forum of Independent Audit Regulators (IFIAR). Institute of Chartered Accountants of India (ICAI) however, is not open to the establishment of such an authority as it fears reduction in its own powers. National Financial Reporting Authority National Financial Reporting Authority (NFRA) is a body proposed in Companies Act 2013 for the establishment and enforcement of accounting and auditing standards and oversight of the work of auditors. The Centre has appointed former"} +{"qid": "test2007", "pid": "6805750", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\nstandards by the members will lead to disciplinary action against them. The technical standards issued by ICAI includes, Accounting Standards, Engagement and Quality Control Standards, Standards on Internal Audit, Corporate Affairs Standard, Accounting Standards for Local Bodies, etc. , the Institute of Chartered Accountants of India has issued 32 Accounting Standards. These are numbered AS-1 to AS-7 and AS-9 to AS-32 (AS-8 is no longer in force since it was merged with AS-26). Compliance with accounting standards issued by ICAI has become a statutory requirement with the notification of Companies (Accounting Standards) Rules, 2006 by the Government of India. Before"} +{"qid": "test2007", "pid": "20522849", "query": "authorities involved in formulating accounting standard in india", "answer": "Accounting Standards Board", "passage": "\"N. D. Gupta\"\n(IASC), U.K (2000) (presently known as International Accounting Standards Board) • Board Member, International Federation of Accountants (IFAC), USA (2001-2004) (First Indian to be elected on the board of the International federation of the 164 regulatory accounting bodies of 116 countries) • Board Member of Insurance Regulatory & Development Authority, Government of India (2001) • Member, Working Group on Consolidated Accounting and Other Quantitative Methods to Facilitate Consolidated Supervision, Reserve Bank of India (2001). • Member, Central Direct Taxes Advisory Committee, Ministry of Finance, Government of India (2001). • Member, Audit Advisory Board, Comptroller & Auditor General of India (2001)"} +{"qid": "test2007", "pid": "6805708", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\njurisdiction of XBRL International Inc. The Institute of Chartered Accountants of India was established under the Chartered Accountants Act, 1949 passed by the Parliament of India with the objective of regulating accountancy profession in India. ICAI is the third largest professional accounting body in the world in terms of membership only to the ACCA and AICPA. It prescribes the qualifications for a Chartered Accountant, conducts the requisite examinations and grants license in the form of Certificate of Practice. Apart from this primary function, it also helps various government agencies like RBI, SEBI, MCA, CAG, IRDA, etc. in policy formulation. ICAI"} +{"qid": "test2007", "pid": "6805749", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\nCorporate Management Course (CMC)/ Tax Management Course (TMC) • International Trade Laws & World Trade Organisation (ITL & WTO) Source**ICAI website- member section The Institute maintains a placement portal on its web site for qualified members and partially qualified students. This is supplemented with campus placement events and advertising through its professional journals and website. In early 2010, the ICAI placed three of its freshly qualified Associates, at a record annual salary of US$160,000 each, at Singapore-based agriculture supply chain major Olam International. ICAI formulates and issues technical standards to be followed by Chartered Accountants and others. Non-compliance of these"} +{"qid": "test2007", "pid": "6805751", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\nthe constitution of the National Advisory Committee on Accounting Standards (NACAS), the institute was the sole accounting standard setter in India. However NACAS is not an independent body. It can only consider accounting standards recommended by ICAI and advise the Government of India to notify them under the Companies Act, 2013. Further the Accounting Standards so notified are applicable only to companies registered under the companies act, 2013. For all other entities the accounting standards issued the ICAI continue to apply. The inception of the idea of convergence of Indian GAAP with IFRS was made by the Prime Minister of"} +{"qid": "test2007", "pid": "20522851", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"N. D. Gupta\"\n(Apex body), Guru Gobind Singh Indraprastha University, Govt. of Delhi (since 2005) • President: Institute of Chartered Accountants of India (ICAI),(setup under Act of Parliament) (2001–02) • Member, Governing Body of Deen Dayal Upadhyay College, Delhi University (2001-2003) • Vice-President: Institute of Chartered Accountants of India (ICAI) (2000–01) • Chairman: ICAI- Accounting Research Foundation (2001–02) • Member, Advisory Board for Post-Graduate Diploma in Internal Audit and Management Control Systems by Department of Commerce, Delhi School of Economics, Delhi University (1988) • First in India, book on \"\"Indian Accounting Standards IFRS, US GAAP Comparison\"\" published by LexisNexis Butterworths, U.K., authored in"} +{"qid": "test2007", "pid": "15400336", "query": "authorities involved in formulating accounting standard in india", "answer": "government department", "passage": "\"Indian Accounting Standards\"\nIndian Accounting Standards Indian Accounting Standard (abbreviated as Ind-AS) is the Accounting standard adopted by companies in India and issued under the supervison of Accounting Standards Board (ASB) which was constituted as a body in the year 1977. ASB is a committee under Institute of Chartered Accountants of India (ICAI) which consists of representatives from government department, academicians, other professional bodies viz. ICAI, representatives from ASSOCHAM, CII, FICCI, etc. The Ind AS are named and numbered in the same way as the International Financial Reporting Standards (IFRS). National Advisory Committee on Accounting Standards (NACAS) recommend these standards to the Ministry"} +{"qid": "test2007", "pid": "13827227", "query": "authorities involved in formulating accounting standard in india", "answer": "CII", "passage": "\"N.J. Yasaswy\"\n(ACIIA), Switzerland. Yasaswy annually offered post-Budget analysis sessions. He was nominated to be a member on SEBI Committee on Accounting Standards. Yasaswy was a member of the Board of Governors of the ICFAI University. He authored books on finance and investments. He died on October 8, 2011, of a brain haemorrhage. He was survived by his wife, a son and a daughter and mother. He received the Basu Foundation Award and won Student of the Year from both the Institute of Cost and Works Accountants of India (in 1972) and the Institute of Chartered Accountants of India (in 1973). N.J."} +{"qid": "test2007", "pid": "6805754", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Chartered Accountants of India\"\nyear beginning on or after 1 April 2016. With effect on 1 April 2017, all listed companies and unlisted companies having net worth of Rs. 250 crore and above would be required to prepare their financial statements in accordance with the applicable Ind AS. Banks and NBFCs are also required to implement Ind AS on 1 April 2018 onwards based on the criteria of net worth. In order to ensure that these standards are implemented in the same spirit in which these have been formulated, ICAI has been providing guidance to members through its various initiatives such as issuance of"} +{"qid": "test2007", "pid": "8079109", "query": "authorities involved in formulating accounting standard in india", "answer": "ICAI", "passage": "\"Institute of Cost Accountants of India\"\nStandards (CASs). The structure of Cost Accounting Standard consists of Introduction, Objectives of issuing standards, Scope of standard, Definitions and explanations of the terms used in the standard, Principles of Measurement, Assignment of Cost, Presentation and Disclosure. The CASB has primarily identified 39 areas/items on which CASs are to be developed. On visit to India during the month of May, 2010, the then President of IFAC, Mr. Robert Bunting praised the role of ICAI by saying that \"\"In cost accounting standards, perhaps India is the global leader. Its role is limited to select sectors and is closely linked to public"} +{"qid": "test2008", "pid": "3135610", "query": "who plays colin on young and the restless", "answer": "Tristan Rogers", "passage": "\"Tristan Rogers\"\ndaytime television on 8 December 2010 when he joined the cast of \"\"The Young and the Restless\"\" as Colin Atkinson. He was placed on contract with the show in February 2011. However, Rogers' character was written out of the series in October 2011. On 29 March 2012 - only weeks after his short return to \"\"General Hospital\"\" - it was announced that Rogers will bring back Colin to \"\"The Young and the Restless\"\". Rogers starred in the CINE award-winning short \"\"Opportunity Knocks\"\", portraying Death himself. Co-produced by Aaron Wells and Suzanne Niedland, there are plans to develop the short into"} +{"qid": "test2008", "pid": "16206348", "query": "who plays colin on young and the restless", "answer": "Tristan Rogers", "passage": "\"The Young and the Restless characters (2010)\"\nto insinuate himself into Lily's good graces. Blake was revealed to be Colin (Cane's father)'s henchmen. Blake ended up shooting Caleb who he believed was Cane at the time. Colin Atkinson first appeared on December 8, 2010, as the estranged biological father of Cane Ashby, portrayed by Tristan Rogers who previously was well known for his role as Robert Scorpio on \"\"General Hospital\"\". \"\"TV Guide\"\" announced Rogers' casting on October 25, 2010. Prior to his appearance, he was described as \"\"a mysterious and charming stranger named Colin who comes to Genoa City with a dark secret and a threatening agenda\"\"."} +{"qid": "test2008", "pid": "16951505", "query": "who plays colin on young and the restless", "answer": "Tristan Rogers", "passage": "\"Sam Gibson (The Young and the Restless)\"\nled fans to speculate about who Sam \"\"will turn out to be\"\". On September 14, it was announced by various sources that Flanery along with four other cast-mates: Eden Riegel (Heather), Darius McCrary (Malcolm) and Tristan Rogers (Colin), were to leave \"\"The Young and the Restless\"\". \"\"CBS Soaps In Depth\"\" reported that the characters were on the \"\"shopping block\"\" as part of a \"\"true cast shake-up\"\". Sara Bibel of Xfinity said \"\"While I never take pleasure in an actor losing his or her job, these characters are not essential to the show.\"\" \"\"TV Guide Canada\"\"s Amber Dowling reported that all"} +{"qid": "test2008", "pid": "3135605", "query": "who plays colin on young and the restless", "answer": "Tristan Rogers", "passage": "\"Tristan Rogers\"\nTristan Rogers Tristan Rogers (born 3 June 1946) is an Australian-American actor. He is best known for playing Robert Scorpio on the ABC soap opera \"\"General Hospital\"\" and for voicing Jake in Walt Disney Pictures' \"\"The Rescuers Down Under\"\". He is currently starring as Colin Atkinson on the CBS soap opera \"\"The Young and the Restless\"\". Rogers was born in Melbourne. His early acting roles were on Australian television and he completed short stints in soap operas \"\"Bellbird\"\", \"\"Number 96\"\" (in 1974) and \"\"The Box\"\" (in 1975). He was a regular in the police drama series \"\"The Link Men\"\" (1970)"} +{"qid": "test2008", "pid": "3135612", "query": "who plays colin on young and the restless", "answer": "Tristan Rogers", "passage": "\"Tristan Rogers\"\n(August, 1996). He was formerly married to Barbara Meale from 7 June 1974 until 1984 when they divorced. Tristan Rogers Tristan Rogers (born 3 June 1946) is an Australian-American actor. He is best known for playing Robert Scorpio on the ABC soap opera \"\"General Hospital\"\" and for voicing Jake in Walt Disney Pictures' \"\"The Rescuers Down Under\"\". He is currently starring as Colin Atkinson on the CBS soap opera \"\"The Young and the Restless\"\". Rogers was born in Melbourne. His early acting roles were on Australian television and he completed short stints in soap operas \"\"Bellbird\"\", \"\"Number 96\"\" (in 1974)"} +{"qid": "test2009", "pid": "1499945", "query": "where is the deepest lake in the us located", "answer": "Oregon", "passage": "\"Crater Lake National Park\"\nCrater Lake National Park Crater Lake National Park is an American national park located in southern Oregon. Established in 1902, Crater Lake is the fifth-oldest national park in the United States and the only national park in Oregon. The park encompasses the caldera of Crater Lake, a remnant of a destroyed volcano, Mount Mazama, and the surrounding hills and forests. The lake is deep at its deepest point, which makes it the deepest lake in the United States, the second-deepest in North America and the ninth-deepest in the world. Crater Lake is often referred to as the seventh-deepest lake in"} +{"qid": "test201", "pid": "19992817", "query": "who sings the song it ain't me", "answer": "Selena Gomez", "passage": "\"It Ain't Me\"\nand \"\"We Don't Talk Anymore\"\". A music video, directed by Philip R. Lopez, was released on 24 April 2017 on Kygo's official Vevo channel. The video revolves around a couple involved in a motorcycle accident. The boyfriend is rendered comatose. The video depicts the boyfriend's unconscious state, with the girlfriend dancing and singing by his bedside at the hospital. The song is featured in tenth episode of the television series \"\"The Bold Type\"\". Credits adapted from Qobuz. It Ain't Me \"\"It Ain't Me\"\" is a song by Norwegian DJ Kygo and American singer Selena Gomez. It was released by Interscope"} +{"qid": "test2010", "pid": "19876814", "query": "when does the 2017 college football season end", "answer": "December 9, 2017", "passage": "\"2017 NCAA Division I FBS football season\"\nthe season that did not take effect until the end of the season. The Heisman Trophy is given to the year's most outstanding player. Quarterback Running back Wide receiver Tight end Lineman Defensive line Defensive back 2017 NCAA Division I FBS football season The 2017 NCAA Division I FBS football season was the highest level of college football competition in the United States organized by the National Collegiate Athletic Association (NCAA). The regular season began on August 26, 2017 and ended on December 9, 2017. The Alabama Crimson Tide and Georgia Bulldogs played in the 2018 College Football Playoff National"} +{"qid": "test2010", "pid": "19876806", "query": "when does the 2017 college football season end", "answer": "December 9, 2017", "passage": "\"2017 NCAA Division I FBS football season\"\n2017 NCAA Division I FBS football season The 2017 NCAA Division I FBS football season was the highest level of college football competition in the United States organized by the National Collegiate Athletic Association (NCAA). The regular season began on August 26, 2017 and ended on December 9, 2017. The Alabama Crimson Tide and Georgia Bulldogs played in the 2018 College Football Playoff National Championship. Alabama defeated Georgia in overtime by a score of 26–23 on a game-winning touchdown pass from Tua Tagovailoa to Devonta Smith. Alabama claimed its 17th national title in school history, the most of any current"} +{"qid": "test2011", "pid": "11021289", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"2005 Houston Astros season\"\nand the first 1-0 game in any Series game since Game 5 of the 1996 World Series when the New York Yankees shut out the Braves in the last game ever played at Atlanta–Fulton County Stadium. 2005 World Series (4-0): Chicago White Sox (A.L.) over Houston Astros (N.L.) 2005 Houston Astros season The Houston Astros' 2005 season was a season in which the Houston Astros qualified for the postseason for the second consecutive season. The Astros overcame a sluggish 15–30 start to claim the wild card playoff spot, and would go on to win the National League pennant to advance"} +{"qid": "test2011", "pid": "2907501", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"Nellie Fox\"\nscored the only run when Sherm Lollar hit into a double play in the fourth inning (this was only the second time that a World Series game did not have an RBI). It was Fox's only postseason experience, and the White Sox did not make it back to the World Series until they swept the 2005 World Series from the Houston Astros. Fox played his final two seasons (1964–65) with the Houston Colt .45s and Astros. Joe Morgan later said that he looked up to Fox's example as a rookie with the Astros; Fox and Morgan were both diminutive second"} +{"qid": "test2011", "pid": "20401143", "query": "when was the last time astros was in the world series", "answer": "2017", "passage": "\"2018 Los Angeles Dodgers season\"\nColorado and the most ever at Dodger Stadium. The Houston Astros came to town next, for a rematch of the two teams that played in the 2017 World Series. Justin Verlander struck out 14 batters in 7 innings while only allowing four hits as the Astros took the opener 2–1. The Astros scored four times in the sixth and seven times in the eighth to route the Dodgers 14–0 in the following game. RBI doubles by Bellinger and Dozier helped the Dodgers salvage the last game of the series, 3–2. The Dodgers traveled to Oakland Coliseum to play the Oakland"} +{"qid": "test2011", "pid": "5748404", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"Mike Lamb\"\ngame for the Yankees, the Houston Astros acquired Lamb from the Yankees for minor leaguer Juan DeLeon on March 25, 2004. In , he saw more playing time due to regular first baseman Jeff Bagwell's injury. In 2005, he batted .233 with 10 home runs and 50 RBI, with 1 stolen base. He participated in the 2005 World Series where he hit the first World Series home run in Astros history, becoming only the second player whose last name is a type of animal to homer in the World Series (the first was Tim Salmon in 2002). On December 14,"} +{"qid": "test2011", "pid": "4169751", "query": "when was the last time astros was in the world series", "answer": "2017", "passage": "\"1982 World Series\"\nThat has happened three times before, taking the 19th Century contests into account: The Brooklyn Dodgers of 1889 and 1890, the Cardinals, who won the 1886 Series when they were in the American Association, and the Houston Astros, who played in both the 2005 World Series against the Chicago White Sox as a National League team, and the 2017 World Series against the Los Angeles Dodgers as an American League team. This also makes this one of two World Series in the modern era (1903–present) that it is not possible to have a rematch, the other being the Astros and"} +{"qid": "test2011", "pid": "20012298", "query": "when was the last time astros was in the world series", "answer": "2017", "passage": "\"2017 National League Championship Series\"\nto win the NL pennant for the first time in 29 years, their last one in 1988. This was the first time in history that the NLCS and ALCS teams were from the four most populous U.S. cities: New York, Los Angeles, Chicago, and Houston. For the first time, Major League Baseball sold presenting sponsorships to all of its postseason series; this NLCS was sponsored by Camping World and was officially known as the \"\"National League Championship Series presented by Camping World\"\". The Dodgers would go on to lose to the Houston Astros in the World Series in seven games."} +{"qid": "test2011", "pid": "11021270", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"2005 Houston Astros season\"\n2005 Houston Astros season The Houston Astros' 2005 season was a season in which the Houston Astros qualified for the postseason for the second consecutive season. The Astros overcame a sluggish 15–30 start to claim the wild card playoff spot, and would go on to win the National League pennant to advance to the World Series for the first time in franchise history. It was longtime Astros first baseman Jeff Bagwell's final season and first World Series appearance. In February, 2005, longtime Astros players Jeff Bagwell and Craig Biggio were jointly inducted into the Texas Sports Hall of Fame. After"} +{"qid": "test2011", "pid": "4169665", "query": "when was the last time astros was in the world series", "answer": "2017", "passage": "\"1989 World Series\"\nHRs hit by a single team (5) in a World Series game (the New York Yankees won Game 4 of the 1928 World Series against the St. Louis Cardinals, which like this series, would end in a sweep). This record for combined HRs in a World Series game would endure until Game 2 in 2017, in which the Astros and Dodgers combined for 8 HRs. At the time, October 28 was the latest end date ever for a World Series, even though the series only lasted the minimum four games. (The 1981 Series, which went six games, had also ended"} +{"qid": "test2011", "pid": "10180945", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"History of the Houston Astros\"\nup with the tying and winning runs on base; however Jesse Orosco would strike him out, ending the game. This 16-inning game held the record for the longest in MLB postseason history until October 9, 2005 when the Astros defeated the Atlanta Braves 7–6 in an 18-inning Division Series game. However, the 1986 game still holds the record for longest League Championship Series game. Also, Game 3 of the 2005 World Series would tie the record for longest World Series game at 14 innings, meaning that the Astros, despite having been to only 2 LCS and 1 World Series, have"} +{"qid": "test2011", "pid": "11973648", "query": "when was the last time astros was in the world series", "answer": "2017", "passage": "\"Brent Strom\"\n46–30 with a 3.65 ERA. Since 1992, Strom has moved around a lot, serving as the pitching coach for the Tucson Toros, Houston Astros, the Kansas City Royals, and back to the Houston Astros. He has also served as the minor league pitching coordinator in the Montreal Expos/Washington Nationals organization. He also served as the St. Louis Cardinals minor league pitching instructor. He became the Houston Astros pitching coach before the 2014 season. He served as the pitching coach for the Astros in 2017, when they won the World Series for the first time ever. As of June 2018, Strom"} +{"qid": "test2011", "pid": "10679652", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"2005 Chicago White Sox season\"\nSox 7, Astros 6 This game was the longest game in World Series history time wise, and tied for the longest game in World Series history according to innings. In the first World Series game played in the state of Texas, the hometown Astros got off to a good start. They jumped out to a 4-0 lead through four innings. However, in the fifth, the White Sox put up a five spot to take the lead 5-4 in a 46-pitch inning for Houston's Roy Oswalt. But, the Astros would tie up the score in the bottom of the eighth, and"} +{"qid": "test2011", "pid": "18290636", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"2015 Houston Astros season\"\n2015 Houston Astros season The 2015 Houston Astros season was the 54th season for the Major League Baseball (MLB) franchise in Houston, their 51st as the Astros, third in both the American League (AL) and AL West division, and 16th season at Minute Maid Park. The Astros made the playoffs for the first time since 2005, and the first time since moving to the American League. They defeated the New York Yankees in the Wild Card Game before losing in five games to the eventual World Series champion Kansas City Royals in the Division Series. After a five-year gap in"} +{"qid": "test2011", "pid": "19533481", "query": "when was the last time astros was in the world series", "answer": "2017", "passage": "\"2017 World Series\"\n13 chances with runners in scoring position in the game. Kershaw pitched four scoreless innings of relief in the game, and in the process, he broke Orel Hershiser's Dodgers postseason record with his 33rd strikeout. Morton pitched four innings of relief to earn the win, as Corey Seager grounded out to José Altuve, who threw to Yuli Gurriel to end the game, with the Astros winning their first championship in franchise history, and ending their 56-year drought. Springer won the World Series MVP Award. With the Astros' win, for the first time since 2002, when the Angels beat the Giants"} +{"qid": "test2011", "pid": "11021278", "query": "when was the last time astros was in the world series", "answer": "2005", "passage": "\"2005 Houston Astros season\"\nby Houston and were consistent with how the Astros organization treated the situation all year long, as well as the weather forecasts for that period of time. In the game – the longest World Series game in length of time (five hours and forty-one minutes) and tied for the longest in number of innings (fourteen, tied with Game 2 of the 1916 World Series) – Lance Berkman singled with one out after a Craig Biggio lead-off double in the bottom of the first as the Astros struck early. The White Sox had a rally snuffed in the top of the"} +{"qid": "test2012", "pid": "6106575", "query": "who is the drummer for guns and roses", "answer": "Frank Ferrer", "passage": "\"Guns N' Roses\"\nGuns N' Roses Guns N' Roses, often abbreviated as GNR, is an American hard rock band from Los Angeles, California, formed in 1985. When they signed to Geffen Records in 1986, the band comprised vocalist Axl Rose, lead guitarist Slash, rhythm guitarist Izzy Stradlin, bassist Duff McKagan, and drummer Steven Adler. The current lineup consists of Rose, Slash, McKagan, keyboardist Dizzy Reed, guitarist Richard Fortus, drummer Frank Ferrer and keyboardist Melissa Reese. Guns N' Roses' debut album, \"\"Appetite for Destruction\"\" (1987), reached number one on the \"\"Billboard\"\" 200 a year after its release, on the strength of \"\"Sweet Child o'"} +{"qid": "test2012", "pid": "1775085", "query": "who is the drummer for guns and roses", "answer": "Frank Ferrer", "passage": "\"Bryan Mantia\"\njoined the revamped lineup of Guns N' Roses after being recommended to singer Axl Rose by Buckethead (who himself had joined the band a few months earlier). In 2003, Mantia appeared on several songs on BT's 2003 release \"\"Emotional Technology\"\" as well BT's score for the 2003 film \"\"Monster\"\". Mantia toured several legs of the Chinese Democracy Tour with Guns N' Roses from 2000 until 2006, when he left the band to take care of his newborn child. Frank Ferrer, originally brought in as just a replacement drummer for the tour, eventually replaced Mantia as full time drummer for the"} +{"qid": "test2013", "pid": "16159354", "query": "do you need a permit or license to own a gun in florida", "answer": "No", "passage": "\"Gun laws in New Mexico\"\ncarry that vary from \"\"No-Issue\"\" to \"\"Shall-Issue,\"\" depending on the tribal nation. Some Native American reservations that do allow open or concealed carry (but do not honor the New Mexico Concealed Handgun License) typically have established their own permitting systems, where applications for concealed carry permits are processed and adjudicated by the respective tribal council or tribal police. Permits on such reservations may be available to the general public or limited to tribal members, depending on the tribal nation policies. New Mexico is a \"\"Shall-Issue\"\" state for the concealed carry of handguns, and permits the open carry of loaded firearms"} +{"qid": "test2013", "pid": "163161", "query": "do you need a permit or license to own a gun in florida", "answer": "No", "passage": "\"Overview of gun laws by nation\"\npublic. In November 2007, Finland updated their gun laws to comply with the EU directive by removing the ability of 15- to 18-year-olds to have their own permit, but a possibility to a have dual-license to an already licensed weapon with permission of the license holder remains in that age group. In 2011, a constitutional law committee concluded that people over the age of 20 can receive a permit for semi-automatic handguns; individuals must demonstrate continuous activity in handgun sporting for two years before they can have a license to possess their own handgun. In France, a hunting license or"} +{"qid": "test2013", "pid": "163136", "query": "do you need a permit or license to own a gun in florida", "answer": "No", "passage": "\"Overview of gun laws by nation\"\nhunting and sports (pump-action shotguns, hunting rifles, carbines, combined hunting firearms), self-defense (handguns, air guns, sprays, electric tranquilizers) or collections. Permits are denied to persons who are mentally ill, drug addicts, alcoholics, and those who have criminal records. In Iceland, a license is required to own or possess firearms. A national government safety course must be passed before applying for a license. A special license is required to own a handgun, which may only be used for target shooting at a licensed range. Semi-automatic firearms have caliber restrictions, while fully automatic firearms are only permitted for collectors. Firearms in Norway"} +{"qid": "test2014", "pid": "19876812", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2017 NCAA Division I FBS football season\"\nfulfill all open bowl slots, teams with losing records may be chosen to fill all 78 bowl slots. Additionally, on the rare occasion in which a conference champion does not meet eligibility requirements, they are usually still chosen for bowl games via tie-ins for their conference. For the 2017 season, no team with a losing record was chosen for a bowl game. Three bowl-eligible teams, including one with a winning record, were denied bowl bids. \"\"An asterisk (*) indicates the team did not receive a bowl bid.\"\" Total: 81 Total: 49 Since the 2014–15 postseason, six College Football Playoff (CFP)"} +{"qid": "test2014", "pid": "6534366", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"Bowl eligibility\"\nby teams with winning or .500 records; UTSA at 6–5 did not receive a bowl bid, while 15 teams with 6–6 records were selected. The 2018–19 bowl season again filled all slots for 39 bowl games with teams having winning or .500 records. One team with a winning record, Southern Miss at 6–5, did not receive a bowl invitation, while there were 10 teams with 6–6 records selected. The following teams entered bowl games with losing records. Bowl eligibility Bowl eligibility in college football at the NCAA Division I FBS level is the standard through which teams become available for"} +{"qid": "test2014", "pid": "11907592", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2008–09 NCAA football bowl games\"\nseason play and at least 5 wins over FBS teams are eligible only after conferences cannot fill out available positions for bowl games with teams having seven (or more) wins automatically eligible, excluding games played in Hawaii and conference championship games in the ACC, Big 12, Conference USA, MAC and the SEC. After the final regular-season games on December 7, 2008, four conferences — the Pac-10, the SEC, the Big 12, and the Big Ten — did not have enough teams to fill their bowl game allotments. The Pac-10 had seven contracted bowl slots with only five teams eligible. The"} +{"qid": "test2014", "pid": "5722339", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"Poinsettia Bowl\"\n– replacing the at-large team. The 2007 game matched the Utah Utes against the Navy Midshipmen; Utah won, 35–32. Navy made the Poinsettia Bowl as a result of Navy's win over North Texas (74–62), a game that set a new NCAA record for most points scored in a college football game. That year's attendance was 39,129. It was announced, starting with the 2008 season, and continuing through 2009, if the Pac-10 does not have enough bowl-eligible teams to send one to the Poinsettia Bowl (a contractual obligation), the game's organizers reserved the right to select a WAC team to take"} +{"qid": "test2014", "pid": "17509543", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2013–14 NCAA football bowl games\"\nof the championship game, without the team having to seek an NCAA waiver. Ten teams were selected for the Bowl Championship Series: Number of bowl berths available: 70 Number of teams bowl eligible: 79 The easing of the bowl eligibility rules, to include teams with non-losing (6–6) or even losing records, resulted in a record number of teams – 79 versus the 71 or 72 of the past few seasons – being deemed eligible for selection to a 2013–14 bowl game. Nine eligible teams did not receive a bowl invitation, including two with winning records: Western Kentucky (8–4), Toledo (7–5),"} +{"qid": "test2014", "pid": "6534357", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"Bowl eligibility\"\nnon-losing, or .500, record can qualify for bowl games if their conference has a contract with a bowl game. Also, other teams with a minimum non-losing .500 record (i.e., 6–6) could earn bowl bids if all other FBS teams with winning records have been taken and postseason spots still remain vacant. In thirteen-game seasons (used because of conference championship games, or allowable for Hawaii and any of its home opponents in a given season), a team must win seven games. Occasionally, there will be more bowl eligible teams than there are spots in the NCAA football bowl games in the"} +{"qid": "test2014", "pid": "18050079", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2014–15 NCAA football bowl games\"\nbased on win–loss record. However, under FCS-to-FBS transition rules, they were not eligible because enough teams qualified under normal circumstances. ‡ – Idaho was ineligible for postseason play due to an insufficient Academic Progress Rate. However, the Vandals would not have been eligible without the ban, as they finished with a 1–10 record. 2014–15 NCAA football bowl games The 2014–15 NCAA football bowl games were a series of college football bowl games. They completed the 2014 NCAA Division I FBS football season, and included 39 team-competitive games and four all-star games. The games began on December 20, 2014 and, aside"} +{"qid": "test2014", "pid": "6534354", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"Bowl eligibility\"\nBowl eligibility Bowl eligibility in college football at the NCAA Division I FBS level is the standard through which teams become available for selection to participate in postseason bowl games. When a team achieves this state, it is described as \"\"bowl-eligible\"\". For nearly a century, bowl games were the purview of only the very best teams, but a steady proliferation of new bowl games required 70 participating teams by the 2010–11 bowl season, then 80 participating teams by the 2015–16 bowl season. As a result, the NCAA has steadily reduced the criteria for bowl eligibility, allowing teams with a non-winning"} +{"qid": "test2014", "pid": "17509540", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2013–14 NCAA football bowl games\"\nbowls, was announced in May 2013. All bowl game participants were selected by December 8, 2013. Note: All times are EST (UTC−5). Rankings from final BCS poll. * Sun Belt does not meet minimum game requirement of three teams needed for a conference to be eligible. To play in a bowl game, a college football team must qualify to do so according to the NCAA rules of bowl eligibility. As in the 2010, 2011, and 2012 seasons, initial bowl eligibility would go to teams with no lower than a non-losing record (6–6) for the season. On August 2, 2012, the"} +{"qid": "test2014", "pid": "20598807", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2018–19 NCAA football bowl games\"\nBowl. Rankings are per the above CFP standings. Number of bowl berths available and assigned: 78
Number of bowl-eligible teams: 82 As there were more bowl-eligible teams than berths available, four teams that were bowl-eligible did not receive an invitation. Number of bowl-ineligible teams: 48 * Liberty is bowl ineligible until 2019, due to their transition from FCS to FBS. Liberty had six wins and could have requested an NCAA waiver, had there been insufficient bowl-eligible teams. ** Ole Miss, who finished their regular season with a 5–7 record, has a self-imposed two-year bowl ban which applies for the 2017"} +{"qid": "test2014", "pid": "5722759", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2005–06 NCAA football bowl games\"\ninfra includes all conferences with at least one team having played in a bowl game, and is sorted first by winning percentage, then by total games won, and finally alphabetically, by conference name. The conferences with the highest winning percentage received the Bowl Challenge Cup, sponsored by ESPN and Cooper Tires. Conferences must have had a minimum of three bowl teams to be eligible. With Texas' win in the Rose Bowl Game, the Big 12 and the ACC shared the title for 2005–06, in the first instance of a shared title in the promotion's brief history. Had Southern California defeated"} +{"qid": "test2014", "pid": "16633893", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2012–13 NCAA football bowl games\"\nCapital Bank. The NCAA has placed a three-year moratorium, starting with the 2011-12 bowl season, on any new bowl games. This follows the addition of two new games (Pinstripe Bowl, TicketCity Bowl) for the 2010-11 bowl season, bringing the total number of bowl games to 35. The expansion to 70 teams required to fill these 35 bowl games has challenged the ability to actually find enough teams with winning (7-5 or better) records to fill bowl slots. Teams with non-winning (6-6) and losing (6-7) records have participated in bowl games since the expansion to 35 games. As discussed above (\"\"Bowl-eligibility"} +{"qid": "test2014", "pid": "19876811", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2017 NCAA Division I FBS football season\"\ngames for football. The Big 12 reinstated its championship game for the 2017 season, while the Sun Belt determined its 2017 football champion solely by regular-season records before launching a championship game starting in 2018. Rankings reflect the Week 14 AP Poll before the conference championship games were played. College Football Playoff participant There were 39 post-season bowl games, with two teams advancing to a 40th – the CFP National Championship game. Normally, a team is required to have a .500 minimum winning percentage during the regular season to become bowl eligible. If there are not enough winning teams to"} +{"qid": "test2014", "pid": "17509542", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2013–14 NCAA football bowl games\"\ncarry extra importance starting in the 2014–15 bowl season, when the number of bowl games will increase to 39—requiring 78 eligible teams. If a bowl has one or more conferences/teams unable to meet their contractual commitments and there are no available bowl-eligible teams, the open spots can be filled – by the particular bowl's sponsoring agencies – as follows: Under a rule change approved by the NCAA Legislative Council on May 3, 2013, teams that enter a conference championship game with a 6–6 record, with no more than one win over an FCS school, are bowl-eligible regardless of the result"} +{"qid": "test2014", "pid": "19381492", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2016–17 NCAA football bowl games\"\nplaying against each other. Rankings are per the above CFP standings. Number of bowl berths available: 80 Number of bowl-eligible teams: 76 Number of conditional bowl-eligible teams: 2 (Hawaii, South Alabama) Number of teams qualified by APR: 2 (North Texas, Mississippi State) Number of bowl-ineligible teams: 48 Note: Being bowl-ineligible does not, in itself, exclude a team from the chance to play in a bowl game. Tiebreaker procedures based on a school's Academic Progress Rate (APR) allowed for the possibility of 5–7 teams to play in bowl games since not enough teams qualified to fill all 80 spots with at"} +{"qid": "test2014", "pid": "19219539", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2016 NCAA Division I FBS football season\"\nbowl games, with two teams advancing to a 41st – the CFP National Championship game. As in previous seasons, teams with losing records could become bowl eligible in order to fill all 80 slots. Total : 80 Total : 48 Note: Teams with Asterisk(*) qualified for bowls based on Academic Progress Rate, despite not having a bowl eligible record. Since the 2014–15 postseason, six College Football Playoff (CFP) bowl games have hosted two semifinal playoff games on a rotating basis. For the 2016 season, the Fiesta Bowl and the Peach Bowl hosted the semifinal games, with the winners advancing to"} +{"qid": "test2014", "pid": "14151374", "query": "how many games does a football team have to win to be bowl eligible", "answer": "5", "passage": "\"2010–11 NCAA football bowl games\"\nthe Big 12 and Alabama and Florida from the SEC. With each conference sending two teams to the BCS, these three conferences forfeited several bowl game slots due to a lack of teams with a winning record. This change in policy ultimately led to Temple—a team that went 8–4 in the regular season, including a win over Big East BCS representative UConn—going uninvited. On June 10, Southern California was declared ineligible for two years as a result of the eligibility of Reggie Bush from 2003 through 2005. While the program is appealing their 2011–12 eligibility, they have decided to accept"} +{"qid": "test2015", "pid": "11324348", "query": "what is the name of the protease which is released in the stomach", "answer": "Pepsin", "passage": "\"Cathepsin E\"\nThe protein is an aspartyl protease that functions as a disulfide-linked homodimer, and has an oligosaccharide chain of the high-mannose type. It is a member of the peptidase A1 family, and therefore observes specificity similar to that of Pepsin A and Cathepsin D. Cathepsin E is an intracellular enzyme and does not appear to be involved in dietary protein digestion. It is found at highest abundance on the stomach’s epithelial mucus producing cell surfaces. It is the first aspartic protease present in the fetal stomach and is found in more than half of gastric cancers, leading to it appearing to"} +{"qid": "test2015", "pid": "1452443", "query": "what is the name of the protease which is released in the stomach", "answer": "Pepsin", "passage": "Pepsin\nin its active site. It is one of three principal proteases in the human digestive system, the other two being chymotrypsin and trypsin. During the process of digestion, these enzymes, each of which is specialized in severing links between particular types of amino acids, collaborate to break down dietary proteins into their components, i.e., peptides and amino acids, which can be readily absorbed by the small intestine. Pepsin is most efficient in cleaving peptide bonds between hydrophobic and preferably aromatic amino acids such as phenylalanine, tryptophan, and tyrosine. Pepsin's proenzyme, pepsinogen, is released by the chief cells in the stomach"} +{"qid": "test2015", "pid": "1452442", "query": "what is the name of the protease which is released in the stomach", "answer": "Pepsin", "passage": "Pepsin\nPepsin Pepsin is an endopeptidase that breaks down proteins into smaller peptides (that is, a protease). It is produced in the stomach and is one of the main digestive enzymes in the digestive systems of humans and many other animals, where it helps digest the proteins in food. Pepsin has a three-dimensional structure, of which one or more polypeptide chains twist and fold, bringing together a small number of amino acids to form the active site, or the location on the enzyme where the substrate binds and the reaction takes place. Pepsin is an aspartic protease, using a catalytic aspartate"} +{"qid": "test2015", "pid": "12101882", "query": "what is the name of the protease which is released in the stomach", "answer": "Pepsin", "passage": "\"Foveolar cell\"\namounts of rough endoplasmic reticulum. Mucous neck cells are located within gastric glands, interspersed between parietal cells. These are shorter than their surface counterpart and contain lesser quantities of mucin granules in their apical surface. The mucus produced by these cells is extremely important, as it prevents the stomach digesting itself. Parietal cells produce potent hydrochloric acid, which damages cells. Gastric chief cells produce pepsinogen, which is activated by the acid to form pepsin. Pepsin is a protease that can digest and damage stomach cells. To prevent these disastrous effects, mucus and bicarbonate ions (HCO) are secreted by the foveolar"} +{"qid": "test2016", "pid": "20177860", "query": "who holds the record for most everest summits", "answer": "Kami Rita", "passage": "\"Kami Rita Sherpa\"\nKami Rita Sherpa Kami Rita Sherpa born 1970 is a Nepali Sherpa guide who achieved the record for most ascents to the summit of Mount Everest after reaching it for a 22nd time in May 2018 at the age of 48. His father was one of the first professional Sherpa guides. In 2017, Kami was the third person to ascend to the summit of Everest 21 times along with Apa Sherpa and Phurba Tashi Sherpa. In May 2018, Kami Sherpa became the first person in the world to climb Mount Everest 22 times. He holds the record of the most"} +{"qid": "test2016", "pid": "525503", "query": "who holds the record for most everest summits", "answer": "Kami Rita", "passage": "\"Mount Everest\"\nsummit in 2012. Also, a climber from Macedonia is reported to have died on the mountain. By May 19, 2018, the Kathmandu Times reports that at least 277 climbers had summited Mount Everest. Among those that summited this year was a team led by Adrian Ballinger, including Neal Beidleman who survived the 1996 Mount Everest disaster and returned to summit this season. Record-breaking woman summiter Lhakpa Sherpa summited Mount Everest again, making 2018 her 9th summit of Mount Everest, meanwhile Kami Rita Sherpa attained his 22nd summit in 2018, overtaking the previous maximum of 21 set by Apa Sherpa. The"} +{"qid": "test2016", "pid": "13876666", "query": "who holds the record for most everest summits", "answer": "Phurba Tashi Sherpa", "passage": "\"Phurba Tashi\"\nPhurba Tashi Phurba Tashi Sherpa Mendewa (, 1971) is a Nepalese Sherpa mountaineer known for his numerous ascents of major Himalayan peaks. He holds the record for the most total ascents of eight-thousanders, with 30. These include twenty-one ascents of Mount Everest, five on Cho Oyu, two on Manaslu, and one each on Shishapangma and Lhotse. In 2009 Tashi was featured in the Discovery Channel series \"\"\"\". He is the central figure in the 2015 documentary \"\"Sherpa\"\" which recounts events surrounding the 2014 Mount Everest ice avalanche, after which Tashi retired. He reached the summit of Everest 21 times, including"} +{"qid": "test2016", "pid": "7846861", "query": "who holds the record for most everest summits", "answer": "Apa Sherpa", "passage": "\"Apa Sherpa\"\nApa Sherpa Apa (born Lhakpa Tenzing Sherpa; 20 January 1960), nicknamed \"\"Super Sherpa\"\", is a Nepalese Sherpa mountaineer who, jointly with Phurba Tashionce held the record for reaching the summit of Mount Everest more times than any other person. As part of The Eco Everest Expedition 2011, Apa made his 21st Mount Everest summit in May 2011 then retired after a promise to his wife to stop climbing after 21 ascents. He first summited Everest in 1990 and his last time to the summit was in 2011. Apa met Edmund Hillary many times, and was on the Expedition with his"} +{"qid": "test2016", "pid": "7846869", "query": "who holds the record for most everest summits", "answer": "Apa Sherpa", "passage": "\"Apa Sherpa\"\ngroup found mountain communities that rely on subsistence farming were suffering the effects of climate change. Apa Sherpa Apa (born Lhakpa Tenzing Sherpa; 20 January 1960), nicknamed \"\"Super Sherpa\"\", is a Nepalese Sherpa mountaineer who, jointly with Phurba Tashionce held the record for reaching the summit of Mount Everest more times than any other person. As part of The Eco Everest Expedition 2011, Apa made his 21st Mount Everest summit in May 2011 then retired after a promise to his wife to stop climbing after 21 ascents. He first summited Everest in 1990 and his last time to the summit"} +{"qid": "test2016", "pid": "1739928", "query": "who holds the record for most everest summits", "answer": "Apa Sherpa", "passage": "\"Sherpa people\"\ncamp the fastest. On 23 May 2003, Dorje reached the summit in 12 hours and 46 minutes. Three days later, Golu beat his record by two hours, reaching the summit in 10 hours 46 minutes. On 21 May 2004, Dorje again improved the time by more than two hours with a total time of 8 hours and 10 minutes. On 11 May 2011, Apa Sherpa successfully reached the summit of Everest for the twenty-first time, breaking his own record for the most successful ascents. He first climbed Mount Everest in 1989 at the age of 29. One of the most"} +{"qid": "test2016", "pid": "7847395", "query": "who holds the record for most everest summits", "answer": "Apa Sherpa", "passage": "\"Thame, Nepal\"\nThame, Nepal Thame and its neighbouring Thameteng (upper Thame) are small Sherpa villages in Namche VDC of the Solukhumbu District in Nepal. These were the last year-round villages on the salt trading route that existed between Tibet, Nepal and India. It is the home to many famous Sherpa mountaineers, including Apa Sherpa, who holds the world record for summiting Everest 21 times. It was also a childhood home of Tenzing Norgay, who was (with Sir Edmund Hillary) one of the first men to climb Mt Everest. It is also where the famous Lama Zopa Rinpoche, the Lawudo Lama, head of"} +{"qid": "test2016", "pid": "20171018", "query": "who holds the record for most everest summits", "answer": "Apa Sherpa", "passage": "\"Mount Everest in 2013\"\nSudarshan Gautam, who was descending the mountain after becoming the first person without arms to summit Everest without using prosthetics. Gautam was rescued after collapsing near Camp 3. On 21 May 2013 a team from Lawrence School Sanawar climbed Mt. Everest. The first school to do this globally. On 21 May, Arunima Sinha became the first female amputee to summit Everest. Phurba Tashi completed his 21st summit in May, a total equal to the record held by Apa Sherpa. On 27 April, three climbers were attacked by a group of 100 Sherpas at 21,000 feet elevation. The event was seen"} +{"qid": "test2019", "pid": "4396456", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Cosmic ray visual phenomena\"\nastronauts, not all astronauts have experienced them on their space missions, even if they have gone on multiple missions. For those who did report seeing these LF, how often they saw them varied across reports. On the Apollo 15 mission all three astronauts recorded the same LF, which James Irwin described as \"\"a brilliant streak across the retina\"\". On Lunar missions, once their eyes became adapted to the dark, Apollo astronauts reported seeing this phenomenon once every 2.9 minutes on average. On other space missions, astronauts reported perceiving the LF once every 6.8 minutes on average. The LF were reported"} +{"qid": "test2019", "pid": "15185797", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Canadian Astronaut Corps\"\nexploration is the robotic arm on the US space shuttles, the Canadarm. As of December 2013, there are 4 active astronauts in the Canadian corps (Jeremy Hansen, David Saint-Jacques, Joshua Kutryk and Jennifer Sidey-Gibbons) and 9 former astronauts who have gone into space. Of the 11 current and former Canadian astronauts who have gone into space, 2 are women: Julie Payette and Roberta Bondar. The CSA generally recruits astronauts who have degrees as scientists, engineers and/or medical doctors. In addition to being Canadian citizens or residents, candidates must meet certain physical standards (including height, weight, hearing and visual acuity) as"} +{"qid": "test2019", "pid": "13961910", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Purdue University School of Aeronautics and Astronautics\"\nSchreder HP-14 glider. Purdue aerospace has had a long tradition of excellence. Many of its graduates have gone on to become astronauts or other prominent members of the aerospace and defense industry. Purdue University has graduated 23 astronauts, more than any other public institution, and 13 of those hold degrees from the aerospace department. The only non-military institution to graduate more astronauts is the Massachusetts Institute of Technology. One-third of all of NASA's manned space flights have had at least one Purdue graduate aboard, and two of the six American astronauts to fly on the Russian space station Mir held"} +{"qid": "test2019", "pid": "2983428", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Leroy Chiao\"\nand conduct 5 days of webcasts and other instructional activities spanning the period of 16–20 July 2007. This activity was in collaboration with the Mars Institute, the Challenger Center for Space Science Education, The Explorers Club and SpaceRef Interactive, Inc. He conducted these webcasts from the Haughton-Mars Project Research Station and nearby locations to illustrate how NASA and other space agencies are learning to live on the Moon and Mars here on Earth. Chiao appeared in an episode of MANswers in 2008 explaining how to neutralize an astronaut in space who has gone berserk. In May 2009 Chiao wrote a"} +{"qid": "test2019", "pid": "20162748", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "Argotec\nto transfer heat in a passive way. It is a well-known technology in a scientific field, but at the moment there are not many producers in Europe and Italy limits itself to buying European products. From the know-how developed through the activities for Space, Argotec has diversified its work and it started research activities and the production of the space food for astronauts. In 2010 the company developed independently a new research area for the study of nutritional food dedicated to the astronauts, the Space Food Lab. Argotec Chef, food technologists and nutritionists have studied and produced the bonus food"} +{"qid": "test2019", "pid": "9187", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "Astronaut\nbeen reported in nearly two-thirds of space explorers after long periods spent aboard the International Space Station (ISS). On November 2, 2017, scientists reported that significant changes in the position and structure of the brain have been found in astronauts who have taken trips in space, based on MRI studies. Astronauts who took longer space trips were associated with greater brain changes. Being in space can be physiologically deconditioning on the body. It can affect the otolith organs and adaptive capabilities of the central nervous system. Zero gravity and cosmic rays can cause many implications for astronauts. In October 2018,"} +{"qid": "test2019", "pid": "4744178", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Effect of spaceflight on the human body\"\nMRI studies. Astronauts who took longer space trips were associated with greater brain changes. In October 2018, NASA-funded researchers found that lengthy journeys into outer space, including travel to the planet Mars, may substantially damage the gastrointestinal tissues of astronauts. The studies support earlier work that found such journeys could significantly damage the brains of astronauts, and age them prematurely. Space medicine is a developing medical practice that studies the health of astronauts living in outer space. The main purpose of this academic pursuit is to discover how well and for how long people can survive the extreme conditions in"} +{"qid": "test2019", "pid": "4482210", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Udupi Ramachandra Rao\"\nAgenda 21 - Caring for the Planet Earth\"\" and \"\"Space Technology for Sustainable Development\"\". Rao was an elected Fellow of many academies such as Indian Academy of Sciences, Indian National Science Academy, National Academy of Sciences, Institute of Electronics and Telecommunications Engineers, International Academy of Astronautics and Third World Academy of Sciences. Rao was conferred Fellowship of the World Academy of Arts & Sciences. He was the General President of the Indian Science Congress Association for 1995-96. Rao was the Vice President of International Astronautical Federation (IAF) during 1984 to 1992 and continues to be the Chairman of the Committee"} +{"qid": "test2019", "pid": "16121538", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Space nursing\"\nSpace nursing Space nursing is the nursing speciality that studies how space travel impacts human response patterns. Similar to space medicine, the speciality also contributes to knowledge about nursing care of earthbound patients. Since the beginning of commercial aviation in the 1920s, nurses have been part of aviation and flight. In 1958, President Eisenhower signed the National Aeronautics and Space Act to form NASA. Part of this act was to recruit nurses to work closely with medical teams to determine the fitness of astronauts for space exploration. Nurses helped observe the effects of spaceflight on astronauts upon their return from"} +{"qid": "test2019", "pid": "9087936", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Indian Human Spaceflight Programme\"\nThe centre will train the selected astronauts in rescue and recovery operations, operate in zero gravity environment, and monitoring of the radiation environment. In spring 2009 a full-scale mock-up of the crew capsule was built and delivered to Satish Dhawan Space Centre for training of astronauts. India will be short listing 200 Indian Air Force pilots for this purpose. The selection process would begin by the candidates having to complete an ISRO questionnaire, after which they would be subjected to physical and psychological analyses. Only 4 of the 200 applicants will be selected for the first space mission training. While"} +{"qid": "test2019", "pid": "17758726", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Space selfie\"\nThe main purpose of the EVA camera is to take pictures of the subjects related to the missions. There have been many space selfies, some of which use the visor of another astronaut's helmet as the mirror. Early space selfies after the word \"\"selfie\"\" was first used in 2002 without assistance from another astronaut included Donald Pettit and Stephen Robinson. Pettit took one during the Expedition 6 in January 2003. Robinson took his during the repair of the Space Shuttle Discovery on August 3, 2005, as part of the STS-114 mission. Another notable space selfie was taken by Japanese astronaut"} +{"qid": "test2019", "pid": "2358317", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Where no man has gone before\"\nan episode of \"\"Futurama\"\" that dealt with a character's devotion to \"\"Star Trek\"\" is named \"\"Where No Fan Has Gone Before\"\", a level in the videogame \"\"\"\" is called \"\"Starbase: Where No Turtle Has Gone Before\"\". The Italian astronaut Samantha Cristoforetti became the first barista in space on the International Space Station, tweeting \"\"To Boldly Brew...\"\" in May 2015; she wore \"\"\"\" garb for the occasion. The phrase was referred to sarcastically on the retail box of the 1987 computer game \"\"Space Quest: The Sarien Encounter\"\" as \"\"His mission: to scrub dirty decks...to replace burned-out lightbulbs...TO BOLDLY GO WHERE NO"} +{"qid": "test2019", "pid": "1858781", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "Qibla\n2006, Malaysian National Space Agency (Angkasa) sponsored a conference of scientists and religious scholars to address the issue of how the Qiblah should be determined when one is in orbit. The conference concluded that the astronaut should determine the location of the Qiblah \"\"according to [their] capability\"\". There have already been several Muslim astronauts, among them the very first being Prince Sultan bin Salman bin Abdulaziz Al Saud (1985), the latest being the first Muslim woman in space Anousheh Ansari (2006) and the Malaysian angkasawan (astronaut) Sheikh Muszaphar Shukor (2007). Grand Ayatollah Ali al-Sistani has stated that one should face"} +{"qid": "test2019", "pid": "17942823", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Mars habitat\"\n2 deaths. Another infamous space related accident is the Apollo 1 incident, when a pure oxygen atmosphere ignited in the interior of space capsule during tests on the ground, three died. A 1997 study of about 280 space travelers between 1988 and 1995, found that only 3 did not have some sort of medical issue on their spaceflight. A medical risk for a Mars surface mission is how, after several months in zero gravity, they astronauts will handle operations on the surface. On Earth, astronauts must often be carted from the spacecraft and take a long time to recover. See"} +{"qid": "test2019", "pid": "8455723", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"The Astronaut Farmer\"\nEnglish, French, and Spanish. Bonus features include \"\"How to Build a Rocket: The Making of The Astronaut Farmer\"\", a blooper and outtakes reel, and an interview with former astronaut David Scott. The Astronaut Farmer The Astronaut Farmer is a 2006 American drama film directed by Michael Polish, who co-wrote the screenplay with his brother Mark. The story focuses on a Texas rancher who attempts to construct a rocket in his barn and launch himself into outer space. Charles Farmer is a former U.S. Air Force fighter pilot and astronaut-in-training who reluctantly resigned from the space program and was discharged from"} +{"qid": "test2019", "pid": "9183", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "Astronaut\nForce Base. Astronauts is training must learn how to control and fly the Space Shuttle and, it is vital that they are familiar with the International Space Station so they know what they must do when they get there. Mission Specialist Educators, or \"\"Educator Astronauts\"\", were first selected in 2004, and as of 2007, there are three NASA Educator astronauts: Joseph M. Acaba, Richard R. Arnold, and Dorothy Metcalf-Lindenburger. Barbara Morgan, selected as back-up teacher to Christa McAuliffe in 1985, is considered to be the first Educator astronaut by the media, but she trained as a mission specialist. The Educator"} +{"qid": "test2019", "pid": "17942819", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Mars habitat\"\nof ISS, space crew-persons had almost 200 medications available, with separate pill cabinets for Russians and Americans. One of the many concerns for crewed Mars missions is what pills to bring and how the astronauts would respond to them in different conditions. In 1999, NASA's Johnson Space Center published \"\"Medical Aspects of Exploration Missions\"\" as part of the Decadal Survey. On a small mission it might be possible to have one be a medical doctor and another be a paramedic, out of a crew of perhaps 4-6 people, however on a larger mission with 20 people there could also be"} +{"qid": "test2019", "pid": "16858618", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Technologies in 2001: A Space Odyssey\"\nShoes\"\"). Other aspects that contribute to the film's realism are the depiction of the time delay in conversations between the astronauts and Earth due to the extreme distance between the two (which the BBC announcer explains have been edited out of the broadcast), the attention to small details such as the sound of breathing inside the spacesuits, the conflicting spatial orientation of astronauts inside a zero-gravity spaceship, and the enormous size of Jupiter in relation to the spaceship. The general approach to how space travel is engineered is highly accurate; in particular, the design of the ships was based on"} +{"qid": "test2019", "pid": "17200883", "query": "how many indian astronauts have gone to space", "answer": "2", "passage": "\"Praful Bhavsar\"\nvapour in the upper atmosphere from a 100 to 120 km altitude. The primary purpose of this flight was to measure atmospheric winds, temperature, diffusion and turbulence by photographing the trail of the ejected sodium. Bhavsar has held many prestigious positions over the years, including: Scientific Co-ordinator, ISRO (1967–1975); Member-SecretaryINCOSPAR (1970–1981); Chairman – Remote Sensing Area, Space Applications Center (1976–1984); Director, Indian Remote Sensing Satellite Utilization Programme (1981–1986); and Director, Space Applications Center, ISRO (1985–1986). In 1999 Bhavsar was awarded the Aryabhata Award in recognition of his lifetime achievement in the area of Astronautics by the Astronautical Society of India."} +{"qid": "test2020", "pid": "11916326", "query": "where was because i could not stop for death published", "answer": "1890", "passage": "\"Because I could not stop for Death\"\nBecause I could not stop for Death \"\"Because I could not stop for Death\"\" is a lyrical poem by Emily Dickinson first published posthumously in \"\"Poems: Series 1\"\" in 1890. The persona of Dickinson's poem meets personified Death. Death is a gentleman caller who takes a leisurely carriage ride with the speaker to her grave. According to Thomas H. Johnson's variorum edition of 1955 the number of this poem is 712. The poem was published posthumously in 1890 in \"\"Poems: Series 1\"\", a collection of Dickinson's poems assembled and edited by her friends Mabel Loomis Todd and Thomas Wentworth Higginson."} +{"qid": "test2021", "pid": "19468986", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Batman & Spider-Man: New Age Dawning\"\nand allows the two heroes to board his plane so they can assist him. Defeated, Ra's bows out of the plan gracefully but claims that there is no cure for the cancer. Vanessa convinces her husband that she wishes no further violence, and they leave. Talia al Ghul soon gives the cure to Batman, who then gives it to Spider-Man, who passes it on to the Kingpin. Batman & Spider-Man: New Age Dawning Batman & Spider-Man: New Age Dawning is a comic book mini-series, published in 1998. It is a follow-up on the previously published \"\"\"\" from 1995. Ra's al"} +{"qid": "test2021", "pid": "19469030", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Spider-Man and Batman: Disordered Minds\"\nwith a bomb, but Carnage drapes a piece of symbiote over a corpse to fake his death. Batman and Spider-Man uncover the trick, and Batman is subsequently engulfed in Carnage's symbiote tendrils. Carnage proposes to kill Batman, but the Joker threatens to set off a bomb to destroy Gotham, himself and Carnage, rather than see Carnage kill Batman. As Batman battles Carnage, Spider-Man follows the Joker. The Joker defiantly dares Spider-Man to kill him, however, and Spider-Man is unable to stoop to his level, electing instead to apprehend the Joker in classic hero style. Spider-Man and Batman: Disordered Minds Spider-Man"} +{"qid": "test2021", "pid": "7140419", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Spider-Plant Man\"\nup being a Super Hero or she will die but luckily Piper quickly guesses that Batman has trapped her on top of the Tower Bridge and rushes off to save her. Spider-Plant Man swings through London, wondering where Tower Bridge is, while Batman, who couldn't get his Bat-Clio to start, takes the Underground to Tower Bridge. Jane Mary is bound to a flag on Tower Bridge by Batman. Spider-Plant Man and Batman begin to fight, where they are mistaken by a reporter for Fathers 4 Justice activists. Peter fires a spider plant at him, followed by Batman throwing his Batarang"} +{"qid": "test2021", "pid": "6384464", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Kraven's Last Hunt\"\na hero coming out of the grave into a Batman story exploring what would happen if the Joker actually killed Batman. According to DeMatteis, it would effectively turn the Joker \"\"sane.\"\" When DeMatteis pitched the story to DC, however, it was rejected because it happened to be somewhat similar to another Batman story that was in development at the time, \"\"\"\". DeMatteis then reworked the story to use Hugo Strange in place of the Joker, but this, too, was rejected. Finally, DeMatteis pitched the idea again to Marvel, this time with Spider-Man and a new villain he came up specifically"} +{"qid": "test2021", "pid": "7411076", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Black Spider\"\nbankrolled by a man who is secretly involved with narcotics and wants to take out the competition. Despite his professed desire to fight criminals, the Black Spider occasionally allies himself with costumed villains (most notably in the gathering of super-villains in \"\"Detective Comics\"\" #526 and \"\"Batman\"\" #400). Ostensibly, Black Spider's goal in this is to seek revenge against Batman, or at least, this is how he attempted to justify his actions in his own mind. Needham also faced King Faraday and Nightshade in a brief flashback in \"\"Secret Origins\"\" #28. During his war, Needham's wife and son are killed by"} +{"qid": "test2021", "pid": "1941192", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Jim Broadbent\"\nSpeekingleesh in \"\"The Queen of Spain's Beard\"\" in the first series of \"\"The Black Adder\"\" in 1983. He also played the role of Prince Albert in \"\"Blackadder's Christmas Carol\"\", first broadcast in 1988. He joined Rowan Atkinson in his \"\"Spider-Man\"\" spoof \"\"Spider-Plant Man\"\", as a disgruntled \"\"Batman\"\", jealous of Spider-Plant Man's success. Broadbent played the lead role of the TV film \"\"Wide-Eyed and Legless\"\". Based on a true story, the drama tells of Deric Longden's wife, Diana, and her fight against a mysterious wasting illness which turned out to be myalgic encephalomyelitis. It began as a type of flu but"} +{"qid": "test2021", "pid": "19468985", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Batman & Spider-Man: New Age Dawning\"\nBatman & Spider-Man: New Age Dawning Batman & Spider-Man: New Age Dawning is a comic book mini-series, published in 1998. It is a follow-up on the previously published \"\"\"\" from 1995. Ra's al Ghul begins plans for worldwide devastation. He manipulates the Kingpin to his side by infecting the crime lord's wife Vanessa Fisk with cancer and promising him the cure in return for his allegiance. Ra's then orders him to press the button on his machines which would send New York City under the ocean. Ultimately, Spider-Man and Batman interfere and the Kingpin reveals that he knows Ra's' plans"} +{"qid": "test2021", "pid": "7140420", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Spider-Plant Man\"\nand the battle goes on. Batman's sidekick Robin (played by Tony Robinson) arrives, and makes a deal with Batman for 20% of the profits on Batman products and a Robinmobile and starts attacking Piper. Whilst hanging from Tower Bridge, Spider-Plant Man makes a deal with Robin for 25% on all pajama sales and his own cereal brand with real marshmallows, Robin switches sides and attacks Batman. Batman is punched off the tower and lands on the reporter. He then punches a Fathers 4 Justice supporter and hijacks a little kid's scooter and gets away. Spider-Plant Man and Jane-Mary start to"} +{"qid": "test2021", "pid": "5469402", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Rino Romano\"\nRino Romano Rino Romano (born July 1, 1969) is a Canadian voice actor who has voiced Batman in the animated TV series \"\"The Batman\"\", Spider-Man in the animated TV series \"\"Spider-Man Unlimited\"\" and the PlayStation Dreamcast Nintendo 64 and Game Boy Color video game \"\"Spider-Man\"\", Eduardo Rivera in \"\"Extreme Ghostbusters\"\", Luis Sera in \"\"Resident Evil 4\"\", Scorp in the \"\"Skylanders\"\" franchise\"\" and the original Tuxedo Mask in the '90s English dub of the anime series \"\"Sailor Moon\"\". Romano provided voice narration for the PBS series \"\"Curious George\"\", as well as previews on NBC, The WB, and The CW. He is"} +{"qid": "test2021", "pid": "16290758", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"The Amazing Spider-Man (2012 video game)\"\nlevel from a hub, in this case Stan's apartment, before playing a mostly linear level. It was natively designed for the 3DS, and later ported to the Wii. \"\"The Amazing Spider-Man\"\" has an open world/free-roaming concept in this version. The combat system is reminiscent of the Rocksteady Studios-developed Batman game series (\"\"\"\" and \"\"\"\") using a freeflow design and counterattacks. Beenox took a cue from the Batman games, with Dee Brown, the head of Beenox, stating \"\"I played both Batman games and liked them. For me, the Spider-Man character is very different than Batman. You have to approach both in"} +{"qid": "test2021", "pid": "5469403", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Rino Romano\"\ncurrently the narrator for the courtroom reality TV series \"\"Hot Bench\"\", created by Judge Judith Sheindlin, known for \"\"Judge Judy\"\". Rino Romano Rino Romano (born July 1, 1969) is a Canadian voice actor who has voiced Batman in the animated TV series \"\"The Batman\"\", Spider-Man in the animated TV series \"\"Spider-Man Unlimited\"\" and the PlayStation Dreamcast Nintendo 64 and Game Boy Color video game \"\"Spider-Man\"\", Eduardo Rivera in \"\"Extreme Ghostbusters\"\", Luis Sera in \"\"Resident Evil 4\"\", Scorp in the \"\"Skylanders\"\" franchise\"\" and the original Tuxedo Mask in the '90s English dub of the anime series \"\"Sailor Moon\"\". Romano provided voice"} +{"qid": "test2021", "pid": "384837", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "Spider-Man\nof sidekick to the protagonist. The Spider-Man series broke ground by featuring Peter Parker, a high school student from Queens behind Spider-Man's secret identity and with whose \"\"self-obsessions with rejection, inadequacy, and loneliness\"\" young readers could relate. While Spider-Man had all the makings of a sidekick, unlike previous teen heroes such as Bucky and Robin, Spider-Man had no superhero mentor like Captain America and Batman; he thus had to learn for himself that \"\"with great power there must also come great responsibility\"\"—a line included in a text box in the final panel of the first Spider-Man story but later retroactively"} +{"qid": "test2021", "pid": "11508731", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Hungarian comics\"\ntwo stories in each issue. In 1999, after its tenth year, 120th issue the company doubled the magazine's number of pages (from 32 to 76) and price too. Every issue contained three complete Spider-Man stories (\"\"The Amazing Spider-Man\"\", \"\"Peter Parker Spider-Man\"\", \"\"Webspinners Tales of Spider-Man\"\" – all starting out from #1). The stories did not fulfill the Hungarian needs and the price seemed to be too high, resulting in the canceling of the title at the end of the year, along with \"\"Spawn\"\". The price of the bimonthly, not so popular \"\"Superman és Batman\"\" managed to continue until December 2001,"} +{"qid": "test2021", "pid": "7411086", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Black Spider\"\nMask at the time) considered hiring him to assassinate Batman, but decided against it just like he decided against hiring Cheshire and David Cain to assassinate Batman. Black Spider Black Spider is the name of several fictional characters who are DC Comics supervillains. The first two were both primarily the enemies of Batman. The original Black Spider first appeared in \"\"Detective Comics\"\" #463 (September 1976) and was created by Gerry Conway. Eric Needham is a small-time crook who is addicted to heroin. Eric was first sentenced to prison after mugging and nearly killing an elderly woman but, as a minor,"} +{"qid": "test2021", "pid": "19469029", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Spider-Man and Batman: Disordered Minds\"\nSpider-Man and Batman: Disordered Minds Spider-Man and Batman: Disordered Minds is a comic book mini-series, published in 1995. The Joker and Carnage meet when behavioral psychiatrist Cassandra Briar attempts to use the two killers as tests for a chip that will 'lobotomise' their homicidal instincts. The Carnage symbiote neutralizes Kasady's chip after it is implanted, with Kasady pretending that the chip had worked so that he could meet the Joker. After Carnage removes Joker's chip, the two's mutual psychoses lead them into a brief alliance before their differing methods of murder cause a clash. The Joker tries to kill Carnage"} +{"qid": "test2021", "pid": "5053242", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Black Mask (comics)\"\nin Bruce Wayne's bailout of Janus Cosmetics. Although Batman is eventually able to save Fox, Black Mask manages to evade capture. Black Mask remains at large throughout the events of \"\"\"\" and \"\"Zero Hour\"\", and resurfaces shortly thereafter to kill rival mobster \"\"Dirty Dan\"\" Doyle in an ambush shootout. Black Mask is later approached by the Black Spider, who wishes to join the False Face Society. Black Mask demands the young man to \"\"make his bones\"\" first by crashing a masquerade ball being held at Wayne Manor. Batman later learns that the Black Spider is a double agent working for"} +{"qid": "test2021", "pid": "5306793", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Bronze Age of Comic Books\"\nFalcon\"\") or a very popular character with a guest star of the month (\"\"Marvel Team-Up\"\" and \"\"Marvel Two-in-One\"\"). Even DC combined two features in \"\"Superboy and the Legion of Super-Heroes\"\" and had team-up books (\"\"The Brave and the Bold\"\", \"\"DC Comics Presents\"\" and \"\"World's Finest Comics\"\"). Virtually all such books disappeared by the end of the period. Marvel and DC worked out several crossover titles the first of which was \"\"Superman vs. The Amazing Spider-Man\"\". This was followed by a second Superman and Spider-Man, \"\"Batman vs. the Incredible Hulk\"\" and the \"\"X-Men vs The New Teen Titans\"\". Another title, \"\"The"} +{"qid": "test2021", "pid": "7411074", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Black Spider\"\nBlack Spider Black Spider is the name of several fictional characters who are DC Comics supervillains. The first two were both primarily the enemies of Batman. The original Black Spider first appeared in \"\"Detective Comics\"\" #463 (September 1976) and was created by Gerry Conway. Eric Needham is a small-time crook who is addicted to heroin. Eric was first sentenced to prison after mugging and nearly killing an elderly woman but, as a minor, he was out in three years. Over the next two years, Eric married his friend Linda Morrel and they had a son, Michael. Desperate for money to"} +{"qid": "test2021", "pid": "4347071", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "Scalextric\nset also sported many other unique action points and props. It was some time before Scalextric returned to licensing in the 1970s first with \"\"The Amazing Spider-Man\"\" (the 1970s series), which had specially liveried TR7 cars and white track. Then in the 1980s came the original TV series based \"\"Teenage Mutant Ninja Turtles\"\", \"\"Power Rangers\"\", \"\"Knight Rider\"\" and then Tim Burton's \"\"Batman\"\" film. Since then the franchises have grown to include \"\"Batman Begins\"\", \"\"The Simpsons\"\", The \"\"Transformers\"\" movie, \"\"James Bond\"\" 007 films \"\"Quantum of Solace\"\", Skyfall\"\", GoldenEye\"\" and \"\"Spectre\"\", \"\"Starsky and Hutch\"\", \"\"The Italian Job\"\" (models from both the original"} +{"qid": "test2021", "pid": "5947824", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Superheroes in animation\"\nfor violence that plots were incoherent although it still won many fans for its distinctive take on the genre. In the 1980s, the Saturday morning cartoon \"\"Spider-Man and His Amazing Friends\"\" brought together Spider-Man, Iceman, and Firestar. The following decade, \"\"\"\" and \"\"X-Men\"\", aimed at somewhat older audiences, found critical success in mainstream publications. Ken Tucker of \"\"Entertainment Weekly\"\" said of the former, \"\"The animation is first-rate, moving Batman across gray cotton clouds and against a backdrop of teetering Art Deco-style skyscrapers. ... In contrast to both the '60s show or [director] [Tim] Burton's movies, the new Batman features plots"} +{"qid": "test2021", "pid": "4136358", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"John Dykstra\"\nthe special effects of \"\"Batman Forever\"\" and \"\"Batman and Robin\"\". He was also Senior Visual Effects Supervisor for \"\"Stuart Little\"\". Dykstra was Visual Effects Designer on the first two \"\"Spider-Man\"\" films, and was rewarded with an Oscar for Best Visual Effects for his efforts on \"\"Spider-Man 2\"\". He also acted as Visual Effects Designer on \"\"\"\", ensuring the six effects companies involved delivered all the shots required despite the tight schedule. In 1987, Dykstra directed the full-motion video game \"\"Sewer Shark\"\", originally intended for Hasbro's VHS-based NEMO console. When Hasbro abandoned the project, the system's creator Tom Zito acquired the"} +{"qid": "test2021", "pid": "7411083", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Black Spider\"\nthe exiled supervillains in \"\"Salvation Run\"\". Black Spider was a member of the group of assassins known as the Council of Spiders. Black Spider came into conflict with Red Robin and was defeated. Black Spider appears in DC Rebirth, a reboot of the DC Universe. He is one of the many villains that attempts to kill Batman for Two-Face's bounty. This version has two cybernetic claws on his back and utilizes a machine gun. Batman defeats him and cuts these arms off with a chainsaw. His real name is not revealed. One of Bulletman's enemies was named Black Spider. This"} +{"qid": "test2021", "pid": "40153", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "Blackadder\nthe end of \"\"Blackadder Rides Again\"\", the chances of it happening are extremely slim. There were a couple of ideas that had previously floated for the fifth series. \"\"Batadder\"\" was intended to be a parody of \"\"Batman\"\" with Baldrick as the counterpart of Robin (suggested by John Lloyd). This idea eventually came to surface as part of the \"\"Comic Relief\"\" sketch \"\"Spider-Plant Man\"\" in 2005, with Atkinson as the title hero, Robinson as Robin, Jim Broadbent as Batman and Rachel Stevens as Mary Jane. \"\"Star Adder\"\" was to be set in space in the future (suggested by Atkinson), though this"} +{"qid": "test2021", "pid": "14202317", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"The Amazing Spider-Man (2012 film)\"\nin Sony films, Sony product placements abounded, replacing the ubiquitous Apple Computer products often used by other studios. The film's mobile phones, tablets, monitors and laptops all came from other Sony divisions. Other placements included Microsoft's Bing search engine. A teaser trailer was leaked on the Internet and aired at San Diego Comic-Con International in July 2011, attached to the superhero film \"\"\"\". Rob Keyes of Screen Rant felt that \"\"it takes on a noticeably different tone from that of Raimi trilogy of Spider-Man movies, and presents itself in a similar fashion to what Christopher Nolan did with \"\"Batman Begins\"\".\"\""} +{"qid": "test2021", "pid": "2711121", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"British comics\"\nPanini Comics reprint many of Marvel's titles. These include \"\"Ultimate Spider-Man\"\" (originally holding two issues of either \"\"Ultimate Spider-Man\"\" or \"\"Ultimate Marvel Team-Up\"\", now existing as a double feature with \"\"Ultimate X-Men\"\") and also produce a Collector's Edition line of comics, featuring a cardboard cover, three stories and a letters page on the inside back cover. Titles printed include many Marvel comics, including Astonishing Spider-Man, Essential X-Men and Mighty World of Marvel which reprints a variety of Marvel Comics. They also printed one DC comic, \"\"Batman Legends\"\", reprinting various \"\"Batman\"\" adventures (e.g. two parts of a multi-title crossover and an"} +{"qid": "test2021", "pid": "19579990", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Spider-Man (2018 video game)\"\ntechnology. \"\"Silver Lining\"\" adds three new costumes: (based on the concurrently released film), Cyborg Spider-Man, and the Spider-Man armor created by Aaron Aikman, an alternate version of Spider-Man. \"\"Spider-Man\"\" received \"\"generally favorable\"\" reviews according to review aggregator Metacritic. The game received praise for its gameplay, graphics, narrative, and characterization, while being criticized for familiar open-world tropes and lack of innovation. Critics called \"\"Spider-Man\"\" one of the greatest superhero games ever made. Mike Minotti of \"\"VentureBeat\"\" called it \"\"the best Spider-Man game ... and one of the best super hero games ever\"\", while \"\"Game Informer\"\"s Andrew Reiner wrote \"\"Like \"\"Batman: Arkham"} +{"qid": "test2021", "pid": "7140418", "query": "who came out first batman or spider man", "answer": "Batman", "passage": "\"Spider-Plant Man\"\nthat he is the Green Goblin, Doctor Octopus, the Itchy Skull, or The Human Man, but it appears to be Batman. The Caped Crusader tells him that he is really angry that no one cares about him anymore and that everyone only wants spiders nowadays. He no longer has the Batmobile, owning only a dilapidated \"\"Bat-Clio\"\". Even Robin has abandoned him. \"\"Apparently he was only in it for the money.\"\" Piper tries to help Batman but tells him he has much more important things to do. Suddenly Batman tells Piper that he has kidnapped Jane-Mary and demands him to give"} +{"qid": "test2023", "pid": "4009315", "query": "who sang heard it thru the grapevine first", "answer": "the Miracles", "passage": "\"I Heard It Through the Grapevine\"\nwho had their form of telegraph: the human grapevine. Producer Norman Whitfield worked with Strong on the song, adding lyrics to Strong's basic Ray Charles influenced gospel tune and the single chorus line of \"\"I heard it through the grapevine\"\". This was to be the first of a number of successful collaborations between Strong and Whitfield. Producer Norman Whitfield recorded \"\"I Heard It Through the Grapevine\"\" with various Motown artists. The first known recording is with the Miracles on August 6, 1966, though there may also have been a recording with the Isley Brothers, or at least Whitfield intended to"} +{"qid": "test2023", "pid": "4009311", "query": "who sang heard it thru the grapevine first", "answer": "Gladys Knight & the Pips", "passage": "\"I Heard It Through the Grapevine\"\nI Heard It Through the Grapevine \"\"I Heard It Through the Grapevine\"\" is a song written by Norman Whitfield and Barrett Strong for Motown Records in 1966. The first recording of the song to be released was produced by Whitfield for Gladys Knight & the Pips and released as a single in September 1967; it went to number two in the \"\"Billboard\"\" chart. The Miracles recorded the song first and included their version on their 1968 album, \"\"Special Occasion\"\". The Marvin Gaye version was placed on his 1968 album \"\"In the Groove\"\", where it gained the attention of radio disc"} +{"qid": "test2023", "pid": "6686054", "query": "who sang heard it thru the grapevine first", "answer": "Gladys Knight & the Pips", "passage": "\"Grapevine (gossip)\"\nwas the ideal place to get news and information, or in the case of spies and politicians, the ideal place to spread rumors and gossip, leading to the popular phrase 'heard it through the grapevine'.\"\" The term gained a boost in popularity through its use in the Motown song \"\"I Heard It Through the Grapevine\"\", a major hit single for both Marvin Gaye and Gladys Knight & the Pips in the late 1960s. Grapevine communication existed from the American Civil War to the First World War. It was coined this because of its nature of networking and reaching several at"} +{"qid": "test2023", "pid": "6125473", "query": "who sang heard it thru the grapevine first", "answer": "Gladys Knight & the Pips", "passage": "\"I Heard It Through the Grapevine (album)\"\nWhitfield reportedly argued over the sessions of \"\"Grapevine\"\", Whitfield was able to get what he wanted from Gaye, and the duo started a collaboration that lasted into the beginning of 1970. When Whitfield presented \"\"Grapevine\"\" to Berry Gordy, the producer was stunned when Gordy turned it down sensing the song \"\"wasn't a hit\"\" and that \"\"it sucked\"\". Nevertheless, Whitfield released a version of the song by Gladys Knight & the Pips in an attempt to \"\"out-funk Aretha Franklin's \"\"Respect\"\". Gordy eventually agreed to allow \"\"Grapevine\"\" in the album, now titled \"\"In the Groove\"\". But Whitfield was still determined to get"} +{"qid": "test2023", "pid": "4009323", "query": "who sang heard it thru the grapevine first", "answer": "Gladys Knight & the Pips", "passage": "\"I Heard It Through the Grapevine\"\nMotown's best-selling single to that point. The song was later placed on the Gladys Knight & the Pips album \"\"Everybody Needs Love\"\". Whitfield wanted Gordy to release Gaye's \"\"Grapevine\"\" as a single, but Gordy didn't want to release another version after the Pips had already made a hit out of it. In September 1968, Whitfield added \"\"Grapevine\"\" to Gaye's new album \"\"In the Groove\"\". On release \"\"Grapevine\"\" became a radio hit and, according to Gordy himself, \"\"The DJs played it so much off the album that we had to release it as a single\"\". So Gaye's version was released as"} +{"qid": "test2023", "pid": "11703827", "query": "who sang heard it thru the grapevine first", "answer": "Gladys Knight & the Pips", "passage": "\"Everybody Needs Love (album)\"\nEverybody Needs Love (album) Everybody Needs Love is the third album by Gladys Knight & the Pips and their first album for Motown Records' Soul imprint. The LP, chiefly produced by Norman Whitfield, features the singles \"\"Just Walk in My Shoes\"\" (the 1966 group's Motown debut), \"\"Take Me in Your Arms and Love Me\"\", \"\"Everybody Needs Love\"\" and \"\"I Heard It Through the Grapevine\"\". \"\"Everybody Needs Love\"\", which peaked at number 39 on the \"\"Billboard\"\" Hot 100, was Knight & the Pips first major Motown hit, but \"\"Grapevine\"\", which peaked at number 2, was a major success for the group"} +{"qid": "test2026", "pid": "9558968", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nPellerin, a USC graduate who attended every game USC played from 1926 until his death at the 1998 USC-UCLA game at the Rose Bowl (797 straight games over 72 years). Both Beban and Simpson were featured on the cover of the November 20 issue of \"\"Sports Illustrated\"\" magazine. UCLA had still beat the point spread, they were a three point underdog despite being ranked No. 1. With Beban out due to the rib injury, a disheartened UCLA would lose the next week at Larry Csonka led Syracuse 32–14. UCLA would not be invited to any bowl games due to the"} +{"qid": "test2026", "pid": "9558950", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\n1967 UCLA vs. USC football game The 1967 UCLA vs. USC football game was an American college football game played during the 1967 college football season on November 18, 1967. The UCLA Bruins, 7–0–1 and ranked No. 1, with senior quarterback Gary Beban as a Heisman Trophy candidate, played the USC Trojans, 8–1 and ranked No. 4, with junior running back O. J. Simpson also as a Heisman candidate. This game is widely regarded as the signature game in the UCLA–USC rivalry as well as one of the 20th century Games of the Century. The 64 yard run by O."} +{"qid": "test2026", "pid": "9558977", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nLos Angeles sports history, O.J. Simpson's touchdown run ranked #5. The 1965 UCLA defeat of USC in the UCLA–USC rivalry game to get to the Rose Bowl ranked #35. Bob Stiles stop of Bob Apisa on the goal line to defeat Michigan State in the 1966 Rose Bowl ranked #26. 1967 UCLA vs. USC football game The 1967 UCLA vs. USC football game was an American college football game played during the 1967 college football season on November 18, 1967. The UCLA Bruins, 7–0–1 and ranked No. 1, with senior quarterback Gary Beban as a Heisman Trophy candidate, played the"} +{"qid": "test2026", "pid": "9148825", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\nwhich the Rose Bowl does not host a CFP semifinal, the Rose Bowl Game is assured of hosting the first-place teams from the two conferences should they fail to be selected for the CFP semifinals. UCLA was the first Pac-10 team to appear in a BCS bowl, the 1999 Rose Bowl, their last conference championship year. USC has appeared in six BCS bowl games, winning the BCS championship in 2005. With the Rose Bowl stadium being the home field for UCLA, the UCLA–USC rivalry football game has been played there to a sellout crowd during even numbered years since 1982."} +{"qid": "test2026", "pid": "9558960", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nBoth teams played their home games at the Los Angeles Memorial Coliseum until 1982, when UCLA first went outside the city of Los Angeles to play at the Rose Bowl in Pasadena. The 1967 game would be a USC \"\"home\"\" game, which meant that USC fans sat on the North side of the Coliseum, while the UCLA fans sat on the South (press box) side of the Coliseum. Both teams also wore their home uniforms when meeting at the Coliseum, UCLA in Powderkeg blue and USC in Cardinal. The American Broadcasting Company began showing College football on television in color"} +{"qid": "test2026", "pid": "18260894", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"Stanford–USC football rivalry\"\ndivision were not scheduled to play each other every year; however, the conference elected to maintain the \"\"historic California rivalries\"\", including both the Stanford–USC rivalry and the Cal-UCLA rivalry. Both teams being ranked entering the game was once a rare occurrence but has become the norm in recent years. There have been 15 games where both Stanford and USC were ranked, with 2 from 1940–1953, 4 from 1968–1972, just 1 from 1973–2008, and 8 since 2009. USC leads the series 61–33–3; they have led since the third game. USC holds the longest win streak in the series, with 12 wins"} +{"qid": "test2026", "pid": "3088875", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"Los Angeles Memorial Coliseum\"\nschool's (and the Rams') 2018 home football schedule, with no interruption. In 1923, Pomona College and USC played in the inaugural game at the Coliseum on October 6, with the Trojans prevailing 23–7. Situated just across the street from Exposition Park, USC agreed to play all its home games at the Coliseum, a circumstance that contributed to the decision to build the arena. From 1928 through 1981, the UCLA Bruins also played home games at the Coliseum. When USC and UCLA played each other, the \"\"home\"\" team (USC in odd-numbered years, UCLA in even), occupied the north sideline and bench,"} +{"qid": "test2026", "pid": "11271180", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1966 Rose Bowl\"\nover USC. In the 1967 USC vs. UCLA football game, a spectacular run by O. J. Simpson gave USC the bid and the national championship. In the 1969 USC–UCLA football game, a battle of undefeated teams, USC again prevailed, 14–12. Kurt Altenberg died in 2005. The team was honored as co-captains at the UCLA vs. Cal game on October 31, 2015, as part of the 50th anniversary celebration. 1966 Rose Bowl The 1966 Rose Bowl, played on January 1, 1966, was the 52nd Rose Bowl Game. The UCLA Bruins of the AAWU (Pac-8) upset the undefeated and top-ranked Michigan State"} +{"qid": "test2026", "pid": "9148840", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\nall-sport record 967–922–10. Men's Women's \"\"Italic sports are inactive due to one or both schools discontinuing the sport\"\" Note: This record includes all games played in active sports, but does not include every inactive sport. Both UCLA and USC send many athletes to the Olympic Games. As of the last games, USC athletes account for 258 medals and UCLA athletes account for 241. A USC Trojan has been a Gold medal winner in every summer Olympics since 1912. As of the 2008 Summer Olympics, UCLA and USC athletes combined account for nearly one fifth of all medals won by the"} +{"qid": "test2026", "pid": "5858631", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"USC Trojans football\"\nbeen possible since 1919, when UCLA began playing football. An \"\"Imperfect Day\"\" is when either UCLA or Notre Dame have failed to lose. USC plays the University of Notre Dame each year, with the winner keeping the Jeweled Shillelagh. The inter-sectional game has featured more national championship teams, Heisman trophy winners, All-Americans, and future NFL hall-of-famers than any other collegiate match-up. The two schools have played the game annually since 1926 (except for years 1943–45 when World War II travel restrictions kept the game from being played). Unlike most rivalry games, the game enjoys neither the possibility of acquiring regional"} +{"qid": "test2026", "pid": "10790140", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"2007 UCLA Bruins football team\"\nBut the game was won by the UCLA defense. Turnovers set up first-half field goals for UCLA, and the Ducks could not move the ball at all. With the win, UCLA became bowl-eligible. The USC Trojans beat the Bruins, avenging last year's game where the Bruins upset the Trojans, knocking USC out of the BCS Championship Game. USC was in control of the entire game in this year's contest. UCLA's only score of the day came in the final seconds of the first half, when WR Dominique Johnson made an incredible one-handed leaping grab of a fade pass from Pat"} +{"qid": "test2026", "pid": "9148812", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\n10–5–1 record against the Bruins between 1960 and 1975. For most seasons from the mid-1960s to the end of the 1970s, the two schools were the top powers on the West Coast with USC usually holding the top spot. In the 15 Rose Bowls played from 1966 to 1980, USC or UCLA played in 12 of them. Even with the rise of Don James' Washington Huskies in the 1980s and early 90s, UCLA or USC still went to the Rose Bowl seven times between 1981 and 1995. In the 1990s, UCLA enjoyed an eight-game winning streak against USC. The Bruins'"} +{"qid": "test2026", "pid": "9148827", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\nUSC wins vacated due to NCAA penalty for violation of NCAA rules). There has been one overtime game in the series in 1996. Many of the games of this rivalry have ultimately determined the Pac-10 Rose Bowl representative and often a chance to play for the national championship. USC was forced to vacate both its wins from the 2004 and 2005 seasons due to NCAA violations. UCLA holds the longest winning streak in the series, as UCLA won eight straight games from 1991 to 1998. USC's longest streak was for seven wins from 1999 to 2005. But the 7 game"} +{"qid": "test2026", "pid": "9148822", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\nan old Southern Pacific railroad locomotive. It was given to the UCLA student body by the UCLA Alumni Association in 1939. It was UCLA's symbol of victory until it was stolen by a USC organization called the Trojan Knights in 1941. After being hidden in various locations for over a year before resurfacing in a USC student magazine (known as the \"\"Wampus\"\"), a prank war between the two universities ensued until 1942, when the student body presidents of the two schools agreed that the bell would be the trophy awarded the winner of the annual UCLA-USC football game. The bell"} +{"qid": "test2026", "pid": "8986648", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"Victory Bell (UCLA–USC)\"\nThere have been seven ties and one overtime game (1996, 2OT) in the history of the series. In the event of a tie, the Victory Bell was retained by the last winner. With the institution of the overtime rule in FBS in 1996, the tie rule became obsolete. From 1929 until 1981, the two teams played in the Los Angeles Memorial Coliseum; the Rose Bowl became UCLA's home field in 1982. Victory Bell (UCLA–USC) The Victory Bell is the trophy that is awarded to the winner of the UCLA–USC football rivalry game. The game is an American college football rivalry"} +{"qid": "test2026", "pid": "16136969", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1966 UCLA Bruins football team\"\nof the 1966 season vs. USC, UCLA was 2–1 in conference games, 8–1 overall and ranked #5 in the country. The Bruins, featuring a \"\"dream backfield\"\" of All-Americans Gary Beban and Mel Farr, lost only one game, at rainy Washington, 16–3, where Huskies' head coach Jim Owens had devoted his entire season to beating Prothro. UCLA had beaten UW the season before, 28–24, with Prothro's trick play, the Z-streak in which a receiver trots towards the sideline like he's going out of the game and then runs a streak pattern unguarded by the inattentive defender. USC was 4–0 in conference"} +{"qid": "test2026", "pid": "9558956", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nthe vote, USC made the voters look really bad as they lost to Notre Dame 51–0. This still stands as the worst defeat in USC Trojan football history. USC entered the Rose Bowl unranked and lost to Purdue, 14–13. Ironically, Beban's ankle had healed and he could have played. UCLA finished fifth in both polls. USC and UCLA began the season ranked seventh and eighth respectively. USC had been ranked #1 for six weeks since beating #5 Texas and later Michigan State. USC notched a 24–7 victory over #5 Notre Dame on October 14, 1967. UCLA opened its season with"} +{"qid": "test2026", "pid": "8233872", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA Bruins football\"\n2011 season brought about continued mediocre performance, although the team's record improved to 6–6 in regular season play. Despite the lackluster overall record, the Bruins won the first Pac-12 South Division title, as crosstown rival USC was ineligible due to NCAA sanctions. A 50–0 shutout loss to USC to end the regular season—UCLA's fifth consecutive loss to the Trojans—prompted speculation that Neuheisel would be fired. Neuheisel was fired as head coach of UCLA on November 28, 2011. He was allowed to coach his final game at the December 2, Pac-12 Conference football Championship game, where the team lost 49–31 to"} +{"qid": "test2026", "pid": "14232373", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 Rose Bowl\"\nrecord ( in Pac-8), ranked in the second ten of the AP Poll and #18 in the UPI coaches poll. They were controversially awarded with the Rose Bowl bid over UCLA, despite the Bruins' #5 ranking, record, and victory over the Trojans. Because of a flaw in the schedule, USC played one more conference game than UCLA and had a 4–1 Pac-8 record to UCLA's . Prior to the UCLA-USC game, it was widely assumed that the winner would go to the Rose Bowl. USC was voted in to the Rose Bowl by the AAWU athletic directors before prior to"} +{"qid": "test2026", "pid": "9558974", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nthe best teams of the 20th century by the Sporting News and college football historian Richard Whittingham. No. 1 ranked USC would be heavily favored over a rebuilding 3–6 UCLA team again in 1968. UCLA took an early lead and trailed only 21–16 midway through the 4th quarter and, led by soph QB Jim Nader, would drive inside the USC 5-yard line. But UCLA was repelled on downs and USC, led by Simpson who would win the Heisman Trophy, scored a clinching touchdown to win 28–16. One week later USC would drop to #2 in the polls after being tied"} +{"qid": "test2026", "pid": "3088927", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"Los Angeles Memorial Coliseum\"\nlist the 1939 game against USC, and only lists attendance for the second game in 1945 for Coliseum attendance records. These are the top three listed UCLA record Coliseum crowds: The largest crowd to attend a USC football game against an opponent other than UCLA or Notre Dame was 96,130 for a November 10, 1951 contest with Stanford University. The largest attendance for a UCLA contest against a school other than USC was 92,962 for the November 1, 1946 game with Saint Mary's College of California. The Los Angeles Rams played the San Francisco 49ers before an NFL record attendance"} +{"qid": "test2026", "pid": "9148814", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\nallowed the Bruins to keep the record for consecutive wins (8) in the rivalry. A number of titles have been applied to the football game such as: \"\"The Los Angeles City Championship\"\", \"\"The Crosstown Showdown\"\", \"\"The Battle of L.A.\"\", or simply the \"\"crosstown rivalry\"\". But none really have gained traction. Most often the game is referred to as the \"\"USC-UCLA (or UCLA-USC) football game\"\" by the media. Fans of a particular team refer to it as the \"\"USC game\"\" or \"\"UCLA game\"\", using the name of the opposing school. At UCLA, the week before the game is known as \"\"Beat"} +{"qid": "test2026", "pid": "9148838", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\ntied with 9 championships apiece. UCLA won the most recent championship in 2014, with USC winning the prior 6 titles dating back to 2008. Due to the low number of schools participating in the sport and the State of California's dominance (no team from outside of California has ever played in the championship match), title game matches between the two teams are relatively common, occurring in 1996, 2009, 2012, and 2012. In title game matches, USC holds a 3–2 advantage. UCLA won 8–7 in 1996, and 9-8 in 2014, while USC won 7–6 in 2009, 7-4 in 2011, and 11-10"} +{"qid": "test2026", "pid": "837484", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"Pac-12 Conference\"\nas the two traditionally dominant programs on the West Coast. Due to the unique geographic nature of the Pac-12 teams, the teams travel in pairs for road basketball games. For example, on Thursday, February 28, 2008, USC played Arizona and UCLA played Arizona State. Two nights later the teams switched and USC played Arizona State and UCLA played Arizona. The teams are paired as follows: USC and UCLA (the L.A. teams), Arizona and Arizona State (the Arizona teams), California and Stanford (the Bay Area teams), Washington and Washington State (the Washington teams), Oregon and Oregon State (the Oregon teams), and"} +{"qid": "test2026", "pid": "9558951", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nJ. Simpson for the winning touchdown is regarded as one of the greatest run plays in college football. In 1965, 6th ranked USC (led by Mike Garrett) met 7th ranked UCLA (led by All-Conference sophomore quarterback Gary Beban), with a berth in the 1966 Rose Bowl on the line. The scoring opened with All-American Tailback Mel Farr running 49 yards for a Bruin touchdown. The extra point was blocked, Despite dominating in the statistics, USC led only 16–6 with less than 4 minutes left in the game (In the first 3 1/2 quarters, USC had penetrated inside the UCLA 25"} +{"qid": "test2026", "pid": "9148837", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"UCLA–USC rivalry\"\ntimes. In women's volleyball, UCLA won the 2011 national Championship. UCLA now has won four and USC has won three NCAA Women's Volleyball Championships in Division I. In addition, USC and UCLA have won three AIAW Women's volleyball championships. In 1981 USC defeated UCLA three games to two in the first NCAA Women's Volleyball Championship game. In 1976 USC defeated UCLA to win the AIAW volleyball championship. The two schools compete in water polo. In men's, UCLA carries a slight lead over USC in the all-time series of 80–76–1. In the NCAA Men's Water Polo Championship, the two school are"} +{"qid": "test2026", "pid": "9558955", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1967 UCLA vs. USC football game\"\nmake up for 1964 when Oregon State (8-2 overall, 4-1 in conference) was voted in ahead of USC (7-3 overall, 4-1 in conference) despite USC's 20-17 upset of #1 Notre Dame in the season's final game; the Oregon State coach at the time was Tommy Prothro, who became UCLA's coach in 1965. In addition, the directors believed Beban could not play for UCLA in the Rose Bowl due to the broken ankle, thereby giving the Big 10 representative (Purdue) a better chance to win. UCLA students protested by blocking the Northbound lanes of I-405 at Wilshire Boulevard. A week after"} +{"qid": "test2026", "pid": "8986641", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"Victory Bell (UCLA–USC)\"\nVictory Bell (UCLA–USC) The Victory Bell is the trophy that is awarded to the winner of the UCLA–USC football rivalry game. The game is an American college football rivalry between the UCLA Bruins and USC Trojans, part of the overall UCLA–USC rivalry. The Victory Bell is a brass bell that originally rang atop a Southern Pacific railroad locomotive. It is currently mounted on a special wheeled carriage. The bell was given to the UCLA student body in 1939 as a gift from the school's alumni association. Initially, the UCLA cheerleaders rang the bell after each Bruin point. However, during the"} +{"qid": "test2026", "pid": "10998528", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"2007 Stanford vs. USC football game\"\nTime and ended at 7:36pm. The game-winning drive featured a 20-yard pass from Tavita Pritchard to future NFL star Richard Sherman on fourth-and-20 from the USC 29. The final score was announced at the Rose Bowl, where USC's two arch-rivals, UCLA and Notre Dame, were playing each other. Irish and Bruins fans cheered in unison and celebrated together briefly. At the same time, at Tiger Stadium, the #1 LSU Tigers were playing the #9 Florida Gators and the fans in the stadium celebrated when the USC score was announced there, too. The Tigers would later come from behind to beat"} +{"qid": "test2026", "pid": "11840159", "query": "where is the ucla usc game being played", "answer": "UCLA", "passage": "\"1981 Astro-Bluebonnet Bowl\"\nline for the third time for Terry Donahue's UCLA Bruins teams against USC. UCLA lost to USC in a 21–20 nailbiter, which put Washington into the 1982 Rose Bowl. Washington had defeated USC just the week before in what would prove to be the other conference deciding game. no scoring The Bluebonnet Bowl was the first of three meetings between the schools in 367 days. They met during the 1982 NCAA Division I-A football season twice: at Michigan Stadium, where UCLA won 31–27, and in the 1983 Rose Bowl, where UCLA earned a 24–14 victory. 1981 Astro-Bluebonnet Bowl The 1981"} +{"qid": "test2027", "pid": "8134269", "query": "when was the electronic funds transfer act signed into law", "answer": "in 1978", "passage": "\"Electronic Fund Transfer Act\"\nElectronic Fund Transfer Act The Electronic Fund Transfer Act was passed by the U.S. Congress in 1978 and signed by President Jimmy Carter, to establish the rights and liabilities of consumers as well as the responsibilities of all participants in electronic funds transfer activities. The act was implemented in Federal Reserve Board Regulation E. The EFT Act recognizes their right to nominate the financial institution to which such payments are to be made. The EFT Act also prohibits a creditor or lender from requiring a consumer to repay a loan or other credit by electronic fund transfer, except when there"} +{"qid": "test2027", "pid": "8134271", "query": "when was the electronic funds transfer act signed into law", "answer": "in 1978", "passage": "\"Electronic Fund Transfer Act\"\ncriteria: EFT is not a perfect system; therefore customers should still be diligent in reviewing their EFT statements for possible errors as they would with any other type of transaction. Should a customer notice that there has been an error in an electronic fund transfer relating to their account certain steps must be taken: Under the Act, the customer must: Under the Act, the financial institution must: Electronic Fund Transfer Act The Electronic Fund Transfer Act was passed by the U.S. Congress in 1978 and signed by President Jimmy Carter, to establish the rights and liabilities of consumers as well"} +{"qid": "test2027", "pid": "20972325", "query": "when was the electronic funds transfer act signed into law", "answer": "in 1978", "passage": "\"Financial privacy laws in the United States\"\nname and address on a bad debt list or reveal any information regarding the debt to unaffiliated third parties except the consumers' partner or attorney. If the collector is attempting to inquire about the whereabouts of the consumer, then they can disclose debt information to only neighbors and coworkers. Collectors are also not allowed disclose fraudulent information to credit reporting agencies in an attempt to collect the debt. The Electronic Funds Transfer Act was passed by congress in 1978 to regulate the then growing use of electronic transfer of funds. The act implemented requirements so that banks have to notify"} +{"qid": "test2027", "pid": "6260080", "query": "when was the electronic funds transfer act signed into law", "answer": "1978", "passage": "\"Electronic funds transfer\"\nElectronic funds transfer Electronic funds transfer (EFT) are electronic transfer of money from one bank account to another, either within a single financial institution or across multiple institutions, via computer-based systems, without the direct intervention of bank staff. According to the United States Electronic Fund Transfer Act of 1978 it is \"\"a funds transfer initiated through an electronic terminal, telephone, computer (including on-line banking) or magnetic tape for the purpose of ordering, instructing, or authorizing a financial institution to debit or credit a consumer’s account. \"\" EFT transactions are known by a number of names across countries and different payment"} +{"qid": "test2027", "pid": "6260081", "query": "when was the electronic funds transfer act signed into law", "answer": "1978", "passage": "\"Electronic funds transfer\"\nsystems. For example, in the United States, they may be referred to as \"\"electronic checks\"\" or \"\"e-checks\"\". In the United Kingdom, the term \"\"bank transfer\"\" and \"\"bank payment\"\" are used, while in several other European countries \"\"giro transfer\"\" is the common term. EFTs include, but are not limited to: Electronic funds transfer Electronic funds transfer (EFT) are electronic transfer of money from one bank account to another, either within a single financial institution or across multiple institutions, via computer-based systems, without the direct intervention of bank staff. According to the United States Electronic Fund Transfer Act of 1978 it is"} +{"qid": "test2027", "pid": "12443159", "query": "when was the electronic funds transfer act signed into law", "answer": "1978", "passage": "\"Bank regulation in the United States\"\nstability, competition between depository institutions, and allow the consumer to make informed decisions. The \"\"Expedited Funds Availability Act\"\" (EFAA) of 1987, implemented by \"\"Regulation CC\"\", defines when standard holds and exception holds can be placed on checks deposited to checking accounts, and the maximum length of time the money can be held. A bank's hold policy can be less stringent than the guidelines provided, but it cannot exceed the guidelines. The \"\"Electronic Fund Transfer Act\"\" of 1978, implemented by \"\"Regulation E\"\", established the rights and liabilities of consumers as well as the responsibilities of all participants in electronic funds transfer"} +{"qid": "test203", "pid": "9406176", "query": "what us president is the only president to become an eagle scout", "answer": "Ford", "passage": "\"Gerald Rudolff Ford\"\nof Commerce and chairman of the Kent County, Michigan Republican Committee from 1944 until 1948 when he stepped down after the future President began his first run for Congress. The elder Ford was active with his four sons in the Boy Scouts of America. The future President would be the first Eagle Scout to become Vice President or President. The President was to say later that the award was one of his proudest accomplishments. The President was to write later: The elder Ford died on January 26, 1962 in Grand Rapids, Michigan. The couple is buried in Woodlawn Cemetery in"} +{"qid": "test203", "pid": "7754396", "query": "what us president is the only president to become an eagle scout", "answer": "Ford", "passage": "\"Gerald Ford\"\nbetter prescription for a superb family upbringing.\"\" Ford was involved in the Boy Scouts of America, and earned that program's highest rank, Eagle Scout. He is the only Eagle Scout to have ascended to the U.S. Presidency. Ford attended Grand Rapids South High School, where he was a star athlete and captain of the football team. In 1930, he was selected to the All-City team of the Grand Rapids City League. He also attracted the attention of college recruiters. Ford attended the University of Michigan, where he joined the Delta Kappa Epsilon fraternity (Omicron chapter). He washed dishes at his"} +{"qid": "test203", "pid": "826699", "query": "what us president is the only president to become an eagle scout", "answer": "Ford", "passage": "\"Boy Scouts of America\"\nMany famous Americans are Eagle Scouts: astronaut Neil Armstrong, film director Michael Moore, TV host Mike Rowe, Steven Spielberg, Mayor Michael Bloomberg, Secretary of Defense Robert Gates, and President Gerald Ford are just a small sample of Eagle Scouts. Starting in February 2019, girls will be eligible to earn ranks and merit badges including Eagle Scout, following the same requirements as the boys. There will even be extra time afforded to girls and boys 16 years or older joining Scouts BSA to complete all Eagle Scout requirements since the minimum time required is about 18 months. Additionally, this first class"} +{"qid": "test2030", "pid": "1434195", "query": "what is an example of an americanized mexican food created by tex-mex cuisine", "answer": "fajitas", "passage": "Tejano\nfrom the meeting of the European-American Texians, colonists mostly from the American South, and the original Tejano pioneers and their \"\"vaquero\"\" or \"\"cowboy\"\" culture. The cuisine that would come to be known as \"\"Tex-Mex\"\" originated with the Tejanos. It developed from Spanish and North American indigenous commodities with influences from Mexican cuisine. Tex-Mex cuisine is characterized by its widespread use of melted cheese, meat (particularly beef), beans, and spices, in addition to corn or flour tortillas. Chili con carne, crispy chalupas, chili con queso, enchiladas, and fajitas are all Tex-Mex specialties. A common feature of Tex-Mex is the combination plate,"} +{"qid": "test2030", "pid": "432116", "query": "what is an example of an americanized mexican food created by tex-mex cuisine", "answer": "fajitas", "passage": "Tex-Mex\ntypically used in Mexico are often added. Tex-Mex cuisine is characterized by its heavy use of shredded cheese, meat (particularly beef, pork and chicken), beans, peppers and spices, in addition to flour tortillas. Dishes such as Texas-style chili con carne, nachos, cripsy tacos, and fajitas, are all Tex-Mex inventions. Generally cheese plays a much bigger role in Tex-Mex food than in mainstream Mexican cuisine, particularly in the popularity of Chile con queso (often referred to as simply \"\"queso\"\") which is often eaten with chips (alongside or in place of guacamole and salsa), or may be served over enchiladas, tamales or"} +{"qid": "test2031", "pid": "8114668", "query": "who played joey's agent estelle on friends", "answer": "June Gable", "passage": "\"June Gable\"\nTribbiani, on the NBC sitcom \"\"Friends\"\", with her character dying in 2004. She played a nurse on the same show in season 1, episode 23. She also appeared in a recurring role in the HBO comedy series \"\"Dream On\"\" from 1990 to 1996 playing Libby Friedman. June Gable June Gable (born June 5, 1945) is an American character actress, perhaps best known for her role as Joey's agent Estelle Leonard in the NBC sitcom \"\"Friends\"\". She received one Tony Award nomination for her work on Broadway. Gable was born as June Golub in Brooklyn, New York City, the daughter of"} +{"qid": "test2031", "pid": "8114667", "query": "who played joey's agent estelle on friends", "answer": "June Gable", "passage": "\"June Gable\"\nalso in the cast of the short-lived 1977 revival of \"\"Rowan & Martin's Laugh-In\"\". In 1979 she appeared as \"\"Rhoda Rooter\"\" on the live-action Hanna-Barbera TV specials \"\"Legends of the Superheroes\"\". From 1978 to 1981, she was regular member In the syndicated variety series \"\"Sha Na Na\"\". In 1980s, she guest starred in episodes of popular series including \"\"Miami Vice\"\" and \"\"Kate & Allie\"\", and well as had small parts in films \"\"Brenda Starr\"\" and \"\"She-Devil\"\" (both 1989). From 1994 to 2004, Gable played Estelle Leonard of the \"\"Estelle Leonard Talent Agency\"\", the agent of the Matt LeBlanc character Joey"} +{"qid": "test2031", "pid": "8114665", "query": "who played joey's agent estelle on friends", "answer": "June Gable", "passage": "\"June Gable\"\nJune Gable June Gable (born June 5, 1945) is an American character actress, perhaps best known for her role as Joey's agent Estelle Leonard in the NBC sitcom \"\"Friends\"\". She received one Tony Award nomination for her work on Broadway. Gable was born as June Golub in Brooklyn, New York City, the daughter of Joseph and Shirley Golub. She studied acting at Carnegie Mellon University in Pittsburgh. Gable has appeared in four Broadway productions including the 1974 revival of \"\"Candide\"\" for which she was nominated for a Tony Award for Best Featured Actress in a Musical for her portrayal of"} +{"qid": "test2033", "pid": "2628083", "query": "who caused to build qutub minar in delhi", "answer": "Iltutmish", "passage": "\"Qutb Minar complex\"\nQutb Minar complex The Qutb complex is a collection of monuments and buildings from the Delhi Sultanate at Mehrauli in Delhi in India. The Qutub Minar in the complex, named after Qutbuddin Bakhtiar Kaki, was built by Qutb-ud-din Aibak, who later became the first Sultan of Delhi of the Mamluk dynasty. The Minar was added upon by his successor Iltutmish (a.k.a. Altamash), and much later by Firoz Shah Tughlaq, a Sultan of Delhi from the Tughlaq dynasty in 1368 AD. The Qubbat-ul-Islam Mosque (Dome of Islam), later corrupted into Quwwat-ul Islam, stands next to the Qutb Minar. Many subsequent rulers,"} +{"qid": "test2033", "pid": "3407849", "query": "who caused to build qutub minar in delhi", "answer": "Iltutmish", "passage": "\"Qutb Minar\"\nof the Qutub Minar's first storey around 1192. In 1220, Aibak's successor and son-in-law Shamsuddin Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more. Sher Shah Suri also added an entrance to this tower while he was ruling and Humayun was in exile. The Minar is surrounded by several historically significant monuments of the Qutab complex, including Quwat-ul-Islam Mosque was built at the same time as the Minar, and the much older Iron Pillar of Delhi. The nearby pillared Cupola known as \"\"Smith's"} +{"qid": "test2033", "pid": "12834611", "query": "who caused to build qutub minar in delhi", "answer": "Iltutmish", "passage": "\"Tomb of Balban\"\nrule of Mamluk dynasty of Delhi (or Slave dynasty) from 1266 to 1287. He was one of the most prominent rulers of the Slave Dynasty. The tomb of Balban was discovered in the mid-twentieth century. It is an imposing stone and masonry building, though lacking the splendid ornamentation to be seen in the tomb of his master, Iltutmish. The tomb is surrounded by the ruins of an extensive late-medieval settlement and it offers, from certain angles, a remarkable view of the Qutub Minar. To the east of Balban's tomb, lies a ruined rectangular structure said to be the grave of"} +{"qid": "test2035", "pid": "17047408", "query": "winner of first series of great british bake off", "answer": "Edd Kimber", "passage": "\"The Great British Bake Off (series 1)\"\nbake 24 miniature cake in 2 1/2 hours. Only two can advance to becoming the winner of the Great British Bake Off. For the final challenge, the 2 finalists were asked to bake 24 miniature tarts, 24 scones, 24 choux buns, and 24 finger sandwiches in 5 hours. Fulham Palace, London After winning the competition, Edd Kimber is able to make his living from baking. He worked in the pastry kitchen at Raymond Blanc's restaurant Le Manoir. He has written three books on baking, \"\"The Boy Who Bakes\"\", \"\"Say It With Cake\"\", and \"\"Patisserie Made Simple: From Macaron to Millefeuille"} +{"qid": "test2036", "pid": "435529", "query": "where does the un security council get troops for military actions", "answer": "member states", "passage": "\"United Nations Security Council\"\nCouncil. United Nations Security Council The United Nations Security Council (UNSC) is one of the six principal organs of the United Nations (UN), charged with the maintenance of international peace and security as well as accepting new members to the United Nations and approving any changes to its United Nations Charter. Its powers include the establishment of peacekeeping operations, the establishment of international sanctions, and the authorization of military action through Security Council resolutions; it is the only UN body with the authority to issue binding resolutions to member states. The Security Council held its first session on 17 January"} +{"qid": "test2036", "pid": "435471", "query": "where does the un security council get troops for military actions", "answer": "member states", "passage": "\"United Nations Security Council\"\nUnited Nations Security Council The United Nations Security Council (UNSC) is one of the six principal organs of the United Nations (UN), charged with the maintenance of international peace and security as well as accepting new members to the United Nations and approving any changes to its United Nations Charter. Its powers include the establishment of peacekeeping operations, the establishment of international sanctions, and the authorization of military action through Security Council resolutions; it is the only UN body with the authority to issue binding resolutions to member states. The Security Council held its first session on 17 January 1946."} +{"qid": "test2036", "pid": "333502", "query": "where does the un security council get troops for military actions", "answer": "member states of the UN", "passage": "Peace\nhuman rights, and achieving world peace. The UN was founded in 1945 after World War II to replace the League of Nations, to stop wars between countries, and to provide a platform for dialogue. The UN, after approval by the Security Council, sends peacekeepers to regions where armed conflict has recently ceased or paused to enforce the terms of peace agreements and to discourage combatants from resuming hostilities. Since the UN does not maintain its own military, peacekeeping forces are voluntarily provided by member states of the UN. The forces, also called the \"\"Blue Helmets\"\", who enforce UN accords are"} +{"qid": "test2036", "pid": "10866487", "query": "where does the un security council get troops for military actions", "answer": "member states", "passage": "\"United Nations Security Council Resolution 169\"\nUnited Nations Security Council Resolution 169 United Nations Security Council Resolution 169, adopted on November 24, 1961, deprecated the secessionist activities in Katanga as well as armed action against United Nations forces and insisted that those activities cease. The council then authorized the Secretary-General to take whatever action necessary to immediately apprehend and deport all foreign military personnel, paramilitary personnel and mercenaries not with the UN and requested that the SG take all necessary measures to prevent their return. The Council then asked all member states to aid the Government of the Republic of the Congo and to prevent any"} +{"qid": "test2036", "pid": "435895", "query": "where does the un security council get troops for military actions", "answer": "member states", "passage": "\"United Nations\"\ngroup held its first major meeting in Algiers in 1967, where it adopted the Charter of Algiers and established the basis for permanent institutional structures. The UN, after approval by the Security Council, sends peacekeepers to regions where armed conflict has recently ceased or paused to enforce the terms of peace agreements and to discourage combatants from resuming hostilities. Since the UN does not maintain its own military, peacekeeping forces are voluntarily provided by member states. These soldiers are sometimes nicknamed \"\"Blue Helmets\"\" for their distinctive gear. The peacekeeping force as a whole received the Nobel Peace Prize in 1988."} +{"qid": "test2037", "pid": "12833860", "query": "who plays the voice of sulley in monsters inc", "answer": "John Goodman", "passage": "\"Monsters, Inc. Scream Team\"\nserves the purpose of generating energy for the monsters' society. As explored in the movie, human children are believed to be highly dangerous, toxic, even. This is the cause for the game's setting being a simulation. Neither Mike nor Sulley are voiced by their original voice actors Billy Crystal and John Goodman respectively. However, Henry Waternoose, Randall, Roz and Ms. Flint are. Information about the game was first released in August 2001 on the gaming website GameSpot. Monsters, Inc. Scream Team Monsters, Inc. Scream Team (released as Monsters, Inc. Scare Island in Europe and Monsters Inc. Monster Academy in Japan)"} +{"qid": "test2037", "pid": "1612293", "query": "who plays the voice of sulley in monsters inc", "answer": "John Goodman", "passage": "\"Monsters, Inc.\"\nMonsters, Inc. Monsters, Inc. is a 2001 American computer-animated buddy comedy film produced by Pixar Animation Studios and distributed by Walt Disney Pictures. Featuring the voices of John Goodman, Billy Crystal, Steve Buscemi, James Coburn, and Jennifer Tilly, the film was directed by Pete Docter in his directorial debut, and executive produced by John Lasseter and Andrew Stanton. The film centers on two monsters – James P. \"\"Sulley\"\" Sullivan and his one-eyed partner and best friend Mike Wazowski – employed at the titular energy-producing factory Monsters, Inc, which generates power by scaring human children. The monster world believes that children"} +{"qid": "test2037", "pid": "1612314", "query": "who plays the voice of sulley in monsters inc", "answer": "John Goodman", "passage": "\"Monsters, Inc.\"\nwork and could take liberties here and there. Sometimes, I would suggest an idea about making the joke work better visually. Once the scene moved on to animation, the animators would plus the material even further.\"\" Bill Murray was considered for the voice role of James P. \"\"Sulley\"\" Sullivan. He screen tested for the role and was interested, but when Pete Docter was unable to make contact with him, he took it as a \"\"no\"\". The voice role of Sulley went to John Goodman, the longtime co-star of the comedy series \"\"Roseanne\"\" and a regular in the films of the"} +{"qid": "test2037", "pid": "8103866", "query": "who plays the voice of sulley in monsters inc", "answer": "John Goodman", "passage": "\"If I Didn't Have You (Disney song)\"\nthere and so was Jennifer Lopez and the orchestra stood up and it kind of got to me. I was almost embarrassed - but not quite.\"\" Two versions of \"\"If I Didn't Have You\"\" appear on the film's soundtrack: one sung by Billy Crystal and John Goodman, who voice the film's main characters, Mike and Sulley and one sung by Newman. The tune also serves as the film's theme, which plays during the opening credits. The song was covered by Riders in the Sky on the 2002 album \"\"Monsters, Inc. Scream Factory Favorites\"\". The album won the 2003 Grammy Award"} +{"qid": "test2037", "pid": "16801944", "query": "who plays the voice of sulley in monsters inc", "answer": "John Goodman", "passage": "\"Monsters, Inc. (franchise)\"\ncast consists of John Goodman and Billy Crystal. In the short, Sulley is shown playing a game of charades with Mike, but Mike is unable to guess the phrase \"\"\"\"Harry Potter\"\"\"\". Afterwords, Mike attempts to charade, but a bored Sulley quickly and correctly guesses \"\"Star Wars\"\". A bewildered Mike asks how he does it. \"\"Party Central\"\" is a six-minute short animated film, featuring characters from \"\"Monsters University\"\". It premiered on August 9, 2013, at the D23 Expo. The short was set to be released theatrically with \"\"The Good Dinosaur\"\" in 2014, before the film was pushed back to 2015. Instead,"} +{"qid": "test2037", "pid": "1932562", "query": "who plays the voice of sulley in monsters inc", "answer": "John Goodman", "passage": "\"John Goodman\"\nAllen Walken. In the latter, he appeared as Pahrump, Nevada Judge Robert Bebe, earning a 2007 Emmy for Outstanding Guest Actor – Drama Series for his performance. In addition, Goodman starred as Fred Flintstone in the film adaptation of \"\"The Flintstones\"\". He voiced Robot Santa in the character's first appearance on \"\"Futurama\"\". Beginning in 2007, Goodman has been the voiceover in Dunkin' Donuts commercials. In 2000, Goodman provided the voice of Pacha in Disney's \"\"The Emperor's New Groove\"\" and, a year later, the voice of Sulley in Pixar's \"\"Monsters, Inc.\"\" In 2009, Goodman voiced \"\"Big Daddy\"\" La Bouff in \"\"The"} +{"qid": "test2038", "pid": "13891287", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole discography\"\n\"\"I Choose You\"\". \"\"Enough of No Love\"\" peaked at number 84 on the \"\"Billboard\"\" Hot 100, and number seven on the R&B chart. \"\"Trust and Believe\"\" entered the \"\"Billboard\"\" Bubbling Under chart at number two, and also charted at number eight on the US R&B chart. The album has sold 246,300 copies in the US as of January 2013. Keyshia Cole discography This is the discography of American R&B singer-songwriter Keyshia Cole. \"\"The Way It Is\"\" is Cole's debut album, released on June 21, 2005. It debuted and peaked at number six on the US \"\"Billboard\"\" 200 albums chart with"} +{"qid": "test2038", "pid": "16008599", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Woman to Woman (Keyshia Cole album)\"\nNo Love\"\" and \"\"Trust and Believe\"\". On November 20, 2012 Cole and Ashanti performed \"\"Woman to Woman\"\" at Best Buy Theater in New York City Cole performed \"\"Enough of No Love\"\" and \"\"Trust and Believe\"\" at the 2012 Soul Train Awards, which premiered on November 26, 2012. On March 18, 2013, Cole performed \"\"Trust and Believe\"\" on \"\"Jimmy Kimmel Live\"\". In an interview with the \"\"Los Angeles Times\"\", Cole revealed that she was planning a tour called the Woman to Woman Tour for 2013. \"\"I want to do a “Woman to Woman” tour. I want powerful singers, Brandy, possibly, Melanie"} +{"qid": "test2038", "pid": "16812525", "query": "who wrote trust and believe by keyshia cole", "answer": "Jessyca Wilson", "passage": "\"Trust and Believe\"\nTrust and Believe \"\"Trust and Believe\"\" is a song by Grammy-nominated R&B singer/songwriter Keyshia Cole. It serves as the second single from her long anticipated, fifth studio album, \"\"Woman to Woman\"\" and the follow up to the top 10 hit, \"\"Enough of No Love\"\". It debuted on October 2, 2012 on Cole's official website and was first released for digital download on October 22, 2012. \"\"Trust and Believe is the second single from Cole's album \"\"Woman to Woman\"\". It was co-written by Guordan Banks and Jessyca Wilson of R&B duo The Righterz. It was produced by Grammy-nominated producer and songwriter"} +{"qid": "test2038", "pid": "13196326", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Trust (Keyshia Cole and Monica song)\"\nTrust (Keyshia Cole and Monica song) \"\"Trust\"\" is a song recorded by American recording artist Keyshia Cole. It was written by Cole and Frederick Taylor and co-produced by Donald \"\"Toxic\"\" Alford and Ron Fair for her third studio album, \"\"A Different Me\"\" (2008). It is a re-recording of the iTunes pre-order bonus song from Cole's previous album Just Like You. In 2008, the ballad was re-recorded as a duet with fellow R&B singer Monica, replacing parts of Cole's original vocals with hers, and was included on Cole's third studio album \"\"A Different Me\"\" (2008). It was released as the album's"} +{"qid": "test2038", "pid": "13196327", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Trust (Keyshia Cole and Monica song)\"\nthird single on , with its music video world premiering on in time for Mother's Day. The song became Monica's sixteenth chart entry on the Hot 100 and her eleventh consecutive top ten hit on the Hot R&B/Hip-Hop Songs chart, and becoming Cole's highest-peaking single from the album. The accompanying music video for \"\"Trust\"\", directed by Chris Robinson, was ranked at 15th on BET's \"\"Notarized: Top 100 Videos of 2009\"\" countdown. It also peaked on top on BET's \"\"106 & Park\"\". Trust (Keyshia Cole and Monica song) \"\"Trust\"\" is a song recorded by American recording artist Keyshia Cole. It was"} +{"qid": "test2038", "pid": "16812532", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Trust and Believe\"\n10 hit, Enough of No Love at the 2012 Soul Train Awards. She also performed the song on the late night show Jimmy Kimmel Live! on March 18, 2013. The song has also been added to the setlist of her Spring tour, The Woman to Woman Tour. Trust and Believe \"\"Trust and Believe\"\" is a song by Grammy-nominated R&B singer/songwriter Keyshia Cole. It serves as the second single from her long anticipated, fifth studio album, \"\"Woman to Woman\"\" and the follow up to the top 10 hit, \"\"Enough of No Love\"\". It debuted on October 2, 2012 on Cole's official"} +{"qid": "test2038", "pid": "16008597", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Woman to Woman (Keyshia Cole album)\"\n84. \"\"Trust and Believe\"\" is the album's second single. It is a heartfelt ballad written by R&B duo The Righterz and was produced by DJ Camper. \"\"Trust and Believe\"\" was released for digital download on October 22, 2012 and again on November 13, 2012. On October 24, it was ranked the number one added song to Urban radio of the week. Cole announced on her official Twitter account that \"\"I Choose You\"\" will be the album's third single. It was sent to urban radio on August 23, 2013. The music video for the song was filmed in August 2013. It"} +{"qid": "test2038", "pid": "16008598", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Woman to Woman (Keyshia Cole album)\"\nwas directed by Ethan Lader. The video displays a story of Cole in love with two men, but unable to let one go. Cole appeared on BET's \"\"106 & Park\"\" on October 2, 2013 for the world premiere of the video. The video premiered on VEVO later that evening. On October 13, 2012, Cole performed \"\"Trust and Believe\"\" at the \"\"Black Girls Rock!\"\" Awards. The show aired on BET on November 4, 2012. On November 17, 2012, Cole performed in Chicago at WGCI’s Big Jam 2012 alongside Usher, Rick Ross, Kelly Rowland, Fat Joe and Future. Cole performed \"\"Enough of"} +{"qid": "test2038", "pid": "5729112", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Gucci Mane\"\nno success\"\" and, \"\"Go dig your partner up, nigga, bet he can't say shit,\"\" referring to Pookie Loc. On March 16, 2012, R&B singer Keyshia Cole came at Gucci Mane for the controversial song \"\"Truth\"\" on which he had rapped, \"\"I did a song with Keyshia Cole and I know you still miss her. But Puff was f—ing her while you was falling in love with her,\"\" implying that, during the time of her rumored relationship with Young Jeezy, Cole was cheating on him with her \"\"Last Night\"\" collaborator P. Diddy. Cole stated on the radio, \"\"Putting all ya trust"} +{"qid": "test2038", "pid": "15124786", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Long Way Down (Keyshia Cole song)\"\nLong Way Down (Keyshia Cole song) Long Way Down is a song by American R&B singer Keyshia Cole from her fourth studio album \"\"Calling All Hearts\"\". This single was produced by J.U.S.T.I.C.E. League. This song is about being in a relationship with someone sent from Heaven, very much related to her relationship with then fiancé, Daniel Gibson. Therefore, she says it's a Long Way Down falling from Heaven. She also states the disadvantages of her previous relationship and saying that's not what she wants anymore. It is believed to be written after she met her fiancée. The video was directed"} +{"qid": "test2038", "pid": "16008603", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Woman to Woman (Keyshia Cole album)\"\nof 4 out of 5 stars stating \"\"Back to her signature sound on emotional heavy ballads such as the new single, 'Trust and Believe', she is reminding fans why they fell in love with her back in 2005.\"\" Steve Jones of nationwide magazine \"\"USA Today\"\" rated the album 3 out of 4 stars calling Cole a \"\"feisty soul singer\"\" saying that it's \"\"a conversation that women might actually have and that men might want to be aware of.\"\" The album debuted at number ten on the \"\"Billboard\"\" 200 selling 96,000 copies in its first week in the United States, becoming"} +{"qid": "test2038", "pid": "5521844", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole\"\n9, 2012, the song debuted at number 94 on the \"\"Billboard\"\" Hot 100 where it ultimately peaked at number 84. The second single, \"\"Trust and Believe\"\" was released for digital download on October 22, 2012 and again on November 13, 2012. On October 24, it was ranked the number one added song to Urban radio of the week. \"\"I Choose You\"\" was released as the third single during August 2013. Cole embarked on her third headlining concert tour, in support of her fifth studio album, Woman to Woman. Visiting North America and Europe the tour will have 27 total dates."} +{"qid": "test2038", "pid": "18640500", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole: All In\"\nKeyshia Cole: All In Keyshia Cole: All In was a reality television series starring Grammy-nominated R&B singer Keyshia Cole. The series premiered on February 24, 2015, on BET as a follow-up to her 2012 reality television series, \"\"\"\". In July 2013, when Keyshia was asked if she would be bringing back her reality show for another season, she responded that she didn't know. In the spring of 2014, it was disclosed that Keyshia was shooting a new season of reality television from day to day. The show centers around Keyshia as she embarks on her Point of No Return Tour"} +{"qid": "test2038", "pid": "11641599", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Heaven Sent (Keyshia Cole song)\"\nHeaven Sent (Keyshia Cole song) Heaven Sent is an R&B song by American singer-songwriter Keyshia Cole. It is the fourth and final single from Keyshia Cole's second album \"\"Just Like You\"\". This ballad was written by Alex Francis, Jason Farmer and Keyshia Cole. \"\"Heaven Sent\"\" was the third #1 for Cole on the Hot R&B/Hip-Hop Songs chart. The song's video was shot in Hawaii and is based on the \"\"Footprints\"\" poem. The Leona Lewis song \"\"Footprints In The Sand\"\" is based on the same piece. The song also earned Cole two Grammy nominations for Best Female R&B Vocal Performance and"} +{"qid": "test2038", "pid": "13891286", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole discography\"\nsingle. \"\"I Ain't Thru\"\" featuring Nicki Minaj peaked on the \"\"Billboard\"\" Bubbling Under Hot 100 chart at number 19. The following single, \"\"Take Me Away\"\", peaked at number 20 on the \"\"Billboard\"\" Bubbling Under chart. \"\"Long Way Down\"\" was issued as a promotional single. \"\"Woman to Woman\"\" is Cole's fifth studio album, released November 19, 2012 in the United States by Geffen Records. The album debuted at number 10 on the \"\"Billboard\"\" 200, with first week sales of 96,000, lower than her last effort. The album yielded three singles, \"\"Enough of No Love\"\" featuring Lil Wayne, \"\"Trust and Believe\"\" and"} +{"qid": "test2038", "pid": "18640501", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole: All In\"\nwhile coming to grips with the estrangement of her marriage and issues with her mother and sister while finishing her last album on Interscope Records. Keyshia Cole: All In Keyshia Cole: All In was a reality television series starring Grammy-nominated R&B singer Keyshia Cole. The series premiered on February 24, 2015, on BET as a follow-up to her 2012 reality television series, \"\"\"\". In July 2013, when Keyshia was asked if she would be bringing back her reality show for another season, she responded that she didn't know. In the spring of 2014, it was disclosed that Keyshia was shooting"} +{"qid": "test2038", "pid": "13359695", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"I Remember (Keyshia Cole song)\"\nThe video for \"\"I Remember\"\" premiered on BET's \"\"Access Granted\"\" on December 5, 2007. The video was directed by Benny Boom, who has directed fourteen of Cole's videos. I Remember (Keyshia Cole song) \"\"I Remember\"\" is a song by American recording artist Keyshia Cole. It was written by Cole and Gregory G. Curtis for her second album \"\"Just like You\"\" (2007), with production helmed by the latter. \"\"I Remember\"\" was released as the album's third single and reached number one on the \"\"Billboard\"\" Hot R&B/Hip-Hop Songs chart, while peaking at number 24 on the \"\"Billboard\"\" Hot 100. British soul singer"} +{"qid": "test2038", "pid": "16713074", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Rotimi (actor)\"\non BET’s show \"\"106 and Park\"\" and appeared in R&B singer Keyshia Cole's music video \"\"Trust and Believe\"\" as Cole's unfaithful boyfriend. Rotimi garnered music placement with “I’m the One” on the first episode of \"\"Boss\"\". In 2015, American rapper and executive producer of \"\"Power\"\", 50 Cent signed Rotimi to his label, G-Unit Records. He also released his first G-Unit single \"\"Lotto\"\" featuring 50 Cent. In 2016, Rotimi released \"\"Doin it\"\", a single from his 5-track project, Summer Bangerz. In 2017 he released his first debut album called Jeep music VOL.1 Rotimi is the lead model/spokesperson of rapper T.I.’s AKOO"} +{"qid": "test2038", "pid": "16008589", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Woman to Woman (Keyshia Cole album)\"\nWoman to Woman (Keyshia Cole album) Woman to Woman is the fifth studio album by American recording artist Keyshia Cole. It was released on November 19, 2012, by Geffen Records. The album was recorded between 2011 and 2012 and features guest vocals from Lil Wayne, Meek Mill, Ashanti, Elijah Blake and Robin Thicke. \"\"Woman to Woman\"\" received generally positive reviews from music critics, who complimented Cole's vocal performances, with some critics calling it \"\"angrily defiant\"\" and \"\"consistently good\"\" and praised it as an \"\"R&B almanac of shaky romance.\"\" Other critics found the album to be similar to that of Mary"} +{"qid": "test2038", "pid": "10329539", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Let It Go (Keyshia Cole song)\"\nLet It Go (Keyshia Cole song) \"\"Let It Go\"\" is a song by American R&B recording artist Keyshia Cole. It was written by Cole, Jack Knight, Cainon Lamb, Lil' Kim, and Missy Elliott for her second album \"\"Just Like You\"\" (2007) and samples \"\"Juicy Fruit\"\" by Mtume, and \"\"Don't Stop the Music\"\" by Yarbrough and Peoples, while also interpolating \"\"Juicy\"\" by The Notorious B.I.G., who also sampled \"\"Juicy Fruit.\"\" Production was handled by Elliott and Lamb, with Lil' Kim and Elliott also appearing as featured vocalists on the track. Released as the album's lead single, it debuted at number 74"} +{"qid": "test2038", "pid": "10329543", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Let It Go (Keyshia Cole song)\"\nat number 7 on the \"\"Billboard\"\" Hot 100 and reaching number one on \"\"Billboard's\"\" Hot R&B/Hip-Hop Songs chart. Let It Go (Keyshia Cole song) \"\"Let It Go\"\" is a song by American R&B recording artist Keyshia Cole. It was written by Cole, Jack Knight, Cainon Lamb, Lil' Kim, and Missy Elliott for her second album \"\"Just Like You\"\" (2007) and samples \"\"Juicy Fruit\"\" by Mtume, and \"\"Don't Stop the Music\"\" by Yarbrough and Peoples, while also interpolating \"\"Juicy\"\" by The Notorious B.I.G., who also sampled \"\"Juicy Fruit.\"\" Production was handled by Elliott and Lamb, with Lil' Kim and Elliott also"} +{"qid": "test2038", "pid": "11884816", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Game's Pain\"\nKeyshia Cole is driving and later, they are both shown at a mansion in Beverly Hills singing at a party . Game is also shown sitting in a throne-like chair in some parts, getting greeted by Raekwon. \"\"Game's Pain\"\" became the #1 video on BET's 106 & Park on June 12, 2008 and later appeared at #67 on the channel's \"\"Notarized: Top 100 Videos\"\" countdown. The official remix featuring Jadakiss, Bun B, Pusha T, Fat Joe, Young Buck, Queen Latifah, and Keyshia Cole was released on June 28, 2008. The remix samples \"\"Juicy Fruit\"\" by Mtume. Keyshia Cole, who appears"} +{"qid": "test2038", "pid": "5521856", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole\"\n2016, she met her biological father, Virgil Hunter, who is a well known boxing trainer. Headlining Supporting Television Films Keyshia Cole Keyshia Cole (born October 15, 1981) is an American singer, songwriter, record producer, business woman, and television personality. She was born in Oakland, California. Her career began when she met MC Hammer at the age of 12, and later met rapper Tupac Shakur. At the age of 18, she moved to Los Angeles and was later introduced to A&M Records. She released her debut album, \"\"The Way It Is\"\" (2005), which spawned five singles: \"\"Never\"\", \"\"I Changed My Mind\"\","} +{"qid": "test2038", "pid": "7612689", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Love (Keyshia Cole song)\"\nLove (Keyshia Cole song) \"\"Love\"\" is a song by American R&B recording artist Keyshia Cole. It was written by Greg Curtis and Keyshia Cole and produced by Gregory G. Curtis Sr for her debut album, \"\"The Way It Is\"\" (2005), released on January 6, 2006 as the album's fifth single, \"\"Love\"\" emerged as the most successful single from the album. It peaked at number 19 on the US \"\"Billboard\"\" Hot 100 chart and at number three on the Hot R&B/Hip-Hop Songs chart, becoming her breakthrough record after a string of modestly successful singles. Its accompanying music video features R&B singer"} +{"qid": "test2038", "pid": "20003884", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"You (Keyshia Cole song)\"\nYou (Keyshia Cole song) \"\"You\"\" is a song recorded by R&B singer Keyshia Cole featuring American rappers Remy Ma and French Montana. The song is also produced by Harmony Samuels. It was released on January 27, 2017, as the first single from her upcoming seventh studio album, \"\"\"\" (2017), through Epic Records. The song serves as her debut with Epic Records and Sony Music Entertainment. The song was met with positive reviews from critics. Rap-Up stated \"\"KC is back. As she gears up for her upcoming album, Keyshia Cole taps French Montana and Remy Ma for the lead single \"\"You\"\","} +{"qid": "test2038", "pid": "11641601", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Heaven Sent (Keyshia Cole song)\"\none on the U.S. Billboard Hot R&B/Hip-Hop Songs from \"\"Just Like You\"\". It peaked at number one for nine consecutive weeks. It charted on the U.S. Billboard Hot R&B/Hip Hop Songs chart for 55 weeks. On the \"\"Billboard\"\" Hot 100, it has peaked at number 28. This song was used at the beginning and the end of the episode \"\"Fool Me Twice... I'm The Damn Fool\"\" of \"\"The Game\"\" on October 29, 2007. Heaven Sent (Keyshia Cole song) Heaven Sent is an R&B song by American singer-songwriter Keyshia Cole. It is the fourth and final single from Keyshia Cole's second"} +{"qid": "test2038", "pid": "20003891", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"You (Keyshia Cole song)\"\nBillboard Bubbling Under R&B/Hip-Hop songs. You (Keyshia Cole song) \"\"You\"\" is a song recorded by R&B singer Keyshia Cole featuring American rappers Remy Ma and French Montana. The song is also produced by Harmony Samuels. It was released on January 27, 2017, as the first single from her upcoming seventh studio album, \"\"\"\" (2017), through Epic Records. The song serves as her debut with Epic Records and Sony Music Entertainment. The song was met with positive reviews from critics. Rap-Up stated \"\"KC is back. As she gears up for her upcoming album, Keyshia Cole taps French Montana and Remy Ma"} +{"qid": "test2038", "pid": "6401168", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"The Way It Is (Keyshia Cole album)\"\nit's all that profound, but Cole sells it all extremely well. [Her] voice is sweet and ringing, like a wiser version of Lil' Mo who has had to weather a tremendous amount of drama. She could be around for a while.\"\" Janet Tzou, writing for \"\"Entertainment Weekly\"\" found that \"\"Cole certainly nails all the basics on \"\"The Way It Is\"\": big-name guest talent and husky ballads lamenting those tricky matters of the heart. But Cole's native Oakland, California upbringing gives her vocals depth and her songs a genuine, lived-in feel.\"\" The Way It Is (Keyshia Cole album) The Way It"} +{"qid": "test2038", "pid": "7612694", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Love (Keyshia Cole song)\"\nand asks her if she knows where her boyfriend is. Her boyfriend then picks her up, she gets into the driver's seat of the car, and are taken back to the scenario shown in the beginning of the video; however, the policeman recognizes that it is Cole and calmly calls the whole thing off by asking for her autograph. Cole confronts her boyfriend, ends up staying with him and he gives up being a criminal for her love. Love (Keyshia Cole song) \"\"Love\"\" is a song by American R&B recording artist Keyshia Cole. It was written by Greg Curtis and"} +{"qid": "test2038", "pid": "5521837", "query": "who wrote trust and believe by keyshia cole", "answer": "Keyshia Cole", "passage": "\"Keyshia Cole\"\nHot 100. Cole released the third and final single from the album, \"\"Trust\"\", a duet with Monica, on May 5, 2009, which reached number five on the Billboard Hot R&B/Hip-Hop Songs chart. To promote the album and single, Cole embarked on her first headlining tour, A Different Me Tour in summer 2009. Throughout this time, Cole was featured as the cover artist on several magazines such as the March 2009 issue of \"\"Vibe\"\", WordUp!, the Summer 2009 final double-cover issue of \"\"King\"\", and the June issue of \"\"Sister 2 Sister\"\" with her mother Yvonne Cole. With more collaborations along the"} +{"qid": "test2039", "pid": "5820756", "query": "who dies at the end of den of thieves", "answer": "Levi", "passage": "\"Den of Thieves (Stewart book)\"\nDen of Thieves (Stewart book) Den of Thieves is a bestselling 1992 non-fiction book by Pulitzer prize-winning writer James B. Stewart. \"\"Den of Thieves\"\" recounts the insider trading scandals involving Ivan Boesky, Michael Milken, and other Wall Street financiers in the United States during the 1980s, such as Robert Freeman, Dennis Levine, Lowell Milken, John A. Mulheren, Martin Siegel, Timothy Tabor, Richard Wigton, Robert Wilkis, and others. There have been eight editions as of 2008. Intertwining the stories of financiers, bankers, lawyers, and the law enforcement officials who pursued them, \"\"Den of Thieves\"\" tells a tale of arrogance and complacency"} +{"qid": "test204", "pid": "12432244", "query": "when was the drinking age set to 21", "answer": "By mid-1988", "passage": "\"U.S. history of alcohol minimum purchase age by state\"\n10% of their federal highway funds. By mid-1988, all 50 states and the District of Columbia had raised their purchase ages to 21 (but not Puerto Rico, Guam, or the Virgin Islands, see Additional Notes below). South Dakota and Wyoming were the final two states to comply with the age 21 mandate. The current drinking age of 21 remains a point of contention among many Americans, because of it being higher than the age of majority (18 in most states) and higher than the drinking ages of most other countries. The National Minimum Drinking Age Act is also seen as"} +{"qid": "test2040", "pid": "49672", "query": "who holds the most home runs in mlb history", "answer": "Barry Bonds", "passage": "\"Barry Bonds\"\nBarry Bonds Barry Lamar Bonds (born July 24, 1964) is an American former professional baseball left fielder who played 22 seasons in Major League Baseball (MLB) with the Pittsburgh Pirates and San Francisco Giants. Bonds received seven NL MVP awards and 14 All-Star selections, and is considered to be one of the greatest baseball players of all time. Bonds was regarded as an exceptional hitter: he led MLB in on-base plus slugging six times, and placed within the top five hitters in 12 of his 17 qualifying seasons. He holds many MLB hitting records, including most career home runs, most"} +{"qid": "test2041", "pid": "960030", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "Serialism\nchords and intervals known as \"\"functional tonality\"\". Composers such as Debussy and Strauss found differing ways of stretching the limits of the tonal system in order to accommodate their ideas. After a brief period of free atonality, Arnold Schoenberg and others began exploring tone rows, in which an ordering of the twelve pitches of the equal tempered chromatic scale is used as the source material of a composition. This ordered set, often called a row, allowed for new forms of expression and (unlike free atonality) the expansion of underlying structural organizing principles without recourse to common practice harmony . Twelve-tone"} +{"qid": "test2041", "pid": "871885", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "\"Chamber music\"\nAmerican composer Charles Ives wrote music that was distinctly American. Ives gave programmatic titles to much of his chamber music; his first string quartet, for example, is called \"\"From the Salvation Army\"\", and quotes American Protestant hymns in several places. A second direction in the search for a new tonality was twelve-tone serialism. Arnold Schoenberg developed the twelve-tone method of composition as an alternative to the structure provided by the diatonic system. His method entails building a piece using a series of the twelve notes of the chromatic scale, permuting it and superimposing it on itself to create the composition."} +{"qid": "test2041", "pid": "960017", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "Serialism\nSerialism In music, serialism is a method of composition using series of pitches, rhythms, dynamics, timbres or other musical elements. Serialism began primarily with Arnold Schoenberg's twelve-tone technique, though some of his contemporaries were also working to establish serialism as a form of post-tonal thinking. Twelve-tone technique orders the twelve notes of the chromatic scale, forming a row or series and providing a unifying basis for a composition's melody, harmony, structural progressions, and variations. Other types of serialism also work with sets, collections of objects, but not necessarily with fixed-order series, and extend the technique to other musical dimensions (often"} +{"qid": "test2041", "pid": "1285472", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "\"Twelve-tone technique\"\nTwelve-tone technique The twelve-tone technique—also known as dodecaphony, twelve-tone serialism, and (in British usage) twelve-note composition—is a method of musical composition devised by Austrian composer Arnold Schoenberg (1874–1951) and associated with the \"\"Second Viennese School\"\" composers, who were the primary users of the technique in the first decades of its existence. The technique is a means of ensuring that all 12 notes of the chromatic scale are sounded as often as one another in a piece of music while preventing the emphasis of any one note through the use of tone rows, orderings of the 12 pitch classes. All 12"} +{"qid": "test2041", "pid": "761585", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "\"Arnold Schoenberg\"\nof early 20th-century music . Later, Schoenberg was to develop the most influential version of the dodecaphonic (also known as twelve-tone) method of composition, which in French and English was given the alternative name serialism by René Leibowitz and Humphrey Searle in 1947. This technique was taken up by many of his students, who constituted the so-called Second Viennese School. They included Anton Webern, Alban Berg and Hanns Eisler, all of whom were profoundly influenced by Schoenberg. He published a number of books, ranging from his famous \"\"Harmonielehre\"\" (Theory of Harmony) to \"\"Fundamentals of Musical Composition\"\" , many of which"} +{"qid": "test2041", "pid": "1285493", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "\"Twelve-tone technique\"\nmusic need not be—several pieces by Berg, for instance, have tonal elements. One of the best known twelve-note compositions is \"\"Variations for Orchestra\"\" by Arnold Schoenberg. \"\"Quiet\"\", in Leonard Bernstein's \"\"Candide\"\", satirizes the method by using it for a song about boredom, and Benjamin Britten used a twelve-tone row—a \"\"tema seriale con fuga\"\"—in his \"\"Cantata Academica: Carmen Basiliense\"\" (1959) as an emblem of academicism. Ten features of Schoenberg's mature twelve-tone practice are characteristic, interdependent, and interactive: Twelve-tone technique The twelve-tone technique—also known as dodecaphony, twelve-tone serialism, and (in British usage) twelve-note composition—is a method of musical composition devised by Austrian"} +{"qid": "test2041", "pid": "761599", "query": "who abandoned traditional harmony and created the twelve-tone system for composition", "answer": "Arnold Schoenberg", "passage": "\"Arnold Schoenberg\"\ntwelve-tone period \"\"represents a stylistically unified body of works is simply not supported by the musical evidence\"\" , and important musical characteristics—especially those related to motivic development—transcend these boundaries completely. The first of these periods, 1894–1907, is identified in the legacy of the high-Romantic composers of the late nineteenth century, as well as with \"\"expressionist\"\" movements in poetry and art. The second, 1908–1922, is typified by the abandonment of key centers, a move often described (though not by Schoenberg) as \"\"free atonality\"\". The third, from 1923 onward, commences with Schoenberg's invention of dodecaphonic, or \"\"twelve-tone\"\" compositional method. Schoenberg's best-known students,"} +{"qid": "test2043", "pid": "16522549", "query": "who plays the judge in drop dead diva", "answer": "Lex Medlin", "passage": "\"Drop Dead Diva (season 4)\"\nDrop Dead Diva (season 4) The fourth season of \"\"Drop Dead Diva\"\" premiered on June 3, 2012 and concluded on September 9, 2012, on Lifetime. Season four aired Sundays at 9:00 pm ET and consisted of 13 episodes. On September 22, 2011, Lifetime picked up the show for a 4th season featuring 13 episodes, which premiered on June 3, 2012. Lex Medlin who played the recurring role of Judge Owen French, has been upgraded to a series regular in season four. Carter MacIntyre also joined the main cast for season four. He plays the role of Luke Daniels, Jane's new"} +{"qid": "test2043", "pid": "16522550", "query": "who plays the judge in drop dead diva", "answer": "Lex Medlin", "passage": "\"Drop Dead Diva (season 4)\"\nguardian angel. Kim Kardashian will recur as Nikki, Stacy's business partner. Brandy is confirmed to be reprising her role as Elisa Shayne for season four. Drop Dead Diva (season 4) The fourth season of \"\"Drop Dead Diva\"\" premiered on June 3, 2012 and concluded on September 9, 2012, on Lifetime. Season four aired Sundays at 9:00 pm ET and consisted of 13 episodes. On September 22, 2011, Lifetime picked up the show for a 4th season featuring 13 episodes, which premiered on June 3, 2012. Lex Medlin who played the recurring role of Judge Owen French, has been upgraded"} +{"qid": "test2045", "pid": "14320396", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"Brian Griffin's House of Payne\"\nit appear as if Lois ran him over to induce her guilt. Lois suggests they frame someone else, but Peter professes his love for her and suggests they take Stewie to the hospital. Stewie later walks in on the family with his head wrapped in bandages, revealing that seven months have passed since his accident. In his first official episode for the series, the show was written by Spencer Porter, who had previously worked as a writing assistant for series creator and executive producer Seth MacFarlane on both \"\"Family Guy\"\", as well as \"\"The Cleveland Show\"\" and \"\"American Dad!\"\". In"} +{"qid": "test2045", "pid": "15216570", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"And I'm Joyce Kinney\"\nonce she is kicked out of her church, Lois is confronted by Brian, who suggest that she take the criticism head on, giving the example of television host Ryan Seacrest taking on jokes about his alleged homosexuality. \"\"And I'm Joyce Kinney\"\" was broadcast on January 16, 2011, as a part of an animated television night on Fox, and was preceded by \"\"American Dad!\"\", \"\"The Simpsons\"\" and the second episode of the animated series \"\"Bob's Burgers\"\". It was followed by \"\"Family Guy\"\" creator and executive producer Seth MacFarlane's spin-off, \"\"The Cleveland Show\"\". \"\"Family Guy\"\" was watched by 7.08 million viewers, according"} +{"qid": "test2045", "pid": "13477498", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"American Dad! (season 5)\"\nShaffer of IGN said that \"\"\"\"American Dad\"\" comes from the weird and wicked mind of Seth MacFarlane, who brought us the irreverent and often puerile powerhouse \"\"Family Guy\"\" [...], and like the show[s], \"\"American Dad\"\" offers a supreme dose of silly mockery that's occasionally offensive [...] and outrageously wacky through-and-through.\"\" However, he criticized the show for having similar problem that he thought existed in \"\"Family Guy\"\". Shaffer opined: \"\"\"\"American Dad\"\" suffers from many of the same problems as \"\"Family Guy\"\". The show quite often stumbles into territory it's simply not mature enough to handle. And because the show already plays"} +{"qid": "test2045", "pid": "8619619", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"Peter's Two Dads\"\nto succeed with just enough truly hilarious moments and actual story elements.\"\" MacFarlane has said that this is one of his favorite episodes, alongside \"\"PTV\"\" and \"\"Road to Rhode Island.\"\" Peter's Two Dads \"\"Peter's Two Dads\"\" is the tenth episode in the fifth season of the American animated television series \"\"Family Guy\"\". It originally aired on the Fox network in the United States on February 11, 2007. The plot follows Peter traveling to Ireland to find his biological father, after he accidentally kills his stepfather at his daughter's birthday party. Meanwhile, after Lois spanks him, Stewie becomes fascinated with it"} +{"qid": "test2045", "pid": "6974088", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"Criticism of Family Guy\"\n\"\"Quagmire's Dad\"\" was broadcast. Many people felt this episode was offensive to transgender people. AfterElton.com writer Brent Hartinger gave a negative grade to the episode \"\"Quagmire's Dad\"\", in which Dan Quagmire (Glenn Quagmire's father) undergoes sex reassignment surgery and changes his name to Ida Davis. While noting that the episode deserves credit for making important points about transgender people, he found its inclusion of the vomiting scene and Lois and Peter's transphobic remarks about Ida to be \"\"shockingly insensitive.\"\" Hartinger continued, \"\"Frankly, it's literally \"\"impossible\"\" for me to reconcile last night's episode with MacFarlane's words, unless I come to the"} +{"qid": "test2045", "pid": "3511606", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"Alex Borstein\"\nGreen made recurring appearances on the show as mean boss Mr. Brightling, Borstein would play his mother, Mama Brightling. While working on \"\"MADtv\"\", Borstein met Seth MacFarlane, who was then preparing to launch the animated sitcom \"\"Family Guy\"\" on FOX. MacFarlane was originally supposed to create animated shorts for \"\"MADtv\"\", but declined in favor of creating an independent series. MacFarlane cast Borstein as the voice of character Lois Griffin. After the show's debut in January 1999, \"\"Family Guy\"\" was cancelled by the network in 2002, but returned in 2005. As well as her role as the voice performer for Lois"} +{"qid": "test2045", "pid": "20717679", "query": "who plays lois's dad on family guy", "answer": "MacFarlane", "passage": "\"Family Guy (season 17)\"\nFamily Guy (season 17) \"\"Family Guy\"\" seventeenth season premiered on Fox in the United States on September 30, 2018. The series follows the dysfunctional Griffin family, consisting of father Peter, mother Lois, daughter Meg, son Chris, baby Stewie, and the family dog Brian, who reside in their hometown of Quahog. The season's executive producers are Seth MacFarlane, Alec Sulkin, Richard Appel, Steve Callaghan, Danny Smith, Kara Vallow, Mark Hentemann, Tom Devanney, Patrick Meighan and Cherry Chevapravatdumrong. The season's showrunners are Sulkin and Appel. During this season, Brian marries a dying woman (played by Casey Wilson) in a two-episode arc (\"\"Married..."} +{"qid": "test2050", "pid": "4609612", "query": "what is the purse for the senior open", "answer": "$2 million in 2011", "passage": "\"Senior Open Championship\"\nSenior Open Championship The Senior Open Championship, or simply The Senior Open (and originally known as the Senior British Open) is a professional golf tournament for players aged 50 and over. It is run by The R&A, the same body that organises The Open Championship. Prize money won in the event is official money on both PGA Tour Champions (formerly the Senior PGA Tour and Champions Tour) and the European Senior Tour. The purse, which is fixed in United States dollars, was $2 million in 2011, with a winner's share of $315,600. For sponsorship reasons, it is currently known as"} +{"qid": "test2051", "pid": "7710521", "query": "where will the cricket world cup 2019 be held", "answer": "England and Wales", "passage": "\"2019 Cricket World Cup\"\n2019 Cricket World Cup The 2019 Cricket World Cup (officially ICC Cricket World Cup 2019) is the 12th edition of the Cricket World Cup, scheduled to be hosted by England and Wales, from 30 May to 14 July 2019. The hosting rights were awarded in April 2006, after England and Wales withdrew from the bidding to host the 2015 ICC Cricket World Cup, which was held in Australia and New Zealand. The first match will be played at The Oval while the final will be played at Lord's. It is the fifth time that the Cricket World Cup will be"} +{"qid": "test2051", "pid": "7710528", "query": "where will the cricket world cup 2019 be held", "answer": "England and Wales", "passage": "\"2019 Cricket World Cup\"\nday. 2019 Cricket World Cup The 2019 Cricket World Cup (officially ICC Cricket World Cup 2019) is the 12th edition of the Cricket World Cup, scheduled to be hosted by England and Wales, from 30 May to 14 July 2019. The hosting rights were awarded in April 2006, after England and Wales withdrew from the bidding to host the 2015 ICC Cricket World Cup, which was held in Australia and New Zealand. The first match will be played at The Oval while the final will be played at Lord's. It is the fifth time that the Cricket World Cup will"} +{"qid": "test2051", "pid": "11491839", "query": "where will the cricket world cup 2019 be held", "answer": "England and Wales", "passage": "\"Major sports event hosting in Britain during the 2010s\"\nThe O Arena in London 10 and 11 May – 2019 European Rugby Challenge Cup Final and 2019 European Rugby Champions Cup Final at St James' Park in Newcastle 30 May–14 July – 2019 ICC Cricket World Cup in England and Wales 13–15 September – 2019 Solheim Cup at Gleneagles near Auchterarder, Scotland November (dates TBA) – 2019 ATP Finals at The O Arena in London Manchester hosted the world's biggest lacrosse event in July 2010. It was the third edition of the World Lacrosse Championships held in England, with Manchester hosting the 1994 tournament and Stockport hosting in 1978."} +{"qid": "test2052", "pid": "4410411", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "WCBS-TV\nby WNYW). After its 5-year absence, The NFL returned to CBS and WCBS-TV in 1998 by acquiring the rights of the American Football Conference (AFC) and the station currently airs New York Jets preseason games and most regular season games, During the regular season some Jets games are rotated with WNBC (through \"\"NBC Sunday Night Football\"\"), WNYW (through \"\"NFL on Fox\"\" and \"\"Thursday Night Football\"\"), WABC-TV (through \"\"Monday Night Football\"\"), WPIX (through \"\"Monday Night Football\"\" (if WABC-TV is not airing them) and select TNF telecasts not carried by Fox's package it shares with NFL Network), and at rare cases, WWOR-TV"} +{"qid": "test2052", "pid": "5363372", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "WTHR\nNFC opponent at home since 1994, or since 2014, any games moved from WTTV via the new 'cross-flex' broadcast rules), with WTHR carrying non-preseason games and select Colts NFL games broadcast by NBC as part of the network's \"\"Sunday Night Football\"\" package. The station also acquired the local rights to two Colts regular season games during the 2013 season between the San Diego Chargers (on October 14, which aired on ESPN's \"\"Monday Night Football\"\"—whose Colts broadcasts are normally carried over-the-air by WNDY-TV (channel 23)) and the Tennessee Titans (on November 14, which aired on NFL Network's \"\"Thursday Night Football\"\"). From"} +{"qid": "test2052", "pid": "5155713", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "KABC-TV\nFootball games from that year onward while other games are split between four other television stations: KCBS-TV through the \"\"NFL on CBS\"\" and its preseason Rams telecasts, including the network's Thursday night games (2016-2017); KNBC through NBC Sunday Night Football and NBC-produced Thursday night games (2016-2017); KTLA through games telecast exclusively by NFL Network; and KTTV through \"\"Fox NFL Sunday\"\" and Fox-produced Thursday night games (2018-present). The station also produces and broadcasts Rams' team shows on Saturday nights during the regular season, with comedian Jay Mohr serving as host. The same broadcast schedule applies for the Los Angeles Chargers, after"} +{"qid": "test2052", "pid": "13793625", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"Primary NFL television stations\"\ngames to minor network affiliates in Milwaukee during Summer Olympics years due to mandatory non-preemption policies by their network, NBC (this was not done in 2012 as the pre-season opener was a national ESPN game). ESPN \"\"Monday Night Football\"\" games, both pre-season and season, are broadcast over the air by WLUK-TV (channel 11) in Green Bay and ABC WISN-TV (Channel 12) in Milwaukee, while the stations airing Packers games in the NFL Network \"\"Thursday Night Football\"\" package have varied. The team's intra-squad Lambeau scrimmage at the beginning of the season, marketed as \"\"Packers Family Night\"\", is broadcast by WITI (Channel"} +{"qid": "test2052", "pid": "79961", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"Carolina Panthers\"\nFox owned and operated station WJZY airs most regular-season games, while any home games against an AFC team air on CBS affiliate WBTV. Any appearances on Monday Night Football are simulcast on ABC affiliate WSOC-TV, while any late-season appearances on Thursday Night Football are simulcast on WBTV. Sunday night and some Thursday night games are aired on NBC affiliate WCNC-TV. All preseason games and team specials are televised by the Carolina Panthers Television Network on flagship station WCCB in Charlotte and fourteen affiliate stations throughout the Carolinas, Georgia, Virginia, and Tennessee. The television broadcasting team consists of play-by-play commentator Mike"} +{"qid": "test2052", "pid": "11515978", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"National Football League Christmas games\"\nwith a special Sunday afternoon edition of \"\"Thursday Night Football\"\" exclusive to NFL Network. Under current TV contracts, the only other time two games would be played on Christmas would be when it falls on a Monday (NBC's game is moved from Sunday during that weekend which is not included in flexible scheduling, while ESPN would air its regular Monday night game as well), as it did in 2006 and 2017. Christmas next arrives on a Monday in 2023; the TV rights will be determined in the next contract. In the event that Christmas falls on a Thursday, as it"} +{"qid": "test2052", "pid": "431711", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"Tampa Bay Buccaneers\"\nseason, preseason games not picked up for national broadcast are seen on WTSP Channel 10. WFTV Channel 9 simulcasts the broadcast in the Orlando area. CBS, Fox and NBC games are shown respectively in Tampa Bay on WTSP, WTVT channel 13 and WFLA Channel 8, while they are shown respectively in Orlando on WKMG, WOFL and WESH. \"\"Monday Night Football\"\" games on ESPN and Thursday night games on NFL Network are simulcast locally on WMOR-TV, who also previously carried the Bucs' \"\"Sunday Night Football\"\" games when they were televised on ESPN and TNT; previously, the Bucs' appearances on the cable"} +{"qid": "test2052", "pid": "305588", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"Oakland Raiders\"\npreseason and regular season games in the 2017 season. The Raiders' games are broadcast in the Bay Area on CBS affiliate KPIX (CBS Channel 5) and in Las Vegas on CBS affiliate KLAS-TV (CBS 8) (when playing an AFC opponent) and on Fox Bay Area affiliate KTVU (Fox 2) and Las Vegas affiliate KVVU-TV (Fox 5) (when hosting an NFC opponent), unless the game is blacked out locally. Sunday night and a few Thursday night games are on NBC Bay Area affiliate KNTV (NBC Channel 11) and Las Vegas affiliate KSNV (NBC 3). The Raiders are a beneficiary of league"} +{"qid": "test2052", "pid": "284608", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"National Football League\"\n18 regular season games under its \"\"Thursday Night Football\"\" brand, 16 Thursday-evening contests (10 of which are simulcast on either NBC or CBS) as well as one of the NFL International Series games on a Sunday morning and one of the 2017 Christmas afternoon games. In addition, 10 of the Thursday night games will be streamed live on Amazon Prime. In 2017, the NFL games occupied the top three rates for a 30-second advertisement: $699,602 for Sunday Night Football, $550,709 for Thursday Night Football (NBC), and $549,791 for Thursday Night Football (CBS). The Super Bowl television rights are rotated on"} +{"qid": "test2052", "pid": "9016266", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"Thursday Night Football\"\nboth cable and broadcast television. This ended up causing another controversy, however, as the move by the networks infringed on the exclusivity that would normally have been enjoyed by WWOR-TV in New York City and WCVB-TV in Boston, which were the Giants' and Patriots' respective local over-the-air broadcasters for cable-televised games (the game aired on these stations, as well as on WCBS-TV, WNBC, WBZ-TV and WHDH in the teams' market areas). \"\"Thursday Night Football\"\" games on NFL Network are among the lowest-rated nationally televised NFL broadcasts. Critics have argued that the games televised on \"\"Thursday Night Football\"\" have been of"} +{"qid": "test2052", "pid": "18465644", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"2017 NFL season\"\n\"\"Monday Night Football\"\" and the Pro Bowl. This also was the second and final year of the current \"\"Thursday Night Football\"\" contract with CBS, NBC, and NFL Network. Along with ESPN's Wild Card game on ABC, ESPN announced on May 24, 2017, that the 2018 Pro Bowl would also be simulcast on ABC, marking the return of the Pro Bowl to ABC for the first time since 2003. For the first 9 weeks of the regular season, ESPN2 simulcast ESPN Deportes' Spanish-language \"\"Monday Night Football\"\" broadcasts; this served as filler programming for the channel until the start of its Monday-night"} +{"qid": "test2052", "pid": "4053751", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "WNYW\nAs a result of this, the station became the unofficial \"\"home\"\" station of the New York Giants airing select telecasts. In addition, beginning with the 2018 season, the station will air the team's Thursday night games as part of its newly acquired \"\"Thursday Night Football\"\" package that it shares with NFL Network. Currently, Giants games are rotated between WCBS-TV (through the \"\"NFL on CBS\"\"), WABC-TV (\"\"Monday Night Football\"\"), WPIX (\"\"Monday Night Football\"\" (if WABC-TV is not airing them)), and especially WNBC (through \"\"NBC Sunday Night Football\"\"). WNYW broadcasts 43 hours of locally produced newscasts each week (with 8 hours on"} +{"qid": "test2052", "pid": "6291803", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"Must See TV\"\nsitcoms a night from Monday to Thursday, and two on Sunday. NBC itself would later adopt the more common interpretation; the 2002 retrospective, \"\"20 Years of Must See TV\"\", focused on NBC's overall dominance on Thursday nights from 1982 onwards, and overlooked extensions such as \"\"Must See TV Tuesday.\"\" Thursday nights are coveted by advertisers due to the large proportion of young, affluent viewers that watch television on that night of the week. Of particular interest, movie advertisers promote their upcoming releases to this target demographic on Thursday night, in hopes of influencing what movies they see on the following"} +{"qid": "test2052", "pid": "7530316", "query": "what channel does thursday night football come on regular tv", "answer": "NBC", "passage": "\"MLB Network Showcase\"\non its own cable channels, before opting to sell what is now ABC Family which is now Freeform and to Disney. The games were then moved to ESPN and ESPN2. \"\"Thursday Night Baseball\"\" was replaced with \"\"MLS Primetime Thursday\"\". MLB Network Showcase MLB Network Showcase is the title of a presentation of Major League Baseball on cable and satellite channel MLB Network (self-produced by MLB Network), that premiered on April 9, 2009. Longtime NBC Sports broadcaster Bob Costas is one of the play-by-play voices of the broadcasts. Matt Vasgersian also does play-by-play on some games. Jim Kaat, John Smoltz, and"} +{"qid": "test2055", "pid": "15387536", "query": "who is the chief economic advisor of india", "answer": "Arvind Subramanian", "passage": "\"Fiscal Responsibility and Budget Management Act, 2003\"\nand has pegged it at 1.9% of GDP for 2017–18 from 2% of GDP as mandated by the Fiscal Responsibility and Budget Management Act. Chief Economic Advisor Arvind Subramanian, who was also a member of the FRBM Review Committee, has published his own dissent note in Annexure 5 of the report submitted to the Government of India. The report submitted is accessible on the website of the Department of Economic Affairs under the Ministry of Finance. It consists of 10 chapters, 4 volumes and 6 annexures: Chapters Chapter 1 - \"\"Introduction\"\" Chapter 2 - \"\"Historical Perspective\"\" Chapter 3 - \"\"International"} +{"qid": "test2055", "pid": "19137914", "query": "who is the chief economic advisor of india", "answer": "Arvind Subramanian", "passage": "\"Dan Hammer\"\nas the research assistant to the current Chief Economic Adviser to the Government of India, Arvind Subramanian, and the President of the Center for Global Development, Nancy Birdsall. Hammer received his PhD in environmental economics from the University of California, Berkeley. Dan Hammer Dan Hammer is an environmental economist and winner of the inaugural Pritzker Award. He is a National Geographic Fellow, and served as the Senior Policy Advisor to the U.S. Chief Technology Officer Megan Smith in the Obama Administration. Hammer was the Presidential Innovation Fellow that released the first API listing for NASA, amounting to the data infrastructure"} +{"qid": "test2056", "pid": "6477349", "query": "when did michael jordan return to the nba", "answer": "1995", "passage": "\"1995 NBA Finals\"\nan NBA Finals game with seven. The more experienced Rockets went on to win in overtime and eventually swept the Magic, winning their second consecutive NBA Championship. In achieving this, they earned the distinction of being the only team to win both championships during Michael Jordan's first retirement (although Jordan did return in the closing months of the 1994–95 season), as well as the only one outside Chicago to win multiple championships in the 1990s. The season-ending documentary \"\"Double Clutch\"\" by Hal Douglas, was released by NBA Entertainment to coincide with the Rockets' championship season. The Rockets entered the 1994–95"} +{"qid": "test2056", "pid": "274520", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"Michael Jordan\"\nNBA game, in the summer of 2001 Jordan expressed interest in making another comeback, this time with his new team. Inspired by the NHL comeback of his friend Mario Lemieux the previous winter, Jordan spent much of the spring and summer of 2001 in training, holding several invitation-only camps for NBA players in Chicago. In addition, Jordan hired his old Chicago Bulls head coach, Doug Collins, as Washington's coach for the upcoming season, a decision that many saw as foreshadowing another Jordan return. On September 25, 2001, Jordan announced his return to the NBA to play for the Washington Wizards,"} +{"qid": "test2056", "pid": "274478", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"Michael Jordan\"\nwon his first NBA championship with the Bulls, and followed that achievement with titles in 1992 and 1993, securing a \"\"three-peat\"\". Although Jordan abruptly retired from basketball before the beginning of the 1993–94 NBA season, and started a new career in Minor League Baseball, he returned to the Bulls in March 1995 and led them to three additional championships in 1996, 1997, and 1998, as well as a then-record 72 regular-season wins in the 1995–96 NBA season. Jordan retired for a second time in January 1999, but returned for two more NBA seasons from 2001 to 2003 as a member"} +{"qid": "test2056", "pid": "274507", "query": "when did michael jordan return to the nba", "answer": "1995", "passage": "\"Michael Jordan\"\nshell of the championship team of just two years earlier. Struggling at mid-season to ensure a spot in the playoffs, Chicago was 31–31 at one point in mid-March. The team received help, however, when Jordan decided to return to the Bulls. In March 1995, Jordan decided to quit baseball due to the ongoing Major League Baseball strike, as he wanted to avoid becoming a potential replacement player. On March 18, 1995, Jordan announced his return to the NBA through a two-word press release: \"\"I'm back.\"\" The next day, Jordan took to the court with the Bulls to face the Indiana"} +{"qid": "test2056", "pid": "9364532", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"1988 NBA Playoffs\"\nuntil 2001, which included NBA Finals appearances in 1994 and 1999. On the other hand, the Washington Bullets did not return until 1997, and would not win a playoff game again until 2005 as the Wizards. In the first round against the Cleveland Cavaliers, Michael Jordan scored 50 or more points twice—50 points in Game 1, and 55 points in Game 2—becoming the first player to do so in the same series. Allen Iverson would later equal that feat in the 2001 NBA Playoffs against the Toronto Raptors. This was the first time in NBA history that a game other"} +{"qid": "test2056", "pid": "6094434", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"1997–98 NBA season\"\nNBA Player of the Month. The following players were named NBA Rookie of the Month. The following coaches were named NBA Coach of the Month. 1997–98 NBA season The 1997–98 NBA season was the 52nd season of the National Basketball Association. The season ended with the Chicago Bulls winning their third straight championship and sixth in the last eight years, beating the Utah Jazz 4 games to 2 in the 1998 NBA Finals. It also marked the departure of Michael Jordan and the end of the dynasty for the Chicago Bulls before Jordan returned in 2001 for the Washington Wizards."} +{"qid": "test2056", "pid": "6477352", "query": "when did michael jordan return to the nba", "answer": "1995", "passage": "\"1995 NBA Finals\"\nwith a convincing 3–1 series win over the Boston Celtics. They followed it up with a six-game ouster of Michael Jordan (returning from an 18-month retirement) and the Chicago Bulls in the second round, and in the conference finals, they vanquished the Indiana Pacers in a tough seven-game series. The Orlando Magic won both games in the regular season series: By winning his second straight NBA Finals MVP award, Hakeem Olajuwon became the sixth player to win the award on multiple occasions, joining Willis Reed, Kareem Abdul-Jabbar, Magic Johnson, Larry Bird, and Michael Jordan. Jordan and Olajuwon at the time"} +{"qid": "test2056", "pid": "6094432", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"1997–98 NBA season\"\n1997–98 NBA season The 1997–98 NBA season was the 52nd season of the National Basketball Association. The season ended with the Chicago Bulls winning their third straight championship and sixth in the last eight years, beating the Utah Jazz 4 games to 2 in the 1998 NBA Finals. It also marked the departure of Michael Jordan and the end of the dynasty for the Chicago Bulls before Jordan returned in 2001 for the Washington Wizards. This was the last time that both NBA and NHL regular seasons ended on the same day. Notes Teams in bold advanced to the next"} +{"qid": "test2056", "pid": "5014258", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"NBA on NBC\"\nno Christmas games were played due to the 1998–99 NBA lockout), and the final season of the network's contract in 2001–02 (which included two early season games featuring the return of Michael Jordan with the Washington Wizards). NBC aired the NBA All-Star Game every year (with the exception of 1999, when the game was canceled due to the lockout), usually at 6:00 p.m., Eastern Time. In 2002, NBC aired the game an hour earlier (at 5:00 p.m., Eastern) due to the Winter Olympics later that evening. Starting in 2000, during the NBA Playoffs, NBC would air tripleheaders on Saturdays and"} +{"qid": "test2056", "pid": "5014281", "query": "when did michael jordan return to the nba", "answer": "2001", "passage": "\"NBA on NBC\"\ncontestants, along with Charlotte Hornets guard Baron Davis and Los Angeles Sparks center Lisa Leslie. The 2001–2002 season featured several anomalies, as NBC started their coverage on the first Saturday of the season, for the first time since 1991. The reason for this was NBA legend Michael Jordan's return to playing, this time for the Washington Wizards. NBC covered an early December game featuring Jordan's Wizards as well, which marked the first time a broadcast television network aired more than one pre-Christmas NBA game since CBS in the 1980s. That year also marked the return of Hannah Storm from maternity"} +{"qid": "test2058", "pid": "14649866", "query": "who wins the final fight in real steel", "answer": "Zeus", "passage": "\"Real Steel\"\nto witness the fight. Zeus starts the fight by knocking Atom down with its first punch, but Atom gets up, and Zeus continues its assault, knocking Atom down multiple times. However, each time Atom gets back up, and eventually is able to land its first punch allowing Atom to survive the first round. Ricky, who had made a bet with a friend of Charlie's of $100,000 that Atom would not last the round, tries to slip away, but is cornered by the fight's bookmakers. The fight continues with Atom landing multiple punches but also getting knocked down many times and"} +{"qid": "test2059", "pid": "9814762", "query": "who sings the wire season 5 theme song", "answer": "Steve Earle", "passage": "\"Street-level characters of The Wire\"\nto again help him with his sobriety and grief. In season five he acts as Bubbles' sponsor, pushing him to be more open about his struggles and the death of Sherrod. Walon is played by singer/songwriter and recovering heroin addict Steve Earle. Earle also performs the theme song for Season 5, and his track \"\"I Feel Alright\"\" is featured in the montage at the end of Season 2. In season one Johnny is Bubbles' best friend and a drug addict with notoriously bad luck. He is naive and enthusiastic for \"\"the game\"\", allowing Bubbles to play the role of teacher."} +{"qid": "test206", "pid": "17801266", "query": "when is the womens ice skating for the olympics", "answer": "23 February", "passage": "\"Short track speed skating at the 2002 Winter Olympics – Women's 1000 metres\"\nShort track speed skating at the 2002 Winter Olympics – Women's 1000 metres The women's 1000 metres in short track speed skating at the 2002 Winter Olympics took place from 20 to 23 February at the Salt Lake Ice Center. Prior to this competition, the existing world and Olympic records were as follows: The following new Olympic records were set during this competition. The first round was held on 20 February. There were eight heats, with the top two finishers moving on to the quarterfinals. The quarterfinals were held on 23 February. The top two finishers in each of the"} +{"qid": "test2060", "pid": "460178", "query": "where are the washington redskins based out of", "answer": "the Washington metropolitan area", "passage": "\"Washington Redskins\"\nWashington Redskins The Washington Redskins are a professional American football team based in the Washington metropolitan area. The Redskins compete in the National Football League (NFL) as a member of the National Football Conference (NFC) East division. The team plays its home games at FedExField in Landover, Maryland; its headquarters and training facility are at Inova Sports Performance Center at Redskins Park in Ashburn, Virginia and the Redskins Complex in Richmond, Virginia, respectively. The Redskins have played more than one thousand games since their founding in , and are one of only five franchises in the NFL to record over"} +{"qid": "test2060", "pid": "460300", "query": "where are the washington redskins based out of", "answer": "the Washington metropolitan area", "passage": "\"Washington Redskins\"\nthe Carolina Panthers on November 4, 21–13. Other than these exceptions, this \"\"Redskins Rule\"\" has proven true since 1936 when they won and incumbent Franklin D. Roosevelt won re-election, prior to the Redskins' move from Boston in 1937. The rule was discovered in 2000 by Steve Hirdt, former executive vice president of the Elias Sports Bureau, while searching for discussion ideas for a game between the Redskins and Tennessee Titans. Washington Redskins The Washington Redskins are a professional American football team based in the Washington metropolitan area. The Redskins compete in the National Football League (NFL) as a member of"} +{"qid": "test2061", "pid": "655024", "query": "when did the battle of bull run start", "answer": "July 21, 1861", "passage": "\"Second Battle of Bull Run\"\nSecond Battle of Bull Run The Second Battle of Bull Run or Battle of Second Manassas was fought August 28–30, 1862 in Prince William County, Virginia, as part of the American Civil War. It was the culmination of the Northern Virginia Campaign waged by Confederate Gen. Robert E. Lee's Army of Northern Virginia against Union Maj. Gen. John Pope's Army of Virginia, and a battle of much larger scale and numbers than the First Battle of Bull Run (or \"\"First Manassas\"\") fought on July 21, 1861 on the same ground. Following a wide-ranging flanking march, Confederate Maj. Gen. Thomas J."} +{"qid": "test2061", "pid": "1755313", "query": "when did the battle of bull run start", "answer": "July 21, 1861", "passage": "\"First Battle of Bull Run\"\nhundred each. Two Confederate brigade commanders, Jackson and Edmund Kirby-Smith, were wounded in the battle. Jackson was shot in the hand, so he remained on the battlefield. No Union officers above the regimental level were killed; two division commanders (Samuel Heintzelman and David Hunter), and one brigade commander (Orlando Willcox) were wounded. \"\"Union casualties at the battle of Bull Run, July 21, 1861.\"\" \"\"Union artillery lost in the battle of Bull Run, July 21, 1861.\"\" \"\"Confederate casualties at the battle of Bull Run, July 21, 1861.\"\" Union forces and civilians alike feared that Confederate forces would advance on Washington, D.C.,"} +{"qid": "test2062", "pid": "18567776", "query": "who is playing halftime show super bowl 2018", "answer": "Justin Timberlake", "passage": "\"Super Bowl LII halftime show\"\nSuper Bowl LII halftime show The Super Bowl LII Halftime Show (officially known as the Pepsi Super Bowl LII Halftime Show) took place on February 4, 2018 at U.S. Bank Stadium in Minneapolis, Minnesota, as part of Super Bowl LII. Justin Timberlake was the featured performer, as confirmed by the National Football League (NFL) on October 22, 2017. It was televised nationally by NBC. It received four nominations at the 70th Primetime Emmy Awards. The show began with Jimmy Fallon introducing Justin Timberlake, followed by a video screen depicting Timberlake performing \"\"Filthy\"\" in a club setting below the field level"} +{"qid": "test2064", "pid": "6051258", "query": "who sings oh what a night late december back in 63", "answer": "the Four Seasons", "passage": "\"December, 1963 (Oh, What a Night)\"\nDecember, 1963 (Oh, What a Night) \"\"December, 1963 (Oh, What a Night)\"\" is a song by the Four Seasons, written by original Four Seasons keyboard player Bob Gaudio and his future wife Judy Parker, produced by Gaudio, and included on the group's album, \"\"Who Loves You\"\" (1975). The song features drummer Gerry Polci on lead vocals, with the usual lead Frankie Valli singing the bridge sections and backing vocals, and bass player Don Ciccone (former lead singer of The Critters) singing the falsetto part (\"\"And I felt a rush like a rolling ball of thunder / Spinning my head around"} +{"qid": "test2064", "pid": "6051263", "query": "who sings oh what a night late december back in 63", "answer": "the Four Seasons", "passage": "\"December, 1963 (Oh, What a Night)\"\nvocals, not heard on any other version of the song. British pop/dance act Clock released a dance cover of \"\"Oh What a Night\"\" in 1996. It peaked at number 13 in Ireland, number 12 in Scotland and number 13 in the UK. December, 1963 (Oh, What a Night) \"\"December, 1963 (Oh, What a Night)\"\" is a song by the Four Seasons, written by original Four Seasons keyboard player Bob Gaudio and his future wife Judy Parker, produced by Gaudio, and included on the group's album, \"\"Who Loves You\"\" (1975). The song features drummer Gerry Polci on lead vocals, with the"} +{"qid": "test2064", "pid": "6051261", "query": "who sings oh what a night late december back in 63", "answer": "the Four Seasons", "passage": "\"December, 1963 (Oh, What a Night)\"\nfor 1976. On April 10 the same year, it topped the \"\"RPM\"\" National Top Singles Chart in Canada. Drummer Gerry Polci sang lead with bassist Don Ciccone and long-time frontman Frankie Valli singing the bridge and refrain. It was the Four Seasons' final song, as a group, to reach number one. (Valli would have one final chart-topper as a solo act in 1978 with the theme song to the film \"\"Grease\"\".) In both 1988 and 1993, Dutch DJ and producer Ben Liebrand remixed the song and re-released it as a single. The 1993 re-release spent 27 weeks on the Hot"} +{"qid": "test2065", "pid": "6188532", "query": "who sings the christmas song mary did you know", "answer": "Michael English", "passage": "\"Mary, Did You Know?\"\nMary, Did You Know? \"\"Mary, Did You Know?\"\" is a Christmas song with lyrics written by Mark Lowry and music written by Buddy Greene. It was originally recorded by Christian recording artist Michael English on his self-titled debut solo album in 1991 (English and Lowry were both members of the Gaither Vocal Band at the time). It reached No. 6 on CCM Magazine's AC Chart. Lowry would record the song several times himself, most notably with the Gaither Vocal Band on their 1998 Christmas album \"\"Still the Greatest Story Ever Told\"\". The song has since gone on to become a"} +{"qid": "test2065", "pid": "6188536", "query": "who sings the christmas song mary did you know", "answer": "Michael English", "passage": "\"Mary, Did You Know?\"\ncriticize it for what they perceive as a lack of scriptural or theological depth. For example, Lutheran writer Holly Scheer, in addressing the rhetorical-question title of the song writes that those familiar with \"\"the biblical account of Christ’s conception and birth shouldn’t need to ask if Mary knew, because the Bible plainly tells us she did.\"\" Mary, Did You Know? \"\"Mary, Did You Know?\"\" is a Christmas song with lyrics written by Mark Lowry and music written by Buddy Greene. It was originally recorded by Christian recording artist Michael English on his self-titled debut solo album in 1991 (English and"} +{"qid": "test2067", "pid": "19067853", "query": "who produced the movie i can only imagine", "answer": "Kevin Downes", "passage": "\"Erwin Brothers\"\nErwin Brothers Andrew and Jon Erwin, known as the Erwin Brothers, are American Christian film directors, screenwriters and film producers known for such films as \"\"Woodlawn\"\", \"\"October Baby\"\", \"\"Moms' Night Out\"\" and \"\"I Can Only Imagine\"\". Their most successful movie to date is \"\"I Can Only Imagine\"\", which grossed a worldwide total of $83.5 million against a production budget of $7 million, with only 1629 theaters for its opening week. The Erwin brothers are the grandsons of Henry Erwin a Medal Of Honor recipient from World War II. In 2017 the brothers and their filmmaking partner Kevin Downes announced the"} +{"qid": "test2067", "pid": "16226131", "query": "who produced the movie i can only imagine", "answer": "Cindy Bond", "passage": "\"Mission Pictures International\"\nfeature film \"\"I Can Only Imagine\"\" starring Dennis Quaid, which released through Lionsgate/Roadside Attractions on March 16, 2018. \"\"I Can Only Imagine\"\" shattered industry box office predictions to take the #3 spot at the U.S. box office in its first 2 weeks of release. \"\"I Can Only Imagine\"\" grossed over $83 million to date in domestic ticket sales, a rare A+ Cinemascore and become the #3 Music Biopic and #6 Christian Film in modern day history. Mission Pictures International was founded in 2008 by entertainment industry veterans Cindy Bond and Chevonne O'Shaughnessy. The company specializes in distributing family friendly films"} +{"qid": "test2069", "pid": "11366390", "query": "who won the most gold metals in olympics", "answer": "Michael Phelps", "passage": "\"United States at the 2008 Summer Olympics\"\nhighest total medal count, and won more silver and bronze medals than any other participating nation. This games also saw a gold medal record for U.S. swimmer Michael Phelps, who won 8 golds surpassing Mark Spitz's record of 7 golds in a single Olympic event in 1972. Phelps also surpassed Spitz, Larisa Latynina of the USSR, Paavo Nurmi of Finland, and U.S. sprinter Carl Lewis to become the current record holder for the most Olympic gold medals (14). The United States also saw milestones in women's swimming. Natalie Coughlin won 6 medals in Beijing, the most for a female Olympic"} +{"qid": "test2069", "pid": "12350315", "query": "who won the most gold metals in olympics", "answer": "Michael Phelps", "passage": "\"North Baltimore Aquatic Club\"\nHomeland. NBAC has produced eight Olympic swimmers overall. The organization's best known swimmer is Michael Phelps, who initially competed in the 2000 Sydney Games, then won six gold and two bronze medals at the 2004 Athens Games. In the 2008 Beijing Games Phelps broke seven world records and won the gold medal in all eight events that he competed in. At the 2012 London Games, he earned four gold and two silver medals. Phelps holds the records for most career Olympic gold medals in any sport and the most gold medals in a single Olympic Games, and the record for"} +{"qid": "test207", "pid": "9309388", "query": "what position did doug peterson play in the nfl", "answer": "quarterback", "passage": "\"Paul Peterson (American football)\"\ncoaching staff as the quarterbacks and wide receivers coach. Peterson was hired as the 21st head football coach at Snow College on January 23, 2017. He then took the Head coaching position at Dixie State University on December 2nd, 2018. Peterson is the sixth of ten children. His older brother, Charlie, is a former Brigham Young University (BYU) quarterback who played professionally in the National Football League (NFL), Arena Football League (AFL), Canadian Football League (CFL), and NFL Europe. Paul Peterson (American football) Paul Peterson (born July 29, 1980) is a former quarterback for the Boston College Eagles. He was"} +{"qid": "test207", "pid": "6584685", "query": "what position did doug peterson play in the nfl", "answer": "quarterback", "passage": "\"Carl Peterson\"\nGoodell. Peterson's appointment by Commissioner Goodell was met with the approval of NFL Players Association Executive Director DeMaurice Smith. Peterson's USA Football chairman position was previously held by the late AFL quarterback and U.S. Congressman Jack Kemp. USA Football is the sport's national governing body in the United States, endowed by the NFL and NFL Players Association in 2002 through the NFL Youth Football Fund. USA Football strengthens America's favorite sport on youth and amateur levels through innovative resources to advance player safety and improve player, coach and youth league development. USA Football members — encompassing the high school and"} +{"qid": "test2071", "pid": "11000318", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"Anti-nuclear movement in the United States\"\nenergy are both available in abundance—and new policies and technologies are rapidly making them more economically competitive with fossil fuels. In combination, these energy options represent the most robust alternative to the current energy system, capable of providing the diverse array of energy services that a modern economy requires. Given the urgency of the climate problem, that is indeed convenient. Selected other notable individuals who have expressed reservations about nuclear power, nuclear weapons, and/or uranium mining in the US include: In November 2009, \"\"The Washington Post\"\" reported that nuclear power is emerging as \"\"... perhaps the world's most unlikely weapon"} +{"qid": "test2071", "pid": "297005", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"Nuclear power\"\npart because the economics of nuclear power have become more difficult. Regional differences in the use of nuclear power are large. The United States produces the most nuclear energy in the world, with nuclear power providing 19% of the electricity it consumes, while France produces the highest percentage of its electrical energy from nuclear reactors—80% as of 2006. In the European Union as a whole nuclear power provides 30% of the electricity. Nuclear power is the single largest low-carbon electricity source in the United States, and accounts for two-thirds of the European Union's low-carbon electricity. Nuclear energy policy differs among"} +{"qid": "test2071", "pid": "12111887", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"Energy market\"\nshowed the United States used around 3 trillion kilowatt hours of energy that year. Traditionally, the energy sources used to fulfill the United States energy needs have been oil, coal, nuclear, renewable energy, and natural gas. The breakdown of each of these fuels as a percentage of the overall consumption in the year 1993, according to the data given by the EIA is as follows; coal was 53%, nuclear energy was 19%, natural gas was 13%, renewable energy was 11%, and oil provided 4% of the overall energy needs. In the most recent year where data was analyzed, 2011, the"} +{"qid": "test2071", "pid": "9738329", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"Energy security\"\ndebate over the timing of peak uranium does exist. Nuclear power reduces carbon emissions. Although a very viable resource, nuclear power can be a controversial solution because of the risks associated with it. Another factor in the debate with nuclear power is that many people or companies simply do not want any nuclear energy plant or radioactive waste near them. Currently, nuclear power provides 13% of the world's total electricity. The most notable use of nuclear power within the United States is in U.S. Navy aircraft carriers and submarines, which have been exclusively nuclear-powered for several decades. These classes of"} +{"qid": "test2071", "pid": "6129977", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"Fluor Corporation\"\nthe neighboring region of Angola and declining copper prices. In 1979, Fluor had 13 projects for building United States power plants and had served more than half of the world's government-owned oil companies. Fluor has been working on the cleanup and shutdown of atomic energy plants in Ohio and Washington since the 1990s. In 1992, Fluor won a contract with the United States Energy Department to clean up nuclear waste. By 1996 Hanford was the most contaminated nuclear site in the US and the US Department of Energy was conducting a $50 billion to $60 billion cleanup of the site."} +{"qid": "test2071", "pid": "7115858", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"International Framework for Nuclear Energy Cooperation\"\nbypass the continued delays with the Yucca Mountain nuclear waste repository, while erroneously claiming to enhance global nuclear security. International Framework for Nuclear Energy Cooperation The International Framework for Nuclear Energy Cooperation (IFNEC) formerly the Global Nuclear Energy Partnership (GNEP) began as a U.S. proposal, announced by United States Secretary of Energy Samuel Bodman on February 6, 2006, to form an international partnership to promote the use of nuclear power and close the nuclear fuel cycle in a way that reduces nuclear waste and the risk of nuclear proliferation. This proposal would divide the world into \"\"fuel supplier nations,\"\" which"} +{"qid": "test2071", "pid": "7115850", "query": "where is nuclear energy used most in the world", "answer": "United States", "passage": "\"International Framework for Nuclear Energy Cooperation\"\nInternational Framework for Nuclear Energy Cooperation The International Framework for Nuclear Energy Cooperation (IFNEC) formerly the Global Nuclear Energy Partnership (GNEP) began as a U.S. proposal, announced by United States Secretary of Energy Samuel Bodman on February 6, 2006, to form an international partnership to promote the use of nuclear power and close the nuclear fuel cycle in a way that reduces nuclear waste and the risk of nuclear proliferation. This proposal would divide the world into \"\"fuel supplier nations,\"\" which supply enriched uranium fuel and take back spent fuel, and \"\"user nations,\"\" which operate nuclear power plants. As GNEP"} +{"qid": "test2072", "pid": "313805", "query": "when was the first super bowl the eagles ever won", "answer": "1948", "passage": "\"Philadelphia Eagles\"\nPhiladelphia Eagles The Philadelphia Eagles are a professional American football franchise based in Philadelphia, Pennsylvania. The Eagles compete in the National Football League (NFL) as a member club of the league's National Football Conference (NFC) East division. They are Super Bowl champions, having won Super Bowl LII; their first Super Bowl in franchise history, and their fourth NFL title overall, after winning the Championship Game in 1948, 1949, and 1960. The franchise was established in 1933 as a replacement for the bankrupt Frankford Yellow Jackets, when a group led by Bert Bell secured the rights to an NFL franchise in"} +{"qid": "test2072", "pid": "19807796", "query": "when was the first super bowl the eagles ever won", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test2072", "pid": "19807846", "query": "when was the first super bowl the eagles ever won", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nthe Patriots' last hopes. The Philadelphia Eagles defeated the Patriots by a score of 41–33. Nick Foles also was named Super Bowl MVP after the game. With this win, the Eagles finally won their first Super Bowl, and their first NFL title since 1960. A Super Bowl victory parade took place four days later on February 8. 2017 Philadelphia Eagles season The 2017 Philadelphia Eagles season was the franchise's 85th season in the National Football League, the 15th playing their home games at Lincoln Financial Field, and the second under head coach Doug Pederson. The Eagles improved their 7–9 record"} +{"qid": "test2072", "pid": "19807797", "query": "when was the first super bowl the eagles ever won", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nwon 24–21. Backup quarterback Nick Foles was named Super Bowl MVP and became the first backup to receive this award since his opponent, Tom Brady, did in Super Bowl XXXVI. The Eagles defeated both Super Bowl teams from the previous NFL season (the New England Patriots and the Atlanta Falcons) in the playoffs. They also defeated both teams who had beaten them in their only two previous Super Bowl appearances. They defeated the Oakland Raiders in the regular season, who beat them in Super Bowl XV and the Patriots in the Super Bowl, who previously beat them in Super Bowl"} +{"qid": "test2072", "pid": "17473814", "query": "when was the first super bowl the eagles ever won", "answer": "2017", "passage": "\"Super Bowl LII\"\nSuper Bowl LII Super Bowl LII was an American football game played to determine the champion of the National Football League (NFL) for the 2017 season. The National Football Conference (NFC) champion Philadelphia Eagles defeated the American Football Conference (AFC) and defending Super Bowl LI champion New England Patriots, 41–33, to win their first Super Bowl and their first NFL title since 1960. The game was played on February 4, 2018, at U.S. Bank Stadium in Minneapolis, Minnesota. This was the second time that a Super Bowl was played in Minneapolis, the northernmost city to ever host the event, after"} +{"qid": "test2072", "pid": "17161894", "query": "when was the first super bowl the eagles ever won", "answer": "2017", "passage": "\"Isaac Seumalo\"\nOn April 29, 2016, the Philadelphia Eagles selected Seumalo in the third round (79th overall) of the 2016 NFL Draft. In 2017, Seumalo played in 14 games, starting two at left guard. He won his first Super Bowl ring when the Eagles defeated the New England Patriots 41-33 in Super Bowl LII. Isaac Seumalo Isaac Seumalo (born October 29, 1993) is an American football guard and center for the Philadelphia Eagles of the National Football League. He played college football at Oregon State University. A native of Corvallis, Oregon, Seumalo attended Corvallis High School, where he was an 5A First"} +{"qid": "test2072", "pid": "313880", "query": "when was the first super bowl the eagles ever won", "answer": "1948", "passage": "\"Philadelphia Eagles\"\nstarring Danny DeVito makes several references to the Philadelphia Eagles, most notably Season 3, Episode 2 – \"\"The Gang Gets Invincible,\"\" the title being a reference to the Wahlberg film. Philadelphia Eagles The Philadelphia Eagles are a professional American football franchise based in Philadelphia, Pennsylvania. The Eagles compete in the National Football League (NFL) as a member club of the league's National Football Conference (NFC) East division. They are Super Bowl champions, having won Super Bowl LII; their first Super Bowl in franchise history, and their fourth NFL title overall, after winning the Championship Game in 1948, 1949, and 1960."} +{"qid": "test2072", "pid": "6224942", "query": "when was the first super bowl the eagles ever won", "answer": "2017", "passage": "\"History of the Philadelphia Eagles\"\nfirst time since the 2004 season. The Eagles would face Tom Brady and the New England Patriots in a rematch of Super Bowl XXXIX at Super Bowl LII. The Eagles would end up winning the game 41-33 to give the Eagles their first Super Bowl Championship and their first championship since the 1960 season before the NFL-AFL merger. Nick Foles would be named Super Bowl MVP. The Eagles came back from a successful 2017 season hoping to become the first repeat Super Bowl victors since the New England Patriots during their 2003 and 2004 season. Before the season started many"} +{"qid": "test2073", "pid": "10336645", "query": "what is the name of the chief justice of ghana", "answer": "Sophia Akuffo", "passage": "\"Chief Justice of Ghana\"\nis expected to propose judicial reforms to the Ghana government to help improve the level of administration of justice and efficiency in the Judiciary. It is also expected to be a forum to enhance the administration of justice in Ghana. The current Chief Justice is Sophia Akuffo. She succeeded Georgina Wood who was Ghana's first female Chief Justice. Akuffo was sworn in as Chief Justice by President Akufo-Addo on 19 June 2017. Since its inception in 1876, the Supreme Court has had 25 Chief Justices, including 13 in the Gold Coast era. Justice Francis Yaonasu Kpegah, the most senior of"} +{"qid": "test2073", "pid": "7819403", "query": "what is the name of the chief justice of ghana", "answer": "Sophia Akuffo", "passage": "\"Sophia Akuffo\"\nre-elected until 2014 and served as Vice-President and President of the Court. Akuffo wrote \"\"The Application of Information & Communication Technology in the Judicial Process – the Ghanaian Experience\"\", a presentation to the African Judicial Network Ghana (2002). Akuffo was nominated as Chief Justice on 11 May 2017 by Nana Akufo-Addo subject to approval by Parliament. She was sworn in by President Akufo-Addo on 19 June 2017 as the thirteenth Chief Justice of the Republic of Ghana. Akuffo is a royal from Akropong-Akuapem in the Eastern Region, has a daughter and two grandchildren. Sophia Akuffo Sophia Abena Boafoa Akuffo (born"} +{"qid": "test2073", "pid": "11614321", "query": "what is the name of the chief justice of ghana", "answer": "Sophia Akuffo", "passage": "\"Women in Ghana\"\nelected. However, Ghanian women still make up only 13.5% of Parliament. In the courts, the Chief Justice is Sophia Akuffo, the second women to be appointed to this position. The first women to be appointed as Chief Justice was Georgina Wood. Additionally, women only make up a small percentage of the total judges in high and Supreme Courts. In 2009, 23% of Supreme Court judges were women. There has been a slow increase of women in Parliament since the adoption of the multiparty system in 1992. Ghana has taken multiple steps to increase equality in the political sphere. For example,"} +{"qid": "test2075", "pid": "1820695", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"Jack Nicklaus\"\nbecame the eighth honorary starter since the tradition began in 1963 when Nicklaus won his first green jacket. The Big Three were once again reunited in Augusta for the 2012 Masters Tournament as Gary Player joined Palmer and Nicklaus to kickoff the 76th renewal of the major tournament. Nicklaus, through his global reach in design and development, as well as the worldwide marketing and licensing of his golf and lifestyle brand, is atop \"\"Golf Inc.\"\" magazine's coveted list of the \"\"Most Powerful People in Golf\"\" for a record-extending sixth consecutive year. He is the only golf industry figure who has"} +{"qid": "test2075", "pid": "4175379", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"Fred Couples\"\n2006, Couples challenged at Augusta, making a Sunday run at what would have been his second green jacket before finally losing to eventual winner Phil Mickelson, with whom he was paired in the final round. Had Couples won, he would have been the oldest player ever to win the Masters at age —supplanting Jack Nicklaus, who, coincidentally, won his final Masters 20 years earlier and also at the age of 46. His competitiveness in the tournament was an encouraging sign for his career. \"\"I didn't hit the ball like I was 46,\"\" Couples said. Couples' part in the USA 1993"} +{"qid": "test2075", "pid": "11728889", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1981 Masters Tournament\"\n1981 Masters Tournament The 1981 Masters Tournament was the 45th Masters Tournament, held April 9–12 at Augusta National Golf Club in Augusta, Georgia. Tom Watson won his second green jacket and fifth major title by two strokes over Jack Nicklaus and Johnny Miller. Five-time champion Nicklaus shot a bogey-free 65 on Friday and led by four strokes after 36 holes, but a 75 on Saturday put him a stroke behind Watson entering the final round. It was the fourth runner-up finish for Nicklaus at the Masters and the third for Miller. Nicklaus won his sixth Masters five years later in"} +{"qid": "test2075", "pid": "11728551", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1977 Masters Tournament\"\n1977 Masters Tournament The 1977 Masters Tournament was the 41st Masters Tournament, held April 7–10 at Augusta National Golf Club in Augusta, Georgia. Tom Watson, age 27, won the first of his two green jackets, two strokes ahead of runner-up Jack Nicklaus. The two were tied after 68 holes, then Watson birdied the par-4 17th. Needing a birdie to tie, Nicklaus bogeyed the final hole, one of 19 times in his career that he was the runner-up in a major championship. It was the second of Watson's eight major championships, and he won a second Masters in 1981. The pair"} +{"qid": "test2075", "pid": "12585860", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1975 PGA Championship\"\n1975 PGA Championship The 1975 PGA Championship was the 57th PGA Championship, played August 7–10 at the South Course of Firestone Country Club in Akron, Ohio. Jack Nicklaus, an Ohio native, won the fourth of his five PGA Championships and the fourteenth of his eighteen major titles, two strokes ahead of runner-up Bruce Crampton. Nicklaus was the 54-hole leader, four strokes ahead of Crampton. It was the second major of the year for Nicklaus, who won his fifth green jacket in April at the Masters, and the fourth of five times that he won two majors in the same calendar"} +{"qid": "test2075", "pid": "1375360", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"Masters Tournament\"\nthe Masters from 1960 through 1978, winning the event 11 times among them during that span. After winning by one stroke in 1958, Palmer won by one stroke again in 1960 in memorable circumstances. Trailing Ken Venturi by one shot in the 1960 event, Palmer made birdies on the last two holes to prevail. Palmer would go on to win another two Masters in 1962 and 1964. Jack Nicklaus emerged in the early 1960s, and served as a rival to the popular Palmer. Nicklaus won his first green jacket in 1963, defeating Tony Lema by one stroke. Two years later,"} +{"qid": "test2075", "pid": "10938161", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1963 Masters Tournament\"\nGeorge Bayer won the Par 3 contest with a score of 23. \"\"Thursday, April 4, 1963\"\" \"\"Friday, April 5, 1963\"\" \"\"Saturday, April 6, 1963\"\" \"\"Sunday, April 7, 1963\"\" \"\"Cumulative tournament scores, relative to par\"\" 1963 Masters Tournament The 1963 Masters Tournament was the 27th Masters Tournament, held April 4–7 at Augusta National Golf Club in Augusta, Georgia. 84 players entered the tournament and 50 made the cut at eight-over-par (152). Jack Nicklaus, 23, won the first of his record six Green Jackets with a three-foot (0.9 m) par putt on the final hole to finish one stroke ahead of runner-up"} +{"qid": "test2075", "pid": "10802914", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1948 Masters Tournament\"\nJones, then age 46. It was also the last Masters that did not immediately present the iconic green jacket to the winner. The nine winners of the first twelve tournaments received their green jackets in 1949. The five-stroke victory margin was matched by Ben Hogan in 1953; the record was raised to seven in 1955 by Cary Middlecoff, nine in 1965 by Jack Nicklaus, and twelve by Tiger Woods in 1997. \"\"Thursday, April 8, 1948\"\" \"\"Friday, April 9, 1948\"\" \"\"Saturday, April 10, 1948\"\" \"\"Sunday, April 11, 1948\"\" \"\"Cumulative tournament scores, relative to par\"\" 1948 Masters Tournament The 1948 Masters Tournament"} +{"qid": "test2075", "pid": "11665689", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"2005 Masters Tournament\"\n2005 Masters Tournament The 2005 Masters Tournament was the 69th Masters Tournament, played from April 7–10 at Augusta National Golf Club in Augusta, Georgia. Tiger Woods, 29, won his fourth green jacket on the first hole of a playoff with Chris DiMarco. Rain was a factor the whole week, and delayed much of the play. The purse was $7.0 million with a winner's share of $1.26 million. It was the ninth of Woods' fourteen major championships. This Masters was the last as competitors for three former champions: Tommy Aaron (1973), Billy Casper (1970), and six-time winner Jack Nicklaus. Ryan Moore"} +{"qid": "test2075", "pid": "12585862", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1975 PGA Championship\"\n1975\"\" \"\"Saturday, August 9, 1975\"\" \"\"Sunday, August 10, 1975\"\" Source: 1975 PGA Championship The 1975 PGA Championship was the 57th PGA Championship, played August 7–10 at the South Course of Firestone Country Club in Akron, Ohio. Jack Nicklaus, an Ohio native, won the fourth of his five PGA Championships and the fourteenth of his eighteen major titles, two strokes ahead of runner-up Bruce Crampton. Nicklaus was the 54-hole leader, four strokes ahead of Crampton. It was the second major of the year for Nicklaus, who won his fifth green jacket in April at the Masters, and the fourth of five"} +{"qid": "test2075", "pid": "10936808", "query": "who has won the most masters green jackets", "answer": "Jack Nicklaus", "passage": "\"1965 Masters Tournament\"\n1965 Masters Tournament The 1965 Masters Tournament was the 29th Masters Tournament, held April 8–11 at Augusta National Golf Club in Augusta, Georgia. Jack Nicklaus, age 25, won the second of his six Masters titles with a score of 271 (−17), at the time a tournament record, three strokes better than Ben Hogan's 274 in 1953. It was equaled in 1976 by Raymond Floyd and surpassed in 1997 by Tiger Woods' 270 (−18). Nicklaus' winning margin of nine strokes also stood until 1997, when Woods was victorious by twelve strokes to win his first green jacket. It was the fourth"} +{"qid": "test2076", "pid": "6048063", "query": "what is the latest edition of the intelligent investor", "answer": "2003", "passage": "\"The Intelligent Investor\"\nversion of the Revised Edition of \"\"The Intelligent Investor\"\" was also released on July 7, 2015. 2003 edition The Intelligent Investor The Intelligent Investor by Benjamin Graham, first published in 1949, is a widely acclaimed book on value investing. \"\"The Intelligent Investor\"\" is based on value investing, an investment approach Graham began teaching at Columbia Business School in 1928 and subsequently refined with David Dodd. This sentiment was echoed by other Graham disciples such as Irving Kahn and Walter Schloss. \"\"The Intelligent Investor\"\" also marks a significant deviation to stock selection from Graham's earlier works, such as \"\"Security Analysis\"\". He"} +{"qid": "test2076", "pid": "6048062", "query": "what is the latest edition of the intelligent investor", "answer": "Fourth Revised Edition", "passage": "\"The Intelligent Investor\"\nmarket folly rather than participate in it. The investor is advised to concentrate on the real life performance of his companies and receiving dividends, rather than be too concerned with Mr. Market's often irrational behavior. Since the work was published in 1949 Graham revised it several times, most recently in 1971–72. This was published in 1973 as the \"\"Fourth Revised Edition\"\" , and it included a preface and appendices by Warren Buffett. Graham died in 1976. Commentaries and new footnotes were added to the fourth edition by Jason Zweig, and this new revision was published in 2003. An unabridged audio"} +{"qid": "test2077", "pid": "1638508", "query": "what goes on the bottom of shepherd's pie", "answer": "mashed potato", "passage": "\"Shepherd's pie\"\nwhen the potato was being introduced as an edible crop affordable for the poor (cf. \"\"cottage\"\", meaning a modest dwelling for rural workers). The term \"\"shepherd's pie\"\" did not appear until 1854, and was used synonymously with cottage pie, regardless of whether the meat was beef or mutton. In the United Kingdom, the term \"\"shepherd's pie\"\" is now commonly used when the meat is lamb. In early cookery books, the dish was a means of using leftover roasted meat of any kind, and the pie dish was lined on the sides and bottom with mashed potato, as well as having"} +{"qid": "test2077", "pid": "2762881", "query": "what goes on the bottom of shepherd's pie", "answer": "mashed potato", "passage": "\"Pâté chinois\"\nprepare it, for example, by laying the three ingredients side by side instead of layering them, or forgetting to mash the potatoes. Pâté chinois Pâté chinois () is a French Canadian dish similar to English cottage pie or shepherd's pie, or French \"\"hachis Parmentier\"\". The dish is made with layered ground beef (sometimes mixed with sautéed diced onions) on the bottom layer, canned corn (either whole-kernel, creamed, or a mix) for the middle layer, and mashed potatoes on top. Seasonings may be added to the top. Variations may include reversing the layering of ingredients with potatoes at the bottom, then"} +{"qid": "test2077", "pid": "2762878", "query": "what goes on the bottom of shepherd's pie", "answer": "mashed potato", "passage": "\"Pâté chinois\"\nPâté chinois Pâté chinois () is a French Canadian dish similar to English cottage pie or shepherd's pie, or French \"\"hachis Parmentier\"\". The dish is made with layered ground beef (sometimes mixed with sautéed diced onions) on the bottom layer, canned corn (either whole-kernel, creamed, or a mix) for the middle layer, and mashed potatoes on top. Seasonings may be added to the top. Variations may include reversing the layering of ingredients with potatoes at the bottom, then meat, topped with cream corn; adding diced bell peppers to the ground beef, and serving the dish with pickled eggs or beets."} +{"qid": "test2077", "pid": "1638507", "query": "what goes on the bottom of shepherd's pie", "answer": "mashed potato", "passage": "\"Shepherd's pie\"\nShepherd's pie Shepherd's pie or cottage pie is a meat pie with a crust or topping of mashed potato. The recipe has many variations, but the defining ingredients are minced red meat (commonly, \"\"cottage pie\"\" refers to beef and \"\"shepherd's pie\"\" to lamb), cooked in a gravy or sauce with onions and sometimes other vegetables, such as peas, celery or carrots, and topped with a layer of mashed potato before it is baked. The pie is sometimes also topped with grated cheese to create a layer of melted cheese on top. The term \"\"cottage pie\"\" was in use by 1791,"} +{"qid": "test2077", "pid": "1638509", "query": "what goes on the bottom of shepherd's pie", "answer": "mashed potato", "passage": "\"Shepherd's pie\"\na mashed potato crust on top. Other potato-topped pies include: Shepherd's pie Shepherd's pie or cottage pie is a meat pie with a crust or topping of mashed potato. The recipe has many variations, but the defining ingredients are minced red meat (commonly, \"\"cottage pie\"\" refers to beef and \"\"shepherd's pie\"\" to lamb), cooked in a gravy or sauce with onions and sometimes other vegetables, such as peas, celery or carrots, and topped with a layer of mashed potato before it is baked. The pie is sometimes also topped with grated cheese to create a layer of melted cheese on"} +{"qid": "test2077", "pid": "9521017", "query": "what goes on the bottom of shepherd's pie", "answer": "mashed potato", "passage": "\"Fish pie\"\nmashed potatoes (sometimes with cheese or vegetables such as onions and leeks added) is used to cover the fish during baking. The dish is sometimes referred to as \"\"fisherman's pie\"\" because the topping is similar to that of shepherd's pie, in that it uses mashed potatoes. The royal seafood tradition of England started in the time of Henry I, crowned in 1100, when cooks rolled crust over an annual Christmas lamprey pie. A separate tradition of Lenten fish pie required Yarmouth cooks to send the king two dozen pies containing 100 herrings. The customary gifts of fish in crust prevailed"} +{"qid": "test2078", "pid": "3693733", "query": "when did the first junie b jones book come out", "answer": "1992", "passage": "\"Junie B. Jones\"\nJunie B. Jones Junie B. Jones is a children's book series written by Barbara Park and illustrated by Denise Brunkus. Published by Random House from 1992 to 2013, the stories begin with \"\"Junie B. Jones and the Stupid Smelly Bus\"\", in which Junie B. is a fictional \"\"almost six year old\"\" starting her first day of kindergarten. Aimed at beginning readers, the series centers on Junie B. Jones, a young girl who is just entering kindergarten in the first book in the series, \"\"Junie B. Jones and the Stupid Smelly Bus\"\" (1992). In the opening sentences of that book, she"} +{"qid": "test2078", "pid": "3693734", "query": "when did the first junie b jones book come out", "answer": "1992", "passage": "\"Junie B. Jones\"\ndeclares, “My name is Junie B. Jones. The B stands for Beatrice. Except I don’t like Beatrice. I just like B and that’s all.” Since the original book was published by Random House in 1992, twenty-eight other Junie B. Jones books have been published. Twenty-seven books belong to the Junie B. Jones Series and there is also a \"\"Junie B. Jones Journal\"\". The Junie B. Jones series has also been translated into Spanish and French. Juniper Beatrice \"\"Junie B.\"\" Jones: The series' title character and main protagonist; a young girl with a friendly, bright, funny, and spirited personality. Junie B."} +{"qid": "test2078", "pid": "3693748", "query": "when did the first junie b jones book come out", "answer": "1992", "passage": "\"Junie B. Jones\"\nPark where she stated that \"\"Junie B has been pretty successful already living in the readers' imaginations, so I am happy with that.\"\" Junie B. Jones Junie B. Jones is a children's book series written by Barbara Park and illustrated by Denise Brunkus. Published by Random House from 1992 to 2013, the stories begin with \"\"Junie B. Jones and the Stupid Smelly Bus\"\", in which Junie B. is a fictional \"\"almost six year old\"\" starting her first day of kindergarten. Aimed at beginning readers, the series centers on Junie B. Jones, a young girl who is just entering kindergarten in"} +{"qid": "test2078", "pid": "19966239", "query": "when did the first junie b jones book come out", "answer": "1992", "passage": "\"Bibliography of Barbara Park\"\nBibliography of Barbara Park Barbara Park, an American author, wrote and published dozens of books for children. Her Junie B. Jones series encompasses 30 books and had collectively sold 55 million copies worldwide as of 2013, according to Park's publisher, Random House. The series started in 1992, with the publication of \"\"Junie B. Jones and the Stupid Smelly Bus\"\". \"\"The New York Times\"\" described Junie B. Jones, the main character of the series, as \"\"a 6-year-old dispenser of abundant opinions, Runyonesque wisecracks and dubious syntax.\"\" When the series began, Junie B. was just entering kindergarten and remained there until \"\"Junie"} +{"qid": "test2078", "pid": "19966240", "query": "when did the first junie b jones book come out", "answer": "1992", "passage": "\"Bibliography of Barbara Park\"\nB., First Grader (at Last!)\"\", the 18th book in the series, was published in 2001. Park also wrote other books for young readers, including \"\"Skinnybones\"\", published in 1982, and \"\"The Graduation of Jake Moon\"\", published in 2002. Tie-in products include plush dolls, the \"\"First Ever Junie B-Shirt\"\" (). Bibliography of Barbara Park Barbara Park, an American author, wrote and published dozens of books for children. Her Junie B. Jones series encompasses 30 books and had collectively sold 55 million copies worldwide as of 2013, according to Park's publisher, Random House. The series started in 1992, with the publication of \"\"Junie"} +{"qid": "test2080", "pid": "20650846", "query": "when does season 13 of america's got talent premiere", "answer": "May 29, 2018", "passage": "\"America's Got Talent (season 13)\"\nAmerica's Got Talent (season 13) Season thirteen of the reality competition series \"\"America's Got Talent\"\" premiered on May 29, 2018, on NBC. Howie Mandel, Mel B, Heidi Klum and Simon Cowell returned as judges for their respective ninth, sixth, sixth, and third seasons. Meanwhile, Tyra Banks returned for her second season as host. The live shows returned to the Dolby Theatre, beginning August 14, 2018. \"\"AGT\"\" is co-produced by FremantleMedia North America and Syco Entertainment, Cowell's company. Dunkin Donuts is a sponsor for a fourth consecutive season. Shin Lim was named the winner on the season finale, September 19, 2018."} +{"qid": "test2080", "pid": "20650856", "query": "when does season 13 of america's got talent premiere", "answer": "May 29, 2018", "passage": "\"America's Got Talent (season 13)\"\nwas brought to Netflix on May 31. In Singapore, the show was broadcast on MediaCorp Channel 5 every Thursday starting May 31, 2018. America's Got Talent (season 13) Season thirteen of the reality competition series \"\"America's Got Talent\"\" premiered on May 29, 2018, on NBC. Howie Mandel, Mel B, Heidi Klum and Simon Cowell returned as judges for their respective ninth, sixth, sixth, and third seasons. Meanwhile, Tyra Banks returned for her second season as host. The live shows returned to the Dolby Theatre, beginning August 14, 2018. \"\"AGT\"\" is co-produced by FremantleMedia North America and Syco Entertainment, Cowell's company."} +{"qid": "test2080", "pid": "20159573", "query": "when does season 13 of america's got talent premiere", "answer": "May 29, 2018", "passage": "\"World of Dance (TV series)\"\nreasons why I love dance and why I wanted to do this in the first place\"\". The series premiere was originally scheduled for May 8, 2017 (as a lead-out for \"\"The Voice\"\"), but was pushed back to May 30, 2017 to serve as a lead-out for the season premiere of \"\"America's Got Talent\"\". On June 29, 2017, NBC renewed the series for a second season, which will premiere on May 29, 2018—once again complimenting the next season of \"\"America's Got Talent\"\". In May 2018, prior to its season 2 premiere, \"\"World of Dance\"\" was renewed for a third season. World"} +{"qid": "test2081", "pid": "14867556", "query": "who is the father of lucius in gladiator", "answer": "Lucius Verus", "passage": "\"Gladiator Begins\"\nwould bring ruin to it. Gulielmus: A Macedonian ex-criminal and gladiator who always crosses paths with the gladiator in the \"\"Word Of Quintus\"\", a gladiatorial event sponsored by the co-emperor, Lucius Verus. Gulielmus views the player with disdain and animosity and tends to underestimate the player's skill as a gladiator. When Gulielmus wins his freedom from the arena, he becomes a military officer under the command of General Cassius. When the player is sent by Commodus to kill Cassius, Gulielmus serves as the last enemy before the general is fought. When defeated by the player, Gulielmus is killed by Cassius'"} +{"qid": "test2081", "pid": "159920", "query": "who is the father of lucius in gladiator", "answer": "Lucius Verus", "passage": "Gladiator\nribald chants and cat-calls. Probably as a result, he banned the use of female gladiators in 200 AD. Caligula, Titus, Hadrian, Lucius Verus, Caracalla, Geta and Didius Julianus were all said to have performed in the arena, either in public or private, but risks to themselves were minimal. Claudius, characterised by his historians as morbidly cruel and boorish, fought a whale trapped in the harbor in front of a group of spectators. Commentators invariably disapproved of such performances. Commodus was a fanatical participant at the \"\"ludi\"\", and compelled Rome's elite to attend his performances as gladiator, \"\"bestiarius\"\" or \"\"venator\"\". Most"} +{"qid": "test2081", "pid": "2383717", "query": "who is the father of lucius in gladiator", "answer": "Lucius Verus", "passage": "\"Lucius Aelius\"\nLucius Aelius Lucius Aelius Caesar (January 13, 101 – January 1, 138) was the father of Emperor Lucius Verus. In 136, he was adopted by Hadrian and named heir to the throne. He died before Hadrian and thus never became emperor. After Lucius' death, he was replaced by Antoninus Pius, who succeeded Hadrian the same year. Aelius was born with the name Lucius Ceionius Commodus, and became Lucius Aelius Caesar upon his adoption as Hadrian's heir. He is often sometimes referred to as Lucius Aelius Verus, though this name is not attested outside the Augustan History and probably the result"} +{"qid": "test2083", "pid": "17653566", "query": "who's winning the election in virginia for governor", "answer": "Ralph Northam", "passage": "\"2017 Virginia gubernatorial election\"\nnominee Ralph Northam defeated Republican nominee Ed Gillespie, winning by the largest margin for a Democrat since 1985. Northam became the 73rd governor of Virginia, and assumed office on January 13, 2018. The election had the highest voter turnout percentage in a Virginia gubernatorial election in twenty years with 47% of the state's constituency casting their ballot. Virginia election laws allow for unlimited campaign contributions in state and local elections. According to the Virginia Public Access Project, Northam's top five donors are the Democratic Governors Association's super PAC DGA Action; Michael Bloomberg's Everytown for Gun Safety group; the Virginia League"} +{"qid": "test2083", "pid": "3509120", "query": "who's winning the election in virginia for governor", "answer": "Ralph Northam", "passage": "\"Southern Democrats\"\nvote Republican in national elections. Dr. Ralph Northam, a Democrat and the Governor of Virginia has admitted that he voted for George W. Bush in the 2000 and 2004 presidential elections. Despite this admission, Northam, a former state Senator who has served as Lieutenant Governor of Virginia since 2014 easily defeated the more progressive candidate, former Congressman Tom Perriello, by 55.9 percent to 44.1 percent to win the Democratic nomination. A huge portion of Representatives, Senators, and voters who were referred to as Reagan Democrats in the 1980s were conservative Southern Democrats. An Interesting exception has been Arkansas, whose state"} +{"qid": "test2083", "pid": "11138051", "query": "who's winning the election in virginia for governor", "answer": "Ralph Northam", "passage": "\"Ralph Northam\"\nof November 3, 2017, Northam has raised $33.8 million to Gillespie's $24.5 million. Northam was elected 73rd Governor of Virginia on November 7, 2017, defeating Ed Gillespie in the general election with a larger-than-expected nine-point margin of victory. Northam was sworn in as Governor of Virginia at noon on January 13, 2018 at the State Capitol. He became the second Eastern Shore native to serve as Governor of Virginia, after Henry A. Wise (who was elected in 1855) and the second alumnus of Virginia Military Institute to serve as governor, after Westmoreland Davis (who was elected in 1917). A majority"} +{"qid": "test2083", "pid": "17077573", "query": "who's winning the election in virginia for governor", "answer": "Ralph Northam", "passage": "\"2013 Virginia lieutenant gubernatorial election\"\n2013 Virginia lieutenant gubernatorial election The Virginia lieutenant gubernatorial election of 2013 took place on November 5, 2013, to elect the Lieutenant Governor of Virginia. The incumbent Lieutenant Governor, Republican Bill Bolling, had originally planned to run for Governor of Virginia in the 2013 gubernatorial election, but withdrew upon the entry of Attorney General Ken Cuccinelli. On May 18, 2013, a Republican state convention in Richmond nominated minister and conservative activist E.W. Jackson over six others after four ballots. The Democratic primary on June 11, 2013 was won by State Senator Ralph Northam, who defeated Aneesh Chopra, former Chief Technology"} +{"qid": "test2083", "pid": "1865361", "query": "who's winning the election in virginia for governor", "answer": "Ralph Northam", "passage": "\"Governor of Virginia\"\nGovernor of Virginia The Governor of the Commonwealth of Virginia serves as the chief executive of the Commonwealth of Virginia for a four-year term. The current holder of the office is Democrat Ralph Northam, who was sworn in on January 13, 2018. Candidates for governor must be United States citizens who have resided in Virginia and been a registered voter for five years prior to the election in which they are running. The candidates must be at least 30 years of age. Unlike other state governors, Virginia governors are not allowed to serve consecutive terms. They have been barred from"} +{"qid": "test2083", "pid": "1865371", "query": "who's winning the election in virginia for governor", "answer": "Ralph Northam", "passage": "\"Governor of Virginia\"\n\"\"Excellency\"\" if ceremonially appropriate. Governor of Virginia The Governor of the Commonwealth of Virginia serves as the chief executive of the Commonwealth of Virginia for a four-year term. The current holder of the office is Democrat Ralph Northam, who was sworn in on January 13, 2018. Candidates for governor must be United States citizens who have resided in Virginia and been a registered voter for five years prior to the election in which they are running. The candidates must be at least 30 years of age. Unlike other state governors, Virginia governors are not allowed to serve consecutive terms. They"} +{"qid": "test2086", "pid": "14438298", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"1858 and 1859 United States Senate elections\"\n1858 and 1859 United States Senate elections The United States Senate elections of 1858 and 1859 were elections which had the Republican Party gain five additional seats in the United States Senate, but the Democrats retained their majority. That majority would erode in 1860 with the secession of the southern states leading up to the Civil War. In Illinois, incumbent Stephen A. Douglas (D) and challenger Abraham Lincoln (R) held a series of seven debates, known as the \"\"Lincoln–Douglas debates.\"\" As this election was prior to ratification of the seventeenth amendment, Senators were chosen by State legislatures. Senate Party Division,"} +{"qid": "test2086", "pid": "948405", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"Douglas County, Illinois\"\nDouglas County, Illinois Douglas County is a county located in the U.S. state of Illinois. As of the 2010 census, the population was 19,980. The county seat is Tuscola. Douglas County was formed in 1859 out of Coles County. It was named in honor of Stephen A. Douglas, who was elected to the United States Senate in 1858, following the Lincoln-Douglas Debates. According to the U.S. Census Bureau, the county has a total area of , of which is land and (0.1%) is water. In recent years, average temperatures in the county seat of Tuscola have ranged from a low"} +{"qid": "test2086", "pid": "948409", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"Douglas County, Illinois\"\n1968, and in all both five overall since 1880. Despite its long-time Republican leanings, Hillary Clinton’s 2016 performance of gaining a mere 23.8 percent of the county’s vote stands over six percent worse than any Democrat since the Civil War. Douglas County, Illinois Douglas County is a county located in the U.S. state of Illinois. As of the 2010 census, the population was 19,980. The county seat is Tuscola. Douglas County was formed in 1859 out of Coles County. It was named in honor of Stephen A. Douglas, who was elected to the United States Senate in 1858, following the"} +{"qid": "test2086", "pid": "13258782", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"Stephen A. Douglas\"\nPresidents\"\"), Douglas wins the election of 1860, a change which only postpones the outbreak of war by one year. Douglas is a significant character in the mash-up novel \"\"\"\", and also appears in the of that book. Stephen A. Douglas Stephen Arnold Douglas (April 23, 1813 – June 3, 1861) was an American politician and lawyer from Illinois. He was the Democratic Party nominee for president in the 1860 election, but he was defeated by Republican candidate Abraham Lincoln. Douglas had previously bested Lincoln in the 1858 Illinois election for the United States Senate, which is known for the Lincoln–Douglas"} +{"qid": "test2086", "pid": "7371256", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"Bryant Cottage State Historic Site\"\nyoung town of Bement in 1856 with a small capital, which he quickly reinvested in general business development as a banker and storekeeper. He bought grain from pioneer farmers, and sold them lumber and coal in return. Bryant was a member of the U.S. Democratic Party and a personal friend of Senator Stephen A. Douglas, who was running for re-election in 1858. Bryant played an important role in coordinating Democratic support for Douglas during the race. As a Democrat, Bryant was elected twice to the Illinois Legislature. His first term in 1853 was as the representative of Schuyler County. He"} +{"qid": "test2086", "pid": "1707036", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"Carl Schurz\"\nyear between Abraham Lincoln and Stephen A. Douglas, he took part as a speaker on behalf of Lincoln—mostly in German—which raised Lincoln's popularity among German-American voters, though it should be remembered that Senators were not directly elected in 1858, the election being decided by the Illinois General Assembly. In 1858, he was admitted to the Wisconsin bar and began to practice law in Milwaukee. In the state campaign of 1859, he made a speech attacking the Fugitive Slave Law, arguing for states' rights. In Faneuil Hall, Boston, on April 18, 1859, he delivered an oration on \"\"True Americanism,\"\" which, coming"} +{"qid": "test2086", "pid": "13258723", "query": "who was elected senator of illinois in 1858", "answer": "Stephen A. Douglas", "passage": "\"Stephen A. Douglas\"\nStephen A. Douglas Stephen Arnold Douglas (April 23, 1813 – June 3, 1861) was an American politician and lawyer from Illinois. He was the Democratic Party nominee for president in the 1860 election, but he was defeated by Republican candidate Abraham Lincoln. Douglas had previously bested Lincoln in the 1858 Illinois election for the United States Senate, which is known for the Lincoln–Douglas debates. During the 1850s, Douglas was one of the foremost advocates of popular sovereignty, which held that each territory should be allowed to determine whether to permit slavery within its borders. Douglas was nicknamed the \"\"Little Giant\"\""} +{"qid": "test2087", "pid": "13557475", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin–Madison\"\nUniversity of Wisconsin–Madison The University of Wisconsin–Madison (also known as University of Wisconsin, Wisconsin, UW, regionally as UW–Madison, or simply Madison) is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW–Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System. It was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866. The main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks. The University also owns"} +{"qid": "test2087", "pid": "6852477", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin–Madison Arboretum\"\nUniversity of Wisconsin–Madison Arboretum The University of Wisconsin–Madison Arboretum is a teaching and research facility of the University of Wisconsin–Madison and the site of historic research in ecological restoration. In addition to its in Madison, Wisconsin (located about four miles from the main campus of the University of Wisconsin-Madison), the Arboretum also manages 520 acres of remnant forests and prairies throughout Wisconsin. The UW Arboretum was founded on April 26, 1932, when the University Board of Regents accepted the deeds to 6 parcels, 246 acres of land on the southwestern end of Madison's Lake Wingra, creating the \"\"University of Wisconsin"} +{"qid": "test2087", "pid": "6852481", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin–Madison Arboretum\"\nof ski/snowshoe routes. The Arboretum is open to the public daily without charge. University of Wisconsin–Madison Arboretum The University of Wisconsin–Madison Arboretum is a teaching and research facility of the University of Wisconsin–Madison and the site of historic research in ecological restoration. In addition to its in Madison, Wisconsin (located about four miles from the main campus of the University of Wisconsin-Madison), the Arboretum also manages 520 acres of remnant forests and prairies throughout Wisconsin. The UW Arboretum was founded on April 26, 1932, when the University Board of Regents accepted the deeds to 6 parcels, 246 acres of land"} +{"qid": "test2087", "pid": "12225327", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin–Madison College of Letters and Science\"\nUniversity of Wisconsin–Madison College of Letters and Science The University of Wisconsin–Madison College of Letters and Science is the largest college of the University of Wisconsin–Madison. It is located at Madison, Wisconsin. The College of Letters and Science enrolls more than half of all students of the university. It provides the foundation courses in science, math, languages, and literature for all undergraduate programs across campus. The college has more than 21,000 students and more than 3,000 faculty and staff. Letters & Science is the focal point of research in fields such as humanities, social sciences, and natural sciences. The college"} +{"qid": "test2087", "pid": "12225330", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin–Madison College of Letters and Science\"\nstudents. Many distinguished people have studied at the College of Letters and Science. Nobel prize-winning physicist John Hasbrouck Van Vleck completed his A.B. from the college in 1920. Winners of the Nobel Prize, the Pulitzer Prize, and fellows of the National Academy of Sciences have been associated with the college. University of Wisconsin–Madison College of Letters and Science The University of Wisconsin–Madison College of Letters and Science is the largest college of the University of Wisconsin–Madison. It is located at Madison, Wisconsin. The College of Letters and Science enrolls more than half of all students of the university. It provides"} +{"qid": "test2087", "pid": "17913935", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin Madison Law Building\"\nUniversity of Wisconsin Madison Law Building The law building is located on Bascom Hill on the University of Wisconsin-Madison campus, at 975 Bascom Mall, Madison, Wisconsin. The University of Wisconsin Law School offers two major programs and one doctorate program to the almost 800 students that make up the student body. The College of Law was started in 1868, but the first building wasn’t built until 1893. The first building was a maroon Castle like structure. It was torn down in the spring of 1963 to make way for an addition to the old building. The second building was built"} +{"qid": "test2087", "pid": "17913938", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin Madison Law Building\"\nadded 200,000 new spaces for textbooks in the library. It is combined to the old building to allow easy movement between buildings. The engineers called it “The Hanger” because of its appearance; giant glass windows surround the library to allow the natural light to enter. University of Wisconsin Madison Law Building The law building is located on Bascom Hill on the University of Wisconsin-Madison campus, at 975 Bascom Mall, Madison, Wisconsin. The University of Wisconsin Law School offers two major programs and one doctorate program to the almost 800 students that make up the student body. The College of Law"} +{"qid": "test2087", "pid": "17632910", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"Michael Olbrich\"\nMichael Olbrich Michael Olbrich (September 29, 1881 - October 10, 1929) was a Madison, Wisconsin, lawyer, politician, and conservationist, who founded Olbrich Botanical Gardens and the University of Wisconsin-Madison Arboretum. Olbrich was born Michael Balthasar Olbrich in Chemung, Illinois in 1881. He graduated from the University of Wisconsin-Madison, where he was a member of the debate team. A noted enthusiast of nature, Olbrich founded what is now known as Olbrich Botanical Gardens in Madison, Wisconsin. The Olbrich Gateway at the University of Wisconsin-Madison Arboretum is also named for him. Olbrich would contract an acute case of influenza that left him"} +{"qid": "test2087", "pid": "10057640", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"Madison Isthmus\"\nMadison Isthmus The Madison Isthmus is an isthmus in Madison, Wisconsin, between Lake Mendota and Lake Monona. It is located between Madison's northeast side to the east and the University of Wisconsin campus to the west. After visiting the area in 1829, land speculator and judge James Duane Doty purchased of land on the isthmus. By 1836 Doty had convinced the Wisconsin Territory legislature to relocate the capital to the site from its original location in Belmont. Construction of the Capitol began the following year, in 1837. The southwestern portion of the Isthmus is home to the Wisconsin State Capitol,"} +{"qid": "test2087", "pid": "14525405", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin Carbone Cancer Center\"\nUniversity of Wisconsin Carbone Cancer Center The University of Wisconsin Carbone Cancer Center (UWCCC) holds the unique distinction of being the only comprehensive cancer center in Wisconsin, as designated by the National Cancer Institute (NCI), the lead federal agency for cancer research. It is an integral part of both the University of Wisconsin (UW) and the University of Wisconsin Hospital and Clinics. It is located in Madison, Wisconsin. The University of Wisconsin Carbone Cancer Center is deeply committed to defeating cancer through the rapid application of groundbreaking research, prevention and treatment. Cancer research on the University of Wisconsin-Madison campus has"} +{"qid": "test2087", "pid": "5772108", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin Law School\"\nUniversity of Wisconsin Law School The University of Wisconsin Law School is the professional school for the study of law at the University of Wisconsin–Madison in Madison, Wisconsin. The law school was founded in 1868. The law school is located on Bascom Hill, the center of the UW–Madison campus. In 1996, it completed a major renovation project that joined two previous buildings and created a four-story glass atrium. The renovation was recognized by the American Institute of Architects for its innovative design, incorporating modern design into the 150 years of architecture on historic Bascom Hill. In addition to lecture halls"} +{"qid": "test2087", "pid": "4441728", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"State Street (Madison, Wisconsin)\"\nState Street (Madison, Wisconsin) State Street is a pedestrian zone located in downtown Madison, Wisconsin, United States, near the Wisconsin State Capitol. The road proper extends from the west corner of land comprising the Capitol (on the southwestern edge of the Madison Isthmus, at the corners of Carroll and Mifflin Streets) westward to Lake Street, adjoining the campus of the University of Wisconsin–Madison at Library Mall. The street was a conventional four-lane undivided road until 1974, when a proposal was passed by the City of Madison to turn it into a pedestrian mall. Construction on that project began in late"} +{"qid": "test2087", "pid": "11531690", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University Square (Madison)\"\nits State St. location into the USquare and opened on August 15, 2011. The University tower portion of the project contains a new Student Activities Center for University student groups, a new home for University Health Services, as well as the Bursar's Office, Registrar's Office, Office of Student Financial Aid, student radio station WSUM, a DoIT Tech Store (where students, faculty, and staff can buy computers, tablets, accessories, and receive service for any university-related technology questions) and other university functions. University Square (Madison) University Square Madison is a urban infill development in the City of Madison, Wisconsin. The planning for"} +{"qid": "test2087", "pid": "13557541", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"University of Wisconsin–Madison\"\nthan 427,000 living alumni. Although a large number of alumni live in Wisconsin, a significant number live in Illinois, Minnesota, New York, California, and Washington, D.C. UW–Madison alumni, faculty, or former faculty have been awarded 20 Nobel Prizes and 38 Pulitzer Prizes. University of Wisconsin–Madison The University of Wisconsin–Madison (also known as University of Wisconsin, Wisconsin, UW, regionally as UW–Madison, or simply Madison) is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW–Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System. It was the first"} +{"qid": "test2087", "pid": "7935730", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"Breese Stevens Field\"\nBreese Stevens Field Breese Stevens Municipal Athletic Field is an athletic field owned by the city of Madison, Wisconsin and operated by Big Top Baseball. Located eight blocks northeast of the Wisconsin State Capitol on the Madison Isthmus, it is the oldest extant masonry grandstand in Wisconsin. The field is named in honor of Breese J. Stevens (1834–1903), a mayor of Madison and a University of Wisconsin–Madison regent, on the wishes of his widow who sold the land to the city. This complex is a Madison Landmark and was nominated by the Madison Trust in 1995. It was accepted for"} +{"qid": "test2087", "pid": "4441732", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"State Street (Madison, Wisconsin)\"\nboth films and live performances by nationally known bands. The 2008 version of Freakfest had O.A.R. as its headliner and took place on November 1. On October 27, 2012, rapper Mac Miller was the headliner for Freakfest. State Street (Madison, Wisconsin) State Street is a pedestrian zone located in downtown Madison, Wisconsin, United States, near the Wisconsin State Capitol. The road proper extends from the west corner of land comprising the Capitol (on the southwestern edge of the Madison Isthmus, at the corners of Carroll and Mifflin Streets) westward to Lake Street, adjoining the campus of the University of Wisconsin–Madison"} +{"qid": "test2087", "pid": "10953280", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"Forest Hill Cemetery (Madison, Wisconsin)\"\nForest Hill Cemetery (Madison, Wisconsin) Forest Hill Cemetery is located in Madison, Wisconsin and was one of the first U.S. National Cemeteries established in Wisconsin. After the first permanent European-American settlers arrived in Madison in the 1830s, the first non-native burials occurred on the current University of Wisconsin–Madison campus, near Bascom Hill. In the following years other areas within the area were established as informal burying grounds and the first official village cemetery was established in 1847 near what is now Orton Park. In the mid-1850s, a committee was formed to search for another appropriate site in the area to"} +{"qid": "test2087", "pid": "5523621", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"Harry Steenbock\"\nHarry Steenbock Harry Steenbock (August 16, 1886, Charlestown, Wisconsin – December 25, 1967, Madison, Wisconsin) was a Professor of Biochemistry at the University of Wisconsin–Madison. Steenbock graduated from Wisconsin in 1916, where he was a member of Phi Sigma Kappa fraternity. Steenbock was born in Charlestown, Wisconsin and grew up on a model farm outside New Holstein, Wisconsin. His graduate advisor at the University of Wisconsin–Madison, was Edwin B. Hart. His first publication reported the results of the single-grain experiment on which he assisted with Hart and Stephen Moulton Babcock. During his graduate career, Steenbock also served as an assistant"} +{"qid": "test2087", "pid": "5040073", "query": "where is the university of wisconsin madison located", "answer": "Madison, Wisconsin", "passage": "\"Memorial Union (Wisconsin)\"\nMemorial Union (Wisconsin) The Memorial Union is located on the shore of Lake Mendota on the campus of the University of Wisconsin–Madison in Madison, Wisconsin. On the lakeshore to the north of the building is the Terrace, a popular outdoor space overlooking Lake Mendota. It has gained a reputation as one of the most beautiful student centers on a university campus. The exterior of the main wing was designed by University Architect Arthur Peabody. Opened October 5, 1928, the facility is operated by the Wisconsin Union, a membership organization. Porter Butts, the first director, called it a \"\"college union\"\" because"} +{"qid": "test2089", "pid": "1278357", "query": "where is the word leviathan mentioned in the bible", "answer": "Book of Job", "passage": "Leviathan\nof west, listing it as one of the Four Crown Princes of Hell. This association was inspired by the demonic hierarchy from \"\"The Book of the Sacred Magic of Abra-Melin the Mage\"\". The Church of Satan uses the Hebrew letters at each of the points of the Sigil of Baphomet to represent Leviathan. Starting from the lowest point of the pentagram, and reading counter-clockwise, the word reads \"\"לויתן\"\": Hebrew for \"\"Leviathan\"\". Leviathan Leviathan (; ) is a creature with the form of a sea monster from Jewish belief, referenced in the Hebrew Bible in the Book of Job, Psalms, the"} +{"qid": "test2089", "pid": "14333335", "query": "where is the word leviathan mentioned in the bible", "answer": "Isaiah", "passage": "\"Serpents in the Bible\"\nmonsters. Examples of these identifications are in the Book of Isaiah where a reference is made to a serpent-like dragon named Leviathan (), and in the Book of Amos where a serpent resides at the bottom of the sea (). \"\"Serpent\"\" figuratively describes biblical places such as Egypt (), and the city of Dan (). The prophet Jeremiah also compares the King of Babylon to a \"\"serpent\"\" (). The Hebrew word \"\"nahash\"\" is used to identify the serpent that appears in Genesis 3:1, in the Garden of Eden. In Genesis, the serpent is portrayed as a deceptive creature or trickster,"} +{"qid": "test2089", "pid": "19600230", "query": "where is the word leviathan mentioned in the bible", "answer": "Psalms", "passage": "\"Michael Sgan-Cohen\"\npoetic and artistic view of the visual aspects of the Hebrew word and the Hebrew alphabet. Naturally, the Bible became a major source in his art: Moses, The Akedah, Jonah and the Leviathan, Psalms, etc. In a very ambitious and project, Sgan-Cohen made twelve large panels in which the whole text of the Twelve Minor Prophets (\"\"Trei Assar\"\") were copied, a homage to the long tradition of the meticulous reproduction of the word of the prophet and at token of respect to the sanctity of the word. In his works he thus brought together in a highly original way the"} +{"qid": "test2089", "pid": "19895207", "query": "where is the word leviathan mentioned in the bible", "answer": "Isaiah", "passage": "\"Isaiah 27\"\nIsaiah 27 Isaiah 27 is the twenty-seventh chapter of the Book of Isaiah in the Hebrew Bible or the Old Testament of the Christian Bible. This book contains the prophecies attributed to the prophet Isaiah, and is a part of the Book of the Prophets. Chapters 24-27 of Isaiah constitute one continuous poetical prophecy, sometimes called the \"\"Isaiah Apocalypse\"\". Some most ancient manuscripts containing this chapter in Hebrew language: Ancient translations in Koine Greek: The New King James Version treats verse 1 as the continuation of , a section entitled \"\"Take Refuge from the Coming Judgment\"\". The word \"\"Leviathan\"\" is"} +{"qid": "test2089", "pid": "1278340", "query": "where is the word leviathan mentioned in the bible", "answer": "Book of Job", "passage": "Leviathan\nLeviathan Leviathan (; ) is a creature with the form of a sea monster from Jewish belief, referenced in the Hebrew Bible in the Book of Job, Psalms, the Book of Isaiah, and the Book of Amos. The Leviathan of the Book of Job is a reflection of the older Canaanite \"\"Lotan\"\", a primeval monster defeated by the god Hadad. Parallels to the role of Mesopotamian Tiamat defeated by Marduk have long been drawn in comparative mythology, as have been wider comparisons to dragon and world serpent narratives such as Indra slaying Vrtra or Thor slaying Jörmungandr, but Leviathan already"} +{"qid": "test2089", "pid": "93926", "query": "where is the word leviathan mentioned in the bible", "answer": "Book of Job", "passage": "Cetacea\nlive birth and suckling. Pliny describes the problems associated with the lungs with spray tubes and Ambrose claimed that large whales would take their young into their mouth to protect them. In the Bible especially, the leviathan plays a role as a sea monster. The essence, which features a giant crocodile or a dragon and a whale, was created according to the Bible by God and should again be destroyed by him. In the Book of Job, the leviathan is described in more detail. In Jonah there is a more recognizable description of a whale alongside the prophet Jonah, who,"} +{"qid": "test2089", "pid": "1278341", "query": "where is the word leviathan mentioned in the bible", "answer": "Isaiah", "passage": "Leviathan\nfigures in the Hebrew Bible as a metaphor for a powerful enemy, notably Babylon (Isaiah 27:1), and some scholars have pragmatically interpreted it as referring to large aquatic creatures, such as the crocodile. The word later came to be used as a term for \"\"great whale\"\" as well as of sea monsters in general. The name is a derivation from the root \"\"lvh\"\" \"\"to twine; to join\"\", with an adjectival suffix , with a literal meaning of \"\"wreathed, twisted in folds\"\". Both the name and the mythological figure are a direct continuation of the Ugaritic sea monster \"\"Lôtān\"\", one of"} +{"qid": "test2089", "pid": "15327165", "query": "where is the word leviathan mentioned in the bible", "answer": "Psalms", "passage": "\"Islamic view of the Christian Bible\"\nin regard to the Bible. The Qur'an mentions the word Torah eighteen times and confirms that it was The Word Of God. However, they believe that there have been additions and subtractions made to the Torah. The early Qu'ran exeget Tabari referred to the Torah from the Jewish as \"\"the Torah that they possess today\"\". Sura An-Nisa 4:163 of the Qur'an states \"\"and to David We gave the Psalms\"\". Therefore, Islam claims the Psalms as being inspired of God. The Qur'an mentions the word Zabur three times (Qur'an 17:55; 21:105) When the Qur'an speaks of the Gospel, it is believed"} +{"qid": "test2089", "pid": "16813180", "query": "where is the word leviathan mentioned in the bible", "answer": "Book of Job", "passage": "\"Leviathan in popular culture\"\nLeviathan in popular culture The Hebrew monster Leviathan found in the Book of Job has given rise to many popular incarnations. This article treats subjects with no direct connection to the Ancient Middle East or Jewish origins. \"\"Leviathan\"\" is the title of Thomas Hobbes' 1651 work on the social contract and the origins of creation of an ideal state, and his proper name for the Commonwealth. In \"\"Paradise Lost\"\", Milton uses the term Leviathan to describe the clout and power of Satan, the ruler of many kingdoms. The German poet Heinrich Heine mentions Leviathan in his \"\"Romanzaro\"\". A Rabbi tells"} +{"qid": "test2089", "pid": "97194", "query": "where is the word leviathan mentioned in the bible", "answer": "Isaiah", "passage": "\"Christian mythology\"\nmythology\"\", and the \"\"sons of God\"\" mentioned in that passage are \"\"celestial beings of mythology\"\". The \"\"New American Bible\"\" also says that Psalm 93 alludes to \"\"an ancient myth\"\" in which God battles a personified Sea. Some scholars have identified the biblical creature Leviathan as a monster from Canaanite mythology. According to Howard Schwartz, \"\"the myth of the fall of Lucifer\"\" existed in fragmentary form in Isaiah 14:12 and other ancient Jewish literature; Schwartz claims that the myth originated from \"\"the ancient Canaanite myth of Athtar, who attempted to rule the throne of Ba'al, but was forced to descend and"} +{"qid": "test209", "pid": "10568198", "query": "how many co2 molecules are produced in aerobic respiration", "answer": "6", "passage": "\"Cellular waste product\"\nCellular waste product Cellular waste products are formed as a by-product of cellular respiration, a series of processes and reactions that generate energy for the cell, in the form of ATP. Two examples of cellular respiration creating cellular waste products are aerobic respiration and anaerobic respiration. Each pathway generates different waste products. When in the presence of oxygen, cells use aerobic respiration to obtain energy from glucose molecules. Simplified Theoretical Reaction: CHO + 6O → 6CO + 6HO + ~ 30ATP Cells undergoing aerobic respiration produce 6 molecules of carbon dioxide, 6 molecules of water, and up to 30 molecules"} +{"qid": "test209", "pid": "983016", "query": "how many co2 molecules are produced in aerobic respiration", "answer": "6", "passage": "\"Cellular respiration\"\nto make ATP but generates heat. This is particularly important in brown fat thermogenesis of newborn and hibernating mammals. According to some of newer sources the ATP yield during aerobic respiration is not 36–38, but only about 30–32 ATP molecules / 1 molecule of glucose , because: So finally we have, per molecule of glucose Altogether this gives 4 + 3 (or 5) + 20 + 3 = 30 (or 32) ATP per molecule of glucose The total ATP yield in ethanol or lactic acid fermentation is only 2 molecules coming from glycolysis, because pyruvate is not transferred to the"} +{"qid": "test2091", "pid": "188112", "query": "who is considered to be the greatest english composer of the baroque period", "answer": "Henry Purcell", "passage": "\"Henry Purcell\"\nHenry Purcell Henry Purcell ( or ; September 1659 – 21 November 1695) was an English composer. Although incorporating Italian and French stylistic elements into his compositions, Purcell's legacy was a uniquely English form of Baroque music. He is generally considered to be one of the greatest English composers; no later native-born English composer approached his fame until Edward Elgar, Ralph Vaughan Williams, William Walton and Benjamin Britten in the 20th century. Purcell was born in St Ann's Lane, Old Pye Street, Westminster – the area of London later known as Devil's Acre – in 1659. Henry Purcell Senior, whose"} +{"qid": "test2091", "pid": "4931551", "query": "who is considered to be the greatest english composer of the baroque period", "answer": "Henry Purcell", "passage": "\"Prince of Denmark's March\"\nduring the hourly performance of the Royal Clock in the Queen Victoria Building, Sydney, Australia. The tune was sampled for the \"\"Greatest Thing Ever\"\" segment from the Cartoon Network show \"\"Mad\"\". Prince of Denmark's March The Prince of Denmark's March (), commonly called the \"\"Trumpet Voluntary\"\", is a musical composition (a march) written by English baroque composer Jeremiah Clarke (who was the first organist of the then newly rebuilt St Paul's Cathedral). For many years the piece was attributed incorrectly to Clarke's elder and more widely known contemporary Henry Purcell. The misattribution emanated from an arrangement for organ published in"} +{"qid": "test2092", "pid": "18245757", "query": "who plays nathan's mother on general hospital", "answer": "Donna Mills", "passage": "\"Nathan West (General Hospital)\"\nof a family. At the same time, Nathan's pairing with Maxie becomes a fan favorite pairing and their \"\"slow burn\"\" romance was praised by critics. Detective Nathan West arrives in Port Charles, and meets Maxie Jones (Kirsten Storms) when he sublets her apartment. Maxie leaves on a vacation, while Nathan settles in Port Charles. He starts investigating Dr. Silas Clay (Michael Easton) in regards to the overdose of Silas' wife, Nina Reeves (Michelle Stafford), suspecting Silas is responsible. It's later revealed that Nathan is actually Nina's brother. Nathan's mother Madeline Reeves (Donna Mills) claims that Nina has died after Silas"} +{"qid": "test2092", "pid": "18245776", "query": "who plays nathan's mother on general hospital", "answer": "Donna Mills", "passage": "\"Nathan West (General Hospital)\"\nin town investigating his estranged brother-in-law Silas Clay (Michael Easton) in the attempted murder of his comatose sister Nina. However, Silas's former mistress Ava Jerome (Maura West) is also at the top of the suspect list. In 2014, legendary actress Donna Mills, known for her portrayal of Abby Cunningham on the prime time soap, \"\"Knots Landing\"\" was cast in the role of Madeline Reeves—Nathan's mother. It is revealed that Madeline raised Nathan to believe Silas was guilty and he is working on her behalf to lock Silas up for Nina's condition. Despite acting to avenge his sister, Nathan tolerates Madeline's"} +{"qid": "test2092", "pid": "17926773", "query": "who plays nathan's mother on general hospital", "answer": "Donna Mills", "passage": "\"Madeline Reeves\"\nMadeline Reeves Madeline Reeves (born Magda Westbourne) is a fictional character on the long-running ABC daytime soap opera \"\"General Hospital\"\", portrayed by Donna Mills, who made her appearance on the March 14, 2014, episode. The casting was announced in January 2014. Madeline was introduced as the estranged mother-in-law of Dr. Silas Clay (Michael Easton) and mother of Silas' comatose wife Nina (Michelle Stafford) and, biological aunt of Nathan West (Ryan Paevey) — whom she raised as her own. Madeline is also revealed to be the estranged sister of established character Dr. Liesl Obrecht (Kathleen Gati) having remade herself. Mills wrapped"} +{"qid": "test2094", "pid": "8604335", "query": "who did university of miami play last week", "answer": "FIU", "passage": "\"2006 Miami Hurricanes football team\"\nthis will never happen again.\"\" Other officials from both universities also publicly apologized. The day after the game, the ACC suspended a total of 13 Miami players, and the Sun Belt Conference suspended 18 FIU players. Pregame Line: Miami -20 Playing without 13 players who were suspended for their actions in the previous week's brawl with FIU, and missing starting tight end Greg Olsen and starting linebacker Jon Beason due to injury, the shorthanded 'Canes raced out to a 20–2 third quarter lead behind strong play from QB Kyle Wright. Underdog Duke would not give up, though, rallying to score"} +{"qid": "test2097", "pid": "18218704", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"NBA Championship ring\"\nNBA Championship ring The NBA Championship ring is an annual award given by the National Basketball Association to the team that wins the NBA Finals. Rings are presented to the team's players, coaches, and members of the executive front office. Red Auerbach has the most rings overall with 16. Phil Jackson has the most as coach and Bill Russell has the most as a player (11 each) NBA Championship rings have been handed out since the first NBA Finals in 1947. In the modern era, the rings are handed to the defending champions during the team's first home game each"} +{"qid": "test2097", "pid": "18218705", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"NBA Championship ring\"\nseason. NBA Championship rings are silver or gold and include the following features: In three NBA Finals, John Havlicek chose two wrist watches and a liqueur tray set as commemorative items. NBA Championship ring The NBA Championship ring is an annual award given by the National Basketball Association to the team that wins the NBA Finals. Rings are presented to the team's players, coaches, and members of the executive front office. Red Auerbach has the most rings overall with 16. Phil Jackson has the most as coach and Bill Russell has the most as a player (11 each) NBA Championship"} +{"qid": "test2097", "pid": "6702350", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"1973–74 NBA season\"\nwin the game at the buzzer. Game Seven in Milwaukee saw the Bucks poised to win their second title in four years. But Cowens turned in a huge 28-point game with aggressive defense to push the Celtics to a 102–87 upset. Havlicek had averaged 27 points and six assists in 18 playoff games to win his first NBA title ring without Bill Russell. But it was Cowens, who had saved his best game for last, who stood out most in proving he was in fact center-enough to lead an NBA champion past the taller giants of the league. Notes \"\"Note:"} +{"qid": "test2097", "pid": "2455713", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"Bill Russell\"\nBill Russell William Felton Russell (born February 12, 1934) is an American retired professional basketball player. Russell played center for the Boston Celtics of the National Basketball Association (NBA) from 1956 to 1969 and won 11 championships rings during his 13 seasons as an NBA player. A five-time NBA Most Valuable Player and a twelve-time All-Star, he was the centerpiece of the Celtics dynasty, winning eleven NBA championships during his thirteen-year career. Russell tied the record for the most championships won by an athlete in a North American sports league (with Henri Richard of the National Hockey League). Before his"} +{"qid": "test2097", "pid": "2455814", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"Bill Russell\"\nin attendance. Bill Russell William Felton Russell (born February 12, 1934) is an American retired professional basketball player. Russell played center for the Boston Celtics of the National Basketball Association (NBA) from 1956 to 1969 and won 11 championships rings during his 13 seasons as an NBA player. A five-time NBA Most Valuable Player and a twelve-time All-Star, he was the centerpiece of the Celtics dynasty, winning eleven NBA championships during his thirteen-year career. Russell tied the record for the most championships won by an athlete in a North American sports league (with Henri Richard of the National Hockey League)."} +{"qid": "test2097", "pid": "2082745", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"Red Auerbach\"\neleven Eastern Division titles (including nine in a row from 1957–65), 11 appearances in the finals (including ten in a row from 1957–66), and nine NBA championships. With a total of 16 NBA championship rings in a span of 29 years (1957–86) as the Celtics coach, general manager, and team president, Auerbach is the most successful team official in NBA history. He is credited with creating several generations of championship Boston Celtics teams, including the first Celtics dynasty with Bill Russell, which won an NBA record eight titles in a row (1959–66). As Celtics general manager, he created championship-winning teams"} +{"qid": "test2097", "pid": "296029", "query": "who got the most rings in the nba", "answer": "Bill Russell", "passage": "\"National Basketball Association\"\nplayoff round, a best-of-seven series between the victors of both conferences, is known as the NBA Finals, and is held annually in June. The victor in the NBA Finals wins the Larry O'Brien Championship Trophy. Each player and major contributor—including coaches and the general manager—on the winning team receive a championship ring. In addition, the league awards the Bill Russell NBA Finals Most Valuable Player Award to the best performing player of the series. The league began using its current format, with the top eight teams in each conference advancing regardless of divisional alignment, in the 2015–16 season. Previously, the"} +{"qid": "test2098", "pid": "20514112", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Renita J. Weems\"\na positive note : her joyous faith, her life in music, and her everyday blessings\"\". Weems, Renita J., 1954-. New York: Pocket Books. . OCLC 45144960 \"\"Song of Songs\"\" in \"\"The new interpreter's Bible. Old Testament survey\"\". Nashville: Abingdon Press. 2005. . OCLC 62330657. \"\"Jeremiah\"\" \"\"in Global Bible commentary. Patte, Daniel., Okure, Teresa. Nashville: Abingdon Press. 2004. . OCLC 55955180.\"\" \"\"What matters most : ten lessons in living passionately from the Song of Solomon\"\". West Bloomfield, MI: Walk Worthy Press. . OCLC 53315250. Renita J. Weems Renita J. Weems is a Hebrew Bible scholar. Her work in biblical studies is"} +{"qid": "test2098", "pid": "381508", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "Solomon\nbooks, \"\"including not only the collections of Proverbs, but also of Ecclesiastes and the Song of Solomon and the later apocryphal book the Wisdom of Solomon.\"\" According to the Hebrew Bible, the Israelite monarchy gained its highest splendour and wealth during Solomon's reign of 40 years. In a single year, according to , Solomon collected tribute amounting to 666 talents (18,125 kilograms) of gold. Solomon is described as surrounding himself with all the luxuries and the grandeur of an Eastern monarch, and his government prospered. He entered into an alliance with Hiram I, king of Tyre, who in many ways"} +{"qid": "test2098", "pid": "5024875", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Wisdom literature\"\nof Job, Psalms, Proverbs, Ecclesiastes, the Song of Songs (Song of Solomon), the Book of Wisdom and Sirach (Ecclesiasticus). Not all the Psalms are usually regarded as belonging to the Wisdom tradition. In Judaism, the Books of Wisdom other than the Wisdom of Solomon and Sirach are regarded as part of the \"\"Ketuvim\"\" or \"\"Writings\"\". In Christianity, Job, Psalms, Proverbs, Song of Songs and Ecclesiastes are included in the Old Testament by all traditions, while Wisdom, and Sirach are regarded in some traditions as deuterocanonical works which are placed in the Apocrypha within the Anglican and Protestant Bible translations. The"} +{"qid": "test2098", "pid": "14683638", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Biblical canon\"\nof the Bible is also known as the Inspired Version of the Bible.) The manuscripts of the unfinished Joseph Smith Translation of the Bible (JST) state that \"\"the Song of Solomon is not inspired scripture.\"\" However, it is still printed in every version of the King James Bible published by the church. The Standard Works are printed and distributed by the LDS church in a single binding called a \"\"Quadruple Combination\"\" or a set of two books, with the Bible in one binding, and the other three books in a second binding called a \"\"Triple Combination\"\". Current editions of the"} +{"qid": "test2098", "pid": "19382497", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "Qene\noriginal source of Qəne composition. Some parts of the Bible such as the Psalms and the Song of Songs (Song of Solomon) are written in poetry form. Some books of the Bible such as the Song of Songs and the teachings (sermons) of Jesus use a lot of metaphorical and allegorical language similar to the Säm əna Wärq mode of Qəne. Saint Yared’s non-sparing use of the content and style of the Bible helped in making his compositions acceptable and popular. Some of his compositions are still used as prayers in their original form. Although Saint Yared was the earliest"} +{"qid": "test2098", "pid": "388362", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Song of Songs\"\nSong of Songs The Song of Songs, also Song of Solomon or Canticles (Hebrew: \"\"Šîr HaŠîrîm\"\", Greek: \"\"Âisma Āismátōn\"\"), is one of the \"\"megillot\"\" (scrolls) found in the last section of the Tanakh, known as the Ketuvim (or \"\"Writings\"\"), and a book of the Old Testament. The Song of Songs is unique within the Hebrew Bible: it shows no interest in Law or Covenant or Yahweh the God of Israel, nor does it teach or explore wisdom like Proverbs or Ecclesiastes (although it does have some affinities to wisdom literature, as the ascription to Solomon indicates); instead, it celebrates sexual"} +{"qid": "test2098", "pid": "73621", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Standard works\"\nin the Bible have led to incorrect interpretations of certain passages. Thus, as church founder Joseph Smith explained, the church believes the Bible to be the word of God \"\"as far as it is translated correctly.\"\" The church teaches that \"\"[t]he most reliable way to measure the accuracy of any biblical passage is not by comparing different texts, but by comparison with the Book of Mormon and modern-day revelations\"\". The manuscripts of the Joseph Smith Translation of the Bible state that \"\"the Song of Solomon is not inspired scripture,\"\" and therefore it is not included in LDS canon and rarely"} +{"qid": "test2098", "pid": "411205", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Hebrew Bible\"\nSong of Solomon, Lamentations of Jeremiah, Daniel, Scroll of Esther, Ezra, Chronicles. In Tiberian Masoretic codices, including the Aleppo Codex and the Leningrad Codex, and often in old Spanish manuscripts as well, the order is Chronicles, Psalms, Job, Proverbs, Ruth, Song of Solomon, Ecclesiastes, Lamentations of Jeremiah, Esther, Daniel, Ezra. In Masoretic manuscripts (and some printed editions), Psalms, Proverbs and Job are presented in a special two-column form emphasizing the parallel stichs in the verses, which are a function of their poetry. Collectively, these three books are known as \"\"Sifrei Emet\"\" (an acronym of the titles in Hebrew, איוב, משלי,"} +{"qid": "test2098", "pid": "8582718", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Memphis School of Preaching\"\nare filled to capacity (holding over 1,100 people). In the past, topical studies have been considered, such as \"\"Sin and Salvation,\"\" \"\"The Apostle Paul,\"\" \"\"Lessons in Lyrics,\"\" and \"\"What is Man?\"\" Bible books, for example, \"\"Ecclesiastes and Song of Solomon,\"\" \"\"Genesis,\"\" and \"\"1 and 2 Timothy and Titus,\"\" have also been examined. Guy N. Woods, Wendell Winkler, Alan Highers, Franklin Camp, Rex A. Turner, Sr., Thomas B. Warren, Garland Elkins, and Robert R. Taylor, Jr., among others known throughout the churches of Christ, have preached at the MSOP Lectureship. Each lecture remains available in various forms of media, including tapes,"} +{"qid": "test2098", "pid": "15559034", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "Shulamite\nShulamite A Shulamite is a person from Shulem. It is the ascription given to the female protagonist in the Song of Songs in the Hebrew Bible. In the King James Version and other Bibles, it is the Song of Solomon or Canticle of Canticles. She is most likely called the Shulammite because she came from an unidentified place called Shulem. Many scholars consider \"\"Shulammite\"\" to be synonymous with \"\"Shunammite\"\" (“person from Shunem”). Shunem was a village in the territory of Issachar, north of Jezreel and south of Mount Gilboa. Other scholars link \"\"Shulem\"\" with \"\"Salem\"\", believing Solomon’s bride was from"} +{"qid": "test2098", "pid": "388382", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Song of Songs\"\na committed relationship. In modern times the poem has attracted the attention of feminist biblical critics, with Phyllis Trible's foundational \"\"Depatriarchalizing in Biblical Interpretation\"\" treating it as an exemplary text and the Feminist Companion to the Bible series edited by Athalya Brenner and Carole Fontaine devoting to it two volumes (1993, 2000). Excerpts from the book have inspired composers to vocal and instrumental compositions, including: Song of Songs The Song of Songs, also Song of Solomon or Canticles (Hebrew: \"\"Šîr HaŠîrîm\"\", Greek: \"\"Âisma Āismátōn\"\"), is one of the \"\"megillot\"\" (scrolls) found in the last section of the Tanakh, known as"} +{"qid": "test2098", "pid": "9095511", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Scrolls of the Megilloth\"\ntheir call\"\". The title \"\"Scrolls of the Megilloth\"\" is a term in the Old Testament that means The Five Scrolls (Five Megillot): Ruth, Esther, Song of Solomon, Lamentations, and Ecclesiastes. The song deals with the purposes of these books. According to the album liner notes, Steve Rowe studied at a Bible college a year before the album was recorded and he learned that these books were read at feasts and celebrations of significant Jewish dates. Rowe writes: \"\"When we read 2 Timothy 3:16 we realised that all scriptures are there for a purpose and should all be studied to guide"} +{"qid": "test2098", "pid": "9703669", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Alcohol in the Bible\"\nin daily life in biblical times is apparent from its many positive and negative metaphorical uses throughout the Bible. Positively, free wine is used as a symbol of divine grace, and wine is repeatedly compared to intimate love in the Song of Solomon. Negatively, wine is personified as a mocker (\"\"[t]he most hardened apostate\"\" in the Book of Proverbs whose chief sin is pride) and beer a brawler (one who is \"\"mocking, noisy, and restless\"\"). Additionally, the chosen people and kingdom of God are compared to a divinely owned vine or vineyard in several places, and the image of new"} +{"qid": "test2098", "pid": "411207", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Hebrew Bible\"\nwith the latest parts having dates ranging into the 2nd century BCE. These scrolls are traditionally read over the course of the year in many Jewish communities. The list below presents them in the order they are read in the synagogue on holidays, beginning with the Song of Solomon at Passover. Besides the three poetic books and the five scrolls, the remaining books in Ketuvim are Daniel, Ezra–Nehemiah and Chronicles. Although there is no formal grouping for these books in the Jewish tradition, they nevertheless share a number of distinguishing characteristics. There are two major approaches towards study of, and"} +{"qid": "test2098", "pid": "4817173", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Codex Gigas\"\nBible in the Vulgate version, except for the books of Acts and Revelation, which are from a pre-Vulgate version. They are in the order: Genesis–Ruth; Isaiah–Daniel; Hosea–Malachi; Job; Samuel and Kings; Psalms–Song of Solomon; Wisdom of Solomon; Wisdom of Jesus; Esdras; Tobit; Judith; Esther; and Maccabees. The two works by Josephus then continue the history of the Jews (f. 118–178). The first page of Josephus, which recounts the Genesis creation story, is illustrated in the margin with the pictures of Heaven and Earth (f. 118v). These are followed by Isidore's \"\"Etymologiae\"\" (f. 201–239), and the medical works (f. 240–252). Following"} +{"qid": "test2098", "pid": "7284768", "query": "what book of the bible is the song of solomon in", "answer": "Song of Solomon", "passage": "\"Figs in the Bible\"\nfig tree. There was a fig tree in the garden of the Song of Solomon, and in the year of love the tree formed its fruit early (). The fig tree and figs are featured in the Book of Jeremiah and mentioned briefly in the Book of Micah. Another species of \"\"ficus\"\", the Egyptian sycamore fig is occasionally mentioned as well, for example . The parable of the budding fig tree is found in , , as part of the Olivet discourse. The term fig tree could be understood to refer to Israel , The parable of the barren fig"} +{"qid": "test2099", "pid": "19872986", "query": "songs on 4 your eyez only j cole", "answer": "Immortal", "passage": "\"4 Your Eyez Only\"\nJanuary 16, 2017, Cole released a track titled, \"\"High for Hours\"\", the song was produced by Elite and Cam O'bi. It was recorded in summer 2015 while on the Forest Hills Drive Tour, and was considered for \"\"4 Your Eyez Only\"\" but was omitted due to it not fitting the narrative. Music videos for the tracks \"\"For Whom the Bell Tolls\"\", \"\"Immortal\"\", \"\"Ville Mentality\"\", \"\"Change\"\", \"\"She's Mine Pt. 2\"\" and \"\"4 Your Eyez Only\"\" were included in the \"\"J. Cole: 4 Your Eyez Only\"\" HBO documentary. Cole never officially released the videos separately from the documentary, but all were eventually"} +{"qid": "test2099", "pid": "13495015", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"J. Cole\"\nthe Recording Industry Association of America (RIAA). On January 16, 2017, Cole surprisingly released a track titled, \"\"High for Hours\"\" via his SoundCloud. The song was produced by Elite and Cam O'Bi. The song was released on the iTunes store as a single on January 18. Cole announced the 4 Your Eyez Only World Tour on February 21, 2017, the tour included 62 dates across North America, Europe and Australia. On March 24, 2017 HBO announced a documentary titled, \"\"J. Cole: 4 Your Eyez Only\"\", the film aired April 15, 2017. The film was directed by Cole and Scott Lazer."} +{"qid": "test2099", "pid": "13495014", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"J. Cole\"\nbeing released as a single, becoming J. Cole's highest charting song. All 10 songs from \"\"4 Your Eyez Only\"\" debuted in the top 40 of the Hot 100, after only having four top 40 hits as a solo artist. \"\"False Prophets\"\" and \"\"Everybody Dies\"\" both charted also. Cole achieved twelve simultaneous Hot 100 entries in a single week. \"\"Deja Vu\"\" was released as the album's first single on January 10, 2017. On January 12, 2017, \"\"4 Your Eyez Only\"\" was certified gold by the Recording Industry Association of America (RIAA). On April 7, 2017 the album was certified platinum by"} +{"qid": "test2099", "pid": "19872964", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\n4 Your Eyez Only 4 Your Eyez Only is the fourth studio album by American rapper J. Cole. It was released on December 9, 2016, by Dreamville Records, Roc Nation and Interscope Records. The album was Cole's first release with Interscope—his previous albums were released by Columbia Records. \"\"4 Your Eyez Only\"\" was released exactly two years after Cole's previous studio album, \"\"2014 Forest Hills Drive\"\". Most of these recordings took place from 2015 to 2016, while the production on the album was primarily handled by Cole himself, alongside several other record producers such as Vinylz, Boi-1da, Cardiak, Ron Gilmore,"} +{"qid": "test2099", "pid": "19872968", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\na live concert, Cole said that it would be his \"\"last show for a very long time.\"\" However, on December 1, with no announcement from Cole himself, a pre-order for his fourth studio album, titled \"\"4 Your Eyez Only\"\" was made available on iTunes Store, with a release date for December 9, 2016. Dreamville Records revealed \"\"4 Your Eyez Only\"\" official track listing on December 6 through their Twitter account. According to a Twitter rep, there were 2.7 million tweets mentioning J. Cole or \"\"4 Your Eyez Only\"\" between December 7 to December 19, 2016. In January 2017, in an"} +{"qid": "test2099", "pid": "20096028", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only World Tour\"\nbundle included \"\"4 Your Eyez Only\"\" on vinyl, cassette and CD, or each could be purchased individually. The set also included limited artwork and \"\"4 Your Eyez Only\"\" tour pre-sale access. 4 Your Eyez Only World Tour 4 Your Eyez Only World Tour was a concert tour by American recording artist J. Cole, to support his fourth studio album \"\"4 Your Eyez Only\"\" (2016). Dreamville artists J.I.D, Ari Lennox and Lute served as opening acts on the first leg of the tour. Singer Anderson .Paak and rapper Bas served as opening acts on the second leg of the tour, along"} +{"qid": "test2099", "pid": "19872981", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nsecond documentary with Cole tiled, \"\"J. Cole: 4 Your Eyez Only\"\", the first being \"\"\"\" in 2016, the documentary aired April 15, 2017 on HBO and HBO Now. Incorporating music from \"\"4 Your Eyez Only\"\", Cole captured stories of residents in Baton Rouge, Louisiana, Atlanta, Georgia, Ferguson, Missouri, his father's hometown, Jonesboro, Arkansas and his hometown, Fayetteville, North Carolina. \"\"Entertainment Weekly\"\" reported, \"\"The documentary promises to illustrate how their struggles over viable housing, voting laws for felons, integration, and more mirror the frustrations felt across the nation.\"\" The documentary included security camera footage of a SWAT raid that took place"} +{"qid": "test2099", "pid": "19873005", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nhe made the beat. In an interview with \"\"Billboard\"\", Ibrahim Hamad revealed that \"\"Deja Vu\"\" was originally intended for Cole's previous album, \"\"2014 Forest Hills Drive\"\" (2014). He commented on the issue saying: Credits adapted from album's liner notes as cited on the official Dreamville website. Notes Sample credits Credits adapted from official liner notes. Musicians Technical Managerial Production 4 Your Eyez Only 4 Your Eyez Only is the fourth studio album by American rapper J. Cole. It was released on December 9, 2016, by Dreamville Records, Roc Nation and Interscope Records. The album was Cole's first release with Interscope—his"} +{"qid": "test2099", "pid": "19873000", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\n\"\"4 Your Eyez Only\"\" was certified Gold by the Recording Industry Association of America (RIAA), and only three months later was certified Platinum on April 7, 2017. As of July 2018, \"\"4 Your Eyez Only\"\" has sold 624,575 copies in the United States in traditional album sales. In Canada, the album debuted at number one, selling 31,000 copies. \"\"Deja Vu\"\" entered the US \"\"Billboard\"\" Hot 100 at number 7 without being released as a single at the time, becoming Cole's highest charting song. All 10 songs from \"\"4 Your Eyez Only\"\" debuted in the top 40 of the Hot 100,"} +{"qid": "test2099", "pid": "19891311", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"Deja Vu (J. Cole song)\"\nDrive\"\". \"\"Deja Vu\"\" became one of J. Cole's highest debuting and highest charting songs. The song debuted and peaked at number 7 on the US \"\"Billboard\"\" Hot 100. Deja Vu (J. Cole song) \"\"Deja Vu\"\" is a song by American rapper J. Cole, released on December 9, 2016 from his fourth studio album, \"\"4 Your Eyez Only\"\". It was released on January 10, 2017, as the first single off the album. The song was written by Jermaine Cole and produced by Vinylz, Boi-1da, and Velous with additional production from Cole, Ron Gilmore. \"\"Deja Vu\"\" contains samples of \"\"Swing My Way\"\""} +{"qid": "test2099", "pid": "19872973", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nput it to the side and here we are today.\"\" Classical string duo Chargaux are credited on seven of the album's ten tracks, and were on many of the songs that got cut. They previously collaborated with Cole on the track \"\"St. Tropez\"\" from \"\"2014 Forest Hills Drive\"\". They provided string arrangements, background vocals and addition production on \"\"4 Your Eyez Only\"\". Similar to his previous album, \"\"4 Your Eyez Only\"\" contains no features, other than Dreamville signee Ari Lennox who provided additional vocals on the track \"\"Change\"\". Ibrahim Hamad (Cole's manager) spoke on it saying: \"\"Cole's never gonna force"} +{"qid": "test2099", "pid": "20096026", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only World Tour\"\n4 Your Eyez Only World Tour 4 Your Eyez Only World Tour was a concert tour by American recording artist J. Cole, to support his fourth studio album \"\"4 Your Eyez Only\"\" (2016). Dreamville artists J.I.D, Ari Lennox and Lute served as opening acts on the first leg of the tour. Singer Anderson .Paak and rapper Bas served as opening acts on the second leg of the tour, along with J.I.D and Ari Lennox. Dreamville artists J.I.D., Ari Lennox and EarthGang served as opening acts on the European leg of the tour. To further promote his fourth studio album, \"\"4"} +{"qid": "test2099", "pid": "19891179", "query": "songs on 4 your eyez only j cole", "answer": "Immortal", "passage": "\"Immortal (J. Cole song)\"\nImmortal (J. Cole song) \"\"Immortal\"\" is a song by American rapper J. Cole, released on December 9, 2016 from his fourth studio album, \"\"4 Your Eyez Only\"\". The song was recorded at the Sheltuh in North Carolina and Electric Lady Studios in New York City. The song was produced by Cardiak, Frank Dukes with additional production from J. Cole. \"\"Immortal\"\" also features background vocals from Kay Foxx and interpolates \"\"Real Niggaz Don't Die\"\" performed by N.W.A. The track was generally well-received from critics. Paul A. Thompson of Pitchfork compared the song to 2Pac saying Cole \"\"comes to life on “Immortal,”"} +{"qid": "test2099", "pid": "19891173", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"Change (J. Cole song)\"\nChange (J. Cole song) \"\"Change\"\" is a song by American rapper J. Cole, released on December 9, 2016 from his fourth studio album, \"\"4 Your Eyez Only\"\". \"\"Change\"\" was recorded at the Sheltuh in North Carolina and Electric Lady Studios in New York City. The song was produced by Cole himself, with additional production from Ron Gilmore, and additional arrangement by Elite. The song also features background vocals from Dreamville signee, Ari Lennox. It also features samples from M.anifest's song, Big Sixes. The narrative follows the story of Cole's friend who was killed at the age of 22. In the"} +{"qid": "test2099", "pid": "19872991", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nthere. Writing for \"\"The Hoya\"\", Pranav Marupudi called the album Cole's \"\"most mature yet, demonstrating, once again, that he may be one of the most talented rappers in the game.\"\" \"\"4 Your Eyez Only\"\" received a editor rating of 83% on \"\"HotNewHipHop\"\", they praised the album saying, it \"\"overcomes an ambitious concept and a couple of awkward moments to stand as J. Cole's best album.\"\" Dominic Griffin writing for \"\"Spectrum Culture\"\", gave the album 3 out of 5 stars, he stated: \"\"J. Cole isn't as restlessly inventive or innovative as Kendrick Lamar. He's also not as charismatic or solipsistic as"} +{"qid": "test2099", "pid": "19891181", "query": "songs on 4 your eyez only j cole", "answer": "Immortal", "passage": "\"Immortal (J. Cole song)\"\nHot 100, which marks as his second highest charting position to date, and at number 6 on the US Hot R&B/Hip-Hop Songs chart. Immortal (J. Cole song) \"\"Immortal\"\" is a song by American rapper J. Cole, released on December 9, 2016 from his fourth studio album, \"\"4 Your Eyez Only\"\". The song was recorded at the Sheltuh in North Carolina and Electric Lady Studios in New York City. The song was produced by Cardiak, Frank Dukes with additional production from J. Cole. \"\"Immortal\"\" also features background vocals from Kay Foxx and interpolates \"\"Real Niggaz Don't Die\"\" performed by N.W.A. The"} +{"qid": "test2099", "pid": "19891309", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"Deja Vu (J. Cole song)\"\nDeja Vu (J. Cole song) \"\"Deja Vu\"\" is a song by American rapper J. Cole, released on December 9, 2016 from his fourth studio album, \"\"4 Your Eyez Only\"\". It was released on January 10, 2017, as the first single off the album. The song was written by Jermaine Cole and produced by Vinylz, Boi-1da, and Velous with additional production from Cole, Ron Gilmore. \"\"Deja Vu\"\" contains samples of \"\"Swing My Way\"\" performed by K. P. & Envyi. On December 9, 2016, producers Vinylz and Boi-1da accused producer Foreign Teck of stealing their beat, to Cole's track \"\"Deja Vu\"\" and"} +{"qid": "test2099", "pid": "19891184", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"Neighbors (song)\"\n2017. Cole used the footage of the incident from the closed-circuit television of his house as the video. The video only plays the first verse of the song. Neighbors (song) \"\"Neighbors\"\" is a song by American rapper J. Cole, released on December 9, 2016, recorded for his fourth studio album, \"\"4 Your Eyez Only\"\". It was released on April 25, 2017, as the second single off the album. The song was recorded at the Sheltuh in North Carolina and Electric Lady Studios, and was produced and written by J. Cole himself. During an interview with \"\"Complex\"\" on December 9, 2016,"} +{"qid": "test2099", "pid": "15234881", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"J. Cole discography\"\nModelz\"\" and \"\"Wet Dreamz\"\" later received a platinum certification from the RIAA. In addition to his fourth album, Cole released three singles in 2016: \"\"Love Yourz\"\", \"\"Everybody Dies\"\", and \"\"False Prophets\"\". His album \"\"4 Your Eyez Only\"\" was released on the second anniversary of \"\"2014 Forest Hill Drive\"\". \"\"4 Your Eyez Only\"\" was certified gold before it debuted at number one on the \"\"Billboard\"\" 200, despite having no singles upon release. \"\"Deja Vu\"\" was later given a single release after peaking at number 7 on the Hot 100. J. Cole's fifth album \"\"KOD\"\" was also commercial success, as both the"} +{"qid": "test2099", "pid": "19872978", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nFayetteville, Cole said: On December 2, 2016, Cole released a 40-minute documentary, titled \"\"Eyez\"\" via Tidal. The film features behind-the-scenes footage of Cole working with collaborators on the album, and was directed by Scott Lazer. The documentary also includes two music videos for the tracks \"\"False Prophets\"\" and \"\"Everybody Dies\"\". Both tracks were initially included on the album, however, both songs were omitted due to them not fitting the album's concept. The documentary was uploaded on Dreamville's YouTube channel on December 5, 2016. To further promote the album, Cole announced 4 Your Eyez Only World Tour on February 21, 2017."} +{"qid": "test2099", "pid": "19873001", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nafter only having four top 40 entries as a solo artist. Cole achieved twelve simultaneous Hot 100 entries in a single week. \"\"4 Your Eyez Only\"\" was ranked as the tenth most popular album of 2017 on the \"\"Billboard\"\" 200. Upon the release of \"\"Eyez\"\" documentary, \"\"Everybody Dies\"\" and \"\"False Prophets\"\" caused controversy within the hip hop community, as many assumed that \"\"Everybody Dies\"\" contained shots aimed at fellow rappers Lil Uzi Vert and Lil Yachty. During an interview with Los Angeles' radio station Power 106, Lil Yachty responded, saying: \"\"I don't listen to J. Cole [but] I definitely listened"} +{"qid": "test2099", "pid": "19872966", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nmusic from the album. In June 2017, Cole embarked on the 4 Your Eyez Only World Tour, to promote the album. \"\"4 Your Eyez Only\"\" debuted at number one on the US \"\"Billboard\"\" 200, selling 363,000 copies in its first week (492,000 with additional album-equivalent units), earning Cole his fourth consecutive number-one album in the country. It had the third-largest weekly sales for an album in 2016. The album also debuted at number one on \"\"Billboard\"\"s Canadian Albums Chart. The reception for \"\"4 Your Eyez Only\"\" was generally positive, many critics praised Cole's songwriting and called it his best and"} +{"qid": "test2099", "pid": "19872989", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nYour Eyez Only\"\" \"\"is a solid, short listen that relies on J. Cole's strength and comfort zone, perhaps a little too much at times, but the underlying concepts continue to add a layer of depth to his artistry.\"\" \"\"Pitchfork\"\" writer Paul A. Thompson gave the album a 6.7 out of 10 stating, \"\"on J. Cole's fourth album, he wrestles with the fragility of life and the importance of family ties, he also sands down some of his worst impulses.\"\" Kahron Spearman from \"\"The Daily Dot\"\" wrote that \"\"though love and hope are sufficient motifs, Cole still suffers from lack of"} +{"qid": "test2099", "pid": "19891175", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"Change (J. Cole song)\"\nJames McMillan Jr, killed at the age of 22. The fragility of life – particularly that of young black men too often felled by violence – shapes the frustration and desperation that permeates the album.\"\" Upon its first week of release, \"\"Change\"\" debuted at number 21 on the US \"\"Billboard\"\" Hot 100, and at number 11 on the US Hot R&B/Hip-Hop Songs chart. Change (J. Cole song) \"\"Change\"\" is a song by American rapper J. Cole, released on December 9, 2016 from his fourth studio album, \"\"4 Your Eyez Only\"\". \"\"Change\"\" was recorded at the Sheltuh in North Carolina and"} +{"qid": "test2099", "pid": "19872990", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nspecificity (even when he channels one very specific character). No particular track punches through. Per Cole's usual, no new ground has been discovered—but in the right space, \"\"4 Your Eyez Only\"\" pierces hearts. J. Cole made another wildly popular, OK rap album—and for now, that's fine.\"\" Writing for \"\"\"\"New York\"\" (\"\"Vulture\"\")\"\", Craig Jenkins declared it Cole's \"\"best and most mature album.\"\" In a positive review from \"\"The Advocate\"\", Josh Jackson stated, \"\"it may not have the force of \"\"2014 Forest Hills Drive\"\", but this is a highly personal set, confirming Cole's status as one of the best young rappers out"} +{"qid": "test2099", "pid": "19872987", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nuploaded to YouTube by accounts not associated with Cole. Upon its release, \"\"4 Your Eyez Only\"\" received generally positive reviews by music critics. At Metacritic, which assigns a normalized rating out of 100 to reviews from mainstream publications, the album received an average score of 75, based on 14 reviews. Rob Boffard of \"\"Exclaim!\"\" praised J. Cole's songwriting stating, \"\"Cole has always been one of the most slept-on songwriters in hip-hop, and on this record, he's better than he's ever been.\"\" Writing for \"\"The Guardian\"\", Sheldon Pearce said, \"\"there is still significant room for growth, but he has finally found"} +{"qid": "test2099", "pid": "13495013", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"J. Cole\"\na 40-minute documentary titled \"\"Eyez\"\", on Tidal. It features behind-the-scenes footage of Cole and collaborators working on the album, including two music videos for the tracks \"\"False Prophets\"\" and \"\"Everybody Dies\"\"; neither song was included on the album. On December 5, \"\"False Prophets\"\" and \"\"Everybody Dies\"\" were released as singles to iTunes store and other streaming services. \"\"4 Your Eyez Only\"\" debuted at number one on the \"\"Billboard\"\" 200 with 492,000 album-equivalent units, of which 363,000 were pure album sales, becoming Cole's fourth number one album. The track \"\"Deja Vu\"\" entered the US \"\"Billboard\"\" Hot 100 at number 7 without"} +{"qid": "test2099", "pid": "19872984", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"4 Your Eyez Only\"\nSongs chart. The song was produced by Cole, and during his 4 Your Eyez Only World Tour, Cole revealed the beat for \"\"Neighbors\"\" is the instrumental from his 2013 single, \"\"Forbidden Fruit\"\" played in reverse, with a tempo switch and snare removal. On May 1, 2017, the music video for \"\"Neighbors\"\" was uploaded on Cole's Vevo channel. On December 5, \"\"False Prophets\"\" and \"\"Everybody Dies\"\" were released as singles to iTunes and all streaming services. Both tracks charted on the US \"\"Billboard\"\" Hot 100, \"\"False Prophets\"\" peaked at number 54, while \"\"Everybody Dies\"\" peaked at number 57. The beat for"} +{"qid": "test2099", "pid": "19891182", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"Neighbors (song)\"\nNeighbors (song) \"\"Neighbors\"\" is a song by American rapper J. Cole, released on December 9, 2016, recorded for his fourth studio album, \"\"4 Your Eyez Only\"\". It was released on April 25, 2017, as the second single off the album. The song was recorded at the Sheltuh in North Carolina and Electric Lady Studios, and was produced and written by J. Cole himself. During an interview with \"\"Complex\"\" on December 9, 2016, Dreamville in-house producer, Elite explained the incident which occurred a few months prior that inspired the story in the track, \"\"Neighbors\"\", saying, The song's instrumental was derived from"} +{"qid": "test2099", "pid": "13495012", "query": "songs on 4 your eyez only j cole", "answer": "4 Your Eyez Only", "passage": "\"J. Cole\"\nwas a posse record and was like, nine verses long.\"\" On November 4, 2016, Cole performed at Jay Z and Beyoncé's Hillary Clinton Rally in Cleveland, Ohio, along with Big Sean and Chance the Rapper. On November 8, 2016, Spillage Village released the official version of \"\"Jermaine's Interlude\"\", called \"\"Can't Call It\"\". The song features Cole, EarthGang, Bas and J.I.D. On December 1, 2016, the artwork and a track list for Cole's fourth album, titled \"\"4 Your Eyez Only\"\", were shown on iTunes available for pre-order, with a release date for December 9, 2016. On December 2, 2016, Cole released"} +{"qid": "test21", "pid": "3156501", "query": "right to property according to the constitution of india is a", "answer": "constitutional right", "passage": "\"Christian mission\"\nof India tells The Christian Science Monitor today. 'They [India's controlling BJP party] have created an atmosphere where minorities do feel insecure.'\"\" According to Prakash Louis, director of the secular Indian Social Institute in New Delhi, \"\"We are seeing a broad attempt to stifle religious minorities and their constitutional rights...Today, they say you have no right to convert, Tomorrow you have no right to worship in certain places.\"\" Existing congregations, often during times of worship, are being persecuted. Properties are sometimes destroyed and burnt to the ground, while native pastors are sometimes beaten and left for dead. Christian mission A"} +{"qid": "test21", "pid": "2390774", "query": "right to property according to the constitution of india is a", "answer": "constitutional right", "passage": "\"Supreme Court of India\"\nit ruled in \"\"Golaknath v. State of Punjab\"\" that the parliament did not have the power to abrogate fundamental rights, including the provisions on private property. The 25th amendment to the constitution in 1971 curtailed the right of a citizen to property as a fundamental right and gave authority to the government to infringe private property, which led to a furor amongst the \"\"zamindars\"\". The independence of judiciary was severely curtailed during the Indian Emergency (1975–1977) of Indira Gandhi. The constitutional rights of imprisoned persons were restricted under Preventive detention laws passed by the parliament. In the case of Shiva"} +{"qid": "test210", "pid": "727549", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Optic chiasm\"\nof crossing in their brains, they cross their eyes (strabismus). This is also seen in albino tigers, as Guillery & Kaas report. The crossing of nerve fibres, and the impact on vision that this had, was probably first identified by Persian physician \"\"Esmail Jorjani\"\", who appears to be Zayn al-Din Gorgani (1042–1137). Optic chiasm The optic chiasm or optic chiasma (; Greek , \"\"crossing\"\", from the Greek 'to mark with an X', after the Greek letter 'Χ', \"\"chi\"\") is the part of the brain where the optic nerves partially cross. The optic chiasm is located at the bottom of the"} +{"qid": "test210", "pid": "727545", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Optic chiasm\"\nOptic chiasm The optic chiasm or optic chiasma (; Greek , \"\"crossing\"\", from the Greek 'to mark with an X', after the Greek letter 'Χ', \"\"chi\"\") is the part of the brain where the optic nerves partially cross. The optic chiasm is located at the bottom of the brain immediately inferior to the hypothalamus. The optic chiasm is found in all vertebrates, although in cyclostomes (lampreys and hagfishes) it is located within the brain. The optic nerve fibres on the nasal sides of each retina (which correspond to the temporal side of each visual field, because the image is inverted)"} +{"qid": "test210", "pid": "4088157", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Visual processing\"\nThe retina is where a group of light-sensing cells, called photoreceptors are located. There are two types of photoreceptors: rods and cones. Rods are sensitive to dim light and cones are better able to transduce bright light. Photoreceptors connect to bipolar cells, which induce action potentials in retinal ganglion cells. These retinal ganglion cells form a bundle at the optic disc, which is a part of the optic nerve. The two optic nerves from each eye meet at the optic chiasm, where nerve fibers from each nasal retina cross which results in the right half of each eye's visual field"} +{"qid": "test210", "pid": "3114836", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Visual acuity\"\nover which an animal is highly sensitive to such visual deprivation is referred to as the critical period. The eye is connected to the visual cortex by the optic nerve coming out of the back of the eye. The two optic nerves come together behind the eyes at the optic chiasm, where about half of the fibers from each eye cross over to the opposite side and join fibers from the other eye representing the corresponding visual field, the combined nerve fibers from both eyes forming the optic tract. This ultimately forms the physiological basis of binocular vision. The tracts"} +{"qid": "test210", "pid": "1346810", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Optic nerve\"\nspace before joining the optic chiasm. There, partial decussation occurs, and about 53% of the fibers cross to form the optic tracts. Most of these fibres terminate in the lateral geniculate body. Based on this anatomy, the optic nerve may be divided in the four parts as indicated in the image at the top of this section (this view is from above as if you were looking into the orbit after the top of the skull had been removed): 1. the optic head (which is where it begins in the eyeball (globe) with fibers from the retina; 2. orbital part"} +{"qid": "test210", "pid": "3410600", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Retinal ganglion cell\"\noptic chiasm border. Additionally, Slit signaling is important here: Heparin sulfate proteoglycans (HSPGs), proteins in the ECM, will anchor the Slit morphogen at specific points in the posterior chiasm border. RGCs will begin to express Robo, the receptor for Slit, at this point thus facilitating the repulsion. RGC axons traveling to the contralateral optic tract need to cross. Shh plays a role in this. It is expressed along the midline in the ventral diencephalon, providing a repulsive cue to prevent RGCs from crossing the midline ectopically. However, a hole is generated in this gradient, thus allowing RGCs to decussate (research"} +{"qid": "test210", "pid": "1346808", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Optic nerve\"\nof the retinal ganglion cells of one retina. In the fovea, which has high acuity, these ganglion cells connect to as few as 5 photoreceptor cells; in other areas of retina, they connect to many thousand photoreceptors. The optic nerve leaves the orbit (eye socket) via the optic canal, running postero-medially towards the optic chiasm, where there is a partial decussation (crossing) of fibres from the temporal visual fields (the nasal hemi-retina) of both eyes. The proportion of decussating fibers varies between species, and is correlated with the degree of binocular vision enjoyed by a species. Most of the axons"} +{"qid": "test210", "pid": "727546", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Optic chiasm\"\ncross over (decussate) to the opposite side of the brain via the optic nerve at the optic chiasm (decussation of medial fibers). The temporal hemiretina (corresponding to the nasal visual field), on the other hand, stays on the same side. The inferonasal retina are related to anterior portion of the optic chiasm whereas superonasal retinal fibers are related to the posterior portion of the optic chiasm. The crossing over of optic nerve fibres at the optic chiasm allows the visual cortex to receive the same hemispheric visual field from both eyes. Superimposing and processing these monocular visual signals allow the"} +{"qid": "test210", "pid": "1821613", "query": "where does the optic nerve cross the midline ​", "answer": "optic chiasm", "passage": "\"Oculomotor nerve\"\nshould constrict. Shining a light into one eye should result in equal constriction of the other eye. The neurons in the optic nerve decussate in the optic chiasm with some crossing to the contralateral optic nerve tract. This is the basis of the \"\"swinging-flashlight test\"\". Loss of accommodation and continued pupillary dilation can indicate the presence of a lesion on the oculumotor nerve. Oculomotor nerve The oculomotor nerve is the third cranial nerve (CN III). It enters the orbit via the superior orbital fissure and innervates extrinsic eye muscles that enable most movements of the eye and that raise the"} +{"qid": "test2101", "pid": "12578607", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"Internet celebrity\"\npostings. The concept of web celebrity ties into Andy Warhol's quip about 15 minutes of fame. A more recent adaptation of Warhol's quip, possibly prompted by the rise of online social networking, blogging, and similar online phenomena, is the claim that \"\"In the future, everyone will be famous to fifteen people\"\" or, in some renditions, \"\"On the Web, everyone will be famous to fifteen people\"\". This quote, though attributed to David Weinberger, was said to have originated with the Scottish artist Momus. Social media personalities often function as lifestyle gurus who present a particular lifestyle or attitude to their spectators."} +{"qid": "test2101", "pid": "2024467", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "Allusion\nartist most famous for his pop-art images of Campbell soup cans and of Marilyn Monroe, commented on the explosion of media coverage by saying, \"\"In the future, everyone will be world-famous for 15 minutes.\"\" Today, when someone receives a great deal of media attention for something fairly trivial, and he or she is said to be experiencing his or her \"\"15 minutes of fame\"\", that is an allusion to Andy Warhol's famous remark. According to the Book of Genesis, God destroyed the cities of Sodom and Gomorrah, but Lot, the nephew of Abraham, was given time to escape with his"} +{"qid": "test2101", "pid": "4473205", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"15 minutes of fame\"\n15 minutes of fame 15 minutes of fame is short-lived media publicity or celebrity of an individual or phenomenon. The expression was inspired by Andy Warhol's words \"\"In the future, everyone will be world-famous for 15 minutes\"\", which appeared in the program for a 1968 exhibition of his work at the Moderna Museet in Stockholm, Sweden. Photographer Nat Finkelstein claims credit for the expression, stating that he was photographing Warhol in 1966 for a proposed book. A crowd gathered trying to get into the pictures and Warhol supposedly remarked that everyone wants to be famous, to which Finkelstein replied, \"\"Yeah,"} +{"qid": "test2101", "pid": "6652016", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"15 Minutes\"\n15 Minutes 15 Minutes is a 2001 German-American crime action thriller film directed by John Herzfeld and starring Robert De Niro and Edward Burns. Its story revolves around a homicide detective (De Niro) and a fire marshal (Burns) who join forces to apprehend a pair of Eastern European murderers (Karel Roden and Oleg Taktarov) videotaping their crimes in order to become rich and famous. The title is a reference to the Andy Warhol quotation, \"\"In the future, everyone will be world-famous for 15 minutes.\"\" Ex-convicts Emil Slovak (Karel Roden) and Oleg Razgul (Oleg Taktarov) arrive in the United States to"} +{"qid": "test2101", "pid": "4473213", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"15 minutes of fame\"\nfame was almost over. In 2018, the band Shinedown came out with the song \"\"special\"\" which mentions not waiting on 15 minutes of fame. It is on their album Attention Attention. 15 minutes of fame 15 minutes of fame is short-lived media publicity or celebrity of an individual or phenomenon. The expression was inspired by Andy Warhol's words \"\"In the future, everyone will be world-famous for 15 minutes\"\", which appeared in the program for a 1968 exhibition of his work at the Moderna Museet in Stockholm, Sweden. Photographer Nat Finkelstein claims credit for the expression, stating that he was photographing"} +{"qid": "test2101", "pid": "13657567", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"15 Minutes (The Yeah You's song)\"\n15 Minutes (The Yeah You's song) \"\"15 Minutes\"\" is a pop song performed and written by British group The Yeah You's. It was penned by the band for their debut studio album \"\"Looking Through You\"\" (2009), and released as the debut single in June 2009. The song reached a peak position of number 36 on the UK Singles Chart. The video follows the band's rise to stardom, with Andy Warhol's words, \"\"In the Future, everyone will be famous for 15 minutes\"\", appearing at the start of the video. The band can be seen singing in a bedroom, then busking on"} +{"qid": "test2101", "pid": "12373912", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"15 Minutes of Shame\"\nlie you told, I'm tellin'\"\"). She explains that \"\"every girl in the world's gonna know [his] name\"\", and that she hopes he enjoys his \"\"15 minutes of shame\"\" for his actions. The title is a play on the famous quote by Andy Warhol about everyone getting 15 minutes of fame. \"\"Common Sense\"\" wrote that the song is \"\"a blend of mainstream pop with a country twang, and works surprisingly well in both musical styles and that the lyrics — full of sass and spunk — benefit from Cook's vocals and keep the single lighter and more fun despite the injections"} +{"qid": "test2101", "pid": "5880781", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"Fifteen Minutes of Shame\"\nFifteen Minutes of Shame \"\"Fifteen Minutes of Shame\"\" is the 12th episode from the second season of the FOX animated television series \"\"Family Guy\"\". It is the 19th episode of \"\"Family Guy\"\" to be aired. The title spoofs the popular paraphrase of Andy Warhol's famous quote about everyone getting 15 minutes of fame. The pre-titles sequence references PBS's art program \"\"The Joy of Painting\"\" with Bob Ross. Peter is supposedly following Bob's instructions and painting a landscape scene, but it is revealed he has painted the Keaton family from NBC's \"\"Family Ties\"\" in a parody of that show's opening titles."} +{"qid": "test2101", "pid": "5880785", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"Fifteen Minutes of Shame\"\nchanges Meg's last sentence from \"\"I couldn't be happier\"\" to \"\"I want to KILL THEM ALL\"\". In his 2009 review, Ahsan Haque of IGN, rating the episode a 9.9/10, called the episode an \"\"instant classic\"\" and \"\"one of the funniest and most creatively constructed episodes of \"\"Family Guy\"\"\"\". Fifteen Minutes of Shame \"\"Fifteen Minutes of Shame\"\" is the 12th episode from the second season of the FOX animated television series \"\"Family Guy\"\". It is the 19th episode of \"\"Family Guy\"\" to be aired. The title spoofs the popular paraphrase of Andy Warhol's famous quote about everyone getting 15 minutes of"} +{"qid": "test2101", "pid": "2612919", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"Momus (musician)\"\ninto a meme, \"\"On the web, everyone will be famous to fifteen people\"\". The quip parodies Andy Warhol's famous prediction that, \"\"In the future, everyone will be famous for fifteen minutes\"\". The Fotolog.Book with texts by Momus on photoblogging was published in April 2006 by British publishers Thames & Hudson. Momus has published several books. \"\"The Book of Jokes\"\" and \"\"The Book of Scotlands\"\" have received positive reviews in the LA Times and the Guardian. \"\"The Book of Scotlands\"\" (Sternberg Press) was shortlisted for the Scottish Arts Council's First Book prize. He published \"\"The Book of Japans\"\" in 2011, also"} +{"qid": "test2101", "pid": "8426238", "query": "who said everyone will be famous for 15 minutes", "answer": "Andy Warhol", "passage": "\"Jung Talent Time\"\nlist of names, it is not until the chorus that the unifying thread of the list becomes clear. \"\"Andy Warhol got it right / Everybody gets the limelight\"\" \"\"Andy Warhol got it wrong / Fifteen minutes is too long.\"\" Referencing Andy Warhol's famous statement that \"\"Everyone will be famous for fifteen minutes\"\", however TISM believe that fifteen minutes is far too long for some people to be famous, including TISM. A number of the names mentioned in this song have been mentioned by, or been involved with, TISM in some way. All tracks were remixed by David Thrussell and Pieter"} +{"qid": "test2102", "pid": "13553585", "query": "when did the movie karate kid come out", "answer": "2010", "passage": "\"The Karate Kid (2010 film)\"\ncome easily, he never conveys the sense that he's desperate to be liked. 'The Karate Kid' winds up being so likable itself.\"\" Roger Ebert of the \"\"Chicago Sun-Times\"\" gave it a positive review, rating the film three and a half out of four stars, and calling it \"\"a lovely and well-made film that stands on its own feet\"\". Claudia Puig of \"\"USA Today\"\" and Owen Gleiberman of \"\"Entertainment Weekly\"\" each rated the film a 'B', stating \"\"the chemistry between Jaden Smith and Jackie Chan grounds the movie, imbuing it with sincerity and poignance\"\" and that the film is \"\"fun and"} +{"qid": "test2102", "pid": "3135991", "query": "when did the movie karate kid come out", "answer": "2010", "passage": "\"The Next Karate Kid\"\nIndeed, the film's performance ensured that the franchise disappeared from cinemas for sixteen years, only reappearing in 2010 with a remake of the original movie. The total box office gross for \"\"The Next Karate Kid\"\" was $8.9 million, compared to $90.8 million for the original, $115.1 million for \"\"Part II,\"\" $38.9 million for \"\"Part III,\"\" and $171.8 million for the 2010 \"\"Karate Kid.\"\" The film was released on DVD on August 28, 2001. A manufacture on demand Blu-ray release was released on September 6, 2016 as part of Sony's Choice Collection. The Next Karate Kid The Next Karate Kid (also"} +{"qid": "test2102", "pid": "228573", "query": "when did the movie karate kid come out", "answer": "1984", "passage": "Karate\nkarate and other Asian martial arts into mass popularity. \"\"The Karate Kid\"\" (1984) and its sequels \"\"The Karate Kid, Part II\"\" (1986), \"\"The Karate Kid, Part III\"\" (1989) and \"\"The Next Karate Kid\"\" (1994) are films relating the fictional story of an American adolescent's introduction into karate. \"\"Karate Kommandos\"\", an animated children's show, with Chuck Norris appearing to reveal the moral lessons contained in every episode. Many other film stars such as Bruce Lee, Chuck Norris, Jackie Chan, Sammo Hung, and Jet Li come from a range of other martial arts. Karate The Ryukyu Kingdom was annexed by Japan in"} +{"qid": "test2102", "pid": "5686429", "query": "when did the movie karate kid come out", "answer": "1984", "passage": "\"The Karate Kid Part III\"\nin \"\"Star Trek V: The Final Frontier\"\"), and Worst Supporting Actor (Pat Morita; lost to Christopher Atkins in \"\"Listen to Me\"\"). In 2015, director John G. Avildsen himself called the film \"\"a poor imitation of the first one\"\" and \"\"a horrible movie\"\". The Karate Kid Part III The Karate Kid Part III is a 1989 American martial arts drama film and the second sequel to \"\"The Karate Kid\"\" (1984). The film stars Ralph Macchio, Pat Morita, Robyn Lively, and Thomas Ian Griffith in his film debut. As was the case with the first two films in the series, it was"} +{"qid": "test2102", "pid": "905782", "query": "when did the movie karate kid come out", "answer": "1984", "passage": "\"The Karate Kid\"\nhit song \"\"Eye of the Tiger\"\". Coincidentally, Survivor also performed the main theme (\"\"The Moment of Truth\"\" Music & Lyrics: Bill Conti, Dennis Lambert, Peter Beckett) for \"\"The Karate Kid\"\". Bananarama's 1984 hit song \"\"Cruel Summer\"\" also made its U.S. debut in \"\"The Karate Kid\"\" but was excluded from the film's soundtrack album. Other songs featured in the film but left off the album include \"\"Please Answer Me\"\" performed by Broken Edge and \"\"The Ride\"\" performed by The Matches. \"\"The Karate Kid\"\" ranked #40 on \"\"Entertainment Weekly\"\"s list of the 50 Best High School Movies. The film received an approval"} +{"qid": "test2102", "pid": "1294795", "query": "when did the movie karate kid come out", "answer": "2010", "passage": "\"Jackie Chan\"\nof his province. In 2010 he starred with Jaden Smith in \"\"The Karate Kid\"\", a remake of the 1984 original. This was Chan's first dramatic American film. He plays Mr. Han, a kung fu master and maintenance man who teaches Jaden Smith's character kung fu so he can defend himself from school bullies. His role in \"\"The Karate Kid\"\" won Jackie Chan the Favorite Buttkicker award at the Nickelodeon Kids' Choice Awards in 2011. In Chan's next movie, \"\"Shaolin\"\", he plays a supporting role as a cook of a temple instead of one of the major characters. His 100th movie,"} +{"qid": "test2102", "pid": "13553583", "query": "when did the movie karate kid come out", "answer": "2010", "passage": "\"The Karate Kid (2010 film)\"\nappearance from Will Smith. The United Kingdom premiere was held July 15. It was attended by Chan and Smith, as well as producers Will and Jada Pinkett Smith. In the Mainland China version of the film, scenes of bullying were shortened by the censors, and a kissing scene is removed. John Horn said that the editing ultimately resulted in \"\"two slightly different movies\"\". \"\"The Karate Kid\"\" was released on DVD and Blu-ray on October 5, 2010 by Sony Pictures Home Entertainment, and it was released on Mastered in 4K Blu-ray on May 14, 2013. \"\"The Karate Kid\"\" received mixed reviews."} +{"qid": "test2102", "pid": "13762847", "query": "when did the movie karate kid come out", "answer": "1984", "passage": "\"Pat E. Johnson\"\nthe United Fighting Arts Federation (UFAF), again naming Johnson as executive vice president. In 1980, Johnson had a small supporting role in the feature film \"\"The Little Dragons\"\" (later known as \"\"The Karate Kids U.S.A.\"\"). In the film, Johnson played the karate instructor to a pair of young brothers (portrayed by Chris and Pat Petersen) who use their martial arts skills to foil a kidnapping plot. In 1984, Johnson served as Stunt Co-ordinator on Karate Kid. Johnson also featured in the movie as the chief referee in the All Valley Karate Tournament. He was one of only two cast members"} +{"qid": "test2102", "pid": "3135986", "query": "when did the movie karate kid come out", "answer": "1984", "passage": "\"The Next Karate Kid\"\nGymnasium at Tufts University. Other scenes from the movie were shot in the Boston area. For example, the scenes at Julie's house were filmed in nearby Newton. The first three movies in the series, which featured Ralph Macchio as Daniel LaRusso, were set in Los Angeles, California. In this movie, the setting is changed to Boston, Massachusetts. Mr. Miyagi's approach to karate-training is different as well, although he still has Julie wash cars (\"\"Wax on, wax off\"\") in order to teach her how to block punches and kicks. In the original 1984 film, Daniel used to think karate came from"} +{"qid": "test2105", "pid": "3871419", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"Eric Forman\"\nonce in all 22 episodes of season eight. He makes a brief cameo appearance in the final episode titled \"\"That '70s Finale.\"\" Due to Eric's departure from the show at the beginning of its eighth season, Eric was no longer the central focus of the show, though his character was still heavily used to influence elements of it, and he's mentioned in every episode of the season. Picking up a month after the seventh season's finale, Eric is revealed to have successfully become accustomed to his job teaching in Africa. As Donna's relationship with a new character Randy begins to"} +{"qid": "test2105", "pid": "1949292", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"That '70s Show\"\nusually introduced by a wobbling screen transition. Sometimes, the transition is absent when the characters who imagine the scene believe they are real (for example, Eric's dream about Donna in \"\"Eric's Birthday\"\" or Jackie's dream about Hyde proposing in \"\"It's All Over Now\"\"). In the 100th episode, \"\"That '70s Musical\"\", all singing scenes were Fez's dream sequences. In the circle, a group of characters, usually the teenagers, sit in a circle (generally in Eric's basement, though occasionally elsewhere), as the camera pans, stopping at each character as he or she speaks. It was usually apparent that the characters are under"} +{"qid": "test2105", "pid": "4905913", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"Donna Pinciotti\"\nDonna Pinciotti Donna Marie Pinciotti is a fictional character and one of the two female leads in the Fox sitcom \"\"That '70s Show\"\", appearing in all eight seasons. Portrayed by Laura Prepon, Donna is the love interest to Eric Forman. Donna's relationship with next-door neighbor Eric Forman is often the main focus of the series. However, it is tumultuous at times, having suffered two break-ups during the show's run. Despite this, Eric and Donna often act as the \"\"parents\"\" of the group, being mature and responsible when their friends are not, for example in episodes like \"\"Dine and Dash\"\". Another"} +{"qid": "test2105", "pid": "5175800", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"Steven Hyde\"\nHyde is usually the only one who gives them real advice. Also, Hyde is physically the strongest (and presumably the best fighter) in the group, although on multiple occasions Hyde has backed down from an aggressive Eric and rarely ever lashes out on Eric the same way he does with Fez and Kelso. On many occasions throughout the show, Hyde beats up Kelso for various reasons, and he is easily stronger than Fez, Eric and even Donna. Hyde has an afro and sideburns (or occasionally a mustache and/or beard), and his sunglasses, which he is almost always seen in, making"} +{"qid": "test2105", "pid": "3871409", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"Eric Forman\"\nEric Forman Eric Albert Forman is a fictional character in Fox Network's \"\"That '70s Show\"\", portrayed by Topher Grace. Eric is based on the adolescence of show creator Mark Brazill. Most of the show takes place at the Formans' home, particularly in the basement where he and his five friends hang out. Being the show's main character for the first seven seasons, Eric appears in many storylines. The show opens with Eric, a scrawny, socially awkward 16-year-old, dealing with his ever-evident and growing crush on the girl next door, Donna Pinciotti. During this time, Eric obtains the signature 1969 Oldsmobile"} +{"qid": "test2105", "pid": "4905926", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"Donna Pinciotti\"\nstay with Eric. Eventually, their wedding plans fall through at the end of season six when Eric, worried that marrying Donna would hold her back, fails to show up for their rehearsal. After Eric's departure from the show between seasons seven and eight, it is assumed that they still keep the relationship intact. However, Donna tells her friends that Eric has broken up with her in the eighth-season episode \"\"Long Away\"\", when Fez and Jackie suspect that she is cheating on Eric with the new cast character, Randy (Josh Meyers). Donna tells them that Eric did this three weeks earlier."} +{"qid": "test2105", "pid": "1949290", "query": "who does eric end up with in that 70s show", "answer": "Donna", "passage": "\"That '70s Show\"\nthe finale, titled \"\"That '70s Finale\"\"). One device in the show is to present a split screen in which two pairs of characters speak. One character is usually seeking advice on a problem with a character in the second pairing and the other character advises them. Although the conversations appear to mirror each other, notable differences often occur. It is most often used by the couples of the show, with each member of the couple being advised on the relationship. For example, in the episode \"\"Who Wants It More?\"\", Donna and Eric tell Jackie and Hyde that they have been"} +{"qid": "test2107", "pid": "8834016", "query": "when will notre dame played michigan state again", "answer": "2026", "passage": "\"Michigan State–Notre Dame football rivalry\"\nMegaphone Trophy until 2026 when the two teams are scheduled to play again. After an 8–0 series run by Notre Dame from 1987 to 1994, tying the series win streak set by Michigan State from 1955 to 1963 (they didn't meet in 1958), Michigan State won five games in a row. Michigan State won 44–41 in double overtime at Notre Dame in 2005. Notre Dame pulled out a thrilling come from behind 40–37 victory in East Lansing in 2006. The trend continued in 2007 for Michigan State under new head coach Mark Dantonio who defeated the Fighting Irish 31–14, recording"} +{"qid": "test2107", "pid": "8381454", "query": "when will notre dame played michigan state again", "answer": "2026", "passage": "\"Michigan State Spartans football\"\neach year to the winner of the football game between the University of Notre Dame and Michigan State University. The rivalry includes games such as the Game of the Century, arguably the greatest college football game ever played. The Fighting Irish currently holds the trophy after a 38–18 win in East Lansing in 2017, which is the last time these teams have played in the series. Notre Dame leads the series 48–29–1 while the Megaphone Trophy series record is 34–27–1 in favor of Notre Dame. The two teams are not currently scheduled to play each other again until 2026 The"} +{"qid": "test2107", "pid": "8340146", "query": "when will notre dame played michigan state again", "answer": "2026", "passage": "\"Notre Dame Fighting Irish football rivalries\"\ndefeated #2 Notre Dame 37–22 behind the effort of Leroy Keyes, a two-way player for the Boilermakers. It was the eleventh 1 vs 2 game (and the sixth involving Notre Dame). Notre Dame also has a rivalry with Michigan State University that began in 1897. From 1959 to 2013 the Fighting Irish played Michigan State every year without interruption, except for a two-year hiatus in 1995 and 1996. The next scheduled game is in 2026. The 1966 Notre Dame vs. Michigan State football game is regarded as one of the Games of the Century and is still talked about to"} +{"qid": "test2108", "pid": "17537186", "query": "how many episodes are in chicago fire season 4", "answer": "23", "passage": "\"Chicago Fire (season 1)\"\nepisode total increased from 22 to 23. One week later, on February 6, 2013, \"\"Chicago Fire\"\" received one more episode, giving it a total of 24 episodes for season one. The firehouse shown is Engine 18's quarters, located at 1360 S. Blue Island Ave. between 13th & Racine. Housed here is ALS Engine 18, 2-2-1 (Deputy District Chief - 1st District), 4-5-7 (Paramedic Field Chief - EMS District 7), 6-4-16 (High-Rise Response Unit), and BLS Ambulance 84. On March 27, 2013, NBC announced plans for a proposed spin-off of \"\"Chicago Fire\"\", Deadline reported they heard the spin-off would involve the"} +{"qid": "test2108", "pid": "18134621", "query": "how many episodes are in chicago fire season 4", "answer": "23", "passage": "\"Chicago Fire (season 3)\"\nChicago Fire (season 3) The third season of \"\"Chicago Fire\"\", an American drama television series with executive producer Dick Wolf, and producers Derek Haas, Michael Brandt, and Matt Olmstead, premiered on Tuesday, September 23, 2014, at 10 pm on NBC television network and concluded on May 12, 2015. The season contained 23 episodes. The show follows the lives of the firefighters and paramedics working at the Chicago Fire Department at the firehouse of Engine 51, Truck 81, Squad 3, Ambulance 61 and Battalion 25. Episode 19 served as a backdoor pilot for a new spin-off, called \"\"Chicago Med\"\". "} +{"qid": "test2108", "pid": "18134622", "query": "how many episodes are in chicago fire season 4", "answer": "23", "passage": "\"Chicago Fire (season 3)\"\nNBC renewed \"\"Chicago Fire\"\" for a third season on March 19, 2014 which premiered on September 23 that same year. On September 29, 2014, it was announced that Wolf's shows \"\"Chicago P.D.\"\", \"\"Chicago Fire\"\" and \"\"\"\" would be doing a three-part crossover event on November 11–12, 2014, starting with \"\"Chicago Fire\"\" and ending with \"\"Law & Order: Special Victims Unit\"\", and \"\"Chicago P.D.\"\" On January 22, 2015, another crossover between \"\"Chicago Fire\"\", \"\"Law & Order: Special Victims Unit\"\", and \"\"Chicago P.D.\"\" was announced, to have \"\"more integrated storytelling\"\" than the first. The episodes aired on April 28–29, 2015. Chicago Fire"} +{"qid": "test2108", "pid": "5692088", "query": "how many episodes are in chicago fire season 4", "answer": "23", "passage": "\"Chicago Fire U-23\"\nthe assists stats with 3. The 2007 season was the first blip in the history books for Chicago, as they narrowly failed to win their division, instead finishing second to the Michigan Bucks. Chicago actually started the season with a wobble, tying Indiana Invaders 1–1 in their first game, beating Fort Wayne Fever and West Michigan Edge, but then tying 2–2 with league new boys Toronto Lynx, and suffering a 4–0 loss at the hands of Michigan Bucks, the team's worst result in many years. Fire were still victorious more often than not, but somehow seemed to lose the sheen"} +{"qid": "test2109", "pid": "11492880", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Love Will Keep Us Alive\"\nTerry Lin also covered this song on his 1999 compilation \"\"Love Singles\"\". Love Will Keep Us Alive \"\"Love Will Keep Us Alive\"\" is a song written by Jim Capaldi, Paul Carrack, and Peter Vale, and produced by the Eagles, Elliot Scheiner, and Rob Jacobs. It was first performed by the Eagles in 1994, during their \"\"Hell Freezes Over\"\" reunion tour, with lead vocals by bassist Timothy B. Schmit. This is the last single to feature Don Felder, who was terminated from the band in 2001 Although the song was never formally released as a single in the US, and thus"} +{"qid": "test2109", "pid": "11492876", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Love Will Keep Us Alive\"\nLove Will Keep Us Alive \"\"Love Will Keep Us Alive\"\" is a song written by Jim Capaldi, Paul Carrack, and Peter Vale, and produced by the Eagles, Elliot Scheiner, and Rob Jacobs. It was first performed by the Eagles in 1994, during their \"\"Hell Freezes Over\"\" reunion tour, with lead vocals by bassist Timothy B. Schmit. This is the last single to feature Don Felder, who was terminated from the band in 2001 Although the song was never formally released as a single in the US, and thus was not eligible to appear on the US \"\"Billboard\"\" Hot 100 under"} +{"qid": "test2109", "pid": "4451952", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Timothy B. Schmit\"\nand an uncredited Freddie Mercury. In 1977, Schmit joined the Eagles after the \"\"Hotel California\"\" tour, once again replacing Randy Meisner on bass/vocals after Meisner quit. Although the Eagles are thought of as a quintessential California band, Schmit is the only member of the group to actually be a native of California. On the 1979 album, \"\"The Long Run\"\", Schmit co-wrote and sang lead vocals on the song \"\"I Can't Tell You Why\"\". The band later broke up in 1980 and reunited 14 years later in 1994, with Schmit singing the lead vocals on \"\"Love Will Keep Us Alive\"\", on"} +{"qid": "test2109", "pid": "9625771", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Keeping the Legend Alive\"\nThe Time Go\"\", Timothy B. Schmit's Keeping on Tryin'; \"\"Crazy Love\"\", \"\"Call It Love\"\" and \"\"Spellbound\"\"; Paul Cotton sings lead on \"\"Bad Weather\"\", \"\"Magnolia\"\", \"\"Indian Summer\"\", \"\"Ride The Country\"\" and \"\"Heart Of The Night\"\"; Rusty Young and Paul Cotton share the lead vocals on \"\"Rose Of Cimmaron\"\"; and Richie Furay sings lead on \"\"Pickin' Up The Pieces\"\", \"\"Let's Dance, \"\"Jim Messina's \"\"You Better Think Twice\"\" (as he used to do in the band's early days when Jim Messina concentrated on his playing at the early live shows.), \"\"Kind Woman\"\" and A Good Feelin' To Know\"\". The recording of a highly"} +{"qid": "test2109", "pid": "2750152", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Paul Carrack\"\nband re-recorded their hit \"\"Tempted\"\" for the soundtrack to the movie \"\"Reality Bites\"\" (1994). Carrack once again left Squeeze, however, after about a year. Following his second stint with Squeeze, Carrack joined forces with Timothy B. Schmit and Don Felder of the Eagles for an ambitious, but ultimately unrealised, recording project. Schmit and Felder soon reunited with the rest of the Eagles and their \"\"Hell Freezes Over\"\" album, bringing with them one of the songs Carrack had co-written, \"\"Love Will Keep Us Alive.\"\" It was recorded by the Eagles and won an ASCAP award as being the most-played song in"} +{"qid": "test2109", "pid": "3038839", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Hell Freezes Over\"\nHell Freezes Over Hell Freezes Over is the second live album by the Eagles, released in 1994. The album is the first to be released after the Eagles had reformed following a fourteen-year-long break up. The band's lineup was that of the \"\"Long Run\"\" era: Glenn Frey, Don Henley, Don Felder, Joe Walsh, and Timothy B. Schmit. It contains four new studio tracks and eleven tracks recorded live in April 1994 for an MTV special. Two Top 40 Mainstream singles, \"\"Get Over It\"\" and \"\"Love Will Keep Us Alive\"\", were released from the album. It also features an acoustic version"} +{"qid": "test2109", "pid": "11492878", "query": "who sings love will keep us alive by the eagles", "answer": "Timothy B. Schmit", "passage": "\"Love Will Keep Us Alive\"\n2006 compilation album, \"\"Greatest Hits - The Story So Far\"\". In 2011, Paul Carrack and Timothy B. Schmit recorded the song in London with the Royal Philharmonic Orchestra, and released it in the UK on the Carrack label. According to the liner notes that accompanied their 2003 greatest hits CD, this song was written when Carrack, Capaldi, and Schmit were planning to form a band with Don Felder and Max Carl during the late eighties or early nineties. The band had the working name of Malibu Men's Choir. This never materialized, so Schmit proposed the song for the Eagles' reunion"} +{"qid": "test2110", "pid": "17391705", "query": "how many episodes in 1st season of the crown", "answer": "10", "passage": "\"The Locket (How I Met Your Mother)\"\nmany \"\"annoying little things, and a few big ones\"\" but one big thing they got absolutely right: That was the Mother. Bill Kuchman of Popculturology said the episode paled in comparison to the previous season's premiere, saying, \"\"You want a legendary \"\"HIMYM\"\" season premiere? Go watch \"\"Farhampton,\"\" last season’s premiere. ... That’s a season premiere. And that’s the promise that \"\"HIMYM\"\"s final season holds.\"\" Max Nicholson of IGN gave the episode a 7.8/10 rating saying it \"\"delivered a relatively promising start to the wedding weekend.\"\" The Locket (How I Met Your Mother) \"\"The Locket\"\" is the first episode of the"} +{"qid": "test2110", "pid": "16982066", "query": "how many episodes in 1st season of the crown", "answer": "10", "passage": "\"How I Met Your Mother (season 9)\"\nbecause there's so much exciting stuff\"\". Season 9 premiered on CBS on September 23, 2013, with two 22-minute episodes, and contained 24 episodes. The ninth season of \"\"How I Met Your Mother\"\" received mostly positive reviews from critics. The review aggregation website Rotten Tomatoes gave an 80% approval rating for the season with an average rating of 7.3/10, based on 10 reviews. At the end of the season, Max Nicholson of IGN gave the season a negative review, writing: \"\"Many \"\"How I Met Your Mother\"\" fans felt betrayed after watching the series finale -- and understandably so after Season 9"} +{"qid": "test2110", "pid": "14085361", "query": "how many episodes in 1st season of the crown", "answer": "10", "passage": "\"How About a Friendly Shrink?\"\ntime in many episodes. Isabelle Carreau of \"\"TV Squad\"\" called Orson particularly unlikeable in the episode, but declared the Lynette and Tom subplot \"\"fun and touching at the same time\"\", and said the Ana character showed new depths that had not been shown before. How About a Friendly Shrink? \"\"How About a Friendly Shrink?\"\" is the thirteenth episode of the sixth season of the American comedy-drama series, \"\"Desperate Housewives\"\", and the 124th overall episode of the series. It originally aired on ABC in the United States on January 17, 2010. In the episode, Tom tries to convince Lynette to seek"} +{"qid": "test2110", "pid": "20020752", "query": "how many episodes in 1st season of the crown", "answer": "10", "passage": "\"Ultimate Beastmaster (season 1)\"\nchallenges nets bonus points but failure removes points. The winner of each episode is crowned the title Beastmaster. The nine beastmasters of all episodes then compete against each other in the final episode (episode 10). The winner, if completed the entire level 4 (reaching the top of The Power Source and obtained the final Point Thruster at the summit), is crowned the Ultimate Beastmaster and awarded USD $50,000. There was no Ultimate Beastmaster crowned in season 1, as the winner, Felipe Carmago of Brazil, won the competition before reaching the summit. In Level 1 all twelve competitors compete with the"} +{"qid": "test2111", "pid": "7039088", "query": "who is the leader of the ontario pc party", "answer": "Patrick Brown", "passage": "\"Patrick Brown (politician)\"\nthe Ontario PC Party, and stepped down as a federal MP. He then won a provincial by-election on September 3, 2015, in Simcoe North and entered the Legislative Assembly of Ontario. Brown resigned as party leader in January 2018 after allegations of sexual assault, was expelled from the party caucus by interim leader Vic Fedeli on February 16, 2018, and left provincial politics after an aborted second run for the PC leadership Brown became the first permanent Ontario Conservative leader who did not lead the party into an election since George Frederick Marter. Brown ran for mayor of Brampton and"} +{"qid": "test2111", "pid": "2973079", "query": "who is the leader of the ontario pc party", "answer": "Patrick Brown", "passage": "\"Reform Party of Ontario\"\nCrossroads Forum, the Family Coalition Party of Ontario leadership via its newly elected party leader James Gault, deputy leader and director of communications Eric Ames, president Lynne Scime led a move to combine the original traditional moral values of the FCP with the democratic reform principles of the RPO into a new rebranded party called the New Reform Party of Ontario. However, the new party was deregistered by Elections Ontario as of January 2016, after only running once in the Simcoe North byelection in 2015 where Gault and New Reform, was defeated by Ontario PC leader Patrick Brown who won"} +{"qid": "test2111", "pid": "3780815", "query": "who is the leader of the ontario pc party", "answer": "Patrick Brown", "passage": "\"Leader of the Official Opposition (Ontario)\"\nVic Fedeli was chosen interim leader of the PC Party by caucus on January 26, 2018, one day after Patrick Brown resigned due to allegations of sexual misconduct. He continued to serve as Leader of the Opposition after Doug Ford became party leader on March 10, 2018, as Ford did not have a seat in the legislature. Leader of the Official Opposition (Ontario) The Leader of the Official Opposition () in Ontario, officially Leader of Her Majesty's Loyal Opposition (), is the leader of the largest party in the Legislative Assembly of Ontario which is not part of the government."} +{"qid": "test2111", "pid": "2482641", "query": "who is the leader of the ontario pc party", "answer": "Patrick Brown", "passage": "\"Bill Davis\"\nendorsed Christine Elliott in her second campaign to become leader of the Ontario PC Party, but she finished as runner-up to Patrick Brown. In the 2014 municipal elections across Ontario and particularly the Greater Toronto Area, Davis endorsed the ultimately successful mayoral bids of John Tory (Toronto) and Linda Jeffrey (Brampton). Tory had been Davis' former principal secretary in the 1980s and was also a former Ontario PC Party leader. After incumbent Brampton mayor Susan Fennell was embroiled in numerous scandals over expenses and financial record-keeping, Davis reportedly convinced Jeffrey to resign from provincial cabinet to challenge Fennell. After taking"} +{"qid": "test2111", "pid": "7039113", "query": "who is the leader of the ontario pc party", "answer": "Patrick Brown", "passage": "\"Patrick Brown (politician)\"\nenergy contracts. Patrick Brown's first Private Member's Bill in the Ontario Legislature was Bill 136, the Estate Administration Tax Abolition Act, which was an attempt to eliminate Ontario's estate administration (probate) tax (originally introduced by the PC government of Mike Harris in 1998). The bill was supported by Brown's fellow PCs but opposed by the governing Liberals and third party New Democrats, and was voted down 51-24 on division at second reading. During his tenure as Ontario PC leader, Brown was noted for his close relationship with many of Ontario's diverse ethnic communities. He spoke in the Legislature in support"} +{"qid": "test2111", "pid": "7039111", "query": "who is the leader of the ontario pc party", "answer": "Patrick Brown", "passage": "\"Patrick Brown (politician)\"\nfor his endorsement and said, \"\"I’ve got so much hope in my heart for what’s ahead for Brampton. You know why? I know we can turn this around, I know Brampton is going to be back, Brampton is going to become an economic engine\"\". According to the Toronto Star, Jeffrey had the backing of \"\"PC party operatives — Doug Ford’s campaign manager organized a fundraiser for her\"\". Brown identifies himself as a \"\"pragmatic conservative\"\" and after becoming leader he tried to move the Ontario PC Party in a socially liberal and fiscally conservative direction. At his first Ontario PC Convention"} +{"qid": "test2112", "pid": "2426217", "query": "nitty gritty dirt band fishin in the dark album", "answer": "Hold On", "passage": "\"Nitty Gritty Dirt Band\"\nthe 1984 Los Angeles Olympic Games and the inaugural Farm Aid concert in Champaign, Illinois. A 20-year anniversary concert at McNichols Sports Arena in Denver, Colorado featured such guests as Ricky Skaggs, Emmylou Harris, Doc Watson, and John Prine. John McEuen left the band at the end of 1986, replaced by Bernie Leadon, formerly of the Eagles. He was with the Nitty Gritty Dirt Band in 1987 and 1988. The band's 19th album, \"\"Hold On\"\" featured the No. 1 singles \"\"Fishin' in the Dark\"\" and \"\"Baby's Got a Hold on Me.\"\" The band appeared on the \"\"Today Show\"\" and \"\"The"} +{"qid": "test2112", "pid": "10745750", "query": "nitty gritty dirt band fishin in the dark album", "answer": "Hold On", "passage": "\"Fishin' in the Dark\"\nFishin' in the Dark \"\"Fishin' in the Dark\"\" is a song written by Wendy Waldman and Jim Photoglo and recorded by American country music group The Nitty Gritty Dirt Band. It was released in June 1987 as the second single from their album \"\"Hold On\"\". It reached number-one on the U.S. and Canadian country charts. It was the band's third number-one single on the U.S. country music charts and the second in Canada. After it became available for download, it has sold over a million digital copies by 2015. It was certified Platinum by the RIAA on September 12, 2014."} +{"qid": "test2113", "pid": "2624207", "query": "who were the three elves who got rings", "answer": "Gil-galad", "passage": "\"Three Rings\"\nwas sent to the Elven-king Gil-galad far away in Lindon, where it was later given to Elrond, who bore it through the later years of the Second Age and all of the Third. As Gil-galad was the High King of the Noldor elves at the time of the rings' distribution it was thought that he was best fit to care for the most powerful of the three Elven rings. Three Rings In Tolkien's mythology, the Three Rings are magical artifacts forged by the Elves of Eregion. After the One Ring, they are the most powerful of the twenty Rings of"} +{"qid": "test2113", "pid": "13447860", "query": "who were the three elves who got rings", "answer": "Gil-galad", "passage": "\"One Ring\"\npassage to the Undying Lands, though Sam lived in the Shire for many years after the departure of Bilbo and Frodo before making the journey himself. After its original forging (about ) Sauron waged the War of the Elves and Sauron against the Elves and all who opposed him. Sauron invaded and destroyed Eregion, and killed Celebrimbor, the maker of the three rings of the Elves. However, King Tar-Minastir of Númenor sent a great fleet to Middle-earth, and with this aid Gil-galad destroyed Sauron's army and forced Sauron to return to Mordor. In S.A. 3261, Ar-Pharazôn, the last and most"} +{"qid": "test2113", "pid": "6763687", "query": "who were the three elves who got rings", "answer": "Galadriel", "passage": "\"Magic ring\"\nthe story grew into \"\"The Lord of the Rings\"\" the matter expanded, borrowing from Germanic and Norse mythology for many of its themes, creatures, and names. Of twenty magical Rings of Power, four are described in some detail: the extremely powerful and dangerous \"\"One Ring\"\" around which the plot revolves; and three rings worn by Gandalf the wizard and the elves Elrond and Galadriel. Seven Rings of Power were given to the dwarves in an only slightly successful attempt to corrupt them. Humans prove to be more susceptible; each of the nine Nazgûl were once great lords of men who"} +{"qid": "test2113", "pid": "2547490", "query": "who were the three elves who got rings", "answer": "Galadriel", "passage": "\"Silvan Elves\"\nof \"\"The Hobbit\"\", The Wood Elves are depicted as having fair hair and pale lavender skin, with clothing predominantly brown and olive coloured garb. The Silvan Elves of Lórien are also called the Galadhrim, literally \"\"tree-folk\"\". After the departure of Amroth in T.A. 1981, they were ruled by Celeborn and Galadriel. At the time of the War of the Ring they spoke a divergent dialect of Sindarin which had changed so much that Frodo Baggins, who spoke some Sindarin, could not understand them. Additionally, few Elves of Lórien could speak Westron, so that Haldir, one of the few who could,"} +{"qid": "test2115", "pid": "1794898", "query": "where do characters live in this is us", "answer": "Los Angeles", "passage": "\"Real life\"\nphrase can be used to distinguish an actor from a character, e.g. \"\"In real life, he has a British accent\"\" or \"\"In real life, he lives in Los Angeles.\"\" There is a related but slightly distinct usage among role-players and historical reenactors, to distinguish the fantasy or historical context from the actual world and the role-player or actor from the character, e.g. \"\"What do you do in real life?\"\" or \"\"Where do you live in real life?\"\" On the Internet, \"\"real life\"\" refers to life offline. Online, the initialism \"\"IRL\"\" stands for \"\"in real life\"\", with the meaning \"\"not on"} +{"qid": "test2117", "pid": "15391773", "query": "when was the last time the carolina hurricanes made the playoffs", "answer": "2008–09", "passage": "\"2011–12 Carolina Hurricanes season\"\nplayoffs.
The Hurricanes have been involved in the following transactions during the 2011–12 season. The 2011 NHL Entry Draft was held in St. Paul, Minnesota. 2011–12 Carolina Hurricanes season The 2011–12 Carolina Hurricanes season was the 40th season for the franchise, 33rd in the National Hockey League dating back to June 22, 1979, and 15th season since the franchise relocated to North Carolina to start the 1997–98 NHL season. The Hurricanes failed to qualify for the Stanley Cup playoffs for the third straight year. The last time the team made the trip to the post-season was in the 2008–09"} +{"qid": "test2117", "pid": "15391772", "query": "when was the last time the carolina hurricanes made the playoffs", "answer": "2008–09", "passage": "\"2011–12 Carolina Hurricanes season\"\n2011–12 Carolina Hurricanes season The 2011–12 Carolina Hurricanes season was the 40th season for the franchise, 33rd in the National Hockey League dating back to June 22, 1979, and 15th season since the franchise relocated to North Carolina to start the 1997–98 NHL season. The Hurricanes failed to qualify for the Stanley Cup playoffs for the third straight year. The last time the team made the trip to the post-season was in the 2008–09 NHL season. On November 28, 2011, the Hurricanes replaced head coach Paul Maurice with Kirk Muller. The Hurricanes failed to qualify for the 2012 Stanley Cup"} +{"qid": "test2117", "pid": "9631776", "query": "when was the last time the carolina hurricanes made the playoffs", "answer": "2008–09", "passage": "\"2008–09 NHL season\"\nwhen the team was in danger of being eliminated from the playoffs. In April, the Columbus Blue Jackets qualified for the playoffs for the first time in franchise history. The Carolina Hurricanes qualified for the playoffs for the first time since their 2006 Stanley Cup victory. The Ottawa Senators missed the playoffs for the first time since the 1995–96 season. In an ironic twist, considering his injury woes of past seasons, Jordan Leopold played in all 64 games for the Colorado Avalanche. Upon being traded to the Calgary Flames Leopold played in all 19 remaining games for the Flames becoming"} +{"qid": "test2119", "pid": "812291", "query": "who plays max voice in a goofy movie", "answer": "Jason Marsden", "passage": "\"Goof Troop\"\nDisney's replacement Disney XD) in the United States. \"\"Goof Troop\"\" was adapted into the feature film \"\"A Goofy Movie\"\" (1995) and its direct-to-video sequel and TV series finale, \"\"An Extremely Goofy Movie\"\" (2000). Both films are spin-offs of the series and take place a few years after the series. The two movies featured Bill Farmer, Rob Paulsen and Jim Cummings reprising their character roles from \"\"Goof Troop\"\" in these two movies, with Jason Marsden providing the voice of a now-teenager Max. Dana Hill, who provided the voice of Max, died on July 15, 1996 at the age of 32, after"} +{"qid": "test2119", "pid": "1370590", "query": "who plays max voice in a goofy movie", "answer": "Jason Marsden", "passage": "\"A Goofy Movie\"\nand paint by the Pixibox studio in France. According to Bill Farmer, who provided the voice talent for Goofy, in a panel interview, producers had asked him to give Goofy a \"\"normal dad voice\"\" as opposed to the voice he traditionally gives the character, but Farmer refused to, stating that \"\"no one wants to hear that.\"\" The voice of Max was done by Jason Marsden, whereas his singing voice was done by Aaron Lohr. The film is dedicated to Pat Buttram, who voiced the emcee at possum park, as he died after finishing voice work for the film. The score"} +{"qid": "test2119", "pid": "1370580", "query": "who plays max voice in a goofy movie", "answer": "Jason Marsden", "passage": "\"A Goofy Movie\"\nfishing trip out of fear that Max is drifting away from him, unintentionally interfering with Max's social life, particularly his relationship with Roxanne, his high school crush. It features the voices of Jason Marsden, Bill Farmer, Jim Cummings, Kellie Martin, Pauly Shore, Jenna von Oÿ, and Wallace Shawn, and prominently features the singing voice of Tevin Campbell as Powerline, a fictional pop star. The film was also dedicated to Pat Buttram, who died during the film's production. \"\"A Goofy Movie\"\" was released theatrically on April 7, 1995, by Walt Disney Pictures to mixed reviews from critics and moderate box office"} +{"qid": "test2119", "pid": "1577947", "query": "who plays max voice in a goofy movie", "answer": "Jason Marsden", "passage": "\"Jason Marsden\"\nhe was the voice of Peter Pan in \"\"Peter Pan and the Pirates\"\", which ran for two seasons and in 1992, he landed the role of Dash X in \"\"Eerie, Indiana\"\". He lent his voice to Thackery Binx as a black cat in Disney's \"\"Hocus Pocus\"\" and reprised the role in the \"\"Hocus Pocus Villain Spelltacular\"\". His next roles included voicing Goofy's son Max Goof in Disney's \"\"A Goofy Movie\"\" (1995), as well as in the sequel \"\"An Extremely Goofy Movie\"\" (2000) and also had a role in \"\"White Squall\"\" (1996). Marsden also did the voice of Garrett Miller on"} +{"qid": "test2119", "pid": "6335980", "query": "who plays max voice in a goofy movie", "answer": "Jason Marsden", "passage": "\"Aaron Lohr\"\nMighty Ducks\"\" series and \"\"Newsies\"\", He provided the singing voice for Max in \"\"A Goofy Movie\"\" (filling in for Jason Marsden). In 2000, he starred as Micky Dolenz in the VH1 TV-movie \"\"Daydream Believers: The Monkees' Story\"\". He appeared in the 2005 film adaptation of the Tony and Pulitzer Prize winning Broadway musical \"\"Rent\"\", directed by Christopher Columbus. Lohr played the character Steve and sang vocals for the songs \"\"Will I\"\" and \"\"Life Support\"\" on the first disc of the soundtrack for the film. He starred in various roles in Michael John LaChiusa's \"\"See What I Wanna See\"\" at the"} +{"qid": "test2119", "pid": "1824450", "query": "who plays max voice in a goofy movie", "answer": "Jason Marsden", "passage": "\"Max Goof\"\n(and a parody of Eliot Ness). In the \"\"Goof Troop\"\" show, there are times he would get suckered in by Pete and his get-rich-quick schemes, only to come around towards the end. It seems, personality wise, that PJ is more like Goofy at times, while Max seems more like Pete. Despite everything, Max loves his father, even if he does wish that Goofy would be a little more normal. In the \"\"Goof Troop\"\" television series, Max is voiced by Dana Hill, while Shaun Fleming voices the younger Max in \"\"Mickey's Once Upon a Christmas\"\". Jason Marsden voices an older Max"} +{"qid": "test2120", "pid": "18177113", "query": "who recorded i can't help falling in love with you", "answer": "Elvis Presley", "passage": "\"Jess Greenberg\"\nspotlight. Jess Greenberg Jess Greenberg is a YouTube personality, singer, and acoustic guitarist from London, England. Greenberg started performing publicly at an early age. In an interview she recounted her performance of Elvis Presley's \"\"Can't Help Falling in Love With You\"\" at age four while on a trip to St. Tropez to an audience at the Hotel Byblos. \"\"I requested 'Can't help falling in love with you' by Elvis and the performer asked if I'd sing it. I remember being so excited.\"\" She later explained the effect of seeing the 2003 Jack Black movie \"\"School of Rock\"\" had on her"} +{"qid": "test2120", "pid": "18177109", "query": "who recorded i can't help falling in love with you", "answer": "Elvis Presley", "passage": "\"Jess Greenberg\"\nJess Greenberg Jess Greenberg is a YouTube personality, singer, and acoustic guitarist from London, England. Greenberg started performing publicly at an early age. In an interview she recounted her performance of Elvis Presley's \"\"Can't Help Falling in Love With You\"\" at age four while on a trip to St. Tropez to an audience at the Hotel Byblos. \"\"I requested 'Can't help falling in love with you' by Elvis and the performer asked if I'd sing it. I remember being so excited.\"\" She later explained the effect of seeing the 2003 Jack Black movie \"\"School of Rock\"\" had on her musical"} +{"qid": "test2120", "pid": "4385159", "query": "who recorded i can't help falling in love with you", "answer": "Elvis Presley", "passage": "\"Can't Help Falling in Love\"\nCan't Help Falling in Love \"\"Can't Help Falling in Love\"\" is a song recorded by American singer Elvis Presley for the album \"\"Blue Hawaii\"\" (1961). It was written by Hugo Peretti, Luigi Creatore, and George David Weiss. (The melody is based on \"\"Plaisir d'amour\"\", a popular French love song composed in 1784 by Jean-Paul-Égide Martini). \"\"Can't Help Falling in Love\"\" was featured in Presley's 1961 film, \"\"Blue Hawaii\"\" and also in the film The Book Of Life (2014). During the following four decades, it has been recorded by numerous other artists, including Tom Smothers, Swedish pop group A-Teens, and the"} +{"qid": "test2120", "pid": "15762621", "query": "who recorded i can't help falling in love with you", "answer": "Elvis Presley", "passage": "\"You Take My Heart Away\"\non the \"\"Billboard\"\" Hot 100, \"\"Stargazer\"\" from Neil Diamond. Only one track dates from a previous era: \"\"Can't Help Falling in Love\"\" was recorded by Elvis Presley in 1962. Two singles were issued from the album \"\"I Let You Let Me Down Again\"\" which featured \"\"Razzle Dazzle\"\", a non-album track, on the B-side. The second single, issued in the wake of the success of the \"\"Rocky\"\" movie, was \"\"You Take my Heart Away\"\" with \"\"I Let You Let Me Down Again\"\" issued as the B-side. \"\"You Take My Heart Away\"\" was issued originally on 33.3rpm vinyl and audio cassette with"} +{"qid": "test2120", "pid": "6229560", "query": "who recorded i can't help falling in love with you", "answer": "Elvis Presley", "passage": "\"Aykin Tolepbergen\"\n\"\"[[Can't Help Falling in Love]]\"\" by [[Elvis Presley]]Top 11: \"\"Где Же Ты?\"\" by [[K-7 (band)|K-7]]Top 10: \"\"Я Встретил Девушку\"\"Top 9: \"\"[[I Just Called to Say I Love You]]\"\" by [[Stevie Wonder]] [[Category:1982 births]] [[Category:Living people]] [[Category:Idols (TV series) participants]] [[Category:Kazakhstani male singers]] [[Category:SuperStar KZ]] Aykin Tolepbergen Aykin Tolepbergen () (born February 10, 1982, in Almaty, Kazakh SSR, Soviet Union (present Kazakhstan)).He is Kazakh male singer who rose to popularity after placing ninth in \"\"SuperStar KZ\"\", the Kazakh version of \"\"Pop Idol\"\", shown by Perviy Kanal Evraziya. In 2006, Aykin has been in the studio recording songs for his first CD,"} +{"qid": "test2120", "pid": "11520720", "query": "who recorded i can't help falling in love with you", "answer": "Elvis Presley", "passage": "\"Blue Hawaii (soundtrack)\"\na 1926 operetta. Recording sessions took place at Radio Recorders in Hollywood on March 21, 22, and 23, 1961. The songs \"\"Can't Help Falling in Love\"\" and \"\"Rock-A-Hula Baby\"\" were pulled off the album for two sides of a single released on November 21, 1961. The A-side \"\"Can't Help Falling in Love,\"\" which would become the standard closer for an Elvis Presley concert in the 1970s, went to number two on the \"\"Billboard\"\" Hot 100, while the b-side charted independently at number 23. The success of this soundtrack and its predecessor \"\"G. I. Blues\"\", both of which sold in much"} +{"qid": "test2122", "pid": "4585401", "query": "when did they stop cigarette advertising on television", "answer": "January 2, 1971", "passage": "\"Public Health Cigarette Smoking Act\"\nairing these commercials because they did not give equal time to the opposing viewpoint that smoking is dangerous. The Public Health Cigarette Smoking Act was introduced into Congress in 1969, but it was not until April 1, 1970 when U.S. President Richard Nixon signed it into law. The actual cigarette advertising ban did not come into force until January 2, 1971, as per a compromise that allowed broadcasters to air these commercials during their telecasts of college football bowl games on New Year's Day. The last cigarette ad on U.S. television, advertising Virginia Slims, was carried on the last possible"} +{"qid": "test2122", "pid": "4936529", "query": "when did they stop cigarette advertising on television", "answer": "1970", "passage": "\"John Banzhaf\"\nand voluntary health organizations made extremely creative spots and provided them to stations.\"\" In response, tobacco companies offered to stop all advertising on television, if this coordinated action was granted immunity from antitrust laws; they further agreed to have warning labels on cigarette packages and advertising. Tobacco ads ceased to appear on television in the United States at the end of 1970 (on 1 January 1971). Cigarette advertising shifted to print media. Consequently, anti-smoking announcements were no longer required to satisfy the FCC's fairness doctrine. In the late 1960s, Banzhaf and the Action on Smoking and Health worked against passive"} +{"qid": "test2122", "pid": "13550683", "query": "when did they stop cigarette advertising on television", "answer": "1970", "passage": "\"Hope (cigarette)\"\nadvertised on the basis of \"\"mentholated freshness\"\". The television commercials showed foreign talents engaged in exhilarating Western leisure activities like sky-diving, wakeboarding and boat racing to drive home the \"\"freshness\"\" story. The commercials were made even more popular with its jingle, sang by a 21-year-old Claire de la Fuente, a Karen Carpenter sound-alike. The advertisements lasted from the 1970s until 2006. Since 1 January 2007, the radio and television cigarette advertising was currently banned. Hope (cigarette) \"\"This article is about the Japanese cigarette brand. For other uses, see Hope (disambiguation).\"\" Hope is a Japanese brand of cigarettes, currently owned and"} +{"qid": "test2122", "pid": "11229043", "query": "when did they stop cigarette advertising on television", "answer": "1970", "passage": "\"Presidency of Lyndon B. Johnson\"\n\"\"It was front page news and a lead story on every radio and television station in the United States and many abroad.\"\" The report marked a major shift in the tides of public opinion regarding smoking. Terry's report prompted Congress to pass the Cigarette Labeling and Advertising Act in July 1965, that required cigarette manufacturers to place a warning label on the side of cigarette packs stating: \"\"Caution: Cigarette Smoking May Be Hazardous to Your Health.\"\" In 1970 that warning was strengthened through the Public Health Cigarette Smoking Act, which also banned cigarette advertising on television beginning in 1971. Johnson"} +{"qid": "test2122", "pid": "20726665", "query": "when did they stop cigarette advertising on television", "answer": "January 2, 1971", "passage": "\"Regulation of nicotine marketing\"\nanti-smoking advertisements at no cost to the organizations providing such advertisements. In 1970, Congress took their anti-smoking initiative one step further and passed the Public Health Cigarette Smoking Act, banning the advertising of cigarettes on television and radio starting on January 2, 1971. In April 1970, President Nixon signed it into law. The Virginia Slims brand was the last commercial shown, with \"\"a 60-second revue from flapper to Female Lib\"\", shown at 11:59 p.m. on 1 January during a break on \"\"The Tonight Show\"\". After the television ban, most cigarette advertising took place in magazines, newspapers, and on billboards. Smokeless"} +{"qid": "test2122", "pid": "13586910", "query": "when did they stop cigarette advertising on television", "answer": "1970", "passage": "\"Old Gold (cigarette)\"\nof free samples. Also, as part of its venture in alternative forms of advertising, early in the 1970s Lorillard tried advertising Kent and True in paperback books. Lorillad stopped advertising Old Gold around 1975. In the 2010s, the Old Gold non-filter variant was discontinued. Lorillard was acquired by the R.J. Reynolds Tobacco Company in 2015. Old Gold while hard to find is still manufactured and available in the United States. Lorillard made many poster and magazine advertisements to promote the Old Gold brand, from the 1930s to the 1970s, when Lorillard stopped advertising the brand. Besides poster and magazine adverts,"} +{"qid": "test2122", "pid": "12002272", "query": "when did they stop cigarette advertising on television", "answer": "January 2, 1971", "passage": "\"1971 Orange Bowl\"\nField in Birmingham in its seventh game of 1970. In April 1970, Congress passed the Public Health Cigarette Smoking Act banning the advertising of cigarettes on television and radio; in order to allow the New Year's Day football games to keep their already-sold cigarette ads, the prohibition was set to begin on January 2, 1971. Airing in prime time on the East Coast, the 1971 Orange Bowl thus became the last televised sporting event to carry cigarette ads, the final one (for Winston) airing at 10:54 p.m. (The very last tobacco advertisement, for Virginia Slims, was shown at 11:59 p.m."} +{"qid": "test2122", "pid": "3631869", "query": "when did they stop cigarette advertising on television", "answer": "1970", "passage": "\"Parody advertisement\"\nmay not indicate that it is one. During the 1960s and 1970s, the Topps Chewing Gum Company released a product called \"\"Wacky Packages\"\", in which stickers showing various products were shown in ridiculous scenes, such as \"\"Mad Magazine\"\" was notorious for regularly running obviously fictional ads for nonexistent products. However, many of these nonexistent products were clearly intended to be parodies of specific well-known brands of real-world products; frequently, the fictional advertisement in \"\"Mad\"\" parodied a specific genuine ad campaign for a recognizable brand-name product. For example, in the 1960s (when cigarettes could still be advertised on television), Kent Cigarettes"} +{"qid": "test2123", "pid": "18380733", "query": "who has been chosen as the brand ambassador of the campaign 'beti bachao-beti padhao", "answer": "Sakshi Malik", "passage": "\"Beti Bachao, Beti Padhao Yojana\"\nissue of the declining child sex ratio image (CSR) and is a national initiative jointly run by the Ministry of Women and Child Development, the Ministry of Health and Family Welfare and the Ministry of Human Resource Development. It initially focused multi-sector action in 100 districts throughout the country where there was a low CSR. On 26 August 2016, Olympics 2016 bronze medallist Sakshi Malik was made brand ambassador for BBBP. The hashtag #SelfieWithDaughter was promoted on social media in June 2015, which started when Sunil Jaglan the sarpanch of the village Bibipur, Jind in Haryana took a selfie with"} +{"qid": "test2125", "pid": "18813279", "query": "what was the name of atom bomb dropped by usa on hiroshima", "answer": "Little Boy", "passage": "\"Operations Order No. 35\"\nTibbets, Jr. at the controls. Tinian was approximately away from Japan, so it took six hours to reach the target at Hiroshima. The Little Boy atomic bomb was dropped over Hiroshima at 08:15 local time. Tibbets recalled that the city was covered with a tall mushroom cloud after the bomb was dropped. \"\"Big Stink\"\" was a backup aircraft for the Hiroshima bombing; it was used for strike observation and photographic purposes for the Nagasaki bombing. Operations Order No. 35 Operations Order No. 35 was an order issued by the 509th Composite Group on August 5, 1945 for the atomic bombing"} +{"qid": "test2125", "pid": "5735313", "query": "what was the name of atom bomb dropped by usa on hiroshima", "answer": "Little Boy", "passage": "\"Surrender of Japan\"\nGay, a Boeing B-29 Superfortress piloted by Colonel Paul Tibbets, dropped an atomic bomb (code-named Little Boy by the U.S.) on the city of Hiroshima in southwest Honshū. Throughout the day, confused reports reached Tokyo that Hiroshima had been the target of an air raid, which had leveled the city with a \"\"blinding flash and violent blast\"\". Later that day, they received U.S. President Truman's broadcast announcing the first use of an atomic bomb, and promising: The Japanese Army and Navy had their own independent atomic-bomb programs and therefore the Japanese understood enough to know how very difficult building it"} +{"qid": "test2125", "pid": "10411230", "query": "what was the name of atom bomb dropped by usa on hiroshima", "answer": "Little Boy", "passage": "\"Atomic bombings of Hiroshima and Nagasaki\"\nof atomic bombs, and the 509th Composite Group of the United States Army Air Forces (USAAF) was equipped with the specialized Silverplate version of the Boeing B-29 Superfortress that could deliver them from Tinian in the Mariana Islands. Orders for atomic bombs to be used on four Japanese cities were issued on July 25. On August 6, one of its B-29s dropped a Little Boy uranium gun-type bomb on Hiroshima. Three days later, on August 9, a Fat Man plutonium implosion-type bomb was dropped by another B-29 on Nagasaki. The bombs immediately devastated their targets. Over the next two to"} +{"qid": "test2125", "pid": "255987", "query": "what was the name of atom bomb dropped by usa on hiroshima", "answer": "Little Boy", "passage": "\"Little Boy\"\nLittle Boy \"\"Little Boy\"\" was the code name for the type of atomic bomb dropped on the Japanese city of Hiroshima on 6 August 1945 during World War II. It was the first nuclear weapon used in warfare. The bomb was dropped by the Boeing B-29 Superfortress \"\"Enola Gay\"\" piloted by Colonel Paul W. Tibbets, Jr., commander of the 509th Composite Group of the United States Army Air Forces. It exploded with an energy of approximately and caused widespread death and destruction throughout the city. The Hiroshima bombing was the second nuclear explosion in history, after the Trinity test, and"} +{"qid": "test2125", "pid": "1622994", "query": "what was the name of atom bomb dropped by usa on hiroshima", "answer": "Little Boy", "passage": "\"Paul Tibbets\"\nAugust 6 to see the aircraft he considered his painted with the now-famous nose art. Lewis would fly the mission as Tibbets's co-pilot. At 02:45 the next day—in accordance with the terms of Operations Order No. 35—the \"\"Enola Gay\"\" departed North Field for Hiroshima, Japan, with Tibbets at the controls. Tinian was approximately away from Japan, so it took six hours to reach Hiroshima. The atomic bomb, code-named \"\"Little Boy\"\", was dropped over Hiroshima at 08:15 local time. Tibbets recalled that the city was covered with a tall mushroom cloud after the bomb was dropped. Tibbets was awarded the Distinguished"} +{"qid": "test2127", "pid": "12539149", "query": "who is the number one ranked golfer in the world right now", "answer": "Dustin Johnson", "passage": "\"Dustin Johnson\"\nDustin Johnson Dustin Hunter Johnson (born June 22, 1984) is an American professional golfer who currently plays on the PGA Tour. He is a former World Number 1 in the Official World Golf Ranking. Through May 6, 2018, he had held the title of the Number 1-ranked golfer for 64 consecutive weeks, which is the 5th longest streak in PGA Tour history. On May 13, 2018, Justin Thomas overtook Johnson, but Johnson regained the Number 1 ranking four weeks later by winning the FedEx St. Jude Classic. Johnson retained the top ranking for another 13 weeks until Justin Rose overtook"} +{"qid": "test2128", "pid": "7194277", "query": "who has the oldest team in the nba", "answer": "Sacramento Kings", "passage": "\"Bill Musselman\"\nmotivator.\"\" Musselman has three children: two sons and a daughter. His oldest son Eric, formerly head coach of the Golden State Warriors and Sacramento Kings, is currently the head coach of the University of Nevada men's basketball team. They are the first father and son to hold the title of NBA head coach. Bill Musselman William Clifford Musselman (August 13, 1940 – May 5, 2000) was an American basketball coach in the NCAA, the ABA, the WBA, the CBA and the NBA. He was known for his trademark intensity, once being quoted as saying, \"\"Defeat is worse than death” because"} +{"qid": "test2128", "pid": "8865569", "query": "who has the oldest team in the nba", "answer": "Sacramento Kings", "passage": "\"Israeli Basketball Premier League\"\nEuropean or Israeli team over an NBA team at its home court. Over the years, the league has exported many of its foreign players to the NBA. In 2009, Omri Casspi became the first Israeli-born NBA player with the Sacramento Kings. Prior to that, three players have been drafted: Doron Sheffer (who played U.S. college basketball at Connecticut), Yotam Halperin and Lior Eliyahu. Oded Kattash agreed to play with the New York Knicks, but he never actually played in the NBA because of the 1998–99 NBA season lockout that started on July 1, 1998. In the 2009 NBA Draft, Omri"} +{"qid": "test2129", "pid": "5651173", "query": "where are the mitochondria located in the sperm", "answer": "midpiece", "passage": "Sperm\nare still detected by microscopy using the \"\"Christmas Tree Stain\"\" method, i.e., Kernechtrot-Picroindigocarmine (KPIC) staining. Sperm cells in algal and many plant gametophytes are produced in male gametangia (antheridia) via mitotic division. In flowering plants, sperm nuclei are produced inside pollen. Motile sperm cells typically move via flagella and require a water medium in order to swim toward the egg for fertilization. In animals most of the energy for sperm motility is derived from the metabolism of fructose carried in the seminal fluid. This takes place in the mitochondria located in the sperm's midpiece (at the base of the sperm"} +{"qid": "test2129", "pid": "19490814", "query": "where are the mitochondria located in the sperm", "answer": "midpiece", "passage": "\"Human sperm competition\"\nis tied to sperm competition in that individuals with a larger midpiece will have more mitochondria, and will thus have more highly motile sperm than those with a lower volume of mitochondria. Among humans, as with relative testis size and ejaculate volume, the size of the sperm midpiece is small compared to other primates, and is most similar in size to that of primates with low levels of sperm competition, supporting the theory that humans have had an evolutionary history of intermediate levels of sperm competition. Several features of the anatomy of the human penis are proposed to serve as"} +{"qid": "test2129", "pid": "19490813", "query": "where are the mitochondria located in the sperm", "answer": "midpiece", "passage": "\"Human sperm competition\"\nmales produce more and higher quality sperm after spending time apart from their partners, implying that males are responding to an increased risk of sperm competition, although this view has been challenged in recent years. It is also possible that males may be producing larger volumes of sperm in response to actions from their partners, or it may be that males who produce larger volumes of sperm may be more likely to spend more time away from their partners. The size of the sperm midpiece is determined in part by the volume of mitochondria in the sperm. Sperm midpiece size"} +{"qid": "test2129", "pid": "17279941", "query": "where are the mitochondria located in the sperm", "answer": "midpiece", "passage": "\"Sexual selection in mammals\"\nmales in a given species can develop bigger testes and seminal vesicles. Larger midpiece areas in the sperm that contain mitochondria are also observed. Larger testes and bigger midpieces in sperm are seen in females that mate with multiple partners. A female that has been with multiple partners will most likely give birth to an offspring fathered by the male that produced the most or faster sperm. It was found that primates and rodents with longer flagellum fathered more offspring. The length of the baculum is also influenced by sperm competition in some mammal species. Cryptic female choice is a"} +{"qid": "test2129", "pid": "17273012", "query": "where are the mitochondria located in the sperm", "answer": "midpiece", "passage": "\"Sexual selection in scaled reptiles\"\nin prolonged mate searching. Oviparous species show relatively larger testes and sperm midpiece length than viviparous species because oviparous species often reproduce annually as opposed to the bi annual cycle of the viviparous species. Because the oviparous species reproduce less frequently, these traits may have been selected to generate stronger propulsions, develop more mitochondria and increase the amount of sperm per ejaculate to help aid in the sperms success rate. Often in snake species, females will copulate with multiple males in one mating aggregation. To increase his chances in paternity, a male will sometimes try to inhibit the female from"} +{"qid": "test213", "pid": "15715602", "query": "what is billy last name in where the red fern grows", "answer": "Colman", "passage": "\"Where the Red Fern Grows (1974 film)\"\nWhere the Red Fern Grows (1974 film) Where the Red Fern Grows is a 1974 film directed by Norman Tokar, based on the 1961 novel of the same name. It stars James Whitmore, Beverly Garland, Stewart Petersen and Jack Ging. Twelve-year-old Billy Colman is obsessed with coon dogs and coon hunting, but good dogs cost money his family can't afford. However, he sees several good dogs belonging to others, including a man named Mr. Kyle. One day Billy's father mentions that there's a Bluetick pup for sale at his grandpa's store. Billy runs to see it, only to have the"} +{"qid": "test213", "pid": "15445899", "query": "what is billy last name in where the red fern grows", "answer": "Colman", "passage": "\"Where the Red Fern Grows (2003 film)\"\nWhere the Red Fern Grows (2003 film) Where the Red Fern Grows is a 2003 American family adventure film based on the children's book of the same name by Wilson Rawls. Directed by Lyman Dayton and Sam Pillsbury, it follows the story of Billy Colman who buys and trains two Redbone Coonhound hunting dogs to hunt raccoons in the Ozark mountains. The film stars Joseph Ashton, Dave Matthews, Ned Beatty and Dabney Coleman. An older Billy Coleman rescues a beagle from attack by another neighborhood dog. He takes it home with him so that its wounds can heal. In light"} +{"qid": "test213", "pid": "15445910", "query": "what is billy last name in where the red fern grows", "answer": "Colman", "passage": "\"Where the Red Fern Grows (2003 film)\"\nfound the ghost coon, and the boys attempt to cheat him by having him kill the coon before he can get his money, which was never part of the deal, that Billy and his dogs would simply tree him and find him, which results in a violent fallout between the boys. Where the Red Fern Grows (2003 film) Where the Red Fern Grows is a 2003 American family adventure film based on the children's book of the same name by Wilson Rawls. Directed by Lyman Dayton and Sam Pillsbury, it follows the story of Billy Colman who buys and trains"} +{"qid": "test213", "pid": "4305875", "query": "what is billy last name in where the red fern grows", "answer": "Colman", "passage": "\"Where the Red Fern Grows\"\nas children. There is a statue of Billy and his dogs at the Idaho Falls Public Library. Where the Red Fern Grows Where the Red Fern Grows is a 1961 children's novel by Wilson Rawls about a boy who buys and trains two Redbone Coonhound hunting dogs. When leaving work in Idaho's Snake River Valley, Billy Colman sees a pack of dogs attacking a stray coonhound. He takes the stray home to feed it. Once it has rested, Billy sets it free, knowing that it will return home. The experience reminds Billy of his childhood in the Ozark Mountains of"} +{"qid": "test213", "pid": "4305865", "query": "what is billy last name in where the red fern grows", "answer": "Colman", "passage": "\"Where the Red Fern Grows\"\nWhere the Red Fern Grows Where the Red Fern Grows is a 1961 children's novel by Wilson Rawls about a boy who buys and trains two Redbone Coonhound hunting dogs. When leaving work in Idaho's Snake River Valley, Billy Colman sees a pack of dogs attacking a stray coonhound. He takes the stray home to feed it. Once it has rested, Billy sets it free, knowing that it will return home. The experience reminds Billy of his childhood in the Ozark Mountains of Oklahoma. He wants a dog, and his parents offer to get him a collie from a neighbor."} +{"qid": "test2130", "pid": "1481383", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Equilateral triangle\"\nsegments PD and DA with DA having length \"\"z\"\" and PD having length \"\"y\"\", then which also equals formula_41 if \"\"t\"\" ≠ \"\"q\"\"; and which is the optic equation. There are numerous triangle inequalities that hold with equality if and only if the triangle is equilateral. An equilateral triangle is the most symmetrical triangle, having 3 lines of reflection and rotational symmetry of order 3 about its center. Its symmetry group is the dihedral group of order 6 \"\"D\"\". Equilateral triangles are the only triangles whose Steiner inellipse is a circle (specifically, it is the incircle). The integer-sided equilateral triangle"} +{"qid": "test2130", "pid": "6192707", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Truncated trihexagonal tiling\"\ntriangles represent the fundamental domains of p6m, [6,3] (*632 orbifold notation) wallpaper group symmetry. There are a number of ] by mirror removal and alternation. [1,6,3] creates *333 symmetry, shown as red mirror lines. [6,3] creates 3*3 symmetry. [6,3] is the rotational subgroup. The commutator subgroup is [1,6,3], which is 333 symmetry. A larger index 6 subgroup constructed as [6,3*], also becomes (*333), shown in blue mirror lines, and which has its own 333 rotational symmetry, index 12. The \"\"kisrhombille tiling\"\" is a useful starting point for making paper models of deltahedra, as each of the equilateral triangles can serve"} +{"qid": "test2130", "pid": "18284537", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "Icosahedron\nsets differently. Pyritohedral symmetry has the symbol (3*2), [3,4], with order 24. Tetrahedral symmetry has the symbol (332), [3,3], with order 12. These lower symmetries allow geometric distortions from 20 equilateral triangular faces, instead having 8 equilateral triangles and 12 congruent isosceles triangles. These symmetries offer Coxeter diagrams: and respectively, each representing the lower symmetry to the regular icosahedron , (*532), [5,3] icosahedral symmetry of order 120. The coordinates of the 12 vertices can be defined by the vectors defined by all the possible cyclic permutations and sign-flips of coordinates of the form (2, 1, 0). These coordinates represent the"} +{"qid": "test2130", "pid": "381079", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"String theory\"\nYau, and Eric Zaslow. Group theory is the branch of mathematics that studies the concept of symmetry. For example, one can consider a geometric shape such as an equilateral triangle. There are various operations that one can perform on this triangle without changing its shape. One can rotate it through 120°, 240°, or 360°, or one can reflect in any of the lines labeled , , or in the picture. Each of these operations is called a \"\"symmetry\"\", and the collection of these symmetries satisfies certain technical properties making it into what mathematicians call a group. In this particular example,"} +{"qid": "test2130", "pid": "9088923", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Tetrated dodecahedron\"\nJohnson solid, the four triangles corresponding to the face planes of a tetrahedron are always equilateral, while the pentagons and the other triangles only have reflection symmetry. The 12 pentagons and 16 triangles are colored in this net by their locations within the tetrahedral symmetry. Tetrated dodecahedron The tetrated dodecahedron is a near-miss Johnson solid. It was first discovered in 2002 by Alex Doskey. It was then independently rediscovered in 2003 and named by Robert Austin. It has 28 faces: twelve regular pentagons arranged in four panels of three pentagons each, four equilateral triangles (shown in blue), and six pairs"} +{"qid": "test2130", "pid": "705266", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "Hexagon\naround each vertex. A regular hexagon can also be created as a truncated equilateral triangle, with Schläfli symbol t{3}. Seen with two types (colors) of edges, this form only has D symmetry. A truncated hexagon, t{6}, is a dodecagon, {12}, alternating 2 types (colors) of edges. An alternated hexagon, h{6}, is a equilateral triangle, {3}. A regular hexagon can be stellated with equilateral triangles on its edges, creating a hexagram. A regular hexagon can be dissected into 6 equilateral triangles by adding a center point. This pattern repeats within the regular triangular tiling. A regular hexagon can be extended into"} +{"qid": "test2130", "pid": "6197298", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Hexagonal lattice\"\nlattice we can create a rotated lattice that is times as fine by adding the centers of the equilateral triangles. Since there are twice as many triangles as vertices, this triples the number of vertices. A pattern with 3- or 6-fold rotational symmetry has a lattice of 3-fold rotocenters (including possible 6-fold rotocenters) that is this finer lattice relative to the lattice of translational symmetry. In the case of 6-fold rotational symmetry the 6-fold centers form a lattice as coarse as the lattice of translational symmetry, i.e. there is one 6-fold center and there are two 3-fold centers per primitive"} +{"qid": "test2130", "pid": "2019785", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Weyl group\"\nare just lines, and the Weyl group is the symmetry group of an equilateral triangle, as indicated in the figure. As a group, formula_9 is isomorphic to the permutation group on three elements, which we may think of as the vertices of the triangle. Note that in this case, formula_9 is not the full symmetry group of the root system; a 60-degree rotation preserves formula_1 but is not an element of formula_9. We may consider also the formula_21 root system. In this case, formula_2 is the space of all vectors in formula_23 whose entries sum to zero. The roots consist"} +{"qid": "test2130", "pid": "1481385", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Equilateral triangle\"\ntriangles. In particular, the regular tetrahedron has four equilateral triangles for faces and can be considered the three-dimensional analogue of the shape. The plane can be tiled using equilateral triangles giving the triangular tiling. An equilateral triangle is easily constructed using a straightedge and compass, because 3 is a Fermat prime. Draw a straight line, and place the point of the compass on one end of the line, and swing an arc from that point to the other point of the line segment. Repeat with the other side of the line. Finally, connect the point where the two arcs intersect"} +{"qid": "test2130", "pid": "6188309", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Triangular prism\"\nare the same triangle. A right triangular prism is semiregular or, more generally, a uniform polyhedron if the base faces are equilateral triangles, and the other three faces are squares. It can be seen as a truncated trigonal hosohedron, represented by Schläfli symbol t{2,3}. Alternately it can be seen as the Cartesian product of a triangle and a line segment, and represented by the product {3}x{}. The dual of a triangular prism is a triangular bipyramid. The symmetry group of a right 3-sided prism with triangular base is \"\"D\"\" of order 12. The rotation group is \"\"D\"\" of order 6."} +{"qid": "test2130", "pid": "6188792", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Square antiprism\"\narrangement, but it can't be made uniform; the sides are isosceles triangles. Its vertex configuration is 3.3/2.3.4, with one triangle retrograde. It has d symmetry, order 8. The gyroelongated square pyramid is a Johnson solid (specifically, \"\"J\"\") constructed by augmenting one a square pyramid. Similarly, the gyroelongated square bipyramid (\"\"J\"\") is a deltahedron (a polyhedron whose faces are all equilateral triangles) constructed by replacing both squares of a square antiprism with a square pyramid. The snub disphenoid (\"\"J\"\") is another deltahedron, constructed by replacing the two squares of a square antiprism by pairs of equilateral triangles. The snub square antiprism"} +{"qid": "test2130", "pid": "4086932", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Chirality (mathematics)\"\na line formula_21, such that formula_5 is invariant under the mapping formula_23, when formula_21 is chosen to be the formula_10-axis of the coordinate system.) For that reason, a triangle is achiral if it is equilateral or isosceles, and is chiral if it is scalene. Consider the following pattern: This figure is chiral, as it is not identical to its mirror image: But if one prolongs the pattern in both directions to infinity, one receives an (unbounded) achiral figure which has no axis of symmetry. Its symmetry group is a frieze group generated by a single glide reflection. A knot is"} +{"qid": "test2130", "pid": "5708722", "query": "how many lines of symmetry are there in a equilateral triangle", "answer": "3", "passage": "\"Dihedral group of order 6\"\nDihedral group of order 6 In mathematics, D (sometimes also denoted by D) is the dihedral group of degree 3, which is isomorphic to the symmetric group S of degree 3. It is also the smallest possible non-abelian group. This page illustrates many group concepts using this group as example. The dihedral group D is the symmetry group of an equilateral triangle, that is, it is the set of all transformations such as reflection, rotation, and combinations of these, that leave the shape and position of this triangle fixed. In the case of D, every possible permutation of the triangle's"} +{"qid": "test2131", "pid": "11028926", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nKeeping Up with the Kardashians Keeping Up with the Kardashians (often abbreviated KUWTK) is an American reality television series that airs on the E! cable network. The show focuses on the personal and professional lives of the Kardashian–Jenner blended family. Its premise originated with Ryan Seacrest, who also serves as an executive producer. The series debuted on October 14, 2007 and has subsequently become one of the longest-running reality television series in the country. The fifteenth season premiered on August 5, 2018. The series focuses mainly on sisters Kourtney, Kim, and Khloé Kardashian and their half-sisters Kendall and Kylie Jenner."} +{"qid": "test2131", "pid": "19548556", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Rob & Chyna\"\nKardashian and Chyna their own series: The series airs on E!, an American cable network which features mostly entertainment-related programming, and reality television series, including \"\"Keeping Up with the Kardashians\"\", another series that both Rob Kardashian and Blac Chyna have been part of. The show is produced by Bunim/Murray Productions and Ryan Seacrest Productions, which also produce \"\"Keeping Up with the Kardashians\"\". On December 14, 2016, E! renewed the series for a second season consisting of eight episodes that was expected to premiere in 2017. In July 2017, E! confirmed the series was put on hold, and not on their"} +{"qid": "test2131", "pid": "11028972", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nThe episodes of \"\"Keeping Up with the Kardashians\"\" are also available on numerous streaming video on demand services, such as Amazon Video, iTunes, Google Play, Microsoft Movies & TV, Hulu, and Vudu, as well as the E! network's own streaming service. Keeping Up with the Kardashians Keeping Up with the Kardashians (often abbreviated KUWTK) is an American reality television series that airs on the E! cable network. The show focuses on the personal and professional lives of the Kardashian–Jenner blended family. Its premise originated with Ryan Seacrest, who also serves as an executive producer. The series debuted on October 14,"} +{"qid": "test2131", "pid": "11905537", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Khloé Kardashian\"\nthe Mavericks' season while she's in Dallas with her husband Lamar Odom.\"\" It aired on January 30, 2012. In October 2012, Kardashian and Mario Lopez were confirmed as the co-hosts of the second season of the American version of \"\"The X Factor\"\". Their first appearance on the series aired on October 31, 2012. It was confirmed on April 22, 2013 that Kardashian will not return to co-host \"\"The X Factor\"\" for its third season. On March 26, 2014, E! announced a \"\"Keeping Up with the Kardashians\"\" spin-off series titled \"\"Kourtney & Khloé Take the Hamptons\"\". \"\"The Hamptons\"\" follows Kourtney, Khloé,"} +{"qid": "test2131", "pid": "11028939", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\n\"\"Kardashian Inc.\"\" as it is called by \"\"The Hollywood Reporter\"\". \"\"These shows are a 30-minute commercial,\"\" Khloé Kardashian admitted in 2011, in response to a suggestion that the television series is used to promote their retail stores and endorsement deals. On August 3, 2017, it was announced the show's 10 year anniversary will premiere on September 24, 2017 following the show's season 14 premiere. On August 24, 2017, it was announced the family had signed a $150 million deal with E!. On August 20, 2018, Kim Kardashian announced on Twitter that the family will begin filming Season 16 the following"} +{"qid": "test2131", "pid": "11028967", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nawards winning one in 2012. In 2010, Kris and Caitlyn Jenner received a Teen Choice Award nomination in a one-time Choice TV: Parental Unit category. \"\"Keeping Up with the Kardashians\"\" premiered on October 14, 2007 in the United States on the E! cable network at 10:30/9:30 pm ET/PT. The half-hour reality series continued to air every Sunday night in the same time slot, and the eight-episode first season of the show concluded on December 2. The subsequent season premiered the following year on March 9 in an earlier time slot at 10:00/9:00 pm with a repeated episode airing immediately afterwards."} +{"qid": "test2131", "pid": "11028948", "query": "latest season on keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nand her husband Lamar Odom, became the third spin-off of \"\"Keeping Up with the Kardashians\"\". The show premiered on April 10, 2011, and lasted two seasons. In March 2014, E! announced the fourth spin-off entitled \"\"Kourtney and Khloé Take The Hamptons\"\". The series premiered on November 2, 2014, and followed Kourtney and Khloé who relocated to the Hamptons to work on opening a new Dash pop-up store. The fifth spin-off series called \"\"Dash Dolls\"\" premiered on September 20, 2015. The reality series chronicles the daily life of the employees of the Dash boutique in Los Angeles. In June 2016, the"} +{"qid": "test2132", "pid": "19043756", "query": "when was the last time america hosted the summer olympics", "answer": "1996", "passage": "\"Los Angeles bid for the 2024 Summer Olympics\"\noriginally bid for the USOC's nomination in late 2014, when Boston was chosen over Los Angeles, Washington, D.C., and San Francisco. This was the third United States summer bid since hosting the Centennial Olympic Games (1996) in Atlanta, previously losing in 2012 and 2016 to London and Rio de Janeiro. Los Angeles previously hosted the 1932 Summer Olympics and the 1984 Summer Olympics, and will become the third city – after London and Paris in 2024 – to host the Summer Games three times. Los Angeles will become the first American city to host the Olympic games since the 2002"} +{"qid": "test2132", "pid": "10056636", "query": "when was the last time america hosted the summer olympics", "answer": "1996", "passage": "\"Sports in Toronto\"\nSummer Olympic Games five times: 1960, 1964, 1976, 1996 and 2008. The closest it came to winning the games was in 2008, when it finished second to Beijing by a vote of 56-22. Varsity Stadium on the campus of the University of Toronto, hosted some of the matches of the Olympic football tournament of the 1976 Summer Olympics in Montreal. The first major multi-sport event that the city of Toronto hosted was the 1976 Summer Paralympics. It was the fifth edition of the Paralympic Games and the first time it was hosted in Canada. In 2009, Toronto submitted a bid"} +{"qid": "test2132", "pid": "13098", "query": "when was the last time america hosted the summer olympics", "answer": "1996", "passage": "Athens\nOlympics, and were meant to be organized in Greece every four years, between the main Olympics. This idea later lost support from the IOC and these games were discontinued. Athens was awarded the 2004 Summer Olympics on 5 September 1997 in Lausanne, Switzerland, after having lost a previous bid to host the 1996 Summer Olympics, to Atlanta, United States. It was to be the second time Athens would host the games, following the inaugural event of 1896. After an unsuccessful bid in 1990, the 1997 bid was radically improved, including an appeal to Greece's Olympic history. In the last round"} +{"qid": "test2133", "pid": "4185098", "query": "who sang the superbowl national anthem in 2017", "answer": "Luke Bryan", "passage": "\"Super Bowl XLI\"\nsang the national anthem before Super Bowl XXIV, in New Orleans, and Super Bowl XL (along with Aretha Franklin), in Detroit. This was also the last time until Luke Bryan sang at Super Bowl LI that a male artist had sung the national anthem at a Super Bowl. Marlee Matlin and Jason Hay-Southwell performed the National Anthem in American Sign Language. Besides participating in the CBS telecast of the pre-game show, Dan Marino also participated in the coin toss along with Norma Hunt, the widow of Lamar Hunt, the former owner of the Kansas City Chiefs and the man who"} +{"qid": "test2134", "pid": "2576328", "query": "who were farmers who kept a small portion of their crops & gave the rest to the landowners", "answer": "Sharecropping", "passage": "Sharecropping\nfarmer kept the produce of gardens. The sharecropper purchased seed, tools, and fertilizer, as well as food and clothing, on credit from a local merchant, or sometimes from a plantation store. At harvest time, the cropper would harvest the whole crop and sell it to the merchant who had extended credit. Purchases and the landowner's share were deducted and the cropper kept the difference—or added to his debt. Though the arrangement protected sharecroppers from the negative effects of a bad crop, many sharecroppers (both black and white) remained quite poor. Arrangements typically left a third of the crop to the"} +{"qid": "test2134", "pid": "2576327", "query": "who were farmers who kept a small portion of their crops & gave the rest to the landowners", "answer": "Sharecropping", "passage": "Sharecropping\nearly 1940s, and the average plantation fell into bankruptcy about every 20 years. It is against this backdrop that the wealthiest owners maintained their concentrated ownership of the land. Croppers were assigned a plot of land to work, and in exchange owed the owner a share of the crop at the end of the season, usually one half. The owner provided the tools and farm animals. Farmers who owned their own mule and plow were at a higher stage, and were called tenant farmers: They paid the landowner less, usually only a third of each crop. In both cases, the"} +{"qid": "test2134", "pid": "2576321", "query": "who were farmers who kept a small portion of their crops & gave the rest to the landowners", "answer": "Sharecropping", "passage": "Sharecropping\nto the merchant. The system started with blacks when large plantations were subdivided. By the 1880s, white farmers also became sharecroppers. The system was distinct from that of the tenant farmer, who rented the land, provided his own tools and mule, and received half the crop. Landowners provided more supervision to sharecroppers, and less or none to tenant farmers. Sharecropping in the United States probably originated in the Natchez District, roughly centered in Adams County, Mississippi with its county seat, Natchez. Sharecroppers worked a section of the plantation independently, usually growing cotton, tobacco, rice, sugar, and other cash crops, and"} +{"qid": "test2134", "pid": "3926573", "query": "who were farmers who kept a small portion of their crops & gave the rest to the landowners", "answer": "Sharecropping", "passage": "\"History of the Southern United States\"\nday laborers or impoverished sharecroppers, who worked under the supervision of the landowner. Sharecropping was a way for landless farmers (both black and white) to earn a living. The landowner provided land, housing, tools and seed, and perhaps a mule, and a local merchant loaned money for food and supplies. At harvest time the sharecropper received a share of the crop (from one-third to one-half), which paid off his debt to the merchant. By the late 1860s white farmers also became sharecroppers. The cropper system was a step below that of the tenant farmer, who rented the land, provided his"} +{"qid": "test2134", "pid": "2576322", "query": "who were farmers who kept a small portion of their crops & gave the rest to the landowners", "answer": "Sharecropping", "passage": "Sharecropping\nreceiving half of the parcel's output. Sharecroppers also often received their farming tools and all other goods from the landowner they were contracted with. Landowners dictated decisions relating to the crop mix, and sharecroppers were often in agreements to sell their portion of the crop back to the landowner, thus being subjected to manipulated prices. In addition to this, landowners, threatening to not renew the lease at the end of the growing season, were able to apply pressure to their tenants. Sharecropping often proved economically problematic, as the landowners held significant economic control. Although the sharecropping system was primarily a"} +{"qid": "test2136", "pid": "7403945", "query": "who plays timon in lion king on broadway", "answer": "Max Casella", "passage": "\"Timon and Pumbaa\"\nTimon and Pumbaa Timon and Pumbaa are an animated meerkat and warthog duo introduced in Disney's 1994 animated film \"\"The Lion King\"\" and its franchise. Timon was portrayed through his many appearances by Nathan Lane (in all three films and early episodes of the show), Max Casella (the original actor in \"\"The Lion King\"\" Broadway musical), Kevin Schon (in certain episodes of the show), Quinton Flynn (in certain episodes of the show), Bruce Lanoil in the \"\"Wild About Safety\"\" shorts and \"\"Kingdom Hearts II\"\", and while Pumbaa is voiced by Ernie Sabella (in all of his animated speaking appearances), and"} +{"qid": "test2136", "pid": "7195795", "query": "who plays timon in lion king on broadway", "answer": "Max Casella", "passage": "\"Max Casella\"\nRobbins in 2002, and has two children. They live in New York City. Casella played Vincent \"\"Vinnie\"\" Delpino in the television series \"\"Doogie Howser, M.D.\"\" from 1989 to 1993 with Neil Patrick Harris. In 1992, Casella played Racetrack Higgins in \"\"Newsies\"\", which was based upon true events in the 1899 newsboys strike against Joseph Pulitzer and William Randolph Hearst. He appeared in \"\"WindRunner: A Spirited Journey\"\", starring Margot Kidder and Russell Means as Jim Thorpe's ghost. In 1997, Casella played Timon in the original Broadway production of \"\"The Lion King\"\"; a performance for which he was awarded a Theatre World"} +{"qid": "test2138", "pid": "895172", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Mario Morales\"\njoin the national team, the 1980 Olympics in Moscow, because Puerto Rico's Olympic committee decided to join the United States in the boycott, and the 1984 Los Angeles Olympic Games because the national team did not qualify for those. However, when he did get to go to the Olympics, for the Seoul games in 1988 and the Barcelona games in 1992, he impressed international audiences with his skills and savvy. In between Olympics and Olympics, he became an effective shooter from the 3-point area in the BSN. In 1976, the \"\"Cangrejeros\"\" became the \"\"Mets de Guaynabo\"\", and Morales, aided with"} +{"qid": "test2138", "pid": "16461664", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Holly Warlick\"\ngame, the USA faced Canada, who had not lost. With the USA 4–1 record, the USA did not simply need to win, but need to win by more than 13 points to secure the gold. The USA ended up winning the game by 16 points, thus securing the gold with only three points to spare. Warlick averaged 1.0 point per game. Warlick was selected to be a member of the team representing the USA at the 1980 Olympics, but the team did not go, due to the 1980 Olympic boycott. The team did go 6–1 in Olympic Qualifying games, with"} +{"qid": "test2138", "pid": "12969226", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Cindy Noble\"\nteam that had defeated them at the Pan Am games. Noble averaged 7.0 points per game. Noble was selected to be a member of the team representing the USA at the 1980 Olympics, but the team did not go, due to the 1980 Olympic boycott. The team did go 6–1 in Olympic Qualifying games, with Noble scoring 13.8 points per game, the second most on the team. She led the team in rebounding, with 6.7 per game. In 2007 Noble did however receive one of 461 Congressional Gold Medals created especially for the spurned athletes. Noble was selected to be"} +{"qid": "test2138", "pid": "19302077", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Dan Ripley\"\nSunkist Invitational, he easily won with 17'6\"\" and was ready to call it a day. Bullard suggest he keep going. Ripley no heighted at the 1976 Olympic Trials, along with 15 other vaulters. Four years later he came back to finish second behind Tom Hintnaus to qualify for the Olympic Team that did not go to the Olympics due to the 1980 Summer Olympics boycott. He did however receive one of 461 Congressional Gold Medals created especially for the spurned athletes. The first four places in those trials, including Ripley, Smith, Tully and Hintnaus all grew up and went to"} +{"qid": "test2138", "pid": "15263222", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Mark Neeleman\"\non \"\"Rainbow\"\" J-Class 2012/2013 Several countries did boycott the 1980 Summer Olympics, others like France did not go since they found the competition devaluated. As result only half of the expected fleet was present during the Olympic regattas. Mark Neeleman Mark Jacobus Louis Neeleman (born 16 April 1959, in Baghdad, Iraq) is a sailor from the Netherlands. Since the Netherlands did boycott the Moscow Olympic Games Neeleman represented his National Olympic Committee at the 1980 Summer Olympics in Tallinn, USSR under the Dutch NOC flag. Neeleman took 8th place in the Finn. In 1984 Summer Olympics, Los Angeles Neeleman did"} +{"qid": "test2138", "pid": "4828425", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Maxie Parks\"\nto what appeared to be a runaway victory when he collapsed on the track with a severely pulled hamstring 150m from the finish. This unfortunate injury denied the USA a seemingly certain victory in the team competition, the victory instead going to East Germany. Parks did not compete again that season, but did return in 1978 to again capture the national title at 400 m. Any hope of Olympic success in 1980 was denied by the USA boycott of those games, but in any event Parks's form meant he only reached the semi-final stage at the Olympic trials. Prior to"} +{"qid": "test2138", "pid": "17786812", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Kobus Vandenberg\"\nKobus Vandenberg Jacobus \"\"Kobus\"\" Vandenberg (born 17 July 1950 in Hilversum) is a sailor from the Netherlands. Since the Netherlands did boycott the Moscow Olympic Games Vandenberg represented his National Olympic Committee at the 1980 Summer Olympics in Tallinn, USSR under the Dutch NOC flag. With Boudewijn Binkhorst as helmsman, Vandenberg took the 6th place in the Star. In the 1988 Olympics in Pusan Vandenberg made his second Olympic appearance. Again in the Dutch Star this time with Steven Bakker as helmsman. They took 9th place. Several countries did boycott the 1980 Summer Olympics, others like France did not go"} +{"qid": "test2138", "pid": "2344556", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"Lynette Woodard\"\nrepresenting the USA at the 1979 World University Games, held in Mexico City, Mexico. The USA team won all seven games to take the gold medal. The USA team played and beat Cuba twice, the team that had defeated them at the Pan Am games. Woodard averaged 14.1 points per game. Woodard was selected to be a member of the team representing the USA at the 1980 Olympics, but the team did not go, due to the 1980 Olympic boycott. The team did go 6–1 in Olympic Qualifying games, with Woodard scoring 4.5 points per game. Woodard was selected to"} +{"qid": "test2138", "pid": "867231", "query": "when did the us not go to the olympics", "answer": "1980", "passage": "\"1980 Summer Olympics\"\non 20 January 1980, that the US would boycott the Moscow Olympics if Soviet troops did not withdraw from Afghanistan within one month. 65 countries and regions invited did not take part in the 1980 Olympics. Many of these followed the United States' boycott initiative, while others cited economic reasons for not coming. Iran, under Ayatollah Khomeini hostile to both superpowers, boycotted when the Islamic Conference condemned the invasion. Many of the boycotting nations participated instead in the Liberty Bell Classic, also known as the \"\"Olympic Boycott Games\"\", in Philadelphia. However, the nations that did compete had won 71 percent"} +{"qid": "test2139", "pid": "6183196", "query": "what is the meaning of the name comanche", "answer": "enemy", "passage": "\"Comanche language\"\nComanche language Comanche is a Uto-Aztecan language spoken by the Comanche people, who split off from the Shoshone soon after they acquired horses around 1705. The Comanche language and the Shoshoni language are therefore quite similar, although certain consonant changes in Comanche have inhibited mutual intelligibility. The name \"\"Comanche\"\" comes from the Ute word ' meaning \"\"enemy, stranger\"\". Their own name for the language is ' which means \"\"language of the people\"\". Although efforts are now being made to ensure its survival, most speakers of the language are elderly. In the late 19th century, Comanche children were placed in boarding"} +{"qid": "test2139", "pid": "5843503", "query": "what is the meaning of the name comanche", "answer": "enemy", "passage": "\"Ute people\"\nThey fought with Plains Indians, including the Comanche who had previously been allies. The name \"\"Comanche\"\" is from the Ute word for them, \"\"kɨmantsi\"\", meaning enemy. The Pawnee, Osage and Navajo also became enemies of the Plains Indians by about 1840. Some Ute bands fought against the Spanish and Pueblos with the Jicarilla Apache and the Comanche. The Ute were sometimes friendly, sometimes hostile to the Navajo. The Utes were skilled warriors who specialized in horse mounted combat. War with neighboring tribes was mostly fought for gaining prestige, stealing horses, and revenge. Men would organize themselves into war parties made"} +{"qid": "test2141", "pid": "15577735", "query": "who do you meet at the gates of heaven", "answer": "Saint Peter", "passage": "\"Saint Peter\"\nthen declares: Blessed are you, Simon son of Jonah, for this was not revealed to you by flesh and blood, but by my Father in heaven. And I tell you that you are Cephas (Peter) (\"\"Petros\"\"), and on this rock (\"\"petra\"\") I will build my church, and the gates of Hades will not overcome it. I will give you the keys of the kingdom of heaven; whatever you bind on earth will be bound in heaven, and whatever you loose on earth will be loosed in heaven. A common view of Peter is provided by Jesuit Father Daniel J. Harrington,"} +{"qid": "test2141", "pid": "16638947", "query": "who do you meet at the gates of heaven", "answer": "Saint Peter", "passage": "\"Saint Peter and Saint Paul (El Greco, Barcelona)\"\nbe identified as Saint Peter. In the Bible, Peter is one of the first disciples that Jesus calls upon. In the Book of Matthew, Jesus said to Peter, “And I tell you that you are Peter, and on this rock I will build my church, and the gates of Hades will not overcome it. I will give you the keys of the kingdom of heaven; whatever you bind on earth will be bound in heaven, and whatever you loose on earth will be loosed in heaven.\"\" El Greco included the keys of heaven in this painting, as seen in the"} +{"qid": "test2142", "pid": "10146648", "query": "what are bulls used for on a farm", "answer": "breeding", "passage": "\"Spanish-style bullfighting\"\nmakes it impossible to use this space to raise any other cattle or crop, which makes the breeding and maintenance of these animals quite expensive. The bulls organize themselves in highly hierarchic packs of females and young bulls following the lead of a dominant male. The average life expectancy for a domestic bull raised for consumption is of a year and a half, after which it is taken to the slaughterhouse. Bulls bred and raised in intensive farms and artificially fattened may live even less. Lidia bulls live between five and seven years before being fought. The body of the"} +{"qid": "test2142", "pid": "8856090", "query": "what are bulls used for on a farm", "answer": "breeding", "passage": "\"Frozen bovine semen\"\nnot a significant population of females in a particular breed, a bull may have a designated supply of semen collected and then be sent to slaughter. However a bank or supply of his semen is kept in storage for many years, still breeding females for many years after he has departed. While many beef bulls are collected in stud a good share are collected on farm or in custom studs. Many of the bulls will be used in the owners' herds during beef breeding season. However they have the genetic merit to be used in many others as well. A"} +{"qid": "test2142", "pid": "10706242", "query": "what are bulls used for on a farm", "answer": "breeding", "passage": "\"Bull Lea\"\nBull Lea Bull Lea (March 11, 1935 – June 16, 1964) was an American Thoroughbred racehorse who is best known as the foundation sire responsible for making Calumet Farm one of the most successful racing stables in American history. In their article on Calumet Farm, the International Museum of the Horse in Lexington, Kentucky wrote that Bull Lea was \"\"one of the greatest sires in Thoroughbred breeding history.\"\" Bred by E. Dale Schaffer's Coldstream Stud in Lexington, Kentucky, Bull Lea was sired by Bull Dog and out of the mare, Rose Leaves by Ballot. He was purchased as a yearling"} +{"qid": "test2142", "pid": "18650323", "query": "what are bulls used for on a farm", "answer": "breeding", "passage": "\"Patara Elephant Farm\"\ntricks by using metal bull-hooks and nails. These tricks include painting, dancing, and walking on two legs. Patara Elephant Farm Patara Elephant Farm is an elephant breeding farm located near Chiang Mai in Thailand. Patara Elephant Farm is a health-recovery and reproduction-management farm for elephants. Its focus is on educating the public on elephants and the threats they face. To do this, the farm pairs visitors up with an elephant for a day and assigns them the task of caring for that elephant. As of December 2014, the farm is home to 55 elephants. It is located in the mountains"} +{"qid": "test2142", "pid": "2588580", "query": "what are bulls used for on a farm", "answer": "breeding", "passage": "\"Dairy farming\"\nbreeding. This short phase lasting only about a day is also known as estrus or colloquially, heat. The cow will often exhibit several behavioral changes during this phase including increased activity and vocalizations. Most importantly, during estrus she will stand still when mounted by another cow or bull. In the United States, artificial insemination (AI) is a very important reproductive tool used on dairy facilities. AI, is the process by which sperm is deliberately delivered by dairy managers or veterinarians into the cow’s uterus. Bulls “donate” semen at a stud farm but there is never any physical contact between the"} +{"qid": "test2144", "pid": "1991739", "query": "what is the meaning of the dragon boat festival", "answer": "commemorating fealty and filial piety", "passage": "\"Dragon Boat Festival\"\nDragon Boat Festival The Duanwu Festival, also often known as the Dragon Boat Festival, is a traditional holiday originating in China, occurring near the summer solstice. It is also known as Zhongxiao Festival (), commemorating fealty and filial piety. The festival now occurs on the 5th day of the 5th month of the traditional Chinese calendar, which is the source of the festival's alternative name, the Double Fifth Festival. The Chinese calendar is lunisolar, so the date of the festival varies from year to year on the Gregorian calendar. In 2016, it occurred on 9 June; in 2017, on 30"} +{"qid": "test2145", "pid": "19017166", "query": "who is edmund on days of our lives", "answer": "Adam Caine", "passage": "\"Days of Our Lives characters (1990s)\"\nand Mike and used this turn of events to push Mike and Carrie closer together so she could be with Austin. Edmund Phineas Crumb, played by Adam Caine from January 8, 1998, to May 8, 1998. Edmund is the husband of Susan Banks and the stepfather of EJ DiMera. Edmund was a soft-hearted and somewhat dimwitted pilot who fell in love with Susan Banks after Susan came to stay at his mother Violet's pub in England. Edmund came to Salem to find Susan, who was a suspect in Kristen's murder, and proposed to her. It wasn't Susan, however, but actually"} +{"qid": "test2147", "pid": "6460502", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"All You Wanted\"\nnumber three on the RIANZ Singles Chart—one place shy of the peak of \"\"Everywhere\"\". Elsewhere, however, \"\"All You Wanted\"\" did not match the success of \"\"Everywhere\"\", underperforming in Europe and stalling inside the top 30 in Australia. \"\"All You Wanted\"\" was written by Branch and produced by John Shanks. \"\"If you want to/I can save you/I can take you away from here,\"\" she wails over a crumbling wall of guitars. Lyrically, it talks about a heartbreak. \"\"All You Wanted\"\" received mostly positive reviews from music critics. In 2009, Sputnikmusic said that the song was the most recognizable while reviewing Branch's"} +{"qid": "test2147", "pid": "14496270", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"Everywhere You Go (World Cup song)\"\n\"\"1Goal\"\" initiatives. The idea was conceived by Antos Stella of AS Entertainment: \"\"I'd always wanted to do a song featuring Africa's top artists,\"\" she said. \"\"I'd covered the whole of Africa and realised hip hop is happening on this continent. But I wanted to do a track with artists who use traditional African elements in hip hop.\"\" Enter MTN, which was looking for an official song for their World Cup campaign. This resulted in big-time producer Steve Morales getting involved and when Kelly heard the track she was sold! \"\"I got word through my management team and when I heard"} +{"qid": "test2147", "pid": "6460501", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"All You Wanted\"\nAll You Wanted \"\"All You Wanted\"\" is a song recorded by American singer-songwriter Michelle Branch, released as the second single from her debut album \"\"The Spirit Room\"\". It was released by the Maverick Recording Company and Warner Bros. Records on October 28, 2001. The song was written by Branch and was produced by John Shanks. \"\"All You Wanted\"\" received generally positive reviews and is, to date, Branch's only top-ten single in the United States, surpassing the peak of her debut single \"\"Everywhere\"\" and reaching number six on the \"\"Billboard\"\" Hot 100. The song also performed well in New Zealand, reaching"} +{"qid": "test2147", "pid": "9355714", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"If I Kiss You\"\nwith Kimmosato, where she was a regular during the 1967 - 1968 season. \"\"If I Kiss You\"\" was followed up by a couple other quirky country numbers that became hits, like \"\"That's a No No\"\", \"\"Big Girls Don't Cry\"\", (not to be confused with the song \"\"Big Girls Don't Cry\"\" by Frankie Valli and the Four Seasons) and \"\"Flattery Will Get You Everywhere\"\", all hits for her in the late 1960s. If I Kiss You \"\"If I Kiss You (Will You Go Away)\"\" is a popular 1967 song by country singer Lynn Anderson. \"\"If I Kiss You\"\" became Anderson's first"} +{"qid": "test2147", "pid": "5816583", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"Everywhere (Michelle Branch song)\"\nthe slashing electric guitars and gang-harmony vocals come in, and before long she’s belting out an unforgettable dream-pop chorus. It’s a flawless pop production and an auspicious chart debut.\"\" \"\"Everywhere\"\" peaked at number 12 on the US \"\"Billboard\"\" Hot 100 on the week ending November 10, 2001. The song stayed on the charts for 20 weeks. The song became Branch's first top 20 hit, as well as her third highest peaking single, after \"\"The Game of Love\"\" and \"\"All You Wanted\"\". \"\"Everywhere\"\" remains Branch's most successful single worldwide. It charted the highest in New Zealand, where it peaked at number"} +{"qid": "test2147", "pid": "7321650", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"A Fish Called Selma\"\nreference to the stage show \"\"Stop the World – I Want to Get Off\"\". The scene with Selma and Troy smoking is similar to \"\"Now, Voyager\"\". The house that McClure lives in is based on the Chemosphere in California and his car is a DeLorean DMC-12. The showbiz news anchors, voiced by Hank Azaria and Pamela Hayden, are based on \"\"Entertainment Tonight\"\" hosts John Tesh and Mary Hart, respectively. McClure describes Jub-Jub the iguana as \"\"Everywhere You Want to Be\"\" in reference to a Visa commercial. Ken Keeler pitched the name MacArthur Parker, in reference to the song \"\"MacArthur Park\"\","} +{"qid": "test2147", "pid": "19662832", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"You Are Forgiven\"\nYou Are Forgiven You Are Forgiven is the debut mixtape by American hip hop recording artist MadeinTYO. It was originally released on April 27, 2016 by Privateclub Records on DatPiff, then it was re-released on August 19, 2016 on iTunes by Privateclub Records. \"\"You Are Forgiven\"\" features production from MadeinTYO himself, along with K Swisha, Richie Souf, Purps and ICYTWAT. It features guest appearances from 2 Chainz and Travis Scott. The mixtape was supported by the singles \"\"Uber Everywhere\"\", and \"\"I Want\"\". \"\"Uber Everywhere\"\" was released as the mixtape's lead single on February 26, 2016. It was produced by K"} +{"qid": "test2147", "pid": "8387099", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"The Beatles (TV series)\"\nand dream about the days of Robin Hood. Paul exclaims: \"\"He never happened\"\"; A group of children claim that an elderly woman named Eleanor Rigby is a witch. The Fabs tell them the true story about Eleanor Rigby in a song. (The song \"\"I Feel Fine\"\" is heard at the end of this episode.) Sing Alongs: Got To Get You Into My Life / Here, There and Everywhere** 38. Tomorrow Never Knows*/I've Just Seen a Face*: The Beatles fall into a well and end up in the inner world with foreign natives. The chief wants the Fabs to marry his"} +{"qid": "test2147", "pid": "12584844", "query": "i want to be with you everywhere song", "answer": "Everywhere", "passage": "\"Halo (Beyoncé song)\"\nyou see [angels'] faces instantly when you hear it. [Its lyrics] are basically saying that I had these walls built up about love; you completely tore them down and when I look at you I see your halo, it's really beautiful.\"\" Backed by a piano, claps and step stomps that set a spiritualized atmosphere, Beyoncé opens the song with the lines: \"\"Remember those walls I built? Well, baby, they're tumbling down\"\". She sings the introduction in a low register, and the power of her voice gradually increases as the song progresses. In the pre-chorus, she chants, \"\"Everywhere I'm looking now,"} +{"qid": "test2148", "pid": "966784", "query": "royal society for the protection of birds number of members", "answer": "more than a million", "passage": "\"Royal Society for the Protection of Birds\"\nRoyal Society for the Protection of Birds The Royal Society for the Protection of Birds (RSPB) is a charitable organisation registered in England and Wales and in Scotland. It was founded in 1889. It works to promote conservation and protection of birds and the wider environment through public awareness campaigns, petitions and through the operation of nature reserves throughout the United Kingdom. The RSPB has over 1,300 employees, 18,000 volunteers and more than a million members (including 195,000 youth members), making it the largest wildlife conservation charity in Europe. The RSPB has many local groups and maintains 200 nature reserves."} +{"qid": "test2149", "pid": "7189475", "query": "when was theme from a summer place released", "answer": "1959", "passage": "\"Theme from A Summer Place\"\nTheme from A Summer Place \"\"Theme from \"\"A Summer Place\"\"\"\" is a song with lyrics by Mack Discant and music by Max Steiner, written for the 1959 film \"\"A Summer Place\"\", which starred Sandra Dee and Troy Donahue. It was recorded for the film as an instrumental by Hugo Winterhalter. Originally known as the \"\"Molly and Johnny Theme\"\", the piece is not the main title theme of the film, but a secondary love theme for the characters played by Dee and Donahue. Following its initial film appearance, the theme has been recorded by many artists in both instrumental and vocal"} +{"qid": "test2149", "pid": "7189476", "query": "when was theme from a summer place released", "answer": "1960", "passage": "\"Theme from A Summer Place\"\nversions, and has also appeared in a number of subsequent films and television programs. The best-known cover version of the theme is an instrumental version by Percy Faith and his orchestra that was a Number One hit for nine weeks on the \"\"Billboard\"\" Hot 100 chart in 1960. Percy Faith recorded the most popular version of the theme, an instrumental orchestral arrangement, at the Columbia 30th Street Studio in New York City. It was released in September 1959 as a single on Columbia Records, credited to \"\"Percy Faith and his Orchestra,\"\" prior to the November 1959 release of the film"} +{"qid": "test2149", "pid": "7611652", "query": "when was theme from a summer place released", "answer": "1960", "passage": "\"A Summer Place (film)\"\ninstrumental hit \"\"Theme from \"\"A Summer Place\"\"\"\", composed by Max Steiner, was used in the film as a secondary musical theme (not the main title theme) for scenes featuring Molly and Johnny. The version used in the film was recorded by Hugo Winterhalter. It was later arranged and recorded by Percy Faith and performed by his orchestra, enriching and improving on the original. In 1960, the Percy Faith version reached Number One on the \"\"Billboard\"\" Hot 100 chart for nine consecutive weeks, a record at that time. The theme has been covered in instrumental or vocal versions by numerous other"} +{"qid": "test2149", "pid": "7189480", "query": "when was theme from a summer place released", "answer": "1960", "passage": "\"Theme from A Summer Place\"\nadapted into several other songs. Most vocal versions of the theme have featured the Discant lyrics. However, some featured wordless vocals by singers who voiced the melody line. \"\"Theme from \"\"A Summer Place\"\"\"\" is frequently used as period background or soundtrack music in films and television programs set between 1959 and the mid-1960s. The theme has also become a ubiquitous representation of \"\"peaceful music\"\" and has been employed frequently in films, television shows and other popular culture to suggest peacefulness or in situations where inoffensive music is common (e.g. as stereotypical \"\"elevator music\"\"). It is also used for intentionally stereotypical"} +{"qid": "test215", "pid": "10556544", "query": "who sings too much time on my hands lyrics", "answer": "Tommy Shaw", "passage": "\"Too Much Time on My Hands\"\nToo Much Time on My Hands \"\"Too Much Time on My Hands\"\" is the second single released from Styx's 1981 triple-platinum album \"\"Paradise Theatre\"\". It was written and sung by Tommy Shaw, who also plays the lead guitar solo during the break in the song. The inspiration for its lyrics came from Shaw's experiences in a bar in Niles, Michigan, U.S. It reached No. 9 on the US \"\"Billboard\"\" Hot 100, No. 2 on the Top Rock Tracks chart, and No. 4 on the \"\"RPM\"\" Top Singles chart of Canada. The song enjoyed a small revival when \"\"The Tonight Show\"\""} +{"qid": "test215", "pid": "10556545", "query": "who sings too much time on my hands lyrics", "answer": "Tommy Shaw", "passage": "\"Too Much Time on My Hands\"\nhost Jimmy Fallon started talking about the music video after hearing the song on the radio in April 2016. This culminated with the episode on April 29, 2016 when Fallon showed a shot-by-shot reenactment of the video with him and guest Paul Rudd on the show. In this video Fallon plays the part of Dennis DeYoung and Rudd plays Tommy Shaw, with A.D. Miles as James Young, Seth Herzog as John Panozzo, and Gerard Bradford as Chuck Panozzo. Tommy Shaw has commented positively and said he was impressed with Fallon's vocals. Too Much Time on My Hands \"\"Too Much Time"} +{"qid": "test2150", "pid": "10048227", "query": "when did athens emerges as wealthiest greek city state", "answer": "the late 6th century BCE", "passage": "\"Economic history of Greece and the Greek world\"\n(oikos) organization, the cities’ legislation and the first economic institutions, the invention of coinage and the degree of monetization of the Greek economy, the trade and its crucial role in the characterization of the economy (modernism vs. primitivism), the invention of banking and the role of slavery in the production. Athens emerged as the dominant economic power in Greece around the late 6th century BCE, this was further bolstered by the finding of several veins of silver in the neighbouring mountains which further added to their wealth. They facilitated an efficient trading system with other Greek city states. Again, pots"} +{"qid": "test2151", "pid": "19348516", "query": "who sings war don't let me down", "answer": "American production duo The Chainsmokers", "passage": "\"Don't Let Me Down (The Chainsmokers song)\"\nDon't Let Me Down (The Chainsmokers song) \"\"Don't Let Me Down\"\" is a song by American production duo The Chainsmokers. The song features the vocals of American singer Daya, and was released on February 5, 2016, through Disruptor Records and Columbia Records. The song was written by Andrew Taggart, Emily Warren and Scott Harris. It was released on March 22, 2016, as the radio single follow-up to \"\"Roses\"\". \"\"Don't Let Me Down\"\" became both The Chainsmokers' and Daya's first top five single on the US \"\"Billboard\"\" Hot 100, peaking at number three. It also became The Chainsmokers' second consecutive top"} +{"qid": "test2151", "pid": "19348525", "query": "who sings war don't let me down", "answer": "American production duo The Chainsmokers", "passage": "\"Don't Let Me Down (The Chainsmokers song)\"\nthe song was used in a State Farm Insurance commercial. The song is featured as an exclusive content on \"\"Just Dance 2017\"\" 's subscription-based content, \"\"Just Dance Unlimited\"\". An instrumental version was used prominently as part of the BBC's 2017 UK General Election coverage. It was played during the swimsuit competition of \"\"Miss Universe 2016\"\". Don't Let Me Down (The Chainsmokers song) \"\"Don't Let Me Down\"\" is a song by American production duo The Chainsmokers. The song features the vocals of American singer Daya, and was released on February 5, 2016, through Disruptor Records and Columbia Records. The song was"} +{"qid": "test2152", "pid": "9740662", "query": "what color is the cue ball in pool", "answer": "white", "passage": "\"History of snooker\"\npool and pyramid pool. Life pool involved several colored balls used as both cue balls and object balls. In pyramid pool, there were 15 red balls and a white cue ball, and each player received one point per red ball potted. Along with the new games being developed, the table was taking steps toward its current state. Black pool was the next version created. Black pool was similar to pyramid pool, except that the black ball from life pool was added to the game and could be potted for more points. In 1875, at the British Army Officer's Mess in"} +{"qid": "test2152", "pid": "3036072", "query": "what color is the cue ball in pool", "answer": "white", "passage": "\"Billiard ball\"\nused. Some balls used in televised pool games are colored differently in order to make them distinguishable on television monitors. Specifically, the 4 ball is colored pink instead of dark purple, and the 12 is white with a pink stripe, to make it easier to distinguish their color from the black 8 ball, and similarly the 7 and 15 balls use a light tan color instead of a deep brown. Television was also the genesis of the cue ball with six red spots on its surface (known as a \"\"measle\"\" cue ball) so that placed on it is evident to"} +{"qid": "test2152", "pid": "39272", "query": "what color is the cue ball in pool", "answer": "white", "passage": "\"Cue sports\"\nnumbered, and the is usually red. In kaisa, five balls are used: the yellow (called the \"\"kaisa\"\" in Finnish), two red object balls, and the two white cue balls (usually differentiated by one cue ball having a dot or other marking on it and each of which serves as an object ball for the opponent). Carom billiards balls are larger than pool balls, having a diameter of 61.5 mm ( in), and come as a set of two cue balls (one colored or marked) and an object ball (or two object balls in the case of the game four-ball). American-style"} +{"qid": "test2152", "pid": "4262865", "query": "what color is the cue ball in pool", "answer": "white", "passage": "\"Pool (cue sports)\"\nof pocket billiards as the sport gained in popularity, and so outside the cue sports industry, which has long favored the more formal term \"\"pocket billiards\"\", the common name for the sport has remained \"\"pool\"\". The \"\"OxfordDictionaries.com\"\" definition no longer even provides the obsolete meaning found in the print edition, and refers only to the typical game \"\"using two sets [each] of seven coloured and numbered balls ... with one black ball and a white cue ball\"\" on a table with pockets. Pool is played on a six pocket table. Modern pool tables generally range in size from by ,"} +{"qid": "test2152", "pid": "3036080", "query": "what color is the cue ball in pool", "answer": "white", "passage": "\"Billiard ball\"\ncue balls, one for each player. Bumper pool requires four white and four red object balls, and two special balls, one red with a white spot and the other white with red spot; all are usually inch (approximately 52.5 mm) in diameter. Bar billiards uses six or seven white balls (depending on regional variations) and one red ball in diameter. Several brands of practice balls exist, which have systems of spots, stripes, differently colored halves and/or targeting rings. For example, Saluc markets several practice ball systems, including the Jim Rempe Training Ball, a marked with rings and targets on the"} +{"qid": "test2153", "pid": "7874326", "query": "who plays the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\nYo Gabba Gabba! Yo Gabba Gabba! was an American live action/puppet educational children's television show starring five costumed toys come to life and their friend DJ Lance Rock. The series premiered on Nick Jr. August 20, 2007 and ended on November 12, 2015. There is a single topic in each episode, e.g. \"\"Adventure\"\", \"\"Friends\"\", and \"\"Dance\"\", through songs and short storylines in the half-hour program. Additionally, the show teaches children life and social skills, such as sharing and trying new foods. It also encourages viewers to move along with and dance with the characters in the program. The show is"} +{"qid": "test2153", "pid": "10941216", "query": "who plays the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Lance Robertson\"\nwhen Schultz was co-creating the show \"\"Yo Gabba Gabba!\"\", Robertson was asked to serve as host. In addition to appearing on \"\"Yo Gabba Gabba!\"\", Robertson tours with The Aquabats performing kid-friendly DJ sets and dancing with the monster \"\"cast\"\" of the series. Lance Robertson Lance Robertson is a Los Angeles-based American musician, singer, DJ, and actor also known as \"\"DJ Lance Rock\"\" on the Nick Jr. show \"\"Yo Gabba Gabba!\"\". Originally from Columbus, Ohio, Robertson is a 1983 graduate of Hazelwood East High School. He was the vocalist for a local electronic band called My Other Self in the 1990s"} +{"qid": "test2153", "pid": "7874336", "query": "who plays the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\ntour of \"\"Yo Gabba Gabba!\"\" took place in Australia in May 2009. DJ Lance Rock, Muno, Foofa, Brobee, Toodee and Plex performed in Wollongong, Melbourne, Brisbane and Sydney with an indie house-band and secret special guests at each show. Additional tours in the United States and other countries have been performed throughout 2013. Shows have been toured including three presented by Kia Motors and a special Christmas one presented by Citi, Just Dance Kids & Toys for Tots. Nick Jr. Australia released a tour in 2009 called Yo Gabba Gabba: LIVE on Stage! On March 8, 2017, the first season"} +{"qid": "test2153", "pid": "7874339", "query": "who plays the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\nwon two Kidscreen Awards for \"\"Best Non-Animated or Mixed Series 2013\"\" and \"\"Best Music 2013\"\" \"\"Official sites\"\" \"\"Channels\"\" \"\"Others\"\" Yo Gabba Gabba! Yo Gabba Gabba! was an American live action/puppet educational children's television show starring five costumed toys come to life and their friend DJ Lance Rock. The series premiered on Nick Jr. August 20, 2007 and ended on November 12, 2015. There is a single topic in each episode, e.g. \"\"Adventure\"\", \"\"Friends\"\", and \"\"Dance\"\", through songs and short storylines in the half-hour program. Additionally, the show teaches children life and social skills, such as sharing and trying new foods."} +{"qid": "test2153", "pid": "7874335", "query": "who plays the characters in yo gabba gabba", "answer": "Brobee", "passage": "\"Yo Gabba Gabba!\"\ndo a mix-like song about what had occurred during the main segments. After it is finished, DJ Lance shouts \"\"YOOOO Gabba Gabba!\"\" once again, and then Brobee, Muno, Toodee, Foofa, and Plex turn back into toys. One-by-one, DJ Lance puts them back in the radio, closes the radio, and then walks off carrying it. The credits then roll. Four albums have been released featuring songs from the show performed by the cast and the \"\"Super Music Friends Show\"\" segment. ABC for Kids released a CD in 2010 titled \"\"Yo Gabba Gabba! Party In My Tummy\"\". The world premiere live concert"} +{"qid": "test2153", "pid": "17635044", "query": "who plays the characters in yo gabba gabba", "answer": "Foofa", "passage": "\"Taming Strange\"\nagrees. Kyle takes Ike to a live \"\"Yo Gabba Gabba!\"\" show, where Ike takes to the stage, and tells the characters that he wishes to \"\"tame Foofa's strange\"\", before removing his clothes and grinding against the character Foofa, much to the horror of the other characters and everyone in the audience. When Ike and Kyle are subsequently reprimanded for this, Ike says that Foofa is an attractive woman, and should not be limiting herself to children. Foofa shocks the others when she agrees with this, saying that she wishes to play to adult audiences, and add sex appeal to her"} +{"qid": "test2153", "pid": "6873224", "query": "who plays the characters in yo gabba gabba", "answer": "Muno", "passage": "\"Adam Deibert\"\nAdam Deibert Adam Deibert is an American musician and voice actor, known for his work as a member of The Aquabats from 1994 to 2004, where he played guitar, trumpet and keyboards under the stage name of Prince Adam, and as the bass guitarist for the indie rock band Bikeride, among other projects. He also played trumpet in the Orange County Ska band The Goodwin Club in the early nineties. Deibert worked as a composer for the Nick Jr. children's series \"\"Yo Gabba Gabba!\"\", as well as providing the voice for the character of Muno the Cyclops. An educated musician,"} +{"qid": "test2153", "pid": "18234048", "query": "who plays the characters in yo gabba gabba", "answer": "Muno", "passage": "\"Super Rad!\"\nvia extension cord. In one scene, The Bat Commander fights with a costumed monster then known as the \"\"Cyclopfenstein\"\" (a portmanteau of cyclops and Scott Klopfenstein, trumpeter for the ska punk band Reel Big Fish, who frequently toured with The Aquabats); the design for this creature would later be used to develop the character of Muno for the children's television series \"\"Yo Gabba Gabba!\"\", of which Jacobs co-created. Super Rad! \"\"Super Rad!\"\" is a song by American band The Aquabats which appears on their 1997 album \"\"The Fury of The Aquabats!\"\". Issued by The Aquabats' then labels Goldenvoice and Time"} +{"qid": "test2154", "pid": "1797409", "query": "name three large lakes other than the great lakes in the united states", "answer": "Lake of the Woods", "passage": "\"Lake of the Woods\"\nis fed by the Rainy River, Shoal Lake, Kakagi Lake and other smaller rivers. The lake drains into the Winnipeg River and then into Lake Winnipeg. Ultimately, its outflow goes north through the Nelson River to Hudson Bay. Lake of the Woods is over long and wide, and contains more than 14,552 islands and of shoreline. Lake of the Woods is also the sixth largest freshwater lake located (at least partially) in the United States, after the five Great Lakes. The lake's islands provide nesting habitats for the piping plover and large numbers of American white pelicans and as recently"} +{"qid": "test2154", "pid": "1741994", "query": "name three large lakes other than the great lakes in the united states", "answer": "Great Salt Lake", "passage": "\"Lake Bonneville\"\nProvo Level. Many of the unique geological characteristics of the Great Basin are due to the effects of the lake. At more than deep and more than in area, the lake was nearly as extensive as Lake Michigan and significantly deeper. With the change in climate, the lake began drying up, leaving Great Salt Lake, Utah Lake, Sevier Lake, Rush Lake, and Little Salt Lake as remnants. Lake Bonneville was named by the geologist G. K. Gilbert after Benjamin Louis Eulalie de Bonneville (1796–1878), a French-born officer in the United States Army, who was also a fur trapper, and explorer"} +{"qid": "test2154", "pid": "3866403", "query": "name three large lakes other than the great lakes in the united states", "answer": "Great Salt Lake", "passage": "\"Antelope Island State Park\"\ncauseway was opened. Antelope Island State Park is surrounded by the Great Salt Lake. The lake is the last remaining part of a vast inland Pleistocene sea, Lake Bonneville. At more than 1,000 feet (305 m) deep and more than in area, the lake was nearly as large as Lake Michigan and significantly deeper. With the change in climate, the lake began drying up, leaving Great Salt Lake, Utah Lake, Sevier Lake, and Rush Lake as remnants. As Lake Bonneville receded it left behind the Great Basin, which is made of narrow mountain ranges and broad valleys, known locally as"} +{"qid": "test2154", "pid": "4059490", "query": "name three large lakes other than the great lakes in the united states", "answer": "Great Salt Lake", "passage": "\"Great Salt Lake Desert\"\nand cold winters. The desert is an excellent example of a cold desert climate. The desert's elevation, 4,250 feet above sea level, makes temperatures cooler than lower elevation deserts, such as the Mojave. Due to the high elevation and aridity, temperatures drop sharply after sunset. Summer nights are comfortably cool. Winter highs are generally above freezing, and winter nights are bitterly cold, with temperatures often dropping well below freezing. Great Salt Lake Desert The Great Salt Lake Desert is a large dry lake in northern Utah, United States between the Great Salt Lake and the Nevada border which is noted"} +{"qid": "test2154", "pid": "2632820", "query": "name three large lakes other than the great lakes in the united states", "answer": "Great Salt Lake", "passage": "\"Pluvial lake\"\nlarge flat plains. Accumulated sediments show the variation in water level. During glacial periods, when the lake level is fairly high, mud sediments will settle out and be deposited. At times in between glaciers (interglacial), salt deposits may be present because of the arid climate and the evaporation of lakewater. Several pluvial lakes formed in what is now the southwestern United States during the glaciation of the late Pleistocene. One of these was Lake Bonneville in western Utah, which covered roughly . When Lake Bonneville was at its maximum water level, it was higher than the Great Salt Lake. Fresh"} +{"qid": "test2156", "pid": "3115843", "query": "where was the movie jeremiah johnson filmed at", "answer": "Utah", "passage": "\"Jeremiah Johnson (film)\"\nJeremiah Johnson (film) Jeremiah Johnson is a 1972 American western film directed by Sydney Pollack and starring Robert Redford as the title character and Will Geer as \"\"Bear Claw\"\" Chris Lapp. It is said to have been based partly on the life of the legendary mountain man John Jeremiah Johnson, recounted in Raymond Thorp and Robert Bunker's book \"\"Crow Killer: The Saga of Liver-Eating Johnson\"\" and Vardis Fisher's \"\"Mountain Man\"\". The script was by John Milius and Edward Anhalt; the film was shot at various locations in Redford's adopted home state of Utah. It was entered into the 1972 Cannes"} +{"qid": "test2156", "pid": "720265", "query": "where was the movie jeremiah johnson filmed at", "answer": "Utah", "passage": "\"Robert Redford\"\nthe financial proceeds of his acting success, starting with his salaries from \"\"Butch Cassidy and the Sundance Kid\"\" and \"\"Downhill Racer\"\", Redford bought an entire ski area on the east side of Mount Timpanogos northeast of Provo, Utah, called \"\"Timp Haven\"\", which was renamed \"\"Sundance\"\". Redford's wife Lola was from Utah and they had built a home in the area in 1963. Portions of the movie \"\"Jeremiah Johnson\"\" (1972), a film which is both one of Redford's favorites and one that has heavily influenced him, were shot near the ski area. The Sundance Film Festival caters to independent filmmakers in"} +{"qid": "test2158", "pid": "4976228", "query": "when do willow and tara get back together", "answer": "Seeing Red", "passage": "\"Seeing Red (Buffy the Vampire Slayer)\"\nbed together after their reconciliation, discussing the possibility that something is going on between Buffy and Spike. Tara confirms Willow's suspicions, adding that Buffy feels ashamed of her sexual relationship with Spike. Willow is hurt that she was never told, but simply puts it aside when she remembers what Buffy is going through. Willow goes to check on Buffy, but instead encounters Dawn in the hallway. When Tara appears wearing just a sheet, Dawn is thrilled to see they are back together. Buffy meanwhile has decided to take care of the Trio once and for all and breaks into their"} +{"qid": "test2158", "pid": "4976236", "query": "when do willow and tara get back together", "answer": "Seeing Red", "passage": "\"Seeing Red (Buffy the Vampire Slayer)\"\nthe overhanging roof above him. As the cops haul Jonathan and Andrew off to jail, the jetpack-less Jonathan realizes that the two were about to betray him. In jail, Andrew insinuates that he was in love with Warren. Meanwhile at the city limits, Spike boards his motorcycle and leaves Sunnydale. He promises that when he returns, things will be different. Willow and Tara get dressed and while hugging, Tara notices Xander and Buffy in the backyard together. Buffy and Xander begin to discuss Buffy's relationship with Spike, and the two make up and reaffirm their friendship. As the two hug,"} +{"qid": "test2158", "pid": "484735", "query": "when do willow and tara get back together", "answer": "Seeing Red", "passage": "\"Willow Rosenberg\"\ntheir union. Their relationship is sanitized and unthreatening to male viewers. When the series moved broadcast networks from the WB to UPN in 2001, some of the restrictions were relaxed. Willow and Tara are shown in some scenes to be \"\"intensely sexual\"\", such as in the sixth season episode \"\"Once More, with Feeling\"\" where it is visually implied that Willow performs cunnilingus on Tara. When Willow and Tara reconcile, they spend part of the episode in \"\"Seeing Red\"\" unclothed in bed, covered by red sheets. Willow is more demonstrative in the beginning of her relationship with Tara. Where in her"} +{"qid": "test2159", "pid": "577756", "query": "who performed the first c section in 1794", "answer": "Dr. Jesse Bennett", "passage": "\"Caesarean section\"\nFrom the well-developed nature of the procedures employed, European observers concluded they had been employed for some time. James Barry carried out the first successful caesarean by a European doctor in Africa in Cape Town, while posted there between 1817 and 1828. The first successful caesarean section to be performed in the United States took place in Mason County, Virginia (now Mason County, West Virginia), in 1794. The procedure was performed by Dr. Jesse Bennett on his wife Elizabeth. The patron saint of caesarean section is Caesarius of Africa, a young deacon martyred at Terracina, who has replaced and Christianized"} +{"qid": "test2159", "pid": "14513337", "query": "who performed the first c section in 1794", "answer": "Dr. Jesse Bennett", "passage": "\"Jesse Bennett\"\nJesse Bennett Dr. Jesse Bennett (July 10, 1769 —July 13, 1842) was the first American physician to perform a successful Caesarean section, which he performed on his own wife at the birth of their only child on January 14, 1794. Bennett was born in Frankford, Philadelphia, on July 13, 1769. He earned a B.A. Degree at Philadelphia College before apprenticing with Dr. Benjamin Rush and attending Medical School. In April 1791, he received the title Doctor of Medicine, at the same time he received his M. A. degree. Dr. Bennett married Miss Elizabeth Hogg in 1793 and settled in Rockingham"} +{"qid": "test216", "pid": "11120393", "query": "who has hosted the most fifa world cups", "answer": "Italy", "passage": "\"2013 FIFA Confederations Cup\"\n2013 FIFA Confederations Cup The 2013 FIFA Confederations Cup was the ninth FIFA Confederations Cup, which was held in Brazil from 15 June to 30 June 2013 as a prelude to the 2014 FIFA World Cup. The most recent winners of the six continental championships appeared in the tournament, along with hosts Brazil and UEFA Euro 2012 runners-up Italy, who qualified because the Euro 2012 winners, Spain, had also won the most recent FIFA World Cup in 2010 thus securing a spot in the tournament. Host nation, Brazil successfully defended their title with a 3–0 win over Spain in the"} +{"qid": "test216", "pid": "4732581", "query": "who has hosted the most fifa world cups", "answer": "Mexico", "passage": "\"Sports in Canada\"\nin 2015. The country has also hosted four age-grade World Cups—the FIFA U-17 World Cup in 1987 (when the age limit was 16 instead of the current 17), the inaugural FIFA U-20 Women's World Cup in 2002 (when the age limit was 19 instead of 20), the FIFA U-20 World Cup in 2007, and the U-20 Women's World Cup for a second time in 2014. Canada will host the 2026 FIFA World Cup sharing with Mexico and United States. The sport of bowling takes several forms in Canada, including ten-pin and lawn bowling, but most notably Canada has its own"} +{"qid": "test216", "pid": "8209975", "query": "who has hosted the most fifa world cups", "answer": "France", "passage": "France\nand pétanque. France has hosted events such as the 1938 and 1998 FIFA World Cups, the 2007 Rugby World Cup, and will host the 2023 Rugby World Cup. The country also hosted the 1960 European Nations' Cup, UEFA Euro 1984, and UEFA Euro 2016. The Stade de France in Saint-Denis is France's largest stadium and was the venue for the 1998 FIFA World Cup and 2007 Rugby World Cup finals. Since 1903, France hosts the annual Tour de France, the most famous road bicycle race in the world. France is famous for its 24 Hours of Le Mans sports car"} +{"qid": "test216", "pid": "4224883", "query": "who has hosted the most fifa world cups", "answer": "Brazil", "passage": "\"FIFA Club World Cup\"\nFIFA Club World Cup The FIFA Club World Cup is an international men's association football competition organised by the \"\"Fédération Internationale de Football Association\"\" (FIFA), the sport's global governing body. The tournament officially assigns the world title. The competition was first contested in 2000 as the FIFA Club World Championship. It was not held between 2001 and 2004 due to a combination of factors, most importantly the collapse of FIFA's marketing partner International Sport and Leisure. Since 2005, the competition has been held every year, and has been hosted by Brazil, Japan, the United Arab Emirates and Morocco. The FIFA"} +{"qid": "test216", "pid": "7584333", "query": "who has hosted the most fifa world cups", "answer": "Brazil", "passage": "\"FIFA World Cup hosts\"\nTelegraph\"\" reported that Morocco had received the most votes, but South Africa was awarded the tournament instead. Bids: FIFA continued its continental rotation procedure by earmarking the 2014 World Cup for South America. FIFA initially indicated that it might back out of the rotation concept, but later decided to continue it through the 2014 host decision, after which it was dropped. Colombia had expressed interest in hosting the 2014 World Cup, but withdrew undertaking the 2011 FIFA U-20 World Cup. Brazil also expressed interest in hosting the World Cup. CONMEBOL, the South American Football Federation, indicated their preference for Brazil"} +{"qid": "test216", "pid": "10547379", "query": "who has hosted the most fifa world cups", "answer": "Mexico", "passage": "\"Football in Mexico\"\nOmar Bravo, Aaron Galindo, Héctor Moreno, Francisco Javier Rodríguez, Francisco Fonseca, Javier Hernández (commonly referred to as \"\"Chicharito\"\"), Pablo Barrera, Efraín Juárez, Jesús Corona, Héctor Herrera, Miguel Layún, Raúl Jiménez, Marco Fabian and Diego Reyes the most recents. Mexico's men's national team have achieved other significant feats such as the most CONCACAF Gold Cups with 10 trophies. Mexico has hosted two FIFA World Cups, in 1970 and 1986. Estadio Azteca is the biggest stadium in the world to have hosted two World Cup finals and is one of the largest stadiums in the world. Mexico will co-host the 2026 FIFA"} +{"qid": "test216", "pid": "1375511", "query": "who has hosted the most fifa world cups", "answer": "Italy", "passage": "\"1978 FIFA World Cup\"\n1978 FIFA World Cup The 1978 FIFA World Cup, the 11th staging of the FIFA World Cup, quadrennial international football world championship tournament, was held in Argentina between 1 and 25 June. The Cup was won by the Argentine hosts, who defeated the Netherlands 3–1 in the final, after extra time. The final was held at River Plate's home stadium, Estadio Monumental, in the Argentine capital of Buenos Aires. This win was the first World Cup title for Argentina, who became the fifth team (after Uruguay, Italy, England and West Germany) to be both hosts and world champions. Argentina, the"} +{"qid": "test216", "pid": "1375541", "query": "who has hosted the most fifa world cups", "answer": "Italy", "passage": "\"1978 FIFA World Cup\"\n1978 FIFA World Cup The 1978 FIFA World Cup, the 11th staging of the FIFA World Cup, quadrennial international football world championship tournament, was held in Argentina between 1 and 25 June. The Cup was won by the Argentine hosts, who defeated the Netherlands 3–1 in the final, after extra time. The final was held at River Plate's home stadium, Estadio Monumental, in the Argentine capital of Buenos Aires. This win was the first World Cup title for Argentina, who became the fifth team (after Uruguay, Italy, England and West Germany) to be both hosts and world champions. Argentina, the"} +{"qid": "test216", "pid": "20335275", "query": "who has hosted the most fifa world cups", "answer": "Germany", "passage": "\"England 2006 FIFA World Cup bid\"\nCup bid, called for humility with England's bid claiming they \"\"must not fall victim to arrogance\"\" and that lessons had been learned from the unsuccessful attempt to host the 2006 competition. Anson stated that \"\"the tone of this campaign has to be different. England 2006 FIFA World Cup bid The England 2006 FIFA World Cup bid was the Football Association's unsuccessful bid for the right to host the 2006 FIFA World Cup. The other official bids came from Brazil, South Africa, Morocco and successful bidder Germany. England hosted the 1966 FIFA World Cup and had the campaign been successful, England"} +{"qid": "test216", "pid": "17724729", "query": "who has hosted the most fifa world cups", "answer": "France", "passage": "\"2018 FIFA U-20 Women's World Cup\"\nIn principle, FIFA preferred the 2019 FIFA Women's World Cup and the 2018 FIFA U-20 Women's World Cup to be hosted by the same member association, but if circumstances required, FIFA reserved the right to award the hosting of the events separately. The following countries made official bids for hosting the 2018 FIFA U-20 Women's World Cup and the 2019 FIFA Women's World Cup by submitting their documents by 31 October 2014: The following countries withdrew their bid for hosting the 2018 FIFA U-20 Women's World Cup and the 2019 FIFA Women's World Cup: France were awarded the hosting rights"} +{"qid": "test216", "pid": "4513283", "query": "who has hosted the most fifa world cups", "answer": "France", "passage": "\"2001 FIFA Confederations Cup\"\n2001 FIFA Confederations Cup The 2001 FIFA Confederations Cup was the fifth FIFA Confederations Cup and the third to be organised by FIFA. It was also the first in which the original hosts, Saudi Arabia, did not participate (they were the nation who founded the tournament, previously known as the King Fahd Cup). The tournament was played from 30 May to 10 June 2001, and co-hosted by South Korea and Japan, who were also hosts for the 2002 FIFA World Cup finals. It was won by France, beating hosts Japan 1–0, with a goal from Patrick Vieira. By winning the"} +{"qid": "test216", "pid": "3355791", "query": "who has hosted the most fifa world cups", "answer": "Mexico", "passage": "\"Canadian Soccer Association\"\nthe inaugural FIFA U-19 Women's World Championship in 2002 and winning silver in front of 47,784 fans at Commonwealth Stadium in Edmonton, Alberta. The association has hosted several FIFA tournaments: the FIFA U-16 World Championship (1987), the FIFA U-20 Women's World Cup (2002, 2014), the FIFA U-20 World Cup (2007), the FIFA Women's World Cup (2015), and will co-host the FIFA World Cup (2026) along with Mexico and United States. Canada has three professional teams competing in Major League Soccer (Division I) and two professional teams competing in the United Soccer League (Division II). However, those teams are sanctioned by"} +{"qid": "test216", "pid": "20335265", "query": "who has hosted the most fifa world cups", "answer": "Germany", "passage": "\"England 2006 FIFA World Cup bid\"\nEngland 2006 FIFA World Cup bid The England 2006 FIFA World Cup bid was the Football Association's unsuccessful bid for the right to host the 2006 FIFA World Cup. The other official bids came from Brazil, South Africa, Morocco and successful bidder Germany. England hosted the 1966 FIFA World Cup and had the campaign been successful, England would have become the fourth nation to host the World Cup for a second time. The country had also hosted Euro 96. England had unsuccessfully attempted to host the 1990 FIFA World Cup and 1998 FIFA World Cup. Amongst the bid submission delegation"} +{"qid": "test216", "pid": "15417808", "query": "who has hosted the most fifa world cups", "answer": "Italy", "passage": "\"2008 FIFA Beach Soccer World Cup qualification (UEFA)\"\n2008 FIFA Beach Soccer World Cup qualification (UEFA) The 2008 FIFA Beach Soccer World Cup qualifiers for (UEFA) was the first FIFA Beach Soccer World Cup qualification championship for Europe, held in May 2008, in Benidorm, Spain. Hosts Spain won the championship, with Portugal finishing second and Russia winning the third place play of to finish third, beating Italy who finished fourth. The four nations moved on to play in the 2008 FIFA Beach Soccer World Cup in Marseille, France from July 17 - July 27. France qualified as the fifth European nation, being the hosts of the world cup."} +{"qid": "test216", "pid": "2016615", "query": "who has hosted the most fifa world cups", "answer": "Mexico", "passage": "CONCACAF\nhistory, despite the expansion of the competition to 32 teams at the 1998 World Cup. Canada, Mexico, and the United States have won the bidding to host the 2026 FIFA World Cup, competing against a Moroccan bid. The following table shows the CONCACAF representatives at each edition of the FIFA Women's World Cup, sorted by number of appearances. Mexico has finished runners up twice and 3rd place three times at the Copa América making El Tri the most successful non-CONMEBOL nation. The US national team have reached the semifinal stage in the South American tournament twice, followed by Honduras who"} +{"qid": "test2160", "pid": "5386523", "query": "who sang in the movie i walk the line", "answer": "Joaquin Phoenix", "passage": "\"The Blackwood Brothers\"\neach other numerous times. Their song \"\"I Was There When It Happened\"\" can be heard singing on the radio towards the beginning of the movie \"\"Walk the Line (2005)\"\"—when Johnny Cash (played by Joaquin Phoenix) was in Memphis. In the film and according to Cash's autobiography, while auditioning to earn a spot on the Sun Records label in his early career, Cash performed gospel songs that the Blackwoods sang with regularity. They also appeared on \"\"The Johnny Cash Show\"\" and performed in 1971. At the end of the 2008 biopic film \"\"W.\"\", the Blackwood's rendition of \"\"\"\"Winging My Way Back"} +{"qid": "test2161", "pid": "16282499", "query": "where did aeneas go when he left carthage", "answer": "Sicily", "passage": "Palinurus\nPalinurus Palinurus, in Roman mythology and especially Virgil's \"\"Aeneid\"\", is the helmsman of Aeneas's ship. Later authors used him as a general type of navigator or guide. In Book 3, which tells of the Trojans' wanderings after The Fall of Troy, he is singled out as an experienced navigator. In Book 5, when the Trojans have left Carthage, he advises Aeneas to forestall sailing to Italy and to wait out a terrible storm on Sicily, where they hold the funeral games honoring Aeneas's father, Anchises. After they leave Sicily for Italy, Palinurus, at the helm of Aeneas's ship and leading"} +{"qid": "test2161", "pid": "8269", "query": "where did aeneas go when he left carthage", "answer": "Sicily", "passage": "Aeneas\njourney to come. However, the messenger god Mercury was sent by Jupiter and Venus to remind Aeneas of his journey and his purpose, compelling him to leave secretly. When Dido learned of this, she uttered a curse that would forever pit Carthage against Rome, an enmity that would culminate in the Punic Wars. She then committed suicide by stabbing herself with the same sword she gave Aeneas when they first met. After the sojourn in Carthage, the Trojans returned to Sicily where Aeneas organized funeral games to honor his father, who had died a year before. The company traveled on"} +{"qid": "test2161", "pid": "16282508", "query": "where did aeneas go when he left carthage", "answer": "Sicily", "passage": "Palinurus\nThe Swedish band Trettioåriga Kriget has a song about Palinurus, titled \"\"Behold the pilot\"\" on their 2016 album \"\"Seaside air\"\". Palinurus Palinurus, in Roman mythology and especially Virgil's \"\"Aeneid\"\", is the helmsman of Aeneas's ship. Later authors used him as a general type of navigator or guide. In Book 3, which tells of the Trojans' wanderings after The Fall of Troy, he is singled out as an experienced navigator. In Book 5, when the Trojans have left Carthage, he advises Aeneas to forestall sailing to Italy and to wait out a terrible storm on Sicily, where they hold the funeral"} +{"qid": "test2161", "pid": "479366", "query": "where did aeneas go when he left carthage", "answer": "Sicily", "passage": "Aeneid\ntrans. Fitzgerald) is a possible invocation to Hannibal. Looking back from the deck of his ship, Aeneas sees the smoke of Dido's funeral pyre and knows its meaning only too clearly. Nevertheless, destiny calls, and the Trojan fleet sails on to Italy. Book 5 takes place on Sicily and centers on the funeral games that Aeneas organizes for the anniversary of his father's death. Aeneas and his men have left Carthage for Sicily, where Aeneas organizes celebratory games—a boat race, a foot race, a boxing match, and an archery contest. In all those contests, Aeneas is careful to reward winners"} +{"qid": "test2163", "pid": "2859922", "query": "when was the last time the military drafted", "answer": "1973", "passage": "\"Draft lottery (1969)\"\nDraft lottery (1969) On December 1, 1969 the Selective Service System of the United States conducted two lotteries to determine the order of call to military service in the Vietnam War for men born from January 1, 1944 to December 31, 1950. These lotteries occurred during a period of conscription in the United States that lasted from 1947 to 1973. It was the first time a lottery system had been used to select men for military service since 1942. The reason for the lottery of 1969 was to address perceived inequities in the draft system as it existed previously, and"} +{"qid": "test2163", "pid": "11894213", "query": "when was the last time the military drafted", "answer": "1973", "passage": "\"Ronnie McAda\"\nRonnie McAda Ronnie McAda (born December 6, 1973) is a former American football quarterback for the United States Military Academy. He was drafted with the final pick of the 1997 NFL Draft by the Green Bay Packers, thus earning the distinction of being Mr. Irrelevant. In his senior season, he led Army past Navy and to the Independence Bowl. He was the last player drafted in the National Football League from the U.S. Military Academy until Caleb Campbell was drafted in the 2008 NFL Draft by the Detroit Lions. As a senior, McAda set a school record for passing yards."} +{"qid": "test2164", "pid": "3859176", "query": "where was the capital of the habsburg empire located", "answer": "Prague", "passage": "\"Habsburg Monarchy\"\nHabsburg Monarchy The Habsburg Monarchy () - also \"\"Habsburg Empire\"\", \"\"Austrian Monarchy\"\" or \"\"Danube Monarchy\"\" - is an unofficial appellation among historians for the countries and provinces that were ruled by the between 1526 and 1780 and then by the successor branch of Habsburg-Lorraine until 1918. The Monarchy was a composite state composed of territories within and outside the Holy Roman Empire, united only in the person of the monarch. The dynastic capital was Vienna, except from 1583 to 1611, when it was moved to Prague. From 1804 to 1867 the Habsburg Monarchy was formally unified as the Austrian Empire,"} +{"qid": "test2164", "pid": "4765347", "query": "where was the capital of the habsburg empire located", "answer": "Prague", "passage": "\"Kingdom of Bohemia\"\nfrom Duchy of Bohemia, later ruled by the House of Luxembourg, the Jagiellonian dynasty, and since 1526 by the House of Habsburg and its successor house Habsburg-Lorraine. Numerous kings of Bohemia were also elected Holy Roman Emperors and the capital Prague was the imperial seat in the late 14th century, and at the end of the 16th and beginning of the 17th centuries. After the dissolution of the Holy Roman Empire in 1806, the territory became part of the Habsburg Austrian Empire, and subsequently the Austro-Hungarian Empire from 1867. Bohemia retained its name and formal status as a separate Kingdom"} +{"qid": "test2164", "pid": "1275073", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Flag of Austria\"\nby the Austrian capital Vienna from the late 13th century onwards. Since the days of Rudolph of Habsburg and the 1283 Treaty of Rheinfelden, the combination of red-white-red was widely considered to be the Austrian (later also Inner Austrian) colours used by the ruling Habsburg dynasty. However, the \"\"national flag\"\" (in a modern sense) of the Austrian Habsburg Monarchy, like the later Austrian Empire and the Cisleithanian part of Austria-Hungary until 1918, was black-yellow. These were the family colours of the Imperial House of Habsburg, and were themselves in part derived from the banner of the Holy Roman Empire. Beginning"} +{"qid": "test2164", "pid": "5655172", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Battle of Zenta\"\ntreasure. As an immediate consequence, the Ottoman Empire lost control over Banat, while in the long run, the Habsburg victory at Zenta was the last decisive step that forced the Ottoman Empire into the Treaty of Karlowitz (1699), ending the Ottoman control of large parts of Central Europe. After the relief of the Habsburg capital in the Battle of Vienna of 1683, Austria enjoyed great success and by 1688 Belgrade and most of the Pannonian Plain was occupied by the Habsburgs. But as the war with the French demanded more troops, and the new grand vizier reorganized and reinvigorated the"} +{"qid": "test2164", "pid": "4319608", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Great Turkish War\"\nlater in the month. The Peloponnese was under complete Venetian control, and only the fort of Monemvasia (Malvasia) in the southeast continued to resist, holding out until 1690. After a few years of peace, the Ottoman Empire attacked the Habsburg Empire again. The Turks almost captured the Empire's capital of Vienna, but king of Poland John III Sobieski led a Christian alliance that defeated them in the Battle of Vienna, which shook the Ottoman Empire's hegemony in south-eastern Europe. A new Holy League was initiated by Pope Innocent XI and encompassed the Holy Roman Empire (headed by Habsburg Austria), joined"} +{"qid": "test2164", "pid": "7179362", "query": "where was the capital of the habsburg empire located", "answer": "Prague", "passage": "\"Josef Fiala\"\nthe court of Friedrich Wilhelm II, The king honored Josef by giving him his own family crest, which still exists today. The heritage of this particular Fiala family stems back to Bohemia (currently the Czech Republic), which at the time of Stefan Antoni Fiala was concurrently moved to Poland. Bohemia was a kingdom in the Holy Roman Empire and subsequently a province in the Habsburgs’ Austrian Empire. As Prague was the capital city of the Holy Roman Empire at that time, it is believed that one of the Habsburg members of the Royal family made a decree and named a"} +{"qid": "test2164", "pid": "17109873", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Mozart's nationality\"\nboth German and non-German speaking. Despite this expansion, the Habsburg dynasty retained an Austrian identity, maintaining their capital in Vienna and referring to their aggregated lands as \"\"the Austrian Monarchy\"\". The word \"\"Austria\"\" was sometimes used as an informal cover term for all of the lands ruled by the Habsburgs. The power of the Habsburgs was such that they came to dominate the emperorship of the Holy Roman Empire: starting in 1452, the \"\"Electors\"\" (the handful of princes who held the right to elect the next emperor) virtually always chose the Habsburg monarch for the emperorship whenever the office became"} +{"qid": "test2164", "pid": "8532351", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Archduchy of Austria\"\nof German Austria. Archduchy of Austria The Archduchy of Austria () was a major principality of the Holy Roman Empire and the nucleus of the Habsburg Monarchy. With its capital at Vienna, the archduchy was centered at the Empire's southeastern periphery. The Archduchy developed out of the Bavarian Margraviate of Austria, elevated to the Duchy of Austria according to the 1156 \"\"Privilegium Minus\"\" by Emperor Frederick Barbarossa. The House of Habsburg came to the Austrian throne in Vienna in 1282 and in 1453 Emperor Frederick III, also Austrian ruler, officially adopted the archducal title. From the 15th century onwards, all"} +{"qid": "test2164", "pid": "8532343", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Archduchy of Austria\"\nArchduchy of Austria The Archduchy of Austria () was a major principality of the Holy Roman Empire and the nucleus of the Habsburg Monarchy. With its capital at Vienna, the archduchy was centered at the Empire's southeastern periphery. The Archduchy developed out of the Bavarian Margraviate of Austria, elevated to the Duchy of Austria according to the 1156 \"\"Privilegium Minus\"\" by Emperor Frederick Barbarossa. The House of Habsburg came to the Austrian throne in Vienna in 1282 and in 1453 Emperor Frederick III, also Austrian ruler, officially adopted the archducal title. From the 15th century onwards, all Holy Roman Emperors"} +{"qid": "test2164", "pid": "19902975", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Battle of Csorna\"\nthem to start to retreat towards Komárom. Battle of Csorna The Battle of Csorna, fought on 13 June 1849, was one of the battles which took place in the Summer Campaign of the Hungarian War of Independence from 1848 to 1849, fought between the Habsburg Empire and the Hungarian Revolutionary Army. The Hungarian army was led by Colonel György Kmety, and the imperial army by Major General Franz Wyss. After liberation of the Hungarian capitals from the siege of Buda, the Hungarian commanders elaborated a plan to continue the Hungarian advance towards the Habsburg capital Vienna, before the arrival of"} +{"qid": "test2164", "pid": "19902927", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Battle of Csorna\"\nBattle of Csorna The Battle of Csorna, fought on 13 June 1849, was one of the battles which took place in the Summer Campaign of the Hungarian War of Independence from 1848 to 1849, fought between the Habsburg Empire and the Hungarian Revolutionary Army. The Hungarian army was led by Colonel György Kmety, and the imperial army by Major General Franz Wyss. After liberation of the Hungarian capitals from the siege of Buda, the Hungarian commanders elaborated a plan to continue the Hungarian advance towards the Habsburg capital Vienna, before the arrival of the 200,000-strong army, sent by the Russian"} +{"qid": "test2164", "pid": "3515386", "query": "where was the capital of the habsburg empire located", "answer": "Vienna", "passage": "\"Ottoman wars in Europe\"\ntook both the most important royal ex-capital, Székesfehérvár, and the ex-seat of the cardinal, Esztergom. However, the army of 35–40,000 men was not enough for Suleiman to mount another attack on Vienna. A temporary truce was signed between the Habsburg and Ottoman Empires in 1547, which was soon disregarded by the Habsburgs. In the major but moderately successful campaign of 1552, two armies took the eastern part of central Hungary, pushing the borders of the Ottoman Empire to the second (inner) line of northern \"\"végvár\"\"s (border castles), which Hungary originally built as defence against an expected second Mongol invasion—hence, afterwards,"} +{"qid": "test2165", "pid": "20220895", "query": "who plays general hux in the last jedi", "answer": "Domhnall Gleeson", "passage": "\"General Hux\"\nOrder's ends.\"\" General Hux General Armitage Hux is a fictional character in the \"\"Star Wars\"\" franchise. First introduced in the 2015 film \"\"\"\", he is portrayed by Irish actor Domhnall Gleeson. He is a ruthless commander in a power struggle with Kylo Ren for the First Order leadership, and being exceeded only by Supreme Leader Snoke. The character first featured in \"\"The Force Awakens\"\" media and merchandising, and returned in the film's sequel, \"\"\"\". Hux was born on Arkanis and was rumored to have been sired from an affair between his father, Commandant Brendol Hux of the Arkanis Academy, and"} +{"qid": "test2165", "pid": "20220888", "query": "who plays general hux in the last jedi", "answer": "Domhnall Gleeson", "passage": "\"General Hux\"\nGeneral Hux General Armitage Hux is a fictional character in the \"\"Star Wars\"\" franchise. First introduced in the 2015 film \"\"\"\", he is portrayed by Irish actor Domhnall Gleeson. He is a ruthless commander in a power struggle with Kylo Ren for the First Order leadership, and being exceeded only by Supreme Leader Snoke. The character first featured in \"\"The Force Awakens\"\" media and merchandising, and returned in the film's sequel, \"\"\"\". Hux was born on Arkanis and was rumored to have been sired from an affair between his father, Commandant Brendol Hux of the Arkanis Academy, and a kitchen"} +{"qid": "test2165", "pid": "13556532", "query": "who plays general hux in the last jedi", "answer": "Domhnall Gleeson", "passage": "\"Domhnall Gleeson\"\ntheir third collaboration together. \"\"Ex Machina\"\" was met with critical acclaim for its performances, screenplay, direction, and visual effects. In the romantic period drama \"\"Brooklyn\"\", he appeared in a supporting role as a romantic interest of Saoirse Ronan's character, a young Irish woman living in Brooklyn in the 1950s. Gleeson was announced to be a part of the \"\"Star Wars\"\" sequel trilogy in April 2014. The first instalment, \"\"\"\", was released in December 2015. Gleeson plays the ruthless General Hux, commander of the First Order's Starkiller Base. Throughout the film, Hux is vying for power with First Order commander Kylo"} +{"qid": "test2165", "pid": "13556537", "query": "who plays general hux in the last jedi", "answer": "Domhnall Gleeson", "passage": "\"Domhnall Gleeson\"\nby Wilson. It will be his second collaboration with director Lenny Abrahamson, following \"\"Frank\"\". Gleeson will play a supporting role in the upcoming crime drama \"\"The Kitchen\"\" (2019) as a Vietnam War veteran who becomes a hitman for the Irish Mob. He will reprise his role as General Hux once more in \"\"\"\" (2019), the third and final installment of the \"\"Star Wars\"\" sequel trilogy. Gleeson resides in Dublin, Ireland, his place of birth. Gleeson shares a love of the English football team Aston Villa with his father Brendan. He described the team's FA Cup semifinal win over Liverpool at"} +{"qid": "test2166", "pid": "18729507", "query": "what is the longest panic at the disco song title", "answer": "Bohemian Rhapsody", "passage": "\"Hallelujah (Panic! at the Disco song)\"\nApril 20, 2015. At the Shorty Awards, the band also performed the single \"\"Miss Jackson\"\". The band also performed the single at the 2015 Alternative Press Music Awards along with a cover of \"\"Bohemian Rhapsody\"\" by Queen. An audio video was uploaded to Fueled By Ramen's YouTube channel featuring racially diverse iOS preaching emojis. On July 7, 2015, a music video was released for the song. The video is inspired by the game Monument Valley. As of April 2018, the music video has surpassed 50 million views. Panic! at the Disco Additional Personnel Hallelujah (Panic! at the Disco song) \"\"Hallelujah\"\""} +{"qid": "test2167", "pid": "19795923", "query": "when were the winnie the pooh books written", "answer": "1926", "passage": "\"Winnie-the-Pooh Meets the Queen\"\nWinnie-the-Pooh Meets the Queen Winnie-the-Pooh Meets the Queen (e-book edition published as Winnie-the-Pooh and the Royal Birthday) is a 2016 children's book written to celebrate the 90th birthdays of both the fictional character Winnie-the-Pooh and Queen Elizabeth II in 2016. The Queen celebrated her 90th Official Birthday on 11 June, although her actual birthday is 21 April 1926. The first \"\"Winnie-the-Pooh\"\" book, written by A. A. Milne, was published in October 1926. This original story imagines a meeting between Pooh and Queen Elizabeth at Buckingham Palace. The text was written by Jane Riordan while illustrations were by Mark Burgess in"} +{"qid": "test2167", "pid": "2129563", "query": "when were the winnie the pooh books written", "answer": "1926", "passage": "\"Winnie-the-Pooh (book)\"\nWinnie-the-Pooh (book) Winnie-the-Pooh (1926) is the first volume of stories about Winnie-the-Pooh, written by A. A. Milne and illustrated by E. H. Shepard. It is followed by \"\"The House at Pooh Corner\"\". The book focuses on the adventures of a teddy bear called Winnie-the-Pooh and his friends Piglet, a small toy pig; Eeyore, a toy donkey; Owl, a live owl; and Rabbit, a live rabbit. The characters of Kanga, a toy kangaroo, and her son Roo are introduced later in the book, in the chapter entitled \"\"In Which Kanga and Baby Roo Come to the Forest and Piglet has a"} +{"qid": "test2167", "pid": "2129569", "query": "when were the winnie the pooh books written", "answer": "1926", "passage": "\"Winnie-the-Pooh (book)\"\nthe character from The Royal Literary Fund, whom the estate of Milne had sold the rights to. The $350M purchase gave Disney full rights to the franchise until copyright expires in 2026. Winnie-the-Pooh (book) Winnie-the-Pooh (1926) is the first volume of stories about Winnie-the-Pooh, written by A. A. Milne and illustrated by E. H. Shepard. It is followed by \"\"The House at Pooh Corner\"\". The book focuses on the adventures of a teddy bear called Winnie-the-Pooh and his friends Piglet, a small toy pig; Eeyore, a toy donkey; Owl, a live owl; and Rabbit, a live rabbit. The characters of"} +{"qid": "test2167", "pid": "12472140", "query": "when were the winnie the pooh books written", "answer": "1924", "passage": "Winnie-the-Pooh\nWinnie-the-Pooh Winnie-the-Pooh, also called Pooh Bear, is a fictional anthropomorphic teddy bear created by English author A. A. Milne. The first collection of stories about the character was the book \"\"Winnie-the-Pooh\"\" (1926), and this was followed by \"\"The House at Pooh Corner\"\" (1928). Milne also included a poem about the bear in the children's verse book \"\"When We Were Very Young\"\" (1924) and many more in \"\"Now We Are Six\"\" (1927). All four volumes were illustrated by E. H. Shepard. The Pooh stories have been translated into many languages, including Alexander Lenard's Latin translation, \"\"Winnie ille Pu\"\", which was first"} +{"qid": "test2167", "pid": "3322710", "query": "when were the winnie the pooh books written", "answer": "1928", "passage": "\"The House at Pooh Corner\"\nChapter 2 was also released from Disney as a book, under the title \"\"Winnie the Pooh meets Tigger\"\". In 1968 Jefferson Airplane referenced the book in their song \"\"The House at Pooneil Corners\"\", a surrealistic depiction of global nuclear war co-written by Paul Kantner and Marty Balin, ending with the line \"\"Which is why a Pooh is poohing in the sun\"\". The House at Pooh Corner The House at Pooh Corner (1928) is the second volume of stories about Winnie-the-Pooh, written by A. A. Milne and illustrated by E. H. Shepard. It is notable for the introduction of the character"} +{"qid": "test2167", "pid": "12472150", "query": "when were the winnie the pooh books written", "answer": "1924", "passage": "Winnie-the-Pooh\n\"\"When We Were Very Young\"\" (6 November 1924). Winnie-the-Pooh first appeared by name on 24 December 1925, in a Christmas story commissioned and published by the London newspaper \"\"The Evening News\"\". It was illustrated by J. H. Dowd. The first collection of Pooh stories appeared in the book \"\"Winnie-the-Pooh\"\". The \"\"Evening News\"\" Christmas story reappeared as the first chapter of the book. At the beginning, it explained that Pooh was in fact Christopher Robin's Edward Bear, who had been renamed by the boy. He was renamed after a black bear at London Zoo called Winnie who got her name from"} +{"qid": "test2167", "pid": "1348453", "query": "when were the winnie the pooh books written", "answer": "1926", "passage": "\"Ashdown Forest\"\nas the setting for the \"\"Winnie-the-Pooh\"\" stories, written by A. A. Milne. The first book, \"\"Winnie-the-Pooh\"\", was published in 1926 with illustrations by EH Shepard. The second book, \"\"The House at Pooh Corner\"\", also illustrated by Shepard, was published in 1928. These hugely popular stories were set in and inspired by Ashdown Forest. Alan Milne, a writer who was born and lived in London, bought a country retreat for himself and his family at Cotchford Farm, near Hartfield, East Sussex, in 1925. This old farmhouse was situated on the banks of a tributary of the River Medway and lay just"} +{"qid": "test2167", "pid": "9131098", "query": "when were the winnie the pooh books written", "answer": "1926", "passage": "\"Harry Colebourn\"\nWhile Colebourn served three years in France, attaining the rank of major, he kept Winnie at the London Zoo to which he eventually donated her. It was at the London Zoo that A. A. Milne and his son Christopher Robin Milne encountered Winnie. Christopher was so taken with her that he named his teddy bear after her, which became the inspiration for Milne's fictional character in the books \"\"Winnie-the-Pooh\"\" (1926) and \"\"The House at Pooh Corner\"\" (1928). Milne also included several poems about Winnie-the-Pooh in the children’s poetry books \"\"When We Were Very Young\"\" and \"\"Now We Are Six\"\". All"} +{"qid": "test2168", "pid": "920227", "query": "where does the electron transport chain pumps protons", "answer": "mitochondrial membrane", "passage": "\"Proton pump\"\nalgae. This proton pump is driven by electron transport and catalyzes the transfer of electrons from plastoquinol to plastocyanin. The reaction is analogous to the reaction catalyzed by Complex III (cytochrome bc1) of the mitochondrial electron transport chain. This enzyme helps to establish a transmembrane difference of proton electrochemical potential that the ATP synthase of chloroplasts then uses to synthesize ATP. Complex IV (EC 1.9.3.1) (also referred to as cytochrome c oxidase), is a proton pump driven by electron transport. This enzyme is a large transmembrane protein complex found in bacteria and inner mitochondrial membrane of eukaryotes. It receives an"} +{"qid": "test2168", "pid": "918783", "query": "where does the electron transport chain pumps protons", "answer": "across a membrane", "passage": "\"Electron transport chain\"\nuse) and related quinones such as \"\"menaquinone\"\". Another name for ubiquinone is \"\"Coenzyme Q10.\"\" A \"\"proton pump\"\" is any process that creates a proton gradient across a membrane. Protons can be physically moved across a membrane; this is seen in mitochondrial \"\"Complexes I\"\" and \"\"IV\"\". The same effect can be produced by moving electrons in the opposite direction. The result is the disappearance of a proton from the cytoplasm and the appearance of a proton in the periplasm. Mitochondrial \"\"Complex III\"\" uses this second type of proton pump, which is mediated by a quinone (the Q cycle). Some dehydrogenases are"} +{"qid": "test2168", "pid": "918764", "query": "where does the electron transport chain pumps protons", "answer": "mitochondrial membrane", "passage": "\"Electron transport chain\"\npass electrons to a more electronegative acceptor, which in turn donates these electrons to another acceptor, a process that continues down the series until electrons are passed to oxygen, the most electronegative and terminal electron acceptor in the chain. Passage of electrons between donor and acceptor releases energy, which is used to generate a proton gradient across the mitochondrial membrane by actively \"\"pumping\"\" protons into the intermembrane space, producing a thermodynamic state that has the potential to do work. This entire process is called oxidative phosphorylation, since ADP is phosphorylated to ATP using the energy of hydrogen oxidation in many"} +{"qid": "test2168", "pid": "18644122", "query": "where does the electron transport chain pumps protons", "answer": "mitochondrial membrane", "passage": "COX8A\nof the mitochondrial respiratory chain. It is a multi-subunit enzyme complex that couples the transfer of electrons from cytochrome \"\"c\"\" to molecular oxygen and contributes to a proton electrochemical gradient across the inner mitochondrial membrane. The mitochondrially-encoded subunits perform the electron transfer of proton pumping activities. The functions of the nuclear-encoded subunits are unknown but they may play a role in the regulation and assembly of the complex. COX8A is a subunit of cytochrome c oxidase and its function is important for the efficacy of complex IV. Mutations in COX8A can affect complex IV of the electron transport chain, resulting"} +{"qid": "test2168", "pid": "918792", "query": "where does the electron transport chain pumps protons", "answer": "across a membrane", "passage": "\"Electron transport chain\"\nof protons across a membrane, producing a proton gradient. The proton gradient is used to produce useful work. About 30 work units are produced per electron transport. Electron transport chain An electron transport chain (ETC) is a series of complexes that transfer electrons from electron donors to electron acceptors via redox (both reduction and oxidation occurring simultaneously) reactions, and couples this electron transfer with the transfer of protons (H ions) across a membrane. This creates an electrochemical proton gradient that drives the synthesis of adenosine triphosphate (ATP), a molecule that stores energy chemically in the form of highly strained bonds."} +{"qid": "test2168", "pid": "918765", "query": "where does the electron transport chain pumps protons", "answer": "mitochondrial membrane", "passage": "\"Electron transport chain\"\nsteps. A small percentage of electrons do not complete the whole series and instead directly leak to oxygen, resulting in the formation of the free-radical superoxide, a highly reactive molecule that contributes to oxidative stress and has been implicated in a number of diseases and aging. Energy obtained through the transfer of electrons down the ETC is used to pump protons from the mitochondrial matrix into the intermembrane space, creating an electrochemical proton gradient (ΔpH) across the inner mitochondrial membrane (IMM). This proton gradient is largely but not exclusively responsible for the mitochondrial membrane potential (ΔΨ). It allows ATP synthase"} +{"qid": "test2168", "pid": "5535494", "query": "where does the electron transport chain pumps protons", "answer": "across a membrane", "passage": "Photoheterotroph\nthey use a bacteriochlorophyll-based reaction center, or they use a bacteriorhodopsin. The chlorophyll-based mechanism is similar to that used in photosynthesis, where light excites the molecules in a reaction center and causes a flow of electrons through an electron transport chain (ETS). This flow of electrons through the proteins causes hydrogen ions to be pumped across a membrane. The energy stored in this proton gradient is used to drive ATP synthesis. Unlike in photoautotrophs, the electrons flow only in a cyclic pathway: electrons released from the reaction center flow through the ETS and return to the reaction center. They are"} +{"qid": "test2169", "pid": "9469929", "query": "who played tom on as the world turns", "answer": "Scott Holmes", "passage": "\"Tom Hughes (As the World Turns)\"\norder to start a family). Tom and Margo are last seen in their new condo, looking back at their lives and looking forward to the future. Tom Hughes (As the World Turns) Thomas Christopher \"\"Tom\"\" Hughes is a fictional character on the American soap opera \"\"As the World Turns\"\". He was played by a number of actors during the character's 49-year tenure on the show, the longest-running actor being Scott Holmes, who took over the role July 3, 1987, and remained until ATWT's cancellation in 2010. He is an attorney in Oakdale. The character of Tom Hughes has been played"} +{"qid": "test2169", "pid": "9469869", "query": "who played tom on as the world turns", "answer": "Scott Holmes", "passage": "\"Tom Hughes (As the World Turns)\"\nTom Hughes (As the World Turns) Thomas Christopher \"\"Tom\"\" Hughes is a fictional character on the American soap opera \"\"As the World Turns\"\". He was played by a number of actors during the character's 49-year tenure on the show, the longest-running actor being Scott Holmes, who took over the role July 3, 1987, and remained until ATWT's cancellation in 2010. He is an attorney in Oakdale. The character of Tom Hughes has been played by many young actors before being aged in 1969. Tom Hughes was born onscreen in May 1961 to Bob and Lisa Hughes. His parents divorced when"} +{"qid": "test2169", "pid": "6964806", "query": "who played tom on as the world turns", "answer": "Scott Holmes", "passage": "\"Tom Hughes and Margo Montgomery\"\nmarried through ATWT's final episode in 2010. The role of Margo has been played by four different actresses. Tom Hughes and Margo Montgomery Thomas \"\"Tom\"\" Hughes and Margo Montgomery Hughes are fictional characters and a supercouple on the American CBS daytme drama \"\"As the World Turns\"\". For most of the last 20 years of the show, Tom was played by Scott Holmes and Margo was played by Ellen Dolan. On internet message boards, the couples is often referred by the portmanteau \"\"Tomargo\"\" (for Tom and Margo). Tom and Margo first became involved during the couple's investigation of Mr. Big, who"} +{"qid": "test2169", "pid": "6964799", "query": "who played tom on as the world turns", "answer": "Scott Holmes", "passage": "\"Tom Hughes and Margo Montgomery\"\nTom Hughes and Margo Montgomery Thomas \"\"Tom\"\" Hughes and Margo Montgomery Hughes are fictional characters and a supercouple on the American CBS daytme drama \"\"As the World Turns\"\". For most of the last 20 years of the show, Tom was played by Scott Holmes and Margo was played by Ellen Dolan. On internet message boards, the couples is often referred by the portmanteau \"\"Tomargo\"\" (for Tom and Margo). Tom and Margo first became involved during the couple's investigation of Mr. Big, who eventually held them captive in his mansion for several weeks. At the time, Tom was involved with Margo's"} +{"qid": "test2169", "pid": "16374715", "query": "who played tom on as the world turns", "answer": "Justin Deas", "passage": "\"History of As the World Turns\"\nwas pairing Lisa and Bob's strait-laced son Tom with the sluttish Margo. Justin Deas and Margaret Colin thrilled viewers with their witty banter and subtle eroticism (Colin and Deas apparently enjoyed their work—they married in the early 1980s and remain married to this day). Bob Hughes surprised everyone by marrying an Italian woman, named Miranda Marlowe (Elaine Princi) who was working with James Stenbeck and a man only known as \"\"Mr. Big\"\" (actual name Bernard Ignatius Grayson; played by a dwarf named, Brent Collins) in smuggling drugs and stolen art work. Margo and Tom would be caught up in the"} +{"qid": "test217", "pid": "3146733", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "\"Lion's mane jellyfish\"\none. Two distinct taxa, however, occur together in at least the eastern North Atlantic, with the blue jellyfish (\"\"Cyanea lamarckii\"\" Péron & Lesueur, 1810) differing in color (blue, not red) and smaller size (10–20 cm diameter, rarely 35 cm). Populations in the western Pacific around Japan are sometimes distinguished as \"\"Cyanea nozakii\"\", or as a subspecies, \"\"C. c. nozakii\"\". In 2015, Russian researchers announced a possible sister species, \"\"Cyanea tzetlinii\"\" found in the White Sea, but this has not yet been recognized by other authoritative databases such as WoRMS or ITIS. Lion's mane jellyfish (\"\"Cyanea capillata\"\") are named for their"} +{"qid": "test217", "pid": "13792740", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "\"Blue jellyfish\"\nBlue jellyfish Cyanea lamarckii, also known as the blue jellyfish or bluefire jellyfish, is a species of jellyfish in the family Cyaneidae. Populations in the western Pacific around Japan are sometimes distinguished as \"\"Cyanea nozakii\"\" or \"\"Cyanea capillata nozakii\"\". This species is found in the pelagic zone off the west coast of Scotland, the North Sea and the Irish Sea, sometimes with the more common Lion's Mane Jellyfish, (\"\"Cyanea capillata\"\"). \"\"C. lamarckii\"\" has a blue or yellow tone and grows to approximately 10 to 20 cm across, but specimens can grow to 30 cm. In Scandinavian seas this species rarely"} +{"qid": "test217", "pid": "13792742", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "\"Blue jellyfish\"\na similar way to the life cycle of the moon jellyfish. Blue jellyfish Cyanea lamarckii, also known as the blue jellyfish or bluefire jellyfish, is a species of jellyfish in the family Cyaneidae. Populations in the western Pacific around Japan are sometimes distinguished as \"\"Cyanea nozakii\"\" or \"\"Cyanea capillata nozakii\"\". This species is found in the pelagic zone off the west coast of Scotland, the North Sea and the Irish Sea, sometimes with the more common Lion's Mane Jellyfish, (\"\"Cyanea capillata\"\"). \"\"C. lamarckii\"\" has a blue or yellow tone and grows to approximately 10 to 20 cm across, but specimens"} +{"qid": "test217", "pid": "2546968", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "\"Rhode Island Sound\"\nTwo certain species of jellyfish are currently having a population explosion within these waters. \"\"Mnemiopsis leidyi\"\", commonly known as sea walnut comb jellies, and the Lion's mane jellyfish (\"\"Cyanea capillata\"\"), are disrupting habitats with their invasive behavior in the Rhode Island Sound waters. Rhode Island Sound Rhode Island Sound is a strait of water, off the coast of the U.S. state of Rhode Island at mouth of Narragansett Bay. It forms the eastern extension of Block Island Sound and opens out the Atlantic Ocean between Block Island and Martha's Vineyard. Geographically, Rhode Island Sound is the eastward extension of Block"} +{"qid": "test217", "pid": "604332", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "Jellyfish\nthe hydromedusae of many species that have just been released from their parent polyps; some of these live only a few minutes before shedding their gametes in the plankton and then dying, while others will grow in the plankton for weeks or months. The hydromedusae \"\"Cladonema radiatum\"\" and \"\"Cladonema californicum\"\" are also very small, living for months, yet never growing beyond a few mm in bell height and diameter. The lion's mane jellyfish, \"\"Cyanea capillata\"\", was long-cited as the largest jellyfish, and arguably the longest animal in the world, with fine, thread-like tentacles that may extend up to long (though"} +{"qid": "test217", "pid": "2829882", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "\"The Adventure of the Lion's Mane\"\nthe bathing pond to test a theory he has formed which might explain McPherson's death. As he is about to leave, Murdoch arrives, helped in by Stackhurst, who is afraid that Murdoch might be dying; he fainted twice in pain. He has the same wounds on him that McPherson had. In great agony, he passes out, but finally recovers. At the bathing pond, Holmes spots the murderer: a Lion's Mane Jellyfish (\"\"Cyanea capillata\"\"), a deadly creature about which Holmes has read. Holmes takes a rock and kills it. Murdoch is exonerated. It turns out that, given his former relationship with"} +{"qid": "test217", "pid": "12768281", "query": "which is the lion's mane jellyfish's species within its genus", "answer": "capillata", "passage": "\"Largest organisms\"\nriver-dweller is and almost . Before amniotes became the dominant tetrapods, several giant amphibian proto-tetrapods existed and were certainly the dominant animals in their ecosystems. The largest known was the crocodile-like \"\"Prionosuchus\"\", which reached a length of . The largest known species of sea sponge is the giant barrel sponge, \"\"Xestospongia muta\"\". These massively built sponges can reach in height and can be of about the same number of feet across at the thickest part of the \"\"body\"\". Some of these creatures have been estimated to be over 2,400 years of age. The lion's mane jellyfish (\"\"Cyanea capillata\"\") is the"} +{"qid": "test2170", "pid": "15217819", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Theme from Mission: Impossible\"\n(2015) Japanese guitarist MIYAVI covered the theme. Theme from Mission: Impossible \"\"Theme from \"\"Mission: Impossible\"\"\"\" is the theme tune of the TV series \"\"\"\" (1966–1973). The theme was written and composed by Argentine composer Lalo Schifrin and has since gone on to appear in several other works of the \"\"Mission: Impossible\"\" franchise, including the , the and the video game series. The theme is written in a time signature which Schifrin has jokingly explained as being \"\"for people who have five legs\"\". However, it should be noted that Schifrin started from the Morse Code for M.I. which is \"\"_ _"} +{"qid": "test2170", "pid": "15217813", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Theme from Mission: Impossible\"\nTheme from Mission: Impossible \"\"Theme from \"\"Mission: Impossible\"\"\"\" is the theme tune of the TV series \"\"\"\" (1966–1973). The theme was written and composed by Argentine composer Lalo Schifrin and has since gone on to appear in several other works of the \"\"Mission: Impossible\"\" franchise, including the , the and the video game series. The theme is written in a time signature which Schifrin has jokingly explained as being \"\"for people who have five legs\"\". However, it should be noted that Schifrin started from the Morse Code for M.I. which is \"\"_ _ ..\"\"; if a dot is one beat"} +{"qid": "test2170", "pid": "4447725", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Lalo Schifrin\"\nas introducing compositions of his own, in which tango is fused with jazz elements. In 1997, the composer founded Aleph Records. He also wrote the main theme for \"\"\"\". Schifrin made a cameo appearance in \"\"Red Dragon\"\" (2002) as an orchestra conductor. He is also widely sampled in hip-hop and trip-hop songs, such as Heltah Skeltah's \"\"Prowl\"\" or Portishead's \"\"Sour Times\"\". Both songs sample Schifrin's \"\"Danube Incident\"\", one of many themes he composed for specific episodes of the \"\"Mission: Impossible\"\" TV series. On April 23, 2007, Lalo Schifrin presented a concert of film music for the Festival du Film Jules"} +{"qid": "test2170", "pid": "636005", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Mission: Impossible\"\nmembers—particularly electronics expert Barney Collier—making technical preparations for the mission, usually to the accompaniment of another easily recognizable tune called \"\"The Plot.\"\" Lalo Schifrin also wrote a theme piece for each main character and the sound track for each episode incorporated variations of these throughout. Even when an episode's score is credited to some other composer, Desilu's music supervisor Jack Hunsacker would re-edit it, adding Schifrin melodies from the library. The series had great impact on film and TV music. Before \"\"Mission: Impossible,\"\" a common compliment was along the lines of \"\"the score worked very well but never got in"} +{"qid": "test2170", "pid": "15217814", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Theme from Mission: Impossible\"\nand a dash is one and a half beats, then this gives a bar of five beats, exactly matching the underlying rhythm. The original single release peaked at No. 41 on the \"\"Billboard\"\" Hot 100 and 19 on the magazine's Adult Contemporary chart in 1967 (Leonard Nimoy, before playing Paris in \"\"Mission Impossible\"\" in 1969, also covered the theme two years earlier). In 2010, a fictionalized account of Lalo Schifrin's creation of the \"\"Mission: Impossible\"\" tune was featured in a Lipton TV commercial aired in a number of countries around the world. Side A: Side B: In 1996, the theme"} +{"qid": "test2170", "pid": "636004", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Mission: Impossible\"\nfreeze frame. At the start of 1968, when Paramount took over from Desilu, the same clips were shown during the closing credits across episodes; later seasons eschewed that approach, featuring a freeze frame of the hand lighting the fuse. \"\"Mission: Impossible\"\" is still recognized for its innovative use of music. Composer Lalo Schifrin wrote several distinctive pieces for the series. The visual cuts in the main title sequence were timed to the beats and measures of the theme tune—written in (unusual) time—while an animated burning fuse moved across the screen. Most episodes included fairly long dialogue-free sequences showing the team"} +{"qid": "test2170", "pid": "15217818", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Theme from Mission: Impossible\"\nthe \"\"Theme from \"\"Mission: Impossible\"\"\"\". The arrangement is true to the Lalo Schifrin original, but also employs a passage with a liberal use of the Piano Sonato in C by Wolfgang Amadeus Mozart K. 545 first movement and a self-composed passage to end the piece. The arrangement was introduced with a music video having a comedic cloak and dagger theme. Two official copies of the video have garnered nearly 5 million views on Lindsey Stirling's YouTube channel and over 10 million views on The Piano Guys YouTube channel as of August 2015. For the promotion of the fifth film \"\"\"\""} +{"qid": "test2170", "pid": "16353528", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Music from Mission: Impossible\"\nMusic from Mission: Impossible Music from Mission Impossible is an album featuring music composed and conducted by Lalo Schifrin recorded in 1967 and released on the Dot label. The music on this album is rerecorded and extended scores that were originally commissioned for the TV series \"\"\"\". Schifrin was awarded two Grammys at the 10th Grammy Awards for his work on the first series (Best Instrumental Theme and Best Original Score for a Motion Picture or TV Show). The album peaked at 47 on the Billboard Albums Chart and 11 on the magazine's jazz chart in 1968. The Allmusic review"} +{"qid": "test2170", "pid": "16353529", "query": "who wrote the theme song for mission impossible", "answer": "Lalo Schifrin", "passage": "\"Music from Mission: Impossible\"\nstates: \"\"Any fan of the show should try and find this album at a used music shop, but more specifically fans of Lalo Schifrin (and that could be quite a few, as he remained uncredited on some of his TV themes) should definitely check the album out. It's a good buy if you can find it\"\". \"\"All compositions by Lalo Schifrin except as indicated\"\" Music from Mission: Impossible Music from Mission Impossible is an album featuring music composed and conducted by Lalo Schifrin recorded in 1967 and released on the Dot label. The music on this album is rerecorded and"} +{"qid": "test2171", "pid": "2368334", "query": "where is the slide placed on the microscope", "answer": "stage", "passage": "\"Microscope slide\"\nglass that is placed over the specimen. Slides are held in place on the microscope's stage by slide clips, slide clamps or a cross-table which is used to achieve precise, remote movement of the slide upon the microscope's stage (such as in an automated / computer operated system, or where touching the slide with fingers is inappropriate either due to the risk of contamination or lack of precision) The origin of the concept was pieces of ivory or bone, containing specimens held between disks of transparent mica, that would \"\"slide\"\" into the gap between the stage and the objective. These"} +{"qid": "test2171", "pid": "1103892", "query": "where is the slide placed on the microscope", "answer": "stage", "passage": "\"Optical microscope\"\nobjective which supports the specimen being viewed. In the center of the stage is a hole through which light passes to illuminate the specimen. The stage usually has arms to hold slides (rectangular glass plates with typical dimensions of 25×75 mm, on which the specimen is mounted). At magnifications higher than 100× moving a slide by hand is not practical. A mechanical stage, typical of medium and higher priced microscopes, allows tiny movements of the slide via control knobs that reposition the sample/slide as desired. If a microscope did not originally have a mechanical stage it may be possible to"} +{"qid": "test2171", "pid": "17605339", "query": "where is the slide placed on the microscope", "answer": "stage", "passage": "\"Imaging particle analysis\"\nto as a digital microscope, although many systems using that name are used only for displaying an image on a monitor. The sample is prepared on a microscope slide which is placed on the microscope stage. Once the sample has been focused on, then an image can be acquired and displayed on the monitor. If it is a digital camera or a frame grabber is present, the image can now be saved in digital format, and image processing algorithms can be used to isolate particles in the field of view and measure them. In static image acquisition only one field"} +{"qid": "test2172", "pid": "16600311", "query": "wolf of wall street number of f words", "answer": "569", "passage": "\"The Wolf of Wall Street (2013 film)\"\na Christmas 2013 release. Paramount officially confirmed the Christmas Day 2013 release date on October 29, 2013, with a running time of 165 minutes. On November 25, 2013, the length was announced to be 179 minutes. It was officially rated R for \"\"sequences of strong sexual content, graphic nudity, drug use and language throughout, and for some violence\"\". Scorsese had to edit sexual content and nudity to avoid an NC-17 rating. By different counts, the film contains between 506 and 569 uses of the word \"\"fuck\"\", and currently holds the record for the most uses of the word in a"} +{"qid": "test2175", "pid": "394220", "query": "who has participated in the most super bowls", "answer": "New England Patriots", "passage": "\"Super Bowl XVI\"\nman to play in a Super Bowl and then be a head coach in a Super Bowl. Gregg played in Super Bowls I and II as a member of the Green Bay Packers. Tom Flores was on the Kansas City Chiefs' roster in Super Bowl IV and coached in Super Bowl XV. However, Flores did not play in Super Bowl IV. This was the first Super Bowl to feature two first-time participants since Super Bowl III (there has been only one since, Super Bowl XX between the Chicago Bears and New England Patriots). This was also the only Super Bowl"} +{"qid": "test2178", "pid": "14301200", "query": "who starred in the remake of true grit", "answer": "Hailee Steinfeld", "passage": "\"True Grit (2010 film)\"\nbased on 263 reviews, with an average score of 8.4/10 and with its consensus stating: \"\"Girded by strong performances from Jeff Bridges, Matt Damon, and newcomer Hailee Steinfeld, and lifted by some of the Coens' most finely tuned, unaffected work, \"\"True Grit\"\" is a worthy companion to the Charles Portis book.\"\" Metacritic gave the film an average score of 80/100 based on 41 reviews from mainstream critics, indicating \"\"generally favorable reviews\"\". Total Film gave the film a five-star review (denoting 'outstanding'): \"\"This isn't so much a remake as a masterly re-creation. Not only does it have the drop on the"} +{"qid": "test2178", "pid": "1438973", "query": "who starred in the remake of true grit", "answer": "Matt Damon", "passage": "\"Matt Damon\"\nand received a score of 53% on Rotten Tomatoes and ambivalent reception from critics. He has appeared as a guest star in an episode of \"\"Arthur\"\", titled \"\"The Making of Arthur\"\", as himself. During season 5 of \"\"30 Rock\"\", he appeared as guest star in the role of Liz Lemon's boyfriend in the episodes \"\"I Do Do\"\", \"\"The Fabian Strategy\"\", \"\"Live Show\"\", and \"\"Double-edged Sword\"\". Damon's 2010 projects included Clint Eastwood's \"\"Hereafter\"\" and the Coen brothers' remake of the 1969 John Wayne-starring Western \"\"True Grit\"\". In 2011, he starred in \"\"The Adjustment Bureau\"\", \"\"Contagion\"\", and \"\"We Bought a Zoo\"\". In"} +{"qid": "test2178", "pid": "1406522", "query": "who starred in the remake of true grit", "answer": "Hailee Steinfeld", "passage": "\"True Grit (1969 film)\"\nRobert Duvall, Dennis Hopper, Jeff Corey and Strother Martin. The title song, sung by Campbell, was also Oscar-nominated. \"\"True Grit\"\" was adapted again in 2010, starring Jeff Bridges, Matt Damon, and Hailee Steinfeld. Frank Ross is murdered by his hired hand, Tom Chaney. Ross's young daughter, Mattie, travels to Fort Smith, Arkansas, where she hires aging U.S. Marshal Reuben \"\"Rooster\"\" J. Cogburn to bring Chaney in, raising his fee by shrewdly horse trading with Colonel Stonehill. Mattie has heard that Cogburn has \"\"true grit.\"\" She gives him a payment to track and capture Chaney, who has taken up with outlaw"} +{"qid": "test2178", "pid": "14301203", "query": "who starred in the remake of true grit", "answer": "Hailee Steinfeld", "passage": "\"True Grit (2010 film)\"\nWe don't want to take anyone else's.\"\" The film was released on DVD and Blu-ray on June 7, 2011. True Grit (2010 film) True Grit is a 2010 American Revisionist Western film directed, written, produced, and edited by the Coen brothers and executively produced by Steven Spielberg. It is the second adaptation of Charles Portis' 1968 novel of the same name, which was previously filmed in 1969 starring John Wayne and Glen Campbell. This version stars Hailee Steinfeld as Mattie Ross and Jeff Bridges as Deputy U.S. Marshal Reuben J. \"\"Rooster\"\" Cogburn, along with Matt Damon, Josh Brolin, and Barry"} +{"qid": "test2178", "pid": "14301178", "query": "who starred in the remake of true grit", "answer": "Hailee Steinfeld", "passage": "\"True Grit (2010 film)\"\nTrue Grit (2010 film) True Grit is a 2010 American Revisionist Western film directed, written, produced, and edited by the Coen brothers and executively produced by Steven Spielberg. It is the second adaptation of Charles Portis' 1968 novel of the same name, which was previously filmed in 1969 starring John Wayne and Glen Campbell. This version stars Hailee Steinfeld as Mattie Ross and Jeff Bridges as Deputy U.S. Marshal Reuben J. \"\"Rooster\"\" Cogburn, along with Matt Damon, Josh Brolin, and Barry Pepper. Feisty 14 year-old farm girl Mattie Ross (Steinfeld) hires Cogburn, a boozy, trigger-happy lawman (Bridges) after an outlaw"} +{"qid": "test2178", "pid": "1406544", "query": "who starred in the remake of true grit", "answer": "Hailee Steinfeld", "passage": "\"True Grit (1969 film)\"\nTheir adaptation focuses more on Mattie's point of view, as in the novel, and is more faithful to its Oklahoma setting. Hailee Steinfeld portrays Mattie Ross, Jeff Bridges plays Rooster Cogburn, and the cast also includes Matt Damon as La Boeuf and Josh Brolin as Tom Chaney. True Grit (1969 film) True Grit is a 1969 American western film directed by Henry Hathaway and starring Kim Darby as Mattie Ross and John Wayne as U.S. Marshal Rooster Cogburn. It is the first film adaptation of Charles Portis' 1968 novel of the same name. The screenplay was written by Marguerite Roberts."} +{"qid": "test2178", "pid": "10336215", "query": "who starred in the remake of true grit", "answer": "Hailee Steinfeld", "passage": "\"True Grit (novel)\"\nwas considered a needless reworking of the plot of \"\"True Grit\"\" combined with elements of \"\"The African Queen\"\". A made-for-television sequel aired in 1978 entitled \"\"\"\" and starring Warren Oates and Lisa Pelikan. The TV-movie featured more adventures of Rooster Cogburn and Mattie Ross. In 2010, Joel and Ethan Coen released another film adaptation of the novel, also entitled \"\"True Grit\"\", with thirteen-year-old actress Hailee Steinfeld as Mattie Ross, veteran actor Jeff Bridges playing Rooster Cogburn, Matt Damon as LaBoeuf, Barry Pepper as Lucky Ned, and Josh Brolin as Tom Chaney. Their version, focusing on Mattie's point of view, follows"} +{"qid": "test2179", "pid": "438223", "query": "how many students attend university of texas at austin", "answer": "over 50,000", "passage": "\"University of Texas at Austin\"\nUniversity of Texas at Austin The University of Texas at Austin (also known as UT Austin, or UT) is a public research university in Austin, Texas. It was founded in 1883 and is the flagship institution of the University of Texas System. UT Austin was inducted into the Association of American Universities in 1929, becoming only the third university in the American South to be elected. The institution has the nation's eighth-largest single-campus enrollment, with over 50,000 undergraduate and graduate students and over 24,000 faculty and staff. A Public Ivy, it is a major center for academic research, with research"} +{"qid": "test218", "pid": "11523244", "query": "who was the buccaneers qb when they won the superbowl", "answer": "Brad Johnson", "passage": "\"2008 Dallas Cowboys season\"\nfrom their embarrassing road loss to the Rams, the Cowboys went home for a Week 8 duel with the Tampa Bay Buccaneers. With QB Tony Romo still nursing an injured pinkie, QB Brad Johnson got the start against the team that he helped win Super Bowl XXXVII. In the first quarter, Dallas trailed early as Buccaneers kicker Matt Bryant got a pair of 36-yard field goals. In the second quarter, the 'Boys took the lead as kicker Nick Folk got a 38-yard field goal, along with Johnson completing a 2-yard TD pass to WR Roy Williams. In the third quarter,"} +{"qid": "test2181", "pid": "18349109", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Taekwondo at the 2014 Asian Games – Women's 67 kg\"\nThị Nguyên from Vietnam. Liu Qing won Macau's first ever taekwondo medal at the Asian Games. Taekwondo at the 2014 Asian Games – Women's 67 kg The women's welterweight (67 kilograms) event at the 2014 Asian Games took place on 2 October 2014 at Ganghwa Dolmens Gymnasium, Incheon, South Korea. A total of thirteen competitors from thirteen different countries competed in this event, limited to fighters whose body weight was less than 67 kilograms. Guo Yunfei of China defended her 2010 title and won the gold medal after beating Lee Won-jin of South Korea in the gold medal match by"} +{"qid": "test2181", "pid": "20756905", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"China at the 2018 Asian Games\"\nreceived medals. Swimmers who participated in the heats only and received medals.
Swimmers who participated in the heats only and received medals. Head coach: Petar Porobić Head coach: Gong Dali China has prepared 14 weightlifters to compete at the Games, but the athletes not allowed to compete due to the International Weightlifting Federation’s (IWF) ban on the country. China took 6 medals (2 gold, 1 silver, and 3 bronze) at the competition. The gold medals won by Zhou Feng who was a gold medalist in the freestyle −75 kg 2014 Asian Games, and the other one won by Zhou Qian."} +{"qid": "test2181", "pid": "459591", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Winter Olympic Games\"\nThe success of Asian countries stood in stark contrast to the under-performing Russian team, with Vancouver marking a high point for medals won by Asian countries. In 1992 the Asian countries had won fifteen medals, three of which were gold. In Vancouver the total number of medals won by athletes from Asia had increased to thirty-one, with eleven of them being gold. The rise of Asian nations in Winter Olympics sports is due in part to the growth of winter sports programmes and the interest in winter sports in nations such as South Korea, Japan and China. Sochi, Russia, was"} +{"qid": "test2181", "pid": "18349108", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Taekwondo at the 2014 Asian Games – Women's 67 kg\"\nTaekwondo at the 2014 Asian Games – Women's 67 kg The women's welterweight (67 kilograms) event at the 2014 Asian Games took place on 2 October 2014 at Ganghwa Dolmens Gymnasium, Incheon, South Korea. A total of thirteen competitors from thirteen different countries competed in this event, limited to fighters whose body weight was less than 67 kilograms. Guo Yunfei of China defended her 2010 title and won the gold medal after beating Lee Won-jin of South Korea in the gold medal match by the score of 2–1. The bronze medal was shared by Liu Qing of Macau and Hà"} +{"qid": "test2181", "pid": "15135307", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Swimming at the 2010 Asian Games – Men's 50 metre breaststroke\"\nSwimming at the 2010 Asian Games – Men's 50 metre breaststroke The men's 50 metre breaststroke event at the 2010 Asian Games took place on 14 November 2010 at Guangzhou Aoti Aquatics Centre. There were 34 competitors from 26 countries who took part in this event. Five heats were held, with most containing the maximum number of swimmers (eight). The heat in which a swimmer competed did not formally matter for advancement, as the swimmers with the top eight times from the entire field qualified for the finals. Xie Zhi from China won the gold medal, Asian record holder Kosuke"} +{"qid": "test2181", "pid": "18287450", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Wushu at the 2014 Asian Games – Men's sanda 56 kg\"\nWushu at the 2014 Asian Games – Men's sanda 56 kg The men's sanda 56 kilograms competition at the 2014 Asian Games in Incheon, South Korea was held from 20 September to 24 September at the Ganghwa Dolmens Gymnasium. A total of fourteen competitors from fourteen different countries competed in this event, limited to fighters whose body weight was less than 56 kilograms. Zhao Fuxiang from China won the gold medal after beating Bùi Trường Giang of Vietnam in gold medal bout 2–0, Zhao won both periods by the same score of 5–0. The bronze medal was shared by Francisco"} +{"qid": "test2181", "pid": "18287474", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Wushu at the 2014 Asian Games – Men's sanda 70 kg\"\nWushu at the 2014 Asian Games – Men's sanda 70 kg The men's sanda 70 kilograms competition at the 2014 Asian Games in Incheon, South Korea was held from 21 September to 24 September at the Ganghwa Dolmens Gymnasium. A total of nine competitors from nine different countries (NOCs) competed in this event, limited to fighters whose body weight was less than 70 kilograms. Zhang Kun from China won the gold medal after beating his opponent Yoo Sang-hoon of South Korea in gold medal bout 2–0, Zhang won both periods by the same score of 5–0. The bronze medal was"} +{"qid": "test2181", "pid": "15131727", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Swimming at the 2010 Asian Games – Men's 50 metre freestyle\"\nSwimming at the 2010 Asian Games – Men's 50 metre freestyle The men's 50 metre freestyle event at the 2010 Asian Games took place on 15 November 2010 at Guangzhou Aoti Aquatics Centre. There were 44 competitors from 31 countries who took part in this event. Six heats were held, with most containing the maximum number of swimmers (eight). The heat in which a swimmer competed did not formally matter for advancement, as the swimmers with the top eight times from the entire field qualified for the finals. Lü Zhiwu from China won the gold medal with 22.37 seconds, two"} +{"qid": "test2181", "pid": "15136062", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Swimming at the 2010 Asian Games – Men's 200 metre breaststroke\"\nSwimming at the 2010 Asian Games – Men's 200 metre breaststroke The men's 200 metre breaststroke event at the 2010 Asian Games took place on 18 November 2010 at Guangzhou Aoti Aquatics Centre. There were 20 competitors from 18 countries who took part in this event. Three heats were held, with two containing the maximum number of swimmers (eight). The heat in which a swimmer competed did not formally matter for advancement, as the swimmers with the top eight times from the entire field qualified for the finals. Naoya Tomita from Japan won the gold medal, Xue Ruipeng from China"} +{"qid": "test2181", "pid": "15134350", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Swimming at the 2010 Asian Games – Men's 50 metre butterfly\"\nSwimming at the 2010 Asian Games – Men's 50 metre butterfly The men's 50 metre butterfly event at the 2010 Asian Games took place on 16 November 2010 at Guangzhou Aoti Aquatics Centre. There were 33 competitors from 23 countries who took part in this event. Five heats were held, with most containing the maximum number of swimmers (eight). The heat in which a swimmer competed did not formally matter for advancement, as the swimmers with the top eight times from the entire field qualified for the finals. Zhou Jiawei from China won the gold medal, Masayuki Kishida from Japan"} +{"qid": "test2181", "pid": "18350345", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Taekwondo at the 2014 Asian Games – Men's 87 kg\"\nTaekwondo at the 2014 Asian Games – Men's 87 kg The men's middleweight (87 kilograms) event at the 2014 Asian Games took place on 30 September 2014 at Ganghwa Dolmens Gymnasium, Incheon, South Korea. A total of twelve competitors from twelve different countries competed in this event, limited to fighters whose body weight was less than 87 kilograms. Jasur Baykuziyev from Uzbekistan won the gold medal after defeating Chen Linglong from People's Republic of China in the gold medal match by the score of 6–3. The bronze medal was shared by semifinal losers (without having a third place match) Nattapat"} +{"qid": "test2181", "pid": "18350200", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"Taekwondo at the 2014 Asian Games – Women's 53 kg\"\nTaekwondo at the 2014 Asian Games – Women's 53 kg The Women's bantamweight (53 kilograms) event at the 2014 Asian Games took place on 30 September 2014 at Ganghwa Dolmens Gymnasium, Incheon, South Korea. A total of sixteen competitors from sixteen different countries competed in this event, limited to fighters whose body weight was less than 53 kilograms. Huang Yun-wen of Chinese Tapei won the title and gold medal after beating Yoon Jeong-yeon of South Korea in the gold medal match by the score of 4–2. The bronze medal was shared by Wu Jingyu of China and Sousan Hajipour from"} +{"qid": "test2181", "pid": "6573846", "query": "which country has won maximum number of gold medal in asian game 2014", "answer": "China", "passage": "\"2010 Asian Games\"\nHacken Lee. The ceremony also included an eight-minute segment from Incheon with singer and actor Rain performing the segment. The Mayor of Incheon Song Young-gil received the Games flag for 2014 Games. The closing ceremony ended with the song \"\"Everyone\"\" (每一个人) and \"\"Cheer for Asia\"\" (为亚细亚喝彩). China led the medal table for the eighth consecutive time with a new record for the most number of gold medals (at 199 gold medals) won in a single Games. This bettered their previous record of 183 gold medals won by China at Beijing in 1990. Macau, and Bangladesh won their first Asian Games"} +{"qid": "test2182", "pid": "20904724", "query": "who played the daughters in last man standing", "answer": "Molly Ephraim", "passage": "\"Last Man Standing (season 7)\"\nportraying the characters. Additionally, Kaitlyn Dever, who plays Eve Baxter, was reduced to recurring status due to other commitments. Last Man Standing (season 7) The seventh season of the American television comedy series \"\"Last Man Standing\"\" premiered on Fox on September 28, 2018. The season is produced by 21 Laps-Adelstein Productions. \"\"Last Man Standing\"\" previously aired on ABC before being cancelled after six seasons in May 2017. However, Fox picked up the series for a seventh season a year later in May 2018. This season saw changes to the series' main cast. Molly Ephraim and Flynn Morrison, who"} +{"qid": "test2182", "pid": "20904723", "query": "who played the daughters in last man standing", "answer": "Molly Ephraim", "passage": "\"Last Man Standing (season 7)\"\nLast Man Standing (season 7) The seventh season of the American television comedy series \"\"Last Man Standing\"\" premiered on Fox on September 28, 2018. The season is produced by 21 Laps-Adelstein Productions. \"\"Last Man Standing\"\" previously aired on ABC before being cancelled after six seasons in May 2017. However, Fox picked up the series for a seventh season a year later in May 2018. This season saw changes to the series' main cast. Molly Ephraim and Flynn Morrison, who play Mandy Baxter and Boyd Baxter respectively, exited the series. The roles were later recast with Molly McCook and Jet Jurgensmeyer"} +{"qid": "test2184", "pid": "10470344", "query": "who named all the animals in the world", "answer": "Adam", "passage": "\"Rick & Steve: The Happiest Gay Couple in All the World\"\nRick & Steve: The Happiest Gay Couple in All the World Rick & Steve: The Happiest Gay Couple in All the World (also known as Rick & Steve) is an American-Canadian stop motion animated sitcom created by Q. Allan Brocka, who also acts as director. Adam Shaheen from Cuppa Coffee Studios produced. It is a spin-off from Brocka's 1999 short film of the same name, and debuted on the LGBT focused Logo network in July 2007 and on the Canadian Teletoon's late-night programming block \"\"The Detour\"\" that October. The show premiered in the UK on E4 on 17 September 2008"} +{"qid": "test2184", "pid": "8433892", "query": "who named all the animals in the world", "answer": "Adam", "passage": "\"Adam Elliot\"\nthe Academy Award-winning actor Geoffrey Rush, with character voices by Kamahl, John Flaus and Julie Forsythe. In 2004 the film won an Academy Award for Best Short Animation. \"\"Harvie Krumpet\"\" has played at over 100 film festivals and won over forty major awards. In 2005 it was named as one of the top 100 animated films of all time by the board of the world's largest animation festival in Annecy, France. Elliot's first feature film had its world premiere at the Sundance Film Festival in January 2009 and was the first animated film and first Australian film in the festival's"} +{"qid": "test2185", "pid": "20307995", "query": "how long do nhl players stay on waivers", "answer": "24 hours", "passage": "\"Waivers (sports)\"\none season playing in another country's major professional hockey league are placed on waivers when returning to the NHL. Fourthly, players who are released from their parent club unconditionally are placed on waivers before they become free agents. Teams have 24 hours (measured from noon Eastern time following the announcement of the transaction) to place a claim on a player. If more than one team claims the player during the 24-hour window, the team with the lowest win-loss-tie point total has first priority. The claiming team then assumes the contract. If the player clears waivers, the intended transaction (either changing"} +{"qid": "test2185", "pid": "14694478", "query": "how long do nhl players stay on waivers", "answer": "24 hours", "passage": "\"Waivers (NHL)\"\nThe claims process starts at noon Eastern Time and ends 24 hours later. If only one team makes a claim for the player, then he will be transferred to the claiming team. If more than one team makes a claim, then the player will be transferred to the team having the lowest percentage of possible points in league standings at the time of the request for waivers. When a waiver claim has been secured, the claiming team must pay a transfer fee to the original club, though this fee is not counted against the salary cap. If waivers are requested"} +{"qid": "test2186", "pid": "7948620", "query": "what year did the price is right first air", "answer": "1956", "passage": "\"The Price Is Right (1956 U.S. game show)\"\nThe Price Is Right (1956 U.S. game show) The Price Is Right is an American game show where contestants made successive bids on merchandise prizes with the goal of bidding closest to the actual retail price of the prize without going over. The show was a precursor to the current and best-known version of the show, which premiered in 1972 on CBS' daytime schedule. This makes \"\"The Price Is Right\"\" one of only a few game shows that have aired in some form across all three of what were then the Big Three television networks. The series premiered on NBC's"} +{"qid": "test2186", "pid": "7948621", "query": "what year did the price is right first air", "answer": "November 26, 1956", "passage": "\"The Price Is Right (1956 U.S. game show)\"\ndaytime schedule on November 26, 1956, and quickly spawned a primetime series that aired once a week. \"\"The Price Is Right\"\" became one of the few game shows to survive the rigging scandal of the late 1950s, and gained even more popularity after other game shows exposed for being rigged had been cancelled. In 1963, \"\"The Price Is Right\"\" switched networks and both the daytime and primetime series moved to ABC. On September 3, 1965, the show aired its final episode after nearly nine years on the air. On the original version of \"\"The Price Is Right\"\", four contestants –"} +{"qid": "test2187", "pid": "21353", "query": "who stepped out of the dithyrambic chorus to become the first actor", "answer": "Thespis", "passage": "Acting\nof professional actors have undergone extensive training. Actors and actresses will often have many instructors and teachers for a full range of training involving singing, scene-work, audition techniques, and acting for camera. Most early sources in the West that examine the art of acting (, \"\"hypokrisis\"\") discuss it as part of rhetoric. One of the first known actors is believed to have been an ancient Greek called Thespis of Icaria. Writing two centuries after the event, Aristotle in his \"\"Poetics\"\" () suggests that Thespis stepped out of the dithyrambic chorus and addressed it as a separate character. Before Thespis, the"} +{"qid": "test2187", "pid": "631191", "query": "who stepped out of the dithyrambic chorus to become the first actor", "answer": "Thespis", "passage": "Thespis\nThespis Thespis (; ; fl. 6th century BC) of Icaria (present-day Dionysos, Greece), according to certain Ancient Greek sources and especially Aristotle, was the first person ever to appear on stage as an actor playing a character in a play (instead of speaking as him or herself). In other sources, he is said to have introduced the first principal actor in addition to the chorus. Thespis was a singer of dithyrambs (songs about stories from mythology with choric refrains). He is credited with introducing a new style in which one singer or actor performed the words of individual characters in"} +{"qid": "test2187", "pid": "631195", "query": "who stepped out of the dithyrambic chorus to become the first actor", "answer": "Thespis", "passage": "Thespis\nepisode of the TV series \"\"\"\" was named \"\"Thespis\"\" and referenced him. Thespis Thespis (; ; fl. 6th century BC) of Icaria (present-day Dionysos, Greece), according to certain Ancient Greek sources and especially Aristotle, was the first person ever to appear on stage as an actor playing a character in a play (instead of speaking as him or herself). In other sources, he is said to have introduced the first principal actor in addition to the chorus. Thespis was a singer of dithyrambs (songs about stories from mythology with choric refrains). He is credited with introducing a new style in"} +{"qid": "test2187", "pid": "21354", "query": "who stepped out of the dithyrambic chorus to become the first actor", "answer": "Thespis", "passage": "Acting\nchorus narrated (for example, \"\"Dionysus did this, Dionysus said that\"\"). When Thespis stepped out from the chorus, he spoke as if he was the character (for example, \"\"I am Dionysus, I did this\"\"). To distinguish between these different modes of storytelling—enactment and narration—Aristotle uses the terms \"\"mimesis\"\" (via enactment) and \"\"diegesis\"\" (via narration). From Thespis' name derives the word \"\"thespian\"\". A professional actor is someone who is paid to act. Professional actors sometimes undertake unpaid work for a variety of reasons, including educational purposes or for charity events. Amateur actors are those who do not receive payment for performances. Not"} +{"qid": "test2187", "pid": "773996", "query": "who stepped out of the dithyrambic chorus to become the first actor", "answer": "Thespis", "passage": "Protagonist\nwill provide obstacles and complications and create conflicts that test the protagonist, thus revealing the strengths and weaknesses of the protagonist's character. The earliest known examples of a protagonist are found in Ancient Greece. At first, dramatic performances involved merely dancing and recitation by the chorus. Then in \"\"Poetics\"\", Aristotle describes how a poet named Thespis introduced the idea of one actor stepping out and engage in a dialogue with the chorus. This was the invention of tragedy, and occurred about 536 B.C. Then the poet Aeschylus, in his plays, introduced a second actor, inventing the idea of dialogue between"} +{"qid": "test2187", "pid": "2811766", "query": "who stepped out of the dithyrambic chorus to become the first actor", "answer": "Thespis", "passage": "\"Theatre of ancient Greece\"\nit lost its ability for change and growth. For these reasons, among many others, oral storytelling flourished in Greece. Greek tragedy as we know it was created in Athens around the time of 532 BC, when Thespis was the earliest recorded actor. Being a winner of the first theatrical contest held in Athens, he was the \"\"exarchon\"\", or leader, of the dithyrambs performed in and around Attica, especially at the rural Dionysia. By Thespis' time, the dithyramb had evolved far away from its cult roots. Under the influence of heroic epic, Doric choral lyric and the innovations of the poet"} +{"qid": "test2188", "pid": "6106694", "query": "when did the not in this lifetime tour start", "answer": "April 1, 2016", "passage": "\"Guns N' Roses\"\nNot in This Lifetime... Tour. The tour's name is a reference to a 2012 interview in which Rose, when asked about when a potential reunion would happen, responded \"\"not in this lifetime\"\". A previously unannounced warmup gig at the Troubadour in Los Angeles took place on April 1, 2016. Melissa Reese, who has previously worked with former drummer Bryan Mantia on several projects, replaced Chris Pitman as the second keyboardist. During the show at the Troubadour, Rose fell off a monitor and broke his foot. Rose was given Dave Grohl's customized throne that Grohl had used to perform when he"} +{"qid": "test2188", "pid": "19424435", "query": "when did the not in this lifetime tour start", "answer": "April 1, 2016", "passage": "\"Not in This Lifetime... Tour\"\nshow, including \"\"The Seeker\"\", \"\"Patience\"\", \"\"Don't Cry\"\", \"\"Yesterdays\"\", \"\"Used To Love Her\"\", \"\"Catcher In The Rye\"\" and \"\"Sorry\"\" in various combinations. Not in This Lifetime... Tour The Not in This Lifetime... Tour was a concert tour by hard rock band Guns N' Roses, spanning from April 1, 2016 to December 8, 2018. It featured classic lineup members Axl Rose, Slash and Duff McKagan, marking the first time since the Use Your Illusion Tour in 1993 that the three performed together. After the previous tour in 2014, guitarists DJ Ashba & Ron \"\"Bumblefoot\"\" Thal, bassist Tommy Stinson and keyboardist Chris Pitman"} +{"qid": "test2189", "pid": "616381", "query": "who sings jungle book i wanna be like you", "answer": "Louis Prima", "passage": "\"Scat singing\"\nWard Swingle was the product of an unusually liberal musical education. He took the scat singing idea and applied it to the works of Bach, creating The Swingle Singers. Scat singing is also featured by Louis Prima and others in the song \"\"I Wan'na Be Like You\"\" in Disney's \"\"The Jungle Book\"\" (1967). The bop revival of the 1970s renewed interest in bop scat singing, and young scat singers viewed themselves as a continuation of the classic bop tradition. The medium continues to evolve, and vocal improvisation now often develops independently of changes in instrumental jazz. Jazz artist John Paul"} +{"qid": "test2190", "pid": "3622037", "query": "who sings two pints of lager and a packet of crisps", "answer": "Splodgenessabounds", "passage": "Splodgenessabounds\n1979 Battle Of The Bands contest, even though Deram was planning to cease all activities in the music markets outside of classical music. The band's first release for Deram in 1980 was \"\"Two Pints of Lager and a Packet of Crisps Please\"\". The song was released as a triple A side vinyl single, along with \"\"Simon Templer\"\" (a pastiche of the theme tune of the TV series, \"\"Return of the Saint\"\" featuring the character Simon Templar) and \"\"Michael Booth's Talking Bum\"\". \"\"Two Pints of Lager and a Packet of Crisps Please\"\" was the only song from that release that picked"} +{"qid": "test2190", "pid": "4096859", "query": "who sings two pints of lager and a packet of crisps", "answer": "Splodgenessabounds", "passage": "\"Two Pints of Lager and a Packet of Crisps\"\nfinal series had major changes with new main cast members and new writers. The core cast was augmented by various recurring characters throughout the series, portrayed by Beverley Callard, Lee Oakes, Hayley Bishop, Thomas Nelstrop, Freddie Hogan, and Georgia Henshaw. The title was inspired by the 1980 hit single \"\"Two Pints of Lager and a Packet of Crisps Please\"\" by Splodgenessabounds. On 23 July 2011, it was confirmed that the series would not be returning due to BBC Three wanting to make room for new comedies and feeling that the series had come to a natural end following the departures"} +{"qid": "test2190", "pid": "5839225", "query": "who sings two pints of lager and a packet of crisps", "answer": "Splodgenessabounds", "passage": "\"Marquee Club\"\nand Pallas, often supported by acts such as Pendragon or IQ who would in later years become leading lights of the \"\"neo-prog\"\" scene. Other progressive bands regularly playing the Marquee at this time included Quasar, Mach One, Haze, Cardiacs, Legacy of Lies and Liaison (who were not strictly prog but seemed to become linked to the movement). During this period the club held heats and the final of \"\"Melody Maker\"\"'s \"\"band contests\"\". New wave and indie bands appeared, including \"\"Two Pints of Lager and a Packet of Crisps Please\"\" one-hit wonders Splodgenessabounds and the almost-cult band The Hummers. The historical"} +{"qid": "test2190", "pid": "3622038", "query": "who sings two pints of lager and a packet of crisps", "answer": "Splodgenessabounds", "passage": "Splodgenessabounds\nup any airplay, first from John Peel on his BBC Radio 1 show, and later on daytime radio as a novelty song. The song peaked at No. 7 in the UK Singles Chart in June 1980, however the band members were unable to capitalise on their success by appearing on \"\"Top of the Pops\"\", because the show was off the air due to strike action at the BBC Television. The follow-up to \"\"Two Pints of Lager and a Packet of Crisps Please\"\" was a cover version of \"\"Two Little Boys\"\" (a live version that appeared in the soundtrack to the"} +{"qid": "test2191", "pid": "19361194", "query": "when did the apple iphone se come out", "answer": "March 31, 2016", "passage": "\"IPhone SE\"\nIPhone SE The iPhone SE (\"\"Special Edition\"\") is a smartphone that was designed and marketed by Apple Inc. It is part of the ninth generation of the iPhone alongside the . It was announced on March 21, 2016 at the Town Hall auditorium in the Apple Campus by Apple executive Greg Joswiak, with pre-orders beginning on March 24 and official release on March 31, 2016. It was re-released almost a year later on March 24, 2017 with larger storage capacities. The iPhone SE shares the same physical design and dimensions as the iPhone 5S, but has upgraded internal hardware, including"} +{"qid": "test2191", "pid": "19361203", "query": "when did the apple iphone se come out", "answer": "March 31, 2016", "passage": "\"IPhone SE\"\nof 2016, helping it beat analysts expectations and was strategic for Apple in price-sensitive markets such as India and China where Apple struggles to match its success from Western markets.\"\" IPhone SE The iPhone SE (\"\"Special Edition\"\") is a smartphone that was designed and marketed by Apple Inc. It is part of the ninth generation of the iPhone alongside the . It was announced on March 21, 2016 at the Town Hall auditorium in the Apple Campus by Apple executive Greg Joswiak, with pre-orders beginning on March 24 and official release on March 31, 2016. It was re-released almost a"} +{"qid": "test2191", "pid": "17932789", "query": "when did the apple iphone se come out", "answer": "March 31, 2016", "passage": "\"IPhone 6\"\nShenzhen Baili, a Chinese device maker, alleged that the iPhone 6 and iPhone 6 Plus infringed on its design patent. The iPhone 6 and 6 Plus were discontinued on September 7, 2016, when Apple announced the iPhone 7 and iPhone 7 Plus, and the iPhone 6 and 6 Plus's spot as the entry-level iPhone has since been taken by the iPhone SE. As the iPhone SE has more powerful internal hardware than the midrange iPhone 6 (largely the same as the 6S) and had been released earlier on March 31, 2016, this created an unusual situation when it was sold"} +{"qid": "test2191", "pid": "5946061", "query": "when did the apple iphone se come out", "answer": "March 21, 2016", "passage": "\"History of Apple Inc.\"\npromise, it lacked a clear purpose, similar to many of the devices already on the market. The Apple Watch was released on April 24, 2015. On September 9, 2015, Apple announced the iPhone 6S and iPhone 6S Plus with 3D Touch, the iPad Pro, and the fourth-generation Apple TV, along with the fourth-generation iPad Mini. On March 21, 2016, Apple announced the iPhone SE and the smaller iPad Pro. On September 7, 2016, Apple announced the iPhone 7 and iPhone 7 Plus with an improved camera and a faster processor than the previous generation. The iPhone 7 and iPhone 7"} +{"qid": "test2191", "pid": "4338", "query": "when did the apple iphone se come out", "answer": "March 21, 2016", "passage": "\"Apple Inc.\"\n2014, Apple introduced the iPhone 6, alongside the iPhone 6 Plus that both have screen sizes over 4-inches. One year later, Apple introduced the iPhone 6S, and iPhone 6S Plus, which introduced a new technology called 3D Touch, including an increase of the rear camera to 12 MP, and the FaceTime camera to 5 MP. On March 21, 2016, Apple introduced the iPhone SE that has a 4-inch screen size last used with the 5S and has nearly the same internal hardware as the 6S. In July 2016, Apple announced that one billion iPhones had been sold. On September 7,"} +{"qid": "test2191", "pid": "15988426", "query": "when did the apple iphone se come out", "answer": "March 21, 2016", "passage": "\"IPhone 5S\"\n7. Some criticized the iPhone 5S for keeping the design and small display of the iPhone 5, and others expressed security concerns about the Touch ID system. Nine million units of the iPhone 5S and iPhone 5C were sold on their weekend of release, breaking Apple's sales record for iPhones. The iPhone 5S was the best selling phone on all major U.S. carriers in September 2013. The iPhone 5S was succeeded as Apple's flagship smartphone by the larger iPhone 6 in September 2014. On March 21, 2016, the 5S received a direct replacement with the announcement of the iPhone SE,"} +{"qid": "test2191", "pid": "19361197", "query": "when did the apple iphone se come out", "answer": "March 21, 2016", "passage": "\"IPhone SE\"\nbe able to use it fully.\"\" The previous major redesign of the iPhone, the 4.7-inch iPhone 6 and the 5.5-inch iPhone 6 Plus, resulted in larger screen sizes. However, a significant number of customers still preferred the smaller 4-inch screen size of the iPhone 5 and the iPhone 5S. Apple stated in the \"\"Let us loop you in\"\" event on March 21, 2016 that they sold over 30 million 4-inch iPhones in 2015, further explaining that some people love smaller compact phones. Later in the event they presented the iPhone SE, describing it as \"\"the most powerful 4-inch phone ever.\"\""} +{"qid": "test2191", "pid": "15988431", "query": "when did the apple iphone se come out", "answer": "March 21, 2016", "passage": "\"IPhone 5S\"\niPhone 5S was discontinued on March 21, 2016, and succeeded by the iPhone SE, which continues the same form factor but features vastly upgraded internals similar to the flagship iPhone 6S. This was a break with Apple's product positioning trend (in North America and Western Europe), starting with iPhone 4S released in October 2011, which gave each newly released model one year as the flagship phone, then moving it to midrange for its second year of production, with the third and final year as the entry-level offering before discontinuation. While the iPhone 5S was expected to continue on sale until"} +{"qid": "test2193", "pid": "494136", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"Continental Congress\"\nin importance. During peacetime, there were two important, long-lasting acts of the Confederation Congress: Under the Articles of Confederation, the Confederation Congress had little power to compel the individual states to comply with any of its decisions. More and more prospective delegates elected to the Confederation Congress declined to serve in it. The leading men in each State preferred to serve in the state governments, and thus the Continental Congress had frequent difficulties in establishing a quorum. When the Articles of Confederation were superseded by the Constitution of the United States, the Confederation Congress was superseded by the United States"} +{"qid": "test2193", "pid": "12503522", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"United States House of Representatives\"\nThe House meets in the south wing of the United States Capitol. Under the Articles of Confederation, the Congress of the Confederation was a unicameral body in which each state was equally represented, and in which each state had a veto over most action. After eight years of a more limited confederal government under the Articles, numerous political leaders such as James Madison and Alexander Hamilton initiated the Constitutional Convention in 1787, which received the Confederation Congress's sanction to \"\"amend the Articles of Confederation\"\". All states except Rhode Island agreed to send delegates. The issue of how to structure Congress"} +{"qid": "test2193", "pid": "6003977", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"Federalist No. 76\"\n1781, the Articles of Confederation originally depicted the nation's government when it was a confederation of states. Under the Articles of Confederation, the Congress of the Confederation was the legislature that had overarching power and authority, including that of appointments. In 1787, at the Philadelphia Convention, a proposal for a new system of government was constructed. Rather than having a single authoritative and dominating body, the delegates devised a plan for three branches of government: executive, legislative, and judicial. Not only this, but the system of checks and balances was also created in order to prevent unequal power amongst branches."} +{"qid": "test2193", "pid": "11826347", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Confederation Period\"\nin 1789 following the ratification of the United States Constitution, which established a new, more powerful, national government. The Articles of Confederation established a loose confederation of states with a weak federal government. An assembly of delegates acted on behalf of the states they represented. This unicameral body, officially referred to as the United States in Congress Assembled, had little authority, and could not accomplish anything independent of the states. It had no chief executive, and no court system. Congress lacked the power to levy taxes, regulate foreign or interstate commerce, or effectively negotiate with foreign powers. The weakness of"} +{"qid": "test2193", "pid": "9759", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"Articles of Confederation\"\nestablished by the Articles received only those powers which the former colonies had recognized as belonging to king and parliament. The Articles formed a war-time confederation of states, with an extremely limited central government. While unratified, the document was used by the Congress to conduct business, direct the American Revolutionary War, conduct diplomacy with foreign nations, and deal with territorial issues and Native American relations. The adoption of the Articles made few perceptible changes in the federal government, because it did little more than legalize what the Continental Congress had been doing. That body was renamed the Congress of the"} +{"qid": "test2193", "pid": "19459073", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Import-Export Clause\"\ndid not apply to imports and exports with other states, although this interpretation has been questioned by modern legal scholars. The United States were first organized under the Articles of Confederation, under which the states maintained significant autonomy while the national government was weak. Among the major weaknesses of the Articles of Confederation was the inability to regulate commerce with foreign nations and among the states and the inability of the national government to impose taxes. The national government lacked power to enforce acts of Congress and requests for money from the states were frequently ignored. The Articles of Confederation"} +{"qid": "test2193", "pid": "18133653", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"1788–89 United States elections\"\nunder the Articles of Confederation, which provided for a very limited central government; what power that did exist was vested in the Congress of the Confederation, a unicameral legislature consisting of representatives elected by the states. The Congress of the Confederation had elected a president, but this position was largely ceremonial and was not equivalent to the presidency that was established by the United States Constitution. Under the U.S. Constitution, the president was chosen by the Electoral College, which consisted of electors selected by each state. Prior to the ratification of the Twelfth Amendment, each elector cast two votes; the"} +{"qid": "test2193", "pid": "11812949", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Federalist Era\"\nStates had functioned under the Articles of Confederation, which provided for a loose confederation of states. At the 1787 Philadelphia Convention, delegates from most of the states wrote a new constitution that created a more powerful federal government. After the convention, this constitution was submitted to the states for ratification. Those who advocated ratification became known as Federalists, while those opposed to ratification became known as anti-Federalists. After the Federalists won the ratification debate in all but two states, the new constitution took effect and new elections were held for Congress and the presidency. The first elections returned large Federalist"} +{"qid": "test2193", "pid": "5991286", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Federalist No. 39\"\nwas not initially clear how the new government would interact with the states, and Madison was in favor of a federal form, a \"\"a political system in which at least two territorial levels of government share sovereign constitutional authority over their respective division and joint share of law-making powers; differently put, neither the federal government nor the relevant federative entities may unilaterally alter one another's powers without a process of constitutional amendment in which both levels of government participate.\"\". Other alternatives included a confederacy as under the Articles of Confederation or a more strictly national government. Federalist No. 39 Federalist"} +{"qid": "test2193", "pid": "9770", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Articles of Confederation\"\ngovernment. Under the Articles, the states retained sovereignty over all governmental functions not specifically relinquished to the national Congress, which was empowered to make war and peace, negotiate diplomatic and commercial agreements with foreign countries, and to resolve disputes between the states. The document also stipulates that its provisions \"\"shall be inviolably observed by every state\"\" and that \"\"the Union shall be perpetual\"\". Summary of the purpose and content of each of the 13 articles: Under the Articles, Congress had the authority to regulate and fund the Continental Army, but it lacked the power to compel the States to comply"} +{"qid": "test2193", "pid": "6726334", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"Taxing and Spending Clause\"\nand spending power. One of the most often claimed defects of the Articles of Confederation was its lack of a grant to the central government of the power to lay and collect taxes. Under the Articles, Congress was forced to rely on requisitions upon the governments of its member states. Without the power to independently raise its own revenues, the Articles left Congress vulnerable to the discretion of the several State governments—each State made its own decision as to whether it would pay the requisition or not. Some states were not giving Congress the funds for which it asked by"} +{"qid": "test2193", "pid": "2432744", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"States' rights\"\nratification proponent Alexander Hamilton explained the limitations this clause placed on the proposed federal government, describing that acts of the federal government were binding on the states and the people therein \"\"only if\"\" the act was in pursuance of constitutionally granted powers, and juxtaposing acts which exceeded those bounds as \"\"void and of no force\"\": In the period between the American Revolution and the ratification of the United States Constitution, the states had united under a much weaker federal government and a much stronger state and local government, pursuant to the Articles of Confederation. The Articles gave the central government"} +{"qid": "test2193", "pid": "427808", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"United States Constitution\"\nentitled it to be called a state in the international sense, while the separate states, exercising a limited or internal sovereignty, may rightly be considered a creation of the Continental Congress, which preceded them and brought them into being. The Articles of Confederation and Perpetual Union was the first constitution of the United States. It was drafted by the Second Continental Congress from mid-1776 through late 1777, and ratification by all 13 states was completed by early 1781. Under the Articles of Confederation, the central government's power was quite limited. The Confederation Congress could make decisions, but lacked enforcement powers."} +{"qid": "test2193", "pid": "9778", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Articles of Confederation\"\nLoyalists and allowing them to seek compensation. This incomplete British implementation of the Treaty of Paris would later be resolved by the implementation of Jay's Treaty in 1795, after the federal Constitution came into force. Under the Articles of Confederation, the central government's power was kept quite limited. The Confederation Congress could make decisions, but lacked enforcement powers. Implementation of most decisions, including modifications to the Articles, required unanimous approval of all thirteen state legislatures. Congress was denied any powers of taxation: it could only request money from the states. The states often failed to meet these requests in full,"} +{"qid": "test2193", "pid": "9811", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"Articles of Confederation\"\nthat the new Constitution had been ratified by the necessary nine states, set the first Wednesday in February 1789 for the presidential electors to meet and select a new president, and set the first Wednesday of March 1789 as the day the new government would take over and the government under the Articles of Confederation would come to an end. On that same September 13, it determined that New York would remain the national capital. Articles of Confederation The Articles of Confederation, formally the Articles of Confederation and Perpetual Union, was an agreement among the 13 original states of the"} +{"qid": "test2193", "pid": "6149755", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"History of the United States House of Representatives\"\ncapitalized only because all nouns were capitalized in English before the Industrial Revolution. The Second Continental Congress continued in office while the War for Independence continued, producing the Articles of Confederation— the country's first constitution— in 1777, which was ratified by all of the states by 1781. Under the Articles of Confederation, the Congress of the Confederation was a unicameral body in which each state was equally represented, and in which each state had a veto over most action. States could, and did, ignore what did pass. The ineffectiveness of the federal government under the Articles led Congress to summon"} +{"qid": "test2193", "pid": "88502", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Confederate States of America\"\ngreater powers to the states (or curtailed the powers of the central government more) than the U.S. Constitution of the time did, but in other areas, the states lost rights they had under the U.S. Constitution. Although the Confederate Constitution, like the U.S. Constitution, contained a commerce clause, the Confederate version prohibited the central government from using revenues collected in one state for funding internal improvements in another state. The Confederate Constitution's equivalent to the U.S. Constitution's general welfare clause prohibited protective tariffs (but allowed tariffs for providing domestic revenue), and spoke of \"\"carry[ing] on the Government of the Confederate"} +{"qid": "test2193", "pid": "9238037", "query": "which government had more power under the articles of confederation", "answer": "states", "passage": "\"New York (state)\"\nnational capital under the Articles of Confederation and Perpetual Union, the first government. That organization was found to be insufficient, and prominent New Yorker Alexander Hamilton advocated a new government that would include an executive, national courts, and the power to tax. Hamilton led the Annapolis Convention (1786) that called for the Philadelphia Convention, which drafted the United States Constitution, in which he also took part. The new government was to be a strong federal national government to replace the relatively weaker confederation of individual states. Following heated debate, which included the publication of the now quintessential constitutional interpretation \"\"The"} +{"qid": "test2193", "pid": "15333854", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"History of the United States Congress\"\nArguments between federalists and anti-federalists about congressional scope, power, role, and authority happened before ratification of the Constitution and continue, to varying extents, to the present day. Generally, the Constitution gave more powers to the federal government, such as regulating interstate commerce , managing foreign affairs and the military, and establishing a national currency. These were seen as essential for the success of the new nation and to resolve the disputes that had arisen under the Articles of Confederation, but the states retained sovereignty over other affairs. Eventually, a \"\"compromise\"\", known as the Connecticut Compromise or the Great Compromise was"} +{"qid": "test2193", "pid": "5999351", "query": "which government had more power under the articles of confederation", "answer": "the states", "passage": "\"Federalist No. 21\"\nFederalist No. 21 Federalist No. 21, written by Alexander Hamilton, highlights the defects in the Constitution. It was published on December 12, 1787 under the pseudonym Publius, the name under which all \"\"The Federalist\"\" papers were published. It is titled \"\"Other Defects of the Present Confederation\"\", and explains how the Articles of Confederation failed in 3 ways: by not giving the government enough power to enforce its laws, that the states do not have a guarantee of their rights, and how the states can simply ignore the tax quotas set by the government. During the 1780s, as the problems of"} +{"qid": "test2195", "pid": "8155850", "query": "when was the debating club established in almora", "answer": "1871 A.D.", "passage": "Almora\nbeen published from Almora like Prabuddha Bharata, Almora Akhbar, Shakti and Swadhin Praja etc. In 1871 A.D. Pt. Buddhiballav Pant opened a debating club. When Sir William Muir, the then provincial Governor, came here he was highly pleased with the working of this club. It is said that he also advised to open a press here and publish a newspaper. Mr. Pant, as advised, opened a press here and started publishing a weekly magazine \"\"Almora Akhbar\"\". Almora Akhbar was the oldest Hindi weekly of this province. In 1913 A.D. Badri Datt Pandey took over the editing work of the magazine."} +{"qid": "test2196", "pid": "12304556", "query": "how many super bowl games has the patriots played in", "answer": "ten", "passage": "\"Super Bowl XLIX\"\nSuper Bowl XLIX Super Bowl XLIX was an American football game played to determine the champion of the National Football League (NFL) for the 2014 season. The American Football Conference (AFC) champion New England Patriots defeated the National Football Conference (NFC) champion Seattle Seahawks, 28–24, to earn their fourth Super Bowl title and their first in ten years. The game was played on February 1, 2015 at University of Phoenix Stadium in Glendale, Arizona. It was the second time the stadium has hosted a Super Bowl, and the third one held in the Phoenix metropolitan area. With the loss, the"} +{"qid": "test2196", "pid": "397189", "query": "how many super bowl games has the patriots played in", "answer": "10", "passage": "\"Super Bowl XX\"\ngame summary. Source: Super Bowl XX Super Bowl XX was an American football game between the National Football Conference (NFC) champion Chicago Bears and the American Football Conference (AFC) champion New England Patriots to decide the National Football League (NFL) champion for the 1985 season. The Bears defeated the Patriots by the score of 46–10, capturing their first NFL championship (and Chicago's first overall sports victory) since 1963, three years prior to the birth of the Super Bowl. Super Bowl XX was played on January 26, 1986 at the Louisiana Superdome in New Orleans. This was the fourth Super Bowl"} +{"qid": "test2196", "pid": "9338449", "query": "how many super bowl games has the patriots played in", "answer": "ten", "passage": "\"Alan Branch\"\nrallied all the way back to win the game, which featured the first overtime game in Super Bowl history and the largest comeback in the Super Bowl. Branch recorded three tackles, 0.5 sacks, and a crucial fumble recovery in the game. On March 9, 2017, Branch signed a two-year, $12 million contract extension with the Patriots. Branch played 12 games in the 2017 season and recorded 12 tackles. Branch was inactive for the playoffs, but the Patriots still made it to the Super Bowl without him only to fall to the Philadelphia Eagles in Super Bowl LII. On March 6,"} +{"qid": "test2196", "pid": "17736274", "query": "how many super bowl games has the patriots played in", "answer": "ten", "passage": "\"2014 New England Patriots season\"\nBowl XLIX. After tying the game 14–14 at halftime and falling behind ten points in the third quarter, the Patriots rallied in the final quarter of the game to secure a 28–24 lead. The win secured their fourth championship in franchise history. The game is widely considered by many to be one of the greatest Super Bowls ever played. Draft trades Note: Intra-division opponents are in bold text. The Patriots traveled to Miami to face their division rival Miami Dolphins in the 2014 season opener. The Patriots featured several key additions: Brandon LaFell, Darrelle Revis, and Brandon Browner (even though"} +{"qid": "test2196", "pid": "15876405", "query": "how many super bowl games has the patriots played in", "answer": "10", "passage": "\"Bruce Irvin (American football)\"\nthe New England Patriots in Super Bowl XLIX. In the final 20 seconds of Super Bowl XLIX, Irvin was ejected from the game after committing an unnecessary roughness penalty by throwing a closed-hand punch at New England Patriots tight end Rob Gronkowski that incited a brawl on the penultimate play. He was the first player in NFL history to ever be ejected from a Super Bowl and was fined $10,000 by the NFL. At the time of the penalty, the Patriots had the game in hand after a fourth-quarter comeback victory over the Seahawks. On May 2, 2015, it was"} +{"qid": "test2196", "pid": "18759130", "query": "how many super bowl games has the patriots played in", "answer": "ten", "passage": "\"Joe Cardona\"\nthe Atlanta Falcons by a score of 34–28 in overtime. Cardona had an active role in the game on seven special teams plays. For the third consecutive season, Cardona played in all 16 games for the Patriots. He was part of both Patriots' playoff wins, and went on to play in Super Bowl LII on February 4, 2018. The Patriots failed to repeat as Super Bowl Champions after losing 41–33 to the Philadelphia Eagles. On June 14, 2018, Cardona signed a four-year contract extension with the Patriots. Joe Cardona Joseph Cardona (born April 16, 1992) is an American football long"} +{"qid": "test2197", "pid": "1542390", "query": "what is the minimum number of parties required to enter into a deed", "answer": "two parties", "passage": "\"Mixed-member proportional representation\"\nrepresentative, parties may be required to achieve a minimum number of constituency candidates, a minimum percentage of the nationwide party vote, or both. MMP differs from parallel voting in that the nationwide seats are allocated to political parties in a compensatory manner in order to achieve proportional election results. Under MMP, two parties that each receive 25% of the votes may both end up with 25% of the seats, even if one party wins more constituencies than the other. MMP was originally used to elect representatives to the German Bundestag, and has been adopted by Bolivia, Lesotho and New Zealand."} +{"qid": "test2198", "pid": "556204", "query": "when was the first underwater cable laid beneath the english channel", "answer": "1850", "passage": "\"Submarine communications cable\"\nthat it should be employed to cover the wire which was proposed to be laid from Dover to Calais. It was tried on a wire laid across the Rhine between Deutz and Cologne. In 1849, C.V. Walker, electrician to the South Eastern Railway, submerged a two-mile wire coated with gutta-percha off the coast from Folkestone, which was tested successfully. Having earlier obtained a concession from the French government, in August 1850 John Watkins Brett's Anglo-French Telegraph Company laid the first line across the English Channel, using the converted tug \"\"Goliath\"\". It was simply a copper wire coated with gutta-percha, without"} +{"qid": "test2199", "pid": "1208643", "query": "where is the setting for beauty and the beast", "answer": "France", "passage": "\"Beauty and the Beast (1991 film)\"\n\"\"Beauty and the Beast\"\" set in 19th-century France. At the behest of Disney CEO Michael Eisner, \"\"Beauty and the Beast\"\" became the first Disney animated film to use a screenwriter. This was an unusual production move for an animated film, which is traditionally developed on storyboards rather than in scripted form. Linda Woolverton wrote the original draft of the story before storyboarding began, and worked with the story team to retool and develop the film. Upon seeing the initial storyboard reels in 1989, Walt Disney Studios chairman Jeffrey Katzenberg ordered that the film be scrapped and started over from scratch."} +{"qid": "test220", "pid": "2556162", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"Salton Sea\"\nmud volcanoes are found on the eastern side of the Salton Sea. A number of geothermal electricity generation plants are located along the southeastern shore of the Salton Sea in Imperial County. The US Geological Survey describes the smell as \"\"objectionable\"\", \"\"noxious\"\", \"\"unique\"\", and \"\"pervasive\"\". Due to the high salinity, very few fish species can tolerate living in the Salton Sea. Introduced tilapia are the main fish that can tolerate the high salinity levels and pollution. Other freshwater fish species live in the rivers and canals that feed the Salton Sea, including threadfin shad, carp, red shiner, channel catfish, white"} +{"qid": "test220", "pid": "9602713", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"Tilapia as exotic species\"\nof the southwestern United States, in the Salton Sea tilapia have become a critical part of local ecology. Historically, the Colorado River has often flooded the Salton Sea basin. During the Pleistocene era, an ancient body of water named Lake Cahuilla was the last in a series of ancient lakes within the region. Today, ancient remnants of fish species that once lived in Lake Cahuilla can still be unearthed in the Salton Sea basin. Fossil evidence of fish species include machete (Elops affinis), bonytail (Gila robusta), and stripped mullet (Mugil Cephalus). Several decades after the formation of the Salton Sea,"} +{"qid": "test220", "pid": "9602716", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"Tilapia as exotic species\"\nand utilize the Salton Sea as an important destination for resting and feeding along the Pacific flyway. High salinity concentrations, algal blooms, agricultural runoff, hypoxia, wind events and temperature variability all contribute to fish die-offs in the Salton Sea. The high concentrations of tilapia in the Salton Sea (relative to other fish species) signify that tilapia often constitute the largest percentage of dead fishes during periods of excessive environmental stress. During fish kills, tilapia often wash ashore en masse. Tilapia as exotic species Throughout much of the tropics, tilapiine cichlids native to Africa and the Levant have been widely introduced"} +{"qid": "test220", "pid": "9602714", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"Tilapia as exotic species\"\nThe California Department of Fish and Wildlife introduced several species of oceanic fishes into the Salton Sea. These species originated from the Gulf of California and included some of the following, orangemouth corvina (Cynoscion xanthulus), bairdiella (Bairdiella icistia), sargo (Anisotremus davidsoni), and threadfin shad (Dorosoma petenense). The tilapia (Oreochromis mossambicus) was most likely introduced to the Salton Sea sometime during the 1960s. The exact time and location of tilapia introduction remains largely unknown, although speculation points to farmed tilapia escaping into the Salton Sea. Adult members of the tilapia Oreochromis mossambicus prey upon a variety of organisms within the Salton"} +{"qid": "test220", "pid": "9602712", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"Tilapia as exotic species\"\nwhich tilapia can be found. The Salton Sea is California’s largest body of inland water. During the early twentieth century, the Colorado River overflowed into a series of irrigation canals. From 1905-1907, river water collected into the Salton Sea basin, later forming the Salton Sea. For the past century, river runoff and evaporation have greatly increased the salinity of the Salton Sea. Presently, the introduced Mozambique tilapia (Oreochromis mossambicus) and only a handful of other fish species are capable of tolerating the Salton Sea's high concentrations of salinity. Although the Mozambique tilapia is most commonly an invasive species throughout much"} +{"qid": "test220", "pid": "9602715", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"Tilapia as exotic species\"\nSea. The polychaete worm Neanthes succinea is an important part of tilapia diet. In addition to polychaete worms, adult tilapia regularly feed upon phytoplankton, copepods, smaller fishes and barnacles. Limited to smaller prey items, juvenile tilapia are dependent upon phytoplankton and small Salton Sea invertebrates. Oreochromis mossambicus is an adaptable species of tilapia. During periods of food scarcity, Oreochromis mossambicus feeds on fish waste and other detritus. Oreochromis mossambicus plays an important role in the ecology of the Salton Sea. This tilapia, along with several other fish species, provides food for hundreds of birds. Many of these birds are migratory,"} +{"qid": "test220", "pid": "6128087", "query": "what kind of fish live in the salton sea", "answer": "tilapia", "passage": "\"New River (Mexico–United States)\"\nwater (3.5% for Pacific), and many species of fish are no longer able to reproduce or survive in the Salton Sea. It is now believed the tilapia may be the only fish species able to persist there for a limited time. Without restoration actions, the sea will likely increase in toxicity, and remain an ecological trap for avian species. The creation of the modern courses of the New River and the Alamo River, and the creation of the Salton Sea, started in the autumn of 1904 when heavy rainfall and snowmelt caused the Colorado River to swell, overrunning a set"} +{"qid": "test2201", "pid": "18070425", "query": "who plays lefou in beauty and the beast 1991", "answer": "Jesse Corti", "passage": "\"Gaston (song)\"\nGaston (song) \"\"Gaston\"\" is a song from the 1991 Disney animated film \"\"Beauty and the Beast\"\". A short reprise is performed later in the musical. It is sung by Jesse Corti and Richard White in their voice roles of Le Fou and Gaston, respectively. The song also appears in the 2017 live-action remake, where it is again performed by the characters of LeFou and Gaston, played by Josh Gad and Luke Evans, respectively. \"\"Gaston\"\" sees Gaston and the village people singing about how great he is, in an effort to cheer him up after Belle's rejection. Gaston's talent ranges from"} +{"qid": "test2205", "pid": "15701997", "query": "who sings it's my party and i cry if i want to", "answer": "Lesley Gore", "passage": "\"I'll Cry If I Want To\"\n\"\"Misty\"\", \"\"Cry Me a River\"\" and \"\"What Kind of Fool Am I?\"\". The album reached #24 on the \"\"Billboard\"\" 200. Edsel Records released the album on Compact Disc in 2000 in combination with Gore's second album, \"\"Lesley Gore Sings of Mixed-Up Hearts\"\". The album was named the 181st best album of the 1960s by \"\"Pitchfork\"\". I'll Cry If I Want To I'll Cry If I Want To was the debut album of Lesley Gore. The album included her hit singles \"\"It's My Party\"\" and its follow-up, \"\"Judy's Turn to Cry\"\". The album was rushed out after \"\"It's My Party\"\" became"} +{"qid": "test2205", "pid": "15701996", "query": "who sings it's my party and i cry if i want to", "answer": "Lesley Gore", "passage": "\"I'll Cry If I Want To\"\nI'll Cry If I Want To I'll Cry If I Want To was the debut album of Lesley Gore. The album included her hit singles \"\"It's My Party\"\" and its follow-up, \"\"Judy's Turn to Cry\"\". The album was rushed out after \"\"It's My Party\"\" became a big hit, and the songs are mostly about crying, linking to the hit single's first line \"\"It's my party and I'll cry if I want to\"\", incorporating songs with titles such as \"\"Cry\"\", \"\"Just Let Me Cry\"\" and \"\"Cry and You Cry Alone\"\". Besides the hit singles, the album included pop standards such as"} +{"qid": "test2205", "pid": "10714763", "query": "who sings it's my party and i cry if i want to", "answer": "Lesley Gore", "passage": "\"Judy's Turn to Cry\"\nJudy's Turn to Cry \"\"Judy's Turn to Cry\"\" is a song written by Beverly Ross (who also co-wrote Roy Orbison's \"\"Candy Man\"\") and Edna Lewis that was originally released by Lesley Gore in 1963. The song was produced by Quincy Jones, who also produced Gore's prior hit \"\"It's My Party\"\". It was released on Gore's first album \"\"I'll Cry If I Want To\"\" and also as a single which reached #5 on the \"\"Billboard\"\" Hot 100 chart and #10 on the Billboard R&B singles chart. The single earned a gold record. When \"\"It's My Party\"\" entered the Billboard Hot 100"} +{"qid": "test2205", "pid": "16453773", "query": "who sings it's my party and i cry if i want to", "answer": "Lesley Gore", "passage": "\"Lesley Gore Sings of Mixed-Up Hearts\"\nLesley Gore Sings of Mixed-Up Hearts Lesley Gore Sings of Mixed-Up Hearts, also known as Sings of Mixed-Up Hearts, is an album by Lesley Gore. It was released in 1963 as the follow-up to her debut album \"\"I'll Cry If I Want To\"\". Allmusic critic Richie Unterberger considers \"\"Lesley Gore Sings of Mixed-Up Hearts\"\" to be better than \"\"I'll Cry If I Want To\"\" and an \"\"above average\"\" though not excellent 1963 pop/rock album. Unterberger cites as a reason for being preferable to \"\"I'll Cry If I Want To\"\" that \"\"Lesley Gore Sings of Mixed-Up Hearts\"\" avoids the self-pity theme"} +{"qid": "test2205", "pid": "16453775", "query": "who sings it's my party and i cry if i want to", "answer": "Lesley Gore", "passage": "\"Lesley Gore Sings of Mixed-Up Hearts\"\nbeing \"\"pedestrian\"\". Lesley Gore Sings of Mixed-Up Hearts Lesley Gore Sings of Mixed-Up Hearts, also known as Sings of Mixed-Up Hearts, is an album by Lesley Gore. It was released in 1963 as the follow-up to her debut album \"\"I'll Cry If I Want To\"\". Allmusic critic Richie Unterberger considers \"\"Lesley Gore Sings of Mixed-Up Hearts\"\" to be better than \"\"I'll Cry If I Want To\"\" and an \"\"above average\"\" though not excellent 1963 pop/rock album. Unterberger cites as a reason for being preferable to \"\"I'll Cry If I Want To\"\" that \"\"Lesley Gore Sings of Mixed-Up Hearts\"\" avoids the"} +{"qid": "test2205", "pid": "8054614", "query": "who sings it's my party and i cry if i want to", "answer": "Lesley Gore", "passage": "\"It's My Party (Lesley Gore song)\"\n\"\"It's my party, and I'll cry if I want to... You would cry too if it happened to you!\"\" became a part of American pop cultural language as a phrase used to describe being utterly humiliated and miserable during an event that is supposed to be a happy occasion. \"\"It's My Party\"\" is in the key of A major. The song's effectiveness is enhanced by several musical touches producer Quincy Jones incorporated, including Latin-sounding rhythms, double tracked vocals and effective horn parts. Allmusic critic Jason Ankeny wrote of the song, It's My Party' remains one of the most vivid evocations"} +{"qid": "test2207", "pid": "11777989", "query": "when was the chain first used for f1", "answer": "1978", "passage": "\"French support for Iraq during the Iran–Iraq War\"\nF-1 fighters to Iraq.\"\" Sources differ as to when Iraq received the first F1s; the Library of Congress said 1978 while the New York Times reported 1981. According to the Library of Congress, France provided, in 1978, eighteen Mirage F1 interceptors and thirty helicopters, and even agreed to an Iraqi share in the production of the Mirage 2000 in a US$2 billion arms deal. The Times said the first of the batch of Mirages were seen in Cyprus, where they were met by pilots arriving in a transport with Jordanian markings. In 1983, another twenty-nine Mirage F1s were exported to"} +{"qid": "test2207", "pid": "9836989", "query": "when was the chain first used for f1", "answer": "1978", "passage": "\"BS Fabrications\"\nBS Fabrications BS Fabrications was an engineering company specialising in fabrications for Formula One teams founded by Bob Sparshott, a former engineer at Lotus who had worked with Jim Clark and Graham Hill, and John 'Ace' Woodington in Luton in 1972. The company also ran a number of private F1 cars for customers in Grand Prix racing between 1972 and 1978. In 1972 the company ran American Brett Lunger in a March F2. They first entered F1 in 1972 under the name of Space Racing when they built a hybrid F1/F2 March for Mike Beuttler using a Formula 2 monocoque"} +{"qid": "test2207", "pid": "9836993", "query": "when was the chain first used for f1", "answer": "1978", "passage": "\"BS Fabrications\"\nBS Fabrications BS Fabrications was an engineering company specialising in fabrications for Formula One teams founded by Bob Sparshott, a former engineer at Lotus who had worked with Jim Clark and Graham Hill, and John 'Ace' Woodington in Luton in 1972. The company also ran a number of private F1 cars for customers in Grand Prix racing between 1972 and 1978. In 1972 the company ran American Brett Lunger in a March F2. They first entered F1 in 1972 under the name of Space Racing when they built a hybrid F1/F2 March for Mike Beuttler using a Formula 2 monocoque"} +{"qid": "test2208", "pid": "1972382", "query": "when was you'll never walk alone first released", "answer": "1945", "passage": "\"You'll Never Walk Alone\"\nYou'll Never Walk Alone \"\"You'll Never Walk Alone\"\" is a show tune from the 1945 Rodgers and Hammerstein musical \"\"Carousel\"\". In the second act of the musical, Nettie Fowler, the cousin of the protagonist Julie Jordan, sings \"\"You'll Never Walk Alone\"\" to comfort and encourage Julie when her husband, Billy Bigelow, the male lead, falls on his knife and dies after a failed robbery attempt. It is reprised in the final scene to encourage a graduation class of which Louise (Billy and Julie's daughter) is a member. The now invisible Billy, who has been granted the chance to return to"} +{"qid": "test2208", "pid": "1972397", "query": "when was you'll never walk alone first released", "answer": "1945", "passage": "\"You'll Never Walk Alone\"\nfacts relating to the unlawful killing by negligence of 96 Liverpool supporters. On 13 March 2016, after Borussia Dortmund's 2-0 win against 1. FSV Mainz 05 in the German Bundesliga, supporters of both teams performed the song to commemorate a Dortmund fan who died from a cardiac arrest in the stands during the game. You'll Never Walk Alone \"\"You'll Never Walk Alone\"\" is a show tune from the 1945 Rodgers and Hammerstein musical \"\"Carousel\"\". In the second act of the musical, Nettie Fowler, the cousin of the protagonist Julie Jordan, sings \"\"You'll Never Walk Alone\"\" to comfort and encourage Julie"} +{"qid": "test2210", "pid": "15765216", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States House of Representatives elections in Utah\"\n2012 United States House of Representatives elections in Utah The 2012 United States House of Representatives elections in Utah were held on Tuesday, November 6, 2012 and elected the four U.S. Representatives from the state of Utah, an increase of one seat in reapportionment following the 2010 United States Census. The elections coincided with the elections of other federal and state offices, including a quadrennial presidential election and an election to the U.S. Senate. Primary elections were held on June 26, 2012. In Utah, the redistricting process was controlled by members of the Republican Party, who formed a majority on"} +{"qid": "test2210", "pid": "15099601", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States Senate election in Pennsylvania\"\nDemocratic and Republican. Additionally, Republicans have controlled the State Senate since 1995, while Democrats assumed control of the State House following the 2006 election, only to lose control in the 2010 election. Democrats had won the state in every presidential election from 1992 to 2012. In January 2012, the Pennsylvania Republican Party officially endorsed Steve Welch for U.S. Senate. The largest state newspaper, \"\"Philadelphia Inquirer,\"\" also endorsed Welch. He was also endorsed by the \"\"Pittsburgh Post-Gazette.\"\" However, he was criticized for changing his party registration. In 2008, he became a Democrat so he could vote for Barack Obama in the"} +{"qid": "test2210", "pid": "14749077", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Corey Stapleton\"\nParty \"\"Contract with America\"\" and put Montana Republicans back into control of the House and split control of the Montana State Senate. Stapleton ran for Governor of Montana with former State Senator Bob Keenan as running mate in 2012. He lost to former U.S. Congressman Rick Hill, who won the seven-candidate Republican primary with a plurality of 34% of the vote. Stapleton ranked second with 18% of the vote, sixteen points behind Hill. He won only two counties in the state: Yellowstone (33%) and Treasure (29%). In early 2013, he decided to run for the U.S. Senate and challenge longtime"} +{"qid": "test2210", "pid": "20217169", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2018 Minnesota House of Representatives election\"\nresulted in the Republicans winning a majority of 76 seats, increasing the majority of 72 seats it won in 2014. It was the first time that a party has retained control of the House of Representatives since the DFL in the 2008 election. In conjunction with the result of the Senate election, it also resulted in the return of all-Republican control of the Legislature since 2012—only the second time the Republicans have held control of both houses since the return of partisan elections to the House in 1974 and the Senate in 1976 and marking the end of two years"} +{"qid": "test2210", "pid": "8931195", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States Senate elections\"\nfirst Democratic Senator from Pennsylvania elected to a second term in 50 years. Pennsylvania was considered a battleground state; since the 1970 election of Governor Milton Shapp, partisan control of the governorship had alternated between Democratic and Republican. Additionally, Republicans had controlled the State Senate since 1995, while Democrats assumed control of the State House following the 2006 election, only to lose control in the 2010 election, though the Democrats had won the state in every presidential election from 1992 to 2012. Despite many predictions of a close race, the election was not close. Casey, the incumbent, despite being seen"} +{"qid": "test2210", "pid": "12054804", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Politics of Colorado\"\nan equal legal position with the Democratic and Republican parties in terms of rights under state election law. However, the Democrats regained the Colorado House by a large margin during the 2012 election. Colorado was a battleground state in the 2008 U.S. Presidential Election between Senator John McCain and Senator Barack Obama. Obama won Colorado, by a margin of 8%, with 53% of the vote to McCain's 45%. Currently, the Assembly is split with Democrats controlling the House and Republicans controlling the Senate. The 64th Colorado General Assembly was the first to be controlled by the Democrats in forty years,"} +{"qid": "test2210", "pid": "19458", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "Arkansas\nonly elected three Republicans to the U.S. Senate since Reconstruction: Tim Hutchinson, who was defeated after one term by Mark Pryor; John Boozman, who defeated incumbent Blanche Lincoln; and Tom Cotton, who defeated Mark Pryor in the 2014 elections. Before 2013, the General Assembly had not been controlled by the Republican Party since Reconstruction, with the GOP holding a 51-seat majority in the state House and a 21-seat (of 35) in the state Senate following victories in 2012. Arkansas was one of just three states among the states of the former Confederacy that sent two Democrats to the U.S. Senate"} +{"qid": "test2210", "pid": "2639262", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Republican Party of Minnesota\"\nSenate, who lost to Amy Klobuchar. In the 2008 U.S. Senate election, incumbent Republican Senator Norm Coleman was defeated by Democratic-Farmer-Labor candidate Al Franken by 312 votes out of over 2.5 million cast after a long series of dramatic and contentious re-counts. The Party of Minnesota was fined $170,000 for violating federal campaign finance regulations from 2003 to 2008. (2011) In 2010, Republicans took control of both houses of the State Legislature for the first time in three decades, only to lose both houses in 2012. Following the 2010 gubernatorial recount, the Minnesota GOP was heavily in arrears, owing $2"} +{"qid": "test2210", "pid": "15797625", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2014 United States elections\"\nelection (82 percent of the total number of state legislative seats in the United States). Republicans won control of 10 legislative chambers: both chambers of the Nevada Legislature, the Minnesota House of Representatives, New Hampshire House of Representatives, the New Mexico House of Representatives, the West Virginia House of Delegates, the Colorado Senate, the Maine Senate, the New York Senate, and the Washington Senate. This increased the total number of Republican-controlled state houses from 57 to 67. The day after the election, Republicans, who achieved a 17-17 tie in the West Virginia Senate, gained control of that chamber as well"} +{"qid": "test2210", "pid": "4530097", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Kansas Republican Party\"\nseats in the House, for 92 total seats, a number last equaled in the 1954 election. As a result, the conservative faction firmly held the executive branch and the House. In the Senate, the moderate and conservative Republican factions were of roughly equal number, allowing the Democrats, who usually aligned with the moderate faction, to control the outcome on divisive issues. The 2012 election did not change the overall number of Republicans in the legislature, but it radically changed the composition of the Senate. After bitter primaries, the conservative Republican candidates prevailed in most races and then went on to"} +{"qid": "test2210", "pid": "8015862", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Robert Gleason\"\nstate chairman. However, in 2010, the party had the most successful cycle in its history, winning that year's gubernatorial election, a Senate seat, five new Congressional seats, retaining control of the State Senate, and retaking control of the State House. In 2012, the party also won 12 new county courthouse majorities and one victory for statewide court. In 2016, Republican Donald Trump won Pennsylvania, the first time a Republican presidential candidate carried Pennsylvania since 1988. Robert Gleason Robert A. \"\"Rob\"\" Gleason, Jr. is an American businessman who formerly served as Chairman of the Republican Party of Pennsylvania. A 1961 graduate"} +{"qid": "test2210", "pid": "16648995", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Ann Rivers\"\nAnn Rivers Ann Rivers (born 1968) is an American politician, who has served as a Republican member of the Washington State Senate since she was appointed to represent the 18th district in 2011, upon the resignation of Joe Zarelli. Prior to this she was a member of the Washington House of Representatives. In her first full term, a Majority Coalition Caucus was formed, taking control away from the Democrats in the state senate. Rivers was appointed to be majority whip for the session, a rare appointment for a freshman senator. She won re-election for another four-year term in 2012, with"} +{"qid": "test2210", "pid": "13545078", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States elections\"\nRepublican. Republicans had gained many chambers in the 2010 mid-term elections, and this was seen as a modest rebalancing. The Colorado House, Maine Legislature, Minnesota Legislature and New Hampshire House had all flipped to Republican rule in 2010 elections, only to flip back to Democratic control in 2012. The Oregon House regained the democratic majority that it had lost in 2010 elections, which produced a 30-30 party split. The transition in the Wisconsin Senate was notable since it undid a brief period of Democratic control following contentious recall efforts in 2011 and earlier in 2012. The Arkansas chambers had been"} +{"qid": "test2210", "pid": "9544066", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"35th Utah State Legislature\"\n35th Utah State Legislature The 35th Utah State Legislature was elected Tuesday, November 6, 1962, and convened on Monday, January 14, 1963. Prior to the 1962 election which brought Republicans to power, Utah Democrats controlled one U.S. Senate seat, both U.S. House districts, the Utah Senate (14-11), the Utah House (36-28) and controlled the majority of County Offices (146-117). After the election, the balance of power shifted to Utah Republicans who controlled the State Senate (13-12), State House (33-31), both Congressional Seats, and one Senate Seat along with the majority of County Offices (133-130). Republicans also elected a Republican as"} +{"qid": "test2210", "pid": "11680436", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Gray Tollison\"\ntwo days after winning his fifth election as a Democrat in the Mississippi Senate. This occurred only after Mississippi Republicans seized the control of House of Representatives & State Senate for the first time since the 1800s. Tollison is a graduate of Oxford High School, Rhodes College and the University of Mississippi School of Law. Gray Tollison Grady Franklin \"\"Gray\"\" Tollison (born September 8, 1964) is a Republican member of the Mississippi Senate, representing District 9 since 1996. In January 2012, Tollison was appointed Chairman of the Senate Education Committee by Lt. Governor Tate Reeves. From 2004 until 2012, he"} +{"qid": "test2210", "pid": "12691617", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 West Virginia elections\"\n17 of the 34 members of the West Virginia Senate were up for election. The state Senate consisted of 28 Democrats and 6 Republicans. This was the first election after the redistricting following the 2010 Census. Democrats won 11 of the 17 races. With the carryover seats the Democrats retained control of the State Senate 23 to 11. All 100 members of the West Virginia House of Delegates were up for election. The state House previously consisted of 65 Democrats and 35 Republicans. This likewise was the first election following the redistricting, with the House districts changed more than those"} +{"qid": "test2210", "pid": "4167068", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Iowa General Assembly\"\non April 19, 2011 for the 2012 elections 85th General Assembly. The IGA convenes annually on the second Monday in January. , the Iowa Senate, House of Representatives and the Governor's office are all controlled by Republicans. Prior to the 2006 elections, Iowa had one of the most evenly divided state legislatures in the country, with a 25–25 split in the Senate and the House composed of 51 Republicans and 49 Democrats. Leaders in the Senate are President Charles Schneider (R), and President Pro Tempore Jerry Behn (R). Partisan Senate leadership includes Majority Leader Jack Whitver (R), and Minority Leader"} +{"qid": "test2210", "pid": "16365920", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 Wisconsin Senate recall elections\"\nThese recall elections followed the largest group of recall elections in U.S. history during the previous year, in which Republicans kept control of the Wisconsin Senate. In the June 5, 2012 recall elections, Democrats appeared to have taken over one seat from Republicans. Although the victory gave Democrats control of the Senate, the state legislature would not be in regular session again until after the November 2012 election when control of the legislature would again be contested. After the November 2012 election, Republicans regained control of the state Senate due to the resignation of one Democrat and two losses by"} +{"qid": "test2210", "pid": "11074312", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2008 United States elections\"\nState Senate, and Governor's mansion were controlled by the Democrats for the first time since the Great Depression. Overall, the Democrats took control of six legislative bodies to the Republicans' four. Democrats took control of the Delaware House of Representatives, Montana House of Representatives, Nevada Senate, New York State Senate, Ohio House of Representatives, and Wisconsin State Assembly. Republicans took control of the Montana Senate; Oklahoma Senate, for the first time in state history; Tennessee House of Representatives, and Tennessee Senate. After the election, Democrats controlled both houses in the state legislatures of 27 states: Alabama, Arkansas, California, Colorado, Connecticut,"} +{"qid": "test2210", "pid": "15548444", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States House of Representatives elections in Colorado\"\nin February 2012. State senator Morgan Carroll; John Morse, the majority leader of the state senate; Andrew Romanoff, a former speaker of the Colorado House of Representatives; and Brandon Shaffer, the president of the Colorado Senate (who will instead run in the 4th district), all decided against running. Colorado's 7th congressional district, which has been represented by Democrat Ed Perlmutter since 2007, was modified in redistricting to include the more populated suburbs of Adams County. Joe Coors Jr., the brother of unsuccessful 2004 U.S. Senate candidate Pete Coors, became the Republican nominee to challenge Perlmutter. 2012 United States House of"} +{"qid": "test2210", "pid": "262433", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "Minnesota\nof Representatives by a 72–62 margin. The 2010 election also saw Minnesota voters elect a Republican majority in the Senate for the first time since 1972. In 2012, the Democrats regained the House of Representatives by a margin of 73–61, picking up 11 seats; the Democrats also regained the Minnesota Senate. Control of the houses shifted back to Republicans in the 2016 election. House Leadership Senate Leadership Minnesota's court system has three levels. Most cases start in the district courts, which are courts of general jurisdiction. There are 279 district court judgeships in ten judicial districts. Appeals from the trial"} +{"qid": "test2210", "pid": "4321990", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Theodore F. Green\"\nloyalty, perseverance, and the Great Depression won him election as governor in 1932. He served two terms (1933–1937). Before the General Assembly convened in January 1935, the Democrats controlled the House of Representatives, but Republicans controlled the Senate by a margin of 22-20. To gain control of the Senate, Green's ally, Lt. Gov. Robert Quinn, who presided over the Senate, refused to allow two Republican senators who were certified as elected to take office. A committee of three senators was appointed to recount the ballots for these two races. Behind closed doors the committee reviewed the ballots and then unanimously"} +{"qid": "test2210", "pid": "16396098", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States House of Representatives elections in Kansas\"\n2012 United States House of Representatives elections in Kansas The 2012 United States House of Representatives elections in Kansas were held on Tuesday, November 6, 2012 to elect the four U.S. Representatives from the state of Kansas. The elections coincided with the elections of other federal and state offices, including a quadrennial presidential election. The 2010 United States Census reflected a shift of population \"\"primarily from rural western and northern Kansas to urban and suburban areas in the eastern part of the state.\"\" In spite of Republican political control of the governor's office, the state senate, the state house, and"} +{"qid": "test2210", "pid": "7209729", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"History of the United States Republican Party\"\ncrises in 2011 and 2012. The Tea Party fielded a number of anti-establishment candidates in the 2014 Republican primaries, but scored very few notable wins. However, they managed to unseat House Majority Leader Eric Cantor in his Virginia primary race. GOP attacks on Obama's unpopular administration resonated with voters and the party posted major gains around the country. They regained control of the Senate and increased their majorities in the House to the highest total since 1929. They took control of governorships, state legislatures and Senate seats in nearly all Southern states, except Florida and Virginia. Great divisions in the"} +{"qid": "test2210", "pid": "2323574", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"Olympia Snowe\"\nsenatorial elections, she won with a reported 73.99% of votes. However, on Tuesday, February 27, 2012, citing excessive partisanship and a dispiriting political environment, Snowe announced she would not run for re-election in November 2012. Her surprise decision delivered a potential blow to Republicans, who needed just a handful of seats to regain control of the Senate; Snowe was considered one of their safer incumbents. On May 23, 2005, Snowe was one of fourteen senators dubbed the Gang of 14, who defused a confrontation between Senate Democrats (who were filibustering several judicial nominees) and the Senate Republican leadership (who wanted"} +{"qid": "test2210", "pid": "12991310", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States Senate election in Connecticut\"\nthe candidate and her husband announced the \"\"intention to reimburse all private individual creditors that can be located\"\". 2012 United States Senate election in Connecticut The 2012 United States Senate election in Connecticut was held on November 6, 2012, in conjunction with the 2012 U.S. presidential election, other elections to the United States Senate in other states, as well as elections to the United States House of Representatives, and various state and local elections. Primaries to elect Senate candidates from the Republican and Democratic parties were held on Tuesday, August 14, 2012. Incumbent U.S. Senator Joe Lieberman, an independent who"} +{"qid": "test2210", "pid": "12991300", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States Senate election in Connecticut\"\n2012 United States Senate election in Connecticut The 2012 United States Senate election in Connecticut was held on November 6, 2012, in conjunction with the 2012 U.S. presidential election, other elections to the United States Senate in other states, as well as elections to the United States House of Representatives, and various state and local elections. Primaries to elect Senate candidates from the Republican and Democratic parties were held on Tuesday, August 14, 2012. Incumbent U.S. Senator Joe Lieberman, an independent who caucuses with the Democratic Party, decided to retire instead of running for re-election to a fifth term. Republican"} +{"qid": "test2210", "pid": "13901682", "query": "who controlled the house and the senate in 2012", "answer": "Republican", "passage": "\"2012 United States Senate election in Nevada\"\n2012 United States Senate election in Nevada The 2012 United States Senate election in Nevada was held on Tuesday, November 6, 2012, alongside 33 other elections to the United States Senate in other states as well as elections to the United States House of Representatives and the 2012 presidential election. The primary election was held June 12, 2012. Incumbent Republican U.S. Senator Dean Heller, who was appointed to this Senate seat in May 2011 following the resignation of Sen. John Ensign, was narrowly elected to his first full term over Congresswoman Shelley Berkley. Ensign was reelected to the United States"} +{"qid": "test2213", "pid": "17381450", "query": "who did puerto rico belong to before the u.s", "answer": "Taíno", "passage": "\"History of women in Puerto Rico\"\nHistory of women in Puerto Rico The recorded history of women in Puerto Rico can trace its roots back to the era of the \"\"Taíno\"\", the indigenous people of the Caribbean, who inhabited the island that they called \"\"Boriken\"\" before the arrival of Spaniards. During the Spanish colonization the cultures and customs of the Taíno, Spanish, African and women from non-Hispanic European countries blended into what became the culture and customs of Puerto Rico. In the early part of the 19th Century the women in Puerto Rico were Spanish subjects and had few individual rights. Those who belonged to the"} +{"qid": "test2213", "pid": "311461", "query": "who did puerto rico belong to before the u.s", "answer": "Spain", "passage": "\"Puerto Rico\"\na naval station, and recognized that it and Cuba generated lucrative crops of sugar – a valuable commercial commodity which the United States lacked, before the development of the sugar beet industry in the United States. On July 25, 1898, during the Spanish–American War, the U.S. invaded Puerto Rico with a landing at Guánica. As an outcome of the war, Spain ceded Puerto Rico, along with the Philippines and Guam, then under Spanish sovereignty, to the U.S. under the Treaty of Paris, which went into effect on April 11, 1899. Spain relinquished sovereignty over Cuba, but did not cede it"} +{"qid": "test2213", "pid": "1004543", "query": "who did puerto rico belong to before the u.s", "answer": "Taíno", "passage": "\"Humacao, Puerto Rico\"\nHumacao, Puerto Rico Humacao () is a municipality in Puerto Rico (U.S.) located in the eastern coast of the island, north of Yabucoa; south of Naguabo; east of Las Piedras; and west of Vieques Passage. Humacao is spread over 10 wards and Humacao Pueblo (The downtown area and the administrative center of the city). It is part of the San Juan-Caguas-Guaynabo Metropolitan Statistical Area. The region of what is now Humacao belonged to the Taíno region of Jumaca, which covered a portion of the southeast coast of Puerto Rico. The region was led by cacique Jumacao (also referred to as"} +{"qid": "test2213", "pid": "1677945", "query": "who did puerto rico belong to before the u.s", "answer": "Taíno", "passage": "\"Aibonito, Puerto Rico\"\nPuerto Rico's towns. It holds the record for the lowest temperature ever recorded in Puerto Rico; because of this, the municipality's nicknames include \"\"The Cold City\"\" and \"\"The Fridge of Puerto Rico.\"\" Before the Spanish colonization of the Americas, it is believed that there were Taíno settlements in the region that belonged to Cacique Orocobix domain. After the Spanish arrived, it is believed that a ranch was established in the region by Pedro Zorascoechea in 1630, which led the development of a hamlet. However, it wasn't until 1822 when Don Manuel Veléz presented himself before the government, representing the inhabitants"} +{"qid": "test2213", "pid": "2117629", "query": "who did puerto rico belong to before the u.s", "answer": "Taíno", "passage": "\"Canóvanas, Puerto Rico\"\nCanóvanas, Puerto Rico Canóvanas () is a municipality in Puerto Rico (U.S.), located in the northeastern region, north of Juncos and Las Piedras; south of Loíza; east of Carolina; and west of Río Grande. Canóvanas is spread over 7 wards and Canóvanas Pueblo (The downtown area and the administrative center of the city). It is part of the San Juan-Caguas-Guaynabo Metropolitan Statistical Area. The region of what is now Canóvanas belonged to the Taíno region of Cayniabón, which stretched from the northeast coast of Puerto Rico into the central region of the island. The region was led by cacique Canobaná-from"} +{"qid": "test2213", "pid": "2613118", "query": "who did puerto rico belong to before the u.s", "answer": "Taíno", "passage": "\"Yabucoa, Puerto Rico\"\nYabucoa, Puerto Rico Yabucoa (, \"\"Yucaland\"\") is a municipality in Puerto Rico (U.S.), located in the eastern region, north of Maunabo; south of San Lorenzo, Las Piedras and Humacao; and east of Patillas. Yabucoa is spread over 9 wards and Yabucoa Pueblo (The downtown area and the administrative center of the city). It is part of the San Juan-Caguas-Guaynabo Metropolitan Statistical Area. The region of what is now Yabucoa belonged to the Taíno region of Guayaney, which covered a portion of the southeast region of Puerto Rico. The region was led by cacique Güaraca. After the Spanish colonization, the region"} +{"qid": "test2215", "pid": "5068552", "query": "who plays dorian tyrell when he puts on the mask", "answer": "Peter Greene", "passage": "\"Peter Greene\"\nPeter Greene Peter Greene (born Peter Green; October 8, 1965) is an American character actor, generally known for playing villains. A native of Montclair, New Jersey, Greene did not pursue a career in acting until his mid 20s. He initially landed several roles in cinema and television in the early 1990s. Greene had roles in \"\"Pulp Fiction\"\", \"\"The Mask\"\", \"\"Clean, Shaven\"\", and \"\"The Usual Suspects\"\" in 1994 and 1995. In \"\"Pulp Fiction\"\", Greene appeared as Zed who rapes Marsellus Wallace. \"\"The Mask\"\" saw him play the villainous Dorian Tyrell opposite Jim Carrey and Cameron Diaz. Greene played the schizophrenic Peter"} +{"qid": "test2215", "pid": "4567737", "query": "who plays dorian tyrell when he puts on the mask", "answer": "Peter Greene", "passage": "\"The Mask (film)\"\nand best friend Charlie Schumaker (Richard Jeni). Meanwhile, gangster Dorian Tyrell (Peter Greene), owner of the Coco Bongo nightclub, plots to overthrow his boss Niko (Orestes Matacena). One day, Tyrell sends his singer girlfriend Tina Carlyle (Cameron Diaz) into Stanley's bank to record its layout, in preparation to rob the bank. Stanley is attracted to Tina, and she seems to reciprocate. Unable to enter the Coco Bongo to watch Tina perform, Stanley finds a wooden mask near the city's harbor. Placing it on his face transforms him into a bizarre, wisecracking green-faced zoot-suited trickster known as \"\"The Mask\"\", who is"} +{"qid": "test2215", "pid": "12559853", "query": "who plays dorian tyrell when he puts on the mask", "answer": "Peter Greene", "passage": "\"The Mask\"\n\"\"The Mask\"\" was released in the United States on July 29, 1994, starring Jim Carrey in the title role. Directed by Chuck Russell, the film co-starred Peter Greene as Dorian Tyrell, Peter Riegert as Lt. Mitch Kellaway, Orestes Matacena as Niko, Richard Jeni as Charlie Schumacher, Amy Yasbeck as Peggy Brandt, and Cameron Diaz, in her screen debut, as Tina Carlyle. Ben Stein has a cameo role as Dr. Arthur Neuman. While there were early efforts to take the film in the direction of horror (some at New Line Cinema saw it as a replacement for their fading \"\"A Nightmare"} +{"qid": "test2216", "pid": "4752235", "query": "who holds the world record for the most world records", "answer": "Ashrita Furman", "passage": "\"Ashrita Furman\"\n2007. Longer than the pencil outside the Malaysia HQ of stationers Faber-Castell, it was transported from Queens, New York, to the City Museum in St. Louis. In April 2009 Furman became the first person to hold 100 Guinness World Records at once. Ashrita Furman Ashrita Furman (born Keith Furman, September 16, 1954) is a \"\"Guinness World Records\"\" record-breaker. As of 2017, Furman has set more than 600 official Guinness Records and currently holds 226 records. His most recent record is 26 watermelons sliced on his stomach in one minute thus holding the record for the most Guinness world records. He"} +{"qid": "test2216", "pid": "4752230", "query": "who holds the world record for the most world records", "answer": "Ashrita Furman", "passage": "\"Ashrita Furman\"\nAshrita Furman Ashrita Furman (born Keith Furman, September 16, 1954) is a \"\"Guinness World Records\"\" record-breaker. As of 2017, Furman has set more than 600 official Guinness Records and currently holds 226 records. His most recent record is 26 watermelons sliced on his stomach in one minute thus holding the record for the most Guinness world records. He has been breaking records since 1979. Furman was born in 1954 in Brooklyn, New York. He was fascinated with the \"\"Guinness Book of World Records\"\" as a child but never thought he could ever break a record, since he was very nonathletic."} +{"qid": "test2217", "pid": "18748924", "query": "when is dragon ball super episode 131 releasing", "answer": "March 25, 2018", "passage": "\"Dragon Ball Super\"\nApril 1, 2018. According to Amazon Japan, the final Blu-ray set indicated the series' end at episode 131. The series ended on March 25, 2018, with the conclusion of the \"\"Universe Survival Saga\"\". Fuji TV stated that no definite plans were made to either continue the series at a later date or discontinue it entirely. \"\"Dragon Ball Super\"\" received an English-language dub that premiered on the Toonami channel in Southeast Asia and India on January 21, 2017. This dub is produced by Los Angeles based Bang Zoom! Entertainment for the Asian market. A sneak preview of the English dub's first"} +{"qid": "test2217", "pid": "10190716", "query": "when is dragon ball super episode 131 releasing", "answer": "March 25, 2018", "passage": "\"Dragon Ball\"\nFunimation titled it for their dub, aired on March 26, 1997, between episodes 41 and 42, serving as a kind of precursor to the epilogue to the series shown at the end of episode 64. On April 28, 2015, Toei Animation announced , the first all-new \"\"Dragon Ball\"\" television series to be released in 18 years. It debuted on July 5 and ran as a weekly series at 9:00 am on Fuji TV on Sundays until its series finale on March 25, 2018 after 131 episodes. Masako Nozawa reprises her roles as Goku, Gohan, and Goten. Most of the original"} +{"qid": "test2218", "pid": "4198738", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"Clare Torry\"\nas a Flight Lieutenant in the RAF, and his wife Dorothy W. Singer (1916-2017), who was the secretary to six BBC Directors-General. By the end of the 1960s, Torry managed to start a career as a performer, mainly based on covers of popular songs. Alan Parsons asked her to take part in Pink Floyd's recording of the album \"\"The Dark Side of the Moon\"\", on the instrumental song penned by Richard Wright going under the name of \"\"The Great Gig in the Sky\"\". On 4 November 1973, Torry also sang \"\"The Great Gig in the Sky\"\" at the Rainbow Theatre"} +{"qid": "test2218", "pid": "2916572", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"The Great Gig in the Sky\"\nCovers\"\" series, with Theresa Thomason taking over vocal duties. The Bluecoats Drum and Bugle Corps, from Canton, Ohio, played an arrangement of the song with multiple trumpets performing the vocal part for their Drum Corps International world championship winning 2016 show \"\"Down Side Up.\"\" The Australian Pink Floyd Show performed the song with Ola Bieńkowska doing a near-exact replica of the vocal. with: The Great Gig in the Sky \"\"The Great Gig in the Sky\"\" is the fifth track on \"\"The Dark Side of the Moon\"\", the 1973 album by the English progressive rock band Pink Floyd. The song features"} +{"qid": "test2218", "pid": "2916560", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\nThe Great Gig in the Sky \"\"The Great Gig in the Sky\"\" is the fifth track on \"\"The Dark Side of the Moon\"\", the 1973 album by the English progressive rock band Pink Floyd. The song features music by Richard Wright and non-lexical vocals by Clare Torry. The song began life as a Richard Wright chord progression, known variously as \"\"The Mortality Sequence\"\" or \"\"The Religion Song\"\". During 1972 it was performed live as a simple organ instrumental, accompanied by spoken-word samples from the Bible and snippets of speeches by Malcolm Muggeridge, a British writer known for his conservative religious"} +{"qid": "test2218", "pid": "2916570", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\nThe Clare Torry section was used in \"\"Good Morning, Night\"\", an Italian movie about the 1978 Aldo Moro kidnapping and assassination. The Clare Torry section was prominently used in the trailer for the 2018 movie \"\"Roma\"\", written and directed by Oscar winner Alfonso Cuarón. On the Easy Star All-Stars' \"\"Dub Side of the Moon\"\" album, there are two different dub music versions of the track, \"\"The Great Gig in the Sky\"\" (Track 4) and \"\"Great Dub in the Sky\"\" (Track 11). The London Philharmonic Orchestra performs an instrumental version, arranged by Jaz Coleman and conducted by Peter Scholes, on the"} +{"qid": "test2218", "pid": "15189581", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"Rachel Fury\"\nby her former boyfriend James Guthrie, Pink Floyd's longtime recording engineer. She sang with Pink Floyd on tour from 1987 to 1989, and appears on both the concert film and live album \"\"Delicate Sound of Thunder\"\", the Italian TV broadcast of the 1989 Pink Floyd concert in Venice, and the (bootlegged) MTV taping of the 1987 concert at the Omni in Atlanta. In these live performances, Fury is noted for the opening vocals on \"\"The Great Gig in the Sky\"\" and for harmonising with David Gilmour on \"\"Comfortably Numb\"\". Rachel Fury Rachel Fury is the stage name of Rachel Brennock,"} +{"qid": "test2218", "pid": "4198743", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"Clare Torry\"\n2005 carry an additional credit \"\"Vocal composition by Clare Torry\"\" for the \"\"Great Gig in the Sky\"\" segment. In February 2006, Clare Torry released a CD \"\"Heaven in the Sky\"\", a collection of her early pop tunes from the 1960s and 1970s. Clare Torry Clare H. Torry (born 29 November 1947) is a British singer, best known for performing the wordless vocals on the song \"\"The Great Gig in the Sky\"\" by the group Pink Floyd on their 1973 album \"\"The Dark Side of the Moon\"\". She also covered the Dolly Parton single \"\"Love Is Like a Butterfly\"\" for the"} +{"qid": "test2218", "pid": "2207017", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"Sam Brown (singer)\"\non their tour to promote the release. Her involvement was documented on the following year's Pink Floyd release, \"\"Pulse\"\", in which she sang backing vocals and was the first lead vocalist on the song \"\"The Great Gig in the Sky\"\". In 1995, she had a minor chart hit with a duet with fellow singer-songwriter Fish, entitled \"\"Just Good Friends\"\". In 1997, Brown returned with her fourth studio album \"\"Box\"\", released via the independent record label Demon Music Group. Tracks on this album included \"\"Embrace the Darkness\"\", \"\"Whisper\"\" and \"\"I Forgive You\"\" which was co-written with Maria McKee. McKee's version of"} +{"qid": "test2218", "pid": "2916569", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\nfeatures a version sung by Sam Brown, Durga McBroom and Claudia Fontaine. When the Floyd's manager, Steve O'Rourke, died in 2003, Gilmour, Wright, and Mason played \"\"Fat Old Sun\"\" and \"\"The Great Gig in the Sky\"\" at O'Rourke's funeral. A short clip of the song was used in a 1974 TV advertisement for Dole bananas. A re-recorded version was used as the backing music in a UK television advertisement for the analgesic Nurofen in 1990. The band was not involved in this version, but Clare Torry again did the vocal with Neil Conti on drums and Lati Kronlund on bass."} +{"qid": "test2218", "pid": "2916565", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\nbasis that her contribution to \"\"Great Gig in the Sky\"\" constituted co-authorship with Richard Wright. Originally, she had been paid the standard Sunday flat studio rate of £30 (). In 2005, prior to a hearing in the High Court, an out-of-court settlement was reached. Although the terms of the settlement were not disclosed, all pressings after 2005 list the composition to Richard Wright and Clare Torry. On \"\"Classic Albums: Pink Floyd – The Making of The Dark Side of the Moon\"\", it is pointed out that during the recording of the album, in which death and life had been a"} +{"qid": "test2218", "pid": "2916567", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\n[Pink Floyd] could have \"\"shortened or dispensed\"\". However, in a readers poll from the same magazine, the track was selected as the second greatest vocal performance of all time behind Bohemian Rhapsody. An early incarnation of the song, titled \"\"The Mortality Sequence\"\" and lacking the vocals later contributed by Clare Torry, was performed by Pink Floyd throughout 1972. In its final version, \"\"The Great Gig in the Sky\"\" was performed live from 1973–1975, and from 1987–1994. During the band's 1974–1975 tour, David Gilmour played both pedal steel guitar and the Hammond organ, allowing Richard Wright to concentrate solely on piano"} +{"qid": "test2218", "pid": "2916571", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\n1995 album \"\"\"\". Phish does a live cover on track 6 of disc 3 of \"\"Live Phish Vol. 7\"\". Seattle local band The Squirrels did a full-length parody \"\"tribute\"\" of \"\"The Dark Side of the Moon\"\" in 1999 entitled \"\"The Not-So-Bright Side of the Moon\"\". Their version of \"\"Great Gig\"\" has vocalist Baby Cheevers singing after guitarist Joey Kline says \"\"Sorry, the girl didn't show up!\"\" On the 2009 Flaming Lips remake of \"\"Dark Side\"\", Peaches performs Clare Torry's vocals and Henry Rollins recreates the interview samples. The progressive metal band Dream Theater performs this song in their \"\"Official Bootlegs:"} +{"qid": "test2218", "pid": "2916568", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\n(his keyboards were arranged where he couldn't play both). Gilmour's pedal steel for \"\"Great Gig\"\" was located accordingly beside Wright's Hammond. Starting in 1987, additional touring keyboardist Jon Carin took over the Hammond parts. Up to three singers performed the vocals, each taking different parts of the song. On the 1974–75 tour, vocal duties were handled by Venetta Fields and Carlena Williams, both former members of The Blackberries. On the \"\"Delicate Sound of Thunder\"\" video, the vocals are shared by Rachel Fury, Durga McBroom and Margret Taylor. Clare Torry returned for the Knebworth '90 concert. The 1994 live album \"\"P•U•L•S•E\"\""} +{"qid": "test2218", "pid": "18296955", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"Octavarium Tour\"\nthe second night in both cities, the band covered the entirety of Pink Floyd's \"\"The Dark Side of the Moon\"\" album. Theresa Thomason, who had previously performed on \"\"Scenes From a Memory\"\", was flown in to perform vocals on \"\"The Great Gig in the Sky\"\". The London performance was released as a live album and concert video in 2006 by Portnoy's YtseJam Records. The band covered all of Deep Purple's \"\"Made in Japan\"\" at concerts in Tokyo and Osaka; a recording of which was also released as a live album by YtseJam Records in 2007. To celebrate the band's twentieth"} +{"qid": "test2218", "pid": "10346739", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"Good Morning, Night\"\nand Rai Cinema in collaboration with Sky Italia, and distributed in theaters by 01 Distribution. It was recognized as being of national cultural interest by the Directorate General for Cinema of the Italian Ministry of Cultural Heritage and Activities, based on the ministerial resolution of 17 June 2002. The original music of the film was composed by Riccardo Giagni. The film's soundtrack also includes compositions by Franz Schubert, Giuseppe Verdi and Jacques Offenbach, as well as two of the most famous songs by Pink Floyd, \"\"The Great Gig in the Sky\"\" and \"\"Shine On You Crazy Diamond\"\" - for example,"} +{"qid": "test2218", "pid": "4725875", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"Octavarium (album)\"\nfans, the band became physically and mentally drained. Dream Theater performed two shows on consecutive nights both in Amsterdam and London. On the second night in both cities, the band covered the entirety of Pink Floyd's \"\"The Dark Side of the Moon\"\" album. Theresa Thomason, who had previously performed on \"\"Scenes From a Memory\"\", was flown in to perform vocals on \"\"The Great Gig in the Sky\"\". The London performance was released as a live album and concert video in 2006 by Portnoy's YtseJam Records. The band covered all of Deep Purple's \"\"Made in Japan\"\" at concerts in Tokyo and"} +{"qid": "test2218", "pid": "4198737", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"Clare Torry\"\nClare Torry Clare H. Torry (born 29 November 1947) is a British singer, best known for performing the wordless vocals on the song \"\"The Great Gig in the Sky\"\" by the group Pink Floyd on their 1973 album \"\"The Dark Side of the Moon\"\". She also covered the Dolly Parton single \"\"Love Is Like a Butterfly\"\" for the opening titles of the BBC TV series \"\"Butterflies\"\", which ran for four series between 1978 and 1983. Clare Torry was born in November 1947 in Marylebone to Geoffrey Napier Torry (1916-1979), who combined careers as Lieutenant-Commander in the Fleet Air Arm and"} +{"qid": "test2218", "pid": "530156", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Dark Side of the Moon\"\nand anxiety of modern travel, in particular Wright's fear of flying. \"\"Time\"\" examines the manner in which its passage can control one's life and offers a stark warning to those who remain focused on mundane aspects; it is followed by a retreat into solitude and withdrawal in \"\"Breathe (Reprise)\"\". The first side of the album ends with Wright and vocalist Clare Torry's soulful metaphor for death, \"\"The Great Gig in the Sky\"\". Opening with the sound of cash registers and loose change, the first track on side two, \"\"Money\"\", mocks greed and consumerism using tongue-in-cheek lyrics and cash-related sound effects."} +{"qid": "test2218", "pid": "15844539", "query": "who sang on great gig in the sky", "answer": "Pink Floyd", "passage": "\"Peter Watts (road manager)\"\nreplicating the \"\"exploded\"\" drawings of military aircraft and their payloads, which were popular at the time. On the 1973 album \"\"The Dark Side of the Moon\"\", he contributed the repeated laughter during \"\"Brain Damage\"\", also heard in the album's overture, \"\"Speak to Me\"\". His wife Patricia 'Puddie' Watts was responsible for the line about the \"\"geezer\"\" who was \"\"cruisin' for a bruisin used in the segue between \"\"Money\"\" and \"\"Us and Them\"\", and the words \"\"I never said I was frightened of dying.\"\" heard near the end of \"\"The Great Gig in the Sky\"\". Peter Watts left Pink Floyd in"} +{"qid": "test2218", "pid": "2916564", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Great Gig in the Sky\"\nWaters: Alan Parsons: David Gilmour: Clare Torry: Chris Thomas, who was brought in to assist Alan Parsons in mixing the album mentions that they were actually in mixdown at the time. On the DVD \"\"Classic Albums: Pink Floyd – The Making of The Dark Side of the Moon\"\", various members mention that they had this song and weren't quite sure what to do with it. Wright further mentions that when she finished, she was apologetic about her performance even though those present were amazed at her improvisation. In 2004, Torry sued Pink Floyd and EMI for songwriting royalties, on the"} +{"qid": "test2218", "pid": "530145", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Dark Side of the Moon\"\nmonths before recording began. New material was recorded in two sessions in 1972 and 1973 at Abbey Road Studios in London. The group used advanced recording techniques at the time, including multitrack recording and tape loops; analogue synthesizers are prominent, and snippets from interviews with Pink Floyd's road crew and others provide philosophical quotations. Engineer Alan Parsons was responsible for many sonic aspects and the recruitment of singer Clare Torry, who appears on \"\"The Great Gig in the Sky\"\". The iconic sleeve was designed by Storm Thorgerson; following keyboardist Richard Wright's request for a \"\"simple and bold\"\" design, it depicts"} +{"qid": "test2218", "pid": "13898859", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Flaming Lips and Stardeath and White Dwarfs with Henry Rollins and Peaches Doing The Dark Side of the Moon\"\nalbum's interview samples. The album also features the singer Peaches who performed Clare Torry's vocal segment of \"\"The Great Gig in the Sky\"\". For writing credits, see the original album's article. All songs published by World Copyrights Ltd. The band, along with Stardeath and White Dwarfs, played the album in its entirety on the annual New Year's Eve FREAKOUT curated by them in their hometown of Oklahoma City, right after the clocks marked the beginning of 2010. The Flaming Lips and Stardeath and White Dwarfs with Henry Rollins and Peaches Doing The Dark Side of the Moon The Flaming Lips"} +{"qid": "test2218", "pid": "530152", "query": "who sang on great gig in the sky", "answer": "Clare Torry", "passage": "\"The Dark Side of the Moon\"\nthe Floyd's artistic intention is now vast.\"\" \"\"Melody Maker\"\" was less enthusiastic: \"\"Musically, there were some great ideas, but the sound effects often left me wondering if I was in a bird-cage at London zoo.\"\" The following tour was praised by the public. The new material was performed in the same order in which it was eventually recorded; differences included the lack of synthesizers in tracks such as \"\"On the Run\"\", and Bible readings replaced by Clare Torry's vocals on \"\"The Great Gig in the Sky\"\". Pink Floyd's lengthy tour through Europe and North America gave them the opportunity to"} +{"qid": "test222", "pid": "5092128", "query": "when did jack mccoy join law and order", "answer": "1994", "passage": "\"Jack McCoy\"\n\"\"some of the best episodes of the immortal series' 19th season.\"\" Tucker elaborates how the character, riding \"\"herd over a couple of stubborn young bucks — assistant DAs Mike Cutter (Linus Roache) and Connie Rubirosa (Alana de la Garza) — McCoy argues, bellows orders, and croaks with outrage when his charges disobey his legal advice.\"\" Jack McCoy John James McCoy is a fictional character in the television drama \"\"Law & Order\"\". He was created by Michael S. Chernuchin and portrayed by Sam Waterston from 1994 until the end of the series in 2010. He is the second-longest tenured character on"} +{"qid": "test222", "pid": "5092106", "query": "when did jack mccoy join law and order", "answer": "1994", "passage": "\"Jack McCoy\"\nJack McCoy John James McCoy is a fictional character in the television drama \"\"Law & Order\"\". He was created by Michael S. Chernuchin and portrayed by Sam Waterston from 1994 until the end of the series in 2010. He is the second-longest tenured character on the show (16 seasons), after Lt. Anita Van Buren (17 seasons; portrayed by S. Epatha Merkerson). He appeared in 368 episodes of \"\"Law & Order\"\", four episodes of \"\"\"\", two episodes of \"\"\"\", two episodes of \"\"\"\", and the made-for-TV movie \"\"\"\". Waterston's performance as McCoy on the New York-based series was so popular that"} +{"qid": "test222", "pid": "20154812", "query": "when did jack mccoy join law and order", "answer": "1994", "passage": "\"Law & Order: Special Victims Unit (season 19)\"\nof \"\"SVU\"\" (\"\"Something Happened\"\"). Walters played the rape victim, Laurel Linwood, who knows she was raped but can't remember what happened. Going played Laurel's sister, Leah, who is brought in to help fill in the blanks. On September 20, 2017, it was announced Sam Waterston would guest star in an upcoming episode of \"\"SVU\"\" as his \"\"Law & Order\"\" character, Jack McCoy. Waterston was re-united with show runner/EP Michael S. Chernuchin, who also held the same position at the time Waterston joined the original series in 1994; Chernuchin is credited as the creator of the McCoy character. This also marked"} +{"qid": "test222", "pid": "1455222", "query": "when did jack mccoy join law and order", "answer": "1994", "passage": "\"Sam Waterston\"\nseries \"\"Amazing Stories\"\" called \"\"Mirror Mirror\"\". In 1994, he appeared as US President William Foster, alongside Forest Whitaker and Dana Delany, in the television film \"\"The Enemy Within\"\", a remake of director John Frankenheimer's Cold War political thriller \"\"Seven Days in May\"\". In 1994, Waterston debuted as Executive Assistant District Attorney Jack McCoy in the fifth season of the television series \"\"Law & Order\"\". He played the role of McCoy, who would eventually become District Attorney, through the series finale in 2010, and has reprised the role throughout the \"\"Law and Order\"\" franchise. Upon the show's cancellation, Waterston was the"} +{"qid": "test2221", "pid": "5094489", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"English Australia\"\npurposes: IELTS – International English Language Testing System test. TOEFL iBT – Test of English as a Foreign Language internet-Based test OR TOEFL PBT – TOEFL Paper-Based Test (where IELTS is not available). PTE – Pearson Test of English. CAE – Cambridge English: Advanced test (Certificate in Advanced English), and the OET – Occupational English Test for healthcare professionals who want to register and work in an English-speaking environment. There are three main ways that you can apply to study ELICOS in Australia. The first is by applying directly to the school. The ELICOS website provides users with a list"} +{"qid": "test2221", "pid": "2001729", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Test of English as a Foreign Language\"\neffort to all of the questions because they do not know which question will count and which will be considered extra. For example, if there are four reading passages instead of three, then one of the passages will not be counted. Any of the four could be the uncounted one. The TOEFL PDT is an official test for use where the internet test is unavailable, usually due to internet & computer issues. It consists of the Listening, Reading, and Writing sections, with scores that are the same scale as the Internet Based Test. There is no total score. The TOEFL®"} +{"qid": "test2221", "pid": "2001727", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Test of English as a Foreign Language\"\nintroduction in late 2005, the TOEFL Internet-based Test (iBT) format has progressively replaced the computer-based tests (CBT) and paper-based tests (PBT), although paper-based testing is still used in select areas. The TOEFL iBT test has been introduced in phases, with the United States, Canada, France, Germany, and Italy in 2005 and the rest of the world in 2006, with test centers added regularly. The CBT was discontinued in September 2006 and these scores are no longer valid. Initially, the demand for test seats was higher than availability, and candidates had to wait for months. It is now possible to take"} +{"qid": "test2221", "pid": "2001730", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Test of English as a Foreign Language\"\npaper-based Test (PBT) was available in limited areas until 2017, when it was replaced by the Paper-delivered test. Scores are valid for two years after the test date, and test takers can have their scores sent to institutions or face time. The TOEFL PBT was discontinued at the end of May 2017. Official testing in areas without internet or computers now uses the TOEFL PDT. Most colleges use TOEFL scores as only one factor in their admission process, with a college or program within a college often setting a minimum TOEFL score required. The minimum TOEFL iBT scores range from"} +{"qid": "test2221", "pid": "2001723", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Test of English as a Foreign Language\"\nTest of English as a Foreign Language Test of English as a Foreign Language® (TOEFL ) is a standardized test to measure the English language ability of non-native speakers wishing to enroll in English-speaking universities. The test is accepted by many English-speaking academic and professional institutions. TOEFL is one of the two major English-language tests in the world, the other being the IELTS. TOEFL is a trademark of the Educational Testing Service (ETS), a private non-profit organization, which designs and administers the tests. ETS issues official score reports, sent independently to institutions, for two years following the test. In 1962,"} +{"qid": "test2221", "pid": "2001733", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Test of English as a Foreign Language\"\n(on paper) and \"\"TOEFL Junior\"\" Comprehensive (via computer). The \"\"TOEFL Junior\"\" Standard test has three sections: Reading Comprehension, Listening Comprehension and Language Form and Meaning. The \"\"TOEFL Junior\"\" Comprehensive test has four: Reading Comprehension, Listening Comprehension, Speaking and thWriting. \"\"TOEFL Junior\"\" scores are mapped to the CEFR and test takers are provided with a certificate of achievement. Test of English as a Foreign Language Test of English as a Foreign Language® (TOEFL ) is a standardized test to measure the English language ability of non-native speakers wishing to enroll in English-speaking universities. The test is accepted by many English-speaking academic"} +{"qid": "test2221", "pid": "2001731", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Test of English as a Foreign Language\"\n61 (Bowling Green State University) to 110 (University of Oxford). ETS has released tables to convert between iBT, CBT and PBT scores. \"\"TOEFL ITP\"\" (\"\"ITP\"\" stands for \"\"Institutional Testing Program\"\") tests are paper-based and use academic content to evaluate the English-language proficiency of non-native English speakers. The tests use new and previously administered TOEFL test questions and are used for placement, progress, evaluation, exit testing and other situations. The test scores, format and content of the test matches the \"\"TOEFL PBT\"\", with the exception of not including the TWE (Test of Written Expression). Unlike the TOEFL iBT and PBT tests,"} +{"qid": "test2221", "pid": "11804994", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Language assessment\"\nthe ECPE (Examination for the Certificate of Proficiency in English) exam, under contract to the United States Information Agency, for use abroad. TOEFL was launched in 1961 and was designed to assess the English language ability of students applying for admission to U.S. and Canadian colleges and universities. This test, which is used widely around the world, is still in use although it is now only available in the internet-based format (now called the TOEFL iBT). Many tests from other companies, universities and agencies compete for this market: iTEP (International Test of English Proficiency), the Canadian English Language Proficiency Index"} +{"qid": "test2221", "pid": "19444906", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Canadian Academic English Language Assessment\"\nCanada and the United States of America require proof of English language proficiency as one of their admission requirements. The most common English language proficiency tests other than the CAEL Assessment include: the International English Language Testing System (IELTS), Test of English as a Foreign Language (TOEFL), the Michigan English Language Assessment Battery (MELAB), Test of English for International Communication (TOEIC), the Pearson Test of English Academic (PTE Academic), and more. Canadian Academic English Language Assessment The Canadian Academic English Language, or CAEL (), Assessment is a standardized test designed to measure English language proficiency for admission to college and"} +{"qid": "test2221", "pid": "10357283", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"English Language Proficiency Test\"\nEnglish Language Proficiency Test The English Language Proficiency Test (ELPT) was the name of a SAT II last administered in January 2005. It was a one-hour multiple choice test given on English language proficiency by The College Board. A student whose native language was not English could have chosen to take this test instead of or in addition to Test of English as a Foreign Language (TOEFL) for college entrance depending upon requirements of the schools in which the student was planning to apply. Until 1994, the SAT II's were known as Achievement Tests. The ELPT assessed both the understanding"} +{"qid": "test2221", "pid": "13053006", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Virginia International University\"\norganizations, multinational corporations, news outlets, and policy research institutions. The School of Language Studies at VIU includes two tracks to help develop and improve upon a student's English proficiency: intensive ESL (focusing on academic English and IELTS or TOEFL test preparation) and non-intensive ESL (e.g., business English, advanced speaking, TOEFL preparation). The School of Online Education offers online courses: completely Internet-based with no face-to-face meetings. All VIU programs, with the exception of Undergraduate Certificate Programs, are also offered online. The School of Test Preparation specializes in preparing students for standardized tests, major fields tests, and licensing. Other programs include teacher"} +{"qid": "test2221", "pid": "8475951", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Gulf University for Science and Technology\"\nits first commencement ceremony in June 2007, GUST conferred diplomas on approximately four hundred graduates. Admission to GUST is on a competitive basis. Applicants are reviewed based on high school performance and achievement on the GUST English and Mathematics Placement Tests. Applicants are encouraged to submit the results of a Test of English as a Foreign Language (TOEFL). Test scores must be no more than two years old at the time of application. Students who do not have a valid TOEFL score must take the GUST English Placement Test. The Center of Career Services and Alumni provides career-planning services to"} +{"qid": "test2221", "pid": "11804992", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Language assessment\"\ngreater weight may be given to one aspect or the other. The earliest works in language assessment in the United States date back to the 1950s to the pioneering studies and test created by Robert Lado and David Harris. The earliest large scale assessments in the United States were referred to as the Michigan Tests, developed by the English Language Institute at the University of Michigan, now known as CaMLA, and the \"\"Test of English as a Foreign Language\"\" (TOEFL) developed by Educational Testing Service (ETS), Princeton, New Jersey. The English Language Institute at the University of Michigan (CaMLA) was"} +{"qid": "test2221", "pid": "20515697", "query": "internet based test of english as a foreign language test", "answer": "TOEFL", "passage": "\"Washback effect\"\npublishers. With globalization, the world has witnessed an increase in Internationalization of Higher Education, which has resulted in a dramatic increase in the number of international students in the last 25 years. The prominence of English alongside this internationalization process has also seen the use of international tests of English such as Test of English for International Communication (TOEIC), Test of English as a Foreign Language (TOEFL), and International English Language Testing System (IELTS) as standard tools in the wider learning community. The increasing weight of these tools in education raises questions about the impact of such tests on teaching"} +{"qid": "test2222", "pid": "15240830", "query": "premier league players to score 5 goals in one game", "answer": "Alan Shearer", "passage": "\"Harry Kane\"\na 3–0 group stage win against Cypriot champions APOEL. He was awarded Premier League Player of the Month for the fifth time, and named September 2017 – in which he scored 13 goals in 10 club and international games – as the best month of his career. On 23 December, Kane equalled Alan Shearer's record of 36 Premier League goals in a calendar year, having scored a hat-trick in a 0–3 away win to Burnley. He surpassed Shearer's record the following game with another hat-trick in the 5–2 home win against Southampton, ending the year with 39 Premier League goals."} +{"qid": "test2222", "pid": "4502057", "query": "premier league players to score 5 goals in one game", "answer": "Dimitar Berbatov", "passage": "\"Dimitar Berbatov\"\nfor Manchester United in all competitions, thus becoming Manchester United's 50th player to score 50 goals for the club. This was also his first goal of the 2011–12 Premier League season. On 26 December 2011, Berbatov scored a hat-trick in a 5–0 win against Wigan Athletic. This was Berbatov's fourth Premier League hat trick for Manchester United and fifth overall in the division. In the next league game against Blackburn Rovers, Berbatov gave away a first half penalty, when he dragged Christopher Samba to the ground. In the second half, after going 2–0 behind, United responded quickly with two goals"} +{"qid": "test2222", "pid": "6662936", "query": "premier league players to score 5 goals in one game", "answer": "Alan Shearer", "passage": "\"Sergio Agüero\"\nseasons in the division. Three days later, he scored his 100th Premier League goal in a 1–1 draw at Newcastle. He reached the century in 147 games, second only to Alan Shearer who did so in 124. The goal was also Agüero's sixth against Newcastle for the season, making his just the sixth player in the Premier League era to have scored six goals against the same club in a single campaign. Agüero ended the 2015–16 Premier League season with 24 goals, one behind Golden Boot winner Harry Kane and level with Jamie Vardy. However, with his goals coming from"} +{"qid": "test2222", "pid": "6657502", "query": "premier league players to score 5 goals in one game", "answer": "Alan Shearer", "passage": "\"1992–93 in English football\"\nPaul McGrath. Gary Pallister played every minute of Manchester United's title-winning Premier League campaign. No other player matched that feat until the 2014–15 season, more than two decades later. Coventry signed Newcastle striker Micky Quinn for a nominal fee in November, and he responded by scoring 17 Premier League goals (the first 10 in 6 games) to keep the Sky Blues clear of relegation. Striker Les Ferdinand established himself as one of the country's top marksmen with more than 20 goals in all competitions for Queens Park Rangers. Alan Shearer scored 16 goals in his first 21 Premier League games"} +{"qid": "test2222", "pid": "14552434", "query": "premier league players to score 5 goals in one game", "answer": "Dimitar Berbatov", "passage": "\"Premier League Golden Boot\"\ngoals scored to be bestowed the award, however, is 18 goals; this was achieved during the 1997–98 and 1998–99 seasons, when the award was shared between three players both times. The latter season marked the last time the Golden Boot was shared until 2010–11, when Dimitar Berbatov and Carlos Tevez both scored 20 goals that season to tie for the award. Harry Kane recorded the highest goals-to-games ratio to win the award, scoring 29 goals in 30 games in 2016–17 for a rate of 0.97. General Specific Premier League Golden Boot The Premier League Golden Boot is an annual association"} +{"qid": "test2222", "pid": "4326861", "query": "premier league players to score 5 goals in one game", "answer": "Alan Shearer", "passage": "\"Jermain Defoe\"\n23 September 2009, Defoe scored a header during Tottenham's 5–1 win over Preston. Defoe scored a goal and was sent off during the match against his former club, Portsmouth. Defoe scored five goals at White Hart Lane in a 9–1 thrashing of Wigan on 22 November 2009. This included the second-fastest hat-trick in Premier League history, which was scored in seven minutes. In doing so, Defoe became only the third player to score five goals in one Premier League match, after Alan Shearer and Andy Cole. Dimitar Berbatov and Sergio Agüero have subsequently equalled this feat. After the match, Harry"} +{"qid": "test2223", "pid": "2375923", "query": "how many walker texas ranger seasons are there", "answer": "Eight", "passage": "\"Walker, Texas Ranger\"\nWalker, Texas Ranger Walker, Texas Ranger is an American action crime television series created by Leslie Greif and Paul Haggis. It was inspired by the film \"\"Lone Wolf McQuade\"\", with both this series and that film starring Chuck Norris as a member of the Texas Ranger Division. The show aired on CBS in the spring of 1993, with the first season consisting of three pilot episodes. Eight full seasons followed with new episodes airing from September 25, 1993, to May 19, 2001, and reruns continuing on CBS until July 28, 2001. It has been broadcast in over 100 countries and"} +{"qid": "test2223", "pid": "1414190", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Chuck Norris\"\ncommandant's residence in Washington, D.C. On December 2, 2010, he (along with brother Aaron) was given the title honorary Texas Ranger by Texas Governor Rick Perry. In 2010, he won the \"\"Lifetime Achievement Award\"\" at the \"\"ActionFest\"\". In 2017 he was honored as \"\"Honorary Texan\"\" because for many years he has lived at his Texas ranch near Navasota and he starred as Texas Ranger in his movie Lone Wolf McQuade and starred as ranger Cordell Walker in TV series Walker, Texas Ranger. Norris married his classmate, Dianne Kay Holechek (born 1941), in December 1958 when he was 18, and Dianne"} +{"qid": "test2223", "pid": "5499641", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Sons of Thunder (TV series)\"\n1999 CBS line-up. While replacing \"\"Walker, Texas Ranger\"\" (which was on hiatus) in the 8 o'clock Saturday night time slot, the show beat \"\"Walker\"\"'s ratings of the previous two seasons. Producers Chuck and Aaron Norris assumed that the show would be given a season's full of episodes to try to make it on to the CBS line-up. But CBS passed on the show citing budget concerns. Sons of Thunder (TV series) Sons of Thunder is a television show that ran from March to April 1999 on CBS. It was a spin-off of \"\"Walker, Texas Ranger\"\". The two-hour pilot, \"\"Sons of"} +{"qid": "test2223", "pid": "2375935", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Walker, Texas Ranger\"\nGilyard shot a cameo for the movie but was not featured due to the filming's conflict with a long-planned family vacation. To fill the void, Judson Mills, who was not in the original script, returned to reprise the role of Francis Gage. Nia Peeples, who played the role of Sydney Cooke for Seasons 7 and 8, was also not featured in Walker's return to prime-time television. The explanation given was that producers decided not to follow much of the original \"\"Walker Texas Ranger\"\" series, as to give the movie a fresh look. Even the show's original opening credits with the"} +{"qid": "test2223", "pid": "3355649", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Robert J. Walker\"\na short time he also published, with James R. Gilmore. Walker died in Washington D.C. on November 11, 1869. He is buried at Washington's Oak Hill cemetery. His son-in-law Benjamin H. Brewster became Attorney General under Chester A. Arthur. Many of his papers are held by the University of Pittsburgh, which has digitized them. Initially, Walker County, Texas, was named in his honor. However, due to Walker's support of the Union during the Civil War, the Texas Legislature withdrew the honor and honored Samuel Walker (no relation), a Texas Ranger, instead. The survey ship \"\"Robert J. Walker\"\", which served in"} +{"qid": "test2223", "pid": "2361601", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Texas Ranger Division\"\nstarring Chuck Norris, David Carradine, Barbara Carrera and Robert Beltran follows Texas Ranger J.J. McQuade (Norris) as he investigates a ring of arms dealers. Walter Hill's film \"\"Extreme Prejudice\"\" (1987), starring Nick Nolte, Powers Boothe, Michael Ironside, and María Conchita Alonso, focuses on the fight between a ranger and his former childhood friend, turned drug lord. The television series \"\"Walker, Texas Ranger\"\" (1993-2001) followed the fictional Rangers Cordell Walker and James Trivette, played by Chuck Norris and Clarence Gilyard, Jr.. In the series, Walker and Trivette are assigned to B Company, stationed first in Fort Worth, and later in Dallas."} +{"qid": "test2223", "pid": "2375926", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Walker, Texas Ranger\"\nof investigation. Walker was raised by his paternal uncle, a Native American named Ray Firewalker (Floyd Red Crow Westerman, pilot episode, Season 1; Apesanahkwat, Season 2). The surname being, possibly, a nod to the 1986 Norris film, \"\"Firewalker\"\". Cordell, prior to joining the Rangers, served in the Marines' elite recon unit during the Vietnam War. Both Cordell and Uncle Ray share the values characteristic of Wild West sheriffs. His partner and best friend is James \"\"Jimmy\"\" Trivette (Clarence Gilyard), a former Dallas Cowboys player, \"\"Go Long Trivette\"\", who takes a more modern approach. Walker's young partner grew up in Baltimore"} +{"qid": "test2223", "pid": "9876937", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Grand L. Bush\"\nas either a writer, producer or director (\"\"The Renegades 1983\"\", \"\"The Incredible Hulk\"\", \"\"Airwolf\"\", \"\"Renegade\"\", and \"\"Walker, Texas Ranger\"\"). More than 35 feature films in which Bush has appeared have been archived as Turner Classic Movies, including \"\"Street Fighter Extreme Edition\"\". Bush and actor Clarence Gilyard played brothers on \"\"Walker, Texas Ranger\"\" and co-starred in the film \"\"Die Hard\"\". The \"\"Walker, Texas Ranger\"\" episode \"\"Brothers in Arms\"\" was written specifically for Bush by friend, Nicholas Corea, while Corea lay on his deathbed. Bush viewed the episode privately with Corea's widow. In 1991, Bush met his future wife, Sharon Crews, on"} +{"qid": "test2223", "pid": "912791", "query": "how many walker texas ranger seasons are there", "answer": "8", "passage": "\"Walker County, Texas\"\nWalker County, Texas Walker County is a county located in the east central section of the U.S. state of Texas. As of the 2010 census, its population was 67,861. Its county seat is Huntsville. Initially, Walker County was named for Robert J. Walker, a legislator from Mississippi who introduced into the United States Congress the resolution to annex Texas. Walker later supported the Union during the Civil War and earned some enmity. In order to keep the county's name, the state renamed it for Samuel H. Walker, a Texas Ranger and soldier in the United States Army. Walker County is"} +{"qid": "test2224", "pid": "6954566", "query": "how many seasons of from dusk till dawn are there", "answer": "third season", "passage": "\"From Dusk Till Dawn 2: Texas Blood Money\"\nby Bruce Campbell and Tiffani Thiessen. It won a Saturn Award from The Academy of Science Fiction Fantasy & Horror Films for the \"\"Best Home Video Release\"\" of 1999. A third film in the series, \"\"\"\", which is a prequel to \"\"From Dusk Till Dawn\"\" was released in 2000. In late 2010 it was reported that a possible fourth film in the series may be produced. In late 2013 it was reported that a had begun production. The show first premiered in 2014 and finished its third season in 2016. Buck (Robert Patrick) learns from the news that his old"} +{"qid": "test2225", "pid": "11638872", "query": "when is the last time the dolphins went to the superbowl", "answer": "Super Bowl XIX", "passage": "\"1984 Miami Dolphins season\"\n1984 Miami Dolphins season The 1984 Miami Dolphins season was the team's 19th season, and 15th in the National Football League. It was also the 15th season with the team for head coach Don Shula. The Dolphins sought to build on a spectacular 1983 season where they went 12–4 with rookie quarterback Dan Marino, only to be upended by the Seattle Seahawks in the playoffs. The Dolphins won the 1984 AFC Championship, and appeared in Super Bowl XIX, where they lost to the San Francisco 49ers, 38–16. To date this is the last season the Dolphins appeared in the Super"} +{"qid": "test2226", "pid": "5174204", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "James Hutton", "passage": "\"Déodat Gratet de Dolomieu\"\nthat water played a major role in shaping the surface of the Earth through a series of prehistoric, catastrophic events. De Dolomieu was not a uniformitarian geologist. He has been described as a \"\"non-actualistic catastrophist\"\". His contemporary, James Hutton, did not publish the principle of uniformitarianism until 1795. De Dolomieu was an observationalist and spent much of his time collecting and categorizing geological data. Unlike Hutton, no scientific principles or theories are credited to him, although he left his permanent mark on geology in another way: that is by discovering the mineral dolomite that would be named after him. During"} +{"qid": "test2226", "pid": "439922", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "William Whewell", "passage": "Uniformitarianism\nslow-moving forces still in operation today, acting over a very long period of time. The terms \"\"uniformitarianism\"\" for this idea, and \"\"catastrophism\"\" for the opposing viewpoint, were coined by William Whewell in a review of Lyell's book. \"\"Principles of Geology\"\" was the most influential geological work in the middle of the 19th century. Geoscientists support diverse systems of Earth history, the nature of which rest on a certain mixture of views about process, control, rate, and state which are preferred. Because geologists and geomorphologists tend to adopt opposite views over process, rate and state in the inorganic world, there are"} +{"qid": "test2226", "pid": "96910", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "James Hutton", "passage": "\"Charles Lyell\"\nCharles Lyell Sir Charles Lyell, 1st Baronet, (14 November 1797 – 22 February 1875) was a Scottish geologist who popularised the revolutionary work of James Hutton. He is best known as the author of \"\"Principles of Geology\"\", which presented uniformitarianism–the idea that the Earth was shaped by the same scientific processes still in operation today–to the broad general public. \"\"Principles of Geology\"\" also challenged theories popularised by Georges Cuvier, which were the most accepted and circulated ideas about geology in Europe at the time. His scientific contributions included an explanation of earthquakes, the theory of gradual \"\"backed up-building\"\" of volcanoes,"} +{"qid": "test2226", "pid": "6310780", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "James Hutton", "passage": "\"Relative dating\"\nfollowing principles today as a means to provide information about geologic history and the timing of geologic events. The \"\"principle of Uniformitarianism\"\" states that the geologic processes observed in operation that modify the Earth's crust at present have worked in much the same way over geologic time. A fundamental principle of geology advanced by the 18th century Scottish physician and geologist James Hutton, is that \"\"the present is the key to the past.\"\" In Hutton's words: \"\"the past history of our globe must be explained by what can be seen to be happening now.\"\" The \"\"principle of intrusive relationships\"\" concerns"} +{"qid": "test2226", "pid": "156159", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "James Hutton", "passage": "Geology\nof geologic events. The principle of uniformitarianism states that the geologic processes observed in operation that modify the Earth's crust at present have worked in much the same way over geologic time. A fundamental principle of geology advanced by the 18th century Scottish physician and geologist James Hutton is that \"\"the present is the key to the past.\"\" In Hutton's words: \"\"the past history of our globe must be explained by what can be seen to be happening now.\"\" The principle of intrusive relationships concerns crosscutting intrusions. In geology, when an igneous intrusion cuts across a formation of sedimentary rock,"} +{"qid": "test2226", "pid": "9607551", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "James Hutton", "passage": "\"Principles of Geology\"\nestablished Lyell's credentials as an important geological theorist and popularized the doctrine of uniformitarianism (first suggested by James Hutton in \"\"Theory of the Earth\"\" published in 1795). The central argument in \"\"Principles\"\" was that \"\"the present is the key to the past\"\": that geological remains from the distant past could, and should, be explained by reference to geological processes now in operation and thus directly observable. The book is notable for being one of the first to use the term \"\"evolution\"\" in the context of biological speciation. In Lyell's work, he described the three rules he believes to cause the"} +{"qid": "test2226", "pid": "96942", "query": "who is responsible for introducing the principle of uniformitarianism", "answer": "James Hutton", "passage": "\"Charles Lyell\"\nbe the sole preserve of theologians and historians\"\". But when Lyell wrote that it remained a profound mystery how the huge gulf between man and beast could be bridged, Darwin wrote \"\"Oh!\"\" in the margin of his copy. Places named after Lyell: Charles Lyell Sir Charles Lyell, 1st Baronet, (14 November 1797 – 22 February 1875) was a Scottish geologist who popularised the revolutionary work of James Hutton. He is best known as the author of \"\"Principles of Geology\"\", which presented uniformitarianism–the idea that the Earth was shaped by the same scientific processes still in operation today–to the broad general"} +{"qid": "test2227", "pid": "9493727", "query": "when did i ain't mad at cha come out", "answer": "September 15, 1996", "passage": "\"All Eyez on Me\"\nUnderground Shock G both in the concert and studio segments. \"\"I Ain't Mad at Cha\"\" featuring singer Danny Boy, was released shortly after Shakur's death as the final single from the album, on September 15, 1996. For the video the song was re-recorded with a live band. The new track was recorded at Can-Am Studios by Conley Abrams. The video was shot weeks before Shakur's death. \"\"All Eyez on Me\"\" received widespread acclaim. \"\"Spin\"\" magazine gave it 7 out of 10 and said: \"\"As long as you don't expect philanthropy from Tupac, you'll find honesty and some pleasurably twisted scenarios.\"\""} +{"qid": "test2228", "pid": "5126843", "query": "who was the last nba player to get drafted out of high school", "answer": "Thon Maker", "passage": "\"2005 NBA draft\"\nAs of 2016, the only players to have declared for the NBA draft straight out of high school ever since these restrictions took place were Satnam Singh Bhamara (2015) ,Thon Maker (2016) , and Anfernee Simons (2018). This draft is notable for a most recent draft pick from an NAIA (and non-NCAA) school in any round (that pick is Robert Whaley, the 51st pick from Walsh University, which is now in NCAA Division II). These players who declared or were automatically eligible for the 2005 draft, were not selected but have played in the NBA. The following trades involving drafted"} +{"qid": "test2228", "pid": "8850769", "query": "who was the last nba player to get drafted out of high school", "answer": "Thon Maker", "passage": "\"National Basketball Association criticisms and controversies\"\none year out of high school. However, since the implementation of these rules, certain players have used alternative methods to enter the draft, to the point where some players declare while even still playing in high school. Players like Brandon Jennings, Emmanuel Mudiay, and Terrence Ferguson have entered their respective NBA drafts while spending a year out overseas. More recently, some players like Satnam Singh, Thon Maker, and Matur Maker have entered their respective NBA drafts while being considered as high school postgraduates, meaning they've played a fifth year of high school basketball for various reasons instead of go to"} +{"qid": "test2229", "pid": "10845130", "query": "when was the last time a hurricane hit the uk", "answer": "2017", "passage": "\"Eustatia Island\"\nintense. Relative humidity typically ranges from 60-80%. Hurricane season is from June 1 through November 30 with the statistical peak in mid September. The last hurricane to hit Eustatia was Hurricane Irma on September 11, 2017. The island was also hit on August 30, 2010, when Hurricane Earl brushed the area as a Category 4 hurricane. Eustatia Island is approximately in size, 1,870 feet (0.35 miles) in length, 1,020 feet (0.2 miles) in width and is 210 feet in elevation. The terrain is hilly, but not as rugged as some of the BVI’s other islands with most of Eustatia being"} +{"qid": "test223", "pid": "17537755", "query": "who did the music for your lie in april", "answer": "Masaru Yokoyama", "passage": "\"Your Lie in April\"\nof the Blu-ray release of the anime series. It was later published in \"\"tankōbon\"\" format on August 17, 2016. A-1 Pictures has aired the anime production of \"\"Your Lie in April\"\". It premiered on October 10, 2014, in Japan and ended on March 20, 2015. The first opening theme song is by Goose house and the first ending theme song is by wacci. The second opening song is by Coalamode and the second ending theme is by 7!! (Seven Oops). The original soundtracks are composed by Masaru Yokoyama. In North America, Aniplex of America licensed the series within the region,"} +{"qid": "test2231", "pid": "10180861", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"History of the Houston Astros\"\nHistory of the Houston Astros The Houston Astros are an American professional baseball team based in Houston,Texas that competes in Major League Baseball (MLB). The Astros are a member of the MLB's American League, having moved from the National League in 2013. The Astros are one of two MLB teams based out of Texas, the other being the Texas Rangers. The team began with the name Colt .45s in 1962 and changed their name to the Houston Astros in 1965 when they began playing in the Astrodome. The team has played in three ballparks in Houston, Colt .45 Stadium (1962-1964),"} +{"qid": "test2231", "pid": "41819", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"History of baseball in the United States\"\ndid not go into effect until the 1995 World Series. In 1998, the AL and the NL each added a fifteenth team, for a total of thirty teams in Major League Baseball. The Arizona Diamondbacks joined the National League, and the Tampa Bay Devil Rays—now called simply the Rays—joined the American League. In order to keep the number of teams in each league at an even number (14 – AL, 16 – NL), Milwaukee changed leagues and became a member of the National League. In 2013, in keeping with Commissioner Bud Selig's desire for expanded interleague play, the Houston Astros"} +{"qid": "test2231", "pid": "41914", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"National League Division Series\"\n5 is needed, the teams return to the higher seed's field. When MLB added a second wild card team in 2012, the Division Series re-adopted the 2-3 format due to scheduling conflicts. It reverted to the 2-2-1 format from 2013 onwards. NOTE: With the Houston Astros move to the American League at the conclusion of the 2012 season, the Braves vs Astros series is not currently possible. National League Division Series In Major League Baseball, the National League Division Series (NLDS) determines which two teams from the National League will advance to the National League Championship Series. The Division Series"} +{"qid": "test2231", "pid": "183773", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"Houston Astros\"\nHouston Astros The Houston Astros are an American professional baseball team based in Houston, Texas. The Astros compete in Major League Baseball (MLB) as a member club of the American League (AL) West division, having moved to the division in 2013 after spending their first 51 seasons in the National League (NL). The Astros have played their home games at Minute Maid Park since 2000. The Astros were established as the Houston Colt .45s and entered the National League as an expansion team in along with the New York Mets. The current name—reflecting Houston's role as the control center of"} +{"qid": "test2231", "pid": "16823238", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"2013 Houston Astros season\"\n2013 Houston Astros season The 2013 Houston Astros season was the 52nd season for the franchise in Houston, their 49th as the Astros and their 14th season at Minute Maid Park. This season was the first for the Astros as a member of the American League, as they switched from the National League Central division to the American League West division. They started the season against their in-state rival, the Texas Rangers. They beat them 8–2, their first win on Opening Day since 2006. This was to be the only time all season that they were above .500. The Astros"} +{"qid": "test2231", "pid": "10180998", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"History of the Houston Astros\"\nseries of consecutive base hits. The Astros suffered a 9-6 loss and the 2015 ALDS was tied at 2-2. Then the 2015 ALDS went back to Kansas City, where the Royals clinched the series in the fifth game. History of the Houston Astros The Houston Astros are an American professional baseball team based in Houston,Texas that competes in Major League Baseball (MLB). The Astros are a member of the MLB's American League, having moved from the National League in 2013. The Astros are one of two MLB teams based out of Texas, the other being the Texas Rangers. The team"} +{"qid": "test2231", "pid": "16788175", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"2013 Major League Baseball season\"\nNew York City, home of the New York Mets with the American League winning the All-Star Game with a 3–0 shutout of the National League. With the win, the American League champion earned home field advantage for the 2013 World Series.
Several minor rule changes took effect during the 2013 season. These changes were approved by MLB owners; unless otherwise noted, they will also need the approval of the players' union. At the end of the 2012 season, the following teams made replacements to their managers. The Houston Astros' move to the American League West"} +{"qid": "test2231", "pid": "13544804", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"World Series\"\nOhio (Cleveland Indians and Cincinnati Reds), Florida (Tampa Bay Rays and Miami Marlins), Texas (Texas Rangers and Houston Astros – who now both play in the American League since the Astros changed leagues in 2013, making any future joint World Series appearance an impossibility unless one of the teams switches leagues), or Pennsylvania (the Philadelphia Phillies and the Pittsburgh Pirates have been traditional National League rivals going back to the late 19th Century). Neither the Phillies nor the Pirates ever faced the Athletics in October during the latter team's tenure in Philadelphia, through 1954. The Boston Red Sox never similarly"} +{"qid": "test2231", "pid": "14746958", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"History of the American League\"\nrenamed the \"\"Texas Rangers\"\" after the 1971 season. Beginning in 1977, the Toronto Blue Jays and the Seattle Mariners began league play. Before the 1998 season, the Milwaukee Brewers shifted to the National League while an expansion team, the Tampa Bay Devil Rays began play, eventually shortening their name to simply the \"\"Tampa Bay Rays\"\" before the 2008 season. Prior to the 2013 season, the Houston Astros shifted play from the National League to the American League. In the years before the Designated hitter rule was implemented, the American League was heavily outscored by the National League. In 1973, a"} +{"qid": "test2231", "pid": "5803577", "query": "when did the astros change from the national league to the american league", "answer": "2013", "passage": "\"National League Central\"\nMarlins, requested to be moved to the East instead. Despite the Marlins offering to go to the Central, the Pirates instead gave up their spot in the East to the Braves. Since then, the Pirates have tried several times unsuccessfully to be placed back in the East. In 1998, the NL Central became the largest division in Major League Baseball when the Milwaukee Brewers were moved in from the American League Central. In 2013, the Astros moved to the American League West. This division has been dominated by the Cardinals, who have accounted for ten of the 23 division championships,"} +{"qid": "test2233", "pid": "8150804", "query": "what is the name of the restaurant in seinfeld", "answer": "Monk’s", "passage": "\"Monk's Café\"\nMonk’s because there was a poster of the jazz great pianist Thelonious Monk in the office in which they were writing, and they just needed a name. In the original pilot \"\"The Seinfeld Chronicles,\"\" the luncheonette was known as Pete's, and featured a waitress named Claire (played by Lee Garlington); Claire was originally conceived as a regular for the show but was written out (and Pete's replaced by Monk's) by the time the show went to series. Monk's Café Monk's Café is a fictional coffee shop from the NBC sitcom \"\"Seinfeld\"\". The exterior of Tom's Restaurant on the corner of"} +{"qid": "test2233", "pid": "6732438", "query": "what is the name of the restaurant in seinfeld", "answer": "Monk's Café", "passage": "\"Tom's Restaurant\"\nTom's Restaurant Tom's Restaurant is a diner located at 2880 Broadway (on the corner of West 112th Street) in the Morningside Heights neighborhood of Manhattan in New York City. Frequented by students and faculty of nearby Columbia University, it has been owned and operated by the Greek-American family of Minas Zoulis since the 1940s. Tom's Restaurant was the locale that inspired Suzanne Vega's 1987 song \"\"Tom's Diner.\"\" Later, its exterior was used as a stand-in for the fictional Monk's Café in the television sitcom \"\"Seinfeld\"\", where comedian Jerry Seinfeld's eponymous character and his friends regularly gathered to eat. The interior"} +{"qid": "test2234", "pid": "16852525", "query": "when did the log flume closed at alton towers", "answer": "2015", "passage": "\"The Flume (Alton Towers)\"\nThe Flume (Alton Towers) The Flume was a Log Flume at Alton Towers in Staffordshire. It opened in 1981 and was rethemed in 2004 coinciding with its sponsorship by Imperial Leather. The ride was a bath time themed log flume with three drops. It was the longest log flume attraction in the world at the time of opening. The attraction closed in 2015 and was removed a year later for the area's redevelopment into the Wicker Man rollercoaster. The ride was approximately six minutes long and began with the loading of passengers into the boats, which had a maximum capacity"} +{"qid": "test2234", "pid": "9661549", "query": "when did the log flume closed at alton towers", "answer": "2015", "passage": "\"Loggers Leap\"\nLoggers Leap Loggers Leap (also referred to as \"\"Logger's Leap\"\") is a log flume ride in Thorpe Park, UK. It was the tallest log flume ride in the UK when it opened, a record it regained in 2005 with the removal of \"\"\"\"Nightmare Niagara\"\"\"\" from the now-defunct American Adventure theme park near Derby. The ride has been closed since the end of the 2015 season. Logger's Leap, opened in 1989, was manufactured by Mack and was the first major attraction in the now renamed 'Old Town'. The ride is themed around logging in the Canadian countryside and had a soundtrack"} +{"qid": "test2234", "pid": "2252361", "query": "when did the log flume closed at alton towers", "answer": "2015", "passage": "\"Alton Towers\"\nwas the longest flume ride in the world at 886 m. Towards the end of the 2015 season, the ride and the neighboring Tavern closed and was removed in 2016, to make way for the Wicker Man - a Great Coasters International wooden roller coaster and the \"\"Welcome Inn\"\" wicker-themed bar. In 2009, a Sea Life Centre named \"\"Sharkbait Reef\"\" opened in the location previously home to the 3-D Cinema. This includes \"\"touch pools\"\" for interacting with underwater species and a 10-metre underwater tunnel. Cloud Cuckoo Land is aimed at younger children, featuring bright colours and fantasy decor. Attractions include"} +{"qid": "test2235", "pid": "2129819", "query": "when did the prr first begin its passenger service between pittsburgh and philadelphia", "answer": "by 1854", "passage": "\"Pennsylvania Railroad\"\nof operation, it paid a dividend, and continued the dividend without interruption until 1946. The western end of the line was simultaneously built from Pittsburgh east along the banks of the Allegheny and Conemaugh rivers to Johnstown. PRR was granted trackage rights over the Philadelphia and Columbia and gained control of the three short lines connecting Lancaster and Harrisburg, instituting an all-rail link between Philadelphia and Pittsburgh by 1854. In 1857, the PRR purchased the Main Line of Public Works from the state of Pennsylvania, and abandoned most of its canals and inclined planes. The line was double track from"} +{"qid": "test2238", "pid": "19999293", "query": "jharkhand which festival is associated with cattle worship", "answer": "Sohrai", "passage": "\"Culture of Jharkhand\"\nare eaten following the harvest. Sohrai is a cattle festival of Jharkhand's. It is celebrated during the Amavasya of the month of Kartik. It coincides with the Diwali festival. People fast throughout the day, and bathe their cattle. In the evening, sacrifices are offered to the cattle deity. Phaguwa or Holi is the spring festival which falls in the month of Phalgun. In spring, people collect sal flower blossoms and place them on their roofs. There are special songs and dance for this festival. The Sarna festival is celebrated in the month of Ashadha. In this festival, villagers offer sacrifices"} +{"qid": "test2238", "pid": "17770302", "query": "jharkhand which festival is associated with cattle worship", "answer": "Sohrai", "passage": "Sohrai\nSohrai Sohrai is a festival of the Indian states of Jharkhand , Bihar, Chhattisgarh, Odisha, and West Bengal. It is a cattle festival and coincides with Diwali festival. People fast throughout the day and bathe cattle. In the evening, sacrifices are offered to the cattle deity. In Hazaribagh district of Jharkhand an indigenous art form is practised by the women. Ritualistic art is done on mud walls to welcome the harvest and to celebrate the cattle. The women clean their houses and decorate their walls with murals of Sohrai arts. This art form has continued since 10,000-4,000 BC. It was"} +{"qid": "test2238", "pid": "18250092", "query": "jharkhand which festival is associated with cattle worship", "answer": "Sohrai", "passage": "Bandna\nsimilar hardship and hence Nirakar Shiva was bound to make a second visit on the same day, and since then the process is continuing as a tradition in the name of Bandna Parab. Bandna Bandna or Sohrai is a festival in Jharkhand, West Bengal, Assam and Bihar . It is cattle festival celebrated during the Amavashya of Kartik month. Badna is celebrated when the planting of paddy crops is completed. They celebrate it as the festival named “Sohrai”. This festival is celebrated among many communities, like Ho, Kudumi Mahato, Santal etc. When Lord Nirakar shiva (Bara Pahar) created men, he"} +{"qid": "test2238", "pid": "18250088", "query": "jharkhand which festival is associated with cattle worship", "answer": "Sohrai", "passage": "Bandna\nBandna Bandna or Sohrai is a festival in Jharkhand, West Bengal, Assam and Bihar . It is cattle festival celebrated during the Amavashya of Kartik month. Badna is celebrated when the planting of paddy crops is completed. They celebrate it as the festival named “Sohrai”. This festival is celebrated among many communities, like Ho, Kudumi Mahato, Santal etc. When Lord Nirakar shiva (Bara Pahar) created men, he had to provide food for a long time. In due course of time when they multiplied into a sizeable number, Nirakar Shiva advice them to produce their own food by cultivating land. But"} +{"qid": "test2240", "pid": "9314444", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "\"Introduction to genetics\"\nbeing developed to treat people with genetic disorders in an experimental medical technique called gene therapy. However, here the new gene is put in after the person has grown up and become ill, so any new gene is not inherited by their children. Gene therapy works by trying to replace the allele that causes the disease with an allele that works properly. Introduction to genetics Genetics is the study of heredity and variations. Heredity and variations are controlled by genes—what they are, what they do, and how they work. Genes inside the nucleus of a cell are strung together in"} +{"qid": "test2240", "pid": "9314415", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "\"Introduction to genetics\"\nIntroduction to genetics Genetics is the study of heredity and variations. Heredity and variations are controlled by genes—what they are, what they do, and how they work. Genes inside the nucleus of a cell are strung together in such a way that the sequence carries information: that information determines how living organisms inherit various features (phenotypic traits). For example, offspring produced by sexual reproduction usually look similar to each of their parents because they have inherited some of each of their parents' genes. Genetics identifies which features are inherited, and explains how these features pass from generation to generation. In"} +{"qid": "test2240", "pid": "11862002", "query": "what is the center of heredity in a cell", "answer": "chromosome", "passage": "\"Journal of Heredity\"\nmother and daughter chromosomes in binucleate cells. This foreshadowed modern work in intestinal tumors in which there are differences between cells containing the template DNA and those with copies.\"\" The following persons have been editor-in-chief of the journal: The journal publishes articles in the following categories: and on invitation: The journal is abstracted and indexed in: Journal of Heredity The Journal of Heredity is a peer-reviewed scientific journal concerned with heredity in a biological sense, covering all aspects of genetics. It is published by Oxford University Press on behalf of the American Genetic Association. The trends in topics that have"} +{"qid": "test2240", "pid": "77544", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "\"Cell nucleus\"\nand paternal germ \"\"cells\"\" for heredity. The function of the nucleus as carrier of genetic information became clear only later, after mitosis was discovered and the Mendelian rules were rediscovered at the beginning of the 20th century; the chromosome theory of heredity was therefore developed. The nucleus is the largest cellular organelle in animal cells. In mammalian cells, the average diameter of the nucleus is approximately 6 micrometres (µm), which occupies about 10% of the total cell volume. The viscous liquid within it is called nucleoplasm (or karyolymph), and is similar in composition to the cytosol found outside the nucleus."} +{"qid": "test2240", "pid": "15229867", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "\"History of zoology since 1859\"\nin the gradual evolution of what is to-day the great river of zoological doctrine to which they have all been rendered contributory. Cell theory led zoologists to re-envision individual organisms as interdependent assemblages of individual cells. Scientists in the rising field of cytology, armed with increasingly powerful microscopes and new staining methods, soon found that even single cells were far more complex than the homogeneous fluid-filled chambers described by earlier microscopists. Much of the research on cell reproduction came together in August Weismann's theory of heredity: he identified the nucleus (in particular chromosomes) as the hereditary material, proposed the distinction"} +{"qid": "test2240", "pid": "13973539", "query": "what is the center of heredity in a cell", "answer": "chromosome", "passage": "\"History of botany\"\nand embryo) have a reducing division (halving of chromosomes, now known as meiosis) the field of heredity was opened up. By 1926 Thomas Morgan was able to outline a theory of the gene and its structure and function. The form and function of plastids received similar attention, the association with starch being noted at an early date. With observation of the cellular structure of all organisms and the process of cell division and continuity of genetic material, the analysis of the structure of protoplasm and the cell wall as well as that of plastids and vacuoles – what is now"} +{"qid": "test2240", "pid": "19441838", "query": "what is the center of heredity in a cell", "answer": "chromosome", "passage": "\"Homologous somatic pairing\"\nit is mechanistically related to meiotic pairing is unknown. The first review of somatic pairing was made by Metz in 1916, citing the first descriptions of pairing made in 1907 and 1908 by N. M. Stevens in germline cells, who noted: “it may therefore be true that pairing of homologous chromosomes occurs in connection with each mitosis throughout the life history of these insects” (p.215) Stevens noted the potential for communication and a role in heredity. While meiotic homologous pairing subsequently became well studied, somatic pairing remained neglected due to what has been described as \"\"\"\"limitations in cytological tools for"} +{"qid": "test2240", "pid": "2135259", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "\"History of biology\"\ndoubled in number just before the cell divided and a daughter cell was produced. Much of the research on cell reproduction came together in August Weismann's theory of heredity: he identified the nucleus (in particular chromosomes) as the hereditary material, proposed the distinction between somatic cells and germ cells (arguing that chromosome number must be halved for germ cells, a precursor to the concept of meiosis), and adopted Hugo de Vries's theory of pangenes. Weismannism was extremely influential, especially in the new field of experimental embryology. By the mid-1850s the miasma theory of disease was largely superseded by the germ"} +{"qid": "test2240", "pid": "4785784", "query": "what is the center of heredity in a cell", "answer": "chromosome", "passage": "\"Alfred Sturtevant\"\nsaw a time of theory formulation in the field of heredity/genetics. In 1883, Wilhelm Roux argued that the linear structure of chromosomes has an impact of making sure daughter cells get equal amounts of chromosomal material. This was the beginning of the chromosome theory; Roux viewed his findings as argument that chromosomes contain units of heredity. During this time frame, Hugo de Vries put forth a theory that persistent hereditary units are passed through generations and that each “unit” deals with a specific characteristic and the units can combine in different ways in the offspring. From 1900–1909, anomalous data began"} +{"qid": "test2240", "pid": "13973540", "query": "what is the center of heredity in a cell", "answer": "chromosome", "passage": "\"History of botany\"\nknown as cytology, or cell theory became firmly established. Later, the cytological basis of the gene-chromosome theory of heredity extended from about 1900–1944 and was initiated by the rediscovery of Gregor Mendel's (1822–1884) laws of plant heredity first published in 1866 in \"\"Experiments on Plant Hybridization\"\" and based on cultivated pea, \"\"Pisum sativum\"\": this heralded the opening up of plant genetics. The cytological basis for gene-chromosome theory was explored through the role of polyploidy and hybridization in speciation and it was becoming better understood that interbreeding populations were the unit of adaptive change in biology. Until the 1860s it was"} +{"qid": "test2240", "pid": "77543", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "\"Cell nucleus\"\ncell. This was in contradiction to Ernst Haeckel's theory that the complete phylogeny of a species would be repeated during embryonic development, including generation of the first nucleated cell from a \"\"monerula\"\", a structureless mass of primordial mucus (\"\"Urschleim\"\"). Therefore, the necessity of the sperm nucleus for fertilization was discussed for quite some time. However, Hertwig confirmed his observation in other animal groups, including amphibians and molluscs. Eduard Strasburger produced the same results for plants in 1884. This paved the way to assign the nucleus an important role in heredity. In 1873, August Weismann postulated the equivalence of the maternal"} +{"qid": "test2240", "pid": "97576", "query": "what is the center of heredity in a cell", "answer": "nucleus", "passage": "DNA\nmediate the function of the genome. Genomic DNA is tightly and orderly packed in the process called DNA condensation, to fit the small available volumes of the cell. In eukaryotes, DNA is located in the cell nucleus, with small amounts in mitochondria and chloroplasts. In prokaryotes, the DNA is held within an irregularly shaped body in the cytoplasm called the nucleoid. The genetic information in a genome is held within genes, and the complete set of this information in an organism is called its genotype. A gene is a unit of heredity and is a region of DNA that influences"} +{"qid": "test2242", "pid": "3253478", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\nof his famous phrase - \"\"Let's get ready to bundle!\"\" He was also the announcer for the YouTube Boxing match between KSI vs Logan Paul on August 25, 2018. Buffer reproduced as an action figure in both Toy Biz's WCW line and Jakks Pacific's Rocky line. Buffer began using the phrase \"\"Let's get ready to rumble!\"\" in 1984. By 1992, he acquired a federal trademark for the phrase. Buffer uses his famous phrase in various licensing deals including the platinum selling album \"\"Jock Jams\"\" by Tommy Boy Records, the video games \"\"Ready 2 Rumble Boxing\"\", \"\"\"\" for the PlayStation 2,"} +{"qid": "test2242", "pid": "3253479", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\nNintendo 64, Dreamcast and Game Boy Advance and \"\"Greatest Heavyweights of the Ring\"\" for the Sega Genesis and numerous other products. In addition, he has used variations of the phrase in advertisements, including the popular commercial for Mega Millions in which he says \"\"Let's get ready to Win Big!\"\" and the Kraft Cheese commercial in which he says \"\"Let's get ready to Crumble!\"\" and most recently for Progressive Insurance in which he says \"\"Let's get ready to bundle!\"\" The phrase, \"\"Are you ready to rumble?\"\" is spoken in the 1957 television show \"\"Maverick\"\", titled \"\"Stage West\"\" (episode 6, season one)."} +{"qid": "test2242", "pid": "2049832", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Triple H\"\nDuring this time, he adopted an entrance gimmick of asking the crowd \"\"Are you ready? I said, are you ready?\"\", followed by a parody of rival promotion WCW's ring announcer Michael Buffer's famous catch-phrase, \"\"Let's get ready to rumble\"\", substituting the word \"\"rumble\"\" with the DX slogan, \"\"suck it\"\". Also during this time, Triple H began a feud with the leader of the Nation of Domination and rising WWF villain, The Rock. This storyline rivalry eventually led to a feud over the Intercontinental Championship, which Triple H won in a ladder match at SummerSlam. He did not hold the title"} +{"qid": "test2242", "pid": "4629666", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Mad Money\"\nlocked up in a padded room in a straitjacket and tape over his mouth, as if in a mental institution (a reference to Cramer's book, the subtitle of which is \"\"Sane Investing in an Insane World\"\"). The \"\"Main Event\"\" was introduced by boxing announcer Michael Buffer with his catch phrase \"\"Let's get ready to rumble!\"\". The featured guest on the show was then-New York Attorney General Eliot Spitzer (a classmate of Cramer at Harvard Law School). Cramer went into the crowd and gave high fives to audience members who claimed to have had made money by following his stock tips."} +{"qid": "test2242", "pid": "5522587", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Ready to Rumble\"\nReady to Rumble Ready to Rumble is a 2000 American buddy comedy film directed by Brian Robbins and written by Steven Brill, which is based on Turner Broadcasting's now defunct professional wrestling promotion, World Championship Wrestling (WCW). The movie draws its title from ring announcer Michael Buffer's catchphrase, \"\"Let's get ready to rumble!\"\" The movie features many wrestlers from WCW. Some countries such as Finland, Australia, and Japan were only able to see direct-to-video premiere releases of this film. For most of their lives, Sewage workers Gordie Boggs and Sean Dawkins have been avid wrestling fans. When \"\"WCW Monday Nitro\"\""} +{"qid": "test2242", "pid": "3253474", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\naction between the two remaining players, Peter Eastgate and Ivan Demidov at the 2008 World Series of Poker final table with a modified version of his trademark statement, \"\"Let's get ready to shuffle up and deal\"\". Buffer appeared at the University of Kentucky's men's basketball teams' legendary \"\"Big Blue Madness\"\" on October 14, 2016. Instead of his traditional \"\"Let's get ready to rumble!\"\" Buffer announced the beginning of the event with \"\"Let's get ready to roundball!\"\". He kept up this tradition on Saturday, January 28 when he announced his new rendition again at the perennial Blue Blood rivalry between the"} +{"qid": "test2242", "pid": "4917163", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Damien (South Park)\"\nschool in the last three weeks of the school year. Parker said, \"\"It was brutal ... Everybody already had their little groups and the year was almost over, so I wasn't going to fit into any of them, and I just wanted to destroy and kill, which was the inspiration for this show.\"\" Michael Buffer, the boxing ring announcer best known for his catchphrase, \"\"Let's get ready to rumble!\"\", made a guest appearance as himself in \"\"Damien\"\". Parker and Stone originally planned to use the catchphrase without Buffer, but when they learned that Buffer had legally trademarked the phrase, they"} +{"qid": "test2242", "pid": "4223238", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"WWE Classics on Demand\"\non Classics on Demand. In addition, previously licensed music to which the rights have expired are removed or replaced with alternate songs. Additionally, some formerly live events are censored for language and/or nudity. Ring announcer Michael Buffer is also edited out of any programming due to his trademarked phrase, \"\"Let's Get Ready to Rumble\"\". In the wake of the Chris Benoit double murder-suicide a number of wrestling websites reported that the likeness of and references to both Chris and Nancy Benoit were being removed from pertinent programming. Eventually Nancy's image was allowed to return to programming, though over six years"} +{"qid": "test2242", "pid": "3253469", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\n1984, Buffer developed the catchphrase \"\"Let's get ready to rumble\"\" in his announcing, which gained enormous popularity. He began the process of obtaining a federal trademark for the phrase in the 1980s, acquiring it in 1992. Consequently, Buffer has earned in excess of $400 million with the license for his trademark. By the late 1980s, Buffer was the exclusive ring announcer for all bouts in Donald Trump-owned casinos. Trump said of Buffer, \"\"He's great, he's the choice, he has a unique ability...I told my people, 'We got to have him.'\"\" Buffer's work was also admired by many boxing greats. Sugar"} +{"qid": "test2242", "pid": "3393539", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"D-Generation X\"\nthem directing the slogan and crotch-chops at fans seated along the entry ramp. The slogan is also used in the DX Army's popular \"\"Let's get ready to suck it!\"\" promos, conceived as a parody of Michael Buffer's \"\"Let's get ready to rumble!\"\" match introduction that was routinely featured at contemporary WCW events. The routine originated in the \"\"DX Army\"\" era with X-Pac, Road Dogg, and Billy Gunn and starts when Triple H asks the audience, \"\"Are you ready?\"\". He then shouts, \"\"No, [city name], I said, are you ready?!\"\", or \"\"I thought this was [city name], I said, are you"} +{"qid": "test2242", "pid": "3253472", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\nEvent, for the first time in more than six years, Buffer returned to pro-wrestling ring announcing duties at Madison Square Garden in a boxing match between pro boxer Evander Holyfield (who was substituting for Montel Vontavious Porter) and pro wrestler Matt Hardy. Buffer appears in the Royal Rumble 2008 commercial, in which he begins to say \"\"Let's get ready to rumble!\"\" only to be superkicked by Shawn Michaels, causing him to fall over. As well as being in the commercial for the event, he was the guest ring announcer during the Royal Rumble match itself. During his career, Buffer has"} +{"qid": "test2242", "pid": "3253477", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\nBuffer appeared in the extended version of the Muppets webisode \"\"Food Fight\"\", where he is seen announcing the cooking competition between Gordon Ramsay and the Swedish Chef. Buffer appears as featuring artist on \"\"Let's Get Ready to Rumble\"\" and \"\"Go for It All!\"\" by German eurodance group the K.O.'s and his voice was sampled in the Ant & Dec song \"\"Let's Get Ready to Rhumble\"\". He recorded the introduction track for country artist Josh Turner's 2012 album, \"\"Punching Bag\"\". In 2013, Buffer appeared in Progressive Insurance commercials, promoting their program of combining different coverages into one policy, with a parody"} +{"qid": "test2242", "pid": "4917154", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Damien (South Park)\"\nby 3.2 million households when it was first broadcast, making it the highest rated cable program the week it aired. The episode marked the first appearance of Satan, who would become a recurring \"\"South Park\"\" character, as well as the character of Damien himself, who was inspired by the antagonist of the 1976 horror film \"\"The Omen\"\". Parker and Stone also said the episode introduced several key characteristics of the Cartman character that have endured throughout the rest of the series. Michael Buffer, the boxing ring announcer best known for the catchphrase \"\"Let's get ready to rumble!\"\", makes a guest"} +{"qid": "test2242", "pid": "3253467", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "\"Michael Buffer\"\nMichael Buffer Michael Buffer (born November 2, 1944) is an American ring announcer for boxing and professional wrestling matches. He is known for his trademarked catchphrase, \"\"Let's get ready to rumble!\"\" and for pioneering a distinct announcing style in which he rolls certain letters and adds other inflections to a fighter's name. His half-brother is UFC announcer Bruce Buffer. Buffer was born and raised in Lancaster, Pennsylvania, to an enlisted man in the United States Navy and his wife during World War II. His parents divorced when he was 11 months of age, and Buffer was then raised by foster"} +{"qid": "test2242", "pid": "14793252", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "XHNZ-FM\nPoderosa\"\". XHNZ-FM XHNZ-FM, also known as \"\"La Zeta 107.5\"\", is a Regional Mexican radio station licensed to Ciudad Juárez, Chihuahua, Mexico. It is owned by Radiorama. XHNZ received its concession in 1987. It was owned by Radiofonia Mexicana, S.A., a subsidiary of Radiorama. However, for most of the late 2000s and early 2010s, XHNZ was operated by Grupo Radio México and carried its La Zeta Regional Mexican format. In 2010, XHNZ was sued by announcer Michael Buffer for using his trademark catchphrase \"\"Let's Get Ready to Rumble\"\" without permission for $175,000(USD). Buffer found out that XHNZ had used his catchphrase"} +{"qid": "test2242", "pid": "14793250", "query": "who coined the phrase let get ready to rumble", "answer": "Michael Buffer", "passage": "XHNZ-FM\nXHNZ-FM XHNZ-FM, also known as \"\"La Zeta 107.5\"\", is a Regional Mexican radio station licensed to Ciudad Juárez, Chihuahua, Mexico. It is owned by Radiorama. XHNZ received its concession in 1987. It was owned by Radiofonia Mexicana, S.A., a subsidiary of Radiorama. However, for most of the late 2000s and early 2010s, XHNZ was operated by Grupo Radio México and carried its La Zeta Regional Mexican format. In 2010, XHNZ was sued by announcer Michael Buffer for using his trademark catchphrase \"\"Let's Get Ready to Rumble\"\" without permission for $175,000(USD). Buffer found out that XHNZ had used his catchphrase 42"} +{"qid": "test2243", "pid": "12466804", "query": "who played the first nfl thursday night football game", "answer": "Denver Broncos", "passage": "\"History of the National Football League\"\nreported by \"\"Sports Illustrated\"\"s Richard Deitsch to be the chosen play-by-play announcer on ESPN's \"\"Monday Night Football\"\" opening week late broadcast between the Los Angeles Chargers and Denver Broncos. She did that announcing job in September of that year, and thus became the first woman to call a nationally televised NFL game. In 2018 Hannah Storm and Andrea Kremer became the first female duo to call an NFL game, which they did for an Amazon Prime stream of \"\"Thursday Night Football\"\". Shannon Eastin became the first woman to officiate an NFL game in 2012, in a pre-season matchup between the"} +{"qid": "test2243", "pid": "9016230", "query": "who played the first nfl thursday night football game", "answer": "Denver Broncos", "passage": "\"Thursday Night Football\"\nbut NFL Network decided to air the games itself, foregoing a rights fee. The other television deals generated $3.735 billion per year over an eight-year period for CBS, Fox, NBC, ESPN and DirecTV (owner of the out-of-market sports package NFL Sunday Ticket). \"\"Thursday Night Football\"\" debuted on November 23, 2006, with the Kansas City Chiefs handing the visiting Denver Broncos a 19–10 Thanksgiving defeat. Each of the game broadcasts were titled either \"\"Thursday Night Football\"\" or \"\"Saturday Night Football\"\", depending on the night on which it aired. This format carried over to the 2007 season. Starting in 2008, NFL Network"} +{"qid": "test2243", "pid": "11515985", "query": "who played the first nfl thursday night football game", "answer": "Denver Broncos", "passage": "\"National Football League Christmas games\"\nsituation, with the Denver Broncos playing the Oakland Raiders in what could be the final NFL game played in Oakland before the team's scheduled move to Las Vegas in 2019. When Christmas Eve falls on a Thursday, as it did in , the \"\"Thursday Night Football\"\" game can be moved to Friday on Christmas. The 2009 game was between the Chargers and the Tennessee Titans in Nashville, with a special start time of 7:30 PM Eastern/6:30 PM Central. The league chose not to exercise this option in , when it scheduled a Thursday night Christmas Eve game between the Chargers"} +{"qid": "test2246", "pid": "1508164", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Laverne & Shirley\"\ncoloring books, video slot machine and other toys. Paramount Home Entertainment and (starting with season 2) CBS DVD have released the entire series of \"\"Laverne and Shirley\"\" on DVD in Region 1, albeit with music substitutions and scene deletions. On June 16, 2015, CBS DVD released \"\"Laverne & Shirley – The Complete Series\"\" on DVD in Region 1. Season 1 has also been released on DVD in Region 2. The first three seasons have been released on DVD in Region 4 by Paramount. The theme song from the series (\"\"Making Our Dreams Come True\"\" as performed by Cyndi Grecco) was"} +{"qid": "test2246", "pid": "4134835", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Private Stock Records\"\nPrivate Stock Records Private Stock Records was a record label that operated from 1974 to 1978. The label was founded by Larry Uttal after he was ousted from Bell Records. The label primarily focused on pop music and had numerous hit records, many of them one-hit wonders, including singles by David Soul of \"\"Starsky and Hutch\"\" fame (\"\"Don't Give Up on Us\"\"), Starbuck (\"\"Moonlight Feels Right\"\"), Austin Roberts (\"\"Rocky\"\"), Samantha Sang (\"\"Emotion\"\"), Walter Murphy and the Big Apple Band (\"\"A Fifth of Beethoven\"\"), Cyndi Grecco (\"\"Making Our Dreams Come True,\"\" a.k.a. the theme song to \"\"Laverne & Shirley\"\") and Frankie"} +{"qid": "test2246", "pid": "2630608", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Theme music\"\nTop 5, 1976); the theme to \"\"Laverne & Shirley\"\", performed by Cyndi Grecco (#25, 1976); the theme to \"\"Friends\"\", \"\"I'll Be There For You\"\", which was a hit for The Rembrandts; the theme from \"\"S.W.A.T.\"\", which was a hit for Rhythm Heritage, the theme song from \"\"Pokémon\"\" (known as \"\"Pokémon Theme\"\" in the \"\"2.B.A. Master\"\" soundtrack), which is a long time hit for Jason Paige, and the theme song from \"\"Drake & Josh\"\", \"\"Found a Way\"\", which was a hit for Drake Bell. The theme song from \"\"iCarly\"\", \"\"Leave It All To Me\"\", was a hit for Miranda Cosgrove and"} +{"qid": "test2246", "pid": "1508153", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Laverne & Shirley\"\nExecutives wanted to see both versions, but Eisner hid the first reel of film in a closet of the building and said at the screening that the film from the first shoot had gotten lost, so they only watched the performance of Cindy Williams with Penny Marshall. At the start of each episode, Laverne and Shirley are skipping down a Milwaukee street, arm in arm, reciting a Yiddish-American hopscotch chant: \"\"1, 2, 3, 4, 5, 6, 7, 8 Schlemiel! Schlimazel! Hasenpfeffer Incorporated,\"\" which then leads into the series' theme song, \"\"Making Our Dreams Come True\"\" performed by Cyndi Grecco. The"} +{"qid": "test2246", "pid": "7250548", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Cyndi Grecco\"\nCyndi Grecco Cyndi Grecco (born May 19, 1952, in New York, New York) is an American singer who performed the theme tune to the popular 1970s American television show \"\"Laverne & Shirley\"\". Titled \"\"Making Our Dreams Come True,\"\" the song (in which Grecco was accompanied by the Ron Hicklin Singers) was also put out as a single and charted at #25 on July 25, 1976. The song came out on the small Private Stock label (#45086). An album followed, though a second disco-themed single, \"\"Dancing, Dancing,\"\" failed to chart. She also provided the theme to another 1970s ABC television sitcom,"} +{"qid": "test2246", "pid": "7250549", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Cyndi Grecco\"\n\"\"Blansky's Beauties\"\". Nevertheless, Grecco remains a one-hit wonder. Albums Singles Cyndi Grecco Cyndi Grecco (born May 19, 1952, in New York, New York) is an American singer who performed the theme tune to the popular 1970s American television show \"\"Laverne & Shirley\"\". Titled \"\"Making Our Dreams Come True,\"\" the song (in which Grecco was accompanied by the Ron Hicklin Singers) was also put out as a single and charted at #25 on July 25, 1976. The song came out on the small Private Stock label (#45086). An album followed, though a second disco-themed single, \"\"Dancing, Dancing,\"\" failed to chart. She"} +{"qid": "test2246", "pid": "8626552", "query": "who sang the theme song for laverne and shirley", "answer": "Cyndi Grecco", "passage": "\"Charles Fox (composer)\"\nRoberta Flack in 1973 and again for The Fugees in 1997. The song won the Grammy for Best Song in 1973. Fox & Gimbel later wrote the themes for many films such as \"\"The Last American Hero\"\" (\"\"I Got a Name\"\", sung by Jim Croce), \"\"Foul Play\"\" (\"\"Ready to Take a Chance Again\"\", sung by Barry Manilow) and many television series, including \"\"The Bugaloos,\"\" \"\"Happy Days,\"\" \"\"Laverne and Shirley\"\" (\"\"Making Our Dreams Come True\"\" sung by Cyndi Grecco), \"\"Angie\"\" (\"\"Different Worlds\"\" sung by Maureen McGovern), \"\"The Paper Chase\"\" (\"\"The First Years\"\" sung by Seals and Crofts; Emmy-nominated Best Song), and"} +{"qid": "test2248", "pid": "1806288", "query": "who was the dj on in living color", "answer": "DJ Twist", "passage": "\"In Living Color\"\nthe choreographer for the first four seasons. The most notable former Fly Girl was future actress/singer Jennifer Lopez, who joined the show in its third season. Throughout the show's run, the Fly Girls frequently performed a dance routine to lead into commercial breaks and/or during the closing credits. In the first two seasons, they also performed a routine that immediately followed the opening sequence. Music was provided by an in-house DJ - Shawn Wayans (credited as SW-1) in the first two seasons, then DJ Twist from season 3 onward. The Fly Girls would sometimes be used as extras in sketches,"} +{"qid": "test2249", "pid": "5768454", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Standard cubic foot\"\nof the label \"\"standard\"\", there is a variety of definitions, mainly depending on the type of gas. Since, for a given volume, the quantity is proportional to the pressure and (absolute) temperature, each definition fixes base values for pressure and temperature. The ideal gas law allows then to compute the quantity per unit of volume for actual pressures and temperatures. Since natural gas is an imprecise mix of various molecular species, chiefly methane but with varying proportions of other gases, a standard cubic foot of natural gas does not represent a precise unit of mass, but only a molecular quantity,"} +{"qid": "test2249", "pid": "5628384", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Combined gas law\"\nCombined gas law The combined gas law is a gas law that combines Charles's law, Boyle's law, and Gay-Lussac's law. There is no official founder for this law; it is merely an amalgamation of the three previously discovered laws. These laws each relate one thermodynamic variable to another mathematically while holding everything else constant. Charles's law states that volume and temperature are directly proportional to each other as long as pressure is held constant. Boyle's law asserts that pressure and volume are inversely proportional to each other at fixed temperature. Finally, Gay-Lussac's law introduces a direct proportionality between temperature and"} +{"qid": "test2249", "pid": "1365658", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Charles's law\"\nCharles's law Charles's law (also known as the law of volumes) is an experimental gas law that describes how gases tend to expand when heated. A modern statement of Charles's law is: When the pressure on a sample of a dry gas is held constant, the Kelvin temperature and the volume will be in direct proportion. This directly proportional relationship can be written as: or where: This law describes how a gas expands as the temperature increases; conversely, a decrease in temperature will lead to a decrease in volume. For comparing the same substance under two different sets of conditions,"} +{"qid": "test2249", "pid": "5628385", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Combined gas law\"\npressure as long as it is at a constant volume. The inter-dependence of these variables is shown in the combined gas law, which clearly states that: This can be stated mathematically as: where: For comparing the same substance under two different sets of conditions, the law can be written as: The addition of Avogadro's law to the combined gas law yields the ideal gas law. Boyle's Law states that the pressure-volume product is constant: Charles's Law shows that the volume is proportional to the absolute temperature: Gay-Lussac's Law says that the pressure is proportional to the absolute temperature: The algebraic"} +{"qid": "test2249", "pid": "2937994", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Gay-Lussac's law\"\nStanislao Cannizzaro was able to convince the First International Chemical Congress in 1860. This law is often referred to as Gay-Lussac's law of pressure–temperature, between 1800 and 1802, discovered the relationship between the pressure and temperature of a fixed mass of gas kept at a constant volume. Gay Lussac discovered this while building an \"\"air thermometer\"\". The pressure of a gas of fixed mass and fixed volume is directly proportional to the gas's absolute temperature. If a gas's temperature increases, then so does its pressure if the mass and volume of the gas are held constant. The law has a"} +{"qid": "test2249", "pid": "645304", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Boltzmann constant\"\nThe Boltzmann constant, , is a scaling factor between macroscopic (thermodynamic temperature) and microscopic (thermal energy) physics. Macroscopically, the ideal gas law states that, for an ideal gas, the product of pressure and volume is proportional to the product of amount of substance (in moles) and absolute temperature : where is the gas constant (). Introducing the Boltzmann constant transforms the ideal gas law into an alternative form: where is the number of molecules of gas. For , is equal to the number of particles in one mole (Avogadro's number). Given a thermodynamic system at an absolute temperature , the"} +{"qid": "test2249", "pid": "12378354", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "Gas\ndioxide, and air expand to the same extent over the same 80 kelvin interval. He noted that, for an ideal gas at constant pressure, the volume is directly proportional to its temperature: In 1802, Joseph Louis Gay-Lussac published results of similar, though more extensive experiments. Gay-Lussac credited Charles' earlier work by naming the law in his honor. Gay-Lussac himself is credited with the law describing pressure, which he found in 1809. It states that the pressure exerted on a container's sides by an ideal gas is proportional to its temperature. In 1811, Amedeo Avogadro verified that equal volumes of pure"} +{"qid": "test2249", "pid": "12378332", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "Gas\nfrom all of these gas particle collisions. Pressure is the sum of all the normal components of force exerted by the particles impacting the walls of the container divided by the surface area of the wall. The symbol used to represent \"\"temperature\"\" in equations is \"\"T\"\" with SI units of kelvins. The speed of a gas particle is proportional to its absolute temperature. The volume of the balloon in the video shrinks when the trapped gas particles slow down with the addition of extremely cold nitrogen. The temperature of any physical system is related to the motions of the particles"} +{"qid": "test2249", "pid": "585587", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Gas laws\"\n1662 Robert Boyle studied the relationship between volume and pressure of a gas of fixed amount at constant temperature. He observed that volume of a given mass of a gas is inversely proportional to its pressure at a constant temperature. Boyle's law, published in 1662, states that, at constant temperature, the product of the pressure and volume of a given mass of an ideal gas in a closed system is always constant. It can be verified experimentally using a pressure gauge and a variable volume container. It can also be derived from the kinetic theory of gases: if a container,"} +{"qid": "test2249", "pid": "1452533", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Jacques Charles\"\nnoticed that they all increased in volume by the same amount. This experiment was referenced by Gay-Lussac in 1802 when he published a paper on the precise relationship between the volume and temperature of a gas. Charles' law states that under constant pressure, an ideal gas' volume is proportional to its absolute temperature. The volume of a gas at constant pressure increases linearly with the absolute temperature of the gas. The formula he created was \"\"V\"\"/\"\"T\"\" = \"\"V\"\"/\"\"T\"\". Jacques Charles was elected to the Académie des Sciences, in 1795, and subsequently became professor of physics at the Conservatoire des Arts"} +{"qid": "test2249", "pid": "2201280", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Internal energy\"\nthe translational energy of the individual atoms. Monatomic particles do not rotate or vibrate, and are not electronically excited to higher energies except at very high temperatures. Therefore, internal energy changes in an ideal gas may be described solely by changes in its kinetic energy. Kinetic energy is simply the internal energy of the perfect gas and depends entirely on its pressure, volume and thermodynamic temperature. The internal energy of an ideal gas is proportional to its mass (number of moles) \"\"n\"\" and to its temperature \"\"T\"\" where \"\"c\"\" is the heat capacity (at constant volume) of the gas. The"} +{"qid": "test2249", "pid": "1286409", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Degenerate matter\"\nto control its particles' momentum. Unlike a classical ideal gas, whose pressure is proportional to its temperature where \"\"P\"\" is pressure, \"\"V\"\" is the volume, \"\"N\"\" is the number of particles—typically atoms or molecules—\"\"k\"\" is Boltzmann's constant, and \"\"T\"\" is temperature), the pressure exerted by degenerate matter depends only weakly on its temperature. In particular, the pressure remains nonzero even at absolute zero temperature. At relatively low densities, the pressure of a fully degenerate gas can be derived by treating the system as an ideal Fermi gas, in this way where \"\"K\"\" depends on the properties of the particles making"} +{"qid": "test2249", "pid": "1797239", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Avogadro's law\"\nAvogadro's law Avogadro's law (sometimes referred to as Avogadro's hypothesis or Avogadro's principle) is an experimental gas law relating the volume of a gas to the amount of substance of gas present. The law is a specific case of the ideal gas law. A modern statement is: Avogadro's law states that, \"\"equal volumes of all gases, at the same temperature and pressure, have the same number of molecules.\"\" For a given mass of an ideal gas, the volume and amount (moles) of the gas are directly proportional if the temperature and pressure are constant. The law is named after Amedeo"} +{"qid": "test2249", "pid": "585590", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Gas laws\"\nits container is directly proportional to its absolute temperature. As a mathematical equation, Gay-Lussac's law is written as either: K=P divided by T Avogadro's law states that the volume occupied by an ideal gas is directly proportional to the number of molecules of the gas present in the container. This gives rise to the molar volume of a gas, which at STP (273.15 K, 1 atm) is about 22.4 L. The relation is given by The Combined gas law or General Gas Equation is obtained by combining Boyle's Law, Charles's law, and Gay-Lussac's Law. It shows the relationship between the"} +{"qid": "test2249", "pid": "2468675", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Isochoric process\"\ndefinition of specific heat capacity at constant volume, Integrating both sides yields Where \"\"c\"\" is the specific heat capacity at constant volume, \"\"T\"\" is the initial temperature and \"\"T\"\" is the final temperature. We conclude with: On a pressure volume diagram, an isochoric process appears as a straight vertical line. Its thermodynamic conjugate, an isobaric process would appear as a straight horizontal line. If an ideal gas is used in an isochoric process, and the quantity of gas stays constant, then the increase in energy is proportional to an increase in temperature and pressure. Take for example a gas heated"} +{"qid": "test2249", "pid": "585589", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Gas laws\"\nof a given mass of a gas, at constant pressure (P), is directly proportional to its temperature (T). As a mathematical equation, Charles's law is written as either: where \"\"V\"\" is the volume of a gas, \"\"T\"\" is the absolute temperature and \"\"k\"\" is a proportionality constant (which is not the same as the proportionality constants in the other equations in this article). Gay-Lussac's law, Amontons' law or the pressure law was found by Joseph Louis Gay-Lussac in 1809. It states that, for a given mass and constant volume of an ideal gas, the pressure exerted on the sides of"} +{"qid": "test2249", "pid": "2937991", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Gay-Lussac's law\"\nGay-Lussac's law Gay-Lussac's law can refer to several discoveries made by French chemist Joseph Louis Gay-Lussac (1778–1850) and other scientists in the late 18th and early 19th centuries pertaining to thermal expansion of gases and the relationship between temperature, volume, and pressure. It states that the pressure of a given mass of gas varies directly with the absolute temperature of the gas, when the volume is kept constant. Mathematically, it can be written as: P/T=constant, Gay-Lussac is most often recognized for the Pressure Law which established that the pressure of an enclosed gas is directly proportional to its temperature and"} +{"qid": "test2249", "pid": "11231620", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Bicycle tire\"\nis a very small atom which passes quickly through any porous material. At least one public bicycle sharing system, London's Santander Cycles, is inflating tires with nitrogen, instead of simple air, which is already 78% nitrogen, in an attempt to keep the tires at the proper inflation pressure longer, though the effectiveness of this is debatable. Since the volume of gas and the gas itself inside a tire is not altered significantly by a change of temperature, the ideal gas law states that the pressure of the gas should be directly proportional to the absolute temperature. Thus, if a tire"} +{"qid": "test2249", "pid": "18233236", "query": "the temperature of gas is proportional to the", "answer": "volume", "passage": "\"Gas blending\"\na constituent mass, and comparing it to the summed masses of all the constituents. The actual mass of each constituent needed for a mixture is calculated by multiplying the mass fraction by the desired mass of the mixture. Also known as volumetric blending. This must be done at constant temperature for best accuracy, though it is possible to compensate for temperature changes in proportion to the accuracy of the temperature measured before and after each gas is added to the mixture. Partial pressure blending is commonly used for breathing gases for diving. The accuracy required for this application can be"} +{"qid": "test225", "pid": "7874326", "query": "who are the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\nYo Gabba Gabba! Yo Gabba Gabba! was an American live action/puppet educational children's television show starring five costumed toys come to life and their friend DJ Lance Rock. The series premiered on Nick Jr. August 20, 2007 and ended on November 12, 2015. There is a single topic in each episode, e.g. \"\"Adventure\"\", \"\"Friends\"\", and \"\"Dance\"\", through songs and short storylines in the half-hour program. Additionally, the show teaches children life and social skills, such as sharing and trying new foods. It also encourages viewers to move along with and dance with the characters in the program. The show is"} +{"qid": "test225", "pid": "10941216", "query": "who are the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Lance Robertson\"\nwhen Schultz was co-creating the show \"\"Yo Gabba Gabba!\"\", Robertson was asked to serve as host. In addition to appearing on \"\"Yo Gabba Gabba!\"\", Robertson tours with The Aquabats performing kid-friendly DJ sets and dancing with the monster \"\"cast\"\" of the series. Lance Robertson Lance Robertson is a Los Angeles-based American musician, singer, DJ, and actor also known as \"\"DJ Lance Rock\"\" on the Nick Jr. show \"\"Yo Gabba Gabba!\"\". Originally from Columbus, Ohio, Robertson is a 1983 graduate of Hazelwood East High School. He was the vocalist for a local electronic band called My Other Self in the 1990s"} +{"qid": "test225", "pid": "7874336", "query": "who are the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\ntour of \"\"Yo Gabba Gabba!\"\" took place in Australia in May 2009. DJ Lance Rock, Muno, Foofa, Brobee, Toodee and Plex performed in Wollongong, Melbourne, Brisbane and Sydney with an indie house-band and secret special guests at each show. Additional tours in the United States and other countries have been performed throughout 2013. Shows have been toured including three presented by Kia Motors and a special Christmas one presented by Citi, Just Dance Kids & Toys for Tots. Nick Jr. Australia released a tour in 2009 called Yo Gabba Gabba: LIVE on Stage! On March 8, 2017, the first season"} +{"qid": "test225", "pid": "7874339", "query": "who are the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\nwon two Kidscreen Awards for \"\"Best Non-Animated or Mixed Series 2013\"\" and \"\"Best Music 2013\"\" \"\"Official sites\"\" \"\"Channels\"\" \"\"Others\"\" Yo Gabba Gabba! Yo Gabba Gabba! was an American live action/puppet educational children's television show starring five costumed toys come to life and their friend DJ Lance Rock. The series premiered on Nick Jr. August 20, 2007 and ended on November 12, 2015. There is a single topic in each episode, e.g. \"\"Adventure\"\", \"\"Friends\"\", and \"\"Dance\"\", through songs and short storylines in the half-hour program. Additionally, the show teaches children life and social skills, such as sharing and trying new foods."} +{"qid": "test225", "pid": "7874335", "query": "who are the characters in yo gabba gabba", "answer": "Brobee", "passage": "\"Yo Gabba Gabba!\"\ndo a mix-like song about what had occurred during the main segments. After it is finished, DJ Lance shouts \"\"YOOOO Gabba Gabba!\"\" once again, and then Brobee, Muno, Toodee, Foofa, and Plex turn back into toys. One-by-one, DJ Lance puts them back in the radio, closes the radio, and then walks off carrying it. The credits then roll. Four albums have been released featuring songs from the show performed by the cast and the \"\"Super Music Friends Show\"\" segment. ABC for Kids released a CD in 2010 titled \"\"Yo Gabba Gabba! Party In My Tummy\"\". The world premiere live concert"} +{"qid": "test225", "pid": "18234048", "query": "who are the characters in yo gabba gabba", "answer": "Muno", "passage": "\"Super Rad!\"\nvia extension cord. In one scene, The Bat Commander fights with a costumed monster then known as the \"\"Cyclopfenstein\"\" (a portmanteau of cyclops and Scott Klopfenstein, trumpeter for the ska punk band Reel Big Fish, who frequently toured with The Aquabats); the design for this creature would later be used to develop the character of Muno for the children's television series \"\"Yo Gabba Gabba!\"\", of which Jacobs co-created. Super Rad! \"\"Super Rad!\"\" is a song by American band The Aquabats which appears on their 1997 album \"\"The Fury of The Aquabats!\"\". Issued by The Aquabats' then labels Goldenvoice and Time"} +{"qid": "test225", "pid": "17635044", "query": "who are the characters in yo gabba gabba", "answer": "Foofa", "passage": "\"Taming Strange\"\nagrees. Kyle takes Ike to a live \"\"Yo Gabba Gabba!\"\" show, where Ike takes to the stage, and tells the characters that he wishes to \"\"tame Foofa's strange\"\", before removing his clothes and grinding against the character Foofa, much to the horror of the other characters and everyone in the audience. When Ike and Kyle are subsequently reprimanded for this, Ike says that Foofa is an attractive woman, and should not be limiting herself to children. Foofa shocks the others when she agrees with this, saying that she wishes to play to adult audiences, and add sex appeal to her"} +{"qid": "test225", "pid": "6601566", "query": "who are the characters in yo gabba gabba", "answer": "Gooble", "passage": "\"Gabba Gabba Hey\"\nalbum called \"\"\"\" was released. Gabba Gabba Hey \"\"Gabba Gabba Hey\"\" is a catchphrase associated with the punk rock band the Ramones. The phrase is included in the song \"\"Pinhead\"\" (1977), which contains the lyrics: \"\"Gabba gabba, we accept you, we accept you, one of us.\"\" The song ends with: \"\"Gabba gabba hey, gabba gabba hey!...\"\" The phrase comes from a scene in the 1932 motion picture \"\"Freaks\"\", in which the title characters chant the line \"\"Gooble, gobble, we accept her, we accept her, one of us, one of us!\"\" (The Ramones saw \"\"Freaks\"\" at an art house cinema on"} +{"qid": "test225", "pid": "6601563", "query": "who are the characters in yo gabba gabba", "answer": "Gooble", "passage": "\"Gabba Gabba Hey\"\nGabba Gabba Hey \"\"Gabba Gabba Hey\"\" is a catchphrase associated with the punk rock band the Ramones. The phrase is included in the song \"\"Pinhead\"\" (1977), which contains the lyrics: \"\"Gabba gabba, we accept you, we accept you, one of us.\"\" The song ends with: \"\"Gabba gabba hey, gabba gabba hey!...\"\" The phrase comes from a scene in the 1932 motion picture \"\"Freaks\"\", in which the title characters chant the line \"\"Gooble, gobble, we accept her, we accept her, one of us, one of us!\"\" (The Ramones saw \"\"Freaks\"\" at an art house cinema on a rare day off when"} +{"qid": "test225", "pid": "7874333", "query": "who are the characters in yo gabba gabba", "answer": "DJ Lance Rock", "passage": "\"Yo Gabba Gabba!\"\nAll episodes follow a similar format. In the opening scene, DJ Lance Rock is shown walking on a plain white background while holding a gray radio with colorful buttons. He then gets to a table scenery that involves four different colored lands and a gray cloth underneath it. He then places down the radio, and then he shouts \"\"YOOOO Gabba Gabba!\"\" and opens the radio, and inside it are 5 toy figures: Toodee, Muno, Foofa, Plex, and Brobee. He places down the figures one-by-one, and then they become alive. The episode features four main segments (it was shortened to three"} +{"qid": "test2251", "pid": "19743659", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"Chapter 6 (American Horror Story)\"\n6\"\" of \"\"Roanoke\"\", creating a solid – and even scarier – turn of events while splitting the season in two.\"\" Emily L. Stephens from \"\"The A.V. Club\"\" gave the episode an A rating, stating, \"\"\"\"Chapter 6\"\" isn't just the best episode of the season so far; technically speaking, it ranks with the best-executed episodes of \"\"American Horror Story\"\", period.\"\" Chapter 6 (American Horror Story) \"\"Chapter 6\"\" is the sixth episode of the of the anthology television series \"\"American Horror Story\"\". It aired on October 19, 2016, on the cable network FX. The episode was written by Ned Martel and directed"} +{"qid": "test2251", "pid": "19144883", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"American Horror Story: Roanoke\"\non a hat on a hat that we've had to protect.\"\" Falchuk added, \"\"No matter what you think it is, it's not that. Then, episode 6 comes and you're like, 'Wait! What happened?' It's like [episodes] 1–5, 6–9, and 10 is its own thing.\"\" Murphy went on to confirm the turn in the season being a behind-the-camera look at the production of the faux documentary \"\"My Roanoke Nightmare\"\". He also stated that the final episode will feature characters, and their mythologies, that will continue on in the overall series. Colonial ware and design are incorporated into the season, which is"} +{"qid": "test2251", "pid": "19743646", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"Chapter 6 (American Horror Story)\"\nChapter 6 (American Horror Story) \"\"Chapter 6\"\" is the sixth episode of the of the anthology television series \"\"American Horror Story\"\". It aired on October 19, 2016, on the cable network FX. The episode was written by Ned Martel and directed by Angela Bassett. One of the first major story arc changes of the series, the format of the series becomes a found footage horror depicting the aftermath of \"\"My Roanoke Nightmare\"\" and the development of a follow-up series, \"\"Return to Roanoke: Three Days in Hell\"\". \"\"My Roanoke Nightmare\"\" was a television smash hit when it aired in 2015. With"} +{"qid": "test2251", "pid": "15451009", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"American Horror Story\"\nbuilt at the 2015 San Diego Comic-Con, showing an Art Deco style building from the 1920s, inspired by the old Hollywood era. Filming for the sixth season began on July 6, 2016 at Santa Clarita, California. Set constructions include a colonial settler home to speculate the disappearance of the Roanoke Colony. Filming for the seventh season was originally planned to begin in Orange, California on June 2017 before it was moved to May instead. Filming for the eighth season is set to begin on June 16, 2018. \"\"American Horror Story\"\" title screens offer vague hints to important plot elements and"} +{"qid": "test2251", "pid": "19144882", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"American Horror Story: Roanoke\"\nthe season was possibly subtitled \"\"The Mist\"\", as a Rotten Tomatoes page and \"\"TV Guide\"\" magazine had printed; which was later proven untrue. There is a direct connection to \"\"Freak Show\"\" with an exploration of the Mott family origin. In a late September issue of \"\"Entertainment Weekly\"\", Falchuk and Murphy revealed there would be a major twist coming to the series in \"\"Chapter 6\"\". Murphy said of the matter, \"\"You'll see starting in episode 6, the show has a huge turn and the thing that you think you're watching is not what you're watching, It's a hat on a hat"} +{"qid": "test2251", "pid": "19144902", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"American Horror Story: Roanoke\"\ntime.\"\" Jeff Jensen of \"\"Entertainment Weekly\"\" also gave a positive review, writing, \"\"The use of mystery to market the season may have been contrived, but at this point, mystery might also be the best thing going for it, too.\"\" Ben Travers of IndieWire called the premiere \"\"a promising start with a central mystery as tantalizing as the ads teasing it.\"\" Live +7 ratings were not available, so Live +3 ratings have been used instead. American Horror Story: Roanoke American Horror Story: Roanoke is the sixth season of the FX horror anthology television series \"\"American Horror Story\"\". It premiered on September"} +{"qid": "test2251", "pid": "19144874", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"American Horror Story: Roanoke\"\nAmerican Horror Story: Roanoke American Horror Story: Roanoke is the sixth season of the FX horror anthology television series \"\"American Horror Story\"\". It premiered on September 14, 2016, marking the first time the series has debuted outside of October, and concluded on November 16, 2016. Returning cast members from previous seasons include: Kathy Bates, Sarah Paulson, Lily Rabe, Denis O'Hare, Wes Bentley, Evan Peters, Cheyenne Jackson, Angela Bassett, Adina Porter, Lady Gaga, Leslie Jordan, Frances Conroy, Finn Wittrock, Robin Weigert and Taissa Farmiga, along with new cast members Cuba Gooding Jr. and André Holland. Paulson also reprised her role as"} +{"qid": "test2251", "pid": "20334119", "query": "what is the name of season 6 of american horror story", "answer": "Roanoke", "passage": "\"Holes (American Horror Story)\"\nfooting with \"\"Holes\"\" and its angle focusing on the villains' side of the mass hoax, but it's best we don't linger here too long. Repetitive ruts have been \"\"American Horror Story\"\"'s bane for years now as the show operates best when it's not delivering the same thing week after week. It's what sunk \"\"Roanoke\"\", ultimately.\"\" Holes (American Horror Story) \"\"Holes\"\" is the fifth episode of the of the anthology television series \"\"American Horror Story\"\". It aired on October 3, 2017, on the cable network FX. The episode was written by Crystal Liu, and directed by Maggie Kiley. Bob (Dermot Mulroney)"} +{"qid": "test2253", "pid": "1590894", "query": "who created the very first adhesive postage stamp and what year", "answer": "Sir Rowland Hill", "passage": "\"Penny Black\"\nPenny Black The Penny Black was the world's first adhesive postage stamp used in a public postal system. It was first issued in Great Britain on 1 May 1840, but was not valid for use until 6 May. It features a profile of Queen Victoria. In 1837, British postal rates were high, complex and anomalous. To simplify matters, Sir Rowland Hill proposed an adhesive stamp to indicate pre-payment of postage. At the time it was normal for the recipient to pay postage on delivery, charged by the sheet and on distance travelled. By contrast, the Penny Black allowed letters of"} +{"qid": "test2254", "pid": "13800713", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Zole\nwith the Queen of clubs being the strongest. In the following games, the player to the left of current dealer will become the next dealer. The dealer shuffles the deck and gives it to the player on his right to cut. Traditionally the player cutting the pack places the cut portion closer to himself as if inviting luck to come to him. After this, he deals cards in packets of four cards to each participant two times, starting with the player on his left, thus each player has 8 cards in total and 2 cards are left on the table."} +{"qid": "test2254", "pid": "20761580", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Mucken\nhave to take one trick (irrespective of its card points) in order to win. The dealer shuffles the cards, lets the player to his right cut them and then deals them clockwise in two packets of three cards, starting with the player on his left, the forehand (\"\"Vorhand\"\" or \"\"erster Mann\"\"). Forehand leads to the first trick. The role of dealer rotates in a clockwise direction. Four hands make a 'round' (\"\"Runde\"\"). In cutting, at least 3 cards should be cut or left behind. The pack may be cut up to three times. Instead of cutting, the cutter may 'knock'"} +{"qid": "test2254", "pid": "18910670", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Do the Funky Chicken\"\nit in the middle of doing another song... and the words just started to come. I don't know how, they just came out of the blue. I just separated it. 'You raise your left arm up, and your right arm too.' When you're doing the funky chicken you use both arms. You don't just use one. It just happened I separated it. Then I put a little rhythm in between it. The same pattern that you heard on 'The Dog' is here on 'The Funky Chicken' but it is cut in half. That's how it came about. Thomas added a"} +{"qid": "test2254", "pid": "13810651", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Phat (card game)\"\nreceive 9 cards each from a 52-card pack. The aim is to score cards in tricks. The game is 91 or 121 up and the scores are pegged on a Cribbage board. The cards rank are as follows: One player from each team cuts a card from the pack and whoever cuts the highest card will pitch first. The dealer will be the player to the right of the pitcher and the turn to deal and play passes always to the left. The player to the dealer's left leads first and the suit he plays establishes trumps. Others must follow"} +{"qid": "test2254", "pid": "312469", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Shuffling\nShuffling Shuffling is a procedure used to randomize a deck of playing cards to provide an element of chance in card games. Shuffling is often followed by a cut, to help ensure that the shuffler has not manipulated the outcome. One of the easiest shuffles to accomplish after a little practice is the overhand shuffle. Johan Jonasson wrote, \"\"The overhand shuffle... is the shuffling technique where you gradually transfer the deck from, say, your right hand to your left hand by sliding off small packets from the top of the deck.\"\" In detail as normally performed, with the pack initially"} +{"qid": "test2254", "pid": "3597621", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Tarabish\nteam with the most points at the end of the game wins. A Tarabish deck consists of a normal deck of playing cards with the 2 through 5 of each suit removed. In preparation for the hand the dealer shuffles the cards in the usual manner. When finished the person to the right of the dealer cuts the cards. The cut must leave at least four cards in each portion of the deck. Once the cards have been cut, no further shuffling is allowed. The 36 Tarabish cards are dealt in groups of three beginning to the left of the"} +{"qid": "test2254", "pid": "10743503", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Bing rummy\"\nthe Galena lead mines that popularized the term “bing ore”. These mines opened in 1919 about the time the game was developed. The deck consists of two standard 52-card decks (no jokers) with deuces wild. The game starts with each person buying in for the agreed amount (traditionally 25 cents). Once the cards are shuffled, the player on the dealer’s right “cuts for a deuce” viz. starts to cut the deck and if the bottom card of the top section is a deuce, the player can keep the card. This is not a true cut as the two sections do"} +{"qid": "test2254", "pid": "11575014", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Botifarra (card game)\"\nthe corresponding number of points. The player who dealt the cards and selected trumps in the previous hand will be responsible for shuffling the cards, the player to his left will cut the deck and the player to his right will deal the cards and select trumps. In some versions of the game, the cards are never shuffled at the start of each hand. The two piles of cards from the previous hand are simply placed on top of each other and the deck is cut by the next player in order of play. This means that the cards will"} +{"qid": "test2254", "pid": "8939142", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"BattleLore (board game)\"\ngiving each player a left flank, a center and a right flank section. You command your troops by playing a command card. Command cards are used to order your troops to move, battle and/or execute a special command. There are two types of command cards: Section cards and Tactic cards. Section cards are used to order a move and/or battle in a specific section. These cards indicate in which section(s) of the battlefield you may order units and how many units you may order. Tactic cards allow you to make special moves, battle in a specific way or take special"} +{"qid": "test2254", "pid": "7954961", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Pilotta\n♠. If the suit which made the cut is hearts, for example, then the player who shuffled and cut the deck will be the dealer. If it was spades, then the person on the left of the shuffler is the dealer. At the end of each turn, the player on dealer's left becomes the new dealer. The cards are given counter-clockwise; first, 3 cards are given to each player, starting from the one on the dealer's right and ending at the dealer himself. Then, another 2 cards are dealt, and then another 3. Starting from the player on the dealer's"} +{"qid": "test2254", "pid": "559932", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Baccarat (card game)\"\nof him, the banker being entitled to shuffle them last, and to select the person by whom they shall be cut. Each punter having made his stake, the banker deals three cards, the first to the player on his right, the second to the player on his left, and the third to himself; then three more in like manner. The five punters on the right (and any bystanders staking with them) win or lose by the cards dealt to that side; the five others by the cards dealt to the left side. The rules as to turning up with eight"} +{"qid": "test2254", "pid": "13810649", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Phat (card game)\"\non a yard-long board pretty much resembling a Cribbage board. Each player cuts a card from the stock and whoever cuts the lowest card will pitch first. The dealer will be the player to the right of the pitcher and the turn to deal and play passes always to the left. The trump is determined by the first card led by the pitcher and subsequently players must follow suit if possible, but otherwise may play any card. The trick is taken by the highest card of the suit led, or by the highest trump if any are played, and the"} +{"qid": "test2254", "pid": "7650840", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Thunee\na time starting from his right - a process known as \"\"black Jack deals\"\". The first person receiving a black Jack, i.e. either the Jack of clubs or the Jack of spades, will start dealing and the opposite side will trump. The Dealer must always offer the opposition to his left the opportunity to cut the deck. One cannot center cut or count the number of cards prior to cutting. The opposition may decline to cut with no recourse. Each player receives six cards in total but first each player is dealt 4 cards and then the dealer deals the"} +{"qid": "test2254", "pid": "10601006", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"If You Speak Any Faster\"\nMcTernan made the band \"\"work hard from the get go and it's paying off\"\", according to Sutor. McTernan \"\"never sugarcoats things, he is very honest with how you're doing and what you're doing wrong/right.\"\" The band were originally going to record 14 songs, but cut the number down to 12. By April 11, all of the music was recorded, leaving vocals left to do. The recordings were sent for mastering in May. On March 31, 2005, \"\"If You Speak Any Faster\"\" was announced for release. In May, the band went on the Now or Never tour alongside Punchline, This Day"} +{"qid": "test2254", "pid": "2118216", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"500 rum\"\nawarded to players who play certain cards. 500 rum is played using a standard French deck and can use 52 cards, or 53-54 cards including one or two jokers. When playing with 5 or more players, two decks of cards should be used with a total of 104-108 cards. The players draw for deal, low dealing first. Ace is the lowest card in the draw. The dealer shuffles, and the player to the right cuts. The dealer completes the cut and deals cards one at a time to each player face down, clockwise starting at the dealers left. The number"} +{"qid": "test2254", "pid": "11678216", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Rules of cribbage\"\ncard (the ace counts as one, and is the lowest card) dealing first. If the cutters tie, the cards are re-shuffled and re-cut. (An alternate, traditional method is “first Jack deals”: the cards are dealt in rotation, one at a time, until a Jack appears. The player receiving the first Jack becomes the first dealer.) The dealer shuffles, offers the deck to the player on his or her right to cut (required in tournament play), and deals cards singly to each player, starting with the player on the dealer's left. During the deal, if any card is exposed by the"} +{"qid": "test2254", "pid": "312479", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Shuffling\ninterweave. This is known as a \"\"Faro Shuffle\"\". The faro shuffle is performed by cutting the deck into two, preferably equal, packs in both hands as follows (right-handed): The cards are held from above in the right and from below in the left hand. Separation of the deck is done simply lifting up half the cards with the right hand thumb slightly and pushing the left hand's packet forward away from the right hand. The two packets are often crossed and slammed into each other as to align them. They are then pushed together by the short sides and bent"} +{"qid": "test2254", "pid": "15401081", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Hitomi Niiya\"\nfuture away from the sport, she said, \"\"It's a complete blank. I can't imagine what I'll be doing. I can't do anything useful for society, but I will completely cut off connection with the world of athletics.\"\" She cried with her mother and left these final words for future athletes: \"\"Always do what you think is the right thing no matter what anybody tells you.\"\" Hitomi Niiya She formed part of the Japanese junior team at the IAAF World Cross Country Championships from 2004 to 2006, helping them to team medals each time. She also won a bronze medal over"} +{"qid": "test2254", "pid": "3014231", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Ernesto Miranda\"\nissue \"\"Miranda\"\" warning cards to their officers to recite. They read: You have the right to remain silent. If you give up the right to remain silent, anything you say can and will be used against you in a court of law. You have the right to an attorney and to have an attorney present during questioning. If you cannot afford an attorney, one will be provided to you at no cost. During any questioning, you may decide at any time to exercise these rights, not answer any questions or make any statements. Do you understand these rights as I"} +{"qid": "test2254", "pid": "11783124", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Go-Stop\nthe earliest month card, i.e. January, and the latest month card favored during daytime, i.e. December. (밤일낮장) Before the cards are dealt, the dealer shuffles the cards by holding the deck in the left hand with the cards face-down and pulling out random stacks of cards with the right hand to stack them on top. The dealer must repeat this process several times in order to shuffle the cards sufficiently. After shuffling, the dealer holds the deck out to the player to their left in order for them to cut the deck. If there are only two players, the opponent"} +{"qid": "test2254", "pid": "9824386", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Baloot\nby the player on the left. The player on the left of the dealer can either say \"\"go\"\" without cutting the deck, shuffling it (just once), take the first card as the public card, can give the bottom three cards to the teammate or keep them for themselves, or take the top three cards to themselves. If the dealer gives a player a card and was mistakenly flipped, the player has no right to refuse it, unless it is an Ace, then the shuffling starts again from the same dealer. The dealer has 32 cards; he has to deal them"} +{"qid": "test2254", "pid": "20916831", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Bierkopf\nSow and, if necessary, moves places to sit opposite. The two players who did not receive Sows form the second partnership and take the remaining places at the card table (\"\"Kardeltisch\"\"). The player with the first Sow (there are other variants) now shuffles the cards and offers them to rearhand, the player to his right, to cut. Rearhand cuts as often as he wants to. The dealer then deals a packet of 3 cards and then a packet of 2 to each player, the cards being dealt in clockwise order and face down. Forehand, the player left of the dealer,"} +{"qid": "test2254", "pid": "5824278", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Mus (card game)\"\nIn this way, the speaking order changes in each game and all the players get to be the first one to speak at some point. The dealer shuffles the cards and their left hand player cuts the deck. After this, they deal four cards, one card at a time, to each player starting with the player to their right and finishing with themself. Once the cards have been dealt, they put the deck aside and the game begins. The first player to speak will be the player at the right hand side of the dealer. Being the dealer is disadvantageous"} +{"qid": "test2254", "pid": "20747531", "query": "do you cut cards to the left or right", "answer": "right", "passage": "Bauernschnapsen\n\"\"Daus\"\"), the 10, the King, the Ober (or the \"\"Dame\"\", regionally \"\"Manderl\"\") and the Unter (or the \"\"Bube\"\", regional \"\"Bauer\"\"). The dealer shuffles the card deck and the player to his right cuts the deck at least once or 'knocks' with his fist on the deck to indicate he is happy not to cut. Next three cards are dealt to each player in clockwise order, beginning with the player on the dealer's left, the caller (\"\"Rufer\"\"). The caller must choose a trump suit (\"\"Trumpffarbe\"\" or, regionally, \"\"Atoutfarbe\"\") from his first three cards, before receiving the remaining two cards. Then each"} +{"qid": "test2254", "pid": "19609907", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Bisca (card game)\"\n11 points and the seven (7) (called the \"\"\"\"bisca\"\"\"\" or \"\"\"\"manilha\"\"\"\") with a value of 10 points, the King worth 4 points, Jack worth 3 points, and the Queen worth 2 points. The game is played anticlockwise. The first dealer is chosen at random (or by draw of the highest card) and the turn to deal passes to the right after each hand. The dealer shuffles the cards and the player at the dealer's left cuts. The dealer then gives 3 cards to each player, one card at a time, beginning with the player to dealer's right, going around anticlockwise"} +{"qid": "test2254", "pid": "16605449", "query": "do you cut cards to the left or right", "answer": "right", "passage": "\"Roth Greeting Cards v. United Card Co.\"\na picture of a boy sitting and crying with the words \"\"I miss you already ...\"\" and inside the card \"\"... and you haven't even left\"\". The vice-president of United admitted that he might have seen the Roth cards in stores that he visited to see what his competition was doing, and might have had samples of the Roth cards in his office, but denied copying. The district court found for the defendant on two grounds. First, the court found that Roth Greeting Cards had not completed its registration of copyright ownership at the time the case was filed, and"} +{"qid": "test2255", "pid": "5166444", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Los Adaes\"\nde Ripperdá, moved his headquarters and the garrison to San Antonio, and in 1772 San Antonio became the new capital of Tejas. The settlers who had lived near Los Adaes were forced to resettle in San Antonio, in 1773. In the six years between the inspection and the removal of the settlers, the population of eastern Tejas had increased from 200 settlers of European descent to 500 people, a mixture of Spanish, French, Indians, and a few blacks. The settlers were given only five days to prepare for the move to San Antonio. Many of them perished during the three-month"} +{"qid": "test2255", "pid": "5322140", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"History of Texas\"\nfemale settlers in Spanish Texas. The new missions were over from the nearest Spanish settlement, San Juan Bautista. Martín de Alarcón, who had been appointed governor of Texas in late 1716, wished to establish a way station between the settlements along the Rio Grande and the new missions in East Texas. Alarcón led a group of 72 people, including 10 families, into Texas in April 1718, where they settled along the San Antonio River. Within the next week, the settlers built mission San Antonio de Valero and a presidio, and chartered the municipality of San Antonio de Béxar, now San"} +{"qid": "test2255", "pid": "19231937", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Canarian Americans\"\nthe United States, and the territory decided to join the union in 1845. The last persons in the San Antonio Isleño community to speak Spanish as their daily language died in the 1950s, though the culture is being kept alive (San Antonio Isleños who speak Spanish are now all descendants of intermarriages between Isleños and Mexican settlers who arrived during the Mexican Revolution). Some 5,000 Isleños (the majority of them descendants of the original Canarian settlers) live in San Antonio, Texas. Several of the old families of San Antonio trace their descent from the Canary Island colonists. María Rosa Padrón"} +{"qid": "test2255", "pid": "19231935", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Canarian Americans\"\nbut also new Spanish and Mexican settlers arriving in San Antonio in the second half of the 18th century, who felt marginalized because appointments to positions in the Cabildo, which had been created by the Canarians, were monopolized by them. San Antonio grew to become the largest Spanish settlement in Texas, and for most of its history it was the capital of the Spanish and later the Mexican province of Tejas. From San Antonio, the \"\"Camino Real\"\" (today Nacogdoches Road) in San Antonio ran to the Mexico–United States border near the small frontier town of Nacogdoches. In the Battle of"} +{"qid": "test2255", "pid": "5321915", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Spanish Texas\"\nincreased from 200 Europeans to 500, a mixture of Spanish, French, Indians, and a few blacks. The settlers were given only five days to prepare to relocate to San Antonio. Many of them perished during the three-month trek and others died soon after arriving. After protesting, they were permitted in the following year to return to East Texas, but only as far as the Trinity River, from Natchitoches. Led by Antonio Gil Y'Barbo, the settlers founded the town of Nuestra Señora del Pilar de Bucareli \"\"where the trail from San Antonio to Los Adaes crossed the Trinity.\"\" The settlers helped"} +{"qid": "test2255", "pid": "5321899", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Spanish Texas\"\nthat time, only 300 Hispanic settlers lived in San Antonio, with 200 others dispersed throughout the rest of the colony. The new immigrants began farming and renamed the town San Fernando de Béxar, establishing the first municipal, and only civilian, government in Texas. Juan Leal Goraz, the oldest of the settlers, was appointed the first councilman. As the first settlers of the municipality, the Islanders and their descendants were designated hidalgos. The established settlers resented the Islanders for their new titles and exclusive privileges within the city government. The newcomers did not know how to handle horses, rendering them useless"} +{"qid": "test2255", "pid": "2790640", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"San Antonio, Zambales\"\nSan Antonio, Zambales The , is a in the province of , . According to the , it has a population of people. San Antonio was a hunting region where indigenous hunters from the northern towns of Zambales would hunt, and gather. The first settlers from the Paoay area in Ilocos Norte arrived in 1830, and founded the first Spanish settlement that developed into what is now San Antonio. San Antonio was given the status of district or barrio in 1836. The town mayor in that period was Don Gregorio Banaga. He governed the town from 1836 to 1849. He"} +{"qid": "test2255", "pid": "14519117", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Juan Leal\"\nlive in San Antonio, as in the case of John O. Leal, historian and president of the Canary Islands Descendants Association of San Antonio, Texas. A descendant of Juan Leal was a Bexar County's archivist at the end of the 20th century. Juan Leal Juan Leal Goraz (1676–1742 or 1743), also called Juan Leal Gonzal, was a Spanish settler and politician who served as the first \"\"alcalde\"\" (a municipal magistrate with both judicial and administrative functions) of La Villa de San Fernando, which later would become the city of San Antonio, Texas. He came in 1731 with a group of"} +{"qid": "test2255", "pid": "16530459", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Juan Curbelo (Tejano settler)\"\nJuan Curbelo (Tejano settler) Juan Curbelo (1680 - 1760) was a Spanish politician who served as the sixth and eighth mayor of San Antonio, Texas in 1737 and 1739. His family arrived in San Antonio from the Canary Islands in 1731 with other Canarian families to populate the region. Juan Curbelo was born in 1680 in Lanzarote, Canary Islands, Spain and was son of Domingo Curbelo y María Martín Enríquez. He arrived in San Fernando de Béxar, Texas (present-day San Antonio) in 1731. In 1737 and 1739, he served one-year terms as mayor of the community. He married Gracia Perdomo"} +{"qid": "test2255", "pid": "14630029", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Vicente Álvarez Travieso\"\nVicente Álvarez Travieso Vicente Álvarez Travieso (1705–1779) was a Spanish judge and politician who served as the first alguacil (Sheriff or Constable) of San Antonio, Texas, from 1731 until his death. He was a leading spokesperson of the Canary Islands settlers of San Antonio and was noted for his support for the Isleño community there. Through his demands to the leaders of New Spain, Travieso was able to improve the lives of the Isleños. He was instrumental in providing medical care for them, thus ensuring their survival. Travieso became mayor of San Antonio in 1776. Vicente Alvarez Travieso was born"} +{"qid": "test2255", "pid": "14630037", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Vicente Álvarez Travieso\"\nthey arrived in Coahuila, just before reaching San Antonio. After this statement, a dispute began between Juan Leal and Alvarez Travieso. This dispute remained even after they occupied the charges of mayor and alguacil mayor respectively. Vicente Álvarez Travieso Vicente Álvarez Travieso (1705–1779) was a Spanish judge and politician who served as the first alguacil (Sheriff or Constable) of San Antonio, Texas, from 1731 until his death. He was a leading spokesperson of the Canary Islands settlers of San Antonio and was noted for his support for the Isleño community there. Through his demands to the leaders of New Spain,"} +{"qid": "test2255", "pid": "6880716", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"José Antonio Estudillo\"\nJosé Antonio Estudillo José Antonio Estudillo (November 2, 1803 – July 20, 1852) was a Californio and an early settler of San Diego, California when California was part of New Spain. José Antonio Estudillo was born in 1805 in Monterey, Alta California to Captain José María Estudillo, who was born in Andalusia, Spain. José Antonio Estudillo probably came to San Diego as a boy in 1820, when his father became commandant of the Presidio of San Diego. His brother José Joaquín was the second \"\"alcalde\"\" of Yerba Buena, the \"\"pueblo\"\" that later became San Francisco. Estudillo joined the Spanish Army"} +{"qid": "test2255", "pid": "10307208", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Maritime history of Colonial America\"\nAmericas. Spanish explorers also reached the present-day United States. The first confirmed landing in the continental US was by a Spaniard, Juan Ponce de León, who landed in 1513 at a lush shore he christened La Florida. The Spanish sent some settlers, creating the first permanent European settlement in the continental United States at St. Augustine, Florida, in 1565 and later Santa Fe, New Mexico, San Antonio, Tucson, San Diego, Los Angeles and San Francisco. Most Spanish settlements were along the California coast or the Sante Fe River in New Mexico. The first successful English colony was established in 1607,"} +{"qid": "test2255", "pid": "5497741", "query": "who were the first settlers in san antonio", "answer": "Spanish", "passage": "\"Spanish missions in Texas\"\nabandoned. In 1779, Antonio Gil Y'Barbo led a group of settlers who had been removed from Los Adaes to the area to settle in the empty mission buildings. This began the town of Nacogdoches, Texas. Mission Nuestra Señora de los Dolores de los Ais was originally established in 1717 in the area of Ayish Bayou (modern San Augustine, Texas) by Father Antonio Margil de Jesus. The mission was built to convert the local Ais Native Americans. Following the Chicken War in 1719, Spanish officials closed the East Texas missions and Father Margil and others were relocated to San Antonio. During"} +{"qid": "test2256", "pid": "421493", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nTraveling Wilburys The Traveling Wilburys (sometimes shortened to the Wilburys) were a British–American supergroup consisting of Bob Dylan, George Harrison, Jeff Lynne, Roy Orbison and Tom Petty. Originating from an idea discussed by Harrison and Lynne during the sessions for Harrison's 1987 album \"\"Cloud Nine\"\", the band formed in April 1988 after the five members united to record a bonus track for Harrison's next European single. When this collaboration, \"\"Handle with Care\"\", was deemed too good for such a limited release, the group agreed to record a full album, titled \"\"Traveling Wilburys Vol. 1\"\". Following Orbison's death in December 1988,"} +{"qid": "test2256", "pid": "421526", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nOver Again\"\" contained a greeting that read \"\"Merry Christmas from Nelson and Pee Wee Wilbury.\"\" Traveling Wilburys The Traveling Wilburys (sometimes shortened to the Wilburys) were a British–American supergroup consisting of Bob Dylan, George Harrison, Jeff Lynne, Roy Orbison and Tom Petty. Originating from an idea discussed by Harrison and Lynne during the sessions for Harrison's 1987 album \"\"Cloud Nine\"\", the band formed in April 1988 after the five members united to record a bonus track for Harrison's next European single. When this collaboration, \"\"Handle with Care\"\", was deemed too good for such a limited release, the group agreed to"} +{"qid": "test2256", "pid": "5226685", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"Traveling Wilburys Vol. 3\"\nTraveling Wilburys Vol. 3 Traveling Wilburys Vol. 3 is the second and final studio album by the Traveling Wilburys, a group consisting of George Harrison, Jeff Lynne, Bob Dylan and Tom Petty. It was released in October 29, 1990 as the follow-up to their 1988 debut, \"\"Traveling Wilburys Vol. 1\"\". The band members again adopted pseudonyms for their contributions, using new names from the fictitious Wilbury brothers. Though it was their second release, the album was mischievously titled \"\"Vol. 3\"\" by George Harrison. According to Jeff Lynne, \"\"That was George's idea. He said, 'Let's confuse the buggers.'\"\" As the dynamics"} +{"qid": "test2256", "pid": "5226689", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"Traveling Wilburys Vol. 3\"\nownership of his Dark Horse Records catalog and the two Wilburys albums reverted to him, and the albums went out of print. On June 12, 2007, \"\"Vol. 1\"\" and \"\"Vol. 3\"\" were reissued by Rhino Records as \"\"The Traveling Wilburys Collection\"\", packaged together with bonus tracks and a DVD. Additional personnel } Traveling Wilburys Vol. 3 Traveling Wilburys Vol. 3 is the second and final studio album by the Traveling Wilburys, a group consisting of George Harrison, Jeff Lynne, Bob Dylan and Tom Petty. It was released in October 29, 1990 as the follow-up to their 1988 debut, \"\"Traveling Wilburys"} +{"qid": "test2256", "pid": "421496", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nof my mates ... It's this new group I got [in mind]: it's called the Traveling Wilburys, I'd like to do an album with them and then later we can all do our own albums again.\"\" According to Jeff Lynne, who co-produced \"\"Cloud Nine\"\", Harrison introduced the idea of the two of them starting a band together around two months into the sessions for his album, which began in early January 1987. When discussing who the other members might be, Harrison chose Bob Dylan and Lynne opted for Roy Orbison. The term \"\"Wilbury\"\" also originated during the \"\"Cloud Nine\"\""} +{"qid": "test2256", "pid": "10123548", "query": "who were the members of the traveling wilburys group", "answer": "George Harrison", "passage": "\"The Traveling Wilburys Collection\"\nThe Traveling Wilburys Collection The Traveling Wilburys Collection is a box set compilation album by the British-American supergroup the Traveling Wilburys. It comprises the two studio albums recorded by the band in 1988 and 1990, with additional bonus tracks, and a DVD containing their music videos and a documentary about the group. The box set was released on 11 June 2007 by Rhino, in association with Wilbury Records. The release was overseen by George Harrison's estate, as the rights holder for the Wilburys' catalogue, and ensured that the band's recordings were available for the first time since they went"} +{"qid": "test2256", "pid": "10123549", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"The Traveling Wilburys Collection\"\nout of print in the mid 1990s. Two of the bonus tracks were completed for the box set by Jeff Lynne, who co-founded the Wilburys in 1988, and Harrison's son Dhani. \"\"The Traveling Wilburys Collection\"\" was commercially successful, topping albums charts in Britain, Ireland, Australia and several other countries. All songs written by the Traveling Wilburys. All songs written by the Traveling Wilburys, except where noted. The Vinyl Edition features the originally released Vol. 1 and Vol. 3 Plus a Bonus 12\"\" featuring: The set is available in four different configurations: Traveling Wilburys Additional musicians Though the original issues enjoyed"} +{"qid": "test2256", "pid": "16356784", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"Heading for the Light\"\nof his spiritual search\"\". He says that it would have made \"\"a worthy \"\"Cloud Nine\"\" track\"\" and \"\"is quite explicit in its meaning, but so spirited that most listeners wouldn't have cared\"\". Traveling Wilburys Additional musicians Heading for the Light \"\"Heading for the Light\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1988 album \"\"Traveling Wilburys Vol. 1\"\". It was written primarily by George Harrison but credited to all five members of the band. Harrison sings the song with Jeff Lynne, who also co-produced the track and, with Harrison, formulated the idea for starting the Wilburys."} +{"qid": "test2256", "pid": "6437994", "query": "who were the members of the traveling wilburys group", "answer": "George Harrison", "passage": "\"Tweeter and the Monkey Man\"\nTweeter and the Monkey Man \"\"Tweeter and the Monkey Man\"\" is a song by the British–American supergroup the Traveling Wilburys that first appeared on the 1988 album \"\"Traveling Wilburys Vol. 1\"\". The songwriting credit goes officially to all members of the band, but the song is published by Bob Dylan's Special Rider Music label, indicating that the main writer is Dylan, who is also the lead singer on the record. This is partially contradicted by George Harrison's account of the song in the 2007 documentary \"\"The True History of the Traveling Wilburys\"\": \"\"Tweeter and the Monkey Man\"\" was really [written"} +{"qid": "test2256", "pid": "8652872", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"She's My Baby (Traveling Wilburys song)\"\nmusic video for the single, which was directed by David Leland and produced by Limelight Films. The clip shows the four Wilburys and drummer Jim Keltner performing the track and a snippet of Dylan riding a bike on the set. Additional musicians She's My Baby (Traveling Wilburys song) \"\"She's My Baby\"\" is a song by the British–American supergroup the Traveling Wilburys and the opening track of their 1990 album \"\"Traveling Wilburys Vol. 3\"\". The song was written by all four members of the band – George Harrison, Jeff Lynne, Bob Dylan and Tom Petty – and each of them sing"} +{"qid": "test2256", "pid": "737320", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Tom Petty\"\nMe Up (I've Had Enough)\"\" which includes \"\"Jammin' Me\"\" which Petty wrote with Dylan. In 1988, Petty joined George Harrison's group, the Traveling Wilburys, which also included Bob Dylan, Roy Orbison, and Jeff Lynne. The band's first song, \"\"Handle with Care\"\", was intended as a B-side of one of Harrison's singles, but was judged too good for that purpose and the group decided to record a full album, \"\"Traveling Wilburys Vol. 1\"\". A second Wilburys album, mischievously titled \"\"Traveling Wilburys Vol. 3\"\" and recorded without the recently deceased Orbison, followed in 1990. The album was named \"\"Vol. 3\"\" as a"} +{"qid": "test2256", "pid": "4770560", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys Vol. 1\"\nJune 12, 2007, \"\"Volume One\"\" and \"\"Vol. 3\"\" were reissued by Rhino Records as \"\"The Traveling Wilburys Collection\"\", packaged together with bonus tracks and a DVD. The box set debuted at No. 1 on the UK Albums Chart and No. 9 on the US \"\"Billboard\"\" 200. Traveling Wilburys Additional personnel Production Traveling Wilburys Vol. 1 The Traveling Wilburys Vol. 1 is the debut studio album by the British-American supergroup Traveling Wilburys, comprising George Harrison, Jeff Lynne, Bob Dylan, Roy Orbison and Tom Petty. It was released in October 1988 to commercial success and critical acclaim. Although Harrison had long planned"} +{"qid": "test2256", "pid": "16356766", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"Heading for the Light\"\nHeading for the Light \"\"Heading for the Light\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1988 album \"\"Traveling Wilburys Vol. 1\"\". It was written primarily by George Harrison but credited to all five members of the band. Harrison sings the song with Jeff Lynne, who also co-produced the track and, with Harrison, formulated the idea for starting the Wilburys. The song was issued as a promotional single in the United States, where it peaked at number 7 on \"\"Billboard\"\"s Album Rock Tracks chart. The lyrics convey the singer's return to a sure path after a"} +{"qid": "test2256", "pid": "8652871", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"She's My Baby (Traveling Wilburys song)\"\nShe's My Baby (Traveling Wilburys song) \"\"She's My Baby\"\" is a song by the British–American supergroup the Traveling Wilburys and the opening track of their 1990 album \"\"Traveling Wilburys Vol. 3\"\". The song was written by all four members of the band – George Harrison, Jeff Lynne, Bob Dylan and Tom Petty – and each of them sing a portion of the track. The song was released as the first single from the album, although it was only issued as a promotional single in the United States. The lead guitar part is played by Gary Moore. The band filmed a"} +{"qid": "test2256", "pid": "16356805", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Inside Out (Traveling Wilburys song)\"\nof pop-rocking\"\" typical of \"\"Vol. 3\"\" and that, when played next to \"\"Vol. 1\"\", \"\"you can't hear the join.\"\" Inside Out (Traveling Wilburys song) \"\"Inside Out\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1990 album \"\"Traveling Wilburys Vol. 3\"\". It was written by all the members of the band, which had been reduced to a foursome following the death of Roy Orbison in December 1988, and it was the first song they worked on for the album. The lyrics address environmental issues and describe a world turned yellow. Recording for the track began at a"} +{"qid": "test2256", "pid": "16356795", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Inside Out (Traveling Wilburys song)\"\nInside Out (Traveling Wilburys song) \"\"Inside Out\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1990 album \"\"Traveling Wilburys Vol. 3\"\". It was written by all the members of the band, which had been reduced to a foursome following the death of Roy Orbison in December 1988, and it was the first song they worked on for the album. The lyrics address environmental issues and describe a world turned yellow. Recording for the track began at a private studio in Bel Air in Los Angeles, in April 1990, and was completed three months later at George"} +{"qid": "test2256", "pid": "5226686", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys Vol. 3\"\nwithin the band had shifted with Roy Orbison's death, the four remaining members all adopted new Wilbury pseudonyms: Spike (George Harrison), Clayton (Jeff Lynne), Muddy (Tom Petty) and Boo (Bob Dylan). With Harrison and Lynne producing again, the sessions were undertaken in the spring of 1990. An additional track, a cover of \"\"Nobody's Child\"\", was recorded and released in June 1990 as a charity single in aid of Olivia Harrison's Romanian Angel Appeal. The song was also the title track of a multi-artist fundraising album compiled by the Harrisons, \"\"\"\". \"\"Traveling Wilburys Vol. 3\"\" was dedicated to the memory of"} +{"qid": "test2256", "pid": "6438000", "query": "who were the members of the traveling wilburys group", "answer": "Bob Dylan", "passage": "\"Tweeter and the Monkey Man\"\nBeacon appears on the group's digital album \"\"Live 2013\"\". P. Paul Fenech (The Meteors) covered this song on his solo album \"\"International Super Bastard\"\" in 2010. Freek de Jonge recorded a version in Dutch on his 2002 album \"\"Parlando\"\", under the title \"\"Libelle en mug\"\". Tweeter and the Monkey Man \"\"Tweeter and the Monkey Man\"\" is a song by the British–American supergroup the Traveling Wilburys that first appeared on the 1988 album \"\"Traveling Wilburys Vol. 1\"\". The songwriting credit goes officially to all members of the band, but the song is published by Bob Dylan's Special Rider Music label, indicating"} +{"qid": "test2256", "pid": "4345453", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"Handle with Care (song)\"\nStills and Judy Collins released a version of the song as the opening track of their album \"\"Everybody Knows\"\". Details per Madinger and Easter: Traveling Wilburys Additional musician Handle with Care (song) \"\"Handle with Care\"\" is a song by the British-American supergroup the Traveling Wilburys. It was released in October 1988 as their debut single and as the opening track of their album \"\"Traveling Wilburys Vol. 1\"\". The song was the first recording made by the group, although it was originally intended as a bonus track on a European single by George Harrison. When he and Jeff Lynne presented the"} +{"qid": "test2256", "pid": "4345428", "query": "who were the members of the traveling wilburys group", "answer": "Jeff Lynne", "passage": "\"Handle with Care (song)\"\nHandle with Care (song) \"\"Handle with Care\"\" is a song by the British-American supergroup the Traveling Wilburys. It was released in October 1988 as their debut single and as the opening track of their album \"\"Traveling Wilburys Vol. 1\"\". The song was the first recording made by the group, although it was originally intended as a bonus track on a European single by George Harrison. When he and Jeff Lynne presented the song to Harrison's record company, the executives insisted it was too good for that purpose, a decision that resulted in the formation of the Wilburys. The song was"} +{"qid": "test2256", "pid": "421508", "query": "who were the members of the traveling wilburys group", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nseveral awards and won the 1990 Grammy Award for Best Rock Performance by a Duo or Group. Liner notes on the album cover were written by Monty Python's Michael Palin under a pseudonym. Palin's essay was based on an idea by Derek Taylor, who wrote an extensive fictional history of the Wilburys family that otherwise went unused. Harrison planned a feature film about the band, to be produced by HandMade and directed by David Leland, but contractual problems ended the project. Roy Orbison died of a heart attack on 6 December 1988. In tribute to him, the music video for"} +{"qid": "test2257", "pid": "8014043", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"How Can You Mend a Broken Heart\"\nHow Can You Mend a Broken Heart \"\"How Can You Mend a Broken Heart\"\" is a song released by the Bee Gees in 1971. It was written mainly by Barry and Robin Gibb and was the lead and first single on the group's 1971 album \"\"Trafalgar\"\". It was their first US No. 1 single and also reached No. 1 in \"\"Cashbox\"\" magazine for two weeks. In the US Atco Records issued both mono and stereo versions of the song on each side as a promo single. The B-side was a Maurice Gibb composition \"\"Country Woman\"\". The song appears in the"} +{"qid": "test2257", "pid": "8014049", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"How Can You Mend a Broken Heart\"\nin 2001. How Can You Mend a Broken Heart \"\"How Can You Mend a Broken Heart\"\" is a song released by the Bee Gees in 1971. It was written mainly by Barry and Robin Gibb and was the lead and first single on the group's 1971 album \"\"Trafalgar\"\". It was their first US No. 1 single and also reached No. 1 in \"\"Cashbox\"\" magazine for two weeks. In the US Atco Records issued both mono and stereo versions of the song on each side as a promo single. The B-side was a Maurice Gibb composition \"\"Country Woman\"\". The song appears"} +{"qid": "test2257", "pid": "8014047", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"How Can You Mend a Broken Heart\"\nwas sung live for the first time in 1971, in a performance that was notable as drummer Geoff Bridgford's first appearance with the band. Although failing to chart on the UK Singles Chart, the song became the Bee Gees' first US number one on the \"\"Billboard\"\" Hot 100 and also reached number four on the \"\"Billboard\"\" Adult Contemporary chart. \"\"Billboard\"\" ranked it as the No. 5 song for 1971. In Spain, it was released under the title \"\"Cómo Puedes Arreglar Un Corazón Destrozada\"\". Following the release of \"\"How Can You Mend a Broken Heart\"\", the song was nominated for a"} +{"qid": "test2257", "pid": "1453929", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Barry Gibb\"\nrecord and perform together once again as the Bee Gees. In 2010, Gibb withdrew from a planned appearance on the Gorillaz album \"\"Plastic Beach\"\" which was released in March. In December 2011, his two songs, \"\"Grey Ghost\"\" and \"\"Daddy's Little Girl\"\" were released. On 21 February 2012, Gibb performed his first solo concert in the U.S. at the Seminole Hard Rock Cafe in Florida. He sang \"\"How Can You Mend a Broken Heart\"\" with Maurice's daughter, Samantha Gibb, who is a singer in her own band. Barry's son Steve was also on stage as lead guitarist and sang a Maurice"} +{"qid": "test2257", "pid": "16578835", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Country Woman\"\nCountry Woman \"\"Country Woman\"\" is a song written and performed by British rock band Bee Gees, it was written and performed by Maurice Gibb, and released as a B-side of \"\"How Can You Mend a Broken Heart\"\", which was the group's first US No. 1. The songs were released as a double A-side in Germany, France, Japan and [Canada]]. The song was recorded at the sessions for the group's album \"\"Trafalgar\"\" although unlike \"\"How Can You Mend a Broken Heart\"\", it did not make the final cut, instead being relegated to the flip side of the single. It was recorded"} +{"qid": "test2257", "pid": "12082032", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Don't Wanna Live Inside Myself\"\nthey finished the tracks \"\"Israel\"\", \"\"It's Just the Way\"\" and \"\"Engines, Aeroplanes\"\". The single was released in November 1971, four months after the number 1 smash hit \"\"How Can You Mend a Broken Heart\"\" Considering that \"\"How Can You Mend a Broken Heart\"\" was a number 1, it was surprising that this did not even make the top fifty. With the success of \"\"...Broken Heart\"\", Atco Records was choosing ballads exclusively for Bee Gees singles during this time. This song along with \"\"Walking Back to Waterloo\"\" was released as a double A-side in Spain, Canada, Japan and the US. The"} +{"qid": "test2257", "pid": "8014045", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"How Can You Mend a Broken Heart\"\nthose two songs were recorded that night\"\". They originally offered the song to Andy Williams, but ended up recording it themselves, although Williams himself covered the song on his album \"\"You've Got a Friend\"\". Barry also explains, \"\"We might imitate a certain group, later on, the group will pick up on the song and say that suits us.\"\" Maurice Gibb possibly had a hand in the writing of \"\"How Can You Mend A Broken Heart\"\" although the song is officially credited to Barry and Robin Gibb. The 2009 release \"\"Ultimate Bee Gees\"\" officially credited Maurice for the first time as"} +{"qid": "test2257", "pid": "1322094", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Robin Gibb\"\nit was announced that Barry had rejoined the group and they were recording together. The first song after the announcement was \"\"Lonely Days\"\" which reached No. 3 in the US Billboard Hot 100. On the \"\"2 Years On\"\" album Gibb's compositions included \"\"Alone Again\"\". He also co-wrote and sang lead vocals on the title track as well as \"\"Man For All Seasons\"\". In December 1970, Gibb recorded a demo \"\"After the Laughter\"\". The Bee Gees had their first US No. 1 single \"\"How Can You Mend a Broken Heart\"\", with Gibb contributing on the song, writing with Barry and singing"} +{"qid": "test2257", "pid": "1448931", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Maurice Gibb\"\nsound. He also contributed lead guitar on the Bee Gees' recordings in 1966. His composition on which he played lead guitar was \"\"Country Woman\"\" which was the B-side for the group's hit, \"\"How Can You Mend a Broken Heart\"\", as well as some songs on \"\"2 Years On\"\" including \"\"Back Home\"\", \"\"Lay It on Me\"\" and \"\"Every Second, Every Minute\"\". On his guitar work on \"\"Back Home\"\", Bruce Eder of AllMusic declared the track as the loudest guitar ever heard on a Bee Gees record. On average, Gibb sang lead on one or two songs for each album and he"} +{"qid": "test2257", "pid": "4222730", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Let's Stay Together (album)\"\nsuch wonders as 'How Can You Mend A Broken Heart?'\"\" and that \"\"[H]is cover of the Bee Gees' [song] took the soul ballad to new levels of artistry and refinement.\"\" All songs written by Al Green, except where noted Let's Stay Together (album) Let's Stay Together is a 1972 album by the soul singer Al Green, and is the follow-up to his moderate success \"\"Al Green Gets Next to You\"\". It was recorded at Royal Recording Studio, 1320 S. Lauderdale, in Memphis and was a success, peaking at number eight on the pop albums chart and became the first of"} +{"qid": "test2257", "pid": "3205064", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Michael Bublé (album)\"\nwho had previously worked with the likes of Josh Groban. Foster signed Bublé to his 143 record label, and he started recording a self-titled album in 2001, with David Foster as producer. The album features a range of standards from various eras including \"\"Fever\"\", \"\"The Way You Look Tonight\"\", \"\"For Once in My Life\"\", Van Morrison's \"\"Moondance\"\" and Lou Rawls' \"\"You'll Never Find Another Love Like Mine\"\". Barry Gibb of the Bee Gees performs with Bublé on his version of the group's classic track, \"\"How Can You Mend A Broken Heart\"\". The album was released on February 11, 2003, to"} +{"qid": "test2257", "pid": "3334922", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Trafalgar (album)\"\nTrafalgar (album) Trafalgar is a 1971 album by the Bee Gees. It was their ninth album (seventh internationally), and was released in September 1971 in the US, and November 1971 in the UK. The album was a moderate hit in the United States, and peaked at No. 34. The lead single \"\"How Can You Mend a Broken Heart?\"\" was the first Bee Gees' No. 1 single in the United States but failed to chart in Britain as did the album. It is Geoff Bridgford's only full-length appearance on a Bee Gees album as an official member. \"\"Trafalgar\"\" is noted in"} +{"qid": "test2257", "pid": "1320587", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Bee Gees\"\nthe group's official drummer. Bridgford had previously worked with the Groove and Tin Tin and played drums on Maurice's unreleased first solo album. In 1970, \"\"2 Years On\"\" was released in October in the US and November in the UK. The lead single \"\"Lonely Days\"\" reached No. 3 in the United States, promoted by appearances on \"\"The Johnny Cash Show\"\", Johnny Carson's \"\"Tonight Show\"\", \"\"The Andy Williams Show\"\", \"\"The Dick Cavett Show\"\" and \"\"The Ed Sullivan Show\"\". Their ninth album, \"\"Trafalgar\"\", was released in late 1971. The single \"\"How Can You Mend a Broken Heart\"\" was the first to hit"} +{"qid": "test2257", "pid": "8541198", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Lonely Days\"\nLonely Days \"\"Lonely Days\"\" is a ballad written and performed by the Bee Gees. It appeared on their album \"\"2 Years On\"\", and was released as a single, becoming their first Top Five hit in the US, peaking at number three in the \"\"Billboard\"\" Hot 100 and reaching number one in the \"\"Cashbox\"\" and \"\"Record World\"\" charts. On Friday, 21 August 1970, the three Gibb brothers announced they would reunite and start recording together, nearly 16 months after Robin quit the group. They said later that they wrote \"\"Lonely Days\"\" and \"\"How Can You Mend a Broken Heart\"\" at their"} +{"qid": "test2257", "pid": "1320588", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Bee Gees\"\nNo. 1 on the US charts, while \"\"Israel\"\" reached No. 22 in the Netherlands. \"\"How Can You Mend a Broken Heart\"\" also brought the Bee Gees their first Grammy Award nomination for Best Pop Performance by a Duo or Group with Vocals. Later that year, the group's songs were included in the soundtrack for the film \"\"Melody\"\". In 1972, they hit No. 16 in the US with the non-album single \"\"My World\"\", backed by Maurice's composition \"\"On Time\"\". Another 1972 single, \"\"Run to Me\"\" from the LP \"\"To Whom It May Concern\"\", returned them to the UK top 10 for"} +{"qid": "test2257", "pid": "11437269", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"1970s in music\"\nChart and they would continue as one of the most popular rock groups in the world through the following decade. The Bee Gees were an English-Australian group which consisted of brothers Barry, Maurice, and Robin Gibb — was a successful harmonic act as the 1970s dawned. Aside from the chart-topping \"\"How Can You Mend a Broken Heart\"\" in 1971, the brothers did not make much impact in the US during the first half of the decade and most of their record sales were in Europe, especially on the continent. With the failure of their 1973 album \"\"Life in a Tin"} +{"qid": "test2257", "pid": "5513324", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Jive Talkin'\"\nJive Talkin' \"\"Jive Talkin\"\" is a song by the Bee Gees, released as a single in May 1975 by RSO Records. This was the lead single from the album \"\"Main Course\"\" (as well as a song from the 1977 soundtrack, \"\"Saturday Night Fever\"\".) and hit number one on the \"\"Billboard\"\" Hot 100; it also reached the top-five on the UK Singles Chart in the middle of 1975. Largely recognised as the group's \"\"comeback\"\" song, it was their first US top-10 hit since \"\"How Can You Mend a Broken Heart\"\" (1971). The song was originally called \"\"Drive Talking\"\". The song's rhythm"} +{"qid": "test2257", "pid": "7303293", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Mr. Big Stuff\"\nhit. The song spent five weeks at no. 1 on the Billboard Soul Singles chart and peaked at no. 2 on the \"\"Billboard\"\" Hot 100 Singles chart, behind \"\"How Can You Mend a Broken Heart\"\" by The Bee Gees. \"\"Billboard\"\" ranked it as the No. 18 song for 1971. The song went double platinum and the no. 1 Soul Single of the year. Knight performed the song on \"\"Soul Train\"\" on December 11, 1971 during its first season. \"\"Mr. Big Stuff\"\" became one of Stax Records' more popular and recognizable hits. It was featured in the 2007 mini-series \"\"The Bronx"} +{"qid": "test2257", "pid": "1453910", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Barry Gibb\"\nto be an actor, \"\"I have already had offers to play different parts but, without appearing swell headed, I haven't found the right part yet\"\". \"\"One Bad Thing\"\" was later given by Gibb to his friend Ronnie Burns, a singer from Australia, and later released it as a single on Festival Records. In August, the Bee Gees reunited and recorded together again, writing \"\"Lonely Days\"\" and \"\"How Can You Mend a Broken Heart\"\" at their first reunion session. Two of Gibb's singles were omitted after the group had reunited, \"\"One Bad Thing / The Day Your Eyes Meet Mine\"\" was"} +{"qid": "test2257", "pid": "7655510", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Their Greatest Hits: The Record\"\nversion of \"\"How Can You Mend a Broken Heart\"\" with Barry singing the opening verse. A mastering fault was also present in \"\"More Than a Woman\"\", with the audio noticeably dipping to the right briefly during the first verse. These were corrected after several thousand copies had already been distributed. All compositions by Barry, Robin and Maurice Gibb, except as indicated. ** Only appears in \"\"Japan Bonus Tracks\"\" version. Their Greatest Hits: The Record Their Greatest Hits: The Record is the career retrospective greatest hits album by the Bee Gees, released on UTV Records and Polydor in November 2001 as"} +{"qid": "test2257", "pid": "1325705", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"Al Green\"\nthe Hot 100. His next album, \"\"Call Me\"\" (April 1973) produced three top ten singles: \"\"You Ought to Be with Me\"\", \"\"Call Me (Come Back Home)\"\", and \"\"Here I Am (Come and Take Me)\"\". Green's album \"\"Livin' for You\"\" (December 1973) was his last album to be certified gold. In addition to these hit singles, Green also had radio hits with songs such as \"\"Love and Happiness\"\", his cover of the Bee Gees' \"\"How Can You Mend a Broken Heart\"\", \"\"Simply Beautiful\"\", \"\"What a Wonderful Thing Love Is\"\", and \"\"Take Me to the River\"\", later covered successfully by new wave"} +{"qid": "test2257", "pid": "4189515", "query": "who sang how can you mend a broken heart first", "answer": "Bee Gees", "passage": "\"The Very Best of the Bee Gees\"\n\"\"You Win Again\"\" and \"\"Ordinary Lives\"\" from the track listing. The Very Best of the Bee Gees The Very Best of the Bee Gees is a greatest hits album by British/Australian pop group the Bee Gees. It was originally released in November 1990 by Polydor Records, around the time as the \"\"Tales from the Brothers Gibb\"\" box set. The album was primarily aimed at the European market, as shown by the exclusion of the US hits \"\"Holiday\"\", \"\"I Started a Joke\"\", \"\"Lonely Days\"\", \"\"How Can You Mend a Broken Heart\"\" and \"\"Fanny (Be Tender with My Love)\"\". The album has"} +{"qid": "test2259", "pid": "3462187", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Smokey and the Bandit\"\nSmokey and the Bandit Smokey and the Bandit is a 1977 American action comedy film starring Burt Reynolds, Sally Field, Jackie Gleason, Jerry Reed, Pat McCormick, Paul Williams and Mike Henry. The film was the directorial debut of stuntman Hal Needham. It inspired several other trucking films, including two sequels, \"\"Smokey and the Bandit II\"\" and \"\"Smokey and the Bandit Part 3\"\". \"\"Smokey and the Bandit\"\" was the second highest-grossing domestic film of 1977. Wealthy Texan Big Enos Burdette and his son Little Enos seek a trucker willing to bootleg Coors beer to Georgia for their refreshment; Big Enos has"} +{"qid": "test2259", "pid": "3462226", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Smokey and the Bandit\"\nin the television movies. Smokey and the Bandit Smokey and the Bandit is a 1977 American action comedy film starring Burt Reynolds, Sally Field, Jackie Gleason, Jerry Reed, Pat McCormick, Paul Williams and Mike Henry. The film was the directorial debut of stuntman Hal Needham. It inspired several other trucking films, including two sequels, \"\"Smokey and the Bandit II\"\" and \"\"Smokey and the Bandit Part 3\"\". \"\"Smokey and the Bandit\"\" was the second highest-grossing domestic film of 1977. Wealthy Texan Big Enos Burdette and his son Little Enos seek a trucker willing to bootleg Coors beer to Georgia for their"} +{"qid": "test2259", "pid": "5680005", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Pat McCormick (actor)\"\ndied there seven years later, aged 78. His interment was located in Forest Lawn – Hollywood Hills Cemetery. He was survived by a son, Ben, and a grandson. There is no evidence that, as has been claimed, that Pat had a twin brother (who assumed a different surname), Sgt. James McKittrick, of Chicago. Pat McCormick (actor) Pat McCormick (June 30, 1927 – July 29, 2005) was an American actor and comedy writer known for playing Big Enos Burdette in \"\"Smokey and the Bandit\"\" and its two sequels. He wrote for a number of performers such as Red Skelton, Phyllis Diller"} +{"qid": "test2259", "pid": "5680000", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Pat McCormick (actor)\"\nPat McCormick (actor) Pat McCormick (June 30, 1927 – July 29, 2005) was an American actor and comedy writer known for playing Big Enos Burdette in \"\"Smokey and the Bandit\"\" and its two sequels. He wrote for a number of performers such as Red Skelton, Phyllis Diller and Johnny Carson as well as for shows including \"\"Get Smart\"\". McCormick had a distinctive appearance being six feet, seven inches tall, weighing 250 pounds and having a walrus mustache. McCormick was born in Lakewood, Ohio, and was a 1945 graduate of Rocky River High School. McCormick was a high school athlete and"} +{"qid": "test2259", "pid": "5680003", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Pat McCormick (actor)\"\nthat a scepter in your pocket, or are you just happy to see me?\"\" a quite risque line for early 1970s television. His first screen performance was in \"\"The Shaggy D.A.\"\" in 1976. He played President Grover Cleveland in Robert Altman's \"\"Buffalo Bill and the Indians, or Sitting Bull's History Lesson\"\" in the same year. In 1977, he appeared in \"\"Smokey and the Bandit\"\" and appeared in the sequels in both 1980 and 1983, alongside Paul Williams as wealthy con men Big and Little Enos Burdette respectively. Pat appeared in the 1982 TV movie \"\"Rooster\"\", which also starred Williams. He"} +{"qid": "test2259", "pid": "4908763", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Smokey and the Bandit Part 3\"\nSmokey and the Bandit Part 3 Smokey and the Bandit Part 3 is a 1983 American action comedy film and a sequel to \"\"Smokey and the Bandit\"\" (1977) and \"\"Smokey and the Bandit II\"\" (1980), starring Jackie Gleason, Jerry Reed, Paul Williams, Pat McCormick, Mike Henry and Colleen Camp. The film also includes a cameo near the film's end by the original Bandit, Burt Reynolds. With a budget of a television movie, which was around twice the budget used for the first part, many action and comedic scenes are rehashes of scenes from the previous two \"\"Smokey and the Bandit\"\""} +{"qid": "test2259", "pid": "4908773", "query": "who played big enos in smokey and the bandit", "answer": "Pat McCormick", "passage": "\"Smokey and the Bandit Part 3\"\nthe film's $9,000,000 budget. Smokey and the Bandit Part 3 Smokey and the Bandit Part 3 is a 1983 American action comedy film and a sequel to \"\"Smokey and the Bandit\"\" (1977) and \"\"Smokey and the Bandit II\"\" (1980), starring Jackie Gleason, Jerry Reed, Paul Williams, Pat McCormick, Mike Henry and Colleen Camp. The film also includes a cameo near the film's end by the original Bandit, Burt Reynolds. With a budget of a television movie, which was around twice the budget used for the first part, many action and comedic scenes are rehashes of scenes from the previous two"} +{"qid": "test226", "pid": "6613247", "query": "who was the captain of the mayflower when it took the pilgrims to the new world", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nthe Pilgrim voyage. Most scholars agree with author Charles Banks' estimation that the \"\"Mayflower\"\" had a crew of about 50: 36 men 'before the mast' (crew) and 14 officers on the captain's staff. This included the following officers: four mates, four quartermasters, surgeon, carpenter, cooper, cook, boatswain and gunner. The entire crew stayed with the \"\"Mayflower\"\" when it wintered-over in Plimoth in 1620-1621, with about half of them dying during that time, including the gunner, boatswain, 3 of 4 quartermasters and cook. The survivors returned to London on the \"\"Mayflower\"\" sailing from Plymouth on 5 April 1621. The identity of"} +{"qid": "test226", "pid": "6613231", "query": "who was the captain of the mayflower when it took the pilgrims to the new world", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nChristopher Jones (Mayflower captain) Capt. Christopher Jones Jr. (c. 1570 – about 5 March 1622) was the Captain of the 1620 voyage of the Pilgrim ship \"\"Mayflower\"\". Christopher Jones is believed to have been born in Harwich, Essex about 1570, although baptismal records are blank for his parish church for the period of time between April 1565 and June 1571. He was the son of Christopher Jones, Sr. and his wife Sybil. The senior Jones was also a mariner and ship owner who died in 1578, leaving to his young son, bearing his name, his interest in the ship \"\"Marie"} +{"qid": "test226", "pid": "6613251", "query": "who was the captain of the mayflower when it took the pilgrims to the new world", "answer": "Captain Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nnew calendar). After 66 days of fighting gales and with the ship's timbers rupturing, and with a detriment to the health of all on board, the \"\"Mayflower\"\" finally anchored with the hook of Cape Cod harbor on 11 November. Recent research has revealed that the ship called in at the tiny fishing village of Renews in Newfoundland for fresh water and food, before finally anchoring off, what is now Provincetown. Over the next five months Captain Jones and the \"\"Mayflower\"\" would remain in Plymouth. He had originally planned to return to England as soon as the Pilgrims found a settlement"} +{"qid": "test226", "pid": "6613254", "query": "who was the captain of the mayflower when it took the pilgrims to the new world", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\narea, south-west of Harwich. These included Christopher Martin, the \"\"Mayflower\"\"s Treasurer who was responsible for provisioning the ship, his wife, step-son and servant, together with two single men from Great Burstead – Peter Browne and Richard Britteridge. All died that first winter in Plymouth except Peter Browne. After Jones' return from New England, by the summer of 1621 he had resumed his former trading voyages to Europe. But by this time it had become evident that the deprivations of the Pilgrim voyage had badly undermined his health as it had so many other \"\"Mayflower \"\"voyagers. Christopher Jones died in early"} +{"qid": "test226", "pid": "6613249", "query": "who was the captain of the mayflower when it took the pilgrims to the new world", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nthe ship's surgeon, a young man just out of apprenticeship as a London Barber-Surgeon by the name of Giles Heale. His name appears as a witness to the death-bed will of William Mullins in February 1621. Another person that Bradford also did not mention who is recorded as possibly being a principal officer of the Mayflower due to his title, is a man identified only as \"\"Master\"\" Leaver. He is recorded in Mourt's Relation (1622) as rescuing Pilgrims lost in a forest in January 1621. \"\"Mayflower\"\" embarked about sixty-five passengers in London about the middle of July 1620, proceeded to"} +{"qid": "test226", "pid": "6613260", "query": "who was the captain of the mayflower when it took the pilgrims to the new world", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nAmerican tourists visit the \"\"Old Jordans\"\" Quaker graveyard each year, however few of them realise that the old barn nearby, now in private ownership, was probably built from the timbers of the famous ship. The year 2020 will mark the quatercentenary of the Pilgrim Fathers' journey on the \"\"Mayflower\"\". To mark the occasion, the residents of Jones' home town of Harwich have set up the Harwich \"\"Mayflower\"\" Heritage Centre. In addition Christopher Jones' house in Kings Head Street will be open to visitors during 2020. Christopher Jones (Mayflower captain) Capt. Christopher Jones Jr. (c. 1570 – about 5 March 1622)"} +{"qid": "test2260", "pid": "5590340", "query": "who sings you can't get what you want", "answer": "the Rolling Stones", "passage": "\"You Can't Always Get What You Want\"\nYou Can't Always Get What You Want \"\"You Can't Always Get What You Want\"\" is a song by the Rolling Stones on their 1969 album \"\"Let It Bleed\"\". Written by Mick Jagger and Keith Richards, it was named as the 100th greatest song of all time by \"\"Rolling Stone\"\" magazine in its 2004 list of the \"\"500 Greatest Songs of All Time\"\". Jagger commented on the song's beginnings: \"\"You Can't Always Get What You Want\"\" was the first song recorded for the album. It exists in two versions, a 5:00 single mix and a 7:28 album mix. \"\"You Can't Always"} +{"qid": "test2260", "pid": "5590348", "query": "who sings you can't get what you want", "answer": "the Rolling Stones", "passage": "\"You Can't Always Get What You Want\"\nof the song as a play-out at rallies to be \"\"odd,\"\" given that it is a \"\"sort of doomy ballad about drugs in Chelsea.\"\" The Rolling Stones Additional personnel You Can't Always Get What You Want \"\"You Can't Always Get What You Want\"\" is a song by the Rolling Stones on their 1969 album \"\"Let It Bleed\"\". Written by Mick Jagger and Keith Richards, it was named as the 100th greatest song of all time by \"\"Rolling Stone\"\" magazine in its 2004 list of the \"\"500 Greatest Songs of All Time\"\". Jagger commented on the song's beginnings: \"\"You Can't Always"} +{"qid": "test2260", "pid": "5590342", "query": "who sings you can't get what you want", "answer": "the Rolling Stones", "passage": "\"You Can't Always Get What You Want\"\nRolling Stones were apt to copy the Beatles' innovations within a few months or so, 'You Can't Always Get What You Want' is the Rolling Stones' counterpart to 'Hey Jude'.\"\" Jagger said in 1969, \"\"I liked the way the Beatles did that with 'Hey Jude'. The orchestra was not just to cover everything up—it was something extra. We may do something like that on the next album.\"\" The three verses (and the varied theme of the fourth verse) address major topics of the 1960s: love, politics, and drugs. Each verse captures the essence of the initial optimism and eventual disillusion,"} +{"qid": "test2260", "pid": "1478329", "query": "who sings you can't get what you want", "answer": "the Rolling Stones", "passage": "INXS\nof lead singer. The show was executive produced by \"\"Survivor\"\"'s Mark Burnett and hosted by Brooke Burke and Jane's Addiction and former Red Hot Chili Peppers guitarist Dave Navarro. On 20 September 2005, J.D. Fortune won the eleven-week competition, which culminated in his singing the Rolling Stones's \"\"You Can't Always Get What You Want\"\" and INXS' \"\"What You Need\"\" in the finale to become the new lead singer of INXS. With Fortune as lead singer, INXS released the single \"\"Pretty Vegas\"\" on 4 October 2005. The single reached No. 5 on the iTunes Store ranking of daily most downloaded songs"} +{"qid": "test2262", "pid": "4698278", "query": "where do kidneys for kidney transplant come from", "answer": "living-donor", "passage": "\"Kidney transplantation\"\nKidney transplantation Kidney transplantation or renal transplantation is the organ transplant of a kidney into a patient with end-stage renal disease. Kidney transplantation is typically classified as deceased-donor (formerly known as cadaveric) or living-donor transplantation depending on the source of the donor organ. Living-donor renal transplants are further characterized as genetically related (living-related) or non-related (living-unrelated) transplants, depending on whether a biological relationship exists between the donor and recipient. Exchanges and chains are a novel approach to expand the living donor pool. In February 2012, this novel approach to expand the living donor pool resulted in the largest chain in"} +{"qid": "test2263", "pid": "3733967", "query": "what is on a mcchicken sandwich from mcdonalds", "answer": "a breaded chicken patty", "passage": "McChicken\nMcChicken The McChicken is a chicken sandwich sold by the international fast food restaurant chain McDonald's. The sandwich consists of a toasted wheat bun, a breaded chicken patty, shredded lettuce, and mayonnaise. The sandwich, originally introduced in 1980, proved to be a sales disappointment and was later replaced with the highly successful Chicken McNuggets. But following the success of McNuggets, the McChicken was reintroduced in 1988. But again, McDonald's removed the McChicken from its menus in the United States on September 26, 1996, and it was replaced with the Crispy Chicken Deluxe, which was part of McDonald's ill-fated Deluxe line"} +{"qid": "test2263", "pid": "3733974", "query": "what is on a mcchicken sandwich from mcdonalds", "answer": "a breaded chicken patty", "passage": "McChicken\nthe latter is served on an artisan roll, instead of the sesame seed bun of its Canadian counterpart). McDonald's restaurants in Spain serve a variant with barbecue sauce rather than mayonnaise McChicken The McChicken is a chicken sandwich sold by the international fast food restaurant chain McDonald's. The sandwich consists of a toasted wheat bun, a breaded chicken patty, shredded lettuce, and mayonnaise. The sandwich, originally introduced in 1980, proved to be a sales disappointment and was later replaced with the highly successful Chicken McNuggets. But following the success of McNuggets, the McChicken was reintroduced in 1988. But again, McDonald's"} +{"qid": "test2263", "pid": "3733973", "query": "what is on a mcchicken sandwich from mcdonalds", "answer": "mayonnaise", "passage": "McChicken\nbut, due to its popularity, became a full-time menu item) and New Zealand, the McChicken also comes on a sesame-seed bun but with lettuce and a seasoned mayonnaise sauce called \"\"McChicken Sauce\"\". In the UK, the \"\"Junior Chicken\"\" is sold as the \"\"Mayo Chicken\"\". In Canada, the low-priced chicken option is called the \"\"Junior Chicken\"\", which generally costs C$1.99 (as an offering on McDonald's Canada's \"\"Value Picks\"\" menu), but the sandwich is only lightly spiced. It is referred to as the cousin of the Canadian McChicken, which in turn is more akin to the US' Premium Crispy Chicken sandwich (though"} +{"qid": "test2263", "pid": "3733970", "query": "what is on a mcchicken sandwich from mcdonalds", "answer": "mayonnaise", "passage": "McChicken\nMarch 2013, McDonald's re-introduced the Hot 'n Spicy across the country to what was then called the Dollar Menu. In November 2013, as part of the chain's Dollar Menu & More revamp, the McChicken (and the Hot 'n Spicy) could be ordered as a Buffalo Ranch McChicken, which is a McChicken with Buffalo and Ranch sauce instead of mayonnaise, or a Bacon Buffalo Ranch, which is a Buffalo Ranch McChicken with bacon. As of June 2015, the \"\"Hot 'n Spicy\"\" is no longer available nationally. The Jalapeño Cheddar McChicken, a McChicken with jalapeño peppers sauce and a slice of white"} +{"qid": "test2263", "pid": "10381475", "query": "what is on a mcchicken sandwich from mcdonalds", "answer": "mayonnaise", "passage": "\"Angus burger\"\nthe standard Burger King version, the mushroom Swiss and the bacon cheese. In Canada, the hamburger chain Harvey's sells an Angus burger on its menu, while McDonald's Canada introduced an Angus burger in May 2008. In mid-2009, two varieties of the Angus burger were added to McDonald's Australia and New Zealand menus. The first is the \"\"Grand Angus\"\", which consists of Angus beef, mustard, McChicken-sauce mayonnaise, processed cheese, red onion, salad and tomato. The second is the \"\"Mighty Angus\"\", which consists of Angus beef, processed cheese, McChicken sauce, onion relish, red onion and bacon. In December 2015, the Grand Angus"} +{"qid": "test2266", "pid": "15169704", "query": "where does sex and the city take place", "answer": "New York City", "passage": "\"I Just Had Sex\"\nThe comedy troupe, in the same fashion as the recording process for their debut, \"\"Incredibad\"\", rented a house in Los Angeles and created a makeshift studio where they would record songs from that album. The music video for \"\"I Just Had Sex\"\" features Akon, Andy Samberg, and Jorma Taccone singing about how they just had sex with their unsatisfied girlfriends played by Blake Lively and Jessica Alba. The music video takes place in New York City atop the MetLife Building with the backdrops of the Empire State Building, Chrysler Building and the cityscape. Various other locations such as a Central"} +{"qid": "test2267", "pid": "1937704", "query": "when did 10 shilling note go out of circulation", "answer": "1970", "passage": "\"Banknotes of the pound sterling\"\n10 shilling note was designed, featuring Sir Walter Raleigh, which would become the 50 pence note upon decimalisation, and intended to be the first of the new series to be issued. However, inflation meant that the lifespan of such a note would be too short—estimates by the Decimal Currency Board suggested that a 10 shilling note would last approximately five months; therefore, it was decided that it would be more economical to have a coin instead: the fifty pence coin was introduced in 1969. Instead, the £20 note was the first Series D note to enter circulation in 1970, with"} +{"qid": "test2267", "pid": "4403643", "query": "when did 10 shilling note go out of circulation", "answer": "1970", "passage": "\"Jamaican dollar\"\ncoins were demonetized in January 1997. A scalloped nickel-plated steel 10 dollar coin replaced the 10 dollar note in 1999 and a bimetallic 20 dollar coin with a nickel-brass ring and copper-nickel center was introduced in place of a 20 dollar banknote in 2000. All nickel-plated or copper-plated steel coins are magnetic. All coins have the Jamaican coat of arms on their reverse. Coins currently in circulation are as follows: On 8 September 1969, banknotes of 50 cents (5 shillings), $1 (10 shillings), $2 (£1), and $10 (£5) were introduced. The $5 note was introduced on 20 October 1970, followed"} +{"qid": "test2267", "pid": "5712082", "query": "when did 10 shilling note go out of circulation", "answer": "1970", "passage": "\"Biafran pound\"\nBiafran pound The Biafran pound was the currency of the breakaway Republic of Biafra between 1968 and 1970. The first notes denominated in 5 shillings and £1 were introduced on January 29, 1968. A series of coins was issued in 1969; 3 pence, 6 pence, 1 shilling and 2½ shilling coins were minted, all made of aluminium. In February 1969, a second family of notes was issued consisting of 5 shilling, 10 shilling, £1, £5 and £10 denominations. Despite not being recognised as currency by the rest of the world when they were issued, the banknotes were afterwards sold as"} +{"qid": "test2267", "pid": "2798078", "query": "when did 10 shilling note go out of circulation", "answer": "1970", "passage": "\"Decimal Day\"\nremain unchanged. Under the new system, the pound was retained but was divided into 100 new pence, denoted by the symbol \"\"p\"\". New coinage was issued alongside the old coins. The 5p and 10p coins were introduced in April 1968 and were the same size, composition, and value as the shilling and two shillings coins in circulation with them. In October 1969 the 50p coin was introduced, with the 10s note withdrawn on 20 November 1970. This reduced the number of new coins that had to be introduced on Decimal Day and meant that the public was already familiar with"} +{"qid": "test2269", "pid": "58240", "query": "who is considered the father of modern behaviorism", "answer": "John B. Watson", "passage": "\"B. F. Skinner\"\nhis ideas to the design of a human community in his utopian novel, \"\"Walden Two\"\", and his analysis of human behavior culminated in his work, \"\"Verbal Behavior\"\". Skinner was a prolific author who published 21 books and 180 articles. Contemporary academia considers Skinner a pioneer of modern behaviorism, along with John B. Watson and Ivan Pavlov. A June 2002 survey listed Skinner as the most influential psychologist of the 20th century. Skinner was born in Susquehanna, Pennsylvania, to Grace and William Skinner. His father was a lawyer. He became an atheist after a Christian teacher tried to assuage his fear"} +{"qid": "test227", "pid": "20126546", "query": "who won the national championship in volleyball 2017", "answer": "Ohio State", "passage": "\"2017 NCAA National Collegiate Men's Volleyball Tournament\"\nat large. TWCS Hawaii carried the Hawaii first round match. The semifinals were streamed on NCAA.com and the championship match was broadcast on ESPN2. 2017 NCAA National Collegiate Men's Volleyball Tournament The 2017 NCAA National Collegiate Volleyball Tournament was the 48th edition of the NCAA Men's National Collegiate Volleyball Championship, open to teams from both Division I and II. The tournament was held May 2, 4, & 6 at St. John Arena in Columbus, Ohio, hosted by Ohio State University. The Ohio State Buckeyes won their second consecutive National Championship and fourth overall. The champions of Conference Carolinas, the Eastern"} +{"qid": "test227", "pid": "20126545", "query": "who won the national championship in volleyball 2017", "answer": "Ohio State", "passage": "\"2017 NCAA National Collegiate Men's Volleyball Tournament\"\n2017 NCAA National Collegiate Men's Volleyball Tournament The 2017 NCAA National Collegiate Volleyball Tournament was the 48th edition of the NCAA Men's National Collegiate Volleyball Championship, open to teams from both Division I and II. The tournament was held May 2, 4, & 6 at St. John Arena in Columbus, Ohio, hosted by Ohio State University. The Ohio State Buckeyes won their second consecutive National Championship and fourth overall. The champions of Conference Carolinas, the Eastern Intercollegiate Volleyball Association, Midwestern Intercollegiate Volleyball Association, and Mountain Pacific Sports Federation received automatic bids to the tournament, while two other teams were selected"} +{"qid": "test2270", "pid": "20028078", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"Effects of NAFTA on Mexico\"\nOn September 30, 2018, Trump alongside the two other leaders from the other countries (Canada/Mexico) signed USCMA. That sentiment is shared today by the Mexican elites. Calls from the United States for a repeal of NAFTA have been met with trepidation in Mexico, with the overall belief being that NAFTA should be modernized instead of replaced or even simply removed. Generally, Mexico recognizes NAFTA as not being perfect, but a repeal would sever the economy from the United States which would have far worse outcomes than either leaving it in place or renegotiating it. Current President Peña Nieto has made"} +{"qid": "test2270", "pid": "20907800", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"United States–Mexico–Canada Agreement\"\nUnited States–Mexico–Canada Agreement The Agreement between the United States of America, the United Mexican States, and Canada is a signed but not ratified free trade agreement between Canada, Mexico, and the United States. It is referred to differently by each signatory: in the United States, it is called the United States–Mexico–Canada Agreement (USMCA); in Canada, it is called the Canada–United States–Mexico Agreement (CUSMA) in English and the Accord Canada–États-Unis–Mexique (ACEUM) in French; and in Mexico, it is called the Tratado entre México, Estados Unidos y Canadá (T-MEC). The agreement is also unofficially known as \"\"NAFTA 2.0\"\", or \"\"New NAFTA\"\" in"} +{"qid": "test2270", "pid": "13433609", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"NAFTA's effect on United States employment\"\nNAFTA's effect on United States employment North American Free Trade Agreement's impact on United States employment has been the object of ongoing debate since the 1994 inception of the North American Free Trade Agreement (NAFTA) with Canada and Mexico. NAFTA's proponents believe that more jobs were ultimately created in the USA. Opponents see the agreements as having been costly to well-paying American jobs. The economic impacts of NAFTA have been modest. In a 2015 report, the Congressional Research Service summarized multiple studies as follows: \"\"In reality, NAFTA did not cause the huge job losses feared by the critics or the"} +{"qid": "test2270", "pid": "13433612", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"NAFTA's effect on United States employment\"\nfor 49.1% of the imports to the country. The agricultural and manufacturing industrial sectors were the hardest hit areas by NAFTA NAFTA's opponents attribute much of the displacement caused in the US labor market to the United States' growing trade deficits with Mexico and Canada. The trade deficit in goods (excluding services, which are typically a small surplus) rose from $2 billion in 1994 to $60 billion in 2015. According to the Economic Policy Institute, an American think tank which receives significant funding from labor unions, the rise in the trade deficit with Mexico alone since NAFTA was enacted led"} +{"qid": "test2270", "pid": "4894702", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"Economic policy of the Bill Clinton administration\"\nand the North American Agreement on Labor Cooperation, making NAFTA the first \"\"green\"\" trade treaty and the first trade treaty concerned with each country's labor laws, albeit with very weak sanctions. NAFTA provided for gradually reduced tariffs and the creation of a free-trading bloc of North American countries–the United States, Canada, and Mexico. Opponents of NAFTA, led by Ross Perot, claimed it would force American companies to move their workforces to Mexico, where they could produce goods with cheaper labor and ship them back to the United States at lower prices. Clinton, however, argued that NAFTA would increase U.S. exports"} +{"qid": "test2270", "pid": "13433615", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"NAFTA's effect on United States employment\"\nCertain states with heavy emphasis on manufacturing industries like Michigan, Ohio, Pennsylvania, Indiana, and California were significantly affected by these job losses. For example, in Ohio, Trade Adjustment Assistance and NAFTA-TAA identified 14,653 jobs directly lost due to NAFTA-related reasons like relocation of U.S. firms to Mexico. Similarly, in Pennsylvania, Keystone Research Center attributed 150,000 job losses in the state to the rising U.S. trade deficit. Since 1993, 38,325 of those job losses are directly related to trade with Mexico and Canada. Although many of these workers laid off due to NAFTA were reallocated to other sectors, the majority of"} +{"qid": "test2270", "pid": "19272212", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"Causes of unemployment in the United States\"\njob effects of the 1994 North American Free Trade Agreement (NAFTA) are controversial. In a 2015 report, the Congressional Research Service summarized multiple studies as follows: Critics attribute much of the displacement caused in the U.S. labor market to the United States' growing trade deficits with Mexico and Canada. According to the Economic Policy Institute, rise in the trade deficit with Mexico alone since NAFTA was enacted led to the net displacement of 682,900 U.S. jobs by 2010. Fifteen percent of employers in manufacturing, communication, and wholesale/distribution shut down or relocated plants due to union organizing drives since NAFTA's implementation."} +{"qid": "test2270", "pid": "12640527", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"Barbados–Canada relations\"\nthen in 1920, Canadian Imperial Bank of Commerce did the same, and finally Scotiabank followed the first two in 1956. In 1993-1994 Barbados had sought talks on entry into the North America Free Trade Agreement (NAFTA) along with Canada, Mexico, and the United States. Although this was later abandoned in favor of having a hemispheric trade deal and because of belief that in Barbados joining NAFTA it would severely impact on the OECS states which depended on access to the Barbados market. A growing legion of Canadian businesses and companies have established operations offering services in Barbados. Barbados is one"} +{"qid": "test2270", "pid": "295315", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"North American Free Trade Agreement\"\nCanada had come to an agreement to replace NAFTA with the United States–Mexico–Canada Agreement (USMCA). The USMCA is the result of the renegotiation of NAFTA that the member states undertook from 2017 to 2018, though NAFTA will remain in force until the USMCA is ratified by its members. The impetus for a North American free trade zone began with U.S. President Ronald Reagan, who made the idea part of his campaign when he announced his candidacy for the presidency in November 1979. Canada and the United States signed the Canada–United States Free Trade Agreement (FTA) in 1988, and shortly afterward"} +{"qid": "test2270", "pid": "295313", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"North American Free Trade Agreement\"\nNorth American Free Trade Agreement The North American Free Trade Agreement (NAFTA; Spanish: \"\"Tratado de Libre Comercio de América del Norte\"\", TLCAN; French: \"\"Accord de libre-échange nord-américain\"\", ALÉNA) is an agreement signed by Canada, Mexico, and the United States, creating a trilateral trade bloc in North America. The agreement came into force on January 1, 1994. It superseded the 1988 Canada–United States Free Trade Agreement between the United States and Canada, and is expected to be replaced by the United States–Mexico–Canada Agreement once it is ratifed. NAFTA has two supplements: the North American Agreement on Environmental Cooperation (NAAEC) and the"} +{"qid": "test2270", "pid": "20907811", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"United States–Mexico–Canada Agreement\"\nconsiders appropriate to protect workers against employment discrimination\"\" and clarified that the United States would not be required to introduce any additional nondiscrimination laws. The Canadian government expressed concern about the changes evolving within the USMCA agreement. On December 2, 2018, U.S. President Donald Trump announced that he would begin the 6-month process to withdraw from NAFTA, adding that Congress needed either to ratify the USMCA or else revert to pre-NAFTA trading rules. Academics debate whether the president can unilaterally withdraw from the pact without the approval of Congress. United States–Mexico–Canada Agreement The Agreement between the United States of America,"} +{"qid": "test2270", "pid": "11255782", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"North American Union\"\nSecurity and Prosperity Partnership of North America (SPP) was formed. It was described by the leaders of Canada, Mexico and the United States as a dialogue to provide greater cooperation on security and economic issues. In response to later concerns, a section was put up on the initiative's site clarifying the SPP was not a legal agreement, that the initiative \"\"does not seek to rewrite or renegotiate NAFTA\"\", and that the partnership itself \"\"creates no NAFTA-plus legal status.\"\" A number of academics and government officials at the time viewed the SPP as moving North America towards greater integration. In May"} +{"qid": "test2270", "pid": "20907801", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"United States–Mexico–Canada Agreement\"\nreference to the previous trilateral agreement it is meant to supersede, the North American Free Trade Agreement (NAFTA). It is the result of the 2017–2018 renegotiation of NAFTA by its member states, which informally agreed to the terms on September 30, 2018, and formally on October 1. The USMCA was signed by United States President Donald Trump, Mexican President Enrique Peña Nieto, and Canadian Prime Minister Justin Trudeau on November 30, 2018, as a side event of the 2018 G20 Summit in Buenos Aires. Each country's legislature still must ratify the agreement. Compared to NAFTA, the agreement gives the United"} +{"qid": "test2270", "pid": "14466858", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"Investor-state dispute settlement\"\nAgreement (NAFTA). NAFTA Chapter 11 allows investors of one NAFTA party (Canada, United States or Mexico) to bring claims directly against the government of another NAFTA party before an international arbitral tribunal. Because NAFTA Article 1121 waives the local remedies rule, investors are not required to exhaust local remedies before filing Chapter 11 claims. While this fact has been amply criticized in public, proponents of ISDS tend to point out that speedy dispute resolution through ISDS is critical in modern economic environments and would be defeated by adding several instances of local remedies. On the other hand, there is no"} +{"qid": "test2270", "pid": "13542028", "query": "joined mexico and the united states to form nafta", "answer": "Canada", "passage": "\"Cross-national cooperation and agreements\"\nis designed to eliminate tariff barriers and liberalize investment opportunities and trade in services. NAFTA includes Canada, Mexico, and the United States, where went into effect in 1994. The United States and Canada historically have had various forms of mutual economic cooperation. They signed the Canada-United States Free Trade Agreement effective January 1, 1989, which eliminated all tariffs on bilateral trade by January 1, 1998. In February 1991, Mexico approached the United States to establish a free trade agreement. The formal negotiations that began in June 1991 included Canada. The resulting North American Free Trade Agreement became effective on January"} +{"qid": "test2271", "pid": "12490639", "query": "ranjit sagar dam has builded over which river", "answer": "Ravi River", "passage": "\"Ranjit Sagar Dam\"\non which the Punjab govt has never shown any interest to square them off. It is located upstream of the Madhopur Barrage at Madhopur. Ranjit Sagar Dam The Ranjit Sagar Dam, also known as the Thein Dam, is part of a hydroelectric project constructed by the Government of Punjab PSPCL on the Ravi River on the Border of two states of India Jammu and Kashmir and Punjab. 60% of the lake is part of J&K. The project is situated near Pathankot city in Pathankot district of the state of Punjab and Kathua city and Basholi tehsil of Kathua district in"} +{"qid": "test2271", "pid": "12490636", "query": "ranjit sagar dam has builded over which river", "answer": "Ravi River", "passage": "\"Ranjit Sagar Dam\"\nRanjit Sagar Dam The Ranjit Sagar Dam, also known as the Thein Dam, is part of a hydroelectric project constructed by the Government of Punjab PSPCL on the Ravi River on the Border of two states of India Jammu and Kashmir and Punjab. 60% of the lake is part of J&K. The project is situated near Pathankot city in Pathankot district of the state of Punjab and Kathua city and Basholi tehsil of Kathua district in J&K. The project is the largest hydroelectric dam of the state of Punjab. The township where the site is located is called Shah pur"} +{"qid": "test2271", "pid": "8958045", "query": "ranjit sagar dam has builded over which river", "answer": "Ravi River", "passage": "\"Maharana Pratap Sagar\"\neastern rivers (the Ravi, the Beas and the Satluj) and Pakistan got the exclusive use of the three western rivers (the Indus, the Jhelum and the Chenab). Following this treaty, India prepared a master plan to utilize the waters of 3 rivers which came to its share. and the Bhakra Dam was constructed across Satluj River. Then, the Beas River was tapped in two stages, with the Pong Dam forming the second stage development. Ravi River has also been developed through the Ranjit Sagar Dam Project or Thein Dam. All three river developments are multipurpose in nature involving irrigation, water"} +{"qid": "test2271", "pid": "19400431", "query": "ranjit sagar dam has builded over which river", "answer": "Ravi River", "passage": "\"Shahpurkandi dam project\"\nbeen issued on 29.01.2014. The Contract agreement was signed on 28.02.2014. Turbine Model Test witness test has been carried out w.e.f. 18.09.2014 to 27.09.2014 at Hydro Lab, BHEL, Bhopal. Shahpurkandi dam project The Shahpurkandi Dam project is located on the Ravi River in Pathankot district, Punjab, India. The project will be constructed on the canal from Shahpurkandi Barrage to Madhopur headworks, downstream of the existing Ranjit Sagar Dam. The water released by Ranjit Sagar Dam shall be utilised for generating power from this project. The project will generate electricity of up to 206MW and provide irrigation to Punjab and Jammu"} +{"qid": "test2271", "pid": "19400429", "query": "ranjit sagar dam has builded over which river", "answer": "Ravi River", "passage": "\"Shahpurkandi dam project\"\nShahpurkandi dam project The Shahpurkandi Dam project is located on the Ravi River in Pathankot district, Punjab, India. The project will be constructed on the canal from Shahpurkandi Barrage to Madhopur headworks, downstream of the existing Ranjit Sagar Dam. The water released by Ranjit Sagar Dam shall be utilised for generating power from this project. The project will generate electricity of up to 206MW and provide irrigation to Punjab and Jammu and Kashmir. On 6 December 2018, the center approved the initiation of the project. The construction of the dam is a per the framework of the Indus Water Treaty"} +{"qid": "test2272", "pid": "13447258", "query": "where do the elves go on the boat in lord of the rings", "answer": "Valinor", "passage": "\"Elf (Middle-earth)\"\nand desire to go to Valinor, where the Valar originally sheltered their kind. Those who wish to leave for the Undying Lands often go by boats provided at the Grey Havens, where Círdan the Shipwright dwells with his folk. Despite Tolkien's statements in \"\"The Hobbit\"\" that Elves (and Hobbits) have no beards, Círdan in fact has a beard, which appears to be an anomaly and a simple oversight. However, Tolkien later devised at least three \"\"cycles of life\"\" for Elves around 1960; Círdan had a beard because he was in his third cycle of life. (Mahtan, Nerdanel's father, had a"} +{"qid": "test2272", "pid": "9270451", "query": "where do the elves go on the boat in lord of the rings", "answer": "Valinor", "passage": "\"The Lord of the Rings (pinball)\"\ntriggered before a multiball, thus becoming \"\"Stacked\"\". The wizard mode, Valinor Multiball, is said to be one of the hardest to reach to date (only being topped by The Simpsons Pinball Party) as it needs all multiballs to be fully completed, reaching and playing \"\"There and Back Again...\"\", collecting all the \"\"Gifts of the Elves\"\", and finishing \"\"Destroy the Ring\"\". The Lord of the Rings (pinball) The Lord of the Rings is a 2003 pinball game designed by George Gomez and distributed by Stern Pinball. It is based on The Lord of the Rings (film series), which was first released"} +{"qid": "test2274", "pid": "10663821", "query": "who is the guy that jumped from space", "answer": "Felix Baumgartner", "passage": "\"Space diving\"\nto date. In 1959 Joseph Kittinger accomplished a jump from ; he then set a long-standing record in 1960 when he jumped from . In 1962 Yevgeni Andreyev jumped from and set a longest free fall record that was surpassed by Felix Baumgartner who made three jumps in 2012 from , and . Alan Eustace set the current world record highest and longest free fall jump in 2014 when he jumped from . Higher jumps from the mesosphere or thermosphere have yet to be successfully performed, though Orbital Outfitters is working to create a suit that will enable safe space"} +{"qid": "test2275", "pid": "12973660", "query": "what is the average time in hospice care", "answer": "57 days", "passage": "\"Hospice care in the United States\"\nor less to receive hospice care, while others are overly optimistic in their assessment of prognosis, presuming treatment will be more effective than it is. As a result, the majority of patients are referred to hospice in the very end-stages of their diseases, or choose that time to seek hospice care. The average length of stay in hospice before a patient dies was 26 days in 1994 and 19 days in 1998. Although the length of average stays has since increased, the term of care continues to be underused. In 2004 the average stay was 57 days and the median"} +{"qid": "test2277", "pid": "20105822", "query": "who won the american league pennant in 2017", "answer": "Houston Astros", "passage": "\"2017 American League Championship Series\"\n2017 American League Championship Series The 2017 American League Championship Series was a best-of-seven playoff pitting the Houston Astros against the New York Yankees for the American League pennant and the right to face the Los Angeles Dodgers in the 2017 World Series. The Astros defeated the Yankees in 7 games after falling behind 3 games to 2. The home team won every game in the series. This was the first time in history that the ALCS and NLCS teams were from the four most populous U.S. cities: New York, Los Angeles, Chicago, and Houston. For the first time, Major"} +{"qid": "test2277", "pid": "20105837", "query": "who won the american league pennant in 2017", "answer": "Houston Astros", "passage": "\"2017 American League Championship Series\"\nadvanced to their first World Series in 12 years, becoming the first team to win pennants in both leagues. Houston's victory made this just the fifth best-of-seven series (following the 1987, 1991, and 2001 World Series, and the 2004 National League Championship Series), and the first ALCS, in which the home team won all seven games. This was also Joe Girardi's final game as Yankees manager as 5 days after the game the Yankees announced that he would not be coming back for the 2018 season. 2017 ALCS (4–3): Houston Astros beat New York Yankees. 2017 American League Championship Series"} +{"qid": "test2278", "pid": "9220845", "query": "when did hollywood become the centre of the film industry", "answer": "1912", "passage": "\"1910s in film\"\nwas quick access to various settings. Los Angeles became the capital of the film industry. During the First World War the film industries of Europe were devastated, and Hollywood replaced the French and Italian firms as the most popular film makers in the world. 1910s in film The decade of the 1910s in film involved some significant films. The 1910s saw the origins of Hollywood as the centre of the American film industry relocated from New York to California. By 1912, major motion-picture companies had set up production near or in Los Angeles. In the early 1900s, most motion picture"} +{"qid": "test2279", "pid": "12544123", "query": "where are the cardiac and vasomotor centers found", "answer": "medulla oblongata", "passage": "\"Vasomotor center\"\nvasomotor centre and are themselves involved in the regulation of blood pressure. The localization of VMC was determined by Filipp Ovsyannikov in 1871. Vasomotor center The vasomotor center (VMC) is a portion of the medulla oblongata that, together with the cardiovascular center and respiratory center, regulates blood pressure and other homeostatic processes. Vasomotor center is a fairly archaic term since this function relies not on a single brain structure (\"\"center\"\") but rather represents a presympathetic network of interacting neurons. Upon increase in carbon dioxide level at central chemoreceptors, it stimulates the sympathetic system to constrict vessels. This is opposite to"} +{"qid": "test2279", "pid": "1777354", "query": "where are the cardiac and vasomotor centers found", "answer": "medulla oblongata", "passage": "Brainstem\nThe pons houses the respiratory pneumotaxic center and apneustic center that make up the pontine respiratory group in the respiratory center. The pons co-ordinates activities of the cerebellar hemispheres. The pons and medulla oblongata are parts of the hindbrain that form much of the brainstem. The medulla oblongata often just referred to as the medulla, is the lower half of the brainstem continuous with the spinal cord. Its upper part is continuous with the pons. The medulla contains the cardiac, dorsal and ventral respiratory groups, and vasomotor centres, dealing with heart rate, breathing and blood pressure. Another important medullary structure"} +{"qid": "test2279", "pid": "12544122", "query": "where are the cardiac and vasomotor centers found", "answer": "medulla oblongata", "passage": "\"Vasomotor center\"\nVasomotor center The vasomotor center (VMC) is a portion of the medulla oblongata that, together with the cardiovascular center and respiratory center, regulates blood pressure and other homeostatic processes. Vasomotor center is a fairly archaic term since this function relies not on a single brain structure (\"\"center\"\") but rather represents a presympathetic network of interacting neurons. Upon increase in carbon dioxide level at central chemoreceptors, it stimulates the sympathetic system to constrict vessels. This is opposite to carbon dioxide in tissues causing vasodilatation, especially in the brain. Cranial nerves IX (Glossopharyngeal nerve) and X Vagus nerve both feed into the"} +{"qid": "test2279", "pid": "5752140", "query": "where are the cardiac and vasomotor centers found", "answer": "medulla oblongata", "passage": "Myelencephalon\nbrain stem that serves as the connection of the spinal cord to the brain. It is situated between the pons and the spinal cord. The medulla oblongata is responsible for several functions of the autonomic nervous system. These functions include: 1) Respiration: monitors the acidity of the blood and sends electrical signals to intercostal muscle tissue to increase their contraction rate in order to oxygenate the blood as needed. 2) Cardiac & Vasomotor Center: monitors and regulates cardiovascular activities by: 3) Reflexes Because of its location in the brainstem and its many important roles in the autonomic nervous system, damage"} +{"qid": "test2279", "pid": "1648152", "query": "where are the cardiac and vasomotor centers found", "answer": "medulla oblongata", "passage": "\"Medulla oblongata\"\nthe medulla as part of the primordial reptilian brain is confirmed by its disproportionate size in modern reptiles such as the crocodile, alligator, and monitor lizard. Medulla oblongata The medulla oblongata (or medulla) is located in the brainstem, anterior and partially inferior to the cerebellum. It is a cone-shaped neuronal mass responsible for autonomic (involuntary) functions ranging from vomiting to sneezing. The medulla contains the cardiac, respiratory, vomiting and vasomotor centers and therefore deals with the autonomic functions of breathing, heart rate and blood pressure. During embryonic development the medulla oblongata develops from the myelencephalon. The myelencephalon is a secondary"} +{"qid": "test2279", "pid": "1648144", "query": "where are the cardiac and vasomotor centers found", "answer": "medulla oblongata", "passage": "\"Medulla oblongata\"\nMedulla oblongata The medulla oblongata (or medulla) is located in the brainstem, anterior and partially inferior to the cerebellum. It is a cone-shaped neuronal mass responsible for autonomic (involuntary) functions ranging from vomiting to sneezing. The medulla contains the cardiac, respiratory, vomiting and vasomotor centers and therefore deals with the autonomic functions of breathing, heart rate and blood pressure. During embryonic development the medulla oblongata develops from the myelencephalon. The myelencephalon is a secondary vesicle which forms during the maturation of the rhombencephalon, also referred to as the hindbrain. The bulb is an archaic term for the medulla oblongata and"} +{"qid": "test228", "pid": "6362731", "query": "name a food you might eat on thanksgiving", "answer": "turkey", "passage": "\"Thanksgiving dinner\"\neating event in the United States; people eat more on Thanksgiving than on any other day of the year. According to what traditionally is known as \"\"The First Thanksgiving,\"\" the 1621 feast between the Pilgrims and the Wampanoag at Plymouth Colony contained waterfowl, venison, ham, lobster, clams, berries, fruit, pumpkin, and squash. William Bradford noted that, \"\"besides waterfowl, there was great store of wild turkeys, of which they took many.\"\" Many of the foods that were included in the first feast (except, notably, the seafood) have since gone on to become staples of the \"\"modern\"\" Thanksgiving dinner. Early feasts of"} +{"qid": "test228", "pid": "2186117", "query": "name a food you might eat on thanksgiving", "answer": "turkey", "passage": "\"Joey Tribbiani\"\na whole roast turkey virtually all by himself. In season 8, episode 9, Monica is unwilling to cook a whole roast turkey for Thanksgiving dinner as Rachel is pregnant, Chandler refuses to eat Thanksgiving food due to childhood traumas, Phoebe is a vegetarian, and dinner guest Will (played by Brad Pitt) is on a diet. Joey's love for Thanksgiving traditions, however, convinces Monica to roast the turkey only under the condition that Joey can eat the entire 19-pound bird in one sitting. When Monica sees him struggle, she says she is only kidding, but Joey perseveres and with a little"} +{"qid": "test228", "pid": "9275631", "query": "name a food you might eat on thanksgiving", "answer": "turkey", "passage": "\"Thanksgiving (United States)\"\nin England, even though the bird is native to the Americas. The Spaniards had brought domesticated turkeys back from Central America in the early 17th century, and the birds soon became popular fare all over Europe, including England, where turkey (as an alternative to the traditional goose) became a \"\"fixture at English Christmases\"\". The Pilgrims did not observe Christmas. As a result of the size of Thanksgiving dinner, Americans eat more food on Thanksgiving than on any other day of the year. Thanksgiving was founded as a religious observance for all the members of the community to give thanks to"} +{"qid": "test228", "pid": "6362734", "query": "name a food you might eat on thanksgiving", "answer": "turkey", "passage": "\"Thanksgiving dinner\"\nonions, parsnip fritters, olives, chicken salad, venison pastry, pumpkin pie, mince pie, Charlotte russe, almond ice cream, lemon jelly, hickory nut cake, cheese, fruits and coffee. Sugar, among other food commodities, was rationed from 1942 to 1946. In 1947, as part of a voluntary rationing campaign, the Harry Truman Administration attempted to promote \"\"Poultryless Thursdays,\"\" discouraging Americans from eating poultry or egg products on Thursdays. Because Thanksgiving is always on a Thursday, this meant that turkey and pumpkin pie, two Thanksgiving staples, were discouraged, not only for that holiday, but for Christmas and New Year's Day as well, since those"} +{"qid": "test2280", "pid": "681954", "query": "what is the population of the tri-cities washington", "answer": "283,846", "passage": "\"Tri-Cities, Washington\"\nestimate of MSA population of Tri-Cities is 283,846. This is over a 12% increase from 2010. (2016 US MSA estimates) 2017 estimates now show Tri-Cities as over 300,000. The combined population of the three major cities themselves was 193,567 at the 2010 Census. As of April 1, 2016, the Washington State Office of Financial Management, Forecasting Division estimates the cities as having a combined population of 217,430 The Tri-Cities Airport located in Pasco provides the region with commercial and private air service. Pasco is the seat of Franklin County, while the other two cities are located in Benton County. In"} +{"qid": "test2281", "pid": "20415379", "query": "who wrote the music for christmas story live", "answer": "Pasek & Paul", "passage": "\"A Christmas Story Live!\"\nAnd I think — I hope — we've succeeded in that.\"\" Songwriting duo Pasek & Paul, who wrote the songs for \"\"A Christmas Story: The Musical\"\", wrote three new songs for the production, including \"\"In the Market for a Miracle\"\" for Mrs. Schwartz, \"\"Ralphie's Nightmare\"\" for the Parker family, and the opening theme \"\"Count on Christmas\"\". Pasek noted that the team had to try and maintain a balance between preserving the familiar and iconic aspects of the film, while also expanding upon it through its musical format. He explained that \"\"there are certain moments where we want to stay true"} +{"qid": "test2281", "pid": "17268423", "query": "who wrote the music for christmas story live", "answer": "Pasek & Paul", "passage": "\"A Christmas Story: The Musical\"\nA Christmas Story: The Musical A Christmas Story: The Musical is a musical version of the film \"\"A Christmas Story\"\". The musical has music and lyrics written by Pasek & Paul and the book by Joseph Robinette. The musical takes place in the 1940s in Indiana and focuses on a child named Ralphie, who wants a Red Ryder BB Gun for Christmas. After numerous regional productions, out of town tryouts and national tours, this version of the musical originally officially opened on Broadway in November 2012 at the Lunt Fontanne Theatre for a limited engagement that ran through December 2012."} +{"qid": "test2281", "pid": "17268432", "query": "who wrote the music for christmas story live", "answer": "Pasek & Paul", "passage": "\"A Christmas Story: The Musical\"\nMiss Shields, Chris Diamantopoulos as Ralphie's father, and Ana Gasteyer as Mrs. Schwartz, the mother of one of Ralphie's friends. A Christmas Story: The Musical A Christmas Story: The Musical is a musical version of the film \"\"A Christmas Story\"\". The musical has music and lyrics written by Pasek & Paul and the book by Joseph Robinette. The musical takes place in the 1940s in Indiana and focuses on a child named Ralphie, who wants a Red Ryder BB Gun for Christmas. After numerous regional productions, out of town tryouts and national tours, this version of the musical originally officially"} +{"qid": "test2281", "pid": "17268431", "query": "who wrote the music for christmas story live", "answer": "Pasek and Paul", "passage": "\"A Christmas Story: The Musical\"\nBest Book of a Musical, and Best Original Score (Music and/or Lyrics) Written for the Theatre) for the 67th Tony Awards, however it did not win any. In May 2017, the Fox Broadcasting Company announced that it would air a live television event based on the Broadway musical version titled \"\"A Christmas Story Live!\"\", with Pasek and Paul composing several new songs for the live television musical. The live musical was televised on December 17, 2017, with the cast that starred Maya Rudolph as Ralphie's mother, Matthew Broderick as The Narrator/Older Ralphie, 11-year-old Andy Walken as Ralphie, Jane Krakowski as"} +{"qid": "test2283", "pid": "8690408", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"I Think We're Alone Now\"\n\"\"TheShack\"\" commercial campaign, one commercial features a man in an office cubicle with headphones on singing part of the bridge and chorus in a falsetto range to Tiffany's version. Swedish group Cosmo4 covered Tiffany's version of \"\"I Think We're Alone Now\"\" for their debut album \"\"Around The World\"\" as requested by the Russian record label Style Records. Despite the album having been shelved, the song was released to the compilation Dance 2008, Vol. 2 in Thailand by the record label Red Beat in 2008. I Think We're Alone Now \"\"I Think We're Alone Now\"\" is a song written and composed"} +{"qid": "test2283", "pid": "8690387", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"I Think We're Alone Now\"\nI Think We're Alone Now \"\"I Think We're Alone Now\"\" is a song written and composed by Ritchie Cordell that was the title selection from a same-named album released by the American recording artists Tommy James and the Shondells. \"\"I Think We're Alone Now\"\" was a 1967 US hit for James and the Shondells, reaching number 4 on the \"\"Billboard\"\" Hot 100 chart. The song has since been covered several times by other artists. The late 1987 recording by Tiffany reached number 1 on the charts of various countries including the US, UK, Canada, and New Zealand. Other cover versions"} +{"qid": "test2283", "pid": "8690394", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"I Think We're Alone Now\"\nthroughout her recording and performances. \"\"I Think We're Alone Now\"\" proved to be Tiffany's biggest hit once she did record and release it. Her version of the song spent two weeks at number 1 on the \"\"Billboard\"\" Hot 100 chart (coincidentally, another Tommy James & the Shondells cover, Billy Idol's version of \"\"Mony, Mony\"\", followed it on the top spot) and three weeks at number 1 on the UK Singles Chart. \"\"I Think We're Alone Now\"\" was not the first single from Tiffany's debut album. The first single was \"\"Danny\"\", but radio started picking up \"\"I Think We're Alone Now\"\","} +{"qid": "test2283", "pid": "13079548", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"Mirage (Tommy James and the Shondells song)\"\nMirage (Tommy James and the Shondells song) \"\"Mirage\"\" is a song by the American rock and roll group Tommy James and the Shondells, released as a single on 5 January 1967 on the Roulette Records label. \"\"Mirage\"\" was recorded for the \"\"I Think We're Alone Now\"\" album. During a songwriting session producer Bo Gentry accidentally inserted a master copy of the \"\"I Think We're Alone Now\"\" song backwards in his reel-to-reel tape player. Tommy and the group instantly liked the reverse chord progression and recorded it as \"\"Mirage\"\" with new lyrics by Ritchie Cordell, who had also written \"\"I Think"} +{"qid": "test2283", "pid": "16716734", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"I Think We're Alone Now (album)\"\ntoo controversial for the time and was changed to a yellow cover with a photo of the group. All songs written and composed by Ritchie Cordell except where noted. Album Singles I Think We're Alone Now (album) I Think We're Alone Now is the third studio album by the pop rock band Tommy James and the Shondells released in 1967. The album had three singles that charted. The title track went to #4 on the \"\"Billboard\"\" Hot 100. \"\"Mirage\"\" reached #10 on the chart. \"\"I Like the Way\"\" reached #25 on the chart. The album landed on the \"\"Billboard\"\" 200,"} +{"qid": "test2283", "pid": "10382907", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"Lucky Number (song)\"\na letter providing more information about herself. This encouraged him to get her to record a demo of Tommy James and the Shondells' song \"\"I Think We're Alone Now\"\". He took the tape to Dave Robinson of Stiff Records, who liked it and decided to sign Lovich. He immediately proposed the song to be released as a single and wanted Lovich and Les Chappell to write and record a B-side. In July 1978, Stiff released the first limited quantities of \"\"I Think We're Alone Now\"\" with an early version of \"\"Lucky Number\"\". Lovich and Chappell went on to record her"} +{"qid": "test2283", "pid": "8690392", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"I Think We're Alone Now\"\nSingles Chart. \"\"I Think We're Alone Now\"\" appeared on Lovich's 1978 debut album, \"\"Stateless\"\", and she would later record the song in other languages, including German and Japanese. \"\"I Think We’re Alone Now″ was re-popularized when American pop singer Tiffany covered the song for her debut studio album, \"\"Tiffany\"\", which was released in 1987 on the MCA Records label. When George Tobin, Tiffany's manager and producer, gave her the cassette of the original version by Tommy James & the Shondells, Tiffany hated the idea of recording a version of her own for her album, mostly because she thought the song"} +{"qid": "test2283", "pid": "8717271", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"The Sound of Girls Aloud: The Greatest Hits\"\nthe compilation album was released the following week, on 30 October. The regular track listing includes three new tracks: \"\"Something Kinda Ooooh\"\", \"\"Money\"\" and a cover of Tommy James and the Shondells's 1967 single \"\"I Think We're Alone Now\"\". Originally, a cover of \"\"What A Feeling\"\" from the film \"\"Flashdance\"\" was included on the track list instead of \"\"I Think We're Alone Now\"\", but Girls Aloud contacted the record label three days before the album was manufactured to say they would rather record the Tommy James and the Shondells song. The group recorded the song the following morning and the"} +{"qid": "test2283", "pid": "3189743", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"Even Worse\"\nfirst parody recorded for \"\"Even Worse\"\" was \"\"I Think I'm a Clone Now\"\". The song, a spoof of \"\"I Think We're Alone Now\"\" as covered by Tiffany, is the story of a man who details his life as a clone of himself. The second parody recorded was \"\"Alimony\"\", a parody of \"\"Mony Mony\"\" as covered by Billy Idol. The song is a diatribe about the narrator's ex-wife, who takes everything he owns for alimony payments. Although the song sounds as if it were recorded live—complete with clapping, screaming, and yelling—the track was entirely recorded in the studio. This is the"} +{"qid": "test2283", "pid": "8690388", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"I Think We're Alone Now\"\nhave also charted, including those by The Rubinoos (number 45 US, 1977) and Girls Aloud (number 4 UK, 2006). \"\"I Think We're Alone Now\"\" was a 1967 hit song for Tommy James and the Shondells, reaching number 4 on the \"\"Billboard\"\" Hot 100 chart during a 17-week stay. The recording was produced by Ritchie Cordell and Bo Gentry. Cordell wrote or co-wrote many songs for James, including the follow-up single \"\"Mirage\"\" and its B-side \"\"Run, Run, Baby, Run\"\", and 1968's \"\"Mony Mony\"\". Rock critic Lester Bangs called the single \"\"the bubblegum apotheosis\"\". Like many early Tommy James and the Shondells"} +{"qid": "test2283", "pid": "16716733", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"I Think We're Alone Now (album)\"\nI Think We're Alone Now (album) I Think We're Alone Now is the third studio album by the pop rock band Tommy James and the Shondells released in 1967. The album had three singles that charted. The title track went to #4 on the \"\"Billboard\"\" Hot 100. \"\"Mirage\"\" reached #10 on the chart. \"\"I Like the Way\"\" reached #25 on the chart. The album landed on the \"\"Billboard\"\" 200, reaching #74. Original copies feature a black album cover with two pairs of yellow bare footsteps walking side-by-side, then facing each other near the top of the cover. This was deemed"} +{"qid": "test2283", "pid": "9376738", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"Could've Been\"\n1987, \"\"Could've Been\"\" quickly rose up the chart and spent two weeks at number one in February, becoming Tiffany's second consecutive number-one hit following \"\"I Think We're Alone Now\"\". The song was also a number-one hit on the \"\"Billboard\"\" Adult Contemporary chart, as well as in Ireland and Canada. The song reached the top 10 in Australia, New Zealand, Sweden, and the United Kingdom and also charted well in Belgium, the Netherlands, and South Africa. For the music video, music video stations played a live version of \"\"Could've Been\"\" where fans sang along to Tiffany's performance. 7\"\" Single and cassette"} +{"qid": "test2283", "pid": "13079549", "query": "who sang the song i think we're alone now", "answer": "Tommy James and the Shondells", "passage": "\"Mirage (Tommy James and the Shondells song)\"\nWe're Alone Now\"\". \"\"Mirage\"\" debuted on the Hot 100 on Tommy's 20th birthday, eventually reaching number 10 on 17 June 1967, number 2 on the Canadian charts on 24 June 1967, and number 1 on WLS on 19 May 1967. Pop-punk band The Queers covered \"\"Mirage\"\" on their 1994 album \"\"Beat Off\"\". Mirage (Tommy James and the Shondells song) \"\"Mirage\"\" is a song by the American rock and roll group Tommy James and the Shondells, released as a single on 5 January 1967 on the Roulette Records label. \"\"Mirage\"\" was recorded for the \"\"I Think We're Alone Now\"\" album. During"} +{"qid": "test2283", "pid": "5823833", "query": "who sang the song i think we're alone now", "answer": "Tiffany", "passage": "\"Tiffany (album)\"\ntour included the singer performing in shopping malls across the United States; at first to small audiences but by the end to much larger crowds as her popularity grew. As her popularity grew during her tour radio stations began to play Tiffany's cover version of Tommy James & the Shondells hit \"\"I Think We're Alone Now\"\". The song was quickly released as the album's second single; Darwish's cover of \"\"I Think We’re Alone Now\"\" became the singer's first No. 1 hit both in the United States and United Kingdom. The album's follow-up single \"\"Could've Been\"\" became the singer's second No."} +{"qid": "test2285", "pid": "2371449", "query": "when was the abacus invented in ancient china", "answer": "2nd century BC", "passage": "\"History of computing\"\nyears. In c. 1050–771 BC, the south-pointing chariot was invented in ancient China. It was the first known geared mechanism to use a differential gear, which was later used in analog computers. The Chinese also invented a more sophisticated abacus from around the 2nd century BC known as the Chinese abacus. In the 5th century BC in ancient India, the grammarian Pāṇini formulated the grammar of Sanskrit in 3959 rules known as the Ashtadhyayi which was highly systematized and technical. Panini used metarules, transformations and recursions. In the 3rd century BC, Archimedes used the mechanical principle of balance (see Archimedes"} +{"qid": "test2286", "pid": "7510443", "query": "the nurses' health study is an example of what type of study", "answer": "long-term", "passage": "\"Nurses' Health Study\"\nNurses' Health Study The Nurses Health Study (NHS) is a series of prospective studies that examine epidemiology and the long-term effects of nutrition, hormones, environment, and nurses' work-life on health and disease development. The studies have been among the largest investigations into risk factors for major chronic diseases ever conducted. The Nurses' Health Studies have led to many insights on health and well-being, including cancer prevention, cardiovascular disease, and type 2 diabetes. They have include clinicians, epidemiologists, and statisticians at the Channing Laboratory (of Brigham and Women's Hospital), Harvard Medical School, Harvard School of Public Health, and several Harvard-affiliated hospitals,"} +{"qid": "test2286", "pid": "9324838", "query": "the nurses' health study is an example of what type of study", "answer": "long-term", "passage": "\"Nursing shortage\"\nwhat is preventing some nurses from keeping the profession as a long-term career. In a study completed by sociologist Bryan Turner, the study found that the most common nursing complaints were: A report from the Commonwealth of Australia identified a few other matters that led to nurse dissatisfaction: Another study found that nurse dissatisfaction stemmed from: In many jurisdictions, administrative/government health policy and practice has changed very little in the last decades. Cost-cutting is the priority, patient loads are uncontrolled, and nurses are rarely consulted when recommending health care reform. The major reason nurses plan to leave the field, as"} +{"qid": "test2286", "pid": "7510458", "query": "the nurses' health study is an example of what type of study", "answer": "long-term", "passage": "\"Nurses' Health Study\"\ncontrol group following the same procedure with placebos. Findings from the study displayed a direct relationship between therapy and risk for heart disease, as opposed to the previously stated benefits. This finding largely opposed the published NHS conclusion. British Doctors Study Framingham Heart Study Nurses' Health Study The Nurses Health Study (NHS) is a series of prospective studies that examine epidemiology and the long-term effects of nutrition, hormones, environment, and nurses' work-life on health and disease development. The studies have been among the largest investigations into risk factors for major chronic diseases ever conducted. The Nurses' Health Studies have led"} +{"qid": "test2287", "pid": "402645", "query": "when were the beatles inducted into the rock and roll hall of fame", "answer": "1988", "passage": "\"The Beatles\"\nthe Beatles have four Multi-Platinum albums, four Platinum albums, eight Gold albums and one Silver album. They were inducted into the Rock and Roll Hall of Fame in 1988. The best-selling band in history, the Beatles have sold more than 800 million physical and digital albums . They have had more number-one albums on the UK charts, fifteen, and sold more singles in the UK, 21.9 million, than any other act. In 2004, \"\"Rolling Stone\"\" ranked the Beatles as the best artist of all time. They ranked number one on \"\"Billboard\"\" magazine's list of the all-time most successful Hot 100"} +{"qid": "test2287", "pid": "211385", "query": "when were the beatles inducted into the rock and roll hall of fame", "answer": "1988", "passage": "\"John Lennon\"\nmovement and the larger counterculture. By 2012, Lennon's solo album sales in the United States had exceeded 14 million units. He had 25 number-one singles on the US \"\"Billboard\"\" Hot 100 chart as a writer, co-writer, or performer. In 2002, Lennon was voted eighth in a BBC poll of the 100 Greatest Britons and in 2008, \"\"Rolling Stone\"\" ranked him the fifth-greatest singer of all time. In 1987, he was posthumously inducted into the Songwriters Hall of Fame. Lennon was twice posthumously inducted into the Rock and Roll Hall of Fame: first in 1988 as a member of the Beatles"} +{"qid": "test2287", "pid": "402520", "query": "when were the beatles inducted into the rock and roll hall of fame", "answer": "1988", "passage": "\"The Beatles\"\nthey each enjoyed success as solo artists. Lennon was shot and killed in December 1980, and Harrison died of lung cancer in November 2001. McCartney and Starr remain musically active. The Beatles are the best-selling band in history, with estimated sales of over 800 million records worldwide. They are the best-selling music artists in the United States, with 178 million certified units. The group was inducted into the Rock and Roll Hall of Fame in 1988, and all four main members were inducted individually from 1994 to 2015. They have also had more number-one albums on the British charts and"} +{"qid": "test2287", "pid": "1181668", "query": "when were the beatles inducted into the rock and roll hall of fame", "answer": "1988", "passage": "\"Derek Taylor\"\nalso worked with George Harrison's film company, Handmade Films. In January 1988, while accepting the Beatles' induction into the Rock and Roll Hall of Fame, Harrison named Taylor and Neil Aspinall as the two people worthy of the much-used title \"\"the Fifth Beatle\"\". In the early 1990s Taylor was asked to rejoin Apple to be in charge of marketing of the multiple projects planned for that decade. The projects included the CD release of the non-Beatle Apple catalogue and major Beatles releases such as \"\"Live at the BBC\"\" and compilation albums associated with \"\"The Beatles Anthology\"\". In 1973 he wrote"} +{"qid": "test2287", "pid": "11028497", "query": "when were the beatles inducted into the rock and roll hall of fame", "answer": "1988", "passage": "\"Paul McCartney\"\nof Fame in April 2015, and played bass on his 2017 album \"\"Give More Love\"\". On 16 December 2018, Starr and Ronnie Wood joined McCartney onstage to perform \"\"Get Back\"\" at his concert at London's O2 Arena. McCartney was inducted into the Rock and Roll Hall of Fame in 1988 as a member of the Beatles and again as a solo artist in 1999. In 1979, the \"\"Guinness Book of World Records\"\" recognised McCartney as the \"\"most honored composer and performer in music\"\", with 60 gold discs (43 with the Beatles, 17 with Wings) and, as a member of the"} +{"qid": "test2289", "pid": "14368949", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"Military history of North America\"\nduring this time, with the Dutch conquest of New Sweden during the Second Northern War, and the English conquest of New Netherland during the Second Anglo-Dutch War. By the beginning of the 18th century, the kingdoms of England, France, and Spain were the only remaining colonial powers on the North American mainland. From 1689 to 1763, a series of conflicts between the English/British and the French took place, which saw the two European powers fight a number of wars, spanning a number of continents, including North America. During this period, the colonial powers fought over control of the colonies of"} +{"qid": "test2289", "pid": "6868051", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"Colonial history of New Jersey\"\nclaimed that New Netherland was part of Cabot's discoveries, prior to Hudson. Insisting that John Cabot had been the first to discover North America, the English granted the land that now encompasses New Jersey, who ordered Colonel Richard Nicolls to take over the area. In September 1664, an English fleet under the command of Richard Nicolls sailed into what is now New York Harbor and under threat of attack, forced the provisional surrender of the colony by the Dutch. The English received little resistance due to West India Company's decision not to garrison the colony. Nicolls took the position of"} +{"qid": "test2289", "pid": "631457", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"Delaware River\"\nriver was first visited by a Dutch East India Company expedition led by Henry Hudson. Hudson, an English navigator, was hired to find a western route to Cathay (present-day China), but his discoveries set the stage for Dutch colonization of North America in the 17th century. Early Dutch and Swedish settlements were established along the lower section of river and Delaware Bay. Both colonial powers called the river the \"\"South River\"\", compared to the Hudson River, which was known as the \"\"North River\"\". After the English expelled the Dutch and took control of the New Netherland colony in 1664, the"} +{"qid": "test2289", "pid": "11889138", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"Jurriaen Aernoutsz\"\nempire in North America, appointing Cornelius Van Steenwyk as Dutch governor of the territory in 1676, but this was largely a paper designation — in actual practice, the region remained under French control and sovereignty. Shortly after his appointment, Van Steenwyk sent a Dutch expedition to reoccupy Pentagouet, but they were turned back by three English warships from Boston. The Dutch continued to claim sovereignty over Acadia on paper until 1678, when they surrendered the claim at the end of the war. Jurriaen Aernoutsz Jurriaen Aernoutsz (or Aernouts) was a Dutch colonial navy captain, who briefly conquered the capital of"} +{"qid": "test2289", "pid": "2192318", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"Middle Colonies\"\nBritish colonies in North America; they had settlers from England, Scotland, Ireland, the Netherlands, and German states. The good farm land was much cheaper than in Europe. With the new arrivals came various Protestant denominations, which were protected in the Middle Colonies by written freedom of religion laws. This tolerance was very unusual and distinct from the situation in other British colonies. The Middle Colonies were explored by Henry Hudson on a journey into the Hudson River and Delaware Bay in 1609. The Dutch soon claimed the land. Although the Swedes and the Dutch fought over the land in the"} +{"qid": "test2289", "pid": "628172", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"European colonization of the Americas\"\nthe Americas in the 16th century, but these failed. England and France succeeded in establishing permanent colonies in the following century, along with the Dutch Republic. Some of these were on Caribbean islands, which had often already been conquered by the Spanish or depopulated by disease, while others were in eastern North America, which had not been colonized by Spain north of Florida. Early European possessions in North America included Spanish Florida, Spanish New Mexico, the English colonies of Virginia (with its North Atlantic offshoot, Bermuda) and New England, the French colonies of Acadia and Canada, the Swedish colony of"} +{"qid": "test2289", "pid": "7504625", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"Military history of the Netherlands\"\nwere even gaining significant influence over England's maritime trade with her North American colonies, profiting from the turmoil that resulted from the English Civil War. However, the Dutch navy had been neglected during this time period, while Cromwell had built a strong fleet. In order to protect its position in North America and damage Dutch trade, in 1651 the Parliament of the Commonwealth of England passed the first of the Navigation Acts, which mandated that all goods from her American colonies must be carried by English ships. In a period of growing mercantilism this was the spark that ignited the"} +{"qid": "test2289", "pid": "2697792", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"Province of New York\"\nProvince of New York The Province of New York (1664–1776) was a British proprietary colony and later royal colony on the northeast coast of North America. As one of the Thirteen Colonies, New York achieved independence and worked with the others to found the United States. In 1664, during the Second Anglo-Dutch War, the Dutch Province of New Netherland in America was awarded by Charles II of England to his brother James, Duke of York. James raised a fleet to take it from the Dutch and the Governor surrendered to the English fleet without recognition from the Dutch West Indies"} +{"qid": "test2289", "pid": "17385240", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"Women in the Americas\"\nmost North American women were farmers, and had accepted supporting roles to their men, who performed hunting, trade, and diplomatic functions. Conquest by and contact with Europeans brought extreme changes to all of the inhabitants of the Americas. Disease and a lack of immunity to African and European diseases killed more than 80% of the Native population of the Americas within the first two centuries of the Colonial period. The main European groups which colonized and fought over control of the region included the Dutch, English, French, Portuguese, and Spanish. They established economic systems which benefited themselves, taking land and"} +{"qid": "test2289", "pid": "1622102", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"British Guiana\"\nBritish Guiana British Guiana was the name of the British colony, part of the British West Indies (Caribbean), on the northern coast of South America, now known as the independent nation of Guyana (since 1966). Its indigenous people are the Arawak-speaking Lucayan, who are part of the Taino people. The first European to discover Guiana was Sir Walter Raleigh, an English explorer. The Dutch were the first Europeans to settle there, starting in the early 17th century, when they founded the colonies of Essequibo and Berbice, adding Demerara in the mid-18th century. In 1796, Great Britain took over these three"} +{"qid": "test2289", "pid": "1622124", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"British Guiana\"\nmillion. British Guiana British Guiana was the name of the British colony, part of the British West Indies (Caribbean), on the northern coast of South America, now known as the independent nation of Guyana (since 1966). Its indigenous people are the Arawak-speaking Lucayan, who are part of the Taino people. The first European to discover Guiana was Sir Walter Raleigh, an English explorer. The Dutch were the first Europeans to settle there, starting in the early 17th century, when they founded the colonies of Essequibo and Berbice, adding Demerara in the mid-18th century. In 1796, Great Britain took over these"} +{"qid": "test2289", "pid": "10066364", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"John Parr (colonial governor)\"\nnew governor arrived and returned to England. Edmund Fanning, a recently arrived Loyalist, was named Parr's new lieutenant-governor. Parr immediately took over as colonel of the Royal Nova Scotia Volunteer Regiment. In 1786, when the colonial administration of British North America was reorganized, Parr had hoped to be named to the new position of Governor-General of The Canadas and Governor-in-Chief of British North America but was disappointed when the position went to Guy Carleton, who was elevated to the peerage as Lord Dorchester. The position of Governor of Nova Scotia was thereby abolished and Parr was reappointed as lieutenant governor"} +{"qid": "test2289", "pid": "750254", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"Second Anglo-Dutch War\"\nAfrica. At the same time, the English invaded the Dutch colony of New Netherland in North America on 24 June 1664, and had control of it by October. The Dutch responded by sending a fleet under Michiel de Ruyter that recaptured their African trade posts, captured most English trade stations there and then crossed the Atlantic for a punitive expedition against the English in America. In December 1664, the English suddenly attacked the Dutch Smyrna fleet. Though the attack failed, the Dutch in January 1665 allowed their ships to open fire on English warships in the colonies when threatened. Charles"} +{"qid": "test2289", "pid": "10993233", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"History of slavery in Pennsylvania\"\nblack population and decline of its slave population. History of slavery in Pennsylvania When the Dutch and Swedes established colonies in the Delaware Valley of what is now Pennsylvania, in North America, they quickly imported African slaves for workers; the Dutch also transported them south from their colony of New Netherland. Slavery was documented in this area as early as 1639. William Penn and the colonists who settled Pennsylvania tolerated slavery, but the English Quakers and later German immigrants were among the first to speak out against it. Many colonial Methodists and Baptists also opposed it on religious grounds. During"} +{"qid": "test2289", "pid": "10993218", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"History of slavery in Pennsylvania\"\nHistory of slavery in Pennsylvania When the Dutch and Swedes established colonies in the Delaware Valley of what is now Pennsylvania, in North America, they quickly imported African slaves for workers; the Dutch also transported them south from their colony of New Netherland. Slavery was documented in this area as early as 1639. William Penn and the colonists who settled Pennsylvania tolerated slavery, but the English Quakers and later German immigrants were among the first to speak out against it. Many colonial Methodists and Baptists also opposed it on religious grounds. During the Great Awakening of the late 18th century,"} +{"qid": "test2289", "pid": "628771", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "\"British colonization of the Americas\"\nEngland took over the Dutch colony of New Netherland (including its capital of New Amsterdam) which England renamed the Province of New York. With New Netherland, the English also came to control the former New Sweden (in what is now Delaware), which the Dutch had conquered earlier. This later became part of Pennsylvania after that was established in 1680. The Kingdom of Scotland tried unsuccessfully to establish a colony at Darién, and the Scottish colonization of Nova Scotia (New Scotland) lasted from 1629 to 1632. Thousands of Scotsmen also participated in English colonization before the two countries were united in"} +{"qid": "test2289", "pid": "280247", "query": "who took over the dutch colony in north america", "answer": "England", "passage": "Netherlands\na buffer zone between the Republic and the Spanish-controlled Southern Netherlands. In the Dutch Golden Age, spanning much of the 17th century, the Dutch Empire grew to become one of the major seafaring and economic powers, alongside Portugal, Spain, France and England. Science, military, and art (especially painting) were among the most acclaimed in the world. By 1650, the Dutch-owned 16,000 merchant ships. The Dutch East India Company and the Dutch West India Company established colonies and trading posts all over the world, including ruling the northern parts of Taiwan between 1624–1662 and 1664–1667. The Dutch settlement in North America"} +{"qid": "test2289", "pid": "750211", "query": "who took over the dutch colony in north america", "answer": "English", "passage": "\"Anglo-Dutch Wars\"\nthe Dutch and English—influenced by mercantilism and linked by centuries of interaction with each other over fisheries, the textile industry and trade in the Baltic—both sought profits in the New World. In the early 1600s, the Dutch, while continuing to fight the Eighty Years' War with the Catholic Habsburgs, also began to carry out long distance exploration by sea. The Dutch innovation in the trading of shares in a joint stock company allowed them to finance expeditions with stock subscriptions sold in the United Provinces and in London. They founded colonies in North America, in India, and in Indonesia (the"} +{"qid": "test2291", "pid": "19396347", "query": "when is the second half of vikings season 5 coming out", "answer": "2018", "passage": "\"Vikings (season 5)\"\nVikings (season 5) The fifth season of the historical drama television series \"\"Vikings\"\" premiered on November 29, 2017 on History in Canada. The series broadly follows the exploits of the legendary Viking chieftain Ragnar Lothbrok and his crew, and later those of his sons. The first season of the series begins at the start of the Viking Age, marked by the Lindisfarne raid in 793. The fifth season consists of a double order of twenty episodes, split into two parts of ten episodes; the second half premiered on November 28, 2018. The premise of the fifth season differs from the"} +{"qid": "test2291", "pid": "20468605", "query": "when is the second half of vikings season 5 coming out", "answer": "2018", "passage": "\"2018 Minnesota Vikings season\"\nown goalposts and closed out the half with a 10–3 lead. The Vikings defense forced a three-and-out to begin the second half, but only managed one first down on their ensuing possession before having to punt; however, three plays later, with the 49ers at third-and-8 from their own 20-yard line, the Vikings' rookie cornerback Mike Hughes intercepted a pass from Garoppolo and returned it 28 yards for a touchdown to put the Vikings up 17–3. Garoppolo responded immediately, however, completing a 56-yard pass to fullback Kyle Juszczyk to put the 49ers inside the Vikings' 20. As in the first half,"} +{"qid": "test2293", "pid": "6689139", "query": "who coined the phrase let them eat cake", "answer": "Jean-Jacques Rousseau", "passage": "\"Let them eat cake\"\nLet them eat cake \"\"Let them eat cake\"\" is the traditional translation of the French phrase \"\"\"\"Qu'ils mangent de la brioche\"\"\"\", supposedly spoken by \"\"a great princess\"\" upon learning that the peasants had no bread. Since brioche was a luxury bread enriched with butter and eggs, the quotation would reflect the princess's disregard for the peasants, or her poor understanding of their situation. While the phrase is commonly attributed to Queen Marie Antoinette, there is no record of her having said it. It appears in book six of Jean-Jacques Rousseau's \"\"Confessions\"\", his autobiography (whose first six books were written in"} +{"qid": "test2293", "pid": "558751", "query": "who coined the phrase let them eat cake", "answer": "Jean-Jacques Rousseau", "passage": "\"Marie Antoinette\"\nEven her critics have recognized her qualities as a mother and her courage in dying. The phrase \"\"Let them eat cake\"\" is often attributed to Marie Antoinette, but there is no evidence that she ever uttered it, and it is now generally regarded as a journalistic cliché. This phrase originally appeared in Book VI of the first part of Jean-Jacques Rousseau's autobiographical work \"\"Les Confessions\"\", finished in 1767 and published in 1782: \"\"\"\"Enfin je me rappelai le pis-aller d'une grande princesse à qui l'on disait que les paysans n'avaient pas de pain, et qui répondit: Qu'ils mangent de la brioche\"\"\"\""} +{"qid": "test2295", "pid": "7024714", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"V(D)J recombination\"\nare composed of heavy and light chains (each of which contains both \"\"constant\"\" (C) and \"\"variable\"\" (V) regions), which are encoded by genes on three loci: Each heavy chain and light chain gene contains multiple copies of three different types of gene segments for the variable regions of the antibody proteins. For example, the human immunoglobulin heavy chain region contains 2 Constant (Cμ and Cδ) gene segments and 44 Variable (V) gene segments, plus 27 Diversity (D) gene segments and 6 Joining (J) gene segments. The light chains also possess 2 Constant (Cμ and Cδ) gene segments and numerous V"} +{"qid": "test2295", "pid": "18620091", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Organization and expression of immunoglobulin genes\"\nlambda,λ. This process takes place at the level of mRNAs processing. Random rearrangements and recombinations of the gene segments at DNA level to form one kappa or lambda light chain occurs in an orderly fashion. As a result, \"\"a functional variable region gene of a light chain contains two coding segments that are separated by a non-coding DNA sequence in unrearranged germ-line DNA\"\" (Barbara et al., 2007). Heavy chain contains similar gene segments such as VH, JH and CH, but also has another gene segment called D (diversity). Unlike the light chain multigene family, VDJ gene segments code for the"} +{"qid": "test2295", "pid": "29115", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "Antibody\n\"\"V(D)J recombination\"\", involves the generation of a unique immunoglobulin variable region. The variable region of each immunoglobulin heavy or light chain is encoded in several pieces—known as gene segments (subgenes). These segments are called variable (V), diversity (D) and joining (J) segments. V, D and J segments are found in Ig heavy chains, but only V and J segments are found in Ig light chains. Multiple copies of the V, D and J gene segments exist, and are tandemly arranged in the genomes of mammals. In the bone marrow, each developing B cell will assemble an immunoglobulin variable region by"} +{"qid": "test2295", "pid": "20128114", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Somatic genome processing\"\nin vertebrates. During life, organisms have contact with a large number of antigens. Which means that the immune system needs to synthesize a wide range of antibodies. Each immunoglobulin is a tetramer consisting of four polypeptides connected by disulfide bridges. They form two long heavy chains and two short light chains. But vertebrate genome does not code entire genes of heavy and light immunoglobulins, only gene segments. Segments of heavy chain are located on chromosome 14, they include 11 constant gene segments (C), that are preceded by 123-129 variable segments (V), 27 diversity gene segments (D) and 9 joining segments"} +{"qid": "test2295", "pid": "18620090", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Organization and expression of immunoglobulin genes\"\nand are separated by non-coding regions. The rearrangement and organization of these gene segments during the maturation of B cells produce functional proteins.The entire process of rearrangement and organization of these gene segments is the vital source where our body immune system gets its capabilities to recognize and respond to variety of antigens. The light chain gene has three gene segments. These include: the light chain variable region (V), joining region (J), and constant region (C) gene segments. The variable region of light is therefore encoded by the rearrangement of VJ segments. The light chain can be either kappa,κ or"} +{"qid": "test2295", "pid": "18620092", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Organization and expression of immunoglobulin genes\"\nvariable region of the heavy chain. The rearrangement and reorganization of gene segments in this multigene family is more complex . The rearranging and joining of segments produced different end products because these are carried out by different RNA processes. The same reason is why the IgM and IgG are generates at the time. The variable region rearrangements happen in an orderly sequence in the bone marrow. Usually, the assortment of these gene segments occurs at B cell maturation. The kappa and lambda light chains undergo rearrangements of the V and J gene segments. In this process, a functional Vlambda"} +{"qid": "test2295", "pid": "9846955", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"DNA repair protein XRCC4\"\nare transported to the outer lipid bilayer of the cell. Antibodies are composed of two light and two heavy chains. The antigen binding site consists of two variable regions, VL and VH. The remainder of the antibody structure is made up of constant regions, CL, CH, CH2 and CH3. The Kappa locus in the mouse encodes an antibody light chain and contains approximately 300 gene segments for the variable region, V, four J segments than encode a short protein region, and one constant, C, segment. To produce a light chain with one unique type of VL, when B cells are"} +{"qid": "test2295", "pid": "11353627", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "IGL@\nIGL@ Immunoglobulin lambda locus, also known as IGL@, is a region on human chromosome 22 that contains genes for the lambda light chains of antibodies (or immunoglobulins). Immunoglobulins recognize foreign antigens and initiate immune responses such as phagocytosis and the complement system. Each immunoglobulin molecule consists of two identical heavy chains and two identical light chains. There are two classes of light chains, kappa and lambda. This region represents the germline organization of the lambda light chain locus. The locus includes V (variable), J (joining), and C (constant) segments. During B cell development, a recombination event at the DNA level"} +{"qid": "test2295", "pid": "29116", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "Antibody\nrandomly selecting and combining one V, one D and one J gene segment (or one V and one J segment in the light chain). As there are multiple copies of each type of gene segment, and different combinations of gene segments can be used to generate each immunoglobulin variable region, this process generates a huge number of antibodies, each with different paratopes, and thus different antigen specificities. The rearrangement of several subgenes (i.e. V2 family) for lambda light chain immunoglobulin is coupled with the activation of microRNA miR-650, which further influences biology of B-cells. RAG proteins play an important role"} +{"qid": "test2295", "pid": "12596520", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Recombination signal sequences\"\nRecombination signal sequences Recombination signal sequences are conserved sequences of noncoding DNA that are recognized by the RAG1/RAG2 enzyme complex during V(D)J recombination in immature B cells and T cells. Recombination signal sequences guide the enzyme complex to the V, D, and J gene segments that will undergo recombination during the formation of the heavy and light-chain variable regions in T-cell receptors and immunoglobulin molecules. RSSs are made up of conserved heptamer sequences (7 base pairs), spacer sequences, and conserved nonamer sequences (9 base pairs) that are adjacent to the V, D and J sequences in the heavy-chain region of"} +{"qid": "test2295", "pid": "7024718", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"V(D)J recombination\"\nregion of the heavy chain and both the constant \"\"mu\"\" and \"\"delta\"\" chains (C and C). (i.e. the primary transcript contains the segments: V-D-J-C-C). The primary RNA is processed to add a polyadenylated (poly-A) tail after the C chain and to remove sequence between the VDJ segment and this constant gene segment. Translation of this mRNA leads to the production of the Ig M heavy chain protein. The kappa (κ) and lambda (λ) chains of the immunoglobulin light chain loci rearrange in a very similar way, except that the light chains lack a D segment. In other words, the first"} +{"qid": "test2295", "pid": "11973235", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Plasma cell dyscrasia\"\nof human chromosome 14 at position 32.33 (site notated as 14q32.33); b) the immunoglobulin light chain antigen binding locus gene which is on the short arm of chromosome 22 at position 22q11.2; and c) other nearby sites. These mutations are made in an effort to make a gene encoding a protein that binds the instigating antigen. The next step in this new gene formation involves V(D)J recombinations and class switch recombinations, i.e. the deletion and subsequent recombination of various gene segments at the heavy chain locus so that the gene codes for either an IgM, IgG, IgA, IgE, or IgD"} +{"qid": "test2295", "pid": "29114", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "Antibody\ngenerated from distinct B cells. Differences, between the variable domains, are located on three loops known as hypervariable regions (HV-1, HV-2 and HV-3) or complementarity determining regions (CDR1, CDR2 and CDR3). CDRs are supported within the variable domains by conserved framework regions. The heavy chain locus contains about 65 different variable domain genes that all differ in their CDRs. Combining these genes with an array of genes for other domains of the antibody generates a large cavalry of antibodies with a high degree of variability. This combination is called V(D)J recombination discussed below. Somatic recombination of immunoglobulins, also known as"} +{"qid": "test2295", "pid": "2708765", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Immunoglobulin M\"\nproviding a source of homogeneous immunoglobulins of various isotypes, including IgM (reviewed in). More recently, expression of engineered immunoglobulin genes in tissue culture can be used to produce IgM with specific alternations and thus to identify the molecular requirements for features of interest. Immunoglobulins include light chains and heavy chains. The light chain (λ or κ) is a protein of ~220 amino acids, composed of a variable domain, VL (a segment of approximately 110 amino acids), and a constant domain, CL (also approximately 110 amino acids long). The µ heavy chain of IgM is a protein of ~576 amino acids,"} +{"qid": "test2295", "pid": "18620094", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Organization and expression of immunoglobulin genes\"\nRNA- processing and repairing. In summary, The rearrangements of heavy-chains are different from the light chains because DNA undergoes rearrangements of V-D-J gene segments in the heavy chains. These reorganizations of gene segments produce gene sequence from 5 prime to 3 prime ends such as a short leader exon, an intron, a joined VDJ segment, a second intron and several gene segments. The final product of the rearrangement is transcribed when RNA polymerase It is understood that rearrangement occurs between specific sites on the DNA called recombination signal sequences (RSSs). The signal sequences are composed of a conserved palindromic heptamer"} +{"qid": "test2295", "pid": "8041895", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Hypervariable region\"\nphenomenon completely defies explanation at present. In antibodies, hypervariable regions form the antigen-binding site and are found on both light and heavy chains. They also contribute to the specificity of each antibody. In a variable region, the 3 H segments of each heavy or light chain fold together at the N-terminus to form an antigen binding pocket. Hypervariable region A hypervariable region (HVR) is a location within nuclear DNA or the D-loop of mitochondrial DNA in which base pairs of nucleotides repeat (in the case of nuclear DNA) or have substitutions (in the case of mitochondrial DNA). Changes or repeats"} +{"qid": "test2295", "pid": "7024717", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"V(D)J recombination\"\non a physiological mechanism and is not pathogenetic for leukemias or lymphomas. In the developing B cell, the first recombination event to occur is between one D and one J gene segment of the heavy chain locus. Any DNA between these two gene segments is deleted. This D-J recombination is followed by the joining of one V gene segment, from a region upstream of the newly formed DJ complex, forming a rearranged VDJ gene segment. All other gene segments between V and D segments are now deleted from the cell’s genome. Primary transcript (unspliced RNA) is generated containing the VDJ"} +{"qid": "test2295", "pid": "29117", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "Antibody\nwith V(D)J recombination in cutting DNA at a particular region. Without the presence of these proteins, V(D)J recombination would not occur. After a B cell produces a functional immunoglobulin gene during V(D)J recombination, it cannot express any other variable region (a process known as allelic exclusion) thus each B cell can produce antibodies containing only one kind of variable chain. Following activation with antigen, B cells begin to proliferate rapidly. In these rapidly dividing cells, the genes encoding the variable domains of the heavy and light chains undergo a high rate of point mutation, by a process called \"\"somatic hypermutation\"\""} +{"qid": "test2295", "pid": "18620093", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"Organization and expression of immunoglobulin genes\"\ncan combine with four functional Jλ –Cλ combinations. On the other hands, Vk gene segments can join with either one of the Jk functional gene segments. The overall rearrangements result in a gene segment order from 5 prime to 3 prime end. These are a short leader (L) exon, a noncoding sequence (intron), a joined VJ segment, a second intron, and the constant region. There is a promoter upstream from each leader gene segment. The leader exon is important in the transcription of light chain by the RNA polymerase. To remain with coding sequence only, the introns are removed during"} +{"qid": "test2295", "pid": "11322654", "query": "which gene segments code for the variable region of the heavy chain", "answer": "V", "passage": "\"TRG (gene)\"\nrearranged and expressed in the order delta, gamma, beta, and alpha. If both delta and gamma rearrangements produce functional chains, the cell expresses delta and gamma. If not, the cell proceeds to rearrange the beta and alpha loci. This region represents the germline organization of the T cell receptor gamma locus. The gamma locus includes V (variable), J (joining), and C (constant) segments. During T cell development, the gamma chain is synthesized by a recombination event at the DNA level joining a V segment with a J segment; the C segment is later joined by splicing at the RNA level."} +{"qid": "test2296", "pid": "12284724", "query": "sri lanka belongs to which part of asia", "answer": "South Asia", "passage": "\"Wildlife of Sri Lanka\"\nincluding 2006 revision of Indian spider checklist\"\". This checklist provided all the described spider species of South Asia and part of South-East Asia as well. According to this checklist, Sri Lanka has 501 species of spiders belongs to 45 families and 213 genera. Out of these 360, 250 are endemic spiders to Sri Lanka with 22 endemic genera. Spiders in genus Myrmarachne are commonly called ant-mimicking spiders. They are grouped in the family Salticidae of order Araneae. Out of 100+ species described, 12 species are found in Sri Lanka. Three species were described in 2015. There are 8 species of"} +{"qid": "test2296", "pid": "5420547", "query": "sri lanka belongs to which part of asia", "answer": "South Asia", "passage": "\"Radio in Sri Lanka\"\nwho renamed the station Radio SEAC which broadcast across South Asia from October 1944. After the war the station was handed back to the civilian government of Ceylon who renamed it Radio Ceylon on 1 October 1949. The station was immensely popular both in Ceylon and other parts of Asia. The Ceylon Broadcasting Corporation Act No. 37 of 1966 incorporated the Department of Broadcasting. Radio Ceylon became a public corporation on 30 September 1967, changing its name to Ceylon Broadcasting Corporation (CBC). Ceylon was renamed Sri Lanka in 1972 after becoming a republic and consequently CBC was renamed Sri Lanka"} +{"qid": "test2296", "pid": "12136347", "query": "sri lanka belongs to which part of asia", "answer": "South Asia", "passage": "\"Balangoda Man\"\ndeposits near Bundala in the Hambantota district in Sri Lanka, paleontologists have gathered secure evidence of prehistoric fauna in Sri Lanka by 125,000 BP. Excavations of the area have also yielded tools of quartz and chert probably belonging to the Middle Palaeolithic period. Consequently, some believe in the possibility that there were prehistoric humans in Sri Lanka from 500,000 BP or earlier, and consider it likely that they were on the island by 300,000 BP. Further analysis of ancient coastal sands in the north and south east of the island may yield evidence of such early hominids. From South Asia"} +{"qid": "test2297", "pid": "13638588", "query": "when was the $1 000 bill discontinued", "answer": "1969", "passage": "\"Service number (United States Air Force)\"\nthe first two numbers. As with other service numbers used by both the Army and the Air Force, procedures were in place to avoid repeat or duplicate numbers. The last range of Air Force service numbers was the 60 million series extending from 60 000 000 to 69 999 999. These numbers were used from 1966 to 1969. Air Force enlisted service numbers were formally discontinued on July 1, 1969, and replaced with Social Security numbers. Upon the creation of Air Force service numbers, the Air Force had no prefix codes for special situations but did create a series of"} +{"qid": "test2297", "pid": "13638583", "query": "when was the $1 000 bill discontinued", "answer": "1969", "passage": "\"Service number (United States Air Force)\"\nissued by the Air Force, to avoid repeating service numbers of the Army, with the next range beginning at 3 000 000 and extending to 3 999 999. These numbers were intended for all officers considered \"\"Other Than Regular Air Force\"\" (OTRAF) and were issued in chronological order by date of commission after 1948. Such numbers were normally preceded with a zero. In 1969, when the Air Force discontinued service numbers, the officer cap of 3 999 999 had not yet been reached. Thus, there were never any higher Air Force officer service numbers created. After 1969, the Air Force"} +{"qid": "test2297", "pid": "16590484", "query": "when was the $1 000 bill discontinued", "answer": "1969", "passage": "\"Banknotes of the United States dollar\"\nlast printed in 1945 and discontinued in 1969, making the $100 bill the largest denomination banknote in circulation. A $1 note was added in 1963 to replace the $1 Silver Certificate after that type of currency had been discontinued. Since United States Notes were discontinued in 1971, Federal Reserve Notes are the only type of currency circulating in the US. In 1976, a $2 note was added, 10 years after the $2 denomination of United States Note was officially discontinued. The denomination proved to be unpopular and is now treated as a curiosity, although it is still being printed. Starting"} +{"qid": "test2299", "pid": "12867735", "query": "when does star wars battlefront 2 com out", "answer": "November 17, 2017", "passage": "\"Star Wars Battlefront (2015 video game)\"\npraised its gameplay, visuals, musical scores and high production values, but criticized its lack of content on both single and multiplayer modes. More than 14 million copies have been shipped. A sequel, \"\"Star Wars Battlefront II\"\", released on November 17, 2017. \"\"Star Wars Battlefront\"\" is an action game played from either a first-person or third-person view; players can switch views whenever desired, similar to previous games, except when controlling \"\"hero\"\" characters or their personal guards. Players traverse planets from the original \"\"Star Wars\"\" trilogy, such as Endor, Hoth, Tatooine, Bespin, and Sullust, as well as the planet of Jakku from"} +{"qid": "test2299", "pid": "11092543", "query": "when does star wars battlefront 2 com out", "answer": "November 17, 2017", "passage": "\"Star Wars: Battlefront\"\nmade several attempts to get a third major \"\"Battlefront\"\" game off the ground but no projects were released before The Walt Disney Company's acquisition of LucasArts. Subsequently, EA DICE acquired a license to develop a new game, titled \"\"Star Wars Battlefront\"\" which was released on November 17, 2015. A sequel, \"\"Star Wars Battlefront II\"\", was released on November 17, 2017, and was developed by EA DICE, Criterion Games, and Motive Studios. Games in the \"\"Battlefront\"\" series normally revolve around two armies – the Galactic Republic versus the Confederacy of Independent Systems or the Galactic Empire versus the Rebel Alliance or"} +{"qid": "test2299", "pid": "20081812", "query": "when does star wars battlefront 2 com out", "answer": "November 17, 2017", "passage": "\"Star Wars Battlefront II (2017 video game)\"\nStar Wars Battlefront II (2017 video game) Star Wars Battlefront II is an action shooter video game based on the \"\"Star Wars\"\" film franchise. It is the fourth major installment of the \"\"\"\" series and seventh overall, and a sequel to the 2015 reboot of the series. It was developed by EA DICE, in collaboration with Criterion Games and Motive Studios, and published by Electronic Arts. The game was released worldwide on November 17, 2017 for PlayStation 4, Xbox One, and Microsoft Windows. Upon release, \"\"Battlefront II\"\" received mixed reviews from critics. The game was also subject to widespread criticism"} +{"qid": "test23", "pid": "7516070", "query": "what part of the brain is in the middle cranial fossa", "answer": "the temporal lobes", "passage": "\"Middle cranial fossa\"\nlike the italic letter \"\"f\"\". It begins behind at the foramen lacerum, and ends on the medial side of the anterior clinoid process, where it is sometimes converted into a foramen (carotico-clinoid) by the union of the anterior with the middle clinoid process; posteriorly, it is bounded laterally by the lingula. This groove lodges the cavernous sinus and the internal carotid artery, the latter being surrounded by a plexus of sympathetic nerves. The lateral parts of the middle fossa are of considerable depth, and support the temporal lobes of the brain. They are marked by depressions for the brain convolutions"} +{"qid": "test23", "pid": "7516068", "query": "what part of the brain is in the middle cranial fossa", "answer": "pituitary gland", "passage": "\"Middle cranial fossa\"\nwings of the sphenoid. It is traversed by the squamosal, sphenoparietal, sphenosquamosal, and sphenopetrosal sutures. It houses the temporal lobes of the brain and the pituitary gland. A middle fossa craniotomy is one means to surgically remove acoustic neuromas (vestibular schwannoma) growing within the internal auditory canal of the temporal bone. The middle part of the fossa presents, in front, the chiasmatic groove and tuberculum sellae; the chiasmatic groove ends on either side at the optic foramen, which transmits the optic nerve and ophthalmic artery to the orbital cavity. Behind the optic foramen the anterior clinoid process is directed backward"} +{"qid": "test23", "pid": "684375", "query": "what part of the brain is in the middle cranial fossa", "answer": "pituitary gland", "passage": "\"Pituitary gland\"\nPituitary gland In vertebrate anatomy, the pituitary gland, or hypophysis, is an endocrine gland about the size of a pea and weighing in humans. It is a protrusion off the bottom of the hypothalamus at the base of the brain. The hypophysis rests upon the hypophysial fossa of the sphenoid bone in the center of the middle cranial fossa and is surrounded by a small bony cavity (sella turcica) covered by a dural fold (diaphragma sellae). The anterior pituitary (or adenohypophysis) is a lobe of the gland that regulates several physiological processes (including stress, growth, reproduction, and lactation). The intermediate"} +{"qid": "test23", "pid": "7876461", "query": "what part of the brain is in the middle cranial fossa", "answer": "pituitary gland", "passage": "\"Diaphragma sellae\"\nDiaphragma sellae The diaphragma sellae or sellar diaphragm is a flat piece of dura mater with a circular hole allowing the vertical passage of the pituitary stalk. It retains the pituitary gland beneath it in the fossa hypophyseos as it almost completely roofs the fossa hypophyseos of the sella turcica, a part of the sphenoid bone. It has a posterior boundary at the dorsum sellae and an anterior boundary at the tuberculum sellae along with the two small eminences (one on either side) called the middle clinoid processes. The diaphragma sellae is innervated by the first division of the cranial"} +{"qid": "test230", "pid": "1657040", "query": "what is the longest pier in the uk", "answer": "Southend Pier", "passage": "Southend-on-Sea\nand proximity to London mean that much of the economy has been based on tourism, and that Southend has been a dormitory town for city workers ever since. Southend Pier is the world's longest pleasure pier at . It has suffered fires and ship collisions, most recently in October 2005, but the basic pier structure has been repaired each time. As a holiday destination, Southend declined from the 1960s onwards, as holidaying abroad became more affordable. Southend became the home of the Access credit card, due to it having one of the UK's first electronic telephone exchanges (it is still"} +{"qid": "test230", "pid": "18087659", "query": "what is the longest pier in the uk", "answer": "Southend Pier", "passage": "\"Jamie & Jimmy's Friday Night Feast\"\nJamie & Jimmy's Friday Night Feast Jamie & Jimmy's Friday Night Feast is a UK food lifestyle programme which aired on Channel 4 in 2014. A second series began in January 2015, a third in January 2016, a fourth in December 2016 and a fifth in November 2017. The programme is presented by Jamie Oliver and Jimmy Doherty. The series is based in Jamie and Jimmy's Cafe which is based at the end of Southend Pier which is the longest Pleasure Pier in the World. Jimmy and Jamie are helped in the Cafe by one of Jamie's old students, Kerry-Anne."} +{"qid": "test230", "pid": "5730570", "query": "what is the longest pier in the uk", "answer": "Southend Pier", "passage": "\"Southend Pier\"\nmarine radar training courses in a small room at the end of the pier. Students were billeted at various bed and breakfasts locally. Southend Pier Southend Pier is a major landmark in Southend-on-Sea. Extending into the Thames Estuary, it is the longest pleasure pier in the world. Sir John Betjeman once said that \"\"the Pier is Southend, Southend is the Pier\"\". The pier is a Grade II listed building. In the early 19th century, Southend was growing as a seaside holiday resort. At the time, it was thought that spending time by the sea was good for one's health, and"} +{"qid": "test230", "pid": "5730546", "query": "what is the longest pier in the uk", "answer": "Southend Pier", "passage": "\"Southend Pier\"\nSouthend Pier Southend Pier is a major landmark in Southend-on-Sea. Extending into the Thames Estuary, it is the longest pleasure pier in the world. Sir John Betjeman once said that \"\"the Pier is Southend, Southend is the Pier\"\". The pier is a Grade II listed building. In the early 19th century, Southend was growing as a seaside holiday resort. At the time, it was thought that spending time by the sea was good for one's health, and since it was close to the capital, many Londoners would come to Southend for this reason. However the coast at Southend consists of"} +{"qid": "test2300", "pid": "15010921", "query": "who sings gimme some lovin in days of thunder", "answer": "The Spencer Davis Group", "passage": "\"Days of Thunder (soundtrack)\"\nThe song \"\"Gimme Some Lovin'\"\" is credited to Terry Reid, but the version in the movie is actually from The Spencer Davis Group. \"\"Gimme Some Lovin'\"\" also featured on Reid's 1991 solo album, \"\"The Driver\"\", along with an alternate version of \"\"The Last Note of Freedom\"\" with different lyrics, titled \"\"The Driver (Part 2)\"\". The film score to \"\"Days of Thunder\"\" was composed by Hans Zimmer and featured Jeff Beck on guitar. While bootlegs were available for years, an official album containing the score was not released until 2013, when La-La Land Records released the film's score, with bonus tracks,"} +{"qid": "test2300", "pid": "4161817", "query": "who sings gimme some lovin in days of thunder", "answer": "The Spencer Davis Group", "passage": "\"Gimme Some Lovin'\"\nthe Hammond B-3 organ. In 1980, The Blues Brothers covered \"\"Gimme Some Lovin'.\"\" Their version reached number 18 on the U.S. \"\"Billboard\"\" Hot 100 and number 16 on \"\"Cash Box\"\". On WLS-AM in Chicago, the song peaked at number three. The Spencer Davis Group version appears in a 2018 TV commercial for Walmart. The song is used over a touch football game in the film The Big Chill. Gimme Some Lovin' \"\"Gimme Some Lovin'\"\" is a song written by Steve Winwood, Spencer Davis and Muff Winwood, although solely credited to Winwood on the UK single label, and performed by the"} +{"qid": "test2300", "pid": "4161814", "query": "who sings gimme some lovin in days of thunder", "answer": "Spencer Davis Group", "passage": "\"Gimme Some Lovin'\"\nGimme Some Lovin' \"\"Gimme Some Lovin'\"\" is a song written by Steve Winwood, Spencer Davis and Muff Winwood, although solely credited to Winwood on the UK single label, and performed by the Spencer Davis Group. As recalled by bassist Muff Winwood, the song was conceived, arranged, and rehearsed in just half an hour. At the time, the group was under pressure to come up with another hit, following the relatively poor showing of their previous single, \"\"When I Come Home\"\", written by Jamaican-born musician Jackie Edwards, who had also penned their earlier number one hits, \"\"Keep On Running\"\" and \"\"Somebody"} +{"qid": "test2300", "pid": "2099781", "query": "who sings gimme some lovin in days of thunder", "answer": "Spencer Davis Group", "passage": "\"Terry Reid\"\nreturned with former Yes producer Trevor Horn, on the album \"\"The Driver\"\". The album featured a cover version of the Spencer Davis Group classic written by Steve Winwood: \"\"Gimme Some Lovin'\"\", which had earlier appeared on the \"\"Days of Thunder\"\" soundtrack. \"\"The Whole of the Moon\"\", written by Mike Scott, was released as a single and received considerable airplay, with backing vocals performed by Enya. Reid played occasional live gigs with a band that included Brian Auger. In the 1990s, he also toured the US and Hong Kong with ex-Rolling Stones guitarist Mick Taylor. In 1998, \"\"Rich Kid Blues\"\" was"} +{"qid": "test2300", "pid": "10854649", "query": "who sings gimme some lovin in days of thunder", "answer": "The Spencer Davis Group", "passage": "\"Backstreet Symphony\"\nthe all-time great hard rock debuts\"\". Reviewing the album for AllMusic, Alex Henderson praised it as \"\"a decent hard rock offering that should have done better\"\". Highlighting tracks such as \"\"She's So Fine\"\", \"\"Loved Walked In\"\" and the \"\"inspired cover\"\" of The Spencer Davis Group's \"\"Gimme Some Lovin'\"\", Henderson described the album's sound as \"\"a mixture of Bad Company and Deep Purple\"\", claiming that \"\"while Thunder [weren't] the most original or groundbreaking band in the world, [they weren't] lacking when it came to spirit and enthusiasm\"\". In \"\"The Encyclopedia of Popular Music\"\", writer Colin Larkin hailed \"\"Backstreet Symphony\"\" as \"\"a"} +{"qid": "test2300", "pid": "9696850", "query": "who sings gimme some lovin in days of thunder", "answer": "Spencer Davis Group", "passage": "\"Mary McGarry Morris\"\nGrowing up, I was keenly aware of the loss my mother felt as well as the great love and admiration she had for her father, a quiet country man who raised his three children alone in those desperate times, often working day and night to support them.\"\" Morris published her seventh novel, \"\"The Last Secret\"\" (2009); in an interview on NPR, she said that the idea for it came as she was listening to the song \"\"Gimme Some Lovin',\"\" written by Steve Winwood and members of the Spencer Davis Group. \"\"The Last Secret\"\" depicts the unraveling of the life of"} +{"qid": "test2301", "pid": "18406700", "query": "who plays izabella in transformers the last knight", "answer": "Isabela Moner", "passage": "\"Transformers: The Last Knight\"\nthe state. On April 13, TheWrap reported that Isabela Moner was in talks to star as Izabella. The site also reported that Bay was eyeing Jean Dujardin, Stephen Merchant, and Jerrod Carmichael for supporting roles. On May 17, 2016, it was confirmed that Josh Duhamel would reprise his role in the film, and Jerrod Carmichael was cast. In June 2016, Anthony Hopkins, Mitch Pileggi, Santiago Cabrera, and Laura Haddock joined the cast, and Tyrese Gibson stated that he will return as Robert Epps. In August 2016, Liam Garrigan was confirmed to play King Arthur, a different version from his role"} +{"qid": "test2301", "pid": "18406725", "query": "who plays izabella in transformers the last knight", "answer": "Isabela Moner", "passage": "\"Transformers: The Last Knight\"\nsequel trilogy will continue, he stated that the franchise will make some changes in their tone and style. Transformers: The Last Knight Transformers: The Last Knight is a 2017 American science-fiction action film based on the Transformers toy line. It is the fifth installment of the live-action \"\"Transformers\"\" film series and a sequel to 2014's \"\"\"\". Like its predecessors, the film is directed by Michael Bay, and features Mark Wahlberg returning from \"\"Age of Extinction\"\", with Josh Duhamel, John Turturro, and Glenn Morshower reprising their roles from the first three films, as well as Laura Haddock, Isabela Moner, Jerrod Carmichael,"} +{"qid": "test2301", "pid": "18406683", "query": "who plays izabella in transformers the last knight", "answer": "Isabela Moner", "passage": "\"Transformers: The Last Knight\"\nTransformers: The Last Knight Transformers: The Last Knight is a 2017 American science-fiction action film based on the Transformers toy line. It is the fifth installment of the live-action \"\"Transformers\"\" film series and a sequel to 2014's \"\"\"\". Like its predecessors, the film is directed by Michael Bay, and features Mark Wahlberg returning from \"\"Age of Extinction\"\", with Josh Duhamel, John Turturro, and Glenn Morshower reprising their roles from the first three films, as well as Laura Haddock, Isabela Moner, Jerrod Carmichael, Santiago Cabrera, and Sir Anthony Hopkins all joining the cast. Bay stated this would be his final film"} +{"qid": "test2302", "pid": "1793282", "query": "how many languages in harry potter translated into", "answer": "over 74", "passage": "\"Harry Potter in translation\"\nasked Rowling about the gender of some of the characters—Zabini, Professor Sinistra, and \"\"R.A.B.\"\"—while working on her translations. Harry Potter in translation The \"\"Harry Potter\"\" series of fantasy novels by J. K. Rowling is one of the most translated series of all time, with the first book, \"\"Harry Potter and the Philosopher's Stone\"\", having been translated into over 74 languages. This includes languages diverse as Azerbaijani, Malayalam and Welsh as well as the dead languages Latin and Ancient Greek. This makes it the longest published work in Ancient Greek since the novels of Heliodorus of Emesa in the 3rd century"} +{"qid": "test2302", "pid": "1793234", "query": "how many languages in harry potter translated into", "answer": "over 74", "passage": "\"Harry Potter in translation\"\nHarry Potter in translation The \"\"Harry Potter\"\" series of fantasy novels by J. K. Rowling is one of the most translated series of all time, with the first book, \"\"Harry Potter and the Philosopher's Stone\"\", having been translated into over 74 languages. This includes languages diverse as Azerbaijani, Malayalam and Welsh as well as the dead languages Latin and Ancient Greek. This makes it the longest published work in Ancient Greek since the novels of Heliodorus of Emesa in the 3rd century AD. Additionally, regional adaptations of the books have been made to accommodate regional dialects such as the American"} +{"qid": "test2303", "pid": "18842064", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"You're My Home (Grey's Anatomy)\"\nIt showed how everyone was moving on, whether it be together or because they’re heading in new direction altogether.\"\" and deemed Caterina Scorsone \"\"phenomenal\"\". You're My Home (Grey's Anatomy) \"\"You're My Home\"\" is the 25th episode and the season finale of the eleventh season of the American television medical drama \"\"Grey's Anatomy\"\", and the 245th episode overall. It aired on May 14, 2015 on ABC in the United States. The episode was written by William Harper and directed by Rob Corn. On its initial airing the episode opened up to generally positive reviews from television critics and was watched by"} +{"qid": "test2303", "pid": "20161241", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"Grey's Anatomy (season 14)\"\ncolumn refers to the episode's number within the overall series, whereas the number in the \"\"No. in season\"\" column refers to the episode's number within this particular season. \"\"U.S. viewers in millions\"\" refers to the number of Americans in millions who watched the episodes live. Grey's Anatomy (season 14) The fourteenth season of the American television medical drama \"\"Grey's Anatomy\"\" was ordered on February 10, 2017, by American Broadcasting Company (ABC), and premiered on September 28, 2017 with a special two-hour premiere. The season consists of 24 episodes, with the season's seventh episode marking the 300th episode for the"} +{"qid": "test2303", "pid": "18742971", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"How to Save a Life (Grey's Anatomy)\"\nHow to Save a Life (Grey's Anatomy) \"\"How to Save a Life\"\" is the twenty-first episode of the eleventh season of the American television medical drama \"\"Grey's Anatomy\"\", and is the 241st episode overall. It aired on April 23, 2015 on ABC in the United States. The episode was written by showrunner Shonda Rhimes and directed by Rob Hardy, making it the first episode Rhimes has written since the season eight finale \"\"Flight\"\". The installment marked the death and final appearance of the series’ male lead character, Derek Shepherd (Patrick Dempsey), who had starred on the series since its inception."} +{"qid": "test2303", "pid": "18742990", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"How to Save a Life (Grey's Anatomy)\"\nvery important turning point in the show\"\". Optimistic of the prospects for the show, she added, \"\"if anyone can come out of this tragedy as a tougher, better character than ever, it’s Meredith Grey.\"\" How to Save a Life (Grey's Anatomy) \"\"How to Save a Life\"\" is the twenty-first episode of the eleventh season of the American television medical drama \"\"Grey's Anatomy\"\", and is the 241st episode overall. It aired on April 23, 2015 on ABC in the United States. The episode was written by showrunner Shonda Rhimes and directed by Rob Hardy, making it the first episode Rhimes has"} +{"qid": "test2303", "pid": "20161215", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"Grey's Anatomy (season 14)\"\nGrey's Anatomy (season 14) The fourteenth season of the American television medical drama \"\"Grey's Anatomy\"\" was ordered on February 10, 2017, by American Broadcasting Company (ABC), and premiered on September 28, 2017 with a special two-hour premiere. The season consists of 24 episodes, with the season's seventh episode marking the 300th episode for the series overall. The season is produced by ABC Studios, in association with Shondaland Production Company and The Mark Gordon Company; the showrunners being Krista Vernoff and William Harper. The fourteenth season is the first not to feature Jerrika Hinton as Dr. Stephanie Edwards since her introduction"} +{"qid": "test2303", "pid": "18842053", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"You're My Home (Grey's Anatomy)\"\nYou're My Home (Grey's Anatomy) \"\"You're My Home\"\" is the 25th episode and the season finale of the eleventh season of the American television medical drama \"\"Grey's Anatomy\"\", and the 245th episode overall. It aired on May 14, 2015 on ABC in the United States. The episode was written by William Harper and directed by Rob Corn. On its initial airing the episode opened up to generally positive reviews from television critics and was watched by 8.33 million viewers. With only having five minutes to get April's patient out of the car to the operating table, Stephanie’s interns have to"} +{"qid": "test2303", "pid": "4811580", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"Grey's Anatomy\"\nmagazine. The show received a renewal for a fifth season, which premiered on September 25, 2008 and concluded on May 14, 2009, consisting of twenty-four episodes. The series was renewed for a sixth season consisting of twenty-four episodes, which commenced on September 24, 2009 and ended on May 20, 2010. During its sixth season, \"\"Grey's Anatomy\"\" aired a series of webisodes entitled \"\"Seattle Grace: On Call\"\" at ABC.com. ABC renewed the show for a seventh season, which premiered on September 23, 2010 and concluded on May 19, 2011, consisting of twenty-two episodes. This was followed up with \"\"Seattle Grace: On"} +{"qid": "test2303", "pid": "18761842", "query": "how many episodes of greys anatomy season 14", "answer": "24", "passage": "\"Grey's Anatomy (season 12)\"\ntheir contracts for another two seasons, as Drs. Meredith Grey and Derek Shepherd, respectively, meaning their characters would be staying on the medical drama for seasons 11 and 12. On April 24, 2015, Patrick Dempsey revealed that he would be leaving \"\"Grey's Anatomy\"\" after the eleventh season despite having a contract through another season. Thus, this will be the first season in which Dr. Derek Shepherd, portrayed by Patrick Dempsey, is not included in the main cast of characters. Dempsey's character Dr. Derek Shepherd was killed off towards the end of the eleventh season in the episode \"\"How to Save"} +{"qid": "test2306", "pid": "15229843", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "\"History of zoology since 1859\"\nHistory of zoology since 1859 This article considers the history of zoology since the theory of evolution by natural selection proposed by Charles Darwin in 1859. Charles Darwin gave new direction to morphology and physiology, by uniting them in a common biological theory: the theory of organic evolution. The result was a reconstruction of the classification of animals upon a genealogical basis, fresh investigation of the development of animals, and early attempts to determine their genetic relationships. The end of the 19th century saw the fall of spontaneous generation and the rise of the germ theory of disease, though the"} +{"qid": "test2306", "pid": "15229898", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "\"History of zoology since 1859\"\nexperimentation, analysis, worldwide internet observational data reporting, open peer-review, collaboration, and internet publication. History of zoology since 1859 This article considers the history of zoology since the theory of evolution by natural selection proposed by Charles Darwin in 1859. Charles Darwin gave new direction to morphology and physiology, by uniting them in a common biological theory: the theory of organic evolution. The result was a reconstruction of the classification of animals upon a genealogical basis, fresh investigation of the development of animals, and early attempts to determine their genetic relationships. The end of the 19th century saw the fall of"} +{"qid": "test2306", "pid": "465885", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "Zoology\nof species. Cell theory provided a new perspective on the fundamental basis of life. These developments, as well as the results from embryology and paleontology, were synthesized in Charles Darwin's theory of evolution by natural selection. In 1859, Darwin placed the theory of organic evolution on a new footing, by his discovery of a process by which organic evolution can occur, and provided observational evidence that it had done so. Darwin gave a new direction to morphology and physiology, by uniting them in a common biological theory: the theory of organic evolution. The result was a reconstruction of the classification"} +{"qid": "test2306", "pid": "1435417", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "\"Human condition\"\nalso has various methods, e.g. the logotherapy developed by Holocaust survivor Viktor Frankl to discover and affirm human meaning. Another method, cognitive behavioral therapy, has become a widespread treatment for clinical depression. Ever since 1859, when Charles Darwin published \"\"On the Origin of Species\"\", the biological theory of evolution has been significant. The theory posits that the human species is related to all others, living and extinct, and that natural selection is the primary survival factor. This has provided a basis for new beliefs, e.g. social Darwinism, and for new technology, e.g. antibiotics. Notable uses of the term \"\"the human"} +{"qid": "test2306", "pid": "111261", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Alfred Russel Wallace", "passage": "Evolution\nbiological organisation, including the levels of species, individual organisms and molecules. The scientific theory of evolution by natural selection was proposed by Charles Darwin and Alfred Russel Wallace in the mid-19th century and was set out in detail in Darwin's book \"\"On the Origin of Species\"\" (1859). Evolution by natural selection was first demonstrated by the observation that more offspring are often produced than can possibly survive. This is followed by three observable facts about living organisms: 1) traits vary among individuals with respect to their morphology, physiology and behaviour (phenotypic variation), 2) different traits confer different rates of survival"} +{"qid": "test2306", "pid": "231664", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "\"Linnaean taxonomy\"\ntools such as cladistics and phylogenetic nomenclature has led to a different way of looking at evolution (expressed in many nested clades) and this sometimes leads to a desire for more ranks. An example of such complexity is the scheme for mammals proposed by McKenna and Bell. Over time, the understanding of the relationships between living things has changed. Linnaeus could only base his scheme on the structural similarities of the different organisms. The greatest change was the widespread acceptance of evolution as the mechanism of biological diversity and species formation, following the 1859 publication of Charles Darwin's \"\"On the"} +{"qid": "test2306", "pid": "103796", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "Darwinism\nDarwinism Darwinism is a theory of biological evolution developed by the English naturalist Charles Darwin (1809–1882) and others, stating that all species of organisms arise and develop through the natural selection of small, inherited variations that increase the individual's ability to compete, survive, and reproduce. Also called Darwinian theory, it originally included the broad concepts of transmutation of species or of evolution which gained general scientific acceptance after Darwin published \"\"On the Origin of Species\"\" in 1859, including concepts which predated Darwin's theories. It subsequently referred to the specific concepts of natural selection, the Weismann barrier, or the central dogma"} +{"qid": "test2306", "pid": "175332", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "Heredity\nscience. When Charles Darwin proposed his theory of evolution in 1859, one of its major problems was the lack of an underlying mechanism for heredity. Darwin believed in a mix of blending inheritance and the inheritance of acquired traits (pangenesis). Blending inheritance would lead to uniformity across populations in only a few generations and then would remove variation from a population on which natural selection could act. This led to Darwin adopting some Lamarckian ideas in later editions of \"\"On the Origin of Species\"\" and his later biological works. Darwin's primary approach to heredity was to outline how it appeared"} +{"qid": "test2306", "pid": "462042", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "\"William Thomson, 1st Baron Kelvin\"\nyears ago, was a red-hot globe ... .\"\" After the publication of Charles Darwin's \"\"On the Origin of Species\"\" in 1859, Thomson saw evidence of the relatively short habitable age of the Earth as tending to contradict Darwin's gradualist explanation of slow natural selection bringing about biological diversity. Thomson's own views favoured a version of theistic evolution sped up by divine guidance. His calculations showed that the Sun could not have possibly existed long enough to allow the slow incremental development by evolution – unless some energy source beyond what he or any other Victorian era person knew of was"} +{"qid": "test2306", "pid": "1854747", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "\"History of zoology through 1859\"\nthe argument from design). Over the 18th and 19th centuries, zoology became increasingly professional scientific disciplines. Explorer-naturalists such as Alexander von Humboldt investigated the interaction between organisms and their environment, and the ways this relationship depends on geography—laying the foundations for biogeography, ecology and ethology. Naturalists began to reject essentialism and consider the importance of extinction and the mutability of species. Cell theory provided a new perspective on the fundamental basis of life. These developments, as well as the results from embryology and paleontology, were synthesized in Charles Darwin's theory of evolution by natural selection. In 1859, Darwin placed the"} +{"qid": "test2306", "pid": "1577122", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "Coevolution\nsystems work best when the technical and social systems are deliberately developed together. Models of coevolution have been proposed for sociology and international political economy. Richard Norgaard's 2006 book \"\"Development Betrayed\"\" proposes a \"\"Co-Evolutionary Revisioning of the Future\"\" of social and economic life. Coevolution In biology, coevolution occurs when two or more species reciprocally affect each other's evolution. Charles Darwin mentioned evolutionary interactions between flowering plants and insects in \"\"On the Origin of Species\"\" (1859). The term coevolution was coined by Paul R. Ehrlich and Peter H. Raven in 1964. The theoretical underpinnings of coevolution are now well-developed, and demonstrate"} +{"qid": "test2306", "pid": "2730516", "query": "who proposed evolution in 1859 as the basis of biological development", "answer": "Charles Darwin", "passage": "Paleoanthropology\nthat humans are similar to certain great apes had been obvious to people for some time, but the idea of the biological evolution of species in general was not legitimized until after Charles Darwin published \"\"On the Origin of Species\"\" in 1859. Though Darwin's first book on evolution did not address the specific question of human evolution—\"\"light will be thrown on the origin of man and his history,\"\" was all Darwin wrote on the subject—the implications of evolutionary theory were clear to contemporary readers. Debates between Thomas Huxley and Richard Owen focused on the idea of human evolution. Huxley convincingly"} +{"qid": "test2308", "pid": "6651469", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "oral passage", "passage": "\"Mucosa-associated lymphoid tissue\"\nMucosa-associated lymphoid tissue The mucosa-associated lymphoid tissue (MALT), also called mucosa-associated lymphatic tissue, is a diffuse system of small concentrations of lymphoid tissue found in various submucosal membrane sites of the body, such as the gastrointestinal tract, oral passage, nasopharyngeal tract, thyroid, breast, lung, salivary glands, eye, and skin. MALT is populated by lymphocytes such as T cells and B cells, as well as plasma cells and macrophages, each of which is well situated to encounter antigens passing through the mucosal epithelium. In the case of intestinal MALT, M cells are also present, which sample antigen from the lumen and"} +{"qid": "test2308", "pid": "20220654", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "lung", "passage": "\"Bronchus-associated lymphoid tissue\"\nBronchus-associated lymphoid tissue Bronchus-associated lymphoid tissue (BALT) is a tertiary lymphoid structure and it is a part of mucosa-associated lymphoid tissue (MALT) and it consist of lymphoid follicles in lungs and bronchus. BALT is effective priming site of mucosal and systemic immune response. BALT is similar in most mammal species, but it differs in its maintenance and inducibility. While it is normal component of lungs and bronchus in rabbits or pigs, in mice or humans it appears only after infection or inflammation. In mice and humans it is thus called inducible BALT (iBALT). BALT and iBALT are structurally and functionally"} +{"qid": "test2308", "pid": "20220659", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "lung", "passage": "\"Bronchus-associated lymphoid tissue\"\noccur after other stimuli, e.g. inflammation caused by rheumatoid arthritis or other autoimmune lung disease or mechanic damage by dust particles. Bronchus-associated lymphoid tissue Bronchus-associated lymphoid tissue (BALT) is a tertiary lymphoid structure and it is a part of mucosa-associated lymphoid tissue (MALT) and it consist of lymphoid follicles in lungs and bronchus. BALT is effective priming site of mucosal and systemic immune response. BALT is similar in most mammal species, but it differs in its maintenance and inducibility. While it is normal component of lungs and bronchus in rabbits or pigs, in mice or humans it appears only after"} +{"qid": "test2308", "pid": "8425722", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "gastrointestinal tract", "passage": "\"Microfold cell\"\ntropic HIV has been noted to be able to bind to M cells and get transported across the epithelium by them. Microfold cell Microfold cells (or M cells) are found in the gut-associated lymphoid tissue (GALT) of the Peyer's patches in the small intestine, and in the mucosa-associated lymphoid tissue (MALT) of other parts of the gastrointestinal tract. These cells are known to initiate mucosal immunity responses on the apical membrane of the M cells and allow for transport of microbes and particles across the epithelial cell layer from the gut lumen to the lamina propria where interactions with immune"} +{"qid": "test2308", "pid": "8425712", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "gastrointestinal tract", "passage": "\"Microfold cell\"\nMicrofold cell Microfold cells (or M cells) are found in the gut-associated lymphoid tissue (GALT) of the Peyer's patches in the small intestine, and in the mucosa-associated lymphoid tissue (MALT) of other parts of the gastrointestinal tract. These cells are known to initiate mucosal immunity responses on the apical membrane of the M cells and allow for transport of microbes and particles across the epithelial cell layer from the gut lumen to the lamina propria where interactions with immune cells can take place. Unlike their neighbor cells, M cells have the unique ability to take up antigen from the lumen"} +{"qid": "test2308", "pid": "19927590", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "eye", "passage": "\"Nasal-associated lymphoid tissue\"\nNasal-associated lymphoid tissue Nasal- or nasopharynx- associated lymphoid tissue (NALT) represents immune system of nasal mucosa and is a part of mucosa-associated lymphoid tissue (MALT) in mammals. It protects body from airborne viruses and other infectious agents. In humans, NALT is considered analogous to Waldeyer's ring. NALT in mice is localized on cartilaginous soft palate of upper jaw, it's situated bilaterally on the posterior side of the palate. It consists mainly of lymphocytes, T cell and B cell enriched zones, follicle-associated epithelium (FAE) with epithelial M cells and some erythrocytes. M cells are typical for antigen intake from mucosa. In"} +{"qid": "test2308", "pid": "6318880", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "eye", "passage": "\"Gut-associated lymphoid tissue\"\nand mesenteric lymph nodes are sites where the immune response is started due to the presence of immune cells through the epithelial cells and the lamina propria. The GALT also includes the Peyer's patches of the small intestine, isolated lymphoid follicles present throughout the intestine and the appendix in humans. The following comprise lymphoid tissue in the gut: The Peyer's patch is an aggregate of lymphoid cells projected to the lumen of the gut which acts as a very important site for the initiation of the immune response. It forms a subepithelial dome where large number of B cell follicles"} +{"qid": "test2308", "pid": "13314104", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "eye", "passage": "\"Ocular immune system\"\ndiffuse lymphoid tissues. In the follicular form of MALT, antigens are taken up by the follicles and presented to lymphocytes by antigen presenting cells. This leads to activation of B and T cells that carry out the immune reaction. Diffuse lymphoid tissues, on the other hand, is composed mainly of interspersed effector cells. Generally, both pathways lead to activation and migration of immune cells within the mucosal tissues, including the conjunctiva. The conjunctiva covers the sclera, or whites of the eyes, as well as the insides of the eyelids and provides nutrients to underlying and surrounding tissue. The conjunctiva is"} +{"qid": "test2308", "pid": "19927595", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "eye", "passage": "\"Nasal-associated lymphoid tissue\"\nbecause it caused Bell's palsy to some patients. Thus, scientists are looking for more suitable and safe adjuvants, for expamle, Masafumi Yamamoto et al. in 1998 on mice model proved safe and efficient i.n. vaccination against \"\"Streptococcus pneumoniae\"\" and in 2002 also against influenza virus. Nasal-associated lymphoid tissue Nasal- or nasopharynx- associated lymphoid tissue (NALT) represents immune system of nasal mucosa and is a part of mucosa-associated lymphoid tissue (MALT) in mammals. It protects body from airborne viruses and other infectious agents. In humans, NALT is considered analogous to Waldeyer's ring. NALT in mice is localized on cartilaginous soft palate"} +{"qid": "test2308", "pid": "17141878", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "lung", "passage": "\"Mucosal associated invariant T cell\"\nis why they are often described as innate-like T cells in the peripheral tissue. This thymic development process is found in both mice and human MAIT cell populations. In healthy humans, MAIT cells are found in the lungs, liver, joints, blood, and mucosal tissues, such as the intestinal mucosa. In total, MAIT cells make up roughly 5% of the peripheral T cell population. MAIT cells are most common in the liver, where they usually comprise 20-40% of the T lymphocyte population. The total murine MAIT cell population is roughly ten times smaller than the human MAIT cell population. While MAIT"} +{"qid": "test2308", "pid": "2166902", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "gastrointestinal tract", "passage": "\"Palatine tonsil\"\nand the palatopharyngeal arch of the soft palate. The palatine tonsil is one of the mucosa-associated lymphoid tissues (MALT), located at the entrance to the upper respiratory and gastrointestinal tracts to protect the body from the entry of exogenous material through mucosal sites. In consequence it is a site of, and potential focus for, infections, and is one of the chief immunocompetent tissues in the oropharynx. It forms part of the Waldeyer's ring, which comprises the adenoid, the paired tubal tonsils, the paired palatine tonsils and the lingual tonsils. From the pharyngeal side, they are covered with a stratified squamous"} +{"qid": "test2308", "pid": "757467", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "gastrointestinal tract", "passage": "Kitten\nacid to benefit the development of the brain and optimization of cognition. Part of the kitten's immune system is the mucosal immune system, which is within the gastrointestinal tract. The mucosal immune system is largely responsible for coordinating proper immune responses by tolerating innocuous antigens and attacking foreign pathogens. In order to optimize kitten health and increase chances of survival, it is important to optimize the link between the gut-associated lymphoid tissue and the microbiota of the gastrointestinal tract. Lasting health and longevity can be accomplished partly through proper nutrition and establishing a healthy gut from birth through utilizing colostrum."} +{"qid": "test2308", "pid": "8593992", "query": "where are mucosal associated lymphoid tissues present in the human body and why", "answer": "eye", "passage": "\"Waldeyer's tonsillar ring\"\nlingual tonsils (in the plural), because this accumulation of lymphoid tissue consists of a number of little prominences – many smaller rounded masses. Whether to collectively call all these a single tonsil or separate tonsils is to an extent an arbitrary decision. There also normally is a good amount of mucosa-associated lymphoid tissue (MALT) present between all these tonsils (intertonsillar) around the ring, and more of this lymphoid tissue can variably be found more or less throughout at least the naso- and oropharynx. The tubual tonsils usually develops from an accumulation of lymphoid tissue in the pharyngeal tonsil. The pharyngeal"} +{"qid": "test2309", "pid": "5490746", "query": "when is the publishers clearing house sweepstakes drawing", "answer": "just after the Super Bowl", "passage": "\"Publishers Clearing House\"\njunk-mail for advertising through mass-mailings. Documents filed with the New York State Department in 1993 said that year the company mailed 220 million envelopes. Frequent buyers can receive 30-40 mailings a year. Although PCH advertises its sweepstakes along with magazine subscriptions, no purchase is necessary to enter or win. In 1995, PCH began the tradition of announcing winners of its $10 million prize just after the Super Bowl. As of 2012, $225 million in prizes have been distributed. Some of its larger prizes are for $5,000 a week for life, or $10 million. Prizes can also range from $1 Amazon"} +{"qid": "test231", "pid": "17151901", "query": "who did cora marry in once upon a time", "answer": "Henry", "passage": "\"The Miller's Daughter (Once Upon a Time)\"\nout her choice between love and power. Cora returns to her room carrying a heart in a box. Later, she meets Rumplestilskin and informs him that she did not take the king's heart, and that she is going to marry the prince instead of running away with Rumplestiltskin. The heart she removed was her own, to prevent it from being an obstacle. Rumplestiltskin tries to invoke their contract, but she points out that he only has a claim on his own child, which she will never bear. Some time later, Princess Cora presents her and Henry's daughter to the court"} +{"qid": "test231", "pid": "17151898", "query": "who did cora marry in once upon a time", "answer": "Henry", "passage": "\"The Miller's Daughter (Once Upon a Time)\"\nfinancial woes, and that she has nothing to offer him. Cora boasts that she can turn straw to gold, but will deny the king this gift because of his insults. King Xavier presents her to the ball with her claim. Cora claims she needs time to prepare, so he has her locked in a tower full of straw to spin into gold by morning; she can marry Henry if she succeeds, but will be put to death if she fails. As Cora considers jumping from the tower window, Rumplestiltskin (Robert Carlyle) appears. He demonstrates that he can spin straw into"} +{"qid": "test231", "pid": "17151897", "query": "who did cora marry in once upon a time", "answer": "Henry", "passage": "\"The Miller's Daughter (Once Upon a Time)\"\nEva, a young woman, trips Cora, causing her to spill the flour. King Xavier (Joaquim de Almeida) refuses to pay for the flour and orders Cora to beg forgiveness on her knees. That night, Cora sneaks into a masked ball held for King Xavier's son Prince Henry (Zak Santiago). She criticizes the event as an opportunity for the king to sell his son to a wealthy bride, and is overheard by Henry. The prince invites her to dance, but they are interrupted by the king, who recognizes Cora. He tells her that he is superior to her, despite his kingdom's"} +{"qid": "test231", "pid": "16843076", "query": "who did cora marry in once upon a time", "answer": "Henry", "passage": "\"Lady of the Lake (Once Upon a Time)\"\nMargaret try to figure out a way to bring the wardrobe back to the safe haven, Lancelot shows up at the last minute. Although initially happy to see him, Snow/Mary Margaret draws out her sword and exposes Lancelot as Cora, who made the mistake of mentioning Henry by name (Emma had mentioned his name to Cora, but not Lancelot). Cora then transforms back into her original form and admits that she killed Lancelot a while back and was waiting for an opportunity to join her daughter and grandson. Cora then unleashes her power on both Snow/Mary Margaret and Emma, but"} +{"qid": "test231", "pid": "17137599", "query": "who did cora marry in once upon a time", "answer": "Henry", "passage": "\"The Queen Is Dead (Once Upon a Time)\"\nnot a secret. Cora insists that Henry will be Regina's. After Johanna's funeral, David reassures Mary Margaret that they will get the dagger back before Gold returns to Storybrooke. Mary Margaret questions her \"\"good\"\" choices that have caused death and suffering over the years, and reflects that maybe it isn't Regina or Cora who needs to change, but herself. She vows to kill Cora. In New York City, Neal (Michael Raymond-James) and Henry spend time together while Emma and Mr. Gold commiserate over the trouble they are having with their respective sons. Gold asks Emma to convince Neal to come"} +{"qid": "test2310", "pid": "20686935", "query": "where does summer of the monkeys take place", "answer": "Oklahoma", "passage": "\"Summer of the Monkeys (film)\"\npoints.\"\" Summer of the Monkeys (film) Summer of the Monkeys is a 1998 American/Canadian family adventure-drama film directed by Michael Anderson based on the children's novel \"\"Summer of the Monkeys\"\" by Wilson Rawls. It stars Corey Sevier as Jay Berry Lee and Michael Ontkean and Leslie Hope as Jay Berry's parents. It also stars Katie Stuart, Don Francks, and Wilford Brimley. In the summer of the early 20th century, a group of circus monkeys escape from a circus and end up in the Oklahoma river bottoms, where the main character, Jay Berry Lee lives with his family. Weeks later, 14-year-old"} +{"qid": "test2310", "pid": "20686926", "query": "where does summer of the monkeys take place", "answer": "Oklahoma", "passage": "\"Summer of the Monkeys (film)\"\nSummer of the Monkeys (film) Summer of the Monkeys is a 1998 American/Canadian family adventure-drama film directed by Michael Anderson based on the children's novel \"\"Summer of the Monkeys\"\" by Wilson Rawls. It stars Corey Sevier as Jay Berry Lee and Michael Ontkean and Leslie Hope as Jay Berry's parents. It also stars Katie Stuart, Don Francks, and Wilford Brimley. In the summer of the early 20th century, a group of circus monkeys escape from a circus and end up in the Oklahoma river bottoms, where the main character, Jay Berry Lee lives with his family. Weeks later, 14-year-old Jay"} +{"qid": "test2311", "pid": "20200734", "query": "when does ellen's new game show start", "answer": "December 18, 2017", "passage": "\"Ellen's Game of Games\"\nEllen's Game of Games Ellen's Game of Games, also known as Game of Games and stylized as ellen's GAME OF GAMES, is an American television game show that premiered on December 18, 2017. In March 2017, NBC ordered six (later eight) hour-long episodes of the series. Ellen DeGeneres serves as host, while Stephen \"\"tWitch\"\" Boss appears as announcer/sidekick. The series is based on game segments from DeGeneres' daytime talk show, \"\"The Ellen DeGeneres Show\"\". A special preview episode aired on December 18, 2017, with the official series premiere on January 2, 2018. On January 9, 2018, NBC renewed the series"} +{"qid": "test2311", "pid": "4508445", "query": "when does ellen's new game show start", "answer": "December 18, 2017", "passage": "\"The Ellen DeGeneres Show\"\ncalled \"\"Ellen's Game of Games\"\", based on the talk show's game segments. A preview episode aired on December 18, 2017, with the official premiere airing on January 2, 2018 and is airing on Tuesdays. The first season has 8 one-hour-long episodes and the second season has 13 one-hour-long episodes and will air sometime in January 2019. The Ellen DeGeneres Show The Ellen DeGeneres Show (often shortened to Ellen and stylized as ellen) is an American television variety comedy talk show hosted by comedian Ellen DeGeneres. Debuting on September 8, 2003, it is produced by Telepictures and airs in syndication, including"} +{"qid": "test2311", "pid": "12167081", "query": "when does ellen's new game show start", "answer": "December 18, 2017", "passage": "\"Ellen DeGeneres\"\ngame show Ellen's Game of Games on NBC which is based, and expands on games played on her talk show. The series had a preview episode on December 18, 2017 with regular episodes beginning the following January. DeGeneres received wide exposure on November 4, 2001, when she hosted the televised broadcast of the Emmy Awards. Presented after two cancellations due to network concerns that a lavish ceremony following the September 11 attacks would appear insensitive, the show required a more somber tone that would also allow viewers to temporarily forget the tragedy. DeGeneres received several standing ovations for her performance"} +{"qid": "test2311", "pid": "20200738", "query": "when does ellen's new game show start", "answer": "December 18, 2017", "passage": "\"Ellen's Game of Games\"\nhosted by Grant Denyer which began on 7 October 2018. In Spain, Antena 3 will air a local version, hosted by Silvia Abril in 2018. Legend: Currently airing No longer airing Upcoming Ellen's Game of Games Ellen's Game of Games, also known as Game of Games and stylized as ellen's GAME OF GAMES, is an American television game show that premiered on December 18, 2017. In March 2017, NBC ordered six (later eight) hour-long episodes of the series. Ellen DeGeneres serves as host, while Stephen \"\"tWitch\"\" Boss appears as announcer/sidekick. The series is based on game segments from DeGeneres' daytime"} +{"qid": "test2314", "pid": "12394977", "query": "when does the boy in the striped pajamas take place", "answer": "World War II", "passage": "\"The Boy in the Striped Pyjamas (film)\"\nThe Boy in the Striped Pyjamas (film) The Boy in the Striped Pyjamas (released as The Boy in the Striped Pajamas in the United States) is a 2008 British American historical drama film set in World War II, based on John Boyne’s 2006 novel of the same name. Written and Directed by Mark Herman, produced by BBC Films and Heyday Films, and distributed by Miramax, the film stars Vera Farmiga, David Thewlis, Asa Butterfield, and Jack Scanlon. It was released on 12 September 2008 in the United Kingdom. The Holocaust drama relates the horror of a World War II Nazi"} +{"qid": "test2314", "pid": "12754357", "query": "when does the boy in the striped pajamas take place", "answer": "World War II", "passage": "\"World War II in popular culture\"\nand humility. Movies about World War II continued for the rest of the 20th century and into the 21st century, though less in number and included \"\"Schindler's List (1993 film)\"\", \"\" The boy in the Striped Pajamas (2009 film)\"\", \"\"The Thin Red Line\"\" (1998), \"\"Saving Private Ryan\"\" (1998), \"\"Flags of Our Fathers\"\" (2006) and \"\"Red Tails\"\" (2012) about the African American Air Fighter pilots of the Tuskegee Airmen. Movies and television programs about the war continued to be made into the 21st century, including the television mini-series \"\"Band of Brothers\"\", \"\"The Pacific\"\" and \"\"Dunkirk\"\". The majority of World War II"} +{"qid": "test2315", "pid": "13585708", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Primary motor cortex\"\nprimary motor cortex devoted to a body part is not proportional to the absolute size of the body surface, but, instead, to the relative density of cutaneous motor receptors on said body part. The density of cutaneous motor receptors on the body part is generally indicative of the necessary degree of precision of movement required at that body part. For this reason, the human hands and face have a much larger representation than the legs. For the discovery of the primary motor cortex and its relationship to other motor cortical areas, see the main article on the motor cortex. The"} +{"qid": "test2315", "pid": "13585715", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Primary motor cortex\"\nelbow, wrist, fingers, thumb, eyelids, lips, and jaw. The arm and hand motor area is the largest, and occupies the part of precentral gyrus between the leg and face area. These areas are not proportional to their size in the body with the lips, face parts, and hands represented by particularly large areas. Following amputation or paralysis, motor areas can shift to adopt new parts of the body. The primary motor cortex receives thalamic inputs from different thalamic nuclei. Among others: - Ventral lateral nucleus for cerebellar afferents - Ventral anterior nucleus for basal ganglia afferents At least two modifications"} +{"qid": "test2315", "pid": "589573", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Free will\"\nnetwork activation incorporating premotor association cortices together with primary motor cortex. In particular, the supplementary motor complex on the medial surface of the frontal lobe appears to activate prior to primary motor cortex presumably in associated with a preparatory pre-movement process. In a recent study using functional magnetic resonance imaging, alien movements were characterized by a relatively isolated activation of the primary motor cortex contralateral to the alien hand, while voluntary movements of the same body part included the natural activation of motor association cortex associated with the premotor process. The clinical definition requires \"\"feeling that one limb is foreign"} +{"qid": "test2315", "pid": "2708445", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Human brain\"\naction of muscles. The corticospinal tract carries movements from the brain, through the spinal cord, to the torso and limbs. The cranial nerves carry movements related to the eyes, mouth and face. Gross movement – such as locomotion and the movement of arms and legs – is generated in the motor cortex, divided into three parts: the primary motor cortex, found in the prefrontal gyrus and has sections dedicated to the movement of different body parts. These movements are supported and regulated by two other areas, lying anterior to the primary motor cortex: the premotor area and the supplementary motor"} +{"qid": "test2315", "pid": "10043543", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Somatotopic arrangement\"\nSomatotopic arrangement Somatotopy is the point-for-point correspondence of an area of the body to a specific point on the central nervous system. Typically, the area of the body corresponds to a point on the primary somatosensory cortex (postcentral gyrus). This cortex is typically represented as a sensory homunculus which orients the specific body parts and their respective locations upon the homunculus. Areas such as the appendages, digits, penis, and face can draw their sensory locations upon the somatosensory cortex. The areas which are finely controlled (e.g., the digits) have larger portions of the somatosensory cortex whereas areas which are coarsely"} +{"qid": "test2315", "pid": "8316574", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Supplementary motor area\"\nSupplementary motor area The supplementary motor area (SMA) is a part of the primate cerebral cortex that contributes to the control of movement. It is located on the midline surface of the hemisphere just in front of (anterior to) the primary motor cortex leg representation. In monkeys the SMA contains a rough map of the body. In humans the body map is not apparent. Neurons in the SMA project directly to the spinal cord and may play a role in the direct control of movement. Possible functions attributed to the SMA include the postural stabilization of the body, the coordination"} +{"qid": "test2315", "pid": "7309624", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Premotor cortex\"\nmovement, in the sensory guidance of movement, in understanding the actions of others, and in using abstract rules to perform specific tasks. Different subregions of the premotor cortex have different properties and presumably emphasize different functions. The premotor cortex occupies the part of Brodmann area 6 that lies on the lateral surface of the cerebral hemisphere. The medial extension of area 6, onto the midline surface of the hemisphere, is the site of the supplementary motor area, or SMA. The premotor cortex can be distinguished from the primary motor cortex, Brodmann area 4, just posterior to it, based on two"} +{"qid": "test2315", "pid": "5109051", "query": "which body part(s) occupy the greatest portion of the primary motor cortex", "answer": "face", "passage": "\"Upper motor neuron\"\nUpper motor neuron Upper motor neurons (UMNs) are the main source of voluntary movement. They are found in the brain and carry motor information down the spinal cord to activate the lower motor neurons, which in turn directly signal muscles to contract. They are a type of giant pyramidal cell called \"\"Betz cells\"\" and are found just below the surface of the cerebral cortex within layer V of the primary motor cortex. The cell bodies of \"\"Betz cell\"\" neurons are the largest in the brain, approaching nearly 0.1mm in diameter. The primary motor cortex, or precentral gyrus, is one of"} +{"qid": "test2316", "pid": "546995", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "Ramayana\nwritten in Central Java circa 870 AD during the reign of Mpu Sindok in the Medang Kingdom. The Javanese \"\"Kakawin Ramayana\"\" is not based on Valmiki's epic, which was then the most famous version of Rama's story, but based on \"\"Ravanavadha\"\" or the \"\"Ravana massacre\"\", which is the sixth or seventh century poem by Indian poet Bhattikavya. \"\"Kakawin Ramayana\"\" was further developed on the neighboring island of Bali becoming the Balinese \"\"Ramakavaca\"\". The bas-reliefs of Ramayana and Krishnayana scenes are carved on balustrades of the 9th century Prambanan temple in Yogyakarta, as well as in the 14th century Penataran temple"} +{"qid": "test2316", "pid": "2911070", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "\"Indian literature\"\nMarathi, Telugu and Urdu, two each in Assamese and Tamil, and one in Sanskrit. Examples of early works written in Vedic Sanskrit include the holy Hindu texts, such as the core Vedas. Other examples include the Sulba Sutras, which are some of the earliest texts on geometry.. Ved Vyasa's \"\"Mahabharata\"\" and Valmiki's \"\"Ramayana\"\", written in Epic Sanskrit, are regarded as the greatest Sanskrit epics. The famous poet and playwright Kālidāsa wrote one epic: \"\"Raghuvamsha\"\" (\"\"Dynasty of Raghu\"\") ; it was written in Classical Sanskrit rather than Epic Sanskrit. Other examples of works written in Classical Sanskrit include the Pāṇini's \"\"Ashtadhyayi\"\""} +{"qid": "test2316", "pid": "16972728", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "\"Sampoorna Ramayana\"\nSampoorna Ramayana Sampoorna Ramayana (English: \"\"The Complete Ramayana\"\") is a 1961 Hindi language Indian mythological film directed by Babubhai Mistry, based on the Hindu epic \"\"Ramayana\"\" by Valmiki, starring Mahipal and Anita Guha as Rama and Sita respectively. The film was a box office hit, and became a milestone in the history of Hindu mythology. It was the second significant Hindi film based on Rama, after Vijay Bhatt's hugely popular \"\"Ram Rajya\"\" (1943). Babubhai, known for his special effects throughout his career, made extensive use of effects to enhance dramatics. The film also made lead actor Anita Guha, who played"} +{"qid": "test2316", "pid": "4958476", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "\"Rukmini Devi Arundale\"\nelements, and innovative costumes, and jewellery inspired by the temple sculptures. Just as for her teacher she approached noted gurus in various arts and classical dances, for her productions, Rukmini Devi approached noted scholars for inspiration and classical musicians and artists, for collaboration, the result was the creation some of pioneering dance dramas-based on Indian epics like the Valmiki's Ramayana and Jayadeva's Gita Govinda. Starting with famous dance dramas like, 'Sita Swayamvaram', 'Sri Rama Vanagamanam', 'Paduka Pattabhishekam' and 'Sabari Moksham', followed by 'Kutrala Kuruvanji', 'Ramayana', 'Kumara Sambhavam', 'Gita Govindam' and 'Usha Parinayam'. Schools based on the Montessori method were first"} +{"qid": "test2316", "pid": "17833480", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "\"Ranganatha ramayan\"\nRanganatha ramayan Sri Ranganatha Ramayanam (శ్రీ రంగనాథ రామాయణం) is one of the most famous adaptions of the Valmiki \"\"Ramayana\"\" in Telugu, a Dravidian language spoken by the people of Andhra Pradesh and Telangana. Telugu has a very rich literary tradition, starting in the 11th century A.D. Although there are more than forty adaptions of the Valmiki \"\"Ramayana\"\" which are partly or completely in Telugu, only four adaptions have covered the entire theme of the original epic. They are Ranganatha Ramayana, \"\"Bhaskar Ramayana\"\", \"\"Molla Ramayana\"\", and \"\"Ramayana Kalpavriksham\"\". \"\"Ranganatha Ramayana\"\" was written by the poet Ranganatha—also known as Gona Budda Reddy—between"} +{"qid": "test2316", "pid": "12487366", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "Rama\nmore authoritative than the version by Valmiki. Versions of the \"\"Ramayana\"\" exist in most major Indian languages; examples that elaborate on the life, deeds and divine philosophies of Rama include the epic poem \"\"Ramavataram\"\", and the following vernacular versions of Rama's life story: The epic is found across India, in different languages and cultural traditions. \"\"Adhyatma Ramayana\"\" is a late medieval Sanskrit text extolling the spiritualism in the story of Ramayana. It is embedded in the latter portion of \"\"Brahmānda Purana\"\", and constitutes about a third of it. The text philosophically attempts to reconcile Bhakti in god Rama and Shaktism"} +{"qid": "test2316", "pid": "546951", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "Ramayana\nRamayana Ramayana (; , \"\"\"\" ) is an ancient Indian epic poem which narrates the struggle of the divine prince Rama to rescue his wife Sita from the demon king Ravana. Along with the \"\"Mahabharata\"\", it forms the Hindu Itihasa. The epic, traditionally ascribed to the Hindu sage Valmiki, narrates the life of Rama, the legendary prince of the Kosala Kingdom. It follows his fourteen-year exile to the forest from the kingdom, by his father King Dasharatha, on request of his second wife Kaikeyi. His travels across forests in India with his wife Sita and brother Lakshmana, the kidnapping of"} +{"qid": "test2316", "pid": "9640777", "query": "who penned the famous indian epic the ramayana", "answer": "Valmiki", "passage": "\"Arshia Sattar\"\nadharma that kills ravana. The book written by the author is not a translation of Valmiki's Ramayana, but her version of the epic, her understanding and description of events in ramayana. The book was expected to be an objective translation. Arshia Sattar Arshia Sattar (born 1960) is an Indian translator, facilitator, author, and director. Arshia Sattar obtained her PhD in South Asian Languages and Civilizations from the University of Chicago in 1990. Her doctoral advisor was Wendy Doniger, a renowned Indologist. Her abridged translations of the epic Sanskrit texts, \"\"Kathasaritsagara\"\" and Valmiki's \"\"Ramayana\"\" have both been published by Penguin Books."} +{"qid": "test2318", "pid": "13508074", "query": "who plays the dad in nanny mcphee and the big bang", "answer": "Ewan McGregor", "passage": "\"Nanny McPhee and the Big Bang\"\nRhys Ifans, Ewan McGregor, Asa Butterfield and Maggie Smith. The film was theatrically released on August 20, 2010 by Universal Pictures. The film received positive reviews from critics and it earned $93.2 million on a $35 million budget. It also received a Young Artist Award nomination for Best Performance in a Feature Film. The film was released on DVD and Blu-ray in the UK on 19 June 2010. On a farm during World War II, while her husband is away at war, Isabel Green is driven to her wits end by her hectic life. Between trying to keep the family"} +{"qid": "test2320", "pid": "2416827", "query": "who has the most receiving yards in the nfl history", "answer": "Jerry Rice", "passage": "\"Jerry Rice\"\nJerry Rice Jerry Lee Rice (born October 13, 1962) is a former American football wide receiver who played in the National Football League, primarily with the San Francisco 49ers. He is widely considered to be the greatest wide receiver in NFL history, and often called the greatest NFL player of all time. Rice is the all-time leader in most major statistical categories for wide receivers, including receptions, touchdown receptions, and receiving yards, once being the leader for total yards and touchdowns in a season. He has scored more points than any other non-kicker in NFL history with 1,256. Rice was"} +{"qid": "test2320", "pid": "10186883", "query": "who has the most receiving yards in the nfl history", "answer": "Jerry Rice", "passage": "\"Calvin Johnson\"\nrank third in a player's first nine seasons, trailing only Torry Holt (11,864) and Jerry Rice (11,776). Since Johnson was drafted by the Lions with the second overall pick in the 2007 NFL Draft, no player has more receiving yards, receiving touchdowns, and 100-yard games (46) than Johnson through the 2015 season. His 5,137 receiving yards from 2011 to 2013 are the most by any player over a three-year stretch in NFL history. On August 30, 2016, Johnson was announced as one of the celebrities who would compete on season 23 of \"\"Dancing with the Stars\"\". He was partnered with"} +{"qid": "test2320", "pid": "7096941", "query": "who has the most receiving yards in the nfl history", "answer": "Jerry Rice", "passage": "\"Halfback (American football)\"\nreceivers and defensive backs, such as cornerbacks (because they are generally the fastest players on the team), some halfbacks have enough speed and talent to perform this role. The NFL's current all-time leading in kickoff return yards (14,014 yards) and punt return yards (4,999) by a halfback is Brian Mitchell. He also gained 1,967 rushing yards, 2,336 receiving yards, and 15 fumble return yards, giving him a total of 23,330 all-purpose yards, the second most in NFL history behind Jerry Rice. A halfback, typically a back-up, can also play upback, which is a blocking back who lines up approximately 1–3"} +{"qid": "test2323", "pid": "2327809", "query": "what happens when an air mass is pushed up and over a mountain range", "answer": "Orographic lift", "passage": "\"Orographic lift\"\nOrographic lift Orographic lift occurs when an air mass is forced from a low elevation to a higher elevation as it moves over rising terrain. As the air mass gains altitude it quickly cools down adiabatically, which can raise the relative humidity to 100% and create clouds and, under the right conditions, precipitation. Precipitation induced by orographic lift occurs in many places throughout the world. Examples include: The highest precipitation amounts are found slightly upwind from the prevailing winds at the crests of mountain ranges, where they relieve and therefore the upward lifting is greatest. As the air descends the"} +{"qid": "test2323", "pid": "2327812", "query": "what happens when an air mass is pushed up and over a mountain range", "answer": "Orographic lift", "passage": "\"Orographic lift\"\ncan create a variety of cloud effects. Orographic lift Orographic lift occurs when an air mass is forced from a low elevation to a higher elevation as it moves over rising terrain. As the air mass gains altitude it quickly cools down adiabatically, which can raise the relative humidity to 100% and create clouds and, under the right conditions, precipitation. Precipitation induced by orographic lift occurs in many places throughout the world. Examples include: The highest precipitation amounts are found slightly upwind from the prevailing winds at the crests of mountain ranges, where they relieve and therefore the upward lifting"} +{"qid": "test2323", "pid": "2327810", "query": "what happens when an air mass is pushed up and over a mountain range", "answer": "Orographic lift", "passage": "\"Orographic lift\"\nlee side of the mountain, it warms and dries, creating a rain shadow. On the lee side of the mountains, sometimes as little as 15 miles (25 km) away from high precipitation zones, annual precipitation can be as low as 8 inches (200 mm) per year. Areas where this effect is observed include: Downslope winds occur on the leeward side of mountain barriers when a stable air mass is carried over the mountain by strong winds that increase in strength with height. Moisture is removed and latent heat released as the air mass is orographically lifted. As the air mass"} +{"qid": "test2323", "pid": "12367907", "query": "what happens when an air mass is pushed up and over a mountain range", "answer": "Orographic lift", "passage": "Desert\nsimilar. They occur in regions where large temperature differences occur between sea and land. Moist warm air rises over the land, deposits its water content and circulates back to sea. Further inland, areas receive very little precipitation. The Thar Desert near the India/Pakistan border is of this type. In some parts of the world, deserts are created by a rain shadow effect. Orographic lift occurs as air masses rise to pass over high ground. In the process they cool and lose much of their moisture by precipitation on the windward slope of the mountain range. When they descend on the"} +{"qid": "test2325", "pid": "573243", "query": "who created the convention on the rights of the child", "answer": "The United Nations", "passage": "\"Convention on the Rights of the Child\"\nConvention on the Rights of the Child The United Nations Convention on the Rights of the Child (commonly abbreviated as the CRC or UNCRC) is a human rights treaty which sets out the civil, political, economic, social, health and cultural rights of children. The Convention defines a child as any human being under the age of eighteen, unless the age of majority is attained earlier under national legislation. Nations that ratify this convention are bound to it by international law. Compliance is monitored by the UN Committee on the Rights of the Child, which is composed of members from countries"} +{"qid": "test2325", "pid": "3225881", "query": "who created the convention on the rights of the child", "answer": "The United Nations", "passage": "\"Children's rights\"\nA variety of enforcement organizations and mechanisms exist to ensure children's rights. They include the Child Rights Caucus for the United Nations General Assembly Special Session on Children. It was set up to promote full implementation and compliance with the Convention on the Rights of the Child, and to ensure that child rights were given priority during the UN General Assembly Special Session on Children and its Preparatory process. The United Nations Human Rights Council was created \"\"with the hope that it could be more objective, credible and efficient in denouncing human rights violations worldwide than the highly politicized Commission"} +{"qid": "test2325", "pid": "573275", "query": "who created the convention on the rights of the child", "answer": "The United Nations", "passage": "\"Convention on the Rights of the Child\"\nthird, the Optional Protocol to the Convention on the Rights of the Child on a Communications Procedure, which would allow children or their representatives to file individual complaints for violation of the rights of children, was adopted in December 2011 and opened for signature on 28 February 2012. The protocol currently has 51 signatures and 45 ratifications: it entered into force on 14 April 2014 following the tenth ratification three months beforehand. Convention on the Rights of the Child The United Nations Convention on the Rights of the Child (commonly abbreviated as the CRC or UNCRC) is a human rights"} +{"qid": "test2327", "pid": "1811616", "query": "who won the most mvp awards in the nba", "answer": "Kareem Abdul-Jabbar", "passage": "\"LeBron James\"\n14 All-NBA teams, which is tied for the fourth-most in league history, and 12 All-NBA first teams, which is an NBA record. With four MVP awards, he is part of a select group of players who have won the award four times, including Kareem Abdul-Jabbar, Wilt Chamberlain, Michael Jordan, and Bill Russell; James and Russell are the only players to win four MVP awards in a five-year span. James has also won three Finals MVP Awards, which is tied for the second-most all-time, and earned All-Defensive honors every season from 2009 to 2014. While he has never won the Defensive"} +{"qid": "test2327", "pid": "11467459", "query": "who won the most mvp awards in the nba", "answer": "Kareem Abdul-Jabbar", "passage": "\"NBA All-Star Game Most Valuable Player Award\"\nMacauley (1951), Cousy (1957), Pettit (1958, 1962), Chamberlain (1960), Adrian Smith (1966), Rick Barry (1967), Jerry West (1972), Tom Chambers (1987), Jordan (1988), Karl Malone (1993), John Stockton (1993), O'Neal (2004, 2009), Bryant (2011) and Davis (2017); Pettit and O'Neal did this multiple times. Kareem Abdul-Jabbar has the distinction of playing in the most All-Star Games (18) without winning the All-Star Game MVP, while Adrian Smith won the MVP in his only All-Star Game. NBA All-Star Game Most Valuable Player Award The National Basketball Association All-Star Game Most Valuable Player (MVP) is an annual National Basketball Association (NBA) award given"} +{"qid": "test2327", "pid": "804013", "query": "who won the most mvp awards in the nba", "answer": "Kareem Abdul-Jabbar", "passage": "\"Los Angeles Lakers\"\nLos Angeles made the NBA Finals six times in the 1960s, but lost each series to the Celtics, beginning their long and storied rivalry. In 1968, the Lakers acquired four-time NBA Most Valuable Player (MVP) Wilt Chamberlain, and won their sixth NBA title—and first in Los Angeles—in 1972, led by new head coach Bill Sharman. After the retirement of West and Chamberlain, the team acquired Kareem Abdul-Jabbar, who also won multiple MVP awards, but was unable to make the Finals in the late 1970s. The 1980s Lakers were nicknamed \"\"Showtime\"\" due to their fast break-offense led by Magic Johnson. The"} +{"qid": "test2327", "pid": "5571988", "query": "who won the most mvp awards in the nba", "answer": "Kareem Abdul-Jabbar", "passage": "\"Sports in the United States\"\nErving (won MVP awards in both the ABA and NBA), Kareem Abdul-Jabbar (6 time MVP), Magic Johnson (3 time MVP), Larry Bird (3 time MVP), Michael Jordan (6 time finals MVP), John Stockton (#1 in career assists and steals), Karl Malone (14 time all NBA team), Kobe Bryant (NBA's third all-time leading scorer), Tim Duncan (15-time NBA all-star), Shaquille O'Neal (3 time finals MVP) and Jason Kidd (#2 in career assists and steals). Notable players in the NBA today include LeBron James (4 MVP awards), Stephen Curry (2 time MVP), Dwyane Wade (10 time all-star), and Kevin Durant (MVP, 4"} +{"qid": "test2332", "pid": "2054268", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "Shalom\nShalom Shalom ( \"\"shalom\"\"; also spelled as \"\"sholom\"\", \"\"sholem\"\", \"\"sholoim\"\", \"\"shulem\"\") is a Hebrew word meaning \"\"peace\"\", \"\"harmony\"\", \"\"wholeness\"\", \"\"completeness\"\", \"\"prosperity\"\", \"\"welfare\"\" and \"\"tranquility\"\" and can be used idiomatically to mean both \"\"hello\"\" and \"\"goodbye\"\". As it does in English, it can refer to either peace between two entities (especially between man and God or between two countries), or to the well-being, welfare or safety of an individual or a group of individuals. The word shalom is also found in many other expressions and names. Its equivalent cognate in Arabic is \"\"salaam\"\", \"\"sliem\"\" in Maltese, Shlama in Syriac-Assyrian and \"\"sälam\"\""} +{"qid": "test2332", "pid": "2054272", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "Shalom\nwhole Torah was given in order to promote peace in the world, as it is stated, 'Her ways are pleasant ways and all her paths are peace'\"\". In the book \"\"Not the Way It's Supposed to Be: A Breviary of Sin\"\", author Cornelius Plantinga described the Old Testament concept of shalom: The webbing together of God, humans, and all creation in justice, fulfillment, and delight is what the Hebrew prophets call shalom. We call it peace but it means far more than mere peace of mind or a cease-fire between enemies. In the Bible, shalom means universal flourishing, wholeness and"} +{"qid": "test2332", "pid": "333485", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "Peace\nLatin \"\"pax\"\", meaning \"\"peace, compact, agreement, treaty of peace, tranquility, absence of hostility, harmony.\"\" The English word came into use in various personal greetings from c.1300 as a translation of the Hebrew word shalom, which, according to Jewish theology, comes from a Hebrew verb meaning 'to be complete, whole'. Although 'peace' is the usual translation, however, it is an incomplete one, because 'shalom,' which is also cognate with the Arabic \"\"salaam\"\", has multiple other meanings in addition to peace, including justice, good health, safety, well-being, prosperity, equity, security, good fortune, and friendliness, as well as simply the greetings, \"\"hello\"\" and"} +{"qid": "test2332", "pid": "2054269", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "Shalom\nin Ethiopian Semitic languages from the Proto-Semitic root Š-L-M. In Hebrew, words are built on \"\"roots\"\", generally of three consonants. When the root consonants appear with various vowels and additional letters, a variety of words, often with some relation in meaning, can be formed from a single root. Thus from the root \"\"sh-l-m\"\" come the words \"\"shalom\"\" (\"\"peace, well-being\"\"), \"\"hishtalem\"\" (\"\"it was worth it\"\"), \"\"shulam\"\" (\"\"was paid for\"\"), \"\"meshulam\"\" (\"\"paid for in advance\"\"), \"\"mushlam\"\" (\"\"perfect\"\"), and \"\"shalem\"\" (\"\"whole\"\"). In translations of the Bible, \"\"shalom\"\" may be translated as \"\"peace\"\" (English), \"\"paz\"\" (Spanish and Portuguese), \"\"paix\"\" (French), \"\"pace\"\" (Italian), or \"\"pax\"\""} +{"qid": "test2332", "pid": "2054270", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "Shalom\n(Latin). The concept of peace is important in Christianity. Biblically, \"\"shalom\"\" is seen in reference to the well-being of others (Genesis 43:27, Exodus 4:18), to treaties (I Kings 5:12), and in prayer for the wellbeing of cities or nations (Psalm 122:6, Jeremiah 29:7). The meaning of completeness, central to the term \"\"shalom\"\", can also be confirmed in related terms found in other Semitic languages. The Assyrian term \"\"salamu\"\" means to be complete, unharmed, paid/atoned. \"\"Sulmu\"\", another Assyrian term, means welfare. A closer relation to the idea of \"\"shalom\"\" as concept and action is seen in the Arabic root \"\"salaam\"\", meaning"} +{"qid": "test2332", "pid": "8371881", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Catholic peace traditions\"\npersonal and social works of justice. The Greek word for peace is \"\"eirene\"\"; Roman \"\"pax\"\", and in the Hebrew Bible, \"\"shalom\"\". For the earliest Romans, \"\"pax\"\" meant to live in a state of agreement, where discord and war were absent. In his \"\"Meditations\"\", or \"\"To Himself,\"\" the Roman Emperor Marcus Aurelius expresses peace as a state of unperturbed tranquility. The English word \"\"peace\"\" derives ultimately from its root, the Latin \"\"pax\"\". Shalom () is the word for peace in the Hebrew Bible (\"\"Tanakh\"\" or ), and has other meanings also pertaining to well being, including use as a greeting. The"} +{"qid": "test2332", "pid": "1974032", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Peace symbols\"\nUnited Nations on June 8, 1954. The symbolic bell of peace was donated by Japan to the United Nations at a time when Japan had not yet been officially admitted to the United Nations. The Japanese Peace Bell was presented to the United Nations by the United Nations Association of Japan. A wordmark of the three words, Hebrew word \"\"shalom\"\" (Hebrew: ), together with the Arabic \"\"salaam\"\" (Arabic: ) and the English word \"\"peace\"\" has been used as a peace symbol in the Middle East. \"\"Shalom\"\" and \"\"salaam\"\" mean \"\"peace\"\" and are cognates of each other, derived from the Semitic"} +{"qid": "test2332", "pid": "2054274", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "Shalom\nmodern Hebrew in Israel, as a given name or a surname. It is usually used by men as a given name but there are women named Shalom as well such as the model Shalom Harlow. \"\"Shalom\"\" can be part of an organization's name. For example, the names of the following organizations and places refer to \"\"peace\"\" between Israel and its Arab neighbors: \"\"Shalom\"\" is used as part of other names, such as for synagogues, as in: Shalom Shalom ( \"\"shalom\"\"; also spelled as \"\"sholom\"\", \"\"sholem\"\", \"\"sholoim\"\", \"\"shulem\"\") is a Hebrew word meaning \"\"peace\"\", \"\"harmony\"\", \"\"wholeness\"\", \"\"completeness\"\", \"\"prosperity\"\", \"\"welfare\"\" and \"\"tranquility\"\""} +{"qid": "test2332", "pid": "13003906", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Shalom Rav\"\nthe world. In many Jewish congregations, the cantor and congregation will sing the version of Shalom Rav by Ben Steinberg. The sheet music can be found in the Reform movement's \"\"Shaarei Shira\"\" Gates of Song book, at least in the 1987 edition. Shalom rav al yisrael amcha tasim le-olam Ki atta hu melech adon le-chol ha-shalom Ve-tov be-eynecha le-varech es am-kha yisrael Be-chol es u-ve-chol sha’a bi-shlomecha Baruch atta [Hashem] Ha-mevarech es amo yisrael ba-shalom == English Translation of Shalom Grant abundant peace over Israel, Your people, forever. For You are the sovereign source of all peace. So may it"} +{"qid": "test2332", "pid": "1659944", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Shalom aleichem\"\nShalom aleichem Shalom aleichem (; \"\"shālôm ʻalêḵem\"\") is a spoken greeting in Hebrew, meaning \"\"peace be upon you.\"\" The appropriate response is \"\"aleichem shalom\"\" (\"\"unto you peace\"\") (). This form of greeting is traditional among Jews throughout the world. It occurs six times in the Jerusalem Talmud. The greeting is more common amongst Ashkenazi Jews. Only the plural form \"\"\"\" is used even when addressing one person. A religious explanation for this is that one greets both the body and the soul, but Hebrew does occasionally use the plural as a sign of respect (e.g. a name of God is"} +{"qid": "test2332", "pid": "1659947", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Shalom aleichem\"\nwith you.\"\" The same is true of some Presbyterian and Reformed churches, such as the Presbyterian Church. Shalom aleichem Shalom aleichem (; \"\"shālôm ʻalêḵem\"\") is a spoken greeting in Hebrew, meaning \"\"peace be upon you.\"\" The appropriate response is \"\"aleichem shalom\"\" (\"\"unto you peace\"\") (). This form of greeting is traditional among Jews throughout the world. It occurs six times in the Jerusalem Talmud. The greeting is more common amongst Ashkenazi Jews. Only the plural form \"\"\"\" is used even when addressing one person. A religious explanation for this is that one greets both the body and the soul, but"} +{"qid": "test2332", "pid": "17019070", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Shabbat Shalom (NCIS)\"\nexpresses doubt over his sincerity. Meanwhile, the team investigates the death of a man dressed in a petty officer's uniform whose body was found in a lake. \"\"Shabbat Shalom\"\" is part of a two-episode story arc, followed by \"\"Shiva\"\", in which two recurring characters (Eli David and Jackie Vance) were killed off in a single shootout. It also sets in motion a long-term storyline leading up to the \"\"NCIS\"\" season finale. \"\"Shabbat Shalom\"\" was the first \"\"NCIS\"\" episode of 2013 and was received with mostly positive reviews. \"\"Shabbat shalom\"\" (שַׁבָּת שָׁלוֹם), which literally means \"\"a peaceful Sabbath\"\" in Hebrew, is"} +{"qid": "test2332", "pid": "8989920", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Slaughter offering\"\npouring out broth, made from the meat of the sacrifice, as a libation. Slaughter offering A slaughter offering in the Hebrew Bible () is a type of Jewish animal sacrifice. The term specifically refers to the slaughter of an animal to God followed by a feast or a meal. This is distinguished from the burnt offering, shechita, guilt offering, sin offering, \"\"korban\"\" sacrifice, and the gift offering (Hebrew \"\"minchah\"\"). A common subcategory of this is the peace offering (Hebrew: \"\"Zevaḥ shelamim\"\"). Although \"\"shelamim\"\" is usually translated into English as \"\"peace-offering\"\", the Hebrew word \"\"shalom\"\" means much more than the English"} +{"qid": "test2332", "pid": "8989912", "query": "what is the meaning of shalom in english", "answer": "peace", "passage": "\"Slaughter offering\"\nSlaughter offering A slaughter offering in the Hebrew Bible () is a type of Jewish animal sacrifice. The term specifically refers to the slaughter of an animal to God followed by a feast or a meal. This is distinguished from the burnt offering, shechita, guilt offering, sin offering, \"\"korban\"\" sacrifice, and the gift offering (Hebrew \"\"minchah\"\"). A common subcategory of this is the peace offering (Hebrew: \"\"Zevaḥ shelamim\"\"). Although \"\"shelamim\"\" is usually translated into English as \"\"peace-offering\"\", the Hebrew word \"\"shalom\"\" means much more than the English word \"\"peace\"\", and includes the concepts of harmony, health, and prosperity. The Hebrew"} +{"qid": "test2333", "pid": "7498599", "query": "where did the tea come from in the boston tea party", "answer": "England", "passage": "\"Boston Tea Party\"\nrequired colonists to import their tea only from Great Britain. The East India Company did not export tea to the colonies; by law, the company was required to sell its tea wholesale at auctions in England. British firms bought this tea and exported it to the colonies, where they resold it to merchants in Boston, New York, Philadelphia, and Charleston. Until 1767, the East India Company paid an \"\"ad valorem\"\" tax of about 25% on tea that it imported into Great Britain. Parliament laid additional taxes on tea sold for consumption in Britain. These high taxes, combined with the fact"} +{"qid": "test2333", "pid": "7498594", "query": "where did the tea come from in the boston tea party", "answer": "East India Company", "passage": "\"Boston Tea Party\"\nBoston Tea Party The Boston Tea Party was a political and mercantile protest by the Sons of Liberty in Boston, Massachusetts, on December 16, 1773. The target was the Tea Act of May 10, 1773, which allowed the British East India company to sell tea from China in American colonies without paying taxes apart from those imposed by the Townshend Acts. American Patriots strongly opposed the taxes in the Townshend Act as a violation of their rights. Demonstrators, some disguised as Native Americans, destroyed an entire shipment of tea sent by the East India Company. They boarded the ships and"} +{"qid": "test2333", "pid": "13822541", "query": "where did the tea come from in the boston tea party", "answer": "East India Company", "passage": "Boston\nParty, where a group of rebels threw an entire shipment of tea sent by the British East India Company into Boston Harbor. The Boston Tea Party was a key event leading up to the revolution, as the British government responded furiously with the Intolerable Acts, demanding compensation for the lost tea from the rebels. This angered the colonists further and led to the American Revolutionary War. The war began in the area surrounding Boston with the Battles of Lexington and Concord. Boston itself was besieged for almost a year during the Siege of Boston, which began on April 19, 1775."} +{"qid": "test2333", "pid": "7498603", "query": "where did the tea come from in the boston tea party", "answer": "England", "passage": "\"Boston Tea Party\"\nbut in the 1766 Declaratory Act, Parliament continued to insist that it had the right to legislate for the colonies \"\"in all cases whatsoever\"\". When new taxes were levied in the Townshend Revenue Act of 1767, Whig colonists again responded with protests and boycotts. Merchants organized a non-importation agreement, and many colonists pledged to abstain from drinking British tea, with activists in New England promoting alternatives, such as domestic Labrador tea. Smuggling continued apace, especially in New York and Philadelphia, where tea smuggling had always been more extensive than in Boston. Dutied British tea continued to be imported into Boston,"} +{"qid": "test2333", "pid": "12669690", "query": "where did the tea come from in the boston tea party", "answer": "England", "passage": "\"Philadelphia Tea Party\"\nrefitted the \"\"Polly\"\" with food and water and sailed it back to Britain, still laden with its cargo of tea. Perhaps due to the Quaker influence in Philadelphia, the \"\"Philadelphia Tea Party\"\" was relatively nonviolent and did not cause loss to any innocent merchants, since no tea was destroyed. In fact, local merchants may have even helped Captain Ayres with his expenses in returning to England. Restrained as it was compared to Boston's, the Philadelphia Tea Party was one of the incidents that led to the calling of the Continental Congress at Carpenters' Hall in Philadelphia the following September. Furthermore,"} +{"qid": "test2333", "pid": "6748196", "query": "where did the tea come from in the boston tea party", "answer": "East India Company", "passage": "\"History of Massachusetts\"\n1773, when a tea ship of the East India Company was planning to land taxed tea in Boston, a group of local men known as the Sons of Liberty sneaked onto the boat the night before it was to be unloaded and dumped all the tea into the harbor, an act known as the Boston Tea Party. The Boston Tea Party prompted the British government to pass the Intolerable Acts in 1774 that brought stiff punishment on Massachusetts. They closed the port of Boston, the economic lifeblood of the Commonwealth, and reduced self-government. Local self-government was ended and the colony"} +{"qid": "test2333", "pid": "11182412", "query": "where did the tea come from in the boston tea party", "answer": "England", "passage": "\"Boston Tea Party (concert venue)\"\nYears After and Sly and the Family Stone. In 1968 the first album rock FM station in Boston, WBCN, began broadcasting out of the back room of the Tea Party and went on to be the highest rated rock station in the market. WBCN was owned by the same owners as the Tea Party. In 1968 Don Law assumed the management of the Tea Party and Law began bringing it major acts from England. The cost of admission at the time ranged between $3.00 and $3.50 per show, although The Who exacted a premium for their performance of \"\"Tommy\"\", charging"} +{"qid": "test2334", "pid": "546012", "query": "why the hole in the ozone layer over antarctica", "answer": "CFCs", "passage": "\"Ozone depletion\"\nwidely reported in the press. The especially rapid ozone depletion in Antarctica had previously been dismissed as a measurement error. Scientific consensus was established after regulation. While the Antarctic ozone hole has a relatively small effect on global ozone, the hole has generated a great deal of public interest because: Since the ozone layer absorbs UVB ultraviolet light from the sun, ozone layer depletion increases surface UVB levels (all else equal), which could lead to damage, including increase in skin cancer. This was the reason for the Montreal Protocol. Although decreases in stratospheric ozone are well-tied to CFCs and to"} +{"qid": "test2334", "pid": "11886285", "query": "why the hole in the ozone layer over antarctica", "answer": "CFCs", "passage": "\"Environmental policy of the United States\"\nfrom the sun. Chlorofluorocarbons (CFCs), which were used beginning in the 1930s in a number of important areas, were determined in 1974 to be responsible for much of the depletion of the ozone layer. Four years later, the EPA and FDA banned CFCs in aerosol cans. As research in the 1980s indicated that the problem was worse than before, and revealed a controversial massive hole in the ozone layer over Antarctica, three international agreements were made to reduce the ozone-damaging substances- the Vienna Convention, the 1987 Montreal Protocol, and a third agreement in 1990 in London. In the United States,"} +{"qid": "test2334", "pid": "12368999", "query": "why the hole in the ozone layer over antarctica", "answer": "CFCs", "passage": "Antarctica\nEarth. Antarctic ice serves as both the shield and the detection medium for the largest neutrino telescope in the world, built below Amundsen–Scott station. Since the 1970s an important focus of study has been the ozone layer in the atmosphere above Antarctica. In 1985, three British scientists working on data they had gathered at Halley Station on the Brunt Ice Shelf discovered the existence of a hole in this layer. It was eventually determined that the destruction of the ozone was caused by chlorofluorocarbons (CFCs) emitted by human products. With the ban of CFCs in the Montreal Protocol of 1989,"} +{"qid": "test2334", "pid": "12369017", "query": "why the hole in the ozone layer over antarctica", "answer": "CFCs", "passage": "Antarctica\ndetected by scientists in 1985 and has tended to increase over the years of observation. The ozone hole is attributed to the emission of chlorofluorocarbons or CFCs into the atmosphere, which decompose the ozone into other gases. Some scientific studies suggest that ozone depletion may have a dominant role in governing climatic change in Antarctica (and a wider area of the Southern Hemisphere). Ozone absorbs large amounts of ultraviolet radiation in the stratosphere. Ozone depletion over Antarctica can cause a cooling of around 6 °C in the local stratosphere. This cooling has the effect of intensifying the westerly winds which"} +{"qid": "test2334", "pid": "307055", "query": "why the hole in the ozone layer over antarctica", "answer": "chlorine", "passage": "\"Ozone layer\"\nof April and May and lowest in October. While the total amount of ozone increases moving from the tropics to higher latitudes, the concentrations are greater in high northern latitudes than in high southern latitudes, due to the ozone hole phenomenon. The highest amounts of ozone are found over the Arctic during the spring months of March and April, but the Antarctic has their lowest amounts of ozone during their summer months of September and October, The ozone layer can be depleted by free radical catalysts, including nitric oxide (NO), nitrous oxide (NO), hydroxyl (OH), atomic chlorine (Cl), and atomic"} +{"qid": "test2334", "pid": "546065", "query": "why the hole in the ozone layer over antarctica", "answer": "CFCs", "passage": "\"Ozone depletion\"\nlow winter values, by as much as 50 percent, and normal values are not reached again until December. Some people thought that the ozone hole should be above the sources of CFCs. However, CFCs are well mixed globally in the troposphere and stratosphere. The reason for occurrence of the ozone hole above Antarctica is not because there are more CFCs concentrated but because the low temperatures help form polar stratospheric clouds. In fact, there are findings of significant and localized \"\"ozone holes\"\" above other parts of the earth. In 1994, the United Nations General Assembly voted to designate September 16"} +{"qid": "test2334", "pid": "2379213", "query": "why the hole in the ozone layer over antarctica", "answer": "CFCs", "passage": "\"Nimbus program\"\nNimbus 7 satellite observations accumulated between 1978 and 1994, it became increasingly clear that CFCs were creating an ozone hole each winter season over Antarctica. Not only that, but despite some year-to-year variations, it appeared the hole was becoming larger. The Nimbus measurements made clear how severe the ozone hole problem was. Nimbus satellites collected orbital data on the extent of the polar caps in the mid-1960s, recorded in the visible and infrared parts of the spectrum. These first global snapshots of Earth's icecaps provide invaluable reference points for climate change studies. During a narrowing window of opportunity for data"} +{"qid": "test2334", "pid": "546051", "query": "why the hole in the ozone layer over antarctica", "answer": "chlorine", "passage": "\"Ozone depletion\"\non the surface of the cloud crystals is far different from when it occurs in atmosphere. These conditions have led to ozone hole formation in Antarctica. This hypothesis was decisively confirmed, first by laboratory measurements and subsequently by direct measurements, from the ground and from high-altitude airplanes, of very high concentrations of chlorine monoxide (ClO) in the Antarctic stratosphere. Alternative hypotheses, which had attributed the ozone hole to variations in solar UV radiation or to changes in atmospheric circulation patterns, were also tested and shown to be untenable. Meanwhile, analysis of ozone measurements from the worldwide network of ground-based Dobson"} +{"qid": "test2335", "pid": "436915", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Geography of Ukraine\"\nHungary in the west, Belarus in the north, Moldova and Romania in the south-west and Russia in the east. The total geographic area of Ukraine is . The land border of Ukraine totals . The border lengths with each country are: Belarus , Hungary , Moldova , Poland , Romania on the south and on the west, Russia , and Slovakia . Ukraine is also bordered by of coastline. The border with Russia is the country's longest border - it runs in part through the Sea of Azov. Most of its territory lies within the Great European Plain, while parts"} +{"qid": "test2335", "pid": "12622255", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Belarus–Ukraine relations\"\nRussians. Today, the two countries share an 891–km border. Belarus has an embassy in Kiev and an honorary consulate in Lviv. Ukraine has an embassy in Minsk and a general consulate in Brest. Both countries are full members of the Baku Initiative and Central European Initiative. An agreement on the state border between Belarus and Ukraine signed in 1997 was to be submitted to the Belarusian parliament for ratification after Belarusian President Alexander Lukashenko and former Ukrainian President Viktor Yushchenko finished the process of the formalization of the border issues between the two states early November 2009. Belarus–Ukraine relations Belarus–Ukraine"} +{"qid": "test2335", "pid": "9952213", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Borders of Poland\"\nuse and the controls are no longer allowed by the Schengen agreement. with Germany with the Chech Republic with Slovakia with Lithuania Historically, Poland also had borders (and border crossings) with former countries, or with countries that no longer share a common border with Poland: with Ukraine with Belarus with Russia Borders of Poland The \"\"'Borders of Poland\"\" are 3511 or 3582 kilometers long. The neighboring countries are Germany to the west, the Czech Republic and Slovakia to the south, Ukraine and Belarus to the east, and Lithuania and the Russian province of Kaliningrad Oblast to the northeast. To the"} +{"qid": "test2335", "pid": "36392", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "Belarus\nthat linked to the Lattelecom, TEO LT, Tata Communications (former Teleglobe), Synterra, Rostelecom, Transtelekom and MTS ISP's. Beltelecom is the only operator licensed to provide commercial VoIP services in Belarus. Belarus has four UNESCO-designated World Heritage Sites: the Mir Castle Complex, the Nesvizh Castle, the Belovezhskaya Pushcha (shared with Poland), and the Struve Geodetic Arc (shared with nine other countries). Belarus Belarus (; , ), officially the Republic of Belarus (, ), formerly known by its Russian name Byelorussia or Belorussia (), is a landlocked country in Eastern Europe bordered by Russia to the northeast, Ukraine to the south, Poland"} +{"qid": "test2335", "pid": "15482939", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"State Border of Ukraine\"\nborder was officially established by the Law of Ukraine \"\"On Legal Succession of Ukraine\"\" (September 12, 1991) and \"\"On State Border of Ukraine\"\" (November 4, 1991). On 1 January 2018 Ukraine introduced biometric controls for Russians entering the country. On 22 March 2018 Ukrainian President Petro Poroshenko signed a decree that required Russian citizens and \"\"individuals without citizenship, who come from migration risk countries” (more details were not given) to notify the Ukrainian authorities in advance about their reason for travelling to Ukraine. Ukraine borders with seven countries: Poland, Slovakia, Hungary, Romania, Moldova, Russia, and Belarus. The total length of"} +{"qid": "test2335", "pid": "10744975", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Söderköping Process\"\nSöderköping Process Söderköping Process / Cross-Border Co-operation Process (CBCP) is an initiative launched in 2001 to coordinate the cross-border cooperation issues of asylum, migration, and border management for the countries by the Eastern border of the European Union (Söderköping countries): Belarus (2001), Estonia (observer, as of 2007), Hungary (2003), Latvia (2002), Lithuania (2001), Moldova (2002), Poland (2001), Romania (2003), Slovakia (2003), and Ukraine (2001). It is named after Söderköping, Sweden, where the first meeting took place on the initiative of the United Nations High Commissioner for Refugees (UNHCR) and the Swedish Migration Board. The process is financed by the EU"} +{"qid": "test2335", "pid": "12622254", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Belarus–Ukraine relations\"\nBelarus–Ukraine relations Belarus–Ukraine relations (, \"\"Byelaruska-ŭkrainskiya adnosiny\"\", , \"\"Ukrains'ko-Bilorus'ki vidnosyny\"\", , \"\"Belorussko-ukrainskiye otnosheniya\"\") are foreign relations between Belarus and Ukraine. Both countries were successively ruled by the Polish-Lithuanian Commonwealth, the Second Polish Republic, and ultimately, the Russian Empire. Prior to the 1991 breakup, both countries were part of the Soviet Union as the Belarusian SSR and Ukrainian SSR when they were the founding members of the United Nations in 1945. Being Slavic nations, both Belarus and Ukraine share closely related cultures and are predominantly inhabited by the East Slavic ethnic groups of Belarusians and Ukrainians respectively, along with a few"} +{"qid": "test2335", "pid": "18687850", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Krzysztof Czyżewski\"\n1993 he becomes the founder and editor-in-chief of the \"\"Krasnogruda\"\" magazine, devoted to Central and Eastern European cultures, art and literature. He is editor of Borderland Publishing House, in charge of the series “Meridian” and “Neighbours”. He lives in Krasnogruda on Polish-Lithuanian border with wife Mołgorzata and two children, Weronika and Stanislaw. He published regularly his essays in 'Kultura' (Paris). He is translated into many languages and published in different countries (among others USA, Austria, Germany, Lithuania, Belarus, Ukraine, Romania, Slovakia, Czech Republic, Hungary, Bosnia & Hercegovina, Croatia, Slovenia, Macedonia, Yugoslavia, France, Canada). In 2001 he published both in USA"} +{"qid": "test2335", "pid": "4161475", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Gheorghe Tătărescu\"\nsupport for Czechoslovakia and attempt a reconciliation with Hungary (the following year, Romania withdrew its support for the former, indicating, just before the Munich Agreement, that it was not in a position to guarantee Czechoslovakia's frontiers). This was accompanied by Czechoslovak initiatives to establish close contacts between the Little Entente and the Soviets: a scandal erupted in the same year, when the country's ambassador to Romania, Jan Šeba, published a volume calling for Soviet-Entente military cooperation (despite the Soviet-Romanian conflict over Bessarabia) and expressing the hope that the Soviet state would extend its borders into West Belarus and Ukraine. Kamil"} +{"qid": "test2335", "pid": "18754319", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Weaponization of finance\"\nassurance to Russia that the country will stand by them. Since Belarus allows Russia to trade through their country, Russia rewarded them with extremely cheap gas. Instead of Belarus paying the 230 dollars per TCM, Belarus had to only pay 47 dollars per TCM. This is significantly lower than what the Ukraine, and Georgia both had to pay. Russia allowed for the country of Belarus to pay off their debts, if only they gave up claims on assets that they both were jointed with. The economy thrives significantly, because of the benefits Russia provides them. Somalia began suffering the effects"} +{"qid": "test2335", "pid": "17669369", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "ASBIS\ntime, ASBIS distributes mobile gadgets, computer software and hardware on the markets of the following countries: Ukraine, Poland, Estonia, Romania, Croatia, Serbia, Hungary, Belarus, Bulgaria, Czech Republic, Lithuania, Slovenia, United Arab Emirates, Slovakia, Netherlands, Ireland, Cyprus, Russia, Morocco, Turkey, Latvia, Bosnia and Herzegovina, Italy, Kazakhstan, Germany, and Saudi Arabia. The company’s headquarters are located in Cyprus and coordinate the work of 3 logistics centers in the Czech Republic, United Arab Emirates, and China. 47 local offices in 29 countries enable the company to supply more than 32,000 customers in 86 countries. In 2012 the company’s sales were shared between the"} +{"qid": "test2335", "pid": "8720048", "query": "what country shares borders with both belarus and romania", "answer": "Ukraine", "passage": "\"Prostitution in the Czech Republic\"\nUkraine, Russia, Belarus, Moldova, Lithuania, Romania, Bulgaria, Slovakia, China, and Vietnam into and through the Czech Republic mainly for the purpose of sexual exploitation. Czech victims and those transiting the country are trafficked to Western Europe and the United States, sometimes via third countries. Internal trafficking occurs from low employment areas to Prague and regions bordering Germany and Austria. Ethnic Roma women are at the highest risk for internal trafficking, and almost always are trafficked by a relative or someone known to them previously. There have recently been unconfirmed reports of Roma children as young as 13 who have either"} +{"qid": "test2336", "pid": "960907", "query": "who is the largest supermarket chain in the uk", "answer": "Tesco", "passage": "Tesco\ntowards becoming the UK's largest supermarket chain and one that fundamentally changed the country's supermarket business. Tesco itself was cited in a \"\"Wall Street Journal\"\" article as using the intelligence from the Clubcard to thwart Wal-Mart's initiatives in the UK. Cardholders can collect one Clubcard point for every £1 (or one point for €1 in Ireland and Slovakia or 1 point for 1zł in Poland) they spend in a Tesco shop, or at Tesco.com, and 1 point per £2 on fuel (not in Slovakia). Customers can also collect points by paying with a Tesco Credit Card, or by using Tesco"} +{"qid": "test2336", "pid": "2602538", "query": "who is the largest supermarket chain in the uk", "answer": "Tesco", "passage": "Cheshunt\nas the central headquarters the Debenhams store chain were formerly located in Cheshunt, and the headquarters of Tesco, the UK's largest supermarket chain, was located here until 2016. In 2002, Cheshunt hosted the only officially licensed European BotCon convention so far. In 1957, a review of how London was governed was undertaken by government and led by Sir Edwin Herbert, who was appointed to create the new Greater London conurbation as it is today. Initially, Cheshunt was planned to be merged in with the London Borough of Enfield; however, the plan was eventually dropped and Cheshunt remained part of Hertfordshire."} +{"qid": "test2336", "pid": "8361732", "query": "who is the largest supermarket chain in the uk", "answer": "Tesco", "passage": "\"Shoprite (Isle of Man)\"\nstores in Port Erin and Peel have a Subway café. Shoprite Douglas was the first store in the Isle of Man to install a bar-code scanning system at their tills and the Shoprite group was the first supermarket chain in the British Isles to install bar-code scanning systems in all their stores in the early 1980s. Its major competitors are Tesco (one store in Douglas) and Manx Co-op (ten supermarkets, mostly convenience stores, across the Isle of Man). It has long standing trading relationships with major FMCG brands such as Waitrose (UK supermarket chain), Iceland (UK discount supermarket chain), Subway"} +{"qid": "test2337", "pid": "11635193", "query": "has been honoured with the wisden leading cricketer in the world award for 2016", "answer": "Virat Kohli", "passage": "\"Virat Kohli\"\nthe Year) in 2017; ICC ODI Player of the Year in 2012, 2017 and Wisden Leading Cricketer in the World in 2016, 2017. He was given the Arjuna Award in 2013, the Padma Shri under the sports category in 2017 and the Rajiv Gandhi Khel Ratna, the highest sporting honour in India, in 2018. Alongside his cricket career, Kohli co-owns FC Goa in the ISL, the IPTL franchise UAE Royals and the PWL team Bengaluru Yodhas. He also has other business ventures and over 20 brand endorsements. Kohli is ranked as one of the world's most famous athletes by ESPN"} +{"qid": "test2338", "pid": "4573609", "query": "tv show theme song would you like to swing on a star", "answer": "Out of This World", "passage": "\"Out of This World (TV series)\"\nin Season 4 Episode 5 \"\"Evie's Guardian Angel\"\" (an Antaerian was sent to Earth to protect Evie and Donna, and he could speak to Troy via the cube). The series featured several celebrities who made cameo appearances on the show, occasionally as themselves. In chronological order of appearances: The opening credits for the series incorporated special effects footage from the 1979-1981 series \"\"Buck Rogers in the 25th Century\"\". The theme song is \"\"Swinging on a Star\"\". \"\"Out of This World\"\" was first broadcast in the UK on the ITV network on April 9, 1990, until 1995. The show was aired"} +{"qid": "test2341", "pid": "253024", "query": "the most stable mineral at the earth's surface", "answer": "quartz", "passage": "Mineral\nEarth's crust, quartz (SiO) is the most abundant mineral species. It is characterized by its high chemical and physical resistivity. Quartz has several polymorphs, including tridymite and cristobalite at high temperatures, high-pressure coesite, and ultra-high pressure stishovite. The latter mineral can only be formed on Earth by meteorite impacts, and its structure has been composed so much that it had changed from a silicate structure to that of rutile (TiO). The silica polymorph that is most stable at the Earth's surface is α-quartz. Its counterpart, β-quartz, is present only at high temperatures and pressures (changes to α-quartz below 573 °C"} +{"qid": "test2341", "pid": "111088", "query": "the most stable mineral at the earth's surface", "answer": "quartz", "passage": "Earth\nEarth is metamorphic rock, which is created from the transformation of pre-existing rock types through high pressures, high temperatures, or both. The most abundant silicate minerals on Earth's surface include quartz, feldspars, amphibole, mica, pyroxene and olivine. Common carbonate minerals include calcite (found in limestone) and dolomite. The elevation of the land surface varies from the low point of at the Dead Sea, to a maximum altitude of at the top of Mount Everest. The mean height of land above sea level is about . The pedosphere is the outermost layer of Earth's continental surface and is composed of soil"} +{"qid": "test2341", "pid": "10692281", "query": "the most stable mineral at the earth's surface", "answer": "quartz", "passage": "\"Geology of solar terrestrial planets\"\nis basalt, a denser volcanic rock that is the primary constituent of the ocean floors. Sedimentary rock is formed from the accumulation of sediment that becomes compacted together. Nearly 75% of the continental surfaces are covered by sedimentary rocks, although they form only about 5% of the crust. The third form of rock material found on Earth is metamorphic rock, which is created from the transformation of pre-existing rock types through high pressures, high temperatures, or both. The most abundant silicate minerals on the Earth's surface include quartz, the feldspars, amphibole, mica, pyroxene, and olivine. Common carbonate minerals include calcite"} +{"qid": "test2341", "pid": "559177", "query": "the most stable mineral at the earth's surface", "answer": "quartz", "passage": "Olivine\nproduces Mg-rich olivine, or forsterite. Fe-rich olivine is relatively much less common, but it occurs in igneous rocks in small amounts in rare granites and rhyolites, and extremely Fe-rich olivine can exist stably with quartz and tridymite. In contrast, Mg-rich olivine does not occur stably with silica minerals, as it would react with them to form orthopyroxene ((Mg,Fe)SiO). Mg-rich olivine is stable to pressures equivalent to a depth of about within Earth. Because it is thought to be the most abundant mineral in Earth’s mantle at shallower depths, the properties of olivine have a dominant influence upon the rheology of"} +{"qid": "test2342", "pid": "15934460", "query": "who did the whistling in the muppet movie", "answer": "Andrew Bird", "passage": "\"Walter (Muppet)\"\nto the character's arc as it resolves Walter's internal issues with himself. The character's solo act of whistling in the telethon's finale was performed by musician Andrew Bird. At the conclusion of the film, Walter deduces that he is a Muppet, adopts whistling as his sole talent and joins the group as their newest member. A 2010 article from \"\"Entertainment Weekly\"\" described Walter by writing; Meet the newest member of the Muppet repertory company: Walter, a sweet, slightly naive twenty-something every-puppet who, in the movie, is the best friend and roommate of Jason Segel's character, Gary. Both Gary and Walter"} +{"qid": "test2343", "pid": "16026729", "query": "how many games in a row have the uconn women's basketball team won", "answer": "90", "passage": "\"2011–12 Connecticut Huskies women's basketball team\"\nwinning streak at 90 games in the prior season match up. UConn won the game 68–58, behind 25 points by freshman Kaleena Mosqueda-Lewis, and a defensive effort that inspired coach Geno Auriemma to remark, \"\"That's one of the better defensive efforts I’ve seen us have in a long time.\"\" UConn held Fairleigh Dickinson University to five first half points, the lowest point total ever scored by an opponent in a half, but the game did not earn praise from coach Auriemma, \"\"It was the worst exhibition of basketball I've ever seen by two teams in my 27 years at UConn."} +{"qid": "test2343", "pid": "15180408", "query": "how many games in a row have the uconn women's basketball team won", "answer": "90", "passage": "\"Basketball winning streaks\"\ndivision I basketball record eclipsing the 60 game streak of San Francisco in 1956. The streak is still an active Division I men's basketball streak, but the Division I basketball streak was matched when the University of Connecticut women's basketball team won a game against Ohio State on December 19, 2010 and the old record was eclipsed when the team won their 89th consecutive victory against Florida State on December 21, 2010. UConn's streak ended at 90 games, after losing to Stanford, who was the last team to beat UConn before the start of the streak. The streak is also"} +{"qid": "test2343", "pid": "15180418", "query": "how many games in a row have the uconn women's basketball team won", "answer": "111", "passage": "\"Basketball winning streaks\"\nthe Huskies went on a 111-game winning streak. This streak included two national championships. They made history by being the first team in NCAA Division I women's basketball to win four consecutive championships. Over the course of this streak, only three games were won by fewer than ten points. The first game was at No. 12 Florida State on , where UConn won 78–76. The second game was at No. 4 Maryland in front of a sold out crowd on December 29, 2016, where UConn won 87–81. The third was at conference foe Tulane on February 18, 2017, UConn winning,"} +{"qid": "test2343", "pid": "6509435", "query": "how many games in a row have the uconn women's basketball team won", "answer": "90", "passage": "\"UCLA Bruins\"\nof UCLA basketball has produced 11 NCAA championships – 1964, 1965, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1975, and 1995. From 1971 to 1974, UCLA won 88 consecutive men's basketball games, an NCAA record for men. Recent UConn Huskies women's basketball teams have set overall NCAA basketball records with 90-game and (ongoing) 91-game winning streaks. The 35-year period (1940–1974) preceding and including the UCLA streak was characterized by less dynasties, however: 20 different men's teams won titles during that span. In comparison, the women's game to date has produced 35% less (tournament) parity, with 13 schools winning all 35"} +{"qid": "test2344", "pid": "1160100", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "\"1998 FIFA World Cup\"\n1978 after losing to Italy in the play-off round); and the Republic of Ireland, who had qualified for the previous two tournaments. As of 2018, this is the most recent time Austria, Scotland, Norway, Bulgaria, Romania, and Jamaica have qualified for a FIFA World Cup finals, as well as the last time Portugal missed out. The highest ranked team not to qualify was Czech Republic (ranked 3rd), while the lowest ranked team that did qualify was Nigeria (ranked 74th). The following 32 teams, shown with final pre-tournament rankings, qualified for the final tournament. France's bid to host the World Cup"} +{"qid": "test2344", "pid": "7276386", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "\"Stuart McCall\"\ndefeated 1–0 by Brazil. McCall represented Scotland at the European Championships in 1992, when they again failed to go beyond the group stage after defeats to Netherlands and Germany, and in 1996 when they were edged out in the first round by Netherlands. Scotland failed to qualify for the World Cup in 1994. McCall played just two qualifying games for the 1998 World Cup and his last cap came in a friendly against Denmark on 25 March 1998, as he was overlooked for the final squad for the finals in France along with team-mate Ally McCoist. He was capped a"} +{"qid": "test2344", "pid": "2931377", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "\"Scotland national football team\"\nthey played in the world's first international football match in 1872. Scotland has a long-standing rivalry with England, whom they played annually from 1872 until 1989. The teams have met only seven times since then, most recently in June 2017. Scotland have qualified for the FIFA World Cup on eight occasions and the UEFA European Championship twice, but have never progressed beyond the first group stage of a finals tournament. The last major tournament they qualified for was the 1998 World Cup. The team have achieved some noteworthy results, such as beating the 1966 FIFA World Cup winners England 3–2"} +{"qid": "test2344", "pid": "9437872", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "\"Scotland women's national rugby union team\"\nScotland women's national rugby union team The Scotland women's national rugby union team has competed in five of the Women's Rugby World Cups and have an important role in the rugby world stage. The governing body in Scotland for women's rugby is Scottish Rugby. Scotland have appeared in five World Cups since their debut in 1994. They also qualified for the tournament in 1998, 2002 and 2006 and 2010. They did not qualify for the 2014 tournament. \"\"(Full internationals only)\"\"
\"\"Correct as of 27 November 2016\"\"
\"\"See Women's international rugby for information about the status of international games and match"} +{"qid": "test2344", "pid": "9437873", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "\"Scotland women's national rugby union team\"\nnumbering\"\" Women's international rugby - the most complete listing of women's international results since 1982 Scotland women's national rugby union team The Scotland women's national rugby union team has competed in five of the Women's Rugby World Cups and have an important role in the rugby world stage. The governing body in Scotland for women's rugby is Scottish Rugby. Scotland have appeared in five World Cups since their debut in 1994. They also qualified for the tournament in 1998, 2002 and 2006 and 2010. They did not qualify for the 2014 tournament. \"\"(Full internationals only)\"\"
\"\"Correct as of 27 November"} +{"qid": "test2344", "pid": "359698", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "Scotland\nranked as the 40th best national football team in the FIFA World Rankings. The national team last attended the World Cup in France in 1998, but finished last in their group stage. The Scotland women's team have achieved more recent success, qualifying for both Euro 2017 and the 2019 World Cup. As of June 2018, they were ranked as the 21st best women's national team in the FIFA Rankings. Scottish clubs have achieved some success in European competitions, with Celtic winning the European Cup in 1967, Rangers and Aberdeen winning the UEFA Cup Winners' Cup in 1972 and 1983 respectively,"} +{"qid": "test2344", "pid": "15140590", "query": "when did scotland last qualify for world cup", "answer": "1998", "passage": "\"Nepal national under-19 cricket team\"\n2004, 2006, 2008 and 2012). They qualified for the 2012 ICC Under-19 Cricket World Cup after an impressive second-place finish, behind only Scotland and ahead of hosts Ireland at the 10-team World Cup qualifying tournament. Nepal did not qualify for the tournament in 1998, 2010 & 2014. Whereas in the first U-19 world cup in 1988 Nepal was not the member of ACC. On Asian level Nepal U-19 team plays on ACC U-19 Elite Cup which is senior level of ACC Under-19 Cup and which is also the first level qualification tournament of ICC Under-19 Cricket World Cup Qualifier. Out"} +{"qid": "test2345", "pid": "18421661", "query": "who plays the main character in hacksaw ridge", "answer": "Andrew Garfield", "passage": "\"Hacksaw Ridge\"\nHacksaw Ridge Hacksaw Ridge is a 2016 biographical war drama film directed by Mel Gibson and written by Andrew Knight and Robert Schenkkan, based on the 2004 documentary \"\"The Conscientious Objector\"\". The film focuses on the World War II experiences of Desmond Doss, an American pacifist combat medic who, as a Seventh-day Adventist Christian, refused to carry or use a weapon or firearm of any kind. Doss became the first conscientious objector to be awarded the Medal of Honor, for service above and beyond the call of duty during the Battle of Okinawa. Andrew Garfield stars as Doss, with Sam"} +{"qid": "test2345", "pid": "18421672", "query": "who plays the main character in hacksaw ridge", "answer": "Andrew Garfield", "passage": "\"Hacksaw Ridge\"\n\"\"Braveheart\"\" (1995). Nearly a decade later, Gibson finally agreed to direct, a decision announced in November 2014. The same month, Andrew Garfield was confirmed to play the role of Desmond Doss. With a budget of $40 million, the team still faced many challenges. \"\"Hacksaw Ridge\"\" became an international co-production, with key players and firms located in both the United States and Australia. When Australian tax incentives were taken off the table, the film had to qualify as Australian to receive government subsidies. Despite being American-born, Gibson's early years in Australia helped the film qualify, along with most of the cast"} +{"qid": "test2345", "pid": "546586", "query": "who plays the main character in hacksaw ridge", "answer": "Andrew Garfield", "passage": "\"Mel Gibson\"\nGibson signed on to direct \"\"Hacksaw Ridge\"\", a World War II drama based on the true story of conscientious objector Desmond T. Doss, played by Andrew Garfield. The film premiered at the 73rd Venice Film Festival in September 2016 and received what \"\"The New Zealand Herald\"\" calls \"\"rave reviews\"\". It has won or been nominated for many awards, including Golden Globe nominations for Best Picture, Best Director for Gibson, and Best Actor for Garfield. \"\"Hacksaw Ridge\"\" was also nominated for an Academy Award for Best Picture, Best Director, Best Actor, Best Sound Editing, Best Sound Mixing, and Best Film Editing."} +{"qid": "test2345", "pid": "18421674", "query": "who plays the main character in hacksaw ridge", "answer": "Andrew Garfield", "passage": "\"Hacksaw Ridge\"\nwere acquired by Bliss Media, a Shanghai-based film production and distribution company. \"\"Hacksaw Ridge\"\" is the first film directed by Gibson since \"\"Apocalypto\"\" in 2006, and marks a departure from his previous films, such as \"\"Apocalypto\"\" and \"\"Braveheart\"\", in which the protagonists acted violently. Robert Schenkkan made the initial draft and Randall Wallace, who was previously attached to direct the film, rewrote the script. Andrew Knight polished the revised script. Gibson's partner Bruce Davey also produced the film, along with Paul Currie. The cast – Andrew Garfield, Vince Vaughn, Sam Worthington, Luke Bracey, Teresa Palmer, Rachel Griffiths, Richard Roxburgh, Luke"} +{"qid": "test2345", "pid": "8292674", "query": "who plays the main character in hacksaw ridge", "answer": "Andrew Garfield", "passage": "\"Andrew Garfield\"\nUniverse, sequels to the latter film were scrapped, and the role was later taken on by Tom Holland in a reboot. Arachnologists Yuri M. Marusik and Alireza Zamani honored Garfield's portrayal of the role by naming a new species of crevice weaver spider, \"\"Pritha garfieldi\"\", after him. Following a year-long absence from the screen, Garfield had starring roles in two films of 2016, Martin Scorsese's drama \"\"Silence\"\" and Mel Gibson's war film \"\"Hacksaw Ridge\"\". In the former, based on Shūsaku Endō's 1966 novel of the same name, Garfield played Sebastião Rodrigues, a Portuguese Jesuit priest in the seventeenth century who"} +{"qid": "test2347", "pid": "7962359", "query": "india participated olympic hockey for the first time", "answer": "1928", "passage": "\"Field hockey in India\"\neliminated from the Beijing Olympics competition. This is the first time that the Indian men's team did not participate in the Olympics since 1928. India finished in 12th place (Last) in the 2012 London Olympics. On 26 Feb 2012, the India men's national field hockey team qualified for the 2012 Summer Olympics in London after a gap of 8 years. The team had a resounding victory over France in the finals of the Olympic qualifiers by beating France by 8–1. Ace drag-flicker Sandeep Singh, starred in the final against France by scoring five goals – including a hat-trick – all"} +{"qid": "test2347", "pid": "11461361", "query": "india participated olympic hockey for the first time", "answer": "1928", "passage": "\"Sayed Jaffar (field hockey)\"\nDecember 1911. Date of Death: March 1937\"\" \"\"(Late) Syed Mohammad Jaffar was one of the greatest players of hockey, who was selected for 1928 for United India (All India) Olympics Hockey team but he could not participate in that global event due to his youthful age. In 1932 All India Hockey Team which participated in Los Angeles (USA) Olympics, he was considered one of the best players in the world on the position of \"\"Left-Out\"\", although he was one of the youngest. He participated once again in 1936 tournament in the global tournament as vice-captain. Out of magnanimity of his"} +{"qid": "test2347", "pid": "12612979", "query": "india participated olympic hockey for the first time", "answer": "1928", "passage": "\"Sport in India\"\nand out of funds. Following is a list of international sports events held in India: A single athlete, Norman Pritchard, represented India in the 1900 Olympics, winning two silver medals. India sent its first national team to the Olympics in 1920, and has participated in every Summer Olympic Games ever since. India has also competed at several Winter Olympic Games since 1964. India has won a total of 26 Olympic medals. India won its first gold medal in men's field hockey in the 1928 Olympic Games. Abhinav Bindra became the first Indian to win an individual gold medal at the"} +{"qid": "test2347", "pid": "8671111", "query": "india participated olympic hockey for the first time", "answer": "1928", "passage": "\"India men's national field hockey team\"\nIndia men's national field hockey team The India national field hockey team was the first non-European team to be a part of the International Hockey Federation. In 1928, the team won its first Olympic gold medal and until 1960, the Indian men's team remained unbeaten in the Olympics, winning six gold medals in a row. The team had a 30–0 winning streak during this time, from their first game until losing in the 1960 gold medal final. India also won the 1975 World Cup. India is the most successful team ever in the Olympics, having won eight gold, one silver"} +{"qid": "test2347", "pid": "11758194", "query": "india participated olympic hockey for the first time", "answer": "1928", "passage": "\"India at the 2008 Summer Olympics\"\ntwo bronze medals), surpassing the two silvers by Norman Pritchard in 1900 Paris Olympics and the gold and bronze medals won by the Indian field hockey team and Khashaba Dadasaheb Jadhav respectively, at the 1952 Helsinki Olympics. India at the 2008 Summer Olympics India competed at the 2008 Summer Olympics in Beijing, People's Republic of China. India was represented by the Indian Olympic Association (IOA). A contingent of 57 athletes in 12 sports represented India, and had a support-staff of 42 officials. For the first time since 1928, the men's national field hockey team was unable to take part in"} +{"qid": "test2347", "pid": "7344420", "query": "india participated olympic hockey for the first time", "answer": "1928", "passage": "\"Koninklijke Nederlandse Hockey Bond\"\nparticipate in the 1928 Amsterdam Olympics since their rules were still different than those of most other countries. The association, then still called NHBB, was under pressure for possibly missing out on the Olympic tournament, which was hosted in its own country, and decided that the progressive rules were the standard rules used by the national team. The team made it to the final of the tournament (which was lost to British India) and since then, field hockey was popular in The Netherlands. Although the first (men's) Hockey World Cup was held in Barcelona in 1971, there were plans to"} +{"qid": "test2348", "pid": "8005973", "query": "when was how deep is your love released", "answer": "1977", "passage": "\"How Deep Is Your Love (Bee Gees song)\"\nthe connotations involved in that sentence, and that was simply it\"\". There was some talk of Yvonne Elliman recording \"\"How Deep Is Your Love,\"\" but, according to Barry, their manager Robert Stigwood said, \"\"You've got to do this song yourself, you should not give it to anybody\"\". \"\"How Deep Is Your Love\"\" was released as a single in September 1977 everywhere except in the UK, where it was released on 14 October 1977. By the time \"\"Children of the World\"\" was recorded, it was pretty much established that Barry was now the primary vocalist of the group, mostly being falsetto"} +{"qid": "test2348", "pid": "8005981", "query": "when was how deep is your love released", "answer": "1977", "passage": "\"How Deep Is Your Love (Bee Gees song)\"\nsingle UK CD single no. 1 UK CD single no. 2 EU CD single no. 1 EU CD single no. 2 Japanese CD single UK 7\"\" vinyl – jukebox release only How Deep Is Your Love (Bee Gees song) \"\"How Deep Is Your Love\"\" is a pop ballad written and recorded by the Bee Gees in 1977 and released as a single in September of that year. It was ultimately used as part of the soundtrack to the film \"\"Saturday Night Fever\"\". It was a number three hit in the United Kingdom and Australia. In the United States, it topped"} +{"qid": "test2348", "pid": "8005964", "query": "when was how deep is your love released", "answer": "1977", "passage": "\"How Deep Is Your Love (Bee Gees song)\"\nHow Deep Is Your Love (Bee Gees song) \"\"How Deep Is Your Love\"\" is a pop ballad written and recorded by the Bee Gees in 1977 and released as a single in September of that year. It was ultimately used as part of the soundtrack to the film \"\"Saturday Night Fever\"\". It was a number three hit in the United Kingdom and Australia. In the United States, it topped the \"\"Billboard\"\" Hot 100 on 25 December 1977 (becoming the first of six consecutive US number-one hits), ended the 10-week reign of Debby Boone's \"\"You Light Up My Life\"\" and stayed"} +{"qid": "test2348", "pid": "10907112", "query": "when was how deep is your love released", "answer": "1977", "passage": "\"Please Clap Your Hands\"\nYour Hands\"\" adapted from liner notes. Please Clap Your Hands Please Clap Your Hands is the second EP by American indie pop duo The Bird and the Bee, released on September 25, 2007 by Blue Note Records. It contains four original tracks and a cover of The Bee Gees' 1977 song \"\"How Deep Is Your Love\"\", which features backing vocals from Australian singer Sia. In addition to the regular duo, the EP contains other instrumental contributions from members of their touring band, including drummer Joey Waronker, guitarist Gus Seyffert, and backing vocalists Megan Geer-Alsop, Willow Geer-Alsop, Alex Lilly, and the"} +{"qid": "test2349", "pid": "12850508", "query": "where was the last world cup held and who won", "answer": "Germany", "passage": "\"2008–09 Four Hills Tournament\"\n2008–09 Four Hills Tournament The 2008–09 Four Hills Tournament was held at the four traditional venues of Oberstdorf, Garmisch-Partenkirchen, Innsbruck and Bischofshofen, located in Germany and Austria. The tournament was won by Austria's Wolfgang Loitzl, who previously had not won a single World Cup event in his career. Loitzl won the last three competitions at Garmisch-Partenkirchen, Innsbruck and Bischofshofen to claim the overall victory, and became the first Austrian to win the Four Hills since Andreas Widhölzl in 1999–2000. The opening event at Oberstdorf was won by Switzerland' s Simon Ammann, who was the overall World Cup leader at the"} +{"qid": "test2349", "pid": "17971096", "query": "where was the last world cup held and who won", "answer": "Germany", "passage": "\"Clausura 2014 Copa MX Final\"\nWorld Cup, the stadium was the site where Mexico was eliminated in penalty kicks by West Germany. The stadium also staged eight matches of the 2011 FIFA U-17 World Cup, which included most of Group B matches and some knockout stage matches. Tigres UANL, who is a two time winner last won the tournament in 1996 while Oaxaca has never won the tournament in their one year of existence. UANL last reached a final of any kind back in 2011 when they defeated Santos Laguna 4–1 on aggregate to win the Liga MX title. Oaxaca, who played their first season"} +{"qid": "test2349", "pid": "5618062", "query": "where was the last world cup held and who won", "answer": "Germany", "passage": "\"Sport in South Korea\"\nfirst time since Lillehammer 1994 the Winter Olympics returned to a mountain resort. The 2002 FIFA World Cup was held in Korea and Japan with extreme success. More than 10 million Koreans came to the streets to support their team in the semifinals against Germany. The 2002 FIFA World Cup was the 17th staging of the FIFA World Cup, held in South Korea and Japan from 31 May to 30 June. It was also the first World Cup held in Asia, and the last in which the golden goal rule was implemented. Brazil won the tournament for a record fifth"} +{"qid": "test235", "pid": "9797538", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"Virginia Tech Hokies men's basketball\"\none regular season championship and appeared in the 1996 NCAA Tournament. Foster was replaced by Bobby Hussey prior to the 1997–98 season. After two years, Hussey was replaced by Ricky Stokes. From 2000 to 2004, the Hokies were members of the Big East Conference. Virginia Tech saw a resurgence of its basketball program under coach Seth Greenberg who was hired prior to the 2003–04 season. In 2005, Virginia Tech joined the Atlantic Coast Conference. During the 2006–07 season, Virginia Tech beat Duke at Cameron Indoor Stadium and also beat top-ranked North Carolina in Blacksburg. The Hokies went on to beat"} +{"qid": "test235", "pid": "19653387", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"2016–17 Virginia Tech Hokies men's basketball team\"\n2016–17 Virginia Tech Hokies men's basketball team The 2016–17 Virginia Tech Hokies men's basketball team represented Virginia Polytechnic Institute and State University during the 2016–17 NCAA Division I men's basketball season. The Hokies were led by third-year head coach Buzz Williams and played their home games at Cassell Coliseum in Blacksburg, Virginia as a member of the Atlantic Coast Conference. They finished the season 22–11, 10–8 in ACC play to finish a three-way tie for seventh place. As the No. 7 seed in the ACC Tournament, they beat Wake Forest before losing to Florida State in the quarterfinals. They received"} +{"qid": "test235", "pid": "6653145", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"West Virginia Mountaineers\"\nplayer Gale Catlett reintroduced the carpet when he returned to West Virginia University in 1978 as head coach of the men's basketball team. In a state that lacks professional sports franchises, the citizens of West Virginia passionately support West Virginia University and its athletics teams. West Virginia fans are nationally known for following their Mountaineers to bowl games and games throughout the country. West Virginia games also have received high TV ratings throughout the years. Men's basketball head coach Bob Huggins, a former Mountaineer basketball player who was born in Morgantown, stated that the \"\"strong bond between the university and"} +{"qid": "test235", "pid": "20626668", "query": "who beat university of virginia in basketball this year", "answer": "UMBC", "passage": "\"2018 UMBC vs. Virginia men's basketball game\"\nVirginia and No. 4 seed Arizona, and second round losses by No. 2 seed Cincinnati and No. 3 seed Tennessee, led to the South Region becoming the first ever to not advance any of its top four seeds to the Sweet Sixteen. Another Cinderella, No. 11 seed Loyola-Chicago, won the region by beating Kansas State 78–62, becoming the fourth 11-seed ever to advance to the Final Four. 2018 UMBC vs. Virginia men's basketball game On March 16, 2018, during the first round of the 2018 NCAA Division I Men's Basketball Tournament, the University of Virginia (Virginia; also UVA) Cavaliers played"} +{"qid": "test235", "pid": "20748041", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"1995–96 Virginia Tech Hokies men's basketball team\"\n1995–96 Virginia Tech Hokies men's basketball team The 1995–96 Virginia Tech Hokies men's basketball team represented Virginia Polytechnic Institute and State University from Blacksburg, Virginia in the 1995-96 season. In their first season in the Atlantic-10 Conference, the Hokies finished with a conference record of 13-3, first in the A-10 west division. After falling to John Calipari's Massachusetts in the A-10 tournament, the Hokies received an at-large bid to the NCAA Tournament, where they would beat Green Bay in the first round, before falling to Rick Pitino's eventual National Champion Kentucky in the Round of 32. A-10 Tournament
3/7/96 Quarterfinal"} +{"qid": "test235", "pid": "18552566", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"Kenny Brooks\"\nwinningest coach (303), surpassing Shelia Moorman (302). Brooks was the head coach when the James Madison University Women's Basketball Team became the third school in NCAA Women's Basketball history to win 1,000 program games. He tied the school record for wins in a season with 29 (2011–2012, 2013–2014). On February 6, 2015, Brooks beat Hofstra University, (77–68), giving him his 300th career win. On March 28, 2016, Brooks accepted the same position at Virginia Tech. Kenny Brooks Kenny Brooks (born December 20, 1968) is the current head coach of the Virginia Tech women's basketball team. Brooks played his collegiate basketball"} +{"qid": "test235", "pid": "15758903", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"Mike Carey (basketball)\"\nthe Big East Women's Basketball Tournament, only to fall to Connecticut. Despite the success of the year, Carey still has not achieved one of his goals—to beat Connecticut. He said, \"\"This is my 10th year and we've beat every team in the conference except Connecticut\"\". The team was undefeated at home for only the second time in program history. The Big East voted him co-coach of the year, along with Geno Auriemma. Carey's 200th win at West Virginia occurred on February 19, 2011, in a game against Pittsburgh. West Virginia had failed to win in their previous three attempts to"} +{"qid": "test235", "pid": "9993876", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"Iowa State Cyclones men's basketball\"\nbecame the first team to beat Bill Self more than once at Allen Fieldhouse. The Cyclones then proceeded to win their third conference tournament title in four years with wins over Oklahoma State, TCU and West Virginia. The Cyclones were selected as a five seed in NCAA tournament where they proceeded to beat the University of Nevada in the tournament's second round. Iowa State would eventually lose to 4-seed Purdue in the round of 32, 80–76. ^Coaches did not release a Week 1 poll.
*AP does not release post-NCAA Tournament rankings Iowa State Cyclones men's basketball The Iowa State Cyclones"} +{"qid": "test235", "pid": "16785630", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"Ted Scott (basketball)\"\nTed Scott (basketball) Ted Scott (born June 19, 1985) is an American professional basketball player who last played with Club Melilla Baloncesto in the LEB Oro, the Spanish second division. Born in Columbus, Ohio, Scott started his basketball career competing at Whetstone High School, and that led to receiving a scholarship at West Virginia State University, playing for the NCAA Division II team, West Virginia State. At West Virginia, Scott improved his scoring ability every year, shooting 40% or more in four out of five years, being named All-WVIAC Player of the Year in 2007 and 2009. In the last"} +{"qid": "test235", "pid": "13601104", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"Jamon Gordon\"\nForest University. On February 17, 2005, he scored 17 points and had six rebounds in the win over seventh-ranked Duke University in Cassell Coliseum, one of the most famous victories in Virginia Tech basketball history. In the regular season finale, Gordon scored a then career-best 23 points, including seven points in the final 2½ minutes, to beat the University of Maryland, College Park, 86-76. The win secured a first-round bye in the 2005 ACC Men's Basketball Tournament, who then lost in the first round to Georgia Tech. After the regular season, Gordon totaled 23 points, 12 rebounds and seven assists"} +{"qid": "test235", "pid": "15758897", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"Mike Carey (basketball)\"\nMike Carey (basketball) Michael Alan Carey (born July 4, 1958) is the current head coach of the West Virginia University women's basketball team. He had previously served as head basketball coach for the Salem International University men's basketball team. Carey played basketball for Salem International University, earning a letter in each of his four years at the school. In his freshman year, he was named the West Virginia Intercollegiate Athletic Conference freshman of the year, an honor his son would win in 2006. Born and raised in Clarksburg, West Virginia, Carey was active in three sports while attending Liberty High"} +{"qid": "test235", "pid": "1557982", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"West Virginia University\"\nPride of West Virginia.\"\" The 380-member band performs at every home football game and makes several local and national appearances throughout the year. The band was the recipient of the prestigious Sudler Trophy in 1997. In a state that lacks professional sports franchises, West Virginians passionately support West Virginia University and its athletics teams. Men's basketball head coach Bob Huggins, a former Mountaineer basketball player who was born in Morgantown, stated that the \"\"strong bond between the university and the people of West Virginia\"\" is a relationship that is difficult for non-natives to understand. Some WVU fans, primarily in the"} +{"qid": "test235", "pid": "17000997", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"1958–59 Louisville Cardinals men's basketball team\"\n1958–59 Louisville Cardinals men's basketball team The 1958–59 Louisville Cardinals men's basketball team represented the University of Louisville during the 1958-59 NCAA Division I men's basketball season, Louisville's 46th season of intercollegiate competition. The Cardinals competed independents (no conference) and were coached by Peck Hickman, who was in his fifteenth season. The team played its home games at Freedom Hall. Louisville beat #2 Kentucky and #7 Michigan State to win the NCAA Tournament Mideast Regional and advance to the Final Four (their 1st) where they fell to eventual runner-up West Virginia 94-79. They finished fourth, falling to Cincinnati in the"} +{"qid": "test235", "pid": "20626656", "query": "who beat university of virginia in basketball this year", "answer": "UMBC", "passage": "\"2018 UMBC vs. Virginia men's basketball game\"\n2018 UMBC vs. Virginia men's basketball game On March 16, 2018, during the first round of the 2018 NCAA Division I Men's Basketball Tournament, the University of Virginia (Virginia; also UVA) Cavaliers played a college basketball game against the University of Maryland, Baltimore County (UMBC) Retrievers at the Spectrum Center in Charlotte, North Carolina. The Cavaliers, who were seeded first in the South regional bracket and first overall in the NCAA Tournament, faced the Retrievers, who were seeded 16th in the South regional bracket and ranked 63rd overall (out of a field of 68). Virginia and UMBC competed for the"} +{"qid": "test235", "pid": "15568898", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"Chuck Noe\"\nlevel in the state of Virginia—football, basketball, and baseball at Madison County High School in 1950–51 and basketball at Hopewell High School in 1951–52. Noe got his first college head coaching job in 1952 when he was named head coach at the Virginia Military Institute (VMI). Following three years at VMI, Noe moved to the same position at Virginia Tech. At Virginia Tech, Noe had a successful seven-year stint. His teams went 109–51 and in the 1959–60 season won the Southern Conference regular season championship, beating out West Virginia and star guard Jerry West. In 1962, Noe moved to South"} +{"qid": "test235", "pid": "13406897", "query": "who beat university of virginia in basketball this year", "answer": "Virginia Tech", "passage": "\"Big East Conference Men's Basketball Freshman of the Year\"\nschools which joined the current Big East from other conferences in 2013: Butler University and Xavier University. Schools which left the Big East without winning the award include the University of Miami, Virginia Tech, and West Virginia University. Boston College was a founding member in 1979, and left the Big East for the ACC in 2005. Because the college basketball season spans the new year, the year awarded is the year in which that season ended. Big East Conference Men's Basketball Freshman of the Year The Big East Conference Men's Basketball Freshman of the Year, known as Big East Conference"} +{"qid": "test235", "pid": "11721518", "query": "who beat university of virginia in basketball this year", "answer": "West Virginia", "passage": "\"Cam Henderson\"\nthe first undefeated (22-0) W.Virginia collegiate basketball team (1924–1925) at Davis & Elkins and coached the first (proclaimed) D&E state collegiate football championship team in 1928. Henderson's 1933 team won the West Virginia Athletic Conference title. At Davis & Elkins, Henderson had a 220-40 record in basketball and an 83-33-6 record in football. His Davis & Elkins football teams beat much larger schools like West Virginia University, Army, Fordham, Villanova, George Washington and Navy. Henderson assumed a position at Marshall College, now Marshall University, in 1935, after Marshall had hired Dr. John Allen from D&E to be President of Marshall"} +{"qid": "test2351", "pid": "2760404", "query": "where does creatine come from in the body", "answer": "liver", "passage": "Phosphocreatine\nthe blood by the liver where it travels mainly to the muscle cells (95% of the body's creatine is in muscles), and to a lesser extent the brain, heart, and pancreas. Once inside the cells it is transformed into phosphocreatine by the enzyme complex creatine kinase, which makes it able to donate its phosphate group to convert adenosine diphosphate (ADP) into adenosine triphosphate (ATP). This process is an important component of all vertebrates' bioenergetic systems. For instance, while the human body only produces 250g of ATP daily, it recycles its entire body weight in ATP each day through creatine phosphate."} +{"qid": "test2351", "pid": "10155520", "query": "where does creatine come from in the body", "answer": "glycine", "passage": "\"Arginine:glycine amidinotransferase\"\nand had low urinary guanidinoacetate concentrations, was identified as a new genetic defect in creatine metabolism. It is one of three cerebral creatine deficiencies. Patients with brain creatine deficiency present nonspecific neurologic symptoms, including mental retardation, language disorders, epilepsy, autistic-like behavior, neurologic deterioration, and movement disorders. A deficiency in AGAT results in a creatine deficiency in the body. The treatment for this is creatine supplements since the body cannot make the creatine on its own. The positive results of creatine treatment (in AGAT deficiencies) and the observation that fetal and early postnatal development are normal in these patients support the"} +{"qid": "test2351", "pid": "750320", "query": "where does creatine come from in the body", "answer": "kidneys", "passage": "Creatinine\nCreatinine Creatinine ( or ; from ) is a breakdown product of creatine phosphate in muscle, and is usually produced at a fairly constant rate by the body (depending on muscle mass). Serum creatinine (a blood measurement) is an important indicator of renal health because it is an easily measured byproduct of muscle metabolism that is excreted unchanged by the kidneys. Creatinine itself is produced via a biological system involving creatine, phosphocreatine (also known as creatine phosphate), and adenosine triphosphate (ATP, the body's immediate energy supply). Creatine is synthesized primarily in the liver from the methylation of glycocyamine (guanidino acetate,"} +{"qid": "test2351", "pid": "2167219", "query": "where does creatine come from in the body", "answer": "liver", "passage": "Creatine\nprimarily takes place in the kidney and liver, with creatine then being transported to the muscles via the blood. The majority of the human body's total creatine and phosphocreatine stores is located in skeletal muscle, while the remainder is distributed in the blood, brain, and other tissues. Typically, creatine is produced endogenously at an estimated rate of about 8.3 or 1 gram per day in young adults. Creatine is also obtained through the diet at a rate of about 1 gram per day from an omnivorous diet. Some small studies suggest that total muscle creatine is significantly lower in vegetarians"} +{"qid": "test2351", "pid": "2167218", "query": "where does creatine come from in the body", "answer": "arginine", "passage": "Creatine\nother tissues. Creatine is not an essential nutrient as it is naturally produced in the human body from the amino acids glycine and arginine, with an additional requirement for methionine to catalyze the transformation of guanidinoacetate to creatine. In the first step of the biosynthesis these two amino acids are combined by the enzyme (AGAT, EC:2.1.4.1) to form guanidinoacetate, which is then methylated by guanidinoacetate N-methyltransferase (GAMT, EC:2.1.1.2), using S-adenosyl methionine as the methyl donor. Creatine itself can be phosphorylated by creatine kinase to form phosphocreatine, which is used as an energy buffer in skeletal muscles and the brain. Synthesis"} +{"qid": "test2351", "pid": "2167217", "query": "where does creatine come from in the body", "answer": "kidneys", "passage": "Creatine\nphosphocreatine (PCr) to generate ATP. It follows that ATP, not PCr is directly consumed in muscle contraction. CK uses creatine to \"\"buffer\"\" the ATP/ADP ratio. Creatine synthesis primarily occurs in the liver and kidneys. On average, it is produced endogenously at an estimated rate of about 8.3 or 1 gram per day in young adults. Creatine is also obtained through the diet at a rate of about 1 gram per day from an omnivorous diet. Most of the human body's total creatine and phosphocreatine stores are found in skeletal muscle, while the remainder is distributed in the blood, brain, and"} +{"qid": "test2351", "pid": "10756089", "query": "where does creatine come from in the body", "answer": "arginine", "passage": "\"Guanidinoacetate methyltransferase deficiency\"\ncompound creatine from amino acids glycine, arginine and methionine. Specifically, guanidinoacetate methyltransferase controls the second step of the sequence, in which creatine is produced from another compound called guanidinoacetate. \"\"GAMT\"\" gene mutations impair the ability of the guanidinoacetate methyltransferase enzyme to participate in creatine synthesis. Creatine is needed for many tissues in the body to be able to store and use energy properly. The effects of guanidinoacetate methyltransferase deficiency are most severe in organs and tissues that require large amounts of energy, such as the brain and muscles. This disorder is inherited in an autosomal recessive pattern, which means the"} +{"qid": "test2351", "pid": "2167223", "query": "where does creatine come from in the body", "answer": "kidneys", "passage": "Creatine\nby 5 to 15%. Creatine has no significant effect on aerobic endurance, though it will increase power during short sessions of high-intensity aerobic exercise. A survey of 21,000 college athletes showed that 14% of athletes take creatine supplements to improve performance. Non-athletes report taking creatine supplements to improve appearance. Side effects include: Use of creatine by healthy adults in normal dosages does not harm kidneys; its effects on the kidney in elderly people and adolescents were not well understood as of 2012. Both the American Academy of Pediatrics and the American College of Sports Medicine recommend that individuals younger than"} +{"qid": "test2351", "pid": "20903202", "query": "where does creatine come from in the body", "answer": "glycine", "passage": "\"Arginine:glycine amidinotransferase deficiency\"\ndoes not reverse intellectual disability or improve cognitive function. For treatment at any age,even if intellectual disability was present, all individuals showed improvement in muscle weakness. In an asymptomatic sibling, who was started on treatment due to the earlier diagnosis of an affected sibling, early intervention with creatine supplementation resulted in improved outcomes when compared to their untreated siblings at the same age. In addition to clinical findings, the effectiveness of treatment can be monitored by following creatine levels in blood and urine as well as the creatine signal by MRS. As creatine is rapidly converted and excreted as creatinine,"} +{"qid": "test2351", "pid": "10155513", "query": "where does creatine come from in the body", "answer": "kidneys", "passage": "\"Arginine:glycine amidinotransferase\"\nArginine:glycine amidinotransferase -Arginine:glycine amidinotransferase (AGAT; ) is the enzyme that catalyses the transfer of an amidino group from -arginine to glycine. The products are -ornithine and glycocyamine, also known as guanidinoacetate, the immediate precursor of creatine. Creatine and its phosphorylated form play a central role in the energy metabolism of muscle and nerve tissues. Creatine is in highest concentrations in the skeletal muscle, heart, spermatozoa and photoreceptor cells. Creatine helps buffer the rapid changes in ADP/ATP ratio in muscle and nerve cells during active periods. Creatine is also synthesized in other tissues, such as pancreas, kidneys, and liver, where amidinotransferase"} +{"qid": "test2351", "pid": "10155514", "query": "where does creatine come from in the body", "answer": "glycine", "passage": "\"Arginine:glycine amidinotransferase\"\nis located in the cytoplasm, including the intermembrane space of the mitochondria, of the cells that make up those tissues. -Arginine:glycine amidinotransferase catalyses the first, which is also the committed step in the formation of creatine. The second step of the process, producing the actual creatine molecule, occurs solely in the cytosol, where the second enzyme, S-adenosylmethionine:guanidinoacetate methyltransferase (GAMT), is found. The creatine is then transported through the bloodstream and taken up through sodium-dependent creatine transporters by cells that require creatine. The crystal structure of AGAT was determined by Humm, Fritsche, Steinbacher, and Huber of the Max Planck Institute of"} +{"qid": "test2351", "pid": "15884582", "query": "where does creatine come from in the body", "answer": "arginine", "passage": "\"Creatine phosphate shuttle\"\nATP (by cytoplasmic creatine kinase) to be used as energy for muscle contraction. In some vertebrates, arginine phosphate plays a similar role. Creatine phosphate shuttle The creatine phosphate shuttle is an intracellular energy shuttle which facilitates transport of high energy phosphate from muscle cell mitochondria to myofibrils. This is part of phosphocreatine metabolism. In mitochondria, ATP levels are very high as a result of glycolysis, TCA cycle, oxidative phosphorylation processes, whereas creatine phosphate levels are low. This makes conversion of creatine to phosphocreatine a highly favored reaction. Phosphocreatine is a very-high-energy compound. It then diffuses from mitochondria to myofibrils. In"} +{"qid": "test2351", "pid": "10756095", "query": "where does creatine come from in the body", "answer": "kidneys", "passage": "\"Cerebral creatine deficiency\"\nat birth, with clinical findings becoming apparent during the first year of life, and progressing. Creatine is synthesized primarily in the liver and kidneys via a two-step enzymatic process. Defects in either of these two enzymes can cause a CCD. In order to pass the blood brain barrier, creatine requires a specialized transporter, encoded for by \"\"SLC6A8\"\". A defect in this transporter is responsible for the third CCD. Cerebral creatine deficiency Cerebral creatine deficiencies (CCD) are a small group of inherited disorders that result from defects in creatine biosynthesis and utilization. Commonly affected tissues include the brain and muscles. There"} +{"qid": "test2351", "pid": "17673816", "query": "where does creatine come from in the body", "answer": "liver", "passage": "\"Creatine transporter defect\"\nmajor role that the BBB has in the transport of creatine to the brain and unresponsiveness of oral creatine monohydrate supplements in CTD patients, future research will focus on working with the BBB to deliver creatine supplements. However, given the limited number of patients that have been identified with CTD, future treatment strategies must be more effective and efficient when recognizing individuals with CTD. Creatine transporter defect Creatine transporter defect (CTD) is an inborn error of creatine metabolism in which creatine is not properly transported to the brain and muscles due to defective creatine transporters. CTD is an X-linked disorder"} +{"qid": "test2353", "pid": "1900131", "query": "when did the continental congress vote to adopt the declaration of independence", "answer": "July 2, 1776", "passage": "\"George Read (American politician, born 1733)\"\nprotests. He was quite reluctant to pursue the option of outright independence. Nevertheless, from 1764, he led the Delaware Committee of Correspondence and was elected to serve along with the more radical McKean and Rodney in the First and Second Continental Congress from 1774 to 1777. He was frequently absent, and when the Congress voted on American Independence on July 2, 1776, Read surprised many by voting against it. That meant that Rodney had to ride overnight to Philadelphia to break the deadlock in Delaware's delegation for independence. However, when the Declaration of Independence was finally adopted, Read signed it"} +{"qid": "test2353", "pid": "1896424", "query": "when did the continental congress vote to adopt the declaration of independence", "answer": "July 2, 1776", "passage": "\"Button Gwinnett\"\nhis tenure in the Assembly, Gwinnett's chief rival was Lachlan McIntosh, and Lyman Hall was his closest ally. Gwinnett's rivalry with McIntosh began when McIntosh was appointed as brigadier general of the Georgia Continentals in 1776. Gwinnett voted in favor of the Declaration of Independence, adopted by Congress on July 2, 1776, two days before the \"\"fair copy,\"\" dated July 4, 1776, was presented to the Congress. He signed the famous parchment copy on August 2, 1776. After signing the Declaration, he was accompanied as far as Virginia by Carter Braxton, another of the signers, carrying a proposed state constitution"} +{"qid": "test2353", "pid": "494134", "query": "when did the continental congress vote to adopt the declaration of independence", "answer": "July 2, 1776", "passage": "\"Continental Congress\"\nthat the Continental Congress would have to convene once again. The Second Continental Congress convened on May 10, 1775, at Philadelphia's State House, passing the resolution for independence the following year on July 2, 1776, and publicly asserting the decision two days later with the Declaration of Independence. Thomas Jefferson of Virginia drafted the declaration, and John Adams was a leader in the debates in favor of its adoption. John Hancock of Massachusetts was the president during those debates. To govern during the American Revolutionary War, the Second Continental Congress continued, meeting at various locations, until it became the Congress"} +{"qid": "test2353", "pid": "494127", "query": "when did the continental congress vote to adopt the declaration of independence", "answer": "July 2, 1776", "passage": "\"Continental Congress\"\nCongress called \"\"Resolutions, Acts and Orders of Congress\"\", which gives a day-to-day description of debates and issues. Although the delegates in the early period were divided as to whether to break from Crown rule, the second Continental Congress on July 2, 1776, passed a resolution asserting independence, with no opposing vote recorded. The Declaration of Independence was issued two days later, declaring a new nation: the \"\"United States of America\"\". It established a Continental Army, giving command to one of its members, George Washington of Virginia. It waged war with Great Britain, made a militia treaty with France, and funded"} +{"qid": "test2353", "pid": "2293882", "query": "when did the continental congress vote to adopt the declaration of independence", "answer": "July 2, 1776", "passage": "\"Second Continental Congress\"\nSecond Continental Congress The Second Continental Congress was a convention of delegates from the Thirteen Colonies that started meeting in the spring of 1775 in Philadelphia, Pennsylvania. It succeeded the First Continental Congress, which met in Philadelphia between September 5, 1774, and October 26, 1774. The Second Congress managed the Colonial war effort and moved incrementally towards independence. It eventually adopted the Lee Resolution which established the new country on July 2, 1776, and it agreed to the United States Declaration of Independence on July 4, 1776. The Congress acted as the \"\"de facto\"\" national government of the United States"} +{"qid": "test2354", "pid": "4519056", "query": "where did the titanic sink at what ocean", "answer": "North Atlantic Ocean", "passage": "\"Labrador Current\"\nas it can carry icebergs into an area of the Atlantic where they are not usually found. The current has been known to transport icebergs as far south as Bermuda and as far east as the Azores. After the sinking of the RMS \"\"Titanic\"\" in 1912, the International Ice Patrol was set up to track icebergs, including those found in areas of the ocean where they are rarely located. Labrador Current The Labrador Current is a cold current in the North Atlantic Ocean which flows from the Arctic Ocean south along the coast of Labrador and passes around Newfoundland, continuing"} +{"qid": "test2355", "pid": "5540688", "query": "when did chicano studies become major studies programs on college campuses", "answer": "1972", "passage": "\"Latino studies\"\n1973. Student activism related to the demand for Puerto Rican Studies was not limited to CUNY, and effervesced across New York public campuses including Brooklyn, Lehman, Queens and Bronx Community Colleges. As Chicano and Puerto Rican Studies programs stemmed largely (but not exclusively) from the east and west coasts, institutions in the American Midwest pioneered some of the first academic departments with a multinational or transnational Latino Studies focus. These programs included the Center for Chicano-Boricua Studies at Wayne State University (established in 1972) and the Chicano-Boriqueño Studies Program (now the Latino Studies Program) at Indiana University (established in 1976)."} +{"qid": "test2355", "pid": "8459534", "query": "when did chicano studies become major studies programs on college campuses", "answer": "By 1975", "passage": "\"Chicana/o studies\"\nto recruit Chicano teachers and administration within the schools to support students and research. Further support for Chicano studies came in the form of the National Association for Chicana and Chicano Studies (NACCS) which was created in 1972 in San Antonio, Texas. The NACCS allows scholars in Chicano studies to exchange ideas, share research, communicate and it also has an annual conference. The conferences were important to help bring together scholars and legitimize Chicano studies, since other disciplines have similar annual conferences. By 1975, many Chicano studies programs were in place at major universities. The ten years between 1977 and"} +{"qid": "test2355", "pid": "14064282", "query": "when did chicano studies become major studies programs on college campuses", "answer": "1972", "passage": "\"Charley Trujillo\"\nlife. Charley was able to pursue an education through the G.I. Bill and working part-time jobs. He attended Fresno City College from 1971 to 1972 and then Transferred to UC Berkeley where he received his BA in Chicano studies as class of 1976. He continued in the Teaching Credential Program in 1977. From there he continued his education at San Jose State University earning his MA in Chicano Studies. From 1978 to 1991 Charley Trujillo was a professor of Ethnic Studies, Social Sciences and Chicano Studies at De Anza College. Charley felt as though Chicanos are a demographic that have"} +{"qid": "test2355", "pid": "15837238", "query": "when did chicano studies become major studies programs on college campuses", "answer": "1972", "passage": "\"Judithe Hernández\"\nOtis College of Art and Design) in Los Angeles. In 1972, after earning a B.F.A. at Otis, she began graduate studies there. When Carlos Almaraz enrolled in the graduate program that year, it marked the beginning of a long friendship and professional association as members of Los Four. Inspired by recent events such as the 1968 East LA student walkouts, she, along with Almaraz, became involved in the Chicano civil-rights movement and worked on such projects as the Chicano Moratorium Against the War. During her time at Otis, Hernández studied drawing with the renowned African-American artist Charles White who became"} +{"qid": "test2355", "pid": "4756539", "query": "when did chicano studies become major studies programs on college campuses", "answer": "1972", "passage": "\"Chicago State University\"\nbecoming Chicago State College in 1967 and Chicago State University in 1971, a year before moving to a new campus. By the mid-1960s the college's infrastructure was deteriorating and tensions between the majority white student body and the mostly black surrounding neighborhood were on the rise. Like many campuses, Chicago State College experienced a burst of student activism in 1968 and 1969 as black students and faculty demanded greater attention to their needs and interests and closer relations with the neighborhood. The administration responded by creating an African-American Studies program and cultural center. In 1972, the university moved to its"} +{"qid": "test2357", "pid": "19692037", "query": "who carried the usa flag in opening ceremony", "answer": "Erin Hamlin", "passage": "\"United States at the 2018 Winter Olympics\"\nDonald Trump, who has been at loggerheads with Kim Jong-un, has issued mixed messages. Concerns were assuaged when it was announced Vice President Mike Pence and wife Karen would attend the Opening Ceremony. Luge athlete Erin Hamlin carried the flag during the opening ceremony. Following a vote, which ended up in a 4-4 tie between Hamlin and speed skater Shani Davis, the winner was decided via a coin toss in accordance with the rules. Davis eventually skipped the opening ceremony, citing his training schedule. United States at the 2018 Winter Olympics The United States of America competed at the 2018"} +{"qid": "test2359", "pid": "12441970", "query": "who sang never gonna let you go", "answer": "Joe Pizzulo and Leeza Miller", "passage": "\"Never Gonna Let You Go (Sérgio Mendes song)\"\nNever Gonna Let You Go (Sérgio Mendes song) \"\"Never Gonna Let You Go\"\" is a popular song from 1983 credited to Brazilian musician and bandleader Sérgio Mendes and sung by Joe Pizzulo and Leeza Miller. Songwriters Cynthia Weil (lyrics) and Barry Mann (music) composed the song, which appears on Mendes' 1983 self-titled album. Weil and Mann originally submitted \"\"Never Gonna Let You Go\"\" to American funk band Earth, Wind & Fire, but they decided not to record the song. Dionne Warwick recorded the song on her 1982 album \"\"Friends in Love\"\". Stevie Woods had also recorded the song for his"} +{"qid": "test2359", "pid": "12441972", "query": "who sang never gonna let you go", "answer": "Joe Pizzulo and Leeza Miller", "passage": "\"Never Gonna Let You Go (Sérgio Mendes song)\"\nairplay chart the song debuted #26 on the May 13, 1983 issue; after six weeks it reached and peaked at #7 for one week; the single stayed on the top 10 for three weeks and remained on the chart for twelve weeks.. The song was successful, especially in Brazil, being played on Rede Globo's soap opera Final Feliz. Never Gonna Let You Go (Sérgio Mendes song) \"\"Never Gonna Let You Go\"\" is a popular song from 1983 credited to Brazilian musician and bandleader Sérgio Mendes and sung by Joe Pizzulo and Leeza Miller. Songwriters Cynthia Weil (lyrics) and Barry Mann"} +{"qid": "test2359", "pid": "14742695", "query": "who sang never gonna let you go", "answer": "Joe Pizzulo", "passage": "\"Sérgio Mendes (album)\"\nSérgio Mendes (album) Sérgio Mendes is the 1983 studio album by Sérgio Mendes on A&M Records, his first Top 40 album in nearly a decade and a half, and was accompanied by his biggest chart single ever, \"\"Never Gonna Let You Go\"\", a song written by Barry Mann & Cynthia Weil that reached #4 on the \"\"Billboard\"\" Hot 100 charts. In his review of the album, AllMusic’s Richard S. Ginell gave it two stars (of a possible five). He took aim at the hit \"\"Never Gonna Let You Go\"\", calling it “a saccharine ballad, where Joe Pizzulo and Leza Miller"} +{"qid": "test236", "pid": "14065422", "query": "what is the 3rd largest state in usa", "answer": "Alaska", "passage": "\"Alaska USA Federal Credit Union\"\nAlaska USA Federal Credit Union Alaska USA Federal Credit Union is a credit union headquartered in Anchorage, Alaska, chartered and regulated under the authority of the National Credit Union Administration (NCUA). In the United States, Alaska USA is among the largest credit unions by assets, and among the 10 largest credit unions by membership. Alaska USA is a federally chartered, member-owned, not-for-profit financial cooperative with more than 100 branch offices and service locations throughout Alaska, Arizona’s Maricopa County, California’s San Bernardino County, and Washington State. As of 2017, Alaska USA had $6.9 billion in assets and more than 600,000 members."} +{"qid": "test236", "pid": "5624090", "query": "what is the 3rd largest state in usa", "answer": "California", "passage": "Esperanto-USA\nEsperanto-USA Esperanto-USA (E-USA) is the largest organization for speakers and supporters of Esperanto in the United States. It was founded in 1952 as the Esperanto League for North America (ELNA) in Sacramento, California. Headquartered in Emeryville, California, Esperanto-USA is a 501(c)3 nonprofit organization and the U.S. affiliate of the Universal Esperanto Association. Phil Dorcas is President of E-USA, and Ben Speakmon is Vice-President. Esperanto-USA administers the largest Esperanto-language book service in the Americas. It publishes a bimonthly bulletin \"\"Usona Esperantisto\"\". It also publishes reference works about Esperanto. The organization's leadership consists of a president, vice-president, secretary, treasurer, and nine directors;"} +{"qid": "test236", "pid": "14065426", "query": "what is the 3rd largest state in usa", "answer": "Alaska", "passage": "\"Alaska USA Federal Credit Union\"\nBarstow, Victorville, Big Bear, and Hesperia, California. In 2014, Alaska USA opened its first Arizona branch in Glendale. Shortly after in 2015, the credit union was granted authorization by the NCUA to qualify members in underserved areas in Maricopa County. Alaska USA Federal Credit Union Alaska USA Federal Credit Union is a credit union headquartered in Anchorage, Alaska, chartered and regulated under the authority of the National Credit Union Administration (NCUA). In the United States, Alaska USA is among the largest credit unions by assets, and among the 10 largest credit unions by membership. Alaska USA is a federally chartered,"} +{"qid": "test2360", "pid": "2441437", "query": "what was the immediate catalyst to the civil war", "answer": "slavery", "passage": "\"Origins of the American Civil War\"\nOrigins of the American Civil War Historians debating the origins of the American Civil War focus on the reasons why seven Southern states declared their secession from the United States (the Union), why they united to form the Confederate States of America (simply known as the \"\"Confederacy\"\"), and why the North refused to let them go. While most historians agree that conflicts over slavery caused the war, they disagree sharply regarding which kinds of conflict—ideological, economic, political, or social—were most important. The primary catalyst for secession was slavery, most immediately the political battle over the right of Southerners to bring"} +{"qid": "test2360", "pid": "88395", "query": "what was the immediate catalyst to the civil war", "answer": "slavery", "passage": "\"Confederate States of America\"\nthe South calling for union in the event of Lincoln's election. To the Secessionists the Republican intent was clear: to contain slavery within its present bounds, and, eventually, to eliminate it entirely. A Lincoln victory presented them with a momentous choice (as they saw it), even before his inauguration – \"\"the Union without slavery, or slavery without the Union\"\". The immediate catalyst for secession was the victory of the Republican Party and the election of Abraham Lincoln as president in the 1860 elections. American Civil War historian James M. McPherson suggested that, for the Southerners, the most ominous feature of"} +{"qid": "test2360", "pid": "18088890", "query": "what was the immediate catalyst to the civil war", "answer": "slavery", "passage": "\"School integration in the United States\"\nstudent, Caroline Van Vronker, attended the school in 1843. The integration of all American schools was a major catalyst for the civil rights action and racial violence that occurred in the United States during the latter half of the 20th century. After the Civil War, the first legislation providing rights to African-Americans was passed. The 13th, 14th, and 15th Amendments, also known as the Reconstruction Amendments, which were passed between 1865 and 1870, abolished slavery, guaranteed citizenship and protection under the law, and prohibited racial discrimination in voting, respectively. Despite these Reconstruction amendments, blatant discrimination took place through what would"} +{"qid": "test2360", "pid": "1003822", "query": "what was the immediate catalyst to the civil war", "answer": "slavery", "passage": "\"Dred Scott v. Sandford\"\nStates. Dred Scott, an enslaved man of \"\"the negro African race\"\" who had been taken by his owners to free states and territories, attempted to sue for his freedom. In a 7–2 decision written by Chief Justice Roger B. Taney, the court denied Scott's request. The decision was only the second time that the Supreme Court had ruled an Act of Congress to be unconstitutional. Although Taney hoped that his ruling would settle the slavery question, the decision immediately spurred vehement dissent from anti-slavery elements in the North and proved to be an indirect catalyst for the American Civil War."} +{"qid": "test2360", "pid": "15121853", "query": "what was the immediate catalyst to the civil war", "answer": "slavery", "passage": "\"Slavery during the American Civil War\"\nSlavery during the American Civil War Slavery played the central role during the American Civil War. The primary catalyst for secession was slavery, especially Southern political leaders' resistance to attempts by Northern antislavery political forces to block the expansion of slavery into the western territories. Slave life went through great changes, as the South saw Union Armies take control of broad areas of land. During and before the war, slaves played an active role in their own emancipation, and thousands of slaves escaped from bondage during the war. On January 1, 1863, President Abraham Lincoln announced the Emancipation Proclamation, making"} +{"qid": "test2360", "pid": "15121910", "query": "what was the immediate catalyst to the civil war", "answer": "slavery", "passage": "\"Slavery during the American Civil War\"\nKlux Klan and the growth of belief in the Lost Cause of the Confederacy movement. Slavery during the American Civil War Slavery played the central role during the American Civil War. The primary catalyst for secession was slavery, especially Southern political leaders' resistance to attempts by Northern antislavery political forces to block the expansion of slavery into the western territories. Slave life went through great changes, as the South saw Union Armies take control of broad areas of land. During and before the war, slaves played an active role in their own emancipation, and thousands of slaves escaped from bondage"} +{"qid": "test2361", "pid": "7353013", "query": "what happens to water that infiltrates the soil if it is not absorbed by the roots of plants", "answer": "runoff", "passage": "\"Tiger bush\"\nbush is present, plant growth is water-limited - the shortage of rainfall prevents vegetation from covering the entire landscape. Instead, trees and shrubs are able to establish by either tapping soil moisture reserves laterally or by sending roots to deeper, wetter soil depths. By a combination of plant litter, root macropores, and increased surface roughness, infiltration into the soil around the base of these plants is enhanced. Surface runoff arriving at these plants will thus likely to become run-on, and infiltrate into the soil. By contrast, the areas between these larger plants contain a greater portion of bare ground and"} +{"qid": "test2361", "pid": "15659612", "query": "what happens to water that infiltrates the soil if it is not absorbed by the roots of plants", "answer": "runoff", "passage": "\"Land imprinter\"\ngrazing of domestic livestock. But due to overgrazing, erosion, and other environmental factors, half of the world's rangeland is now lightly to moderately degraded, and 5% is severely degraded. Desertifications is expanding and threatens one-third of the world's dry land. Plants and their root systems increase the quantity and size of macropores in soil, allowing rainwater to infiltrate. When ranges and grassland are overgrazed, soil becomes stripped of cover plants. Denuded soil has reduced macroporosity, reducing water infiltration and leading to runoff (Figure 2). The natural state of grassland is rough and open (Figure 2, left). Plants create small crests"} +{"qid": "test2362", "pid": "15952152", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2012 Cincinnati Reds season\"\n= Home runs; RBI = Runs batted in; AVG = Batting average; SB = Stolen bases\"\" \"\"Full batting stats can be found here: \"\" \"\"Note: G = Games played; GS = Games Started IP = Innings Pitched; W = Wins; L = Losses; SV = Saves; HLD = Holds; ERA = Earned Run Average; SO= Strikeouts; WHIP = Walks and Hits Per Innings Pitched\"\" \"\"Full pitching stats can be found here: \"\" \"\"Standings as of: September 11, 2012 2012 Cincinnati Reds season The 2012 Cincinnati Reds season was the 123rd season for the franchise in Major League Baseball, and their"} +{"qid": "test2362", "pid": "14979415", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2011 Cincinnati Reds season\"\nSeptember 28, 2011\"\" \"\"Stats through September 28, 2011\"\" \"\"G=Games Played ; W=Wins ; L=Losses ; SV=Saves ; IP=Innings Pitched ; ERA = Earned Run Average ; SO=Strikeouts ; WHIP=Walks and Hits Per Inning Pitched.\"\" \"\"Stats through September 28, 2011\"\" \"\"Standings as of: September 14, 2011\"\" 2011 Cincinnati Reds season The 2011 Cincinnati Reds season was the 122nd season for the franchise in Major League Baseball. The team attempted to return to the postseason for the second consecutive year following their NL Central division championship in 2010. Dusty Baker returned for his fourth year managing the Reds and his eighteenth season"} +{"qid": "test2362", "pid": "17602991", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2014 Los Angeles Dodgers season\"\nfor the second straight year. \"\"List does not include pitchers. Stats in bold are the team leaders.\"\" \"\"Note: G = Games played; AB = At bats; R = Runs; H = Hits; 2B = Doubles; 3B = Triples; HR = Home runs; RBI = Runs batted in; BB = Walks; SO = Strikeouts; SB = Stolen bases; Avg. = Batting average; OBP = On Base Percentage; SLG = Slugging; OPS = On Base + Slugging\"\" Batting stats from MLB.com. Stats in bold are the team leaders. \"\"Note: W = Wins; L = Losses; ERA = Earned run average; G"} +{"qid": "test2362", "pid": "17580490", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2014 Philadelphia Phillies season\"\n\"\"All players who made an appearance for the Phillies during 2014 are included.\"\" \"\"List does not include pitchers. Stats in bold indicate team leaders (among players with at least 100 at-bats for percentages). Only stats recorded with Phillies are included.\"\" \"\"Note: G = Games played; AB = At bats; R = Runs; H = Hits; 2B = Doubles; 3B = Triples; HR = Home runs; RBI = Runs batted in; BB = Walks; SO = Strikeouts; SB = Stolen bases; Avg. = Batting average; OBP = On Base Percentage; SLG = Slugging; OPS = On Base + Slugging\"\" \"\"Stats in"} +{"qid": "test2362", "pid": "17581235", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2014 Arizona Diamondbacks season\"\n= Stolen bases\"\" Complete batting stats can be found here . \"\"Note: W = Wins; L = Losses; ERA = Earned run average; G = Games pitched; GS = Games started; SV = Saves; IP = Innings pitched; H = Hits; R = Runs allowed; ER = Earned runs allowed; BB = Walks allowed; K = Strikeouts\"\" Complete pitching stats can be found here . 2014 Arizona Diamondbacks season The Arizona Diamondbacks' 2014 season was the franchise's 17th season in Major League Baseball and their 17th season at Chase Field. The team finished with a record of 64–98, placing last"} +{"qid": "test2362", "pid": "10631840", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"1998 Cincinnati Reds season\"\n1998 Cincinnati Reds season The Cincinnati Reds' 1998 season was a season in American baseball. It consisted of the Cincinnati Reds attempting to win the National League Central. \"\"Note: Pos = Position; G = Games played; AB = At bats; H = Hits; Avg. = Batting average; HR = Home runs; RBI = Runs batted in\"\" \"\"Stats through the end of the 1998 season\"\" \"\"Note: G = Games played; AB = At bats; H = Hits; Avg. = Batting average; HR = Home runs; RBI = Runs batted in\"\" \"\"Note: G = Games pitched; IP = Innings pitched; W ="} +{"qid": "test2362", "pid": "18290824", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2015 Los Angeles Dodgers season\"\nof the series, a solo shot in the sixth inning, to lead the Mets to a 3–2 victory and the series win. \"\"List does not include pitchers. Stats in bold are the team leaders.\"\" \"\"Note: G = Games played; AB = At bats; R = Runs; H = Hits; 2B = Doubles; 3B = Triples; HR = Home runs; RBI = Runs batted in; BB = Walks; SO = Strikeouts; SB = Stolen bases; Avg. = Batting average; OBP = On Base Percentage; SLG = Slugging; OPS = On Base + Slugging\"\" Stats in bold are the team leaders. \"\"Note:"} +{"qid": "test2362", "pid": "19766152", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2017 Los Angeles Dodgers season\"\nhis 33rd strikeout. Morton pitched four innings of relief to end the game, earning the win, as the Astros won their first World Series. \"\"List does not include pitchers. Stats in bold are the team leaders..\"\" \"\"Note: G = Games played; AB = At Bats; R = Runs; H = Hits; 2B = Doubles; 3B = Triples; HR = Home Runs; RBI = Runs Batted In; BB = Walks; SO = Strikeouts; SB = Stolen Bases; Avg. = Batting Average; OBP = On Base Percentage; SLG = Slugging; OPS = On Base + Slugging\"\" Stats in bold are the team"} +{"qid": "test2362", "pid": "17585263", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2014 Cincinnati Reds season\"\nEarned run average; G = Games pitched; GS = Games started; SV = Saves; IP = Innings pitched; H = Hits; ER = Earned runs allowed; BB = Walks allowed; K = Strikeouts\"\" Complete pitching stats can be found here 2014 Cincinnati Reds season The 2014 Cincinnati Reds season was the 125th season for the franchise in Major League Baseball and their 12th at Great American Ball Park. They finished 76–86, in fourth place in the Central division. (through September 27) \"\"Both tables are sortable.\"\" \"\"Note: G = Games played; AB = At bats; R = Runs scored; H ="} +{"qid": "test2362", "pid": "13228334", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"1871 New York Mutuals season\"\n1871 New York Mutuals season The New York Mutuals baseball team (1857 – 1876) joined the National Association for the league's debut season in 1871. The Mutuals went 16-17 and finished in fifth place. Pitcher Rynie Wolters led the NA in runs batted in, with 44. The 1871 regular playing season stats: \"\"Note: Pos = Position; G = Games played; AB = At bats; H = Hits; Avg. = Batting average; HR = Home runs; RBI = Runs batted in\"\" \"\"Note: G = Games played; AB = At bats; H = Hits; Avg. = Batting average; HR = Home runs;"} +{"qid": "test2362", "pid": "13930391", "query": "what does g stand for in baseball stats", "answer": "Games", "passage": "\"2010 Cincinnati Reds season\"\nthe top of the first innings. Chase Utley added another run to the lead by hitting a solo home run in the fifth inning. \"\"Note: Pos = Position; G = Games played; AB = At Bats; H = Hits; Avg. = Batting Average; HR = Home Runs; RBI = Runs Batted In\"\" \"\"Stats through October 2, 2010\"\" \"\"Note: Pos = Position; G = Games played; AB = At Bats; H = Hits; Avg. = Batting Average; HR = Home Runs; RBI = Runs Batted In\"\" \"\"Stats through October 2, 2010\"\" \"\"Stats Through October 2, 2010\"\" \"\"G=Games Played ; W=Wins ;"} +{"qid": "test2363", "pid": "19066458", "query": "the concept of micro financing was developed by who in 1976", "answer": "Muhammad Yunus", "passage": "\"Alexandre Allard\"\nhad fallen into disarray, and publication stopped in late 2007. The French architect Jean Nouvel turned to Allard and François Fontès in order to relaunch the magazine by returning to its original spirit. Since November 2009, a new editorial board “open to all movements and all inventions,” was formed including Frank Gehry, Philippe Starck, Rudy Ricciotti, Winy Maas, among others. Groupe Allard founded by Allard in 2009 has participated in the conception and the financing of PlaNet Finance projects. In synch with the visionary strategy of Muhammad Yunus, the organization created by Jacques Attali focuses on battling poverty through micro-financed"} +{"qid": "test2364", "pid": "183558", "query": "the golden age of india took place during the rule of the", "answer": "Gupta Empire", "passage": "\"History of India\"\nsubcontinent was conquered by the Maurya Empire during the 4th and 3rd centuries BCE. From the 3rd century BCE onwards Prakrit and Pali literature in the north and the Tamil Sangam literature in southern India started to flourish. Wootz steel originated in south India in the 3rd century BCE and was exported to foreign countries. During the Classical period, various parts of India were ruled by numerous dynasties for the next 1,500 years, among which the Gupta Empire stands out. This period, witnessing a Hindu religious and intellectual resurgence, is known as the classical or \"\"Golden Age of India\"\". During"} +{"qid": "test2364", "pid": "2544226", "query": "the golden age of india took place during the rule of the", "answer": "Gupta Empire", "passage": "\"History of the world\"\nin present-day India; in the 3rd century BCE, most of South Asia was united to the Maurya Empire by Chandragupta Maurya and flourished under Ashoka the Great. From the 3rd century CE, the Gupta dynasty oversaw the period referred to as ancient India's Golden Age. From the 4th to 6th centuries, northern India was ruled by the Gupta Empire. In southern India, three prominent Dravidian kingdoms emerged: the Cheras, Cholas, and Pandyas. The ensuing stability contributed to heralding in the golden age of Hindu culture in the 4th and 5th centuries. In Europe, the Roman Empire, centered in present-day Italy,"} +{"qid": "test2364", "pid": "183605", "query": "the golden age of india took place during the rule of the", "answer": "Gupta Empire", "passage": "\"History of India\"\nClassical period begins after the decline of the Maurya Empire, and the corresponding rise of the Shunga dynasty and Satavahana dynasty. The Gupta Empire (4th–6th century) is regarded as the \"\"Golden Age\"\" of Hinduism, although a host of kingdoms ruled over India in these centuries. Also, the Sangam literature flourished from the 3rd century BCE to the 3rd century CE in southern India. During this period, India's economy is estimated to have been the largest in the world, having between one-third and one-quarter of the world's wealth, from 1 CE to 1000 CE. The Shungas originated from Magadha, and controlled"} +{"qid": "test2364", "pid": "1850920", "query": "the golden age of india took place during the rule of the", "answer": "Chandragupta II", "passage": "\"Chandragupta II\"\nChandragupta II Chandragupta II (also known as Chandragupta Vikramaditya) was one of the most powerful emperors of the Gupta Empire in India. His rule spanned during which the Gupta Empire reached its peak. Art, architecture, and sculpture flourished, and the cultural development of ancient India achieved new heights. The period of prominence of the Gupta dynasty is often referred to as the \"\"Golden Age\"\" of India. Chandragupta II was the son of the previous ruler, Samudragupta. He attained success by pursuing both a favourable marital alliance and an aggressive expansionist policy in which his father and grandfather (Chandragupta I) set"} +{"qid": "test2365", "pid": "5084105", "query": "when is the world consumer right day celebrated", "answer": "15 March", "passage": "\"Consumers International\"\ninterest in EU and US policy making – at its office in London. On 15 March 1962 former US President John F. Kennedy said: Consumer rights activist Anwar Fazal working for Consumers International at the time, later proposed the observance of a 'World Consumer Rights Day' marking that date, and on 15 March 1983 consumer organisations started observing that date as an occasion to promote basic rights of consumers. World Consumer Rights Day is an annual occasion for celebration and solidarity within the international consumer movement. Participants observe the day by promoting the basic rights of all consumers, demanding that"} +{"qid": "test2365", "pid": "5084106", "query": "when is the world consumer right day celebrated", "answer": "15 March every year", "passage": "\"Consumers International\"\nthose rights are respected and protected, and protesting about the market abuses and social injustices which undermine them. World Consumer Rights Day is celebrated on 15 March every year. The theme for 2018 is Fairer Digital Marketplaces. Consumers International is calling for: 1. Access to fair and secure internet as half of the world is still offline. 2. Action against scams and fraud. 3. Better general consumer protection online. Consumers International seek to achieve changes in government policy and corporate behaviour, whilst raising awareness of consumer rights and responsibilities. Its campaigns often fall under the themes of consumer justice and"} +{"qid": "test2366", "pid": "3558669", "query": "what is the purpose of a jake brake", "answer": "slowing the vehicle", "passage": "\"Compression release engine brake\"\nbrand products. Compression release engine brake A compression release engine brake, frequently called a Jacobs brake or Jake brake, is an engine braking mechanism installed on some diesel engines. When activated, it opens exhaust valves in the cylinders after the compression cycle, releasing the compressed gas trapped in the cylinders, and slowing the vehicle. The term \"\"Jake brake\"\", which properly refers to the Jacobs brand of engine brakes, has become a genericized trademark, and is often used to refer to engine brakes or compression release engine brakes in general, especially on large vehicles or heavy equipment. The name is derived"} +{"qid": "test2366", "pid": "3558663", "query": "what is the purpose of a jake brake", "answer": "slowing the vehicle", "passage": "\"Compression release engine brake\"\nCompression release engine brake A compression release engine brake, frequently called a Jacobs brake or Jake brake, is an engine braking mechanism installed on some diesel engines. When activated, it opens exhaust valves in the cylinders after the compression cycle, releasing the compressed gas trapped in the cylinders, and slowing the vehicle. The term \"\"Jake brake\"\", which properly refers to the Jacobs brand of engine brakes, has become a genericized trademark, and is often used to refer to engine brakes or compression release engine brakes in general, especially on large vehicles or heavy equipment. The name is derived from the"} +{"qid": "test2368", "pid": "12770383", "query": "where did the allies go after north africa", "answer": "Italy", "passage": "\"Vichy France\"\nlong-term goal was to clear German and Italian forces from North Africa, enhance naval control of the Mediterranean, and prepare for an invasion of Italy in 1943. The Vichy forces initially resisted, killing 479 Allied forces and wounding 720. Vichy Admiral Darlan initiated co-operation with the Allies. The Allies recognised Darlan's self-nomination as High Commissioner of France (head of civil government) for North and West Africa. He ordered Vichy forces there to cease resisting and co-operate with the Allies, and they did so. By the time the Tunisia Campaign was fought, the French forces in North Africa had gone over"} +{"qid": "test2368", "pid": "9668427", "query": "where did the allies go after north africa", "answer": "Italy", "passage": "\"Suffolk Regiment\"\ncontinued to wear their Suffolk Regiment cap badge on the black beret of the Royal Armoured Corps as did all infantry units converted this way. Equipped with Churchill tanks the regiment landed at Algiers in 1943, fighting at the Battle of Medjez-el Bab in the Tunisia Campaign in April 1943. After the end of the fighting in North Africa the regiment remained there until April 1944 when, with the rest of the brigade, it landed at Naples, Italy, destined for service in the Italian campaign, where they fought in Operation Diadem, where the Allies finally broke out of the Gustav"} +{"qid": "test2368", "pid": "9683294", "query": "where did the allies go after north africa", "answer": "Italy", "passage": "\"Border Regiment\"\nNorth Africa in May 1943 and in July it took part in Operation Ladbroke, part of the Allied invasion of Sicily, in which the battalion suffered heavy casualties, with some gliders being cast off too early due to inexperienced pilots and, as a result, many men were drowned. The battalion, which had gone to Sicily with a strength of 796 officers and men, returned to North Africa with just 200. Due to the heavy casualties, the battalion did not participate in the Allied invasion of Italy and was sent to the United Kingdom. In September 1944, it fought in Operation"} +{"qid": "test2368", "pid": "1289206", "query": "where did the allies go after north africa", "answer": "Italy", "passage": "\"Free France\"\nin French Morocco and Algeria. The long-term goal was to clear German and Italian troops from North Africa, enhance naval control of the Mediterranean, and prepare an invasion of Italy in 1943. The Allies had hoped that Vichy forces would offer only token resistance to the Allies, but instead they fought hard, incurring heavy casualties. As a French foreign legionnaire put it after seeing his comrades die in an American bombing raid: \"\"Ever since the fall of France, we had dreamed of deliverance, but we did not want it that way\"\". After the 8 November 1942 putsch by the French"} +{"qid": "test2368", "pid": "18946064", "query": "where did the allies go after north africa", "answer": "Italy", "passage": "\"Arthur Jeffress\"\nNazis. The BAAC had put their activities on hold. So Arthur signed up with the American Field Service (AFS) as an ambulance driver. Soon he was being shipped out again, the target was the same to support the North Africa campaign. This time he safely made it to his unit in Africa. Arthur joined the Allies’ North Africa campaign and rose in rank from Second Lieutenant to Captain. He and his team moved through Egypt into Libya and then into his beloved Italy, where he was at the forefront of the Allied advance. Though a non-combatant, his was a vital"} +{"qid": "test2368", "pid": "7309165", "query": "where did the allies go after north africa", "answer": "Italy", "passage": "\"History of Western civilization\"\nin Germany, where The Holocaust was perpetrated. Eleven million people – six million of them Jews – were systematically murdered by the German nazis by 1945. From 1943 on, the Allies gained the upper hand. American and British troops first liberated North Africa from the Germans and Italians. Next they invaded Italy, where Mussolini was deposed by the king and later was killed by Italian partisans. Italy surrendered and came under Allied occupation. After the liberation of Italy, American, British, and Canadian troops crossed the English Channel and liberated Normandy, France, from German rule after great loss of life. The"} +{"qid": "test2369", "pid": "10230681", "query": "where does tropic of cancer pass in india", "answer": "West Bengal", "passage": "\"Climate of West Bengal\"\nthe minimum temperature can often drop to the 5 to 7 degree C mark. Occasionally slight rainfall occurs under the influence of low depressions in northwest India. These is known as' \"\"western disturbances'.\"\" The Tropic of Cancer passes 6 km north of Nabadwip, so, according to latitude, the northern part of the state falls in the temperate belt and the southern part fall in the tropical belt. But the southern part receives adequate rainfall and because of maritime influence is not severely hot. Barring the mountainous parts of Darjeeling and Jalpaiguri, the entire state experiences a warm wet tropical monsoon"} +{"qid": "test2369", "pid": "6523488", "query": "where does tropic of cancer pass in india", "answer": "Madhya Pradesh", "passage": "\"Ujjain district\"\nUjjain district Ujjain district is a district of Madhya Pradesh state in central India. The historic city of Ujjain is the district headquarters. Tropic of cancer passes through Ujjain. The district has an area of 6,091 km², and a population of 1,709,885 (2001 census), a 24% increase from its 1991 population of 1,386,465. According to the 2011 census Ujjain District has a population of 1,986,597, roughly equal to the nation of Slovenia or the US state of New Mexico. This gives it a ranking of 233rd in India (out of a total of 640). The district has a population density"} +{"qid": "test2369", "pid": "13721381", "query": "where does tropic of cancer pass in india", "answer": "Madhya Pradesh", "passage": "\"Sapta Puri\"\nand it was located on the prime or first meridian (of longitude) established on the canons of Hindu astronomy. According to Indian astronomy, the first meridian of longitude passes through Ujjain. The modern calculations have established that the Tropic of Cancer passes through Ujjain. Ujjain is about south from Delhi, the capital city of India, and west of Bhopal, the provincial capital of Madhya Pradesh. It is away from Ahmedabad, and north-west of Mumbai. Varanasi () also called Kashi, Benares, is an ancient city, said to be the oldest inhabited one. The city was known by several names such as"} +{"qid": "test2369", "pid": "17331066", "query": "where does tropic of cancer pass in india", "answer": "Gujarat", "passage": "\"Nakhatrana Taluka\"\nShiva on the top of the hill. It is just 20 km away from the village of Nakhatrana on the way to Nani Aral village. Dhinodhar Hill has an elevation of 1190 feet, or 361 meters. The Tropic of Cancer (or Kurk Vrut) passes through the southern tip of the temple. Other places in Nakhatrana Taluka include: Nakhatrana Taluka has seventy-seven panchayat villages, and a total of 133 villages. Nakhatrana Taluka Nakhatrana Taluka is a taluka (administrative subdivision) in Kutch District, Gujarat, India. Its administrative centre is the village of Nakhatrana. The taluka covers . In the 2001 India census,"} +{"qid": "test2369", "pid": "6523491", "query": "where does tropic of cancer pass in india", "answer": "Madhya Pradesh", "passage": "\"Ujjain district\"\nwhich will be known as Vikramiditya Knowledge City. The city will be mainly used for the education sector and is a part of the ambitious Delhi Mumbai Industrial Corridor project. The city will come up near Narwar village on Dewas-Ujjain Road. The fittest and attractive IPS officer,Mr. Sachin Atulkar currently posted here. Ujjain district Ujjain district is a district of Madhya Pradesh state in central India. The historic city of Ujjain is the district headquarters. Tropic of cancer passes through Ujjain. The district has an area of 6,091 km², and a population of 1,709,885 (2001 census), a 24% increase from"} +{"qid": "test2369", "pid": "13947531", "query": "where does tropic of cancer pass in india", "answer": "West Bengal", "passage": "\"Tropic of Cancer (TV series)\"\nmeeting turtles hatching in Sur. Episode 4 sees him travel across India from Gujarat through Madhya Pradesh, Jharkhand and West Bengal visiting places such as the Rann of Kutch, Ujain and Kolkata. Episode 5 sees him travel across Bangladesh by water to Dhaka and head on to the Indian border and cross over into Tripura. He discovers the rainforest being cut down before heading to Mizoram and on to Burma where he treks to a Chin village before having to turn back to India. The final episode sees him visit Laos and the Golden Triangle as well as Luang Prabang"} +{"qid": "test2369", "pid": "15329173", "query": "where does tropic of cancer pass in india", "answer": "Gujarat", "passage": "Kherva\nKherva Kherva is a village in the Mehsana District, Gujarat, India, situated on State Highway 73 between Gandhinagar and Mehsana. It borders the following villages: Devarasan, Kadavasan, Mulsan, Jagudan, Sanganpur, Punasan, Hebuva, Udalpur, Gunjala, Dharusan, and Damnava. The nearest railway stations are 1) Jagudan, located 4 km from Kherva, and 2) Mehsana 8 km away. The Tropic of Cancer passes nearby Kherva, at Ditasan. Kherva Village is prosperous because of its location 7 km away from the Ahmedabad-to-Mehsana toll highway and railways in Jagudan Village and Mehsana City. Kherva has an advanced irrigation facility which draws water from the Sujlam"} +{"qid": "test237", "pid": "16774291", "query": "who sings why does it hurt when i pee", "answer": "Frank Zappa", "passage": "\"Joe's Garage (song)\"\nJoe's Garage (song) \"\"Joe's Garage\"\" is a single on Frank Zappa's 1979 album \"\"Joe's Garage Act I\"\". After the introductory track, \"\"The Central Scrutinizer\"\", this song begins the story of Joe's Garage. Although it only charted in Norway and Sweden (where it was a top 20 hit in both countries), it was one of Zappa's songs which had the most airplay on American FM radio, at the time still album-centered. The song was played in concert from 1980 to 1988 along with the song \"\"Why Does it Hurt When I Pee?\"\" in all tours of Zappa's after the single's release."} +{"qid": "test237", "pid": "17063325", "query": "who sings why does it hurt when i pee", "answer": "Frank Zappa", "passage": "\"Phil Kaufman (producer)\"\nBrothers, although he had no prior tour managing experience. The song \"\"Why Does It Hurt When I Pee?\"\" from Frank Zappa's album \"\"Joe's Garage\"\" tells the story of Kaufman's \"\"urination problems\"\". After Parson's death from an accidental drug overdose, Kaufman borrowed a hearse and drove to Los Angeles International Airport, convincing airline staff to release Parsons' body to him. According to Kaufman, he had made a pact with Parsons prior to his death regarding handling of their remains in the event of either Parson's or Kaufman's death. The 2003 movie \"\"Grand Theft Parsons\"\" follows Kaufman taking Parsons' body and burning"} +{"qid": "test2370", "pid": "15002784", "query": "who won the mens curling in the olympics 2018", "answer": "United States", "passage": "\"Tyler George\"\nskip on the U.S. Olympic men's curling team that won the gold medal at the 2018 Winter Olympics. After winning the 2017 United States Men's Curling Championship and the 2017 United States Olympic Curling Trials, the John Shuster rink went on to win gold in 2018 in Pyeongchang, South Korea. After winning gold, George elected to temporarily step away from curling and left the Shuster rink, citing his desires to take time off to \"\"...recharge the battery, let my body heal.\"\" George works as a general manager for George's Liquor. Tyler George Tyler George (born October 6, 1982) is an"} +{"qid": "test2370", "pid": "7542761", "query": "who won the mens curling in the olympics 2018", "answer": "United States", "passage": "\"Niklas Edin\"\nwould win his fifth European Championship at the 2016 European Curling Championships and would go on to make the finals of the 2017 World Men's Curling Championship, but lost to Canada (skipped by Brad Gushue), winning a silver medal. Edin won another European Championship in 2017 and skipped the Swedish men's team at the 2018 Winter Olympics, where he won a silver medal, losing to the United States (skipped by John Shuster) in the gold medal game. Edin would avenge his loss to Gushue at the 2017 Worlds by defeating him in the finals of the 2018 World Men's Curling"} +{"qid": "test2370", "pid": "12576697", "query": "who won the mens curling in the olympics 2018", "answer": "United States", "passage": "\"United States Curling Association\"\nStates Curling Association typically holds ten national championship events each season. The United States has placed twice in the Olympics for curling events. The country earned a bronze medal for the men's curling team at the 2006 Turin Winter Olympics and a gold medal for the men's curling team in the 2018 Pyeongchang Winter Olympics. John Shuster and Joe Polo were the medal leaders in both years. Curling for men was included in the Olympic program in 1924, but was dropped and replaced as a demonstration sport in 1932. It continued as a demonstration sport for both men and women"} +{"qid": "test2370", "pid": "20432552", "query": "who won the mens curling in the olympics 2018", "answer": "United States", "passage": "\"2017 United States Olympic Curling Trials\"\n2017 United States Olympic Curling Trials The 2017 United States Olympic Curling Trials was held from November 11-18, 2017 at Baxter Arena in Omaha, Nebraska. Five teams qualified for the men's tournament and three teams qualified for the women's tournament. The winner of each tournament will represent the United States at the 2018 Winter Olympics in Pyeongchang County, South Korea. USA Curling used a number of selection criteria to determine which teams would qualify for the Olympic Trials. If an American team placed in the top five at the 2017 World Men's Curling Championship or 2017 World Women's Curling Championship,"} +{"qid": "test2371", "pid": "2507343", "query": "who sings i feel love with the blue man group", "answer": "Annette Strean", "passage": "\"Venus Hum\"\n25, 2006 under the Mono-Fi Records label, which they described as \"\"unconventional, three-dimensional and completely five-sensual\"\" featuring an edgier sound than their previous work. In the second half of 2008, the band returned to the studio to work on material for a new album, culminating in the October 6th, 2009 release of \"\"Mechanics & Mathematics\"\". Annette Strean provided vocals for Blue Man Group's cover of \"\"I Feel Love\"\" on their 2003 album \"\"The Complex\"\". Venus Hum opened for Blue Man Group on The Complex Rock Tour, and performed with them as well. The band was featured as \"\"rock concert movement"} +{"qid": "test2372", "pid": "1383486", "query": "what was the meaning of the song puff the magic dragon", "answer": "the hardships of growing older", "passage": "\"Puff, the Magic Dragon\"\nthe name \"\"Puff\"\" was alleged to be a reference to taking a \"\"puff\"\" on a joint. The supposition was claimed to be common knowledge in a letter by a member of the public to \"\"The New York Times\"\" in 1984. The authors of the song have repeatedly rejected this interpretation and have strongly and consistently denied that they intended any references to drug use. Both Leonard Lipton and lead singer Peter Yarrow have stated \"\"Puff the Magic Dragon is not about drugs.\"\" Yarrow has frequently explained that the song is about the hardships of growing older and has no relationship"} +{"qid": "test2373", "pid": "450842", "query": "the type of display that google glass presents to its users is called what", "answer": "optical head-mounted display", "passage": "\"Wearable computer\"\n18 with $10,266,844, over 100 times the fundraising target. Pebble has released several smartwatches since, including the Pebble Time and the Pebble Round. Google Glass launched their optical head-mounted display (OHMD) to a test group of users in 2013, before it became available to the public on May 15, 2014. Google's mission was to produce a mass-market ubiquitous computer that displays information in a smartphone-like hands-free format that can interact with the Internet via natural language voice commands. Google Glass received criticism over privacy and safety concerns. On January 15, 2015, Google announced that it would stop producing the Google"} +{"qid": "test2373", "pid": "13655350", "query": "the type of display that google glass presents to its users is called what", "answer": "optical head-mounted display", "passage": "\"Wearable technology\"\na 5 MP camera and recorded video at 720p. Its various functions were activated via voice command, such as \"\"OK Glass\"\". The company also launched the Google Glass companion app, MyGlass. The first third-party Google Glass App came from the \"\"New York Times\"\", which was able to read out articles and news summaries. However, in early 2015, Google stopped selling the beta \"\"explorer edition\"\" of Glass to the public, after criticism of its design and the $1,500 price tag. While optical head-mounted display technology remains a niche, two popular types of wearable devices have taken off: smartwatches and activity trackers."} +{"qid": "test2373", "pid": "17879993", "query": "the type of display that google glass presents to its users is called what", "answer": "head-up display", "passage": "Smartglasses\nso that the two devices can be synchronized for additional and enhanced functionality. The smartglasses can work as an extension, for head-up display (HUD) or remote control of the phone and alert the user to communication data such as calls, SMS messages, emails, and calendar invites. Smart glasses could be used as a body camera. In 2018, Chinese police in Zhengzhou were using smart glasses to take photos which are compared against a government database using facial recognition to identify suspects, retrieve an address, and track people moving beyond their home areas. Several proofs of concept for Google Glasses have"} +{"qid": "test2373", "pid": "16415801", "query": "the type of display that google glass presents to its users is called what", "answer": "optical head-mounted display", "passage": "\"Google Glass\"\nGoogle Glass Google Glass is a brand of smart glasses—an optical head-mounted display designed in the shape of a pair of eyeglasses. It was developed by X (previously Google X) with the mission of producing a ubiquitous computer. Google Glass displayed information in a smartphone-like, hands-free format. Wearers communicated with the Internet via natural language voice commands. Google started selling a prototype of Google Glass to qualified \"\"Glass Explorers\"\" in the US on April 15, 2013, for a limited period for $1,500, before it became available to the public on May 15, 2014. It had an integral 5 megapixel still/720p"} +{"qid": "test2376", "pid": "1755321", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"First Battle of Bull Run\"\nto the adoption of the Confederate Battle Flag, which eventually became the most popular symbol of the Confederacy and the South in general. First Bull Run demonstrated that the war would not be won by one grand battle, and both sides began preparing for a long and bloody conflict. The battle also showed the need for adequately trained and experienced officers and men. One year later many of the same soldiers who had fought at First Bull Run, now combat veterans, would have an opportunity to test their skills on the same battlefield at the Second Battle of Bull Run/Manassas."} +{"qid": "test2376", "pid": "8025456", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Bull Run (novel)\"\nBull Run (novel) Bull Run is a historical novel for children by Paul Fleischman, published in 1993. It consists of sixteen monologues by participants in the First Battle of Bull Run in 1861. The novel has won several awards. This historical fiction novel, written by Paul Fleischman, highlights the events surrounding the first major battle of the American Civil War, the Battle of Bull Run. It is told through the first-person perspectives of 16 different characters, both Union and Confederate. . Northerners: Vincent martinez, Lily Malloy, Gideon Adams, Dietrich Herz, James Dacy, Nathaniel Epp, General Irvin McDowell, A.B. Tilbury, Edmund"} +{"qid": "test2376", "pid": "655118", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\npartners have acquired and preserved of the Second Battle of Bull Run battlefield in more than 10 transactions since 2000. Second Battle of Bull Run The Second Battle of Bull Run or Battle of Second Manassas was fought August 28–30, 1862 in Prince William County, Virginia, as part of the American Civil War. It was the culmination of the Northern Virginia Campaign waged by Confederate Gen. Robert E. Lee's Army of Northern Virginia against Union Maj. Gen. John Pope's Army of Virginia, and a battle of much larger scale and numbers than the First Battle of Bull Run (or \"\"First"} +{"qid": "test2376", "pid": "655024", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\nSecond Battle of Bull Run The Second Battle of Bull Run or Battle of Second Manassas was fought August 28–30, 1862 in Prince William County, Virginia, as part of the American Civil War. It was the culmination of the Northern Virginia Campaign waged by Confederate Gen. Robert E. Lee's Army of Northern Virginia against Union Maj. Gen. John Pope's Army of Virginia, and a battle of much larger scale and numbers than the First Battle of Bull Run (or \"\"First Manassas\"\") fought on July 21, 1861 on the same ground. Following a wide-ranging flanking march, Confederate Maj. Gen. Thomas J."} +{"qid": "test2376", "pid": "1755269", "query": "who won the battle of the first battle of bull run", "answer": "Confederate forces", "passage": "\"First Battle of Bull Run\"\nFirst Battle of Bull Run The First Battle of Bull Run (the name used by Union forces), also known as the First Battle of Manassas (the name used by Confederate forces), was fought on July 21, 1861 in Prince William County, Virginia, just north of the city of Manassas and about 25 miles west-southwest of Washington, D.C. It was the first major battle of the American Civil War. The Union's forces were slow in positioning themselves, allowing Confederate reinforcements time to arrive by rail. Each side had about 18,000 poorly trained and poorly led troops in their first battle. It"} +{"qid": "test2376", "pid": "655111", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\nturnpike to Centreville. Unlike the calamitous retreat at the First Battle of Bull Run, the Union movement was quiet and orderly. The Confederates, weary from battle and low on ammunition, did not pursue in the darkness. Although Lee had won a great victory, he had not achieved his objective of destroying Pope's army. The final significant action of the battle occurred around 7:00 PM as Lee directed J.E.B. Stuart's cavalry to go around the Union flank and cut off their retreat. Brig. Gen Beverly Robertson's cavalry brigade, accompanied by Col. Thomas Rosser's 5th Virginia Cavalry headed for Lewis Ford, a"} +{"qid": "test2376", "pid": "655117", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\nVirginia, it preserves the site of two major American Civil War battles: the First Battle of Bull Run on July 21, 1861, and the Second Battle of Bull Run which was fought between August 28 and August 30, 1862 (also known as the First Battle of Manassas and the Second Battle of Manassas, respectively). The peaceful Virginia countryside bore witness to clashes between the armies of the North (Union) and the South (Confederacy), and it was there that Confederate General Thomas J. Jackson acquired his nickname \"\"Stonewall.\"\" The Civil War Trust (a division of the American Battlefield Trust) and its"} +{"qid": "test2376", "pid": "1755326", "query": "who won the battle of the first battle of bull run", "answer": "Confederate forces", "passage": "\"First Battle of Bull Run\"\nNational Register of Historic Places on October 15, 1966. First Battle of Bull Run The First Battle of Bull Run (the name used by Union forces), also known as the First Battle of Manassas (the name used by Confederate forces), was fought on July 21, 1861 in Prince William County, Virginia, just north of the city of Manassas and about 25 miles west-southwest of Washington, D.C. It was the first major battle of the American Civil War. The Union's forces were slow in positioning themselves, allowing Confederate reinforcements time to arrive by rail. Each side had about 18,000 poorly trained"} +{"qid": "test2376", "pid": "13843937", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Decisive Battles of the American Civil War Volume 1: Bull Run to Chancellorsville\"\nDecisive Battles of the American Civil War Volume 1: Bull Run to Chancellorsville Decisive Battles of the American Civil War Volume 1: Bull Run to Chancellorsville is a computer game developed by Roger Keating and Ian Trout and published by Strategic Studies Group in 1988 for the Commodore 64 and Apple II. \"\"Bull Run to Chancellorsville\"\" is a tactical wargame that offers the player the opportunity to command the first battles of the American Civil War. Six Civil War battles are included in Volume I. Two players may manage either the Confederate or Union army, with play also governed by"} +{"qid": "test2376", "pid": "1755313", "query": "who won the battle of the first battle of bull run", "answer": "Confederate forces", "passage": "\"First Battle of Bull Run\"\nhundred each. Two Confederate brigade commanders, Jackson and Edmund Kirby-Smith, were wounded in the battle. Jackson was shot in the hand, so he remained on the battlefield. No Union officers above the regimental level were killed; two division commanders (Samuel Heintzelman and David Hunter), and one brigade commander (Orlando Willcox) were wounded. \"\"Union casualties at the battle of Bull Run, July 21, 1861.\"\" \"\"Union artillery lost in the battle of Bull Run, July 21, 1861.\"\" \"\"Confederate casualties at the battle of Bull Run, July 21, 1861.\"\" Union forces and civilians alike feared that Confederate forces would advance on Washington, D.C.,"} +{"qid": "test2376", "pid": "913043", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"John C. Frémont\"\nSpringfield and fall back to Rolla, while Frémont personally sent reinforcement troops to Cairo rather than to Lyon, who had requested more troops. Frémont believed with some accuracy that the Confederates were planning to attack Cairo. Lyon, however, hastily chose to attack Confederate General Sterling Price at the Battle of Wilson's Creek, rather than retreat. During the battle Lyon was shot through the heart and died instantly. As the Union line broke, similar to the first Battle of Bull Run in the east, the Confederates won the battle and captured Springfield opening Western Missouri for Confederate advancement. Frémont was severely"} +{"qid": "test2376", "pid": "8627288", "query": "who won the battle of the first battle of bull run", "answer": "Confederate victory", "passage": "\"Virginia in the American Civil War\"\nthe Union. The Confederates won the First Battle of Bull Run (known as \"\"First Battle of Manassas\"\" in southern naming convention) and the year went on without a major fight. Union general George B. McClellan was forced to retreat from Richmond by Robert E. Lee's army. Union general Pope was defeated at the Second Battle of Manassas. Following the one-sided Confederate victory Battle of Fredericksburg. When fighting resumed in the spring of 1863, Union general Hooker was defeated at Chancellorsville by Lee's army. Ulysses Grant's Overland Campaign was fought in Virginia. The campaign included battles of attrition at the Wilderness,"} +{"qid": "test2376", "pid": "16550401", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Robinson House (Manassas, Virginia)\"\nafter the fighting was over, the Robinsons buried many in unmarked graves. Well into the 20th century family members reported that they were still digging up the bones of some of these soldiers. The first battle was over in a matter of a few days. Many thought that the Civil War would be decided in one, winner take all battle. But this was not to be the case. Confederate troops won the First Battle of Manassas, with federal troops retreating back to Washington, D.C., but the Civil War continued. The Second Battle of Bull Run lasted for about a week"} +{"qid": "test2376", "pid": "19529630", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"103rd Infantry Regiment (United States)\"\nRegiment. It served in the Union Army and was one of the first US regiments to see combat against the Confederates. It served in the First Battle of Bull Run, which was the first major battle of the Civil War and a decisive Union defeat. However, the 2nd Maine was one of the last regiments to retreat from the field. It served in the Peninsula Campaign and the Second Battle of Bull Run, both were also Union defeats. At the Battle of Antietam on 17 September 1862, the 2nd Maine experienced its first victory, but this was to be short"} +{"qid": "test2376", "pid": "1755323", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"First Battle of Bull Run\"\nin \"\"Rebel\"\" (1993), the first volume of Bernard Cornwell's The Starbuck Chronicles series of historical novels. The battle is described from the viewpoint of a Union infantryman in Upton Sinclair's novella \"\"Manassas\"\", which also depicts the political turmoil leading up to the Civil War. The battle is also depicted in John Jakes's \"\"The Titans\"\", the fifth novel in The Kent Family Chronicles, a series that explores the fictional Confederate cavalry officer Gideon Kent. The battle is the subject of the Johnny Horton song, \"\"Battle of Bull Run\"\". \"\"Shaman\"\", second in the Cole family trilogy by Noah Gordon, includes an account"} +{"qid": "test2376", "pid": "5934643", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Manassas National Battlefield Park\"\nManassas National Battlefield Park Manassas National Battlefield Park, located north of Manassas, in Prince William County, Virginia, preserves the site of two major American Civil War battles: the First Battle of Bull Run on July 21, 1861, and the Second Battle of Bull Run which was fought between August 28 and August 30, 1862 (also known as the \"\"First Battle of Manassas\"\" and the \"\"Second Battle of Manassas\"\", respectively). The peaceful Virginia countryside bore witness to clashes between the armies of the North (Union) and the South (Confederacy), and it was there that Confederate General Thomas J. Jackson acquired his"} +{"qid": "test2376", "pid": "655112", "query": "who won the battle of the first battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\ncrossing in Bull Run Creek that would enable them to get in the rear of the Union army. However, Robertson and Rosser found the crossing blocked by John Buford's cavalry and after a short, but fierce engagement, Buford's superior numbers won out and the Confederate horsemen pulled back. The cavalry clash lasted only about ten minutes, but resulted in Col. Thomas Munford of the 2nd Virginia Cavalry being wounded. Col. Thornton Brodhead of the 1st Michigan Cavalry was shot dead, and John Buford was also wounded. The Union army's retreat however had been safeguarded. The Second Battle of Bull Run,"} +{"qid": "test2377", "pid": "19735111", "query": "who is the current cruiserweight champion in wwe", "answer": "Cedric Alexander", "passage": "\"WWE Cruiserweight Championship\"\nat 25. Neville and Enzo Amore have the most reigns at two. Neville also has the longest reign at 197 days (196 days as recognized by WWE), while Akira Tozawa has the shortest reign at 6 days (5 days as recognized by WWE). Neville also has the longest combined reign at 232 days (231 days as recognized by WWE). Buddy Murphy is the current champion in his first reign. He won the title on October 6, 2018 in Melbourne, Australia at WWE Super Show-Down by defeating Cedric Alexander. WWE Cruiserweight Championship The WWE Cruiserweight Championship is a professional wrestling championship"} +{"qid": "test2377", "pid": "20130469", "query": "who is the current cruiserweight champion in wwe", "answer": "Cedric Alexander", "passage": "\"WWE Great Balls of Fire\"\ndefeated Bliss the following week in a singles match, and then defeated Banks to become the number one contender for the title at SummerSlam. In the cruiserweight division, Akira Tozawa and Cedric Alexander teamed up and faced Noam Dar and WWE Cruiserweight Champion Neville where Tozawa pinned Neville to win the match. The following night on \"\"205 Live\"\", Neville attacked Tozawa during Tozawa's match against Ariya Daivari. Big Cass gloated about defeating Enzo Amore. He said that he was the future of WWE and will eventually become Universal Champion. He was then interrupted by Big Show, who attacked Cass and"} +{"qid": "test2377", "pid": "19735110", "query": "who is the current cruiserweight champion in wwe", "answer": "Cedric Alexander", "passage": "\"WWE Cruiserweight Championship\"\nappointed as the 205 Live General Manager. Maverick announced that there would be a 16-man single elimination tournament to crown a new WWE Cruiserweight Champion, with the finals to occur on the WrestleMania 34 pre-show. The tournament came down to Cedric Alexander and Mustafa Ali where Alexander defeated Ali to win the vacant championship. As of 23, 2019, there have been eleven reigns between nine champions and one vacancy. The inaugural champion was T.J. Perkins. The oldest champion is The Brian Kendrick, winning the title at 37 years old, while the youngest champion is Rich Swann when he won it"} +{"qid": "test2377", "pid": "7856385", "query": "who is the current cruiserweight champion in wwe", "answer": "Cedric Alexander", "passage": "\"Professional wrestling in Australia\"\nJanuary 2015, Murphy and Blake scored an upset victory over the Vaudevillains and the following week defeated the Lucha Dragons to win the NXT Tag Team Championship, making Murphy the first Australian to hold a championship within the WWE. In early 2018 Murphy joined the Cruiserweight division and participated in the Cruiserweight title tournament losing to Mustafa Ali in the quarter finals. He soon become a top contender to the new champion Cedric Alexander, and he managed to defeat Alexander at WWE Super Show-Down in his main roster pay-per-view debut in his home town Melbourne to win the WWE Cruiserweight"} +{"qid": "test2378", "pid": "1891124", "query": "who issued ashwamedha coins after performing ashvamedha sacrifice", "answer": "Samudragupta", "passage": "Samudragupta\nbelow) to mark this performance. The copper-plate inscriptions of Samudragupta's granddaughter Prabhavati-gupta, who was a Vakataka queen, describe him as the performer of multiple horse sacrifices. According to one theory, Samudragupta indeed performed more than one horse sacrifices, as attested by the presence of two different legends on his Ashvamedha coins. Another theory dismisses the claim on Prabhavati-gupta's inscriptions as an exaggeration or a scribal error, since this claim does not appear on the inscriptions of Samudragupta or his successors. The Mathura stone inscription of Chandragupta II describes Samudragupta as \"\"the restorer of the Ashvamedha sacrifice that had been long"} +{"qid": "test2378", "pid": "1891123", "query": "who issued ashwamedha coins after performing ashvamedha sacrifice", "answer": "Samudragupta", "passage": "Samudragupta\nsurpassed Prithu, Raghava and other legendary kings in giving gold. The Allahabad Pillar inscription alludes to his divine kingship, comparing him to the \"\"Parama Purusha\"\" (supreme being), and also with deities such as Dhanada (Kubera), Varuna, Indra, and Antaka (Yama). The Eran inscription states that he was equal to Kubera and Yama in pleasure and anger respectively. The Mathura stone inscription similarly describes him as equal to the deities Kubera, Varuna, Indra, and Yama. Samudragupta performed the Ashvamedha ritual (horse sacrifice), which was used by the ancient Indian kings to prove their imperial sovereignty, and issued gold coins (see Coinage"} +{"qid": "test2378", "pid": "1891098", "query": "who issued ashwamedha coins after performing ashvamedha sacrifice", "answer": "Samudragupta", "passage": "Samudragupta\nextended from Ravi River in the west to the Brahmaputra River in the east, and from the Himalayan foothills in the north to central India in the south-west; several rulers along the south-eastern coast were his tributaries. Samudragupta performed the Ashvamedha sacrifice to prove his imperial sovereignty, and according to his coins, remained undefeated. His gold coins and inscriptions suggest that he was an accomplished poet, and also played music. His expansionist policy was continued by his son Chandragupta II. Modern scholars variously assign the start of Samudragupta's reign from c. 319 CE to c. 350 CE. The inscriptions of"} +{"qid": "test2378", "pid": "1891126", "query": "who issued ashwamedha coins after performing ashvamedha sacrifice", "answer": "Samudragupta", "passage": "Samudragupta\nceremony performed by Bharashiva, Vakataka, and other near-contemporary kings was \"\"more of a religious nature\"\", while Samudragupta's ceremony actually involved proving his imperial sovereignty. Similarly, scholars such as S. K. Aiyangar and D. R. Bhandarkar, theorize that unlike the other kings, Samudragupta performed a \"\"full-fledged\"\" Ashvamedha ceremony. Others, such as V. S. Pathak and Jagannath Agrawal, interpret the verse to mean that Samudragupta performed the horse-sacrifice that lasted for a long-time. The surviving verses of Samudragupta's own Allahabad Pillar inscription do not mention the Ashvamedha ceremony. According to one theory, this inscription was put up to mark the beginning of"} +{"qid": "test2378", "pid": "1891125", "query": "who issued ashwamedha coins after performing ashvamedha sacrifice", "answer": "Samudragupta", "passage": "Samudragupta\nin abeyance\"\" (Smith's translation). This claim also appears in the inscriptions of the subsequent Gupta kings, as well as the spurious Gaya and Nalanda inscriptions attributed to Samudragupta. However, several kings including those from Bharashiva, Vakataka, Shalankayana, and Pallava dynasties had had performed Ashvamedha in the preceding years. Different scholars have attempted to explain this anamoly in different ways: H. C. Raychaudhuri suggests that the Gupta court poet did not know about these kings. According to R. C. Majumdar, Samudragupta was the first king several centuries to perform the sacrifice in the Magadha region. Majumdar also theorizes that the Ashvamedha"} +{"qid": "test2378", "pid": "1891127", "query": "who issued ashwamedha coins after performing ashvamedha sacrifice", "answer": "Samudragupta", "passage": "Samudragupta\nthe ceremony, as the pangyerics of the sacrificer were an essential part of the Ashvamedha ceremony. It is possible that its first four lines, which are now lost, contained a reference to the ceremony. Samudragupta's coins depict him as a man of tall stature and muscular physique. The Allahabd Pillar inscription presents Samudragupta as a compassionate ruler, stating that his \"\"mind was engaged in providing relief to the low, the poor, the helpless, and the afflicted\"\". It also mentions that he reinstated many royal families which had lost their kingdoms, including the kings defeated by him. At the same time,"} +{"qid": "test238", "pid": "18978189", "query": "when does the cannes film festival take place", "answer": "Cannes, France", "passage": "\"Cannes Corporate Media & TV Awards\"\nCannes Corporate Media & TV Awards The Cannes Corporate Media & TV Awards is an international festival dedicated to corporate films, online media and TV productions, and takes place every October in Cannes, France. It is often referred to as one of the most important festivals in the corporate film industry. The first festival took place in 2010. The current Festival Director is Austrian businessman Alexander V. Kammel who is also the director of the International Committee of Tourism Film Festivals (ICTFF) and lots of other festivals. The best corporate productions and international TV documentaries are rewarded with Dolphin Trophies"} +{"qid": "test238", "pid": "19795802", "query": "when does the cannes film festival take place", "answer": "Cannes, France", "passage": "\"2017 Cannes Film Festival\"\n2017 Cannes Film Festival The 70th Cannes Film Festival took place from 17 to 28 May 2017, in Cannes, France. Spanish film director and screenwriter Pedro Almodóvar was the President of the Jury for the festival and Italian actress Monica Bellucci hosted the opening and closing ceremonies. \"\"Ismael's Ghosts\"\", directed by French director Arnaud Desplechin, was the opening film for the festival. The festival celebrated its 70th anniversary. In late March 2017, the official poster of the festival was revealed featuring Italian actress Claudia Cardinale. The actress responded, \"\"'I am honoured and proud to be flying the flag for the"} +{"qid": "test238", "pid": "16966155", "query": "when does the cannes film festival take place", "answer": "Cannes, France", "passage": "\"2013 Cannes Film Festival\"\n2013 Cannes Film Festival The 66th Cannes Film Festival took place in Cannes, France, from 15 to 26 May 2013. Steven Spielberg was the head of the jury for the main competition. New Zealand film director Jane Campion was the head of the jury for the Cinéfondation and Short Film sections. French actress Audrey Tautou hosted the opening and closing ceremonies. Actress Kim Novak was named guest of honour and introduced a new restored version of Alfred Hitchcock's \"\"Vertigo\"\". The festival opened with \"\"The Great Gatsby\"\", directed by Baz Luhrmann and closed with \"\"Zulu\"\", directed by Jérôme Salle. The film"} +{"qid": "test2383", "pid": "79132", "query": "where does the light reaction of photosynthesis occur", "answer": "on the thylakoid membranes", "passage": "Chloroplast\ntransformed into chemical energy, to subsequently produce food in the form of sugars. Water (HO) and carbon dioxide (CO) are used in photosynthesis, and sugar and oxygen (O) is made, using light energy. Photosynthesis is divided into two stages—the light reactions, where water is split to produce oxygen, and the dark reactions, or Calvin cycle, which builds sugar molecules from carbon dioxide. The two phases are linked by the energy carriers adenosine triphosphate (ATP) and nicotinamide adenine dinucleotide phosphate (NADP). The light reactions take place on the thylakoid membranes. They take light energy and store it in NADPH, a form"} +{"qid": "test2383", "pid": "13691850", "query": "where does the light reaction of photosynthesis occur", "answer": "on the thylakoid membranes", "passage": "\"Light-dependent reactions\"\nplace only in the presence of light. This led later to the discovery of photosystems I and II. Light-dependent reactions In photosynthesis, the light-dependent reactions take place on the thylakoid membranes. The inside of the thylakoid membrane is called the lumen, and outside the thylakoid membrane is the stroma, where the light-independent reactions take place. The thylakoid membrane contains some integral membrane protein complexes that catalyze the light reactions. There are four major protein complexes in the thylakoid membrane: Photosystem II (PSII), Cytochrome b6f complex, Photosystem I (PSI), and ATP synthase. These four complexes work together to ultimately create the"} +{"qid": "test2384", "pid": "4525813", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"Earl Van Dorn\"\nof Van Dorn at the Second Battle of Corinth that autumn led to another Union Army victory. As at Pea Ridge, Van Dorn did well in the early stages of the battle on October 1–2, 1862, combining with Price's men and prudently placing his force that now was roughly equal in size to the Federals at about 22,000 soldiers. However, Van Dorn failed to reconnoiter the Union defenses, and his attack on Brig. Gen. William S. Rosecrans' strong defensive position at Corinth, Mississippi, on October 3 was bloodily repulsed. On October 4–5 his command was \"\"roughly handled\"\" along the Hatchie"} +{"qid": "test2384", "pid": "4745326", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"Battle of Hatchie's Bridge\"\nBattle of Hatchie's Bridge The Battle of Hatchie's Bridge, also known as Battle of Davis Bridge or Matamora, was fought on October 5, 1862, in Hardeman County and McNairy County, Tennessee, as the final engagement of the Iuka–Corinth Campaign of the American Civil War. Confederate Major General Earl Van Dorn's army successfully evaded capture by the Union Army, following his defeat at the Battle of Corinth. Van Dorn's (Confederate) Army of Tennessee retreated from Corinth, Mississippi, on October 4, 1862, but Union Maj. Gen. William S. Rosecrans did not send forces in pursuit until the morning of October 5. Maj."} +{"qid": "test2384", "pid": "15795389", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"19th Arkansas Infantry Regiment (Dockery's)\"\nelection of officers was ordered; and men who were exempted from service by age or other reasons under the Conscription Act were allowed to take a discharge and go home. Officers who did not choose to stand for re-election were also offered a discharge. The reorganization was accomplished among all the Arkansas regiments in and around Corinth, Mississippi, following the Battle of Shiloh. After settling in at Camp Churchill Clark, near Corinth, Mississippi, the 19th Arkansas was reorganized for the war and new officers were elected. All of the original field officers were thrown out in the election of May"} +{"qid": "test2384", "pid": "1133307", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"Corinth, Mississippi\"\nduring the American Civil War. Confederate General P. G. T. Beauregard retreated to Corinth after the Battle of Shiloh, pursued by Union Major General Henry W. Halleck. General Beauregard abandoned the town when General Halleck approached, letting it fall into the Union's hands. Since Halleck approached so cautiously, digging entrenchments at every stop for over a month, this action has been known as the Siege of Corinth. The Union sent Maj. Gen. William Rosecrans to Corinth as well and concentrated its forces in the city. The Second Battle of Corinth took place on October 3−4, 1862, when Confederate Maj. Gen."} +{"qid": "test2384", "pid": "15239334", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"7th Arkansas Infantry Regiment\"\nto re-muster and enlist for two additional years or the duration of the war; a new election of officers was ordered; and men who were exempted from service by age or other reasons under the Conscription Act were allowed to take a discharge and go home. Officers who did not choose to stand for re-election were also offered a discharge. The reorganization was accomplished among all the Arkansas regiments in and around Corinth, Mississippi, following the Battle of Shiloh. During its reorganization, Colonel Shaver, who had been wounded during the Battle of Shiloh, did not stand for re-election and Lieutenant"} +{"qid": "test2384", "pid": "15770824", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"9th Arkansas Infantry Regiment\"\nJohnston, however, received a mortal wound while leading this charge, and shortly thereafter bled to death. The unit reported 17 killed and 115 wounded at Shiloh. After the retreat from Shiloh, the 9th Arkansas returned to Corinth, Mississippi and participated in the Iuka-Corinth Campaign, in the battles of Corinth, and Iuka, Mississippi. They served at the Battle of Coffeeville, where the unit reported 16 casualties. The unit was assigned under Generals Rust, Buford, and Beall in the Department of Mississippi and East Louisiana and in the Vicksburg Campaign in the spring and summer of 1863, where they served briefly in"} +{"qid": "test2384", "pid": "5216221", "query": "where did the battle of corinth take place", "answer": "in Corinth, Mississippi", "passage": "\"Second Battle of Corinth\"\nacquired and preserved of the Corinth battlefield. Second Battle of Corinth The Second Battle of Corinth (which, in the context of the American Civil War, is usually referred to as the Battle of Corinth, to differentiate it from the Siege of Corinth earlier the same year) was fought October 3–4, 1862, in Corinth, Mississippi. For the second time in the Iuka-Corinth Campaign, Union Maj. Gen. William Rosecrans defeated a Confederate army, this time one under Maj. Gen. Earl Van Dorn. After the Battle of Iuka, Maj. Gen. Sterling Price marched his army to meet with Van Dorn's. The combined force,"} +{"qid": "test2384", "pid": "11072625", "query": "where did the battle of corinth take place", "answer": "in Corinth, Mississippi", "passage": "\"Midtown Corinth Historic District\"\nincluded within the 1991-designated Siege and Battle of Corinth Sites district, a National Historic Landmark. These are: Other notable buildings in the district include: 1905-10. Midtown Corinth Historic District Midtown Corinth Historic District is a historic district in Corinth, Mississippi that was listed on the National Register of Historic Places in 1993. The district then had 229 contributing buildings and one contributing site, as well as 55 non-contributing buildings. The district \"\"is roughly bounded by Cass, Bunch, Washington, Main, Filmore, Linden, Douglas and Cruise Streets\"\". It is a mostly L-shaped district that includes the largest residential area in Corinth that"} +{"qid": "test2384", "pid": "5216195", "query": "where did the battle of corinth take place", "answer": "in Corinth, Mississippi", "passage": "\"Second Battle of Corinth\"\nSecond Battle of Corinth The Second Battle of Corinth (which, in the context of the American Civil War, is usually referred to as the Battle of Corinth, to differentiate it from the Siege of Corinth earlier the same year) was fought October 3–4, 1862, in Corinth, Mississippi. For the second time in the Iuka-Corinth Campaign, Union Maj. Gen. William Rosecrans defeated a Confederate army, this time one under Maj. Gen. Earl Van Dorn. After the Battle of Iuka, Maj. Gen. Sterling Price marched his army to meet with Van Dorn's. The combined force, known as the Army of West Tennessee,"} +{"qid": "test2384", "pid": "19954267", "query": "where did the battle of corinth take place", "answer": "in Corinth, Mississippi", "passage": "\"Corinth Depot (Mississippi)\"\nCorinth Depot (Mississippi) Corinth Depot, also known as the Southern/GM&O Depot and now known as Corinth Crossroads Museum, was constructed circa 1917, and is located at 221 North Fillmore Street, in Corinth, Mississippi. The depot is a contributing property to the Downtown Corinth Historic District, which was placed on the National Register of Historic Places in 1993. In 1995, the depot was designated a Mississippi Landmark. In 1857, a parcel of land in Corinth was dedicated for construction of a depot where two railroads (the Memphis & Charleston and the Mobile & Ohio) intersected. Because of this railroad junction, control"} +{"qid": "test2384", "pid": "15800590", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"20th Arkansas Infantry Regiment\"\nOfficers who did not choose to stand for re-election were also offered a discharge. The reorganization was accomplished among all the Arkansas regiments in and around Corinth, Mississippi, following the Battle of Shiloh. The 22nd was reorganized at Corinth, Mississippi, on May 8, 1862; and redesignated as the 20th Arkansas Infantry, in order to avoid confusion with McCord’s 22nd Arkansas Infantry Regiment. Upon reorganization at Corinth on May 8, 1862, the 22nd Arkansas was redesignated as the 20th Arkansas Infantry. The regimental officers chosen when the 20th was reorganized for the war were: During the Iuka-Corinth Campaign, the 20th Arkansas"} +{"qid": "test2384", "pid": "5718448", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"Siege and Battle of Corinth Sites\"\nSiege and Battle of Corinth Sites The Siege and Battle of Corinth Sites are a National Historic Landmark District encompassing surviving elements of three significant American Civil War engagements in and near Corinth, Mississippi. Included are landscape and battlefield features of the Siege of Corinth (April 29 to June 10, 1862), the Second Battle of Corinth (October 3-4, 1862), and the lesser Battle of Hatchie's Bridge on October 5, 1862. The district includes features located in both Alcorn County, Mississippi and Hardeman County, Tennessee, with some of the former preserved as part of Shiloh National Military Park. It was designated"} +{"qid": "test2384", "pid": "18051304", "query": "where did the battle of corinth take place", "answer": "Corinth, Mississippi", "passage": "\"Voltaire P. Twombly\"\nkilled or injured by the enemy. Twombly was knocked to the ground by cannon fire, but managed to carry the flag for the duration of the battle. For his actions during the battle, Twombly was promoted to sergeant and later awarded the Medal of Honor in 1897. His citation reads: Twombly carried his regiment's colors during the April 1862 Battle of Shiloh and participated in the Siege of Corinth, Mississippi as an acting second lieutenant. In October 1862, Twombly received a knee injury during the Second Battle of Corinth. He was hospitalized and placed on leave for six weeks to"} +{"qid": "test2385", "pid": "6172846", "query": "under article 1 what is the minimum age required to serve in the house of representatives", "answer": "25", "passage": "\"Baby of the House\"\nyoungest member confer special treatment in either house of Congress. Members of the US Congress tend to be older than parliamentarians elsewhere in the English-speaking world, a main factor being that the minimum ages for members of Congress is written into Article One of the United States Constitution, which forbids those under the age of 25 from serving in the House, and those under the age of 30 from serving in the Senate. Moreover, election to the federal Congress is expensive and requires extensive contacts and recognition across a very wide area. Individuals aiming to serve in the federal legislature"} +{"qid": "test2385", "pid": "7510770", "query": "under article 1 what is the minimum age required to serve in the house of representatives", "answer": "25", "passage": "\"David Steelman\"\nDavid Steelman David Steelman is an American politician from the state of Missouri. David Steelman earned a B.A. in economics from the University of Missouri, and graduated first in his class from the University of Missouri Law School in 1978. He is the son of the late Dorman L. Steelman, who served in the Missouri House of Representatives, as a circuit judge, and as chairman of the Missouri Republican Party. Steelman, a Republican, was elected to his first term in the Missouri House of Representatives in 1978 at the age of 25 (under the state constitution, the minimum age for"} +{"qid": "test2385", "pid": "1957631", "query": "under article 1 what is the minimum age required to serve in the house of representatives", "answer": "25", "passage": "\"European Union law\"\nimported ones) to have a minimum alcohol content of 25 per cent was contrary to TFEU article 34, because it had a greater negative effect on imports. German liqueurs were over 25 per cent alcohol, but Cassis de Dijon, which Rewe-Zentrale AG wished to import from France, only had 15 to 20 per cent alcohol. The Court of Justice rejected the German government's arguments that the measure proportionately protected public health under TFEU article 36, because stronger beverages were available and adequate labelling would be enough for consumers to understand what they bought. This rule primarily applies to requirements about"} +{"qid": "test2385", "pid": "9867795", "query": "under article 1 what is the minimum age required to serve in the house of representatives", "answer": "25", "passage": "\"Clarence J. McLeod\"\nMcLeod was the youngest person ever elected to Congress, being just five months over the age of 25—the minimum age required by the U.S. Constitution. Furthermore, McLeod was a candidate only to fill the unexpired term of Nichols. At that same election, Vincent M. Brennan was simultaneously elected to a full term in the 67th Congress. In 1922, however, McLeod was elected to the 68th Congress and subsequently re-elected to the six succeeding Congresses, serving in the House of Representatives without interruption from March 4, 1923, to January 3, 1937. He was an unsuccessful candidate in the Republican primary election"} +{"qid": "test2386", "pid": "874906", "query": "what is the population of st petersburg fl", "answer": "257,083", "passage": "\"St. Petersburg, Florida\"\nSt. Petersburg, Florida St. Petersburg is a city in Pinellas County, Florida, United States. As of the 2015 census estimate, the population was 257,083, making it the fifth-most populous city in Florida and the largest in the state that is not a county seat (the city of Clearwater is the seat of Pinellas County). St. Petersburg is the second-largest city in the Tampa Bay Area, after Tampa. Together with Clearwater, these cities comprise the Tampa–St. Petersburg–Clearwater Metropolitan Statistical Area, the second-largest in Florida with a population of around 2.8 million. St. Petersburg is located on the Pinellas peninsula between Tampa"} +{"qid": "test2386", "pid": "874970", "query": "what is the population of st petersburg fl", "answer": "257,083", "passage": "\"St. Petersburg, Florida\"\nPetersburg's major electricity system is provided by Duke Energy, the city's major gas system is provided by TECO Energy in the industrial and commercial parts of the city, and the city's water services are provided by the city of St. Petersburg. The city of St. Petersburg, Florida is currently a member in the Sister Cities International group that was created in 1956. St. Petersburg, Florida St. Petersburg is a city in Pinellas County, Florida, United States. As of the 2015 census estimate, the population was 257,083, making it the fifth-most populous city in Florida and the largest in the state"} +{"qid": "test2387", "pid": "6752582", "query": "who plays at the prudential center in newark", "answer": "New Jersey Devils", "passage": "\"Prudential Center\"\nof Newark's Ironbound district, which makes it easily accessible via New Jersey Transit, PATH, Newark Light Rail, and Amtrak. At the time of its opening, Prudential Center was the first major league sports venue to be built in the New York metropolitan area since the Brendan Byrne Arena, the Devils' former home, opened in 1981. According to the Devils organization, the Prudential Center has played a major role in the revitalization of downtown Newark. For years, the New Jersey Devils had been rumored to be at least considering relocation. Even when the team won the Stanley Cup in 1995, it"} +{"qid": "test2387", "pid": "17732811", "query": "who plays at the prudential center in newark", "answer": "New Jersey Devils", "passage": "\"Sports in Newark, New Jersey\"\nMeadowlands Rail Line via Newark Penn Station or Broad Street Station. The New Jersey Devils of the National Hockey League moved in 2007 from the Continental Airlines Arena in the Meadowlands to the Prudential Center, an arena jointly financed by the team and the city. Part of the 2012 Stanley Cup Finals were played there. Also making their home at the Prudential Center facilities are the Metropolitan Riveters of the National Women's Hockey League playing at the Devils' practice facility. The 2013 NHL Entry Draft (the 51st NHL Entry Draft) took place on June 30, 2013, at the Prudential Center"} +{"qid": "test2387", "pid": "3050917", "query": "who plays at the prudential center in newark", "answer": "Seton Hall Pirates", "passage": "\"Meadowlands Arena\"\nin the new building and became known as the New Jersey Devils. The Nets and Devils were joined by the Seton Hall Pirates men's collegiate basketball program in 1985. In 2007, the Prudential Center opened in nearby Newark and the New Jersey Devils, for whom the Prudential Center was built, moved out. Seton Hall, whose campus in South Orange is closer to Newark than East Rutherford, followed and moved their basketball games there. The Nets remained for three more seasons before moving to Newark, where they played two seasons before departing New Jersey for the Barclays Center in Brooklyn. The"} +{"qid": "test2387", "pid": "17732822", "query": "who plays at the prudential center in newark", "answer": "Seton Hall Pirates", "passage": "\"Sports in Newark, New Jersey\"\nCup, a preview to the 2018 Summer Olympics, at Prudential Center March 2016. The Seton Hall Pirates men's basketball program is the NCAA Division I intercollegiate men's basketball program of Seton Hall University in South Orange. The team competes in the Big East Conference and plays their home games at the Prudential Center. In 2011, the GoNewarkHoopFest was hosted by Seton Hall University for the East Regional playoffs of the 2011 NCAA Men's Division I Basketball Tournament. The Rutgers–Newark Scarlet Raiders field teams for NCAA competition in 14 Division III sports (7 each for men and women): men's and women's"} +{"qid": "test2387", "pid": "18528493", "query": "who plays at the prudential center in newark", "answer": "New Jersey Devils", "passage": "\"History of the New Jersey Devils\"\ncredit until the last possible day. Though construction was well underway, in late summer 2006, Cory Booker, who had recently taken office as Mayor of Newark, promised to reevaluate the deal and considered backing out. In October, Booker conceded there would be \"\"a first-class arena built in the city of Newark, whether we like it or not\"\", and soon after the Devils struck a deal including both property and monetary givebacks that appeased city officials. The arena, which was named the Prudential Center when Newark-based Prudential Financial purchased naming rights in early 2007, opened shortly after the start of the"} +{"qid": "test2387", "pid": "5778885", "query": "who plays at the prudential center in newark", "answer": "Seton Hall Pirates", "passage": "\"Pacific Park, Brooklyn\"\nthen mayor of Newark, campaigned for the New Jersey Nets to abandon plans to play at Pacific Park, and instead relocate permanently to the Prudential Center in downtown Newark, already home to the New Jersey Devils and Seton Hall Pirates; however, he later embraced the team's interim move to Newark, from fall 2010 to 2012. On February 14, 2006, New York State Supreme Court Justice Carol Edmead ruled in favor of the dismissal of attorney David Paget as the ESDC's outside counsel. Paget, who has been advising the ESDC in its environmental review of the Atlantic Yards project, had previously"} +{"qid": "test2387", "pid": "12442645", "query": "who plays at the prudential center in newark", "answer": "New Jersey Devils", "passage": "\"Ray Chambers\"\nwhich he had belonged to as a child in the 1950s. He has funded college educations for hundreds of Newark public school students served by the Club. Chambers was the founding Chairman of the New Jersey Performing Arts Center, helping obtain contributions from local corporations and contributing his own money, with the goal of creating a cultural center for Newark modeled after New York City's Lincoln Center and Washington, D.C.'s John F. Kennedy Center for the Performing Arts. As a partner in YankeeNets, Chambers played a critical role in bringing the New Jersey Devils to what is now the Prudential"} +{"qid": "test2387", "pid": "6752580", "query": "who plays at the prudential center in newark", "answer": "Seton Hall Pirates", "passage": "\"Prudential Center\"\nPrudential Center Prudential Center is a multi-purpose indoor arena in the central business district of Newark, New Jersey, United States. It was designed by HOK Sport (now Populous), with the exterior designed by Morris Adjmi Architects. Opened in 2007, it is the home of the New Jersey Devils of the National Hockey League (NHL) and the men's basketball program of Seton Hall University, known as the Seton Hall Pirates. The arena officially seats 16,514 patrons for hockey games and up to 18,711 for basketball. Fans and sports writers have affectionately nicknamed the arena \"\"The Rock\"\" in reference to the Rock"} +{"qid": "test2387", "pid": "765606", "query": "who plays at the prudential center in newark", "answer": "New Jersey Devils", "passage": "\"New Jersey Devils\"\nrequired letter of credit until the last possible day. Though construction was well underway, in late summer 2006, new Mayor of Newark Cory Booker promised to reevaluate the deal and considered backing out. In October, Booker conceded there would be \"\"a first-class arena built in the city of Newark, whether we like it or not,\"\" and soon after the Devils struck a deal including both property and monetary givebacks that appeased city officials. The arena, which was named the Prudential Center when Newark-based Prudential Financial purchased naming rights in early 2007, opened shortly after the start of the 2007–08 season."} +{"qid": "test2387", "pid": "6752615", "query": "who plays at the prudential center in newark", "answer": "Seton Hall Pirates", "passage": "\"Prudential Center\"\nI-78, I-280, US 1/9, NJ 21, US 22, and the Garden State Parkway. Prudential Center Prudential Center is a multi-purpose indoor arena in the central business district of Newark, New Jersey, United States. It was designed by HOK Sport (now Populous), with the exterior designed by Morris Adjmi Architects. Opened in 2007, it is the home of the New Jersey Devils of the National Hockey League (NHL) and the men's basketball program of Seton Hall University, known as the Seton Hall Pirates. The arena officially seats 16,514 patrons for hockey games and up to 18,711 for basketball. Fans and sports"} +{"qid": "test2389", "pid": "17995904", "query": "how long has tom brady been the patriots quarterback", "answer": "2001", "passage": "\"Tom Brady–Peyton Manning rivalry\"\nTom Brady–Peyton Manning rivalry The Tom Brady–Peyton Manning rivalry is a series of games that took place between 2001 and 2016, involving two quarterbacks in the National Football League (NFL): Tom Brady and Peyton Manning. Brady has played for the New England Patriots since , when he was the 199th selection in the sixth round of the 2000 NFL Draft. He has been the starter since , after Drew Bledsoe was injured early in the season, and has been so since, with the exception of , when he tore his ACL in the opening game. Manning was drafted by the"} +{"qid": "test2389", "pid": "2199978", "query": "how long has tom brady been the patriots quarterback", "answer": "2001", "passage": "\"Tom Brady\"\nBrady was selected by the New England Patriots with the 199th overall pick in the sixth round of 2000 NFL Draft and has since spent his entire 18-season career with the Patriots. Brady's tenure with the Patriots is an NFL record for the longest time playing quarterback for one franchise. Since Brady became their starting quarterback in 2001, the Patriots have never had a losing season and have won 15 division titles. The Patriots played in twelve AFC Championship Games from 2001 to 2017—including seven in a row from 2011 to 2017—and won eight of them. Brady and Patriots head"} +{"qid": "test2389", "pid": "17995908", "query": "how long has tom brady been the patriots quarterback", "answer": "2001", "passage": "\"Tom Brady–Peyton Manning rivalry\"\nthe playoff games went on to be the eventual Super Bowl winner, with the exception of the 2014 matchup. \"\"Note: Brady's statistics are updated as of October 22, 2018, while Manning's statistics are final.\"\" Tom Brady–Peyton Manning rivalry The Tom Brady–Peyton Manning rivalry is a series of games that took place between 2001 and 2016, involving two quarterbacks in the National Football League (NFL): Tom Brady and Peyton Manning. Brady has played for the New England Patriots since , when he was the 199th selection in the sixth round of the 2000 NFL Draft. He has been the starter since"} +{"qid": "test2389", "pid": "7005065", "query": "how long has tom brady been the patriots quarterback", "answer": "2001", "passage": "\"Damon Huard\"\nthe Seahawks. A free agent after the 2000 season, Huard signed with the New England Patriots. At training camp, he competed with first-year Tom Brady and second-year Michael Bishop for the backup job behind long-time starter Drew Bledsoe; In 2001 Brady became the team's second quarterback and Huard the third for the start of the season. When Bledsoe was injured in Week 2, Brady became the Patriots' starter for the remainder of the season, while Huard was the backup until Bledsoe returned in Week 10. As the third quarterback, Huard won his first Super Bowl ring in February 2002 with"} +{"qid": "test239", "pid": "7498052", "query": "panic at the disco song about a wedding", "answer": "I Write Sins Not Tragedies", "passage": "\"I Write Sins Not Tragedies\"\nflaw that will be their undoing. What I write are not sins; I write tragedies.\"\" \"\"I Write Sins Not Tragedies\"\" is Panic! at the Disco's first single to have a music video. (\"\"The Only Difference Between Martyrdom and Suicide Is Press Coverage\"\" was the first single, but no video was filmed.) The video for the song takes place at a strange, circus-themed wedding played by the Lucent Dossier Vaudeville Cirque. The video starts as the bride, played by Jessie Preston, and groom, Daniel Isaac McGuffey, are about to be married. Her family dress and behave formally, but are revealed later"} +{"qid": "test239", "pid": "18729503", "query": "panic at the disco song about a wedding", "answer": "I Write Sins Not Tragedies", "passage": "\"Hallelujah (Panic! at the Disco song)\"\nHallelujah (Panic! at the Disco song) \"\"Hallelujah\"\" is a song by American rock band Panic! at the Disco. It was released as a single on April 19, 2015 through Fueled By Ramen as the first single from the band's fifth studio album \"\"Death of a Bachelor\"\". \"\"Hallelujah\"\" debuted at number 40 on the \"\"Billboard\"\" Hot 100 selling over 71,000 copies, becoming the band's second top-40 hit single and the first in nine years since \"\"I Write Sins Not Tragedies\"\" was released in 2006. It has been digitally streamed over 89 million times on Spotify alone. \"\"Hallelujah\"\" was nominated for Song"} +{"qid": "test239", "pid": "13884947", "query": "panic at the disco song about a wedding", "answer": "I Write Sins Not Tragedies", "passage": "\"Jon Walker\"\nafter he joined, and Walker then toured with The Academy Is... as a guitar tech and a videographer. Walker joined Panic! at the Disco in May 2006, replacing former bassist Brent Wilson. At the time he joined, he was 20 years old, making him the oldest band member. Walker was with Panic! at the Disco when they won the video of the year award at the 2006 MTV Video Music Awards for their song \"\"I Write Sins Not Tragedies\"\", although he had not recorded the song with the band nor did he appear in the video. He co-wrote and released"} +{"qid": "test2390", "pid": "16972677", "query": "who wrote the song stop the world and let me off", "answer": "Carl Belew", "passage": "\"Carl Belew\"\ncharted in the 1970s with covers of \"\"Stop the World and Let Me Off\"\". Belew died of cancer on October 31, 1990 in Salina, Oklahoma. Carl Belew Carl Robert Belew (April 21, 1931 – October 31, 1990) was an American country music singer and songwriter. Belew recorded for Decca, RCA Victor, and MCA in the 1950s through 1970s, charting 11 times on Hot Country Songs. He also wrote singles for Johnnie & Jack, Eddy Arnold, Jim Reeves, and others. Born in Salina, Oklahoma, Belew's musical career began in the 1950s when he performed on the Louisiana Hayride. He signed to"} +{"qid": "test2391", "pid": "14930120", "query": "who did the chiefs play in the playoffs", "answer": "the Tennessee Titans", "passage": "\"Brandon Weeden\"\nBrian Hoyer (concussion) was cleared to play. Weeden was also Hoyer's backup for the Texans' 30-0 playoff loss to the Kansas City Chiefs. On April 1, 2016, Weeden re-signed with the Texans on a two-year, $4 million contract. He spent the 2016 season as the third-string quarterback behind a combination of Brock Osweiler and Tom Savage. Weeden did not appear in a game in 2016. He was Osweiler's backup for the playoff win against the Oakland Raiders. On September 2, 2017, Weeden was released by the Texans. On October 3, 2017, Weeden signed with the Tennessee Titans. He was only"} +{"qid": "test2392", "pid": "3583449", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Hurricane Charley\"\nhit the United States since Hurricane Andrew struck Florida in 1992 and the strongest hurricane to hit southwest Florida since Hurricane Donna in 1960. After moving slowly through the Caribbean Sea, Charley crossed Cuba on Friday, August 13 as a Category 3 hurricane, causing heavy damage and four deaths. That same day, it crossed over the Dry Tortugas, just 22 hours after Tropical Storm Bonnie had struck northwestern Florida. It was the first time in history that two tropical cyclones struck the same state in a 24-hour period. At its peak intensity of , Hurricane Charley struck the northern tip"} +{"qid": "test2392", "pid": "12045231", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Charley in South Carolina\"\nEffects of Hurricane Charley in South Carolina The effects of Hurricane Charley in South Carolina included $20 million (2004 USD) in damage and 135,000 power outages. Hurricane Charley lasted from August 9 to August 15, 2004, and at its peak attained 150 mph (240 km/h) winds, making it a strong Category 4 hurricane on the Saffir-Simpson Hurricane Scale. The storm made landfall in southwestern Florida at maximum strength, making it the strongest hurricane to hit the United States since Hurricane Andrew struck Florida twelve years before, in 1992. Before the storm, Governor Mark Sanford declared a state of emergency as"} +{"qid": "test2392", "pid": "3265162", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"2004 Atlantic hurricane season\"\nafter curving northwestward and was a 120 mph (195 km/h) Category 3 hurricane when it made landfall near Alquízar, Cuba on August 13. After emerging into the Straits of Florida, Charley weakened to a Category 2 hurricane. However, the storm abruptly strengthened into a Category 4 hurricane later on August 13, with winds peaking at 150 mph (240 km/h). At 19:45 UTC on August 13, Charley made landfall at Cayo Costa, Florida, followed by another landfall in Punta Gorda about an hour later. Charley rapidly weakened over Florida, falling to Category 1 by early on August 14. Later that day,"} +{"qid": "test2392", "pid": "20346519", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Irma in Florida\"\n2005 and the first Category 4 hurricane to make landfall in Florida since Charley in 2004. The storm made landfall in Florida on the same date as Hurricane Donna, the last Category 4 hurricane to strike the Florida Keys. Irma was only the second hurricane to hit Florida since Wilma, the other being Hermine in 2016. Due to few very intense hurricanes since Hurricane Andrew in 1992, there was concern that many Floridians never experienced or did not recall experiencing a hurricane as strong as Irma was projected to be at landfall, with significant growth in population and assets during"} +{"qid": "test2392", "pid": "1516099", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"History of Florida\"\nwas damaged heavily in 1995, with hurricanes Allison, Erin, and Opal hitting the area within the span of a few months. The storms increased in strength during the season, culminating with Opal's landfall as a Category 3 in October. Florida also suffered heavily during the 2004 Atlantic hurricane season, when four major storms struck the state. Hurricane Charley made landfall in Charlotte County area and cut northward through the peninsula, Hurricane Frances struck the Atlantic coast and drenched most of central Florida with heavy rains, Hurricane Ivan caused heavy damage in the western Panhandle, and Hurricane Jeanne caused damage to"} +{"qid": "test2392", "pid": "11793891", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Geography of Florida\"\nwithout any impact in the state by at least a tropical storm. For storms, category 4 or higher, 83% have either hit Florida or Texas. August to October is the most likely period for a hurricane in Florida. In 2004, Florida was hit by a record four hurricanes. Hurricanes Charley (August 13), Frances (September 4–5), Ivan (September 16), and Jeanne (September 25–26) cumulatively cost the state's economy $42 billion. Additionally, the four storms caused an estimated $45 billion in damage. In 2005, Hurricane Dennis (July 10) became the fifth storm to strike Florida within eleven months. Later, Hurricane Katrina (August"} +{"qid": "test2392", "pid": "3583448", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Hurricane Charley\"\nHurricane Charley Hurricane Charley was the first of four individual hurricanes to impact or strike Florida during 2004, along with Frances, Ivan and Jeanne, as well as one of the strongest hurricanes ever to strike the United States. It was the third named storm, the second hurricane, and the second major hurricane of the 2004 Atlantic hurricane season. Charley lasted from August 9 to 15, and at its peak intensity it attained winds, making it a strong Category 4 hurricane on the Saffir-Simpson Hurricane Scale. It made landfall in Southwest Florida at maximum strength, making it the strongest hurricane to"} +{"qid": "test2392", "pid": "3352224", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"U.S. Route 17\"\nbypass Charleston and the weight restrictions of the former bridges. On August 13, 2004, Hurricane Charley made landfall just before 4:00 p.m. local time near the southern terminus of US 17. Incredibly, Charley would either hit or threaten to hit the entire route of US 17, devastating almost the entire route in Florida, at least from Punta Gorda to well north of Orlando (when Charley followed the route of Interstate 4 out to sea). The Georgia stretch of US 17 was not hit, but was under a hurricane warning. When Charley made landfall again in South Carolina, its trail all"} +{"qid": "test2392", "pid": "1033188", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Sanibel, Florida\"\nso years it takes a significant hit, and about every 40 years a major one. Most of these have affected Sanibel. On August 13, 2004, Sanibel Island was hit hard by Hurricane Charley, a category four hurricane with winds. It was the strongest to hit Southwest Florida since Hurricane Donna in September 1960. While much of the native vegetation survived, the non-indigenous Australian Pines suffered serious damage, blocking nearly every road. Wildlife officials also reported that the nests of birds and sea turtles were destroyed. The Sanibel Lighthouse survived with little damage, the Sanibel Causeway suffered relatively minor damage except"} +{"qid": "test2392", "pid": "13465747", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Punta Gorda, Florida\"\nPunta Gorda, Florida Punta Gorda (; ) is a city in Charlotte County, Florida, United States. As of the 2010 census the city had a population of 16,641. It is the county seat of Charlotte County and the only incorporated municipality in the county. Punta Gorda is the principal city of the Punta Gorda, Florida Metropolitan Statistical Area and is also in the Sarasota-Bradenton-Punta Gorda Combined Statistical Area. Punta Gorda was the scene of massive destruction after Charley, a Category 4 hurricane, came through the city on August 13, 2004. Charley was the strongest tropical system to hit Florida since"} +{"qid": "test2392", "pid": "810000", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Polk County, Florida\"\nwith more than 500,000 residents, Polk County would be the most economically impacted (as a percentage of GDP) by climate change by the end of the twenty-first century. The eyes of 12 hurricanes have passed through the county at hurricane strength in recorded history, including Hurricane Irma (2017, category 1), Hurricane Jeanne (2004, category 1), Hurricane Charley (2004, category 2), Hurricane Donna (1960, category 2), Hurricane King (1950, category 1), the 1949 Florida hurricane (category 2), the 1945 Homestead hurricane (category 1), the 1933 Treasure Coast hurricane (category 1), the 1928 Okeechobee hurricane (category 2), Hurricane Four of the 1894"} +{"qid": "test2392", "pid": "13727042", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Charley in Jamaica\"\nthe depression intensified into a tropical storm and was given the name Charley after entering the eastern Caribbean Sea. Quickly tracking northwest, the small storm intensified. Late on August 11, as Charley traveled south of Jamaica, it attained hurricane intensity, with winds reaching 75 mph (120 km/h). Over the following days, the storm curved northeast and impacted western Cuba as a Category 3 hurricane before striking Florida as an intense Category 4 hurricane with winds up to 150 mph (240 km/h) on August 13. The weakened Charley rapidly tracked northeast before dissipating on August 15 near Long Island, New York."} +{"qid": "test2392", "pid": "1035030", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Port Charlotte, Florida\"\nwas severely impacted by Hurricane Charley on August 13, 2004. The hurricane, predicted to hit Tampa as a Category 2 hurricane, took a last-minute right hand turn and intensified into a Category 4 storm as it made landfall near Charlotte Harbor and caused severe damage in the city of Punta Gorda and in the Port Charlotte area. The storm's maximum sustained winds destroyed almost half of the homes in the county and caused heavy ecological damage to sensitive wetlands in the area. Port Charlotte is located at the north end of the Charlotte Harbor Estuary, northwest of the city of"} +{"qid": "test2392", "pid": "12015714", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Charley in North Carolina\"\nEffects of Hurricane Charley in North Carolina The effects of Hurricane Charley in North Carolina were minor to moderate and included $25 million (2004 USD) in damage. Hurricane Charley lasted from August 9 to August 15, 2004, and at peak intensity it attained 150 miles per hour (240 km/h) winds, making it a strong Category 4 hurricane on the Saffir-Simpson Hurricane Scale. The storm made landfall in southwestern Florida at maximum strength, and moved northward, parallel to the U.S. East Coast before moving ashore on northeastern South Carolina. The storm caused flooding in seven counties within the state as a"} +{"qid": "test2392", "pid": "3583455", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Hurricane Charley\"\nand rounded the southwest portion of the subtropical ridge, becoming a major hurricane—a storm classified as a Category 3 hurricane or higher—just before making landfall on southern Cuba. Charley came ashore near Punta Cayamas with maximum sustained winds of and gusts of up to , at about 0430 UTC on August 13. It weakened while crossing the island, passing about west of downtown Havana before weakening to . After crossing Cuba near Menelao Mora, Hurricane Charley accelerated to the north-northeast, toward the southwest coast of Florida in response to the approach of an unseasonal mid-tropospheric trough. Charley passed over the"} +{"qid": "test2392", "pid": "9964385", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"U.S. Route 17 in Florida\"\nRiver near Sanford, which was built in 1933 along with this segment of US 17, was replaced with the current four-lane Bill Benedict Bridge. The swing span of the original bridge has been preserved and now serves as a pier next to the current bridge. On August 13, 2004, Hurricane Charley made landfall just before 4:00 p.m. local time near the southern terminus of US 17. Incredibly, Charley would either hit or threaten to hit the entire route of US 17, devastating almost the entire route in Florida, at least from Punta Gorda to well north of Orlando (when Charley"} +{"qid": "test2392", "pid": "20329429", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Hurricane Irma\"\nparticularly in the northeastern Caribbean and the Florida Keys. It was also the most intense hurricane to strike the continental United States since Katrina in 2005, the first major hurricane to make landfall in Florida since Wilma in the same year, and the first Category 4 hurricane to strike the state since Charley in 2004. Irma developed from a tropical wave near Cape Verde on August 30. Favorable conditions allowed Irma to rapidly intensify into a Category 3 hurricane on the Saffir–Simpson wind scale by late on August 31. However, the storm's intensity fluctuated between Categories 2 and 3 for"} +{"qid": "test2392", "pid": "13727040", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Charley in Jamaica\"\nin Florida as a strong Category 4. The storm eventually dissipated on August 15. As Charley approached Jamaica, officials issued tropical storm watches and warnings before issuing a hurricane watch. Two cruise ships were diverted from docking in Jamaica, affecting 5,700 passengers. Numerous shelters were set up across the island; however, relatively few people sought refuge in them. Although it was only a Category 1 hurricane, Charley caused significant damage in southern Jamaica. Saint Elizabeth Parish sustained the worst damage. About 750 farmers reported damage, and at one point, flooding isolated 30 families. The only fatality in Jamaica occurred after"} +{"qid": "test2392", "pid": "20337798", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Meteorological history of Hurricane Irma\"\nIrma the first Category 4 hurricane to strike Florida since Hurricane Charley in 2004. In addition, Irma's landfall in the Florida Keys marked the first time on record two Category 4 hurricanes made landfall in the continental U.S. within the same season – with Hurricane Harvey having made landfall at roughly the same intensity in Texas just over two weeks prior. Increasing wind shear and land interaction caused the satellite appearance of the storm to become ragged later that day, and Irma weakened to Category 3 intensity before making its seventh and final landfall at 19:30 UTC in Marco Island,"} +{"qid": "test2392", "pid": "3265142", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"2004 Atlantic hurricane season\"\nNicole and Tropical Storm Otto had no effect on land while tropical cyclones. There are four notable storms: Hurricane Charley, that made landfall in Florida as a Category 4 hurricane on the Saffir–Simpson hurricane wind scale (SSHWS), causing $16 billion in damage in the United States alone. Later in August, Hurricane Frances struck the Bahamas and Florida, causing at least 49 deaths and $10.1 billion in damage. The costliest and most intense storm was Hurricane Ivan. It was a Category 5 hurricane that devastated multiple countries adjacent to the Caribbean Sea, before entering the Gulf of Mexico and causing catastrophic"} +{"qid": "test2392", "pid": "810001", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Polk County, Florida\"\nseason (category 1), and Hurricane Three of the 1871 season, and Hurricane Eight of the 1859 season (category 1). Additionally, four storms were downgraded from hurricane strength at a location outside the county to tropical storm force at some point within the county and, given the hours between National Hurricane Center updates (modern era) or earlier estimates, it is not clear whether these brought hurricane-force sustained winds to Polk County: Hurricane Frances (2004), Hurricane Erin (1995) Hurricane Two of the 1939 season, and the 1910 Cuba hurricane (category 1). Numerous tropical storms have passed through the county. Hurricane Charley in"} +{"qid": "test2392", "pid": "13727051", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Charley in Jamaica\"\nof flooding. Effects of Hurricane Charley in Jamaica The effects of Hurricane Charley in Jamaica included one fatality and at least $1 million in damages. Forming out of a tropical wave on August 9, 2004, Charley quickly tracked through the eastern Caribbean Sea and attained tropical storm status on August 10. While passing south of Jamaica on August 11, the storm was upgraded to a Category 1 hurricane. During its passage of Jamaica, Charley had maximum winds of 75 mph (120 km/h), a low-end Category 1 hurricane. Turning north, the storm impacted western Cuba as a Category 3 storm before"} +{"qid": "test2392", "pid": "13727039", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Effects of Hurricane Charley in Jamaica\"\nEffects of Hurricane Charley in Jamaica The effects of Hurricane Charley in Jamaica included one fatality and at least $1 million in damages. Forming out of a tropical wave on August 9, 2004, Charley quickly tracked through the eastern Caribbean Sea and attained tropical storm status on August 10. While passing south of Jamaica on August 11, the storm was upgraded to a Category 1 hurricane. During its passage of Jamaica, Charley had maximum winds of 75 mph (120 km/h), a low-end Category 1 hurricane. Turning north, the storm impacted western Cuba as a Category 3 storm before making landfall"} +{"qid": "test2392", "pid": "792041", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Charlotte County, Florida\"\nof King George III. Punta Gorda is the only incorporated city in Charlotte County. On August 13, 2004 Charlotte County was devastated when Hurricane Charley came ashore near Port Charlotte as a Category 4 hurricane. Historic places in Charlotte County include the Old Charlotte County Courthouse as well as those on the List of Registered Historic Places in Charlotte County. According to the U.S. Census Bureau, the county has a total area of , of which is land and (20.7%) is water. Charlotte Harbor Estuary is an important natural preserve and one of the most productive in Florida. As of"} +{"qid": "test2392", "pid": "1875741", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Saffir–Simpson scale\"\nscale became operational on May 15, 2010. The scale excludes flood ranges, storm surge estimations, rainfall, and location, which means a Category 2 hurricane that hits a major city will likely do far more cumulative damage than a Category 5 hurricane that hits a rural area. The agency cited various hurricanes as reasons for removing the \"\"scientifically inaccurate\"\" information, including Hurricane Katrina (2005) and Hurricane Ike (2008), which both had stronger than estimated storm surges, and Hurricane Charley (2004), which had weaker than estimated storm surge. Since being removed from the Saffir–Simpson hurricane wind scale, storm surge predicting and modeling"} +{"qid": "test2392", "pid": "1035572", "query": "what category was hurricane charley when it hit florida", "answer": "4", "passage": "\"Palm Coast, Florida\"\nline, southwest to the Bunnell city limits, and southeast to touch the city of Flagler Beach. Interstate 95 crosses Palm Coast from north to south, with access from Exit 293 (Matanzas Woods Parkway), Exit 289 (Palm Coast Parkway), and Exit 284 (Florida State Road 100). U.S. Route 1 runs parallel to I-95 through the western side of Palm Coast, leading into Bunnell. The area around Palm Coast last saw a direct hit from a tropical cyclone in 2004 when Hurricane Charley passed directly over the area. Since 1851 when hurricane tracking data began, 33 hurricanes and tropical storms have directly"} +{"qid": "test2393", "pid": "16277162", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Revelation 12\"\na meaning; it is not 'a surprise ending with itself', but a signal to arrest attention, and possessing significance; there is 'an idea concealed behind it'.\"\" New King James Version The word rendered \"\"dragon\"\" - , \"\"drakōn\"\" - occurs, in the New Testament, only in the Book of Revelation, where it is uniformly rendered as here: \"\"dragon\"\". King James Version King James Version New King James Version King James Version Revelation 12 Revelation 12 is the twelfth chapter of the Book of Revelation or the Apocalypse of John in the New Testament of the Christian Bible. The book is traditionally"} +{"qid": "test2393", "pid": "8002142", "query": "where in the bible is the book of revelation", "answer": "last book", "passage": "\"Poor Man's Bible\"\nhe/she is a sinful being and as such will be brought to trial on the Day of Judgement. This Day of Judgement is described by the last book of the Bible, known as the \"\"Revelation of St John\"\" or the Book of Revelation in which John describes many scenes, including the dreadful Apocalypse and a vision of the Lord seated on a throne borne up by four \"\"Heavenly Beasts\"\" - a winged lion, a winged man, a winged bull and an eagle, as also described in the book of Ezekiel. This Revelation is often depicted, with or without the Judgement"} +{"qid": "test2393", "pid": "19255883", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Revelation 19\"\nRevelation 19 Revelation 19 is the nineteenth chapter of the Book of Revelation or the Apocalypse of John in the New Testament of the Christian Bible. The book is traditionally attributed to John the Apostle, but the precise identity of the author remains a point of academic debate. In this chapter, heaven exults over the fall of Babylon the Great. The New King James Version organises this chapter as follows: In the Jerusalem Bible, verses 1 to 10 conclude the section in chapters 17 and 18 dealing with the Punishment of Babylon, and verses 11 to 21 concern \"\"the first"} +{"qid": "test2393", "pid": "19211110", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Revelation 2\"\nso seduced, that they did everything they desired them, which was just the number of those that were slain, . New King James Version New King James Version The Jerusalem Bible suggests that Jezebel was a \"\"self-styled prophetess of the Nicolaitan sect\"\". Theologian John Gill writes: Revelation 2 Revelation 2 is the second chapter of the Book of Revelation or the Apocalypse of John in the New Testament of the Christian Bible. The book is traditionally attributed to John the Apostle, but the precise identity of the author remains a point of academic debate. This chapter is divided into 29"} +{"qid": "test2393", "pid": "858211", "query": "where in the bible is the book of revelation", "answer": "last book", "passage": "Patmos\nfortification wall and towers. Patmos is mentioned in the Book of Revelation, the last book of the Christian Bible. The book's introduction states that its author, John, was on Patmos when he was given (and recorded) a vision from Jesus. Early Christian tradition identified this writer John of Patmos as John the Apostle. As such, Patmos is a destination for Christian pilgrimage. Visitors can see the cave where John is said to have received his Revelation (the Cave of the Apocalypse), and several monasteries on the island are dedicated to Saint John. After the death of John of Patmos, possibly"} +{"qid": "test2393", "pid": "19255866", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Revelation 18\"\nRevelation 18 Revelation 18 is the eighteenth chapter of the Book of Revelation or the Apocalypse of John in the New Testament of the Christian Bible. The book is traditionally attributed to John the Apostle, but the precise identity of the author remains a point of academic debate. This chapter describes the fall of Babylon the Great. The New King James Version organises this chapter as follows: New King James Version \"\"Another angel, one of several angels distinguished from each other within the Book of Revelation: see on Revelation 10:1. In , \"\"the Earth shone with the glory of the"} +{"qid": "test2393", "pid": "19254116", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Revelation 5\"\nRevelation 5 Revelation 5 is the fifth chapter of the Book of Revelation or the Apocalypse of John in the New Testament of the Christian Bible. The book is traditionally attributed to John the Apostle, but the precise identity of the author remains a point of academic debate. The New King James Version organises this chapter as follows: New King James Version The sealed scroll or book (, \"\"bibliov\"\") is introduced, which will be unsealed step by step in chapter 6 and finally opened with the breach of the seventh seal in . \"\"The idea of the book in which"} +{"qid": "test2393", "pid": "19255865", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Revelation 17\"\nin no way to be conjectured which of the vial-angels it was\"\". The words \"\"to me\"\" do not appear in Codex Alexandrinus or in the Vulgate translation. New King James Version The King James Version and New King James Version include the word 'mystery' within her title, but in many other English translations the word is descriptive of the name: \"\"a name that has a secret meaning\"\" (Good News Bible). New King James Version Revelation 17 Revelation 17 is the seventeenth chapter of the Book of Revelation or the Apocalypse of John in the New Testament of the Christian Bible."} +{"qid": "test2393", "pid": "13661868", "query": "where in the bible is the book of revelation", "answer": "in the New Testament", "passage": "\"Thou shalt not take the name of the Lord thy God in vain\"\npronouncing the name of God at all, resulting in the replacement of the Tetragrammaton by \"\"Adonai\"\" (literally \"\"my lords\"\" – see Adonai) in pronunciation. In the Hebrew Bible itself, the commandment is directed against abuse of the name of God, not against any use; there are numerous examples in the Hebrew Bible and a few in the New Testament where God's name is called upon in oaths to tell the truth or to support the truth of the statement being sworn to, and the books of Daniel and Revelation include instances where an angel sent by God invokes the name"} +{"qid": "test2394", "pid": "19551920", "query": "who played skeletor in the movie masters of the universe", "answer": "Frank Langella", "passage": "\"Evil Warriors (Masters of The Universe)\"\nFilmation's previous series \"\"Flash Gordon\"\"), Campbell Lane in the 1990s series, and by Brian Dobson in the 2002 series. In the 1980s live-action movie, Skeletor is portrayed by Frank Langella. Panthor is Skeletor's evil feline companion, a giant purple panther who serves as an evil counterpart to Battle Cat. Beast Man makes his debut in Mattel's very first illustrated books as a follower of Skeletor. As the toyline expanded, he stayed at Skeletor's side. Beast Man is a mandrill-like humanoid with orange and red fur, who can telepathically summon wild creatures of Eternia to aid Skeletor's schemes. He was frequently"} +{"qid": "test2394", "pid": "12049657", "query": "who played skeletor in the movie masters of the universe", "answer": "Frank Langella", "passage": "\"Masters of the Universe: The Movie\"\nMasters of the Universe: The Movie Masters of the Universe: The Movie is an action-adventure game developed by Gremlin Graphics, and published in 1987. It is based on the American film \"\"Masters of the Universe\"\" (1987), directed by Gary Goddard. The film and the game are part of the Masters of the Universe media franchise. A promotional photo of Dolph Lundgren as He-Man and Frank Langella as Skeletor illustrates the video game packaging. The MSX version of the game is titled Masters of the Universe. Two other Masters of the Universe video games were published in the same year: \"\"\"\""} +{"qid": "test2394", "pid": "12049658", "query": "who played skeletor in the movie masters of the universe", "answer": "Frank Langella", "passage": "\"Masters of the Universe: The Movie\"\nand \"\"\"\". Masters of the Universe: The Movie Masters of the Universe: The Movie is an action-adventure game developed by Gremlin Graphics, and published in 1987. It is based on the American film \"\"Masters of the Universe\"\" (1987), directed by Gary Goddard. The film and the game are part of the Masters of the Universe media franchise. A promotional photo of Dolph Lundgren as He-Man and Frank Langella as Skeletor illustrates the video game packaging. The MSX version of the game is titled Masters of the Universe. Two other Masters of the Universe video games were published in the same"} +{"qid": "test2396", "pid": "6538533", "query": "when was the first mad max movie release", "answer": "1979", "passage": "\"Max Rockatansky\"\nFilm\"\" ranked him #75 in their Top 100 Movie Characters of All Time. Max Rockatansky Max Rockatansky is the title character and protagonist of the post-apocalyptic action films from the \"\"Mad Max\"\" franchise, which spans 1979 to 2015. He appears in the films \"\"Mad Max\"\", \"\"Mad Max 2\"\", \"\"Mad Max Beyond Thunderdome\"\", and \"\"\"\". Created by director George Miller and producer Byron Kennedy, the character was played by actor Mel Gibson in the first three films, and by Tom Hardy in the fourth. In \"\"Mad Max\"\", Max Rockatansky is a Main Force Patrol officer tasked with maintaining law and order"} +{"qid": "test2396", "pid": "1879072", "query": "when was the first mad max movie release", "answer": "1979", "passage": "\"Mad Max\"\nBernard Herrmann–type score and hired May after hearing his work for \"\"Patrick\"\" (1978). \"\"With the little budget that we had we went ahead and did it, and spent a lot of time on it,\"\" said May. \"\"George was marvelous to work with; he had a lot of ideas about what he wanted although he wasn’t a musician.\"\" A soundtrack album was released in 1980 by Varèse Sarabande. \"\"Mad Max\"\" was first released in Australia through Roadshow Film Distributors (now Village Roadshow Pictures) in 1979. The movie was sold overseas for $1.8 million, with American International Pictures releasing in the United"} +{"qid": "test2396", "pid": "18785647", "query": "when was the first mad max movie release", "answer": "1979", "passage": "\"Mad Max (soundtrack)\"\nHe later added, \"\"Far more narratively structured than the two scores that followed in the \"\"Mad Max Trilogy\"\", but no less violent, ballsy, headlong and rubber-burning, this is a classic thriller score from an era that was the change.\"\" Additional music featured in \"\"Mad Max\"\": Mad Max (soundtrack) Mad Max (Original Motion Picture Soundtrack) is a soundtrack album for the 1979 film, \"\"Mad Max\"\", composed by Brian May. It was released on vinyl in the United States in 1980 by Varèse Sarabande, followed by a CD release on 26 October 1993. Composer Brian May first got in contact with director"} +{"qid": "test2396", "pid": "18785643", "query": "when was the first mad max movie release", "answer": "1979", "passage": "\"Mad Max (soundtrack)\"\nMad Max (soundtrack) Mad Max (Original Motion Picture Soundtrack) is a soundtrack album for the 1979 film, \"\"Mad Max\"\", composed by Brian May. It was released on vinyl in the United States in 1980 by Varèse Sarabande, followed by a CD release on 26 October 1993. Composer Brian May first got in contact with director George Miller and producer Byron Kennedy after director Richard Franklin played the two May's score for his then-upcoming film \"\"Patrick\"\" (1978). Because the score resembled the work of Bernard Herrmann, May ultimately won the assignment of composing music for \"\"Mad Max\"\". \"\"The sort of score"} +{"qid": "test2396", "pid": "13767672", "query": "when was the first mad max movie release", "answer": "1979", "passage": "\"Mad Max (franchise)\"\nMad Max (franchise) Mad Max is an Australian dystopian action media franchise created by George Miller and Byron Kennedy. It began in 1979 with \"\"Mad Max\"\", and was followed by three films: \"\"Mad Max 2\"\" (1981), \"\"Mad Max Beyond Thunderdome\"\" (1985) and \"\"\"\" (2015). Mel Gibson starred in the first three films and Tom Hardy took over as Max in the fourth film. The series follows the adventures of Max Rockatansky, a police officer in a future Australia which is experiencing societal collapse due to war and critical resource shortages. When his wife and child are murdered by a vicious"} +{"qid": "test2396", "pid": "16648451", "query": "when was the first mad max movie release", "answer": "1979", "passage": "\"Mad Max: Fury Road\"\nMax: Fury Road\"\" is a remarkable and glorious motion picture, not just one of the great action movies of our time but also a great and timely film, period.\"\" Alonso Duralde of \"\"TheWrap\"\" wrote, \"\"In the same way that the original 1979 \"\"Mad Max\"\" was the \"\"Citizen Kane\"\" of gut-bucket Australian exploitation cinema, \"\"Mad Max: Fury Road\"\" may well be the \"\"Götterdämmerung\"\" of drive-in movies. It has its roots in the Western and the post-apocalyptic road-rage action saga [...], where Miller dares anyone else to follow in his tire treads.\"\" IGN reviewer Scott Collura gave the film 9.2 out of"} +{"qid": "test2397", "pid": "2926022", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Joanna Cassidy", "passage": "\"Don't Tell Mom the Babysitter's Dead\"\nis currently in the works. As of December 2017, further details are unknown. Don't Tell Mom the Babysitter's Dead Don't Tell Mom the Babysitter's Dead is a 1991 American coming-of-age story comedy film directed by Stephen Herek and starring Christina Applegate, Joanna Cassidy, Josh Charles, and David Duchovny. The plot focuses on seventeen-year-old Sue Ellen Crandell, whose mother leaves for a two-month summer vacation in Australia, putting all five siblings in the care of an evil tyrannical elderly babysitter. When the babysitter suddenly dies in her sleep, Sue Ellen assumes the role as head of the household to prevent her"} +{"qid": "test2397", "pid": "2926012", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Joanna Cassidy", "passage": "\"Don't Tell Mom the Babysitter's Dead\"\nDon't Tell Mom the Babysitter's Dead Don't Tell Mom the Babysitter's Dead is a 1991 American coming-of-age story comedy film directed by Stephen Herek and starring Christina Applegate, Joanna Cassidy, Josh Charles, and David Duchovny. The plot focuses on seventeen-year-old Sue Ellen Crandell, whose mother leaves for a two-month summer vacation in Australia, putting all five siblings in the care of an evil tyrannical elderly babysitter. When the babysitter suddenly dies in her sleep, Sue Ellen assumes the role as head of the household to prevent her mother from returning home early. She fakes a resume to get a job"} +{"qid": "test2397", "pid": "8210155", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Christopher Pettiet", "passage": "\"Christopher Pettiet\"\nChristopher Pettiet Christopher Lee Pettiet often referred to as Chris Pettiet (February 12, 1976 – April 12, 2000) was an American television and film actor best known for his role as Jesse James in the Western TV series \"\"The Young Riders\"\" and as Zach Crandell in the cult comedy film \"\"Don't Tell Mom the Babysitter's Dead\"\" (1991). Pettiet began his career as a child actor making appearances in television series such as \"\"seaQuest DSV\"\", \"\"\"\", \"\"L.A. Law\"\", \"\"Empty Nest\"\", \"\"Picket Fences\"\" and \"\"Undressed\"\". In 1991 he played Christina Applegate's younger brother in the comedy film \"\"Don't Tell Mom the Babysitter's"} +{"qid": "test2397", "pid": "2711230", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Danielle Harris", "passage": "\"Danielle Harris\"\nshow \"\"In Living Color\"\". Harris' next major role was in the 1991 comedy film \"\"Don't Tell Mom the Babysitter's Dead\"\", as Melissa Crandell, with the story revolving around five siblings whose mother goes to Australia for two months, only to have her children's babysitter die. The young protagonists choose not to tell their mother and attempt to live on their own. The film has a 31% approval rate on Rotten Tomatoes. Harris had a guest role in the 1991 series \"\"Eerie, Indiana\"\", portraying a character who receives a heart transplant then begins to act like the heart's original owner. She"} +{"qid": "test2397", "pid": "8000550", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Concetta Tomei", "passage": "\"Concetta Tomei\"\nsitcom \"\"Wings\"\" titled \"\"The Late Mrs. Biggins\"\" where she played the former wife of Roy Biggins, and she also had the role of Mom in the cult film \"\"Don't Tell Mom the Babysitter's Dead\"\". She starred in the 1992 miniseries \"\"The Burden of Proof\"\". In 2005, Tomei guest appeared in an episode of \"\"The King of Queens\"\". One year later, in 2006, she returned to Off-Broadway with an acclaimed performance in Sarah Ruhl's \"\"The Clean House\"\". In 2007 she appeared opposite Kevin Kline and Jennifer Garner in the Broadway production of \"\"\"\". From 1997-2011, Tomei played guest roles on TV"} +{"qid": "test2397", "pid": "12482513", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Christina Applegate", "passage": "\"Christina Applegate\"\nChristina Applegate Christina Applegate (born November 25, 1971) is an American actress and dancer. As an adolescent actress, she started playing the role of Kelly Bundy on the Fox sitcom \"\"Married... with Children\"\" (1987–97). In her adult years, Applegate established a film and television career, winning an Emmy Award and earning Tony and Golden Globe nominations. Applegate has had major roles in several films, including \"\"Don't Tell Mom the Babysitter's Dead\"\" (1991), \"\"The Big Hit\"\" (1998), \"\"The Sweetest Thing\"\" (2002), \"\"Grand Theft Parsons\"\" (2003), \"\"\"\" (2004) and its sequel \"\"\"\" (2013), \"\"Hall Pass\"\" (2011), \"\"Vacation\"\" (2015), and \"\"Bad Moms\"\" (2016)."} +{"qid": "test2397", "pid": "4742393", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Josh Charles", "passage": "\"Josh Charles\"\nbegan his career performing comedy at the age of nine. As a teenager, he spent several summers at Stagedoor Manor Performing Arts Center in New York, and attended the Baltimore School for the Arts. Charles's film debut was in fellow Baltimore native John Waters' \"\"Hairspray\"\" in 1988. The following year, he starred alongside Robin Williams and Ethan Hawke in the Oscar-winning \"\"Dead Poets Society\"\". Subsequent film roles have included \"\"Don't Tell Mom the Babysitter's Dead\"\", \"\"Threesome\"\", \"\"Pie in the Sky\"\", \"\"Muppets from Space\"\", \"\"S.W.A.T\"\", \"\"Four Brothers\"\", \"\"After.Life\"\", \"\"Crossing the Bridge\"\", and \"\"Brief Interviews with Hideous Men\"\". On television, Charles played"} +{"qid": "test2397", "pid": "8208850", "query": "the cast of don't tell mom the babysitter's dead", "answer": "John Getz", "passage": "\"John Getz\"\nand \"\"Private Practice\"\". Getz also appeared in \"\"The Fly\"\" (1986) and \"\"The Fly II\"\" (1989) as Stathis Borans, a science magazine editor who pays a heavy price for his curiosity. Also in 1989, he played a Marine Corps Major in \"\"Born on the Fourth of July\"\". In 1991, Getz appeared as the unpleasant boyfriend of professional women in \"\"Don't Tell Mom the Babysitter's Dead\"\" and \"\"Curly Sue\"\". In 1990, Getz appeared as a crime boss in the Charlie Sheen and Emilio Estevez spoof \"\"Men At Work\"\". In 1994, he appeared in the film \"\"Playmaker\"\", starring Colin Firth and Jennifer Rubin."} +{"qid": "test2397", "pid": "2926015", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Joanna Cassidy", "passage": "\"Don't Tell Mom the Babysitter's Dead\"\nto Mrs. Sturak by their mother with their summer money is empty; she had it on her when they delivered her body to the funeral home. With no money to pay the family's bills, Sue Ellen finds work at a fast food restaurant called Clown Dog. Despite a budding relationship with her co-worker named Bryan, she quits because of the obnoxious manager. Sue Ellen then forges a résumé under the guise of a young fashion designer and applies at General Apparel West (GAW), hoping to secure a job as a receptionist. However, Rose Lindsey (Joanna Cassidy), a company executive, finds"} +{"qid": "test2397", "pid": "12482517", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Christina Applegate", "passage": "\"Christina Applegate\"\non the series, Applegate was seen in \"\"Dance Till Dawn\"\" (1988, NBC) and in \"\"Streets\"\" (1990), in which a teenage drug addict is stalked by a psychotic police officer. Applegate guest-starred in \"\"21 Jump Street\"\" (1988) and \"\"Top of the Heap\"\" (1991, as Kelly Bundy), and hosted \"\"Saturday Night Live\"\" (May 8, 1993, and October 13, 2012) and \"\"MADtv\"\" (1996). The character of Sue Ellen Crandell in the black comedy feature \"\"Don't Tell Mom the Babysitter's Dead\"\" (1991) was Applegate's first starring role in a mainstream film, playing a rebellious teenager who is forced to take care of siblings after"} +{"qid": "test2397", "pid": "5369138", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Joanna Cassidy", "passage": "\"Joanna Cassidy\"\nJoanna Cassidy Joanna Cassidy (born August 2, 1945) is an American actress. She is best known for her roles as the replicant Zhora Salome in Ridley Scott's film \"\"Blade Runner\"\" (1982) and Dolores in \"\"Who Framed Roger Rabbit\"\" (1988). She has won a Golden Globe Award, was nominated for three Emmy Awards and also was nominated for a Saturn Award and Screen Actors Guild Awards. Cassidy also has starred in films such as \"\"Under Fire\"\", \"\"The Fourth Protocol\"\", \"\"The Package\"\", \"\"Where the Heart Is\"\", \"\"Don't Tell Mom the Babysitter's Dead\"\", \"\"Vampire in Brooklyn\"\" and \"\"Ghosts of Mars\"\". From 2001 to"} +{"qid": "test2397", "pid": "5369143", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Joanna Cassidy", "passage": "\"Joanna Cassidy\"\nHeart Is\"\" (1990) and \"\"Don't Tell Mom the Babysitter's Dead\"\" (1991). In 1993, she co-starred with Dudley Moore on the sitcom \"\"Dudley\"\", but the series only lasted for six episodes. She played the ex-wife of James Garner's lead character in the television movie, \"\"The Rockford Files: I Still Love L.A.\"\" (1994). Other screen credits from this era include \"\"Barbarians at the Gate\"\" (1993), the miniseries adaptation of Stephen King's \"\"The Tommyknockers\"\" (1993), and Wes Craven's \"\"Vampire in Brooklyn\"\" (1995). Cassidy also provided the voice of Inspector Maggie Sawyer on The WB series \"\"\"\", and had recurring guest roles on television"} +{"qid": "test2397", "pid": "7643229", "query": "the cast of don't tell mom the babysitter's dead", "answer": "Jayne Brook", "passage": "\"Jayne Brook\"\ndirector John Terlesky. They have two daughters, Alexandra Sophia and Annaliese Marie. Her first acting role was in the film \"\"\"\" in 1987. During the late 1980s, she worked for a while in Great Britain, appearing in \"\"The Old Boy Network\"\", a single season ITV comedy series about three ex-spies who set up as private investigators after the end of the Cold War. Brook went on to appear in numerous film and television roles, first as Carolyn in the 1991 film \"\"Don't Tell Mom the Babysitter's Dead\"\", a starring role in the spring 1993 ABC network version of \"\"Sirens\"\", a"} +{"qid": "test2398", "pid": "2652047", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Adrenal medulla\"\nAdrenal medulla The adrenal medulla () is part of the adrenal gland. It is located at the center of the gland, being surrounded by the adrenal cortex. It is the innermost part of the adrenal gland, consisting of cells that secrete epinephrine (adrenaline), norepinephrine (noradrenaline), and a small amount of dopamine in response to stimulation by sympathetic preganglionic neurons. The adrenal medulla consists of irregularly shaped cells grouped around blood vessels. These cells are intimately connected with the sympathetic division of the autonomic nervous system (ANS). In fact, these adrenal medullary cells are modified postganglionic neurons, and preganglionic autonomic nerve"} +{"qid": "test2398", "pid": "1435153", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Autonomic nervous system\"\nand digest\"\" response, promotes calming of the nerves return to regular function, and enhancing digestion. Functions of nerves within the parasympathetic nervous system include: The enteric nervous system is the intrinsic nervous system of the gastrointestinal system. It has been described as \"\"the Second Brain of the Human Body\"\". Its functions include: At the effector organs, sympathetic ganglionic neurons release noradrenaline (norepinephrine), along with other cotransmitters such as ATP, to act on adrenergic receptors, with the exception of the sweat glands and the adrenal medulla: A full table is found at Table of neurotransmitter actions in the ANS. Caffeine is"} +{"qid": "test2398", "pid": "9838138", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "Norepinephrine\ncan either be broken down by monoamine oxidase or repackaged into vesicles by VMAT, making it available for future release. Norepinephrine is the main neurotransmitter used by the sympathetic nervous system, which consists of about two dozen sympathetic chain ganglia located next to the spinal cord, plus a set of prevertebral ganglia located in the chest and abdomen. These sympathetic ganglia are connected to numerous organs, including the eyes, salivary glands, heart, lungs, liver, gallbladder, stomach, intestines, kidneys, urinary bladder, reproductive organs, muscles, skin, and adrenal glands. Sympathetic activation of the adrenal glands causes the part called the adrenal medulla"} +{"qid": "test2398", "pid": "28381", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Adrenal gland\"\ncatecholamines adrenaline and noradrenaline, released by the medulla. Approximately 20% noradrenaline (norepinephrine) and 80% adrenaline (epinephrine) are secreted here. The adrenal medulla is driven by the sympathetic nervous system via preganglionic fibers originating in the thoracic spinal cord, from vertebrae T5–T11. Because it is innervated by preganglionic nerve fibers, the adrenal medulla can be considered as a specialized sympathetic ganglion. Unlike other sympathetic ganglia, however, the adrenal medulla lacks distinct synapses and releases its secretions directly into the blood. The adrenal glands have one of the greatest blood supply rates per gram of tissue of any organ: up to 60"} +{"qid": "test2398", "pid": "10331026", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Adrenal tumor\"\nanatomically at the center of each adrenal gland, and is composed of neuroendocrine (chromaffin) cells which produce and release epinephrine (adrenaline) into the bloodstream in response to activation of the sympathetic nervous system. Neuroblastoma and pheochromocytoma are the two most important tumors which arise from the adrenal medulla. Both tumors may also arise from extra-adrenal sites, specifically, in the paraganglia of the sympathetic chain. Neuroblastoma is an aggressive cancer of immature neuroblastic cells (precursors of neurons), and is one of the most common pediatric cancers, with a median age at diagnosis of two years. Adrenal neuroblastoma typically presents with a"} +{"qid": "test2398", "pid": "3308891", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Muscarinic acetylcholine receptor\"\nform the principal receptors on the innervated tissue. Very few parts of the sympathetic system use cholinergic receptors. In sweat glands the receptors are of the \"\"muscarinic\"\" type. The sympathetic nervous system also has some preganglionic nerves terminating at the chromaffin cells in the adrenal medulla, which secrete epinephrine and norepinephrine into the bloodstream. Some believe that chromaffin cells are modified postganglionic CNS fibers. In the adrenal medulla, acetylcholine is used as a neurotransmitter, and the receptor is of the \"\"nicotinic\"\" type. The somatic nervous system uses a nicotinic receptor to acetylcholine at the neuromuscular junction. Muscarinic acetylcholine receptors are"} +{"qid": "test2398", "pid": "2675150", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "Arteriole\nto an increase in flow rate. Arterioles receive autonomic nervous system innervation and respond to various circulating hormones in order to regulate their diameter. Retinal vessels lack a functional sympathetic innervation. Further local responses to stretch, carbon dioxide, pH, and oxygen also influence arteriolar tone. Generally, norepinephrine and epinephrine (hormones produced by sympathetic nerves and the adrenal gland medulla) are vasoconstrictive acting on alpha 1-adrenergic receptors. However, the arterioles of skeletal muscle, cardiac muscle, and pulmonary circulation vasodilate in response to these hormones when they act on beta-adrenergic receptors. Generally, stretch and high oxygen tension increase tone, and carbon dioxide"} +{"qid": "test2398", "pid": "16511271", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Sympathoadrenal system\"\na single unit to activate an organism’s “fight or flight” response. This “sympathoadrenal discharge” causes an increase in heart rate, cardiac output, blood pressure, and glucose levels. These sympathoadrenal functions show the combined responses of the central nervous system on a multitude of external stimuli. The two main chemical messengers of the sympathoadrenal system are norepinephrine and epinephrine (also called noradrenaline and adrenaline respectively). These chemicals are created by the adrenal glands after receiving neuronal signals from the sympathetic nervous system. The different physiological affects of these chemicals depend on the particular tissue that it innervates. As part of the"} +{"qid": "test2398", "pid": "1593519", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Sympathetic nervous system\"\nepinephrine (adrenaline). The sympathetic nervous system is responsible for up- and down-regulating many homeostatic mechanisms in living organisms. Fibers from the SNS innervate tissues in almost every organ system, providing at least some regulation of functions as diverse as pupil diameter, gut motility, and urinary system output and function. It is perhaps best known for mediating the neuronal and hormonal stress response commonly known as the \"\"fight-or-flight response\"\". This response is also known as \"\"sympatho-adrenal response\"\" of the body, as the preganglionic sympathetic fibers that end in the adrenal medulla (but also all other sympathetic fibers) secrete acetylcholine, which activates"} +{"qid": "test2398", "pid": "1593521", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Sympathetic nervous system\"\nthe digestive tract, and the kidneys. This occurs as a result of activation of alpha-1 adrenergic receptors by norepinephrine released by post-ganglionic sympathetic neurons. These receptors exist throughout the vasculature of the body but are inhibited and counterbalanced by beta-2 adrenergic receptors (stimulated by epinephrine release from the adrenal glands) in the skeletal muscles, the heart, the lungs, and the brain during a sympathoadrenal response. The net effect of this is a shunting of blood away from the organs not necessary to the immediate survival of the organism and an increase in blood flow to those organs involved in intense"} +{"qid": "test2398", "pid": "2647430", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Fight-or-flight response\"\nis followed by activation of the pituitary gland and secretion of the hormone ACTH. The adrenal gland is activated almost simultaneously, via the sympathetic nervous system, and releases the hormone epinephrine. The release of chemical messengers results in the production of the hormone cortisol, which increases blood pressure, blood sugar, and suppresses the immune system. The initial response and subsequent reactions are triggered in an effort to create a boost of energy. This boost of energy is activated by epinephrine binding to liver cells and the subsequent production of glucose. Additionally, the circulation of cortisol functions to turn fatty acids"} +{"qid": "test2398", "pid": "11517432", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "Adrenaline\nbelow the detection limit in the blood stream. The adrenal glands contribute about 7% of circulating norepinephrine, most of which is a spill over from neurotransmission with little activity as a hormone. Pharmacological doses of epinephrine stimulate α, α, β, β, and β adrenoceptors of the sympathetic nervous system. Sympathetic nerve receptors are classified as adrenergic, based on their responsiveness to adrenaline. The term \"\"adrenergic\"\" is often misinterpreted in that the main sympathetic neurotransmitter is norepinephrine (noradrenaline), rather than epinephrine, as discovered by Ulf von Euler in 1946. Epinephrine does have a β adrenoceptor-mediated effect on metabolism and the airway,"} +{"qid": "test2398", "pid": "2652051", "query": "what does the adrenal gland produce that is necessary for the sympathetic nervous system to function", "answer": "epinephrine", "passage": "\"Adrenal medulla\"\ncompensation by the autonomous nervous system, except in episodes of hypoglycemia where glycogenolysis cannot be stimulated by circulating epinephrine . In dopamine beta hydroxylase deficiency, the entire body cannot efficiently produce epinephrine and norepinephrine from dopamine, this results in severe dysautonomia but most crucially due to autonomous nervous system failure which requires epinephrine and norepinephrine as neurotransmitters, dopamine being used in this pathology as an inadequate substitute. Adrenal medulla The adrenal medulla () is part of the adrenal gland. It is located at the center of the gland, being surrounded by the adrenal cortex. It is the innermost part of"} +{"qid": "test24", "pid": "6486083", "query": "where do the greasers live in the outsiders", "answer": "Tulsa, Oklahoma", "passage": "\"The Outsiders (film)\"\nbehalf of her seventh and eighth grade students about adapting \"\"The Outsiders\"\". When Coppola read the book, he was moved not only to adapt and direct it, but to follow it the next year by adapting Hinton's novel \"\"Rumble Fish\"\". The latter film's cast also included Matt Dillon, Diane Lane, and Glenn Withrow. The film was shot on location in Tulsa, Oklahoma. Coppola filmed \"\"The Outsiders\"\" and \"\"Rumble Fish\"\" back-to-back in 1982—a newspaper, used to show a story about the three greasers saving the kids in \"\"The Outsiders\"\", includes a real story from 1982 regarding the death of a man"} +{"qid": "test24", "pid": "2896999", "query": "where do the greasers live in the outsiders", "answer": "Tulsa, Oklahoma", "passage": "\"The Outsiders (novel)\"\nThe Outsiders (novel) The Outsiders is a coming-of-age novel by S. E. Hinton, first published in 1967 by Viking Press. Hinton was 15 when she started writing the novel but did most of the work when she was 16 and a junior in high school. Hinton was 18 when the book was published. The book details the conflict between two rival gangs divided by their socioeconomic status: the working-class \"\"greasers\"\" and the upper-class \"\"Socs\"\" (pronounced —short for \"\"Socials\"\"). The story is told in first-person perspective by teenaged protagonist Ponyboy Curtis. The story in the book takes place in Tulsa, Oklahoma,"} +{"qid": "test24", "pid": "12568531", "query": "where do the greasers live in the outsiders", "answer": "Tulsa, Oklahoma", "passage": "\"S. E. Hinton bibliography\"\nS. E. Hinton bibliography Susan Eloise Hinton (better known as S. E. Hinton) is an American author who is best known for writing young adult fiction. \"\"The Outsiders\"\" was Hinton's first published book in 1967; Hinton wrote the book at the age of seventeen. Hinton based the characters, the Greasers and the Socs, off of teenage gangs and alienated youth in her hometown of Tulsa, Oklahoma during the 1960s. \"\"The Outsiders\"\" has sold over fourteen million copies since it was published. In 1983, \"\"The Outsiders\"\" became a movie, and was later released onto DVD. After experiencing a writer's block and"} +{"qid": "test24", "pid": "12568535", "query": "where do the greasers live in the outsiders", "answer": "Tulsa, Oklahoma", "passage": "\"S. E. Hinton bibliography\"\nawards from 21 nominations. S. E. Hinton bibliography Susan Eloise Hinton (better known as S. E. Hinton) is an American author who is best known for writing young adult fiction. \"\"The Outsiders\"\" was Hinton's first published book in 1967; Hinton wrote the book at the age of seventeen. Hinton based the characters, the Greasers and the Socs, off of teenage gangs and alienated youth in her hometown of Tulsa, Oklahoma during the 1960s. \"\"The Outsiders\"\" has sold over fourteen million copies since it was published. In 1983, \"\"The Outsiders\"\" became a movie, and was later released onto DVD. After experiencing"} +{"qid": "test2400", "pid": "982863", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Cell theory\"\nthe previous theory of spontaneous generation. After reading letters by Leeuwenhoek, Hooke was the first to confirm his observations that were thought to be unlikely by other contemporaries. The cells in animal tissues were observed after plants were because the tissues were so fragile and susceptible to tearing, it was difficult for such thin slices to be prepared for studying. Biologists believed that there was a fundamental unit to life, but were unsure what this was. It would not be until over a hundred years later that this fundamental unit was connected to cellular structure and existence of cells in"} +{"qid": "test2400", "pid": "982854", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Cell theory\"\nmany debates about cells began amongst scientists. Most of these debates involved the nature of cellular regeneration, and the idea of cells as a fundamental unit of life. Cell theory was eventually formulated in 1839. This is usually credited to Matthias Schleiden and Theodor Schwann. However, many other scientists like Rudolf Virchow contributed to the theory. It was an important step in the movement away from spontaneous generation. The three tenets to the cell theory are as described below: The first of these tenets is disputed, as non-cellular entities such as viruses are sometimes considered life-forms. The discovery of the"} +{"qid": "test2400", "pid": "2135257", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"History of biology\"\nof biologists pointed to the central importance of the cell. In 1838 and 1839, Schleiden and Schwann began promoting the ideas that (1) the basic unit of organisms is the cell and (2) that individual cells have all the characteristics of life, though they opposed the idea that (3) all cells come from the division of other cells. Thanks to the work of Robert Remak and Rudolf Virchow, however, by the 1860s most biologists accepted all three tenets of what came to be known as cell theory. Cell theory led biologists to re-envision individual organisms as interdependent assemblages of individual"} +{"qid": "test2400", "pid": "9590496", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "Biology\nessentially completed in 2003, with further analysis still being published. The Human Genome Project was the first step in a globalized effort to incorporate accumulated knowledge of biology into a functional, molecular definition of the human body and the bodies of other organisms. Cell theory states that the cell is the fundamental unit of life, that all living things are composed of one or more cells, and that all cells arise from pre-existing cells through cell division. In multicellular organisms, every cell in the organism's body derives ultimately from a single cell in a fertilized egg. The cell is also"} +{"qid": "test2400", "pid": "9590491", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "Biology\nimpact on biological thinking. In the early 19th century, a number of biologists pointed to the central importance of the cell. Then, in 1838, Schleiden and Schwann began promoting the now universal ideas that (1) the basic unit of organisms is the cell and (2) that individual cells have all the characteristics of life, although they opposed the idea that (3) all cells come from the division of other cells. Thanks to the work of Robert Remak and Rudolf Virchow, however, by the 1860s most biologists accepted all three tenets of what came to be known as cell theory. Meanwhile,"} +{"qid": "test2400", "pid": "1854763", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"History of zoology through 1859\"\nand Schwann began promoting the ideas that (1) the basic unit of organisms is the cell and (2) that individual cells have all the characteristics of life, though they opposed the idea that (3) all cells come from the division of other cells. Thanks to the work of Robert Remak and Rudolf Virchow, however, by the 1860s most biologists accepted all three tenets of what came to be known as cell theory. Up through the 19th century, the scope of zoology was largely divided between physiology, which investigated questions of form and function, and natural history, which was concerned with"} +{"qid": "test2400", "pid": "43630", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Cell (biology)\"\ncontain more than 10 trillion (10) cells. Most plant and animal cells are visible only under a microscope, with dimensions between 1 and 100 micrometres. Cells were discovered by Robert Hooke in 1665, who named them for their resemblance to cells inhabited by Christian monks in a monastery. Cell theory, first developed in 1839 by Matthias Jakob Schleiden and Theodor Schwann, states that all organisms are composed of one or more cells, that cells are the fundamental unit of structure and function in all living organisms, and that all cells come from pre-existing cells. Cells emerged on Earth at least"} +{"qid": "test2400", "pid": "982866", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Cell theory\"\nis no longer accepted with modern cell theory. In 1839, Theodor Schwann states that along with plants, animals are composed of cells or the product of cells in their structures. This was a major advancement in the field of biology since little was known about animal structure up to this point compared to plants. From these conclusions about plants and animals, two of the three tenets of cell theory were postulated. 1. All living organisms are composed of one or more cells 2. The cell is the most basic unit of life Schleiden's theory of free cell formation through crystallization"} +{"qid": "test2400", "pid": "5044643", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"John Goodsir\"\nand structure of cellular life and organisation. He concluded that all living organisms are formed of microscopic units, cells. Goodsir was not alone in postulating such a concept and the theory that cells form the basic structure of tissues in all plants and animals has been attributed to Matthius Schleiden and to Theodor Schwann. Goodsir posed and then answered the questions ‘What is a cell with its walls, contents, nucleus and nucleolus? How is a cell formed? How do cells multiply?’ The theory which he developed from these studies was original and won the extravagant praise of Rudolf Virchow (1821–1902),"} +{"qid": "test2400", "pid": "2940133", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Plus construction\"\nPlus construction In mathematics, the plus construction is a method for simplifying the fundamental group of a space without changing its homology and cohomology groups. It was introduced by , and was used by Daniel Quillen to define algebraic K-theory. Given a perfect normal subgroup of the fundamental group of a connected CW complex formula_1, attach two-cells along loops in formula_1 whose images in the fundamental group generate the subgroup. This operation generally changes the homology of the space, but these changes can be reversed by the addition of three-cells. The most common application of the plus construction is in"} +{"qid": "test2400", "pid": "2940135", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Plus construction\"\nformula_3, formula_22. Plus construction In mathematics, the plus construction is a method for simplifying the fundamental group of a space without changing its homology and cohomology groups. It was introduced by , and was used by Daniel Quillen to define algebraic K-theory. Given a perfect normal subgroup of the fundamental group of a connected CW complex formula_1, attach two-cells along loops in formula_1 whose images in the fundamental group generate the subgroup. This operation generally changes the homology of the space, but these changes can be reversed by the addition of three-cells. The most common application of the plus construction"} +{"qid": "test2400", "pid": "14037176", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Evolution of cells\"\nEvolution of cells Evolution of cells refers to the evolutionary origin and subsequent evolutionary development of cells. Cells first emerged at least 3.8 billion years ago. The origin of cells was the most important step in the evolutionary theory of life on Earth. The birth of the cell marked the passage from pre-biotic chemistry to partitioned units resembling modern cells. The final transition to living entities that fulfill all the definitions of modern cells depended on the ability to evolve effectively by natural selection. This transition has been called the Darwinian transition. If life is viewed from the point of"} +{"qid": "test2400", "pid": "12009475", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Discrete Morse theory\"\nthe boundary of formula_42 to its paired cell formula_43 is a unit in the underlying ring of formula_1. For instance, over the integers formula_45, the only allowed values are formula_46. This technical requirement is guaranteed, for instance, when one assumes that formula_1 is a regular CW complex over formula_45. The fundamental result of discrete Morse theory establishes that the CW complex formula_1 is isomorphic on the level of homology to a new complex formula_32 consisting of only the critical cells. The paired cells in formula_33 and formula_34 describe \"\"gradient paths\"\" between adjacent critical cells which can be used to obtain"} +{"qid": "test2400", "pid": "982864", "query": "what is the most fundamental unit of life according to the cell theory", "answer": "cells", "passage": "\"Cell theory\"\nanimals or plants. This conclusion was not made until Henri Dutrochet. Besides stating “the cell is the fundamental element of organization”, Dutrochet also claimed that cells were not just a structural unit, but also a physiological unit. In 1804, Karl Rudolphi and J.H.F. Link were awarded the prize for \"\"solving the problem of the nature of cells\"\", meaning they were the first to prove that cells had independent cell walls by the Königliche Societät der Wissenschaft (Royal Society of Science), Göttingen. Before, it had been thought that cells shared walls and the fluid passed between them this way. Credit for"} +{"qid": "test2402", "pid": "418783", "query": "when did toyota start making cars in the us", "answer": "by the early 1980s", "passage": "Toyota\nNissan Motor Co. and Honda Motor Co. began building plants in the US by the early 1980s. Toyota received its first Japanese Quality Control Award at the start of the 1980s and began participating in a wide variety of motorsports. Due to the 1973 oil crisis, consumers in the lucrative US market began turning to making small cars with better fuel economy. American car manufacturers had considered small economy cars to be an entry-level product, and their small vehicles employed a low level of quality to keep the price low. Conservative Toyota held on to rear-wheel-drive designs for longer than"} +{"qid": "test2403", "pid": "18874908", "query": "the art and science of making objects from clay is called", "answer": "Ceramic art", "passage": "\"Ceramic art\"\nand decorate the art ware. Products from a pottery are sometimes referred to as \"\"art pottery\"\". In a one-person pottery studio, ceramists or potters produce studio pottery. The word \"\"ceramics\"\" comes from the Greek \"\"keramikos\"\" (κεραμικος), meaning \"\"pottery\"\", which in turn comes from \"\"keramos\"\" (κεραμος) meaning \"\"potter's clay\"\". Most traditional ceramic products were made from clay (or clay mixed with other materials), shaped and subjected to heat, and tableware and decorative ceramics are generally still made this way. In modern ceramic engineering usage, ceramics is the art and science of making objects from inorganic, non-metallic materials by the action of"} +{"qid": "test2403", "pid": "11283913", "query": "the art and science of making objects from clay is called", "answer": "Ceramic", "passage": "\"Steven Kemenyffy\"\n\"\"The Complete Book of Pottery Making\"\". Radnor, Pa: Chilton Book Co, 1976. Moore College of Art Gallery. \"\"Clay Things: East Coast Invitational.\"\" Philadelphia: Moore College, 1974. Nigrosh, Leon I. \"\"Low Fire Other Ways to Work in Clay\"\". Worcester, Mass: Davis Publications, 1980. Nigrosh, Leon I. \"\"Sculpting Clay\"\". Worcester, Mass: Davis Publications, 1992. Nordness, Lee. \"\"Objects: USA\"\". New York: Viking Press, 1970. Peterson, Susan. \"\"The Craft and Art of Clay\"\". Englewood Cliffs, NJ: Prentice Hall, 1992. Piepenburg, Robert E. \"\"Raku Pottery\"\". New York: Macmillan, 1972. Rossiter, Sarah. \"\"The Quest for the Glowing Glaze.\"\" \"\"Ceramics Monthly\"\", v. 52 no. 6, 2004. Scott,"} +{"qid": "test2403", "pid": "13951137", "query": "the art and science of making objects from clay is called", "answer": "Ceramic", "passage": "\"Julia Galloway\"\nArtist and Objects, and The Ceramic Continuum, Archie Bray Foundation. Julia’s work is included in the collections of the Renwick Gallery, Smithsonian Museum, Washington DC, The Huntington Museum of Art, Huntington, WV, Archie Bray Foundation, Helena, MT, The Clay Art Center, Port Chester, NY, The Art Gallery of Nova Scotia, Halifax, Nova Scotia, Canada, and the University of Arkansas, Fayetteville. Galloway’s work is intended to be functional, yet also beautiful. To Galloway, beauty is as valid as function, and she delights in making pottery that is “joyous to use and decorates” our living spaces with “character and elegance.” The objects"} +{"qid": "test2404", "pid": "20110827", "query": "when was the last time michigan basketball won the championship", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship in 2016. Villanova defeated Michigan, 79–62. Donte DiVincenzo, a reserve player, scored 31 points for Villanova, and was named the"} +{"qid": "test2404", "pid": "20110834", "query": "when was the last time michigan basketball won the championship", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n180 countries. In Canada, the game aired on TSN. Radio coverage in the United States was provided by Westwood One. 2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship"} +{"qid": "test2404", "pid": "20110828", "query": "when was the last time michigan basketball won the championship", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\nNCAA Basketball Tournament Most Outstanding Player. The Michigan Wolverines last won the NCAA Tournament in 1989. Their most recent appearance in the championship game was in 2013. At one point unranked in the AP Poll, Michigan won their final 14 games before the title game to end the 2017–18 regular season with a 28–7 win-loss record after winning the 2018 Big Ten Conference Men's Basketball Tournament. They earned the No. 3 seed in the West Regional. Michigan defeated the No. 14 Montana Grizzlies in the first round by a score of 61–47. They then reached the Sweet 16 by defeating"} +{"qid": "test2404", "pid": "11356520", "query": "when was the last time michigan basketball won the championship", "answer": "1989", "passage": "\"Panionios G.S.S.\"\ndivision. It was runner-up of the championship one more time, in 1971 and also it has won two football cups in 1979 and 1998. Furthermore, Panionios has important presence in basketball and the last years in water polo. Panionios Basketball team has won a Greek cup in 1989 and one time was a runner-up of the championship (1987). The team has a steady presence in the first division finishing many times in the top four of the championship. The Panionios basketball women team has won a championship in 2007. The last years, Panionios has a successful team in water polo."} +{"qid": "test2404", "pid": "19428581", "query": "when was the last time michigan basketball won the championship", "answer": "1989", "passage": "\"1989 NCAA Division I Men's Basketball Championship Game\"\nto cut the Seton Hall lead to 79-78. After a defensive stop, Gerald Greene fouled Rumeal Robinson with three seconds left in overtime. Robinson made both free throws and after Seton Hall's last-second shot came up short, Michigan won its first national championship. 1989 NCAA Division I Men's Basketball Championship Game The 1989 NCAA Division I Men's Basketball Championship Game was the final round of the 1989 NCAA Division I Men's Basketball Tournament and determined the national champion for the 1988–89 NCAA Division I men's basketball season The 1989 National Title Game was played on April 3, 1989 at the"} +{"qid": "test2405", "pid": "20219880", "query": "which state is the richest state in nigeria", "answer": "Lagos State", "passage": "\"Chukwudi Onuamadike\"\nChukwudi Onuamadike Chukwudi Dumeme Onuamadike, popularly known as Evans, is a Nigerian alleged kidnapper. Onuamadike is a native of Nnewi, Anambra State. He is sometimes referred to as \"\"The Billionaire Kidnapper\"\" because the Nigeria Police Force (NPF) believe he is one the richest criminals in the kidnapping business in Nigeria. The Inspector General of Police Special Intelligence Response Team (IRT) of the Nigeria police force also described as a very smart, crafty, and intelligent kidnapper having evaded arrest for four years even though he was on a most wanted list in three states (Lagos State, Edo State, and Anambra State)."} +{"qid": "test2405", "pid": "18898816", "query": "which state is the richest state in nigeria", "answer": "Lagos State", "passage": "\"The Apostolic Church Nigeria\"\nministry in 1969. LAWNA Territory which was a unification of those four Areas in 1970 has today grown into 79 Areas across the country; and seven missionary fields overseas. The Territory covers 27 states out of the 36 states of The Federal Republic of Nigeria. In 2011, the church founded Samuel Adegboyega University, a tertiary institution located in Ogwa, Edo State, Nigeria and named after LAWNA's first territorial chairman Samuel Adegboyega. The National Convention is a biannual gathering of all The Apostolic Church members at the National Temple, Lagos State, Nigeria. The Apostolic Church Nigeria The Apostolic Church Nigeria is"} +{"qid": "test2406", "pid": "100657", "query": "who was the oldest man elected president of usa", "answer": "Donald Trump", "passage": "\"Dwight D. Eisenhower\"\nNixon providing the majority vote). Eisenhower was the last president born in the 19th century, and at age 62, was the oldest man elected President since James Buchanan in 1856 (President Truman stood at 64 in 1948 as the incumbent president, having succeeded to the Presidency in 1945 upon the death of Franklin Roosevelt). Eisenhower was the only general to serve as President in the 20th century and was the most recent President to have never held elected office prior to the Presidency until Donald Trump, who never held public office nor served in the military; the other Presidents who"} +{"qid": "test2406", "pid": "2428138", "query": "who was the oldest man elected president of usa", "answer": "Ronald Reagan", "passage": "\"2008 United States presidential election\"\nby pointing out in ads and at numerous campaign rallies that McCain had claimed in an interview that he voted with Bush 90% of the time, and congressional voting records supported this for the years Bush was in office. Similar to Senator Bob Dole's 1996 presidential campaign, one of the more widely leveled charges against McCain was the issue of his age—he turned 72 in August and there was widespread concern about the idea of electing a man who would be 80 years old if he completed two full terms in office (the oldest president, Ronald Reagan, had been a"} +{"qid": "test2406", "pid": "11730150", "query": "who was the oldest man elected president of usa", "answer": "Ronald Reagan", "passage": "\"Electoral history of Ronald Reagan\"\nbelief in individual freedom, brought changes domestically, both to the U.S. economy and expanded military, and contributed to the end of the Cold War. Termed the Reagan Revolution, his presidency would reinvigorate American morale, reinvigorate the American economy and reduce American reliance upon government. In addition to this, Reagan was the oldest person ever elected to the presidency, at the age of 69 on the date of his first presidential election victory in 1980. He was surpassed in 2016 by Donald Trump as the oldest person first elected to the presidency, but Reagan currently remains the oldest person ever elected"} +{"qid": "test2407", "pid": "5395647", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "\"Islamic feminism\"\nthreatened. Muslim women should be able to define dress codes for themselves and what they deem to be morally right. In her book \"\"Muslim Fashion: Contemporary Style Cultures\"\", London College of Fashion Cultural Studies professor Reina Lewis states that the evolution of mainstream hijab fashion serves as an outlet for Muslim women to demonstrate creativity and individuality in their development of a personal style that adheres to the code of dressing modestly. This gives Muslim women, particularly those of younger generations, the personal decision to wear the hijab is an opportunity to express their contemporary ideas on Muslim femininity. Not"} +{"qid": "test2407", "pid": "9601665", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "\"Women in the Arab world\"\nTunisian dress as a symbol of national identity. Islamic feminism counters both sorts of externally imposed dress codes. Religious views differ on what is considered the proper hijab. This explains the variation in Islamic attire according to geographic location. \"\"Arab\"\" and \"\"Muslim\"\" are often used interchangeably. The conflation of these two identities ignores the diverse religious beliefs of Arab people and also overlooks Muslims who are not Arabs. It, \"\"also erases the historic and vast ethnic communities who are neither Arab nor Muslim but who live amid and interact with a majority of Arabs or Muslims.\"\" This generalization, \"\"enables the"} +{"qid": "test2407", "pid": "5395639", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "\"Islamic feminism\"\nbeen working on developing women-friendly forms of MPL. (See, for example, the Canadian Council of Muslim Women for argument based on the Qur'an and not on what they call medieval male consensus.) Other Islamic feminists, particularly some in Muslim minority contexts which are democratic states, argue that MPL should not be reformed but should be rejected and that Muslim women should seek redress, instead, from the civil laws of those states. Another issue that concerns Muslim women is the dress code expected of them. Islam requires both men and women to dress modestly; this concept is known as \"\"hijab\"\" and"} +{"qid": "test2407", "pid": "9174760", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "\"Islamic dress in Europe\"\nor \"\"niqab\"\"; some apply to any clothing with an Islamic religious symbolism such as the \"\"khimar\"\", a type of headscarf. The issue has different names in different countries, and \"\"the veil\"\" or \"\"\"\"hijab\"\"\"\" may be used as general terms for the debate, representing more than just the veil itself, or the concept of modesty embodied in \"\"hijab\"\". Although the Balkans and Eastern Europe have indigenous Muslim populations, most Muslims in western Europe are members of immigrant communities. The issue of Islamic dress is linked with issues of immigration and the position of Islam in western society. In November 2006, European"} +{"qid": "test2407", "pid": "7571736", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "\"Women in Islam\"\nlaughing.\"\" 3. Superficiality. The rise of the ḥijāb in the late twentieth and early twenty-first centuries has been criticised as \"\"reverse objectification\"\", whereby women are primarily judged by what they wear as opposed to their broader conduct as human beings, despite their ostensibly modest dress. The Singaporean writer Sya Taha has expressed this as follows: \"\"In any commercial magazine targeted at Muslim women, compare the number of pages dedicated to hijab styling or makeup with sport, art, music, humanitarian work or science...In contrast, Muslim women that do not wear hijab are often framed as though they must justify and reconcile"} +{"qid": "test2407", "pid": "16457614", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "Chinawal\nblouse and salwar. The tradition of wearing mangalsutra remains, but the fashion of kunku has largely been replaced with bindi. The dress of Muslim men is much like the dress of Hindu men, and can not be differentiated unless Muslims wear taqiyah and sherwani, and keep a beard. The dress of Muslim women is the hijab. The Indian breads bhakri and poli are the villagers' main staple foods. Along with these breads, various types of bhaji are eaten. At weddings, festivals and special occasions, varan-poli (or varan-batti) and vangyachi bhaji (curry made of eggplant) are typically favored, while baigan bharta,"} +{"qid": "test2407", "pid": "9487617", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "Burkini\nof a spandex and polyester mix. Other companies that make body-covering suits include Splashgear (California), Acquagym (Brazil), Haşema (Turkey), Nike, and Speedo. Suits such as the Nike “Swift Suit” may be more body-hugging, designed to maximize aerodynamics, rather than address issues of modesty. In addition to modesty, full-body swimsuits offer protection from the sun, and in some cases, enhanced athletic performance. They satisfy real needs for populations that include both Muslim and non-Muslim women. The design of the burkini is intended to be in accord with Islamic traditions of modest dress (hijab). However, what constitutes proper attire for women is"} +{"qid": "test2407", "pid": "4591429", "query": "what is the name of the muslim dress", "answer": "hijab", "passage": "Headscarf\nby observant Muslim women and girls, and required by law for women and girls in certain Muslim countries (Saudi Arabia for example). The Muslim religious dress varies, and various cultures include \"\"burqa\"\", \"\"chador\"\", \"\"niqab\"\", \"\"dupatta\"\", or other types of \"\"hijab\"\". The religion prescribes modest behaviour or dress in general, and in particular the headscarf worn by Muslim women and girls. Young Sikhs often wear a cloth wrapping to cover their hair, before moving on to the turban. Older Sikhs may wear them as an under-turban. Practical reasons include protection from bad weather and protection against industrial contamination, for example in"} +{"qid": "test2408", "pid": "627311", "query": "what is the democracy of the united states", "answer": "federal republic", "passage": "\"Representative democracy\"\nRepresentative democracy Representative democracy (also indirect democracy, representative government or psephocracy) is a type of democracy founded on the principle of elected officials representing a group of people, as opposed to direct democracy. Nearly all modern Western-style democracies are types of representative democracies; for example, the United Kingdom is a constitutional monarchy, France is a unitary state, and the United States is a federal republic. It is an element of both the parliamentary and the presidential systems of government and is typically used in a lower chamber such as the House of Commons of the United Kingdom, Lok Sabha of"} +{"qid": "test241", "pid": "1675540", "query": "who is the voice of the other mother in coraline", "answer": "Teri Hatcher", "passage": "\"Teri Hatcher\"\nas Coraline's mother Mel Jones, who constantly shows Coraline \"\"tough love,\"\" both in the 2009 hit film \"\"Coraline\"\", which received critical acclaim. In 2010, Hatcher made a return to the Superman franchise, with a special guest role in the final season of \"\"Smallville\"\" as Ella Lane, the mother of Erica Durance's Lois Lane. The episode continued a tradition of former Lois Lane actresses portraying the character's mother many years later. Noel Neill appeared as Lois' mother in the 1978 film \"\"Superman: The Movie\"\", and Phyllis Coates made a similar appearance on \"\"Lois & Clark\"\". A report in November 2010 suggested"} +{"qid": "test2412", "pid": "20467801", "query": "who won the 7 man elimination chamber match", "answer": "Roman Reigns", "passage": "\"Elimination Chamber (2018)\"\nChamber match, the first event to include a women's Elimination Chamber match, and the first Raw-exclusive pay-per-view since the 2016 reintroduction of the brand extension to not feature any cruiserweight division matches. Six matches were contested at the event, including one on the pre-show. In the main event, Roman Reigns won the first-ever seven-man Elimination Chamber match to become the number one contender against Brock Lesnar for the Universal Championship at WrestleMania 34. On the undercard, Alexa Bliss retained the Raw Women's Championship in the first-ever women's Elimination Chamber match, and Asuka defeated Nia Jax to extend her undefeated streak"} +{"qid": "test2413", "pid": "20120467", "query": "when did the royal mint move to wales", "answer": "the 1960s", "passage": "\"Royal Mint Court\"\nthe 1960s little of the original mint remained apart from the Smirke building and gatehouses. The Royal Mint was based at the site until 1967, when it began moving to its current site in Llantrisant, Wales. Minting ceased at Royal Mint Court in 1975. Two new office buildings were constructed on the site in the 1980s. Designed by Sheppard Robson, they were subsequently known as Murray House and Dexter House. This brought the site's total office space to 460,000 square feet. After the Mint vacated the Murray House building on the site it was used as commercial offices by Barclays"} +{"qid": "test2413", "pid": "1948577", "query": "when did the royal mint move to wales", "answer": "the 1960s.", "passage": "\"Royal Mint\"\nwas historically part of a series of mints that became centralised to produce coins for the Kingdom of England, all of Great Britain and eventually most of the British Empire. The original London mint from which the Royal Mint is the successor, was established in 886 AD and operated within the Tower of London for approximately 800 years before moving to what is now called Royal Mint Court where it remained until the 1960s. As Britain followed the rest of the world in decimalising its currency, the Mint moved from London to a new plant in Llantrisant, Wales where it"} +{"qid": "test2413", "pid": "1948614", "query": "when did the royal mint move to wales", "answer": "1968", "passage": "\"Royal Mint\"\nplant for striking. This first phase of the mint was officially opened on 17 December 1968 by the royal attendance of Queen Elizabeth II, Prince Philip and their son Prince Charles. Originally there were fears that the Royal family would face protests because of the Investiture of Prince Charles as the Prince of Wales; however, such protests failed to materialise. The second phase of construction began in 1973 and included the addition of a means to mint coins from virgin metals completing the full minting process. Upon completion the final cost for the land, buildings and plant came to £8"} +{"qid": "test2415", "pid": "14382834", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Thirty pieces of silver\"\nThirty pieces of silver Thirty pieces of silver was the price for which Judas Iscariot betrayed Jesus, according to an account in the Gospel of Matthew 26:15 in the New Testament. Before the Last Supper, Judas is said to have gone to the chief priests and agreed to hand over Jesus in exchange for 30 silver coins, and to have attempted to return the money afterwards, filled with remorse. The Gospel of Matthew claims that the subsequent purchase of the Potter's field was fulfilment, by Jesus, of a prophecy of Zechariah. The image has often been used in artwork depicting"} +{"qid": "test2415", "pid": "14382835", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Thirty pieces of silver\"\nthe Passion of Christ. The phrase is used in literature and common speech to refer to people \"\"selling out\"\", compromising a trust, friendship, or loyalty for personal gain. According to the Gospel of Matthew, Judas Iscariot was a disciple of Jesus. Before the Last Supper, Judas went to the chief priests and agreed to hand over Jesus in exchange for 30 silver coins. Jesus was then arrested in Gethsemane, where Judas revealed Jesus' identity to the soldiers by giving him a kiss. According to Chapter 27 of Matthew's gospel, Judas was filled with remorse and returned the money to the"} +{"qid": "test2415", "pid": "14382850", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Thirty pieces of silver\"\nbid me fetch thee thirty shillings?\"\" The story \"\"Treasure Trove\"\" by F. Tennyson Jesse relates the rediscovery in modern times of the thirty pieces of silver and how they drive men to kill in varied forms including murder, manslaughter, homicide, euthanasia and suicide. Thirty pieces of silver Thirty pieces of silver was the price for which Judas Iscariot betrayed Jesus, according to an account in the Gospel of Matthew 26:15 in the New Testament. Before the Last Supper, Judas is said to have gone to the chief priests and agreed to hand over Jesus in exchange for 30 silver coins,"} +{"qid": "test2415", "pid": "10603892", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"The Curse of the Thirty Denarii\"\na Christian congregation in Greece, named Nicodemus, would have met Judas Iscariot, who failed so his suicide mentioned in the Bible. On the death of the betrayer of Jesus, he sent one of his followers buried it with his 30 pieces of silver to silver in a place unknown to all. However, one of taxpayers affected by the curse of God would have been preserved in a reliquary in lead, crossing the centuries until its discovery in the chapel. At that time, the two men are being targeted by a sniper, but they come out unscathed. The Inspector Kamantis tells"} +{"qid": "test2415", "pid": "770671", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "Akeldama\nBible (CEB), New Revised Standard Version (NRSV) and Orthodox Jewish Bible (OJB), whilst the Complete Jewish Bible (CJB) uses \"\"Hakel-D'ma\"\". The Jerusalem Bible has \"\"Hakeldama\"\" but uses the English translation \"\"Bloody Acre\"\" in place of \"\"Field of Blood\"\", which is otherwise consistently used as the English translation. Christian tradition connects the place with Judas Iscariot, who betrayed Jesus for 30 pieces of silver. According to the Acts of the Apostles () Judas \"\"acquired a field with the reward of his unjust deed, and falling headfirst he burst open in the middle and all his intestines gushed out. This became known"} +{"qid": "test2415", "pid": "1600096", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"The Passion of the Christ\"\nblood and drips to the ground while a serpent emerges from Satan's guise. Jesus hears his disciples call for him, and rebukes Satan by crushing the snake's head. Judas Iscariot, another of Jesus' disciples, having received a bribe of 30 pieces of silver, leads a group of temple guards to the forest and betrays Jesus' identity. As the guards arrest Jesus, a fight erupts wherein Peter draws his dagger and slashes the ear of Malchus, one of the guards and a servant of the high priest Caiaphas. Jesus heals Malchus' injury while reprimanding Peter. As the disciples flee, the guards"} +{"qid": "test2415", "pid": "685638", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Good Friday\"\nand \"\"Hoher Freitag\"\" (\"\"High Friday, Holy Friday\"\"). In the Nordic countries it is called \"\"The Long Friday\"\". In Greek, Polish and Hungarian, Good Friday is generally referred to as \"\"Great Friday\"\" (\"\"Μεγάλη Περασκευή\"\", \"\"Wielki Piątek\"\", \"\"Nagypéntek\"\"). According to the accounts in the Gospels, the royal soldiers, guided by Jesus' disciple Judas Iscariot, arrested Jesus in the Garden of Gethsemane. Judas received money (30 pieces of silver) () for betraying Jesus and told the guards that whomever he kisses is the one they are to arrest. Following his arrest, Jesus was taken to the house of Annas, the father-in-law of the"} +{"qid": "test2415", "pid": "8551355", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Color of the Cross\"\nJudas Iscariot (Johann John Jean), one of Jesus' followers, betrays him for a payment of 30 pieces of silver by revealing his hiding place from the Romans to Caiphas. Against the wishes of his fellow members in not involving the Romans into the matter, Caiphas recruits a group of Roman soldiers led by Horatius (David Gianopoulos), to capture Jesus. Earlier, Jesus along with his disciples left the Jewish guest home to seek refuge in the Garden of Gethsemane within the mountains of Judea. Following his capture with the aid of Judas, Horatius leads Jesus away to a presumed trial before"} +{"qid": "test2415", "pid": "14600853", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Bargain of Judas\"\nBargain of Judas The Bargain of Judas is a biblical episode related to the life of Jesus which is recorded in all three Synoptic Gospels, , and . It relates how Judas Iscariot made a bargain with the Jewish chief priests to betray Jesus. The Gospel of Matthew specifies that Judas received thirty pieces of silver: Then one of the Twelve — the one called Judas Iscariot — went to the chief priests and asked, \"\"What are you willing to give me if I hand him over to you?\"\" So they counted out for him thirty silver coins. From then"} +{"qid": "test2415", "pid": "833275", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Roc (mythology)\"\nking to complete the Temple. This piece of wood also is said to have transformed the Queen of Sheba's foot from that of a goat to that of a human. The piece of wood that the rukh brought was therefore given an honored place in the Temple and decorated with silver rings. According to tradition, these silver rings were given to Judas Iscariot as payment for betraying Jesus; the piece of wood became Jesus's cross. The roc appears in several different film adaptations of the adventures of the hero Sinbad, most notably in the film \"\"The 7th Voyage of Sinbad\"\""} +{"qid": "test2415", "pid": "12084155", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"The Librarian: Curse of the Judas Chalice\"\nthe town, and the two quickly form a romantic attachment. The following day, Flynn goes to a local barbershop and has a brief discussion with Judson, who has appeared in New Orleans to fill him in on the unfolding conspiracy and provide answers about the previous night's attack. The Judas Chalice is the sacrilegious vampire version of the Holy Grail, formed from the 30 pieces of silver given to Judas Iscariot after he betrayed Jesus Christ. Revealing that vampires exist, Judson advises Flynn to intercept the chalice before Sergei Kubichek and his men do. In doing so, he also gives"} +{"qid": "test2415", "pid": "692853", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Judas Iscariot\"\nthe words of eternal life,\"\" but Jesus observed then that although Judas was one of the twelve whom he had chosen, he was \"\"a devil.\"\" Matthew directly states that Judas betrayed Jesus for a bribe of \"\"thirty pieces of silver\"\" by identifying him with a kiss – \"\"the kiss of Judas\"\" – to arresting soldiers of the High Priest Caiaphas, who then turned Jesus over to Pontius Pilate's soldiers. Mark's Gospel states that the chief priests were looking for a way to arrest Jesus. They decided not to do so during the feast [of the Passover], since they were afraid"} +{"qid": "test2415", "pid": "20580539", "query": "who sold out jesus for 30 pieces of silver", "answer": "Judas Iscariot", "passage": "\"Rothschild loans to the Holy See\"\nPope's feet. The Rothschilds are assuredly nobler than their ancestor Judas Iscariot. He sold Christ for 30 small pieces of silver: the Rothschilds would buy Him, if He were for sale.\"\" Another prominent example, is the mention of the loan in a sonnet of Giuseppe Gioachino Belli, \"\"Er motivio de li guai\"\". While Belli found the Rothschilds highly objectionable, for him the Pope was even worse as a weak man who had \"\"sold both Rome and the State\"\" and was thus no longer worthy of wearing the Papal robes. Pope Gregory XVI appointed Cardinal Antonio Tosti as the new Papal"} +{"qid": "test2416", "pid": "19138033", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2015 Big Ten Football Championship Game\"\n2015 Big Ten Football Championship Game The 2015 Big Ten Football Championship Game was a college football game that was played on December 5, 2015 at Lucas Oil Stadium in Indianapolis, Indiana. It was the fifth annual Big Ten Football Championship Game and it determined the 2015 champion of the Big Ten Conference. The game featured the Michigan State Spartans, co–champions of the East Division, and the Iowa Hawkeyes, champions of the West Division. Michigan State defeated Iowa 16–13 to win its second Big Ten Championship in three years. The 2015 Championship Game was the fifth in the Big Ten's"} +{"qid": "test2416", "pid": "19138036", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2015 Big Ten Football Championship Game\"\nseason in 93 years. 2015 Big Ten Football Championship Game The 2015 Big Ten Football Championship Game was a college football game that was played on December 5, 2015 at Lucas Oil Stadium in Indianapolis, Indiana. It was the fifth annual Big Ten Football Championship Game and it determined the 2015 champion of the Big Ten Conference. The game featured the Michigan State Spartans, co–champions of the East Division, and the Iowa Hawkeyes, champions of the West Division. Michigan State defeated Iowa 16–13 to win its second Big Ten Championship in three years. The 2015 Championship Game was the fifth"} +{"qid": "test2416", "pid": "20601625", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2018 Big Ten Football Championship Game\"\nNo. 20 Wisconsin, and No. 21 Iowa); they clinched their first-ever Big Ten Championship berth with their win against Iowa. With the regular season finale remaining, the Wildcats have a record of 8–4, 8–1 in Big Ten play. The Ohio State Buckeyes represented the Big Ten East Division in the game. Ohio State secured the spot with a 62–39 win over fourth-ranked Michigan. 2018 Big Ten Football Championship Game The 2018 Big Ten Football Championship Game was played on December 1, 2018 at Lucas Oil Stadium in Indianapolis, Indiana. The eighth annual Big Ten Football Championship Game, it determined the"} +{"qid": "test2416", "pid": "8379498", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"Michigan Wolverines football\"\nother seasons: 1879, 1880, 1884, 1885, 1886, 1887, 1898, 1910, 1922, 1930, 1973, 1992. The following is a list of Michigan's 42 conference championships as of 2017. † Co-champions Since 2011, Big Ten has moved to divisions to ultimately decide who would play for the conference championship. The divisions were known as Legends and Leaders from 2011 to 2013. In 2014, the divisions were realigned geographically into East and West. Michigan competes in the Big Ten East. Michigan has shared one division title. Twenty-six Heisman Trophy candidates have played at Michigan, Three have won the award: Michigan Most Valuable Player"} +{"qid": "test2416", "pid": "17617794", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2013 Big Ten Football Championship Game\"\n2013 Big Ten Football Championship Game The 2013 Big Ten Football Championship Game was a college football game that was played on December 7, 2013 at Lucas Oil Stadium in Indianapolis, Indiana. It was the third annual Big Ten Football Championship Game, and determined the 2013 champion of the Big Ten Conference (B1G). The game featured the Leaders Division champion Ohio State Buckeyes against the Legends Division champion Michigan State Spartans. Michigan State defeated Ohio State 34–24, to win the Big Ten Championship, and represent the conference in the 100th Rose Bowl game on January 1, 2014. The upset loss"} +{"qid": "test2416", "pid": "9902054", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"Michigan State Spartans men's basketball\"\n(NIT) five times. Their combined record is 6–6. Michigan State has won 14 Big Ten regular-season championships, the seventh-most in Big Ten history. Michigan State has won five Big Ten Tournament championships since its inception in 1998, the most championships in the Big Ten. The Spartans have appeared in six championship games, only losing the 2015 championship to Wisconsin. Michigan State has appeared in the quarterfinals of every Big Ten Tournament. \"\"*\"\" Michigan State only has losing records against three Big Ten teams. Spartans formerly or currently in the NBA include: Tom Izzo's teams have worn many different styles of"} +{"qid": "test2416", "pid": "20601624", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2018 Big Ten Football Championship Game\"\n2018 Big Ten Football Championship Game The 2018 Big Ten Football Championship Game was played on December 1, 2018 at Lucas Oil Stadium in Indianapolis, Indiana. The eighth annual Big Ten Football Championship Game, it determined the 2018 champion of the Big Ten Conference. The 2018 Championship Game was the eighth in the Big Ten's 123-year history and the fifth to feature the conference's East and West alignment. After starting 1–3 with losses to Duke, Akron, and No. 14 Michigan, the Wildcats rebounded to win six of their next seven, including three wins over ranked teams (No. 20 Michigan State,"} +{"qid": "test2416", "pid": "19084462", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"Illinois–Michigan football series\"\nIllinois–Michigan football series The Illinois–Michigan football series is an American college football series between the Illinois Fighting Illini and Michigan Wolverines. The series dates back to 1898 and features two long-time Big Ten members, with Illinois claiming five national championships, 15 Big Ten Conference titles, and 24 consensus All-Americans, and Michigan claiming 11 national championships, 42 Big Ten titles, and 81 consensus All-Americans. Michigan leads the series 70–23–2. For Illinois, Michigan is its third-most played opponent, trailing only Northwestern (108 games) and Ohio State (101 games). For Michigan, Illinois is its fourth-most played opponent, behind Ohio State (111 games), Michigan"} +{"qid": "test2416", "pid": "19992071", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"1930 Big Ten Conference football season\"\nof four consecutive Michigan teams to win or tie for the Big Ten championship, losing only one game from 1930 to 1933. The 1930 Northwestern Wildcats football team, under head coach Dick Hanley, compiled a 7–1 record, tied with Michigan for the Big Ten championship, and was ranked No. 4 in the Dickinson System. End Frank Baker was a consensus first-team All-American. Guard Wade Woodworth and fullback Lafayette Russell also received first-team All-American honors from multiple selectors. Ohio State end Wes Fesler won the \"\"Chicago Tribune\"\" Silver Football trophy as the most valuable player in the Big Ten and was"} +{"qid": "test2416", "pid": "19138034", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2015 Big Ten Football Championship Game\"\n120-year history, and the second to feature the conference's East and West division alignment. Iowa made its first appearance in the conference championship game, while Michigan State made its third appearance (L in 2011, W in 2013). To date, this game holds the Big Ten Football Championship Game attendance record. Iowa came into the Big Ten Championship Game with a 12-0 record and a #4 ranking in the AP Poll. The Hawkeyes were led by junior QB C.J. Beathard and 2015 Big Ten Defensive Back of the Year, junior CB Desmond King, who tied the school record and led the"} +{"qid": "test2416", "pid": "15517658", "query": "who has the most big ten championships in football", "answer": "Michigan", "passage": "\"2011 Big Ten Football Championship Game\"\n2011 Big Ten Football Championship Game The 2011 Big Ten Football Championship Game was a college football game. It was played on December 3, 2011, at Lucas Oil Stadium in Indianapolis, Indiana, to determine the 2011 champion of the Big Ten Conference. The Wisconsin Badgers of the Leaders Division beat the Michigan State Spartans of the Legends Division by a score of 42–39. By winning the game, Wisconsin earned a berth in the 2012 Rose Bowl. The game was the first football championship game ever played in the Big Ten's 115-year history. The game was played in prime time and"} +{"qid": "test2417", "pid": "4789096", "query": "a synonym for the content component of communication is", "answer": "information", "passage": "\"Enterprise content management\"\nmultiple users, even when those users are working on the same content item. They make use of knowledge based on skills, resources and background data for joint information processing. Administration components, such as virtual whiteboards for brainstorming, appointment scheduling, and project management systems, communications application such as video conferencing, etc., may be included. Collaborative ECM may also integrate information from other applications, permitting joint information processing. The scope of Enterprise content management integrates Web content management systems. WCM as ECM component is used to present information already existing and managed in the ECM repository. However, information presented via Web technologies—on"} +{"qid": "test2417", "pid": "17107733", "query": "a synonym for the content component of communication is", "answer": "information", "passage": "Infocommunications\nThe convergence process is triggered by the huge scale development of digital technology. Digital technology has unified, Internet technology radically reshaped telecommunications, integrated information processing and content management functions. The term \"\"infocommunications\"\" is also used in politics in a wider sense as a shorter form of information and communication(s) technology (ICT). The terms info-com(s) and info-communications (with a hyphen) are also used to express the integration of the information technology (IT) and (tele)communication sectors, or simply to interpret the abbreviation ICT. The term \"\"Information and Communication(s) Technology (ICT)\"\" has been defined as an extended synonym for information technology (IT) to"} +{"qid": "test2417", "pid": "6778683", "query": "a synonym for the content component of communication is", "answer": "information", "passage": "\"Synonym ring\"\nsemantically equivalent and form a synonym ring: Note that each data element has two components: A synonym ring can be expressed by a series of statements in the Web Ontology Language (OWL) using the codice_1 or the codice_2 or instance equivalence statement – the codice_3 property. Synonym ring In metadata a synonym ring or synset, is a group of data elements that are considered semantically equivalent for the purposes of information retrieval. These data elements are frequently found in different metadata registries. Although a group of terms can be considered equivalent, metadata registries store the synonyms at a central location"} +{"qid": "test2417", "pid": "5706391", "query": "a synonym for the content component of communication is", "answer": "information", "passage": "\"National Information Exchange Model\"\nsubject matter experts (SMEs), have some level of authority within the domains they represent, and participate in the processes related to harmonizing conflicts and resolving data component ambiguities. Communities of Interest. Communities of interest (COIs) are collaborative groups of users who exchange information in pursuit of shared goals, interests, missions, or business processes and who therefore must have a shared vocabulary for the information they exchange. COIs reuse data components and artifacts found in NIEM to document their information exchanges. One or more COIs can coordinate to develop new domain content as they identify gaps in the data components needed"} +{"qid": "test2417", "pid": "5202321", "query": "a synonym for the content component of communication is", "answer": "information", "passage": "Hyperlocal\nHyperlocal Hyperlocal is information oriented around a well-defined community with its primary focus directed toward the concerns of the population in that community. The term can be used as a noun in isolation or as a modifier of some other term (e.g. news). When used in isolation it refers to the emergent ecology of data (including textual content), aggregators, publication mechanism and user interactions and behaviors which centre on a resident of a location and the business of being a resident. More recently, the term hyperlocal has become synonymous with the combined use of applications on mobile devices and GPS"} +{"qid": "test2417", "pid": "2932789", "query": "a synonym for the content component of communication is", "answer": "information", "passage": "\"Development communication\"\nsystem and its components; the values and qualities of the information content; and a variety of considerations about the system, its functions, audience, types of information and qualities. Members of the audience are classified based on such characteristics as age, sex, occupations, socio-economic strata, urban-rural (locations) and persuasions. Types of information refer to the conversation, cultural forms, data, education, entertainment, general information, music, news and opinion. Meanwhile, truth, objectivity, relevance, educational effectiveness, violence, humour, sex, libel are examples of values and qualities of the information content. According to Lee, the \"\"consideration, identification and determination\"\" of the scope of specific communication"} +{"qid": "test2419", "pid": "22311", "query": "where is the new football stadium in atlanta", "answer": "Mercedes-Benz Stadium", "passage": "\"Atlanta Falcons\"\n2010, 2012, and 2016. The Falcons have appeared in two Super Bowls, the first during the 1998 season in Super Bowl XXXIII, where they lost to the Denver Broncos and the second was eighteen years later, a overtime defeat by the New England Patriots in Super Bowl LI. The Falcons' current home field is Mercedes-Benz Stadium, which opened for the 2017 season; the team's headquarters and practice facilities are located at a site in Flowery Branch, northeast of Atlanta in Hall County. Professional football first came to Atlanta in 1962, when the American Football League (AFL) staged two preseason contests,"} +{"qid": "test2419", "pid": "12236308", "query": "where is the new football stadium in atlanta", "answer": "Mercedes-Benz Stadium", "passage": "Mercedes-Benz\nGullwing, is the first car to be entirely developed by AMG. There are numerous independent tuners, including Brabus, Carlsson, Kleemann and Renntech. In football (soccer), Mercedes-Benz sponsors the Germany national team. Mercedes-Benz sponsors Bundesliga club VfB Stuttgart and provides the naming rights for their stadium, the Mercedes-Benz Arena. The company also holds the naming rights to the Mercedes-Benz Superdome, an American football stadium in New Orleans, Louisiana, United States. On 24 August 2015, Mercedes-Benz was announced as the naming rights sponsor for the Atlanta Falcons' new home, Mercedes-Benz Stadium, (Mercedes-Benz's US headquarters are in Greater Atlanta) which opened in August"} +{"qid": "test2419", "pid": "16769155", "query": "where is the new football stadium in atlanta", "answer": "Mercedes-Benz Stadium", "passage": "\"Mercedes-Benz Stadium\"\nMercedes-Benz Stadium The Mercedes-Benz Stadium is a multi-purpose retractable roof stadium located in Atlanta, Georgia. The home of the Atlanta Falcons of the National Football League (NFL) and Atlanta United FC of Major League Soccer (MLS), it replaced the now-demolished Georgia Dome, the Falcons' home stadium from 1992 through 2016. Mercedes-Benz stadium holds the record of the world's largest halo board and is one of few American football stadiums with retractable roofs, and one of five in the NFL that has such a roof. The stadium is owned by the state of Georgia through the Georgia World Congress Center Authority,"} +{"qid": "test2420", "pid": "814886", "query": "where do the sharks play in san jose", "answer": "the SAP Center", "passage": "\"San Jose Sharks\"\nSan Jose Sharks The San Jose Sharks are a professional ice hockey team based in San Jose, California. They are members of the Pacific Division of the Western Conference of the National Hockey League (NHL). The franchise is owned by San Jose Sports & Entertainment Enterprises. Beginning play in the 1991–92 season, the Sharks initially played their home games at the Cow Palace, before they moved to their present home, the SAP Center at San Jose in 1993. The SAP Center is known locally as the Shark Tank. The Sharks were founded in 1991 and were the first NHL franchise"} +{"qid": "test2420", "pid": "18556922", "query": "where do the sharks play in san jose", "answer": "the SAP Center", "passage": "\"San Jose Barracuda\"\nSan Jose Barracuda The San Jose Barracuda is a professional ice hockey team in the American Hockey League (AHL) which began play in the 2015–16 season. Affiliated with the National Hockey League's San Jose Sharks, the Barracuda shares the SAP Center with its parent club. The Barracuda is a relocation of the former Worcester Sharks AHL franchise; it joined several other AHL franchises to form the AHL's Pacific Division in 2015. On January 29, 2015, the San Jose Sharks announced that they would be moving their AHL affiliate, the Worcester Sharks, to San Jose, California, as one of five charter"} +{"qid": "test2420", "pid": "641380", "query": "where do the sharks play in san jose", "answer": "the SAP Center", "passage": "\"San Jose, California\"\nthe Manchester Evening News Arena in Manchester, England, and the Bell Centre in Montreal, Canada, for the period from January 1September 30, 2004. Including sporting events, the SAP Center averages 184 events a year, or roughly one event for every two days, which is significantly higher than the average for NHL arenas. San Jose is home to the San Jose Sharks of the NHL, the San Jose Barracuda of the AHL, and the San Jose Earthquakes of Major League Soccer. The Sharks and the Barracuda play in the SAP Center at San Jose. The Earthquakes built an 18,000 seat new"} +{"qid": "test2425", "pid": "4278926", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Kittanning Expedition\"\nAlthough it eventually became a worldwide conflict known as the Seven Years' War, the French and Indian War began on the Pennsylvania frontier as a struggle for control of the Ohio Country. With the surrender of George Washington at Fort Necessity in 1754 and Braddock's defeat in 1755, the settlers on the Pennsylvania frontier were without professional military protection, and scrambled to organize a defense. The French-allied Indians who had defeated General Edward Braddock at the Monongahela were primarily from the Great Lakes region to the north. The local Indians, mostly Delaware and Shawnee who had migrated to the area"} +{"qid": "test2425", "pid": "12439268", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Indian removals in Indiana\"\nother areas. These native tribes lived in agricultural villages along the rivers and exchanged furs for European goods with French traders, who began to arrive in the late 1600s. After the French left the area now known as Indiana, early treaties with Great Britain and United States set in motion a series of confrontations between the Indians who lived on the land and the British and U.S. governments who believed they had possession of it by right of conquest and treaty. Following Great Britain's defeat of the French in the French and Indian Wars (Seven Years' War), the Treaty of"} +{"qid": "test2425", "pid": "14881716", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"French Royal Army (1652–1830)\"\nknown as the French and Indian War, was the last of four wars that occurred in North America at the same time as a European conflict. However, by 1759, the British had gone onto the offensive in America and captured Quebec, the French colonial capital. Fighting also occurred on the Indian subcontinent during Louis XV's reign. During the War of the Austrian Succession, French troops captured several settlements in India, but its allies were defeated by British troops in 1756. On the whole, the Seven Years' War went badly for the French, who were forced to sign an unfavorable treaty"} +{"qid": "test2425", "pid": "8740667", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Charles Michel de Langlade\"\ncompeting for control. During the subsequent Seven Years' War, he helped defend Fort Duquesne (Pittsburgh) against the British. He was named second in command at Fort Michilimackinac and a captain in the Indian Department of French Canada. After the defeat of the French in North America, Langlade became allied with the British, who took control of former French possessions and took the lead in the fur trade. During the American Revolutionary War, Langlade led Great Lakes Indians for the British against the rebel colonists and their Indian allies. At the end of the war, he retired to his home in"} +{"qid": "test2425", "pid": "1737660", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Braddock Expedition\"\nBraddock Expedition The Braddock expedition, also called Braddock's campaign or, more commonly, Braddock's Defeat, was a failed British military expedition which attempted to capture the French Fort Duquesne (modern-day downtown Pittsburgh) in the summer of 1755 during the French and Indian War. It was defeated at the Battle of the Monongahela on July 9, and the survivors retreated. The expedition takes its name from General Edward Braddock, who led the British forces and died in the effort. Braddock's defeat was a major setback for the British in the early stages of the war with France and has been described as"} +{"qid": "test2425", "pid": "14439544", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "Iowa\nknown European explorers to document Iowa were Jacques Marquette and Louis Jolliet who traveled the Mississippi River in 1673 documenting several Indian villages on the Iowa side. The area of Iowa was claimed for France and remained a French territory until 1763. The French, before their impending defeat in the French and Indian War, transferred ownership to their ally, Spain. Spain practiced very loose control over the Iowa region, granting trading licenses to French and British traders, who established trading posts along the Mississippi and Des Moines Rivers. Iowa was part of a territory known as \"\"La Louisiane\"\" or Louisiana,"} +{"qid": "test2425", "pid": "954590", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"St. Landry Parish, Louisiana\"\neast from the Atchafalaya River area. They were joined by immigrants from the French West Indies, who left after Haiti/St. Domingue became independent in a slave revolution. Most of the new settlers were French, Spaniards, French Creoles, Spanish Creoles, Africans and African Americans. The group from Attakapas Post included many Acadians. These were French who migrated from Nova Scotia in 1763, after their expulsion by the English in the aftermath of France's defeat in the Seven Years' War (known in North America as the French and Indian War). They were led by Jean-Jacques Blaise d'Abbadie. D'Abbadie was Governor of the"} +{"qid": "test2425", "pid": "1784220", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Northwest Territory\"\nParis, after being defeated in the French and Indian War (and Seven Years' War in Europe). From the 1750s to the peace treaty that ended the War of 1812, the British had a long-standing goal of creating an Indian barrier state, a large \"\"neutral\"\" Indian state that would cover most of the Old Northwest. It would be independent of the United States and under the tutelage of the British, who would use it to block American expansion and to build up their control of the fur trade headquartered in Montreal. A new colony, named Charlotina, was proposed for the southern"} +{"qid": "test2425", "pid": "970340", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Quebec City\"\nUrsulines nuns and the order running the local hospital, Hotel-Dieu. Quebec City was the headquarters of many raids against New England during the four French and Indian Wars. In the last war, the French and Indian War (Seven Years' War), Quebec City was captured by the British in 1759 and held until the end of the war in 1763. It was the site of three battles during Seven Years' War: the Battle of Beauport, a French victory (31 July 1759); the Battle of the Plains of Abraham, in which British troops under General James Wolfe defeated the French General Louis-Joseph"} +{"qid": "test2425", "pid": "1549724", "query": "who was defeated in the french and indian war", "answer": "British", "passage": "\"Pontiac (Ottawa leader)\"\nAmerica\"\" (1765), which helped to make the Ottawa leader famous and began the process of mythologizing about him. According to historian Richard White, the play made Pontiac \"\"the most famous Indian of the eighteenth century\"\". The French and Indian War, the North American theater of the Seven Years' War, effectively ended in 1760 with the British conquest of Quebec, which marked the defeat of New France. Indian allies of the defeated French soon became dissatisfied with the trading practices of the victorious British. In addition, although by treaty the British said they would not build any forts in Ohio Country,"} +{"qid": "test2425", "pid": "954496", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"St. Tammany Parish, Louisiana\"\narea until after it had begun to be settled by Europeans). After the 18th-century founding and development of New Orleans, French settlers began to enter the region. The primary industry was the production of pitch, tar, turpentine and resin from the forests. After France was defeated in the French and Indian War, St. Tammany (along with the other future \"\"Florida Parishes\"\") became part of British West Florida. During this period, the area comprising today's St. Tammany attracted British loyalists who wanted to escape persecution in the Thirteen Colonies. After Great Britain was defeated in the American Revolutionary War, West Florida"} +{"qid": "test2425", "pid": "1121197", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"French and Indian Wars\"\nis therefore conjectured that the English colonists designed new combat techniques, inspired by the Indian combat methods. These techniques, which included cover and stressed ambushes, is supposed to have been the reason why the colonists finally defeated the French, and then the British army during the American Revolutionary War. In reality, however, the French and Indian wars were finally won by Britain through the application of traditional European tactics. The Fortress of Louisbourg surrendered twice after sieges conducted according to the rules of European warfare, and the Battle of the Plains of Abraham 1759 was a European battle fought in"} +{"qid": "test2425", "pid": "13466520", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Franco-Indian alliance\"\nally with the majority of the First Nations. According to one observer: At the beginning of the conflict, despite the disproportion of the forces involved, the French and their allies managed to inflict embarrassing defeats to the British, such as the Battle of Fort Necessity or the Battle of the Monongahela. Following the capture of Fort William Henry, the Marquis de Montcalm agreed to let the British withdraw with full honours of war - a civility that was not understood by some Indians who massacred the British and their camp followers on their way to Fort Edward. Facing major defeats"} +{"qid": "test2425", "pid": "1737680", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Braddock Expedition\"\nwas unveiled, and a commemorative postage stamp, modeled after the statue, was released for usage that same day. Braddock Expedition The Braddock expedition, also called Braddock's campaign or, more commonly, Braddock's Defeat, was a failed British military expedition which attempted to capture the French Fort Duquesne (modern-day downtown Pittsburgh) in the summer of 1755 during the French and Indian War. It was defeated at the Battle of the Monongahela on July 9, and the survivors retreated. The expedition takes its name from General Edward Braddock, who led the British forces and died in the effort. Braddock's defeat was a major"} +{"qid": "test2425", "pid": "13411546", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "Proto-globalization\ntime. Growing population in British territory throughout North America forced expansion west; however, this was met with resistance from the French and their Native American allies. French forces began entering British territory, building numerous forts in preparation to defend the newly acquired land. The beginning of the war favored the French and their Native American allies, who were able to defeat British forces time and again, and it was not until 1756 that the British were able to hold off their opposition. Pittsburgh was a center for fighting during the French and Indian War, namely because of the geographical location"} +{"qid": "test2425", "pid": "4471312", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Christopher Gist\"\nThis was the beginning of the French and Indian War, a part of the Seven Years' War between France and England. Gist owned land near the present city of Uniontown, Pennsylvania. He named it Gist's Plantation and began to build a town there. At the outset of the war, the French burned all the buildings. Gist was a member of the Braddock Expedition during 1755 when it was defeated by the French and their Native American allies. After the defeat, Gist traveled into Tennessee, where he met with various native groups to seek their help during the war. His whereabouts,"} +{"qid": "test2425", "pid": "7661740", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"History of the Acadians\"\nBritish made six attempts to conquer Acadia by defeating the capital. They finally defeated the French in the Siege of Port Royal (1710). Over the following fifty years, the French and their allies made six unsuccessful military attempts to regain the capital. There was already a long history of Acadian and Wabanaki Confederacy resistance to the British occupation of Acadia during the four French and Indian Wars and two local wars (Father Rale's War and Father Le Loutre's War) before the Expulsion of the Acadians. The Mi'kmaq and the Acadians were allies through Catholicism and through numerous inter-marriages. The Mi'kmaq"} +{"qid": "test2425", "pid": "15668853", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Siege of Fort Nashwaak\"\ncommunities. During King William's War - the first of the four French and Indian Wars - French and Indians were victorious in the Siege of Pemaquid (1696) (present day Bristol, Maine) earlier that year. In the Siege of Pemaquid, the French and Indians had destroyed Fort William Henry, which the English colonial militia leader Benjamin Church himself assisted in erecting. In response to the defeat, the following month Benjamin Church led a devastating raid on Chignecto and then laid siege to the capital of Acadia, Fort Nashwaak in 1696. Fort Nashwaak was a four-sided log palisade erected by Governor Villebon"} +{"qid": "test2425", "pid": "4164737", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Coosa River\"\nIn the early 18th century, almost all European and Indian trade in the southeast ceased during the tribal uprisings brought on by the Yamasee War against the Carolinas. After a few years, the Indian trade system was resumed under somewhat reformed policies. The conflict between the French and English over the Coosa Valley, and much of the southeast in general, continued. It was not after Britain had defeated France in the Seven Years' War (also known as the French and Indian War) that France relinquished its holdings east of the Mississippi River to Britain. This was stated in the Treaty"} +{"qid": "test2425", "pid": "13314883", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"History of guerrilla warfare\"\nIndian Wars, starting in the late 17th century Canadiens, the Wabanaki Confederacy, and some Acadians brought La Petite Guerre to New England and the Ohio Valley. In present-day Maine, Father Sebastian Rale led the Wabanaki Confederacy in a petite guerre along the New England/ Acadia border. A generation later, in Nova Scotia, Father Jean-Louis Le Loutre led the Mi'kmaq and the Acadians in a petite guerre behind Anglo-American lines in the lead up to the last French and Indian War. During the French and Indian War La Petite Guerre came to the front stage when the Ohio valley Indians defeated"} +{"qid": "test2425", "pid": "1198377", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Braddock, Pennsylvania\"\nwounding and a sound defeat of his troops who had been moving against the French at Fort Duquesne. This battle, now called the Battle of the Monongahela, was a key event at the beginning of the French and Indian War. The area surrounding Braddock's Field was originally inhabited by the Lenape, ruled by Queen Allequippa. In 1742, John Fraser and his family established the area at the mouth of Turtle Creek as the first permanent English settlement west of the Allegheny Mountains. George Washington visited the area in 1753-1754. It was the site of Braddock's Defeat on July 9, 1755."} +{"qid": "test2425", "pid": "14103138", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"François-Marie Le Marchand de Lignery\"\n1728 during the Fox Wars. He also saw service in the Chickasaw Wars and King George's War, where he participated in attacks on Fort Anne and Grand Pré. In 1751 he was promoted to captain. When the French and Indian War broke out, Lignery played an important role in the French defense of the Ohio Country. He distinguished himself in the defeat of Braddock in 1755, in which his company held the French center while Indians and Canadien militia were rallied early in the battle. For his role in the battle he was awarded the Cross of Saint Louis. Given"} +{"qid": "test2425", "pid": "4117021", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Simon Girty\"\nthe Ohio Seneca fought in many battles against the British in the French and Indian War. Guyasuta was instrumental in defeat of Major James Grant at the Battle of Fort Duquesne on September 14, 1758. The French and Indian War officially ended in 1763, but hostilities between the Indians and the British continued in Pontiac's War. Guyasuta and the Ohio Seneca were allied with Pontiac, and fought the British alongside his warriors at the July 1763 Siege of Fort Pitt, the July 31, 1763 Battle of Bloody Run, the August 5–6, 1763 Battle of Bushy Run, and the September 14,"} +{"qid": "test2425", "pid": "852038", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Mobile County, Alabama\"\nMobile in the early eighteenth century. The British took over the territory in 1763 (along with other French territories east of the Mississippi River) after defeating the French in the Seven Years' War. During the American Revolutionary War, it came under Spanish rule as part of Spanish Florida. Spain ceded the territory to the United States after the War of 1812. In the 1830s, the United States forced the removal of most of the Native Americans in the area under President Andrew Jackson's policy to relocate them to Indian Territory west of the Mississippi River. Many of those who remained"} +{"qid": "test2425", "pid": "1395147", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"New France\"\nBraddock's army was routed and Braddock was killed. Later that same year at the Battle of Lake George, the British General William Johnson with a force of 1700 American and Iroquois troops defeated a French force of 2800 French and Canadians and 700 Native Americans led by Baron Dieskau (Military commander of New France). The fight for control over Ohio Country led to the French and Indian War, which began as the North American phase of the Seven Years' War (which did not technically begin in Europe until 1756). The war began with the defeat of a Virginia militia contingent"} +{"qid": "test2425", "pid": "15758551", "query": "who was defeated in the french and indian war", "answer": "British", "passage": "\"General Johnson Saving a Wounded French Officer from the Tomahawk of a North American Indian\"\nBritish, French and Indian War\"\"). It depicts Major General Sir William Johnson preventing a North American native warrior from taking the scalp of Baron Dieskau, a wounded and defeated French soldier lying on the ground. West was an early American painter. He claimed to have been first taught how to make paint by a Native American childhood friend who demonstrated how paint could be made by mixing clay with bear grease. This painting has fine detail on the native figure, whose plucked scalp and tattoos are shown in more detail than the Europeans' uniforms. West is known to have had"} +{"qid": "test2425", "pid": "502511", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Upper Canada\"\nWar global conflict and the French and Indian War in North America, Great Britain retained control over the former New France, which had been defeated in the French and Indian War. The British had won control after Fort Niagara had surrendered in 1759 and Montreal capitulated in 1760, and the British under Robert Rogers took formal control of the Great Lakes region in 1760. Fort Michilimackinac was occupied by Roger's forces in 1761. The territories of contemporary southern Ontario and southern Quebec were initially maintained as the single Province of Quebec, as it had been under the French. From 1763"} +{"qid": "test2425", "pid": "4177399", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"Fort Pitt (Pennsylvania)\"\nof Pittsburgh and Allegheny County, Pennsylvania by British-American colonists and immigrants. In April 1754, the French began building Fort Duquesne on the site of the small British Fort Prince George at the beginning of the French and Indian War (Seven Years' War). The Braddock expedition, a 1755 British attempt to take Fort Duquesne, met with defeat at the Battle of the Monongahela at present-day Braddock, Pennsylvania. The French garrison defeated an attacking British regiment in September 1758 at the Battle of Fort Duquesne. French Colonel de Lignery ordered Fort Duquesne destroyed and abandoned at the approach of General John Forbes'"} +{"qid": "test2425", "pid": "507396", "query": "who was defeated in the french and indian war", "answer": "the French", "passage": "\"French and Indian War\"\n\"\"a few acres of snow\"\". For France, however, the military defeat and the financial burden of the war weakened the monarchy and contributed to the advent of the French Revolution in 1789. For some of the Indian tribes, the elimination of French power in America meant the disappearance of a strong ally, although other tribes were not so affected. The Ohio Country was now more available to colonial settlement, due to the construction of military roads by Braddock and Forbes. The Spanish takeover of the Louisiana territory was not completed until 1769, and it had modest repercussions. The British takeover"} +{"qid": "test2425", "pid": "2802", "query": "who was defeated in the french and indian war", "answer": "British", "passage": "\"American Revolutionary War\"\nRiver in August which met with some success, but it did little to abate the Indian raids on the frontier. French militia attempted to capture Detroit, but it ended in disaster when Miami Indians ambushed and defeated the gathered troops on November 5. The war in the west had become a stalemate; the Americans did not have the manpower to simultaneously defeat the hostile Indian tribes and occupy their land. The British turned their attention to conquering the South in 1778, after Loyalists in London assured them of a strong Loyalist base there. A southern campaign also had the advantage"} +{"qid": "test2427", "pid": "11338040", "query": "when did colour tv come out in uk", "answer": "1967", "passage": "\"The Aeronauts\"\nbroadcast on French TV from September 1967 in black and white, as French television was only in black and white at the time. All three seasons, however, were later released in colour when the series appeared in a 6-DVD box in the early 2000s. This 6-DVD set is now sold out and used copies fetch high prices. It was dubbed into English, retitled \"\"The Aeronauts\"\" and shown by the BBC on UK children's TV, and in Canada on the CBC, in the early 1970s. In 1972 Rick Jones released a single of the anglicised theme tune. In 1976 a version"} +{"qid": "test2427", "pid": "8171469", "query": "when did colour tv come out in uk", "answer": "1967", "passage": "\"Who Am I? (Petula Clark song)\"\n1966 and failed to chart in Clark's native UK, as did the follow-up US Top 20 single \"\"Colour My World\"\". \"\"Who Am I \"\" was Clark's first post-\"\"Downtown\"\" single which did not chart in the UK. During this 1965–66 period, three US hits — \"\"You'd Better Come Home\"\", \"\"Round Every Corner\"\" and \"\"A Sign Of The Times\"\" — did not crack the UK Top 40. \"\"Who Am I\"\" was symptomatic of a run of singles that on the whole proved far more successful in the States. Clark broke the spell in early 1967 with the release of \"\"This Is My"} +{"qid": "test2427", "pid": "1415779", "query": "when did colour tv come out in uk", "answer": "July 1, 1967", "passage": "\"Color television\"\nUK's BBC2 beginning on July 1, 1967 (using the PAL system). West Germany's first colour broadcast occurred in August (PAL), followed by the Netherlands in September (PAL), and by France in October (SECAM). Denmark, Norway, Sweden, Finland, Austria, East Germany, Czechoslovakia, and Hungary all started regular colour broadcasts around 1969/1970. Ireland's national TV station RTÉ began using colour in 1968 for recorded programmes; the first outside broadcast made in colour for RTÉ Television was when Ireland hosted the Eurovision Song Contest in Dublin in 1971. The PAL system spread through most of Western Europe. More European countries introduced colour television"} +{"qid": "test2428", "pid": "5182283", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"Phantom of the Opera (1976 musical)\"\nPhantom of the Opera (1976 musical) Phantom of the Opera is a 1976 musical with book and lyrics by Ken Hill. It is the first musical adaptation of the novel \"\"The Phantom of the Opera\"\" by Gaston Leroux, about the hideously disfigured Phantom's amorous obsession with the magnificent, naïve singer, Christine. Hill wrote the original English lyrics to the music of Verdi, Gounod, Offenbach, Mozart, Weber, Donizetti, and Boito. Hill’s \"\"Phantom of the Opera\"\" was the first musical version of the story by Gaston Leroux and has enjoyed financial success. Hill's musical inspired the award-winning Andrew Lloyd Webber musical version"} +{"qid": "test2428", "pid": "2076452", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (1986 musical)\"\nThe Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath the Paris Opéra House. The musical opened in London's West End in 1986, and on Broadway in 1988. It won the 1986 Olivier Award"} +{"qid": "test2428", "pid": "2076497", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (1986 musical)\"\nMelbourne run ended on 12 December 2011 the production moved to the Capitol Theatre in Sydney where it played from January to April 2012. The Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath"} +{"qid": "test2428", "pid": "7866606", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (2004 soundtrack)\"\nThe Phantom of the Opera (2004 soundtrack) The Phantom of the Opera is the soundtrack to the 2004 film based on the Andrew Lloyd Webber musical, There are two versions released, the standard 14-track release and a two-disc deluxe edition. In addition to the listed tracks, versions of \"\"The Phantom of the Opera\"\" remixed by Junior Vasquez were made available to iTunes customers who purchased the expanded edition. In 2006, \"\"The Phantom of the Opera\"\" won the RIAJ's Japan Gold Disc Award for \"\"Best Soundtrack Album of the Year.\"\" Chart-wise, the album performed fairly well, reaching the top position of"} +{"qid": "test2428", "pid": "8797032", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nPeter Jöback and Erkan Aki. What makes this particular song unique within the musical is its unusual hard rock style, since most of the songs in the musical have a more operatic style. Early in the musical's production, Andrew Lloyd Webber met Jim Steinman, who described \"\"The Phantom of the Opera\"\" as a rock song invading an opera house. This is what inspired the hard rock style of the song, which influenced all of the rock-based instruments in the song including drums and electric guitar. \"\"The Phantom of the Opera\"\" song was also specially arranged by the show's original orchestrator,"} +{"qid": "test2428", "pid": "7776898", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"Adaptations of The Phantom of the Opera\"\nAdaptations of The Phantom of the Opera There have been many literary and dramatic works based on Gaston Leroux's novel \"\"The Phantom of the Opera,\"\" ranging from stage musicals to films to children's books. Some well known stage and screen adaptations of the novel are the 1925 film and the Andrew Lloyd Webber musical (see \"\"The Phantom of the Opera (1986 musical)\"\"); Susan Kay's 1990 \"\"Phantom\"\" is one of the best known novels and includes in-depth study of the title character's life and experiences. Several different computer games have been released based on the Phantom of the Opera or that"} +{"qid": "test2428", "pid": "7776899", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"Adaptations of The Phantom of the Opera\"\nmake some reference to it. Adaptations of The Phantom of the Opera There have been many literary and dramatic works based on Gaston Leroux's novel \"\"The Phantom of the Opera,\"\" ranging from stage musicals to films to children's books. Some well known stage and screen adaptations of the novel are the 1925 film and the Andrew Lloyd Webber musical (see \"\"The Phantom of the Opera (1986 musical)\"\"); Susan Kay's 1990 \"\"Phantom\"\" is one of the best known novels and includes in-depth study of the title character's life and experiences. Several different computer games have been released based on the Phantom"} +{"qid": "test2428", "pid": "3320350", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"Charles Hart (lyricist)\"\nCharles Hart (lyricist) Charles Hart (born 3 June 1961) is a British lyricist, songwriter and musician. He is best known for writing the lyrics to, and contributing to the book of, Andrew Lloyd Webber's stage musical \"\"The Phantom of the Opera\"\" and for writing the lyrics to \"\"Bend It Like Beckham the Musical\"\". He also co-wrote (with Don Black) the lyrics to Lloyd Webber's 1989 musical \"\"Aspects of Love\"\". Hart also re-wrote Glenn Slater's lyrics for \"\"Love Never Dies\"\", the sequel to \"\"Phantom\"\". Born in London, Hart was educated at Desborough School, Maidenhead, Robinson College, Cambridge and the Guildhall School"} +{"qid": "test2428", "pid": "6183540", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"Don Juan Triumphant\"\nDon Juan Triumphant Don Juan Triumphant is the name of a fictional opera written by the title character in the novel \"\"The Phantom of the Opera\"\". In the 1986 musical \"\"The Phantom of the Opera\"\" by Andrew Lloyd Webber, the concept is expanded as an opera within a musical and the performance of it plays a major role in the storyline. The fictional piece draws major inspiration from the Mozart's famous work \"\"Don Giovanni\"\" yet the Phantom's opera is depicted as far more bleak and dark. In the novel \"\"The Phantom of the Opera\"\" by novelist Gaston Leroux, \"\"Don Juan"} +{"qid": "test2428", "pid": "7929663", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"Madame Giry\"\nMadame Giry Madame Giry is a fictional character from Gaston Leroux's 1909 novel \"\"The Phantom of the Opera\"\". She is a fairly intermediate character in the novel, although her role is much increased in the Andrew Lloyd Webber musical. This article will deal with both versions separately. Madame Giry is also a character in the musical Love Never Dies, a sequel to The Phantom of the Opera. Madame Giry is an aging woman who works as a concierge in the \"\"rue de Provence\"\", who looks after patrons of the Opera, principally those who sit in the boxes. One night, whilst"} +{"qid": "test2428", "pid": "7160358", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Music of the Night\"\nwas called \"\"Married Man\"\". The lyrics were later rewritten and the song was added into \"\"The Phantom of the Opera\"\". A year before \"\"The Phantom Of The Opera\"\" opened at Her Majesty's Theatre, the original version of the song was performed at Andrew Lloyd Webber's own theatre at Sydmonton, along with the first drafts of the show. The audience were a specially gathered group of Webber's acquaintances. The Phantom was played by Colm Wilkinson, who sang \"\"The Music Of The Night\"\" in Act One. As Charles Hart had not yet become involved in writing the song, in places the lyrics"} +{"qid": "test2428", "pid": "8797051", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nLindsey Stirling did an accompanied instrumental version of the song on her \"\"Phantom of the Opera\"\" single in 2012. The Phantom of the Opera (Andrew Lloyd Webber song) \"\"The Phantom of the Opera\"\" is a song from the stage musical of the same name. It was composed by Andrew Lloyd Webber, with lyrics written by Charles Hart and Richard Stilgoe, and additional lyrics by Mike Batt. The song was originally recorded by Sarah Brightman and Steve Harley, which became a UK hit single in 1986, prior to the musical. In its theatrical debut, it was sung by Brightman and Michael"} +{"qid": "test2428", "pid": "16903541", "query": "who wrote the music phantom of the opera", "answer": "Andrew Lloyd Webber", "passage": "\"The Phantom of the Opera at the Royal Albert Hall\"\nThe Phantom of the Opera at the Royal Albert Hall The Phantom of the Opera at the Royal Albert Hall is a 2011 British film adaptation of Andrew Lloyd Webber's 1986 musical \"\"The Phantom of the Opera\"\", which in turn was based on the 1910 French novel \"\"Le Fantôme de l'Opéra\"\" by Gaston Leroux. To celebrate the 25th anniversary of the musical, three special performances were filmed at the Royal Albert Hall, the third of which was screened live worldwide on 2 October 2011. For further releases, footage from all three performances was edited together. To mark the extraordinary milestone"} +{"qid": "test243", "pid": "7358663", "query": "how many strong verbs are there in german", "answer": "more than 200", "passage": "\"German verbs\"\nGerman verbs German verbs may be classified as either \"\"weak\"\", with a dental consonant inflection, or \"\"strong\"\", showing a vowel gradation (ablaut). Both of these are regular systems. Most verbs of both types are regular, though various subgroups and anomalies do arise; however, textbooks for learners often class all strong verbs as irregular. The only completely irregular verb in the language is \"\"sein\"\" (\"\"to be\"\"). There are more than 200 strong and irregular verbs, but there is a gradual tendency for strong verbs to become weak. As German is a Germanic language, the German verb can be understood historically as"} +{"qid": "test243", "pid": "1782126", "query": "how many strong verbs are there in german", "answer": "more than 200", "passage": "\"German grammar\"\nperson formal). German verbs may be classified as either \"\"weak\"\", if they form their past tense with a dental consonant inflection, or \"\"strong\"\", if they exhibit a vowel gradation (ablaut). Most verbs of both types are regular, though various subgroups and anomalies do arise. However, textbooks often class all strong verbs as irregular. There are more than 200 strong and irregular verbs, and there is a gradual tendency for strong verbs to become weak. In German declarative main clauses the finite verb is always placed as the second element. When there are more verbs in a sentence, the non-finite ones"} +{"qid": "test2431", "pid": "1395863", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"Clarence Darrow\"\nworth over $375,000 in 2016. In 1925, Darrow defended John T. Scopes in the \"\"State of Tennessee v. Scopes\"\" trial. It has often been called the \"\"Scopes Monkey Trial,\"\" a title popularized by author and journalist H.L. Mencken. The trial, which was deliberately staged to bring publicity to the issue at hand, pitted Darrow against William Jennings Bryan in a court case that tested Tennessee's Butler Act, which had been passed on March 21, 1925. The act forbade the teaching of \"\"the Evolution Theory\"\" in any state-funded educational establishment. More broadly, it outlawed in state-funded schools (including universities) the teaching"} +{"qid": "test2431", "pid": "386030", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"Scopes Trial\"\nthe Bible was all nonsense.\"\" Tennessee governor Austin Peay signed the law to gain support among rural legislators, but believed the law would neither be enforced nor interfere with education in Tennessee schools. William Jennings Bryan thanked Peay enthusiastically for the bill: \"\"The Christian parents of the state owe you a debt of gratitude for saving their children from the poisonous influence of an unproven hypothesis.\"\" In response, the American Civil Liberties Union financed a test case in which John Scopes, a Tennessee high school science teacher, agreed to be tried for violating the Act. Scopes, who had substituted for"} +{"qid": "test2431", "pid": "512788", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"William Jennings Bryan\"\nthe sweaty crank of a lawyer who represented Tennessee in the Scopes trial. After his defence of creationism, he became a mocked caricature, a sweaty possessor of avoirdupois, bereft of bombast.\"\" Kazin writes that \"\"scholars have increasingly warmed to Bryan's motives, if not his actions\"\" in the Scopes Trial, due to Bryan's rejection of eugenics, a practice that many evolutionists of the 1920s favored. Kazin also notes the stain that Bryan's acceptance of the Jim Crow system places on his legacy, writing His one great flaw was to support, with a studied lack of reflection, the abusive system of Jim"} +{"qid": "test2431", "pid": "13328105", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"Inherit the Wind (play)\"\nTennessee state law. The role of Matthew Harrison Brady is intended to reflect the personality and beliefs of William Jennings Bryan, while that of Henry Drummond is intended to be similar to that of Clarence Darrow. Bryan and Darrow, formerly close friends, opposed one another at the Scopes trial. The character of E. K. Hornbeck is modeled on that of H. L. Mencken, who covered the trial for \"\"The Baltimore Sun\"\", and the character of Bertram Cates corresponds to Scopes. However, the playwrights state in a note at the opening of the play that it is not meant to be"} +{"qid": "test2431", "pid": "386085", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"Scopes Trial\"\nsuch memorabilia as the microphone used to broadcast the trial, trial records, photographs, and an audiovisual history. Every July, local people re-enact key moments of the trial in the courtroom. In front of the courthouse stands a commemorative plaque erected by the Tennessee Historical Commission: 2B 23 THE SCOPES TRIAL Here, from July 10 to 21, 1925 JohnThomas Scopes, a County High School teacher, was tried for teaching that a man descended from a lower order of animals in violation of a lately passed state law. William Jennings Bryan assisted the prosecution; Clarence Darrow, Arthur Garfield Hays, and Dudley Field"} +{"qid": "test2431", "pid": "7232642", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"The Monkey Suit\"\nof violating Tennessee's Butler Act which made teaching evolution unlawful. Clarice Drummond, the ACLU lawyer who represents Lisa, is a reference to the ACLU lawyer Clarence Darrow who defended Scopes, while Wallace Brady is a reference to William Jennings Bryan, an attorney in the Scopes Monkey Trial. American actor Larry Hagman guest starred in the episode as Wallace Brady, while American actress Melanie Griffith played herself as the narrator of an audio tour at the museum. Burns did research for \"\"The Monkey Suit\"\" by reading Richard Dawkins' book \"\"The Selfish Gene\"\" and watching \"\"Inherit the Wind\"\" (a film based on"} +{"qid": "test2431", "pid": "2089585", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"Freedom From Religion Foundation\"\nthe FFRF. The courthouse was the site of the historic 1925 Scopes Monkey Trial wherein Darrow unsuccessfully defended a teacher, John T. Scopes, who was found guilty of teaching evolution in a public school in violation of what was then a Tennessee state law. The statue was placed just a few feet away from a statue of William Jennings Bryan, Darrow's creationist opponent in the trial, which had been erected in 2005 by nearby Bryan College. In 2011 the FFRF was contacted by a local Austin citizen regarding the placement of a nativity scene on Henderson County courthouse property. A"} +{"qid": "test2431", "pid": "1417593", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"John T. Scopes\"\nin effigy, and taunted by a fire-snorting preacher. William Jennings Bryan (Matthew Harrison Brady) is portrayed as an almost comical fanatic who dramatically dies of a \"\"busted belly\"\" while attempting to deliver his summation in a chaotic courtroom. The townspeople are shown as frenzied, mean-spirited, and ignorant. None of that happened in Dayton, Tennessee, during the actual trial. The results of the Scopes Trial affected the life of John T. Scopes professionally and personally. The public image of Scopes was mocked in animation, cartoonists, and other mediums in the following years. Scopes himself retreated from the public eye and focused"} +{"qid": "test2431", "pid": "4108211", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"John T. Raulston\"\nfamed attorney Clarence Darrow, who represented Scopes. At the outset of the trial, Raulston quoted Genesis and the state Butler Act, which was the basis of the prosecution. He also warned the jury not to judge the merit of the law, which would become the focus of the trial. Contemporary accounts refer to him as \"\"plump, red-faced and middle aged.\"\" After a raucous trial, in which Darrow squared off against William Jennings Bryan for the prosecution, Scopes was convicted and fined $100. The conviction was reversed by an appellate court because the maximum fine was $50, but Scopes was never"} +{"qid": "test2431", "pid": "3992774", "query": "who represented the state of tennessee in the scopes trial", "answer": "William Jennings Bryan", "passage": "\"Creation–evolution controversy\"\na surge of opposition to the idea of evolution, and following the campaigning of William Jennings Bryan several states introduced legislation prohibiting the teaching of evolution. By 1925, such legislation was being considered in 15 states, and had passed in some states, such as Tennessee. The American Civil Liberties Union offered to defend anyone who wanted to bring a test case against one of these laws. John T. Scopes accepted, and confessed to teaching his Tennessee class evolution in defiance of the Butler Act, using the textbook by George William Hunter: \"\"A Civic Biology: Presented in Problems\"\" (1914). The trial,"} +{"qid": "test2432", "pid": "3555194", "query": "when was the land rover defender first built", "answer": "in the 1980s", "passage": "\"Land Rover Defender\"\nLand Rover Defender The Land Rover Defender (initially called the Land Rover Ninety and Land Rover One Ten) is a British four-wheel drive off-road vehicle developed in the 1980s from the original Land Rover series which was launched at the Amsterdam Motor Show in April 1948. After a continuous run of 67 years production finally ended on 29 January 2016 when the last Land Rover Defender, with the number plate H166 HUE, rolled off the production line. A special edition Defender Works V8, with 400bhp, was announced in January 2018. The next-generation model, codenamed L663, will be completely redesigned and"} +{"qid": "test2432", "pid": "3555246", "query": "when was the land rover defender first built", "answer": "1983", "passage": "\"Land Rover Defender\"\nthe 1970s, it fell out of favour as a 4x4 work vehicle while offerings from Toyota and Nissan increased in popularity. Mid-2009, Land Rover expanded the model range to include 110 and 130 cab-chassis, panel van and HCPU versions, and late in the year announced the re-introduction of the 90 4x4 model for sale from early 2010. Defenders, derivatives and clones have been built by a number of manufacturers including Santana Motors in Spain (modified Land Rover clones made from 1958 until the licence expired in 1983; Land Rover derivatives were then developed from 1984–1995), Morattab in Iran (using parts"} +{"qid": "test2432", "pid": "3555196", "query": "when was the land rover defender first built", "answer": "1991", "passage": "\"Land Rover Defender\"\nlaunch, the only other Land Rover model in production was the Range Rover. In 1989, a third model was brought out by Land Rover to be produced in parallel with the other two: the Land Rover Discovery. To avoid possible confusion, the 1991 model year Ninety and the One Ten were renamed the \"\"Defender 90\"\" and \"\"Defender 110\"\". These carried front badges that said \"\"Defender\"\", with a badge on the rear of the vehicle saying \"\"Defender 90\"\" or \"\"Defender 110\"\". The most recent model, from 2007–2016, still featured the space above the radiator for the badge but was blank. Instead"} +{"qid": "test2432", "pid": "3555198", "query": "when was the land rover defender first built", "answer": "1983", "passage": "\"Land Rover Defender\"\nbadge above the radiator grille which read \"\"Defender\"\", whereas the NAS Defender 90 sold for the 1994 to 1997 model years had \"\"Land Rover\"\" spelled across the top of the radiator grille in individual letter decals. NAS Defenders also carried a cast plaque on the rear tub in the original style of the Series Station wagons with \"\"Defender 110\"\" or \"\"Defender 90\"\" below the Land Rover lozenge and the vehicle's unique limited edition production run number. Production of the model now known as the Defender began in 1983 as the Land Rover 110, a name which reflected the length of"} +{"qid": "test2434", "pid": "1580861", "query": "when did this season of american idol start", "answer": "March 11, 2018", "passage": "\"American Idol\"\nairing is delayed, the shows may sometimes be combined into one episode to summarize the results. In Italy, the twelfth season was broadcast by La3. American Idol American Idol is an American singing competition television series created by Simon Fuller, produced by Fremantle USA and 19 Entertainment, and distributed by Fremantle North America. It initially aired on Fox from June 11, 2002, to April 7, 2016, for 15 seasons. On March 11, 2018, the sixteenth season debuted on ABC. It started as an addition to the \"\"Idols\"\" format that was based on \"\"Pop Idol\"\" from British television, and became one"} +{"qid": "test2434", "pid": "1580734", "query": "when did this season of american idol start", "answer": "March 11, 2018", "passage": "\"American Idol\"\nAmerican Idol American Idol is an American singing competition television series created by Simon Fuller, produced by Fremantle USA and 19 Entertainment, and distributed by Fremantle North America. It initially aired on Fox from June 11, 2002, to April 7, 2016, for 15 seasons. On March 11, 2018, the sixteenth season debuted on ABC. It started as an addition to the \"\"Idols\"\" format that was based on \"\"Pop Idol\"\" from British television, and became one of the most successful shows in the history of American television. The concept of the series involves discovering recording stars from unsigned singing talents, with"} +{"qid": "test2435", "pid": "13752938", "query": "what type of artwork was created in the safavid empire", "answer": "architecture", "passage": "\"Persian Empire\"\nthe 10th century. The Safavid Empire was the first Persian Empire established after the Arab conquest of Persia by Shah Ismail I. From their base in Ardabil, the Safavid Persians established control over parts of Greater Persia/Iran and reasserted the Persian identity of the region, becoming the first native Persian dynasty since the Sasanian Empire to establish a unified Persian state. Literature, art and architecture flourished in the Safavid era once again, and it is often cited as the \"\"rebirth of the Persian Empire\"\". Safavids also announced Shia Islam as the official religion in the empire versus the Sunni Islam"} +{"qid": "test2435", "pid": "16721175", "query": "what type of artwork was created in the safavid empire", "answer": "architecture", "passage": "\"Persians in the Mughal Empire\"\nChagatai language and maintained some Turko-Mongol practices, they became essentially Persianized and transferred the Persian literary and high culture to South Asia, thus forming the base for the Indo-Persian culture and the Spread of Islam in South Asia. Mughal Emperor Humayun was defeated by Sher Shah Suri in 1540 and fled to the refuge of the powerful Safavid Empire in Iran, marching with 40 men and his wife. Shah Tahmasp welcomed the Mughal, and treated him as a royal visitor. Here Humayun went sightseeing and was amazed at the Persian artwork, military might and architecture he saw: much of this"} +{"qid": "test2435", "pid": "9711794", "query": "what type of artwork was created in the safavid empire", "answer": "architecture", "passage": "\"Safavid art\"\nSafavid art Safavid art is the art of the Persian Safavid dynasty from 1501 to 1722, in present-day Iran and Caucasia. It was a high point for the art of the book and architecture; and also including ceramics, metal, glass, and gardens. The arts of the Safavid period show a far more unitary development than in any other period of Iranian art. The Safavid Empire was one of the most significant ruling dynasties of Iran. They ruled one of the greatest Persian empires, with artistic accomplishments, since the Muslim conquest of Persia. The Safavid dynasty had its roots in a"} +{"qid": "test2436", "pid": "9019719", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"History of Odisha\"\npenance. Mahapadma Nanda the ruler of Magadha is presumed to have conquered Kalinga during his reign around c. 350 BCE. The Hathigumpha inscriptions mentions the suzerainty of the Nandas in the Kalinga region. The inscriptions also mention irrigation projects undertaken by the Nanda kings in the state during their reign. In Asurgarh, beads and punched coins belonging to an unknown king dating to the pre-Mauryan period have been discovered. \"\"Further Information: Ashoka and Kalinga War\"\" Ashoka of the Mauryan dynasty conquered Kalinga in the bloody Kalinga War in 261 BCE which was the 8th year of his reign. According to"} +{"qid": "test2436", "pid": "3809350", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Kalinga (historical region)\"\nThe Hathigumpha inscription suggests that a king named Nandaraja had excavated an aqueduct there in the past. Assuming that Nandaraja refers to a king of the Nanda dynasty, it appears that Kalinga region was annexed by the Nandas at some point. It appears to have become independent again after the fall of the Nandas. It is described as \"\"Calingae\"\" in Megasthenes' \"\"Indica\"\" (3rd century BCE): Kalinga was annexed by the Mauryan emperor Ashoka in the 3rd century BCE. The headquarters of the Mauryan province of Kalinga was located at Tosali. After the decline of the Mauryan Empire, the region came"} +{"qid": "test2436", "pid": "3407370", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Bhubaneswar\nalthough the areas in and around the city have a history going back to 1st century BCE or earlier. Dhauli, near Bhubaneswar was the site of the Kalinga War (c. 262-261 BCE), in which the Mauryan emperor Ashoka invaded and annexed Kalinga. One of the most complete edicts of the Mauryan Emperor, Ashoka, dating from between 272–236 BCE, remains carved in rock to the southwest of the modern city. After the decline of the Mauryan empire, the area came under the rule of Mahameghavahana dynasty, whose most well-known rule is Kharavela. His Hathigumpha inscription is located at the Udayagiri and"} +{"qid": "test2436", "pid": "14471658", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Chandragupta (board game)\"\nnon-monarchial states. Many such states, quasi-democratic oligarchies as well as republics, had been weakened by the wars with Alexander, and that weakness made possible the eventual hegemony of the Mauryan Empire. Thus, the Mauryans had always kept a wary eye on Kalinga. A large and fiercely independent \"\"saņgha\"\" (republic), Kalinga had been originally conquered by Ugrasena Nanda, but regained its independence during the rule of Sahalya, and remained so until the reign of Ashoka Maurya. Eight years after his anointment, Ashoka marched on Kalinga. On a battlefield near the village of Dhauli the Kalingan army was defeated. Records affirm that"} +{"qid": "test2436", "pid": "7156201", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Vengi\nVengi king, Rajaraja Narendra, the great epic, \"\"Mahabharata\"\" was translated partly by his court poet, Nannaya. Vengi The Vengi (or Venginadu) is a region spread over the mandals of Godavari and Krishna districts. The capital city of Vengi is located at Pedavegi near Eluru. This area was part of Kalinga until that kingdom was conquered by Emperor Ashoka of the Mauryan Empire in the mid-3rd century BC. After the Mauryan Empire collapsed in 185 BC, the region was dominated by the Satavahanas, who were succeeded in Vengi by the Andhra Ikshvakus. Around 300 AD, the Andhra Ikshvakus were replaced by"} +{"qid": "test2436", "pid": "7053428", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Kharavela\nsome other scholars deny this interpretation. According to Bhagwan Lal, the calculation of 165 years starts from the 8th year of Ashoka's reign, when the Kalinga War resulted in Mauryan conquest of Kalinga. Based on this, Bhagwan Lal concludes that Kharavela was born in 127 BCE, and became the king in 103 BCE. Sudhakar Chattopadhyaya argues that the 16th line doesn't mention \"\"Maurya kala\"\" (Maurya era); instead it reads \"\"Mukhya kala\"\" (\"\"the main era\"\"). He relies on the description of Kharavela's 5th regnal year in the Hathigumpha inscription. According to him, this record implies that Kharavela flourished \"\" ti-vasa-sata\"\" years"} +{"qid": "test2436", "pid": "2776947", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Greco-Buddhism\nChandragupta would then defeat the Seleucid Empire during the Seleucid-Mauryan War. This resulted in the transfer of the Macedonian satraps in the Indus Valley and Gandhara to the Mauryan Empire. Furthermore, a marriage alliance was enacted which granted Seleucus's daughter as Chandragupta's wife for diplomatic relations. The conflict additionally led to the transfer of 500 war elephants to the Seleucid Empire from the Mauryan Empire, presumably as expenses of lives lost and damages sustained. The Mauryan Emperor Ashoka established the largest Indian empire. Following the destructive Kalinga War, Ashoka converted to Buddhism. Abandoning an expansionist agenda, Ashoka would adopt humanitarian"} +{"qid": "test2436", "pid": "10690549", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Sources of ancient Tamil history\"\nNadu and Kerala. Most of them are written in Tamil-Brahmi script and are found in rocks or on pottery. The information obtained from such inscriptions have been used to corroborate some of the details provided by the Sangam literature. The 2nd and 13th rock edicts of Ashoka (273–232 BCE) refers to the Pandyas, Cholas, Cheras and the Satiyaputras. According to the edicts, these kingdoms lay outside the southern boundary of the Mauryan Empire. The Hathigumpha inscription of the Kalinga King, Kharavela, (c. 150 BCE) refers to the arrival of a tribute of jewels and elephants from the Pandyan king. It"} +{"qid": "test2436", "pid": "1859115", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Odisha\nplaces in the region, implying an early settlement by humans. Kalinga has been mentioned in ancient texts like \"\"Mahabharata\"\", \"\"Vayu Purana\"\" and \"\"Mahagovinda Suttanta\"\". The Sabar people of Odisha have also been mentioned in the Mahabharata. Baudhayana mentions Kalinga as not yet being influenced by Vedic traditions, implying it followed mostly tribal traditions. Ashoka of the Mauryan dynasty conquered Kalinga in the bloody Kalinga War in 261 BCE, which was the eighth year of his reign. According to his own edicts, in that war about 100,000 people were killed, 150,000 were captured and more were affected. The resulting bloodshed and"} +{"qid": "test2436", "pid": "8791829", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Mauryan art\"\nMauryan art Mauryan art encompasses the arts produced during the period of the Mauryan Empire (4th to 2nd century BCE), which was the first empire to rule over most of the Indian subcontinent. It represented an important transition in Indian art from use of wood to stone. It was a royal art patronized by Mauryan kings especially Ashoka. Pillars, Stupas, caves are the most prominent examples. According to Niharranjan Ray, the sum total of the Mauryan treasury of art include the remains of the royal palace and the city of Pataliputra, a monolithic rail at Sarnath, the \"\"Bodhimandala\"\" or the"} +{"qid": "test2436", "pid": "8791845", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Mauryan art\"\nto date. Many centuries later, the paintings of the Ajanta Caves, the oldest significant body of Indian painting, show there was a well-developed tradition, which may well stretch back to Mauryan times. Mauryan art Mauryan art encompasses the arts produced during the period of the Mauryan Empire (4th to 2nd century BCE), which was the first empire to rule over most of the Indian subcontinent. It represented an important transition in Indian art from use of wood to stone. It was a royal art patronized by Mauryan kings especially Ashoka. Pillars, Stupas, caves are the most prominent examples. According to"} +{"qid": "test2436", "pid": "15085892", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Maritime history of Odisha\"\nduring a civil war in Magadha around 320 BC, but around 261 BC was conquered by the Maurya emperor Ashoka (269 BC to 232 BC). The site at Sisupalagarh, occupied from the 3rd century BC to the 4th century AD, has been identified with Tosali, the provincial capital of Ashoka, and with Kalinganagari, the capital city of Kalinga after it regained independence from Mauryan empire early in the 1st century BC during the reign of Kharavela. The history of the following centuries is complex. At times the north and south of Kalinga were separate states, at times united. Sometimes Kalinga"} +{"qid": "test2436", "pid": "9019720", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"History of Odisha\"\nhis own edicts, the war about 1,000,000 people were killed, 1,500,000 were captured and several more were affected. The resulting bloodshed and suffering of the war deeply affected Ashoka. He turned into a pacifist and converted to Buddhism. The Kalingans had used personnel from the \"\"Atavika\"\" region, which was in the west of Kalinga, during the war. According to his edicts, Ashoka conquered the coastal region of Kalinga but didn't try to conquer the \"\"Atavika\"\" region. The Mauryans governed the Kalinga region as a province. They used Tosali as the regional capital and judiciary center. A \"\"kumara\"\" (viceroy) ruled from"} +{"qid": "test2436", "pid": "7053427", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Kharavela\nreign. The inscription is badly mutilated: out of its 17 lines, only four are completely legible. Therefore, it is open to multiple interpretations, and has given rise to different speculations by different scholars. The kingdom of Kalinga had been annexed by the Mauryan empire Ashoka around 262-261 BCE. Kalinga seems to have regained independence soon after Ashoka's death, and Kharavela was born in an independent Kalinga. Bhagwan Lal and some other scholars believe that the 16th line of the Hathigumpha inscription (which describes the 13th year of Kharavela's reign) contains a reference to 165th year after the Maurya era. However,"} +{"qid": "test2436", "pid": "2047586", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Tamils\nin Tamil Sangam literature and grammatical works like Tolkappiyar refers to them as the \"\"Three Glorified by Heaven\"\", (). Later, they are mentioned in the Mauryan Empire's Pillars of Ashoka (inscribed 273–232 BCE) inscriptions, among the kingdoms, which though not subject to Ashoka, were on friendly and allied terms with him. The king of Kalinga, Kharavela, who ruled around 150 BCE, is mentioned in the famous Hathigumpha inscription of the confederacy of the Tamil kingdoms that had existed for over 100 years. The Cholas, Pandyas, Cheras, and Pallavas were followers of Hinduism, though for a short while some of them"} +{"qid": "test2436", "pid": "2875397", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Maurya Empire\"\nMauryan Rule. Chandragupta and Samprati are credited for the spread of Jainism in South India. Hundreds of thousands of temples and stupas are said to have been erected during their reigns. Magadha, the centre of the empire, was also the birthplace of Buddhism. Ashoka initially practised Hinduism but later embraced Buddhism; following the Kalinga War, he renounced expansionism and aggression, and the harsher injunctions of the \"\"Arthashastra\"\" on the use of force, intensive policing, and ruthless measures for tax collection and against rebels. Ashoka sent a mission led by his son Mahinda and daughter Sanghamitta to Sri Lanka, whose king"} +{"qid": "test2436", "pid": "2095485", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Nellore\nof Kalinga Empire, Vijayanagara Empire, Arcot Nawabs and other dynasties. Nellore existed from the times of the Cholas ruled by Rajendra Chola I under Tanjavur Mauryan empire and was ruled by Ashoka in the 3rd century B.C. Nellore was conquered by the Rulers of the Pallava Dynasty and it was under their till the 6th century AD, subsequently the Chola rulers ruled Nellore for a long period of time. The Telugu Cholas met their decline in the 13th Century.Tamil inscriptions indicate that it formed part of Chola kingdom till their decline in the thirteenth century AD It later became a"} +{"qid": "test2436", "pid": "7156195", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Vengi\nVengi The Vengi (or Venginadu) is a region spread over the mandals of Godavari and Krishna districts. The capital city of Vengi is located at Pedavegi near Eluru. This area was part of Kalinga until that kingdom was conquered by Emperor Ashoka of the Mauryan Empire in the mid-3rd century BC. After the Mauryan Empire collapsed in 185 BC, the region was dominated by the Satavahanas, who were succeeded in Vengi by the Andhra Ikshvakus. Around 300 AD, the Andhra Ikshvakus were replaced by the Salankayanas, who were vassals of the Pallavas of Southern India. In the late 5th century,"} +{"qid": "test2436", "pid": "3378378", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Indo-Greek Kingdom\"\n(masters and slaves). In addition to the worship of the Classical pantheon of the Greek deities found on their coins (Zeus, Herakles, Athena, Apollo...), the Indo-Greeks were involved with local faiths, particularly with Buddhism, but also with Hinduism and Zoroastrianism. Chandragupta Maurya, the founder of the Mauryan Empire, conquered the Greek satraps left by Alexander, which belonged to Seleucus I Nicator of the Seleucid Empire. The Mauryan Emperor Ashoka would then establish the largest empire in the Indian Subcontinent through an aggressive expansion. Ashoka converted to Buddhism following the destructive Kalinga War, abandoning further conquests in favor of humanitarian reforms."} +{"qid": "test2436", "pid": "11205317", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Jaugada\nJaugada Jaugada (\"\"Jaugarh\"\", ancient Samapa]) is a ruined fortress in the Ganjam district in Odisha, India. Jaugada lies 35 km north-west of Berhampur and 160 km south-west of Bhubaneshwar. Once a provincial Mauryan fortified capital of the newly conquered province of Kalinga, Jaugada is famed by its version of the monumental stone-cut edicts in Prakrit of the Mauryan emperor Ashoka. Despite J.D. Beglar's description during the later 19th century of the extant fortification towers and moat (\"\"The walls had towers, also of earth, at each of the four corners, and also on each flank of each of the eight entrances\"\"),"} +{"qid": "test2436", "pid": "1859112", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "Odisha\nmost widely spoken language, spoken by 60 million according to the 2016 Census. The ancient kingdom of Kalinga, which was invaded by the Mauryan emperor Ashoka in 261 BCE resulting in the Kalinga War, coincides with the borders of modern-day Odisha. The modern state of Odisha was established on 1 April 1936, as a province in British India, and consisted predominantly of Odia-speaking regions. April 1 is celebrated as Odisha Day (Utkala Dibasa) . The region is also known as Utkala and is mentioned in India's national anthem, \"\"Jana Gana Mana\"\". Cuttack was made the capital of the region by"} +{"qid": "test2436", "pid": "8016702", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Buddhist art\"\nCE in Northern India, with the Bimaran casket. The three main centers of creation have been identified as Gandhara in today’s North West Frontier Province, in Pakistan, Amaravati and the region of Mathura, in central northern India. Hellenistic culture was introduced in Gandhara during the conquests of Alexander the Great in 332 BCE. Chandragupta Maurya (reign: 321–298 BCE), founder of the Mauryan Empire, conquered the Macedonian satraps during the Seleucid-Mauryan War of 305–303 BCE. Chandragupta's grandson Ashoka (reign: 268-232 BCE), who formed the largest Empire in the Indian subcontinent, converted to Buddhism following the Kalinga War. Abandoning an expansionist ideology,"} +{"qid": "test2436", "pid": "12869431", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"Taratarini Temple\"\nwar around 2300 years ago by Mauryan Emperor Ashoka, strengthened the grip of Buddhists in this part of India. The then Sampa was hardly 7 km from Tara Tarini Hill Shrine. So, scholars believe that Tara Tarini was worshiped as the principal deity (Ista-Devi) of the mighty Kalinga Empire. After Ashoka conquered Kalinga scholars found it a famous centre of Buddhism. The region of Ganjam near the bank of river Rushikulya was an active Buddhist site as shown from the Special Rock Edicts of Ashoka found at Jaugada at a distance of 4 km from Tara-Tarini Hill Shrine. The name"} +{"qid": "test2436", "pid": "6009345", "query": "the king of kalinga in the mauryan period was", "answer": "Ashoka", "passage": "\"History of Bihar\"\nspreading of Buddhist ideals into Sri Lanka and South-East Asia. The \"\"Lion Capital of Ashoka\"\" at Sarnath, is the emblem of India. Archaeologically, the period of Mauryan rule in South Asia falls into the era of Northern Black Polished Ware (NBPW). The \"\"Arthashastra\"\", the Edicts of Ashoka and Ashokavadana are primary sources of written records of the Mauryan times. Ashoka was followed for 50 years by a succession of weaker kings. Brihadrata, the last ruler of the Mauryan dynasty, held territories that had shrunk considerably from the time of emperor Ashoka, although he still upheld the Buddhist faith. The Shunga"} +{"qid": "test2438", "pid": "5588549", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Anthony Inglis (conductor)\"\ncalled \"\"Night Intruder\"\". His paternal grandfather, Air Commodore E. L. Howard-Williams was a major in the army, before joining the fledgling Royal Flying Corps, the precursor to the RAF. His uncle, Wing Commander Peter Howard-Williams DFC was in 19 Squadron flying out of Duxford during 1940 and flew in The Battle of Britain, and therefore was one of The Few. His maternal grandfather was Air Vice-Marshal F. F. Inglis CB CBE and head of RAF Intelligence during WW2 and on Adolf Hitler's hit list for after the war should Germany have won. He was sent to America by Winston Churchill"} +{"qid": "test2438", "pid": "3005820", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Military history of New Zealand during World War II\"\npilots such as the first RAF ace of WW2, Flying Officer Cobber Kain, Alan Deere, whose \"\"Nine Lives\"\" was one of the first post war accounts of combat, and leaders such as World War I ace, Air Chief Marshal Sir Keith Park, who commanded 11 Group, responsible for the defence of London in the Battle of Britain, the air defence of Malta and in the closing stages of the war, the RAF in South East Asia. Through accident or design, several RAF units came to be mostly manned by RNZAF pilots (for example No. 243 Squadron RAF in Singapore, No."} +{"qid": "test2438", "pid": "17960066", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Hubert Raymond Allen\"\npar excellence', pointing out that the idea that a small number of young pilots had alone prevented a German invasion is something that historians have long disputed. What Battle of Britain accounts have lacked, they argued, is a more holistic approach that sees the campaign as one in which all three services had played a crucial role. Allen's \"\"Who Won the Battle of Britain\"\" and his articles were a step in this direction. Both \"\"The Legacy of Lord Trenchard\"\" and \"\"Who Won the Battle of Britain\"\" show signs of having been influenced by the former war correspondent and Sunday Times"} +{"qid": "test2438", "pid": "6837702", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Great Britain at the Olympics\"\nOlympics. However, the 1944 games were cancelled due to WW2. \"\"This table excludes seven medals – one gold, two silver, and four bronze – awarded in the 1908 and 1920 figure skating events.\"\" \"\"This table includes seven medals – one gold, two silver, and four bronze – awarded in the 1908 and 1920 figure skating events.\"\" This list also contains the medals won in winter sports at the 1908 and 1920 Summer Olympics. Great Britain's only stripped medal in Olympic history was an Alpine Skiing bronze at the 2002 Winter Olympics in Salt Lake City. Alain Baxter tested positive for"} +{"qid": "test2438", "pid": "8503645", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"National Anti-Vivisection Society\"\nLord Dowding Fund for Humane Research. The Fund was named after Lord Dowding, the Air Chief Marshal and Battle of Britain WW2 hero. After the war, Lord Dowding became President of the NAVS and in the House of Lords made many impassioned speeches on animal experiments. His wife Lady Dowding was also an NAVS Council member (later becoming President after her husband’s death). This new strategy was to make positive steps to replace the use of animals in research, and to show that animal research is not necessary for medical and scientific progress. The Lord Dowding Fund continues to be"} +{"qid": "test2438", "pid": "14118711", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Wood End Park Academy\"\nWood End Park Academy Wood End Park Academy is a primary school with academy status in Hayes, Hillingdon. It is part of the Park Federation Academy Trust, along with Cranford Park Academy. Wood End Park Junior Mixed and Infants school was opened in 1930. During World War II, dogfights from the Battle of Britain could be seen from the school's playing fields.The schools big hill in the ks1 playground that children love playing on used to be a ww2 bunker. The bunker has now been removed since the end of the war it is just a hill that students love"} +{"qid": "test2438", "pid": "13735301", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Bournemouth Air Festival\"\nAugust and Sunday 1 September. \"\"The main display line up was:\"\" Thursday only - Rv8tors; Swordfish WW2 Bomber Not Thursday - AAC Lynx Helicopter; B17 Flying Fortress 'Sally B'; RAF Chinook Saturday and Sunday only - De' Havilland Vampire; Gloster Meteor Sunday only - Avro Vulcan XH558 Friday and Sunday only - RAF Typhoon Not Sunday - Red Arrows All Days etc. - Battle of Britain Memorial Flight; Gerald Cooper Aerobatics (Sbach 300); Hawker Hunter 'Miss Demeanour'; Hawker Hunter and De' Havilland Sea Vixen flypasts; Jet Provest; Patrouille Reva; RAF Tucano; RAF Tutor; Royal Navy Lynx Helicopter; Royal Navy Merlin"} +{"qid": "test2438", "pid": "11776345", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Battle of Britain Memorial, Capel-le-Ferne\"\nof a Hawker Hurricane and Supermarine Spitfire and the Christopher Foxley-Norris Memorial Wall, on which appears the names of the almost 3,000 fighter aircrew who flew in the Battle. In October 2010 HRH The Duchess of Cornwall unveiled a bust of Air Chief Marshal Sir Keith Park by sculptor Will Davies at the site. The new visitor centre, called \"\"The Wing\"\" and built in the shape of a Spitfire wing, was opened in 2015, and contains \"\"The Scramble Experience.\"\" It won 'Project of the Year' at the 2016 Kent Design and Development awards. Battle of Britain Memorial, Capel-le-Ferne The Battle"} +{"qid": "test2438", "pid": "20309771", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"International Confederation of Fullbore Rifle Associations\"\naround the outbreak of WW2. The match was revived in the modern era in 1966 in Canada, and continues between teams from around the world. The PALMA bolt action rifles are 7.62mm NATO caliber (Winchester .308) and fire Match Grade ammunition using a 155 grain bullet using micrometer aperture (iron) sights. The last two International Long-range Target Rifle Matches were held in Australia in 2011 and the U.S. in 2015, were won by Great Britain. F-Class was started in Canada by the late George \"\"Farky\"\" Farquharson after whom the class is named. In the United States, J.J. Conway is considered"} +{"qid": "test2438", "pid": "17004056", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Possible results of a German victory at the Battle of Britain\"\nbeing the American Civil War). Such writings express ideas of what the world would be like had the Axis powers of Germany, Italy and Japan won World War II. Possible results of a German victory at the Battle of Britain There is much speculation on the possible results of a German victory at the Battle of Britain including how the war might have progressed if the Germans had achieved their objective of suppressing the British air defences. The Battle of Britain (German: \"\"Luftschlacht um England\"\" or \"\"Luftschlacht um Großbritannien\"\", literally \"\"Air battle for England\"\" or \"\"Air battle for Great Britain\"\")"} +{"qid": "test2438", "pid": "17960065", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Hubert Raymond Allen\"\nDunkirk evacuation – Operation Dynamo. Even with a Luftwaffe victory in the air, neither Holland nor Cumming believes it likely that Operation Sea Lion would have succeeded if launched. The press heavily criticised three historians from the Joint Services Staff Command College, who were portrayed in a History magazine and the national press as supporting the idea that the Royal Navy won the Battle of Britain. In Britain, at least, questions surrounding the role of the RAF in the Battle of Britain remain sensitive. These historians later argued that this media coverage of their opinions was a 'silly season story"} +{"qid": "test2438", "pid": "7488663", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Results of the War of 1812\"\nThe Royal Navy was acutely conscious that the United States Navy had won single-ship duels during the war, even though they had no strategic effect. Particular attention was given these battles because American propaganda had projected them as battles of equal force, when actually the only single ship duel where the forces were equal was the Battle of Boston Harbor which the British won. Furthermore, Britain had effectively won the war on the ocean as almost the entire US Navy was blockaded and unable to fight. British honor was restored when the USS \"\"President\"\" was captured and taken to Britain"} +{"qid": "test2438", "pid": "17960067", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Hubert Raymond Allen\"\nDefence Correspondent David Divine, another fierce critic of the air establishment. However, even Divine did not question the RAF's role and performance in the Battle of Britain as Allen did. Francis Mason criticised Allen's \"\"Who Won the Battle of Britain\"\" for displaying 'a bland ignorance of aircraft design' regarding the problems of fitting heavy calibre 0.5' machine guns to a Spitfire and 'ignoring the atmosphere of national parsimony in which successive air ministers and air staff members fought to provide any air defence at all.' Mason implied that Allen's criticism of the recently deceased Fighter Command chief, Air Marshal Sir"} +{"qid": "test2438", "pid": "13359231", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Fred Longstaff\"\nthe Battle of the Somme, France. Longstaff won a cap for England while at Huddersfield in 1914 against Wales, and won caps for Great Britain while at Huddersfield in 1914 against Australia, and New Zealand. Fred Longstaff Fred Longstaff (birth registered third ¼ 1890 – 22 July 1916) was an English professional rugby league footballer who played in the 1910s. He played at representative level for Great Britain and England, and at club level for Halifax and Huddersfield, as a , i.e. number 11 or 12, during the era of contested scrums. He was a member of Huddersfield's 1914/15 'Team"} +{"qid": "test2438", "pid": "5387836", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Austin Champ\"\nDoctor Who. In the 1970, US film \"\"Sole Survivor\"\" Champs are used by the US Air Force during the investigation into a military WW2 crash landing in Libya. A Champ is featured throughout the video for the song \"\"Reward\"\" by English post-punk/neo-psychedelic band The Teardrop Explodes. The song reached no. 6 in the UK single charts in January 1981. A champ was featured in a 60s TV prog \"\"Big Breadwinner Hog\"\" A die cast model of the vehicle was made by Britains to approximately 1:32 scale, and a more widely produced version by Meccano as part of the Dinky range"} +{"qid": "test2438", "pid": "16530228", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Margarete Schlegel\"\nsame time, her husband was added to Hitler's so-called Black Book, the death list of opponents of the Third Reich who would be arrested upon the anticipated Nazi occupation of Britain after Operation Sea Lion. Also in 1938 her husband's former family residence and marital home in Tiergarten, \"\"Villa Kabrun\"\", was seized by the Nazis for use as the foreign embassy of the Kingdom of Yugoslavia in the putative \"\"world capital\"\", Germania. After arriving in England, she became a featured soprano on BBC Radio in operas and operettas by Offenbach, Lehar and Horton in the late 1930s. During WW2 she"} +{"qid": "test2438", "pid": "15484252", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Closed cinemas in Kingston upon Hull\"\nNational Picture Theatre is the last surviving ruin of a blitzed civilian building left standing in Britain. Its cultural significance as a building of particular national importance & special interest was marked in 2007 by a grade II listing, thus protecting it as a memorial for future generations. There is a campaign by the National Civilian WW2 Memorial Trust, to have the remains of the Cinema and the adjoining \"\"Swan Inn\"\" developed into a memorial and tribute to all those who endured the Blitz during the Second World War. Closed cinemas in Kingston upon Hull In 1898 William Morton's Theatre"} +{"qid": "test2438", "pid": "6704096", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Tamil diaspora\"\nindependent Tamil merchant guilds such as the Nagarathar also left for these areas in an age old tradition of their ancestors who had traded in these areas for the last 2,000 years. Britain also hired many Sri Lankan Tamils as clerical and other white collar workers, especially in Malaysia and Singapore. All these different streams have combined to create vibrant Tamil communities in these countries. Also many Tamils from India and Sri Lanka migrated to Crown colony of Singapore and British Malaya as labours, army clerks and merchants. During and after the devastating WW2 a large number of Tamils and"} +{"qid": "test2438", "pid": "685041", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Battle of Britain\"\nbattle: one at Hawkinge in Kent and one at Stanmore in London, at the former RAF Bentley Priory. In 2015 the RAF created an online 'Battle of Britain 75th Anniversary Commemorative Mosaic' composed of pictures of \"\"the few\"\" – the pilots and aircrew who fought in the battle – and \"\"the many\"\" – 'the often unsung others whose contribution during the Battle of Britain was also vital to the RAF's victory in the skies above Britain', submitted by participants and their families. The battle was the subject of the 1969 film \"\"Battle of Britain\"\". The cast included Laurence Olivier as"} +{"qid": "test2438", "pid": "685044", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Battle of Britain\"\n\"\"Battle for Britain\"\". \"\"The Few\"\", a novel by Alex Kershaw, tells the stories of the men who flew in the Battle of Britain. , a Hollywood film similarly named \"\"The Few\"\" was in preparation for release in 2008, based on the story of real-life US pilot Billy Fiske, who ignored his country's neutrality rules and volunteered for the RAF. A \"\"Variety\"\" magazine outline of the film's historical content was said in \"\"The Independent\"\" to have been described by Bill Bond, who conceived the Battle of Britain Monument in London, as \"\"Totally wrong. The whole bloody lot.\"\" The project was later"} +{"qid": "test2438", "pid": "5623775", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Battle of Britain Monument, London\"\nBattle of Britain Monument, London The Battle of Britain Monument in London is a sculpture on the Victoria Embankment, overlooking the River Thames, which commemorates the individuals who took part in the Battle of Britain during the Second World War. It was unveiled on 18 September 2005, the 65th anniversary of the Battle, by Prince Charles and Camilla, Duchess of Cornwall, in the presence of many of the surviving airmen known collectively as \"\"The Few\"\", following the Royal Air Force Service of Thanksgiving and Rededication on Battle of Britain Sunday. This service is an annual event, the first of which"} +{"qid": "test2438", "pid": "178012", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Roman Britain\"\nknown of his campaigns with scant archaeological evidence, but fragmentary historical sources suggest he reached the far north of Britain and won a major battle in early summer before returning south. He died in York in July 306 with his son Constantine I at his side. Constantine then successfully used Britain as the starting point of his march to the imperial throne, unlike the earlier usurper, Albinus. In the middle of the century, for a few years the province was loyal to the usurper Magnentius, who succeeded Constans following the latter's death. After the defeat and death of Magnentius in"} +{"qid": "test2438", "pid": "11776344", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Battle of Britain Memorial, Capel-le-Ferne\"\nBattle of Britain Memorial, Capel-le-Ferne The Battle of Britain Memorial is a monument to aircrew who flew in the Battle of Britain. It is sited on the White Cliffs at Capel-le-Ferne, near Folkestone, on the coast of Kent. It was initiated by the Battle of Britain Memorial Trust, and opened by the Queen Mother on 9 July 1993. It is formed of a large propeller-shaped base, with the figure of a seated pilot carved by Harry Gray sitting at the centre. The propeller shape has led the monument to be considered a hill figure. Also on the site are replicas"} +{"qid": "test2438", "pid": "9932359", "query": "who won the battle of britain in ww2", "answer": "Britain", "passage": "\"Henry Wills (writer)\"\nto photograph the demolition of a pill box. His inquiries led him to conclude that there were few official records of Britain’s wartime defences. After some further investigation and some publicity on radio and in newspapers, he planned and organised the first nationwide survey of Britain’s WW2 defences. With the help of many volunteers, more than 5,000 defence sites were recorded. The value of Henry Wills' work was acknowledged by the British Archaeological Trust and the British Broadcasting Corporation which awarded him the Chronicle Award in 1979. After 15 years of work, he published \"\"Pillboxes\"\" in 1985. Wills' work stimulated"} +{"qid": "test2439", "pid": "18685364", "query": "what type of economic system was utilized in the soviet union", "answer": "communism", "passage": "\"Nostalgia for the Soviet Union\"\n50 percent of Russia's population lamented its collapse, with the only exception to this being in the year 2012 when support for the Soviet Union dipped below 50 percent. A 2018 poll showed that 66% of Russians regretted the fall of the Soviet Union and communism. According to polls, what is missed most about the former Soviet Union was its shared economic system, which provided a modicum of financial stability. Neoliberal economic reforms after the fall of the USSR and the Eastern Bloc resulted in harsh living standards for the general population. Policies associated with privatization allowed of the country's"} +{"qid": "test2439", "pid": "10040829", "query": "what type of economic system was utilized in the soviet union", "answer": "communism", "passage": "\"Polish October\"\ncommunism and the ruin of Soviet influence in the region as a whole. The Soviet Union was not worried solely about the political implications of reform but about the economic implications as well. Economically, the Soviet Union heavily invested in much of the Eastern Bloc and was striving for integration of its economies. The Soviet Union had financed Polish industry and was Poland's main trading partner. The Soviet Union directed what products Poland manufactured; the Soviets bought the products and exported goods to Poland no longer produced within the country itself. Due to this integration, any reform, whether political or"} +{"qid": "test2439", "pid": "296367", "query": "what type of economic system was utilized in the soviet union", "answer": "communism", "passage": "\"Nikolai Bukharin\"\nas being a founding member of the Soviet Academy of Arts and Sciences, and a keen botanist. His primary contributions to economics were his critique of marginal utility theory, his analysis of imperialism, and his writings on the transition to communism in the Soviet Union. His ideas, especially in economics and the question of market-socialism, later became highly influential in Chinese market-socialism and Deng Xiaoping's reforms. British author Martin Amis argues that Bukharin was perhaps the only major Bolshevik to acknowledge \"\"moral hesitation\"\" by questioning, even in passing, the violence and sweeping reforms of the early Soviet Union. Amis writes"} +{"qid": "test2439", "pid": "10586045", "query": "what type of economic system was utilized in the soviet union", "answer": "communism", "passage": "\"Moshe Lewin\"\n\"\"What makes the Russians tick?\"\" Lewin's final works attempted to analyze the rise of Mikhail Gorbachev, and his brief efforts at top-down reform of the communist system, and to set the rise and fall of Soviet communism in historical perspective. In his last book, \"\"The Soviet Century\"\" (2005), Lewin argued that the political and economic system of the former Soviet Union constituted a sort of \"\"bureaucratic absolutism\"\" akin to the Prussian bureaucratic monarchy of the 18th Century which had \"\"ceased to accomplish the task it had once been capable of performing\"\" and therefore given way. In 1992, Lewin was honored"} +{"qid": "test244", "pid": "8892094", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Joyce Vincent Wilson", "passage": "\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\ncovering the event described use of the tune as a protest song. Tie a Yellow Ribbon Round the Ole Oak Tree \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\" is a song by Tony Orlando and Dawn. It was written by Irwin Levine and L. Russell Brown and produced by Hank Medress and Dave Appell, with Motown/Stax backing vocalist Telma Hopkins, Joyce Vincent Wilson and her sister Pamela Vincent on backing vocals. It was a worldwide hit for the group in 1973. The single reached the top 10 in ten countries, in eight of which it topped the charts."} +{"qid": "test244", "pid": "8892085", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Joyce Vincent Wilson", "passage": "\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\nTie a Yellow Ribbon Round the Ole Oak Tree \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\" is a song by Tony Orlando and Dawn. It was written by Irwin Levine and L. Russell Brown and produced by Hank Medress and Dave Appell, with Motown/Stax backing vocalist Telma Hopkins, Joyce Vincent Wilson and her sister Pamela Vincent on backing vocals. It was a worldwide hit for the group in 1973. The single reached the top 10 in ten countries, in eight of which it topped the charts. It reached number one on both the US and UK charts for"} +{"qid": "test244", "pid": "8851261", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Tony Orlando and Dawn", "passage": "\"Yellow Ribbon Project\"\nLtd (ISCOS), Singapore After-Care Association (SACA) and Singapore Anti-Narcotics Association (SANA). The inspiration behind the Yellow Ribbon Project was taken from the 70s song, \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\", sung by Tony Orlando and Dawn, which is in turn based on the true story published in a 1971 article in The New York Post. Almost nine in 10 Singaporeans are able to identify the aims of the initiative according to a survey conducted by the Yellow Ribbon Project organisers. Beyond awareness, the Yellow Ribbon Project also actively encourages employers and volunteers to offer second chances to"} +{"qid": "test244", "pid": "2794206", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Tony Orlando and Dawn", "passage": "\"Yellow ribbon\"\nuses the white ribbon as a sign of forgiveness, and cites the story as the precursor to the tradition of the yellow ribbon for welcome home and forgiveness: The symbol became widely known in civilian life in the 1970s. It was the central theme of the popular song \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\", Written by Irwin Levine and L. Russell Brown and recorded by Tony Orlando and Dawn (among many others), as the sign a released prisoner requested from his wife or lover to indicate that she would welcome him home. He would be able to"} +{"qid": "test244", "pid": "9540381", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Joyce Vincent Wilson", "passage": "\"Joyce Vincent Wilson\"\nan actual backing group to tour and record with. Wilson and Telma Hopkins became the fully embodied Dawn. The popular 1970s group later had their own successful television program (\"\"Tony Orlando and Dawn\"\"), and Wilson was featured on hit singles like \"\"He Don't Love You (Like I Love You)\"\", \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\" and \"\"Mornin' Beautiful\"\". Wilson continues singing, usually with her sister Pamela Vincent. Wilson was offered a chance to replace original Supremes member Mary Wilson in the Supremes, with members Scherrie Payne and Susaye Greene, before Motown determined that the group should not"} +{"qid": "test244", "pid": "3479119", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Tony Orlando and Dawn", "passage": "\"Tony Orlando\"\nand when the song became an international number-one hit, he began to use his name in the group becoming \"\"Dawn featuring Tony Orlando\"\" and then \"\"Tony Orlando and Dawn\"\". The group had 19 other top 40 hits, including \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\", the top-selling hit of 1973 and one of the biggest selling singles of all time. The group also had a hit variety program, \"\"The Tony Orlando and Dawn Show\"\" on CBS from 1973 to 1977. They then broke up in 1978. In 1993 he opened the Tony Orlando Yellow Ribbon Music Theatre in"} +{"qid": "test244", "pid": "12631378", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Tony Orlando and Dawn", "passage": "\"Johnny Carver (musician)\"\nHang Up.\"\" In 1972, he moved to ABC and had a major country hit with a version of Tony Orlando and Dawn's \"\"Tie A Yellow Ribbon 'Round the Ole Oak Tree.\"\" A string of Top 40 country hits followed over the next five years, including the Top Tens \"\"You Really Haven't Changed\"\" (1973), \"\"Don't Tell (That Sweet Old Lady of Mine)\"\" (1974), and another country cover of a pop hit, the Starland Vocal Band's \"\"Afternoon Delight\"\" (1976). Carver's last Top 40 hit was 1977's \"\"Living Next Door to Alice\"\", and his final charting single was a 1981 cover of ABBA's"} +{"qid": "test244", "pid": "15869622", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Tony Orlando and Dawn", "passage": "\"Irwin Levine\"\nIrwin Levine Irwin Jesse Levine (March 23, 1938 – January 21, 1997) was an American songwriter, who co-wrote the song \"\"Tie a Yellow Ribbon Round the Ole Oak Tree\"\" with L. Russell Brown. The song was a worldwide hit for Tony Orlando and Dawn as it reached number one on both the US and UK charts for four weeks in April 1973 and number one on the Australian charts for seven weeks from May to July 1973. It was the top-selling single in 1973 in both the US and UK. In 2008, \"\"Billboard\"\" ranked the song as the 37th biggest"} +{"qid": "test244", "pid": "19248054", "query": "who sings tie a yellow ribbon around the old oak tree", "answer": "Tony Orlando and Dawn", "passage": "\"Tony Orlando and Dawn (TV series)\"\nOrlando') released another single in 1973, and it almost immediately became their next No. 1 single — \"\"Tie a Yellow Ribbon 'Round the Ole Oak Tree.\"\" In terms of sales, this single was the most successful in the group's career, starting a string of seven consecutive Hot 100 appearances with long titles by the group. The group's next single, \"\"Say, Has Anybody Seen My Sweet Gypsy Rose\"\" (from their concept album \"\"Dawn's New Ragtime Follies\"\"), went to No. 3 on the Hot 100, followed by similarly flavored top 40 hits \"\"Who's In The Strawberry Patch With Sally\"\" (the first single"} +{"qid": "test2440", "pid": "17508845", "query": "when was the last time michigan won the championship", "answer": "1989", "passage": "\"Randy Erskine\"\nwinner of the MPGA Match Play. He was inducted into the University of Michigan Athletic Hall of Honor in 1989 and the Michigan Golf Hall of Fame in 1991. Randy Erskine Randy Erskine (born July 8, 1948) is an American professional golfer. He played as an amateur at the University of Michigan and won the 1970 Big Ten Conference championship. He turned professional in 1973 and won the Michigan Open five times between 1976 and 1985. He also won the 1978 Michigan PGA Championship, finished fifth at the 1977 Buick Open, and won the 2011 Michigan Senior PGA Championship. Erskine"} +{"qid": "test2440", "pid": "20110827", "query": "when was the last time michigan won the championship", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship in 2016. Villanova defeated Michigan, 79–62. Donte DiVincenzo, a reserve player, scored 31 points for Villanova, and was named the"} +{"qid": "test2441", "pid": "1604720", "query": "what is the function of a political action committee (pac)", "answer": "pools campaign contributions from members", "passage": "\"Political action committee\"\nPolitical action committee In the United States and Canada, a political action committee (PAC) is an organization that pools campaign contributions from members and donates those funds to campaigns for or against candidates, ballot initiatives, or legislation. The legal term PAC has been created in pursuit of campaign finance reform in the United States. This term is quite specific to all activities of campaign finance in the United States. Democracies of other countries use different terms for the units of campaign spending or spending on political competition (see political finance). At the U.S. federal level, an organization becomes a PAC"} +{"qid": "test2442", "pid": "6979939", "query": "what river is associated with the city of rome", "answer": "Tiber", "passage": "\"Codex Alera\"\nFrance and Belgium), the Tiber River (from the main watercourse of the city of Rome), the city of Aquitaine (from the province of Gaul compromising Novempopulania and Gascony), the city of Phrygia (from a kingdom in the west central part of Anatolia, in what is now Turkey), and the city of Rhodes (from a Greek island southwest of Turkey in eastern Aegean Sea). Some of the names appropriated for Aleran geography are borrowed from Roman mythology, though the gods themselves did not survive. The city of Ceres shares its name with the Roman goddess of agriculture, and Placida was a"} +{"qid": "test2442", "pid": "4063656", "query": "what river is associated with the city of rome", "answer": "Tiber", "passage": "Velletri\nFurius Camillus, after defeating a force of Gauls which had encamped near Rome, captured the town, which surrendered without a struggle. In 340 BC the Latin cities federated in the Latin League, which had been an ally of the Romans, rebelled in what had been called the Latin War (340-338 BC). They were joined by the Campanians, the Volsci and the Roman colonies of Signa and Velitrae. After two years of fighting Rome defeated the rebels. Velitrae was punished harshly. Her walls were demolished. Her senators were exiled beyond the River Tiber (that, is, they were interned in a foreign"} +{"qid": "test2442", "pid": "343507", "query": "what river is associated with the city of rome", "answer": "Tiber", "passage": "Rome\nregion of central Italy on the Tiber () river. The original settlement developed on hills that faced onto a ford beside the Tiber Island, the only natural ford of the river in this area. The Rome of the Kings was built on seven hills: the Aventine Hill, the Caelian Hill, the Capitoline Hill, the Esquiline Hill, the Palatine Hill, the Quirinal Hill, and the Viminal Hill. Modern Rome is also crossed by another river, the Aniene, which flows into the Tiber north of the historic centre. Although the city centre is about inland from the Tyrrhenian Sea, the city territory"} +{"qid": "test2442", "pid": "20234139", "query": "what river is associated with the city of rome", "answer": "The Tiber", "passage": "\"Statue of the Tiber river with Romulus and Remus\"\nStatue of the Tiber river with Romulus and Remus The Statue of the Tiber river with Romulus and Remus is a large statue of the ancient Rome exhibited at the Louvre museum (Paris, France). It is an allegory of the Tiber River that waters the city of Rome. The Tiber is depicted as a middle-aged man, bearded, and half lying, according to the patterns of typical representation of the gods-river. He holds the attributes signifying the benefits he lavishes to Rome: At the foot of the statue lies the she-wolf breastfeeding the twins Romulus and Remus, who had been abandoned"} +{"qid": "test2442", "pid": "10079761", "query": "what river is associated with the city of rome", "answer": "The Tiber", "passage": "\"Mount Fumaiolo\"\nof Rome\"\"), to mark the association of the Fascist regime with the ancient Roman empire. A Roman eagle stands on the top of the column, and three wolf heads holding a ring in their mouths are visible on the sides. In its first kilometers the river Tiber runs in Emilia Romagna, then it enters in , in Tuscany, before crossing the Umbria region and the Lazio region and Rome. After 405 kilometers, the river Tiber pours its waters into the Tirreno sea. The Tiber is the third Italian river by length (after the rivers Po and Adige), and the second"} +{"qid": "test2442", "pid": "16956223", "query": "what river is associated with the city of rome", "answer": "Tiber", "passage": "\"Portico of Pompey\"\nthat occupied what were the galleries and arcades. As the ground level rose from constant flooding from the Tiber River, much of the original architectural elements were re-used by shop owners to adhorn their structures at higher levels. Today, many of these shops still exist and fragments of the old theatre and porticus can be seen embedded in the ancient walls of many of the buildings. The ancient city of Rome was designed with covered walkways, public gardens as well as large pools and fountains that were common by the 1ST century AD. Citizens would stroll throughout the city under"} +{"qid": "test2443", "pid": "11291652", "query": "what's the highest point in the us", "answer": "Mount Whitney", "passage": "\"U.S. Route 395 in California\"\nPaiutes before European settlement. Formerly a fertile lake and valley, Owens Lake and the southern portion of the valley are now dry. Water from the valley is channeled for use by the City of Los Angeles, via the Los Angeles Aqueduct, in what is commonly called the California Water Wars. Along the shores of Owens Lake, the highway passes by Cartago and Olancha. Just north of the lake is Lone Pine. Lone Pine is noted as an access for both the highest point in the contiguous United States, Mount Whitney, and the lowest point in North America, Death Valley. Both"} +{"qid": "test2444", "pid": "15133249", "query": "where did they film season 8 of the walking dead", "answer": "Georgia", "passage": "\"The Walking Dead (season 1)\"\non June 2. The first season was filmed in and around Atlanta, Georgia where the episodes were primarily set. The first season features seven actors receiving opening credits billing: The series features several actors \"\"Walking Dead\"\" developer Frank Darabont has worked with previously, including Laurie Holden, Jeffrey DeMunn, Melissa McBride and Juan Pareja. All four appeared in his 2007 film \"\"The Mist\"\", along Samuel Witwer, who appeared as a dying soldier, and with Thomas Jane, who originally was set to star in the series when it was pitched to HBO. It was wanted to be Rick Grimes. He is also"} +{"qid": "test2445", "pid": "11707037", "query": "how long do former presidents get secret service protection", "answer": "lifetime", "passage": "\"Former Presidents Act\"\nliving former presidents: Herbert Hoover and Harry S. Truman. Dwight D. Eisenhower was the first president to fall under the act upon leaving office. The original act provided for lifetime Secret Service protection for former presidents. In 1997, it was reduced to 10 years for presidents taking office after 1997. The 1997 amendment was reverted by the \"\"Former Presidents Protection Act of 2012\"\" (). All living former presidents and their spouses after Dwight D. Eisenhower are now entitled to receive lifetime Secret Service protection. By law, former presidents are entitled to a pension, staff and office expenses, medical care or"} +{"qid": "test2445", "pid": "11707040", "query": "how long do former presidents get secret service protection", "answer": "lifetime protection", "passage": "\"Former Presidents Act\"\nhealth insurance under the Federal Employees Health Benefits Program; a GSA legal opinion ruled Jimmy Carter ineligible. Former presidents were entitled from 1965 to 1996 to lifetime Secret Service protection, for themselves, spouses, and children under 16. A 1994 statute, (), limited post-presidential protection to ten years for presidents inaugurated after January 1, 1997. Under this statute, Bill Clinton would still be entitled to lifetime protection, and all subsequent presidents would have been entitled to ten years' protection. On January 10, 2013, President Barack Obama signed the Former Presidents Protection Act of 2012, reinstating lifetime Secret Service protection for his"} +{"qid": "test2445", "pid": "11707041", "query": "how long do former presidents get secret service protection", "answer": "lifetime", "passage": "\"Former Presidents Act\"\npredecessor George W. Bush, himself, and all subsequent presidents. Richard Nixon relinquished his Secret Service protection in 1985, the only president to do so. Former presidents are entitled to a Diplomatic Passport. This includes personal travel with this passport. Former Presidents Act The Former Presidents Act (known also as FPA; 3 U.S.C. § 102) is a 1958 U.S. federal law that provides several lifetime benefits to former presidents of the United States who have not been . Before 1958, the U.S. federal government provided no pension or other retirement benefits to former United States presidents. Andrew Carnegie offered to endow"} +{"qid": "test2445", "pid": "687320", "query": "how long do former presidents get secret service protection", "answer": "lifetime protection", "passage": "\"United States Secret Service\"\nIn 1968, as a result of Robert F. Kennedy's assassination, Congress authorized protection of major presidential and vice presidential candidates and nominees. In 1965 and 1968, Congress also authorized lifetime protection of the spouses of deceased presidents unless they remarry and of the children of former presidents until age 16. The Secret Service Presidential Protective Division safeguards the President of the United States and his immediate family. They work with other federal, state, and local law enforcement agencies and the military to safeguard the President when he travels in Air Force One, Marine One and by limousine in motorcades. Although"} +{"qid": "test2445", "pid": "100716", "query": "how long do former presidents get secret service protection", "answer": "lifetime", "passage": "\"Dwight D. Eisenhower\"\nfor re-election to a third term. Eisenhower was also the first outgoing President to come under the protection of the Former Presidents Act; two living former Presidents, Herbert Hoover and Harry S. Truman, left office before the Act was passed. Under the act, Eisenhower was entitled to receive a lifetime pension, state-provided staff and a Secret Service detail. In the 1960 election to choose his successor, Eisenhower endorsed Nixon over Democrat John F. Kennedy. He told friends, \"\"I will do almost anything to avoid turning my chair and country over to Kennedy.\"\" He actively campaigned for Nixon in the final"} +{"qid": "test2445", "pid": "322386", "query": "how long do former presidents get secret service protection", "answer": "lifetime", "passage": "\"President of the United States\"\nyears from the date a president leaves office. On January 10, 2013, President Obama signed legislation reinstating lifetime secret service protection for him, George W. Bush, and all subsequent presidents. A spouse who remarries is no longer eligible for secret service protection. Some presidents have had significant careers after leaving office. Prominent examples include William Howard Taft's tenure as Chief Justice of the United States and Herbert Hoover's work on government reorganization after World War II. Grover Cleveland, whose bid for reelection failed in 1888, was elected president again four years later in 1892. Two former presidents served in Congress"} +{"qid": "test2445", "pid": "11707038", "query": "how long do former presidents get secret service protection", "answer": "lifetime", "passage": "\"Former Presidents Act\"\nhealth insurance, and Secret Service protection. The Secretary of the Treasury pays a taxable pension to the president. Former presidents receive a pension equal to the pay that the head of an executive department (Executive Level I) would be paid; , it is $207,800 per year. The pension begins immediately after a president's departure from office. A former president's spouse may also be paid a lifetime annual pension of $20,000 if they relinquish any other statutory pension. Transition funding for the expenses of leaving office is available for seven months. It covers office space, staff compensation, communications services, and printing"} +{"qid": "test2445", "pid": "1610511", "query": "how long do former presidents get secret service protection", "answer": "lifetime protection", "passage": "Presidency\nthe House passes a majority vote to impeach the president, the Senate then conducts the trial to remove them from office. If a president is found guilty, he is removed from office and replaced by the vice president for the remainder of the term. If the president is acquitted in court, he will continue to serve the rest of their term as president. For former presidents who had entered office before January 1, 1997 are entitled to lifetime protection carried out by The Secret Service. Protection of the president's spouse is also granted until death or in the case of"} +{"qid": "test2446", "pid": "127531", "query": "who is the girl that died in eyes wide shut", "answer": "Mandy", "passage": "\"Eyes Wide Shut\"\na Hungarian man named Sandor Szavost attempts to seduce Alice, two young models attempt the same with Bill. He is interrupted by his host who had been having sex with Mandy, a young woman who has overdosed on a speedball. Mandy recovers with Bill's aid. The following evening at home, while smoking marijuana, Alice asks him if he had sex with the two girls and Bill reassures her that he had not. She inquires if he is jealous of men who are attracted to her. He thinks women are more faithful than men. She tells him of a fantasy she"} +{"qid": "test2446", "pid": "127535", "query": "who is the girl that died in eyes wide shut", "answer": "Mandy", "passage": "\"Eyes Wide Shut\"\nhotel, the desk clerk tells Bill that a bruised and frightened Nick checked out a few hours earlier after returning with two large, dangerous-looking men. Bill goes to return the costume, but not the mask, which he has misplaced, and learns Milich has sold his daughter into prostitution. After reading a newspaper story about a beauty queen who died of a drug overdose, Bill views the body at the morgue and identifies it as Mandy. Bill is summoned to Ziegler's house, where Ziegler discloses he was one of those involved with the ritual orgy, and identified Bill and his connection"} +{"qid": "test2448", "pid": "17771467", "query": "how many episodes of season 5 of curse of oak island", "answer": "18", "passage": "\"The Curse of Oak Island\"\nInc. approved $1,271,546 in film funding for the production of the 4th season. In October 2017, a fifth season was announced, which began airing on November 7, 2017. Season 6 began airing November 13, 2018. The Curse of Oak Island The Curse of Oak Island is an active reality television series that first premiered in Canada on the History network on January 5, 2014. The show features what is known as the Oak Island mystery, showing efforts to search for historical artifacts and treasure. \"\"The Curse of Oak Island\"\" follows brothers Marty and Rick Lagina, originally from Kingsford, Michigan, through"} +{"qid": "test2448", "pid": "388602", "query": "how many episodes of season 5 of curse of oak island", "answer": "18", "passage": "Seinfeld\n\"\"The New Adventures of Old Christine\"\" led many to believe that she had broken the curse. In her acceptance speech, Louis-Dreyfus held up her award and exclaimed, \"\"I'm not somebody who really believes in curses, but curse this, baby!\"\" The show was on the air for five seasons starting March 13, 2006 before its cancellation on May 18, 2010; the series produced enough episodes to air in reruns in syndication for several years, something the other shows didn't achieve. The \"\"Saturday Night Live\"\" episode guest-hosted by Louis-Dreyfus made references to the curse. Louis-Dreyfus went on to win six further Lead"} +{"qid": "test2448", "pid": "20011611", "query": "how many episodes of season 5 of curse of oak island", "answer": "18", "passage": "\"Ganga (2017 TV series)\"\nThe show completed its 400th episode on 24 April 2018. It is a story is spun around Ganga's curse upon the unwed maidens of the village, Kannikapuram. How will Abhirami (Piyali P. Munsi), the lead protagonist save the village from the curse and thereby marry the man she loves. Shiva and Gowri After married how do they live together? Season 1 Series is a Supernatural Fantasy Thriller story produced by Home Movie Makers under the banner Home Movie Makers Pvt.Ltd that airs on Sun TV. Actress Piyali P. Munsi was selected to portray the lead role of Abirami, This is"} +{"qid": "test2448", "pid": "14528327", "query": "how many episodes of season 5 of curse of oak island", "answer": "18", "passage": "\"Montezuma's treasure\"\ntreasure. Newspapers as far back as 1895 have published accounts of people who have claimed to have found this lost treasure. The myth and superstitions about a curse on the treasure are sensationalized in a 2014 television program \"\"Myth Hunters, Raiders of the Lost Past: Season 2, Episode 8, The Curse of Montezuma's Gold (YouTube)\"\" which includes interviews of many family members of treasure hunters. IMBD episode details The treasure is the basis for an episode of Wagon Train entitled The Alexander Portlass Story Montezuma's treasure Montezuma's treasure is a legendary buried treasure said to be located in the Casa"} +{"qid": "test2448", "pid": "15567561", "query": "how many episodes of season 5 of curse of oak island", "answer": "18", "passage": "\"Supernatural (season 7)\"\nfor season eight. Warner Home Video released the season on DVD and Blu-ray in Region 1 on September 18, 2012, in region 2 on November 5, 2012, and in Region 4 on October 31, 2012. The seventh season had an average viewership of 1.73 million U.S. viewers. In this table, the number in the first column refers to the episode's number within the entire series, whereas the number in the second column indicates the episode's number within this particular season. \"\"U.S. viewers in millions\"\" refers to how many Americans watched the episode live or on the day of broadcast. "} +{"qid": "test2449", "pid": "456929", "query": "what is a whistle blower suit under the false claims act", "answer": "qui tam", "passage": "Whistleblower\nsimplify its adoption for secure whistleblowing. In 2016, the rock band Thrice released a song titled \"\"Whistleblower\"\" off of the album \"\"To Be Everywhere Is to Be Nowhere\"\". The song is written from the perspective of Snowden. In July 2018, CBS will debut a new reality television show entitled \"\"Whistleblower\"\", hosted by lawyer, former judge and police officer Alex Ferrer which will cover qui tam suits under the False Claims Act against companies that have allegedly defrauded the federal government. Whistleblower A whistleblower (also written as whistle-blower or whistle blower) is a person who exposes any kind of information or"} +{"qid": "test2449", "pid": "154177", "query": "what is a whistle blower suit under the false claims act", "answer": "qui tam", "passage": "\"False Claims Act\"\nhimself\"\") In a \"\"qui tam\"\" action, the citizen filing suit is called a \"\"relator\"\". As an exception to the general legal rule of standing, courts have held that \"\"qui tam\"\" relators are \"\"partially assigned\"\" a portion of the government's legal injury, thereby allowing relators to proceed with their suits. U.S. Senator Jacob M. Howard, who sponsored the legislation, justified giving rewards to whistle blowers, many of whom had engaged in unethical activities themselves. He said, \"\"I have based the [\"\"qui tam\"\" provision] upon the old-fashioned idea of holding out a temptation, and ‘setting a rogue to catch a rogue,’ which"} +{"qid": "test2449", "pid": "3114608", "query": "what is a whistle blower suit under the false claims act", "answer": "qui tam", "passage": "Valdecoxib\n$1 billion of the fine was paid to resolve allegations under the civil False Claims Act case and is the largest civil fraud settlement against a pharmaceutical company. Six whistle-blowers were awarded more than $102 million for their role in the investigation. Former Pfizer sales representative John Kopchinski acted as a qui tam relator and filed a complaint in 2004 outlining the illegal conduct in the marketing of Bextra. Kopchinski was awarded $51.5 million for his role in the case because the improper marketing of Bextra was the largest piece of the settlement at $1.8 billion. Several HPLC-UV methods have"} +{"qid": "test2449", "pid": "154172", "query": "what is a whistle blower suit under the false claims act", "answer": "qui tam", "passage": "\"False Claims Act\"\nFalse Claims Act The False Claims Act, also called the \"\"Lincoln Law\"\" is an American federal law that imposes liability on persons and companies (typically federal contractors) who defraud governmental programs. It is the federal Government's primary litigation tool in combating fraud against the Government. The law includes a \"\"qui tam\"\" provision that allows people who are not affiliated with the government, called \"\"relators\"\" under the law, to file actions on behalf of the government (informally called \"\"whistleblowing\"\" especially when the relator is employed by the organization accused in the suit). Persons filing under the Act stand to receive a"} +{"qid": "test2449", "pid": "154191", "query": "what is a whistle blower suit under the false claims act", "answer": "qui tam", "passage": "\"False Claims Act\"\nthe Court's decision and made the types of fraud to which the False Claims Act applies more explicit. In a 2009 case, \"\"United States ex rel. Eisenstein v. City of New York\"\", the United States Supreme Court considered whether, when the government declines to intervene or otherwise actively participate in a \"\"qui tam\"\" action under the False Claims Act, the United States is a \"\"party\"\" to the suit for purposes of Federal Rule of Appellate Procedure 4(a)(1)(A) (which requires that a notice of appeal in a federal civil action generally be filed within 30 days after entry of a judgment"} +{"qid": "test2450", "pid": "5834288", "query": "who won the first medal in olympics for india", "answer": "Norman Pritchard", "passage": "\"Khashaba Dadasaheb Jadhav\"\nKhashaba Dadasaheb Jadhav Khashaba Dadasaheb Jadhav January 15, 1926 – August 14, 1984) was an Indian athlete. He is best known as a wrestler who won a bronze medal at the 1952 Summer Olympics in Helsinki. He was one of the first athletes from India to win a medal in the Olympics After Norman Pritchard who won two silver medals in athletics in 1900, Khashaba was the first individual athlete from India to win a medal at the Olympics. In the years before Khashaba, India would only win gold medals in field hockey, a team sport. He is the only"} +{"qid": "test2450", "pid": "12612979", "query": "who won the first medal in olympics for india", "answer": "Norman Pritchard", "passage": "\"Sport in India\"\nand out of funds. Following is a list of international sports events held in India: A single athlete, Norman Pritchard, represented India in the 1900 Olympics, winning two silver medals. India sent its first national team to the Olympics in 1920, and has participated in every Summer Olympic Games ever since. India has also competed at several Winter Olympic Games since 1964. India has won a total of 26 Olympic medals. India won its first gold medal in men's field hockey in the 1928 Olympic Games. Abhinav Bindra became the first Indian to win an individual gold medal at the"} +{"qid": "test2450", "pid": "6846866", "query": "who won the first medal in olympics for india", "answer": "Norman Pritchard", "passage": "\"India at the Olympics\"\nIndia at the Olympics India first participated at the Olympic Games in 1900, with a lone athlete (Norman Pritchard) winning two medals- both silver- in athletics. The nation first sent a team to the Summer Olympic Games in 1920, and has participated in every Summer Games since then. India has also competed at several Winter Olympic Games beginning in 1964. Indian athletes have won a total of 28 medals so far, all at the Summer Games. For a period of time, India national field hockey team was dominant in Olympic competition, winning eleven medals in twelve Olympics between 1920 and"} +{"qid": "test2450", "pid": "6846872", "query": "who won the first medal in olympics for india", "answer": "Norman Pritchard", "passage": "\"India at the Olympics\"\nbest for the country with a total of six medals. Wrestler Sushil Kumar became the first Indian with multiple individual Olympic medals (bronze at the 2008 Beijing Olympics and silver at the 2012 Summer Olympics) since Norman Pritchard in 1900. Saina Nehwal won bronze medal in badminton in Women's singles getting the country's first Olympic medal in badminton. Pugilist Mary Kom became the first Indian woman to win a medal in boxing with her bronze medal finish in Women's flyweight. At the 2016 Summer Olympics, a record number of 118 athletes competed. Sakshi Malik became the first Indian woman wrestler"} +{"qid": "test2450", "pid": "11758194", "query": "who won the first medal in olympics for india", "answer": "Norman Pritchard", "passage": "\"India at the 2008 Summer Olympics\"\ntwo bronze medals), surpassing the two silvers by Norman Pritchard in 1900 Paris Olympics and the gold and bronze medals won by the Indian field hockey team and Khashaba Dadasaheb Jadhav respectively, at the 1952 Helsinki Olympics. India at the 2008 Summer Olympics India competed at the 2008 Summer Olympics in Beijing, People's Republic of China. India was represented by the Indian Olympic Association (IOA). A contingent of 57 athletes in 12 sports represented India, and had a support-staff of 42 officials. For the first time since 1928, the men's national field hockey team was unable to take part in"} +{"qid": "test2451", "pid": "6804631", "query": "where did the northernmost land action of the american civil war occur", "answer": "St. Albans, Vermont", "passage": "\"St. Albans Raid\"\nSt. Albans Raid The St. Albans Raid was the northernmost land action of the American Civil War. It was a controversial raid from Canada by Confederate soldiers who had recently failed in engagements with the Union Army and evaded subsequent capture in the United States. Meant to rob banks to raise money, and to trick the Union Army into diverting troops to defend their northern border against further raids, it took place in St. Albans, Vermont, on October 19, 1864. In this wartime incident, Kentuckian Bennett H. Young led the Confederate army forces. Young had been captured after the Battle"} +{"qid": "test2451", "pid": "8494137", "query": "where did the northernmost land action of the american civil war occur", "answer": "St. Albans, Vermont", "passage": "\"Vermont in the American Civil War\"\nwhich was one of 32 brigades on the Union side. Vermont fielded three companies of sharpshooters, which served with Hiram Berdan in the two U.S. Sharpshooter regiments. The 1st Vermont Cavalry regiment participated in more than 70 engagements. After the St. Albans raid on October 19, 1864, Vermont fielded two companies of Frontier Cavalry, who spent six months on the Canada–US border to prevent further incursions from Confederate raiders. Sixty-four Vermonters received the Medal of Honor, including Willie Johnston, the youngest person ever to receive the award. St. Albans, Vermont, is the site of the northernmost land action in the"} +{"qid": "test2452", "pid": "3436458", "query": "what has been the origin of most classical dances of india", "answer": "Natya Shastra", "passage": "\"Arts and entertainment in India\"\nTamil Nadu (400 BC). The Natya Shastra is the most important ancient treatise on classical Indian dance. It is also called the fifth Veda in reference to the foundation of Hindu religion and philosophy, from which sprang the related South Indian musical tradition of Carnatic music. Its various current forms include Bharatanatyam, Odissi, Manipuri, Kathakali, Kuchipudi, Mohiniaattam, Kathak and Sattriya. Bharatanatyam is a classical dance form originating in Tamil Nadu. It is thought to have been created by Bharata Muni. In ancient times Bharatanatyam was performed by mandir (Hindu temple) Devadasis. Many of the ancient sculptures in Hindu temples are"} +{"qid": "test2452", "pid": "4643024", "query": "what has been the origin of most classical dances of india", "answer": "Natya Shastra", "passage": "\"Dance in India\"\nDance in India Dance in India comprises numerous styles of dances, generally classified as classical or folk. As with other aspects of Indian culture, different forms of dances originated in different parts of India, developed according to the local traditions and also imbibed elements from other parts of the country. Sangeet Natya Academy, the national academy for performing arts in India, recognizes eight traditional dances as Indian classical dances, while other sources and scholars recognize more. These have roots in the Sanskrit text \"\"Natya Shastra\"\", and the religious performance arts of Hinduism. Folk dances are numerous in number and style"} +{"qid": "test2452", "pid": "4643030", "query": "what has been the origin of most classical dances of india", "answer": "Natya Shastra", "passage": "\"Dance in India\"\nhis text systematically presents to times before him, ultimately to Brahma who created Natya-veda by taking the word from the Rigveda, melody from the Samaveda, mime from the Yajurveda, and emotion from the Atharvaveda. The first complete compilation of \"\"Natya Shastra\"\" is dated to between 200 BCE and 200 CE, but estimates vary between 500 BCE and 500 CE. The most studied version of the Natya Shastra text consists of about 6000 verses structured into 36 chapters. The classical dances are rooted in \"\"Natya Shastra\"\". India has a number of classical Indian dance forms, each of which can be traced"} +{"qid": "test2452", "pid": "3790566", "query": "what has been the origin of most classical dances of india", "answer": "Natya Shastra", "passage": "\"Indian classical dance\"\nare traditionally regional, all of them include music and recitation in local language or Sanskrit, and they represent a unity of core ideas in a diversity of styles, costumes and expression. Indian classical dance is made from India and classical dance is played by various actors. The \"\"Natya Shastra\"\" is the foundational treatise for classical dances of India, and this text is attributed to the ancient scholar Bharata Muni. Its first complete compilation is dated to between 200 BCE and 200 CE, but estimates vary between 500 BCE and 500 CE. The most studied version of the Natya Shastra text"} +{"qid": "test2453", "pid": "15283927", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Prince's Flag\"\nwith an orange pennant, which has remained the custom in the Netherlands. Whether the Prince's Flag or the red-white-blue flag should be the national flag was left undecided, although the Prince of Orange, later King William I, preferred the latter. In the 1930s, the supporters of the National Socialist Movement in the Netherlands (NSB) chose the orange-white-blue and the Prince's Flag as their symbol. Queen Wilhelmina in 1937 signed a Royal Decree that the colors red, white and blue are set as the official colors of the Dutch flag, partly as a signal directed at the NSB. The Prince's Flag"} +{"qid": "test2453", "pid": "2022647", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Pan-Slavic colors\"\nPan-Slavic colors The Pan-Slavic colors — red, blue and white — were defined by the Prague Slavic Congress, 1848, based on the flag of Russia, which was introduced in the late 17th century. The tricolor flag of Russia was itself inspired by the flag of the Netherlands. Historically, many Slavic nations and states adopted flags and other national symbols that used some combination of those three colors, but rarely all three of them. List of Slavic countries that use or have used the colors include: Russia, Yugoslavia, Czechoslovakia, Czech Republic, Montenegro, Slovakia, Croatia, Serbia and Slovenia. On the other hand,"} +{"qid": "test2453", "pid": "9580607", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Dutch national flag problem\"\nDutch national flag problem The Dutch national flag problem (DNF) is a computer science programming problem proposed by Edsger Dijkstra. The flag of the Netherlands consists of three colors: red, white and blue. Given balls of these three colors arranged randomly in a line (the actual number of balls does not matter), the task is to arrange them such that all balls of the same color are together and their collective color groups are in the correct order. The solution to this problem is of interest for designing sorting algorithms; in particular, variants of the quicksort algorithm that must be"} +{"qid": "test2453", "pid": "795229", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of the Netherlands\"\nflags in these colors is found in the ordonnances of the Admiralty of Zeeland, dated 1587, i.e. shortly after William's death. The orange-white-blue flag continued to be flown as well and in later times would serve as the basis for the former South African flag. It is also the basis for the flags of New York City and Albany, New York. The 400th anniversary of the introduction of the Prince's Flag was commemorated in the Netherlands by the issue of a postage stamp in 1972. After about 1630, the orange band was often replaced by a red one, as indicated"} +{"qid": "test2453", "pid": "17631307", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Carnival in the Netherlands\"\nthe Rhenish Carnaval. In Den Bosch for example, the traditional carnaval colors are red, white and yellow. These colors are the combined colors of the catholic church (white and yellow), and the Brabantian flag (red and white). A flag with these colors is already seen on the painting The Fight Between Carnival and Lent by Pieter Bruegel in 1559, 's-Hertogenbosch. Tilburg uses green and orange as carnaval colors, Eindhoven has orange and sky blue and Breda uses red and orange. Nijmegen officially uses red and black. Helmond has a different color each year, but is also known for the colors"} +{"qid": "test2453", "pid": "795225", "query": "what are the colors of the netherlands flag", "answer": "red", "passage": "\"Flag of the Netherlands\"\nof Orange. The orange dye was particularly unstable and tended to turn red after a while, so in the mid-17th century, red was made the official color. The flag has flown since then, but was confirmed by Royal Decree only in 1937, at the same time the color parameters were exactly defined. As the first revolutionary flag, it has had a seminal influence throughout the world, particularly on the Pan-Slavic colors of Russia. Until about 1800, in the case of both the orange- and the red-striped versions, the number of stripes and their order frequently varied. At the end of"} +{"qid": "test2453", "pid": "9580611", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Dutch national flag problem\"\nexaminations. The following pseudocode for three-way partitioning assumes zero-based array indexing. It uses three indices , and , maintaining the invariant that . holds the boundary of numbers greater than . is the position of number under consideration. And is the boundary for the numbers lesser than the . Note that will be greater than only if the is hit. Dutch national flag problem The Dutch national flag problem (DNF) is a computer science programming problem proposed by Edsger Dijkstra. The flag of the Netherlands consists of three colors: red, white and blue. Given balls of these three colors arranged"} +{"qid": "test2453", "pid": "5596244", "query": "what are the colors of the netherlands flag", "answer": "red", "passage": "\"Principality of Orange\"\nthe New York Mets, the New York Knicks, and the New York Islanders. It is also a team color of the San Francisco Giants, which was a New York team until 1957. The color orange is still the national color of the modern Kingdom of the Netherlands. The Dutch flag originally had an orange stripe instead of a red, and today an orange pennant is still flown above the flag on Koningsdag. Dutch national sports teams usually compete in orange, and a wide variety of orange-colored items are displayed by Dutch people on occasions of national pride or festivity. The"} +{"qid": "test2453", "pid": "6285268", "query": "what are the colors of the netherlands flag", "answer": "white", "passage": "\"Flag Day in Mexico\"\nwas based in three principles: \"\"Religion, Independence and Unity\"\", which were represented on the flag's colors. On this same date, Jose Magdaleno Ocampo tailored the first three color flag for what would soon be an independent Mexico. This flag, commonly known as the \"\"Pendon Trigarante\"\", had the colors: white, green and red in that order, arranged diagonally with three eight-point gold stars, one on the center of each color banner. When the Pledge is recited, it is customary to salute the flag with the raised arm Bellamy Salute while speaking. When the flag is being paraded, the arm is held"} +{"qid": "test2453", "pid": "11944111", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of New Holland\"\nFlag of New Holland The Flag of New Holland, also known as the Flag of Dutch Brazil, was the flag used by the Dutch West India Company for the territories that were under its control in Brazil from 1630 until 1654. The flag consists of three horizontal stripes in the colors of the flag of the Republic of the Seven United Netherlands (red, white and blue) and it displays a monogram on the central stripe and a crown on the upper stripe, both gold-coloured. The origin of the monogram as well as its initials and its meaning is not known."} +{"qid": "test2453", "pid": "11944112", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of New Holland\"\nFlag of New Holland The Flag of New Holland, also known as the Flag of Dutch Brazil, was the flag used by the Dutch West India Company for the territories that were under its control in Brazil from 1630 until 1654. The flag consists of three horizontal stripes in the colors of the flag of the Republic of the Seven United Netherlands (red, white and blue) and it displays a monogram on the central stripe and a crown on the upper stripe, both gold-coloured. The origin of the monogram as well as its initials and its meaning is not known."} +{"qid": "test2453", "pid": "2725113", "query": "what are the colors of the netherlands flag", "answer": "red", "passage": "\"Flag of Maryland\"\nthe Maryland State Flag\"\" which, among other things, specifies the colors of the flag: 1.04. The red and yellow colors in the Maryland flag should conform to the following Pantone Matching System colors: Maryland is the only state in the union that has a specific guideline not only on how to display the flag but on what the flagpole should look like as well. In 1945, the Maryland General Assembly made a gold cross bottony the official ornament for the top of any flagpole carrying the state flag. Some time before October 10, 2007, Government House (the governor's mansion) in"} +{"qid": "test2453", "pid": "17935117", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "Statenvlag\nin 1937 signed a Royal Decree that the colors red, white and blue are set as the official colours of the Dutch flag, partly as a signal directed at the NSB. Statenvlag The Statenvlag (\"\"States Flag\"\") is the name of the flag of the States-General of the Dutch Republic, the red-white-blue tricolour flag replacing the older orange-white-blue Prince's Flag in the mid 17th century. The modern national flag of the Netherlands, officially introduced in 1937, is based on this historical flag. The origin of the red-white-blue tricolour is not entirely clear; some sources suggest that it developed merely as a"} +{"qid": "test2453", "pid": "795246", "query": "what are the colors of the netherlands flag", "answer": "white", "passage": "\"Flag of the Netherlands\"\nhuman rights support and is popularly flown on 1 December each year in defiance of Indonesian domestic laws. The flag consists of a red vertical band along the hoist side, with a white five-pointed star in the center. The flag was first raised on 1 December 1961 and used until the United Nations became the territory's administrator on 1 October 1962. The flags underneath are influenced by the Dutch flag in color use and design as a result of a shared history (as flags of former colonies) or economic relations, which is the case for the Russian flag. The Russian"} +{"qid": "test2453", "pid": "10041103", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of Amsterdam\"\nof a red-white-black horizontal tricolor. Such a design was already in use in the 17th century, but in Amsterdam history, other designs in the colors red, black and white were also used. Sometimes the three St. Andrew crosses were placed in the white orbit of the red-white-blue Dutch national flag. AFC Ajax, an Amsterdam-based football team who plays in the Dutch Eredivisie, uses the Amsterdam flag as their captain's armband. Flag of Amsterdam The flag of Amsterdam is the official flag for Amsterdam, the capital city of the Netherlands. The current design of the flag depicts three Saint Andrew's Crosses"} +{"qid": "test2453", "pid": "849823", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of Luxembourg\"\nlaw was passed regulating the flag of Luxembourg. The same law also prescribed ensign and roundel for aircraft and ships registered in Luxembourg. One important clarification brought by this law was that the color blue was defined as being a very bright blue, in contrast to the flag of the Netherlands (exactly the same design, but the Dutch flag uses dark blue and a less oblong shape). The heraldric blazon for the flag is \"\"per fess Gules and Azure, a fess Argent\"\". The red lion is the official ensign for ships registered in Luxembourg. It is used for river and"} +{"qid": "test2453", "pid": "795224", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of the Netherlands\"\na tricolor flag. The horizontal fesses are bands of equal size in the colors from top to bottom, red (officially described as a \"\"bright vermilion\"\"), white (silver), and blue (\"\"cobalt blue\"\"). The flag proportions (width:length) are 2:3. The first stadtholder of the Dutch Republic was William I of Orange, who joined with Dutch nationalists and led the struggle for independence from Spain. Partly out of respect for him, the first flag adopted by the Dutch was a horizontal tricolor of orange, white, and blue. It became known as the \"\"Prinsenvlag\"\" (\"\"Prince's flag\"\") and was based on the livery of William"} +{"qid": "test2453", "pid": "849634", "query": "what are the colors of the netherlands flag", "answer": "red", "passage": "\"Flag of Chile\"\nMapuche troops. The significances of these colors were equivalent to those of the \"\"Patria Vieja\"\", except that the yellow replaced the red to represent the blood that had been shed during the many conflicts. Despite initial enthusiasm, the flag did not obtain official legalization and disappeared five months later. One reason for its suppression was that it was easily confused with both the flag of the Netherlands and the tricolor of revolutionary France, from which it was inspired. According to the \"\"General History of Chile\"\" by Diego Barros Arana, the last time the Flag of the Transition was unfurled was"} +{"qid": "test2453", "pid": "9859640", "query": "what are the colors of the netherlands flag", "answer": "red", "passage": "\"Flagging (tape)\"\nFlagging (tape) Flagging is a colored non-adhesive tape used in marking objects. It is commonly made of PVC or vinyl, and wood fibre cellulose-based biodegradable flagging also exists. Flagging is used in surveying to mark grade levels, utility lines, survey stakes and other boundary markers. Surveyors frequently attach their flagging to wooden stakes or lathes, with writing on it. One side tends to have a long number which they reference in a log book. The other side tends to have abbreviations suggesting what the stake marks. Choice of color depends on many factors, and can include availability, and personal preference,"} +{"qid": "test2453", "pid": "2147649", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of Russia\"\nand bottom - red, with a width to length ratio of 2:3.\"\" The National Flag Day is an official holiday in Russia, established in 1994. It is celebrated on 22 August, the day of the victory over putschists in 1991, but employees remain at work. There are varying interpretations as of to what the colors on the Russian flag mean. The most popular is as follows: The white color symbolizes nobility and frankness, the blue for faithfulness, honesty, impeccability and chastity, and red for courage, generosity and love. Federal constitutional law of the Russian Federation only says that the colors"} +{"qid": "test2453", "pid": "2618447", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Front for the Liberation of the Enclave of Cabinda\"\nand two factions were created; FLEC-Renovada, whose flag was white with a central stripe divided into three colors (green, yellow and black, with a red ring in the center of the flag), and FLEC-Armed Forces of Cabinda (FLEC-FAC, Forças Armadas de Cabinda), using the original red, yellow, and blue flag, with emblem. Another group was created by Cabindese expatriates in the Netherlands in 1996, the Frente de Libertação do Estado de Cabinda\"\" (FLEC (Lopes), Liberation Front of the State of Cabinda). This group adopted a blue, yellow and black flag with the Silambuco monument in the center. In December 2002,"} +{"qid": "test2453", "pid": "9298034", "query": "what are the colors of the netherlands flag", "answer": "red", "passage": "\"Flag of the Natalia Republic\"\nRijksarchief in the Netherlands in 1953, shows a square flag. Flag of the Natalia Republic The flag of the Natalia Republic was the official flag of this short lived South African state, which existed from 1839 to 1843. Emigrant Boers ('voortrekkers') from the Cape Colony established an independent state in 1839, on territory conquered from the Zulus. They named it 'Natalia'. It is uncertain what flag – if any – they flew at first, but on 24 December 1839 they raised a new flag at Port Natal (now Durban. The same flag was raised in the capital, Pietermaritzburg, in January"} +{"qid": "test2453", "pid": "2478246", "query": "what are the colors of the netherlands flag", "answer": "white", "passage": "\"Flag of Tunisia\"\nflag. Article 4 of the 1959 constitution specifies the presence of a technical dossier containing a model of the flag, a guide to drawing it, which includes the proper measurements, and technical specifications of its colors. For the Tunisian embassy in France, the color red represents the blood of martyrs killed during the French conquest of Tunisia in 1881. However, the Tunisians invited the Turkish to liberate them from the Spanish invaders and from what was left of the Hafside dynasty. Another interpretation is that the \"\"red Beylical flag spread light throughout the Muslim world\"\". The white symbolizes peace, the"} +{"qid": "test2453", "pid": "6198610", "query": "what are the colors of the netherlands flag", "answer": "blue", "passage": "\"Flag of Bonaire\"\nFlag of Bonaire The flag of Bonaire has a large blue triangle in the lower right corner and a smaller yellow triangle in the upper left corner. It was adopted on 11 December 1981. The triangles are separated by a white strip, inside of which are a black compass and a red six-pointed star. The blue and yellow triangles represent the sea and sun respectively while the dividing white strip represents the sky. The colors red, white, and blue also show Bonaire's loyalty to the Kingdom of the Netherlands. The black compass represents the population of Bonaire who come from"} +{"qid": "test2456", "pid": "5869662", "query": "what are the first and second major religions in france", "answer": "Catholicism", "passage": "\"Religion in France\"\ninfluential Cluny Abbey. During the First French Empire (1804–1814), the Bourbon Restoration (1814–1830) and the following July Monarchy (1830–1848), Roman Catholicism was made again the state religion, and maintained its role as the \"\"de facto\"\" majority religion during the Second French Republic (1848–1852) and the Second French Empire (1852–1870). \"\"Laïcité\"\" (secularism), absolute neutrality of the state with respect to religious doctrines, was first established during the Third French Republic (1870–1940), codified with the 1905 Law on the Separation of Church and State, and remains the official policy of the contemporary French republic. In a 2016 study sponsored by two Catholic"} +{"qid": "test2456", "pid": "2146247", "query": "what are the first and second major religions in france", "answer": "Islam", "passage": "\"Islam in France\"\nIslam in France Islam is the second-most widely professed religion in France behind Catholic Christianity by number of worshippers. France has the largest number of Muslims in the Western world primarily due to migration from North African and Middle Eastern countries. According to , former Head of the Population Surveys Branch at INSEE and Director of INED (French National Institute for Demographic Research) between 1999 and 2009, about one eighth (12.5%) of the French population is of Muslim origin in 2017 (8.4 million). The majority of Muslims in France belong to the Sunni denomination. The vast majority of French Muslims"} +{"qid": "test2456", "pid": "5869619", "query": "what are the first and second major religions in france", "answer": "Catholicism", "passage": "\"Religion in France\"\nReligion in France Religion in France can attribute its diversity to the country's adherence to freedom of religion and freedom of thought, as guaranteed by the 1789 Declaration of the Rights of Man and of the Citizen. The Republic is based on the principle of \"\"laïcité\"\" (or \"\"freedom of conscience\"\") enforced by the 1880s Jules Ferry laws and the 1905 French law on the Separation of the Churches and the State. Catholicism, the religion of a now small majority of French people, is no longer the state religion that it was before the French Revolution, as well as throughout the"} +{"qid": "test2456", "pid": "5869620", "query": "what are the first and second major religions in france", "answer": "Islam", "passage": "\"Religion in France\"\nvarious, non-republican regimes of the 19th century (the Restoration, the July Monarchy and the Second French Empire). Major religions practised in France include the Catholic Church, Islam, various branches of Protestantism, Judaism, Buddhism, Hinduism, Russian Orthodoxy, Armenian Christianity, and Sikhism amongst others, making it a multiconfessional country. Sunday mass attendance has fallen to 5% for the Catholics, and the overall level of observance is considerably lower than in the past. According to a Eurobarometer survey conducted in 2010, 27% of French citizens responded that they \"\"believe there is a God\"\", 27% answered that they \"\"believe there is some sort of"} +{"qid": "test2456", "pid": "7212049", "query": "what are the first and second major religions in france", "answer": "Christianity", "passage": "\"Religion in Europe\"\nReligion in Europe Religion in Europe has been a major influence on today's society, art, culture, philosophy and law. The largest religion in Europe is Christianity, but irreligion and practical secularization are strong. Two countries in Southeastern Europe have Muslim majorities. Ancient European religions included veneration for deities such as Zeus. Modern revival movements of these religions include Heathenism, Rodnovery, Romuva, Druidry, Wicca, and others. Smaller religions include Indian religions, Judaism, and some East Asian religions, which are found in their largest groups in Britain, France, and Kalmykia. Little is known about the prehistoric religion of Neolithic Europe. Bronze and"} +{"qid": "test2456", "pid": "543652", "query": "what are the first and second major religions in france", "answer": "Catholicism", "passage": "\"Whigs (British political party)\"\nin the Parliament of England wished to exclude the Duke of York (who later became King James II) from the throne due to his Roman Catholicism, his favouring of monarchical absolutism, and his connections to France. They believed the heir presumptive, if allowed to inherit the throne, would endanger the Protestant religion, liberty and property. The first Exclusion Bill was supported by a substantial majority on its second reading in May 1679. In response, King Charles prorogued Parliament and then dissolved it, but the subsequent elections in August and September saw the Whigs' strength increase. This new parliament did not"} +{"qid": "test2457", "pid": "1276429", "query": "who played sandy's jock boyfriend in grease", "answer": "Lorenzo Lamas", "passage": "\"Grease (musical)\"\nDennis Cleveland Stewart. One prominent addition to the storyline is Craterface's pinks race against Greased Lightnin'. One of the jocks vying for Sandy's attention, again only mentioned briefly in the musical, appears on-screen, portrayed by Lorenzo Lamas. \"\"Grease\"\" was a major success for both Stigwood and Paramount Pictures, who re-released the film several times; the made international hits out of several of the songs. Paramount also produced a sequel \"\"Grease 2\"\", which had no involvement from Jacobs (who openly disapproved) or Casey and followed a younger class of students at Rydell High School. A few supporting characters (Frenchy, Eugene, Craterface"} +{"qid": "test2457", "pid": "2191034", "query": "who played sandy's jock boyfriend in grease", "answer": "John Travolta", "passage": "\"Grease (film)\"\nGrease (film) Grease is a 1978 American musical romantic comedy film based on the 1971 musical of the same name by Jim Jacobs and Warren Casey. Written by Bronte Woodard and directed by Randal Kleiser in his theatrical feature film debut, the film depicts the lives of greaser Danny Zuko and Australian transfer student Sandy Olsson who develop an attraction for each other. The film stars John Travolta as Danny, Olivia Newton-John as Sandy, and Stockard Channing as Betty Rizzo, a member of the Pink Ladies. Released on June 16, 1978, \"\"Grease\"\" was successful both critically and commercially. Its ended"} +{"qid": "test2457", "pid": "18192745", "query": "who played sandy's jock boyfriend in grease", "answer": "John Travolta", "passage": "\"Sandy (Grease song)\"\nPeru, with several different B-sides, including \"\"All Strung Out On You\"\", \"\"Can't Let You Go\"\", and (in the US) \"\"Greased Lightnin'\"\". Sandy (Grease song) \"\"Sandy\"\" is a song from the 1978 film \"\"Grease\"\", written by Louis St. Louis and Screamin' Scott Simon (of Sha Na Na), and performed by John Travolta, in character as Danny Zuko. It was released as a single in several countries, giving Travolta a no. 2 hit in the UK. \"\"Sandy\"\" was one of the songs written specifically for the film that was not in the original musical, which instead had a song named \"\"Alone at"} +{"qid": "test2457", "pid": "18192741", "query": "who played sandy's jock boyfriend in grease", "answer": "John Travolta", "passage": "\"Sandy (Grease song)\"\nSandy (Grease song) \"\"Sandy\"\" is a song from the 1978 film \"\"Grease\"\", written by Louis St. Louis and Screamin' Scott Simon (of Sha Na Na), and performed by John Travolta, in character as Danny Zuko. It was released as a single in several countries, giving Travolta a no. 2 hit in the UK. \"\"Sandy\"\" was one of the songs written specifically for the film that was not in the original musical, which instead had a song named \"\"Alone at a Drive-In Movie\"\" at that point in the story. (Beginning with the 2003 stage production, some productions of the musical now"} +{"qid": "test2457", "pid": "640086", "query": "who played sandy's jock boyfriend in grease", "answer": "John Travolta", "passage": "\"Olivia Newton-John\"\nShe was offered the lead role of Sandy after meeting producer Allan Carr at a dinner party at Helen Reddy's home. Burned by her \"\"Toomorrow\"\" experience and concerned that she was too old to play a high school senior (she turned 29 during \"\"Grease\"\"s 1977 filming), Newton-John insisted on a screen test with the film's co-star, John Travolta. The film accommodated Newton-John's Australian accent by recasting her character from the play's original American Sandy Dumbrowski to Sandy Olsson, an Australian who holidays and then moves with her family to the U.S. Newton-John previewed some of the film's soundtrack during her"} +{"qid": "test2458", "pid": "20143074", "query": "who won the fountain of youth stakes at gulfstream park", "answer": "Gunnevera", "passage": "\"Irish War Cry\"\nStakes at Laurel Park Racecourse. Irish War Cry began his three-year-old season in February at Gulfstream Park, where he was ridden by Joel Rosario and won the Holy Bull Stakes by a solid length margin, defeating challengers Gunnevera and Classic Empire. In his next race, a month later, Gunnevera turned the tables and won the Fountain of Youth Stakes, with Practical Joke second while Irish War Cry tired and finished a distant seventh, 21 lengths behind the winners. He came back in the Wood Memorial at Aqueduct Race Track, with a new jockey, Rajiv Maragh, winning by lengths. His inconsistency"} +{"qid": "test2458", "pid": "20168384", "query": "who won the fountain of youth stakes at gulfstream park", "answer": "Gunnevera", "passage": "Gunnevera\nGunnevera Gunnevera (foaled February 28, 2014) is an American Thoroughbred racehorse. Orphaned from an early age, he became the leading juvenile earner from the first crop of Dialed In. He was a contender on the 2017 Road to the Kentucky Derby, winning the Delta Downs Jackpot Stakes as a two-year old and the Fountain of Youth Stakes at Gulfstream Park during his three-year-old season. Given a layoff after finishing seventh in the Derby and fifth in the Preakness Stakes, he returned in August to win the Tangelo Stakes before finishing second in the Travers Stakes. Gunnevera is a chestnut colt"} +{"qid": "test2458", "pid": "19777651", "query": "who won the fountain of youth stakes at gulfstream park", "answer": "Gunnevera", "passage": "\"Practical Joke (horse)\"\nover seven lengths behind Classic Empire and Not This Time. Practical Joke began the year as one of the top-ranked colts for the 2017 Kentucky Derby, although concerns were expressed about the lack of stamina influences in his pedigree. He made his first start of 2017 in the Fountain of Youth Stakes on March 4 at Gulfstream Park. After settling in the middle of the pack during the early running, Practical Joke moved to the lead around the far turn but was passed in the stretch by Gunnevera. Brown was happy with the performance, believing Practical Joke needed the race."} +{"qid": "test2459", "pid": "20270884", "query": "what is the name of the first earthquake early warning system", "answer": "The Mexican Seismic Alert System", "passage": "\"Mexican Seismic Alert System\"\nMexican Seismic Alert System The Mexican Seismic Alert System (Spanish: \"\"Sistema de Alerta Sísmica Mexicano\"\" or SASMEX) is the earthquake warning system covering portions of central and southern Mexico. It currently provides up to 60 seconds' warning of earthquakes to Mexico City, Acapulco, Chilpancingo, Morelia, Puebla City, Oaxaca City and Toluca. SASMEX is administered by a non-profit civil association, Center for Seismic Instrumentation and Registry (Spanish: \"\"Centro de Instrumentación y Registro Sísmico, A. C.\"\" or CIRES). The SASMEX sensor network serving Mexico City has been regarded as the first earthquake early warning system issuing alerts available to the public. SASMEX"} +{"qid": "test2459", "pid": "9284006", "query": "what is the name of the first earthquake early warning system", "answer": "1991", "passage": "\"Earthquake warning system\"\nsuch as elevators, gas lines and fire stations. The Mexican Seismic Alert System began operations in 1991 and began publicly issuing alerts in 1993. Initially serving Mexico City with twelve sensors, the system now has 97 sensors and is designed to protect life and property in several central and southern Mexican states. Japan's Earthquake Early Warning system was put to practical use in 2006. The system that warns the general public was installed on October 1, 2007. It was modeled partly on the Urgent Earthquake Detection and Alarm System (UrEDAS) of Japan Railways, which was designed to enable automatic braking"} +{"qid": "test246", "pid": "238777", "query": "which country has the smallest population in europe", "answer": "Vatican City", "passage": "\"Demographics of Liechtenstein\"\nDemographics of Liechtenstein This article is about the demographic features of the population of Liechtenstein, including population density, ethnicity, education level, health of the populace, economic status, religious affiliations and other aspects of the population. Liechtenstein is the fourth smallest country of Europe, after the Vatican City, Monaco, and San Marino. Its population is primarily ethnic Alemannic, although a third of its resident population are foreign nationals, primarily German speakers from the Federal Republic of Germany, Austria, and the Swiss Confederation, other Swiss, Italians, and Turks. Nationals are referred to by the plural: Liechtensteiners. The official language is German; most"} +{"qid": "test246", "pid": "238756", "query": "which country has the smallest population in europe", "answer": "Vatican City", "passage": "Liechtenstein\nin line with other European countries with regard to its taxation of private individuals and corporate assets. Population-wise, Liechtenstein is the fourth smallest country of Europe; only Vatican City, San Marino, and Monaco have fewer residents. Its population is primarily Alemannic-speaking, although one third is foreign-born, primarily German speakers from Germany, Austria, and Switzerland, along with other Swiss, Italians, and Turks. Foreign-born people make up two-thirds of the country's workforce. Liechtensteiners have an average life expectancy at birth of 80.31 years, subdividing as male: 76.86 years, female: 83.77 years (2011 est.). The infant mortality rate is 4.64 deaths per 1,000"} +{"qid": "test246", "pid": "372547", "query": "which country has the smallest population in europe", "answer": "Vatican City", "passage": "\"San Marino\"\nas its currency. San Marino is an enclave (landlocked) surrounded by Italy in Southern Europe, on the border between the \"\"regioni\"\" of Emilia Romagna and Marche and about from the Adriatic coast at Rimini. Its hilly topography, with no flat ground, is part of the Apennine mountain range. The highest point in the country, the summit of Monte Titano, is above sea level. There are no bodies of water of any significant size. San Marino is the third smallest country in Europe, with only Vatican City and Monaco being smaller. It is also the fifth smallest country in the world."} +{"qid": "test2463", "pid": "1676623", "query": "where does the president get authority to issue executive orders", "answer": "Constitution", "passage": "\"Executive order\"\nto make law, rather than clarify or act to further a law put forth by the Congress or the Constitution. Presidents since this decision have generally been careful to cite which specific laws they are acting under when issuing new executive orders. Likewise, when presidents believe their authority for issuing an executive order stems from within the powers outlined in the Constitution, the order will simply proclaim \"\"under the authority vested in me by the Constitution\"\" instead. Wars have been fought upon executive order, including the 1999 Kosovo War during Bill Clinton's second term in office. However, all such wars"} +{"qid": "test2463", "pid": "1676626", "query": "where does the president get authority to issue executive orders", "answer": "Constitution", "passage": "\"Executive order\"\n6632). On June 29, the president issued Executive Order 6763 \"\"under the authority vested in me by the Constitution\"\", thereby creating the National Labor Relations Board. In 1934, while Charles Evans Hughes was Chief Justice of the United States (in the time period known as the Hughes Court), the Court found that the National Industrial Recovery Act (NIRA) was unconstitutional. The president then issued Executive Order 7073 \"\"by virtue of the authority vested in me under the said Emergency Relief Appropriation Act of 1935\"\", reestablishing the National Emergency Council to administer the functions of the NIRA in carrying out the"} +{"qid": "test2463", "pid": "1676616", "query": "where does the president get authority to issue executive orders", "answer": "Constitution", "passage": "\"Executive order\"\nExecutive order In the United States, an executive order is a directive issued by the President of the United States that manages operations of the federal government and has the force of law. The legal or constitutional basis for executive orders has multiple sources. Article Two of the United States Constitution gives the president broad executive and enforcement authority to use their discretion to determine how to enforce the law or to otherwise manage the resources and staff of the executive branch. The ability to make such orders is also based on express or implied Acts of Congress that delegate"} +{"qid": "test2464", "pid": "1688484", "query": "who was originally cast as phoebe on charmed", "answer": "Lori Rom", "passage": "Charmed\nplayed the role of the middle sister Piper Halliwell. Lori Rom was originally cast as the youngest sister Phoebe Halliwell in the 28-minute unaired pilot episode. However, Rom quit the series, and a new pilot was filmed with former \"\"Who's the Boss\"\" actress Alyssa Milano in the role of Phoebe. Doherty departed \"\"Charmed\"\" at the end of the third season and was replaced in the fourth season by film actress Rose McGowan, who played the long-lost younger half-sister Paige Matthews. In season one, Ted King was cast as the inspector Andy Trudeau, Dorian Gregory was cast as his inspector partner"} +{"qid": "test2464", "pid": "2223848", "query": "who was originally cast as phoebe on charmed", "answer": "Lori Rom", "passage": "\"Phoebe Halliwell\"\nBynes) recalls watching an episode of \"\"Charmed\"\" on The WB where Milano \"\"was about to cast a spell on her cute demon boyfriend.\"\" In his review of the television series \"\"Witches of East End\"\" being too similar to \"\"Charmed\"\", Christian Cintron of Hollywood.com noted that Jenna Dewan-Tatum's \"\"ne'er-do-well, bed-hopping character\"\" Freya Beauchamp is a lot like Phoebe. Phoebe Halliwell Phoebe Halliwell is a fictional character from the American television series \"\"Charmed\"\", played by Alyssa Milano from October 7, 1998 until May 21, 2006. The character was originally played by Lori Rom in the unaired pilot episode. However, Rom quit the"} +{"qid": "test2464", "pid": "2223800", "query": "who was originally cast as phoebe on charmed", "answer": "Lori Rom", "passage": "\"Phoebe Halliwell\"\nPhoebe Halliwell Phoebe Halliwell is a fictional character from the American television series \"\"Charmed\"\", played by Alyssa Milano from October 7, 1998 until May 21, 2006. The character was originally played by Lori Rom in the unaired pilot episode. However, Rom quit the series, and a new pilot was filmed with Milano in the role of Phoebe. The character was created by Constance M. Burge and is based on Burge herself. Phoebe is introduced into \"\"Charmed\"\" as the youngest sister to Prue (Shannen Doherty) and Piper Halliwell (Holly Marie Combs). She is one of the original featured leads and, more"} +{"qid": "test2464", "pid": "7475636", "query": "who was originally cast as phoebe on charmed", "answer": "Lori Rom", "passage": "\"Lori Rom\"\nLori Rom Lori Rom (born Loren Rom; August 16, 1975) is an American actress. Rom was born in Red Bank, New Jersey. She attended Carnegie Mellon University's drama conservatory, where she also worked through school. She was originally selected to play the role of Phoebe Halliwell in the television series \"\"Charmed\"\"; however, she left the series after filming the pilot and Alyssa Milano took over the role of Phoebe. Tabloids stated that Shannen Doherty (Prue Halliwell in Charmed) and Lori were bitter enemies, but both deny the rumours. She has also guest starred on \"\"Party of Five\"\", \"\"\"\", \"\"Jack and"} +{"qid": "test2465", "pid": "6902897", "query": "who owns the delano hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\nthe Delano rooms remained among the largest standard rooms of any hotel on the Las Vegas Strip. Rooms included 28 penthouses, and dog-friendly suites. Delano Las Vegas Delano Las Vegas (formerly known as THEhotel) is a 43-story 1,118 room luxury suite hotel. It is owned and operated by MGM Resorts International. It is located within the Mandalay Bay complex on the Las Vegas Strip in Paradise, Nevada. It opened on December 17, 2003, as \"\"THEhotel at Mandalay Bay.\"\" In 2012, owner MGM Resorts International announced a partnership with Morgans Hotel Group to rebrand the hotel as Delano Las Vegas. Construction"} +{"qid": "test2465", "pid": "6902883", "query": "who owns the delano hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\nDelano Las Vegas Delano Las Vegas (formerly known as THEhotel) is a 43-story 1,118 room luxury suite hotel. It is owned and operated by MGM Resorts International. It is located within the Mandalay Bay complex on the Las Vegas Strip in Paradise, Nevada. It opened on December 17, 2003, as \"\"THEhotel at Mandalay Bay.\"\" In 2012, owner MGM Resorts International announced a partnership with Morgans Hotel Group to rebrand the hotel as Delano Las Vegas. Construction to rebrand the hotel began in April 2014. Several floors were worked on at a time, allowing much of the hotel to remain open"} +{"qid": "test2465", "pid": "6902888", "query": "who owns the delano hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\n\"\"Mandalay Bay\"\" letters at the top of the original tower. In 2011, the hotel became one of the few Las Vegas Strip hotel properties to allow dogs. Later that year, Travelocity included the hotel on its list of the top 10 hotels in Las Vegas, based on customer reviews. On August 6, 2012, MGM Resorts International announced the rebranding of THEhotel into the Delano Las Vegas as part of a partnership with Morgans Hotel Group. Through the deal, MGM would manage the hotel under a licensing agreement with Morgans Hotel Group, which owned the Delano brand. All of the suites"} +{"qid": "test2465", "pid": "3268606", "query": "who owns the delano hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay\"\nMandalay Bay Mandalay Bay is a 43-story luxury resort and casino on the Las Vegas Strip in Paradise, Nevada. It is owned and operated by MGM Resorts International. One of the property's towers operates as the Delano; the Four Seasons Hotel is independently operated within the Mandalay Bay tower, occupying five floors (35–39). Mandalay Bay has 3,209 hotel rooms, 24 elevators and a casino of . Adjacent to the hotel is the Mandalay Bay Convention Center and the 12,000-seat Mandalay Bay Events Center. The Mandalay Bay Tram connects the resort to its sister properties, Excalibur and Luxor, all three of"} +{"qid": "test2465", "pid": "3268617", "query": "who owns the delano hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay\"\nrestaurants on the property. Mandalay Bay Mandalay Bay is a 43-story luxury resort and casino on the Las Vegas Strip in Paradise, Nevada. It is owned and operated by MGM Resorts International. One of the property's towers operates as the Delano; the Four Seasons Hotel is independently operated within the Mandalay Bay tower, occupying five floors (35–39). Mandalay Bay has 3,209 hotel rooms, 24 elevators and a casino of . Adjacent to the hotel is the Mandalay Bay Convention Center and the 12,000-seat Mandalay Bay Events Center. The Mandalay Bay Tram connects the resort to its sister properties, Excalibur and"} +{"qid": "test2465", "pid": "8141563", "query": "who owns the delano hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Morgans Hotel Group\"\nlifestyle\"\" which he continued to refine, expanding to cities such as San Francisco with the Clift Hotel and London with St. Martins Lane Hotel and the Sanderson Hotel, all three designed by the prolific Philippe Starck. The Delano Las Vegas opened in 2014 as a rebranding of THEhotel at Mandalay Bay, in partnership with MGM Resorts International. In 2012 it was announced that Morgans would be overhauling Sea Containers House in London to be launched as a Mondrian Hotel in 2014. The design of the hotel was awarded to the Tom Dixon (industrial designer) led Design Research Studio. The hotel,"} +{"qid": "test2467", "pid": "5326273", "query": "who played bailey in the sisterhood of the traveling pants", "answer": "Jenna Boyd", "passage": "\"Jenna Boyd\"\nof this film, although the film itself was not particularly well received. Previously she had been in \"\"\"\" playing the daughter of a family hired by the title character (David Spade) to help him recapture his childhood. In 2005 Boyd played the Leukemia-suffering Bailey Graffman in \"\"The Sisterhood of the Traveling Pants\"\". Her recent roles include the Lifetime miniseries \"\"The Gathering\"\" in which she played the daughter of a doctor (Peter Gallagher) searching for his wife and in the \"\"Ghost Whisperer\"\" episode \"\"Children of Ghosts\"\" she played a troubled teenager living in a foster home. In 2017, she played Paige"} +{"qid": "test2468", "pid": "6927293", "query": "who has the most followers on the instagram", "answer": "Selena Gomez", "passage": "\"Celebrity branding\"\nare deciding to attempt to reach the largest assortment of potential consumers possible, rather than reaching a small number of consumers but more frequently – which is described as frequency (Belch & Belch, 2012). An example of the usefulness of a celebrity's reach can be shown in statistics taken from telegraph.co.uk regarding the world's most followed Instagram celebrities. The most followed Instagram celebrity is Selena Gomez, with each post that she makes being viewed by all or most of her 145 million followers. Cristiano Ronaldo is 2nd, with 144 million followers, and Ariana Grande is 3rd with 116 million followers."} +{"qid": "test2469", "pid": "1563786", "query": "how many national parks are present in india", "answer": "103", "passage": "\"In Situ Conservation in India\"\nsitu\"\" conservation. The following methods are presently used for \"\"in situ\"\" conservation. Biosphere reserves cover very large areas, often more than 5000 km. They are used to protect species for a long time. Currently, there are 18 Biosphere Reserves in India. A national park is an area dedicated for the conservation of wildlife along with its environment. It is usually a small reserve covering an area of about 100 to 500 square kilometers. Within biosphere reserves, one or more national parks may also exist. Currently, there are 103 national parks in India. A wildlife sanctuary is an area which is"} +{"qid": "test247", "pid": "17999483", "query": "who plays elsa's aunt in once upon a time", "answer": "Elizabeth Mitchell", "passage": "\"Once Upon a Time (season 4)\"\nJuly 8, 2014, Elizabeth Mitchell was revealed to have been cast in an undisclosed role. It was later revealed that she would be playing an evil Snow Queen, much like the one from the original Hans Christian Andersan fairy tale. The character would be Anna's and Elsa's aunt, Ingrid. Edward Kitsis and Adam Horowitz had also cast a real reindeer as Sven. On July 28, 2014, Tyler Jacob Moore and John Rhys-Davies were both announced to be playing Prince Hans and Grand Pabbie, respectively. The third episode, \"\"Rocky Road\"\", revealed that the roles of two of Hans' brothers, Franz and"} +{"qid": "test247", "pid": "20458266", "query": "who plays elsa's aunt in once upon a time", "answer": "Elizabeth Mitchell", "passage": "\"Anna (Once Upon a Time)\"\nRumplestiltskin told her that her parents were afraid of Elsa. She does not tell this to Elsa, but is shocked to see that Elsa is learning to control her power—due to a new woman by the name of Ingrid (Elizabeth Mitchell), who claims she is their mother's sister and also has magic snow powers like her sister Elsa. Anna never knew their mother had a sister, so she is immediately skeptical. She goes to meet Grand Pabbie and the rock trolls to find out if this is the truth. While purchasing supplies at Oaken's shop, Anna runs into Belle (Emilie"} +{"qid": "test2470", "pid": "1385120", "query": "what is an open university grade 3 pass", "answer": "55–69%", "passage": "\"Open University\"\nthree-hour papers), but an increasing number of modules instead have an EMA (End of Module Assessment) which is similar to a TMA, in that it is completed at home, but is regarded as an exam for grading purposes. Modules results are sometimes issued on a graded basis, consisting of pass grades 1 (threshold 85%, a distinction), 2 (70–84%), 3 (55–69%) & 4 (40–54%), and fail (below 40%). This grade is calculated as the lower of the overall continuous assessment score (OCAS) and overall examination score (OES). These grades can be weighted according to their level, and combined to calculate the"} +{"qid": "test2474", "pid": "6428403", "query": "how many episodes in season 4 of last ship", "answer": "10", "passage": "\"The Last Ship (novel)\"\naboard the and the , which stands in for the show's fictional USS \"\"Nathan James\"\" (DDG-151). A second season (of 13 episodes) was ordered in 2014, to air in 2015, and a third season (also of 13 episodes) was ordered in 2015, to air in 2016. A fourth season of 10 episodes aired in August 2017 and a 10 episode fifth and final season aired in September 2018. The museum ship was used in filming to represent a Russian . The Last Ship (novel) The Last Ship is a 1988 post-apocalyptic fiction novel written by William Brinkley. A television series"} +{"qid": "test2474", "pid": "16336241", "query": "how many episodes in season 4 of last ship", "answer": "10", "passage": "\"Egg Drop\"\nthat the episode was mostly very funny with a few brief, problematic moments. \"\"“Egg Drop” is in many ways a showcase example of what \"\"Modern Family\"\" does best; that is, taking a stale sitcom plot and making it seem fresh again with clever writing and some well-observed family dynamics.\"\" Leigh Raines of \"\"TV Fanatic\"\" rated the episode with 4/5 saying that it was \"\"a major improvement over last week's installment\"\" and \"\"just another example of how important competition is to the Pritchett crew.\"\" Christine N. Ziemba from \"\"Paste Magazine\"\" gave a 9/10 to the episode stating that the third season"} +{"qid": "test2474", "pid": "17881859", "query": "how many episodes in season 4 of last ship", "answer": "10", "passage": "\"The Last Ship (TV series)\"\nairing on June 21, 2015. On August 11, 2015, \"\"The Last Ship\"\" was renewed for a 13-episode third season, stated to premiere June 12, 2016. The season 3 premiere was postponed following the 2016 Orlando nightclub shooting because the episode also included a mass shooting in a nightclub. On July 31, 2016, \"\"The Last Ship\"\" was renewed for a 10-episode fourth season, which premiered on August 20, 2017. On September 8, 2016, TNT renewed the series for a 10-episode fifth and final season, which was filmed immediately after season four and premiered on September 9, 2018. The final episode aired"} +{"qid": "test2474", "pid": "17391705", "query": "how many episodes in season 4 of last ship", "answer": "10", "passage": "\"The Locket (How I Met Your Mother)\"\nmany \"\"annoying little things, and a few big ones\"\" but one big thing they got absolutely right: That was the Mother. Bill Kuchman of Popculturology said the episode paled in comparison to the previous season's premiere, saying, \"\"You want a legendary \"\"HIMYM\"\" season premiere? Go watch \"\"Farhampton,\"\" last season’s premiere. ... That’s a season premiere. And that’s the promise that \"\"HIMYM\"\"s final season holds.\"\" Max Nicholson of IGN gave the episode a 7.8/10 rating saying it \"\"delivered a relatively promising start to the wedding weekend.\"\" The Locket (How I Met Your Mother) \"\"The Locket\"\" is the first episode of the"} +{"qid": "test2474", "pid": "15247394", "query": "how many episodes in season 4 of last ship", "answer": "10", "passage": "\"Last Words (How I Met Your Mother)\"\nmain characters, but criticized Barney and Ted's efforts to lighten up Marshall as weak and worse during a funeral. DeAnn Welker of \"\"Television Without Pity\"\" graded the episode at A. Henry Hanks of CNN.com's Marquee Blog compared the episode's impact to that of \"\"The Mary Tyler Moore Show\"\" episode \"\"Chuckles Bites the Dust\"\" and the first episode of \"\"NewsRadio\"\" after Phil Hartman's death in 1998. The episode achieved the highest ratings of season 6, at 10.51 million viewers. Last Words (How I Met Your Mother) \"\"Last Words\"\" is the 14th episode of the sixth season of the CBS sitcom \"\"How"} +{"qid": "test2474", "pid": "5136198", "query": "how many episodes in season 4 of last ship", "answer": "10", "passage": "\"How I Spent My Strummer Vacation\"\nHow I Spent My Strummer Vacation \"\"How I Spent My Strummer Vacation\"\" is the second episode of \"\"The Simpsons\"\"' fourteenth season. It first aired on the Fox network in the United States on November 10, 2002. It was intended to be the season premiere, but \"\"Treehouse of Horror XIII\"\" was moved ahead for Halloween. This episode was heavily promoted due to its list of high-profile guest stars, and is the last episode written by Mike Scully. This episode is also the last to be produced in traditional cel animation. Three weeks later, \"\"Helter Shelter\"\" became the last traditional cel-animated episode"} +{"qid": "test2475", "pid": "8797051", "query": "when did the phantom of the opera open", "answer": "1986", "passage": "\"The Phantom of the Opera (Andrew Lloyd Webber song)\"\nLindsey Stirling did an accompanied instrumental version of the song on her \"\"Phantom of the Opera\"\" single in 2012. The Phantom of the Opera (Andrew Lloyd Webber song) \"\"The Phantom of the Opera\"\" is a song from the stage musical of the same name. It was composed by Andrew Lloyd Webber, with lyrics written by Charles Hart and Richard Stilgoe, and additional lyrics by Mike Batt. The song was originally recorded by Sarah Brightman and Steve Harley, which became a UK hit single in 1986, prior to the musical. In its theatrical debut, it was sung by Brightman and Michael"} +{"qid": "test2475", "pid": "2076663", "query": "when did the phantom of the opera open", "answer": "1986", "passage": "\"The Phantom of the Opera (2004 film)\"\nThe Phantom of the Opera (2004 film) The Phantom of the Opera is a 2004 British–American musical drama film based on Andrew Lloyd Webber's 1986 musical of the same name, which in turn is based on the French novel \"\"Le Fantôme de l'Opéra\"\" by Gaston Leroux. Produced and co-written by Lloyd Webber and directed by Joel Schumacher, it stars Gerard Butler in the title role, Emmy Rossum, Patrick Wilson, Miranda Richardson, Minnie Driver and Jennifer Ellison. The film was announced in 1989 but production did not start until 2002 due to Lloyd Webber's divorce and Schumacher's busy career. It was"} +{"qid": "test2475", "pid": "2076452", "query": "when did the phantom of the opera open", "answer": "1986", "passage": "\"The Phantom of the Opera (1986 musical)\"\nThe Phantom of the Opera (1986 musical) The Phantom of the Opera is a musical with music by Andrew Lloyd Webber and lyrics by Charles Hart. Richard Stilgoe and Lloyd Webber wrote the musical's book together. Stilgoe also provided additional lyrics. Based on the eponymous French novel by Gaston Leroux, its central plot revolves around a beautiful soprano, Christine Daaé, who becomes the obsession of a mysterious, disfigured musical genius living in the subterranean labyrinth beneath the Paris Opéra House. The musical opened in London's West End in 1986, and on Broadway in 1988. It won the 1986 Olivier Award"} +{"qid": "test2475", "pid": "2076472", "query": "when did the phantom of the opera open", "answer": "1986", "passage": "\"The Phantom of the Opera (1986 musical)\"\nlake to his secret lair (\"\"The Phantom of the Opera\"\"). The Phantom explains that he has chosen Christine to sing his music and serenades her. When he reveals a mirror that reflects an image of her in a wedding dress, the figure in the mirror gestures to Christine and she faints from shock. The Phantom then covers her tenderly with his cloak (\"\"The Music of the Night\"\"). As the Phantom is composing music at his organ, Christine awakens to the sound of the monkey music box (\"\"I Remember\"\"). Overcome with curiosity, she slips behind the Phantom, lifts his mask, and"} +{"qid": "test2475", "pid": "763758", "query": "when did the phantom of the opera open", "answer": "1986", "passage": "\"Palais Garnier\"\nOpera and its associated Paris Opera Ballet until 1989, when the Opéra Bastille opened at the Place de la Bastille. The Paris Opera now mainly uses the Palais Garnier for ballet. The Palais Garnier has been called \"\"probably the most famous opera house in the world, a symbol of Paris like Notre Dame Cathedral, the Louvre, or the Sacré Coeur Basilica.\"\" This is at least partly due to its use as the setting for Gaston Leroux's 1910 novel \"\"The Phantom of the Opera\"\" and, especially, the novel's subsequent adaptations in films and the popular 1986 musical. Another contributing factor is"} +{"qid": "test2476", "pid": "2860656", "query": "where does the water from the california aqueduct come from", "answer": "Sierra Nevada Mountains", "passage": "\"California Aqueduct\"\nCalifornia Aqueduct The Governor Edmund G. Brown California Aqueduct is a system of canals, tunnels, and pipelines that conveys water collected from the Sierra Nevada Mountains and valleys of Northern and Central California to Southern California. Named after California Governor Edmund Gerald \"\"Pat\"\" Brown Sr., the over aqueduct is the principal feature of the California State Water Project. The aqueduct begins at the Clifton Court Forebay at the southwestern corner of the Sacramento–San Joaquin River Delta. The aqueduct then heads south, eventually splitting into three branches: the Coastal Branch, ending at Lake Cachuma in Santa Barbara County; the West Branch,"} +{"qid": "test2476", "pid": "2501301", "query": "where does the water from the california aqueduct come from", "answer": "Sierra Nevada Mountains", "passage": "\"Los Angeles Aqueduct\"\nLos Angeles Aqueduct The Los Angeles Aqueduct system, comprising the Los Angeles Aqueduct (Owens Valley aqueduct) and the Second Los Angeles Aqueduct, is a water conveyance system, built and operated by the Los Angeles Department of Water and Power. The Owens Valley aqueduct was designed and built by the city's water department, at the time named The Bureau of Los Angeles Aqueduct, under the supervision of the department's Chief Engineer William Mulholland. The system delivers water from the Owens River in the Eastern Sierra Nevada Mountains to Los Angeles, California. In 1971 it was recognized by the American Society of"} +{"qid": "test2478", "pid": "4102203", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Bayside, Queens\"\nBayside is part of the New York City Department of Education's district 26, the highest performing school district for grades K-9 in all of New York City. The district includes 20 elementary schools and 5 middle schools. District 25 also serves part of the neighborhood. The Queens Borough Public Library operates the Bay Terrace Branch. Bayside is home to a number of New York City Public Schools: Parochial schools include: Queens Borough Public Library operates the Bayside, Bay Terrace and Windsor Park Branches. Oakland Lake Bayside, Queens Bayside is a neighborhood in the New York City borough of Queens. The"} +{"qid": "test2478", "pid": "17454359", "query": "what are the 5 boroughs of new york city", "answer": "Staten Island", "passage": "\"2013 New York City Borough President elections\"\nBorough President James Molinaro (C) cannot run again because of term limits. Molinaro has served three terms (12 years) as Staten Island Borough President. Besides the Democratic and Republican parties, the Conservative, Green, Independence and Working Families parties are qualified New York parties. These parties have automatic ballot access. Any candidate not among the qualified New York parties must petition their way onto the ballot; they do not face primary elections. Oddo won the election with 69.1% of the vote. Liedy garnered 29.7%, Bardel earned .7% and Johnson received .5% of the vote. 2013 New York City Borough President elections"} +{"qid": "test2478", "pid": "9940797", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"West Bronx\"\nthe first area outside Manhattan to be annexed by the City of New York. Today's West Bronx was then known as the \"\"Annexed District\"\". In 1895, the city annexed the modern-day East Bronx, followed in 1898 by western Queens County (today's borough of Queens, with the remainder of what was eastern Queens County becoming the newly formed Nassau County), all of the City of Brooklyn (today's borough of Brooklyn), and all of Richmond County (today's borough of Staten Island) to form the consolidated city of New York. Physically, the western parts of the Bronx are hilly, dominated by a series"} +{"qid": "test2478", "pid": "3983171", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"East New York, Brooklyn\"\nEast New York, Brooklyn East New York is a residential neighborhood in the eastern section of the borough of Brooklyn in New York City, United States. The neighborhood is part of Brooklyn Community District 5, covered by Brooklyn Community Board 5. Its boundaries, starting from the north and moving clockwise are: Cypress Hills Cemetery to the north, the Borough of Queens to the east, Jamaica Bay to the south, and the Bay Ridge Branch railway tracks next to Van Sinderen Avenue to the west. Linden Boulevard and Atlantic Avenue are the primary thoroughfares through East New York. Its ZIP Codes"} +{"qid": "test2478", "pid": "6871607", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"Gale Brewer\"\nGale Brewer Gale Arnot Brewer (born September 6, 1951) is the 27th and current Borough President of the New York City borough of Manhattan and a Democratic politician from the state of New York. She was a member of the New York City Council, where she represented the Upper West Side and the northern part of Clinton in Manhattan. She was elected Manhattan Borough President on November 5, 2013. Brewer obtained her undergraduate degrees from Bennington College (1973) and Columbia University (1997). She then earned her Master of Public Administration (M.P.A.) degree from Harvard University's John F. Kennedy School of"} +{"qid": "test2478", "pid": "7817279", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"Boroughs of New York City\"\nBoroughs of New York City New York City encompasses five county-level administrative divisions called \"\"boroughs\"\": Manhattan, Brooklyn, Queens, The Bronx, and Staten Island. All boroughs are part of New York City, and each of the boroughs is coextensive with a respective county, the primary administrative subdivision within New York State. Queens and The Bronx are concurrent with the counties of the same name, while Manhattan, Brooklyn, and Staten Island correspond to New York, Kings, and Richmond Counties respectively. Boroughs have existed since the consolidation of the city in 1898, when the city and each borough assumed their current boundaries. However,"} +{"qid": "test2478", "pid": "563762", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "Queens\nQueens became a borough during the consolidation of New York City in 1898, and from 1683 until 1899, the County of Queens included what is now Nassau County. Queens has the most diversified economy of the five boroughs of New York City. It is home to John F. Kennedy International Airport and LaGuardia Airport, both among the world's busiest, which in turn makes the airspace above Queens among the busiest in the United States. Landmarks in Queens include Flushing Meadows–Corona Park; Citi Field, home to the New York Mets baseball team; the USTA Billie Jean King National Tennis Center, site"} +{"qid": "test2478", "pid": "19698689", "query": "what are the 5 boroughs of new york city", "answer": "Brooklyn", "passage": "\"Feirstein Graduate School of Cinema\"\nCity address and was officially announced the same month. The school initially aimed to open for the fall 2013 semester. New York City invested over $8 million into the development of the school. Funding was provided through the Mayor's Office of Media and Entertainment, the New York City Council, Brooklyn Borough President Eric Adams, the City University of New York, and the Made in NY program. New York State also invested $5 million. Brooklyn College alumnus Barry Feirstein donated $5 million to development, and the school is named in his honor. The school is the first public graduate film school"} +{"qid": "test2478", "pid": "7817283", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"Boroughs of New York City\"\nincluded parts of New York County outside of Manhattan that had previously been ceded by neighboring Westchester County in two stages; in 1874 and then following a referendum in 1894. Ultimately in 1914, the present-day separate Bronx County became the last county to be created in the State of New York. The borough of Queens consists of what formerly was only the western part of a then-larger Queens County. In 1899, the three eastern towns of Queens County that had not joined the city the year before—the towns of Hempstead, North Hempstead, and Oyster Bay—formally seceded from Queens County to"} +{"qid": "test2478", "pid": "1926559", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"U.S. Route 46\"\nGeorge Washington Bridge, which has eight lanes total on the upper deck (formed from the express lanes) and six lanes total on the lower deck (formed from the local lanes). At the New Jersey/New York border on the bridge, US 46 ends while I-95 and US 1-9 continue into the borough of Manhattan in New York City on the Trans-Manhattan Expressway. Prior to 1927, what is today US 46 was followed by three different routes. The first route was Pre-1927 Route 5, which was first legislated in 1916. It began by crossing the Delaware River from Pennsylvania at the community"} +{"qid": "test2478", "pid": "4905990", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Demographics of New York City\"\nof Queens and Brooklyn. The mayor has asserted that the numbers for Queens and Brooklyn, the two most populous boroughs, are implausible. According to the Census, they grew by only 0.1% and 1.6%, respectively, while the other boroughs grew by between 3% and 5%. In addition, the Mayor claims, the census showed improbably high amounts of vacant housing in vital neighborhoods such as Jackson Heights, Queens. Click here to view the density of New York City as an interactive map of the 1900 census, shortly after municipal consolidation of the five boroughs in 1898. According to the 2010 United States"} +{"qid": "test2478", "pid": "11279433", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Queens County Handicap\"\nQueens County is, like many races at Aqueduct, named for a New York City borough. Queens is the borough that includes the Aqueduct race track. It is also the largest of New York City's five boroughs. There was no race run in 1909, and from 1911 through 1913. The race, once a graded stakes, has lost that status. In winning the 1916 Queens County Handicap, Short Grass set a new United States record of 1:36 2/5 for one mile over a dirt course with a turn. In 2001, three-year-old Evening Attire won the race. Six years later he came back"} +{"qid": "test2478", "pid": "10871680", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Brooklyn–Queens Greenway\"\nand the 5 mile (8 km) Ocean Parkway to the southern terminus in Coney Island. The Brooklyn portion is less hilly than the Queens portion, except in Prospect Park. Brooklyn–Queens Greenway The Brooklyn–Queens Greenway is a bicycling and pedestrian path connecting parks and roads in the New York City boroughs of Brooklyn and Queens, connecting Coney Island in the south to Fort Totten in the north, on Long Island Sound. The route connects major sites in the two boroughs, such as the New York Aquarium, Brooklyn Museum, the Brooklyn Botanic Garden, the New York Hall of Science and Citi Field."} +{"qid": "test2478", "pid": "4905989", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"Demographics of New York City\"\n9.1 million. While the city's projected 2030 population will be a new high, only two boroughs, Staten Island and Queens have reached their population peak every year for the last 5 years. The study projects that by 2030, Queens will have 2.57 million people and Staten Island 552,000. Manhattan, with 1.83 million, Bronx with 1.46 million and Brooklyn with 2.72 million, will still be below their population peaks. On March 27, 2011, New York City Mayor Michael Bloomberg announced that the city would file a formal challenge to the Census results, as a result of alleged undercounting in the boroughs"} +{"qid": "test2478", "pid": "13100319", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"Joe's Shanghai\"\nof four. Currently, \"\"Zagat\"\" gives it a food rating of 4.2 out of 5. In a friendly bet between New York City Mayor Michael Bloomberg and Boston Mayor Thomas Menino over the outcome of the 2003 American League Championship between the Boston Red Sox and New York Yankees, Mayor Bloomberg wagered one of his favorite foods from each borough of New York City. For the borough of Manhattan, he chose two dozen soup dumplings from Joe's Shanghai. Joe's Shanghai Joe's Shanghai () is a chain of seven Shanghainese restaurants in the United States and Japan. The original location was opened"} +{"qid": "test2478", "pid": "10207149", "query": "what are the 5 boroughs of new york city", "answer": "Brooklyn", "passage": "\"Eric Adams (politician)\"\nEric Adams (politician) Eric Leroy Adams (born September 1, 1960) is the Borough President of Brooklyn, New York City. Previously, he was a Democratic State Senator in the New York Senate, representing the 20th Senate District, which includes the Brooklyn neighborhoods of Brownsville, Crown Heights, Flatbush, Park Slope, Prospect Heights, and Sunset Park. On November 5, 2013, Adams was elected Brooklyn Borough President, the first African-American to hold the position. On November 7, 2017, he was reelected for a second term. Prior to his service in government, Adams served as a police officer in the New York City Police Department"} +{"qid": "test2478", "pid": "8309110", "query": "what are the 5 boroughs of new york city", "answer": "Manhattan", "passage": "\"Neighborhoods in New York City\"\nNeighborhoods in New York City The neighborhoods in New York City are located within the five boroughs of the City of New York. Their names and borders are not officially defined, and they change from time to time. New York City is split up into five boroughs, which are the Bronx, Brooklyn, Manhattan, Queens, and Staten Island. Each borough has the same boundaries as a county of the state. The county governments were dissolved when the city consolidated in 1898, along with all city, town, and village governments within each county. The term \"\"borough\"\" was adopted to describe a unique"} +{"qid": "test2478", "pid": "7817286", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Boroughs of New York City\"\nlegislative function within a borough. Executive functions in New York City are the responsibility of the Mayor of New York City, while legislative functions reside with the New York City Council. The borough presidents primarily act as spokesmen, advocates, and ceremonial leaders for their boroughs, have budgets from which they can allocate relatively modest sums of money to community organizations and projects, and appoint the members of the 59 largely advisory community boards in the city's various neighborhoods. The Brooklyn and Queens borough presidents also appoint trustees to the local public library systems in those boroughs. Being coextensive with an"} +{"qid": "test2478", "pid": "6235292", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Borough (United States)\"\nKings County, New York County, Queens County, Bronx County, and Richmond County, respectively. There are no county governments within New York City for legislative or executive purposes. The powers of the boroughs are inferior to the powers of the citywide government, but each borough elects a borough president, who in turn appoints some members of local community boards (see Government of New York City). The boroughs of New York City are generally treated as separate counties for judicial purposes and for some legal filings. Boroughs do not exist in any other part of the state of New York. In Pennsylvania's"} +{"qid": "test2478", "pid": "5511505", "query": "what are the 5 boroughs of new york city", "answer": "Queens", "passage": "\"Brooklyn Community Board 5\"\nBrooklyn Community Board 5 Brooklyn Community Board 5 is a New York City community board that encompasses the Brooklyn neighborhoods of East New York, Cypress Hills, Highland Park, New Lots, City Line, Spring Creek, and Starrett City. It is delimited by Van Sinderen Avenue on the west, the Queens Borough line on the north and on the east, as well as by the Gateway National Recreation Area, Louisiana and Stanley Avenue on the south. Its current chairman is Nathan Bradley, and its district manager is Walter Campbell. As of the United States Census, 2000, the Community Board has a population"} +{"qid": "test2479", "pid": "77459", "query": "what is the main industry in the canadian shield", "answer": "mining", "passage": "\"Canadian Shield\"\nof the United States. Human population is sparse, and industrial development is minimal, while mining is prevalent. The Canadian Shield is a physiographic division, consisting of five smaller, physiographic provinces: the Laurentian Upland, Kazan Region, Davis, Hudson and James. The shield extends into the United States as the Adirondack Mountains (connected by the Frontenac Axis) and the Superior Upland. The Canadian Shield is U-shaped and is a subsection of the Laurentia craton signifying the area of greatest glacial impact (scraping down to bare rock) creating the thin soils. The Canadian Shield is more than 3.96 billion years old. The Canadian"} +{"qid": "test2479", "pid": "13293872", "query": "what is the main industry in the canadian shield", "answer": "mining", "passage": "\"Coat of arms of Whitehorse, Yukon\"\nCoat of arms of Whitehorse, Yukon The coat of arms of Whitehorse is the full armorial achievement as used by the municipal government of Whitehorse as an official symbol. The arms were granted on 15 November 2002. In the top and the bottom of the shield as well as on the crest, these arms feature copper, a heraldic tincture of the metallic sort which has been introduced in Canadian heraldry. In the arms of Whitehorse, this tincture stands for the copper mining industry in the town and the importance of this metal for the first nations. The main charge of"} +{"qid": "test2479", "pid": "6099097", "query": "what is the main industry in the canadian shield", "answer": "mining", "passage": "\"Haughton, Greater Manchester\"\nbecame part of the new Metropolitan Borough of Tameside. The Haughton coat of arms was originally three silver bars on a black shield. These elements were incorporated on the right hand side of the Denton UDC armorial shield, along with the two red bars on a white background on the left hand side of the shield, and the three cinquefoils, originating from the Denton arms. The new Denton shield is described as 'Denton impaling Haughton'. Haughton's industrial past is very similar to that of Denton with both agriculture, mining and Hatting forming the township's main industries. Today, Haughton is predominantly"} +{"qid": "test2479", "pid": "61518", "query": "what is the main industry in the canadian shield", "answer": "mining", "passage": "\"Geography of Canada\"\nCanada now has some of the largest reserves of oil in the world. In other forms, Canadian industry has a long history of extracting large coal and natural gas reserves. Canada's mineral resources are diverse and extensive. Across the Canadian Shield and in the north there are large iron, nickel, zinc, copper, gold, lead, molybdenum, and uranium reserves. Large diamond concentrations have been recently developed in the Arctic, making Canada one of the world's largest producers. Throughout the Shield there are many mining towns extracting these minerals. The largest, and best known, is Sudbury, Ontario. Sudbury is an exception to"} +{"qid": "test2479", "pid": "11192219", "query": "what is the main industry in the canadian shield", "answer": "mining", "passage": "\"Lake Souris\"\narea surrounding Denbigh and Towner was covered. The gold contained in the Lake Souris gravel deposits was apparently derived from rocks of the Canadian Shield to the north. The glaciers that transported the gold to north-central North Dakota flowed over what are today the Gods Lake, Flin Flon, and Lac La Ronge mining districts of northern Manitoba and Saskatchewan. This part of the Canadian Shield is situated about straight north of the Denbigh area and, based on flow directions believed to have occurred during the glacial ice, it is in a likely position to serve as a source for the"} +{"qid": "test248", "pid": "13717310", "query": "where was held the first session of muslim league", "answer": "Lucknow", "passage": "\"Syed Wazir Hasan\"\nHasan at the Bombay Session held on 11–12 April 1936. He died in Lucknow in August 1947 and was buried there as well Syed Wazir Hasan Sir Syed Wazir Hasan (1874 – August 1947) was an Indian jurist and Secretary and later President of the All-India Muslim League. A practitioner in the Judicial Commissioner's Court, he was the first Indian Chief Justice of the Awadh Chief Court (1930–1934). His Presidential address at the 24th Session, of Muslim League, held on 11–12 April 1936 in Bombay, was noted for its call of Hindu-Muslim unity, before the call for separate Muslim state"} +{"qid": "test248", "pid": "7214843", "query": "where was held the first session of muslim league", "answer": "Lucknow", "passage": "Mohsin-ul-Mulk\nover the 9th session of Muhammadan Educational Conference which was held in Aligarh in 1894 where he proposed a resolution to help and support Nadwatul Ulama, the newly formed religious school in Lucknow. His impressive presidential remarks softened the hearts of modern educationists to support the cause of Nadwatul Ulama. In 1906, he became Secretary of All India Muslim League at its founding session in Dhaka. Along with Nawab Waqar-ul-Mulk Kamboh, he was asked to draft the constitution of the League. Towards the beginning of the 20th century, the Hindi-Urdu controversy arose in the United Provinces. Mohsin-ul-Mulk took up the"} +{"qid": "test248", "pid": "4875820", "query": "where was held the first session of muslim league", "answer": "Lucknow", "passage": "\"Lucknow Pact\"\nLucknow Pact The Lucknow Pact was an agreement reached between the Indian National Congress and the Muslim League at the joint session of both the parties held in Lucknow in December 1916. Through the pact, the two parties agreed to allow overrepresentation to religious minorities in the provincial legislatures. The Muslim League leaders agreed to join the Congress movement demanding Indian autonomy. Scholars cite this as an example of a consociational practice in Indian politics. The British had announced, in order to satisfy the Indians, that they will be considering a series of proposals that would lead to at least"} +{"qid": "test2483", "pid": "2279765", "query": "most polluted city in the world according to world health organization", "answer": "Zabol", "passage": "Zabol\nwind\"\" (\"\"bād-e sad-o-bist-roz\"\"), a highly persistent dust storm in the summer which blows from north to south. The disappearance in the 2000s of the nearby Hamoun wetlands has exacerbated the dusty conditions in Zabol, leading the World Health Organization to name Zabol the most polluted city in the world in 2016. A 2017 study in the journal \"\"Preventive Medicine\"\" suggested that the harm from 30 minutes of cycling outdoors in Zabol's polluted air would outweigh the benefits of the exercise. Zabol has a hot desert climate (Köppen climate classification \"\"BWh\"\"). Zabol Zâbol (, also transliterated as Zābul) is a city"} +{"qid": "test2484", "pid": "17006422", "query": "who won the award for best goalkeeper in football world cup 2006", "answer": "Gianluigi Buffon", "passage": "\"IFFHS World's Best Goalkeeper\"\nIFFHS World's Best Goalkeeper The IFFHS World's Best Goalkeeper is a football award given annually since 1987 to the most outstanding goalkeeper of the year as voted by the International Federation of Football History & Statistics (IFFHS). The votes are cast by IFFHS's editorial staff as well as experts from different continents. The award is awarded every January. The winning goalkeeper is awarded a gold trophy at the \"\"World Football Gala\"\". Italy's Gianluigi Buffon and Spain's Iker Casillas have the most award victories, having won it five times, followed by Germany's Manuel Neuer, who has won the award four times;"} +{"qid": "test2484", "pid": "17006424", "query": "who won the award for best goalkeeper in football world cup 2006", "answer": "Gianluigi Buffon", "passage": "\"IFFHS World's Best Goalkeeper\"\nthe 21st century, between 2001 and 2011; the award was won by the Italy's Gianluigi Buffon running ahead of Iker Casillas and Petr Čech. In 2012, the IFFHS also voted on The World‘s Best Goalkeeper of the past 25 years, taking into consideration goalkeepers' performances between 1987 – the year of the award's inception – and 2012; the award was won by the Italy's Gianluigi Buffon running ahead of Iker Casillas and Edwin van der Sar. IFFHS World's Best Goalkeeper The IFFHS World's Best Goalkeeper is a football award given annually since 1987 to the most outstanding goalkeeper of the"} +{"qid": "test2485", "pid": "17649300", "query": "which horse and jockey won the melbourne cup in 2002", "answer": "Damien Oliver", "passage": "\"2013 Melbourne Cup\"\n2013 Melbourne Cup The 2013 Emirates Melbourne Cup was the 153rd running of the Melbourne Cup, Australia's most prestigious Thoroughbred horse race. The race, held on 5 November 2013, at Flemington Racecourse in Melbourne, Victoria, was won by Fiorente. The horse, owned by Andrew Roberts, was bred in Ireland, trained in Australia by Gai Waterhouse, and ridden by jockey Damien Oliver. It was Oliver's third victory in the event, after previous wins in 1995 and 2002, and his first start after a ten-month ban for a betting offence. Waterhouse, the daughter of Tommy J. Smith, who trained winners in 1955"} +{"qid": "test2485", "pid": "17649303", "query": "which horse and jockey won the melbourne cup in 2002", "answer": "Damien Oliver", "passage": "\"2013 Melbourne Cup\"\nmare Verema was euthanised, having broken her cannon bone midway through the race. 2013 Melbourne Cup The 2013 Emirates Melbourne Cup was the 153rd running of the Melbourne Cup, Australia's most prestigious Thoroughbred horse race. The race, held on 5 November 2013, at Flemington Racecourse in Melbourne, Victoria, was won by Fiorente. The horse, owned by Andrew Roberts, was bred in Ireland, trained in Australia by Gai Waterhouse, and ridden by jockey Damien Oliver. It was Oliver's third victory in the event, after previous wins in 1995 and 2002, and his first start after a ten-month ban for a betting"} +{"qid": "test2485", "pid": "4719500", "query": "which horse and jockey won the melbourne cup in 2002", "answer": "Damien Oliver", "passage": "\"Damien Oliver\"\nhis Melbourne Cup winning ride. There has been discussion on whether Oliver's sentence was adequate and the sentence for this offence has increased significantly since. Had it occurred in 2013, he would have been suspended for two years for the same offence. Damien Oliver has won Racing Victoria's Scobie Breasley Medal seven times (1996, 1999, 2001, 2002, 2003, 2004 and 2014). The award recognises excellence in race riding on Melbourne racetracks. In 2014, he won the inaugural Roy Higgins Medal as the winner of the Victorian jockeys’ premiership. Oliver won the 2014/15 Melbourne Jockey's Premiership after riding 60 race winners."} +{"qid": "test2485", "pid": "4719495", "query": "which horse and jockey won the melbourne cup in 2002", "answer": "Media Puzzle", "passage": "\"Damien Oliver\"\n1996, sustained in a fall at Moonee Valley. He returned to riding after that back injury and rode the Japanese horse Pop Rock in the 2006 Melbourne Cup, which finished second to stablemate Delta Blues. In the 2007 Melbourne Cup, he placed second to Efficient on English horse Purple Moon. Oliver has won the Melbourne Cup three times, on Doriemus (1995) Media Puzzle (2002) and Fiorente (2013), the Caulfield Cup on Mannerism (1992), Paris Lane (1994), Doriemus (1995), and Sky Heights (1999), the Cox Plate on Dane Ripper (1997) and Northerly (2001) and the Blue Diamond Stakes (2004). He was"} +{"qid": "test2485", "pid": "274745", "query": "which horse and jockey won the melbourne cup in 2002", "answer": "Media Puzzle", "passage": "\"Melbourne Cup\"\nYoshida racing and breeding family. The attraction for foreigners to compete was, primarily, the low-profile change to the new \"\"quality handicap\"\" weighting system. The 1910 Melbourne Cup was won by Comedy King, the first foreign bred horse to do so. Subsequent foreign bred horses to win Cup were Backwood 1924; Phar Lap 1930; Wotan 1936 Belldale Ball 1980; At Talaq 1986; Kingston Rule 1990; Vintage Crop 1993; Jeune 1994; Media Puzzle 2002; Makybe Diva 2003, 2004, 2005; Americain 2010 and Dunaden 2011. The 1938 Melbourne Cup was won by trainer Mrs. Allan McDonald, who conditioned Catalogue. Mrs McDonald was a"} +{"qid": "test2486", "pid": "8762897", "query": "who wrote the song to make you feel my love", "answer": "Bob Dylan", "passage": "\"Make You Feel My Love\"\nwas released on music channels in late September 2008 and continues to be featured on her website. Digital download Digital download CD single \"\"19\"\" version \"\"19 Deluxe\"\" version \"\"Chimes of Freedom\"\" live version \"\"Live at the Royal Albert Hall\"\" live version \"\"Make You Feel My Love\"\" has also been recorded by: Josh Kelley's version appeared on \"\"\"\" Make You Feel My Love \"\"Make You Feel My Love\"\" is a song written by Bob Dylan from his album \"\"Time Out of Mind\"\" (1997). It was first released commercially by Billy Joel, under the title \"\"To Make You Feel My Love\"\", before"} +{"qid": "test2486", "pid": "8762889", "query": "who wrote the song to make you feel my love", "answer": "Bob Dylan", "passage": "\"Make You Feel My Love\"\nMake You Feel My Love \"\"Make You Feel My Love\"\" is a song written by Bob Dylan from his album \"\"Time Out of Mind\"\" (1997). It was first released commercially by Billy Joel, under the title \"\"To Make You Feel My Love\"\", before Dylan's version appeared later that same year. It has since been covered by numerous performers and has proved to be a commercial success for recording artists such as Adele, Garth Brooks, Shane Filan, Bryan Ferry, Kelly Clarkson and Ane Brun. Two covers of the song (one by Garth Brooks and one by Trisha Yearwood) were featured on"} +{"qid": "test2486", "pid": "20282553", "query": "who wrote the song to make you feel my love", "answer": "Bob Dylan", "passage": "\"Love Always (Shane Filan album)\"\nLove Always (Shane Filan album) Love Always is the third solo album by Irish singer-songwriter Shane Filan, as a follow-up to \"\"Right Here\"\" (2015), through Ocean Wave Records. It was released worldwide on 25 August 2017, while in Asia on 15 September. Re-issued release in 4 May 2018 by a deluxe edition. The album features Filan's favorite all-time love ballads, such as the Bangles' \"\"Eternal Flame\"\", Bob Dylan's \"\"Make You Feel My Love\"\" and Bryan Adams' \"\"Heaven\"\", along with some fans suggestions. He also wrote three original songs, in collaboration with Paul Barry and Patrick Mascall, who were previously worked"} +{"qid": "test2488", "pid": "4374800", "query": "who are the nbc olympic ice skating commentators", "answer": "Johnny Weir", "passage": "\"Johnny Weir\"\nworked as a broadcast team for ice skating events at the Sochi Winter Olympics. As a result of positive reviews and ratings for the event, they were named in October 2015 as NBC's top figure skating broadcast team. The pair was invited to appear in March 2014 as fashion commentators for \"\"Access Hollywood\"\" at the 86th Academy Awards with host Billy Bush. In May 2014 Weir and Lipinski appeared as fashion commentators for NBC's coverage of the 2014 Kentucky Derby. Also in 2014, Weir appeared as an instructor in \"\"Dream School\"\" from SundanceTV. In 2015, Weir and Lipinski appeared as"} +{"qid": "test2488", "pid": "8681446", "query": "who are the nbc olympic ice skating commentators", "answer": "Tara Lipinski", "passage": "\"Sandra Bezic\"\nby many Olympic and World champions, including Barbara Underhill and Paul Martini (1984 Worlds), Brian Boitano (1988 Winter Olympics), Kristi Yamaguchi (1992 Winter Olympics), Kurt Browning (1993 Worlds), and Tara Lipinski (1998 Winter Olympics). She has also choreographed programs for Jill Trenary, Chen Lu, Joannie Rochette, Yuna Kim, Takahiko Kozuka, and other skaters. Bezic served as a commentator for NBC during the 2002, 2006, 2010, and 2014 Olympic games, the World Figure Skating Championships during the early 1990s, and numerous other skating events broadcast by NBC and CBC over the years. For several years she was the director, co-producer, and"} +{"qid": "test2488", "pid": "5988811", "query": "who are the nbc olympic ice skating commentators", "answer": "Tanith White", "passage": "\"Terry Gannon\"\nthree-time U.S. national champion Johnny Weir, to call figure skating live for its daytime broadcast as backups for the main team who were broadcast during primetime. They were a massive success and NBC promoted all three to serve as its lead figure skating broadcast team. In 2017 he signed a five-year contract extension with NBC and the Golf Channel. For the 2018 Winter Olympics in PyeongChang, South Korea, Gannon, Lipinski, and Weir jointly announced figure skating, as well as the Closing Ceremony. He also called ice dancing with Tanith White. Terry Gannon Terrance Patrick Gannon (born November 1, 1963, in"} +{"qid": "test2488", "pid": "1656391", "query": "who are the nbc olympic ice skating commentators", "answer": "Tara Lipinski", "passage": "\"Tara Lipinski\"\nWeir were promoted to NBC's primary figure skating broadcasting team with Terry Gannon after more than a decade of Scott Hamilton, Sandra Bezic, and Tom Hammond at the helm. This promotion meant the B team of NBCSN from the 2014 Sochi Winter Olympic Games would be commentating at every major skating event aired on NBC networks including the Grand Prix of Figure Skating: Skate America and the United States Figure Skating National Championships. Before the promotion, Lipinski, Weir, and Gannon only did the other five Grand Prix events and the Grand Prix Final, while Hamilton, Bezic, and Hammond got the"} +{"qid": "test2488", "pid": "4374794", "query": "who are the nbc olympic ice skating commentators", "answer": "Johnny Weir", "passage": "\"Johnny Weir\"\nSkating announced that Weir had not registered for qualifying events to the 2014 U.S. Championships, where skaters compete for Olympic berths. On October 23, 2013, Weir announced his retirement from competitive skating and that he would join NBC Olympics as a figure skating analyst for the 2014 Winter Games in Sochi. From the beginning of his career at age twelve, Weir trained under coach Priscilla Hill. They worked together first at the University of Delaware in Newark and after the 2002/2003 season moved to the Pond Ice Arena, also in Newark. Weir also spent part of each summer between 2003"} +{"qid": "test2488", "pid": "13286416", "query": "who are the nbc olympic ice skating commentators", "answer": "Andrea Joyce", "passage": "\"Andrea Joyce\"\nto the Sports Desk. She served as a reporter during NBC's coverage of the 2000 Olympic Diving Trials and the 2000 Olympic Swimming Trials. She also served as a reporter for \"\"NBA on NBC\"\" and \"\"WNBA on NBC\"\" broadcasts. Joyce currently covers gymnastics and figure skating for NBC Sports as well as anchoring the \"\"NBC Sports Update\"\". In 2010, she served as the reporter for short track and figure skating during the 2010 Winter Olympics on NBC. A member of the Women's Sports Foundation, Joyce has covered a wide variety of sports, including figure skating, boxing and even dog shows."} +{"qid": "test2488", "pid": "11921307", "query": "who are the nbc olympic ice skating commentators", "answer": "Tanith White", "passage": "\"NBC Olympic broadcasts\"\nAmericas (and in turn, NBC's coverage). Coverage took a break in the east for late local news, after which coverage continued into \"\"Primetime Plus\"\", which featured additional live coverage into the Eastern late night and Western primetime hours. This was then followed by an encore of the \"\"Primetime\"\" block. NBCSN also broadcast live primetime blocks, and revived \"\"Olympic Ice\"\" to serve as a pre-show for figure skating coverage (hosted by Liam McHugh and Tanith White from Pyeongchang), alongside a digital-exclusive post-show hosted by Krista Voda from NBC Sports' headquarters. Bob Costas stepped down as main host prior to the Games,"} +{"qid": "test2489", "pid": "12252917", "query": "where did immigrants enter the us on the west coast", "answer": "Angel Island Immigration Station", "passage": "\"Angel Island Immigration Station\"\nthe West,\"\" began construction in 1905 and opened January 21, 1910. The main difference between Ellis Island and Angel Island was that the majority of the immigrants that traveled through Angel Island were from Asian countries, such as China, Japan, and India. The facility was created to monitor the flow of Chinese immigrants entering the country after the implementation of the Chinese Exclusion Act in 1882. The Act only allowed entrance to merchants, clergy, diplomats, teachers, and students, barring laborers. The Act did give the government an idea of how to begin to regulate immigration, and realize the potential effect"} +{"qid": "test249", "pid": "7860930", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Eragon (video game)\"\nthat it can be sold or bartered. However, the stone is actually a dragon egg. Eragon names the dragon Saphira from the list of dragon's names he heard from the story teller Brom. Saphira's hatching attracts the attention of the cruel king Galbatorix. The king dispatches servants to Eragon's village to find the dragon. They are unsuccessful and Eragon's uncle is killed and his home burned down. Brom, whom Eragon considers as nothing more than an old storyteller, helps him fight his way out of the village. He then gives Eragon an old sword, known as Zar'roc in the book"} +{"qid": "test249", "pid": "3011532", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eragon\nbelieves to be a stone, appear in front of him. A few months later, Eragon witnesses a baby dragon hatch from the egg. Eragon names the dragon Saphira, after a name the old village storyteller Brom mentions. He raises the dragon in secret until two of King Galbatorix's servants, the Ra'zac, come to Carvahall; though it is later revealed that they weren't looking for the egg at first. Eragon and Saphira manage to escape by hiding in the Spine, but Garrow is fatally wounded and the house and farm are burned down by the Ra'zac. Once Garrow dies, Eragon is"} +{"qid": "test249", "pid": "18419731", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Inheritance Cycle\"\nthe journey, Brom teaches Eragon sword fighting, magic, a minimal understanding of the ancient language, and the ways of the Dragon Riders. On the journey they become close friends. Once again the Eldunarí decide to act, sending Eragon dreams of Arya, who is imprisoned in Gil'ead. Halfway through their journey, their camp is ambushed by the Ra'zac and a stranger named Murtagh rescues them, but Brom is mortally wounded. In his dying breath, Brom reveals to Eragon that he once was a Dragon Rider and his dragon was also named Saphira. Eragon decides to follow his dream of Arya to"} +{"qid": "test249", "pid": "18419730", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Inheritance Cycle\"\negg, giving him a silver mark on his palm (the gëdwey ignasia) and making Eragon a Dragon Rider through their bond. The hatchling chooses the name Saphira from a list of dragon names Eragon recites, from Brom, to her. Eragon's cousin, Roran, leaves for a job in the next town Therinsford, to earn money so he can start a family with his beloved, Katrina. His uncle, Garrow, is killed by King Galbatorix's servants, the Ra'zac, and Eragon flees Carvahall with Brom to hunt down the Ra'zac, unaware that Brom is his father. Brom gives Morzan's sword, Zar'roc, to Eragon. On"} +{"qid": "test249", "pid": "4680590", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Eragon (film)\"\nincluding Arya, an old man named Brom, and Galbatorix himself. Eragon shelters and feeds the dragon then teaches her to fly and she magically grows to full size. She speaks to him through their thoughts and calls herself Saphira. When they are out, Durza's monstrous minions, the Ra'zac, arrive at the village to look for the dragon and the rider, killing Eragon's uncle in the process. Blaming Saphira for his uncle's death, Eragon sends her away. Brom shows up, takes Eragon away from the village, warns him of Saphira's importance, and urges him to call her back. Eragon calls Saphira"} +{"qid": "test249", "pid": "3011535", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eragon\nthat night, their camp is ambushed by the Ra'zac. A stranger named Murtagh rescues them, but Brom is gravely injured. Saphira watches over Brom as the night progresses, yet when morning comes they realize there is nothing they can do to save him. Brom gives Eragon his blessing, reveals that he was also once a Dragon Rider and that his dragon's name was Saphira, and dies. Saphira then encases Brom in a tomb made of a diamond. Murtagh becomes Eragon's new companion and they travel to the city Gil'ead to find information on how to find the Varden, a group"} +{"qid": "test249", "pid": "3244955", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eldest\nthe continued adventures of Eragon and his dragon Saphira, centering on their journey to the realm of the Elves in order to further Eragon's training as a Dragon Rider. Other plots in the story focus on Roran, Eragon's cousin, who leads the inhabitants of Carvahall to Surda to join the Varden, and Nasuada as she takes on her father's role as leader of the Varden. \"\"Eldest\"\" ends at the Battle of the Burning Plains, where Eragon faces a new Dragon Rider, Murtagh, and a new dragon, Thorn. Reviews pointed out the similarities between \"\"Eldest\"\" and other works such as \"\"The"} +{"qid": "test249", "pid": "3011519", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eragon\nthe story of a farm boy named Eragon, who finds a mysterious stone in the mountains. Not knowing the stone's origin or worth, he attempts to use it as payment to a butcher. A dragon he later names Saphira hatches from the stone, which was really an egg. When the evil King Galbatorix finds out the general location of the egg he sends the Ra'zac to acquire it. By that time Saphira had been growing for a while and takes Eragon to the Spine after Ra'zac appear in their village, Carvahall. Eragon and Saphira are forced to flee from their"} +{"qid": "test249", "pid": "18419741", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Inheritance Cycle\"\nchoose a new monarch for the elves after the death of Queen Islanzadí in battle, and is chosen herself. She takes with her the rescued green dragon egg, which soon hatches for her. Thus, Arya becomes a Rider with her dragon named Fírnen. Near the end of the book, Arya reveals this to Eragon, as well as her True Name, while Saphira decides to test Fírnen \"\"to see if he has the iron in his bones, and the fire in his belly to match [her]\"\". The two dragons become mates shortly thereafter. Eragon reworks the magic of the original pact"} +{"qid": "test249", "pid": "11113153", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Inheritance (Paolini novel)\"\nhim and Saphira to immediately find the source of and reason for the powerful magic, as it could help them in the fight against Galbatorix. Eragon and Saphira take Glaedr's Eldunarí as a guide. After a while on the island, Eragon and Saphira learn that they must speak their true names in order for the Rock of Kuthian to allow them to enter. After days, they find their true names and the rock opens. Inside, the three of them find a hoard of Eldunarí and dragon eggs that were hidden away before Galbatorix destroyed the Riders. Umaroth, the dragon of"} +{"qid": "test249", "pid": "3244959", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eldest\nto the forest Du Weldenvarden to become trained as a Dragon Rider by the elves. The dwarf king, Hrothgar, decides to adopt Eragon to his clan, Dûrgrimst Ingeitum, and have his now foster brother, Orik, accompany him to the forest. Once there, Eragon meets Oromis, The Cripple Who Is Whole, and his Dragon Glaedr, a dragon with a missing front leg, and the only Dragon and Rider secretly alive besides Eragon, Saphira and Galbatorix and his forcibly bonded dragon Shruikan. Oromis and Glaedr, however, are both crippled, and so cannot fight Galbatorix and must hide to avoid Galbatorix hunting them"} +{"qid": "test249", "pid": "4680587", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Eragon (film)\"\nEragon (film) Eragon is a 2006 British-American action-fantasy film directed by Stefen Fangmeier (in his directorial debut) and written by Peter Buchman, based on Christopher Paolini’s 2002 novel of the same name. The film stars Ed Speleers in the title role as well as Jeremy Irons, Sienna Guillory, Robert Carlyle, Djimon Hounsou, Garrett Hedlund, Joss Stone and John Malkovich, with Rachel Weisz as the voice of Saphira the dragon. Principal photography took place at the Mafilm Fót Studios in Hungary, starting on August 1, 2005. Visual effects and animation were by Weta Digital and Industrial Light & Magic. \"\"Eragon\"\" was"} +{"qid": "test249", "pid": "3011533", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eragon\nleft with no reason to stay in Carvahall, so he goes after the Ra'zac with his newly hatched dragon, seeking vengeance for the destruction of his home and his uncle's death. He is accompanied by Brom, who provides Eragon with the sword Zar'roc and insists on helping him and Saphira. Eragon becomes a Dragon Rider, an ancient warrior charged with promoting peace in Alagaësia, through his bond with Saphira. He is the only known Rider in Alagaësia other than King Galbatorix, who, with the help of the now-dead Forsworn, a group of thirteen dragon riders loyal to Galbatorix, killed every"} +{"qid": "test249", "pid": "6316388", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Brisingr\nis one of the few remaining Dragon Riders, a group that governed Alagaësia in past times but were almost destroyed by a Rider named Galbatorix, who took control of the land. Galbatorix's greatest fear is that a new Rider will rise up and usurp his position as king of the Empire, so when he finds out about Eragon and his dragon, he sends his servants after them in an effort to capture them. Eragon and Saphira are forced to flee from their home, and decide to join the Varden. \"\"Brisingr\"\" is told in third-person from the perspectives of multiple primary"} +{"qid": "test249", "pid": "4680592", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "\"Eragon (film)\"\nblue fire, then falls unconscious from the strain. Saphira saves him. Brom teaches Eragon to control his magic and bond his powers with Saphira. After flying for the first time Eragon and Saphira help Brom kill the Ra'vac, and Brom reveals he was once a rider before his dragon was killed. Durza sets a trap for Eragon, using Arya as bait. Hearing her telepathic calls, Eragon finds her, but is ambushed by Durza. Eragon is outmatched, and Brom arrives to help him, getting mortally wounded in the process. Eragon vengefully shoots an arrow into Durza's head, causing him to disappear."} +{"qid": "test249", "pid": "6316395", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Brisingr\nin the battle of Farthen Dur. After Orik's coronation, Eragon and Saphira return to the elven capital Ellesméra to train. There, Saphira revealed from a memory that Eragon's deceased mentor, Brom, is Eragon's father; which Brom asked her to show him when the time was right. Oromis and Glaedr too justify Saphira's revelation. Glaedr also reveals the source of Galbatorix's power: Eldunari, or heart of hearts. An Eldunarí allows the holder to communicate with or draw energy from the dragon it belongs to, even if the dragon is deceased, or a great distance away. Galbatorix spent years collecting Eldunari, and"} +{"qid": "test249", "pid": "6316389", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Brisingr\nprotagonists. These characters include the humans Eragon, Roran, and Nasuada, and the dragons Saphira and Glaedr. The humans Galbatorix and Murtagh return as antagonists, along with Murtagh's dragon, Thorn. The Ra'zac return for a minor antagonist role, and Varaug, a Shade, also appears for a main antagonist role. Many minor characters reprise their roles in \"\"Brisingr\"\" from previous installments of the \"\"Inheritance Cycle\"\", including the elves Arya, Islanzadí, and Oromis; the dwarf Orik; the humans Angela, Katrina and Elva; and the dragon Glaedr. \"\"Brisingr\"\" begins as Eragon, Saphira, and Roran travel to Helgrind, the home of the Ra'zac, the creatures"} +{"qid": "test249", "pid": "6316392", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Brisingr\nreveals about her association with Faolin and crafts a boat made of grass, whilst Eragon sings a flower for her. Once they return to the Varden, Eragon discovers that Katrina is pregnant with Roran's child and a wedding is arranged, which Eragon is to conduct. Just before it begins, a small force of enchanted troops attack alongside Murtagh and his dragon, Thorn. The enchanted soldiers had spells cast by Galbatorix that couldn't allow them to feel pain. King Orrin, King of Surda, discovers a method to kill the soldiers, behead them. Elven spell-casters aid Eragon and Saphira and cause Murtagh"} +{"qid": "test249", "pid": "3244957", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eldest\ncity in the forest Du Weldenvarden, on the northern portion of Alagaësia; Carvahall, a small town located on the northwestern part of Alagaësia in Palancar Valley; and Aberon, the capital of Surda, in the southern portion of Alagaësia. The story is told in third-person through protagonists Eragon, Roran, and Nasuada. Eragon is nearly always accompanied by his dragon Saphira. Due to the multiple points-of-view, multiple stories take place concurrently, and the protagonist characters do not meet often. Several other characters return from \"\"Eragon\"\", including Arya (the elf warrior, daughter of the elven queen), Orik, Roran (Eragon's cousin and a major"} +{"qid": "test249", "pid": "3244964", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eldest\nand tries to win his affections. Eragon tells her it would not be proper, and she in turn replies that Arya is not as important as his education. Both efforts fail miserably, but bring Eragon and Saphira closer together. Later, at the ancient elven ceremony, the Agaetí Blödhren (Blood-Oath Celebration), Eragon is altered by a spectral dragon. The changes alter his senses, and enhance his abilities, effectively turning him into an elf-human hybrid, as well as healing all of his wounds, scars, and back injury. Reinvigorated, Eragon continues training until he learns that the Empire will soon attack the Varden"} +{"qid": "test249", "pid": "3011528", "query": "what is the name of the dragon in eragon", "answer": "Saphira", "passage": "Eragon\nwas traveling. He then started to get history and plot ideas from seeing the landscape depicted. Paolini chose to have Eragon mature throughout the book because, \"\"for one thing, it's one of the archetypal fantasy elements\"\". He thought Eragon's growth and maturation throughout the book \"\"sort of mirrored my own growing abilities as a writer and as a person, too. So it was a very personal choice for that book.\"\" Eragon's dragon, Saphira, was imagined as \"\"the perfect friend\"\" by Paolini. He decided to go in a more \"\"human direction\"\" with her because she is raised away from her own"} +{"qid": "test2491", "pid": "5708609", "query": "who was tammy from basketball wives married to", "answer": "basketball player Kenny Anderson", "passage": "\"The Real World: Los Angeles\"\nworked as a model, financial executive and actress, appearing in various TV shows and movies. She married basketball player Kenny Anderson, and bore him two daughters, Lyric and Jazz, but they later divorced. Under the name Tami Roman, she appeared as a cast member on the VH1 reality television series \"\"Basketball Wives\"\", which depicted her and her husband's attempt to salvage their relationship. She also appeared on the \"\"Basketball Wives\"\" spinoff, \"\"Basketball Wives LA\"\". The Real World: Los Angeles The Real World: California (retrospectively referred to as The Real World: Los Angeles, to distinguish it from subsequent installments of the"} +{"qid": "test2491", "pid": "17531137", "query": "who was tammy from basketball wives married to", "answer": "Kenny Anderson", "passage": "\"Tami Roman\"\nshow \"\"The Real World\"\", titled \"\"\"\". During the season, she was the first to have an abortion on reality television. She married professional basketball player, Kenny Anderson, in 1994 and later divorced in 2001. Roman gained more fame as she appeared as the dealer on the 2001 revival of \"\"Card Sharks\"\", and on several other shows, including an episode of \"\"One on One\"\" (season 3, episode 4). In 2010, Roman became one of the main cast members in the VH1 reality series \"\"Basketball Wives\"\". She was then cast on the \"\"Basketball Wives\"\" spinoff \"\"Basketball Wives LA\"\", starting with the fourth"} +{"qid": "test2492", "pid": "20006002", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Everything Changes (Staind song)\"\nEverything Changes (Staind song) \"\"Everything Changes\"\" is a song by the American band Staind, which was the third single off of their album Chapter V. Aaron Lewis briefly mentioned to MTV that \"\"Everything Changes\"\" is about things that change without going into a detailed explanation of the song. Staind's lead singer Aaron Lewis told MTV that \"\"Everything Changes\"\" was created after brainstorming some ideas and was one of the last songs recorded for Chapter V. \"\"Everything Changes\"\" received both positive and negative reviews. The Washington Post complimented Staind for creating a \"\"concert-ready soft serve tune\"\", and likened \"\"Everything Changes\"\" to"} +{"qid": "test2492", "pid": "7031706", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Performances and adaptations of The Star-Spangled Banner\"\nChiefs, the Eli Young Band sung the national anthem. After messing up the lyrics on the 2nd line of the song, they were met with boos. They started over and sang the lyrics correctly. During Game 5 of the 2014 World Series, Staind lead singer Aaron Lewis reportedly butchered the national anthem. During the 2018 NBA All-Star Game, Fergie performed what was considered the worst rendition of the \"\"Star-Spangled Banner\"\" in recent memory. \"\"The Star Spangled Banner\"\" became a charity single recorded by Pop/R&B singer Whitney Houston and produced by music director Rickey Minor, along with Houston herself, to raise"} +{"qid": "test2492", "pid": "15744029", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Staind (album)\"\nThe making of \"\"Staind\"\" was a stressful experience for the group. As lead singer Aaron Lewis stated, \"\"By the end of the first month we weren't even recording in the same places anymore.\"\" A number of factors created some dissension within the group during recording. Despite the deadline on the album's completion approaching, with the album less than half finished, Lewis continued to do solo gigs to promote his solo album \"\"Town Line\"\" much to the other band members' discontent. In addition Lewis' working relationship with drummer Jon Wysocki broke down completely. Wysocki's departure from the group was announced on"} +{"qid": "test2492", "pid": "403190", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "Staind\nStaind Staind ( ) is an American rock band formed in 1995. The original lineup consisted of lead vocalist and rhythm guitarist Aaron Lewis, lead guitarist Mike Mushok, bassist and backing vocalist Johnny April, and drummer Jon Wysocki. The lineup has been stable outside of Wysocki's departure in 2011, who was replaced by Sal Giancarelli. The band has recorded seven studio albums: \"\"Tormented\"\" (1996), \"\"Dysfunction\"\" (1999), \"\"Break the Cycle\"\" (2001), \"\"14 Shades of Grey\"\" (2003), \"\"Chapter V\"\" (2005), \"\"The Illusion of Progress\"\" (2008), and \"\"Staind\"\" (2011). The band's activity became more sporadic after their self-titled release, with Lewis pursuing a"} +{"qid": "test2492", "pid": "20006004", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Everything Changes (Staind song)\"\nthat he rarely saw the music video for \"\"Everything Changes\"\" aired on TV. Due to the lack of airplay for the music video, Lewis told MTV \"\"I think nobody cares [about Staind] anymore. No one wants to see videos from us anymore. We're not the hip flavor of the moment\"\". Everything Changes (Staind song) \"\"Everything Changes\"\" is a song by the American band Staind, which was the third single off of their album Chapter V. Aaron Lewis briefly mentioned to MTV that \"\"Everything Changes\"\" is about things that change without going into a detailed explanation of the song. Staind's lead"} +{"qid": "test2492", "pid": "403214", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "Staind\nKiss, Van Halen, Led Zeppelin, Whitesnake, the Beatles, Alice in Chains, Black Sabbath, Pearl Jam, Nirvana, Stone Temple Pilots, Helmet, James Taylor, Korn, and Crosby, Stills & Nash as influences. Touring musicians Timeline Studio albums Staind Staind ( ) is an American rock band formed in 1995. The original lineup consisted of lead vocalist and rhythm guitarist Aaron Lewis, lead guitarist Mike Mushok, bassist and backing vocalist Johnny April, and drummer Jon Wysocki. The lineup has been stable outside of Wysocki's departure in 2011, who was replaced by Sal Giancarelli. The band has recorded seven studio albums: \"\"Tormented\"\" (1996), \"\"Dysfunction\"\""} +{"qid": "test2492", "pid": "12120203", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"The Illusion of Progress\"\nThe Illusion of Progress The Illusion of Progress is the sixth studio album by American rock band Staind. It was released on August 19, 2008. \"\"The Illusion of Progress\"\" was produced by Johnny K and recorded in lead singer Aaron Lewis' home studio. It debuted at No. 3 in the \"\"Billboard\"\" 200 with 91,800 units sold. The lead single was \"\"Believe\"\", topping the Alternative Songs chart on September 13, 2008. It accumulated three weeks at number one. The second single was \"\"All I Want\"\", came out on November 24. The video continued the story of the first single video and"} +{"qid": "test2492", "pid": "5520824", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Tormented (Staind album)\"\nwas positive towards the heaviness and aggression of \"\"Tormented\"\", but was negative towards the album's production. Described as a alternative metal and heavy metal album by critics, \"\"Tormented\"\" is somewhat of a concept album that tells the story of a depressed person who eventually commits suicide. The album contains an early version of \"\"Mudshovel\"\", named \"\"Mudshuvel\"\", the breakthrough song which would give Staind mainstream popularity in 1999. In 1993, Staind vocalist Aaron Lewis and Staind guitarist Mike Mushok met at a Christmas party in Springfield, Massachusetts. Mushok brought drummer Jon Wysocki into the band and Lewis had a connection with"} +{"qid": "test2492", "pid": "3819995", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Lo-Pro (album)\"\nThe result was so refreshing in the fact that we could record ourselves and make these great sounding recordings we could listen to. The demos they created in these sessions were the starting point for the album. Eventually, they were able to gain the attention of Aaron Lewis, lead singer of the band Staind, and was signed to his vanity label, \"\"413 Records\"\", through Geffen. Through this, they configured the rest of the band, and began work on the actual album, with producing being done by Aaron Lewis and Don Gilmore. The album was released on September 30, 2003. It"} +{"qid": "test2492", "pid": "13312028", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"King of All Excuses\"\nKing of All Excuses \"\"King of All Excuses\"\" is the fourth and final single to be released from American rock band Staind's fifth studio album \"\"Chapter V\"\". The exact meaning behind \"\"King of All Excuses\"\" is unknown. Due to the single's lack of popularity, questions concerning the song have not been asked during interviewing of the band, and lead singer Aaron Lewis has not openly given any elaborate background information or history involving the song's inspiration. When performed in concert, Aaron Lewis has introduced the song briefly by sharing a brief amount of insight about the meaning behind \"\"King of"} +{"qid": "test2492", "pid": "5163379", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Mike Mushok\"\nMike Mushok Michael \"\"Mike\"\" Mushok (born April 10, 1969) is an American musician who is the lead guitarist for Saint Asonia. He is best known as the lead guitarist for the alternative metal band Staind. Mushok has also previously been a member of the band Newsted. Mike Mushok was born in Ludlow, Massachusetts on April 10, 1969. In 1995, Mushok joined Staind with Aaron Lewis, Johnny April, and Jon Wysocki in Springfield, Massachusetts. That same year, they self-released their debut album Tormented. Soon after that, the band received a concert slot through Aaron Lewis' cousin Justin Cantor with Limp Bizkit."} +{"qid": "test2492", "pid": "5520822", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Tormented (Staind album)\"\nTormented (Staind album) Tormented is the debut studio album by the American rock band Staind. In 1993, Staind vocalist Aaron Lewis and Staind guitarist Mike Mushok met each other at a Christmas party in the New England area. Mushok brought drummer Jon Wysocki into the fold and Lewis had a connection with a bass guitarist who later left, starting the early lineup. Staind was originally a cover band, covering songs by bands like Deftones, Alice in Chains, Pearl Jam, Korn, Tool, Rage Against the Machine, Helmet, and Stone Temple Pilots. Shortly after bassist Johnny April joined, Staind officially formed in"} +{"qid": "test2492", "pid": "5520839", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Tormented (Staind album)\"\nadapted from AllMusic. Tormented (Staind album) Tormented is the debut studio album by the American rock band Staind. In 1993, Staind vocalist Aaron Lewis and Staind guitarist Mike Mushok met each other at a Christmas party in the New England area. Mushok brought drummer Jon Wysocki into the fold and Lewis had a connection with a bass guitarist who later left, starting the early lineup. Staind was originally a cover band, covering songs by bands like Deftones, Alice in Chains, Pearl Jam, Korn, Tool, Rage Against the Machine, Helmet, and Stone Temple Pilots. Shortly after bassist Johnny April joined, Staind"} +{"qid": "test2492", "pid": "3819609", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "Lo-Pro\ndrummer for a number of bands such as Fuel and Everclear, while John Fahnestock initially started a new band, \"\"Noise Within\"\" before eventually leaving permanently when his previous band, Snot, reformed with a new lead singer as Tons. He would be replaced by past Ultraspank member Jerry Olivera. In 2007, the band began to focus on a more acoustic-driven songs. Upon Aaron Lewis wrapping up touring in support Staind's \"\"Chapter V\"\" album, Lo-Pro joined him for a short acoustic tour. The band debuted a number of songs that would later be released on future album, including tracks \"\"Letting Go\"\", \"\"Hang"} +{"qid": "test2492", "pid": "5527010", "query": "what is the lead singers name of staind", "answer": "Aaron Lewis", "passage": "\"Aaron Lewis\"\nAaron Lewis Aaron Lewis (born April 13, 1972) is an American singer, songwriter and musician who is best known as the lead vocalist, rhythm guitarist and founding member of the alternative metal band Staind, with whom he released seven studio albums. He has also enjoyed a successful solo career in country music with his debut EP \"\"Town Line\"\", which was released on March 1, 2011 on Stroudavarious Records. Lewis' first full-length solo release, \"\"The Road\"\", was released by Blaster Records on November 13, 2012. Lewis released his second studio album \"\"Sinner\"\" on September 16, 2016. In 2006, Lewis was ranked"} +{"qid": "test2494", "pid": "6880375", "query": "when did macbook pro 13 inch come out", "answer": "June 8, 2009", "passage": "\"MacBook Pro\"\nquoted at eight hours, with 80 percent of this charge remaining after 1,000 charge-discharge cycles. At Apple's Worldwide Developers Conference (WWDC) on June 8, 2009, it was announced that the 13-inch unibody MacBook would be upgraded and re-branded as a MacBook Pro, leaving only the white polycarbonate MacBook in the MacBook line. It was also announced that the entire MacBook Pro line would use the non user-removable battery first introduced in the 17-inch MacBook Pro. The updated MacBook Pro 13- and the 15-inch would each have up to a claimed seven hours of battery life, while the 17-inch would keep"} +{"qid": "test2494", "pid": "6880361", "query": "when did macbook pro 13 inch come out", "answer": "October 2008", "passage": "\"MacBook Pro\"\nprocessors later that year. The product's second iteration, known as the \"\"unibody\"\" model, has a casing made from a single piece of aluminum. It debuted in October 2008 in 13- and 15-inch screen sizes. In January 2009, the 17-inch model was updated with the same unibody design. Subsequent updates brought upgraded Intel Core i5 and i7 processors and introduced Intel's Thunderbolt technology. Apple released the third generation of MacBook Pro with a 15-inch screen during WWDC 2012 and discontinued the 17-inch variant. The previous generation 13- and 15-inch unibody models continued to sell with updated processors. The third generation model"} +{"qid": "test2495", "pid": "2915128", "query": "the heart muscle is stimulated to contract by electrical impulses which are generated where", "answer": "the sinoatrial node", "passage": "Myocyte\nvary depending on the size of the muscle cell. During treppe (or summation) contraction muscles do not start at maximum efficiency; instead they achieve increased strength of contraction due to repeated stimuli. Tetanus involves a sustained contraction of muscles due to a series of rapid stimuli, which can continue until the muscles fatigue. Isometric contractions are skeletal muscle contractions that do not cause movement of the muscle. However, isotonic contractions are skeletal muscle contractions that do cause movement. Specialized cardiomyocytes located in the sinoatrial node are responsible for generating the electrical impulses that control the heart rate. These electrical impulses"} +{"qid": "test2495", "pid": "3119344", "query": "the heart muscle is stimulated to contract by electrical impulses which are generated where", "answer": "the sinoatrial node", "passage": "\"Electrical conduction system of the heart\"\nElectrical conduction system of the heart The electrical conduction system of the heart transmits signals generated usually by the sinoatrial node to cause contraction of the heart muscle. The pacemaking signal generated in the sinoatrial node travels through the right atrium to the atrioventricular node, along the Bundle of His and through bundle branches to cause contraction of the heart muscle. This signal stimulates contraction first of the right and left atrium, and then the right and left ventricles. This process allows blood to be pumped throughout the body. The conduction system consists of specialised heart muscle cells, and is"} +{"qid": "test2495", "pid": "12843684", "query": "the heart muscle is stimulated to contract by electrical impulses which are generated where", "answer": "the sinoatrial node", "passage": "\"Atrial fibrillation\"\nthe ordered stimulation of the myocardium that allows efficient contraction of the heart, thereby allowing blood to be pumped to the body. In AF, the normal regular electrical impulses generated by the sinoatrial node in the right atrium of the heart are overwhelmed by disorganized electrical impulses usually originating in the roots of the pulmonary veins. This leads to irregular conduction of ventricular impulses that generate the heartbeat. The primary pathologic change seen in atrial fibrillation is the progressive fibrosis of the atria. This fibrosis is due primarily to atrial dilation; however, genetic causes and inflammation may be factors in"} +{"qid": "test2495", "pid": "12843683", "query": "the heart muscle is stimulated to contract by electrical impulses which are generated where", "answer": "the sinoatrial node", "passage": "\"Atrial fibrillation\"\nthe atrial tissue, favouring the re-entry. There is a relationship between risk factors such as obesity and hypertension, with the appearance of diseases such as diabetes mellitus and sleep apnea-hypopnea syndrome, specifically, obstructive sleep apnea (OSA). These diseases are associated with an increased risk of AF due to their remodelling effects on the atrial substrate. The normal electrical conduction system of the heart allows the impulse that is generated by the sinoatrial node (SA node) of the heart to be propagated to and stimulate the myocardium (muscular layer of the heart). When the myocardium is stimulated, it contracts. It is"} +{"qid": "test2495", "pid": "14305000", "query": "the heart muscle is stimulated to contract by electrical impulses which are generated where", "answer": "the sinoatrial node", "passage": "\"Heart arrhythmia\"\ndifferent timing than usual and can be responsible for poorly coordinated contraction. Conditions that increase automaticity include sympathetic nervous system stimulation and hypoxia. The resulting heart rhythm depends on where the first signal begins: If it is the sinoatrial node, the rhythm remains normal but rapid; if it is an ectopic focus, many types of dysrhythmia may ensue. Re-entrant arrhythmias occur when an electrical impulse recurrently travels in a tight circle within the heart, rather than moving from one end of the heart to the other and then stopping. Every cardiac cell is able to transmit impulses of excitation in"} +{"qid": "test2499", "pid": "5780605", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "EuroMillions\nEuroMillions EuroMillions is a transnational lottery requiring 7 correct numbers to win the jackpot. It was launched on 7 February 2004 by France's Française des Jeux, Spain's \"\"Loterías y Apuestas del Estado\"\" and the United Kingdom's Camelot. The first draw was held on Friday 13 February 2004 in Paris. Initially, only the UK, France and Spain participated, with the Austrian, Belgian, Irish, Luxembourgish, Portuguese and Swiss lotteries joining for the 8 October 2004 drawing. Draws are held every Tuesday and Friday night at 20:45 CET in Paris. A standard EuroMillions ticket costs €2.50, £2.50 or CHF3.50 per line played, depending"} +{"qid": "test2499", "pid": "15529467", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"The National Lottery Draws\"\nthe day's Lotto and Thunderball draws and also how many winners there are. The same thing is also broadcast on BBC One on Tuesday nights after the local news opt-out showing the results of the Tuesday EuroMillions draw and UK millionaire raffle. \"\"National Lottery Stars\"\" are held each year and aired on BBC One. Until 2015, the ceremony's name was \"\"The National Lottery Awards\"\". It is currently presented by Ore Oduba. From 1998 to 2017, eighteen National Lottery game shows have aired. The Wednesday night draws were usually broadcast at 22:35 and present the Thunderball and Lotto draws. Until 2006,"} +{"qid": "test2499", "pid": "5780618", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "EuroMillions\nThe 50p was added due to weak exchange rates between the pound and the euro and to cover the expense of the new Millionaire Maker. On 24 September 2016 the price per line in the UK was increased by an additional 50p to £2.50. EuroMillions EuroMillions is a transnational lottery requiring 7 correct numbers to win the jackpot. It was launched on 7 February 2004 by France's Française des Jeux, Spain's \"\"Loterías y Apuestas del Estado\"\" and the United Kingdom's Camelot. The first draw was held on Friday 13 February 2004 in Paris. Initially, only the UK, France and Spain"} +{"qid": "test2499", "pid": "13809600", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"National Lottery (Ireland)\"\ntheir five main EuroMillions numbers in an additional draw for a fixed, non-rolling prize of €500,000. Players can also win fixed prizes of €2,000 for a match-4 and €20 for a match-3. The first Plus drawing was held on 15 June 2007. 76 percent of EuroMillions players now play Plus. Sales of Plus were €44.6 million in 2012, an increase of 3.7 percent over the previous year. In September 2012, the National Lottery introduced Daily Million to replace both Monday Million (a draw game with prizes up to €1 million, held once weekly on Monday nights) and All Or Nothing"} +{"qid": "test2499", "pid": "5780607", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "EuroMillions\nSeptember 24, 2016 the amount of lucky stars changed from a pool of 11 to a pool of 12 numbers. Decreasing the jackpot winning odds from 1:117million to 1:140million. From September 24, 2016 the cost of entry in Ireland and Spain rose to €2.50 per line. All prizes, including the jackpot, are tax-free (except in Switzerland, Spain and Portugal since 2013) and are paid as a lump sum. Draws take place at 20:45 every Tuesday and Friday in Paris. The results are published shortly after the draw on associated and independent websites around 23:00 hours. To participate in the EuroMillions"} +{"qid": "test2499", "pid": "5780615", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "EuroMillions\nJuly 12, 2011 is still considered the highest jackpot in the UK. In the UK, the total EuroMillions revenue is broken down as follows: When Chris and Colin Weir, one couple who won the EuroMillions, pledged to donate their prize money to good causes, cyber criminals started using the couple's name in their email scams to fool the general public and ultimately cheat them of money. In June 2007, with the success of the main EuroMillions game, the Irish National Lottery launched EuroMillions Plus. For an extra €1 per line, players could enter the additional draw with the top prize"} +{"qid": "test2499", "pid": "13809599", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"National Lottery (Ireland)\"\nnumber) or on a seven-number game (including the bonus number). Lotto 5-4-3-2-1 accounted for €13.1 million in sales in 2012. The National Lottery joined the transnational EuroMillions lottery on 8 October 2004. As of 2012, EuroMillions accounts for 24 percent of National Lottery sales. Several EuroMillions jackpots have been won or shared in Ireland: Irish sales of EuroMillions were €131.5 million in 2012, a 3.2 percent increase on the previous year. In June 2007, the National Lottery introduced \"\"Plus,\"\" an add-on to the main EuroMillions game available only to Irish players. For an extra €1 per line, players can enter"} +{"qid": "test2499", "pid": "20960289", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"Lottery syndicate\"\nin 2017, a syndicate of six hospital catering staff from Wales shared a £25 million EuroMillions jackpot prize. Lottery syndicate A lottery syndicate is a group of individuals who play the lottery together. By pooling their money and buying multiple tickets collectively, players increase their chance of winning a lottery draw and share any winnings between them. In the UK, 1 in 5 of top game prizes across Lotto, EuroMillions, and EuroMillions UK Millionaire Maker are won by syndicates. Lotteries have been around since the days of the Chinese Han dynasty, with keno slips believed to have financed significant landmarks"} +{"qid": "test2499", "pid": "13809576", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"National Lottery (Ireland)\"\nwith scratchcards, and the flagship drawing game, Lotto, began in March 1988. The National Lottery now operates three families of drawing games (Lotto, EuroMillions, and Daily Million), funds televised bingo and game shows, sells a wide range of scratchcards, and runs a number of Millionaire Raffles each year. National Lottery games are available online as well as through a network of over 3,700 retail agents nationwide. By the end of 2013, the National Lottery had achieved over €12 billion in cumulative sales, had paid out €6.7 billion in prizes, and had raised €4.4 billion for the good causes it supports."} +{"qid": "test2499", "pid": "15673455", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "Eurojackpot\nthe official draw i.e. Croatia, Denmark, Estonia, Finland, Germany, Iceland, Italy, Latvia, Lithuania, the Netherlands, Norway, Slovenia, Spain and Sweden. Czech Republic and Hungary joined on October 2014. Slovakia joined in October 2015 and Poland in September 2017. The organisers also provide official websites to support retail sales, where it is possible to view the results of the draws shortly after they are recorded. Spain is only country to have participate in both EuroMillions and Eurojackpot lottery games. A number of non-official online lottery sites provide tickets or bets on the Eurojackpot lottery. Some of these operators are state-licensed, while"} +{"qid": "test2499", "pid": "13809582", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"National Lottery (Ireland)\"\nthe National Lottery has expanded its product line to include the Lotto family of games, television bingo, televised game shows, regular \"\"Millionaire Raffles,\"\" participation in the transnational EuroMillions lottery, and a daily €1 million game called Daily Million. National Lottery tickets and scratchcards are sold by a network of over 3,700 agents around the country. In March 2009, the National Lottery began offering online sales of instant-win games, as well as key draw games such as Lotto and EuroMillions. Internet sales increased by 43 percent in 2012, to €8.7 million, with around 40,000 players registered to play games online. In"} +{"qid": "test2499", "pid": "8926648", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"Carole Machin\"\nCarole Machin Carole Machin (born 27 April 1978) is an English television presenter who is seen on TMF as the channel's news anchor and also introduces programmes under the 'TMF Kicks' banner. She appears in the factual consumer rights programme 'Don't Get Screwed' broadcast first on BBC three in October 2009. She also presented 'TMF Live' with Kate Edmondson. She worked as a presenter on now shut-down Freeview call-in gameshow channel \"\"Quiz Call\"\" for a stint from 2005–2006. Machin is presenting alongside Rebecca Wilcox on Gok Wan's \"\"How to Look Good Naked\"\". She also presents the National Lottery Euromillions Draw"} +{"qid": "test2499", "pid": "5780609", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "EuroMillions\nnumbers instead of the old 11. The prize structure as of Tuesday 27 September 2016 is as follows: The Prize Guarantee Fund is available to contribute to the jackpot, for example to boost the initial jackpot in a sequence of growing jackpots. The amount utilized each week is determined in advance by the participating lotteries. Effective 7 November 2009 new rules were put in place regarding rollovers. A new rule change of 12 January 2012 locks the Jackpot cap at €190,000,000 permanently and if the jackpot is not won after two draws, the prize money will be distributed amongst the"} +{"qid": "test2499", "pid": "12504045", "query": "how many numbers are in the euromillions draw", "answer": "7", "passage": "\"National Lottery (United Kingdom)\"\nThe Tuesday draw was added on 30 January 2018. The odds and payouts are as follows: On Saturday 7 February 2004 the lottery operator Camelot launched a pan-European lottery: EuroMillions. The first draw took place on Friday 13 February 2004 in Paris. The UK, France and Spain were involved initially. Lotteries from Austria, Belgium, Ireland, Luxembourg, Portugal and Switzerland joined the draw on 8 October 2004. The draws are currently made in Paris and shown recorded in the UK on the official website twice a week on Tuesdays and Fridays, approximately three hours after the draw has taken place. The"} +{"qid": "test25", "pid": "18754161", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"One Flight Down (Grey's Anatomy)\"\nOne Flight Down (Grey's Anatomy) \"\"One Flight Down\"\" is the twentieth episode of the eleventh season of the American television medical drama \"\"Grey's Anatomy\"\", and is the 240th episode overall. It aired on April 16, 2015 on ABC in the United States. The episode was written Austin Guzman and directed by David Greenspan. The episode features a plane crash in Seattle bringing patients to Grey Sloan Memorial and old memories of the season 8's tragic plane crash that claimed the lives of Mark Sloan (Eric Dane) and Lexie Grey (Chyler Leigh) back to Meredith Grey, Arizona Robbins and Owen Hunt."} +{"qid": "test25", "pid": "18754168", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"One Flight Down (Grey's Anatomy)\"\nthis season.\"\" One Flight Down (Grey's Anatomy) \"\"One Flight Down\"\" is the twentieth episode of the eleventh season of the American television medical drama \"\"Grey's Anatomy\"\", and is the 240th episode overall. It aired on April 16, 2015 on ABC in the United States. The episode was written Austin Guzman and directed by David Greenspan. The episode features a plane crash in Seattle bringing patients to Grey Sloan Memorial and old memories of the season 8's tragic plane crash that claimed the lives of Mark Sloan (Eric Dane) and Lexie Grey (Chyler Leigh) back to Meredith Grey, Arizona Robbins and"} +{"qid": "test25", "pid": "16531009", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Grey's Anatomy (season 9)\"\non August 27, 2013 by Buena Vista Home Entertainment. The season follows the characters dealing with the aftermath of the season eight plane crash that claimed the life of Lexie Grey (Chyler Leigh) and upon rescue Mark Sloan (Eric Dane), who dies after sustaining injuries from the crash. Derek Shepherd (Patrick Dempsey) finds his surgical career in doubt after badly damaging his hand but Callie Torres (Sara Ramirez) ultimately manages to save his hand. The show's protagonist Meredith Grey (Ellen Pompeo) deals with the loss of her half-sister Lexie and later discovers that she is pregnant. Cristina Yang (Sandra Oh)"} +{"qid": "test25", "pid": "16531013", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Grey's Anatomy (season 9)\"\noperating on their own surgeries. The early episodes of the season depict the characters dealing with the aftermath of the season eight plane crash that claimed the life of Lexie Grey (Chyler Leigh) and upon rescue Mark Sloan (Eric Dane), who dies in the first episode. Derek Shepherd (Patrick Dempsey) finds his surgical career in doubt after badly damaging his hand but ultimately his sister Liz (Neve Campbell) donates a nerve from her leg and Callie Torres (Sara Ramirez) is able to save his hand. Later, Shepherd receives more good news when his wife Meredith Grey (Ellen Pompeo) discovers that"} +{"qid": "test25", "pid": "4811516", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Grey's Anatomy\"\ncareers. However, all plans are put on hold when several doctors from Seattle Grace Mercy West Hospital are engaged in a plane crash, which kills Lexie and endangers Meredith, Shepherd, Yang, Robbins, and Sloan. At the conclusion of the eighth season, Altman is courteously fired by Hunt as she struggles to decide whether or not to take the job as Chief at the United States Army Medical Command (MEDCOM). In the season nine premiere, Sloan dies due to sustained injuries from the plane crash following a brief relapse of temporary health (the surge) and the remaining characters work through their"} +{"qid": "test25", "pid": "15598697", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Grey's Anatomy (season 8)\"\nplane crashes. In \"\"Flight\"\" the six doctors and the pilot fight to survive. Derek's hand is severely injured, as is Arizona's leg. Lexie is trapped and crushed beneath part of the plane. She and Mark finally confess their love to each other, and within moments, she dies. Mere seconds later, Meredith arrives too late, and is devastated by her sister's death. They soon realize that Mark has severe internal injuries. The season ends with the 5 remaining surgeons in peril, lost in the woods and not knowing when or if help will come. The season received mostly positive reviews. Tanner"} +{"qid": "test25", "pid": "13034802", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Arizona Robbins\"\nof Torres, she accepts her marriage proposal, and the two are married by Miranda Bailey (Chandra Wilson). As the fifth year residents are coming close to the end of their residency, Robbins urges Alex Karev (Justin Chambers) to work under her. At the end of the Grey's Anatomy (season 8), Robbins is hurt badly in a plane crash, resulting in her left leg being amputated. In the aftermath of the plane accident, in which Sloan and Lexie Grey were killed, the hospital is sued and eventually found guilty of negligence. Each victim including Shepherd, Meredith Grey (Ellen Pompeo), Cristina Yang"} +{"qid": "test25", "pid": "16467174", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Flight (Grey's Anatomy)\"\nher to write the finale, adding: \"\"I did not enjoy it. It made me sick and it made me sad.\"\" Rhimes also explained the departure of Leigh, whose character died after the plane crash, by saying that the two came to an agreement on the decision to kill Lexie, after extensive discussion. Speaking of Raver's departure whose character left Seattle Grace for MEDCOM, Rhimes elaborated that Raver was offered a contract renewal, but declined. The episode received mixed reviews among television critics, and it outperformed the previous episode in terms of both viewership and ratings. \"\"Flight\"\" was originally broadcast on"} +{"qid": "test25", "pid": "16467167", "query": "who died in the plane crash greys anatomy", "answer": "Dr. Lexie Grey", "passage": "\"Flight (Grey's Anatomy)\"\n(Dr. Meredith Grey)'s and Eric Dane (Dr. Mark Sloan)'s. \"\"Flight\"\" earned Rhimes an NAACP Image Award nomination and it was also nominated under several categories of \"\"Entertainment Weekly\"\" finale awards. Upon its initial airing, the episode was viewed in the United States by 11.44 million people, garnered a 4.1/11 Nielsen rating/share in the 18–49 demographic, ranking fourth for the night in terms of viewership, and registering as Thursday's highest-rated drama. After their plane crashes in the woods, Dr. Meredith Grey (Ellen Pompeo), Dr. Lexie Grey (Chyler Leigh), Dr. Cristina Yang (Sandra Oh), Dr. Arizona Robbins (Jessica Capshaw), Dr. Derek Shepherd"} +{"qid": "test25", "pid": "9936143", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Mark Sloan (Grey's Anatomy)\"\nhand, telling her that he has and will always love her. He and the remaining surviving crash victims are left stranded in the woods, mourning Lexie and fighting to stay alive. In the ninth-season premiere, it is discovered that Mark is on life support due to the extensive injuries he sustained in the plane crash and, as determined by his will, the machines would be turned off if he showed no signs of waking within 30 days. Flashbacks of some moments in Mark's life showcased him being videotaped as he was extending his congratulations to newlyweds Callie and Arizona. At"} +{"qid": "test25", "pid": "18891569", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Beautiful Doom\"\nlives. In the episode Meredith Grey (Ellen Pompeo) relives the memories of her half-sister Lexie Grey (Chyler Leigh) who died in the season eight finale plane crash when a patient with similar crush injuries comes into the hospital. The episode also focuses on Cristina Yang (Sandra Oh) who deals with the death of her Minnesota mentor Dr. Craig Thomas (William Daniels) in the middle of surgery. Meredith in spite of opposition from Richard Webber (James Pickens Jr.) tries to treat the crash victim while dealing with her personal feelings relating Lexie. She also juggles her daughter Zola at the hospital"} +{"qid": "test25", "pid": "18754165", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"One Flight Down (Grey's Anatomy)\"\nand Meredith dealing with their respective guilt and PTSD, along with Maggie learning about the crash and Lexie, were the strongest parts of the episode.\"\" also praising Kevin McKidd, \"\"Owen opening up about his guilt about being responsible for signing off on the plane that crashed was my favorite aspect of revisiting the fatal events from a few seasons ago. Kevin McKidd was so great in that scene.\"\" \"\"Entertainment Weekly\"\" praised Owen's character saying, \"\"Owen’s not—his guilt is irrational, but it’s real. And to see that, something that so many people struggle with in real life, on TV is both"} +{"qid": "test25", "pid": "16467169", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Flight (Grey's Anatomy)\"\na piece of the plane. While Meredith searches for Shepherd, Yang and Sloan try to move the debris off Lexie. Eventually, the two realize that they cannot save her, so Sloan holds her hand while she dies, telling her that he loves her. As Sloan tells her of the life the two were meant to have together, Lexie dies with a smile on her face just as Meredith and Yang are approaching. Lexie's death devastates Meredith, who is still desperately trying to find her husband. Eventually, she and Shepherd reunite and they fix his hand as best as they can."} +{"qid": "test25", "pid": "16467165", "query": "who died in the plane crash greys anatomy", "answer": "Dr. Lexie Grey", "passage": "\"Flight (Grey's Anatomy)\"\nFlight (Grey's Anatomy) \"\"Flight\"\" is the twenty-fourth and final episode of the eighth season of the American television medical drama \"\"Grey's Anatomy\"\", and the show's 172nd episode overall. It was written by series creator Shonda Rhimes, and directed by Rob Corn. The episode was originally broadcast on the American Broadcasting Company (ABC) in the United States on May 17, 2012. In the episode, six doctors from Seattle Grace Mercy West Hospital who are victims of an aviation accident fight to stay alive, but Dr. Lexie Grey (Chyler Leigh) ultimately dies. Other storylines occur in Seattle where Dr. Richard Webber (James"} +{"qid": "test25", "pid": "16467180", "query": "who died in the plane crash greys anatomy", "answer": "Lexie", "passage": "\"Flight (Grey's Anatomy)\"\npoll that judged all the television season finales of the year, Lexie's death was voted the \"\"Top Tissue Moment\"\", while Robbins' injured leg and Shepherd's mangled hand were voted the \"\"Most Disturbing Image\"\". The ending of the episode was also considered as the \"\"Best Ending to an Otherwise So-So Season\"\". Lexie's death was also nominated under the \"\"Best (Presumed) Death\"\" category, while the plane crash's aftermath was nominated as the \"\"Best Non-romantic Cliffhanger\"\", and the episode in entirety was nominated for the special award for \"\"Biggest Regret That I Didn't See It, I Just Heard or Read About It\"\". \"\"Entertainment"} +{"qid": "test250", "pid": "2412236", "query": "points outside the production possibilities curve represent combinations of products that are", "answer": "unattainable", "passage": "\"Production–possibility frontier\"\nattainable point: it can be produced with currently available resources. Points that lie to the right of the production possibilities curve are said to be unattainable because they cannot be produced using currently available resources. Points that lie strictly to the left of the curve are said to be inefficient, because existing resources would allow for production of more of at least one good without sacrificing the production of any other good. An efficient point is one that lies on the production possibilities curve. At any such point, more of one good can be produced only by producing less of"} +{"qid": "test2500", "pid": "17951535", "query": "who sang my bucket got a hole in it", "answer": "Hank Williams", "passage": "\"My Bucket's Got a Hole in It\"\nMy Bucket's Got a Hole in It \"\"My Bucket's Got a Hole in It\"\" is a song widely attributed to Clarence Williams, who obtained a copyright in 1933. The song became popular performed by Hank Williams for MGM and reached #4 on the country chart in 1949. A rendering (1927) by Tom Gates and his Orchestra (on Gennett 6184) as \"\"The Bucket's Got A Hole In It\"\" gives writing credit to musicians Lee Blevins and Victor Sells. This version predates the C. Williams copyright. The original melody evolved from the second theme of \"\"Long Lost Blues\"\" published in 1914 by"} +{"qid": "test2500", "pid": "17951536", "query": "who sang my bucket got a hole in it", "answer": "Hank Williams", "passage": "\"My Bucket's Got a Hole in It\"\nJ. Paul Wyer and H. Alf Kelley. The \"\"Long Lost Blues\"\" theme was a variation of \"\"Bucket's Got a Hole in It\"\", a motif that appears in several versions of \"\"Keep A-Knockin\"\". This tune later became the basis for several versions of the song, \"\"You Can't Come In\"\" recorded by multiple artists. However, \"\"Bucket's Got a Hole in It\"\" has also been attributed to Buddy Bolden, which would date it before 1906. As one critic noted, Hank Williams \"\"could have been given this ditty to record, [but] he may have been familiar with this ditty from previous recordings or had"} +{"qid": "test2500", "pid": "1416985", "query": "who sang my bucket got a hole in it", "answer": "Hank Williams", "passage": "\"Hank Williams\"\nto have been the one who purchased the guitar for him. While living in Georgiana, Williams met Rufus \"\"Tee-Tot\"\" Payne, a street performer. Payne gave Williams guitar lessons in exchange for meals prepared by Lillie Williams or money. Payne's base musical style was blues. He taught Williams chords, chord progressions, bass turns, and the musical style of accompaniment that he would use in most of his future songwriting. Later on, Williams recorded one of the songs that Payne taught him, \"\"My Bucket's Got a Hole in It\"\". Williams' musical style contained influences from Payne along with several other country influences,"} +{"qid": "test2500", "pid": "954102", "query": "who sang my bucket got a hole in it", "answer": "Hank Williams", "passage": "\"Clarence Williams (musician)\"\nwere written by others but which Williams bought all rights to outright, as was a common practice in the music publishing business at the time. Clarence Williams was also credited as the author of Hank Williams' 1949 hit \"\"My Bucket's Got a Hole in It\"\", a song that was later recorded by Louis Armstrong. In 1970, Williams was posthumously inducted into the Songwriters Hall of Fame. Clarence Williams (musician) Clarence Williams (October 6, 1898 or October 8, 1893 – November 6, 1965) was an American jazz pianist, composer, promoter, vocalist, theatrical producer, and publisher. Williams was born in Plaquemine, Louisiana,"} +{"qid": "test2500", "pid": "17951540", "query": "who sang my bucket got a hole in it", "answer": "Hank Williams", "passage": "\"My Bucket's Got a Hole in It\"\nIn the essay to the 1990 Polygram box set \"\"Hank Williams: The Original Singles Collection\"\", Colin Escott quotes Williams in an interview with Ralph Gleason in 1952: \"\"I was shinin' shoes and sellin' newspapers and following this old Nigrah around to get him to teach me how to play the git-tar. I'd give him 15 cents or whatever I could get ahold of for a lesson.\"\" Understandably, producer Fred Rose was wary of the song's commercial potential; as country music historian Escott notes, \"\"Fred Rose's opposition to the song had a lot to do with the fact that it mentioned"} +{"qid": "test2501", "pid": "190987", "query": "who spoke the words ich bin ein berliner", "answer": "U.S. President John F. Kennedy", "passage": "\"Ich bin ein Berliner\"\nIch bin ein Berliner \"\"\"\"Ich bin ein Berliner\"\"\"\" (, \"\"I am a Berliner\"\") is a quotation of U.S. President John F. Kennedy, in a speech given on June 26, 1963, in West Berlin. It is widely regarded as the best-known speech of the Cold War and the most famous anti-communist speech. Kennedy aimed to underline the support of the United States for West Germany 22 months after Soviet-occupied East Germany erected the Berlin Wall to prevent mass emigration to the West. The message was aimed as much at the Soviets as it was at Berliners and was a clear statement"} +{"qid": "test2501", "pid": "191008", "query": "who spoke the words ich bin ein berliner", "answer": "U.S. President John F. Kennedy", "passage": "\"Ich bin ein Berliner\"\ncontext it is clear. Ich bin ein Berliner \"\"\"\"Ich bin ein Berliner\"\"\"\" (, \"\"I am a Berliner\"\") is a quotation of U.S. President John F. Kennedy, in a speech given on June 26, 1963, in West Berlin. It is widely regarded as the best-known speech of the Cold War and the most famous anti-communist speech. Kennedy aimed to underline the support of the United States for West Germany 22 months after Soviet-occupied East Germany erected the Berlin Wall to prevent mass emigration to the West. The message was aimed as much at the Soviets as it was at Berliners and"} +{"qid": "test2501", "pid": "355200", "query": "who spoke the words ich bin ein berliner", "answer": "U.S. President John F. Kennedy", "passage": "\"Rathaus Schöneberg\"\nbecame the city hall for West Berlin. In 1950 the Freedom Bell (\"\"Freiheitsglocke\"\"), a gift by the United States, was installed in the rebuilt tower. During the Berlin Blockade, the Uprising of 1953 and the Hungarian Revolution of 1956, Rudolph-Wilde-Platz in front of the building became a gathering place for protest rallies. After the construction of the Berlin Wall in 1961, the steps of Rathaus Schöneberg were the location where U.S. President John F. Kennedy spoke on 26 June 1963, proclaiming \"\"Ich bin ein Berliner\"\". On the night of his assassination, several thousand Berliners spontaneously gathered at the square, which"} +{"qid": "test2501", "pid": "45049", "query": "who spoke the words ich bin ein berliner", "answer": "U.S. President John F. Kennedy", "passage": "\"Berlin Wall\"\n22 months after the erection of the Berlin Wall, U.S. President John F. Kennedy visited West Berlin. Speaking from a platform erected on the steps of Rathaus Schöneberg for an audience of 450,000 he declared in his \"\"Ich bin ein Berliner\"\" speech the support of the United States for West Germany and the people of West Berlin in particular: The message was aimed as much at the Soviets as it was at Berliners and was a clear statement of U.S. policy in the wake of the construction of the Berlin Wall. The speech is considered one of Kennedy's best, both"} +{"qid": "test2502", "pid": "2760404", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "Phosphocreatine\nthe blood by the liver where it travels mainly to the muscle cells (95% of the body's creatine is in muscles), and to a lesser extent the brain, heart, and pancreas. Once inside the cells it is transformed into phosphocreatine by the enzyme complex creatine kinase, which makes it able to donate its phosphate group to convert adenosine diphosphate (ADP) into adenosine triphosphate (ATP). This process is an important component of all vertebrates' bioenergetic systems. For instance, while the human body only produces 250g of ATP daily, it recycles its entire body weight in ATP each day through creatine phosphate."} +{"qid": "test2502", "pid": "2167213", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "Creatine\nCreatine Creatine ( or is an organic compound with the nominal formula (HN)(HN)CN(CH)CHCOH. This species exists in various modifications (tautomers) in solution. Creatine is found in vertebrates where it facilitates recycling of adenosine triphosphate (ATP), the energy currency of the cell, primarily in muscle and brain tissue. Recycling is achieved by converting adenosine diphosphate (ADP) back to ATP via donation of phosphate groups. Creatine also acts as a buffer. In 1912, Harvard University researchers Otto Folin and Willey Glover Denis found evidence that ingesting creatine can dramatically boost the creatine content of the muscle. In the late 1920s, after finding"} +{"qid": "test2502", "pid": "2167230", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "Creatine\nthe evidence did not provide a reliable foundation for treatment decisions, due to risk of bias, small sample sizes, and the short duration of trials. Creatine Creatine ( or is an organic compound with the nominal formula (HN)(HN)CN(CH)CHCOH. This species exists in various modifications (tautomers) in solution. Creatine is found in vertebrates where it facilitates recycling of adenosine triphosphate (ATP), the energy currency of the cell, primarily in muscle and brain tissue. Recycling is achieved by converting adenosine diphosphate (ADP) back to ATP via donation of phosphate groups. Creatine also acts as a buffer. In 1912, Harvard University researchers Otto"} +{"qid": "test2502", "pid": "5721890", "query": "where is creatine phosphate found in the body", "answer": "muscle cells", "passage": "\"Bodybuilding supplement\"\ndate most prohormone products have not been thoroughly studied, and the health effects of prolonged use are unknown. Although initially available over the counter, their purchase was made illegal without a prescription in the US in 2004, and they hold similar status in many other countries. They remain legal, however, in the United Kingdom and the wider European Union. Their use is prohibited by most sporting bodies. Creatine is an organic acid naturally occurring in the body that supplies energy to muscle cells for short bursts of energy (as required in lifting weights) via creatine phosphate replenishment of ATP. A"} +{"qid": "test2502", "pid": "3460820", "query": "where is creatine phosphate found in the body", "answer": "muscle cells", "passage": "\"Muscle fatigue\"\nThey include molecules such as adenosine triphosphate (ATP), glycogen and creatine phosphate. ATP binds to the myosin head and causes the ‘ratchetting’ that results in contraction according to the sliding filament model. Creatine phosphate stores energy so ATP can be rapidly regenerated within the muscle cells from adenosine diphosphate (ADP) and inorganic phosphate ions, allowing for sustained powerful contractions that last between 5–7 seconds. Glycogen is the intramuscular storage form of glucose, used to generate energy quickly once intramuscular creatine stores are exhausted, producing lactic acid as a metabolic byproduct. Substrate shortage is one of the causes of metabolic fatigue."} +{"qid": "test2502", "pid": "17673810", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "\"Creatine transporter defect\"\nX-linked recessive manner. This usually results in hemizygous males having severe symptoms, while heterozygous female carriers tend to have less severe and more varying symptoms. The creatine phosphate system is needed for the storage and transmission of phosphate-bound energy in the brain and muscle. The brain and muscle have particularly high metabolic demands, therefore, making creatine a necessary molecule in ATP homeostasis. In regard to the brain, in order for creatine to reach the brain, it must first pass through the blood–brain barrier (BBB). The BBB separates blood from brain interstitial fluid and is, therefore, able to regulate the transfer"} +{"qid": "test2502", "pid": "2760403", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "Phosphocreatine\nPhosphocreatine Phosphocreatine, also known as creatine phosphate (CP) or PCr (Pcr), is a phosphorylated creatine molecule that serves as a rapidly mobilizable reserve of high-energy phosphates in skeletal muscle and the brain to recycle adenosine triphosphate, the energy currency of the cell. In the kidneys, the enzyme catalyzes the conversion of two amino acids — arginine and glycine — into guanidinoacetate (also called glycocyamine or GAA), which is then transported in the blood to the liver. A methyl group is added to GAA from the amino acid methionine by the enzyme GAMT, forming non-phosphorylated creatine. This is then released into"} +{"qid": "test2502", "pid": "6558607", "query": "where is creatine phosphate found in the body", "answer": "muscle cells", "passage": "\"Muscle weakness\"\ncell. This causes there to be less calcium available for the muscle cell. In addition an enzyme is proposed to be activated by this released calcium which eats away at muscle fibers. Substrates within the muscle generally serve to power muscular contractions. They include molecules such as adenosine triphosphate (ATP), glycogen and creatine phosphate. ATP binds to the myosin head and causes the ‘ratchetting’ that results in contraction according to the sliding filament model. Creatine phosphate stores energy so ATP can be rapidly regenerated within the muscle cells from adenosine diphosphate (ADP) and inorganic phosphate ions, allowing for sustained powerful"} +{"qid": "test2502", "pid": "2760408", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "Phosphocreatine\nDahlem, Berlin, contributed to the understanding of the phosphocreatine's role in the cell. Phosphocreatine Phosphocreatine, also known as creatine phosphate (CP) or PCr (Pcr), is a phosphorylated creatine molecule that serves as a rapidly mobilizable reserve of high-energy phosphates in skeletal muscle and the brain to recycle adenosine triphosphate, the energy currency of the cell. In the kidneys, the enzyme catalyzes the conversion of two amino acids — arginine and glycine — into guanidinoacetate (also called glycocyamine or GAA), which is then transported in the blood to the liver. A methyl group is added to GAA from the amino acid"} +{"qid": "test2502", "pid": "2503313", "query": "where is creatine phosphate found in the body", "answer": "muscle cells", "passage": "Weakness\nwithin the muscle cells themselves. New research from scientists at Columbia University suggests that muscle fatigue is caused by calcium leaking out of the muscle cell. This makes less calcium available for the muscle cell. In addition, the Columbia researchers propose that an enzyme activated by this released calcium eats away at muscle fibers. Substrates within the muscle generally serve to power muscular contractions. They include molecules such as adenosine triphosphate (ATP), glycogen and creatine phosphate. ATP binds to the myosin head and causes the ‘ratchetting’ that results in contraction according to the sliding filament model. Creatine phosphate stores energy"} +{"qid": "test2502", "pid": "2167217", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "Creatine\nphosphocreatine (PCr) to generate ATP. It follows that ATP, not PCr is directly consumed in muscle contraction. CK uses creatine to \"\"buffer\"\" the ATP/ADP ratio. Creatine synthesis primarily occurs in the liver and kidneys. On average, it is produced endogenously at an estimated rate of about 8.3 or 1 gram per day in young adults. Creatine is also obtained through the diet at a rate of about 1 gram per day from an omnivorous diet. Most of the human body's total creatine and phosphocreatine stores are found in skeletal muscle, while the remainder is distributed in the blood, brain, and"} +{"qid": "test2502", "pid": "10155520", "query": "where is creatine phosphate found in the body", "answer": "brain", "passage": "\"Arginine:glycine amidinotransferase\"\nand had low urinary guanidinoacetate concentrations, was identified as a new genetic defect in creatine metabolism. It is one of three cerebral creatine deficiencies. Patients with brain creatine deficiency present nonspecific neurologic symptoms, including mental retardation, language disorders, epilepsy, autistic-like behavior, neurologic deterioration, and movement disorders. A deficiency in AGAT results in a creatine deficiency in the body. The treatment for this is creatine supplements since the body cannot make the creatine on its own. The positive results of creatine treatment (in AGAT deficiencies) and the observation that fetal and early postnatal development are normal in these patients support the"} +{"qid": "test2504", "pid": "7015522", "query": "what is the highest scoring letter in scrabble", "answer": "Q", "passage": "\"Word Up (video game)\"\nword LAVA would score . The hierarchy of letters is similar to that of Scrabble; Q and Z are the highest-scoring tiles (each 10) followed by X and J (each 8) and so on, the most notable variance is that here L is worth five as opposed to just one in Scrabble. The player starts with two minutes to find as many words as he can; if he manages to use Q, Z, X, or J in any word he is awarded a further 10 seconds. After each successful entry the letters used are discarded with the matrix replacing those"} +{"qid": "test2504", "pid": "6286341", "query": "what is the highest scoring letter in scrabble", "answer": "Q", "passage": "\"Scrabble variants\"\nare formed. This variation is also used on \"\"Scrabble Showdown\"\". This game has the same size board and nearly the same scoring system as Scrabble. The major differences are the inclusion of twelve wild tiles marked with an asterisk that may represent one letter or any series of letters and special board squares that convert a regular letter tile into a wild tile (the tile in question is placed upside down on such a square). The nature of these changes shifts the emphasis of the game from playing short words to playing words of any length. For example, QUA*IST, could"} +{"qid": "test2505", "pid": "2828167", "query": "when did the cubs won a world series", "answer": "1908", "passage": "\"Curse of the Billy Goat\"\nnever win another National League (NL) pennant (at least for the remainder of Sianis's life). The Cubs lost the 1945 World Series to the Detroit Tigers, and did not win a World Series championship again until 2016. The Cubs had last won the World Series in 1908. After the incident with Sianis and Murphy, the Cubs did not play in the World Series for the next 71 years until, on the 46th anniversary of Billy Sianis's death, the \"\"curse\"\" was broken when they defeated the Los Angeles Dodgers 5–0 in game 6 of the 2016 National League Championship Series to"} +{"qid": "test2505", "pid": "85869", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"Chicago Cubs\"\nenjoyed one more pennant at the close of World War II, finishing 98–56. Due to the wartime travel restrictions, the first three games of the 1945 World Series were played in Detroit, where the Cubs won two games, including a one-hitter by Claude Passeau, and the final four were played at Wrigley. The Cubs lost the series, and did not return until the 2016 World Series. After losing the 1945 World Series to the Detroit Tigers, the Cubs finished with a respectable 82-71 record in the following year, but this was only good enough for third place. In the following"} +{"qid": "test2505", "pid": "3983483", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"Terry Francona\"\n19, 2016, Terry Francona's Indians beat the Toronto Blue Jays to move on to the World Series, where the Indians won game 1 against the Chicago Cubs 6-0 to extend his World Series record to 9–0. He lost his first World Series game when the Indians were defeated by the Cubs in game 2 by a score of 5–1. The Indians won game 3 against the Chicago Cubs 1–0. The Indians won game 4 against the Chicago Cubs 7–2 to give Cleveland a 3–1 lead. The Indians would fall to the Cubs 3–2 in game 5. Cleveland went on to"} +{"qid": "test2505", "pid": "2212398", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"Steve Bartman incident\"\ndid not win another playoff game after the incident until 2015 when they defeated the Pittsburgh Pirates in the wild card game, but they were swept in the NLCS by the New York Mets. In 2016, the team advanced to the World Series for the first time since 1945, ending a 71-year-old drought. By some accounts, this represented the end of this particular \"\"curse\"\", since the Cubs had won the NLCS pennant, which they were unable to do in 2003. The Cubs then overcame a 3 games to 1 deficit to defeat the Cleveland Indians in the 2016 World Series,"} +{"qid": "test2505", "pid": "18248713", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"Spencer Patton\"\nRangers for Jason Frasor on July 16, 2014. He made his major league debut on September 4, 2014. On November 20, 2015, the Rangers traded Patton to the Chicago Cubs for minor leaguer Frandy Delarosa. In 2016, Patton made 16 relief appearances for the Cubs and finished 1–1 with a 5.48 ERA. The Cubs finished the season 103–58 and eventually won the 2016 World Series. Patton did not participate in the playoffs, but was still on the 40-man roster at the time and won his first World Series title. On November 23, 2016, Patton signed with the Yokohama DeNA BayStars"} +{"qid": "test2505", "pid": "85855", "query": "when did the cubs won a world series", "answer": "1908", "passage": "\"Chicago Cubs\"\nCubs have appeared in a total of eleven World Series. The 1906 Cubs won 116 games, finishing 116–36 and posting a modern-era record winning percentage of , before losing the World Series to the Chicago White Sox (\"\"The Hitless Wonders\"\") by four games to two. The Cubs won back-to-back World Series championships in 1907 and 1908, becoming the first major league team to play in three consecutive World Series, and the first to win it twice. Most recently, the Cubs won the 2016 National League Championship Series and 2016 World Series, which ended a 71-year National League pennant drought and"} +{"qid": "test2505", "pid": "4342174", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"1932 World Series\"\nnext two hitters to end the series. The Yankees had won their fourth World Series, and their 12th consecutive Series game. It was the last Series for Yankee mainstays Ruth, Combs and Pennock. The Cubs extended their World Series victory drought to 24 years with their humiliating loss, their fourth consecutive in the Fall Classic after 1910, 1918 & 1929 (to the A's, Red Sox and A's again respectively). The Cubs' drought would end up lasting 108 years, having been finally ended when the Cubs defeated the Cleveland Indians in seven games to win the 2016 World Series. 1932 World"} +{"qid": "test2505", "pid": "6366357", "query": "when did the cubs won a world series", "answer": "1908", "passage": "\"Grant DePorter\"\nThe fan club was dismantled by unpopular Cubs' owner Charles Murphy after the Cubs had won the World Series in 1908 and the Cubs have not won the World Series since. Cub fans hope that by bringing back the West Side Rooters Social Club, the Chicago Cubs will finally win the World Series. During the same week the Cubs clinched the 2008 Central Division title, DePorter released a book that he co-authored called \"\"Hoodoo: Unraveling the 100 Year Mystery of the Chicago Cubs\"\", an entertaining account of the events contributing to the team's World Series drought. In it, DePorter discusses"} +{"qid": "test2505", "pid": "2212407", "query": "when did the cubs won a world series", "answer": "1908", "passage": "\"Steve Bartman incident\"\npennant, many Cubs fans petitioned for the team to allow Bartman to throw out a first pitch during the 2016 World Series. However, Murtha told CNN that Bartman did not want to be in the spotlight, and that there is \"\"probably a slim, none, and no chance\"\" that Bartman would agree to throw out a first pitch. The World Series went on without Bartman making any public appearances. On Wednesday Night, November 2, 2016, the Chicago Cubs won the World Series for the first time since 1908, ending the so-called Curse of the Billy Goat. After their World Series win,"} +{"qid": "test2505", "pid": "19305687", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"Rob Zastryzny\"\nto the major leagues. Zastryzny made 11 appearances for the Cubs to finish 2016, and finished 1-0 with a 1.13 ERA. The Cubs would eventually win the 2016 World Series, ending their 108-year drought. Zastryzny won his first World Series title. Zastryzny was added to the roster for the 2016 National League Championship Series, replacing Tommy La Stella who had been on the roster for the 2016 National League Division Series. Although eligible to play, he did not appear in any NLCS games. Zastryzny was replaced by Kyle Schwarber on the roster for the 2016 World Series. He was designated"} +{"qid": "test2505", "pid": "10188577", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"History of the Chicago Cubs\"\n1945 World Series in seven games. Although the Cubs occasionally appeared in post-season series since divisional play began in 1969, they did not appear in or win a World Series again until 2016. After the Curse of the Billy Goat, a few years into the post-World War II era, astute observers of the game began to suspect that something had gone wrong with the Cubs franchise, and that it might take them a long time to recover. After losing the 1945 World Series, the Cubs finished 82-71, good for third place in 1946, but did not enter post-season play. In"} +{"qid": "test2505", "pid": "12571771", "query": "when did the cubs won a world series", "answer": "2016", "passage": "\"Chicago Cubs minor league players\"\nthen enrolled at Oklahoma State University and pitched for the Oklahoma State Cowboys. He did not pitch in 2015 due to a sprained ulnar collateral ligament of the elbow, which did not require surgery. He pitched extensively in 2016, as Oklahoma State reached the 2016 College World Series. Hatch won the Big 12 Conference Baseball Pitcher of the Year Award. The Cubs selected Hatch in the third round, with the 104th overall selection, of the 2016 MLB draft. He signed with the Cubs, receiving a $573,900 signing bonus. He did not pitch in 2016 after signing. He made his professional"} +{"qid": "test2505", "pid": "4342447", "query": "when did the cubs won a world series", "answer": "1908", "passage": "\"1908 World Series\"\n1908 World Series The 1908 World Series matched the defending champion Chicago Cubs against the Detroit Tigers in a rematch of the 1907 Series. In this first-ever rematch of this young event, the Cubs won in five games for their second consecutive World Series title. The 1908 World Series was significant for being the last World Series championship the Cubs would win until the World Series (108 years later). Before the 2016 series, the team would go on to appear in seven World Series; in , , , , , , and , losing each time. The Cubs had been"} +{"qid": "test2506", "pid": "4110912", "query": "when did last podcast on the left start", "answer": "2011", "passage": "\"Metal Hammer\"\nof June 2011, Bezer has left Metal Hammer to pursue work elsewhere, and was replaced on the podcast by stand-up comedian Stephen Hill. Gill also left Metal Hammer on 3 February 2012, the date he last featured on the podcast. He was replaced on the Podcast by Metal Hammer Deputy Editor at the time Merlin Alderslade. The Podcast has developed a cult following among listeners, with a Facebook page containing over 5000 fans who, at their peak, have been influential in increasing exposure for bands such as britrockers Max Raptor and progressive metal band Bleeding Oath. The podcast was taken"} +{"qid": "test2506", "pid": "9457483", "query": "when did last podcast on the left start", "answer": "2011", "passage": "\"Jamie White\"\nfrom KYSR when the station announced that the \"\"Jamie, Jack, & Stench\"\" morning show would not be returning from the holiday hiatus. On March 8, 2007, Jack and Stench (Stretch) started their own subscription podcast. Jamie White joined them from September 14, 2007, to June 8, 2009. She left the podcast to start a new job with 106.5 The Buzz in Sacramento, CA, on the Morning Show with Ryan Beaman. On April 22, 2011, Jamie announced that she was leaving 106.5 The Buzz in Sacramento to stay home and raise her son. On January 9, 2012, Jamie White returned to"} +{"qid": "test2506", "pid": "10594211", "query": "when did last podcast on the left start", "answer": "2011", "passage": "\"Don McLeroy\"\nReagan — he needs to get credit for saving the world from communism and for the good economy over the last twenty years because he lowered taxes.\"\" McLeroy also did an interview about the hearings and the documentary on \"\"The Skeptics' Guide to the Universe\"\". In 2013, Thomas Ratliff, the board vice chair, described the body as \"\"far different\"\" in political complexion than it was under McLeroy's leadership. Even though Republicans hold two thirds of the seats on the board, social conservatives are no longer a majority. And starting in 2011 school districts could begin ordering textbooks and"} +{"qid": "test2506", "pid": "17823894", "query": "when did last podcast on the left start", "answer": "2011", "passage": "\"Henry Zebrowski\"\nIn 2006, Zebrowski moved to New York City, where he continued to perform as a comedian. From the late 2000s, he had minor roles in TV shows and series such as \"\"\"\" and \"\"Blue Bloods\"\". In 2010 he had a role in the drama \"\"White Irish Drinkers\"\". Since 2011, Zebrowski has cohosted the horror/comedy podcast \"\"The Last Podcast on the Left\"\" alongside Marcus Parks and Ben Kissel. The trio also appear on \"\"The Last Stream on the Left\"\" on Adult Swim and perform live shows throughout the US. Zebrowski has appeared in both comedic and dramatic films, most notably Martin"} +{"qid": "test2506", "pid": "5698990", "query": "when did last podcast on the left start", "answer": "2011", "passage": "\"Paul Scheer\"\nfilms. In 2011, iTunes selected \"\"How Did this Get Made?\"\" as its favorite comedy podcast of the year. In 2012, \"\"LA Weekly\"\" named the show \"\"The Best Comedy Podcast\"\". Guests have included Kevin Smith, Damon Lindelof, \"\"Weird\"\" Al Yankovic, Danny Trejo, Vanilla Ice, Adam Scott, Nick Kroll, and Amy Schumer. Scheer also is a co-founder of Wolfpop, which was a sister network of the Earwolf podcast network and has since merged with Earwolf. In 2018, Sheer started Unspooled, a podcast dedicated to watching and discussing all 100 films on the American Film Institute's top movies of all time, with co-host"} +{"qid": "test2507", "pid": "15117788", "query": "india's first arctic research station set up in 2008 what is the name", "answer": "Himadri Station", "passage": "\"Himadri Station\"\nhas been deployed in the Kongsfjorden fjord of the Arctic, roughly halfway between Norway and the North Pole is named \"\"IndARC\"\" Himadri Station The Himadri's functions include long term monitoring of the fjord (Kongsfjorden) dynamics, and atmospheric research. The primary goals of India's research includes research on aerosol radiation, space weather, food-web dynamics, microbial communities, glaciers, sedimentology, and carbon recycling. The research base has devoted time for the research of governance and policy of the Arctic. India has prioritised research and study in the fields of genetics, glaciology, geology, pollution in the atmosphere, and space weather among other fields. In"} +{"qid": "test2507", "pid": "17957808", "query": "india's first arctic research station set up in 2008 what is the name", "answer": "Himadri Station", "passage": "\"History of Ny-Ålesund\"\nMapping Authority closed its operations in Ny-Ålesund in June 2004, although China opened its Arctic Yellow River Station the following month. In August Kongsfjorden was preserved to only allow it to be used for research, hindering fishing vessels from entering the bay. India opened its Himadri Station in July 2008. History of Ny-Ålesund Ny-Ålesund was first discovered in 1610, when coal deposits were discovered around Kongsfjorden. Not until the 1860s were they investigated more carefully. Ålesund-based Peter Brandal bought the claims in 1916 and established the company Kings Bay. The town, originally known as Brandal City and Kings Bay, was"} +{"qid": "test2507", "pid": "998614", "query": "india's first arctic research station set up in 2008 what is the name", "answer": "Himadri Station", "passage": "Spitsbergen\nbetween March and August; overnight stays have quintupled from 1991 to 2008, when there were 93,000 guest-nights. Research on Svalbard centers on Longyearbyen and Ny-Ålesund, the most accessible areas in the high Arctic. Norway grants permission for any nation to conduct research on Svalbard, resulting in the Polish Polar Station, Indian Himadri Station, and the Chinese Arctic Yellow River Station, plus Russian facilities in Barentsburg. The University Centre in Svalbard in Longyearbyen offers undergraduate, graduate and postgraduate courses to 350 students in various arctic sciences, particularly biology, geology and geophysics. Courses are provided to supplement studies at the mainland universities;"} +{"qid": "test2507", "pid": "5079469", "query": "india's first arctic research station set up in 2008 what is the name", "answer": "Himadri Station", "passage": "\"Research station\"\nResearch station A research station is a station that is built for the purpose of conducting scientific research. Research station sites might include remote areas of the world, oceans, as well as outer space, such as the International Space Station. Some research stations are located in the Arctic, such as the Northeast Science Station, McGill Arctic Research Station and Himadri Station. Some stations in the Arctic are manned drifting ice stations, built on the ice of the high latitudes of the Arctic Ocean. Many nations also have research stations located in Antarctica; Showa Station, Halley and Troll are examples. There"} +{"qid": "test2507", "pid": "15117785", "query": "india's first arctic research station set up in 2008 what is the name", "answer": "Himadri Station", "passage": "\"Himadri Station\"\nHimadri Station The Himadri's functions include long term monitoring of the fjord (Kongsfjorden) dynamics, and atmospheric research. The primary goals of India's research includes research on aerosol radiation, space weather, food-web dynamics, microbial communities, glaciers, sedimentology, and carbon recycling. The research base has devoted time for the research of governance and policy of the Arctic. India has prioritised research and study in the fields of genetics, glaciology, geology, pollution in the atmosphere, and space weather among other fields. In 2012–2013, a total of 25 scientists visited the base which was staffed for 185 days to carry out studies under 10"} +{"qid": "test2508", "pid": "13847512", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Immigration to Pakistan\"\nImmigration to Pakistan Immigration to Pakistan refers to the settlement of foreign nationals in Pakistan. Immigration policy is overseen by the Interior Minister of Pakistan through the Directorate General Passports. Most immigrants are not eligible for citizenship or permanent residency, unless they are married to a Pakistani citizen or a Commonwealth citizen who has invested a minimum of PKR 5 million in the local economy. Based on the United Nations report World Population Policies 2005, the total immigrant population in Pakistan was estimated to be 3,254,000, representing 2.1% of the national population, and ranked 13th in the world. According to"} +{"qid": "test2508", "pid": "6767152", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Kohlu District\"\nKohlu District Kohlu (Urdu and ) is a district of the Balochistan province of Pakistan. It is bounded in the north by Loralai District, Dera Bugti in the south, in the east Rojhan-Mazari and Sibi District in the west. According to the 1998 census of Pakistan it had a population of 99,850. The most widely spoken first languages are Balochi (%) and Pashto (%). The major ethnic groups in kohlu includes Marri and Zarkoon. According to the Pakistan District Education Rankings 2017, district Kohlu is ranked at number 116 out of the 141 ranked districts in Pakistan on the education"} +{"qid": "test2508", "pid": "6767364", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Khuzdar District\"\nwhich did not gather data for Brahui, 96.7% of the population reported their language as Balochi, and % – as Punjabi. According to the Pakistan District Education Rankings 2017, district Khuzdar is ranked at number 122 out of the 141 ranked districts in Pakistan on the education score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older in the district stands at 45% whereas for females it is only 26%. Post primary access is a major issue in the district with 87% schools being at primary level."} +{"qid": "test2508", "pid": "13242414", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Shia Islam in Pakistan\"\nShia Islam in Pakistan The Shia population in Pakistan is estimated as being 5-20% of the country's total population. Pakistan is said to have a Shia population of at least 16 million, like India. However, Vali Nasr claims the Shia population to be as high as 30 million. A PEW survey in 2012 found that 16% of those who responded to its survey in Pakistan declared themselves as Shia. Historical accounts on the conversion of local people to the Shia Islam are not very clear and different opinions are present in this regard. However, what is most clear is that"} +{"qid": "test2508", "pid": "6766144", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Kachhi District\"\nof the district are: Hanbhi Kurd, Rind, Siapad, Bangulzai, Raisani, Abro Talpur and Pahore and Airy and Sheikh also main population of tehsil Bhag.Jatoi tribe is in large number. According to the Pakistan District Education Rankings 2017, district Kachhi is ranked at number 109 out of the 141 ranked districts in Pakistan on the education score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older in the district stood at 43% whereas for females it was only 23%. Post primary access is a major issue in the"} +{"qid": "test2508", "pid": "314248", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Economy of Pakistan\"\nEconomy of Pakistan The economy of Pakistan is the 23th largest in the world in terms of purchasing power parity (PPP), and 42nd largest in terms of nominal gross domestic product. Pakistan has a population of over 207 million (the world's 5th-largest), giving it a nominal GDP per capita of $1,641 in 2018, which ranks 147th in the world and giving it s PPP GDP per capita of 5,709 in 2018, which ranks 130th in the world for 2018. However, Pakistan's undocumented economy is estimated to be 36% of its overall economy, which is not taken into consideration when calculating"} +{"qid": "test2508", "pid": "6772655", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Kharan District\"\nKharan District Kharan (Urdu and ) is a district in the Balochistan province of Pakistan. According to the Pakistan District Education Rankings 2017, district Kharan is ranked at number 110 out of the 141 ranked districts in Pakistan on the education score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older in the district stands at 44% whereas for females it is only 27%. Post primary access is a major issue in the district with 78% schools being at primary level. Compare this with high schools which"} +{"qid": "test2508", "pid": "6772658", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Kharan District\"\nmain issues reported in Taleem Do! App for the district is the unavailability of schools especially for girls. The schools available are reported to have a lack of teachers. Kharan District Kharan (Urdu and ) is a district in the Balochistan province of Pakistan. According to the Pakistan District Education Rankings 2017, district Kharan is ranked at number 110 out of the 141 ranked districts in Pakistan on the education score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older in the district stands at 44% whereas"} +{"qid": "test2508", "pid": "3760150", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Rawalpindi District\"\nrule, Rawalpindi district increased in population and importance. According to the 1998 census of Pakistan, the population of the district was 3,363,911 of which 53.03% were urban, and is the second-most urbanised district in Punjab. The population was estimated to be 4.5 million in 2010. In 2017 population of Rawalpindi district was 5,405,633. As per the 1998 census of Pakistan, the following are the demographics of the Rawalpindi district, by first language: According to 2015 data, Rawalpindi was ranked number one district of Pakistan in terms of education and school infrastructure facilities. According to official 2014 Public Schools Census data,"} +{"qid": "test2508", "pid": "16480380", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Religious discrimination in Pakistan\"\nof the Muslim minority in India. Khawaja Nazimuddin, the 2nd Prime Minister of Pakistan, stated: \"\"I do not agree that religion is a private affair of the individual nor do I agree that in an Islamic state every citizen has identical rights, no matter what his caste, creed or faith be\"\". According to Farahnaz Ispahani, media advisor to the president of Pakistan from 2008 to 2012, the population of Pakistan's religious minorities has declined from 23% in 1947 to around 3-4% of the population today. In the 1951 census, West Pakistan had 1.6% Hindu population, while East Pakistan (modern Bangladesh)"} +{"qid": "test2508", "pid": "16101065", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Information technology in Pakistan\"\ncountry's IT exports saw a rise of about fifty percent and amounted a total of about 48.5 million USD. The World Economic Forum, assessing the development of Information and Communication Technology in the country ranked Pakistan 111th among 144 countries in the Global Information Technology report of 2014. As of 2011, Pakistan has over 20 million internet users and is ranked as one of the top countries that have registered a high growth rate in internet penetration. Overall, it has the 27th largest population of internet users in the world. In the fiscal year 2012-2013, the Government of Pakistan aims"} +{"qid": "test2508", "pid": "15573854", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Standard of living in Pakistan\"\nlumbered up to an unprecedented 15%. Poor governance and political insecurity have further added to the issues faced by the average Standard of living in Pakistan The standard of living in Pakistan differentiates and varies between different classes of society. Pakistan is a largely developing country and according to the Human Development Index, is ranked 147th out of 170 countries, upper side of \"\"low human development.\"\" Despite having a growing middle class numbering over 70 million, a large portion of the country's population remains poor. Poverty, unemployment and a population boom contribute to Pakistan's current social problems. As of 2008,"} +{"qid": "test2508", "pid": "4822621", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Persecution of Hindus\"\nof the All India Majlis-e-Ittehadul Muslimeen, then the State's dominant political party, which wielded a strong private army, the Razakars, under the leadership of Kasim Razvi. Hindus constitute 2 percent of Pakistan's population. Hinduism is the second largest religion in Pakistan after Islam, according to the 1998 Census. As of 2010, Pakistan had the fifth largest Hindu population in the world and PEW predicts that by 2050 Pakistan will have the fourth largest Hindu population in the world. There has been historical decline of Hinduism, Buddhism and Sikhism in the areas of what is now called Pakistan. This happened for"} +{"qid": "test2508", "pid": "6805826", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Orakzai District\"\nOrakzai is the Sub-Division of Orakzai District. The main office are in Ghiljo Bazar. Upper Orakzai includes four big sections: Ali Khel Mola Khel Mamozai Ali Sherzai Lower Orakzai agency is subdivision. Headquarter is in kalaya town named Kalaya Headquarter, a populated area of Orakzai agency. The main sections are Bar Muhammad khel, Mani khel khel, Feroz khel . According to Pakistan District Education Rankings 2017 published by Alif Ailaan, Orakzai District ranks 125th in Pakistan in terms of primary school infrastructure while it ranks 132nd in Pakistan for middle school infrastructure. In terms of education score, Orakzai District stands"} +{"qid": "test2508", "pid": "2413895", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "Faisalabad\nthe settlement of Muslim refugees from East Punjab and Haryana, India. In 1961, the population rose to 425,248, an increase of 137.4%. Faisalabad set a record in the demographic history of Pakistan by registering an overall population increase of 508.1% between 1941 and 1961. The industrial revolution of the 1960s contributed to population growth. In 1961, the population was 425,248. A 1972 census ranked Faisalabad as the 3rd largest city of Pakistan with a population of 864,000. In a 1981 census, the population was 1,092,000; however, the Faisalabad Development Authority estimated the number to be 1,232,000. In the 2017 consensus,"} +{"qid": "test2508", "pid": "4783984", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Gun laws in Pakistan\"\nparticular order, Pakistanis view weapons as important for one or more of these purposes: There are an estimated 20 million firearms in public ownership in Pakistan (both legal and illegal), of which 7 million are registered among the country's population of over 220 million. The rate of private gun ownership is 11.6 firearms per 100 people. In a comparison of the number of privately owned guns in 178 countries, Pakistan ranks at No.6. As of 2009, the homicide rate is 7.3 per 100,000 population, higher than the United States at 5.0 per 100,000 population. Although owning or possessing a firearm"} +{"qid": "test2508", "pid": "5219521", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Pakistan Army\"\nformation sign on the left arm and class course insignias are put up as per ADR for the Goldish uniform, decorations & awards and the ranks. Traditionally, the Army was a predominantly Punjabi force because of its dominant population (Punjab is the most populous province of Pakistan, with approximately 55% of the country's total population). From the early 20th century in British controlled regions of Pakistan, three districts: Jhelum, Rawalpindi, and Campbellpur (now Attock) dominated the recruitment flows. Large extensive efforts have been made to bring all ethnicities on par, presently the Army recruitment system is enlisting personnel district-wise irrespective"} +{"qid": "test2508", "pid": "3314372", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Chagai District\"\nChagai District Chagai District Westen Sanjrani Agency (also Chaghi) (), (),is the largest district of Pakistan and is located on the north west corner of Balochistan, Pakistan. According to the 1998 census, the total population in the Dalbandin and Taftan subdivision was , the majority of which (%) had Balochi as a first language. Chagai District is administratively subdivided into the following tehsils and union councils: According to Pakistan District Education Rankings , a report by Alif Ailaan, district Chaghi is ranked at number 91 nationally, with an education score of 52.06. The learning score is 55.58 and gender parity"} +{"qid": "test2508", "pid": "7491836", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Killa Abdullah District\"\nseparated from Pishin for administrative reasons and was given the status of a district. The district is administratively subdivided into the following tehsils: According to the Pakistan District Education Rankings 2017, district Killa Abdullah is ranked at number 111 out of the 141 ranked districts in Pakistan on the education score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older in the district stands at 27% whereas for females it is only 8%. Post primary access is a major issue in the district with 87% schools being"} +{"qid": "test2508", "pid": "5130607", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Government of Pakistan\"\nstatistics, Pakistan still has one of the highest illiteracy rates in the world and the second largest out of school population (5.1 million children) after Nigeria. As per the CIA World Factbook, in 2010, Pakistan ranks 63rd in the world, with respect to the public external debt to various international monetary authorities (owning ~$55.98 billion in 2010), with a total of 60.1% of GDP. Since 2009, Pakistan has been trying to negotiate debt cancellation currently Pakistan spends $3 billion on debt servicing annually to largely western nations and the International Monetary Fund. Government of Pakistan The Government of Pakistan ()"} +{"qid": "test2508", "pid": "6766443", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Jhal Magsi District\"\nCouncil were added by the Local Government Department at recommendation of Deputy Commissioner/Delimitation Officer. Namely the union councils of Jhal Magsi District are as under: According to the Pakistan District Education Rankings 2017, district Jhal Magsi is ranked at number 108 out of the 141 ranked districts in Pakistan on the education score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older in the district stood at 25% whereas for females it was only 11%. Post primary access is a major issue in the district with 84%"} +{"qid": "test2508", "pid": "6766382", "query": "what is the rank of pakistan in population", "answer": "5", "passage": "\"Jafarabad District\"\nyears. Usta Mohammad is named after Maulvi Usta Mohammad. Chowki Jamali is a Famous Village of Jaffarabad. Jaffarabad is at a main‑road to Sindh province. Its boundaries link five districts: Larkarna, Jacobabad (Sindh), Nasirabad, Jhall Magsi, and Dera Bugti. The district of Jaffarabad is administratively subdivided into the following three tehsils: According to the Pakistan District Education Rankings 2017, district Jafarabad is ranked at number 113 out of the 141 ranked districts in Pakistan on the Education Score index. This index considers learning, gender parity and retention in the district. Literacy rate in 2014-15 of population 10 years and older"} +{"qid": "test251", "pid": "3066516", "query": "what is the largest magnitude earthquake that has occurred in the pacific northwest", "answer": "The 1700 Cascadia earthquake", "passage": "\"1700 Cascadia earthquake\"\n1700 Cascadia earthquake The 1700 Cascadia earthquake occurred along the Cascadia subduction zone on January 26 with an estimated moment magnitude of 8.7–9.2. The megathrust earthquake involved the Juan de Fuca Plate from mid-Vancouver Island, south along the Pacific Northwest coast as far as northern California. The length of the fault rupture was about , with an average slip of . The earthquake caused a tsunami which struck the coast of Japan and may also be linked to the Bonneville Slide and the Tseax Cone eruption in British Columbia. The earthquake took place at about 21:00 Pacific Time on January"} +{"qid": "test251", "pid": "3066528", "query": "what is the largest magnitude earthquake that has occurred in the pacific northwest", "answer": "The 1700 Cascadia earthquake", "passage": "\"1700 Cascadia earthquake\"\nQuillayute River. Some other subduction zones have such earthquakes every 100 to 200 years; the longer interval results from slower plate motions. The rate of convergence between the Juan de Fuca Plate and the North American Plate is per year. 1700 Cascadia earthquake The 1700 Cascadia earthquake occurred along the Cascadia subduction zone on January 26 with an estimated moment magnitude of 8.7–9.2. The megathrust earthquake involved the Juan de Fuca Plate from mid-Vancouver Island, south along the Pacific Northwest coast as far as northern California. The length of the fault rupture was about , with an average slip of"} +{"qid": "test2510", "pid": "41819", "query": "when did houston go to the american league", "answer": "2013", "passage": "\"History of baseball in the United States\"\ndid not go into effect until the 1995 World Series. In 1998, the AL and the NL each added a fifteenth team, for a total of thirty teams in Major League Baseball. The Arizona Diamondbacks joined the National League, and the Tampa Bay Devil Rays—now called simply the Rays—joined the American League. In order to keep the number of teams in each league at an even number (14 – AL, 16 – NL), Milwaukee changed leagues and became a member of the National League. In 2013, in keeping with Commissioner Bud Selig's desire for expanded interleague play, the Houston Astros"} +{"qid": "test2510", "pid": "183861", "query": "when did houston go to the american league", "answer": "2013", "passage": "\"Houston Astros\"\nmove to the American League for the 2013 season. The uniform is navy and orange, going back to the original 1960s team colors, as well as debuting a new version of the classic navy hat with a white \"\"H\"\" over an orange star. On November 6, 2012, the Astros hired former Cleveland Indians director of baseball operations David Stearns as the team's new assistant general manager. The Astros would also go on to hire former St. Louis Cardinals front office executive Jeff Luhnow as their general manager. The Houston Astros played their first game as an American League team on"} +{"qid": "test2510", "pid": "10180861", "query": "when did houston go to the american league", "answer": "2013", "passage": "\"History of the Houston Astros\"\nHistory of the Houston Astros The Houston Astros are an American professional baseball team based in Houston,Texas that competes in Major League Baseball (MLB). The Astros are a member of the MLB's American League, having moved from the National League in 2013. The Astros are one of two MLB teams based out of Texas, the other being the Texas Rangers. The team began with the name Colt .45s in 1962 and changed their name to the Houston Astros in 1965 when they began playing in the Astrodome. The team has played in three ballparks in Houston, Colt .45 Stadium (1962-1964),"} +{"qid": "test2510", "pid": "16885798", "query": "when did houston go to the american league", "answer": "2013", "passage": "\"Bikini Basketball Association\"\nHeart. The 2014 season began on June 21 with four teams, including the expansion Atlanta Storm, but the Miami Spice forfeited their first game then folded. The remaining three teams completed their abbreviated season on August 23, 2014, with Illinois going undefeated, Houston at 2-2, and Atlanta remaining winless. Illinois defeated Houston in the September 27 championship final to repeat as BBA champs. The league did not play a schedule in 2015. In September 2012, the league originally announced seven teams with league operations to begin on November 3, 2012, and play to begin in 2013. The originally announced teams"} +{"qid": "test2511", "pid": "4356356", "query": "what kind of plate boundary is nepal on", "answer": "orogenic belt", "passage": "\"Indian Plate\"\nbeen theorised to have played a role in the Cretaceous–Paleogene extinction event, generally held to be due to a large asteroid impact. The collision with the Eurasian Plate along the boundary between India and Nepal formed the orogenic belt that created the Tibetan Plateau and the Himalaya Mountains, as sediment bunched up like earth before a plow. The Indian Plate is currently moving north-east at per year, while the Eurasian Plate is moving north at only per year. This is causing the Eurasian Plate to deform, and the Indian Plate to compress at a rate of per year. The westerly"} +{"qid": "test2515", "pid": "815252", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The Last Supper (Leonardo da Vinci)\"\nSupper\"\" that were exhibited initially in Milan. This was his last series of paintings before his death. Sculptor Marisol Escobar rendered \"\"The Last Supper\"\" as a life-sized, three-dimensional, sculptural assemblage using painted and drawn wood, plywood, brownstone, plaster, and aluminum. This work, \"\"Self-Portrait Looking at The Last Supper\"\", (1982–84) is in New York's Metropolitan Museum of Art. In 1988, Susan Dorothea White painted \"\"The First Supper\"\" showing 13 women from all regions of the world, with the woman in the position of Leonardo's Christ figure being an Australian aboriginal. In 2001, Chinese artist Zeng Fanzhi painted \"\"Last Supper\"\", showing 13"} +{"qid": "test2515", "pid": "815231", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The Last Supper (Leonardo da Vinci)\"\nThe Last Supper (Leonardo da Vinci) The Last Supper ( or \"\"L'Ultima Cena\"\" ) is a late 15th-century mural painting by Italian artist Leonardo da Vinci housed by the refectory of the Convent of Santa Maria delle Grazie in Milan, Italy. It is one of the western world's most recognizable paintings. The work is presumed to have been started around 1495–96 and was commissioned as part of a plan of renovations to the church and its convent buildings by Leonardo's patron Ludovico Sforza, Duke of Milan. The painting represents the scene of the Last Supper of Jesus with his apostles,"} +{"qid": "test2515", "pid": "815254", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The Last Supper (Leonardo da Vinci)\"\ncontributed to its refusal by the Vatican who called it \"\"blasphemous.\"\" In Norman Jewison's 1973 film version of \"\"Jesus Christ Superstar\"\", in the Last Supper sequence, Jesus and the 12 apostles briefly mimic the posture of each character in Da Vinci's painting The painting is parodied in Mel Brooks's movie \"\"History of the World, Part I\"\", making Leonardo a contemporary of Jesus. It is also parodied in the original movie \"\"MASH\"\", in the scene where Hawkeye Pierce stages a \"\"last supper\"\" for Walt (Painless) Waldowski before his planned suicide. The various doctors, all in surgical scrubs, pose in imitation of"} +{"qid": "test2515", "pid": "2137668", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Italian Renaissance\"\nunifying style which expressed total compositional order, balance and harmony. In particular, the individual parts of the painting had a complex but balanced and well-knit relationship to the whole. The most famous painters from this phase are Leonardo da Vinci, Raphael, and Michelangelo and their images, including Leonardo's the \"\"Last Supper\"\" and \"\"Mona Lisa\"\", Raphael's \"\"The School of Athens\"\" and Michelangelo's \"\"Sistine Chapel Ceiling\"\" are the masterpieces of the period and among the most widely known works of art in the world. High Renaissance painting evolved into Mannerism, especially in Florence. Mannerist artists, who consciously rebelled against the principles of"} +{"qid": "test2515", "pid": "1969510", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Culture of Italy\"\nBondone in the late 13th century. One of the most influential artists who ever lived, Giotto changed the course of Western art by painting in a new realistic style. Florence became the center of early Renaissance art. The great Florentine masters of painting included Masaccio, Fra Angelico, Andrea Mantegna, Sandro Botticelli, and Paolo Uccello. The greatest artist of the 15th century was probably Leonardo da Vinci. His portrait \"\"Mona Lisa\"\" and his religious scene \"\"The Last Supper\"\" are among the most famous paintings in history. The later Renaissance was dominated by Raphael and Michelangelo. Raphael painted balanced, harmonious pictures that"} +{"qid": "test2515", "pid": "19453249", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Conservation-restoration of Leonardo da Vinci's The Last Supper\"\njob, as well as the removal, to another convent, of the priest who had hired him. In 1821, Stefano Barezzi, convinced that \"\"The Last Supper\"\" was a fresco, attempted to remove the work from the refectory wall. After realizing his mistake, Barezzi attempted to glue the removed paint back onto the wall. Barezzi also added areas of colored stucco. Between 1853 and 1855, Stefano Barezzi was again hired to work on \"\"The Last Supper\"\". During this conservation attempt, Barezzi cleaned the entire surface of the work, as well as removed plaster above the piece, revealing painted lunettes. These lunettes, painted"} +{"qid": "test2515", "pid": "6534902", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Santa Cruz Cathedral Basilica, Kochi\"\nare mostly Gothic, with the main altar decorated by the famous Italian painter Fra Antonio Moscheni, S.J., and his disciple De Gama of Mangalore. Unfortunately, Fra Antonio Moscheni died here on 15 November 1905, four days before the newly built Church was consecrated. The columns decorated with frescoes and murals, the seven large canvas paintings on the passion and death on the Cross, especially the painting of the Last Supper, modelled on the famous painting of Leonardo da Vinci and the beautiful stained glass windows add to the artistic grandeur of the place. The paintings that adorn the ceiling depict"} +{"qid": "test2515", "pid": "815259", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The Last Supper (Leonardo da Vinci)\"\nthe positions of hands and loaves of bread can be interpreted as notes on a musical staff and, if read from right to left, as was characteristic of Leonardo's writing, form a musical composition. The Last Supper (Leonardo da Vinci) The Last Supper ( or \"\"L'Ultima Cena\"\" ) is a late 15th-century mural painting by Italian artist Leonardo da Vinci housed by the refectory of the Convent of Santa Maria delle Grazie in Milan, Italy. It is one of the western world's most recognizable paintings. The work is presumed to have been started around 1495–96 and was commissioned as part"} +{"qid": "test2515", "pid": "248555", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Leonardo da Vinci\"\n, it is not nearly as complex as the painting ordered by the monks of St Donato, having only four figures rather than about fifty and a rocky landscape rather than architectural details. The painting was eventually finished; in fact, two versions of the painting were finished: one remained at the chapel of the Confraternity, while Leonardo took the other to France. The Brothers did not get their painting, however, nor the de Predis their payment, until the next century. Leonardo's most famous painting of the 1490s is \"\"The Last Supper\"\", commissioned for the refectory of the Convent of Santa"} +{"qid": "test2515", "pid": "14372561", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The First Supper\"\nThe First Supper The First Supper (1988) is a work of art by Susan Dorothea White, based on Leonardo da Vinci's painting \"\"The Last Supper\"\". White's painting is acrylic on a large wood panel (1.2 x 2.4 m) and, in a challenge to the patriarchal concept of thirteen men on one side of a table, shows 13 women from all regions of the world; the woman in the position of Leonardo's Christ figure is an Australian aboriginal wearing a T-shirt with the Australian Aboriginal Flag. The only white woman seen is in the position of Judas. She dines on a"} +{"qid": "test2515", "pid": "815258", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The Last Supper (Leonardo da Vinci)\"\nto Ross King, an expert on Italian art, Mary Magdalene's appearance at the last supper would not have been controversial and Leonardo would have had no motive to disguise her as one of the other disciples, since she was widely venerated in her role as the \"\"Apostle to the Apostles\"\" and was the patron of the Dominican Order, for whom \"\"The Last Supper\"\" was painted. There would have even been precedent for it, since the earlier Italian Renaissance painter Fra Angelico had included her in his painting of the Last Supper. Giovanni Maria Pala, an Italian musician, has indicated that"} +{"qid": "test2515", "pid": "12634524", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"The Secret Supper\"\nThe Secret Supper The Secret Supper is a thriller novel written by Javier Sierra. The original Spanish title is La Cena Secreta, winner of the 2004 Premio de Novela Ciudad de Torrevieja literary award, one of the richest literary prizes in the world. The English translation by Alberto Manguel was published in 2006. It is set while Leonardo da Vinci is painting \"\"The Last Supper\"\". The story is told in Agostino Leyre's words, as mysterious letters come in to Rome. He is a chief inquisitor, and so he decides to investigate who had sent these mysterious letters, hinting at heresy."} +{"qid": "test2515", "pid": "7376173", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "Cinquecento\nrendered with credible motion and in an appropriately decorous style. The most famous painters from this time period are Leonardo da Vinci, Raphael, and Michelangelo Buonarroti. Their images are among the most widely known works of art in the world. Leonardo's The Last Supper, Raphael's The School of Athens and Michelangelo's Sistine Chapel ceiling are the textbook examples of this period. High Renaissance painting evolved into Mannerism (c. 1520-80), especially in Florence. Mannerist artists, who consciously rebelled against the principles of High Renaissance, tend to represent elongated figures in illogical spaces. Contemporaries criticized this period as seeming artificial. Modern scholarship"} +{"qid": "test2515", "pid": "248548", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Leonardo da Vinci\"\nand geology; his interest in physiognomy and the way humans register emotion in expression and gesture; his innovative use of the human form in figurative composition; and his use of subtle gradation of tone. All these qualities come together in his most famous painted works, the \"\"Mona Lisa\"\", the \"\"Last Supper\"\", and the \"\"Virgin of the Rocks\"\". Leonardo first gained notoriety for his work on the \"\"Baptism of Christ\"\", painted in conjunction with Verrocchio. Two other paintings appear to date from his time at Verrocchio's workshop, both of which are Annunciations. One is small, long and high. It is a"} +{"qid": "test2515", "pid": "248507", "query": "who painted the world famous painting the last supper", "answer": "Leonardo da Vinci", "passage": "\"Leonardo da Vinci\"\nfamous of his works and the most parodied portrait, and \"\"The Last Supper\"\" is the most reproduced religious painting of all time. His drawing of the \"\"Vitruvian Man\"\" is also regarded as a cultural icon, being reproduced on items as varied as the euro coin, textbooks, and T-shirts. His painting \"\"Salvator Mundi\"\" sold for $450.3 million at a Christie's auction in New York on 15 November 2017, the highest price ever paid for a work of art. Perhaps 15 of his paintings have survived. Nevertheless, these few works compose a contribution to later generations of artists rivalled only by that"} +{"qid": "test2516", "pid": "20164131", "query": "when does wentworth season 6 start in australia", "answer": "19 June 2018", "passage": "\"Wentworth (season 6)\"\nour local production slate. There is so much yet to unfold with season five premiering now in Australia on Foxtel before any details should be revealed about the sixth season. My lips are sealed other than to say Marcia Gardner and the writers continue to excel in setting up intriguing story arcs and finely crafted scripts for the wonderfully talented \"\"Wentworth\"\" cast to bring to life.\"\" Wentworth (season 6) The sixth season of television drama series \"\"Wentworth\"\" premiered on Showcase in Australia on 19 June 2018 and concluded on 4 September 2018. It is executive produced by FremantleMedia's Director of"} +{"qid": "test2516", "pid": "20164129", "query": "when does wentworth season 6 start in australia", "answer": "19 June 2018", "passage": "\"Wentworth (season 6)\"\nWentworth (season 6) The sixth season of television drama series \"\"Wentworth\"\" premiered on Showcase in Australia on 19 June 2018 and concluded on 4 September 2018. It is executive produced by FremantleMedia's Director of Drama, Jo Porter. The season comprised 12 episodes. The sixth season picks up just days after the escape of Franky Doyle and Joan Ferguson. This season introduced three new characters portrayed by Leah Purcell, Susie Porter and Rarriwuy Hick. On 9 May 2017, it was announced that FremantleMedia had renewed Wentworth for a sixth season, set to air in 2018. FremantleMedia's Director of Drama, Jo"} +{"qid": "test2516", "pid": "16347566", "query": "when does wentworth season 6 start in australia", "answer": "2019", "passage": "\"Wentworth (TV series)\"\n2019. In December 2018, it was confirmed that a further 20 episodes had been commissioned, with production beginning in September 2019, and the episodes set to be broadcast through 2020 and 2021. \"\"Wentworth\"\" is set in modern-day Australia and focuses on Bea Smith (Danielle Cormack) when she first enters prison after being charged with the attempted murder of her husband. Bea is separated from her daughter and sent to Wentworth on remand, where she lives in \"\"an uncertain limbo\"\" until she is sentenced. Starting at the bottom of Wentworth's hierarchy, Bea is forced to learn how to survive in prison."} +{"qid": "test2517", "pid": "7823467", "query": "what is the name of india pakistan border", "answer": "International Border", "passage": "\"India–Pakistan border\"\nthe Pakistan's Punjab provincial border, is officially called the \"\"Working Boundary\"\" by Pakistan (which is a recent term) and international border by the Government of India. India–Pakistan border The India–Pakistan Border, known locally as the International Border (IB), is an international border running between India and Pakistan that demarcates the Indian states and the Pakistani four provinces. The border runs from the Line of Control (LoC), which separates the Indian state of Jammu and Kashmir from Pakistani-controlled Kashmir, in the north, to the Zero Point between the Indian state of Gujarat and the Sindh province of Pakistan, in the south."} +{"qid": "test2517", "pid": "7823464", "query": "what is the name of india pakistan border", "answer": "International Border", "passage": "\"India–Pakistan border\"\nIndia–Pakistan border The India–Pakistan Border, known locally as the International Border (IB), is an international border running between India and Pakistan that demarcates the Indian states and the Pakistani four provinces. The border runs from the Line of Control (LoC), which separates the Indian state of Jammu and Kashmir from Pakistani-controlled Kashmir, in the north, to the Zero Point between the Indian state of Gujarat and the Sindh province of Pakistan, in the south. Drafted and created based upon the Radcliffe line in 1947, the border, which divides Pakistan and India from each other, traverses a variety of terrains ranging"} +{"qid": "test2517", "pid": "1845462", "query": "what is the name of india pakistan border", "answer": "International Border", "passage": "\"Border control\"\nreviewing visa petitions and applications as well as processing asylum claims. Physical controls on the internationally recognised portions of Pakistan's international borders are managed by dedicated paramilitary units (the Pakistan Rangers on the border with India, and the Frontier Corps elsewhere). The Pakistan-administered side of the Line of Control between the Indian state of Jammu and Kashmir and Azad Kashmir is patrolled by the Pakistan Army. The Pakistan Rangers are a paramilitary law enforcement organisation in Pakistan and have a primary mission of securing important sites such as Pakistan's International Border with India as well as employed in internal security"} +{"qid": "test2518", "pid": "18931018", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Synoicum pulmonaria\"\nSynoicum pulmonaria Synoicum pulmonaria, the tennis ball ascidian or sea-fig, is a species of colonial sea squirt, a tunicate in the family Polyclinidae. It occurs in shallow water in the northeastern Atlantic Ocean, the North Sea and the English Channel, and also, to a lesser extent, in the northwestern Atlantic Ocean. \"\"Synoicum pulmonaria\"\" is the largest colonial tunicate in the northeastern Atlantic. Young colonies are pear-shaped or club-shaped and are attached by a short stalk. Older colonies are more globular, up to in diameter, and formed by the agglomeration of a number of smaller colonies. The individual zooids are not"} +{"qid": "test2518", "pid": "2335331", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"English alphabet\"\nsometimes represent a consonant (e.g., \"\"quiz\"\" and \"\"onion\"\" respectively). W and Y are sometimes referred as semivowels by linguists. Alternative scripts have been proposed for written English – mostly extending or replacing the basic English alphabet – such as the Deseret alphabet, the Shavian alphabet, Gregg shorthand, etc. English alphabet The modern English alphabet is a Latin alphabet consisting of 26 letters, each having an uppercase and a lowercase form, and the same letters constitute the ISO basic Latin alphabet. The exact shape of printed letters varies depending on the typeface (and font), and the shape of handwritten letters can"} +{"qid": "test2518", "pid": "2335314", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"English alphabet\"\nEnglish alphabet The modern English alphabet is a Latin alphabet consisting of 26 letters, each having an uppercase and a lowercase form, and the same letters constitute the ISO basic Latin alphabet. The exact shape of printed letters varies depending on the typeface (and font), and the shape of handwritten letters can differ significantly from the standard printed form (and between individuals), especially when written in cursive style. English is the only major modern European language requiring no diacritics for native words (although a diaeresis is used by some publishers in words such as \"\"coöperation\"\" or \"\"naïve\"\"). Written English does,"} +{"qid": "test2518", "pid": "3602694", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"The Bedford Incident\"\nforward-sloping bridge windows. Sidney Poitier's initial flypast and landing from a Whirlwind helicopter were filmed aboard another Type 15 frigate, HMS \"\"Wakeful\"\", whose F159 pennant number is clearly visible. The vessel portraying a Soviet intelligence ship has the name \"\"\"\"Novo Sibursk\"\"\"\", written on the hull at the bow in the Roman alphabet, not the Russian language's Cyrillic alphabet. \"\"Novosibirsk\"\" is a more accurate English rendering. In October 1962, shortly before the start of the Cuban Missile Crisis, the Soviet submarine B-59 was pursued in the Atlantic Ocean by the U.S. Navy. When the Soviet vessel failed to surface, the American"} +{"qid": "test2518", "pid": "14235159", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Reticulated dragonet\"\nReticulated dragonet Callionymus reticulatus, the reticulated dragonet, is a species of dragonet native to the northeastern Atlantic Ocean and the Mediterranean Sea where it is found at depths of from . This species grows to a length of TL. This species has a flattened head and body, the head has a triangular shape with the eyes placed on the top of the head. It has two dorsal fins with the first one being triangular in shape. It has blue spots along the flanks and four saddle-like markings on their backs which have sharply defined outlines. It is similar to the"} +{"qid": "test2518", "pid": "9812", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Atlantic Ocean\"\nAtlantic Ocean The Atlantic Ocean is the second largest of the world's oceans, with an area of about . It covers approximately 20 percent of the Earth's surface and about 29 percent of its water surface area. It separates the \"\"Old World\"\" from the \"\"New World\"\". The Atlantic Ocean occupies an elongated, S-shaped basin extending longitudinally between Europe and Africa to the east, and the Americas to the west. As one component of the interconnected global ocean, it is connected in the north to the Arctic Ocean, to the Pacific Ocean in the southwest, the Indian Ocean in the southeast,"} +{"qid": "test2518", "pid": "19914615", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Umbrina canariensis\"\nUmbrina canariensis Umbrina canariensis, the Canary drum is a warm water, marine fish of the family Sciaenidae which is found in the western Mediterranean, eastern Atlantic Ocean and western Indian Ocean. Other English vernacular names are tesselfish, baardman, checker drum, common baardman, tasselfish and bellman. \"\"Umbrina canariensis\"\" has a rather short, deeply compressed body with a small downward facing mouth and a short rigid barbell on the chin. The caudal fin is straight edges or sometimes shows a slight s-shape. Most of its scales are ctenoid, except for those on the snout and around the eye, which are cycloid. The"} +{"qid": "test2518", "pid": "5226576", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"History of the Arabic alphabet\"\nthe same. After all this, there were only 17 letters that were different in shape. One letter-shape represented 5 phonemes (\"\"b t th n\"\" and sometimes \"\"y\"\"), one represented 3 phonemes (\"\"j ħ kh\"\"), and 5 each represented 2 phonemes. Compare the Hebrew alphabet, as in the table at . A similar ambiguity occurs in the German Fraktur font, in which the Roman alphabet uppercase letters I and J look the same but are officially different letters. The Arabic alphabet is first attested in its classical form in the 7th century. See PERF 558 for the first surviving Islamic Arabic"} +{"qid": "test2518", "pid": "20936186", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Halecium halecinum\"\nstubby tertiary branches which bear the hydrothecae (feeding polyps); these grow on alternate sides of the stem, forming short, equal-length segments, separated by transverse nodes. The polyps are large and goblet-shaped, with down-turned rims. The reproductive gonothecae are borne on the upper surfaces of the branches, the male structures being ovoid and club-shaped, while the female ones are oblong, with tapering bases and broad flat upper surfaces with apertures in the corners. This hydroid is known from the eastern Atlantic Ocean, the western Atlantic Ocean and the eastern Pacific Ocean. Its range extends from Spitsbergen, through the Mediterranean Sea and"} +{"qid": "test2518", "pid": "9881", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Atlantic Ocean\"\ncoastlines, frequently washing aground where it is known as beach litter. Atlantic Ocean The Atlantic Ocean is the second largest of the world's oceans, with an area of about . It covers approximately 20 percent of the Earth's surface and about 29 percent of its water surface area. It separates the \"\"Old World\"\" from the \"\"New World\"\". The Atlantic Ocean occupies an elongated, S-shaped basin extending longitudinally between Europe and Africa to the east, and the Americas to the west. As one component of the interconnected global ocean, it is connected in the north to the Arctic Ocean, to the"} +{"qid": "test2518", "pid": "9998812", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "RoboMind\nKorean, Polish, Brazilian Portuguese, Russian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish and Ukrainian. All instructions and keywords can be translated. This makes it easier to learn for non-English speakers than most other programming languages that are constrained to English syntax and Latin alphabets. RoboMind is somewhat similar to Karel the Robot but its syntax is closer to C/C++ while Karel is closer to Pascal. RoboMind can be related to the Logo, at which a turtle can be moved around to create geometric shapes. The syntax of RoboMind however is different and corresponds more directly to mainstream scripting languages, such as"} +{"qid": "test2518", "pid": "386819", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"South African English\"\nearly English teachers were brought to South Africa from India, or both. Four prominent education-related lexical features shared by ISAE and Indian English are: \"\"tuition(s),\"\" which means \"\"extra lessons outside school that one pays for\"\"; \"\"further studies\"\", which means \"\"higher education\"\"; \"\"alphabets\"\", which means \"\"the alphabet, letters of the alphabet\"\"; and \"\"by-heart\"\", which means \"\"to learn off by heart\"\"; these items show the influence of Indian English teachers in South Africa. Phonologically, ISAE also shares several similarities with Indian English, though certain common features are decreasing in the South African variety. For instance, consonant retroflexion in phonemes like /ḍ/ and"} +{"qid": "test2518", "pid": "10656256", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Southern Bight\"\nis a deep water channel, which enters into wherein the water is about 30 metres deep or deeper. At the end of the English Channel, this depth increases to about 100 metres. The North Sea as a whole has characteristics which are similar to those of the Atlantic Ocean, whereas the Southern Bight has hydrography characteristics which most resemble those of the English Channel, and the inputs from various European rivers. The bight's four main river sources are the Rhine, Meuse, Scheldt and the Thames, but it is also impacted by the Ems, Elbe, and Humber. Southern Bight Southern Bight"} +{"qid": "test2518", "pid": "242767", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Latin alphabet\"\nalphabets may discard letters, like the Rotokas alphabet, or add new letters, like the Danish and Norwegian alphabets. Letter shapes have evolved over the centuries, including the development in Medieval Latin of lower-case, forms which did not exist in the Classical period alphabet. English is the only major modern European language requiring no diacritics for native words (although a diaeresis may be used in words such as \"\"coöperation\"\"). It is generally believed that the Romans adopted the Cumae alphabet, a variant of the Greek alphabet, in the 7th century BC from Cumae, a Greek colony in Southern Italy. (Gaius Julius"} +{"qid": "test2518", "pid": "406672", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "T\nsounds. In the International Phonetic Alphabet, denotes the voiceless alveolar plosive. T T (named \"\"tee\"\" ) is the 20th letter in the modern English alphabet and the ISO basic Latin alphabet. It is the most commonly used consonant and the second most common letter in English-language texts. \"\"Taw\"\" was the last letter of the Western Semitic and Hebrew alphabets. The sound value of Semitic \"\"Taw\"\", Greek alphabet Tαυ (\"\"Tau\"\"), Old Italic and Latin T has remained fairly constant, representing in each of these; and it has also kept its original basic shape in most of these alphabets. In English, usually"} +{"qid": "test2518", "pid": "406670", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "T\nT T (named \"\"tee\"\" ) is the 20th letter in the modern English alphabet and the ISO basic Latin alphabet. It is the most commonly used consonant and the second most common letter in English-language texts. \"\"Taw\"\" was the last letter of the Western Semitic and Hebrew alphabets. The sound value of Semitic \"\"Taw\"\", Greek alphabet Tαυ (\"\"Tau\"\"), Old Italic and Latin T has remained fairly constant, representing in each of these; and it has also kept its original basic shape in most of these alphabets. In English, usually denotes the voiceless alveolar plosive ( and X-SAMPA: ), as in"} +{"qid": "test2518", "pid": "14235123", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Spotted dragonet\"\nSpotted dragonet Callionymus maculatus, the Spotted dragonet, is a species of dragonet native to the eastern Atlantic Ocean and the Mediterranean Sea where it occurs at depths of from . This species is important to local peoples engaged in subsistence fishing. The spotted dragonet is similar in shape to the common dragonet (\"\"Callionymus lyra\"\") but it is smaller, growing to a total length of in males and in females. It has a broad, flattened head and body which is flat ventrally and convex dorsally and has a round cross-section posteriorly. The large eyes are situated quite close to each other"} +{"qid": "test2518", "pid": "14235128", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Spotted dragonet\"\nbycatch in bottom trawls and marketed locally and some species are commercially used in the aquarium trade. Spotted dragonet Callionymus maculatus, the Spotted dragonet, is a species of dragonet native to the eastern Atlantic Ocean and the Mediterranean Sea where it occurs at depths of from . This species is important to local peoples engaged in subsistence fishing. The spotted dragonet is similar in shape to the common dragonet (\"\"Callionymus lyra\"\") but it is smaller, growing to a total length of in males and in females. It has a broad, flattened head and body which is flat ventrally and convex"} +{"qid": "test2518", "pid": "14624924", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Macrocypraea cervus\"\nMacrocypraea cervus Macrocypraea cervus, common name the Atlantic deer cowry, is a species of large sea snail, a very large cowry, a marine gastropod mollusk in the family Cypraeidae, the cowries. This species is mainly distributed in the tropical Atlantic Ocean including the Caribbean Sea, and in the waters off South Carolina, Florida, Mexico, Brazil, Cuba and the Bermudas. This species is one of the largest cowries. It is quite similar in shape and colour to \"\"Macrocypraea cervinetta\"\", but it is much larger. The maximum recorded shell length is , while minimum length is about . The shell is elongated,"} +{"qid": "test2518", "pid": "1857908", "query": "atlantic ocean's shape is similar to which english alphabet", "answer": "S", "passage": "\"Ironclad warship\"\nlow throttle), and a telescopic funnel which could be folded down to the deck level. Ships designed for coastal warfare, like the floating batteries of the Crimea, or and her sisters, dispensed with masts from the beginning. The British , started in 1869, was the first large, ocean-going ironclad to dispense with masts. Her principal role was for combat in the English Channel and other European waters; while her coal supplies gave her enough range to cross the Atlantic, she would have had little endurance on the other side of the ocean. The \"\"Devastation\"\" and the similar ships commissioned by"} +{"qid": "test2519", "pid": "5801521", "query": "who is credited with creating the gothic art movement", "answer": "Abbot Suger", "passage": "\"French art\"\nproducts of a Medieval art movement that lasted about three hundred years. It began in France, developing from the Romanesque period in the mid-twelfth century. By the late fourteenth century, it had evolved toward a more secular and natural style known as, International Gothic, which continued until the late fifteenth century, when it evolved further, into Renaissance art. The primary Gothic art media were sculpture, panel painting, stained glass, fresco, and illuminated manuscript. Gothic architecture was born in the middle of the twelfth century in Île-de-France, when Abbot Suger built the abbey at St. Denis, \"\"c.\"\" 1140, considered the first"} +{"qid": "test2520", "pid": "528696", "query": "what is the central idea of the poem the rime of ancient mariner", "answer": "a violation of nature", "passage": "\"The Rime of the Ancient Mariner\"\nmany opinions on why Coleridge inserted the gloss. Charles Lamb, who had deeply admired the original for its attention to \"\"Human Feeling\"\", claimed that the gloss distanced the audience from the narrative, weakening the poem's effects. The entire poem was first published in the collection of \"\"Lyrical Ballads\"\". Another version of the poem was published in the 1817 collection entitled \"\"Sibylline Leaves\"\" (see 1817 in poetry). On a surface level the poem explores a violation of nature and the resulting psychological effects on the mariner and on all those who hear him. According to Jerome McGann the poem is like"} +{"qid": "test2521", "pid": "11255789", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"North American Union\"\na number of common elements between them. NASCO and the SPP have both denied that there are any plans to establish a common currency, a \"\"NAFTA Superhighway\"\", or a North American Union in \"\"Myths vs Facts\"\" pages on their websites. The \"\"amero\"\" is the appellation given to what would be the North American Union's counterpart to the euro. It was first proposed in 1999 by Canadian economist Herbert G. Grubel. A senior fellow of the Fraser Institute think-tank, he published a book entitled \"\"The Case for the Amero\"\" in September 1999, the year that the euro became a virtual currency."} +{"qid": "test2521", "pid": "14567607", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Fiscal union\"\nand if necessary help individual countries (What kind of fiscal union?). Fiscal union Fiscal union is the integration of the fiscal policy of nations or states. Under fiscal union decisions about the collection and expenditure of taxes are taken by common institutions, shared by the participating governments. It is often proposed that the European Union should adopt a form of fiscal union. Most member states of the EU participate in economic and monetary union (EMU), based on the euro currency, but most decisions about taxes and spending remain at the national level. Therefore, although the European Union has a monetary"} +{"qid": "test2521", "pid": "12798249", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Germain Pirlot\"\nGermain Pirlot Germain Pirlot (born 18 March 1943 in Sart-Custinne, Gedinne, Belgium) is a Belgian esperantist and ex-teacher of French and history, presently living in Ostend. He is best known as the inventor of the name \"\"euro\"\" for the common currency of the European Union (EU). On August 4, 1995, Pirlot sent a letter to then President of the European Commission, Jacques Santer, in which he suggested the name \"\"euro\"\" to be used for the planned currency of the EU. Later, Pirlot received an official letter thanking him for the suggestion. The name \"\"euro\"\" was officially adopted by the European"} +{"qid": "test2521", "pid": "129079", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"European Currency Unit\"\nA common theme on the coins was usually celebrating European unity, such as celebrating membership of the European Union. In 1989, the government of the Netherlands issued a series of ECU coins from ₠2½ to ₠200, which could be spent in shops in The Hague, during the European Capital of Culture festival. Gibraltar issued commemorative coins from 1993 through 1996. European Currency Unit The European Currency Unit (₠ or ECU, ) was a basket of the currencies of the European Community member states, used as the unit of account of the European Community before being replaced by the euro on"} +{"qid": "test2521", "pid": "500760", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"History of the European Union\"\ninclude nearly all others by the end of 1996. The 1990s also saw the further development of the euro. 1 January 1994 saw the second stage of the Economic and Monetary Union of the European Union begin with the establishment of the European Monetary Institute and at the start of 1999 the euro as a currency was launched and the European Central Bank was established. On 1 January 2002, notes and coins were put into circulation, replacing the old currencies entirely. During the 1990s, the conflicts in the Balkans gave impetus to developing the EU's Common Foreign and Security Policy"} +{"qid": "test2521", "pid": "10812062", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Juncker–Poos Ministry\"\ngo hand in hand with progress in the area of taxation of businesses. The most spectacular performance of the European Union during this period was certainly the introduction of the euro on 1 January 1999. During the Luxembourgish presidency of the Council of the European Union in 1997, significant advances were achieved in the long process of creating a common currency. In 1996, Luxembourg, along with other member states of the European Union, had concluded the growth and stability pact which was to guarantee the stability of the future single currency. As a NATO member, Luxembourg participated in the search"} +{"qid": "test2521", "pid": "11517065", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"United States of Europe\"\nof the European Union do have many common policies within the EU and on behalf of the EU that are sometimes suggestive of a single state. It has a common executive (the European Commission), a single High Representative for the Common Foreign and Security Policy, a common European Security and Defence Policy, a supreme court (European Court of Justicebut only in matters of European Union law) and an intergovernmental research organisation (the EIROforum with members like CERN). The euro is often referred to as the \"\"single European currency\"\", which has been officially adopted by nineteen EU countries while seven other"} +{"qid": "test2521", "pid": "3910474", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Economy of Europe\"\nand continue with their own currencies, namely Denmark, Sweden and the United Kingdom. In early 2004, 10 mostly former communist states joined the EU in its biggest ever expansion, enlarging the union to 25 members, with another eight making associated trade agreements. The acceding countries are bound to join the Eurozone and adopt the common currency euro in the future. The process includes the European Exchange Rate Mechanism, of which some of these countries are already part. Most European economies are in very good shape, and the continental economy reflects this. Conflict and unrest in some of the former Yugoslavia"} +{"qid": "test2521", "pid": "2183510", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"European Exchange Rate Mechanism\"\nEuropean Exchange Rate Mechanism The European Exchange Rate Mechanism (ERM) was a system introduced by the European Economic Community on 13 March 1979, as part of the European Monetary System (EMS), to reduce exchange rate variability and achieve monetary stability in Europe, in preparation for Economic and Monetary Union and the introduction of a single currency, the euro, which took place on 1 January 1999. After the adoption of the euro, policy changed to linking currencies of EU countries outside the eurozone to the euro (having the common currency as a central point). The goal was to improve the stability"} +{"qid": "test2521", "pid": "12448727", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Economy of Sweden\"\nmembership in the third phase of the Economic and Monetary Union of the European Union, adopting the euro as its currency. In theory, by the rules of the EMU, Sweden is obliged to join, since the country has not obtained exception by any protocol or treaty (as opposed to Denmark and the United Kingdom). Nevertheless, the Swedish government decided in 1997 against joining the common currency from its start on 1 January 1999. This choice was implemented by exploiting a legal loophole, deliberately staying out of the European Exchange Rate Mechanism. This move is currently tolerated by the European Central"} +{"qid": "test2521", "pid": "1550174", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "Eurozone\nEurozone The eurozone (), officially called the euro area, is a monetary union of 19 of the 28 European Union (EU) member states which have adopted the euro (€) as their common currency and sole legal tender. The monetary authority of the eurozone is the Eurosystem. The other nine members of the European Union continue to use their own national currencies, although most of them are obliged to adopt the euro in the future. The eurozone consists of Austria, Belgium, Cyprus, Estonia, Finland, France, Germany, Greece, Ireland, Italy, Latvia, Lithuania, Luxembourg, Malta, the Netherlands, Portugal, Slovakia, Slovenia, and Spain. Other"} +{"qid": "test2521", "pid": "1550205", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "Eurozone\nEurozone The eurozone (), officially called the euro area, is a monetary union of 19 of the 28 European Union (EU) member states which have adopted the euro (€) as their common currency and sole legal tender. The monetary authority of the eurozone is the Eurosystem. The other nine members of the European Union continue to use their own national currencies, although most of them are obliged to adopt the euro in the future. The eurozone consists of Austria, Belgium, Cyprus, Estonia, Finland, France, Germany, Greece, Ireland, Italy, Latvia, Lithuania, Luxembourg, Malta, the Netherlands, Portugal, Slovakia, Slovenia, and Spain. Other"} +{"qid": "test2521", "pid": "13718631", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Currencies of the European Union\"\nCurrencies of the European Union There are eleven currencies of the European Union used officially by member states. The euro accounts for the majority of the member states with the remainder operating independent monetary policies. Those European Union states that have adopted it are known as the eurozone and share the European Central Bank (ECB). The ECB and the national central banks of all EU countries, including those who operate an independent currency, are part of the European System of Central Banks. The euro is the result of the European Union's project for economic and monetary union which came fully"} +{"qid": "test2521", "pid": "13718634", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Currencies of the European Union\"\nEU Member states: Currencies of the European Union There are eleven currencies of the European Union used officially by member states. The euro accounts for the majority of the member states with the remainder operating independent monetary policies. Those European Union states that have adopted it are known as the eurozone and share the European Central Bank (ECB). The ECB and the national central banks of all EU countries, including those who operate an independent currency, are part of the European System of Central Banks. The euro is the result of the European Union's project for economic and monetary union"} +{"qid": "test2521", "pid": "1660899", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"British Overseas Territories\"\nis the only overseas territory that is part of the European Union (EU), although it is not part of the European Customs Union, the European Tax Policy, the European Statistics Zone or the Common Agriculture Policy. Gibraltar is not a member of the European Union in its own right. The Sovereign Base Areas in Cyprus are not part of the European Union, but they are the only British overseas territory to use the euro as official currency. None of the other Overseas Territories are members of the EU, the main body of EU law does not apply and, although certain"} +{"qid": "test2521", "pid": "12947056", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"Treaty of Lisbon\"\nthe treaties. The European Central Bank gained the official status of being an EU institution, and the European Council was given the right to appoint presidents of the European Central Bank through a qualified majority vote. On a related topic, the euro became the official currency of the Union (though not affecting opt-outs or the process of Eurozone enlargement). Under the Treaty of Lisbon, the Court of First Instance has been renamed the General Court. The Civil Service Tribunal and the European Court of Justice (formerly named the \"\"Court of Justice of the European Communities\"\", and formally called only \"\"Court"} +{"qid": "test2521", "pid": "6367408", "query": "what is the name given to the common currency to the european union", "answer": "euro", "passage": "\"De facto currency\"\nDe facto currency A de facto currency is a unit of money that is not legal tender in a country but is treated as such by most of the populace. The United States dollar and the European Union euro are the most common de facto currencies. Andorra used the euro unofficially prior to June 2013, at which point the euro became its official currency. The euro remains the de facto currency in Kosovo and Montenegro. Countries using the United States dollar as their de facto currency include Aruba and Cambodia, where most hotels, restaurants, and transportation are priced in dollars;"} +{"qid": "test2522", "pid": "6642773", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "\"Desert grassland whiptail lizard\"\nin developed areas, especially where homeowners keep livestock. All desert grassland whiptail lizards are female. Their reproduction process does not need male fertilization, although researchers observed pseudo-copulation that promotes fertilization during ovulation. This process involves the alternation between male-typical and female-typical sexual behaviors, driven by progesterone, in both lizards; corresponding to the state of their partner. The lizards reproduce by parthenogenesis, but offspring do not necessarily have the same chromosomes as their mother. This is because the lizards start off with twice the amount of chromosomes as would be found in sexually reproducing individuals. This diversity is maintained by combining"} +{"qid": "test2522", "pid": "8123340", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "\"New Mexico whiptail\"\nNew Mexico whiptail The New Mexico whiptail (\"\"Aspidoscelis neomexicanus\"\") is a female-only species of lizard found in the southwestern United States in New Mexico and Arizona, and in northern Mexico in Chihuahua. It is the official state reptile of New Mexico. It is one of many lizard species known to be parthenogenic. Individuals of the species can be created either through the hybridization of the little striped whiptail (\"\"A. inornatus\"\") and the western whiptail (\"\"A. tigris\"\"), or through the parthenogenic reproduction of an adult New Mexico whiptail. The hybridization of these species prevents healthy males from forming, whereas males exist"} +{"qid": "test2522", "pid": "8123342", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "\"New Mexico whiptail\"\nblue-green colored throat. They are slender bodied, with a long tail. Like most other whiptail lizards, the New Mexico whiptail is diurnal and insectivorous. They are wary, energetic, and fast moving, darting for cover if approached. They are found in a wide variety of semi-arid habitats, including grassland, rocky areas, shrubland, or mountainside woodlands. Reproduction occurs through parthenogenesis, with up to four unfertilized eggs being laid in mid summer, and hatching approximately eight weeks later. The New Mexico whiptail lizard is a crossbreed of a western whiptail, which lives in the desert, and the little striped whiptail, which favours grasslands."} +{"qid": "test2522", "pid": "9637875", "query": "what type of reproduction do whiptail lizards use", "answer": "Parthenogenesis", "passage": "Parthenogenesis\ncan lead to parthenogenetic reproduction is unknown. Recently, a hybrid parthenogenetic whiptail lizard was bred in the laboratory from a cross between an asexual and a sexual whiptail. Because multiple hybridization events can occur, individual parthenogenetic whiptail species can consist of multiple independent asexual lineages. Within lineages, there is very little genetic diversity, but different lineages may have quite different genotypes. An interesting aspect to reproduction in these asexual lizards is that mating behaviors are still seen, although the populations are all female. One female plays the role played by the male in closely related species, and mounts the female"} +{"qid": "test2522", "pid": "8123341", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "\"New Mexico whiptail\"\nin both parent species (see Sexual differentiation). Parthenogenesis allows the resulting all-female population to reproduce and thus evolve into a unique species capable of reproduction. This combination of interspecific hybridization and parthenogenesis exists as a reproductive strategy in several species of whiptail lizard within the genus \"\"Aspidoscelis\"\" to which the New Mexico whiptail belongs. The New Mexico whiptail grows from in length, and is typically overall brown or black in color with seven pale yellow stripes from head to tail. Light colored spots often occur between the stripes. They have a white or pale blue underside, with a blue or"} +{"qid": "test2522", "pid": "2226136", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "Cnemidophorus\nchromosomes just as sexual species do), but sometimes these females mate with other males, producing offspring which are triploid (that is, they have three sets of chromosomes, or 50% more than equivalent sexual species; see polyploidy). Over 30% of the genus \"\"Cnemidophorus\"\" are parthenogenic. The genus \"\"Cnemidophorus\"\", \"\"sensu lato\"\", contains the following species. 3. “Western Whiptail Lizard.” Whiptail Lizard - Desert Wildlife, digital-desert.com/wildlife/whiptail-lizard.html Cnemidophorus Cnemidophorus is a genus of lizards in the family Teiidae. Species in the genus \"\"Cnemidophorus\"\" are commonly referred to as whiptail lizards or racerunners. Note that the Reeder et al. (2002) re-examined the nomenclature for this"} +{"qid": "test2522", "pid": "8123343", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "\"New Mexico whiptail\"\nThe lizard is a female-only species that reproduces by producing an egg through parthenogenesis. Despite reproducing asexually, and being an all-female species, the whiptail still engages in mating behavior with other females of its own species. A common theory is that this behavior stimulates ovulation, as those that do not \"\"mate\"\" do not lay eggs. New Mexico whiptail The New Mexico whiptail (\"\"Aspidoscelis neomexicanus\"\") is a female-only species of lizard found in the southwestern United States in New Mexico and Arizona, and in northern Mexico in Chihuahua. It is the official state reptile of New Mexico. It is one of"} +{"qid": "test2522", "pid": "2137555", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "Teiidae\ninclude array, clone, type, or morph. Teiidae Teiidae is a family of autarchoglossan lizards native to the Americas. Members of this family are generally known as whiptails or racerunners; however, tegus also belong to this family. Teiidae is sister to the Gymnopthalmidae, and both families comprise the Teiioidea. The Teiidae includes several parthenogenic species – a mode of clonal reproduction. Presently, the Teiidae consists of approximately 150 in eighteen genera. Teiids can be distinguished from other lizards by the following characteristics: they have large rectangular scales that form distinct transverse rows ventrally and generally small granular scales dorsally, they have"} +{"qid": "test2522", "pid": "6642769", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "\"Desert grassland whiptail lizard\"\nDesert grassland whiptail lizard The desert grassland whiptail lizard (\"\"Aspidoscelis uniparens\"\") is an all-female species of reptiles. It was formerly placed in the genus \"\"Cnemidophorus\"\". \"\"A. uniparens\"\" have limited social stimuli, having only two basic needs: finding food and avoiding predators. A common predator of the whiptail lizard is the leopard lizard, that prey on \"\"A. uniparens\"\" by using ambush and stalk haunting tactics. These reptiles reproduce by parthenogenesis. In this process, eggs undergo a chromosome doubling after meiosis, developing into lizards without being fertilized. However, ovulation is enhanced by female-female courtship and \"\"mating\"\" (pseudo-copulation) rituals that resemble the behavior"} +{"qid": "test2522", "pid": "4977982", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "\"Animal sexual behaviour\"\n(female) lizards engage in \"\"masculine\"\" sexual roles. Those animals with currently high oestrogen levels assume \"\"feminine\"\" sexual roles. Lizards that perform the courtship ritual have greater fecundity than those kept in isolation due to an increase in hormones triggered by the sexual behaviours. So, even though asexual whiptail lizards populations lack males, sexual stimuli still increase reproductive success. From an evolutionary standpoint these females are passing their full genetic code to all of their offspring rather than the 50% of genes that would be passed in sexual reproduction. It is rare to find true parthenogenesis in fishes, where females produce"} +{"qid": "test2522", "pid": "8123356", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "\"Common checkered whiptail\"\nCommon checkered whiptail The checkered whiptail (\"\"Aspidoscelis tesselatus\"\") is a species of lizard found in the southwestern United States in Colorado, Texas and New Mexico, and in northern Mexico in Chihuahua and Coahuila. Many sources believe that the species originated from the hybridization of the marbled whiptail, \"\"Aspidoscelis marmoratus\"\", the plateau spotted whiptail, \"\"Aspidoscelis septemvittatus\"\", and possibly the six-lined racerunner, \"\"Aspidoscelis sexlineatus\"\". It is one of many lizard species known to be parthenogenic. It is sometimes referred to as the common checkered whiptail to differentiate it from several other species known as checkered whiptails. The checkered whiptail grows to about"} +{"qid": "test2522", "pid": "241716", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenesis", "passage": "Lizard\nrelatively developed young which look like miniature adults. Embryos are nourished via a placenta-like structure. A minority of lizards have parthenogenesis (reproduction from unfertilised eggs). These species consist of all females who reproduce asexually with no need for males. This is known in occur in various species of whiptail lizards. Parthenogenesis was also recorded in species that normally reproduce sexually. A captive female Komodo dragon produced a clutch of eggs, despite being separated from males for over two years. Sex determination in lizards can be temperature-dependent. The temperature of the eggs' micro-environment can determine the sex of the hatched young:"} +{"qid": "test2522", "pid": "8123358", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "\"Common checkered whiptail\"\neight unfertilized eggs in mid summer, which hatch in six to eight weeks. Common checkered whiptail The checkered whiptail (\"\"Aspidoscelis tesselatus\"\") is a species of lizard found in the southwestern United States in Colorado, Texas and New Mexico, and in northern Mexico in Chihuahua and Coahuila. Many sources believe that the species originated from the hybridization of the marbled whiptail, \"\"Aspidoscelis marmoratus\"\", the plateau spotted whiptail, \"\"Aspidoscelis septemvittatus\"\", and possibly the six-lined racerunner, \"\"Aspidoscelis sexlineatus\"\". It is one of many lizard species known to be parthenogenic. It is sometimes referred to as the common checkered whiptail to differentiate it from"} +{"qid": "test2522", "pid": "8123336", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "\"Laredo striped whiptail\"\nLaredo striped whiptail The Laredo striped whiptail (\"\"Aspidoscelis laredoensis\"\") is a species of lizard found in the southern United States, in Texas, and northern Mexico in Coahuila and Tamaulipas. Some sources believe it to be the result of extensive hybridization between the Texas spotted whiptail, \"\"Aspidoscelis gularis\"\" and the six-lined racerunner, \"\"Aspidoscelis sexlineatus\"\". It is one of many lizard species known to be parthenogenic. The Laredo striped whiptail grows from 6 to 11 inches in length. It has an overall color of dark green or dark brown, with 7 yellow or white stripes that run from head to tail, and"} +{"qid": "test2522", "pid": "2137550", "query": "what type of reproduction do whiptail lizards use", "answer": "parthenogenic", "passage": "Teiidae\nTeiidae Teiidae is a family of autarchoglossan lizards native to the Americas. Members of this family are generally known as whiptails or racerunners; however, tegus also belong to this family. Teiidae is sister to the Gymnopthalmidae, and both families comprise the Teiioidea. The Teiidae includes several parthenogenic species – a mode of clonal reproduction. Presently, the Teiidae consists of approximately 150 in eighteen genera. Teiids can be distinguished from other lizards by the following characteristics: they have large rectangular scales that form distinct transverse rows ventrally and generally small granular scales dorsally, they have head scales that are separate from"} +{"qid": "test2524", "pid": "12237790", "query": "when was the peak to peak gondola built", "answer": "in 2007 and 2008", "passage": "\"Peak 2 Peak Gondola\"\nbuilt by the Doppelmayr Garaventa Group in 2007 and 2008 at a cost of CDN$51 million. The Peak 2 Peak Gondola is the first Doppelmayr \"\"3S\"\" tri-cable lift in North America; there are four similar but smaller lifts in Europe which were built in 1991, 1994, 2002, 2004 and 2010 in Switzerland, Austria, France and Germany. Whistler-Blackcomb has touted the gondola as an iconic attraction and uses it to transport skiers in the winter months as well as sightseers year round. Whistler Mountain was opened by the Garibaldi Lift Company in 1965 and Blackcomb opened under separate ownership in 1980."} +{"qid": "test2526", "pid": "5309001", "query": "who played harley in harley davidson and the marlboro man", "answer": "Mickey Rourke", "passage": "\"Harley Davidson and the Marlboro Man\"\nHarley Davidson and the Marlboro Man Harley Davidson and the Marlboro Man is a 1991 action biker film starring Mickey Rourke and Don Johnson, with a supporting cast including Chelsea Field, Daniel Baldwin, Giancarlo Esposito, Tom Sizemore, and Vanessa Williams. It is directed by Simon Wincer from a screenplay by Don Michael Paul. The film provides a notable example of the \"\"biker\"\" stereotype. The title character in the film is named after the motorcycle manufacturer Harley-Davidson. The film was a critical and financial failure, earning only $7 million at the domestic box office (the budget was estimated at $23 million)."} +{"qid": "test2526", "pid": "5309002", "query": "who played harley in harley davidson and the marlboro man", "answer": "Mickey Rourke", "passage": "\"Harley Davidson and the Marlboro Man\"\nIt has since become a cult classic following its release to video. In the near future, Harley Davidson (Mickey Rourke) travels from Texas to Burbank, California to reconnect with his old friend Robert \"\"Marlboro Man\"\" Anderson (Don Johnson) at their old haunt; Rock N' Roll Bar & Grille. Their mutual friend Jack Daniels (Big John Studd) holds animosity towards Harley over an affair he and his now-wife Lulu (Vanessa Williams) had years prior. The bar has fallen on hard times, and the Great Trust bank has threatened foreclosure, planning to demolish the building to make way for a skyscraper. Harley"} +{"qid": "test2526", "pid": "2818460", "query": "who played harley in harley davidson and the marlboro man", "answer": "Mickey Rourke", "passage": "\"Mickey Rourke\"\nfilm, which gained him a nomination for a Razzie award (also for \"\"Desperate Hours\"\"). In 1991 he starred in the box office bomb \"\"Harley Davidson and the Marlboro Man\"\" as Harley Davidson, a biker whose best friend, Marlboro, was played by Don Johnson. In his last role before departing for the boxing ring, Rourke played an arms dealer chased by Willem Dafoe and Samuel L. Jackson in \"\"White Sands\"\", a film noir that reviewers found stylish but incoherent. Rourke's acting career eventually became overshadowed by his personal life and career decisions. Directors such as Alan Parker found it difficult to"} +{"qid": "test2527", "pid": "19807841", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nas the rest of the game represented total domination from Nick Foles and the Eagles' offense, who racked up 456 total yards and 38 unanswered points. With a blowout win against one of the league's top defenses, the Eagles advanced to their third Super Bowl. The Philadelphia Eagles entered Super Bowl LII as a 5.5 point underdog to the defending champions; the New England Patriots. This was also their first appearance in 13 years, with their last Super Bowl berth happening in 2005 (Super Bowl XXXIX), which also happened to be against the New England Patriots. In the first quarter,"} +{"qid": "test2527", "pid": "19807846", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nthe Patriots' last hopes. The Philadelphia Eagles defeated the Patriots by a score of 41–33. Nick Foles also was named Super Bowl MVP after the game. With this win, the Eagles finally won their first Super Bowl, and their first NFL title since 1960. A Super Bowl victory parade took place four days later on February 8. 2017 Philadelphia Eagles season The 2017 Philadelphia Eagles season was the franchise's 85th season in the National Football League, the 15th playing their home games at Lincoln Financial Field, and the second under head coach Doug Pederson. The Eagles improved their 7–9 record"} +{"qid": "test2527", "pid": "3200081", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"Super Bowl XXXIX\"\nSeahawks, 28–24, ten years later and Super Bowl LI against the Atlanta Falcons, 34-28, two years later. The latest Super Bowl win for the Patriots makes it ten titles among the four Boston teams (5 by the Patriots, 3 by the Red Sox, and one each by the Celtics and Bruins) since 2002. With the Eagles’ loss, the city of Philadelphia’s sports championship drought continued (no Philly-based pro sports team since the 1983 Sixers won the NBA title) until the Phillies won the 2008 World Series. The Eagles did not return to the Super Bowl until 2017, also with a"} +{"qid": "test2527", "pid": "17025369", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"Lane Johnson\"\nFocus. He was ranked the top right tackle and received a $250,000 bonus for making the Pro Bowl. Johnson did not attend the Pro Bowl as the Eagles would play in Super Bowl LII. Johnson and Chris Long wore rubber masks of a German Shepherd (symbolic of the team's underdog status) after the 2017 Divisional playoff game versus the Atlanta Falcons, as the Falcons were considered favorites to win. Following the game, Philadelphia Eagles fans bought so many dog masks from Amazon that they were sold out. In Super Bowl LII, the Eagles defeated the New England Patriots 41-33 to"} +{"qid": "test2527", "pid": "6224942", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"History of the Philadelphia Eagles\"\nfirst time since the 2004 season. The Eagles would face Tom Brady and the New England Patriots in a rematch of Super Bowl XXXIX at Super Bowl LII. The Eagles would end up winning the game 41-33 to give the Eagles their first Super Bowl Championship and their first championship since the 1960 season before the NFL-AFL merger. Nick Foles would be named Super Bowl MVP. The Eagles came back from a successful 2017 season hoping to become the first repeat Super Bowl victors since the New England Patriots during their 2003 and 2004 season. Before the season started many"} +{"qid": "test2527", "pid": "16409522", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"Brandon Brooks (American football)\"\nstarter and remained there throughout his Texans tenure. On March 9, 2016, Brooks signed a five-year, $40 million contract with the Philadelphia Eagles. He started 14 games at right guard in his first year in Philadelphia. On December 19, 2017, Brooks was named to his first Pro Bowl along with right tackle Lane Johnson after starting all 16 games at right guard. He could not play in the Pro Bowl because of his team advancing to the Super Bowl. Brooks would win his first Super Bowl when the Eagles defeated the New England Patriots in Super Bowl LII 41-33. Brandon"} +{"qid": "test2527", "pid": "19807797", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nwon 24–21. Backup quarterback Nick Foles was named Super Bowl MVP and became the first backup to receive this award since his opponent, Tom Brady, did in Super Bowl XXXVI. The Eagles defeated both Super Bowl teams from the previous NFL season (the New England Patriots and the Atlanta Falcons) in the playoffs. They also defeated both teams who had beaten them in their only two previous Super Bowl appearances. They defeated the Oakland Raiders in the regular season, who beat them in Super Bowl XV and the Patriots in the Super Bowl, who previously beat them in Super Bowl"} +{"qid": "test2527", "pid": "19807796", "query": "when did the eagles win last super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test2529", "pid": "5447932", "query": "what is upstream project in oil and gas", "answer": "drilling exploratory wells", "passage": "\"Upstream (petroleum industry)\"\nUpstream (petroleum industry) The oil and gas industry is usually divided into three major sectors: upstream (or exploration and production- E&P\"\")\"\", midstream and downstream. The upstream sector includes searching for potential underground or underwater crude oil and natural gas fields, drilling exploratory wells, and subsequently drilling and operating the wells that recover and bring the crude oil or raw natural gas to the surface. Upstream Industry has traditionally experienced the highest number of Mergers, Acquisitions and Divestitures. M&A activity for upstream oil and gas deals in 2012 totaled $254 billion in 679 deals. A large chunk of this M&A, 33%"} +{"qid": "test2531", "pid": "863675", "query": "what is the written dialogue portion of a musical called", "answer": "script", "passage": "Screenplay\npoint, 10 pitch Courier Typeface. The major components are action (sometimes called \"\"screen direction\"\") and dialogue. The action is written in the present tense and is limited to what can be heard or seen by the audience, for example descriptions of settings, character movements, or sound effects. The dialogue is the words the characters speak, and is written in a center column. Unique to the screenplay (as opposed to a stage play) is the use of slug lines. A \"\"slug line\"\", also called a \"\"master scene heading\"\", occurs at the start of every scene and typically contains three pieces of"} +{"qid": "test2531", "pid": "574934", "query": "what is the written dialogue portion of a musical called", "answer": "libretto", "passage": "Libretto\nto music as written – in prose – with the lyrics of the arias, duets, trios and choruses written in verse. The libretto of a musical, on the other hand, is almost always written in prose (except for the song lyrics). The libretto of a musical, if the musical is adapted from a play (or even a novel), may even borrow their source's original dialogue liberally – much as \"\"Oklahoma!\"\" used dialogue from Lynn Riggs's \"\"Green Grow the Lilacs\"\", \"\"Carousel\"\" used dialogue from Ferenc Molnár's \"\"Liliom\"\", \"\"My Fair Lady\"\" took most of its dialogue word-for-word from George Bernard Shaw's \"\"Pygmalion\"\","} +{"qid": "test2531", "pid": "3217692", "query": "what is the written dialogue portion of a musical called", "answer": "script", "passage": "\"The Bartered Bride\"\nfollowing months Sabina was encouraged to develop this into a full-length text, and to provide a Czech translation. According to Smetana's biographer Brian Large, this process was prolonged and untidy; the manuscript shows amendments and additions in Smetana's own hand, and some pages apparently written by Smetana's wife Bettina (who may have been receiving dictation). By the end of 1863 a two-act version, with around 20 musical numbers separated by spoken dialogue, had been assembled. Smetana's diary indicates that he, rather than Sabina, chose the work's title because \"\"the poet did not know what to call it.\"\" The translation \"\"Sold"} +{"qid": "test2535", "pid": "6477329", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2001 NBA Finals\"\nthird championship in the 2004 NBA Finals, defeating the Lakers 4–1. 2001 NBA Finals The 2001 NBA Finals was the championship round of the National Basketball Association (NBA)'s 2000–01 season. The Western Conference champion Los Angeles Lakers took on the Eastern Conference champion Philadelphia 76ers for the championship, with the Lakers holding home-court advantage in a best-of-seven format. The Lakers won the series 4 games to 1. Lakers center Shaquille O'Neal was named the Most Valuable Player of the series. Allen Iverson scored 48 points in his only NBA Finals victory, as the 76ers took Game 1 107–101 in overtime,"} +{"qid": "test2535", "pid": "6088196", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"1999–2000 NBA season\"\n1999–2000 NBA season The 1999–2000 NBA season was the 54th season of the National Basketball Association. The season ended with the Los Angeles Lakers winning the NBA championship, beating the Indiana Pacers 4 games to 2 in the 2000 NBA Finals. Notes Teams in bold advanced to the next round. The numbers to the left of each team indicate the team's seeding in its conference, and the numbers to the right indicate the number of games the team won in that round. The division champions are marked by an asterisk. Home court advantage does not necessarily belong to the higher-seeded"} +{"qid": "test2535", "pid": "804085", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"Los Angeles Lakers\"\nin 7 games and the 1989 NBA Finals, which the Pistons won in 4 games. The rivalry reemerged in the early 2000s as both teams squared off against one another in the 2004 NBA Finals, which the Pistons won in five games. The rivalry between the Lakers and the Los Angeles Clippers is unique because they are the only two NBA teams to share an arena, the Staples Center. It is also one of only two intra-city rivalries in the NBA, the other being the new crosstown rivalry between the New York Knicks and Brooklyn Nets. Los Angeles fans have"} +{"qid": "test2535", "pid": "13465948", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2009–10 Los Angeles Lakers season\"\nto the NBA Finals where they defeated the Boston Celtics in a rematch of the 2008 NBA Finals won by the Celtics 4 games to 2. This time, the Lakers won the series 4 games to 3 for their 16th NBA title and handed Boston its first Game 7 loss in an NBA Finals in team history. Kobe Bryant won his second consecutive NBA Finals MVP as well as his fifth and final NBA Championship. On July 14, 2010, Phil Jackson won the 2010 ESPY Awards for Best Coach/Manager while Kobe Bryant won for Best NBA Player. The Lakers came"} +{"qid": "test2535", "pid": "6088011", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2000–01 NBA season\"\n2000–01 NBA season The 2000–01 NBA season was the 55th season of the National Basketball Association. The season ended with the Los Angeles Lakers winning their second straight championship, beating the Philadelphia 76ers 4 games to 1 in the 2001 NBA Finals. Notes Teams in bold advanced to the next round. The numbers to the left of each team indicate the team's seeding in its conference, and the numbers to the right indicate the number of games the team won in that round. The division champions are marked by an asterisk. Home court advantage does not necessarily belong to the"} +{"qid": "test2535", "pid": "6477316", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2001 NBA Finals\"\n2001 NBA Finals The 2001 NBA Finals was the championship round of the National Basketball Association (NBA)'s 2000–01 season. The Western Conference champion Los Angeles Lakers took on the Eastern Conference champion Philadelphia 76ers for the championship, with the Lakers holding home-court advantage in a best-of-seven format. The Lakers won the series 4 games to 1. Lakers center Shaquille O'Neal was named the Most Valuable Player of the series. Allen Iverson scored 48 points in his only NBA Finals victory, as the 76ers took Game 1 107–101 in overtime, handing the Lakers their only loss of the playoffs. However, the"} +{"qid": "test2535", "pid": "7799895", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2001 NBA Playoffs\"\nLast Playoff Meeting: 1983 NBA Finals (Philadelphia won 4-0) This was the sixth playoff meeting between these two teams, with the Lakers winning four of the first five meetings. 2001 NBA Playoffs The 2001 NBA Playoffs was the postseason tournament of the National Basketball Association's 2000-01 season. The tournament concluded with the Western Conference champion Los Angeles Lakers defeating the Eastern Conference champion Philadelphia 76ers 4 games to 1. Shaquille O'Neal was named NBA Finals MVP for the second straight year. Since 2001, the 76ers have not advanced beyond the conference semifinals. This was the 76ers' first Finals appearance since"} +{"qid": "test2535", "pid": "11044181", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2001–02 Los Angeles Lakers season\"\nwent on to win the NBA Finals, defeating and sweeping the New Jersey Nets in four straight games for their second three-peat in franchise history, the first since 1952–54. Following the season, Richmond retired and Hunter was traded to the Toronto Raptors. This would be the third and final consecutive NBA Championship the Lakers won in the early 2000s, as in the next season, their quest for a fourth consecutive NBA Championship ended with a playoff elimination by the San Antonio Spurs in six games in the Semifinals, who would then go on to win the NBA Finals that season"} +{"qid": "test2535", "pid": "11008478", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"1999–2000 Los Angeles Lakers season\"\nand the Pacers dominated the game from the start in what would be Larry Bird's last game as a coach in the state of Indiana. Reggie Miller came out and made 5 straight shots including a 4-point play. The Pacers hit their first 6 three point shots in the game. The Pacers would have a 20-point lead in the 2nd quarter, and eventually won by 33 – it was the worst Lakers NBA Finals loss since the 148–114 loss to Boston in the 1985 NBA Finals, known as the \"\"Memorial Day Massacre.\"\" With their loss in Game 5, the Lakers"} +{"qid": "test2535", "pid": "6477287", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2000 NBA Finals\"\n2000 NBA Finals The 2000 NBA Finals was the championship round of the National Basketball Association (NBA)'s 1999–2000 season, and the culmination of the season's playoffs. The Western Conference champion Los Angeles Lakers defeated the Eastern Conference champion Indiana Pacers 4 games to 2. Lakers center Shaquille O'Neal was named the NBA Finals Most Valuable Player (MVP) of the series, his first of three consecutive honors. The series was played under a best-of-seven format, with the Lakers holding home court advantage. Until 2008, this was the most recent NBA Finals where both number one seeds from both conferences faced off"} +{"qid": "test2535", "pid": "11989226", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2000–01 Indiana Pacers season\"\nwon 4-2) 2000–01 Indiana Pacers season The 2000–01 NBA season was the Pacers' 25th season in the National Basketball Association, and 34th season as a franchise. The Pacers were coming off of an NBA Finals defeat to the Los Angeles Lakers in six games. During the offseason, the Pacers hired former Indiana University and Detroit Pistons star Isiah Thomas as Head Coach, while acquiring Jermaine O'Neal from the Portland Trail Blazers. With the departures of veteran players from the team that reached the Finals last year, the Pacers struggled playing mediocre basketball for most of the season, and finished fourth"} +{"qid": "test2535", "pid": "9371949", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"1973 NBA Playoffs\"\n4-1) (2) Los Angeles Lakers vs. (2) New York Knicks: \"\"Knicks win series 4-1\"\" Last playoff meeting: 1972 NBA Finals (Los Angeles won 4-1) 1973 NBA Playoffs The 1973 NBA Playoffs was the postseason tournament of the National Basketball Association's 1972–73 season. The tournament concluded with the Eastern Conference champion New York Knicks defeating the Western Conference champion Los Angeles Lakers 4 games to 1 in the NBA Finals. The Knicks won their second (and most recent) NBA title. Willis Reed became the first player to be named NBA Finals MVP twice. The playoff format was modified, as only the"} +{"qid": "test2535", "pid": "6477309", "query": "who won game 4 of the 2000 nba finals", "answer": "Los Angeles Lakers", "passage": "\"2000 NBA Finals\"\nlater resurface as President of Basketball Operations in . The Pacers continued to make the playoffs every season until 2006, the year after Reggie Miller retired. 2000 NBA Finals The 2000 NBA Finals was the championship round of the National Basketball Association (NBA)'s 1999–2000 season, and the culmination of the season's playoffs. The Western Conference champion Los Angeles Lakers defeated the Eastern Conference champion Indiana Pacers 4 games to 2. Lakers center Shaquille O'Neal was named the NBA Finals Most Valuable Player (MVP) of the series, his first of three consecutive honors. The series was played under a best-of-seven format,"} +{"qid": "test2536", "pid": "14310214", "query": "where does the brazos river start and stop", "answer": "Llano Estacado", "passage": "\"Double Mountain Fork Brazos River\"\nDouble Mountain Fork Brazos River The Double Mountain Fork Brazos River is an ephemeral, sandy-braided stream about long, heading on the Llano Estacado of West Texas about southeast of Tahoka, Texas, flowing east-northeast across the western Rolling Plains to join the Salt Fork, forming the Brazos River about west-northwest of Haskell, Texas. The Double Mountain Fork Brazos River begins as a shallow draw near the eastern edge of the Llano Estacado in Lynn County, about northeast of the small farming community of Draw, Texas. The stream generally runs eastward across southern Garza County, where it is fed by springs, providing"} +{"qid": "test2536", "pid": "16832509", "query": "where does the brazos river start and stop", "answer": "Llano Estacado", "passage": "\"Salt Fork Brazos River\"\nBrazos is properly called the Salt Fork Brazos River, and should not be called the Salt Fork of the Brazos River. Salt Fork Brazos River The Salt Fork Brazos River is a braided, highly intermittent stream about long, heading along the edge of the Llano Estacado about east-southeast of Lubbock, Texas. From its source, it flows generally east-southeastward to join the Double Mountain Fork to form the Brazos River about west-northwest of Haskell, Texas. The Salt Fork stretches across portions of Crosby, Garza, Kent, and Stonewall counties of West Texas. The Salt Fork Brazos River begins as a dry channel"} +{"qid": "test2536", "pid": "14310217", "query": "where does the brazos river start and stop", "answer": "Llano Estacado", "passage": "\"Double Mountain Fork Brazos River\"\nDouble Mountain Fork of the Brazos River.\"\" Perhaps this is an attempt to distinguish this stream from the North Fork Double Mountain Fork Brazos River, a tributary of the Double Mountain Fork. The stream described here, however, is the main stem of the Double Mountain Fork Brazos River and, therefore, it is not a tributary of the Double Mountain Fork, rather it is a tributary of the Brazos River. Double Mountain Fork Brazos River The Double Mountain Fork Brazos River is an ephemeral, sandy-braided stream about long, heading on the Llano Estacado of West Texas about southeast of Tahoka, Texas,"} +{"qid": "test2536", "pid": "1739885", "query": "where does the brazos river start and stop", "answer": "Llano Estacado", "passage": "\"Brazos River\"\ntributaries of the Upper Brazos that rise on the high plains of the Llano Estacado, flowing southeast through the center of Texas. Another major tributary of the Upper Brazos is the Clear Fork Brazos River, which passes by Abilene and joins the main river near Graham. Important tributaries of the Lower Brazos include the Paluxy River, the Bosque River, the Little River, Yegua Creek, the Nolan River, the Leon River, the San Gabriel River, the Lampasas River, and the Navasota River. Initially running east towards Dallas-Fort Worth, the Brazos turns south, passing through Waco and the Baylor University campus, further"} +{"qid": "test2536", "pid": "1739884", "query": "where does the brazos river start and stop", "answer": "Gulf of Mexico", "passage": "\"Brazos River\"\nBrazos River The Brazos River ( ), called the \"\"Rio de los Brazos de Dios\"\" (translated as \"\"The River of the Arms of God\"\") by early Spanish explorers, is the 11th-longest river in the United States at from its headwater source at the head of Blackwater Draw, Curry County, New Mexico to its mouth at the Gulf of Mexico with a drainage basin. Being one of Texas' largest rivers , it is sometimes used to mark the boundary between East Texas and West Texas. The Brazos proper begins at the confluence of the Salt Fork and Double Mountain Fork, two"} +{"qid": "test2536", "pid": "1739894", "query": "where does the brazos river start and stop", "answer": "Gulf of Mexico", "passage": "\"Brazos River\"\nlakes. Hunting and fishing are also permitted at select locations along the river. Outdoor enthusiasts enjoy the opportunity to find beautiful scenery and abundant wildlife on the river. Fly fishing and river fishing for largemouth bass are popular. Brazos River The Brazos River ( ), called the \"\"Rio de los Brazos de Dios\"\" (translated as \"\"The River of the Arms of God\"\") by early Spanish explorers, is the 11th-longest river in the United States at from its headwater source at the head of Blackwater Draw, Curry County, New Mexico to its mouth at the Gulf of Mexico with a drainage"} +{"qid": "test2536", "pid": "16832505", "query": "where does the brazos river start and stop", "answer": "Llano Estacado", "passage": "\"Salt Fork Brazos River\"\nSalt Fork Brazos River The Salt Fork Brazos River is a braided, highly intermittent stream about long, heading along the edge of the Llano Estacado about east-southeast of Lubbock, Texas. From its source, it flows generally east-southeastward to join the Double Mountain Fork to form the Brazos River about west-northwest of Haskell, Texas. The Salt Fork stretches across portions of Crosby, Garza, Kent, and Stonewall counties of West Texas. The Salt Fork Brazos River begins as a dry channel (draw) near the edge of the Llano Estacado in Crosby County, about southwest of the cotton gin in the small farming"} +{"qid": "test2537", "pid": "6426091", "query": "number 4 in roman numerals on clock faces", "answer": "IV", "passage": "\"Halifax Town Clock\"\nis a three-tiered (three storey), irregular octagon tower built atop a one storey white clapboard building of classic Palladian proportions. It was erected on the east slope of Citadel Hill facing Barrack (now Brunswick) Street. The clock face is 4-sided displaying Roman numerals. As with most clocks the \"\"4\"\" is shown as IIII for aesthetic symmetry and not as IV. The clock mechanism was constructed by the \"\"House of Vulliamy\"\", respected Royal Clockmakers based in London. It is driven by three weights, gears, and a 13-foot pendulum with the mechanism being housed in a cast iron frame located in the"} +{"qid": "test2537", "pid": "8881087", "query": "number 4 in roman numerals on clock faces", "answer": "IV", "passage": "\"Big Ben\"\nAt the base of each clock dial in gilt letters is the Latin inscription: Which means \"\"O Lord, keep safe our Queen Victoria the First\"\". Unlike most other Roman numeral clock dials, which show the '4' position as 'IIII', the Great Clock faces depict '4' as 'IV'. The clock's movement is famous for its reliability. The designers were the lawyer and amateur horologist Edmund Beckett Denison, and George Airy, the Astronomer Royal. Construction was entrusted to clockmaker Edward John Dent; after his death in 1853 his stepson Frederick Dent completed the work, in 1854. As the tower was not complete"} +{"qid": "test2537", "pid": "13225993", "query": "number 4 in roman numerals on clock faces", "answer": "IV", "passage": "\"Legacy of the Roman Empire\"\nmeaning before midday) and P.M. (\"\"post-meridiem\"\", meaning past midday). The Romans also started the practice used worldwide today of a new day beginning at midnight. Roman numerals continued as the primary way of writing numbers in Europe until the 14th century, when they were largely replaced in common usage by Hindu-Arabic numerals. The Roman numeral system continues to be widely used, however, in certain formal and minor contexts, such as on clock faces, coins, in the year of construction on cornerstone inscriptions, and in generational suffixes (such as Louis XIV or William Howard Taft IV). According to the Royal Spanish"} +{"qid": "test2537", "pid": "11710259", "query": "number 4 in roman numerals on clock faces", "answer": "IV", "passage": "\"Jam Gadang\"\nand was shipped via Rotterdam. Each clock face has a diameter of . The tower's base is and it stands tall. The clocks use \"\"IIII\"\" for the number 4 instead of the traditional Roman number \"\"IV\"\". According to one local story, the four vertical lines represents the four workers who died while constructing the building. Another story suggests that the clocks used \"\"IIII\"\" to avoid rumors that \"\"IV\"\" stood for a Dutch victory. The laying of the tower's cornerstone was done by the 6-year-old son of Rook Maker, the city secretary of Bukittinggi at the time. The Jam Gadang tower"} +{"qid": "test2539", "pid": "6060871", "query": "who did america declare war on in ww1", "answer": "Austria-Hungary", "passage": "\"Dybbøl\"\nvisible at the Dybbøl Museum to this day. In 1914, right before the advent of WW1, the German Empire celebrated the anniversary of their victory at Als. The celebrations were held at the newly constructed trench system at Dybbøl, where about 2.000 war veterans from both Germany and Austria-Hungary attended, along with the Emperors brother, Prince Heinrich. This would be the last German celebration in Dybbøl, as WW1 would break out shortly after. After the end of World War I, populations in the former Duchy of Schleswig were given the opportunity through the Versailles Treaty to vote for which country"} +{"qid": "test254", "pid": "58680", "query": "when was the last summer olympics in the usa", "answer": "1996", "passage": "\"Bob Costas\"\nchance to do more of the long-form programming I enjoy.\"\" Costas told \"\"USA Today\"\" that his gradual retirement was planned in advance, and that he did not want to announce it during the 2016 Summer Olympics or the NFL season because it would be too disruptive, and joked that \"\"I'm glad that Sochi wasn't the last one. You wouldn't want your pink-eye Olympics to be your last Olympics.\"\" Costas hosted the syndicated radio program \"\"Costas Coast to Coast\"\" from 1986 to 1996, which was revived as \"\"Costas on the Radio\"\". \"\"Costas on the Radio\"\", which ended its three-year run on"} +{"qid": "test2540", "pid": "17066528", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "\"Milling (machining)\"\nfor face milling tend to have only small cutters at their end corners. The cutting surfaces of a milling cutter are generally made of a hard and temperature-resistant material, so that they wear slowly. A low cost cutter may have surfaces made of high speed steel. More expensive but slower-wearing materials include cemented carbide. Thin film coatings may be applied to decrease friction or further increase hardness. They are cutting tools typically used in milling machines or machining centres to perform milling operations (and occasionally in other machine tools). They remove material by their movement within the machine (e.g., a"} +{"qid": "test2540", "pid": "5294289", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "FR-2\ninstalled in vehicles, as continuous vibration can make cracks propagate, causing hairline fractures in copper circuit traces. Without copper foil lamination, FR-2 is sometimes used for simple structural shapes and electrical insulation. FR-2 can be machined by drilling, sawing, milling and hot punching. Cold punching and shearing are not recommended, as they leave a ragged edge and tend to cause cracking. Tools made of high-speed steel can be used, although tungsten carbide tooling is preferred for high volume production. Adequate ventilation or respiration protection are mandatory during high-speed machining, as it gives off toxic vapors. FR-2 FR-2 (Flame Resistant 2)"} +{"qid": "test2540", "pid": "5985378", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "\"End mill\"\ntypes as well. There are four critical angles of each cutting tool: end cutting edge angle, axial relief angle, radial relief angle, and radial rake angle. Depending on the material being milled, and what task should be performed, different tool types and geometry may be used. For instance, when milling a material like aluminium, it may be advantageous to use a tool with very deep, polished flutes, a very sharp cutting edge and high rake angles. When machining a tough material such as stainless steel, however, shallow flutes and a squared-off cutting edge will optimize material removal and tool life."} +{"qid": "test2540", "pid": "8049999", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "\"Surface feet per minute\"\nbetter at specific SFMs. When the SFM is known for a specific material (\"\"ex 303 annealed stainless steel = 120 SFM for high speed steel tooling\"\"), a formula can be used to determine spindle speed for live tools or spindle speeds for turning materials. In a milling machine, the \"\"tool\"\" diameter is substituted for \"\"stock\"\" diameter in the following formulas when the cutter is revolving and the stock is stationary. Spindle Speed can be calculated using the following equation: SFM can be calculated using the following equation: Surface feet per minute Surface feet per minute (SFPM or SFM) is the"} +{"qid": "test2540", "pid": "3201554", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "\"High-speed steel\"\nfeeders, etc. Although this method has been reported to be both beneficial and stable, it has yet to see widespread commercial use. The main use of high-speed steels continues to be in the manufacture of various cutting tools: drills, taps, milling cutters, tool bits, gear cutters, saw blades, planer and jointer blades, router bits, etc., although usage for punches and dies is increasing. High speed steels also found a market in fine hand tools where their relatively good toughness at high hardness, coupled with high abrasion resistance, made them suitable for low speed applications requiring a durable keen (sharp) edge,"} +{"qid": "test2540", "pid": "19183177", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "\"Dormer Pramet\"\nHigh-Speed Steel and Carbide • Threading tools, including thread milling cutters and dies, High-Speed Steel and Carbide • Reamers & countersinks, High-Speed Steel and Carbide • Ancillary ranges, including solid carbide burrs and cutting lubricants The global brand used for indexable tools is Pramet. Products are also marketed under the affiliate brands of Safety in France and Impero in Italy. The offer includes: • Drilling tools, Cemented Carbide • Milling tools, Cemented Carbide • Turning tools, Cemented Carbide • Parting and grooving tools, Cemented Carbide • Boring tools, Cemented Carbide • Tooling Systems • Special tools Dormer Pramet also offer"} +{"qid": "test2540", "pid": "1925527", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "Metalworking\naluminum to stainless steel and almost everything in between. Each material requires a different speed on the milling tool and varies in the amount of material that can be removed in one pass of the tool. Harder materials are usually milled at slower speeds with small amounts of material removed. Softer materials vary, but usually are milled with a high bit speed. The use of a milling machine adds costs that are factored into the manufacturing process. Each time the machine is used coolant is also used, which must be periodically added in order to prevent breaking bits. A milling"} +{"qid": "test2540", "pid": "17066549", "query": "tools made from high-speed tool steel are generally used for what type of machining operations", "answer": "milling", "passage": "\"Milling (machining)\"\nSK and HSK tooling, sometimes called \"\"Hollow Shank Tooling\"\", is much more common in Europe where it was invented than it is in the United States. It is claimed that HSK tooling is even better than BT Tooling at high speeds. The holding mechanism for HSK tooling is placed within the (hollow) body of the tool and, as spindle speed increases, it expands, gripping the tool more tightly with increasing spindle speed. There is no pull stud with this type of tooling. For manual milling machines, there is less standardization, because a greater plurality of formerly competing standards exist. Newer"} +{"qid": "test2541", "pid": "5890427", "query": "who played jason in friday the 13th the final chapter", "answer": "Ted White", "passage": "\"Friday the 13th: The Final Chapter\"\n\"\"Friday the 13th\"\" film, complimenting both its narrative and kills. Friday the 13th: The Final Chapter Friday the 13th: The Final Chapter is a 1984 American slasher film directed by Joseph Zito, produced by Frank Mancuso Jr., and starring Corey Feldman, Ted White, Kimberly Beck, and Crispin Glover. It is the fourth installment in the \"\"Friday the 13th\"\" film series. Picking up immediately after the events of \"\"Friday the 13th Part III\"\", the story follows a presumed-dead Jason Voorhees brought to the morgue, where he spontaneously revives and escapes. He then returns to Crystal Lake to continue his killing spree,"} +{"qid": "test2541", "pid": "5890405", "query": "who played jason in friday the 13th the final chapter", "answer": "Ted White", "passage": "\"Friday the 13th: The Final Chapter\"\nFriday the 13th: The Final Chapter Friday the 13th: The Final Chapter is a 1984 American slasher film directed by Joseph Zito, produced by Frank Mancuso Jr., and starring Corey Feldman, Ted White, Kimberly Beck, and Crispin Glover. It is the fourth installment in the \"\"Friday the 13th\"\" film series. Picking up immediately after the events of \"\"Friday the 13th Part III\"\", the story follows a presumed-dead Jason Voorhees brought to the morgue, where he spontaneously revives and escapes. He then returns to Crystal Lake to continue his killing spree, targeting a family and a group of neighboring teenagers. Much"} +{"qid": "test2541", "pid": "5890422", "query": "who played jason in friday the 13th the final chapter", "answer": "Ted White", "passage": "\"Friday the 13th: The Final Chapter\"\nof the actors had to perform uncomfortable or dangerous stunts for the movie. Judie Aronson was required to remain submerged in a highly freezing lake, in which she later developed hypothermia because of it, and Peter Barton was genuinely slammed against the shower wall when Jason attacks him. Ted White, who portrays Jason Voorhees, defended several of the actors by requesting Barton to have a crash pad, and threatening to quit when Zito refused to remove Aronson from the cold lake in-between takes. White and Zito maintained a hostile relationship on set, resulting in White demanding his name to be"} +{"qid": "test2541", "pid": "7258654", "query": "who played jason in friday the 13th the final chapter", "answer": "Ted White", "passage": "\"Ted White (stuntman)\"\nroles in several western films and in such television series as \"\"Daniel Boone\"\", \"\"Hunter\"\", \"\"Magnum, P.I.\"\" and \"\"The Rockford Files\"\", usually in tough-guy roles such as police officers or hired thugs. He has also worked in \"\"Gone in 60 Seconds\"\", \"\"Silverado\"\", \"\"Major League\"\", \"\"Starman\"\", and \"\"Tron\"\". In 1984, White played hockey masked murderer Jason Voorhees in \"\"Friday the 13th: The Final Chapter\"\", after the director needed a large man for the part. White reluctantly accepted because he needed the money. Uneasy about playing one of the most infamous murderers in screen history, White asked not to be credited on screen"} +{"qid": "test2542", "pid": "13706510", "query": "who played kelly taylor's mom on 90210", "answer": "Ann Gillespie", "passage": "\"Ann Gillespie\"\nAnn Gillespie Ann Gillespie is a retired American actress who currently works as an Episcopal priest. She is perhaps best known for her recurring role as Jackie Taylor, mother to Kelly Taylor on the original \"\"Beverly Hills, 90210\"\". She reprised the role during the first season of \"\"90210\"\" as mother to both Kelly and Erin Silver. Gillespie made her acting debut in 1981 when she became the second actress to portray Siobhan Ryan Novak on \"\"Ryan's Hope\"\", replacing actress Sarah Felder, who originated the role. Gillespie played the role for one year before she was replaced by Marg Helgenberger. In"} +{"qid": "test2542", "pid": "13706511", "query": "who played kelly taylor's mom on 90210", "answer": "Ann Gillespie", "passage": "\"Ann Gillespie\"\n1984, she appeared in a pilot, \"\"The Sheriff and the Astronaut,\"\" opposite Alec Baldwin. Gillespie is a graduate of Dwight Morrow High School in Englewood, New Jersey. In 2003 she earned her B.A. at Goddard College in Vermont. Ann Gillespie Ann Gillespie is a retired American actress who currently works as an Episcopal priest. She is perhaps best known for her recurring role as Jackie Taylor, mother to Kelly Taylor on the original \"\"Beverly Hills, 90210\"\". She reprised the role during the first season of \"\"90210\"\" as mother to both Kelly and Erin Silver. Gillespie made her acting debut in"} +{"qid": "test2542", "pid": "14444026", "query": "who played kelly taylor's mom on 90210", "answer": "Ann Gillespie", "passage": "\"90210 (season 2)\"\nfor at least one episode, as a socialite that locked horns with Naomi. Rumer Willis guest starred for several episodes as Gia, a \"\"punky, cute lesbian who isn't afraid to speak her mind.\"\" On July 20, 2009, \"\"E! Online\"\" reported that actor John Schneider had been cast as Liam's plastic surgeon stepfather. Jennie Garth signed up to return as her character Kelly Taylor. Ann Gillespie also signed on for a multiple episode arc for the character to mend the broken relationship with her daughters. Gillian Zinser was cast as Ivy Sullivan, a \"\"tomboy surfer chick\"\" and Kelly Lynch was cast"} +{"qid": "test2543", "pid": "16543350", "query": "who does the voice of alistair in dragon age", "answer": "Steve Valentine", "passage": "\"Alistair (Dragon Age)\"\nalso appears in the game's expansion pack \"\"\"\" (if placed as king during \"\"Origins\"\"), the \"\"Darkspawn Chronicles\"\" DLC, \"\"Dragon Age II\"\", and the \"\"Silent Grove\"\" comic series. Alistair has received positive reception, mainly for his sarcastic remarks and romance. However, some writers have compared him to previous BioWare companions, such as Carth Onasi. Alistair was mainly written by David Gaider—the lead writer of \"\"Origins\"\"—and is voiced by Steve Valentine. Alistair is a relatively new Grey Warden, who are a group devoted to fighting darkspawn. He's believed to be the secret son of King Maric and a serving girl, and was"} +{"qid": "test2543", "pid": "16543362", "query": "who does the voice of alistair in dragon age", "answer": "Steve Valentine", "passage": "\"Alistair (Dragon Age)\"\nduring his review of \"\"Origins\"\". Fahey particularly praised Steve Valentine's voice acting, calling Alistair's voice his favourite in the game and noting that many of Alistair's lines would have fallen flat were it not for Valentine's timing. During an interview with Ray Muzyka (the co-founder and CEO of BioWare), VideoGamer.com's interviewer said that while he didn't like Alistair at first he grew to like him and his humour, although Muzyka himself did not like the character. Kirk Hamilton, also writing for Kotaku, called Alistair one of his favorite characters, and looked forward to seeing how he got on with the"} +{"qid": "test2543", "pid": "5082344", "query": "who does the voice of alistair in dragon age", "answer": "Steve Valentine", "passage": "\"Steve Valentine\"\nSteve Valentine Steve Valentine (born 26 October 1966) is a Scottish-American actor, musician, and magician who has performed on stage and screen but who is best known for his role as the eccentric Nigel Townsend on NBC's crime drama \"\"Crossing Jordan\"\" and as Harry Flynn in the critically acclaimed PlayStation 3 game \"\"\"\" as well as the voice of Alistair in BioWare's \"\"Dragon Age\"\" franchise. He also starred in the Disney XD sitcom \"\"I'm in the Band\"\" as Derek Jupiter until its 2011 cancellation. Valentine has been seen in films such as Tim Burton's \"\"Mars Attacks!,\"\" \"\"Teen Beach Movie\"\" and"} +{"qid": "test2544", "pid": "18366306", "query": "what nfl coach has the most wins ever", "answer": "Don Shula", "passage": "\"2014–15 NFL playoffs\"\nappearances ever by a quarterback (6), and tied Mike Lodish for the most by any player. New England coach Bill Belichick tied Don Shula for the most Super Bowls ever reached (6) and set a new record for most postseason wins (21). Blount set new franchise playoff records for carries in a game (30) and career rushing touchdowns (7). For the Colts, Vinatieri set a new NFL record for most postseason games played (30), surpassing the old record of 29 set by Jerry Rice. After the game, claims emerged that the Patriots had used under-inflated footballs. The results of the"} +{"qid": "test2544", "pid": "11454022", "query": "what nfl coach has the most wins ever", "answer": "Don Shula", "passage": "\"Spygate (NFL)\"\nsaying not to do it. But what irritates me is hearing some reactions from players and coaches. These players don't know what their coaches are doing. And some of the coaches have selective amnesia because I know for a fact there were various teams doing this. That's why the memo was sent to everybody. That doesn't make [Belichick] right, but a lot of teams are doing this.\"\" Former Miami Dolphins head coach Don Shula commented on the incident on November 6, when the Patriots themselves were seven wins away from a perfect regular season, saying: \"\"The Spygate thing has diminished"} +{"qid": "test2545", "pid": "13957329", "query": "which is the only test playing nation that india has never beat in t20", "answer": "Scotland", "passage": "\"Julien Fountain\"\nTest, ODI, & T20 series against Sri Lanka, Australia, South Africa, Zimbabwe, West Indies, Scotland, Ireland and India. Major tournaments he was involved with were: Pakistan played four matches; beating both Bangladesh and Sri Lanka in the group stage, but losing to India. Pakistan beat Bangladesh in the final and won the Asia Cup. Pakistan played five matches at the 2012 T20 World Cup in Sri Lanka. They beat New Zealand & Bangladesh, to qualify for the super eight stage. They beat South Africa & Australia, but lost to India; however this still qualified them for the Semi Final. They"} +{"qid": "test2546", "pid": "1387159", "query": "who starred in the tv show even stevens", "answer": "Christy Carlson Romano", "passage": "\"Even Stevens\"\na banner is visible in the background reading, \"\"Home of Spivey and the Wild Wombats.\"\" In the theme song of the show, clay animations of Louis and Ren turn their remote controls into lightsabers, alluding to \"\"Star Wars\"\". Prior to this, Ren reads a TV guide with live-action photos of Christy Carlson Romano and Shia LaBeouf on the cover. Lawrence Junior High is apparently a standard three-grade junior high school. Although the show lasted three seasons, the timeline of the show is only two school years, with Louis and his friends remaining in the 7th grade until some point after"} +{"qid": "test2547", "pid": "1461654", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"Lionel Richie\"\n\"\"All Night Long\"\" the night U.S. tanks invaded Baghdad. Richie was against the war, but says he could see a day when he would come and perform in Baghdad. On October 18, 1975, Richie married his college sweetheart, Brenda Harvey. In 1983 the couple informally adopted Nicole Camille Escovedo, the two-year-old daughter of one of the members of Lionel's band, and niece of drummer Sheila E. They raised her as their daughter, Nicole Richie, and adopted her legally when she was nine years old. In 1986, while still married to Harvey, Richie began a relationship with Diane Alexander. He would"} +{"qid": "test2547", "pid": "4984676", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"Can't Slow Down (Lionel Richie album)\"\nCan't Slow Down (Lionel Richie album) Can't Slow Down is the second solo studio album by American recording artist Lionel Richie. It was released on October 11, 1983 by Motown Records. It has sold over 20 million copies, and is Richie's best-selling album of all time. Five singles were released from \"\"Can't Slow Down\"\", all of which hit the top ten of the Billboard Hot 100 chart, including two that reached #1: \"\"All Night Long (All Night)\"\" and \"\"Hello\"\". The album also won the Grammy Award for Album of the Year in 1985. In a contemporary review for \"\"The Village"} +{"qid": "test2547", "pid": "4984682", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"Can't Slow Down (Lionel Richie album)\"\nsame sessions, all previously unreleased. Personnel as listed in the album's liner notes are: Can't Slow Down (Lionel Richie album) Can't Slow Down is the second solo studio album by American recording artist Lionel Richie. It was released on October 11, 1983 by Motown Records. It has sold over 20 million copies, and is Richie's best-selling album of all time. Five singles were released from \"\"Can't Slow Down\"\", all of which hit the top ten of the Billboard Hot 100 chart, including two that reached #1: \"\"All Night Long (All Night)\"\" and \"\"Hello\"\". The album also won the Grammy Award"} +{"qid": "test2547", "pid": "19051879", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"James Anthony Carmichael\"\nWhen Richie left the Commodores in 1982 for a solo career, Carmichael went with him. The pair co-produced all Richie's albums and singles over the next few years, including the albums \"\"Lionel Richie\"\" (1982), \"\"Can't Slow Down\"\" (1983), and \"\"Dancing on the Ceiling\"\" (1986). The albums featured another string of hits co-produced by Carmichael, including four US number one records on the pop charts - \"\"Truly\"\", \"\"All Night Long (All Night)\"\", \"\"Hello\"\", and \"\"Say You, Say Me\"\". When Richie won his first American Music Award in 1984, he made a point of thanking Carmichael for his involvement. The song \"\"All"} +{"qid": "test2547", "pid": "5079927", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"All Night Long (All Night)\"\nAll Night Long (All Night) \"\"All Night Long (All Night)\"\" is a hit single by American singer-songwriter Lionel Richie from 1983. Taken from his second solo album, \"\"Can't Slow Down\"\", it combined Richie's soulful Commodores style with Caribbean influences. This new, more dance music, pop-inspired approach proved popular, as the single reached number one on three Billboard charts (pop, R&B and adult contemporary). Richard Marx contributed backing vocals as an unknown until his 1987 debut album appeared. In the UK, the song was kept off of the top spot by Billy Joel's \"\"Uptown Girl\"\", peaking at number two on the"} +{"qid": "test2547", "pid": "5079931", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"All Night Long (All Night)\"\nEnrique Iglesias featuring Pitbull. The song was also included in Iglesias's album \"\"Euphoria\"\". In July 2016, it was sampled by the Tanzanian singer Diamond Platnumz in his song \"\"Kidogo\"\" that uses the \"\"party, karambo, fiesta, forever\"\" bit changing it to \"\"[she got me] dancing, party, fiesta, forever\"\". The single features additional vocals by the Nigerian duo P-Square. Original 1983 version 2011 version (featuring Guy Sebastian) All Night Long (All Night) \"\"All Night Long (All Night)\"\" is a hit single by American singer-songwriter Lionel Richie from 1983. Taken from his second solo album, \"\"Can't Slow Down\"\", it combined Richie's soulful Commodores"} +{"qid": "test2547", "pid": "1461649", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"Lionel Richie\"\nGrand Final Replay in Australia, both at the pre-game entertainment to a sell-out crowd and also post-match at AAMI Park. Richie returned to Australia in 2011 where he and guest artist Guy Sebastian toured the country and New Zealand with concert dates throughout March and April. Richie and Guy Sebastian have recorded Richie's 1983 number 1 single \"\"All Night Long\"\" together, to raise money for Australian floods and New Zealand earthquake relief. Richie handpicked Sebastian to support him in Australia and the pair will perform the song together at each concert. On March 26, 2012, Richie released his tenth studio"} +{"qid": "test2547", "pid": "13186141", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"Penny Lover\"\nPenny Lover \"\"Penny Lover\"\" is the title of the fifth and final single released from Lionel Richie's multi-platinum and Grammy Award-winning 1983 album, \"\"Can't Slow Down\"\". The song was written by Richie and his then-wife, Brenda Harvey Richie. As with all the other singles taken from \"\"Can't Slow Down\"\" (\"\"All Night Long (All Night)\"\", \"\"Running with the Night\"\", \"\"Hello\"\" and \"\"Stuck on You\"\"), \"\"Penny Lover\"\" was a top ten hit on the \"\"Billboard\"\" Hot 100 chart, spending two weeks at #8 in December 1984. The song reached an identical #8 peak position on the \"\"Billboard\"\" R&B chart, while on the"} +{"qid": "test2547", "pid": "14523359", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"I Like It (Enrique Iglesias song)\"\nversion of \"\"Euphoria\"\". The song also serves as the first single from the \"\"Jersey Shore\"\" soundtrack. The song was the official song of Airtel 2010 Champions League Twenty20. The song has sold 4 million copies in the US alone, and over 6 million copies worldwide, making it one of the best selling singles of all time. The song was composed by Enrique Iglesias, Pitbull, Lionel Richie, and RedOne. Iglesias and Pitbull wrote their lyrics, RedOne produced the music, and Richie's 1983 classic \"\"All Night Long (All Night)\"\" is interpolated after the first and third choruses. The song is written in"} +{"qid": "test2547", "pid": "14523358", "query": "when did all night long come out lionel richie", "answer": "1983", "passage": "\"I Like It (Enrique Iglesias song)\"\nI Like It (Enrique Iglesias song) \"\"I Like It\"\" is a song performed by Spanish singer Enrique Iglesias taken from his first bilingual studio album, \"\"Euphoria\"\". It features guest vocals from American rapper Pitbull. Both artists co-wrote the electropop song with RedOne, who produced it. It also interpolates Lionel Richie's 1983 single \"\"All Night Long (All Night)\"\". with vocals re-recorded by Richie himself. \"\"I Like It\"\" was released on 3 May 2010. The song was also included on the official soundtrack to MTV reality series \"\"Jersey Shore\"\". A version of the song without Pitbull is also found on the international"} +{"qid": "test2548", "pid": "8617567", "query": "who played major hochstetter in hogan's heroes", "answer": "Howard Caine", "passage": "\"Howard Caine\"\nsitcom \"\"Hogan's Heroes\"\" (1965-1971). Prior to that he appeared on that show in two other roles, in the season one episode \"\"Happy Birthday, Adolf\"\" and the season two episode \"\"The Battle of Stalag 13\"\". The Major Hochstetter character first appeared later in season two. Hochstetter is a feared Gestapo officer who strongly suspects the prisoners, particularly Colonel Hogan, are engaged in clandestine activities, but he is never able to confirm his suspicions and usually ends up getting his comedic comeuppance. Hochstetter had several catchphrases, including (referring to Hogan) \"\"Who is this man?\"\" and \"\"What is this man doing here?\"\", and"} +{"qid": "test2548", "pid": "8617569", "query": "who played major hochstetter in hogan's heroes", "answer": "Howard Caine", "passage": "\"Howard Caine\"\n29 prominent banjo and fiddle contests in the southland for both Best Traditional Banjo and Traditional Singing. He was also a popular folk singer and appeared at a number of prominent folk clubs and folk festivals. Caine died of a heart attack on December 28, 1993, 5 days short of his 68th birthday. Howard Caine Howard Caine (born Howard Cohen; January 2, 1926 – December 28, 1993) was an American character actor, probably best known as Gestapo Major, Wolfgang Hochstetter in the television series \"\"Hogan's Heroes\"\" (1965–71). He also played Lewis Morris of New York in the musical film \"\"1776\"\","} +{"qid": "test2548", "pid": "8617564", "query": "who played major hochstetter in hogan's heroes", "answer": "Howard Caine", "passage": "\"Howard Caine\"\nHoward Caine Howard Caine (born Howard Cohen; January 2, 1926 – December 28, 1993) was an American character actor, probably best known as Gestapo Major, Wolfgang Hochstetter in the television series \"\"Hogan's Heroes\"\" (1965–71). He also played Lewis Morris of New York in the musical film \"\"1776\"\", and Everett Scovill, a thinly disguised portrait of Charles Manson's attorney Irving Kanarek, in the television movie, \"\"Helter Skelter\"\". Howard Caine was born on January 2, 1926, in Nashville, Tennessee, into a Jewish family. At the age of 13, Cohen moved with his family to New York City, where he began studying acting."} +{"qid": "test2548", "pid": "1302089", "query": "who played major hochstetter in hogan's heroes", "answer": "Howard Caine", "passage": "\"Hogan's Heroes\"\nin Culver City, California. The set was destroyed in 1974 while the final scene of \"\"Ilsa, She Wolf of the SS\"\" was filmed. The theme music was composed by Jerry Fielding, who added lyrics to the theme for \"\"Hogan's Heroes Sing The Best of World War II\"\" – an album featuring Dixon, Clary, Dawson, and Hovis singing World War II songs. The song also appeared on the album \"\"Bob Crane, His Drums and Orchestra, Play the Funny Side of TV\"\". The actors who played the four major German roles—Werner Klemperer (Klink), John Banner (Schultz), Leon Askin (Burkhalter), and Howard Caine"} +{"qid": "test2548", "pid": "1302091", "query": "who played major hochstetter in hogan's heroes", "answer": "Howard Caine", "passage": "\"Hogan's Heroes\"\nhis parents were killed at Treblinka. Howard Caine, who was also Jewish (his birth name was Cohen), was American, and Jewish actors Harold Gould and Harold J. Stone made multiple appearances playing German generals. As a teenager, Klemperer fled Hitler's Germany with his family in 1933. During the show's production, he insisted that Hogan always win against his Nazi captors or else he would not take the part of Klink. He defended his playing a Luftwaffe Officer by claiming, \"\"I am an actor. If I can play Richard III, I can play a Nazi.\"\" Banner attempted to sum up the"} +{"qid": "test2549", "pid": "4394468", "query": "who is the song diamonds and rust about", "answer": "Bob Dylan", "passage": "\"Diamonds & Rust\"\nDiamonds & Rust Diamonds & Rust is a 1975 album by Joan Baez. Baez is often regarded as an interpreter of other people's work, and on this album she covered songs written or played by Bob Dylan, Stevie Wonder, The Allman Brothers, and Jackson Browne. But \"\"Diamonds & Rust\"\" also contained a number of her own compositions, including the acclaimed title track, a distinctive song written about Bob Dylan. The title track has been widely covered by other artists. On her cover of Dylan's \"\"Simple Twist of Fate\"\", one verse features Baez attempting a good-humoured impersonation of the song's composer."} +{"qid": "test2549", "pid": "8583820", "query": "who is the song diamonds and rust about", "answer": "Bob Dylan", "passage": "\"Diamonds & Rust (song)\"\nDiamonds & Rust (song) \"\"Diamonds & Rust\"\" is a song written, composed, and performed by Joan Baez. It was written in November 1974 and released in 1975. In the song, Baez recounts an out-of-the-blue phone call from an old lover, which sends her a decade back in time, to a \"\"crummy\"\" hotel in Greenwich Village circa 1964 or 1965; she recalls giving him a pair of cuff-links, and summarizes that memories bring \"\"diamonds and rust\"\". Baez has stated that the lyrics refer to her relationship with Bob Dylan. The song, which was a top-40 hit for Baez on the U.S."} +{"qid": "test2549", "pid": "4394469", "query": "who is the song diamonds and rust about", "answer": "Bob Dylan", "passage": "\"Diamonds & Rust\"\nAn alternate recording of \"\"Dida\"\" had appeared on the previous year's \"\"Gracias A la Vida\"\". The \"\"Diamonds & Rust\"\" recording of the song was more uptempo and featured duet vocals by Joni Mitchell. Side One Side Two Diamonds & Rust Diamonds & Rust is a 1975 album by Joan Baez. Baez is often regarded as an interpreter of other people's work, and on this album she covered songs written or played by Bob Dylan, Stevie Wonder, The Allman Brothers, and Jackson Browne. But \"\"Diamonds & Rust\"\" also contained a number of her own compositions, including the acclaimed title track, a"} +{"qid": "test2549", "pid": "7518983", "query": "who is the song diamonds and rust about", "answer": "Bob Dylan", "passage": "\"Bob Dylan\"\ntoured together again in 1984 with Carlos Santana. Baez recalled her relationship with Dylan in Martin Scorsese's documentary film \"\"No Direction Home\"\" (2005). Baez wrote about Dylan in two autobiographies—admiringly in \"\"Daybreak\"\" (1968), and less admiringly in \"\"And A Voice to Sing With\"\" (1987). Baez's relationship with Dylan is the subject of her song \"\"Diamonds & Rust\"\", which has been described as \"\"an acute portrait\"\" of Dylan. Dylan married Sara Lownds, who had worked as a model and a secretary to Drew Associates, on November 22, 1965. Their first child, Jesse Byron Dylan, was born on January 6, 1966, and"} +{"qid": "test2551", "pid": "7238035", "query": "bacterial cell walls are made rigid by the presence of", "answer": "Peptidoglycan", "passage": "\"Bacterial cell structure\"\nstructural integrity to the cell. In prokaryotes, the primary function of the cell wall is to protect the cell from internal turgor pressure caused by the much higher concentrations of proteins and other molecules inside the cell compared to its external environment. The bacterial cell wall differs from that of all other organisms by the presence of peptidoglycan which is located immediately outside of the cytoplasmic membrane. Peptidoglycan is made up of a polysaccharide backbone consisting of alternating N-Acetylmuramic acid (NAM) and N-acetylglucosamine (NAG) residues in equal amounts. Peptidoglycan is responsible for the rigidity of the bacterial cell wall and"} +{"qid": "test2551", "pid": "2976403", "query": "bacterial cell walls are made rigid by the presence of", "answer": "Peptidoglycan", "passage": "\"Cell envelope\"\nof the cell wall is to protect the cell from internal turgor pressure caused by the much higher concentrations of proteins and other molecules inside the cell compared to its external environment. The bacterial cell wall differs from that of all other organisms by the presence of peptidoglycan (poly-\"\"N\"\"-acetylglucosamine and \"\"N\"\"-acetylmuramic acid), which is located immediately outside of the cytoplasmic membrane. Peptidoglycan is responsible for the rigidity of the bacterial cell wall and for the determination of cell shape. It is relatively porous and is not considered to be a permeability barrier for small substrates. While all bacterial cell walls"} +{"qid": "test2551", "pid": "18033826", "query": "bacterial cell walls are made rigid by the presence of", "answer": "Peptidoglycan", "passage": "\"Bacterial outer membrane vesicles\"\nis another membrane called bacterial outer membrane. The compartment or space between these two membranes is called periplasm or periplasmic space. In addition, there is a firm cell wall consisting of peptidoglycan layer, which surrounds the cell membrane. Peptidoglycan layer provides some rigidity for maintaining the bacterial cell shape, besides also protecting the microbe against challenging environment. Thus, periplasm ensures expandable and additional space for storing microbial cell secretions, for further and strategic use via a specialized secretory pathway. Size and contents of periplasm are therefore, variable as per physiological requirements. The first step in biogenesis of gram-negative bacterial OMVs,"} +{"qid": "test2551", "pid": "11162562", "query": "bacterial cell walls are made rigid by the presence of", "answer": "Peptidoglycan", "passage": "\"Glutamate racemase\"\nis a monomer of the peptidoglycan layer in prokaryotic cell walls. Peptidoglycan is an essential structural component of the bacterial cell wall. The peptidoglycan layer is also responsible for the rigidity of the cell wall. This process, in which MurI helps catalyze the interconversion of glutamate enantiomers, like L-Glutamate, into the essential D-glutamate, is also cofactor independent. As such it can proceed without needing an additional source, which would bind to an allosteric site, altering the enzyme shape to assist in catalyzing the reaction. Murl involves a two-step process to catalyze the glutamate enantiomers to D-glutamate. The first step is"} +{"qid": "test2552", "pid": "14364215", "query": "what city was zeus the patron god of", "answer": "Olympia", "passage": "\"Zeus (DC Comics)\"\nold Olympian order is restored. Athena seemingly perishes from her sustained injuries and Zeus once again becomes King of the Gods, giving Mary Marvel her powers back after she frees the Gods from a chamber on Apokolips. Zeus' manipulations of his followers finally come to a head with the creation of the Gargareans, a race of warriors intended as male counterparts of the Amazons. Zeus murders the Hawaiian god Kāne Milohai, a patron of Wonder Woman, and uses his heart to resurrect Achilles Warkiller, whom he appoints as leader of the Gargareans. Zeus also instates Achilles as the new ruler"} +{"qid": "test2552", "pid": "189084", "query": "what city was zeus the patron god of", "answer": "Olympia", "passage": "Hermes\nHermes Hermes (; ) is the god of trade, heraldry, merchants, commerce, roads, sports, travelers, and athletes in Ancient Greek religion and mythology; the son of Zeus and the Pleiad Maia, he was the second youngest of the Olympian gods (Dionysus being the youngest). Hermes was the emissary and messenger of the gods. Hermes was also \"\"the divine trickster\"\" and \"\"the god of boundaries and the transgression of boundaries, ... the patron of herdsmen, thieves, graves, and heralds.\"\" He is described as moving freely between the worlds of the mortal and divine, and was the conductor of souls into the"} +{"qid": "test2552", "pid": "3771939", "query": "what city was zeus the patron god of", "answer": "Olympia", "passage": "\"Zeus (Marvel Comics)\"\nand mortal women alike, angering his jealous wife. Some of his children from these unions were gods, and joined the Olympian pantheon, while others were mortals such as Helen of Troy and the hero Hercules who eventually became a god. After the Hyborian Age, the ancient Greek civilization began to rise, so Zeus made the Olympian gods known to them to gain their worship. Zeus discovered the principal nexus between the Olympian dimension and Greece was at the top of Greece's Mount Olympus, near Olympia, the principal city of Earth's Eternals. Zeus and his daughter Athena met with Zuras, the"} +{"qid": "test2552", "pid": "9877939", "query": "what city was zeus the patron god of", "answer": "Olympia", "passage": "\"Neptune (Marvel Comics)\"\nNeptune (Marvel Comics) Neptune, also called Poseidon, is a fictional character appearing in American comic books published by Marvel Comics. The character is based on the Roman God with the same name and his Greek counterpart. Neptune is the god of the sea in the Olympian pantheon, and the patron god of Atlantis. Neptune first appeared in \"\"Tales to Astonish\"\" #70 and was adapted by Stan Lee and Gene Colan. Neptune is the son of Cronus and Rhea, and was born in Mount Olympus. Zeus and Pluto are his brothers, and Hera and Vesta are his sisters. Neptune is responsible"} +{"qid": "test2554", "pid": "5186839", "query": "who was the girl that played cindy lou who", "answer": "Taylor Michel Momsen", "passage": "\"Taylor Momsen\"\nTaylor Momsen Taylor Michel Momsen (born July 26, 1993) is an American musician, singer, model, and former actress. She is known for portraying the character of Jenny Humphrey on The CW's teen drama series \"\"Gossip Girl\"\" (2007–2012) and Cindy Lou Who in the film \"\"How the Grinch Stole Christmas\"\" (2000). She is also known for being the lead singer and frontwoman of the American rock band The Pretty Reckless. Momsen was born in St. Louis, Missouri. Her parents are Michael and Collette Momsen and she has a younger sister, Sloane Momsen, who is also an actress. She has Russian ancestry."} +{"qid": "test2554", "pid": "5186853", "query": "who was the girl that played cindy lou who", "answer": "Taylor Michel Momsen", "passage": "\"Taylor Momsen\"\nmaterial for the third Pretty Reckless album. On September 29, 2016, the band released the single \"\"Take Me Down\"\", which reached number two on the Billboard Mainstream Rock Chart. The third album, \"\"Who You Selling For\"\" was released in October 2016. Taylor Momsen Taylor Michel Momsen (born July 26, 1993) is an American musician, singer, model, and former actress. She is known for portraying the character of Jenny Humphrey on The CW's teen drama series \"\"Gossip Girl\"\" (2007–2012) and Cindy Lou Who in the film \"\"How the Grinch Stole Christmas\"\" (2000). She is also known for being the lead singer"} +{"qid": "test2555", "pid": "19076223", "query": "who are the cast members of ncis new orleans", "answer": "Shalita Grant", "passage": "\"NCIS: New Orleans (season 2)\"\na second season, that premiered on September 22, 2015. On June 19, 2015, Daryl Mitchell and Shalita Grant, who had been recurring cast members, were promoted to series regulars. Mark Harmon, Pauley Perrette, David McCallum, Emily Wickersham, and Brian Dietzen guest starred as Leroy Jethro Gibbs, Abby Sciuto, , Ellie Bishop, and Jimmy Palmer respectively in the 12th episode of the season. General NCIS: New Orleans (season 2) The second season of \"\"\"\" premiered on CBS on September 22, 2015. The season airs following \"\"NCIS\"\", on Tuesdays at 9:00 pm (ET). The second season of the \"\"NCIS: New Orleans\"\""} +{"qid": "test2555", "pid": "19411922", "query": "who are the cast members of ncis new orleans", "answer": "Vanessa Ferlito", "passage": "\"NCIS: New Orleans (season 3)\"\nVanessa Ferlito joins the cast as Special Agent Tammy Gregorio, a series regular. NCIS: New Orleans (season 3) The third season of \"\"\"\" premiered on CBS on September 20, 2016 with a time slot change from Tuesdays at 9:00 p.m. to Tuesdays at 10:00 p.m. to make room for new series \"\"Bull\"\". The season contained 24 episodes. This was the last season with Gary Glasberg as the showrunner as he died during production of the season. The season concluded on May 16, 2017. On March 25, 2016, \"\"NCIS: New Orleans\"\" was renewed for a third season, that premiered on"} +{"qid": "test2555", "pid": "14611126", "query": "who are the cast members of ncis new orleans", "answer": "Zoe McLellan", "passage": "\"NCIS (TV series)\"\nstars Scott Bakula as Special Agent Dwayne Cassius Pride, Lucas Black as Special Agent Christopher LaSalle, Zoe McLellan as Special Agent Meredith \"\"Merri\"\" Brody, Rob Kerkovich as Sebastian Lund, and CCH Pounder as Dr. Loretta Wade. Daryl \"\"Chill\"\" Mitchell, Shalita Grant and Vanessa Ferlito joined the main cast later, portraying computer specialist Patton Plame, Special Agent Sonja Percy, and Special Agent Tammy Gregorio, respectively. On May 9, 2014, \"\"NCIS: New Orleans\"\" was picked up by CBS and was renewed for a second season on January 12, 2015. \"\"NCIS\"\" and \"\"NCIS: New Orleans\"\" have had two crossovers. \"\"NCIS\"\" has received many"} +{"qid": "test2555", "pid": "17840288", "query": "who are the cast members of ncis new orleans", "answer": "Scott Bakula", "passage": "\"NCIS: New Orleans\"\nof the city of New Orleans, and CBS' decision to cast Scott Bakula as \"\"one of the most likable leading men in television, so they're set there.\"\" David Hinckley of the New York \"\"Daily News\"\" gave a mixed but critical review of the pilot episode, saying there is a \"\"Crescent City flavor here. But in the larger picture, not much on this menu is unfamiliar.\"\" Liz Shannon Miller and Ben Travers of \"\"Indiewire\"\" said that \"\"NCIS\"\" is like \"\"the obelisk in \"\"2001: A Space Odyssey\"\", it's an awe-inspiring, inescapable presence in the broadcast line-up. \"\"NCIS\"\" on CBS: It is here."} +{"qid": "test2555", "pid": "17840280", "query": "who are the cast members of ncis new orleans", "answer": "Scott Bakula", "passage": "\"NCIS: New Orleans\"\nNCIS: New Orleans NCIS: New Orleans is an American television series combining elements of the military drama and police procedural genres that premiered on Tuesday, September 23, 2014, following its parent series \"\"NCIS\"\". The pilot was written by Gary Glasberg. The series stars Scott Bakula and CCH Pounder, and is executively produced by Glasberg, Mark Harmon, James Hayman and Chris Silber. The series is set and filmed in New Orleans. It is the third series of the \"\"NCIS\"\" franchise. On April 18, 2018, CBS renewed the series for a fifth season. The season premiered on September 25, 2018. \"\"NCIS: New"} +{"qid": "test2555", "pid": "652730", "query": "who are the cast members of ncis new orleans", "answer": "Scott Bakula", "passage": "\"Scott Bakula\"\nHe also appeared in the film \"\"Geography Club\"\" (2013). In February 2014, Bakula was cast as the lead in a backdoor pilot for the current \"\"NCIS\"\" spin-off series, \"\"\"\", which began as a two-part episode of its parent series in the spring season of 2014. The third season of \"\"NCIS: New Orleans\"\" premiered on September 20, 2016. In 2016 Bakula appeared as a guest judge on the HGTV show Brothers Take New Orleans with Property Brothers Jonathan and Drew Scott. He made a cameo appearance on the season 12 opener of \"\"It's Always Sunny in Philadelphia\"\" as himself. Bakula married"} +{"qid": "test2555", "pid": "17840289", "query": "who are the cast members of ncis new orleans", "answer": "Scott Bakula", "passage": "\"NCIS: New Orleans\"\nIt has always been here. It forever will be.\"\" NCIS: New Orleans NCIS: New Orleans is an American television series combining elements of the military drama and police procedural genres that premiered on Tuesday, September 23, 2014, following its parent series \"\"NCIS\"\". The pilot was written by Gary Glasberg. The series stars Scott Bakula and CCH Pounder, and is executively produced by Glasberg, Mark Harmon, James Hayman and Chris Silber. The series is set and filmed in New Orleans. It is the third series of the \"\"NCIS\"\" franchise. On April 18, 2018, CBS renewed the series for a fifth season."} +{"qid": "test2555", "pid": "19411921", "query": "who are the cast members of ncis new orleans", "answer": "Zoe McLellan", "passage": "\"NCIS: New Orleans (season 3)\"\nNCIS: New Orleans (season 3) The third season of \"\"\"\" premiered on CBS on September 20, 2016 with a time slot change from Tuesdays at 9:00 p.m. to Tuesdays at 10:00 p.m. to make room for new series \"\"Bull\"\". The season contained 24 episodes. This was the last season with Gary Glasberg as the showrunner as he died during production of the season. The season concluded on May 16, 2017. On March 25, 2016, \"\"NCIS: New Orleans\"\" was renewed for a third season, that premiered on September 20, 2016. Zoe McLellan, who plays Agent Brody leaves \"\"for creative reasons\"\" and"} +{"qid": "test2555", "pid": "19887444", "query": "who are the cast members of ncis new orleans", "answer": "Shalita Grant", "passage": "\"Shalita Grant\"\nAngeles to pursue television where she fondly recalls her struggles in auditioning 54 times within one year for various roles and, at one point, while running out of savings, briefly turned to bartending before landing a series of guest star roles in \"\"The Good Wife\"\", \"\"Battle Creek\"\", \"\"Bones\"\", and \"\"Melissa & Joey\"\" and finally series regular on \"\"NCIS: New Orleans\"\" from 2015-2018. After departing \"\"NCIS: New Orleans\"\" in 2018, Grant was cast in the recurring role of FBI agent Tess Rogers on the third season of the Netflix horror-comedy series \"\"Santa Clarita Diet\"\". Her film credits include shorts \"\"Empire Corner\"\""} +{"qid": "test2555", "pid": "17840281", "query": "who are the cast members of ncis new orleans", "answer": "Zoe McLellan", "passage": "\"NCIS: New Orleans\"\nOrleans\"\" follows a fictional team of Naval Criminal Investigative Service (NCIS) agents stationed out of New Orleans, Louisiana and led by Special Agent Dwayne Cassius Pride (Scott Bakula). The team focuses on crimes that involve personnel in the United States Navy and Marine Corps, and their territory ranges from the Mississippi River to the Texas Panhandle. The agents under Pride's supervision include Christopher LaSalle (Lucas Black), a former Jefferson Parish sheriff's deputy recruited by Pride following Hurricane Katrina; Meredith Brody (Zoe McLellan), a transfer from the NCIS Great Lakes field office, who has worked as a Special Agent Afloat and"} +{"qid": "test2555", "pid": "17840283", "query": "who are the cast members of ncis new orleans", "answer": "Zoe McLellan", "passage": "\"NCIS: New Orleans\"\nseries for a third season, which premiered on September 20, 2016. Show creator and executive producer Gary Glasberg, age 50, died unexpectedly on September 28, 2016. On March 23, 2017, CBS renewed the series for a fourth season, which premiered on September 26, 2017. On April 18, 2018, CBS renewed the series for a fifth season, which premiered on September 25, 2018. Scott Bakula was cast as the series lead on February 2014 with CCH Pounder, Zoe McLellan and Lucas Black joining soon thereafter. Rob Kerkovich joined the cast in July. He was the final original cast member to join"} +{"qid": "test2555", "pid": "17840282", "query": "who are the cast members of ncis new orleans", "answer": "Shalita Grant", "passage": "\"NCIS: New Orleans\"\nis keen to leave her past behind as she moves to New Orleans; Sonja Percy (Shalita Grant), a former ATF special agent and LaSalle's partner; Tammy Gregorio (Vanessa Ferlito), an FBI prodigy recruited after a short stint investigating Pride; and Sebastian Lund (Rob Kerkovich), a criminalist turned forensics agent and the team’s newest member. They are assisted by Patton Plame (Daryl Mitchell), a computer specialist, and Dr. Loretta Wade (CCH Pounder), a forensic pathologist. On January 12, 2015, \"\"NCIS: New Orleans\"\" was renewed for a second season that premiered on September 22, 2015. On March 25, 2016, CBS renewed the"} +{"qid": "test2555", "pid": "17840284", "query": "who are the cast members of ncis new orleans", "answer": "Zoe McLellan", "passage": "\"NCIS: New Orleans\"\nthe series, though Daryl Mitchell and Shalita Grant joined the series as regulars during season 2. Both had recurred previously. In July 2016, Zoe McLellan, who plays Special Agent Meredith Brody, left the series \"\"for creative reasons\"\", and Vanessa Ferlito joined the cast as FBI Special Agent Tammy Gregorio, a series regular. On February 2, 2018, it was announced that Shalita Grant would leave the series in the 17th episode of season 4; she would ultimately depart in the 19th episode. On August 24, 2018, it was announced that Necar Zadegan would join the cast as Special Agent Hannah Khoury"} +{"qid": "test256", "pid": "7289039", "query": "when did the term sustainability start to be used", "answer": "1987", "passage": "\"Sustainable national income\"\n“The World Conservation Strategy” of 1980 Since the publication of “Our Common Future” in 1987 one has started to include in sustainability besides a sustainable use of the physical surroundings also elements that conflict with this, such as the growth of production as measured in the national income and some social measures. By taking together environmental conservation and herewith conflicting goals in one and the same sustainability indicator the development of the state of the environment is being obscured. Moreover, there are examples of measures that worked socially advantageous in the short term but disastrous in the long term because"} +{"qid": "test256", "pid": "840860", "query": "when did the term sustainability start to be used", "answer": "1987", "passage": "\"Soca music\"\nboth English and \"\"Hindi\"\" lyrics. The term Chutney soca was coined by the Indo-Trini artist called Drupatee in 1987 when she recorded a hit song called \"\"Chatnee Soca\"\". Soon after 1987 the spelling was changed to Chutney Soca. Before 1987 this fusion style was sometimes referred to as Indo Soca or Indian Soca. It should also be noted that the term Chutney that is now being used to refer to Indo-Caribbean music did not come into popular use until after 1987 when many Indo-Trinis started to abbreviate the term \"\"Chutney soca\"\" to \"\"Chutney\"\" in reference to those Chutney soca songs"} +{"qid": "test2560", "pid": "8705826", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "\"Caspian red deer\"\nCaspian red deer The Caspian red deer (\"\"Cervus elaphus maral\"\"), is one of the easternmost subspecies of red deer that is native to areas between the Black Sea and Caspian Sea such as Crimea, Asia Minor, the Caucasus Mountains region bordering Europe and Asia, and along the Caspian Sea region in Iran. The Caspian red deer is sometimes referred to as maral, noble deer, or eastern red deer. The Caspian red deer is a subspecies of the red deer. The Caspian red deer is around tall, and can weigh . Their antlers are around in length, and in girth. Its"} +{"qid": "test2560", "pid": "5674543", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "\"Greater Caucasus\"\nGreater Caucasus Greater Caucasus (, Бөјүк Гафгаз, بيوک قافقاز; , \"\"Didi K’avk’asioni\"\"; , \"\"Bolshoy Kavkaz\"\", sometimes translated as \"\"Caucasus Major\"\", \"\"Big Caucasus\"\" or \"\"Large Caucasus\"\") is the major mountain range of the Caucasus Mountains. The range stretches for about from west-northwest to east-southeast, between the Taman Peninsula of the Black Sea to the Absheron Peninsula of the Caspian Sea: from the Western Caucasus in the vicinity of Sochi on the northeastern shore of the Black Sea and reaching nearly to Baku on the Caspian. The range is traditionally separated into three parts: In the wetter Western Caucasus, the mountains are"} +{"qid": "test2560", "pid": "4578237", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "\"Khachmaz District\"\nIn 1995 the district was restored. The most northeastern region of Azerbaijan, Xaçmaz (or Khachmaz/Khachmas) is sandwiched between the Caucasus Mountains in Quba and Qusar (Gusar), regions to the west, and the Caspian Sea to the east. The southern border greets Devechi and the region stretches north to Russia. Khachmaz city is located toward the bottom third of the region. It is about 10 km from the Caspian Sea and the border to Devechi. About half that distance to the Quba border to Khachmaz's west. It is substantially greater distance to the northern border. According to the State Statistical Committee"} +{"qid": "test2560", "pid": "19311627", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "\"Black Sea–Caspian Steppe\"\nBlack Sea–Caspian Steppe The Black Sea-Caspian Steppe is an informal name for that part of the Eurasian Steppe that extends south between the Black and Caspian Seas. It is usually treated as part of the Pontic-Caspian steppe which includes the area north of the Black and Caspian Seas, but there is some reason to treat it as a distinct place. Its natural boundaries are the Sea of Azov and Black Sea on the west, the Caucasus Mountains on the south and the Caspian Sea on the east. Its northern boundary may be taken as the triangle formed by the lower"} +{"qid": "test2560", "pid": "1763109", "query": "the region that stretches between the black and caspian seas", "answer": "The Caucasus Mountains", "passage": "\"Caucasus Mountains\"\nCaucasus Mountains The Caucasus Mountains are a mountain system in West Asia between the Black Sea and the Caspian Sea in the Caucasus region. The Caucasus Mountains include the Greater Caucasus in the north and Lesser Caucasus in the south. The Greater Caucasus runs west-northwest to east-southeast, from the Caucasian Natural Reserve in the vicinity of Sochi on the northeastern shore of the Black Sea nearly to Baku on the Caspian Sea. The Lesser Caucasus runs parallel to the Greater about south. The Greater and Lesser Caucasus ranges are connected by the Likhi Range, and to the west and east"} +{"qid": "test2560", "pid": "9667", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "Asia\nTatishchev announced that he had proposed the idea to von Strahlenberg. The latter had suggested the Emba River as the lower boundary. Over the next century various proposals were made until the Ural River prevailed in the mid-19th century. The border had been moved perforce from the Black Sea to the Caspian Sea into which the Ural River projects. The border between the Black Sea and the Caspian is usually placed along the crest of the Caucasus Mountains, although it is sometimes placed further north. The border between Asia and the region of Oceania is usually placed somewhere in the"} +{"qid": "test2560", "pid": "4119949", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "\"Alexander the Great in the Quran\"\nnarrow strip of land between the Caspian Sea and the Caucasus mountains, where an ancient Sassanid fortification was mistakenly identified with the wall built by Alexander. In the \"\"Travels of Marco Polo\"\", the wall in Derbent is identified with the Gates of Alexander. The Gates of Alexander are most commonly identified with the Caspian Gates of Derbent whose thirty north-looking towers used to stretch for forty kilometers between the Caspian Sea and the Caucasus Mountains, effectively blocking the passage across the Caucasus. Later historians would regard these legends as false: The gate itself had wandered from the Caspian Gates to"} +{"qid": "test2560", "pid": "12048801", "query": "the region that stretches between the black and caspian seas", "answer": "Caucasus Mountains", "passage": "Siraces\nSiraces The Siraces (, , also \"\"Siraceni\"\" and \"\"Seraci\"\") were a hellenized Sarmatian tribe that inhabited Sarmatia Asiatica; the coast of Achardeus at the Black Sea north of the Caucasus Mountains, Siracena is mentioned by Tacitus as one of their settlements. They were said to be relatively small nation but with great morale. They were neighbours to the later enemy tribe of Aorsi. They migrated from the Caspian Sea to the Black Sea region. By the late 4th century, they had occupied lands between the Caucasus mountains and the Don, becoming masters of the Kuban region. They were the first"} +{"qid": "test2561", "pid": "20652658", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend (season 4)\"\nCrazy Ex-Girlfriend (season 4) The fourth and final season of \"\"Crazy Ex-Girlfriend\"\" premiered on The CW on October 12, 2018 and will consist of 18 episodes. The season stars Rachel Bloom as Rebecca Bunch, a distraught young woman, dealing with the consequences of pleading guilty to attempted murder at the end of the previous season. Vincent Rodriguez III, Donna Lynne Champlin, Pete Gardner, Vella Lovell, Gabrielle Ruiz, Scott Michael Foster, and Skylar Astin co-star. Every song listed is performed by Rebecca, except where indicated. This season, at the end of the theme song, the woman who is \"\"mistaken\"\" for Rebecca"} +{"qid": "test2561", "pid": "20596128", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend (season 3)\"\nCrazy Ex-Girlfriend (season 3) The third season of \"\"Crazy Ex-Girlfriend\"\" premiered on The CW on October 13, 2017 and ran for 13 episodes until February 16, 2018. The season stars Rachel Bloom as Rebecca Bunch, a distraught young woman who is dealing with the fallout of being left at the altar. Vincent Rodriguez III, Donna Lynne Champlin, Pete Gardner, Vella Lovell, Gabrielle Ruiz, David Hull, and Scott Michael Foster co-star. Every song listed is performed by Rebecca, except where indicated. The series was renewed for a third season on January 8, 2017. On April 5, 2017, it was announced"} +{"qid": "test2561", "pid": "20589831", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend (season 2)\"\nCrazy Ex-Girlfriend (season 2) The second season of \"\"Crazy Ex-Girlfriend\"\" premiered on The CW on October 21, 2016 and ran for 13 episodes until February 3, 2017. The season stars Rachel Bloom as Rebecca Bunch, a young lawyer who finds herself pursuing a relationship with the object of her obsession, Josh Chan, as she continues her quest to find true happiness. Vincent Rodriguez III, Santino Fontana, Donna Lynne Champlin, Pete Gardner, Vella Lovell, and Gabrielle Ruiz co-star. Every song listed is performed by Rebecca, except where indicated. The series was renewed for a second season on March 11, 2017."} +{"qid": "test2561", "pid": "20589834", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend (season 2)\"\nhas a score of 86 out of 100 based on 8 critics, indicating \"\"universal acclaim\"\". Crazy Ex-Girlfriend (season 2) The second season of \"\"Crazy Ex-Girlfriend\"\" premiered on The CW on October 21, 2016 and ran for 13 episodes until February 3, 2017. The season stars Rachel Bloom as Rebecca Bunch, a young lawyer who finds herself pursuing a relationship with the object of her obsession, Josh Chan, as she continues her quest to find true happiness. Vincent Rodriguez III, Santino Fontana, Donna Lynne Champlin, Pete Gardner, Vella Lovell, and Gabrielle Ruiz co-star. Every song listed is performed by Rebecca, except"} +{"qid": "test2561", "pid": "20584655", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend (season 1)\"\nCrazy Ex-Girlfriend (season 1) The first season of \"\"Crazy Ex-Girlfriend\"\" premiered on The CW on October 12, 2015.The finale was April 18, 2016. It aired Monday nights at 8pm and each episode was an hour long.The season ran for 18 episodes. It was originally supposed to be 30 minute long episodes on Showtime, but network passed on it at the last minute It is filmed in West Covina, California, where the show takes place. The season stars Rachel Bloom, who also created, writes, and produces the show as the love sick Rebecca Bunch. Rebecca is a young successful New York"} +{"qid": "test2561", "pid": "20584665", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend (season 1)\"\neccentric commentary on human relationships.\"\" Crazy Ex-Girlfriend (season 1) The first season of \"\"Crazy Ex-Girlfriend\"\" premiered on The CW on October 12, 2015.The finale was April 18, 2016. It aired Monday nights at 8pm and each episode was an hour long.The season ran for 18 episodes. It was originally supposed to be 30 minute long episodes on Showtime, but network passed on it at the last minute It is filmed in West Covina, California, where the show takes place. The season stars Rachel Bloom, who also created, writes, and produces the show as the love sick Rebecca Bunch. Rebecca is"} +{"qid": "test2561", "pid": "18764457", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend\"\nCrazy Ex-Girlfriend Crazy Ex-Girlfriend is an American romantic musical comedy-drama television series which premiered on October 12, 2015, on The CW. The series was created by Rachel Bloom and Aline Brosh McKenna, and stars Bloom in the lead role. On April 2, 2018, The CW renewed the series for a fourth and final season, which will contain 18 episodes. It premiered on October 12, 2018. Rebecca Bunch is a Yale- and Harvard-educated real-estate lawyer who works for a top New York City law firm. She panics when offered a partnership with the firm, and bumps into her first love from"} +{"qid": "test2561", "pid": "18764473", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Crazy Ex-Girlfriend\"\n\"\"Business Insider\"\", \"\"Paste\"\", \"\"The Daily Beast\"\", \"\"NPR\"\", \"\"Pittsburgh Post-Gazette\"\" and \"\"Vulture\"\", among others. Some of the notable critics include James Poniewozik and Maureen Ryan. Crazy Ex-Girlfriend Crazy Ex-Girlfriend is an American romantic musical comedy-drama television series which premiered on October 12, 2015, on The CW. The series was created by Rachel Bloom and Aline Brosh McKenna, and stars Bloom in the lead role. On April 2, 2018, The CW renewed the series for a fourth and final season, which will contain 18 episodes. It premiered on October 12, 2018. Rebecca Bunch is a Yale- and Harvard-educated real-estate lawyer who works"} +{"qid": "test2561", "pid": "4578711", "query": "who sings the songs in crazy ex girlfriend", "answer": "Rachel Bloom", "passage": "\"Adam Schlesinger\"\ntelecast. Schlesinger received two 2016 Emmy nominations for his work on the CW series \"\"Crazy Ex-Girlfriend\"\": Outstanding Original Music and Lyrics for \"\"Settle For Me\"\" (co-written with Rachel Bloom and Jack Dolgen), and Outstanding Main Title Theme (co-written with Rachel Bloom). He received a 2017 Emmy nomination for Outstanding Original Music and Lyrics for \"\"We Tapped That Ass\"\" (co-written with Rachel Bloom and Jack Dolgen) from the CW series \"\"Crazy Ex-Girlfriend.\"\" In addition to writing and co-producing the title song to \"\"That Thing You Do!\"\", he composed \"\"Master Of The Seas\"\" for \"\"\"\" performed by Jennifer Lopez, Peter Dinklage and"} +{"qid": "test2562", "pid": "8618465", "query": "who played lead guitar on 25 or 6 to 4", "answer": "Terry Kath", "passage": "\"25 or 6 to 4\"\nChicago guitarist Terry Kath, and a lead vocal line in Aeolian mode. The song's opening guitar riff has been compared to chord progressions and riffs in other songs. In the opinion of writer Melissa Locker: LA Weekly's music editor, Andy Hermann, names it \"\"The Riff\"\" and describes it as follows:Hermann details the riff's similarity to the chord progression in Led Zeppelin's song, \"\"Babe I'm Gonna Leave You\"\", which came out a year before \"\"25 or 6 to 4\"\", and the similarity of that chord progression to one in George Harrison's song, \"\"While My Guitar Gently Weeps\"\", which came out even"} +{"qid": "test2562", "pid": "3223565", "query": "who played lead guitar on 25 or 6 to 4", "answer": "Terry Kath", "passage": "\"Terry Kath\"\nacoustic rhythm guitar by Kath. For the group's second album, Kath contributed an extended guitar solo on \"\"25 or 6 to 4\"\", which became a live favorite. The same album saw Kath collaborate with orchestral arranger Peter Matz on the four-part suite \"\"Memories of Love\"\", singing the lead vocal. Kath wrote at least one song and contributed at least one lead vocal to every Chicago album released during his lifetime. While 1976's \"\"Chicago X\"\" is best known for Cetera's number one hit, \"\"If You Leave Me Now\"\", Kath's \"\"Once or Twice\"\" showed he was still writing and recording rock material."} +{"qid": "test2564", "pid": "18282153", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"The Light Between Oceans (film)\"\nworkshops in Dunedin it ran exclusively in the South Island of New Zealand from 1947 until 1971. In November the production moved to Australia and filming began in Stanley, Tasmania where the crews transformed some locations in the town including the pier, which was refurbished, and the road, which was covered in gravel. Production wrapped on November 24, 2014. Cianfrance spent a year editing the film, with little breaks in between with the first cut of the film ending up at 2 hours and 20 minutes. \"\"The Light Between Oceans\"\" held its world premiere at the 73rd Venice International Film"} +{"qid": "test2564", "pid": "18282157", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"The Light Between Oceans (film)\"\nthe film has an average score of 60 out of 100, based on 44 critics, indicating \"\"mixed or average reviews\"\". According to CinemaScore, audiences gave the film an average grade of \"\"B+\"\", on an A+ to F scale. The Light Between Oceans (film) The Light Between Oceans is a 2016 romantic period drama film written and directed by Derek Cianfrance and based on the 2012 novel of the same name by M. L. Stedman. An international co-production between the United States, Australia, the United Kingdom, and New Zealand, the film stars Michael Fassbender, Alicia Vikander, Rachel Weisz, Bryan Brown, and"} +{"qid": "test2564", "pid": "18282142", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"The Light Between Oceans (film)\"\nThe Light Between Oceans (film) The Light Between Oceans is a 2016 romantic period drama film written and directed by Derek Cianfrance and based on the 2012 novel of the same name by M. L. Stedman. An international co-production between the United States, Australia, the United Kingdom, and New Zealand, the film stars Michael Fassbender, Alicia Vikander, Rachel Weisz, Bryan Brown, and Jack Thompson. The film tells the story of a lighthouse keeper and his wife who rescue and adopt an infant girl adrift at sea. Years later, the couple discover the child's true parentage and are faced with the"} +{"qid": "test2564", "pid": "18152428", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"The Light Between Oceans\"\nDebut Fiction Awards, made the 2013 longlist for the Miles Franklin Award, and the 2014 longlist of the International Dublin Literary Award. The novel was developed into a feature film by DreamWorks, with David Heyman and Jeffrey Clifford producing. Derek Cianfrance directed the film, and Michael Fassbender, Alicia Vikander and Rachel Weisz starred in it. The film was released by Touchstone Pictures on 2 September 2016. The Light Between Oceans The Light Between Oceans is a 2012 Australian historical fiction novel by M. L. Stedman, her debut novel, published by Random House Australia on 20 March 2012. A film adaptation"} +{"qid": "test2564", "pid": "18152419", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"The Light Between Oceans\"\nThe Light Between Oceans The Light Between Oceans is a 2012 Australian historical fiction novel by M. L. Stedman, her debut novel, published by Random House Australia on 20 March 2012. A film adaptation of the same name starring Alicia Vikander and Michael Fassbender was released on 2 September 2016. Tom Sherbourne returns home Australia after fighting in the Western Front trenches of World War I with the First Australian Imperial Force. He left physically unscathed and with several decorations, but he suffers from nightmares and survivor guilt and seeks a quiet, remote job. Tom becomes the lighthouse keeper for"} +{"qid": "test2564", "pid": "6399718", "query": "where is the light between two oceans filmed", "answer": "New Zealand", "passage": "\"Michael Fassbender\"\nKurzel, where he teamed up with Academy Award winner Marion Cotillard as Lady Macbeth and David Thewlis as King Duncan. Filming for the production began in January 2014 and the film premiered at the 2015 Cannes Film Festival. In 2016, Fassbender once again played Magneto in the film \"\"\"\". He next starred in \"\"The Light Between Oceans\"\", based on the novel written by M. L. Stedman, and directed by Derek Cianfrance; the movie began filming in New Zealand in late September 2014, and was released on 2 September 2016. Also in 2016, Fassbender starred in the thriller \"\"Trespass Against Us\"\","} +{"qid": "test2564", "pid": "18580582", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"Adam Arkapaw\"\n\"\"Snowtown\"\". He also photographed \"\"McFarland, USA\"\", an American sports film released in 2015, and the upcoming drama film \"\"The Light Between Oceans\"\". He collaborated with Kurzel for a third time on the action-adventure film \"\"Assassin's Creed\"\", which was released in the United States in December 2016. Arkapaw is married to American cinematographer Autumn Durald; the couple has one son, Aedan. Adam Arkapaw Adam Arkapaw is an Australian cinematographer. He is best known for his work on the television series \"\"Top of the Lake\"\" and \"\"True Detective\"\", for which he has won two Creative Arts Emmy Awards. He is also known"} +{"qid": "test2564", "pid": "14725342", "query": "where is the light between two oceans filmed", "answer": "Australia", "passage": "\"Ocean Telegraph / Light Brigade (clipper)\"\nOcean Telegraph / Light Brigade (clipper) Ocean Telegraph was an American clipper ship. Built in 1854 for the run between New York and San Francisco, she was later sold and renamed Light Brigade in 1863. For the next 12 years she was used predominantly to transport cargo and immigrants between London and Australia and New Zealand. \"\"Ocean Telegraph\"\" was designed by Boston-based naval architect Samuel Hartt Pook who designed several very fast clipper ships. She was built by James O. Curtis in Medford, up the Mystic River from Boston, in 1854. She was built for Reed, Wade & Co. of"} +{"qid": "test2565", "pid": "7338377", "query": "how many customers does edf have in the uk", "answer": "5.7 million customer accounts", "passage": "\"EDF Energy\"\nEDF Energy EDF Energy is an integrated energy company in the United Kingdom, with operations spanning electricity generation and the sale of gas and electricity to homes and businesses throughout the United Kingdom. It employs 13,331 people and handles 5.7 million customer accounts. EDF Energy Customers (trading as EDF Energy) is wholly owned by the French state owned EDF (Électricité de France) and was formed in 2002, following the acquisition and mergers of SEEBOARD Plc (formerly the South Eastern Electricity Board), London Electricity Plc (formerly the London Electricity Board or LEB), SWEB Energy Plc (formerly the South Western Electricity Board)"} +{"qid": "test2567", "pid": "809061", "query": "who starred in the movie the day the earth stood still", "answer": "Keanu Reeves", "passage": "\"The Day the Earth Stood Still\"\nRadio Service. The film was remade in 2008. The director was Scott Derrickson and it stars Keanu Reeves as Klaatu. The Day the Earth Stood Still The Day the Earth Stood Still (a.k.a. Farewell to the Master and Journey to the World) is a 1951 American black-and-white science fiction film from 20th Century Fox, produced by Julian Blaustein and directed by Robert Wise. The film stars Michael Rennie, Patricia Neal, Billy Gray, Hugh Marlowe, and Sam Jaffe. The screenplay was written by Edmund H. North, based on the 1940 science fiction short story \"\"Farewell to the Master\"\" by Harry Bates,"} +{"qid": "test2567", "pid": "11312174", "query": "who starred in the movie the day the earth stood still", "answer": "Keanu Reeves", "passage": "\"The Day the Earth Stood Still (2008 film)\"\nThe Day the Earth Stood Still (2008 film) The Day the Earth Stood Still is a 2008 American science fiction thriller film, a loose adaptation of the 1951 film of the same name. The screenplay by David Scarpa is based on the 1940 classic science fiction short story \"\"Farewell to the Master\"\" by Harry Bates and on the 1951 screenplay adaptation by Edmund H. North. Directed by Scott Derrickson and starring Keanu Reeves as Klaatu, this version replaces the Cold War theme of nuclear warfare with the contemporary issue of humankind's environmental damage to the planet. It follows Klaatu, an"} +{"qid": "test2567", "pid": "9310286", "query": "who starred in the movie the day the earth stood still", "answer": "Jaden Smith", "passage": "\"Jaden Smith\"\nrole debut in the 2006 film \"\"The Pursuit of Happyness\"\" as Christopher, the son of Chris Gardner, Will Smith's character. For his role, Smith won the award for Breakthrough Performance at the 2007 MTV Movie Awards. Smith next appeared as Jacob in the 2008 Scott Derrickson science fiction film, \"\"The Day the Earth Stood Still\"\", a remake of the 1951 classic of the same name. In 2010, along with Jackie Chan, Smith starred in \"\"The Karate Kid\"\", a remake of the 1984 film. In May 2013, Will Smith and Jaden starred together, playing father and son, in \"\"After Earth\"\". In"} +{"qid": "test2567", "pid": "3901110", "query": "who starred in the movie the day the earth stood still", "answer": "Jennifer Connelly", "passage": "\"Harry Bates (author)\"\nDay the Earth Stood Still\"\". The movie starred Keanu Reeves as the alien Klaatu and Jennifer Connelly as Dr. Helen Benson. David Scarpa wrote the screenplay based on Edmund H. North's 1951 screenplay. The critical and commercial success of the 1951 movie relied on the novel themes Bates introduced in his short story. Ever since H.G. Wells' \"\"The War of the Worlds\"\" (1898), aliens were often described as menacing, aggressive, and murderous, with a degraded moral and ethical sense. In Bates' story, aliens are the opposite, possessing a good moral character. The alien Klaatu's face \"\"radiated kindness, wisdom, the purest"} +{"qid": "test2567", "pid": "11312202", "query": "who starred in the movie the day the earth stood still", "answer": "Jaden Smith", "passage": "\"The Day the Earth Stood Still (2008 film)\"\nthe film two stars and wrote in her review she felt the film was \"\"musty and derivative\"\" and thought its only bright spot was 10-year-old Jaden Smith's \"\"engaging, lively performance\"\". At the 2009 Razzie Awards, the film was nominated for Worst Prequel, Remake, Rip-off or Sequel, but lost the award to \"\"Indiana Jones and the Kingdom of the Crystal Skull\"\". The film was nominated in the category of \"\"Best Single Visual Effect of the Year\"\" at the 7th Visual Effects Society Awards but lost to \"\"The Curious Case of Benjamin Button\"\". \"\"The Day the Earth Stood Still\"\" opened in North"} +{"qid": "test2567", "pid": "219704", "query": "who starred in the movie the day the earth stood still", "answer": "Keanu Reeves", "passage": "\"Keanu Reeves\"\nto play the lead character in two 2008 films, \"\"Street Kings\"\" and \"\"The Day the Earth Stood Still\"\". In February 2009 he starred in director Rebecca Miller's film \"\"The Private Lives of Pippa Lee\"\", which premiered at Berlinale. Beginning in 2008, Reeves began pre-production on his directorial debut, \"\"Man of Tai Chi\"\". The film is a multilingual narrative, partly inspired by the life of his friend, stuntman Tiger Chen. Filming occurred on mainland China and Hong Kong. During \"\"Man of Tai Chi's\"\" five years of scripting and production, Reeves acted in several B movies with lead roles as Henry in"} +{"qid": "test2568", "pid": "2027593", "query": "what is the highest peak in the ozarks", "answer": "Lookout", "passage": "\"Boston Mountains\"\nand shale. The deeply eroded valleys are cut into Mississippian limestones and below that layer Ordovician dolomites. The Boston Mountains form the southwestern part of the Ozark plateau where they are the highest portion of the Ozarks. Summits can reach elevations of just over with valleys to deep. Turner Ward Knob (TWK) is the highest named peak. Located in western Newton County, Arkansas, its elevation is . Nearby, five unnamed peaks have elevations at or slightly above . Two of these highest peaks are located west of Turner Ward Knob, one being the location of the Buffalo Lookout fire tower"} +{"qid": "test2568", "pid": "1822747", "query": "what is the highest peak in the ozarks", "answer": "Lookout", "passage": "Ozarks\nOzarks The Ozarks, also referred to as the Ozark Mountains and Ozark Plateau, is a physiographic region in the U.S. states of Arkansas, Missouri, Oklahoma, and Kansas. The Ozarks cover a significant portion of northern Arkansas and southern Missouri, extending from Interstate 40 in Arkansas to the suburbs of St. Louis. A portion of the Ozarks extends into northeastern Oklahoma and southeastern Kansas. There are two mountain ranges within the Ozarks: the Boston Mountains of Arkansas and the St. Francois Mountains of Missouri. Buffalo Lookout, the highest point in the Ozarks, is located in the Boston Mountains. Geologically, the area"} +{"qid": "test2569", "pid": "3748496", "query": "what is the setting of the book hoot", "answer": "Florida", "passage": "\"Hoot (novel)\"\nHoot (novel) Hoot is a 2002 young adult novel by Carl Hiaasen. The setting takes place in Florida, where new arrival Roy makes two oddball friends and a bad enemy, and joins an effort to stop construction of a pancake house which would destroy a colony of burrowing owls who live on the site. The book won a Newbery Honor award in 2003. The main character Roy Eberhardt moves from Montana to Florida and into the town of Coconut Cove, where a 7th grader, Dana Matherson, starts bullying him. On the bus to school, Roy sees a boy running barefoot"} +{"qid": "test2569", "pid": "13169311", "query": "what is the setting of the book hoot", "answer": "Florida", "passage": "\"Scat (novel)\"\nHonor for \"\"Hoot\"\" in 2003. Like \"\"Hoot\"\" and \"\"Flush\"\", \"\"Scat\"\" takes place in Florida. The main plot of the book features the endangered Florida Panther. The book starts in a 3rd period biology class. The teacher, Mrs. Starch, asks a question about the Calvin cycle, which no one except a girl named Libby is able to answer. Mrs. Starch is known to be extremely strict and harsh. She calls upon Duane \"\"Smoke\"\" Scrod Jr. to answer the question, who nonchalantly eats part of the pencil Mrs. Starch holds in her hand after he becomes infuriated at her. (He was told"} +{"qid": "test257", "pid": "19701179", "query": "where was the killing of a sacred deer filmed", "answer": "Cincinnati", "passage": "\"The Killing of a Sacred Deer\"\nand Element Pictures produced the project. In June 2016, Nicole Kidman was cast in the film, and in August 2016, Alicia Silverstone, Raffey Cassidy, Bill Camp, Barry Keoghan, and Sunny Suljic also joined. As of August 23, 2016, the film had begun principal photography in Cincinnati, filming at The Christ Hospital. It was also shot in the Hyde Park and Northside neighborhoods. The school scenes in the film were shot at Roger Bacon High School. In May 2016, A24 acquired U.S. distribution rights to the film. The same month, Haut et Court acquired French rights. It had its world premiere"} +{"qid": "test2570", "pid": "10685984", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Time 100: The Most Important People of the Century\"\nin the following way: One of the most important, innovative things about rock is the whole notion of songwriters singing their own works, of the immediacy of expression. Since Elvis didn't write his own material, unlike The Beatles or Bob Dylan or Robert Johnson, who's also someone who could have been included, maybe that cut against him… I think the Beatles pushed the envelope a lot further. Elvis' most original recordings were his first. The Beatles started out as imitators, then continued to grow throughout their years together. Handy was also asked to defend \"\"Time\"\"s decision to include the fictional"} +{"qid": "test2570", "pid": "4569890", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Bootleg recording\"\nthese pressing plants, bootleggers were able to produce artwork and packaging that a commercial label would be unlikely to issue – perhaps most notoriously the 1962 recording of The Beatles at the Star Club in Hamburg, which was bootlegged as \"\"The Beatles vs. the Third Reich\"\" (a parody on an early US album entitled \"\"The Beatles vs. the Four Seasons\"\"), or \"\"Elvis' Greatest Shit\"\", a collection of the least successful of Elvis Presley's recordings, mostly from film soundtracks. Bootleg collectors in this era generally relied on \"\"Hot Wacks\"\", an annual underground magazine listing known bootlegs and information about recent releases."} +{"qid": "test2570", "pid": "16975874", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Joseph A. Tunzi\"\nexperiencing the complete electrical shock of \"\"Beatlemania\"\" is also included.\"\" Included with this project was \"\"Elvis Sings Beatles Songs\"\", the very first officially sanctioned compact disc release to feature all of Elvis Presley's cover recordings of songs written and originally recorded by the Beatles. Derek Page wrote a review of Tunzi's \"\"Beatles '65\"\" in Beatlefan magazine in which he ended his review by saying that \"\"Beatles '65\"\" was \"\"all in all, a marvelous look at The Beatles in their touring prime.\"\" The second project Tunzi did on the Beatles was \"\"Beatles '64: Goin' To Kansas City\"\" which was simply a"} +{"qid": "test2570", "pid": "4058418", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Elvis and Me\"\nthey were married, but in her 2005 made-for-television documentary titled \"\"Elvis by the Presleys\"\", she admitted he had affairs with other women during their marriage. By 1965, The Beatles had overwhelmed the music industry and Presley’s record sales declined noticeably. Uncertain about who he was and where his career was going, Elvis turned to spiritualism, dragging an uninterested Priscilla with him. He had not performed live for several years and labeled most of his movies a joke. By the time filming was to begin on \"\"Clambake\"\" (released 1967), Presley's growing distress with the quality of his films led to a"} +{"qid": "test2570", "pid": "10921985", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"American Gangster (album)\"\non November 6, 2007. Jay-Z had the album removed from the iTunes Store, explaining that \"\"as movies are not sold scene by scene, this collection will not be sold as individual singles.\"\" It was eventually released to iTunes in 2011. In the first week of release, \"\"American Gangster\"\" debuted at number one on the \"\"Billboard\"\" 200 and sold 425,861 copies in the United States. It was Jay-Z's tenth number-one album, tying him with Elvis Presley at second for total number-one albums; the record is held by The Beatles. On December 6, 2007, the album was certified platinum by the Recording"} +{"qid": "test2570", "pid": "5810020", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"UK Albums Chart\"\nAlbums Chart simultaneously, (altogether she had eleven albums in the Top 50 in one week). She is currently in fourth place for artists having the most simultaneous UK Top 40 albums, behind Elvis Presley and David Bowie who both tie for the most simultaneous Top 40 albums (twelve each, both immediately following their deaths in 1977 and 2016 respectively), and The Beatles who had eleven in 2009 when remastered versions of their albums were released. The fastest selling album (first chart week sales) is \"\"25\"\" by Adele. Released in November 2015, it sold over 800,000 copies in its first week."} +{"qid": "test2570", "pid": "798964", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Barbra Streisand\"\n(US No. 1), \"\"You Don't Bring Me Flowers\"\" (with Neil Diamond) (US No. 1) and \"\"The Main Event\"\" (US No. 3), some of which came from soundtrack recordings of her films. As the 1970s ended, Streisand was named the most successful female singer in the U.S. – only Elvis Presley and The Beatles had sold more albums. In 1980, she released her best-selling effort to date, the Barry Gibb-produced \"\"Guilty\"\". The album contained the hits \"\"Woman in Love\"\" (which spent several weeks on top of the pop charts in the fall of 1980), \"\"Guilty\"\", and \"\"What Kind of Fool\"\". After"} +{"qid": "test2570", "pid": "5810015", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"UK Albums Chart\"\nvarious artists. The most successful artists in the charts depend on the criteria used. As of February 2016, Queen albums have spent more time on the British album charts than any other musical act, followed by The Beatles, Elvis Presley, U2 and ABBA. By most weeks at number one, The Beatles lead with a total of 174 weeks, and the most number one albums of all with 15. The male solo artist with the most weeks at number one is Presley with a total of 66 weeks. Presley also holds the record for the most number one albums by a"} +{"qid": "test2570", "pid": "10878148", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Too Much Monkey Business\"\nsession was produced by Leonard Chess and Phil Chess. Backing Berry were Johnnie Johnson (piano), Willie Dixon (double bass), and Fred Below (drums). Elvis Presley recorded a cover of the song during a warm-up at the sessions for \"\"Stay Away, Joe\"\" and later released the song on \"\"Elvis Sings Flaming Star\"\" in 1969. Several British invasion bands recorded cover versions of \"\"Too Much Monkey Business\"\". The Beatles recorded their version on September 3, 1963, with John Lennon on vocals; it aired on the BBC Light Programme \"\"Pop Go the Beatles\"\" on September 10. This recording was released on the album"} +{"qid": "test2570", "pid": "19722933", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"The Wonder of You (Elvis Presley album)\"\n4 non consecutively, it registered, inter alia, weekly sales of 35,456, 28,590, 29,647, 32,261, 44,446, 54,011, 60,979, 73,461, 35,915, 15,983, 9,575, 3,540, 1,900, 1,300 and 1,000 thus totalling sales of 505,000 units while landing at #2, #3, #5, #5, #3, #4, #4, #3, #3, #4, #7, #17, #32, #48, #61, #70, #96, #65, #58, #79 and #89 respectively, and earning a BPI Gold and Platinum certification. It is Elvis' 13th UK number-one album, making him the solo artist with most UK number-one albums (and overall only behind The Beatles with 15 number-one albums). Elvis also extended the record for most"} +{"qid": "test2570", "pid": "20670255", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Perry D. Cox\"\nPub. O'Sullivan-Woodside . The first edition of his Beatles price guide was the first such guide ever devoted to the Beatles. (1986) The Beatles Price And Reference Guide For American Records (By Perry Cox and Mike Miller) Pub. Cox-Miller Ltd. (1988) The Official Price Guide To Memorabilia Of Elvis Presley And The Beatles (By Jerry Osborne, Perry Cox, and Joe Lindsay) Pub. Ballantine Books/House Of Collectibles (1990) The Beatles Price Guide For American Records Third Edition (By Perry Cox and Joe Lindsay) Pub. Perry Cox Ent./Biodisc (1993) The Beatles Price Guide For American Records Revised Third Edition Pub. Perry Cox"} +{"qid": "test2570", "pid": "13121729", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Hollyridge Strings\"\nHollyridge Strings The Hollyridge Strings was an American studio orchestra that specialized in easy-listening music, and recorded for the Capitol Records label in the 1960s and 1970s. Stu Phillips, Mort Garson, and Perry Botkin, Jr. were among those who produced, arranged, and conducted the group's recordings. The group specialized in orchestral versions of songs by such then-contemporary pop-music artists as The Beatles, The Beach Boys, Elvis Presley, and Simon & Garfunkel. During the week of July 4, 1964, the group's cover version of The Beatles's song \"\"All My Loving\"\" spent a single week on the \"\"Billboard\"\" Hot 100 chart at"} +{"qid": "test2570", "pid": "13121730", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"Hollyridge Strings\"\nNo. 93. Hollyridge Strings The Hollyridge Strings was an American studio orchestra that specialized in easy-listening music, and recorded for the Capitol Records label in the 1960s and 1970s. Stu Phillips, Mort Garson, and Perry Botkin, Jr. were among those who produced, arranged, and conducted the group's recordings. The group specialized in orchestral versions of songs by such then-contemporary pop-music artists as The Beatles, The Beach Boys, Elvis Presley, and Simon & Garfunkel. During the week of July 4, 1964, the group's cover version of The Beatles's song \"\"All My Loving\"\" spent a single week on the \"\"Billboard\"\" Hot 100"} +{"qid": "test2570", "pid": "402561", "query": "who sold the most records elvis or the beatles", "answer": "The Beatles", "passage": "\"The Beatles\"\n55,600 at New York's Shea Stadium on 15 August 1965 – \"\"perhaps the most famous of all Beatles' concerts\"\", in Lewisohn's description. A further nine successful concerts followed in other American cities. At a show in Atlanta, the Beatles gave one of the first live performances ever to make use of a foldback system of on-stage monitor speakers. Towards the end of the tour, they met with Elvis Presley, a foundational musical influence on the band, who invited them to his home in Beverly Hills. September saw the launch of an American Saturday-morning cartoon series, \"\"The Beatles\"\", that echoed \"\"A"} +{"qid": "test2572", "pid": "7533322", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"Thin Man (nuclear bomb)\"\nThin Man (nuclear bomb) \"\"Thin Man\"\" was the code name for a proposed plutonium gun-type nuclear bomb using plutonium-239 which the United States was developing during the Manhattan Project. They aborted its development when they discovered that the spontaneous fission rate of their nuclear reactor-bred plutonium was too high for use in a gun-type design, due to the high concentration of the isotope plutonium-240. In 1942, prior to the Army taking over wartime atomic research, Robert Oppenheimer held conferences in Chicago in June and Berkeley, California, in July at which various engineers and physicists discussed nuclear bomb design issues. A"} +{"qid": "test2572", "pid": "17917025", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"Trinity: A Graphic History of the First Atomic Bomb\"\ncalling the book \"\"exemplary\"\". One reviewer, however, writing for \"\"Publishers Weekly\"\", found the text confusing to follow and derided the marketing, along with book itself, because of \"\"flat illustrations, heavy use of captions, and stiff, static panels of talking heads\"\". Trinity: A Graphic History of the First Atomic Bomb Trinity: A Graphic History of the First Atomic Bomb is the debut graphic novel written and illustrated by Jonathan Fetter-Vorm. It provides an account of the Manhattan Project and the atomic bombings of Hiroshima and Nagasaki, as well as mentioning the chain of events after. The title arises from the code-name,"} +{"qid": "test2572", "pid": "2073679", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"Code name\"\npolicy of assigning code names intended to give no such clues to the uninitiated. For example, the British counter measures against the V-2 was called \"\"Operation Crossbow\"\". The atomic bomb project centered in New Mexico was called the Manhattan Project, derived from the Manhattan Engineer District which managed the program. The code name for the American A-12 / SR-71 spy plane project, producing the fastest, highest-flying aircraft in the world, was \"\"Oxcart\"\". The American group that planned that country's first ICBM was called the Teapot Committee. Although the word could stand for a menace to shipping (in this case, that"} +{"qid": "test2572", "pid": "17917017", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"Trinity: A Graphic History of the First Atomic Bomb\"\nTrinity: A Graphic History of the First Atomic Bomb Trinity: A Graphic History of the First Atomic Bomb is the debut graphic novel written and illustrated by Jonathan Fetter-Vorm. It provides an account of the Manhattan Project and the atomic bombings of Hiroshima and Nagasaki, as well as mentioning the chain of events after. The title arises from the code-name, Trinity, given to the test site for the first nuclear weapon. The book is written as a \"\"work of history\"\", although Fetter-Vorm writes at the end of the book \"\"for the most part, the dialog from the principal characters in"} +{"qid": "test2572", "pid": "23372", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"African Americans\"\ninvented an improvement for the incandescent light bulb. More recent inventors include Frederick McKinley Jones, who invented the movable refrigeration unit for food transport in trucks and trains. Lloyd Quarterman worked with six other black scientists on the creation of the atomic bomb (code named the Manhattan Project.) Quarterman also helped develop the first nuclear reactor, which was used in the atomically powered submarine called the Nautilus. A few other notable examples include the first successful open heart surgery, performed by Dr. Daniel Hale Williams, and the air conditioner, patented by Frederick McKinley Jones. Dr. Mark Dean holds three of"} +{"qid": "test2572", "pid": "1820370", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"History of nuclear weapons\"\nHistory of nuclear weapons Nuclear weapons possess enormous destructive power from nuclear fission or combined fission and fusion reactions. Building on scientific breakthroughs made during the 1930s, the United States, the United Kingdom and Canada collaborated during World War II, in what was called the Manhattan Project, to counter the suspected Nazi German atomic bomb project. In August 1945, two fission bombs were dropped on Japan, standing to date as the only use of nuclear weapons in combat. The Soviet Union started development shortly thereafter with their own atomic bomb project, and not long after that both countries developed even"} +{"qid": "test2572", "pid": "1452710", "query": "what was the code name of the us program to develop an atomic bomb", "answer": "Manhattan", "passage": "\"Cold War espionage\"\nthe Soviet Union's ability to build an atomic bomb. Many of the members of the Atomic spies group worked for, or around, the Manhattan Project, or the United States building of the atomic bomb. This group included: Weapons System 117L - Weapons System 117L was the first program designed to develop space-based reconnaissance satellite systems. Several satellite systems would be developed through this program including Corona, the Satellite and Missile Observation System (SAMOS), and the Missile Detection Alarm System (MIDAS). SAMOS - SAMOS or the Satellite and Missile Observation system was one of the first of a series of short"} +{"qid": "test2574", "pid": "13356922", "query": "who shot first in the shot heard around the world", "answer": "Americans acting under orders", "passage": "\"Shot heard round the world\"\nShots were fired earlier at Lexington, Massachusetts where eight Americans were killed and a British soldier was slightly wounded, but accounts of that event are confused and contradictory. The North Bridge skirmish did see the first shots by Americans acting under orders, the first organized volley by Americans, the first British fatalities, and the first British retreat. The towns of Lexington and Concord have debated over the point of origin for the Revolutionary War since 1824, when the Marquis de Lafayette visited the towns. He was welcomed to Lexington hearing it described as the \"\"birthplace of American liberty\"\", but he"} +{"qid": "test2575", "pid": "6232663", "query": "what is the area code for phoenix arizona", "answer": "602", "passage": "\"Area code 623\"\nArea code 623 North American area code 623 is a state of Arizona telephone area code serving most of the western portion of the Phoenix metropolitan area. It was created in a split from area code 602 on April 1, 1999, when it was evident that the Valley of the Sun was expanding too rapidly to remain in one area code. Generally, the West Valley and the outer northwestern suburbs became 623, the eastern suburbs and the Phoenix neighborhood of Ahwatukee became area code 480, and inner Phoenix remained in 602. 623 covers areas including Glendale (except the section north"} +{"qid": "test2575", "pid": "7131839", "query": "what is the area code for phoenix arizona", "answer": "602", "passage": "\"Area code 602\"\nareas of the metro area. And it is the only million-plus populated area where 7-digit dialling would still be possible. Area code 602 North American area code 602 is a state of Arizona telephone area code that covers most of the city of Phoenix. It was one of the original area codes established in October 1947 and originally covered the entire state of Arizona until 1995, when area code 520 was established as the state's second area code. Arizona's explosive population growth during the second half of the 20th century would have made a split necessary in any event. However,"} +{"qid": "test2575", "pid": "7131834", "query": "what is the area code for phoenix arizona", "answer": "602", "passage": "\"Area code 602\"\nArea code 602 North American area code 602 is a state of Arizona telephone area code that covers most of the city of Phoenix. It was one of the original area codes established in October 1947 and originally covered the entire state of Arizona until 1995, when area code 520 was established as the state's second area code. Arizona's explosive population growth during the second half of the 20th century would have made a split necessary in any event. However, the increased demand for telephone lines created by the proliferation of fax machines, cell phones and dial-up Internet connections brought"} +{"qid": "test2575", "pid": "7131858", "query": "what is the area code for phoenix arizona", "answer": "602", "passage": "\"Area code 480\"\nArea code 480 North American area code 480 is a telephone area code in Arizona serving the eastern and northern portions of the Phoenix metropolitan area. It was created on April 1, 1999, in a three-way split of area code 602, when it was apparent that the Valley of the Sun was growing too fast for it to remain entirely in one area code. Generally, 480 is coextensive with the East Valley, while most of the West Valley is area code 623 and most of Phoenix itself remained in 602. By the turn of the millennium, 602 was running out"} +{"qid": "test2575", "pid": "6232665", "query": "what is the area code for phoenix arizona", "answer": "602", "passage": "\"Area code 623\"\nto 63rd Ave & Interstate 10, then south along 63rd Ave to the Salt River and then the Gila River Indian Reservation. The 602/623 boundary runs roughly diagonally through northern Glendale. Area code 623 North American area code 623 is a state of Arizona telephone area code serving most of the western portion of the Phoenix metropolitan area. It was created in a split from area code 602 on April 1, 1999, when it was evident that the Valley of the Sun was expanding too rapidly to remain in one area code. Generally, the West Valley and the outer northwestern"} +{"qid": "test2575", "pid": "12566445", "query": "what is the area code for phoenix arizona", "answer": "623", "passage": "\"Desert Hills, Maricopa County, Arizona\"\nDesert Hills, Maricopa County, Arizona Desert Hills is an unincorporated community in Maricopa County, Arizona, United States. It is located in the New River census-designated place. Sitting on over 4.31 sq. mi. of the 85086 Zip Code, And the (623) Area Code, forming the southern boundary of Anthem and the western boundary of Cave Creek: about north of downtown Phoenix. Located east of the I-17, Desert Hills is roughly bounded by 35th Avenue to the west, Desert Hills Drive to the north, 28th Street to the east. The majority of Desert Hills sits north of Carefree Highway, however, a small"} +{"qid": "test2576", "pid": "19633618", "query": "who is the owner of the crowne plaza", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Hong Kong Causeway Bay\"\nCentre. In 2017, Concord Way Limited, the owner, submitted proposal for turning the building into office and mall. If it passed the discussion, the new tower will remain its height and floor counts will be reduced to 24 floors. Public demonstrated opposition. Crowne Plaza Hong Kong Causeway Bay Crowne Plaza Hong Kong Causeway Bay () is a hotel building in Causeway Bay, Hong Kong. It was completed and opened in 2009. It is an upscale hotel with 263 rooms, of which 10 are suites. It is owned by SEA Group and under the management of the InterContinental Hotels Group (IHG)."} +{"qid": "test2576", "pid": "19633615", "query": "who is the owner of the crowne plaza", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Hong Kong Causeway Bay\"\nCrowne Plaza Hong Kong Causeway Bay Crowne Plaza Hong Kong Causeway Bay () is a hotel building in Causeway Bay, Hong Kong. It was completed and opened in 2009. It is an upscale hotel with 263 rooms, of which 10 are suites. It is owned by SEA Group and under the management of the InterContinental Hotels Group (IHG). It is the first Crowne Plaza hotel in Hong Kong. Crowne Plaza Hong Kong Causeway Bay is owned by the SEA Group. The SEA Group was founded in 1956 and was listed on the Hong Kong Stock Exchange in 1973 (SEHK: 0251)."} +{"qid": "test2576", "pid": "4083378", "query": "who is the owner of the crowne plaza", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza\"\nCrowne Plaza Crowne Plaza is a multinational chain of full service, upscale hotels headquartered in the United Kingdom. It is catering to business travelers and to the meetings and conventions market. It forms part of the InterContinental Hotels Group family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in 52 countries with more than 400 hotels, usually located in city centers, resorts, coastal towns or near major airports. Originally branded as \"\"Holiday Inn Crowne Plaza\"\", the first United States Holiday Inn Crowne Plaza Hotel was opened in Rockville, Maryland, in 1983. Within"} +{"qid": "test2576", "pid": "8354869", "query": "who is the owner of the crowne plaza", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Belgrade\"\nof the franchising license in 2006. Afterwards, the hotel re-branded as Hotel International CG for a brief period followed by Continental Hotel Belgrade, in both instances without a foreign brand affiliation, before getting sold to Miroslav Mišković's Delta Holding conglomerate in 2008. Mišković kept the existing setup until striking a deal with InterContinental Hotels Group (IHG) about using their Crowne Plaza brand. The hotel closed in July 2012 to undergo a major reconstruction effort before re-opening as Crowne Plaza in December 2013. Crowne Plaza is located in Novi Beograd on the Sava river left bank. Venues and sites of interest"} +{"qid": "test2576", "pid": "9681745", "query": "who is the owner of the crowne plaza", "answer": "InterContinental Hotels Group", "passage": "\"Crowne Plaza Liverpool John Lennon Airport Hotel\"\nDavid Lloyd Leisure centre, whilst the other has been adapted as the headquarters of the Shop Direct Group, and is now known as Skyways House. Crowne Plaza Liverpool John Lennon Airport Hotel The Crowne Plaza Liverpool John Lennon Airport Hotel, formerly the Marriott Liverpool South Hotel, is an airport hotel near to Liverpool John Lennon Airport, serving the English city of Liverpool. Today a member of the Crowne Plaza chain owned by the InterContinental Hotels Group, the Grade II* listed Art Deco hotel building has an unusual history. The building was constructed in the 1930s, as the terminal building for"} +{"qid": "test2579", "pid": "5969910", "query": "what are the 5 pillars of faith of islam", "answer": "life", "passage": "\"Ancillaries of the Faith\"\nAncillaries of the Faith In Twelver Shia Islam, the ten Ancillaries of the Faith (Arabic: فروع الدين / \"\"furūʿ ad-dīn\"\") are the ten practices that Shia Muslims must perform. According to Twelver doctrine, what is referred to as pillars by Sunni Islam are called the practices or secondary principles. There are three additional practices. The first is jihad, which is also important to the Sunni, but not considered a pillar. The second is \"\"Commanding what is just\"\" (), which calls for every Muslim to live a virtuous life and to encourage others to do the same. The third is \"\"Forbidding"} +{"qid": "test2579", "pid": "1861355", "query": "what are the 5 pillars of faith of islam", "answer": "life", "passage": "\"Sixth Pillar of Islam\"\nMuslims believe there are precisely five pillars of Islam, since in a hadith, Muhammad listed only five major pillars of the faith. Traditionalists say that no sixth pillar should be added, because changing the pillars would be altering the religion and its beliefs, therefore one who believes that there is a sixth pillar is committing a sin. Thus, Sunnis believe that a \"\"six pillar of faith\"\" is outside the folds of mainstream Islam. The sixth pillar of Islam is not included in the Sunni way of life. Also, a minority among Sunni scholars sometimes refers to the duty of jihad"} +{"qid": "test2579", "pid": "140183", "query": "what are the 5 pillars of faith of islam", "answer": "life", "passage": "\"Five Pillars of Islam\"\ndifferently from those listed above. They are: In addition to these five pillars, there are ten practices that Shia Muslims must perform, called the \"\"Ancillaries of the Faith\"\" (Arabic: furūʿ al-dīn). Isma'ilis have their own pillars, which are as follows: Five Pillars of Islam The Five Pillars of Islam (' ; also ' \"\"pillars of the religion\"\") are five basic acts in Islam, considered mandatory by believers and are the foundation of Muslim life. They are summarized in the famous hadith of Gabriel. The Shia, Ahmadiyya, and Sunni agree on the essential details for the performance and practice of these"} +{"qid": "test2579", "pid": "140173", "query": "what are the 5 pillars of faith of islam", "answer": "concern for the needy", "passage": "\"Five Pillars of Islam\"\nFive Pillars of Islam The Five Pillars of Islam (' ; also ' \"\"pillars of the religion\"\") are five basic acts in Islam, considered mandatory by believers and are the foundation of Muslim life. They are summarized in the famous hadith of Gabriel. The Shia, Ahmadiyya, and Sunni agree on the essential details for the performance and practice of these acts, but the Shia do not refer to them by the same name (see Ancillaries of the Faith, for the Twelvers, and Seven pillars of Ismailism). They make up Muslim life, prayer, concern for the needy, self-purification, and the pilgrimage,"} +{"qid": "test2579", "pid": "14477159", "query": "what are the 5 pillars of faith of islam", "answer": "prayer", "passage": "Shahada\nof both ritual and worship. In a well-known hadith, Muhammad defines Islam as witnessing that there is no god but God and that Muhammad is God's messenger, giving of alms (\"\"zakat\"\"), performing the ritual prayer, fasting during the month of Ramadan and making a pilgrimage to the Kaaba: the \"\"five pillars\"\" of Islam are inherent in this declaration of faith. Recitation of the \"\"Shahādah\"\" is the most common statement of faith for Muslims. In Sunni Islam, it is counted as the first of the Five Pillars of Islam, while the Shi'i Twelvers and Isma'ilis also have the \"\"Shahada\"\" as among"} +{"qid": "test2579", "pid": "6364690", "query": "what are the 5 pillars of faith of islam", "answer": "prayer", "passage": "\"Religion in Sudan\"\nintegral to Islam, or sometimes being recognized as separate. A great majority of Muslims in Sudan adhere to Sufism or are heavily influenced by it, making Sudan one of the most tolerant Muslim majority countries in the world. Sunni Islam requires of the faithful five fundamental obligations that constitute the Five Pillars of Islam. The first pillar, the shahadah or profession of faith is the affirmation \"\"There is no deity but God, and Muhammad is His messenger.\"\" It is the first step in becoming a Muslim. The second obligation is prayer at five specified times of the day. The third"} +{"qid": "test2579", "pid": "385613", "query": "what are the 5 pillars of faith of islam", "answer": "the pilgrimage", "passage": "Spirituality\nal-Islam\"\"; also \"\"arkan ad-din\"\", \"\"pillars of religion\"\") are five basic acts in Islam, considered obligatory for all believers. The Quran presents them as a framework for worship and a sign of commitment to the faith. They are (1) the creed (\"\"shahadah\"\"), (2) daily prayers (\"\"salat\"\"), (3) almsgiving (\"\"zakah\"\"), (4) fasting during Ramadan and (5) the pilgrimage to Mecca (\"\"hajj\"\") at least once in a lifetime. The Shia and Sunni sects both agree on the essential details for the performance of these acts. The best known form of Islamic mystic spirituality is the Sufi tradition (famous through Rumi and Hafiz) in"} +{"qid": "test2579", "pid": "4104034", "query": "what are the 5 pillars of faith of islam", "answer": "prayer", "passage": "Gratitude\nhave praised God in every circumstance\"\" In the Quran it is also stated in Sura 14 that those who are grateful will be given more by God. The prophet Muhammad also said, \"\"Gratitude for the abundance you have received is the best insurance that the abundance will continue.\"\" Many practices of the Islamic faith also encourage gratitude. The Pillar of Islam calling for daily prayer encourages believers to pray to God five times a day in order to thank him for his goodness. The pillar of fasting during the month of Ramadan is for the purpose of putting the believer"} +{"qid": "test2579", "pid": "14477160", "query": "what are the 5 pillars of faith of islam", "answer": "prayer", "passage": "Shahada\ntheir pillars of faith. It is whispered by the father into the ear of a newborn child, and it is whispered into the ear of a dying person. The five canonical daily prayers each include a recitation of the \"\"Shahada\"\". Recitation of the \"\"Shahada\"\" in front of witnesses is also the first and only formal step in conversion to Islam. This occasion often attracts more than the two required witnesses and sometimes includes a party-like celebration to welcome the convert into their new faith. In accordance with the central importance played by the notion of intention (, \"\"niyyah\"\") in Islamic"} +{"qid": "test2579", "pid": "261390", "query": "what are the 5 pillars of faith of islam", "answer": "the pilgrimage", "passage": "Muslim\nversion of a primordial faith that has been revealed before through many prophets including Abraham, Ishmael, Isaac, Moses, and Jesus; that these previous messages and revelations have been partially changed or corrupted over time (\"\"tahrif\"\") and that the Qur'an is the final unaltered revelation from God (Final Testament). The religious practices of Muslims are enumerated in the Five Pillars of Islam: the declaration of faith (\"\"shahadah\"\"), daily prayers (\"\"salat\"\"), fasting during the month of Ramadan (\"\"sawm\"\"), almsgiving (\"\"zakat\"\"), and the pilgrimage to Mecca (\"\"hajj\"\") at least once in a lifetime. To become a Muslim and to convert to Islam, it"} +{"qid": "test2580", "pid": "19600596", "query": "when does season 8 of vampire diaries come out", "answer": "October 21, 2016", "passage": "\"The Vampire Diaries (season 8)\"\nThe Vampire Diaries (season 8) \"\"The Vampire Diaries\"\", an American supernatural drama, was renewed for an eighth season by The CW on March 11, 2016. On July 23, 2016, the CW announced that the upcoming season would be the series' last and would consist of 16 episodes. The season premiered on October 21, 2016 and concluded on March 10, 2017. Filming for the season began on July 20, 2016. It was announced on July 23, 2016, that season 8 of \"\"The Vampire Diaries\"\" would be the series' last. The season would contain 16 episodes. Filming for the season ended"} +{"qid": "test2582", "pid": "1633400", "query": "batman and robin episode only fools and horses", "answer": "\"Heroes and Villains\"", "passage": "\"Only Fools and Horses\"\nby Coca-Cola, was in fact just purified tap water from Sidcup, mocking parallels were made with the \"\"Only Fools and Horses\"\" episode, \"\"Mother Nature's Son\"\", in which Del sells tap water as \"\"Peckham Spring\"\". In the closing ceremony of the 2012 London Olympics, the Trotters' yellow Reliant van appeared on stage, along with two characters dressed as Batman and Robin, a reference to the \"\"Only Fools and Horses\"\" episode \"\"Heroes and Villains\"\". Rose Tyler's Father Pete Tyler is referred to as \"\"a bit of a Del Boy\"\" in the \"\"Doctor Who\"\" episode \"\"Father's Day\"\". \"\"Only Fools and Horses\"\" was sold"} +{"qid": "test2582", "pid": "8758508", "query": "batman and robin episode only fools and horses", "answer": "\"Heroes and Villains\"", "passage": "\"Heroes and Villains (Only Fools and Horses)\"\nHeroes and Villains (Only Fools and Horses) \"\"Heroes and Villains\"\" is an episode of the BBC sitcom, \"\"Only Fools and Horses\"\", first screened on 25 December 1996 as the first part of the 1996 Christmas trilogy and the thirteenth Christmas special. It attracted a UK television audience of 21.3 million, at the time a record for the show. In the episode, Del and Rodney are invited to a fancy dress party. They arrive dressed as Batman and Robin. The episode opens with Rodney's futuristic dream, in which a grown-up Damien, head of the now multinational and all-powerful \"\"Trotters Independent Traders\"\","} +{"qid": "test2583", "pid": "4852591", "query": "who starred in the pirates of the caribbean", "answer": "Johnny Depp", "passage": "\"Pirates of the Caribbean: At World's End\"\nThreequel, Favorite Male Movie Star (Johnny Depp) and Favorite Female Action Star (Keira Knightley). Also, at the Teen Choice Awards it won five awards, out of six nominations. Finally, at the 2008 Kids' Choice Awards, it achieved three nominations but won only the Favorite Movie Actor award (Johnny Depp). However, Orlando Bloom was nominated for a Golden Raspberry Award for Worst Supporting Actor. Pirates of the Caribbean: At World's End Pirates of the Caribbean: At World's End is a 2007 American epic fantasy swashbuckler film directed by Gore Verbinski, the third in the \"\"Pirates of the Caribbean\"\" film series and"} +{"qid": "test2583", "pid": "3785510", "query": "who starred in the pirates of the caribbean", "answer": "Johnny Depp", "passage": "\"Pirates of the Caribbean: Dead Man's Chest\"\nPirates of the Caribbean: Dead Man's Chest Pirates of the Caribbean: Dead Man's Chest is a 2006 American fantasy swashbuckler film, the second installment of the \"\"Pirates of the Caribbean\"\" film series and the sequel to \"\"\"\" (2003). It was directed by Gore Verbinski, written by Ted Elliott and Terry Rossio, and produced by Jerry Bruckheimer. In the film, the wedding of Will Turner (Orlando Bloom) and Elizabeth Swann (Keira Knightley) is interrupted by Lord Cutler Beckett (Tom Hollander), who wants Turner to acquire the compass of Captain Jack Sparrow (Johnny Depp) in a bid to find the Dead Man's"} +{"qid": "test2583", "pid": "3785544", "query": "who starred in the pirates of the caribbean", "answer": "Orlando Bloom", "passage": "\"Pirates of the Caribbean: Dead Man's Chest\"\nJune–August 2006 for the PlayStation Portable, Nintendo DS and Game Boy Advance. Pirates of the Caribbean: Dead Man's Chest Pirates of the Caribbean: Dead Man's Chest is a 2006 American fantasy swashbuckler film, the second installment of the \"\"Pirates of the Caribbean\"\" film series and the sequel to \"\"\"\" (2003). It was directed by Gore Verbinski, written by Ted Elliott and Terry Rossio, and produced by Jerry Bruckheimer. In the film, the wedding of Will Turner (Orlando Bloom) and Elizabeth Swann (Keira Knightley) is interrupted by Lord Cutler Beckett (Tom Hollander), who wants Turner to acquire the compass of Captain"} +{"qid": "test2584", "pid": "12112986", "query": "mark who went to golf majors in 1998", "answer": "Mark O'Meara", "passage": "\"1998 Open Championship\"\n1998 Open Championship The 1998 Open Championship was a men's major golf championship and the 127th Open Championship, held from 16–19 July at the Royal Birkdale Golf Club in Southport, England. In weekend wind and rain, Mark O'Meara won his second major championship of the year and first Open Championship in a playoff over Brian Watts, the 54-hole leader. Three months earlier, O'Meara won the Masters on the final green by sinking a birdie putt. At age 41, he became the oldest player to win two majors in a year: Jack Nicklaus (1980), Ben Hogan (1953), and Craig Wood (1941)"} +{"qid": "test2584", "pid": "12112988", "query": "mark who went to golf majors in 1998", "answer": "Mark O'Meara", "passage": "\"1998 Open Championship\"\nwhile Watts parred, and they halved the next two holes with pars.
Watts bogeyed the final hole, while O'Meara parred to win the playoff by two strokes and the Claret Jug. \"\"Cumulative playoff scores, relative to par\"\" 1998 Open Championship The 1998 Open Championship was a men's major golf championship and the 127th Open Championship, held from 16–19 July at the Royal Birkdale Golf Club in Southport, England. In weekend wind and rain, Mark O'Meara won his second major championship of the year and first Open Championship in a playoff over Brian Watts, the 54-hole leader. Three months earlier, O'Meara won"} +{"qid": "test2584", "pid": "6058102", "query": "mark who went to golf majors in 1998", "answer": "Mark O'Meara", "passage": "\"Timeline of golf history (1945–99)\"\nplayer on the Senior PGA Tour, Hale Irwin, who wins 9 times. Ernie Els wins a second U.S. Open, once again defeating Colin Montgomerie in a close finish. Tom Lehman, once again, led after three rounds, but again was unable to win the title. 25-year-old Justin Leonard made up a 5-shot final-round deficit with a 65 to win his first major championship, the British Open, by two shots from Jesper Parnevik and Darren Clarke. A month later, Leonard finished runner-up to Davis Love III at the PGA Championship. Men's Golf Women's Golf 1998 At the age of 41, Mark O'Meara"} +{"qid": "test2584", "pid": "11736342", "query": "mark who went to golf majors in 1998", "answer": "Mark O'Meara", "passage": "\"1998 Masters Tournament\"\nheavy rains Wednesday night.
\"\"Friday, April 10, 1998\"\" Amateurs: \"\"Kuchar (+4), Kribel (+6)\"\", Watson (+13), Clark (+14), Bakst (+16). \"\"Saturday, April 11, 1998\"\" \"\"Sunday, April 12, 1998\"\" Amateurs: Kuchar (E), Kribel (+13). \"\"Final round\"\" \"\"Cumulative tournament scores, relative to par\"\" 1998 Masters Tournament The 1998 Masters Tournament was the 62nd Masters Tournament, held from April 9–12 at Augusta National Golf Club. Mark O'Meara won his first major championship with a birdie putt on the final hole to win by one stroke over runners-up David Duval and Fred Couples. In one of the most remarkable performances of his career, Jack Nicklaus"} +{"qid": "test2584", "pid": "11736337", "query": "mark who went to golf majors in 1998", "answer": "Mark O'Meara", "passage": "\"1998 Masters Tournament\"\n1998 Masters Tournament The 1998 Masters Tournament was the 62nd Masters Tournament, held from April 9–12 at Augusta National Golf Club. Mark O'Meara won his first major championship with a birdie putt on the final hole to win by one stroke over runners-up David Duval and Fred Couples. In one of the most remarkable performances of his career, Jack Nicklaus tied for sixth place at the age of 58. His final round 68 (−4) yielded a 283 (−5), the lowest 72-hole score by a player over age 50 at the Masters. Nicklaus was in contention for the title until well"} +{"qid": "test2585", "pid": "10692229", "query": "who wrote hallelujah i just love her so", "answer": "Ray Charles", "passage": "\"Hallelujah I Love Her So\"\nparticipate. \"\"Hallelujah, I Love Her So\"\" is an adaption of the Ray Charles song by Eddie Cochran. It was released as a single on Liberty Records in November 1959. George Jones covered the song on his 1984 album \"\"Ladies' Choice\"\" as a duet with Brenda Lee titled \"\"Hallelujah, I Love You So\"\". It was released as a single in 1984 and peaked at number 15 on the \"\"Billboard\"\" Hot Country Singles chart in 1985. Hallelujah I Love Her So \"\"Hallelujah I Love Her So\"\" is a single from American musician Ray Charles. The jazz and rhythm and blues song was"} +{"qid": "test2585", "pid": "10692226", "query": "who wrote hallelujah i just love her so", "answer": "Ray Charles", "passage": "\"Hallelujah I Love Her So\"\nHallelujah I Love Her So \"\"Hallelujah I Love Her So\"\" is a single from American musician Ray Charles. The jazz and rhythm and blues song was written and released by Charles in 1956 on the Atlantic label, and in 1957 it was included on his self-titled debut LP, also released on Atlantic. The song peaked at number five on the \"\"Billboard\"\" R&B chart. It is loosely based on 'Get It Over Baby' by Ike Turner (1953). \"\"Hallelujah I Love Her So\"\" is a testament to the joyous release of love, featuring a sophisticated horn arrangement and memorable tenor sax solo"} +{"qid": "test2585", "pid": "18787506", "query": "who wrote hallelujah i just love her so", "answer": "Ray Charles", "passage": "\"Bobby Darin Sings Ray Charles\"\nCharles—opened up my ears to a whole new world, different from anything I'd heard until then. They both became major influences when I realized these are the roots.\"\" The album was reissued on CD in 2004. In his Allmusic review, critic JT Griffith wrote \"\"In addition to the rocking \"\"What'd I Say,\"\" standouts include the swinging testament to love, \"\"I Got a Woman,\"\" \"\"Ain't That Love,\"\" and \"\"Hallelujah I Love Her So.\"\"... A listener can debate if these covers are as good as the originals (could they be?) but not the authenticity that jumps off the turntable.\"\" All songs by"} +{"qid": "test2585", "pid": "15461583", "query": "who wrote hallelujah i just love her so", "answer": "Ray Charles", "passage": "\"Here We Go Again: Celebrating the Genius of Ray Charles\"\none-off nature of the project making it hard for the musical personalities to fully gel\"\". \"\"The New Zealand Herald\"\" wrote: \"\"While they may seem like a funny couple, with the deft precision and style of Marsalis seemingly at odds with Nelson's more unkempt delivery, it actually works\"\". AllMusic wrote: \"\"With Charles' standards like \"\"Hallelujah I Love Her So\"\", \"\"Cryin' Time\"\", \"\"Hit the Road Jack\"\", \"\"Busted\"\", \"\"Makin' Whoopie\"\", and his iconic signature hit, \"\"What'd I Say\"\" all sounding comfortable and fresh. The only thing missing is Ray Charles himself, who undoubtedly would have had no trouble fitting into these shows. Radio"} +{"qid": "test2585", "pid": "4304709", "query": "who wrote hallelujah i just love her so", "answer": "Ray Charles", "passage": "\"James Cleveland\"\n1959, he recorded a version of Ray Charles' hit, \"\"Hallelujah I Love Her So\"\", as a solo artist. James Cleveland signed with Savoy Records in 1962, going on to release a huge catalog of black gospel recordings, many of which were recorded in a live concert setting. He became known by more than just the professionals within gospel music with his version of the Soul Stirrers' song, \"\"The Love of God\"\", backed by the Voices of Tabernacle from Detroit, Michigan. Rev. Cleveland moved to Los Angeles, California, to become Minister of Music at Grace Memorial Church of God in Christ"} +{"qid": "test2585", "pid": "6530825", "query": "who wrote hallelujah i just love her so", "answer": "Ray Charles", "passage": "\"I Got a Woman\"\nI Got a Woman \"\"I Got a Woman\"\" (originally titled \"\"I've Got a Woman\"\") is a song co-written and recorded by American R&B and soul musician Ray Charles. Atlantic Records released the song as a single in December 1954, with \"\"Come Back Baby\"\" as the B-side. Both songs later appeared on the 1957 album \"\"Ray Charles\"\" (subsequently reissued as \"\"Hallelujah I Love Her So\"\"). The song builds on \"\"It Must Be Jesus\"\" by the Southern Tones, which Ray Charles was listening to on the radio while on the road with his band in the summer of 1954. He and a"} +{"qid": "test2587", "pid": "16693952", "query": "when was the first horrid henry book written", "answer": "published in 1994", "passage": "\"Horrid Henry (book)\"\nto go with modernized things and the story ends with the family eating crisps and watching a TV the size of their tent. Horrid Henry (book) Horrid Henry is the first book of the \"\"Horrid Henry\"\" series. It was published in 1994 and written by Francesca Simon and illustrated by Tony Ross. The book is a collection of short stories about the same characters, along the lines of the Just William books. Horrid Henry is a horrid boy who loves doing unimaginable horrible things. He throws food, he snatches things, he pushes, shoves and pinches. He has a younger brother"} +{"qid": "test2587", "pid": "16693944", "query": "when was the first horrid henry book written", "answer": "published in 1994", "passage": "\"Horrid Henry (book)\"\nHorrid Henry (book) Horrid Henry is the first book of the \"\"Horrid Henry\"\" series. It was published in 1994 and written by Francesca Simon and illustrated by Tony Ross. The book is a collection of short stories about the same characters, along the lines of the Just William books. Horrid Henry is a horrid boy who loves doing unimaginable horrible things. He throws food, he snatches things, he pushes, shoves and pinches. He has a younger brother called Perfect Peter. He is an extremely perfect boy who does uncountable good deeds. He always says \"\"Please\"\" and \"\"Thank You\"\", he loves"} +{"qid": "test2587", "pid": "1506166", "query": "when was the first horrid henry book written", "answer": "published in 1994", "passage": "\"Horrid Henry\"\nHorrid Henry Horrid Henry is a children's book series by Francesca Simon and illustrated by Tony Ross. The first \"\"Horrid Henry\"\" book was written and published in 1994 by Orion Books and as of 2019, there will be twenty-five titles published, as well as many other collections, activity books and joke books. Novel Entertainment produced an animated television series for CITV. It is a slice-of-life series featuring the titular Henry, a self-centred, naughty boy who has issues with authority who will typically be faced with a problem and then will often retaliate in interesting ways that involve trickery, rule-breaking and"} +{"qid": "test2587", "pid": "1506172", "query": "when was the first horrid henry book written", "answer": "published in 1994", "passage": "\"Horrid Henry\"\nBig Box Of Pranks released as an app which is available for iOS devices. Horrid Henry Horrid Henry is a children's book series by Francesca Simon and illustrated by Tony Ross. The first \"\"Horrid Henry\"\" book was written and published in 1994 by Orion Books and as of 2019, there will be twenty-five titles published, as well as many other collections, activity books and joke books. Novel Entertainment produced an animated television series for CITV. It is a slice-of-life series featuring the titular Henry, a self-centred, naughty boy who has issues with authority who will typically be faced with a"} +{"qid": "test2589", "pid": "18889789", "query": "spyder from once upon a time in venice", "answer": "Jason Momoa", "passage": "\"Once Upon a Time in Venice\"\nOnce Upon a Time in Venice Once Upon a Time in Venice (also known as LA Vengeance in the UK) is a 2017 American comedy film directed and written by Mark and Robb Cullen in their directorial debuts. The film stars Bruce Willis, Jason Momoa, John Goodman, Thomas Middleditch, Famke Janssen, and Adam Goldberg with supporting roles by Christopher McDonald, Stephanie Sigman, and Wood Harris. The film was released in a limited release and through video on demand on June 16, 2017, by RLJ Entertainment. Los Angeles-based private detective Steve Ford lives a care-free life. After performing a favor for"} +{"qid": "test259", "pid": "1872895", "query": "who was the killer in the movie i know what you did last summer", "answer": "Ben Willis", "passage": "\"I Know What You Did Last Summer\"\nof the Lois Duncan novel (the antagonist being a central character) nor the 1997 feature (the fisherman Ben Willis and four primary protagonists Julie James, Helen Shivers, Barry Cox, and Ray Bronson). Further, the new direction and scope of the film necessitates an estimated budget of $15–20 million. Sony also states that the film is a high priority and is set for a release somewhere between 2017 and 2020. \"\"I Know What You Did Last Summer\"\" has been referenced in various films and television series, and its central plot was parodied at length in the spoof film \"\"Scary Movie\"\" (2000)."} +{"qid": "test259", "pid": "20643107", "query": "who was the killer in the movie i know what you did last summer", "answer": "Ben Willis", "passage": "\"I Know What You Did Last Summer (film series)\"\nthe franchise would not have any inventions of the Lois Duncan novel (the antagonist being a central character) nor the 1997 feature (the fisherman Ben Willis and four primary protagonists Julie James, Helen Shivers, Barry Cox, and Ray Bronson). Further, the new direction and scope of the film necessitates an estimated budget of $15–20 million. Sony also states that the film is a high priority and is set for a release somewhere until 2020. I Know What You Did Last Summer (film series) I Know What You Did Last Summer is an American horror film series, based on the novel"} +{"qid": "test2590", "pid": "5049866", "query": "nodding your head no is an example of", "answer": "a gesture", "passage": "\"Nod (gesture)\"\nof respect without additional formality. This includes the traditional downwards nod, or the upwards nod (which is more informal and usually used among friends or subordinates). To increase the formality, the downwards nod may also be accompanied by a suitable verbal greeting. Nodding is also a symptom of a yet unexplained disease. It affects mostly children under 15, and was first documented in Tanzania in 1962. Nod (gesture) A nod of the head is a gesture in which the head is tilted in alternating up and down arcs along the sagittal plane. In many cultures, it is most commonly, but"} +{"qid": "test2590", "pid": "5049861", "query": "nodding your head no is an example of", "answer": "a gesture", "passage": "\"Nod (gesture)\"\nNod (gesture) A nod of the head is a gesture in which the head is tilted in alternating up and down arcs along the sagittal plane. In many cultures, it is most commonly, but not universally, used to indicate agreement, acceptance, or acknowledgement. Different cultures assign different meanings to the gesture. Nodding to indicate \"\"yes\"\" is widespread, and appears in a large number of diverse cultural and linguistic groups. Areas in which nodding generally takes this meaning include the Indian subcontinent (note that the head bobble also shows agreement there), the Middle East, Southeast Asia, most of Europe (see below),"} +{"qid": "test2591", "pid": "10115653", "query": "who was the spanish civil war fought between", "answer": "Nationalists", "passage": "\"Jewish volunteers in the Spanish Civil War\"\nJewish volunteers in the Spanish Civil War Jewish volunteers in the Spanish Civil War refers to Jews who joined International Brigades and fought in the Spanish Civil War, which erupted on July 17, 1936 and ended on April 1, 1939. The fighting was between the Republicans, who were loyal to the Spanish Republic, and the Nationalists, a rebel group led by General Francisco Franco. The Nationalists prevailed and Franco would rule Spain for the next 36 years. The coup was supported by military units in Morocco, Pamplona, Burgos, Valladolid, Cádiz, Cordova, and Seville. However, barracks in important cities such as"} +{"qid": "test2591", "pid": "10115656", "query": "who was the spanish civil war fought between", "answer": "Nationalists", "passage": "\"Jewish volunteers in the Spanish Civil War\"\nthe International Brigades. Jewish volunteers in the Spanish Civil War Jewish volunteers in the Spanish Civil War refers to Jews who joined International Brigades and fought in the Spanish Civil War, which erupted on July 17, 1936 and ended on April 1, 1939. The fighting was between the Republicans, who were loyal to the Spanish Republic, and the Nationalists, a rebel group led by General Francisco Franco. The Nationalists prevailed and Franco would rule Spain for the next 36 years. The coup was supported by military units in Morocco, Pamplona, Burgos, Valladolid, Cádiz, Cordova, and Seville. However, barracks in important"} +{"qid": "test2591", "pid": "20603029", "query": "who was the spanish civil war fought between", "answer": "Nationalists", "passage": "\"Spain in Our Hearts\"\nIt was there that they learned ... that one can be right and yet be beaten, that force can vanquish spirit and that there are times when courage is not rewarded.\"\" \"\"Spain in Our Hearts\"\" is an account of the American volunteers who participated in the Spanish Civil War. The civil war was fought between the left-leaning Republicans who were loyal to the democratically-elected Second Spanish Republic, and the right-wing Nationalists who were led by General Francisco Franco. While the Nationalists were backed by foreign fascist leaders Adolf Hitler and Benito Mussolini, the Republicans were not supported by other Western"} +{"qid": "test2591", "pid": "12324128", "query": "who was the spanish civil war fought between", "answer": "Nationalists", "passage": "\"Spanish Civil War\"\nSpanish Civil War The Spanish Civil War () took place from 1936 to 1939. Republicans loyal to the left-leaning Second Spanish Republic, in alliance with the Anarchists and Communists, fought against the Nationalists, a Falangist, Carlist, Catholic, and largely aristocratic group led by General Francisco Franco. The war has often been portrayed as a struggle between democracy and fascism, particularly due to the political climate and timing surrounding it. In early 1939, the Nationalists achieved victory, and ruled Spain until Franco's death in November 1975. The war began after a \"\"pronunciamiento\"\" (a declaration of military opposition) against the Republican government"} +{"qid": "test2591", "pid": "9883167", "query": "who was the spanish civil war fought between", "answer": "Republicans", "passage": "\"Juan Ibarrola\"\nthe Republican Army as he was Catholic, but he was also a Basque and the Basques had generally rallied to the Republic. He was a medical instructor before the war. He fought in the north of Spain, was promoted to command the 50th Division, and commanded the XI Army Corps at Teruel. Juan Ibarrola Juan Ibarrola Orueta (1900 in Llodio, Álava – 1976) was a Spanish military commander who fought with the Republicans during the Spanish Civil War. He was a captain of the Civil Guard (\"\"Guardia Civil\"\"); unlike many of his fellow officers he rallied to the Republic when"} +{"qid": "test2591", "pid": "8244675", "query": "who was the spanish civil war fought between", "answer": "Nationalists", "passage": "\"Battle of Teruel\"\nBattle of Teruel The Battle of Teruel was fought in and around the city of Teruel during the Spanish Civil War. The combatants fought the battle between December 1937 and February 1938, during the worst Spanish winter in twenty years. The battle was one of the bloodier actions of the war with the city changing hands several times, first falling to the Republicans and eventually being re-taken by the Nationalists. In the course of the fighting, Teruel was subjected to heavy artillery and aerial bombardment. The two sides suffered over 140,000 casualties between them in the two-month battle. It was"} +{"qid": "test2591", "pid": "9883166", "query": "who was the spanish civil war fought between", "answer": "Republicans", "passage": "\"Juan Ibarrola\"\nJuan Ibarrola Juan Ibarrola Orueta (1900 in Llodio, Álava – 1976) was a Spanish military commander who fought with the Republicans during the Spanish Civil War. He was a captain of the Civil Guard (\"\"Guardia Civil\"\"); unlike many of his fellow officers he rallied to the Republic when the Nationalist rising began. Featured in the war in Morocco, the coup d'état of July 1936 that led to the Civil War he was captain of the Guardia Civil in Bilbao and took command of a column to expel the rebels from the province of Álava without success. He was unusual in"} +{"qid": "test2592", "pid": "4384911", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal overhead powerline crossing\"\nto develop the areas surrounding the Suez Canal, including other projects such as the Ahmed Hamdi Tunnel under the Suez Canal (completed in 1981), the El Ferdan Railway Bridge, and the Suez Canal Bridge (completed in 2001). It was constructed by a consortium between STFA Enerkom and Siemens. Suez Canal overhead powerline crossing The Suez Canal overhead powerline crossing is a major electrical power line built across the Suez Canal in 1998, located near Suez, Egypt. It is designed for two 500 kV circuits. Because the required clearance over the Suez Canal is , the overhead line has two high"} +{"qid": "test2592", "pid": "18777636", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"William Gill (explorer)\"\nhis way to Gaza and Suez. Gill was sent to Egypt, arriving in Alexandria on 27 July 1882. He joined the intelligence department run by Admiral Hoskins at Port Said. On 5 August, Hoskins instructed Gill to cut the telegraph line that linked Cairo to Constantinople, thus preventing its use by the Egyptian nationalists. The section of line to be cut ran from the coast at Al Arish (90 miles east of Port Said) to Al Qantarah, where it crossed the Suez Canal. It needed to be sabotaged at a location where the neutrality of the Suez Canal was not"} +{"qid": "test2592", "pid": "4384910", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal overhead powerline crossing\"\nSuez Canal overhead powerline crossing The Suez Canal overhead powerline crossing is a major electrical power line built across the Suez Canal in 1998, located near Suez, Egypt. It is designed for two 500 kV circuits. Because the required clearance over the Suez Canal is , the overhead line has two high pylons (one on either side of the crossing) in spite of its small span width of . The pylons each have four crossarms: three for the conductors and one for catching the conductors in case of an insulator string failure. The crossing was part of a major drive"} +{"qid": "test2592", "pid": "400710", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal\"\nSuez. Its length is , including its northern and southern access channels. In 2012, 17,225 vessels traversed the canal (average 47 per day). The original canal was a single-lane waterway with passing locations in the Ballah Bypass and the Great Bitter Lake. It contains no locks system, with seawater flowing freely through it. In general, the canal north of the Bitter Lakes flows north in winter and south in summer. South of the lakes, the current changes with the tide at Suez. The canal is owned and maintained by the Suez Canal Authority (SCA) of Egypt. Under the Convention of"} +{"qid": "test2592", "pid": "5724476", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Port Fuad\"\nToday Port Fuad is a major Air Defence Position for Egypt. Despite its important location, as of 2006, Port Fuad was still considered a residential zone, with very few facilities and no major downtown or city center. The city is located on Port Fuad Island, a triangular island bounded by the Mediterranean to the North, the Suez Canal to the West, and the relatively new eastern channel from the Suez Canal to the Mediterranean to the East. Lying on the eastern side of the main canal, the island is considered part of Asia. The Suez Canal Authority forms the main"} +{"qid": "test2592", "pid": "9117355", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Across Suez\"\nAcross Suez Across Suez is a board game simulating operational level ground combat between Egypt and Israel at the Battle of the Chinese Farm during the 1973 Arab-Israeli War. The game is an introductory level product with an emphasis on playability over simulation value. Simulations Publications (SPI) in 1980 issued Across Suez in a one-inch accordion box with a paper map. Decision Games in 1995 reissued \"\"Across Suez\"\" with additional counters for new variants and scenarios. The Israeli player seeks to establish a bridgehead across the Suez Canal while the Egyptian player attempts to block this. Israeli units are generally"} +{"qid": "test2592", "pid": "6971262", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Green Island (Egypt)\"\nGreen Island (Egypt) Green Island () is a small (145 m long x 50 m) artificial island in the Red Sea at the southern mouth of the Suez Canal. Green Island was a fortress built by the British army to protect the Suez Canal from air and sea attack during World War II. This waterway was of enormous strategic significance for Britain at this time. Located three kilometers south of Port Ibrahim and four kilometers south of the city of Suez and the mouth of the Suez Canal, the fortress was built on a bed of stable corals and made"} +{"qid": "test2592", "pid": "6971265", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Green Island (Egypt)\"\nGreen Island (Egypt) Green Island () is a small (145 m long x 50 m) artificial island in the Red Sea at the southern mouth of the Suez Canal. Green Island was a fortress built by the British army to protect the Suez Canal from air and sea attack during World War II. This waterway was of enormous strategic significance for Britain at this time. Located three kilometers south of Port Ibrahim and four kilometers south of the city of Suez and the mouth of the Suez Canal, the fortress was built on a bed of stable corals and made"} +{"qid": "test2592", "pid": "400732", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal\"\nJohn Robinson McClean, later President of the Institution of Civil Engineers in London, and again Negrelli, to examine the plans developed by Linant de Bellefonds, and to advise on the feasibility of and the best route for the canal. After surveys and analyses in Egypt and discussions in Paris on various aspects of the canal, where many of Negrelli's ideas prevailed, the commission produced a unanimous report in December 1856 containing a detailed description of the canal complete with plans and profiles. The Suez Canal Company (\"\"Compagnie universelle du canal maritime de Suez\"\") came into being on 15 December 1858."} +{"qid": "test2592", "pid": "2580423", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "Ismailia\nIsmailia Ismailia ( \"\"\"\" ) is a city in north-eastern Egypt. Known in Egypt as \"\"The City of Beauty and Enchantment\"\", Ismailia is situated on the west bank of the Suez Canal, it is the capital of the Ismailia Governorate. The city has a population of 366,669 (or approximately 750,000, including surrounding rural areas). It is located approximately halfway between Port Said to the north and Suez to the south. The Canal widens at that point to include Lake Timsah, one of the Bitter Lakes linked by the Canal. Ismailia was founded in 1863, during the construction of the Suez"} +{"qid": "test2592", "pid": "12849191", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Battle of Suez\"\nthey reached the Sweetwater Canal, outside the area under Egyptian control. They followed its inner face toward a vehicular bridge marked on the map, but a few score yards before it they reached a railroad bridge, which did not appear on the map. They could hear that the vehicular bridge was guarded by Egyptians, but the railroad bridge was not and they crossed it. Shortly before dawn, they reached Keren's force outside the city. The IDF casualties in the battle were 80 dead and 120 wounded. Israel made two more probes into Suez, one on the 25th and one on"} +{"qid": "test2592", "pid": "7419225", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal Authority\"\nSuez Canal Authority Suez Canal Authority (SCA) is a state owned authority which owns, operates and maintains the Suez Canal. It was set up by Egypt to replace the Suez Canal Company in the 1950s which resulted in the Suez Crisis. After the UN intervened, Egypt agreed to pay millions of dollars to shareholders of the nationalized Suez Canal Company. SCA is an independent authority having legal personality. SCA was established by the nationalization act signed on 26 July 1956 by the Egyptian president Gamal Abdel Nasser. The act at the same time nationalized the Suez Canal Company and transferred"} +{"qid": "test2592", "pid": "7419229", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal Authority\"\nfor irrigation; water plants in the canal cities; 12,000 housing units; a hospital in Ismailia and emergency hospitals at both ends of the canal; 4 schools and various sports and recreational centers. Suez Canal Authority Suez Canal Authority (SCA) is a state owned authority which owns, operates and maintains the Suez Canal. It was set up by Egypt to replace the Suez Canal Company in the 1950s which resulted in the Suez Crisis. After the UN intervened, Egypt agreed to pay millions of dollars to shareholders of the nationalized Suez Canal Company. SCA is an independent authority having legal personality."} +{"qid": "test2592", "pid": "2642622", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Ismailia Governorate\"\nIsmailia Governorate Ismailia Governorate ( \"\"\"\", ) is one of the Canal Zone governorates of Egypt. Located in the northeastern part of the country, its capital is the city of Ismailia. It was named after Ismail Pasha, who as Ottoman Viceroy of Egypt, oversaw the country during the building of the Suez Canal. It is located between the other two Canal governorates; Port Said Governorate, in the Northern part of Egypt and Suez Governorate. The governorate is divided into municipal divisions, with a total estimated population as of July 2017 of 1,309,474. In the case of Ismailia governorate, there are"} +{"qid": "test2592", "pid": "4112974", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal Company\"\nresulted in the Suez Crisis. In Lessups' original concession (1854), founders of the company were to receive 10 percent of the canal's profits. These members included Before nationalisation: |archive-date=May 28,2009 Suez Canal Company The Universal Maritime Suez Canal Company (, or simply \"\"Compagnie de Suez\"\" for short) was the corporation that constructed the Suez Canal between 1859 and 1869 and operated it until the 1956 Suez Crisis. It was formed by Ferdinand de Lesseps in 1858, and it owned and operated the canal for many years thereafter. Initially, French private investors were the majority of the shareholders, with Egypt also"} +{"qid": "test2592", "pid": "4112939", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal Company\"\nSuez Canal Company The Universal Maritime Suez Canal Company (, or simply \"\"Compagnie de Suez\"\" for short) was the corporation that constructed the Suez Canal between 1859 and 1869 and operated it until the 1956 Suez Crisis. It was formed by Ferdinand de Lesseps in 1858, and it owned and operated the canal for many years thereafter. Initially, French private investors were the majority of the shareholders, with Egypt also having a significant stake. When Isma'il Pasha became Wāli of Egypt and Sudan in 1863, he refused to adhere to portions of the concessions to the Canal company made by"} +{"qid": "test2592", "pid": "19288322", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Canal derby\"\nCanal derby The Canal Derby () is a football match between the Egyptian clubs Al-Masry SC and Ismaily SC. It is a match between arguably the two biggest and most popular clubs in the Suez Canal region in Egypt. Al-Masry SC is located in Port Said while Ismaily SC is based in Ismailia. Usually the Derby is played twice each season with 2 matches in the Egyptian Premier League, but it is not uncommon to find the teams meeting each other in the Egypt Cup. Ever since their creation, both clubs have been the top clubs in the Suez Canal"} +{"qid": "test2592", "pid": "12370430", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal University\"\nSuez Canal University The Suez Canal University is an Egyptian university serving the Suez Canal area, having its faculties divided among the Suez Canal governorates (Port Said, Suez & Ismailia Governorates). It was established in 1964. It is notable for its non-classic research. It has 48 faculties (16 in Ismaïlia, 13 in Port Said, 10 in Suez and 9 in Arish) with a total number of students reaching 21,325. The University has about 53 special units for research, education and community development. The university also includes number of centers and units which offer different types of services which are: The"} +{"qid": "test2592", "pid": "9063628", "query": "where is the suez canal located on a map", "answer": "Egypt", "passage": "\"Suez Canal Bridge\"\na major drive to develop the areas surrounding the Suez Canal, including other projects such as the Ahmed Hamdi Tunnel under the Suez Canal (completed in 1981), the El Ferdan Railway Bridge, and the Suez Canal overhead powerline crossing. Suez Canal Bridge The Mubarak Peace Bridge, also known as the Egyptian-Japanese Friendship Bridge, Al Salam Bridge, or Al Salam Peace Bridge, is a road bridge crossing the Suez Canal at El-Qantara, whose name means \"\"the bridge\"\" in Arabic. The bridge links the continents of Africa and Asia. The bridge was built with assistance from the Japanese government. The main contractor"} +{"qid": "test2594", "pid": "20422874", "query": "who will win 2018 election in sri lanka", "answer": "Sri Lanka Podujana Peramuna", "passage": "\"2018 Sri Lankan local elections\"\n2018 Sri Lankan local elections Local elections were held in Sri Lanka on 10 February 2018. 15.7 million Sri Lankans were eligible to elect 8,327 members to 340 local authorities (24 municipal councils, 41 urban councils and 275 divisional councils) in the country. It was the largest election in Sri Lankan history. This was also the first election under the mixed electoral system where 60% of members were elected using first-past-the-post voting and the remaining 40% through closed list proportional representation. In a surprise result the Sri Lanka Podujana Peramuna, led by former president Mahinda Rajapaksa, came first by winning"} +{"qid": "test2594", "pid": "20945963", "query": "who will win 2018 election in sri lanka", "answer": "Sri Lanka Podujana Peramuna", "passage": "\"2018 Sri Lankan constitutional crisis\"\nThe Sirisena-Wickremesinghe government had been struggling to repay the debts incurred during the Rajapaksa presidency. The Magampura Mahinda Rajapaksa Port, built with Chinese money, was handed over to Beijing in a 99-year lease in 2017 as a form of payment. Sri Lanka also recorded just 3.1% economic growth rate, the lowest for 16 years in 2017. By 2018, following Mahinda Rajapaksa's proxy Sri Lanka Podujana Peramuna winning a landslide victory in the 2018 local authority elections, disputes among the members of the National Government began to surface and a major rift between the President and Prime Minister appeared. Sirisena claimed"} +{"qid": "test2594", "pid": "19825621", "query": "who will win 2018 election in sri lanka", "answer": "Sri Lanka Podujana Peramuna", "passage": "\"Sri Lanka Podujana Peramuna\"\nchairman. Attorney-at-law Sagara Kariyawasam was the front's secretary and its symbol was the flower bud. Kariyawasam is a former Sri Lanka Freedom Party organiser and has served as attorney for Mahinda Rajapaksa and his brother Gotabhaya Rajapaksa. Basil Rajapaksa, another brother of Mahinda Rajapaksa, joined the SLPP shortly after it was formed. Local elections were held on 10 February 2018. The SLPP contested for the election under its flower bud symbol. Sri Lanka Podujana Peramuna The Sri Lanka People's Front (; ), commonly known by its Sinhalese name Sri Lanka Podujana Peramuna (SLPP), is a Sri Lankan political front. Previously"} +{"qid": "test2596", "pid": "14293917", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"Where the Streets Have No Name (I Can't Take My Eyes off You)\"\nWhere the Streets Have No Name (I Can't Take My Eyes off You) \"\"Where the Streets Have No Name (I Can't Take My Eyes off You)\"\" is a song by English synthpop duo Pet Shop Boys. The song is a medley of covers of U2's \"\"Where the Streets Have No Name\"\" and \"\"Can't Take My Eyes Off You\"\", the 1960s single by Frankie Valli, though in an arrangement informed by the 1982 disco version of the song by Boystown Gang rather than the original. The song accompanied \"\"How Can You Expect to Be Taken Seriously?\"\", the third single from their"} +{"qid": "test2596", "pid": "8020542", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"Can't Take My Eyes Off You\"\nCan't Take My Eyes Off You \"\"Can't Take My Eyes Off You\"\" is a 1967 single credited to Frankie Valli. The song was among his biggest hits, earning a gold record and reaching No. 2 on the \"\"Billboard\"\" Hot 100 for a week, stuck behind \"\"Windy\"\" by The Association. It was co-written by producer Bob Crewe and Bob Gaudio, a bandmate of Valli's in The Four Seasons. It was Valli's biggest solo hit until he hit #1 in 1974 with \"\"My Eyes Adored You\"\". \"\"Can't Take My Eyes Off You\"\" has had hundreds of cover versions, many of which have"} +{"qid": "test2596", "pid": "2342604", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"Football chant\"\n\"\"Way Out West\"\". Sydney FC supporter group \"\"The Cove\"\" sing \"\"Rhythm of My Heart\"\" by Rod Stewart in the 23rd minute of every game as tribute to supporters who have passed away. Fans of the Wales national team and Fulham often sing \"\"Can't Take My Eyes Off You\"\" by Frankie Valli. Feyenoord fans sing an adaption of Gloria Gaynor's \"\"I Will Survive\"\" after the team scores at De Kuip. Dundee United fans have been known to sing Daniel Boone’s single \"\"Beautiful Sunday\"\". Birmingham City adopted Keep Right On To The End Of The Road by Sir Harry Lauder after the"} +{"qid": "test2596", "pid": "8020544", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"Can't Take My Eyes Off You\"\nmembers. The song was written by Bob Crewe and Bob Gaudio. Arrangement was done by Artie Schroeck and Gaudio. The original recording was made at A&R Recording Studios at 799 7th Avenue, with Bob Crewe producing and Phil Ramone engineering. The song has been covered by some 200 artists over the years, in many countries, under both versions of the title. A few notable examples of cover versions that appeared on the charts: Can't Take My Eyes Off You \"\"Can't Take My Eyes Off You\"\" is a 1967 single credited to Frankie Valli. The song was among his biggest hits,"} +{"qid": "test2596", "pid": "2764604", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"Sheena Easton\"\nAustralia, and Argentina but not in the US. In Japan, \"\"Fabulous\"\" was released in February 2001 and the first single was \"\"Can't Take My Eyes Off You\"\", which had originally been recorded by Frankie Valli in the 1960s, though a disco version had been a hit for the Boys Town Gang in the early 1980s. The album was packaged differently from the UK version and included two bonus tracks; \"\"I Need Your Lovin'\"\" (a cover of the 1980 Teena Marie song) and a remix of \"\"Can't Take My Eyes Off You\"\". In Australia, \"\"Fabulous\"\" was released 24 February 2001 and"} +{"qid": "test2596", "pid": "1425999", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"The Four Seasons (band)\"\nother Four Seasons material. Valli's first post-1960 single without the Seasons was 1975's \"\"Swearin' to God\"\". More Top 20 singles followed in 1965, 1966, and 1967, including \"\"Let's Hang On!\"\", \"\"Don't Think Twice, It's All Right\"\" (as the Wonder Who?), \"\"Working My Way Back to You\"\", \"\"Opus 17 (Don't You Worry 'bout Me)\"\", \"\"I've Got You Under My Skin\"\", \"\"Can't Take My Eyes Off You\"\" (released under Valli's name as a \"\"solo\"\" single), \"\"Beggin'\"\", \"\"Tell It to the Rain\"\", \"\"C'mon Marianne\"\", and \"\"I Make a Fool of Myself\"\" (Frankie Valli \"\"solo\"\"). In addition, other Crewe/Gaudio songs that did not become"} +{"qid": "test2596", "pid": "6643803", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"Bob Crewe\"\none of their greatest successes with \"\"Can't Take My Eyes Off You\"\", recorded by Frankie Valli with the Four Seasons. The song reached #2 on the \"\"Billboard\"\" Hot 100 and earned a gold record. \"\"Can't Take My Eyes Off You\"\" has since been recorded by a wide variety of vocalists and bands, in several different languages. A 1968 version by singer Andy Williams climbed to #5 on the UK Singles Chart. Also achieving chart status over the decades were English-language versions by the Lettermen, Maureen McGovern, Boys Town Gang and Lauryn Hill. The song has been heard in numerous motion"} +{"qid": "test2596", "pid": "8457648", "query": "who sings i can't take my eyes off of you", "answer": "Frankie Valli", "passage": "\"The Greatest Songs of the Sixties\"\nNight\"\" (the latter first appeared on Manilow's Sinatra-tribute album \"\"Manilow Sings Sinatra\"\" in 1998). The Greatest Songs of the Sixties The Greatest Songs of the Sixties is Barry Manilow's sequel album for \"\"The Greatest Songs of the Fifties\"\". The album was another major hit for Manilow in the United States, selling nearly 50% more than his previous album in its opening week. As with its predecessor, this album was produced by Clive Davis, along with Manilow and David Benson. The classics performed in this album includes Frankie Valli's \"\"Can't Take My Eyes Off You\"\", Elvis Presley's #1 hit \"\"Can't Help"} +{"qid": "test2597", "pid": "1159911", "query": "how many times has lake placid hosted the winter olympics", "answer": "twice", "passage": "\"Lake Placid, New York\"\nthe Nordic combined event. Lake Placid, St Moritz, and Innsbruck are the only sites to have twice hosted the Winter Olympic Games. Jack Shea, a resident of the village, became the first person to win two gold medals when he doubled in speed skating at the 1932 Winter Olympics. He carried the Olympic torch through Lake Placid in 2002 shortly before his death. His grandson, Jimmy Shea, competed in the 2002 Winter Olympics in Salt Lake City, Utah, in his honor, winning gold in the Skeleton. In the U.S., the village is especially remembered as the site of the 1980"} +{"qid": "test2598", "pid": "19978880", "query": "who came up with the theory of relativity", "answer": "Albert Einstein", "passage": "\"One World or None\"\nAlbert Einstein came up with the theory of relativity. Nuclear physics was a product of New Zealand physicist Ernest Rutherford's work on the atomic nucleus, Danish physicist Niels Bohr's identification of atomic structure and American physicist Carl David Anderson's discovery of the positron. Other advances included English physicist James Chadwick discovering the neutron, while French scientists Irène Joliot-Curie and her husband Frédéric Joliot-Curie studied artificial radioactivity. Further nuclear research was carried out by Enrico Fermi, who transmuted uranium based on Japanese physicist Hantaro Nagaoka's theories on the atom. German scientist Otto Hahn derived barium from uranium, while uranium was split"} +{"qid": "test2598", "pid": "307797", "query": "who came up with the theory of relativity", "answer": "Albert Einstein", "passage": "Physics\nand theories such as quantum mechanics and the theory of relativity simplify to their classical equivalents at such scales. However, inaccuracies in classical mechanics for very small objects and very high velocities led to the development of modern physics in the 20th century. Modern physics began in the early 20th century with the work of Max Planck in quantum theory and Albert Einstein's theory of relativity. Both of these theories came about due to inaccuracies in classical mechanics in certain situations. Classical mechanics predicted a varying speed of light, which could not be resolved with the constant speed predicted by"} +{"qid": "test2598", "pid": "15286888", "query": "who came up with the theory of relativity", "answer": "Albert Einstein", "passage": "\"Criticism of the theory of relativity\"\nthe electromagnetic worldview had to be given up. Eventually, Albert Einstein published in September 1905 what is now called special relativity, which was based on a radical new application of the relativity principle in connection with the constancy of the speed of light. In special relativity, the space and time coordinates depend on the inertial observer's frame of reference, and the luminiferous aether plays no role in the physics. Although this theory was founded on a very different kinematical model, it was experimentally indistinguishable from the aether theory of Lorentz and Poincaré, since both theories satisfy the relativity principle of"} +{"qid": "test2598", "pid": "458536", "query": "who came up with the theory of relativity", "answer": "Albert Einstein", "passage": "\"Wolfgang Pauli\"\ndeist and a mystic. Pauli attended the Döblinger-Gymnasium in Vienna, graduating with distinction in 1918. Only two months after graduation, he published his first paper, on Albert Einstein's theory of general relativity. He attended the Ludwig-Maximilians University in Munich, working under Arnold Sommerfeld, where he received his PhD in July 1921 for his thesis on the quantum theory of ionized diatomic hydrogen (). Sommerfeld asked Pauli to review the theory of relativity for the \"\"Encyklopädie der mathematischen Wissenschaften\"\" (\"\"Encyclopedia of Mathematical Sciences\"\"). Two months after receiving his doctorate, Pauli completed the article, which came to 237 pages. It was praised"} +{"qid": "test2600", "pid": "9564360", "query": "who won the icc under 19 world cup 2018", "answer": "India", "passage": "\"Under-19 Cricket World Cup\"\nUnder-19 Cricket World Cup The ICC Under-19 Cricket World Cup is an international cricket tournament organised by the International Cricket Council (ICC) contested by national under-19 teams. First contested in 1988, as the Youth World Cup, it was not staged again until 1998. Since then, the World Cup has been held as a biennial event, organised by the ICC. The first edition of the tournament had only eight participants, but every subsequent edition has included sixteen teams. India, the current champions, has won the World Cup four times which is the highest amongst all teams, while Australia has won thrice,"} +{"qid": "test2600", "pid": "7170494", "query": "who won the icc under 19 world cup 2018", "answer": "India", "passage": "\"2006 Under-19 Cricket World Cup\"\nNelon Pascal, Jason Mohammed, Leon Johnson, William Perkins and Kemar Roach Zimbabwe – Sean Williams, Prince Masvaure, Taurai Muzarabani, Chamu Chibhabha, Graeme Cremer, Friday Kasteni, Taurai Muzarabani and Keegan Meth (Gary Ballance who played for Zimbabwe U-19 later represented England) 2004 ICC Under-19 Cricket World Cup ICC Under-19 World Cup – final India Under-19s v Pakistan Under-19s – ESPN Cricinfo ICC Under-19 Cricket World Cup 2006 Under-19 Cricket World Cup The 2006 ICC Under-19 Cricket World Cup was played in Sri Lanka from 2 to 15 February 2006. The final was played between Pakistan and India in Colombo, which Pakistan"} +{"qid": "test2600", "pid": "19331036", "query": "who won the icc under 19 world cup 2018", "answer": "West Indies", "passage": "\"2018 Under-19 Cricket World Cup\"\n2018 Under-19 Cricket World Cup The 2018 ICC Under-19 Cricket World Cup was an international limited-overs cricket tournament that was held in New Zealand from 13 January to 3 February 2018. It was the twelfth edition of the Under-19 Cricket World Cup, and the third to be held in New Zealand (after the 2002 and 2010 events). New Zealand was the first country to host the event three times. The opening ceremony took place on 7 January 2018. The West Indies were the defending champions. However, they failed to defend their title, after losing their first two group fixtures. Following"} +{"qid": "test2601", "pid": "552797", "query": "when was the jury system abolished in india", "answer": "1959", "passage": "Jury\nits 14th Report. Jury trials were abolished in India in most courts after the infamous \"\"KM Nanavati v State of Maharashtra\"\" (1959) except for Matrimonial Disputes of Parsis by a very discrete process during the 1960s, finishing with the 1973 Code of Criminal Procedure, which is still in force today. In the \"\"Nanavati\"\" case, Kawas Manekshaw Nanavati was tried for the murder of his wife Sylvia's paramour, Prem Ahuja. Nanavati surrendered himself to the police after killing Ahuja. The incident shocked the nation, got unprecedented media coverage, and inspired several books and movies. The case was the last jury trial"} +{"qid": "test2603", "pid": "18323538", "query": "how many episodes of the white princess will there be", "answer": "eight", "passage": "\"The White Princess\"\nbeing written. Production on the eight episode limited series began in June 2016. The White Princess The White Princess is a 2013 historical novel by Philippa Gregory, part of her series \"\"The Cousins' War\"\". It is the story of Elizabeth of York, daughter of Edward IV of England and Elizabeth Woodville, and later wife of Henry VII and mother of Henry VIII. In October 2013, \"\"The Telegraph\"\" reported that Starz was planning to develop a miniseries based on \"\"The White Princess\"\". This adaptation would be a sequel to \"\"The White Queen\"\", a 10-part 2013 television series which adapted Gregory's novels"} +{"qid": "test2603", "pid": "15577883", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"The Princesses and the Frog\"\nof their encounter, and how quickly she got out of there, the show is sending a mixed message at best.\"\" She went on to state, \"\"We have no right to expect \"\"Gossip Girl\"\" to be a paragon of morality, or even realism, but the idea that true love requires taking a shard of glass to the face is disturbing even in this alternate, soap-opera dimension.\"\" The Princesses and the Frog \"\"The Princesses and the Frog\"\" is the 85th episode of the CW television series, \"\"Gossip Girl\"\" and the 20th episode of the show's fourth season. The episode was written by"} +{"qid": "test2603", "pid": "16234384", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"Princess Bubblegum\"\nout, with her current form being 827 years old. It is unclear how much of this story is canon to the cartoon show, but seeing as how in the episode \"\"Bonnie and Neddy\"\" it is revealed that she came from a pink, gum-like substance known as the \"\"Mother Gum,\"\" the basis of this information seems to coincide with the shows mythos. In the season 7 episode \"\"Elemental,\"\" Princess Bubblegum was revealed to be the current Candy Elemental (in the \"\"Adventure Time\"\" universe, the Elementals are the embodiments of the four main elements that make up the world: ice, fire, candy"} +{"qid": "test2603", "pid": "19569372", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"The White Princess (TV series)\"\nCathedral, and Wells. Jamie Payne, who directed three episodes of \"\"The White Queen\"\", directed episodes 1, 2, 3, 7, and 8. Frost is showrunner and executive producer. Lachlan MacKinnon is serving as producer, with Gregory as executive producer. Playground's Colin Callender and Scott Huff are serving as executive producers with Company Pictures' Michele Buck. In early January 2017, the producers released a video clip from the series as a teaser trailer. In February 2017, Starz announced that \"\"The White Princess\"\" would premiere on 16 April 2017. In the UK the series began its satellite and terrestrial broadcasts on the Drama"} +{"qid": "test2603", "pid": "19569368", "query": "how many episodes of the white princess will there be", "answer": "eight", "passage": "\"The White Princess (TV series)\"\nThe White Princess (TV series) The White Princess is a 2017 British-American historical fiction television series for Starz, based on Philippa Gregory's 2013 novel of the same name and, to a lesser extent, its sequel \"\"The King's Curse\"\". It is a sequel to \"\"The White Queen\"\", a 2013 BBC-produced miniseries adapting three of Gregory's previous novels. In the eight episode series, the marriage of Henry VII and Elizabeth of York effectively ends the Wars of the Roses by uniting the houses of Lancaster and York. However, their mutual enmity and distrust—as well as the political plots of their mothers—threaten to"} +{"qid": "test2603", "pid": "19569370", "query": "how many episodes of the white princess will there be", "answer": "eight", "passage": "\"The White Princess (TV series)\"\nto develop a sequel miniseries called \"\"The White Princess\"\", based on Gregory's novel. Starz CEO Chris Albrecht announced in January 2014 that the network was working with \"\"White Queen\"\" screenwriter Emma Frost on the project. Starz would produce the \"\"White Princess\"\" miniseries without involvement from the BBC. Gregory confirmed that the project was underway in August 2015. On 7 February 2016, Gregory announced on Facebook that the sequel was officially confirmed to be in production, with the scripts being written. The series was confirmed to be eight episodes in May 2016. Jodie Comer was cast in the title role of"} +{"qid": "test2603", "pid": "16899258", "query": "how many episodes of the white princess will there be", "answer": "eight", "passage": "\"The White Queen (TV series)\"\nthe project was underway in August 2015. On 7 February 2016, Gregory announced on Facebook that the sequel was officially confirmed to be in production, with the scripts being written. Production on the eight episode limited series began in June 2016. It aired weekly on Starz from 6 April to 4 June 2017. On 15 March 2018, Starz announced that it would create a continuation of \"\"The White Queen\"\" and \"\"The White Princess\"\" to be titled \"\"The Spanish Princess\"\", which would be based on Gregory's novels \"\"The Constant Princess\"\" and \"\"The King's Curse\"\" and center on Catherine of Aragon. The"} +{"qid": "test2603", "pid": "5353075", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"James Wong Howe\"\nMackendrick to give the black-and-white film a sharp-edged look reminiscent of New York tabloid photography such as that taken by Arthur \"\"Weegee\"\" Fellig. During the 1950s, Howe directed his only English-language feature films, \"\"Invisible Avenger\"\", one of many film adaptations of \"\"The Shadow\"\", and \"\"Go Man Go\"\", a movie about the Harlem Globetrotters. Neither was a critical or commercial success. In 1961 Howe directed episodes of \"\"Checkmate\"\" and \"\"87th Precinct\"\", then went back to cinematography. Howe's best known work was almost entirely in black and white. His two Academy Awards both came during the period when Best Cinematography Oscars were"} +{"qid": "test2603", "pid": "2916045", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"Princess Nine\"\nfrom professional baseball for life. Many of his fans believed that he was innocent. In 2005, his sentence was revoked and his name was fully rehabilitated. These are titles with a similar theme of baseball. Princess Nine Princess Nine (AKA \"\"Princess Ten\"\"), or , is a 26-episode Japanese anime broadcast in Japan in 1998. The television series was produced by Phoenix Entertainment in Japan, initially released by ADV Films in North America, aired from April 8 to October 14, 1998 on NHK, ran for 26 episodes, and six volumes of the series were released on VHS and DVD. The show"} +{"qid": "test2603", "pid": "1870381", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"Princess Tutu\"\nall episodes and, beginning in 2005, the series was periodically released as single DVD \"\"volumes\"\" that each contained several episodes. In 2007 the series was released as a complete DVD collection of all 26 episodes. In 2011 AEsir Holdings announced the licensing of the series and the release of a complete DVD collection of all 26 episodes distributed by Section23 Films. In 2018, as AEsir Holdings and Sentai Filmworks are parts of Section23 Films, the latter will release a complete Blu-ray collection of all 26 episodes on December 11, 2018. Princess Tutu The series has been reviewed many times, starting"} +{"qid": "test2603", "pid": "5238682", "query": "how many episodes of the white princess will there be", "answer": "8", "passage": "\"Second Doctor\"\nIce Warriors. It was also during this era that \"\"Doctor Who\"\" began to come under fire for its purportedly violent and frightening content. As with his predecessor, all the Second Doctor's original episodes were in black-and-white. Later guest appearances in \"\"The Three Doctors\"\" (1972–73), \"\"The Five Doctors\"\" (1983) and \"\"The Two Doctors\"\" (1985) were in colour. However, Troughton's reign as the Doctor was more notable for what does \"\"not\"\" exist than for what does, as many of the episodes featuring the Second Doctor were junked by the BBC; a full list of incomplete Doctor Who serials shows how many of"} +{"qid": "test2604", "pid": "806982", "query": "when was pac man released in the us", "answer": "October 1980", "passage": "Pac-Man\nPac-Man , stylized as PAC-MAN, is an arcade game designed by Toru Iwatani of Namco and first released in Japan as Puck Man in May . Licensed for distribution in the United States by Midway Games, it was released in October 1980 when top arcade games were stark space shooters, such as \"\"Asteroids\"\". \"\"Pac-Man\"\" established the conventions of the maze chase genre, and is considered one of the classics of the medium and an icon of 1980s popular culture. Upon its release, the game—and subsequent entries in the series—became a social phenomenon that crossed over to other media, such as"} +{"qid": "test2606", "pid": "3541558", "query": "where is the lost dutchman's mine supposed to be located", "answer": "in the southwestern United States", "passage": "\"Lost Dutchman's Gold Mine\"\nLost Dutchman's Gold Mine The Lost Dutchman's Gold Mine (also known by similar names) is, according to legend, a rich gold mine hidden in the southwestern United States. The location is generally believed to be in the Superstition Mountains, near Apache Junction, east of Phoenix, Arizona. There have been many stories about how to find the mine, and each year people search for the mine. Some have died on the search. The mine is named after German immigrant Jacob Waltz (\"\"c.\"\" 1810–1891), who purportedly discovered it in the 19th century and kept its location a secret. \"\"Dutchman\"\" was a common"} +{"qid": "test2609", "pid": "17422638", "query": "who made the movie fifty shades of grey", "answer": "Sam Taylor-Johnson", "passage": "\"Fifty Shades (novel series)\"\n2015, director Sam Taylor-Johnson confirmed two sequels to be succeeded after the first film, with \"\"Fifty Shades Darker\"\" to be released February 10, 2017. Fifty Shades (novel series) Fifty Shades is a series of erotic novels by E. L. James. Initially a trilogy consisting of \"\"Fifty Shades of Grey\"\" (2011), \"\"Fifty Shades Darker\"\" and \"\"Fifty Shades Freed\"\" (2012), the series traces the deepening relationship between a college graduate, Anastasia Steele, and a young business man, Christian Grey. Grey introduces Ana to the world of BDSM. James has spoken of her shock at the success of the book, \"\"The explosion of"} +{"qid": "test2609", "pid": "17485795", "query": "who made the movie fifty shades of grey", "answer": "Universal Pictures and Focus Features", "passage": "\"Fifty Shades of Grey (film)\"\nFifty Shades of Grey (film) Fifty Shades of Grey is a 2015 American erotic romantic drama film directed by Sam Taylor-Johnson, with a screenplay by Kelly Marcel. The film is based on E. L. James’ 2011 novel of the same name and stars Dakota Johnson as Anastasia Steele, a college graduate who begins a sadomasochistic relationship with young business magnate Christian Grey, played by Jamie Dornan. The film premiered at the 65th Berlin International Film Festival on February 11, 2015 and was released on February 13, 2015, by Universal Pictures and Focus Features. Despite receiving generally negative reviews, it was"} +{"qid": "test2609", "pid": "17485846", "query": "who made the movie fifty shades of grey", "answer": "Universal Pictures and Focus Features", "passage": "\"Fifty Shades of Grey (film)\"\nto lampoon.\"\" Fifty Shades of Grey (film) Fifty Shades of Grey is a 2015 American erotic romantic drama film directed by Sam Taylor-Johnson, with a screenplay by Kelly Marcel. The film is based on E. L. James’ 2011 novel of the same name and stars Dakota Johnson as Anastasia Steele, a college graduate who begins a sadomasochistic relationship with young business magnate Christian Grey, played by Jamie Dornan. The film premiered at the 65th Berlin International Film Festival on February 11, 2015 and was released on February 13, 2015, by Universal Pictures and Focus Features. Despite receiving generally negative reviews,"} +{"qid": "test2609", "pid": "19323009", "query": "who made the movie fifty shades of grey", "answer": "Sam Taylor-Johnson", "passage": "\"Fifty Shades (film series)\"\nFifty Shades (film series) Fifty Shades is an American film series that consists of three erotic romantic drama films, based on the \"\"Fifty Shades\"\" trilogy by English author E. L. James. It is distributed by Universal Studios and stars Dakota Johnson and Jamie Dornan as the lead roles Anastasia Steele and Christian Grey, respectively. Sam Taylor-Johnson directed the first film and initially she was slated to be the director of the sequels as well, however subsequently the second and third films were directed by James Foley. The first film, \"\"Fifty Shades of Grey\"\", was released on February 13, 2015, while"} +{"qid": "test261", "pid": "12448885", "query": "what new deal program limited production in industry", "answer": "National Industrial Recovery Act", "passage": "\"New Deal\"\nNew Deal The New Deal was a series of programs, public work projects, financial reforms and regulations enacted by President Franklin D. Roosevelt in the United States between 1933 and 1936. It responded to needs for relief, reform and recovery from the Great Depression. Major federal programs included the Civilian Conservation Corps (CCC), the Civil Works Administration (CWA), the Farm Security Administration (FSA), the National Industrial Recovery Act of 1933 (NIRA) and the Social Security Administration (SSA). They provided support for farmers, the unemployed, youth and the elderly. The New Deal included new constraints and safeguards on the banking industry"} +{"qid": "test2610", "pid": "15443310", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (film)\"\nsome viewers saw \"\"The Hunger Games\"\" as a Christian allegory. Jeffrey Weiss of Real Clear Religion, published in the \"\"Star Tribune\"\" has remarked on what he saw as the intentional absence of religion in \"\"The Hunger Games\"\" universe, and has commented that while the stories contain no actual religion, people are \"\"find[ing] aspects that represent their own religious values\"\" within it. Charles McGrath, writing for \"\"The New York Times\"\", said that the film will remind viewers of the television series \"\"Survivor\"\", a little of \"\"The Bachelorette\"\", and of the short story \"\"The Lottery\"\" by Shirley Jackson published in 1948 by"} +{"qid": "test2610", "pid": "16559553", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games: Catching Fire\"\nargued that the premise \"\"doesn't make a lot of sense\"\". He praised the \"\"impressive\"\" first act and Jennifer Lawrence, for \"\"project[ing] the kind of strength that Katharine Hepburn had when she was young.\"\" Denby found the second act \"\"attenuated and rhythmless\"\" and criticised the \"\"incoherent\"\" finale that \"\"will send the audience scurrying back to the book to find out what’s supposed to be going on\"\". \"\"The Hunger Games: Catching Fire\"\" earned $424,668,047 in North America and $440,343,699 in other countries for a worldwide total of $865,011,746. Worldwide, it is the 52nd-highest-grossing film, the highest-grossing film of \"\"The Hunger Games\"\" series,"} +{"qid": "test2610", "pid": "15443327", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (film)\"\nbased on the last book \"\"Mockingjay\"\". \"\"\"\" was released November 21, 2014, and \"\"\"\" was released November 20, 2015. Lawrence, Hutcherson, Hemsworth, and Harrelson were all signed on to the whole franchise. The Hunger Games (film) The Hunger Games is a 2012 American science fiction-adventure film directed by Gary Ross and based on Suzanne Collins’ 2008 novel of the same name. It is the first installment in \"\"The Hunger Games\"\" film series and was produced by Nina Jacobson and Jon Kilik, with a screenplay by Ross, Collins, and Billy Ray. The film stars Jennifer Lawrence, Josh Hutcherson, Liam Hemsworth, Woody"} +{"qid": "test2610", "pid": "12661220", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (novel)\"\nher website, saying, \"\"I was so obsessed with this book ... \"\"The Hunger Games\"\" is amazing.\"\" \"\"The Hunger Games\"\" received many awards and honors. It was named one of \"\"Publishers Weekly\"\" \"\"Best Books of the Year\"\" in 2008 and a \"\"The New York Times\"\" \"\"Notable Children's Book of 2008\"\". It was the 2009 winner of the Golden Duck Award in the Young Adult Fiction Category. \"\"The Hunger Games\"\" was also a \"\"2008 Cybil Winner\"\" for fantasy and science-fiction books along with \"\"The Graveyard Book\"\", one of \"\"School Library Journal\"\"s \"\"Best Books 2008\"\", and a \"\"Booklist Editors' Choice\"\" in 2008. In"} +{"qid": "test2610", "pid": "17332651", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games: Mockingjay – Part 1\"\n$31.4 million through its opening week, which is more than what \"\"Catching Fire\"\" earned through its entire run. The film had an unsuccessful opening in Japan with $500,000 debuting at eighth place at the Japanese box office and ended up making a mere $1.6 million after its run. It became the highest-grossing \"\"Hunger Games\"\" film of all time in 31 countries including Brazil, Italy, Chile, Venezuela, Central America, and Portugal. \"\"The Hunger Games: Mockingjay – Part 1\"\" received generally positive reviews from critics, with praise aimed at its political subtext and acting performances (particularly that of Lawrence), but criticism for"} +{"qid": "test2610", "pid": "15443259", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (film)\"\nThe Hunger Games (film) The Hunger Games is a 2012 American science fiction-adventure film directed by Gary Ross and based on Suzanne Collins’ 2008 novel of the same name. It is the first installment in \"\"The Hunger Games\"\" film series and was produced by Nina Jacobson and Jon Kilik, with a screenplay by Ross, Collins, and Billy Ray. The film stars Jennifer Lawrence, Josh Hutcherson, Liam Hemsworth, Woody Harrelson, Elizabeth Banks, Lenny Kravitz, Stanley Tucci, and Donald Sutherland. The story takes place in a dystopian post-apocalyptic future in the nation of Panem, where a boy and a girl from each"} +{"qid": "test2610", "pid": "14567030", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Katniss Everdeen\"\nKatniss Everdeen Katniss Everdeen is a fictional character and the protagonist of \"\"The Hunger Games\"\" trilogy by Suzanne Collins. Her name comes from a plant with edible tubers called \"\"Sagittaria\"\" (katniss), from Sagittarius the Archer, whose name means \"\"He that throws arrows\"\" in Latin. She is portrayed by Jennifer Lawrence in the film adaptations \"\"The Hunger Games\"\", \"\"\"\", \"\"\"\", and \"\"\"\". Katniss and her family come from District 12, a coal-mining district that is the poorest and least populated district in the dystopian fictional autocratic nation of Panem. In the course of the first book, \"\"The Hunger Games\"\", Katniss volunteers"} +{"qid": "test2610", "pid": "17332632", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games: Mockingjay – Part 1\"\nincur such big expense even though the film isn't actually playing at the festival that it was convenient as the cast were in Europe already and that \"\"it's a big opportunity for our international distributors to actually hear what the worldwide plans are for the film, which opens in November. Cannes is the best publicity opportunity from an international penetration perspective.\"\" Kabam announced their partnership with Lionsgate to create a mobile game based on \"\"The Hunger Games: Mockingjay Part 1\"\", to tie in with the film's release. Kabam produced an exclusive role playing, card collection mobile game. In the game,"} +{"qid": "test2610", "pid": "12661195", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (novel)\"\nreviewers and authors. It was praised for its plot and character development. In writing \"\"The Hunger Games\"\", Collins drew upon Greek mythology, Roman gladiatorial games, and contemporary reality television for thematic content. The novel won many awards, including the California Young Reader Medal, and was named one of \"\"Publishers Weekly\"\"s \"\"Best Books of the Year\"\" in 2008. \"\"The Hunger Games\"\" was first published in hardcover on September 14, 2008, by Scholastic, featuring a cover designed by Tim O'Brien. It has since been released in paperback and also as an audiobook and ebook. After an initial print of 200,000, the book"} +{"qid": "test2610", "pid": "14724559", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Fictional world of The Hunger Games\"\n2, District 1 is heavily favored by the Capitol and is fairly wealthy compared to the rest of the districts. It is also noted that people from this district give their children names after expensive material, such as Cashmere, or characteristics of the things they make, such as Glimmer, and Katniss states in the first book she thinks it's \"\"ridiculous.\"\" In \"\"The Hunger Games\"\", during the 74th Hunger Games, both tributes from District 1 (Marvel and Glimmer) join the \"\"Career\"\" pack. Glimmer is eventually killed by tracker jackers (mutant wasps), which were dropped on the Careers by Katniss. Marvel is"} +{"qid": "test2610", "pid": "14724566", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Fictional world of The Hunger Games\"\nthe previous victors to come from District 3, Beetee, won his Games by setting a trap that electrocuted six tributes at once, crowning him the victor. He also used his skills after being chosen to compete in the Seventy-fifth Hunger Games in \"\"Catching Fire\"\". The other victor chosen to compete in the Seventy-fifth Hunger Games is a woman named Wiress, who discovered that the arena operated like a clock and told Katniss how to detect force fields, after she pointed (or at least started to point) out the force field put up between the Gamemakers and the victors. Wiress died"} +{"qid": "test2610", "pid": "14724579", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Fictional world of The Hunger Games\"\narena; however, she did not survive the initial bloodbath. Woof also had knowledge of the plot. District 9 specializes in producing grain and salts. It is the least mentioned district in the series; no named character from the district has appeared in the series. The only mention of note from the district is the male tribute in the 74th Hunger Games who tackles Katniss for a supply bag until Clove puts a knife in his back. District 9 is the only district to lose both of its tributes in the bloodbath of both the 74th and 75th Hunger Games, and"} +{"qid": "test2610", "pid": "15443399", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games\"\nNovember 2014 and November 2015. A gesture (a raised up hand with three middle fingers pressed together) used in \"\"The Hunger Games\"\" trilogy to express unity with people striving to survive, was used in 2014 by anti-government protestors in Thailand, at least seven of whom were arrested for it. The Hunger Games The Hunger Games is a trilogy of young adult dystopian novels written by American novelist Suzanne Collins. The series is set in \"\"The Hunger Games\"\" universe, and follows young characters Katniss Everdeen and Peeta Mellark. The novels in the trilogy are titled \"\"The Hunger Games\"\" (2008), \"\"Catching Fire\"\""} +{"qid": "test2610", "pid": "15443394", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games\"\nblow up, killing Prim, just as she spots her sister. Later, Katniss, also injured, awakens from a coma to learn that the rebels have won, and Snow is awaiting execution at her hands. When she meets Snow by chance, he claims that it was Coin who secretly ordered the bombings in order to strip away the support of his remaining followers. Coin then asks the surviving victors to vote on a final Hunger Games, involving the children of high-ranking Capitol officials (including Snow's granddaughter). Katniss and Haymitch cast the deciding votes in favor of the scheme. However, at what is"} +{"qid": "test2610", "pid": "5613626", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Elizabeth Banks\"\na Comedy Series for the 63rd Primetime Emmy Awards. In 2012, Banks also starred in the film \"\"What to Expect When You're Expecting\"\" alongside Jennifer Lopez. Also that year, she appeared in \"\"Man on a Ledge\"\", as police negotiator Lydia Mercer. She starred in the film \"\"The Hunger Games\"\" (2012), playing Effie Trinket, a woman from \"\"The Capitol\"\" who escorts the District 12 tributes to the annual Hunger Games. She reprised the role in the sequel films \"\"\"\" (2013), \"\"\"\" (2014), and \"\"\"\" (2015). Banks co-starred in the 2014 movie \"\"Every Secret Thing\"\", playing Detective Nancy Porter investigating the disappearance"} +{"qid": "test2610", "pid": "17578302", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (film series)\"\n2\"\". Lionsgate released a statement stating that, since the majority of Hoffman’s scenes were completed, the release date for \"\"Part 2\"\" would not be affected. Every year, in the ruins of what was once North America, the Capitol of the nation of Panem forces each of its 12 districts to send a teenage boy and girl, between the ages of 12 and 18, to compete in the Hunger Games: a nationally televised event in which 'tributes' fight each other within an arena, until one survivor remains. When Primrose Everdeen is 'reaped', her older sister Katniss Everdeen volunteers in her place"} +{"qid": "test2610", "pid": "16559519", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games: Catching Fire\"\nThe Hunger Games: Catching Fire The Hunger Games: Catching Fire is a 2013 American dystopian science fiction adventure film based on Suzanne Collins' dystopian novel \"\"Catching Fire\"\" (2009), the second installment in \"\"The Hunger Games\"\" trilogy. The film is the sequel to \"\"The Hunger Games\"\" (2012) and the second installment in \"\"The Hunger Games\"\" film series, produced by Nina Jacobson and Jon Kilik, and distributed by Lionsgate. Francis Lawrence directed the film, with a screenplay by Simon Beaufoy and Michael Arndt (under a pseudonym). Adding to the existing cast, the supporting cast was filled out with Philip Seymour Hoffman, Jeffrey"} +{"qid": "test2610", "pid": "16559558", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games: Catching Fire\"\nfirst film, \"\"\"\", was released on November 21, 2014 while the second film, \"\"\"\", was released on November 20, 2015. Principal photography on the two-part film began on September 23, 2013, in Atlanta and concluded on June 20, 2014, in Berlin, Germany. The Hunger Games: Catching Fire The Hunger Games: Catching Fire is a 2013 American dystopian science fiction adventure film based on Suzanne Collins' dystopian novel \"\"Catching Fire\"\" (2009), the second installment in \"\"The Hunger Games\"\" trilogy. The film is the sequel to \"\"The Hunger Games\"\" (2012) and the second installment in \"\"The Hunger Games\"\" film series, produced by"} +{"qid": "test2610", "pid": "20138254", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Battle royale game\"\nwere popularized through survival games. Shortly after the release of the film \"\"The Hunger Games\"\" in 2012, a server plug-in named Hunger Games (later changed to Survival Games) was developed for Minecraft. Survival Games takes inspiration from the film, initially placing players at the center of the map near a set of equipment chests. When the game commences, players can compete over the central resources or spread out to find items stored in chests scattered around the play area. Players killed are eliminated and the last surviving player wins the match. In \"\"DayZ\"\", a mod for \"\"ARMA 2\"\", players struggle"} +{"qid": "test2610", "pid": "14567072", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Katniss Everdeen\"\nher size from hunting to feed her family in the woods outside of District 12. Katniss is sixteen years old during the 74th Hunger Games and 17–18 years old during the Quarter Quell and the Rebellion. She also wears a pin of a mockingjay during the games to represent good luck. Katniss has received mostly positive reviews. In a review for \"\"The Hunger Games\"\", Stephen King said she was a \"\"cool kid\"\" with a \"\"lame name,\"\" before adding, \"\"once I got over [her] name...I got to like her a lot.\"\" Francisca Goldsmith in \"\"Booklist\"\" said, \"\"Although Katniss may be skilled"} +{"qid": "test2610", "pid": "14567078", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Katniss Everdeen\"\nwrote in the book\"\" and that she had \"\"every essential quality necessary to play Katniss.\"\" Katniss Everdeen Katniss Everdeen is a fictional character and the protagonist of \"\"The Hunger Games\"\" trilogy by Suzanne Collins. Her name comes from a plant with edible tubers called \"\"Sagittaria\"\" (katniss), from Sagittarius the Archer, whose name means \"\"He that throws arrows\"\" in Latin. She is portrayed by Jennifer Lawrence in the film adaptations \"\"The Hunger Games\"\", \"\"\"\", \"\"\"\", and \"\"\"\". Katniss and her family come from District 12, a coal-mining district that is the poorest and least populated district in the dystopian fictional autocratic"} +{"qid": "test2610", "pid": "14724524", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"Fictional world of The Hunger Games\"\nFictional world of The Hunger Games \"\"The Hunger Games\"\" universe is a fictional world appearing in \"\"The Hunger Games\"\" trilogy written by Suzanne Collins. It consists primarily of the fictional nation of Panem, its Capitol where the totalitarian government resides, and the outlying districts, numbered 1 to 12, each with a different economy. In addition, there is the secretive District 13, where a rebel force is building strength. The Hunger Games themselves are an annual event in which two children from each district, selected through a process called \"\"reaping\"\", are forced to participate in a battle to the death. The"} +{"qid": "test2610", "pid": "15443378", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games\"\nBy the time the film adaptation of \"\"The Hunger Games\"\" was released in 2012, the publisher had reported over 26 million \"\"Hunger Games\"\" trilogy books in print, including movie tie-in books. \"\"The Hunger Games\"\" universe is a dystopia set in Panem, a country consisting of the wealthy Capitol and 12 districts in varying states of poverty. Every year, children from the districts are selected to participate in a compulsory televised battle royale death match called The Hunger Games. The novels were all well received. In August 2012, the series ranked second, exceeded only by the \"\"Harry Potter\"\" series in NPR's"} +{"qid": "test2610", "pid": "15443377", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games\"\nThe Hunger Games The Hunger Games is a trilogy of young adult dystopian novels written by American novelist Suzanne Collins. The series is set in \"\"The Hunger Games\"\" universe, and follows young characters Katniss Everdeen and Peeta Mellark. The novels in the trilogy are titled \"\"The Hunger Games\"\" (2008), \"\"Catching Fire\"\" (2009), and \"\"Mockingjay\"\" (2010). The novels have all been developed into films starring Jennifer Lawrence, with the film adaptation of \"\"Mockingjay\"\" split into two parts. The first two books in the series were both \"\"New York Times\"\" best sellers, and \"\"Mockingjay\"\" topped all US bestseller lists upon its release."} +{"qid": "test2610", "pid": "15443325", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games (film)\"\nbecame the top-selling video of 2012. The entire Hunger Games series was released on 4K UHD Blu-Ray on November 8, 2016. On August 8, 2011, while still shooting the film, Lionsgate announced that a film adaptation of the second novel in \"\"The Hunger Games\"\" trilogy, \"\"\"\", was scheduled to be released on November 22, 2013. In November 2011, Lionsgate entered negotiations with screenwriter Simon Beaufoy to adapt the novel for screen, since the post-production schedule for \"\"The Hunger Games\"\" was too crowded for Ross and Collins to adapt the next film as originally planned. \"\"The Hunger Games: Catching Fire\"\" began"} +{"qid": "test2610", "pid": "17332610", "query": "what are the names of the hunger games", "answer": "The Hunger Games", "passage": "\"The Hunger Games: Mockingjay – Part 1\"\nThe Hunger Games: Mockingjay – Part 1 The Hunger Games: Mockingjay – Part 1 is a 2014 American dystopian science fiction adventure film directed by Francis Lawrence with a screenplay by Peter Craig and Danny Strong. It is the first of two films based on Suzanne Collins' novel \"\" Mockingjay\"\", the final book in \"\"The Hunger Games\"\" trilogy, and the third installment in \"\"The Hunger Games\"\" film series, produced by Nina Jacobson and Jon Kilik and distributed by Lionsgate. The film features an ensemble cast that includes Jennifer Lawrence, Josh Hutcherson, Liam Hemsworth, Woody Harrelson, Elizabeth Banks, Julianne Moore, Philip"} +{"qid": "test2611", "pid": "648554", "query": "what engine is in a holden v8 supercar", "answer": "V8-engine", "passage": "\"Supercars Championship\"\naccumulated engine power output and weighted average. All cars currently use a 5.0-litre, naturally aspirated V8-engine with electronic fuel injection, capable of producing between 460 and 485 kW (620–650 bhp). Manufacturers are free to choose between using an engine based on one from their own line up or a generic engine provided by V8 Supercars. Both Ford and Holden use US-based racing engines with pushrod actuated valves and two valves per cylinder. Mercedes, Nissan and Volvo use modified versions of their own engines, with hydraulic-lift valves and four valves per cylinder. All engines are electronically limited to 7,500 rpm and"} +{"qid": "test2611", "pid": "648526", "query": "what engine is in a holden v8 supercar", "answer": "V8-engine", "passage": "\"Supercars Championship\"\nTo ensure parity between each make of car, many control components are utilised. All cars must use a 5.0-litre, naturally aspirated V8 engine. Originally only for Ford Falcon (FG X)s and Holden Commodore (ZB)s, the New Generation V8 Supercar regulations, introduced in 2013, opened up the series to more manufacturers. Nissan were the first new manufacturer to commit to the series with four Nissan Altima L33s followed briefly by Erebus Motorsport with three Mercedes-Benz E63 AMGs. Volvo entered the series in 2014 with Garry Rogers Motorsport racing the Volvo S60. The concept of a formula centred around V8-engined Fords and"} +{"qid": "test2612", "pid": "19184569", "query": "when did the international space station go into space", "answer": "1998", "passage": "\"International Space Station Multilateral Coordination Board\"\nInternational Space Station Multilateral Coordination Board The International Space Station Multilateral Coordination Board (MCB) is the highest-level cooperative body in the International Space Station programme. It was set up under the Memoranda of Understanding for the ISS, originally signed in 1998. The MCB has members from each of the cooperating ISS partner organizations: NASA, Roscosmos, JAXA, the European Space Agency, and the Canadian Space Agency. The MCB sets policies for the ISS, including approving policies such as the Code of Conduct for International Space Station Crews that implement the International Space Station Intergovernmental Agreement that, together with the MOUs, provides"} +{"qid": "test2612", "pid": "19184570", "query": "when did the international space station go into space", "answer": "1998", "passage": "\"International Space Station Multilateral Coordination Board\"\nthe legal basis for the ISS program. International Space Station Multilateral Coordination Board The International Space Station Multilateral Coordination Board (MCB) is the highest-level cooperative body in the International Space Station programme. It was set up under the Memoranda of Understanding for the ISS, originally signed in 1998. The MCB has members from each of the cooperating ISS partner organizations: NASA, Roscosmos, JAXA, the European Space Agency, and the Canadian Space Agency. The MCB sets policies for the ISS, including approving policies such as the Code of Conduct for International Space Station Crews that implement the International Space Station Intergovernmental"} +{"qid": "test2615", "pid": "319054", "query": "what are the 4 types of nitrogenous bases", "answer": "cytosine (C)", "passage": "Pyrimidine\nuniverse, may have been formed in red giants or in interstellar dust and gas clouds. Pyrimidine Pyrimidine is an aromatic heterocyclic organic compound similar to pyridine. One of the three diazines (six-membered heterocyclics with two nitrogen atoms in the ring), it has the nitrogen atoms at positions 1 and 3 in the ring. The other diazines are pyrazine (nitrogen atoms at the 1 and 4 positions) and pyridazine (nitrogen atoms at the 1 and 2 positions). In nucleic acids, three types of nucleobases are pyrimidine derivatives: cytosine (C), thymine (T), and uracil (U). The pyrimidine ring system has wide occurrence"} +{"qid": "test2615", "pid": "319044", "query": "what are the 4 types of nitrogenous bases", "answer": "cytosine (C)", "passage": "Pyrimidine\nPyrimidine Pyrimidine is an aromatic heterocyclic organic compound similar to pyridine. One of the three diazines (six-membered heterocyclics with two nitrogen atoms in the ring), it has the nitrogen atoms at positions 1 and 3 in the ring. The other diazines are pyrazine (nitrogen atoms at the 1 and 4 positions) and pyridazine (nitrogen atoms at the 1 and 2 positions). In nucleic acids, three types of nucleobases are pyrimidine derivatives: cytosine (C), thymine (T), and uracil (U). The pyrimidine ring system has wide occurrence in nature as substituted and ring fused compounds and derivatives, including the nucleotides cytosine, thymine"} +{"qid": "test2616", "pid": "10134615", "query": "what are the toll roads called in mexico", "answer": "autopistas", "passage": "\"Transportation in Mexico\"\ntrucks. The expressways are, for the most part, toll roads or \"\"autopistas de cuota\"\". Non-toll roads are referred to as \"\"carreteras libres\"\" (free-roads). Most toll expressways have emergency telephone booths, water wells and emergency braking ramps at short intervals. The toll usually includes a \"\"travelers' insurance\"\" (\"\"seguro del viajero\"\") should an accident occur within the freeway. The tolls expressways are, on average, among the most expensive in the world, according to a comparative study realized in 2004 by the Chamber of Deputies. The most traveled freeways are those that link the three most populous cities in Mexico—Mexico City, Guadalajara and"} +{"qid": "test2617", "pid": "1917703", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Unsaturated fat\"\nequivalent amount of saturated fat. The greater the degree of unsaturation in a fatty acid (i.e., the more double bonds in the fatty acid) the more vulnerable it is to lipid peroxidation (rancidity). Antioxidants can protect unsaturated fat from lipid peroxidation. Double bonds may be in either a \"\"cis\"\" or a \"\"trans\"\" isomer, depending on the geometry of the double bond. In the \"\"cis\"\" isomer, hydrogen atoms are on the same side of the double bond; whereas in the \"\"trans\"\" isomer, they are on opposite sides of the double bond (see trans fat). Saturated fats are useful in processed foods"} +{"qid": "test2617", "pid": "1917702", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Unsaturated fat\"\nUnsaturated fat An unsaturated fat is a fat or fatty acid in which there is at least one double bond within the fatty acid chain. A fatty acid chain is monounsaturated if it contains one double bond, and polyunsaturated if it contains more than one double bond. Where double bonds are formed, hydrogen atoms are subtracted from the carbon chain. Thus, a saturated fat has no double bonds, has the maximum number of hydrogens bonded to the carbons, and therefore is \"\"saturated\"\" with hydrogen atoms. In cellular metabolism, unsaturated fat molecules contain somewhat less energy (i.e., fewer calories) than an"} +{"qid": "test2617", "pid": "1914048", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Trans fat\"\nor \"\"unsaturated\"\" based on the presence of double bonds in its structure. If the molecule contains no double bonds, it is said to be saturated; otherwise, it is unsaturated to some degree. Only unsaturated fats can be \"\"trans\"\" \"\"or\"\" \"\"cis\"\" fat, since only a double bond can be locked to these orientations. Saturated fatty acids are never called \"\"trans fats\"\" because they have no double bonds. Thus, all their bonds are freely rotatable. Other types of fatty acids, such as crepenynic acid, which contains a triple bond, are rare and of no nutritional significance. Carbon atoms are tetravalent, forming four"} +{"qid": "test2617", "pid": "13011477", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Lipid bilayer phase behavior\"\nlipid by ten degrees Celsius or less, but adding a single double bond can decrease the transition temperature by fifty degrees or more (see table). An example of this effect can be noted in everyday life as butter, which has a large percentage saturated fats, is solid at room temperature while vegetable oil, which is mostly unsaturated, is liquid. Bilayers need not be composed of a single type of lipid and, in fact, most natural membranes are a complex mixture of different lipid molecules. Such mixtures often exhibit properties intermediate to their components, but are also capable of a phenomenon"} +{"qid": "test2617", "pid": "1917705", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Unsaturated fat\"\ngeometry of the cis double bond induces a bend in the molecule, thereby precluding rigid formations (see links above for drawings that illustrate this). Natural sources of fatty acids (see above) are rich in the cis isomer. Although polyunsaturated fats are protective against cardiac arrhythmias, a study of post-menopauseal women with a relatively low fat intake showed that polyunsaturated fat is positively associated with progression of coronary atherosclerosis, whereas monounsaturated fat is not. This probably is an indication of the greater vulnerability of polyunsaturated fats to lipid peroxidation, against which vitamin E has been shown to be protective. Examples of"} +{"qid": "test2617", "pid": "1914035", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Trans fat\"\nTrans fat Trans fat, also called unsaturated fatty acids or trans fatty acids, are a type of unsaturated fat that occur in small amounts in nature, but became widely produced industrially from vegetable fats starting in the 1950s for use in margarine, snack food, packaged baked goods, and for frying fast food. Trans fat has been shown to be associated consistently, in an intake-dependent way, with increased risk of coronary artery disease, a leading cause of death in Western nations. Fats contain long hydrocarbon chains, which can be either unsaturated, i.e., have double bonds, or saturated, i.e., have no double"} +{"qid": "test2617", "pid": "3152497", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Saturation (chemistry)\"\nfatty acid constituents of fats, which can be either saturated or unsaturated, depending on whether the constituent fatty acids contain carbon-carbon double bonds. Tallow consists mainly of triglycerides (fats), whose major constituents are derived from the saturated stearic and monounsaturated oleic acids. Many vegetable oils contain fatty acids with one (\"\"monounsaturated\"\") or more (\"\"polyunsaturated\"\") double bonds in them. In organometallic chemistry, an unsaturated complex has fewer than 18 valence electrons and thus is susceptible to oxidative addition or coordination of an additional ligand. Unsaturation is characteristic of many catalysts because it is usually a requirement for substrate activation. In contrast,"} +{"qid": "test2617", "pid": "1917704", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Unsaturated fat\"\nbecause saturated fats are less vulnerable to rancidity and usually more solid at room temperature than unsaturated fats. Unsaturated chains have a lower melting point, hence these molecules increase the fluidity of cell membranes. Although both monounsaturated and polyunsaturated fats can replace saturated fat in the diet, trans unsaturated fats should not. Replacing saturated fats with unsaturated fats helps lower levels of total cholesterol and LDL cholesterol in the blood. Trans unsaturated fats are an exception because the double bond stereochemistry predisposes the carbon chains to assume a linear conformation, which conforms to rigid packing as in plaque formation. The"} +{"qid": "test2617", "pid": "9711930", "query": "unsaturated fats are comprised of lipids that contain", "answer": "double bond", "passage": "\"Membrane lipid\"\nin higher plant chloroplast thylakoid membranes; liposomal structures formed by total lipid extract of thylakoid membranes have been found sensitive to sucrose as it turns bilayers into micellar structures. The fatty acids in phospho- and glycolipids usually contain an even number, typically between 14 and 24, of carbon atoms, with 16- and 18-carbon being the most common. FAs may be saturated or unsaturated, with the configuration of the double bonds nearly always \"\"cis\"\". The length and the degree of unsaturation of FAs chains have a profound effect on membranes' fluidity. Plant \"\"thylakoid membranes\"\" maintain high fluidity, even at relatively cold"} +{"qid": "test2618", "pid": "8512803", "query": "where did they film ghosts of girlfriends past", "answer": "Massachusetts", "passage": "\"Castle Hill (Ipswich, Massachusetts)\"\nfeatures Castle Hill. It is the main location at which nearly all scenes were filmed. The beginning scene shows the children walking towards the front of the house after being dropped off by the bus. In reality, the bus stop is at the end of the rolling green, where the lawn ends and the ocean begins. The 2009 movie \"\"Ghosts of Girlfriends Past\"\" was predominantly filmed inside and outside the mansion. Several fake windows, statues, and columns were added to the building, in addition to a circular driveway added to the front. These fiberglass additions have now been removed, along"} +{"qid": "test262", "pid": "18391995", "query": "fast & furious 8 release date in india", "answer": "April 12, 2017", "passage": "\"The Fate of the Furious\"\ninternationally, and received a day-and-date release across major markets such as Australia, the United Kingdom, China, and India, beginning on April 12, 2017. The film was released day-and-date in 1,074 IMAX screens around the world, making it the widest day-and-date opening in IMAX history. \"\"The Fate of the Furious\"\" was released on 4K, Blu-ray, DVD and Digital HD on July 11, 2017. \"\"The Fate of the Furious\"\" grossed $226 million in the United States and Canada and $1.010 billion in other territories for a worldwide total of $1.236 billion, against a production budget of $250 million ($350 million including marketing"} +{"qid": "test2620", "pid": "4291515", "query": "who had created the second bank of the united states", "answer": "James Madison", "passage": "\"History of central banking in the United States\"\nas an engine for speculation, financial manipulation, and corruption. In 1811 its twenty-year charter expired and was not renewed by Congress. Absent the federally chartered bank, the next several years witnessed a proliferation of federally issued Treasury Notes to create credit as the government struggled to finance the War of 1812; a suspension of specie payment by most banks soon followed as well. After five years, the federal government chartered its successor, the Second Bank of the United States (1816–1836). James Madison signed the charter with the intention of stopping runaway inflation that had plagued the country during the five-year"} +{"qid": "test2621", "pid": "13188355", "query": "when were 7 books removed from the bible", "answer": "1546", "passage": "\"Christian biblical canons\"\namong his followers. However, these books are ordered last in the German-language Luther Bible to this day. Luther also removed the so-called \"\"deuterocanonical\"\" books from the Old Testament of his translation of the Bible, placing them in the \"\"Apocrypha, that are books which are not considered equal to the Holy Scriptures, but are useful and good to read\"\". In light of Martin Luther's demands, the Council of Trent on 8 April 1546 approved the present Catholic Bible canon, which includes the Deuterocanonical Books, and the decision was confirmed by an anathema by vote (24 yea, 15 nay, 16 abstain). The"} +{"qid": "test2622", "pid": "558595", "query": "who plays voldemort in harry potter and the philosopher's stone", "answer": "Ian Hart", "passage": "\"Lord Voldemort\"\nPart 2\"\". Several actors have portrayed him in his varying incarnations and ages. In \"\"Harry Potter and the Philosopher's Stone\"\", Voldemort's manifestation is as a face on the back of Quirrell's head, an effect achieved by computer generated imagery. Ian Hart, the actor who played Quirrell in the same film, provided the voice and the facial source for this character. Voldemort also appears in a scene in the Forbidden Forest where he is seen drinking the blood of a unicorn. As Voldemort's face was altered enough by CG work, and Hart's voice was affected enough, there was no confusion by"} +{"qid": "test2625", "pid": "284561", "query": "who has the most super bowls in nfl history", "answer": "Pittsburgh Steelers", "passage": "\"National Football League\"\nthe Green Bay Packers with thirteen (nine NFL titles before the Super Bowl era, and four Super Bowl championships afterwards); the team with the most Super Bowl championships is the Pittsburgh Steelers with six. The current NFL champions are the Philadelphia Eagles, who defeated the New England Patriots in Super Bowl LII, their first Super Bowl championship after winning three NFL titles before the Super Bowl era. On August 20, 1920, a meeting was held by representatives of the Akron Pros, Canton Bulldogs, Cleveland Indians, and Dayton Triangles at the Jordan and Hupmobile auto showroom in Canton, Ohio. This meeting"} +{"qid": "test2626", "pid": "2260404", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Institutional racism\"\nupon all Chinese people immigrating to Canada. When the 1885 act failed to deter Chinese immigration, the Canadian government then passed the Chinese Immigration Act, 1900, increasing the head tax to $100, and, upon that act failing, passed the Chinese Immigration Act, 1904 increasing the head tax (landing fee) to $500, equivalent to $8000 in 2003 – when compared to the head tax – Right of Landing Fee and Right of Permanent Residence Fee – of $975 per person, paid by new immigrants in 1995–2005 decade, which then was reduced to $490 in 2006. The Chinese Immigration Act, 1923, better"} +{"qid": "test2626", "pid": "3753402", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Chinese Immigration Act, 1923\"\nChinese Immigration Act, 1923 The Chinese Immigration Act, 1923, known today as the Chinese Exclusion Act, (the \"\"Act\"\") was an act passed by the Parliament of Canada, banning most forms of Chinese immigration to Canada. Immigration from most countries was controlled or restricted in some way, but only the Chinese were so completely prohibited from immigrating. Before 1923, Chinese immigration was heavily controlled by the \"\"Chinese Immigration Act\"\" of 1885, which imposed a hefty head tax on all immigrants from China. After various members of the federal and some provincial governments (especially British Columbia) put pressure on the federal government"} +{"qid": "test2626", "pid": "3753406", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Chinese Immigration Act, 1923\"\nof the City of Vancouver Gregor Robertson issued a formal public apology. https://www.cbc.ca/news/canada/british-columbia/city-of-vancouver-formal-apology-historical-discrimination-1.4630905 The \"\"Act\"\" and its legacy have been the subject of at least three documentary films: Kenda Gee and Tom Radford's \"\"\"\" (2011-2012), William Dere and Malcolm Guy's \"\"Moving the Mountain\"\" (1993) and Karen Cho's \"\"In the Shadow of Gold Mountain\"\" (2004). Chinese Immigration Act, 1923 The Chinese Immigration Act, 1923, known today as the Chinese Exclusion Act, (the \"\"Act\"\") was an act passed by the Parliament of Canada, banning most forms of Chinese immigration to Canada. Immigration from most countries was controlled or restricted in some way,"} +{"qid": "test2626", "pid": "3753403", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Chinese Immigration Act, 1923\"\nto discourage Chinese immigration, the \"\"Chinese Immigration Act\"\" was passed. It went into effect on July 1, 1923. The \"\"Act\"\" banned Chinese immigrants from entering Canada except those under the following titles: The \"\"Act\"\" did not only apply to Chinese from China, but to ethnic Chinese with British nationality as well. Since Dominion Day coincided with the enforcement of the \"\"Chinese Immigration Act\"\", Chinese-Canadians at the time referred to the anniversary of Confederation as \"\"Humiliation Day\"\" and refused to take any part in the celebration. Because Canada became a signatory of the United Nations Charter of Human Rights following World"} +{"qid": "test2626", "pid": "1420707", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Tong (organization)\"\nwhich with criminal backgrounds, or outcasts who had been expelled from their associations. Notably, many of the traditional \"\"tong\"\" activities, such as gambling, were legal in China, but not in North America. The early Chinese populations in the United States and Canada were overwhelmingly male, a situation that worsened when sex-restrictive immigration laws were passed in 1882 in the U.S. and 1923 in Canada, respectively. (see Chinese Exclusion Act and Chinese Immigration Act, 1923) For this reason tongs participated heavily in importing women from China both for marriage and to serve as prostitutes. Many of these women did not come"} +{"qid": "test2626", "pid": "2094889", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"White nationalism\"\nParliament of Canada passed the Chinese Immigration Act of 1923 to bar all Chinese from coming to Canada with the exception of diplomats, students, and those granted special permission by the Minister of Immigration. Chinese immigration to Canada had already been heavily regulated by the Chinese Immigration Act of 1885 which required Chinese immigrants to pay a fifty dollar fee to enter the country (the fee was increased to one hundred dollars in 1900 and to five hundred dollars in 1903). Groups such as the Asiatic Exclusion League, which had formed in Vancouver, British Columbia on 12 August 1907 under"} +{"qid": "test2626", "pid": "2762978", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"History of British Columbia\"\nimmigrant groups arrived in British Columbia and today, Vancouver is the second most ethnically diverse city in Canada, only behind Toronto. In 1886, a head tax was imposed on the Chinese, which reached as much as $500 per person to enter Canada by 1904. By 1923 the government passed the Chinese Immigration Act, which prohibited all Chinese immigration until 1947. Sikhs had to face an amended Immigration Act in 1908 that required Sikhs to have $200 on arrival in Canada, and immigration would be allowed only if the passenger had arrived by continuous journey from India, which was impossible. Perhaps"} +{"qid": "test2626", "pid": "7316844", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Immigration to Canada\"\nthe introduction of the first Chinese Head Tax legislation passed in 1885, which was in response to a growing number of Chinese working on the Canadian Pacific Railway. Subsequent increases in the head tax in 1900 and 1903 limited Chinese entrants to Canada. In 1907 a major riot against Asians took place in Vancouver, BC. In 1923 the government passed the Chinese Immigration Act which excluded Chinese from entering Canada altogether between 1923 and 1947. For discriminating against Chinese immigrants in past periods, an official government apology and compensations were announced on 22 June 2006. The term Canadian as a"} +{"qid": "test2626", "pid": "3501089", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Chinese head tax in Canada\"\nChinese head tax in Canada The Chinese head tax was a fixed fee charged to each Chinese person entering Canada. The head tax was first levied after the Canadian parliament passed the Chinese Immigration Act of 1885 and was meant to discourage Chinese people from entering Canada after the completion of the Canadian Pacific Railway (CPR). The tax was abolished by the Chinese Immigration Act of 1923, which stopped all Chinese immigration except for that of business people, clergy, educators, students, and other categories. Through the mid- to late nineteenth century, some 15,000 labourers were brought from China to do"} +{"qid": "test2626", "pid": "12509039", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Human rights in Canada\"\nkept in twenty-four internment camps and related work sites – also known, at the time, as concentration camps. Many were released in 1916 to help with the mounting labour shortage. The Chinese head tax was a fixed fee charged to each Chinese person entering Canada. The head tax was first levied after the Canadian parliament passed the Chinese Immigration Act of 1885 and was meant to discourage Chinese people from entering Canada after the completion of the Canadian Pacific Railway. The tax was abolished by the Chinese Immigration Act of 1923, which stopped Chinese immigration altogether, except for business people,"} +{"qid": "test2626", "pid": "7774862", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Post-Confederation Canada (1867–1914)\"\nChinese- and Japanese-Canadian businesses, but met stiff resistance from the Japanese community. By 1923 the dominion government passed the Chinese Immigration Act, which prohibited all Chinese immigration until it was repealed in 1947. Sikhs had to face an amended Immigration Act in 1908 that required Sikhs to have $200 on arrival in Canada, and immigration would be allowed only if the passenger had arrived by continuous journey from India, which was impossible. In 1914 the \"\"Komagata Maru\"\" arrived in Vancouver with 376 Sikhs aboard, but only 24 were admitted. The Japanese in 1942 were rounded up and sent to inland"} +{"qid": "test2626", "pid": "9779976", "query": "when was the immigration act passed in canada", "answer": "1923", "passage": "\"Asian Canadians\"\nAct of 1923, which banned all Chinese immigration, and led to immigration restrictions for all East Asians. In 1947, the act was repealed. During and after the Vietnam War, a large wave of Vietnamese refugees began arriving in Canada. The Canadian Parliament created the Asia Pacific Foundation of Canada in 1985 to better address issues surrounding Canada-Asia relations, including trade, citizenship and immigration. When Hong Kong reverted to mainland Chinese rule, people emigrated and found new homes in Canada. In recent decades, a large number of people have come to Canada from India and other South Asian countries. As of"} +{"qid": "test2627", "pid": "5280966", "query": "name the cell which is attached to the lateral side of sieve tube", "answer": "sieve tube elements", "passage": "\"Sieve tube element\"\nsieve tube elements. The companion cells also allow for bidirectional flow. While sieve tube members are responsible for a lot of the signaling necessary for the plant's organs, only some proteins are active within the sieve tubes. This is due to the fact that sieve tube members do not have ribosomes to synthesize protein as this makes it harder to determine which active proteins are specifically related to the sieve tube elements. Sieve tube members and companion cells are connected through plasmodesmata. Plasmodesmata consists of channels between cell walls of adjacent plant cells for transport and cell to cell recognition."} +{"qid": "test2627", "pid": "5280969", "query": "name the cell which is attached to the lateral side of sieve tube", "answer": "sieve tube elements", "passage": "\"Sieve tube element\"\ntubes. The major difference between sieve cells and sieve tube members is the lack of sieve plates in sieve cells. They have a very narrow diameter and tend to be longer in length than sieve tube elements as they are generally associated with albuminous cells. Similar to how Sieve Tube members are associated with companion cells, sieve cells are flanked with albuminous cells in order to aid in transporting organic material. Albuminous cells have long, unspecialized areas with ends that overlap with those of other sieve cells and contain nutrients and store food in order to nourish tissues. They enable"} +{"qid": "test2627", "pid": "759262", "query": "name the cell which is attached to the lateral side of sieve tube", "answer": "sieve tube elements", "passage": "\"Vascular plant\"\nand transported throughout the plant by the xylem. Organic compounds such as sucrose produced by photosynthesis in leaves are distributed by the phloem sieve tube elements. The xylem consists of vessels in flowering plants and tracheids in other vascular plants, which are dead hard-walled hollow cells arranged to form files of tubes that function in water transport. A tracheid cell wall usually contains the polymer lignin. The phloem however consists of living cells called sieve-tube members. Between the sieve-tube members are sieve plates, which have pores to allow molecules to pass through. Sieve-tube members lack such organs as nuclei or"} +{"qid": "test2627", "pid": "325268", "query": "name the cell which is attached to the lateral side of sieve tube", "answer": "sieve tube elements", "passage": "\"Plant cell\"\nthe intimately associated companion cells, together with parenchyma cells, phloem fibres and sclereids. Sieve tubes are joined end-to-end with perforate end-plates between known as \"\"sieve plates\"\", which allow transport of photosynthate between the sieve elements. The sieve tube elements lack nuclei and ribosomes, and their metabolism and functions are regulated by the adjacent nucleate companion cells. The companion cells, connected to the sieve tubes via plasmodesmata, are responsible for loading the phloem with sugars. The bryophytes lack phloem, but moss sporophytes have a simpler tissue with analogous function known as the leptome. The plant epidermis is specialised tissue, composed of"} +{"qid": "test2627", "pid": "77588", "query": "name the cell which is attached to the lateral side of sieve tube", "answer": "sieve tube elements", "passage": "\"Cell nucleus\"\nof differentiation from an erythroblast to a reticulocyte, which is the immediate precursor of the mature erythrocyte. The presence of mutagens may induce the release of some immature \"\"micronucleated\"\" erythrocytes into the bloodstream. Anucleated cells can also arise from flawed cell division in which one daughter lacks a nucleus and the other has two nuclei. In flowering plants, this condition occurs in sieve tube elements. Multinucleated cells contain multiple nuclei. Most acantharean species of protozoa and some fungi in mycorrhizae have naturally multinucleated cells. Other examples include the intestinal parasites in the genus \"\"Giardia\"\", which have two nuclei per cell."} +{"qid": "test2629", "pid": "2080914", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Symbolic interactionism\"\n& Fuller, C. (2015). Symbolic interactionism. Sociopedia. doi:10.1177/205684601561 40.Handberg, Charlotte, et al. “Revisiting Symbolic Interactionism as a Theoretical Framework Beyond the Grounded Theory Tradition.” Qualitative Health Research, vol. 25, no. 8, Aug. 2015, pp. 1023–1032, doi:10.1177/1049732314554231. Symbolic interactionism Symbolic interactionism is a sociological theory that develops from practical considerations and alludes to people's particular utilization of dialect to make images and normal implications, for deduction and correspondence with others. In other words, it is a frame of reference to better understand how individuals interact with one another to create symbolic worlds, and in return, how these worlds shape individual behaviors."} +{"qid": "test2629", "pid": "2080905", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "role theory", "passage": "\"Symbolic interactionism\"\nmakes it impossible to test interactionism in the manner that a specific theoretical claim about the relationship between specific variables in a given context allows. Unlike the symbolic interactionist framework, the many theories derived from symbolic interactionism, such as role theory and the versions of identity theory developed by Sheldon Stryker, and Peter Burke and colleagues, clearly define concepts and the relationships between them in a given context, thus allowing for the opportunity to develop and test hypotheses. Further, especially among Blumerian processual interactionists, a great number of very useful conceptualizations have been developed and applied in a very wide"} +{"qid": "test2629", "pid": "2631045", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "Interactionism\nInteractionism In sociology, interactionism is a theoretical perspective that derives social processes (such as conflict, cooperation, identity formation) from human interaction. It is the study of how individuals shape society and are shaped by society through meaning that arises in interactions. Interactionist theory has grown in the latter half of the twentieth century and has become one of the dominant sociological perspectives in the world today. George Herbert Mead, as an advocate of pragmatism and the subjectivity of social reality, is considered a leader in the development of interactionism. Herbert Blumer expanded on Mead's work and coined the term \"\"symbolic"} +{"qid": "test2629", "pid": "2080884", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Symbolic interactionism\"\nwho trained a generation of the best minds in their field. Strangely, he never set forth his wide-ranging ideas in a book or systematic treatise. After his death in 1931, his students pulled together class notes and conversations with their mentor and published \"\"Mind, Self and Society\"\" in his name. It is a common misconception that John Dewey was the leader of this sociological theory; according to \"\"The Handbook of Symbolic Interactionism,\"\" Mead was undoubtedly the individual who \"\"transformed the inner structure of the theory, moving it to a higher level of theoretical complexity\"\". \"\"Mind, Self and Society\"\" is the"} +{"qid": "test2629", "pid": "8054864", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Sociology of law\"\na small field. Very few empirical sociological studies are published each year. Nevertheless, there have been some excellent studies, representing a variety of sociological traditions as well as some major theoretical contributions. The two most popular approaches during the 1960s and 1970s were interactionism and Marxism. Symbolic interactionism and Marxism Interactionism had become popular in America in the 1950s and 1960s as a politically radical alternative to structural-functionalism. Instead of viewing society as a system regulating and controlling the actions of individuals, interactionists argued that sociology should address what people were doing in particular situations, and how they understood their"} +{"qid": "test2629", "pid": "2080907", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Symbolic interactionism\"\nof interactionism heavily influenced by this approach (sometimes referred to as the \"\"Indiana School\"\" of symbolic interactionism), including the works of key scholars in sociology and psychology using different methods and theories applying a structural version of interactionism that are represented in a 2003 collection edited by Burke \"\"et al\"\". Another well-known structural variation of symbolic interactionism that applies quantitative methods is Manford H. Kuhn's formulation which is often referred to in sociological literature as the \"\"Iowa School\"\". \"\"Negotiated order theory\"\" also applies a structural approach. Language is viewed as the source of all meaning. Blumer illuminates several key features"} +{"qid": "test2629", "pid": "9052364", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Significant symbols\"\nwas from Wundt that Mead gained an understanding how the gesture is involved in social interaction. This sociological term \"\"significant symbols\"\" is the basis for symbolic interactionism, which attempts to define the self. Language, in Mead's view, is communication through significant symbols. Physical objects can be significant symbols, but vocal gestures, especially language, are the crucial significant symbols. Language brings out the same response in both the speaker and hearer. Language is the highest form of communication, a mature development of the gesture situation; therefore, the major tool of the interaction from which minds and selves emerge. Language is important"} +{"qid": "test2629", "pid": "2080906", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Symbolic interactionism\"\nrange of social contexts, types of populations, types of behaviors, and cultures and subcultures. Symbolic interactionism is often related and connected with social structure. This concept suggests that symbolic interactionism is a construction of people's social reality. It also implies that from a realistic point of view, the interpretations that are being made will not make much difference. When the reality of a situation is defined, the situation becomes a meaningful reality. This includes methodological criticisms, and critical sociological issues. A number of symbolic interactionists have addressed these topics, the best known being Stryker's structural symbolic interactionism and the formulations"} +{"qid": "test2629", "pid": "12287975", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "Sociology\nRandall Collins' well-cited survey of sociological theory he retroactively labels various theorists as belonging to four theoretical traditions: Functionalism, Conflict, Symbolic Interactionism, and Utilitarianism. Modern sociological theory descends predominately from functionalist (Durkheim) and conflict-centred (Marx and Weber) accounts of social structure, as well as the symbolic interactionist tradition consisting of micro-scale structural (Simmel) and pragmatist (Mead, Cooley) theories of social interaction. Utilitarianism, also known as Rational Choice or Social Exchange, although often associated with economics, is an established tradition within sociological theory. Lastly, as argued by Raewyn Connell, a tradition that is often forgotten is that of Social Darwinism, which"} +{"qid": "test2629", "pid": "6696979", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Sociological theory\"\ntheory he retroactively labels various theorists as belonging to four theoretical traditions: functionalism, conflict, symbolic interactionism, and utilitarianism. Modern sociological theory descends predominately from functionalist (Durkheim) and conflict-centered (Marx and Weber) accounts of social structure, as well as the symbolic interactionist tradition consisting of micro-scale structural (Simmel) and pragmatist (Mead, Cooley) theories of social interaction. Utilitarianism, also known as \"\"rational choice\"\" or \"\"social exchange\"\", although often associated with economics, is an established tradition within sociological theory. Lastly, as argued by Raewyn Connell, a tradition that is often forgotten is that of social Darwinism, which brings the logic of Darwinian biological"} +{"qid": "test2629", "pid": "2080881", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "\"Symbolic interactionism\"\nSymbolic interactionism Symbolic interactionism is a sociological theory that develops from practical considerations and alludes to people's particular utilization of dialect to make images and normal implications, for deduction and correspondence with others. In other words, it is a frame of reference to better understand how individuals interact with one another to create symbolic worlds, and in return, how these worlds shape individual behaviors. It is a framework that helps understand how society is preserved and created through repeated interactions between individuals. The interpretation process that occurs between interactions help create and recreate meaning. It is the shared understanding and"} +{"qid": "test2629", "pid": "12287979", "query": "symbolic interactionism is the basis for which theoretical model", "answer": "sociological", "passage": "Sociology\nactors, human subjects).\"\" Functionalist theories emphasize \"\"cohesive systems\"\" and are often contrasted with \"\"conflict theories\"\", which critique the overarching socio-political system or emphasize the inequality between particular groups. The following quotes from Durkheim and Marx epitomize the political, as well as theoretical, disparities, between functionalist and conflict thought respectively: Symbolic interaction; often associated with Interactionism, Phenomenological sociology, Dramaturgy, Interpretivism, is a sociological tradition that places emphasis on subjective meanings and the empirical unfolding of social processes, generally accessed through micro-analysis. This tradition emerged in the \"\"Chicago School\"\" of the 1920s and 1930s, which prior to World War II \"\"had been"} +{"qid": "test2630", "pid": "4534571", "query": "who wrote the french declaration of the rights of man and of the citizen", "answer": "Lafayette", "passage": "\"Declaration of the Rights of Woman and of the Female Citizen\"\nattention to a set of feminist concerns that collectively reflected and influenced the aims of many French Revolution activists. The Declaration of the Rights of Man and of the Citizen was adopted in 1789 by the National Constituent Assembly (\"\"Assemblée nationale constituante\"\"), during the French revolution . Prepared and proposed by the marquis de Lafayette, the declaration asserted that all men \"\"are born and remain free and equal in rights\"\" and that these rights were universal. The Declaration of the Rights of Man and of the Citizen became a key human rights document and a classic formulation of the rights"} +{"qid": "test2630", "pid": "101358", "query": "who wrote the french declaration of the rights of man and of the citizen", "answer": "Lafayette", "passage": "\"Declaration of the Rights of Man and of the Citizen\"\nDeclaration of the Rights of Man and of the Citizen The Declaration of the Rights of Man and of the Citizen (), set by France's National Constituent Assembly in 1789, is a human civil rights document from the French Revolution. The Declaration was drafted by the Abbé Sieyès and the Marquis de Lafayette, in consultation with Thomas Jefferson. Influenced by the doctrine of \"\"natural right\"\", the rights of man are held to be universal: valid at all times and in every place, pertaining to human nature itself. It became the basis for a nation of free individuals protected equally by"} +{"qid": "test2630", "pid": "434520", "query": "who wrote the french declaration of the rights of man and of the citizen", "answer": "Lafayette", "passage": "\"United States Declaration of Independence\"\ndocuments\"\", wrote Pauline Maier, \"\"is there any evidence whatsoever that the Declaration of Independence lived in men's minds as a classic statement of American political principles.\"\" Many leaders of the French Revolution admired the Declaration of Independence but were also interested in the new American state constitutions. The inspiration and content of the French Declaration of the Rights of Man and Citizen (1789) emerged largely from the ideals of the American Revolution. Its key drafts were prepared by Lafayette, working closely in Paris with his friend Thomas Jefferson. It also borrowed language from George Mason's Virginia Declaration of Rights. The"} +{"qid": "test2630", "pid": "101360", "query": "who wrote the french declaration of the rights of man and of the citizen", "answer": "Honoré Mirabeau", "passage": "\"Declaration of the Rights of Man and of the Citizen\"\nthe document emerged largely from the ideals of the Enlightenment. The key drafts were prepared by Lafayette, working at times with his close friend Thomas Jefferson. In August 1789, Honoré Mirabeau played a central role in conceptualizing and drafting the Declaration of the Rights of Man and of the Citizen. The last article of the Declaration of the Rights of Man and the Citizen was adopted on the 26 of August 1789 by the National Constituent Assembly, during the period of the French Revolution, as the first step toward writing a constitution for France. Inspired by the Enlightenment, the original"} +{"qid": "test2631", "pid": "5529063", "query": "who kidnapped ben in the deep end of the ocean", "answer": "celebrity alumna Cecil Lockhart", "passage": "\"The Deep End of the Ocean\"\nher husband and teenage son, who then says that he suspected the boy's true identity all along. The parents contact Detective Candy Bliss who pops in to offer wise, albeit often cryptic and conflicting, advice to Beth. It is learned that at the reunion in Chicago, the celebrity alumna Cecil Lockhart kidnapped Ben, renamed him Sam, and raised him as her own child until she was committed to a mental hospital, leaving Sam to be raised in a house only two blocks from the Cappadoras, by his adoptive father, the sensitive and intellectual George Karras. Ben was raised by a"} +{"qid": "test2632", "pid": "3093103", "query": "who wrote hit me baby one more time", "answer": "Max Martin", "passage": "\"Max Martin\"\nearlier work. Martin, Andreas Carlsson, and Rami Yacoub wrote Westlife's song \"\"I Need You\"\" for the first Westlife album \"\"Westlife\"\" (1999). Martin, Nick Jarl, Steve Mac, and Patric Jonsson wrote Westlife's song \"\"You Make Me Feel\"\" for their second album \"\"Coast to Coast\"\" (2000). Max Martin, Rami Yacoub, and Andreas Carlsson also wrote one of Westlife's hits, \"\"When You're Looking Like That\"\", for their second album \"\"Coast to Coast\"\" (2000). In 1998, Martin wrote and co-produced Spears' hit \"\"...Baby One More Time\"\" for her debut album of the same title. (The single had originally been offered to both the Backstreet"} +{"qid": "test2632", "pid": "3093104", "query": "who wrote hit me baby one more time", "answer": "Max Martin", "passage": "\"Max Martin\"\nBoys, who had turned it down, and TLC, who had passed because they were \"\"taking time off\"\".) The single remained Spears's best-selling single to date, and on VH1's \"\"100 Greatest Songs of the '90s\"\", it was ranked at number 7. That same year, Martin also co-wrote and co-produced the third single \"\"(You Drive Me) Crazy\"\". By 1999, the album \"\"...Baby One More Time\"\" had sold over 15 million copies in the U.S., certifying Diamond Status. Also, within a year of its release, \"\"...Baby One More Time\"\" had become the best-selling LP by a teenager in history, selling over 30 million"} +{"qid": "test2632", "pid": "38862", "query": "who wrote hit me baby one more time", "answer": "Max Martin", "passage": "\"...Baby One More Time (album)\"\nsong from Toni Braxton. Jive Records was interested and appointed the singer to work with producer Eric Foster White. After hearing the recorded material, Jive signed Spears to a multi-album deal. Spears traveled to Sweden to work with producers Max Martin, Denniz Pop, and Rami Yacoub, among others. Martin presented a track titled \"\"Hit Me Baby (One More Time)\"\" to Spears and her management, which had been rejected by girl group TLC. Spears later claimed that she felt excited when she heard it and knew it was going to be a hit record. Her debut album was completed in June"} +{"qid": "test2633", "pid": "2401072", "query": "where did remember the titans camp take place", "answer": "Gettysburg College", "passage": "\"Remember the Titans\"\ninitially refuses, but reconsiders after the white players pledge to boycott the team if he does not participate. Dismayed at the prospect of the students losing their chances at scholarships, Yoast changes his mind and takes up the position of defensive coordinator under Boone, to his daughter Sheryl's dismay. The black students have a meeting in the gymnasium in auditioning to play for the team until Boone arrives, but the meeting turns into a fiasco when Yoast and white students interrupt. On August 15, the players gather and journey to Gettysburg College, where their training camp takes place. As their"} +{"qid": "test2634", "pid": "2663258", "query": "who does the voice of amy on futurama", "answer": "Lauren Tom", "passage": "\"Amy Wong\"\nAmy Wong Amy Wong, voiced by Lauren Tom, is a main character from the Fox and Comedy Central television animated series \"\"Futurama\"\". She works as an intern at Planet Express (supposedly kept around because she shares Professor Farnsworth's blood type, and doesn't notice the Professor's tendency to send his crews on suicide missions). She is the ditzy, spoiled daughter of wealthy agriculturalist-industrialist Han Chinese rancher parents who raise buggalo on Mars. A graduate student for most of the series' run, in season six, she earns her Ph.D in Applied Physics from Mars University, earning her the title of Doctor. By"} +{"qid": "test2634", "pid": "1749184", "query": "who does the voice of amy on futurama", "answer": "Lauren Tom", "passage": "Futurama\nrole of Professor Farnsworth, using the voice he uses to perform Bender, and also auditioned for Bender using a different voice. DiMaggio described Bender's voice as a combination of a sloppy drunk, Slim Pickens and a character his college friend created named \"\"Charlie the sausage-lover\"\". Phil LaMarr voices Hermes Conrad, his son Dwight, Ethan Bubblegum Tate, and Reverend Preacherbot. Lauren Tom voiced Amy Wong, and Tress MacNeille voices Mom and various other characters. Maurice LaMarche voices Kif Kroker and several supporting characters. LaMarche won the Emmy Award for Outstanding Voice-Over Performance in 2011 for his performances as Lrrr and Orson"} +{"qid": "test2634", "pid": "15203149", "query": "who does the voice of amy on futurama", "answer": "Lauren Tom", "passage": "\"Möbius Dick (Futurama)\"\nthe chase for the whale, Leela tells Amy \"\"Negative, Sailor Moon\"\", an obvious reference to the anime series of the same name. Towards the end of the episode, Inez Wong says, \"\"My days of joy and luck are over. Guess I gotta quit that club.\"\" This is a reference to \"\"The Joy Luck Club\"\", a novel by Amy Tan about the mother-daughter relationships in a group of Chinese American Immigrant families. Voice actor Lauren Tom played the role of Lena St. Clair in the film adaptation. When the ship enters the Bermuda Tetrahedron, Leela mentions \"\"Tickle Me Elmo's Fire\"\", a"} +{"qid": "test2634", "pid": "3147241", "query": "who does the voice of amy on futurama", "answer": "Lauren Tom", "passage": "\"Lauren Tom\"\nregular roles on \"\"King of the Hill\"\", where she voiced Minh and Connie Souphanousinphone and later \"\"Futurama\"\", where she voices Amy and Inez Wong. Since first playing the character on stage in the 1983 Doonesbury musical, Tom has periodically voiced the character Honey Huan in media related to Doonesbury, most notably in a series of animated shorts satirizing the 2000 U.S. presidential election. She has also lent her voice to \"\"All Grown Up!\"\", \"\"Rocket Power\"\", \"\"Max Steel\"\", \"\"Handy Manny\"\" as Mrs. Lee and Nelson, \"\"Samurai Jack\"\", \"\"Johnny Bravo\"\", \"\"Justice League Unlimited\"\", \"\"Kim Possible\"\" and \"\"Legion of Super Heroes\"\". She has"} +{"qid": "test2634", "pid": "3147236", "query": "who does the voice of amy on futurama", "answer": "Lauren Tom", "passage": "\"Lauren Tom\"\nLauren Tom Lauren Tom (born August 4, 1961) is an American actress and voice actress. Her roles include Lena St. Clair in \"\"The Joy Luck Club\"\", Julie in the NBC sitcom \"\"Friends\"\", Dot in the final season of \"\"Grace Under Fire\"\", and the voices for both mother and daughter characters on three animated TV comedy series: on \"\"Futurama\"\" she voiced Amy Wong and her mother Inez, on \"\"King of the Hill\"\" as Minh and Connie Souphanousinphone. She portrays Celia Mack in the Disney Channel series \"\"Andi Mack\"\". Tom was born in the Chicago suburb of Highland Park, Illinois, the daughter"} +{"qid": "test2635", "pid": "18921348", "query": "when does the next season of wynonna earp start", "answer": "2018", "passage": "\"Wynonna Earp (TV series)\"\n\"\"Wynonna Earp\"\"'s passionate fan base (nicknamed \"\"Earpers\"\") with gaining the renewal. Season 3 debuted with a special preview on July 16, before its official premiere on Syfy and Space on July 20, 2018. On July 21, 2018, the renewal by Syfy and Space for a fourth season was announced at SDCC. The season will comprise 12 episodes and is scheduled to premiere in 2019. Wynonna Earp, the great-great-granddaughter of legendary lawman Wyatt Earp, battles revenants, the reincarnated outlaws that Wyatt killed. She also fights other supernatural beings that inhabit the Ghost River Triangle, a cursed territory near the Canadian Rockies"} +{"qid": "test2635", "pid": "18921357", "query": "when does the next season of wynonna earp start", "answer": "2018", "passage": "\"Wynonna Earp (TV series)\"\nand Space. The first episode of the season was released as a special broadcast by Syfy on July 16, 2018, at 11 p.m. Eastern, in advance of the season premiere. \"\"Wynonna Earp\"\" premiered in the United Kingdom on Spike on July 29, 2016, at 9:00 p.m. The series premiered in Australia on Spike on February 5, 2017. In the UK, Season 2 premiered on Spike on June 13, 2017, at 10:00 p.m. Season 3 premiered on 5Spike on July 27, 2018, at 10:00 p.m. The series is distributed internationally on Netflix. \"\"Wynonna Earp\"\" became available on Amazon Video as video"} +{"qid": "test2635", "pid": "18921355", "query": "when does the next season of wynonna earp start", "answer": "2018", "passage": "\"Wynonna Earp (TV series)\"\nseason was released on April 1, 2017, and the trailer released officially by IGN on May 19, 2017. Syfy released the poster for the season on May 24, 2017. Season 2 premiered on June 9, 2017, on Syfy and Space. Filming of Season 3 began January 15, 2018, and wrapped on May 7, 2018. On February 5, 2018, the series announced the casting of Megan Follows in the role of Michelle Earp, the mother of Wynonna Earp. In March 2018, Syfy and Space announced that Zoie Palmer had joined the series as a guest star in the role of Jolene;"} +{"qid": "test2635", "pid": "18921347", "query": "when does the next season of wynonna earp start", "answer": "2018", "passage": "\"Wynonna Earp (TV series)\"\nCanada, \"\"Wynonna Earp\"\" moved from CHCH-DT to Space effective April 15, 2017. In anticipation of the premiere of Season 2, Space began airing Season 1 on the same date with a special double-episode series debut. Season 2 premiered simultaneously on Syfy and Space on June 9, 2017. On July 22, 2017, David Ozer, president of IDW Entertainment, announced at the show's SDCC panel that the series had been renewed for a third season with the premiere scheduled for 2018. Space announced on the same day that it had ordered 12 episodes for a third season, together with Syfy. Andras credited"} +{"qid": "test2637", "pid": "14315646", "query": "who plays the coach in old spice commercial", "answer": "Isaiah Amir Mustafa", "passage": "\"Isaiah Mustafa\"\npursue his post-restaurateur goal of becoming an actor. Mustafa had expressed interest in playing comic book superhero Luke Cage, and appeared as Cage in a Marvel Comics web short, styled after his Old Spice commercials. Isaiah Mustafa Isaiah Amir Mustafa (born February 11, 1974) is an American actor and former football wide receiver. Mustafa is widely known as the main character in the series of Old Spice television commercials, The Man Your Man Could Smell Like. He is also known for portraying Luke Garroway on Freeform's fantasy series \"\"Shadowhunters\"\". Mustafa was born in Portland, Oregon to Shahidah Mustafa-Davis and John"} +{"qid": "test2639", "pid": "2209117", "query": "where does the movie road to perdition take place", "answer": "Chicago", "passage": "\"Road to Perdition\"\nRoad to Perdition Road to Perdition is a 2002 American crime film directed by Sam Mendes. The screenplay was adapted by David Self from the graphic novel of the same name by Max Allan Collins. The film stars Tom Hanks, Paul Newman, Jude Law, and Daniel Craig. The plot takes place in 1931, during the Great Depression, following a mob enforcer and his son as they seek vengeance against a mobster who murdered the rest of their family. Filming took place in the Chicago area. Mendes, having recently finished 1999's acclaimed \"\"American Beauty\"\", pursued a story that had minimal dialogue"} +{"qid": "test2639", "pid": "9757262", "query": "where does the movie road to perdition take place", "answer": "Chicago", "passage": "\"Chicago Board of Trade Building\"\ntrilogy. Life on the trading floor of the Chicago Board of Trade is detailed in the nonfiction book \"\"Leg the Spread\"\" by Cari Lynn (2004). Trading operations have been used as scenes in movies such as \"\"Ferris Bueller's Day Off\"\", and the streetscape in the LaSalle Street canyon is used in the movies \"\"The Untouchables\"\", \"\"Road to Perdition\"\", and \"\"\"\". In \"\"Batman Begins\"\", the Board of Trade Building represents the headquarters of Wayne Enterprises, but in the 2008 sequel, \"\"The Dark Knight\"\", Wayne Enterprises was represented by the Richard J. Daley Center. The building itself appears in \"\"The Dark Knight\"\"."} +{"qid": "test2639", "pid": "5748349", "query": "where does the movie road to perdition take place", "answer": "Chicago", "passage": "\"LaSalle Street\"\nview facing south down the canyon has been used in the movies \"\"The Untouchables\"\", \"\"Public Enemies\"\", \"\"\"\" and \"\"Road to Perdition\"\". The canyon was in the movie \"\"Ferris Bueller's Day Off\"\". LaSalle Street LaSalle Street is a major north-south street in Chicago named for Robert de La Salle, an early explorer of Illinois. The portion that runs through the Chicago Loop is considered to be Chicago's financial district. South of the Financial District, LaSalle Street gets cut off for a while by the Amtrak/Metra Rail yard from Taylor St to 1600 South. It runs parallel to the Rock Island District"} +{"qid": "test2639", "pid": "823573", "query": "where does the movie road to perdition take place", "answer": "Chicago", "passage": "\"Max Allan Collins\"\nConfidential\"\", Collins moved the action into the 1950s. \"\"Target Lancer\"\", about an alleged attempt to assassinate John F. Kennedy in Chicago just weeks before the actual assassination in Dallas, was published in November 2012. This series of novels is about real life Untouchable Eliot Ness's career as Director of Public Safety in Cleveland. (*) Note: \"\"Road to Perdition: On the Road\"\", is a single-volume collection of \"\"On the Road to Perdition\"\" Books 1–3. A mystery series set in and around the American comic book industry during the tail end of the Golden Age of Comic Books Max Allan Collins Max"} +{"qid": "test264", "pid": "17854930", "query": "who played adaline in the age of adaline", "answer": "Adaline Bowman", "passage": "\"The Age of Adaline\"\nThe Age of Adaline The Age of Adaline is a 2015 American romantic fantasy film directed by Lee Toland Krieger and written by J. Mills Goodloe and Salvador Paskowitz. The film stars Blake Lively in the title role, with Michiel Huisman, Kathy Baker, Amanda Crew, Harrison Ford, and Ellen Burstyn in supporting roles. Narrated by Hugh Ross, the story follows Adaline Bowman, a young woman who stops aging after an accident at the age of 29. The film was co-produced by Sidney Kimmel Entertainment and Lakeshore Entertainment. In October 2013, Lively was cast as the title character, with Krieger attached"} +{"qid": "test264", "pid": "17854948", "query": "who played adaline in the age of adaline", "answer": "Adaline Bowman", "passage": "\"The Age of Adaline\"\nby age and one more by William's longing—is even more powerful [than the devastating look on his face]. This is Ford's best performance since \"\"The Fugitive\"\", maybe since \"\"Witness\"\"\"\". The Age of Adaline The Age of Adaline is a 2015 American romantic fantasy film directed by Lee Toland Krieger and written by J. Mills Goodloe and Salvador Paskowitz. The film stars Blake Lively in the title role, with Michiel Huisman, Kathy Baker, Amanda Crew, Harrison Ford, and Ellen Burstyn in supporting roles. Narrated by Hugh Ross, the story follows Adaline Bowman, a young woman who stops aging after an accident"} +{"qid": "test264", "pid": "17854932", "query": "who played adaline in the age of adaline", "answer": "Adaline Bowman", "passage": "\"The Age of Adaline\"\nand one for Lively for Best Actress. One afternoon in San Francisco, Adaline Bowman purchases fake IDs at an apartment before returning home to feed her dog. She then goes to work and opens a box of film reels, which highlight historical events and times. A voiceover ties together the film reels explaining the story of Adaline's life so far. She was born on New Years Day 1908, then later married and gave birth to a daughter, only to become a widow after her husband died in a tragic accident. Years later, in 1937, Adaline crashed her car when she"} +{"qid": "test264", "pid": "17854946", "query": "who played adaline in the age of adaline", "answer": "Blake Lively", "passage": "\"The Age of Adaline\"\nfrom 2,991 locations. \"\"The Age of Adaline\"\" has received mixed reviews from critics, although the performances of Blake Lively and Harrison Ford received very positive reviews and were cited as some of their best work in recent years. On Rotten Tomatoes, the film has a rating of 56%, based on 150 reviews, with an average rating of 5.5/10. The site's consensus reads \"\"\"\"The Age of Adaline\"\" ruminates on mortality less compellingly than similarly themed films, but is set apart by memorable performances from Blake Lively and Harrison Ford.\"\" On Metacritic, the film has a score of 51 out of 100,"} +{"qid": "test264", "pid": "17854942", "query": "who played adaline in the age of adaline", "answer": "Blake Lively", "passage": "\"The Age of Adaline\"\nreported that Natalie Portman had been offered the lead role. On August 25, Portman told \"\"Entertainment Weekly\"\" that she had declined the offer. On October 16, 2013, Blake Lively and Ellen Burstyn were cast in the film to play the lead roles, with Lively starring as the title character. On January 15, 2014 Harrison Ford joined the cast, and the film was set to begin shooting in March of that year. On February 11, 2014 Michiel Huisman joined the cast to star opposite Lively as Adaline's love interest. Filming began on March 10, 2014 in Vancouver and continued through May"} +{"qid": "test2640", "pid": "4623023", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize controversies\"\nPrize for Art and Science was Hitler's alternative to the Nobel Prize. The Ig Nobel Prize is an American parody of the Nobel Prize. Nobel Prize controversies After his death in 1896, the will of Swedish industrialist Alfred Nobel established the Nobel Prizes. Nobel's will specified that annual prizes are to be awarded for service to humanity in the fields of physics, chemistry, physiology or medicine, literature, and peace. Similarly, the Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel is awarded along with the Nobel Prizes. Since the first award in 1901, the prizes have occasionally engendered"} +{"qid": "test2640", "pid": "284439", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize\"\nthe \"\"Nobel Prize in Economics\"\". The prizes are widely regarded as the most prestigious awards available in the fields of chemistry, literature, peace activism, physics, and physiology or medicine. The Royal Swedish Academy of Sciences awards the Nobel Prize in Chemistry, the Nobel Prize in Physics, and the Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel; the Nobel Assembly at the Karolinska Institute awards the Nobel Prize in Physiology or Medicine; the Swedish Academy grants the Nobel Prize in Literature; and the Nobel Peace Prize is awarded by the Norwegian Nobel Committee. Between 1901 and 2018, the"} +{"qid": "test2640", "pid": "628713", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize in Physics\"\nNobel Prize in Physics The Nobel Prize in Physics () is a yearly award given by the Royal Swedish Academy of Sciences for those who have made the most outstanding contributions for mankind in the field of physics. It is one of the five Nobel Prizes established by the will of Alfred Nobel in 1895 and awarded since 1901; the others being the Nobel Prize in Chemistry, Nobel Prize in Literature, Nobel Peace Prize, and Nobel Prize in Physiology or Medicine. The first Nobel Prize in Physics was awarded to physicist Wilhelm Röntgen in recognition of the extraordinary services he"} +{"qid": "test2640", "pid": "628725", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize in Physics\"\nreceive a diploma, a medal and a document confirming the prize amount. Nobel Prize in Physics The Nobel Prize in Physics () is a yearly award given by the Royal Swedish Academy of Sciences for those who have made the most outstanding contributions for mankind in the field of physics. It is one of the five Nobel Prizes established by the will of Alfred Nobel in 1895 and awarded since 1901; the others being the Nobel Prize in Chemistry, Nobel Prize in Literature, Nobel Peace Prize, and Nobel Prize in Physiology or Medicine. The first Nobel Prize in Physics was"} +{"qid": "test2640", "pid": "4622904", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize controversies\"\nNobel Prize controversies After his death in 1896, the will of Swedish industrialist Alfred Nobel established the Nobel Prizes. Nobel's will specified that annual prizes are to be awarded for service to humanity in the fields of physics, chemistry, physiology or medicine, literature, and peace. Similarly, the Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel is awarded along with the Nobel Prizes. Since the first award in 1901, the prizes have occasionally engendered criticism and controversy. Nobel sought to reward \"\"those who, during the preceding year, shall have conferred the greatest benefit on mankind\"\". One prize, he"} +{"qid": "test2640", "pid": "360198", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Swedish Academy\"\nand Lotta Lotass. On 4 May 2018, the Swedish Academy announced that following the preceding internal struggles the Nobel laureate for literature selected in 2018 will be postponed until 2019, when two laureates will be selected. Since 1901, the Swedish Academy has annually decided who will be the laureate for the Nobel Prize in Literature, awarded in memory of the donor Alfred Nobel. The Swedish Academy annually awards nearly 50 different prizes and scholarships, most of them for domestic Swedish authors. Common to all is that they are awarded without competition and without application. The Dobloug Prize, the largest of"} +{"qid": "test2640", "pid": "284438", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize\"\nNobel Prize The Nobel Prize (, ; Swedish definite form, singular: \"\"Nobelpriset\"\"; ) is a set of annual international awards bestowed in several categories by Swedish and Norwegian institutions in recognition of academic, cultural, or scientific advances. The will of the Swedish scientist Alfred Nobel established the five Nobel prizes in 1895. The prizes in Chemistry, Literature, Peace, Physics, and Physiology or Medicine were first awarded in 1901. In 1968, Sweden's central bank, Sveriges Riksbank, established the \"\"Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel\"\", which, although not being a Nobel Prize, has become informally known as"} +{"qid": "test2640", "pid": "13514216", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize in Literature\"\nNobel Prize in Literature The Nobel Prize in Literature () is a Swedish literature prize that is awarded annually, since 1901, to an author from any country who has, in the words of the will of Swedish industrialist Alfred Nobel, produced \"\"in the field of literature the most outstanding work in an ideal direction\"\" (original Swedish: \"\"den som inom litteraturen har producerat det mest framstående verket i en idealisk riktning\"\"). Though individual works are sometimes cited as being particularly noteworthy, the award is based on an author's body of work as a whole. The Swedish Academy decides who, if anyone,"} +{"qid": "test2640", "pid": "628734", "query": "when was the nobel prize for literature first awarded", "answer": "1901", "passage": "\"Nobel Prize in Physiology or Medicine\"\naward. The front side of the medal displays the same profile of Alfred Nobel depicted on the medals for Physics, Chemistry, and Literature. The reverse side is unique to this medal. The most recent Nobel prize was announced by Karolinska Institute on 1 October 2018, and has been awarded to American James P. Allison and Japanese Tasuku Honjo – for their discovery of cancer therapy by inhibition of negative immune regulation. As of 2015, 106 Nobel Prizes in Physiology or Medicine have been awarded to 198 men and 12 women. The first one was awarded in 1901 to the German"} +{"qid": "test2641", "pid": "2625876", "query": "when did the subway open in new york", "answer": "1904", "passage": "\"Subway Series\"\n\"\"World Championship Series\"\" occurred in 1889, a full nine years before Brooklyn was incorporated into the City of New York by the Greater New York Act of 1898, when the New York Giants squared off against (and defeated) the Brooklyn Bridegrooms, also called the \"\"Trolley Dodgers\"\", of the American Association. The following season, Brooklyn withdrew from the Association and joined the League, setting the stage for many future intra-city competitions. Some might argue that the 1889 Series would qualify as a \"\"Trolley Series\"\", but would not qualify as a Subway Series since New York's subway did not open until 1904."} +{"qid": "test2641", "pid": "9940848", "query": "when did the subway open in new york", "answer": "October 27, 1904", "passage": "\"New York City Subway tiles\"\nsubway stations have new ceramics and mosaics: New York City Subway tiles Many New York City Subway stations are decorated with colorful ceramic plaques and tile mosaics. Of these, many take the form of signs, identifying the station's location. Much of this ceramic work was in place when the subway system originally opened on October 27, 1904. Newer work continues to be installed each year, much of it cheerful and fanciful. The earliest ceramic work was done by Heins & LaFarge (artists George C. Heins and Christopher Grant LaFarge), starting in 1901 and continuing up to 1907. Heins and LaFarge"} +{"qid": "test2641", "pid": "9940835", "query": "when did the subway open in new york", "answer": "October 27, 1904", "passage": "\"New York City Subway tiles\"\nNew York City Subway tiles Many New York City Subway stations are decorated with colorful ceramic plaques and tile mosaics. Of these, many take the form of signs, identifying the station's location. Much of this ceramic work was in place when the subway system originally opened on October 27, 1904. Newer work continues to be installed each year, much of it cheerful and fanciful. The earliest ceramic work was done by Heins & LaFarge (artists George C. Heins and Christopher Grant LaFarge), starting in 1901 and continuing up to 1907. Heins and LaFarge were both relatives of John LaFarge (brother-in-law"} +{"qid": "test2641", "pid": "18068758", "query": "when did the subway open in new york", "answer": "1904", "passage": "\"New York City Subway map\"\nMarketing and Corporate Communications Department of the Metropolitan Transportation Authority (MTA). The 1979 design was created by the MTA Subway Map Committee, chaired by John Tauranac, which outsourced the graphic design of the map to Michael Hertz Associates. Original maps for the privately opened Interborough Rapid Transit Company (IRT), which opened in 1904, showed subway routes as well as elevated routes. However, IRT maps did not show Brooklyn–Manhattan Transit Corporation (BMT) routes; conversely, BMT maps did not show IRT routes, even after the Dual Contracts between the IRT and BMT. In fact, even in 1939, the year before the unification"} +{"qid": "test2641", "pid": "2616139", "query": "when did the subway open in new york", "answer": "1904", "passage": "\"Proposed expansion of the New York City Subway\"\nwould likely be built as part of an extension of a subway line in Manhattan. Proposed expansion of the New York City Subway Since the opening of the original New York City Subway line in 1904, and throughout the subway's history, various official and planning agencies have proposed numerous extensions to the subway system. The first major expansion of the subway system was the Dual Contracts, a set of agreements between the City of New York and the IRT and the BRT. The system was expanded into the outer reaches of the Bronx, Brooklyn, and Queens, and it provided for"} +{"qid": "test2641", "pid": "1979334", "query": "when did the subway open in new york", "answer": "1904", "passage": "\"New York City Subway\"\nNew York City Subway The New York City Subway is a rapid transit system owned by the City of New York and leased to the New York City Transit Authority, a subsidiary agency of the state-run Metropolitan Transportation Authority (MTA). Opened in 1904, the New York City Subway is one of the world's oldest public transit systems, one of the world's most used metro systems, and the metro system with the most stations. It offers service 24 hours per day on every day of the year, though some routes may operate only part-time. The New York City Subway is the"} +{"qid": "test2641", "pid": "3809269", "query": "when did the subway open in new york", "answer": "October 27, 1904", "passage": "\"New York City Subway stations\"\nmerged in 1940: the Interborough Rapid Transit Company (IRT), the Brooklyn–Manhattan Transit Corporation (BMT), and the Independent Subway System (IND). The privately held IRT, founded in 1902, constructed and operated the first underground railway line in New York City. The opening of the first line on October 27, 1904 is commonly cited as the opening of the modern New York City Subway, although some elevated lines of the IRT and BMT that were initially incorporated into the New York City Subway system but then demolished predate this. The oldest sections of elevated lines still in operation were built in 1885."} +{"qid": "test2641", "pid": "2616065", "query": "when did the subway open in new york", "answer": "1904", "passage": "\"Proposed expansion of the New York City Subway\"\nProposed expansion of the New York City Subway Since the opening of the original New York City Subway line in 1904, and throughout the subway's history, various official and planning agencies have proposed numerous extensions to the subway system. The first major expansion of the subway system was the Dual Contracts, a set of agreements between the City of New York and the IRT and the BRT. The system was expanded into the outer reaches of the Bronx, Brooklyn, and Queens, and it provided for the construction of important lines in Manhattan. This one expansion of the system provided for"} +{"qid": "test2642", "pid": "6902897", "query": "who owns the four seasons hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\nthe Delano rooms remained among the largest standard rooms of any hotel on the Las Vegas Strip. Rooms included 28 penthouses, and dog-friendly suites. Delano Las Vegas Delano Las Vegas (formerly known as THEhotel) is a 43-story 1,118 room luxury suite hotel. It is owned and operated by MGM Resorts International. It is located within the Mandalay Bay complex on the Las Vegas Strip in Paradise, Nevada. It opened on December 17, 2003, as \"\"THEhotel at Mandalay Bay.\"\" In 2012, owner MGM Resorts International announced a partnership with Morgans Hotel Group to rebrand the hotel as Delano Las Vegas. Construction"} +{"qid": "test2642", "pid": "6902883", "query": "who owns the four seasons hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\nDelano Las Vegas Delano Las Vegas (formerly known as THEhotel) is a 43-story 1,118 room luxury suite hotel. It is owned and operated by MGM Resorts International. It is located within the Mandalay Bay complex on the Las Vegas Strip in Paradise, Nevada. It opened on December 17, 2003, as \"\"THEhotel at Mandalay Bay.\"\" In 2012, owner MGM Resorts International announced a partnership with Morgans Hotel Group to rebrand the hotel as Delano Las Vegas. Construction to rebrand the hotel began in April 2014. Several floors were worked on at a time, allowing much of the hotel to remain open"} +{"qid": "test2642", "pid": "3233118", "query": "who owns the four seasons hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Excalibur Hotel and Casino\"\na stunt on the Las Vegas edition of \"\"Fear Factor\"\" and was featured in an episode of \"\"South Park\"\" called \"\"It Hits the Fan\"\". Also, season six of \"\"Top Chef\"\" contestant Jennifer used Excalibur as the inspiration for one of her meals. Excalibur Hotel and Casino Excalibur Hotel and Casino is a hotel and casino located on the Las Vegas Strip in Paradise, Nevada, in the United States. It is owned and operated by MGM Resorts International. Excalibur, named for the mythical sword of King Arthur, uses the Medieval theme in several ways. Its facade is a stylized image of"} +{"qid": "test2642", "pid": "6902888", "query": "who owns the four seasons hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\n\"\"Mandalay Bay\"\" letters at the top of the original tower. In 2011, the hotel became one of the few Las Vegas Strip hotel properties to allow dogs. Later that year, Travelocity included the hotel on its list of the top 10 hotels in Las Vegas, based on customer reviews. On August 6, 2012, MGM Resorts International announced the rebranding of THEhotel into the Delano Las Vegas as part of a partnership with Morgans Hotel Group. Through the deal, MGM would manage the hotel under a licensing agreement with Morgans Hotel Group, which owned the Delano brand. All of the suites"} +{"qid": "test2642", "pid": "3222208", "query": "who owns the four seasons hotel in las vegas", "answer": "MGM Resorts International", "passage": "\"MGM Grand Las Vegas\"\nMGM Grand Las Vegas The MGM Grand Las Vegas (formerly Marina and MGM-Marina) is a hotel and casino located on the Las Vegas Strip in Paradise, Nevada. The MGM Grand is the largest single hotel in the United States with 6,852 rooms. It is also the third-largest hotel complex in the world by number of rooms and second-largest hotel resort complex in the United States behind the combined The Venetian and The Palazzo. When it opened in 1993, the MGM Grand was the largest hotel complex in the world. Owned and operated by MGM Resorts International, the 30-floor main building"} +{"qid": "test2645", "pid": "20160090", "query": "who stars in kevin probably save the world", "answer": "Kimberly Hebert Gregory", "passage": "\"Kevin (Probably) Saves the World\"\nCristela Alonzo, who played a lead role as the heaven-sent entity in the original pilot, was replaced by Kimberly Hebert Gregory after the series was picked up. The series was filmed in and around Atlanta Georgia, as well as in Austin, Texas. The pilot filmed March 23, 2017 in San Antonio, Texas at the San Antonio International Airport The review aggregator website Rotten Tomatoes reported a 68% approval rating with an average rating of 6.73/10 based on 22 reviews. The website's consensus reads, \"\"Breezily entertaining, \"\"Kevin (Probably) Saves the World\"\" relies on its likable lead to carry its still-sketchy premise,"} +{"qid": "test2645", "pid": "2166505", "query": "who stars in kevin probably save the world", "answer": "Jason Ritter", "passage": "\"Jason Ritter\"\nJason Ritter Jason Ritter (born February 17, 1980) is an American actor. He is known for his roles as Kevin Girardi in the television series \"\"Joan of Arcadia\"\", Ethan Haas in \"\"The Class\"\", Sean Walker in the NBC series \"\"The Event\"\", and as the voice of Dipper Pines in \"\"Gravity Falls\"\". He also played the recurring role of Mark Cyr in the NBC television series \"\"Parenthood\"\", for which he received an Emmy Award nomination. In 2017, he starred in the TV comedy series \"\"Kevin (Probably) Saves the World\"\". Ritter was born on February 17, 1980 in Los Angeles, California, to"} +{"qid": "test2645", "pid": "10964407", "query": "who stars in kevin probably save the world", "answer": "India de Beaufort", "passage": "\"India de Beaufort\"\n\"\"The Gospel of Kevin\"\", later changed to \"\"Kevin (Probably) Saves the World\"\"; it was picked up to series and premiered on 3 October 2017. On August 29, 2015, de Beaufort married actor Todd Grinnell. They have a son, Crosby James Beaufort-Grinnell, who was born on May 18, 2018. India de Beaufort India de Beaufort (born India Beaufort Lloyd; 27 June 1987) is a British actress and singer-songwriter. de Beaufort was born in Kingston Hospital, Kingston upon Thames, Surrey. Her mother is Karen de Beaufort, born in Liverpool in 1959, and her father is Nick Lloyd, born in London in 1959."} +{"qid": "test2645", "pid": "20158093", "query": "who stars in kevin probably save the world", "answer": "Chloe East", "passage": "\"Chloe East\"\nChloe East Chloe East (born ) is an American actress and dancer. She starred in the 2017–18 ABC television series \"\"Kevin (Probably) Saves the World\"\". She has two brothers. She began dancing at age 2, and has won many awards as a dancer. Soon after she began taking acting classes, she landed the part of Gloria in Fredrick Knott's \"\"Wait Until Dark\"\" in Newport Beach. East began modeling at age 9, and at 11 she started acting in the HBO television series \"\"True Blood\"\". Other credits include Jessica Darling in the film adaptation of \"\"Jessica Darling's IT List\"\", Val on"} +{"qid": "test2645", "pid": "20158094", "query": "who stars in kevin probably save the world", "answer": "Chloe East", "passage": "\"Chloe East\"\nDisney Channel series \"\"Liv and Maddie\"\", and Willow Pierce on Audience Network series \"\"Ice\"\". Chloe East Chloe East (born ) is an American actress and dancer. She starred in the 2017–18 ABC television series \"\"Kevin (Probably) Saves the World\"\". She has two brothers. She began dancing at age 2, and has won many awards as a dancer. Soon after she began taking acting classes, she landed the part of Gloria in Fredrick Knott's \"\"Wait Until Dark\"\" in Newport Beach. East began modeling at age 9, and at 11 she started acting in the HBO television series \"\"True Blood\"\". Other credits"} +{"qid": "test2646", "pid": "3635110", "query": "how many grams of alcohol in one beer", "answer": "14", "passage": "\"Standard drink\"\nin units of grams of pure alcohol per day, week, or single occasion. The concept of the standard drink is meant to help visualize and estimate the absolute alcohol content of various drink concentrations and serving sizes. For example, in the United States, a standard drink contains about 14 grams of alcohol. This corresponds to a glass of beer, a glass of 12% ABV (alcohol by volume)wine, or a so-called \"\"shot\"\" of spirit.Assuming that beer is 5% ABV, wine is 12% ABV, and spirits is 40% ABV (80 proof). Most wine today is higher than 12% ABV (the average ABV"} +{"qid": "test2646", "pid": "18132067", "query": "how many grams of alcohol in one beer", "answer": "14", "passage": "\"Alcohol (drug)\"\nprovides 7 calories per gram. For distilled spirits, a standard serving in the United States is , which at 40% ethanol (80 proof), would be 14 grams and 98 calories. Wine and beer contain a similar range of ethanol for servings of and , respectively, but these beverages also contain non-ethanol calories. A 150 ml serving of wine contains 100 to 130 calories. A 350 ml serving of beer contains 95 to 200 calories. According to the U.S. Department of Agriculture, based on NHANES 2013–2014 surveys, women in the US ages 20 and up consume on average 6.8 grams/day and"} +{"qid": "test2646", "pid": "292198", "query": "how many grams of alcohol in one beer", "answer": "14", "passage": "Nutrition\n12 ounce serving of beer contains 95 to 200 calories. According to the U.S. Department of Agriculture, based on NHANES 2013-2014 surveys, women ages 20 and up consume on average 6.8 grams/day and men consume on average 15.5 grams/day. Ignoring the non-alcohol contribution of those beverages, the average ethanol calorie contributions are 48 and 108 cal/day. Alcoholic beverages are considered empty calorie foods because other than calories, these contribute no essential nutrients. The micronutrients are minerals, vitamins, and others. Dietary minerals are inorganic chemical elements required by living organisms, other than the four elements carbon, hydrogen, nitrogen, and oxygen that"} +{"qid": "test2647", "pid": "20348129", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx", "passage": "\"Opiate for the Masses\"\nOpiate for the Masses Opiate for the Masses was an American rock band from Phoenix, AZ in 1999. Opiate for the Masses was founded in 1999 by singer Ron Underwood, drummer Elias Mallin, guitarist/keyboardist Jim Kaufman, and guitarist Dustin Lyon. The group's name is an alteration of Karl Marx's famous aphorism, \"\"Religion is the opium of the people\"\". Opiate for the Masses self-released a demo album entitled \"\"New Machines and the Wasted Life\"\" in 2000. In 2005, the band signed with Warcon Enterprises and issued the album \"\"The Spore\"\". By this time the group had added Seven Antonopoulos on drums"} +{"qid": "test2647", "pid": "3910781", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx", "passage": "\"Lithium (Nirvana song)\"\nloud sections. In the song, Cobain fingers chord shapes on his guitar but varies between playing single notes and double stops on the instrument, giving the track a loose feel. Nirvana biographer Michael Azerrad described the song's title as a reference to Karl Marx's statement that religion is the \"\"opiate of the masses\"\". Cobain said the song is about a man who, after the death of his girlfriend, turns to religion \"\"as a last resort to keep himself alive. To keep him from suicide.\"\" While Cobain said the narrative of \"\"Lithium\"\" was fictional, he said, \"\"I did infuse some of"} +{"qid": "test2647", "pid": "1627964", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx", "passage": "\"Opiate (EP)\"\nOpiate (EP) Opiate is an EP by American rock band Tool. It was produced and engineered by Sylvia Massy and former Minor Threat bassist Steve Hansgen. Released in 1992, it was the result of some two years of the band playing together after their formation in 1990. \"\"Opiate\"\" preceded Tool's first full-length release, \"\"Undertow\"\", by a year. It is named after a quote by Karl Marx: \"\"religion ... is the opiate of the masses\"\". As of July 7, 2010, \"\"Opiate\"\" has sold 1,155,000 copies in the US and is certified Platinum by the RIAA. \"\"Opiate\"\" features seven songs spanning six"} +{"qid": "test2647", "pid": "19714138", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx", "passage": "\"Ron Underwood (musician)\"\nhe founded Opiate for the Masses, a post-hardcore band from Arizona in 1999. They formed in Phoenix by Underwood, Elias Mallin, Dustin Lyon and Jim Kaufman. The meaning of their name came from the Karl Marx quote that says the organized religion is an opiate for oppressed countries and cultures. In June 2009, they posted on their MySpace page that they had broken up and gone their separate ways. Ron Underwood (musician) Ron \"\"Thunderwood\"\" Underwood is a musician and director from Phoenix, Arizona. He is currently the lead vocalist for the Los Angeles band 9ELECTRIC. In 2010, the band 9ELECTRIC"} +{"qid": "test2647", "pid": "2037806", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx.", "passage": "\"Opium of the people\"\nOpium of the people \"\"Religion is the opium of the people\"\" is one of the most frequently paraphrased statements of German philosopher and economist Karl Marx. It was translated from the German original, and is often rendered as \"\"religion... is the opiate of the \"\"masses\"\".\"\" The quotation originates from the introduction of Marx's work \"\"A Contribution to the Critique of Hegel's Philosophy of Right\"\", which he started in 1843 but which was not published until after his death. The introduction to this work was published separately in 1844, in Marx's own journal \"\"Deutsch–Französische Jahrbücher\"\", a collaboration with Arnold Ruge. The"} +{"qid": "test2647", "pid": "11982709", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx", "passage": "\"Narciso Bassols\"\nimplemented was a stricter following of Article 3 of the constitution, specifically the portion modified to read as follows: Bassols began to ban religious teachings in schools, and ordering the removal of religious iconography removed as well. In instituting his policy Bassols ordered schools who failed to comply to be fined and/or closed. Bassols argued that schools should substituted religious teachings with \"\"true, scientific, and rational knowledge,\"\" his ideas following in line with Karl Marx's maxim that religion is an \"\"\"\"opiate of the masses.\"\"\"\" On December 29, 1931, Congress passed a law, crafted by Bassols, that extended state control over"} +{"qid": "test2647", "pid": "1504896", "query": "who said that religion is the opiate of the masses", "answer": "Karl Marx", "passage": "\"Marx's theory of alienation\"\nsocio-economic role independent of religion being \"\"the opiate of the masses\"\". In Marxist theory, \"\"Entfremdung\"\" (alienation) is a foundational proposition about man's progress towards self-actualisation. In the \"\"Oxford Companion to Philosophy\"\" (2005), Ted Honderich described the influences of Georg Wilhelm Friedrich Hegel and Ludwig Feuerbach upon Karl Marx: For Hegel, the unhappy consciousness is divided against itself, separated from its \"\"essence\"\", which it has placed in a \"\"beyond\"\". As used by the philosophers Hegel and Marx, the reflexive German verbs \"\"entäussern\"\" (\"\"to divest one's self of\"\") and \"\"entfremden\"\" (\"\"to become estranged\"\") indicate that the term \"\"alienation\"\" denotes self-alienation: to be"} +{"qid": "test2648", "pid": "4591683", "query": "when was the us department of homeland security created", "answer": "November 25, 2002", "passage": "\"Homeland Security Act\"\nthe Department of Homeland Security and other purposes. Each title is broken down into several sections, summarized below. The United States Department of Homeland Security (DHS), formed November 25, 2002 through the Homeland Security Act, is a Cabinet department composed of several different divisions that work to protect the United States from domestic and foreign terrorism. It was created as a response to the September 11 attacks in 2001. The Department of Homeland Security manages the Emergency Preparedness and Response Directorate. The directorate helps fulfill the Department's overarching goal: to keep America safe from terrorist attacks. The Department also works"} +{"qid": "test2649", "pid": "7965988", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Government of Texas\"\nagencies and is published yearly by the Secretary of State. The \"\"Texas Register\"\" contains proposed rules, notices, executive orders, and other information of general use to the public and is published weekly by the Secretary of State. The Texas Legislature is bicameral. The Texas House of Representatives has 150 members, while the Texas Senate has 31. The Speaker of the House presides over the House, and the Lieutenant Governor presides over the Senate. It is a powerful arm of the Texas government not only because of its power of the purse to control and direct the activities of state government"} +{"qid": "test2649", "pid": "2793497", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Texas Senate\"\nThe first case was in 1870, with the Rump Senate, followed by the 1979 Killer Ds. and finally the Texas Eleven in August 2003, who were following the example of the Texas house Killer Ds. The following represents the Senate committee structure for the 85th Legislature. In addition, the House and Senate operate the permanent joint committee known as the Legislative Budget Board (LBB). †Elected in a special election Texas Senate The Texas Senate is the upper house of the Texas State Legislature. There are 31 members of the Senate, representing single-member districts across the U.S. state of Texas, with"} +{"qid": "test2649", "pid": "9636185", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Texas Ethics Commission\"\nGovernor, and two by the Speaker of the House. Appointees must be selected equally from lists recommended by the Republican and Democratic members in the Texas House and Senate. By the constitution, the ethics commission recommends the salaries and per diem of members of the Texas Legislature, the Lieutenant Governor and the Speaker of the Texas House of Representatives. The legislature has also given the commission various other duties, including the filing of financial disclosure statements for government officials and the filing of campaign finance regulatory statements by candidates and citizens who engage in political speech related to campaigns and"} +{"qid": "test2649", "pid": "2517024", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Texas Legislature\"\nTexas Legislature The Legislature of the state of Texas is the state legislature of Texas. The legislature is a bicameral body composed of a 31-member Senate and a 150-member House of Representatives. The state legislature meets at the Capitol in Austin. It is a powerful arm of the Texas government not only because of its power of the purse to control and direct the activities of state government and the strong constitutional connections between it and the Lieutenant Governor of Texas, but also due to Texas's plural executive. The Legislature is the constitutional successor of the Congress of the Republic"} +{"qid": "test2649", "pid": "7005240", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Eightieth Texas Legislature\"\njoined the Democratic Party and another Republican resigned and was replaced by a Democrat in a special election, making the tally 79–71. In February, one Democrat resigned, whose vacancy was filled by another Democrat, restoring the 79–71 tally before a GOP member of the House died, bringing the final composition to 78–71 with one vacancy. Eightieth Texas Legislature The 80th Texas Legislature met in regular session beginning 9 January 2007. All members of the House of Representatives and 16 members of the Senate were up for election on 7 November 2006 in the Texas Legislature election. The 80th Texas Legislature"} +{"qid": "test2649", "pid": "2517029", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Texas Legislature\"\nare within the legislative branch of state government. Those five agencies are as follows: Texas Legislature The Legislature of the state of Texas is the state legislature of Texas. The legislature is a bicameral body composed of a 31-member Senate and a 150-member House of Representatives. The state legislature meets at the Capitol in Austin. It is a powerful arm of the Texas government not only because of its power of the purse to control and direct the activities of state government and the strong constitutional connections between it and the Lieutenant Governor of Texas, but also due to Texas's"} +{"qid": "test2649", "pid": "6939566", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Seventy-ninth Texas Legislature\"\nSeventy-ninth Texas Legislature The Seventy-ninth Texas Legislature met from 11 January to 30 May 2005 in regular session, and in consecutive called sessions from 21 June to 20 July (First called session) and 21 July to 19 August 2005 (Second called session). It met again in 2006 from 17 April to 16 May. Most of the members of the House of Representatives and 15 members of the Senate were elected in the 2004 general election; the other House members were elected in special elections held in 2006. Members of the Seventy-ninth Texas Legislature at the beginning of the regular session,"} +{"qid": "test2649", "pid": "6939567", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Seventy-ninth Texas Legislature\"\n11 January 2005: None Seventy-ninth Texas Legislature The Seventy-ninth Texas Legislature met from 11 January to 30 May 2005 in regular session, and in consecutive called sessions from 21 June to 20 July (First called session) and 21 July to 19 August 2005 (Second called session). It met again in 2006 from 17 April to 16 May. Most of the members of the House of Representatives and 15 members of the Senate were elected in the 2004 general election; the other House members were elected in special elections held in 2006. Members of the Seventy-ninth Texas Legislature at the beginning"} +{"qid": "test2649", "pid": "12676160", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Eighty-first Texas Legislature\"\nEighty-first Texas Legislature The 81st Texas Legislature began meeting in regular session on January 11, 2009. The regular session adjourned sine die on June 1, 2009. Rick Perry, the Governor of Texas, called a special session of the Legislature on July 1, 2009. The Legislature passed two bills, both related to the sunset process, and adjourned sine die on July 10. All members of the House of Representatives and 13 members of the Senate were elected on 4 November 2008. The numbers above reflect the partisan composition of the House at the beginning of the legislative session in January 2009."} +{"qid": "test2649", "pid": "7007864", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Eleventh Texas Legislature\"\nEleventh Texas Legislature The Eleventh Texas Legislature met from August 6, 1866, to November 13, 1866, in its regular session. All members of the House of Representatives and about half of the members of the Senate were elected in 1865. Jones was removed from office in July 1867 by General Phillip H. Sheridan. The office of Lieutenant Governor remained vacant until 1870. Robert Henry Guinn served as acting Lieutenant Governor for the remainder of the term. Members of the Eleventh Texas Legislature at the beginning of the regular session, August 6, 1866: Representatives of the Eleventh Texas Legislature serving from"} +{"qid": "test2649", "pid": "7005239", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Eightieth Texas Legislature\"\nEightieth Texas Legislature The 80th Texas Legislature met in regular session beginning 9 January 2007. All members of the House of Representatives and 16 members of the Senate were up for election on 7 November 2006 in the Texas Legislature election. The 80th Texas Legislature convened in Regular Session on 9 January 2007. The Legislature adjourned on 28 May 2007. At the beginning of the regular session, the Republican Party held an 80–69 advantage with one vacancy that was filled by the GOP, creating an 81–69 Republican majority (reflected above). After the Regular Session, one Representative left the GOP and"} +{"qid": "test2649", "pid": "14364624", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"South Dakota Legislature\"\nSouth Dakota Legislature The South Dakota State Legislature is the legislative branch of the government of South Dakota. It is a bicameral legislative body, consisting of the South Dakota Senate, which has 35 members, and the South Dakota House of Representatives, which has 70 members. The two houses are similar in most respects; the Senate alone holds the right to confirm gubernatorial appointments to certain offices. In addition, the Senate votes by roll call vote, whereas the larger house uses an electronic voting system. The Legislature meets at the South Dakota State Capitol in Pierre. It begins its annual session"} +{"qid": "test2649", "pid": "3576170", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Lieutenant Governor of Texas\"\nThe Lieutenant Governor is also a member of the Legislative Redistricting Board (together with the Speaker of the House, Attorney General, Comptroller, and Land Commissioner), which is charged with adopting a redistricting plan for the Texas House of Representatives, Texas Senate, or U.S. House of Representatives after the decennial census if the Legislature fails to do so. In the case of a vacancy in the Lieutenant Governor's office, the Senate elects one of its members to act as \"\"President of the Senate\"\" until the next statewide office election, in effect becoming the Lieutenant Governor. A Senator elected as presiding officer"} +{"qid": "test2649", "pid": "7007865", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Eleventh Texas Legislature\"\n1866 to 1870: Eleventh Texas Legislature The Eleventh Texas Legislature met from August 6, 1866, to November 13, 1866, in its regular session. All members of the House of Representatives and about half of the members of the Senate were elected in 1865. Jones was removed from office in July 1867 by General Phillip H. Sheridan. The office of Lieutenant Governor remained vacant until 1870. Robert Henry Guinn served as acting Lieutenant Governor for the remainder of the term. Members of the Eleventh Texas Legislature at the beginning of the regular session, August 6, 1866: Representatives of the Eleventh Texas"} +{"qid": "test2649", "pid": "14364629", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"South Dakota Legislature\"\nsingle-member house districts, much like District 28. The state appealed the District Court decision that resulted in these changes, but the Eighth Circuit Court of Appeals upheld the lower court's ruling. The Republican-dominated legislature decided not to appeal the decision. South Dakota Legislature The South Dakota State Legislature is the legislative branch of the government of South Dakota. It is a bicameral legislative body, consisting of the South Dakota Senate, which has 35 members, and the South Dakota House of Representatives, which has 70 members. The two houses are similar in most respects; the Senate alone holds the right to"} +{"qid": "test2649", "pid": "9213175", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Glenn Kothmann\"\nIn 1972, Kothmann was elected to the Texas Senate from District 19 representing a portion of Bexar County for the 62nd Legislature and served to the 69th Legislature. Kothmann did not seek reelection to another senate term in 1986. In July 1973, Kothmann was named one of the ten worst legislators by \"\"Texas Monthly\"\" magazine in their biennial feature on best and worst Texas legislators. The article referred to Kothmann as “easily the densest member of the Senate” and noted he “has no legislative program of any consequence and seems proud of the fact.” In 1975, for the regular session"} +{"qid": "test2649", "pid": "2793490", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Texas Senate\"\nTexas Senate The Texas Senate is the upper house of the Texas State Legislature. There are 31 members of the Senate, representing single-member districts across the U.S. state of Texas, with populations of approximately 806,000 per constituency, based on the 2010 U.S. Census. There are no term limits, and each term is four years long. Elections are held in even-numbered years on the first Tuesday after the first Monday in November. In elections in years ending in 2, all seats are up for election. Half of the senators will serve a two-year term, based on a drawing; the other half"} +{"qid": "test2649", "pid": "9558322", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"M. D. K. Taylor\"\nM. D. K. Taylor Marion DeKalb Taylor or M. D. K. Taylor (October 13, 1818 – June 22, 1897) was an American politician in Alabama and Texas, and a Texas militia colonel during the American Civil War. He was a member of the Alabama Legislature for two stints between 1842 and 1846, and served in both the Texas House of Representatives and the Texas Senate. In the Texas House, Taylor served three non-consecutive terms as Speaker of the House, and, in the Texas Senate, was twice elected President \"\"pro tempore\"\" of the Texas Senate. Taylor was born in Jones County,"} +{"qid": "test2649", "pid": "7838718", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Vermont Senate\"\nVermont Senate The Vermont Senate is the upper house of the Vermont General Assembly, the state legislature of the U.S. state of Vermont. The senate consists of 30 members. Senate districting divides the 30 members into three single-member districts, six two-member districts, three three-member districts, and one six-member district. Each senator represents at least 20,300 citizens. Senators are elected to two-year terms and there is no limit to the number of terms that a senator may serve. As in other upper houses of state and territorial legislatures and the U.S. Senate, the state senate of Vermont has special functions, such"} +{"qid": "test2649", "pid": "7003308", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Twelfth Texas Legislature\"\n6, Fifth Military District, on January 8, 1870 and presided over the Provisional session of the Senate. During that session, he was elected to the U.S. Senate and was never sworn in as Lieutenant Governor. Members of the Twelfth Texas Legislature at the beginning of the provisional session, February 8, 1870: Twelfth Texas Legislature The Twelfth Texas Legislature met from February 8, 1870 to December 2, 1871 in four sessions — provisional, called, regular, and adjourned. The term Rump Senate is applied to the fifteen Radical Republican members of the Twelfth Texas Legislature, the term is a variation of \"\"rump"} +{"qid": "test2649", "pid": "14102357", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Fiftieth Texas Legislature\"\n21 Dist. 22 Dist. 23 Dist. 24 Dist. 25 Dist. 26 Dist. 27 Dist. 28 Dist. 29 Dist. 30 Dist. 31 The House was composed of 150 Democrats. House members included future Governors Preston Smith and future Congressmen Jack Brooks, Abraham Kazen and J.T. Rutherford and future U.S. House Speaker Jim Wright. Fiftieth Texas Legislature The 50th Texas Legislature met from January 14, 1947, to June 6, 1947. All members present during this session were elected in the 1946 general elections, except for Senator Maribelle Stewart of Houston who succeeded her husband, who died in office, in a special election"} +{"qid": "test2649", "pid": "2517025", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Texas Legislature\"\nof Texas since Texas's 1845 entrance into the Union. The Legislature held its first regular session from February 16 to May 13, 1846. The Texas Legislature meets in regular session on the second Tuesday in January of each odd-numbered year. The Texas Constitution limits the regular session to 140 calendar days. The lieutenant governor, elected statewide separately from the governor, presides over the Senate, while the Speaker of the House is elected from that body by its members. Both have wide latitude in choosing committee membership in their respective houses and have a large impact on lawmaking in the state."} +{"qid": "test2649", "pid": "7003300", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Twelfth Texas Legislature\"\nTwelfth Texas Legislature The Twelfth Texas Legislature met from February 8, 1870 to December 2, 1871 in four sessions — provisional, called, regular, and adjourned. The term Rump Senate is applied to the fifteen Radical Republican members of the Twelfth Texas Legislature, the term is a variation of \"\"rump legislature\"\". This incident is the only time in history where senators were arrested under a \"\"call of the Senate\"\" and were then prohibited from rejoining their fellow senators and participating in Senate votes. There had been a rash of incidents with Indian marauders and cattle thieves. One of the responses was"} +{"qid": "test2649", "pid": "9220172", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"Gregory Luna\"\nwas buried in the Texas State Cemetery on 9 November 1999. Luna is honored by the Texas Senate Hispanic Research Council through the Senator Gregory Luna Legislative Scholar and Fellows Program which places college students with members of the Texas Senate to gain leadership experience. Senate election history of Luna. Gregory Luna Gregorio \"\"Gregory\"\" Luna (17 November 1932 – 6 November 1999) was a San Antonio, Texas politician who served as a Democrat in both the Texas House of Representatives and the Texas Senate for the 14 years from 1985 to 1999. While in the legislature, Luna was considered to"} +{"qid": "test2649", "pid": "9558327", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"M. D. K. Taylor\"\nis buried in the Taylor family cemetery near Jefferson. M. D. K. Taylor Marion DeKalb Taylor or M. D. K. Taylor (October 13, 1818 – June 22, 1897) was an American politician in Alabama and Texas, and a Texas militia colonel during the American Civil War. He was a member of the Alabama Legislature for two stints between 1842 and 1846, and served in both the Texas House of Representatives and the Texas Senate. In the Texas House, Taylor served three non-consecutive terms as Speaker of the House, and, in the Texas Senate, was twice elected President \"\"pro tempore\"\" of"} +{"qid": "test2649", "pid": "434130", "query": "in the texas legislature the house has members and the senate has", "answer": "member", "passage": "\"United States Congress\"\nUnited States Congress The United States Congress is the bicameral legislature of the Federal government of the United States. The legislature consists of two chambers: the House of Representatives and the Senate. The Congress meets in the United States Capitol in Washington, D.C.. Both senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a gubernatorial appointment. Congress has 535 voting members: 435 representatives and 100 senators. The House of Representatives has six non-voting members representing Puerto Rico, American Samoa, Guam, the Northern Mariana Islands, the U.S. Virgin Islands, and the District of"} +{"qid": "test265", "pid": "1633357", "query": "who played raquel in only fools and horses", "answer": "Tessa Peake-Jones", "passage": "\"Only Fools and Horses\"\nboth Del and Rodney find long-term love, in the form of Raquel (Tessa Peake-Jones) and Cassandra (Gwyneth Strong) respectively; Del also has a son with Raquel, Damien (played by five actors, most recently Ben Smith). Rodney and Cassandra marry, separate and then get back together again. Cassandra miscarries, but then she and Rodney eventually have a baby. Rodney finds out who his real father was. The Trotters finally become millionaires, lose their fortune, and then regain some of it. The most frequent roles for guest actors in \"\"Only Fools and Horses\"\" were as Del or Rodney's once-seen girlfriends, barmaids at"} +{"qid": "test265", "pid": "5888104", "query": "who played raquel in only fools and horses", "answer": "Tessa Peake-Jones", "passage": "\"Tessa Peake-Jones\"\nTessa Peake-Jones Tessa Peake-Jones (born 9 May 1957) is an English actress. She is known for her role as Raquel in the BBC sitcom \"\"Only Fools and Horses\"\", whom she played from December 1988 until the programme ended in 2003. She was educated at Kenmore Park Junior School, Harrow and Downer Grammar School, now known as Canons High School, before training at the Central School of Speech and Drama. Peake-Jones is best known for playing Raquel Turner, the longtime partner of the main character Derek \"\"Del Boy\"\" Trotter, in the television comedy \"\"Only Fools and Horses\"\". She had a co-starring"} +{"qid": "test265", "pid": "8763026", "query": "who played raquel in only fools and horses", "answer": "Tessa Peake-Jones", "passage": "\"Raquel Turner\"\nRaquel Turner Rachel \"\"Raquel\"\" Turner (formerly Slater; born 4 June 1957) is a fictional character from the BBC television sit-com \"\"Only Fools and Horses\"\", in which she was Del Boy's longtime girlfriend. She was portrayed by Tessa Peake-Jones. With \"\"Only Fools and Horses\"\" moving into its sixth series, writer John Sullivan wanted Del Boy to start looking for more mature women, rather than continually chasing 20-year-olds, and to have a long-term relationship, so he came up with the character Raquel for the 1988 Christmas special episode, \"\"Dates\"\". During the episode, she was introduced to Del via a dating agency and"} +{"qid": "test265", "pid": "8763033", "query": "who played raquel in only fools and horses", "answer": "Tessa Peake-Jones", "passage": "\"Raquel Turner\"\nhis \"\"significant other\"\", a term she does not seem to appreciate. Her character also changed as the show went on, moving from an ambitious woman lacking in confidence, to a tougher sarcastic one unafraid to stand up to Del's scheming and fast-talking nature. Raquel Turner Rachel \"\"Raquel\"\" Turner (formerly Slater; born 4 June 1957) is a fictional character from the BBC television sit-com \"\"Only Fools and Horses\"\", in which she was Del Boy's longtime girlfriend. She was portrayed by Tessa Peake-Jones. With \"\"Only Fools and Horses\"\" moving into its sixth series, writer John Sullivan wanted Del Boy to start looking"} +{"qid": "test265", "pid": "5888107", "query": "who played raquel in only fools and horses", "answer": "Tessa Peake-Jones", "passage": "\"Tessa Peake-Jones\"\nand a son, Charlie, born c. 2000. Tessa Peake-Jones Tessa Peake-Jones (born 9 May 1957) is an English actress. She is known for her role as Raquel in the BBC sitcom \"\"Only Fools and Horses\"\", whom she played from December 1988 until the programme ended in 2003. She was educated at Kenmore Park Junior School, Harrow and Downer Grammar School, now known as Canons High School, before training at the Central School of Speech and Drama. Peake-Jones is best known for playing Raquel Turner, the longtime partner of the main character Derek \"\"Del Boy\"\" Trotter, in the television comedy \"\"Only"} +{"qid": "test2651", "pid": "2202342", "query": "green algae is an example of which type of reproduction", "answer": "alternation of generations", "passage": "\"Green algae\"\nthis definition were synonyms. As the green algae clades get further resolved, the embryophytes, which are a deep charophyte branch, are included in \"\"algae\"\", \"\"green algae\"\" and \"\"Charophytes\"\", or these terms are replaced by cladistic terminology such as Archaeplastida, Plantae, Viridiplantae or streptophytes, respectively. Green algae are eukaryotic organisms that follow a reproduction cycle called alternation of generations. Reproduction varies from fusion of identical cells (isogamy) to fertilization of a large non-motile cell by a smaller motile one (oogamy). However, these traits show some variation, most notably among the basal green algae called prasinophytes. Haploid algal cells (containing only one"} +{"qid": "test2651", "pid": "760610", "query": "green algae is an example of which type of reproduction", "answer": "alternation of generations", "passage": "\"Alternation of generations\"\nand green algae and land plants. Alternation of generations occurs in almost all multicellular red and green algae, both freshwater forms (such as \"\"Cladophora\"\") and seaweeds (such as \"\"Ulva\"\"). In most, the generations are homomorphic (isomorphic) and free-living. Some species of red algae have a complex triphasic alternation of generations, in which there is a gametophyte phase and two distinct sporophyte phases. For further information, see Red algae: Reproduction. Land plants all have heteromorphic (anisomorphic) alternation of generations, in which the sporophyte and gametophyte are distinctly different. All bryophytes, i.e. liverworts, mosses and hornworts, have the gametophyte generation as the"} +{"qid": "test2651", "pid": "12590335", "query": "green algae is an example of which type of reproduction", "answer": "alternation of generations", "passage": "Plant\nalgae. Green plants obtain most of their energy from sunlight via photosynthesis by primary chloroplasts that are derived from endosymbiosis with cyanobacteria. Their chloroplasts contain chlorophylls a and b, which gives them their green color. Some plants are parasitic or mycotrophic and may lose the ability to produce normal amounts of chlorophyll or to photosynthesize. Plants are characterized by sexual reproduction and alternation of generations, although asexual reproduction is also common. There are about 320 thousand species of plants, of which the great majority, some 260–290 thousand, are seed plants (see the table below). Green plants provide a substantial proportion"} +{"qid": "test2653", "pid": "6488167", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Ole Einar Bjørndalen", "passage": "\"Duff Gibson\"\nSolberg, who was 35 when he won the gold medal in the 20 km individual biathlon event at the 1972 Winter Olympics in Sapporo; he held the record until Ole Einar Bjørndalen won gold at the 10 km biathlon sprint aged 40 at the 2014 Sochi Olympics. He retired immediately following the 2006 Games in Turin. Gibson also finished tenth in the men's skeleton event at the 2002 Winter Olympics in Salt Lake City. He also won two medals in the men's skeleton event at the FIBT World Championships with a gold in 2004 and a bronze in 2005. Gibson's"} +{"qid": "test2653", "pid": "7233624", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Norway at the 2002 Winter Olympics\"\nteams advanced to semi-finals. Semi-final Gold medal game Contestants Top four teams advanced to semi-finals. Contestants Men's sprint Events: Men's individual Events: Men's Team Four participants per team. Events: Norway at the 2002 Winter Olympics Norway competed at the 2002 Winter Olympics in Salt Lake City, United States. The nation enjoyed its best ever results in gold medals, most notably in the biathlon events, when Ole Einar Bjørndalen swept all four gold medals. With 13 gold medals, Norway tied the Soviet Union at the 1976 Winter Olympics for most gold medals a country won at a Winter Olympics. However, Canada"} +{"qid": "test2653", "pid": "12911469", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Biathlon at the 2002 Winter Olympics\"\nBiathlon at the 2002 Winter Olympics Biathlon at the 2002 Winter Olympics consisted of eight biathlon events. They were held at Soldier Hollow. The events began on 11 February and ended on 20 February 2002. For the first time since 1992, the biathlon program expanded. A new race type, the pursuit was added, the first new race type since the debut of the sprint in 1980. Seven nations won medals in biathlon, with Germany winning the most (3 gold, 5 silver, 1 bronze), while Norway led the medal table with 4 gold medals. These four all involved Ole Einar Bjørndalen,"} +{"qid": "test2653", "pid": "17568214", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Biathlon at the 2014 Winter Olympics – Men's sprint\"\nindividual event at the Winter Games. Bjørndalen won his 3rd gold medal in the Olympic men's sprint. Biathlon at the 2014 Winter Olympics – Men's sprint The men's sprint competition of the Sochi 2014 Olympics was held at Laura Biathlon & Ski Complex on 8 February 2014. It was 10 kilometres in length (6.2 miles). The defending Olympic Champion is Vincent Jay of France, who has since retired. The defending World Champion is Emil Hegle Svendsen of Norway. Countries were assigned quotas using a combination of the Nation Cup scores of their top 3 athletes in the individual, sprint, and"} +{"qid": "test2653", "pid": "17080769", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Ole Einar Bjørndalen", "passage": "\"Biathlon at the 2002 Winter Olympics – Men's sprint\"\nBiathlon at the 2002 Winter Olympics – Men's sprint The Men's 10 kilometre sprint biathlon competition at the 2002 Winter Olympics was held on 13 February, at Soldier Hollow. Competitors raced over two 3.0 kilometre loops and one 4.0 kilometre loop of the skiing course, shooting two times, once prone and once standing. Each miss was penalized by requiring the competitor to race over a 150-metre penalty loop. Ole Einar Bjørndalen, having won the men's 20 kilometre Individual race two days before, came in as one of the favourites. Bjørndalen was also the defending World Cup champion in the sprint,"} +{"qid": "test2653", "pid": "4067867", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Biathlon at the 1998 Winter Olympics\"\nBiathlon at the 1998 Winter Olympics Biathlon at the 1998 Winter Olympics consisted of six biathlon events. They were held at Nozawa Onsen. The events began on 9 February and ended on 21 February 1998. Eight nations won medals in biathlon, with Norway leading the medal table, thanks to five medals, 2 gold, the same as Germany. Uschi Disl was the only individual to win three medals, one of each type. Ole Einar Bjørndalen and Halvard Hanevold led the men's table, with one gold and one silver each. Thirty-four nations sent biathletes to compete in the events. Below is a"} +{"qid": "test2653", "pid": "20510999", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Ole Einar Bjørndalen", "passage": "\"Biathlon at the 2018 Winter Olympics – Men's sprint\"\nBiathlon at the 2018 Winter Olympics – Men's sprint The men's 10 km sprint biathlon competition of the Pyeongchang 2018 Olympics was held on 11 February 2018 at the Alpensia Cross-Country Centre in Pyeongchang, South Korea. The event was won by Arnd Peiffer, with Michal Krčmář taking silver and Dominik Windisch bronze. This was the first individual Olympic medal for both Peiffer and Windisch, whereas for Krčmář, this was the first Olympic medal. The 2014 champion, Ole Einar Bjørndalen, did not qualify for the event, and only the silver medalist, Dominik Landertinger, was competing. The field also included the 2010"} +{"qid": "test2653", "pid": "4067868", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Biathlon at the 1998 Winter Olympics\"\nlist of the competing nations; in parentheses are the number of national competitors. Biathlon at the 1998 Winter Olympics Biathlon at the 1998 Winter Olympics consisted of six biathlon events. They were held at Nozawa Onsen. The events began on 9 February and ended on 21 February 1998. Eight nations won medals in biathlon, with Norway leading the medal table, thanks to five medals, 2 gold, the same as Germany. Uschi Disl was the only individual to win three medals, one of each type. Ole Einar Bjørndalen and Halvard Hanevold led the men's table, with one gold and one silver"} +{"qid": "test2653", "pid": "7233623", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Norway at the 2002 Winter Olympics\"\nNorway at the 2002 Winter Olympics Norway competed at the 2002 Winter Olympics in Salt Lake City, United States. The nation enjoyed its best ever results in gold medals, most notably in the biathlon events, when Ole Einar Bjørndalen swept all four gold medals. With 13 gold medals, Norway tied the Soviet Union at the 1976 Winter Olympics for most gold medals a country won at a Winter Olympics. However, Canada broke this record with 14 when they hosted the Vancouver games. Men's combined Sprint Pursuit 4 × 10 km relay Sprint Pursuit 4 × 5 km relay Top four"} +{"qid": "test2653", "pid": "6573103", "query": "who won every men's biathlon event in the 2002 winter olympics", "answer": "Norway", "passage": "\"Biathlon at the 1972 Winter Olympics\"\nthe competing nations; in parentheses are the number of national competitors. Italy made its Olympic biathlon debut. Biathlon at the 1972 Winter Olympics Biathlon at the 1972 Winter Olympics consisted of two biathlon events, held at Makomanai Biathlon Site. The events began on 9 February and ended on 11 February 1972. Five nations won medals in biathlon, the Soviet Union and Norway leading the medal table with one gold medal each, while East Germany were the only country to win more than one medal. Hansjörg Knauthe, who was part of both East German medals, was the only athlete to win"} +{"qid": "test2654", "pid": "1309631", "query": "when did brent barry won the dunk contest", "answer": "1996", "passage": "\"Slam dunk\"\nround and the contest was won by Dominique Wilkins. In the 1996 NBA Slam Dunk Contest, winner Brent Barry dunked from the free-throw line. Barry received 49 (out of 50) for the dunk. In the 2011 NBA Sprite Slam Dunk Contest, Serge Ibaka dunked from behind the free-throw line, getting a score of 45 for the dunk, and finishing 4th. In the 2016 NBL Pre-Season Challenge Slam Dunk Contest in Australia's National Basketball League, Adelaide 36ers 18 year old American import player Terrance Ferguson dunked from just in front of the free-throw-line. In the 2016 NBA Slam Dunk Contest, Zach"} +{"qid": "test2654", "pid": "3080041", "query": "when did brent barry won the dunk contest", "answer": "1996", "passage": "\"Brent Barry\"\nBrent Barry Brent Robert Barry (born December 31, 1971), commonly known by the nickname Bones, is an American basketball executive, broadcaster and former player. He is the current vice president of basketball operations for the San Antonio Spurs. The , shooting guard played professionally in the National Basketball Association, winning two championships with the Spurs, and also won the 1996 NBA Slam Dunk Contest. He is the son of former NBA player Rick Barry. After retiring, Barry worked as a sports commentator for the \"\"NBA on TNT\"\" and was a studio host for the NBA TV show \"\"NBA Gametime\"\". In"} +{"qid": "test2654", "pid": "3080053", "query": "when did brent barry won the dunk contest", "answer": "1996", "passage": "\"Brent Barry\"\nlater remark that \"\"all the Barrys were buried in Houston\"\". In 2013, Barry began making regular appearances on NBA TV's \"\"The Starters\"\" in his own segment: \"\"The Bone Zone\"\". Brent Barry Brent Robert Barry (born December 31, 1971), commonly known by the nickname Bones, is an American basketball executive, broadcaster and former player. He is the current vice president of basketball operations for the San Antonio Spurs. The , shooting guard played professionally in the National Basketball Association, winning two championships with the Spurs, and also won the 1996 NBA Slam Dunk Contest. He is the son of former NBA"} +{"qid": "test2654", "pid": "3080045", "query": "when did brent barry won the dunk contest", "answer": "1996", "passage": "\"Brent Barry\"\nframe, allowed him to play a variety of positions, including point guard, shooting guard, and small forward; because he was taller than most traditional point guards, he was often considered a point forward when he was running the offense. He was on the San Antonio Spurs championship teams in 2005 and 2007. He won the Slam Dunk Contest in the NBA All-Star Weekend in 1996 with a Julius Erving-inspired slam dunk in which he took off from the free throw line to sail in and dunk one-handed. He was the first caucasian player to win the competition. After being drafted"} +{"qid": "test2655", "pid": "14326522", "query": "when was the first orca put in captivity", "answer": "in the 1960s", "passage": "\"Dawn Brancheau\"\nThis led SeaWorld to repeatedly seek the lifting of various aspects of OSHA's citations and rulings until 2014, when it accepted that further attempts to overturn OSHA were not feasible. Although Brancheau is the only SeaWorld trainer killed by an animal, her death was the third fatality associated with Tilikum and the fourth by a captive orca. Since orcas were first placed in captivity in the 1960s, there have been more than 40 documented safety incidents, with \"\"dozens\"\" of trainers being seriously injured by various orcas. After a 2006 attack, an OSHA investigation in 2007 concluded that, \"\"The continuing factors"} +{"qid": "test2655", "pid": "13029392", "query": "when was the first orca put in captivity", "answer": "in the 1960s", "passage": "\"Captive killer whales\"\nCaptive killer whales Captive killer whales are live killer whales (Orcinus orca) which are held in captivity by humans, often for breeding or performance purposes. The practice of capturing and displaying these whales in exhibitions began in the 1960s, soon becoming popular attractions at public aquariums and aquatic theme parks due to their intelligence, trainability, striking appearance, playfulness, and sheer size. As of September, 2016, there were 56 orcas in captivity worldwide, 33 of which are captive-born. There are 13 live orcas in the Seaworld parks. The practice of keeping killer whales in captivity is controversial, due to the separation"} +{"qid": "test2659", "pid": "20376781", "query": "most runs ever scored in a mlb inning", "answer": "18", "passage": "\"2018 Boston Red Sox season\"\nFirstly, the fifteen-run margin of victory for Boston accounted for the Yankees' worst-ever postseason defeat. The Red Sox failed to score in only the first, fifth, and sixth innings, and generated 7 of their 16 runs in the fourth inning, chasing starter Luis Severino and batting through the order. In addition, Brock Holt hit for the cycle, the first player ever to do so in an MLB postseason game, capping off his performance with a ninth-inning home run against catcher Austin Romine, brought in to pitch when the New York bullpen was overtaxed. Boston faced Houston in the Championship Series,"} +{"qid": "test2659", "pid": "7065117", "query": "most runs ever scored in a mlb inning", "answer": "18", "passage": "\"Game score\"\nearned runs in five innings on August 3, 1998, for a −21. The game score concept expands on Major League Baseball's official definition of a quality start. MLB defines a quality start as six or more innings pitched while allowing three or fewer earned runs. The game score system defines a quality start as a game score at or above 60 hypothetically (50 base + 18 for outs recorded + 4 for the 5th/6th inning - 12 for three earned runs), but as it is rare that an earned run occurs with no walks/hits, the true game score for a"} +{"qid": "test2659", "pid": "7065115", "query": "most runs ever scored in a mlb inning", "answer": "18", "passage": "\"Game score\"\nany pitcher in MLB history in a non-complete game. Indians bench coach Brad Mills removed him after the eighth inning, and Cody Allen pitched the ninth inning to seal a 2-0 win. The previous holder of the record was Matt Harvey, who achieved a game score of 97 for a nine-inning non-complete game against the Chicago White Sox. (Harvey's New York Mets won in ten innings.) On June 18, 2014, Clayton Kershaw posted the 2nd highest ever game score for a 9-inning, no-hit effort. Kershaw struck out 15 while walking none, and the only baserunner was the result of a"} +{"qid": "test2659", "pid": "11021302", "query": "most runs ever scored in a mlb inning", "answer": "18", "passage": "\"2004 Houston Astros season\"\n13 years. Berkman, Craig Biggio, and Eric Bruntlett each homered in the seventh inning. Bagwell recorded his 200th career stolen base on August 30 against the Cincinnati Reds to become the tenth player in MLB history to reach that plateau while hitting 400 home runs. On September 18, Bagwell collected his 1,500th career RBI with a single in the third inning against the Brewers. Two innings later, he homered for his 1,500th run scored, becoming just 29th player in MLB history and first Astro to reach both milestones. Bagwell finished with 27 home runs, stopping a streak of eight consecutive"} +{"qid": "test2659", "pid": "7480388", "query": "most runs ever scored in a mlb inning", "answer": "18", "passage": "\"Billy Bates (baseball)\"\nhit his only MLB extra base hit, a double, in the 8th inning but committed two errors on defense. He later scored the go-ahead run on a Gary Sheffield double in a 9–5 Milwaukee victory. Previously, he stole second base and home plate in the 2nd. His second (and final) MLB RBI occurred on April 18. Rob Deer scored on his single, after Bates entered the game in the 6th inning to replace Sveum, who had been hit by a pitch an inning earlier. By April 27 Bates was hitting .103 over 29 at bats, as Molitor came off the"} +{"qid": "test2659", "pid": "2381641", "query": "most runs ever scored in a mlb inning", "answer": "18", "passage": "\"Jeff Bagwell\"\n9, 2004, Bagwell tied a club record. He recorded his 200th career stolen base on August 30 against Cincinnati to become the tenth player in MLB history to reach that plateau while hitting 400 home runs. On September 18, 2004, Bagwell collected his 1,500th career RBI with a single in the third inning against the Brewers. Two innings later, he homered for his 1,500th run scored, becoming just the 29th player in MLB history and first Astro to reach both milestones. Bagwell finished with 27 home runs, stopping a streak of eight consecutive seasons with at least 30, but extending"} +{"qid": "test266", "pid": "3508512", "query": "who was elected governor of tennessee in 1865", "answer": "Edward H. East", "passage": "\"Edward H. East\"\nEdward H. East Edward Hazzard East (October 1, 1830 – November 12, 1904) was an American attorney, judge, and politician. He served as Secretary of State for the state of Tennessee from 1862 to 1865, having been appointed by Andrew Johnson, the state's military governor under the Union Army occupation during the Civil War. East briefly served as the state's acting governor during the interim between Johnson's inauguration as U.S. Vice President on March 4, 1865, and the inauguration of the state's \"\"elected\"\" governor, William G. Brownlow, on April 5, 1865. East was born in Davidson County, Tennessee, one of"} +{"qid": "test266", "pid": "3605899", "query": "who was elected governor of tennessee in 1865", "answer": "William G. Brownlow", "passage": "\"Alvin Hawkins\"\ngovernor, Andrew Johnson, called for congressional elections to be held in its 9th and 10th congressional districts. Hawkins was elected to the 9th district seat, but the House of Representatives deemed his vote total (1,900) to be too low in proportion to his district's population (18,000), and refused to seat him. He spent the next few months scouting West Tennessee to gather information for the state's military authorities. In 1864, he was appointed United States Attorney for West Tennessee by President Abraham Lincoln. In 1865, Hawkins was appointed to the Tennessee Supreme Court by Governor William G. Brownlow. He served"} +{"qid": "test266", "pid": "7910615", "query": "who was elected governor of tennessee in 1865", "answer": "William G. Brownlow", "passage": "\"Roderick R. Butler\"\nTennessee Volunteer Cavalry under Colonel John K. Miller in late 1863. Butler received the rank of lieutenant colonel, and served until 1864, when he resigned for health reasons. Butler was a delegate to the Republican National Conventions in 1864, 1872 and 1876. In 1865, he was a delegate to the Tennessee state constitutional convention. That same year, he was elected to the Tennessee Senate, but resigned to accept an appointment by Governor William G. Brownlow as judge of the state's First Judicial Circuit Court. He was chairman of the first state Republican executive committee of Tennessee. He was also a"} +{"qid": "test266", "pid": "18479355", "query": "who was elected governor of tennessee in 1865", "answer": "William G. Brownlow", "passage": "\"Alfred Cate\"\njoined Governor Andrew Johnson and in calling for \"\"immediate and unconditional emancipation.\"\" There was still substantial opposition to emancipation at the Convention, however, and after four days of infighting, the Convention adjourned without taking any action. During the reorganization of the state government in 1865, Cate was elected to the Tennessee Senate seat for the Eighth district, which included the counties of Hamilton, Marion, Rhea, Bledsoe, Bradley, and Sequatchie. Cate aligned with the Radical Republicans, supporters of Governor William G. Brownlow who sought retribution against ex-Confederates and civil rights for freed slaves. This legislative session quickly ratified the Thirteenth Amendment"} +{"qid": "test266", "pid": "8548277", "query": "who was elected governor of tennessee in 1865", "answer": "Edward H. East", "passage": "\"Tennessee Secretary of State\"\nsolicitations, the operations of the state library and archives, and the administration of the state Economic Commission on Women. To discharge the above duties, the Tennessee Department of State employs several administrative law judges. According to some historians, during the American Civil War, Secretary of State Edward H. East succeeded to the governorship when Andrew Johnson, who had served as military governor, became Vice President of the United States on March 4, 1865, and served as governor until April 5, when William \"\"Parson\"\" Brownlow was inaugurated as governor. The official \"\"Tennessee Blue Book\"\", published by the secretary of state's office,"} +{"qid": "test2661", "pid": "705488", "query": "what were the two causes of the dust bowl", "answer": "severe drought", "passage": "\"Dust Bowl\"\nTrudell and dusted with the trials and tribulations of Tom Joad – Steinbeck and \"\"The Grapes of Wrath\"\".\"\" Dust Bowl The Dust Bowl was a period of severe dust storms that greatly damaged the ecology and agriculture of the American and Canadian prairies during the 1930s; severe drought and a failure to apply dryland farming methods to prevent the aeolian processes (wind erosion) caused the phenomenon. The drought came in three waves, 1934, 1936, and 1939–1940, but some regions of the high plains experienced drought conditions for as many as eight years. With insufficient understanding of the ecology of the"} +{"qid": "test2661", "pid": "705451", "query": "what were the two causes of the dust bowl", "answer": "severe drought", "passage": "\"Dust Bowl\"\nDust Bowl The Dust Bowl was a period of severe dust storms that greatly damaged the ecology and agriculture of the American and Canadian prairies during the 1930s; severe drought and a failure to apply dryland farming methods to prevent the aeolian processes (wind erosion) caused the phenomenon. The drought came in three waves, 1934, 1936, and 1939–1940, but some regions of the high plains experienced drought conditions for as many as eight years. With insufficient understanding of the ecology of the plains, farmers had conducted extensive deep plowing of the virgin topsoil of the Great Plains during the previous"} +{"qid": "test2661", "pid": "9069150", "query": "what were the two causes of the dust bowl", "answer": "severe drought", "passage": "\"Climate of Minnesota\"\nof April–July was the 2nd driest in the previous century, and the period of May–August was the hottest on record. The combination of dry skies and heat caused a severe drought which cost the state approximately 1.2 billion dollars in crop losses. Other memorable drought years were 1976 and the Dust Bowl years of the 1930s. During the dust bowl, inappropriate farming techniques enhanced by years of drought conditions led to dust storms in Southern Minnesota and the other parts of the Midwest. Drought conditions also have helped spawn forest fires. In 1894 the Great Hinckley Fire destroyed Hinckley killing"} +{"qid": "test2662", "pid": "4811478", "query": "who becomes chief resident on grey's anatomy season 7", "answer": "Kepner", "passage": "\"Grey's Anatomy\"\nthe head of neurosurgery and Meredith's love interest; Preston Burke (Isaiah Washington), the head of cardio, who becomes Yang's fiancé; and Richard Webber (James Pickens, Jr.), the Chief of Surgery and attending general surgeon, and the previous lover of Ellis Grey. In the sixth season, these residents are joined by Jackson Avery (Jesse Williams) and April Kepner (Sarah Drew), former Mercy-West residents who join Seattle Grace following an administrative merger. During the first six seasons, Burke, O'Malley, and Stevens all depart the series. In addition to Webber, Burke, and Shepherd, the surgical wing is primarily supervised by Addison Montgomery (Kate"} +{"qid": "test2663", "pid": "18014259", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"2014 Mutua Madrid Open – Men's Singles\"\nin the 3rd set. The top eight seeds receive a bye into the second round. Santiago Giraldo (Qualified) 2014 Mutua Madrid Open – Men's Singles The 2014 Mutua Madrid Open – Men's Singles was the main men's event of the 2014 Mutua Madrid Open tennis tournament played in Madrid, Spain from 3 May through 11 May 2014. Rafael Nadal was the defending champion. Nadal became the first player who defended his Madrid title since the tournament inception in 2002 when Kei Nishikori retired in the final because of back injury. Nishikori was leading Nadal 6–2, 4–2, but Nishikori suffered a"} +{"qid": "test2663", "pid": "18014258", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"2014 Mutua Madrid Open – Men's Singles\"\n2014 Mutua Madrid Open – Men's Singles The 2014 Mutua Madrid Open – Men's Singles was the main men's event of the 2014 Mutua Madrid Open tennis tournament played in Madrid, Spain from 3 May through 11 May 2014. Rafael Nadal was the defending champion. Nadal became the first player who defended his Madrid title since the tournament inception in 2002 when Kei Nishikori retired in the final because of back injury. Nishikori was leading Nadal 6–2, 4–2, but Nishikori suffered a back injury in the 7th game, allowing Nadal to take the upper hand before ultimately retiring at 0–3"} +{"qid": "test2663", "pid": "13304923", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"2009 Mutua Madrileña Madrid Open – Men's Singles\"\nThe top eight seeds receive a bye into the second round. 2009 Mutua Madrileña Madrid Open – Men's Singles Andy Murray was the defending champion, but lost in the quarterfinals to Juan Martín del Potro. Roger Federer won the final against Rafael Nadal, 6–4, 6–4. The semifinal match between Rafael Nadal and Novak Djokovic was at the time the longest men’s tennis match in the Open era played with the best-of-three system, stretching for 4 hours and 3 minutes with Nadal prevailing, 3–6, 7–6, 7–6. This record was later broken by Roger Federer and Juan Martín del Potro at the"} +{"qid": "test2663", "pid": "13304922", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"2009 Mutua Madrileña Madrid Open – Men's Singles\"\n2009 Mutua Madrileña Madrid Open – Men's Singles Andy Murray was the defending champion, but lost in the quarterfinals to Juan Martín del Potro. Roger Federer won the final against Rafael Nadal, 6–4, 6–4. The semifinal match between Rafael Nadal and Novak Djokovic was at the time the longest men’s tennis match in the Open era played with the best-of-three system, stretching for 4 hours and 3 minutes with Nadal prevailing, 3–6, 7–6, 7–6. This record was later broken by Roger Federer and Juan Martín del Potro at the 2012 London Olympics in their 4-hour and 26 minute semifinal match."} +{"qid": "test2663", "pid": "15580338", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"Madrid Open (tennis)\"\nsurface was officially approved for the 2012 edition of the tournament, in both the ATP and WTA circuits. However, after the event took place in 2012, threats of future boycotts from some players, especially Rafael Nadal and Novak Djokovic (who both lost on the blue surface), led the tournament to return to the traditional red clay for the 2013 season. Madrid Open (tennis) The Madrid Open, sponsored by Mutua Madrileña and so known as Mutua (Madrileña) Madrid Open, is a joint men's and women's professional tennis tournament, held in Madrid, during early May. The clay court event is classified as"} +{"qid": "test2663", "pid": "12567698", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"2008 Mutua Madrileña Masters Madrid\"\n2008 Mutua Madrileña Masters Madrid The 2008 Madrid Masters (also known as the \"\"Mutua Madrileña Masters Madrid\"\" for sponsorship reasons) was a tennis tournament played on indoor hard courts. It was the 7th edition of the Madrid Masters, and was part of the ATP Masters Series of the 2008 ATP Tour. It took place at the Madrid Arena in Madrid, Spain, from October 13 through October 19, 2008. The singles field was led by World No. 1, Beijing Olympics singles gold medalist, French Open and Wimbledon, Monte Carlo, Hamburg, Toronto Masters champion Rafael Nadal, ATP No. 2, US Open titlist,"} +{"qid": "test2663", "pid": "11041898", "query": "who has won the 2017 mens singles mutua madrid open tennis", "answer": "Rafael Nadal", "passage": "\"2007 Mutua Madrileña Masters Madrid\"\n2007 Mutua Madrileña Masters Madrid The 2007 Madrid Masters (also known as the Mutua Madrileña Masters Madrid for sponsorship reasons) was a tennis tournament played on indoor hard courts. It was the 6th edition of the Madrid Masters, and was part of the ATP Masters Series of the 2007 ATP Tour. It took place at the Madrid Arena in Madrid, Spain, from October 15 through October 21, 2007. The announced field was led by World No. 1, Australian Open, Wimbledon and US Open winner and defending champion Roger Federer, ATP No. 2 and French Open winner Rafael Nadal, and US"} +{"qid": "test2664", "pid": "12510530", "query": "who plays the dad in drake and josh", "answer": "Jonathan Goldstein", "passage": "\"Merry Christmas, Drake & Josh\"\nthe DVD. The premiere of \"\"Merry Christmas, Drake & Josh\"\" had 8.095 million viewers. Merry Christmas, Drake & Josh Merry Christmas, Drake & Josh (also known as Drake & Josh: Best Christmas Ever) is a television movie based on the Nickelodeon sitcom \"\"Drake & Josh\"\". Drake Bell, Josh Peck, Miranda Cosgrove, Nancy Sullivan, and Jonathan Goldstein reappear as their respective characters, with several recurring characters from the TV series also reappearing. The film was shot in July 2008. The film premiered on December 5, 2008, as a Nickelodeon Original Movie. It was the third most viewed TV movie on cable"} +{"qid": "test2664", "pid": "3227187", "query": "who plays the dad in drake and josh", "answer": "Jonathan Goldstein", "passage": "\"Drake & Josh\"\nDrake & Josh Drake & Josh is an American television sitcom created by Dan Schneider for Nickelodeon. The series follows stepbrothers Drake Parker (Drake Bell) and Josh Nichols (Josh Peck) as they live together despite having opposite personalities. The series also stars Miranda Cosgrove, Nancy Sullivan, and Jonathan Goldstein. After actors Bell and Peck previously appeared in \"\"The Amanda Show\"\", Schneider decided to create \"\"Drake & Josh\"\" with them in starring roles. The series ran from January 11, 2004, to September 16, 2007, totaling 56 episodes in 4 seasons. It also had three TV films: \"\"Drake & Josh Go Hollywood\"\""} +{"qid": "test2664", "pid": "12510519", "query": "who plays the dad in drake and josh", "answer": "Jonathan Goldstein", "passage": "\"Merry Christmas, Drake & Josh\"\nMerry Christmas, Drake & Josh Merry Christmas, Drake & Josh (also known as Drake & Josh: Best Christmas Ever) is a television movie based on the Nickelodeon sitcom \"\"Drake & Josh\"\". Drake Bell, Josh Peck, Miranda Cosgrove, Nancy Sullivan, and Jonathan Goldstein reappear as their respective characters, with several recurring characters from the TV series also reappearing. The film was shot in July 2008. The film premiered on December 5, 2008, as a Nickelodeon Original Movie. It was the third most viewed TV movie on cable behind \"\"High School Musical 2\"\" and \"\"\"\", both owned by Disney Channel. The film"} +{"qid": "test2664", "pid": "3227193", "query": "who plays the dad in drake and josh", "answer": "Jonathan Goldstein", "passage": "\"Drake & Josh\"\non the Game Boy Advance and Nintendo DS. Both of them were published by THQ and released in the same year. A book series based on \"\"Drake & Josh\"\" has been published by children's publisher Scholastic since 2006. The books are written by author Laurie McElroy. Drake & Josh Drake & Josh is an American television sitcom created by Dan Schneider for Nickelodeon. The series follows stepbrothers Drake Parker (Drake Bell) and Josh Nichols (Josh Peck) as they live together despite having opposite personalities. The series also stars Miranda Cosgrove, Nancy Sullivan, and Jonathan Goldstein. After actors Bell and Peck"} +{"qid": "test2664", "pid": "12510520", "query": "who plays the dad in drake and josh", "answer": "Jonathan Goldstein", "passage": "\"Merry Christmas, Drake & Josh\"\npremiered 15 months after the end of the original \"\"Drake & Josh\"\" series in September 2007. Shortly before Christmas, Walter (Jonathan Goldstein) and Audrey (Nancy Sullivan) decide to leave home for a tropical vacation. Their children Drake (Drake Bell) and Megan (Miranda Cosgrove) come home while Josh (Josh Peck) shows them his snowman air balloon decoration, which Megan sabotages. Later at the mall, Drake tells Josh that he will be throwing a Christmas party on the roof of his workplace the Premiere, which Josh is unsure of, but Helen (Yvette Nicole Brown) approves. Helen then hands Drake a Santa costume"} +{"qid": "test2665", "pid": "679673", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"El Alamein\"\nprevailing Mediterranean Sea winds. Two important World War II battles were fought in the area: El Alamein El Alamein (, , literally \"\"the two flags\"\") is a town in the northern Matrouh Governorate of Egypt. Located on the Mediterranean Sea, it lies west of Alexandria and northwest of Cairo. As of 2007, it had a local population of 7,397 inhabitants. El Alamein has a war museum with collectibles from \"\"the civil war\"\" and other North African battles. Visitors can also go to the Italian and German military cemeteries on Tel el-Eisa Hill outside the town. The German cemetery is an"} +{"qid": "test2665", "pid": "12261784", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"El Alamein Fountain\"\n2011. The El Alamein Fountain was commissioned as a memorial to soldiers who died in 1942 during World War II in two battles at El Alamein, Egypt, and was designed by the Australian architect The Australian 9th Division fought in both the first (July 1942) and second (November 1942) battles of El Alamein during World War II. Both were important for the course of the war. They halted the advance of Axis forces into Egypt and routed them, and are considered a turning point in the Western Desert Campaign. The El Alamein Fountain in Sydney commemorates the Australian army's roles"} +{"qid": "test2665", "pid": "149086", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"First Battle of El Alamein\"\nFirst Battle of El Alamein The First Battle of El Alamein (1–27 July 1942) was a battle of the Western Desert Campaign of the Second World War, fought in Egypt between Axis forces (Germany and Italy) of the Panzer Army Africa (, which included the under Field Marshal () Erwin Rommel) and Allied (British Imperial and Commonwealth) forces (Britain, British India, Australia, South Africa and New Zealand) of the Eighth Army (General Claude Auchinleck). The British prevented a second advance by the Axis forces into Egypt. Axis positions near El Alamein, only from Alexandria, were dangerously close to the ports"} +{"qid": "test2665", "pid": "8330685", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"Dan Pienaar\"\nEast African Campaign, Pienaar commanded the 1st South African Infantry Brigade. He fought in the battles of El Wak, The Juba, Combolcia, and Amba Alagi. In 1941-1942, during the North Africa Campaign, Pienaar fought in the battles of Sidi Rezegh and Gazala. On 10 March 1942, he was promoted to GOC 1st South African Infantry Division, which he led in the battle of Gazala, the retreat to Egypt, the defence of El Alamein, and the final battle of El Alamein. He was twice awarded the DSO and mentioned in dispatches twice for his service in North Africa. On 20 November"} +{"qid": "test2665", "pid": "149144", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"First Battle of El Alamein\"\nof C-in-C (which he refused). Gott was killed on the way to take up his command when his aircraft was shot down. Lieutenant-General Bernard Montgomery was appointed in his place and took command on 13 August. First Battle of El Alamein The First Battle of El Alamein (1–27 July 1942) was a battle of the Western Desert Campaign of the Second World War, fought in Egypt between Axis forces (Germany and Italy) of the Panzer Army Africa (, which included the under Field Marshal () Erwin Rommel) and Allied (British Imperial and Commonwealth) forces (Britain, British India, Australia, South Africa"} +{"qid": "test2665", "pid": "12261804", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"El Alamein Fountain\"\na fearful price for their involvement, suffering almost 6,000 casualties between July and November 1942. The place has a strong or special association with a person, or group of persons, of importance of cultural or natural history of New South Wales's history. The El Alamein Memorial Fountain is of State significance for its historical associations with the Australian soldiers of the 9th Division who fought near the Egyptian town of El Alamein in two battles which helped turn the course of World War II. It is also of State significance for its associations with its designer Bob Woodward, a World"} +{"qid": "test2665", "pid": "12261802", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"El Alamein Fountain\"\nDivision who fought near the Egyptian town of El Alamein in two battles which helped turn the course of World War II towards victory for the Allies. It is also of State significance for its associations with its designer Bob Woodward, a World War II veteran whose career was consequently shifted into national and international prominence as a fountain designer largely because of its popular and critical success. It is rare as a war memorial in NSW which commemorates a battle rather than the loss of individual members of the armed forces. It is also unusual because its beauty as"} +{"qid": "test2665", "pid": "12261803", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"El Alamein Fountain\"\na fountain has historically almost overwhelmed its solemn function a war memorial. El Alamein Memorial Fountain was listed on the New South Wales State Heritage Register on 14 January 2011 having satisfied the following criteria. The place is important in demonstrating the course, or pattern, of cultural or natural history in New South Wales. The El Alamein Memorial Fountain is of State historical heritage significance as a war memorial to the battles fought by Australian soldiers near the Egyptian town of El Alamein which helped turn the course of World War II towards victory for the Allies. The Australians paid"} +{"qid": "test2665", "pid": "19993829", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"André Salvat\"\nunder General Eugène Mittelhauser, stationed in Tripoli, Libya. Salvat refused to accept the armistice of 22 June 1940 and joined the Free France forces in Mandatory Palestine under Captain Raphaël Folliot. Stationed in Moascar, Egypt, he fought in the Battle of Sidi Barrani, Sollum, Bardia, the Siege of Tobruk, Benghazi and El Agueila under Lieutenant Roger Barberot. He fought in the First Battle of El Alamein in Egypt in July 1942 under General Marie-Pierre Kœnig and the Second Battle of El Alamein in October–November 1942. He became a lieutenant in December 1943 and fought in the Italian campaign. He subsequently"} +{"qid": "test2665", "pid": "2560627", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"2nd New Zealand Division\"\nin Egypt in September 1940 and concentration of the division was completed just before it was deployed to northern Greece in March 1941. The division remained as part of the British Eighth Army to the end of World War II in 1945, during which it fought in the Battle of Greece (March–April 1941), the Battle of Crete (May 1941), Operation \"\"Crusader\"\" (November–December 1941), Minqar Qaim (June 1942), First Battle of El Alamein (July 1942), Second Battle of El Alamein (October–November 1942), Libya and Tunisia (December 1942 – May 1943), the Sangro (October–December 1943), Battle of Monte Cassino (February–March 1944), Central"} +{"qid": "test2665", "pid": "1646340", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"7th Armoured Division (United Kingdom)\"\nMatruh, Egypt. Over 359 troops were killed and 560 others were wounded. The Western Desert Force later became HQ XIII Corps, one of the major parts of the British Eighth Army which, from August 1942 was commanded by Lieutenant-General Sir Bernard Montgomery. The 7th Armoured Division took part in most of the major battles of the North African Campaign, including both battles of El Alamein (the First Battle of El Alamein in July 1942, which stopped the Axis advance, and the Second Battle of El Alamein in October/November 1942, which turned the tide of the war in North Africa). The"} +{"qid": "test2665", "pid": "404122", "query": "in which country were the two battles of el alamein fought", "answer": "Egypt", "passage": "\"Second Battle of El Alamein\"\nArmy Group with Harold Alexander in command. The failure of British First Army forces in the run for Tunis in December 1942 led to a prolongation of the North African campaign which would not end until the Italian-German forces in North Africa capitulated in May 1943. Second Battle of El Alamein The Second Battle of El Alamein (23 October – 11 November 1942) was a battle of the Second World War that took place near the Egyptian railway halt of El Alamein. The First Battle of El Alamein had prevented the Axis from advancing further into Egypt. In August 1942,"} +{"qid": "test2666", "pid": "20694046", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"Impractical Jokers Movie\"\nImpractical Jokers Movie Impractical Jokers Movie is an upcoming American reality comedy film directed by Chris Henchy and stars the \"\"Impractical Jokers\"\"' Brian \"\"Q\"\" Quinn, James \"\"Murr\"\" Murray, Salvatore \"\"Sal\"\" Vulcano and Joseph \"\"Joe\"\" Gatto, also known as The Tenderloins. The \"\"Impractical Jokers Movie\"\" \"\"will tell the story of a humiliating high school mishap from 1992 that sends the Impractical Jokers on the road competing in hidden-camera challenges for the chance to turn back the clock and redeem three of the four.\"\" The film will be produced by Joseph Gatto, James Murray, Salvatore Vulcano, Brian Quinn, Chris Henchy and Funny"} +{"qid": "test2666", "pid": "4164247", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"Randy Couture\"\nCouture has appeared in 3 episodes of the TV series \"\"Hawaii Five-0\"\" as Jason Duclair. Couture appeared on \"\"Impractical Jokers\"\" as a guest during Sal Vulcano's punishment in the episode \"\"Pantsing with the Stars\"\". In that episode, Vulcano who refused to do and say with what he's told to during a challenge where each joker posed as a Krav Maga teacher, must try to subdue Couture and pull down his pants. Couture was previously married to Sharon, Tricia, and Kim Couture (née Borrego). He and Kim filed for divorce in May 2009. He continued to coach her and support her"} +{"qid": "test2666", "pid": "20694047", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"Impractical Jokers Movie\"\nOr Die’s Jim Ziegler. The film will be executive produced by Jack Rovner, Funny Or Die’s Mike Farah and Joe Farrell and Marissa Ronca on behalf of truTV. Principal photography for the film began in May 2018, in New York, United States. Filming concluded on June 5, 2018. Impractical Jokers Movie Impractical Jokers Movie is an upcoming American reality comedy film directed by Chris Henchy and stars the \"\"Impractical Jokers\"\"' Brian \"\"Q\"\" Quinn, James \"\"Murr\"\" Murray, Salvatore \"\"Sal\"\" Vulcano and Joseph \"\"Joe\"\" Gatto, also known as The Tenderloins. The \"\"Impractical Jokers Movie\"\" \"\"will tell the story of a humiliating high"} +{"qid": "test2666", "pid": "16486842", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"Daniel Ribacoff\"\nin front of their entire high school peers, and with each response, Dan shared with the audience whether owas being truthful or deceptive. The polygraph exam was presented as the \"\"punishment\"\" to the episode's \"\"Losing Joker\"\". According to a 2015 episode of \"\"Impractical Jokers\"\", the episode \"\"Funny 'Cause It Hurts\"\", Dan attended the wedding of Sal's sister and James Murray during the episode \"\"Brother-In-Loss\"\", as a guest. Dan appeared on the season-two finale of \"\"Brain Games\"\" as a polygraph expert. Dan discussed how the brain lies and the workings of a polygraph. Dan is the host of \"\"The Lie Detective\"\""} +{"qid": "test2666", "pid": "14458509", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"The Tenderloins\"\nalongside Murray. In 2017, he played a security officer in an episode of the sci-fi TV series \"\"12 Monkeys\"\", alongside Joe Gatto. He is a germaphobe and is afraid of most things, including cats. Because of this, many of his punishments in \"\"Impractical Jokers\"\" relate to these fears. Occasionally one of the producers dresses up as Q's cat, Benjamin, to scare Sal. Joseph \"\"\"\"Joe\"\"y\"\" Anthony Gatto Jr. (born June 5, 1976) is an improvisational comedian from the New York City borough of Staten Island. He has 2 older sisters, Gina and Carla. He is of Italian descent. He attended Monsignor"} +{"qid": "test2666", "pid": "16196940", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"Impractical Jokers\"\nImpractical Jokers Impractical Jokers is an American hidden camera reality series that premiered on TruTV on December 15, 2011, and is produced by NorthSouth Productions. It follows Joseph \"\"Joe\"\" Gatto, James \"\"Murr\"\" Murray, Brian \"\"Q\"\" Quinn, and Salvatore \"\"Sal\"\" Vulcano, the four members of the comedy troupe The Tenderloins, as they coerce one another into doing public pranks while being filmed by hidden cameras. The show differs from other prank television programs, focusing on witty humor, as compared to slapstick, crude comedy. On March 7, 2018, TruTV announced that the show would be renewed for an eighth season that will"} +{"qid": "test2666", "pid": "16196941", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"Impractical Jokers\"\nhave 26 episodes and is expected to air in February 2019. TruTV also confirmed an \"\"Impractical Jokers\"\" feature-length movie is planned, which began filming in April 2018 and is expected to premiere sometime in 2019. Joseph \"\"Joe\"\" Gatto, James \"\"Murr\"\" Murray, Brian \"\"Q\"\" Quinn, and Salvatore \"\"Sal\"\" Vulcano, four high school friends who attended Monsignor Farrell High School, from Staten Island, New York, formed the live improv and sketch comedy troupe The Tenderloins in 1999. After a long and successful history, including winning the $100,000 grand prize in NBC's \"\"It’s Your Show\"\" competition, the group went into television. In 2008,"} +{"qid": "test2666", "pid": "14458506", "query": "who gets the most punishments on impractical jokers", "answer": "Sal", "passage": "\"The Tenderloins\"\nFlingus. He will appear in the upcoming movie \"\"My Brother the Time Traveler\"\" as Dr. Murphy and provide a voice to an unannounced character in the upcoming movie \"\"Minions 2\"\". He wrote the novel \"\"Awakened\"\", a sci-fi thriller. He continues to work at NorthSouth Productions where he is the Senior Vice President of Development. He has produced shows for truTV, A&E, TLC, MTV and others. Although Joe is the only one officially married, James married Jenna Vulcano, Sal's sister, as part of a punishment in the final episode of season 3 of \"\"Impractical Jokers\"\". He announced that they annulled the"} +{"qid": "test2667", "pid": "10031326", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Baga, Goa\"\nBaga, Goa Baga a seaside town in Bardez, Goa, India. It comes under the jurisdiction of Calangute, which is 2 km south. Baga is known for its popular beach and Baga Creek. It is visited by thousands of tourists annually. Baga Beach is a popular beach and tourist destination in North Goa. Baga is located at the north end of the contiguous beach stretch that starts from Sinquerim, Candolim, leads to Calangute and then to Baga. The beach contains rows of shacks and fishing boats, and at high tide the beach is narrow. The beach is named after the Baga"} +{"qid": "test2667", "pid": "4731621", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"North Goa district\"\na small number of people. North Goa is mainly famous for beaches which include Anjuna Beach, Candolim Beach, Mandrem Beach, Calangute Beach, Arambol Beach and a few others. Other tourist sites include Fort Aguada, The church of Mae De Dues and the temple of Boghdeshwara. North Goa district North Goa is one of the two districts that make up the state of Goa, India. The district has an area of 1736 km², and is bounded by Sindhudurg district of Maharashtra state to the north and by Belgaum district of Karnataka to the east, by South Goa District to the south,"} +{"qid": "test2667", "pid": "10586084", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Tourism in Goa\"\nstate was hopeful that changes could be made which would attract a more demographic. On 24 November 2017, Delta Corp Limited claimed to have set up the first casino game training course centre in India, at Goa. Goa's beaches cover about of its coastline. These beaches are divided into North and South Goa. North Goa is more commercial and touristy with an abundance of mostly low and medium budget tourist accommodations; whereas South Goa is where most higher–end hotels and private beaches are located. A notable exception in South Goa is Palolem Beach which features basic accommodation and is one"} +{"qid": "test2667", "pid": "19674611", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Suravali railway station\"\nlocated in the Salcete taluka of Goa. It is situated from Goa's Dabolim airport (GOI), and is at a height of above sea level. Madgaon (Margao) railway station in South Goa district is the largest Konkan Railway station within Goa, while Thivim railway station in North Goa comes at second place. The former is a gateway to South Goa, Margao, the urban area of Vasco da Gama and also the beaches of South Goa, while the latter is a gateway to Mapusa town, the emigration-oriented sub-district of Bardez and also the North Goa beach belt. The Karmali railway station is"} +{"qid": "test2667", "pid": "19300449", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Pernem railway station\"\nPernem (also spelt locally as Pednem) is one of the smaller railway stations of Goa. Madgaon (Margao) railway station in South Goa district is the largest, while Thivim railway station in North Goa is the second-largest. The former is a gateway to South Goa, Margao, the urban area of Vasco da Gama and also the beaches of South Goa, while the latter is a gateway to Mapusa town, the emigration-oriented sub-district of Bardez and also the North Goa beach belt. Karmali railway station, another station in Central Goa, is closest to the State-capital of Panaji or Panjim. However, the Pernem"} +{"qid": "test2667", "pid": "6452921", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "Arambol\nArambol Arambol is a traditional fisherman village, located approximately a 90 minutes drive from Dabolim Airport (GOI) within the Pernem administrative region of North Goa, India. The beach attracts many international tourists, mainly during the winter season between November and March. Arambol has a distinct Bohemian feel which attracts many alternative travellers. Arambol beach is considered to be one of the most beautiful beaches in Goa, bordering Keri Beach to the north and Mandrem Beach to the south. Located 43 km north of Goa's capital city of Panaji, Arambol has a population of around 5300. The town has an open"} +{"qid": "test2667", "pid": "6452930", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "Arambol\nJanuary/early February. Arambol Arambol is a traditional fisherman village, located approximately a 90 minutes drive from Dabolim Airport (GOI) within the Pernem administrative region of North Goa, India. The beach attracts many international tourists, mainly during the winter season between November and March. Arambol has a distinct Bohemian feel which attracts many alternative travellers. Arambol beach is considered to be one of the most beautiful beaches in Goa, bordering Keri Beach to the north and Mandrem Beach to the south. Located 43 km north of Goa's capital city of Panaji, Arambol has a population of around 5300. The town has"} +{"qid": "test2667", "pid": "19673305", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Karmali railway station\"\nthe largest, while Thivim railway station in North Goa comes at second place. The former is a gateway to South Goa, Margao, the urban area of Vasco da Gama and also the beaches of South Goa, while the latter is a gateway to Mapusa town, the emigration-oriented sub-district of Bardez and also the North Goa beach belt. In February 2016, \"\"The Times of India\"\" newspaper suggested that there had been a \"\"Lack of basic amenities for commuters at Karmali station\"\". Issues raised about the functioning of Karmali included unpunctual trains, discontinuation of the Jan Shatabdi express and poor conditions. Karmali"} +{"qid": "test2667", "pid": "19673314", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Verna railway station\"\nGama and also the beaches of South Goa, while the latter is a gateway to Mapusa town, the emigration-oriented sub-district of Bardez and also the North Goa beach belt. The Karmali railway station is closest State capital Panjim or Panaji, which is the administrative capital of Goa. Verna railway station Verna railway station (Station code: VEN) is a railway station in Nagoa - Cansaulim Road, Verna, Salcete, South Goa, Goa. It falls under Karwar railway division of Konkan Railway zone, a subsidiary zone of Indian Railways. under the jurisdiction of Konkan Railway. It lies is in Verna village near Cansaulim"} +{"qid": "test2667", "pid": "19673741", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Balli railway station\"\nVasco da Gama and also the beaches of South Goa, while the latter is a gateway to Mapusa town, the emigration-oriented sub-district of Bardez and also the North Goa beach belt. The Karmali railway station is closest State capital Panjim or Panaji, which is the administrative capital of Goa. On 3 May 2015 - 10 bogies of 12223 Mumbai Lokmanya Tilak Terminus-Ernakulam Junction Duronto Express derailed near Balli railway station in South Goa at around 6.30 AM. No casualties. Balli railway station Balli railway station (Station code: BLLI) is a smaller railway station in Goa, under the jurisdiction of Konkan"} +{"qid": "test2667", "pid": "19673471", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "\"Loliem railway station\"\nand it would \"\"facilitate many locals who commute from Loliem-Polem to Margao everyday\"\". The announcement was made by Konkan Railway Corporation's managing director B P Tayal. Madgaon (locally spelt in English more often as Margao) railway station in South Goa district is the largest Konkan Railway station within Goa, while Thivim railway station in North Goa comes at second place. The former is a gateway to South Goa, Margao, the urban area of Vasco da Gama and also the beaches of South Goa, while the latter is a gateway to Mapusa town, the emigration-oriented sub-district of Bardez and also the"} +{"qid": "test2667", "pid": "8124869", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "Candolim\nby the Portuguese way back in 1612 for defense against the Dutch and the Maratha invaders. Along with the fort the church, lighthouse and the barracks of the Aguada Jail have become tourist attractions. Candolim Candolim is a census town in North Goa and is located in the Bardez taluka in the state of Goa, India. It is situated just south of the famous Calangute Beach, and is a popular tourist destination. It is less congested and has better planning than the other beaches of Goa. During the late 16th century, Candolim became the first village to be entirely converted"} +{"qid": "test2667", "pid": "8124862", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "Candolim\nCandolim Candolim is a census town in North Goa and is located in the Bardez taluka in the state of Goa, India. It is situated just south of the famous Calangute Beach, and is a popular tourist destination. It is less congested and has better planning than the other beaches of Goa. During the late 16th century, Candolim became the first village to be entirely converted to Christianity in Bardez by the Franciscans. The present Christian identity of its villagers dates back to the conversion of Santu Sinay (Shenoy), a \"\"ganvkar\"\" (Konkani: freeholder) who belonged to the nobility of his"} +{"qid": "test2667", "pid": "8122055", "query": "baga beach is in north or south goa", "answer": "North Goa", "passage": "Bambolim\nbeach is located about 7 km. from Panaji. It is a neat and clean beach with no crowd. This beach is part rocky and part sandy. Sea waves are not high, not deep so good to enjoy swimming. Grand Hyatt Hotel and Bambolim Beach Resort are located on the beach side. This beach is well connected by road. Bambolim Bambolim is a census town in North Goa district in the state of Goa, India. The only allopathic medical college in the state of Goa, Goa Medical College, is located here. Bambolim is located at . It has an average elevation"} +{"qid": "test2669", "pid": "6442780", "query": "who wrote the theme to last of the mohicans", "answer": "Dougie MacLean", "passage": "\"The Last of the Mohicans (soundtrack)\"\n\"\"I Will Find You\"\" was no longer included. Music from the track \"\"Promentory\"\" was used for a fall 2007 Nike television commercial featuring NFL players Shawne Merriman and Steven Jackson, also directed by Michael Mann. Tracks 1–9 are composed by Trevor Jones except for the main theme which is composed by Dougie MacLean; tracks 10–15 are by Randy Edelman. \"\"Note:\"\" Clannad did a full version of \"\"I Will Find You\"\" on their album \"\"Banba\"\". The Last of the Mohicans (soundtrack) The Last of the Mohicans is the soundtrack album of the film of the same name. Director Michael Mann initially"} +{"qid": "test2669", "pid": "4480562", "query": "who wrote the theme to last of the mohicans", "answer": "Dougie MacLean", "passage": "\"The Last of the Mohicans (1992 film)\"\nand Randy Edelman, and the song \"\"I Will Find You\"\" by Clannad. The main theme of the film is taken from the tune \"\"The Gael\"\" by Scottish singer-songwriter Dougie MacLean. Released on September 25, 1992 in the United States, \"\"The Last of the Mohicans\"\" was met with positive reviews and commercial success during its box-office run. The story takes place in 1757, during the French and Indian War in the Adirondack Mountains, in the British colony of New York. British Army Major Duncan Heyward arrives in Albany. He has been sent to serve under Colonel Edmund Munro, the commander of"} +{"qid": "test267", "pid": "120534", "query": "what type of political system does el salvador have", "answer": "\"flawed democracy\"", "passage": "\"Politics of El Salvador\"\nPolitics of El Salvador Politics of El Salvador takes place in land a framework of A presidential representative democratic republic, whereby the President of El Salvador is both head of state and head of government, and of an Executive power is exercised by the government. Legislative power is vested in both the government and the Legislative Assembly. The Judiciary is independent of the executive and the legislature. The Economist Intelligence Unit has rated El Salvador as \"\"flawed democracy\"\" in 2016. El Salvador has a multi-party system. Two political parties, the Nationalist Republican Alliance (ARENA) and the Farabundo Martí National Liberation"} +{"qid": "test267", "pid": "120538", "query": "what type of political system does el salvador have", "answer": "presidential representative democratic republic", "passage": "\"Politics of El Salvador\"\nactively participates in the Central American Security Commission (CASC), which seeks to promote regional arms control. El Salvador also is a member of the World Trade Organization and is pursuing regional free trade agreements. An active participant in the Summit of the Americas process, El Salvador chairs a working group on market access under the Free Trade Area of the Americas initiative. Politics of El Salvador Politics of El Salvador takes place in land a framework of A presidential representative democratic republic, whereby the President of El Salvador is both head of state and head of government, and of an"} +{"qid": "test2672", "pid": "9311403", "query": "who played stonewall jackson in gods and generals", "answer": "Stephen Lang", "passage": "\"Gods and Generals (film)\"\nGods and Generals (film) Gods and Generals is a 2003 American period war drama film written and directed by Ronald F. Maxwell. It is an adaptation of the 1996 novel of the same name by Jeffrey Shaara and prequel to Maxwell's 1993 film \"\"Gettysburg\"\". The film stars Stephen Lang as Stonewall Jackson, Jeff Daniels as Lieutenant Colonel Joshua Chamberlain and Robert Duvall as General Robert E. Lee. Colonel Robert E. Lee resigns from the Union Army as the south secedes from the Union and both sides prepare for war. Major Jackson, who is a professor at Virginia Military Institute in"} +{"qid": "test2672", "pid": "6238908", "query": "who played stonewall jackson in gods and generals", "answer": "Stephen Lang", "passage": "\"Stephen Lang\"\nthe role of Colonel Nathan Jessup in \"\"A Few Good Men,\"\" a role made famous on film (1992) by Jack Nicholson. He is the winner of over half a dozen theatre awards including the Drama Desk and Helen Hayes awards. In films, he played Maj. Gen. George E. Pickett in \"\"Gettysburg\"\" (1993) and the lead role of Thomas \"\"Stonewall\"\" Jackson in the Gettysburg prequel \"\"Gods and Generals\"\" (2003), both from director Ronald F. Maxwell. He considers \"\"Gods and Generals\"\" to be his finest performance. Arguably, his most famous film role, before \"\"Avatar\"\", was his portrayal of the villainous Ike Clanton"} +{"qid": "test2673", "pid": "16068649", "query": "where does the phrase dressed to the nines", "answer": "Scots in origin", "passage": "\"To the nines\"\nTo the nines \"\"To the nine\"\" is an English idiom meaning \"\"to perfection\"\" or \"\"to the highest degree\"\" or to dress \"\"buoyantly and high class\"\". In modern English usage, the phrase most commonly appears as \"\"dressed to the nine\"\" or \"\"dressed up to the nine\"\". The phrase is said to be Scots in origin. The earliest written example of the phrase is from the 1719 \"\"Epistle to Ramsay\"\" by the Scottish poet William Hamilton: The bonny Lines therein thou sent me, How to the nines they did content me. Robert Burns' \"\"Poem on Pastoral Poetry\"\", published posthumously"} +{"qid": "test2674", "pid": "154743", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Golden Gate Bridge\"\nGolden Gate Bridge The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the strait connecting San Francisco Bay and the Pacific Ocean. The structure links the American city of San Francisco, California – the northern tip of the San Francisco Peninsula – to Marin County, carrying both U.S. Route 101 and California State Route 1 across the strait. The bridge is one of the most internationally recognized symbols of San Francisco, California, and the United States. It has been declared one of the Wonders of the Modern World by the American Society of Civil Engineers. The Frommer's"} +{"qid": "test2674", "pid": "4399968", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"25 de Abril Bridge\"\n25 de Abril Bridge The 25 de Abril Bridge \"\"(Ponte 25 de Abril\"\", 25th of April Bridge, ) is a suspension bridge connecting the city of Lisbon, capital of Portugal, to the municipality of Almada on the left (south) bank of the Tagus river. It was inaugurated on August 6, 1966, and a train platform was added in 1999. It is often compared to the Golden Gate Bridge in San Francisco, US, because they are both suspension bridges of similar color. It was built by the American Bridge Company which constructed the San Francisco–Oakland Bay Bridge, but not the Golden"} +{"qid": "test2674", "pid": "13787916", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Golden Gate Bridge in popular culture\"\nGolden Gate Bridge in popular culture As a prominent American landmark, the Golden Gate Bridge has been used in a variety of media, often shown or mentioned where San Francisco, California is the setting of the story. Golden Gate Bridge has been destroyed in the following films. It has featured also in the following movies. It has been the subject of a 2006 documentary and a 2008-2010 documentary TV series: The bridge appeared in the 2000 video game \"\"Midtown Madness 2\"\". The bridge is replicated in the 2004 video game \"\"\"\" which is itself heavily based on San Francisco, Los"} +{"qid": "test2674", "pid": "18655131", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Suicides at the Golden Gate Bridge\"\nkey design changes made to the bridge by architect Irving Morrow, notably the lowering of the pedestrian railing. It also explores the public discussions of the problem of suicide prevention over the decades, with a focus on notable local news coverage. Suicides at the Golden Gate Bridge Between 1937 and 2012, an estimated 1,600 bodies were recovered of people who had jumped from the Golden Gate Bridge, located in the San Francisco Bay Area in the United States. The four-second fall from the Golden Gate Bridge sends a person plunging at to hit the waters of the San Francisco Bay"} +{"qid": "test2674", "pid": "8129935", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "Vette!\nVette! Vette! is a racing video game where the object is racing a Chevrolet Corvette through the streets of San Francisco. The game was notable for its (at the time) detailed un-shaded polygon rendering of San Francisco streets. It was released on three floppy disks with a Black & White or Color version available. It was also released with a large instruction manual that gave detailed specs about the cars and details about various areas in the city. The game features a 3D rendered San Francisco, including the Golden Gate Bridge, the San Francisco Bay Bridge, and Lombard Street, known"} +{"qid": "test2674", "pid": "18655089", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Suicides at the Golden Gate Bridge\"\nSuicides at the Golden Gate Bridge Between 1937 and 2012, an estimated 1,600 bodies were recovered of people who had jumped from the Golden Gate Bridge, located in the San Francisco Bay Area in the United States. The four-second fall from the Golden Gate Bridge sends a person plunging at to hit the waters of the San Francisco Bay \"\"with the force of a speeding truck meeting a concrete building.\"\" Jumping off the bridge holds a 98 percent fatality rate; , it is estimated that 26 people have survived after jumping. Some die instantly from internal injuries, while others drown"} +{"qid": "test2674", "pid": "6378589", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Golden Gate Bridge, Highway and Transportation District\"\nis the contractor for a majority of bus service provided by Marin Transit, a relationship that dates to 1971. Golden Gate Transit has operated bus service across the Richmond-San Rafael Bridge to Contra Costa County on behalf of the Metropolitan Transportation Commission since 1993. The District's primary revenue source is tolling on the southbound lanes of the Golden Gate Bridge. A mix of tolls, transportation subsidies, and grants is used to support bus and ferry services. The District has a 19-member board of directors: The District is headquartered in San Francisco; it has administrative offices in San Francisco and San"} +{"qid": "test2674", "pid": "1268693", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Golden Gate\"\nGolden Gate The Golden Gate is a strait on the west coast of North America that connects San Francisco Bay to the Pacific Ocean. It is defined by the headlands of the San Francisco Peninsula and the Marin Peninsula, and, since 1937, has been spanned by the Golden Gate Bridge. The entire shoreline and adjacent waters throughout the strait are managed by the Golden Gate National Recreation Area. During the last Ice Age, when sea level was several hundred feet lower, the waters of the glacier-fed Sacramento River and the San Joaquin River scoured a deep channel through the bedrock"} +{"qid": "test2674", "pid": "12465484", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Architecture of San Francisco\"\nfor the design elements featured in the Golden Gate today. By 1930, the Golden Gate project had gained sufficient support from the public to ensure passage of a 35 million bond to finance the construction of the bridge. Construction of the bridge started in 1933 and would last until May 27, 1937. It was the longest suspension bridge in the world, and was considered a masterful feat of architectural engineering, designed to hold 5,700 lb/ft on its roadway and 2,000 lb/ft on its walkways. Architecture of San Francisco The architecture of San Francisco is not so much known for defining"} +{"qid": "test2674", "pid": "17662663", "query": "what color is the golden gate bridge in san francisco", "answer": "red", "passage": "\"Kevin Briggs\"\nKevin Briggs Sergeant Kevin Briggs (also known as the Guardian of the Golden Gate Bridge) is a California Highway Patrol officer who has stopped upwards of two hundred people from jumping off of the Golden Gate Bridge into San Francisco Bay. Recently, Briggs announced that he would be retiring from the California Highway Patrol and focus his efforts on suicide prevention. Briggs originally applied to the California Highway Patrol for employment when his friend applied and he wanted to see what it was about. During his career, he estimates that he dissuaded people from committing suicide on the Golden Gate"} +{"qid": "test2675", "pid": "3291521", "query": "what type of car is a g wagon", "answer": "Mercedes-Benz", "passage": "\"Mercedes-Benz G-Class\"\ncentre console, as well as illuminated door sills with \"\"Grand Edition\"\" lettering. The vehicle went on sale in March 2006. On Nov 11, 2005, Dr. Dieter Zetsche, DaimlerChrysler Board of Management member and head of the Mercedes Car Group, announced Magna Steyr would continue production of G-Class vehicles in Graz. Early models include G 320 CDI (replacing G 270 CDI and G 400 CDI), G 500, G 55 AMG Kompressor. G 320 CDI and G 500 are available in three body variants (Station Wagon short, Station Wagon long, Cabriolet). G 55 AMG Kompressor only available in long Station Wagon body."} +{"qid": "test2675", "pid": "3291546", "query": "what type of car is a g wagon", "answer": "Mercedes-Benz", "passage": "\"Mercedes-Benz G-Class\"\nstation-wagon body style only. It went on sale in the United States in 2015. The Light Armoured Patrol Vehicle 6.1 is based on the Mercedes-Benz G-Wagon Light Armoured Patrol Vehicle 6.X CONCEPT. It includes a 3.0-liter Diesel engine from the 461 series, a tire pressure monitor, 1000 mm water treading depth and a top speed of 140 km/h. The G-Class 6x6 is a truck with 2 rows of seats and with 3-ton payload capacity. The vehicles were unveiled at Eurosatory 2012. It is a concept vehicle based on the concept of a future police car developed for the Los Angeles"} +{"qid": "test2675", "pid": "10036741", "query": "what type of car is a g wagon", "answer": "Mercedes-Benz", "passage": "\"Tata Estate\"\nTata Estate The Tata Estate was a station wagon car produced by Tata Motors. Already a major player in the heavy vehicle segment, this was the company's first attempt at building a passenger car. The car was considered fairly advanced during its time and had many features which were not common among other Indian cars available at the same price range then. The car came with power windows, power steering and a tachometer. The Estate's exterior is based on Mercedes-Benz station wagons made at the time of conception, in particular to the T-series estate-type cars. The Tata Estate was placed"} +{"qid": "test2675", "pid": "3291527", "query": "what type of car is a g wagon", "answer": "Mercedes-Benz", "passage": "\"Mercedes-Benz G-Class\"\ninclude G 350 CDI (replacing G 320), G 500, G 55 AMG. G 350 CDI and G 500 are available in three body variants (short Station Wagon, long Station Wagon and Cabriolet), while G 55 AMG is only available in four-door long Station Wagon body. US models went on sale as 2010 vehicles, which included G55 AMG. Taiwan models included G 350 CDI long Station Wagon, G 500 long Station Wagon, G 55 AMG in 2010, followed by G 350 CDI short Station Wagon in 2011 in limited quantities (20 units). G 350 BlueTEC long Station Wagon was added in"} +{"qid": "test2675", "pid": "1448384", "query": "what type of car is a g wagon", "answer": "Mercedes-Benz", "passage": "\"Station wagon\"\nthe rear-facing jump seat for two passengers in the cargo area of the such as the Mercedes-Benz E-Class wagon. In 1961, Volkswagen introduced the two-door \"\"Variant\"\" body style of the Volkswagen Type 3 (also known as the Volkswagen 1500 - later the Volkswagen 1600). The Type 3's rear-engine layout was retained for the wagon models, but the engine profile was flattened, resulting in a small car offering interior room, as well as trunk space in the front. The model was offered through the 1973 model year. Wagons produced in East Germany include the 1956–1965 Wartburg 311/312/313, the 1963–1990 Trabant 601"} +{"qid": "test2676", "pid": "6057842", "query": "who sings angel of the morning in deadpool", "answer": "Juice Newton", "passage": "\"Angel of the Morning\"\nin the second-season finale of the HBO series \"\"The Leftovers.\"\" The song also features a parody version in \"\"Family Guy\"\" with Peter Griffin portraying himself as Deadpool. Angel of the Morning \"\"Angel of the Morning\"\" is a popular song, written and composed by Chip Taylor, that has been recorded numerous times by, or has been a hit single for, various artists including Evie Sands, Merrilee Rush, Juice Newton, Nina Simone, P. P. Arnold, Olivia Newton-John, The Pretenders/Chrissie Hynde, Dusty Springfield, Mary Mason, Melba Montgomery, Vagiant, Billie Davis, Bonnie Tyler, Rita Wilson, The New Seekers, Skeeter Davis, and Crystal Gayle. The"} +{"qid": "test2676", "pid": "3910390", "query": "who sings angel of the morning in deadpool", "answer": "Juice Newton", "passage": "\"Juice Newton\"\nher own version of the Carpenters' 1978 hit \"\"Sweet Sweet Smile\"\". On May 7, 2012, BGO Records issued a two-CD set containing Newton's three 1970s Capitol albums: \"\"Come To Me\"\", \"\"Well Kept Secret\"\" and \"\"Take Heart\"\". This marks the first time these albums have been available in the CD format. With the release of this set, all Newton's 17 studio albums have been issued on CD. In the 2016 film \"\"Deadpool\"\", Juice Newton's version of \"\"Angel of The Morning\"\" was used for the opening credits montage. Newton bought a thoroughbred gelding named Puppy in 1983 and stabled him at the"} +{"qid": "test2677", "pid": "6188533", "query": "who did kenny rogers sing mary did you know with", "answer": "Wynonna Judd", "passage": "\"Mary, Did You Know?\"\nmodern Christmas classic, being recorded by many artists over the years across multiple genres. \"\"Mary, Did You Know?\"\" is originally in the key of E minor, with a tempo of 53 beats per minute based around a chord progression of Em–D–Am–B7sus4–B7 and is in the meter. A duet version recorded by Wynonna Judd and Kenny Rogers on Rogers' holiday album \"\"The Gift\"\" peaked at No. 55 on the \"\"Billboard\"\" Hot Country Singles & Tracks chart in 1997. Chart positions \"\"Mary, Did You Know?\"\" is Clay Aiken's fifth single for his Christmas album \"\"Merry Christmas with Love\"\". Aiken performed the song"} +{"qid": "test2677", "pid": "12706494", "query": "who did kenny rogers sing mary did you know with", "answer": "Wynonna Judd", "passage": "\"The Gift (Kenny Rogers album)\"\nThe Gift (Kenny Rogers album) The Gift is the twenty-seventh studio album and a holiday album by country music singer Kenny Rogers. It was released in 1996 via Magnatone Records. The album features a rendition of \"\"Mary, Did You Know?\"\" featuring Wynonna Judd. This version of the song charted at No. 55 on Hot Country Songs in 1997. Giving it 2.5 out of 5 stars, Stephen Thomas Erlewine of Allmusic wrote that \"\"it does suffer from uneven material and the occasional indifferent performance. There are enough good moments here to make it worthwhile for hardcore Kenny fans, but not enough"} +{"qid": "test2677", "pid": "12706495", "query": "who did kenny rogers sing mary did you know with", "answer": "Wynonna Judd", "passage": "\"The Gift (Kenny Rogers album)\"\nto make it of interest to less dedicated listeners.\"\" Compiled from \"\"The Gift\"\" liner notes. Choir on \"\"A Soldier's King\"\", \"\"What a Wonderful Beginning\"\", \"\"It's the Messiah\"\", and \"\"The Chosen One Montage\"\": Lisa Cochran, Michael Eldred, James Ferguson, Stephanie Hall, Mark Ivey, Marabeth Jordan, Jana King, Ellen Musik, Louis Nunley, Guy Penrod, Lisa Silver, Dennis Wilson The Gift (Kenny Rogers album) The Gift is the twenty-seventh studio album and a holiday album by country music singer Kenny Rogers. It was released in 1996 via Magnatone Records. The album features a rendition of \"\"Mary, Did You Know?\"\" featuring Wynonna Judd. This"} +{"qid": "test2677", "pid": "3387660", "query": "who did kenny rogers sing mary did you know with", "answer": "Wynonna Judd", "passage": "\"Wynonna Judd\"\nIs The Time released 1996), Kenny Rogers (\"\"Mary, Did You Know?\"\" from his album The Gift released 1996), Huey Lewis & The News (\"\"I'm Not In Love Yet\"\" from their album Plan B released 2001), Kelly Price (\"\"Mary's Song\"\" from her album One Family: A Christmas Album released 2000), Eric Benét and Michael McDonald (\"\"Heart of America\"\" single released 2005), Natalie Grant (\"\"Bring It All Together\"\" from her album Awaken released 2005), Sam Moore (\"\"I Can't Stand The Rain\"\" from his album Overnight Sensational released 2006), Patti Labelle (\"\"My Everything\"\" from her album The Gospel According to Patti LaBelle released"} +{"qid": "test2677", "pid": "20843225", "query": "who did kenny rogers sing mary did you know with", "answer": "Wynonna Judd", "passage": "\"All-Time Greatest Hits (Wynonna Judd album)\"\nis included, along with the track \"\"Jesus and a Jukebox\"\" from 2016's \"\"Wynonna & the Big Noise\"\". The album also includes two duets previously unavailable on a Wynonna release; her duet \"\"A Bad Goodbye\"\" with Clint Black, and her Christmas single with Kenny Rogers, \"\"Mary, Did You Know?\"\". No songs were included from Wynonna's fifth studio album \"\"New Day Dawning\"\". All-Time Greatest Hits (Wynonna Judd album) All-Time Greatest Hits is the title of the third compilation album released by the American country music artist Wynonna Judd. It was released on August 10, 2018 via digital download and on streaming platforms."} +{"qid": "test2678", "pid": "20484598", "query": "when is the new series of keeping faith starting", "answer": "13 February 2018", "passage": "\"Keeping Faith (TV series)\"\nJones, Mali Harries and Aneirin Hughes. The series was filmed concurrently in two languages. This programme is the second in a season of bilingual dramas set to premiere back-to-back on S4C. The initial Welsh broadcasts on S4C carried entirely English subtitles, while repeat airings carried encoded English subtitles. The series has been available on the BBC iPlayer as part of the BBC's ongoing relationship with S4C. Renamed \"\"Keeping Faith\"\", the English-language version premiered on BBC Wales on 13 February 2018. The show was extremely popular in Wales, with an average of 300,000 viewers per episode, making it the most popular"} +{"qid": "test2679", "pid": "16597384", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Ray Donovan\"\nseason was released on DVD and Blu-ray on June 10, 2014. The second season was released on both media on May 26, 2015. The third season was released on DVD and blu-ray on December 29, 2015. The fourth season was released on DVD on December 27, 2016. The fifth season saw a DVD release on January 30, 2018. \"\"Ray Donovan\"\" has received positive reviews from critics. Rotten Tomatoes gives the first season a rating of 76% based on reviews from 38 critics, with the sites consensus stating: \"\"\"\"Ray Donovan\"\" moves quickly between genres and tones, with Liev Schreiber and Jon"} +{"qid": "test2679", "pid": "16597385", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Ray Donovan\"\nVoight's performances making the whiplash worth it\"\". Metacritic gives the first season a weighted average score of 75 out of 100, based on reviews from 36 critics, indicating \"\"generally positive reviews\"\". Tim Goodman, writing for \"\"The Hollywood Reporter\"\", said that \"\"\"\"Showtime\"\" has another gem on their hands\"\" and the casting of Liev Schreiber and Jon Voight was \"\"gold\"\". Ray Donovan Ray Donovan is an American television crime drama series created by Ann Biderman for Showtime. The twelve-episode first season premiered on June 30, 2013. The pilot episode broke viewership records, becoming the biggest premiere of all time on Showtime. Showtime"} +{"qid": "test2679", "pid": "4507118", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Billy Donovan\"\nin the NBA for the following five seasons. Donovan issued apologies to all parties involved, and the Magic soon hired Stan Van Gundy instead. On April 30, 2015, Donovan agreed to coach the Oklahoma City Thunder, reportedly agreeing to a five year deal. replacing Scott Brooks who previously coached the Thunder for seven seasons. Donovan has been chosen to be a head coach for USA Basketball on three occasions. He coached the 2012 U18 team to the 2012 FIBA Americas Under-18 Championship, going 5–0 in the tournament. He then led many of the same players to the 2013 FIBA Under-19"} +{"qid": "test2679", "pid": "2545012", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Kim Raver\"\nthe role of Audrey Boudreau (née Raines) for the twelve-episode \"\"\"\". In 2015, she had a guest-appearance on the eleventh season premiere of \"\"Bones\"\". In 2017, Raver recurred on the fifth season of \"\"Ray Donovan\"\" and also returned as Dr. Teddy Altman on \"\"Grey's Anatomy\"\" for its 14th season. In the same year, Raver was cast in the recurring role of Andrea Frost on the second season of the ABC political drama \"\"Designated Survivor\"\". In May 2018, it was announced that she would once again become a series regular on \"\"Grey's Anatomy\"\", beginning with its 15th season. Raver has been"} +{"qid": "test2679", "pid": "4978930", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Mac MacLeod\"\ntaught me everything from chord progressions on the guitar, to how to appreciate folk and real blues\"\". In the summer of 1964 MacLeod was back in Torquay, this time Donovan joined him for his final summer before fame came knocking. MacLeod joined Donovan's first national tour of Britain which kicked off at the \"\"NME\"\" poll winners' party on 11 April 1965. Donovan's set has been called the first folk-rock gig by music writer Richie Unterberger. One of the tour dates saw Donovan and MacLeod playing on stage with Joan Baez. After Donovan's first UK tour MacLeod teamed up first with"} +{"qid": "test2679", "pid": "10880233", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Brat Pack (duo)\"\nBrat Pack (duo) The Brat Pack was a vocal duo hailing from New Jersey, USA. Its members were Patrick Donovan (born July 26, 1958 in Passaic, New Jersey) and Ray Ray Frazier. Donovan had been guitarist for House/Gospel artist CeCe Rogers and Curtis Hairston. Ray Ray was keyboard player and vocalist in local NYC bands. The BratPack were produced by Robert Clivilles and David Cole who became the multi-platinum founders of C&C Music Factory. Starting as a \"\"house music\"\" club act and after success with their first single, Clivilles and Cole felt that they had Pop appeal. They toured the"} +{"qid": "test2679", "pid": "15598639", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"The Vampire Diaries (season 3)\"\npremiered on Thursday, September 15, 2011. The series stars Nina Dobrev as Elena Gilbert and Katherine Pierce, Paul Wesley as Stefan Salvatore and Silas, Ian Somerhalder as Damon Salvatore, Steven R. McQueen as Jeremy Gilbert, Kat Graham as Bonnie Bennett, Candice Accola as Caroline Forbes, Zach Roerig as Matt Donovan, Michael Trevino as Tyler Lockwood, Matt Davis as Alaric Saltzman and Joseph Morgan as Klaus. 7th Heaven's David Gallagher was cast as werewolf Ray Sutton who has a run-in with Klaus in Tennessee. Australian actress, Claire Holt has been cast as Rebekah the sister of Klaus and Elijah, a beautiful"} +{"qid": "test2679", "pid": "7466742", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Pictures of Matchstick Men\"\ninstruments played in this version is a violin. This version is played in the end of the \"\"Ray Donovan\"\" episode, \"\"If I Should Fall from Grace with God\"\" (2017; season 5, episode 7). The song has been covered at least 16 times. The Slickee Boys were the first to release a cover, in 1983. Ozzy Osbourne and Type O Negative covered the song in 1997 for the film Private Parts soundtrack. Cracker released a live version recorded in Chicago in 1999 on its album, \"\"Hello, Cleveland! Live From the Metro,\"\" released in 2000. In 2002, Death in Vegas released Scorpio"} +{"qid": "test2679", "pid": "8934826", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Chad Donovan\"\nHall of Fame in 2005. Chad Donovan Chad Donovan (born January 11, 1972) is an American performer and gay pornographic film director. He has won numerous awards as a performer and director, and is a member of the GayVN Awards Hall of Fame and the Grabby Awards Hall of Fame. Donovan has described himself variously as an \"\"Ohio farm kid\"\" and \"\"a redneck [from] the hills of Ohio...a genuine redneck.\"\" He grew up on a ranch that bred the American Quarter Horse, noting that he \"\"knew how to ride horses before I knew how to walk.\"\" In high school he"} +{"qid": "test2679", "pid": "12654113", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Joseph Cao\"\nhis immediate responsibilities for Louisiana's FEMA district, leaving him as FEMA assistant administrator for Gulf Coast recovery. Cao had also been critical of John Connolly, FEMA chief for Gulf Coast public assistance, whom Stark cited as his source of information on \"\"how much public-assistance money FEMA should approve for local projects\"\" (in a congressional hearing with Cao on February 25, 2009). Connolly was previously with FEMA's Philadelphia office, and Cao asked rhetorically, \"\"How many times has Philadelphia been hit by a hurricane?\"\" On March 5, 2009, Cao joined Napolitano, Jindal, Housing and Urban Development Secretary Shaun Donovan, Louisiana Lieutenant Governor"} +{"qid": "test2679", "pid": "218295", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Jon Voight\"\nminiseries (2005). Voight also appears in Showtime's \"\"Ray Donovan\"\" TV series, now in its sixth season as Mickey Donovan, a role that brought him newfound critical and audience acclaim and his fourth Golden Globe win in 2014. Voight was born on December 29, 1938, in Yonkers, New York, the son of Barbara (; 1910–1995) and Elmer Voight (né Voytka; 1909–1973), a professional golfer. He has two brothers, Barry Voight (born 1937), a former volcanologist at Pennsylvania State University, and Wesley Voight (born March 21, 1940), known as Chip Taylor, a singer-songwriter who wrote \"\"Wild Thing\"\" and \"\"Angel of the Morning.\"\""} +{"qid": "test2679", "pid": "4507116", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"Billy Donovan\"\njob and was working on a contract extension with UF. However, in late May, the NBA's Orlando Magic offered Donovan their head coaching job to replace Brian Hill, who has been fired after two consecutive losing seasons. Donovan struggled with the decision until June 1, when he agreed to accept the Magic's contract offer, which was reportedly worth $27.5 million over five years. Florida athletic director Jeremy Foley contacted Anthony Grant, Donovan's former assistant who was the head coach at Virginia Commonwealth University at the time, to inquire about his interest in replacing Donovan at Florida. Donovan held an introductory"} +{"qid": "test2679", "pid": "17433010", "query": "how many seasons of ray donovan has there been", "answer": "5", "passage": "\"The Bag or the Bat\"\nMickey Donovan (Jon Voight) is unexpectedly released from prison 5 years early and is anxious to reunite with his family. Ray is responsible for his father's incarceration and will stop at nothing to protect his family from Mickey. In Massachusetts, following his release from prison, Irish gangster Mickey Donovan is driven to a church and murders a priest. In California, Mickey's son Ray works as a fixer for the high-powered Los Angeles law firm of Goldman & Drexler. Ray and his associate Avi are summoned to a hotel room, where Deonte Frasier has woken up next to a dead girl"} +{"qid": "test268", "pid": "15211868", "query": "when was the last time.michigan beat ohio state", "answer": "2011", "passage": "\"2011 Ohio State Buckeyes football team\"\nColorado continued to stay in the game with an Oliver field goal. Basil would kick a field goal to end the third quarter, as well as starting the fourth, and gave Ohio State a 37–10 lead late in the game. A late Colorado touchdown was the last score of the game, as the favored Buckeyes beat Colorado 37–17, rebounding after their previous week's loss to Miami, as Ohio State moved to 3–1 on the season. On a cold rainy day in Columbus, Ohio, the Ohio State Buckeyes opened their 2011 Big Ten Conference campaign against the Michigan State Spartans. Both"} +{"qid": "test2681", "pid": "15949765", "query": "when did world war 2 end in the pacific", "answer": "September 2, 1945", "passage": "\"Joe B. Finley\"\nper day from the Callaghan Ranch, where he was reared, to Laredo in order to attend Holding. Finley served for four years in the United States Army in the Pacific Theatre during World War II, a member of the Texas Army National Guard's 112th Cavalry Regiment, which saw 434 days of combat. Finley was alongside the battleship USS \"\"Missouri\"\" when the Empire of Japan signed the instrument of surrender on September 2, 1945, which effectively ended the war in the Pacific. He was an admirer of General Douglas MacArthur, the liberator of the Philippines in 1944 and later the first"} +{"qid": "test2682", "pid": "18539606", "query": "how many seasons of vampire diaries r there", "answer": "eight", "passage": "\"The Vampire Diaries (season 7)\"\nThe Vampire Diaries (season 7) \"\"The Vampire Diaries\"\", a one-hour American supernatural drama, was renewed for a seventh season by The CW on January 11, 2015, and premiered on October 8, 2015. On March 11, 2016, The CW renewed \"\"The Vampire Diaries\"\" for an eighth season, which was confirmed to be the final one on July 2016. This season represents a soft-reboot for the series, with the exits of Nina Dobrev, Michael Trevino and Steven R. McQueen. The cast features Paul Wesley as Stefan Salvatore, Ian Somerhalder as Damon Salvatore, Kat Graham as Bonnie Bennett, Candice Accola as Caroline"} +{"qid": "test2682", "pid": "15598646", "query": "how many seasons of vampire diaries r there", "answer": "8", "passage": "\"The Vampire Diaries (season 3)\"\nForever\"\" and how bonds formed between some of the siblings. M The Vampire Diaries (season 3) \"\"The Vampire Diaries\"\", a one-hour American supernatural drama, was officially renewed for a third season by The CW on April 26, 2011, that aired from September 15, 2011, to May 10, 2012. The third season consisted of 22 episodes and focused on the story of Klaus' origin, his relation with his family and reveal more about the original family. The third season opened to generally positive reviews. The season takes a gap from the last season and begins with Elena Gilbert's 18th birthday with"} +{"qid": "test2682", "pid": "17844568", "query": "how many seasons of vampire diaries r there", "answer": "8", "passage": "\"Let the Right One In (The Vampire Diaries)\"\nLet the Right One In (The Vampire Diaries) \"\"Let the Right One In\"\" is the 17th episode of the first season of The CW television series, \"\"The Vampire Diaries\"\" and the 17th episode of the series overall. It originally aired on April 8, 2010. The episode's story was written by Brian Young and the teleplay by Julie Plec. It was directed by Dennis Smith. Anna (Malese Jow) is still at Jeremy's (Steven R. McQueen) room where Jeremy tries to convince her to turn him but she does not agree with it. Elena (Nina Dobrev) knocks the door to ask Jeremy's"} +{"qid": "test2682", "pid": "17532937", "query": "how many seasons of vampire diaries r there", "answer": "8", "passage": "\"I Know What You Did Last Summer (The Vampire Diaries)\"\nfeels like the perfect introduction to a season that looks to be filled with changing character dynamics and ever-shifting alliances.\"\" Eric Goldman from IGN rated the episode with a 7.8/10. \"\"What I enjoyed about the premiere is how almost everything we saw actually turned out to be important.\"\" Matt Richenthal from \"\"TV Fanatic\"\" gave the episode 4.5/5. I Know What You Did Last Summer (The Vampire Diaries) \"\"I Know What You Did Last Summer\"\" is the premiere episode of the fifth season of the American series \"\"The Vampire Diaries\"\", and the series' 90th episode overall. \"\"I Know What You Did"} +{"qid": "test2682", "pid": "17915464", "query": "how many seasons of vampire diaries r there", "answer": "8", "passage": "\"Plan B (The Vampire Diaries)\"\nof good-storytelling; or 3) socially responsible. Damon is erratic but not a sadist.\"\" Plan B (The Vampire Diaries) \"\"Plan B\"\" is the 6th episode of the second season of The CW television series, \"\"The Vampire Diaries\"\" and the 28th episode of the series overall. It originally aired on October 21, 2010. The episode was written by Elizabeth Craft and Sarah Fain and directed by John Behring. The episode starts with the scenes switching between Elena (Nina Dobrev) with Stefan (Paul Wesley) and Katherine with Mason (Taylor Kinney) waking up together. Elena and Stefan talk about how to keep hiding from"} +{"qid": "test2682", "pid": "17915449", "query": "how many seasons of vampire diaries r there", "answer": "8", "passage": "\"Plan B (The Vampire Diaries)\"\nPlan B (The Vampire Diaries) \"\"Plan B\"\" is the 6th episode of the second season of The CW television series, \"\"The Vampire Diaries\"\" and the 28th episode of the series overall. It originally aired on October 21, 2010. The episode was written by Elizabeth Craft and Sarah Fain and directed by John Behring. The episode starts with the scenes switching between Elena (Nina Dobrev) with Stefan (Paul Wesley) and Katherine with Mason (Taylor Kinney) waking up together. Elena and Stefan talk about how to keep hiding from Katherine and she keeps feeding Stefan with her blood, meanwhile Katherine tries to"} +{"qid": "test2682", "pid": "16886090", "query": "how many seasons of vampire diaries r there", "answer": "8", "passage": "\"The Killer (The Vampire Diaries)\"\nThe Killer (The Vampire Diaries) \"\"The Killer\"\" is the fifth episode of \"\"The Vampire Diaries's\"\" fourth season, premiering November 8, 2012 on The CW. Professor Shane plots with Connor to free Mystic Falls of vampires on the condition Bonnie is kept out of any danger. He tells Connor the truth about his tattoo, leading Connor to kidnap Jeremy. Taking him to the grill, he decides to entice every vampire in town to come for him, in the hope that he can kill as many as possible in order to complete the tattoo. Elena, still struggling to adapt to being a"} +{"qid": "test2682", "pid": "19600596", "query": "how many seasons of vampire diaries r there", "answer": "eight", "passage": "\"The Vampire Diaries (season 8)\"\nThe Vampire Diaries (season 8) \"\"The Vampire Diaries\"\", an American supernatural drama, was renewed for an eighth season by The CW on March 11, 2016. On July 23, 2016, the CW announced that the upcoming season would be the series' last and would consist of 16 episodes. The season premiered on October 21, 2016 and concluded on March 10, 2017. Filming for the season began on July 20, 2016. It was announced on July 23, 2016, that season 8 of \"\"The Vampire Diaries\"\" would be the series' last. The season would contain 16 episodes. Filming for the season ended"} +{"qid": "test2683", "pid": "6471618", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Marriage Act 1961 (Australia)\"\nv Hyde\"\" (1866) was considered supreme. Though s.46(1) of the Act required celebrants to explain the legal nature of marriage in Australia to a couple as \"\"the union of a man and a woman to the exclusion of all others, voluntarily entered into for life\"\", these words were descriptive or explanatory, rather than outlining what constituted a legally valid marriage in Australia. On 27 May 2004 the then federal attorney-general Philip Ruddock introduced the \"\"Marriage Amendment Bill 2004\"\" to incorporate a definition of marriage into the \"\"Marriage Act 1961\"\" and to outlaw the recognition of same-sex marriages lawfully entered into"} +{"qid": "test2683", "pid": "19728065", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"History of same-sex marriage in Australia\"\nsecuring the law's passage in the Senate, John Gorton, suggested that: Section 46 of the \"\"Marriage Act 1961\"\" requires marriage celebrants to explain the legal nature of marriage in Australia to a couple as \"\"the union of a man and a woman to the exclusion of all others, voluntarily entered into for life\"\", in line with the 1866 English case of \"\"Hyde v Hyde\"\". Before 2004 these words were descriptive or explanatory, rather than outlining what constitutes a legally valid marriage in Australia. In the later stages of the 40th Parliament, public attention increased with respect to same-sex marriage due"} +{"qid": "test2683", "pid": "6471617", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Marriage Act 1961 (Australia)\"\nwas already married (or the overseas divorce is not recognised in Australia), a person was aged under 18 (subject to some exceptions), the persons were direct descendants or siblings, or there was duress or fraud. Part IA authorises the government to make grants to approved organisations for marriage counseling. Two amendments of note to the Act have been made with respect to the legal definition of marriage in Australia, both of which relate to same-sex marriage. Before 2004, there was no definition of marriage in the 1961 Act, and instead the common law definition used in the English case \"\"Hyde"} +{"qid": "test2683", "pid": "6906048", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Marriage in England and Wales\"\nwho had attained the legal age of puberty could contract a valid marriage. A marriage contracted by persons either of whom was under the legal age of puberty was voidable. The legal age of puberty was fourteen years for males and twelve years for females. This section amended the law so that a marriage contracted by persons either of whom was under the age of sixteen years was void. The Marriage Act 1949 prohibited solemnizing marriages during evenings and at night; since the Marriage Act 1836 it had been forbidden to marry between the hours of six in the evening"} +{"qid": "test2683", "pid": "2451668", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Child marriage\"\nChild marriage Child marriage is a formal marriage or informal union entered into by an individual before reaching a certain age, specified by several global organizations such as UNICEF as minors under the age of 18. The legally prescribed marriageable age in some jurisdictions is below 18 years, especially in the case of girls; and even when the age is set at 18 years, many jurisdictions permit earlier marriage with parental consent or in special circumstances, such as teenage pregnancy. In certain countries, even when the legal marriage age is 18, cultural traditions take priority over legislative law. Child marriage"} +{"qid": "test2683", "pid": "12281405", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Minimum legal age in Romania\"\nMinimum legal age in Romania As in most other countries, minimum ages apply in Romania for various activities involving minors. The following minimum legal ages apply in Romania: Under Romanian law, minors are persons under 18. Nevertheless, civil law differentiates between minors under 14, who are completely devoid of legal capacity, and minors age 14-17, who have a limited form of legal capacity. Emancipation of minors under the law occurs either through marriage or by court order, if there are strong reasons, from age 16. The marriageable age is defined in Art 272 of the Civil Code of Romania. This"} +{"qid": "test2683", "pid": "17467232", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Marriage in Australia\"\nMarriage in Australia As was the case for other Western countries, marriage in Australia for most of the 20th century was done early and near-universally, particularly in the period after World War II to the early 1970s. Marriage at a young age was most often associated with pregnancy prior to marriage. Marriage was once seen as necessary for couples who cohabited. While some couples did cohabit before marriage, it was relatively uncommon up until the 1950s in much of the Western world. If both partners are under the age of 18, marriage in Australia is not permitted. In ‘exceptional circumstances’"} +{"qid": "test2683", "pid": "9235472", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Humanist celebrant\"\non who can perform legal marriages. Naming ceremonies, similarly, can be held anywhere without legal implications. In countries where legal marriages can only be performed by religious institutions or the state (such as England), humanist weddings are often performed before or after a civil legal proceeding, but presented as the more meaningful or significant of the two events. As of 2018, humanist celebrants can conduct legally binding marriage ceremonies in Scotland, Ireland, Northern Ireland, Norway, Iceland, Australia, New Zealand, South Africa, Canada and the United States. The British island of Jersey legalised humanist marriages in 2018, but the civil service"} +{"qid": "test2683", "pid": "2451708", "query": "what is the legal age for marriage in australia", "answer": "18", "passage": "\"Child marriage\"\nbe the minimum age for a legal marriage for both men and women (previously the legal age had been 16 for women and 18 for men). The law took effect immediately, and was hailed by a number of human rights, women's rights, medical and legal groups as a landmark ruling for the country. The UN states that although the number of child marriages has declined on a worldwide scale, the problem remains most severe in Africa, despite the fact that Ethiopia cut child marriage rates by a third. Child marriage is common in Latin America and the Caribbean island nations."} +{"qid": "test2684", "pid": "1317491", "query": "who played doctor smith in lost in space", "answer": "Jonathan Harris", "passage": "\"Lost in Space\"\nare to be cryogenically frozen for the voyage, and they are set to be unfrozen when the spacecraft approaches its destination. Meanwhile, Dr. Zachary Smith (Jonathan Harris), Alpha Control's doctor, is revealed to be a saboteur on behalf of an unnamed nation. After disposing of a guard who catches him on board the spacecraft, Smith reprograms the \"\"Jupiter 2\"\"s B-9 environmental control robot (voiced by Dick Tufeld) to destroy critical systems on the spaceship eight hours after launch. Smith, however, becomes trapped aboard at launch and his extra weight throws the \"\"Jupiter 2\"\" off course, causing it to encounter a"} +{"qid": "test2684", "pid": "5144376", "query": "who played doctor smith in lost in space", "answer": "Jonathan Harris", "passage": "\"Land of the Giants\"\nthe part of Dan Ericson, credited his previous football, track and pole vaulting work for helping him with the stunts required. Elements of Allen's \"\"Lost in Space\"\" series recur in \"\"Land of the Giants\"\", notably the relationship between foolish, greedy, on-the-run bank robber Alexander B. Fitzhugh (Kurt Kasznar) and the young boy Barry Lockridge (Stefan Arngrim), paralleling the relationship on \"\"Lost in Space\"\" between Doctor Smith and the young Will Robinson. Also, for main cast billing, Kasznar was treated contractually in the same manner as Jonathan Harris had been on \"\"Lost In Space\"\": billed in last place on the opening"} +{"qid": "test2684", "pid": "4986247", "query": "who played doctor smith in lost in space", "answer": "Jonathan Harris", "passage": "\"Mayored to the Mob\"\nhimself. He stated that he loved doing the voice for bodyguard instructor Leavelle a lot more than he did providing the voice for himself. The Bi-Mon-Sci-Fi-Con science-fiction convention features numerous references to the genre. As well as Mark Hamill, guests at the convention include ALF from the television series \"\"ALF\"\", Tom Baker in costume as the Fourth Doctor from the series \"\"Doctor Who\"\", Gort from the film \"\"The Day the Earth Stood Still\"\" (1951), Godzilla from the film series of the same name and Jonathan Harris in costume as Dr. Zachary Smith from the series \"\"Lost in Space\"\" TV show,"} +{"qid": "test2684", "pid": "3384646", "query": "who played doctor smith in lost in space", "answer": "Jonathan Harris", "passage": "\"Jonathan Harris\"\nof Dr. Smith by Gary Oldman in the 1998 film version, who played the role as a more genuinely menacing and less likeable character than Harris's on television. For the 2018 reboot of \"\"Lost in Space\"\" as a Netflix original series, Parker Posey was cast as Dr. Zachary Smith, a female sociopath using a stolen identity to assume the role of the ship's psychologist. In the mid-1970s, Harris starred in live-action roles in two Saturday morning children's series, \"\"Space Academy\"\" and \"\"Uncle Croc's Block\"\", and was a well-known TV spokesman for the International House of Pancakes. He made several cameo"} +{"qid": "test2684", "pid": "1317504", "query": "who played doctor smith in lost in space", "answer": "Jonathan Harris", "passage": "\"Lost in Space\"\nas a happy crew without internal conflicts. While many storylines in the later series focused primarily on Dr. Zachary Smith, a stowaway and saboteur played by Jonathan Harris, he was absent from the unaired pilot. His character was added after the series was commissioned for production. The pilot episode was first aired on television during a 1997 retrospective. CBS bought the series, turning down \"\"Star Trek\"\" in favor of \"\"Lost in Space\"\". Before the first episode was filmed, the characters Smith and the Robot were added, and the spaceship, originally named \"\"Gemini 12\"\", was renamed the \"\"Jupiter 2\"\" and redesigned."} +{"qid": "test2685", "pid": "20158593", "query": "when does jo come in grey's anatomy", "answer": "2012", "passage": "\"Stephanie Edwards (Grey's Anatomy)\"\nStephanie Edwards (Grey's Anatomy) Stephanie Edwards, M.D. is a fictional character from the medical drama television series \"\"Grey's Anatomy\"\", which airs on the American Broadcasting Company (ABC) in the United States. The character was created by series producer Shonda Rhimes, and was portrayed by actress Jerrika Hinton from 2012 to 2017. Introduced as a surgical intern at the fictional Seattle Grace Mercy West Hospital, later renamed Grey Sloan Memorial Hospital, Stephanie works her way up to resident level with fellow intern and friend, Jo Wilson (Camilla Luddington). The character was described by Hinton as \"\"innovative\"\" who strives to be the"} +{"qid": "test2686", "pid": "2304301", "query": "what is the most common cause of right ventricular heart failure", "answer": "pulmonary heart disease", "passage": "\"Pulmonary heart disease\"\nand depend on the stage of the disorder, and can include blood backing up into the systemic venous system, including the hepatic vein. As pulmonary heart disease progresses, most individuals will develop symptoms like: The causes of pulmonary heart disease (cor pulmonale) are the following: The pathophysiology of pulmonary heart disease (cor pulmonale) has always indicated that an increase in right ventricular afterload causes RV failure (pulmonary vasoconstriction, anatomic disruption/pulmonary vascular bed and increased blood viscosity are usually involved ), however most of the time, the right ventricle adjusts to an overload in chronic pressure. According to Voelkel, et al.,"} +{"qid": "test2686", "pid": "1851707", "query": "what is the most common cause of right ventricular heart failure", "answer": "pulmonary heart disease", "passage": "\"Heart failure\"\nas dizziness, confusion and cool extremities at rest. Right-sided heart failure is often caused by pulmonary heart disease (cor pulmonale), which is typically caused by difficulties of the pulmonary circulation, such as pulmonary hypertension or pulmonic stenosis. Physical examination may reveal pitting peripheral edema, ascites, and liver enlargement. Jugular venous pressure is frequently assessed as a marker of fluid status, which can be accentuated by eliciting hepatojugular reflux. If the right ventricular pressure is increased, a parasternal heave may be present, signifying the compensatory increase in contraction strength. \"\"Backward\"\" failure of the right ventricle leads to congestion of systemic capillaries."} +{"qid": "test2686", "pid": "1851703", "query": "what is the most common cause of right ventricular heart failure", "answer": "left-sided heart failure", "passage": "\"Heart failure\"\nis not exclusively \"\"backward failure\"\" (in the part of the circulation which drains to the ventricle). There are several other exceptions to a simple left-right division of heart failure symptoms. Additionally, the most common cause of right-sided heart failure is left-sided heart failure. The result is that patients commonly present with both sets of signs and symptoms. The left side of the heart is responsible for receiving oxygen-rich blood from the lungs and pumping it forward to the systemic circulation (the rest of the body except for the pulmonary circulation). Failure of the left side of the heart causes blood"} +{"qid": "test2688", "pid": "4882968", "query": "why dry ether is used in woods reaction", "answer": "to form a higher alkane", "passage": "\"Wurtz reaction\"\nhalides. Wurtz reaction The Wurtz reaction, named after Charles-Adolphe Wurtz, is a coupling reaction in organic chemistry, organometallic chemistry and recently inorganic main group polymers, whereby two alkyl halides are reacted with sodium metal in dry ether solution to form a higher alkane: Other metals have also been used to effect the Wurtz coupling, among them silver, zinc, iron, activated copper, indium and a mixture of manganese and copper chloride. The related reaction dealing with aryl halides is called the Wurtz-Fittig reaction.This can be explained by the formation of free radical intermediate and its subsequent disproportionation to give alkene. The"} +{"qid": "test2688", "pid": "4882964", "query": "why dry ether is used in woods reaction", "answer": "to form a higher alkane", "passage": "\"Wurtz reaction\"\nWurtz reaction The Wurtz reaction, named after Charles-Adolphe Wurtz, is a coupling reaction in organic chemistry, organometallic chemistry and recently inorganic main group polymers, whereby two alkyl halides are reacted with sodium metal in dry ether solution to form a higher alkane: Other metals have also been used to effect the Wurtz coupling, among them silver, zinc, iron, activated copper, indium and a mixture of manganese and copper chloride. The related reaction dealing with aryl halides is called the Wurtz-Fittig reaction.This can be explained by the formation of free radical intermediate and its subsequent disproportionation to give alkene. The Wurtz"} +{"qid": "test2689", "pid": "2271315", "query": "where was the new pete's dragon filmed", "answer": "New Zealand", "passage": "\"Pete's Dragon (1977 film)\"\n(2013). It re-imagines a venerable Disney family and is presented as a straightforward drama as opposed to a musical. It is a live-action remake instead of an animated remake by Disney. Principal photography commenced in January 2015 in New Zealand, with Lowery directing. It was released on August 12, 2016. Pete's Dragon (1977 film) Pete's Dragon is a 1977 American live-action/animated musical fantasy comedy film directed by Don Chaffey, produced by Jerome Courtland and Ron Miller, and written by Malcolm Marmorstein. It is based on an unpublished short story of the same name, written by Seton I. Miller and S.S."} +{"qid": "test2689", "pid": "18295186", "query": "where was the new pete's dragon filmed", "answer": "New Zealand", "passage": "\"Pete's Dragon (2016 film)\"\ncommenced in January 2015 in New Zealand, with Lowery directing. Rehearsals began early January 2015, while news reported the beginning of the shooting on January 26, 2015, set to last through April. Live-action filming locations included Bay of Plenty, Taupo and Wellington, while CGI was done at Stone Street Studios. On February 10, 2015, a press release confirmed that principal photography had commenced. Shooting took place in and around Wellington and Rotorua, before transferring to Tapanui, where the old Blue Mountain Lumber mill was used as the mill in the film, and the main street became Millhaven for two weeks."} +{"qid": "test269", "pid": "2356472", "query": "when did they stop making pull tabs on beer cans", "answer": "1970s", "passage": "\"Drink can\"\nmust be an easier way, he later stayed up all night until he came up with the pull tab. Pull-tab cans, or the discarded tabs from them, were also called \"\"pop-tops\"\" colloquially. In Australia these were colloquially known as \"\"ring-pull\"\". Into the 1970s, the pull-tab was widely popular, but its popularity came with a significant problem, as people would frequently discard the pull-tabs on the ground as litter, or drop them into the can and risk choking on them. These problems were both addressed by the invention of the \"\"push-tab\"\". Used primarily on Coors Beer cans in the mid-1970s, the"} +{"qid": "test269", "pid": "1518047", "query": "when did they stop making pull tabs on beer cans", "answer": "1970s", "passage": "\"Coors Brewing Company\"\nand Southeastern states. In 1959, Coors became the first American brewer to use an all-aluminum two-piece beverage can. Also in 1959, the company abandoned pasteurization and began to use sterile filtration to stabilize its beer. Coors currently operates the largest aluminum can producing plant in the world, known as the Rocky Mountain Metal Container (RMMC), in Golden. RMMC is a joint venture between Ball Metal and Coors, having been founded in 2003. In the 1970s, Coors invented the litter-free push tab can, in place of the ring pull-tab. However, consumers disliked the top and it was discontinued soon afterward. Coors"} +{"qid": "test269", "pid": "9768657", "query": "when did they stop making pull tabs on beer cans", "answer": "1990", "passage": "Pull-tab\nis generally also posted in a large printed sheet called a flare. The other side of the ticket contains the perforated tabs. After purchasing the ticket, the player pulls the perforated tabs to reveal their winnings, if any. Cash prizes may be claimed immediately. An electronic pull tab is derived from paper pull tabs. The first electronic pull tab patent was filed in November 1990. The electronic game closely resembled pull tabs in that when new, there are a fixed and preset quantity of chances among which are a fixed quantity of winning chances of a predetermined prize value. Furthermore,"} +{"qid": "test269", "pid": "2356474", "query": "when did they stop making pull tabs on beer cans", "answer": "1970s", "passage": "\"Drink can\"\na second, smaller, push-tab at the top as an airflow vent — a convenience that was lost with the switch from can opener to pull-tab. The \"\"push-tab\"\" was introduced into Australia in the early 1980s and was locally known as \"\"pop-tops\"\". The safety and litter problems were both eventually solved later in the 1970s with Daniel F. Cudzik's invention of the non-removing \"\"Stay-Tab\"\". The pull-ring was replaced with a stiff aluminium lever, and the removable tab was replaced with a pre-scored round tab that functioned similarly to the push-tab, but the raised blister was no longer needed, as the riveted"} +{"qid": "test269", "pid": "19066829", "query": "when did they stop making pull tabs on beer cans", "answer": "1970s", "passage": "\"The Walk (Indiana State)\"\nthroughout downtown Terre Haute on game day. The Walk can be traced back to the late 1970s when students walked from Saturday night football games back to campus, stopping for a beer at every establishment that served beer on Wabash. The Walk (Indiana State) The Walk is an Indiana State Homecoming tradition that began in the late 70's. The Walk begins at 6AM on gameday when a large number of students, reaching in the thousands, make the two mile walk east on Wabash Avenue towards the Football Stadium stopping and having a drink at each bar along the way. In"} +{"qid": "test2690", "pid": "17056917", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me: The Puppy Years\"\nMarley & Me: The Puppy Years Marley & Me: The Puppy Years is a 2011 American direct-to-DVD comedy film and prequel to \"\"Marley & Me\"\" (2008). The film was directed by Michael Damian and written by Damian and his wife Janeen Damian. The film was released on DVD on June 1, 2011. As the title suggests, the film is about Marley in his puppy years. Marley and his new owner Bodi Grogan (Travis Turner) cause trouble at the local dog contest. Unlike the original film however, Marley is given a speaking voice (voiced by Grayson Russell). In this movie Marley"} +{"qid": "test2690", "pid": "10815796", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me (film)\"\nand Spanish. Bonus features on the two-disc set include \"\"Finding Marley\"\", \"\"Breaking the Golden Rule\"\", \"\"On Set with Marley: Dog of All Trades\"\", \"\"Animal Adoption\"\", \"\"When Not to Pee\"\", \"\"How Many Takes\"\", a gag reel, and the Purina Dog Chow Video Hall of Fame and \"\"Marley & Me\"\" video contest finalists. The DVD has sold a total of 3,514,154 copies generating $61.41 million in sales revenue. A prequel to the film, \"\"\"\", was released direct-to-video on June 1, 2011. Marley & Me (film) Marley & Me is a 2008 American comedy-drama film about the titular dog, Marley. It was directed"} +{"qid": "test2690", "pid": "10815778", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me (film)\"\nMarley & Me (film) Marley & Me is a 2008 American comedy-drama film about the titular dog, Marley. It was directed by David Frankel and the screenplay by Scott Frank and Don Roos is based on the memoir of the same name by John Grogan. The film stars Owen Wilson and Jennifer Aniston as Marley's owners. \"\"Marley & Me\"\" was released in the United States and Canada on December 25, 2008, and set a record for the largest Christmas Day box office ever with $14.75 million in ticket sales. The film was followed by a 2011 direct-to-video prequel, \"\"\"\". Soon"} +{"qid": "test2690", "pid": "17056923", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me: The Puppy Years\"\nthat he is happy with Marley. He couldn't keep Marley, because it was his relative's dog. However, the three dogs who belonged to Hans are not his anymore: one family adopts two, but the last one was going to be taken to the dog shelter to find a home. Bodi's mom said he could keep him, because she believed Bodi was ready to take a dog. Thus, that dog finds a new home and was happy too. Marley & Me: The Puppy Years Marley & Me: The Puppy Years is a 2011 American direct-to-DVD comedy film and prequel to \"\"Marley"} +{"qid": "test2690", "pid": "7687771", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me\"\nMarley & Me Marley & Me: Life and Love with the World's Worst Dog is a \"\"New York Times\"\" bestselling autobiographical book by journalist John Grogan, published in 2005, about the thirteen years he and his family spent with their yellow Labrador Retriever, Marley. The dog is poorly behaved and destructive, and the book covers the issues this causes in the family as they learn to accept him in addition to their grief following Marley's death. It has subsequently been adapted by the author in three separate books, as well as separately into a comedy-drama film released in 2008. Told"} +{"qid": "test2690", "pid": "7687775", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me\"\nthe book, Grogan looks back on his family's time with Marley, and the lessons learned, and concludes that: \"\"[C]ommitment matters. That 'in good times and bad, in sickness and in health' really means something. We didn't give up on Marley when it would have been easy to, and in the end he came through and proved himself a great and memorable pet.\"\" Marley & Me Marley & Me: Life and Love with the World's Worst Dog is a \"\"New York Times\"\" bestselling autobiographical book by journalist John Grogan, published in 2005, about the thirteen years he and his family spent"} +{"qid": "test2690", "pid": "10815780", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me (film)\"\nFrom a litter of newborn yellow Labrador retrievers they select Marley (named after reggae singer Bob Marley), who immediately proves to be incorrigible. They take him to Ms. Kornblut (Kathleen Turner), who firmly believes any dog can be trained, but when Marley refuses to obey commands, she blows her whistle and Marley runs towards her and tackles her, pinning her to the ground and humping her on her leg. That gets Marley too far and Ms. Kornblut expels him from her class. Editor Arnie Klein (Alan Arkin) offers John a twice-weekly column in which he can discuss the fun and"} +{"qid": "test2690", "pid": "9876250", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"John Grogan (journalist)\"\nMarley, died at age thirteen, Grogan wrote a column in \"\"The Philadelphia Inquirer\"\" honoring him, and he received over 800 responses from his readers. The readers’ astounding response and interest in Marley sparked Grogan's decision to write a book, due to the realization that he had \"\"a bigger story to tell\"\" and \"\"owed it to Marley to tell the rest of the story.\"\" In 2004, Grogan began writing \"\"Marley & Me\"\", which is told in first-person narrative. Marley is a yellow Labrador retriever, boisterous, somewhat uncontrolled, powerful and often destructive of property but loyal and loving and always forgiven. Released"} +{"qid": "test2690", "pid": "7687774", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me\"\nthe story. In the autobiography, the author states that the eulogy he wrote in his newspaper following the death of his dog received more responses than any other column he had written in his professional life up until that point. \"\"Marley & Me\"\" has been rewritten into three different books: In 2008, the novel was adapted into a family comedy-drama motion picture, also titled \"\"Marley & Me\"\". Released on December 25, 2008, the film stars Owen Wilson and Jennifer Aniston and is directed by David Frankel. A prequel followed in 2011, \"\"\"\". In a discussion on his website devoted to"} +{"qid": "test2690", "pid": "10815786", "query": "is it marley and me or marley and i", "answer": "Marley & Me", "passage": "\"Marley & Me (film)\"\nDevil Wears Prada\"\". He recorded it with the Hollywood Studio Symphony at the Newman Scoring Stage at 20th Century Fox. Dave Barry, Grogan's fellow South Florida humor columnist, makes an uncredited cameo as a guest at the surprise party celebrating Grogan's 40th birthday. \"\"Marley & Me\"\" received mixed to positive reviews from critics. On Rotten Tomatoes the film holds a rating of 63%, based on 137 reviews, with an average rating of 6/10. The site's critical consensus reads, \"\"Pet owners should love it, but \"\"Marley and Me\"\" is only sporadically successful in wringing drama and laughs from its scenario.\"\" On"} +{"qid": "test2691", "pid": "17905710", "query": "where was a hologram for the king filmed", "answer": "Germany", "passage": "\"A Hologram for the King (film)\"\nA Hologram for the King (film) A Hologram for the King is a 2016 comedy-drama film directed, written and co-scored by Tom Tykwer, based on the 2012 novel of the same name written by Dave Eggers, and starring Tom Hanks as a washed-up corporate salesman, who goes to Saudi Arabia to propose a business deal. Sidse Babett Knudsen, Tom Skerritt and Sarita Choudhury also star in this international co-production between France, Germany, the Cayman Islands, Mexico, and the United States. The film was released on April 22, 2016, by Lionsgate, Roadside Attractions and Saban Films. It received positive reviews but"} +{"qid": "test2691", "pid": "19379250", "query": "where was a hologram for the king filmed", "answer": "Berlin", "passage": "\"Amira El Sayed\"\nlater studied acting at the renowned Max Reinhardt-Seminar. She left University in the first year to play a part in Paul Schrader’s „The Cleopatra Club“, a theatre play directed by Rupert Henning where she was discovered by her agent. At the age of 20 she wrote a book, titled „Klang der Freiheit“ („The Sound of Freedom“) which was published in 2013 by the Austrian publishing house „Letter P“. Her first international film was \"\"A Hologram for the King\"\" (2016), starring Tom Hanks and directed by Tom Tykwer. Amira El Sayed currently lives in Berlin, Germany with her husband Harry Dean"} +{"qid": "test2692", "pid": "14550350", "query": "who inaugurated 'world teachers' day'", "answer": "UNESCO", "passage": "\"Sunny Varkey\"\nIndia, Ghana, and Kenya. In 2014, the foundation's Teacher Training Programme committed to train 250,000 teachers within 10 years in under-served communities across the world. In 2013, the Varkey Foundation helped launch the annual Global Education and Skills Forum, in partnership with UNESCO and the U.A.E. Ministry of Education. Bill Clinton gave the inaugural keynote address. Varkey hopes the annual forum will become the \"\"Davos of education\"\". At the second annual forum in March 2014, Varkey announced the Global Teacher Prize, a $1 million award to an exceptional teacher who has made an outstanding contribution to the profession, to be"} +{"qid": "test2692", "pid": "14947199", "query": "who inaugurated 'world teachers' day'", "answer": "UNESCO", "passage": "\"GEMS Education\"\n$1,000,000 to the effort. In September 2011, a further $1 million was pledged with UNESCO to train 10,000 school principals in India, Ghana, and Kenya. In 2014, the foundation's Teacher Training Programme committed to train 250,000 teachers within 10 years in under-served communities across the world. In 2013, the foundation helped launch the annual Global Education and Skills Forum, in partnership with UNESCO and the UAE Ministry of Education. Bill Clinton gave the inaugural keynote address. At the second annual forum in March 2014, the foundation announced the Global Teacher Prize, a $1 million award to an exceptional teacher who"} +{"qid": "test2692", "pid": "6146462", "query": "who inaugurated 'world teachers' day'", "answer": "UNESCO", "passage": "\"World Teachers' Day\"\nfor instance, prepare an occasion for teachers during this day. More than 100 countries commemorate World Teachers' Day and each holds its own celebrations such as the case of India, which has been commemorating Teachers' Day every 5th of September. World Teachers' Day World Teachers' Day, also known as International Teachers Day, is held annually on October 5. Established in 1994, it commemorates the signing of the 1966 UNESCO/ILO Recommendation concerning the Status of Teachers, which is a standard-setting instrument that addresses the status and situations of teachers around the world. This recommendation outlines standards relating to education personnel policy,"} +{"qid": "test2692", "pid": "6146459", "query": "who inaugurated 'world teachers' day'", "answer": "UNESCO", "passage": "\"World Teachers' Day\"\nWorld Teachers' Day World Teachers' Day, also known as International Teachers Day, is held annually on October 5. Established in 1994, it commemorates the signing of the 1966 UNESCO/ILO Recommendation concerning the Status of Teachers, which is a standard-setting instrument that addresses the status and situations of teachers around the world. This recommendation outlines standards relating to education personnel policy, recruitment, and initial training as well as the continuing education of teachers, their employment, and working conditions. World Teachers' Day aims to focus on \"\"appreciating, assessing and improving the educators of the world\"\" and to provide an opportunity to consider"} +{"qid": "test2692", "pid": "6146460", "query": "who inaugurated 'world teachers' day'", "answer": "UNESCO", "passage": "\"World Teachers' Day\"\nissues related to teachers and teaching. To celebrate World Teachers' Day, the UNESCO and Education International (EI) mounts a campaign each year to help give the world better understanding of teachers and the role they play in the development of students and society. They partner with the private sector such as media organizations to achieve this purpose. The campaign focus on different themes for every year. For instance, \"\"Empowering Teachers” is the theme for 2017. This was the year World Teachers' Day commemorated the 20th anniversary of the 1997 UNESCO Recommendation concerning the Status of Higher-Education Teaching Personnel, bringing the"} +{"qid": "test2692", "pid": "19057661", "query": "who inaugurated 'world teachers' day'", "answer": "UNESCO", "passage": "\"Varkey Foundation\"\nclassroom, teachers are taught to interact with students, and to accommodate different learning needs – including those of pupils who learn best through visual, auditory, or kinesthetic methods. In 2013, the foundation launched the annual Global Education and Skills Forum, in partnership with UNESCO and the UAE Ministry of Education. Bill Clinton gave the inaugural keynote address at the 2013 summit. The annual conference, which meets in Dubai in March each year, focuses on addressing the world’s educational needs, including how to achieve education for the hundreds of millions of uneducated or under-educated children in the developing world. The event"} +{"qid": "test2693", "pid": "169806", "query": "what kind of animals live in the great victoria desert", "answer": "malleefowl", "passage": "\"Great Victoria Desert\"\nwater-holding frog do. Birds include the chestnut-breasted whiteface (\"\"Aphelocephala pectoralis\"\") found on the eastern edge of the desert and the malleefowl of Mamungari Conservation Park. Predators of the desert include the dingo (as the desert is north of the Dingo Fence) and two large monitor lizards, the perentie \"\"(Varanus giganteus)\"\" and the sand goanna \"\"(Varanus gouldii)\"\". Great Victoria Desert The Great Victoria Desert, an interim Australian bioregion, is a sparsely populated desert area in Western Australia and South Australia. The Great Victoria is the largest desert in Australia and consists of many small sandhills, grassland plains, areas with a closely"} +{"qid": "test2693", "pid": "169805", "query": "what kind of animals live in the great victoria desert", "answer": "great desert skink", "passage": "\"Great Victoria Desert\"\ngongylocarpa\"\", \"\"Eucalyptus youngiana\"\" and mulga \"\"(Acacia aneura)\"\" shrubs scattered over areas of resilient spinifex grasses particularly \"\"Triodia basedowii\"\". Wildlife adapted to these harsh conditions includes few large birds or mammals. However, the desert does sustain many types of lizard including the vulnerable great desert skink (\"\"Egernia kintorei\"\"), the Central Ranges taipan (discovered in 2007), and a number of small marsupials including the endangered sandhill dunnart \"\"(Sminthopsis psammophila)\"\" and the crest-tailed mulgara \"\"(Dasycercus cristicauda)\"\". One way to survive here is to burrow into the sands, as a number of the desert's animals, including the southern marsupial mole \"\"(Notoryctes typhlops)\"\", and the"} +{"qid": "test2693", "pid": "754755", "query": "what kind of animals live in the great victoria desert", "answer": "dingo", "passage": "\"Great Sandy Desert\"\nthe Great Sandy Desert is dominated by spinifex. Animals occurring in the region include feral camels, dingoes, goannas (including the large perentie) and numerous species of lizards and birds. Other animal inhabitants include bilbies, mulgara, marsupial moles, rufous hare-wallabies, thorny devils, bearded dragons, and red kangaroos. Some of the bird-life found within the desert include the rare Alexandra's parrot, the mulga parrot and the scarlet-chested parrot. Great Sandy Desert The Great Sandy Desert is an interim Australian bioregion, located in the North West of Western Australia straddling the Pilbara and southern Kimberley regions. It is the second largest desert in"} +{"qid": "test2695", "pid": "15469106", "query": "active absorption of water from the soil by the root is mainly affected by", "answer": "ATP", "passage": "\"Absorption of water\"\nAbsorption of water The absorption of water by plants is essential for various metabolic activities. Terrestrial plants get their water supply from soil which serves as the source of water and [minerals]. The way in which water from soil enters roots, particularly to the root xylem, is called \"\"mechanism of water absorption\"\". Both active and passive absorption have been proposed for mechanism of water absorption.This process is known as Conduction Active absorption refers to the absorption of water by roots with the help of ATP, generated by the root respiration: as the root cells actively take part in the process,"} +{"qid": "test2695", "pid": "15469108", "query": "active absorption of water from the soil by the root is mainly affected by", "answer": "ATP", "passage": "\"Absorption of water\"\nis the real force for water absorption). If solute concentration is high and water potential is low in the root cells, water can enter from soil to root cells through endosmosis. Mineral nutrients are absorbed actively by the root cells due to utilisation of adenosine triphosphate (ATP). As a result, the concentration of ions (osmotica) in the xylem vessels is more in comparison to the soil water. A concentration gradient is established between the root and the soil water. Hence, the solute potential of xylem water is more in comparison to that of soil and correspondingly water potential is low"} +{"qid": "test2697", "pid": "12294573", "query": "who played tom hagon in the godfather series", "answer": "Robert Duvall", "passage": "\"The Godfather II (video game)\"\nin \"\"The Godfather II\"\", Dominic has a more central role, appearing in numerous scenes in which he was not present in the film; for example, he is with Frank Pentangeli during his attempted assassination, he accompanies Tom Hagen to see Pat Geary after the prostitute is found dead, and he, rather than Rocco Lampone, assassinates Hyman Roth. Robert Duvall reprises his role from the films and the first game as Tom Hagen, but Al Pacino, who played Michael Corleone in the film, is absent in both likeness and voice, having signed an exclusive contract with Vivendi Universal Games to appear"} +{"qid": "test2697", "pid": "5249667", "query": "who played tom hagon in the godfather series", "answer": "Robert Duvall", "passage": "\"Tom Hagen\"\nfor the same film. Tom Hagen Thomas Hagen is a fictional character in Mario Puzo's novel \"\"The Godfather\"\" and Francis Ford Coppola's films \"\"The Godfather\"\" and \"\"The Godfather Part II\"\". He is portrayed by Robert Duvall in the films. Hagen is the informally adopted son of the mafia don Vito Corleone. He is a qualified lawyer and the \"\"consigliere\"\" to the Corleone American mafia family. Mild-mannered and soft-spoken, he serves as the voice of reason within the family. The novel and first film establish that he is of German-Irish ancestry. Sonny Corleone befriends 11-year-old Tom, who was living on the"} +{"qid": "test2697", "pid": "5249639", "query": "who played tom hagon in the godfather series", "answer": "Robert Duvall", "passage": "\"Tom Hagen\"\nTom Hagen Thomas Hagen is a fictional character in Mario Puzo's novel \"\"The Godfather\"\" and Francis Ford Coppola's films \"\"The Godfather\"\" and \"\"The Godfather Part II\"\". He is portrayed by Robert Duvall in the films. Hagen is the informally adopted son of the mafia don Vito Corleone. He is a qualified lawyer and the \"\"consigliere\"\" to the Corleone American mafia family. Mild-mannered and soft-spoken, he serves as the voice of reason within the family. The novel and first film establish that he is of German-Irish ancestry. Sonny Corleone befriends 11-year-old Tom, who was living on the street after running away"} +{"qid": "test2697", "pid": "1402519", "query": "who played tom hagon in the godfather series", "answer": "Robert Duvall", "passage": "\"Robert Duvall\"\nfilms beginning in the 1970s. He drew a considerable amount of attention in 1970 for his portrayal of the dastardly Major Frank Burns in the film \"\"MASH\"\" and for his portrayal of the title role in \"\"THX 1138\"\" in 1971 where he plays a fugitive trying to escape a society controlled by robots. His first major critical success came portraying Tom Hagen in \"\"The Godfather\"\" (1972) and \"\"The Godfather Part II\"\" (1974), the 1972 film earning him an Academy Award nomination for Best Supporting Actor. In 1976, Duvall played supporting roles in \"\"The Eagle Has Landed\"\" and as Dr. Watson"} +{"qid": "test2698", "pid": "9220", "query": "where are alkali metals located on the periodic table", "answer": "in the s-block", "passage": "\"Alkali metal\"\nAlkali metal The alkali metals are a group (column) in the periodic table consisting of the chemical elements lithium (Li), sodium (Na), potassium (K), rubidium (Rb), caesium (Cs), and francium (Fr). This group lies in the s-block of the periodic table of elements as all alkali metals have their outermost electron in an s-orbital: this shared electron configuration results in their having very similar characteristic properties. Indeed, the alkali metals provide the best example of group trends in properties in the periodic table, with elements exhibiting well-characterised homologous behaviour. The alkali metals are all shiny, soft, highly reactive metals at"} +{"qid": "test2698", "pid": "9345", "query": "where are alkali metals located on the periodic table", "answer": "group 1", "passage": "\"Alkali metal\"\npredominant classification until the rise of the modern medium-long 18-column periodic table, which separated the alkali metals and group 11 metals. The coinage metals were traditionally regarded as a subdivision of the alkali metal group, due to them sharing the characteristic s electron configuration of the alkali metals (group 1: ps; group 11: ds). However, the similarities are largely confined to the stoichiometries of the +1 compounds of both groups, and not their chemical properties. This stems from the filled d subshell providing a much weaker shielding effect on the outermost s electron than the filled p subshell, so that"} +{"qid": "test2698", "pid": "9324", "query": "where are alkali metals located on the periodic table", "answer": "group 1", "passage": "\"Alkali metal\"\nthe bonding. Not as much work has been done predicting the properties of the alkali metals beyond ununennium. Although a simple extrapolation of the periodic table would put element 169, unhexennium, under ununennium, Dirac-Fock calculations predict that the next alkali metal after ununennium may actually be element 165, unhexpentium, which is predicted to have the electron configuration [Og] 5g 6f 7d 8s 8p 9s. Furthermore, this element would be intermediate in properties between an alkali metal and a group 11 element, and while its physical and atomic properties would be closer to the former, its chemistry may be closer to"} +{"qid": "test2698", "pid": "9339", "query": "where are alkali metals located on the periodic table", "answer": "group 1", "passage": "\"Alkali metal\"\npresumably be still more potent, but is not very well-studied due to its instability. Thallium is the heaviest stable element in group 13 of the periodic table. At the bottom of the periodic table, the inert pair effect is quite strong, because of the relativistic stabilisation of the 6s orbital and the decreasing bond energy as the atoms increase in size so that the amount of energy released in forming two more bonds is not worth the high ionisation energies of the 6s electrons. It displays the +1 oxidation state that all the known alkali metals display, and thallium compounds"} +{"qid": "test2698", "pid": "9231", "query": "where are alkali metals located on the periodic table", "answer": "group 1", "passage": "\"Alkali metal\"\nstate characteristic of the alkali metals), together into a group. His table placed hydrogen with the halogens. After 1869, Dmitri Mendeleev proposed his periodic table placing lithium at the top of a group with sodium, potassium, rubidium, caesium, and thallium. Two years later, Mendeleev revised his table, placing hydrogen in group 1 above lithium, and also moving thallium to the boron group. In this 1871 version, copper, silver, and gold were placed twice, once as part of group IB, and once as part of a \"\"group VIII\"\" encompassing today's groups 8 to 11. After the introduction of the 18-column table,"} +{"qid": "test2698", "pid": "879694", "query": "where are alkali metals located on the periodic table", "answer": "group 1", "passage": "\"Period (periodic table)\"\neighth period. Period (periodic table) A period in the periodic table is a horizontal row. All elements in a row have the same number of electron shells. Each next element in a period has one more proton and is less metallic than its predecessor. Arranged this way, groups of elements in the same column have similar chemical and physical properties, reflecting the periodic law. For example, the alkali metals lie in the first column (group 1) and share similar properties, such as high reactivity and the tendency to lose one electron to arrive at a noble-gas electronic configuration. As of"} +{"qid": "test2698", "pid": "879686", "query": "where are alkali metals located on the periodic table", "answer": "group 1", "passage": "\"Period (periodic table)\"\nPeriod (periodic table) A period in the periodic table is a horizontal row. All elements in a row have the same number of electron shells. Each next element in a period has one more proton and is less metallic than its predecessor. Arranged this way, groups of elements in the same column have similar chemical and physical properties, reflecting the periodic law. For example, the alkali metals lie in the first column (group 1) and share similar properties, such as high reactivity and the tendency to lose one electron to arrive at a noble-gas electronic configuration. As of 2016, a"} +{"qid": "test27", "pid": "9844615", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Puttin' on the Dog\"\nwaking the dog again. The dog sees Tom's head, but Tom switches ends and leaves. Tom hides in a barrel and notices Jerry is doing the same. He breaks open the barrel and chases Jerry until Jerry hides in another dog's fur. Jerry swims in the fur and gets Tom to dive in. This wakes up the dog and he scratches both cat and mouse out of his fur. Jerry stops, trips Tom, and gains the dog head for himself. Spike comes around the corner and briefly sees Tom's real head, but Tom quickly hides it. Jerry leaves and Spike"} +{"qid": "test27", "pid": "9844613", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Puttin' on the Dog\"\nto get his hands on Jerry, who's hiding from him in a dog pound. Tom chases Jerry into a dog pound and the dogs expel Tom. Jerry, sitting on Spike's back, taunts Tom. Tom notices a dog statue and steals the head. He walks like a dog and sneaks into the dog pound, but loses the head. He attempts to pull it out when Spike notices him. Tom puts himself back under the head and barks. Spike turns and walks away. Tom frees the head and Jerry sneaks up behind him and imitates barking. Tom is startled and almost claws"} +{"qid": "test27", "pid": "10196029", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Love That Pup\"\nSpike, holding a shotgun in his arms, senses the delectable piece of meat, and sleepwalks after the steak. Jerry, who had tied himself to Tyke as a precautionary measure, is privy to what Tom is trying to accomplish. All of Jerry's efforts to wake up the mesmerized dog fail, and he ends up getting literally flattened. Tom successfully locks Spike in a garden shed. An evil Tom smiles at Jerry. The horrified Jerry runs, Tom knows he could now attack Jerry without his overprotective shield. Tom catches Jerry, trapping him inside an upturned barrel and hammering a cork in its"} +{"qid": "test27", "pid": "10020488", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Life with Tom\"\nTom, of course, also got into the act ---\"\". The scene segues into 1949's \"\"The Little Orphan\"\" beginning where Jerry and Nibbles are walking along the dinner table dressed as pilgrims and ending where Tom surrenders, waving the white flag. Back to the present day, Tom hears Spike and Tyke laughing. He extends his neck out to see what page the father and son dogs are reading and moves to the page where Jerry reveals: \"\"Chapter XX A dog may be man's best friend but my best friend happens to be a canary ---- For once I really was in"} +{"qid": "test27", "pid": "10247919", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Smarty Cat\"\nthat picture followed. After the cartoon Butch laughs and says: \"\"Lover boy\"\" while mimicking Tom, but then sees Jerry again. Tom kicks Jerry out of the house again. Jerry lands in Spike's mouth again. Jerry opens Spike's eyelid like a curtain and frowns. Butch says: \"\"\"\"Part two coming up. This is the time you went fishing, Tom!\"\"\"\". Part two is named \"\"The Dumb Dog\"\" (the opening scene from \"\"Cat Fishin'\"\"). After that cartoon Butch says: \"\"Now there is a dumb dog!\"\" and sees Jerry again, watching the movie from the mail slot, figuring he'd be safe there. The cats frown"} +{"qid": "test27", "pid": "9844614", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Puttin' on the Dog\"\nthrough the wall before he sees the mouse and chases Jerry, spotting him in a bone-hat. Tom bolts after him, and Jerry hides. Convinced that the end of the dog bone nearby is Jerry in disguise, Tom grabs it and is met by an angry Spike. As Spike chomps down, Tom causes Spike to swallow his bone and hides underneath a huge St. Bernard, which goes to sleep and Tom pops out from under it without the dog head. Tom wakes the dog and is hanging from the collar. Tom attaches the head to his rear and pops out again,"} +{"qid": "test27", "pid": "9844617", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Puttin' on the Dog\"\nsees Jerry follow the path close to him and prepares to seize him; unfortunately, Spike is also coming around the corner. Tom grabs Spike and tries to fit him over his head. When he can't move after a few steps, Tom realizes something is up and sees the dog chomping at him. Tom hides behind a wall and spots Jerry/head. In his path, though, is a long dog akin to a train stop. The dog apparently a dachshund with two heads, until Jerry reveals himself and sticks his tongue out at Tom, only to run into the doghouse. Jerry dashes"} +{"qid": "test27", "pid": "9774632", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"The Truce Hurts\"\nthe furniture was thrown out and Jerry is chased off the house by Tom and Spike. The mouse gets an iron pipe, the cat gets a frying pan and the dog gets a baseball bat. They start to fight about, but Spike all of a sudden stops it. He questions, \"\"What's all this fighting getting in us, huh? Cats can get along dogs, can't they? And mice can get along with cats, can't they?\"\" The three characters decide to become pals, and they sign a peace treaty in the house. Then, Tom, Jerry and Spike go to sleep after this,"} +{"qid": "test27", "pid": "10268761", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Pet Peeve (1954 film)\"\ndrops a piece of bread as Jerry tries to steal it. Tom stops Jerry by stepping on his tail as he takes the piece of bread from Jerry and pops him back to his hole. They overhear an argument taking place between the owners of the house named Joan and George. Joan and George decide that the food costs are far too high and their dog and cat are eating too much. George reads all of the costs saying Dog food and Cat food. The argument is now saying that they decided to get rid of Tom or Spike. The"} +{"qid": "test27", "pid": "10247623", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Fit to Be Tied (film)\"\nSpike's foot with a hammer after hearing the dog's cries in pain, and as a reward, Spike becomes Jerry's protector, providing him with a bell to ring whenever he is in trouble. Jerry walks away, carefree and pleased with his good deed. Tom sees a good opportunity to catch his unaware rival and hides until Jerry walks around the corner, catching the mouse by surprise. After snatching up Jerry, Tom becomes curious as to what the bell could be for and rings it. Spike drops right on top of him and throws him onto the concrete twice, then picks him"} +{"qid": "test27", "pid": "10108054", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"The Dog House (film)\"\nhouse, destroying it. Tom hides, but quickly spots Jerry. Tom uses a roller to mow Jerry down with as Spike completes his doghouse and begins sleeping. Spike holds out his hand to stop Tom, who fails to notice the dog as he still mows right over him, making Spike an arrow shape. Tom chases Jerry into his mousehole and lights a firework, which Jerry promptly throws into Spike's doghouse. Tom tries to stop Spike from looking inside, but Spike punches him away and looks inside anyway as the firework explodes in his face. Tom chases Jerry up a power pole"} +{"qid": "test27", "pid": "10196024", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Love That Pup\"\nleft hand, and drops Tyke in fear. Tom smiles nervously and attempts to run off, but Spike grabs Tom's whiskers and issues an ultimatum: \"\"\"\"Listen pussycat. If I catch you bothering my boy again, I'll tear you apart! Now beat it!\"\"\"\" Spike then releases him and Tom flees, crashing into (in turn) a tree, a fountain, a clothesline hanger and then into a trash can. Jerry emerges from Tyke's ear and walks off casually until Tom comes running back. Jerry takes cover by diving into what appears to be Spike's jaw, but he really ducked under the dog's chin. Seeing"} +{"qid": "test27", "pid": "10330735", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Pup on a Picnic\"\npicnic basket, draws a likeness of himself onto a hot dog to trick Tom into taking food from their basket, which angers Spike; however, Tom evades Spike by tricking him to lunge for a hot dog, where Spike crashes into a shallow lake; which is where he is knocking his head and a word inside a pink circle which reads \"\"sucker\"\". Jerry then leaves the basket and hides behind mushrooms, but is found by Tom, causing Jerry to jump into Tyke's sandwich. Tom chases Jerry, but Jerry jumps into Spike's hands, causing Tom to flee, before jumping into the basket"} +{"qid": "test27", "pid": "10196026", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Love That Pup\"\nout of the scene and runs away, dropping the teeth on the bucket. A few moments later, Tom spies Jerry sleeping next to Tyke, now using the dogs as canine shields. Hiding behind Tyke's kennel, he reaches out for Jerry. Jerry quietly moves Tyke's tail into Tom's grip, so that Tom ends up grabbing Tyke. After running off with the little pup, Tom realizes his mistake. He turns around to see a sleeping Spike feeling for Tyke. Tom rushes back into Tyke's place, taking on the role of Tyke. To wake up the dog, Jerry then lifts up Tyke's kennel"} +{"qid": "test27", "pid": "3529853", "query": "what's the dog's name on tom and jerry", "answer": "Spike", "passage": "\"Tom and Jerry\"\nto remove his ring. In \"\"The Mouse Comes to Dinner\"\" Tom speaks to his girlfriend Toots while inadvertently sitting on a stove: \"\"Say, what's cookin'?\"\", to which Toots replies \"\"You are, stupid.\"\" Another instance of speech comes in \"\"Solid Serenade\"\" and \"\"The Framed Cat\"\", where Tom directs Spike through a few dog tricks in a dog-trainer manner. Co-director William Hanna provided most of the squeaks, gasps, and other vocal effects for the pair, including the most famous sound effects from the series, Tom's leather-lunged scream (created by recording Hanna's scream and eliminating the beginning and ending of the recording, leaving"} +{"qid": "test270", "pid": "818700", "query": "what is the poorest county in the state of florida", "answer": "Union", "passage": "\"Union County, Florida\"\nUnion County, Florida Union County is a county in the U.S. state of Florida, the smallest in the state. As of the 2010 census, the population was 15,535. The county seat is Lake Butler. With a per capita income of $18,255 (as of 2017), it is the third-poorest county in the United States. Union County was created in 1921 from part of Bradford County. It was named to honor the concept of unity. Union County is the location of Union Correctional Institution and the Reception and Medical Center (RMC). Union CI is a maximum security prison and is home to"} +{"qid": "test2700", "pid": "5222307", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta\"\nTemple of Vesta The Temple of Vesta (Latin \"\"Aedes Vestae\"\"; ) is an ancient edifice in Rome, Italy, located in the Roman Forum near the Regia and the House of the Vestal Virgins. The temple's most recognizable feature is its circular footprint. Since the worship of Vesta began in private homes, the architecture seems to be a reminder of its history. The extant temple used Greek architecture with Corinthian columns, marble, and a central cella. The remaining structure indicates that there were twenty Corinthian columns built on a podium fifteen meters in diameter. The roof probably had a vent at"} +{"qid": "test2700", "pid": "5222308", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta\"\nthe apex to allow smoke release. All temples to Vesta were round, and had entrances facing east to symbolize connection between Vesta’s fire and the sun as sources of life. The Temple of Vesta represents the site of ancient cult activity as far back as 7th century BCE. Numa Pompilius is believed to have built this temple along with the original Regia and House of the Vestal Virgins in its original form. Around the Temple stood The Sacred Grove, in which also there was a graveyard for the priests and virgins. It was one of the earliest structures located in"} +{"qid": "test2700", "pid": "9423284", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta, Tivoli\"\nMuseum, London. In Northern Ireland, the Mussenden Temple at Downhill was built by Frederick Hervey, 4th Earl of Bristol and Bishop of Derry, in the style of the Temple of Vesta at Tivoli. Indeed, in 1777, he attempted to buy the Temple of Vesta and bring it back to Downhill, but Pope Pius VI would not accede to the proposal\"\". In France, the temple inspired Richard Mique's \"\"Temple of Love\"\" in his \"\"jardin anglo-chinois\"\" at the Petit Trianon and Gabriel Davioud's \"\"Temple de Sibylle\"\" in the Parc des Buttes Chaumont. In Poland, the Temple of the Sibyl in Puławy was"} +{"qid": "test2700", "pid": "2493729", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Sacred fire of Vesta\"\nMarch. The sacred fire burned in Vesta's circular temple, built in the Roman Forum below the Palatine Hill in pre-republican times. Among other sacred objects in the temple was the Palladium, a statue of Pallas Athena supposedly brought by Aeneas from Troy. The temple burned completely on at least four occasions and caught fire on two others. It was last rebuilt in 191 AD on the orders of Julia Domna, the wife of the emperor Septimius Severus. The rites of Vesta ended in 394 by order of the Christian emperor Theodosius I. The fire was extinguished and the College of"} +{"qid": "test2700", "pid": "18364227", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vesta Battery Corporation\"\nleased factory space at 1521 Wabash Avenue. These buildings were part of the emerging Motor Row District, a stretch of buildings from Wabash to Indiana Avenues from 12th Street to 26th Street. When the company again needed additional space, Vesta purchased the Mt. Sinai Temple on the southwest corner of 21st Street and Indiana Avenue. The temple was demolished, and in its place, Vesta built a four-story factory, the first built to the company's specifications. Chicago architect Carl M. Almquist was commissioned to design the building. All operations were again consolidated into the $80,000 building; offices were on the first"} +{"qid": "test2700", "pid": "13533653", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Alba Longa\"\nthe Caelian Hill in Rome. The temple of Vesta which stood at the foot of the Palatine hill outside Rome presumably predated the city, which at the time of its founding only occupied the top of the hill: the hearth of Vesta would not ordinarily be built outside a city's walls. Worship of Vesta in Italy began in Lavinium, the mother-city of Alba Longa and the first Trojan settlement. From Lavinium worship of Vesta was transferred to Alba Longa. Upon entering higher office, Roman magistrates would go to Lavinium to offer sacrifice to Vesta and the household gods the Romans"} +{"qid": "test2700", "pid": "9423280", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta, Tivoli\"\nTemple of Vesta, Tivoli The \"\"Temple of Vesta\"\" is a Roman temple in Tivoli, Italy, dating to the early 1st century BC. Its ruins sit on the acropolis of the city, overlooking the falls of the Aniene that are now included in the Villa Gregoriana. It is not known for certain to whom the temple was dedicated, whether to Hercules, the protecting god of Tibur, or to Albunea, the Tiburtine Sibyl, or to Tiburnus, the eponymous hero of the city, or to Vesta herself, whose more familiar circular peripteral Temple of Vesta is to be seen in the Roman Forum."} +{"qid": "test2700", "pid": "578283", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vesta (mythology)\"\nVesta (mythology) Vesta () is the virgin goddess of the hearth, home, and family in Roman religion. She was rarely depicted in human form, and was often represented by the fire of her temple in the Forum Romanum. Entry to her temple was permitted only to her priestesses, the Vestals, who tended the sacred fire at the hearth in her temple. As she was considered a guardian of the Roman people, her festival, the \"\"Vestalia\"\" (7–15 June), was regarded as one of the most important Roman holidays. During the \"\"Vestalia\"\" matrons of the city walked barefoot to the sanctuary of"} +{"qid": "test2700", "pid": "5222311", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta\"\nblinded in the incident. Such fires occurred again in 210 BCE and again in the early first century BCE; however, the building was safe. It was rebuilt again during the reigns of Augustus and Nero. Finally, it burnt down in 191 CE and was later built for the last time during the reign of Septimius Severus. The Temple of Vesta remained reasonably intact until the Renaissance. However, in 1549 CE, the building was completely demolished and its marble reused in churches and papal palaces. The section standing today was reconstructed in the 1930s during the dictatorship of Benito Mussolini. Temple"} +{"qid": "test2700", "pid": "9423283", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta, Tivoli\"\nin the following century both Giuseppe Vasi and Giovanni Battista Piranesi made etchings and engravings of the \"\"Temple of Vesta\"\". The \"\"Temple of Vesta\"\" has provided a model for numerous structures. These range from slavish replicas in landscaped gardens to variants using only some aspects of its detailing. In England, examples include General Pitt River's 1890 Temple of Vesta at Sandroyd School in Wiltshire; William Kent's \"\"Temple of Ancient Virtue\"\" at Stowe and Sir William Chambers' \"\"Temple of Solitude\"\" at Kew. Sir John Soane's drawings, which he used as comparative examples in his lectures, are preserved at Sir John Soane's"} +{"qid": "test2700", "pid": "5309349", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Mussenden Temple\"\nuntil 1803. It was Lord Bristol – popularly known as \"\"the Earl-Bishop\"\" – who had the \"\"temple\"\" built. Constructed as a library and modelled from the Temple of Vesta in the \"\"Forum Romanum\"\" in Rome, it is dedicated to the memory of Bishop Lord Bristol's cousin Frideswide Mussenden. Over the years the erosion of the cliff face at Downhill has brought Mussenden Temple ever closer to the edge, and in 1997 The National Trust carried out cliff stabilisation work to prevent the loss of the building. The inscription around the building reads: \"\"\"\"Suave, mari magno turbantibus aequora ventis
\"\"e"} +{"qid": "test2700", "pid": "5222310", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta\"\nto the fortunes of the city and viewed its extinction as a portent of disaster has been agreed on by all ancient accounts. The temple was closed during the persecution of pagans in the late Roman Empire in the 4th-century. The temple was rebuilt many times, for it was destroyed many times. The first destruction of the temple was by the Gauls in 390 BCE. According to Ovid, the second time was in 241 BCE; after fire destroyed much of Vesta's temple, Lucius Caecilius Metellus who was Pontifex Maximus at the time, saved the palladium and according to tradition was"} +{"qid": "test2700", "pid": "578287", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vesta (mythology)\"\nTrojan gods first introduced to Italy by Aeneas. Alongside those household gods was Vesta, who has been referred to as \"\"Vesta Iliaca\"\" (Vesta of Troy), with her sacred hearth being named \"\"Ilaci foci\"\" (Trojan hearth). Worship of Vesta, like the worship of many gods, originated in the home, but became an established cult during the reign of either Romulus, or Numa Pompilius (sources disagree, but most say Numa). The priestesses of Vesta, known as Vestal Virgins, administered her temple and watched the eternal fire. Their existence in Alba Longa is connected with the early Roman traditions, for Romulus' mother Silvia"} +{"qid": "test2700", "pid": "20130023", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "Homarium\nHomarium The Homarium was the common temple of the Achaean League, built \"\"c.\"\" 371 BC at Aegium. While it was dedicated to Zeus Homarius or Homergyrius (the exact meaning of the name being uncertain, but probably \"\"who unites\"\"), the temple was, according to Polybius, used for meetings and debates on Achaean lines. Strabo describes it as a grove, near a temple of Demeter Panchaea. Again, according to Polybius [5:93] resolutions to internal Achaean disputes during the Social War were recorded on a stele erected near the altar of Hestia or Vesta. Pope, in his 1715 \"\"Essay\"\" introducing his translation of"} +{"qid": "test2700", "pid": "3457398", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Forum Boarium\"\nthe earliest surviving marble building in Rome. For centuries, this was known as the Temple of Vesta. The Temple of Portunus is a rectangular building built between 100 and 80 BC. It consists of a tetrastyle portico and cella mounted on a podium reached by a flight of steps. The four Ionic columns of the portico are free-standing, while the six columns on the long sides and four columns at the rear are engaged along the walls of the cella. It is built of tuff and travertine with a stucco surface. This temple was for centuries known as the Temple"} +{"qid": "test2700", "pid": "9423285", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta, Tivoli\"\nerected by Izabela Czartoryska to designs by the Polish architect Chrystian Piotr Aigner and served as a museum. In northern California, a version of the temple was set as a landscape feature in the English tradition. The \"\"Sunol Water Temple\"\" was designed in 1910 by California architect Willis Polk for the Spring Valley Water Company to mark the spot in California's Sunol Valley where the waters came together to supply San Francisco. 1783, Darnley Mausoleum, Cobham, Kent - interior 1794-98, Bank of England, John Soane, London - exterior Temple of Vesta, Tivoli The \"\"Temple of Vesta\"\" is a Roman temple"} +{"qid": "test2700", "pid": "578305", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vesta (mythology)\"\nto Vesta, the donkey, was crowned with garlands of flowers and bits of bread on 9 June. The final day (15 June) was Q(uando) S(tercum) D(elatum) F(as) [\"\"when dung may be removed lawfully\"\"] - the \"\"penus Vestae\"\" was solemnly closed; the \"\"Flaminica Dialis\"\" observed mourning, and the temple was subjected to a purification called \"\"stercoratio\"\": the filth was swept from the temple and carried next by the route called \"\"clivus Capitolinus\"\" and then into the Tiber. In the military \"\"Feriale Duranum\"\" (AD 224) the first day of \"\"Vestalia\"\" is \"\"Vesta apperit[ur]\"\" and the last day is \"\"Vesta cluditur\"\". This year"} +{"qid": "test2700", "pid": "9423282", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta, Tivoli\"\nwith oversize fleurons in the form of hibiscus flowers with pronounced spiral pistils. The column flutes have flat tops. The frieze exhibits fruit swags suspended between bucrania. Above each swag is a rosette. The cornice does not have modillions. The comparatively good condition of the temple is owing to its Christianization as a church, \"\"Santa Maria della Rotonda\"\". The Christian accretions have already disappeared in the 16th century. Careful measured drawings of the 'Temple of Vesta\"\" were published by Antoine Desgodetz (1682) who gave elevation and plan as well as carefully rendered details of the carved capitals and the frieze."} +{"qid": "test2700", "pid": "13533654", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Alba Longa\"\ncalled \"\"Penates\"\". The Penates were Trojan gods first introduced to Italy by Aeneas. Among these household gods must have been Vesta who has been referred to as \"\"Vesta Iliaca\"\" (Vesta of Troy), with her sacred hearth being named \"\"Ilaci foci\"\" (Trojan hearth). The priestesses of Vesta, known as Vestal Virgins, administered her temple and watched the eternal fire. Their existence in Alba Longa is connected with the early Roman traditions, for Silvia the mother of Romulus was a priestess. They were finally established in Rome during the reign of Numa, where they would remain until the institution is disestablished with"} +{"qid": "test2700", "pid": "13719023", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of the Sibyl\"\nTemple of the Sibyl The Temple of the Sibyl (in Polish, Świątynia Sybilli) is a colonnaded round monopteral temple-like structure at Puławy, Poland, built at the turn of the 19th century as a museum by Izabela Czartoryska. The \"\"Temple of the Sibyl\"\" at Puławy, also known as the Temple of Memory, opened in 1801. The structure was modeled after the similar monopteral \"\"Temple of Vesta\"\" at Tivoli, Italy, the site of the Tiburtine Sibyl, which was well known throughout Europe in engravings. The Puławy temple, designed by Polish architect Chrystian Piotr Aigner, memorialized Polish history and culture, and the glories"} +{"qid": "test2700", "pid": "13719026", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of the Sibyl\"\nhe had spent several years of his early childhood in Puławy. Temple of the Sibyl The Temple of the Sibyl (in Polish, Świątynia Sybilli) is a colonnaded round monopteral temple-like structure at Puławy, Poland, built at the turn of the 19th century as a museum by Izabela Czartoryska. The \"\"Temple of the Sibyl\"\" at Puławy, also known as the Temple of Memory, opened in 1801. The structure was modeled after the similar monopteral \"\"Temple of Vesta\"\" at Tivoli, Italy, the site of the Tiburtine Sibyl, which was well known throughout Europe in engravings. The Puławy temple, designed by Polish architect"} +{"qid": "test2700", "pid": "578290", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vesta (mythology)\"\nancient traditional cults into the 4th century. Dedications in the Atrium of Vesta, dating predominantly AD 200 to 300, attest to the service of several \"\"Virgines Vestales Maxime\"\". Vesta's worship began to decline with the rise of Christianity. In ca. 379, Gratian stepped down as \"\"pontifex maximus\"\"; in 382 he confiscated the \"\"Atrium Vestae\"\"; simultaneously, he withdrew its public funding. In 391, despite official and public protests, Theodosius I closed the temple, and extinguished the sacred flame. Finally, Coelia Concordia stepped down as the last \"\"Vestalis Maxima\"\" (\"\"chief Vestal\"\") in 394. Depicted as a good-mannered deity who never involved herself"} +{"qid": "test2700", "pid": "5373767", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"House of the Vestals\"\nHouse of the Vestals The House of the Vestal Virgins (; ) was the residence of Vestal Virgins, located behind the circular Temple of Vesta at the eastern edge of the Roman Forum, between the Regia and the Palatine Hill. The \"\"domus publica\"\", where the Pontifex Maximus dwelled, was located near the Atrium until that role was assumed by the emperors. The \"\"Atrium Vestae\"\" was a three-story 50-room palace in the ancient Roman Forum built around an elegant elongated atrium or court with a double pool. To the very east is an open vaulted hall with a statue of Numa"} +{"qid": "test2700", "pid": "8054536", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Arch of Augustus, Rome\"\nArch of Augustus, Rome The Arch of Augustus () was the triumphal arch of Augustus, located in the Roman Forum. It spanned the road between the Temple of Castor and Pollux and the Temple of Caesar, near the Temple of Vesta, closing off the eastern end of the Forum. It can be regarded as the first permanent three-bayed arch ever built in Rome. The archaeological evidence shows the existence of a three-bayed arch measuring 17,75 x 5.25 meters between the Temple of Caesar and the Temple of Castor and Pollux, although only the travertine foundations of the structure remain. Ancient"} +{"qid": "test2700", "pid": "13961406", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Les élémens\"\na stranger from afar, Leucosie welcomes Arion, the stranger she loves, who has arrived on the back of a dolphin, to Neptune's palace. Arion too falls in love with Leucosie. Neptune recognizes him as his own son and orders his marriage to Leucosie. This entrée is set in the vestibule of the temple of Vesta, where the priestess Emilie attends to the goddess's fire for the last time, having received permission to marry Valère. When Valère comes to the temple, Emilie tells him that she had a nightmare in which Vesta had appeared with a great crash, mad with rage,"} +{"qid": "test2700", "pid": "9376271", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vestas aircoil A/S\"\nVestas aircoil A/S Vestas aircoil A/S is a manufacturer of charge air coolers, intercoolers and cooling towers founded in the small Danish town of Lem in Jutland. Vestas built the first marine diesel engine charge air cooler for Burmeister & Wain in 1956. Since the turn of the century, Vestas aircoil has opened locations in the Far East and Southern Europe and continues to be a major supplier to engine builders and operators all over the world. Until the 1980s, the company was associated with Vestas Wind Systems who are located in the same town They continue to manufacture charge"} +{"qid": "test2700", "pid": "9423281", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Temple of Vesta, Tivoli\"\nA rectangular temple stands nearby, equally difficult to attribute, often called the \"\"Temple of the Sibyl\"\". The name of the builder or restorer of the \"\"Temple of Vesta\"\" is Lucius Gellius, memorialized in the inscription on the architrave. The peripteral temple in a variant of the Corinthian order surrounds its circular cella, which is raised on a high brick podium clad in blocks of travertine: the cella has a door and two windows. The \"\"ambulacrum\"\" that surrounds the cella had eighteen Corinthian columns (ten remain standing). The temple's capitals have two rows of acanthus leaves, and its abacus is decorated"} +{"qid": "test2700", "pid": "10516551", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Vulcan (mythology)\"\na magnified temple in itself, the three fires should be identified as the hearth of the landlord in the temple of Vesta (\"\"aedes Vestae\"\"); the sacrificial fires of each temple, shrine or altar; and the defensive fire in the temple of Vulcan. Another meaning of Vulcan is related to male fertilizing power. In various Latin and Roman legends he is the father of famous characters, such as the founder of Praeneste Caeculus, Cacus, a primordial being or king, later transformed into a monster that inhabited the site of the Aventine in Rome, and Roman king Servius Tullius. In a variant"} +{"qid": "test2700", "pid": "9058134", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "Vestalia\nin thanks for the services they provided in the bakeries. The final day (15 June) was Q(uando) S(tercum) D(elatum) F(as) [\"\"when dung may be removed lawfully\"\"] - the \"\"penus Vestae\"\" was solemnly closed; the \"\"Flaminica Dialis\"\" observed mourning, and the temple was subjected to a purification called \"\"stercoratio\"\": the filth was swept from the temple and carried next by the route called \"\"clivus Capitolinus\"\" and then into the Tiber. The military \"\"Feriale Duranum\"\" of AD 224 records the first day of \"\"Vestalia\"\" as \"\"Vesta apperit[ur]\"\" and the last day as \"\"Vesta cluditur\"\". Vestalia Vestalia was a Roman religious festival in"} +{"qid": "test2700", "pid": "11445854", "query": "who was the temple of vesta built for", "answer": "Vesta", "passage": "\"Van Ness Mausoleum\"\nVan Ness Mausoleum The Van Ness Mausoleum was designed by George Hadfield. It is said to be a copy of the Temple of Vesta in Rome. It was constructed in 1833, after the architect's death in 1826, initially for Marcia Burns Van Ness, the wife of John Peter Van Ness who died in 1832. The mausoleum was originally on H Street in Washington, D.C., on the grounds of the orphan asylum founded by Mrs. Van Ness. Built at an estimated cost of $34,000 with space for 18, it ultimately held 7, including John Peter Van Ness, who was interred inside"} +{"qid": "test2701", "pid": "11918781", "query": "when was the last time the denver nuggets made the playoffs", "answer": "1994–95", "passage": "\"1994–95 Denver Nuggets season\"\nthree straight games. This would be their final playoff appearance until 2004. Following the season, second-year forward Rodney Rogers and Brian Williams were both traded to the Los Angeles Clippers, and Robert Pack was dealt to the Washington Bullets. (1) San Antonio Spurs vs. (8) Denver Nuggets: \"\"Spurs win series 3-0\"\" Last Playoff Meeting: 1990 Western Conference First Round (San Antonio won 3-0) 1994–95 Denver Nuggets season The 1994–95 NBA season was the Nuggets' 19th season in the National Basketball Association, and 28th season as a franchise. During the offseason, the Nuggets signed free agent Dale Ellis. Coming off their"} +{"qid": "test2703", "pid": "6613247", "query": "who was the captain of the mayflower which brought the pilgrims to plymouth", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nthe Pilgrim voyage. Most scholars agree with author Charles Banks' estimation that the \"\"Mayflower\"\" had a crew of about 50: 36 men 'before the mast' (crew) and 14 officers on the captain's staff. This included the following officers: four mates, four quartermasters, surgeon, carpenter, cooper, cook, boatswain and gunner. The entire crew stayed with the \"\"Mayflower\"\" when it wintered-over in Plimoth in 1620-1621, with about half of them dying during that time, including the gunner, boatswain, 3 of 4 quartermasters and cook. The survivors returned to London on the \"\"Mayflower\"\" sailing from Plymouth on 5 April 1621. The identity of"} +{"qid": "test2703", "pid": "6613251", "query": "who was the captain of the mayflower which brought the pilgrims to plymouth", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\nnew calendar). After 66 days of fighting gales and with the ship's timbers rupturing, and with a detriment to the health of all on board, the \"\"Mayflower\"\" finally anchored with the hook of Cape Cod harbor on 11 November. Recent research has revealed that the ship called in at the tiny fishing village of Renews in Newfoundland for fresh water and food, before finally anchoring off, what is now Provincetown. Over the next five months Captain Jones and the \"\"Mayflower\"\" would remain in Plymouth. He had originally planned to return to England as soon as the Pilgrims found a settlement"} +{"qid": "test2703", "pid": "6613254", "query": "who was the captain of the mayflower which brought the pilgrims to plymouth", "answer": "Christopher Jones", "passage": "\"Christopher Jones (Mayflower captain)\"\narea, south-west of Harwich. These included Christopher Martin, the \"\"Mayflower\"\"s Treasurer who was responsible for provisioning the ship, his wife, step-son and servant, together with two single men from Great Burstead – Peter Browne and Richard Britteridge. All died that first winter in Plymouth except Peter Browne. After Jones' return from New England, by the summer of 1621 he had resumed his former trading voyages to Europe. But by this time it had become evident that the deprivations of the Pilgrim voyage had badly undermined his health as it had so many other \"\"Mayflower \"\"voyagers. Christopher Jones died in early"} +{"qid": "test2704", "pid": "13664439", "query": "when was the last time the jets won a playoff game", "answer": "2010", "passage": "\"National Football League rivalries\"\nthe 2010 playoffs. The series is in New England's favor, 64–54–1 as of the end of the 2017 season, including a playoff record of 2–1 against the Jets. The Dolphins and Jets have often competed for divisional supremacy, and have played a number of classic games. This includes the game, known in NFL Lore as the Monday Night miracle where the Jets erased a 30-7 lead after three quarters and won the game in overtime. The Jets lead the series 56–51–1 as of the end of the 2016 season, while the Dolphins have won the lone playoff meeting, defeating the"} +{"qid": "test2705", "pid": "15252001", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Gardner Colby\"\nand made several large donations to what is now Andover Newton Theological School, which was a Reformed seminary located near Colby's home in Newton, Massachusetts. Gardner Colby Gardner Colby (1810–1879) was a prominent businessman and Christian philanthropist. He is the namesake of Colby College in Maine and the town of Colby, Wisconsin. Colby was born in Bowdoinham, Maine in 1810 and spent part of his childhood in Waterville, Maine. His father, Josiah Colby, died in 1814 after having lost his fortune during the War of 1812, and Josiah Colby had spent time manufacturing gunpowder in Waterville before his death. To"} +{"qid": "test2705", "pid": "1889017", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Colby (town), Wisconsin\"\nColby (town), Wisconsin Colby is a town in Clark County in the U.S. state of Wisconsin. The population was 874 at the 2010 census. The town is located along the eastern border of Clark County, adjoining Marathon County. It is bordered to the east by the city of Colby and to the northeast by the city of Abbotsford. According to the United States Census Bureau, the town of Colby has a total area of , of which , or 0.06%, is water. As of the census of 2000, there were 908 people, 276 households, and 231 families residing in the"} +{"qid": "test2705", "pid": "3326463", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Colby cheese\"\ncooking. It is typically used as a table cheese, for grating and grilling, and in snacks and salads. Colby is sometimes mixed with Monterey Jack to produce a marbled cheese called Colby-Jack or Co-Jack. Pinconning cheese is a sharp aged relative of Colby. In 2015, artist John Riepenhoff and cheesemaker Bob Wills created a \"\"Double Cream\"\" Colby. Colby cheese Colby, originally Colby Cheddar, is a semi-hard cow's milk cheese originating from the United States. In 1885, Joseph F. Steinwand developed a new type of cheese at his father's cheese factory near Colby, Wisconsin. The cheese was named after the village,"} +{"qid": "test2705", "pid": "3326460", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Colby cheese\"\nColby cheese Colby, originally Colby Cheddar, is a semi-hard cow's milk cheese originating from the United States. In 1885, Joseph F. Steinwand developed a new type of cheese at his father's cheese factory near Colby, Wisconsin. The cheese was named after the village, which had been founded three years earlier. While Colby cheese is still widely available, it is no longer produced in Colby. An 1898 issue of the \"\"Colby Phonograph\"\" noted, \"\"A merchant in Phillips gives as one of the 13 reasons why people should trade with him, that he sells the genuine Steinwand Colby Cheese.\"\" A festival commemorating"} +{"qid": "test2705", "pid": "1895036", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Colby, Wisconsin\"\nColby, Wisconsin Colby is a city in Clark and Marathon counties in the U.S. state of Wisconsin. It is part of the Wausau, Wisconsin Metropolitan Statistical Area. The population was 1,852 at the 2010 census. Of this, 1,354 were in Clark County, and 498 were in Marathon County. The city is bordered by the Town of Colby, the Town of Hull, and the City of Abbotsford. When the Wisconsin Central Railroad was building its line through the wilderness heading toward Lake Superior, it finished its 1872 construction season with rails completed to the site of today's Colby. The place was"} +{"qid": "test2705", "pid": "15251999", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Gardner Colby\"\nGardner Colby Gardner Colby (1810–1879) was a prominent businessman and Christian philanthropist. He is the namesake of Colby College in Maine and the town of Colby, Wisconsin. Colby was born in Bowdoinham, Maine in 1810 and spent part of his childhood in Waterville, Maine. His father, Josiah Colby, died in 1814 after having lost his fortune during the War of 1812, and Josiah Colby had spent time manufacturing gunpowder in Waterville before his death. To aid Colby's mother, Jeremiah Chaplin, a Baptist minister who served as the first President of Waterville College (later Colby College) arranged for the Colby family"} +{"qid": "test2705", "pid": "1889020", "query": "colby chees is named after a town in what state", "answer": "Wisconsin", "passage": "\"Colby (town), Wisconsin\"\nand over, there were 107.2 males. The median income for a household in the town was $41,310, and the median income for a family was $43,333. Males had a median income of $27,250 versus $22,188 for females. The per capita income for the town was $13,591. About 9.7% of families and 16.3% of the population were below the poverty line, including 25.0% of those under age 18 and 2.8% of those age 65 or over. Colby (town), Wisconsin Colby is a town in Clark County in the U.S. state of Wisconsin. The population was 874 at the 2010 census. The"} +{"qid": "test2706", "pid": "561416", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Hem Chandra Bose", "passage": "\"Forensic science\"\nShe then confessed to the murder of her sons. A Fingerprint Bureau was established in Calcutta (Kolkata), India, in 1897, after the Council of the Governor General approved a committee report that fingerprints should be used for the classification of criminal records. Working in the Calcutta Anthropometric Bureau, before it became the Fingerprint Bureau, were Azizul Haque and Hem Chandra Bose. Haque and Bose were Indian fingerprint experts who have been credited with the primary development of a fingerprint classification system eventually named after their supervisor, Sir Edward Richard Henry. The Henry Classification System, co-devised by Haque and Bose, was"} +{"qid": "test2706", "pid": "879864", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Hem Chandra Bose", "passage": "Fingerprint\ncommittee report that fingerprints should be used for the classification of criminal records. Working in the Calcutta Anthropometric Bureau were Azizul Haque and Hem Chandra Bose. Haque and Bose were Indian fingerprint experts who have been credited with the primary development of a fingerprint classification system eventually named after their supervisor, Sir Edward Richard Henry. The Henry Classification System, co-devised by Haque and Bose, was accepted in England and Wales when the first United Kingdom Fingerprint Bureau was founded in Scotland Yard, the Metropolitan Police headquarters, London, in 1901. Sir Edward Richard Henry subsequently achieved improvements in dactyloscopy. In the"} +{"qid": "test2706", "pid": "11756988", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Hem Chandra Bose", "passage": "\"Hem Chandra Bose\"\nreport that fingerprints should be used for classification of criminal records. After that year, the Kolkata Anthropometric Bureau became the world's first Fingerprint Bureau. He was working in the Calcutta Anthropometric Bureau (before it became the Fingerprint Bureau) with Azizul Haque. He and Haque were the two Indian fingerprint experts credited with primary development of the Henry Classification System (named for their supervisor, Edward Richard Henry). The Henry Classification System is still used in all English-speaking countries (primarily as the manual filing system for accessing paper archive files that have not been scanned and computerized). Hem Chandra Bose Rai Bahadur"} +{"qid": "test2706", "pid": "7481869", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Azizul Haque", "passage": "\"Azizul Haque (police officer)\"\nofficers to the development of fingerprint classification, and for which Henry was recognised and honoured later in England, and the classification system was named as Henry Classification System and is still currently widely used in the world. Years later, when Haque requested recognition and compensation from the British government for his contribution to fingerprint classification work, Henry did acknowledge publicly his contribution. He also did the same, when the issue of compensation for Bose came up later on. Sodhi and Kaur published an extensive research paper on the issue of the two Indian police officers' contributions to fingerprint development. Sodhi"} +{"qid": "test2706", "pid": "5643725", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Azizul Haque", "passage": "\"Edward Henry\"\nFebruary 1897, with the assistance of Sub-Inspectors Azizul Haque and Hemchandra Bose, Henry developed a system of fingerprint classification enabling fingerprint records to be organised and searched with relative ease. It was Haque who was primarily responsible for developing a mathematical formula to supplement Henry's idea of sorting in 1,024 pigeon holes based on fingerprint patterns. Years later, both Haque and Bose, on Henry's recommendation, received recognition by the British Government for their contribution to the development of fingerprint classification. In 1897, the Government of India published Henry's monograph, \"\"Classification and Uses of Fingerprints\"\". The Henry Classification System quickly caught"} +{"qid": "test2706", "pid": "4875259", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Sir Edward Henry", "passage": "Motihari\nto the fingerprint science by evolving an extended system of sub classification, a telegraphic code for finger impression and a system of single-digit classification.\"\" Both Haque and Bose eventually received honoraria and recognition from the Government of India. At the time of final approval of the honorarium for Haque, the Home Department (Government of India) noted, \"\"It appears from the information now received that he (Haque) was Sir Edward Henry's principal helper in perfecting the scheme and he actually himself devised the method of classification which is in universal use. He thus contributed most materially to a discovery which is"} +{"qid": "test2706", "pid": "7738589", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Sir Edward Henry", "passage": "Dermatoglyphics\nthe first to experiment with fingerprints in India. Sir Francis Galton (1892) conducted extensive research on the importance of skin ridge patterns to demonstrate their permanence, but also their use for identification. In 1892, Galton published the book \"\"Fingerprints\"\" and in doing so advanced the science of fingerprint identification. Sir Edward Henry (1893) published the book \"\"The classification and uses of fingerprints\"\" which established the modern era of fingerprint identification, which is now the basis for other classification systems. Harold Cummins and Charles Midlo M D (1929) together with others published a widely referred book \"\"Fingerprints, Palms and soles\"\", a"} +{"qid": "test2706", "pid": "5039144", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Hem Chandra Bose", "passage": "\"Henry Classification System\"\nHenry Classification System The Henry Classification System is a long-standing method by which fingerprints are sorted by physiological characteristics for one-to-many searching. Developed by Hem Chandra Bose, Azizul Haque and Sir Edward Henry in the late 19th century for criminal investigations in British India, it was the basis of modern-day AFIS (Automated Fingerprint Identification System) classification methods up until the 1990s. In recent years, the Henry Classification System has generally been replaced by ridge flow classification approaches. Although fingerprint characteristics were studied as far back as the mid-1600s, the use of fingerprints as a means of identification did not occur"} +{"qid": "test2706", "pid": "5039147", "query": "who devised the fingerprint classification still used today in europe and the us", "answer": "Sir Edward Henry", "passage": "\"Henry Classification System\"\n\"\"Finger Prints\"\" in which he described his classification system that include three main fingerprint patterns - loops, whorls and arches. At the time, the alternative to fingerprints was Bertillonage, also known as Anthropometry. Developed by Alphonse Bertillon in 1879, Bertillonage consists of a meticulous method of measuring body parts for the use of identifying criminals. In 1892, the British Indian police force adopted Anthropometry. Two years later, Sir Edward Henry, Inspector General of the Bengal Police in India became interested in the use of fingerprints for the use of criminal identification. Influenced by Galton's \"\"Finger Prints\"\", the men corresponded regularly"} +{"qid": "test2708", "pid": "16263725", "query": "who plays lady talisa in game of thrones", "answer": "Oona Chaplin", "passage": "\"Game of Thrones (season 2)\"\nActing as one of her suitors is the treacherous warlock Pyat Pree portrayed by Ian Hanmore. Her third and final suitor was the masked priestess Quaithe (Laura Pradelska). Specially created for the television series was the so-called \"\"Spice King\"\", a rich merchant from Qarth, played by Nicholas Blane. Also an original creation of the show is the character of Talisa (Oona Chaplin), a healer from Volantis and a romantic interest for Robb. She fills the role of another female interest of Robb's, called Jeyne Westerling, who has no similarities with Talisa whatsoever. In addition to Talisa, Michael McElhatton joins the"} +{"qid": "test2708", "pid": "13408262", "query": "who plays lady talisa in game of thrones", "answer": "Oona Chaplin", "passage": "\"Oona Chaplin\"\nfollowed by roles as the wife of one of the main characters, Hector Madden, in the BBC period drama \"\"The Hour\"\" (2011–2012), as Dr. John Watson's girlfriend in an episode of BBC's \"\"Sherlock\"\" (2012) and as Talisa Maegyr in HBO's \"\"Game of Thrones\"\" (2012–2013). She plays Kitty Trevelyan, a lead character, in the BBC drama \"\"The Crimson Field\"\" (2014) and Ruth Levinson, wife of Ira Levinson, in \"\"The Longest Ride\"\" (2015). Chaplin stars as Zilpha Geary in the eight-part historical fiction series \"\"Taboo\"\" (2017) on BBC One and FX. Chaplin joined the cast of James Cameron's \"\"Avatar\"\" sequels in June"} +{"qid": "test2708", "pid": "13408263", "query": "who plays lady talisa in game of thrones", "answer": "Oona Castilla Chaplin", "passage": "\"Oona Chaplin\"\n2017. Her character, named Varang, is described as \"\"a strong and vibrant central character who spans the entire saga of the sequels\"\". Oona Chaplin Oona Castilla Chaplin (born 4 June 1986) is a Spanish-British actress. Her roles include Talisa Maegyr in the HBO TV series \"\"Game of Thrones\"\", \"\"The Crimson Field\"\" and the series \"\"Taboo\"\". A member of the Chaplin family, she is the daughter of actress Geraldine Chaplin, the granddaughter of English filmmaker and actor Charlie Chaplin, and the great-granddaughter of American playwright Eugene O'Neill. She was named after her maternal grandmother Oona O'Neill, Charlie's wife. Oona Chaplin was"} +{"qid": "test2708", "pid": "17181177", "query": "who plays lady talisa in game of thrones", "answer": "Oona Chaplin", "passage": "\"Valar Dohaeris\"\na production such as \"\"Game of Thrones\"\", the first scene Hinds filmed was the first one where his character appears: the meeting with Jon Snow at his tent. The season premiere also marks the first appearance of guest stars Kristofer Hivju as the Wildling Tormund Giantsbane, Nathalie Emmanuel as the slave Missandei, and Anton Lesser as the wounded prisoner Qyburn. The three castings were announced at San Diego Comic-Con in July 2012. With this episode, Rose Leslie (Ygritte) and Oona Chaplin (Talisa) are promoted to series regulars, after guest starring in the second season. After being absent for the entire"} +{"qid": "test2708", "pid": "13408259", "query": "who plays lady talisa in game of thrones", "answer": "Oona Castilla Chaplin", "passage": "\"Oona Chaplin\"\nOona Chaplin Oona Castilla Chaplin (born 4 June 1986) is a Spanish-British actress. Her roles include Talisa Maegyr in the HBO TV series \"\"Game of Thrones\"\", \"\"The Crimson Field\"\" and the series \"\"Taboo\"\". A member of the Chaplin family, she is the daughter of actress Geraldine Chaplin, the granddaughter of English filmmaker and actor Charlie Chaplin, and the great-granddaughter of American playwright Eugene O'Neill. She was named after her maternal grandmother Oona O'Neill, Charlie's wife. Oona Chaplin was born in Madrid to Anglo-American actress Geraldine Chaplin and Chilean-Romanian cinematographer Patricio Castilla. Her paternal grandmother is Mapuche. She was named after"} +{"qid": "test2708", "pid": "16430638", "query": "who plays lady talisa in game of thrones", "answer": "Oona Chaplin", "passage": "\"Game of Thrones (season 3)\"\ndeveloped the Dothraki language, used principally in season 1. The third season adds previously recurring actors Oona Chaplin (Talisa Maegyr), Joe Dempsie (Gendry) and Rose Leslie (Ygritte) to the series' main cast. After an absence of one season David Bradley returns as Walder Frey, Ian McElhinney as Barristan Selmy, Peter Vaughan as Maester Aemon, Josef Altin as Pypar and Luke McEwan as Rast. David Benioff and D. B. Weiss serve as main writers and showrunners for the third season. They co-wrote seven out of ten episodes. The remaining three episodes were written by Bryan Cogman, Vanessa Taylor, and the author"} +{"qid": "test2708", "pid": "12800947", "query": "who plays lady talisa in game of thrones", "answer": "Oona Chaplin", "passage": "\"Game of Thrones\"\nin the Night's Watch under Lord Commander Jeor Mormont (James Cosmo). The Wildlings living north of the Wall include young Gilly (Hannah Murray), and warriors Tormund Giantsbane (Kristofer Hivju) and Ygritte (Rose Leslie). Others associated with House Stark include Ned's ward Theon Greyjoy (Alfie Allen), his vassal Roose Bolton (Michael McElhatton), and Bolton's bastard son, Ramsay Snow (Iwan Rheon). Robb falls in love with the healer Talisa Maegyr (Oona Chaplin), and Arya befriends the blacksmith's apprentice Gendry (Joe Dempsie) and the assassin Jaqen H'ghar (Tom Wlaschiha). The tall warrior Brienne of Tarth (Gwendoline Christie) serves Catelyn and, later, Sansa. In"} +{"qid": "test271", "pid": "8858804", "query": "when was the last time arsenal win premier league", "answer": "2003–04", "passage": "\"Eniola Aluko\"\nWomen's Football Awards in 2003. Aluko left Birmingham to join Charlton Athletic in January 2004. She helped Charlton defeat Fulham 1–0 to win the FA Women's Premier League Cup at Underhill Stadium in March 2004. During the 2003–04 season, Aluko appeared as a second-half substitute when Charlton was defeated by FA Women's Cup finalists Arsenal 3–0 at Loftus Road in May. and lost the Premier League National Division title to Arsenal on the last day of the season, having led the way for most of the season. Aluko lifted the FA Women's Community Shield with Charlton in August 2004 after"} +{"qid": "test2711", "pid": "11428066", "query": "when did the newest macbook pro come out", "answer": "October 27, 2016", "passage": "\"MacBook Air\"\nof the 13\"\" MacBook Pro on October 27, 2016, which was specifically targeted towards MacBook Air users. The 11.6\"\" MacBook Air, introduced in October 2010, is only slightly larger and heavier (when closed) than the iPad 2. The 11.6\"\" Air has been regarded as thin and light compared to other ultraportables, such as the Sony VAIO Z and the 11\"\" Samsung Series 9. As of 2013, several Ultrabooks such as the Sony VAIO Pro have managed smaller dimensions than the MacBook Air by using carbon fiber construction. On October 30, 2018, Apple unveiled a redesigned 13.3\"\" MacBook Air model, with"} +{"qid": "test2712", "pid": "16819845", "query": "what episode does lori die on the walking dead", "answer": "\"Killer Within\"", "passage": "\"Killer Within\"\nClub\"\" in his review felt the episode \"\"stumble[d]\"\" in how T-Dog and Lori were eliminated and in how the Woodbury storyline repeated what was already known. Handlen commented in his B+ review that \"\"killing T-Dog and Lori earned the show an immediate thrill, but it also meant crossing off two potential sources of drama, people who had a history on the series, however thin or poorly developed that history might have been.\"\" The performances of \"\"The Walking Dead\"\" ensemble was a frequent topic in the critiques. Lincoln's performance received kudos from various media outlets including HitFix, \"\"Rolling Stone\"\", and \"\"Slate\"\"."} +{"qid": "test2712", "pid": "16819832", "query": "what episode does lori die on the walking dead", "answer": "\"Killer Within\"", "passage": "\"Killer Within\"\ndies; Carl takes a moment to mourn before shooting her in the head to prevent reanimation. With the walkers dealt with, the group rejoins in the courtyard, though Carol is still missing. Rick sees Carl and Maggie emerging from a cell block with the baby, but realizes Lori is not with them, and becomes hysterical. \"\"Killer Within\"\" was written by Sang Kyu Kim. Guy Ferland directed, his second such credit for \"\"The Walking Dead\"\" third season. Ferland previously directed episode 3, \"\"Walk with Me\"\". \"\"Killer Within\"\" signified the final appearances of Sarah Wayne Callies (Lori) and IronE Singleton (T-Dog) as"} +{"qid": "test2713", "pid": "20645343", "query": "who is the girl that played darlene in roseanne", "answer": "Sara Gilbert", "passage": "\"Roseanne (season 10)\"\nMetcalf, Lecy Goranson, Sara Gilbert and Michael Fishman return from previous seasons as Roseanne Conner, Dan Conner, Jackie Harris, Becky Conner-Healy, Darlene Conner, and D.J. Conner, respectively. In September 2017, Ames McNamara was announced to be cast as Mark Conner-Healy, Darlene and David's 8-year-old son; while Emma Kenney was cast as Harris Conner-Healy, David and Darlene's teenage daughter. Jayden Rey joined the cast in October as Mary Conner, D.J.'s daughter. Sarah Chalke, who played Becky during the later seasons of the series, appears as Andrea, a married woman who hires Becky to be her surrogate. Also returning from earlier in"} +{"qid": "test2713", "pid": "8161704", "query": "who is the girl that played darlene in roseanne", "answer": "Sara Gilbert", "passage": "\"Chuck Lorre\"\nfirst time since \"\"Dharma & Greg\"\" premiered in 1997, a new show of Lorre's did not use his traditional Vanity Card. Instead a standard production logo was used. \"\"Two and a Half Men\"\" and \"\"The Big Bang Theory\"\" were both taped at the Warner Brothers lot, in adjacent stages; the shows shared several writers and technical crews. \"\"The Big Bang Theory\"\" has cast a number of alumni from Lorre's past series, starting with Johnny Galecki from \"\"Roseanne\"\" (he was Darlene's boyfriend and later husband). Sara Gilbert, who played Darlene on \"\"Roseanne\"\", was Leslie Winkle on \"\"The Big Bang Theory\"\". Laurie"} +{"qid": "test2713", "pid": "20771657", "query": "who is the girl that played darlene in roseanne", "answer": "Sara Gilbert", "passage": "\"The Conners\"\nepisode bringing the episode order to 11. On May 29, 2018, ABC cancelled \"\"Roseanne\"\", following remarks made by Roseanne Barr, who starred as Roseanne Conner, on Twitter about Valerie Jarrett, a former advisor to Barack Obama. In June, reports swirled that the show could possibly be re-tooled as a spin-off focusing on Sara Gilbert's character Darlene. Around June 15, 2018, reports emerged that ABC was close to making a deal to indeed continue the show as a Darlene-centric program. Barr is not involved in any way in the new program. Barr likely received a one-time payment in return and her"} +{"qid": "test2713", "pid": "5645491", "query": "who is the girl that played darlene in roseanne", "answer": "Sara Gilbert", "passage": "\"Johnny Galecki\"\nbetter suited for the role of Leonard Hofstadter, and Sheldon's role was eventually given to Jim Parsons. During his role as David Healy on Roseanne, Sara Gilbert played his longtime girlfriend and later wife, Darlene Conner. She has appeared as Leslie Winkle, a colleague in the Big Bang Theory. Laurie Metcalf, who portrayed Roseanne's sister Jackie Harris, has appeared as Mary Cooper, mother of Leonard's roommate, Sheldon. Galecki is a cellist, a talent which has been used on the show. As of August 2013, Galecki and his \"\"Big Bang\"\" costars Kaley Cuoco and Jim Parsons each earned US$325,000 per episode."} +{"qid": "test2714", "pid": "16840985", "query": "what type of joint connects the incus with the malleus", "answer": "synovial", "passage": "\"Incudomalleolar joint\"\nIncudomalleolar joint Incudomalleolar joint (more correctly called incudomallear joint) or articulatio incudomallearis is a small synovial joint between the malleus (hammer) and the incus (anvil). The joint's function is to transfer vibrations between the ossicles in the middle ear, which is perceived as sound. Contrary to other synovial joints the movement is very limited. All of the ossicles move more or less as a unit, at least at low frequencies. When the eardrum is moved inward due to sound vibrations, transferred through the outer ear, it transmits to the handle or manubrium of the malleus which is connected to the"} +{"qid": "test2714", "pid": "16840986", "query": "what type of joint connects the incus with the malleus", "answer": "synovial", "passage": "\"Incudomalleolar joint\"\near drum. The head of the malleus (caput mallei) moves with it and transfers energy/movement to the corpus of the incus (corpus incudis), which is located directly behind. The sound vibrations are then transferred to the stapes (stirrup) through the incudostapedial joint. Incudostapedial joint Incudomalleolar joint Incudomalleolar joint (more correctly called incudomallear joint) or articulatio incudomallearis is a small synovial joint between the malleus (hammer) and the incus (anvil). The joint's function is to transfer vibrations between the ossicles in the middle ear, which is perceived as sound. Contrary to other synovial joints the movement is very limited. All of"} +{"qid": "test2715", "pid": "1762412", "query": "who was the first elected president of pakistan", "answer": "Iskander Mirza", "passage": "\"Ayub Khan (President of Pakistan)\"\ndocuments to the Election Commission. Ayub Khan (President of Pakistan) Mohammad Ayub Khan (; 14 May 1907 – 19 April 1974), , was a Pakistani military dictator and the second President of Pakistan who forcibly assumed the presidency from the first President Iskander Mirza through coup in 1958, the first successful coup d'état of the country. The popular demonstrations and labour strikes which were supported by the protests in East Pakistan ultimately led to his forced resignation in 1969. Trained at the British Royal Military College, Ayub Khan fought in the World War II as a Colonel in the British"} +{"qid": "test2715", "pid": "2486136", "query": "who was the first elected president of pakistan", "answer": "Iskander Mirza", "passage": "\"President of Pakistan\"\nthe presidency. The incumbent Governor-General, Iskander Mirza, became Pakistan's first president. He reportedly suspended the first Constitution in 1958, and appointed Army Commander-in-Chief General Ayub Khan as the first chief martial law administrator. Khan subsequently dismissed Mirza in order to become the president. The second Constitution introduced by President Ayub Khan turned the country into a presidential republic without direct elections. Succumbing to internal and international pressure, however, Khan held a nationwide presidential election in 1965. Khan successfully campaigned against his opponent, Fatima Jinnah, for a second term, but some have alleged that elections were rigged in favour of Khan."} +{"qid": "test2718", "pid": "10477529", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"Little Polveir\"\nBridgewater, the son-in-law of Toby Balding, Little Polveir's trainer. Little Polveir died in 1999. Little Polveir Little Polveir (1977–1999) was a race horse. He won the 1989 Grand National steeplechase ridden by Jimmy Frost, beating West Tip by seven lengths. The horse had previously finished ninth in 1986 and did not finish in 1987 and 1988 (where he fell at Valentine's Brook) while owned by Mike Shone, after which he was sold as a 12-year-old for 15,000gns in February 1989. The track \"\"Little Polveir\"\" by the Sheffield-based band Monkey Swallows the Universe is named after the horse. After the track"} +{"qid": "test2718", "pid": "10477528", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"Little Polveir\"\nLittle Polveir Little Polveir (1977–1999) was a race horse. He won the 1989 Grand National steeplechase ridden by Jimmy Frost, beating West Tip by seven lengths. The horse had previously finished ninth in 1986 and did not finish in 1987 and 1988 (where he fell at Valentine's Brook) while owned by Mike Shone, after which he was sold as a 12-year-old for 15,000gns in February 1989. The track \"\"Little Polveir\"\" by the Sheffield-based band Monkey Swallows the Universe is named after the horse. After the track was written, the band signed to Loose Records, which coincidentally is owned by Tom"} +{"qid": "test2718", "pid": "15516496", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\nlabel owned by the son in law of Little Polveir's trainer, Toby Balding 1989 Grand National The 1989 Grand National (officially known as the Seagram Grand National for sponsorship reasons) was the 143rd renewal of the Grand National horse race that took place at Aintree Racecourse near Liverpool, England, on 8 April 1989. The race was won in a time of 10 minutes 6.9 seconds and by a distance of 7 lengths by Irish 12-year-old Little Polveir, ridden by jockey Jimmy Frost. West Tip was second and The Thinker finished third. Fourteen of the 40 runners completed the course. The"} +{"qid": "test2718", "pid": "18453322", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"Colin Brown (jockey)\"\nImperial Cup, 1987 Fighting Fifth Hurdle and 1988 Kingwell Hurdle. He rode the 1989 Grand National winner Little Polveir when completing the course in the 1986 Grand National and when falling in the 1987 Grand National. He also partnered the 1988 Grand National winner, Rhyme 'n' Reason, to victory in the Mildmay Cazalet Memorial Chase at Sandown Park three months before his win at Aintree Racecourse. Brown retired as a jockey after riding at the Cheltenham Festival on March 17, 1988. Colin Brown (jockey) Colin Brown (born August 16, 1955) is a former National Hunt jockey in the UK, best"} +{"qid": "test2718", "pid": "20282522", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"Little Owl (horse)\"\nuseful horse on the flat before switching to the jumps for trainer Ryan Price. His most notable efforts were winning the 1961 Triumph Hurdle and finishing fourth in the 1962 Champion Hurdle. A successful jumps sire, his leading progeny included Little Polveir (1989 Grand National), The Thinker (1987 Cheltenham Gold Cup), Ballyross (1978 Powers Gold Cup) and Canton (1983 Scottish Grand National). His dam, Black Spangle, was a lightly raced half sister to Little Tom - a prolific jumps winner in Ireland and France while her dam, Spangle, was a seven-time winner over hurdles. Little Owl's siblings were pointers and"} +{"qid": "test2718", "pid": "15516472", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\n1989 Grand National The 1989 Grand National (officially known as the Seagram Grand National for sponsorship reasons) was the 143rd renewal of the Grand National horse race that took place at Aintree Racecourse near Liverpool, England, on 8 April 1989. The race was won in a time of 10 minutes 6.9 seconds and by a distance of 7 lengths by Irish 12-year-old Little Polveir, ridden by jockey Jimmy Frost. West Tip was second and The Thinker finished third. Fourteen of the 40 runners completed the course. The winner had been sold by a four-way partnership six weeks before the race"} +{"qid": "test2718", "pid": "15516495", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\nBonanza Boy, including the 1989 Welsh Grand National. In his final race in January 1990 he was pulled up and promptly retired. Jimmy Frost competed in a further four Grand Nationals without success before retiring from the saddle to become a trainer. His son Hadden later also rode in the Grand National. In August 2007 the Sheffield-based band Monkey Swallows the Universe released a single named \"\"Little Polveir\"\", named after the Grand National winner, although the song is not actually about the horse, nor mentions him in the lyrics. As coincidence had it, the band were signed to a record"} +{"qid": "test2718", "pid": "15516473", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\nto Edward Harvey. It was Little Polveir's fourth attempt at the Grand National; he was sent off at odds of 28/1. Jockey Frost's son, Hadden, attempted to emulate his father's victory 22 years later by riding Calgary Bay in the 2011 Grand National; he fell at the fourth fence. Jimmy Frost's daughter, Bryony, then rode in the 2018 Grand National on Milansbar; she came in fifth place. There were two equine fatalities during the race, both at Becher's Brook. The deaths came two years after the dramatic fatal fall of the popular grey Dark Ivy at Becher's in 1987. Following"} +{"qid": "test2718", "pid": "15516486", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\nin 1987 before falling in each of the last two Nationals, the latter of which had seen him leading when unseating his rider five fences from the finish. Jimmy Frost took the mount as his debut ride in the race with many newspaper tipsters suggesting that the pair would part company during the race. Frost kept Little Polveir among the leading dozen on the first circuit, moving up to take the lead as the field jumped the water at the end of the first circuit. They were never again headed and after the fall of Smart Tar at the twenty-first"} +{"qid": "test2718", "pid": "15516485", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\nFleet winner, Smart Tar. Last year's third placed Monanore was considered an excellent each-way chance at 20/1 while fifth placed Attitude Adjuster started at the longer odds of 25/1 with Bob Tisdall and Gainsay, the latter of which being owned by Errol Brown, better known as the lead singer of the popular 1970s and 1980s pop group, Hot Chocolate. Little Polveir was allowed to go off at the modest odds of 28/1, despite having won the Scottish Grand National in 1987. This would be the horse's fourth, and surely final attempt at a race he had completed in tenth place"} +{"qid": "test2718", "pid": "15516494", "query": "when did little polveir win the grand national", "answer": "1989", "passage": "\"1989 Grand National\"\nthe world do about his horse falling back into the ditch? In National Hunt racing, you learn to live with dead horses.\"\"\"\" Aintree responded by bringing in tighter qualifying regulations for amateur riders for the following year. Pitcher himself had to be treated in hospital for biting through his tongue and bottom lip in his fall, while Ray Goldstein was also taken to hospital after being left unconscious and suffering concussion, having been one of four other riders to fall at Becher's Brook on the first circuit. Little Polveir ran just four more times over fences, being beaten twice by"} +{"qid": "test2719", "pid": "2681051", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Tim McGraw", "passage": "\"Tracy Lawrence\"\nand Now\"\" a bad listen.\"\" In 2006, Lawrence started his own record label, Rocky Comfort Records, in partnership with his brother Laney. The first act signed to the label besides Lawrence himself was Chad Brock. Lawrence's first single for the label was \"\"Find Out Who Your Friends Are\"\", which was released in August 2006 from the studio album \"\"For the Love\"\". The song initially lingered below the Top 40 of the Hot Country Songs charts, but following the album's release, it gained in radio interest due to the album containing as a bonus track an alternate version with Tim McGraw"} +{"qid": "test2719", "pid": "2805390", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Tim McGraw\"\nprestigious \"\"Pollstar Magazine\"\", beating out such heavyweights as Madonna and the Rolling Stones. In a special gesture, the couple donated all of the profits from their performance in New Orleans to Hurricane Katrina relief. McGraw, along with Kenny Chesney, contributed to a version of Tracy Lawrence's song \"\"Find Out Who Your Friends Are\"\", which can be found on Lawrence's album \"\"For the Love\"\". Although the official single version features only Lawrence's vocals, many stations have opted to play the version with McGraw and Chesney instead. McGraw released his eleventh studio album, \"\"Let It Go\"\", on March 27, 2007. The album's"} +{"qid": "test2719", "pid": "2681052", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Tracy Lawrence\"\nand Kenny Chesney on guest vocals. Thanks to the success of the alternate version, \"\"Find Out Who Your Friends Are\"\" became a number 1 single on that chart in 2007. The song reached that position in its 41st week on the chart, setting a new record at the time for the slowest ascent to the top of the country charts, and the second-slowest on any \"\"Billboard\"\" chart. The re-recorded version received Musical Event of the Year honors at the 2007 Country Music Association (CMA) Awards, Lawrence's first award from that association. Following this song were \"\"Til I Was a Daddy"} +{"qid": "test2719", "pid": "3276652", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Kenny Chesney\"\nLookin' (with Clint Black, Alan Jackson, Toby Keith, and George Strait), and a second song \"\"License To Chill\"\". Both songs are on Buffett's 2004 album \"\"License To Chill\"\". Chesney, along with Tim McGraw, contributed to a version of Tracy Lawrence's single \"\"Find Out Who Your Friends Are\"\", which can be found on his album \"\"For the Love\"\". The official single version, only featuring Lawrence's vocals, was released in August 2006 but did not reach the Top 40 on the country charts until January 2007, when 'the album was released. After the album's release, the version with him, Chesney, and McGraw"} +{"qid": "test2719", "pid": "10385114", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Find Out Who Your Friends Are\"\nweek. \"\"Find Out Who Your Friends Are\"\" also replaced Emerson Drive's \"\"Moments\"\" at Number One, marking the first time since 1950 that two artists on independently distributed labels reached Number One back-to-back on the singles chart. In addition, Lawrence became the first artist to reach Number One with the first release from a self-owned record label. Lawrence's album \"\"For the Love\"\" features two versions of the song: one version sung by Lawrence himself, and a remixed version featuring guest vocals from country music artists Tim McGraw and Kenny Chesney, both of whom are friends of Lawrence's. Only the solo version"} +{"qid": "test2719", "pid": "12409009", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Greatest Hits 3 (Tim McGraw album)\"\nGreatest Hits 3 (Tim McGraw album) Greatest Hits 3 is the third greatest hits collection from country singer from Tim McGraw. The album was released on October 7, 2008. The official announcement of the album was made on August 28, 2008, on McGraw's official website. No new material was recorded for \"\"Greatest Hits 3\"\". However, the album does include two songs not previously released on any of McGraw's albums: \"\"Find Out Who Your Friends Are\"\" (a number one collaboration with Tracy Lawrence and Kenny Chesney, also featured on Lawrence's 2007 album \"\"For the Love\"\") and \"\"Nine Lives\"\", a collaboration with"} +{"qid": "test2719", "pid": "5572463", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Because of You (Kelly Clarkson song)\"\nAt the 50th Grammy Awards, McEntire and Clarkson received a nomination in the category of Best Vocal Country Collaboration for the song, but lost to Willie Nelson and Ray Price. The pair also received a nomination for the Vocal Event of the Year at the 2008 Academy of Country Music, but lost to Tracy Lawrence with Kenny Chesney and Tim McGraw for their collaboration in \"\"Find Out Who Your Friends Are\"\". At the 2008 ASCAP Country Music Awards, the song was honoured with the Most Performed Songs award. In the United States, \"\"Because of You\"\" debuted at number 42 on"} +{"qid": "test2719", "pid": "5572462", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Because of You (Kelly Clarkson song)\"\n\"\"Cross Country: Top 10 Country-Pop Duets.\"\" Gary Trust of \"\"Billboard\"\" listed the pair as one of the 10 all-female hit collaborations that have scaled \"\"Billboard\"\" charts in recent years. On March 5, 2013, \"\"Billboard\"\" ranked the song #71 in its list of Top 100 American Idol Hits of All Time. At the 42nd Annual Academy of Country Music Awards, McEntire and Clarkson received a nomination in the category of Musical Event of the Year for \"\"Because of You,\"\" but lost to Tracy Lawrence with Kenny Chesney and Tim McGraw for their collaboration in \"\"Find Out Who Your Friends Are\"\" (2006)."} +{"qid": "test2719", "pid": "10385110", "query": "who sings find out who your friends are with tracy lawrence", "answer": "Kenny Chesney", "passage": "\"Find Out Who Your Friends Are\"\n\"\"For the Love\"\", radio stations began to play an alternate version of the song which featured guest vocals from Tim McGraw and Kenny Chesney, thus helping to boost the song to Number One on both the \"\"Billboard\"\" and \"\"Mediabase\"\" country singles charts. Upon reaching Number One in June 2007, \"\"Find Out Who Your Friends Are\"\" set a new record for the slowest-climbing Number One single in the history of the \"\"Billboard\"\" country music chart, as well as the second-slowest climbing on any \"\"Billboard\"\" singles chart. In addition, it became Lawrence's first \"\"Billboard\"\" Number One since 1996's \"\"Time Marches On\"\", ten"} +{"qid": "test272", "pid": "4420363", "query": "when does the movie jeepers creepers come out", "answer": "September 26, 2017", "passage": "\"Jeepers Creepers 2\"\nspot still held by \"\"Jeepers Creepers\"\". Allowing for films that had been released prior to Labor Day, \"\"Jeepers Creepers 2\"\" holds the #9 spot after the 2015 Labor Day four-day weekend. In September 2015, \"\"Jeepers Creepers 3\"\" was officially greenlit. The film was slated to begin filming in April 2016 until production was halted when Victor Salva was boycotted from filming in Canada for his criminal past The film was eventually released in a one-night-only showing on September 26, 2017, 14 years after the release of \"\"Jeepers Creepers 2\"\". It grossed $2.3 million in theaters. Jeepers Creepers 2 Jeepers Creepers"} +{"qid": "test272", "pid": "13443858", "query": "when does the movie jeepers creepers come out", "answer": "September 26, 2017", "passage": "\"Jeepers Creepers 3\"\nJeepers Creepers 3 Jeepers Creepers 3 is a 2017 American horror film written and directed by Victor Salva and the third \"\"Jeepers Creepers\"\" film, taking place in between \"\"Jeepers Creepers\"\" and \"\"Jeepers Creepers 2.\"\" Jonathan Breck reprises his role as the Creeper. Gina Philips returns in a cameo as Trish Jenner, her first return to the series since the original film. The film was shown in theaters on September 26, 2017 in what was originally announced as a one-night-only showing and was then shown again on October 4, 2017. A shuriken flies through the air and hits a wooden post"} +{"qid": "test2720", "pid": "4900472", "query": "who did the original spirit in the sky", "answer": "Norman Greenbaum", "passage": "\"Spirit in the Sky\"\nSpirit in the Sky \"\"Spirit in the Sky\"\" is a song written and originally recorded by Norman Greenbaum and released in late 1969. The single became a gold record, selling two million copies from 1969 to 1970 and reached number three on the US \"\"Billboard\"\" Hot 100 chart (April 18, 1970), where it lasted for 15 weeks in the Top 100. \"\"Billboard\"\" ranked the record the No. 22 song of 1970. It also climbed to number one on the UK, Australian and Canadian charts in 1970. \"\"Rolling Stone\"\" ranked \"\"Spirit in the Sky\"\" No. 333 on its list of the"} +{"qid": "test2720", "pid": "4900479", "query": "who did the original spirit in the sky", "answer": "Norman Greenbaum", "passage": "\"Spirit in the Sky\"\n\"\"Pop Idol\"\" runner-up Gareth Gates' second studio album, \"\"Go Your Own Way\"\". The single was released on March 14, 2003, and was the official \"\"Comic Relief\"\" charity single for 2003. The song features guest vocals from The Kumars. The song peaked at number one on the UK Singles Chart, becoming Gates' fourth number one single. Spirit in the Sky \"\"Spirit in the Sky\"\" is a song written and originally recorded by Norman Greenbaum and released in late 1969. The single became a gold record, selling two million copies from 1969 to 1970 and reached number three on the US \"\"Billboard\"\""} +{"qid": "test2720", "pid": "3526764", "query": "who did the original spirit in the sky", "answer": "Norman Greenbaum", "passage": "\"Norman Greenbaum\"\na song on television. In an interview Greenbaum stated that western movies were the real inspiration for \"\"Spirit in the Sky\"\": Norman Greenbaum: If you ask me what I based \"\"Spirit In The Sky\"\" on ... what did we grow up watching? Westerns! These mean and nasty varmints get shot and they wanted to die with their boots on. So to me that was spiritual, they wanted to die with their boots on. Ray Shasho: So that was the trigger that got you to write the song? Norman Greenbaum: Yes. The song itself was simple, when you're writing a song"} +{"qid": "test2721", "pid": "454042", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"Vicente Fox\"\nVicente Fox Vicente Fox Quesada, (; born 2 July 1942) is a Mexican businessman and politician who served as the 55th President of Mexico from 1 December 2000 to 30 November 2006. A right-wing populist, Fox ran for and was elected President on the National Action Party (PAN) ticket, which was an opposition party at the time of his election as president. He is currently the Co-President of the Centrist Democrat International, an international organization of center-right political parties. Fox was elected President of Mexico in the 2000 presidential election, a historically significant election since it made him the first"} +{"qid": "test2721", "pid": "1624653", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"National Action Party (Mexico)\"\nHe called the latter as \"\"anti-natural.\"\" He has publicly asked voters not to cast votes for \"\"abortionist\"\" parties and those who are in favor of homosexual relationships. National Action Party (Mexico) The National Action Party (, PAN), founded in 1939, is a conservative political party in Mexico, one of the three main political parties in Mexico. Since the 1980s, it has been an important political party winning local, state, and national elections. In 2000, PAN candidate Vicente Fox was elected president for a six-year term; in 2006, PAN candidate Felipe Calderón succeeded Fox in the presidency. During the period 2000-2012,"} +{"qid": "test2721", "pid": "1624630", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"National Action Party (Mexico)\"\nNational Action Party (Mexico) The National Action Party (, PAN), founded in 1939, is a conservative political party in Mexico, one of the three main political parties in Mexico. Since the 1980s, it has been an important political party winning local, state, and national elections. In 2000, PAN candidate Vicente Fox was elected president for a six-year term; in 2006, PAN candidate Felipe Calderón succeeded Fox in the presidency. During the period 2000-2012, both houses of the Congress of the Union (the federal legislature) contained PAN pluralities, but the party had a majority in neither. In the 2006 legislative elections"} +{"qid": "test2721", "pid": "17376683", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"Alfredo Corchado\"\nreturned to Mexico to serve as the newspaper's Mexico City bureau chief. He was the \"\"Morning News's\"\" lead reporter during Mexico's 2000 presidential election, was the first to interview the newly elected President Vicente Fox, and was one of a small group of experts who briefed then Secretary of State Hillary Clinton before her first trip to Mexico. But the abiding preoccupation of his journalism has been with the U.S.-Mexico border and the drug wars. Corchado's coverage of the drug cartels established a foundation for coverage by other news organizations. Late in 2003, he began covering a series of killings"} +{"qid": "test2721", "pid": "12018388", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"Presidency of Vicente Fox\"\nminister of the Electoral Tribunal, declared: In August 2006, \"\"El Universal\"\" polled 600 people in Mexico City, where López Obrador served as Head of Government from 2000 to 2005. 59% believed that the 2006 elections were fraudulent and 63% believed votes should have been recounted. In February 2007, Fox declared about the desafuero process of López Obrador: Presidency of Vicente Fox Vicente Fox served as President of Mexico from December 1, 2000 to November 30, 2006. His victory in the federal elections in 2000 ended more than 70 years rule of the Institutional Revolutionary Party. In contrast with his predecessors,"} +{"qid": "test2721", "pid": "5610215", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"Julio Frenk\"\nthat appointment, he went on to serve as the founding director-general of the National Institute of Public Health of Mexico, from 1987 to 1992. From 1995 to 1998, he served as the executive vice president of the Mexican Health Foundation, a private non-profit organization, and the director of its Centre for Health and the Economy. In 1998, he was designated executive director of evidence and information for policy at the World Health Organization (WHO), in Geneva, Switzerland. Following the election of Vicente Fox in Mexico's 2000 presidential election, Frenk was appointed minister of health of Mexico, a position he held"} +{"qid": "test2721", "pid": "2317561", "query": "who was elected president in mexico in 2000", "answer": "Vicente Fox", "passage": "\"Adolfo Aguilar Zínser\"\nMexico (PVEM). Following Vicente Fox's election to the Presidency (representing a coalition of the National Action Party and the PVEM) on July 2, 2000, Aguilar served as the transition team's advisor on international affairs. After taking office, Fox appointed Aguilar his national security advisor. In January 2002, Fox appointed Aguilar Mexico's permanent representative to the United Nations. His term coincided with Mexico's election to the Security Council and, in accordance with the Security Council's rules of procedure, he served as its president for two one-month terms. Following a speech to students at Mexico City's Ibero-American University on November 11, 2003,"} +{"qid": "test2723", "pid": "836722", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Big Ten Conference\"\nIndiana has won five, Michigan State has won two, while Maryland, Michigan, Ohio State and Wisconsin have won one national championship each. 11 of the 14 current conference members have advanced to the Final Four at least once in their history. Nine Big Ten schools (Indiana, Michigan State, Illinois, Purdue, Ohio State, Maryland, Iowa, Michigan, and Wisconsin) are among the national top-50 in all-time NCAA tournament appearances. Seasons are listed by the calendar years in which they ended. \"\"Italics\"\" indicate honors earned before the school competed in the Big Ten. \"\"† denotes overtime games. Multiple †'s indicate more than one"} +{"qid": "test2723", "pid": "6569842", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan–Ohio State football rivalry\"\nmore losses than in any other season in its history. The Buckeyes posted a 42–7 win, and scored their largest margin of victory over Michigan since 1968. Ohio State won 21–10 in the 2009 game to extend their winning streak against Michigan to six games, their longest in the rivalry's history, and improve Jim Tressel's record versus Michigan to 8–1. Ohio State wore throwback uniforms to commemorate their 1954 national championship team. The 2009 meeting also saw Buckeye guard Justin Boren, who had transferred to Ohio State from Michigan in 2008, become the third player in school history to play"} +{"qid": "test2723", "pid": "8126223", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"National Collegiate Wrestling Association\"\nwas passed at that year's Vision Forum and implemented for the 2011 National Championships. Since then, California Baptist University has won two of the three Division I Championships while no team has won more than one Division II Championship. Wrestling clubs in the NCWA: Bloomsburg University, Edinboro University, Ferrum College, Fresno State University, Iowa State University, Lehigh University, Michigan State University, Northern Illinois University, Ohio State University, Pennsylvania State University, Rutgers University, Sacred Heart University, State University of New York - Cortland, University of Buffalo, University of Iowa, University of Maryland, University of Michigan, University of Northern Colorado, University of"} +{"qid": "test2723", "pid": "433440", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"University of Michigan\"\n107,601 (the extra seat is said to be \"\"reserved\"\" for Fritz Crisler) though attendance—frequently over 111,000 spectators—regularly exceeds the official capacity. The NCAA's record-breaking attendance has become commonplace at Michigan Stadium, especially since the arrival of head coach Bo Schembechler. U-M has fierce rivalries with many teams, including Michigan State, Notre Dame, and Ohio State; ESPN has referred to the Michigan-Ohio State rivalry as the greatest rivalry in American sports. U-M also has all-time winning records against Michigan State, Notre Dame, and Ohio State. The men's ice hockey team, which plays at Yost Ice Arena, has won nine national championships,"} +{"qid": "test2723", "pid": "9354350", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"History of Ohio State Buckeyes football\"\nhe would return in 1993. The next 6 seasons were very successful, winning ten or more games in 5 of the 6 and sharing the conference championship in three. Eddie George won the Heisman Trophy in 1995 after a tremendous senior season, Ohio State defeated Notre Dame in 1995 and 1996, and won half its bowl games. But in three seasons (1993, 1995, and 1996) the Buckeyes entered the Michigan game undefeated, with the possibility of a national championship in at least one, and lost all three to underdog Wolverine teams. Ohio State had won 62 games and lost only"} +{"qid": "test2723", "pid": "11110602", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"1988 Rose Bowl\"\na 19–14 win at Iowa. A dramatic 17–11 win over in state rival Michigan occurred on October 10. On October 31, the Spartans defeated Ohio State, making this the first season since the 1966 National Championship when the Spartans defeated both Michigan and Ohio State. The Indiana Hoosiers also had beaten Michigan and Ohio State, and the meeting between Michigan State and Indiana on November 14 determined the Big Ten championship. Michigan State won 27–3 to clinch their first Rose Bowl appearance since the 1965 season. Note that they are the only team in college history to not only beat"} +{"qid": "test2723", "pid": "6569852", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan–Ohio State football rivalry\"\nrecorded 4 wins in 4 years as a starting quarterback—the first Ohio State QB to do so. Until this game, Ohio State had never come back and won a game against Michigan once down 14 or more points. In 2018, the #4 Wolverines visited the #10 Buckeyes in a game with both Big 10 Championship and College Football Playoff implications. Michigan entered the game with the best defense in the country, but Ohio State gained more than 560 yards - including 6 touchdown passes - en route to a 62-39 victory. Ohio State's 62 points set a record for points"} +{"qid": "test2723", "pid": "9902032", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan State Spartans men's basketball\"\nTen. MSU's 26 regular season wins tied the most for a Michigan State team in the regular season. Following the regular season, \"\"USA Today\"\" named Valentine National Player of the Year. The Big Ten also announced that Valentine was the Big Ten's Player of the Year. As the No. 2 seed in the Big Ten Tournament, MSU defeated Ohio State for a third time on the season before dispatching Maryland and Purdue to win the Tournament championship. With the win, MSU set the record for most Big Ten Tournament championships with five (Ohio State has also won five, but one"} +{"qid": "test2723", "pid": "17737362", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"2014 Ohio State Buckeyes football team\"\nfavorite to win the Big Ten championship, and also being in the discussion for the national championship. Ohio State continued to build on the successes of the 2012 team, extending their winning streak to 23 games following a 42–14 victory over Indiana Hoosiers, a school record for consecutive victories. The Buckeyes won their second consecutive game over arch rival Michigan and completed their second consecutive undefeated regular season, while also winning the Leaders Division and qualifying for the Big Ten Championship Game. Following a 34–24 loss to Michigan State in the conference championship game, Ohio State was selected to play"} +{"qid": "test2723", "pid": "8294188", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Ohio State Buckeyes football\"\nMichigan Week. The Tunnel of Pride began with the 1994 Michigan game when all former players who were in attendance formed a tunnel through which the team ran to take the field, and Ohio State beat its rival that day, 22–6. Rex Kern, quarterback of the 1968 National Championship team, and then Director of Athletics Andy Geiger together used the concept as a means of connecting current Buckeyes with those who played before them. The Tunnel of Pride was next formed for the 1995 Notre Dame game, which the Buckeyes also won. In each home game against Michigan since, the"} +{"qid": "test2723", "pid": "8294157", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Ohio State Buckeyes football\"\nor be fired were laid to rest when University President Gordon Gee announced he would be back in 1993. The next 6 seasons were very successful, winning ten or more games in 5 of the 6 and sharing the conference championship in three. Eddie George won the Heisman Trophy in 1995 after a tremendous senior season, Ohio State defeated Notre Dame in 1995 and 1996, and won half its bowl games. But in three seasons (1993, 1995, and 1996) the Buckeyes entered the Michigan game undefeated, with the possibility of a national championship in at least one, and lost all"} +{"qid": "test2723", "pid": "5283786", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan Wolverines\"\nSapp led the team to its best record in more than 50 years with 6th-place finish at the NCAA championship finals. Chris Whitten became head coach in 2011 and led the team to a runner-up finish in 2013. Three Michigan golfers have won the individual intercollegiate golf championships: Johnny Fischer (1932), Chuck Kocsis (1936), and Dave Barclay (1947). The team has won the Big Ten Conference Championship 12 times: 1932–36, 1942–44, 1946–47, 1949, and 1952. Women's golf has been a varsity sport at Michigan since 1976. Cheryl Stacy, a former All-American golfer for Ohio State, took over as the team's"} +{"qid": "test2723", "pid": "14782742", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"2006 Michigan vs. Ohio State football game\"\nby the Florida Gators in the national championship game. Michigan and Ohio State first faced each other in 1897, and have met annually since 1918. Coming into the game, Michigan held the all-time lead in the series 57–39–6, though Ohio State had won the previous two meetings. Called simply \"\"The Game\"\" by some, the rivalry is considered one of the greatest in sports. The rivalry was specifically intense during a period known as the Ten Year War from 1969 to 1978 when Woody Hayes of Ohio State and Bo Schembechler of Michigan coached opposing teams. This would be the first"} +{"qid": "test2723", "pid": "9874236", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Auburn Tigers swimming and diving\"\nrank third behind Texas (20 combined NCAA championships) and Stanford (17 combined NCAA championships). The Auburn women rank third all time with 5 NCAA championships behind Stanford (8) and Texas (7). The Auburn men rank tied for fifth all time with Stanford, each with 8 NCAA titles. The Tigers and Cardinal are behind Texas (13), Michigan (12), Ohio State (11), and USC (9). With their 2007 national title, Auburn's men joined Michigan and Indiana as the only teams to win five consecutive national tiles. Auburn has won 23 SEC championships in program history. Auburn's women have won five SEC titles,"} +{"qid": "test2723", "pid": "6569835", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan–Ohio State football rivalry\"\nrecord. For the first time in the history of the rivalry, the two rivals faced off while holding the top two spots in the Bowl Championship Series rankings. Ohio State won the game by a score of 42–39 and became the outright Big Ten champion, earning the right to play for a national championship at the BCS National Championship Game in Glendale, Arizona. Michigan struck first with a touchdown run by junior running back Mike Hart, but the Buckeyes then scored 21 unanswered points, and at halftime, they were up 28–14. Thanks to an interception and a fumble recovery by"} +{"qid": "test2723", "pid": "6569811", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan–Ohio State football rivalry\"\ntwo victories of the decade. At the end of the 1920s, the series stood at 19–5–2 in favor of Michigan. Michigan won three of four contests between 1930 and 1933, claiming the national championship twice. In 1934, Francis Schmidt came on as the head coach for Ohio State. The team had lost nine of the previous 12 Michigan-OSU contests, and when a reporter asked Schmidt if Ohio State could beat Michigan that year, he replied, \"\"Of course we can win, Michigan puts their pants on one leg at a time just like we do\"\". The Buckeyes thereupon ran off four"} +{"qid": "test2723", "pid": "836729", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Big Ten Conference\"\nlacrosse. Since 1895, the two teams have matched up more than 100 times. This list goes through the 2017 season. Women's lacrosse became a Big Ten-sponsored sport in the 2015 season. The Big Ten women's lacrosse league includes Johns Hopkins, Maryland, Michigan, Northwestern, Ohio State, Penn State, and Rutgers. Big Ten women's lacrosse programs have 22 of the 36 all-time NCAA championships, including 11 of the last 13. Maryland has earned one pre-NCAA national title and has won 13 NCAA national championships, including seven straight from 1995 to 2001 and most recently in 2017. Northwestern has claimed seven NCAA titles,"} +{"qid": "test2723", "pid": "11379334", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Bowl Championship Series controversies\"\nOhio State in the BCS National Championship game. Louisville (11–1, Big East champions), and Boise State were given less consideration because of a perceived lack of schedule strength, while Wisconsin (11–1) was two steps removed from Ohio State (they lost to Michigan, who lost to Ohio State, and Wisconsin and Ohio State did not play). Michigan lost to Ohio State 42–39 in the regular season finale (giving the Buckeyes the Big Ten championship), but were still ranked ahead of Florida and behind USC going into the final ballot. Florida defeated Arkansas in the SEC Championship Game, and No. 2 USC"} +{"qid": "test2723", "pid": "17784294", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"2015 College Football Playoff National Championship\"\nJT Barrett. The Buckeyes lost at home to Michigan State in week 13 17-14, ending their chance at another national championship. They were invited to the Fiesta Bowl against Notre Dame, which they won 44-28. The Buckeyes then returned to the playoff in 2016, despite not winning their conference, but lost in the Fiesta Bowl to eventual national champion Clemson 31-0. Meanwhile, the Ducks fell to 0-2 in national championship games, with their other loss to Auburn in 2010. They also fell to 0-9 all time against Ohio State. Marcus Mariota, who won the Heisman Trophy in 2014, declared for"} +{"qid": "test2723", "pid": "4842949", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Jack Tatum\"\ntitles and one national championship win in 1968, Tatum's first season with the team. In the storied rivalry between Ohio State and Michigan, Tatum and his fellow Buckeyes won in 1968 by the score of 50-14, lost in 1969 by 24-12, and won again in 1970 by 20-9. Tatum was inducted into the Ohio State Varsity O Hall of Fame in 1981 and into the College Football Hall of Fame in 2004. In 2001, Ohio State head coach Jim Tressel instituted the \"\"Jack Tatum Hit of the Week Award\"\", given to the player who had the most impressive defensive hit"} +{"qid": "test2723", "pid": "6776641", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Game of the Century (college football)\"\nSports branding); the 2007 Rose Bowl would be an ESPN on ABC presentation. On November 18, 2006, Ohio State and Michigan met for their annual showdown, each carrying an 11–0 record. For the first time in the history of the rivalry, the two rivals faced off while holding the top two spots in the Bowl Championship Series rankings. Ohio State won 42–39 and became the outright Big Ten champion, earning the right to play for a national championship at the BCS National Championship Game in Glendale, Arizona. Michigan struck first blood with a touchdown run by junior running back Mike"} +{"qid": "test2723", "pid": "14169840", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"1944 Michigan Wolverines football team\"\n(fullback). On November 25, 1944, Michigan faced Ohio State at Ohio Stadium in Columbus, Ohio. Michigan came into the game ranked #6 in the AP Poll with undefeated Ohio State ranked #3, and with the Big Nine Conference championship at stake. Ohio State won the game, and with it the conference championship, by an 18 to 14 score. Both of Michigan's touchdowns were scored by Bill Culligan, with both points after touchdown kicked by Joe Ponsetto. Ohio State quarterback and 1944 Heisman Trophy winner Les Horvath scored two touchdowns for the Buckeyes. Michigan led 14-12 in the fourth quarter, but"} +{"qid": "test2723", "pid": "8294137", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Ohio State Buckeyes football\"\nmotivation for entire seasons and after the initial win by Michigan, played dead even at four wins and a tie apiece. Hayes had the upper hand during the first part of the war, in which Ohio State won the conference championship and went to the Rose Bowl four straight years, while Michigan won the final three. It was also an era in which through television Ohio State football again came to the forefront of national attention. Hayes set the tone in spring practice in 1970, placing a rug at the entrance to the Buckeye dressing room emblazoned with the words:"} +{"qid": "test2723", "pid": "9354287", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"History of Ohio State Buckeyes football\"\nHowever, in 1939 the Buckeyes won the Big Ten championship despite a final-game loss to Michigan; this has only occurred twice in the rivalry since, in 1982 and 2004, when Michigan won the Big Ten despite losing to Ohio State. Quarterback Don Scott was named an All-American, and the team reached its highest ranking at number four following a win over Minnesota on October 21. The next week it hosted its first ever top-ten matchup, against No. 7 and eventual national champion Cornell, but lost 23–14. Schmidt's popularity had been fading for a number of reasons, including the mediocre showing"} +{"qid": "test2723", "pid": "9138584", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"2007 BCS National Championship Game\"\nthen No. 2 Texas Longhorns, then No. 24 Penn State Nittany Lions, then No. 13 Iowa Hawkeyes, and their then undefeated Big Ten Conference rival, then No. 2 Michigan. The win over Michigan to finish the regular season essentially guaranteed the Buckeyes a spot in the National Championship game. Who they would play remained a highly debated question. Despite the loss to Ohio State, Michigan remained No. 2 in the polls, followed by No. 3 Southern California (USC), No. 4 Florida, and No. 5 Notre Dame. The next week, with both No. 1 Ohio State and No. 2 Michigan's regular"} +{"qid": "test2723", "pid": "836719", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Big Ten Conference\"\nfive titles, Michigan State with two, and Wisconsin, Michigan, and Ohio State with one each. Maryland, which joined the Big Ten in 2014, won one NCAA championship as a member of the ACC. Ohio State played in the first NCAA tournament national championship game in 1939, losing to Oregon. Despite this, Jimmy Hull of Ohio State was the first NCAA tournament MVP. The first three tournament MVPs came from the Big Ten (Marv Huffman of Indiana in 1940 and John Katz of Wisconsin in 1941). Big Ten teams have also experienced success in the postseason NIT. Since 1974, 13 Big"} +{"qid": "test2723", "pid": "8294177", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Ohio State Buckeyes football\"\n49-20. The Buckeyes won their last four games of the regular season, including a 62-39 win over archival Michigan, in Columbus. The win gave the Buckeyes a share of the Big Ten East Division title, and the right to face Northwestern in the Big Ten Championship Game, which Ohio State won for its second consecutive Big Ten Championship. On December 4, 2018, the university announced that Meyer would retire after the 2019 Rose Bowl and be replaced by co-offensive coordinator Ryan Day. The following is a list of Ohio State's national championships as recognized by both the university and the"} +{"qid": "test2723", "pid": "5359175", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Michigan Wolverines swimming and diving\"\nvarsity sport at Michigan since 1921. With 19 total national championships—12 NCAA championships and seven unofficial national championships— including the 2013 NCAA championship, the Michigan men's swimming and diving team has won more national championships than any other varsity sport in the history of the university. In addition, Michigan holds 38 Big Ten Titles in its history with its most recent title coming in the 2013-14 season. The team has won more Big Ten titles than any other program. Michigan has enjoyed great success as of late, finishing as a top-10 team in the NCAA's nine out of the last"} +{"qid": "test2723", "pid": "9354330", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"History of Ohio State Buckeyes football\"\nMichigan, played dead even at four wins and a tie apiece. Hayes had the upper hand during the first part of the war, in which Ohio State won the conference championship and went to the Rose Bowl four straight years, while Michigan won the final three. It was also an era in which through television Ohio State football again came to the forefront of national attention. Hayes set the tone in spring practice in 1970, placing a rug at the entrance to the Buckeye dressing room emblazoned with the words: \"\"1969 MICH 24 OSU 12 — 1970 MICH:__ OSU:__\"\" as"} +{"qid": "test2723", "pid": "8294132", "query": "who has won more national championships michigan or ohio state", "answer": "Michigan", "passage": "\"Ohio State Buckeyes football\"\ngoal-line stand against Michigan propelled Ohio State to a perfect season. Hayes led the powerhouse Buckeyes to a shared national championship (his first and the team's second). In 1955 the team again won the Big Ten, set an attendance record, and won in Ann Arbor for the first time in 18 years, while Hopalong Cassady was securing the Heisman Trophy. Ohio State passed only three times against Michigan (the sole reception was the only completion in the final three games of the year), leading to characterization of Hayes' style of offensive play as \"\"three yards and a cloud of dust\"\"."} +{"qid": "test2725", "pid": "1612123", "query": "who is known as the father of indian constitution", "answer": "Bhimrao Ramji Ambedkar", "passage": "\"B. R. Ambedkar\"\nB. R. Ambedkar Bhimrao Ramji Ambedkar (14 April 1891 – 6 December 1956), popularly known as Babasaheb Ambedkar, was an Indian jurist, economist, politician and social reformer who inspired the Dalit Buddhist movement and campaigned against social discrimination towards the untouchables (\"\"Dalits\"\"), while also supporting the rights of women and labour. He was independent India's first law and justice minister, the principal architect of the Constitution of India, and a founding father of the Republic of India. Ambedkar was a prolific student earning doctorates in economics from both Columbia University and the London School of Economics and gained a reputation"} +{"qid": "test2725", "pid": "1612181", "query": "who is known as the father of indian constitution", "answer": "Bhimrao Ramji Ambedkar", "passage": "\"B. R. Ambedkar\"\nnot been published yet, more than 30 volumes can be made from his unpublished writing literature. Primary sources B. R. Ambedkar Bhimrao Ramji Ambedkar (14 April 1891 – 6 December 1956), popularly known as Babasaheb Ambedkar, was an Indian jurist, economist, politician and social reformer who inspired the Dalit Buddhist movement and campaigned against social discrimination towards the untouchables (\"\"Dalits\"\"), while also supporting the rights of women and labour. He was independent India's first law and justice minister, the principal architect of the Constitution of India, and a founding father of the Republic of India. Ambedkar was a prolific student"} +{"qid": "test2726", "pid": "16882311", "query": "when did the sims 4 toddlers come out", "answer": "January 2017", "passage": "\"The Sims 4\"\nboth men and women. There are up to 18 hair colour options per hairstyle. Selections of premade designs of Sims are available to choose from, which range in body shape and ethnicity. Seven life stages are available including baby, toddler, child, teenager, young adult, adult and elder. The baby life stage is accessible only through the birth of a Sim and not available in Create A Sim. Toddlers were initially absent from the original game release, but were added in the January 2017 patch. Each Sim also has three traits and an aspiration containing its own hidden trait. Compared to"} +{"qid": "test2726", "pid": "16882329", "query": "when did the sims 4 toddlers come out", "answer": "January 12, 2017", "passage": "\"The Sims 4\"\nfor free in November, and this happened in the form of a game patch. Other features like basements have later been added in subsequent patches, and the missing \"\"toddler\"\" life stage was eventually added for free in a patch released on January 12, 2017. SteelSeries and Electronic Arts announced a series of themed peripherals to promote \"\"The Sims 4\"\", including a pair of headphones, a computer mouse that lights up in accordance with Sims' in-game emotional states, and a mousepad featuring a render of various Sim groups. A demo was released to the public displaying the new Create a Sim"} +{"qid": "test2729", "pid": "6831987", "query": "who were the judges on dancing on ice 2014", "answer": "Jason Gardiner", "passage": "\"Dancing on Ice\"\nsince series 3 in 2008. Christopher Dean, Jayne Torvill and Karen Barber returned to mentor the celebrities, with Barber returning to \"\"The Ice Panel\"\" after two series away. Phillip Schofield and Christine Bleakley returned to co-present. Head judge Robin Cousins and Barber were joined on \"\"The Ice Panel\"\" by former judge Jason Gardiner and former The Pussycat Dolls singer Ashley Roberts, who replaced Louie Spence and Katarina Witt. The ninth series of \"\"Dancing on Ice\"\" began airing on 5 January 2014. It was announced on 21 May 2013 by Christopher Dean and Jayne Torvill that it would be their last"} +{"qid": "test2729", "pid": "9118502", "query": "who were the judges on dancing on ice 2014", "answer": "Robin Cousins", "passage": "\"Nicky Slater\"\nwould not return as a judge for the sixth series in 2011. During his time on \"\"Dancing on Ice\"\", Slater also worked on the . During the final series of \"\"Dancing on Ice\"\" in early 2014, judge Robin Cousins was absent for weeks six and seven of the show due to him commentating at the 2014 Winter Olympics in Sochi, Russia. Slater stepped in as judge on the show, whilst Karen Barber was acting as head judge. He had previously judged The World Professional Figure Skating Championship for ABC and Strictly Ice Dancing for the BBC. Slater continues his commentary"} +{"qid": "test2729", "pid": "9522315", "query": "who were the judges on dancing on ice 2014", "answer": "Jason Gardiner", "passage": "\"Jason Gardiner\"\nJason Gardiner Jason Gardiner (born 7 November 1971) is an Australian choreographer, singer, and theatre producer best known for his role as a caustic and controversial judge on the ITV shows \"\"Dancing on Ice\"\", \"\"Born to Shine\"\" and \"\"Stepping Out\"\". Gardiner was a judge on the first series of the BBC talent show \"\"Strictly Dance Fever\"\". From 2006 to 2011, Gardiner was one of the original judges on the ITV show \"\"Dancing on Ice\"\". Gardiner returned to \"\"Dancing on Ice\"\" for its eighth series in 2013, but the show was cancelled after its ninth series in 2014. He returned as"} +{"qid": "test2729", "pid": "20868077", "query": "who were the judges on dancing on ice 2014", "answer": "Karen Barber", "passage": "\"Dancing on Ice (series 11)\"\nGardiner and Ashley Banjo are all set to return https://www.digitalspy.com/tv/reality-tv/a25629056/dancing-on-ice-holly-willoughby-phillip-schofield-judges-little-tweaks/ with former judge Karen Barber is set to return as head coach, a role which she last held in 2014 for series 9. Professional skater Daniel Whiston, who has partnered with a celebrity skater in every series since 2006, will not take part in the competition but will instead take on the role of Associate Creative Director. Jordan Banjo who was a host in the backstage rink in last year's series is not returning to the show due to scheduling conflicts. Last year's contestant Kem Cetinay will join the show"} +{"qid": "test2729", "pid": "8214763", "query": "who were the judges on dancing on ice 2014", "answer": "Jason Gardiner", "passage": "\"Torvill and Dean's Dancing on Ice\"\nDean, and is also roughly similar to an earlier Nine program \"\"Skating on Thin Ice\"\", also hosted by Durie, in 2005. Kristina, Pam and Matt were also skating partners for the celebrities in the original UK version. UK judges Karen Barber and Jason Gardiner, were joined by Alisa Camplin, Belinda Noonan, and international ice dancing judge, Mark Storton, on the judging panel. This table only counts for dances scored on a traditional 30-point scale. Judges' votes to save Judges' votes to save The ratings for the show during the eight-week season were high in its timeslot with the series premiere"} +{"qid": "test2729", "pid": "6831989", "query": "who were the judges on dancing on ice 2014", "answer": "Jason Gardiner", "passage": "\"Dancing on Ice\"\nCarty. Phillip Schofield and Christine Bleakley returned to co-present; Christopher Dean, Jayne Torvill and Karen Barber returned to mentor the celebrities; Robin Cousins, Jason Gardiner, Karen Barber and Ashley Roberts returned for their respective ninth, eighth, seventh and second series on \"\"The Ice Panel\"\". Cousins was absent for weeks 6 and 7 due to commentating the 2014 Winter Olympics, so former judge Nicky Slater returned in his place and Barber was temporary head judge. On 4 September 2017, it was announced on \"\"This Morning\"\" that \"\"Dancing on Ice\"\" would return with Willoughby and Schofield as presenters, and Torvill and Dean"} +{"qid": "test2729", "pid": "6831998", "query": "who were the judges on dancing on ice 2014", "answer": "Robin Cousins", "passage": "\"Dancing on Ice\"\nLondon 2012 Summer Olympics. It featured medal-winning Olympic athletes. The one-off special featured the judges from series 7, with Phillip Schofield and Christine Bleakley returning as presenters. Torvill & Dean unveiled a new and specially-crafted performance. Head judge, Robin Cousins also performed a solo routine for first time in twelve years. The judges scores were added to the studio audiences votes to decide the winner. No public vote took place, as the programme was recorded earlier in the year. A brand new spin-off show for the 2010 series of \"\"Dancing on Ice\"\", appropriately called \"\"Dancing on Ice Friday\"\", gave viewers"} +{"qid": "test273", "pid": "5838978", "query": "when did how you remind me come out", "answer": "August 21, 2001", "passage": "\"How You Remind Me\"\nHow You Remind Me \"\"How You Remind Me\"\" is a song by Canadian rock band Nickelback. It was released on August 21, 2001 as the lead single from their third studio album \"\"Silver Side Up\"\" (2001). A \"\"Gold Mix\"\" was made for latter editions of the single with the heavier guitars edited out of the chorus. Lead vocalist and guitarist Chad Kroeger wrote the song about his old girlfriend Jodi, with whom he had a dysfunctional relationship. He referred to this song as the song that put Nickelback on the map when played at their concert in Sturgis, South Dakota,"} +{"qid": "test2730", "pid": "6905458", "query": "where does some like it hot take place", "answer": "Chicago", "passage": "\"Hot Mikado\"\nTheatre in Washington, DC, where Bell was artistic director. Bell directed and choreographed the production. The musical also had an early Chicago production, among other revivals and ran in London's West End in 1995. It has enjoyed many additional productions in North America and the UK since then. The plot of \"\"Hot Mikado\"\" does not stray far from the Gilbert and Sullivan original, with a similar satiric tone. Katisha is played as a vamp. Ko-Ko is characterized in a manner similar to such characters as Sergeant Bilko. An extra male character, Junior, is added, who takes some of Pish-Tush's lines"} +{"qid": "test2732", "pid": "385664", "query": "when was the last time the seattle seahawks won the superbowl", "answer": "2013", "passage": "\"Seattle Seahawks\"\nGore. The Seahawks had not won in San Francisco since 2008 until defeating the 49ers in convincing 19–3 fashion on Thanksgiving Day in 2014. In the 2013 NFC Championship Game, the Seahawks defeated the 49ers 23 to 17, thanks to Malcolm Smith's interception, which was tipped by Richard Sherman. This clinched the Seahawks' berth into Super Bowl XLVIII. The Seahawks have developed a rivalry with the Carolina Panthers. The two teams have played each other in the NFL playoffs three times: during the 2005 NFC Championship Game, which Seattle won 34–14; the 2014 NFC Divisional playoffs, which the Seahawks won"} +{"qid": "test2734", "pid": "2919292", "query": "when did goku first go super saiyan 4", "answer": "Dragon Ball GT", "passage": "Goku\nstarted portraying Goku as more heroic than his manga counterpart. \"\"Dragon Ball GT\"\" chief character designer Katsuyoshi Nakatsuru said he agonized over designing Goku's Super Saiyan 4 appearance, which was the idea of the show's producers, questioning whether it was necessary to go further with the transformations. Because Super Saiyan 4 is brought about while in a Saiyan's form, he made the hair more \"\"wild\"\" and covered Goku's body in red fur. There was only a single final draft of the character, although Nakatsuru did consider making the hair blonde, he ended up choosing black as it provides more contrast"} +{"qid": "test2734", "pid": "2022774", "query": "when did goku first go super saiyan 4", "answer": "Dragon Ball GT", "passage": "\"Dragon Ball GT\"\nhaving the characters travel through the universe, and designed the appearances of the main cast. Toriyama himself referred to \"\"GT\"\" as a \"\"side story of the original \"\"Dragon Ball\"\"\"\". Chief character designer Katsuyoshi Nakatsuru said he agonized over designing Super Saiyan 4 Goku, which was the idea of the show's producers, questioning whether it was necessary to go further with the transformations. Because Super Saiyan 4 is brought about while in a Saiyan's form, he made the hair more \"\"wild\"\" and covered Goku's body in red fur. There was only a single final draft of the character; although Nakatsuru did"} +{"qid": "test2734", "pid": "5259329", "query": "when did goku first go super saiyan 4", "answer": "Dragon Ball GT", "passage": "\"Dragon Ball GT: Final Bout\"\nseries. The only unplayable character is Baby Vegeta in his Oozaru form, serving as the game's final boss. The unlockable characters consist of the adult Super Saiyan form of Goku in his \"\"GT\"\" outfit, the Super Saiyan forms of \"\"GT\"\" kid Goku and Trunks, \"\"Z\"\" series Super Saiyan Goku, Super Saiyan Future Trunks, Vegeto and the Super Saiyan 4 form of Goku. The original Japanese release of the game was unique for its naming conventions for all the characters. All the adult incarnations of Goku are referred by his full name \"\"Son Goku\"\" (孫悟空) while his child incarnation is referred"} +{"qid": "test2734", "pid": "5259330", "query": "when did goku first go super saiyan 4", "answer": "Dragon Ball GT", "passage": "\"Dragon Ball GT: Final Bout\"\nsimply as \"\"Goku\"\" (悟空), and his Z series incarnation is presented in all capital rōmaji \"\"SON GOKOU\"\". GT Trunks is referred by his katakana \"\"トランクス\"\", while Future Trunks is presented in all capital English text \"\"TRUNKS\"\". Nearly all Super Saiyan characters are referred with the prefix Super (超), and Super Saiyan 4 Goku is referred as \"\"Super 4 Son Goku\"\" (超4孫悟空). This also applies to the super form of Oozaru Baby Vegeta who is referred as \"\"Super Baby\"\" (スーパーベビー). Both Vegeta and Vegito are simply referred as Vegeta and Vegetto and not Super Vegeta and Super Vegito despite they are"} +{"qid": "test2736", "pid": "6810957", "query": "who did corbin dance with on dancing with the stars", "answer": "Karina Smirnoff", "passage": "\"Corbin Bleu\"\n2018 Bleu will play Billy Crocker in \"\"Anything Goes\"\", which will be seen in-the-round at Arena Stage in D.C. Washingtion from November 2–December 23, 2018. In 2019, he was cast in the Netflix drama film \"\"Walk Ride Rodeo\"\", alongside Missi Pyle, Spencer Locke and Bailey Chase, directed by Conor Allyn. In September 2013, Bleu runners-up the seventeenth-season of ABC's dancing competition \"\"Dancing with the Stars\"\". He partnered with professional dancer Karina Smirnoff. Bleu and Smirnoff are one of six couples still in the running to be crowned \"\"Dancing with the Stars\"\", seventeenth-season champions. Bleu wrote in his \"\"People\"\" blog. \"\"It's"} +{"qid": "test2738", "pid": "5939554", "query": "when did they stop using aluminum wiring in ontario", "answer": "mid-1970s", "passage": "\"Aluminum building wiring\"\nelectrical devices, has been implicated in house fires according to the U.S. Consumer Product Safety Commission (CPSC), and in some areas it may be difficult to obtain homeowners insurance for a house with older aluminum wiring. There are several possible reasons why these connections failed. The two main reasons were improper installations (poor workmanship) and the differences in the coefficient of expansion between aluminum wire used in the 1960s to mid-1970s and the terminations, particularly when the termination was a steel screw on an electrical device. The reported hazards are associated with older solid aluminum branch circuit wiring (smaller than"} +{"qid": "test2738", "pid": "5939556", "query": "when did they stop using aluminum wiring in ontario", "answer": "mid-1970s", "passage": "\"Aluminum building wiring\"\nthe softer aluminum wire. Most of the problems related to aluminum wire are typically associated with older (pre-1972) AA-1350 alloy solid aluminum wire, sometimes referred to as \"\"old technology\"\" aluminum wiring, as the properties of that wire result in significantly more expansion and contraction than copper wire or modern day AA-8000 series aluminum wire. Older solid aluminum wire also had some problems with a property called \"\"creep\"\", which results in the wire permanently deforming or relaxing over time under load. Aluminum wire used before the mid-1970s had a somewhat higher rate of creep, but a more significant issue was that"} +{"qid": "test2738", "pid": "5939542", "query": "when did they stop using aluminum wiring in ontario", "answer": "mid-1970s", "passage": "\"Aluminum building wiring\"\nthe preferred material today. In North American residential construction, aluminum wire was used for wiring entire houses for a short time from the 1960s to the mid-1970s during a period of high copper prices. Electrical devices (outlets, switches, lighting, fans, etc.) at the time were not designed with the particular properties of the aluminum wire being used in mind, and there were some issues related to the properties of the wire itself, making the installations with aluminum wire much more susceptible to problems. Revised manufacturing standards for both the wire and the devices were developed to reduce the problems. Existing"} +{"qid": "test2738", "pid": "5939547", "query": "when did they stop using aluminum wiring in ontario", "answer": "mid-1970s", "passage": "\"Aluminum building wiring\"\npossesses a higher yield strength ( for a cold worked AA-8076 wire). A home with aluminum wiring installed prior to the mid-1970s (as the stock of pre-1972 aluminum wire was permitted to be used up) likely has wire made with the older AA-1350 alloy that was developed for power transmission. The AA-1350 aluminum alloy was more prone to problems related to branch circuit wiring in homes due to mechanical properties that made it more susceptible to failures resulting from the electrical devices being used at that time combined with poor workmanship. The 1977 Beverly Hills Supper Club fire was a"} +{"qid": "test2739", "pid": "3705044", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"2018 Winter Olympics\"\n2018 Winter Olympics The 2018 Winter Olympics, officially known as the XXIII Olympic Winter Games () and commonly known as PyeongChang 2018, was an international winter multi-sport event that was held between 9 and 25 February 2018 in Pyeongchang County, Gangwon Province, South Korea, with the opening rounds for certain events held on 8 February 2018, the eve of the opening ceremony. Pyeongchang was elected as the host city in July 2011, during the 123rd IOC Session in Durban, South Africa. This was the first time that South Korea had hosted the Winter Olympics and the second Olympics held in"} +{"qid": "test2739", "pid": "12422127", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Bids for the 2018 Winter Olympics\"\nBids for the 2018 Winter Olympics Three cities applied with bids to host the 2018 Winter Olympics and Paralympics (also known as \"\"XXIII Olympic Winter Games\"\" and \"\"XII Paralympic Winter Games\"\") in October 2009. The International Olympic Committee, under the leadership of Jacques Rogge, received three bids on October 15, 2009. The cities of Annecy, France, in the French Alps, Munich, Germany (host of the 1972 Summer Olympics), and Pyeongchang, South Korea, a two-time previous bidder, competed for the hosting rights to the event. This was the lowest number of bidding cities since the 1988 Summer Olympics, coincidentally also won"} +{"qid": "test2739", "pid": "12422161", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Bids for the 2018 Winter Olympics\"\n10 points behind in the PowerIndex. Ratings for the BidIndex are from April 2011 and rating for the PowerIndex are from June 2011. Bids for the 2018 Winter Olympics Three cities applied with bids to host the 2018 Winter Olympics and Paralympics (also known as \"\"XXIII Olympic Winter Games\"\" and \"\"XII Paralympic Winter Games\"\") in October 2009. The International Olympic Committee, under the leadership of Jacques Rogge, received three bids on October 15, 2009. The cities of Annecy, France, in the French Alps, Munich, Germany (host of the 1972 Summer Olympics), and Pyeongchang, South Korea, a two-time previous bidder, competed"} +{"qid": "test2739", "pid": "5049323", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"1940 Winter Olympics\"\nCortina d'Ampezzo hosted in 1956. Germany has not hosted the Winter Olympics since 1936: on 6 July 2011; Munich lost to Pyeongchang, South Korea to host the 2018 Winter Games. 1940 Winter Olympics The 1940 Winter Olympics, which would have been officially known as the , were to have been celebrated from 3 to 12 February 1940 in Sapporo, Japan, but the games were eventually cancelled due to the onset of World War II. Sapporo subsequently hosted the 1972 Winter Olympics. Sapporo was selected to be the host of the sixth edition of the Winter Olympics, scheduled 3–12 February 1940,"} +{"qid": "test2739", "pid": "19671974", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"2018 Winter Olympics Parade of Nations\"\n2018 Winter Olympics Parade of Nations During the 2018 Winter Olympics Parade of Nations at the 2018 Winter Olympics opening ceremony, beginning at 20:00 KST () on 9 February 2018, athletes bearing the flags of their respective nations led their national delegations as they paraded into the Pyeongchang Olympic Stadium in the host city of Pyeongchang, South Korea. 92 teams qualified to compete (91 nations and Olympic Athletes from Russia). Athletes entered the stadium in an order dictated by Olympic tradition. As the originator of the Olympics, the Greek team entered first. Other teams entered in alphabetical order based on"} +{"qid": "test2739", "pid": "18970721", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Ice hockey at the 2018 Winter Olympics – Women's tournament\"\nby points, then goals. Only the top five goaltenders, based on save percentage, who have played at least 40% of their team's minutes, are included in this list. Ice hockey at the 2018 Winter Olympics – Women's tournament The women's tournament in ice hockey at the 2018 Winter Olympics was held in Gangneung, South Korea between 10 and 22 February 2018. Eight countries qualified for the tournament; five of them did so automatically by virtue of their ranking by the International Ice Hockey Federation, one, South Korea, automatically qualified as hosts, while the two others took part in a qualification"} +{"qid": "test2739", "pid": "3705047", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"2018 Winter Olympics\"\nGermany and Norway were tied for the most gold medals won; both won fourteen golds. Host nation South Korea won seventeen medals, their highest medal haul at a Winter Olympics, five of which were gold. Pyeongchang bid to host both the 2010 and 2014 Winter Olympics, but lost in the final rounds of voting to Vancouver and Sochi respectively. Munich also launched a bid to host these Games. Prior to Beijing's successful 2022 Winter Olympics bid, Munich would have become the first city to host both the Winter and the Summer Games, having previously hosted the 1972 Summer Olympics, but"} +{"qid": "test2739", "pid": "20530480", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Freestyle skiing at the 2018 Winter Olympics – Men's slopestyle\"\na minimum of 50 FIS points to compete. If the host country, South Korea at the 2018 Winter Olympics did not qualify, their chosen athlete would displace the last qualified athlete, granted all qualification criterion was met. The top 12 athletes in the qualifiers moved on to the medal round. The final was started at 14:11. Freestyle skiing at the 2018 Winter Olympics – Men's slopestyle The men's slopestyle event in freestyle skiing at the 2018 Winter Olympics took place on 18 February 2018 at the Bogwang Phoenix Park, Pyeongchang, South Korea. The top 30 athletes in the Olympic quota"} +{"qid": "test2739", "pid": "14051618", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"2018 Winter Paralympics\"\nAlpine programme in Sochi, snowboarding was expanded into a separate sport with additional competitions. For the second time,the United States topped the medal table with 36 total medals and 13 gold medals. Host nation South Korea placed 16th with 3 total medals and won its first gold and first bronze at in Winter Paralympics. As part of a formal agreement between the International Paralympic Committee and the International Olympic Committee first established in 2001, the winner of the bid for the 2018 Winter Olympics was also to host the 2018 Winter Paralympics. Pyeongchang was elected as host during the 123rd"} +{"qid": "test2739", "pid": "18970717", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Ice hockey at the 2018 Winter Olympics – Women's tournament\"\nIce hockey at the 2018 Winter Olympics – Women's tournament The women's tournament in ice hockey at the 2018 Winter Olympics was held in Gangneung, South Korea between 10 and 22 February 2018. Eight countries qualified for the tournament; five of them did so automatically by virtue of their ranking by the International Ice Hockey Federation, one, South Korea, automatically qualified as hosts, while the two others took part in a qualification tournament. Under a special agreement with the IOC and the IIHF, twelve North Korean players joined the host team to form a united team. They were allowed to"} +{"qid": "test2739", "pid": "20518690", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Snowboarding at the 2018 Winter Olympics – Women's parallel giant slalom\"\nminimum of 100 FIS points to compete. If the host country, South Korea at the 2018 Winter Olympics did not qualify, their chosen athlete would displace the last qualified athlete, granted all qualification criterion was met. The qualification was held at 09:00. The 16 best racers advanced to the elimination round. Snowboarding at the 2018 Winter Olympics – Women's parallel giant slalom The women's parallel giant slalom competition of the 2018 Winter Olympics was held on 24 February 2018 Bogwang Phoenix Park in Pyeongchang, South Korea. The top 32 athletes in the Olympic quota allocation list qualified, with a maximum"} +{"qid": "test2739", "pid": "20530484", "query": "who is going to host the 2018 winter olympics", "answer": "South Korea", "passage": "\"Freestyle skiing at the 2018 Winter Olympics – Women's ski cross\"\n2018) and also have a minimum of 80 FIS points to compete. If the host country, South Korea at the 2018 Winter Olympics did not qualify, their chosen athlete would displace the last qualified athlete, granted all qualification criterion was met. The seeding round was held on 22 February at 10:00. A knockout stage was held to determine the winner. Freestyle skiing at the 2018 Winter Olympics – Women's ski cross The Women's ski cross event in freestyle skiing at the 2018 Winter Olympics took place on 22 and 23 February 2018 at the Bogwang Phoenix Park, Pyeongchang, South Korea."} +{"qid": "test274", "pid": "1774594", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "Sacrum\nSacrum The sacrum ( or ; plural: \"\"sacra\"\" or \"\"sacrums\"\"), in human anatomy, is a large, triangular bone at the base of the spine that forms by the fusing of sacral vertebrae S1S5 between 18 and 30years of age. The sacrum is situated at the upper, back part of the pelvic cavity, between the two wings of the pelvis. It forms joints with four other bones. The two projections at the sides of the sacrum are called the alae (wings), and articulate with the ilium at the L-shaped sacroiliac joints. The upper part of the sacrum connects with the last"} +{"qid": "test274", "pid": "3556552", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Sacroiliac joint\"\nbe taken to differentiate this from hip joint pain. Women are considered more likely to suffer from sacroiliac pain than men, mostly because of structural and hormonal differences between the sexes, but so far no credible evidence exists that confirms this notion. Female anatomy often allows one fewer sacral segment to lock with the pelvis, and this may increase instability. Sacroiliac joint The sacroiliac joint or SI joint (SIJ) is the joint between the sacrum and the ilium bones of the pelvis, which are connected by strong ligaments. In humans, the sacrum supports the spine and is supported in turn"} +{"qid": "test274", "pid": "3556540", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Sacroiliac joint\"\nSacroiliac joint The sacroiliac joint or SI joint (SIJ) is the joint between the sacrum and the ilium bones of the pelvis, which are connected by strong ligaments. In humans, the sacrum supports the spine and is supported in turn by an ilium on each side. The joint is strong, supporting the entire weight of the upper body. It is a synovial plane joint with irregular elevations and depressions that produce interlocking of the two bones. The human body has two sacroiliac joints, one on the left and one on the right, that often match each other but are highly"} +{"qid": "test274", "pid": "15631966", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Sacroiliac joint dysfunction\"\njoints. The pelvic girdle is made up of two innominate bones (the iliac bones) and the sacrum. The innominate bones join in the front of the pelvis to form the pubic symphysis, and at back of the sacrum to form the sacroiliac (SI) joints. Each innominate bone (ilium) joins the femur (thigh bone) to form the hip joint; thus the sacroiliac joint moves with walking and movement of the torso. In this joint, hyaline cartilage on the sacral side moves against fibrocartilage on the iliac side. The sacroiliac joint contains numerous ridges and depressions that function in stability. Studies have"} +{"qid": "test274", "pid": "15921893", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "Pelvis\nbecome lax permitting a high degree of mobility in the joint. When standing, with the hip joint extended, the ligaments get twisted around the femoral neck, pushing the head of the femur firmly into the Acetabulum, thus stabilizing the joint. The two hip bones are joined anteriorly at the pubic symphysis by a fibrous cartilage covered by a hyaline cartilage, the interpubic disk, within which a non-synovial cavity might be present. Two ligaments, the superior and inferior pubic ligaments, reinforce the symphysis. Both sacroiliac joints, formed between the auricular surfaces of the sacrum and the two hip bones. are amphiarthroses,"} +{"qid": "test274", "pid": "15631965", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Sacroiliac joint dysfunction\"\nstudies have found up to 75% of post-lumbar fusion patients develop SI joint degeneration within five years of surgery. Pathological hypomobility (too little movement) of the sacroiliac joint is an intra-articular disorder in which the joint locks due to wearing down with age or degenerative joint disease. Hypomobility of this kind can also occur with an inflammatory disease such as ankylosing spondylitis, rheumatoid arthritis, or an infection. The sacroiliac joint is a true diarthrodial joint that joins the sacrum to the pelvis. The sacrum connects on the right and left sides to the ilia (pelvic bones) to form the sacroiliac"} +{"qid": "test274", "pid": "14476712", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Hip bone\"\neach other at the pubic symphysis. Together with the sacrum and coccyx, the hip bones form the pelvis. Ilium (plural \"\"ilia\"\") is the uppermost and largest region. It makes up two fifths of the acetabulum. It is divisible into two parts: the body and the ala or wing of ilium; the separation is indicated on the top surface by a curved line, the arcuate line, and on the external surface by the margin of the acetabulum. The body of ilium forms the sacroiliac joint with the sacrum. The edge of the wing of ilium forms the S-shaped iliac crest which"} +{"qid": "test274", "pid": "18743818", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "Vertebra\nof the transverse process. The term lumbosacral is often used to refer to the lumbar and sacral vertebrae together, and sometimes includes their surrounding areas. There are five sacral vertebrae (S1–S5) which are fused in maturity, into one large bone, the sacrum, with no intervertebral discs. The sacrum with the ilium forms a sacroiliac joint on each side of the pelvis, which articulates with the hips. The last three to five coccygeal vertebrae (but usually four) (Co1–Co5) make up the tailbone or coccyx. There are no intervertebral discs. Somites form in the early embryo and some of these develop into"} +{"qid": "test274", "pid": "3556546", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Sacroiliac joint\"\nlike all lower extremity joints, provides a \"\"self-locking\"\" mechanism (where the joint occupies or attains its most congruent position, also called the close pack position) that helps with stability during the push-off phase of walking. The joint locks (or rather becomes close packed) on one side as weight is transferred from one leg to the other, and through the pelvis the body weight is transmitted from the sacrum to the hip bone. The motions of the sacroiliac joint The sacroiliac joints like all spinal joints (except the atlanto-axial) are bicondylar joints, meaning that movement of one side corresponds to a"} +{"qid": "test274", "pid": "15921888", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "Pelvis\nis thus strong and rigid. Its secondary functions are to contain and protect the pelvic and abdominopelvic viscera (inferior parts of the urinary tracts, internal reproductive organs), providing attachment for external reproductive organs and associated muscles and membranes. The pelvic girdle consists of the two hip bones. The hip bones are connected to each other anteriorly at the pubic symphysis, and posteriorly to the sacrum at the sacroiliac joints to form the pelvic ring. The ring is very stable and allows very little mobility, a prerequisite for transmitting loads from the trunk to the lower limbs. As a mechanical structure"} +{"qid": "test274", "pid": "18977391", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Surgery for the dysfunctional sacroiliac joint\"\nare needed to move this surgery into the knowledge base of surgical education and surgical societies. Advancements in surgery are expected to continue as science is applied further to the diagnosis and treatment of sacroiliac joint dysfunction. Surgery for the dysfunctional sacroiliac joint The sacroiliac joint is a paired joint in the pelvis that lies between the sacrum and an ilium. Due to its location in the lower back, a dysfunctional sacroiliac joint may cause lower back and/or leg pain. The resulting leg pain can be severe, resembling sciatica or a slipped disc. While nonsurgical treatments are effective for some,"} +{"qid": "test274", "pid": "18977383", "query": "the joint between a coxal bone of the pelvis and the sacrum", "answer": "sacroiliac joint", "passage": "\"Surgery for the dysfunctional sacroiliac joint\"\nSurgery for the dysfunctional sacroiliac joint The sacroiliac joint is a paired joint in the pelvis that lies between the sacrum and an ilium. Due to its location in the lower back, a dysfunctional sacroiliac joint may cause lower back and/or leg pain. The resulting leg pain can be severe, resembling sciatica or a slipped disc. While nonsurgical treatments are effective for some, others have found that surgery for the dysfunctional sacroiliac joint is the only method to relieve pain. Sacroiliac joint dysfunction is diagnosed by a physician. Associated surgery should only occur when certain criteria are satisfied. Surgical options,"} +{"qid": "test2741", "pid": "17154098", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Even and odd atomic nuclei\"\nbeta decay. Also, the nuclear spin is integer for all even-\"\"A\"\" nuclei and non-integer (half-integer) for all odd-\"\"A\"\" nuclei. The neutron–proton ratio is not the only factor affecting nuclear stability. Adding neutrons to isotopes can vary their nuclear spins and nuclear shapes, causing differences in neutron capture cross-sections and gamma spectroscopy and nuclear magnetic resonance properties. If too many or too few neutrons are present with regard to the nuclear binding energy optimum, the nucleus becomes unstable and subject to certain types of nuclear decay. Unstable nuclides with a nonoptimal number of neutrons or protons decay by beta decay (including"} +{"qid": "test2741", "pid": "291759", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Nuclear physics\"\n(8 protons, 8 neutrons) within a few seconds of being created. In this decay a neutron in the nitrogen nucleus is converted by the weak interaction into a proton, an electron and an antineutrino. The element is transmuted to another element, with a different number of protons. In alpha decay (which typically occurs in the heaviest nuclei) the radioactive element decays by emitting a helium nucleus (2 protons and 2 neutrons), giving another element, plus helium-4. In many cases this process continues through several steps of this kind, including other types of decays (usually beta decay) until a stable element"} +{"qid": "test2741", "pid": "6357248", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Nuclear binding energy\"\nstable number for that number of nucleons. If the ratio of protons to neutrons is too far from stability, nucleons may spontaneously change from proton to neutron, or neutron to proton. The two methods for this conversion are mediated by the weak force, and involve types of beta decay. In the simplest beta decay, neutrons are converted to protons by emitting a negative electron and an antineutrino. This is always possible outside a nucleus because neutrons are more massive than protons by an equivalent of about 2.5 electrons. In the opposite process, which only happens within a nucleus, and not"} +{"qid": "test2741", "pid": "51432", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Beta decay\"\nBeta decay In nuclear physics, beta decay (\"\"β\"\"-decay) is a type of radioactive decay in which a beta ray (fast energetic electron or positron) and a neutrino are emitted from an atomic nucleus. For example, beta decay of a neutron transforms it into a proton by the emission of an electron, or conversely a proton is converted into a neutron by the emission of a positron (positron emission), thus changing the nuclide type. Neither the beta particle nor its associated neutrino exist within the nucleus prior to beta decay, but are created in the decay process. By this process, unstable"} +{"qid": "test2741", "pid": "5252168", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Double beta decay\"\nDouble beta decay In nuclear physics, double beta decay is a type of radioactive decay in which two neutrons are simultaneously transformed into two protons, or vice versa, inside an atomic nucleus. As in single beta decay, this process allows the atom to move closer to the optimal ratio of protons and neutrons. As a result of this transformation, the nucleus emits two detectable beta particles, which are electrons or positrons. The literature distinguishes between two types of double beta decay: \"\"ordinary\"\" double beta decay and \"\"neutrinoless\"\" double beta decay. In ordinary double beta decay, which has been observed in"} +{"qid": "test2741", "pid": "291371", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "Neutron\nwith a mean lifetime of just under 15 minutes (). This radioactive decay, known as beta decay, is possible because the mass of the neutron is slightly greater than the proton. The free proton is stable. Neutrons or protons bound in a nucleus can be stable or unstable, however, depending on the nuclide. Beta decay, in which neutrons decay to protons, or vice versa, is governed by the weak force, and it requires the emission or absorption of electrons and neutrinos, or their antiparticles. Protons and neutrons behave almost identically under the influence of the nuclear force within the nucleus."} +{"qid": "test2741", "pid": "3143517", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Mass number\"\nresult is an atom of thorium-234 and an alpha particle (): On the other hand, carbon-14 naturally decays by radioactive beta decay, whereby one neutron is transmuted into a proton with the emission of an electron and an anti-neutrino. Thus the atomic number increases by 1 (\"\"Z\"\": 6→7) and the mass number remains the same (\"\"A\"\" = 14), while the number of neutrons decreases by 1 (\"\"N\"\": 8→7). The resulting atom is nitrogen-14, with seven protons and seven neutrons: Another type of radioactive decay without change in mass number is emission of a gamma ray from a nuclear isomer or"} +{"qid": "test2741", "pid": "51457", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Beta decay\"\na few cases of odd-proton, odd-neutron radionuclides, it may be energetically favorable for the radionuclide to decay to an even-proton, even-neutron isobar either by undergoing beta-positive or beta-negative decay. An often-cited example is the single isotope (29 protons, 35 neutrons), which illustrates three types of beta decay in competition. Copper-64 has a half-life of about 12.7 hours. This isotope has one unpaired proton and one unpaired neutron, so either the proton or the neutron can decay. This particular nuclide (though not all nuclides in this situation) is almost equally likely to decay through proton decay by positron emission (18%) or"} +{"qid": "test2741", "pid": "51434", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Beta decay\"\nallows a quark to change type by the exchange of a W boson and the creation of an electron/antineutrino or positron/neutrino pair. For example, a neutron, composed of two down quarks and an up quark, decays to a proton composed of a down quark and two up quarks. Decay times for many nuclides that are subject to beta decay can be thousands of years. Electron capture is sometimes included as a type of beta decay, because the basic nuclear process, mediated by the weak force, is the same. In electron capture, an inner atomic electron is captured by a proton"} +{"qid": "test2741", "pid": "72968", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "Chalcogen\nproton emission, the moderately neutron-poor isotopes undergo electron capture or β decay, the moderately neutron-rich isotopes undergo β decay, and the most neutron rich isotopes undergo neutron emission. The middle chalcogens (selenium and tellurium) have similar decay tendencies as the lighter chalcogens, but their isotopes do not undergo proton emission and some of the most neutron-starved isotopes of tellurium undergo alpha decay. Polonium's isotopes tend to decay with alpha or beta decay. Isotopes with nuclear spins are more common among the chalcogens selenium and tellurium than they are with sulfur. Oxygen's most common allotrope is diatomic oxygen, or O, a"} +{"qid": "test2741", "pid": "291389", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "Neutron\ncontain an excess of neutrons is also possible, but is hindered because positrons are repelled by the positive nucleus, and quickly annihilate when they encounter electrons. Three types of beta decay in competition are illustrated by the single isotope copper-64 (29 protons, 35 neutrons), which has a half-life of about 12.7 hours. This isotope has one unpaired proton and one unpaired neutron, so either the proton or the neutron can decay. This particular nuclide is almost equally likely to undergo proton decay (by positron emission, 18% or by electron capture, 43%) or neutron decay (by electron emission, 39%). The mass"} +{"qid": "test2741", "pid": "12257349", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "\"Gamma ray\"\nexcited state. It can then decay to a lower energy state by emitting a gamma ray photon, in a process called gamma decay. The emission of a gamma ray from an excited nucleus typically requires only 10 seconds. Gamma decay may also follow nuclear reactions such as neutron capture, nuclear fission, or nuclear fusion. Gamma decay is also a mode of relaxation of many excited states of atomic nuclei following other types of radioactive decay, such as beta decay, so long as these states possess the necessary component of nuclear spin. When high-energy gamma rays, electrons, or protons bombard materials,"} +{"qid": "test2741", "pid": "12531601", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "Isotope\noddness of its atomic number \"\"Z\"\", neutron number \"\"N\"\" and, consequently, of their sum, the mass number \"\"A\"\". Oddness of both \"\"Z\"\" and \"\"N\"\" tends to lower the nuclear binding energy, making odd nuclei, generally, less stable. This remarkable difference of nuclear binding energy between neighbouring nuclei, especially of odd-\"\"A\"\" isobars, has important consequences: unstable isotopes with a nonoptimal number of neutrons or protons decay by beta decay (including positron decay), electron capture or other exotic means, such as spontaneous fission and cluster decay. The majority of stable nuclides are even-proton-even-neutron, where all numbers \"\"Z\"\", \"\"N\"\", and \"\"A\"\" are even."} +{"qid": "test2741", "pid": "291379", "query": "this type of nuclear decay effectively turns a proton into a neutron", "answer": "beta decay", "passage": "Neutron\nModels for atomic nucleus consisting of protons and neutrons were quickly developed by Werner Heisenberg and others. The proton–neutron model explained the puzzle of nuclear spins. The origins of beta radiation were explained by Enrico Fermi in 1934 by the process of beta decay, in which the neutron decays to a proton by \"\"creating\"\" an electron and a (as yet undiscovered) neutrino. In 1935 Chadwick and his doctoral student Maurice Goldhaber, reported the first accurate measurement of the mass of the neutron. By 1934, Fermi had bombarded heavier elements with neutrons to induce radioactivity in elements of high atomic number."} +{"qid": "test2742", "pid": "837648", "query": "what is the main source of nutrients in an estuary", "answer": "sea water", "passage": "Estuary\ntakes almost a year, and sediment, nutrients, and algae can cause problems in local waters. Estuary An estuary is a partially enclosed coastal body of brackish water with one or more rivers or streams flowing into it, and with a free connection to the open sea. Estuaries form a transition zone between river environments and maritime environments. They are subject both to marine influences—such as tides, waves, and the influx of saline water—and to riverine influences—such as flows of fresh water and sediment. The mixing of sea water and fresh water provide high levels of nutrients both in the water"} +{"qid": "test2743", "pid": "1987372", "query": "where does a brisket come from on a cow", "answer": "the breast or lower chest", "passage": "Brisket\nin dark German beer and cooked with celery, carrots, onions, bay leaves, and a small bundle of thyme. Brisket Brisket is a cut of meat from the breast or lower chest of beef or veal. The beef brisket is one of the nine beef primal cuts, though the precise definition of the cut differs internationally. The brisket muscles include the superficial and deep pectorals. As cattle do not have collar bones, these muscles support about 60% of the body weight of standing/moving cattle. This requires a significant amount of connective tissue, so the resulting meat must be cooked correctly to"} +{"qid": "test2743", "pid": "1987363", "query": "where does a brisket come from on a cow", "answer": "the breast or lower chest", "passage": "Brisket\nBrisket Brisket is a cut of meat from the breast or lower chest of beef or veal. The beef brisket is one of the nine beef primal cuts, though the precise definition of the cut differs internationally. The brisket muscles include the superficial and deep pectorals. As cattle do not have collar bones, these muscles support about 60% of the body weight of standing/moving cattle. This requires a significant amount of connective tissue, so the resulting meat must be cooked correctly to tenderize the connective tissue. According to the \"\"Random House Dictionary of the English Language\"\", Second Edition, the term"} +{"qid": "test2744", "pid": "9473015", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird in popular culture\"\nTo Kill a Mockingbird in popular culture Since the publication of\"\" To Kill a Mockingbird\"\" in 1960, there have been many references and allusions to it in popular culture. The book has been internationally popular for more than a half century, selling more 30 million copies in 40 languages. It currently (2013) sells 750,000 copies a year and is widely read in schools in America and abroad. Harper Lee and her publisher did not expect \"\"To Kill a Mockingbird\"\" to be such a huge success. Since it was first published in 1960, it has sold close to one million copies"} +{"qid": "test2744", "pid": "9473018", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird in popular culture\"\nwell as their impact on readers and viewers. To Kill a Mockingbird in popular culture Since the publication of\"\" To Kill a Mockingbird\"\" in 1960, there have been many references and allusions to it in popular culture. The book has been internationally popular for more than a half century, selling more 30 million copies in 40 languages. It currently (2013) sells 750,000 copies a year and is widely read in schools in America and abroad. Harper Lee and her publisher did not expect \"\"To Kill a Mockingbird\"\" to be such a huge success. Since it was first published in 1960,"} +{"qid": "test2744", "pid": "808887", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird\"\nbook, or Lee herself. Local residents call them \"\"Mockingbird groupies\"\", and although Lee was not reclusive, she refused publicity and interviews with an emphatic \"\"Hell, no!\"\" To Kill a Mockingbird To Kill a Mockingbird is a novel by Harper Lee published in 1960. It was immediately successful, winning the Pulitzer Prize, and has become a classic of modern American literature. The plot and characters are loosely based on Lee's observations of her family, her neighbors and an event that occurred near her hometown of Monroeville, Alabama, in 1936, when she was 10 years old. The story is told by the"} +{"qid": "test2744", "pid": "808796", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird\"\nTo Kill a Mockingbird To Kill a Mockingbird is a novel by Harper Lee published in 1960. It was immediately successful, winning the Pulitzer Prize, and has become a classic of modern American literature. The plot and characters are loosely based on Lee's observations of her family, her neighbors and an event that occurred near her hometown of Monroeville, Alabama, in 1936, when she was 10 years old. The story is told by the six-year-old Jean Louise Finch. The novel is renowned for its warmth and humor, despite dealing with the serious issues of rape and racial inequality. The narrator's"} +{"qid": "test2744", "pid": "808803", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird\"\nbut Lee renamed it \"\"To Kill a Mockingbird\"\" to reflect that the story went beyond a character portrait. The book was published on July 11, 1960. The editorial team at Lippincott warned Lee that she would probably sell only several thousand copies. In 1964, Lee recalled her hopes for the book when she said, I never expected any sort of success with 'Mockingbird.' ... I was hoping for a quick and merciful death at the hands of the reviewers but, at the same time, I sort of hoped someone would like it enough to give me encouragement. Public encouragement. I"} +{"qid": "test2744", "pid": "7501664", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird (film)\"\nTo Kill a Mockingbird (film) To Kill a Mockingbird is a 1962 American drama film directed by Robert Mulligan. The screenplay by Horton Foote is based on Harper Lee's 1960 Pulitzer Prize-winning novel of the same name. It stars Gregory Peck as Atticus Finch and Mary Badham as Scout. \"\"To Kill a Mockingbird\"\" marked the film debuts of Robert Duvall, William Windom, and Alice Ghostley. The film received overwhelmingly positive reviews from critics and was a box-office success, earning more than six times its budget. The film won three Academy Awards, including Best Actor for Peck, and was nominated for"} +{"qid": "test2744", "pid": "7501687", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird (film)\"\nSarabande Film Classics series. To Kill a Mockingbird (film) To Kill a Mockingbird is a 1962 American drama film directed by Robert Mulligan. The screenplay by Horton Foote is based on Harper Lee's 1960 Pulitzer Prize-winning novel of the same name. It stars Gregory Peck as Atticus Finch and Mary Badham as Scout. \"\"To Kill a Mockingbird\"\" marked the film debuts of Robert Duvall, William Windom, and Alice Ghostley. The film received overwhelmingly positive reviews from critics and was a box-office success, earning more than six times its budget. The film won three Academy Awards, including Best Actor for Peck,"} +{"qid": "test2744", "pid": "808826", "query": "when did to kill a mockingbird become popular", "answer": "1960", "passage": "\"To Kill a Mockingbird\"\nit can't be any good.\"\") and that general readers seem to feel they do not require analytical interpretation. Harper Lee has remained famously detached from interpreting the novel since the mid-1960s. However, she gave some insight into her themes when, in a rare letter to the editor, she wrote in response to the passionate reaction her book caused: \"\"Surely it is plain to the simplest intelligence that \"\"To Kill a Mockingbird\"\" spells out in words of seldom more than two syllables a code of honor and conduct, Christian in its ethic, that is the heritage of all Southerners.\"\" When the"} +{"qid": "test2745", "pid": "8101710", "query": "where does water come from in new york city", "answer": "The Catskill Aqueduct", "passage": "\"Catskill Aqueduct\"\nwell as the Schoharie Reservoir, which feeds into Ashokan. The aqueduct then enters Westchester County, New York, and flows to the Kensico Reservoir, which also receives water from the City's Delaware Aqueduct. It continues from the Kensico reservoir and terminates at the Hillview Reservoir in Yonkers. The Hillview Reservoir then feeds City Tunnels 1 and 2, which bring water to New York City. If necessary, water can be made to bypass both reservoirs. Catskill Aqueduct The Catskill Aqueduct, part of the New York City water supply system, brings water from the Catskill Mountains to Yonkers where it connects to other"} +{"qid": "test2747", "pid": "10208575", "query": "who wrote the theme song for the winter olympics", "answer": "Leo Arnaud", "passage": "\"Leo Arnaud\"\nthat is soon joined by a distinctive theme in brass. The musical theme of \"\"Bugler's Dream\"\" is based on Joseph-David Buhl's \"\"Salut aux étendards\"\", a typical cavalry trumpet's call, composed during Napoleon's Consulate. Arnaud was commissioned by conductor Felix Slatkin to create a piece for his album \"\"Charge!\"\" in 1958. For this, he wrote \"\"The Charge Suite\"\", published by Shawnee Press, which included \"\"Bugler's Dream\"\". ABC began using the composition as the theme to its coverage of the 1964 Winter Olympics in Innsbruck, Austria, and in future Olympics. It was also used as the title piece for the series \"\"ABC's"} +{"qid": "test2748", "pid": "13570316", "query": "how long were the pyramids the tallest structure", "answer": "over 3,800", "passage": "\"History of the world's tallest buildings\"\nto be tall, but its true height is not known. For thousands of years, the Great Pyramid in Egypt was the tallest \"\"structure\"\" in the world, but the Great Pyramid is not considered a building since it is not habitable. The earliest structures now known to be the tallest in the world were the Egyptian pyramids, with the Great Pyramid of Giza, at an original height of , being the tallest man-made structure in the world for over 3,800 years, until the construction of Lincoln Cathedral in 1300. From then until the completion of the Washington Monument (capped in 1884)"} +{"qid": "test2748", "pid": "13337765", "query": "how long were the pyramids the tallest structure", "answer": "over 3,800", "passage": "\"History of science and technology in Africa\"\nstep pyramid built at Saqqara is the oldest major stone building in the world. The Great Pyramid was the tallest man-made structure in the world for over 3,800 years. The earliest style of Nubian architecture included the speos, structures carved out of solid rock, an A-Group (3700–3250 BCE) achievement. Egyptians made extensive use of the process at Speos Artemidos and Abu Simbel. Sudan, site of ancient Nubia, has more pyramids than anywhere in the world, even more than Egypt, a total of 223 pyramids exist. Aksumites built in stone. Monolithic stelae on top of the graves of kings like King"} +{"qid": "test2748", "pid": "156432", "query": "how long were the pyramids the tallest structure", "answer": "over 3,800", "passage": "\"Great Pyramid of Giza\"\nchamber blocks of the Great Pyramid fit together with extremely high precision. Based on measurements taken on the north-eastern casing stones, the mean opening of the joints is only wide. The pyramid remained the tallest man-made structure in the world for over 3,800 years, unsurpassed until the spire of Lincoln Cathedral was completed c. 1300. The accuracy of the pyramid's workmanship is such that the four sides of the base have an average error of only 58 millimetres in length. The base is horizontal and flat to within ±. The sides of the square base are closely aligned to the"} +{"qid": "test2749", "pid": "8323252", "query": "what year did bennie and the jets come out", "answer": "1974", "passage": "\"Eddie \"\"Rochester\"\" Anderson\"\nme. Gregory Peck said that he would be on my show\"\" Rochester: \"\"Good, good. I'll bet you had to pay him a lot of money\"\" Benny: \"\"You're wrong. He's going to do the show for nothing\"\". Rochester: \"\"How did you do that?\"\" Benny: \"\"Because I'm a very good salesman. I didn't come right out and ask him. I was very subtle\"\" Rochester: \"\"What did you do? Did you cut your wrist?\"\" At the conclusion of the trip, Benny remarks \"\"Thanks for the ride, Rochester. And oh by the way, you have a beautiful car!\"\" Upon Benny's death in 1974, a"} +{"qid": "test2749", "pid": "8951833", "query": "what year did bennie and the jets come out", "answer": "in 1973", "passage": "\"Bennie and the Jets\"\nBennie and the Jets \"\"Bennie and the Jets\"\" (also titled as \"\"Benny & the Jets\"\") is a song composed by Elton John and Bernie Taupin. The song first appeared on the \"\"Goodbye Yellow Brick Road\"\" album in 1973. \"\"Bennie and the Jets\"\" has been one of John's most popular songs and was performed during John's appearance at Live Aid. The track is spelled \"\"Benny\"\" on the sleeve of the single and in the track listing of the album, but \"\"Bennie\"\" on the album vinyl disc label. \"\"Bennie and the Jets\"\" was featured on side one of the \"\"Goodbye Yellow Brick"} +{"qid": "test275", "pid": "10320710", "query": "what is the song in red dead redemption", "answer": "Far Away", "passage": "\"Red Dead Redemption\"\nof the Year awards from media outlets such as GameSpy, GameSpot, \"\"Good Game\"\", Computer and Video Games, and Machinima, among others. The game's music also received awards for its original score from GameSpot, Machinima.com, and Spike TV. José González also received an award from Spike for his original song \"\"Far Away\"\". The graphics received honors at the Korean Games Conference, and from the television program \"\"Good Game\"\". \"\"\"\" also received Best Downloadable content awards from Spike TV, G4 TV and Game Revolution. At the 2010 Spike Video Game Awards, \"\"Red Dead Redemption\"\" won the Game of the Year, Best Song"} +{"qid": "test2752", "pid": "80640", "query": "how many hoops are used in a game of croquet", "answer": "eight", "passage": "Croquet\non the northern terrace, between Eglinton Castle and the Lugton Water. The 13th Earl developed a variation on croquet named Captain Moreton's Eglinton Castle croquet, which had small bells on the eight hoops \"\"to ring the changes\"\", two pegs, a double hoop with a bell and two tunnels for the ball to pass through. In 1865 the 'Rules of the Eglinton Castle and Cassiobury Croquet' was published by Edmund Routledge. Several incomplete sets of this form of croquet are known to exist, and one complete set is still used for demonstration games in the West of Scotland. There are several"} +{"qid": "test2752", "pid": "80655", "query": "how many hoops are used in a game of croquet", "answer": "six", "passage": "Croquet\nsimilar to those described above for Association Croquet with three major differences: This version of the game is easy for beginners to learn. The main Garden Croquet Club in the UK is the Bygrave Croquet Club which is a private club with five lawns. Other clubs also use garden croquet as an introduction to the game, notably the Hampstead Heath Croquet Club and the Watford Croquet Club. The American rules version of croquet, another six-hoop game, is the dominant version of the game in the United States and is also widely played in Canada. It is governed by the United"} +{"qid": "test2752", "pid": "12207716", "query": "how many hoops are used in a game of croquet", "answer": "six", "passage": "\"Triple Peel\"\ncomplete the game with a sextuple peel (peeling the partner through its last six hoops). The sextuple peel is now considered one of the highest achievements in croquet, performed only by a handful of top international players. The triple peel, by contrast, is the highest aspiration of many good players at club level. Triple Peel A Triple Peel (TP) is a standard manoeuvre in top-level games of association croquet. To peel a ball in croquet is to send a ball, other than the striker's ball, through its next hoop, thereby scoring a point for that ball. The ball in question"} +{"qid": "test2752", "pid": "10883675", "query": "how many hoops are used in a game of croquet", "answer": "eight", "passage": "\"Eglinton Country Park\"\nThe 13th Earl developed a variation on croquet named 'Captain Moreton's Eglinton Castle Croquet', which had small bells on the eight hoops 'to ring the changes', two pegs, a double hoop with a bell and two tunnels for the ball to pass through. In 1865 the 'Rules of the Eglinton Castle and Cassiobury Croquet' was published by Edmund Routledge. Several incomplete sets of this form of croquet are known to exist and one complete set is still used for demonstration games in the West of Scotland. It is not known why the earl named it thus. A highly unusual landscape"} +{"qid": "test2752", "pid": "80644", "query": "how many hoops are used in a game of croquet", "answer": "six", "passage": "Croquet\non croquet, was an event at the 1904 Summer Olympics. As with similar words with a French derivation, the final 't' is silent. British pronunciation puts the accent on the first syllable, American on the second: versus . Association croquet is the name of an advanced game of croquet, played at international level. It involves four balls teamed in pairs, with both balls going through every hoop for one pair to win. The game's distinguishing feature is the \"\"croquet\"\" shot: when certain balls hit other balls, extra shots are allowed. The six hoops are arranged three at each end of"} +{"qid": "test2752", "pid": "80647", "query": "how many hoops are used in a game of croquet", "answer": "six", "passage": "Croquet\nother three balls may be roqueted once in a turn before a hoop is run, after which they become available to be roqueted again. The winner of the game is the team who completes the set circuit of six hoops (and then back again the other way), with both balls, and then strikes the centre peg (making a total of 13 points per ball = 26). Good players may make \"\"breaks\"\" of several hoops in a single turn. The best players may take a ball round a full circuit in one turn. \"\"Advanced play\"\" (a variant of association play for"} +{"qid": "test2752", "pid": "3036078", "query": "how many hoops are used in a game of croquet", "answer": "eight", "passage": "\"Billiard ball\"\n(down to half-size), and are sanctioned for use in some amateur leagues. Sets for American snooker are typically , with numbered colour balls. The set of eight colours used for snooker balls (including white) are thought to be derived from the game of croquet. Snooker was invented in 1884 by British Army officers stationed in India. Croquet reached its peak popularity at the same time, particularly amongst people in the same social context. The eight coloured balls of croquet use the same identical set of eight colours. There are many other similarities between croquet and snooker, which when taken together,"} +{"qid": "test2752", "pid": "80642", "query": "how many hoops are used in a game of croquet", "answer": "six", "passage": "Croquet\ngames, there are regular world championships and international matches between croquet-playing countries. The sport has particularly strong followings in the UK, US, New Zealand and Australia; every four years, these countries play the MacRobertson Shield tournament. Many other countries also play. The current world rankings show England in top place for association croquet, followed by Australia and New Zealand sharing second place, with the United States in fourth position; the same four countries appear in the top six of the golf croquet league table, below Egypt in top position, and with South Africa at number five. Croquet is popularly believed"} +{"qid": "test2753", "pid": "1687721", "query": "who starred in the movie romancing the stone", "answer": "Kathleen Turner", "passage": "\"Robert Zemeckis\"\nThe director was jobless until Michael Douglas hired him in 1984 to film \"\"Romancing the Stone\"\". A romantic adventure starring Douglas and Kathleen Turner, \"\"Romancing\"\" was expected to flop (to the point that, after viewing a rough cut of the film, the producers of the then-in-the-works \"\"Cocoon\"\" fired Zemeckis as director), but the film became a sleeper hit. While working on \"\"Romancing the Stone\"\", Zemeckis met composer Alan Silvestri, who has scored all of his subsequent pictures. After \"\"Romancing\"\", the director suddenly had the clout to direct his time-traveling screenplay, which was titled \"\"Back to the Future\"\". Starring Michael J."} +{"qid": "test2753", "pid": "1543054", "query": "who starred in the movie romancing the stone", "answer": "Kathleen Turner", "passage": "\"Kathleen Turner\"\nhow to use her dimples amusingly and how to dance like a woman who didn't know she could; her star performance is exhilarating.\"\" \"\"Romancing the Stone\"\" was a surprise hit: she won a Golden Globe for her role in the film, and it became one of the top-ten-grossing movies of 1984. Turner teamed with Douglas and DeVito again the following year for its sequel, \"\"The Jewel of the Nile\"\". Pre-production for the movie was fraught with conflict, because Turner refused to commit to the \"\"terrible\"\" script she had been delivered. When she said no, 20th Century Fox threatened her with"} +{"qid": "test2753", "pid": "2931088", "query": "who starred in the movie romancing the stone", "answer": "Kathleen Turner", "passage": "\"Romancing the Stone\"\nin recent years. Since 2007, 20th Century Fox considered a remake of \"\"Romancing the Stone\"\" with the possibility of a \"\"reboot\"\" of a series. The roles of Jack Colton and Joan Wilder would be filled by Taylor Kitsch (or Gerard Butler) and Katherine Heigl. By 2011, the remake was re-worked as a television series. Romancing the Stone Romancing the Stone is a 1984 American romantic comedy-adventure film directed by Robert Zemeckis and written by Diane Thomas. The film stars Michael Douglas, Kathleen Turner, and Danny DeVito, and was followed by a 1985 sequel titled \"\"The Jewel of the Nile\"\". \"\"Romancing"} +{"qid": "test2753", "pid": "16907856", "query": "who starred in the movie romancing the stone", "answer": "Alfonso Arau", "passage": "\"Alfonso Arau\"\n\"\"The Wild Bunch\"\", chief bandit \"\"El Guapo\"\" in \"\"Three Amigos\"\" (USA, 1986), a comedy with Martin Short, Steve Martin, and Chevy Chase, shady businessman Manuel in the comedy \"\"Used Cars\"\" (USA, 1980), and the smuggler \"\"Juan\"\" in \"\"Romancing the Stone\"\" (USA, 1984) starring Michael Douglas and Kathleen Turner. Arau appeared in the 1972 Mexican film \"\"El rincón de las vírgenes\"\" (\"\"The Virgins' Corner\"\"), where he played the assistant of a fake mystical doctor traveling from town to town, who reminisce about their travels, when a group of women decide to propose the doctor for sainthood. The movie was set in"} +{"qid": "test2753", "pid": "2931075", "query": "who starred in the movie romancing the stone", "answer": "Kathleen Turner", "passage": "\"Romancing the Stone\"\nRomancing the Stone Romancing the Stone is a 1984 American romantic comedy-adventure film directed by Robert Zemeckis and written by Diane Thomas. The film stars Michael Douglas, Kathleen Turner, and Danny DeVito, and was followed by a 1985 sequel titled \"\"The Jewel of the Nile\"\". \"\"Romancing the Stone\"\" earned over $86 million worldwide at the box office. It also helped launch Turner to stardom, reintroduced Douglas to the public as a capable leading man, and gave Zemeckis his first box-office success. Joan Wilder is a successful but lonely romance novelist in New York City whose editor believes she is waiting"} +{"qid": "test2753", "pid": "10452560", "query": "who starred in the movie romancing the stone", "answer": "Michael Douglas", "passage": "\"Diane Thomas\"\nscreenplay titled either \"\"Blonde Hurricane\"\" or \"\"Blond Hurricane\"\". Diane Thomas died in a car accident in October 1985, only six weeks before the sequel to \"\"Romancing the Stone,\"\" \"\"The Jewel of the Nile,\"\" was released. At the time, Thomas was busy writing for the movie \"\"Always\"\" for Steven Spielberg and was not available to write \"\"The Jewel of the Nile\"\". In an interview in the Special Edition DVD of \"\"Romancing the Stone\"\", Michael Douglas stated that he had purchased a Porsche for Thomas as a present for her work with him on \"\"Romancing\"\" and help with scenes on \"\"Jewel of"} +{"qid": "test2753", "pid": "846784", "query": "who starred in the movie romancing the stone", "answer": "Michael Douglas", "passage": "\"Michael Douglas\"\nof San Francisco\"\" in 1976, Douglas went on to produce films including \"\"The China Syndrome\"\" (1979) and \"\"Romancing the Stone\"\" (1984). He won the Golden Globe Award for Best Motion Picture - Musical or Comedy for \"\"Romancing the Stone\"\", in which he also starred, thus reintroducing himself to audiences as a capable leading man. After reprising his \"\"Romancing the Stone\"\" role as Jack Colton in the 1985 sequel \"\"The Jewel of the Nile\"\", which he also produced, and along with appearing in the musical \"\"A Chorus Line\"\" (1985) and the psychological thriller \"\"Fatal Attraction\"\" (1987), Douglas received widespread acclaim for"} +{"qid": "test2755", "pid": "909221", "query": "who founded amazon where is the headquarters of amazon", "answer": "Jeff Bezos", "passage": "\"Amazon (company)\"\nas a brick-and-mortar retailer. The acquisition was interpreted by some as a direct attempt to challenge Walmart's traditional retail stores. In 2018, for the first time, Jeff Bezos released in Amazon's shareholder letter the number of Amazon Prime subscribers, which is 100 million worldwide. In 2018, Amazon.com contributed to the Wikimedia Endowment. In November 2018, Amazon announced it would be splitting its second headquarters project between two cities. They are currently in the finalization stage of the process. The company was founded as a result of what Jeff Bezos called his \"\"regret minimization framework\"\", which described his efforts to fend"} +{"qid": "test2755", "pid": "20558263", "query": "who founded amazon where is the headquarters of amazon", "answer": "Seattle, Washington", "passage": "\"Amazon Spheres\"\nAmazon Spheres The Amazon Spheres are three spherical conservatories on the headquarters campus of Amazon in Seattle, Washington, United States. Designed by NBBJ and Landscape Architect Site Workshop, the three glass domes are covered in pentagonal hexecontahedron panels and serve as an employee lounge and workspace. The domes, which range from three to four stories tall, house 40,000 plants as well as meeting space and retail stores. They are located under the Day 1 building on Lenora Street. The complex opened to Amazon employees and limited public access on January 30, 2018. The spheres are reserved mainly for Amazon employees,"} +{"qid": "test2755", "pid": "18952063", "query": "who founded amazon where is the headquarters of amazon", "answer": "Seattle, Washington", "passage": "\"Doppler (building)\"\nDoppler (building) Doppler, also known as Amazon Tower I, and Rufus 2.0 Block 14, is a office building in Seattle, Washington that houses the corporate headquarters of Amazon. It is part of the three-tower campus that Amazon is developing in the Denny Triangle neighborhood, located at the intersection of Westlake Avenue and 7th Avenue near the Westlake Center and McGraw Square. The tower houses 3,800 employees. The tower's name, Doppler, refers to the internal codename of the Amazon Echo voice-controlled speaker that launched in 2014. The Amazon campus, designed by Seattle architecture firm NBBJ, was approved by the Seattle Department"} +{"qid": "test2755", "pid": "20558270", "query": "who founded amazon where is the headquarters of amazon", "answer": "Seattle, Washington", "passage": "\"Amazon Spheres\"\ncampus and a twice-monthly weekend reservation program. Amazon Spheres The Amazon Spheres are three spherical conservatories on the headquarters campus of Amazon in Seattle, Washington, United States. Designed by NBBJ and Landscape Architect Site Workshop, the three glass domes are covered in pentagonal hexecontahedron panels and serve as an employee lounge and workspace. The domes, which range from three to four stories tall, house 40,000 plants as well as meeting space and retail stores. They are located under the Day 1 building on Lenora Street. The complex opened to Amazon employees and limited public access on January 30, 2018. The"} +{"qid": "test2756", "pid": "1369755", "query": "who is the longest railway station in india", "answer": "Gorakhpur Junction", "passage": "\"Railway platform\"\nouter loop station on the IRT Broadway–Seventh Avenue Line. In the UK, recent rules require new platforms to be straight. The longest railway platforms are: Railway platform A railway platform is an area alongside a railway track providing convenient access to trains. Almost all stations have some form of platform, with larger stations having multiple platforms. The world's longest station platform is at Gorakhpur Junction in India at 1,355.40 metres. The Appalachian Trail station in the United States, at the other extreme, has a platform which is only long enough for a single bench. Among some United States train conductors"} +{"qid": "test2756", "pid": "1369740", "query": "who is the longest railway station in india", "answer": "Gorakhpur Junction", "passage": "\"Railway platform\"\nRailway platform A railway platform is an area alongside a railway track providing convenient access to trains. Almost all stations have some form of platform, with larger stations having multiple platforms. The world's longest station platform is at Gorakhpur Junction in India at 1,355.40 metres. The Appalachian Trail station in the United States, at the other extreme, has a platform which is only long enough for a single bench. Among some United States train conductors the word \"\"platform\"\" has entered usage as a verb meaning \"\"to berth at a station\"\", as in the announcement: \"\"The last two cars of this"} +{"qid": "test2757", "pid": "1457203", "query": "when was the last time mount etna exploded", "answer": "16 March 2017", "passage": "\"Mount Etna\"\na few hours. Volcanic gas emissions from this volcano are measured by a Multi-Component Gas Analyzer System, which detects pre-eruptive degassing of rising magmas, improving prediction of volcanic activity. An eruption on 16 March 2017 injured 10 people, including a BBC News television crew, after magma exploded upon contact with snow. The Global Volcanism Program has assigned a volcanic explosivity index (VEI) to all of Mount Etna's eruptions since January 1955: In the 1970s Etna erupted smoke rings, one of the first captured events of this type, which are extremely rare. This happened again in 2000. Video footage of 8"} +{"qid": "test2759", "pid": "251367", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "MINIX\nof MINIX as the basis for a freely distributed software system. When free and open-source Unix-like operating systems such as Linux and 386BSD became available in the early 1990s, many volunteer software developers abandoned MINIX in favor of these. In April 2000, MINIX became free and open-source software under a permissive free software license, but by this time other operating systems had surpassed its capabilities, and it remained primarily an operating system for students and hobbyists. MINIX MINIX (from \"\"mini-Unix\"\") is a POSIX-compliant (since version 2.0), Unix-like operating system based on a microkernel architecture. Early versions of MINIX were created"} +{"qid": "test2759", "pid": "8281063", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "\"Open-source video game\"\nWhile Linux operates on the open-source philosophy, this may not benefit game development. As of September 2015, the Steam gaming service has 1,500 games available on Linux, compared to 2,323 games for Mac and 6,500 Windows games. Just as in most other forms of software, free software was an unconscious occurrence during the creation of early computer games, particularly for earlier Unix games. These are mostly original or clone arcade games and text adventures. A notable example of this is BSD Games, a collection of interactive fiction titles. Game fan communities such as the modding community do include some aspects"} +{"qid": "test2759", "pid": "2981411", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "\"UNIX System V\"\nSCO to be released by the end of 2004, but was apparently cancelled. It was supposed to support 64-bit systems. The industry has coalesced around The Open Group's Single UNIX Specification version 3 (UNIX 03). See also: Smallfoot In the 1980s and 1990s, a variety of SVR4 versions of Unix were available commercially for the x86 PC platform. However, the market for commercial Unix on PCs declined after Linux and BSD became widely available. In late 1994, Eric S. Raymond discontinued his \"\"PC-clone UNIX Software Buyer's Guide\"\" on USENET, stating, \"\"The reason I am dropping this is that I run"} +{"qid": "test2759", "pid": "3953765", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "BSD/OS\nrenamed \"\"BSD/OS\"\". Later releases of BSD/OS also supported Sun SPARC-based systems. The marketing of BSD/OS became increasingly focused on Internet server applications. However, the increasingly tight market for Unix-compatible software in the late 1990s and early 2000s hurt sales of BSD/OS. On one end of the market, it lacked the certification of the Open Group to bear the UNIX trademark, and the sales force and hardware support of the larger Unix vendors. Simultaneously, it lacked the negligible acquisition cost of the open source BSDs and Linux. BSD/OS was acquired by Wind River Systems in April 2001. Wind River discontinued sales"} +{"qid": "test2759", "pid": "8281072", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "\"Open-source video game\"\nOpenAL libraries and Linux Game Publishing created and maintain the free network layer Grapple. LGP also avoids publishing games similar to popular free titles. Many libraries/infrastructures have been created without corporate assistance however, such as the online gaming system GGZ Gaming Zone. In addition, various are free software such as the ZZT remake \"\"MegaZeux\"\", versions of Game Editor, the inspired G-Creator, Godot, Construct, and ZGameEditor. Individuals and teams have continued creating many popular free software games, starting really in the late 1990s to the present day. Many of these are clones such as \"\"Pingus\"\" (\"\"Lemmings\"\" clone), \"\"SuperTux\"\" and \"\"Secret Maryo"} +{"qid": "test2759", "pid": "444916", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "Vi\ncodebase, they too switched over to Bostic's nvi, which they continue to use today. Despite the existence of vi clones with enhanced featuresets, sometime before June 2000, Gunnar Ritter ported Joy's vi codebase (taken from 2.11BSD, February 1992) to modern Unix-based operating systems, such as Linux and FreeBSD. Initially, his work was technically illegal to distribute without an AT&T source license, but, in January 2002, those licensing rules were relaxed, allowing legal distribution as an open-source project. Ritter continued to make small enhancements to the vi codebase similar to those done by commercial Unix vendors still using Joy's codebase, including"} +{"qid": "test2759", "pid": "10458299", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "\"Operating system Wi-Fi support\"\nsupport, although some third-party hardware manufacturers have made drivers and connection software that allows earlier OSes to use Wi-Fi. Linux, FreeBSD and similar Unix-like clones have much coarser support for Wi-Fi. Due to the open source nature of these operating systems, many different standards have been developed for configuring and managing Wi-Fi devices. The open source nature also fosters open source drivers which have enabled many third party and proprietary devices to work under these operating systems. See Comparison of Open Source Wireless Drivers for more information on those drivers. Operating system Wi-Fi support Operating system Wi-Fi support is the"} +{"qid": "test2759", "pid": "8281068", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "\"Open-source video game\"\nthe age of three-dimensional games in the early to mid 1990s, and free games started to make the switch themselves. \"\"Tuxedo T. Penguin: A Quest for Herring\"\" by Steve Baker, a game featuring the Linux mascot Tux, was an early example of a three-dimensional free software game. He and his son Oliver would later create other popular 3D free games and clones such as \"\"TuxKart\"\" and contribute to those by other developers such as \"\"Tux Racer\"\". The Genesis3D engine project, \"\"Crystal Space\"\" and \"\"Cube\"\" also spawned other 3D free software engines and games. \"\"FlightGear\"\" is another good example, especially noting"} +{"qid": "test2759", "pid": "444899", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "Vi\nand sometimes to rhyme with \"\"bye\"\". In addition to various non–free software variants of vi distributed with proprietary implementations of Unix, vi was opensourced with OpenSolaris, and several free and open source software vi clones exist. A 2009 survey of \"\"Linux Journal\"\" readers found that vi was the most widely used text editor among respondents, beating gedit, the second most widely used editor, by nearly a factor of two (36% to 19%). vi was derived from a sequence of UNIX command line editors, starting with ed, which was a line editor designed to work well on teleprinters, rather than display"} +{"qid": "test2759", "pid": "4164873", "query": "an open-source clone of unix created in the early 1990s", "answer": "Linux", "passage": "\"Tomboy (software)\"\nTomboy (software) Tomboy is a free and open-source desktop note-taking application written for Unix-like (including Mac OS X and Linux) and Microsoft Windows operating systems, written in C# using Gtk#. Tomboy is part of the GNOME desktop environment personal information management software and achieved widespread popularity as the default note taking application in early Ubuntu releases. As Ubuntu changed over time and its cloud synchronization software Ubuntu One came and went, Tomboy inspired various forks and clones. Its interface is a notepad with a wiki-like linking system to connect notes together. Words in the note body that match existing note"} +{"qid": "test276", "pid": "1793707", "query": "who played cosette in les miserables on broadway", "answer": "Ali Ewoldt", "passage": "\"Les Misérables (musical)\"\nabout 16 hours. This allowed it to reach many cities and venues in its acclaimed, original Broadway form. The final company of the Third National Tour included Randal Keith as Valjean (Keith also played Valjean in the final company of the original Broadway engagement), Robert Hunt as Javert, Joan Almedilla as Fantine, Daniel Bogart as Marius, Norman Large (from Original Broadway Cast) as Monsieur Thénardier, Jennifer Butt (from Original Broadway Cast) as Madame Thénardier, Melissa Lyons as Éponine, Ali Ewoldt as Cosette, Victor Wallace as Enjolras, Meg Guzulescu and Rachel Schier alternating as Young Cosette and Young Éponine, and Austyn"} +{"qid": "test276", "pid": "10698484", "query": "who played cosette in les miserables on broadway", "answer": "Ali Ewoldt", "passage": "\"Ali Ewoldt\"\nin musical theatre in high school, she went on to graduate \"\"cum laude\"\" from Yale University, also doing some performing during her college years. Ewoldt performed the role of Princess Jasmine in Disneyland, and she also worked at the Tokyo Disney theme park before appearing in a U.S. tour of \"\"Les Misérables\"\". She began the tour as a member of the ensemble, and later understudied the role of Cosette, before she finally received the role during the tour. She then played Cosette in the \"\"Les Mis\"\" Broadway revival of 2006. From 2009 to 2011, Ewoldt starred in North American tour"} +{"qid": "test276", "pid": "1793699", "query": "who played cosette in les miserables on broadway", "answer": "Judy Kuhn", "passage": "\"Les Misérables (musical)\"\njoined playing Javert, and Max von Essen playing Enjolras. Ben Crawford and Mandy Bruno joined the cast that day too, playing Brujon and Éponine respectively. On 23 July 2007, Sarich took over the role of Valjean, following Gemignani's departure. On 5 September 2007, it was announced that John Owen-Jones (who was playing Valjean in London) was to join the Broadway cast. In return, Sarich would join the London cast in Owen-Jones' place. Judy Kuhn, who originated the role of Cosette, returned to the show after twenty years as Fantine, succeeding Salonga. The revival closed on 6 January 2008. A sit"} +{"qid": "test276", "pid": "10523224", "query": "who played cosette in les miserables on broadway", "answer": "Judy Kuhn", "passage": "\"Les Misérables: The Dream Cast in Concert\"\nWilkinson as Jean Valjean, Philip Quast as Inspector Javert, Michael Ball as Marius Pontmercy, Lea Salonga as Éponine, Judy Kuhn as Cosette, Ruthie Henshall as Fantine, Michael Maguire as Enjolras, Alun Armstrong as Thénardier, Jenny Galloway as Madame Thénardier, Adam Searles as Gavroche, Hannah Chick as Young Cosette, and several others, and was directed by John Caird. The performers were chosen from the London, Broadway and Australian productions of the show and the Royal Philharmonic Orchestra was conducted by David Charles Abell. It also aired on PBS part of the Great Performances series. The 10th anniversary concert of \"\"Les Misérables\"\""} +{"qid": "test2760", "pid": "3893595", "query": "who played the little boy in polar express", "answer": "Daryl Sabara", "passage": "\"Daryl Sabara\"\nseries \"\"Weeds\"\", \"\"House\"\", \"\"Dr. Vegas\"\", and was one of the judges on \"\"America's Most Talented Kids\"\". Sabara also voiced the main character, Hero Boy, in the 2004 animated version of \"\"The Polar Express\"\". He then played a Jewish young boy trying to have a nice Bar Mitzvah in \"\"Keeping Up with the Steins\"\" (formerly known as \"\"Lucky 13\"\"), which received a limited release on May 12, 2006. He also guest starred in the Criminal Minds episode, \"\"P911\"\" where he played as a sexually molested child. He also provided the voice for Rex in \"\"Generator Rex\"\". He next appeared in the"} +{"qid": "test2760", "pid": "6896278", "query": "who played the little boy in polar express", "answer": "Daryl Sabara", "passage": "\"The Polar Express (film)\"\nThe Polar Express (film) The Polar Express is a 2004 American 3D computer-animated film based on the 1985 children's book of the same name by Chris Van Allsburg, who also served as one of the executive producers on the film. Directed, co-written and co-produced by Robert Zemeckis, the film features human characters animated using live action motion capture animation. The film stars Daryl Sabara, Nona Gaye, Jimmy Bennett, and Eddie Deezen, with Tom Hanks in six distinct roles. The film also included a performance by Tinashe at age 9, who later gained exposure as a pop singer in the 2010s,"} +{"qid": "test2761", "pid": "1000323", "query": "who played the elephant man in the film", "answer": "John Hurt", "passage": "\"The Elephant Man (film)\"\npodcasts and radio shows. The Elephant Man (film) The Elephant Man is a 1980 American historical drama film about Joseph Merrick (whom the script calls John Merrick), a severely deformed man in late 19th century London. The film was directed by David Lynch and stars John Hurt, Anthony Hopkins, Anne Bancroft, John Gielgud, Wendy Hiller, Michael Elphick, Hannah Gordon, and Freddie Jones. It was produced by Jonathan Sanger and Mel Brooks, the latter of whom was intentionally left uncredited to avoid confusion from audiences who possibly would have expected a comedy. The screenplay was adapted by Lynch, Christopher De Vore,"} +{"qid": "test2761", "pid": "1000302", "query": "who played the elephant man in the film", "answer": "John Hurt", "passage": "\"The Elephant Man (film)\"\nThe Elephant Man (film) The Elephant Man is a 1980 American historical drama film about Joseph Merrick (whom the script calls John Merrick), a severely deformed man in late 19th century London. The film was directed by David Lynch and stars John Hurt, Anthony Hopkins, Anne Bancroft, John Gielgud, Wendy Hiller, Michael Elphick, Hannah Gordon, and Freddie Jones. It was produced by Jonathan Sanger and Mel Brooks, the latter of whom was intentionally left uncredited to avoid confusion from audiences who possibly would have expected a comedy. The screenplay was adapted by Lynch, Christopher De Vore, and Eric Bergren from"} +{"qid": "test2761", "pid": "1382169", "query": "who played the elephant man in the film", "answer": "John Hurt", "passage": "\"Joseph Merrick\"\nMerrick's life story became the basis of several works of dramatic art; these were based on the accounts of Treves and Montagu. In 1979, a Tony Award–winning play, \"\"The Elephant Man\"\", by American playwright Bernard Pomerance was staged. The character based on Merrick was played by Philip Anglim, and later by David Bowie and Mark Hamill. In 1980, a film \"\"The Elephant Man\"\", directed by David Lynch, was released; it received eight Academy Award nominations. Merrick was played by John Hurt and Frederick Treves by Anthony Hopkins. In 1982, US television network ABC broadcast an adaptation of Pomerance's play, starring"} +{"qid": "test2761", "pid": "26426", "query": "who played the elephant man in the film", "answer": "John Hurt", "passage": "\"Anthony Hopkins\"\nfor himself as a screen actor, in 1972 he starred as British politician David Lloyd George in \"\"Young Winston\"\", and in 1977 he played British Army officer John Frost in the World War II-set film \"\"A Bridge Too Far\"\". Both of these films were directed by Richard Attenborough, who described Hopkins as “unquestionably the greatest actor of his generation”. In 1978 he starred in the psychological horror film \"\"Magic\"\" about a demonic ventriloquist's puppet. In 1980, he starred in \"\"The Elephant Man\"\" as the English doctor Sir Frederick Treves, who attends to Joseph Merrick (portrayed by John Hurt), a severely"} +{"qid": "test2764", "pid": "11283999", "query": "what is the origin of the name robinson", "answer": "English language patronymic surname", "passage": "\"Robinson (name)\"\nAnglicization of such Jewish surnames as Rabinowitz and Rubinstein. Robinson, the compound word, is a rare given name, while its derivative, Robin, has the distinction of being both a masculine and feminine given name. Robinson (name) Robinson is an English language patronymic surname, originating in England. It means \"\"son of Robin (a diminutive of Robert)\"\". There are similar surname spellings such as Robison and Robeson. Robinson is the 15th most common surname in the United Kingdom. According to the 1990 United States Census, Robinson was the twentieth most frequently encountered surname among those reported, accounting for 0.23% of the population."} +{"qid": "test2764", "pid": "11283998", "query": "what is the origin of the name robinson", "answer": "English language patronymic surname", "passage": "\"Robinson (name)\"\nRobinson (name) Robinson is an English language patronymic surname, originating in England. It means \"\"son of Robin (a diminutive of Robert)\"\". There are similar surname spellings such as Robison and Robeson. Robinson is the 15th most common surname in the United Kingdom. According to the 1990 United States Census, Robinson was the twentieth most frequently encountered surname among those reported, accounting for 0.23% of the population. In Ireland, Robinson is only really common in Ulster. The two names had been used interchangeably in some areas of the province around the beginning of the 20th century. It can also be an"} +{"qid": "test2765", "pid": "8333582", "query": "who was the guy who died in glee", "answer": "Cory Allan Michael Monteith", "passage": "\"Cory Monteith\"\nis done and we're never going to go back to it, so that resonates throughout the year.\"\" The 65th Primetime Emmy Awards, held on September 22, 2013, featured an extended tribute to Monteith by his \"\"Glee\"\" co-star Jane Lynch, along with four other actors who died in 2013. He was also featured in the \"\"In Memoriam\"\" segment of the 56th Grammy Awards. Shortly after his death, \"\"Glee\"\" fans raised money to \"\"name a star\"\" for Monteith, after being inspired by a scene featuring his character on \"\"Glee\"\". Cory Monteith Cory Allan Michael Monteith (; May 11, 1982 July 13, 2013)"} +{"qid": "test2766", "pid": "16027086", "query": "who played little ricky on i love lucy show", "answer": "Keith Thibodeaux", "passage": "\"Ricky Ricardo Jr.\"\nRicky Ricardo Jr. Enrique Alberto Ricardo IV, \"\"Little Ricky,\"\" is a fictional character from the American television series \"\"I Love Lucy\"\" (1951–57, with Ricky Jr. becoming a part of the show as of his birth in 1953) and \"\"The Lucy-Desi Comedy Hour\"\" (1957–60). Little Ricky was played by a number of actors, including James John Ganzer, twins Richard and Ronald Lee Simmons, twins Michael and Joseph Mayer and, most notably, Keith Thibodeaux, billed as Little Ricky. Although the \"\"I Love Lucy\"\" announcer and the opening credits of \"\"The Lucy-Desi Comedy Hour\"\" gave his stage name as \"\"Little Ricky\"\", in his"} +{"qid": "test2766", "pid": "1292349", "query": "who played little ricky on i love lucy show", "answer": "Keith Thibodeaux", "passage": "\"I Love Lucy\"\nmorning. Unlike some programs that advance the age of a newborn over a short period, \"\"I Love Lucy\"\" at first allowed the Little Ricky character to grow up in real time. America saw Little Ricky as an infant in the 1952–53 season and a toddler from 1953 to 1956. However, for the 1956-57 season, Little Ricky suddenly aged by two years, becoming a young school-age boy from 1956 to 1960. Five actors played the role, two sets of twins and later Keith Thibodeaux, whose stage name when playing Ricky Ricardo Jr. was Richard Keith. (In the Superman episode, Little Ricky"} +{"qid": "test2766", "pid": "1292362", "query": "who played little ricky on i love lucy show", "answer": "Keith Thibodeaux", "passage": "\"I Love Lucy\"\nAfter the conclusion of the sixth season of \"\"I Love Lucy\"\", the Arnazes decided to cut down on the number of episodes that were filmed. Instead, they extended \"\"I Love Lucy\"\" to 60 minutes, with a guest star each episode. They renamed the show \"\"The Lucille Ball-Desi Arnaz Show\"\", also known as \"\"The Lucy-Desi Comedy Hour\"\". Thirteen hour-long episodes aired from 1957 to 1960. The main cast, Lucille Ball, Desi Arnaz, Vivian Vance, William Frawley and Little Ricky/Richard Keith (birth name Keith Thibodeaux) were all in the show. \"\"The Lucy-Desi Comedy Hour\"\" is available on DVD, released as \"\"I Love"} +{"qid": "test2766", "pid": "8631566", "query": "who played little ricky on i love lucy show", "answer": "Keith Thibodeaux", "passage": "\"Kathy Thibodeaux\"\nKathy Thibodeaux Kathy Thibodeaux is an American ballet dancer who, in 1986, became co-founder and Artistic Director of Ballet Magnificat!. Born Kathy Denton, she studied under American Ballet Theatre’s Albia Kavan and Rex Cooper at the Jackson Ballet School (later Ballet Mississippi). In 1976, she married Keith Thibodeaux, a former child actor and musician, best known for playing Ricky Ricardo, Jr. (\"\"Little Ricky\"\") in \"\"I Love Lucy\"\" and \"\"The Lucy-Desi Comedy Hour\"\" television shows. (He was credited for those series as Richard Keith.) In 1978, Kathy became one of Jackson Ballet Company’s first contracted dancers, dancing as a principal until"} +{"qid": "test2766", "pid": "1480365", "query": "who played little ricky on i love lucy show", "answer": "Keith Thibodeaux", "passage": "\"Richard Keith (actor)\"\nRichard Keith (actor) Keith Thibodeaux (born December 1, 1950) is a former American child actor and musician, best known for playing Little Ricky on the television sitcoms \"\"I Love Lucy\"\" and \"\"The Lucy-Desi Comedy Hour\"\". His last name, which was Cajun French, was changed by producer Desi Arnaz to \"\"Keith\"\" because \"\"Thibodeaux\"\" was too difficult to pronounce. He is the last living regular appearing cast member from \"\"I Love Lucy\"\". Thibodeaux showed skill on the drums at a young age, and was making $500 a week at the age of 3 while touring with the Horace Heidt Orchestra. His father"} +{"qid": "test2768", "pid": "19276276", "query": "when was clash royale released in the us", "answer": "March 2, 2016", "passage": "\"Clash Royale\"\ngames to 1 on the \"\"Crown Championship World Finals\"\". The 2018 \"\"Clash Royale Crown Championship\"\" is scheduled to be held in Asia. \"\"Clash Royale\"\" are part of an e-sport demonstration event during Asian Games 2018 held in Indonesia. Eight countries are able to participate after having qualified from their respective regional qualification with Indonesia automatically qualified as host. Clash Royale Clash Royale is a video game developed and published by Supercell. The game combines elements from collectible card games, tower defense, and multiplayer online battle arena. The game was released globally on March 2, 2016. \"\"Clash Royale\"\" reached $1 billion"} +{"qid": "test2768", "pid": "19276258", "query": "when was clash royale released in the us", "answer": "March 2, 2016", "passage": "\"Clash Royale\"\nClash Royale Clash Royale is a video game developed and published by Supercell. The game combines elements from collectible card games, tower defense, and multiplayer online battle arena. The game was released globally on March 2, 2016. \"\"Clash Royale\"\" reached $1 billion in revenue in less than a year on the market. \"\"Clash Royale\"\" is a tower rush video game which pits players in games featuring two or four players (1v1 or 2v2) in which the objective is to destroy the most amount of opposing towers, with the destruction of the \"\"King's Tower\"\" being an instantaneous win. After three minutes,"} +{"qid": "test2768", "pid": "19276272", "query": "when was clash royale released in the us", "answer": "March 2, 2016", "passage": "\"Clash Royale\"\n4, 2016. The game was soft-launched on Android for those same countries on February 16, 2016 in the form of an Android application package. Both platforms received a global release on March 2, 2016. Upon its release, \"\"Clash Royale\"\" became the most downloaded and top-grossing app on the U.S. iOS App Store. \"\"Clash Royale\"\" mainly received positive reviews, with \"\"TouchArcade\"\" Eli Hodapp calling it \"\"absolutely phenomenal\"\" in his five-star review. \"\"Pocket Gamer\"\" Harry Slater gave the game a score of 9/10, summing up \"\"It's an incredible amount of rewarding fun, it's nail-biting at times, and there's content here that will"} +{"qid": "test2769", "pid": "12860879", "query": "german word for pleasure from someone else's pain", "answer": "Schadenfreude", "passage": "Cupid\nbrought the \"\"Amoretti\"\" poetry cycle (1595) of Edmund Spenser to a conclusion, and furnished subject matter for at least twenty works by Lucas Cranach the Elder and his workshop. The German poet and classicist Karl Philipp Conz (1762–1827) framed the tale as \"\"Schadenfreude\"\" (\"\"taking pleasure in someone else's pain\"\") in a poem by the same title. In a version by Gotthold Ephraim Lessing, a writer of the German Enlightenment, the incident prompts Cupid to turn himself into a bee: Through this sting was Amor made wiser.
The untiring deceiver
concocted another battle-plan:
he lurked beneath the carnations and roses
and when a maiden came"} +{"qid": "test2769", "pid": "1507423", "query": "german word for pleasure from someone else's pain", "answer": "Schadenfreude", "passage": "Schadenfreude\nof terms, in which \"\"epikhairekakia\"\" stands as the opposite of \"\"phthonos\"\" (φθόνος), and \"\"nemesis\"\" (νέμεσις) occupies the mean. \"\"Nemesis\"\" is \"\"a painful response to another's undeserved good fortune\"\", while \"\"phthonos\"\" is a painful response to any good fortune, deserved or not. The \"\"epikhairekakos\"\" (ἐπιχαιρέκακος) person takes pleasure in another's ill fortune. Lucretius characterises the emotion in an extended simile in \"\"De rerum natura\"\": \"\"Suave, mari magno turbantibus aequora ventis, e terra magnum alterius spectare laborem\"\", \"\"It is pleasant to watch from the land the great struggle of someone else in a sea rendered great by turbulent winds.\"\" The abbreviated Latin"} +{"qid": "test2769", "pid": "1507421", "query": "german word for pleasure from someone else's pain", "answer": "Schadenfreude", "passage": "Schadenfreude\nDispleasure at another's happiness is involved in envy, and perhaps in jealousy. The recent coinage \"\"freudenschade\"\" similarly means sorrow at another's success. Displeasure at another's unhappiness is sympathy, pity, or compassion. \"\"Sadism\"\" is pleasure derived from the \"\"infliction\"\" of pain, whereas schadenfreude is pleasure on \"\"observing\"\" misfortune and in particular the fact that the other somehow deserved the misfortune. Neologisms and portmanteau words were coined from the word as early as 1993, when Lincoln Caplan, in his book \"\"Skadden: Power, Money, and the Rise of a Legal Empire\"\", used the word \"\"Skaddenfreude\"\" to describe the delight that competitors of Skadden"} +{"qid": "test2769", "pid": "1507415", "query": "german word for pleasure from someone else's pain", "answer": "Schadenfreude", "passage": "Schadenfreude\nSchadenfreude Schadenfreude (; ; 'harm-joy') is the experience of pleasure, joy, or self-satisfaction that comes from learning of or witnessing the troubles, failures, or humiliation of another. It is one of four related emotions or concepts. Schadenfreude is a complex negative emotion. Rather than feeling sympathy towards someone's misfortune, schadenfreude evokes joyful feelings that take pleasure from watching someone fail. This emotion is displayed more in children than adults, however adults also experience schadenfreude, they are just better at concealing their expressions. \"\"Schadenfreude\"\" is borrowed from German; it is a compound of \"\"Schaden\"\", \"\"damage, harm\"\", and \"\"Freude\"\", \"\"joy\"\". The German"} +{"qid": "test277", "pid": "6009021", "query": "when did stephen curry won the mvp award", "answer": "2015", "passage": "\"Dell Curry\"\nthe Charlotte Bobcats (now Charlotte Hornets). In 2016 Curry was the recipient of the Bobby Jones Award at the Athletes in Action All Star Breakfast, which is held each year at the NBA All Star Weekend. Curry lives in Charlotte, North Carolina, with his wife Sonya Adams, who played volleyball at Virginia Tech, where they met; the couple have three children. His older son, Stephen, plays in the NBA for the Golden State Warriors. In 2014–15, Stephen won the NBA MVP award and led the Warriors to the NBA championship, and in 2015–16, he led his team to the highest"} +{"qid": "test277", "pid": "803907", "query": "when did stephen curry won the mvp award", "answer": "2016", "passage": "\"Golden State Warriors\"\n29, 2016; the previous record of 44 was held by the 1995–96 Chicago Bulls team led by Michael Jordan. On April 13, 2016, Golden State set the NBA record for most wins in a single season. The team finished the season with a record of 73–9. On May 10, 2016, Stephen Curry was named the NBA's Most Valuable Player (MVP) for the second straight season. Curry is the 11th player to win back-to-back MVP honors and became the first player in NBA history to win the MVP award by unanimous vote, winning all 131 first-place votes. Stephen Curry, Draymond Green"} +{"qid": "test277", "pid": "19517180", "query": "when did stephen curry won the mvp award", "answer": "2016", "passage": "\"2016–17 Golden State Warriors season\"\nwin 30 road games in back-to-back seasons, joining the 1995–96 and 1996–97 Chicago Bulls. Stephen Curry set numerous three-point NBA records this season; including most three-pointers made in a single game with 13 and most consecutive games (regular-season and postseason combined) with a made three-pointer with 196. Curry also surpassed 300 three-pointers in the regular-season for the second time in NBA history; he finished with 324. Draymond Green won the Defensive Player of the Year Award at the NBA Awards, the first time a Warrior has won it. Kevin Durant won the NBA Finals MVP award, the third time a"} +{"qid": "test277", "pid": "18864057", "query": "when did stephen curry won the mvp award", "answer": "2015", "passage": "\"2015–16 Golden State Warriors season\"\npoints scored in an overtime period (regular-season or postseason). Stephen Curry was named Most Valuable Player on May 10, making it the third time a Warrior had won the award after Wilt Chamberlain won in the 1959–60 NBA season and Curry in 2014–15. Curry is the 11th player to win back-to-back MVP honors and is the first unanimous winner in NBA history with all 131 first-place votes. On May 11, the Warriors beat the Trail Blazers 125–121 in Game 5 to clinch the series and advance to the Western Conference Finals for the second consecutive year, where they faced the"} +{"qid": "test277", "pid": "3065996", "query": "when did stephen curry won the mvp award", "answer": "2015", "passage": "\"NBA Most Valuable Player Award\"\nwon the award: Wilt Chamberlain in the and Wes Unseld in the 1968–69 season. Hakeem Olajuwon of Nigeria, Tim Duncan of the U.S. Virgin Islands, Steve Nash of Canada and Dirk Nowitzki of Germany are the only MVP winners considered \"\"international players\"\" by the NBA. Stephen Curry in 2015–16 is the only player to have won the award unanimously. Shaquille O'Neal in 1999–2000 and LeBron James in 2012–13 are the only two players to have fallen one vote shy of a unanimous selection, both receiving 120 of 121 votes. Russell Westbrook, is the first to have played for a team"} +{"qid": "test277", "pid": "8064597", "query": "when did stephen curry won the mvp award", "answer": "2015,", "passage": "\"Stephen Curry\"\nknow that I've been thinking about them.\"\" Also in 2015, after winning the MVP award following his impressive season, Curry donated his prize vehicle—a 2016 Kia Sorento—to the East Oakland Youth Development Center, a local non-profit organization located in the backyard of Oracle Arena. Curry is currently one of the most successful players in the NBA, and he has also become an international celebrity, on par with four-time MVP LeBron James. His flashy play and penchant for coming up big in the clutch have made him a fan favorite, and his smaller physique is said to have made his success"} +{"qid": "test277", "pid": "8064528", "query": "when did stephen curry won the mvp award", "answer": "2016", "passage": "\"Stephen Curry\"\nMVP by a unanimous vote and to lead the league in scoring while shooting above 50–40–90. That same year, the Warriors broke the record for the most wins in an NBA season en route to reaching the 2016 NBA Finals, which they lost to the Cleveland Cavaliers. Curry helped the Warriors return to the NBA Finals in 2017 and 2018, where they won back-to-back titles. Curry is the son of former NBA player Dell Curry and older brother of current NBA player Seth Curry. He played college basketball for Davidson. There, he was twice named Southern Conference Player of the"} +{"qid": "test277", "pid": "17996872", "query": "when did stephen curry won the mvp award", "answer": "2015", "passage": "\"2015 NBA Finals\"\nby 2014–15 NBA Most Valuable Player (MVP) Stephen Curry, while the Cavaliers featured four-time league MVP LeBron James. Both teams entered the series with title droughts of four decades, with the Cavaliers having never won a title since their inception and the Warriors' last title having been in 1975. This was also the first time that both participating teams had first-year head coaches since the inaugural league finals in 1947, when the NBA was known as the Basketball Association of America (BAA). It was the fifth consecutive finals appearance for James who played for the Miami Heat the previous four"} +{"qid": "test277", "pid": "4501362", "query": "when did stephen curry won the mvp award", "answer": "2015,", "passage": "\"Don Nelson\"\n2007 playoff run to either trades or free agency. One bright spot was created in the 2009 NBA draft, when Nelson agreed with Larry Riley to draft Stephen Curry with their seventh overall pick, despite skepticism from critics. Curry went on to win back-to-back MVP awards and helped lead Golden State to championships in 2015, 2017, and 2018, along with Kevin Durant. On September 23, Comcast SportsNet Bay Area, Nelson announced he would resign as head coach. The \"\"San Francisco Chronicle\"\" reported that new owners Joe Lacob and Peter Guber wanted \"\"a young, up-and-coming coach\"\" to help revive the Warriors'"} +{"qid": "test277", "pid": "17103967", "query": "when did stephen curry won the mvp award", "answer": "2015", "passage": "\"2016 NBA All-Star Game\"\nprior team record of 163. Stephen Curry added 26 points for the West, and teammates Anthony Davis scored 24 on 12-of-13 shooting and Kevin Durant tallied 23. The East's Paul George scored 41, which tied Westbrook's total from 2015 and was one short of Wilt Chamberlain's record. LeBron James totaled 13 points for a career record of 291 to pass Bryant, who retired with 290. Westbrook became the first player in All-Star history to win consecutive MVPs outright. Bob Pettit is the other player to have won back-to-back awards, winning in 1958 and sharing it with Elgin Baylor in 1959."} +{"qid": "test277", "pid": "8064527", "query": "when did stephen curry won the mvp award", "answer": "2014–15", "passage": "\"Stephen Curry\"\nStephen Curry Wardell Stephen Curry II ( ; born March 14, 1988) is an American professional basketball player for the Golden State Warriors of the National Basketball Association (NBA). Many players and analysts have called him the greatest shooter in NBA history. He is credited with revolutionizing the game of basketball by inspiring teams to regularly employ the three-point shot as part of their winning strategy. In 2014–15, Curry won the NBA Most Valuable Player Award and led the Warriors to their first championship since 1975. The following season, he became the first player in NBA history to be elected"} +{"qid": "test277", "pid": "19517181", "query": "when did stephen curry won the mvp award", "answer": "2016", "passage": "\"2016–17 Golden State Warriors season\"\nWarrior has won it. The Warriors won the Team of the Year Award at the Espy Awards. Durant, Stephen Curry, Klay Thompson and Draymond Green were all named to the All-Star Game, the first time Golden State have had four All-Stars and just the eighth time in NBA history a single team has had four players in the game. The Warriors were the only team with multiple players named to the All-NBA Team this season, with Curry, Durant and Green all selected. Bob Myers won the Executive of the Year Award, his second win in three years. The Warriors were"} +{"qid": "test277", "pid": "3569472", "query": "when did stephen curry won the mvp award", "answer": "2015", "passage": "\"NBA Finals\"\nstarting a regular season game that season. During the 2015–16 season, the Warriors broke the record for most wins in a season with a record of 73–9 and Curry won his second straight MVP award, as well as becoming the first unanimous MVP in history and shattering his own record for three-pointers made in a single season by over one hundred in the process. The Warriors fell to a 3-1 deficit in the Western Conference Finals against a Kevin Durant-led Oklahoma City Thunder team, but won three straight elimination games to take the series and advance to a second straight"} +{"qid": "test2770", "pid": "11667075", "query": "who scored the most points in a game nba history", "answer": "Wilt Chamberlain", "passage": "\"James Harden\"\nblock in a 105–96 win over the Detroit Pistons. He became just the fourth NBA player in the last 25 years to post those totals in a single game and matched the third-highest point total for any NBA player in his team debut (most for Rockets debut). Two days later, he scored 45 points against the Atlanta Hawks. His 82 total points were the most scored by a player in his first two games with a team in NBA history, surpassing the previous mark held by Wilt Chamberlain, who scored 79 points in his first two career games with the"} +{"qid": "test2770", "pid": "1833137", "query": "who scored the most points in a game nba history", "answer": "Wilt Chamberlain", "passage": "\"Kobe Bryant\"\nHeat. Bryant became the cornerstone of the Lakers, and he led the NBA in scoring during the 2005–06 and 2006–07 seasons. In 2006, he scored a career-high 81 points against the Toronto Raptors, the second most points scored in a single game in league history behind Wilt Chamberlain's 100-point game in 1962. Bryant was awarded the regular season's Most Valuable Player Award (MVP) in 2008. After losing in the 2008 NBA Finals, he led the Lakers to two consecutive championships in 2009 and 2010, earning the Finals MVP Award on both occasions. He continued to be among the top players"} +{"qid": "test2770", "pid": "274490", "query": "who scored the most points in a game nba history", "answer": "Wilt Chamberlain", "passage": "\"Michael Jordan\"\nfor points in a playoff game with 63 in Game 2. The Celtics, however, managed to sweep the series. Jordan had completely recovered in time for the 1986–87 season, and he had one of the most prolific scoring seasons in NBA history. He became the only player other than Wilt Chamberlain to score 3,000 points in a season, averaging a league high 37.1 points on 48.2% shooting. In addition, Jordan demonstrated his defensive prowess, as he became the first player in NBA history to record 200 steals and 100 blocked shots in a season. Despite Jordan's success, Magic Johnson won"} +{"qid": "test2770", "pid": "804076", "query": "who scored the most points in a game nba history", "answer": "Wilt Chamberlain", "passage": "\"Los Angeles Lakers\"\nKobe Bryant that ended his season after 78 games. The absence of Bryant was sorely felt as the Lakers were swept by the San Antonio Spurs in the first round of the 2013 NBA Playoffs. Nevertheless, Bryant passed Lakers legend Wilt Chamberlain to become the fourth all-time leading scorer in NBA history on March 30, 2013, against the Sacramento Kings. On March 25, 2014, the Lakers scored 51 points in the third quarter against the New York Knicks, the most points scored in a quarter in the history of the franchise. The Lakers went on to miss the NBA playoffs"} +{"qid": "test2770", "pid": "3130574", "query": "who scored the most points in a game nba history", "answer": "Wilt Chamberlain", "passage": "\"Center (basketball)\"\nMost notably, Chamberlain is the only player in NBA history to average more than 50 points in a season and score 100 points in a single game (both in 1961–62 as a member of the Philadelphia Warriors). He also holds the NBA's all-time records for rebounding average (27.2), rebounds in a single game (55), and career rebounds (23,924). A lesser-known center of the era was Nate Thurmond, who initially played the forward position opposite Wilt Chamberlain for the San Francisco Warriors but moved to center after Chamberlain was traded to the new Philadelphia franchise. Although he never won a Championship,"} +{"qid": "test2771", "pid": "9210625", "query": "when did taylor swift's first album release", "answer": "October 24, 2006", "passage": "\"Taylor Swift (album)\"\n2008 with the original album artwork, including the three new songs from the \"\"Taylor Swift Deluxe Edition\"\", as well as the radio edit of \"\"Picture to Burn,\"\" and an additional pop remix of \"\"Teardrops on My Guitar\"\". This version of the album was also released on vinyl in 2016. A karaoke version of \"\"Taylor Swift\"\" was released on January 27, 2009, containing the first fourteen tracks from the album on both CD+G and DVD. Swift's first broadcast performance of \"\"Tim McGraw\"\" was on October 24, 2006 on \"\"Good Morning America\"\". Other songs from \"\"Taylor Swift\"\" have been performed on television"} +{"qid": "test2771", "pid": "9210611", "query": "when did taylor swift's first album release", "answer": "October 24, 2006", "passage": "\"Taylor Swift (album)\"\nTaylor Swift (album) Taylor Swift is the debut studio album by American singer-songwriter Taylor Swift, released on October 24, 2006, by Big Machine Records. Swift was 16 years old at the time of the album's release and wrote its songs during her freshman year of high school. Swift has writing credits on all of the album's songs, including those co-written with Liz Rose. Swift experimented with several producers, ultimately choosing Nathan Chapman, who had produced her demo album. Musically, the album is country music styled, and lyrically it speaks of romantic relationships, a couple of which Swift wrote from observing"} +{"qid": "test2771", "pid": "9210623", "query": "when did taylor swift's first album release", "answer": "October 24, 2006", "passage": "\"Taylor Swift (album)\"\nduring a four-month period before 2005 was over. \"\"Taylor Swift\"\" was released on October 24, 2006 with eleven tracks. Swift was highly involved in the album packaging, designing doodle graphics herself. She also personally capitalized specific letters in the lyrics from each song to spell out hidden messages, a feat she would also execute for her succeeding albums. On November 6, 2007, the album was released under the title \"\"Taylor Swift Deluxe Edition\"\" for a limited time. The deluxe edition contained three new songs: \"\"I'm Only Me When I'm with You\"\", \"\"Invisible\"\" and \"\"A Perfectly Good Heart\"\", the radio edits"} +{"qid": "test2771", "pid": "9203187", "query": "when did taylor swift's first album release", "answer": "2005", "passage": "\"Taylor Swift discography\"\nto the RIAA, Swift is the third-best-selling digital singles artist in the United States, with cumulative single certifications of 120 million digital downloads and on-demand streaming. Meanwhile, US total album sales stand at 46.5 million copies. With estimated sales of over 87 million albums and 153 million singles worldwide, Swift is one of the best-selling music artists. Taylor Swift discography American singer-songwriter Taylor Swift's career began with a record deal with Big Machine Records in 2005 and the release of her eponymous debut album the following year. In the United States, \"\"Taylor Swift\"\" peaked at number five on the \"\"Billboard\"\""} +{"qid": "test2776", "pid": "20110827", "query": "when's the last time michigan won a national championship in basketball", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship in 2016. Villanova defeated Michigan, 79–62. Donte DiVincenzo, a reserve player, scored 31 points for Villanova, and was named the"} +{"qid": "test2776", "pid": "20110834", "query": "when's the last time michigan won a national championship in basketball", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\n180 countries. In Canada, the game aired on TSN. Radio coverage in the United States was provided by Westwood One. 2018 NCAA Division I Men's Basketball Championship Game The 2018 NCAA Division I Men's Basketball Championship Game was the final game of the single-elimination tournament to determine the men's National Collegiate Athletic Association (NCAA) Division I college basketball national champion for the 2017–18 season. The game was played on April 2, 2018, at the Alamodome in San Antonio, Texas, between the Michigan Wolverines and the Villanova Wildcats. Michigan last won the NCAA championship in 1989, while Villanova won the championship"} +{"qid": "test2776", "pid": "19428581", "query": "when's the last time michigan won a national championship in basketball", "answer": "1989", "passage": "\"1989 NCAA Division I Men's Basketball Championship Game\"\nto cut the Seton Hall lead to 79-78. After a defensive stop, Gerald Greene fouled Rumeal Robinson with three seconds left in overtime. Robinson made both free throws and after Seton Hall's last-second shot came up short, Michigan won its first national championship. 1989 NCAA Division I Men's Basketball Championship Game The 1989 NCAA Division I Men's Basketball Championship Game was the final round of the 1989 NCAA Division I Men's Basketball Tournament and determined the national champion for the 1988–89 NCAA Division I men's basketball season The 1989 National Title Game was played on April 3, 1989 at the"} +{"qid": "test2776", "pid": "20110828", "query": "when's the last time michigan won a national championship in basketball", "answer": "1989", "passage": "\"2018 NCAA Division I Men's Basketball Championship Game\"\nNCAA Basketball Tournament Most Outstanding Player. The Michigan Wolverines last won the NCAA Tournament in 1989. Their most recent appearance in the championship game was in 2013. At one point unranked in the AP Poll, Michigan won their final 14 games before the title game to end the 2017–18 regular season with a 28–7 win-loss record after winning the 2018 Big Ten Conference Men's Basketball Tournament. They earned the No. 3 seed in the West Regional. Michigan defeated the No. 14 Montana Grizzlies in the first round by a score of 61–47. They then reached the Sweet 16 by defeating"} +{"qid": "test2776", "pid": "7083307", "query": "when's the last time michigan won a national championship in basketball", "answer": "1989", "passage": "\"Dena Head\"\nDena Head Dena Head (born August 16, 1970) is an American retired women's basketball player. She is best remembered as the first player ever drafted in the Women's National Basketball Association (WNBA). At Salem high school in Canton, Michigan, Head was named Miss Basketball of Michigan. She won two National Championships and was an All-American. Dena played for Coach Fred Thomann, a former Michigan State University standout. Head attended the University of Tennessee and earned a degree in sports management. She played four years of basketball, winning the NCAA women's college basketball championship in 1989 and 1991. Head was named"} +{"qid": "test2777", "pid": "1634747", "query": "when did ireland gain its independence from england", "answer": "1922", "passage": "\"Governance of England\"\nGovernance of England There has not been a government of England since 1707 when the Kingdom of England ceased to exist as a sovereign state, as it merged with the Kingdom of Scotland to form the Kingdom of Great Britain. The Kingdom of Great Britain continued from 1707 until 1801 when it merged with the Kingdom of Ireland to form the United Kingdom of Great Britain and Ireland, which itself became the United Kingdom of Great Britain and Northern Ireland (UK) in 1922 (in reality; in name in 1927) upon independence for most of the island of Ireland. The UK"} +{"qid": "test2777", "pid": "2508883", "query": "when did ireland gain its independence from england", "answer": "In 1922", "passage": "\"Northern Ireland national football team\"\nIreland and Southern Ireland. In 1922, Southern Ireland gained independence as the Irish Free State, later to become a republic under the name of Ireland. Amid these political upheavals, a rival football association, the Football Association of Ireland, emerged in Dublin in 1921 and organised a separate league and international team. In 1923, at a time when the home nations had withdrawn from FIFA, the FAI was recognised by FIFA as the governing body of the Irish Free State on the condition that it changed its name to the Football Association of the Irish Free State. The Irish FA continued"} +{"qid": "test2777", "pid": "1634751", "query": "when did ireland gain its independence from england", "answer": "1922", "passage": "\"Governance of England\"\nin certain areas; Governance of England There has not been a government of England since 1707 when the Kingdom of England ceased to exist as a sovereign state, as it merged with the Kingdom of Scotland to form the Kingdom of Great Britain. The Kingdom of Great Britain continued from 1707 until 1801 when it merged with the Kingdom of Ireland to form the United Kingdom of Great Britain and Ireland, which itself became the United Kingdom of Great Britain and Northern Ireland (UK) in 1922 (in reality; in name in 1927) upon independence for most of the island of"} +{"qid": "test2777", "pid": "10697692", "query": "when did ireland gain its independence from england", "answer": "1922", "passage": "\"Northern Ireland Conservatives\"\na level of independence. Following the establishment of the Irish Free State in 1922, the IUA dissolved. Its successor in Northern Ireland was the Ulster Unionist Party (UUP). From 1922, the Conservative Party maintained formal links with the UUP, its members taking the Conservative whip in the Parliament of the United Kingdom, much like the then-independent Unionist Party of Scotland, which integrated into the party in England and Wales in the 1960s. This relationship broke down in 1972, following Unionist opposition to the proposed Sunningdale Agreement, when all but one of the UUP MPs resigned the Conservative whip. The sole"} +{"qid": "test2778", "pid": "16707835", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Great Northern War plague outbreak\"\nDeath is sometimes seen not as the start of the second, but as the end of the first pandemic – in that case, the second pandemic's start would be 1361; the end dates of the second pandemic given in literature also vary, e.g. ~1890 instead of ~1840. The plague during the Great Northern War falls within the second pandemic, which by the late 17th century had its final recurrence in western Europe (e.g. the Great Plague of London 1666–68) and, in the 18th century final recurrences in the rest of Europe (e.g. the plague during the Great Northern War in"} +{"qid": "test2778", "pid": "157456", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "\"Great Plague of London\"\nFields. In both of these localities, poor workers were crowded into ill-kept structures. Two suspicious deaths were recorded in St. Giles parish in 1664 and another in February 1665. These did not appear as plague deaths on the Bills of Mortality, so no control measures were taken by the authorities, but the total number of people dying in London during the first four months of 1665 showed a marked increase and another in 1855. By the end of April, only four plague deaths had been recorded, two in the parish of St. Giles, but total deaths per week had risen"} +{"qid": "test2778", "pid": "9826004", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "\"St Giles, London\"\nfrom the city settled in the St Giles district known for the generous charitable relief of the parish. Irish and French refugees were drawn to the area as well as \"\"St Giles blackbirds\"\", black servants reduced to begging. The 1665 Great Plague started in St Giles and the first victims were buried in the St. Giles churchyard. By September 1665, 8000 people were dying a week in London. By the end of the plague year there were 3,216 listed plague deaths in St Giles parish, which had fewer than 2,000 households. After the Restoration, the area was populated by Huguenot"} +{"qid": "test2778", "pid": "157474", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Great Plague of London\"\nthey had ever been seen ...\"\". Plague cases continued to occur sporadically at a modest rate until the summer of 1666. On the second and third of September that year, the Great Fire of London destroyed much of the City of London, and some people believed that the fire put an end to the epidemic. However, it is now thought that the plague had largely subsided before the fire took place. In fact, most of the later cases of plague were found in the suburbs, and it was the City of London itself that was destroyed by the Fire. According"} +{"qid": "test2778", "pid": "571757", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Charles II of England\"\naccounted for: For that his discourse was his own, his actions were the ministry's\"\". In 1665, Charles was faced with a great health crisis: the Great Plague of London. The death toll reached a peak of 7,000 per week in the week of 17 September. Charles, with his family and court, fled London in July to Salisbury; Parliament met in Oxford. Plague cases ebbed over the winter, and Charles returned to London in February 1666. After a long spell of hot and dry weather through mid-1666, what later became known as the Great Fire of London started on 2 September"} +{"qid": "test2778", "pid": "157434", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Great Plague of London\"\nGreat Plague of London The Great Plague, lasting from 1665–1666, was the last major epidemic of the bubonic plague to occur in England. It happened within the centuries-long time period of the Second Pandemic, an extended period of intermittent bubonic plague epidemics which began in China in 1331, the first year of the Black Death, an outbreak which included other forms such as pneumonic plague, and lasted until 1750. The Great Plague killed an estimated 100,000 people—almost a quarter of London's population—in 18 months. The plague was caused by the \"\"Yersinia pestis\"\" bacterium, which is usually transmitted through the bite"} +{"qid": "test2778", "pid": "10507990", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Stuart London\"\nSeptember 1665 he wrote \"\"\"\"I have stayed in the city till above 7400 died in one week, and of them about 6000 of the plague, and little noise heard day or night but tolling of bells.\"\" \"\" The Great Plague was immediately followed by another catastrophe, albeit one which helped to put an end to the plague. On the Sunday, 2 September 1666 the Great Fire of London broke out at one o'clock in the morning at a house in Pudding Lane in the southern part of the City. Fanned by an eastern wind the fire spread, and efforts to"} +{"qid": "test2778", "pid": "181009", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"History of London\"\npeople, which was one fifth of the population. Samuel Pepys chronicled the epidemic in his diary. On 4 September 1665 he wrote \"\"I have stayed in the city till above 7400 died in one week, and of them about 6000 of the plague, and little noise heard day or night but tolling of bells.\"\" The Great Plague was immediately followed by another catastrophe, albeit one which helped to put an end to the plague. On the Sunday, 2 September 1666 the Great Fire of London broke out at one o'clock in the morning at a bakery in Pudding Lane in"} +{"qid": "test2778", "pid": "9031897", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "\"Great Fire of London\"\nPearson. Another monument marks the spot where the fire stopped: the Golden Boy of Pye Corner in Smithfield. According to the inscription, it was evidence of God's wrath on the City of London for the sin of gluttony that the fire started at Pudding Lane and stopped at Pye Corner. The Great Plague epidemic of 1665 is believed to have killed a sixth of London's inhabitants, or 80,000 people, and it is sometimes suggested that the fire saved lives in the long run by burning down so much unsanitary housing with their rats and their fleas which transmitted the plague,"} +{"qid": "test2778", "pid": "15987132", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "\"Second plague pandemic\"\nmay have reduced world population from an estimated 450 million down to 350–375 million by the year 1400. The plague returned at intervals with varying virulence and mortality until the early 19th century. In England, for example, the plague returned in 1360–63 killing 20% of Londoners and in 1369 killing 10–15%. In the 17th-century outbreaks were a series of \"\"great plagues\"\": the Great Plague of Seville (1647–52); the Great Plague of London (1665–66); and the Great Plague of Vienna (1679). In its virulent form, after the Great Plague of Marseille in 1720–22, the Great Plague of 1738 (which hit Eastern"} +{"qid": "test2778", "pid": "236579", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "London\ntwo months. The fortifications failed their only test when the New Model Army entered London in 1647, and they were levelled by Parliament the same year. London was plagued by disease in the early 17th century, culminating in the Great Plague of 1665–1666, which killed up to 100,000 people, or a fifth of the population. The Great Fire of London broke out in 1666 in Pudding Lane in the city and quickly swept through the wooden buildings. Rebuilding took over ten years and was supervised by Robert Hooke as Surveyor of London. In 1708 Christopher Wren's masterpiece, St Paul's Cathedral"} +{"qid": "test2778", "pid": "157461", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "\"Great Plague of London\"\npreserve us all!\"\" Another source of information on the time is a fictional account, \"\"A Journal of the Plague Year\"\", which was written by Daniel Defoe and published in 1722. He had been only six when the plague struck but made use of his family's recollections (his uncle was a saddler in East London and his father a butcher in Cripplegate), interviews with survivors and sight of such official records as were available. By July 1665, plague was rampant in the City of London. The rich ran away, including King Charles II of England, his family and his court, who"} +{"qid": "test2778", "pid": "19740796", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "Bumblescratch\nwere varied. On March 20, 2018 on the popular American quiz show, \"\"Jeopardy!\"\", the host Alex Trebek supplied the statement: \"\"\"\"Bumblescratch\"\", set in 1665-1666 London starts with a plague and ends with this other disaster.\"\" to which the contestant correctly posited, \"\"What is the Great Fire of London?\"\" Bumblescratch Bumblescratch is an original sung-through musical with book, music and lyrics by Robert J. Sherman. The musical premiered at the Adelphi Theatre in London on 4 September 2016 as a one night, celebrity gala charity event in aid of Variety, the Children's Charity (UK). This was done as part of weekend"} +{"qid": "test2778", "pid": "157473", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Great Plague of London\"\ngentry returned in their carriages accompanied by carts piled high with their belongings. The judges moved back from Windsor to sit in Westminster Hall, although Parliament, which had been prorogued in April 1665, did not reconvene until September 1666. Trade recommenced and businesses and workshops opened up. London was the goal of a new wave of people who flocked to the city in expectation of making their fortunes. Writing at the end of March 1666, Lord Clarendon, the Lord Chancellor, stated \"\"... the streets were as full, the Exchange as much crowded, the people in all places as numerous as"} +{"qid": "test2778", "pid": "13226239", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"English coffeehouses in the 17th and 18th centuries\"\ncoffeehouses had a particular character during their height in popularity, spanning between 1660, after the Restoration of the monarchy, till their decline towards the end of the 18th century. Coffeehouses soon became the \"\"town's latest novelty.\"\" A relaxed atmosphere, their relative cheapness and frequency contributed to coffeehouse sociability and their rise in demand. Despite two major setbacks faced by the coffeehouses during their height in popularity, the outbreak of the plague of 1665 and the Great Fire of London that followed in 1666, the coffeehouse popularity did not wane. Ellis explains: \"\"Londoners could not be entirely subdued and there were"} +{"qid": "test2778", "pid": "8696826", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "Loimologia\nby John Quincy. \"\"Loimologia\"\" was one of the sources used by Daniel Defoe when writing \"\"A Journal of the Plague Year\"\" (1722). Loimologia Loimologia, or, an historical Account of the Plague in London in 1665, With precautionary Directions against the like Contagion is a treatise by Dr. Nathaniel Hodges (1629–1688), originally published in London in Latin (Loimologia, sive, Pestis nuperæ apud populum Londinensem grassantis narratio historica) in 1672; an English translation was later published in London in 1720. The treatise provides a first-hand account of the Great Plague of London; it has been described as the best medical record of"} +{"qid": "test2778", "pid": "1301757", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "Whitehall\n1658. During the Great Plague of London in 1665, people boarded coaches at Whitehall, then at the edge of urban London, in an attempt to escape. The King and court temporarily moved to Oxford to avoid the plague, while Samuel Pepys remarked in his diary on 29 June, \"\"By water to Whitehall, where the Court is full of waggons and people ready to go out of town. This end of town every day grows very bad with plague\"\". By the 18th century, traffic was struggling along the narrow streets south of Holbein Gate, which led to King Street Gate being"} +{"qid": "test2778", "pid": "157475", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Great Plague of London\"\nto the Bills of Mortality, there were in total 68,596 deaths in London from the plague in 1665. Lord Clarendon estimated that the true number of mortalities was probably twice that figure. The next year, 1666, saw further deaths in other cities but on a lesser scale. Dr Thomas Gumble, chaplain to the Duke of Albemarle, both of whom had stayed in London for the whole of the epidemic, estimated that the total death count for the country from plague during 1665 and 1666 was about 200,000. The Great Plague of 1665/1666 was the last major outbreak of bubonic plague"} +{"qid": "test2778", "pid": "157482", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Great Plague of London\"\nincluded Robert Hooke, Robert Boyle and Sir Isaac Newton. In fact, out of the fire and pestilence flowed a renaissance in the arts and sciences in England. Plague pits have been archaeologically excavated during underground construction work. Between 2011 and 2015, some 3,500 burials from the 'New Churchyard' or 'Bethlam burial ground' were discovered during the construction of the Crossrail railway at Liverpool Street. \"\"Yersinia pestis\"\" DNA was found in the teeth of individuals found buried in pits at the site, confirming they had died of bubonic plague. Great Plague of London The Great Plague, lasting from 1665–1666, was the"} +{"qid": "test2778", "pid": "20425509", "query": "when did the great plague of london start and end", "answer": "1665", "passage": "\"Epidemiology of plague\"\nof the plague of 1479–80 could have been as high as 20%. The most general outbreaks in Tudor and Stuart England seem to have begun in 1498, 1535, 1543, 1563, 1589, 1603, 1625, and 1636, and ended with the Great Plague of London in 1665. In 1466, perhaps 40,000 people died of plague in Paris. During the 16th and 17th centuries, plague visited Paris for almost one year out of three. The Black Death ravaged Europe for three years before it continued on into Russia, where the disease hit somewhere once every five or six years from 1350 to 1490."} +{"qid": "test2778", "pid": "15456942", "query": "when did the great plague of london start and end", "answer": "1666", "passage": "\"Peter Barwick\"\nHodges in his account of the plague \"\"Loimologia\"\" for his services in London, while attending the daily service at the cathedral and working with the clergy there. Though the plague could not drive him from his home, the Great Fire of London did in 1666: his house was burned down with St Paul's, and he moved to the neighbourhood of Westminster Abbey. Here he lived for many years, on good terms with his neighbour Richard Busby, doing charity work and writing. He was censor of the College of Physicians in 1674, 1684, 1687, and ‘elect’ from 26 March 1685 to"} +{"qid": "test2779", "pid": "7889186", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Nigambodh Ghat\"\nYudhishthira and Nigambodh Gate lie adjacent to the ghats, which one of last gates of the walled city of Old Delhi (Shahjahanabad) built during Mughal Empire. Nigambodh Ghat Nigambodh Ghat is located on the banks of the Yamuna river coast in New Delhi, situated on the Ring Road, Delhi at the back of the historic Red Fort. It consists of a series of bathing and ceremonial stepped piers leading to the waters of the river. It is most known for being the oldest burning ghat in Delhi for performing Antyesti (Antim Sanskar), Hindu funeral rites and also one of its"} +{"qid": "test2779", "pid": "16704955", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Sahibi River\"\nSahibi River The Sahibi river, also called the Sabi River , is an ephemeral, rain-fed river flowing through Rajasthan, Haryana and Delhi states in India. It drains into Yamuna at Delhi, where its channeled course is also called the Najafgarh drain, which also serves as Najafgarh drain bird sanctuary. Sahibi is a seasonal river which is 120 km long and flows from Aravalli hills in Rajasthan to Haryana, of which 100 km is in Haryana. Several Ochre Coloured Pottery culture sites (also identified as late Harappan phase of Indus Valley Civilisation culture) have been found along the banks of Sahibi"} +{"qid": "test2779", "pid": "10892623", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Hindon River\"\nHindon River Hindon River, a tributary of Yamuna river, is a river in India that originates in the Saharanpur District, from Upper Shivalik in Lower Himalayan Range. The river is entirely rainfed and has a catchment area of . It flows between Ganges and Yamuna rivers for through Muzaffarnagar District, Meerut District, Baghpat District, Ghaziabad, Noida, Greater Noida before it joins Yamuna river just outside Delhi. The Hindon Air Force Base of the Indian Air Force also lies on its bank in the Ghaziabad district on the outskirts of Delhi. Kali river, which originates in the Doon Valley and travels"} +{"qid": "test2779", "pid": "17153303", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Sonia Vihar\"\nYamuna bank of Sonia Vihar. All Other festivals of different communities are also celebrated time to time. Sonia Vihar water treatment plant of Delhi Jal Board has been functioning since 2006. It gets 80 cusecs of water from Upper Ganga Canal north of Muradnagar through large conduit pipes and treats the raw water to supply potable water to several parts of Delhi. Sonia Vihar Sonia Vihar(सोनिया विहार) is a north-east suburb of Delhi near Wazirabad on the bank of the river Yamuna. To the rest of Delhi citizens, it is known for its water treatment plant which supplies potable water"} +{"qid": "test2779", "pid": "14247862", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Yamuna Pushta\"\nYamuna Pushta Yamuna Pushta is the \"\"Pushta\"\" (embankment) on both sides of the Yamuna River in Delhi, starting from the ITO bridge and up to the Salimgarh Fort. It has also been home to riverbed cultivators, and over 100,000 residents a string of slum colonies (shantytown) for some 40 years, mostly on the western banks, like those near the Nigambodh Ghat (cremation ghats) near Old Delhi and a few on the eastern banks like those near Sakarpur village in East Delhi. Many of these slums were being demolished in 2004, after court orders which were part of the beautification drive"} +{"qid": "test2779", "pid": "9252744", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "Shahdara\nMeerut to Delhi. After Chandni Chowk, Shahdara is the among the oldest suburbs of Delhi. In the 18th century CE, Shahdara had grain warehouses and whoIesale grain markets which supplied the Paharganj grain market, across the Yamuna river. Shahdara contains two municipal council zones (Shahdara north and Shahdara south). Shahdara is the fourth station on Line 1 (Red Line) of the Delhi Metro. The Cross River Mall contains Shops, Cafes, Restaurants and a Movie Theatre. The Vikas Cine Mall contains an Indian Bank branch and a Movie Theatre. Shahdara is the location of a number of religious places. The Akshardham"} +{"qid": "test2779", "pid": "17153299", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Sonia Vihar\"\nSonia Vihar Sonia Vihar(सोनिया विहार) is a north-east suburb of Delhi near Wazirabad on the bank of the river Yamuna. To the rest of Delhi citizens, it is known for its water treatment plant which supplies potable water to several parts of Delhi. It lies in Karawal Nagar assembly area. Sonia Vihar is situated at a distance of about 26 km from the Indira Gandhi International Airport, 13 km from the New Delhi railway station and 10 km from Delhi Railway station. The nearest Metro station is Vishvavidyala Metro station, 4 km away. City public buses of Delhi Transport Corporation"} +{"qid": "test2779", "pid": "10928063", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "Okhla\nOkhla Okhla (Old Canal Housing & Land Authority) is a suburban colony located near Okhla barrage in South Delhi district of National Capital Territory of Delhi. It is more commonly known as Okhla Industrial Area (OIA) or Okhla Industrial Estate, an industrial suburb in South Delhi which is mainly divided into three Phases. Okhla has lent its name to the nearby planned township of NOIDA (New Okhla Industrial Development Area). Okhla is among one of the oldest villages in Delhi near the bank of Yamuna river. This can be judged from the making of Okhla canal (Agra Canal) by Britishers"} +{"qid": "test2779", "pid": "9474212", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "Kunjpura\nKunjpura Kunjpura is a village in Karnal district, Haryana (prior to 1966 Punjab state), India, about 10 km northeast of Karnal city and about 130 km north of the national capital, Delhi. It is on the right bank (west bank) of the Yamuna River, off the Grand Trunk Road that runs from Amritsar to Delhi and further on to Calcutta. Kunjpura was founded by Nawab Najabat Khan in 1729. Kunjpura village has a fort with a long history. It was a major halting point for those who traveled from Khyber Pass to Delhi before modern metalled roads came to be."} +{"qid": "test2779", "pid": "7889184", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Nigambodh Ghat\"\nNigambodh Ghat Nigambodh Ghat is located on the banks of the Yamuna river coast in New Delhi, situated on the Ring Road, Delhi at the back of the historic Red Fort. It consists of a series of bathing and ceremonial stepped piers leading to the waters of the river. It is most known for being the oldest burning ghat in Delhi for performing Antyesti (Antim Sanskar), Hindu funeral rites and also one of its busiest with 50–60 pyres burning every day. It also has an electric crematorium built in the 1950s and a CNG-run crematorium was added by the Municipal"} +{"qid": "test2779", "pid": "13749888", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Ashokan Edicts in Delhi\"\nto prowl there. The second Ashokan pillar was shifted from Meerut, in Uttar Pradesh to Delhi by Feruz Shah and erected at a location in the northern ridge of Delhi, close to his hunting palace, between the Chauburji-Masjid and Hindu Rao Hospital. It was an elaborately planned transportation, from its original location, using a 42-wheeled cart to bring it up to the Yamuna river bank and then further transporting it by the Yamuna river route using barges. As seen now, it is of height but the pillar was damaged in an explosion during the rule of Farrukshiar (1713–19). The five"} +{"qid": "test2779", "pid": "15357986", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Delhi Metro\"\n– Dwarka Sector 9 on 1 April 2006, Barakhamba Road – Indraprastha on 11 November 2006, Indraprastha – Yamuna Bank on 10 May 2009, Yamuna Bank – Noida City Centre on 12 November 2009, and Dwarka Sector 9 – Dwarka Sector 21 on 30 October 2010. This line crosses the Yamuna River between Indraprastha and Yamuna Bank stations, and has India's second extradosed bridge across the Northern Railways mainlines near Pragati Maidan. A branch of the Blue line, inaugurated on 8 January 2010, takes off from Yamuna Bank station and runs for up to Anand Vihar in east Delhi. It"} +{"qid": "test2779", "pid": "20322377", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Siege of Dwarasamudra\"\n17 November 1310, the Delhi army led by Malik Kafur marched from Delhi with Alauddin's symbol, the royal canopy. Their first stop was Tankal, a village located on the banks of the Yamuna River; the modern identity of this place is uncertain. Here, the minister of war Khwaja Haji held a review of the army over the next 14 days. The army left Tankal on 2 December 1310, and reached a place called Katihun in 21 stages. The modern identity of this place is also uncertain. After leaving Katihun, the Delhi army crossed hills, valleys and three rivers, the largest"} +{"qid": "test2779", "pid": "9395228", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Delhi Ridge\"\nDelhi Ridge Delhi Ridge, sometimes simply called The Ridge, is a ridge in the National Capital Territory of Delhi in India. The ridge is a northern extension of the ancient Aravalli Range, some 1500 million years old (compared to just 50 million for the Himalaya). The ridge consists of quartzite rocks and extends from the Southeast at Tughlaqabad, near the Bhatti mines, branching out in places and tapering off in the north near Wazirabad on the west bank of the river Yamuna, covering a distance of about 35 kilometres. The Delhi Ridge is said to be the green lungs for"} +{"qid": "test2779", "pid": "18205968", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Wazirabad, Delhi\"\nWazirabad, Delhi \"\"For other places with the same name, see Wazirabad (disambiguation).\"\"
Wazirabad () near Wazirabad barrage is a village in Delhi in the Nation Capital Region. It lies in the Civil Lines subdivision of the North Delhi district. Wazirabad is home to a Delhi Police Training Academy, the nearest police station is the Timar pur Police Station. The only bus stand in the area is the wazirabad x-ing bus stand. The village is located on the banks of the Yamuna river and the main road through the village is the Main Jagatpur Road.Wazirabad has an old or antique"} +{"qid": "test2779", "pid": "14731961", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Environmental issues in Delhi\"\njust about anywhere. Noise pollution comes mainly from motorcycle and automobile traffic. Water pollution and a lack of solid waste treatment facilities have caused serious damage to the river on whose banks Delhi grew, the Yamuna. Besides human and environmental damage, pollution has caused economic damage as well; Delhi may have lost the competition to host the 2014 Asian Games because of its poor environment. Air pollution in Delhi is caused mainly by industry and vehicles. As many as 10,000 people a year may die prematurely in Delhi as a result of air pollution. According to one study, Delhi citizens"} +{"qid": "test2779", "pid": "6640931", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "Baghpat\nname from the Sanskrit word \"\"Vakyaprastha\"\" (Sanskrit: वाक्यप्रस्थ, lit. \"\"city of delivering speeches\"\"). Inspired by such words and versions, the city was finally named Baghpat during the Mughal Era. Baghpat is located in western Uttar Pradesh, on the east bank of the Yamuna River. It is northeast of Delhi and west of Meerut, on the main Delhi–Sharanpur highway. Baghpat is the headquarters of Baghpat district, which is in the shape of a north-south rectangle. To the north of Baghpat district are Shamli and Muzaffarnagar districts, to the east Meerut district, to the south Ghaziabad district, and to the west, across"} +{"qid": "test2779", "pid": "16703412", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Noorpur Muzbida Harsana\"\nIt has an average elevation of 230 metres (754 ft). The village is located on the banks of river Yamuna. It is 58 km from Meerut City and is on the main Delhi – Saharanpur Highway around 40 km from Delhi.In the north of the district Bagpat there is district Muzaffarnagar,in the south district Ghaziabad,in the west river Yamuna and district Rohtak of Harayana. The distance to New Delhi from this village is 40 km. Educational institutions of Noorpur are: Noorpur has agriculture as its main industry. The area is fertile, being close to the river Yamuna/Jamuna. Main crops are"} +{"qid": "test2779", "pid": "17729384", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Delhi Female Medical Mission\"\nmedical and religious—the DFMM was to be \"\"a medical mission among the native women on Delhi, with the double objective of alleviating much physical suffering, and of taking a knowledge of Christianity to them in their secluded homes.\"\" The Delhi Female Medical Mission was actually founded in 1867, when Winter returned to India. Between the years of 1867 and 1874, the Mission was just an open-air dispensary on the banks of the Yamuna River. The dispensary was located in Chandni Chowk, a market region in old Delhi. A \"\"temporary hospital\"\" with bed for ten women was later opened up alongside"} +{"qid": "test2779", "pid": "4381303", "query": "delhi is on the banks of which river", "answer": "Yamuna", "passage": "\"Humayun's Tomb\"\n\"\"Bagh-e Babur\"\" (Gardens of Babur) in Kabul (Afghanistan). Though the latter was the first Emperor to start the tradition of being buried in a paradise garden. Modelled on \"\"Gur-e Amir\"\", the tomb of his ancestor and Asia's conqueror Timur in Samarkand, it created a precedent for future Mughal architecture of royal mausolea, which reached its zenith with the Taj Mahal, at Agra. The site was chosen on the banks of Yamuna river, due to its proximity to Nizamuddin Dargah, the mausoleum of the celebrated Sufi saint of Delhi, Nizamuddin Auliya, who was much revered by the rulers of Delhi, and"} +{"qid": "test278", "pid": "18489905", "query": "who ran the fastest 40 yard dash in the nfl", "answer": "John Ross", "passage": "\"Rondel Menendez\"\nRondel Menendez Rondel Menendez (born May 18, 1975) is a former American football wide receiver. He was drafted by the Atlanta Falcons in the seventh-round of the 1999 NFL Draft out of Eastern Kentucky University. He shared the record for the fastest 40-yard dash time with Chris Johnson, recorded at the NFL Combine at 4.24 seconds. In 2017, his record was broken by John Ross, who ran a 4.22 second 40-yard dash. After accumulating 821 yards receiving in his first two years with Eastern Kentucky, Menendez accomplished a breakout season in his junior year, totaling 1,137 yards on 54 receptions."} +{"qid": "test278", "pid": "16975913", "query": "who ran the fastest 40 yard dash in the nfl", "answer": "John Ross", "passage": "\"Dri Archer\"\na passing touchdown. Archer was named the MAC Special Teams Player of the Year. He made the All-MAC first team as a running back and kick returner. He was also a finalist for the Paul Hornung Award. Archer was a consensus All-American. Source: At the NFL Scouting Combine, Archer ran the 40-yard dash in 4.26 seconds, which is the third fastest time ever recorded (Chris Johnson 4.24 and John Ross 4.22) since the NFL began electronic timing. He was drafted by the Pittsburgh Steelers in the 3rd round (97th overall) in the 2014 NFL Draft. On September 7, 2014, Archer"} +{"qid": "test2780", "pid": "13203035", "query": "when was the book pride and prejudice written", "answer": "1813", "passage": "\"Pride and Prejudice and Zombies\"\nPride and Prejudice and Zombies Pride and Prejudice and Zombies is a 2009 parody novel by Seth Grahame-Smith. It is a mashup combining Jane Austen's classic novel \"\"Pride and Prejudice\"\" (1813) with elements of modern zombie fiction, crediting Austen as co-author. It was first published in April 2009 by Quirk Books and in October 2009 a Deluxe Edition was released, containing full-color images and additional zombie scenes. The novel was adapted into a 2016 film starring Lily James and Sam Riley. Quirk Books editor, Jason Rekulak, developed the idea for \"\"Pride and Prejudice and Zombies\"\" after comparing a list of"} +{"qid": "test2780", "pid": "13203050", "query": "when was the book pride and prejudice written", "answer": "1813", "passage": "\"Pride and Prejudice and Zombies\"\ninstead, Steve Hockensmith authored the work. Steve Hockensmith wrote a sequel in the series titled \"\"Pride and Prejudice and Zombies: Dreadfully Ever After\"\", which was released on March 22, 2011. Pride and Prejudice and Zombies Pride and Prejudice and Zombies is a 2009 parody novel by Seth Grahame-Smith. It is a mashup combining Jane Austen's classic novel \"\"Pride and Prejudice\"\" (1813) with elements of modern zombie fiction, crediting Austen as co-author. It was first published in April 2009 by Quirk Books and in October 2009 a Deluxe Edition was released, containing full-color images and additional zombie scenes. The novel was"} +{"qid": "test2780", "pid": "328256", "query": "when was the book pride and prejudice written", "answer": "1813", "passage": "\"Pride and Prejudice\"\nand reviewer George Henry Lewes declared that he \"\"would rather have written \"\"Pride and Prejudice\"\", or \"\"Tom Jones\"\", than any of the Waverley Novels\"\". Charlotte Brontë, however, in a letter to Lewes, wrote that \"\"Pride and Prejudice\"\" was a disappointment, \"\"a carefully fenced, highly cultivated garden, with neat borders and delicate flowers; but ... no open country, no fresh air, no blue hill, no bonny beck\"\". Austen for her part thought the \"\"playfulness and epigrammaticism\"\" of \"\"Pride and Prejudice\"\" was excessive, complaining in a letter to her sister Cassandra in 1813 that the novel lacked \"\"shade\"\" and should have had"} +{"qid": "test2780", "pid": "210901", "query": "when was the book pride and prejudice written", "answer": "1813", "passage": "\"Jane Austen\"\n\"\"By the author of \"\"Sense and Sensibility\"\"\"\" and Austen's name never appeared on her books during her lifetime. Egerton then published \"\"Pride and Prejudice\"\", a revision of \"\"First Impressions\"\", in January 1813. Austen sold the copyright to \"\"Pride and Prejudice\"\" to Egerton for £110. To maximise profits, he used cheap paper and set the price at 18 shillings. He advertised the book widely and it was an immediate success, garnering three favourable reviews and selling well. Had Austen sold \"\"Pride and Prejudice\"\" on commission, she would had made a profit of £475, or twice her father's annual income. By October"} +{"qid": "test2782", "pid": "19807796", "query": "when was the last time that the eagles were at the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test2782", "pid": "19807841", "query": "when was the last time that the eagles were at the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nas the rest of the game represented total domination from Nick Foles and the Eagles' offense, who racked up 456 total yards and 38 unanswered points. With a blowout win against one of the league's top defenses, the Eagles advanced to their third Super Bowl. The Philadelphia Eagles entered Super Bowl LII as a 5.5 point underdog to the defending champions; the New England Patriots. This was also their first appearance in 13 years, with their last Super Bowl berth happening in 2005 (Super Bowl XXXIX), which also happened to be against the New England Patriots. In the first quarter,"} +{"qid": "test2782", "pid": "6224942", "query": "when was the last time that the eagles were at the super bowl", "answer": "2017", "passage": "\"History of the Philadelphia Eagles\"\nfirst time since the 2004 season. The Eagles would face Tom Brady and the New England Patriots in a rematch of Super Bowl XXXIX at Super Bowl LII. The Eagles would end up winning the game 41-33 to give the Eagles their first Super Bowl Championship and their first championship since the 1960 season before the NFL-AFL merger. Nick Foles would be named Super Bowl MVP. The Eagles came back from a successful 2017 season hoping to become the first repeat Super Bowl victors since the New England Patriots during their 2003 and 2004 season. Before the season started many"} +{"qid": "test2782", "pid": "19807846", "query": "when was the last time that the eagles were at the super bowl", "answer": "2017", "passage": "\"2017 Philadelphia Eagles season\"\nthe Patriots' last hopes. The Philadelphia Eagles defeated the Patriots by a score of 41–33. Nick Foles also was named Super Bowl MVP after the game. With this win, the Eagles finally won their first Super Bowl, and their first NFL title since 1960. A Super Bowl victory parade took place four days later on February 8. 2017 Philadelphia Eagles season The 2017 Philadelphia Eagles season was the franchise's 85th season in the National Football League, the 15th playing their home games at Lincoln Financial Field, and the second under head coach Doug Pederson. The Eagles improved their 7–9 record"} +{"qid": "test2782", "pid": "7530509", "query": "when was the last time that the eagles were at the super bowl", "answer": "2017", "passage": "\"Donnie Jones\"\nthree-year, $5.5 million contract extension with the Eagles through 2019. Overall, in the 2016 season, he finished with 63 punts for 2,888 net yards for a 45.84 average. In the 2017 season, Jones finished with 67 punts for 3,033 net yards for a 45.27 average. He earned a Super Bowl ring when the Eagles defeated the New England Patriots 41-33 in Super Bowl LII. Jones recorded the only punt in the game that went 41 yards. On February 27, 2018, Jones announced his retirement from the NFL. During his time with the Eagles, Jones set the all-time Eagles gross punting"} +{"qid": "test2784", "pid": "187368", "query": "by 1914 which of the following african countries were still independent", "answer": "Ethiopia", "passage": "\"History of Africa\"\nEgypt and Ethiopia were already independent. Many countries followed in the 1950s and 1960s, with a peak in 1960 with the Year of Africa, which saw 17 African nations declare independence, including a large part of French West Africa. Most of the remaining countries gained independence throughout the 1960s, although some colonizers (Portugal in particular) were reluctant to relinquish sovereignty, resulting in bitter wars of independence which lasted for a decade or more. The last African countries to gain formal independence were Guinea-Bissau (1974), Mozambique (1975) and Angola (1975) from Portugal; Djibouti from France in 1977; Zimbabwe from the United"} +{"qid": "test2784", "pid": "1982011", "query": "by 1914 which of the following african countries were still independent", "answer": "Liberia", "passage": "\"Scramble for Africa\"\nScramble for Africa The Scramble for Africa was the occupation, division, and colonization of African territory by European powers during the period of New Imperialism, between 1881 and 1914. It is also called the Partition of Africa and by some the Conquest of Africa. In 1870, only 10 percent of Africa was under formal European control; by 1914 it had increased to almost 90 percent of the continent, with only Ethiopia (Abyssinia) and Liberia still being independent. There were multiple motivations including the quest for national prestige, tensions between pairs of European powers, religious missionary zeal and internal African native"} +{"qid": "test2784", "pid": "1982076", "query": "by 1914 which of the following african countries were still independent", "answer": "Liberia", "passage": "\"Scramble for Africa\"\nfields, invested in industry related infrastructure development and acquired continental oil concessions throughout Africa. Scramble for Africa The Scramble for Africa was the occupation, division, and colonization of African territory by European powers during the period of New Imperialism, between 1881 and 1914. It is also called the Partition of Africa and by some the Conquest of Africa. In 1870, only 10 percent of Africa was under formal European control; by 1914 it had increased to almost 90 percent of the continent, with only Ethiopia (Abyssinia) and Liberia still being independent. There were multiple motivations including the quest for national"} +{"qid": "test2784", "pid": "4021534", "query": "by 1914 which of the following african countries were still independent", "answer": "Liberia", "passage": "\"Economic history of Africa\"\nwould ultimately fall under European colonial rule by 1914, with the exceptions of Ethiopia and Liberia. The partitioning of African territory among European regimes often violated existing boundaries recognized by local Africans. Some of the independent African states affected by the partitioning of the continent included: Under colonial rule, the plantation system of farming was widely introduced in order to grow large quantities of cash crops, and employing cheap (often forced) African labor for export to European countries. Mining for gems and precious metals such as gold was developed in a similar way by wealthy European entrepreneurs such as Cecil"} +{"qid": "test2785", "pid": "6053204", "query": "when was the day that the pubs ran dry in the poem 9-3", "answer": "31 October 1972", "passage": "\"Llanelli RFC\"\nin front of 26,000 supporters on 31 October 1972. Llanelli took a 6–0 lead through a converted try but New Zealand struck back to make it 6–3. A long distance Andy Hill penalty ensured Llanelli emerged victors by 9–3 and the crowd famously ran onto the pitch at the end and carried off players such as Delme Thomas. The poem is best known for the line \"\"The day the pubs ran dry\"\", as huge celebrations followed and many pubs in the town sold out of all alcoholic drinks. The next notable period for Llanelli RFC was during the late 1980s"} +{"qid": "test2786", "pid": "2414989", "query": "where does aarp fall on the political spectrum", "answer": "non-partisan", "passage": "AARP\nindividual's 50th birthday. AARP addresses issues affecting older Americans through lobbying efforts at the state and national governmental level, an activity permitted by its 501(c)(4) status. The organization says that it is non-partisan and does not support, oppose or give money to any candidates or political parties. The total revenue for 2006 was approximately $1 billion and it spent $23 million on lobbying. Middle-class security has been a major focus for the organization in recent years. AARP also provides extensive consumer information, volunteer opportunities, and events including the annual National Event & Expo (2013 in Las Vegas from May 30–June"} +{"qid": "test2786", "pid": "8053158", "query": "where does aarp fall on the political spectrum", "answer": "non-partisan", "passage": "\"Beto O'Rourke\"\nclassify O'Rourke as a progressive, liberal or centrist Democrat. O'Rourke is a member of the New Democrat Coalition, a congressional member organization that is described as \"\"pro-business\"\" or centrist. The non-partisan \"\"National Journal\"\" gave O'Rourke a composite ideology of 85 percent liberal and 15 percent conservative in 2013. Describing himself, O'Rourke has said that he does not know where he falls on the political spectrum, and he has sponsored bipartisan bills as well as broken with his party on issues like free trade. GovTrack places Representative O'Rourke near the ideological center of the House Democrats, being to the right of"} +{"qid": "test2787", "pid": "10817153", "query": "who sang the song tell me something good", "answer": "Rufus and Chaka Khan", "passage": "\"Tell Me Something Good\"\nshow in the morning named after the song (which was also the theme song). The host told the listeners about a positive true event that happened that day. The Bobby Bones Show also has a segment named after the song. Tell Me Something Good \"\"Tell Me Something Good\"\" is a song by Rufus and Chaka Khan, written by Stevie Wonder and released in 1974. The single was a hit in the United States, peaking at number three on the \"\"Billboard\"\" Hot 100 and spent one week at number one on the \"\"Cash Box\"\" Top 100. It was among the earliest"} +{"qid": "test2787", "pid": "10817149", "query": "who sang the song tell me something good", "answer": "Rufus and Chaka Khan", "passage": "\"Tell Me Something Good\"\nTell Me Something Good \"\"Tell Me Something Good\"\" is a song by Rufus and Chaka Khan, written by Stevie Wonder and released in 1974. The single was a hit in the United States, peaking at number three on the \"\"Billboard\"\" Hot 100 and spent one week at number one on the \"\"Cash Box\"\" Top 100. It was among the earliest hits to use the guitar talk box, by Tony Maiden. The song has been described as having \"\".. rude metallic guitar\"\" (by Al Ciner) and \"\".. a beautiful bass, clav and heavy breathing groove.\"\" The song can be difficult to"} +{"qid": "test2788", "pid": "7951464", "query": "french film pioneer who introduced newsreel in 1910", "answer": "Charles Pathé", "passage": "\"Pathé News\"\nPathé News Pathé News was a producer of newsreels and documentaries from 1910 until 1970 in the United Kingdom. Its founder, Charles Pathé, was a pioneer of moving pictures in the silent era. The Pathé News archive is known today as British Pathé. Its collection of news film and movies is fully digitised and available online. Its roots lie in 1896 Paris, France, when Société Pathé Frères was founded by Charles Pathé and his brothers, who pioneered the development of the moving image. Charles Pathé adopted the national emblem of France, the cockerel, as the trademark for his company. After"} +{"qid": "test2788", "pid": "7951473", "query": "french film pioneer who introduced newsreel in 1910", "answer": "Charles Pathé", "passage": "\"Pathé News\"\nand The March of Time (1935–1951). Pathé News Pathé News was a producer of newsreels and documentaries from 1910 until 1970 in the United Kingdom. Its founder, Charles Pathé, was a pioneer of moving pictures in the silent era. The Pathé News archive is known today as British Pathé. Its collection of news film and movies is fully digitised and available online. Its roots lie in 1896 Paris, France, when Société Pathé Frères was founded by Charles Pathé and his brothers, who pioneered the development of the moving image. Charles Pathé adopted the national emblem of France, the cockerel, as"} +{"qid": "test2788", "pid": "4759242", "query": "french film pioneer who introduced newsreel in 1910", "answer": "Charles Pathé", "passage": "\"Charles Pathé\"\nCharles Pathé Charles Pathé (; 26 December 1863 – 25 December 1957) was an important pioneer of the French film and recording industries. As the founder of Pathé Frères, its roots lie in 1896 Paris, France, when Pathé and his brothers, pioneered the development of the moving image. Pathé adopted the national emblem of France, the cockerel, as the trademark for his company. After the company, now called Compagnie Générale des Éstablissements Pathé Frères Phonographes & Cinématographes, invented the cinema newsreel with \"\"Pathé-Journal\"\". The son of a butcher shop owner, Charles Morand Pathé was born at Chevry-Cossigny, in the Seine-et-Marne"} +{"qid": "test2789", "pid": "2162945", "query": "who has won the eurovision song contest the most times", "answer": "Ireland", "passage": "Melodifestivalen\nand 2015. Sweden has the second highest number of wins for a country at Eurovision; only Ireland has won the contest more often. The 1974 Eurovision winner, ABBA's \"\"Waterloo\"\", was voted the most popular Melodifestivalen song of all time at the \"\"Alla tiders Melodifestival\"\" gala in March 2005. Later that year, it was voted most popular Eurovision song of the contest's first fifty years at a gala in Copenhagen. The following table lists those entries which finished fifth or higher at Eurovision: This list includes those who have acted as presenters of Melodifestivalen. In 1986, there were two presenters for"} +{"qid": "test2789", "pid": "6329375", "query": "who has won the eurovision song contest the most times", "answer": "Ireland", "passage": "\"Ireland in the Eurovision Song Contest\"\nIreland in the Eurovision Song Contest Ireland has participated in the Eurovision Song Contest 52 times since making its debut at the 1965 Contest in Naples, missing only two contests since then ( and ). The contest final is broadcast in Ireland on RTÉ One. Ireland is the most successful country in the contest, with a record total of seven wins, and is the only country to have won three times consecutively. Ireland's seven wins were achieved by Dana with \"\"All Kinds of Everything\"\" (), Johnny Logan with \"\"What's Another Year\"\" () and \"\"Hold Me Now\"\" (), Linda Martin with"} +{"qid": "test2789", "pid": "6329395", "query": "who has won the eurovision song contest the most times", "answer": "Ireland", "passage": "\"Ireland in the Eurovision Song Contest\"\nentry was performed without orchestral accompaniment in 1994 and 1997. Ireland in the Eurovision Song Contest Ireland has participated in the Eurovision Song Contest 52 times since making its debut at the 1965 Contest in Naples, missing only two contests since then ( and ). The contest final is broadcast in Ireland on RTÉ One. Ireland is the most successful country in the contest, with a record total of seven wins, and is the only country to have won three times consecutively. Ireland's seven wins were achieved by Dana with \"\"All Kinds of Everything\"\" (), Johnny Logan with \"\"What's Another"} +{"qid": "test2789", "pid": "1545354", "query": "who has won the eurovision song contest the most times", "answer": "Ireland", "passage": "\"Eurovision Song Contest 1970\"\nEurovision Song Contest 1970 The Eurovision Song Contest 1970 was the 15th Eurovision Song Contest, held on 21 March 1970 at the RAI Congrescentrum in Amsterdam, Netherlands. The Amsterdam contest is regarded as one of the most significant in Eurovision history for a number of reasons. Ireland won with nineteen-year-old Dana and a song called \"\"All Kinds of Everything\"\". Ireland's win was their first. The UK came second for the seventh time, six votes behind Ireland. This was the only time that Luxembourg received zero votes. Due to there being four winners in the previous contest, a question was raised"} +{"qid": "test2789", "pid": "4213282", "query": "who has won the eurovision song contest the most times", "answer": "Ireland", "passage": "\"Luxembourg in the Eurovision Song Contest\"\nLuxembourg in the Eurovision Song Contest Luxembourg has participated in the Eurovision Song Contest 37 times since making its debut at the first contest in 1956. Between 1956 and 1993, Luxembourg only missed the 1959 contest. Since 1994, Luxembourg has not participated in the contest. Luxembourg has won the contest five times. Only Ireland (seven) and Sweden (six) have more wins. Luxembourg's first victory was in 1961 when Jean-Claude Pascal won with \"\"Nous les amoureux\"\". France Gall then won in 1965 with \"\"Poupée de cire, poupée de son\"\". Luxembourg achieved back-to-back victories in the early 1970s, with Vicky Leandros winning"} +{"qid": "test279", "pid": "4236713", "query": "whats the difference between tomato paste and tomato puree", "answer": "consistency", "passage": "\"Tomato purée\"\nTomato purée Tomato purée is a thick liquid made by cooking and straining tomatoes. The difference between tomato paste, tomato purée, and tomato sauce is consistency; tomato puree has a thicker consistency and a deeper flavour than sauce. The definitions of tomato purée vary from country to country. In the U.S., tomato purée is a processed food product, usually consisting of only tomatoes, but can also be found in the seasoned form. It differs from tomato sauce or tomato paste in consistency and content; tomato purée generally lacks the additives common to a complete tomato sauce and does not have"} +{"qid": "test279", "pid": "4236715", "query": "whats the difference between tomato paste and tomato puree", "answer": "consistency", "passage": "\"Tomato purée\"\nquick sauces such as a marinara sauce it is undesirable. Tomato purée has approx 16% solids content. Lower solids content is due to filtering, higher content is due to concentration of the product. A related product, passata di pomodoro, is a tomato purée that is sieved and not cooked. In this form, it is generally sold in bottles or aseptic packaging, and is most common in Europe. Tomato purée Tomato purée is a thick liquid made by cooking and straining tomatoes. The difference between tomato paste, tomato purée, and tomato sauce is consistency; tomato puree has a thicker consistency and"} +{"qid": "test279", "pid": "3920541", "query": "whats the difference between tomato paste and tomato puree", "answer": "consistency", "passage": "\"Tomato paste\"\nTomato paste Tomato paste is a thick paste made by cooking tomatoes for several hours to reduce the water content, straining out the seeds and skins, and cooking the liquid again to reduce the base to a thick, rich concentrate. By contrast, tomato purée is a liquid with a consistency between crushed tomatoes and tomato paste that is made from tomatoes that have been briefly boiled and strained. Based on the manufacturing conditions, the paste can be the basis for making ketchup or reconstituted tomato juice: Tomato paste is traditionally made in parts of Sicily, southern Italy and Malta by"} +{"qid": "test2790", "pid": "2972913", "query": "when did the revolution begin in the united states", "answer": "1765", "passage": "\"Religion in Canada\"\nreligion of French Canadians today. The American Revolution beginning in 1765 brought a large influx of Protestants to Canada when United Empire Loyalists, fleeing the rebellious United States, moved in large numbers to Upper Canada and the Maritimes. They comprised a mix of Christian groups with a large number of Anglicans, but also many Presbyterians and Methodists. While Anglicans consolidated their hold on the upper classes, workingmen and farmers responded to the Methodist revivals, often sponsored by visiting preachers from the United States. Typical was Rev. James Caughey, an American sent by the Wesleyan Methodist Church from the 1840s through"} +{"qid": "test2791", "pid": "11994314", "query": "through what process has the colorado river created the grand canyon in the usa", "answer": "erosion", "passage": "\"Colorado River Storage Project\"\nNational Park. Glen Canyon Dam in particular has been the subject of much environmental criticism. Water trapped behind the dams cools and drops its sediment load in the reservoirs. Natural floods of warm sediment-rich water flowing down the Colorado River, through the Grand Canyon, and on to the Colorado River Delta created sandbars and beaches along the river's course and throughout its canyons. These floods have been replaced with metered releases of cold, sediment-free water which has led to the erosion of sandbars in the Grand Canyon that are crucial for wildlife and has altered the food web within the"} +{"qid": "test2791", "pid": "6848111", "query": "through what process has the colorado river created the grand canyon in the usa", "answer": "erosion", "passage": "\"Sumidero Canyon\"\nChicoasén Dam. The Sumidero Canyon was formed by cracks in the earth's crust along with erosion by the Grijalva River, which still flows through it. The process of its formation began about 35 million years ago, making the Sumidero contemporary with the Grand Canyon on the Colorado River. The Grijalva is the main water system in the area, beginning in the Cuchumatanes in neighboring Guatemala. The river then flows through Chiapas, including the 13-km length of the canyon, from south to north, then on to Tabasco before it empties into the Usumacinta River. This river basin is one of the"} +{"qid": "test2794", "pid": "18178082", "query": "guardians of the galaxy blue guy in prison", "answer": "Michael Rooker", "passage": "\"Guardians of the Galaxy Vol. 2\"\nGuardians of the Galaxy Vol. 2 Guardians of the Galaxy Vol. 2 is a 2017 American superhero film based on the Marvel Comics superhero team Guardians of the Galaxy, produced by Marvel Studios and distributed by Walt Disney Studios Motion Pictures. It is the sequel to 2014's \"\"Guardians of the Galaxy\"\" and the fifteenth film in the Marvel Cinematic Universe (MCU). Written and directed by James Gunn, the film stars an ensemble cast featuring Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel, Bradley Cooper, Michael Rooker, Karen Gillan, Pom Klementieff, Elizabeth Debicki, Chris Sullivan, Sean Gunn, Sylvester Stallone, and Kurt"} +{"qid": "test2795", "pid": "3297398", "query": "what happened to the west wing of the white house during a christmas party in 1929", "answer": "electrical fire", "passage": "\"West Wing\"\nthe addition's south facade, reminiscent of the oval rooms on the three floors of the White House. Later, at the outset of his presidency, Herbert Hoover rebuilt the West Wing, excavating a partial basement, and supporting it with structural steel. The completed building however lasted less than seven months. On December 24, 1929, the West Wing was significantly damaged by an electrical fire. Hoover rebuilt it, and added air-conditioning. The fourth and final major reorganization was undertaken less than three years later by Franklin D. Roosevelt. Dissatisfied with the size and layout of President Hoover's West Wing, he engaged New"} +{"qid": "test2798", "pid": "5313555", "query": "when do you pray the chaplet of divine mercy", "answer": "Good Friday", "passage": "\"Chaplet of the Divine Mercy\"\nrepeated over a period of nine days as part of a novena. According to Faustina's \"\"Diary\"\", Jesus himself in a vision asked that the Divine Mercy Novena be prayed as a preparation for the Feast of the Divine Mercy, celebrated each year on first Sunday after Easter. The novena should begin on Good Friday. There is a prayer intention for specific group of people on each of the nine days. The last day intention, according to Jesus' message to St. Faustina, is the most difficult of all: to pray for the people who are lukewarm and indifferent. Jesus described those"} +{"qid": "test2798", "pid": "13797440", "query": "when do you pray the chaplet of divine mercy", "answer": "Good Friday", "passage": "\"Faustina Kowalska\"\nwere printed. In August, Father Sopoćko asked Faustina to write the instructions for the Novena of Divine Mercy, which she had reported as a message from Jesus on Good Friday 1937. Throughout 1937, progress was made in promoting the Divine Mercy, and in November 1937, a pamphlet was published with the title \"\"Christ, King of Mercy\"\". The pamphlet included the chaplet, the novena, and the litany of the Divine Mercy. The Divine Mercy image appeared on the cover, with the signature, \"\"Jesus I Trust in You\"\". On 10 November 1937, Mother Irene, Faustina's superior, showed her the booklets while Faustina"} +{"qid": "test2798", "pid": "5313550", "query": "when do you pray the chaplet of divine mercy", "answer": "Good Friday", "passage": "\"Chaplet of the Divine Mercy\"\nNational Shrine of The Divine Mercy in Stockbridge, Massachusetts. In the Philippines, Singapore, and Hong Kong the \"\"3 o'clock Prayer\"\" is broadcast on radio and television stations daily at 3:00 p.m. In 2000, Pope John Paul II ordained the Sunday after Easter Divine Mercy Sunday, where Roman Catholics remember the institution of the Sacrament of Penance. The hour Jesus died by crucifixion, 3:00 PM (15:00), is called the Hour of Mercy. In a novena, the chaplet is usually said each of the nine days from Good Friday to Divine Mercy Sunday. Pope John Paul II was instrumental in the formal"} +{"qid": "test2798", "pid": "5104336", "query": "when do you pray the chaplet of divine mercy", "answer": "Good Friday", "passage": "\"Divine Mercy Sunday\"\nand that the same celebration would be held in Rome attended by the Pope. She wrote: \"\"The crowd was so enormous that the eye could not take it all in. Everyone was participating in the celebrations.\"\" Divine Mercy Sunday is also the day after the culmination of the novena of the Chaplet of Divine Mercy. Faustina wrote Jesus instructed her that the Feast of Mercy (the Sunday after Easter) be preceded by a Divine Mercy Novena which would begin on Good Friday. The first Mass during which the Divine Mercy image was displayed was on April 28, 1935, the first"} +{"qid": "test2799", "pid": "16557207", "query": "who does the voice of mrs. wolowitz on the big bang theory", "answer": "Carol Ann Susi", "passage": "\"Carol Ann Susi\"\nCarol Ann Susi Carol Ann Susi (February 2, 1952 – November 11, 2014) was an American actress. She was known for providing the voice of recurring unseen character Mrs. Wolowitz, mother of Howard Wolowitz, on the television series \"\"The Big Bang Theory\"\". Susi made her first screen appearance in \"\"\"\", where she played the recurring role of intern Monique Marmelstein. Other television and film credits included: \"\"McMillan & Wife\"\", \"\"Coyote Ugly\"\", \"\"Just Go with It\"\", \"\"The Big Bang Theory\"\", \"\"Becker\"\", \"\"Grey's Anatomy\"\", \"\"That '70s Show\"\", \"\"Out of Practice\"\", \"\"Cats & Dogs\"\", \"\"Just Shoot Me\"\", \"\"Married... with Children\"\", \"\"Night Court\"\", \"\"The"} +{"qid": "test2799", "pid": "17860947", "query": "who does the voice of mrs. wolowitz on the big bang theory", "answer": "Carol Ann Susi", "passage": "\"The Big Bang Theory (season 8)\"\nSupporting Actress in a Comedy Series at the 67th Primetime Emmy Awards. Christine Baranski submitted the episode \"\"The Maternal Combustion\"\" for consideration due to her nomination for the Primetime Emmy Award for Outstanding Guest Actress in a Comedy Series at the 67th Primetime Creative Arts Emmy Awards. Carol Ann Susi, the voice of the never-seen Mrs. Wolowitz, died of cancer on November 11, 2014, at age 62. In this season's February 19, 2015 episode, \"\"The Comic Book Store Regeneration\"\", Howard Wolowitz receives a phone call that his mother has died while visiting family in Florida. In February 2014, CBS CEO"} +{"qid": "test2799", "pid": "12545498", "query": "who does the voice of mrs. wolowitz on the big bang theory", "answer": "Carol Ann Susi", "passage": "\"Howard Wolowitz\"\nhis mom\"\". Howard is an only child. Howard's wife is Bernadette Rostenkowski-Wolowitz. Mrs. Wolowitz (voiced by Carol Ann Susi) is not shown on screen until the season 6 episode \"\"The Spoiler Alert Segmentation\"\", but her voice is heard when he is at their house or when he talks to her on the phone. She only communicates with Howard by yelling to him in an obnoxious manner, which results in awkward long-distance conversations, with Howard yelling back at her in a frustrated manner. Her nosy nature and her barrage of questions make Howard's life tense at home, which prompts him to"} +{"qid": "test280", "pid": "3163930", "query": "what type of plate boundary is associated with iceland and its volcanic eruptions", "answer": "divergent tectonic plate boundary", "passage": "\"Volcanology of Iceland\"\nVolcanology of Iceland The volcanoes of Iceland include a high concentration of active ones due to Iceland's location on the mid-Atlantic Ridge, a divergent tectonic plate boundary, and its location over a hot spot. The island has 30 active volcanic systems, of which 13 have erupted since the settlement of Iceland in AD 874. Of these 30 active volcanic systems, the most active/volatile is Grímsvötn. Over the past 500 years, Iceland's volcanoes have erupted a third of the total global lava output. The most fatal volcanic eruption of Iceland's history was the so-called Skaftáreldar (fires of Skaftá) in 1783-84. The"} +{"qid": "test2800", "pid": "573363", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Party leaders of the United States Senate\"\nand none beyond the presiding role. For these reasons, it is the Majority Leader who, in practice, manages the Senate. This is in contrast to the House of Representatives where the elected Speaker of the House has a great deal of discretionary power and generally presides over votes on bills. The Democratic Party first selected a leader in 1920. The Republican Party first formally designated a leader in 1925. Party leaders of the United States Senate The Senate Majority and Minority Leaders are two United States Senators and members of the party leadership of the United States Senate. These leaders"} +{"qid": "test2800", "pid": "10831209", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Washington (state)\"\n2014, both houses of the Washington State Legislature (the Washington Senate and the Washington House of Representatives) were controlled by a Democratic majority. The state senate was under Republican control, due to two Democrats joining Republicans to form a Majority Coalition Caucus. After the 2014 elections, the Democrats retained control of the House, while Republicans took a majority in the Senate without the need for a coalition. In November 2017, a special election gave Democrats a one seat majority in the Senate and complete control over state government. No state has gone longer without a Republican governor than Washington state."} +{"qid": "test2800", "pid": "15379626", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"2012 United States House of Representatives elections in Arizona\"\nIncumbent Republican Jeff Flake, who has represented this district since 2001, sought the Republican nomination for the U.S. Senate. Kirk Adams, the former Speaker of the Arizona House of Representatives; and Matt Salmon, who held the seat from 1995 until 2001, sought the Republican nomination. Russell Pearce, the former president of the state senate announced that he would run for a seat in the Arizona State Senate's new district 25; however, on August 28, 2012, he lost his comeback bid to businessman Bob Worsley, by 56% to 44%. Chuck Gray, former majority leader of the Arizona Senate, announced in February"} +{"qid": "test2800", "pid": "4097690", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Charles Goodell\"\nface real choices in this year's Senate election: Congressman Richard Ottinger, the Democratic candidate, who has sponsored two pieces of legislation in six years in the House. Republican Senator Charles Goodell, who has sponsored forty-four major pieces of legislation in twenty-two months in the Senate. Conservative nominee James L. Buckley, who has an economic plan for the nineteenth century. Those are your choices on election day: the light weight; the heavy weight; and the dead weight.\"\" In the November 1970 election, despite Rockefeller's support and that of the Republican and Liberal parties, Goodell split the liberal vote with Ottinger, and"} +{"qid": "test2800", "pid": "15548444", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"2012 United States House of Representatives elections in Colorado\"\nin February 2012. State senator Morgan Carroll; John Morse, the majority leader of the state senate; Andrew Romanoff, a former speaker of the Colorado House of Representatives; and Brandon Shaffer, the president of the Colorado Senate (who will instead run in the 4th district), all decided against running. Colorado's 7th congressional district, which has been represented by Democrat Ed Perlmutter since 2007, was modified in redistricting to include the more populated suburbs of Adams County. Joe Coors Jr., the brother of unsuccessful 2004 U.S. Senate candidate Pete Coors, became the Republican nominee to challenge Perlmutter. 2012 United States House of"} +{"qid": "test2800", "pid": "13295433", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Danny Martiny\"\nDanny Martiny Daniel R. Martiny, known as Danny Martiny (born June 27, 1951), is a politician and attorney from Jefferson Parish, Louisiana, who has served since January 14, 2008, as a Republican member of the Louisiana State Senate from District 10, based in the New Orleans suburbs. Since 2012, he has been the Senate Majority Leader. From 1994 to 2008, Martiny held the District 79 seat, also in Jefferson Parish, in the Louisiana House of Representatives. Term-limited in the House, Martiny ran for the Senate in the nonpartisan blanket primary held on October 20, 2007. Martiny polled 19,414 votes (68.9%)"} +{"qid": "test2800", "pid": "15333884", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"History of the United States Congress\"\nand the Republican Congress passed the Smoot Hawley Tariff Act. However, it has been recognized that this act only made economic condition far worse. The 1930 midterm election saw the Republicans barely maintain control of the US House of Representatives and US Senate. Shortly after the 1930 midterm election, however, special elections were held to replace 19 House of Representative-elects who died, and Democrats would gain a four-seat majority in the US House of Representatives as a result of the outcome of these elections. In the 1932 US Senate elections, the Democrats easily regained control over the US Senate once"} +{"qid": "test2800", "pid": "16649011", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Ann Rivers\"\na senior account manager for NALCO, and their two children. Ann Rivers Ann Rivers (born 1968) is an American politician, who has served as a Republican member of the Washington State Senate since she was appointed to represent the 18th district in 2011, upon the resignation of Joe Zarelli. Prior to this she was a member of the Washington House of Representatives. In her first full term, a Majority Coalition Caucus was formed, taking control away from the Democrats in the state senate. Rivers was appointed to be majority whip for the session, a rare appointment for a freshman senator."} +{"qid": "test2800", "pid": "16648995", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Ann Rivers\"\nAnn Rivers Ann Rivers (born 1968) is an American politician, who has served as a Republican member of the Washington State Senate since she was appointed to represent the 18th district in 2011, upon the resignation of Joe Zarelli. Prior to this she was a member of the Washington House of Representatives. In her first full term, a Majority Coalition Caucus was formed, taking control away from the Democrats in the state senate. Rivers was appointed to be majority whip for the session, a rare appointment for a freshman senator. She won re-election for another four-year term in 2012, with"} +{"qid": "test2800", "pid": "10593883", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Politics of North Dakota\"\nnational record that still stands today. In the 64th Legislative Assembly (2015-2016), the Republicans command large majorities in both the House of Representatives and the Senate. North Dakota House of Representatives The North Dakota Senate The North Dakota House of Representatives The North Dakota Senate North Dakota's two U.S. Senators are elected at large: North Dakota currently has one at-large congressional district. A 2nd and 3rd district were eliminated due to population growth in other states. U.S. House of Representatives: Under state law, there are technically no major or minor parties, only 'organized' parties that are entitled to equal rights"} +{"qid": "test2800", "pid": "3152437", "query": "who has majority in the house and senate", "answer": "Republican", "passage": "\"Colorado Senate\"\nhas line item veto power over appropriations. Based on the 2010 census, each state senator represents 143,691 constituents. The 2014 Colorado Elections resulted in the Republican Party winning their first majority in a decade, and a majority they maintained in the 2016 Elections. Republicans currently holds a majority in the 71st General Assembly; 18 Republicans, 16 Democrats, and 1 Independent. With the Republican majority, Kevin Grantham serves as President of the Senate and Chris Holbert is the Majority Leader. Colorado Senate The Colorado Senate is the upper house of the Colorado General Assembly, the state legislature of the US state"} +{"qid": "test2801", "pid": "16017941", "query": "who has the highest paid contract in the nba", "answer": "Stephen Curry", "passage": "\"Highest-paid NBA players by season\"\nhas earned on a 1 year contract, Jordan also holds the record for the second largest 1 year contract at $30,140,000 in the 1996-97 season. Kobe Bryant become just the second player to reach this milestone when the 2013–14 season began. LeBron James became the third in the 2016–17 season. Stephen Curry became the first player to eclipse $40-Million per year when he signed a record 5-year contract worth $201-Million in 2017, starting with $34,682,550 in the 2017-18 season and ending with the largest earnings in the 2021-22 season with a record payout of $45,780,966. Beginning in the 1984–85 NBA"} +{"qid": "test2804", "pid": "15360686", "query": "how many points are scored for a touchdown in american football", "answer": "six", "passage": "\"Conversion (gridiron football)\"\ndrop-kicked field goal. Some youth football leagues turn the scoring upside-down to an extent, scoring one point for a running touchdown and two points for either a passing touchdown or field goal; six-man football follows a similar convention that rewards one point for a pass or run and two points for a kick. Conversion (gridiron football) The conversion, try (American football, also known as a point(s) after touchdown, PAT, or extra point), or convert (Canadian football) occurs immediately after a touchdown during which the scoring team is allowed to attempt to score one extra point by kicking the ball through"} +{"qid": "test2804", "pid": "12363102", "query": "how many points are scored for a touchdown in american football", "answer": "six", "passage": "\"American football\"\nthen drops and kicks it before it hits the ground. Gunners line up split outside the line and race down the field, aiming to tackle the punt returner (PR) – the player that catches the punt. Upbacks line up a short distance behind the line of scrimmage, providing additional protection to the punter. In American football, the winner is the team that has scored the most points at the end of the game. There are multiple ways to score in a football game. The touchdown (TD), worth six points, is the most valuable scoring play in American football. A touchdown"} +{"qid": "test2804", "pid": "11199493", "query": "how many points are scored for a touchdown in american football", "answer": "six", "passage": "\"1904 Michigan Wolverines football team\"\n3½ minute second half. Right halfback Clark led the scoring with four touchdowns. Weeks scored three touchdowns. Heston was limited to a single touchdown. The most lopsided score in Michigan football history. In a game consisting of 25 and 20-minute halves, the Wolverines scored 22 touchdowns and 20 extra points (which would have resulted in a margin of 152-0 under modern scoring rules). Joe Curtis alone accounted for 49 points with six touchdowns and 19 extra points. The undefeated 1904 team won Michigan's fourth national championship and scored 567 points in 476 minutes of football, averaging a point every 50.3"} +{"qid": "test2804", "pid": "19091236", "query": "how many points are scored for a touchdown in american football", "answer": "six", "passage": "\"Early history of American football\"\nof games and colorful nicknames for the game's biggest players, including Notre Dame's \"\"Four Horsemen\"\" backfield and Fordham University's linemen, known as the \"\"Seven Blocks of Granite\"\". Thorpe gained nationwide attention for the first time in 1911. He scored all his team's points—four field goals and a touchdown—in an 18–15 upset of Harvard. The 1912 season included many rule changes such as the 100-yard field and the 6-point touchdown. The first six-point touchdowns were registered in Carlisle's 50–7 win over Albright College on September 21. At season's end, Jim Thorpe had rushed for some 2,000 yards. Thorpe also competed in"} +{"qid": "test2804", "pid": "14163412", "query": "how many points are scored for a touchdown in american football", "answer": "six", "passage": "\"1884 Michigan Wolverines football team\"\nbriefly to allow the Chicago team to receive instruction on the American rules. After the break, Chicago scored a touchdown and kicked the goal to take a 6–4 lead. Michigan kicked a field goal (six points) and scored another touchdown (four points) and led 14–6 at the end of the first inning. In the second inning, Chicago scored a quick touchdown to narrow Michigan's lead to 14–10. Michigan scored a final touchdown in the second inning but missed the kick for goal. The \"\"Detroit Free Press\"\" called it a \"\"very exciting and hotly contested game,\"\" but the paper criticized the"} +{"qid": "test2804", "pid": "11370412", "query": "how many points are scored for a touchdown in american football", "answer": "six", "passage": "\"Bill Daley (American football)\"\nand power helped the Wolverines tie Purdue for the Big Ten Conference title. Daley averaged 6.8 yards per carry and scored nine touchdowns. He carried the ball 120 times, rushed for 817 yards and added another 119 yards on six punt returns. In addition to his six touchdowns, he kicked three extra points, for a total of 57 points scored. His best game came on October 2, 1943 at Evanston, Illinois, as Michigan beat Northwestern, 21-7 win. In that game, Daley gained 216 yards and scored two touchdowns in 26 carries. In his final college football game, he helped the"} +{"qid": "test2806", "pid": "17218214", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"1911 United States House of Representatives election in New Mexico\"\nArizona Territory to be admitted as a single state, but this was later removed. New Mexico was finally admitted as a state during the 62nd Congress, with 2 Representatives, which was subsequently reduced to 1 in the Apportionment Act of 1911, passed prior to New Mexico statehood. 1911 United States House of Representatives election in New Mexico New Mexico's first election to the United States House of Representatives was held on November 7, 1911 for two Representatives elected at-large for the 62nd Congress New Mexico joined the Union as the 47th state on January 6, 1912. It had been a"} +{"qid": "test2806", "pid": "17218213", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"1911 United States House of Representatives election in New Mexico\"\n1911 United States House of Representatives election in New Mexico New Mexico's first election to the United States House of Representatives was held on November 7, 1911 for two Representatives elected at-large for the 62nd Congress New Mexico joined the Union as the 47th state on January 6, 1912. It had been a territory since 1850, originally including Arizona and a portion of Nevada until 1863. New Mexico Territory and Arizona Territory had long sought statehood, and during the debates over admitting Oklahoma, and early version of the Oklahoma Enabling Act included a clause providing for New Mexico Territory and"} +{"qid": "test2806", "pid": "293519", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"New Mexico\"\nthe Revolt of 1837. At the same time, the region became more economically dependent on the United States. At the conclusion of the Mexican–American War in 1848, the United States annexed New Mexico as the U.S. New Mexico Territory. It was admitted to the Union as the 47th state on January 6, 1912. Its history has given New Mexico the highest percentage of Hispanic and Latino Americans, and the second-highest percentage of Native Americans as a population proportion (after Alaska). New Mexico is home to part of the Navajo Nation, 19 federally recognized Pueblo communities of Puebloan peoples, and three"} +{"qid": "test2806", "pid": "5387869", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"Thomas B. Catron\"\nof the largest landowners in the United States. Catron was an early advocate for New Mexico statehood, and in the early 1900s marshaled the territorial Republican Party to lobby Republicans at the national level for New Mexico's admission to the Union. When New Mexico was admitted as the 47th state in 1912, The New Mexico State Legislature elected Catron as one of the state's first U.S. Senators. Catron won the \"\"long term\"\" (four years), while Albert B. Fall won the \"\"short term\"\" (one year). Catron took office on March 27, 1912. To win election to the Senate, Catron made a"} +{"qid": "test2806", "pid": "2557370", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"New Mexico Territory\"\nof New Mexico for a half-century until admitted to the Union in 1912 as the 47th state (followed just under six weeks later by the Arizona Territory/State of Arizona, which became the 48th state, finally filling out the coast-to-coast continental expanse of the United States). As the route to California, New Mexico Territory was disputed territory during the American Civil War. Settlers in the southern part of the Territory willingly joined the Confederate States in 1861 as the newly organized Confederate Territory of Arizona, with a representative delegate to the Confederate Congress in the capital of Richmond. This territory consisted"} +{"qid": "test2806", "pid": "1158519", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"Alamogordo, New Mexico\"\nFlag; New Mexico was the 47th state admitted to the Union, and US flags were made with 47 stars only for one month, until Arizona was admitted. The Museum shop has a large collection of local history books. The Historical Society also publishes its own series of monographs on local history, \"\"Pioneer\"\". The Museum had planned to move from its location at 1301 N. White Sands Boulevard to a historic adobe building at the corner of White Sands Boulevard and Tenth Street by the end of 2008, but as of July 2009 this plan has stalled due to lack of"} +{"qid": "test2806", "pid": "12367431", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"Alamogordo Museum of History\"\nAlamogordo Museum of History The Tularosa Basin Museum of History, formerly the Tularosa Basin Historical Society Museum, is a history museum holding a collection of historical photographs, documents, and relics from Otero County, New Mexico. The museum is located in Alamogordo, New Mexico, and is owned and operated by the Tularosa Basin Historical Society. The prize item in the collection is a 47-star U. S. flag. New Mexico was admitted to the union as the 47th state on January 6, 1912, followed by Arizona as the 48th state on February 14, 1912. The Flag Act of 1818 specifies \"\"That on"} +{"qid": "test2806", "pid": "5078409", "query": "new mexico was admitted to the union as the . . . state", "answer": "47th", "passage": "\"New Mexico State Capitol\"\nwas dedicated on June 4, 1900. In this building, at 1:35 P.M., January 6, 1912, President William Taft signed the proclamation admitting New Mexico as the 47th state of the Union. He then turned to the delegation and said, \"\"Well, it is all over. I am glad to give you life. I hope you will be healthy.\"\" During the next several decades, various additions were built adjacent to the capitol building. In 1950 a major project was begun to unify the architectural appearance of all the buildings in the government complex to the Territorial Revival style. The dome, which had"} +{"qid": "test2808", "pid": "12432874", "query": "who was the first imperial power that was fighting in vietnam", "answer": "France", "passage": "\"France–Vietnam relations\"\n1954. In the four protectorates, the French formally left the local rulers in power, who were the Emperors of Vietnam, Kings of Cambodia, and Kings of Luang Prabang, but in fact gathered all powers in their hands, the local rulers acting only as heads. France stayed in Indochina during World War II, tolerated by the Japanese Army Vietnam obtained independence following the First Indochina War. In 1945, Hồ Chí Minh declared an independent Democratic Republic of Vietnam, which was recognized by the fellow Communist governments of China and the Soviet Union. Fighting lasted until March 1954, when the Việt Minh"} +{"qid": "test2808", "pid": "4816441", "query": "who was the first imperial power that was fighting in vietnam", "answer": "France", "passage": "\"Indochina Wars\"\nNorth Vietnam. Emperor Bảo Đại abdicated power to the Viet Minh, on August 25, 1945. In a popular move, Ho Chi Minh made Bảo Đại \"\"supreme adviser\"\" to the Viet Minh-led government in Hanoi, which asserted its independence on September 2 as the Democratic Republic of Vietnam (DRV) and issued a Proclamation of Independence of the Democratic Republic of Vietnam. In 1946, Vietnam had its first constitution. In 1948, France tried to regain its colonial control over Vietnam. In South Vietnam, the Japanese had surrendered to British forces, who had supported the Free French in fighting the Viet Minh, along"} +{"qid": "test2808", "pid": "4764490", "query": "who was the first imperial power that was fighting in vietnam", "answer": "France", "passage": "\"Thiệu Trị\"\nCatholic missionaries from his country could not be reconciled with a peaceful relationship with France. In 1845, this almost prompted a clash between Vietnam and the American warship USS Constitution which attempted to force Trị to free the missionary Dominique Lefèbvre, who had repeatedly come to Vietnam illegally multiple times. The French task force reached Tourane on 23 March 1847, and demanded that the safety of French nationals be assured and for Thiệu Trị to cease the persecution of missionaries. The imperial mandarins put off delivering the emperor's reply and fighting broke out. Thiệu Trị had fortified the coast, but"} +{"qid": "test2808", "pid": "10489326", "query": "who was the first imperial power that was fighting in vietnam", "answer": "France", "passage": "\"Operation Passage to Freedom\"\nthe withdrawal of Imperial Japan, which had seized control of the French colony during World War II. The military struggle started in November 1946 when France attempted to reassert control over Indochina with an attack on the northern port city of Haiphong. The DRV was recognised by the Soviet Union and the People's Republic of China (PRC). On the other hand, the western powers recognised the French-backed State of Vietnam, nominally led by Emperor Bảo Đại, but with a French-trained Vietnamese National Army (VNA) which was loyal to the French Union forces. In May 1954, after eight years of fighting,"} +{"qid": "test2809", "pid": "2705311", "query": "where is the bread plate located in a formal setting", "answer": "at each place", "passage": "\"Table setting\"\nfork, later the dinner fork and the dinner knife). The blades of the knives are turned toward the plate. Glasses are placed an inch (2.5 cm) or so above the knives, also in the order of use: white wine, red wine, dessert wine, and water tumbler. The most formal dinner is served from the kitchen. When the meal is served, in addition to the central plate (a service plate or dinner plate at supper; at luncheon, a service plate or luncheon plate) at each place there are a bread roll (generally on a bread plate, sometimes in the napkin), napkin,"} +{"qid": "test2810", "pid": "4858285", "query": "when did the movie varsity blues come out", "answer": "1999", "passage": "\"Varsity Blues (film)\"\nearly 1999, Paramount Pictures was sued by the University of Toronto for trademark infringement, as Varsity Blues is the registered trademark and name of the University's intercollegiate athletic teams. The University alleged that the movie conveyed a poor depiction and negative stereotypes of collegiate sports, and asserted that the University did not wish to be associated with such a production. Bruce Kidd, Dean of the Faculty of Physical and Health Education, further noted that the movie demonstrated an abusive approach to sports in an educational setting. An out-of-court settlement was reached between the two parties, which involved Paramount providing the"} +{"qid": "test2810", "pid": "3207798", "query": "when did the movie varsity blues come out", "answer": "1999", "passage": "\"Ali Larter\"\n\"\"Suddenly Susan\"\", and the short-lived series \"\"Chicago Sons\"\". These roles were followed by a number of other appearances on \"\"Dawson's Creek\"\", \"\"Chicago Hope\"\", and \"\"Just Shoot Me!\"\" In 1999, Larter made her film debut in the coming-of-age dramedy \"\"Varsity Blues\"\", which re-united her with \"\"Dawson's Creek\"\" star James Van Der Beek and close friend Amy Smart. Smart had persuaded Larter to audition for the movie, in which she played Darcy Sears, a love interest for one of the main characters. \"\"Varsity Blues\"\" drew a domestic box office gross of US$53 million. Also in 1999, she made supporting appearances in the"} +{"qid": "test2810", "pid": "4858287", "query": "when did the movie varsity blues come out", "answer": "1999", "passage": "\"Varsity Blues (film)\"\nTexas. As a result, movie theaters in Stephenville refused to show the movie. The soundtrack album was published by Hollywood Records. On August 16, 2016, \"\"CMT\"\" is developing a TV series inspired by the film. Varsity Blues (film) Varsity Blues is a 1999 American comedy-drama film directed by Brian Robbins that follows a small-town 3A high school football team and their overbearing coach through a tumultuous season. The players must deal with the pressures of adolescence and their football-obsessed community while having their hard coach on their back constantly. In the small (fictional) town of West Canaan, Texas, football is"} +{"qid": "test2810", "pid": "7484172", "query": "when did the movie varsity blues come out", "answer": "1999", "passage": "\"Ron Lester\"\nmovie \"\"Good Burger\"\" in 1997. In 1999 Lester played the role of Billy Bob in the film Varsity Blues, which would become the role he is most known for. That year he also recurring roles on two TV drama comedies, \"\"Freaks and Geeks\"\" and \"\"Popular\"\". He also appeared in \"\"Not Another Teen Movie\"\", which parodied his role in \"\"Varsity Blues\"\". In 2001, Lester underwent gastric bypass surgery, losing . Obese since childhood, at his heaviest, he weighed . According to interviews, he flatlined during the operation. After the gastric bypass, he had 18 plastic surgeries to remove excess skin. In"} +{"qid": "test2810", "pid": "12422547", "query": "when did the movie varsity blues come out", "answer": "1999", "passage": "\"Bikini in popular culture\"\nicon status, spawning various spoofs and parodies (notably the episode of \"\"Friends\"\", \"\"The One with the Princess Leia Fantasy\"\"). Actresses fighting in bikinis in movies like \"\"\"\" and \"\"Blue Crush\"\" have made the two-piece, according to Gina Bellafonte of \"\"The New York Times\"\", \"\"the millennial equivalent of the power suit.\"\" The \"\"Full Throttle\"\" scene showing actress Demi Moore walking out of the ocean wearing a bikini was credited with reviving her career. In the film \"\"Varsity Blues\"\" (1999), Ali Larter attempts to seduce James Van Der Beek sporting a \"\"bikini\"\" made of whipped cream over her otherwise naked body. In"} +{"qid": "test2812", "pid": "2344877", "query": "when do wood thrushes fly when they are migrating", "answer": "in the winter", "passage": "\"Wood thrush\"\nmigrates to southern Mexico through to Panama in Central America in the winter, mostly in the lowlands along the Atlantic and Pacific coasts. It generally arrives on the U.S. Gulf Coast during the first week of April. Fall migration usually begins in mid-August and continues through mid-September. Migration takes place at night, allowing them to find their direction from the stars and orient themselves by detecting the Earth's magnetic field. The wood thrush prefers deciduous and mixed forests for breeding. It prefers late-successional, upland mesic forests with a moderately-dense shrub layer. Robert I. Bertin (1977) found that this thrush favors"} +{"qid": "test2812", "pid": "2344880", "query": "when do wood thrushes fly when they are migrating", "answer": "in the winter", "passage": "\"Wood thrush\"\nthrush's decline. Continued destruction of primary forest in Central America eliminated preferred wood thrush wintering habitats, likely forcing the birds to choose secondary habitats where mortality rates are higher. In spite of this, the wood thrush is considered to be near threatened. The wood thrush has been recorded twice as a vagrant in Europe, in Iceland at Kvísker in Öræfi East Skaftafellssýsla by Björnsson Hálfdán on 23 October 1967 and on Wingletang Down, St Agnes, Isles of Scilly, England on 7 October 1987. The wood thrush is primarily solitary, but occasionally forms mixed-species flocks in the winter. Its breeding territory"} +{"qid": "test2812", "pid": "2344881", "query": "when do wood thrushes fly when they are migrating", "answer": "in the winter", "passage": "\"Wood thrush\"\nranges from in size, and are used for nesting, gathering nest materials, and foraging. Some wood thrushes also defend a feeding territory in the winter. Territorial interactions are usually settled without physical contact, but in high-intensity encounters or nest defense, physical interactions with the feet or bill have been observed. Defense behaviors in response to nest predators include wing flicks, tail flicks, and raising the crest, sometimes escalating to dives and strikes. This species has also been observed displaying a behavior known as \"\"anting.\"\" Anting occurs when a bird picks up a single ant or group of ants and rubs"} +{"qid": "test2814", "pid": "4615475", "query": "who sponsored the phoenix open before waste management", "answer": "Friedman Billings Ramsey", "passage": "\"Phoenix Open\"\nPhoenix Open The Phoenix Open (known as the Waste Management Phoenix Open for title sponsorship reasons) is a professional golf tournament on the PGA Tour, held in late January/early February at the Tournament Players Club (TPC) of Scottsdale, Arizona. The tournament was originally the Arizona Open, but was known for most of its history as the Phoenix Open until the investment bank Friedman Billings Ramsey became the title sponsor in October 2003, and it was known as the FBR Open for the next six editions. Waste Management began its sponsorship in 2010. The event's relaxed atmosphere, raucous by the standards"} +{"qid": "test2815", "pid": "10282675", "query": "when did australia 2 win the america's cup", "answer": "1983", "passage": "\"1983 America's Cup\"\n1983 America's Cup The 1983 America's Cup was the occasion of the first winning challenge to the New York Yacht Club, which had successfully defended the cup over a period of 132 years. An Australian syndicate representing the Royal Perth Yacht Club fielded the \"\"Australia II\"\", skippered by John Bertrand, against defender \"\"Liberty\"\", skippered by Dennis Conner. \"\"Australia II\"\" won the match races to win the America's Cup, ending the longest winning streak in sporting history and ending U.S. domination of the racing series. Skippered by team principal Dennis Conner, \"\"Liberty\"\" won all the Defender trials and on September 2,"} +{"qid": "test2815", "pid": "7419883", "query": "when did australia 2 win the america's cup", "answer": "1983", "passage": "\"Royal Perth Yacht Club\"\nMelville Water in 1953 when the William Street site, through siltation, became unusable. RPYC fielded the yacht Southern Cross in the 1974 America's Cup, the first aluminium yacht to compete in the regatta, and the yacht Australia in the 1977 America's Cup and the 1980 America's Cup. In 1983 an Australian syndicate representing the Royal Perth Yacht Club fielded the \"\"Australia II\"\", skippered by John Bertrand, against defender \"\"Liberty\"\", skippered by Dennis Conner. \"\"Australia II\"\" won the match races to win the America's Cup - the first winning challenge to the New York Yacht Club, which had successfully defended the"} +{"qid": "test2815", "pid": "20260645", "query": "when did australia 2 win the america's cup", "answer": "1983", "passage": "\"Grant Simmer\"\nGrant Simmer Grant Simmer (born 1957) is an Australian sailor and yacht designer who has competed in multiple America's Cups. He sailed as navigator on \"\"Australia II\"\" when it won the 1983 America's Cup. He stayed with Alan Bond's syndicate and was navigator on \"\"Australia IV\"\" during the 1987 Defender Selection Series. He was a co-owner of North Sails Australia for 17 years until, in 2000, Simmer joined Alinghi as managing director and head of design. He helped design their winning 2003 and 2007 America's Cup boats as well as \"\"Alinghi 5\"\" for the 2010 America's Cup defence. In 2010,"} +{"qid": "test2815", "pid": "16623067", "query": "when did australia 2 win the america's cup", "answer": "1983", "passage": "\"Kirk Cooper\"\nII won the Cup. 1983 America's Cup was the occasion of the first winning challenge to the New York Yacht Club, which had successfully defended the cup over a period of 132 years. An Australian syndicate representing the Royal Perth Yacht Club fielded the Australia II, skippered by John Bertrand against defender Liberty, skippered by Dennis Conner, won the match races to win the America's Cup, ending the longest winning streak in sporting history and ending U.S. domination of the racing series. Alan Bond arrived at Newport with Australia II, billed as one of the biggest threats to American dominance"} +{"qid": "test2817", "pid": "10878256", "query": "who is hosting e live from the red carpet", "answer": "Ryan Seacrest", "passage": "\"Live from the Red Carpet\"\nLive from the Red Carpet Live From the Red Carpet is the pre-show to the major award shows that airs on E! Entertainment Television. Live From the Red Carpet covers celebrity arrivals and gets you right up for a first-row seat to see the stars and all the excitement with live coverage of the fashion, flair, glitz and glamour. The show is hosted by Ryan Seacrest and Giuliana Rancic. The program airs the day of every major award show (Primetime Emmy Awards, Golden Globe Award, Academy Awards, Screen Actors Guild Awards and Grammy Awards) and have three other programs that"} +{"qid": "test2817", "pid": "9630563", "query": "who is hosting e live from the red carpet", "answer": "Ryan Seacrest", "passage": "\"Ryan Seacrest\"\nMcCarthy, who had co-hosted for eight years. In January 2006, US cable channel E! announced a three-year, $21 million deal for Seacrest to host various programs, including \"\"E! News\"\" and its red carpet awards show coverages (E!'s signature piece of original programming). In April 2012, Seacrest signed a deal with NBCUniversal expanding his on-air role beyond E! to NBC. He contributed to the \"\"Today Show,\"\" Olympics coverage, entertainment programming, as well as news and other special events. Seacrest will remain managing editor of \"\"E! News\"\" and host and produce its red carpet awards show coverage. In September 2012, Seacrest left"} +{"qid": "test2817", "pid": "9577254", "query": "who is hosting e live from the red carpet", "answer": "Ryan Seacrest", "passage": "\"Ross Mathews\"\n\"\"The Howard Stern Show\"\" and the 2009 Game Show Awards with Diane Mizota. In 2010, Mathews joined the E! Network's red carpet team, filling in for Ryan Seacrest as co-host with Giuliana Rancic for E! Live From the Red Carpet coverage of the 2011 Screen Actors Guild Awards, the 2010 Emmy Awards, the 2011 Golden Globe Awards, and the 2011 Academy Awards. In January 2011, Mathews starred in a pilot that he produced and co-wrote with fellow \"\"Chelsea Lately\"\" round table regular Heather McDonald. Titled \"\"Love or Hate\"\", the pilot was made for the E! Network and was executive produced"} +{"qid": "test2817", "pid": "13181608", "query": "who is hosting e live from the red carpet", "answer": "Ryan Seacrest", "passage": "\"Catt Sadler\"\n\"\"Knocked Up\"\", and appeared on \"\"General Hospital\"\" and \"\"Night Shift\"\". She also starred in the Red Jumpsuit Apparatus music video, \"\"You Better Pray\"\", playing the dancing librarian. In 2010, Sadler joined the extended hour-long \"\"E! News\"\" show with Ryan Seacrest and Giuliana Rancic. She also serves as host of several E! \"\"Live from the Red Carpet\"\" events, covering the Academy Awards, Golden Globes, Emmys, and more. In May 2017, E! News launched a new daytime talk show called \"\"Daily Pop\"\", with Sadler as one of three hosts. In December 2017, Sadler left E! News after learning that her co-host Jason"} +{"qid": "test2817", "pid": "9630566", "query": "who is hosting e live from the red carpet", "answer": "Ryan Seacrest", "passage": "\"Ryan Seacrest\"\nreplacing long-time host Rick Dees. The show, \"\"On Air With Ryan Seacrest,\"\" is broadcast live, from 6am to 10am Pacific Time, at ABC studios in New York. Seacrest's three-year hosting deal with E! included producing credits on various programs, including \"\"E! News\"\" and its red carpet awards show coverages. That same year, Seacrest launched Ryan Seacrest Productions (RSP); in August 2008, Seacrest named his longtime William Morris Agent, Adam Sher, as CEO. Comcast had first-look rights for all RSP shows through January 2012. Clear Channel acquired a minority stake in RSP in early 2012, but the company no longer has"} +{"qid": "test2817", "pid": "6967826", "query": "who is hosting e live from the red carpet", "answer": "Ryan Seacrest", "passage": "\"Giuliana Rancic\"\nnamed anchor of E! network's \"\"E! News\"\". On March 13, 2006, she was joined by co-anchor Ryan Seacrest. Additionally, she co-hosts E!'s \"\"Fashion Police\"\" and often co-hosts red carpet events for award shows, such as the Golden Globes and the Academy Awards. She is the creator and executive producer of MTV's \"\"Celebrity Rap Superstar\"\", which premiered in 2007. She and her husband, Bill Rancic, star in the reality-television show \"\"Giuliana and Bill\"\" which aired on E!. She appeared in the movie \"\"\"\" in a brief scene. Rancic also has hosted the Miss USA and Miss Universe beauty pageants on NBC."} +{"qid": "test2818", "pid": "15344255", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Bride of Chucky\"\non an A+ to F scale. The film was followed by \"\"Seed of Chucky\"\" in 2004, \"\"Curse of Chucky\"\" in 2013 and \"\"Cult of Chucky\"\" in 2017. Bride of Chucky Bride of Chucky is a 1998 American comedy slasher film, the fourth installment of the \"\"Child's Play\"\" franchise and sequel to 1991's \"\"Child's Play 3\"\". The film is written by Don Mancini and directed by Ronny Yu, and stars Jennifer Tilly (who plays and voices the title character Tiffany) and Brad Dourif (who voices Chucky), as well as John Ritter, Katherine Heigl and Nick Stabile. Unlike the first three \"\"Child's"} +{"qid": "test2818", "pid": "11131844", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Child's Play (franchise)\"\nof that story. Mancini stated that besides the TV series, feature films will still continue to be developed. By June of the same year, it was confirmed that Brad Dourif would return for the 8-part series to voice Charles Lee \"\"Chucky\"\" Ray. On the home media DVD and Blu-ray release of \"\"Seed of Chucky\"\" in 2005, a short film entitled \"\"Chucky's Vacation Slides\"\" was included in the special features. The short, set during the events of \"\"Seed of Chucky\"\", follows Chucky, Tiffany, and Glen after having returned from a family vacation. The film implies that the events of \"\"Seed of"} +{"qid": "test2818", "pid": "2833024", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Child's Play 3\"\nUnited Kingdom when it was suggested it might have inspired the real-life murder of British child James Bulger and the murder of Suzanne Capper, suggestions rejected by officers investigating both cases. The film was followed by \"\"Bride of Chucky\"\", \"\"Seed of Chucky\"\", \"\"Curse of Chucky\"\" and \"\"Cult of Chucky\"\". In September 1998, Eight years after Chucky's second demise, the Play Pals company has recovered from bad publicity brought along by Chucky's (voiced by Brad Dourif) murder spree and resumes manufacturing of the Good Guy dolls. The company revives the abandoned factory (where Chucky's mutilated body still remains) and starts releasing"} +{"qid": "test2818", "pid": "11131846", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Child's Play (franchise)\"\nof short film videos were released. The clips showed Chucky interrupting the events of several other horror films. Brad Dourif and Edan Gross reprised their roles as Chucky and the Good Guy Doll, respectively. Joe Renzetti composed the first \"\"Child’s Play\"\", followed by Graeme Revell, who composed the soundtrack for \"\"Child’s Play 2\"\" and \"\"Bride of Chucky\"\". John D'Andrea and Cory Lerios wrote the score for \"\"Child’s Play 3\"\", while Pino Donaggio composed \"\"Seed of Chucky\"\". Joseph LoDuca composed the score for \"\"Curse of Chucky\"\" and \"\"Cult of Chucky\"\". The following crimes have been associated with the \"\"Child’s Play\"\" films:"} +{"qid": "test2818", "pid": "15344244", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Bride of Chucky\"\nBride of Chucky Bride of Chucky is a 1998 American comedy slasher film, the fourth installment of the \"\"Child's Play\"\" franchise and sequel to 1991's \"\"Child's Play 3\"\". The film is written by Don Mancini and directed by Ronny Yu, and stars Jennifer Tilly (who plays and voices the title character Tiffany) and Brad Dourif (who voices Chucky), as well as John Ritter, Katherine Heigl and Nick Stabile. Unlike the first three \"\"Child's Play\"\" films, this film takes a markedly humorous turn and often into self-referential parody. It does not continue on with the concept of a child victim in"} +{"qid": "test2818", "pid": "11131852", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Child's Play (franchise)\"\nUniversal Studios \"\"Halloween Horror Nights\"\", entitled, \"\"Chucky's In-Your-Face Insults\"\" and \"\"Chucky's Insult Emporium\"\". In 2009, the climax of \"\"Child’s Play 3\"\" received its own maze, entitled \"\"Chucky's Fun House\"\". \"\"Curse of Chucky\"\" has also received its own scarezone in the 2013 lineup. In 2017, Chucky played host to the Titans of Terror Tram which featured iconic horror villains Leatherface, Freddy Krueger, and Jason Voorhees. Child's Play (franchise) Child's Play (also called Chucky) is an American horror franchise centered on a series of seven films created by Don Mancini. The films mainly focus on Chucky (voiced by Brad Dourif), a notorious"} +{"qid": "test2818", "pid": "19929697", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Cult of Chucky\"\nas Tiffany and Summer H. Howell as Alice. Each of them was featured in previous films, with Brad Dourif in all of them, Vincent in \"\"Child's Play\"\" (1988) and \"\"Child's Play 2\"\", Tilly in \"\"Bride of Chucky\"\" (1998) and \"\"Seed of Chucky\"\", and Fiona Dourif and Howell in \"\"Curse of Chucky\"\" (2013). \"\"Cult of Chucky\"\" marks Vincent's first principal role in the franchise since he was a child actor, in \"\"Child's Play 2\"\", twenty-seven years prior. Although Andy appeared in \"\"Child's Play 3\"\", he was played by a different actor, Justin Whalin, due to the events taking place eight years"} +{"qid": "test2818", "pid": "5341309", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Chucky (character)\"\nfilm \"\"Bride of Chucky\"\". He was created by writer-director Don Mancini and is portrayed and voiced by Brad Dourif in both live-action and voice-over. Chucky made his first appearance in the 1988 film \"\"Child's Play\"\". In the film, serial killer Charles Lee Ray (Brad Dourif) uses a voodoo ritual to transfer his soul into a Good Guy doll in an effort to escape capture. Now living in the form of the animated doll, Chucky (voiced by Dourif) is given to young Andy Barclay (Alex Vincent) and begins terrorizing the family. Chucky made his second appearance in the 1990 sequel, \"\"Child's"} +{"qid": "test2818", "pid": "15344245", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Bride of Chucky\"\npossession of the doll, thus the absence of \"\"Child's Play\"\" in the title. From this entry and onward, \"\"Chucky\"\" became the official brand name of the film. Instead, the film focuses entirely on the doll characters as antiheroes. It was followed by \"\"Seed of Chucky\"\" in 2004. It is the last film in the series to be released by Universal Pictures until \"\"Curse of Chucky\"\". In October 1998, One month after being dismembered in a fan, Tiffany (Jennifer Tilly), a former girlfriend and accomplice of serial killer Charles Lee Ray (Brad Dourif), acquires Chucky's remains from a police compound. Believing"} +{"qid": "test2818", "pid": "2833040", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Child's Play 3\"\nhas been slated to receive its own scarezone in the 2013 lineup. Since 1992, Chucky has starred in his own shows, \"\"Chucky's In-Your-Face Insults\"\" and \"\"Chucky's Insult Emporium\"\". Child's Play 3 Child's Play 3 is a 1991 American slasher film and the third installment in the \"\"Child's Play\"\" film series. The film is written by Don Mancini, and directed by Jack Bender, with Brad Dourif returning as the voice of Chucky. Although released only nine months later, the story takes place eight years following the events of 1990's \"\"Child's Play 2\"\" and one month before the events of its following"} +{"qid": "test2818", "pid": "2833183", "query": "who plays the voice of chucky in seed of chucky", "answer": "Brad Dourif", "passage": "\"Child's Play 2\"\nfollowed by \"\"Child's Play 3\"\" In June 1990, two years after the murderous doll was destroyed by the Barclays and the Detective Norris, Chucky (voiced by Brad Dourif) is resurrected by the PlayPals company to prove there is no fault with the dolls. As a result of Andy Barclay (Alex Vincent) blaming Chucky for the murders committed, the company has suffered. One of the men working on Chucky is killed by electrocution. As a result, the CEO of the company, Mr. Sullivan (Peter Haskell), orders his assistant Mattson (Greg Germann) to cover the accident and get rid of Chucky. Meanwhile,"} +{"qid": "test2819", "pid": "20365425", "query": "when does season 8 for blue bloods start", "answer": "September 29, 2017", "passage": "\"Blue Bloods (season 8)\"\nbetween Seasons 7 and 8. Marisa Ramirez, as Danny's partner Detective Maria Baez, and Vanessa Ray, as Jamie's partner Eddie Janko, continue to receive \"\"also starring\"\" billing for season 8. Appearing regularly and receiving \"\"special guest star\"\" billing are Gregory Jbara as Deputy Commissioner of Public Information Garrett Moore, Robert Clohessy as Lt. Sidney Gormley, and Abigail Hawk as Detective Abigail Baker, Frank's primary aide. Blue Bloods (season 8) The eighth season of \"\"Blue Bloods\"\", a police procedural drama series created by Robin Green and Mitchell Burgess, premiered on CBS on September 29, 2017. The season contained 22 episodes"} +{"qid": "test2819", "pid": "20365424", "query": "when does season 8 for blue bloods start", "answer": "September 29, 2017", "passage": "\"Blue Bloods (season 8)\"\nBlue Bloods (season 8) The eighth season of \"\"Blue Bloods\"\", a police procedural drama series created by Robin Green and Mitchell Burgess, premiered on CBS on September 29, 2017. The season contained 22 episodes and concluded on May 11, 2018. Donnie Wahlberg (Danny Reagan), Bridget Moynahan (Erin Reagan), Will Estes (Jamie Reagan), and Len Cariou (Henry Reagan) are first credited. Sami Gayle (Nicky Reagan-Boyle) is credited next, marking the fourth season she has been included in the opening credits. Tom Selleck (Frank Reagan) receives an \"\"and\"\" billing at the close of the main title sequence. Amy Carlson (Linda Reagan) left"} +{"qid": "test282", "pid": "4620587", "query": "who is the presiding officer of legislative council in india", "answer": "Chairman", "passage": "\"Member of the Legislative Assembly (India)\"\nthe Presiding officers of the Lok Sabha and the Rajya Sabha, the Legislative Assembly and the Legislative Council also have Presiding Officers. The Legislative Assembly has a Speaker and a Deputy Speaker and the Legislative Council has a Chairman and a Deputy Chairman. They are elected from among the members of the House. Member of the Legislative Assembly (India) A Member of Legislative Assembly (MLA) is a representative elected by the voters of an electoral district (constituency) to the legislature of the State government in the Indian system of government. Member of the Legislative Assembly (MLA) are elected by the"} +{"qid": "test282", "pid": "8947567", "query": "who is the presiding officer of legislative council in india", "answer": "Chairman", "passage": "\"Tamil Nadu Legislative Council\"\nappointed by the Governor himself. The presidents who came after them were chosen by the Council itself. During 1937-86, the presiding officer was called as the \"\"Chairman of the Council\"\". The following table lists the presiding officers of the Council. Tamil Nadu Legislative Council Tamil Nadu Legislative Council is the upper house of the bicameral legislature of the Indian state of Tamil Nadu. It began its existence as Madras Legislative Council, the first provincial legislature for Madras Presidency. It was initially created as an advisory body in 1861, by the British colonial government. It was established by the first Indian"} +{"qid": "test282", "pid": "12640002", "query": "who is the presiding officer of legislative council in india", "answer": "Chairman", "passage": "\"Uttar Pradesh Legislative Council\"\nand re-nomination any number of times. The Presiding Officers of Vidhan Parishad are Chairman and Deputy Chairman. Ramesh Yadav is the current Chairman of the Uttar Pradesh Legislative Council. \"\"See here the List of members of the Uttar Pradesh Legislative Council\"\" The following are the constituencies of the Uttar Pradesh Vidhan Parishad: The following are the present nominated Members of Legislative Council: Uttar Pradesh Legislative Council The Uttar Pradesh Legislative Council or the Uttar Pradesh Vidhan Parishad is the upper house of the bicameral legislature of Uttar Pradesh state in northern India. Uttar Pradesh is one of the seven states"} +{"qid": "test2820", "pid": "561817", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "Peloponnese\n2016, Lonely Planet voted the Peloponnese the top spot of their Best in Europe list. The Peloponnese is a peninsula that covers an area of some and constitutes the southernmost part of mainland Greece. While technically it may be considered an island since the construction of the Corinth Canal in 1893, like other peninsulas that have been separated from their mainland by man-made bodies of waters, it is rarely, if ever, referred to as an \"\"island\"\". It has two land connections with the rest of Greece, a natural one at the Isthmus of Corinth, and an artificial one by the"} +{"qid": "test2820", "pid": "9760444", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Akanthos (Greece)\"\nAkanthos (Greece) Akanthos (; ) was an ancient Greek city on the Athos peninsula, on the narrow neck of land between the sacred mountain and the mainland, to the northwest of the Xerxes Canal. It was founded in the 7th century BCE as a colony of Andros, itself a colony of Chalcis in Euboea. Chalcidice was multi-cultural. The archaeology of the region suggests that some Hellenes were already there. The site is on the north-east side of Akti, on the most eastern peninsula of Chalcidice. The ancient city extended along a ridge comprising three hills bordering the south-east of modern"} +{"qid": "test2820", "pid": "3049029", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Isthmus of Corinth\"\nthe Greek government to protect this archaeological site. The Hexamilion wall is a Roman defensive wall constructed across the Isthmus of Corinth guarding the only land route into the Peloponnese peninsula from mainland Greece. Isthmus of Corinth The Isthmus of Corinth is the narrow land bridge which connects the Peloponnese peninsula with the rest of the mainland of Greece, near the city of Corinth. The word \"\"isthmus\"\" comes from the Ancient Greek word for \"\"neck\"\" and refers to the narrowness of the land. The Isthmus was known in the ancient world as the landmark separating the Peloponnese from mainland Greece."} +{"qid": "test2820", "pid": "17734388", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Charlestown Neck\"\nCharlestown Neck The Charlestown Neck was an isthmus connecting the formerly independent city of Charlestown, Massachusetts to the mainland at present-day Sullivan Square in Middlesex County. When Charlestown was first settled by British colonists it was surrounded on nearly all sides by water. Only a small strip of land called \"\"the neck\"\" connected what is now Charlestown to what would become Somerville. As with Boston's founding on the Shawmut Peninsula, Charlestown was originally settled on a small peninsula (Indian name Mishawum) accessible by land only via a small isthmus. While Charlestown was then largely separated from the mainland by an"} +{"qid": "test2820", "pid": "2630450", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Mare Island\"\nMare Island Mare Island is a peninsula in the United States in the city of Vallejo, California, about northeast of San Francisco. The Napa River forms its eastern side as it enters the Carquinez Strait juncture with the east side of San Pablo Bay. Mare Island is considered a peninsula because no full body of water separates this or several other named \"\"islands\"\" from the mainland. Instead, a series of small sloughs cause seasonal water-flows among the so-called islands. Mare Island is the largest of these at about long and a mile wide. In 1775, Spanish explorer Perez Ayala was"} +{"qid": "test2820", "pid": "19760927", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "Peninsula\nPeninsula A peninsula ( from ' \"\"almost” and ' \"\"island\"\") is a piece of land surrounded by water on the majority of its border while being connected to a mainland from which it extends. The surrounding water is usually understood to be continuous, though not necessarily named as a single body of water. Peninsulas are not always named as such; one can also be a headland, cape, island promontory, bill, point, or spit. A point is generally considered a tapering piece of land projecting into a body of water that is less prominent than a cape. A river which courses"} +{"qid": "test2820", "pid": "16682285", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Ekkerøy\"\nwas originally an island; however, it is now joined to the Varanger peninsula by a narrow isthmus of land. At the mainland end of the isthmus the small hamlet of Valen is located. The headland on the northern tip of Ekkerøy is called \"\"Varnes\"\" and its eastern tip is called \"\"Skagodden\"\". The bay on the northeastern side of the neck which joins Ekkerøy to the mainland is called \"\"Yttersida\"\" and that on the southwestern side is called \"\"Innersida\"\". Ekkerøy is one of the few places in Finnmark where pre-World War II buildings can be seen. When the German army retreated"} +{"qid": "test2820", "pid": "3049024", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Isthmus of Corinth\"\nIsthmus of Corinth The Isthmus of Corinth is the narrow land bridge which connects the Peloponnese peninsula with the rest of the mainland of Greece, near the city of Corinth. The word \"\"isthmus\"\" comes from the Ancient Greek word for \"\"neck\"\" and refers to the narrowness of the land. The Isthmus was known in the ancient world as the landmark separating the Peloponnese from mainland Greece. In the first century AD the geographer Strabo noted a stele on the Isthmus of Corinth, which bore two inscriptions. One towards the East, i.e. towards Megara, reading: \"\"\"\"Here is not Peloponnesus, but Ionia\"\"\"\""} +{"qid": "test2820", "pid": "8405218", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"King County Water Taxi\"\nKing County Water Taxi The King County Water Taxi is a passenger-only fast ferry service operated by the King County Department of Transportation Marine Division. It operates two routes between Downtown Seattle and West Seattle or Vashon Island. West Seattle is the oldest neighborhood and the birthplace of the city of Seattle. It is surrounded on three sides by water and has both enjoyed and suffered its isolation from the \"\"mainland\"\" of downtown Seattle. Between 1850 and 1930, hundreds of small, steam-powered ferries called the Mosquito Fleet of steam powered boats carried travelers to and from numerous islands and peninsulas"} +{"qid": "test2820", "pid": "1018276", "query": "mainland greece is a body of land with water on three sides called", "answer": "peninsula", "passage": "\"Coronado, California\"\nis water. Geographically, Coronado is a peninsula or a \"\"tied island\"\"; since the completion of a road to the mainland, it is no longer an \"\"island\"\". Coronado is connected to the mainland by a strip of land called the Silver Strand. The Silver Strand, Coronado and North Island (again, not an island), form San Diego Bay. Since recorded history, Coronado was mostly separated from North Island by a shallow inlet of water called the Spanish Bight. The development of North Island by the United States Navy prior to and during World War II led to the filling of the bight"} +{"qid": "test2821", "pid": "1626387", "query": "where did the jungle book story come from", "answer": "English author Rudyard Kipling", "passage": "\"The Jungle Book\"\nanimation and its 2016 remake, and the 1989 Japanese anime \"\"Jungle Book Shonen Mowgli\"\". Stuart Paterson wrote a stage adaptation in 2004, first produced by the Birmingham Old Rep in 2004 and published in 2007 by Nick Hern Books. The Jungle Book The Jungle Book (1894) is a collection of stories by the English author Rudyard Kipling. Most of the characters are animals such as Shere Khan the tiger and Baloo the bear, though a principal character is the boy or \"\"man-cub\"\" Mowgli, who is raised in the jungle by wolves. The stories are set in a forest in India;"} +{"qid": "test2823", "pid": "17668366", "query": "when does middle-earth shadow of mordor come out", "answer": "September 2014", "passage": "\"Middle-earth: Shadow of Mordor\"\nmust declare sponsored advertising in the future. The game's sequel, \"\"Middle-earth: Shadow of War\"\", was announced in February 2017. The sequel was developed by Monolith Productions and published by Warner Bros. It was released Worldwide on October 10, 2017. Middle-earth: Shadow of Mordor Middle-earth: Shadow of Mordor is an open world action role-playing video game developed by Monolith Productions and published by Warner Bros. Interactive Entertainment. The game was released for Microsoft Windows, PlayStation 4, and Xbox One in September 2014 and PlayStation 3 and Xbox 360 in November 2014. An original non-canon story set in the legendarium created by"} +{"qid": "test2823", "pid": "17668323", "query": "when does middle-earth shadow of mordor come out", "answer": "September 2014", "passage": "\"Middle-earth: Shadow of Mordor\"\nMiddle-earth: Shadow of Mordor Middle-earth: Shadow of Mordor is an open world action role-playing video game developed by Monolith Productions and published by Warner Bros. Interactive Entertainment. The game was released for Microsoft Windows, PlayStation 4, and Xbox One in September 2014 and PlayStation 3 and Xbox 360 in November 2014. An original non-canon story set in the legendarium created by J. R. R. Tolkien, the game takes place between the events of \"\"The Hobbit\"\" and \"\"The Lord of the Rings\"\". The player controls Talion, a Ranger who bonds with the wraith of the Elf Lord Celebrimbor, as the two"} +{"qid": "test2824", "pid": "20520121", "query": "when does the black panther movie soundtrack come out", "answer": "February 9, 2018", "passage": "\"Black Panther (soundtrack)\"\ncalled \"\"King's Dead\"\" was released later in the month. On February 2, \"\"Pray for Me\"\" by Lamar and The Weeknd was released as the album's third single. Lamar's soundtrack was released as \"\"Black Panther: The Album\"\" on February 9, 2018. The album features artwork by Nikolas A. Draper-Ivey, an artist known online for his fan art based on Disney intellectual property such as Black Panther and Spider-Man. Draper-Ivey was surprised when he was approached about providing artwork for the album by Interscope Records, but was excited to join the project and produced an initial mock-up within a day. He then"} +{"qid": "test2824", "pid": "17803088", "query": "when does the black panther movie soundtrack come out", "answer": "February 9, 2018", "passage": "\"Black Panther (film)\"\nsongs that are heard in the film as well as others that are inspired by it, with the other artists featured the majority of \"\"top-billing names\"\" under Top Dawg Entertainment. Göransson collaborated with Lamar and producer Sounwave on the soundtrack. Three singles from the album were released throughout January and February 2018: \"\"All the Stars\"\", \"\"King's Dead\"\", and \"\"Pray for Me\"\". \"\"Black Panther: The Album\"\" was released on February 9, 2018, while a soundtrack of Göransson's score was released on February 16. An extended play titled \"\"Black Panther: Wakanda Remixed\"\", featuring remixes of five cues from Göransson's score, was released"} +{"qid": "test2826", "pid": "9668234", "query": "created propaganda to support the war effort & encourage the sale of war bonds", "answer": "the government", "passage": "\"American propaganda during World War II\"\npropaganda posters than any other country fighting in World War II. Almost 200,000 different designs were printed during the war. These posters used a number of themes to encourage support for the war, including conservation, production, recruiting, home efforts and secrecy. Posters were usually placed in areas without paid advertisements. The most common areas were post offices, railroad stations, schools, restaurants and retail stores. Smaller posters were printed for the windows of private homes and apartment buildings. These were places where other propaganda media couldn't be used. The Office of War Information (OWI) Bureau of Graphics was the government agency"} +{"qid": "test2826", "pid": "2410901", "query": "created propaganda to support the war effort & encourage the sale of war bonds", "answer": "the government", "passage": "\"War bond\"\nway of comparison, total federal expenditures in 1913 were only $), these programs became vital as a way to raise funds.\"\" Through the selling of Liberty Bonds, the government raised $ for the war effort. The majority of sales were not to individuals but to banks and financial groups that ignored the patriotic appeal and bought the bonds principally as an investment opportunity. The bond campaigns themselves proved relatively ineffective at gaining widespread public support. The majority of Americans were simply uncomfortable converting a significant portion of their savings into what was, for them, a new and uncertain form of"} +{"qid": "test2827", "pid": "9931790", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "Melchom\nMelchom Melchom is a demon or spirit in the Dictionnaire Infernal. It is the god or idol of the Ammonites, otherwise called Moloch, and Melech: which in Hebrew signifies a king, and Melchom signifies their unearthly king. Their king referring to Melchom, their unholy idol. The Jamieson-Fausset-Brown Bible Commentary reads: \"\"The Ammonite god is said to do what they do, namely, occupy the Israelite land of Gad. To Jehovah, the theocratic \"\"King\"\" of Israel, the land belonged of right; so that their Molech or Melchom was an usurper-king.\"\" This statement applies that, while the ammomites lived in Gad, so did"} +{"qid": "test2827", "pid": "13141737", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "Gehenna\nthrough the fire to Molech.\"\" (2 Kings 23). A minority of scholars have attempted to argue that the Bible does not portray actual child sacrifice, but only dedication to the god by fire; however, they are judged to have been \"\"convincingly disproved\"\" (Hay, 2011). The oldest historical reference to the valley is found in , which describe tribal boundaries. The next chronological reference to the valley is at the time of King Ahaz of Judah who sacrificed his sons there according to . Since Hezekiah, his legitimate son by the daughter of the High Priest, succeeded him as king, this,"} +{"qid": "test2827", "pid": "16928", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "Ammon\nAmmon Ammon (; ) was an ancient Semitic-speaking nation occupying the east of the Jordan River, between the torrent valleys of Arnon and Jabbok, in present-day Jordan. The chief city of the country was \"\"Rabbah\"\" or \"\"Rabbath Ammon\"\", site of the modern city of Amman, Jordan's capital. Milcom and Molech (who may be one and the same) are named in the Hebrew Bible as the gods of Ammon. The people of this kingdom are called \"\"Children of Ammon\"\" or \"\"Ammonites\"\". The Ammonites occupied the northern Central Trans-Jordanian Plateau from the latter part of the second millennium BC to at least"} +{"qid": "test2827", "pid": "7574700", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "Kedoshim\nin your house diverse measures.\"\" But if one does, one will be attacked, as reports, \"\"For all who do such things, even all who do unrighteously, are an abomination to the Lord your God,\"\" and then immediately following, says, \"\"Remember what Amalek did to you (attacking Israel) by the way as you came forth out of Egypt.\"\" Mishnah Sanhedrin 7:7 and Babylonian Talmud Sanhedrin 64a–b interpreted the laws prohibiting passing one's child through the fire to Molech in and and The Mishnah asked about the command of that the animal be killed: If the person had sinned, in what way"} +{"qid": "test2827", "pid": "1278632", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "Moloch\nthis is widely accepted as an omission of the Masoretic correctors: \"\"For Tophet is ordained of old; yea, for the king it is prepared; he hath made it deep and large: the pile thereof is fire and much wood; the breath of the LORD, like a stream of brimstone, doth kindle it.\"\" On the other hand, while 1 Kings 11:7 has the vocalization \"\"Molek\"\", in \"\"Molech, the abomination of the children of Ammon\"\", this is widely accepted as an error for \"\"Malkam\"\" (\"\"Milcom\"\"), the specifically Ammonite idol. The Septuagint uses Μολοχ three times, rendered by KJV as \"\"Moloch\"\" or \"\"Molech\"\","} +{"qid": "test2827", "pid": "12074749", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "Morbidgames\nThese Journals took place in the world of \"\"Ave Molech\"\" and are flash fiction narratives taking place in specific locations that typically end with the main character’s demise. In 2007, after a series of mixed reviews, the company reworked their product line as well as hired popular artists such as Gerald Brom and released a second edition of their \"\"Ave Molech\"\" campaign setting, also in PDF. Eventually the company’s popularity grew and in 2007 was a runner up in the RPG-Awards Supplements of the Year. Then in 2008 Morbidgames released their fantasy campaign setting in paperback version, though their Journals"} +{"qid": "test2827", "pid": "10330751", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "\"Kamen Rider Den-O: I'm Born!\"\nhighest selling Japanese production of the week. Ryotaro pursues the Molech Imagin to May 8, 2000 and becomes Kamen Rider Den-O to destroy the Imagin. Though it seemed the danger passed, it turned out that the Molech Imagin was under the employ of a rogue Kamen Rider named Gaoh who hijacks the DenLiner with his band of Imagin. After knocking Ryotaro out when he and Hana attempted to board the DenLiner while trapping all the Taros sae Ryutaros, Gaoh steals Owner's Master Pass with the intent to travel back in time via \"\"God's Line\"\" to Japan's Edo Period to retrieve"} +{"qid": "test2827", "pid": "8554119", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "\"J. Stuart Russell\"\ninterpretation of certain Biblical texts related to the time of Jesus' return because they did not fit with a preconceived system of eschatology? Russell's \"\"Parousia\"\" takes the Bible seriously when it tells us of the nearness of Christ's return. Those who claim to interpret the Bible literally, trip over the obvious meaning of these time texts by making Scripture mean the opposite of what it unequivocally declares. Reading Russell is a breath of fresh air in a room filled with smoke and mirror hermeneutics. The founder and chairman of Ligonier Ministries, R. C. Sproul also wrote regarding \"\"The Parousia\"\": I"} +{"qid": "test2827", "pid": "5078353", "query": "what is the meaning of molech in the bible", "answer": "king", "passage": "\"Prosperity theology\"\ntheir end of the contract to receive God's promises. This leads to a belief in positive confession, the doctrine that believers may claim whatever they desire from God, simply by speaking it. Prosperity theology teaches that the Bible has promised prosperity for believers, so positive confession means that believers are speaking in faith what God has already spoken about them. Positive confession is practiced to bring about what is already believed in; faith itself is a confession, and speaking it brings it into reality. The teaching is often based on non-traditional interpretations of Bible verses, the Book of Malachi often"} +{"qid": "test2829", "pid": "2893510", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Fly Me to the Moon\"\nindividual song that has influenced our culture in a unique way over many years.” In 1954, when he began to write the song that became \"\"Fly Me to the Moon\"\", Bart Howard had been pursuing a career in music for over 20 years. He played piano to accompany cabaret singers, but also wrote songs with Cole Porter, his idol, in mind. In response to a publisher's request for a simpler song, Bart Howard wrote a cabaret ballad which he titled \"\"In Other Words\"\". A publisher tried to make him change some words from \"\"fly me to the moon\"\" to \"\"take"} +{"qid": "test2829", "pid": "2893509", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Fly Me to the Moon\"\nFly Me to the Moon Fly Me to the Moon, originally titled In Other Words, is a song written in 1954 by Bart Howard. Kaye Ballard made the first recording of the song the year it was written. Since then, it has become a frequently recorded jazz standard, often featured in popular culture. Frank Sinatra's 1964 version was closely associated with the Apollo missions to the Moon. In 1999, the US-based Songwriters Hall of Fame honored \"\"Fly Me to the Moon\"\" by inducting it as a \"\"Towering Song\"\" which is an award \"\"...presented each year to the creators of an"} +{"qid": "test2829", "pid": "2893518", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Fly Me to the Moon\"\na “slow and solemn version” in 2012 at the national memorial service for Apollo 11 mission commander Neil Armstrong. Fly Me to the Moon Fly Me to the Moon, originally titled In Other Words, is a song written in 1954 by Bart Howard. Kaye Ballard made the first recording of the song the year it was written. Since then, it has become a frequently recorded jazz standard, often featured in popular culture. Frank Sinatra's 1964 version was closely associated with the Apollo missions to the Moon. In 1999, the US-based Songwriters Hall of Fame honored \"\"Fly Me to the Moon\"\""} +{"qid": "test2829", "pid": "14478610", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Music of Neon Genesis Evangelion\"\nperformed the song. It has mainly been performed by Claire Littley, Yoko Takahashi, Megumi Hayashibara, Yuko Miyamura, Aki, and Aya. Hikaru Utada also performed her version of \"\"Fly Me to the Moon\"\" for the film \"\"\"\". Originally \"\"Fly Me to the Moon\"\" was a pop standard song written by Bart Howard in 1954. \"\"In Other Words\"\" was the original title for the song and Felicia Sanders introduced it in cabarets. The song became known popularly as \"\"Fly Me to the Moon\"\" from its first line, and after a few years the publishers changed the title to that officially. was the"} +{"qid": "test2829", "pid": "2893513", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Fly Me to the Moon\"\nmore popular when she performed it in front of a large television audience on \"\"The Ed Sullivan Show\"\". As the song's popularity increased, it became better known as \"\"Fly Me to the Moon\"\", and in 1963 Peggy Lee convinced Bart Howard to make the name change official. In the early 1960s, versions of the song were released under its new name by many well-known singers, including Nat King Cole, Sarah Vaughan, and Brenda Lee. Connie Francis released two non-English versions of the song in 1963: in Italian as \"\"Portami Con Te\"\" and in Spanish as \"\"\"\"Llévame a la Luna\"\". In"} +{"qid": "test2829", "pid": "14374534", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Portia Nelson\"\nWilliam Roy, a young pianist and composer who was just beginning a fifty-year career as a musical director for many of cabaret's greatest performers. In 1951 Nelson would also appear at the New York lounge Celeste, accompanied by songwriter and pianist Bart Howard, who soon became the emcee at the Blue Angel. At Celeste, Nelson performed many of the songs (including \"\"In Other Words,\"\" later retitled \"\"Fly Me to the Moon\"\") that she would gather on her album \"\"Let Me Love You: Portia Nelson Sings the Songs of Bart Howard\"\". She championed Howard for the rest of her career. The"} +{"qid": "test2829", "pid": "2738323", "query": "who wrote the song fly me to the moon", "answer": "Bart Howard", "passage": "\"Bart Howard\"\namong others. \"\"Fly Me to the Moon\"\" was first sung in 1954 by Felicia Sanders at the \"\"Blue Angel\"\" club in Manhattan, where the composer became M.C. and accompanist in 1951. The song received wide exposure when Peggy Lee sang it on \"\"The Ed Sullivan Show\"\" several years later. Bart Howard \"\"lived off\"\" this song for the rest of his life, although he had 49 other songs to his credit. These include \"\"Let Me Love You\"\", \"\"On the First Warm Day\"\", \"\"One Love Affair\"\", \"\"Be My All\"\", \"\"The Man in the Looking Glass\"\", \"\"My Love Is a Wanderer\"\", \"\"Who Wants"} +{"qid": "test283", "pid": "4985013", "query": "when was son of a preacher man released", "answer": "late 1968", "passage": "\"Son of a Preacher Man\"\nSon of a Preacher Man \"\"Son of a Preacher Man\"\" is a song written and composed by John Hurley and Ronnie Wilkins and recorded by British singer Dusty Springfield in September 1968 for the album \"\"Dusty in Memphis.\"\" Springfield's version was produced by Jerry Wexler, Tom Dowd, and Arif Mardin for her first album for the Atlantic Records label and became an international hit reaching #10 in the United States and #9 in her native United Kingdom when it was released in late 1968. The album \"\"Dusty in Memphis\"\" was released in stereo, though its singles were remixed and released"} +{"qid": "test283", "pid": "4985019", "query": "when was son of a preacher man released", "answer": "late 1968", "passage": "\"Son of a Preacher Man\"\nrecent years. The song is also featured in the 2016 video game \"\"Mafia III\"\". Son of a Preacher Man \"\"Son of a Preacher Man\"\" is a song written and composed by John Hurley and Ronnie Wilkins and recorded by British singer Dusty Springfield in September 1968 for the album \"\"Dusty in Memphis.\"\" Springfield's version was produced by Jerry Wexler, Tom Dowd, and Arif Mardin for her first album for the Atlantic Records label and became an international hit reaching #10 in the United States and #9 in her native United Kingdom when it was released in late 1968. The album"} +{"qid": "test2831", "pid": "20279540", "query": "who sings in everybody dies in their nightmares", "answer": "XXXTentacion", "passage": "\"17 (XXXTentacion album)\"\n\"\"17\"\" debuted at number one in Norway (where it remained for three weeks) and in the top twenty in numerous album charts, including the UK Albums Chart, where it entered at number 12, selling 4,520 album-equivalent units. The album also charted in Belgium, the Netherlands, New Zealand, Italy, and Sweden. Seven songs—\"\"Jocelyn Flores\"\", \"\"Revenge\"\", \"\"Fuck Love\"\", \"\"Everybody Dies in Their Nightmares\"\", \"\"Depression & Obsession\"\", \"\"Save Me\"\" and \"\"Carry On\"\"—debuted in the \"\"Billboard\"\" Hot 100 at numbers 31, 77, 41, 54, 91, 94 and 95 respectively, with \"\"Jocelyn Flores\"\" becoming XXXTentacion's highest charting song since \"\"Look at Me\"\", which peaked at"} +{"qid": "test2833", "pid": "3942108", "query": "when was the first election held in india", "answer": "1951–52", "passage": "\"1951–52 elections in India\"\n1951–52 elections in India The Election Commission of India held the first presidential elections of India on May 2, 1952. Dr. Rajendra Prasad won his first election with 507,400 votes over his nearest rival K.T. Shah who got 92,827 votes. General elections to the first Lok Sabha since independence were held in India between 25 October 1951 and 21 February 1952. The Indian National Congress (INC) stormed into power, winning 364 of the 489 seats. Jawaharlal Nehru became the first democratically elected Prime Minister of the country. : On 1 November 1956, Ajmer State was merged into Rajasthan under States"} +{"qid": "test2833", "pid": "3942115", "query": "when was the first election held in india", "answer": "1951–52", "passage": "\"1951–52 elections in India\"\nenlarged slightly by the transfer of minor territories from Bihar in 1956 under States Reorganisation Act, 1956. 1951–52 elections in India The Election Commission of India held the first presidential elections of India on May 2, 1952. Dr. Rajendra Prasad won his first election with 507,400 votes over his nearest rival K.T. Shah who got 92,827 votes. General elections to the first Lok Sabha since independence were held in India between 25 October 1951 and 21 February 1952. The Indian National Congress (INC) stormed into power, winning 364 of the 489 seats. Jawaharlal Nehru became the first democratically elected Prime"} +{"qid": "test2834", "pid": "9719265", "query": "what age do you have to be to buy cigarettes in california", "answer": "21", "passage": "\"Trolley Square shooting\"\nthink, but I am not sure...\"\" The father suggested that the U.S. government bears some responsibility for his son's actions, saying \"\"The authorities are guilty for not alerting us that he bought a gun. In the U.S., you cannot buy cigarettes if you are under-aged, but you can buy a gun.\"\" Federal law prohibits the sale of handguns and handgun ammunition to those under 21 from federally licensed gun dealers although some states allow 18+ to purchase handguns through legal private sales. Long guns (being a rifle or shotgun) and rifle/shotgun ammunition are prohibited to those under 18. Talović had"} +{"qid": "test2834", "pid": "15946637", "query": "what age do you have to be to buy cigarettes in california", "answer": "21", "passage": "\"Political positions of Gary Johnson\"\nthat the lower the age the better you come to grips with what these substances are... If you can go to Iraq and die, or Afghanistan and die as a service man or women at 18, and you can't drink — I'm sorry I don't buy into that.\"\" Current federal legislation mandates that states adopt laws prohibiting the sale of alcohol to individuals under 21 years old. If states do not comply, they risk losing federal transportation funding. Johnson says his drug policy is \"\"Don't do drugs.\"\" He believes drugs are \"\"harmful, addictive and destructive to our lives and society.\"\""} +{"qid": "test2835", "pid": "20408638", "query": "what is the term of an official in the house of representatives", "answer": "two-year", "passage": "\"2018 Michigan House of Representatives election\"\nHouse of Representatives are limited to three two-years terms. Michigan has what is considered the toughest term-limits in the country. After the 2018 mid-term elections, nearly 70 percent of the state Senate and 20 percent of the state House will be forced to leave office because of term-limits. The following members are prevented by term-limits from seeking re-election to the House in 2018. This list does not include members that are eligible for re-election, but instead to seek other office or voluntarily retire. Statewide results of the 2018 Michigan House of Representatives: Results of the 2018 Michigan House of Representatives"} +{"qid": "test2835", "pid": "2004137", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"House of Representatives of the Philippines\"\nHouse of Representatives of the Philippines The House of Representatives of the Philippines (, ), is the lower house of the Congress of the Philippines. It is often commonly referred to as Congress and informally referred to as Camara or Kamara. Members of the House are officially styled as \"\"representative\"\" (\"\"Kinatawan\"\") and sometimes informally called \"\"Congressmen/Congresswomen\"\" (\"\"mga kongresista\"\") and are elected to a three-year term. They can be re-elected, but cannot serve more than three consecutive terms. Around eighty percent of congressmen are district representatives, representing a particular geographical area. There are 234 legislative districts in the country, each composed"} +{"qid": "test2835", "pid": "16774476", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Do Not Ask What Good We Do\"\nDo Not Ask What Good We Do Do Not Ask What Good We Do: Inside the U.S. House of Representatives is a 2012 book by the author Robert Draper and published by Free Press. It details the activities of Republicans and Democrats in the United States House of Representatives and the Senate during the first term of Barack Obama's presidency. The book was republished under the title When the Tea Party Came to Town. In order to research the activities and politics within the House of Representatives, Draper \"\"embedded with new and senior House members\"\" that had been elected in"} +{"qid": "test2835", "pid": "15423276", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Hyogo 11th district\"\nfifth term as the district's representative and his sixth consecutive term in the House of Representatives. Zushi was officially endorsed by Komeito, the LDP's junior coalition partner. The 46th election for the House of Representatives saw Takeaki Matsumoto retain the district by defeating the LDP's candidate, newcomer Nobuhide Zushi. Matsumoto was one of a minority of DPJ members to retain his seat as the party was swept from power, losing 174 of its 231 seats in a landslide victory to the LDP led by former Prime Minister Shinzo Abe. Matsumoto was officially endorsed by the DPJ's coalition partner, the People's"} +{"qid": "test2835", "pid": "7755241", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"United States House Committee on the Election of the President, Vice President and Representatives in Congress\"\nUnited States House Committee on the Election of the President, Vice President and Representatives in Congress The United States House Committee on the Election of the President, Vice President, and Representatives in Congress is a former standing committee of the United States House of Representatives. The committee was established in 1893 with jurisdiction over legislation concerning the election of the officials enumerated in its title, including proposed changes to the Constitution that affected the terms of office of the named officials, the succession to the offices of the President and Vice President, the direct election of Senators, and the meeting"} +{"qid": "test2835", "pid": "19284947", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"2016 Philippine House of Representatives election in Calabarzon\"\n2016 Philippine House of Representatives election in Calabarzon Elections were held in Calabarzon for seats in the House of Representatives of the Philippines on May 9, 2016. The candidate with the most number of votes won that district's seat for the 17th Congress of the Philippines. Roberto Puno is term-limited as he has reached the maximum three-term limit for any elective official. His wife, media personality Chiqui Roa-Puno, will run instead and will be challenged by incumbent first district councilor Juanito \"\"Dudok\"\" Lawis. Romeo M. Acop is running for reelection for his third and final term unopposed. Eileen Ermita-Buhain is"} +{"qid": "test2835", "pid": "476433", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"State of the Union\"\nreport. Since Franklin Roosevelt, the State of the Union is given typically each January before a joint session of the United States Congress and is held in the House of Representatives chamber of the United States Capitol. Newly inaugurated presidents generally deliver an address to Congress in February of the first year of their term, but this speech is not officially considered to be a \"\"State of the Union\"\". What began as a communication between president and Congress has become in effect a communication between the president and the people of the United States. Since the advent of radio, and"} +{"qid": "test2835", "pid": "12325234", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Colorado House career of Douglas Bruce\"\nColorado House career of Douglas Bruce The Colorado House of Representatives career of Douglas Bruce began with Bruce's appointment to a vacant legislative seat in November 2007 and his swearing-in in January 2008; he was a focal point of controversy during his one term in the state house, becoming the first legislator in Colorado history to be officially censured. He was defeated in the Republican primary in his 2008 bid for a full term. In October 2007, Bruce announced his plans to seek a seat in the Colorado House of Representatives. After Rep. Bill Cadman was appointed to fill a"} +{"qid": "test2835", "pid": "19283274", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"2016 Philippine House of Representatives election in Metro Manila\"\nwho was elected in 2013 unopposed, is seeking another term unopposed. First term incumbent and House Minority Floor Leader Ronaldo Zamora, who was elected with 52% of the vote in 2013, is seeking re-election. He will be facing his 2013 opponent, former councilor Jana Ejercito and independent candidate George Cordero. Taguig's 1st district and Pateros are grouped together for purposes of electing a member to the House of Representatives. Otherwise, both places have their own local officials. This district is composed of the Municipality of Pateros as well as the eastern half of Taguig. Two-term incumbent Arnel Cerafica, who was"} +{"qid": "test2835", "pid": "3159369", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Michigan House of Representatives\"\nto serving three terms of two years. The House meets in the north wing of the Michigan Capitol in Lansing. Members of the Michigan House of Representatives are commonly referred to as representatives. Because this mirrors the terminology used to describe members of Congress, constituents and news media, abiding by the Associated Press guidelines for journalists, often refer to members as state representatives to avoid confusion with their federal counterparts. As elected officials, members of the Michigan House of Representatives also receive the courtesy title of \"\"the Honorable\"\" (abbreviated to \"\"Hon.\"\" or \"\"Hon'ble\"\") for life. The 73rd and current Speaker"} +{"qid": "test2835", "pid": "2467862", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Chris John\"\nN. John, III, was a member of the Louisiana House of Representatives. In the early 1980s, he was elected to the Crowley City Council. Chris John first became a member of the Louisiana House of Representatives before he entered the U.S. House. In what was considered a major upset at the time, John defeated the state House incumbent, the former director of the Louisiana State Police, Donald Thibodeaux, in October 1987, by 54 to 46 percent. Thibodeaux had won a full term in 1983 after having won a special election the year before to fill the unexpired term of John's"} +{"qid": "test2835", "pid": "2507917", "query": "what is the term of an official in the house of representatives", "answer": "Speaker of the House", "passage": "\"Michigan Legislature\"\nin the State Capitol is located in the north wing of the State Capitol building. As of 2015, Republicans hold a majority of seats in the House of Representatives with 63, and Democrats hold 47 seats. The House of Representatives selects its own Speaker of the House and other officers and adopts its rules of procedure at the start of a new legislative session. On November 3, 1992, almost 59 percent of Michigan voters backed Proposal B, the Michigan Term Limits Amendment, which amended the State Constitution, to enact term limits on federal and state officials. In 1995, the U.S."} +{"qid": "test2835", "pid": "9116522", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Peter Sailly\"\nPeter Sailly Peter Sailly (April 20, 1754 – March 16, 1826) was a politician and public official from Plattsburgh, New York. He served one term as a member of the United States House of Representatives. Sailly was born and educated in Lorraine, France, where he was involved in the iron manufacturing business. He immigrated to Philadelphia, Pennsylvania in 1783, purchased land from Zephaniah Platt, and settled in what is now Plattsburgh, New York. He was active in the lumber business, owned several stores, and was a successful fur trader and potash manufacturer. As a result of their shared interest in"} +{"qid": "test2835", "pid": "20409184", "query": "what is the term of an official in the house of representatives", "answer": "two-year", "passage": "\"2018 Michigan Senate election\"\nat state party conventions. Under the Michigan Constitution, members of the state Senate are able to serve only two four-years terms, and members of the House of Representatives are limited to three two-years terms. Michigan has what is considered the toughest term-limits in the country. After the 2018 mid-term elections, nearly 70 percent of the state Senate and 20 percent of the state House will be forced to leave office because of term-limits. The following members are prevented by term-limits from seeking re-election to the House in 2018. This list does not include members that are eligible for re-election, but"} +{"qid": "test2835", "pid": "8322113", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Libertarian Party of New Hampshire\"\nterm as a Republican state representative in New Hampshire when, at age 81, he switched to the Libertarian Party. In 1992, four Libertarians were elected to the New Hampshire House of Representatives: Warburton (who was re-elected to an eighth term), Andy Borsa, Don Gorman, and Finlay Rothhaus. The four formed an officially recognized Libertarian Caucus with Gorman as the Libertarian Floor Leader. From 1973 to 1976, Gorman had served in the legislature as a Republican. In 1994, Don Gorman was re-elected to the New Hampshire House of Representatives along with Jim McClarin. Prior to the 2000 election, Steve Vaillancourt, then"} +{"qid": "test2835", "pid": "17138026", "query": "what is the term of an official in the house of representatives", "answer": "two-year", "passage": "\"2014 United States House of Representatives elections in Minnesota\"\nneutral on running again to 90 percent just because of this stupid stuff they're doing. You can't let these people be in charge of anything, in my opinion.\"\" On March 17, 2014, Peterson officially announced that he was running for re-election, saying, \"\"I still have a lot of work to do.\"\" 2014 United States House of Representatives elections in Minnesota The 2014 United States House of Representatives elections in Minnesota took place in the U.S. state of Minnesota on November 4, 2014, to elect Minnesota's eight representatives in the United States House of Representatives for two-year terms, one from each"} +{"qid": "test2835", "pid": "4825692", "query": "what is the term of an official in the house of representatives", "answer": "Speaker of the House", "passage": "\"William Aiken Jr.\"\nin the State Senate 1842–1844. His term as governor ran from 1844 to 1846. Subsequent to his service as governor, Aiken served in the U. S. House of Representatives for the Thirty-second, Thirty-third, and Thirty-fourth Congresses (March 4, 1851 – March 3, 1857). In December 1855, Aiken was a leading candidate for Speaker of the House of Representatives. After two months and 133 ballots, Aiken lost the race to Nathaniel P. Banks by a vote of 103 to 100, in what has been termed \"\"the longest and most contentious Speaker election in House history\"\". Aiken was married to Harriet Lowndes"} +{"qid": "test2835", "pid": "4728141", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Capital districts and territories\"\nHouse of Representatives, not to the term of the Senate. This means that if there is an election for the Senate only (as last happened in 1970), this would involve only half the state senators, and the territory senators' terms would continue. Conversely, if there is an election for the House of Representatives only (as last happened in 1972), this would also involve the territory senators but not the state senators. Brasília, the capital of Brazil, is set within the Federal District (\"\"Distrito Federal\"\"). Its territory includes several other cities, officially called administrative regions, since the Federal District cannot be"} +{"qid": "test2835", "pid": "7828711", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Oklahoma House of Representatives\"\nand one districts. This allows for certain districts to be slightly smaller or larger than others. The Oklahoma House of Representatives draws its own maps of its district lines, which are subject to the approval of both the state senate and the governor. Should the redistricting not occur in the time limits prescribed by law, the lines are determined by a panel of five statewide elected officials. As of January 3, 2017, Charles A. McCall is serving his first term as Speaker of the Oklahoma House of Representatives. He was first chosen May 2, 2016, by the House Republican Caucus"} +{"qid": "test2835", "pid": "9433036", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Martha McSally\"\nto represent a southern Arizona-based district in the U.S. House of Representatives; the first was Jim Kolbe, who represented what is now the 2nd district, from 1985 to 2007. McSally is also the first female Republican representative from Arizona. McSally ran for reelection in 2016, and was unopposed in the Republican primary. She defeated Democratic opponent Matt Heinz by a margin of 57 to 43 percent in the general election. In her freshman term in Congress, McSally had seven bills approved by the U.S. House. Among all members of the U.S. House, McSally was tied for third as of 2016"} +{"qid": "test2835", "pid": "631266", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Addis Ababa\"\nAddis Ababa. Members of the City Council are directly elected by the residents of the city and the Council, in turn, elects the Mayor among its members. The term of office for elected officials is five years. However, the Federal Government, when it deems necessary, can dissolve the City Council and the entire administration and replace it by a temporary administration until elections take place next. Residents of Addis Ababa are represented in the federal legislature, the House of Peoples' Representatives. However, the city is not represented in the House of Federation, which is the federal upper house constituted by"} +{"qid": "test2835", "pid": "15537239", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Tennessee Advisory Commission on Intergovernmental Relations\"\nduring the 1970s and 1980s. The commission has 25 members, including 10 members and one appointee of the state legislature, 10 officials from local governments, two officials of the executive branch of the state government, and two private citizens. The legislative members are the chairmen of the Finance, Ways and Means committees of the two houses of the General Assembly, the Comptroller of the Treasury, four additional members of the Tennessee House of Representatives and four additional members of the Tennessee State Senate appointed to four-year terms. The local government members, all of whom are appointed to four-year terms, are"} +{"qid": "test2835", "pid": "15593869", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"Michael V. Saxl\"\ntime of election and son of fellow State Representative Jane Saxl of Bangor. Saxl was elected Speaker of the Maine House of Representatives at the age of 33, the youngest Speaker since John L. Martin was elected at 32. After leaving the Maine House of Representatives, Saxl became a lobbyist, including Winter Harbor Properties, a real estate firm. Saxl opposed term limits for elected officials in Maine. Michael V. Saxl Michael V. Saxl is American lawyer and former politician from Maine. Saxl, who lived in Portland's West End, was a member of the Maine House of Representatives from the 117th"} +{"qid": "test2835", "pid": "19500843", "query": "what is the term of an official in the house of representatives", "answer": "Representatives", "passage": "\"1870 United States House of Representatives elections\"\n1870 United States House of Representatives elections Elections to the United States House of Representatives were held in 1870 and 1871 to elect Representatives for the 42nd Congress, and were held in the middle of President Ulysses S. Grant's first term. With Grant's administration rocked by a number of scandals (including a shady deal for gold speculation that led to a crash in the market and several business deals that saw high-ranking governmental officials gain kickbacks) and Reconstruction winding down, his Republican Party lost seats to the opposition Democratic Party but retained an overall majority. Also, since the Democratic Party"} +{"qid": "test2838", "pid": "18668754", "query": "who came up with the initial concept of protons and neutrons", "answer": "Dmitri Ivanenko", "passage": "\"Discovery of the neutron\"\ncomposed of protons and neutrons, although the precise nature of the neutron was initially unclear. Within months after the discovery of the neutron, Werner Heisenberg and Dmitri Ivanenko had proposed proton–neutron models for the nucleus. Heisenberg's landmark papers approached the description of protons and neutrons in the nucleus through quantum mechanics. While Heisenberg's theory for protons and neutrons in the nucleus was a \"\"major step toward understanding the nucleus as a quantum mechanical system,\"\" he still assumed the presence of nuclear electrons. In particular, Heisenberg assumed the neutron was a proton–electron composite, for which there is no quantum mechanical explanation."} +{"qid": "test2838", "pid": "2741174", "query": "who came up with the initial concept of protons and neutrons", "answer": "Werner Heisenberg", "passage": "\"Yukawa potential\"\nthe order of 10^-14 meters. Physicists knew that electromagnetic forces at these lengths would cause these protons to repel and each other and for the nucleus to fall apart. Thus came the motivation for further explaining the interactions between elementary particles. In 1932, Werner Heisenberg proposed a \"\"Platzwechsel\"\" (migration) interaction between the neutrons and protons inside the nucleus, in which neutrons were composite particles of photons and electrons. These composite neutrons would emit electrons, creating an attractive force with the protons, and then turn into protons themselves. When, in 1933 at the Solvay Conference, Heisenberg proposed his interaction, physicists suspected"} +{"qid": "test2838", "pid": "3174595", "query": "who came up with the initial concept of protons and neutrons", "answer": "Werner Heisenberg", "passage": "Isospin\nheavier quarks must be treated separately. Hadron nomenclature is based on isospin. Isospin was introduced as a concept in 1932, well before the 1960s development of the quark model. The man who introduced it, Werner Heisenberg, did so to explain symmetries of the then newly discovered neutron (symbol n): This behavior is not unlike the electron, where there are two possible states based on their spin. Other properties of the particle are conserved in this case. Heisenberg introduced the concept of another conserved quantity that would cause the proton to turn into a neutron and vice versa. In 1937, Eugene"} +{"qid": "test2838", "pid": "5242774", "query": "who came up with the initial concept of protons and neutrons", "answer": "Werner Heisenberg", "passage": "\"Nuclear force\"\nresulting in the strong force, proposed by Werner Heisenberg, is that protons and neutrons are identical in every respect, other than their charge. This is not completely true, because neutrons are a tiny bit heavier, but it is an approximate symmetry. Protons and neutrons are therefore viewed as the same particle, but with different isospin quantum numbers; conventionally, the proton is \"\"isospin up,\"\" while the neutron is \"\"isospin down.\"\" The strong force is invariant under SU(2) isospin transformations, just as other interactions between particles are invariant under SU(2) transformations of intrinsic spin. In other words, both isospin and intrinsic spin"} +{"qid": "test2838", "pid": "2219189", "query": "who came up with the initial concept of protons and neutrons", "answer": "Werner Heisenberg", "passage": "Asymmetry\n2006, no violations of CPT symmetry have been observed. The baryons (i.e., the protons and neutrons and the atoms that they comprise) observed so far in the universe are overwhelmingly matter as opposed to anti-matter. This asymmetry is called the baryon asymmetry of the universe. Isospin is the symmetry transformation of the weak interactions. The concept was first introduced by Werner Heisenberg in nuclear physics based on the observations that the masses of the neutron and the proton are almost identical and that the strength of the strong interaction between any pair of nucleons is the same, independent of whether"} +{"qid": "test2840", "pid": "20056166", "query": "when is season 4 of flash coming out", "answer": "October 10, 2017", "passage": "\"The Flash (season 4)\"\nThe Flash (season 4) The fourth season of the American television series \"\"The Flash\"\", which is based on the DC Comics character Barry Allen / Flash, premiered on The CW on October 10, 2017, and ran for 23 episodes until May 22, 2018. The season follows a crime scene investigator with superhuman speed who fights criminals, including others who have also gained superhuman abilities. It is set in the Arrowverse, sharing continuity with the other television series of the universe, and is a spin-off of \"\"Arrow\"\". The season is produced by Berlanti Productions, Warner Bros. Television, and DC Entertainment, with"} +{"qid": "test2840", "pid": "20056189", "query": "when is season 4 of flash coming out", "answer": "October 10, 2017", "passage": "\"The Flash (season 4)\"\nDoviak gave the finale a B+, praising the light tone and character moments, while adding that \"\"None of this can make up for the long stretches of mediocrity this year, but at least it doesn’t leave me with a bad taste in my mouth.\"\" General references The Flash (season 4) The fourth season of the American television series \"\"The Flash\"\", which is based on the DC Comics character Barry Allen / Flash, premiered on The CW on October 10, 2017, and ran for 23 episodes until May 22, 2018. The season follows a crime scene investigator with superhuman speed who"} +{"qid": "test2842", "pid": "5813601", "query": "role of malonyl coa in fatty acid synthesis", "answer": "chain elongation", "passage": "Malonyl-CoA\nMalonyl-CoA Malonyl-CoA is a coenzyme A derivative of malonic acid. It plays a key role in chain elongation in fatty acid biosynthesis and polyketide biosynthesis. In the former, it provides 2-carbon units to fatty acids and commits them to fatty acid chain synthesis. Malonyl-CoA is formed by carboxylating acetyl-CoA using the enzyme acetyl-CoA carboxylase. One molecule of acetyl-CoA joins with a molecule of bicarbonate, requiring energy rendered from ATP. Malonyl-CoA is utilised in fatty acid biosynthesis by the enzyme malonyl coenzyme A:acyl carrier protein transacylase (MCAT). MCAT serves to transfer malonate from malonyl-CoA to the terminal thiol of \"\"holo\"\"-acyl carrier"} +{"qid": "test2842", "pid": "10758806", "query": "role of malonyl coa in fatty acid synthesis", "answer": "chain elongation", "passage": "\"Biosynthesis of doxorubicin\"\nand 9 2-carbon units derived from 9 sequential (iterative) decarboxylative condensations of malonyl-CoA. Each malonyl-CoA unit contributes a 2-carbon ketide unit to the growing polyketide chain. Each addition is catalyzed by the \"\"minimal PKS\"\" consisting of an acyl carrier protein (ACP), a ketosynthase (KS)/chain length factor (CLF) heterodimer and a malonyl-Coa:ACP acyltransferase(MAT). (refer to top of Figure 10. This process is very similar to fatty acid synthesis, by fatty acid synthases and to Type I polyketide synthesis. But, in contrast to fatty acid synthesis, the keto groups of the growing polyketide chain are not modified during chain elongation and they"} +{"qid": "test2845", "pid": "16908775", "query": "how many wins does tiger woods have on the pga tour", "answer": "79", "passage": "\"Tiger Woods PGA Tour 14\"\nother golfers including first-timers Keegan Bradley, Bud Cauley, Stacy Lewis, and Lexi Thompson. \"\"Tiger Woods PGA Tour 14\"\" includes 20 courses as part of the main game. Additional courses were released as downloadable content. Tiger Woods PGA Tour 14 features 21 officially licensed PGA Tour and LPGA Tour tournaments. Tiger Woods PGA Tour 14 Standard includes 20 courses as part of the main game. The Masters Historic Edition of game includes an additional six courses. Others are available via DLC. The game was met with positive to average reception upon release. GameRankings and Metacritic gave it a score of 79%"} +{"qid": "test2846", "pid": "8811493", "query": "where is simple squamous epithelium found in the body", "answer": "alveoli", "passage": "\"Simple squamous epithelium\"\nSimple squamous epithelium A simple squamous epithelium is a single layer of flat cells in contact with the basal lamina (one of the two layers of the basement membrane) of the epithelium. This type of epithelium is often permeable and occurs where small molecules need to pass quickly through membranes via filtration or diffusion. Simple squamous epithelia are found in capillaries, alveoli, glomeruli, and other tissues where rapid diffusion is required. Cells are flat with flattened and oblong nuclei. It is also called pavement epithelium due to its tile-like appearance. This epithelium is associated with filtration and diffusion. This tissue"} +{"qid": "test2846", "pid": "8811494", "query": "where is simple squamous epithelium found in the body", "answer": "alveoli", "passage": "\"Simple squamous epithelium\"\nis extremely thin, and forms a delicate lining. It offers very little protection. Simple squamous epithelium A simple squamous epithelium is a single layer of flat cells in contact with the basal lamina (one of the two layers of the basement membrane) of the epithelium. This type of epithelium is often permeable and occurs where small molecules need to pass quickly through membranes via filtration or diffusion. Simple squamous epithelia are found in capillaries, alveoli, glomeruli, and other tissues where rapid diffusion is required. Cells are flat with flattened and oblong nuclei. It is also called pavement epithelium due to"} +{"qid": "test2846", "pid": "2813747", "query": "where is simple squamous epithelium found in the body", "answer": "capillaries", "passage": "\"Renal corpuscle\"\ncytokines. Mesangial cells also have phagocytic activity, removing proteins and other molecules trapped in the glomerular basement membrane or filtration barrier. The Bowman's capsule has an outer parietal layer composed of simple squamous epithelium. The visceral layer, composed of modified simple squamous epithelium, is lined by podocytes. Podocytes have foot processes, pedicels, that wrap around glomerular capillaries. These pedicels interdigitate with pedicels of adjacent podocytes forming filtration slits. The renal corpuscle filtration barrier is composed of: the fenestrated endothelium of glomerular capillaries, the fused basal lamina of endothelial cells and podocytes, and the filtration slits of the podocytes. This barrier"} +{"qid": "test2848", "pid": "8874740", "query": "who wrote the song rainy days and mondays", "answer": "Paul Williams", "passage": "\"Rainy Days and Mondays\"\nRIAA. The song was composed in 1971 by the then fairly unknown composers Roger Nichols and Paul Williams. It was released as the first track on the album \"\"Carpenters\"\", popularly known as the Tan Album, and the B-side on the single is \"\"Saturday\"\", written and sung by Richard Carpenter. Rainy Days and Mondays \"\"Rainy Days and Mondays\"\" is a 1971 song by the Carpenters, with instrumental backing by L.A. session musicians from the Wrecking Crew, that went to number 2 on the \"\"Billboard\"\" Hot 100 chart, It's Too Late/I Feel the Earth Move by Carole King kept it from number"} +{"qid": "test2848", "pid": "15593406", "query": "who wrote the song rainy days and mondays", "answer": "Paul Williams", "passage": "\"Carpenters (album)\"\nlyrics were written by Paul Williams, who later recorded his own version of the song. It was released as a single and charted well in the United States at number 2 on the \"\"Billboard\"\" Hot 100. \"\"Rainy Days and Mondays\"\" was the Carpenters' second Nichols/Williams hit, after \"\"We've Only Just Begun\"\" of the \"\"Close to You\"\" album the previous year. \"\"Saturday\"\" is a short, upbeat song with a runtime of 1:18. It was used as the B-side of \"\"Rainy Days and Mondays\"\". The song talks about how joyful Saturday is, and how joyful it is to finish Friday. In 1973"} +{"qid": "test2848", "pid": "15593405", "query": "who wrote the song rainy days and mondays", "answer": "Roger Nichols", "passage": "\"Carpenters (album)\"\nthe cover as, \"\"a decorative picture of the duo (similar to a graduation photo)\"\", also calling it very MOR, except for \"\"Superstar\"\". Similarly, \"\"Rolling Stone\"\" called the album \"\"exceptionally sharp...MOR\"\", calling \"\"Rainy Days and Mondays\"\", \"\"Let Me Be the One\"\" and \"\"(A Place to) Hideaway\"\" as more adequate than the other songs on the album, in spite of adding their prior album to their list of the 500 greatest albums of all time. They also proclaimed that, \"\"the Carpenters have more going for them than against.\"\" The music of \"\"Rainy Days and Mondays\"\" was composed by Roger Nichols, and the"} +{"qid": "test2848", "pid": "9190666", "query": "who wrote the song rainy days and mondays", "answer": "Paul Williams", "passage": "\"I Won't Last a Day Without You\"\nI Won't Last a Day Without You \"\"I Won't Last a Day Without You\"\" is a song with lyrics written by Paul Williams and music composed by Roger Nichols. It became a hit single for the Carpenters in 1974, reaching number 11 on the \"\"Billboard\"\" Hot 100 chart and number one on the easy listening chart. It was the Carpenters' ninth number one on the easy listening chart. In 1972, Richard Carpenter had learned of a new song by Williams and Nichols, who had already contributed \"\"We've Only Just Begun\"\" and \"\"Rainy Days and Mondays\"\" to the Carpenters. He included"} +{"qid": "test2848", "pid": "2317607", "query": "who wrote the song rainy days and mondays", "answer": "Paul Williams", "passage": "\"Paul Williams (songwriter)\"\nthe Carpenters, most notably \"\"Rainy Days and Mondays\"\", \"\"I Won't Last a Day Without You\"\", and \"\"We've Only Just Begun\"\", originally a song for a Crocker National Bank television commercial featuring newlyweds, and which has since become a cover-band standard and \"\"de rigueur\"\" for weddings throughout North America. An early collaboration with Roger Nichols, \"\"Someday Man\"\", was covered by The Monkees (a group for which he auditioned but was not chosen) on a 1969 single, and was the first Monkees' release not published by Screen Gems. A frequent cowriter of Williams' was musician Kenneth Ascher. Their songs together included the"} +{"qid": "test2848", "pid": "9035742", "query": "who wrote the song rainy days and mondays", "answer": "Roger Nichols", "passage": "\"Roger Nichols (songwriter)\"\nhit for them in late 1970. It was nominated for a Grammy for Song of the Year, was included on BMI's million performances list and received an award for selling a million copies of sheet music. The song was also covered by Curtis Mayfield among many others. \"\"Times of Your Life\"\", written with Lane and performed by Paul Anka, had reached number one on the Adult Contemporary chart (3–10 January 1976). Another Nichols-Williams song, \"\"Out in the Country\"\" by Three Dog Night (later covered by R.E.M.), reached the Top Ten. Six months later, \"\"Rainy Days and Mondays\"\" was another gold"} +{"qid": "test2848", "pid": "2317602", "query": "who wrote the song rainy days and mondays", "answer": "Paul Williams", "passage": "\"Paul Williams (songwriter)\"\nPaul Williams (songwriter) Paul Hamilton Williams Jr. (born September 19, 1940) is an American composer, singer, songwriter and actor. He is known for writing popular songs performed by a number of acts in the 1970s, including Three Dog Night's \"\"An Old Fashioned Love Song\"\" and \"\"Out in the Country,\"\" Helen Reddy's \"\"You and Me Against the World,\"\" David Bowie's \"\"Fill Your Heart\"\" and the Carpenters' \"\"We've Only Just Begun\"\" and \"\"Rainy Days and Mondays.\"\" Williams is also known for his musical contributions to films, including the Academy Award-nominated song \"\"Rainbow Connection\"\" from \"\"The Muppet Movie\"\", and penning the lyrics to"} +{"qid": "test2848", "pid": "2317623", "query": "who wrote the song rainy days and mondays", "answer": "Paul Williams", "passage": "\"Paul Williams (songwriter)\"\nwith Tracey Jackson. Paul Williams (songwriter) Paul Hamilton Williams Jr. (born September 19, 1940) is an American composer, singer, songwriter and actor. He is known for writing popular songs performed by a number of acts in the 1970s, including Three Dog Night's \"\"An Old Fashioned Love Song\"\" and \"\"Out in the Country,\"\" Helen Reddy's \"\"You and Me Against the World,\"\" David Bowie's \"\"Fill Your Heart\"\" and the Carpenters' \"\"We've Only Just Begun\"\" and \"\"Rainy Days and Mondays.\"\" Williams is also known for his musical contributions to films, including the Academy Award-nominated song \"\"Rainbow Connection\"\" from \"\"The Muppet Movie\"\", and penning"} +{"qid": "test2849", "pid": "4923562", "query": "why wasnt agent matthews in miss congeniality 2", "answer": "relocated to Miami", "passage": "\"Miss Congeniality 2: Armed and Fabulous\"\ngrossed $101 million worldwide. It was panned by most critics and received a 15% approval rating on Rotten Tomatoes. Several weeks after the events of the first film, FBI agent Gracie Hart has become a celebrity after she infiltrated the beauty pageant on her last assignment. Her fame resulted in her cover being blown while she is trying to prevent a bank heist. To capitalize on her publicity, the FBI decide to make Gracie the new \"\"face\"\" of the FBI. Hurt after being dumped by her boyfriend, fellow Agent Eric Matthews (who gets relocated to Miami), she agrees to the"} +{"qid": "test285", "pid": "16275065", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"136th (2/1st Devon and Cornwall) Brigade\"\nunits fighting in the Middle East and later complete battalions. It was reformed as 136th Infantry Brigade in the Territorial Army in 1939, again as a duplicate formation, when another European conflict with Germany seemed inevitable. During the Second World War, the brigade was active in the United Kingdom throughout its service. It was disbanded on 31 August 1944. The brigade was reformed on 1 February 1945 for the reception of troops returning from overseas. It did not see service outside the United Kingdom during the war. In accordance with the Territorial and Reserve Forces Act 1907 (\"\"7 Edw. 7,"} +{"qid": "test285", "pid": "4432582", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"World War II by country\"\nUnion. Ukraine was part of the Soviet Union during World War II. So see this article's section on the Soviet Union. The United Kingdom was one of the original Allies, entering the war in 1939 to honour its guarantees to Poland. After the fall of France, the United Kingdom was the only Allied nation left in Europe until the invasion of Greece. It remained the only one of the Big Three in the war until 1941 when the Soviet Union was invaded. The United Kingdom was heavily engaged in the Western European, Atlantic, Mediterranean, African and South East Asian theatres,"} +{"qid": "test285", "pid": "16275033", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"134th (2/1st Hampshire) Brigade\"\ncomplete battalions. By September 1917 the last of its battalions had departed. It was reformed as 134th Infantry Brigade in the Territorial Army in 1939, again as a duplicate formation, when another European conflict with Germany seemed inevitable. During the Second World War, the brigade was active in the United Kingdom throughout its service. It was disbanded on 15 August 1944. The brigade was reformed on 1 September 1944 as part of the 45th (Holding) Division. It did not see service outside the United Kingdom during the war. In accordance with the Territorial and Reserve Forces Act 1907 (\"\"7 Edw."} +{"qid": "test285", "pid": "16275055", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"135th (2/1st South Western) Brigade\"\nMiddle East and later complete battalions. It was reformed as 135th Infantry Brigade in the Territorial Army in 1939, again as a duplicate formation, when another European conflict with Germany seemed inevitable. During the Second World War, the brigade was active in the United Kingdom throughout its service. It was disbanded on 20 July 1944. The brigade was reformed on 1 September 1944 as part of the 45th (Holding) Division. It did not see service outside the United Kingdom during the war. In accordance with the Territorial and Reserve Forces Act 1907 (\"\"7 Edw. 7, c.9\"\") which brought the Territorial"} +{"qid": "test285", "pid": "16782190", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"2/3rd Field Regiment (Australia)\"\n2/3rd Field Regiment (Australia) The 2/3rd Field Regiment was an Australian Army field artillery regiment that was raised for service during the Second World War. Formed in 1939 and assigned to the 6th Division, the regiment was deployed to the United Kingdom to defend against a possible invasion in 1940 before being sent to North Africa, where it briefly saw action prior to being sent to Greece and Crete in 1941. In 1942, the regiment returned to Australia, after which it did not see action again until late in the war when it was committed to the Aitape–Wewak campaign in"} +{"qid": "test285", "pid": "20771402", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"Military history of the Dominion of Newfoundland during World War II\"\nof American forces during the Battle of the Bulge. The 59th ended the war in Germany, firing its last shots against Hamburg on May 2, 1945. During the North-West Europe campaign, the main guns of the 59th were the 7.2\"\" Howitzer and the American-made 155mm 'Long Tom'. Military history of the Dominion of Newfoundland during World War II When the Second World War broke-out, the Dominion of Newfoundland was a Dominion governed directly from the United Kingdom via the Commission of Government. Newfoundland declared war on Germany on 4 September 1939, one day after the United Kingdom. The period between"} +{"qid": "test285", "pid": "16393409", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\".55 Boys\"\nthe Commonwealth of Nations by firms such as Kynoch. However, when the United Kingdom entered World War II, the .55 Boys round was soon found to be insufficient against even early war Axis tanks in late 1939 and 1940. However, the United Kingdom had to rely on the .55 Boys round for several years because no better infantry anti-tank weapons were available. When the PIAT anti-tank weapon was introduced in 1943, the shaped charges it fired proved to be far more effective against enemy armor than the .55 Boys round had The Boys rifle was phased out of service as"} +{"qid": "test285", "pid": "429133", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"United Kingdom\"\n1931. Northern Ireland remained part of the United Kingdom. A wave of strikes in the mid-1920s culminated in the General Strike of 1926. Britain had still not recovered from the effects of the war when the Great Depression (1929–1932) occurred. This led to considerable unemployment and hardship in the old industrial areas, as well as political and social unrest in the 1930s, with rising membership in communist and socialist parties. A coalition government was formed in 1931. Britain entered the Second World War by declaring war on Nazi Germany in 1939 after Germany had invaded Poland. Winston Churchill became prime"} +{"qid": "test285", "pid": "17263679", "query": "when did the united kingdom entered world war 2", "answer": "1939", "passage": "\"HMS Vanquisher (D54)\"\nassigned to the Atlantic Fleet and Mediterranean Fleet, and in 1938 she was attached to the 1st Antisubmarine Flotilla at Portland, England. After the United Kingdom entered World War II in September 1939, \"\"Vanquisher\"\", \"\"Winchelsea\"\", the destroyer leader , and the destroyers , , , , and , were assigned to the 11th Destroyer Flotilla at Plymouth for convoy escort and patrol duties in the Western Approaches. \"\"Vanquisher\"\", \"\"Walker\"\", and \"\"Winchelsea\"\" escorted Convoy OB 2 on 9 September 1939, and were returning to Plymouth from this duty when \"\"Vanquisher\"\" and \"\"Walker\"\" collided in the North Atlantic Ocean about 200 nautical"} +{"qid": "test2850", "pid": "5470194", "query": "who played nicky on the drew carey show", "answer": "Kate Walsh", "passage": "\"Kate Walsh (actress)\"\nin the \"\"\"\" episode \"\"Stakeout\"\" in 1996 and Navy Lieutenant Kirstin Blair in the \"\"Law & Order\"\" episode \"\"Navy Blues\"\", her first major television appearance was in 1997, when she appeared on \"\"The Drew Carey Show\"\" as Drew Carey's love interest, Nicki Fifer. She wore a fatsuit in some episodes of the show, as the Nicki character was a formerly obese woman who lost weight and slowly started to gain it back. She went on to portray Carol Nelson in HBO's \"\"The Mind of the Married Man\"\" television series, and played Norm Macdonald's romantic interest in the sitcom \"\"The Norm"} +{"qid": "test2851", "pid": "8143360", "query": "who designed the traffic circle in long beach ca", "answer": "German engineer Werner Ruchti", "passage": "\"Los Alamitos Circle\"\nLos Alamitos Circle The Los Alamitos Traffic Circle, informally known as the Long Beach Traffic Circle (or just the \"\"Traffic Circle\"\", as there is only 1 other high volume traffic circle in Southern California), is a roundabout at the intersection of Lakewood Boulevard (State Route 19), Pacific Coast Highway (State Route 1/former U.S. Route 101 Alternate) and Los Coyotes Diagonal in Long Beach, California. The intersection was originally constructed as a traffic circle in 1930 and reconstructed as a modern roundabout in 1993. In 1930, German engineer Werner Ruchti was contracted to design the traffic circle, which was to be"} +{"qid": "test2853", "pid": "2964936", "query": "what type of tale is the pardoner's tale", "answer": "a moral tale", "passage": "\"The Pardoner's Tale\"\nThe Pardoner's Tale \"\"The Pardoner's Tale\"\" is one of \"\"The Canterbury Tales\"\" by Geoffrey Chaucer. In the order of the Tales, it comes after The Physician's Tale and before The Shipman's Tale; it is prompted by the Host's desire to hear something positive after that depressing tale. The Pardoner initiates his Prologue—briefly accounting his methods of conning people—and then proceeds to tell a moral tale. The tale itself is an extended exemplum. Setting out to kill Death, three young men encounter an Old Man who says they will find him under a nearby tree. When they arrive they discover a"} +{"qid": "test2853", "pid": "2964938", "query": "what type of tale is the pardoner's tale", "answer": "a moral tale", "passage": "\"The Pardoner's Tale\"\nher father beheads her. The invitation for the Pardoner to tell a tale comes after the Host declares his dissatisfaction with the depressing tale, and declares: The Host then asks the Pardoner to \"\"telle us som mrythe or japes [joke, jest] right anon\"\". However, the pilgrims—aware of pardoners' notoriety for telling lewd tales and in anticipation of hearing something objectionable—voice their desire for no ribaldry, but instead want a moral tale. The prologue takes the form of a literary confession in the same manner as The Wife of Bath's Prologue. However, rather than an apology for his vices, the Pardoner"} +{"qid": "test2853", "pid": "2964941", "query": "what type of tale is the pardoner's tale", "answer": "a moral tale", "passage": "\"The Pardoner's Tale\"\ncan nonetheless preach so that others turn away from the vice and repent—though his \"\"principal entente\"\" is for personal gain. The Pardoner explains that he then offers many anecdotes to the \"\"lewed [ignorant, unlearned] people\"\". He scorns the thought of living in poverty while he preaches; he desires \"\"moneie, wolle [wool], chese, and whete\"\" and doesn't care whether it were from the poorest widow in the village, even should her children starve for famine. Yet, he concludes to the pilgrims, though he may be a \"\"ful vicious man\"\", he can tell a moral tale and proceeds. The tale is set"} +{"qid": "test2854", "pid": "9023141", "query": "who scored fastest 10000 runs in test cricket", "answer": "Sachin Tendulkar", "passage": "\"Tamim Iqbal\"\nin March 2010, Tamim scored 86 runs from 120 deliveries. In the process he became the fastest Bangladesh batsman to reach 1,000 Test runs in terms of innings, taking 19 to reach the landmark. He also became the third-youngest player in Test history (behind Sachin Tendulkar and compatriot Mohammad Ashraful) to reach 1,000 Test runs. In May that year, Bangladesh toured England for two more Tests and three ODIs. Though his team lost 2–0, Tamim scored a century in each of the Tests. For his performances against England, Tamim was named one of the \"\"Wisden Cricketers' Almanack's\"\" four Cricketers of"} +{"qid": "test2854", "pid": "5453579", "query": "who scored fastest 10000 runs in test cricket", "answer": "Alastair Cook", "passage": "\"Alastair Cook\"\nto become the youngest batsman to score 10000 Test runs beating Sachin Tendulkar’s 11-year-old record. The 31-year-old broke the record on the fourth day of the second Test match against Sri Lanka at Chester Le Street. He became the 12th international cricketer to reach the landmark and the first Englishman. He scored 47 in England’s second innings to help England to a convincing nine wicket victory. In the first innings of the third Test, he scored 85 to help England to 416. He came in down the order for England's second innings after being injured in the field and made"} +{"qid": "test2854", "pid": "14011706", "query": "who scored fastest 10000 runs in test cricket", "answer": "Brian Lara", "passage": "\"Virender Sehwag\"\nChennai, having reached 300 off just 278 balls, the fastest triple century in test history. Sehwag became only the third batsman after Sir Donald Bradman and Brian Lara to score 2 triple centuries in Test Cricket. He scored 257 runs the third day of the match, which was the most runs scored by an individual batsman on a single day of a Test match since 1954, when Dennis Compton made 273 runs on the second day of the Nottingham Test against Pakistan. He has a habit of making big centuries, with his last eleven centuries having all been over 150,"} +{"qid": "test2854", "pid": "6441880", "query": "who scored fastest 10000 runs in test cricket", "answer": "Kumar Sangakkara", "passage": "\"Upul Tharanga\"\nand 12 man of the match titles for his name throughout his international career. Tharanga is the fastest Sri Lankan to reach 4000 ODI runs, reached by 119 innings. After 8 years of scarcity for Test cricket, Tharanga was called to the third Test match against Pakistan on 3 July 2015. He was used as the replacement for Kumar Sangakkara who did play for first two Tests, but not to third Test at Kandy, due to his retirement consideration during India tour. He scored 46 runs in the first innings and 48 in the second innings. However, Sri Lanka lost"} +{"qid": "test2854", "pid": "3583368", "query": "who scored fastest 10000 runs in test cricket", "answer": "Brian Lara", "passage": "\"Chris Gayle\"\nand ODI series. Gayle, however, went to on score a match winning 88 in the first official match of the 2009 Twenty20, in a surprise victory over Australia. On 17 December 2009 in the Australia v West Indies 3rd Test Chris Gayle scored the then fifth-fastest century in Test match history, taking just 70 balls to reach 100, including nine fours and six sixes. He was dismissed two balls later for 102 runs. On 16 November 2010, he became the fourth cricketer to score two triple centuries in Test cricket after Donald Bradman, Brian Lara and Virender Sehwag. On his"} +{"qid": "test2855", "pid": "18314950", "query": "when did red dead redemption 1 come out", "answer": "May 18, 2010", "passage": "\"Development of Red Dead Redemption\"\nDevelopment of Red Dead Redemption The development of \"\"Red Dead Redemption\"\" began in 2005. Rockstar Games released \"\"Red Dead Redemption\"\" on May 18, 2010, for PlayStation 3 and Xbox 360. One of their studios, Rockstar San Diego, oversaw the work, sharing it with other studios around the world. The development team considered the game a spiritual successor to \"\"Red Dead Revolver\"\". \"\"Red Dead Redemption\"\" was delayed numerous times through its four-year development, often attributed to technological problems. The working hours and managerial style of the studio during development was met with public complaints from staff members. \"\"Red Dead Redemption\"\" was"} +{"qid": "test2855", "pid": "10320716", "query": "when did red dead redemption 1 come out", "answer": "May 2010", "passage": "\"Red Dead Redemption\"\na sequel. The game, \"\"Red Dead Redemption 2\"\", was officially announced by Rockstar that same month and was released on the PlayStation 4 and Xbox One on October 26, 2018. Notes Footnotes Red Dead Redemption Red Dead Redemption is a Western-themed action-adventure game developed by Rockstar San Diego and published by Rockstar Games. A spiritual successor to 2004's \"\"Red Dead Revolver\"\", it is the second game in the \"\"Red Dead\"\" series, and was released for the PlayStation 3 and Xbox 360 in May 2010. \"\"Red Dead Redemption\"\" is set during the decline of the American frontier in the year 1911"} +{"qid": "test2855", "pid": "10320673", "query": "when did red dead redemption 1 come out", "answer": "May 2010", "passage": "\"Red Dead Redemption\"\nRed Dead Redemption Red Dead Redemption is a Western-themed action-adventure game developed by Rockstar San Diego and published by Rockstar Games. A spiritual successor to 2004's \"\"Red Dead Revolver\"\", it is the second game in the \"\"Red Dead\"\" series, and was released for the PlayStation 3 and Xbox 360 in May 2010. \"\"Red Dead Redemption\"\" is set during the decline of the American frontier in the year 1911 and follows John Marston, a former outlaw whose wife and son are taken hostage by the government in ransom for his services as a hired gun. Having no other choice, Marston sets"} +{"qid": "test2855", "pid": "18314986", "query": "when did red dead redemption 1 come out", "answer": "May 18, 2010", "passage": "\"Development of Red Dead Redemption\"\nworkflow to avoid similar situations in the future. In April 2010, an email sent by Rockstar's public relations department to a journalist of the magazine \"\"Zoo\"\" was published online. The email reported that Rockstar was requesting \"\"Zoo\"\"s review of the game should reflect \"\"the huge achievement\"\" of \"\"Red Dead Redemption\"\". Subsequently, \"\"Zoo\"\" fired the journalist, reiterating that \"\"at no time has Rockstar ever sought a preferential review in return for advertising\"\". Notes References Development of Red Dead Redemption The development of \"\"Red Dead Redemption\"\" began in 2005. Rockstar Games released \"\"Red Dead Redemption\"\" on May 18, 2010, for PlayStation 3"} +{"qid": "test2855", "pid": "3623800", "query": "when did red dead redemption 1 come out", "answer": "May 18, 2010", "passage": "\"Red Dead Revolver\"\nDie\"\". The first glimpse at a sequel was in 2005 when Rockstar showed a teaser at a Sony press conference. The successor to \"\"Red Dead Revolver\"\", \"\"Red Dead Redemption\"\", was officially announced for PlayStation 3 and Xbox 360 in 2009. After a few delays in release dates, it was finally released on May 18, 2010 in North America, and on May 21, 2010 in Europe and Australia to critical acclaim, with many reviewers praising the game's gameplay and technical improvements over its predecessor. \"\"Red Dead Redemption 2\"\" was confirmed by Rockstar in October 2016, and was released on October 26,"} +{"qid": "test2855", "pid": "4420221", "query": "when did red dead redemption 1 come out", "answer": "May 2010", "passage": "\"Rockstar San Diego\"\nof 13 million copies by July 2013, when Take-Two Interactive chief executive officer Strauss Zelnick listed \"\"Red Dead Redemption\"\" as one of the company's strategic \"\"permanent franchises\"\", alongside \"\"Grand Theft Auto\"\", as well as others. Some critics pronounced \"\"Red Dead Redemption\"\" as the best work ever created by Rockstar San Diego, and among the best by Rockstar Games. Additionally, in November 2017, Business Insider India listed \"\"Red Dead Redemption\"\" as the 36th-best game ever made, as measured by critical reception. Following the game's release in May 2010, at which point it had already sold five million copies, approximately 40 of"} +{"qid": "test2855", "pid": "18314988", "query": "when did red dead redemption 1 come out", "answer": "May 2010", "passage": "\"Music of Red Dead Redemption\"\nsuch as Tommy Morgan during production. Four supplementary vocal recordings were also produced for the game. The soundtrack album for \"\"Red Dead Redemption\"\" was released on iTunes in May 2010. Additional compositions, composed for the game's downloadable content \"\"\"\", were released on a second soundtrack in November 2010. Critical reception to the soundtracks was positive, as reviewers felt that the music connected appropriately with the gameplay and genre. The game's music was nominated for numerous awards. Several tracks became popular and begot cover versions and live performances. \"\"Red Dead Redemption\"\" is one of the first games by Rockstar to use"} +{"qid": "test2857", "pid": "3179642", "query": "list of books written by abul kalam azad", "answer": "Ghubar-e-Khatir", "passage": "\"Abul Kalam Azad\"\npopularity increasing across India, the government outlawed Azad's second publication under the \"\"Defence of India Regulations Act\"\" and arrested him. The governments of the Bombay Presidency, United Provinces, Punjab and Delhi prohibited his entry into the provinces and Azad was moved to a jail in Ranchi, where he was incarcerated until 1 January 1920. Maulana Azad is considered one of the greatest Urdu writers of the 20th century. He has written many books including \"\"India Wins Freedom\"\", Ghubar-e-Khatir, Tazkirah, Tarjumanul Quran (Urdu تذکرہ ترجمان القُران), etc. Ghubar-e-Khatir (\"\"Sallies of Mind\"\"), () is one of the most important works of Maulana"} +{"qid": "test2858", "pid": "4514831", "query": "who is next in line to inherit the british throne", "answer": "Charles, Prince of Wales", "passage": "\"House of Burke\"\nEarldom of Ulster originally a de burgh peerage was inherited by Richard of York, 3rd Duke of York (a great grandson of Philippa, 5th Countess of Ulster) Head of the House of York whose son Edward IV of England in turn inherited the peerage at which point it was merged with the Crown Frances Shand Kydd the daughter of Edmund Maurice Burke Roche, 4th Baron Fermoy and descendent of the de burgh family was the mother of Diana, Princess of Wales who married Charles, Prince of Wales 1st in line to the British Throne and was the mother of William,"} +{"qid": "test2860", "pid": "2407016", "query": "how many writes does a flash drive have", "answer": "up to 100,000", "passage": "\"USB flash drive\"\ndevices, storage capacities have risen while prices have dropped. , flash drives with anywhere from 8 to 256 GB were frequently sold, while 512 GB and 1 TB units were less frequent. As of 2018, 2TB flash drives were the largest available in terms of storage capacity. Some allow up to 100,000 write/erase cycles, depending on the exact type of memory chip used, and are thought to last between 10 and 100 years under normal circumstances (shelf storage time). USB flash drives are often used for storage, data back-up and transfer of computer files. Compared with floppy disks or CDs,"} +{"qid": "test2864", "pid": "17567599", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Dave Malloy", "passage": "\"Natasha, Pierre & The Great Comet of 1812\"\nfrom the original cast recording, and two featuring Josh Groban and a 25 piece orchestra. Natasha, Pierre & The Great Comet of 1812 Natasha, Pierre & The Great Comet of 1812 is a sung-through musical adaptation of a 70-page segment from Leo Tolstoy's \"\"War and Peace\"\" written by composer/lyricist Dave Malloy and directed by Rachel Chavkin. It is based on Volume 2, Part 5 of Tolstoy's novel, War and Peace, focusing on Natasha's affair with Anatole and Pierre's search for meaning in his life. After its original run at the Ars Nova in 2012, a staging in both the Meatpacking"} +{"qid": "test2864", "pid": "17567576", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Dave Malloy", "passage": "\"Natasha, Pierre & The Great Comet of 1812\"\nNatasha, Pierre & The Great Comet of 1812 Natasha, Pierre & The Great Comet of 1812 is a sung-through musical adaptation of a 70-page segment from Leo Tolstoy's \"\"War and Peace\"\" written by composer/lyricist Dave Malloy and directed by Rachel Chavkin. It is based on Volume 2, Part 5 of Tolstoy's novel, War and Peace, focusing on Natasha's affair with Anatole and Pierre's search for meaning in his life. After its original run at the Ars Nova in 2012, a staging in both the Meatpacking District and the Theater District of Manhattan in 2013, a 2014 Spanish-language staging in Quito,"} +{"qid": "test2864", "pid": "10068963", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Phillipa Soo", "passage": "\"Asian Americans in arts and entertainment\"\nOctober 2015 to February 2016, is set during the Japanese American internment of World War II (with a framing story set in the present day), and was inspired by the personal experiences of George Takei, who stars in the musical along with Lea Salonga. Phillipa Soo starred as Natasha Rostova in \"\"Natasha, Pierre & The Great Comet of 1812\"\" in the Off-Broadway productions, and as Elizabeth Schuyler in the original Broadway cast of \"\"Hamilton\"\", winning a cast Grammy Award for musical theater album. Kimiko Glenn starred as Dawn in the original Broadway cast of \"\"Waitress\"\", the musical adaption of the"} +{"qid": "test2864", "pid": "1995004", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Dave Malloy", "passage": "\"Great Comet of 1811\"\n\"\"Napoleon's Comet\"\") and the War of 1812, among other events. In the widely acclaimed musical \"\"Natasha, Pierre and the Great Comet of 1812,\"\" Pierre witnesses the comet. When asked why the comet made it into the title of the show, the composer Dave Malloy responded \"\"for cosmic epicness.\"\" The year 1811 turned out to be particularly fine for wine production, and merchants marketed \"\"Comet Wine\"\" at high prices for many years afterwards. The film \"\"Year of the Comet\"\", a 1992 romantic comedy adventure film, is based on this premise and tells the story of the pursuit of a contemporarily discovered"} +{"qid": "test2864", "pid": "18959298", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Dave Malloy", "passage": "\"Phillipa Soo\"\nfrom 2004 to 2008. Soo graduated from The Juilliard School's acting program in 2012. After graduating from Juilliard in 2012, Soo was cast as Natasha Rostova in the Ars Nova production of Dave Malloy's \"\"Natasha, Pierre & The Great Comet of 1812\"\", based on Leo Tolstoy's \"\"War & Peace\"\"; the show went on to transfer from Ars Nova to another Off-Broadway space: Kazino, a tent custom built for the show. After seeing her performance in \"\"Great Comet\"\", director Thomas Kail and composer Lin-Manuel Miranda asked her to take part in an early 2014 reading of the musical \"\"\"\"Hamilton\"\", where she"} +{"qid": "test2864", "pid": "19840167", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Dave Malloy", "passage": "\"Brittain Ashford\"\nBrittain Ashford Brittain Ashford is an American actress and musician best known for portraying Sonya Rostova in the 2016 Broadway musical \"\"Natasha, Pierre, & the Great Comet of 1812.\"\" As a singer-songwriter and multi-instrumentalist, she is best known for fronting the band Prairie Empire. Born in Seattle, Washington, Ashford attended Roosevelt High School. She attended college at the University of Washington, Seattle. Ashford's first theatrical performance was as Sonya Rostova in the 2012 Ars Nova production of close friend Dave Malloy's \"\"Natasha, Pierre, & The Great Comet of 1812.\"\" Ashford continued to perform with the show in all future incarnations"} +{"qid": "test2864", "pid": "18140607", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Dave Malloy", "passage": "\"Rachel Chavkin\"\nWorkshop in December 2010 to January 2011. She won the 2010 Obie Award, Obie Special Citation for \"\"Three Pianos\"\". She directed Dave Malloy's \"\"Natasha, Pierre & The Great Comet of 1812\"\", which ran Off-Broadway in 2013-2014. \"\"Natasha, Pierre & The Great Comet of 1812\"\" received the 2013 Obie Award, Special Citation. Under her direction, the musical opened on Broadway at the Imperial Theatre on November 14, 2016. At the 71st Tony Awards, the musical received twelve nominations, the highest number for the 2016-17 season, including a nomination for Chavkin for Best Director of a Musical. She directed \"\"The Royale\"\" by"} +{"qid": "test2864", "pid": "17567591", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Shaina Taub", "passage": "\"Natasha, Pierre & The Great Comet of 1812\"\n2013 at the Kazino and moved to the Theater District, with the final cast of the previous production: Choksi reprised the role of Dolokhov, Bell was replaced by Shaina Taub, and Pinto was replaced by Ashkon Davaran. On December 10, 2013, the two-disc cast recording was released. The show was extended and ran until March 2, 2014. The team behind the original production remounted the show at the American Repertory Theatre (A.R.T.) in Cambridge, Massachusetts, with performances beginning December 1, 2015 to January 2016. Now expanded to a proscenium stage, the set put audience onstage, with unique seating options, with"} +{"qid": "test2864", "pid": "17567589", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Amber Gray", "passage": "\"Natasha, Pierre & The Great Comet of 1812\"\nas an immersive production, with action happening around and among the audience. The set designed by Mimi Lien and lights by Bradley King transformed Ars Nova into a Russian supper club. The creative team was completed by Paloma Young as costume designer, Matt Hubbs as sound designer, and Dave Malloy as musical director. The cast included Malloy as Pierre, Phillipa Soo as Natasha, Lucas Steele as Anatole, Amber Gray as Hélène, Brittain Ashford as Sonya, Nick Choksi as Dolokhov, Gelsey Bell as Mary, Blake DeLong as Andrey/Prince Bolkonsky, Amelia Workman as Marya D. and Paul Pinto (who also served as"} +{"qid": "test2864", "pid": "18959296", "query": "original cast of natasha pierre and the great comet of 1812", "answer": "Phillipa Soo", "passage": "\"Phillipa Soo\"\nPhillipa Soo Phillipa Soo (; born May 31, 1990) is an American actress and singer. She is best known for originating the role of Eliza Schuyler Hamilton in the Broadway musical \"\"Hamilton\"\", a performance for which she was nominated for the 2016 Tony Award for Best Actress in a Musical. Her additional stage credits include the role of Natasha Rostova, which Soo originated in a number of New York productions of \"\"Natasha, Pierre & The Great Comet of 1812\"\" in 2012 and 2013, and the title role in \"\"Amélie\"\", which Soo originated on Broadway in 2017. Most recently, Soo appeared"} +{"qid": "test2865", "pid": "7528595", "query": "who sang smoke gets in your eyes first", "answer": "Gertrude Niesen", "passage": "\"Smoke Gets in Your Eyes\"\nSmoke Gets in Your Eyes \"\"Smoke Gets in Your Eyes\"\" is a show tune written by American composer Jerome Kern and lyricist Otto Harbach for the 1933 musical \"\"Roberta\"\". The song was sung in the Broadway show by Tamara Drasin. Its first recorded performance was by Gertrude Niesen, who recorded the song with orchestral direction from Ray Sinatra, Frank Sinatra's second cousin, on October 13, 1933. Niesen's recording of the song was released by Victor, with the B-side, \"\"Jealousy\"\", featuring Isham Jones and his Orchestra. Paul Whiteman had the first hit recording of the song on the record charts in"} +{"qid": "test2866", "pid": "5539635", "query": "what are the main crops grown in the united states", "answer": "Tobacco", "passage": "Mareeba\nmaking up 10.8% of the town's population. Mareeba has a number of heritage-listed sites, including: Mareeba has a tropical savanna climate. Mareeba's tag line on signs coming into the region is \"\"300 sunny days a year\"\" this is because Mareeba is in what is called a rain shadow. Numerous crops are grown throughout Mareeba Shire, including avocados, mangoes, lychees, longans, sugar cane, cashews, macadamias, bananas, pineapples, tea tree oil, coffee, and a variety of vegetables and tropical fruits. Poultry and cattle are also common. Tobacco was once the main grown crop of the local economy, but is no longer grown"} +{"qid": "test2866", "pid": "12026995", "query": "what are the main crops grown in the united states", "answer": "Tobacco", "passage": "\"Staunton River State Park\"\nsack of fertilizer with his teeth and pick up a barrel full of liquor in his hands and drink out of the bunghole. After the war, the Fork Plantation fell into ruins. Tenant farmers took over the land of the plantation. The land near the rivers was rich and fertile, and crops grew well; each year, of corn was harvested. Tobacco was the main crop, and large quantities were grown. One landlord usually had around 50 tenant farmers and their families living in what is today the park. In 1899, there was a Christian social colony from Wisconsin at the"} +{"qid": "test2866", "pid": "1729551", "query": "what are the main crops grown in the united states", "answer": "Cotton", "passage": "Durango\nsupported by its three main rivers: the Florida, the Alto Nazas and the Tunal-Mezquital, which have been dammed primarily for this purpose. Pastures in this area support large herds of cattle, much of which are exported to the United States. Sheep and goats are also raised here. Another important agricultural area has been the La Laguna region, despite its dry climate. Cotton was the main commodity crop of the La Laguna from the late 19th century to the 1970s. While some cotton and other crops such as alfalfa, wheat, grapes, sorghum and corn are grown, it is limited to areas"} +{"qid": "test2866", "pid": "3094218", "query": "what are the main crops grown in the united states", "answer": "Rice", "passage": "\"Thane district\"\nforce was 22.89% in the district. The important kharif crops of the district are rice, vari and nachani (finger millet). The pulses like Urad, moong and kulith are also grown in this season. Rice is the main crop of the district. Rice is grown in all the talukas of the district but mainly in Palghar, Bhiwandi, Murbad, Shahapur, Vada, Vikramgad and Dahanu. Vari and nachani are grown in the hilly areas of the eastern part of the district, namely Jawhar, Murbad, Vikramgad, Shahapur and Mokhada talukas. Wal, chavali and gram are the main rabi crops grown in this district. Dahanu"} +{"qid": "test2866", "pid": "17353382", "query": "what are the main crops grown in the united states", "answer": "Alfalfa", "passage": "\"Petroleum County, Montana\"\naverage size of farms was 6,045 acres and the area under all harvested wheat grain was . The major crops grown in the county are wheat (both winter wheat and spring wheat) and barley. Alfalfa and grass hay are grown as cattle feed under irrigated conditions along the main river course and also on the banks of creeks such as Flat Willow, Box Elder, and Macdonald. As of the 2010 United States Census, there were 494 people, 225 households, and 143 families residing in the county. The population density was . There were 324 housing units at an average density"} +{"qid": "test2866", "pid": "9152006", "query": "what are the main crops grown in the united states", "answer": "Rice", "passage": "\"Economy of Karnataka\"\nMarch). Given below is a table of 2015 national output share of select agricultural crops and allied segments in Karnataka based on 2011 prices The main crops grown are Rice, Ragi, Jowar (sorghum), maize, and pulses (Tur and gram) in addition to oilseeds and a number of other cash crops. Cashews, coconut, arecanut, cardamom, chillies, cotton, sugarcane and tobacco are also produced. Karnataka is the largest producer of coarse cereals, coffee, raw silk and tomatoes among the states in India. Horticultural crops are grown in an area of 16,300 km² and the annual production is about 9.58 million tons. The"} +{"qid": "test2866", "pid": "17437008", "query": "what are the main crops grown in the united states", "answer": "Rice", "passage": "Goa\nwith fewer restrictions. Rice is the main food crop, and pulses (legume), \"\"Ragi\"\" (Finger Millet) and other food crops are also grown. Main cash crops are coconut, cashewnut, arecanut, sugarcane and fruits like pineapple, mango and banana. Goa's state animal is the Gaur, the state bird is the Ruby Throated Yellow Bulbul, which is a variation of Black-crested Bulbul, and the state tree is the Matti(Asna). The important forests products are bamboo canes, Maratha barks, chillar barks and the bhirand. Coconut trees are ubiquitous and are present in almost all areas of Goa barring the elevated regions. A large number"} +{"qid": "test2866", "pid": "11745823", "query": "what are the main crops grown in the united states", "answer": "Rice", "passage": "\"Agriculture in Madagascar\"\nAgriculture in Madagascar Agriculture employs the majority of Madagascar's population. Mainly involving smallholders, agriculture has seen different levels of state organisation, shifting from state control to a liberalized sector. Rice is the main produce and main export crop of Madagascar. It is mainly planted in a terraced paddy system in the central highlands. Other major subsistence crops include cassava, corn, and sweet potato, while coffee, cloves, vanilla and other cash crops are exported. Among livestock, zebu account for most of the cattle, while pigs, sheep and poultry are also raised. Fishing is popular, and aquaculture has grown in importance. Madagascar"} +{"qid": "test2867", "pid": "6902897", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\nthe Delano rooms remained among the largest standard rooms of any hotel on the Las Vegas Strip. Rooms included 28 penthouses, and dog-friendly suites. Delano Las Vegas Delano Las Vegas (formerly known as THEhotel) is a 43-story 1,118 room luxury suite hotel. It is owned and operated by MGM Resorts International. It is located within the Mandalay Bay complex on the Las Vegas Strip in Paradise, Nevada. It opened on December 17, 2003, as \"\"THEhotel at Mandalay Bay.\"\" In 2012, owner MGM Resorts International announced a partnership with Morgans Hotel Group to rebrand the hotel as Delano Las Vegas. Construction"} +{"qid": "test2867", "pid": "6902883", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Delano Las Vegas\"\nDelano Las Vegas Delano Las Vegas (formerly known as THEhotel) is a 43-story 1,118 room luxury suite hotel. It is owned and operated by MGM Resorts International. It is located within the Mandalay Bay complex on the Las Vegas Strip in Paradise, Nevada. It opened on December 17, 2003, as \"\"THEhotel at Mandalay Bay.\"\" In 2012, owner MGM Resorts International announced a partnership with Morgans Hotel Group to rebrand the hotel as Delano Las Vegas. Construction to rebrand the hotel began in April 2014. Several floors were worked on at a time, allowing much of the hotel to remain open"} +{"qid": "test2867", "pid": "3268606", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay\"\nMandalay Bay Mandalay Bay is a 43-story luxury resort and casino on the Las Vegas Strip in Paradise, Nevada. It is owned and operated by MGM Resorts International. One of the property's towers operates as the Delano; the Four Seasons Hotel is independently operated within the Mandalay Bay tower, occupying five floors (35–39). Mandalay Bay has 3,209 hotel rooms, 24 elevators and a casino of . Adjacent to the hotel is the Mandalay Bay Convention Center and the 12,000-seat Mandalay Bay Events Center. The Mandalay Bay Tram connects the resort to its sister properties, Excalibur and Luxor, all three of"} +{"qid": "test2867", "pid": "3268617", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay\"\nrestaurants on the property. Mandalay Bay Mandalay Bay is a 43-story luxury resort and casino on the Las Vegas Strip in Paradise, Nevada. It is owned and operated by MGM Resorts International. One of the property's towers operates as the Delano; the Four Seasons Hotel is independently operated within the Mandalay Bay tower, occupying five floors (35–39). Mandalay Bay has 3,209 hotel rooms, 24 elevators and a casino of . Adjacent to the hotel is the Mandalay Bay Convention Center and the 12,000-seat Mandalay Bay Events Center. The Mandalay Bay Tram connects the resort to its sister properties, Excalibur and"} +{"qid": "test2867", "pid": "6882946", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay Convention Center\"\nconvention center is the tenth largest in the United States Mandalay Bay Convention Center Mandalay Bay Convention Center, located in Paradise, Nevada (part of the Las Vegas metropolitan area) is one of the largest privately owned and operated convention centers in the world. The facility is owned and operated by MGM Resorts International. It is attached to the Mandalay Bay hotel and casino, and is adjacent to the Mandalay Bay Events Center. The facility can support up to 75 breakout sessions and has several ballrooms with the largest being . At opening in January 2003, it was the fifth largest"} +{"qid": "test2867", "pid": "6882945", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay Convention Center\"\nMandalay Bay Convention Center Mandalay Bay Convention Center, located in Paradise, Nevada (part of the Las Vegas metropolitan area) is one of the largest privately owned and operated convention centers in the world. The facility is owned and operated by MGM Resorts International. It is attached to the Mandalay Bay hotel and casino, and is adjacent to the Mandalay Bay Events Center. The facility can support up to 75 breakout sessions and has several ballrooms with the largest being . At opening in January 2003, it was the fifth largest convention center in the United States. As of 2017, the"} +{"qid": "test2867", "pid": "5673721", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay Events Center\"\nMandalay Bay Events Center Mandalay Bay Events Center is a 12,000-seat indoor arena at the Mandalay Bay Resort and Casino, on the Las Vegas Strip, in Paradise, Nevada. It is owned and operated by MGM Resorts International and hosts a number of various music, basketball, boxing and mixed martial arts events. The Events Center hosts boxing matches, including the high-profile Amir Khan vs. Zab Judah Light welterweight title unification match on July 23, 2011. As of July 2018, the Mandalay Bay Events Center has held 31 Ultimate Fighting Championship events, starting with UFC 33, and most recently, UFC Fight Night"} +{"qid": "test2867", "pid": "5673726", "query": "who is the owner of the mandalay bay in vegas", "answer": "MGM Resorts International", "passage": "\"Mandalay Bay Events Center\"\non May 21, 2011. On May 14, 2017 the arena hosted Miss USA 2017 pageant. The 25th \"\"Billboard\"\" Latin Music Awards was held in the Events Center on April 26, 2018. Mandalay Bay Events Center Mandalay Bay Events Center is a 12,000-seat indoor arena at the Mandalay Bay Resort and Casino, on the Las Vegas Strip, in Paradise, Nevada. It is owned and operated by MGM Resorts International and hosts a number of various music, basketball, boxing and mixed martial arts events. The Events Center hosts boxing matches, including the high-profile Amir Khan vs. Zab Judah Light welterweight title unification"} +{"qid": "test2869", "pid": "7567564", "query": "what is the shannara chronicles season 2 based on", "answer": "The Sword of Shannara Trilogy", "passage": "\"The Sword of Shannara Trilogy\"\nThe Sword of Shannara Trilogy The Sword of Shannara Trilogy consists of the first three \"\"Shannara\"\" novels (\"\"The Sword of Shannara\"\", \"\"The Elfstones of Shannara\"\" and \"\"The Wishsong of Shannara\"\") by Terry Brooks. Though not originally written as a trilogy, the novels were published as \"\"The Sword of Shannara Trilogy\"\" by Del Rey Books. The first novel of \"\"The Original Shannara Trilogy\"\" chronicles the adventures of the brothers Shea and Flick Ohmsford in their quest to retrieve the Sword of Shannara to defeat the Warlock Lord who threatens the Four Lands. The second novel of \"\"The Original Shannara Trilogy\"\" follows"} +{"qid": "test287", "pid": "5683247", "query": "who invented the cornell method of note taking", "answer": "Walter Pauk", "passage": "\"Cornell Notes\"\nonly a fast method of writing notes, but one is able to absorb the information that is given at a faster rate. This results in better exam outcomes. This method can improve student's studying and listening skills. Cornell Notes The Cornell Notes system (also Cornell note-taking system, Cornell method, or Cornell way) is a note-taking system devised in the 1940s by Walter Pauk, an education professor at Cornell University. Pauk advocated its use in his best-selling book \"\"How to Study in College\"\". The Cornell method provides a systematic format for condensing and organizing notes. This system of taking notes is"} +{"qid": "test287", "pid": "5683242", "query": "who invented the cornell method of note taking", "answer": "Walter Pauk", "passage": "\"Cornell Notes\"\nCornell Notes The Cornell Notes system (also Cornell note-taking system, Cornell method, or Cornell way) is a note-taking system devised in the 1940s by Walter Pauk, an education professor at Cornell University. Pauk advocated its use in his best-selling book \"\"How to Study in College\"\". The Cornell method provides a systematic format for condensing and organizing notes. This system of taking notes is designed for a high school or college level student. The student divides the paper into two columns: the note-taking column (usually on the right) is twice the size of the questions/key word column (on the left). The"} +{"qid": "test287", "pid": "4867444", "query": "who invented the cornell method of note taking", "answer": "Walter Pauk", "passage": "Note-taking\ndigital devices when required. The Cornell Method is a systematical structure that help organize your notes, actively involve you in the creation of knowledge, improve your study expertness, and lead to academic success. The Cornell method of taking notes was developed by Dr. Walter Pauk of Cornell University in 1940's. This effective system for taking notes was made prestigious by Pauk's best selling book \"\"How To Study In College\"\" and is commonly used at many universities today. The Cornell method consists of dividing a single page into three sections: Notes, Cues and a Summary, its own system is characterized by"} +{"qid": "test2870", "pid": "11997837", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1970 Baseball Hall of Fame balloting\"\nThe one candidate who received at least 75% of the vote and was elected is indicated in bold italics; candidates who have since been elected in subsequent elections are indicated in \"\"italics\"\". Joe Gordon, Tommy Henrich and Bucky Walters were on the ballot for the final time. 1970 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1970 followed the system of annual elections in place since 1968. The Baseball Writers Association of America (BBWAA) voted by mail to select from recent major league players and elected Lou Boudreau. The Veterans Committee met in closed sessions"} +{"qid": "test2870", "pid": "10464134", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1997 Baseball Hall of Fame balloting\"\n1997 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1997 followed the system in use since 1995. The Baseball Writers Association of America (BBWAA) voted by mail to select from recent major league players and elected Phil Niekro. The Veterans Committee met in closed sessions and selected three people from multiple classified ballots: Nellie Fox, Tommy Lasorda, and Willie Wells. The BBWAA was authorized to elect players active in 1977 or later, but not after 1991; the ballot included candidates from the 1996 ballot who received at least 5% of the vote but were not"} +{"qid": "test2870", "pid": "20569538", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"2019 Baseball Hall of Fame balloting\"\n2019 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 2019 are proceeding according to rules most recently amended in 2016. As in the past, the Baseball Writers' Association of America (BBWAA) will vote by mail to select from a ballot of recently retired players. The results will be announced on January 22, 2019. The Today's Game Era Committee, one of four voting panels that since 2016 have taken over the role of the more broadly defined Veterans Committee, convened on December 9, 2018 to select from a ballot of retired players and non-playing personnel who"} +{"qid": "test2870", "pid": "2498766", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"Veterans Committee\"\nVeterans Committee The Veterans Committee is the popular name of various committees of the National Baseball Hall of Fame that elect participants other than recently retired players. Originally, it referenced the National Baseball Hall of Fame Committee to Consider Managers, Umpires, Executives and Long-Retired Players; a former voting committee of the U.S. Baseball Hall of Fame that provided an opportunity for Hall of Fame enshrinement to all individuals who are eligible for induction but ineligible for consideration by the Baseball Writers' Association of America (BBWAA). The term \"\"Veterans Committee\"\" (was composed of four committees of baseball veterans) is taken from"} +{"qid": "test2870", "pid": "16212376", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"2013 Baseball Hall of Fame balloting\"\n2013 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 2013 took place according to rules most recently revised in July 2010. As in the past, the Baseball Writers' Association of America (BBWAA) voted by mail to select from a ballot of recently retired players, with results announced on January 9, 2013. The Pre-Integration Committee, the last of three new voting committees established during the July 2010 rules change to replace the more broadly defined Veterans Committee, convened early in December 2012 to select from a ballot of players and non-playing personnel who made their greatest"} +{"qid": "test2870", "pid": "10443063", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1998 Baseball Hall of Fame balloting\"\n1998 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1998 followed the system in use since 1995. The Baseball Writers Association of America (BBWAA) voted by mail to select from recent major league players and elected Don Sutton. The Veterans Committee met in closed sessions and selected four people from multiple classified ballots: George Davis, Larry Doby, Lee MacPhail, and Bullet Rogan. The BBWAA was authorized to elect players active in 1978 or later, but not after 1992; the ballot included candidates from the 1997 ballot who received at least 5% of the vote but"} +{"qid": "test2870", "pid": "17019570", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"2014 Baseball Hall of Fame balloting\"\n2014 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 2014 proceeded according to rules most recently revised in July 2010. As in the past, the Baseball Writers Association of America (BBWAA) voted by mail to select from a ballot of recently retired players, with results announced on January 8, 2014. The Expansion Era Committee, one of three voting panels that replaced the more broadly defined Veterans Committee following the July 2010 rules change, convened early in December 2013 to select from a ballot of retired players and non-playing personnel who made their greatest contributions to"} +{"qid": "test2870", "pid": "11985797", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1973 Baseball Hall of Fame balloting\"\nreceiving 393 votes out of 420 ballots cast. 1973 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1973 followed the system in place since 1971, except by adding the special election of Roberto Clemente, who died in a plane crash on New Year's Eve. The Baseball Writers Association of America (BBWAA) voted by mail to select from recent major league players and elected Warren Spahn. The Veterans Committee met in closed sessions to consider executives, managers, umpires, and earlier major league players. It selected three people: Billy Evans, George Kelly, and Mickey Welch. The Negro"} +{"qid": "test2870", "pid": "13043952", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"2011 Baseball Hall of Fame balloting\"\n2011 Baseball Hall of Fame balloting Elections to the National Baseball Hall of Fame for 2011 proceeded according to the rules revised in July 2010. As in the past, the Baseball Writers' Association of America (BBWAA) voted by mail to select from a ballot of recently retired players. The new Expansion Era Committee, that replaced the Veterans Committee, convened in December 2010 to select from an Expansion Era ballot of long-retired players and non-playing personnel who made their greatest contributions to the sport from 1973 to the present time, called the \"\"Expansion Era\"\" by the Hall of Fame. The Hall"} +{"qid": "test2870", "pid": "12447638", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1954 Baseball Hall of Fame balloting\"\n1954 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1954 followed a system practically the same as in 1952 because the new Veterans Committee was meeting only in odd-number years (until 1962). The Baseball Writers Association of America (BBWAA) voted by mail to select from recent players and elected three: Bill Dickey, Rabbit Maranville, and Bill Terry. Any candidate receiving votes on at least 75% of the ballots would be honored with induction to the Hall. Votes were cast for 53 players; a total of 252 ballots were cast, with 189 votes required for election."} +{"qid": "test2870", "pid": "11353421", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1992 Baseball Hall of Fame balloting\"\nHall of Fame. As such, Pete Rose was ineligible for BBWAA election, but received 41 write-in votes. These votes were invalid and thrown out. 1992 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1992 followed the system in place since 1978. The Baseball Writers Association of America (BBWAA) voted by mail to select from recent major league players and elected two, Rollie Fingers and Tom Seaver. The Veterans Committee met in closed sessions to consider older major league players as well as managers, umpires, executives, and figures from the Negro Leagues. It selected two, Bill"} +{"qid": "test2870", "pid": "16550017", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"Allen Lewis (sportswriter)\"\nabout the Philadelphia Phillies until 1972. Lewis officially retired from the Inquirer in 1979. In 1981 he was inducted into the writer's wing of the Baseball Hall of Fame, where he received the J. G. Taylor Spink Award, the highest honor awarded by the Baseball Writers Association of America. He served on the Veterans Committee of the National Baseball Hall of Fame and Museum from 1979 to 2000. In that capacity, Lewis joined a group of Hall-of-Famers who were charged with nominating and voting in new Hall of Fame inductees. He also was the Chairman of Major League Baseball's Scoring"} +{"qid": "test2870", "pid": "13043974", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"2011 Baseball Hall of Fame balloting\"\nassisting veteran scouts who need special support. 2011 Baseball Hall of Fame balloting Elections to the National Baseball Hall of Fame for 2011 proceeded according to the rules revised in July 2010. As in the past, the Baseball Writers' Association of America (BBWAA) voted by mail to select from a ballot of recently retired players. The new Expansion Era Committee, that replaced the Veterans Committee, convened in December 2010 to select from an Expansion Era ballot of long-retired players and non-playing personnel who made their greatest contributions to the sport from 1973 to the present time, called the \"\"Expansion Era\"\""} +{"qid": "test2870", "pid": "12447640", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"1954 Baseball Hall of Fame balloting\"\nloophole were Joe DiMaggio and Ted Lyons. 1954 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 1954 followed a system practically the same as in 1952 because the new Veterans Committee was meeting only in odd-number years (until 1962). The Baseball Writers Association of America (BBWAA) voted by mail to select from recent players and elected three: Bill Dickey, Rabbit Maranville, and Bill Terry. Any candidate receiving votes on at least 75% of the ballots would be honored with induction to the Hall. Votes were cast for 53 players; a total of 252 ballots were"} +{"qid": "test2870", "pid": "19256092", "query": "who votes in the baseball hall of fame", "answer": "Veterans Committee", "passage": "\"2017 Baseball Hall of Fame balloting\"\n2017 Baseball Hall of Fame balloting Elections to the Baseball Hall of Fame for 2017 proceeded according to rules most recently amended in 2016. As in the past, the Baseball Writers' Association of America (BBWAA) voted by mail to select from a ballot of recently retired players, with results announced on January 18, 2017. The BBWAA elected Jeff Bagwell, Tim Raines, and Iván Rodríguez to the Hall of Fame. The three voting panels that replaced the more broadly defined Veterans Committee following a July 2010 rules change were replaced by a new set of four panels in July 2016. The"} +{"qid": "test2872", "pid": "12156798", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Taylor Hayes (The Bold and the Beautiful)\"\nTaylor Hayes (The Bold and the Beautiful) Taylor Hayes is a fictional character from the American CBS soap opera \"\"The Bold and the Beautiful\"\", portrayed by Hunter Tylo. The character was created by William J. Bell and debuted during the episode dated June 6, 1990. Tylo appeared as a regular continuously until 1994 when she took a hiatus for a few months before being written back into the series. In 1996, she left the serial after being cast on \"\"Melrose Place\"\", where she was soon fired on the grounds of being pregnant, and returned shortly after. In 2002, Tylo and"} +{"qid": "test2872", "pid": "12156814", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Taylor Hayes (The Bold and the Beautiful)\"\nSteffy and accuses him of displaying predatory behaviors. During the confrontation, Taylor confesses to shooting Bill and once again pulls a gun on him in a fit of emotional distress. Bill agrees not to press charges against her for Steffy's sake, and Taylor remains in Los Angeles to seek psychiatric help off-screen. Show creator William J. Bell introduced the role of psychiatrist Dr. Taylor Hamilton Hayes, played by actress Hunter Tylo, during the episode dated June 6, 1990. According to \"\"Variety\"\", Bell created Taylor as \"\"a romantic leading lady but also as a character who could facilitate social issues —"} +{"qid": "test2872", "pid": "3437891", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Hunter Tylo\"\nseveral weeks story arc. In 1996, Tylo was cast in the primetime soap opera \"\"Melrose Place\"\" and opted to leave \"\"The Bold and the Beautiful\"\" to take the role. However, she was fired by \"\"Melrose Place\"\" producer Aaron Spelling prior to filming any episodes for the series, when she announced she was pregnant. The character she was to play, Taylor McBride, was recast, Lisa Rinna taking the role. Tylo quickly returned to \"\"The Bold and the Beautiful\"\". Tylo sued Spelling on grounds of discrimination for being pregnant and won $4.8 million from a Los Angeles jury. Spelling argued that Tylo's"} +{"qid": "test2872", "pid": "12156853", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Taylor Hayes (The Bold and the Beautiful)\"\nthe show's fans\"\" had supported Taylor in the love triangle. Speaking of Brooke and Taylor's cake fight in 2018, Soaps.com writer Candace Young stated that \"\"viewers were anticipating Taylor and Brooke’s wedding clash and they weren’t disappointed (...) A crazy catfight ensued which left no doubt that Katherine Kelly Lang and Hunter Tylo had fun taping the scenes. Loved it! It’s always re-energizing to see these two pick up with their rivalry and play off one another.\"\" Ridge and Taylor are considered a soap opera supercouple and are referred to by the portmanteau \"\"Tridge\"\" on social media. Speaking on the"} +{"qid": "test2872", "pid": "6174967", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Taylor Hayes (actress)\"\nto have her first child, but then returned to the industry, signing an exclusive contract with Vivid Entertainment in 1997 during which time she made more than a dozen feature films. In 2007, she was inducted into the AVN Hall of Fame. Taylor Hayes (actress) Taylor Hayes (born January 14, 1975) is the stage name of an American retired pornographic actress. She took her pseudonym from Taylor Hayes, the fictional character played by Hunter Tylo on \"\"The Bold and the Beautiful\"\", an American soap opera of which she was a fan as a teenager. In 1995, Taylor moved to Los"} +{"qid": "test2872", "pid": "6174966", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Taylor Hayes (actress)\"\nTaylor Hayes (actress) Taylor Hayes (born January 14, 1975) is the stage name of an American retired pornographic actress. She took her pseudonym from Taylor Hayes, the fictional character played by Hunter Tylo on \"\"The Bold and the Beautiful\"\", an American soap opera of which she was a fan as a teenager. In 1995, Taylor moved to Los Angeles and began working for adult studio VCA Pictures. After a couple of adult film productions with VCA, she left to become one of the feature girls of gonzo pornographer Adam Glasser (also known as Seymore Butts). She took a brief hiatus"} +{"qid": "test2872", "pid": "8101387", "query": "who played taylor on the bold and beautiful", "answer": "Hunter Tylo", "passage": "\"Phoebe Forrester\"\nPhoebe Forrester Phoebe Forrester is a fictional character from the CBS Daytime soap opera \"\"The Bold and the Beautiful\"\". The first actress to play the character on a contract basis was Addison Hoover, who joined the show in April 2005 and left just months later. From July 11, 2006 to 2008, Phoebe was played by MacKenzie Mauzy. The character was killed off in 2008. Phoebe Forrester and her twin sister, Steffy (Jacqueline MacInnes Wood), were born in September 1999 to Ridge Forrester (Ronn Moss) and Taylor Hayes (Hunter Tylo). As a result of constant SORASing, Phoebe was seventeen by 2006."} +{"qid": "test2874", "pid": "11758211", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"Winter Palace\"\nthe more powerful European countries. One of the earliest and most notable examples was Louis XIV's Versailles. Largely completed by 1710, Versailles—with its size and splendour—heightened rivalry amongst the sovereigns of Europe. Peter the Great of Russia, keen to promote all western concepts, wished to have a modern palace like his fellow sovereigns. However, unlike some of his successors, Peter I never aspired to rival Versailles. The first Winter Palace was a modest building of two main floors under a slate roof. It seems that Peter soon tired of the first palace, for in 1721, the second version of the"} +{"qid": "test2874", "pid": "9984244", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XV", "passage": "\"Royal Affairs in Versailles\"\nportraying Louis XVI. Bokanowski was actually the film's production manager and was cast because of his strong resemblance to the monarch. Its English translation title is \"\"If Versailles Were Told to Me\"\". Despite French production, the film is best known by its English title \"\"Royal Affairs in Versailles\"\". Historical human stories in connection with the Royal Palace, the Chateau of Versailles. Royal Affairs in Versailles Royal Affairs in Versailles (French title: Si Versailles m'était conté) is a 1954 French historical drama directed by Sacha Guitry. Described as \"\"a historical film showing Versailles from its beginnings to the present day\"\", it"} +{"qid": "test2874", "pid": "5160716", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"Linderhof Palace\"\nin the second half of the nineteenth century. The bedroom was important to the ceremonial life of an absolute monarch; Louis XIV of France used to give his first (lever) and last audience (coucher) of the day in his bedchamber. In imitation of Versailles, the bedroom is the largest chamber of Linderhof Palace. By facing north, however, the Linderhof bedroom inverts the symbolism of its Versailles counterpart, showing Ludwig's self-image as a \"\"Night-King.\"\" The location of the palace near Ettal Abbey again presents another interesting point. Because of its architecture Ludwig saw the church of the monastery as the room"} +{"qid": "test2874", "pid": "16429243", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"History of the Palace of Versailles\"\nround towers. The vignette also shows a garden on the western side of the château with a fountain on the central axis and rectangular planted \"\"parterres\"\" to either side. Louis XIV had played and hunted at the site as a boy. With a few modifications, this structure would become the core of the new palace. Louis XIII's successor, Louis XIV, had a great interest in Versailles. He settled on the royal hunting lodge at Versailles, and over the following decades had it expanded into one of the largest palaces in the world. Beginning in 1661, the architect Louis Le Vau,"} +{"qid": "test2874", "pid": "14213491", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"Peterhof Palace\"\nPeterhof Palace The Peterhof Palace (, German for \"\"Peter's Court\"\") is a series of palaces and gardens located in Petergof, Saint Petersburg, Russia, commissioned by Peter the Great as a direct response to the Palace of Versailles by Louis XIV of France. Originally intended in 1709 for country habitation, Peter the Great sought to expand the property as a result of his visit to the French royal court in 1717, inspiring the nickname used by tourists \"\"The Russian Versailles\"\". In the period between 1714 and 1728, the architecture was designed by Domenico Trezzini, and the style he employed became the"} +{"qid": "test2874", "pid": "15297003", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"World's largest palace\"\nexample of such subsequent expansion is the Louvre Palace. As a royal residence, the Louvre Palace was much smaller than the modern day Louvre Museum. The Louvre Palace was abandoned as a royal residence in 1682, when Louis XIV moved his court to the Palace of Versailles. The Louvre Palace was relegated to the role of displaying royal collections and hosting administrative services, and over the centuries it went through several renovations, expansions and additions, including a significant one as an Imperial Palace during the second French Empire in the 19th century. It only reached its current size of in"} +{"qid": "test2874", "pid": "9236763", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"Jean-Baptiste Tuby\"\nVersailles. He also created remarkably nuanced life-size bronzes for Versaille's Parterre d'Eau representing several great rivers of France (the Saon and the Rhone). His is arguably the finest decorative white marble urn at Versailles, Le Vase de la Paix, a monumental 2.5 meter tall work that still adorns the South corner of the stairs immediately below the west facade of the palace containing the Hall of Mirrors (Palace of Versailles). Jean-Baptiste Tuby Jean-Baptiste Tuby (1635–1700) was a French sculptor of Italian origins. Tuby served Louis XIV of France and was regarded, with Antoine Coysevox, as one of the premier court"} +{"qid": "test2874", "pid": "5160714", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XIV", "passage": "\"Linderhof Palace\"\nKönigshäuschen and rebuild it on its present-day location in the park. At the same time three new rooms and the staircase were added to the remaining U-shaped complex, and the previous wooden exterior was clad with stone façades. The building was designed in the style of the second rococo-period. Between 1863 and 1886, a total of 8,460,937 marks was spent constructing Linderhof. Although Linderhof is much smaller than Versailles, it is evident that the palace of the French Sun-King Louis XIV (who was an idol for Ludwig) was its inspiration. The staircase, for example, is a reduction of the famous"} +{"qid": "test2874", "pid": "16429262", "query": "who expanded the palace of versailles to its present size", "answer": "Louis XV", "passage": "\"History of the Palace of Versailles\"\nof the citizens of Versailles. In October 1790, Louis XVI ordered the palace to be emptied of its furniture, requesting that most be sent to the Tuileries Palace. In response to the order, the mayor of Versailles and the municipal council met to draft a letter to Louis XVI in which they stated that if the furniture was removed, it would certainly precipitate economic ruin on the city. A deputation from Versailles met with the king on 12 October after which Louis XVI, touched by the sentiments of the residents of Versailles, rescinded the order. Eight months later, however, the"} +{"qid": "test2875", "pid": "14511747", "query": "when did michigan last win a national championship", "answer": "1989", "passage": "\"Mike Kelly (American football coach)\"\nMichigan's Fielding H. Yost (.828). In total wins, Kelly ranks 20th all time with 246. He was the second fastest coach in NCAA history to reach 200 wins. Kelly accomplished the feat in 242 games—second only to Jake Gaither who reached the 200-win level in 240 games. He led Dayton to three national championships—the NCAA Division III national championship in 1989 and NCAA Mid-Major national championships in 2002 and 2007. In 2007, Kelly's last as head coach, his team compiled an 11-1 record, won the Gridiron Classic and was crowned NCAA FCS Mid-Major national champions. He coached 44 Academic All-Americans"} +{"qid": "test2875", "pid": "9530488", "query": "when did michigan last win a national championship", "answer": "1989", "passage": "\"DSV 78 Hannover\"\nwas part of the new league but did not achieve highly in its first ten years. Its fourth national championship came in 1982, when RG Heidelberg was beaten 15–6. The club was to play in seven championship finals in a row from then on, winning the first four and then losing three. With a years interruption in 1989, the team returned for another championship in 1990. After another championship in 1991, \"\"DSV\"\" reached the final for a last time in 1993. In the German Cup, the club continued to be successful, winning it in 1996 and 1998 and making final"} +{"qid": "test2876", "pid": "8131558", "query": "when did holland become involved in world war 2", "answer": "10 May 1940", "passage": "\"Jagdgeschwader 1 (World War II)\"\nwas also alternatively called \"\"JG Nord\"\" or \"\"JG Schumacher\"\" and was equipped with Bf 109 'D' and 'E' variants. I./JG 1 consisted of one Headquarters Flight (\"\"Gruppenstab\"\") and 1., 2. and 3 \"\"Staffels\"\". When the Battle of France commenced on 10 May 1940, I./JG 1 was put under the administrative control of JG 27. After seeing extensive service, the group was re-designated III./JG 27 on 5 July 1940. 1./JG 1 was reformed on 7 December 1940 in Vlissingen from the \"\"Holland\"\" Squadron (\"\"Jasta\"\" Holland). 2./JG 1 was formed on 5 July 1941 in Katwijk, Netherlands, from the \"\"Münster-Loddenheide\"\" Squadron (\"\"Jasta"} +{"qid": "test2877", "pid": "3523156", "query": "when was the first ford f 150 made", "answer": "1975", "passage": "\"Ford E series\"\nthis was replaced by F-series nomenclature of XL and XLT. In line with the F series, the Econoline/Club Wagon was sold in 100/150/250/350 variants, with the Econoline 100 discontinued in 1983 (Club Wagon chassis variants were not denoted). For the first time since 1975, the Ford Econoline was given a major redesign for the 1992 model year. Although the body and interior saw extensive changes, the fleet-oriented Econoline 150/250/350 made its return in both cargo and passenger configurations. For retail markets, the Club Wagon XLT made its return, joined by the luxury-oriented Chateau trim (reviving a trim used in the"} +{"qid": "test288", "pid": "17211025", "query": "who sings will you still love me when i'm not young and beautiful", "answer": "Lana Del Rey", "passage": "\"Young and Beautiful (Lana Del Rey song)\"\nDel Rey penned the original song \"\"Young and Beautiful\"\" for the soundtrack of the 2013 film adaptation of the novel \"\"The Great Gatsby\"\", written from the perspective of Daisy Buchanan. In an interview with Catalunya Ràdio; Del Rey said she had three new songs for her third extended play, \"\"Paradise\"\": \"\"I Sing the Body Electric\"\", \"\"In the Land of Gods and Monsters\"\" and \"\"Will You Still Love Me When I'm No Longer Young and Beautiful.\"\" Del Rey sang the chorus of \"\"Young and Beautiful\"\" during the Catalunya Ràdio broadcast. Baz Luhrmann later gave an interview which contained a Skype chat"} +{"qid": "test288", "pid": "17211027", "query": "who sings will you still love me when i'm not young and beautiful", "answer": "Lana Del Rey", "passage": "\"Young and Beautiful (Lana Del Rey song)\"\nthe film and played during the scene where the characters portrayed by Leonardo DiCaprio and Carey Mulligan express their romantic feelings for one another. With the lyrics \"\"Will you still love me when I'm no longer young and beautiful?\"\", Del Rey adds a hint of desperation which parallels the idiosyncrasies faced by the characters in F. Scott Fitzgerald's classic novel \"\"The Great Gatsby\"\". Del Rey's dreamy vocals are draped over sedated strings and canned percussion. The soft and dreary vocals, falling in line with Del Rey's retro affectation, fits the atmosphere of the 1920s when the novel is set. The"} +{"qid": "test288", "pid": "17211029", "query": "who sings will you still love me when i'm not young and beautiful", "answer": "Lana Del Rey", "passage": "\"Young and Beautiful (Lana Del Rey song)\"\na dark room with glittery diamond-tears on her cheek which look like tattoos. Jason Lipshutz of \"\"Billboard\"\" magazine described the video as \"\"somber\"\" and the singer's look as \"\"especially demure\"\". Lipshutz concluded that \"\"the clip ends without ever reaching any kind of conclusion -- much like the rhetorical question 'Will you still love me when I'm no longer young and beautiful?' at the heart of the song.\"\" \"\"Spin\"\"s Marc Hogan described it as \"\"elegantly conceived, but succeed[s] only as much as the music does\"\". An edit of the video set to the Cedric Gervais remix was published on 27 September"} +{"qid": "test2880", "pid": "2753384", "query": "who won the oscar for best actor when titanic was nominated", "answer": "Jack Nicholson", "passage": "\"70th Academy Awards\"\n1998. With eleven awards, \"\"Titanic\"\" tied with \"\"Ben-Hur\"\" for the most Academy Awards in Oscar history. It also became the first film to win Best Picture without a screenwriting nomination since 1965's \"\"The Sound of Music\"\". Best Actress winner Helen Hunt became the first performer to win an Oscar while concurrently starring in a television series; Jack Nicholson became the fourth performer to win at least three acting Oscars. Both won for their roles in \"\"As Good as It Gets\"\", making it the seventh film to win both lead acting awards. Nominated for their performances as Rose DeWitt Bukater in"} +{"qid": "test2880", "pid": "7350148", "query": "who won the oscar for best actor when titanic was nominated", "answer": "Jack Nicholson", "passage": "\"56th Academy Awards\"\nhis first Best Cinematography nomination for \"\"Zelig\"\". Joe I. Tompkins becomes the first African-American to be nominated in Best Costume Design. James L. Brooks won three Academy Awards this year, winning as producer, director and writer of Best Picture winner \"\"Terms of Endearment\"\". Of its other eight nominations (the movie led all nominees with 11), two were for Best Actress; Shirley MacLaine won over Debra Winger in that category. The movie won five Oscars, the fifth being Jack Nicholson's second career Oscar (he won for Best Supporting Actor). This ceremony ended with Sammy Davis Jr. and Liza Minnelli leading the"} +{"qid": "test2881", "pid": "19031753", "query": "what are the spices in chinese 5 spice powder", "answer": "Sichuan pepper", "passage": "\"Sichuan pepper\"\nSichuan pepper Sichuan pepper, Sichuan peppercorn, Szechuan pepper, or Szechuan peppercorn, is a commonly used spice in Chinese cuisine. It is derived from at least two species of the global genus \"\"Zanthoxylum\"\", including \"\"Z. simulans\"\" and \"\"Z. bungeanum\"\". The genus \"\"Zanthoxylum\"\" belongs in the rue or citrus family, and, despite its name, is not closely related to either black pepper or the chili pepper. The husk or hull (pericarp) around the seeds may be used whole, especially in Sichuan cuisine, and the finely ground powder is one of the ingredients for five-spice powder. It is also used in traditional Chinese"} +{"qid": "test2883", "pid": "4761820", "query": "when did marley die in a christmas carol", "answer": "December 24, 1836", "passage": "\"Jacob Marley\"\nCarol\"\", Marley is the first character mentioned in the first line of the story. Jacob Marley is said to have died seven years earlier on Christmas Eve (as the setting is Christmas Eve 1843, this would have made the date of his passing December 24, 1836). In life, Jacob Marley was the business partner of Ebenezer Scrooge. They co-owned the firm of Scrooge and Marley, and he refers to their offices as 'our money-changing hole'. They became successful yet hard-hearted bankers, with seats on the London Stock Exchange. Scrooge is described as Marley's \"\"sole friend\"\" and \"\"sole mourner\"\", and praises"} +{"qid": "test2888", "pid": "66708", "query": "who owns the majority of the us debt", "answer": "China", "passage": "China\nestimated $1.6 trillion of US securities, and was also the largest foreign holder of US public debt, owning over $1.16 trillion in US Treasury bonds. China's undervalued exchange rate has caused friction with other major economies, and it has also been widely criticized for manufacturing large quantities of counterfeit goods. According to consulting firm McKinsey, total outstanding debt in China increased from $7.4 trillion in 2007 to $28.2 trillion in 2014, which reflects 228% of China's GDP. In 2017 the Institute of International Finance reported that China's debt had reached 304% of its GDP. China ranked 29th in the Global"} +{"qid": "test2889", "pid": "1178478", "query": "where is wake forest located in north carolina", "answer": "in Franklin and Wake counties", "passage": "\"Wake Forest, North Carolina\"\nof photos, books, college publications, furniture, documents, professors’ writings, and medical, law and sports memorabilia. The Wake County Public Library System operates a branch in Wake Forest. Wake Forest is home to the Falls Lake State Recreation Area. Falls Lake Park contains the Falls Lake and of woodlands. Wake Forest is served by ten parks and community centers. They include the following: Wake Forest, North Carolina Wake Forest is a town in Franklin and Wake counties in the U.S. state of North Carolina; located almost entirely in Wake County, it lies just north of the state capital, Raleigh. The population"} +{"qid": "test2889", "pid": "1178465", "query": "where is wake forest located in north carolina", "answer": "in Franklin and Wake counties", "passage": "\"Wake Forest, North Carolina\"\nWake Forest, North Carolina Wake Forest is a town in Franklin and Wake counties in the U.S. state of North Carolina; located almost entirely in Wake County, it lies just north of the state capital, Raleigh. The population was 30,117 at the 2010 census, up from 12,588 at the 2000 census. The U.S. Census Bureau estimates the city's population to be 34,752 as of July 1, 2013. In 2007, the town was listed by \"\"Forbes\"\" magazine as the 20th fastest growing suburb in America, with a 73.2 percent increase in population between 2000 and 2006. Wake Forest was the original"} +{"qid": "test289", "pid": "2293720", "query": "when did world war 2 officially start and end", "answer": "1945", "passage": "\"Victory over Japan Day\"\nas well as to September 2, 1945, when the signing of the surrender document occurred, officially ending World War II. August 15 is the official V-J Day for the UK, while the official US commemoration is September 2. The name, V-J Day, had been selected by the Allies after they named V-E Day for the victory in Europe. On September 2, 1945, a formal surrender ceremony was performed in Tokyo Bay, Japan, aboard the battleship USS \"\"Missouri\"\". In Japan, August 15 usually is known as the ; the official name for the day, however, is . This official name was"} +{"qid": "test289", "pid": "12996571", "query": "when did world war 2 officially start and end", "answer": "1945", "passage": "\"330th Bombardment Group (VH)\"\n593 tons of IB were dropped on Kumagaya burning for an efficiency rating of per ton -not one of the most efficient area bombing missions. Although this was the last official 'Combat' Mission for the 330th, it did not end the war for some crews. Until the Armistice was signed aboard the USS Missouri on 2 September 1945, crews flew food packages to POW camps and participated in show-of-force missions for which they got combat mission time (important in the point system that sent troops back to the US in the following months). So ended the war, which started for"} +{"qid": "test289", "pid": "17810200", "query": "when did world war 2 officially start and end", "answer": "1945", "passage": "\"Victory Day (United States)\"\nof Japan’s surrender to the Allies in 1945 which ended World War II. The atomic bombs dropped on Hiroshima on August 6 and Nagasaki on August 9, and the Soviet Union’s invasion of Manchuria in the previous week led to the eventual surrender. President Truman's announcement of the surrender started mass celebrations across the United States, which was when he declared September 2 as the official \"\"VJ Day\"\" in 1945. In 1975, the holiday was abolished at the Arkansas state level leaving Rhode Island as the only state in the U.S. where the holiday is a legal holiday. Rhode Island"} +{"qid": "test289", "pid": "17003725", "query": "when did world war 2 officially start and end", "answer": "1939", "passage": "\"Official History of New Zealand in the Second World War 1939–45\"\nthe ideal candidate for the position. Kippenberger, a keen student of military history, was working in England on the repatriation of former prisoners of war to New Zealand when the position was first offered. Although he accepted the offer, he did not return to New Zealand to start work on his new role until mid 1946. The principle of the official histories was to tell the story of New Zealand at war, which involved a multifaceted approach covering the armed services, the battles in which they fought as well as the civilians contributing on the home front. The plan for"} +{"qid": "test289", "pid": "7048433", "query": "when did world war 2 officially start and end", "answer": "1945", "passage": "\"Winston (cigarette)\"\nby Welch's. In the 1970s, Winston specifically targeted the Afro-American minority, similar to what Kool and Newport did during the time. After World War II had ended, American tobacco companies started to explore new markets to maintain their not insubstantial prosperity. The growth in urban migration and the growing incomes of African Americans (called at the time the \"\"\"\"emerging Negro market\"\"\"\") gave the tobacco companies what was sometimes called an \"\"\"\"export market at home\"\"\"\". Additionally, a new kind of media started to appear after the war when several glossy monthly magazines including Negro Digest (1942, renamed Black World), Ebony (1945)"} +{"qid": "test289", "pid": "19085686", "query": "when did world war 2 officially start and end", "answer": "1945", "passage": "\"German Naval Intelligence Service\"\nIts activities had little practical impact on the course of the First World War and it was dissolved in 1919 after Germany's defeat in the war. After the war, saw the establishment of the observation service (B-Dienst) in 1918–1919. In spring 1925, the Naval Intelligence Division was disbanded and did not reform until October 1934 under Theodor Arps when it was named Marinenachrichtendienst (English: Naval Intelligence Service). During the Second World War, the service underwent various re-organisations, starting as part of 2/SKL, later 4/SKL of the Oberkommando der Marine (OKM) and finally dissolved on 22 July 1945, two months after"} +{"qid": "test2890", "pid": "1807310", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Anthony Michael Hall\"\nnatural.\"\" Hall's role in the 1993 film \"\"Six Degrees of Separation\"\" made news not because of what occurred onscreen, but rather what failed to occur. Hall played a gay love interest to Will Smith, who had previously agreed to a kissing scene between the two. However, on the day of the shoot, Smith backed off. Smith told the press that he called Denzel Washington for advice, who told him that an onscreen same-sex kiss was a bad career move. When asked about the incident during an interview, Hall said, \"\"I didn't care. I wasn't that comfortable with it, either, and"} +{"qid": "test2890", "pid": "811329", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (play)\"\nSix Degrees of Separation (play) Six Degrees of Separation is a play written by American playwright John Guare that premiered in 1990. The play was nominated for the Pulitzer Prize for Drama and was nominated for the Tony Award for Best Play. The play explores the existential premise that everyone in the world is connected to everyone else in the world by a chain of no more than six acquaintances, thus, \"\"six degrees of separation\"\". A young black man named Paul shows up at the home of art dealer Flan Kittredge and his wife Louisa, known simply as \"\"Ouisa\"\", who"} +{"qid": "test2890", "pid": "811340", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (play)\"\nby Fred Schepisi. Channing was nominated for the Academy Award for Best Actress for her performance in the film. Six Degrees of Separation (play) Six Degrees of Separation is a play written by American playwright John Guare that premiered in 1990. The play was nominated for the Pulitzer Prize for Drama and was nominated for the Tony Award for Best Play. The play explores the existential premise that everyone in the world is connected to everyone else in the world by a chain of no more than six acquaintances, thus, \"\"six degrees of separation\"\". A young black man named Paul"} +{"qid": "test2890", "pid": "16907804", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (song)\"\nlive on \"\"The Voice of Holland\"\" on 7 December 2012, as well as performing \"\"Hall of Fame\"\" with the remaining contestants. Six Degrees of Separation (song) \"\"Six Degrees Of Separation\"\" is a song by Irish pop rock band The Script, taken from their third studio album, \"\"#3\"\" (2012). The song was released as the album's second single on 25 November 2012. The track was written by Danny O'Donoghue, Mark Sheehan, Steve Kipner and Andrew Frampton. The music video for \"\"Six Degrees Of Separation\"\" was uploaded to YouTube on 5 November 2012 at a total length of three minutes and fifty-seven"} +{"qid": "test2890", "pid": "16907803", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (song)\"\nSix Degrees of Separation (song) \"\"Six Degrees Of Separation\"\" is a song by Irish pop rock band The Script, taken from their third studio album, \"\"#3\"\" (2012). The song was released as the album's second single on 25 November 2012. The track was written by Danny O'Donoghue, Mark Sheehan, Steve Kipner and Andrew Frampton. The music video for \"\"Six Degrees Of Separation\"\" was uploaded to YouTube on 5 November 2012 at a total length of three minutes and fifty-seven seconds. The band performed the song live during Children in Need on 16 November 2012. The band also performed the track"} +{"qid": "test2890", "pid": "16891581", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "Yolki\nstory revolves around a local orphanage during the holiday. One orphan girl Varya, makes other children believe that her father is the Russian president. They promise to stop harassing her if her father blesses her with an encrypted message during the traditional televised New Year's Address. She does not know what to do, and her friend Vova tries to help and tells her about the Six Degrees of Separation theory. The characters in the film are a student, a thief and his connections with the policeman who caught him, a taxi driver in love with a famous pop singer, a"} +{"qid": "test2890", "pid": "4795246", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"John Guare\"\n\"\"Moon Over Miami\"\" was produced at the Williamstown Theatre Festival in 1987 and then at the Yale Repertory Theatre, New Haven in February 1989. Guare's cycle of plays on nineteenth-century America are: \"\"Gardenia\"\" (1982) \"\"Lydie Breeze\"\" (1982) and \"\"Women and Water\"\" (1985). The so-called \"\"Lydie Breeze\"\" series, also called the \"\"Nantucket\"\" series \"\"follows a group of idealistic 19th century characters and their attempts to create a utopian society. \"\" \"\"Six Degrees of Separation\"\" was originally produced Off-Broadway at the Lincoln Center Theater, Newhouse Theatre in June 1990. \"\"Six Degrees of Separation\"\" is an intricately plotted comedy of manners about an"} +{"qid": "test2890", "pid": "7403096", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (Battlestar Galactica)\"\nSix Degrees of Separation (Battlestar Galactica) \"\"Six Degrees of Separation\"\" is the seventh episode of the reimagined \"\"Battlestar Galactica\"\" television series. While conversing with his internal Six in his mental version of his house, Baltar completely and rudely dismisses the existence of God. Six, appearing hurt, then disappears from Baltar's mind. Moments after Six disappears, Baltar is called to the CIC where he learns that a woman named Shelly Godfrey is accusing him of being a Cylon collaborator. Shelly has the form of Six, but the entire CIC crew can see her to Baltar's shock. Shelly claims to be a"} +{"qid": "test2890", "pid": "7403102", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (Battlestar Galactica)\"\nwith Helo not noticing Sharon's spine glowing red. Six Degrees of Separation (Battlestar Galactica) \"\"Six Degrees of Separation\"\" is the seventh episode of the reimagined \"\"Battlestar Galactica\"\" television series. While conversing with his internal Six in his mental version of his house, Baltar completely and rudely dismisses the existence of God. Six, appearing hurt, then disappears from Baltar's mind. Moments after Six disappears, Baltar is called to the CIC where he learns that a woman named Shelly Godfrey is accusing him of being a Cylon collaborator. Shelly has the form of Six, but the entire CIC crew can see her"} +{"qid": "test2890", "pid": "12277258", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Six Degrees of Separation (film)\"\nvictims of the duplicity with which Paul has charmed his way into many upper-crust homes along the Upper East Side. Paul's schemes become highbrow-legend, anecdotal \"\"onaccounta\"\", which are bantered about at their cocktail parties. In the end, Paul has a profound effect on the many individuals who encounter him, linking them in their shared experience. The film has an approval rating of 88% at Rotten Tomatoes based on 32 reviews. The site's consensus reads: \"\"Though it betrays its theatrical roots, \"\"Six Degrees of Separation\"\" largely succeeds thanks to astute direction and fine performances–particularly from an against-type Will Smith.\"\" It was"} +{"qid": "test2890", "pid": "14744949", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Comedy in the Philippines\"\nin the early 2000s gave birth to a new generation of Philippine movies which have come to be referred to as Philippine New Wave cinema, produced independently from the studios that had dominated the movie industry during much of the 20th century. Comedy was a dominant genre among commercial films of the time, so the early films of the Filipino New Wave tended to be dramas. But as independent producers and directors became more established, Filipino New Wave Comedies began to arise. Some of the experimental works included metacomedies such as Antoinette Jadaone's Six Degrees of Separation from Lilia Cuntapay"} +{"qid": "test2890", "pid": "8379533", "query": "what is the movie about six degrees of separation", "answer": "Six Degrees of Separation", "passage": "\"Oz Perkins\"\nRipley Osgood Robert Perkins III (born in 2004) and a daughter Beatrix Perkins (born in 2008). Perkins' first acting role was in 1983's \"\"Psycho II\"\", in which he briefly appeared as the twelve-year-old version of the Norman Bates character his father had portrayed. Since then, he has appeared in the 1993 film \"\"Six Degrees of Separation\"\", the 2001 movie \"\"Legally Blonde\"\" as \"\"Dorky David,\"\" and he appeared in theatrical productions including \"\"Not Another Teen Movie\"\" and \"\"Secretary\"\", and in episodes of \"\"Alias\"\" and other television shows. He also has a brief role in the 2009 film \"\"Star Trek\"\" as a"} +{"qid": "test2891", "pid": "12705883", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Médina, Dakar\"\nMédina, Dakar Médina is a commune d'arrondissement of the city of Dakar, Senegal, part of the Dakar-Plateau arrondissement, located in the southern part of Dakar. Médina is one of the most ancient and most populous areas of Dakar, and one that has kept its original African character, as opposed to the modern districts of the Plateau. As such, it is also a cultural centre of the city. A number of notable Senegalese people, including the world-famous singer Youssou N'Dour and Omar Pene (another influential singer and musician) were born in Médina. Médina also houses some of the prominent landmarks of"} +{"qid": "test2891", "pid": "15320517", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Senghor on the Rocks\"\nSenghor on the Rocks \"\"Senghor on the Rocks\"\" is an online geo-novel. It was first published under a creative commons license in 2008 by Christoph Benda (Text, Geodata), Johannes Krtek (Design) und Florian Ledermann (Programming, Production) as \"\"the first full-length novel consistently illustrated with Google Maps\"\" The story of \"\"Senghor on the Rocks\"\" begins in Dakar, Senegal on 20 December 2001. On this very day people in Dakar were celebrating the national soccer team's qualification for the Football World Cup, as the breaking news about the death of Léopold Sédar Senghor, the famous poet and the republic's first president, hit"} +{"qid": "test2891", "pid": "8962622", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Motorcycle racing\"\nThe most famous example is the Dakar Rally, previously travelling from Western Europe (often Paris) to Dakar in Senegal, via the Sahara desert, taking almost two weeks. Since 2009 the Dakar Rally has been held in South America traveling through Peru, Argentina and Chile. A FIM Cross-Country Rallies World Championship also exists encompassing many events across the world, typically in desert nations. These events often run alongside \"\"car\"\" rallies (under the FIA). Track racing is a form of motorcycle racing where teams or individuals race opponents around an oval track. There are differing variants, with each variant racing on a"} +{"qid": "test2891", "pid": "19939853", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Les Mamelles Lighthouse\"\nLes Mamelles Lighthouse Les Mamelles Lighthouse () is a strategically important lighthouse situated near Cap Vert, the westernmost point of Africa, on the outskirts of Dakar the capital of Senegal. Completed in 1864, it has been described as \"\"one of the world's great lighthouses, guiding ships around the western tip of Africa\"\". It is located on the highest of the Deux Mamelles, a pair of prominent hills in Ouakam, a suburban commune of Dakar, 4 km southeast of Almadies and 9 km northwest of Dakar on the Cap-Vert peninsula. The completely white lighthouse consists of a ) cylindrical tower attached"} +{"qid": "test2891", "pid": "19939856", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Les Mamelles Lighthouse\"\nand has the NGA identifier of 113-24392. Les Mamelles Lighthouse Les Mamelles Lighthouse () is a strategically important lighthouse situated near Cap Vert, the westernmost point of Africa, on the outskirts of Dakar the capital of Senegal. Completed in 1864, it has been described as \"\"one of the world's great lighthouses, guiding ships around the western tip of Africa\"\". It is located on the highest of the Deux Mamelles, a pair of prominent hills in Ouakam, a suburban commune of Dakar, 4 km southeast of Almadies and 9 km northwest of Dakar on the Cap-Vert peninsula. The completely white lighthouse"} +{"qid": "test2891", "pid": "12705886", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Ngor, Dakar\"\nonce played at the First Division of Senegal and later Ligue 1 (Premier League) and was relegated in 2016 to Ligue 2 where they currently play. Another club named Almadies who once played in the First Division up to around the 1970s was based in Ngor. Ngor, Dakar Ngor is a commune d'arrondissement of the city of Dakar, Senegal. As of 2013 it had a population of 17,383. The westernmost point of the African continent is located there. Ngor is one of the four original Lebou villages of the Cap-Vert Peninsula, along with Yoff, Hann, and Ouakam. It includes the"} +{"qid": "test2891", "pid": "9281666", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Enda Third World\"\nEnda Third World Enda Third World (Enda Tiers Monde) is an international organisation with diplomatic status based in Dakar, Senegal, Africa. It comprises a group of teams and programmes working in synergy, and describes itself as a network of decentralized nodes worldwide. Enda, formed in 1972, completed its 25th anniversary in 1997. Enda was founded in Dakar; its head office is also located in the same African city. The company is composed of separate entities, co-ordinated by an executive secretary. According to its report in 1997 : Enda says it is concerned with \"\"acting on initiatives and on popular action\"\"."} +{"qid": "test2891", "pid": "9281670", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Enda Third World\"\nHamidou Kane and executive secretary is Jacques Bugnicourt. Enda Third World Enda Third World (Enda Tiers Monde) is an international organisation with diplomatic status based in Dakar, Senegal, Africa. It comprises a group of teams and programmes working in synergy, and describes itself as a network of decentralized nodes worldwide. Enda, formed in 1972, completed its 25th anniversary in 1997. Enda was founded in Dakar; its head office is also located in the same African city. The company is composed of separate entities, co-ordinated by an executive secretary. According to its report in 1997 : Enda says it is concerned"} +{"qid": "test2891", "pid": "9777831", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Dakar Department\"\nsmallest one is the \"\"commune d'arrondissement\"\" of Île de Gorée (1,034 inhabitants), in the arrondissement of Plateau/Gorée. Dakar Department Dakar Department is one of the Departments of Senegal, located in the Dakar Region. The department of Dakar is one of the four departments of the Dakar region, which is one of the 14 regions of Senegal. The Dakar region encompasses the city of Dakar and all its suburbs along the Cape Verde Peninsula. Its territory is thus roughly the same as the territory of the metropolitan area of Dakar. Since the administrative reforms of 1996, the regions of Senegal, which"} +{"qid": "test2891", "pid": "9777827", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Dakar Department\"\nDakar Department Dakar Department is one of the Departments of Senegal, located in the Dakar Region. The department of Dakar is one of the four departments of the Dakar region, which is one of the 14 regions of Senegal. The Dakar region encompasses the city of Dakar and all its suburbs along the Cape Verde Peninsula. Its territory is thus roughly the same as the territory of the metropolitan area of Dakar. Since the administrative reforms of 1996, the regions of Senegal, which until then were merely local administrative structures of the central state, have been turned into full-fledged political"} +{"qid": "test2891", "pid": "372969", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "Senegal\ntraditionally been one of Africa's dominant basketball powers. The men's team performed better than that of any other African nation at the 2014 FIBA World Cup, where they reached the playoffs for the first time. The women's team won 19 medals at 20 African Championships, more than twice as many medals as any competitor. In 2016, the NBA announced the launch of an Elite's Academy in Africa, and more precisely in Senegal. The country hosted the Paris–Dakar rally from 1979 until 2007. The Dakar Rally was an off-road endurance motorsport race which followed a course from Paris, France to Dakar,"} +{"qid": "test2891", "pid": "12705884", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Médina, Dakar\"\nDakar, including the Grand Mosque and the Soumbédioune market, one of the major street markets of Dakar, which is also a prominent tourist attraction. The commune of Médina was established by the French colonial authorities in 1914. The explicit intent of the establishment of Médina was that of creating a \"\"native quarter\"\" for the African population, clearly separated from the urban areas inhabited by the Europeans, especially for health-related reasons. Médina, Dakar Médina is a commune d'arrondissement of the city of Dakar, Senegal, part of the Dakar-Plateau arrondissement, located in the southern part of Dakar. Médina is one of the"} +{"qid": "test2891", "pid": "547027", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "Dakar\nDakar Dakar (; ; ) is the capital and largest city of Senegal. It is located on the Cap-Vert peninsula on the Atlantic coast and is the westernmost city on the African mainland. The city of Dakar proper has a population of 1,030,594, whereas the population of the Dakar metropolitan area is estimated at 2.45 million. The area around Dakar was settled in the 15th century. The Portuguese established a presence on the island of Gorée off the coast of Cap-Vert and used it as a base for the Atlantic slave trade. France took over the island in 1677. Following"} +{"qid": "test2891", "pid": "13436486", "query": "where is dakar located on the world map", "answer": "Senegal", "passage": "\"Geological maps of Senegal\"\nla Géologie\"\" (DMG), \"\"Centre de Documentation et du Cadastre minier\"\", Boulevard de la République 72, Dakar, Senegal (Telephone/ Fax: +221 338 220 408). A Multilayered Mapping of the Cap-Vert (2009) also presents geological maps at the scales of 1/50 000 of the activity area of the \"\"Cap-Vert\"\" to the west of the 16°40’W meridian and of 1/20 000 for the \"\"Cap-Vert\"\" peninsula to the west of the 17°10’W meridian. \"\"- for the explanatory notices:\"\" \"\"- for the geological maps at 1/500 000 :\"\" \"\"- for the geological maps at 1/200 000 :\"\" Geological maps of Senegal Geological map of Senegal"} +{"qid": "test2892", "pid": "18668725", "query": "who is credited with the discovery of the neutron", "answer": "James Chadwick", "passage": "\"Discovery of the neutron\"\nnumber had been identified as the charge on the nucleus. Throughout the 1920s, the nucleus was viewed as composed of combinations of protons and electrons, the two elementary particles known at the time, but that model presented several experimental and theoretical contradictions. The essential nature of the atomic nucleus was established with the discovery of the neutron by James Chadwick in 1932 and the determination that it was a new elementary particle, distinct from the proton. The uncharged neutron was immediately exploited as a new means to probe nuclear structure, leading to such discoveries as the creation of new radioactive"} +{"qid": "test2892", "pid": "291366", "query": "who is credited with the discovery of the neutron", "answer": "James Chadwick", "passage": "Neutron\nto the nucleosynthesis of chemical elements within stars through fission, fusion, and neutron capture processes. The neutron is essential to the production of nuclear power. In the decade after the neutron was discovered by James Chadwick in 1932, neutrons were used to induce many different types of nuclear transmutations. With the discovery of nuclear fission in 1938, it was quickly realized that, if a fission event produced neutrons, each of these neutrons might cause further fission events, etc., in a cascade known as a nuclear chain reaction. These events and findings led to the first self-sustaining nuclear reactor (Chicago Pile-1,"} +{"qid": "test2892", "pid": "15809624", "query": "who is credited with the discovery of the neutron", "answer": "James Chadwick", "passage": "\"Neutron capture therapy of cancer\"\nBNCT has been evaluated clinically as an alternative to conventional radiation therapy for the treatment of malignant brain tumors (gliomas), and recurrent, locally advanced head and neck cancer and cutaneous and extracutaneous melanomas. After the initial discovery of the neutron in 1932 by Sir James Chadwick, H. J. Taylor in 1935 showed that boron-10 nuclei had a propensity to capture thermal neutrons. This resulted in nuclear fission of the boron-11 nuclei into helium-4 (alpha particles) and lithium-7 ions. In 1936, G.L. Locher, a scientist at the Franklin Institute in Pennsylvania, recognized the therapeutic potential of this discovery and suggested that"} +{"qid": "test2892", "pid": "3284128", "query": "who is credited with the discovery of the neutron", "answer": "James Chadwick", "passage": "\"George B. Pegram\"\nradioactivity. In 1929, he had recruited a graduate student, John R. Dunning, from Nebraska Wesleyan University, who built a linear amplifier. In 1935 and 1936 Dunning was able construct a cyclotron using many salvaged parts to reduce costs and funding from industrial and private donations. James Chadwick's discovery of the neutron in 1932 sparked a flurry of research into neutrons by Pegram and Dunning. Between 1933 and 1936, they would work together on two dozen papers, all on neutrons. He also collaborated with Harold Urey on separating oxygen isotopes. This period came to an abrupt end when Howard Lee McBain"} +{"qid": "test2892", "pid": "1490166", "query": "who is credited with the discovery of the neutron", "answer": "James Chadwick", "passage": "\"James Chadwick\"\nthe Royal Society A\"\" titled \"\"The Existence of a Neutron\"\" in May. His discovery of the neutron was a milestone in understanding the nucleus. Reading Chadwick's paper, Robert Bacher and Edward Condon realised that anomalies in the then-current theory, like the spin of nitrogen, would be resolved if the neutron has a spin of 1/2 and that a nitrogen nucleus consisted of seven protons and seven neutrons. The theoretical physicists Niels Bohr and Werner Heisenberg considered whether the neutron could be a fundamental nuclear particle like the proton and electron, rather than a proton–electron pair. Heisenberg showed that the neutron"} +{"qid": "test2893", "pid": "9309601", "query": "all of the states in the northeast region", "answer": "New Hampshire", "passage": "\"Northeast Power Coordinating Council\"\nNortheast Power Coordinating Council The Northeast Power Coordinating Council (NPCC) was formed January 19, 1966, as a successor to the Canada–United States Eastern Interconnection (CANUSE). NPCC is one of nine regional electric reliability councils under North American Electric Reliability Corporation (NERC) authority. NERC and the regional reliability councils were formed following the Northeast Blackout of 1965. NPCC's offices are located in New York City, New York. The NPCC region lies within the Eastern Interconnection and occupies the greater New England region of North America, covering all of the States of Maine, Vermont, New Hampshire, Massachusetts, New York, Connecticut, Rhode Island,"} +{"qid": "test2893", "pid": "2281675", "query": "all of the states in the northeast region", "answer": "Massachusetts", "passage": "\"Northeast Regional\"\nNortheast Regional The Northeast Regional is a regional rail service operated by Amtrak in the Northeastern and Mid-Atlantic United States. In the past it has been known as the \"\"NortheastDirect\"\", \"\"Acela Regional\"\", or \"\"Regional\"\". It is the busiest Amtrak route, carrying 8.41 million passengers in fiscal year (FY) 2016, a 2.4% increase over the 8.15 million passengers in FY2015. The \"\"Northeast Regional\"\" service earned over $613.9 million in gross ticket revenue in FY2016, a 0.4% increase over the $611.7 million earned during FY2015. There is daily all-reserved service about every hour during the day. Trains generally run between Boston, Massachusetts,"} +{"qid": "test2893", "pid": "2281690", "query": "all of the states in the northeast region", "answer": "Connecticut", "passage": "\"Northeast Regional\"\nRegional\"\" runs in its place. The Northeast Regional is primarily federally funded and receives federal funding for its operations between Boston and Washington, DC. \"\"Northeast Regional\"\" operations south of Washington towards Newport News, Norfolk, and Roanoke are funded by the Commonwealth of Virginia. New Haven to Springfield, MA operations are funded by the State of Connecticut and the Commonwealth of Massachusetts. Northeast Regional The Northeast Regional is a regional rail service operated by Amtrak in the Northeastern and Mid-Atlantic United States. In the past it has been known as the \"\"NortheastDirect\"\", \"\"Acela Regional\"\", or \"\"Regional\"\". It is the busiest Amtrak"} +{"qid": "test2893", "pid": "2527351", "query": "all of the states in the northeast region", "answer": "New York", "passage": "\"Northeastern United States\"\n23% of U.S. gross domestic product. The Nuclear Regulatory Commission oversees 34 nuclear reactors, eight for research or testing and 26 for power production in the Northeastern United States. New York City, considered a global financial center, is in the Northeast. The Federal Bureau of Prisons maintains 17 federal prisons and two affiliated private facilities in the region. The following table includes all eight airports categorized by the FAA as large hubs located in the Northeastern states (New England and Eastern regions): Geographer Wilbur Zelinsky asserts that the Northeast region lacks a unified cultural identity, but has served as a"} +{"qid": "test2893", "pid": "9533177", "query": "all of the states in the northeast region", "answer": "Connecticut", "passage": "\"Old Saybrook station\"\nOld Saybrook station Old Saybrook is a regional rail station located in Old Saybrook, Connecticut. It is served by both Amtrak \"\"Northeast Regional\"\" intercity trains and Shore Line East commuter service. Located on the Northeast Corridor, the busiest passenger railway in the United States, Old Saybrook station serves some of the rail services that pass through the station. Most \"\"Northeast Regional\"\" trains stop at Old Saybrook. No high-speed \"\"Acela Express\"\" trains serve the station, but some stop at the following southbound and northbound stations, New Haven and New London, respectively. However, all Shore Line East commuter rail trains stop at"} +{"qid": "test2893", "pid": "5934528", "query": "all of the states in the northeast region", "answer": "Vermont", "passage": "\"New Haven–Springfield Line\"\nfrom Springfield all the way to Washington, D.C., without the need to change trains. The corridor is also served by Amtrak's \"\"Vermonter\"\". All of the \"\"Shuttle\"\" and \"\"Regional\"\" trains stop at all stations on the line, while the \"\"Vermonter\"\" skips , , , and . New Haven–Springfield Line The New Haven–Springfield Line is a railroad line owned by Amtrak from New Haven, Connecticut, north to Springfield, Massachusetts. As a branch of the Northeast Corridor just north of New Haven State Street station, it is served by approximately seven daily \"\"Northeast Regional\"\" round trips, some continuing from New Haven to Washington,"} +{"qid": "test2893", "pid": "20466826", "query": "all of the states in the northeast region", "answer": "Connecticut", "passage": "\"Michael Mallory (basketball)\"\nConnecticut he achieved numerous accomplishments including, 2016-17 Sporting News preseason All-American, 2015-16 Division II Bulletin All-American, 2015-16 All-Region (NABC and D2CCCA) pick, 2015-16 All-ECAC selection, 2015-16 First-Team All-Northeast-10 Conference Selection, 2015-16 Sporting News prepreseason All-American, 2015-16 Basketball Times preseason All-American, 2014-15 All-Northeast-10 Conference selection, 2014 Division II Bulletin All-Freshman team member, 2013-14 Northeast-10 Conference Rookie of the Year, 2014 All-Northeast-10 Conference Tournament team pick. Mallory holds the record for all time leading scorer for both the NE-10 Conference and SCSU with 2,515 points. Along with holding this record, Michael holds 10 individual records at Southern Connecticut State University. In a"} +{"qid": "test2893", "pid": "7716157", "query": "all of the states in the northeast region", "answer": "Maine", "passage": "\"James Chico Hernandez\"\nChampionships, third place at the Northern New England Championships and fifth place at the National Collegiate Athletic Association Northeast Regional. He was a 3 time All-District selection in NAIA #5, 1979 All-New England and NCAA Northeast Regional Teams. The State of Maine AAU Olympic Freestyle Wrestling All-Star Team selected him to compete against the Netherlands Olympic Freestyle Wrestling Team. Hernandez graduated with a Bachelor of Arts degree in Social Science from the University of Maine at Presque Isle in May 1979. Hernandez was named head wrestling coach at University of Maine at Presque Isle for the 1980-81 season. He coached"} +{"qid": "test2893", "pid": "2291009", "query": "all of the states in the northeast region", "answer": "Vermont", "passage": "\"Northeast Kingdom\"\nRPCs also have automatic party status to any ACT 250 applications. ACT 250 permits are the state's Land Use Permit issued by the Land Use Panel of the Vermont Natural Resources Board. ACT 250 applications must be in compliance with the RPC's Regional Plan. A copy of all ACT 250 permit applications must be submitted (by the applicants) to the RPCs for review. The Northeast Kingdom is unique, as it benefits from an agency that is both an Economic Development Commission as well as a Regional Planning Commission, the Northeastern Vermont Development Association and Regional Planning Commission (NVDA). Under a"} +{"qid": "test2893", "pid": "2527332", "query": "all of the states in the northeast region", "answer": "Maine", "passage": "\"Northeastern United States\"\nthe nation's most economically developed, densely populated, and culturally diverse region. Of the nation's four census regions, the Northeast is the second most urban, with 85 percent of its population residing in urban areas, led by the West with 90 percent. Geographically there has always been some debate as to where the Northeastern United States begins and ends. The vast area from northern Virginia (outside Washington DC) to northern Maine, and from western Pennsylvania (Pittsburgh) to the Atlantic Ocean, have all been loosely grouped into the Northeast at one time or another. Much of the debate has been what the"} +{"qid": "test2893", "pid": "12844723", "query": "all of the states in the northeast region", "answer": "Massachusetts", "passage": "\"Northeast Metropolitan Regional Vocational High School\"\ncontributor, and Woburn is the third. Also, students from Everett, Lynn, Lynnfield and Medford, which border the Northeast Metropolitan Regional Vocational School District, may attend the school if they apply and are approved. The football team has recently won back-to-back Division 4A State Championships in 2009 and 2010. Main source: http://www.northeastmetrotech.com/ Northeast Metropolitan Regional Vocational High School Northeast Metropolitan Regional Vocational High School also known as Northeast Metro Tech or The Voke is a regional vocational school located in Wakefield, Massachusetts. It was founded in 1968 and draws students from the cities and towns of Chelsea, Revere, Winthrop, Malden, Melrose,"} +{"qid": "test2894", "pid": "10471008", "query": "where did an independence movement occur because of the congress of vienna", "answer": "Italy", "passage": "\"Ligurian Independence Movement\"\nLigurian Independence Movement The Ligurian Independence Movement () is a regional political party in Italy. It was founded in Genoa on 14 January 2001 by a group of citizens, some of them from the Ligurian Lega Nord, belonging to different social classes. Their intent is to recognize the rights to independence from Italian Republic of the populations living in the territory of the former Republic of Genoa. Such Republic became the Ligurian Republic in 1797, it was incorporated in French Empire by Napoleon Bonaparte in 1805, and finally it was annexed to the Kingdom of Sardinia after Congress of Vienna"} +{"qid": "test2894", "pid": "8087651", "query": "where did an independence movement occur because of the congress of vienna", "answer": "Italy", "passage": "\"Guglielmo Oberdan\"\nmilieu, embraced irredentist ideas and Italianized his name to \"\"Guglielmo Oberdan\"\". In 1877 he enrolled at the Vienna's College of Technology (now Vienna University of Technology) where he studied engineering. As he supported the idea of independence for all of the empire's national groups he resented the occupation of Bosnia-Herzegovina by Austria-Hungary and therefore deserted from the Austro-Hungarian Army because he did not want to take part in military activities there. Instead, he fled to Rome to continue his studies. In the Italian capital he adopted irredentist ideas, aiming at the annexation to Italy of the Italian-speaking lands still under"} +{"qid": "test2895", "pid": "17277423", "query": "who played the princess in kingsman secret service", "answer": "Hanna Alström", "passage": "\"Kingsman: The Secret Service\"\nEggsy's suggestion, Merlin activates the implanted chips' failsafe, killing almost everyone with a chip. An angry Valentine activates the signal and triggers worldwide pandemonium. Eggsy kills Gazelle and uses one of her sharpened prosthetic legs to impale Valentine and kill him, stopping the signal and ending the threat. In a mid-credits scene Eggsy, now a full Kingsman agent, offers his mother and half-sister a new home away from his abusive stepfather Dean, who flatly objects to Eggsy's suggestion. Eggsy then dispatches him in exactly the same manner that Hart dealt with one of Dean's henchmen earlier. Hanna Alström and Bjørn"} +{"qid": "test2896", "pid": "540386", "query": "when did the three little pigs come out", "answer": "c.1886", "passage": "\"The Three Little Pigs\"\nover the years, sometimes making the wolf a kind character. It is a type B124 folktale in the Aarne–Thompson classification system. \"\"The Three Little Pigs\"\" was included in \"\"The Nursery Rhymes of England\"\" (London and New York, c.1886), by James Halliwell-Phillipps. The story in its arguably best-known form appeared in \"\"English Fairy Tales\"\" by Joseph Jacobs, first published on June 19, 1890 and crediting Halliwell as his source. The story begins with the title characters being sent out into the world by their mother, to \"\"seek out their fortune\"\". The first little pig builds a house of straw, but a"} +{"qid": "test2898", "pid": "20193273", "query": "who is the first president to be impeached", "answer": "Andrew Johnson", "passage": "\"The Case for Impeachment\"\nother governments. The author contends impeachment could be brought for actions by the president intended to benefit himself financially based on inside information about economic dealings. Lichtman observes the president has not garnered knowledge from a study of earlier key events in U.S. politics: \"\"A president who seems to have learned nothing from history is abusing and violating the public trust and setting the stage for a myriad of impeachable offenses.\"\" Lichtman compares and contrasts Trump's actions with the Impeachment of Richard Nixon stemming from the Watergate scandal. Discussion of prior impeachment proceedings for presidents Andrew Johnson and Bill Clinton"} +{"qid": "test2899", "pid": "6886299", "query": "what kind of beer is st pauli girl", "answer": "Special Dark", "passage": "\"St. Pauli Girl\"\nSt. Pauli Girl St. Pauli Girl :beers are brewed and bottled by the St. Pauli Brauerei, which is located within the Beck's brewery in Bremen, Germany. The brand derives its name from the fact that the original brewery, which was established in 1857 by Lüder Rutenberg, was located next to the former in Bremen. There are currently three brands of beer brewed: St. Pauli Girl Lager, St. Pauli Girl Special Dark and St. Pauli Non-Alcoholic Malt Beverage. The beer is only produced for export and is not sold in Germany. St Pauli Girl, like many German breweries, advertises that they"} +{"qid": "test29", "pid": "3684038", "query": "in which sea pearl is found in india", "answer": "the Indian Ocean", "passage": "\"Roman commerce\"\nMuziris and Nelkynda in Malabar coast and. The main trading partners in southern India were the Tamil dynasties of the Pandyas, Cholas and Cheras. Meticulous descriptions of the ports and items of trade around the Indian Ocean can be found in the Greek \"\"Periplus of the Erythraean Sea\"\". In Latin texts, the term Indians (\"\"Indi\"\") designated all Asians, Indian and beyond. The main articles imported from India were spices such as pepper, cardamom, cloves, cinnamon, sandal wood and gems such as pearls, rubies, diamonds, emeralds and ivory. In exchange the Romans traded silver and gold. Hoards of Roman coins have"} +{"qid": "test290", "pid": "2225338", "query": "who wrote the song mary had a little lamb", "answer": "John Roulstone", "passage": "\"Mary Had a Little Lamb\"\nMary Had a Little Lamb \"\"Mary Had a Little Lamb\"\" is an English language nursery rhyme of nineteenth-century American origin. It has a Roud Folk Song Index number of 7622. The nursery rhyme was first published by the Boston publishing firm Marsh, Capen & Lyon, as a poem by Sarah Josepha Hale on May 24, 1830, and was possibly inspired by an actual incident. There are competing theories on the origin and inspiration of this poem. One holds that John Roulstone wrote the first four lines and that the final twelve lines, less childlike than the first, were composed by"} +{"qid": "test290", "pid": "2286888", "query": "who wrote the song mary had a little lamb", "answer": "Sarah Josepha Hale", "passage": "\"Sarah Josepha Hale\"\nhis journal, the \"\"Ladies' Magazine\"\". She agreed and from 1828 until 1836 served as editor in Boston, though she preferred the title \"\"editress\"\". Hale hoped the magazine would help in educating women, as she wrote, \"\"not that they may usurp the situation, or encroach on the prerogatives of man; but that each individual may lend her aid to the intellectual and moral character of those within her sphere\"\". Her collection \"\"Poems for Our Children\"\", which includes \"\"Mary Had a Little Lamb\"\" (originally titled \"\"Mary's Lamb\"\"), was published in 1830. The poem was written for children, an audience for which many"} +{"qid": "test290", "pid": "2225339", "query": "who wrote the song mary had a little lamb", "answer": "John Roulstone", "passage": "\"Mary Had a Little Lamb\"\nSarah Josepha Hale; others claim that Hale was responsible for the entire poem. As a young girl, Mary Sawyer (later Mary Tyler) kept a pet lamb that she took to school one day at the suggestion of her brother. A commotion naturally ensued. Mary recalled: \"\"Visiting school that morning was a young man by the name of John Roulstone, a nephew of the Reverend Lemuel Capen, who was then settled in Sterling. It was the custom then for students to prepare for college with ministers, and for this purpose Roulstone was studying with his uncle. The young man was very"} +{"qid": "test290", "pid": "13412684", "query": "who wrote the song mary had a little lamb", "answer": "Sarah Josepha Hale", "passage": "\"Liberia; or, Mr. Peyton's Experiments\"\nLiberia; or, Mr. Peyton's Experiments Liberia; or, Mr. Peyton's Experiments is an 1853 novel by Sarah Josepha Hale, the author of the nursery rhyme \"\"Mary Had a Little Lamb\"\", who wrote the novel under the name of Sara J. Hale. \"\"Liberia\"\" falls under the category of plantation literature, a literary genre that emerged in the Southern United States in response to \"\"Uncle Tom's Cabin\"\", which was criticised as inaccurately depicting slaveholding in the south. However, whilst the majority of such works attempted to defend slavery as an institution, \"\"Liberia\"\" argues that freed slaves cannot live prosperous lives anywhere but their"} +{"qid": "test2902", "pid": "16874813", "query": "who played gino in a place to call home", "answer": "Aldo Mignone", "passage": "\"A Place to Call Home (TV series)\"\n2012. Marta Dusseldorp (Sarah Adams), Brett Climo (George Bligh) and Frankie J. Holden (Roy Briggs) were announced a month later, with Dusseldorp leading the overall cast. Newcomers David Berry (James Bligh), Arianwen Parkes-Lockwood (Olivia Bligh), Abby Earl (Anna Bligh) and Aldo Mignone (Gino Poletti), made up the rest of the main cast. \"\"A Place to Call Home\"\" is set primarily in both the fictional estate \"\"Ash Park\"\" and the nearby fictional country town of \"\"Inverness\"\" in New South Wales. Inverness was also used as the country setting of \"\"Always Greener\"\". Camden and the Southern Highlands in New South Wales serves"} +{"qid": "test2902", "pid": "16874811", "query": "who played gino in a place to call home", "answer": "Aldo Mignone", "passage": "\"A Place to Call Home (TV series)\"\nArianwen Parkes-Lockwood (Olivia Bligh), Aldo Mignone (Gino Poletti), Sara Wiseman (Carolyn Bligh), Jenni Baird as (Regina Standish), Tim Draxl (Henry Fox), Dominic Allburn (Harry Polson), and Frankie J. Holden (Roy Briggs). It has been described as a \"\"compelling melodrama about love and loss set against the social change of the 1950s\"\". The show ended after six seasons in 2018. Development for \"\"A Place to Call Home\"\" began after Bevan Lee completed his \"\"domestic trilogy\"\" (\"\"Always Greener\"\", \"\"Packed to the Rafters\"\" and \"\"Winners & Losers\"\"). He took inspiration from film director Douglas Sirk's 1950s films such as \"\"Written on the Wind\"\""} +{"qid": "test2903", "pid": "7167363", "query": "who did the 49ers beat in the super bowls", "answer": "Denver Broncos", "passage": "\"Super Bowl XLVII\"\nand before were moved ahead one week. The same situation occurred in 2002 when the 9/11 attacks caused a one-week delay in the 2001 NFL season, resulting in the Super Bowl XXXVI falling within the Mardi Gras parade calendar. This was the 49ers' second Super Bowl played at the Superdome—the first being Super Bowl XXIV when they beat the Denver Broncos 55–10. The 49ers, Broncos and New England Patriots are the only teams so far to play two or more Super Bowls at the Superdome. The 49ers also joined the Broncos and the Colts in playing two Super Bowls at"} +{"qid": "test2903", "pid": "6573297", "query": "who did the 49ers beat in the super bowls", "answer": "San Diego Chargers", "passage": "\"Eric Davis (American football)\"\nthe game - a 44-yard interception return for a touchdown on the game's third play from scrimmage and a forced fumble on Michael Irvin that led to another 49ers touchdown. These plays helped the 49ers beat the previous two-time champion Cowboys to advance to Super Bowl XXIX. The 49ers went on to beat the San Diego Chargers 49–26. In 1995, Davis went to the Pro Bowl and helped the 49ers be the number-one ranked defense. In 1996, he became a free agent and signed with the Carolina Panthers, helping them reach the only to lose to eventual Super Bowl XXXI"} +{"qid": "test2903", "pid": "394478", "query": "who did the 49ers beat in the super bowls", "answer": "San Diego Chargers", "passage": "\"Super Bowl XXIII\"\nwhat is now Hard Rock Stadium, players duplicated Jennings' feat: Andre Coleman returned a kickoff against the 49ers in Super Bowl XXIX for the San Diego Chargers, Tim Dwight did so for the Atlanta Falcons against the Denver Broncos in Super Bowl XXXIII, and Devin Hester did so for the Chicago Bears against the Indianapolis Colts in Super Bowl XLI. But the 49ers immediately responded with a touchdown of their own on an 85-yard, 4-play drive. First, Montana threw a short pass to Rice, who turned it into a 31-yard gain. Then the San Francisco quarterback completed a 40-yard pass"} +{"qid": "test2903", "pid": "394946", "query": "who did the 49ers beat in the super bowls", "answer": "Miami Dolphins", "passage": "\"Super Bowl XXXIII\"\nin Weeks 15 and 16, and won both games. The Falcons did not return to play in another Super Bowl until 2016, when they lost 28–34 to the New England Patriots in Super Bowl LI. The Broncos demolished the Miami Dolphins 38–3 and beat the New York Jets 23–10 in the playoffs. Meanwhile, the Falcons were victorious against the San Francisco 49ers, 20–18 and then upset the heavily favored 15-1 Minnesota Vikings on the road, 30–27 in overtime. This was the third Super Bowl in history that featured two teams with two losses or less. Both teams came into the"} +{"qid": "test2903", "pid": "394496", "query": "who did the 49ers beat in the super bowls", "answer": "Cincinnati Bengals", "passage": "\"Super Bowl XXIV\"\nas head coach after San Francisco's 20–16 win over the Cincinnati Bengals in the previous year's Super Bowl, but rookie head coach George Seifert did not miss a beat, as he guided the 49ers to a league-best 14–2 regular season record. Their two losses were only by a combined margin of 5 points. The 49ers' offense was just as dominating as it was during the previous regular season. Quarterback Joe Montana threw for 3,512 yards, 26 touchdowns, and only 8 interceptions, giving him what was then the highest single-season quarterback rating in NFL history (112.4). Montana also rushed for 227"} +{"qid": "test2903", "pid": "394886", "query": "who did the 49ers beat in the super bowls", "answer": "Denver Broncos", "passage": "\"Super Bowl XXXI\"\nBowl XII, the Oakland Raiders defeated the Philadelphia Eagles 27–10 in Super Bowl XV, the Chicago Bears beat the New England Patriots 46–10 in Super Bowl XX, and the San Francisco 49ers beat the Denver Broncos 55–10 in Super Bowl XXIV. The Packers also became the first dark-colored team to win a Super Bowl indoors. Sources: NFL.com Super Bowl XXXI, Super Bowl XXXI Play Finder GB, Super Bowl XXXI Play Finder NE Completions/attempts Carries Long gain Receptions Times targeted The following records were set in Super Bowl XXXI, according to the official NFL.com boxscore, the 2016 NFL Record & Fact"} +{"qid": "test2903", "pid": "12880210", "query": "who did the 49ers beat in the super bowls", "answer": "Denver Broncos", "passage": "\"Russell Okung\"\n2013, but the Seahawks finished the season 13-3. In the playoffs, the Seahawks beat both the New Orleans Saints and San Francisco 49ers to reach Super Bowl XLVIII. The Seahawks won the Super Bowl 43-8 after they beat the Denver Broncos to give Okung his first Super Bowl ring. Okung started 14 games in the 2014 season and help the Seahawks finish with a 12-4 record. The Seahawks beat both the Carolina Panthers and Green Bay Packers to reach Super Bowl XLIX. The Seahawks failed to repeat as Super Bowl champions after they lost 28–24 to the New England Patriots."} +{"qid": "test2903", "pid": "20668822", "query": "who did the 49ers beat in the super bowls", "answer": "San Diego Chargers", "passage": "\"49ers–Raiders rivalry\"\nseason opener of 1994 at Candlestick Park was the next iteration in the Battle of the Bay, with the 49ers beating the Raiders 44–14. In 1994's Super Bowl XXIX, the 49ers won their last Super Bowl to date against the then-San Diego Chargers. The next year, the Los Angeles Raiders returned to Oakland. On October 8, 2000, Oakland defeated San Francisco 34–28 in overtime with Rich Gannon connecting with Tim Brown for 2 touchdowns and the Niners' Jeff Garcia passing for four touchdowns. On November 3, 2002, the 49ers defeated the Raiders 23–20 in overtime at the Oakland Coliseum with"} +{"qid": "test2903", "pid": "14383344", "query": "who did the 49ers beat in the super bowls", "answer": "San Diego Chargers", "passage": "\"Cowboys–Steelers rivalry\"\nSuper Bowl champions, while the Steelers behind their \"\"Blitzburgh\"\" defense was the favorite to win the AFC. However, the favored Steelers were upset by the San Diego Chargers 17–13 while the San Francisco 49ers, who had lost in the NFC Championship game the previous two years to the Cowboys, beat the Cowboys 38–28. Fans would only have to wait another year for Cowboys–Steelers III in the Super Bowl, as both teams advanced to Super Bowl XXX. Like the previous two matchups, the game was close, but this time favored the Cowboys, who won 27–17 after Steelers quarterback Neil O'Donnell threw"} +{"qid": "test2903", "pid": "12272152", "query": "who did the 49ers beat in the super bowls", "answer": "Cincinnati Bengals", "passage": "\"1982 San Francisco 49ers season\"\nas the defending Super Bowl champion and miss the playoffs. 1982 San Francisco 49ers season The 1982 San Francisco 49ers season was the team's 33rd in the league. The team was coming off a Super Bowl victory over the Cincinnati Bengals. However, 1982 was strike-shortened, and only nine games were played. This season was the only one in an 18 season streak in which the 49ers did not win at least 10 games. This 49ers team was also the only team in history to win more than half its road games while losing all its home games. The 49ers were"} +{"qid": "test2903", "pid": "393784", "query": "who did the 49ers beat in the super bowls", "answer": "Cincinnati Bengals", "passage": "\"Super Bowl V\"\nwith a field goal and a safety. Then the Cowboys overcame the San Francisco 49ers in the NFC championship game, aided by Thomas' 143 rushing yards, along with interceptions by Renfro and Jordan late in the third quarter that were both converted into touchdowns. Meanwhile, the Colts advanced to the Super Bowl by beating the Cincinnati Bengals and the Oakland Raiders in the playoffs at Memorial Stadium. For the Colts, Super Bowl V represented a chance to redeem themselves for their humiliating loss to the New York Jets in Super Bowl III. Volk commented, \"\"Going to the game a second"} +{"qid": "test2903", "pid": "9869792", "query": "who did the 49ers beat in the super bowls", "answer": "Cincinnati Bengals", "passage": "\"History of the San Francisco 49ers\"\nthere was a good chance he would have scored a touchdown, as there were no 49ers downfield. On the next play, White was sacked by Lawrence Pillers and fumbled the ball, which was recovered by Jim Stuckey, giving the 49ers the win and a trip to their first ever Super Bowl against the Cincinnati Bengals, who were also in their first Super Bowl. The 49ers would take a 20–0 halftime lead and hold on to win Super Bowl XVI 26–21 behind kicker Ray Wersching's four field goals and a key defensive stand. Throughout the '81 season, the defense had been"} +{"qid": "test2903", "pid": "374767", "query": "who did the 49ers beat in the super bowls", "answer": "Cincinnati Bengals", "passage": "\"San Francisco 49ers\"\na pass from Danny White and got to midfield before he was pulled down by the jersey at the 49ers 44-yard line by Cornerback Eric Wright saving a potential late-touchdown. On the next play, White was sacked by Lawrence Pillers and fumbled the ball, which was recovered by Jim Stuckey, giving the 49ers the win and a trip to their first ever Super Bowl against the Cincinnati Bengals, who were also in their first Super Bowl. In Super Bowl XVI The 49ers took a 20–0 halftime lead and held on to win 26–21 behind kicker Ray Wersching's four field goals"} +{"qid": "test2903", "pid": "8537155", "query": "who did the 49ers beat in the super bowls", "answer": "San Diego Chargers", "passage": "\"Lee Woodall\"\nLee Woodall Lee Artis Woodall (born October 31, 1969) is a former professional American football player who was selected by the San Francisco 49ers in the sixth round of the 1994 NFL Draft. A 6'1\"\", 230-lb. linebacker from West Chester University, Woodall played in 8 NFL seasons from 1994 to 2001. He was a rookie for the 49ers during the 1994 season when they beat the San Diego Chargers 49-26 in Super Bowl XXIX. A personal highlight was a fumble return for 96 yards in 1995 in a win against the Buffalo Bills. Selected to the Pro Bowl in 1995;"} +{"qid": "test2904", "pid": "2470091", "query": "when was the south asian association for regional co-operation (saarc) formed", "answer": "December 1985", "passage": "\"South Asian Association for Regional Cooperation\"\nSouth Asian Association for Regional Cooperation
The South Asian Association for Regional Cooperation (SAARC) is the regional intergovernmental organization and geopolitical union of nations in South Asia. Its member states include Afghanistan, Bangladesh, Bhutan, India, Nepal, the Maldives, Pakistan and Sri Lanka. SAARC comprises 3% of the world's area, 21% of the world's population and 3.8% (US$2.9 trillion) of the global economy, as of 2015. SAARC was founded in Dhaka on 8 December 1985. Its secretariat is based in Kathmandu, Nepal. The organization promotes development of economic and regional integration. It launched the South Asian Free Trade Area in"} +{"qid": "test2904", "pid": "778225", "query": "when was the south asian association for regional co-operation (saarc) formed", "answer": "December 1985", "passage": "\"Foreign relations of Bangladesh\"\nthe formal inauguration of the South Asian Association for Regional Cooperation (SAARC) at a summit gathering of South Asian leaders in Dhaka in December 1985. Bangladesh has served in the chairmanship of SAARC and has participated in a wide range of ongoing SAARC regional activities An international organisation which includes South Asian and Southeast Asian nations. The member nations of this group are: Bangladesh, India, Myanmar, Sri Lanka, Thailand, Bhutan and Nepal. The organisation focuses on regional economy, regional development and trade & investment. Bangladesh is among the 8 member countries of this organization. But no plans for expansion have"} +{"qid": "test2905", "pid": "2147464", "query": "what hangs from the trees in the bayou", "answer": "Spanish moss", "passage": "\"Beauvoir (Biloxi, Mississippi)\"\nMexico, and Spanish moss hangs from many of the large old trees on the property. Oyster Bayou, a freshwater impediment and bay-head swamp, once connected directly to the Mississippi Sound and runs across the property behind the main house from West to East. This body of water is fed by natural artesian springs on the grounds. The northeast portion of the estate is the site of a primitive, pre-urban hardwood forest with an environment similar to what existed in the area during the 1800s. Current proposals envision restoring Oyster Bayou to its original environmental state, although this area also suffered"} +{"qid": "test2906", "pid": "2750406", "query": "new york heart association functional classification of angina", "answer": "II", "passage": "\"New York Heart Association Functional Classification\"\nNew York Heart Association Functional Classification The New York Heart Association (NYHA) Functional Classification provides a simple way of classifying the extent of heart failure. It places patients in one of four categories based on how much they are limited during physical activity; the limitations/symptoms are in regard to normal breathing and varying degrees in shortness of breath and/or angina. It originated in 1902, when no measurements of cardiac function were possible, to provide a common language for physicians to communicate. Despite difficulties in applying it, such as the challenge of consistently classifying patients in class II or III, because"} +{"qid": "test2906", "pid": "751119", "query": "new york heart association functional classification of angina", "answer": "II", "passage": "Angina\nthe heart muscle (i.e., there can be severe pain with little or no risk of a myocardial infarction (heart attack) and a heart attack can occur without pain). In some cases, angina can be quite severe, and in the early 20th century this was a known sign of impending death. However, given current medical therapies, the outlook has improved substantially. People with an average age of 62 years, who have moderate to severe degrees of angina (grading by classes II, III, and IV) have a 5-year survival rate of approximately 92%. Worsening angina attacks, sudden-onset angina at rest, and angina"} +{"qid": "test2906", "pid": "16014870", "query": "new york heart association functional classification of angina", "answer": "II", "passage": "\"Apicoaortic Conduit\"\npopulation. Patients typically improve from New York Heart Association Functional Classification III or IV to Class I or II. AVB effectively relieves the LVOTO caused by aortic stenosis. There is long-term stability of the left ventricular hemodynamics after AVB, with no further biologic progression of native aortic valve stenosis. Once the pressure gradient across the native valve is substantially reduced, the narrowing and calcification of the native valve halts. In one study of 47 patients whose average age was 82 years, the mean gradient across the native valve was reduced from 46 +/- 14 mm HG to 17 +/- 7"} +{"qid": "test2907", "pid": "8881283", "query": "who wrote the song would i lie to you", "answer": "Peter Vale", "passage": "\"Would I Lie to You? (Charles & Eddie song)\"\nWould I Lie to You? (Charles & Eddie song) \"\"Would I Lie to You?\"\" is an R&B song by American duo Charles & Eddie. Written by Mike Leeson and Peter Vale and produced by Josh Deutsch, \"\"Would I Lie to You?\"\" was the debut single by the pop-soul duo, and it proved to be their biggest hit. A major international success, it reached number one on the UK Singles Chart for two weeks in November 1992, and was also number one in New Zealand, Germany, Austria and Zimbabwe. It was a top five hit in several other European countries while"} +{"qid": "test2908", "pid": "16876830", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"Music of The Hobbit film series\"\nMusic of The Hobbit film series The music of \"\"The Hobbit\"\" film series is composed and produced by Howard Shore, who scored all three \"\"The Lord of the Rings\"\" films, to which The Hobbit trilogy is a prequel. The score continues the style of The Lord of the Rings score, and utlizies a vast ensemble, multiple musical forms and styles, a large number of leitmotives and various unusual instruments, adding to Shore's overarching music of the Middle-earth films. Shore composed over nine hours of music, featuring 65 new musical themes and reprising 50 themes from the Lord of the Rings."} +{"qid": "test2908", "pid": "2461000", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"The Lord of the Rings (film series)\"\ngames were released to supplement the film series. They include: \"\",\"\" Pinball, \"\"\"\", \"\"\"\", , \"\"\"\", \"\"\"\", \"\"\"\", \"\"\"\", \"\"The Lord of the Rings Online\"\", \"\"\"\", \"\"\"\", \"\"\"\", \"\"Lego The Lord of the Rings\"\", \"\"Guardians of Middle-earth\"\", \"\"Lego The Hobbit (video game)\"\", \"\"\"\", and \"\"\"\". The Lord of the Rings (film series) The Lord of the Rings is a film series consisting of three epic fantasy adventure films directed by Peter Jackson. They are based on the novel \"\"The Lord of the Rings\"\" by J. R. R. Tolkien. The films are subtitled \"\"\"\" (2001), \"\"\"\" (2002) and \"\"\"\" (2003). They"} +{"qid": "test2908", "pid": "1485902", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"The Lord of the Rings: The Fellowship of the Ring\"\na system that copied recorded imagery of fire. The musical score for \"\"The Lord of the Rings\"\" films was composed by Howard Shore. It was performed by the 100-strong New Zealand Symphony Orchestra, the London Philharmonic Orchestra, the London Voices, The London Oratory School Schola, and the Maori Samoan Choir, and featured several vocal soloists. Shore wrote almost four hours of finalised music for the film (of which just over three hours are used as underscore), featuring a number of non-orchestral instruments, and a large number (49-62) of leitmotives. Two original songs, \"\"Aníron\"\" and the end title theme \"\"May It"} +{"qid": "test2908", "pid": "1485936", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"The Lord of the Rings: The Two Towers\"\nThe Lord of the Rings: The Two Towers The Lord of the Rings: The Two Towers is a 2002 epic fantasy adventure film directed by Peter Jackson and based on the second volume of J. R. R. Tolkien's novel \"\"The Lord of the Rings\"\". It is the second instalment in \"\"The Lord of the Rings\"\" film series, preceded by \"\"\"\" (2001) and concluding with \"\"\"\" (2003). Continuing the plot of \"\"The Fellowship of the Ring\"\", the film intercuts three storylines. Frodo and Sam continue their journey towards Mordor to destroy the One Ring, meeting and joined by Gollum, the ring's"} +{"qid": "test2908", "pid": "16876849", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"Music of The Hobbit film series\"\nsong \"\"The Last Goodbye\"\". The two-disc special edition contains two bonus tracks and five extended tracks. Music of The Hobbit film series The music of \"\"The Hobbit\"\" film series is composed and produced by Howard Shore, who scored all three \"\"The Lord of the Rings\"\" films, to which The Hobbit trilogy is a prequel. The score continues the style of The Lord of the Rings score, and utlizies a vast ensemble, multiple musical forms and styles, a large number of leitmotives and various unusual instruments, adding to Shore's overarching music of the Middle-earth films. Shore composed over nine hours of"} +{"qid": "test2908", "pid": "2460940", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"The Lord of the Rings (film series)\"\nThe Lord of the Rings (film series) The Lord of the Rings is a film series consisting of three epic fantasy adventure films directed by Peter Jackson. They are based on the novel \"\"The Lord of the Rings\"\" by J. R. R. Tolkien. The films are subtitled \"\"\"\" (2001), \"\"\"\" (2002) and \"\"\"\" (2003). They are a New Zealand-American venture produced by WingNut Films and The Saul Zaentz Company and distributed by New Line Cinema. The trilogy was one of the biggest and most ambitious film projects ever undertaken. It had a budget of $281 to $330 million depending on"} +{"qid": "test2908", "pid": "11781550", "query": "number of films in lord of the rings", "answer": "three", "passage": "\"Tolkien tourism\"\nTolkien tourism Tolkien tourism is a phenomenon of fans of \"\"The Lord of the Rings\"\" fictional universe travelling to sites of film- and book-related significance. It is especially notable in New Zealand, site of the movie trilogy by Peter Jackson, where it is credited as having raised the annual tourism numbers. The three films (\"\"\"\", \"\"\"\", and \"\"\"\") based on the novel \"\"The Lord of the Rings\"\" by J. R. R. Tolkien were shot in various locations throughout New Zealand, and many of these locations have been preserved and altered to encourage the tourism that makes up a significant portion"} +{"qid": "test2909", "pid": "3784866", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Jaffa Cakes\"\nJaffa Cakes Jaffa Cakes are biscuit-sized cakes introduced by McVitie and Price in the UK in 1927 and named after Jaffa oranges. The most common form of Jaffa cakes are circular, in diameter and have three layers: a Genoise sponge base, a layer of orange flavoured jam and a coating of chocolate. Jaffa cakes are also available as bars or in small packs, and in larger and smaller sizes. The original Jaffa Cakes come in packs of 12, 24 or 36. Because McVitie's did not trademark the name \"\"Jaffa Cakes\"\", other biscuit manufacturers and supermarkets have made similar products under"} +{"qid": "test2909", "pid": "3784869", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Jaffa Cakes\"\nbiscuits due to their size and shape, and the fact that they were often eaten in place of biscuits. McVities insisted that the product was a cake, and allegedly produced a giant Jaffa cake in court to illustrate its point. The product was assessed on the following criteria: The court found in favour of McVitie's and ruled that the product should be considered a cake, meaning that VAT is not paid on Jaffa cakes in the United Kingdom. In Ireland, Jaffa cakes are regarded as cakes by Revenue as their moisture content is greater than 12%. As a result, they"} +{"qid": "test2909", "pid": "3784867", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Jaffa Cakes\"\nthe same name. The product's classification as a cake or biscuit was part of a VAT tribunal in 1991, with the court finding in McVitie's favour that the Jaffa cake should be considered a cake for tax purposes. In 2012 they were ranked the best selling cake or biscuit in the United Kingdom. McVitie's entire line of Jaffa cakes are produced in the United Kingdom at the McVitie's factory in Stockport. The Jaffa cake production area covers an acre () and includes a production line over a mile () long which sits on the Stockport side of the site's boundary"} +{"qid": "test2909", "pid": "3784870", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Jaffa Cakes\"\nare charged the reduced rate of VAT (13.5% ). Jaffa Cakes Jaffa Cakes are biscuit-sized cakes introduced by McVitie and Price in the UK in 1927 and named after Jaffa oranges. The most common form of Jaffa cakes are circular, in diameter and have three layers: a Genoise sponge base, a layer of orange flavoured jam and a coating of chocolate. Jaffa cakes are also available as bars or in small packs, and in larger and smaller sizes. The original Jaffa Cakes come in packs of 12, 24 or 36. Because McVitie's did not trademark the name \"\"Jaffa Cakes\"\", other"} +{"qid": "test2909", "pid": "3784868", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Jaffa Cakes\"\nwith Manchester. Because of the nature of the product – having multiple components of cake, chocolate covering and jam – special hardware accelerators were devised to allow rapid computer inspection of 20 products per second, taking place under four symmetrically placed lights. Although Jaffa cakes are usually orange flavour, limited edition flavours have been available, such as lemon-and-lime, strawberry and blackcurrant. In the United Kingdom, value added tax is payable on chocolate-covered biscuits, but not on chocolate-covered cakes. McVities defended its classification of Jaffa Cakes as cakes at a VAT tribunal in 1991, against the ruling that Jaffa cakes were"} +{"qid": "test2909", "pid": "3943467", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Nice Cup of Tea and a Sit Down\"\non storage, dunking and enjoyment. These are mostly British, with a final section on foreign ones which have entered the UK market such as Tim Tam or Choco Leibniz. A Venn diagram shows the distinctions and overlaps between the categories biscuit, cake, bread, crackers, chocolate biscuits and chocolate bars. Covers Jaffa Cake, wedding cake, fairy cakes, packet cakes, ginger cake and Battenberg, with discussion of icing and glacé cherries. Sitting down in a comfy chair is advised, but advice is given on other tea situations, including in moving vehicles, and in public places such as cafés. Caution is advised with"} +{"qid": "test2909", "pid": "4694852", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Victor Spinetti\"\ntwo office workers who jack it all in to become farmers, he starred in all but one of the 13 episodes. His absence in episode No. 3 of the second series was covered by fellow Welsh actor Richard Davies, playing Spinetti's character's brother. In the 1970s Spinetti appeared in a series of television advertisements for McVities' (now United Biscuits) Jaffa Cakes, as \"\"The Mad Jaffa Cake Eater\"\", a turbaned, Middle-Eastern style character who rode a bicycle and surreptitiously stole and ate other people's Jaffa Cakes, prompting the catchphrase \"\"There's Orangey!\"\" He hosted \"\"Victor's Party\"\" for Granada. In 1979 he voiced"} +{"qid": "test2909", "pid": "9693286", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Snack cake\"\nto consumers. For example, Dolly Madison zingers, Hostess brand Twinkies, and Drake's coffee cakes were all solely produced by the now-defunct Interstate Bakeries Corporation. Jaffa cakes are a popular type of biscuit-like snack cake in Ireland and the United Kingdom. The following is a chart of equivalent products produced by major snack cake labels. Snack cake Snack cakes are a type of baked dessert confectionery made with cake and icing. The main manufacturer in Canada is Vachon Inc. which makes and distributes such products as May West, Jos. Louis, Passion Flakie, and Ah Caramel!. Snack cakes can be found in"} +{"qid": "test2909", "pid": "4063393", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"McVitie's\"\nLibrary premises on George IV Bridge in Edinburgh. The McVitie's Chocolate Homewheat Digestive was created in 1925. Over 71 million packets of McVitie's chocolate digestives are eaten in the United Kingdom each year, equating to 52 biscuits per second. HobNobs were launched in 1985 and a milk chocolate variant followed in 1987. Launched in 1927, Jaffa Cakes were ranked the best selling cake or biscuit in the UK in 2012. In 1947 McVitie & Price made the wedding cake for Princess Elizabeth and Philip Mountbatten. Some of the products in the McVitie's line were rebranded \"\"McV\"\" in 2002, but this"} +{"qid": "test2909", "pid": "10787798", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"United Biscuits Network\"\nto Doris on the Jaffa Cakes. In its time UBN was, on the whole, popular with staff and its introduction was credited with a dramatic reduction in staff turnover. Programming was very similar to BBC Radio 1 and 2, but there were specialist programmes for Asian listeners and Country and western fans in Liverpool and Glasgow United Biscuits Network United Biscuits Network (or UBN for short) was an internal radio station serving the factories of United Biscuits. It was in operation from 1970 to 1979. UBN broadcast from the United Biscuits factory in Osterley to United Biscuits factories in London,"} +{"qid": "test2909", "pid": "9654318", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Caraway seed cake\"\nwere so popular a flavouring that they appear in at least 14 cake or biscuit recipes, as well as other items, including soap, a treatment for \"\"hysterics,\"\" and as a bait for rat traps in \"\"The Cook and Housekeeper's Complete and Universal Dictionary\"\". This cake is also known to have been popular in Ireland and Wales. See also Goosnargh Cake (Biscuit/cake named after village in Lancashire) Caraway seed cake Seed cake is a traditional British cake flavoured with caraway or other flavourful seeds. Caraway seeds have been long used in British cookery, and at one time caraway-seed biscuits were prepared"} +{"qid": "test2909", "pid": "20458486", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"The Ministry of Biscuits\"\nof songs’. Philip Reeve has written on his blog that \"\"'The Ministry of Biscuits\"\" was the moment when I found my feet as a writer. I knew while we were working on it that it was better than anything I’d done before. I suppose I could say that I had finally ‘found my own voice’.' The story is set in a parallel grim post-war Britain of the late 1940s, where The Ministry of Biscuits aims to 'control biscuits, and to control the idea of biscuits.' It prohibits decadent sweetmeats, such as the Gypsy Cream and the Jaffa Cake. The hero,"} +{"qid": "test2909", "pid": "4390962", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Heaton Chapel\"\ntogether regarded as rich. Heaton Chapel was in 2018 ranked by \"\"The Times\"\" best places to live 2018, higher than Didsbury. A large biscuit works was opened in 1918 by McVitie and Price, later McVitie's, part of United Biscuits. In this location chocolate covered biscuits such as Penguin biscuits and Jaffa Cakes are manufactured. Crossley Bros. Ltd commenced motor car production in 1906 after several years experience of building engines and by the end of 1916 had already supplied large numbers of tenders to the Royal Flying Corps. In addition, production of Beardmore and Bentley Aero engines was undertaken. Wartime"} +{"qid": "test2909", "pid": "6138698", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Ice cream cake\"\nfrom biscuits and cream. Victorian era desserts called bombes consisted of ice cream and fruit in decorative molds. Sometimes these desserts were lined with cake or biscuits. Ice cream cake recipes dating to the 1870s have also been found. Ice cream cakes are popular in the U.S. Carvel has a history of themed cakes advertised on television including Fudgie the Whale and Cookie Puss. Baskin-Robbins, Dairy Queen, Friendly's, Cold Stone Creamery, and other retailers also sell ice cream cakes. It is common for ice cream cake to be used as a birthday cake during birthday celebrations. At times, when ice"} +{"qid": "test2909", "pid": "1750466", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Chocolate-coated marshmallow treats\"\nteacake, with a chocolate biscuit base topped with marshmallow and raspberry jam in the centre. An argument about whether the teacake is a biscuit or a cake led to an action in the European Court of Justice by British company Marks and Spencer. The UK tax authorities had eventually accepted the company's argument that the teacakes were cakes (biscuits are taxed, cakes are not), but refused to repay most of the VAT. The European court ruled that in principle the tax should be repaid and in a further hearing before the UK Law Lords in 2009, after 13 years of"} +{"qid": "test2909", "pid": "1829873", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "Cornbread\n(such as a frontiersman would use), using butter, margarine, shortening, or cooking oil. Corn pones have been a staple of Southern U.S. cuisine, and have been discussed by many American writers, including Mark Twain. In the Appalachian Mountains, cornbread baked in a round iron skillet, or in a cake pan of any shape, is still referred to as a \"\"pone\"\" of cornbread (as opposed to \"\"hoe cakes,\"\" the term for cornbread fried in pancake style); and when biscuit dough (i.e., \"\"biscuits\"\" in the American sense of the word) is occasionally baked in one large cake rather than as separate biscuits,"} +{"qid": "test2909", "pid": "14650053", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Tipsy cake\"\nTipsy cake A tipsy cake is a sweet dessert cake, made originally of \"\"fresh sponge cakes soaked in good sherry and good brandy.\"\" The dish as prepared in England would typically have several small cakes stacked together, with the cracks between bristling with almonds. As a variety of the English trifle, tipsy cake is popular in the American South, often served after dinner as a dessert or at Church socials and neighborhood gatherings. The tipsy cake originated in the mid-18th century. A recipe for cake or biscuits, alcohol, and custard combined in a trifle bowl came to the American colonies"} +{"qid": "test2909", "pid": "8656993", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Tiffin (confectionery)\"\nTiffin (confectionery) Tiffin is a form of cake-like confection composed of crushed biscuits (most commonly digestive biscuits), sugar, syrup, raisins, cherries and cocoa powder, often covered with a layer of melted chocolate. Unlike regular cakes, Tiffin does not require baking. Instead, following preparation of the mixture, the confection is chilled until set. As a consequence the product may also be known as \"\"fridge cake\"\" or another similar term. It was invented in the early 1900s in Troon, Scotland. The confectioner Cadbury produces a chocolate bar called Tiffin, consisting of biscuit pieces and raisins in chocolate, as part of its Dairy"} +{"qid": "test2909", "pid": "8656994", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Tiffin (confectionery)\"\nMilk range. Tiffin (confectionery) Tiffin is a form of cake-like confection composed of crushed biscuits (most commonly digestive biscuits), sugar, syrup, raisins, cherries and cocoa powder, often covered with a layer of melted chocolate. Unlike regular cakes, Tiffin does not require baking. Instead, following preparation of the mixture, the confection is chilled until set. As a consequence the product may also be known as \"\"fridge cake\"\" or another similar term. It was invented in the early 1900s in Troon, Scotland. The confectioner Cadbury produces a chocolate bar called Tiffin, consisting of biscuit pieces and raisins in chocolate, as part of"} +{"qid": "test2909", "pid": "97939", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "Dessert\ncause for the variation of desserts. These are some major categories in which desserts can be placed. Biscuits, (from the Old French word \"\"bescuit\"\" originally meaning \"\"twice-baked\"\" in Latin, also known as \"\"cookies\"\" in North America, are flattish bite-sized or larger short pastries generally intended to be eaten out of the hand. Biscuits can have a texture that is crispy, chewy, or soft. Examples include layered bars, crispy meringues, and soft chocolate chip cookies. Cakes are sweet tender breads made with sugar and delicate flour. Cakes can vary from light, airy sponge cakes to dense cakes with less flour. Common"} +{"qid": "test2909", "pid": "12787340", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Tunis cake\"\nTunis cake A Tunis cake is a Madeira cake topped with a thick layer of chocolate and decorated with marzipan fruits. It is traditionally eaten at Christmas. The origins of the cake are Edwardian. Scottish bakery Macfarlane Langs produced commercial Tunis Cakes in the 1930s, and when they merged with McVitie & Price in 1948 to form a company called United Biscuits (which still owns the McVitie’s brand) the recipe passed to the new company. McVitie's produced a Tunis cake until the mid 1980s. It is now sold seasonally by some supermarkets in the UK. An early recipe does not"} +{"qid": "test2909", "pid": "12787341", "query": "is jaffa cakes a biscuit or a cake", "answer": "Cake", "passage": "\"Tunis cake\"\ninclude the chocolate and marzipan topping. Tunis cake A Tunis cake is a Madeira cake topped with a thick layer of chocolate and decorated with marzipan fruits. It is traditionally eaten at Christmas. The origins of the cake are Edwardian. Scottish bakery Macfarlane Langs produced commercial Tunis Cakes in the 1930s, and when they merged with McVitie & Price in 1948 to form a company called United Biscuits (which still owns the McVitie’s brand) the recipe passed to the new company. McVitie's produced a Tunis cake until the mid 1980s. It is now sold seasonally by some supermarkets in the"} +{"qid": "test2909", "pid": "5835327", "query": "is jaffa cakes a biscuit or a cake", "answer": "cakes", "passage": "\"Kiev cake\"\nfor the biscuit in a cooler. The next morning the chef Konstantin Nikitovich Petrenko, with the help of 17-year-old assistant Nadia Chernogor, in order to hide the mistake of his colleagues, spread frozen cakes with butter cream, strewed with powder, decorated with floral ornaments. The recipe of \"\"Kiev cake\"\" has changed with time: in the 1970s, bakers perfected the process of making protein-nut mixture, then started to add hazelnut in cake and began experimenting with peanuts and cashews. However, these expensive nuts increased the cake's cost so the factory returned to using hazelnuts. Kiev cake A Kiev cake or Kyiv"} +{"qid": "test2910", "pid": "2816144", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Stewie Griffin\"\nFurious\"\" franchise as follows. This is exactly how writer Cherry Chevapravatdumrong ranks the franchise. In the season 16 episode \"\"Send in Stewie, Please\"\", it is revealed that Stewie's English accent is fake and that he actually has an American Boston accent. Stewie's voice is provided by \"\"Family Guy\"\" creator Seth MacFarlane, who also provides the voices of Brian Griffin, Peter Griffin, and Glenn Quagmire as well as numerous other characters. MacFarlane based Stewie's accent on the voice of English actor Rex Harrison, particularly on Harrison's performance in the 1964 musical drama film \"\"My Fair Lady\"\". MacFarlane has stated that his"} +{"qid": "test2910", "pid": "2816131", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Stewie Griffin\"\nStewie Griffin Stewart Gilligan \"\"Stewie\"\" Griffin is a fictional character from the animated television series \"\"Family Guy\"\". He is voiced by series creator Seth MacFarlane and first appeared on television, along with the rest of the Griffin family, in a 15-minute short on December 20, 1998. Stewie was created and designed by MacFarlane himself, who was asked to pitch a pilot to the Fox Broadcasting Company, based on \"\"The Life of Larry\"\" and \"\"Larry & Steve\"\", two shorts made by MacFarlane featuring a middle-aged man named Larry and an intellectual dog, Steve. After the pilot was given the greenlight, the"} +{"qid": "test2910", "pid": "20634725", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Send in Stewie, Please\"\nSend in Stewie, Please \"\"Send in Stewie, Please\"\" is the twelfth episode of the sixteenth season of the animated sitcom \"\"Family Guy\"\", and the 301st episode overall. It aired on Fox in the United States on March 18, 2018 with limited commercial interruption due to its runtime of 25 minutes, and is written by Gary Janetti and directed by Joe Vaux. The episodes largely focuses on Stewie Griffin (voiced by creator Seth MacFarlane) about his major secrets, accompanied by a child psychologist (voiced by guest star Ian McKellen). None of the Griffin family appear except Brian at the very end,"} +{"qid": "test2910", "pid": "2357580", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Seth MacFarlane\"\nMacFarlane reached a US$100-million agreement with Fox to keep \"\"Family Guy\"\" and \"\"American Dad!\"\" until 2012. The agreement makes him the world's highest paid television writer. MacFarlane's success with \"\"Family Guy\"\" has opened doors to other ventures relating to the show. On April 26, 2005, he and composer Walter Murphy created \"\"\"\". The soundtrack features a Broadway show tune theme, and MacFarlane voiced Stewie in the track \"\"Stewie's Sexy Party\"\". A fan of Broadway musicals, MacFarlane comments on using musicals as a component to \"\"Family Guy\"\": In addition, a \"\"Family Guy\"\" video game was released in 2006. Two years later,"} +{"qid": "test2910", "pid": "13195856", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Baby Not on Board\"\nBaby Not on Board \"\"Baby Not on Board\"\" is the fourth episode in the seventh season of the American animated television series \"\"Family Guy\"\". It originally aired on the Fox network in the United States on November 2, 2008. The episode features Stewie (voiced by Seth MacFarlane) after he is accidentally left at home when the Griffins head for the Grand Canyon. The family soon notice his absence, and they rush home; however, Peter (also voiced by MacFarlane) makes it more difficult for his family because of his immature behavior. Meanwhile, Stewie realizes how much he depends on his family"} +{"qid": "test2910", "pid": "15256356", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Family Guy (season 10)\"\nFamily Guy (season 10) \"\"Family Guy\"\" tenth season debuted on the Fox network on September 25, 2011. The series follows the Griffin family, a dysfunctional family consisting of father Peter, mother Lois, daughter Meg, son Chris, baby Stewie and the family dog Brian, who reside in their hometown of Quahog. The executive producers for the tenth production season are Seth MacFarlane, Chris Sheridan, Danny Smith, Mark Hentemann, Steve Callaghan, Alec Sulkin, and Wellesley Wild. The showrunners are Hentemann and Callaghan. During this season, Peter becomes friends with Ryan Reynolds (guest-voicing as himself), the Griffins win the lottery, Meg falls in"} +{"qid": "test2910", "pid": "13195870", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Baby Not on Board\"\nit did feature some entertaining jokes. Baby Not on Board \"\"Baby Not on Board\"\" is the fourth episode in the seventh season of the American animated television series \"\"Family Guy\"\". It originally aired on the Fox network in the United States on November 2, 2008. The episode features Stewie (voiced by Seth MacFarlane) after he is accidentally left at home when the Griffins head for the Grand Canyon. The family soon notice his absence, and they rush home; however, Peter (also voiced by MacFarlane) makes it more difficult for his family because of his immature behavior. Meanwhile, Stewie realizes how"} +{"qid": "test2910", "pid": "19943940", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Family Guy (season 16)\"\nin Stewie, Please\"\"), and Brian and Stewie solve a mystery in a \"\"Sherlock Holmes\"\" parody (\"\"V Is for Mystery\"\"). Family Guy (season 16) \"\"Family Guy\"\" sixteenth season premiered on Fox in the United States on October 1, 2017, and ended on May 20, 2018. The series follows the dysfunctional Griffin family, consisting of father Peter, mother Lois, daughter Meg, son Chris, baby Stewie, and the family dog Brian, who reside in their hometown of Quahog. The executive producers for the sixteenth production season are Seth MacFarlane, Richard Appel, Alec Sulkin, Steve Callaghan, Danny Smith, and Kara Vallow. Sulkin returns"} +{"qid": "test2910", "pid": "1565287", "query": "who does the voice of stewie family guy", "answer": "Seth MacFarlane", "passage": "\"Family Guy\"\nreference in the scene made light of Jesus and his followers — not Metrano or his act. The case was settled out of court in 2010 with undisclosed terms. Seth MacFarlane voices three of the show's main characters: Peter Griffin, Brian Griffin, and Stewie Griffin. Since MacFarlane had a strong vision for these characters, he chose to voice them himself, believing it would be easier than for someone else to attempt it. MacFarlane drew inspiration for the voice of Peter from a security guard he overheard talking while attending the Rhode Island School of Design. Stewie's voice was based on"} +{"qid": "test2912", "pid": "530146", "query": "how long was dark side of the moon number 1", "answer": "a week", "passage": "\"The Dark Side of the Moon\"\na prism spectrum, representing the band's lighting and the record's themes. \"\"The Dark Side of the Moon\"\" produced two singles: \"\"Money\"\" and \"\"Us and Them\"\". The album topped the \"\"Billboard\"\" chart for a week, and remained on the chart for 741 weeks from 1973 to 1988. Following a change in how \"\"Billboard\"\" counts sales in 2009, it re-entered the chart and has since appeared for over 900 weeks. With estimated sales of over 45 million, it is Pink Floyd's bestselling album and one of the bestselling worldwide. It has been remastered and rereleased several times, and covered in its entirety"} +{"qid": "test2913", "pid": "16212360", "query": "where is the snooker world open currently held", "answer": "Haikou", "passage": "\"2012 World Open (snooker)\"\nby defeating Stephen Lee 10–1 in the final. The breakdown of prize money for this year is shown below: These matches were played in Haikou on 27 February 2012. These matches were held between 11 and 14 January 2012 at the World Snooker Academy, Sheffield, England. 2012 World Open (snooker) The 2012 Star Xing Pai Haikou World Open was a professional ranking snooker tournament that took place between 27 February – 4 March 2012 at the Haikou Stadium in Haikou, China. It was the first time that the tournament was held outside the United Kingdom. It was televised on ITV4"} +{"qid": "test2913", "pid": "16964647", "query": "where is the snooker world open currently held", "answer": "Hainan International Exhibition Center", "passage": "\"2013 World Open (snooker)\"\non 25 and 26 February 2013. These matches were held between 18 and 21 December 2012 at the World Snooker Academy in Sheffield, England. 2013 World Open (snooker) The 2013 Yearly Yuan-jiang Gujinggong Liquor Haikou World Open was a professional ranking snooker tournament that took place between 25 February–3 March 2013 at the Hainan International Exhibition Center in Haikou, China. It was the eighth ranking event of the 2012/2013 season, and the first time ITV broadcast a ranking event since the 1993 British Open. Mark Allen defended the title he won in 2012, by defeating Matthew Stevens 10–4 in the"} +{"qid": "test2913", "pid": "16212359", "query": "where is the snooker world open currently held", "answer": "Haikou", "passage": "\"2012 World Open (snooker)\"\n2012 World Open (snooker) The 2012 Star Xing Pai Haikou World Open was a professional ranking snooker tournament that took place between 27 February – 4 March 2012 at the Haikou Stadium in Haikou, China. It was the first time that the tournament was held outside the United Kingdom. It was televised on ITV4 Marco Fu made the 86th official maximum break during his round 4 qualifying match against Matthew Selt. This was Fu's second 147 break. Neil Robertson was the defending champion, but lost 2–5 against Stephen Lee in the second round. Mark Allen won his first ranking title"} +{"qid": "test2915", "pid": "4594684", "query": "when was the first commercial cell phone released", "answer": "1973", "passage": "\"Motorola DynaTAC\"\nthe system called AMPS, while others designed cell phones for that and other cellular systems. Martin Cooper, a former general manager for the systems division at Motorola, led a team that produced the DynaTAC 8000x, the first commercially available cellular phone small enough to be easily carried, and made the first phone call from it. Martin Cooper was the first person to make an analog cellular mobile phone call on a prototype in 1973. The Motorola DynaTAC 8000x was very large compared to phones today. This first cell phone was very expensive when it was released in the USA in"} +{"qid": "test2915", "pid": "20090648", "query": "when was the first commercial cell phone released", "answer": "1973", "passage": "\"Orelhão\"\ncountry then reached, back then, 30,635,605 inhabitants. Equipped with a coin box, adapted to a common apparatus, these semi-public telephones were found in commercial establishments that signed a contract with Companhia Telefônica Brasileira, a Canadian-owned company that was then responsible for telephony in the states of São Paulo, Rio de Janeiro and Minas Gerais. Real public telephones only reached Brazilian sidewalks in mid-1971, when more than 93 million people were living in the country and mobile phones were not created yet. Mobile telephony was just something imaginary and the first cell phone would only be released in 1973, accessible to"} +{"qid": "test2915", "pid": "9584575", "query": "when was the first commercial cell phone released", "answer": "1983", "passage": "\"Digital Revolution\"\n1989, 15% of all U.S. households owned a computer, and nearly 30% of households with children under the age of 18 owned one. By the late 1980s, many businesses were dependent on computers and digital technology. Motorola created the first mobile phone, Motorola DynaTac, in 1983. However, this device used analog communication - digital cell phones were not sold commercially until 1991 when the 2G network started to be opened in Finland to accommodate the unexpected demand for cell phones that was becoming apparent in the late 1980s. Compute! magazine predicted that CD-ROM would be the centerpiece of the revolution,"} +{"qid": "test2916", "pid": "2991939", "query": "who sings the theme song for degrassi the next generation", "answer": "Jakalope", "passage": "\"Degrassi: The Next Generation\"\nduring the first three seasons. Dave Ogilvie and Anthony Valcic of Canadian industrial-pop group Jakalope reworked and performed the song with a heavier sound, reflecting the growing maturity of the characters in season four. For seasons six and seven, the theme—still performed by Jakalope—was remixed and stripped of vocals. A fourth version of the theme song, with lyrics sung by Damhnait Doyle, was introduced for the eighth season, and a fifth version of the theme, performed by the in-show band \"\"\"\" is used for the ninth and tenth seasons. For seasons eleven and twelve, a sixth version of the theme"} +{"qid": "test2917", "pid": "16139196", "query": "when did the first ice age come out", "answer": "2002", "passage": "\"Ice Age (2002 film)\"\nIce Age (2002 film) Ice Age is a 2002 American computer-animated buddy comedy-drama film directed by Chris Wedge and co-directed by Carlos Saldanha from a story by Michael J. Wilson. Produced by Blue Sky Studios as its first feature film, it was released by 20th Century Fox on March 15, 2002. The film features the voices of Ray Romano, John Leguizamo, and Denis Leary. Set during the days of the ice age, the film centers around three main characters- Manny (Romano), a no-nonsense woolly mammoth; Sid (Leguizamo), a loudmouthed ground sloth; and Diego (Leary), a saber-tooth tiger- who come across"} +{"qid": "test2918", "pid": "13587888", "query": "what is a e8 in the marine corps", "answer": "Master sergeant", "passage": "\"First sergeant\"\na specific \"\"first sergeant's end issue.\"\" In the United States Marine Corps, first sergeant (abbreviated 1stSgt) is one rank above gunnery sergeant and one pay grade below sergeant major and master gunnery sergeant. It is equal in grade to master sergeant (E8), although the two ranks have different responsibilities. A first sergeant has command leadership responsibilities and serves as the senior enlisted adviser to the commander at the company, battery or detachment level, while master sergeants have technical responsibilities within their respective occupational fields, and serve important leadership roles within various company or battery sections. Master sergeants may also perform"} +{"qid": "test2919", "pid": "162315", "query": "who is given credit for the gnu initiative", "answer": "Richard Stallman", "passage": "GIMP\nStallman visited UC Berkeley where Spencer Kimball and Peter Mattis asked if they could change \"\"General\"\" to \"\"GNU\"\" (the name given to the operating system created by Stallman). Richard Stallman approved and the definition of the acronym GIMP was changed to be the \"\"GNU\"\" Image Manipulation Program. This reflected its new existence as being developed as Free Software as a part of the GNU Project. The number of computer architectures and operating systems supported has expanded significantly since its first release. The first release supported UNIX systems, such as Linux, SGI IRIX and HP-UX. Since the initial release, GIMP has"} +{"qid": "test2919", "pid": "2743533", "query": "who is given credit for the gnu initiative", "answer": "Richard Stallman", "passage": "\"GNU/Linux naming controversy\"\nLinux kernel and GNU components. In 1992, the Yggdrasil Linux distribution adopted the name \"\"Linux/GNU/X\"\". In Usenet and mailing-list discussions, one can find usages of \"\"GNU/Linux\"\" as early as 1992 and of \"\"GNU+Linux\"\" as early as 1993. The Debian project, which was at one time sponsored by the Free Software Foundation, switched to calling its product \"\"Debian GNU/Linux\"\" in early 1994; This change followed a request by Richard Stallman (who initially proposed \"\"LiGNUx,\"\" but suggested \"\"GNU/Linux\"\" instead after hearing complaints about the awkwardness of the former term). GNU's June 1994 \"\"Bulletin\"\" describes \"\"Linux\"\" as a \"\"free Unix system for 386"} +{"qid": "test2919", "pid": "7750884", "query": "who is given credit for the gnu initiative", "answer": "Richard Stallman", "passage": "Wikipedia\nreviewed under a formal process. It was founded on March 9, 2000, under the ownership of Bomis, a web portal company. Its main figures were Bomis CEO Jimmy Wales and Larry Sanger, editor-in-chief for Nupedia and later Wikipedia. Nupedia was initially licensed under its own Nupedia Open Content License, but even before Wikipedia was founded, Nupedia switched to the GNU Free Documentation License at the urging of Richard Stallman. Wales is credited with defining the goal of making a publicly editable encyclopedia, while Sanger is credited with the strategy of using a wiki to reach that goal. On January 10,"} +{"qid": "test2919", "pid": "2743530", "query": "who is given credit for the gnu initiative", "answer": "Richard Stallman", "passage": "\"GNU/Linux naming controversy\"\nvariants which combine the GNU operating system software with software from other sources. \"\"GNU/Linux\"\" is a term promoted by the Free Software Foundation (FSF) and its founder Richard Stallman. Proponents call for the correction of the more extended term, on the grounds that it doesn't give credit to the major contributor and the associated free software philosophy. GNU is a longstanding project begun in 1984 to develop a free operating system. It is argued that when the Linux kernel was independently created in 1991, it merely provided a substantial missing piece. Several distributions employ the FSF-endorsed name, such as Debian,"} +{"qid": "test2919", "pid": "15685687", "query": "who is given credit for the gnu initiative", "answer": "Richard Stallman", "passage": "\"GNU Health\"\nthe Free Software Foundation at LibrePlanet 2012, at University of Massachusetts Boston. GNU Health is a project of GNU Solidario, a non-profit non-governmental organization (NGO) that works in the areas of health and education with free software. GNU Health started in 2008 by Luis Falcón as a project for health promotion and disease prevention in rural areas. Its initial name was Medical. It has since evolved into a hospital information system, with a multi-disciplinary international team of contributors. In August 2011, Richard Stallman declared GNU Health an official GNU Package. Following this, development was moved from SourceForge to GNU Savannah."} +{"qid": "test2919", "pid": "6683047", "query": "who is given credit for the gnu initiative", "answer": "Richard Stallman", "passage": "\"Richard Stallman\"\nRichard Stallman Richard Matthew Stallman (; born 1953), often known by his initials, RMS, is an American free software movement activist and programmer. He campaigns for software to be distributed in a manner such that its users receive the freedoms to use, study, distribute and modify that software. Software that ensures these freedoms is termed free software. Stallman launched the GNU Project, founded the Free Software Foundation, developed the GNU Compiler Collection and GNU Emacs, and wrote the GNU General Public License. Stallman launched the GNU Project in September 1983 to create a Unix-like computer operating system composed entirely of"} +{"qid": "test2921", "pid": "16953260", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"Dandy Life\"\nDandy Life \"\"Dandy Life\"\" is a song by the American rock band Collective Soul. It is the sixth track from their fourth studio album \"\"Dosage\"\". \"\"Dandy Life\"\" was written by lead guitarist Ross Childress, who provided lead vocals on the track. It was the first of two commercially released songs by Collective Soul that do not feature vocals from lead singer Ed Roland; the latter one is \"\"I Don't Need Anymore Friends\"\" from the album \"\"Afterwords\"\" (2007), which was written and sung by current lead guitarist Joel Kosche. Commenting on the creation of \"\"Dandy Life,\"\" Roland said: Collective Soul performed"} +{"qid": "test2921", "pid": "10634392", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"Joel Kosche\"\nIt was the second of two commercially released songs by Collective Soul that do not feature vocals from lead singer Ed Roland; the first one is \"\"Dandy Life\"\" from the album \"\"Dosage\"\" (1999), which was written and sung by original lead guitarist Ross Childress. In August 2009, Collective Soul released the album \"\"Collective Soul\"\", also known as \"\"Rabbit\"\" to differentiate it from the band's 1995 album of the same name. Kosche co-wrote the tracks \"\"You\"\" and \"\"Understanding\"\" with Ed Roland, Dean Roland and Will Turpin. In September 2009, Collective Soul were inducted into the Georgia Music Hall of Fame. At"} +{"qid": "test2921", "pid": "1797613", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"Collective Soul\"\nCollective Soul Collective Soul is an American rock band originally from Stockbridge, Georgia. Now based in Atlanta, the group consists of lead vocalist Ed Roland, rhythm guitarist Dean Roland, bassist Will Turpin, drummer Johnny Rabb and lead guitarist Jesse Triplett. Before forming Collective Soul, singer Ed Roland studied music composition and guitar at the Berklee College of Music in Boston, Massachusetts. Since the mid-1980s, Roland was involved in Atlanta's underground music scene making demos and performing. He also worked at Real 2 Reel Studios in Stockbridge, which was owned by bassist Will Turpin's father, Bill Turpin. Roland's duties were producing,"} +{"qid": "test2921", "pid": "11038411", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"December (Collective Soul song)\"\nbecoming their highest-charting single until \"\"The World I Know\"\" reached the top spot in March 1996. In a December 2017 interview with Songfacts, lead singer Ed Roland explained the inspiration behind \"\"December\"\": Burmese rock band Iron Cross has \"\"copied\"\" the song live in concert. Live tracks recorded 3/14/95 at The Thunderdome in St. Petersburg, FL. December (Collective Soul song) \"\"December\"\" is a song by American alternative rock band Collective Soul, released on the band's 1995 eponymous album. Written by singer/guitarist Ed Roland, the song peaked at number 20 on the \"\"Billboard\"\" Hot 100 and number one on the Album Rock"} +{"qid": "test2921", "pid": "14767451", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"Heavy (Collective Soul song)\"\nthe 2014 Golden Corral ad In a December 2017 interview with \"\"Songfacts\"\", lead singer Ed Roland explained the inspiration behind \"\"Heavy\"\". Referencing Collective Soul's earlier hit, \"\"December\"\", he said: Heavy (Collective Soul song) \"\"Heavy\"\" is a song by American post-grunge band Collective Soul. It is the second single from their fourth album \"\"Dosage\"\". It was the last of the band's seven number ones on Billboard's Hot Mainstream Rock Tracks, as well as their most successful, staying atop the chart for fifteen weeks. It was also their last song to chart on the \"\"Billboard\"\" Hot 100, peaking at number 73. It"} +{"qid": "test2921", "pid": "7675793", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"Shine (Collective Soul song)\"\nnumber 11 on the \"\"Billboard\"\" Hot 100 for one week. VH1 would later rank \"\"Shine\"\" at number 42 on their list of the \"\"100 Greatest Songs of the '90s.\"\" In a December 2017 interview with Songfacts, lead singer Ed Roland explained the origin of \"\"Shine\"\": Due to the song's lyrical themes, particularly the mention of \"\"heaven\"\", Collective Soul was often early on regarded as a Christian band. Ed Roland elaborated, \"\"I remember around the time [\"\"Shine\"\" came out] getting into an argument with a writer who said, 'You're a Christian band.' I said, 'No, we're not.' 'Well, you have the"} +{"qid": "test2921", "pid": "11440242", "query": "who is the lead singer of collective soul", "answer": "Ed Roland", "passage": "\"Joseph Guay\"\nSeydel, founder of Captain Planet Foundation & Turner Foundation; Ken H. Doble, III, founder of QR Capital; Kevin Willis, basketball’s 20 year veteran; and football stars David Johnson and Jamal Anderson. WireTapMedia In the fall of 2006, Ed Roland, lead singer of the band Collective Soul, offered Guay the opportunity to collaborate as their photographer. Guay agreed and went on to create iconic images, three album covers, four music videos and a documentary film on Collective Soul. Roland later noted in a Billboard magazine article: “Joseph is on the top of my list as one of the purest artists I’ve"} +{"qid": "test2922", "pid": "3543352", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Dwyane Wade\"\nDwyane Wade Dwyane Tyrone Wade Jr. ( ; born January 17, 1982) is an American professional basketball player for the Miami Heat of the National Basketball Association (NBA). After a successful college basketball career with the Marquette Golden Eagles, Wade was drafted fifth overall in the 2003 NBA draft by Miami. In his third season, Wade led the Heat to their first NBA Championship in franchise history and was named the 2006 NBA Finals MVP. At the 2008 Summer Olympics, Wade led the United States men's basketball team, commonly known as the \"\"Redeem Team\"\", in scoring, and helped them capture"} +{"qid": "test2922", "pid": "3543429", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Dwyane Wade\"\nand formed the non-denominational Temple of Praise Binding and Loosing Ministry in Chicago. In May 2008, Wade purchased a church building for his mother's ministry. Dwyane Wade Dwyane Tyrone Wade Jr. ( ; born January 17, 1982) is an American professional basketball player for the Miami Heat of the National Basketball Association (NBA). After a successful college basketball career with the Marquette Golden Eagles, Wade was drafted fifth overall in the 2003 NBA draft by Miami. In his third season, Wade led the Heat to their first NBA Championship in franchise history and was named the 2006 NBA Finals MVP."} +{"qid": "test2922", "pid": "12897790", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"History of the Miami Heat\"\ninjury. Miami won game 4 at home and lost game 5 in Toronto. Dwyane Wade led the way to a game 6 victory leading to a game 7 in Toronto. The Heat lost game 7 in a blowout loss to the second-seeded Raptors after losing Chris Bosh and Whiteside. The 2016 free-agency, saw many franchise players leaving their teams in pursuits of championships, with Wade being no exception. After failing to sign Kevin Durant (who joined the Golden State Warriors), the focus shifted to the seemingly boiling relationship issues and disagreements between Dwyane Wade and Heat president Pat Riley, mostly"} +{"qid": "test2922", "pid": "3543407", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Dwyane Wade\"\nrole and became the leader of the second unit. On February 8, 2018, at the NBA trade deadline, the Cavaliers committed to a massive overhaul of their roster. After acquiring guards Jordan Clarkson, George Hill and Rodney Hood, combined with the youth movement of Cedi Osman, it was made clear to Wade that his role with the Cavaliers would be reduced. Cleveland wanted to \"\"do right\"\" by Wade, and as such, Wade was traded back to the Miami Heat in exchange for a protected 2024 second-round draft pick. At the funeral of Wade's long-time agent Henry Thomas in January 2018,"} +{"qid": "test2922", "pid": "3459168", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Kirk Hinrich\"\nas saying, Hinrich improved his stats in shooting and scoring during the 2006–07 season, his fourth in the NBA, with career highs in field goal, 3-point field goal, and free throw shooting percentage, as well as a career high 16.6 ppg. However, Hinrich's assists average was the lowest of his career and he also grabbed the fewest rebounds per game of his career. In a game against the Miami Heat, Dwyane Wade injured his wrist while being defended by Hinrich. Heat coach Pat Riley suggested that Hinrich injured Dwyane Wade's wrist on purpose. Hinrich was then played a recording of"} +{"qid": "test2922", "pid": "4192601", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Eddie Jones (basketball)\"\nJanuary 30, 2007. On February 1, 2007, Jones signed a minimum contract for his second stint with the Miami Heat, playing increasing minutes after Dwyane Wade's shoulder injury. The Heat had won the NBA title the previous year, but struggled throughout the season with injuries to Dwyane Wade, as Miami fell in a four-game sweep to the Chicago Bulls in the first round. After the 2006–07 season ended, Jones became an unrestricted free agent. On August 3, 2007, Jones agreed to a two-year deal with the Dallas Mavericks. On October 10, 2008, Jones was traded to the Indiana Pacers. After"} +{"qid": "test2922", "pid": "15589316", "query": "who does dwyane wade play for right now", "answer": "Miami Heat", "passage": "\"2011–12 Miami Heat season\"\n4–1, following their 121–106 Game 5 victory to become the 2012 NBA Champions, the 2nd Championship for the franchise. LeBron James won his first NBA championship, and was awarded the 2012 NBA Finals MVP. When the Heat made it all the way to the finals in Dwyane Wade, LeBron James, and Chris Bosh's first year playing together, they were seen as heavy favorites from the Eastern Conference to return in 2012. The team's original starting lineup was:
C – Joel Anthony
PF – Chris Bosh
SF – LeBron James
SG – Dwyane Wade
PG – Mario Chalmers The starting lineup"} +{"qid": "test2922", "pid": "3543392", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Dwyane Wade\"\nwould lose to Boston in five games. During the off-season, Miami-Dade County commissioners voted unanimously to rename the county \"\"Miami-Wade County\"\" for one week from July 1–7, 2010 in Wade's honor and to try and convince Wade to stay in Miami and sign with the Heat. On July 7, it was announced that Wade would be re-signing with the Miami Heat, along with former Toronto Raptor Chris Bosh. The following day, LeBron James announced he would be joining the Heat to play with Wade and Bosh, causing a stir in the media and among fans. The deals were officially announced"} +{"qid": "test2922", "pid": "11601474", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Erik Spoelstra\"\nstrong work ethic. As an assistant coach, he was credited for improving Heat star shooting guard Dwyane Wade's balance and jump shot after Wade's return from the 2004 Summer Olympics. Spoelstra won his first NBA championship as an assistant coach when the Miami Heat defeated the Dallas Mavericks in the 2006 NBA Finals. In April 2008, Spoelstra became the head coach of the Miami Heat after Pat Riley's decision to step down. Spoelstra was Riley's hand-picked successor. In naming Spoelstra as head coach, Riley said: \"\"This game is now about younger coaches who are technologically skilled, innovative, and bring fresh"} +{"qid": "test2922", "pid": "3543366", "query": "who does dwyane wade play for right now", "answer": "the Miami Heat", "passage": "\"Dwyane Wade\"\nbeat Cincinnati, 70–61, at the Bradley Center to win the Conference USA regular-season championship. Dwyane had 26 points, 10 rebounds, and five assists. Selected 5th overall in the 2003 NBA draft by the Miami Heat, Wade quickly emerged as a productive player on a youthful Miami Heat team and averaged 16.2 points on 46.5% shooting with averages of 4.0 rebounds and 4.5 assists per game. Wade is one of only four Marquette University players to be drafted in the first round; his is the highest draft selection in school history. After a 5–15 start, the Heat would gradually improve and"} +{"qid": "test2924", "pid": "8464494", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Chlordiazepoxide\nChlordiazepoxide Chlordiazepoxide, trade name Librium, is a sedative and hypnotic medication of the benzodiazepine class; it is used to treat anxiety, insomnia and withdrawal symptoms from alcohol and/or drug abuse. Chlordiazepoxide has a medium to long half-life but its active metabolite has a very long half-life. The drug has amnesic, anticonvulsant, anxiolytic, hypnotic, sedative and skeletal muscle relaxant properties. Chlordiazepoxide was discovered in 1959. It was the first benzodiazepine to be synthesized and the discovery of chlordiazepoxide was by pure chance. Chlordiazepoxide and other benzodiazepines were initially accepted with widespread public approval but were followed with widespread public disapproval and"} +{"qid": "test2924", "pid": "7198318", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Lormetazepam\nREM. In one clinical trial with patients who had prior experience with older hypnotics temazepam and nitrazepam, most preferred lormetazepam due to less heavy sedation, amnesia, and residual effects. Some side effects, including drowsiness, amnesia, and respiratory depression, are increased when lormetazepam is combined with other drugs with similar effects, e.g. alcohol and nonbenzodiazepine drugs. Although lormetazepam has been associated with adversely affecting immediate and delayed recall memory functions, studies have shown that lormetazepam's amnesic properties may be lesser compared to other hypnotic benzodiazepines. For example, in a 1984 study comparing the amnesic effects of lormetazepam to temazepam and flurazepam"} +{"qid": "test2924", "pid": "6264738", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Nordazepam\nNordazepam Nordazepam (INN; marketed under brand names Nordaz, Stilny, Madar, Vegesan, and Calmday; also known as nordiazepam, desoxydemoxepam, and desmethyldiazepam) is a 1,4-benzodiazepine derivative. Like other benzodiazepine derivatives, it has amnesic, anticonvulsant, anxiolytic, muscle relaxant, and sedative properties. However, it is used primarily in the treatment of anxiety disorders. It is an active metabolite of diazepam, chlordiazepoxide, clorazepate, prazepam, pinazepam, and medazepam. Nordazepam is among the longest lasting (longest half-life) benzodiazepines, and its occurrence as a metabolite is responsible for most cumulative side-effects of its myriad of pro-drugs when they are used repeatedly at moderate-high doses; the nordazepam metabolite oxazepam"} +{"qid": "test2924", "pid": "13556573", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "\"Medications used in dentistry and periodontics\"\nantihistamine. It is similar to diazepam and is a popular choice for many different dentists. Triazolamis typically used for shorter appointments. Zaleplon (Sonata) is also used in the treatment of insomnia. The patient is not in an extended sleep during throughout oral sedation, but is rather relaxed and comfortable throughout the procedure. Lorazepam (Ativan) is a very commonly prescribed drug for anxiety. It is very useful in appointments that are longer than two hours. Hydroxyzine (Vistaril) is classified as an antihistamine. It has anti-anxiety effects and works in conjunction with many benzodiazepines. It has no amnesic properties. Midazolam the shortest"} +{"qid": "test2924", "pid": "2657447", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Depressant\nThe first such drug, chlordiazepoxide (Librium), was discovered accidentally by Leo Sternbach in 1955, and made available in 1960 by Hoffmann–La Roche, which has also marketed the benzodiazepine diazepam (Valium) since 1963. Benzodiazepines enhance the effect of the neurotransmitter gamma-aminobutyric acid (GABA) at the GABA receptor, resulting in sedative, hypnotic (sleep-inducing), anxiolytic (anti-anxiety), anticonvulsant, and muscle relaxant properties; also seen in the applied pharmacology of high doses of many shorter-acting benzodiazepines are amnesic-dissociative actions. These properties make benzodiazepines useful in treating anxiety, insomnia, agitation, seizures, muscle spasms, alcohol withdrawal and as a premedication for medical or dental procedures. Benzodiazepines are"} +{"qid": "test2924", "pid": "2911952", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Triazolam\nTriazolam Triazolam (original brand name Halcion) is a central nervous system (CNS) depressant in the benzodiazepine class. It possesses pharmacological properties similar to those of other benzodiazepines, but it is generally only used as a sedative to treat severe insomnia. In addition to the hypnotic properties, triazolam's amnesic, anxiolytic, sedative, anticonvulsant and muscle relaxant properties are pronounced as well. Due to its short half-life, triazolam is not effective for patients who experience frequent awakenings or early wakening. Triazolam was initially patented in 1970 and went on sale in the United States in 1982. Triazolam is usually used for short-term treatment"} +{"qid": "test2924", "pid": "7198171", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Etizolam\nEtizolam Etizolam (marketed under the brand name Etilaam, Etizola, Sedekopan, Etizest, Pasaden or Depas) is a benzodiazepine analog. The etizolam molecule differs from a benzodiazepine in that the benzene ring has been replaced by a thiophene ring and triazole ring has been fused, making the drug a thienotriazolodiazepine. It possesses amnesic, anxiolytic, anticonvulsant, hypnotic, sedative and skeletal muscle relaxant properties. Very Rare Abrupt or rapid discontinuation from etizolam, as with benzodiazepines, may result in the appearance of the benzodiazepine withdrawal syndrome, including rebound insomnia. Neuroleptic malignant syndrome, a rare event in benzodiazepine withdrawal, has been documented in a case of"} +{"qid": "test2924", "pid": "680569", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "Benzodiazepines", "passage": "\"Psychiatric medication\"\nare drugs used to treat various symptoms of psychosis, such as those caused by psychotic disorders or schizophrenia. Atypical antipsychotics are also used as mood stabilizers in the treatment of bipolar disorder, and they can augment the action of antidepressants in major depressive disorder. Antipsychotics are sometimes referred to as neuroleptic drugs and some antipsychotics are branded \"\"major tranquilizers\"\". There are two categories of antipsychotics: typical antipsychotics and atypical antipsychotics. Most antipsychotics are available only by prescription. Common antipsychotics: Benzodiazepines are effective as hypnotics, anxiolytics, anticonvulsants, myorelaxants and amnesics. Having less proclivity for overdose and toxicity, they have widely supplanted"} +{"qid": "test2924", "pid": "56841", "query": "a drug that might be used in surgery for its amnesic properties is", "answer": "benzodiazepines", "passage": "Benzodiazepine\nwith other drugs of abuse. Benzodiazepines possess sedative, hypnotic, anxiolytic, anticonvulsant, muscle relaxant, and amnesic actions, which are useful in a variety of indications such as alcohol dependence, seizures, anxiety disorders, panic, agitation, and insomnia. Most are administered orally; however, they can also be given intravenously, intramuscularly, or rectally. In general, benzodiazepines are well-tolerated and are safe and effective drugs in the short term for a wide range of conditions. Tolerance can develop to their effects and there is also a risk of dependence, and upon discontinuation a withdrawal syndrome may occur. These factors, combined with other possible secondary effects"} +{"qid": "test2925", "pid": "333676", "query": "a single period of precession of earth's axis is completed in about", "answer": "approximately 26,000 years", "passage": "Precession\nEarth's axis to its orbit, and the eccentricity of its orbit over tens of thousands of years are all important parts of the astronomical theory of ice ages. \"\"(See Milankovitch cycles.)\"\" Axial precession is the movement of the rotational axis of an astronomical body, whereby the axis slowly traces out a cone. In the case of Earth, this type of precession is also known as the \"\"precession of the equinoxes\"\", \"\"lunisolar precession\"\", or \"\"precession of the equator\"\". Earth goes through one such complete precessional cycle in a period of approximately 26,000 years or 1° every 72 years, during which the"} +{"qid": "test2925", "pid": "6911359", "query": "a single period of precession of earth's axis is completed in about", "answer": "26,000 years", "passage": "\"Quaternary glaciation\"\naxis varies periodically between 22° and 24.5° in a cycle 41,000 years long. The tilt of Earth's axis is responsible for the seasons; the greater the tilt, the greater the contrast between summer and winter temperatures. Precession of the equinoxes, or wobbles of Earth's spin axis, have a periodicity of 26,000 years. According to the Milankovitch theory, these factors cause a periodic cooling of Earth, with the coldest part in the cycle occurring about every 40,000 years. The main effect of the Milankovitch cycles is to change the contrast between the seasons, not the overall amount of solar heat Earth"} +{"qid": "test2925", "pid": "4717588", "query": "a single period of precession of earth's axis is completed in about", "answer": "26,000 years", "passage": "\"Incremental dating\"\nabout 9,000 years ago for samples from the western United States using overlapping tree-ring series from living and dead wood. The Earth's orbital motions (inclination of the earth's axis on its orbit with respect to the sun, gyroscopic precession of the earth's axis every 26,000 years; free precession every 440 days, precession of earth orbit and orbital variations such as perihelion precession every 19,000 and 23,000 years) leave traces visible in the geological record. These changes provide a long-term sequence of climatic events, recorded as changes in the thickness of sediment layers (known as \"\"varve analysis\"\"—the term \"\"varve\"\" means a"} +{"qid": "test2925", "pid": "587334", "query": "a single period of precession of earth's axis is completed in about", "answer": "26,000 years", "passage": "\"Ecliptic coordinate system\"\nperturbing forces on the Earth, therefore the orientation of the primary direction, their intersection at the Northern Hemisphere vernal equinox, is not quite fixed. A slow motion of Earth's axis, precession, causes a slow, continuous turning of the coordinate system westward about the poles of the ecliptic, completing one circuit in about 26,000 years. Superimposed on this is a smaller motion of the ecliptic, and a small oscillation of the Earth's axis, nutation. In order to reference a coordinate system which can be considered as fixed in space, these motions require specification of the equinox of a particular date, known"} +{"qid": "test2925", "pid": "9358095", "query": "a single period of precession of earth's axis is completed in about", "answer": "26,000 years", "passage": "\"Winter solstice\"\naxis of rotation points (axial precession) change very slowly (at the current rate it would take just under 26,000 years to make a complete circle). As the Earth follows its orbit around the Sun, the polar hemisphere that faced away from the Sun, experiencing winter, will, in half a year, face towards the Sun and experience summer. This is because the two hemispheres face opposite directions along Earth's axis, and so as one polar hemisphere experiences winter, the other experiences summer. More evident from high latitudes, a hemisphere's winter solstice occurs on the day with the shortest period of daylight"} +{"qid": "test2926", "pid": "16778618", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nMike Sherman in 2011 and played for new coach Kevin Sumlin from 2012 to 2013. Manziel was redshirted during the 2011 season and did not play in any games. He made the travel squad after enrolling with the college in January. Texas A&M faced uncertainty at the quarterback position when Ryan Tannehill left for the National Football League after the 2011 season. Manziel performed well during spring ball and fall practices and won the starting job over Jameill Showers and Matt Joeckel before the season began. His first game was supposed to be against Louisiana Tech in Shreveport, Louisiana on"} +{"qid": "test2926", "pid": "16884445", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"2013 Texas A&M Aggies football team\"\nJordan Taylor, one for 27 yards and the other for a 5-yard TD after the ball was deflected by Senior CB Toney Hurd Jr. The score was 28–21 Texas A&M at halftime, after which star Aggie QB Johnny Manziel would return. Rice received the 2nd half kickoff and had 2 incompletions before McHargue was intercepted by Junior CB Tramain Jacobs, starting Manziel’s return to college football. The Sophomore’s first play of 2013 was a 12-yard scramble; however, he was sacked just 2 plays later, forcing A&M to take the 44-yard Field Goal. Rice’s ensuing drive did not turn out any"} +{"qid": "test2926", "pid": "18225145", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Kenny Hill (quarterback)\"\nhuge performance against South Carolina, his predecessor, Johnny Manziel, who went by the nickname \"\"Johnny Football\"\" in college, called Hill \"\"Kenny Football,\"\" along with a number of fans. Hill, however, said that the name belonged to Manziel, and instead asked to be called \"\"Kenny Trill,\"\" with \"\"trill\"\" being a combination of true and real. On September 11, 2014, Hill's family filed for the trademark of the name. On March 28, 2014, before he was chosen as Texas A&M's starting quarterback, Hill was arrested on a public intoxication charge outside of a restaurant bar in College Station, Texas. Police said Hill"} +{"qid": "test2926", "pid": "16778625", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nmiddle infielder at Tivy High School before foregoing his baseball career in favor of football. He played baseball through his junior year, but he skipped out on his senior season so he could graduate early and focus on preparing for his freshman football season at Texas A&M. Manziel's passion for the game of baseball, however, did not diminish after high school. He briefly discussed the possibility of playing collegiate ball with Texas A&M's baseball coaches, but that never came to fruition once he won the starting quarterback job as a redshirt freshman. In the 2014 Major League Baseball draft, Manziel"} +{"qid": "test2926", "pid": "16778609", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nJohnny Manziel Johnathan Paul Manziel ( ; born December 6, 1992) is an American professional Canadian football quarterback for the Montreal Alouettes of the Canadian Football League (CFL). He previously played two seasons with the Cleveland Browns of the National Football League (NFL) and was also a member of the Hamilton Tiger-Cats in the CFL. Manziel was nationally recruited out of high school as a dual-threat quarterback, and he debuted for the Texas A&M Aggies as a redshirt freshman in Kevin Sumlin's Air Raid offense during A&M's first season in the Southeastern Conference (SEC) in 2012. He broke numerous NCAA"} +{"qid": "test2926", "pid": "16778611", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nconsistency and his tenure was overshadowed by off-field controversies. He was released by the Browns after the end of the 2015 season. Following further controversies during the 2016 offseason, Manziel was unable to be signed by another team before the start of the season and spent two years away from football before returning with the Tiger-Cats in 2018. He was later traded to the Alouettes during the season. TexAgs users tagged Manziel with the nickname \"\"Johnny Football\"\" during Manziel's sophomore high school football season in Texas. The nickname followed him to Texas A&M University. Manziel applied for and was granted"} +{"qid": "test2926", "pid": "16778616", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nin America named as a Parade All-American his senior year, and he was also named The National High School Coaches Association (NHSCA) Senior Athlete of the Year in football. He won the Mr. Texas Football award in 2010. Manziel was highly recruited out of high school; in addition to Texas A&M, he received offers from Baylor, Colorado State, Iowa State, Louisiana Tech, Oregon, Rice, Stanford, Tulsa, and Wyoming. Although he grew up a Texas Longhorns fan, the University of Texas did not recruit him. Although it was rumored that Texas wanted Manziel at defensive back, Texas coach Mack Brown said"} +{"qid": "test2926", "pid": "16778642", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nDavid Smith said it \"\"wasn't great\"\" despite Manziel's satisfaction with how he played. Manziel's performance throughout the season gradually improved and was attributed to him becoming accustomed to CFL rules. On June 29, 2012—before he was chosen as Texas A&M's starting quarterback and before his first college game—Manziel was arrested and charged with three misdemeanors—disorderly conduct, failure to produce identification, and possession of a fictitious driver's license. These charges stemmed from a late-night fight in College Station, Texas. In July 2013, he pleaded guilty to failure to produce identification, and the other two charges were dismissed. Police reports stated that"} +{"qid": "test2926", "pid": "16153817", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"2012 Texas A&M Aggies football team\"\ngame was also a showcase for the battle between quarterbacks Jameill Showers and Johnny Manziel, with the former tossing 2 TDs to Malcome Kennedy and Ryan Swope, and the latter also having 1 TD to Swope. Top RB Christine Michael did not play, but other backs Ben Malena and Will Randolph still combined for 3 TDs behind a dominant offensive line led by tackle Luke Joeckel. Showers finished 20 of 31 for 203 yards and 2 TDs, while Manziel was 13 of 27 for 154 yards with 1 TD and 1 INT. Mark Snyder's new defense was led in tackles"} +{"qid": "test2926", "pid": "19525802", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Taylor Bertolet\"\nOn April 30, 2018, he was waived by the Broncos. On May 7, 2018, Bertolet was signed by the New York Jets. He was waived by the Jets on September 1, 2018, after losing the starting kicking job to Jason Myers. Taylor Bertolet Taylor Bertolet (born October 24, 1992) is an American football placekicker who is currently a free agent. He played college football at Texas A&M and holds a school record for most PATs in a single season. In 2012, Bertolet and quarterback Johnny Manziel became the first freshmen to surpass 100 points in a season. Bertolet kicked for"} +{"qid": "test2926", "pid": "16778638", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Johnny Manziel\"\nto $550,000. The Tiger-Cats released a statement on February 14 implying they had broken off negotiations with Manziel. The same day, he agreed to play in The Spring League, a non-paying developmental league, for the 2018 season. He was the quarterback at Texas A&M's 2018 pro day, throwing passes to potential 2018 NFL Draft prospects in front of representatives from all 32 NFL teams and the CFL. After the session, Manziel reiterated that his primary goal was to play in the NFL in 2018, but if that did not occur he would play in the CFL. On May 19, 2018,"} +{"qid": "test2926", "pid": "19525800", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Taylor Bertolet\"\nTaylor Bertolet Taylor Bertolet (born October 24, 1992) is an American football placekicker who is currently a free agent. He played college football at Texas A&M and holds a school record for most PATs in a single season. In 2012, Bertolet and quarterback Johnny Manziel became the first freshmen to surpass 100 points in a season. Bertolet kicked for a total of a career-high 106 points including 13 field goals and a school record 67 extra points. Bertolet kicked a season-long 54-yard field goal against Louisiana Tech. Bertolet was mainly the Aggies kickoff specialist for the 2013 and 2014 season,"} +{"qid": "test2926", "pid": "6673366", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"David Cutcliffe\"\nGame falling to the eventual National Champions Florida State Seminoles and Heisman Trophy winner Jameis Winston 45-7. Duke also had its first 10-win season in the school's over 100-year history of football. Duke's historic 2013 season concluded on New Year's Eve in Atlanta, GA, at the Chick-fil-A Bowl against the Texas A&M Aggies, led by 2012 Heisman Trophy winner Johnny Manziel. In a high-scoring affair totaling 100 points, Duke took a 38–17 halftime lead before ultimately succumbing to a Manziel-led rally, 52–48. Six quarterbacks whom Cutcliffe coached in college have gone on to play in the NFL: Heath Shuler, Peyton"} +{"qid": "test2926", "pid": "16153821", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"2012 Texas A&M Aggies football team\"\nmisstep and had a 14-play, 66-yard opening drive, highlighted by a 16-yard run from Johnny Manziel. On 3rd and goal from the 7, Manziel completed a pass into the endzone to an open Mike Evans, but Manziel was past the line of scrimmage, causing an Illegal Forward Pass penalty and a 4th down. Fellow redshirt freshman Taylor Bertolet made the 27-yard field goal to put the Aggies on the board first. Texas A&M's defense struggled early, though, and with the help of a few long passes from Florida QB Jeff Driskel, the Gators had a 13-play, 75-yard drive capped of"} +{"qid": "test2926", "pid": "16153851", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"2012 Texas A&M Aggies football team\"\nto Tuscaloosa. This game was also Texas A&M's 12th-ever game against the #1 ranked team. The win catapulted quarterback Johnny Manziel into the national limelight and positioned him for serious Heisman trophy consideration. For the 3rd year in a row Texas A&M and Missouri played in College Station. 2012 Texas A&M Aggies football team The 2012 Texas A&M Aggies football team represented Texas A&M University in the 2012 NCAA Division I FBS football season. The Aggies were led by first-year head coach Kevin Sumlin in their first year as a member of the Southeastern Conference, playing in the SEC's Western"} +{"qid": "test2926", "pid": "16884459", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"2013 Texas A&M Aggies football team\"\nSMU with a final score of 48–3. After this match-up, Texas A&M leads the series 44–29–7. Auburn's defense came up with a huge final stand to upset 7th rank Texas A&M. With 1:19 left in the game Auburn held a 45–41 lead. A&M's QB Johnny Manziel completed two big pass plays to WR Mike Evans to get it down to Auburn's 18 yard line. DE Dee Ford would come up with an 8-yard sack then Manziel would throw an incompletion. On the next play Manziel tried to run but was tackled by LB Kris Frost. Then on 4th and long"} +{"qid": "test2926", "pid": "408688", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"Texas A&M University\"\nchampionships, two of which it claimed retroactively in 2012. The team has appeared in 30 bowl games, winning 13, and has produced 41 first Team All-Americans, 5 Academic All-Americans, and 2 Heisman Trophy winners, John David Crow in 1957 and Johnny Manziel in 2012. Twenty-one Aggies play in the NFL, including the Super Bowl MVP for Super Bowl 50, Von Miller, a player for the Denver Broncos. Former Broncos head coach Gary Kubiak also played college football at Texas A&M. Since 1904, home football games have been played at Kyle Field, a stadium with a current capacity of 102,500. In"} +{"qid": "test2926", "pid": "16799053", "query": "who did johnny manziel play college football for", "answer": "Texas A&M", "passage": "\"LSU–Texas A&M football rivalry\"\nSEC and was placed in the West Division with LSU. In 2012, A&M's Johnny Manziel won the Heisman. LSU's defense caused him to have his worst performance of the year, which included 0 touchdowns and 3 interceptions. #6 LSU won 24–19 at College Station in the first SEC game. In 2013, #22 LSU won 34–10, A&M's first SEC road loss. In 2014, they played on Thanksgiving night for the first time in the series history. The last time LSU played on Thanksgiving was 1973. LSU won 23–17 in College Station. The two teams played again on Thanksgiving, two years later"} +{"qid": "test2929", "pid": "17642433", "query": "india south africa test series 2018 highest runs", "answer": "AB de Villiers", "passage": "\"Indian cricket team in South Africa in 2013–14\"\nstand is the highest for India in South Africa in tests. Chasing a target of 458 runs, South Africa ended up with 450 runs for the loss of seven wickets, leading to a draw. The team's total of 450, is the second-highest fourth-innings score to draw a match and third overall. Francois du Plessis and AB de Villiers made centuries in the South Africa total. Described as one among the \"\"closest draws\"\", the fourth innings total of 450 made by South Africa is the second-highest by a team in a drawn match and third overall. During the match, wicket-keepers from"} +{"qid": "test293", "pid": "4272916", "query": "what type of song is what a wonderful world", "answer": "a pop ballad", "passage": "\"What a Wonderful World\"\nthe song peaked at number 19 in Sweden and was a minor hit in Walloon Belgium. When the song reached number one in the UK, Melua thanked everyone who bought the single, saying, \"\"Thank you to everyone who has shown such festive goodwill.\"\" The duet was later included on her 2008 compilation album \"\"The Katie Melua Collection\"\". What a Wonderful World \"\"What a Wonderful World\"\" is a pop ballad written by Bob Thiele (as \"\"George Douglas\"\") and George David Weiss. It was first recorded by Louis Armstrong and released in 1967 as a single, which topped the pop charts in"} +{"qid": "test293", "pid": "4272908", "query": "what type of song is what a wonderful world", "answer": "a pop ballad", "passage": "\"What a Wonderful World\"\nWhat a Wonderful World \"\"What a Wonderful World\"\" is a pop ballad written by Bob Thiele (as \"\"George Douglas\"\") and George David Weiss. It was first recorded by Louis Armstrong and released in 1967 as a single, which topped the pop charts in the United Kingdom. Thiele and Weiss were both prominent in the music world (Thiele as a producer and Weiss as a composer/performer). Armstrong's recording was inducted in the Grammy Hall of Fame in 1999. The publishing for this song is controlled by Memory Lane Music Group, Carlin Music Corp. and BMG Rights Management. One source claims the"} +{"qid": "test2930", "pid": "5372360", "query": "the oligodynamic effect is a phenomenon that describes", "answer": "a biocidal effect of metals", "passage": "\"Oligodynamic effect\"\ncan induce special protein complexes called metallothioneins. Oligodynamic effect The oligodynamic effect (from Greek oligos \"\"few\"\", and dynamis \"\"force\"\") is a biocidal effect of metals, especially heavy metals, that occurs even in low concentrations. The effect was discovered by Karl Wilhelm von Nägeli, although he did not identify the cause. Brass doorknobs and silverware both exhibit this effect to an extent. The metals react with thiol (-SH) or amine (-NH) groups of proteins, a mode of action to which microorganisms may develop resistance. Such resistance may be transmitted by plasmids. Aluminium acetate (Burow's solution) is used as an astringent mild"} +{"qid": "test2930", "pid": "5372349", "query": "the oligodynamic effect is a phenomenon that describes", "answer": "a biocidal effect of metals", "passage": "\"Oligodynamic effect\"\nOligodynamic effect The oligodynamic effect (from Greek oligos \"\"few\"\", and dynamis \"\"force\"\") is a biocidal effect of metals, especially heavy metals, that occurs even in low concentrations. The effect was discovered by Karl Wilhelm von Nägeli, although he did not identify the cause. Brass doorknobs and silverware both exhibit this effect to an extent. The metals react with thiol (-SH) or amine (-NH) groups of proteins, a mode of action to which microorganisms may develop resistance. Such resistance may be transmitted by plasmids. Aluminium acetate (Burow's solution) is used as an astringent mild antiseptic. Aluminium-based antiperspirant ingredients (\"\"aluminium salts\"\") such"} +{"qid": "test2932", "pid": "6686994", "query": "when do you declare honors in contract bridge", "answer": "any time after the auction", "passage": "\"Bridge scoring\"\nbridge only, a bonus is awarded for any one hand holding four or five of the , i.e. an ace, king, queen, jack or ten. Honors may be declared and scored at any time after the auction but for strategic reasons it is best to do so at the conclusion of play so as not to give the opponents information about the lay of the cards. Honors may be held by any of the four players, including dummy. In duplicate bridge only, game and partial-game bonuses are awarded at the conclusion of each deal as follows: Rubber scoring is tallied"} +{"qid": "test2933", "pid": "2470103", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"South Asian Association for Regional Cooperation\"\nSAARC meetings which have refrained from interfering in the internal matters of its member states. During the 12th and 13th SAARC summits, extreme emphasis was laid upon greater cooperation between the SAARC members to fight terrorism. The 19th SAARC summit scheduled to be held in Pakistan was called off as India, Bangladesh, Bhutan and Afghanistan decided to boycott it. It was for the first time that four countries boycotted a SAARC summit, leading to its cancellation. SAFTA was envisaged primarily as the first step towards the transition to a South Asian Free Trade Area (SAFTA) leading subsequently towards a Customs"} +{"qid": "test2933", "pid": "2470098", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"South Asian Association for Regional Cooperation\"\ncurrent as of April 2015, and is given in US dollars. The member states are Afghanistan, Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan, and Sri Lanka. SAARC was founded by seven states in 1985. In 2005, Afghanistan began negotiating their accession to SAARC and formally applied for membership on the same year. The issue of Afghanistan joining SAARC generated a great deal of debate in each member state, including concerns about the definition of South Asian identity because Afghanistan is a Central Asian country. The SAARC member states imposed a stipulation for Afghanistan to hold a general election; the non-partisan elections"} +{"qid": "test2933", "pid": "191350", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"Foreign relations of India\"\ninvestors in Africa and have competed for control over its large natural resources. India enjoys a considerable influence over Maldives' foreign policy and provides extensive security co-operation especially after the Operation Cactus in 1988 during which India repelled Tamil mercenaries who invaded the country. As a founder member in 1985 of the South Asian Association for Regional Cooperation, SAARC, which brings together Afghanistan, Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan and Sri Lanka, the country plays a very active role in SAARC. The Maldives has taken the lead in calling for a South Asian Free Trade Agreement, the formulation of a"} +{"qid": "test2933", "pid": "17674354", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"SAARC Secretary General\"\nSAARC Secretary General Secretary–General of the South Asian Association for Regional Cooperation, is head of a SAARC Secretariat, which is headquartered in Kathmandu, Nepal. SAARC is an economic and geopolitical union between the eight South Asian member nations, Afghanistan, Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan and Sri Lanka. Secretary-General is appointed for a three-year term by election by a council of Ministers from member states. Secretary-General is assisted by eight deputies, one from each nation, who also reside in Kathmandu. SAARC Secretariat was established in Kathmandu on 16 January 1987 by Bangladeshi diplomat Abul Ahsan, who was its first Secretary-General,"} +{"qid": "test2933", "pid": "17674357", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"SAARC Secretary General\"\nwhere the Bangladeshi diplomat, Abul Ahsan was elected its first Secretary-General. Since then, 11 more General Secretaries have been selected from each member nation, so far with the exception of Afghanistan. SAARC Secretary General Secretary–General of the South Asian Association for Regional Cooperation, is head of a SAARC Secretariat, which is headquartered in Kathmandu, Nepal. SAARC is an economic and geopolitical union between the eight South Asian member nations, Afghanistan, Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan and Sri Lanka. Secretary-General is appointed for a three-year term by election by a council of Ministers from member states. Secretary-General is assisted by"} +{"qid": "test2933", "pid": "19976180", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"South-South cooperation in science\"\nthe exception which confirms the rule. The university is hosted by India but all SAARC members share the operational costs in mutually agreed proportions. Admission is governed by a quota system, with students paying heavily subsidized tuition fees. In 2013, the university received 4 133 applications from all eight SAARC countries (Afghanistan, Bangladesh, Bhutan, India, Maldives, Nepal, Sri Lanka and Pakistan), double the number in 2012. There were 500 applications alone for the 10 places on offer for the doctoral programme in biotechnology. In other regions, some strategies have encountered hurdles that may affect implementation. This is the case of"} +{"qid": "test2933", "pid": "191326", "query": "which country is the last member of saarc", "answer": "Afghanistan", "passage": "\"Foreign relations of India\"\nCanada and Argentina. Although India has not signed any formal strategic partnership agreements with Bhutan and Qatar, its foreign ministry often describes relations with these countries as 'strategic'. Certain aspects of India's relations within the subcontinent are conducted through the South Asian Association for Regional Cooperation (SAARC). Other than India, its members are Afghanistan, Bangladesh, Bhutan, Maldives, Nepal, Pakistan and Sri Lanka. Established in 1985, SAARC encourages co-operation in agriculture, rural development, science and technology, culture, health, population control, narcotics control and anti-terrorism. SAARC has intentionally stressed these \"\"core issues\"\" and avoided more divisive political issues, although political dialogue is"} +{"qid": "test2934", "pid": "17897308", "query": "describe the three phases of the normal blood clotting process", "answer": "blood coagulation", "passage": "\"Upshaw–Schulman syndrome\"\nlinear VWF has now its active binding sites exposed, that are important to start blood coagulation. These sites bind platelets and blood vessel lesions by interlinking the stretched VWF with one another – a blood clot is formed. In its uncut form, (ultra large) VWF's heightened stickiness and interlinking causes spontaneous platelet binding and blood clotting. The linear VWF exposes the A2 domain, so that in the presence of enough ADAMTS13 activity it gets cut to its normal size. VWF in the normal length loses its heightened stickiness and spontaneous crosslinking activity to only form blood clots when needed. A"} +{"qid": "test2935", "pid": "19383203", "query": "who played sonny in lemony snicket's a series of unfortunate events", "answer": "Presley Smith", "passage": "\"A Series of Unfortunate Events (TV series)\"\nand deepening the novel series' mythology. Dornbush also praised the performance of guest stars such as Lucy Punch and Patrick Warburton and awarded the second season 7.2 stars. A Series of Unfortunate Events (TV series) Lemony Snicket's A Series of Unfortunate Events, or simply A Series of Unfortunate Events, is an American black comedy-drama web television series from Netflix, developed by Mark Hudis and Barry Sonnenfeld, based on Lemony Snicket’s children's novel series of the same name. It stars Neil Patrick Harris, Patrick Warburton, Malina Weissman, Louis Hynes, K. Todd Freeman, and Presley Smith with Lucy Punch, Avi Lake, and"} +{"qid": "test2935", "pid": "19383175", "query": "who played sonny in lemony snicket's a series of unfortunate events", "answer": "Presley Smith", "passage": "\"A Series of Unfortunate Events (TV series)\"\nA Series of Unfortunate Events (TV series) Lemony Snicket's A Series of Unfortunate Events, or simply A Series of Unfortunate Events, is an American black comedy-drama web television series from Netflix, developed by Mark Hudis and Barry Sonnenfeld, based on Lemony Snicket’s children's novel series of the same name. It stars Neil Patrick Harris, Patrick Warburton, Malina Weissman, Louis Hynes, K. Todd Freeman, and Presley Smith with Lucy Punch, Avi Lake, and Dylan Kingwell joining the cast in the second season. The first season, which premiered on January 13, 2017, consists of eight episodes and adapts the first four books"} +{"qid": "test2936", "pid": "5141888", "query": "when was united nations convention on the rights of the child created", "answer": "20 November 1989", "passage": "\"Special Rapporteur on the sale of children, child prostitution and child pornography\"\nSpecial Rapporteur on the sale of children, child prostitution and child pornography The Special Rapporteur on the sale of children, child prostitution and child pornography works on behalf of the United Nations Human Rights Council to investigate the exploitation of children around the world and make recommendations to governments on how to end such practices. The position was created in 1990 by the former United Nations Commission on Human Rights amidst growing international concern over the commercial sexual exploitation and the sale of children. It followed the adoption on 20 November 1989 of the Convention on the Rights of the"} +{"qid": "test2938", "pid": "7730678", "query": "tallest building in the world of all time", "answer": "Burj Khalifa", "passage": "\"One World Trade Center\"\ntower's spire brings it to a pinnacle height of , a figure intended to symbolize the year 1776, when the United States Declaration of Independence was signed. When the spire is included in the building's height, as stated by the Council on Tall Buildings and Urban Habitat (CTBUH), One World Trade Center surpasses the height of Taipei 101 (), is the world's tallest all-office building, and the sixth-tallest skyscraper in the world, behind the Burj Khalifa, Abraj Al Bait, Shanghai Tower, Ping An Finance Centre and Lotte World Tower. One World Trade Center is the second-tallest freestanding structure in the"} +{"qid": "test2938", "pid": "10235895", "query": "tallest building in the world of all time", "answer": "Burj Khalifa", "passage": "Pentominium\nafter Trident International Holdings fell behind on payments for a US$20.4 million loan following the global financial crisis. , the tower still stands incomplete that construction will restart in 2019. Had the project been completed as scheduled, the Pentominium would be the second tallest building in Dubai after Burj Khalifa as well as the tallest residential building in the world if completed before World One. The Pentominium would have been the tallest all-residential building in the world instead of the 432 Park Avenue upon completion if construction had resumed; it has the highest projected height of any residential building under"} +{"qid": "test2938", "pid": "13570314", "query": "tallest building in the world of all time", "answer": "Burj Khalifa", "passage": "\"History of the world's tallest buildings\"\nHistory of the world's tallest buildings The tallest building in the world, as of 2019, is Burj Khalifa. The title of \"\"world's tallest building\"\" has been borne by various buildings, such as the Rouen Cathedral and the Empire State Building. The skyscraper was invented in Chicago in 1884 when the Home Insurance Building was constructed using a steel-frame with curtain walls instead of load-bearing walls. For the next hundred years, the world's tallest building was always in the United States with New York City accumulating 86 years, and Chicago accumulating 30 years. After just over a century (1885–1998), the distinction"} +{"qid": "test2938", "pid": "13570332", "query": "tallest building in the world of all time", "answer": "Burj Khalifa", "passage": "\"History of the world's tallest buildings\"\nHistory of the world's tallest buildings The tallest building in the world, as of 2019, is Burj Khalifa. The title of \"\"world's tallest building\"\" has been borne by various buildings, such as the Rouen Cathedral and the Empire State Building. The skyscraper was invented in Chicago in 1884 when the Home Insurance Building was constructed using a steel-frame with curtain walls instead of load-bearing walls. For the next hundred years, the world's tallest building was always in the United States with New York City accumulating 86 years, and Chicago accumulating 30 years. After just over a century (1885–1998), the distinction"} +{"qid": "test2938", "pid": "5803063", "query": "tallest building in the world of all time", "answer": "Burj Khalifa", "passage": "\"The Illinois\"\nworld's current tallest building, the Burj Khalifa, the design of which is said to have been inspired by that of The Illinois. Wright believed that it would have been technically possible to construct such a building even at the time it was proposed. At the time, the tallest skyscraper in the world was New York's Empire State Building, at less than a quarter the height suggested for the Illinois. It probably would have been possible to erect a self-supporting steel structure of the required height, but there are a number of problems that occur when a building is that tall."} +{"qid": "test2940", "pid": "387975", "query": "who created separation of powers and checks and balances", "answer": "Montesquieu in the Enlightenment", "passage": "\"Separation of powers\"\nthe same weight (co-equal), that is, to be balanced, so that they can limit each other, avoiding the abuse of state power. The origin of checks and balances, like separation of powers itself, is specifically credited to Montesquieu in the Enlightenment (in The Spirit of the Laws, 1748), under this influence was implemented in 1787 in the Constitution of the United States. The following example of the separation of powers and their mutual checks and balances for the experience of the United States Constitution is presented as illustrative of the general principles applied in similar forms of government as well."} +{"qid": "test2941", "pid": "18315482", "query": "who was the nfl first draft pick 2017", "answer": "Myles Garrett", "passage": "\"Myles Garrett\"\ndraft analyst and scouts to be the first overall player selected. He was ranked the top overall prospect and defensive end by \"\"Sports Illustrated\"\", ESPN, Pro Football Focus, and DraftScout.com. Garrett was also ranked the top edge rusher in the draft by NFL analyst Mike Mayock. The Cleveland Browns selected Garrett with the first overall pick of the 2017 NFL Draft. Garrett became the highest draft pick from Texas A&M in the history of the NFL draft. On May 19, 2017, the Cleveland Browns signed Garrett to a fully guaranteed four-year, $30.41 million contract that features a $20.25 million signing"} +{"qid": "test2941", "pid": "19896619", "query": "who was the nfl first draft pick 2017", "answer": "Myles Garrett", "passage": "\"Solomon Thomas\"\nwas ranked the second best defensive end (behind Myles Garrett) by NFLDraftScout.com, ESPN, and Sports Illustrated. Pro Football Focus ranked him as the fourth best defensive end in the 2017 NFL Draft. Thomas was drafted by the San Francisco 49ers in the first round with the third overall pick in the 2017 NFL Draft. He became the third consecutive defensive end drafted in the first round by the 49ers, joining Arik Armstead (2015) and DeForest Buckner (2016). The man who drafted Thomas, newly appointed 49ers general manager John Lynch had by chance studied alongside Thomas as a mature student while"} +{"qid": "test2941", "pid": "19678579", "query": "who was the nfl first draft pick 2017", "answer": "Myles Garrett", "passage": "\"Mitchell Trubisky\"\nESPN and Pro Football Focus ranked Trubisky the second best quarterback, NFLDraftScout.com ranked him as the top quarterback in the draft, and \"\"Sports Illustrated\"\" ranked him the fourth best quarterback available. Trubisky was drafted by the Chicago Bears in the first round with the second overall pick in the 2017 NFL Draft (after defensive end Myles Garrett was selected by the Cleveland Browns first overall). The Bears moved up from the third overall pick by trading the San Francisco 49ers two third-round picks and a fourth-round pick. During the 2017 preseason, Trubisky recorded the third-highest passer rating of the 29"} +{"qid": "test2942", "pid": "11661403", "query": "when was nepal declared a secular state in bs", "answer": "January 15, 2007", "passage": "\"Freedom of religion in Nepal\"\nfavoritism to Hinduism. Though, Hinduism is a very wide religion that grants enough grounds for other faiths, including atheism, recognizing Nepal as a Hindu state was humiliating to adherents of other faiths. So became the driving force for the establishment of secular state following the people's movement in 2006. Freedom of religion in Nepal Nepal is a secular state under the Interim Constitution, which was promulgated on January 15, 2007. The Interim Constitution provides for freedom to practice one's religion. The Interim Constitution also specifically denies the right to convert another person. The now-defunct constitution of 1990, which was in"} +{"qid": "test2943", "pid": "1413141", "query": "who took control of jamestown and made new rules that made everyone work", "answer": "John Smith", "passage": "\"John Smith (explorer)\"\nsettlers with no real planning or logistical support. Then in May 1610, Somers and Gates finally arrived with 150 people from the \"\"Sea Venture\"\". (Bermuda, or the 'Somers Isles', had remained settled since 1609, and the Virginia Company's possession was made official in 1612 when it was added to Virginia's territory.) Gates soon found that there was not enough food to support all in the colony and decided to abandon Jamestown. As their boats were leaving the Jamestown area, they met a ship carrying the new governor, Lord De la Warr, who ordered them back to Jamestown. Somers returned to"} +{"qid": "test2943", "pid": "1413160", "query": "who took control of jamestown and made new rules that made everyone work", "answer": "John Smith", "passage": "\"John Smith (explorer)\"\nbefore a decision could be made. Smith's disgust with the \"\"gentlemen\"\" of Jamestown was clear; he makes several references to them as \"\"useless parasites,\"\" for their ignorance in the laborious tasks that are required for beginning a colony. His frustration with them did not end at their inability to work, but also extended to the social order that they believed they were entitled to. The colonists, accustomed to the social order of England, rejected the social construct that Smith created in Jamestown. They perceived Smith's establishment of this new structure as a challenge to their \"\"deserved\"\" respect. Smith mentions several"} +{"qid": "test2946", "pid": "18048273", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"34th meridian west from Washington\"\n34th meridian west from Washington The 34th meridian west from Washington is an archaic meridian based on the Washington Meridian and hence 111°2′48.0″ West of Greenwich. The meridian is most notably used as a boundary for four states. The meridian was first used as a boundary when the Montana Territory was created in 1864. It served as Montana Territory's extreme southwestern boundary. The next usage of the boundary came when the Wyoming Territory was established in 1868, with the meridian as its western boundary. It was also at this time that it became much of the then-Idaho Territory's eastern boundary,"} +{"qid": "test2946", "pid": "13991415", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Territorial evolution of North America since 1763\"\nthe US as the 39th state, North Dakota, and 40th state, South Dakota. Montana Territory was admitted to the US as the 41st state, Montana. Washington Territory was admitted to the US as the 42nd state, Washington. The dispute between Manitoba and Ontario ended as Ontario's borders were finalized in accordance with the Canada (Ontario Boundary) Act, 1889, which extended the province west to the Lake of the Woods and north to the Albany River. Oklahoma Territory was organized from the western portion of Indian Territory, and included the Neutral Strip, corresponding to the western half of present-day Oklahoma. Idaho"} +{"qid": "test2946", "pid": "18048274", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"34th meridian west from Washington\"\nas well as the extreme northeastern boundary of the then-Utah Territory. Montana became a state in 1889, with Idaho and Wyoming following the year afterwards. Utah became a state in 1896. 34th meridian west from Washington The 34th meridian west from Washington is an archaic meridian based on the Washington Meridian and hence 111°2′48.0″ West of Greenwich. The meridian is most notably used as a boundary for four states. The meridian was first used as a boundary when the Montana Territory was created in 1864. It served as Montana Territory's extreme southwestern boundary. The next usage of the boundary came"} +{"qid": "test2946", "pid": "10831171", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Washington (state)\"\ngrowing populace of Oregon Territory north of the Columbia River formally requested a new territory, which was granted by the U.S. government in 1853. The boundary of Washington Territory initially extended farther east than the present state's, including what is now the Idaho Panhandle and parts of western Montana, and picked up more land to the southeast that was left behind when Oregon was admitted as a state. The creation of Idaho Territory in 1863 established the final eastern border. A Washington State constitution was drafted and ratified in 1878, but it was never officially adopted. Although never approved by"} +{"qid": "test2946", "pid": "9109531", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Cascadia (bioregion)\"\nbioregion. McCloskey describes Cascadia as \"\"a land of falling waters.\"\" He notes the blending of the natural integrity and the sociocultural unity that gives Cascadia its definition. McCloskey is the source of the proposed Cascadian boundaries that include the complete watershed of the Columbia River, including the territories of what is now Idaho, western Montana, and smaller parts of Wyoming, Utah, and northern Nevada. According to McCloskey, this \"\"initial\"\" Cascadia included parts of seven jurisdictions (Northern California, Oregon, Washington, Idaho, Western Montana, British Columbia, and Southeast Alaska), running from the northernmost reaches of Southeast Alaska in the north to Cape"} +{"qid": "test2946", "pid": "1294256", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Continental Divide of the Americas\"\nin the US bisects Glacier National Park. Further south, the Divide forms the backbone of the Rocky Mountain Front (Front Range) in the Bob Marshall Wilderness, heads south towards Helena and Butte, then west past the namesake community of Divide, Montana, through the Anaconda-Pintler Wilderness to the Bitterroot Range, where it forms the eastern third of the state boundary between Idaho and Montana. The Divide crosses into Wyoming within Yellowstone National Park and continues southeast into Colorado where it reaches its highest point in North America at the summit of Grays Peak at . It crosses US Hwy 160 in"} +{"qid": "test2946", "pid": "9106655", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Cascadia (independence movement)\"\nCascadia (independence movement) Cascadia is a bioregion and proposed country located within the western region of North America. Potential boundaries differ, with some drawn along existing political state and provincial lines, and others drawn along larger ecological, cultural, political, and economic boundaries. The proposed country largely would consist of the Canadian province of British Columbia and the US States of Washington and Oregon. At its maximum extent, Cascadia would stretch from coastal Alaska in the north into Northern California in the south, and inland to include parts of Idaho, Montana, Wyoming, as far Southeast as Colorado, and Yukon. More conservative"} +{"qid": "test2946", "pid": "5649140", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Beaverhead-Deerlodge National Forest\"\nin the Bitterroot range. Lemhi Pass, at an elevation 7,323 feet (2,300 m) above sea level, is a rounded saddle in the Beaverhead Mountains of the Bitterroot Range, along the Continental Divide, between Montana and Idaho. Here, in 1805, the Lewis and Clark Expedition first saw the headwaters of the Columbia River, which flow to the Pacific Ocean, and crossed what was then the western boundary of the United States. Lemhi Pass was the point at which the members of the expedition realized that there was not a waterway that would lead from east to west across the continent. Lemhi"} +{"qid": "test2946", "pid": "15354028", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Mountain states\"\nMountain states The Mountain States (also known as the Mountain West and the Interior West) form one of the nine geographic divisions of the United States that are officially recognized by the United States Census Bureau. It is a subregion of the Western United States. The Mountain States generally are considered to include: Arizona, Colorado, Idaho, Montana, Nevada, New Mexico, Utah, and Wyoming. The words \"\"Mountain States\"\" generally refer to the US States which encompass the US Rocky Mountains. These are oriented north-south through portions of the states of Montana, Idaho, Wyoming, Colorado, Utah, and New Mexico. Arizona and Nevada,"} +{"qid": "test2946", "pid": "848638", "query": "what us state forms the western boundary of montana", "answer": "Idaho", "passage": "\"Pacific Northwest\"\nPacific Northwest The Pacific Northwest (PNW), sometimes referred to as Cascadia, is a geographic region in western North America bounded by the Pacific Ocean to the west and (loosely) by the Cascade Mountain Range on the east. Though no official boundary exists, the most common conception includes the Canadian province of British Columbia and the U.S. states of Idaho, Oregon, and Washington. Broader conceptions reach north into Southeast Alaska and Yukon, south into northern California, and east of the Continental Divide to include Western Montana and parts of Wyoming. Narrower conceptions may be limited to the northwestern US, or to"} +{"qid": "test2947", "pid": "9669332", "query": "what is the pirates of the caribbean in order", "answer": "At World's End", "passage": "\"Pirates of the Caribbean: At World's End (video game)\"\nPirates of the Caribbean: At World's End (video game) Pirates of the Caribbean: At World's End is a video game based on the \"\"Pirates of the Caribbean\"\" films \"\"\"\" and \"\"\"\", published by Buena Vista Games for the PlayStation 2, PlayStation 3, Xbox 360, Microsoft Windows, PSP, Nintendo DS and the Wii. Pirates of the Caribbean: At World's End follows the events of Pirates of the Caribbean movies \"\"\"\" and \"\"\"\" with some additional missions and characters. In game location include locales such as the \"\"Black Pearl\"\", the \"\"Flying Dutchman\"\", Tortuga, Davy Jones Locker, Shipwreck Cove, Port Royal and a"} +{"qid": "test2947", "pid": "9669336", "query": "what is the pirates of the caribbean in order", "answer": "At World's End", "passage": "\"Pirates of the Caribbean: At World's End (video game)\"\nshame, because with no fewer than 21 levels, this could have been a real value for mobile gamers.\"\" Pirates of the Caribbean: At World's End (video game) Pirates of the Caribbean: At World's End is a video game based on the \"\"Pirates of the Caribbean\"\" films \"\"\"\" and \"\"\"\", published by Buena Vista Games for the PlayStation 2, PlayStation 3, Xbox 360, Microsoft Windows, PSP, Nintendo DS and the Wii. Pirates of the Caribbean: At World's End follows the events of Pirates of the Caribbean movies \"\"\"\" and \"\"\"\" with some additional missions and characters. In game location include locales"} +{"qid": "test2947", "pid": "17842124", "query": "what is the pirates of the caribbean in order", "answer": "Dead Men Tell No Tales", "passage": "\"Pirates of the Caribbean: Dead Men Tell No Tales\"\nof August 2018, the sixth film is still in development. Pirates of the Caribbean: Dead Men Tell No Tales Pirates of the Caribbean: Dead Men Tell No Tales (released in some countries as Pirates of the Caribbean: Salazar's Revenge) is a 2017 American swashbuckler fantasy film, the fifth installment in the \"\"Pirates of the Caribbean\"\" film series and the sequel to \"\"\"\" (2011). The film is directed by Joachim Rønning and Espen Sandberg from a script by Jeff Nathanson, with Jerry Bruckheimer serving again as producer. Johnny Depp, Kevin McNally and Geoffrey Rush reprise their roles as Jack Sparrow, Joshamee"} +{"qid": "test2947", "pid": "17842064", "query": "what is the pirates of the caribbean in order", "answer": "Dead Men Tell No Tales", "passage": "\"Pirates of the Caribbean: Dead Men Tell No Tales\"\nPirates of the Caribbean: Dead Men Tell No Tales Pirates of the Caribbean: Dead Men Tell No Tales (released in some countries as Pirates of the Caribbean: Salazar's Revenge) is a 2017 American swashbuckler fantasy film, the fifth installment in the \"\"Pirates of the Caribbean\"\" film series and the sequel to \"\"\"\" (2011). The film is directed by Joachim Rønning and Espen Sandberg from a script by Jeff Nathanson, with Jerry Bruckheimer serving again as producer. Johnny Depp, Kevin McNally and Geoffrey Rush reprise their roles as Jack Sparrow, Joshamee Gibbs and Hector Barbossa, respectively, and are joined in the"} +{"qid": "test2947", "pid": "17842117", "query": "what is the pirates of the caribbean in order", "answer": "Dead Men Tell No Tales", "passage": "\"Pirates of the Caribbean: Dead Men Tell No Tales\"\n259 reviews, and an average rating of 4.7/10. The site's critical consensus reads, \"\"\"\"Pirates of the Caribbean: Dead Men Tell No Tales\"\" proves that neither a change in directors nor an undead Javier Bardem is enough to drain this sinking franchise's murky bilge.\"\" On Metacritic, the film has a weighted average score of 39 out of 100, based on 45 critics, indicating \"\"generally unfavorable reviews\"\". Audiences polled by CinemaScore gave the film an average grade of \"\"A−\"\" on an A+ to F scale, while PostTrak reported filmgoers gave it an 82% overall positive score. Mike Ryan of \"\"Uproxx\"\" criticized what"} +{"qid": "test2948", "pid": "235389", "query": "if a piece of music is perceived to have changed key then we say the piece has", "answer": "transposed", "passage": "\"Key signature\"\nsometimes is this change indicated with a change of key signature; if not, the passage in the second key will not have a matching key signature. The Toccata and Fugue in D minor, BWV 538 by Bach has no key signature, leading it to be called the \"\"Dorian\"\", but it is still in D minor; the Bs that occur in the piece are written with accidentals. Keys which are associated with the same key signature are called relative keys. When musical modes, such as Lydian or Dorian, are written using key signatures, they are called \"\"transposed modes\"\". Exceptions to common-practice-period"} +{"qid": "test2949", "pid": "1697003", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"Culture of ancient Rome\"\ncriminal law. The king's duty was to be head over the military, to deal with foreign politics and also to decide on controversies between the gentes. The patricians were divided into three tribes (Ramnenses, Titientes, Luceres). During the time of the Roman Republic (founded in 509 BC) Roman citizens were allowed to vote. These included patricians and plebeians. Women, slaves, and children were not allowed to vote. There were two assemblies, the assembly of centuries (\"\"comitia centuriata\"\") and the assembly of tribes (\"\"comitia tributa\"\"), which were made up of all the citizens of Rome. In the \"\"comitia centuriata\"\" the Romans"} +{"qid": "test2949", "pid": "5218413", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"Slavery in antiquity\"\nmaster, rescue him from his troubles, or gain him the girl of his dreams. These plots were adapted by the Roman playwrights Plautus and Terence, and in the modern era influenced the character Jeeves and \"\"A Funny Thing Happened on the Way to the Forum\"\". Rome differed from Greek city-states in allowing freed slaves to become Roman citizens. After manumission, a slave who had belonged to a citizen enjoyed not only passive freedom from ownership, but active political freedom (\"\"libertas\"\"), including the right to vote, though he could not run for public office. During the Republic, Roman military expansion was"} +{"qid": "test2949", "pid": "19222484", "query": "who was allowed to vote in the roman republic", "answer": "unknown", "passage": "\"Elections in the Roman Republic\"\n“rule by the people” a more attainable goal. Voting for most offices was open to all full Roman citizens, a group that excluded women, slaves and originally those living outside of Rome. In the early Republic the electorate would have been small, but as Rome grew it expanded. The \"\"Lex Julia\"\" of 90 BCE extending voting rights to citizens across Italy greatly expanded the franchise. By the final Republican census of 70 BCE there were 910,000 possible electors. One unknown is how the Romans kept track of who was eligible to vote. Debates over the franchise were frequent, and differentiating"} +{"qid": "test2949", "pid": "16236438", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"Roman–Latin wars\"\nto Rome by separate bilateral treaties. The Campanians, who had sided with the Latins, were organized as \"\"civitas sine suffragio\"\" – citizenship without a vote – which gave them all the rights and duties of a Roman citizen, including that of military service, except the right to vote in the Roman assemblies. This peace settlement was to become a template for how Rome later dealt with other defeated states. Roman–Latin wars The Roman–Latin wars were a series of wars fought between ancient Rome (including both the Roman Kingdom and the Roman Republic) and the Latins, from the earliest stages of"} +{"qid": "test2949", "pid": "97650", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "Democracy\nit because of its simplicity, and to prevent any bias voting, buying, or cheating that was predominant in the early democratic elections. Even though the Roman Republic contributed significantly to many aspects of democracy, only a minority of Romans were citizens with votes in elections for representatives. The votes of the powerful were given more weight through a system of gerrymandering, so most high officials, including members of the Senate, came from a few wealthy and noble families. In addition, the Roman Republic was the first government in the western world to have a Republic as a nation-state, although it"} +{"qid": "test2949", "pid": "6689349", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"Social class in ancient Rome\"\nSocial class in ancient Rome Social class in ancient Rome was hierarchical, but there were multiple and overlapping social hierarchies, and an individual's relative position in one might be higher or lower than in another. The status of freeborn Romans during the Republic was established by: For example, men who lived in towns outside Rome (such as \"\"municipia\"\" or colonies) might hold citizenship, but lack the right to vote (see \"\"ius Latinum\"\"); free-born Roman women were citizens, but could not vote or hold political office. There were also classes of non-citizens with different legal rights, such as \"\"peregrini\"\". Under Roman"} +{"qid": "test2949", "pid": "16925455", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"2016 United Kingdom European Union membership referendum\"\nable to vote in the referendum. Residents of the United Kingdom who were citizens of other EU countries were not allowed to vote unless they were citizens (or were also citizens) of the Republic of Ireland, of Malta, or of the Republic of Cyprus. The Representation of the People Acts 1983 \"\" and 1985 \"\", as amended, also permit certain British citizens (but not other British nationals), who had once lived in the United Kingdom, but had since and in the meantime lived outside of the United Kingdom, but for a period of no more than 15 years, to vote."} +{"qid": "test2949", "pid": "10541952", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"Constitution of the Roman Republic\"\nwere made by the convention. Voters met in conventions to deliberate prior to meeting in assemblies or councils to vote. Assemblies and councils operated according to established procedures overseen by the augurs. They could only be convened by magistrates, and citizens only voted on matters proposed by the presiding magistrate. Over the years, laws were passed which mandated a written ballot, attempted to reduce voter intimidation, and established procedures to watch over voting and prevent voter fraud. For elections, it was not a matter of who received the most votes, but rather who could first be approved by a majority"} +{"qid": "test2949", "pid": "16235685", "query": "who was allowed to vote in the roman republic", "answer": "citizens", "passage": "\"Roman expansion in Italy\"\nat an increasing pace, leading to the Roman Republic growing from being the dominant state of central Italy to becoming the hegemon of the entire peninsula. In 290 BC the Roman consul Manius Curius Dentatus conquered the Sabines, who were annexed into the Roman state as citizens without a vote. During 284 - 280 BC the Romans fought a war against the Etruscans and Gauls in northern Italy. After first being defeated at the battle of Arretium, Rome won a decisive victory against the Gauls at the battle of Lake Vadimo leading to the Roman annexation of the \"\"ager Gallicus\"\"."} +{"qid": "test295", "pid": "1730589", "query": "tujhe dekha toh yeh jana sanam movie name", "answer": "Dilwale Dulhania Le Jayenge", "passage": "\"Lata Mangeshkar\"\nthe 1980s; she continued to sing with Shabbir Kumar, Shailendra Singh, Nitin Mukesh (Mukesh's son), Manhar Udhas, Amit Kumar (Kishore Kumar's son), Mohammed Aziz, Vinod Rathod, and S.P. Balasubrahmanyam. In the 1990s, Mangeshkar began singing duets with Pankaj Udhas, Mohammed Aziz, Abhijeet Bhattacharya, Udit Narayan, Kumar Sanu, and Suresh Wadkar. Her most notable work of the 90s was \"\"Dilwale Dulhania Le Jayenge\"\" with songs such as \"\"Mere Khwabon Mein Jo Aaye\"\", \"\"Ho Gaya Hai Tujhko To Pyaar Sajna\"\", \"\"Tujhe Dekha To Yeh Janam Sanam\"\", and \"\"Mehdni Laga Ke Rakhna\"\". In the 2000s, Mangeshkar's duets were mainly with Udit Narayan and"} +{"qid": "test2951", "pid": "57728", "query": "blood alcohol concentration means the parts of alcohol in the blood in relation to what", "answer": "volume of blood", "passage": "\"Blood alcohol content\"\nBlood alcohol content Blood alcohol content (BAC), also called blood alcohol concentration, blood ethanol concentration, or blood alcohol level, is most commonly used as a metric of alcohol intoxication for legal or medical purposes. Blood alcohol concentration is usually expressed as a percentage of ethanol in the blood in units of mass of alcohol per volume of blood or mass of alcohol per mass of blood, depending on the country. For instance, in North America a BAC of 0.10 (0.10% or one tenth of one percent) means that there are 0.10 g of alcohol for every 100 mL of blood."} +{"qid": "test2951", "pid": "2657445", "query": "blood alcohol concentration means the parts of alcohol in the blood in relation to what", "answer": "volume of blood", "passage": "Depressant\nlegal or medical purposes is through blood alcohol content (also called blood alcohol concentration or blood alcohol level). It is usually expressed as a percentage of alcohol in the blood in units of mass of alcohol per volume of blood, or mass of alcohol per mass of blood, depending on the country. For instance, in North America a blood alcohol content of \"\"0.10\"\" or more correctly 0.10 g/dL means that there are 0.10 g of alcohol for every dL of blood (i.e., mass per volume is used there). Barbiturates are effective in relieving the conditions that they are designed to"} +{"qid": "test2951", "pid": "57744", "query": "blood alcohol concentration means the parts of alcohol in the blood in relation to what", "answer": "volume of blood", "passage": "\"Blood alcohol content\"\nas retrograde extrapolation—guessing based upon averages and unknown variables—this can be relevant in estimating BAC when driving and/or corroborating or contradicting the results of a later chemical test. There have been reported cases of blood alcohol content higher than 1%: Blood alcohol content Blood alcohol content (BAC), also called blood alcohol concentration, blood ethanol concentration, or blood alcohol level, is most commonly used as a metric of alcohol intoxication for legal or medical purposes. Blood alcohol concentration is usually expressed as a percentage of ethanol in the blood in units of mass of alcohol per volume of blood or mass"} +{"qid": "test2951", "pid": "57731", "query": "blood alcohol concentration means the parts of alcohol in the blood in relation to what", "answer": "volume of blood", "passage": "\"Blood alcohol content\"\ndefines a drink as 10 g of ethanol. Standard drink sizes (Australia) The National Institute on Alcohol Abuse and Alcoholism (NIAAA) define the term \"\"binge drinking\"\" as a pattern of drinking that brings a person’s blood alcohol concentration (BAC) to 0.08 grams percent or above. This typically happens when men consume 5 or more drinks, and when women consume 4 or more drinks, in about 2 hours. There are several different units in use around the world for defining blood alcohol concentration. Each is defined as either a mass of alcohol per volume of blood or a mass of alcohol"} +{"qid": "test2951", "pid": "6500077", "query": "blood alcohol concentration means the parts of alcohol in the blood in relation to what", "answer": "ethanol", "passage": "\"Biological half-life\"\nthe body is replaced with new water. The removal of ethanol (drinking alcohol) through oxidation by alcohol dehydrogenase in the liver from the human body is limited. Hence the removal of a large concentration of alcohol from blood may follow zero-order kinetics. Also the rate-limiting steps for one substance may be in common with other substances. For instance, the blood alcohol concentration can be used to modify the biochemistry of methanol and ethylene glycol. In this way the oxidation of methanol to the toxic formaldehyde and formic acid in the human body can be prevented by giving an appropriate amount"} +{"qid": "test2951", "pid": "12472186", "query": "blood alcohol concentration means the parts of alcohol in the blood in relation to what", "answer": "ethanol", "passage": "\"Short-term effects of alcohol consumption\"\nShort-term effects of alcohol consumption The short-term effects of alcohol (also known formally as ethanol) consumption – due to drinking beer, wine, distilled spirits or other alcoholic beverages – range from a decrease in anxiety and motor skills and euphoria at lower doses to intoxication (drunkenness), stupor, unconsciousness, anterograde amnesia (memory \"\"blackouts\"\"), and central nervous system depression at higher doses. Cell membranes are highly permeable to alcohol, so once alcohol is in the bloodstream, it can diffuse into nearly every cell in the body. The concentration of alcohol in blood is measured via blood alcohol content (BAC). The amount and"} +{"qid": "test2952", "pid": "13644368", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Greek mythology in popular culture\"\nflew too close to the sun so that the wax melted and Icarus fell to his death in the sea. The \"\"God of War\"\" franchise of video games is set in a land of Greek mythology, with the main character being named after Kratos from Greek mythology (though is not the same character). The video game Kratos is the son of Olympian god Zeus and is the personification of power. Koei Tecmo's \"\"Warriors Orochi 4\"\" is focus themed in Greek Mythology and it's set with combination between Asian Mythology, three kingdoms era, Japanese Warring States period and Greek Mythology. The"} +{"qid": "test2952", "pid": "3042313", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"The Storyteller (TV series)\"\nthe sea around Crete and there was no route of escape there. Daedalus realized that the only way out was by air. To escape, Daedalus built wings for himself and Icarus fashioned with the vulture's feathers held together with beeswax. Daedalus warned his son not to fly too close to the sun (as it would melt his wings) and not too close to the sea (as the sea spray would dampen them and weigh him down). They successfully flew from Crete, but Icarus soon flew too close to the sun. The wax holding the feathers melted and he fell to"} +{"qid": "test2952", "pid": "16649977", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Icarus complex\"\nIcarus complex The Icarus complex is a term in psychoanalysis and personality theory first used by Henry A. Murray to describe a particular type of over-ambitious character. Psychosynthesis has applied it to those in whom spiritual ambition exceeds their personality limits, leading to a backlash. Icarus was a Greek mythological figure who tried to escape imprisonment in Crete with his father Daedalus, using wings Daedalus crafted out of feathers and wax. Daedalus warned Icarus not too fly too close to the sun or too low to the sea. Overwhelmed with the excitement of flying, Icarus flew much too high, and"} +{"qid": "test2952", "pid": "10256489", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Deus Ex: Human Revolution\"\nand Bill Gates as inspiration for the powerful CEO figures in the narrative of \"\"Human Revolution\"\". She also noted the way in which corporations had gained greater power than governments in the narrative, something that paralleled political comments on corporate power at the time. The world of \"\"Human Revolution\"\" was designed to parallel the Greek myth of Icarus; in the myth, Icarus was flying with artificial wings, but flew too close to the sun and destroyed his wings, causing his fatal fall. The world's new reliance on and experimentation with augmentation technology mirrored the myth, with the game's narrative taking"} +{"qid": "test2952", "pid": "2291570", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"The Golden Oecumene\"\nto the Greek myth of Phaëton who stole his father's (the sun god Helios) chariot and rode it too close to the Sun, not unlike the tale of Icarus, who committed a similar error. There are also references to works of the science fiction canon: the title and characters conform to the mold established by Robert A. Heinlein in the 1940s and 50s that constituted the \"\"Golden Age\"\" of science fiction. The book's subtitle also describes itself as a \"\"Romance of the far future,\"\" a reply to Olaf Stapledon's Last and First Men. The Golden Oecumene The Golden Oecumene is"} +{"qid": "test2952", "pid": "5650863", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Wright Brothers National Memorial\"\npropelled himself into the air while wearing paddles on his arms and legs; An homage to Otto Lilienthal, a German who died while conducting gliding experiments; A reference to a French philosopher who thought that since dew rose in the morning, if it could be placed in an expandable bag attached to a box and sail, it would naturally rise when placed in the sun. (It didn't.) Right Door (top to bottom): Icarus, the Greek mythological figure who tried to fly from Crete by attaching feathers to his arms with wax. He fell when he flew too close to the"} +{"qid": "test2952", "pid": "6835306", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "Varekai\nVarekai Varekai was a Cirque du Soleil touring production that premiered in Montréal in April 2002. Its title means \"\"wherever\"\" in the Romani language, and the show is an \"\"acrobatic tribute to the nomadic soul\"\". The show begins with the Greek myth of Icarus, picking up where the myth leaves off, reimagining the story of what happened to Icarus after he flew too close to the sun and fell from the sky. In \"\"Varekai\"\", rather than drowning in the sea below him, Icarus lands in a lush forest full of exotic creatures. The set, created by Stéphane Roy, includes four"} +{"qid": "test2952", "pid": "6835320", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "Varekai\nOceania Varekai Varekai was a Cirque du Soleil touring production that premiered in Montréal in April 2002. Its title means \"\"wherever\"\" in the Romani language, and the show is an \"\"acrobatic tribute to the nomadic soul\"\". The show begins with the Greek myth of Icarus, picking up where the myth leaves off, reimagining the story of what happened to Icarus after he flew too close to the sun and fell from the sky. In \"\"Varekai\"\", rather than drowning in the sea below him, Icarus lands in a lush forest full of exotic creatures. The set, created by Stéphane Roy, includes"} +{"qid": "test2952", "pid": "11389860", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Icarus paradox\"\nwere imprisoned in the maze. In order to escape their prison, Daedalus built two pairs of wings by attaching feathers to a wooden frame using wax. He gave one pair to Icarus and cautioned him that the wax would melt if he flew too close to the sun. However, in his excitement and elation at his newfound flying abilities, Icarus did not heed Daedalus' warning and flew too high. The wax melted, the feathers fell off and Icarus plunged to his death in the sea. The sea that Icarus drowned in and the islet his body washed ashore on were"} +{"qid": "test2952", "pid": "12103457", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Order of Icarus\"\nas a result, the Order of Icarus was founded which honoured those persons still living at the time whose airborne skills had resulted in outstanding benefits to manned flight in Canada. After a lengthy search through various mythologies, the early members settled on the Greek story of Icarus. According to myth, Icarus' father Daedalus, under an unjust sentence of death by King Minos of Crete, created wings of feather and wax with which he and his son could fly to freedom. When an exhilarated Icarus flew too high, the heat of the sun destroyed his wings, melting the wax that"} +{"qid": "test2952", "pid": "2956560", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"1566 Icarus\"\nthe mythological boy Icarus, who flew too close to the Sun. \"\"Icarus\"\" orbits the Sun at a distance of 0.2–2.0 AU once every 1 years and 1 month (409 days). Its orbit has an eccentricity of 0.83 and an inclination of 23° with respect to the ecliptic. The body's observation arc begins with its official discovery observation at Palomar. At perihelion, \"\"Icarus\"\" comes closer to the Sun than Mercury, i.e. it is a Mercury-crossing asteroid. It is also a Venus and Mars-crosser. From 1949 until the discovery of 3200 Phaethon in 1983, it was known as the asteroid that passed"} +{"qid": "test2952", "pid": "7868602", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Flight of Icarus\"\nhis father, flew too close to the Sun, melting the wax that held the feathers and thus fell to his death in the sea. Vocalist Bruce Dickinson modified the original tale to make it an allegory of teenage rebellion against adult authority, which caused the death of Icarus in this case. The single cover, in something of a parody of the original myth, portrays a winged Eddie killing Icarus with a flamethrower. Icarus resembles the figure in \"\"Evening: Fall of Day\"\", by William Rimmer, which was used as a label logo by Led Zeppelin. According to the artist, Derek Riggs,"} +{"qid": "test2952", "pid": "2496883", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "\"Doctor Faustus (play)\"\nis reached after, not prior to, the survey\"\". In the prologue, The Chorus introduces the reader to Faustus and his story. He is described as being \"\"base of stock\"\"; however, his intelligence and scholarship eventually earns him the degree of a Doctor at the University of Wittenburg. During this opening, the reader also gets a first clue to the source of Faustus's downfall. Faustus's tale is likened to that of Icarus, who flew too close to the sun and fell to his death when the sun melted his waxen wings. This is a hint to Faustus's end as well as"} +{"qid": "test2952", "pid": "866760", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "Icarus\nIcarus In Greek mythology, Icarus (the Latin spelling, conventionally adopted in English; , \"\"Íkaros\"\", Etruscan: \"\"Vikare\"\") is the son of the master craftsman Daedalus, the creator of the Labyrinth. Icarus and his father attempt to escape from Crete by means of wings that his father constructed from feathers and wax. Icarus' father warns him first of complacency and then of hubris, asking that he fly neither too low nor too high, so the sea's dampness would not clog his wings nor the sun's heat melt them. Icarus ignored his father's instructions not to fly too close to the sun; when"} +{"qid": "test2952", "pid": "275952", "query": "which greek god flew too close to the sun", "answer": "Icarus", "passage": "Minos\nof who the Minotaur was and how to get out of the Labyrinth (Daedalus knew both of these things), Minos imprisoned Daedalus and his son, Icarus, along with the monster. Daedalus and Icarus flew away on wings Daedalus invented, but Icarus' wings melted because he flew too close to the sun. Icarus fell in the sea and drowned. Minos' son Androgeus won every game in a contest hosted by Aegeas of Athens. Alternatively, the other contestants were jealous of Androgeus and killed him. Minos was angry and declared war on Athens. He offered the Athenians peace if they sent Minos"} +{"qid": "test2953", "pid": "13454388", "query": "when did the song rapper's delight come out", "answer": "1979", "passage": "\"Here Comes That Sound Again\"\nHere Comes That Sound Again Here Comes That Sound Again is a 1979 disco single by Love De-Luxe, a dance studio group formed by British producer, Alan Hawkshaw. Vicki Brown and Jo-Ann Stone were the lead vocalists on the single. The single hit number one on the dance charts in the middle of 1979, for one week. The single did not cross over to any other chart and Love De-Luxe had no other charted singles in the United States. However, elements from the song were used for the intro to the Sugarhill Gang's hit single \"\"Rapper's Delight\"\". The song’s chorus"} +{"qid": "test2953", "pid": "1670407", "query": "when did the song rapper's delight come out", "answer": "1979", "passage": "\"Rapper's Delight\"\nthe beat\"\", was inspired by the introduction to \"\"The Outer Limits\"\" (\"\"There is nothing wrong with your television set. Do not attempt to adjust the picture\"\"). Before the \"\"Good Times\"\" background starts, the intro to the recording is an interpolation of \"\"Here Comes That Sound Again\"\" by British studio group Love De-Luxe, a dance hit in 1979. According to Oliver Wang, author of the 2003 \"\"Classic Material: The Hip-Hop Album Guide\"\", recording artist (\"\"Pillow Talk\"\") and studio owner Sylvia Robinson had trouble finding anyone willing to record a rap song. Most of the rappers who performed in clubs did not"} +{"qid": "test2953", "pid": "20122485", "query": "when did the song rapper's delight come out", "answer": "1979", "passage": "\"Homophobia in hip hop culture\"\nHomophobia in hip hop culture Homophobia in hip hop culture is the homophobic attitude from hip hop artists towards LGBT people, in the form of song lyrics that use anti-gay slurs and normalize violence against LGBT people. In 1979, the Sugarhill Gang released \"\"Rapper’s Delight\"\", which is the first hip hop record to become a top 40 hit. Although their homophobia was minuscule compared to other rappers in hip hop, “Rapper’s Delight” did exhibit slights to fictional character Superman, who was referred to as a “fairy” for wearing a tight suit. In 1986, the hip hop trio Beastie Boys originally"} +{"qid": "test2953", "pid": "5978623", "query": "when did the song rapper's delight come out", "answer": "1979", "passage": "\"Hip hop\"\n\"\"Rapper's Delight\"\" by The Sugarhill Gang, released in 1979, begins with the phrase \"\"I said a hip, hop the hippie the hippie to the hip hip hop, and you don't stop\"\". Lovebug Starski — a Bronx DJ who put out a single called \"\"The Positive Life\"\" in 1981 — and DJ Hollywood then began using the term when referring to this new \"\"disco rap\"\" music. Bill Alder, an independent consultant, once said, \"\"There was hardly ever a moment when rap music was underground, one of the very first so-called rap records, was a monster hit (\"\"Rapper's Delight\"\" by the Sugar"} +{"qid": "test2955", "pid": "17611738", "query": "who's the model on let's make a deal", "answer": "Tiffany Adams Coyne", "passage": "\"Tiffany Coyne\"\nthe Beautiful\"\", was a stand in model for \"\"The Price Is Right\"\", and modeled for United Airlines and Chase Bank. Her father is of German descent, and her mother is of Hungarian descent. She is married to Chris Coyne, whom she met while working on a cruise ship. They live in Los Angeles, California. Their first child, Scarlett Rose, was born in August, 2013. Their son, Carter Liam Coyne was born in February 2018. Tiffany Coyne Tiffany Adams Coyne (born May 6, 1982) is an American model and dancer. She is the model on \"\"Let's Make a Deal\"\", having replaced"} +{"qid": "test2956", "pid": "3592313", "query": "what mlb teams did deion sanders play for", "answer": "San Francisco Giants", "passage": "\"Deion Sanders\"\nDeion Sanders Deion Lin Sanders Sr. (; born August 9, 1967), nicknamed \"\"Primetime\"\", is an American athlete and sports analyst who played in the National Football League (NFL) for 14 seasons. During his football career, he was a member of the Atlanta Falcons, the San Francisco 49ers, the Dallas Cowboys, the Washington Redskins, and the Baltimore Ravens. He also had a part-time career as a baseball outfielder for nine seasons in Major League Baseball (MLB), where he played professionally for the New York Yankees, the Atlanta Braves, the Cincinnati Reds, and the San Francisco Giants. Sanders won two Super Bowl"} +{"qid": "test2956", "pid": "10856393", "query": "what mlb teams did deion sanders play for", "answer": "Atlanta Braves", "passage": "\"1994 Atlanta Braves season\"\nled the MLB in most strikeouts (865) and allowed the fewest runs (448) and earned runs (407). May 29, 1994: Deion Sanders was traded by the Atlanta Braves to the Cincinnati Reds for Roberto Kelly and Roger Etheridge (minors). \"\"Note: G = Games played; AB = At Bats; H = Hits; Avg. = Batting Average; HR = Home Runs; RBI = Runs Batted In\"\" 1994 Major League Baseball All-Star Game 1994 Atlanta Braves season The 1994 Atlanta Braves season was the Braves' 124th in existence and their 29th in Atlanta. After trading the two-sport athlete Deion Sanders, experts predicted that"} +{"qid": "test2956", "pid": "3592319", "query": "what mlb teams did deion sanders play for", "answer": "New York Yankees", "passage": "\"Deion Sanders\"\nFlorida State, Sanders hit .331 in 1986; he was known more for base stealing, compiling 27 stolen bases in 1987. Sanders once played the first game of a baseball doubleheader, ran a leg of a 4 × 100 relay, then returned to play another baseball game. Sanders played a nine-year, part-time baseball career, playing left and center field in 641 games with four teams. He was originally drafted by the Kansas City Royals in the sixth round of the 1985 draft, but did not sign with them. The New York Yankees selected Sanders in the 30th round of the 1988"} +{"qid": "test2956", "pid": "3592323", "query": "what mlb teams did deion sanders play for", "answer": "Atlanta Braves", "passage": "\"Deion Sanders\"\nIn September 1990, the Yankees placed Sanders on waivers with the intention of giving him his release, as Yankees' general manager Gene Michael said that Sanders' football career was stunting his baseball development. Sanders later signed with the Atlanta Braves for the 1991 MLB season. On July 31, Sanders hit a key three-run homer to spark a comeback win against the Pittsburgh Pirates during the Braves' run to the National League West Division title. However, he had to leave the Braves the very next day to report to the Atlanta Falcons because of a clause in his NFL contract and"} +{"qid": "test2959", "pid": "19905308", "query": "where does the last name hansen come from", "answer": "Norway", "passage": "\"Carl Sundt-Hansen\"\nwhen he went back to Norway and settled into a small cabin in Valle. In 1907, he became ill with what was diagnosed as nicotine poisoning. Nothing worked to improve his health, so he went to a hospital in Stavanger, where it was discovered that he had cancer. For the last few months of his life, he lived in Stavanger with his brother, Hans. Carl Sundt-Hansen Carl Fredrik Sundt-Hansen (30 January 1841, Stavanger - 27 August 1907, Stavanger) was a Norwegian-Danish genre painter; in the Romantic Nationalist style. He adopted his mother's maiden-name (Sundt) in 1878. He came from an"} +{"qid": "test2959", "pid": "20085690", "query": "where does the last name hansen come from", "answer": "Norway", "passage": "\"Asbjørn Hansen\"\nprevious year, Hansen joined city rivals Sarpsborg FK, where he played until his retirement from top-level football in 1962. on 25 June 1952, Hansen made his debut for the Norwegian national team in a friendly against Yugoslavia, and he remained first-choice goalkeeper throughout most of the next decade, playing his last international in 1961. In total, he won 52 caps for Norway. Only Erik Thorstvedt (97 caps) and Thomas Myhre (56 caps) have played more matches for Norway as goalkeeper. Asbjørn Hansen Asbjørn Hansen (29 May 1930 – 25 March 2017) was a Norwegian football goalkeeper who played for Sparta"} +{"qid": "test2959", "pid": "15507068", "query": "where does the last name hansen come from", "answer": "Denmark", "passage": "\"Else Hansen\"\nher three younger children where all born at the manor Ulriksholm on Funen, a manor owned by Ulrik Frederik von Heinen, brother-in-law of the de facto ruler of Denmark, the kings favorite Adam Gottlob Moltke, who likely arranged the matter. The manor was named after the royal Ulrik Christian Gyldenlove, illegitimate son of a previous king. The king's children with Hansen where baptized in the local parish church near the manor, where they were officially listed as the legitimate children of the wife of a non existent man called \"\"Frederick Hansen, ship writer from Gothenburg to China\"\". The frequent trips"} +{"qid": "test2959", "pid": "10154329", "query": "where does the last name hansen come from", "answer": "Denmark", "passage": "\"John Hansen (footballer, born 1924)\"\nIn February 1969, Hansen became a member of the selection committee which selected the players for the Danish national team. At the same time he agreed a one-year deal to replace Erik Hansen as part-time tactical coach of the national team, where he worked in tandem with physical trainer Henry From. They managed Denmark to five victories, one draw, and three defeats in nine games. When the year was up, Hansen refused to prolong the arrangement, urging the Football Association to hire a full-time national team coach. Austrian Rudi Strittich was named national team coach in 1970, replacing both Hansen"} +{"qid": "test296", "pid": "684357", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "Antigone\nshe has hanged herself. Creon's son Hæmon, who was in love with Antigone commits suicide with a knife, and his mother Queen Eurydice, also kills herself in despair over her son's death. She has been forced to weave throughout the entire story, and her death alludes to The Fates. Sophocles' play is a typical Greek tragedy, in which inherent flaws of the acting characters lead to irrevocable disaster. Antigone and Creon are prototypical tragic figures in an Aristotelian sense, as they struggle towards their fore-doomed ends, forsaken by the gods. The dramatist Euripides also wrote a play called \"\"Antigone\"\", which"} +{"qid": "test296", "pid": "16530453", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "\"Antigone (Euripides play)\"\ninstead of their deaths in Sophocles' play. One extant fragment is a plea to the god Dionysus, suggesting the possibility that Dionysus was the \"\"deus ex machina\"\" who saved Antigone and Haemon and prophesied the birth of Maeon. Several extant fragments deal with love and marriage, and John Homer Huddilston believed that this, and hint from other fragments (although some of these are now believed to be from plays other than Antigone) indicate that Antigone and Haemon were married secretly. There are two vase paintings showing scenes from an \"\"Antigone\"\" play which were historically attributed to Euripides' play, although modern"} +{"qid": "test296", "pid": "848051", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "Polynices\nthem, these Epigoni are successful in their attempt to take Thebes, after which they install Thersander, Polynices' son by Argea, as the city's new ruler. In Sophocles' tragedy \"\"Antigone\"\", Polynices' story continues after his death. King Creon, who ascended to the throne of Thebes, decreed that Polynices was not to be buried or even mourned, on pain of death by stoning. Antigone, his sister, defied the order, but was caught. Creon decreed death, this in spite of her betrothal to his son Haemon. Antigone's sister, Ismene, then declared she had aided Antigone and wanted the same fate. Creon imprisoned Antigone"} +{"qid": "test296", "pid": "752028", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "\"Antigone (Sophocles play)\"\nIn this situation, news of the illegal burial and Antigone's arrest would arrive at the same time and there would be no period of time in which Antigone's defiance and victory could be appreciated. J. L. Rose maintains that the solution to the problem of the second burial is solved by close examination of Antigone as a tragic character. Being a tragic character, she is completely obsessed by one idea, and for her this is giving her brother his due respect in death and demonstrating her love for him and for what is right. When she sees her brother's body"} +{"qid": "test296", "pid": "752018", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "\"Antigone (Sophocles play)\"\nthe treatment of the corpse, respect Creon and what he is doing. The chorus is sympathetic to Antigone only when she is led off to her death. But when the chorus learns that the Gods are offended by what Creon has done, and that Creon’s actions will result in the destruction of their city, then they ask Creon to change course. The city is of primary importance to the chorus. Once the initial premises behind the characters in \"\"Antigone\"\" have been established, the action of the play moves steadily and inevitably towards the outcome. Once Creon has discovered that Antigone"} +{"qid": "test296", "pid": "359348", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "Sophocles\nland, Creon, has forbidden the burial of Polyneices for he was a traitor to the city. Antigone decides to bury his body and face the consequences of her actions. Creon sentences her to death. Eventually, Creon is convinced to free Antigone from her punishment, but his decision comes too late and Antigone commits suicide. Her suicide triggers the suicide of two others close to King Creon: his son, Haemon, who was to wed Antigone, and his wife, Eurydice, who commits suicide after losing her only surviving son. The plays were written across thirty-six years of Sophocles' career and were not"} +{"qid": "test296", "pid": "16530451", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "\"Antigone (Euripides play)\"\nAntigone (Euripides play) Antigone ( ; ) is a play by the Attic dramatist Euripides, which is now lost except for a number of fragments. According to Aristophanes of Byzantium, the plot was similar to that of Sophocles' play \"\"Antigone\"\", with three differences. The date of the play is uncertain, but there is evidence that it was written late in Euripides' career, between 420 BCE and 406 BCE. Sophocles' \"\"Antigone\"\" (ca. 441 BCE) told the story of how Oedipus' daughter Antigone buried the body of her brother Polynices who had led an invasion of Thebes, defying the order of her"} +{"qid": "test296", "pid": "834321", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "Oedipus\nborrowing the poetry of Hesiod: \"\"What is that which has one voice and yet becomes four-footed and two-footed and three-footed?\"\" Due to the popularity of Sophocles's \"\"Antigone\"\" (c. 442 BC), the ending (lines 1005–78) of \"\"Seven against Thebes\"\" was added some fifty years after Aeschylus' death. Whereas the play (and the trilogy of which it is the last play) was meant to end with somber mourning for the dead brothers, the spurious ending features a herald announcing the prohibition against burying Polyneices, and Antigone's declaration that she will defy that edict. Oedipus was a figure who was also used in"} +{"qid": "test296", "pid": "16530452", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "\"Antigone (Euripides play)\"\nuncle Creon who was ruling Thebes. As a result, Creon condemned her to death, and although Creon rescinded the death sentence, Antigone and her lover Haemon, Creon's son, killed themselves. The extant fragments of Euripides' \"\"Antigone\"\" do not reveal much of the plot, but Aristophanes of Byzantium has written that Euripides' play differed from Sophocles' in three major ways: Modern scholars interpret Aristophanes comment to indicate that Euripides' play developed along similar lines to Sophocles', except that Haemon's participation in, or at least knowledge of, Antigone's burial of Polynices led to the happy resolution of their marriage in Euripides' play"} +{"qid": "test296", "pid": "684356", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "Antigone\nhis mother, Jocasta. However, in other versions such as Sophocles' tragedies \"\"Oedipus at Colonus\"\" and \"\"Antigone\"\", it occurs in the years after the banishment and death of Oedipus and Antigone's struggles against Creon. Antigone is brought before Creon, and admits that she knew of Creon's law forbidding mourning for Polynices but chose to break it, claiming the superiority of divine over human law, and she defies Creon's cruelty with courage, passion and determination. Sophocles' \"\"Antigone\"\" ends in disaster. Creon orders Antigone buried alive in a tomb. Although Creon has a change of heart and tries to release Antigone, he finds"} +{"qid": "test296", "pid": "752007", "query": "who wrote antigone and what are the dates of his birth and death", "answer": "Sophocles", "passage": "\"Antigone (Sophocles play)\"\ncommitted the crime saw this. Creon, furious, orders the sentry to find the culprit or face death himself. The sentry leaves, and the chorus sings about honouring the gods, but after a short absence, he returns, bringing Antigone with him. The sentry explains that the watchmen uncovered Polyneices' body and then caught Antigone as she did the funeral rituals. Creon questions her after sending the sentry away, and she does not deny what she has done. She argues unflinchingly with Creon about the immorality of the edict and the morality of her actions. Creon becomes furious, and seeing Ismene upset,"} +{"qid": "test2960", "pid": "4325184", "query": "what is the symbol for christmas in brazil", "answer": "Nativity scene", "passage": "\"Christmas traditions\"\ndinners, opening of gifts and the celebration of the \"\"Missa do Galo\"\" (the rooster's mass) in churches throughout the nation. Many Brazilians decorate their homes with a Christmas Tree, there is no rule, the parents can decorate it by themselves as a surprise to the kids, or they can do it together. In addition to the Christmas tree, many families set up a Nativity scene as the main decoration. Nativity scenes are very popular in Brazil, and can be seen everywhere including churches and popular places around the town. Like many other countries, Christmas dinner in Brazil is normally served"} +{"qid": "test2960", "pid": "12939919", "query": "what is the symbol for christmas in brazil", "answer": "Christmas Tree", "passage": "\"The Christmas Tree (1996 film)\"\nNoël, L' Canada\"\", In Spain as \"\"Árbol de Navidad, El Spain\"\", in Brazil as \"\"A Árvore de Natal Brazil\"\" (Portuguese), in Greece as \"\"Dentro ton Hristougennon, To Greece\"\", and in Germany as \"\"Der Weihnachtsbaum\"\". It was made available in October 2001 on VHS in Spanish and English. The Christmas Tree (1996 film) The Christmas Tree is a 1996 American made-for-television Christmas drama film directed by Sally Field, starring Julie Harris and Andrew McCarthy and produced by Walt Disney Television which premiered on ABC on December 22, 1996. A story about a forming friendship between an elderly nun, Sister Anthony (Julie"} +{"qid": "test2964", "pid": "20518266", "query": "who won the mens single ice skating 2018", "answer": "Yuzuru Hanyu", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\nFigure skating at the 2018 Winter Olympics – Men's singles The men's single figure skating competition of the 2018 Winter Olympics was held on 16 and 17 February 2018 at the Gangneung Ice Arena in Gangneung, South Korea. The short program was held on 16 February and the free skating was held on 17 February. This medal event was the 1000th medal event in the history of the Winter Olympic Games. With his victory at the 2018 Winter Olympics, Yuzuru Hanyu became the first male figure skater to win two consecutive gold medals after Dick Button, who did so in"} +{"qid": "test2964", "pid": "20505192", "query": "who won the mens single ice skating 2018", "answer": "Shoma Uno", "passage": "\"2017–18 Japan Figure Skating Championships\"\n2017–18 Japan Figure Skating Championships The 2017–18 Japan Figure Skating Championships were held in Tokyo, in December 2017. It was the 86th edition of the event. Medals were awarded in the disciplines of men's singles, ladies' singles, pair skating, and ice dancing. The senior competitions took place on 20–24 December 2017 at the Musashino Forest Sports Plaza, Tokyo. Shoma Uno won his second consecutive national title. Miyahara won the national title for the fourth year in a row. The junior men's singles, ladies' singles, and ice dancing competitions took place on 24–26 November 2017 in Gunma. The Japan Skating Federation"} +{"qid": "test2965", "pid": "7246592", "query": "what is cain and abel software used for", "answer": "password recovery", "passage": "\"Cain and Abel (software)\"\nCain and Abel (software) Cain and Abel (often abbreviated to Cain) is a password recovery tool for Microsoft Windows. It can recover many kinds of passwords using methods such as network packet sniffing, cracking various password hashes by using methods such as dictionary attacks, brute force and cryptanalysis attacks. Cryptanalysis attacks are done via rainbow tables which can be generated with the winrtgen.exe program provided with Cain and Abel. Cain and Abel is maintained by Massimiliano Montoro and Sean Babcock. Some virus scanners (and browsers, e.g. Chrome 20.0.1132.47) detect Cain and Abel as malware. Avast! detects it as \"\"Win32:Cain-B [Tool]\"\""} +{"qid": "test2965", "pid": "7246593", "query": "what is cain and abel software used for", "answer": "password recovery", "passage": "\"Cain and Abel (software)\"\nand classifies it as \"\"Other potentially dangerous program\"\", while Microsoft Security Essentials detects it as \"\"Win32/Cain!4_9_14\"\" and classifies it as \"\"Tool: This program has potentially unwanted behavior.\"\" Even if Cain's install directory, as well as the word \"\"Cain\"\", are added to Avast's exclude list, the real-time scanner has been known to stop Cain from functioning. However, the latest version of Avast no longer blocks Cain. Cain and Abel (software) Cain and Abel (often abbreviated to Cain) is a password recovery tool for Microsoft Windows. It can recover many kinds of passwords using methods such as network packet sniffing, cracking various"} +{"qid": "test2967", "pid": "5064220", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "KNXV-TV\nlocal newscast\"\" in the Phoenix market. On August 25 of that same year, KNXV reformatted its 4 p.m. newscast into \"\"The NOW Arizona\"\" (see above). In 2016, KNXV extended its weekend 10 p.m. newscasts to run an hour on both Saturday and Sunday. On July 9, 2018, KNXV extended its 4 p.m. newscast to a full hour. KNXV-TV KNXV-TV, virtual and UHF digital channel 15, is an ABC-affiliated television station licensed to Phoenix, Arizona, United States. The station is owned by the E. W. Scripps Company. KNXV-TV's studios are located on the city's east side (north of Sky Harbor International"} +{"qid": "test2967", "pid": "7915137", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "\"Matt Dallas\"\nalso starred as Frank Dean in the western film \"\"Painted Woman\"\" directed by James Cotten. In 2018, Dallas starred as pastor John in supernatural horror film \"\"Along Came the Devil\"\". On July 5, 2015, Dallas married musician Blue Hamilton, his partner of five years. On December 22, 2015, Dallas and Hamilton announced on their YouTube channel that they had adopted their two-year-old son, Crow. Matt Dallas Matthew Joseph Dallas (born October 21, 1982) is an American actor, best known for playing the title character on the ABC Family series \"\"Kyle XY\"\". Dallas was born in Phoenix, Arizona, and attended Arizona"} +{"qid": "test2967", "pid": "5064197", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "KNXV-TV\nKNXV-TV KNXV-TV, virtual and UHF digital channel 15, is an ABC-affiliated television station licensed to Phoenix, Arizona, United States. The station is owned by the E. W. Scripps Company. KNXV-TV's studios are located on the city's east side (north of Sky Harbor International Airport), and its transmitter is located atop South Mountain on the city's south side. Its signal is relayed across northern Arizona through a network of 15 low-power translators. In February 1975, pioneering UHF broadcaster Edwin Cooperstein announced that the Federal Communications Commission had granted a construction permit to his company, New Television Corp., to build a television"} +{"qid": "test2967", "pid": "5064213", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "KNXV-TV\n(52–69) that were removed from broadcasting use as a result of the transition, to its analog-era UHF channel 15. On April 1, 2015, Scripps acquired Journal Communications, owners of its two nearby ABC affiliates, Las Vegas' ABC affiliate KTNV-TV (channel 13) and Tucson ABC station KGUN-TV (channel 9), becoming sister stations to KNXV. Outside of the small corner of southwest Arizona covered by KECY-DT2 from El Centro, California, this effectively gives E. W. Scripps a monopoly on ABC programming throughout the state of Arizona. (Before KECY-DT2 became an ABC affiliate on January 1, 2007, that area's ABC programming was served"} +{"qid": "test2967", "pid": "8236902", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "KVPA-LD\nKVPA-LD KVPA-LD is a low-power television station broadcasting in digital on UHF channel 42 in Phoenix, Arizona. Owned by Liberman Broadcasting of Burbank, California, the station is an owned-and-operated affiliate of the Spanish-language network Estrella TV. An original construction permit for what is now KVPA-LP was granted to Broadcast Systems, Inc. on March 21, 1995 as K24EI in Phoenix, to broadcast on channel 24. The original transmitter location was on Usery Mountain in east Mesa, and the station was first licensed November 15, 1996. Early programming is unknown, but later, the station aired the same programming, Home Shopping Network, as"} +{"qid": "test2967", "pid": "595596", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "\"Phoenix, Arizona\"\nnumerous free neighborhood papers and alternative weeklies such as the \"\"Phoenix New Times\"\"' the \"\"East Valley Tribune\"\", which primarily serves the cities of the East Valley; and Arizona State University's \"\"The State Press\"\". The Phoenix metro area is served by many local television stations and is the largest designated market area (DMA) in the Southwest, and the 12th largest in the U.S., with over 1.8 million homes (1.6% of the total U.S.). The major network television affiliates are KNXV 15 (ABC), KPHO 5 (CBS), KPNX 12 (NBC), KSAZ 10 (Fox), KASW 61 (The CW), KUTP 45 (MyNetworkTV), and KAET 8"} +{"qid": "test2967", "pid": "5502740", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "\"Alexandria Karlsen\"\non the FX channel's \"\"The X Show\"\", UPN's \"\"Battle Dome\"\", and as a try-out \"\"Barker's Beauty\"\" on five episodes of CBS's \"\"The Price Is Right\"\" show. She has also worked on shows such as \"\"Ripley's Believe It or Not\"\", \"\"Talk Soup\"\", \"\"The Late Late Show\"\", \"\"The Tonight Show\"\", and others. At age 15, Karlsen began writing for then what was \"\"The Phoenix Gazette\"\" / \"\"Arizona Republic\"\" and the Tribune Newspapers in Arizona as a student correspondent reporter. Karlsen authored a book titled \"\"The Divorced Guy's Guide to Dating: How to Meet More Women\"\" plus many other columns and articles for"} +{"qid": "test2967", "pid": "721012", "query": "what channel is abc on in phoenix arizona", "answer": "15", "passage": "\"American Broadcasting Company\"\nsize, WABM-DT2/WDBB-DT2 in the Birmingham market, which serve as repeaters of WBMA-LD (which itself is also simulcast on a subchannel of former WBMA satellite WGWW, owned by Sinclair partner company Howard Stirk Holdings). The E. W. Scripps Company is the largest operator of ABC stations in terms of overall market reach, owning 15 ABC-affiliated stations (including affiliates in larger markets such as Cleveland, Phoenix, Detroit and Denver), and through its ownership of Phoenix affiliate KNXV, Las Vegas affiliate KTNV-TV and Tucson affiliate KGUN-TV, it is the only provider of ABC programming for the majority of Arizona (outside the Yuma-El Centro"} +{"qid": "test2968", "pid": "3754076", "query": "who played jennifer in back to the future", "answer": "Claudia Grace Wells", "passage": "\"Claudia Wells\"\nClaudia Wells Claudia Grace Wells (born 1966) is an American actress and businesswoman, best known for her role as Jennifer Parker in the film \"\"Back to the Future\"\" (1985). Born in Kuala Lumpur, Claudia Wells grew up in San Francisco, California, and moved to Los Angeles at the age of 14. She later graduated from Beverly Hills High School. She started acting with appearances in TV shows. Wells played Jennifer Parker, Marty McFly's girlfriend, in the 1985 film \"\"Back to the Future\"\". She almost did not end up in the first film of the successful franchise. According to Wells, she"} +{"qid": "test2968", "pid": "3754080", "query": "who played jennifer in back to the future", "answer": "Claudia Grace Wells", "passage": "\"Claudia Wells\"\nbe a horror film titled \"\"Room & Board\"\". Claudia Wells Claudia Grace Wells (born 1966) is an American actress and businesswoman, best known for her role as Jennifer Parker in the film \"\"Back to the Future\"\" (1985). Born in Kuala Lumpur, Claudia Wells grew up in San Francisco, California, and moved to Los Angeles at the age of 14. She later graduated from Beverly Hills High School. She started acting with appearances in TV shows. Wells played Jennifer Parker, Marty McFly's girlfriend, in the 1985 film \"\"Back to the Future\"\". She almost did not end up in the first film"} +{"qid": "test2969", "pid": "16486643", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Boxing at the 2012 Summer Olympics – Men's light flyweight\"\nBoxing at the 2012 Summer Olympics – Men's light flyweight The men's light flyweight boxing competition at the 2012 Olympic Games in London was held from 31 July to 12 August at the ExCeL Exhibition Centre. Like all Olympic boxing events, the competition was a straight single-elimination tournament. This event consisted of 26 boxers who have qualified for the competition through various qualifying tournaments held in 2011 and 2012. The competition began with a preliminary round on 31 July, where the number of competitors was reduced to 16, and concluded with the final on 11 August. As there were fewer"} +{"qid": "test2969", "pid": "16486669", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Boxing at the 2012 Summer Olympics – Men's lightweight\"\nBoxing at the 2012 Summer Olympics – Men's lightweight The men's lightweight boxing competition at the 2012 Olympic Games in London was held from 30 July to 12 August at the ExCeL Exhibition Centre. This competition consisted of 28 boxers from 28 nations competed. Like all Olympic boxing events, the competition was a straight single-elimination tournament. This competition consisted of 28 boxers who had qualified for the competition through various qualifying tournaments held in 2011 and 2012. The competition began with a preliminary round on 29 July, where the number of competitors was reduced to 16, and concluded with a"} +{"qid": "test2969", "pid": "16486671", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Boxing at the 2012 Summer Olympics – Men's lightweight\"\nis over and the opponent wins. Boxing at the 2012 Summer Olympics – Men's lightweight The men's lightweight boxing competition at the 2012 Olympic Games in London was held from 30 July to 12 August at the ExCeL Exhibition Centre. This competition consisted of 28 boxers from 28 nations competed. Like all Olympic boxing events, the competition was a straight single-elimination tournament. This competition consisted of 28 boxers who had qualified for the competition through various qualifying tournaments held in 2011 and 2012. The competition began with a preliminary round on 29 July, where the number of competitors was reduced"} +{"qid": "test2969", "pid": "16486672", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Boxing at the 2012 Summer Olympics – Men's flyweight\"\nBoxing at the 2012 Summer Olympics – Men's flyweight The men's flyweight boxing competition at the 2012 Olympic Games in London was held from 30 July to 12 August at the ExCeL Exhibition Centre. The gold medal was won by Robeisy Ramírez Twenty-six boxers from 26 nations are competing. Like all Olympic boxing events, the competition was a straight single-elimination tournament. This competition consisted of 26 boxers who had qualified for the competition through various qualifying tournaments held in 2011 and 2012. The competition began with a preliminary round on 30 July, where the number of competitors was reduced to"} +{"qid": "test2969", "pid": "16690683", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Leuris Pupo\"\nLeuris Pupo Leuris Pupo Requejo (born 9 April 1977) is a Cuban shooter who has represented his nation at four Summer Olympic Games. Pupo's first Olympic appearance came at the 2000 Summer Olympics held in Sydney, Australia where he finished tied for ninth place in the men's 25 metre rapid fire pistol. He competed in the same event at the 2004 Summer Olympics in Athens, Greece, finishing tied for seventh place, and again at the 2008 Summer Olympics in Beijing, China where he again finished seventh. At the 2012 Summer Olympics in London, United Kingdom, Pupo won the gold medal"} +{"qid": "test2969", "pid": "15619705", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Athletics at the 2012 Summer Olympics – Women's heptathlon\"\nAthletics at the 2012 Summer Olympics – Women's heptathlon ] The Women's heptathlon competition at the 2012 Summer Olympics in London, United Kingdom. The event was held at the Olympic Stadium on 3–4 August. The gold medal was won by Jessica Ennis. She bettered Eunice Barber's World Heptathlon Best in the 100 metres hurdles by .08 of a second. Many others in the field also achieved their personal bests in the same event. 2004 silver medalist Austra Skujytė outperformed Ennis by 6 cm in the high jump, clearing 1m 92, and in the shot put, where both athletes scored personal"} +{"qid": "test2969", "pid": "15619743", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Athletics at the 2012 Summer Olympics – Women's 400 metres\"\nAthletics at the 2012 Summer Olympics – Women's 400 metres The Women's 400 metres competition at the 2012 Summer Olympics in London, United Kingdom. The event was held at the Olympic Stadium on 3–5 August. London rains became a part of the qualifying round, where the favorites tried to make the final with minimum effort. 52.11 was the slowest time qualifier, though Tjipekapora Herunga managed a 52.31 for the slowest automatic qualifier. In the semi-final, the weather was better. In the first semi, Sanya Richards-Ross was matched with the defending champion Christine Ohuruogu, with only two automatic qualifiers. At the"} +{"qid": "test2969", "pid": "15619896", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Athletics at the 2012 Summer Olympics – Men's pole vault\"\nAthletics at the 2012 Summer Olympics – Men's pole vault The Men's pole vault competition at the 2012 Summer Olympics in London, United Kingdom. The event was held at the Olympic Stadium on 8–10 August. Nobody took an attempt at the auto-qualifying mark. As it turned out, it took a clean round through 5.50 to make the final. Four of the 14 finalists only cleared 5.50. Four passed to 5.65 where defending champion, oft injured Steven Hooker and former world champion Brad Walker failed to clear their opening height. The medals were decided at 5.85, Renaud Lavillenie clearing on his"} +{"qid": "test2969", "pid": "15692678", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Comoros at the 2012 Summer Olympics\"\nComoros at the 2012 Summer Olympics Comoros competed at the 2012 Summer Olympics in London, England, which was held from 27 July to 12 August 2012. The country's participation at London marked its fifth appearance in the Summer Olympics since its début at the 1996 Summer Olympics. The delegation included two track and field athletes: Maoulida Darouèche and Feta Ahamada, and one swimmer, Ayouba Ali Sihame, all three qualified for the Games through wildcard places. Ahamada was selected as the flag bearer for the opening ceremony and Darouèche held it at the closing ceremony. Ahamada won her heat in the"} +{"qid": "test2969", "pid": "16445222", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Swaziland at the 2012 Summer Olympics\"\nSwaziland at the 2012 Summer Olympics Swaziland competed at the 2012 Summer Olympics in London, which was held from 27 July to 12 August 2012. The country's participation at London marked its ninth appearance in the Summer Olympics since its debut at the 1972 Summer Olympics. The delegation included two track and field athletes: Sibusiso Matsenjwa and Phumlile Ndzinisa, and one swimmer, Luke Hall; the first two competitors qualified for the Games through wildcard places while Hall was awarded an universality place by FINA. Hall was selected as the flag bearer for the opening ceremony and Matensjwa held it for"} +{"qid": "test2969", "pid": "15545057", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Triathlon at the 2012 Summer Olympics\"\nTriathlon at the 2012 Summer Olympics The triathlon events at the 2012 Summer Olympics were held in Hyde Park in London, United Kingdom, with the women's triathlon held on 4 August and the men's on 7 August. 110 triathletes from 39 countries competed with 55 men and 55 women competing. The races were held over the \"\"international distance\"\" (also called \"\"Olympic distance\"\") and consisted of swimming, road cycling, and road running. The men's race was held on 7 August 2012. A group of six finished the swim leg in a lead group. A large lead group of articles were together"} +{"qid": "test2969", "pid": "15557710", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Malta at the 2012 Summer Olympics\"\nMalta at the 2012 Summer Olympics Malta competed at the 2012 Summer Olympics in London, which was held from 27 July to 12 August 2012. The country's participation at London marked its fifteenth appearance in the Summer Olympics since its début at the 1928 Summer Olympics. The delegation included two track and field athletes, Rachid Chouhal and Diane Borg, one double trap shooter William Chetcuti and two swimmers Andrew Chetcuti and Nicola Muscat. All five competitors qualified for the Games through wildcard places. William Chetcuti was selected as the flag bearer for the opening ceremony while Borg held it at"} +{"qid": "test2969", "pid": "16587226", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Water polo at the 2012 Summer Olympics – Women's tournament\"\nthe quarterfinal stage where they were seeded and played against a team from the other group. The winners of the quarterfinal games moved on to the semifinals, while the quarterfinal losers played a series of classification games. The semifinal winners played in the gold medal game, while the losers played each other for the bronze. Water polo at the 2012 Summer Olympics – Women's tournament The women's water polo tournament at the 2012 Summer Olympics in London was held from 30 July to 9 August at the Water Polo Arena. Teams from eight nations competed in the tournament and have"} +{"qid": "test2969", "pid": "15449055", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Qatar at the 2012 Summer Olympics\"\nQatar at the 2012 Summer Olympics Qatar competed at the 2012 Summer Olympics in London, which was held from 27 July to 12 August 2012. The country's participation at London marked its eighth appearance in the Summer Olympics since its début at the 1984 Summer Olympics. The delegation sent by the Qatar Olympic Committee consisted of twelve athletes in athletics, shooting, swimming and table tennis. Following the 2008 Summer Olympics, Qatar, along with Saudi Arabia and Brunei, was one of only three countries never have sent a female athlete to the Olympic Games. The country rectified this by sending four"} +{"qid": "test2969", "pid": "13162663", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Water polo at the 2012 Summer Olympics\"\nWater polo at the 2012 Summer Olympics The water polo tournament at the 2012 Summer Olympics in London, United Kingdom was held at the London 2012 Water Polo Arena in the Olympic Park from 29 July to 12 August. The venue's capacity held 5,000 spectators. Twelve teams competed in the men's tournament and eight teams in the women's tournament. Both of Great Britain's teams automatically qualified, while the African qualification tournament was cancelled due as no teams entered, increasing the available spots at each final qualification tournament to four. The draw for the Olympic tournament took place in May 2012."} +{"qid": "test2969", "pid": "5475698", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"2012 Summer Olympics\"\nRussian athletes. The two previous times the Games were held in London: 2012 Summer Olympics The 2012 Summer Olympics, formally the Games of the XXX Olympiad and commonly known as London 2012, was an international multi-sport event that was held from 27 July to 12 August 2012 in London, United Kingdom. The first event, the group stage in women's football, began on 25 July at the Millennium Stadium in Cardiff, followed by the opening ceremonies on 27 July. 10,768 athletes from 204 National Olympic Committees (NOCs) participated. Following a bid headed by former Olympic champion Sebastian Coe and then-Mayor of"} +{"qid": "test2969", "pid": "14804444", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Football at the 2012 Summer Olympics – Women's Asian Qualifiers\"\nFootball at the 2012 Summer Olympics – Women's Asian Qualifiers The Asian Football Confederation's Pre-Olympic Tournament. Eighteen teams entered the qualification for the two allocated spots for the 2012 Summer Olympics Football tournament in London, however, Qatar withdrew before playing any match. The competition was originally scheduled for February 2010 but it eventually started in March 2011. The format is as follows: \"\"All matches were held in Kaohsiung, Taiwan (Chinese Taipei).\"\" \"\"All matches were held in Dhaka, Bangladesh.\"\" Play off Match \"\"All matches were held in Zarqa, Jordan.\"\" \"\"All matches were held in Amman, Jordan.\"\" Note 1: The Iranian government"} +{"qid": "test2969", "pid": "16577369", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Magomed Omarov (boxer)\"\nSummer Olympics at the European Qualifying Event, held in April 2012. In London he beat American Dominic Breazeale but ran into Azeri World Champion Magomedrasul Majidov and lost 14:17. He won the title at the 2013 Summer Universiade. At the 2013 World Championships he beat two opponents but was again defeated by eventual champion Majidov. Magomed Omarov (boxer) Magomed Shakhbanovich Omarov (, born 16 October 16, 1989) is a Russian Super Heavyweight amateur boxer best known to win the 2011 European Amateur Boxing Championships. He also qualified for the 2012 Summer Olympics, held in London, where he reached the quarter-final"} +{"qid": "test2969", "pid": "16421847", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Brunei at the 2012 Summer Olympics\"\nBrunei at the 2012 Summer Olympics Brunei, officially known as \"\"Brunei Darussalam\"\", competed at the 2012 Summer Olympics in London, which was held from 27 July to 12 August 2012. The country's participation in London marked its fifth appearance in the Summer Olympics since its debut in the 1988 Summer Olympics. The Brunei delegation included three athletes: Ak Hafiy Tajuddin Rositi, Maziah Mahusin, and swimmer Anderson Lim. Mahusin was the first women to represent Brunei at the Olympic Games and Lim's appearance made him the country's first Olympic swimmer. All three athletes qualified for the Games through wildcard places because"} +{"qid": "test2969", "pid": "16237768", "query": "where was the summer olympics held in 2012", "answer": "London", "passage": "\"Gymnastics at the 2012 Summer Olympics – Women's artistic team all-around\"\nto the Olympics competed for a place in the All-Around Team Final. The top 8 teams qualified to the team final to be held on Tuesday 31 July 2012. Gymnastics at the 2012 Summer Olympics – Women's artistic team all-around The final of the women's artistic team all-around competition at the 2012 Summer Olympics was held at the North Greenwich Arena, London on 31 July 2012. Eight teams of five gymnasts competed in the final from a total of twelve teams which have qualified for the Games. Teams qualified for the final through the general artistic qualification performances on 29"} +{"qid": "test2970", "pid": "16965091", "query": "who cooks for the president of the united states", "answer": "White House Executive Chef", "passage": "\"Henry Haller\"\nfour years before becoming \"\"chef de cuisine\"\" at the Ambassador Hotel (later known as the Sheraton-East Hotel) in New York City. After three years, Haller moved to the Hotel Hampshire House in Manhattan. Lyndon B. Johnson had stayed at the Ambassador Hotel when he was Vice President of the United States, and enjoyed Haller's cooking. Johnson became President of the United States in November 1963 after the assassination of John F. Kennedy. The White House Executive Chef at that time was René Verdon, who had been hired by the Kennedys. Verdon resigned at the end of 1965 in a dispute"} +{"qid": "test2972", "pid": "20454146", "query": "where was the film coming home for christmas filmed", "answer": "British Columbia", "passage": "\"Coming Home for Christmas (2017 film)\"\nJenny Hale. Hale was approached by a screenwriter who wished to adapt the novel after reading the book. Filming took place in British Columbia, in the Abbotsford, Vancouver and Langley areas in August 2017, with a mansion in the Aldergrove area of Langely serving as the property at the centre of the story. The film premiered on the Hallmark Channel on November 18, 2017, as part of the channel's 'Countdown to Christmas' season of programming. Coming Home for Christmas (2017 film) Coming Home for Christmas is a 2017 American-Canadian made-for-television romantic comedy film based on the novel of the same"} +{"qid": "test2975", "pid": "8203166", "query": "a 58-story skyscraper in san francisco is tilting and sinking", "answer": "Millennium Tower", "passage": "\"Millennium Tower (San Francisco)\"\nthe smaller tower. The tower's highest level, 58 floors above the ground, is listed as the 60th, because floors 13 and 44 are missing for superstitious reasons. The French restaurant and wine bar \"\"International Smoke\"\" is housed on the ground floor of the skyscraper. Resident services include a private concierge and access to the Owner's Club Level, which features amenities such as a private lounge, wine cellar, and fitness center. The development's \"\"lifestyle\"\" program organizes cultural events. In May 2016, residents were informed the main tower was both sinking and tilting, resulting in several lawsuits concerning repair costs and whether"} +{"qid": "test2975", "pid": "8203165", "query": "a 58-story skyscraper in san francisco is tilting and sinking", "answer": "Millennium Tower", "passage": "\"Millennium Tower (San Francisco)\"\nMillennium Tower (San Francisco) 301 Mission Street is a development in the South of Market district of downtown San Francisco. A mixed-use, primarily residential development, it is the tallest residential building in San Francisco. The blue-gray glass, late-modernist buildings are bounded by Mission, Fremont, and Beale Streets, and the north end of the Transbay Transit Center site. Opened to residents on April 23, 2009, 301 Mission includes two buildings: a 12-story tower located on the northeast of the property, and Millennium Tower, a 58-story, condominium skyscraper. In total, the project has 419 residential units, with 53 of those units in"} +{"qid": "test2975", "pid": "8203167", "query": "a 58-story skyscraper in san francisco is tilting and sinking", "answer": "Millennium Tower", "passage": "\"Millennium Tower (San Francisco)\"\nthe tilt had been withheld from buyers. Developed by Mission Street Development LLC, an affiliate of Millennium Partners, the project was designed by Handel Architects, engineered by DeSimone Consulting Engineers and constructed by Webcor Builders. At , it is the tallest concrete structure in San Francisco, the fourth tallest building in San Francisco overall, and the tallest since 345 California Street in 1986. It was also the tallest residential building west of the Mississippi River when finished (later surpassed by The Austonian in Texas). The tower is slender, with each floor containing of floor space. In addition to the 58-story"} +{"qid": "test2975", "pid": "8203173", "query": "a 58-story skyscraper in san francisco is tilting and sinking", "answer": "Millennium Tower", "passage": "\"Millennium Tower (San Francisco)\"\nbedrock below. An examination in 2016 showed the building had sunk with a tilt at the base and an approximate tilt at the top of the tower. The building is leaning toward the northwest, and has caused cracks in the building's basement and the pavement surrounding the tower. As of 2018, the sinking has increased to 18 inches with a lean of 14 inches. The developer blames the sinking problem on the Transbay Joint Powers Authority (TJPA), who were responsible for construction of the neighboring Transbay Transit Center (TTC). However, the sinking problem had reportedly started before TTC construction even"} +{"qid": "test2975", "pid": "8203176", "query": "a 58-story skyscraper in san francisco is tilting and sinking", "answer": "Millennium Tower", "passage": "\"Millennium Tower (San Francisco)\"\nrejected the city's claims. Sage Engineers has been hired by Millennium Partners to provide an engineering study on the sinking problem. Some experts have prognosticated that the cost to fix the tilt could exceed the liability insurance held by Millennium Partners and the building's various construction vendors. If the TJPA is found to be at fault, San Francisco taxpayers could end up paying for the repairs. , a city inspection has found that the building is still safe to occupy, though there has been damage to the foundation and electrical system. In March 2017, the homeowners association filed suit against"} +{"qid": "test2975", "pid": "9162580", "query": "a 58-story skyscraper in san francisco is tilting and sinking", "answer": "Millennium Tower", "passage": "\"555 Mission Street\"\n555 Mission Street 555 Mission Street is a 33 story, office tower in the South of Market area of San Francisco, California. Construction of the tower began in 2006 and the tower was finished on September 18, 2008. It was the tallest office building constructed in San Francisco in the 2000s, and is the 25th tallest building in San Francisco. The building is the part of a new generation of skyscrapers in San Francisco's downtown built on Mission Street since 2000, including The Paramount, the St. Regis Museum Tower, Millennium Tower, 101 Second Street, and JP MorganChase Building. The tower"} +{"qid": "test2976", "pid": "17723941", "query": "when was the first season of when calls the heart", "answer": "2014", "passage": "\"2014 Heart of Dallas Bowl (January)\"\nwas also their first New Year's Day bowl game since the 1948 Salad Bowl (when they were known as North Texas State Teachers College) saw them lose to the Nevada Wolf Pack by a score of 13–6. In a year that saw UNLV achieve its first winning season since the turn of the millennium and the rightful return of the Fremont Cannon to Las Vegas, the Rebels accepted an invitation to the Heart of Dallas Bowl after finishing 7–5 overall and 5–3 in Mountain West Conference Play. It was their first bowl eligible season since 2000 when they played in"} +{"qid": "test2976", "pid": "14247989", "query": "when was the first season of when calls the heart", "answer": "2014", "passage": "\"Danny Wilson (footballer, born 1991)\"\nseason at Hearts, Wilson stated he was looking forward to playing in the Scottish Championship, and he scored the club's first goal of the season in the Championship against his former club Rangers which he refused to celebrate. Hearts went on to win 2–1. Wilson was soon on the sidelines when he strained his hamstring. Wilson made his return against Queen of the South and scored his second goal of the season, as well as providing two assists in a 4–1 win. Wilson captained Hearts through the 2014/15 season as they won the Championship and gained promotion to the Premiership."} +{"qid": "test2977", "pid": "3139163", "query": "who said one man's vulgarity is another's lyric", "answer": "Justice Harlan", "passage": "\"John Marshall Harlan (born 1899)\"\nthe majority opinion in \"\"Cohen v. California\"\", holding that wearing a jacket emblazoned with the words \"\"Fuck the Draft\"\" was speech protected by the First Amendment. His opinion was later described by constitutional law expert Professor Yale Kamisar as one of the greatest ever written on freedom of expression. In the \"\"Cohen\"\" opinion, Harlan famously wrote \"\"one man's vulgarity is another's lyric,\"\" a quote that was later denounced by Robert Bork as \"\"moral relativism\"\". Justice Harlan is credited for the establishing that the First Amendment protects the freedom of association. In \"\"NAACP v. Alabama\"\", Justice Harlan delivered the opinion of"} +{"qid": "test2977", "pid": "3172991", "query": "who said one man's vulgarity is another's lyric", "answer": "Justice Harlan", "passage": "\"Symbolic speech\"\noffensive conduct.\"\" The Court voted 5–4 in favor of Cohen. Justice Harlan wrote \"\"[A]bsent a more particularized and compelling reason for its actions, the State may not, consistently with the First and Fourteenth Amendments, make the simple public display of this single four-letter expletive a criminal offense.\"\" In the court's opinion, Harlan also penned the now famous line \"\"one man's vulgarity is another's lyric\"\". Symbolic speech Symbolic speech is a legal term in United States law used to describe actions that purposefully and discernibly convey a particular message or statement to those viewing it. Symbolic speech is recognized as being"} +{"qid": "test2978", "pid": "16008311", "query": "what football player is called the honey badger", "answer": "Tyrann Devine Mathieu", "passage": "\"Tyrann Mathieu\"\nTyrann Mathieu Tyrann Devine Mathieu (; born May 13, 1992) is an American football safety for the Houston Texans of the National Football League (NFL). He played college football for Louisiana State University (LSU). In college, he developed a reputation for causing turnovers, setting a Southeastern Conference (SEC) record with 11 career forced fumbles and earning the nickname, \"\"Honey Badger\"\". In his sophomore season, he was recognized as a consensus All-American, won the Chuck Bednarik Award as the best defensive player in college football, and was a finalist for the Heisman Trophy. Mathieu was dismissed from the LSU football program"} +{"qid": "test2979", "pid": "8109943", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Perry Mason (TV series)\"\nfull 60-minute episodes on its website from the first and second seasons for viewing. A 2014 article in \"\"The Atlantic\"\" that examined how Netflix categorized nearly 77,000 different personalized genres found that \"\"Perry Mason\"\" star Raymond Burr was rated as the favorite actor by Netflix users. Barbara Hale was rated seventh. Christian Nyby II, the director of many of the television movies and whose father directed many episodes of the TV series, led the list of directors. Todd Yellin, vice president of product innovation for Netflix and the person who designed the system, was at a loss to explain what"} +{"qid": "test2979", "pid": "18533007", "query": "how many episodes of the killing on netflix", "answer": "six", "passage": "\"Luke Cage (TV series)\"\nwould be ordered at that point. That September, the writers room was put on hold so Netflix and Marvel could plan how to adjust the season from the expected 13 episodes to a shorter 10-episode run. During the week of October 15, detailed scripts for the first half of those 10 episodes were delivered to Netflix and Marvel, incorporating ideas that had been plotted out for six months and notes received from Netflix and Marvel executives. Some of the executives had issues with these scripts, despite featuring many of the notes they asked to be included, with the creative differences"} +{"qid": "test2979", "pid": "17845400", "query": "how many episodes of the killing on netflix", "answer": "six", "passage": "\"The Killing (season 4)\"\nit for a third, ultimately cancelling it again after the third season in September 2013. However, in November 2013, Netflix, partnering with Fox Television Studios (the production company for \"\"The Killing\"\"), announced it had picked up the series for a fourth and final season consisting of six episodes. Series developer and executive producer Veena Sud returned as showrunner, with Dawn Prestwich and Nicole Yorkin returning as writers and executive producers. Because they are airing on Netflix, episodes in the fourth season have a longer running time of approximately 55–59 minutes compared to 43 minutes when the series aired on AMC"} +{"qid": "test2979", "pid": "17845403", "query": "how many episodes of the killing on netflix", "answer": "six", "passage": "\"The Killing (season 4)\"\n18 reviews. The website consensus reads: \"\"While its characters still intrigue and its atmosphere remains absorbingly dark, \"\"The Killing\"\" succumbs to silliness in its fourth season, straying into distractingly overwrought territory\"\". The fourth season of \"\"The Killing\"\" was released on DVD on August 4, 2015, exclusively through Amazon's CreateSpace manufacture-on-demand program. The Killing (season 4) The fourth and final season of the American crime drama television series \"\"The Killing\"\" consists of six episodes and was released on Netflix on August 1, 2014. Netflix picked up the series after it was canceled by AMC in 2013. The season features detectives Sarah"} +{"qid": "test2979", "pid": "19489385", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Prison Break (season 5)\"\nCEO Dana Walden herself stated that \"\"Prison Break\"\" has performed particularly well internationally and on SVOD platforms such as Netflix. Walden added that: \"\"a logical and believable explanation to why the characters are alive and still moving around the world [...]\"\" Walden said. \"\"The brothers and some of the iconic characters will be back, and it will address some questions that were set up at the end of the series for a new audience.\"\" On January 15, 2016, Fox officially ordered the revival to series, with the episode order revised to nine episodes, though Fox declined to announce how many"} +{"qid": "test2979", "pid": "17845399", "query": "how many episodes of the killing on netflix", "answer": "six", "passage": "\"The Killing (season 4)\"\nThe Killing (season 4) The fourth and final season of the American crime drama television series \"\"The Killing\"\" consists of six episodes and was released on Netflix on August 1, 2014. Netflix picked up the series after it was canceled by AMC in 2013. The season features detectives Sarah Linden and Stephen Holder handling the fallout of their actions from the previous season while investigating the murder of a family whose only survivor is a member of an all-boys military academy. AMC, the network which broadcast the first three seasons, canceled the series after its second season, and revived"} +{"qid": "test2979", "pid": "18753828", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Daredevil (season 2)\"\nand showing how the latter two affect Murdock's life. The first two episodes of the season premiered in Paris on March 7, 2016, with the full season of 13 episodes released on Netflix on March 18. Critics praised the introduction of Castle and Natchios, as well as Bernthal's performance in particular, the season's action, and storylines. However, many missed the presence of Vondie Curtis-Hall's Ben Urich from season one, and D'Onofrio's Wilson Fisk during the first half of season two. The series was renewed for a third season in July 2016. When asked about the future of the series"} +{"qid": "test2979", "pid": "14386436", "query": "how many episodes of the killing on netflix", "answer": "six", "passage": "\"The Killing (Danish TV series)\"\nreturn for sharing any associated production costs with Netflix. The original US production team are expected to return. A fourth season, consisting of six episodes, was produced by and is available on Netflix. On 8 April 2011, Sofie Gråbøl, the star of the Danish series, was interviewed on the BBC Radio 4 programme \"\"Woman's Hour\"\", when she explained the American remake was necessary because Americans \"\"for some reason cannot read subtitles, or they don't want to.\"\" Gråbøl herself has made a guest appearance in one episode of the American show playing a minor role. A novelization based on the first"} +{"qid": "test2979", "pid": "20312572", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Black Museum (Black Mirror)\"\nseries 4 of \"\"Black Mirror\"\". The first trailer for the series was released by Netflix on 25 August 2017, and contained the six episode titles. Beginning on 24 November 2017, Netflix published a series of posters and trailers for the fourth series of the show, referred to as the \"\"13 Days of \"\"Black Mirror\"\"\"\". On December 6, Netflix published a trailer featuring an amalgamation of scenes from the fourth series, which announced that the series would be released on 29 December. \"\"Black Museum\"\" includes Easter egg references back to each previous \"\"Black Mirror\"\" episode, according to director Colm McCarthy; many"} +{"qid": "test2979", "pid": "19740987", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Nosedive (Black Mirror)\"\nin September 2015 Netflix commissioned the series for 12 episodes (split into two series of six episodes), and in March 2016 it outbid Channel 4 for the rights to distributing the third series, with a bid of $40 million. Due to its move to Netflix, the show had a larger budget than in previous series, which one critic suggests is responsible for the \"\"impressive line-up\"\" that was noted by many reviewers. Another critic called this episode the show's \"\"most ambitious yet\"\"; due to its larger episode order, series 3 was also able to vary its genre and tone more than"} +{"qid": "test2979", "pid": "19231812", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Splatter (web series)\"\nSplatter (web series) Splatter is a 2009 web series directed by Joe Dante produced by Roger Corman and starring Corey Feldman. It was created for Netflix. The show aired over 3 episodes: 29 October, 6 November and 13 November. Rock star Johnny Splatter kills himself on camera. His family and friends are called to his house for a will reading. Audiences would get to vote which character lived and died. Netflix approached Roger Corman with the project. They called me and said ‘Here’s what we’d like to do: three 10-to-15-minute segments of a horror story in which somebody is killed"} +{"qid": "test2979", "pid": "20312459", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Arkangel (Black Mirror)\"\nMirror\"\" episodes \"\"The Entire History of You\"\" and \"\"Be Right Back\"\", as each episode is based on an existing technology, and plausibly demonstrates how the technology could go wrong in the future. Whilst series one and two of \"\"Black Mirror\"\" were shown on Channel 4 in the UK, in September 2015 Netflix commissioned the series for 12 episodes, and in March 2016 it outbid Channel 4 for the rights to distributing the third series, with a bid of $40 million. The 12 episode order was divided into two series of six episodes each. This was the first episode of \"\"Black"} +{"qid": "test2979", "pid": "358171", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Star Trek: The Next Generation\"\nsold 95,000 units in its launch week in 2012. In addition to the , the HD format was sold to many online streaming TV providers such as Netflix. The Netflix version included some additional special effect changes. The Blu-ray sets include many special features and videos, such as a 1988 episode of \"\"Reading Rainbow\"\" where Levar Burton (who plays Chief Engineer Geordi La Forge on \"\"TNG\"\") documents the making of a \"\"Star Trek: The Next Generation\"\" episode. In June 2016 a 41-disc set was released with over 8,000 minutes of \"\"TNG\"\"-content, including the entire show in 1080p (4:3). For a"} +{"qid": "test2979", "pid": "20312534", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Metalhead (Black Mirror)\"\nthe UK, Netflix commissioned the series for 12 episodes (split into two series of six episodes) in September 2015 with a bid of $40 million, and in March 2016, Netflix outbid Channel 4 for the right to distribute the series in the UK. The six episodes in series four were released on Netflix simultaneously on 29 December 2017. \"\"Metalhead\"\" is listed as the fifth episode, though as each episode is standalone the episodes can be watched in any order. \"\"Metalhead\"\" is the shortest episode of \"\"Black Mirror\"\", with a length of 41 minutes. The episode was written by series creator"} +{"qid": "test2979", "pid": "18695864", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "\"Melinda (Agents of S.H.I.E.L.D.)\"\nchosen to create the teaser posters, based on their previous work and how it connected to the themes and emotion of the intended episode. \"\"Melinda\"\"s poster, by Jenny Frison, mirrored the focus of the episode by prominently featuring an image of May, highlighting her backstory and why she is called \"\"the Cavalry\"\". The episode began streaming on Netflix on June 11, 2015, and will be released along with the rest of the second season on September 18, 2015, on Blu-ray and DVD. In the United States the episode received a 1.6/5 percent share among adults between the ages of 18"} +{"qid": "test2979", "pid": "19252046", "query": "how many episodes of the killing on netflix", "answer": "6", "passage": "3%\nsucceeding. The first season, consisting of 8 episodes, became available on Netflix worldwide on November 25, 2016. In December 2016, Netflix renewed the series for a second season, which consists of 10 episodes and was released on April 27, 2018. On June 4, 2018, the series was renewed for a third season, which is scheduled to be released in 2019. Creator and writer Pedro Aguilera developed \"\"3%\"\" from a 2009 independent pilot episode. Netflix gave the series an 8-episode order for the first season. It is the first Portuguese-language Netflix original series and the second non-English production, after the Spanish-language"} +{"qid": "test298", "pid": "2227209", "query": "what is the name of the hyena in lion king", "answer": "Banzai", "passage": "\"Timon & Pumbaa (TV series)\"\nDisney animated film \"\"The Lion King\"\" and its sequels. Set after the events of the original film, the series involves the characters having misadventures in the jungle of Africa, as well as across the globe in various settings such as Canada, Britain, the United States and Spain. While the show focuses primarily on Timon and Pumbaa, it has four episodes centering respectively on Rafiki and the hyena trio Shenzi, Banzai, and Ed, which are under the names \"\"Rafiki Fables\"\" and \"\"The Laughing Hyenas\"\", and two episodes centering on Zazu. The following characters from \"\"The Lion King\"\" appear in this series:"} +{"qid": "test2980", "pid": "9788774", "query": "from whose perspective is the story of all quiet on the western front told", "answer": "Paul Baumer", "passage": "\"All Quiet on the Western Front (1979 film)\"\nAll Quiet on the Western Front (1979 film) All Quiet on the Western Front is a television film produced by ITC Entertainment, released on November 14, 1979, starring Richard Thomas and Ernest Borgnine. It is based on the book of the same name by Erich Maria Remarque. The 1979 film was directed by Delbert Mann. It has its share of tension and death, and in the spirit of the novel, manages to convey a sense of desolation, hardship and waste. Late in the film, the turmoil and wretchedness of the main character, Paul Baumer, is manifested in his extreme disassociation"} +{"qid": "test2981", "pid": "12028747", "query": "who was the person who escaped from alcatraz", "answer": "Clarence Anglin", "passage": "\"Alcatraz Island in popular culture\"\nE. Gaddis and then adapted into a film in 1962, with Burt Lancaster playing the lead role. The 1995 film \"\"Murder in the First\"\" depicts a man who spends three years in solitary confinement at the prison. One of the prisoners, Kyle Oberholzer, was charged with rape, murder and fornicating. Many films and television series have exploited Alcatraz Island's reputation as a prison from which it was almost impossible to escape. Don Siegel's 1979 thriller \"\"Escape from Alcatraz\"\" chronicles the story of Frank Morris and brothers John and Clarence Anglin, who escaped from Alcatraz in 1962, although it is not"} +{"qid": "test2981", "pid": "16760682", "query": "who was the person who escaped from alcatraz", "answer": "John Anglin", "passage": "\"Alcatraz Federal Penitentiary\"\nRobert Franklin Stroud (the \"\"Birdman of Alcatraz\"\"), George \"\"Machine Gun\"\" Kelly, Bumpy Johnson, Rafael Cancel Miranda, Mickey Cohen, Arthur R. \"\"Doc\"\" Barker, Whitey Bulger, and Alvin \"\"Creepy\"\" Karpis (who served more time at Alcatraz than any other inmate). It also provided housing for the Bureau of Prisons' staff and their families. A total of 36 prisoners made 14 escape attempts during the 29 years of the prison's existence, the most notable of which were the violent escape attempt of May 1946 known as the \"\"Battle of Alcatraz\"\", and the arguably successful \"\"Escape from Alcatraz\"\" by Frank Morris, John Anglin, and"} +{"qid": "test2981", "pid": "4878913", "query": "who was the person who escaped from alcatraz", "answer": "Frank Morris", "passage": "\"Escape from Alcatraz (film)\"\nAlcatraz\"\" marks the fifth and final collaboration between Siegel and Eastwood, following \"\"Coogan's Bluff\"\" (1968), \"\"Two Mules for Sister Sara\"\" (1970), \"\"The Beguiled\"\" (1971) and \"\"Dirty Harry\"\" (1971). On January 18, 1960, Frank Morris (Clint Eastwood) arrives at the maximum security prison Alcatraz. Soon after arriving, he is sent in to meet the warden (Patrick McGoohan), who curtly informs him that no inmate has ever successfully escaped from Alcatraz. Among the inmates, Morris makes acquaintances with the eccentric Litmus, (Frank Ronzio) who is fond of desserts, English (Paul Benjamin), a black inmate serving two life sentences for killing two white"} +{"qid": "test2981", "pid": "14343510", "query": "who was the person who escaped from alcatraz", "answer": "Clarence Anglin", "passage": "\"Clint Eastwood in the 1970s\"\nas, \"\"plotless junk heap of moronic gags, sour romance and fatuous fisticuffs. In 1979, Eastwood starred in the fact-based movie \"\"Escape from Alcatraz\"\", based on the true story of Frank Lee Morris, who, along with John and Clarence Anglin escaped from the notorious Alcatraz prison in 1962. The inmates dug through the walls with their spoons, made papier-mache dummies as decoys and made a raft out of raincoats and escaped across San Francisco Bay, never to be seen again. The script to the film was written by Richard Tuggle, based on the 1963 non-fiction account by J. Campbell Bruce. Eastwood"} +{"qid": "test2981", "pid": "12739930", "query": "who was the person who escaped from alcatraz", "answer": "Frank Morris", "passage": "\"June 1962 Alcatraz escape attempt\"\nMarshal Dyke exhumed the remains of \"\"John Bones Doe\"\", and DNA from the bones was compared to a DNA sample from one of Morris's paternal relatives. The DNA did not match and so the bones were not Morris's. That same year, an 89-year-old man named Bud Morris, who said he was a cousin of Frank Morris, claimed that on \"\"eight or nine\"\" occasions prior to the escape he delivered envelopes of money to Alcatraz guards, presumably as bribes. He further claimed to have met his cousin face to face in a San Diego park shortly after the escape. His daughter,"} +{"qid": "test2981", "pid": "4878912", "query": "who was the person who escaped from alcatraz", "answer": "Clarence Anglin", "passage": "\"Escape from Alcatraz (film)\"\nEscape from Alcatraz (film) Escape from Alcatraz is a 1979 American prison thriller film directed by Don Siegel. It is an adaptation of the 1963 non-fiction book of the same name by J. Campbell Bruce and dramatizes the 1962 prisoner escape from the maximum security prison on Alcatraz Island. The film stars Clint Eastwood, Jack Thibeau and Fred Ward as prisoners Frank Morris, Clarence Anglin and John Anglin. Allen West was played by Larry Hankin; his character's name was changed to Charley Butts. Patrick McGoohan portrays the suspicious, vindictive warden and Danny Glover appears in his film debut. \"\"Escape from"} +{"qid": "test2981", "pid": "16750026", "query": "who was the person who escaped from alcatraz", "answer": "Frank Morris", "passage": "\"Alcatraz Library\"\nFederal Bureau of Prisons booklet in 1960: \"\"These men read more serious literature than does the ordinary person in the community. Philosophers such as Kant, Schopenhauer, Hegel, etc. are especially popular.\"\" Other authors include Jack London, Sinclair Lewis, Washington Irving, Zane Grey, Hamilton Garland, Alexandre Dumas, Daniel Defoe, Joseph Conrad, Cervantes and magazines such as \"\"Adventure to Time\"\", \"\"Better Homes and Gardens\"\" and \"\"Library Digest\"\". A law library was later added to A-Block. A library scene in Alcatraz appeared in the 1979 Clint Eastwood film \"\"Escape from Alcatraz\"\" in which Eastwood's character of Frank Morris converses with another inmate. Alcatraz"} +{"qid": "test2981", "pid": "12739941", "query": "who was the person who escaped from alcatraz", "answer": "Clarence Anglin", "passage": "\"June 1962 Alcatraz escape attempt\"\nfor a map to a safety deposit box key. June 1962 Alcatraz escape attempt The June 1962 Alcatraz escape attempt was an escape attempt from Alcatraz Federal Penitentiary successfully carried out by inmates Frank Morris, John Anglin, and Clarence Anglin. Behind the prisoners' cells in Cell Block B (where the escapees were interned) was an unguarded wide utility corridor. The prisoners chiselled away the moisture-damaged concrete from around an air vent leading to this corridor, using tools such as a metal spoon soldered with silver from a dime and an electric drill improvised from a stolen vacuum cleaner motor. The"} +{"qid": "test2982", "pid": "12571461", "query": "where does trick or treat for unicef money go", "answer": "UNICEF's global programing", "passage": "\"Trick-or-Treat for UNICEF\"\n1969, 3.5 million American children were trick-or-treating for donations. Children (and adults) in the U.S. have collected more than $175 million for Trick-or-Treat for UNICEF. Donations to Trick-or-Treat for UNICEF support UNICEF's global programing, but in 2005, half of the proceeds were targeted to a domestic cause, aiding victims of Hurricane Katrina. In 2008, the U.S. Fund for UNICEF introduced mobile phone text message donations as well as a MySpace and Facebook page. In 2014, the U.S. Fund for UNICEF partnered with Crowdrise to expand the campaign's online presence, allowing participants to create personal fundraising web pages in addition to"} +{"qid": "test2985", "pid": "5753933", "query": "when did i'm coming out come out", "answer": "August 22, 1980", "passage": "\"I'm Coming Out\"\nI'm Coming Out \"\"I'm Coming Out\"\" is a song recorded by American singer Diana Ross. It was written and produced by Chic members Bernard Edwards and Nile Rodgers, and released in August 22, 1980 as the second single from Ross' self-titled tenth album \"\"Diana\"\" (1980). In 1979, Ross commissioned Chic founders Nile Rodgers and Bernard Edwards to create material for a new album after taking her daughters to see the band in concert, following the success of Ross's final Ashford & Simpson-composed and produced LP,\"\" The Boss. \"\"Rodgers got the idea for \"\"I'm Coming Out\"\" after noticing three different drag"} +{"qid": "test2985", "pid": "5753941", "query": "when did i'm coming out come out", "answer": "August 22, 1980", "passage": "\"I'm Coming Out\"\nthe Loren Dawson remix. The original single version (which is similar to the original) can be found on both CD singles and the original motion picture soundtrack to \"\"Maid in Manhattan\"\". Ross' version appears on the film's soundtrack album as well. A music video was produced to promote the single. I'm Coming Out \"\"I'm Coming Out\"\" is a song recorded by American singer Diana Ross. It was written and produced by Chic members Bernard Edwards and Nile Rodgers, and released in August 22, 1980 as the second single from Ross' self-titled tenth album \"\"Diana\"\" (1980). In 1979, Ross commissioned Chic"} +{"qid": "test2986", "pid": "16019056", "query": "what type of bridge is the charles bridge", "answer": "Stone", "passage": "\"Bridge castle\"\nby a stone arch bridge. A typical example of a fortified bridge is the Pont Valentré near Cahors (Midi-Pyrénées) in Southern France. The site is almost totally preserved apart from the eastern barbican (fortified gate) which was removed in the 19th century. In Germany and Central Europe only ruins of bridge fortifications have generally survived. Usually there are only the individual gate towers, for example as on the Stone Bridge in Regensburg and the Charles Bridge in Prague. G. Ulrich Großmann: \"\"Burgen in Europa\"\". Regensburg, 2005, p. 220- 223. Bridge castle A bridge castle () is a type of castle"} +{"qid": "test2986", "pid": "2782004", "query": "what type of bridge is the charles bridge", "answer": "Stone", "passage": "\"Charles Bridge\"\nCharles Bridge Charles Bridge ( ) is a historic bridge that crosses the Vltava river in Prague, Czech Republic. Its construction started in 1357 under the auspices of King Charles IV, and finished in the beginning of the 15th century. The bridge replaced the old Judith Bridge built 1158–1172 that had been badly damaged by a flood in 1342. This new bridge was originally called Stone Bridge (\"\"Kamenný most\"\") or Prague Bridge (\"\"Pražský most\"\") but has been \"\"Charles Bridge\"\" since 1870. As the only means of crossing the river Vltava (Moldau) until 1841, Charles Bridge was the most important connection"} +{"qid": "test2986", "pid": "2782017", "query": "what type of bridge is the charles bridge", "answer": "Stone", "passage": "\"Charles Bridge\"\nof the statues have been systematically replaced by replicas, and the originals have been exhibited in the Lapidarium of the National Museum. Charles Bridge Charles Bridge ( ) is a historic bridge that crosses the Vltava river in Prague, Czech Republic. Its construction started in 1357 under the auspices of King Charles IV, and finished in the beginning of the 15th century. The bridge replaced the old Judith Bridge built 1158–1172 that had been badly damaged by a flood in 1342. This new bridge was originally called Stone Bridge (\"\"Kamenný most\"\") or Prague Bridge (\"\"Pražský most\"\") but has been \"\"Charles"} +{"qid": "test2987", "pid": "604075", "query": "who makes the important government decisions in an autocracy", "answer": "one person", "passage": "Autocracy\nin mind, also making an example of an autocracy ruled by a political party rather than solely one man. Soviet Union: During Joseph Stalin's rule. Spain: During Francisco Franco's rule. Autocracy An autocracy is a system of government in which supreme power is concentrated in the hands of one person, whose decisions are subject to neither external legal restraints nor regularized mechanisms of popular control (except perhaps for the implicit threat of a coup d'état or mass insurrection). Absolute monarchies (such as Saudi Arabia, the United Arab Emirates, Oman, Brunei and Swaziland) and dictatorships (such as Turkmenistan and North Korea)"} +{"qid": "test2987", "pid": "604059", "query": "who makes the important government decisions in an autocracy", "answer": "one person", "passage": "Autocracy\nAutocracy An autocracy is a system of government in which supreme power is concentrated in the hands of one person, whose decisions are subject to neither external legal restraints nor regularized mechanisms of popular control (except perhaps for the implicit threat of a coup d'état or mass insurrection). Absolute monarchies (such as Saudi Arabia, the United Arab Emirates, Oman, Brunei and Swaziland) and dictatorships (such as Turkmenistan and North Korea) are the main modern-day forms of autocracy. In earlier times, the term \"\"autocrat\"\" was coined as a favorable feature of the ruler, having some connection to the concept of \"\"lack"} +{"qid": "test2987", "pid": "156516", "query": "who makes the important government decisions in an autocracy", "answer": "one person", "passage": "Government\nAristotle's Politics. In his book Leviathan, Thomas Hobbes expands on this classification. An autocracy is a system of government in which supreme power is concentrated in the hands of one person, whose decisions are subject to neither external legal restraints nor regularized mechanisms of popular control (except perhaps for the implicit threat of a coup d'état or mass insurrection). A despotism is a government ruled by a single entity with absolute power, whose decisions are subject to neither external legal restraints nor regular mechanisms of popular control (except perhaps for implicit threat). That entity may be an individual, as in"} +{"qid": "test2988", "pid": "13935009", "query": "what was the main characteristic of post-world war ii american society", "answer": "strong economic growth", "passage": "\"Post–World War II economic expansion\"\nprices (due to the 1973 oil crisis) hastened the transition to the post-industrial economy, and a multitude of social problems have since emerged. During the 1970s steel crisis, demand for steel declined, and the Western world faced competition from newly industrialized countries. This was especially harsh for mining and steel districts such as the North American Rust Belt and the West German Ruhr area. Post–World War II economic expansion The post–World War II economic expansion, also known as the postwar economic boom, the long boom, was a period of strong economic growth beginning after World War II and ending with"} +{"qid": "test299", "pid": "5109323", "query": "where does the white witch live in narnia", "answer": "her castle", "passage": "\"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe\"\naccidentally breaking a window, the four siblings retreat to the wardrobe and enter Narnia. They discover the Witch has taken Mr. Tumnus, and they meet Mr. and Mrs. Beaver, who tell them about Aslan. According to the beavers, Aslan intends to take control of Narnia from the Witch. The four must help Aslan; it has been prophesied that if two sons of Adam and two daughters of Eve sit in the four thrones, the White Witch's reign will end. Edmund sneaks off to visit the Witch. When he arrives at her castle, she is furious he has not delivered his"} +{"qid": "test2991", "pid": "9530364", "query": "who did dwight howard play for last year", "answer": "Atlanta Hawks", "passage": "\"Josh Smith\"\nJosh Smith Joshua Smith (born December 5, 1985) is an American professional basketball player who last played for the New Orleans Pelicans of the National Basketball Association (NBA). Entering the NBA straight out of high school, Smith played nine seasons with the Atlanta Hawks before playing for the Detroit Pistons, Houston Rockets and Los Angeles Clippers between 2013 and 2016. He is sometimes referred to by his nickname \"\"J-Smoove\"\". Smith attended John McEachern High in Powder Springs, Georgia. During the summer before his senior year, he played alongside future NBA players Randolph Morris and Dwight Howard on the Atlanta Celtics"} +{"qid": "test2992", "pid": "20609138", "query": "who lasted the longest in the royal rumble", "answer": "Rey Mysterio", "passage": "\"WWE Greatest Royal Rumble\"\nAs Reigns tried to escape through the door, Heyman pushed the door into Reigns, allowing Lesnar to execute an F5 on Reigns for a near-fall. In the end, Reigns performed a Spear through the cage wall on Lesnar. Despite Reigns touching the floor first, the referee awarded the win to Lesnar, thereby retaining the Universal Championship. Daniel Bryan and Dolph Ziggler began the 50-man Royal Rumble match as the first two entrants. Bryan survived until the final three, beating Rey Mysterio for the longest time spent in a single Royal Rumble match of all time at an hour and sixteen"} +{"qid": "test2993", "pid": "2258417", "query": "what is the largest man made lake in the us", "answer": "Lake Oahe", "passage": "\"Lake Sakakawea\"\nLake Sakakawea Lake Sakakawea is a large reservoir in the north central United States, impounded by Garrison Dam, a U.S. Army Corps of Engineers dam located in the Missouri River basin in central North Dakota. Named for the Shoshone-Hidatsa woman Sakakawea, it is the largest man-made lake in the State of North Dakota, the second largest in the United States by area after Lake Oahe, and the third largest in the United States by volume, after Lake Mead and Lake Powell. The lake is located about from the state capital of Bismarck; the distance by the Missouri River is about"} +{"qid": "test2994", "pid": "17248670", "query": "gabbar is back is a remake of which telugu movie", "answer": "Tagore", "passage": "\"Gabbar Is Back\"\nGabbar Is Back Gabbar Is Back, also known as Gabbar is a 2015 Indian vigilante action film directed by Krish and produced by Sanjay Leela Bhansali and Viacom 18 Motion Pictures. Featuring Akshay Kumar and Shruti Haasan in the lead roles, the film is a remake of the 2002 Tamil film \"\"Ramanaa\"\", directed by A. R. Murugadoss, which was later remade in Telugu as Tagore in 2003 and in Kannada as Vishnu Sena in 2005. Suman Talwar, Sunil Grover and Jaideep Ahlawat appear in supporting roles with Kareena Kapoor in a cameo. The movie has garnered a good box office"} +{"qid": "test2994", "pid": "8221788", "query": "gabbar is back is a remake of which telugu movie", "answer": "Tagore", "passage": "\"Tagore (film)\"\nTagore (film) Tagore is a 2003 Telugu crime-drama film directed by V. V. Vinayak. Chiranjeevi, Jyothika and Shriya Saran play the lead roles. The film was a remake of the 2002 Tamil film \"\"Ramanaa\"\" directed by A. R. Murugadoss with Vijayakanth in the lead. It was screened at the International Indian Film Academy Awards, along with \"\"Pokiri\"\". \"\"Tagore\"\" was a blockbuster and was the highest grossing south indian film after Indra. This film is considered to be the biggest hit in Chiranjeevi's career. It was remade in Hindi in 2015 as Gabbar is Back starring Akshay Kumar, Kareena Kapoor and"} +{"qid": "test2995", "pid": "19071786", "query": "who was running as vice president in 1984", "answer": "Ferraro", "passage": "\"Democratic Party vice presidential candidate selection, 1984\"\nDemocratic Party vice presidential candidate selection, 1984 This article lists those who were potential candidates for the Democratic nomination for Vice President of the United States in the 1984 election. Former Vice President Walter Mondale won the 1984 Democratic nomination for President of the United States, and chose New York Representative Geraldine Ferraro as his running mate. Ferraro was the first woman to be a part of a national ticket for a major party. Mondale chose Ferraro in hopes of energizing the base and winning the votes of women, but also because he viewed her as a solid legislator who"} +{"qid": "test2995", "pid": "17706491", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Texas\"\n1984 United States presidential election in Texas The 1984 United States presidential election in Texas took place on November 6, 1984. All fifty states and the District of Columbia, were part of the 1984 United States presidential election. Texas voters chose twenty-nine electors to the Electoral College, which selected the president and vice president of the United States. Texas was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with and incumbent Vice President and former C.I.A. Director George H. W. Bush"} +{"qid": "test2995", "pid": "17707374", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Tennessee\"\n1984 United States presidential election in Tennessee The 1984 United States presidential election in Tennessee took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Tennessee voters chose 11 electors to the Electoral College, which selected the president and vice president of the United States. Tennessee was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17674095", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Oregon\"\n1984 United States presidential election in Oregon The 1984 United States presidential election in Oregon took place on November 6, 1984. All fifty states and the District of Columbia were part of the 1984 United States presidential election. Oregon voters chose seven electors to the Electoral College, which selected the president and vice president of the United States. Oregon was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17672394", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Utah\"\n1984 United States presidential election in Utah The 1984 United States presidential election in Utah took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Utah voters chose five electors to the Electoral College, which selected the president and vice president of the United States. Utah was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17674136", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Idaho\"\n1984 United States presidential election in Idaho The 1984 United States presidential election in Idaho took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Idaho voters chose 4 electors to the Electoral College, which selected the president and vice president of the United States. Idaho was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17674193", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Nevada\"\n1984 United States presidential election in Nevada The 1984 United States presidential election in Nevada took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Nevada voters chose 4 electors to the Electoral College, which selected the president and vice president of the United States. Nevada was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17674221", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Wyoming\"\n1984 United States presidential election in Wyoming The 1984 United States presidential election in Wyoming took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Wyoming voters chose 3 electors to the Electoral College, which selected the president and vice president of the United States. Wyoming was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17672436", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Arizona\"\n1984 United States presidential election in Arizona The 1984 United States presidential election in Arizona took place on November 6, 1984. All fifty states and the District of Columbia, were part of the 1984 United States presidential election. Arizona voters chose seven electors to the Electoral College, which selected the president and vice president of the United States. Arizona was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17672648", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Colorado\"\n1984 United States presidential election in Colorado The 1984 United States presidential election in Colorado took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Colorado voters chose 8 electors to the Electoral College, which selected the president and vice president of the United States. Colorado was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17707100", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Ohio\"\n1984 United States presidential election in Ohio The 1984 United States presidential election in Ohio took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Ohio voters chose 23 electors to the Electoral College, which selected the president and vice president of the United States. Ohio was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17707743", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Virginia\"\n1984 United States presidential election in Virginia The 1984 United States presidential election in Virginia took place on November 6, 1984. All fifty states and the District of Columbia, were part of the 1984 United States presidential election. Virginia voters chose twelve electors to the Electoral College, which selected the president and vice president of the United States. Virginia was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17706938", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Wisconsin\"\n1984 United States presidential election in Wisconsin The 1984 United States presidential election in Wisconsin took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Wisconsin voters chose 11 electors to the Electoral College, which selected the president and vice president of the United States. Wisconsin was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17672854", "query": "who was running as vice president in 1984", "answer": "George H. W. Bush", "passage": "\"1984 United States presidential election in Kansas\"\n1984 United States presidential election in Kansas The 1984 United States presidential election in Kansas took place on November 6, 1984. All 50 states and the District of Columbia, were part of the 1984 United States presidential election. Kansas voters chose 7 electors to the Electoral College, which selected the president and vice president of the United States. Kansas was won by incumbent United States President Ronald Reagan of California, who was running against former Vice President Walter Mondale of Minnesota. Reagan ran for a second time with incumbent Vice President and former C.I.A. Director George H. W. Bush of"} +{"qid": "test2995", "pid": "17453282", "query": "who was running as vice president in 1984", "answer": "Ferraro", "passage": "\"1984 United States presidential election in Massachusetts\"\n1984 United States presidential election in Massachusetts The 1984 United States presidential election in Massachusetts took place on November 6, 1984, as part of the 1984 United States presidential election, which was held throughout all 50 states and D.C. Voters chose 13 representatives, or electors to the Electoral College, who voted for president and vice president. Massachusetts narrowly voted for incumbent Republican President Ronald Reagan of California over his Democratic challenger, former Vice President Walter Mondale of Minnesota. Reagan ran with incumbent Vice President George H.W. Bush of Texas, while Mondale's running mate was Congresswoman Geraldine Ferraro of New York."} +{"qid": "test2995", "pid": "17450233", "query": "who was running as vice president in 1984", "answer": "Ferraro", "passage": "\"1984 United States presidential election in New Hampshire\"\n1984 United States presidential election in New Hampshire The 1984 United States presidential election in New Hampshire took place on November 6, 1984, as part of the 1984 United States presidential election, which was held throughout all 50 states and D.C. Voters chose 4 representatives, or electors to the Electoral College, who voted for president and vice president. New Hampshire overwhelmingly voted for incumbent Republican President Ronald Reagan of California over his Democratic challenger, former Vice President Walter Mondale of Minnesota. Reagan ran with incumbent Vice President George H.W. Bush of Texas, while Mondale's running mate was Congresswoman Geraldine Ferraro"} +{"qid": "test2996", "pid": "664193", "query": "where is the largest salt mine in the us", "answer": "Western New York", "passage": "\"Livingston County, New York\"\nSalt mines opened in the towns of Leicester (Cuylerville), Livonia, Mount Morris, and York (Retsof). The Retsof mine became the largest salt-producing mine in the United States and the second largest in the world. The industry was a major employer throughout most of the 20th century until the mine collapsed and flooded in 1994. American Rock Salt opened a new mine in 1997 at Hampton Corners in the Town of Groveland and soon afterwards became the largest operating salt mine in the U.S. Once the terrestrial lands of the Seneca Indians, a wide area in Western New York known as"} +{"qid": "test2997", "pid": "3314631", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Thomas J. Kelly (aerospace engineer)\"\nup with the idea of a two-stage spacecraft (ascent & descent stage), that would take two astronauts to the Moon's surface while a third member would stay in lunar orbit. Kelly had not turned 40 when Neil Armstrong took his first historic step on the Moon July 20, 1969. During the landing, ice had formed in a fuel line and became stuck. If the heat from the engine was moving up toward the frozen fuel, and got hot enough; it could detonate. Luckily for Kelly and the Grumman crew, the problem corrected itself and the crew was able to relax"} +{"qid": "test2997", "pid": "18836057", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Essex-class aircraft carrier\"\nand \"\"Princeton\"\" recovered the second crew to orbit the Moon, aboard Apollo 10, in May 1969. \"\"Hornet\"\" rejoined the program and recovered the astronauts from the first two moon landing missions, Apollo 11 in July 1969 and Apollo 12 in November. The first steps on Earth of returning astronauts Neil Armstrong, Buzz Aldrin, and Mike Collins, are marked on her hangar deck, as part of her Apollo program exhibit. The three subsequent missions utilized amphibious assault ships as support vessels; however, \"\"Ticonderoga\"\" recovered the astronauts of the last two moon missions, Apollo 16 and Apollo 17 in April and December"} +{"qid": "test2997", "pid": "10547977", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"One False Step for Mankind\"\nOne False Step for Mankind One False Step for Mankind is a board game designed by James Ernest and published by Cheapass Games in 2003. Players play the role of town mayors, seeking to become governor of California in 1849 (during the California Gold Rush). According to the game rules \"\"\"\"It's one false step for Mankind, one giant leap for you\"\".\"\" This is a clear play on astronaut Neil Armstrong's first spoken words on the surface of the moon in 1969. Through gold mining, claim-jumping, trading, farming, building cities, and constructing rockets to fly to the moon, players vie for"} +{"qid": "test2997", "pid": "12469673", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Discovery and exploration of the Solar System\"\nEarth was Yuri Gagarin, a Soviet cosmonaut who was launched in \"\"Vostok 1\"\" on April 12, 1961. The first human to walk on the surface of another Solar System body was Neil Armstrong, who stepped onto the Moon on July 21, 1969 during the \"\"Apollo 11\"\" mission; five more Moon landings occurred through 1972. The United States' reusable Space Shuttle flew 135 missions between 1981 and 2011. Two of the five shuttles were destroyed in accidents. The first orbital space station to host more than one crew was NASA's Skylab, which successfully held three crews from 1973 to 1974. True"} +{"qid": "test2997", "pid": "1271438", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Apollo 13 (film)\"\nEditing and Best Sound). In total, the film grossed over $355 million worldwide during its theatrical releases. The film was very positively received by critics. In July 1969, astronaut Jim Lovell hosts a house party where guests watch Neil Armstrong's televised first human steps on the Moon. Afterwards Lovell, who had orbited the Moon on Apollo 8, tells his wife Marilyn that he intends to return to the Moon to walk on its surface. Three months later, as Lovell conducts a VIP tour of NASA's Vertical Assembly Building, his boss Deke Slayton informs him that because of problems with Alan"} +{"qid": "test2997", "pid": "14564034", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"U.S. space exploration history on U.S. stamps\"\nthe 1960s. On September 9, 1969, the U.S. Post office issued its first airmail stamp to depict a space exploration theme, the First Man on the Moon issue. The man depicted in the space suit is Neil Armstrong taking man's first step on the moon. This issue was designed by Paul Calle. The stamp's original master die was actually flown to the moon, and a letter with the stamp canceled on the way back. The quantities issued were more than 152 million making the issue quite common, and quite popular. Some issues are missing the red color resulting in the"} +{"qid": "test2997", "pid": "3499474", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Lunar Precursor Robotic Program\"\nthe Hubble Space Telescope. The launch date, originally planned for October 2008, was shifted to Thursday from Wednesday (June 17) due to a postponement of the Saturday (June 13) launch of the Space Shuttle Endeavour, resulting from a hydrogen fuel leak. This lunar program marks the first United States mission to the Moon in over ten years. Neil Armstrong's first step on the Moon occurred July 20, 1969, and this launch was just 32 days shy of the 40th anniversary. The actual journey to the Moon will take about four days, at which time the LRO will enter a low"} +{"qid": "test2997", "pid": "4660376", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Moon landing\"\nhave landed on the Moon. This was accomplished with two US pilot-astronauts flying a Lunar Module on each of six NASA missions across a 41-month period starting on 20 July 1969 UTC, with Neil Armstrong and Buzz Aldrin on Apollo 11, and ending on 14 December 1972 UTC with Gene Cernan and Jack Schmitt on Apollo 17. Cernan was the last to step off the lunar surface. All Apollo lunar missions had a third crew member who remained on board the Command Module. The last three missions had a rover for increased mobility. In order to go to the Moon,"} +{"qid": "test2997", "pid": "3455941", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"John Gatenby Bolton\"\nto be quasars. It also helped transmit the video of the first Moon landing by Neil Armstrong. In 1962-63, under Bolton’s direction, this radio telescope played a key role in the discovery of the prototype of a family of very distant and luminous objects called quasars. Bolton later used it to pinpoint more than 8,000 extragalactic radio sources, including hundreds of quasars. In 1969 the instrument became the eye and ear of the world when it received the radio and television signals transmitted by Apollo 11 of man's first steps on the Moon. Bolton was made Commander of the Order"} +{"qid": "test2997", "pid": "19861636", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Stanley Lebar\"\nwas the head of a team of 75 engineers and technicians and more than 300 manufacturers. This black-and-white camera finally transmitted the first steps of Neil Armstrong on the Moon during the television transmission of the Moon landing in 1969. Later, Lebar also developed a color television camera for the Apollo program, as well as the cameras for the Skylab space station. For the successful development of this camera and the color television transmissions of the Apollo program, the company Westinghouse received an Emmy in the technology category, which Lebar accepted in 1970. Lebar died at the age of 84"} +{"qid": "test2997", "pid": "9081", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"Apollo 11\"\nCongressional Gold Medal, the highest civilian award in the United States. The bill was sponsored by Florida Senator Bill Nelson and Florida Representative Alan Grayson. A group of British scientists interviewed as part of the anniversary events reflected on the significance of the Moon landing: Apollo 11 Apollo 11 was the spaceflight that landed the first two people on the Moon. Commander Neil Armstrong and Lunar Module Pilot Buzz Aldrin, both American, landed the lunar module \"\"Eagle\"\" on July 20, 1969, at 20:17 UTC. Armstrong became the first person to step onto the lunar surface six hours after landing on"} +{"qid": "test2997", "pid": "11533657", "query": "who took the first steps on the moon in 1969", "answer": "Neil Armstrong", "passage": "\"OTC Satellite Earth Station Carnarvon\"\nABC a brief chance to test satellite TV communications as the satellite drifted to ignominious failure over the Indian Ocean. On 24 November 1966, test patterns for the first-ever live telecasts from Australia to England were successful. The next day, a live BBC television broadcast from a studio in London featured interviews linking UK families with their British migrant relatives standing in Robinson Street, Carnarvon. The 'sugar scoop' became famous again on 21 July 1969, the day of the Apollo 11 moon landing, relaying Neil Armstrong's first steps on the Moon from NASA's Honeysuckle Creek Tracking Station, Canberra, to Perth's"} +{"qid": "test2998", "pid": "2659903", "query": "state with highest population growth rate in india 2011", "answer": "Dadra and Nagar Haveli", "passage": "\"Dadra and Nagar Haveli\"\nhas a population of 342,853, roughly equal to the nation of Belize. This gives it a ranking of 566th in India, out of a total of 640 districts. It has a population density of , and its population growth rate over the decade from 2001 to 2011 was 55.5 percent, which is the highest percentage growth among all Indian states and union territories. Dadra and Nagar Haveli has a sex ratio of 775 females for every 1,000 males, and a literacy rate of 77.65% . Tribal groups make up a large part of the population viz 62%. The most prominent"} +{"qid": "test2998", "pid": "2990777", "query": "state with highest population growth rate in india 2011", "answer": "Meghalaya", "passage": "\"Northeast India\"\nThe literacy rates in the states of the Northeastern region, except those in Arunachal Pradesh and Assam, are higher than the national average of 74 percent. As per 2011 census, Meghalaya recorded the highest population growth of 27.8 percent among all the states of the region, higher than the national average at 17.64 percent; while Nagaland recorded the lowest in the entire country with a negative 0.5 percent. According to 2011 Census of India, the largest cities in Northeast India are Northeast India constitutes a single linguistic region within the Indian national context, with about 220 languages in multiple language"} +{"qid": "test2999", "pid": "7800101", "query": "which city is called the manchester of north india", "answer": "Ahmedabad", "passage": "\"Ahmedabad textile industry\"\nAhmedabad textile industry The textile industry of the city of Ahmedabad in the state of Gujarat in India dates back to the 19th century, when the city and the industry was established under the British raj. Textile mills employed thousands of people from across the state, and the cotton garments manufactured were exported across the world. The prosperity of the industry was the mainstay of the city's economy. It is called the Manchester of India. The Arvind Mills is a company that processes denim for jeans worldwide, it is located near the Sabarmati river; as such the water required for"} +{"qid": "test30", "pid": "13470925", "query": "panda is a national animal of which country", "answer": "China", "passage": "\"Kung Fu Panda 2\"\nset an opening-day record in the country. It earned $93.19 million in total, making it the highest-grossing animated film released in China, surpassing previous record-holder \"\"Kung Fu Panda\"\" ($26 million). It held the record until 2015, when it was surpassed by Chinese \"\"\"\". The Asian-themed film scored the largest opening weekend for an animated film in Malaysia, the Philippines, Singapore, in South Korea and Thailand. It became the highest-grossing film released in Vietnam, surpassing \"\"Avatar\"\". DreamWorks Animation has invested in creating promotional partners and building up marketing for its films. For \"\"Kung Fu Panda 2\"\", DWA has partnerships with McDonald's,"} +{"qid": "test30", "pid": "163481", "query": "panda is a national animal of which country", "answer": "China", "passage": "\"Giant panda\"\nlive longer and healthier lives. Pandas have been kept in zoos as early as the Western Han Dynasty in China, where the writer Sima Xiangru noted that the panda was the most treasured animal in the emperor's garden of exotic animals in the capital Chang'an (present Xi'an). Not until the 1950s were pandas again recorded to have been exhibited in China's zoos. Chi Chi at the London Zoo became very popular. This influenced the World Wildlife Fund to use a panda as its symbol. A 2006 \"\"New York Times\"\" article outlined the economics of keeping pandas, which costs five times"} +{"qid": "test30", "pid": "4221528", "query": "panda is a national animal of which country", "answer": "China", "passage": "\"Calgary Zoo\"\nof St. George's Island is dedicated to Eurasian animals. Animals in this area include amur (Siberian) tigers, snow leopards, alpine ibex, Japanese macaques, red pandas, Japanese serows, Bactrian camels, and Komodo dragons. This section is also home to four giant pandas which debuted in early May 2018. The giant pandas are on loan from the Chengdu Research Base in Chengdu, Sichaun, China. Panda Passage now features adult male Da Mao, cubs Jia Yueyue and Jia Panpan as well as their mother Er Shun. Formerly residing in the Panda's habitat area was a herd of Asian Elephants (relocated to the Smithsonian"} +{"qid": "test30", "pid": "6545655", "query": "panda is a national animal of which country", "answer": "China", "passage": "\"Kung Fu Panda\"\nAcademy Awards, saying \"\"Each year, I do one DreamWorks project, then I take all the money to the Oscars and bet it on Pixar.\"\" By contrast, \"\"Kung Fu Panda\"\" won 10 Annie Awards (including Best Picture) out of 16 nominations, although this created controversy, with some accusing DreamWorks head Jeffrey Katzenberg of rigging the vote by buying ASIFA-Hollywood memberships (with voting power) for everyone at DreamWorks Animation. As with most DreamWorks animated movies, composer Hans Zimmer scored \"\"Kung Fu Panda\"\". Zimmer visited China to absorb the culture and got to know the Chinese National Symphony as part of his preparation;"} +{"qid": "test30", "pid": "6545654", "query": "panda is a national animal of which country", "answer": "China", "passage": "\"Kung Fu Panda\"\nThe film's critical and commercial success in China led to some local introspection about why no film like \"\"Kung Fu Panda\"\" had been produced in China, with commentators attributing the problem variously to lower film budgets in China, too much government oversight, a dearth of national imagination, and an overly reverent attitude to China's history and cultural icons. \"\"Kung Fu Panda\"\" was nominated for the Academy Award for Best Animated Feature and the Golden Globe Award for Best Animated Feature Film, but both awards were won by Pixar's \"\"WALL-E\"\". Jack Black joked about his film's underdog status at the 81st"} +{"qid": "test30", "pid": "746926", "query": "panda is a national animal of which country", "answer": "China", "passage": "Sichuan\nsoutheast, Yunnan to the south, and the Tibet Autonomous Region to the west. Giant Pandas live in bamboo forests, and low mountainous areas such as the Minshan Mountains in Sichuan. The majority of the panda population lives in Sichuan, with their range spreading into Shaanxi and Gansu. As it is abundant where they live, pandas diet consists of 99% Bamboo, with small other plants, or small animals consisting of the other 1%. Since the panda is native to China, it is the national symbol of China. The politics of Sichuan is structured in a dual party-government system like all other"} +{"qid": "test30", "pid": "11929205", "query": "panda is a national animal of which country", "answer": "China", "passage": "\"Chengdu Research Base of Giant Panda Breeding\"\nlaunch (which was estimated in June, 2013). Chengdu Research Base of Giant Panda Breeding Chengdu Research Base of Giant Panda Breeding, or simply Chengdu Panda Base, is a non-profit research and breeding facility for giant pandas and other rare animals. It is located in Chengdu, Sichuan, China. Chengdu Panda Base was founded in 1987. It started with 6 giant pandas that were rescued from the wild. By 2008, it had 124 panda births, and the captive panda population has grown to 83. Its stated goal is to \"\"be a world-class research facility, conservation education center, and international educational tourism destination.\"\""} +{"qid": "test300", "pid": "4240763", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Flash (Barry Allen)\"\nby killing Barry's wife, Iris, before they met. Barry chases after Zoom, and is joined by Wally, who tells Barry to push as hard as he can to break the time barrier. They reach Thawne, becoming the lightning bolt that turns Barry into the Flash as they are able to stop Zoom from killing Iris. As the two Flashes push Zoom back through time to the present, they see that the Justice League, the Justice Society, and the Outsiders have built a device specifically for Thawne. Barry tosses him in and activates the device, severing his connection to the negative"} +{"qid": "test300", "pid": "15285575", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Flashpoint (comics)\"\nmagic to restore the Marvel Family to their mortal forms. Penthesilea (who was secretly one of the conspirators of the Atlanteans-Amazons war, along with Orm) kills Billy Batson, causing a massive explosion that cripples the opposing forces. In the wake of the devastation, Thawne appears in front of Flash. The Reverse-Flash reveals that Flash himself created the Flashpoint timeline by traveling back in time to stop him from killing Barry's mother. Barry pulled the entire Speed Force into himself to stop Thawne, transforming the timeline by shattering the history of his allies. Thawne resets Barry's internal vibrations, enabling him to"} +{"qid": "test300", "pid": "4240832", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Flash (Jay Garrick)\"\nCosmic Treadmill begins to break apart, the voice intensifies and Bruce tells Barry to listen and grab onto the voice. As the voice says \"\"Jay\"\", Barry says the name as well and Jay Garrick arrives, claiming he is free and provides enough speed and power to get Batman and Barry back home. Jay explains he didn't kill Thawne, he is a friend, and (also) Flash. He tries to get Barry to remember who he is; Barry is unable to, but finds Jay familiar and somehow trusts him. Then Jay is absorbed by a blue light and taken away. Barry believes"} +{"qid": "test300", "pid": "12541258", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"The Flash: Rebirth\"\nthe lightning bolt that turns Barry into the Flash and stop Thawne from killing Iris. They chase Thawne, who to dissuade Wally, tells him that one of his children will make his life miserable in the future. Barry and Wally push Thawne back through time. Barry and Wally return to the present where the other superheroes have built a device for Thawne. Barry tosses Thawne into it and Jay activates the device, which severs Thawne's connection to the negative Speed Force. Barry and Wally tie up Thawne. Iris discovers Thawne's weapon in the past and keeps it. With the threat"} +{"qid": "test300", "pid": "13986886", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Particle accelerators in popular culture\"\n2020, which is not successful and creates metahumans (humans with supernatural powers), including Barry Allen / The Flash. However, in the year 2024, the Flash is forced to time travel as he sees that the man in the yellow suit (the Flash's main villain) will travel as well to the year 2000, to kill the Flash as a child. The man in yellow (whose name is Eobard Thawne) fails to kill the younger Barry and angered, kills his mother; he later finds out that he go back to his time due to fighting the Flash. He finds Dr. Wells at"} +{"qid": "test300", "pid": "19057526", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Eobard Thawne\"\n(a.k.a. the \"\"Reverse-Flash\"\") and went on a crime spree. However, the time capsule also contained an atomic clock, and to prevent a nuclear explosion, Flash pursued and defeated Zoom, hoping he knew where the clock was. Unfortunately he didn't, but Flash later found the clock, detonated it safely, and destroyed Thawne's costume. Blaming the Flash for his defeat, Thawne became obsessed with \"\"replacing\"\" Barry and traveled back in time to exact his revenge. When Iris West (Barry's wife) rejected his romantic pursuits, Thawne killed Iris. After Flash had found love again, Thawne threatened to kill Fiona Webb (Barry's new fiancée)"} +{"qid": "test300", "pid": "19057542", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Eobard Thawne\"\nto steal Magali's abilities of affecting the age of organic and inorganic matter, leading to his true nature being exposed to the rest of his acolytes who join forces with the Flash to destroy the device. After the failure of his plan to be a god, Zoom then takes Henry to the Allen house, with Barry in pursuit. Revealing his backstory to Barry, Eobard proceeds to best Barry in combat and is about to kill until the Flash realizes how Eobard's powers work, and then proceeds to counter by moving time forward – finally defeating him. After talking Henry out"} +{"qid": "test300", "pid": "19057531", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Eobard Thawne\"\nthey become the lightning bolt that turns Barry into the Flash as they are able to stop Thawne from killing Iris. The Flashes push Thawne back through time, showing his past and future. They return to the present, where the Justice League, the Justice Society, and the Outsiders have built a device originally intended to disconnect Barry from the Speed Force as the Black Flash. Barry tosses Thawne in and Jay activates the device, severing his connection to the negative Speed Force. As the Flashes tie him up to stop him from running, Iris discovers Thawne's weapon back in the"} +{"qid": "test300", "pid": "19057527", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Eobard Thawne\"\non their wedding day. Fearful that history was repeating itself, Barry killed Thawne by breaking his neck. The post-\"\"Crisis\"\" extended origin \"\"The Return of Barry Allen\"\" storyline revealed that Eobard was once a scientist obsessed with the Flash, even undergoing cosmetic surgery to resemble his hero. Obtaining the Cosmic Treadmill from an antique shop, Eobard gained all of the Flash's powers after replicating the electrochemical accident that created Flash. Seeking to use the Cosmic Treadmill to travel back in time and meet his idol, Eobard arrived at the Flash Museum several years after Barry's death, discovering that he was destined"} +{"qid": "test300", "pid": "19745617", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"The Flash (season 1)\"\nwas cast as Harrison Wells, with his role described as \"\"a rock star in the world of physics and the mind and money behind Central City's S.T.A.R. Labs Particle Accelerator\"\". It was eventually revealed that Cavanagh's character was actually Eobard Thawne, who stole the appearance of the real Wells (also portrayed by Cavanagh) after killing him, with Matt Letscher portraying Thawne before the transformation. Several cast members from the 1990 television series appear in the series. John Wesley Shipp, who portrayed Barry Allen/Flash in the 1990 series, joined the cast in a recurring role as Barry's father, Dr. Henry Allen,"} +{"qid": "test300", "pid": "19057538", "query": "who kills barry's mom in the flash", "answer": "Thawne", "passage": "\"Eobard Thawne\"\nwhen Barry went back in time to stop the Reverse-Flash from killing Nora. After Thawne is killed by this reality's Batman with an Amazonian sword, the Flash travels back in time to stop Barry's younger self from altering history but instead, under Pandora's manipulations, a third, new timeline is created, in which DC Comics' continuity takes place from 2011 onwards. In The New 52 reboot of DC's continuity, Eobard's origin is re-established as hailing from the Central City of a 25th-century devoted to the Flash. As a child, Eobard witnessed his father murder his mother and subsequently get arrested. One"} +{"qid": "test3000", "pid": "5441479", "query": "who has the power (judicial) to make decisions in courts of law", "answer": "judges", "passage": "\"Separation of powers in Australia\"\nand administrators alone. The importance of deference has been acknowledged in extrajudicial writings, and in decisions such as \"\"Drake v Minister for Immigration & Ethnic Affairs (No 2)\"\". As a manifestation of the separation of powers, a 'Chapter III Court' cannot make administrative decisions. In administrative law this means that the courts cannot substitute an original decision of the executive, but can only decide on its correctness. The doctrine of \"\"persona designata\"\" permits non-judicial functions to be conferred on judges in their personal capacity, as opposed to their judicial capacity. However, in \"\"Hindmarsh Island Bridge case\"\", it was held that"} +{"qid": "test3000", "pid": "691156", "query": "who has the power (judicial) to make decisions in courts of law", "answer": "judges", "passage": "\"Judicial discretion\"\nJudicial discretion Judicial discretion is the power of the judiciary to make some legal decisions according to their discretion. Under the doctrine of the separation of powers, the ability of judges to exercise discretion is an aspect of judicial independence. Where appropriate, judicial discretion allows a judge to decide a legal case or matter within a range of possible decisions. However, where the exercise of discretion goes beyond constraints set down by legislation, by binding precedent, or by a constitution, the court may be abusing its discretion and undermining the rule of law. In that case, the decision of the"} +{"qid": "test3000", "pid": "7950520", "query": "who has the power (judicial) to make decisions in courts of law", "answer": "judges", "passage": "\"Judicial officer\"\nsworn law enforcement agents with the capacity to enforce the law within their speciality, an example would be The Environment Public Authority's environmental Judicial Officers, which function, effectively, as an Environmental judicial police force that enforces the country's environmental law. Judicial officer A Judicial officer is a person with the responsibilities and powers to facilitate, arbitrate, preside over, and make decisions and directions in regard to the application of the law. Judicial officers are typically categorized as judges, magistrates, puisne judicial officers such as justices of the peace or officers of courts of limited jurisdiction; and notaries public and commissioners"} +{"qid": "test3000", "pid": "7950519", "query": "who has the power (judicial) to make decisions in courts of law", "answer": "judges", "passage": "\"Judicial officer\"\nJudicial officer A Judicial officer is a person with the responsibilities and powers to facilitate, arbitrate, preside over, and make decisions and directions in regard to the application of the law. Judicial officers are typically categorized as judges, magistrates, puisne judicial officers such as justices of the peace or officers of courts of limited jurisdiction; and notaries public and commissioners of oaths. The powers of judicial officers vary and are usually limited to a certain jurisdiction. In Sri Lanka, Judicial officers refer to District judges and Magistrates. They are appointed by the Judicial Service Commission. In Kuwait, Judicial Officers are"} +{"qid": "test3000", "pid": "4812027", "query": "who has the power (judicial) to make decisions in courts of law", "answer": "judges", "passage": "\"Law clerk\"\nLaw clerk A law clerk or a judicial clerk is an individual—generally an attorney—who provides direct assistance and counsel to a judge in making legal determinations and in writing opinions by researching issues before the court. Judicial clerks often play significant roles in the formation of case law through their influence upon judges' decisions. Judicial clerks should not be confused with legal clerks (also called \"\"law clerks\"\" in Canada), court clerks, or courtroom deputies who only provide secretarial and administrative support to attorneys and/or judges. Judicial clerks are generally recent law school graduates who performed at or near the top"} +{"qid": "test3000", "pid": "691159", "query": "who has the power (judicial) to make decisions in courts of law", "answer": "judges", "passage": "\"Judicial discretion\"\nis often viewed as a shift of judicial power from judges to prosecutors, who are capable of affecting the length of potential sentence through their charging decision, e.g. filing charges on lesser included offense and dropping the charges carrying mandatory minimum sentences. Mandatory sentencing laws have been particularly popular among legislators in the United States. This has provoked formation of non-profit organizations such as Families Against Mandatory Minimums, Women Against Registry and RSOL to lobby for reinstatement of judicial discretion in criminal sentencing. Judicial discretion Judicial discretion is the power of the judiciary to make some legal decisions according to"} +{"qid": "test3001", "pid": "20831678", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Ketchup (Adventure Time)\"\nDiMaggio), a dog with magical powers to change shape and grow and shrink at will. In this episode, Marceline is unexpectedly visited by BMO who is asked to download a USB drive. While they wait, the two tell each other stories, leading to BMO telling Marceline the story of \"\"the Child and the Moon Girl\"\", based on Marceline and her mother. Marceline (voiced by Olivia Olson) is unexpectedly visited by BMO (voiced by Niki Yang), who believes that vampires are still threatening Marceline's life. Marceline assures the robot that the vampire threat passed months ago, and asks BMO to download"} +{"qid": "test3001", "pid": "15622115", "query": "who does the voice of marceline on adventure time", "answer": "Cloris Leachman", "passage": "\"Marceline the Vampire Queen\"\nMarceline the Vampire Queen Marceline the Vampire Queen is a fictional character in the American animated Cartoon Network television series \"\"Adventure Time\"\", created by Pendleton Ward. She is voiced by Olivia Olson in most appearances, by Ava Acres as a child and by Cloris Leachman as an old woman. Marceline is a fun-loving 1,000-year-old vampire queen, as well as a musician who plays an electric bass that she made from her family's heirloom battle-axe. The artistic design for Marceline was created by Ward, with small changes and additions added by Phil Rynda, former lead character and prop designer for \"\"Adventure"} +{"qid": "test3001", "pid": "16560903", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"It Came from the Nightosphere\"\nIt Came from the Nightosphere \"\"It Came from the Nightosphere\"\" is the first episode of the second season of the American animated television series \"\"Adventure Time\"\". The series follows the adventures of Finn (voiced by Jeremy Shada), a human boy, and his best friend and adoptive brother Jake (voiced by John DiMaggio), a dog with magical powers to change shape and grow and shrink at will. In this episode, Finn releases Marceline's dad (voiced by Martin Olson) from the Nightosphere after Marceline (voiced by Olivia Olson) sings a song about the relationship between her and her estranged father. However, Finn—who"} +{"qid": "test3001", "pid": "17229448", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"I Remember You (Adventure Time)\"\nhis best friend and adoptive brother Jake (voiced by John DiMaggio), a dog with magical powers to change shape and grow and shrink at will. In this episode, Marceline the Vampire Queen (voiced by Olivia Olson) collaborates with the Ice King (voiced by Tom Kenny) to write a song, and Marceline tries to get the Ice King to remember who he really is. This episode reveals that Marceline and the Ice King previously knew each other from the aftermath of the Mushroom War, a cataclysmic event that occurred a thousand years before the beginning of the series. Formerly titled \"\"Help,\"\""} +{"qid": "test3001", "pid": "15622119", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Marceline the Vampire Queen\"\nis described as being \"\"friendly rivals\"\" with Bubblegum. The design for Marceline was created by Ward, with small changes and additions added by Phil Rynda, former lead character and prop designer for \"\"Adventure Time\"\". Visually, Marceline has long, dark hair. She rarely walks on the ground, generally preferring to float when she travels, moves, and sleeps. Marceline, unlike many of the other characters, wears varying outfits in most of her appearances. According to Ward, her clothing changes from episode to episode because \"\"girls own more than one outfit\"\". Olivia Olson, the voice actress who plays Marceline, was impressed by her"} +{"qid": "test3001", "pid": "15622161", "query": "who does the voice of marceline on adventure time", "answer": "Cloris Leachman", "passage": "\"Marceline the Vampire Queen\"\nin the margin that said 'Come on!' with a big exclamation point. That was the only note. I can’t argue with that.\"\" Marceline the Vampire Queen Marceline the Vampire Queen is a fictional character in the American animated Cartoon Network television series \"\"Adventure Time\"\", created by Pendleton Ward. She is voiced by Olivia Olson in most appearances, by Ava Acres as a child and by Cloris Leachman as an old woman. Marceline is a fun-loving 1,000-year-old vampire queen, as well as a musician who plays an electric bass that she made from her family's heirloom battle-axe. The artistic design for"} +{"qid": "test3001", "pid": "15622121", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Marceline the Vampire Queen\"\nartist leaves a little bit of their own taste and sensibilities in what they draw.\"\" Marceline is voiced by Olivia Olson. When production on \"\"Adventure Time\"\" began, Ward contacted his friend Martin Olson, who was a writer on the animated Disney series \"\"Phineas and Ferb\"\", and asked if he knew who played the character Vanessa Doofenshmirtz on \"\"Phineas and Ferb\"\", as he wanted \"\"her as a voice\"\" on his show; reportedly, Ward was unaware that the actress was actually Martin Olson's daughter. During the casting audition, Olivia Olson first read for Princess Bubblegum, but was later asked to read for"} +{"qid": "test3001", "pid": "19638294", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Adventure Time (season 9)\"\nOlivia Olson (Marceline the Vampire Queen). Ward voiced several minor characters, including Lumpy Space Princess. Former storyboard artist Niki Yang voiced the sentient video-game console BMO in English and Jake's girlfriend, Lady Rainicorn, in Korean. Polly Lou Livingston, a friend of Pendleton Ward's mother, Bettie Ward, voiced the small elephant Tree Trunks. Jessica DiCicco voiced Flame Princess, Finn's ex-girlfriend and ruler of the Fire Kingdom. Andy Milonakis voices N.E.P.T.R., a sentient robot who makes (and throws) pies. The Lich, \"\"Adventure Time\"\" principal antagonist, was voiced by Ron Perlman in his demonic form and Ethan Maher in his Sweet P form."} +{"qid": "test3001", "pid": "9617025", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Adventure Time\"\nsuccess, with several screenings [as well as] a dramatic reading with the show's voice talent\"\". The show is also popular with cosplayers, or performance artists who wear costumes and fashion accessories to represent characters from the \"\"Adventure Time\"\" universe. Moss wrote, \"\"Looking into the crowd, it was clear that [Finn's] distinctive blue shirt and white hat were being mirrored by hundreds of Cosplayers, male and female.\"\" In an interview, Olivia Olson (who voices the character Marceline) said, \"\"Literally, anywhere you look, anywhere in your range, you're going to see at least two people dressed up like Finn. It's crazy.\"\" On"} +{"qid": "test3001", "pid": "18613313", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Stakes (miniseries)\"\nStakes (miniseries) Stakes is an American animated miniseries based on the show \"\"Adventure Time\"\" by Pendleton Ward. It aired as part of the show's seventh season from November 16, 2015 to November 19, 2015 on Cartoon Network. \"\"Adventure Time\"\" follows the adventures of Finn (voiced by Jeremy Shada), a human boy, and his best friend and adoptive brother Jake (voiced by John DiMaggio), a dog with magical powers to change shape, grow and shrink at will. In this limited event series, Princess Bubblegum (voiced by Hynden Walch) removes the vampiric essence from Marceline the Vampire Queen (voiced by Olivia Olson),"} +{"qid": "test3001", "pid": "16967763", "query": "who does the voice of marceline on adventure time", "answer": "Ava Acres", "passage": "\"Adventure Time (season 3)\"\nvoices for various characters. For instance, Jackie Buscarino appears as the Cute King in \"\"Conquest of Cuteness\"\". Steve Agee voices Ash, Marceline's ex-boyfriend, and Ava Acres as young Marceline in \"\"Memory of a Memory\"\". Isabella Acres reprises her role as a young Princess Bubblegum, and Justin Roiland makes his debut as Lemongrab in the episode \"\"Too Young\"\". Lemongrab would soon becoming a recurring character. Steve Little voices the character Abracadaniel, and Maurice LaMarche appears as the Grand Master Wizard in the episode \"\"Wizard Battle\"\". For the gender bent episode \"\"Fionna and Cake\"\", Madeleine Martin voiced Fionna, Roz Ryan played the"} +{"qid": "test3001", "pid": "18177096", "query": "who does the voice of marceline on adventure time", "answer": "Ava Acres", "passage": "\"Adventure Time (season 7)\"\nI Come In?\"\", \"\"Take Her Back\"\", and \"\"The Dark Cloud\"\". \"\"Bonnie & Neddy\"\" also features supervising director Andres Salaff voicing Neddy. Anne Heche returned to voice the titular character in \"\"Cherry Cream Soda\"\", and storyline writer Jack Pendarvis reprised his role as Root Beer Guy. Pendarvis returned in the episode \"\"Mama Said\"\", with storyboard artist Ako Castuera as the voice of Canyon. The miniseries features Sugar as Marceline's mother, Ava Acres as a young Marceline, Rebecca Romijn as The Empress, Billy Brown as the Vampire King, Paul Williams as the Hierophant, Ron Funches as the Fool, Beau Billingslea as the"} +{"qid": "test3001", "pid": "16693291", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "Evicted!\nQueen Rock the Nightosphere\"\" included \"\"The House Hunting Song\"\" alongside other songs sung by Marceline. Evicted! \"\"Evicted!\"\" is the twelfth episode of the first season of the American animated television series \"\"Adventure Time\"\". The episode was written and storyboarded by Bert Youn and Sean Jimenez, from a story by Adam Muto. It originally aired on Cartoon Network on March 18, 2010 as a preview for the series; it later officially aired on May 17, 2010. The episode guest stars Erik Estrada as King Worm. The episode marks the first appearance of Marceline the Vampire Queen (voiced by Olivia Olson), who"} +{"qid": "test3001", "pid": "17991754", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Return to the Nightosphere / Daddy's Little Monster\"\nthe adventures of Finn (voiced by Jeremy Shada), a human boy, and his best friend and adoptive brother Jake (voiced by John DiMaggio), a dog with magical powers to change shape and grow and shrink at will. In \"\"Return to the Nightosphere\"\", Finn and Jake discover that they are trapped in the Nightosphere, a hellish dimension ruled by Hunson Abadeer, Marceline's (voiced by Olivia Olson) father, although they cannot seem to remember how they arrived. \"\"Daddy's Little Monster\"\" features Finn and Jake discovering that Hunson Abadeer has turned Marceline into a giant demon. The duo manage to save Marceline. \"\"Daddy's"} +{"qid": "test3001", "pid": "20380072", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Adventure Time (season 10)\"\nand \"\"Adventure Time\"\"-related food. Several crew members were hired for Cartoon Network's \"\"Summer Camp Island\"\", created by \"\"Adventure Time\"\" storyline writer Julia Pott, after the latter's final season ended. Voice actors for the season included Jeremy Shada (Finn the Human), John DiMaggio (Jake the Dog), Tom Kenny (The Ice King), Hynden Walch (Princess Bubblegum), and Olivia Olson (Marceline the Vampire Queen). Ward himself provides the voice for several minor characters, including Lumpy Space Princess. Former storyboard artist Niki Yang voiced sentient video-game console BMO in English and Jake's girlfriend, Lady Rainicorn, in Korean. Polly Lou Livingston, a friend of Pendleton"} +{"qid": "test3001", "pid": "20356403", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Bliss (The Powerpuff Girls)\"\ngirls her leggings do not reach all the way down to her feet, courtesy of her being wider and taller. She also has a dark blue plastic headband (a so called \"\"alice band\"\") that none of the others wear, featuring a fuchsia pink heart. The character had a total of five English voice actors for different regions and fifteen overall for the films original airing. In the American version, Olivia Olson, who widely known as the voice of Marceline the Vampire Queen in \"\"Adventure Time\"\", voiced the character. South African musician Toya Delazy who is one of the many actors"} +{"qid": "test3001", "pid": "20864276", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Come Along with Me (Adventure Time)\"\nfuture, Shermy and Beth ask what happened afterward, to which BMO replies that Finn, Jake, and their friends \"\"kept on living their lives\"\". Later, Shermy and Beth find the tree sprouted from Fern's seed. They climb to the top, pull the Finn Sword from the highest branch, and assume a pose similar to Finn and Jake in the show's title sequence, suggesting that they will become the next heroes of Ooo. During the last seasons of \"\"Adventure Time\"\", there was talk at Cartoon Network about concluding the series. Olivia Olson, who provided the voice of Marceline, said that since this"} +{"qid": "test3001", "pid": "16967722", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Adventure Time (season 1)\"\nJohn DiMaggio (Jake the Dog), Tom Kenny (The Ice King), Hynden Walch (Princess Bubblegum), and Olivia Olson (Marceline the Vampire Queen). Ward himself provides the voice for several minor characters, as well as Lumpy Space Princess. Former storyboard artist Niki Yang voices the sentient video game console BMO, as well as Jake's girlfriend Lady Rainicorn in Korean. Polly Lou Livingston, a friend of Pendleton Ward's mother, Bettie Ward, plays the voice of the small elephant Tree Trunks. The \"\"Adventure Time\"\" cast records their lines together as opposed to doing it individually. This is to capture more natural sounding dialogue among"} +{"qid": "test3001", "pid": "18177094", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Adventure Time (season 7)\"\n(Jake the Dog), Tom Kenny (The Ice King), Hynden Walch (Princess Bubblegum), and Olivia Olson (Marceline the Vampire Queen). Ward provided the voice for several minor characters, including Lumpy Space Princess. Former storyboard artist Niki Yang voices the sentient video game console BMO in English, as well as Jake's girlfriend Lady Rainicorn in Korean. Polly Lou Livingston, a friend of Pendleton Ward's mother, Bettie Ward, voices the small elephant, Tree Trunks. Jessica DiCicco voices Flame Princess, Finn's ex-girlfriend and the sovereign of the Fire Kingdom. Andy Milonakis voices N.E.P.T.R., a sentient robot who makes and throws pies. Several episodes also"} +{"qid": "test3001", "pid": "9616966", "query": "who does the voice of marceline on adventure time", "answer": "Olivia Olson", "passage": "\"Adventure Time\"\nAdventure Time Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. Produced by Frederator Studios and Cartoon Network Studios, the series follows the adventures of a boy named Finn (voiced by Jeremy Shada) and his best friend and adoptive brother Jake (John DiMaggio)a dog with the magical power to change shape and size at will. Finn and Jake live in the post-apocalyptic Land of Ooo, where they interact with Princess Bubblegum (Hynden Walch), the Ice King (Tom Kenny), Marceline the Vampire Queen (Olivia Olson), BMO (Niki Yang), and others. The series is based on"} +{"qid": "test3002", "pid": "6566538", "query": "who played truman capote in in cold blood", "answer": "Philip Seymour Hoffman", "passage": "\"Capote (film)\"\n\"\"Capote\"\" was released on DVD on March 21, 2006. Capote (film) Capote is a 2005 biographical film about Truman Capote directed by Bennett Miller. It follows the events during the writing of Capote's non-fiction book \"\"In Cold Blood\"\". Philip Seymour Hoffman won several awards, including the Academy Award for Best Actor, for his critically acclaimed portrayal of the title character. The film was based on Gerald Clarke's biography \"\"Capote\"\". It was filmed mostly in Manitoba in the autumn of 2004. It was released September 30, 2005, to coincide with Truman Capote's birthday. In 1959, the four dead bodies of the"} +{"qid": "test3002", "pid": "6566529", "query": "who played truman capote in in cold blood", "answer": "Philip Seymour Hoffman", "passage": "\"Capote (film)\"\nCapote (film) Capote is a 2005 biographical film about Truman Capote directed by Bennett Miller. It follows the events during the writing of Capote's non-fiction book \"\"In Cold Blood\"\". Philip Seymour Hoffman won several awards, including the Academy Award for Best Actor, for his critically acclaimed portrayal of the title character. The film was based on Gerald Clarke's biography \"\"Capote\"\". It was filmed mostly in Manitoba in the autumn of 2004. It was released September 30, 2005, to coincide with Truman Capote's birthday. In 1959, the four dead bodies of the Clutter family are discovered on their Kansas farm. While"} +{"qid": "test3002", "pid": "1655448", "query": "who played truman capote in in cold blood", "answer": "Philip Seymour Hoffman", "passage": "\"In Cold Blood\"\nand his subsequent fascination with the murders. \"\"Capote\"\" (2005) starred Philip Seymour Hoffman, who won the Academy Award for Best Actor for his portrayal of Truman Capote, Clifton Collins, Jr. as Perry Smith, and Catherine Keener as Harper Lee. The film was critically acclaimed, and was nominated for five Academy Awards: Best Picture, Best Actor (Hoffman), Best Supporting Actress (Keener), Best Director (Bennett Miller), and Best Adapted Screenplay (Dan Futterman). A year later the 2006 film \"\"Infamous\"\", starring Toby Jones as Capote, Daniel Craig as Smith, and Sandra Bullock as Lee, was released to favorable reviews. The Alt-J song \"\"In"} +{"qid": "test3002", "pid": "2894633", "query": "who played truman capote in in cold blood", "answer": "Philip Seymour Hoffman", "passage": "\"Philip Seymour Hoffman\"\nleave [the role]. Phil carried it with him.\"\" Hoffman received his second Tony Award nomination, this time for Best Featured Actor in a Play. In 2004, he appeared as the crude, has-been actor friend of Ben Stiller's character in the box-office hit \"\"Along Came Polly\"\". Reflecting on the role, \"\"People\"\" said it proved that \"\"Hoffman could deliver comedic performances with the best of them\"\". A turning point in Hoffman's career came with the biographical film \"\"Capote\"\" (2005), which dramatized Truman Capote's experience of writing his true crime novel \"\"In Cold Blood\"\" (1966). Hoffman took the title role for a project"} +{"qid": "test3003", "pid": "13940617", "query": "the names of the beaches on d day", "answer": "Utah Beach", "passage": "\"V for Victory: D-Day Utah Beach\"\nplay.\"\" They continued, \"\"We single out \"\"Utah Beach\"\" because it launched the series — but by all means, check out \"\"Velikiye Luki\"\", \"\"Gold*Juno*Sword\"\", and \"\"Market Garden\"\", too.\"\" The \"\"V for Victory\"\" series collectively won \"\"Computer Games Strategy Plus\"\"s 1992 \"\"Game of the Year\"\" award. The magazine's Brian Walker wrote that it \"\"achieved what many computer wargames have been trying to do for years: successfully convert a board wargame onto computer.\"\" \"\"Computer Games\"\" likewise named it the year's best wargame. V for Victory: D-Day Utah Beach V for Victory: D-Day Utah Beach is a turn-based strategy wargame for the Macintosh and"} +{"qid": "test3003", "pid": "3161535", "query": "the names of the beaches on d day", "answer": "Utah Beach", "passage": "\"Utah Beach\"\nand were unable to launch airborne counterassaults on D-Day. Extensive Allied reconnaissance provided the attackers with detailed maps of the defenses and terrain. Unlike neighboring Omaha, the preliminary aerial bombardment was highly effective at Utah. Indecisiveness and an overcomplicated command structure on the part of the German high command was also a factor in the Allied success at Utah and throughout the Normandy campaign. Utah Beach Utah, commonly known as Utah Beach, was the code name for one of the five sectors of the Allied invasion of German-occupied France in the Normandy landings on June 6, 1944 (D-Day), during World"} +{"qid": "test3003", "pid": "13940604", "query": "the names of the beaches on d day", "answer": "Utah Beach", "passage": "\"V for Victory: D-Day Utah Beach\"\nV for Victory: D-Day Utah Beach V for Victory: D-Day Utah Beach is a turn-based strategy wargame for the Macintosh and MS-DOS developed by Atomic Games in 1991 and distributed by Three-Sixty Pacific. It was widely lauded and repeatedly reviewed as the best wargame of its era. Its success led to three further games in the \"\"V for Victory\"\" series, and then the similar World at War series published by Avalon Hill. The game simulates the D-Day invasion on the area surrounding Utah Beach and the greater Cotentin Peninsula area. The player takes the role of overall commander of the"} +{"qid": "test3003", "pid": "12002050", "query": "the names of the beaches on d day", "answer": "Sword Beach", "passage": "\"Oklahoma D-Day\"\nOklahoma D-Day Oklahoma D-Day is the world's largest scenario game of paintball that recreates events of World War II, held at Oklahoma's D-Day Adventure Park in Wyandotte, Oklahoma every June. The game was created by Dewayne Convirs, and was first held in 1997 - with attendance of 135 players. The following year was more popular, with 335 players participating. The game seeks to faithfully recreate battles from the real Normandy invasion, including Omaha beach, Utah beach, Sword Beach, Colleville, Sainte-Mère-Église, Caen, Pegasus Bridge, and Vierville. The game caters to an average of 4000 players a year, often run on the"} +{"qid": "test3003", "pid": "3161497", "query": "the names of the beaches on d day", "answer": "Utah Beach", "passage": "\"Utah Beach\"\nUtah Beach Utah, commonly known as Utah Beach, was the code name for one of the five sectors of the Allied invasion of German-occupied France in the Normandy landings on June 6, 1944 (D-Day), during World War II. The westernmost of the five code-named landing beaches in Normandy, Utah is on the Cotentin Peninsula, west of the mouths of the Douve and Vire rivers. Amphibious landings at Utah were undertaken by United States Army troops, with sea transport, mine sweeping, and a naval bombardment force provided by the United States Navy and Coast Guard as well as elements from the"} +{"qid": "test3003", "pid": "20493470", "query": "the names of the beaches on d day", "answer": "Juno Beach", "passage": "\"British logistics in the Normandy Campaign\"\nthe 3rd Canadian Division on Juno Beach was delayed by rough seas, and the development of Mike Beach by 7 Beach Group was delayed by fire from Vaux-sur-Aure. The German stronghold there was eliminated on 8 June by 7 Beach Group, supported by armour. Bad weather delayed the arrival of four coasters from England on D-Day, and seven more on 7 June. This was offset when the tiny port of Courseulles-sur-Mer was captured intact on D-Day, allowing per day to be unloaded there before it was abandoned on 10 June. At Sword Beach, 101 Beach Sub Area landed with the"} +{"qid": "test3003", "pid": "4639354", "query": "the names of the beaches on d day", "answer": "Sword Beach", "passage": "\"Oxfordshire and Buckinghamshire Light Infantry\"\n1943 and was to provide the infantry support for the 6th Beach Group. In April 1943 the battalion moved to Scotland to commence training for its new role. The 1st Bucks formed part of the 6th Beach Group landing on Sword Beach on D-Day, 6 June 1944. An anti-tank platoon of 1st Bucks landed on the first tide of the invasion on D-Day, 6 June 1944. The remainder of 1st Bucks landed on the second tide of the invasion on D-Day. German gunners fired at the 1st Bucks from Lebisey wood and from the high ground at Houlgate; there was"} +{"qid": "test3003", "pid": "13536998", "query": "the names of the beaches on d day", "answer": "Omaha Beach", "passage": "\"116th Infantry Regiment (United States)\"\ninvasion, was scheduled for dawn on 5 June (D-Day, the first day of the assault). Companies A, E, F, and G were to be in the first wave of the assault on Omaha Beach. The beach was divided into subsectors: Company A, the westernmost, was to land in Dog Green, Company G in Dog White, Company F in Dog Red, and Company E in Easy Green on the right of the 16th Infantry. It was planned that by 09:30 on D-Day, the beach exits would be open and vehicles able to leave the beach. The 1st Battalion of the regiment"} +{"qid": "test3003", "pid": "17930812", "query": "the names of the beaches on d day", "answer": "Juno Beach", "passage": "\"6th Beach Group\"\n10 July 1944, No. 6 Beach Group was officially disbanded. As from 12 July 1944, all remaining landing craft were directed to Juno Beach and Gold Beach. 1st Bucks was transferred to other battalions fighting in the battle for Normandy including to the 2nd Battalion, Oxfordshire and Buckinghamshire Light Infantry (the 52nd) in the 6th Airborne Division and to the Black Watch (Royal Highland Regiment) and other units in the 51st (Highland) Infantry Division. On D-Day, 6 June 1944, No. 6 Beach Group comprised the following units: The following units joined No. 6 Beach Group after D-Day: 6th Beach Group"} +{"qid": "test3003", "pid": "4900333", "query": "the names of the beaches on d day", "answer": "Gold Beach", "passage": "\"The D-Day Story\"\nForce G (naval forces assigned to Gold Beach) to sail to Normandy. The D-Day Story The D-Day Story (formerly the D-Day Museum) is a visitor attraction located in Southsea, Portsmouth in Hampshire, England. It tells the story of Operation Overlord during the Normandy D-Day landings. Originally opened as the D-Day Museum in 1984 by Queen Elizabeth The Queen Mother, it reopened as the D-Day Story, following a refurbishment funded by a £5 million Heritage Lottery grant, in March 2018. The story is told in three parts: Preparation; D-Day and the Battle of Normandy; Legacy and the Overlord Embroidery. The Legacy"} +{"qid": "test3003", "pid": "704323", "query": "the names of the beaches on d day", "answer": "Omaha Beach", "passage": "\"Omaha Beach\"\nField Marshal Bernard Montgomery considered the possibility of diverting V Corps forces through Gold. The foothold gained on D-Day at Omaha, itself two isolated pockets, was the most tenuous across all the D-Day beaches. With the original objective yet to be achieved, the priority for the Allies was to link up all the Normandy beachheads. During the course of June 7, while still under sporadic shellfire, the beach was prepared as a supply area. Surplus cargo ships were deliberately sunk to form an artificial breakwater and, while still less than planned, 1,429 tons of stores were landed that day. With"} +{"qid": "test3003", "pid": "16671066", "query": "the names of the beaches on d day", "answer": "Juno Beach", "passage": "\"Francis Lane Fox\"\nthe Reconnaissance Corps, formed part of the 43rd (Wessex) Infantry Division, whose General Officer Commanding (GOC) was Major-General Ivor Thomas, which was training for the Normandy Landings. Soon after D-Day, 43 Recce embarked on a transport named the , which arrived off Sword Beach on the evening of 20 June. High seas and enemy shelling prevented unloading for three days and it was decided to move to Juno Beach for disembarkation. As the ship started engines on the morning of 24 June it detonated a mine dropped by a Luftwaffe raider. The mine explosion split the ship in two, and"} +{"qid": "test3003", "pid": "533136", "query": "the names of the beaches on d day", "answer": "Omaha Beach", "passage": "\"Yogi Berra\"\nU.S. Navy as a gunner's mate on the attack transport during the D-Day invasion of France. A Second Class Seaman, Berra was one of a six-man crew on a Navy rocket boat, firing machine guns and launching rockets at the German defenses on Omaha Beach. He was fired upon, but was not hit, and later received several commendations for his bravery. During an interview on the 65th Anniversary of D-Day, Berra confirmed that he was sent to Utah Beach during the D-Day invasion as well. Following his military service, Berra played minor-league baseball with the Newark Bears, surprising the team's"} +{"qid": "test3003", "pid": "3161593", "query": "the names of the beaches on d day", "answer": "Gold Beach", "passage": "\"Gold Beach\"\nMulberry harbours that were to be constructed shortly after the invasion. High cliffs at the western end of the zone meant that the landings would be undertaken on the flat beach between Le Hamel and La Rivière, in the sectors code-named Jig and King. The area immediately behind the beach was marshy, with open ground and bocage (small fields surrounded by hedges and embankments) further inland. Roads led to the south via Asnelles and Ver-sur-Mer. The terrain to the south-east rose to a ridge at Meuvaines, where on D-Day were located machine gun nests of the German 726th Regiment. The"} +{"qid": "test3003", "pid": "2269858", "query": "the names of the beaches on d day", "answer": "Omaha Beach", "passage": "\"Mulberry harbour\"\ndemolitions so would not be navigable for some time. The success of Operation Dragoon meant that the southern French ports of Marseille and Toulon were available in October. Though the need for the harbour at Gold Beach lessened after D-Day with the capture of French ports such as Cherbourg, it was used for 10 months after D-Day; over 2.5 million men, 500,000 vehicles, and 4 million tons of supplies were landed at Gold Beach before it was fully decommissioned. The Mulberry harbour at Omaha Beach was severely damaged in a storm in late June 1944 and was abandoned. The Dieppe"} +{"qid": "test3003", "pid": "704330", "query": "the names of the beaches on d day", "answer": "Omaha Beach", "passage": "\"Omaha Beach\"\nfixed port facilities were captured. In the few days that the harbor was operational, 11,000 troops, 2,000 vehicles and 9,000 tons of equipment and supplies were brought ashore. Over the 100 days following D-Day more than 1,000,000 tons of supplies, 100,000 vehicles and 600,000 men were landed, and 93,000 casualties were evacuated, via Omaha. Today at Omaha jagged remains of the harbor can be seen at low tide. The shingle bank is no longer there, cleared by engineers in the days following D-Day to facilitate the landing of supplies. The beachfront is more built-up and the beach road extended, villages"} +{"qid": "test3004", "pid": "1673593", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "Thylakoid\nare the site of the light-dependent reactions of photosynthesis. These include light-driven water oxidation and oxygen evolution, the pumping of protons across the thylakoid membranes coupled with the electron transport chain of the photosystems and cytochrome complex, and ATP synthesis by the ATP synthase utilizing the generated proton gradient. The first step in photosynthesis is the light-driven reduction (splitting) of water to provide the electrons for the photosynthetic electron transport chains as well as protons for the establishment of a proton gradient. The water-splitting reaction occurs on the lumenal side of the thylakoid membrane and is driven by the light"} +{"qid": "test3004", "pid": "11447752", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "\"Dioxygen in biological reactions\"\nalmost all oxygen produced in tropical forests is consumed by organisms living there. A simplified overall formula for photosynthesis is: Photolytic oxygen evolution during photosynthesis occurs via the light-dependent oxidation of water to molecular oxygen and can be written as the following simplified chemical reaction: 2HO → 4e + 4H + O The reaction occurs in the thylakoid membranes of cyanobacteria, and algal and plant chloroplasts and requires the energy of four photons. The electrons from the oxidized water molecules replace electrons in the P component of photosystem II, which have been removed into an electron transport chain via light-dependent"} +{"qid": "test3004", "pid": "13691822", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "\"Light-dependent reactions\"\nLight-dependent reactions In photosynthesis, the light-dependent reactions take place on the thylakoid membranes. The inside of the thylakoid membrane is called the lumen, and outside the thylakoid membrane is the stroma, where the light-independent reactions take place. The thylakoid membrane contains some integral membrane protein complexes that catalyze the light reactions. There are four major protein complexes in the thylakoid membrane: Photosystem II (PSII), Cytochrome b6f complex, Photosystem I (PSI), and ATP synthase. These four complexes work together to ultimately create the products ATP and NADPH. The four photosystems absorb light energy through pigments—primarily the chlorophylls, which are responsible for"} +{"qid": "test3004", "pid": "13691850", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "\"Light-dependent reactions\"\nplace only in the presence of light. This led later to the discovery of photosystems I and II. Light-dependent reactions In photosynthesis, the light-dependent reactions take place on the thylakoid membranes. The inside of the thylakoid membrane is called the lumen, and outside the thylakoid membrane is the stroma, where the light-independent reactions take place. The thylakoid membrane contains some integral membrane protein complexes that catalyze the light reactions. There are four major protein complexes in the thylakoid membrane: Photosystem II (PSII), Cytochrome b6f complex, Photosystem I (PSI), and ATP synthase. These four complexes work together to ultimately create the"} +{"qid": "test3004", "pid": "331492", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "Photosynthesis\nplants, light-dependent reactions occur in the thylakoid membranes of the chloroplasts where they drive the synthesis of ATP and NADPH. The light-dependent reactions are of two forms: cyclic and non-cyclic. In the non-cyclic reaction, the photons are captured in the light-harvesting antenna complexes of photosystem II by chlorophyll and other accessory pigments (see diagram at right). The absorption of a photon by the antenna complex frees an electron by a process called photoinduced charge separation. The antenna system is at the core of the chlorophyll molecule of the photosystem II reaction center. That freed electron is transferred to the primary"} +{"qid": "test3004", "pid": "3967137", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "\"Light-independent reactions\"\nLight-independent reactions The light-independent reactions, or dark reactions, of photosynthesis are chemical reactions that convert carbon dioxide and other compounds into glucose. These reactions occur in the stroma, the fluid-filled area of a chloroplast outside the thylakoid membranes. These reactions take the products (ATP and NADPH) of light-dependent reactions and perform further chemical processes on them. These reactions are closely coupled to the thylakoid electron transport chain as reducing power provided by NADPH produced in the photosystem I is actively needed. The process of photorespiration, also known as C2 cycle, is also coupled to the dark reactions, as it results"} +{"qid": "test3004", "pid": "3967149", "query": "which is the site of the light dependent reactions of photosynthesis", "answer": "thylakoid membranes", "passage": "\"Light-independent reactions\"\nthe stroma caused by its phosphorylation. Light-independent reactions The light-independent reactions, or dark reactions, of photosynthesis are chemical reactions that convert carbon dioxide and other compounds into glucose. These reactions occur in the stroma, the fluid-filled area of a chloroplast outside the thylakoid membranes. These reactions take the products (ATP and NADPH) of light-dependent reactions and perform further chemical processes on them. These reactions are closely coupled to the thylakoid electron transport chain as reducing power provided by NADPH produced in the photosystem I is actively needed. The process of photorespiration, also known as C2 cycle, is also coupled to"} +{"qid": "test3006", "pid": "8493840", "query": "who is nebula on guardians of the galaxy", "answer": "Karen Gillan", "passage": "\"Nebula (comics)\"\nNebula (comics) Nebula is a fictional character appearing in American comic books published by Marvel Comics. Created by Roger Stern and John Buscema, the character first appeared in \"\"The Avengers\"\" #257 (July 1985). A pirate and mercenary operating in outer space, the character has frequently appeared as an enemy of the Avengers, Guardians of the Galaxy and the Silver Surfer. Nebula has appeared in various adaptations of the Marvel comics, including animated television series and video games. Karen Gillan portrays the character in the Marvel Cinematic Universe, beginning with the 2014 film \"\"Guardians of the Galaxy\"\" and its 2017 sequel"} +{"qid": "test3006", "pid": "13413614", "query": "who is nebula on guardians of the galaxy", "answer": "Karen Gillan", "passage": "\"Karen Gillan\"\nKaren Gillan Karen Gillan (born 28 November 1987) is a Scottish actress, director, screenwriter and model. She played the role of Amy Pond, companion to the Eleventh Doctor, in the BBC One science fiction series \"\"Doctor Who\"\" (2010–2013). She has received wide recognition for portraying Nebula in the Marvel Cinematic Universe films \"\"Guardians of the Galaxy\"\" (2014), \"\"Guardians of the Galaxy Vol. 2\"\" (2017), \"\"\"\" (2018) and \"\"\"\" (2019) and also played Martha in \"\"\"\" (2017). In 2018, she released her first featured film as a writer and director, titled \"\"The Party's Just Beginning\"\". Gillan was born and raised in"} +{"qid": "test3007", "pid": "18421675", "query": "who played desmond doss father in hacksaw ridge", "answer": "Hugo Weaving", "passage": "\"Hacksaw Ridge\"\nPegler, Richard Pyros, Ben Mingay, Firass Dirani, Nico Cortez, Michael Sheasby, Goran Kleut, Jacob Warner, Harry Greenwood, Damien Thomlinson, Ben O'Toole, Benedict Hardie, Robert Morgan, Ori Pfeffer, Milo Gibson, and Nathaniel Buzolic, Hugo Weaving, and Ryan Corr – was announced between November 2014 and October 2015. The younger Doss was played by Darcy Bryce. Garfield plays Desmond Doss, a US Army medic awarded the Medal of Honor by President Harry S. Truman for saving lives during the Battle of Okinawa in World War II. Garfield had high regards for Doss, and venerated him for his act of bravery, hailing him"} +{"qid": "test3007", "pid": "18421673", "query": "who played desmond doss father in hacksaw ridge", "answer": "Hugo Weaving", "passage": "\"Hacksaw Ridge\"\nbeing Australian, including Rachel Griffiths (Doss' mother), Teresa Palmer (Doss' wife), Sam Worthington (unit leader), Hugo Weaving (as Doss' father), Richard Roxburgh (as a colonel) and Luke Bracey (as Smitty, one of Doss' most antagonistic unit members). Rounding out the cast was American actor Vince Vaughn. According to producer Bill Mechanic, Australian state and federal subsidies made financing the film possible. On February 9, 2015, IM Global closed a deal to finance the film, and also sold the film into the international markets. On the same day, Lionsgate acquired the North American distribution rights to the film. Chinese distribution rights"} +{"qid": "test3009", "pid": "10897435", "query": "when did canada sign the un declaration of indigenous rights", "answer": "May 2016", "passage": "\"Declaration on the Rights of Indigenous Peoples\"\nDeclaration on the Rights of Indigenous Peoples The United Nations Declaration on the Rights of Indigenous Peoples (UNDRIP or DOTROIP) was adopted by the United Nations General Assembly on Thursday, September 13th. 2007, by a majority of 144 states in favour, 4 votes against, and 11 abstentions. The groundwork toward this declaration can be seen as far back as 1923 and 1925 in the works of Haudenosaunee Chief Deskaheh and Māori T.W. Ratana who attempted to bring issues of Canada and New Zealand's failure to uphold treaties to the League of Nations, United Nations' precursor. In May 2016 Canada officially"} +{"qid": "test3009", "pid": "10897458", "query": "when did canada sign the un declaration of indigenous rights", "answer": "12 November 2010", "passage": "\"Declaration on the Rights of Indigenous Peoples\"\nPeoples, calling the two heads of state \"\"visionary leaders\"\" and demanding Canada resign its membership on the United Nations Human Rights Council. On 3 March 2010, in the Speech From the Throne, the Governor General of Canada announced that the government was moving to endorse the declaration. \"\"We are a country with an Aboriginal heritage. A growing number of states have given qualified recognition to the United Nations Declaration on the Rights of Indigenous Peoples. Our Government will take steps to endorse this aspirational document in a manner fully consistent with Canada’s Constitution and laws.\"\" On 12 November 2010, Canada"} +{"qid": "test3011", "pid": "18118358", "query": "where does the coral sea meet the pacific ocean", "answer": "in the east", "passage": "\"Acropora cerealis\"\nbut is likely to be threatened by the global reduction of coral reefs, the increase of temperature causing coral bleaching, climate change, human activity, the crown-of-thorns starfish (\"\"Acanthaster planci\"\") and disease. It occurs in the eastern and western Indian Ocean, Australia, and the eastern central, northwest, central-western and southwest Pacific Ocean; from the Gulf of Aden and Red Sea to the Hawaiian Islands and Johnson Atoll. It was described by Dana in 1846. Acropora cerealis Acropora cerealis is a species of acroporid coral found throughout the Indian and Pacific oceans, from the Red Sea and the Gulf of Aden to"} +{"qid": "test3011", "pid": "14964768", "query": "where does the coral sea meet the pacific ocean", "answer": "South Pacific", "passage": "\"Borders of the oceans\"\nOcean (excluding the seas it contains) as follows: The 3rd edition, currently in force, of the International Hydrographic Organization's (IHO) \"\"Limits of Oceans and Seas\"\" defines the limits of the South Pacific Ocean (excluding the seas it contains) as follows: Note that these definitions exclude any marginal waterbodies that are separately defined by the IHO (such as the Gulf of Alaska and Coral Sea), though these are usually considered to be part of the Pacific Ocean. In its 2002 draft, the IHO redefined the Pacific Ocean, moving its southern limit to 60°S, with the waters south of that line identified"} +{"qid": "test3012", "pid": "16757378", "query": "who is in charge of new issues not mentioned in the constitution", "answer": "Congress", "passage": "\"Myron Norton\"\ncalled The Hounds, who were charged with serious crimes resulting from a rampage against Chilean immigrants. As soon as news arrived from Washington, D.C., that Congress had failed to pass a bill authorizing territorial status for newly conquered California, Norton and Kimball H. Dimmick convened a committee in San Jose that nevertheless issued a call for a state constitutional convention. In March 1849 he was on a committee in San Francisco that urged the drafting of a state constitution instead of a territorial one. In a California-wide election for delegates, Norton received the second-highest number of votes, after Edward Gilbert."} +{"qid": "test3012", "pid": "12077279", "query": "who is in charge of new issues not mentioned in the constitution", "answer": "Congress", "passage": "\"Joseph P. Kamp\"\nrecords for the House Lobby Investigating Committee. This time, Kamp was acquitted of the charge, as the House Committee failed to orderly disclose why Kamp was in default. Others who also defied Congress over similar issues include: Edward A. Rumely of the Committee for Constitutional Government and Merwin K. Hart of the National Economic Council, Inc.. Kamp was acquitted of a second contempt charge in relationship with the lobbying activities of the Constitutional Educational League, an anti-communist organization. Kamp also served as a policy advisor to the Liberty Lobby. Kamp was a great-uncle of Jon Voight through his mother. Kamp"} +{"qid": "test3012", "pid": "4818067", "query": "who is in charge of new issues not mentioned in the constitution", "answer": "Congress", "passage": "\"Provisional Constitution of the Confederate States\"\nneglected to include important features such as a ratification process and decided to omit any mention of controversial issues regarding slavery, and tariffs. Such issues were to be decided in the permanent Constitution. But the most significant difference from the United States Constitution was that under the Provisional Constitution, the Provisional Confederate Congress was a unicameral legislature, that is, it had only one chamber, and voting was by states. This was changed to the more familiar bicameral legislature in the permanent Constitution, with Senators and Representatives voting individually. Slavery is dealt with very briefly in the Provisional Constitution. Since the"} +{"qid": "test3013", "pid": "13535887", "query": "what type of writing did ancient egypt use", "answer": "hieroglyphs", "passage": "\"Hieroglyphics: The Writings of Ancient Egypt\"\nHieroglyphics: The Writings of Ancient Egypt Hieroglyphics: The Writings of Ancient Egypt is a primer on Egyptian hieroglyphics by Maria Carmela Betrò, later professor for Egyptology at Pisa University (published in Italian as \"\"Geroglifici\"\" in 1995; English translation 1996). The standard version of analytic Egyptian hieroglyphs is based upon the 26 categories of the Gardiner's Sign List, (about 700 signs). That categorization is still the basic standard. The approach in \"\"Hieroglyphics: The Writings of Ancient Egypt\"\" is to use some of the Gardiner sign categories, to focus on specific major-use signs. The end of a thematic chapter then has synoptic"} +{"qid": "test3013", "pid": "2072916", "query": "what type of writing did ancient egypt use", "answer": "hieroglyphs", "passage": "\"Clay tablet\"\npictorial concept, a logogram, as the meaning of the word. Early writing also began in Ancient Egypt using hieroglyphs. Early hieroglyphs and some of the modern Chinese characters are other examples of pictographs. The Sumerians later shifted their writing to Cuneiform, defined as \"\"Wedge writing\"\" in Latin, which added phonetic symbols, syllabograms. Text on clay tablets took the forms of myths, fables, essays, hymns, proverbs, epic poetry, laws, plants, and animals. What these clay tablets allowed was for individuals to record who and what was significant. An example of these great stories was The Story of Gilgamesh. This story would"} +{"qid": "test3013", "pid": "6898682", "query": "what type of writing did ancient egypt use", "answer": "hieroglyphs", "passage": "\"History of writing\"\nconsidered an example of proto-writing or whether it is actual writing of the logographic-syllabic type of the other Bronze Age writing systems. Mortimer Wheeler recognises the style of writing as boustrophedon, where \"\"this stability suggests a precarious maturity.\"\" The first pure alphabets (properly, \"\"abjads\"\", mapping single symbols to single phonemes, but not necessarily each phoneme to a symbol) emerged around 1800 BC in Ancient Egypt, as a representation of language developed by Semitic workers in Egypt, but by then alphabetic principles had a slight possibility of being inculcated into Egyptian hieroglyphs for upwards of a millennium. These early abjads remained"} +{"qid": "test3014", "pid": "15190135", "query": "where is salt mined in the united states", "answer": "Hutchinson, Kansas", "passage": "Strataca\nStrataca Strataca is a salt mine museum in Hutchinson, Kansas, United States. It was previously known as the \"\"Kansas Underground Salt Museum\"\". The museum is built within one of the world’s largest deposits of rock salt and provides the opportunity to go beneath the Earth’s surface. It is a unique destination attraction for exploring an environs carved from salt deposits formed 275 million years ago. The museum is located in the Hutchinson Salt Company mine which began operation in 1923 as Carey Salt Company. There are 14 other salt mines in the United States, but none of them are accessible"} +{"qid": "test3014", "pid": "15190162", "query": "where is salt mined in the united states", "answer": "Hutchinson, Kansas", "passage": "Strataca\nSmith’s costume from \"\"The Matrix\"\". Strataca Strataca is a salt mine museum in Hutchinson, Kansas, United States. It was previously known as the \"\"Kansas Underground Salt Museum\"\". The museum is built within one of the world’s largest deposits of rock salt and provides the opportunity to go beneath the Earth’s surface. It is a unique destination attraction for exploring an environs carved from salt deposits formed 275 million years ago. The museum is located in the Hutchinson Salt Company mine which began operation in 1923 as Carey Salt Company. There are 14 other salt mines in the United States, but"} +{"qid": "test3014", "pid": "664193", "query": "where is salt mined in the united states", "answer": "Western New York", "passage": "\"Livingston County, New York\"\nSalt mines opened in the towns of Leicester (Cuylerville), Livonia, Mount Morris, and York (Retsof). The Retsof mine became the largest salt-producing mine in the United States and the second largest in the world. The industry was a major employer throughout most of the 20th century until the mine collapsed and flooded in 1994. American Rock Salt opened a new mine in 1997 at Hampton Corners in the Town of Groveland and soon afterwards became the largest operating salt mine in the U.S. Once the terrestrial lands of the Seneca Indians, a wide area in Western New York known as"} +{"qid": "test3014", "pid": "3118205", "query": "where is salt mined in the united states", "answer": "Western New York", "passage": "\"Western New York\"\ntake advantage of this, the state has created the Niagara Wine Trail. To a certain extent, viticulture is also prominent in Chautauqua County, where Welch's has a long history; the western Finger Lakes also have a wine industry. American Rock Salt, the largest operating salt mine in the United States, is located in Livingston County. During the late 1990s, then-Governor George Pataki signed an agreement granting the Seneca Nation of New York the right to acquire and build three full-scale casino gaming operations. The three casinos (Seneca Niagara Casino in Niagara Falls, Seneca Allegany Casino in Salamanca and the controversial"} +{"qid": "test3015", "pid": "974036", "query": "who started the guinness book of world records", "answer": "Sir Hugh Beaver", "passage": "\"Guinness World Records\"\nGuinness World Records Guinness World Records, known from its inception in 1955 until 2000 as The Guinness Book of Records and in previous United States editions as The Guinness Book of World Records, is a reference book published annually, listing world records both of human achievements and the extremes of the natural world. The brainchild of Sir Hugh Beaver, the book was co-founded by brothers Norris and Ross McWhirter in Fleet Street, London in August 1954. The book itself holds a world record, as the best-selling copyrighted book of all time. As of the 2019 edition, it is now in"} +{"qid": "test3015", "pid": "12473998", "query": "who started the guinness book of world records", "answer": "Sir Hugh Beaver", "passage": "Guinness\nthe stout and a description of how it is made. Visitors can sample the smells of each Guinness ingredient in the Tasting Rooms, which are coloured with a unique lighting design that emits Guinness' gold and black branding. The \"\"Guinness Book of Records\"\" started as a Guinness marketing giveaway, based on an idea of its then Managing Director, Sir Hugh Beaver. Its holding company, Guinness World Records Ltd, was owned by Guinness plc, subsequently Diageo, until 2001. Guinness Guinness () is an Irish dry stout that originated in the brewery of Arthur Guinness at St. James's Gate, Dublin, Ireland, in"} +{"qid": "test3015", "pid": "974039", "query": "who started the guinness book of world records", "answer": "Norris and Ross McWhirter", "passage": "\"Guinness World Records\"\na book supplying the answers to this sort of question might prove successful. Beaver's idea became reality when Guinness employee Christopher Chataway recommended University friends Norris and Ross McWhirter, who had been running a fact-finding agency in London. The twin brothers were commissioned to compile what became \"\"The Guinness Book of Records\"\" in August 1954. A thousand copies were printed and given away. After the founding of \"\"The Guinness Book of Records\"\" at 107 Fleet Street, London, the first 198-page edition was bound on 27 August 1955 and went to the top of the British best seller lists by Christmas."} +{"qid": "test3015", "pid": "1584547", "query": "who started the guinness book of world records", "answer": "Hugh Beaver", "passage": "\"Ross McWhirter\"\nfacts and figures to newspapers, yearbooks, encyclopaedias and advertisers\"\". While building up their accounts, they both worked as sports journalists. One of the athletes they knew and covered was runner Christopher Chataway, an employee at Guinness who recommended them to Hugh Beaver. After an interview in 1954 in which the Guinness directors enjoyed testing the twins' knowledge of records and unusual facts, the brothers agreed to start work on the book that would become \"\"The Guinness Book of Records\"\". In August 1955, the first slim green volume – 198 pages long – was at the bookstalls, and in four more"} +{"qid": "test3016", "pid": "689861", "query": "which president supported the creation of the environmental protection agency (epa)", "answer": "Richard Nixon", "passage": "\"United States Environmental Protection Agency\"\nUnited States Environmental Protection Agency The Environmental Protection Agency (EPA) is an independent agency of the United States federal government for environmental protection. President Richard Nixon proposed the establishment of EPA on July 9, 1970 and it began operation on December 2, 1970, after Nixon signed an executive order. The order establishing the EPA was ratified by committee hearings in the House and Senate. The agency is led by its Administrator, who is appointed by the President and approved by Congress. The current acting Administrator following the resignation of Scott Pruitt is Deputy Administrator Andrew Wheeler. The EPA is not"} +{"qid": "test3016", "pid": "11886254", "query": "which president supported the creation of the environmental protection agency (epa)", "answer": "Richard Nixon", "passage": "\"Environmental policy of the United States\"\nthe National Environmental Policy Act, and the creation of such environmental advocacy groups as the Natural Resources Defense Council. On January 1, 1970, President Richard Nixon signed the National Environmental Policy Act (NEPA), beginning the 1970s as the environmental decade. NEPA created the Council on Environmental Quality which oversaw the environmental impact of federal actions. Later in the year, Nixon created the Environmental Protection Agency (EPA), which consolidated environmental programs from other agencies into a single entity. The legislation during this period concerned primarily first-generation pollutants in the air, surface water, groundwater, and solid waste disposal. Air pollutants such as"} +{"qid": "test3016", "pid": "689873", "query": "which president supported the creation of the environmental protection agency (epa)", "answer": "Richard Nixon", "passage": "\"United States Environmental Protection Agency\"\nimplemented voluntary programs and a cluster rule for multimedia regulation. At time, the environment was increasingly being recognized as a regional issue, which was reflected in 1990 amendment of the Clean Air Act and new approaches by the agency. The EPA is led by an Administrator of the Environmental Protection Agency. From February 2017 to July 2018, Scott Pruitt served as the 14th Administrator. The current acting administrator is Deputy Administrator Andrew R. Wheeler. Creating 10 EPA regions was an initiative that came from President Richard Nixon. \"\"See\"\" Standard Federal Regions. Each EPA regional office is responsible within its states"} +{"qid": "test3016", "pid": "10584994", "query": "which president supported the creation of the environmental protection agency (epa)", "answer": "Richard Nixon", "passage": "\"Reorganization Plan No. 3\"\nReorganization Plan No. 3 Reorganization Plan No. 3 (, ) was a presidential directive submitted to the United States Congress on July 9, 1970 by President Richard Nixon establishing the Environmental Protection Agency (EPA) and setting forth the components of the National Oceanic and Atmospheric Administration (NOAA). The order consolidated components from different Federal agencies to form the EPA, \"\"a strong, independent agency\"\" that would establish and enforce federal environmental protection laws. Unlike other agencies such as OSHA, the EPA was not established by a single enabling act of Congress. According to author Jack Lewis, the decade of the 1960s"} +{"qid": "test3016", "pid": "12573978", "query": "which president supported the creation of the environmental protection agency (epa)", "answer": "Richard Nixon", "passage": "\"Pollution in the United States\"\nThe United States Environmental Protection Agency (EPA) is an agency of the federal government of the United States charged with protecting human health and with safeguarding the natural environment: air, water, and land. The EPA was proposed by President Richard Nixon and began operation on 2 December 1970, when it was passed by Congress, and signed into law by President Nixon, and has since been chiefly responsible for the environmental policy of the United States. Environmental Justice is defined as \"\"the fair treatment and meaningful involvement of all people regardless of race, color, sex, national origin, or income with respect"} +{"qid": "test3017", "pid": "3200082", "query": "when was the last time someone won the super bowl back to back", "answer": "2004", "passage": "\"Super Bowl XXXIX\"\n13-3 record, when they beat the Falcons and Vikings in the reverse order that they did in the 2004-05 playoffs. They exacted revenge on New England in Super Bowl LII, edging them 41–33. This is the last time that a team has won back-to-back Super Bowls, with the Patriots losing their second playoff game a year later and then, for the next eight years, every team either losing their first playoff game or missing them altogether. The streak was broken in 2014 when the Seahawks defeated the Panthers and ultimately advanced to the Super Bowl, only to lose to a"} +{"qid": "test3017", "pid": "8915770", "query": "when was the last time someone won the super bowl back to back", "answer": "2004", "passage": "\"History of the Green Bay Packers\"\nXIII and XIV following the 1978 and 1979 seasons and remain, to date, the only team to win back-to-back Super Bowl titles more than once, the San Francisco 49ers won Super Bowls XXIII and XXIV following the 1988 and 1989 seasons, the Dallas Cowboys won Super Bowls XXVII and XXVIII following the 1992 and 1993 seasons, the Denver Broncos won Super Bowls XXXII and XXXIII following the 1997 and 1998 seasons, and most recently, the New England Patriots won Super Bowls XXXVIII and XXXIX following the 2003 and 2004 seasons. After the franchise's victory in Super Bowl II, Vince Lombardi"} +{"qid": "test3017", "pid": "14383345", "query": "when was the last time someone won the super bowl back to back", "answer": "2004", "passage": "\"Cowboys–Steelers rivalry\"\ntwo interceptions to Cowboys cornerback Larry Brown, who would be named Super Bowl MVP for his efforts. The Steelers have remained competitive since and have won two more Super Bowls (Super Bowl XL, Super Bowl XLIII) and losing one (Super Bowl XLV) while the Cowboys have not been back to the Super Bowl since Super Bowl XXX and have won only three playoff games from 1996 onward. The two teams have only met four times since the 1998 NFL season. The Steelers defeated the Cowboys in the first two games, winning 24–20 in 2004 and 20–13 in 2008. The Cowboys"} +{"qid": "test3017", "pid": "7167385", "query": "when was the last time someone won the super bowl back to back", "answer": "2004", "passage": "\"Super Bowl XLVII\"\nThe last time a metropolitan area won the World Series and Super Bowl in the same season was when the Boston Red Sox won the 2004 World Series followed by the Patriots winning Super Bowl XXXIX (and the Patriots won Super Bowl XXXVIII earlier in 2004). As the 49ers – who were attempting to join the New York Giants and Green Bay Packers as the only teams to win a Super Bowl in three different decades – were the designated home team in the annual rotation between AFC and NFC teams, San Francisco elected to wear their red jerseys, which"} +{"qid": "test3017", "pid": "20917219", "query": "when was the last time someone won the super bowl back to back", "answer": "2004", "passage": "\"Brady/Belichick Era\"\nbecame the oldest MVP in the NFL, at 40. He also became the oldest quarterback to lead the NFL in passing with 4,577 yards. After defeating the Tennessee Titans and Jacksonville Jaguars in the playoffs, they faced backup quarterback Nick Foles and the high-powered Philadelphia Eagles in Super Bowl LII. The Patriots tried to win back-to-back Super Bowls since they won back-to-back from 2003-2004. In a high-scoring shootout, Brady was slated to lead the Patriots to another comeback victory late in the fourth quarter when Eagles defensive end Brandon Graham strip sacked Brady and the ball was recovered by the"} +{"qid": "test3018", "pid": "3090093", "query": "who plays the protagonist peter rabbit in the 2018 motion picture release", "answer": "James Corden", "passage": "\"Peter Rabbit\"\nPictures Animation, was released on 9 February 2018. James Corden voices Peter Rabbit and Rose Byrne stars in the live-action role of the lead female named Bea (based on Potter herself). Other cast members include Margot Robbie, Daisy Ridley and Elizabeth Debicki. Will Gluck directed and produced the film and Zareh Nalbandian also produced, while Lauren Abrahams oversaw the project for Sony Pictures Animation. More recently, John Patrick has adapted a number of Beatrix Potter's tales into a live-action/animated musical feature film for his brand-new film studio, called Storybook Studio. The film is titled \"\"Beatrix Potter's The Tales of Peter"} +{"qid": "test3018", "pid": "19229260", "query": "who plays the protagonist peter rabbit in the 2018 motion picture release", "answer": "James Corden", "passage": "\"Peter Rabbit (film)\"\nPeter Rabbit (film) Peter Rabbit is a 2018 American live-action/computer-animated comedy film directed by Will Gluck and written by Rob Lieber and Gluck, based on the stories of Peter Rabbit created by Beatrix Potter. The film stars the voice of James Corden as the title character, with Rose Byrne, Domhnall Gleeson, Sam Neill, Daisy Ridley, Elizabeth Debicki, and Margot Robbie also starring. The film was released on February 9, 2018, and grossed $351 million worldwide. A sequel is set to be released on February 7, 2020. In England's Lake District, Peter Rabbit, his cousin Benjamin Bunny, and Peter's triplet sisters"} +{"qid": "test3018", "pid": "13817008", "query": "who plays the protagonist peter rabbit in the 2018 motion picture release", "answer": "James Corden", "passage": "\"Will Gluck\"\nOlive Bridge Entertainment production company reupped its film and television deal with Sony Pictures Entertainment encompassing Columbia Pictures and Sony Pictures Television. His latest movie, \"\"Peter Rabbit\"\", was released on February 9, 2018. It stars Rose Byrne, Domhnall Gleeson, and the voices of James Corden, Margot Robbie, Daisy Ridley, Elizabeth Debicki, and Sia. It became his most successful film financially to date grossing over 351 million worldwide. Will Gluck Will Gluck is an American film director, film producer, screenwriter, songwriter, and composer. Gluck is the son of American academic and Japanologist Carol Gluck and architect Peter L. Gluck. He began"} +{"qid": "test3018", "pid": "3504082", "query": "who plays the protagonist peter rabbit in the 2018 motion picture release", "answer": "James Corden", "passage": "\"The Tale of Peter Rabbit\"\nby Will Gluck, was released. Voice roles were played by James Corden, Daisy Ridley, Margot Robbie, and Elizabeth Debicki, and live action roles played by Domhnall Gleeson, Rose Byrne, and Sam Neill. The Tale of Peter Rabbit The Tale of Peter Rabbit is a British children's book written and illustrated by Beatrix Potter that follows mischievous and disobedient young Peter Rabbit as he is chased about the garden of Mr. McGregor. He escapes and returns home to his mother, who puts him to bed after dosing him with tea. The tale was written for five-year-old Noel Moore, son of Potter's"} +{"qid": "test3019", "pid": "7297817", "query": "who sings i'm going to soak up the sun", "answer": "American artist Sheryl Crow", "passage": "\"Soak Up the Sun\"\nSoak Up the Sun \"\"Soak Up the Sun\"\" is the title of a song recorded by American artist Sheryl Crow. It was released in March 2002 as the lead single from her album \"\"C'mon C'mon\"\". The song, which features backing vocals by Liz Phair, peaked at number one on the \"\"Billboard\"\" Adult Top 40 chart and reached number five on the Hot Adult Contemporary Tracks chart and number 17 on the Hot 100 chart, receiving a Gold certification from the Recording Industry Association of America (RIAA) in 2005 for sales exceeding 500,000 copies. In addition, \"\"Soak Up the Sun\"\" (remixed"} +{"qid": "test3019", "pid": "7297819", "query": "who sings i'm going to soak up the sun", "answer": "American artist Sheryl Crow", "passage": "\"Soak Up the Sun\"\non the North Shore of Oahu, Hawaii features Crow performing on the beach, as well as various vacationers surfing in the ocean and jumping off a waterfall. European CD single (Cat No.: 497 688-2) UK CD single 1 (Cat No.: 497 704-2) UK CD single 2 (Cat. No.: 497 705-2) CD remixes single (Cat. No.: 497 721-2) Soak Up the Sun \"\"Soak Up the Sun\"\" is the title of a song recorded by American artist Sheryl Crow. It was released in March 2002 as the lead single from her album \"\"C'mon C'mon\"\". The song, which features backing vocals by Liz"} +{"qid": "test302", "pid": "18345799", "query": "what is the meaning of the name gomez", "answer": "man", "passage": "\"For You (Selena Gomez album)\"\n(2013), though was not featured on the album for unknown reasons. \"\"The Heart Wants What It Wants\"\" differs from Gomez's previous releases, featuring elements of R&B music and a minimal electropop beat. The song lyrically speaks of a troubled romance, and was inspired by Gomez's publicized relationship with Canadian pop singer Justin Bieber. Gomez premiered the song on November 6 during an interview with Ryan Seacrest, and said \"\"It's also a step for me knowing like, 'Ok, this is what I'm about to say, and I need to say it when I'm ready' [...] And I think after this year,"} +{"qid": "test302", "pid": "14375199", "query": "what is the meaning of the name gomez", "answer": "man", "passage": "\"Ron Gomez\"\nwho was of both French and Spanish descent and spoke both languages from birth. He married a fully French woman named Marie Griffon, Gomez's grandmother. Gomez's third novel. entitled \"\"Neat\"\", is based on the life of his grandfather, who lived to be 101. Gomez's maternal grandfather was John Alleman, fully French, and married to a French woman by the name of Lambert. She died when Gomez's mother was only twelve. Gomez's heritage is hence at least three-fourths French. Gomez was born and reared in Baton Rouge to Laurence Fletcher Gomez (1897–1964) and the former Anastasie Marie Alleman (1896–1983), originally from"} +{"qid": "test302", "pid": "1817197", "query": "what is the meaning of the name gomez", "answer": "man", "passage": "\"Curt Schilling\"\nincensed Schilling by stating that the friendship between Schilling and teammate Randy Johnson \"\"was merely cosmetic.\"\" In interviews in October 2004 and February 2006, Schilling said about Gomez: There are a lot of [bad people] in that industry, Pedro Gomez, Joel Heyman, to name a few. People with so little skill in their profession that they need to speculate, make up, fabricate, to write something interesting enough to be printed. What makes them bad people? I am sure I cannot nail the exact reason, but I know some. Jealousy, bitterness, the need to be 'different,' I am sure there are"} +{"qid": "test3020", "pid": "2510843", "query": "where did the last name edwards come from", "answer": "Scotland", "passage": "Larne\nsurvives is \"\"Olderfleet\"\". The ending \"\"-fleet\"\" comes from the Norse \"\"fljot\"\", meaning \"\"inlet\"\". \"\"Older-\"\" may come from the Norse \"\"oldu\"\", meaning \"\"wave\"\". However, P.W. Joyce in his \"\"Irish Names of Places\"\" suggests that it comes from \"\"Ollarbha\"\", the Irish name for the river. In the 13th Century the Scots Bissett family built Olderfleet Castle at Curran Point. In 1315 Edward the Bruce of Scotland (brother of Robert the Bruce, King of Scotland) landed at Larne with his 6000 strong army en route to conquer Ireland, where Olderfleet Castle was of strategic importance. Edward saw Ireland as another front in the"} +{"qid": "test3020", "pid": "20820720", "query": "where did the last name edwards come from", "answer": "England", "passage": "\"Siege of Berwick (1333)\"\npride he would have to come to the relief of Berwick, just as Edward II had come to the relief of Stirling Castle in 1314. The army that Douglas had spent so much time gathering was now compelled to take to the field. The Scottish army is estimated to have been some 13,000 strong, significantly larger than the English total of approximately 9,000 men. Douglas entered England on 11July, the last day of Seton's truce. He advanced eastwards to the little port of Tweedmouth, which was destroyed in sight of the English army; Edward III did not move. Sir William"} +{"qid": "test3020", "pid": "13350833", "query": "where did the last name edwards come from", "answer": "England", "passage": "\"Cows Creamery\"\nWhile developing the recipe for Avonlea Clothbound Cheddar, Linletter and Prince Edward Island cheese maker Armand Bernard created a second cheese, PEI Cheddar. The company makes Avonlea Clothbound Cheddar in wheels, and ages it for 12 months. Avonlea Clothbound Cheddar gets the \"\"clothbound\"\" name from the \"\"traditional cheddar-making technique\"\", of wrapping it in cheese cloth, a method that originated in Somerset, England (the town of Cheddar, where Cheddar cheese gets its name from is in the county of Somerset). The name Avonlea comes from link between Prince Edward Island and Anne of Green Gables. Avonlea Clothbound Cheddar won its category's"} +{"qid": "test3020", "pid": "17206151", "query": "where did the last name edwards come from", "answer": "England", "passage": "\"Tom Canty\"\nto be crowned King. Tom was about to be crowned king when Edward comes in and proves that he is the rightful King by knowing where the Great Seal of England was, hiding it just after they had switched clothes. Edward is crowned King Edward VI of England, and names Tom his royal ward. The end of the book mentions that Tom lived to be a very old man, whereas Edward tragically died at the age of 15. Tom Canty Thomas \"\"Tom\"\" Canty is a fictitious character from Mark Twain's novel \"\"The Prince and the Pauper.\"\" He was born the"} +{"qid": "test3020", "pid": "2203283", "query": "where did the last name edwards come from", "answer": "Wales", "passage": "\"Barry John\"\nagainst Wales match on 24 January, and was selected alongside Edwards. The game was played in atrocious muddy conditions, and a last minute try from Edwards snatched a 6–6 draw Both John and Edwards had a substandard game that day, but they combined well in the last move of the game to avoid defeat. A week later on 31 January, John and Edwards faced the South Africans again, this time as part of the Barbarians. The South Africans produced their best play of the tour to come from behind to win 21–12. There was little rest for the two Cardiff"} +{"qid": "test3021", "pid": "408573", "query": "who is mostly responsible for writing the declaration of independence", "answer": "Thomas Jefferson", "passage": "\"Thomas Jefferson\"\ncan also be credited as the creator of the swivel chair, the first of which he created and used to write much of the Declaration of Independence. As Minister to France, Jefferson was impressed by the military standardization program known as the \"\"Système Gribeauval\"\", and initiated a program as president to develop interchangeable parts for firearms. For his inventiveness and ingenuity, he received several honorary Doctor of Law degrees. Jefferson is an icon of individual liberty, democracy, and republicanism, hailed as the author of the Declaration of Independence, an architect of the American Revolution, and a renaissance man who promoted"} +{"qid": "test3022", "pid": "18644812", "query": "who plays the saint of killers on preacher", "answer": "Graham McTavish", "passage": "\"Saint of Killers\"\n\"\"strengthens [the] ink\"\" of the Spaghetti western influence throughout. On 6 February 2014, AMC and Sony TV officially announced the development of \"\"Preacher\"\". In the series, he is portrayed by Scottish actor Graham McTavish. The Saint of Killers has also been referenced or parodied in other forms of media, including: Saint of Killers The Saint of Killers is a fictional character who appears in the comic book series \"\"Preacher\"\", published by Vertigo Comics in 1995. The Saint of Killers was created by writer Garth Ennis with artist Steve Dillon. The Saint is described as, \"\"a grim, taciturn, implacable killing machine\"\","} +{"qid": "test3022", "pid": "9503162", "query": "who plays the saint of killers on preacher", "answer": "Graham McTavish", "passage": "\"Graham McTavish\"\nto rave reviews from critics and audiences alike. He played Tommy Holiday, boxing trainer to Ricky Conlan (Tony Bellew), in \"\"Creed\"\". McTavish became the only actor to perform opposite Sylvester Stallone as both Rocky Balboa and John Rambo. McTavish plays the Saint of Killers in the AMC TV series \"\"Preacher\"\", having debuted in that role in the series' second episode, \"\"See\"\", in 5 June 2016. McTavish and his wife, Gwen, live in New Zealand with their two daughters, who were born c. 2012 and c. 2007. In April 2015, McTavish was the 17th Grand Marshall of New York City's Tartan"} +{"qid": "test3022", "pid": "18644774", "query": "who plays the saint of killers on preacher", "answer": "Graham McTavish", "passage": "\"Saint of Killers\"\nComics series \"\"Hitman\"\", centered on a \"\"wise-cracking assassin plying his trade in Gotham City\"\", and is portrayed by Graham McTavish in the television series adaptation of \"\"Preacher\"\". Ennis initially cited Lee Marvin and Clint Eastwood, both actors, as his inspiration for the Saint, with artists Dillon and Glenn Fabry making him look far more physically imposing. The Saint's character and the nature of his evil have been the subject of considerable critical attention. \"\"Empire\"\" ranked The Saint of Killers number 43 in their 50 Greatest Comic Characters of All Time, \"\"Topless Robot\"\" placed him number 3 in their Top 10"} +{"qid": "test3022", "pid": "9503158", "query": "who plays the saint of killers on preacher", "answer": "Graham McTavish", "passage": "\"Graham McTavish\"\nGraham McTavish Graham James McTavish (born 4 January 1961) is a Scottish film, television and voice actor. He is known for his roles as Dwalin in \"\"The Hobbit\"\" film trilogy, Dougal Mackenzie in the Starz series \"\"Outlander\"\" and the Saint of Killers in the AMC series \"\"Preacher\"\". McTavish was born in Glasgow, Scotland to Alec and Ellen McTavish. Alec was a politically active person, and political discourse was common in the McTavish household. The family left Glasgow when McTavish was a child. During the course of his life, he lived in Canada, England and Scotland before settling in New Zealand."} +{"qid": "test3022", "pid": "9503163", "query": "who plays the saint of killers on preacher", "answer": "Graham McTavish", "passage": "\"Graham McTavish\"\nDay Parade. Graham McTavish Graham James McTavish (born 4 January 1961) is a Scottish film, television and voice actor. He is known for his roles as Dwalin in \"\"The Hobbit\"\" film trilogy, Dougal Mackenzie in the Starz series \"\"Outlander\"\" and the Saint of Killers in the AMC series \"\"Preacher\"\". McTavish was born in Glasgow, Scotland to Alec and Ellen McTavish. Alec was a politically active person, and political discourse was common in the McTavish household. The family left Glasgow when McTavish was a child. During the course of his life, he lived in Canada, England and Scotland before settling in"} +{"qid": "test3023", "pid": "17967565", "query": "where does kfc get their chicken in south africa", "answer": "reared in South Africa", "passage": "\"KFC in South Africa\"\nKFC in South Africa KFC is the largest fast food chain in South Africa. As of 2016, there are 828 KFC outlets in South Africa, and the company dominates the fast food market. 10 percent of outlets are company owned, and 90 percent are franchise owned. Outlets sell the regional pap dish. South Africa is one of the few countries where KFC does not sell PepsiCo owned soft drinks, due to the company's historically small presence in the country. All of the chicken sold is reared in South Africa. KFC first entered the South African market in 1971. The company"} +{"qid": "test3023", "pid": "14263615", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"Double Down (sandwich)\"\nDouble Down (sandwich) The Double Down is a dish offered by Kentucky Fried Chicken (KFC) restaurants where a \"\"sandwich\"\" is formed by two pieces of fried chicken rather than the more usual halves of a bread roll. The Double Down contains bacon, cheese, and The Colonel's secret sauce between two pieces of fried chicken fillet. Variants offered by KFC have included grilled instead of fried chicken fillets and fillets with Zinger spicy coating. KFC South Africa premiered the Double Down in March 2013. To obtain its halal certification, the bacon is replaced with a slice of processed smoked chicken. On"} +{"qid": "test3023", "pid": "13303548", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"Roger Eaton\"\nRoger Eaton Roger Eaton is the current Chief Executive Officer of YUM! Brands Inc. and Director of Molson Coors Brewing Company. Born in South Africa, Eaton moved to Australia in 1984. Prior to becoming President and Chief Concept Officer of Kentucky Fried Chicken (KFC), he was Senior Vice President/Managing Director of YUM! Restaurants International South Pacific from 2000 to 2008. In April 2009, he appeared in an American commercial promoting the introduction of Kentucky Grilled Chicken to the KFC menu. In May 2009, he appeared again in an American commercial to announce the ending of the free Kentucky Grilled Chicken"} +{"qid": "test3023", "pid": "8244367", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"Chicken Licken (restaurant)\"\noption than that of its main competitors in South Africa, KFC and Nando's. Chicken Licken was ranked second after KFC in the Fast Food and Restaurant Chains category of the \"\"Sunday Times\"\" Markinor 2007 Top Brands Survey, followed closely by Nando's which was ranked second in the previous year. The survey was based on consumer interviews and took into account factors such as brand awareness and trust. Chicken Licken is a client of the Net#work BBDO advertising agency. The brand is known for its humorous television commercials. Early Chicken Licken commercials were conceptualised by and starred actor and creative director"} +{"qid": "test3023", "pid": "19627222", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"KFC Index\"\nthat the Namibian dollar was undervalued by 33% at that time. The index takes its name from the international fast food chain, Kentucky Fried Chicken (KFC) and modeled on The Economist´s “Big Mac Index”, which covers countries with McDonald's presence (about 60 countries). In Africa, the McDonald's chain is only present in Morocco, South Africa and Egypt. KFC, on the other hand, has operations in almost 20 African countries; the highest of any international fast food chain and therefore a more applicable benchmark to use. The index was not intended as a precise gauge of currency misalignment, merely a tool"} +{"qid": "test3023", "pid": "8244369", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"Chicken Licken (restaurant)\"\nIn 2013 he won the Marketing Leadership and Innovation Award category of the Loerie Awards. Chicken Licken obtains its chickens from Rainbow Chicken Limited, a JSE-listed company which is South Africa's largest producer of chickens. It has imported chickens from Brazil in the past when Rainbow was unable to meet the demand. It obtains its spices from Robertsons Spices, a Unilever brand of herbs and spices. Chicken Licken uses fryers supplied by Henny Penny Corporation, an American manufacturer of cooking equipment used by major fast food companies such as KFC and McDonald's. Chicken Licken (restaurant) Chicken Licken is a South"} +{"qid": "test3023", "pid": "656332", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"Fast food restaurant\"\nRussian cities. There are also local chains like Teremok specializing in Russian cuisine or having elements of it added into their menu. KFC is the most popular fast food chain in South Africa according to a 2010 \"\"Sunday Times\"\" survey. Chicken Licken, Wimpy and Ocean Basket along with Nando's and Steers are examples of homegrown franchises that are highly popular within the country. McDonald's, Subway and Pizza Hut have a significant presence within South Africa. In Hong Kong, although McDonald's and KFC are quite popular, three major local fast food chains provide Hong Kong style fast food, namely Café de"} +{"qid": "test3023", "pid": "17967566", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"KFC in South Africa\"\nwas forced to divest its 60 company owned outlets and trademarks to a South African holding company called Devco in 1987 after the US Congress passed a law forbidding American companies from owning South African assets. The company's 120 franchised outlets were not affected. KFC continued to collect an administrative fee from Devco. The company reacquired its former assets when sanctions were lifted in 1994. By 1994 there were around 300 KFC outlets in the country. KFC in South Africa KFC is the largest fast food chain in South Africa. As of 2016, there are 828 KFC outlets in South"} +{"qid": "test3023", "pid": "2539130", "query": "where does kfc get their chicken in south africa", "answer": "South Africa", "passage": "\"Kohlberg Kravis Roberts\"\nthe United States, Italy and South Africa. In August 2014, KKR announced it was investing $400 million to acquire Fujian Sunner Development, China's largest chicken farmer, which breeds, processes and supplies frozen and fresh chickens to consumers and corporate clients, such as KFC and McDonald's, across China. In September 2014, the firm invested $90 million in a lighting and electrics firm Savant Systems. In January 2015, KKR confirmed its purchase of British rail ticket website thetrainline.com, previously owned by Exponent. The purchase sum is unknown. On October 12, 2015, KKR announced that it has entered into definitive agreement with Allianz"} +{"qid": "test3024", "pid": "14213620", "query": "who does april end up with on parks and rec", "answer": "Andy", "passage": "\"April Ludgate\"\nparty at which Ron and Ann go around fixing all of the problems in her and Andy's house. She becomes a member of Leslie's campaign as the \"\"youth outreach\"\". April takes over a large portion of Leslie's duties in the Parks and Rec department towards the end of the season to allow Leslie to concentrate on the election. April is shown to somewhat enjoy and excel in this position. In \"\"Bus Tour\"\", April becomes legally known as April Ludgate-Dwyer. April is working as Ben's assistant at Washington D.C. as he successfully runs a congressional re-election campaign. She actively supports Andy"} +{"qid": "test3024", "pid": "15531582", "query": "who does april end up with on parks and rec", "answer": "Andy", "passage": "\"Andy and April's Fancy Party\"\nappropriate for the two characters, and he enjoyed the progression of Leslie going from dreading the wedding to accepting it. Heisler wrote, \"\"Truly, I don't think I've ever watched an episode of \"\"Parks & Rec\"\" without feeling great at the end.\"\" Eric Sundermann of Hollywood.com said the fact that the wedding scene works shows how genuine the characters are and how well they are presented by the writers. Sundermann also praised the cold open with Ron ripping his tooth out, and said he enjoyed the way Ann Perkins' character has continued to develop through the season. Steve Kandell of \"\"New"} +{"qid": "test3024", "pid": "15531578", "query": "who does april end up with on parks and rec", "answer": "Andy", "passage": "\"Andy and April's Fancy Party\"\nof HitFix called it \"\"one of the funniest, sweetest, just plain best episodes of this season of this great comedy\"\", and that it embodied \"\"intoxicating mix of laughs and sweetness that \"\"Parks and Rec\"\" consistently nails\"\". Sepinwall particularly praised the scene when April declared her love for Leslie, and enjoyed the comedic pairing of Ann and Donna. \"\"Time\"\" magazine writer James Poniewozik said the episode showed \"\"Parks and Recreation\"\" in \"\"top form\"\", and he praised the episode for avoiding television cliches about weddings. In most shows, he wrote, April and Andy would have been persuaded to stop the wedding at"} +{"qid": "test3025", "pid": "16968622", "query": "who played dwight's brother on the office", "answer": "Thomas Middleditch", "passage": "\"The Farm (The Office)\"\nguest stars Majandra Delfino, Blake Garrett Rosenthal, Thomas Middleditch, Matt Jones, and Tom Bower as members of Dwight's family; Delfino plays Dwight's sister Fannie, Rosenthal plays Dwight's nephew Cammy, Middleditch portrays Dwight's brother Jeb, Jones portrays Dwight's cousin Zeke, and Bower appears as Dwight's great uncle Heinrich, in a deleted scene. Jones had previously appeared in the ninth season entry, \"\"Junior Salesman\"\". \"\"The Farm\"\" originally aired on NBC on March 14, 2013, after a four-week hiatus. In its original American broadcast, the episode was viewed by an estimated 3.54 million viewers and received a 1.9 rating/5 percent share. This means"} +{"qid": "test3025", "pid": "16968615", "query": "who played dwight's brother on the office", "answer": "Thomas Middleditch", "passage": "\"The Farm (The Office)\"\nThe Farm (The Office) \"\"The Farm\"\" is the seventeenth episode of the ninth season of the American comedy television series \"\"The Office\"\" and the 193rd overall. It originally aired on NBC on March 14, 2013. The episode guest stars Matt Jones as Dwight's cousin Zeke, Majandra Delfino as Dwight's sister Fannie, Blake Garrett Rosenthal as his nephew, and Thomas Middleditch as his brother. The series—presented as if it were a real documentary—depicts the everyday lives of office employees in the Scranton, Pennsylvania, branch of the fictional Dunder Mifflin Paper Company. The episode revolves around Dwight Schrute (Rainn Wilson) and Oscar"} +{"qid": "test3026", "pid": "3435041", "query": "when was corporal punishment banned in south africa", "answer": "1997", "passage": "\"Cat o' nine tails\"\nin use in a few Commonwealth countries, although the cane is used in more countries. Judicial corporal punishment has been abolished or declared unconstitutional since 1997 in Jamaica, St. Vincent and the Grenadines, South Africa, Zambia, Uganda (in 2001) and Fiji (in 2002). However, some former colonies in the Caribbean have reinstated flogging with the cat. Antigua and Barbuda reinstated it in 1990, followed by the Bahamas in 1991 (where, however, it was subsequently banned by law) and Barbados in 1993 (only to be formally declared inhumane and thus unconstitutional by the Barbados Supreme Court). Trinidad & Tobago never banned"} +{"qid": "test3026", "pid": "16036466", "query": "when was corporal punishment banned in south africa", "answer": "1997", "passage": "\"Abolition of Corporal Punishment Act, 1997\"\nprovides that \"\"any law which authorises corporal punishment by a court of law, including a court of traditional leaders,\"\" is repealed to the extent that it authorises such a punishment. The second makes specific textual amendments various statutes, including the Black Administration Act, the Magistrates' Courts Act and the Criminal Procedure Act, to remove references to corporal punishment. Abolition of Corporal Punishment Act, 1997 The Abolition of Corporal Punishment Act, 1997 (Act No. 33 of 1997) is an act of the Parliament of South Africa that abolished judicial corporal punishment. It followed the Constitutional Court's 1995 decision in the case"} +{"qid": "test3026", "pid": "16036465", "query": "when was corporal punishment banned in south africa", "answer": "1997", "passage": "\"Abolition of Corporal Punishment Act, 1997\"\nAbolition of Corporal Punishment Act, 1997 The Abolition of Corporal Punishment Act, 1997 (Act No. 33 of 1997) is an act of the Parliament of South Africa that abolished judicial corporal punishment. It followed the Constitutional Court's 1995 decision in the case of \"\"S v Williams and Others\"\" that caning of juveniles was unconstitutional. Although the ruling in \"\"S v Williams\"\" was limited to the corporal punishment of males under the age of 21, Justice Langa mentioned in \"\"dicta\"\" that there was a consensus that corporal punishment of adults was also unconstitutional. The act contains two substantive sections. The first"} +{"qid": "test3026", "pid": "12731976", "query": "when was corporal punishment banned in south africa", "answer": "1997", "passage": "\"School corporal punishment\"\nEducation, which applied to national schools (most primary schools) and to secondary schools receiving public funding (practically all of them). Teachers were not liable to criminal prosecution until 1997, when the rule of law allowing \"\"physical chastisement\"\" was explicitly abolished. Corporal punishment in Italian schools was banned in 1928. Although banned in 1947, corporal punishment is still commonly found in schools in the 2010s and particularly widespread in school sports clubs. In late 1987, about 60% of junior high school teachers felt it was necessary, with 7% believing it was necessary in all conditions, 59% believing it should be applied"} +{"qid": "test3027", "pid": "18424909", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"The impact of geography on colonial America\"\nto other Colonies due to its prime location to the ocean. The climate was prime for these grains which is a direct correlation to how geography relates to trade goods in the Middle Eastern Colonies. The southern British colonies in North America were the Colony of Virginia, Province of North Carolina, Province of South Carolina, and Province of Georgia. The first successful English colony in N. America was Jamestown, established off the Chesapeake Bay in 1607. In 1668 King Charles II granted the Carolina charter to eight Lords Proprietor. Georgia was not established as a colony until 1732 under a"} +{"qid": "test3027", "pid": "822278", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Jamestown, Virginia\"\nevents in American history: the first meeting of the Virginia House of Burgesses, the arrival of the first Africans to English North America, and the first Thanksgiving. Attribution: Jamestown, Virginia The Jamestown settlement in the Colony of Virginia was the first permanent English settlement in the Americas. It was located on the east bank of the Powhatan (James) River about southwest of the center of modern Williamsburg. William Kelso writes that Jamestown \"\"is where the British Empire began\"\". It was established by the Virginia Company of London as \"\"James Fort\"\" on May 4, 1607 O.S.;(May 14, 1607 N.S.), and was"} +{"qid": "test3027", "pid": "11712809", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Royal Colonial Boundary of 1665\"\nat the Cumberland Gap National Historical Park denotes where the boundaries of Kentucky, Tennessee, and Virginia intersect. Under the Royal Proclamation of 1763 it also marks how far west a British American colonist was allowed to reside. Its exact location is N 36'36.045, W 83'40.518. Royal Colonial Boundary of 1665 The Royal Colonial Boundary of 1665 marked the border between the Colony of Virginia and the Province of Carolina from the Atlantic Ocean westward across North America. The line follows the parallel 36°30′ north latitude that later became a boundary for several U.S. states as far west as the Oklahoma"} +{"qid": "test3027", "pid": "3367698", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Bog iron\"\nresource. About once each generation, the same bog can be re-harvested.\"\" Iron may have been produced by Vikings at L’Anse aux Meadows, Point Rosee and other locations in Newfoundland around 1000 AD. Bog iron was widely sought in colonial North America. The earliest known iron mines in North America are the mines from St. John's, Newfoundland, reported to be in operation by Anthony Parkhurst in 1578. The first mining efforts in Virginia occurred as early as 1608. In 1619 Falling Creek Ironworks was established in Chesterfield County, Virginia. It was the location of the first blast furnace facility in North"} +{"qid": "test3027", "pid": "7911004", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Bay Rivers District\"\nwhich are three Virginia colonial communities and areas which have important significance in the founding of the United States. First is Jamestown, the location of the first permanent British settlement in North America. Second is Williamsburg, home of the Colonial capital which is located in the Colonial Williamsburg historic district; Busch Gardens which is one of the most popular theme parks in the United States; and The College of William & Mary, which is the second oldest university in the United States and alma mater of Thomas Jefferson. The third city is Yorktown, which is the site of the Siege"} +{"qid": "test3027", "pid": "8253134", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Jamestown Glasshouse\"\nthe art and history of glassblowing at Jamestown. The glass they make is available for purchase via \"\"Jamestown Glass\"\", the gift shop, on site or online. Additional interpreters are available to answer questions. Jamestown Glasshouse The Jamestown Glasshouse is located in Jamestown, Virginia, between Jamestown Island, the location of the first permanent English settlement in North America, and Jamestown Settlement. It is currently a part of the Colonial National Historical Park, and associated with Historic Jamestowne, and located near the Colonial Parkway. The original glasshouse was built soon after the first glassblowers, Germans Poles, arrived in Jamestown in 1608. A"} +{"qid": "test3027", "pid": "2610305", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Popham Colony\"\nPopham Colony The Popham Colony—also known as the Sagadahoc Colony—was a short-lived English colonial settlement in North America that was founded in 1607 and located in the present-day town of Phippsburg, Maine, near the mouth of the Kennebec River by the proprietary Virginia Company of Plymouth. It was founded a few months after its more successful rival, the colony at Jamestown, which was established on May 4, 1607, by the Virginia Company of London in present-day James City County, Virginia. The Popham Colony was the first colony in the region that would eventually become known as New England, coming five"} +{"qid": "test3027", "pid": "8253131", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Jamestown Glasshouse\"\nJamestown Glasshouse The Jamestown Glasshouse is located in Jamestown, Virginia, between Jamestown Island, the location of the first permanent English settlement in North America, and Jamestown Settlement. It is currently a part of the Colonial National Historical Park, and associated with Historic Jamestowne, and located near the Colonial Parkway. The original glasshouse was built soon after the first glassblowers, Germans Poles, arrived in Jamestown in 1608. A series of small furnaces were built in the area near the current exhibit. A small crew of glassblowers and laborers not only chopped down hardwood trees for fueling the furnace (sometimes requiring up"} +{"qid": "test3027", "pid": "5459311", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"History of Virginia\"\nliving, and gain wealth. Perhaps nowhere was this more progressive than at Sir Thomas Dale's ill-fated Henricus, a westerly-lying development located along the south bank of the James River, where natives were also to be provided an education at the Colony's first college. About south of the falls at present-day Richmond, in Henrico Cittie, the Falling Creek Ironworks was established near the confluence of Falling Creek, using local ore deposits to make iron. It was the first in North America. Virginians were intensely individualistic at this point, weakening the small new communities. According to Breen (1979) their horizon was limited"} +{"qid": "test3027", "pid": "17901158", "query": "where was the first colony in north america located", "answer": "Virginia", "passage": "\"Religion in early Virginia\"\nthen considered \"\"Virginia\"\") with the ill-fated Roanoke Colony (located in present-day North Carolina). Its brief existence saw recorded the first baptisms in North America into the Church of England. Anglican chaplain Robert Hunt was among the first group of English colonists arriving in Virginia in 1607 (and among those dead by 1608). He was succeeded as chaplain by Richard Buck, who served in the post until his death in 1624. By the time the Virginia Company of London was dissolved in 1624, authorities in England had sent 22 Anglican clergymen to the colony. Religious leaders in England felt they had"} +{"qid": "test3028", "pid": "3646520", "query": "when did sierra nevada brewery open in asheville", "answer": "2014", "passage": "\"Mills River, North Carolina\"\nMills River, North Carolina Mills River is a town in Henderson County, North Carolina, United States. The population was 6,802 at the 2010 census, and was estimated to be 7,168 in 2016. The town took its name from the nearby confluence of the Mills River and French Broad River. It is part of the Asheville Metropolitan Statistical Area. It was incorporated into a town in June 2003. Sierra Nevada opened a brewery in Mills River in 2014. Mills River is among the oldest communities in Henderson County, with its first landholder receiving a deed from the state of North Carolina"} +{"qid": "test3028", "pid": "1174033", "query": "when did sierra nevada brewery open in asheville", "answer": "2014", "passage": "\"Hendersonville, North Carolina\"\nHendersonville Little Theatre (HLT) was established in 1966. It moved from its original location to a unique red barn on State Street. After many successful years at the theatre in the barn, HLT moved to an old stone church at 220 S. Washington Street in downtown Hendersonville in 2012. Clothing retailer Bon Worth was founded in Hendersonville in 1976. Sierra Nevada opened up a brewery in 2014. The metro area has several TV broadcasting stations that serve the (DMA) as defined by Nielsen Media Research. The station nearest to Hendersonville is the Asheville-based WLOS (ABC), television channel 13. Other major"} +{"qid": "test3028", "pid": "3273478", "query": "when did sierra nevada brewery open in asheville", "answer": "January 2012", "passage": "\"Sierra Nevada Brewing Company\"\nbluegrass, folk, rock, blues, and other musical genres. Camusi retired in 1998 and sold his share in the company to Grossman. In 2010, Sierra Nevada Brewing partnered with the Abbey of New Clairvaux, with the monastery beginning production of Trappist-style beers in 2011. The Abbey has not yet been sanctioned by the International Trappist Association, and therefore the monastery will not be brewing official Trappist beer. The brewery employed about 450 people in 2011. In January 2012, Sierra Nevada announced it would build a second brewing facility with an attached restaurant in Mills River, North Carolina. The LEED-Platinum-certified building opened"} +{"qid": "test3028", "pid": "3273479", "query": "when did sierra nevada brewery open in asheville", "answer": "early 2014", "passage": "\"Sierra Nevada Brewing Company\"\nin early 2014 on a forested tract adjacent to Asheville Regional Airport, re-using the cut-down trees as lumber both in the building and for the rainwater cisterns that flush the toilets. In 2013, the company opened the \"\"Torpedo Room\"\" in Berkeley, their first tasting room outside of Chico. In January 2017, Sierra Nevada issued a voluntary recall of certain 12-ounce bottles of different beers in 36 states due to a manufacturing defect that had possibly introduced chipped pieces of glass into the bottle. Along with Anchor Brewing Company in San Francisco and the now-defunct New Albion Brewing Company in Sonoma,"} +{"qid": "test3028", "pid": "11978746", "query": "when did sierra nevada brewery open in asheville", "answer": "2014", "passage": "\"Ken Grossman\"\nBrewery in Mills River, North Carolina which began production in 2014. His wife Katie is a teetotaler. Ken Grossman Ken Grossman (born 11 November 1954) is an American billionaire businessman, founder of Sierra Nevada Brewing Company. Ken Grossman was born to a Jewish family in southern California on 11 November 1954. He studied at Butte College. In 1978, Grossman founded Sierra Nevada Brewing Company in Chico, California with Paul Camusi. In 1998, he bought out Camusi. Grossman and his wife Katie (née Gonser) have three children and live in Chico, California. His son Brian and daughter Sierra will run the"} +{"qid": "test3029", "pid": "16557207", "query": "who plays the mother of howard on big bang theory", "answer": "Carol Ann Susi", "passage": "\"Carol Ann Susi\"\nCarol Ann Susi Carol Ann Susi (February 2, 1952 – November 11, 2014) was an American actress. She was known for providing the voice of recurring unseen character Mrs. Wolowitz, mother of Howard Wolowitz, on the television series \"\"The Big Bang Theory\"\". Susi made her first screen appearance in \"\"\"\", where she played the recurring role of intern Monique Marmelstein. Other television and film credits included: \"\"McMillan & Wife\"\", \"\"Coyote Ugly\"\", \"\"Just Go with It\"\", \"\"The Big Bang Theory\"\", \"\"Becker\"\", \"\"Grey's Anatomy\"\", \"\"That '70s Show\"\", \"\"Out of Practice\"\", \"\"Cats & Dogs\"\", \"\"Just Shoot Me\"\", \"\"Married... with Children\"\", \"\"Night Court\"\", \"\"The"} +{"qid": "test3029", "pid": "10248570", "query": "who plays the mother of howard on big bang theory", "answer": "Carol Ann Susi", "passage": "\"The Big Bang Theory\"\nscenes set at Howard's home, he interacts with his rarely-seen mother (voiced by Carol Ann Susi until her death) by shouting from room to room in the house. She similarly interacts with other characters in this manner. She reflects the Jewish mother stereotype in some ways, such as being overly controlling of Howard's adult life and sometimes trying to make him feel guilty about causing her trouble. She is dependent on Howard, as she requires him to help her with her wig and makeup in the morning. Howard, in turn, is attached to his mother to the point where she"} +{"qid": "test303", "pid": "337382", "query": "how long have we been celebrating pi day", "answer": "1988", "passage": "\"Pi Day\"\nthe \"\"month/day\"\" format). In 1988, the earliest known official or large-scale celebration of Pi Day was organized by Larry Shaw at the San Francisco Exploratorium, where Shaw worked as a physicist, with staff and public marching around one of its circular spaces, then consuming fruit pies. The Exploratorium continues to hold Pi Day celebrations. On March 12, 2009, the U.S. House of Representatives passed a non-binding resolution (), recognizing March 14, 2009 as National Pi Day. For Pi Day 2010, Google presented a Google Doodle celebrating the holiday, with the word Google laid over images of circles and pi symbols;"} +{"qid": "test303", "pid": "11696368", "query": "how long have we been celebrating pi day", "answer": "2009", "passage": "\"Larry Shaw (Pi)\"\n1:59 p.m. with visitors holding a sign with a digit of pi, a pi shrine, eating of pies (fruit and pizza), singing happy birthday to Albert Einstein, and more. Larry Shaw would lead the parade in his red cap with the digits of pi. Pi Day was recognized as a national holiday in 2009 and is internationally celebrated. Also, 2015 was a special year with it being written 3/14/15, calling it \"\"Pi Day of the Century\"\". Shaw felt the best thing about Pi Day was making math more accessible, fun for those who may have had problems in school. When"} +{"qid": "test303", "pid": "337381", "query": "how long have we been celebrating pi day", "answer": "2009", "passage": "\"Pi Day\"\nPi Day Pi Day is an annual celebration of the mathematical constant (pi). Pi Day is observed on March 14 (3/14 in the \"\"month/day\"\" format) since 3, 1, and 4 are the first three significant digits of . In 2009, the United States House of Representatives supported the designation of Pi Day. Pi Approximation Day is observed on July 22 (22/7 in the \"\"day/month\"\" format), since the fraction is a common approximation of, which is accurate to two decimal places and dates from Archimedes. Two Pi Day, also known as Tau Day, is lightly observed on June 28 (6/28 in"} +{"qid": "test303", "pid": "12334018", "query": "how long have we been celebrating pi day", "answer": "2009", "passage": "\"National Cleavage Day\"\nWe will donate money to the Sunflower fund. We are having big parties, we have special National Cleavage Day cocktails that have been created and for every cocktail bought R2 will be donated to the sunflower fund.\"\" In April 2009, references to National Cleavage Day were so popular on Twitter that the term \"\"National Cleavage\"\" was briefly number one on the website's top ten trend list. International Cleavage Day is celebrated worldwide yearly on March 31 on social media outlets such as Twitter, Facebook and Tumblr. Dr. Siqwana-Ndulo, provincial gender commissioner in Eastern Cape, condemned the celebrations, warning women not"} +{"qid": "test3031", "pid": "138360", "query": "when do you celebrate birthday if born on feb 29", "answer": "February 29", "passage": "\"February 29\"\nSweden and Finland. In Britain, the extra day added to leap years remains notionally the 24th, although the 29th remains more visible on the calendar. A person born on February 29 may be called a \"\"leapling\"\", a \"\"leaper\"\", or a \"\"leap-year baby\"\". In non-leap years, some leaplings celebrate their birthday on either February 28 or March 1, while others only observe birthdays on the authentic intercalary date, February 29. The effective legal date of a leapling's birthday in non-leap years varies between jurisdictions. In the United Kingdom and Hong Kong, when a person born on February 29 turns 18, they"} +{"qid": "test3031", "pid": "12856551", "query": "when do you celebrate birthday if born on feb 29", "answer": "February 29", "passage": "Birthday\nperson born on February 29 may be called a \"\"leapling\"\" or a \"\"leaper\"\". In common years they usually celebrate their birthdays on February 28. In some situations, March 1 is used as the birthday in a non-leap year since it is the day following February 28. Technically, a leapling will have fewer \"\"birthday anniversaries\"\" than their age in years. This phenomenon is exploited when a person claims to be only a quarter of their actual age, by counting their leap-year birthday anniversaries only. In Gilbert and Sullivan's 1879 comic opera \"\"The Pirates of Penzance\"\", Frederic the pirate apprentice discovers that"} +{"qid": "test3031", "pid": "12856539", "query": "when do you celebrate birthday if born on feb 29", "answer": "February 29", "passage": "Birthday\nBirthday A birthday is the anniversary of the birth of a person, or figuratively of an institution. Birthdays of people are celebrated in numerous cultures, often with birthday gifts, birthday cards, a birthday party, or a rite of passage. Many religions celebrate the birth of their founders or religious figures with special holidays (e.g. Christmas, Mawlid, Buddha's Birthday, and Krishna Janmashtami). There is a distinction between birth\"\"day\"\" and birth\"\"date\"\": The former, other than February 29, occurs each year (e.g. January 15), while the latter is the exact date a person was born (e.g., January 15, 2001). In most legal systems,"} +{"qid": "test3033", "pid": "312097", "query": "what's the population of prince edward island", "answer": "142,907 residents", "passage": "\"Prince Edward Island\"\nPrince Edward Island Prince Edward Island (PEI or P.E.I.; ) is a province of Canada consisting of the island of the same name, and several much smaller islands. Prince Edward Island is one of the three Maritime Provinces and is the smallest province in both land area and population. It is part of the traditional lands of the Mi'kmaq, and became a British colony in the 1700s and was federated into Canada as a province in 1873. Its capital is Charlottetown. According to the 2016 census, the province of Prince Edward Island has 142,907 residents. The backbone of the economy"} +{"qid": "test3035", "pid": "3046651", "query": "who was the first coronated king of manipur at kangla", "answer": "Pakhangba", "passage": "\"Kangla Palace\"\nthe coronation site of Pakhangba, were located within the enclosure of the citadel. The citadel enclosure had three entrances, two on the western side and one on the southern side. The entrance on the left end of the western face was opposite to the coronation hall and the entrance to the right end of the same wall faced the Darbar Hall. The southern entrance was connected with the passage leading to the Shree - Shree Govindajee Temple. The \"\"Uttra\"\" is the ancestral coronation hall of the Manipur kings. The installation ceremonies took place here. The building housing the coronation hall"} +{"qid": "test3035", "pid": "18294722", "query": "who was the first coronated king of manipur at kangla", "answer": "Pakhangba", "passage": "\"Manipur (princely state)\"\nManipur (princely state) The Kingdom of Manipur or Kangleipak Kingdom was a princely state of the British Rule, bordering Assam Province in the west and British Burma in the east. The state of Manipur covered an area of 22,327 square kilometres (8,621 sq mi) with 467 villages. The capital of the state was Imphal. The early history of Manipur is composed of mythical narratives. The Kangla Fort, located on the banks of the Imphal River, is where the palace of King Pakhangba was located. It was built in 1632 by king Khagemba, who had defeated Chinese invaders. In the fort,"} +{"qid": "test3035", "pid": "15997966", "query": "who was the first coronated king of manipur at kangla", "answer": "Pamheiba", "passage": "\"Raja Nara Singh\"\na short reign of six years Maharaja Nara Singh died at the Kangla Palace on 11 April 1850. Every year his death anniversary is observed as National Dedication Celebration Day in Manipur. The Government of Manipur has made the day as restricted holiday in the state since 2001. Raja Nara Singh Nara Singh (1792 – 11 April 1850) also known as Chingthanglen Pamheiba and Meetingu Lairen Nonglen Sendreng Manik Khomba, was a ruler of the Kingdom of Manipur. He ruled first as regent from 1834 to 1844 and then as king for a period of six years from 1844 to"} +{"qid": "test3035", "pid": "16002312", "query": "who was the first coronated king of manipur at kangla", "answer": "Pakhangba", "passage": "\"Ningthouja dynasty\"\nof the Khaba clan. They established Kangla as their seat of power. From Kangla they absorbed the surrounding clan principalities of Luwang, Moirang, Khaba-Nganba, Angom, Sarang-Leishangthem and Khuman. Since 33 CE till the rule of the last King Bodhchandra, Manipur was ruled by seventy-four kings, of whom the hallowed reign of Pakhangba, Naothingkhong, Loiyumba, Kiyamba, Khagemba, Charairongba, Pamheiba, Maharaja Jai Singh, Maharaja Gambhir Singh, Maharaja Nara Singh, Chandrakirti and Churchand are outstanding. Since 19th century the ruling family was divided into several royal houses. They are: The royal titles of Meitei princes are:- The royal titles for Meitei princesses are:-"} +{"qid": "test3035", "pid": "3046648", "query": "who was the first coronated king of manipur at kangla", "answer": "Pakhangba", "passage": "\"Kangla Palace\"\nand Myanmar etc. It is believed that Lord Pakhangba resides under 'Kangla' and ruled the Kingdom of Manipur and the Universe. It is also believed that there are 360 important holy/sacred places in 'Kangla'. Some of the important holy places in 'Kangla' are: This is a sacred pond believed to be the abode of Lord Pakhangba. It is located to the north-west of the \"\"Uttra\"\". Religious rituals are performed here. Besides this, there are other holy ponds like \"\"Chingkhei Nungjeng\"\", \"\"Manung Nungjeng\"\" and \"\"Lai Pukhri\"\" etc. The site is a sacred place of worship of the Goddess of War. The"} +{"qid": "test3036", "pid": "17771467", "query": "how many episodes curse of oak island season 5", "answer": "18", "passage": "\"The Curse of Oak Island\"\nInc. approved $1,271,546 in film funding for the production of the 4th season. In October 2017, a fifth season was announced, which began airing on November 7, 2017. Season 6 began airing November 13, 2018. The Curse of Oak Island The Curse of Oak Island is an active reality television series that first premiered in Canada on the History network on January 5, 2014. The show features what is known as the Oak Island mystery, showing efforts to search for historical artifacts and treasure. \"\"The Curse of Oak Island\"\" follows brothers Marty and Rick Lagina, originally from Kingsford, Michigan, through"} +{"qid": "test3036", "pid": "388602", "query": "how many episodes curse of oak island season 5", "answer": "18", "passage": "Seinfeld\n\"\"The New Adventures of Old Christine\"\" led many to believe that she had broken the curse. In her acceptance speech, Louis-Dreyfus held up her award and exclaimed, \"\"I'm not somebody who really believes in curses, but curse this, baby!\"\" The show was on the air for five seasons starting March 13, 2006 before its cancellation on May 18, 2010; the series produced enough episodes to air in reruns in syndication for several years, something the other shows didn't achieve. The \"\"Saturday Night Live\"\" episode guest-hosted by Louis-Dreyfus made references to the curse. Louis-Dreyfus went on to win six further Lead"} +{"qid": "test3036", "pid": "20011611", "query": "how many episodes curse of oak island season 5", "answer": "18", "passage": "\"Ganga (2017 TV series)\"\nThe show completed its 400th episode on 24 April 2018. It is a story is spun around Ganga's curse upon the unwed maidens of the village, Kannikapuram. How will Abhirami (Piyali P. Munsi), the lead protagonist save the village from the curse and thereby marry the man she loves. Shiva and Gowri After married how do they live together? Season 1 Series is a Supernatural Fantasy Thriller story produced by Home Movie Makers under the banner Home Movie Makers Pvt.Ltd that airs on Sun TV. Actress Piyali P. Munsi was selected to portray the lead role of Abirami, This is"} +{"qid": "test3036", "pid": "14528327", "query": "how many episodes curse of oak island season 5", "answer": "18", "passage": "\"Montezuma's treasure\"\ntreasure. Newspapers as far back as 1895 have published accounts of people who have claimed to have found this lost treasure. The myth and superstitions about a curse on the treasure are sensationalized in a 2014 television program \"\"Myth Hunters, Raiders of the Lost Past: Season 2, Episode 8, The Curse of Montezuma's Gold (YouTube)\"\" which includes interviews of many family members of treasure hunters. IMBD episode details The treasure is the basis for an episode of Wagon Train entitled The Alexander Portlass Story Montezuma's treasure Montezuma's treasure is a legendary buried treasure said to be located in the Casa"} +{"qid": "test3036", "pid": "15567561", "query": "how many episodes curse of oak island season 5", "answer": "18", "passage": "\"Supernatural (season 7)\"\nfor season eight. Warner Home Video released the season on DVD and Blu-ray in Region 1 on September 18, 2012, in region 2 on November 5, 2012, and in Region 4 on October 31, 2012. The seventh season had an average viewership of 1.73 million U.S. viewers. In this table, the number in the first column refers to the episode's number within the entire series, whereas the number in the second column indicates the episode's number within this particular season. \"\"U.S. viewers in millions\"\" refers to how many Americans watched the episode live or on the day of broadcast. "} +{"qid": "test3037", "pid": "20345937", "query": "who won big brother head of household canada", "answer": "Kaela", "passage": "\"Big Brother Canada (season 6)\"\nAlejandra, Olivia, and Johnny's eviction, the HouseGuests sought a spot in the final four in the \"\"Previously on Big Brother Canada\"\" Head of Household competition. In this competition, HouseGuests were given a recap of a series of events pertaining to a specific week in the House. HouseGuests must identify who was Head of Household when those events took place. Each correct answer earned them one point. The HouseGuest with the most points will be the new Head of Household. Kaela was the winner. On Day 56, Kaela nominated Maddy and Paras for eviction. On Day 57, the HouseGuests were pinned"} +{"qid": "test3037", "pid": "20345925", "query": "who won big brother head of household canada", "answer": "Kaela", "passage": "\"Big Brother Canada (season 6)\"\nabove their head, holding down their button with their hand. Throughout the competition, HouseGuests will be offered temptations to drop out. If they release their button, they will be eliminated. The last HouseGuest standing will be the new Head of Household. Paras won $1000, Derek won immunity for the week, and Will won a phone call from home. Kaela became the new Head of Household. On Day 35, Kaela nominated Ryan and Will for eviction. On Day 36, Kaela, Ryan, and Will, connected with Erica, Derek, and Johnny, flew in the \"\"Globetrotting\"\" Power of Veto competition. In the first round"} +{"qid": "test3037", "pid": "20345936", "query": "who won big brother head of household canada", "answer": "Kaela", "passage": "\"Big Brother Canada (season 6)\"\nwith four planks of the HouseGuests who have won Head of Household and the Power of Veto in the same week, with the earliest occurrence at the bottom. In order to release their planks, they must spin around their posts. The first HouseGuest to correctly complete their drawbridge, lower it, and hit their button will win the Power of Veto. Kaela was the winner. At the Veto Meeting, Kaela decided not to use the Power of Veto. On Day 55, Johnny and Olivia were evicted by a 3-0-0 vote. They became the third and fourth members of the jury. Following"} +{"qid": "test3040", "pid": "8857928", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"2005 Green Bay Packers season\"\nGreen Bay Packers, signing with the Minnesota Vikings. With the 24th pick of the 2005 NFL Draft the Green Bay Packers selected quarterback Aaron Rodgers, the second quarterback taken in the draft. Rodgers became the Packers' starting QB in the 2008 season after Brett Favre's trade to the New York Jets and has since become a two-time NFL MVP and led the Packers to victory in Super Bowl XLV. \"\" Players highlighted in yellow indicate players selected to the Pro Bowl during their NFL career. \"\" The Packers opened the 2005 NFL season with a loss to the Detroit Lions."} +{"qid": "test3040", "pid": "3094055", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"West Coast offense\"\nversion of Walsh's offense to several coaches, including former Green Bay Packers head coach Mike McCarthy. McCarthy, who was the Packers head coach from 2006 until December 2018, would go on to win a Super Bowl himself with the use of the West Coast offense in 2010, with the help of superstar quarterback Aaron Rodgers. Mike Holmgren won a Super Bowl with the Green Bay Packers in 1996 behind the quarterbacking of 3-time NFL MVP Brett Favre, and then returned to the Super Bowl in 1997 where they lost to the Denver Broncos, who were coached by Mike Shanahan. Holmgren"} +{"qid": "test3040", "pid": "12844543", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"2009 Green Bay Packers season\"\ntime since 2005. \"\"at Raymond James Stadium, Tampa, Florida Hoping to rebound from their home loss to the Vikings, the Packers flew to Raymond James Stadium for a Week 9 duel with the throwback-cladded Tampa Bay Buccaneers, who were looking for their first win of the season. In the first quarter, Green Bay struck first as quarterback Aaron Rodgers hooked up with wide receiver James Jones on a 74-yard touchdown pass. The Buccaneers would respond with quarterback Josh Freeman's 6-yard touchdown pass to running back Derrick Ward, yet the Packers regained the lead with a 2-yard touchdown run from running"} +{"qid": "test3040", "pid": "12844549", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"2009 Green Bay Packers season\"\nto running back Frank Gore, yet Green Bay's defense would prevent any further progress. With the win, the Packers improved to 6–4. Coming off their win over the 49ers, the Packers flew to Ford Field for a Week 12 Thanksgiving duel with their NFC North rival, the Detroit Lions. Green Bay would trail in the first quarter as wide receiver Jordy Nelson fumbled on the game's opening kickoff, which allowed Lions quarterback Matthew Stafford to find wide receiver Calvin Johnson. The Packers would answer in the second quarter as quarterback Aaron Rodgers completed a 7-yard touchdown pass to tight end"} +{"qid": "test3040", "pid": "12844546", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"2009 Green Bay Packers season\"\na Week 10 duel with the Dallas Cowboys. Green Bay would get the only points of the first half in the form of a 48-yard field goal from kicker Mason Crosby. After a scoreless third quarter, the Packers would take a huge lead in the fourth quarter with quarterback Aaron Rodgers' 1-yard touchdown run and his 2-yard touchdown pass to tight end Spencer Havner. The Cowboys would try to rally with quarterback Tony Romo's 9-yard touchdown pass to wide receiver Roy Williams, Green Bay's defense would hold strong for a huge victory. With the win, not only do the Packers"} +{"qid": "test3040", "pid": "8725556", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"2006 Green Bay Packers season\"\nhis performance. He recorded 13 tackles, one forced fumble, and 1.5 sacks. After a two-game road stretch, the Packers came back to Lambeau Field to face the New England Patriots. The Patriots handed Green Bay their second shutout of the season. Patriots quarterback Tom Brady threw for 244 yards and 4 touchdowns. In the second quarter, Green Bay quarterback Brett Favre was injured on a sack. He left the game and did not return. Backup quarterback Aaron Rodgers replaced Favre and completed only four out of twelve passes for 32 yards with one fumble. Rodgers suffered a broken foot in"} +{"qid": "test3040", "pid": "20468595", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"2018 Green Bay Packers season\"\nCardinals since 1949. Hours after the game, Head Coach Mike McCarthy was fired by the Packers. 2018 Green Bay Packers season The 2018 season is the Green Bay Packers' 98th season in the National Football League, their 100th overall and their 13th and final season under head coach Mike McCarthy. After missing the playoffs for the first time since 2008 and losing quarterback Aaron Rodgers to injury, the Packers are aiming to improve their 7–9 record from last season. For the first time since 2007, Jordy Nelson did not play for the Packers as he signed with the Oakland Raiders"} +{"qid": "test3040", "pid": "16026910", "query": "who is the quarterback for the green bay packers", "answer": "Aaron Rodgers", "passage": "\"Jordan Rodgers\"\nJordan Rodgers Jordan Edward Rodgers (born August 30, 1988) is an American sports commentator and former college and professional American football quarterback. Rodgers signed with the Jacksonville Jaguars as an undrafted free agent in 2013, and also played on practice and preseason squads for the Tampa Bay Buccaneers and Miami Dolphins, as well as the BC Lions in the Canadian Football League. He is the brother of Green Bay Packers quarterback Aaron Rodgers. Rodgers was born in Chico, California, and raised there with eldest brother Luke and their middle brother, Green Bay Packers quarterback Aaron Rodgers. Rodgers attended Pleasant Valley"} +{"qid": "test3041", "pid": "10965479", "query": "georgia out of angus thongs and perfect snogging", "answer": "Georgia Groome", "passage": "\"Angus, Thongs and Perfect Snogging\"\nAngus, Thongs and Perfect Snogging Angus, Thongs and Perfect Snogging is a 2008 British coming of age-comedy film co-written and directed by Gurinder Chadha. The film's lead is played by Georgia Groome, with Aaron Taylor-Johnson and Karen Taylor amongst the supporting cast. The story is based on two teenage novels by Louise Rennison: \"\"Angus, Thongs and Full-Frontal Snogging\"\" and \"\"It's OK, I'm Wearing Really Big Knickers\"\". The narrative follows fourteen-year-old Georgia Nicholson (Groome) as she tries to find a boyfriend while also organising her fifteenth birthday party. This is the first film from Nickelodeon that was rated PG-13. Georgia Nicholson"} +{"qid": "test3041", "pid": "10965490", "query": "georgia out of angus thongs and perfect snogging", "answer": "Georgia Groome", "passage": "\"Angus, Thongs and Perfect Snogging\"\non Nick at Nite and TeenNick, where it was rated TV-PG, and later was released on DVD. Some songs played in the film were not included on the soundtrack: Angus, Thongs and Perfect Snogging Angus, Thongs and Perfect Snogging is a 2008 British coming of age-comedy film co-written and directed by Gurinder Chadha. The film's lead is played by Georgia Groome, with Aaron Taylor-Johnson and Karen Taylor amongst the supporting cast. The story is based on two teenage novels by Louise Rennison: \"\"Angus, Thongs and Full-Frontal Snogging\"\" and \"\"It's OK, I'm Wearing Really Big Knickers\"\". The narrative follows fourteen-year-old Georgia"} +{"qid": "test3041", "pid": "10965489", "query": "georgia out of angus thongs and perfect snogging", "answer": "Georgia Groome", "passage": "\"Angus, Thongs and Perfect Snogging\"\nsite's consensus states: \"\"Based on two of British writer Louise Rennison's popular books, \"\"Angus, Thongs and Perfect Snogging\"\" is a pleasant and funny tween comedy, comfortable for UK audiences as well as stateside crowds.\"\" Critics noted the strong central performance of Georgia Groome, who was praised for her \"\"super-engaging\"\" and \"\"endearingly natural\"\" performance. The film has earned $14,924,919, which includes $10,627,381 (£6.6 million) from the UK alone. The film was in the top 40 in the UK and Ireland and Malta 2008 box office. The film was not released theatrically in the United States, but instead had its U.S. premiere"} +{"qid": "test3041", "pid": "10965525", "query": "georgia out of angus thongs and perfect snogging", "answer": "Georgia Groome", "passage": "\"Georgia Groome\"\nGeorgia Groome Georgia Groome is an English actress, best known for her roles in \"\"London to Brighton\"\" and \"\"Angus, Thongs and Perfect Snogging\"\". Groome was born in Nottingham, the daughter of Paul Groome, a publican and chef who died in 2009, and Fiona (Tulloch), a drama and vocal coach. She resided in Chellaston near Shelton Lock, Derbyshire. She has an older sister, Alex; a younger half sister, Eden and also a younger step-sister, Annie. Groome, at the age of nine, and instead of Alex who had another commitment at the time, auditioned for a role in the touring stage version"} +{"qid": "test3041", "pid": "10965529", "query": "georgia out of angus thongs and perfect snogging", "answer": "Georgia Groome", "passage": "\"Georgia Groome\"\nSons\"\", in which she played snobby fashion victim Katie. The film was released in the UK through Cineworld on 5 April 2013. Georgia Groome Georgia Groome is an English actress, best known for her roles in \"\"London to Brighton\"\" and \"\"Angus, Thongs and Perfect Snogging\"\". Groome was born in Nottingham, the daughter of Paul Groome, a publican and chef who died in 2009, and Fiona (Tulloch), a drama and vocal coach. She resided in Chellaston near Shelton Lock, Derbyshire. She has an older sister, Alex; a younger half sister, Eden and also a younger step-sister, Annie. Groome, at the age"} +{"qid": "test3041", "pid": "10965527", "query": "georgia out of angus thongs and perfect snogging", "answer": "Georgia Groome", "passage": "\"Georgia Groome\"\nshe was also one of the eight young adventurers on \"\"Serious Amazon\"\" for CBBC. In 2007 Groome had a role in Elaine Wickham's short, \"\"My Mother\"\". In 2008, Groome had a minor role in comedy, horror \"\"The Cottage\"\". Her breakthrough role was as 14-year-old, boyfriend-searching Georgia Nicolson alongside Aaron Johnson in the 2008 film \"\"Angus, Thongs and Perfect Snogging\"\", for which she won the award for Best Child Actor at the Buster International Children's Film Festival. She also had a minor role in horror film \"\"The Disappeared\"\". In 2009, she made her stage debut in \"\"Tusk Tusk\"\", a new play"} +{"qid": "test3042", "pid": "3253472", "query": "who has appeared in the most royal rumbles", "answer": "Shawn Michaels", "passage": "\"Michael Buffer\"\nEvent, for the first time in more than six years, Buffer returned to pro-wrestling ring announcing duties at Madison Square Garden in a boxing match between pro boxer Evander Holyfield (who was substituting for Montel Vontavious Porter) and pro wrestler Matt Hardy. Buffer appears in the Royal Rumble 2008 commercial, in which he begins to say \"\"Let's get ready to rumble!\"\" only to be superkicked by Shawn Michaels, causing him to fall over. As well as being in the commercial for the event, he was the guest ring announcer during the Royal Rumble match itself. During his career, Buffer has"} +{"qid": "test3042", "pid": "2504784", "query": "who has appeared in the most royal rumbles", "answer": "Shawn Michaels", "passage": "\"Chris Jericho\"\nselect his entry number for the Royal Rumble match. He chose number two in order to start the match with Shawn Michaels, who had challenged him to prove Jericho's claims that he was better than Michaels. After Michaels' entrance, Jericho entered as the second participant. Christian, in Jericho's attire, appeared while the real Jericho attacked Shawn from behind. He eliminated Michaels shortly afterward, but Michaels got his revenge later in the match by causing Test to eliminate Jericho. Jericho spent the most time of any other wrestler in that same Royal Rumble. Jericho simultaneously feuded with Test, Michaels, and Jeff"} +{"qid": "test3042", "pid": "6897228", "query": "who has appeared in the most royal rumbles", "answer": "Shawn Michaels", "passage": "\"Royal Rumble (2003)\"\nRoyal Rumble match. Later that night, Paul Heyman announced that Brock Lesnar and Big Show would wrestle in a Royal Rumble qualification match at the Royal Rumble. On the January 6 episode of \"\"Raw\"\", Chris Jericho and Shawn Michaels argued over who would be drawing #1 entry in the Royal Rumble match. On the January 13 episode of \"\"Raw\"\", a Royal Rumble qualification match took place in which Jeff Hardy defeated Raven. Later that night, Jericho defeated Batista, Kane and Rob Van Dam in an over the top rope Challenge to earn the right choose an entry number of his"} +{"qid": "test3043", "pid": "7000383", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "The Emotions", "passage": "\"(If Loving You Is Wrong) I Don't Want to Be Right\"\n(If Loving You Is Wrong) I Don't Want to Be Right \"\"(If Loving You Is Wrong) I Don't Want to Be Right\"\" is a song written by Stax Records songwriters Homer Banks, Carl Hampton and Raymond Jackson. Originally written for The Emotions, it has been performed by many singers, most notably by Luther Ingram, whose original recorded version topped the R&B chart for four weeks and rose to number three on the \"\"Billboard\"\" Hot 100 chart in 1972. \"\"Billboard\"\" ranked it as the No. 16 song for 1972. In 1972/73, The Faces recorded the song as an outtake for \"\"Ooh"} +{"qid": "test3043", "pid": "7000387", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "The Emotions", "passage": "\"(If Loving You Is Wrong) I Don't Want to Be Right\"\nBobby \"\"Blue\"\" Bland, David Ruffin, LeAnn Rimes, Renée Geyer, Ramsey Lewis, reggae singer Alton Ellis, Tom Jones, Cassandra Wilson, Nathan Cavaleri, Rania Zeriri and Johanne Desforges (French cover : Si je ne peux t'aimer a quoi bon exister). (If Loving You Is Wrong) I Don't Want to Be Right \"\"(If Loving You Is Wrong) I Don't Want to Be Right\"\" is a song written by Stax Records songwriters Homer Banks, Carl Hampton and Raymond Jackson. Originally written for The Emotions, it has been performed by many singers, most notably by Luther Ingram, whose original recorded version topped the R&B chart"} +{"qid": "test3043", "pid": "10855573", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "The Emotions", "passage": "\"Homer Banks\"\nDC\"\", and then some of their biggest hits including \"\"If You're Ready (Come Go With Me)\"\". In 1968 he formed a songwriting trio with Bettye Crutcher and Raymond Jackson, calling themselves We Three. Their first song was \"\"Who's Making Love\"\", which was recorded by Johnnie Taylor and became a # 3 pop hit and # 1 R&B hit, Stax's biggest. Banks also wrote, with Jackson and Carl Hampton, \"\"(If Loving You Is Wrong) I Don't Want to Be Right\"\", a song first recorded by The Emotions which became a hit when recorded by Luther Ingram, and later recorded by Isaac"} +{"qid": "test3043", "pid": "18063031", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "Luther Ingram", "passage": "\"Ronnie Hudson\"\nbassists. At Stax Records, he recorded and toured with Isaac Hayes on his Grammy-winning soundtrack for the 1970s hit movie \"\"Shaft\"\", and multi-platinum \"\"Black Moses\"\". He also recorded and co-produced songs with Rufus Thomas on the \"\"Breakdown\"\", and Luther Ingram on \"\"If (Loving you is wrong I don't want to be right)\"\". Ronnie Hudson Worked in the hip hop genre with multi-platinum recording, \"\"West Coast Poplock\"\". Dr.Dre and many other artists including 2pac with California Love and Snoop Dogg with the Poplock 2 have sampled this song. Consisting of a three-man horn section, upright piano, guitar, percussions and drums, with"} +{"qid": "test3043", "pid": "7000386", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "The Emotions", "passage": "\"(If Loving You Is Wrong) I Don't Want to Be Right\"\nrunning time of over 11 minutes. The first and third parts include the song more or less as originally written, while the second part was written by Jackson herself. Titled \"\"The Rap,\"\" the middle segment is a monologue in which an unrepentant Jackson discusses her status as the \"\"other woman\"\" and why she loves it. Although it was first recorded by The Emotions and Veda Brown, those recordings were never released. Other notable singers to cover it include country singer Jackie Burns (whose version made the Hot Country Songs chart in 1972), Isaac Hayes, Millie Jackson, Rod Stewart, Percy Sledge,"} +{"qid": "test3043", "pid": "16207603", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "The Emotions", "passage": "\"Raymond Jackson (songwriter)\"\nthemselves \"\"We Three\"\", and had more hits including Taylor's \"\"Take Care Of Your Homework\"\" and \"\"I Could Never Be President\"\"; and Carla Thomas' \"\"I Like What You're Doing (To Me)\"\". Jackson and Banks then worked with Carl Hampton to write further hits for The Staple Singers, Luther Ingram, The Emotions and others. These included \"\"(If Loving You Is Wrong) I Don't Want to Be Right\"\", first recorded by Ingram on Johnnie Baylor's KoKo label, which was distributed by Stax. Ingram's version made no. 1 on the R&B chart in 1972; the song was later recorded by many other artists including"} +{"qid": "test3043", "pid": "7000206", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "Luther Ingram", "passage": "\"Luther Ingram\"\n\"\"My Honey And Me\"\" peaked at #55 on the \"\"Billboard\"\" Hot 100 on 14 February 1970. Many of his songs appeared in the pop and R&B charts, even though Koko was only a small label, owned by his manager and record producer, Johnny Baylor. Koko and Baylor were closely associated with the Memphis based Stax Records label during the height of its commercial success. Ingram is best known for the hit, \"\"(If Loving You Is Wrong) I Don't Want to Be Right\"\", written by Homer Banks, Carl Hampton and Raymond Jackson. The song reached number one on \"\"Billboard\"\" 's R&B"} +{"qid": "test3043", "pid": "11591885", "query": "who sang the song if loving you is wrong i don't want to be right", "answer": "Luther Ingram", "passage": "\"Moods (Barbara Mandrell album)\"\nMoods (Barbara Mandrell album) Moods is a studio album by American country music singer, Barbara Mandrell, released in September 1978. \"\"Moods\"\" became Mandrell's most successful album during her career up to this point. The album spawned two singles, both of which became #1 country hits, \"\"Sleeping Single in a Double Bed\"\" and a remake of the popular Luther Ingram R&B hit, \"\"(If Loving You Is Wrong) I Don't Want to Be Right\"\". Both singles also charted on the Pop and Adult Contemporary charts. \"\"If Loving You Is Wrong\"\" became Mandrell's only Top 40 Pop hit, peaking at #31 on the"} +{"qid": "test3044", "pid": "20614045", "query": "when is the 5th round fa cup played", "answer": "February 2018", "passage": "\"2018 Korean FA Cup\"\n2018 Korean FA Cup The 2018 Korean FA Cup, known as the KEB Hana Bank FA Cup due to sponsorship reasons, was the 23rd edition of Korean FA Cup. As the winners, Daegu FC qualified for the group stage of the 2019 AFC Champions League. The preliminary rounds consisted of three rounds. The draw was held on 23 February 2018. Matches were played from 9 to 11 March. Matches were played on 14–15 and 17–18 March. Matches were played on 28, 31 March and 4 April. The draw for the round of 32 and round of 16 was held on"} +{"qid": "test3045", "pid": "420939", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"Tower of London\"\nTower of London The Tower of London, officially Her Majesty's Royal Palace and Fortress of the Tower of London, is a historic castle located on the north bank of the River Thames in central London. It lies within the London Borough of Tower Hamlets, separated from the eastern edge of the square mile of the City of London by the open space known as Tower Hill. It was founded towards the end of 1066 as part of the Norman Conquest of England. The White Tower, which gives the entire castle its name, was built by William the Conqueror in 1078"} +{"qid": "test3045", "pid": "15966558", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"White Tower (Tower of London)\"\nWhite Tower (Tower of London) The White Tower is a central tower, the old keep, at the Tower of London. It was built by William the Conqueror during the early 1080s, and subsequently extended. The White Tower was the castle's strongest point militarily, and provided accommodation for the king and his representatives, as well as a chapel. Henry III ordered that the tower be whitewashed in 1240. The castle which later became known as the Tower of London was begun by William the Conqueror in 1066. It began as a timber fortification enclosed by a palisade. In the next decade"} +{"qid": "test3045", "pid": "15966585", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"White Tower (Tower of London)\"\nand stained glass windows that depicted the Virgin Mary and Holy Trinity. White Tower (Tower of London) The White Tower is a central tower, the old keep, at the Tower of London. It was built by William the Conqueror during the early 1080s, and subsequently extended. The White Tower was the castle's strongest point militarily, and provided accommodation for the king and his representatives, as well as a chapel. Henry III ordered that the tower be whitewashed in 1240. The castle which later became known as the Tower of London was begun by William the Conqueror in 1066. It began"} +{"qid": "test3045", "pid": "457608", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"William the Conqueror\"\npowerful English earl Harold Godwinson, who was named the next king by Edward on the latter's deathbed in January 1066. William argued that Edward had previously promised the throne to him and that Harold had sworn to support William's claim. William built a large fleet and invaded England in September 1066, decisively defeating and killing Harold at the Battle of Hastings on 14 October 1066. After further military efforts William was crowned king on Christmas Day 1066, in London. He made arrangements for the governance of England in early 1067 before returning to Normandy. Several unsuccessful rebellions followed, but by"} +{"qid": "test3045", "pid": "420967", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"Tower of London\"\nin a building in the outer ward near Salt Tower. Between 1348 and 1355, a second water-gate, Cradle Tower, was added east of St Thomas's Tower for the king's private use. Victorious at the Battle of Hastings on 14 October 1066, the invading Duke of Normandy, William the Conqueror, spent the rest of the year securing his holdings by fortifying key positions. He founded several castles along the way, but took a circuitous route toward London; only when he reached Canterbury did he turn towards England's largest city. As the fortified bridge into London was held by Saxon troops, he"} +{"qid": "test3045", "pid": "6954478", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"Guildford Castle\"\nThe roof of the tower is reachable by a staircase which allows views of the grounds and parts of Guildford. The castle's old gatehouse now houses part of Guildford Museum, a local history and archaeology museum with a specialist needlework collection. Guildford Castle Guildford Castle is in Guildford, Surrey, England. It is thought to have been built shortly after the 1066 invasion of England by William the Conqueror. After the Battle of Hastings in 1066 William led his army to Canterbury and then sacked towns along the Pilgrims' Way, including Guildford. Later William, or one of his barons, built Guildford"} +{"qid": "test3045", "pid": "6074557", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"Constable of the Tower\"\nConstable of the Tower is one of the oldest in England, dating back to within a few years of the Conquest, and has always been one of great honour and dignity. In the past, this appointment has been held by eminent prelates of the Church, prominent politicians and distinguished soldiers. The first Constable, Geoffrey de Mandeville was appointed by William the Conqueror (AD 1066-87) in the 11th century. Formerly, in the absence of the Sovereign, the Constable would have been among the most powerful men in London. Today the Constable retains the right of direct access to the Sovereign. Since"} +{"qid": "test3045", "pid": "8422944", "query": "who built the tower of london in 1066", "answer": "William the Conqueror", "passage": "\"Wath, Harrogate\"\n\"\"Rothschil\"\" in 1066. William the Conqueror granted to Count Alan. The manor and village were in dispute about ownership through the first half of the 13th century. These disputes culminated in a Papal Court which decided that the two warring parties would submit a champion each in a duel. The abbot of Mont St Michel feared for his life, and that of his champion, and so renounced all claims on the village. The winner was Sir Robert Marmion, whose family were already resident at West Tanfield and who built their castle (Marmion Tower). Wath was historically a large ancient parish"} +{"qid": "test3046", "pid": "15752483", "query": "when did seat belts become law in ontario", "answer": "January 1, 1976", "passage": "\"Seat belt legislation in Canada\"\nseparate child restraint laws. A subsequent offense may be higher. Seat belt legislation in Canada Seat belt legislation in Canada is left to the provinces. All provinces in Canada have primary enforcement seat belt laws, which allow a police officer to stop and ticket a driver if s/he observes a violation. Ontario was the first province to pass a law which required vehicle occupants to wear seat belts, a law that came into effect on January 1, 1976. This table contains a brief summary of all seatbelt laws in Canada. This list includes only seatbelt laws, which often do not"} +{"qid": "test3046", "pid": "15752482", "query": "when did seat belts become law in ontario", "answer": "January 1, 1976", "passage": "\"Seat belt legislation in Canada\"\nSeat belt legislation in Canada Seat belt legislation in Canada is left to the provinces. All provinces in Canada have primary enforcement seat belt laws, which allow a police officer to stop and ticket a driver if s/he observes a violation. Ontario was the first province to pass a law which required vehicle occupants to wear seat belts, a law that came into effect on January 1, 1976. This table contains a brief summary of all seatbelt laws in Canada. This list includes only seatbelt laws, which often do not themselves apply to children; however, all provinces and territories have"} +{"qid": "test3047", "pid": "18461274", "query": "where does the band imagine dragons come from", "answer": "Las Vegas, Nevada", "passage": "\"Smoke + Mirrors\"\nWayne Sermon), except where noted. Note Imagine Dragons Smoke + Mirrors Smoke + Mirrors is the second studio album by American rock band Imagine Dragons. The album was recorded during 2014 at the band's home studio in Las Vegas, Nevada. Self-produced by members of the band along with English hip-hop producer Alexander Grant, known by his moniker Alex da Kid, the album was released by Interscope Records and Grant's KIDinaKORNER label on February 17, 2015, in the United States. The album received generally mixed reviews from music critics upon release. However, it debuted at number one on the \"\"Billboard\"\" 200"} +{"qid": "test3047", "pid": "15023474", "query": "where does the band imagine dragons come from", "answer": "Las Vegas, Nevada", "passage": "\"Imagine Dragons\"\nImagine Dragons Imagine Dragons is an American rock band from Las Vegas, Nevada, consisting of lead vocalist Dan Reynolds, lead guitarist Wayne Sermon, bassist Ben McKee, and drummer Daniel Platzman. The band first gained exposure with the release of their single \"\"It's Time\"\", followed by their award-winning debut studio album \"\"Night Visions\"\" (2012), which resulted in the chart-topping singles \"\"Radioactive\"\" and \"\"Demons\"\". \"\"Rolling Stone\"\" named \"\"Radioactive\"\", which holds the record for most weeks charted on the \"\"Billboard\"\" Hot 100, the \"\"biggest rock hit of the year\"\". MTV called them \"\"the year's biggest breakout band\"\", and \"\"Billboard\"\" named them their \"\"Breakthrough"} +{"qid": "test3047", "pid": "15023511", "query": "where does the band imagine dragons come from", "answer": "Las Vegas, Nevada", "passage": "\"Imagine Dragons\"\nImagine Dragons Imagine Dragons is an American rock band from Las Vegas, Nevada, consisting of lead vocalist Dan Reynolds, lead guitarist Wayne Sermon, bassist Ben McKee, and drummer Daniel Platzman. The band first gained exposure with the release of their single \"\"It's Time\"\", followed by their award-winning debut studio album \"\"Night Visions\"\" (2012), which resulted in the chart-topping singles \"\"Radioactive\"\" and \"\"Demons\"\". \"\"Rolling Stone\"\" named \"\"Radioactive\"\", which holds the record for most weeks charted on the \"\"Billboard\"\" Hot 100, the \"\"biggest rock hit of the year\"\". MTV called them \"\"the year's biggest breakout band\"\", and \"\"Billboard\"\" named them their \"\"Breakthrough"} +{"qid": "test305", "pid": "2160564", "query": "who is the actor that plays ducky on ncis", "answer": "David McCallum", "passage": "\"David McCallum\"\neras for mankind. Since 2003 McCallum has starred in the CBS television series \"\"NCIS\"\" as Dr. Donald \"\"Ducky\"\" Mallard, the team's chief medical examiner and one of the show's most popular characters. In Season 2 Episode 13 \"\"The Meat Puzzle\"\", NCIS Special Agent Caitlin Todd (Sasha Alexander) asked Special Agent Leroy Jethro Gibbs (Mark Harmon), \"\"What did Ducky look like when he was younger?\"\" Gibbs replies, \"\"Illya Kuryakin\"\". According to the behind-the-scenes feature on the 2006 DVD of NCIS season 1, McCallum became an expert in forensics to play Mallard, including appearing at medical examiner conventions. In the feature, Donald"} +{"qid": "test305", "pid": "2160553", "query": "who is the actor that plays ducky on ncis", "answer": "David McCallum", "passage": "\"David McCallum\"\nDavid McCallum David Keith McCallum, Jr. (born 19 September 1933) is a Scottish-American actor and musician. He first gained recognition in the 1960s for playing secret agent Illya Kuryakin in the television series \"\"The Man from U.N.C.L.E.\"\". In recent years, McCallum has gained renewed international recognition and popularity for his role as NCIS medical examiner Dr. Donald \"\"Ducky\"\" Mallard in the American television series \"\"NCIS\"\". McCallum was born in Maryhill, Glasgow, the second of two sons of Dorothy Dorman, a cellist, and orchestral violinist David McCallum Sr. When he was three, his family moved to London for his father to"} +{"qid": "test305", "pid": "16750405", "query": "who is the actor that plays ducky on ncis", "answer": "David McCallum", "passage": "\"Playing with Fire (NCIS)\"\nby Dennis Smith. The episode marks the return of NCIS agent Stan Burley (Joel Gretsch). He was last seen in the season 1 episode \"\"High Seas\"\". \"\"Over the years we've discussed bringing back Joel Gretsch as NCIS Special Agent Burley\"\", the writers said. \"\"He appeared in Episode 6, \"\"High Seas.\"\" It may be the longest time interval in TV history for a character to reoccur.\"\" The episode also feature Ducky's (David McCallum) will, which include donations to the Marine Corps. Scholarship Foundation. \"\"For several years we've been aware that David McCallum's favorite charity is the Marine Corps. Scholarship Foundation. We"} +{"qid": "test3050", "pid": "1731830", "query": "where does the cell spend most of its time in the cell cycle", "answer": "Interphase", "passage": "Interphase\nInterphase Interphase is the phase of the cell cycle in which a typical cell spends most of its life. During this phase, the cell copies its DNA in preparation for mitosis. Interphase is the 'daily living' or metabolic phase of the cell, in which the cell obtains nutrients and metabolizes them, grows, reads its DNA, and conducts other \"\"normal\"\" cell functions. The majority of eukaryotic cells spend most of their time in interphase. This phase was formerly called the resting phase. However, interphase does not describe a cell that is merely resting; rather, the cell is living, and preparing for"} +{"qid": "test3050", "pid": "1731834", "query": "where does the cell spend most of its time in the cell cycle", "answer": "Interphase", "passage": "Interphase\nin interphase, the cell proceeds to prophase, or in plants to preprophase, which is the first stage of mitosis. G phase is viewed as either an extended G phase where the cell is neither dividing nor preparing to divide and or as a distinct quiescent stage which occurs outside of the cell cycle. In gamete production interphase is succeeded by meiosis. In programmed cell death, interphase is followed or preempted by apoptosis. Interphase Interphase is the phase of the cell cycle in which a typical cell spends most of its life. During this phase, the cell copies its DNA in"} +{"qid": "test3050", "pid": "278118", "query": "where does the cell spend most of its time in the cell cycle", "answer": "Interphase", "passage": "Mitosis\ninterphase nuclei. During mitotic progression, typically after the anaphase onset, the cell may undergo cytokinesis. In animal cells, a cell membrane pinches inward between the two developing nuclei to produce two new cells. In plant cells, a cell plate forms between the two nuclei. Cytokinesis does not always occur; coenocytic (a type of multinucleate condition) cells undergo mitosis without cytokinesis. The mitotic phase is a relatively short period of the cell cycle. It alternates with the much longer \"\"interphase\"\", where the cell prepares itself for the process of cell division. Interphase is divided into three phases: G (first gap), S"} +{"qid": "test3051", "pid": "5271146", "query": "how many us states currently use capital punishment", "answer": "31 states", "passage": "\"Capital murder\"\n(Northern Ireland) 1967. Sections 1(4) and (5) of the Northern Ireland (Emergency Provisions) Act 1973 read: See sections 1(1)(b) and 3 of the Criminal Justice Act 1964 (both of which are now repealed) and section 8 of the Criminal Justice Act 1990. The term \"\"capital murder\"\" is used in only seven U.S. states; however, 31 states and United States federal government currently allow for capital punishment, and each has its own terminology for an offense punishable by death. In most states, the term \"\"First-Degree Murder\"\" is used; others may use the term \"\"Aggravated Murder\"\" (such as New York, Ohio, Oregon,"} +{"qid": "test3052", "pid": "10745230", "query": "who plays yoda in revenge of the sith", "answer": "Frank Oz", "passage": "\"Walker (Star Wars)\"\ndesign makes it vulnerable from above. The AT-OT can transport 34 clone troopers, who are protected by thick armor and four laser cannons. During the late stages of \"\"Revenge of the Sith\"\"'s development, it was called the \"\"Clone CAT walker\"\". Clone troopers mounted on All Terrain Recon Transports (AT-RTs) search for Yoda (Frank Oz) on Kashyyyk in \"\"Revenge of the Sith\"\". The AT-RT is described as a precursor to the AT-ST, though it also shares similarities to the AT-PTs of the same era. A scene cut from \"\"Revenge of the Sith\"\" would have shown Yoda distracting clone troopers while Chewbacca"} +{"qid": "test3052", "pid": "728443", "query": "who plays yoda in revenge of the sith", "answer": "Frank Oz", "passage": "Yoda\nhostage, thus setting the stage for \"\"Revenge of the Sith\"\". Yoda acts as a supporting character in Dark Horse Comics' \"\"Clone Wars\"\" tie-in comic books. He is also an important character in several novels set in the \"\"Star Wars\"\" universe, particularly \"\"\"\". In 2007, Yoda was selected by \"\"Empire\"\" magazine as the \"\"25th greatest movie character of all time\"\". On their list of the \"\"100 Greatest Fictional Characters\"\", Fandomania.com ranked Yoda at number 60. Yoda also appears in Disney's \"\"\"\" attraction, where he is voiced by his original voice actor, Frank Oz. A life-size statue of Yoda greets visitors to"} +{"qid": "test3052", "pid": "728440", "query": "who plays yoda in revenge of the sith", "answer": "Frank Oz", "passage": "Yoda\nwas merely a vision, and that he has passed the test. The priestesses inform Yoda that his training will resume in time. Yoda was heard in the \"\"Star Wars Rebels\"\" episode \"\"Path of the Jedi\"\" with Frank Oz reprising the role for the first time since \"\"Revenge of the Sith\"\". He communicates with Padawan Ezra Bridger and his master Kanan Jarrus during their experience in an ancient temple on Lothal, and helps the pair do some soul-searching to analyze their true motivations. He appears physically for the first time, in the season 2 episode \"\"Shroud of Darkness\"\", in which he"} +{"qid": "test3054", "pid": "3321098", "query": "where did the california gold rush take place", "answer": "Sierra Nevada", "passage": "\"Coloma, California\"\nColoma, California Coloma (formerly, Colluma and Culloma) is a census-designated place in El Dorado County, California, USA. It is approximately northeast of Sacramento, California. Coloma is most noted for being the site where James W. Marshall found gold in the Sierra Nevada foothills, at Sutter's Mill on January 24, 1848, leading to the California Gold Rush. Coloma's population is 529. The settlement is a tourist attraction known for its ghost town and the centerpiece of the Marshall Gold Discovery State Historic Park. Coloma was designated a National Historic Landmark District on July 4, 1961. It lies at an elevation of"} +{"qid": "test3054", "pid": "5974510", "query": "where did the california gold rush take place", "answer": "Sierra Nevada", "passage": "\"Dog Town, California\"\nfirst gold rush to the eastern slope of the Sierra Nevada. Prospectors rushed here after hearing rumors of gold being washed out near Mono Lake. A small camp and trading center sprung up immediately. Dogtown did attract attention to the area as a whole, including the subsequent discoveries of much richer gold deposits in nearby areas such as Bodie, Aurora and Masonic. The name \"\"Dogtown\"\" was often applied by miners to camps where living conditions were miserable. It was derived from a popular miner’s term for camps made of huts. A cemetery and ruins of the makeshift dwellings that once"} +{"qid": "test3054", "pid": "15086053", "query": "where did the california gold rush take place", "answer": "Sierra Nevada", "passage": "\"David Matuszak\"\na gold prospector dredging in a mountain stream where he learned to pan as a child. The following summer he filed mining claims in both the Cascades and Sierra Nevada Mountains. Matuszak partook in the modern gold rush of the early 1980s. During that time he began the research for his doctoral dissertation about the California Gold Rush. That research led to his classic gold rush history, Nelson Point: Portrait of a Northern Gold Rush Town. Wishing to experience the last two frontiers remaining in North America before they disappeared, Matuszak planned expeditions to Baja California, and Alaska. Soon after"} +{"qid": "test3055", "pid": "18702245", "query": "tumhi ho bandhu sakha tumhi cast real name", "answer": "Sreejita De", "passage": "\"Tum Hi Ho Bandhu Sakha Tumhi\"\nTum Hi Ho Bandhu Sakha Tumhi Tum Hi Ho Bandhu Sakha Tumhi is an Indian television series, which premiered on 11 May 2015 on Zee TV. Neil Bhatt, Kabir K, Sreejita De and Chandini bhagwanani are in lead roles. The show is set in Agra. \"\"Tum Hi Ho Bandhu Sakha Tumhi\"\" is a tale of a family of five brothers and three sisters. The show began with the working title \"\"Pethawala\"\" before being named \"\"Tum Hi Ho Bandhu Sakha Tumhi\"\". The show ended due to low ratings. From 17 July 2016, it was rerun on Zee Anmol as \"\"Choti Bahu"} +{"qid": "test3055", "pid": "18702252", "query": "tumhi ho bandhu sakha tumhi cast real name", "answer": "Sreejita De", "passage": "\"Tum Hi Ho Bandhu Sakha Tumhi\"\nto learn that Sanjana forgives her. The story ends with whole family dancing. Tum Hi Ho Bandhu Sakha Tumhi Tum Hi Ho Bandhu Sakha Tumhi is an Indian television series, which premiered on 11 May 2015 on Zee TV. Neil Bhatt, Kabir K, Sreejita De and Chandini bhagwanani are in lead roles. The show is set in Agra. \"\"Tum Hi Ho Bandhu Sakha Tumhi\"\" is a tale of a family of five brothers and three sisters. The show began with the working title \"\"Pethawala\"\" before being named \"\"Tum Hi Ho Bandhu Sakha Tumhi\"\". The show ended due to low ratings."} +{"qid": "test3055", "pid": "16426952", "query": "tumhi ho bandhu sakha tumhi cast real name", "answer": "Sreejita De", "passage": "\"Sreejita De\"\nthe soap opera \"\"Annu Ki Ho Gayee Waah Bhai Waah\"\" as Annu. She also played the lead character of Mukta Vishnu Kashyav in \"\"Uttaran\"\" as Tapasya's daughter. She played lead role in \"\"Tum Hi Ho Bandhu Sakha Tumhi\"\", which is aired on Zee TV.She played lead role of Aradhya Shamsher Singhv (Lead role) in \"\"Piya Rangrezz\"\", which aired on Life Ok. She was seen in the Star Plus show \"\"Koi Laut Ke Aaya Hai\"\" as Kavya. Apart from that She has done episodic in shows like Savdhan India (Life ok) , Aahaht (sonytv) , Ssh koi hai (Starone), Horror Nights"} +{"qid": "test3055", "pid": "18702246", "query": "tumhi ho bandhu sakha tumhi cast real name", "answer": "Sreejita De", "passage": "\"Tum Hi Ho Bandhu Sakha Tumhi\"\n- Parivar ki Jeevan Rekha\"\". The show there ended on 11 November 2016. The story revolves around the Pethewala family. Bhushan (Neil Bhatt), the second son of the family is in love with Shreya (Sreejita De). Before he can tell his family, they pretend to have fixed his marriage elsewhere but the girl turns out to be Shreya. The lovers are happily married. Ajay is the youngest son of the Pethewala family. His best friend Ajju is in love with Sanjana. Ajju gets a job in USA and he and Sanjana decide to marry in the court given Sanjana's father's"} +{"qid": "test3055", "pid": "18999373", "query": "tumhi ho bandhu sakha tumhi cast real name", "answer": "Neil Bhatt", "passage": "\"Neil Bhatt\"\nwas immensely popular in Indonesia and hence Bhatt, together with his Ramayan co-stars, were invited to perform in a special stage show and fan meeting tour in Jakarta organised by antv. He has played many challenging roles, one of them being Zakir in \"\"Diya Aur Baati Hum\"\" and was last seen in a daily soap playing the lead role in \"\"Tum Hi Ho Bandhu Sakha Tumhi\"\" as Bhushan Pethawala. He was also seen in episodic series of \"\"Zindagi Wins\"\" and \"\"Pyar Tune Kya Kiya\"\". His debut film \"\"Bhanwar\"\" is an untold story of folk puppeteer in modern Gujarat. Neil Bhatt"} +{"qid": "test3057", "pid": "19727410", "query": "where did they film woody the woodpecker movie", "answer": "Canada", "passage": "\"Woody Woodpecker (2017 film)\"\nand reliance on farts and burps are the low lights of this awkward effort to bring back a less-than-engaging cartoon bird.\"\" The film was first released in theaters in Brazil (under the name of Pica-Pau: O Filme) on October 5, 2017. As of March 11, 2018, \"\"Woody Woodpecker\"\" has grossed $15.3 million. It debuted at $1.5 million, finishing second at the Brazilian box office behind \"\"Blade Runner 2049\"\". The movie increased by +45.4% in its second weekend, moving to first place with $2.1 million. It was released in the United States and Canada on DVD, Digital HD, and Netflix on"} +{"qid": "test3058", "pid": "6743257", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"District courts of India\"\ndecisions on the allocation of work among them. The District and Sessions judge is often referred to as \"\"district judge\"\" when he presides over civil matters and \"\"sessions judge\"\" when he presides over criminal matters. Being the highest judge at district level, the District Judge also enjoys the power to manage the state funds allocated for the development of judiciary in the district. The district judge is also called \"\"metropolitan session judge\"\" when he is presiding over a district court in a city which is designated \"\"metropolitan area\"\" by the state . Other courts subordinated to district court in the"} +{"qid": "test3058", "pid": "6743256", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"District courts of India\"\ncourt is also a court of Sessions when it exercises its jurisdiction on criminal matters under the Code of Criminal procedure. The district court is presided over by one District Judge appointed by the state Governor with on the advice of state chief justice In addition to the district judge there may be a number of Additional District Judges and Assistant District Judges depending on the workload. The Additional District Judge and the court presided have equivalent jurisdiction as the District Judge and his district court. However, the district judge has supervisory control over Additional and Assistant District Judges, including"} +{"qid": "test3058", "pid": "11176092", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"Government of Pennsylvania\"\npreside mainly over minor criminal offenses and small civil claims. Magisterial District Judges also preside over preliminary hearings in all misdemeanor and felony criminal cases. Most criminal and civil cases originate in the Courts of Common Pleas, which also serve as appellate courts to the district judges and for local agency decisions. The Superior Court hears all appeals from the Courts of Common Pleas not expressly designated to the Commonwealth Court or Supreme Court of Pennsylvania. It also has original jurisdiction to review warrants for wiretap surveillance. The Commonwealth Court is limited to appeals from final orders of certain state"} +{"qid": "test3058", "pid": "18534968", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"Law of Cyprus\"\nboth divisions, a case is heard by a single judge. Nevertheless, the District Courts' criminal competence is limited - they may only impose sanctions which count up to five years of imprisonment. District Court judges have three levels of hierarchy : District Judges, Senior District Judges and Presidents of District Courts. While in the Criminal Division, there is no distinction as to what level of Judge will hear a specific case, in the Civil Division, the level of the judge that will hear the case depends on the size of the claim, with only Presidents having jurisdiction over claims that"} +{"qid": "test3058", "pid": "7007531", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"Cherokee Nation\"\nof tribal government includes the District Court and Supreme Court, which is comparable to the U.S. Supreme Court. The Supreme Court consists of five members who are appointed by the Principal Chief and confirmed by the council. It is the highest court of the Cherokee Nation and oversees internal legal disputes and the District Court. The District Judge and an Associate District Judge preside over the tribe's District Court and hear all cases brought before it under jurisdiction of the Cherokee Nation Judicial Code. Cherokee Nation has two tribal courts, the District Court and the Supreme Court. The Cherokee Nation"} +{"qid": "test3058", "pid": "16520572", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"Frank Paul Geraci Jr.\"\nin the Western District of New York. He served as a partner at the law firm of Geraci & Feldman from 1987 to 1992. From 1992 to 1998, he was a judge of the Rochester City Court, presiding over civil cases, criminal misdemeanors and pre-trial felony matters. From 1999 to 2012, he served as a judge on the Monroe County Court in Rochester, New York, where he primarily handled criminal felonies. On May 14, 2012, President Obama nominated Geraci to be a United States District Judge for the United States District Court for the Western District of New York, to"} +{"qid": "test3058", "pid": "18909591", "query": "who presides over the highest criminal court in a district", "answer": "District Judge", "passage": "\"Mark A. Young\"\nAttorney in the Central District of California, as Deputy Chief of the Organized Crime Drug Task Force, from 2005 to 2007, and as Executive Assistant United States Attorney, from 2007 to 2008. Since 2008, he has served as a Judge of the Los Angeles County Superior Court, where he presides over criminal matters. On July 17, 2015, President Obama nominated Young to serve as a United States District Judge of the United States District Court for the Central District of California, to the seat vacated by Judge Audrey B. Collins, who retired on August 1, 2014. He received a hearing"} +{"qid": "test3061", "pid": "16899805", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Freestyle skiing at the 2014 Winter Olympics\"\nskiing gold medalist to defend his Olympic title, winning the men's moguls, following up his 2010 Olympics gold in men's moguls. Justine Dufour-Lapointe became the youngest freestyle skiing Olympic champion ever in the women's mogul event. Freestyle skiing at the 2014 Winter Olympics Freestyle skiing at the 2014 Winter Olympics was held at the Rosa Khutor Extreme Park near Krasnaya Polyana, Russia. The ten events took place between 6–21 February 2014. In April 2011 the International Olympic Committee approved the addition of the halfpipe event for both, men and women. In July 2011, slopestyle was also added to the program,"} +{"qid": "test3061", "pid": "17867295", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"James Machon (skier)\"\n2014 in the halfpipe, an event in freestyle skiing. He finished 23rd. Machon's brother, Robert, also skis competitively, and is a member of the England Team. James Machon (skier) James Machon (born 23 November 1990) is a freestyle skier who competes in the halfpipe, his first Olympics was the 2014 Winter Olympics in Sochi. Machon was born on 23 November 1990, in Sheffield, Yorkshire, England. He was schooled at Bamford Primary School, and went to Leeds Metropolitan University. He started skiing at the age of 6. Between the age of 6 and until he was 14, went on annual ski"} +{"qid": "test3061", "pid": "16899802", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Freestyle skiing at the 2014 Winter Olympics\"\nFreestyle skiing at the 2014 Winter Olympics Freestyle skiing at the 2014 Winter Olympics was held at the Rosa Khutor Extreme Park near Krasnaya Polyana, Russia. The ten events took place between 6–21 February 2014. In April 2011 the International Olympic Committee approved the addition of the halfpipe event for both, men and women. In July 2011, slopestyle was also added to the program, therefore a total of four new events were added to the freestyle skiing program. The following is the competition schedule for all ten events. A maximum of 282 quota spots were available to athletes to compete"} +{"qid": "test3061", "pid": "17993356", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Murray Buchan\"\n13th, his best-ever result in a World Cup, at Calgary. In the winter, Buchan trains in Breckenridge, Colorado. Buchan's Olympic debut was at the 2014 Winter Olympics in Sochi, which was the first time the halfpipe had been included in a Winter Olympics. Going into the games, Buchan was the British Olympic champion in the halfpipe. He competed in the qualifiers on 18 February 2014 in the freestyle skiing event halfpipe, and finished 17th, having targeted 18 or above in the run up to the games. Murray Buchan Murray Buchan (born 2 December 1991), nicknamed Mutley, Muesli, and Muzza, is"} +{"qid": "test3061", "pid": "17093079", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"United States at the 2014 Winter Olympics\"\nsilver and bronze respectively, the first U.S. medals in that sport since 2002. Overall, the U.S. won four medals in bobsled events, two in skeleton, and one in luge. Of the nine gold medals won by Team USA, seven were won by first-time Olympians. In snowboarding, Sage Kotsenburg and Jamie Anderson won gold in the inaugural slopestyle events, and Kaitlyn Farrington won the women's halfpipe. In freestyle skiing, Joss Christensen won the inaugural men's slopestyle, David Wise won men's halfpipe, and Maddie Bowman won women's halfpipe. Eighteen-year-old alpine skier Mikaela Shiffrin won gold in the slalom in her Olympic debut."} +{"qid": "test3061", "pid": "17093173", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Slovenia at the 2014 Winter Olympics\"\ndelegation. The first days of the Olympics saw several injuries in the Slovenian team. Alpine skier Rok Perko fell at the downhill training and broke his nose, consequently he did not appear in neither the downhill nor the super-G races. Snowboarder Cilka Sadar suffered a knee injury at halfpipe training which also caused her withdrawal from the competition. Matija Mihič, who qualified for snowboard cross, suffered a knee injury before coming to Sochi and did not travel to Russia. Ski jumper Robert Kranjec fell at the qualifications of the normal hill event. He had to skip the normal hill event"} +{"qid": "test3061", "pid": "15305580", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Rosalind Groenewoud\"\nSki Championships. When Groenewoud won gold during the 2012 Winter X Games in Aspen and in Tignes, she dedicated her wins to teammate Sarah Burke who died in January 2012 in a training run. During 2013, Groenewoud was considered among the top female skiers in her sport and as such was a favourite to win gold in the new Olympic sport of halfpipe at the 2014 Winter Olympics in Sochi. During the 2012–13 FIS Freestyle Skiing World Cup she finished second at the stop in Sochi that was considered the last test event at the location before the Olympics. Prior"} +{"qid": "test3061", "pid": "17869509", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Emma Lonsdale\"\nLonsdale competed in alpine skiing for 16 years. However, she switched sports to freestyle skiing, where she trialled several disciplines: mogul, aerial, and skiercross. She eventually decided to participate in halfpipe skiing. At the 2008 X Games, Lonsdale finished in ninth place in halfpipe, and at the FIS Alpine World Ski Championships 2011 she finished in 11th place. She has won the halfpipe at the British Championships every year from 2003 to 2011. She has also worked as a lifeguard. Lonsdale's debut in the Olympics was the 2014 Winter Games in Sochi, where she competed at the halfpipe for Team"} +{"qid": "test3061", "pid": "7121085", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Canada at the Winter Olympics\"\nin 2018). Dara Howell took gold in the slopestyle event in 2014. Cassie Sharpe added a halfpipe gold in 2018. Canadian skiers also finished in the top 3 positions in aerials at the 1988 and 1992 games, when it was a demonstration sport. Canada has never won an Olympic medal in the Nordic combined competition. Their best finish was tenth in the individual normal hill competition at the 1932 games. Canada has never won an Olympic medal in ski jumping. Their best finish was seventh in the men's large hill competition at the 1988 games. Ross Rebagliati won a gold"} +{"qid": "test3061", "pid": "6306683", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "Freeskiing\nthe AFP has named World Champions in each discipline for men and women. The Overall World Championship is awarded each year to the best combined ranking in all disciplines (excluding big air for women). In 2012 the AFP changed the name of the Overall World Championship trophy to the Sarah Burke Trophy in honor of the fallen women's skiing pioneer Sarah Burke who died in a 2012 skiing accident in Utah. On April 6, 2011, the International Olympic Committee (IOC) announced the addition of the men's and women's ski halfpipe and slopestyle events to the 2014 Winter Olympics in Sochi."} +{"qid": "test3061", "pid": "17895865", "query": "when did skiing halfpipe become an olympic event", "answer": "2014", "passage": "\"Katrien Aerts\"\nEurope Superpipe. In 2013 she finished eighth in the FIS World Cup Halfpipe, 13th at the FIS World Championships Halfpipe in qualifying and 15th in the WC Slopestyle also in qualifying. In 2014 she participated in the Olympic Winter Games in Sochi in the discipline halfpipe skiing which was on the program for the first time. She finished in 17th place. After her last participation in a freestyle skiing world championship in 2015 in Kreischberg, where she won a 7th place, Aerts announced her retirement as top athlete. She has since focused on freeride skiing. Katrien Aerts is a multiple"} +{"qid": "test3062", "pid": "3727351", "query": "when did the movie princess bride come out", "answer": "1987", "passage": "\"Inigo Montoya\"\nInigo Montoya Inigo Montoya is a fictional character in William Goldman's 1973 novel \"\"The Princess Bride.\"\" In Rob Reiner's 1987 film adaptation, he was portrayed by Mandy Patinkin. In both the book and the movie, he was originally from Spain and resided in the fictional country of Florin. In \"\"The Princess Bride\"\", Inigo Montoya is portrayed as a Spanish fencer and henchman to the Sicilian criminal Vizzini. Inigo's father Domingo was a great swordcrafter, but he remained obscure because he disliked dealing with the stupid rich and privileged. When Count Rugen, a nobleman with a six-fingered right hand, asked him"} +{"qid": "test3062", "pid": "17605903", "query": "when did the movie princess bride come out", "answer": "1987", "passage": "\"Good Form\"\nto Wendy in the original 1953 Disney movie. Also, Regina tempts the Lost Boy with an Apollo candy bar, another reference to \"\"Lost\"\". After Hook kisses Emma she asks him to give her five minutes alone. He replies \"\"As you wish\"\", which is a reference to the 1987 movie \"\"The Princess Bride\"\", where Wesley the Dread Pirate Roberts would say \"\"As you wish\"\" to Princess Buttercup. It actually meant \"\"I love you\"\". \"\"Good Form\"\" received positive reviews from critics. In a review from Entertainment Weekly, Hillary Busis quotes, \"\"First, let's get one thing out of the way: It happened. Emma"} +{"qid": "test3062", "pid": "3727359", "query": "when did the movie princess bride come out", "answer": "1987", "passage": "\"Inigo Montoya\"\nnovel ends with Inigo's wounds reopening while he is on the run from the Brute Squad, leaving his future in doubt. Inigo Montoya Inigo Montoya is a fictional character in William Goldman's 1973 novel \"\"The Princess Bride.\"\" In Rob Reiner's 1987 film adaptation, he was portrayed by Mandy Patinkin. In both the book and the movie, he was originally from Spain and resided in the fictional country of Florin. In \"\"The Princess Bride\"\", Inigo Montoya is portrayed as a Spanish fencer and henchman to the Sicilian criminal Vizzini. Inigo's father Domingo was a great swordcrafter, but he remained obscure because"} +{"qid": "test3062", "pid": "272692", "query": "when did the movie princess bride come out", "answer": "1987", "passage": "\"Mandy Patinkin\"\nHe returned to Broadway in 1984 to star in the Pulitzer Prize-winning musical \"\"Sunday in the Park with George\"\", which saw him earn another Tony Award nomination for Best Actor (Musical). Patinkin played Inigo Montoya in Rob Reiner's 1987 \"\"The Princess Bride\"\", and found his studies a huge asset in \"\"The Princess Bride\"\", playing the role of the best swordsman in the country, short of the main character, and part of his role included proficiency in fencing at a professional level. Over the next decade, he continued to appear in movies, such as \"\"Dick Tracy\"\" and \"\"Alien Nation\"\". On Broadway,"} +{"qid": "test3062", "pid": "24998", "query": "when did the movie princess bride come out", "answer": "1987", "passage": "\"André the Giant\"\nHe had an uncredited appearance in the 1984 film \"\"Conan the Destroyer\"\" as Dagoth, the resurrected horned giant god who is killed by Conan (Arnold Schwarzenegger). That same year, André also made an appearance in \"\"Micki & Maude\"\" (billed as André Rousimmoff). He appeared most notably as Fezzik, his own favorite role, in the 1987 film \"\"The Princess Bride\"\". Both the film and André's performance retain a devoted following. In shoot interviews, wrestlers have stated that Andre was so proud of being in \"\"Princess Bride\"\", he carried a copy of the movie everywhere he went to watch whenever he could."} +{"qid": "test3064", "pid": "3160711", "query": "who hung the lanterns in the old north church", "answer": "Robert Newman", "passage": "\"Old North Church\"\nfollow 100 years or 200 years from now may look back at us and say: We were a society which combined reason with liberty and hope with freedom. May it be said above all: We kept the faith, freedom flourished, liberty lived. These are the abiding principles of our past and the greatest promise of our future. Following President Ford's remarks, two lanterns were lit by Robert Newman Ruggles and Robert Newman Sheet, descendants of Robert Newman, who, as sexton of the Old North Church in 1775, lit the two lanterns which signaled the movement of British troops. The President"} +{"qid": "test3064", "pid": "3160706", "query": "who hung the lanterns in the old north church", "answer": "Robert Newman", "passage": "\"Old North Church\"\na bust of George Washington, which Gilbert du Motier, Marquis de Lafayette, reportedly remarked was the best likeness of the first president he had ever seen. The Old North Church was built in December 1723, inspired by the works of Christopher Wren, the British architect who was responsible for rebuilding London after the Great Fire. Timothy Cutler was the founding rector after serving as third rector of Yale College from 1719 to 1722. In April 1775, Paul Revere told three Boston patriots to hang two lanterns in the steeple. These men were the church sexton Robert Newman and Captain John"} +{"qid": "test3064", "pid": "15673391", "query": "who hung the lanterns in the old north church", "answer": "Robert Newman", "passage": "\"Robert Newman (sexton)\"\nRobert Newman (sexton) Robert Newman (March 20, 1752 – May 26, 1804) was an American sexton at the Old North Church in Boston, Massachusetts. He is considered a Patriot in the American Revolution for hanging lanterns in his church's steeple on April 18, 1775, part of a warning signal devised by Paul Revere during the Battles of Lexington and Concord. Newman had become sexton of Christ Church, now known as Old North Church, in 1772. He lived with his mother in 1775, and she was renting part of their home to British officers. After pretending to go to bed on"} +{"qid": "test3064", "pid": "15673394", "query": "who hung the lanterns in the old north church", "answer": "Robert Newman", "passage": "\"Robert Newman (sexton)\"\nthe bicentennial of his signal, in 1975. Robert Newman (sexton) Robert Newman (March 20, 1752 – May 26, 1804) was an American sexton at the Old North Church in Boston, Massachusetts. He is considered a Patriot in the American Revolution for hanging lanterns in his church's steeple on April 18, 1775, part of a warning signal devised by Paul Revere during the Battles of Lexington and Concord. Newman had become sexton of Christ Church, now known as Old North Church, in 1772. He lived with his mother in 1775, and she was renting part of their home to British officers."} +{"qid": "test3065", "pid": "13880427", "query": "when was the last wolf pack killed in yellowstone", "answer": "1926", "passage": "\"History of wolves in Yellowstone\"\nHistory of wolves in Yellowstone When Yellowstone National Park was created in 1872, gray wolf (\"\"Canis lupus\"\") populations were already in decline in Montana, Wyoming and Idaho. The creation of the national park did not provide protection for wolves or other predators, and government predator control programs in the first decades of the 1900s essentially helped eliminate the gray wolf from Yellowstone. The last wolves were killed in Yellowstone in 1926. After that time, sporadic reports of wolves still occurred, but scientists confirmed that sustainable wolf populations had been extirpated and were absent from Yellowstone during the mid-1900s. Starting in"} +{"qid": "test3065", "pid": "13880433", "query": "when was the last wolf pack killed in yellowstone", "answer": "1926", "passage": "\"History of wolves in Yellowstone\"\nnoted wildlife biologist published his \"\"Fauna Series No. 4—Fauna of the National Parks of the United States-Ecology of the Coyote in the Yellowstone National Park.\"\" In this report, Murie tallied the number of wolves killed as reported annually by park administrators between 1915 and 1935: Updated research in the 1980s verified that the last official killing of wolves in the park took place in 1926 when two pups found near Soda Butte Creek were killed by park rangers. The last reported wolf killed in the Greater Yellowstone Ecosystem (prior to today's legal hunting or control measures) occurred in May 1943"} +{"qid": "test3065", "pid": "7973238", "query": "when was the last wolf pack killed in yellowstone", "answer": "1926", "passage": "\"Wolf reintroduction\"\ngroups battled for decades over the Yellowstone and Idaho wolf reintroduction effort. The idea of wolf reintroduction was first brought to Congress in 1966 by biologists who were concerned with the critically high elk populations in Yellowstone and the ecological damages to the land from excessively large herds. Officially, 1926 was the year that the last wolves were killed within Yellowstone’s boundaries. When the wolves were eradicated and hunting eliminated, the elk population boomed. Over the succeeding decades, elk populations grew so large that they unbalanced the local ecosystem. The number of elk and other large prey animals increased to"} +{"qid": "test3065", "pid": "5559139", "query": "when was the last wolf pack killed in yellowstone", "answer": "1926", "passage": "\"Wolf hunting\"\nthree years later. Civilians turned Bounty hunters known as \"\"Wolfers\"\" began killing ungulates in large numbers as bait, poisoning the meat in hopes of attracting unsuspecting wolves. It is estimated that by the 1870s, this method was killing 100,000 wolves annually. Between 1916 and 1926 the National Park Service predator control program resulted in the extermination of sustainable packs of wolves in Yellowstone National Park by 1926. American wolf hunts peaked in the 1920s-1930s, when up to 21,000 were killed annually. After World War II, wolves were seen less as varmints and more as big game trophy animals. The first"} +{"qid": "test3065", "pid": "13880431", "query": "when was the last wolf pack killed in yellowstone", "answer": "1926", "passage": "\"History of wolves in Yellowstone\"\nbegan a concerted program which eventually was called: \"\"Animal Damage Control\"\". This predator control program alone killed 1,800 wolves and 23,000 coyotes in 39 U.S. National Forests in 1907. In 1916, when the National Park Service was created, its enabling legislation included words that authorized the Secretary of the Interior to \"\"provide in his discretion for the destruction of such animals and of such plant life as may be detrimental to the use of said parks, monuments and reservations\"\". It is generally accepted that sustainable gray wolf packs had been extirpated from Yellowstone National Park by 1926, although the National"} +{"qid": "test3067", "pid": "9115236", "query": "what is the minimum dollar amount for federal court", "answer": "$75,000", "passage": "\"Jurisdiction stripping\"\nwhich essentially insulates statutes from judicial review altogether. Jurisdiction-stripping statutes usually take away no substantive rights but rather change the court that will hear the case. Congress has sometimes limited federal involvement in state cases, for example by setting a minimum amount in controversy in order to bar the lower federal courts from hearing diversity cases that involve less than that amount (currently $75,000), combined with precluding a right to appeal to the Supreme Court. Likewise, Congress has never required that state court cases involving federal questions be removed or appealed to federal court, and so the federal courts are"} +{"qid": "test3067", "pid": "428521", "query": "what is the minimum dollar amount for federal court", "answer": "$75,000", "passage": "\"Seventh Amendment to the United States Constitution\"\ndiversity jurisdiction to amounts that small. Under federal law (28 U.S.C. §1332), the amount in dispute must exceed $75,000 for a case to be heard in federal court based on diversity of the parties' citizenship (the parties are from different states or different countries). However, civil cases may arise in federal court that are not diversity cases (e.g., in places like the District of Columbia that are federal jurisdictions), in which case the Twenty Dollars Clause may apply. The Re-Examination Clause of the Seventh Amendment states: \"\"In suits at common law, ... no fact tried by jury, shall be otherwise"} +{"qid": "test3068", "pid": "7444803", "query": "where would the group bacteroids likely be found", "answer": "the human colon", "passage": "\"Bacteroides fragilis\"\nBacteroides fragilis Bacteroides fragilis is an obligately anaerobic, Gram-negative, rod-shaped bacterium. It is part of the normal microbiota of the human colon and is generally commensal, but can cause infection if displaced into the bloodstream or surrounding tissue following surgery, disease, or trauma. The \"\"B. fragilis\"\" group is the most commonly isolated Bacteroidaceae in anaerobic infections, especially those that originate from the gastrointestinal microbiota. \"\"B. fragilis\"\" is the most prevalent organism in the \"\"B. fragilis\"\" group, accounting for 41% to 78% of the isolates of the group. These organisms are resistant to penicillin by virtue of production of beta-lactamase, and"} +{"qid": "test3068", "pid": "7340757", "query": "where would the group bacteroids likely be found", "answer": "the human colon", "passage": "Bacteroides\nmaterial. These compounds are common in the human colon and are potentially toxic. \"\"Bacteroides\"\" converts these sugars to fermentation products which are beneficial to humans. \"\"Bacteroides\"\" also have the ability to remove side chains from bile acids, thus returning bile acids to the hepatic circulation. There is data suggesting that members of \"\"Bacteroides\"\" affect the lean or obese phenotype in humans. In this article, one human twin is obese while the other is lean. When their fecal microbiota is transplanted into germ-free mice, the phenotype in the mouse model corresponds to that in humans. Although breast-fed infants do not show"} +{"qid": "test3072", "pid": "5642221", "query": "whos jack the ripper in gotham by gaslight", "answer": "Jacob Packer", "passage": "\"Gotham by Gaslight\"\nthe skill of a surgeon and used a knife that belonged to the medical group who worked with his father. Bruce escapes from prison with the help of Alfred and heads straight for the Ripper. Batman interrupts the Ripper as he is about to claim his next victim. Batman chases the Ripper throughout Gotham and the two eventually come to a stop at the grave of Thomas and Martha Wayne, where it is revealed that Jacob Packer is the Ripper. Packer had been trained in medicine and law with the money of Thomas Wayne, but he was driven insane by"} +{"qid": "test3075", "pid": "4226500", "query": "who was selected for the 2018 football hall of fame", "answer": "Ray Lewis", "passage": "\"Brian Dawkins\"\nplayers' jerseys in franchise history, which goes back more than 80 years. On February 4, 2018, it was announced that Dawkins was voted into the Pro Football Hall of Fame and was one of five players selected. Dawkins joined Randy Moss, Brian Urlacher, Ray Lewis, and former Eagles' teammate Terrell Owens. On August 4, 2018, Dawkins was officially inducted into the Pro Football Hall of Fame and attended the ceremony at the Pro Football Hall of Fame in Canton, Ohio. Over the span of his career, Dawkins developed a reputation as a ball-hawking safety and became the unquestioned leader of"} +{"qid": "test3076", "pid": "2927294", "query": "what type of speed does a speedometer measure", "answer": "instantaneous speed", "passage": "Speedometer\nthey existed. Speedometer A speedometer or a speed meter is a gauge that measures and displays the instantaneous speed of a vehicle. Now universally fitted to motor vehicles, they started to be available as options in the 1900s, and as standard equipment from about 1910 onwards. Speedometers for other vehicles have specific names and use other means of sensing speed. For a boat, this is a pit log. For an aircraft, this is an airspeed indicator. Charles Babbage is credited with creating an early type of a speedometer, which was usually fitted to locomotives. The electric speedometer was invented by"} +{"qid": "test3076", "pid": "2927271", "query": "what type of speed does a speedometer measure", "answer": "instantaneous speed", "passage": "Speedometer\nSpeedometer A speedometer or a speed meter is a gauge that measures and displays the instantaneous speed of a vehicle. Now universally fitted to motor vehicles, they started to be available as options in the 1900s, and as standard equipment from about 1910 onwards. Speedometers for other vehicles have specific names and use other means of sensing speed. For a boat, this is a pit log. For an aircraft, this is an airspeed indicator. Charles Babbage is credited with creating an early type of a speedometer, which was usually fitted to locomotives. The electric speedometer was invented by the Croatian"} +{"qid": "test3077", "pid": "7170380", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "Lymphangiectasia\nthe limbs and trunk. Weight loss is seen with long-term disease. Biopsy of the small intestine shows dilation of the lacteals of the villi and distension of the lymphatic vessels. Reduced lymph flow leads to a malabsorption syndrome of the small intestine, especially of fat and fat-soluble vitamins. Rupture of the lymphatics causes protein loss into the intestines. The most common cause of lymphangiectasia was congenital malformation of the lymphatics. Secondary lymphangiectasia may be caused by granulomas or cancer causing lymphatic obstruction, or increased central venous pressure (CVP) causing abnormal lymph drainage. Increased CVP can be caused by pericarditis or"} +{"qid": "test3077", "pid": "790778", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "\"Lymphatic system\"\nchyli develops, all lymph sacs become invaded by mesenchymal cells and are converted into groups of lymph nodes. The spleen develops from mesenchymal cells between layers of the dorsal mesentery of the stomach. The thymus arises as an outgrowth of the third pharyngeal pouch. The lymphatic system has multiple interrelated functions: Lymph vessels called lacteals are at the beginning of the gastrointestinal tract, predominantly in the small intestine. While most other nutrients absorbed by the small intestine are passed on to the portal venous system to drain via the portal vein into the liver for processing, fats (lipids) are passed"} +{"qid": "test3077", "pid": "8335094", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteal", "passage": "\"Solitary lymphatic nodule\"\nspaces which surround the gland, through which they communicate with the lacteal system. They are situated partly in the submucous tissue, partly in the mucous membrane, where they form slight projections of its epithelial layer. The solitary lymphatic nodules of the large intestine are most abundant in the cecum and vermiform process, but are irregularly scattered also over the rest of the intestine. They are similar to those of the small intestine. Solitary lymphatic nodule The Solitary lymphatic nodules (or solitary follicles) are structures found in the small intestine and large intestine. The solitary lymphatic nodules are found scattered throughout"} +{"qid": "test3077", "pid": "4069954", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "Lacteal\nLacteal A lacteal is a lymphatic capillary that absorbs dietary fats in the villi of the small intestine. Triglycerides are emulsified by bile and hydrolyzed by the enzyme lipase, resulting in a mixture of fatty acids, di- and monoglycerides. These then pass from the intestinal lumen into the enterocyte, where they are re-esterified to form triglyceride. The triglyceride is then combined with phospholipids, cholesterol ester, and apolipoprotein B48 to form chylomicrons. These chylomicrons then pass into the lacteals, forming a milky substance known as chyle. The lacteals merge to form larger lymphatic vessels that transport the chyle to the thoracic"} +{"qid": "test3077", "pid": "967819", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "\"Small intestine\"\nof the plicae circulares, the villi, and the microvilli are to increase the amount of surface area available for the absorption of nutrients, and to limit the loss of said nutrients to intestinal fauna. Each villus has a network of capillaries and fine lymphatic vessels called lacteals close to its surface. The epithelial cells of the villi transport nutrients from the lumen of the intestine into these capillaries (amino acids and carbohydrates) and lacteals (lipids). The absorbed substances are transported via the blood vessels to different organs of the body where they are used to build complex substances such as"} +{"qid": "test3077", "pid": "3083417", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "Chyle\nChyle Chyle (; from the Greek word χυλός \"\"chylos\"\", \"\"juice\"\") is a milky bodily fluid consisting of lymph and emulsified fats, or free fatty acids (FFAs). It is formed in the small intestine during digestion of fatty foods, and taken up by lymph vessels specifically known as lacteals. The lipids in the chyle are colloidally suspended in chylomicrons. A chyle fistula occurs when defect(s) of lymphatic vessel(s) result in leakage of lymphatic fluid, typically accumulating in the thoracic (pleural) or abdominal (peritoneal) cavities, leading to a chylous pleural effusion (chylothorax) or chylous ascites, respectively. Diagnosis of a chyle fistula may"} +{"qid": "test3077", "pid": "8860480", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "Lymphangiomatosis\ninto the chest it commonly results in the accumulation of chyle in the linings of the heart and/or lungs. Chyle is composed of lymph fluid and fats that are absorbed from the small intestine by specialized lymphatic vessels called lacteals during digestion. The accumulations are described based on location: chylothorax is chyle in the chest; chylopericardium is chyle trapped inside the sack surrounding the heart; chyloascites is chyle trapped in the linings of the abdomen and abdominal organs. The presence of chyle in these places accounts for many of the symptoms and complications associated with both lymphangiomatosis and Gorham’s disease."} +{"qid": "test3077", "pid": "2958701", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "Chylomicron\nof fatty acids and monoglycerides. These then pass from the intestinal lumen into the enterocyte, where they are re-esterified to form triglycerides. The triglycerides are then combined with phospholipids, cholesteryl esters, and apolipoprotein B-48 to form a nascent chylomicron. These are then released by exocytosis from the enterocytes into the lacteals, lymphatic vessels originating in the villi of the small intestine, and are then secreted into the bloodstream at the thoracic duct's connection with the left subclavian vein. Nascent chylomicrons are composed primarily of triglycerides (85%) and contain some cholesterol and cholesteryl esters. The main apolipoprotein component is apolipoprotein B-48"} +{"qid": "test3077", "pid": "790788", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteals", "passage": "\"Lymphatic system\"\ncame when in 1622 a physician, Gaspare Aselli, identified lymphatic vessels of the intestines in dogs and termed them \"\"venue alba et lacteal,\"\" which is now known as simply the lacteals. The lacteals were termed the fourth kind of vessels (the other three being the artery, vein and nerve, which was then believed to be a type of vessel), and disproved Galen's assertion that chyle was carried by the veins. But, he still believed that the lacteals carried the chyle to the liver (as taught by Galen). He also identified the thoracic duct but failed to notice its connection with"} +{"qid": "test3077", "pid": "11333769", "query": "what is the name of the lymphatic vessels located in the small intestine", "answer": "lacteal", "passage": "\"Pancreatic lipase family\"\ndroplets into smaller droplets, thus increasing the overall surface area of the fat, which allows the lipase to break apart the fat more effectively. The resulting monomers (2 free fatty acids and one 2-monoacylglycerol) are then moved by way of peristalsis along the small intestine to be absorbed into the lymphatic system by a specialized vessel called a lacteal. This protein belongs to the pancreatic lipase family. Unlike some pancreatic enzymes that are activated by proteolytic cleavage (e.g., trypsinogen), pancreatic lipase is secreted in its final form. However, it becomes efficient only in the presence of colipase in the duodenum."} +{"qid": "test3078", "pid": "319315", "query": "the inner sanctuary of the parthenon where the statue of athena is located in known as the", "answer": "naos", "passage": "Parthenon\nwould have been impossible to see when the sculpture was on the temple; this indicates that the sculptors put great effort into accurately portraying the human body. The only piece of sculpture from the Parthenon known to be from the hand of Phidias was the statue of Athena housed in the \"\"naos\"\". This massive chryselephantine sculpture is now lost and known only from copies, vase painting, gems, literary descriptions and coins. A major fire broke out in the Parthenon shortly after the middle of the third century AD which destroyed the Parthenon's roof and much of the sanctuary's interior. Heruli"} +{"qid": "test3078", "pid": "874036", "query": "the inner sanctuary of the parthenon where the statue of athena is located in known as the", "answer": "naos", "passage": "\"Athena Parthenos\"\nrecreating Phidias' work. Historians remain unsure whether or not Phidias himself actually deserves credit for the design and sculpture of the Parthenon, since during the creation Phidias' location was unknown. The statue adds an additional dimension of realism to the replicated Parthenon, whose interior east room (the \"\"naos\"\") was merely a large empty hall prior to the statue's unveiling. The reproduced \"\"Athena Parthenos\"\" gives visitors the impression that they truly are inside an ancient place of worship. The Nashville \"\"Athena Parthenos\"\" is made of a composite of gypsum cement and ground fiberglass. The head of Athena was assembled over an"} +{"qid": "test3078", "pid": "319304", "query": "the inner sanctuary of the parthenon where the statue of athena is located in known as the", "answer": "cella", "passage": "Parthenon\nproportions of the Parthenon do not match the golden proportion. The cella of the Parthenon housed the chryselephantine statue of Athena Parthenos sculpted by Phidias and dedicated in 439 or 438 BC. The appearance of this is known from other images. The decorative stonework was originally highly coloured. The temple was dedicated to Athena at that time, though construction continued until almost the beginning of the Peloponnesian War in 432. By the year 438, the sculptural decoration of the Doric metopes on the frieze above the exterior colonnade, and of the Ionic frieze around the upper portion of the walls"} +{"qid": "test3079", "pid": "1820472", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"Music of the Dominican Republic\"\nMusic of the Dominican Republic The music of the Dominican Republic is primarily influenced by West African, European, and native Taino influences. The Dominican Republic is mainly known for its merengue and bachata music, both of which are the most popular forms of music in the country. Merengue is a musical genre native to the Dominican Republic. It has a moderate to very fast 2/4 rhythm played on güira (metal scraper) and the double-headed tambora. The accordion is also common. Traditional, accordion-based merengue is usually termed merengue típico and is still played by living accordionists like Francisco Ulloa, Fefita la"} +{"qid": "test3079", "pid": "9161778", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"Los Hermanos Rosario\"\nLos Hermanos Rosario Los Hermanos Rosario (\"\"The Rosario Brothers\"\" in English) is a merengue music band, originally consisting of brothers Toño Rosario, Pepe, Rafa and Luis. Los Hermanos Rosario is an emblematic Merengue band from the Dominican Republic. The orchestra became Los Hermanos Rosario on 1 May 1978, Labor Day. At that time, the 7 brothers debuted with the municipal authorities in a ceremony in the town Salva Leon de Higuey, a town on the edge of the eastern part of the Dominican Republic . Shortly thereafter, Los Hermanos Rosario began a quest in search of artistic success. They developed"} +{"qid": "test3079", "pid": "2096811", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"People of the Dominican Republic\"\nthe Dominican Republic is Dominican rap. Also known as \"\"Rap del Patio\"\" (\"\"yard rap\"\") it is rap music created by Dominican crews and solo artists. Originating in the early 2000s with crews such as Charles Family, successful rappers such as Lapiz Conciente, Vakero, Toxic Crow, and R-1 emerged. The youth have embraced the music, sometimes over merengue, merengue típico, bachata, as well as salsa, and, most recently, reggaeton. Dominican rap differs from reggaeton in the fact that Dominican rap does not use the traditional Dem Bow rhythm frequently used in reggaeton, instead using more hip hop-influenced beats. As well, Dominican"} +{"qid": "test3079", "pid": "7754811", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"Güira\"\nthus producing a more wooden tone, the metal construction of the güira gives it a characteristic metallic timbre. The güira as part of the merengue típico is emblematic of Dominican heritage. It is estimated to be the most widespread instrument in the country. When Rafael Trujillo came to power in 1930 he made the music the national emblem. Güira The güira () is a metal scraper from the Dominican Republic used as a percussion instrument in cumbia and merengue, to a lesser extent, other genres such as bachata. It is made of a metal sheet (commonly steel, sometimes from a"} +{"qid": "test3079", "pid": "2737701", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"Culture of the Dominican Republic\"\nthe church and planned to arrest priests and bishops who preached against the government. This campaign ended before it was even put into place, with his assassination. During World War II, a group of Jews escaping Nazi Germany fled to the Dominican Republic and founded the city of Sosúa. It has remained the center of the Jewish population since. Musically, the Dominican Republic is known for the creation of multiple musical styles and genres but is mostly recognized for \"\"merengue\"\", a type of lively, fast-paced rhythm and dance music consisting of a tempo of about 120 to 160 beats per"} +{"qid": "test3079", "pid": "11904999", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"Chichí Peralta\"\nChichí Peralta Pedro René Peralta Soto (born July 9, 1966), better known as Chichi Peralta, is a Dominican musician, songwriter, composer and producer. His music is rich in fusion of Latin rhythms with elements of world music. He has combined the son music with jazz, merengue and pop, African rhythms, hip hop, rap, bachata, guaguancó, Brazilian rhythms, plena, salsa, vallenato, cumbia, symphonic textures, Arabic rhythms and exotic instruments from India and Japan, among others. Chichi Peralta was born on July 9, 1966 in Santo Domingo, capital of the Dominican Republic. His musical career began at the age of four, when"} +{"qid": "test3079", "pid": "2096807", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"People of the Dominican Republic\"\nDominican Republic is known for the creation of the musical style called \"\"merengue\"\", a type of lively, fast-paced rhythm and dance music consisting of a tempo of about 120 to 160 beats per minute (it varies wildly) based on musical elements like drums, brass, and chorded instruments, as well as some elements unique to the music style of the DR. It includes the use of the \"\"tambora\"\" (Dominican drum), accordion, and \"\"güira\"\". Its syncopated beats use Latin percussion, brass instruments, bass, and piano or keyboard. Between 1937 and 1950 the merengue music was promoted internationally, by some Dominicans groups like,"} +{"qid": "test3079", "pid": "105525", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "\"Dominican Republic\"\nJuan. Musically, the Dominican Republic is known for the world popular musical style and genre called \"\"merengue\"\", a type of lively, fast-paced rhythm and dance music consisting of a tempo of about 120 to 160 beats per minute (though it varies) based on musical elements like drums, brass, chorded instruments, and accordion, as well as some elements unique to the Spanish-speaking Caribbean, such as the \"\"tambora\"\" and \"\"güira\"\". Its syncopated beats use Latin percussion, brass instruments, bass, and piano or keyboard. Between 1937 and 1950 merengue music was promoted internationally by Dominican groups like Billo's Caracas Boys, Chapuseaux and Damiron"} +{"qid": "test3079", "pid": "6420190", "query": "what is the emblematic rhythm of dominican republic", "answer": "merengue", "passage": "Afro-Dominicans\nmerengue music, the Dominican national dance). For his part, the Bachata is a hybrid of the bolero (especially the bolero rhythm) of the Dominican Republic with other musical influences of African origin and other musical styles like the son, the merengue and the chachachá. On the other hand, there are also music genres Dominican widespread across the country, whose origin is uncertain, being considered of Spanish and African origin, depending of musicologists and historians. Such is the case of the merengue music. So, Luis Alberti, one of the musicians considered as fathers of merengue, thinks that the roots of this"} +{"qid": "test3080", "pid": "1384239", "query": "who voiced mewtwo in pokemon the first movie", "answer": "Philip Bartlett", "passage": "Mewtwo\nFor the former production, he was credited under the pseudonym \"\"Philip Bartlett\"\". Dan Green provided the voice in \"\"Mewtwo Returns\"\". Actress Reiko Takashima voices a separate Mewtwo character in the prequel special \"\"Mewtwo: Prologue to Awakening\"\" and the film \"\"\"\"; this second Mewtwo is voiced by actress Miriam Pultro in the English dub. In the video games, the player can fight and capture Mewtwo to pit it against other Pokémon. The player first learns of Mewtwo late in \"\"Pokémon Red\"\" and \"\"Blue\"\" by reading research documents left in a ruined laboratory on Cinnabar Island. Regarded as one of the series'"} +{"qid": "test3080", "pid": "1384238", "query": "who voiced mewtwo in pokemon the first movie", "answer": "Showtaro Morikubo", "passage": "Mewtwo\nMewtwo Mewtwo is a fictional creature from Nintendo, Game Freak, and Creatures' \"\"Pokémon\"\" media franchise. Created by Ken Sugimori, it first appeared in the video games \"\"Pokémon Red\"\" and \"\"Blue\"\" and their sequels, and later appeared in various merchandise, spinoff titles, as well as animation adaptations of the franchise. Masachika Ichimura voiced the franchise's original Mewtwo character in Japanese, and the creature's younger self is voiced by Fujiko Takimoto in the \"\"Sound Picture Box: Mewtwo's Origin\"\" CD drama and Showtaro Morikubo in the anime adaptation. In English, Jay Goede voiced Mewtwo in \"\"Mewtwo Strikes Back\"\" and the \"\"Pokémon Live!\"\" musical."} +{"qid": "test3080", "pid": "1384254", "query": "who voiced mewtwo in pokemon the first movie", "answer": "Showtaro Morikubo", "passage": "Mewtwo\na child is voiced in Japanese by Fujiko Takimoto for the CD drama and Showtaro Morikubo for the anime, while in the English localization the voice actor is uncredited. In December 2000, the film was followed by a sequel, \"\"\"\", which was broadcast on Japanese television in December 2000 and released worldwide on home video and DVD in 2001. Voiced by Dan Green in English with Ichimura reprising the role in Japanese, Mewtwo and the clones have since found peace in another region. However, Giovanni, whose memories were left intact after the first film, locates and pursues Mewtwo. Assisted by"} +{"qid": "test3080", "pid": "1384252", "query": "who voiced mewtwo in pokemon the first movie", "answer": "Philip Bartlett", "passage": "Mewtwo\npersonality became more arrogant and megalomaniacal; localization director Norman Grossfield ruled the changes necessary, as he believed American audiences needed a \"\"clearly evil\"\" rather than ambiguous villain. In the film, Mewtwo is voiced by Philip Bartlett in English, and by Ichimura in Japanese. In this film, Mewtwo displayed unique abilities and powers unseen in other Pokémon, such as blocking all Pokémon moves in his arena when the clones face off against the originals. In September 1999, Nintendo published \"\"Sound Picture Box Mewtwo\"\", which included \"\"The Birth of Mewtwo: Pokémon Radio Drama\"\", a CD drama that expands upon Mewtwo's origins. Created"} +{"qid": "test3080", "pid": "1384248", "query": "who voiced mewtwo in pokemon the first movie", "answer": "Masachika Ichimura", "passage": "Mewtwo\nfinal opponent, but also as the main antagonist responsible for the game's events. Other games, such as \"\"Super Smash Bros. Melee\"\" and the \"\"\"\" series, have featured Mewtwo as an unlockable player character that must be defeated before it may be used, while others like \"\"Pokémon Snap\"\" have featured the character in cameos, appearing once certain conditions have been met. For all appearances in which the character has spoken dialogue, Mewtwo is voiced by Masachika Ichimura, with the exception of \"\"Pokémon Puzzle League\"\", where it is voiced by Philip Bartlett, and \"\"Super Smash Bros. for Nintendo 3DS\"\" and \"\"Wii U\"\","} +{"qid": "test3081", "pid": "1483908", "query": "who wrote the theme song to law and order", "answer": "Mike Post", "passage": "\"Law & Order\"\n62 at Chelsea Piers (where the series was mostly shot) was renamed \"\"Law & Order Way\"\" in tribute to the series. The music for \"\"Law & Order\"\" was composed by veteran composer Mike Post, and was deliberately designed to be minimal to match the abbreviated style of the series. Post wrote the theme song using electric piano, guitar, and clarinet. In addition, scene changes were accompanied by a tone generated by Post. He refers to the tone as \"\"The Clang\"\", while \"\"Entertainment Weekly\"\" critic Ken Tucker has referred to the sound as the \"\"ominous \"\"chung CHUNG\"\"\"\", actor Dann Florek (in"} +{"qid": "test3082", "pid": "7088875", "query": "most of new zealands land supports which economic activity", "answer": "agriculture", "passage": "\"New Zealand wine\"\nvineyards in West and North Auckland. Typically, their vineyards produced table wine, sherry and port for the palates of New Zealanders of the time and their own community. For the first half of the 20th Century, economic, legislative and cultural factors had made wine a marginal activity, in terms of economic importance and domestic consumption. The majority of land use in New Zealand was at the time (and largely still is) animal agriculture, and the exports of dairy, meat and wool dominated the economy. The prohibition and temperance movements had reduced the appreciation of wine with the New Zealand public,"} +{"qid": "test3085", "pid": "19671953", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"2018 Winter Olympics opening ceremony\"\n2018 Winter Olympics opening ceremony The opening ceremony of the 2018 Winter Olympics was held at the Pyeongchang Olympic Stadium in Pyeongchang, South Korea on 9 February 2018. It began at 20:00 KST and finished at approximately 22:20 KST. The Games were officially opened by President of the Republic of Korea Moon Jae-in. The site of the opening ceremony, Pyeongchang Olympic Stadium, was built specifically for the Games. The pentagonal stadium seats 35,000. The organizers for the event said the shape was chosen because it is a combination of different shapes, a circle, a square, and a triangle, which represent"} +{"qid": "test3085", "pid": "3705056", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"2018 Winter Olympics\"\nsold. The opening ceremony of the 2018 Winter Olympics was held at the Pyeongchang Olympic Stadium on 9 February 2018; the US$100 million facility was only intended to be used for the opening and closing ceremonies of these Olympics and the subsequent Paralympics, and is scheduled to be demolished following their conclusion. The 2018 Winter Olympics featured 102 events over 15 disciplines in 7 sports, making it the first Winter Olympics to surpass 100 medal events. Six new events in existing sports were introduced to the Winter Olympic program in Pyeongchang: men's and ladies' big air snowboarding, mixed doubles curling,"} +{"qid": "test3085", "pid": "2384515", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"Kim Yong-nam\"\nRepublic of the Congo, where he met President Joseph Kabila on 26 March, and Uganda, where he met President Yoweri Museveni on 29 March. He returned to North Korea on 1 April. Kim also attended the 2008 Summer Olympics opening ceremony on 8 August 2008, 2014 Winter Olympics opening ceremony on 7 February 2014 and the 2018 Winter Olympics opening ceremony on 9 February 2018. On 14 July 2009, Kim met Vietnamese president Nguyen Minh Triet on the sidelines of the 15th Non-Aligned Movement Summit in Egypt. Kim represented North Korea at the 2015 Victory Day parade in Moscow on"} +{"qid": "test3085", "pid": "19671963", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"2018 Winter Olympics opening ceremony\"\nwork of North Korea. Analysts believed the Russians instigated the February 9 attack as a way to retaliate for the International Olympic Committee’s decision to restrict the participation of Russian athletes in the 2018 Winter Olympics as punishment for doping violations. On 9 February 2018, Kim Yo-jong — sister of Kim Jong-un — attended the ceremony in Pyeongchang, South Korea. This was a first time that a member of the ruling Kim dynasty had visited South Korea since the Korean War. Kim Yo-jong shook hands with South Korean president Moon Jae-in before sitting down to watch the ceremony together. 2018"} +{"qid": "test3085", "pid": "19998394", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"Japan at the 2018 Winter Olympics\"\nJapan at the 2018 Winter Olympics Japan competed at the 2018 Winter Olympics in Pyeongchang, South Korea, from 9 to 25 February 2018, with 124 competitors in 13 sports. They won 13 medals in total, four gold, five silver and four bronze, ranking 11th in the medal table. Six medals of those were won in the speed skating events. Ski jumper Noriaki Kasai was chosen to be the flag bearer during the opening ceremony. On 9 February 2018, on the opening day of the Games, he became the first athlete in history to participate in 8 different Winter Olympics. The"} +{"qid": "test3085", "pid": "19671974", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"2018 Winter Olympics Parade of Nations\"\n2018 Winter Olympics Parade of Nations During the 2018 Winter Olympics Parade of Nations at the 2018 Winter Olympics opening ceremony, beginning at 20:00 KST () on 9 February 2018, athletes bearing the flags of their respective nations led their national delegations as they paraded into the Pyeongchang Olympic Stadium in the host city of Pyeongchang, South Korea. 92 teams qualified to compete (91 nations and Olympic Athletes from Russia). Athletes entered the stadium in an order dictated by Olympic tradition. As the originator of the Olympics, the Greek team entered first. Other teams entered in alphabetical order based on"} +{"qid": "test3085", "pid": "18444077", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"2016 Summer Olympics closing ceremony\"\nSoul Brasileiro\"\"\"\" with slowly modificated lyrics in celebration to those who volunteered during the games. The flag handover ceremony began as standard with the Greek national anthem and the Olympic anthem sung in English. Rio de Janeiro mayor Eduardo Paes handed the flag to IOC president Thomas Bach, who then handed it over to Tokyo governor Yuriko Koike. The flag was raised again in PyeongChang for the 2018 Winter Olympics on 9 February 2018 for the opening ceremony. The directors for the show were (creative supervisor), Ringo Sheena (creative supervisor and music director), Mikiko Mizuno (choreographer and stage director) and"} +{"qid": "test3085", "pid": "19671976", "query": "when is the opening ceremonies of the olympics 2018", "answer": "9 February 2018", "passage": "\"2018 Winter Olympics Parade of Nations\"\n\"\"Gangnam Style\"\" by Psy, \"\"Likey\"\" by Twice, \"\"Fantastic Baby\"\" by Big Bang, \"\"DNA\"\" by BTS, and \"\"Red Flavor\"\" by Red Velvet. Below is a list of parading countries and their announced flag bearer, in the same order as the parade. This is sortable by country name, flag bearer's name and flag bearer's sport. Names are given in the form officially designated by the IOC. 2018 Winter Olympics Parade of Nations During the 2018 Winter Olympics Parade of Nations at the 2018 Winter Olympics opening ceremony, beginning at 20:00 KST () on 9 February 2018, athletes bearing the flags of their"} +{"qid": "test3086", "pid": "12050698", "query": "who sang theme song for dukes of hazard", "answer": "Waylon Jennings", "passage": "\"Theme from The Dukes of Hazzard (Good Ol' Boys)\"\nand his late father. Along with Willie Nelson and Ben L. Jones (Cooter on the series), Waylon Jennings sang the song in an extended version. Alvin and the Chipmunks covered the song while driving The General Lee for their album \"\"The Chipmunks Go Hollywood\"\" (1982). In 2006, John Schneider (Bo Duke), Tom Wopat (Luke Duke), and Catherine Bach (Daisy Duke) made a music video, as seen on the 7th Season DVD of the series. Schneider also covered the song. In \"\"The Dukes of Hazzard\"\" film adaptation (2005), a recording of Waylon Jennings was used in one scene, also, as heard"} +{"qid": "test3086", "pid": "3407318", "query": "who sang theme song for dukes of hazard", "answer": "Waylon Jennings", "passage": "\"John Schneider (screen actor)\"\nwas built in 1910. So it sounded cool.\"\" Schneider hopes that his new music will draw in new fans, who are unaware of his talents beyond the stage. \"\"I hadn't done music since 1990. People responded to that music, and one thing led to another,\"\" shares Schneider. \"\"It's funny. Even though I had a bunch of No. 1 songs, people say, 'Oh, I love that Dukes of Hazzard song you sang!' Well, I didn't sing it, Waylon Jennings sang it. I'm famous for music by a song I never sang. Crazy.\"\" More than a dozen artists are joining Schneider in"} +{"qid": "test3086", "pid": "12050693", "query": "who sang theme song for dukes of hazard", "answer": "Waylon Jennings", "passage": "\"Theme from The Dukes of Hazzard (Good Ol' Boys)\"\nTheme from The Dukes of Hazzard (Good Ol' Boys) The \"\"Theme from \"\"The Dukes of Hazzard\"\" (Good Ol' Boys)\"\" is a song written and recorded by American country music singer Waylon Jennings. It was released in August 1980 as the second single from the album \"\"Music Man\"\". Recognizable to fans as the theme to the CBS comedy adventure television series \"\"The Dukes of Hazzard\"\", the song became a #1 hit on the \"\"Billboard\"\" Hot Country Singles chart in 1980. As the narrator for the movie \"\"Moonrunners\"\" (1975), Jennings was tapped to serve in the same capacity for \"\"The Dukes of"} +{"qid": "test3087", "pid": "7239781", "query": "points on a sphere or angles in a circle are measured in units called", "answer": "radians", "passage": "\"Position angle\"\ndistance is the distance along a great circle that runs through and . It is calculated in a plane that contains the sphere center and the great circle, where is the angular distance of two points viewed from the center of the sphere, measured in radians. The cosine of the angle is calculated by the dot product of the two vectors If the ship steers straight to the North Pole, the travel distance is If a ship starts at and swims straight to the North Pole, the travel distance is The \"\"cosine formula\"\" of spherical trigonometry yields for the angle"} +{"qid": "test3087", "pid": "930345", "query": "points on a sphere or angles in a circle are measured in units called", "answer": "radians", "passage": "\"Solid angle\"\ncorresponds to one unit of area on the unit sphere surrounding the apex, so an object that blocks all rays from the apex would cover a number of steradians equal to the total surface area of the unit sphere, formula_1. Solid angles can also be measured in squares of angular measures such as degrees, minutes, and seconds. A small object nearby may subtend the same solid angle as a larger object farther away. For example, although the Moon is much smaller than the Sun, it is also much closer to Earth. Indeed, as viewed from any point on Earth, both"} +{"qid": "test3088", "pid": "14963070", "query": "what is the year round weather in dubai", "answer": "tropical desert climate", "passage": "\"Climate of Dubai\"\nClimate of Dubai Dubai has a tropical desert climate, Köppen classification Bwh, because of its location within the Northern desert belt. Summers are extremely hot and humid, with an average high around and overnight lows around . Most days are sunny throughout the year. Winters are warm and short with an average high of and overnight lows of . Precipitation, however, has been increasing in the last few decades with accumulated rain reaching per year. The weather in Dubai can bring short and irregular rainfall as is typical for the Middle East. Most of the rainfall occurs in the December"} +{"qid": "test3089", "pid": "4146060", "query": "when did john hart play the lone ranger", "answer": "from 1952 until 1953", "passage": "\"John Hart (actor)\"\nJohn Hart (actor) John Lewis Hart (December 13, 1917 – September 20, 2009), also credited as John Hilton was an American film and television actor. In his early career, Hart appeared mostly in Westerns. Although Hart played mostly minor roles in some fairly well known films, he was probably best known for having replaced Clayton Moore in 1952 in the television series, \"\"The Lone Ranger\"\" for one season from 1952 until 1953. Hart began his screen career in 1937 with a bit part in \"\"Daughter of Shanghai\"\". He continued in a variety of B pictures such as \"\"Prison Farm\"\" and"} +{"qid": "test309", "pid": "4327961", "query": "when is the last time the vikings were in the nfc championship", "answer": "1976", "passage": "\"Buddy Ryan\"\npoint of any offense, and that a defense must attack the offense's strength and centerpiece. In 1976 and 1977, Ryan served as defensive line coach for the Minnesota Vikings. The Vikings' defensive line, known as the \"\"Purple People Eaters\"\", was heralded for ability to punish rivals. The 1976 Vikings won the NFC Championship and appeared in Super Bowl XI. In 1977, the Vikings won the NFC Central and reached the NFC Championship game. During his time with the Vikings, Ryan started working on a defensive nickel scheme designed to disrupt the passing game. That formed the early basis of the"} +{"qid": "test309", "pid": "9816079", "query": "when is the last time the vikings were in the nfc championship", "answer": "1976", "passage": "\"Rich Saul\"\nthe St. Louis Cardinals in the divisional round of the 1975-76 NFL playoffs, rushing for 237 yards. However, the team lost to the Dallas Cowboys in the NFC championship game. In 1976, the Rams beat the Cowboys in the divisional round of the 1976-77 NFL playoffs, rushing for 120 yards. But they lost the NFC championship game to the Minnesota Vikings, and, the following year, lost the divisional round of the 1977-78 NFL playoffs to the same team. They finally beat the Vikings in the 1978-79 NFL playoffs. However, they lost again to the Cowboys in the NFC championship game."} +{"qid": "test3090", "pid": "16660934", "query": "published a treatise on perspective della pitture (or on painting) in 1435", "answer": "Leon Battista Alberti", "passage": "\"The Feast of Herod (Donatello)\"\npoint and create an illusion of space on a two-dimensional surface. Donatello manipulated this system slightly, by having the focal point lead to a “V” of open space, encouraging the eye to move across the panel to the two separate groupings, rather than focusing on any one element. The inclusion of linear perspective would later become a standard element in Renaissance painting and sculpture, after being described by Leon Battista Alberti in his 1435 treatise \"\"Della Pictura.\"\" Another way in which Donatello described the space in which the scene takes place, was through his use of high and low relief."} +{"qid": "test3090", "pid": "2343024", "query": "published a treatise on perspective della pitture (or on painting) in 1435", "answer": "Leon Battista Alberti", "passage": "\"Perspective (graphical)\"\nhelp from his friend the mathematician Toscanelli), but did not publish, the mathematics behind perspective. Decades later, his friend Leon Battista Alberti wrote \"\"\"\" (1435/1436), a treatise on proper methods of showing distance in painting. Alberti's primary breakthrough was not to show the mathematics in terms of conical projections, as it actually appears to the eye. Instead, he formulated the theory based on planar projections, or how the rays of light, passing from the viewer's eye to the landscape, would strike the picture plane (the painting). He was then able to calculate the apparent height of a distant object using"} +{"qid": "test3090", "pid": "9974067", "query": "published a treatise on perspective della pitture (or on painting) in 1435", "answer": "Leon Battista Alberti", "passage": "\"Fra Carnevale\"\nbecause the painting refers to architectural themes he refers to in his architectural treatise derived from Leon Battista Alberti's slightly earlier published treatise. This painting shows Carnevale’s strong sense and knowledge of architecture. The linear perspective and the three dimensional details of the building's facades are impeccable, all very much in the style of Carnevale’s work. Only one of Fra Carnevale's works appears in its original location: in Urbino, Carnevale painted the Federico da Montelfeltro alcove in the Palazzo Ducale. The eight other works attributed to Carnevale include the Santa Maria della Bella altarpiece (also known as the Barberini panels"} +{"qid": "test3090", "pid": "15012395", "query": "published a treatise on perspective della pitture (or on painting) in 1435", "answer": "Leon Battista Alberti", "passage": "\"De pictura\"\nDe pictura De pictura (English: \"\"On Painting\"\") is a treatise written by the Italian architect and art theorist Leon Battista Alberti. The first version, written in vernacular Italian in 1435 under the title Della pittura, was for a general audience. The Latin version, the \"\"De pictura\"\" of 1439–41, was more technical and intended for scholars. The work is the first in a trilogy of treatises on the \"\"Major arts\"\" which had a widespread circulation during the Renaissance, the others being \"\"De re aedificatoria\"\" (\"\"On Architecture\"\", 1454) and \"\"De statua\"\" (\"\"On Sculpture\"\", 1462). Alberti was a member of Florentine family exiled"} +{"qid": "test3091", "pid": "19815285", "query": "who sings you're welcome in moana credits", "answer": "Dwayne Johnson", "passage": "\"Moana (soundtrack)\"\nthe \"\"Billboard\"\" Hot 100 for the week of December 17, 2016. South African singer Lira and Filipino singer Janella Salvador recorded two English-language versions of \"\"How Far I'll Go\"\" that will play over the end credits on the South African and Filipino release of the film, while Indonesian singer Maudy Ayunda and Malaysian singer Ayda Jebat recorded their own versions of the song respectively in Indonesian and Malaysian language. Lin-Manuel Miranda and Jordan Fisher sing a duet on \"\"You're Welcome\"\", which plays over the end credits. The song as performed by Dwayne Johnson appears in the film. Johnson's version of"} +{"qid": "test3091", "pid": "8227172", "query": "who sings you're welcome in moana credits", "answer": "Lin-Manuel Miranda", "passage": "\"Māui (Hawaiian mythology)\"\npity on him and made him a demigod and gave him a magic fish hook that gives him the ability to shapeshift. He went on to perform miracles to win back the love of humanity, each of which earned him an animated tattoo. He is fabled to have stolen the heart of Te Fiti, a powerful island goddess who creates life. The protagonist of the film, Moana, persuades him to help her return it. In his song \"\"You're Welcome,\"\" composed by Lin-Manuel Miranda, Maui mentions and takes credit for several of the deeds he is credited with in folklore. This"} +{"qid": "test3091", "pid": "936403", "query": "who sings you're welcome in moana credits", "answer": "Lin-Manuel Miranda", "passage": "\"Māui (mythology)\"\ngods took pity on him and made him a demigod and gave him a magic fish hook that gives him the ability to shape-shift. He went on to perform miracles to win back the love of humanity, each of which earned him an animated tattoo. He is fabled to have stolen the heart of Te Fiti, a powerful island goddess who creates life. The protagonist of the film, Moana, persuades him to help her return it. In his song \"\"You're Welcome,\"\" composed by Lin-Manuel Miranda, Maui mentions and takes credit for several of the deeds he is credited with in"} +{"qid": "test3091", "pid": "8226450", "query": "who sings you're welcome in moana credits", "answer": "Dwayne Johnson", "passage": "\"Māui (Māori mythology)\"\nfilm \"\"Moana\"\", the demigod Maui is voiced by Dwayne Johnson. Abandoned by his human parents as a baby, he is given demigod status, shapeshifting powers, and a magic fish hook by the gods who take pity on him. He performs miracles to win back the love of humanity, each of which earns him an animated tattoo. He is fabled to have stolen the heart of Te Fiti, a powerful island goddess who creates life. The protagonist of the film, Moana, persuades him to help her return it. In his song \"\"You're Welcome,\"\" composed by Lin-Manuel Miranda, Maui mentions and takes"} +{"qid": "test3091", "pid": "7312058", "query": "who sings you're welcome in moana credits", "answer": "Lin-Manuel Miranda", "passage": "Illmind\nDon Cannon. Illmind produced music for Hoodie Allen's mixtape, \"\"Crew Cuts\"\". The single \"\"Cake Boy\"\" premiered on February 11, 2013 via YouTube with over 30,000 views in the first day. In 2015, Illmind helped Skyzoo on the album \"\"Music For My Friends\"\", producing five tracks. and helping Skyzoo co-produce the track \"\"Luxury\"\". He was executive producer for Andy Mineo's album, \"\"Uncomfortable\"\", which released on September 18. Towards the end of 2016, Illmind produced the outro credits for Disney's \"\"Moana\"\", a track titled \"\"You're Welcome\"\", Ft. both Lin-Manuel Miranda & Jordan Fisher Beyond his work on the Disney project the producer"} +{"qid": "test3091", "pid": "19820580", "query": "who sings you're welcome in moana credits", "answer": "Lin-Manuel Miranda", "passage": "\"How Far I'll Go\"\nin Malibu, California. In many versions of \"\"Moana\"\", Alessia Cara's version of the song played during the end credits. However, several localized adaptations of Cara's version of the song were recorded for the end credits of the film as released in certain markets around the world. How Far I'll Go \"\"How Far I'll Go\"\" is a song from Disney's 2016 animated feature film \"\"Moana\"\". It was written and produced by Lin-Manuel Miranda. The song was performed in the film by American actress and singer Auliʻi Cravalho in her role as Moana. It was released along with the album on November"} +{"qid": "test3092", "pid": "19559971", "query": "who is the coach for the ottawa senators", "answer": "Guy Boucher", "passage": "\"2016–17 Ottawa Senators season\"\n2016–17 Ottawa Senators season The 2016–17 Ottawa Senators season was the 25th season of the Ottawa Senators of the National Hockey League (NHL). After failing to make the playoffs in 2015–16, the Senators replaced their management and coaching staff, promoting Pierre Dorion to general manager, and hiring Guy Boucher and Marc Crawford and assistants to coach the team. The team would defy the predictions of much of the media by qualifying for the Stanley Cup playoffs, and then by winning two rounds in the playoffs before losing in double overtime in game seven of the Eastern Conference Final to the"} +{"qid": "test3092", "pid": "19559984", "query": "who is the coach for the ottawa senators", "answer": "Guy Boucher", "passage": "\"2016–17 Ottawa Senators season\"\nNiagara Center in Buffalo, New York. 2016–17 Ottawa Senators season The 2016–17 Ottawa Senators season was the 25th season of the Ottawa Senators of the National Hockey League (NHL). After failing to make the playoffs in 2015–16, the Senators replaced their management and coaching staff, promoting Pierre Dorion to general manager, and hiring Guy Boucher and Marc Crawford and assistants to coach the team. The team would defy the predictions of much of the media by qualifying for the Stanley Cup playoffs, and then by winning two rounds in the playoffs before losing in double overtime in game seven of"} +{"qid": "test3092", "pid": "303932", "query": "who is the coach for the ottawa senators", "answer": "Guy Boucher", "passage": "\"Ottawa Senators\"\nhe would continue in an advisory role with the club. Assistant general manager Pierre Dorion was promoted to the general manager position. On April 12, 2016, the Senators fired head coach Dave Cameron. On May 8, 2016, the Senators hired former Tampa Bay Lightning head coach Guy Boucher as their new head coach. On the following day, Marc Crawford was announced as associate coach. On June 13, 2016, the Senators hired Daniel Alfredsson as the senior advisor of hockey operations. In June 2016, the Senators hired Rob Cookson as an assistant coach, who had worked with both Boucher and Crawford"} +{"qid": "test3094", "pid": "7015412", "query": "when did sussex split into east and west", "answer": "1832", "passage": "\"Sussex (UK Parliament constituency)\"\nSussex (UK Parliament constituency) Sussex was a constituency of the House of Commons of the Parliament of England then of the Parliament of Great Britain from 1707 to 1800 and of the Parliament of the United Kingdom from 1801 to 1832. It was represented by two Knights of the Shire, elected by the bloc vote system. Under the Reform Act 1832 the constituency was split into two two-member divisions, for Parliamentary purposes, at the 1832 general election. The county was then represented by the East Sussex and West Sussex divisions. The constituency comprised the whole historic county of Sussex. (Although"} +{"qid": "test3094", "pid": "11606048", "query": "when did sussex split into east and west", "answer": "1889", "passage": "\"Geography of Sussex\"\nrapes and three western rapes were informally grouped together as Sussex's eastern and western divisions. County councils were created for East and West Sussex in 1889. In 1974 the present-day district of Mid Sussex, (a large part of the rape of Lewes) was transferred from East Sussex to West Sussex and East and West Sussex were made into separate ceremonial counties. In 1997, Brighton and Hove became a self-administered unitary authority; it was granted city status in 2000, whilst remaining part of the ceremonial county of East Sussex. (See pp. 165–166.) Geography of Sussex Sussex is a historic county and"} +{"qid": "test3096", "pid": "4634382", "query": "who was suite judy blue eyes written about", "answer": "Judy Collins", "passage": "\"Suite: Judy Blue Eyes\"\nJudy Collins, and the lyrics to most of the suite's sections consist of his thoughts about her and their imminent breakup. Collins is known for her piercing blue eyes. During a July 15, 2007 interview for the National Public Radio program \"\"Just Roll Tape\"\", Stills revealed that Collins was present in the studio when the demo tapes were recorded. Collins had advised Stills \"\"not to stay [at the studio] all night.\"\" Stills later commented that \"\"the breakup was imminent...we were both too large for one house.\"\" Stills said that he liked parts of this demo version of \"\"Suite: Judy Blue"} +{"qid": "test3097", "pid": "18342994", "query": "when did a wrinkle in time start filming", "answer": "November 2, 2016", "passage": "\"A Wrinkle in Time (2018 film)\"\nnovel, following a 2003 television film. Development began in 2010, with DuVernay signing on to direct in February 2016. Principal photography began on November 2, 2016 in Los Angeles, California. Near the end of filming, production moved to New Zealand, where photography ended on February 25, 2017. With an estimated production budget of around $103 million, the film became the first live-action film with a nine-digit budget to be directed by a woman of color. Additionally, \"\"A\"\" \"\"Wrinkle in Time\"\" was notable in that Ava DuVernay was the first African-American woman to direct a film that earned at least $100"} +{"qid": "test3099", "pid": "12557568", "query": "who played shmuel in the boy in the striped pyjamas", "answer": "Jack Scanlon", "passage": "\"Jack Scanlon\"\nJack Scanlon Jack Scanlon (born 6 August 1998) is an English actor who is best known for his role in the Holocaust film \"\"The Boy in the Striped Pyjamas\"\" Scanlon was born in Canterbury, Kent and now lives in Deal with his parents and younger brother. He now attends Bath Spa University studying commercial music. He is a fan of Aldershot Town. He attended Sir Roger Manwood's School in nearby Sandwich, Kent. He auditioned for \"\"\"\"The Boy in the Striped Pyjamas\"\"\"\" through his drama club and was eventually cast as Shmuel after director Mark Herman narrowed his choice down to"} +{"qid": "test3099", "pid": "12394978", "query": "who played shmuel in the boy in the striped pyjamas", "answer": "Jack Scanlon", "passage": "\"The Boy in the Striped Pyjamas (film)\"\nextermination camp through the eyes of two 8-year-old boys; Bruno (Asa Butterfield), the son of the camp's Nazi commandant, and Shmuel (Jack Scanlon), a Jewish inmate. The film opens with the quote \"\"Childhood is measured out by sounds and smells and sights, before the dark hour of reason grows\"\", by John Betjeman. A young boy named Bruno lives with his family in Berlin, in Nazi Germany during World War II. He learns that his father Ralf has been promoted, due to which their family, including Bruno's mother Elsa and sister Gretel, relocate to the \"\"countryside\"\" (occupied Poland). Bruno hates his"} +{"qid": "test3099", "pid": "12394977", "query": "who played shmuel in the boy in the striped pyjamas", "answer": "Jack Scanlon", "passage": "\"The Boy in the Striped Pyjamas (film)\"\nThe Boy in the Striped Pyjamas (film) The Boy in the Striped Pyjamas (released as The Boy in the Striped Pajamas in the United States) is a 2008 British American historical drama film set in World War II, based on John Boyne’s 2006 novel of the same name. Written and Directed by Mark Herman, produced by BBC Films and Heyday Films, and distributed by Miramax, the film stars Vera Farmiga, David Thewlis, Asa Butterfield, and Jack Scanlon. It was released on 12 September 2008 in the United Kingdom. The Holocaust drama relates the horror of a World War II Nazi"} +{"qid": "test3099", "pid": "12557569", "query": "who played shmuel in the boy in the striped pyjamas", "answer": "Jack Scanlon", "passage": "\"Jack Scanlon\"\nabout three possible candidates and paired each with Asa Butterfield for a final audition together. According to Herman: \"\"Jack and Asa played very well against one another.\"\" Although \"\"\"\"The Boy in the Striped Pyjamas\"\"\"\" is Scanlon's feature film debut, he did act before. He appeared in a 10-minute short film title \"\"\"\"The Eye of the Butterfly\"\"\"\" (which led to him being suggested to the casting director of \"\"\"\"The Boy in the Striped Pyjamas\"\"\"\") and in a 2007 episode of the \"\"Peter Serafinowicz Show\"\". Scanlon also played the younger brother of main character Sean (William Miller) in the 2009 British children's"} +{"qid": "test3099", "pid": "12557570", "query": "who played shmuel in the boy in the striped pyjamas", "answer": "Jack Scanlon", "passage": "\"Jack Scanlon\"\nminiseries \"\"Runaway\"\", broadcast on BBC One, which was part of the CBBC season about homelessness. Jack Scanlon Jack Scanlon (born 6 August 1998) is an English actor who is best known for his role in the Holocaust film \"\"The Boy in the Striped Pyjamas\"\" Scanlon was born in Canterbury, Kent and now lives in Deal with his parents and younger brother. He now attends Bath Spa University studying commercial music. He is a fan of Aldershot Town. He attended Sir Roger Manwood's School in nearby Sandwich, Kent. He auditioned for \"\"\"\"The Boy in the Striped Pyjamas\"\"\"\" through his drama club"} +{"qid": "test31", "pid": "9513732", "query": "how many countries are a part of opec", "answer": "14", "passage": "\"Energy policy of Russia\"\nover a 100 dollars a barrel in 2014 to below 50 US dollars in 2015. Russia tried and failed to get OPEC support for production cutbacks and is now ramping up its oil production to reduce the drop in oil revenues. OPEC's oil glut supply policy has affected the Russian economy and energy policy. There are controversies about the reasons for OPEC's policy for reducing the price of oil. Russia has responded to OPEC's policy by increasing dialogue with OPEC. Energy policy of Russia Russia is a none profit country is set out in the government’s \"\"Energy Strategy\"\" document, first"} +{"qid": "test310", "pid": "6346679", "query": "who produced a change is gonna come", "answer": "Hugo & Luigi", "passage": "\"A Change Is Gonna Come\"\nA Change Is Gonna Come \"\"A Change Is Gonna Come\"\" is a song by American recording artist Sam Cooke. It initially appeared on Cooke's album \"\"Ain't That Good News\"\", released March 1, 1964 by RCA Victor; a slightly edited version of the recording was released as a single on December 22, 1964. Produced by Hugo & Luigi and arranged and conducted by René Hall, the song was the B-side to \"\"Shake\"\". The song was inspired by various personal events in Cooke's life, most prominently an event in which he and his entourage were turned away from a whites-only motel in"} +{"qid": "test3100", "pid": "5459671", "query": "what color pages in the emergency response guidebook (erg) list compounds by name", "answer": "blue", "passage": "\"Emergency Response Guidebook\"\nidentification of dangerous goods is confirmed, protective actions and area securement are initiated, and assistance of qualified personnel is requested.\"\") of an incident . It is divided into six color-coded sections (white [uncolored], yellow, blue, orange, green, and a second white [uncolored]). The ERG includes 62 \"\"Guides\"\" (found in the Orange Section) that identify the primary hazards associated with the applicable general category of hazardous material and general guidance on how to respond to incidents involving that general category of hazardous material. The primary purpose of ERG is to direct the emergency responders to the most appropriate of these guides,"} +{"qid": "test3100", "pid": "5459672", "query": "what color pages in the emergency response guidebook (erg) list compounds by name", "answer": "blue", "passage": "\"Emergency Response Guidebook\"\nbased on the incident. The ERG also provides guidance regarding recommended evacuation distances, if applicable, in the Green Section. The first section, with white page (uncolored) borders, provides the following: The second section, with yellow page borders, references the material in order of its assigned 4-digit ID number/UN/NA number (which is often placarded with the other hazardous materials placards) and identifies the appropriate guide number to reference in the Orange Section). Items highlighted in green in this section will have evacuation distances included in the Green Section. The third section, with blue page borders, references the material in alphabetical order"} +{"qid": "test3101", "pid": "5770044", "query": "who developed the concept of total quality management", "answer": "W. Edwards Deming", "passage": "EFQM\ninstitutions and launched in 1992. It acted as the framework for assessing applications for the European Quality Award, the transnational quality awards of Europe. EFQM provides networking, education, and awards, using a framework called the EFQM Excellence Model. EFQM EFQM (the European Foundation for Quality Management) is a not-for-profit membership foundation in Brussels, established in 1989 to increase the competitiveness of the European economy. The initial impetus for forming EFQM was a response to the work of W. Edwards Deming and the development of the concepts of Total Quality Management. The intention to found EFQM was signed in October 1988"} +{"qid": "test3101", "pid": "5770043", "query": "who developed the concept of total quality management", "answer": "W. Edwards Deming", "passage": "EFQM\nEFQM EFQM (the European Foundation for Quality Management) is a not-for-profit membership foundation in Brussels, established in 1989 to increase the competitiveness of the European economy. The initial impetus for forming EFQM was a response to the work of W. Edwards Deming and the development of the concepts of Total Quality Management. The intention to found EFQM was signed in October 1988 by 14 European business leaders. The 14 CEOs were: The foundation was formed in 1989, with 67 members. The first version of the EFQM Excellence Model was created by a group of experts from various sectors and academic"} +{"qid": "test3101", "pid": "14530211", "query": "who developed the concept of total quality management", "answer": "W. Edwards Deming", "passage": "\"Total security management\"\nhave a positive impact on a company’s bottom line.” The TSM name borrows from the management concept Total Quality Management (TQM), an approach made famous by the work of W. Edwards Deming. The TQM concept revolutionized the manner in which quality was perceived in industry, encouraging it to be integrated into the core business processes of a firm. In the Foreword to \"\"Securing Global Transportation Networks\"\", Secretary Tom Ridge writes: \"\"The paradigm that now exists in transportation security is similar to the paradigm that existed when the now revered Dr. W. Edwards Deming tried to convince the business world in"} +{"qid": "test3103", "pid": "3945965", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Fred Ott's Sneeze\"\nFred Ott's Sneeze Fred Ott's Sneeze (also known as Edison Kinetoscopic Record of a Sneeze) is an 1894 short, black-and-white, silent film shot by William K.L. Dickson and featuring Fred Ott. It is the oldest surviving copyrighted motion picture. In the five-second film one of Thomas Edison's assistants, Fred Ott, takes a pinch of snuff and sneezes. According to the Library of Congress, the film was \"\"made for publicity purposes, as a series of still photographs to accompany an article in \"\"Harper's Weekly\"\".\"\" In 2015, the United States Library of Congress selected the film for preservation in the National Film"} +{"qid": "test3103", "pid": "3945967", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Fred Ott's Sneeze\"\nfilm was submitted to the Library of Congress as a \"\"paper print\"\" (a photographic record of each frame of the film) for copyright purposes. A digital copy is now kept by the Library of Congress and can be viewed on their American Memory website. This short film was featured at The 30th Annual Academy Awards, and was included as part of the TV documentary, \"\"The First 100 Years: A Celebration of American Movies\"\". Fred Ott's Sneeze Fred Ott's Sneeze (also known as Edison Kinetoscopic Record of a Sneeze) is an 1894 short, black-and-white, silent film shot by William K.L. Dickson"} +{"qid": "test3103", "pid": "2454964", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Fred Ott\"\nFred Ott Frederick P. Ott (1860; New Jersey – October 24, 1936; West Orange, New Jersey) was an employee of Thomas Edison's laboratory in the 1890s. His likeness appears in two of the earliest surviving motion pictures – \"\"Edison Kinetoscopic Record of a Sneeze\"\" (a.k.a. \"\"Fred Ott's Sneeze\"\") and \"\"Fred Ott Holding a Bird\"\" – both from 1894. In the former film, Ott takes a pinch of snuff, which causes him to sneeze. Ott began working with Edison in 1874 and joined him on a long-term basis in 1893 at a research facility in Manhattan where Ott and Edison worked"} +{"qid": "test3103", "pid": "2454965", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Fred Ott\"\non the creation of an electric street light. He worked with Edison on his most notable inventions, retiring shortly after Edison's death in 1931. Ott died at his home in West Orange, New Jersey on October 24, 1936. Fred Ott Frederick P. Ott (1860; New Jersey – October 24, 1936; West Orange, New Jersey) was an employee of Thomas Edison's laboratory in the 1890s. His likeness appears in two of the earliest surviving motion pictures – \"\"Edison Kinetoscopic Record of a Sneeze\"\" (a.k.a. \"\"Fred Ott's Sneeze\"\") and \"\"Fred Ott Holding a Bird\"\" – both from 1894. In the former film,"} +{"qid": "test3103", "pid": "4477692", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Edison's Black Maria\"\nEdison conducted the world's first public demonstration of films shot using the Kinetograph in the Black Maria, with a Kinetoscope viewer. The exhibited film showed three people pretending to be blacksmiths. The first motion pictures made in the Black Maria were deposited for copyright by Dickson at the Library of Congress in August, 1893. In early January 1894, \"\"The Edison Kinetoscopic Record of a Sneeze\"\" (aka \"\"Fred Ott's Sneeze\"\") was one of the first series of short films made by Dickson for the Kinetoscope in Edison's Black Maria studio with fellow assistant Fred Ott. The short film was made for"} +{"qid": "test3103", "pid": "16605116", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Little Sammy Sneeze\"\nfor modernist experimentation\"\". McCay was fond of breaking the fourth wall, a well-known example of which is the September 24, 1905, episode: the gag unfolds according to formula, culminating in the destruction of the very panel borders of the comic strip itself. The strip may pay homage to \"\"Fred Ott's Sneeze\"\"—a filmstrip of the progression of a man sneezing. The photographs appeared in \"\"Harper's Magazine\"\" in 1884 and were well known. As in the film, and unusual for the \"\"Sammy Sneeze\"\" strip, the September 24 episode has a closeup of the sneezer against a blank background, and Sammy's gestures echo"} +{"qid": "test3103", "pid": "3945966", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Fred Ott's Sneeze\"\nRegistry, finding it \"\"culturally, historically, or aesthetically significant.\"\" The film was produced by the Edison Manufacturing Company, which had begun making films in 1890 under the direction of Dickson, one of the earliest film pioneers. It was filmed within the Black Maria studio at West Orange, New Jersey, which was the first U.S. movie studio. It was filmed between January 2, 1894 and January 7, 1894 and was displayed, at the time, through the means of a Kinetoscope. As a film produced prior to 1923, its copyright has now expired and the work is in the public domain. Originally, the"} +{"qid": "test3103", "pid": "15382082", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Television and film in New Jersey\"\nTelevision and film in New Jersey There is a long history of television and film in New Jersey, which is considered the birthplace of the movie picture industry. The roots of the industry started in Newark with Hannibal Goodwin's patent of nitrocellulose film in 1887. Motion picture technology was invented by Thomas Edison, with early work done at his West Orange laboratory. Edison's Black Maria, where the first motion picture to be copyrighted in the United States, \"\"Fred Ott's Sneeze\"\", was shot. America's first motion picture industry started in 1907 in Fort Lee and the first studio was constructed there"} +{"qid": "test3103", "pid": "401964", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"Thomas Edison\"\nstudio made close to 1,200 films. The majority of the productions were short films showing everything from acrobats to parades to fire calls including titles such as \"\"Fred Ott's Sneeze\"\" (1894), \"\"The Kiss\"\" (1896), \"\"The Great Train Robbery\"\" (1903), \"\"Alice's Adventures in Wonderland\"\" (1910), and the first \"\"Frankenstein\"\" film in 1910. In 1903, when the owners of Luna Park, Coney Island announced they would execute Topsy the elephant by strangulation, poisoning, and electrocution (with the electrocution part ultimately killing the elephant), Edison Manufacturing sent a crew to film it, releasing it that same year with the title \"\"Electrocuting an Elephant\"\"."} +{"qid": "test3103", "pid": "1766850", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "Kinetoscope\nand circumstantial\"\" (Appelbaum does err in claiming that the device was \"\"first shown at the Exposition\"\"). Work proceeded, though slowly, on the Kinetoscope project. On October 6, a U.S. copyright was issued for a \"\"publication\"\" received by the Library of Congress consisting of \"\"Edison Kinetoscopic Records.\"\" It remains unclear what film was awarded this, the first motion picture copyright in North America. By the turn of the year, the Kinetoscope project would be reenergized. During the first week of January 1894, a five-second film starring an Edison technician was shot at the Black Maria; \"\"Fred Ott's Sneeze\"\", as it is"} +{"qid": "test3103", "pid": "6580767", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"American humor\"\nto a more famous crowd, including Robin Williams, Ben Stiller, Amy Poehler, and Judd Apatow. Maron himself prefaces each episode with a brief summary of his own life and attempts to overcome his neuroses, and despite the potential for seriousness, these challenges are generally presented in a comedic, if not exasperated light. The very first movie to be produced was Thomas Edison's kinetoscope of his assistant Fred Ott in Record of a Sneeze. This could also be considered the first to show a comedic element. During the era of silent films in the 1920s, comedic films began to appear in"} +{"qid": "test3103", "pid": "17761728", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Fred Ott", "passage": "\"History of film technology\"\ntime looking into it through a peephole, after starting the machine by inserting a coin. The parlours were supplied with film snippets photographed by Dickson, in Edison's \"\"Black Maria\"\" studio. These sequences recorded both mundane incidents, such as \"\"Fred Ott's Sneeze\"\", and entertainment acts, such as acrobats, music hall performers and boxing demonstrations. The Kinetoscope peep-show parlor first opened on April 14, 1894, and was the first commercial exhibition of film. Kinetoscope parlors soon spread successfully to Europe. Edison, however, never attempted to patent these instruments on the other side of the Atlantic, since they relied so greatly on previous"} +{"qid": "test3103", "pid": "4477693", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Edison", "passage": "\"Edison's Black Maria\"\npublicity purposes, as a series of still photographs to accompany an article in \"\"Harper's Weekly\"\". It was the earliest motion picture to be registered for copyright — composed of an optical record of Ott sneezing comically for the camera. The first films shot at the Black Maria, a tar-paper-covered, dark studio room with a retractable roof, included segments of magic shows, plays, vaudeville performances (with dancers and strongmen), acts from Buffalo Bill's Wild West Show, various boxing matches and cockfights, and scantily-clad women. Many of the early Edison moving images released after 1895, however, were non-fictional \"\"actualities\"\" filmed on location:"} +{"qid": "test3103", "pid": "1003608", "query": "this inventor co-created the film fred ott’s sneeze", "answer": "Edison", "passage": "\"Hollywood Walk of Fame\"\nand television programs over a nearly 60-year period. Ten inventors have stars on the Walk: George Eastman, inventor of roll film; Thomas Edison, inventor of the first true film projector and holder of numerous patents related to motion-picture technology; Lee de Forest, inventor of the vacuum tube, which made radio and TV possible, and Phonofilm, which made sound movies possible; Merian C. Cooper, co-inventor of the Cinerama process; Herbert Kalmus, inventor of Technicolor; Auguste and Louis Lumière, inventors of important components of the motion picture camera; Mark Serrurier, inventor of the technology used for film editing; Hedy Lamarr, co-inventor of"} +{"qid": "test3105", "pid": "5278789", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Russian culture\"\nSummer Olympic Games were held in Moscow while the 2014 Winter Olympics and the 2014 Winter Paralympics were hosted by Sochi. Soviet Union dominated the sport of gymnastics for many years, with such athletes as Larisa Latynina, who, until 2012, held a record of most Olympic medals won per person and most gold Olympic medals won by a woman. Today, Russia is leading in rhythmic gymnastics with such stars as Alina Kabaeva, Irina Tschaschina and Yevgeniya Kanayeva. Russian synchronized swimming is the best in the world, with almost all gold medals having been swept by Russians at Olympics and World"} +{"qid": "test3105", "pid": "17150306", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Belarus at the 2014 Winter Olympics\"\nBelarus at the 2014 Winter Olympics Belarus competed at the 2014 Winter Olympics in Sochi, Russia, from 7 to 23 February 2014. Belarus' team consisted of 26 athletes, competing in five sports. With five gold medals won this was Belarus' most successful Winter Olympics. The five gold medals was also the most won by the country at any Olympics since independence. According to the final quota allocation released on 20 January 2014, Belarus had two athletes in qualification position. Based on their performance at the 2012 and 2013 Biathlon World Championships, Belarus qualified 5 men and 5 women. According to"} +{"qid": "test3105", "pid": "17575904", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Netherlands at the 2014 Winter Olympics\"\nNetherlands at the 2014 Winter Olympics The Netherlands competed at the 2014 Winter Olympics in Sochi, Russia from 7 to 23 February 2014. The Dutch team was the largest Dutch delegation at a Winter Olympics, with 41 competitors that participated in bobsleigh, short track speed skating, snowboarding, and speed skating. With a total of 24 medals, it turned out to be the most successful Winter Games ever for the Dutch team. The Dutch team won 23 medals in speed skating and one medal in short track speed skating. Olympic speed skating records were set on the men's 5,000 metres by"} +{"qid": "test3105", "pid": "17150337", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"France at the 2014 Winter Olympics\"\nFrance at the 2014 Winter Olympics France competed at the 2014 Winter Olympics in Sochi, Russia, from 7 to 23 February 2014. French President François Hollande did not attend the 2014 Winter Olympics. He has not said publicly that the decision was a political gesture. The French delegation won a total of 15 medals (including 4 gold), its most ever at a Winter Olympic Games and ranked eighth in overall medals. On 22 January 2014, 14 provisional slots have been filled by the French alpine skiing team. The remainder of the team, including pending selections, was officially announced on 27"} +{"qid": "test3105", "pid": "17111152", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Poland at the 2014 Winter Olympics\"\nPoland at the 2014 Winter Olympics Poland competed at the 2014 Winter Olympics in Sochi, Russia, from 7 to 23 February 2014. The Polish team consisted of 59 athletes in 11 sports, which was the largest ever Polish team, surpassing the 56 athletes that competed in 1972. With 4 gold medals won (and 6 medals overall), this was the most successful Winter Olympics for Poland in its history. According to the quota allocation released on 20 January 2014, Poland qualified six athletes. Based on their performance at the 2012 and 2013 Biathlon World Championships, Poland qualified 5 men and 5"} +{"qid": "test3105", "pid": "17617867", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Tonga at the 2014 Winter Olympics\"\n3 minutes and 33.676 seconds. Felix Loch of Germany won the gold medal with a total time of 3 minutes and 27.526 seconds, the silver medal was taken by Albert Demchenko of Russia, and the bronze medal was earned by Armin Zöggeler of Italy. Tonga at the 2014 Winter Olympics Tonga sent a delegation to compete at the 2014 Winter Olympics in Sochi, Russia from 7–23 February 2014. This was the Pacific island nation's debut at the Winter Olympic Games. The Tongan delegation consisted of one luge athlete, Bruno Banani, who had changed his name in a marketing gimmick to"} +{"qid": "test3105", "pid": "17568226", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Biathlon at the 2014 Winter Olympics – Women's sprint\"\nBiathlon at the 2014 Winter Olympics – Women's sprint The Women's 7.5 km sprint biathlon competition of the Sochi 2014 Olympics took place at Laura Biathlon & Ski Complex on 9 February 2014. It was won by Anastasiya Kuzmina from Slovakia, who was the defending champion. Olga Vilukhina from Russia won the silver medal, and Vita Semerenko from Ukraine won the bronze. Vilukhina was competing in her first Olympic event, whereas Semerenko had competed for but never previously won an Olympic medal. Evi Sachenbacher-Stehle took an early lead in the event, after missing one target in the standing shooting. Soon,"} +{"qid": "test3105", "pid": "6591595", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Speed skating at the 1994 Winter Olympics\"\nSpeed skating at the 1994 Winter Olympics Speed skating at the 1994 Winter Olympics, was held from 13 February to 25 February. Ten events were contested at Hamar Olympic Hall. Norway led the medal table in speed skating on home ice, led by Johann Olav Koss, who won three gold medals. Bonnie Blair was the most successful woman, with a pair of gold medals. Germany won the most total medals, with six, though only a single gold. Belarus and Russia won their first medals in speed skating, with both nations competing in the Olympics for the first time. Four world"} +{"qid": "test3105", "pid": "17739821", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Morocco at the 2014 Winter Olympics\"\nMorocco at the 2014 Winter Olympics Morocco competed at the 2014 Winter Olympics in Sochi, Russia. The country's participation at Vancouver marked its sixth appearance at a Winter Olympics since its debut at the 1968 Games; no athlete has ever won any medals. The 2010 delegation consisted of two athletes competing in alpine skiing, Adam Lamhamedi and Kenza Tazi, who were accompanied by Adam's brother Sami and four officials. Adam Lamhamedi was also the nation's flag bearer in the Parade of Nations, and at the closing ceremony. Neither skier finished on a medal podium. Morocco participated in six Winter Olympics"} +{"qid": "test3105", "pid": "17568228", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Biathlon at the 2014 Winter Olympics – Women's sprint\"\n(behind Kuzmina and Vilukhina) finished sixth. On November 28 Russian biathlete Olga Vilukhina was stripped of her olympic medal due to doping violations. Her teammate Yana Romanova was also disqualified. The race was started at 18:30. Biathlon at the 2014 Winter Olympics – Women's sprint The Women's 7.5 km sprint biathlon competition of the Sochi 2014 Olympics took place at Laura Biathlon & Ski Complex on 9 February 2014. It was won by Anastasiya Kuzmina from Slovakia, who was the defending champion. Olga Vilukhina from Russia won the silver medal, and Vita Semerenko from Ukraine won the bronze. Vilukhina was"} +{"qid": "test3105", "pid": "17568224", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Biathlon at the 2014 Winter Olympics – Women's relay\"\nBiathlon at the 2014 Winter Olympics – Women's relay The Women's 4 x 6 kilometre relay biathlon competition of the Sochi 2014 Olympics was held at Laura Biathlon & Ski Complex on 21 February 2014. Ukraine won their first ever gold Olympic medal in biathlon (and the second gold winter Olympic medal, the first one since 1994 (won by Oksana Baiul), ahead of Russia, the defending champion, and Norway. It also became the fourth nation — after France, Russia, and Germany — to ever win the Olympic gold medal in women's biathlon relay. For the first time Germany failed to"} +{"qid": "test3105", "pid": "16754536", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Biathlon at the 2014 Winter Olympics\"\nBiathlon at the 2014 Winter Olympics Biathlon at the 2014 Winter Olympics was held at the Laura Biathlon & Ski Complex near Krasnaya Polyana, Russia. The eleven events took place between 8–22 February 2014. For the first time ever, a mixed relay event was staged after being voted onto the Olympic program in 2011. The following is the competition schedule for all eleven events. Notably absent from the medals for biathlon in the 2014 Games were the German women who had won six medals in 2006 and five in 2010. The men's team meanwhile recovered from a poor Games in"} +{"qid": "test3105", "pid": "17111154", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Poland at the 2014 Winter Olympics\"\nfive athletes. According to the quota allocation released on 20 January 2014, Poland qualified five athletes. Based on the results from the fall World Cups during the 2013–14 ISU Speed Skating World Cup season, Poland earned the following start quotas: Poland at the 2014 Winter Olympics Poland competed at the 2014 Winter Olympics in Sochi, Russia, from 7 to 23 February 2014. The Polish team consisted of 59 athletes in 11 sports, which was the largest ever Polish team, surpassing the 56 athletes that competed in 1972. With 4 gold medals won (and 6 medals overall), this was the most"} +{"qid": "test3105", "pid": "17568068", "query": "who won the most medals at the 2014 winter olympics", "answer": "Russia", "passage": "\"Alpine skiing at the 2014 Winter Olympics – Women's giant slalom\"\nAlpine skiing at the 2014 Winter Olympics – Women's giant slalom The Women's giant slalom competition of the Sochi 2014 Olympics was held at the Rosa Khutor Alpine Resort near Krasnaya Polyana, Russia, on Tuesday, 18 February. The race was won by Tina Maze of Slovenia, who won silver in 2010 at Vancouver. This was her second Olympic gold in Sochi, following the gold in downhill, and fourth career Olympic medal. The silver was won by Anna Fenninger of Austria, and the defending Olympic champion, Viktoria Rebensburg of Germany, was third. Elisabeth Görgl, who won bronze in Vancouver, finished 11th."} +{"qid": "test3106", "pid": "13410446", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Standing Rules of the United States Senate, Rule IX\"\nStanding Rules of the United States Senate, Rule IX Rule IX of the Standing Rules of the United States Senate, established by the Senate Committee on Rules and Administration, governs messages from the President or House of Representatives to the Senate. Paragraph 1 states messages from the President or from the House of Representatives may be received at any stage of proceedings. The exception is while the Senate is (1) voting or determining the presence of a quorum, (2) while the Senate Journal is being read, (3) while a question of order or a motion to adjourn is pending. Paragraph"} +{"qid": "test3106", "pid": "13411218", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Standing Rules of the United States Senate, Rule XIII\"\nStates House of Representatives, the motion to reconsider shall be accompanied by a motion to request the House of Representatives to return the same; which last motion shall be acted upon immediately without debate. If determined in the negative, it shall be a final disposition of the motion to reconsider. Standing Rules of the United States Senate, Rule XIII Rule XIII of the Standing Rules of the United States Senate, established by the Senate Committee on Rules and Administration, governs reconsideration of a vote within the Senate. Paragraph 1 states that when a question has been decided by the Senate,"} +{"qid": "test3106", "pid": "5883810", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Parliamentary authority\"\nare also the Standing Orders for each House. The House of Commons of Canada follows \"\"Beauchesne's Parliamentary Rules and Forms\"\". \"\"Bourinot's Rules of Order\"\" is another book used in Anglophone Canada. In Quebec, the \"\"Procédure des assemblées délibérantes\"\" (commonly known as Le Code Morin) are rules of order in French. The Australian House of Representatives follows \"\"House of Representatives Practice.\"\" The Australian Senate follows \"\"Odgers' Australian Senate Practice.\"\" Each Australian state and territory house of Parliament has its own set of rules. A number of procedural reference works are used by other organisations in Australia. The United States Senate follows"} +{"qid": "test3106", "pid": "13410447", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Standing Rules of the United States Senate, Rule IX\"\n2 states messages to the House of Representatives shall be sent by the Secretary of the United States Senate. The Secretary shall previously certify the determination of the Senate upon all bill, Joint resolutions, and other resolutions which may be communicated to the House, or in which its concurrence may be requested. The Secretary shall also certify and deliver to the President of the United States all resolutions and other communications which may be directed to him or her by the Senate. Standing Rules of the United States Senate, Rule IX Rule IX of the Standing Rules of the United"} +{"qid": "test3106", "pid": "6364968", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Standing Rules of the United States Senate\"\nthe Senate] detail the rules of order of the United States Senate. The latest version was adopted on April 27, 2000 and comprises the following 43 rules. The Legislative Transparency and Accountability Act of 2006 introduces a 44th rule on earmarks. Standing Rules of the United States Senate The Standing Rules of the Senate are the parliamentary procedures adopted by the United States Senate that govern its procedure. The Senate's power to establish rules derives from of the United States Constitution: \"\"Each House may determine the rules of its proceedings...\"\" There are currently 44 rules, with the latest revision having"} +{"qid": "test3106", "pid": "6364958", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Standing Rules of the United States Senate\"\nStanding Rules of the United States Senate The Standing Rules of the Senate are the parliamentary procedures adopted by the United States Senate that govern its procedure. The Senate's power to establish rules derives from of the United States Constitution: \"\"Each House may determine the rules of its proceedings...\"\" There are currently 44 rules, with the latest revision having been adopted on January 24, 2013. (The Legislative Transparency and Accountability Act of 2006 lobbying reform bill introduces a 44th rule on earmarks). The stricter rules are often waived by unanimous consent. The Constitution provides that a majority of the Senate"} +{"qid": "test3106", "pid": "13947689", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"United States Senate\"\nis the Secretary of the Senate, who maintains public records, disburses salaries, monitors the acquisition of stationery and supplies, and oversees clerks. The Assistant Secretary of the Senate aids the secretary's work. Another official is the Sergeant at Arms who, as the Senate's chief law enforcement officer, maintains order and security on the Senate premises. The Capitol Police handle routine police work, with the sergeant at arms primarily responsible for general oversight. Other employees include the Chaplain, who is elected by the Senate, and Pages, who are appointed. The Senate uses Standing Rules for operation. Like the House of Representatives,"} +{"qid": "test3106", "pid": "13409730", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Standing Rules of the United States Senate, Rule VII\"\nthe beginning of a legislative day the calendar shall be called under Rule VIII, and until two hours after the Senate convenes. Paragraph 3 states that at any time, the Presiding Officer may lay any bill or other matter sent to the Senate by the President or the House of Representatives for appropriate action allowed under the rules and any question pending at that time shall be suspended for this purpose. It shall be in order at any time for a Senator to move to lay, before the Senate. Any motion so made shall be determined without debate. Paragraph 4"} +{"qid": "test3106", "pid": "17291517", "query": "who determines the rules of the us house and us senate", "answer": "United States Senate", "passage": "\"Senate Concurrent Resolution 10 of the 113th Congress\"\nbill was referred to the United States Senate Committee on Rules and Administration. It was passed by the Senate on April 8, 2013 and referred to the United States House of Representatives. S.Con.Res 10 was received by the House on April 9, 2013. It was referred to the United States House Committee on House Administration. The House Majority Leader Eric Cantor announced on Friday May 10, 2013 that H.R. 1580 would be considered the following week. Senate Concurrent Resolution 10 of the 113th Congress The bill Senate Concurrent Resolution 10, \"\"A concurrent resolution authorizing the use of Emancipation Hall in"} +{"qid": "test3107", "pid": "19186222", "query": "who won britain's next top model 2016", "answer": "Chloe Keenan", "passage": "\"Britain's Next Top Model (series 10)\"\nsupply of the brand's products, an appearance on \"\"The Clothes Show\"\" catwalk, and an all-expenses paid holiday trip to Barbados courtesy of Sandals Resorts. The winner of the competition was 22-year-old Chloe Keenan from Birmingham. Keenan, who is originally from Conwy, is the first Welsh winner of the franchise. \"\"(Ages stated are at start of contest)\"\" Britain's Next Top Model (series 10) The tenth cycle of Britain's Next Top Model premiered on 14 January 2016 on Lifetime. This was the first cycle of the series to air on the network after the show was cancelled in 2013 during its original"} +{"qid": "test3108", "pid": "583319", "query": "when did las vegas become a gambling town", "answer": "1931", "passage": "\"Las Vegas\"\nBoulevard and Washington Avenue. Las Vegas was founded as a city in 1905, when of land adjacent to the Union Pacific Railroad tracks were auctioned in what would become the downtown area. In 1911, Las Vegas was incorporated as a city. 1931 was a pivotal year for Las Vegas. At that time, Nevada legalized casino gambling and reduced residency requirements for divorce to six weeks. This year also witnessed the beginning of construction on nearby Hoover Dam. The influx of construction workers and their families helped Las Vegas avoid economic calamity during the Great Depression. The construction work was completed"} +{"qid": "test3108", "pid": "5372386", "query": "when did las vegas become a gambling town", "answer": "1931", "passage": "\"Downtown Las Vegas\"\ncity in 1905, when 110 acres of land adjacent to the Union Pacific Railroad tracks were auctioned in what would become the downtown area. In 1911, Las Vegas was incorporated as a city. The year 1931 was a pivotal one for Las Vegas. At that time, Nevada legalized casino gambling and reduced residency requirements for divorce to six weeks. This year also witnessed the beginning of construction on nearby Hoover Dam. The influx of construction workers and their families helped Las Vegas avoid economic calamity during the Great Depression. It was completed in 1935. Following World War II, lavishly decorated"} +{"qid": "test3108", "pid": "5363401", "query": "when did las vegas become a gambling town", "answer": "1931", "passage": "\"History of Las Vegas\"\nwould be profitable for local business, the Nevada state legislature legalized gambling at the local level in 1931. Las Vegas, with a small but already well-established illegal gambling industry, was poised to begin its rise as the gaming capital of the world. The county issued the first gambling license in 1931 to the Northern Club, and soon other casinos were licensed on Fremont Street like the Las Vegas Club and the Apache Hotel. Fremont Street became the first paved street in Las Vegas and received the city's first traffic light in 1931. In reply, the federal government restricted movement of"} +{"qid": "test3108", "pid": "9300529", "query": "when did las vegas become a gambling town", "answer": "1931", "passage": "\"Joseph Stacher\"\nof Zwillman's gambling operations. In 1931, Stacher helped Meyer Lansky organize a conference of Jewish organized crime leaders at the Franconia Hotel, which later would see the alleged merging of the Jewish and Italian Mafia into a national crime syndicate. Running West Coast and Caribbean gambling operations for Lansky during the 1930s, as well as becoming a silent partner of movie studio Columbia Pictures in the late 1930s, Stacher would later supervise gambling in Las Vegas, Nevada, particularly the Sands and Fremont Casinos. Stacher continued running Mafia gambling operations until 1964, when Federal authorities arrested him for tax evasion. While"} +{"qid": "test3108", "pid": "13813130", "query": "when did las vegas become a gambling town", "answer": "1931", "passage": "\"West Las Vegas\"\ncommunity life, but with legalization of gambling (1931), repeal of prohibition (1933) and completion of the Boulder Dam (1935) and with tourism on the rise, casino owners began restricting their patrons to whites only. Blacks were allowed to entertain or work in casinos, but they were not allowed to attend shows, live in the casino district, or obtain or renew business licenses. In response to the segregation, blacks in effect created their own Las Vegas that offered everything the real city did. The area even had its own version of the Las Vegas Strip, the Black Strip in an area"} +{"qid": "test3109", "pid": "8134398", "query": "who is the highest paid baseball player in the major leagues", "answer": "Alex Rodriguez", "passage": "\"Major League Baseball Player of the Month Award\"\nPlayers listed with multiple occurrences are denoted in parentheses: The highest number of Player of the Month awards won by a single player is Barry Bonds' 13. He is followed by Alex Rodriguez (10), Frank Thomas (8), and Albert Belle (7). Major League Baseball Player of the Month Award The Player of the Month Award is a Major League Baseball award named by each league every month of the regular season. The National League started recognizing the award on June 4, 1958. National League president Warren Giles conducted a poll of baseball writers in each Major League city and awarded"} +{"qid": "test3110", "pid": "5020455", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Seven gifts of the Holy Spirit\"\nthe perfect operations of the virtues, especially in the face of our human weakness and in difficult situations.\"\" Saint Augustine drew a connection between the gifts of the Holy Spirit and the Beatitudes (Matt.5:3-12). Seven gifts of the Holy Spirit The Seven gifts of the Holy Spirit are an enumeration of seven spiritual gifts originating from patristic authors, later elaborated by five intellectual virtues and four other groups of ethical characteristics. They are: wisdom, understanding, counsel, fortitude, knowledge, piety, and fear of the Lord. The seven gifts are found in the Book of Isaiah , where the Biblical passage refers"} +{"qid": "test3110", "pid": "5020449", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Seven gifts of the Holy Spirit\"\nSeven gifts of the Holy Spirit The Seven gifts of the Holy Spirit are an enumeration of seven spiritual gifts originating from patristic authors, later elaborated by five intellectual virtues and four other groups of ethical characteristics. They are: wisdom, understanding, counsel, fortitude, knowledge, piety, and fear of the Lord. The seven gifts are found in the Book of Isaiah , where the Biblical passage refers to the characteristics of a Messianic figure understood by Christians to be Jesus Christ empowered by the \"\"Spirit of the Lord\"\". In the Hebrew Masoretic text the \"\"Spirit of the Lord\"\" is described with"} +{"qid": "test3110", "pid": "5020454", "query": "list the seven gifts of the holy spirit", "answer": "fear", "passage": "\"Seven gifts of the Holy Spirit\"\nII.II, Thomas Aquinas asserts the following correspondences between the seven Capital Virtues and the seven Gifts of the Holy Spirit: To the virtue of temperance, no Gift is directly assigned; but the gift of fear can be taken as such, since fear drives somebody to restrict himself from forbidden pleasures. The Rev. Brian Shanley contrasts the gifts to the virtues this way: \"\"What the gifts do over and above the theological virtues (which they presuppose) is dispose the agent to the special promptings of the Holy Spirit in actively exercising the life of the virtues; the gifts are necessary for"} +{"qid": "test3110", "pid": "15478941", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Holy Spirit in Christianity\"\nor \"\"Filling with the Holy Spirit\"\" which the Christian needs to experience in order to receive those gifts. However, many Christian denominations hold that the Baptism with the Holy Spirit is identical with conversion, and that all Christians are by definition baptized in the Holy Spirit. The \"\"seven gifts of the Holy Spirit\"\" pour out on a believer at baptism, and are traditionally derived from Isaiah , although the New Testament does not refer to Isaiah 11:1–2 regarding these gifts. These 7 gifts are: wisdom, understanding, counsel, fortitude (strength), knowledge, piety and fear of the Lord. This is the view"} +{"qid": "test3110", "pid": "5020450", "query": "list the seven gifts of the holy spirit", "answer": "wisdom", "passage": "\"Seven gifts of the Holy Spirit\"\nsix characteristics (wisdom, understanding, counsel, might, knowledge, fear of the Lord), and then the last characteristic (fear of the Lord) is mentioned a second time. In the Greek Septuagint the first mention of the fear of the Lord is translated as \"\"spirit of [...] godliness\"\" (\"\"πνεῦμα\"\" [...] \"\"εὐσεβείας\"\"). The seven Latin terms are then: The \"\"Seven Gifts of the Holy Spirit\"\" is one of several works in Christian devotional literature which follow a scheme of seven. Others include the seven petitions of the Lord's Prayer, the beatitudes, the seven last words from the cross, the seven deadly sins, and the"} +{"qid": "test3110", "pid": "3302269", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Baptism with the Holy Spirit\"\nPentecost\"\". For the confirmand it increases the seven gifts of the Holy Spirit (wisdom, understanding, counsel, fortitude, knowledge, piety, and fear of the Lord), unites more fully to Christ and the Church, and gives strength to confess Christ and defend the faith. The rite of confirmation orients toward mission, and many liturgical texts remind the initiate that the gift of the Holy Spirit should be used for service to the church and the world. The main position on Spirit baptism among the Reformed churches, dispensationalists, and many Baptists is that the baptism with the Holy Spirit occurs simultaneously with regeneration,"} +{"qid": "test3110", "pid": "8749310", "query": "list the seven gifts of the holy spirit", "answer": "wisdom", "passage": "\"Holy Wisdom\"\nMartyr and Origen. The clearest form of the identification of Divine Wisdom with Christ comes in 1 Corinthians 1:17-2:13. There is a minor position among the Church Fathers which held that Wisdom is identical not to Christ but to the Holy Spirit. This was advanced by Theophilus of Antioch (d. 180) and by Irenaeus of Lyons (d. 202/3). The Catechism of the Catholic Church of 1992 reflects this view by listing, based on Isaiah 11:2, wisdom among the \"\"seven gifts of the Holy Spirit\"\". When rebutting claims about Christ's ignorance, Gregory of Nazianzus insisted that, inasmuch as he was divine,"} +{"qid": "test3110", "pid": "5020452", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Seven gifts of the Holy Spirit\"\n\"\"by the sacrament of Confirmation, [the baptized] are more perfectly bound to the Church and are enriched with a special strength of the Holy Spirit. Hence they are, as true witnesses of Christ, more strictly obliged to spread and defend the faith by word and .\"\" According to the \"\"Catechism of the Catholic Church\"\", these gifts \"\"...complete and perfect the virtues of those who receive them.\"\" In \"\"Summa Theologiae\"\" I.II, q. 68, a1, Saint Thomas Aquinas says that four of these gifts (wisdom, understanding, knowledge, and counsel) direct the intellect, while the other three gifts (fortitude, piety, and fear of"} +{"qid": "test3110", "pid": "8051555", "query": "list the seven gifts of the holy spirit", "answer": "wisdom", "passage": "\"Confirmation in the Catholic Church\"\nConfirmation in the Catholic Church Confirmation is one of the seven sacraments of the Catholic Church. It is the one of the three sacraments of initiation into the Catholic Church, the other two being Baptism and Holy Communion. According to Catholic doctrine, the Sacrament of Confirmation enables the faithful to be sealed with the gift of the Holy Spirit, strengthening them in their Christian life. The \"\"Catechism of the Catholic Church\"\" states: Recall then that you have received the spiritual seal, the Spirit of wisdom and understanding and courage, the spirit of right judgment and courage, the spirit of knowledge"} +{"qid": "test3110", "pid": "4472678", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Catholic Charismatic Renewal\"\nfrom reverent communion with Christ in the Eucharist and towards individual emotions and non-liturgical experiences as a substitute. Renewal advocates believe that the charisms identified in Saint Paul's writings, especially in , , and , continue to exist and to build up the Church (see Catechism of the Catholic Church, §2003). The nine charismatic gifts considered extraordinary in character include: faith, expression of knowledge and wisdom, miracles, the gift of tongues and their interpretation, prophecy, discernment of spirits and healing.() These gifts are related to the traditional seven gifts of the Holy Spirit described in (wisdom, understanding, counsel, fortitude, knowledge,"} +{"qid": "test3110", "pid": "776649", "query": "list the seven gifts of the holy spirit", "answer": "wisdom", "passage": "\"Spiritual gift\"\nthe Holy Spirit. These extraordinary spiritual gifts, often termed \"\"charismatic gifts\"\", are the word of wisdom, the word of knowledge, increased faith, the gifts of healing, the gift of miracles, prophecy, the discernment of spirits, diverse kinds of tongues, interpretation of tongues. To these are added the gifts of apostles, prophets, teachers, helps (connected to service of the poor and sick), and governments (or leadership ability) which are connected with certain offices in the Church. These gifts are given by the Holy Spirit to individuals, but their purpose is to build up the entire Church. They are described in the"} +{"qid": "test3110", "pid": "602513", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "Courage\npart of the universal virtue of \"\"virtus\"\". Roman philosopher and statesman Cicero (106–43 BCE) lists the cardinal virtues does not name them such: In medieval virtue ethics, championed by Averroes and Thomas Aquinas and still important to Roman Catholicism, courage is referred to as \"\"Fortitude\"\". According to Thomas Aquinas: Part of his justification for this hierarchy is that: On fortitude's general and special nature, Aquinas says: Aquinas holds fortitude or courage as being primarily about endurance, not attack: In both Catholicism and Anglicanism, courage is also one of the seven gifts of the Holy Spirit. For Thomas Aquinas, Fortitude is"} +{"qid": "test3110", "pid": "17908588", "query": "list the seven gifts of the holy spirit", "answer": "fortitude", "passage": "\"Komm, Heiliger Geist, Herre Gott\"\nand \"\"us\"\"). Luther alludes to several of the seven gifts of the Holy Spirit, according to : wisdom, understanding, counsel, knowledge, fortitude, piety, and fear of the Lord. He also drew on (\"\"because ye are sons, God hath sent forth the Spirit of his Son into your hearts\"\"), (\"\"for one is your Master\"\"), and (\"\"the Spirit also helpeth our infirmities\"\"). In the second stanza, Luther uses the attributes \"\"heiliges Licht, edler Hort\"\" (holy light, precious refuge) and words the request \"\"protect us from strange doctrines / so that we may never look for any teacher / except Jesus in true"} +{"qid": "test3114", "pid": "1808851", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Cauda equina\"\nCauda equina The cauda equina () is a bundle of spinal nerves and spinal nerve rootlets, consisting of the second through fifth lumbar nerve pairs, the first through fifth sacral nerve pairs, and the coccygeal nerve, all of which arise from the lumbar enlargement and the conus medullaris of the spinal cord. The cauda equina occupies the lumbar cistern, a subarachnoid space inferior to the conus medullaris. The nerves that compose the cauda equina innervate the pelvic organs and lower limbs to include motor innervation of the hips, knees, ankles, feet, internal anal sphincter and external anal sphincter. In addition,"} +{"qid": "test3114", "pid": "1808857", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Cauda equina\"\nwas named after its resemblance to a horse's tail () by the French anatomist Andreas Lazarius (André du Laurens) in the 17th century. Cauda equina The cauda equina () is a bundle of spinal nerves and spinal nerve rootlets, consisting of the second through fifth lumbar nerve pairs, the first through fifth sacral nerve pairs, and the coccygeal nerve, all of which arise from the lumbar enlargement and the conus medullaris of the spinal cord. The cauda equina occupies the lumbar cistern, a subarachnoid space inferior to the conus medullaris. The nerves that compose the cauda equina innervate the pelvic"} +{"qid": "test3114", "pid": "12964545", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Spinal cord\"\nof white matter carry information either up or down the spinal cord. The spinal cord proper terminates in a region called the conus medullaris, while the pia mater continues as an extension called the filum terminale, which anchors the spinal cord to the coccyx. The cauda equina (\"\"horse's tail\"\") is a collection of nerves inferior to the conus medullaris that continue to travel through the vertebral column to the coccyx. The cauda equina forms because the spinal cord stops growing in length at about age four, even though the vertebral column continues to lengthen until adulthood. This results in sacral"} +{"qid": "test3114", "pid": "3880027", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Spinal cord injury\"\nabout the T12–L2 vertebrae in adults. This region contains the S4–S5 spinal segments, responsible for bowel, bladder, and some sexual functions, so these can be disrupted in this type of injury. In addition, sensation and the Achilles reflex can be disrupted. Causes include tumors, physical trauma, and ischemia. Cauda equina syndrome (CES) results from a lesion below the level at which the spinal cord splits into the cauda equina, at levels L2–S5 below the conus medullaris. Thus it is not a true spinal cord syndrome since it is nerve roots that are damaged and not the cord itself; however it"} +{"qid": "test3114", "pid": "3863087", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "Neuromere\nmedullaris. The pia mater continues as an extension called the filum terminale, which anchors the spinal cord to the coccyx. The cauda equina (“horse’s tail”) is the name for the collection of nerves in the vertebral column that continue to travel through the vertebral column below the conus medullaris. The cauda equina forms as a result of the fact that the spinal cord stops growing in length at about age four, even though the vertebral column continues to lengthen until adulthood. This results in the fact that sacral spinal nerves actually originate in the upper lumbar region. The spinal cord"} +{"qid": "test3114", "pid": "1808852", "query": "where does the spinal cord become cauda equina", "answer": "L1 or L2", "passage": "\"Cauda equina\"\nthe cauda equina extends to sensory innervation of the perineum and, partially, parasympathetic innervation of the bladder. In humans, the spinal cord stops growing in infancy and the end of the spinal cord is about the level of the third lumbar vertebra, or L3, at birth. Because the bones of the vertebral column continue to grow, by about 12 months of age, the end of the cord reaches its permanent position at the level of L1 or L2 (closer to the head). However, due to normal anatomical variations, the final cord end position may occur anywhere from T12 twelfth thoracic"} +{"qid": "test3114", "pid": "4421177", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Cauda equina syndrome\"\namassing sufficient cases as well as defining the affected population, therefore this is an area deserving of additional scrutiny. Traumatic spinal cord injuries occur in approximately 40 people per million annually in the United States, resulting from traumas due to motor vehicle accidents, sporting injuries, falls, and other factors. An estimated 10 to 25% of vertebral fractures will result in injury to the spinal cord. Thorough physical examinations are required, as 5 to 15% of trauma patients have fractures that initially go undiagnosed. The most frequent injuries of the thoracolumbar region are to the conus medullaris and the cauda equina,"} +{"qid": "test3114", "pid": "12964547", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Spinal cord\"\ncord ends around the L1/L2 vertebral level, forming a structure known as the conus medullaris. Although the spinal cord cell bodies end around the L1/L2 vertebral level, the spinal nerves for each segment exit at the level of the corresponding vertebra. For the nerves of the lower spinal cord, this means that they exit the vertebral column much lower (more caudally) than their roots. As these nerves travel from their respective roots to their point of exit from the vertebral column, the nerves of the lower spinal segments form a bundle called the cauda equina. There are two regions where"} +{"qid": "test3114", "pid": "2207150", "query": "where does the spinal cord become cauda equina", "answer": "L1 or L2", "passage": "\"Lumbar puncture\"\nand waste products. The majority is produced by the choroid plexus in the brain and circulates from there to other areas, before being reabsorbed into the circulation (predominantly by the arachnoid granulations). The cerebrospinal fluid can be accessed most safely in the lumbar cistern. Below the first or second lumbar vertebrae (L1 or L2) the spinal cord terminates (conus medullaris). Nerves continue down the spine below this, but in a loose bundle of nerve fibers called the cauda equina. There is lower risk with inserting a needle into the spine at the level of the cauda equina because these loose"} +{"qid": "test3114", "pid": "16034498", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Vertebral column\"\nspinal nerves. The spinal nerves provide sympathetic nervous supply to the body, with nerves emerging forming the sympathetic trunk and the splanchnic nerves. The spinal canal follows the different curves of the column; it is large and triangular in those parts of the column which enjoy the greatest freedom of movement, such as the cervical and lumbar regions; and is small and rounded in the thoracic region, where motion is more limited. The spinal cord terminates in the conus medullaris and cauda equina. Spina bifida is a congenital disorder in which there is a defective closure of the vertebral arch."} +{"qid": "test3114", "pid": "6401984", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Conus medullaris\"\nConus medullaris The conus medullaris (Latin for \"\"medullary cone\"\") or conus terminalis is the tapered, lower end of the spinal cord. It occurs near lumbar vertebral levels 1 (L1) and 2 (L2), occasionally lower. The upper end of the conus medullaris is usually not well defined. After the spinal cord tapers out, the spinal nerves continue to branch out diagonally, forming the cauda equina. The pia mater that surrounds the spinal cord, however, projects directly downward, forming a slender filament called the filum terminale, which connects the conus medullaris to the back of the coccyx. The filum terminale provides a"} +{"qid": "test3114", "pid": "4421165", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Cauda equina syndrome\"\nas MRI or CT scan. CES is generally treated surgically via laminectomy. Permanent bladder problems, sexual dysfunction or numbness may occur despite surgery. A poor outcome occurs in about 20% of people despite treatment. About 1 in 70,000 people is affected every year. It was first described in 1934. Severe back pain, saddle anesthesia, incontinence and sexual dysfunction are considered \"\"red flags\"\", i.e. features which require urgent investigation. After the conus medullaris, the canal contains a mass of nerves (the cauda equina or \"\"horse-tail\"\") that branches off the lower end of the spinal cord and contains the nerve roots from"} +{"qid": "test3114", "pid": "8609203", "query": "where does the spinal cord become cauda equina", "answer": "the conus medullaris", "passage": "\"Posterior spinal artery\"\nmedulla spinalis and upper cervical spine, the posterior spinal arteries are rather discontinuous; unlike the anterior spinal artery, which can be traced as a distinct channel throughout its course, the posterior spinal arteries are seen as somewhat larger longitudinal channels of an extensive pial arterial meshwork. At the level of the conus medullaris, the posterior spinals are more frequently seen as distinct arteries, communicating with the anterior spinal artery to form a characteristic \"\"basket\"\" which angiographically defines the caudal extent of the spinal cord and its transition to the cauda equina. Branches from the posterior spinal arteries form a free"} +{"qid": "test3115", "pid": "12706186", "query": "when did clifford the big red dog first air on tv", "answer": "September 4, 2000", "passage": "\"Clifford the Big Red Dog (TV series)\"\nClifford the Big Red Dog (TV series) Clifford the Big Red Dog is an American educational animated children's television series, based upon Norman Bridwell's children's book series of the same name. Produced by Scholastic Productions, it originally aired on PBS Kids from September 4, 2000 to February 25, 2003. The UK version (where it was dubbed with British voice actors replacing the original American soundtrack) originally aired on BBC 2 on 1 April 2002. John Ritter voiced Clifford in all episodes. This was originally done by Brent Titcomb in the 1988 direct-to-video series. Generally speaking, Ritter's schedule dictated the production"} +{"qid": "test3115", "pid": "12706193", "query": "when did clifford the big red dog first air on tv", "answer": "September 4, 2000", "passage": "\"Clifford the Big Red Dog (TV series)\"\nJohn Goodman as George Wolfsbottom, and Jenna Elfman as Dorothy the Cow. The film also serves as the series finale. Clifford the Big Red Dog (TV series) Clifford the Big Red Dog is an American educational animated children's television series, based upon Norman Bridwell's children's book series of the same name. Produced by Scholastic Productions, it originally aired on PBS Kids from September 4, 2000 to February 25, 2003. The UK version (where it was dubbed with British voice actors replacing the original American soundtrack) originally aired on BBC 2 on 1 April 2002. John Ritter voiced Clifford in all"} +{"qid": "test3116", "pid": "9115811", "query": "when was the last time kentucky won ncaa", "answer": "2012", "passage": "\"Valparaiso Crusaders\"\nchampionship (an event conducted by the Division of Girls' and Women's Sports (DGWS) — which later evolved into the current NCAA women's golf championship). The Crusader softball team has won three Horizon League softball championships in the last six years and advanced to the NCAA Tournament three times. Valpo won the Horizon League for the first time and advanced to the NCAA Tournament in 2012, where they lost to Louisville in the first round of the Louisville Regional. In the second round, the Crusaders lost to Kentucky. The Crusader softball team repeated as Horizon League champions and advanced to the"} +{"qid": "test3116", "pid": "16383940", "query": "when was the last time kentucky won ncaa", "answer": "2012", "passage": "\"Indiana–Kentucky rivalry\"\nplay in Rupp Arena. Rick had a tough time understanding that it was a game between Kentucky and Indiana, not between him and me.\"\" Following the win, IU led the all-time series 20-17. But it marked a turning point in the series for a while. From that game until 2011 Kentucky went 14-3 against the Hoosiers. In 2011 Kentucky coach John Calipari briefly discussed the possibility of ending one of Kentucky's annual games against rivals Louisville, North Carolina, or Indiana. A last-second shot which propelled Indiana to victory over top-ranked Kentucky and another meeting in the 2012 NCAA Tournament (won"} +{"qid": "test3116", "pid": "8022588", "query": "when was the last time kentucky won ncaa", "answer": "2012", "passage": "\"Sean Woods\"\nan assistant. In 2005, Woods became a charter member of the Kentucky Athletic Hall of Fame as part of the Unforgettables. Immediately following the Duke loss, every Kentucky senior's jersey (though not their numbers) was retired. Woods is currently fifth all-time on Kentucky's career assist list, with 482. On June 24, 2008, Woods became the head coach of the Mississippi Valley State University men's basketball team. In 2012, Woods's last year there, the Delta Devils won the Southwestern Athletic Conference regular season and conference tournament, qualifying for the NCAA Tournament. The team lost in the First Four round. Woods was"} +{"qid": "test3116", "pid": "10877353", "query": "when was the last time kentucky won ncaa", "answer": "2012", "passage": "\"Kentucky Wildcats men's basketball\"\nNCAA Tournament. Kentucky was both selected as the No. 1 seed in the South Region and also the No. 1 seed overall of the entire NCAA Tournament. The Sweet 16 match-up on March 23, 2012 was a rematch against Indiana, in which this time the Wildcats prevailed over the Hoosiers 102–90. On March 25, 2012, Kentucky won the South Regional, setting up a Final Four semifinal with the Louisville Cardinals. Calipari's Wildcats defeated the Cardinals (coached by former Kentucky coach Rick Pitino) by a score of 69–61. This sent Kentucky to the National Championship game against the Kansas Jayhawks, where"} +{"qid": "test3116", "pid": "5974391", "query": "when was the last time kentucky won ncaa", "answer": "2012", "passage": "\"Kentucky Wildcats\"\nwell as an NCAA regional, another first for the program. Since 2013, UK has hosted an NCAA regional in 2014 and 2016-2018. Edrick Floréal was hired a UK Track and Field coach in 2012, and has led the Wildcats to five NCAA individual championships and 27 individual SEC championships. Notable track athletes: The University of Kentucky cheerleaders have won the UCA (Division I-A) Cheerleading Championship 20 times, more than any other school. They are the only school to win more than two consecutive championships, having won each year from 1995 through 2002 and from 2004 through 2006, and are the"} +{"qid": "test3117", "pid": "7371970", "query": "what was guantanamo bay before it was a prison", "answer": "Guantanamo Bay Naval Base", "passage": "\"Guantanamo Bay detention camp\"\nopen and to use it to detain \"\"bad dudes\"\", potentially including American supporters of ISIS. Trump has also considered bringing back waterboarding or \"\"worse\"\". On 30 January 2018, just before delivering his State of the Union address, Trump signed an executive order keeping the prison open indefinitely. Guantanamo Bay detention camp The Guantanamo Bay detention camp is a United States military prison located within Guantanamo Bay Naval Base, also referred to as Guantánamo, G-Bay, GTMO, Gitmo (), and America's Gulag, which is on the coast of Guantánamo Bay in Cuba. Since the inmates have been detained indefinitely without trial and"} +{"qid": "test3117", "pid": "7349263", "query": "what was guantanamo bay before it was a prison", "answer": "Guantanamo Bay Naval Base", "passage": "\"Dogs in warfare\"\nwith maltreatment of detainees, for allegedly encouraging and permitting unmuzzled working dogs to threaten and attack them. Prosecutors have focused on an incident caught in published photographs, when the two men allegedly cornered a naked detainee and allowed the dogs to bite him on each thigh as he cowered in fear. Guantanamo Bay: It is believed that the use of dogs on prisoners in Iraq was learned from practices at Guantanamo Bay Naval Base. The use of dogs on prisoners by regular U.S. forces in Guantanamo Bay Naval Base was prohibited by Donald Rumsfeld in April 2003. A few months"} +{"qid": "test3117", "pid": "7371824", "query": "what was guantanamo bay before it was a prison", "answer": "Guantanamo Bay Naval Base", "passage": "\"Guantanamo Bay detention camp\"\nGuantanamo Bay detention camp The Guantanamo Bay detention camp is a United States military prison located within Guantanamo Bay Naval Base, also referred to as Guantánamo, G-Bay, GTMO, Gitmo (), and America's Gulag, which is on the coast of Guantánamo Bay in Cuba. Since the inmates have been detained indefinitely without trial and several detainees have been tortured, the operations of this camp are considered to be a major breach of human rights by Amnesty International. The camp was established by President George W. Bush's administration in 2002 during the War on Terror. His successor, President Barack Obama, promised that"} +{"qid": "test3117", "pid": "7371826", "query": "what was guantanamo bay before it was a prison", "answer": "Guantanamo Bay Naval Base", "passage": "\"Guantanamo Bay detention camp\"\nprison camp was established to detain extraordinarily dangerous people, to interrogate detainees in an optimal setting, and to prosecute detainees for war crimes. In practice, the site has long been used for enemy combatants. The Department of Defense at first kept secret the identity of the individuals held in Guantanamo but, after losing attempts to defy a Freedom of Information Act request from the Associated Press, the U.S. military officially acknowledged holding 779 prisoners in the camp. The facility is operated by the Joint Task Force Guantanamo (JTF-GTMO) of the United States government in Guantanamo Bay Naval Base. Detention areas"} +{"qid": "test3117", "pid": "169265", "query": "what was guantanamo bay before it was a prison", "answer": "Guantanamo Bay Naval Base", "passage": "\"Guantanamo Bay Naval Base\"\nCIA would be transferred to the custody of Department of Defense, and held at Guantanamo Prison. Of approximately 500 prisoners in Guantanamo Bay, only 10 have been tried by the Guantanamo military commission, but all cases have been stayed pending the adjustments being made to comply with the U.S. Supreme Court decision in \"\"Hamdi v. Rumsfeld\"\". President Barack Obama said he intended to close the detention camp, and planned to bring detainees to the United States to stand trial by the end of his first term in office. On 22 January 2009, he issued three executive orders. Only one of"} +{"qid": "test3120", "pid": "16008527", "query": "who plays brad pitt's daughter in moneyball", "answer": "Kerris Lilla Dorsey", "passage": "\"Kerris Dorsey\"\n\"\"Alexander and the Terrible, Horrible, No Good, Very Bad Day\"\". Kerris Dorsey Kerris Lilla Dorsey (born January 9, 1998) is an American actress and singer. She is known for her roles as Paige Whedon in the television series \"\"Brothers & Sisters\"\", Casey Beane, Billy Beane's (played by Brad Pitt) daughter, in the 2011 film \"\"Moneyball\"\", and as Emily Cooper in the 2014 film \"\"Alexander and the Terrible, Horrible, No Good, Very Bad Day\"\". Dorsey plays Bridget Donovan, the daughter of the title character, in the television series \"\"Ray Donovan\"\". In \"\"Moneyball\"\" she performs a cover of Lenka's song \"\"The Show\"\","} +{"qid": "test3120", "pid": "16008524", "query": "who plays brad pitt's daughter in moneyball", "answer": "Kerris Lilla Dorsey", "passage": "\"Kerris Dorsey\"\nKerris Dorsey Kerris Lilla Dorsey (born January 9, 1998) is an American actress and singer. She is known for her roles as Paige Whedon in the television series \"\"Brothers & Sisters\"\", Casey Beane, Billy Beane's (played by Brad Pitt) daughter, in the 2011 film \"\"Moneyball\"\", and as Emily Cooper in the 2014 film \"\"Alexander and the Terrible, Horrible, No Good, Very Bad Day\"\". Dorsey plays Bridget Donovan, the daughter of the title character, in the television series \"\"Ray Donovan\"\". In \"\"Moneyball\"\" she performs a cover of Lenka's song \"\"The Show\"\", which is included on the soundtrack to the film. In"} +{"qid": "test3121", "pid": "13455180", "query": "who won season 2 of real chance of love", "answer": "Doll", "passage": "\"Real Chance of Love (season 2)\"\nReal Chance of Love (season 2) Real Chance of Love 2: Back in the Saddle is the second season of the VH1 reality television dating series \"\"Real Chance of Love\"\". Ahmad Givens (Real) and Kamal Givens (Chance), former contestants on \"\"I Love New York\"\" are the central figures. The show premiered August 3, 2009. The show features twenty female contestants taking part in various challenges. Real and Chance appeared on Chelsea Lately on May 25, 2009 to talk about the second season of Real Chance of Love, which was in production at the time. Ultimately, Ahmad (Real) selected \"\"Doll\"\", while"} +{"qid": "test3121", "pid": "13455213", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\nback to their rooms for their night caps. The next day would be the day Real and Chance would their girls each to be with. During their final elimination, Real picked Doll to be with. Chance had a difficult decision, but Hot Wings said she felt in love in with him and Chance decides to take Hot Wing over Mamacita. Reason for Elimination Episode Notes Real Chance of Love (season 2) Real Chance of Love 2: Back in the Saddle is the second season of the VH1 reality television dating series \"\"Real Chance of Love\"\". Ahmad Givens (Real) and Kamal"} +{"qid": "test3121", "pid": "13147210", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love\"\n\"\"Real Chance of Love 2\"\". Twenty women will move into the Stallionaire Ranch and compete for the brother of their choice. In March 2009, Real Chance of Love 2 auditions were held in selected cities. Real and Chance appeared on Chelsea Lately on May 25, 2009, to talk about the second season of Real Chance of Love. The show premiered on August 3, 2009. Ultimately, Ahmad (Real) selected \"\"Doll\"\", while Kamal (Chance) selected \"\"Hot Wings\"\". Real Chance of Love Real Chance of Love is an American reality television dating game show featuring two brothers, Ahmad \"\"Real\"\" Givens (died February 21,"} +{"qid": "test3121", "pid": "13455181", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\nKamal (Chance) selected \"\"Hot Wings\"\". \"\"First aired on August 3, 2009\"\" Chance and Real have returned for a second season, after both failed to making a lasting connection in season one; Chance selected no one, and Real's romantic relationship with Corn Fed ended soon after the show. In season two, the \"\"Stallionaires\"\" have twenty new women looking for love, and it will be up to Real and Chance to find their \"\"Stallionettes\"\". The season features new twists such as no \"\"Real girls\"\" or \"\"Chance girls\"\" yet, leading to \"\"double the competition for their men.\"\" This twist leads to \"\"calculated game-play\"\""} +{"qid": "test3121", "pid": "13455196", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\nThe next day, their challenge is to write and perform a song called \"\"Animals are Awesome\"\", with each girl writing and singing a verse about an endangered animal and all girls from each team to sing the chorus. It ended that Team 2 named EES (Exotic Endangered Species) won. That night, Real and Chance took Classy and Hot Wings went to a fancy restaurant for their double date. The next day, Real and Chance took Blonde Baller, Flirty, and Doll to a local tennis court to play tennis. On the way there, Flirty opened up to Chance about her troubled"} +{"qid": "test3121", "pid": "13455212", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\nshortly after bring them back to their rooms for their night caps. The next day, Real and Chance took Sassy and Hot Wings to Gator Park to see some crocodiles and alligators. Hot Wings decides to step in the water to prove to Chance that she is adventurous also. That night, Sassy and Hot Wings have dates with Real and Chance. During Real's date, Sassy pulls out a notebook full of questions to ask Real, which surprised him but felt that she is interested in him. Hot Wings accidentally said that she loved him. Real and Chance took the girls"} +{"qid": "test3121", "pid": "13455187", "query": "who won season 2 of real chance of love", "answer": "Doll", "passage": "\"Real Chance of Love (season 2)\"\nnext challenge is to find Big Foot and bring him back, with the winners getting a date with the boys. But little do the girls know that Big Foot is actually the boys' brother Micah. The Pink Team won the challenge with Blonde Baller tackling the Yeti. Baker and Doll had a date up in Real and Chance's bedroom, having a foot psychic reading. Both girls were able to open up to the boys about their insecurities. The next morning, Apple made Real breakfast, but he still has some concern about Apple fitting into his lifestyle. That day, Real and"} +{"qid": "test3121", "pid": "13455190", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\n(as Poca the Warrior) and Flirty (as Dirty Flirty) vs. Mamacita (as Senorita Mamacita) and Sassy (as Sassy Sphynx). Because of collective chemistry, it ended up that the purple team won the challenge, leaving Hot Wings upset without another date. Sassy and Mamacita get to go on romantic dates that night. On the way there, Chance drank too much tequila, causing him to act obnoxious towards Mamacita during their date. Chance passed out that night while Real bring both Mamacita and Sassy back to the house. Meanwhile, Hot Wings was so frustrated about not getting a date that she decided"} +{"qid": "test3121", "pid": "13455210", "query": "who won season 2 of real chance of love", "answer": "Doll", "passage": "\"Real Chance of Love (season 2)\"\nPocahontas and Sassy still despise each other. The next day, Real, Chance, and the girls depart to Miami and settle into a hotel. That night, Real had dinner with his three girls and said that one girl will be eliminated that next day. Real then took out applications and the audition tapes of each girl to see what they were like before coming to the show. He first saw Sassy's tape and found she was the same person who came to the show. Then he checked Doll's tape and found she was attracted to bad boys like Chance. The next"} +{"qid": "test3121", "pid": "13455209", "query": "who won season 2 of real chance of love", "answer": "Doll", "passage": "\"Real Chance of Love (season 2)\"\nage doesn't matter when you're in love with somebody, moving Chance and eliminating Baker. Real gave his first chain to Doll, leaving Pocahontas and Sassy at the bottom two. He has developed feelings for both of them, but also has some questions about both of them, Pocahontas not being completely honest and Sassy still being high maintenance. It was decided that Real will take both girls along with Doll to Miami. Episode Notes \"\"First aired October 19, 2009\"\" Real and Chance shared some of the best and worst moments of the show. Includes: \"\"First aired October 26, 2009\"\" After elimination,"} +{"qid": "test3121", "pid": "13455204", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\nhaving Flirty and Mamacita wait for him. Classy attempted to crack some jokes to Real, but it made Real uncomfortable. Pocahontas then gave him an embarrassing dance that made Real laugh. Once Chance came back, Flirty open up more about her life, which Chance found strange and perceived her as a liar. Real chose Pocahontas and Chance chose Mamacita for night caps. The next day, the girls got back to the house and that night was elimination. Chance spend some one-on-one with Hot Wings. After that, he went to the kitchen and found a cake made from Baker, which was"} +{"qid": "test3121", "pid": "13455211", "query": "who won season 2 of real chance of love", "answer": "Hot Wings", "passage": "\"Real Chance of Love (season 2)\"\nday, Pocahontas felt nervous about what happen last night. Later, both Real and Chance met the girls on the dock. Chance tells Mamacita that she would go on a yacht with him, while Hot Wings will have her date later, going back to the limo. Real then became his early elimination, choosing Sassy to stay and have her date later with Real, leaving Doll and Pocahontas as his bottom two. He ultimately eliminated Pocahontas. This shocks her dearly, letting Doll on the yacht and waterskiing with Mamacita and Chance. That night, Real and Chance had dates with Doll and Mamacita,"} +{"qid": "test3121", "pid": "13455206", "query": "who won season 2 of real chance of love", "answer": "Doll", "passage": "\"Real Chance of Love (season 2)\"\nand Chance's parents Claudia and Robert are coming to visit. All the girls get to meet the parents during the barbecue. Real announced that he and his girls will have a date that night with the parents while Chance and his girls will have a date tomorrow with the parents. Real took Doll, Pocahontas, and Sassy to the baseball park for their date that night for three of the girls to meet their parents. Each girl have one-on-one time with the parents. When asked if Sassy would be a good fit for Real, Pocahontas stressed that she doesn't have a"} +{"qid": "test3123", "pid": "17562985", "query": "which nfl coach has the most superbowl rings", "answer": "Bill Belichick", "passage": "\"Active NFL head coach career Super Bowl history\"\nActive NFL head coach career Super Bowl history There are 32 head coaches in the National Football League (NFL) for the 32 respective teams. Twenty-one of the current head coaches have won at least one Super Bowl as either a head coach, assistant coach, or as a player throughout their career in the NFL while all but 5 have participated in at least one. Bill Belichick has the most Super Bowl wins throughout his career among active head coaches with 7 (5 as a head coach and 2 as a defensive coordinator), as well the most losses with 4 (3"} +{"qid": "test3123", "pid": "8800170", "query": "which nfl coach has the most superbowl rings", "answer": "Bill Belichick", "passage": "\"Mike Woicik\"\nMike Woicik Mike Woicik (born September 26, 1956) is an American football strength and conditioning coach for the Dallas Cowboys of the National Football League (NFL). He holds the record for second-most Super Bowl rings won by a coach (behind Bill Belichick) with six, winning three with the Cowboys and three with the New England Patriots. Woicik has also authored a book \"\"Total Conditioning for Football: The Syracuse Way\"\" (1985). Woicik graduated from Westwood High School in Westwood, Massachusetts before attending Boston College where he earned a bachelor's degree in history. He then went to Springfield College to receive his"} +{"qid": "test3123", "pid": "20044015", "query": "which nfl coach has the most superbowl rings", "answer": "Bill Belichick", "passage": "\"Associated Press NFL Coach of the Year Award\"\nMiami Dolphins. Chuck Knox and Bill Belichick have each been awarded three times. The incumbent AP NFL Coach of the Year is Sean McVay, who led the Los Angeles Rams to the playoffs after a surprising turnaround, inheriting a team that went 4–12 the previous year and leading it to an 11–5 record and division title. Associated Press NFL Coach of the Year Award The Associated Press National Football League Coach of the Year Award is presented annually by the Associated Press (AP) to the National Football League (NFL) coach adjudged to have had the most outstanding season. It has"} +{"qid": "test3123", "pid": "20917179", "query": "which nfl coach has the most superbowl rings", "answer": "Bill Belichick", "passage": "\"Brady/Belichick Era\"\nBrady/Belichick Era The Brady/Belichick Era, as commonly referred to by sports writers and fans, is the sports dynasty formed by the quarterback/coach duo between New England Patriots quarterback Tom Brady and coach Bill Belichick. This has also been referred to as the \"\"Patriot Dynasty\"\". According to many sports analysts and writers, quarterback Tom Brady is considered one of the greatest quarterbacks in NFL history, while Belichick is considered one of the best coaches in NFL history. The duo has created and enjoyed one of the longest and most dominant dynasties in NFL history. While coached and quarterbacked by Belichick and"} +{"qid": "test3124", "pid": "2282239", "query": "turkey stuffed with a duck stuffed with a chicken", "answer": "Turducken", "passage": "Turducken\nTurducken Turducken is a dish consisting of a deboned chicken stuffed into a deboned duck, further stuffed into a deboned turkey. Outside of the United States and Canada, it is known as a three bird roast. Gooducken is a traditional English variant, replacing turkey with goose. The word \"\"turducken\"\" is a portmanteau of \"\"turkey\"\", \"\"duck\"\", and \"\"chicken\"\". The dish is a form of engastration, which is a recipe method in which one animal is stuffed inside the gastric passage of another. The thoracic cavity of the chicken/game hen and the rest of the gaps are stuffed, sometimes with a highly"} +{"qid": "test3124", "pid": "2282248", "query": "turkey stuffed with a duck stuffed with a chicken", "answer": "Turducken", "passage": "Turducken\ninside the turkey a chicken. Stuff the chicken with a grouse and inside that put a quail and finally inside that a sparrow. Then season it all well, place the camel in a hole in the ground and roast it.\"\" Turducken Turducken is a dish consisting of a deboned chicken stuffed into a deboned duck, further stuffed into a deboned turkey. Outside of the United States and Canada, it is known as a three bird roast. Gooducken is a traditional English variant, replacing turkey with goose. The word \"\"turducken\"\" is a portmanteau of \"\"turkey\"\", \"\"duck\"\", and \"\"chicken\"\". The dish is"} +{"qid": "test3124", "pid": "2282243", "query": "turkey stuffed with a duck stuffed with a chicken", "answer": "Turducken", "passage": "Turducken\nchicken stuffed with a pigeon, with sage and apple stuffing) in 1990. Multi-bird roasts are widely available. In his 1807 \"\"Almanach des Gourmands\"\", gastronomist Grimod de La Reynière presents his \"\"rôti sans pareil\"\" (\"\"roast without equal\"\")—a bustard stuffed with a turkey, a goose, a pheasant, a chicken, a duck, a guinea fowl, a teal, a woodcock, a partridge, a plover, a lapwing, a quail, a thrush, a lark, an ortolan bunting and a garden warbler—although he states that, since similar roasts were produced by ancient Romans, the \"\"rôti sans pareil\"\" was not entirely novel. The final bird is very small"} +{"qid": "test3124", "pid": "2282244", "query": "turkey stuffed with a duck stuffed with a chicken", "answer": "Turducken", "passage": "Turducken\nbut large enough to just hold an olive; it also suggests that, unlike modern multi-bird roasts, there was no stuffing or other packing placed in between the birds. \"\"Gooducken\"\" is a goose stuffed with a duck, which is in turn stuffed with a chicken. An early form of the recipe was \"\"Pandora's cushion\"\", a goose stuffed with a chicken stuffed with a quail. Another version of the dish is credited to French diplomat and gourmand Charles Maurice de Talleyrand-Périgord. The 1891 newspaper article \"\"French Legends Of The Table\"\" offers \"\"Quail a la Talleyrand\"\": The following for instance, is Talleyrand's fanciful"} +{"qid": "test3124", "pid": "2282242", "query": "turkey stuffed with a duck stuffed with a chicken", "answer": "Turducken", "passage": "Turducken\nmultiple trademark names. Dr. LaNasa's innovation and success with ballotine, Three Bird Roast and turducken began mid century, expanding in the 1960s and seventies long before many of the popular commercial Cajun/Creole chefs of today took the stage. In the United Kingdom, a turducken is a type of ballotine called a \"\"three-bird roast\"\" or a \"\"royal roast\"\". The Pure Meat Company offered a five-bird roast (a goose, a turkey, a chicken, a pheasant, and a pigeon, stuffed with sausage), described as a modern revival of the traditional Yorkshire Christmas pie, in 1989; and a three-bird roast (a duck stuffed with"} +{"qid": "test3125", "pid": "8157422", "query": "who won the first season of america's got talent", "answer": "Bianca Ryan", "passage": "\"America's Got Talent (season 1)\"\nAmerica's Got Talent (season 1) The first season of \"\"America's Got Talent\"\" premiered on June 21, 2006 and concluded on August 17, 2006. The audition tour took place in April 2006, stopping at Los Angeles, New York, and Chicago. Regis Philbin was the host for this season. David Hasselhoff, Brandy Norwood, and Piers Morgan were the judges. This season's winner was Bianca Ryan. For the audition round, each of the three judges has a red button in front of them that they can press when they do not want the act to continue; the button rings an electronic bell and"} +{"qid": "test3125", "pid": "20333170", "query": "who won the first season of america's got talent", "answer": "Bianca Ryan", "passage": "\"Darci Lynne Farmer\"\nMiddle School near her home in Edmond, Oklahoma. She missed the first day of her seventh grade year due to appearing live on \"\"America's Got Talent\"\" on August 16. Her parents are Clarke and Misty Farmer. Farmer has three brothers: Nick, Dalton, and Nate. Darci Lynne Farmer Darci Lynne Farmer (born October 12, 2004) is an American ventriloquist. She was the winner of season twelve of the NBC competition show \"\"America's Got Talent\"\". Farmer became both the third female and third child to win \"\"America's Got Talent\"\", following Bianca Ryan in season one and Grace VanderWaal in season eleven. She"} +{"qid": "test3128", "pid": "9549315", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2007 Hawaii Warriors football team\"\nlate in the fourth quarter and returned it 57 yards for the final margin. Grice-Mullen finished the game with a career-high 195 yards receiving while Bess tied the UH mark for career touchdowns after reaching the endzone twice. He now has 38, tying him with former UH quarterback Michael Carter and receiver Chad Owens. \"\"If you ask me during the game, I never know the numbers\"\" Grice-Mullen said. \"\"I may know how many touchdowns. My objective is to just go out and play the game and get a win. We've been in the system 3 or 4 years now with"} +{"qid": "test3128", "pid": "9823142", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Dolphins–Jets rivalry\"\n21, Jets quarterback Ken O'Brien and Dolphins quarterback Dan Marino put on a legendary offensive performance. The two quarterbacks combined set NFL single game records of 884 net passing yards and ten touchdown passes, records which have since been broken. Dan Marino completed 30 of 50 passes for 448 yards and six touchdown passes. Mark Duper and Mark Clayton had big games, each having over 100 yards receiving (Duper with 154, Clayton with 174). O'Brien threw for 479 yards and four touchdown passes all to wide receiver Wesley Walker, including one with no time left on the clock to force"} +{"qid": "test3128", "pid": "20699054", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2018 Kansas State Wildcats football team\"\nfootball. South Dakota quarterback Austin Simmons threw for 257 yards and one touchdown, continually finding receiver Levi Falck (11 catches, 140 yards) open against top K-State cornerback Duke Shelley. The Coyotes led 24-12 at halftime. ESPN reported \"\"... one solid takeaway is how well the Coyotes were in control for much of the game. They did a great job limiting the Kansas State offense for three quarters and had many Kansas State fans, players and coaches frustrated throughout the night.\"\" Mississippi State quarterback Nick Fitzgerald made his first appearance on the football fields since November 2017, when a foot injury"} +{"qid": "test3128", "pid": "10886827", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Tyrod Taylor\"\nNFL Draft, Taylor was drafted in the sixth round with the 180th overall pick by the Baltimore Ravens. He was the 11th quarterback to be selected that year. The Ravens played him at quarterback in spite of the fact many of the other 31 teams believed he would better be suited at wide receiver instead. He orchestrated the game-winning touchdown drive in preseason Week 3. He hit Brandon Jones for a nine-yard touchdown pass with 37 seconds remaining. After making the 53-man final roster, Taylor would win the backup quarterback position and spend his rookie season behind starting quarterback Joe"} +{"qid": "test3128", "pid": "10698494", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2006 Hawaii Bowl\"\n1992 Rainbow Warriors team that went 11–2. This game received extra attention because Hawaii quarterback Colt Brennan was poised to set the NCAA single-season record for touchdown passes in a season. Entering the game, Brennan had 53 touchdown passes, one short of University of Houston quarterback David Klingler's mark of 54 set in 1990. Brennan finished the game having completed 33-of-42 passes for 559 yards and five touchdowns, setting the new single-season record at 58. He shared MVP honors with wide receiver Jason Rivers, who tied a school mark with 14 receptions and set a record with 308 receiving yards,"} +{"qid": "test3128", "pid": "2342432", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Donovan McNabb\"\nreceiver catch a touchdown pass, the 2003 Eagles became the first NFL team since 1945 not to have gotten a touchdown pass from any of its wide receivers in the first two months of a season. McNabb finally amassed the kind of numbers that placed him firmly as one of the elite NFL quarterbacks statistically. He averaged 8.26 yards per attempt, completed 64.0% of his passes, threw 31 touchdown passes (he also ran for three more), and had only eight interceptions. These numbers translated to a passer rating of 104.7. Further, he became the first quarterback in league history to"} +{"qid": "test3128", "pid": "19662314", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"105th Grey Cup\"\n\"\"SiriusXM Kickoff Show\"\". Toronto choir Choir! Choir! Choir! sang the national anthem. Immediately following the game, Argonauts receiver DeVier Posey was named the game's Most Valuable Player, having put up 175 yards and one touchdown on seven receptions. Running back Jerome Messam of the Stampeders received the Dick Suderman Trophy as the game's Most Valuable Canadian after scoring two touchdowns. With the victory, Argonauts quarterback Ricky Ray became the first quarterback in CFL history to win the Grey Cup four times as a starting quarterback (twice with the Edmonton Eskimos and twice with the Argonauts). The game was watched by"} +{"qid": "test3128", "pid": "10154181", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Brent Celek\"\nof his career. After having a breakout year with 76 catches (a team high), 971 yards and eight touchdowns, Celek was named to the 2009 USA Today All-Joe Team. However, 11 year starting quarterback Donovan McNabb was traded, and Celek has yet to duplicate the same level of chemistry with any other quarterback. In the 2010 season, Celek caught 42 passes for 511 yards and 4 touchdowns, including a then career-long 65-yard touchdown against the New York Giants in week 15, in the Miracle at the New Meadowlands. Celek ended the season with 811 receiving yards, as quarterback Michael Vick's"} +{"qid": "test3128", "pid": "14149387", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2010 Cincinnati Bengals season\"\nthe lead as quarterback Carson Palmer found wide receiver Jordan Shipley on a 5-yard touchdown pass. New York regained the lead in the third quarter with wide receiver/quarterback Brad Smith getting a 53-yard touchdown run, followed by quarterback Mark Sanchez completing a 13-yard touchdown pass to wide receiver Santonio Holmes. Cincinnati tried to rally in the fourth quarter with a 28-yard field goal from rookie kicker Aaron Pettrey, but the Jets came right back with Smith's 89-yard kickoff return for a touchdown, followed by defensive end Trevor Pryce sacking Palmer in the endzone for safety. With the loss, the Bengals"} +{"qid": "test3128", "pid": "14149664", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2010 New York Jets season\"\n19-yard field goal from kicker Nick Folk, followed by quarterback Mark Sanchez completing a 41-yard touchdown pass to wide receiver Braylon Edwards. The Bills closed out the half with quarterback Ryan Fitzpatrick finding tight end David Martin on a 4-yard touchdown pass. New York pulled away in the third quarter as tight end Dustin Keller caught a 3-yard touchdown pass from wide receiver/quarterback Brad Smith, followed by his 2-yard touchdown reception thrown by Sanchez. Afterwards, Tomlinson's 26-yard touchdown run effectively secured the victory. Buffalo closed out the game in the fourth quarter as Fitzpatrick threw a touchdown pass to wide"} +{"qid": "test3128", "pid": "2461912", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Kurt Warner\"\nover the Green Bay Packers. The game had the highest combined total score in NFL playoff history. Warner became one of the very few quarterbacks in NFL history to throw more touchdowns (5) than incompletions (4) in a playoff game. Warner finished the game with the second highest quarterback rating in NFL playoff history with a rating of 154.1. He also became the second quarterback to throw for five touchdown passes in a playoff game twice, and the first to do so since the merger of the leagues. He is also the oldest player to have thrown that many touchdown"} +{"qid": "test3128", "pid": "9864231", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2007 New York Giants season\"\nthe game that he outplayed Favre, making another instance where he outplayed a quarterback considered far superior to him in the lead-up to the contest. Brandon Jacobs added 67 yards on 21 carries with a touchdown, while Ahmad Bradshaw ran 16 times for 63 yards and a touchdown. Plaxico Burress caught 11 passes for 151 yards. Along with his 200+ yard receiving performance in 2002 against the Falcons while a member of the Steelers, it is considered by many to be his single greatest game as a receiver. While the Giants defense didn't have a sack in this contest, they"} +{"qid": "test3128", "pid": "19072891", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"104th Grey Cup\"\nfirst 400+ performance in the game since Danny McManus in 1996), three touchdowns and one interception. Bo Levi Mitchell responded for Calgary with 28–41 passes completed for 391 yards, two touchdowns and three interceptions. Immediately following the game, Redblacks quarterback Henry Burris was named the Grey Cup's Most Valuable Player, having completed 35-of-46 passes for 461 yards and three touchdowns (while running for another two). Redblacks receiver Brad Sinopoli received the Dick Suderman Trophy as the game's Most Valuable Canadian. Burris became the oldest quarterback to ever win the Grey Cup at 41 years and 177 days. The Redblacks' victory"} +{"qid": "test3128", "pid": "16242294", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2012 Indianapolis Enforcers season\"\n2011 against Indianapolis. With the victory, the Rage collected their first ever franchise victory. The Rage were led by quarterback Nate Samas who put the first points on the board with a four-yard keeper under two minutes into the game. Samas also added five touchdowns through the air. Rage running back Joe Casey played a versatile role in the victory as well. Casey racked up two rushing touchdowns and one receiving touchdown. Wide receiver Dusten Dubose compiled three receiving touchdowns from quarterback Nate Samas and receiver Terrence Wright added one receiving touchdown. During the game, the Enforcers set a franchise"} +{"qid": "test3128", "pid": "14773496", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2002 Continental Tire Bowl\"\nto end the game. Virginia won the game, 48–22. For his performance in the 2002 Continental Tire Bowl—4 touchdowns and 203 total yards receiving and rushing—Virginia running back Wali Lundy was named the most valuable player of the game. He led the Cavaliers in both rushing—22 carries, 127 yards—and receiving—five catches, 76 yards—while scoring four touchdowns. Two other Virginia players scored multiple touchdowns in the game: quarterback Matt Schaub passed for a touchdown and ran for a touchdown, while wide receiver and backup quarterback Marques Hagans passed for a touchdown and ran back a punt for a touchdown. Schaub led"} +{"qid": "test3128", "pid": "14176528", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2010 Denver Broncos season\"\nsecond quarter, the Broncos grabbed the lead in the third quarter, when quarterback Tim Tebow scrambled for a 1-yard touchdown run, followed in the fourth quarter by a 32-yard field goal by placekicker Matt Prater. However, the Broncos suddenly fell behind, with 49ers' quarterback Troy Smith scrambling for a 1-yard touchdown run, followed by his 28-yard touchdown pass to wide receiver Michael Crabtree, and a 3-yard touchdown run by running back Frank Gore. The Broncos tried to rally when quarterback Kyle Orton threw a 1-yard touchdown pass to wide receiver Brandon Lloyd (with a blocked extra-point attempt), but San Francisco's"} +{"qid": "test3128", "pid": "7801945", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Superbowl of Wrestling\"\nSuperbowl of Wrestling The Superbowl of Wrestling was an event held in the 1970s. It was one of the first professional wrestling \"\"Supercards\"\". The first Superbowl of Wrestling was held in Cleveland, Ohio at Municipal Stadium on August 12, 1972. Three rings were set up, side by side, and often more than one match would be going on at a time. Attendance figures have been estimated as high as 20,000 and as low as 5,000. No reliable sources seem to agree on a number. Here are partial results of the show: Another Superbowl of Wrestling was held on January 25,"} +{"qid": "test3128", "pid": "7801946", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Superbowl of Wrestling\"\n1978. This Superbowl of Wrestling was held at the Orange Bowl in Miami, Florida, drawing over 12,000 fans for a unification match between the WWWF and NWA World Championships. Here are the results: Superbowl of Wrestling The Superbowl of Wrestling was an event held in the 1970s. It was one of the first professional wrestling \"\"Supercards\"\". The first Superbowl of Wrestling was held in Cleveland, Ohio at Municipal Stadium on August 12, 1972. Three rings were set up, side by side, and often more than one match would be going on at a time. Attendance figures have been estimated as"} +{"qid": "test3128", "pid": "14131437", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"Cincinnati Commandos\"\nfinish jumping out to 21-0 lead and 27-7 halftime lead. Cincinnati scored just once in the third quarter before adding three more scores in the final stanza. Cincinnati was led by two quarterbacks. Starting quarterback Tyler Sheehan was 11 of 20 for 135 yards and two touchdowns. Fellow quarterback and 2010 CIFL MVP Ben Mauk was nine of 15 for 102 yards and four touchdowns. The passing was spread around to seven receivers. The top receiver was Keynes Mincy with six receptions for 64 yards and two touchdowns. Other receivers include Brandon Boehm wo had three catches for 50 yards;"} +{"qid": "test3128", "pid": "12731092", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2009 Orange Bowl\"\nPike emerged as Cincinnati's sole starting quarterback. He finished the regular season having completed 183 of 291 pass attempts for 2,168 yards, 18 touchdowns, and 7 interceptions. He ranked second in the Big East and 29th nationally in passing efficiency with a passer rating of 141.07. Among Cincinnati receivers, there was none of the uncertainty that afflicted the Bearcats' quarterbacks. Wide receiver Mardy Gilyard caught 74 passes during the regular season, setting a Cincinnati record with 1,118 receiving yards. He also had 10 touchdowns during the season, leading all Cincinnati players. Gilyard also played as the Bearcats' primary kick returner."} +{"qid": "test3128", "pid": "9855567", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2007 Washington Redskins season\"\nquarterback Kurt Warner completed a 2-yard touchdown pass to wide receiver Anquan Boldin (with a failed PAT). In the third quarter, Washington increased its lead with Portis getting a 1-yard touchdown run for the only score of the quarter. In the fourth quarter, the Cardinals managed to get within striking distance as quarterback Warner and wide receiver Boldin hooked up on a 10-yard touchdown pass. Afterwards, the Cardinals got within two points with quarterback Tim Rattay completing a 1-yard touchdown pass to tight end Leonard Pope (with a failed 2-point conversion). Later, the Cardinals managed to recover its onside kick"} +{"qid": "test3128", "pid": "12844548", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2009 Green Bay Packers season\"\nquarterback Aaron Rodgers completed a 64-yard touchdown pass to wide receiver Greg Jennings and a 7-yard touchdown pass to wide receiver Jordy Nelson. Afterwards, Crosby would end the half with a 27-yard field goal. San Francisco would begin to rally in the third quarter as quarterback Alex Smith completed a 38-yard touchdown pass to wide receiver Michael Crabtree, yet the Packers would answer in the fourth quarter as running back Ryan Grant got a 1-yard touchdown run. The 49ers tried to come back as Smith threw a 24-yard touchdown pass to tight end Vernon Davis and a 10-yard touchdown pass"} +{"qid": "test3128", "pid": "18397195", "query": "how many quarterbacks have a receiving touchdown in the superbowl", "answer": "1", "passage": "\"2015 Chicago Bears season\"\nfeaturing quarterback Aaron Rodgers and tailback Eddie Lacy. The Rodgers-led Packers, who led the NFC North in touchdowns with 58, along with having the highest average yards per play (6.17) in the NFL in 2014, also provided a challenge for the Bears defensive backs; blitzing Rodgers was also a liability, as he had a league-best 130.4 rating with 15 touchdowns and one interception against the blitz. However, the Packers did not have receiver Jordy Nelson, who had caught 13 touchdowns in 2014, as he had suffered an ACL tear during the preseason. quarterback David Fales, cornerback Tracy Porter, runningback Ka'Deem"} +{"qid": "test3129", "pid": "14492779", "query": "when did ga state get a football team", "answer": "2010", "passage": "\"Kenneth Sola\"\nfor the team on 17 April 2010 in the team's 2010 season opener against the Pittsburgh Riverhounds. Kenneth Sola Kenneth Sola (born 25 August 1985) is a Norwegian footballer who plays as a defender for Sandnes Ulf. Sola was born in Stavanger and played for IL Havdur, Viking FK and Skeid, before moving to the Norwegian First Division side Stavanger IF in 2006. He played two Norwegian Cup matches for Viking, did no get any caps in the Tippeligaen. He played 82 goals and scored 15 goals for Stavanger IF. Sola relocated to the United States in 2010 when he"} +{"qid": "test313", "pid": "20621459", "query": "when did fortnite battle royal come out on xbox", "answer": "September 2017", "passage": "\"Fortnite Battle Royale\"\nFortnite Battle Royale Fortnite Battle Royale is a free-to-play battle royale video game developed and published by Epic Games. It was released as an early access game for Microsoft Windows, macOS, PlayStation 4 and Xbox One in September 2017, and for iOS, Nintendo Switch, and Android in 2018. It is a spin-off from Epic's \"\"\"\", a cooperative survival game with construction elements. As a battle royale game, \"\"Fortnite Battle Royale\"\" features up to a hundred players, either alone, in duos, or in squads of up to four players, attempting to be the last player or group alive by killing other"} +{"qid": "test313", "pid": "20621478", "query": "when did fortnite battle royal come out on xbox", "answer": "September 2017", "passage": "\"Fortnite Battle Royale\"\nto help players with rapidly constructing temporary bases. In those two months of development, Epic's plan was to include \"\"Battle Royale\"\" within the paid \"\"Fortnite\"\" game, and originally announced this approach publicly in early September 2017. Only two weeks before it was released did Epic decide to make it a separate free-to-play title, fearing that having it as part of the paid package would slow down the growth of the title. Epic announced this change formally about a week after first announcing \"\"Battle Royale\"\", allowing those that had purchased early access to \"\"Fortnite\"\" in anticipation of this mode to request"} +{"qid": "test313", "pid": "20785607", "query": "when did fortnite battle royal come out on xbox", "answer": "September 2017", "passage": "Fortnite\n\"\"Fortnite Battle Royale\"\", the player-versus-environment mode was distinguished as \"\"Save the World\"\". Near the same time that Epic released \"\"Fortnite\"\" into early access, \"\"PlayerUnknown's Battlegrounds\"\" had become a worldwide phenomenon, having sold over 5 million copies three months from its March 2017 release, and drawing strong interest in the battle royale genre. Epic recognized that with the \"\"Fortnite\"\" base game, they could also do a battle royale mode, and rapidly developed their own version atop \"\"Fortnite\"\" in about two months. By September 2017, Epic was ready to release this as a second mode from \"\"Save the World\"\" in the paid-for"} +{"qid": "test313", "pid": "20138259", "query": "when did fortnite battle royal come out on xbox", "answer": "September 2017", "passage": "\"Battle royale game\"\ngame for ease of maintenance of the overall game. \"\"Battlegrounds\"\"s popularity created a new interest in the battle royale genre. Numerous games that copied the fundamental gameplay of \"\"Battlegrounds\"\" appeared in China, shortly after \"\"Battlegrounds\"\"s release. Epic Games had released \"\"Fortnite\"\", a cooperative survival game, into early access near the release of \"\"Battlegrounds\"\". Epic saw the potential to create their own battle royale mode, and by September 2017, released the free-to-play \"\"Fortnite Battle Royale\"\" which combined some of the survival elements and mechanics from the main \"\"Fortnite\"\" game with the Battle Royale gameplay concept. The game has seen similar player"} +{"qid": "test313", "pid": "2922249", "query": "when did fortnite battle royal come out on xbox", "answer": "September 2017", "passage": "\"Epic Games\"\nEdition\"\" on April 7, 2017, published by Gearbox Software. By July 2017, \"\"Fortnite\"\" was finally in a state for public play. Epic launched the title through a paid early access then, with a full free-to-play release expected in 2018. Following on the popularity of \"\"PlayerUnknown's Battlegrounds\"\", a battle royale game released earlier in 2017, Epic developed a variant of \"\"Fortnite\"\" called \"\"Fortnite Battle Royale\"\", which was released in September 2017 as a free-to-play title across computer, console, and mobile platforms. \"\"Fortnite Battle Royale\"\" quickly gained an audience, amassing over 125 million players by May 2018 with estimates of having earned"} +{"qid": "test313", "pid": "20789673", "query": "when did fortnite battle royal come out on xbox", "answer": "September 2017", "passage": "\"Battle pass\"\nthe game, introducing a permanent form of one with their \"\"Dota Plus\"\" subscription feature in 2018. The popularity of battle passes grew in 2018 with the use in Epic Games's \"\"Fortnite Battle Royale\"\", which released in September 2017. The free-to-play \"\"Fortnite Battle Royale\"\" adopted a \"\"season\"\"-driven release schedule, each season lasting 10 weeks, during which they offered a new set of cosmetic items and emotes. The battle pass approach was added starting in its second season, during a time when the game was seeing a large growth in its player base, and has been used by the game since. Battle"} +{"qid": "test3131", "pid": "18589436", "query": "who plays heather in beauty and the beast", "answer": "Nicole Gale Anderson", "passage": "\"Beauty & the Beast (season 3)\"\nmoved by The CW to June 11, 2015. Nicole Gale Anderson, who has been recurring as Heather Chandler for the past two seasons, was upgraded to series regular for season three. Alan Van Sprang and Natasha Henstridge played recurring characters this season Bob and Carol, married Professional Homeland Security Agents whose relationship mirrors that of Vincent and Catherine's. Charlotte Arnold guest starred in the season premiere as Marissa, a distraught Midwestern woman whose stockbroker husband suddenly begins displaying erratic, violent behavior. Jason Gedrick also appeared this season as Liam, who poses a threat to Catherine and Vincent. Brandon Gill guest"} +{"qid": "test3131", "pid": "13140541", "query": "who plays heather in beauty and the beast", "answer": "Nicole Gale Anderson", "passage": "\"Nicole Gale Anderson\"\noffered Anderson the role of Macy. Anderson was added to the cast of the television series \"\"Beauty & the Beast\"\" in March 2012, playing the recurring role of Heather Chandler, Catherine's (Kristin Kreuk) younger sister. In May 2013, it was announced that Anderson had joined \"\"Ravenswood\"\", a \"\"Pretty Little Liars\"\" spin-off, as Miranda Collins, a foster kid, who relies on her wits to cover her emotional scars. Prior to appearing in \"\"Ravenswood\"\", Anderson appeared in the \"\"Pretty Little Liars\"\" episode \"\"Grave New World\"\", introducing her character, Miranda Collins. After the cancellation of \"\"Ravenswood\"\", Anderson returned for the third"} +{"qid": "test3131", "pid": "13140542", "query": "who plays heather in beauty and the beast", "answer": "Nicole Gale Anderson", "passage": "\"Nicole Gale Anderson\"\nseason of \"\"Beauty & the Beast\"\" as a regular cast member. Gale served as the first international spokesperson for Underwriters Laboratories Youth Safety Smart program and has participated in Disney's Friends for Change. Nicole Gale Anderson Nicole Gale Anderson (born August 29, 1990) is a Filipino-American actress. She is best known for her role as Heather Chandler on The CW series \"\"Beauty & the Beast\"\". She is also known for her roles as Macy Misa in the Disney Channel Original Series \"\"Jonas\"\", and as Kelly Parker and Miranda Collins respectively on the ABC Family series \"\"Make It or Break It\"\""} +{"qid": "test3131", "pid": "13140539", "query": "who plays heather in beauty and the beast", "answer": "Nicole Gale Anderson", "passage": "\"Nicole Gale Anderson\"\nNicole Gale Anderson Nicole Gale Anderson (born August 29, 1990) is a Filipino-American actress. She is best known for her role as Heather Chandler on The CW series \"\"Beauty & the Beast\"\". She is also known for her roles as Macy Misa in the Disney Channel Original Series \"\"Jonas\"\", and as Kelly Parker and Miranda Collins respectively on the ABC Family series \"\"Make It or Break It\"\" and \"\"Ravenswood\"\". Anderson was born in Rochester, Indiana. Her father is an American who served as a Commander in the United States Navy, and her mother is of Filipino ethnicity. As a child,"} +{"qid": "test3132", "pid": "687599", "query": "who is the head of the department of homeland security 2017", "answer": "Kirstjen Nielsen", "passage": "\"United States Department of Homeland Security\"\nafter the Departments of Defense and Veterans Affairs. Homeland security policy is coordinated at the White House by the Homeland Security Council. Other agencies with significant homeland security responsibilities include the Departments of Health and Human Services, Justice, and Energy. The former Secretary, John F. Kelly, was replaced by Secretary Kirstjen Nielsen on December 5, 2017. Whereas the Department of Defense is charged with military actions abroad, the Department of Homeland Security works in the civilian sphere to protect the United States within, at, and outside its borders. Its stated goal is to prepare for, prevent, and respond to domestic"} +{"qid": "test3132", "pid": "1685795", "query": "who is the head of the department of homeland security 2017", "answer": "Kirstjen Nielsen", "passage": "\"United States Secretary of Homeland Security\"\nHomeland Security is Kirstjen Nielsen following the appointment of the then-incumbent secretary, John F. Kelly, to the post of White House Chief of Staff by President Donald Trump. It was announced on October 12, 2017, that Kirstjen Nielsen was nominated as Secretary of the Department of Homeland Security by President Donald Trump. She was confirmed by the Senate on December 5, 2017. Traditionally, the order of the presidential line of succession is determined (after the Vice President, Speaker of the House, and President pro tempore of the Senate) by the order of the creation of the cabinet positions, and the"} +{"qid": "test3133", "pid": "2039226", "query": "who has the most gold gloves at shortstop", "answer": "Ozzie Smith", "passage": "\"Rawlings Gold Glove Award\"\nwith 16 Gold Gloves, and is tied for the second-highest total overall with pitcher Jim Kaat, who won his 16 awards consecutively. Iván Rodríguez has won the most Gold Gloves as a catcher, with 13 career awards in the American League. Ozzie Smith has 13 wins at shortstop; he and Rodríguez are tied for the fourth-highest total among all winners. Among outfielders, Roberto Clemente and Willie Mays, who played primarily right field and center field, respectively, are tied for the lead with 12 Gold Gloves. Keith Hernandez, the leader at first base, has won 11 times, and Roberto Alomar leads"} +{"qid": "test3133", "pid": "3130889", "query": "who has the most gold gloves at shortstop", "answer": "Ozzie Smith", "passage": "\"Jay Bell\"\naverage but he had a great knowledge of the hitters and positioned himself well. He won a Gold Glove Award in 1993, breaking a string of thirteen straight National League Gold Gloves at shortstop by Ozzie Smith. It was also the first Gold Glove by a Pirate shortstop since Gene Alley's back-to-back honors in 1966 and 1967. Though mostly a singles and doubles hitter at first, Bell was also an expert at bunting. Bell did show early signs of his power potential hitting 21 home runs in 1997 and 20 in 1998. A trial switch to second base at end"} +{"qid": "test3133", "pid": "304898", "query": "who has the most gold gloves at shortstop", "answer": "Ozzie Smith", "passage": "\"Ozzie Smith\"\ntime, Smith appeared in a 1992 episode of \"\"The Simpsons\"\" titled \"\"Homer at the Bat\"\". Smith became a free agent for the first time in his career on November 2, 1992, only to sign a new contract with the Cardinals on December 6. Smith won his final Gold Glove in 1992, and his 13 consecutive Gold Gloves at shortstop in the National League has yet to be matched. The 1993 season marked the only time between 1981 and 1996 that Smith failed to make the All-Star team, and Smith finished the 1993 season with a .288 batting average and .974"} +{"qid": "test3133", "pid": "304864", "query": "who has the most gold gloves at shortstop", "answer": "Ozzie Smith", "passage": "\"Ozzie Smith\"\nOzzie Smith Osborne Earl Smith (born December 26, 1954) is an American former baseball shortstop who played in Major League Baseball (MLB) for the San Diego Padres and St. Louis Cardinals from 1978 to 1996. Nicknamed \"\"The Wizard\"\" for his defensive brilliance, Smith set major league records for career assists (8,375) and double plays (1,590) by a shortstop (the latter since broken by Omar Vizquel), as well as the National League (NL) record with 2,511 career games at the position; Smith won the NL Gold Glove Award for play at shortstop for 13 consecutive seasons (1980–92). A 15-time All-Star, he"} +{"qid": "test3136", "pid": "12181904", "query": "who can be called a man of god", "answer": "prophets", "passage": "Twelver\nways the speech of God reaches to man, by revelation or divine inspiration; behind a veil, man can hear God's speech but can not hear him; or by a messenger, an angel conveys the inspiration to the man. By the verses 72:26–28 two types of guardians protect the integrity of the revelation: an angel who protects the prophet against any kind of error, God who protects the angels and the prophets. Tabataba'i defines the miracle as a supernatural event which is shown by the prophet and the friends of God as a challenge to prove the claim of the prophethood"} +{"qid": "test3137", "pid": "4243060", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Battle of Greece\"\ninvasion courses were located west of Kyustendil; another was along the Yugoslav-Bulgarian border, via the Struma river valley to the south. Greek border fortifications had been adapted for the terrain and a formidable defence system covered the few available roads. The Struma and Nestos rivers cut across the mountain range along the Greek-Bulgarian frontier and both of their valleys were protected by strong fortifications, as part of the larger Metaxas Line. This system of concrete pillboxes and field fortifications, constructed along the Bulgarian border in the late 1930s, was built on principles similar to those of the Maginot Line. Its"} +{"qid": "test3137", "pid": "277829", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Maginot Line\"\nLine along the Italian border, which \"\"demonstrated the effectiveness of the fortifications ... when properly employed.\"\" Footnotes Books Journals Maginot Line The Maginot Line (, ), named after the French Minister of War André Maginot, was a line of concrete fortifications, obstacles, and weapon installations built by France in the 1930s to deter invasion by Germany and force them to move around the fortifications. Constructed on the French side of its borders with Italy, Switzerland, Germany, and Luxembourg, the line did not extend to the English Channel due to French strategy that envisioned a move into Belgium to counter a"} +{"qid": "test3137", "pid": "15263256", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Fortified Sector of Colmar\"\nFortified Sector of Colmar The Fortified Sector of Colmar (\"\"Secteur Fortifié de Colmar\"\") was the French military organization that in 1940 controlled the section of the French frontier with Germany in the vicinity of Colmar. The fortifications were built as part of France's Maginot Line defensive strategy, but the sector lacks the large interconnected fortifications found along France's land border with Germany. The sector's principal defense was the Rhine itself, which could be crossed only by boat or by seizing a bridge crossing. The sector's fortifications chiefly took the form of casemates and blockhouses. The SF Colmar was flanked to"} +{"qid": "test3137", "pid": "11528014", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Séré de Rivières system\"\nneighbouring fortifications, foreshadowing the connected systems of the Maginot Line. The so-called \"\"travaux de 17\"\" (built in 1917) foreshadowed this advance as well. Séré de Rivières system The Séré de Rivières system was named after Raymond Adolphe Séré de Rivières, its originator. The system was an ensemble of fortifications built from 1874 along the frontiers and coasts of France. The fortresses were obsolescent by 1914 but were still used during the First World War. Following the Franco-Prussian War of 1870–1871, France found itself seriously weakened and isolated from the rest of Europe, menaced by Germany and stung by the loss"} +{"qid": "test3137", "pid": "3494937", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Stalin Line\"\nStalin Line The Stalin Line was a line of fortifications along the western border of the Soviet Union. Work began on the system in the 1920s to protect the USSR against attacks from the West. The line was made up of concrete bunkers and gun emplacements, somewhat similar to, but less elaborate than the Maginot Line. It was not a continuous line of defense along the entire border, but rather a network of fortified districts, meant to channel potential invaders along certain corridors. In the aftermath of the Molotov–Ribbentrop Pact, with the westward expansion of the USSR in 1939 and"} +{"qid": "test3137", "pid": "3494940", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Stalin Line\"\nStalin Line The Stalin Line was a line of fortifications along the western border of the Soviet Union. Work began on the system in the 1920s to protect the USSR against attacks from the West. The line was made up of concrete bunkers and gun emplacements, somewhat similar to, but less elaborate than the Maginot Line. It was not a continuous line of defense along the entire border, but rather a network of fortified districts, meant to channel potential invaders along certain corridors. In the aftermath of the Molotov–Ribbentrop Pact, with the westward expansion of the USSR in 1939 and"} +{"qid": "test3137", "pid": "11572662", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Italian invasion of France\"\nand ten infantry bunkers. In the Fortified Sector of the Maritime Alps, the terrain was less rugged and presented the best possible invasion route for the Italians. In this area, long between the coast and the more impenetrable mountains, the French constructed 13 artillery bunkers and 12 infantry forts. Along the border, in front of the above main fortifications, numerous blockhouses and casemates had been constructed. However, by the outbreak of the war some of the Little Maginot Line's positions had yet to be completed and overall the fortifications were smaller and weaker than those in the main Maginot Line."} +{"qid": "test3137", "pid": "15293346", "query": "a system of fortifications along france's border", "answer": "Maginot Line", "passage": "\"Casemate d'Esch\"\nCasemate d'Esch The Casemate d'Esch is a pre-World War II fortified position near the German frontier in extreme northeastern France. Built in 1931, the casemate was part of an extension of the Maginot Line fortifications along France's border with Germany. As a unit of the Fortified Sector of Haguenau, the casemate was part of French defenses during the Battle of France, but saw no combat in 1940. The area was the scene of intense fighting between German and American forces in 1945. The casemate with the marks of the 1945 combat has been preserved and is part of a museum"} +{"qid": "test3138", "pid": "13401801", "query": "who wrote ain't living long like this", "answer": "Rodney Crowell", "passage": "\"Ain't Living Long Like This\"\nAin't Living Long Like This Ain't Living Long Like This is the debut studio album by American country music singer-songwriter Rodney Crowell, released in 1978 by Warner Bros. Records. It failed to enter the Top Country Albums chart. The songs, \"\"Elvira\"\", \"\"Baby Better Start Turnin' 'Em Down\"\" and \"\"(Now and Then, There's) A Fool Such as I\"\" were released as singles but they all failed to chart within the top 40. Despite this, \"\"Ain't Living Long Like This\"\" is considered one Crowell's best and most influential albums. Brett Hartenbach of Allmusic says it \"\"\"\"not only showcases his songwriting prowess, but"} +{"qid": "test3138", "pid": "13401805", "query": "who wrote ain't living long like this", "answer": "Rodney Crowell", "passage": "\"Ain't Living Long Like This\"\na top ten hit. Willie Nelson, Ricky Skaggs, Emmylou Harris and Nicolette Larson sang background vocals on several of the tracks. All tracks composed by Rodney Crowell; except where indicated Side 1 Side 2 Ain't Living Long Like This Ain't Living Long Like This is the debut studio album by American country music singer-songwriter Rodney Crowell, released in 1978 by Warner Bros. Records. It failed to enter the Top Country Albums chart. The songs, \"\"Elvira\"\", \"\"Baby Better Start Turnin' 'Em Down\"\" and \"\"(Now and Then, There's) A Fool Such as I\"\" were released as singles but they all failed to"} +{"qid": "test3138", "pid": "4924762", "query": "who wrote ain't living long like this", "answer": "Rodney Crowell", "passage": "\"Rodney Crowell\"\n1978, released his debut album, \"\"Ain't Living Long Like This\"\". His debut album, as well his following two albums, \"\"But What Will the Neighbors Think\"\" and \"\"Rodney Crowell\"\", were not commercially successful despite garnering a huge cult following. Crowell himself criticized his debut album for not translating onto vinyl the same clarity and energy he felt in the studio. His single \"\"Ashes by Now\"\" from \"\"But What Will the Neighbors Think\"\" reached No. 37 on the Billboard Hot 100 in 1981. Though he had already several country hits by artists covering his songs (including \"\"Ain't Living Long Like This\"\" by"} +{"qid": "test3138", "pid": "9047821", "query": "who wrote ain't living long like this", "answer": "Rodney Crowell", "passage": "\"It's Only Rock & Roll (Waylon Jennings album)\"\n1987. The single \"\"Breakin' Down\"\" also made the Top 10. Jennings contributed two songs for the LP: \"\"Let Her Do the Walking,\"\" which he wrote himself, and the reflective \"\"No Middle Ground,\"\" which he composed with Gary Scruggs. Songwriter Rodney Crowell, who had written Jennings' number 1 song \"\"I Ain't Living Long Like This\"\" and had become one of the singer's favorite writers, has two songwriting credits, including the title track and the ballad \"\"Angel Eyes\"\". Jennings' wife Jessi Colter, Marcia Beverly, and Jerry Gropp provide harmony vocals on the LP. Understandably, considering his condition at the time, Jennings was"} +{"qid": "test3138", "pid": "9385099", "query": "who wrote ain't living long like this", "answer": "Rodney Crowell", "passage": "\"Who I Am (Alan Jackson album)\"\nwriter Rodney Crowell, whose version can be found on his 1977 debut \"\"Ain't Living Long Like This\"\". In addition, \"\"Thank God for the Radio\"\" was a Number One hit in 1984 for The Kendalls from their album \"\"Movin' Train\"\". Jackson re-recorded \"\"Let's Get Back to Me and You\"\" for his 2013 release, \"\"The Bluegrass Album\"\". Note Compiled from the album's liner notes. \"\"Who I Am\"\" peaked at #5 on the U.S. \"\"Billboard\"\" 200 and #1 on the Top Country Albums selling 102,000 copies, becoming Alan Jackson's second #1 country album. In January 1999, \"\"Who I Am\"\" was certified 4× Platinum"} +{"qid": "test3138", "pid": "8933690", "query": "who wrote ain't living long like this", "answer": "Rodney Crowell", "passage": "\"What Goes Around Comes Around\"\nseventies closed, Richie moved formally into producing me. \"\"What Goes Around Comes Around\"\" and \"\"Music Man\"\" were bookends of my music in overdrive.\"\" \"\"I Ain't Living Long Like This\"\", a song written by Rodney Crowell, reached the top of the country charts and played off Jennings' 1977 drug bust for cocaine possession, with the singer recalling in the audio version of his autobiography \"\"Waylon\"\": The album contains several cuts written by songwriters who helped shape the outlaw movement in the 1970s, including Shel Silverstein, who collaborated with Jennings on the waltz \"\"It's the World's Gone Crazy\"\" (\"\"The villains have turned"} +{"qid": "test3139", "pid": "6116640", "query": "what is the name of the skin between your nostrils", "answer": "the nasal septum", "passage": "\"Pompom (goldfish)\"\nPompom (goldfish) Pompoms or pompon or hana fusa are a type of fancy goldfish that have bundles of loose fleshy outgrowths between the nostrils, on each side of the head. The pompom has a similar body shape and finnage to the lionhead or Oranda but instead of supporting a headgrowth it has nasal outgrowths. The extent of the nasal outgrowths, which are enlargements of the nasal septum, vary in pompom goldfish. In some, the outgrowths hang down past the mouth. These skin outgrowths around the nostrils of pompoms are developed through selective breeding. Pompoms may have either metallic or nacreous"} +{"qid": "test3139", "pid": "1800641", "query": "what is the name of the skin between your nostrils", "answer": "septum", "passage": "\"Nose piercing\"\nBengal still keep this tradition. This practice is now declining as many women prefer the nose studs. In southern Nepal the septum piercing is still common. Many older women still adorn their noses with both the septum and left nostril rings. Many women have gold nose piercings to show their social, tribal, and religious status in society. The septum or nasal septum is the cartilaginous wall that divides the two nostrils. The cartilage is, however, usually not pierced. It is the thin strip of very soft and flexible skin, just between the cartilage and the bottom of the nose, where"} +{"qid": "test3141", "pid": "3278966", "query": "when does monday night raw come on hulu", "answer": "the following day", "passage": "\"WWE Heat\"\nnights, being taped earlier in the week after Raw. It was the second primary program of the WWF's weekly television show line-up, serving as a supplement to the \"\"Monday Night Raw\"\" program. \"\"Heat\"\" would feature a format similar to that of \"\"Monday Night Raw\"\" in that continuing feuds from the previous week would progress during the show, and the following day's \"\"Monday Night Raw\"\" would be heavily promoted. On scheduled WWF pay-per-view event nights, \"\"Heat\"\" would also serve as a preview show to the events. The show was initially signed for only 6 episodes but was very popular and was"} +{"qid": "test3141", "pid": "2556882", "query": "when does monday night raw come on hulu", "answer": "the following day", "passage": "\"WWE Raw\"\nJune 26, 2018, WWE and USA Network announced a five-year contract extension for \"\"Raw\"\". The new agreement for the live, weekly three-hour block will commence in October 2019. On September 24, 2012, Hulu Plus signed a multi-year deal with WWE to stream all of the company’s TV shows and some of its web series which includes \"\"Raw\"\". Episodes of \"\"Raw\"\" are available for viewing the following day as a condensed 90 minute version is available, not the full version as shown the previous night on the USA Network. As of December 9, 2016, all episodes of \"\"Raw\"\" are available on"} +{"qid": "test3143", "pid": "195132", "query": "what is the breakdown product formed when one phosphate group is removed from atp", "answer": "adenosine diphosphate (ADP)", "passage": "Hydrolysis\nof energy for two main purposes: the biosynthesis of micro and macromolecules, and the active transport of ions and molecules across cell membranes. The energy derived from the oxidation of nutrients is not used directly but, by means of a complex and long sequence of reactions, it is channelled into a special energy-storage molecule, adenosine triphosphate (ATP). The ATP molecule contains pyrophosphate linkages (bonds formed when two phosphate units are combined together) that release energy when needed. ATP can undergo hydrolysis in two ways: the removal of terminal phosphate to form adenosine diphosphate (ADP) and inorganic phosphate, or the removal"} +{"qid": "test3143", "pid": "2861108", "query": "what is the breakdown product formed when one phosphate group is removed from atp", "answer": "adenosine diphosphate (ADP)", "passage": "Glucokinase\nthe contexts of medicine and mammalian physiology. Another mammalian glucose kinase, ADP-specific glucokinase, was discovered in 2004. The gene is distinct and similar to that of primitive organisms. It is dependent on ADP rather than ATP (suggesting the possibility of more effective function during hypoxia), and the metabolic role and importance remain to be elucidated. The principal substrate of physiologic importance of glucokinase is glucose, and the most important product is glucose-6-phosphate (G6P). The other necessary substrate, from which the phosphate is derived, is adenosine triphosphate (ATP), which is converted to adenosine diphosphate (ADP) when the phosphate is removed. The"} +{"qid": "test3143", "pid": "10163752", "query": "what is the breakdown product formed when one phosphate group is removed from atp", "answer": "adenosine diphosphate (ADP)", "passage": "\"Bioenergetic systems\"\nis broken down, energy is required to rebuild or resynthesize it. The building blocks of ATP synthesis are the by-products of its breakdown; adenosine diphosphate (ADP) and inorganic phosphate (Pi). The energy for ATP resynthesis comes from three different series of chemical reactions that take place within the body. Two of the three depend upon the type of food eaten, whereas the other depends upon a chemical compound called phosphocreatine. The energy released from any of these three series of reactions is coupled with the energy needs of the reaction that resynthesizes ATP. The separate reactions are functionally linked together"} +{"qid": "test3145", "pid": "1451410", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Somatic cell nuclear transfer\"\nearly embryonic development in human SCNT. There is also the potential for treating diseases associated with mutations in mitochondrial DNA. Recent studies show SCNT of the nucleus of a body cell afflicted with one of these diseases into a healthy oocyte prevents the inheritance of the mitochondrial disease. This treatment does not involve cloning but would produce a child with three genetic parents. A father providing a sperm cell, one mother providing the egg nucleus and another mother providing the enucleated egg cell. In 2018, the first successful cloning of primates using somatic cell nuclear transfer, the same method as"} +{"qid": "test3145", "pid": "17605703", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Angiocrine growth factors\"\nwere transplanted into the liver and kidney of mice and found became indistinguishable from existing endothelial cells. In a clinical setting the cells must be immunocompatible with the recipient patient. They could be derived from the patient's embryonic pluripotent stem cells as well as by somatic cell nuclear transfer (SCNT). In SCNT the nucleus is introduced into a human egg producing embryonic stem cells that are a genetic match of the patient. Another approach takes cells discarded after a diagnostic prenatal amniocentesis. Additional preclinical investigation is required before investigation with humans. Angiocrine growth factors Angiocrine growth factors are molecules found"} +{"qid": "test3145", "pid": "110750", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Dolly (sheep)\"\nand had three mothers: one provided the egg, another the DNA, and a third carried the cloned embryo to term. She was created using the technique of somatic cell nuclear transfer, where the cell nucleus from an adult cell is transferred into an unfertilized oocyte (developing egg cell) that has had its cell nucleus removed. The hybrid cell is then stimulated to divide by an electric shock, and when it develops into a blastocyst it is implanted in a surrogate mother. Dolly was the first clone produced from a cell taken from an adult mammal. The production of Dolly showed"} +{"qid": "test3145", "pid": "182090", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Human cloning\"\nLanza at Advanced Cell Technology reported that they had replicated Mitalipov's results and further demonstrated the effectiveness by cloning adult cells using SCNT. In 2018, the first successful cloning of primates using somatic cell nuclear transfer, the same method as \"\"Dolly\"\" the sheep, with the birth of two live female clones (crab-eating macaques named \"\"Zhong Zhong\"\" and \"\"Hua Hua\"\") was reported. In somatic cell nuclear transfer (\"\"SCNT\"\"), the nucleus of a somatic cell is taken from a donor and transplanted into a host egg cell, which had its own genetic material removed previously, making it an enucleated egg. After the"} +{"qid": "test3145", "pid": "11206810", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Shinya Yamanaka\"\ncell replacement. The fact that differentiated cell types had specific patterns of proteins suggested irreversible epigenetic modifications or genetic alterations to be the cause of unidirectional cell differentiation. So, cells progressively become more restricted in the differentiation potential and eventually lose pluripotency. In 1962, John B. Gurdon demonstrated that the nucleus from a differentiated frog intestinal epithelial cell can generate a fully functional tadpole via transplantation to an enucleated egg. Gurdon used somatic cell nuclear transfer (SCNT) as a method to understand reprogramming and how cells change in specialization. He concluded that differentiated somatic cell nuclei had the potential to"} +{"qid": "test3145", "pid": "7002731", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Stem-cell therapy\"\nStem-cell therapy Stem-cell therapy is the use of stem cells to treat or prevent a disease or condition. Bone marrow transplant is the most widely used stem-cell therapy, but some therapies derived from umbilical cord blood are also in use. Research is underway to develop various sources for stem cells, as well as to apply stem-cell treatments for neurodegenerative diseases and conditions such as diabetes and heart disease, among others. Stem-cell therapy has become controversial following developments such as the ability of scientists to isolate and culture embryonic stem cells, to create stem cells using somatic cell nuclear transfer and"} +{"qid": "test3145", "pid": "7002777", "query": "to transplant a nucleus from one cell to another cell a scientist would use", "answer": "somatic cell nuclear transfer", "passage": "\"Stem-cell therapy\"\nconditions. Stem-cell therapy Stem-cell therapy is the use of stem cells to treat or prevent a disease or condition. Bone marrow transplant is the most widely used stem-cell therapy, but some therapies derived from umbilical cord blood are also in use. Research is underway to develop various sources for stem cells, as well as to apply stem-cell treatments for neurodegenerative diseases and conditions such as diabetes and heart disease, among others. Stem-cell therapy has become controversial following developments such as the ability of scientists to isolate and culture embryonic stem cells, to create stem cells using somatic cell nuclear transfer"} +{"qid": "test3146", "pid": "10553483", "query": "what does a bull shark tooth look like", "answer": "needle-like teeth", "passage": "\"Shark tooth\"\nThis was the first common style of shark tooth, present in the Devonian, four hundred million years ago. Sharks with needle-like teeth commonly feed on small to medium-sized fish, sometimes including small sharks. These teeth are especially effective for such prey because they can easily grip their slippery and narrow bodies. Modern examples include the blue shark and bull sharks. These sharks specifically use their teeth to feed on small prey like squid, flounder, stingrays, and even hammerhead sharks. This combination of pointed lower teeth with triangular upper teeth are especially useful for cutting prey that consist of large mammals"} +{"qid": "test3146", "pid": "10553497", "query": "what does a bull shark tooth look like", "answer": "needle-like", "passage": "\"Shark tooth\"\nhafted shark tooth. Shark tooth A shark tooth is one of the numerous teeth of a shark. A shark tooth contains resistant calcium phosphate materials. Sharks continually shed their teeth; some Carcharhiniformes shed approximately 35,000 teeth in a lifetime, replacing those that fall out. There are four basic types of shark teeth: dense flattened, needle-like, pointed lower with triangular upper, and non-functional. The type of tooth that a shark has depends on its diet and feeding habits. In some formations, shark's teeth are a common fossil. These fossils can be analyzed for information on shark evolution and biology; they are"} +{"qid": "test3146", "pid": "10553480", "query": "what does a bull shark tooth look like", "answer": "needle-like", "passage": "\"Shark tooth\"\nShark tooth A shark tooth is one of the numerous teeth of a shark. A shark tooth contains resistant calcium phosphate materials. Sharks continually shed their teeth; some Carcharhiniformes shed approximately 35,000 teeth in a lifetime, replacing those that fall out. There are four basic types of shark teeth: dense flattened, needle-like, pointed lower with triangular upper, and non-functional. The type of tooth that a shark has depends on its diet and feeding habits. In some formations, shark's teeth are a common fossil. These fossils can be analyzed for information on shark evolution and biology; they are often the only"} +{"qid": "test3147", "pid": "3427252", "query": "who played the girl in my two dads", "answer": "Staci Keanan", "passage": "\"My Two Dads\"\nfeatures episodes from the first 2 seasons. My Two Dads My Two Dads is an American sitcom that was produced by Michael Jacobs Productions in association with Tri-Star Television (later Columbia Pictures Television) and distributed by TeleVentures. It starred Paul Reiser, Greg Evigan, and Staci Keanan. The series premiered on NBC on September 20, 1987, airing three seasons through April 30, 1990. The series begins after Marcy Bradford (played by Emma Samms in the second-season episode \"\"In Her Dreams\"\"), the mother of 12-year-old Nicole Bradford (Keanan), has died. The two men who had competed for Marcy's affections in Key West"} +{"qid": "test3147", "pid": "3427244", "query": "who played the girl in my two dads", "answer": "Staci Keanan", "passage": "\"My Two Dads\"\nMy Two Dads My Two Dads is an American sitcom that was produced by Michael Jacobs Productions in association with Tri-Star Television (later Columbia Pictures Television) and distributed by TeleVentures. It starred Paul Reiser, Greg Evigan, and Staci Keanan. The series premiered on NBC on September 20, 1987, airing three seasons through April 30, 1990. The series begins after Marcy Bradford (played by Emma Samms in the second-season episode \"\"In Her Dreams\"\"), the mother of 12-year-old Nicole Bradford (Keanan), has died. The two men who had competed for Marcy's affections in Key West during the summer of 1974 - Michael"} +{"qid": "test3148", "pid": "5695200", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "\"Generational planet\"\n18 February 1930. When Pluto was first discovered, it was initially known as Planet X. Astronomers had been searching for another planet past Neptune, hoping to solve the dilemma of its rather irregular orbit. It is now known, however, that the perceived irregular orbit of Neptune was the result of a mathematical error because Pluto, being a planetoid smaller than our own Moon, was far too small to affect any type of gravitational pull on the gas giant. Pluto is very much a 20th-century planet and refers to the two world wars, and weapons of mass destruction, nuclear power, and"} +{"qid": "test3148", "pid": "9068517", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "\"HD 69830 d\"\ngiants Jupiter and Saturn. Its temperature is , close to that of Earth. The radius is not known, however given its mass of 17 , which is around that of the planet Neptune, it likely has a radius of around 4 . In other terms, it is basically a warmer version of Neptune. The planet orbits a (G-type) star named HD 69830, orbited by total of three planets, of which HD 69830 d has the longest orbital period. The star has a mass of 0.86 and a radius of 0.90 . It has a surface temperature of 5394 K and"} +{"qid": "test3148", "pid": "12383531", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "Neptune\nNeptune Neptune is the eighth and farthest known planet from the Sun in the Solar System. In the Solar System, it is the fourth-largest planet by diameter, the third-most-massive planet, and the densest giant planet. Neptune is 17 times the mass of Earth and is slightly more massive than its near-twin Uranus, which is 15 times the mass of Earth and slightly larger than Neptune. Neptune orbits the Sun once every 164.8 years at an average distance of . It is named after the Roman god of the sea and has the astronomical symbol ♆, a stylised version of the"} +{"qid": "test3148", "pid": "12383589", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "Neptune\nmoon Triton to be investigated around 2029. The proposed \"\"New Horizons 2\"\" mission (which was later scrapped) might also have done a close flyby of the Neptunian system. Neptune Neptune is the eighth and farthest known planet from the Sun in the Solar System. In the Solar System, it is the fourth-largest planet by diameter, the third-most-massive planet, and the densest giant planet. Neptune is 17 times the mass of Earth and is slightly more massive than its near-twin Uranus, which is 15 times the mass of Earth and slightly larger than Neptune. Neptune orbits the Sun once every 164.8"} +{"qid": "test3148", "pid": "17239336", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "Kepler-62b\nwith a radius and mass bigger than Earth, but smaller than that of the ice giants Neptune and Uranus. It has an equilibrium temperature of . This is hot enough to melt some types of metal. It has a radius of 1.3 , placing it below the estimated radius of ≤1.6 where it would otherwise be a mini-Neptune with a volatile composition, with no solid surface. However, the mass is currently not known, estimates place an upper limit of <9 , the real mass is expected to be significantly lower than this. The planet orbits a (K-type) star named Kepler-62,"} +{"qid": "test3148", "pid": "333705", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "\"Ring system\"\nRing system A ring system is a disc or ring orbiting an astronomical object that is composed of solid material such as dust and moonlets, and is a common component of satellite systems around giant planets. A ring system around a planet is also known as a planetary ring system. The most prominent and most famous planetary rings in the Solar System are those around Saturn, but the other three giant planets (Jupiter, Uranus, and Neptune) also have ring systems. Recent evidence suggests that ring systems may also be found around other types of astronomical objects, including minor planets, moons,"} +{"qid": "test3148", "pid": "12665430", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "\"Hot Neptune\"\nHot Neptune A hot Neptune or Hoptune is a type of giant planet with a mass similar to that of Uranus or Neptune orbiting close to its star, normally within less than 1 AU. The first hot Neptune to be discovered with certainty was Gliese 436 b in 2007, an exoplanet about 33 light years away. Recent observations have revealed a larger potential population of hot Neptunes in the Milky Way than was previously thought. Hot Neptunes may have formed either in situ or ex situ. Because of their close proximity to their parent star, hot Neptunes have a much"} +{"qid": "test3148", "pid": "12665433", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "\"Hot Neptune\"\ntheir volume. Hot Neptune A hot Neptune or Hoptune is a type of giant planet with a mass similar to that of Uranus or Neptune orbiting close to its star, normally within less than 1 AU. The first hot Neptune to be discovered with certainty was Gliese 436 b in 2007, an exoplanet about 33 light years away. Recent observations have revealed a larger potential population of hot Neptunes in the Milky Way than was previously thought. Hot Neptunes may have formed either in situ or ex situ. Because of their close proximity to their parent star, hot Neptunes have"} +{"qid": "test3148", "pid": "12383546", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "Neptune\nbelt in 1992 led many astronomers to debate whether Pluto should be considered a planet or as part of the Kuiper belt. In 2006, the International Astronomical Union defined the word \"\"planet\"\" for the first time, reclassifying Pluto as a \"\"dwarf planet\"\" and making Neptune once again the outermost known planet in the Solar System. Neptune's mass of 1.0243 kg is intermediate between Earth and the larger gas giants: it is 17 times that of Earth but just 1/19th that of Jupiter. Its gravity at 1 bar is 11.15 m/s, 1.14 times the surface gravity of Earth, and surpassed only"} +{"qid": "test3148", "pid": "19206396", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "\"Extreme trans-Neptunian object\"\nExtreme trans-Neptunian object An extreme trans-Neptunian object (ETNO) is a minor planet and trans-Neptunian object, orbiting the Sun well beyond Neptune (30 AU) in the outermost region of the Solar System. An ETNO has a large semi-major axis of at least 150–250 AU. Its orbit is much less affected by the known giant planets than all other known trans-Neptunian objects. They may, however, be influenced by gravitational interactions with a hypothetical Planet Nine, shepherding these objects into similar types of orbits. ETNOs can be divided into three different subgroups. The scattered ETNOS have perihelia around 38–45 AU and an exceptionally"} +{"qid": "test3148", "pid": "19506062", "query": "what type of planet is neptune known as", "answer": "giant", "passage": "Kepler-1229b\nthan that of the gas giants Neptune and Uranus. It has an equilibrium temperature of . Kepler-1229b's mass is not known, but based on its radius, it is likely to be in the range of about 2.7 , based on its composition. The planet orbits a (M-type) star named Kepler-1229, orbited by a total of one planet. The star has a mass of 0.54 and a radius of 0.51 . It has a temperature of 3724 K and is about 3.72 billion years old. In comparison, the Sun is 4.6 billion years old and has a temperature of 5778 K."} +{"qid": "test3149", "pid": "17490404", "query": "when do love and hip hop new york come back on", "answer": "October 30, 2017", "passage": "\"Love & Hip Hop: New York\"\non December 15, 2014. On November 2, 2015, VH1 announced that \"\"Love & Hip Hop: New York\"\" would be returning for a sixth season, which premiered on December 14, 2015. On November 14, 2016, VH1 announced that \"\"Love & Hip Hop: New York\"\" would be returning for a seventh season, which premiered on November 21, 2016. On October 2, 2017, VH1 announced \"\"Love & Hip Hop: New York\"\" would be returning for an eighth season, which premiered on October 30, 2017. On September 27, 2018, VH1 announced \"\"Love & Hip Hop: New York\"\" would be returning for a ninth season,"} +{"qid": "test3149", "pid": "20397083", "query": "when do love and hip hop new york come back on", "answer": "October 30, 2017", "passage": "\"Love & Hip Hop: New York (season 8)\"\nDejanae, Shamele & Destiney Mackie and Remy's son Jace Smith, all who have previously appeared on \"\"Love & Hip Hop\"\". Love & Hip Hop: New York (season 8) The eighth season of the reality television series \"\"\"\" aired on VH1 from October 30, 2017 until March 12, 2018. The show was primarily filmed in New York City, New York. It is executively produced by Mona Scott-Young and Stephanie R. Gayle for Monami Entertainment, Toby Barraud, Stefan Springman, Mala Chapple, David DiGangi, and Lauren Veteri for Eastern TV, and Nina L. Diaz, Liz Fine and Vivian Gomez for VH1. The series"} +{"qid": "test3149", "pid": "20397075", "query": "when do love and hip hop new york come back on", "answer": "October 30, 2017", "passage": "\"Love & Hip Hop: New York (season 8)\"\nLove & Hip Hop: New York (season 8) The eighth season of the reality television series \"\"\"\" aired on VH1 from October 30, 2017 until March 12, 2018. The show was primarily filmed in New York City, New York. It is executively produced by Mona Scott-Young and Stephanie R. Gayle for Monami Entertainment, Toby Barraud, Stefan Springman, Mala Chapple, David DiGangi, and Lauren Veteri for Eastern TV, and Nina L. Diaz, Liz Fine and Vivian Gomez for VH1. The series chronicles the lives of several women and men in the New York area, involved in hip hop music. It consists"} +{"qid": "test3150", "pid": "12909155", "query": "how many gallons of water in the gulf of mexico", "answer": "660 quadrillion US gallons", "passage": "\"Gulf of Mexico\"\nshallow continental shelf waters. The basin contains a volume of roughly 2,500 quadrillion liters (550 quadrillion Imperial gallons, 660 quadrillion US gallons, 2.5 million km or 600,000 cu mi). The Gulf of Mexico is one of the most important offshore petroleum production regions in the world, comprising one-sixth of the United States' total production. The International Hydrographic Organization defines the southeast limit of the Gulf of Mexico as follows: A line leaving Cape Catoche Light () with the Light on Cape San Antonio in Cuba, through this island to the meridian of 83°W and to the Northward along this meridian"} +{"qid": "test3151", "pid": "14852837", "query": "anastomosis between the epididymis and the vas deferens", "answer": "Vasoepididymostomy", "passage": "Vasoepididymostomy\n10-0 suture should be placed near the opening of the epididymal tubule to allow the epididymal tubule to “invaginate” into the vas deferens, theoretically creating a connection, that, based on studies in animal models, has an improved watertight seal and possibly a higher chance for success. Once the vas-deferens-epididymis connection is completed, the covering around the testis is replaced. Vasoepididymostomy is often considered one of the most technically challenging operations in the field of urology. The procedure requires anastomosis of a single epididymal tubule (luminal diameter .15-.25 mm) to the lumen of the vas deferens (diameter .3-.4 mm), and is"} +{"qid": "test3151", "pid": "14852838", "query": "anastomosis between the epididymis and the vas deferens", "answer": "Vasoepididymostomy", "passage": "Vasoepididymostomy\nreserved for patients with congenital or acquired epididymal obstruction, or patients who have failed previous attempts at surgical reconstruction of the vas deferens. This surgery attaches the vas deferens directly to the epididymis, the coiled tube on the back of each testicle where sperm matures. A vasectomy can cause blockages or a break in the vas deferens or the epididymis. This surgery is used when a vasovasostomy won't work because sperm flow is blocked. The vas deferens is connected to the epididymis above the point of blockage. Vasoepididymostomy Vasoepididymostomy or epididymovasostomy is a surgery by which vasectomies are reversed. It"} +{"qid": "test3151", "pid": "14852835", "query": "anastomosis between the epididymis and the vas deferens", "answer": "Vasoepididymostomy", "passage": "Vasoepididymostomy\nVasoepididymostomy Vasoepididymostomy or epididymovasostomy is a surgery by which vasectomies are reversed. It involves connection of the severed vas deferens to the epididymis and is more technically demanding than the vasovasostomy. For a vasectomy reversal that involves a vasoepididymostomy, there are two microsurgical approaches. The procedure involves a similar surgical incision as vasovasostomy; however, unlike with a vasovasostomy, the testis is usually delivered into the field for this more complex microsurgery. After the findings from the vasal fluid are reviewed showing epididymal obstruction, the epididymis is exposed by opening the outer testis covering (tunica vaginalis). The epididymis is inspected and"} +{"qid": "test3152", "pid": "854556", "query": "who is given credit for inventing the aqua lung", "answer": "Jacques Cousteau", "passage": "Aqua-Lung\nAqua-Lung Aqua-Lung was the first open-circuit, self-contained underwater breathing apparatus (or \"\"SCUBA\"\") to reach worldwide popularity and commercial success. This class of equipment is now commonly referred to as a diving regulator or demand valve. The Aqua-Lung was invented in Paris during the winter of 1942–1943 by two Frenchmen: the engineer Émile Gagnan and Naval Lieutenant (\"\"lieutenant de vaisseau\"\") Jacques Cousteau. It allowed Cousteau and Gagnan to film and explore more easily underwater. An earlier underwater breathing regulator, known as the \"\"régulateur,\"\" was invented in France in 1860 by Benoît Rouquayrol. He first conceived it as a device to help"} +{"qid": "test3152", "pid": "9873472", "query": "who is given credit for inventing the aqua lung", "answer": "Jacques Cousteau", "passage": "\"Free French Naval Forces\"\nin early 1943 it was involved in the rescue of the survivors from , which was sunk by a torpedo fired by the . After the rescue, \"\"Triomphant\"\" then searched for \"\"I-21\"\" for a day, but without success. \"\"Richelieu\"\" was present in Tokyo Bay during the signing of the Japanese Instrument of Surrender. The FNFL also harboured technical innovators, like Captain Jacques-Yves Cousteau, who invented the modern aqua-lung, and Yves Rocard, who helped perfect radar. The aqua-lung became a major improvement for commando operations. (Note - Jacques Cousteau joined the FNFL after the liberation of France. He spent the entirety"} +{"qid": "test3152", "pid": "216334", "query": "who is given credit for inventing the aqua lung", "answer": "Jacques Cousteau", "passage": "\"Jacques Cousteau\"\nand Pierre-Antoine was released in 1954. During the 1940s, Cousteau is credited with improving the aqua-lung design which gave birth to the open-circuit scuba technology used today. According to his first book, \"\"\"\" (1953), Cousteau started diving with Fernez goggles in 1936, and in 1939 used the self-contained underwater breathing apparatus invented in 1926 by Commander Yves le Prieur. Cousteau was not satisfied with the length of time he could spend underwater with the Le Prieur apparatus so he improved it to extend underwater duration by adding a demand regulator, invented in 1942 by Émile Gagnan. In 1943 Cousteau tried"} +{"qid": "test3152", "pid": "10736926", "query": "who is given credit for inventing the aqua lung", "answer": "Émile Gagnan", "passage": "\"Aqua Lung America\"\nAqua Lung America Aqua Lung America (formerly U.S. Divers Company) is an American company based in Vista, California which makes scuba equipment. The company is a division of Aqua Lung International, which was, for most of its existence, a division of Air Liquide. Aqua Lung International was sold by Air Liquide to Montagu Private Equity by the end of 2016. After U.S. Divers Company was renamed Aqua Lung America, the name U.S. Divers was retained as a trademark for Aqua Lung's line of snorkelling equipment. The \"\"Aqua-Lung\"\" regulator was created by Jacques-Yves Cousteau and Émile Gagnan in 1943. In 1946,"} +{"qid": "test3152", "pid": "12757231", "query": "who is given credit for inventing the aqua lung", "answer": "engineer Émile Gagnan", "passage": "\"Aqua Lung/La Spirotechnique\"\nAqua Lung/La Spirotechnique La Spirotechnique (now Aqua Lung International) is a large and well-known firm which makes scuba and other self-contained breathing apparatus, and other diving equipment. It produced the Aqua-Lung line of regulators, like the CG45 (1945) and the Mistral (1955), among others. Until 2016, the company was a division of Air Liquide since its foundation in 1946. The company was sold to Montagu Private Equity in 2016. In December 1942 the \"\"lieutenant de vaisseau\"\" (ship-of-the-Line Lieutenant) Jacques-Yves Cousteau met in Paris for the first time the engineer Émile Gagnan, employee at Air Liquide, a French company specialising in"} +{"qid": "test3152", "pid": "7197539", "query": "who is given credit for inventing the aqua lung", "answer": "Jacques Cousteau", "passage": "Sanary-sur-Mer\nSanary a favorite destination for windsurfers. Jacques Cousteau had a house in Sanary, the Villa Baobab. He was a pioneer of deep sea diving equipment, which he invented and developed around Sanary. The is in a 13th-century Romanesque tower made available by the municipality; it bills itself as an historical city of diving. Frédéric Dumas was a co-inventor with Cousteau of the aqua-lung. Sanary was the birthplace of Ernest Blanc (1923-2010), a distinguished operatic baritone who enjoyed a long international career. Sanary hosts every year during the month of May the prestigious international photography festival PHOTOMED, now also held in"} +{"qid": "test3152", "pid": "387460", "query": "who is given credit for inventing the aqua lung", "answer": "Émile Gagnan", "passage": "\"Scuba set\"\n(\"\"Self-Contained Underwater Breathing Apparatus\"\"). Lambertsen's invention, for which he held several patents registered from 1940 to 1989, was a rebreather and is different from the open-circuit diving regulator and diving cylinder assemblies also commonly referred to as scuba. Open-circuit-demand scuba is a 1943 invention by the Frenchmen Émile Gagnan and Jacques-Yves Cousteau, but in the English language Lambertsen's acronym has become common usage and the name \"\"Aqua-Lung\"\", (often spelled \"\"aqualung\"\"), coined by Cousteau for use in English-speaking countries, has fallen into secondary use. As with radar, the acronym \"\"scuba\"\" has become so familiar that it is generally not capitalized and"} +{"qid": "test3152", "pid": "7368436", "query": "who is given credit for inventing the aqua lung", "answer": "Émile Gagnan", "passage": "\"Ted Eldred\"\nwas protected by US patent and international patents, so Eldred set about designing the Porpoise CA (a prototype), the world's first single hose regulator. Eldred referred to the French model as the Gagnan Aqua Lung, as designer Émile Gagnan was the Frenchman who actually designed the device for Jacques-Yves Cousteau. This new design was superior to the Aqua Lung, and did not violate any of the existing patents. Eldred's regulator was never patented as his business was too small for the expense. The first production model was designated the CA-1. (C A for compressed Air, 1 for single cylinder) He"} +{"qid": "test3153", "pid": "493280", "query": "where did the name huey helicopter come from", "answer": "originally designated HU-1", "passage": "\"Bell UH-1 Iroquois\"\nBell UH-1 Iroquois The Bell UH-1 Iroquois (nicknamed \"\"Huey\"\") is a utility military helicopter powered by a single turboshaft engine, with two-blade main and tail rotors. The first member of the prolific Huey family, it was developed by Bell Helicopter to meet a United States Army's 1952 requirement for a medical evacuation and utility helicopter, and first flew in 1956. The UH-1 was the first turbine-powered helicopter produced for the United States military, and more than 16,000 have been built since 1960. The Iroquois was originally designated HU-1, hence the \"\"Huey\"\" nickname, which has remained in common use, despite the"} +{"qid": "test3157", "pid": "7781862", "query": "actress who plays penelope garcia on criminal minds", "answer": "Kirsten Simone Vangsness", "passage": "\"Kirsten Vangsness\"\nqueer as a purple unicorn singing Madonna\"\". She began dating film and television editor Melanie Goldstein in 2006. They were engaged, but separated in 2013. In November 2015, it was reported that she was engaged to her boyfriend, actor and writer Keith Hanson. Kirsten Vangsness Kirsten Simone Vangsness (born July 7, 1972) is an American actress and writer. She currently stars as FBI Technical Analyst Penelope Garcia on the CBS drama series \"\"Criminal Minds\"\". She portrayed the same character on the spin-off series \"\"\"\". Vangsness was born in Pasadena, California, the daughter of Errol Leroy Vangsness and Barbara Mary (née"} +{"qid": "test3157", "pid": "7781860", "query": "actress who plays penelope garcia on criminal minds", "answer": "Kirsten Simone Vangsness", "passage": "\"Kirsten Vangsness\"\nKirsten Vangsness Kirsten Simone Vangsness (born July 7, 1972) is an American actress and writer. She currently stars as FBI Technical Analyst Penelope Garcia on the CBS drama series \"\"Criminal Minds\"\". She portrayed the same character on the spin-off series \"\"\"\". Vangsness was born in Pasadena, California, the daughter of Errol Leroy Vangsness and Barbara Mary (née Marconi). She was raised in Porterville, California, and later moved to Cerritos, California. She graduated from Cerritos High School in June 1990 and attended Cypress College. She later graduated from California State University, Fullerton in June 1995. Vangsness got into acting as a"} +{"qid": "test3160", "pid": "16425615", "query": "when did season 4 of glee come out", "answer": "September 13, 2012", "passage": "\"Glee (season 4)\"\n\"\"Blaine's Time Capsule\"\" and \"\"\"\"Glee\"\" Premiere Party!\"\". After Cory Monteith’s death on July 13, 2013, they decided to re-design the Season 4 DVD cover art to include an image of Finn. However, this change has altered the release date. Glee (season 4) The fourth season of the Fox musical comedy-drama television series \"\"Glee\"\" was commissioned on April 9, 2012. It premiered on September 13, 2012 and is produced by 20th Century Fox Television, Ryan Murphy Television and Brad Falchuk Teley-Vision with executive producers Dante Di Loreto and series co-creators Ryan Murphy, Brad Falchuk and Ian Brennan. The series features the"} +{"qid": "test3160", "pid": "16425598", "query": "when did season 4 of glee come out", "answer": "September 13, 2012", "passage": "\"Glee (season 4)\"\nGlee (season 4) The fourth season of the Fox musical comedy-drama television series \"\"Glee\"\" was commissioned on April 9, 2012. It premiered on September 13, 2012 and is produced by 20th Century Fox Television, Ryan Murphy Television and Brad Falchuk Teley-Vision with executive producers Dante Di Loreto and series co-creators Ryan Murphy, Brad Falchuk and Ian Brennan. The series features the New Directions glee club at the fictional William McKinley High School in the town of Lima, Ohio. The fourth season continues in Lima with a new generation of students but will also follow some of the McKinley graduates from"} +{"qid": "test3161", "pid": "17263165", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Post–Cold War era\"\nMany other third world countries who had seen involvement from the United States and/or the Soviet Union were also able to resolve political conflicts with the removal of the ideological interests of these superpowers. As a result of the apparent victory of democracy and capitalism in the Cold War, many more countries adapted these systems, which also allowed them access to the benefits of global trade, as economic power became more prominent than military power in the international arena. However, as the United States maintained global power, its role in many Regime Changes during the Cold War went mostly officially"} +{"qid": "test3161", "pid": "20524202", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Moscow Signal\"\nwith the signing of the Truman Doctrine, which threatened Soviet communist and expansionist policies and ideologies. The term \"\"cold\"\" is used to describe this war as there was no actual large-scale fighting between the two major powers involved, the United States and the Soviet Union. The Cold War was fought as an arms race and relied on espionage to cause damage to the opposing country. The Moscow Signal was used during the period of The Cold War commonly referred to as \"\"Confrontation Through Détente\"\". The signal is just one example of the new technologies developed during The Cold War to"} +{"qid": "test3161", "pid": "3168729", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Bangladesh Liberation War\"\nthe rapid advance of the Allied Forces of Bangladesh and India, Pakistan surrendered in Dacca on 16 December 1971. The war changed the geopolitical landscape of South Asia, with the emergence of Bangladesh as the seventh-most populous country in the world. Due to complex regional alliances, the war was a major episode in Cold War tensions involving the United States, the Soviet Union and the People's Republic of China. The majority of member states in the United Nations recognised Bangladesh as a sovereign nation in 1972. Prior to the Partition of British India, the Lahore Resolution initially envisaged separate Muslim-majority"} +{"qid": "test3161", "pid": "2985897", "query": "who were the major countries involved in the cold war", "answer": "the United States", "passage": "\"Canada in the Cold War\"\ntank battles once feared would rage across Western Europe. It is with Canada's late-Cold War and early-Peacekeeping Era military that Canada would embark on its deployment to Afghanistan, currently Canada's longest-running war. Canada in the Cold War During the Cold War, Canada was one of the western powers playing a central role in the major alliances. It was an ally of the United States, but there were several foreign policy differences between the two countries over the course of the Cold War. Canada was a founding member of the North Atlantic Treaty Organization (NATO) in 1949, the North American Aerospace"} +{"qid": "test3161", "pid": "2985872", "query": "who were the major countries involved in the cold war", "answer": "the United States", "passage": "\"Canada in the Cold War\"\nCanada in the Cold War During the Cold War, Canada was one of the western powers playing a central role in the major alliances. It was an ally of the United States, but there were several foreign policy differences between the two countries over the course of the Cold War. Canada was a founding member of the North Atlantic Treaty Organization (NATO) in 1949, the North American Aerospace Defence Command (NORAD) in 1958 and played a leading role in United Nations peacekeeping operations – from the Korean War to the creation of a permanent UN peacekeeping force during the Suez"} +{"qid": "test3161", "pid": "11617202", "query": "who were the major countries involved in the cold war", "answer": "the United States", "passage": "\"United States–Vietnam relations\"\nderived from political ideology (i.e. the Cold War) considerations that largely transcended Vietnam. United States involvement in Vietnam was driven by many factors, including: ideology, Cold War strategy as well inheriting a colonial legacy from the 4th Republic of France, one of its major allies. There were two major drivers: anticommunist considerations and anticolonialist considerations. Where there was little risk of Communist involvement, for example, in the Anglo-French Suez Canal adventure of 1956, against Egypt, the United States would often intervene forcefully—even against their strongest allies—on behalf of the principles of self-determination and sovereignty for all nations. In the closing"} +{"qid": "test3161", "pid": "14911703", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Greek Civil War\"\nto 1989) and represents the first example of Cold War power postwar involvement in the internal politics of a foreign country. Greece in the end was funded by the US (through the Truman Doctrine and the Marshall Plan) and joined NATO (1952), while the insurgents were demoralized by the bitter split between the Soviet Union's Joseph Stalin, who wanted the war ended, and Yugoslavia's Josip Broz Tito, who wanted it to continue. Tito was committed to helping the Greek Communists in their efforts, a stance that caused political complications with Stalin, as he had recently agreed with Winston Churchill not"} +{"qid": "test3161", "pid": "2488498", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Origins of the Cold War\"\nOrigins of the Cold War The Origins of the Cold War involved the breakdown of relations between the Soviet Union versus the United States, Great Britain and their allies in the years 1945–1949. From the American-British perspective, first came diplomatic confrontations stretching back decades, followed by the issue of political boundaries in Central Europe and political non-democratic control of the East by the Soviet Army. Then came economic issues (especially the Marshall Plan) and then the first major military confrontation, with a threat of a hot war, in the Berlin Blockade of 1948–1949. By 1949, the lines were sharply drawn"} +{"qid": "test3161", "pid": "7242218", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Universidad de San Carlos de Guatemala\"\nproblems that Guatemala faced at the time. New colleges were created that time: Likewise, access was granted to both women and to all the society members that had been excluded from the institution in the past. Following its constitutional mandate, the university became involved in the political life of the country, presenting concrete social, economic and political proposals. However, with the beginning of the Cold War between the United States and the Soviet Union -major super powers that split world dominance after their victory in World War II, the 1954 Guatemalan coup d'état, the Cuban Revolution in 1959 and the"} +{"qid": "test3161", "pid": "10202162", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "Turkey\nin the Cyprus dispute complicates Turkey's relations with the EU and remains a major stumbling block to the country's EU accession bid. The other defining aspect of Turkey's foreign policy is the country's long-standing strategic alliance with the United States. The Truman Doctrine in 1947 enunciated American intentions to guarantee the security of Turkey and Greece during the Cold War, and resulted in large-scale U.S. military and economic support. In 1948 both countries were included in the Marshall Plan and the OEEC for rebuilding European economies. The common threat posed by the Soviet Union during the Cold War led to"} +{"qid": "test3161", "pid": "10101537", "query": "who were the major countries involved in the cold war", "answer": "the United States", "passage": "\"Military history of Cuba\"\nMilitary history of Cuba The Military history of Cuba begins with the island's conquest by the Spanish and its battles afterward to gain its independence. Since the Communist takeover by Fidel Castro in 1959, Cuba has been involved with many major conflicts of the Cold War in Africa and Latin America where it had supported Marxist governments and rebels from liberation movements who were opposed to their colonial masters and/or allies of the United States. The Ten Years' War was the first of three wars that Cuba fought against Spain for its independence. The Ten Years' War began when Carlos"} +{"qid": "test3161", "pid": "1812961", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "Brinkmanship\nas a nuclear deterrence for both the side threatening to pose damage and the country on the 'receiving end'. Ultimately, it worsened the relationship between the USSR and the US. In the spectrum of the Cold War, the concept of brinkmanship involved the West and the Soviet Union using fear tactics and intimidation as strategies to make the opposing faction back down. Each party pushed dangerous situations to the brink, with the intention of making the other back down in matters of international politics and foreign policy, to obtain concessions. Nevertheless, in the Cold War both parties were confronted with"} +{"qid": "test3161", "pid": "4524612", "query": "who were the major countries involved in the cold war", "answer": "the Soviet Union", "passage": "\"Foreign relations of the Soviet Union\"\ndeployment of the SS-18 missile. It perceived its own involvement as essential to the solution of any major international problem. Meanwhile, the Cold War gave way to \"\"Détente\"\" and a more complicated pattern of international relations in which the world was no longer clearly split into two clearly opposed blocs. Less powerful countries had more room to assert their independence, and the two superpowers were partially able to recognize their common interest in trying to check the further spread and proliferation of nuclear weapons (\"\"see\"\" SALT I, SALT II, Anti-Ballistic Missile Treaty). Elsewhere the Soviet Union had concluded friendship and"} +{"qid": "test3161", "pid": "8845243", "query": "who were the major countries involved in the cold war", "answer": "the United States", "passage": "\"Asylum in the United States\"\nasylum applicant must establish that he or she fears persecution in their home country. Second, the applicant must prove that he or she would be persecuted on account of one of five protected grounds: race, religion, nationality, political opinion, or particular social group. During the Cold War, and up until the mid-1990s, the majority of refugees resettled in the U.S. were people from the former-Soviet Union and Southeast Asia. The most conspicuous of the latter were the refugees from Vietnam following the Vietnam War, sometimes known as \"\"boat people\"\". Following the end of the Cold War, the largest resettled European"} +{"qid": "test3161", "pid": "19657113", "query": "who were the major countries involved in the cold war", "answer": "the United States", "passage": "\"CIA activities in Myanmar\"\nthe Cold War. A main concern was over economic warfare. Since the country was a major exporter of rice, the United States worried that communist control of Myanmar could result in manipulation of price and distribution of Myanmar rice to the detriment of nearby United States allies, such as India, Ceylon, Malaysia, and Japan. At the close of the Korean War, one of the final operational theaters involving the CIA was in northern Myanmar. This operation was a strategic attempt to diminish attacks against General MacArthur's forces in the north. Li Mi, a Chinese nationalist general, had roughly 1500 soldiers"} +{"qid": "test3163", "pid": "7955430", "query": "sweet leavened bread prepared for easter in romania", "answer": "Kozunak", "passage": "Cozonac\nCozonac Cozonac () or Kozunak (, ), is a traditional Romanian and Bulgarian sweet leavened bread, which is a type of Stollen. It is usually prepared for Easter in Bulgaria, and mostly for every major holiday (Christmas, Easter, New Year's Day, Pentecost) in Romania and Moldova. The dessert is also known as \"\"tsoureki\"\" (), شوريك (Arabic), \"\"panarët\"\" (Arbërisht), \"\"choreg\"\" or \"\"chorek\"\" (Armenian: չորեկ), \"\"çörək\"\" (Azerbaijani), or \"\"çörek\"\" (Turkish and Cypriot Turkish). It is a sweet, egg-enriched bread, which is rooted in the cuisines of Western and Central Asia. Such rich brioche-like breads are also traditional in many other countries, such"} +{"qid": "test3163", "pid": "7955436", "query": "sweet leavened bread prepared for easter in romania", "answer": "Kozunak", "passage": "Cozonac\nwho put forward the \"\"cozonac\"\", more than others. Today, this dessert with a long history is prepared mainly in the southeastern European countries, especially in Romania, Moldova and Bulgaria, where it is considered a traditional food. Cozonac Cozonac () or Kozunak (, ), is a traditional Romanian and Bulgarian sweet leavened bread, which is a type of Stollen. It is usually prepared for Easter in Bulgaria, and mostly for every major holiday (Christmas, Easter, New Year's Day, Pentecost) in Romania and Moldova. The dessert is also known as \"\"tsoureki\"\" (), شوريك (Arabic), \"\"panarët\"\" (Arbërisht), \"\"choreg\"\" or \"\"chorek\"\" (Armenian: չորեկ), \"\"çörək\"\""} +{"qid": "test3163", "pid": "7955433", "query": "sweet leavened bread prepared for easter in romania", "answer": "Cozonac", "passage": "Cozonac\na pin, the filling is spread and the whole is rolled back into a shape vaguely resembling a pinwheel. In the baked product, the filling forms a swirl adding to the character of the bread. It was the sweet chosen to represent Romania in the Café Europe initiative of the Austrian presidency of the European Union, on Europe Day 2006. It is possible that the first \"\"cozonac\"\" has been made in Ancient Egypt. Perhaps it was sweetened with honey and filled with seeds. The Greeks took from the Egyptians their interest in cuisine, the yeast, and the leavened doughs. Certainly"} +{"qid": "test3164", "pid": "17351448", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Deputy Chief Minister of Tamil Nadu\"\nof Tamil Nadu. Deputy Chief Minister of Tamil Nadu Deputy Chief Minister of Tamil Nadu is an optional post and is second in command to the Chief Minister of Tamil Nadu. The first person to hold the office of Deputy Chief Minister was M. K. Stalin, who took office on 29 May 2009 and left on 15 May 2011. The Chief Minister during that time was M. Karunanidhi. M. Karunanidhi, the then-Chief Minister of Tamil Nadu, underwent a spinal cord surgery in 2009, which made him wheel-chair bounded. He was unable to concentrate on many of the departments from his"} +{"qid": "test3164", "pid": "17351446", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Deputy Chief Minister of Tamil Nadu\"\nDeputy Chief Minister of Tamil Nadu Deputy Chief Minister of Tamil Nadu is an optional post and is second in command to the Chief Minister of Tamil Nadu. The first person to hold the office of Deputy Chief Minister was M. K. Stalin, who took office on 29 May 2009 and left on 15 May 2011. The Chief Minister during that time was M. Karunanidhi. M. Karunanidhi, the then-Chief Minister of Tamil Nadu, underwent a spinal cord surgery in 2009, which made him wheel-chair bounded. He was unable to concentrate on many of the departments from his portfolio due to"} +{"qid": "test3164", "pid": "15437418", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "K. Palaniswami", "passage": "\"Tamil Nadu Slum Clearance Board\"\nTamil Nadu Slum Clearance Board Tamil Nadu Slum Clearance Board is administrated by Government of Tamil Nadu. It was formed by Tamil Nadu Slum Areas(Improvement & Clearance) Act 1971. The main function of this board is to eradicate the slum and provide hygienic tenements in Tamil Nadu. His Excellency the Governor of Tamil Nadu Thiru Banwarilal Purohit is the constitutional Head of the State. Hon'ble Chief Minister of Tamil Nadu K. Palaniswami is the Head of the elected Government and heads the Council of Ministers. Hon'ble Chief Justice of Madras High Court Justice indira banarjee is the Head of Judiciary."} +{"qid": "test3164", "pid": "2449680", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. G. Ramachandran", "passage": "\"All India Anna Dravida Munnetra Kazhagam\"\nand rail blockades. Chief Minister of Tamil Nadu: Chief Minister of Puducherry: Deputy Chief Minister of Tamil Nadu: All India Anna Dravida Munnetra Kazhagam All India Anna Dravida Munnetra Kazhagam (AIADMK) () is an Indian political party in the state of Tamil Nadu and in the union territory of Puducherry. It is currently in power in the state of Tamil Nadu and is the third largest party in the Lok Sabha (House of the Peoples). It is a Dravidian party and was founded by M. G. Ramachandran (popularly known as MGR) on 17 October 1972 as a breakaway faction of"} +{"qid": "test3164", "pid": "10215706", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Tamil Nadu Dr. M.G.R. Medical University\"\n1988 and is governed by the said Act. The Tamil Nadu Dr. M.G.R. Medical University is situated in Guindy in the Southern part of the City of Chennai (formerly Madras) in the State of Tamil Nadu, South India; about 6 km from the Chennai International & National Airport and about 12 km from the Chennai Central Railway Station. It is named after the former Chief Minister of Tamil Nadu, late Dr. M.G. Ramachandran (often referred to as M.G.R.) by the then Chief Minister of Tamil Nadu, M. Karunanidhi. This is the only Medical University in Tamil Nadu capable of granting"} +{"qid": "test3164", "pid": "16566505", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Karunanidhi family\"\nKarunanidhi family M. Karunanidhi has been Chief Minister of Tamil Nadu for five terms and the DMK party leader from 1968. Karunanidhi's grandnephew Dayanidhi Maran has been the union cabinet minister for two terms, once as a Minister of Information and Technology and once as a Minister of Textiles. One of Karunanidhi's sons, M. K. Stalin, has been a four-time MLA in Tamil Nadu Legislative assembly and a one-time deputy Chief Minister of Tamil Nadu; another son, M. K. Alagiri, is the Minister of Chemicals in the central cabinet and also the co-ordinator for South Tamil Nadu for DMK. His"} +{"qid": "test3164", "pid": "2652886", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. G. Ramachandran", "passage": "\"M. G. Ramachandran\"\nMGR became the Chief Minister of Tamil Nadu. Upon winning the 1977 state elections, MG Ramachandran became the Chief Minister of Tamil Nadu on 30 June 1977, remaining in office till his death in 1987. In 1979, members of his party Satyavani Muthu and Aravinda Bala Pajanor became the first non-Congress politicians from Tamil Nadu to be ministers in the Union Cabinet. The AIADMK won every state assembly election as long as MGR was alive. Although Anna Durai and Karunanidhi had acted in stage plays in trivial roles, in their younger days, before becoming chief minister, MGR was the first"} +{"qid": "test3164", "pid": "13496542", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Madras Central Prison\"\ncourts in Chennai and mofussil (rural) areas including Tiruchi, Madurai, Coimbatore and Tirunelveli. The prison housed Subhas Chandra Bose and Veer Savarkar during the days of independence movement. C. N. Annadurai, former Chief Minister of Tamil Nadu and leader of Dravidian Movement was housed here for his Anti Hindi agitations. The prison also housed former Chief Minister of Tamil Nadu, M. Karunanidhi and chief minister of Tamil Nadu J. Jayalalitha. Also, several international figures, including LTTE chief Velupillai Prabhakaran and Maoist leader of Nepal, Chandra Prakash Gajurel, were imprisoned here. In 1999, some of the inmates in the prison went"} +{"qid": "test3164", "pid": "8527242", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. G. Ramachandran", "passage": "\"Literacy in India\"\nof K. Kamaraj. The first major thrust came in 1982 when Chief Minister of Tamil Nadu, Dr. M. G. Ramachandran, decided to universalise the scheme for all children up to class 10. Tamil Nadu's midday meal programme is among the best-known in the country. Starting in 1982, Tamil Nadu took an approach to promoting literacy based on free lunches for schoolchildren, \"\"ignoring cynics who said it was an electoral gimmick and economists who said it made little fiscal sense.\"\" The then chief minister of Tamil Nadu, MGR launched the programme, which resembled a similar initiative in 19th century Japan, because"} +{"qid": "test3164", "pid": "12832384", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "J. Jayalalithaa", "passage": "\"E. Gayathri\"\nE. Gayathri Echampati Gayathri (née Gayathri Vasantha Shoba), popularly known as \"\"Veena Gayathri\"\"(born 9 November 1959) is a veena exponent of the traditional Carnatic music. She was appointed by the Chief Minister of Tamil Nadu, J.Jayalalithaa, as the first Vice Chancellor of Tamil Nadu Music and Fine Arts University in November, 2013. E.Gayathri received the Sangeet Natak Akademi Award in 2002, the \"\"Kalaimamani\"\" award from Dr. M. G. R. on behalf of the Government of Tamil Nadu in 1984 and a Lifetime Achievement Award from the Rotary Club, Madras East in 2011. The Chief Minister of Tamil Nadu, J. Jayalalithaa,"} +{"qid": "test3164", "pid": "4018612", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "K. Palaniswami", "passage": "\"O. Panneerselvam\"\nto resign by the courts. His third term began following Chief Minister Jayalalithaa's death and ended two months later, Edappadi K. Palaniswami was appointed as the Chief Minister by Tamil Nadu Governor C. Vidyasagar Rao. He was sworn in as the Deputy Chief Minister of Tamil Nadu on 21 August 2017. He also holds portfolios of Finance, Housing, Rural Housing, Housing Development, Slum Clearance Board and Accommodation Control, Town Planning, Urban Development, and Chennai Metropolitan Development Authority. On 4 January 2018, O. Panneerselvam elected as Leader of the House in Tamil Nadu Legislative Assembly. O. Panneerselvam was born to Ottakkara"} +{"qid": "test3164", "pid": "16566526", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Karunanidhi family\"\nPictures during the DMK government during 2006-2011. The distributors also complained of level-playing field with the political clout involved in distribution of films. Karunanidhi family M. Karunanidhi has been Chief Minister of Tamil Nadu for five terms and the DMK party leader from 1968. Karunanidhi's grandnephew Dayanidhi Maran has been the union cabinet minister for two terms, once as a Minister of Information and Technology and once as a Minister of Textiles. One of Karunanidhi's sons, M. K. Stalin, has been a four-time MLA in Tamil Nadu Legislative assembly and a one-time deputy Chief Minister of Tamil Nadu; another son,"} +{"qid": "test3164", "pid": "3797646", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"M. K. Stalin\"\nM. K. Stalin Muthuvel Karunanidhi Stalin (Tamil pronunciation: \"\"Mu. Ka. Sṭāliṉ\"\"; born 1 March 1953) known as M. K. Stalin, is an Indian politician from Tamil Nadu and president of the Dravida Munnetra Kazhagam (DMK) political party. He was the 37th Mayor of Chennai from 1996 to 2002 and 1st Deputy Chief Minister of Tamil Nadu from 2009 to 2011. Stalin is the third son of 3rd Chief Minister of Tamil Nadu and DMK Chief M. Karunanidhi, and was born to his second wife, Dayalu Ammal. Stalin did Pre-university Course in Vivekananda College and completed his graduation in history from"} +{"qid": "test3164", "pid": "15204462", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "J. Jayalalithaa", "passage": "\"2011 Tamil Nadu Legislative Assembly election\"\nthe state. In both Tamil Nadu and Pondicherry, Congress did poorly reflecting widespread anger and disapproval. J. Jayalalithaa was sworn in as the Chief Minister of Tamil Nadu for the third time on 16 May 2011. She submitted her unanimous election as the leader of ADMK legislature party to Governor Surjit Singh Barnala on 15 May 2011. She was sworn-in along with 33 other ministers at the Madras University centenary auditorium on 16 May 2011 by the Governor, the same venue she took oath in 1991 when she first became chief minister. She and all other ministers took oath in"} +{"qid": "test3164", "pid": "17892066", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "M. Karunanidhi", "passage": "\"Krishnan–Panju\"\n1949, they made \"\"Nallathambi\"\", inspired by \"\"Mr. Deeds Goes to Town\"\", in which C. N. Annadurai, who later became the Chief Minister of Tamil Nadu, debuted as a script writer. In 1952, they made \"\"Parasakthi\"\", for which the dialogues were written by M. Karunanidhi, who also later became the Chief Minister of Tamil Nadu. \"\"Parasakthi\"\" became a cult film in Tamil cinema and influenced the emergence of the Dravida Munnetra Kazhagam, a regional party, as a political force in Tamil Nadu. They also made Hindi films such as \"\"Bhabhi\"\" and \"\"Shaadi\"\". They received the Kalaimamani award in 1960. Krishnan had"} +{"qid": "test3164", "pid": "20574720", "query": "chief ministers of tamil nadu mentioned on wikipedia", "answer": "K. Palaniswami", "passage": "\"Government Pudukkottai Medical College and Hospital\"\nGovernment Pudukkottai Medical College and Hospital Government Pudukkottai Medical College and Hospital (Tamil: புதுக்கோட்டை அரசு மருத்துவக் கல்லூரி மற்றும் மருத்துவமனை) is a medical college run by the state government of Tamil Nadu, which is recognized by Medical Council of India. It is located in the town of Pudukkottai, in Tamil Nadu. The college was sanctioned by late former Chief Minister J Jayalalithaa in August 2015 and she laid the foundation for the college and hospital on March 1 2016. It was inaugurated by the then Chief Minister of Tamil Nadu, Edappadi K. Palaniswami, on June 9, 2017. The College and hospital"} +{"qid": "test3167", "pid": "50396", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"Bald eagle\"\nits common and specific scientific names from the distinctive appearance of the adult's head. \"\"Bald\"\" in the English name is derived from the word \"\"piebald\"\", and refers to the white head and tail feathers and their contrast with the darker body. The genus name is New Latin: \"\"Haliaeetus\"\" (from the ), and the specific name, \"\"leucocephalus\"\", is Latinized () and (). The bald eagle was one of the many species originally described by Linnaeus in his 18th century work \"\"Systema Naturae\"\", under the name \"\"Falco leucocephalus\"\". There are two recognized subspecies of bald eagle: The bald eagle forms a species"} +{"qid": "test3167", "pid": "16618628", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"Decorah Bald Eagles\"\nand tail) develops when bald eagles are sexually mature, between 4 and 5 years of age. The species is placed in the genus \"\"Haliaeetus\"\" (sea eagles) which gets both its common and scientific names from the distinctive appearance of the adult's head. \"\"Bald\"\" in the English name is derived from the word \"\"piebald\"\", meaning \"\"white headed\"\". The Decorah Mom is younger than Dad, and is easily differentiated by her \"\"eyeshadow\"\" and darker feathers interspersed with the white ones on her head and tail. Dad has a fully white head and tail and is noticeably smaller than Mom; male bald eagles"} +{"qid": "test3167", "pid": "4997299", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"Sea eagle\"\ndiets consist mainly of fish and small mammals. The genus \"\"Haliaeetus\"\" was introduced in 1809 by the French naturalist Marie Jules César Savigny in his chapter on birds in the \"\"Description de l'Égypte\"\". The two fish eagles in the genus \"\"Ichthyophaga\"\" found to lie within the genus in a genetic study in 2005, and then placed therein. They are very similar to the tropical \"\"Haliaeetus\"\" species. The 10 living species are: The tail is entirely white in adult \"\"Haliaeetus\"\" species except for Sanford's, White-bellied, and Pallas's. Three species pairs exist: white-tailed and bald eagles, Sanford's and white-bellied sea eagles, and"} +{"qid": "test3167", "pid": "50395", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"Bald eagle\"\ngape to the tip of the bill is . The bill size is unusually variable as Alaskan eagles could be up to twice the bill length of \"\"southern birds\"\" (i.e. from Georgia, Louisiana, Florida), with means in between the sexes of and in culmen length, respectively, from these two areas. The call consists of weak staccato, chirping whistles, \"\"kleek kik ik ik ik\"\", somewhat similar in cadence to a gull's call. The calls of young birds tend to be more harsh and shrill than those of adults. The bald eagle placed in the genus \"\"Haliaeetus\"\" (sea eagles) which gets both"} +{"qid": "test3167", "pid": "4997298", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"Sea eagle\"\nSea eagle A sea eagle (also called erne or ern, mostly in reference to the white-tailed eagle) is any of the birds of prey in the genus Haliaeetus in the bird of prey family Accipitridae. Sea eagles vary in size, from Sanford's sea eagle, averaging 2.0–2.7 kg, to the huge Steller's sea eagle, weighing up to 9 kg. At up to 6.9 kg, the white-tailed eagle is the largest eagle in Europe. Bald eagles can weigh up to 7.5 kg, making them the largest eagle native to North America. The white-bellied sea eagle can weigh up to 3.4 kg. Their"} +{"qid": "test3167", "pid": "5831381", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"African fish eagle\"\nthough related, each species occurs on different continents, with the bald eagle being resident in North America. The African fish eagle is a species placed in the genus \"\"Haliaeetus\"\" (sea eagles). Its closest relative appears to be the critically endangered Madagascar fish eagle (\"\"H. vociferoides\"\"). Like all sea eagle species pairs, this one consists of a white-headed species (the African fish eagle) and a tan-headed one. These are an ancient lineage of sea eagles, and as such, have dark talons, beaks, and eyes Both species have at least partially white tails even as juveniles. The scientific name is derived from"} +{"qid": "test3167", "pid": "5831382", "query": "what is the genus of a bald eagle", "answer": "Haliaeetus", "passage": "\"African fish eagle\"\n\"\"Haliaeetus\"\", New Latin for \"\"sea eagle\"\" (from the Ancient Greek \"\"haliaetos\"\"), and \"\"vocifer\"\" is derived from its original genus name, so named by the French naturalist François Levaillant, who called it 'the vociferous one'. The African fish eagle is a large bird, and the female, at is larger than the male, at . This is typical sexual dimorphism in birds of prey. Males usually have wingspans around , while females have wingspans of . The body length is . The adult is very distinctive in appearance with a mostly brown body with a white head like the bald eagle and"} +{"qid": "test3168", "pid": "525078", "query": "who directed the best years of our lives", "answer": "William Wyler", "passage": "\"The Best Years of Our Lives\"\n\"\"Screen Directors Playhouse\"\" presented \"\"The Best Years of Our Lives\"\" on NBC. Andrews and Janet Waldo starred in the half-hour adaptation. The Best Years of Our Lives The Best Years of Our Lives (aka Glory for Me and Home Again) is a 1946 American drama film directed by William Wyler and starring Myrna Loy, Fredric March, Dana Andrews, Teresa Wright, Virginia Mayo, and Harold Russell. The film is about three United States servicemen readjusting to civilian life after coming home from World War II. Samuel Goldwyn was inspired to produce a film about veterans after reading an August 7, 1944,"} +{"qid": "test3168", "pid": "525059", "query": "who directed the best years of our lives", "answer": "William Wyler", "passage": "\"The Best Years of Our Lives\"\nThe Best Years of Our Lives The Best Years of Our Lives (aka Glory for Me and Home Again) is a 1946 American drama film directed by William Wyler and starring Myrna Loy, Fredric March, Dana Andrews, Teresa Wright, Virginia Mayo, and Harold Russell. The film is about three United States servicemen readjusting to civilian life after coming home from World War II. Samuel Goldwyn was inspired to produce a film about veterans after reading an August 7, 1944, article in \"\"Time\"\" about the difficulties experienced by men returning to civilian life. Goldwyn hired former war correspondent MacKinlay Kantor to"} +{"qid": "test3168", "pid": "723322", "query": "who directed the best years of our lives", "answer": "William Wyler", "passage": "\"William Wyler\"\nproblems of returning veterans in their adjustment back to civilian life. Arguably his most personal film, \"\"Best Years\"\" drew on Wyler's own experience returning home to his family after three years on the front. \"\"The Best Years of Our Lives\"\" won the Academy Award for Best Director (Wyler's second) and Academy Award for Best Picture, as well as seven other Academy Awards. In 1949 Wyler directed \"\"The Heiress\"\", which earned Olivia de Havilland her second Oscar and garnered additional Oscars for Best Art Direction, Best Costume Design, and Best Music. The film is considered by some to be a highlight"} +{"qid": "test3170", "pid": "11034492", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "ICD-10\n70,000 ICD-10-PCS procedure codes and over 69,000 ICD-10-CM diagnosis codes, compared to about 3,800 procedure codes and roughly 14,000 diagnosis codes found in the previous ICD-9-CM. There was much controversy when the transition from the ICD-9-CM to the ICD-10-CM was first announced in the US. Many providers were concerned about the vast number of codes being added, the complexity of the new coding system, and the costs associated with the transition . The Centers for Medicare and Medicaid Services (CMS) weighed these concerns against the benefits of having more accurate data collection, clearer documentation of diagnoses and procedures, and more"} +{"qid": "test3170", "pid": "6232554", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "\"ICD-10 Procedure Coding System\"\nis the 'section'. The second through seventh characters mean different things in each section. Each character can be any of 34 possible values the ten digits 0-9 and the 24 letters A-H, J-N and P-Z may be used in each character. The letters O and I are excluded to avoid confusion with the numbers 0 and 1. There are no decimals in ICD-10-PCS Of the 72,081 codes in ICD-10-PCS, 62,022 are in the first section, \"\"Medical and surgical\"\". For medical/surgical, these are the root operation codes: 00 alteration; 01 bypass; 02 change; 03 control; 04 creation; 05 destruction; 06 detachment;"} +{"qid": "test3170", "pid": "11034484", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "ICD-10\nclassification, the code set allows for more than 14,000 different codes, and permits the tracking of many new diagnoses compared to the preceding ICD-9. Through the use of optional sub-classifications ICD-10 allows for specificity regarding the cause, manifestation, location, severity, and type of injury or disease. The adapted versions may differ in a number of ways, and some national editions have expanded the code set even further; with some going so far as to add procedure codes. ICD-10-CM, for example, has over 70,000 codes. The WHO provides detailed information regarding the ICD via their website – including an ICD-10 online"} +{"qid": "test3170", "pid": "11034495", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "ICD-10\nimprovement from ICD-9 which had a limited number of codes and a restrictive structure. Early concerns in the implementation of ICD-10 included the cost and the availability of resources for training healthcare workers and professional coders. Two common complaints in the United States about the ICD-10-CM are 1) the long list of potentially relevant codes for a given condition (such as rheumatoid arthritis) which can be confusing and reduce efficiency and 2) the assigned codes for seldom seen conditions (i.e W55.22XA: Struck by cow, initial encounter and V91.07XA: Burn due to water-skis on fire, initial encounter). ICD-10 ICD-10 is the"} +{"qid": "test3170", "pid": "6232555", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "\"ICD-10 Procedure Coding System\"\n07 dilation; 08 division; 09 drainage; 0B excision; 0C extirpation; 0D extraction; 0F fragmentation; 0G fusion; 0H insertion; 0J inspection; 0K map; 0L occlusion; 0M reattachment; 0N release; 0P removal; 0Q repair; 0R replacement; 0S reposition; 0T resection; 0U supplement ; 0V restriction; 0X transfer; 0Y transplantation They can be grouped into several categories: ICD-10 Procedure Coding System The ICD-10 Procedure Coding System (ICD-10-PCS) is an international system of medical classification used for procedural coding. The Centers for Medicare and Medicaid Services, the agency responsible for maintaining the inpatient procedure code set in the U.S., contracted with 3M Health Information"} +{"qid": "test3170", "pid": "204893", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "\"International Statistical Classification of Diseases and Related Health Problems\"\nthe ICD-10 (without clinical extensions) was adopted for reporting mortality, but ICD-9-CM was still used for morbidity. Meanwhile, NCHS received permission from the WHO to create a clinical modification of the ICD-10, and has production of all these systems: On 21 August 2008, the US Department of Health and Human Services (HHS) proposed new code sets to be used for reporting diagnoses and procedures on health care transactions. Under the proposal, the ICD-9-CM code sets would be replaced with the ICD-10-CM code sets, effective 1 October 2013. On 17 April 2012 the Department of Health and Human Services (HHS) published"} +{"qid": "test3170", "pid": "11034489", "query": "how many characters are present in icd-10 codes", "answer": "7", "passage": "ICD-10\nhas added more detail and omits codes of the international version in the context of clinical use of ICD: The codes F64.1 (Dual-role transvestism), F64.2 (Gender identity disorder of childhood), F65.0 (Fetishism), F65.1 (Fetishistic transvestism), F65.5 (Sadomasochism), F65.6 (Multiple disorders of sexual preference) are not used in Sweden since 1 January 2009 according to a decision by the present Director General of The National Board of Health and Welfare, Sweden. The code O60.0 (Preterm labor without delivery) is not used in Sweden; instead, since 1 January 2009, the Swedish extension codes to O47 (False labor) are recommended for use. First"} +{"qid": "test3171", "pid": "3085101", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Dura mater\"\nloan translation of Arabic (umm al-dimāgh al-ṣafīcah), literally \"\"thick mother of the brain\"\", matrix of the brain, and is also referred to by the term \"\"pachymeninx\"\" (plural \"\"pachymeninges\"\"). The dura has been described as \"\"tough\"\" and \"\"leather-like\"\". Dura mater Dura mater, or dura, is a thick membrane made of dense irregular connective tissue that surrounds the brain and spinal cord. It is the outermost of the three layers of membrane called the meninges that protect the central nervous system. The other two meningeal layers are the arachnoid mater and the pia mater. The dura surrounds the brain and the spinal"} +{"qid": "test3171", "pid": "3085092", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Dura mater\"\nDura mater Dura mater, or dura, is a thick membrane made of dense irregular connective tissue that surrounds the brain and spinal cord. It is the outermost of the three layers of membrane called the meninges that protect the central nervous system. The other two meningeal layers are the arachnoid mater and the pia mater. The dura surrounds the brain and the spinal cord and is responsible for keeping in the cerebrospinal fluid. It is derived from neural crest cells. The dura mater has several functions and layers. The dura mater is a membrane that envelops the arachnoid mater. It"} +{"qid": "test3171", "pid": "478795", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Brain tumor\"\namong heavy users of wireless and cordless telephones were conducted. Human brains are surrounded by a system of connective tissue membranes called meninges that separate the brain from the skull. This three-layered covering is composed of (from the outside in) the dura mater (\"\"hard mother\"\"), arachnoid mater (\"\"spidery mother\"\"), and pia mater (\"\"tender mother\"\"). The arachnoid and pia are physically connected and thus often considered as a single layer, the pia-arachnoid, or \"\"leptomeninges\"\". Between the arachnoid mater and the pia mater is the subarachnoid space which contains cerebrospinal fluid (CSF). This fluid circulates in the narrow spaces between cells and"} +{"qid": "test3171", "pid": "9972450", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Laminar organization\"\nCells that remain in the epiblast become ectoderm. This is the trilaminar disc and the epiblast cells have given rise to the three germ layers. In the brain a laminar organization is evident in the arrangement of the three meninges, the membranes that cover the brain and spinal cord. These membranes are the dura mater, arachnoid mater, and pia mater. The dura mater has two layers a periosteal layer near to the bone of the skull, and a meningeal layer next to the other meninges. The cerebral cortex, the outer neural sheet covering the cerebral hemispheres can be described by"} +{"qid": "test3171", "pid": "2409999", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "Meninges\narranged, fibroelastic layer of cells, characterized by multiple interdigitating cell processes, no extracellular collagen, and significant extracellular spaces. The middle region is a mostly fibrous portion. It consists of two layers: the endosteal layer, which lies closest to the calvaria (skullcap), and the inner meningeal layer, which lies closer to the brain. It contains larger blood vessels that split into the capillaries in the pia mater. It is composed of dense fibrous tissue, and its inner surface is covered by flattened cells like those present on the surfaces of the pia mater and arachnoid mater. The dura mater is a"} +{"qid": "test3171", "pid": "2603314", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Pia mater\"\nwith the other meningeal layers to protect and cushion the brain. The pia mater allows blood vessels to pass through and nourish the brain. The perivascular space created between blood vessels and pia mater functions as a lymphatic system for the brain. When the pia mater becomes irritated and inflamed the result is meningitis. Pia mater is the thin, translucent, mesh-like meningeal envelope, spanning nearly the entire surface of the brain. It is absent only at the natural openings between the ventricles, the median aperture, and the lateral aperture. The pia firmly adheres to the surface of the brain and"} +{"qid": "test3171", "pid": "6133212", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Arachnoid mater\"\nreason some meningiomas can appear as completely inside the brain. Arachnoid mater The arachnoid mater is one of the three meninges, the protective membranes that cover the brain and spinal cord. The arachnoid mater is a derivative of the neural crest mesectoderm in the embryo. It is interposed between the two other meninges, the more superficial and much thicker dura mater and the deeper pia mater, from which it is separated by the subarachnoid space. The delicate arachnoid layer is attached to the inside of the dura and surrounds the brain and spinal cord. It does not line the brain"} +{"qid": "test3171", "pid": "6133207", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Arachnoid mater\"\nArachnoid mater The arachnoid mater is one of the three meninges, the protective membranes that cover the brain and spinal cord. The arachnoid mater is a derivative of the neural crest mesectoderm in the embryo. It is interposed between the two other meninges, the more superficial and much thicker dura mater and the deeper pia mater, from which it is separated by the subarachnoid space. The delicate arachnoid layer is attached to the inside of the dura and surrounds the brain and spinal cord. It does not line the brain down into its sulci (folds), as does the pia mater,"} +{"qid": "test3171", "pid": "12314131", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "Telencephalization\nthe pia mater, the innermost layer of the meninges (a group of protective tissues that surround the brain). As the cerebral cortex becomes thicker, the fibers of radial glia extend and preserve their connections with the pia mater [2]. The job of these radial glia are to provide guidance for neurons migrating throughout the developing brain. Asymmetrical division goes on for approximately three months during human development [2]. An estimate of how many neurons the human brain possesses comes out to be about 100 billion neurons, so that means on any given day during this three-month period of asymmetrical division,"} +{"qid": "test3171", "pid": "2410002", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "Meninges\ninner surface toward the innermost collagenous portion of the arachnoid reticular layer. The pia mater () is a very delicate membrane. It is the meningeal envelope that firmly adheres to the surface of the brain and spinal cord, following all of the brain's contours (the gyri and sulci). It is a very thin membrane composed of fibrous tissue covered on its outer surface by a sheet of flat cells thought to be impermeable to fluid. The pia mater is pierced by blood vessels to the brain and spinal cord, and its capillaries nourish the brain. The arachnoid and pia mater"} +{"qid": "test3171", "pid": "2603318", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Pia mater\"\nof the extracellular space. The cranial pia mater joins with the ependyma, which lines the cerebral ventricles to form choroid plexuses that produce cerebrospinal fluid. Together with the other meningeal layers, the function of the pia mater is to protect the central nervous system by containing the cerebrospinal fluid, which cushions the brain and spine. The cranial pia mater covers the surface of the brain. This layer goes in between the cerebral gyri and cerebellar laminae, folding inward to create the tela chorioidea of the third ventricle and the choroid plexuses of the lateral and third ventricles. At the level"} +{"qid": "test3171", "pid": "12886877", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "Meningitis\ncan be diagnosed after death has occurred. The findings from a post mortem are usually a widespread inflammation of the pia mater and arachnoid layers of the meninges. Neutrophil granulocytes tend to have migrated to the cerebrospinal fluid and the base of the brain, along with cranial nerves and the spinal cord, may be surrounded with pus – as may the meningeal vessels. For some causes of meningitis, protection can be provided in the long term through vaccination, or in the short term with antibiotics. Some behavioral measures may also be effective. Bacterial and viral meningitis are contagious, but neither"} +{"qid": "test3171", "pid": "2603322", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Pia mater\"\nmeninges work together as a protection device for the brain, with the CSF often referred to as the fourth layer of the meninges. Cerebrospinal fluid is circulated through the ventricles, cisterns, and subarachnoid space within the brain and spinal cord. About 150 mL of CSF is always in circulation, constantly being recycled through the daily production of nearly 500 mL of fluid. The CSF is primarily secreted by the choroid plexus; however, about one-third of the CSF is secreted by pia mater and the other ventricular ependymal surfaces (the thin epithelial membrane lining the brain and central canal) and arachnoidal"} +{"qid": "test3171", "pid": "3436691", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Spinal canal\"\nSpinal canal The spinal canal (or vertebral canal or spinal cavity) is the space in the vertebral column formed by the vertebrae through which the spinal cord passes. It is a process of the dorsal body cavity. This canal is enclosed within the vertebral foramen of the vertebrae. In the intervertebral spaces, the canal is protected by the ligamentum flavum posteriorly and the posterior longitudinal ligament anteriorly. The outermost layer of the meninges, the dura mater, is closely associated with the arachnoid mater which in turn is loosely connected to the innermost layer, the pia mater. The meninges divide the"} +{"qid": "test3171", "pid": "2410001", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "Meninges\nloosely fitting sac. In particular, in the region of the brain a large number of fine filaments called arachnoid trabeculae pass from the arachnoid through the subarachnoid space to blend with the tissue of the pia mater. The arachnoid is composed of an outermost portion (arachnoid barrier cell layer) with tightly packed cells and no extracellular collagen; that is why it is considered to represent an effective morphological and physiological meningeal barrier between the cerebrospinal fluid and subarachnoid space and the blood circulation in the dura. The arachnoid barrier layer is characterized by a distinct continuous basal lamina on its"} +{"qid": "test3171", "pid": "2603332", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Pia mater\"\nto damage the mitochondria and produce a large scale immune response. Headache and meningismus are often signs of inflammation relayed via trigeminal sensory nerve fibers within the pia mater. Disabling neuropsychological effects are seen in up to half of bacterial meningitis survivors. Research into how bacteria invade and enter the meningeal layers is the next step in prevention of the progression of meningitis. A tumor growing from the meninges is referred to as a meningioma. Most meningiomas grow from the arachnoid mater inward applying pressure on the pia mater and therefore the brain or spinal cord. While meningiomas make up"} +{"qid": "test3171", "pid": "7876759", "query": "which layer of the meninges is connected to the brain", "answer": "pia mater", "passage": "\"Tela choroidea\"\nThe arteries carrying blood into the choroid plexuses are: Medial posterior choroidal branches run forward beneath the splenium of the corpus callosum, and supply the tela chorioidea of the third ventricle and the choroid plexus. Tela choroidea The tela choroidea (or tela chorioidea) is a region of meningeal pia mater and underlying ependyma that gives rise to the choroid plexus in each of the brain’s four ventricles. \"\"Tela\"\" is Latin for \"\"woven\"\" and is used to describe a web-like membrane or layer. The tela choroidea is a very thin part of the loose connective tissue of pia mater that overlies"} +{"qid": "test3172", "pid": "4359361", "query": "who was first governor general of british india", "answer": "Warren Hastings", "passage": "\"Governor General's Bodyguard\"\nthe Indian Army as the President's Bodyguard upon India proclaiming itself a republic in 1950. Governor General's Bodyguard The Governor General's Bodyguard was a cavalry regiment of the British Indian Army. The regiment was, in effect, the Indian equivalent of the Household Cavalry of the British Army. The regiment was first formed in 1773 as the Governor's Troop of Mughals for the first Governor-General of India, Warren Hastings. It was composed of various contingents raised from various parts of India. The regiment saw extensive service. In 1801 the regiment took part in the Egyptian campaign that removed a French force"} +{"qid": "test3172", "pid": "4359356", "query": "who was first governor general of british india", "answer": "Warren Hastings", "passage": "\"Governor General's Bodyguard\"\nGovernor General's Bodyguard The Governor General's Bodyguard was a cavalry regiment of the British Indian Army. The regiment was, in effect, the Indian equivalent of the Household Cavalry of the British Army. The regiment was first formed in 1773 as the Governor's Troop of Mughals for the first Governor-General of India, Warren Hastings. It was composed of various contingents raised from various parts of India. The regiment saw extensive service. In 1801 the regiment took part in the Egyptian campaign that removed a French force that had invaded Egypt. In 1811 the regiment was involved in the campaign to seize"} +{"qid": "test3172", "pid": "2875916", "query": "who was first governor general of british india", "answer": "Warren Hastings", "passage": "\"Third Anglo-Maratha War\"\nThird Anglo-Maratha War The Third Anglo-Maratha War (1817–1818) was the final and decisive conflict between the British East India Company (EIC) and the Maratha Empire in India. The war left the Company in control of most of India. It began with an invasion of the Maratha territory by British East India Company troops, the largest such British controlled force massed in India. The troops were led by the Governor General Hastings (no relation to Warren Hastings, the first Governor-General of Bengal) supported by a force under General Thomas Hislop. Operations began against the Pindaris, a band of Muslim mercenaries and"} +{"qid": "test3172", "pid": "1445535", "query": "who was first governor general of british india", "answer": "Warren Hastings", "passage": "\"Warren Hastings\"\nBritish India with its capital in Calcutta. Hastings was considered the natural choice to be the first Governor General. While Governor, Hastings launched a major crackdown on bandits operating in Bengal, which proved largely successful. He also faced the severe Bengal Famine, which resulted in about ten million deaths. In 1773, he was appointed the first Governor-General of Bengal. He was also the first governor in India. The post was new, and British mechanisms to administer the territory were not fully developed. Regardless of his title, Hastings was only a member of a five-man Supreme Council of Bengal so confusedly"} +{"qid": "test3172", "pid": "11919527", "query": "who was first governor general of british india", "answer": "Louis Mountbatten", "passage": "\"History of the British Raj\"\ninto being, with Muhammad Ali Jinnah sworn in as its first Governor General in Karachi. The following day, 15 August 1947, India, now a smaller \"\"Union of India\"\", became an independent country with official ceremonies taking place in New Delhi, and with Jawaharlal Nehru assuming the office of the prime minister, and the viceroy, Louis Mountbatten, staying on as its first Governor General. History of the British Raj The history of the British Raj refers to the period of British rule on the Indian subcontinent between 1858 and 1947. The system of governance was instituted in 1858 when the rule"} +{"qid": "test3172", "pid": "1924351", "query": "who was first governor general of british india", "answer": "Warren Hastings", "passage": "\"Governor-General of India\"\nson of a Duke. Only the first and last Governors-GeneralWarren Hastings and Chakravarti Rajagopalacharias well as some provisional Governors-General, had no honorific titles at all. From around 1885, the Viceroy of India was allowed to fly a Union Flag augmented in the centre with the 'Star of India' surmounted by a Crown. This flag was not the Viceroy's personal flag; it was also used by Governors, Lieutenant Governors, Chief Commissioners and other British officers in India. When at sea, only the Viceroy flew the flag from the mainmast, while other officials flew it from the foremast. From 1947 to 1950,"} +{"qid": "test3172", "pid": "5430887", "query": "who was first governor general of british india", "answer": "Warren Hastings", "passage": "\"Archaeological Survey of India\"\nsurvey organisations of India. ASI was founded in 1861 by Alexander Cunningham who also became its first Director-General. The first systematic research into the subcontinent's history was conducted by the Asiatic Society, which was founded by the British Indologist William Jones on 15 January 1784. Based in Calcutta, the society promoted the study of ancient Sanskrit and Persian texts and published an annual journal titled \"\"Asiatic Researches\"\". Notable among its early members was Charles Wilkins who published the first English translation of the \"\"Bhagavad Gita\"\" in 1785 with the patronage of the then Governor-General of India, Warren Hastings. However, the"} +{"qid": "test3173", "pid": "4472476", "query": "where is the heart of palm on a palm tree", "answer": "inner core and growing bud", "passage": "\"Heart of palm\"\nHeart of palm Heart of palm is a vegetable harvested from the inner core and growing bud of certain palm trees (notably coconut (\"\"Cocos nucifera\"\"), juçara (\"\"Euterpe edulis\"\"), Açaí palm (\"\"Euterpe oleracea\"\"), palmetto (\"\"Sabal\"\" spp.), and peach palm. Harvesting of many uncultivated or wild single-stemmed palms results in palm tree death (e.g. \"\"Geonoma edulis\"\"). However, other palm species are clonal or multi-stemmed plants (e.g. \"\"Prestoea acuminata\"\", \"\"Euterpe oleracea\"\") and moderate harvesting will not kill the entire clonal palm. Heart of palm may be eaten on its own, and often it is eaten in a salad. An alternative to wild heart"} +{"qid": "test3174", "pid": "17666606", "query": "which player won the pga championship by the most shots", "answer": "Rory McIlroy", "passage": "\"2014 PGA Championship\"\n2014 PGA Championship The 2014 PGA Championship was the 96th PGA Championship, played August 7–10 at Valhalla Golf Club in Louisville, Kentucky. This was the third PGA Championship at Valhalla, which previously hosted in 1996 and 2000, both won in playoffs, as well as the Ryder Cup in 2008. Rory McIlroy won his second PGA Championship and fourth career major title, one stroke ahead of runner-up Phil Mickelson. Previous course lengths for major championships The second hole was previously played as a par 5. The following qualification criteria were used to select the field. Each player is listed according to"} +{"qid": "test3174", "pid": "17666617", "query": "which player won the pga championship by the most shots", "answer": "Rory McIlroy", "passage": "\"2014 PGA Championship\"\npar\"\" 2014 PGA Championship The 2014 PGA Championship was the 96th PGA Championship, played August 7–10 at Valhalla Golf Club in Louisville, Kentucky. This was the third PGA Championship at Valhalla, which previously hosted in 1996 and 2000, both won in playoffs, as well as the Ryder Cup in 2008. Rory McIlroy won his second PGA Championship and fourth career major title, one stroke ahead of runner-up Phil Mickelson. Previous course lengths for major championships The second hole was previously played as a par 5. The following qualification criteria were used to select the field. Each player is listed according"} +{"qid": "test3175", "pid": "20965230", "query": "who made the poppies at tower of london", "answer": "Tom Piper", "passage": "\"Beyond the Deepening Shadow\"\nwas conceived by Tom Piper and directed by Anna Morrissey. The installation was similar to \"\"Blood Swept Lands and Seas of Red\"\", an installation of poppies at the Tower which commemorated the start of the war. That was so popular that crowd control measures were organised to control the large number of spectators. Beyond the Deepening Shadow Beyond the Deepening Shadow: The Tower Remembers was an artistic installation at the Tower of London in November 2018, to commemorate the centenary of the end of the First World War. Each evening in the week before Remembrance Day, 10,000 torches were lit"} +{"qid": "test3175", "pid": "11277547", "query": "who made the poppies at tower of london", "answer": "Tom Piper", "passage": "\"Tom Piper\"\nat the Tower of London. The installation consisted of 888,246 ceramic poppies and was a commemoration of the centenary of World War I. He was appointed a Member of the Order of the British Empire (MBE) in the 2015 New Year Honours for services to theatre and First World War commemorations. In 2009, Piper collected the Laurence Olivier Award for Best Costume Design for his work on \"\"The Histories\"\". Tom Piper Tom Piper MBE (born 24 November 1964) is a British theatre designer who regularly collaborates with director Michael Boyd. He became an associate designer with the Royal Shakespeare Company"} +{"qid": "test3175", "pid": "18338020", "query": "who made the poppies at tower of london", "answer": "Paul Cummins", "passage": "\"Blood Swept Lands and Seas of Red\"\nof London, was installed to mark the centenary of the end of the war. It ran nightly, ending on Armistice Day (11 November) 2018. Blood Swept Lands and Seas of Red Blood Swept Lands and Seas of Red was a public art installation created in the moat of the Tower of London, England, between July and November 2014. It commemorated the centenary of the outbreak of World War I and consisted of 888,246 ceramic red poppies, each intended to represent one British or Colonial serviceman killed in the War. The ceramic artist was Paul Cummins, with conceptual design by the"} +{"qid": "test3176", "pid": "6265351", "query": "what is the inner core of the earth made from", "answer": "some other elements", "passage": "\"Inner core\"\nfeature that was present during the planet's formation, but a feature younger than the Earth (the Earth is about 4.5 billion years old). Inner core The Earth's inner core is the Earth's innermost part. It is primarily a solid ball with a radius of about , which is about 70% of the Moon's radius. It is composed of an iron–nickel alloy and some other elements. The temperature at the inner core's surface is approximately or 9806 °F, which is about the temperature at the surface of the Sun. The Earth was discovered to have a solid inner core distinct from"} +{"qid": "test3176", "pid": "6265337", "query": "what is the inner core of the earth made from", "answer": "some other elements", "passage": "\"Inner core\"\nInner core The Earth's inner core is the Earth's innermost part. It is primarily a solid ball with a radius of about , which is about 70% of the Moon's radius. It is composed of an iron–nickel alloy and some other elements. The temperature at the inner core's surface is approximately or 9806 °F, which is about the temperature at the surface of the Sun. The Earth was discovered to have a solid inner core distinct from its molten outer core in 1936, by the Danish seismologist Inge Lehmann, who deduced its presence by studying seismograms from earthquakes in New"} +{"qid": "test3176", "pid": "4463734", "query": "what is the inner core of the earth made from", "answer": "iron–nickel alloy", "passage": "\"Structure of the Earth\"\nof iron–nickel alloy was subjected to the corelike pressures by gripping it in a vise between 2 diamond tips (diamond anvil cell), and then heating to approximately 4000 K. The sample was observed with x-rays, and strongly supported the theory that Earth's inner core was made of giant crystals running north to south. The liquid outer core surrounds the inner core and is believed to be composed of iron mixed with nickel and trace amounts of lighter elements. Recent speculation suggests that the innermost part of the core is enriched in gold, platinum and other siderophile elements. The matter that"} +{"qid": "test3177", "pid": "1402993", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"Military history of the United States\"\ndid. The British sent four invasion armies. Washington's strategy forced the first army out of Boston in 1776, and was responsible for the surrender of the second and third armies at Saratoga (1777) and Yorktown (1781). He limited the British control to New York and a few places while keeping Patriot control of the great majority of the population. The Loyalists, on whom the British had relied too heavily, comprised about 20% of the population but were never well organized. As the war ended, Washington watched proudly as the final British army quietly sailed out of New York City in"} +{"qid": "test3177", "pid": "2697839", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"Province of New York\"\nleave New York City for a British warship offshore, ending any appearances of British rule of the colony as the Continental Congress ordered the arrest of anyone endangering the safety of the colony. In April 1776 Tryon officially dissolved the New York assembly. New York was located in the Northern theatre of the American Revolutionary War. New York served as the launching point for the failed Invasion of Canada in 1775, the first major military operation of the newly formed Continental Army. General George Washington took the Continental Army from Boston after the British withdrew following the Fortification of Dorchester"} +{"qid": "test3177", "pid": "19646344", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"USS Trumbull (1776 row galley)\"\nBritish troops from invading the newly independent colonies from Canada through the Lake Champlain, Lake George, Hudson River corridor. Then, when the Royal Navy finally did manage to best Arnold's flotilla at Valcour Island in the autumn of 1776, winter was too close to permit English land forces to take advantage of British victory by a thrust down the corridor to attack Washington's army from the rear. This gave the colonies additional time to recruit, train, and arm the forces which the following year stopped a British invasion in a decisive victory at Saratoga, New York, which has been called"} +{"qid": "test3177", "pid": "739755", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"History of the United States\"\na strategist, however, he had a better idea of how to win the war than they did. The British sent four invasion armies. Washington's strategy forced the first army out of Boston in 1776, and was responsible for the surrender of the second and third armies at Saratoga (1777) and Yorktown (1781). He limited the British control to New York City and a few places while keeping Patriot control of the great majority of the population. The Loyalists, whom the British counted upon too heavily, comprised about 20% of the population but never were well organized. As the war ended,"} +{"qid": "test3177", "pid": "2748", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"American Revolutionary War\"\nJuly 2, 1776, the Second Continental Congress voted for independence, issuing its declaration on July 4. Sir William Howe launched a British counter-offensive, capturing New York City and leaving American morale at a low ebb. However, victories at Trenton and Princeton restored American confidence. In 1777, the British launched an invasion from Quebec under John Burgoyne, intending to isolate the New England Colonies. Instead of assisting this effort, Howe took his army on a separate campaign against Philadelphia, and Burgoyne was decisively defeated at Saratoga in October 1777. Burgoyne's defeat had drastic consequences. France formally allied with the Americans and"} +{"qid": "test3177", "pid": "12596856", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"USS Spitfire (1776 gunboat)\"\nthat year these forces were involved in the invasion of Canada, but poor weather and timely arrival of British reinforcements caused the Americans to fall back to Fort Ticonderoga in May 1776. There they proceeded to build a gunboat fleet to help repel an expected British invasion. The British, under the command of General Guy Carleton, realized that they needed to control Lake Champlain in order to conduct a successful campaign in New York. Since area roads were usually poor quality (if they existed at all), lakes and rivers were important transport routes for both sides. By controlling Lake Champlain,"} +{"qid": "test3177", "pid": "14563870", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"10th Continental Regiment\"\nthe Battle of Long Island, and was part of the panicked retreat after the British landing on Manhattan. Although the regiment was present with the army at White Plains, New York in October 1776, it did not participated in the battle fought there. The regiment was then placed on guard duty at Peekskill, New York, where it remained until it was disbanded at the end of the year. 10th Continental Regiment The 10th Continental Regiment was a unit of the Connecticut Line in the 1776 establishment of the Continental Army. It began as Parson's Connecticut Regiment (also known as the"} +{"qid": "test3177", "pid": "6575570", "query": "where did the british army launch a successful invasion in 1776", "answer": "New York", "passage": "\"Fort Lee Historic Park\"\non November 20, 1776 marked the successful invasion of New Jersey by British and Hessian forces and the subsequent general retreat of the Continental Army during the American Revolutionary War. Peter Bourdette's sixteen-year-old son, also named Peter, provided assistance by direct use of the landing. During the week leading up to the evacuation of Fort Lee he rowed back and forth across the river gathering information for General Washington on the anticipated movements of the British forces. Well after dark on the night before the battle for New York at Fort Washington, George Washington was rowed from Burdett's Landing to"} +{"qid": "test3177", "pid": "16247332", "query": "where did the british army launch a successful invasion in 1776", "answer": "Long Island", "passage": "\"Army National Guard and Active Regular Army Units with Colonial Roots\"\nalso claims the honor of having fired the last rounds of the Revolutionary War when Captain Doughty’s Company fired a 13-gun salute from the same location at the tip of Manhattan as the British withdrew from Fort George, and the American flag was raised over the fort. Hamilton's Battery played a particularly significant role in the Long Island campaign, when it covered the successful withdrawal of Washington’s army across the East River to Brooklyn Heights. Hamilton’s Battery was also in the force that crossed the Delaware River on the night of December 25–26, 1776 to launch a surprise attack on"} +{"qid": "test3179", "pid": "2706773", "query": "who was the first executive president of guyana", "answer": "Arthur Chung", "passage": "\"President of Guyana\"\npresident. The leader of the party receiving the most votes in a General and Regional Election becomes president, and holds office for the legislature's duration—in practice, five years. Presidents are counted beginning with President Arthur Chung in 1970. Executive presidents are counted beginning with President Forbes Burnham (first executive president) in 1980. President of Guyana The President of the Co-operative Republic of Guyana is the head of state and the head of government of Guyana, as well as the commander-in-chief of the armed forces of the Republic, according to the Constitution of Guyana. The President is also the Chancellor of"} +{"qid": "test3179", "pid": "7245557", "query": "who was the first executive president of guyana", "answer": "Arthur Chung", "passage": "\"Parliament Building, Guyana\"\nwas Joseph Hadfield. The building was constructed at a cost of 50,000 pounds. In 1875 Cesar Castellani completed the installation of a sunken panelled ceiling of the Parliamentary chamber in the eastern wing of the Parliament Building. The Chamber also features an elaborately carved teak Speaker's chair, an Independence gift from the Government of India; a table and three chairs for the Clerks, and a Sergeant-at-Arms chair (an Independence gift from the British House of Commons); paintings, of Arthur Chung, Guyana's first ceremonial President (1970-1980) and of Forbes Burnham, Guyana's first executive President (1980-1985); and a gilded clock, depicting the"} +{"qid": "test3179", "pid": "3998788", "query": "who was the first executive president of guyana", "answer": "Forbes Burnham", "passage": "\"Forbes Burnham\"\nvote. In 1980 the constitution was changed to make the presidency an executive post. Burnham won election as president that year. Burnham introduced mass games to Guyana (presumably believing himself to be tantamount to a Roman emperor; and the Guyanese population being tantamount to plebeians). They were first held in February 1980 to commemorate the founding of the Co-operative Republic of Guyana. Burnham remained President of Guyana until his death. He died on 6 August 1985 after undergoing throat surgery (widely - anecdotally - believed to have been intentionally botched) in Georgetown Hospital. Much of the Guyanese population (at home"} +{"qid": "test3179", "pid": "6595210", "query": "who was the first executive president of guyana", "answer": "Forbes Burnham", "passage": "\"President's College (Guyana)\"\nthe Ministry of Education announced a new plan for rebuilding the dormitory and blamed their current contractor for the delays. President's College (Guyana) President's College is a senior secondary school located in Golden Grove, East Coast Demerara, Guyana. Students can enter the school through the National Grade Six Assessment and the lower sixth form in the academic performance of the student at the Caribbean Secondary Education Certificate. President's College, opened in 1985, was founded by the late president of Guyana Forbes Burnham, who launched the project in 1983 but died before the school opened. Students used to be selected from"} +{"qid": "test3179", "pid": "7249432", "query": "who was the first executive president of guyana", "answer": "Arthur Chung", "passage": "\"State House, Guyana\"\nState House, Guyana State House (formerly \"\"Government House\"\") located in Georgetown, is the official residence of the President of Guyana. It was previously the official residence of the Governor of British Guiana before the colony gained independence and became Guyana. The State House main building was built in 1858. It was the residence of the Governor General and in 1970, the country's first president, Arthur Chung, resided there. Former presidents Forbes Burnham and Hugh Desmond Hoyte resided instead in Castellani House, which now houses the Guyana National Art Gallery. In 1992, Dr. Cheddi Jagan, after being elected president, moved into"} +{"qid": "test3179", "pid": "6595208", "query": "who was the first executive president of guyana", "answer": "Forbes Burnham", "passage": "\"President's College (Guyana)\"\nPresident's College (Guyana) President's College is a senior secondary school located in Golden Grove, East Coast Demerara, Guyana. Students can enter the school through the National Grade Six Assessment and the lower sixth form in the academic performance of the student at the Caribbean Secondary Education Certificate. President's College, opened in 1985, was founded by the late president of Guyana Forbes Burnham, who launched the project in 1983 but died before the school opened. Students used to be selected from the top two percent of candidates in the Secondary School Entrance Examination (SSEE) and subjected to an evaluation process including"} +{"qid": "test3179", "pid": "12955113", "query": "who was the first executive president of guyana", "answer": "Forbes Burnham", "passage": "\"Constitution of Guyana\"\nthe country was the British monarch, represented in Guyana by the governor general, who served in a largely ceremonial capacity. Real executive power rested in the prime minister, appointed by the majority party in the renamed National Assembly, and his ministers. The first post-independence elections in 1968 confirmed the dominant role of the PNC and its leader, Forbes Burnham. On February 23, 1970, the Burnham government proclaimed the Cooperative Republic of Guyana. This move had both economic and political ramifications. The government argued that the country's many resources had been controlled by foreign capitalists and that organizing the population into"} +{"qid": "test3179", "pid": "5003528", "query": "who was the first executive president of guyana", "answer": "Arthur Chung", "passage": "\"Arthur Chung\"\nArthur Chung Arthur Chung (January 10, 1918 – June 23, 2008) was the first President of Guyana from 1970 to 1980. He was the first ethnic Chinese (Hakka) head of state in a non-Asian country. During his time as President of Guyana, the office was that of a ceremonial head of state, with real power in the hands of Prime Minister Forbes Burnham. He was honoured with Guyana's highest national honour, the Order of Excellence (O.E.). Chung was born at Windsor Forest, West Coast Demerara in Guyana; he was the youngest of Joseph and Lucy Chung's eight children. He was"} +{"qid": "test3179", "pid": "15486455", "query": "who was the first executive president of guyana", "answer": "Forbes Burnham", "passage": "\"Guyana (1966–1970)\"\nThe Republic of Guyana came into existence on 23 February 1970, when Guyana became a republic within the Commonwealth. Forbes Burnham held office as prime minister (and head of government) of Guyana during this period. Following the abolition of the monarchy, former Governor-General Sir Edward Luckhoo provisionally became the first President of Guyana. Guyana (1966–1970) Guyana was a predecessor to the modern-day Republic of Guyana and an independent state that existed between 1966 and 1970. British rule ended on 26 May 1966, when Guyana was given independence from the United Kingdom by the Guyana Independence Act 1966, which transformed British"} +{"qid": "test318", "pid": "10232927", "query": "who plays stacey's mum in gavin and stacey", "answer": "Melanie Walters", "passage": "\"Gavin & Stacey\"\nGavin & Stacey Gavin & Stacey is a British sitcom, written by James Corden and Ruth Jones, that follows the long-distance relationship of an Englishman and a Welsh woman. The merging of their quirky families forms the focus of the show. Mathew Horne and Joanna Page play the title characters, while the writers co-star as Gavin and Stacey's friends, Smithy and Nessa. Other prominent cast members include Alison Steadman and Larry Lamb, who play Gavin's parents, Pam and Mick, and Melanie Walters and Rob Brydon, who portray Stacey's mother, Gwen, and her uncle, Bryn. The theme for the series was"} +{"qid": "test3182", "pid": "1375511", "query": "who hosted and won the inagural world cup", "answer": "Uruguay", "passage": "\"1978 FIFA World Cup\"\n1978 FIFA World Cup The 1978 FIFA World Cup, the 11th staging of the FIFA World Cup, quadrennial international football world championship tournament, was held in Argentina between 1 and 25 June. The Cup was won by the Argentine hosts, who defeated the Netherlands 3–1 in the final, after extra time. The final was held at River Plate's home stadium, Estadio Monumental, in the Argentine capital of Buenos Aires. This win was the first World Cup title for Argentina, who became the fifth team (after Uruguay, Italy, England and West Germany) to be both hosts and world champions. Argentina, the"} +{"qid": "test3182", "pid": "1375541", "query": "who hosted and won the inagural world cup", "answer": "Uruguay", "passage": "\"1978 FIFA World Cup\"\n1978 FIFA World Cup The 1978 FIFA World Cup, the 11th staging of the FIFA World Cup, quadrennial international football world championship tournament, was held in Argentina between 1 and 25 June. The Cup was won by the Argentine hosts, who defeated the Netherlands 3–1 in the final, after extra time. The final was held at River Plate's home stadium, Estadio Monumental, in the Argentine capital of Buenos Aires. This win was the first World Cup title for Argentina, who became the fifth team (after Uruguay, Italy, England and West Germany) to be both hosts and world champions. Argentina, the"} +{"qid": "test3182", "pid": "701790", "query": "who hosted and won the inagural world cup", "answer": "Uruguay", "passage": "\"1950 FIFA World Cup\"\n1950 FIFA World Cup The 1950 FIFA World Cup, held in Brazil from 24 June to 16 July 1950, was the fourth FIFA World Cup. It was the first World Cup since 1938, the planned 1942 and 1946 competitions having been cancelled due to World War II. It was won by Uruguay, who had won the inaugural competition in 1930. They clinched the cup by beating the hosts Brazil 2–1 in the deciding match of the four-team final group. This was the only tournament not decided by a one-match final. It was also the first tournament where the trophy was"} +{"qid": "test3182", "pid": "701812", "query": "who hosted and won the inagural world cup", "answer": "Uruguay", "passage": "\"1950 FIFA World Cup\"\n1950 FIFA World Cup The 1950 FIFA World Cup, held in Brazil from 24 June to 16 July 1950, was the fourth FIFA World Cup. It was the first World Cup since 1938, the planned 1942 and 1946 competitions having been cancelled due to World War II. It was won by Uruguay, who had won the inaugural competition in 1930. They clinched the cup by beating the hosts Brazil 2–1 in the deciding match of the four-team final group. This was the only tournament not decided by a one-match final. It was also the first tournament where the trophy was"} +{"qid": "test3183", "pid": "43122", "query": "iupac name of element with atomic number 107", "answer": "Bohrium", "passage": "Bohrium\nelement 107. There was an element naming controversy as to what the elements from 104 to 106 were to be called; the IUPAC adopted \"\"unnilseptium\"\" (symbol \"\"Uns\"\") as a temporary, systematic element name for this element. In 1994 a committee of IUPAC recommended that element 107 be named \"\"bohrium\"\", not \"\"nielsbohrium\"\", since there was no precedence for using a scientist's complete name in the naming of an element. This was opposed by the discoverers as there was some concern that the name might be confused with boron and in particular the distinguishing of the names of their respective oxyanions, \"\"bohrate\"\""} +{"qid": "test3183", "pid": "43123", "query": "iupac name of element with atomic number 107", "answer": "Bohrium", "passage": "Bohrium\nand \"\"borate\"\". The matter was handed to the Danish branch of IUPAC which, despite this, voted in favour of the name \"\"bohrium\"\", and thus the name \"\"bohrium\"\" for element 107 was recognized internationally in 1997; the names of the respective oxyanions of boron and bohrium remain unchanged despite their homophony. Bohrium has no stable or naturally occurring isotopes. Several radioactive isotopes have been synthesized in the laboratory, either by fusing two atoms or by observing the decay of heavier elements. Twelve different isotopes of bohrium have been reported with atomic masses 260–262, 264–267, 270–272, 274, and 278, one of which,"} +{"qid": "test3184", "pid": "7403243", "query": "when does boomer find out she a cylon", "answer": "Kobol's Last Gleaming", "passage": "\"Kobol's Last Gleaming\"\ngeneration of God's children.\"\" Adama demands that Roslin resign, since convincing Starbuck to disobey orders violated their power-sharing arrangement where he would make all military decisions and she would oversee the civilians. When she refuses, he sends a team of Marines to \"\"Colonial One\"\" to arrest her. A standoff ensues between Colonel Tigh and Apollo and Roslin surrenders to avoid bloodshed. Both she and Apollo are sent to \"\"Galactica\"\"s brig. Adama orders the Boomer on \"\"Galactica\"\" to destroy the Cylon Basestar orbiting Kobol: a captured Cylon transponder allows Boomer's Raptor to penetrate the Cylon defenses. The launch system jams, so"} +{"qid": "test3184", "pid": "6165309", "query": "when does boomer find out she a cylon", "answer": "Kobol's Last Gleaming", "passage": "\"Number Eight (Battlestar Galactica)\"\nCylon sleeper agent programmed with false memories of being raised in the mining colony Troy by parents Katherine and Abraham Valerii, who supposedly died in an accident that wiped out the colony population. Before the mini-series, Boomer and Galen Tyrol are romantically involved, which is against military protocol due to their ranks. Her programming leads her to black out and sabotage the \"\"Galactica\"\" on several occasions, which Tyrol unwittingly abets by hiding evidence implicating her. In \"\"Kobol's Last Gleaming\"\", Commander Adama sends Boomer on a mission to destroy the Cylon basestar orbiting Kobol; and after her return, she shoots Adama"} +{"qid": "test3185", "pid": "10189891", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"The Treasure of the Sierra Madre (film)\"\nThe Treasure of the Sierra Madre (film) The Treasure of the Sierra Madre is a 1948 American dramatic adventurous neo-western written and directed by John Huston. It is an adaptation of B. Traven's 1927 novel of the same name, set in the 1920s, in which, driven by their desperate economic plight, two young men, Fred C. Dobbs (Humphrey Bogart) and Bob Curtin (Tim Holt), join old-timer Howard (Walter Huston, the director's father) in Mexico to prospect for gold. \"\"The Treasure of the Sierra Madre\"\" was one of the first Hollywood productions to be shot on location outside the United States"} +{"qid": "test3185", "pid": "10189922", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"The Treasure of the Sierra Madre (film)\"\nother... That's what the song is about.\"\"\"\" The Treasure of the Sierra Madre (film) The Treasure of the Sierra Madre is a 1948 American dramatic adventurous neo-western written and directed by John Huston. It is an adaptation of B. Traven's 1927 novel of the same name, set in the 1920s, in which, driven by their desperate economic plight, two young men, Fred C. Dobbs (Humphrey Bogart) and Bob Curtin (Tim Holt), join old-timer Howard (Walter Huston, the director's father) in Mexico to prospect for gold. \"\"The Treasure of the Sierra Madre\"\" was one of the first Hollywood productions to be"} +{"qid": "test3185", "pid": "708504", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"The Treasure of the Sierra Madre\"\nThe Treasure of the Sierra Madre The Treasure of the Sierra Madre (originally titled Der Schatz der Sierra Madre) is a 1927 adventure novel by bilingual German author B. Traven, whose identity remains unknown., In the book, two destitute American men in Mexico of the 1920s join an older American prospector in a search for gold. John Huston adapted the book as a 1948 film of the same name. The novel is set in the decade following the global upheavals of the First World War and social revolutions in Russia and Mexico. The United States has emerged as the dominant"} +{"qid": "test3185", "pid": "3653292", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"B. Traven\"\n\"\"The Death Ship\"\", was \"\"The Treasure of the Sierra Madre\"\", published first in German in 1927 as \"\"Der Schatz der Sierra Madre\"\". The action of the book is again set in Mexico, and its main characters are a group of American adventurers and gold seekers. In 1948 the book was filmed under the same title (\"\"The Treasure of the Sierra Madre\"\") by the Hollywood director John Huston. The film, starring Humphrey Bogart and Walter Huston, was a great commercial success, and in 1949 it won three Academy Awards. The figure of Gerald Gales returned in Traven's next book, \"\"The Bridge"} +{"qid": "test3185", "pid": "11075701", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"The Flintstones: The Treasure of Sierra Madrock\"\nThe Flintstones: The Treasure of Sierra Madrock The Flintstones: The Treasure of Sierra Madrock is a 1994 side scrolling action video game by Taito for the Super Nintendo Entertainment System. The story of the game is generally based on the 1960s \"\"The Flintstones\"\" cartoon series. The title is a reference to the 1927 novel \"\"The Treasure of the Sierra Madre\"\" by B. Traven and its 1948 film adaptation. In the opening story of the game, the Water Buffalos' leader decides to retire. As his last decree as Great Poobah, he makes a contest in which whoever finds the Treasure of"} +{"qid": "test3185", "pid": "3653333", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"B. Traven\"\nof \"\"The Treasure of the Sierra Madre\"\". Asked by the crew members if he was Traven, he always denied, but he did so in such a way that his interlocutors came to the conclusion that he and B. Traven were indeed one and the same person. The media publicity which accompanied the premiere of \"\"The Treasure of the Sierra Madre\"\" and the aura of mystery surrounding the author of the literary original of the film (rumour had it that \"\"Life\"\" magazine offered a reward of $5,000 for finding the real B. Traven) induced a Mexican journalist named Luis Spota to"} +{"qid": "test3185", "pid": "9728077", "query": "who wrote the treasure of the sierra madre", "answer": "B. Traven", "passage": "\"Jeff Biggers\"\nof a resilient indigenous culture in the Americas, the exploits of the Mexican mountaineers, and the parade of argonauts and accidental travelers that has journeyed into the Sierra Madre over centuries. From African explorers, Bohemian friars, Confederate and Irish war deserters, French poets, Boer and Russian commandos, hidden Apache and Mennonite communities, bewildered archaeologists, addled writers, and legendary characters like Antonin Artaud, B. Traven, Sergei Eisenstein, George Patton, Geronimo and Pancho Villa, Biggers searches for the legendary treasures of the Sierra Madre (Mexico's Copper Canyon). \"\"In the Sierra Madre\"\" won the Gold Medal in Foreword Magazine's Book of the Year"} +{"qid": "test3187", "pid": "6731094", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"Nala (The Lion King)\"\nvoice of adult Nala.\"\" A straight woman character, Kelly described Nala as a sensible and nurturing yet authoritative character, while Amber Leab of Bitch Flicks described her as strong, independent and intelligent. According to Oh My Disney, Nala serves as \"\"the proverbial glue that keeps \"\"The Lion King\"\" together\"\", from whose perspective the audience watches the film because she \"\"says EXACTLY what we’re thinking\"\". Occupying the role of the film's female lead, Nala is \"\"The Lion King\"\"'s most important female character, who contributes to the film's \"\"small romance element\"\". Often identified as the film's deuteragonist, Taylor Orci of \"\"The Atlantic\"\""} +{"qid": "test3187", "pid": "895822", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"The Lion King\"\nreleased called \"\"The Lion Guard\"\", featuring Kion, the second-born cub of Simba and Nala. \"\"The Lion Guard\"\" is a sequel to \"\"The Lion King\"\" and takes place during the time-gap within \"\"The Lion King II: Simba's Pride.\"\" It was first broadcast on Disney Channel as a television film titled \"\"The Lion Guard: Return of the Roar\"\" in November 2015 before airing as a series on Disney Junior in January 2016. In September 2016, following the critical and financial success of \"\"The Jungle Book\"\", Walt Disney Pictures announced that they were developing a CGI remake of \"\"The Lion King\"\" by the"} +{"qid": "test3187", "pid": "6731099", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"Nala (The Lion King)\"\nto \"\"disguise [the film's] essential boss-daddy ethos.\"\" Bacher believes that had \"\"The Lion King\"\" featured Nala as the Pride Lands' hero as opposed to Simba, the film could have avoided having a \"\"patriarchal structure.\"\" Leab concluded that \"\"the main and most problematic aspects of the film\"\" remain that \"\"The Lion King\"\" \"\"boils down to the fact that an entire group of strong female characters are unable to confront a single male oppressor; to do so, they need to be led by a dominant male.\"\" Leab continued, \"\"It almost sucks more that Nala is such a strong ... female character and"} +{"qid": "test3187", "pid": "6731081", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"Nala (The Lion King)\"\nson named Kion, who serves as the protagonist of \"\"The Lion Guard\"\" Nala is the most significant female character in \"\"The Lion King\"\". As the film was inspired by William Shakespeare's tragedy \"\"Hamlet\"\", Nala is considered to be \"\"The Lion King\"\"'s equivalent of Hamlet's love interest Ophelia, although differences remain between the two characters. Many early concepts first developed for Nala were eventually abandoned, including a brother and father for the character, as well as her being romantically pursued by Scar. While critical reception towards Nala has been generally mixed, Kelly's vocal performance has been praised. Nala appears in the"} +{"qid": "test3187", "pid": "6731096", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"Nala (The Lion King)\"\nUniversity of Waterloo's Kinema, Vicky Wong believes that Nala reinforces the film's \"\"take your place\"\" motif, reminding main character Simba of his responsibilities. In his book \"\"Retelling Stories, Framing Culture: Traditional Story and Metanarratives in Children's Literature\"\", author John Stephens credits Nala with teaching Simba about responsibility – \"\"the lesson the hero must learn before he can become an adult\"\". Film critic James Berardinelli identified Nala as \"\"The Lion King\"\"'s \"\"sole significant female character.\"\" Including Nala, \"\"The Lion King\"\" has only three major female characters in comparison to the film's total of nine male ones. Shepherd University's Emmylou Allen observed"} +{"qid": "test3187", "pid": "895821", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"The Lion King\"\n1998 on VHS. The film centers around Simba and Nala's daughter, Kiara, who falls in love with Kovu, a male lion who was raised in a pride of Scar's followers, the Outsiders. \"\"The Lion King 1½\"\", another direct-to-video \"\"Lion King\"\" film, saw its release in 2004. It is a prequel in showing how Timon and Pumbaa met each other, and also a parallel in that it also depicts what the characters were retconned to have done during the events of the original movie. In June 2014, it was announced that a new TV series based on the film would be"} +{"qid": "test3187", "pid": "6731095", "query": "what is the female lion called in lion king", "answer": "Nala", "passage": "\"Nala (The Lion King)\"\nfelt that \"\"Nala is really the agent of change in \"\"The Lion King\"\"\"\", dismissing Simba as a \"\"rich, lazy boyfriend.\"\" Leab observed that \"\"The Lion King\"\"'s male characters tend to \"\"take the center stage\"\" while \"\"female characters take a backseat to the action.\"\" Lenka Křivánková of Masaryk University wrote in her thesis \"\"1990s Hollywood Break-Away Hits: A Feminist Perspective\"\" that she was not particularly surprised by the film's lack of strong roles for women because of its Shakespearean source material, dubbing the film \"\"an old traditional fairy tale with all its traditional features\"\", including patriarchy and monarchism. Writing for the"} +{"qid": "test3188", "pid": "3801297", "query": "how many seasons are in star wars the clone wars", "answer": "6", "passage": "\"Star Wars: Clone Wars (2003 TV series)\"\nthe Confederacy of Independent Systems and the Sith. The series is notable for introducing the characters of General Grievous and Asajj Ventress to the \"\"Star Wars\"\" universe. The series aired on Cartoon Network for three seasons consisting of 25 episodes from 2003 to 2005, and was the first \"\"Star Wars\"\" television series since \"\"Ewoks\"\" in 1986. The first two seasons of \"\"Clone Wars\"\", known together as \"\"Volume One\"\", were produced in a two- to three-minute \"\"micro\"\" format, while the third and final season consisted of five fifteen-minute episodes making up \"\"Volume Two\"\". Both volumes were later released on home video"} +{"qid": "test3188", "pid": "9951921", "query": "how many seasons are in star wars the clone wars", "answer": "6", "passage": "\"Star Wars: The Clone Wars (2008 TV series)\"\nannounced that \"\"The Clone Wars\"\" would be \"\"winding down\"\" to focus on the \"\"Star Wars\"\" sequel trilogy and a new series, \"\"Star Wars Rebels\"\". On February 13, 2014, Netflix announced that starting on March 7, 2014 they would begin the US distribution of the entire TV series, including some previously unreleased director's cuts, and the previously unaired new season dubbed \"\"The Lost Missions\"\". The latter also became available for purchase on digital video stores, such as iTunes, in . In November 2016, Pablo Hidalgo from the Lucasfilm story group revealed that the \"\"Young Padawans\"\" arc from Season 5 was intended"} +{"qid": "test3188", "pid": "9951923", "query": "how many seasons are in star wars the clone wars", "answer": "6", "passage": "\"Star Wars: The Clone Wars (2008 TV series)\"\nOn review aggregator website Rotten Tomatoes, the first season received an approval rating of 83% based on 18 reviews, with an average rating of 6.04/10. The site's critical consensus reads, \"\"With an agreeably entertaining first season, \"\"Star Wars: The Clone Wars\"\" opens a fun, kid-friendly chapter of the franchise's sprawling mythology.\"\" The third and fourth seasons received an approval rating of 100% based on 5 reviews, with an average rating of 8.0/10 and 7.85/10 respectively. The sixth season received an approval rating of 100% based on 11 reviews, with an average rating of 8.92/10. The site's critical consensus reads, \"\"Sophisticated"} +{"qid": "test3188", "pid": "5002264", "query": "how many seasons are in star wars the clone wars", "answer": "6", "passage": "Wookieepedia\nand better portray Jyn Erso in the 2016 film \"\"Rogue One\"\". Fans have criticized the administrators and how the content is circulated. Some have even gone so far as to say it is a rather \"\"alienating\"\" wiki given its appeal being centered on only main \"\"Star Wars\"\" fans if nothing more. Wookieepedia Wookieepedia: The \"\"Star Wars\"\" Wiki is an online encyclopedia for information on the \"\"Star Wars\"\" fictional universe—including information on all the films, as well as \"\"Clone Wars\"\", \"\"\"\" and its , \"\"Rebels\"\", the \"\"Star Wars\"\" expanded universe, and any upcoming \"\"Star Wars\"\" material. It is a specialized wiki"} +{"qid": "test3188", "pid": "14271881", "query": "how many seasons are in star wars the clone wars", "answer": "6", "passage": "\"Lego Star Wars III: The Clone Wars\"\nLego Star Wars III: The Clone Wars Lego Star Wars III: The Clone Wars is a Lego-themed action-adventure video game based on , developed by Traveller's Tales and published by LucasArts, released in March 2011 for the PlayStation 3, PlayStation Portable, Xbox 360, Wii, Nintendo DS, Microsoft Windows and Nintendo 3DS consoles. \"\"Lego Star Wars III\"\" features missions and characters from the \"\"Clone Wars\"\" television series, as well as favourite characters from the original \"\"Star Wars\"\" saga, in both single-player and multiplayer gameplay modes. The Mac OS X version of the game has been released by Feral Interactive. Gameplay in"} +{"qid": "test3190", "pid": "5662201", "query": "what does the air gap do on a dishwasher", "answer": "backflow prevention", "passage": "\"Air gap (plumbing)\"\nleast expensive form of backflow prevention. A common use of the term \"\"air gap\"\" in home plumbing refers to a fixture that provides back-flow prevention for an installed dishwasher. This \"\"air gap\"\" is seen above the sink as a small cylindrical fixture mounted parallel with the faucet. In the base cabinet under the sink, the drain hose from the dishwasher feeds the \"\"top\"\" of the air gap, and the \"\"bottom\"\" of the air gap is plumbed into the sink drain below the basket, or into a garbage disposal unit. When installed and maintained properly, the air gap works as described"} +{"qid": "test3191", "pid": "11333523", "query": "who does bryce dallas howard play in the grinch", "answer": "Surprised Who", "passage": "\"Jean Speegle Howard\"\n\"\"How the Grinch Stole Christmas\"\", directed by her son Ron, includes a dedication to her at the beginning of the end credits, saying that she was \"\"who loved Christmas the most.\"\" The film includes performances by her son Clint (as Whobris), her husband Rance (as the Elderly Timekeeper) and her granddaughter Bryce (as the Surprised Who). Jean Speegle Howard Jean Frances Speegle Howard (January 31, 1927 – September 2, 2000) was an American actress who acted primarily in film and on television. Howard made appearances in over 30 television shows, mostly sitcoms, such as \"\"Married... with Children\"\" (1994–1996), but she"} +{"qid": "test3192", "pid": "2669318", "query": "where does dividends go on cash flow statement", "answer": "the financing activities section", "passage": "\"Cash flow statement\"\nlong-term liabilities and equity of the company are also listed in the financing activities section of the cash flow statement. Under IAS 7, Items under the financing activities section include: Under IAS 7, non-cash investing and financing activities are disclosed in footnotes to the financial statements. Under US General Accepted Accounting Principles (GAAP), non-cash activities may be disclosed in a footnote or within the cash flow statement itself. Non-cash financing activities may include The direct method of preparing a cash flow statement results in a more easily understood report. The indirect method is almost universally used, because FAS 95 requires"} +{"qid": "test3193", "pid": "3064092", "query": "what is the 180 degree line of longitude called", "answer": "antimeridian", "passage": "\"Meridian (geography)\"\nside of the earth from Greenwich, the antimeridian, forms the other half of a circle with the one through Greenwich, and is at 180° longitude near the International Date Line (with land mass and island deviations for boundary reasons). The meridians from West of Greenwich (0°) to the antimeridian (180°) define the Western Hemisphere and the meridians from East of Greenwich (0°) to the antimeridian (180°) define the Eastern Hemisphere. Most maps show the lines of longitude. The position of the prime meridian has changed a few times throughout history, mainly due to the transit observatory being built next door"} +{"qid": "test3193", "pid": "3184167", "query": "what is the 180 degree line of longitude called", "answer": "antimeridian", "passage": "\"Eastern Hemisphere\"\nalmost perfect circle (the earth is an oblate spheroid that is fatter around the equator), drawn with a line, demarcating the Eastern and Western Hemispheres must be an arbitrarily decided and published convention, unlike the equator (an imaginary line encircling Earth, equidistant from its poles), which divides the Northern and Southern Hemispheres. The prime meridian at 0° longitude and the antimeridian, at 180° longitude, are the conventionally accepted boundaries, since they divide eastern longitudes from western longitudes. This convention was established (predominantly by Europeans and Americans) in 1884 at the International Meridian Conference held in Washington, D.C. where the standard"} +{"qid": "test3194", "pid": "2774946", "query": "north carolina delegate to the second continental congress", "answer": "Timothy Bloodworth", "passage": "\"Timothy Bloodworth\"\nnumber of political posts sequentially until serving as a delegate to the Continental Congress in 1786. He was elected to the First United States Congress as a member of the House of Representatives, serving from 1790 to 1791 before returning to the North Carolina state legislature. In 1794 Bloodworth was elected to the United States Senate, where he served from 1795 to 1801. From then until 1807, Bloodworth served as collector of customs in Wilmington, North Carolina. During the Second World War, liberty ship was named in his honor. Timothy Bloodworth Timothy James Bloodworth (1736August 24, 1814) was an American"} +{"qid": "test3196", "pid": "17834646", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"Volcano House, Iceland\"\nOpal, Obsidian, Rock crystal and Iceland spar. Volcano House offers guidance and information throughout the exhibit. The interior design of the exhibition is meant to look like it's from 1973 which is the year when the volcanic eruption in Heimaey in the Westman Islands occurred. The Volcano House cinema presents two documentaries covering two of the most powerful volcanic eruptions that have occurred in Iceland over the last 40 years - the 1973 eruption in Heimaey on the Westman Islands, and the 2010 eruption of Eyjafjallajökull in South Iceland. The documentaries are exclusively made for Volcano House and can not"} +{"qid": "test3196", "pid": "3168510", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"Katla (volcano)\"\nKatla (volcano) Katla () is a large volcano in southern Iceland. It is very active; twenty eruptions have been documented between 930 and 1918, at intervals of 20–80 years. It has not erupted violently for years, although there may have been small eruptions that did not break the ice cover, including ones in 1955, 1999, and 2011. Prior eruptions have had a Volcanic Explosivity Index (VEI) of between 4 and 6 on a scale of 0 to 8. In comparison, the Eyjafjallajökull 2010 eruption had a VEI-4. The bigger VEI-6 eruptions are comparable to Mount Pinatubo's 1991 eruption. Katla is"} +{"qid": "test3196", "pid": "189932", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "Iceland\n2010, a volcano in Eyjafjallajökull in the south of Iceland erupted for the first time since 1821, forcing 600 people to flee their homes. Additional eruptions on 14 April forced hundreds of people to abandon their homes. The resultant cloud of volcanic ash brought major disruption to air travel across Europe. Another large eruption occurred on 21 May 2011. This time it was the Grímsvötn volcano, located under the thick ice of Europe's largest glacier, Vatnajökull. Grímsvötn is one of Iceland's most active volcanoes, and this eruption was much more powerful than the 2010 Eyjafjallajökull activity, with ash and lava"} +{"qid": "test3196", "pid": "17834643", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"Volcano House, Iceland\"\nVolcano House, Iceland Volcano House is a Geology exhibition in Reykjavík, Iceland, located at Tryggvagata 11. The exhibition gives a brief overview of Iceland’s geological history and volcanic systems. Every hour the Volcano House shows two documentaries, one about the volcanic eruption of Eyjafjallajökull in 2010 and one about the volcanic eruption in the Westman Islands in 1973. Volcano House also includes a coffee shop and a gift shop. Opening hours are from 9.00 - 22.00 every day of the week. Admission for the Geology exhibition is free, but ticket price for the cinema, both documentaries, is 1990 ISK per"} +{"qid": "test3196", "pid": "14476320", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"2010 eruptions of Eyjafjallajökull\"\nthe caldera of a volcano high, which has erupted relatively frequently since the last ice age. The most recent major eruptions occurred in 920, 1612, and from 1821 to 1823. Previous eruptions of Eyjafjallajökull have been followed by eruptions at its larger neighbour, Katla. On 20 April 2010 Icelandic President Ólafur Grímsson said, \"\"the time for Katla to erupt is coming close ... we [Iceland] have prepared ... it is high time for European governments and airline authorities all over the world to start planning for the eventual Katla eruption\"\". The volcanic events starting in March 2010 were considered to"} +{"qid": "test3196", "pid": "3203975", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"Grímsvötn\"\nAt the same time, sudden inflation was measured by GPS in the volcano, indicating magma movement under the mountain. On 1 November 2010 meltwater from the Vatnajökull glacier was flowing into the lake, suggesting that an eruption of the underlying volcano. On 21 May 2011 at 19:25 UTC, an eruption began, with high plumes accompanied by multiple earthquakes. The ash cloud from the eruption rose to , and is so far 10 times larger than the 2004 eruption, and the strongest in Grímsvötn in the last 100 years. Disruption to air travel in Iceland commenced on 22 May, followed by"} +{"qid": "test3196", "pid": "3163932", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"Volcanology of Iceland\"\nfrom a single eruption in historic times. The eruption under Eyjafjallajökull (\"\"glacier of Eyjafjöll\"\") in 2010 was notable because the volcanic ash plume disrupted air travel in northern Europe for several weeks; however this volcano is minor in Icelandic terms. In the past, eruptions of Eyjafjallajökull have been followed by eruption of the larger volcano Katla, but after the 2010 eruption no signs of an imminent eruption of Katla were seen. The eruption in May 2011 at Grímsvötn under the Vatnajökull glacier sent thousands of tonnes of ash into the sky in a few days, raising concerns of a repeat"} +{"qid": "test3196", "pid": "1082116", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "Askja\nit one of the most far-travelled Icelandic tephras. The last eruption of Askja was in 1961. The outer caldera of Askja, representing a prehistoric eruption, is about 50 km², and there is evidence of other later caldera-forming events within it. The main crater floor lies at about 1,100 m. In June 2010, Volcano expert Hazel Rymer said seismic activity was increasing at Askja and that an eruption could be around the corner The increased earthquake activity is located to the northeast of the central volcano, in the direction of Herðubreið. It was ruled out that any activity from Eyjafjallajökull was"} +{"qid": "test3196", "pid": "14476322", "query": "when did the last volcano erupt in iceland", "answer": "2010", "passage": "\"2010 eruptions of Eyjafjallajökull\"\nSt. Helens eruption of 1980 was rated as 5 on the VEI, and the 1991 eruption of Mount Pinatubo was rated as a 6. This second phase erupted trachyandesite. This volcanic activity so disruptive to air travel because of a combination of factors: \"\"Volcano tourism\"\" quickly sprang up in the wake of the eruption, with local tour companies offering day trips to see the volcano. The Civil Protection Department of the Icelandic Police produced regular reports about access to the area, including a map of the restricted area around Eyjafjallajokull, from which the public was forbidden. Teams from the Icelandic"} +{"qid": "test3199", "pid": "20166553", "query": "who has climbed mount everest the number of times", "answer": "Apa Sherpa", "passage": "\"Mount Everest in 2017\"\nStep. The 40-foot climb is thought to have been reduced to a gentle rock slope. Various mountaineers confirmed in 2017 the news that the rocks of Everest had been altered. The extent of the destruction has been disputed. A South African filmmaker who tried to climb Everest without a permit was apprehended and arrested in May. The man faces a fine and may be banned from climbing mountains in Nepal for up to 10 years. On May 27, 2017, Kami Rita Sherpa, climbing with the Alpine Ascents Everest Expedition, reached the summit for the 21st time. Apa Sherpa and Phurba"} +{"qid": "test320", "pid": "19619487", "query": "what nfl player has the most nfl rings", "answer": "Tom Brady", "passage": "\"Associated Press NFL Most Valuable Player Award\"\nother AP awards, such as the AP NFL Offensive Player of the Year and AP NFL Defensive Player of the Year. The current AP NFL MVP is quarterback Tom Brady of the New England Patriots, who won the award for the third time after the 2017 NFL season. The AP has presented an award recognizing the NFL's top player since 1957. The award is voted upon by a panel of 50 sportswriters at the end of the regular season, before the playoffs, though the results are not announced to the public until the day before the Super Bowl. The sportswriters"} +{"qid": "test320", "pid": "14224092", "query": "what nfl player has the most nfl rings", "answer": "Charles Haley", "passage": "\"Lindsy McLean\"\nfrom the NFL Physician's Society and in 2008, received the Tim Kerin Award for Athletic Training Excellence. McLean has five super bowl rings with the 49ers. According to NFL records (2010), McLean and only three other people have five rings, among them Bill Belichick and player Charles Haley (49ers and Cowboys.) In February 2004, \"\"ESPN The Magazine\"\" published a feature story on McLean in which he came out publicly as gay and discussed his experiences in the world of football. He said that many players and team officials were aware of his homosexuality during his years with the 49ers. He"} +{"qid": "test3200", "pid": "3714340", "query": "when did world war one begin and end", "answer": "11 November 1918", "passage": "\"Lucy Dawidowicz\"\nthe origins of the Holocaust, contending that, beginning with the end of World War I on 11 November 1918, Hitler conceived his master plans, and everything he did from then on was directed toward the achievement of his goal, and that he had \"\"openly espoused his program of annihilation\"\" when he wrote \"\"Mein Kampf\"\" in 1924. Dawidowicz's conclusion was: \"\"Through a maze of time, Hitler's decision of November 1918 led to Operation Barbarossa. There never had been any ideological deviation or wavering determination. In the end only the question of opportunity mattered.\"\" In her view, the overwhelming majority of Germans"} +{"qid": "test3201", "pid": "19787921", "query": "who is opening for little mix glory days tour", "answer": "Sheppard", "passage": "\"The Glory Days Tour\"\nThe Glory Days Tour The Glory Days Tour was the fourth concert tour and the second world wide tour by British girl group Little Mix, in support of their fourth studio album, \"\"Glory Days\"\". The tour began on 21 May 2017 in Birkenhead, England, and after stops in Europe, Oceania, and the United Kingdom, it ended on 26 November 2017 in London, England. The Vamps, Conor Maynard, Bronnie, Alistair Griffin, Ella Eyre, Sheppard, and Louisa Johnson were the opening acts on selected European dates, and Zoe Badwi, Jade Thirlwall's cousin, supported the gigs in Australia. Lina Makhul was the supporting"} +{"qid": "test3201", "pid": "17998685", "query": "who is opening for little mix glory days tour", "answer": "Sheppard", "passage": "\"Sheppard (band)\"\nOn 1 November 2016, \"\"We Belong\"\" was released. In March 2017, Sheppard supported Justin Bieber on the Australian and New Zealand legs of his Purpose World Tour. In June and July Sheppard supported Little Mix on their The Glory Days Tour tour in the UK. On 1 December 2017, Sheppard released a 4-track covers EP titled \"\"Undercover\"\", featuring the lead single \"\"Waves\"\". In January 2018, Sheppard announced their single \"\"Coming Home\"\" had been certified gold and announced their second studio album \"\"Watching the Sky\"\" would be released in June 2018. The album debuted at No.1 on the ARIA Charts and"} +{"qid": "test3201", "pid": "19787925", "query": "who is opening for little mix glory days tour", "answer": "Sheppard", "passage": "\"The Glory Days Tour\"\nvenues and stadiums. The Vamps supported the European leg of the tour. Ella Eyre, Sheppard, Louisa Johnson all supported selected dates on the Summer Shout Out shows. Zoe Badwi, Jade Thirlwall's cousin, was the opening act for the shows in Australia and New Zealand. Lina Makhul, Jessarae, and Aleem all supported selected dates on the UK & Ireland leg of the tour, while Lloyd Macey supported at the Manchester Arena show on 21 November 2017 after winning a prize fight on The X Factor. The tour's set list varied throughout its concerts. The Glory Days Tour The Glory Days Tour"} +{"qid": "test3203", "pid": "19122873", "query": "who did the steelers lose to in the playoffs last year", "answer": "New England Patriots", "passage": "\"2016 Pittsburgh Steelers season\"\nSteelers won the AFC North for the second time in three years and made the playoffs for the third straight year. The team also improved upon their 10–6 record from 2015. Le'Veon Bell made his career first playoff appearance with the Steelers in the 2016–17 playoffs. The Steelers went on to defeat the Miami Dolphins in the Wild Card round and the Kansas City Chiefs in the Divisional round before losing to the eventual Super Bowl champion New England Patriots 36–17 in the AFC Championship Game. This was the Steelers' first appearance in the AFC Championship Game since the 2010"} +{"qid": "test3203", "pid": "6995682", "query": "who did the steelers lose to in the playoffs last year", "answer": "New England Patriots", "passage": "\"History of the Pittsburgh Steelers\"\nthe win, not only did the Steelers end their season at 8–8, but they also wiped out any hope that the Bengals had of reaching the playoffs. The 2007 Pittsburgh Steelers season saw the team improve upon their 8–8 record from 2006, finish with a record of 10–6, and win the AFC North Division. The season marked the 75th anniversary of the Steelers franchise.The Steelers' 2007 schedule included two notable playoff rematches. The Steelers played the New England Patriots December 9 for the first time in the regular season since 2005, when they lost at home on a last-second Adam"} +{"qid": "test3203", "pid": "7000755", "query": "who did the steelers lose to in the playoffs last year", "answer": "New England Patriots", "passage": "\"History of the New England Patriots\"\nAfter an early-season loss to the Redskins at home dropped the Patriots down to 3–3, the Patriots proceeded to win their next four games in a row, and eight out of their last 10, only losing to the Denver Broncos (who would finish with the AFC's best record) and the defending Super Bowl champion Dallas Cowboys to finish 11–5, winning the AFC East and earning a first-round bye in the playoffs as a #2 seed. The Patriots defeated the Pittsburgh Steelers 28–3 in a divisional playoff game — only the second home playoff game in franchise history. The game was"} +{"qid": "test3204", "pid": "106581", "query": "who did the broncos beat in the super bowl", "answer": "Green Bay Packers", "passage": "\"Denver Broncos\"\nblue jerseys. The team initially did not wear the white pants with the orange side stripes, until a November 1, 2015 game vs. the Green Bay Packers, in which the Broncos wore said design in order to match the uniform ensemble that was used during the team's Super Bowl XXXII win over the Packers. As the designated home team in Super Bowl 50, the Broncos — who have an 0–4 Super Bowl record when using their standard orange jerseys — chose to wear their white jerseys as the designated \"\"home\"\" team. In , the Broncos' unveiled a new \"\"Color Rush\"\""} +{"qid": "test3204", "pid": "12880210", "query": "who did the broncos beat in the super bowl", "answer": "Carolina Panthers", "passage": "\"Russell Okung\"\n2013, but the Seahawks finished the season 13-3. In the playoffs, the Seahawks beat both the New Orleans Saints and San Francisco 49ers to reach Super Bowl XLVIII. The Seahawks won the Super Bowl 43-8 after they beat the Denver Broncos to give Okung his first Super Bowl ring. Okung started 14 games in the 2014 season and help the Seahawks finish with a 12-4 record. The Seahawks beat both the Carolina Panthers and Green Bay Packers to reach Super Bowl XLIX. The Seahawks failed to repeat as Super Bowl champions after they lost 28–24 to the New England Patriots."} +{"qid": "test3204", "pid": "106544", "query": "who did the broncos beat in the super bowl", "answer": "Green Bay Packers", "passage": "\"Denver Broncos\"\nmost of the teams that year. The fifth-seeded Jacksonville Jaguars, however, upset the Broncos 30–27 in the divisional round of the playoffs, ending the Broncos' 1996 run. During the 1997 season, Elway and Davis helped guide the Broncos to their first Super Bowl victory, a 31–24 win over the defending champion Green Bay Packers in Super Bowl XXXII. Though Elway completed only 13 of 22 passes, throwing one interception and no touchdowns (he did, however, have a rushing touchdown), Davis rushed for 157 yards and a Super Bowl–record three touchdowns to earn the Super Bowl Most Valuable Player Award—this while"} +{"qid": "test3204", "pid": "19807797", "query": "who did the broncos beat in the super bowl", "answer": "Atlanta Falcons", "passage": "\"2017 Philadelphia Eagles season\"\nwon 24–21. Backup quarterback Nick Foles was named Super Bowl MVP and became the first backup to receive this award since his opponent, Tom Brady, did in Super Bowl XXXVI. The Eagles defeated both Super Bowl teams from the previous NFL season (the New England Patriots and the Atlanta Falcons) in the playoffs. They also defeated both teams who had beaten them in their only two previous Super Bowl appearances. They defeated the Oakland Raiders in the regular season, who beat them in Super Bowl XV and the Patriots in the Super Bowl, who previously beat them in Super Bowl"} +{"qid": "test3204", "pid": "394478", "query": "who did the broncos beat in the super bowl", "answer": "Atlanta Falcons", "passage": "\"Super Bowl XXIII\"\nwhat is now Hard Rock Stadium, players duplicated Jennings' feat: Andre Coleman returned a kickoff against the 49ers in Super Bowl XXIX for the San Diego Chargers, Tim Dwight did so for the Atlanta Falcons against the Denver Broncos in Super Bowl XXXIII, and Devin Hester did so for the Chicago Bears against the Indianapolis Colts in Super Bowl XLI. But the 49ers immediately responded with a touchdown of their own on an 85-yard, 4-play drive. First, Montana threw a short pass to Rice, who turned it into a 31-yard gain. Then the San Francisco quarterback completed a 40-yard pass"} +{"qid": "test3204", "pid": "12786784", "query": "who did the broncos beat in the super bowl", "answer": "Carolina Panthers", "passage": "\"Louis Vasquez (American football)\"\na single sack in 2013. He could not play due to the Broncos appearance in Super Bowl XLVIII. On February 7, 2016, Vasquez was part of the Broncos team that won Super Bowl 50. In the game, the Broncos defeated the Carolina Panthers by a score of 24–10. Vasquez was released by the team on March 8, 2016. After Vasquez's release, \"\"The Denver Post\"\" published a story that explained, \"\"Vasquez, 28, was the Broncos' starter at right guard for the past three seasons. He was released to save the team salary cap space. The Broncos did not approach him about"} +{"qid": "test3204", "pid": "2748835", "query": "who did the broncos beat in the super bowl", "answer": "Atlanta Falcons", "passage": "\"Terrell Davis\"\nmigraine. Prior to this 31-24 victory, the Broncos had lost each of their four previous Super Bowl appearances, and the AFC conference had a 13-year losing streak. In 1998, Davis rushed for 2,008 yards becoming a member of the 2000 rushing yards club, then the third highest rushing total in history. This performance earned him league MVP honors, his third straight AFC rushing title, his first NFL rushing title, and his second time being named NFL Offensive Player of the Year by the Associated Press. At the end of the season, the Broncos beat the Atlanta Falcons in Super Bowl"} +{"qid": "test3204", "pid": "18470813", "query": "who did the broncos beat in the super bowl", "answer": "Carolina Panthers", "passage": "\"George Uko\"\nGeorge Uko George Uko (born February 12, 1992) is an American football defensive end who is currently a member of the Ottawa Redblacks. Uko earned a Super Bowl ring as a member of the Denver Broncos in their Super Bowl 50 victory over the Carolina Panthers. He signed with the BC Lions on May 19, 2016. On December 16, 2014, Uko was promoted from the practice squad to the active roster. Uko joined the Denver Broncos as a part of the practice squad. On February 7, 2016, Uko was part of the Broncos team that won Super Bowl 50. In"} +{"qid": "test3206", "pid": "3564733", "query": "who designed the earth day flag in 1969", "answer": "John McConnell", "passage": "\"Flag of Earth\"\nFlag of Earth Some individuals and organizations have promoted designs for a flag representing the planet Earth, though none have been officially recognized as such by any governmental body. The most widely recognized flags associated with Earth are the flag of the United Nations and the Earth Day flag. Listed below are some of the unofficial contenders for a Flag of Earth: A flag designed by John McConnell in 1969 for the first Earth Day is a dark blue field charged with \"\"The Blue Marble\"\", a famous NASA photo of the Earth as seen from outer space. The first edition"} +{"qid": "test3206", "pid": "10278220", "query": "who designed the earth day flag in 1969", "answer": "John McConnell", "passage": "\"John McConnell (peace activist)\"\nof men.\"\" He was moved when he saw the first picture of the Earth printed in \"\"Life\"\" magazine. Later that picture became the symbol on the Earth Day flag which he designed and created. The Earth Day Flag was featured in the \"\"Whole Earth Catalogue\"\" and has been used ever since, all around the world, to show support of efforts to help people and planet. The Earth Day Flag is a symbol of Earth Day and is still part of the Earth Day Ceremony each year on the spring equinox at the United Nations. In October 1969, at the National"} +{"qid": "test3207", "pid": "3498366", "query": "the length and direction of a straight line between two locations or positions", "answer": "displacement", "passage": "\"Displacement (vector)\"\nDisplacement (vector) A displacement is a vector whose length is the shortest distance from the initial to the final position of a point P. It quantifies both the distance and direction of an imaginary motion along a straight line from the initial position to the final position of the point. A displacement may be identified with the translation that maps the initial position to the final position. A displacement may be also described as a 'relative position': the final position of a point (x) relative to its initial position (x), and a displacement vector can be mathematically defined as the"} +{"qid": "test3207", "pid": "445641", "query": "the length and direction of a straight line between two locations or positions", "answer": "displacement", "passage": "\"Euclidean vector\"\nof the familiar rules from calculus continue to hold for the derivative and integral of vector-valued functions. The position of a point x = (\"\"x\"\", \"\"x\"\", \"\"x\"\") in three-dimensional space can be represented as a position vector whose base point is the origin The position vector has dimensions of length. Given two points x = (\"\"x\"\", \"\"x\"\", \"\"x\"\"), y = (\"\"y\"\", \"\"y\"\", \"\"y\"\") their displacement is a vector which specifies the position of \"\"y\"\" relative to \"\"x\"\". The length of this vector gives the straight-line distance from \"\"x\"\" to \"\"y\"\". Displacement has the dimensions of length. The velocity v of"} +{"qid": "test3207", "pid": "516633", "query": "the length and direction of a straight line between two locations or positions", "answer": "displacement", "passage": "Distance\nfrom a point \"\"A\"\" to a point \"\"B\"\" should be distinguished from the straight-line distance from \"\"A\"\" to \"\"B\"\". For example, whatever the distance covered during a round trip from \"\"A\"\" to \"\"B\"\" and back to \"\"A\"\", the displacement is zero as start and end points coincide. In general the straight-line distance does not equal distance travelled, except for journeys in a straight line. Directed distances can be determined along straight lines and along curved lines. Directed distances along straight lines are vectors that give the distance and direction between a starting point and an ending point. A directed distance"} +{"qid": "test3208", "pid": "4523122", "query": "who played nathan scott on one tree hill", "answer": "James Martin Lafferty", "passage": "\"James Lafferty\"\nsuch an intimate setting with fans.\"\" James Lafferty James Martin Lafferty (born July 25, 1985) is an American actor, director and producer. He is best known for his portrayal of Nathan Scott on The CW teen drama television series \"\"One Tree Hill\"\" from 2003 to 2012. Lafferty was born in Hemet, California to Angelica and Jeffrey Lafferty, who own a local construction company. He has a younger brother, actor Stuart Lafferty. Having worked as an uncredited extra on television shows including \"\"Beverly Hills, 90210\"\" and \"\"Dr. Quinn, Medicine Woman\"\", Lafferty received his first significant acting role in a school play"} +{"qid": "test3208", "pid": "4523116", "query": "who played nathan scott on one tree hill", "answer": "James Martin Lafferty", "passage": "\"James Lafferty\"\nJames Lafferty James Martin Lafferty (born July 25, 1985) is an American actor, director and producer. He is best known for his portrayal of Nathan Scott on The CW teen drama television series \"\"One Tree Hill\"\" from 2003 to 2012. Lafferty was born in Hemet, California to Angelica and Jeffrey Lafferty, who own a local construction company. He has a younger brother, actor Stuart Lafferty. Having worked as an uncredited extra on television shows including \"\"Beverly Hills, 90210\"\" and \"\"Dr. Quinn, Medicine Woman\"\", Lafferty received his first significant acting role in a school play when he was ten years old."} +{"qid": "test3210", "pid": "12272513", "query": "who plays manny in diary of a wimpy kid", "answer": "Connor and Owen Fielding", "passage": "\"Diary of a Wimpy Kid (book series)\"\non March 19, 2010, moved up from an April 2 release date. It was directed by Thor Freudenthal, who also directed \"\"Hotel for Dogs\"\". The film starred Zachary Gordon as Greg, Robert Capron as Rowley (Greg's best friend), Steve Zahn as Frank (Greg's father), Rachael Harris as Susan (Greg's mother), Devon Bostick as Rodrick (Greg's older brother), Connor and Owen Fielding as Manny (Greg's younger brother), Chloë Grace Moretz as a new character named Angie, and Grayson Russell as Fregley. There is a second film in the \"\"Diary of a Wimpy Kid\"\" film series that was released on March 25,"} +{"qid": "test3210", "pid": "15702162", "query": "who plays manny in diary of a wimpy kid", "answer": "Connor and Owen Fielding", "passage": "\"Diary of a Wimpy Kid (film series)\"\ncompleted on October 16, 2009. The film was directed by Thor Freudenthal and starred Zachary Gordon as Greg Heffley, Robert Capron as Rowley Jefferson, Rachael Harris as Susan Heffley, Steve Zahn as Frank Heffley, Devon Bostick as Rodrick Heffley, Connor and Owen Fielding as Manny Heffley, Chloë Grace Moretz as Angie Steadman, Grayson Russell as Fregley, Laine MacNeil as Patty Farrell, and Karan Brar as Chirag Gupta. It is the only film in the series to be directed by Freudenthal. The musical score was composed by Theodore Shapiro. \"\"Rodrick Rules\"\" is the second film in the \"\"Diary of a Wimpy"} +{"qid": "test3211", "pid": "2182895", "query": "where is the citrus bowl held this year", "answer": "Camping World Stadium", "passage": "\"Citrus Bowl\"\ntotal appearances). Records are based on a team's conference affiliation at the time the game was played.
For example, Penn State has appeared both as a Big Ten team and as an Independent team. Most editions of the Citrus Bowl have been televised by ABC, who is the current broadcaster. ESPN televised the game in 2011 and 2012, NBC televised it in 1984 and 1985, and Mizlou televised it in 1982. Broadcast information for the bowl's early years is incomplete. Citrus Bowl The Citrus Bowl is an annual college football bowl game played at Camping World Stadium in Orlando, Florida."} +{"qid": "test3211", "pid": "2828453", "query": "where is the citrus bowl held this year", "answer": "Camping World Stadium", "passage": "\"Camping World Stadium\"\none of the host venues for the Copa América Centenario soccer tournament in 2016. On April 26, 2016, Florida Citrus Sports announced that they had sold naming rights for the stadium to Camping World. Camping World would also be the title sponsor of the stadium's college football kickoff game through at least 2019. Later, the annual December bowl game held at the stadium became known as the Camping World Bowl. The naming rights deal did not affect the Citrus Bowl, Cure Bowl, or the Florida Classic. Prior to the 2014 renovation, the stadium had 65,000 permanent seats. The lower bowl"} +{"qid": "test3211", "pid": "2182879", "query": "where is the citrus bowl held this year", "answer": "Camping World Stadium", "passage": "\"Citrus Bowl\"\nCitrus Bowl The Citrus Bowl is an annual college football bowl game played at Camping World Stadium in Orlando, Florida. The bowl is operated by Florida Citrus Sports, a non-profit group that also organizes the Camping World Bowl and Florida Classic. The game was first played as the Tangerine Bowl in 1947 before being renamed as the Florida Citrus Bowl in 1983. When Capital One was the game's title sponsor between 2001 to 2014, the game was referred to simply as the Capital One Bowl from 2003 to 2014. Other previous sponsors include CompUSA (1994–1999), Ourhouse.com (2000), and Buffalo Wild"} +{"qid": "test3212", "pid": "17907659", "query": "who plays the woodsman in over the garden wall", "answer": "Christopher Lloyd", "passage": "\"Over the Garden Wall\"\nDean respectively), who become lost in a strange forest called the Unknown. In order to find their way home, the two must travel across the seemingly supernatural forest with the occasional help of the wandering, mysterious and elderly Woodsman (Christopher Lloyd) and Beatrice (Melanie Lynskey), an irritable bluebird who travels with the boys in order to find a woman called Adelaide, who can supposedly undo the curse on Beatrice and her family and show the half-brothers the way home. Wirt, the older brother, is a worry-prone teenager who would rather keep to himself than have to make a decision. His"} +{"qid": "test3212", "pid": "1881501", "query": "who plays the woodsman in over the garden wall", "answer": "Christopher Lloyd", "passage": "\"Christopher Lloyd\"\nUncle Fester in \"\"The Addams Family\"\" (1991) and its sequel \"\"Addams Family Values\"\" (1993). Lloyd earned a third Emmy for his 1992 guest appearance in \"\"Road to Avonlea\"\", and won an Independent Spirit Award for his performance in \"\"Twenty Bucks\"\" (1993). He has done extensive voice work, including Merlock in \"\"\"\" (1990), Grigori Rasputin in \"\"Anastasia\"\" (1997), The Woodsman in Cartoon Network miniseries \"\"Over the Garden Wall\"\" (2014), and the Hacker in PBS Kids series \"\"Cyberchase\"\" (2002–present), which earned him two further Emmy nominations. He has also been nominated for two Saturn Awards and a BIFA Award. Lloyd was born"} +{"qid": "test3214", "pid": "19282814", "query": "who made possible the first reproduction of the human voice on the phonograph", "answer": "Thomas Edison", "passage": "\"Music technology (electric)\"\nstudy) was the phonautograph, patented in 1857 by Parisian inventor Édouard-Léon Scott de Martinville. The earliest known recordings of the human voice are phonautograph recordings, called \"\"phonautograms\"\", made in 1857. They consist of sheets of paper with sound-wave-modulated white lines created by a vibrating stylus that cut through a coating of soot as the paper was passed under it. The first practical sound recording and reproduction device was the mechanical phonograph cylinder, invented by Thomas Edison in 1877 and patented in 1878. The invention soon spread across the globe and over the next two decades the commercial recording, distribution and"} +{"qid": "test3214", "pid": "1154968", "query": "who made possible the first reproduction of the human voice on the phonograph", "answer": "Thomas Edison", "passage": "\"Phonograph cylinder\"\nPhonograph cylinder Phonograph cylinders are the earliest commercial medium for recording and reproducing sound. Commonly known simply as \"\"records\"\" in their era of greatest popularity (c. 1896–1915), these hollow cylindrical objects have an audio recording engraved on the outside surface, which can be reproduced when they are played on a mechanical cylinder phonograph. In the 1910s, the competing disc record system triumphed in the marketplace to become the dominant commercial audio medium. On July 18, 1877, Thomas Edison and his team invented the phonograph. His first successful recording and reproduction of intelligible sounds, achieved early in the following December, used"} +{"qid": "test3214", "pid": "19271287", "query": "who made possible the first reproduction of the human voice on the phonograph", "answer": "Thomas Edison", "passage": "\"North American Phonograph Company\"\nNorth American Phonograph Company The North American Phonograph Company was an early attempt to commercialize the maturing technologies of sound recording in the late 1880s and early 1890s. Though the company was largely unsuccessful in its goals due to legal, technical and financial problems, it set the stage for the modern recording industry in the mid 1890s. Thomas Edison successfully demonstrated sound recording and reproduction in late 1877 with the tinfoil phonograph. The invention caught the public's attention but its practical utility was limited due to low-fidelity and its single-use nature. Edison sold the rights to the phonograph to the"} +{"qid": "test3216", "pid": "10238315", "query": "when did the anti smacking law come in nz", "answer": "anti-smacking bill", "passage": "\"Crimes (Substituted Section 59) Amendment Act 2007\"\nto by several of its opponents and newspapers as the \"\"anti-smacking bill\"\". The bill was passed on its third reading on 16 May 2007 by 113 votes to eight. The Governor-General of New Zealand granted the bill Royal Assent on 21 May 2007, and the law came into effect on 21 June 2007. A citizens-initiated referendum on the issues surrounding the law was held between 30 July and 21 August 2009, asking \"\"Should a smack as part of good parental correction be a criminal offence in New Zealand?\"\" Despite widespread criticism of the question's wording, the referendum was returned with"} +{"qid": "test3217", "pid": "3249898", "query": "what's the dwarf's name in game of thrones", "answer": "Tyrion Lannister", "passage": "\"A Game of Thrones\"\nhis kingly duties, but does not as he fears what his heir Joffrey might do as king. At Winterfell, an assassin attempts to kill Bran, thwarted only by his direwolf Summer. Catelyn departs for King's Landing to bring word of this to Ned. Shortly after that, Bran awakens as a paraplegic, with no memory of the cause of his fall. Upon Catelyn's arrival in King's Landing, she is brought to her childhood friend, Petyr \"\"Littlefinger\"\" Baelish, who identifies Tyrion Lannister, the dwarf brother of Cersei and Jaime, as the owner of the dagger used against Bran, and agrees to help"} +{"qid": "test3219", "pid": "12800949", "query": "who plays ser davos in game of thrones", "answer": "Liam Cunningham", "passage": "\"Game of Thrones\"\nof advisors includes the crafty Master of Coin Lord Petyr \"\"Littlefinger\"\" Baelish (Aidan Gillen) and the eunuch spymaster Lord Varys (Conleth Hill). Robert's brother, Stannis Baratheon (Stephen Dillane), is advised by foreign priestess Melisandre (Carice van Houten) and former smuggler Ser Davos Seaworth (Liam Cunningham). The wealthy Tyrell family is represented at court by Margaery Tyrell (Natalie Dormer). The High Sparrow (Jonathan Pryce) is the capital's religious leader. In the southern principality of Dorne, Ellaria Sand (Indira Varma) seeks vengeance against the Lannisters. Across the Narrow Sea, siblings Viserys (Harry Lloyd) and Daenerys Targaryen (Emilia Clarke) – the exiled children"} +{"qid": "test3219", "pid": "4567515", "query": "who plays ser davos in game of thrones", "answer": "Liam Cunningham", "passage": "\"Davos Seaworth\"\nLanding. Davos Seaworth disrupts the social structure of the Seven Kingdoms, by becoming a knight despite his humble origins. Davos Seaworth Davos Seaworth, nicknamed the Onion Knight, is a fictional character from the \"\"A Song of Ice and Fire\"\" series of epic fantasy novels by American writer George R. R. Martin. He is a point-of-view character in \"\"A Clash of Kings\"\", \"\"A Storm of Swords\"\" and \"\"A Dance with Dragons\"\" with a total of 13 chapters. Davos is portrayed by Irish actor Liam Cunningham in the HBO television adaptation \"\"Game of Thrones\"\". Davos is a man of low birth, born"} +{"qid": "test3219", "pid": "4567496", "query": "who plays ser davos in game of thrones", "answer": "Liam Cunningham", "passage": "\"Davos Seaworth\"\nDavos Seaworth Davos Seaworth, nicknamed the Onion Knight, is a fictional character from the \"\"A Song of Ice and Fire\"\" series of epic fantasy novels by American writer George R. R. Martin. He is a point-of-view character in \"\"A Clash of Kings\"\", \"\"A Storm of Swords\"\" and \"\"A Dance with Dragons\"\" with a total of 13 chapters. Davos is portrayed by Irish actor Liam Cunningham in the HBO television adaptation \"\"Game of Thrones\"\". Davos is a man of low birth, born in Flea Bottom of King's Landing to the life of a poor commoner. In his youth, he became one"} +{"qid": "test3219", "pid": "17716220", "query": "who plays ser davos in game of thrones", "answer": "Liam Cunningham", "passage": "\"Samantha Bentley\"\nscene was with Ian Tate for Harmony Films. This was also her first anal sex scene. She was the \"\"Penthouse\"\" Pet of the Month for August 2015. Bentley played a prostitute in the fourth season of the HBO series \"\"Game of Thrones\"\", appearing in a bath scene opposite Davos Seaworth, who is played by Liam Cunningham. In April 2015, it was announced that Bentley will also appear in the show's fifth season. She has also appeared in a music video for Wiz Khalifa and in a mainstream film titled \"\"Look of Love\"\". On 19 August 2014, \"\"Cosmopolitan UK\"\" published an"} +{"qid": "test322", "pid": "7698973", "query": "dendrites and cell bodies are components of what type of matter found in the brain", "answer": "Grey matter", "passage": "\"Lateral grey column\"\nacetylcholine, while postganglionic sympathetic nerve cells use norepinephrine. Grey matter in the brain and spinal cord is any accumulation of cell bodies and neuropil (neuropil is tissue rich in nerve cell bodies and dendrites). White matter consists of nerve tracts (groups of axons) and commissures (tracts that cross the brain's midline). The nervous system is divided into the central nervous system (brain and spinal cord) and the peripheral nervous system (everything else). The peripheral nervous system is divided into the somatic nervous system (voluntary processes) and the autonomic nervous system (involuntary processes). The autonomic nervous system is divided into the"} +{"qid": "test322", "pid": "483364", "query": "dendrites and cell bodies are components of what type of matter found in the brain", "answer": "gray", "passage": "\"Grey matter\"\nGrey matter Grey matter (or gray matter) is a major component of the central nervous system, consisting of neuronal cell bodies, neuropil (dendrites and myelinated as well as unmyelinated axons), glial cells (astrocytes and oligodendrocytes), synapses, and capillaries. Grey matter is distinguished from white matter in that it contains numerous cell bodies and relatively few myelinated axons, while white matter contains relatively few cell bodies and is composed chiefly of long-range myelinated axon tracts. The colour difference arises mainly from the whiteness of myelin. In living tissue, grey matter actually has a very light grey colour with yellowish or pinkish"} +{"qid": "test322", "pid": "483371", "query": "dendrites and cell bodies are components of what type of matter found in the brain", "answer": "gray", "passage": "\"Grey matter\"\nmeans \"\"ash-coloured\"\". Grey matter Grey matter (or gray matter) is a major component of the central nervous system, consisting of neuronal cell bodies, neuropil (dendrites and myelinated as well as unmyelinated axons), glial cells (astrocytes and oligodendrocytes), synapses, and capillaries. Grey matter is distinguished from white matter in that it contains numerous cell bodies and relatively few myelinated axons, while white matter contains relatively few cell bodies and is composed chiefly of long-range myelinated axon tracts. The colour difference arises mainly from the whiteness of myelin. In living tissue, grey matter actually has a very light grey colour with yellowish"} +{"qid": "test3220", "pid": "1945758", "query": "who hit the first home run in the houston astrodome", "answer": "Mickey Mantle", "passage": "Astrodome\nOn Opening Day, April 9, 1965, a sold-out crowd of 47,879 watched an exhibition game between the Houston Astros and the New York Yankees. President Lyndon B. Johnson and his wife Lady Bird were in attendance, as well as Texas Governor John Connally and Houston Mayor Louie Welch. Governor Connally tossed out the first ball for the first game ever played indoors. Dick \"\"Turk\"\" Farrell of the Astros threw the first pitch. Mickey Mantle had both the first hit (a single) and the first home run in the Astrodome. The Astros beat the Yankees that night, 2-1. President Johnson stopped"} +{"qid": "test3220", "pid": "734408", "query": "who hit the first home run in the houston astrodome", "answer": "Mickey Mantle", "passage": "\"Mickey Mantle\"\ninaugurate the Astrodome, the world's first multi-purpose, domed sports stadium, the Houston Astros and the New York Yankees played an exhibition game on April 9, 1965. Mantle hit the park's first home run. In 1966, his batting average increased to .288 with 23 home runs and 56 RBI. After the 1966 season, he was moved to first base with Joe Pepitone taking over his place in the outfield. On May 14, 1967, Mantle became the sixth member of the 500 home run club. Mantle hit .237 with 18 home runs and 54 RBI during his final season in 1968. He"} +{"qid": "test3223", "pid": "832813", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"For Whom the Bell Tolls\"\nFor Whom the Bell Tolls For Whom the Bell Tolls is a novel by Ernest Hemingway published in 1940. It tells the story of Robert Jordan, a young American in the International Brigades attached to a republican guerrilla unit during the Spanish Civil War. As a dynamiter, he is assigned to blow up a bridge during an attack on the city of Segovia. The novel is regarded as one of Hemingway's best works, along with \"\"The Sun Also Rises\"\", \"\"A Farewell to Arms\"\", and \"\"The Old Man and the Sea\"\". Ernest Hemingway wrote \"\"For Whom the Bell Tolls\"\" in Havana,"} +{"qid": "test3223", "pid": "7567828", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"For Whom the Bell Tolls (film)\"\nFor Whom the Bell Tolls (film) For Whom the Bell Tolls is a 1943 American war film produced and directed by Sam Wood and starring Gary Cooper, Ingrid Bergman, Akim Tamiroff, and Joseph Calleia. The screenwriter Dudley Nichols based his script on the 1940 novel \"\"For Whom the Bell Tolls\"\" by American novelist Ernest Hemingway. The film is about an American International Brigades volunteer, Robert Jordan (Cooper), who is fighting in the Spanish Civil War against the fascists. During his desperate mission to blow up a strategically important bridge to protect Republican forces, Jordan falls in love with a young"} +{"qid": "test3223", "pid": "7567836", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"For Whom the Bell Tolls (film)\"\nbroadcast on February 11, 1945, which retained the principal cast from the film: Gary Cooper, Ingrid Bergman, and Akim Tamiroff. For Whom the Bell Tolls (film) For Whom the Bell Tolls is a 1943 American war film produced and directed by Sam Wood and starring Gary Cooper, Ingrid Bergman, Akim Tamiroff, and Joseph Calleia. The screenwriter Dudley Nichols based his script on the 1940 novel \"\"For Whom the Bell Tolls\"\" by American novelist Ernest Hemingway. The film is about an American International Brigades volunteer, Robert Jordan (Cooper), who is fighting in the Spanish Civil War against the fascists. During his"} +{"qid": "test3223", "pid": "121494", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"Ernest Hemingway\"\nprimary summer residence to Ketchum, Idaho, just outside the newly built resort of Sun Valley, and his winter residence to Cuba. Hemingway, who had been disgusted when a Parisian friend allowed his cats to eat from the table, became enamored of cats in Cuba, keeping dozens of them on the property. Gellhorn inspired him to write his most famous novel, \"\"For Whom the Bell Tolls,\"\" which he started in March 1939 and finished in July 1940. It was published in October 1940. Consistent with his pattern of moving around while working on a manuscript, he wrote \"\"For Whom the Bell"} +{"qid": "test3223", "pid": "246434", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"Ride the Lightning\"\nby Hammett's soloing. According to Hetfield, the song was not a criticism of capital punishment, but a tale of a man sentenced to death for a crime he did not commit, as in the opening lyrics: \"\"Guilty as charged/But Damn it/It ain't right\"\". \"\"For Whom the Bell Tolls\"\" begins with a bell tolling, followed by a marching riff and high-register bass melody. The chromatic introduction, which Burton wrote before he joined Metallica, is often mistaken for an electric guitar but is actually Burton's bass guitar augmented with distortion and a wah-wah pedal. The lyrics were inspired by Ernest Hemingway's 1940"} +{"qid": "test3223", "pid": "832838", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"For Whom the Bell Tolls\"\nin 1936. Although Hemingway later claimed (in a 1954 letter to Bernard Berenson) to have completely fabricated the scene, he in fact drew upon the events at Ronda, embellishing the event by imagining an execution line leading up to the cliff face. A number of actual figures that played a role in the Spanish Civil War are also referenced in the book, including: For Whom the Bell Tolls For Whom the Bell Tolls is a novel by Ernest Hemingway published in 1940. It tells the story of Robert Jordan, a young American in the International Brigades attached to a republican"} +{"qid": "test3223", "pid": "4755030", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"For Whom the Bell Tolls (Metallica song)\"\nFor Whom the Bell Tolls (Metallica song) \"\"For Whom the Bell Tolls\"\" is a song by American thrash metal band Metallica. It was first released on the group's second album, \"\"Ride the Lightning\"\" (1984). In 1985, Elektra Records released it as a promotional single, with both an edited and full-length versions. The song is one of their most popular; by March 2018, it ranked number five on Metallica's live performance count. Several live albums and video albums include the song. The song was inspired by Ernest Hemingway's 1940 novel of the same name about the dishonor of modern warfare and"} +{"qid": "test3223", "pid": "17788886", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "Anti-fascism\nthe Federación Anarquista Ibérica (FAI), were a particularly militant group. Thousands of people from many countries went to Spain in support of the anti-fascist cause, joining units such as the Abraham Lincoln Brigade, the British Battalion, the Dabrowski Battalion, the Mackenzie-Papineau Battalion, the Naftali Botwin Company and the Thälmann Battalion, including Winston Churchill's nephew, Esmond Romilly. Notable anti-fascists who worked internationally against Franco included: George Orwell (who fought in the POUM militia and wrote \"\"Homage to Catalonia\"\" about this experience), Ernest Hemingway (a supporter of the International Brigades who wrote \"\"For Whom the Bell Tolls\"\" about this experience), and radical"} +{"qid": "test3223", "pid": "10190422", "query": "who wrote the poem for whom the bell tolls", "answer": "Ernest Hemingway", "passage": "\"For Whom the Beat Tolls\"\nof 10, saying \"\"Canibus sounds more focused than ever, bringing much-needed lyrical heat to a year lacking just that\"\" and calling For Whom The Beat Tolls \"\"easily one of the best albums of 2007 so far(not to mention being Canibus' best effort since Rip the Jacker, if it wasn't obvious enough) and definitely worth your money\"\" Information taken from the album's liner notes. For Whom the Beat Tolls For Whom the Beat Tolls (a play on the Ernest Hemingway novel 'For Whom the Bell Tolls', which itself is drawn from \"\"Meditation XVII\"\" of \"\"Devotions upon Emergent Occasions\"\", a series of"} +{"qid": "test3226", "pid": "13491368", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "Indium-111\nmolecules, typically using a chelate to bind the radionuclide (in this case In) to the targeting molecule during the radiosynthesis/ radiolabeling process, which is tailored to the desired product. In labeled antibodies In labeled peptides In can also be formulated in the chemical form In oxyquinoline (oxine) for labeling blood cells and components Indium-111 Indium-111 (In) is a radioactive isotope of Indium (In), atomic number (number of protons) of 49. The difference among the various isotopes of In is the number of neutrons (i.e. they have different atomic mass numbers). The naturally occurring isotopes of Indium are stable (non-radioactive): In"} +{"qid": "test3226", "pid": "13491366", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "Indium-111\nIndium-111 Indium-111 (In) is a radioactive isotope of Indium (In), atomic number (number of protons) of 49. The difference among the various isotopes of In is the number of neutrons (i.e. they have different atomic mass numbers). The naturally occurring isotopes of Indium are stable (non-radioactive): In (4.25%) and In (95.75%). In chloride (Cl) solution is produced by proton irradiation ((p,2n) of a cadmium (Cd) isotope (Cd) OR (p,n) Cd enriched target) in a cyclotron, as recommended by International Atomic Energy Agency (IAEA). The former method is more commonly used as is results in a high level of radionuclide purity."} +{"qid": "test3226", "pid": "16829344", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "\"Indium wire\"\nIndium wire Indium is a soft, malleable, silver, shiny metal with atomic weight of 114.82 and resides as number 49 on the Chemical Periodic Table. Below 3.4Kelvin indium is a superconductor and at 20 C it has a resistance of 8.8 micro-ohms with a melting point of 156.598 C, a boiling point of 2080C and a density of 7.3 g/cc. Indium can be alloyed with a wide range of other metals to lower their melting point. Indium is an ideal thermal interface material for heat dissipation in many of today's very hot integrated circuits. Of all the common materials, copper"} +{"qid": "test3226", "pid": "196982", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "Indium\nIndium Indium is a chemical element with symbol In and atomic number 49. It is a post-transition metal that makes up 0.21 parts per million of the Earth's crust. Very soft and malleable, indium has a melting point higher than sodium and gallium, but lower than lithium and tin. Chemically, indium is similar to gallium and thallium, and it is largely intermediate between the two in terms of its properties. Indium was discovered in 1863 by Ferdinand Reich and Hieronymous Theodor Richter by spectroscopic methods. They named it for the indigo blue line in its spectrum. Indium was isolated the"} +{"qid": "test3226", "pid": "1402653", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "\"Period 5 element\"\nin nickel–cadmium batteries and cadmium telluride solar panels, the use of cadmium is generally decreasing. These declines have been due to competing technologies, cadmium's toxicity in certain forms and concentration and resulting regulations. Indium is a chemical element with the symbol In and atomic number 49. This rare, very soft, malleable and easily fusible other metal is chemically similar to gallium and thallium, and shows the intermediate properties between these two. Indium was discovered in 1863 and named for the indigo blue line in its spectrum that was the first indication of its existence in zinc ores, as a new"} +{"qid": "test3226", "pid": "197009", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "Indium\ntemporarily in the muscles, skin, and bones before being excreted, and the biological half-life of indium is about two weeks in humans. People can be exposed to indium in the workplace by inhalation, ingestion, skin contact, and eye contact. The National Institute for Occupational Safety and Health has set a recommended exposure limit (REL) of 0.1 mg/m over an eight-hour workday. Indium Indium is a chemical element with symbol In and atomic number 49. It is a post-transition metal that makes up 0.21 parts per million of the Earth's crust. Very soft and malleable, indium has a melting point higher"} +{"qid": "test3226", "pid": "196986", "query": "the atomic number of indium which belongs to 5th period is", "answer": "49", "passage": "Indium\n\"\"I\"\"4/\"\"mmm\"\" (lattice parameters: \"\"a\"\" = 325 pm, \"\"c\"\" = 495 pm): this is a slightly distorted face-centered cubic structure, where each indium atom has four neighbours at 324 pm distance and eight neighbours slightly further (336 pm). Indium displays a ductile viscoplastic response, found to be size-independent in tension and compression. However it does have a size effect in bending and indentation, associated to a length-scale of order 50–100 µm, significantly large when compared with other metals. Indium has 49 electrons, with an electronic configuration of [Kr]4d5s5p. In compounds, indium most commonly donates the three outermost electrons to become indium(III),"} +{"qid": "test3227", "pid": "7145812", "query": "what percentage of sunlight is captured by plants to convert it into food energy", "answer": "3 to 6%", "passage": "\"Photosynthetic efficiency\"\nwavelength range, the theoretical maximum efficiency of solar energy conversion is approximately 11%. In actuality, however, plants do not absorb all incoming sunlight (due to reflection, respiration requirements of photosynthesis and the need for optimal solar radiation levels) and do not convert all harvested energy into biomass, which results in an overall photosynthetic efficiency of 3 to 6% of total solar radiation. If photosynthesis is inefficient, excess light energy must be dissipated to avoid damaging the photosynthetic apparatus. Energy can be dissipated as heat (non-photochemical quenching), or emitted as chlorophyll fluorescence. Quoted values sunlight-to-biomass efficiency The following is a breakdown"} +{"qid": "test3228", "pid": "12258463", "query": "what is the number of total presidential electoral votes", "answer": "538", "passage": "\"U.S. state\"\nredistricting, and within each state all districts are required to have approximately equal populations. Citizens in each state plus those in the District of Columbia indirectly elect the president and vice president. When casting ballots in presidential elections they are voting for presidential electors, who then, using procedures provided in the 12th amendment, elect the president and vice president. There were 538 electors for the most recent presidential election in 2016; the allocation of electoral votes was based on the 2010 census. Each state is entitled to a number of electors equal to the total number of representatives and senators"} +{"qid": "test3228", "pid": "512279", "query": "what is the number of total presidential electoral votes", "answer": "538", "passage": "\"1984 United States presidential election\"\nReagan had effectively neutralized the age issue: Reagan was re-elected in the November 6 election in an electoral and popular vote landslide, winning 49 states. He won a record 525 electoral votes total (of 538 possible), and received 58.8% of the popular vote; despite Ferraro's selection, 55% of women who voted did so for Reagan, and his 54 to 61% of the Catholic vote was the highest for a Republican candidate in history. Mondale's 13 electoral college votes (from his home state of Minnesota—which he won by 0.18%—and the District of Columbia) marked the lowest total of any major presidential"} +{"qid": "test3229", "pid": "1294205", "query": "where does fungi go on a food web", "answer": "decomposers", "passage": "\"Food web\"\nloops) are sufficient to explain patterns within boundaries, such as the edge of a forest, an island, a shoreline, or some other pronounced physical characteristic. In a detrital web, plant and animal matter is broken down by decomposers, e.g., bacteria and fungi, and moves to detritivores and then carnivores. There are often relationships between the detrital web and the grazing web. Mushrooms produced by decomposers in the detrital web become a food source for deer, squirrels, and mice in the grazing web. Earthworms eaten by robins are detritivores consuming decaying leaves. \"\"Detritus can be broadly defined as any form of"} +{"qid": "test3229", "pid": "4892479", "query": "where does fungi go on a food web", "answer": "the end", "passage": "\"Soil food web\"\nconsumers (predators). The phrase, trophic level, refers to the different levels or steps in the energy pathway. In other words, the producers, consumers, and decomposers are the main trophic levels. This chain of energy transferring from one species to another can continue several more times, but eventually ends. At the end of the food chain, decomposers such as bacteria and fungi break down dead plant and animal material into simple nutrients. The nature of soil makes direct observation of food webs difficult. Since soil organisms range in size from less than 0.1 mm (nematodes) to greater than 2 mm (earthworms)"} +{"qid": "test3229", "pid": "12425070", "query": "where does fungi go on a food web", "answer": "decomposers", "passage": "Fungus\nAlthough often inconspicuous, fungi occur in every environment on Earth and play very important roles in most ecosystems. Along with bacteria, fungi are the major decomposers in most terrestrial (and some aquatic) ecosystems, and therefore play a critical role in biogeochemical cycles and in many food webs. As decomposers, they play an essential role in nutrient cycling, especially as saprotrophs and symbionts, degrading organic matter to inorganic molecules, which can then re-enter anabolic metabolic pathways in plants or other organisms. Many fungi have important symbiotic relationships with organisms from most if not all Kingdoms. These interactions can be mutualistic or"} +{"qid": "test3229", "pid": "4892493", "query": "where does fungi go on a food web", "answer": "decomposers", "passage": "\"Soil food web\"\ncontrol means that consumers have little or no effect on the renewal or input of their resources. For example, aboveground herbivores can overgraze an area and decrease the grass population, but decomposers cannot directly influence the rate of falling plant litter. They can only indirectly influence the rate of input into their system through nutrient recycling which, by helping plants to grow, eventually creates more litter and detritus to fall. If the entire soil food web were completely donor controlled, however, bacterivores and fungivores would never greatly affect the bacteria and fungi they consume. While bottom-up effects are no doubt"} +{"qid": "test3229", "pid": "19530650", "query": "where does fungi go on a food web", "answer": "decomposers", "passage": "Thanatophage\nnow known to be parasites on fungi. These species are now termed myco-heterotrophs. Thanatophage Thanatophages, are olophages that obtain nutrients by consuming decomposing dead plant biomass. In food webs, thanatophages generally play the roles of decomposers. The eating of wood, whether live or dead, is known as xylophagy. Τhe activity of animals feeding only on dead wood is called sapro-xylophagy and those animals, sapro-xylophagous. \"\"Saprophyte\"\" (\"\"-phyte\"\" meaning \"\"plant\"\") is a botanical term that is no longer in popular use. There are no real saprotrophic organisms that are embryophytes, and fungi and bacteria are no longer placed in the plant kingdom."} +{"qid": "test3229", "pid": "3270433", "query": "where does fungi go on a food web", "answer": "decomposers", "passage": "Detritivore\neating of wood, whether alive or dead, is known as xylophagy. Τhe activity of animals feeding only on dead wood is called sapro-xylophagy and those animals, sapro-xylophagous. In food webs, detritivores generally play the roles of decomposers. Detritivores are often eaten by consumers and therefore commonly play important roles as recyclers in ecosystem energy flow and biogeochemical cycles. Many detritivores live in mature woodland, though the term can be applied to certain bottom-feeders in wet environments. These organisms play a crucial role in benthic ecosystems, forming essential food chains and participating in the nitrogen cycle. Fungi, acting as decomposers, are"} +{"qid": "test323", "pid": "1268700", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Golden Gate\"\nthe engraving is the USS Babcock, which served in the United States Navy from 1917 to 1919, and is seen passing through the Golden Gate into San Francisco Bay, its port of call. The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the opening of the San Francisco Bay onto the Pacific Ocean. As part of both US Highway 101 and California Route 1, it connects the city of San Francisco on the northern tip of the San Francisco Peninsula to Marin County. The Golden Gate Bridge was the longest suspension bridge span in the world when"} +{"qid": "test323", "pid": "3984995", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Ralph Modjeski\"\n1907 disaster that killed 75 workers, and succeeded in creating the longest truss span in the world (though a construction accident killed another thirteen workers). It is still the longest cantilever bridge in the world. Modjeski was world-famous as a designer of bridges and rail lines. He pioneered suspension bridges. He built nearly 40 bridges spanning the great rivers of North America. He trained succeeding generations of American bridge designers and builders, including Joseph B. Strauss, chief engineer of San Francisco's Golden Gate Bridge (which was completed six months after Modjeski's San Francisco–Oakland Bay Bridge). Modjeski was considered \"\"America's greatest"} +{"qid": "test323", "pid": "154744", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Golden Gate Bridge\"\ntravel guide describes the Golden Gate Bridge as \"\"possibly the most beautiful, certainly the most photographed, bridge in the world.\"\" At the time of its opening in 1937, it was both the longest and the tallest suspension bridge in the world, with a main span of and a total height of . Before the bridge was built, the only practical short route between San Francisco and what is now Marin County was by boat across a section of San Francisco Bay. A ferry service began as early as 1820, with a regularly scheduled service beginning in the 1840s for the"} +{"qid": "test323", "pid": "16104840", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Kutai Kartanegara Bridge\"\nKutai Kartanegara Bridge The Kutai Kartanegara Bridge (also known as the Mahakam II Bridge) was an Indonesian suspension bridge that was located on the island of Borneo in Kalimantan Timur, crossing the Mahakam River and connecting Tenggarong and Samarinda. The 710-metre-long bridge, which featured a 270-metre-long suspended section, was intended to resemble San Francisco's Golden Gate Bridge. Construction on the bridge commenced in 1995 and was completed in 2001. It was the longest suspension bridge in Indonesia. On 26 November 2011, the bridge collapsed only ten years after it was completed, killing at least 20 people and injuring 40. The"} +{"qid": "test323", "pid": "4399968", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"25 de Abril Bridge\"\n25 de Abril Bridge The 25 de Abril Bridge \"\"(Ponte 25 de Abril\"\", 25th of April Bridge, ) is a suspension bridge connecting the city of Lisbon, capital of Portugal, to the municipality of Almada on the left (south) bank of the Tagus river. It was inaugurated on August 6, 1966, and a train platform was added in 1999. It is often compared to the Golden Gate Bridge in San Francisco, US, because they are both suspension bridges of similar color. It was built by the American Bridge Company which constructed the San Francisco–Oakland Bay Bridge, but not the Golden"} +{"qid": "test323", "pid": "9485313", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Bay Area Toll Authority\"\ntolls levied on the seven state-owned toll bridges: Antioch, Benicia-Martinez, Carquinez, Dumbarton, Richmond – San Rafael, San Francisco – Oakland and San Mateo – Hayward. As part of these activities, BATA funds the day-to-day operations, facilities maintenance, and administration of the bridges. BATA also funds the long-term capital improvement and rehabilitation of the bridges, including the projects mandated by Regional Measure 1 (RM 1) and the Toll Bridge Seismic Retrofit Program. Although it operates all the other toll bridges in the Bay Area, San Francisco's most famous bridge does not fall under its jurisdiction, as the Golden Gate Bridge is"} +{"qid": "test323", "pid": "14600651", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Yangluo Yangtze River Bridge\"\nto the length of the main span. The north and south support towers for the main cables are and tall respectively and constructed of reinforced concrete with two prestressed concrete x-braces on each tower to provide lateral stiffening. Coincidentally, the bridge's main span of is exactly the same length as the famous Golden Gate Bridge in San Francisco, California that opened 70 years prior. Yangluo Yangtze River Bridge The Yangluo Yangtze River Bridge () is a suspension bridge over the Yangtze River in Wuhan, Hubei, China. With a main span of , at its opening it was tied with the"} +{"qid": "test323", "pid": "154743", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Golden Gate Bridge\"\nGolden Gate Bridge The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the strait connecting San Francisco Bay and the Pacific Ocean. The structure links the American city of San Francisco, California – the northern tip of the San Francisco Peninsula – to Marin County, carrying both U.S. Route 101 and California State Route 1 across the strait. The bridge is one of the most internationally recognized symbols of San Francisco, California, and the United States. It has been declared one of the Wonders of the Modern World by the American Society of Civil Engineers. The Frommer's"} +{"qid": "test323", "pid": "154788", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Golden Gate Bridge\"\nfinished Presidio Parkway on the weekend of July 9–12, 2015. , an official at Caltrans said there is no plan to permanently rename the portion known as Doyle Drive. Golden Gate Bridge The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the strait connecting San Francisco Bay and the Pacific Ocean. The structure links the American city of San Francisco, California – the northern tip of the San Francisco Peninsula – to Marin County, carrying both U.S. Route 101 and California State Route 1 across the strait. The bridge is one of the most internationally recognized symbols"} +{"qid": "test323", "pid": "8359876", "query": "how long is the famous suspension bridge in san francisco and what is it called", "answer": "Golden Gate Bridge", "passage": "\"Ferries of San Francisco Bay\"\nFerries of San Francisco Bay San Francisco Bay in California has been served by ferries of all types for over 150 years. John Reed established a sailboat ferry service in 1826. Although the construction of the Golden Gate Bridge and the San Francisco–Oakland Bay Bridge led to the decline in the importance of most ferries, some are still in use today for both commuters and tourists. One of the earliest ferry routes ran between San Francisco and Oakland on what was called the \"\"creek route\"\". The name derived from the Oakland landing site located at the foot of Broadway where"} +{"qid": "test3231", "pid": "2850401", "query": "when did the botswana currency first come into circulation", "answer": "1976", "passage": "\"Botswana pula\"\nBotswana pula The pula is the currency of Botswana. It has the ISO 4217 code \"\"BWP\"\" and is subdivided into 100 \"\"thebe\"\". \"\"Pula\"\" literally means \"\"rain\"\" in Setswana, because rain is very scarce in Botswana — home to much of the Kalahari Desert — and therefore valuable and a blessing. The word also serves as the national motto of the country. A sub-unit of the currency is known as \"\"thebe\"\", or \"\"shield\"\", and represents defence. The names were picked with the help of the public. The pula was introduced in 1976, replacing the South African rand at par. Despite a"} +{"qid": "test3234", "pid": "5234018", "query": "who is the real killer in basic instinct 2", "answer": "Catherine Tramell", "passage": "\"Basic Instinct 2\"\nBasic Instinct 2 Basic Instinct 2 (also known as Basic Instinct 2: Risk Addiction) is a 2006 erotic thriller film and the sequel to 1992's \"\"Basic Instinct\"\". The film was directed by Michael Caton-Jones and produced by Mario Kassar, Joel B. Michaels and Andrew G. Vajna. The screenplay was by Leora Barish and Henry Bean. It stars Sharon Stone, who reprises her role of Catherine Tramell from the original, and David Morrissey. The film is an international co-production of Germany, the United Kingdom, the United States and Spain. The film follows novelist and suspected serial killer Catherine Tramell, who is"} +{"qid": "test3234", "pid": "7448445", "query": "who is the real killer in basic instinct 2", "answer": "Catherine Tramell", "passage": "\"Catherine Tramell\"\nCatherine Tramell Catherine Tramell is a fictional character and main antagonist in the film \"\"Basic Instinct\"\" (1992) and its sequel, \"\"Basic Instinct 2\"\" (2006). Catherine Tramell, created by writer Joe Eszterhas, is played by Sharon Stone in both films. In \"\"Basic Instinct\"\", Tramell is a serial killer and love interest of washed-up detective Nick Curran; \"\"Basic Instinct 2\"\" pairs her with the similarly troubled British psychologist Michael Glass. One European critic defined Catherine Tramell as \"\"a mix between the classic femme fatale and the new psycho killers, one of the most evil characters ever created, on Hannibal Lecter's level\"\". She"} +{"qid": "test3234", "pid": "7448456", "query": "who is the real killer in basic instinct 2", "answer": "Catherine Tramell", "passage": "\"Catherine Tramell\"\npick was indeed used. Catherine Tramell Catherine Tramell is a fictional character and main antagonist in the film \"\"Basic Instinct\"\" (1992) and its sequel, \"\"Basic Instinct 2\"\" (2006). Catherine Tramell, created by writer Joe Eszterhas, is played by Sharon Stone in both films. In \"\"Basic Instinct\"\", Tramell is a serial killer and love interest of washed-up detective Nick Curran; \"\"Basic Instinct 2\"\" pairs her with the similarly troubled British psychologist Michael Glass. One European critic defined Catherine Tramell as \"\"a mix between the classic femme fatale and the new psycho killers, one of the most evil characters ever created, on"} +{"qid": "test3235", "pid": "4740614", "query": "what's in a beam me up scotty", "answer": "phencyclidine", "passage": "\"Beam me up, Scotty\"\n\"\"a mixture of phencyclidine and cocaine\"\" and to \"\"talk to Scotty, high off Scotty, see Scotty... etc.\"\" In recent usage, the phrase has been referenced by Baxter County Sheriff's drug slang definitions. It is also referenced in the book \"\"Vice Slang\"\" by Tom Dalzell and Terry Victor, for crack cocaine, and to describe \"\"Beamers, Beemers\"\", as those taking said drugs. The exact timing of when the phrase became popular is unclear. However, early signs of the quote's usage to describe something separate of Star Trek can be found roughly ten years after Star Trek's airing in 1966, in a publication"} +{"qid": "test3236", "pid": "576056", "query": "where did the legend of the easter bunny come from", "answer": "German Lutherans", "passage": "\"Easter Bunny\"\nin \"\"Cricket\"\" magazine. Both Breathnach and Dickmann present their respective 'transformed bird' stories as if they were legend, though no earlier version of either has been attested. Easter Bunny The Easter Bunny (also called the Easter Rabbit or Easter Hare) is a folkloric figure and symbol of Easter, depicted as a rabbit bringing Easter eggs. Originating among German Lutherans, the \"\"Easter Hare\"\" originally played the role of a judge, evaluating whether children were good or disobedient in behavior at the start of the season of Eastertide. The Easter Bunny is sometimes depicted with clothes. In legend, the creature carries colored"} +{"qid": "test3236", "pid": "576048", "query": "where did the legend of the easter bunny come from", "answer": "German Lutherans", "passage": "\"Easter Bunny\"\nEaster Bunny The Easter Bunny (also called the Easter Rabbit or Easter Hare) is a folkloric figure and symbol of Easter, depicted as a rabbit bringing Easter eggs. Originating among German Lutherans, the \"\"Easter Hare\"\" originally played the role of a judge, evaluating whether children were good or disobedient in behavior at the start of the season of Eastertide. The Easter Bunny is sometimes depicted with clothes. In legend, the creature carries colored eggs in his basket, candy, and sometimes also toys to the homes of children, and as such shows similarities to Santa Claus or the Christkind, as they"} +{"qid": "test3238", "pid": "20362438", "query": "when does star trek discovery air on tv", "answer": "September 19, 2017", "passage": "\"Star Trek: Discovery (season 1)\"\nthe PaleyFest television festival and at New York Comic Con. \"\"Star Trek: Discovery\"\" premiered at the ArcLight Hollywood on September 19, 2017. The first episode aired in a \"\"preview broadcast\"\" on CBS in the United States on September 24, and was made available with the second episode on CBS All Access. Subsequent first-run episodes, making up the first chapter of the season, were streamed weekly on All Access through November 5. The second chapter streamed from January 7 to February 11, 2018. CBS Studios International licensed the series to Bell Media for broadcast in Canada, and to Netflix for another"} +{"qid": "test3240", "pid": "4825487", "query": "who has scored the most half centuries in test cricket", "answer": "Sachin Tendulkar", "passage": "\"Century (cricket)\"\nTest cricket was between W. G. Grace and A. P. Lucas, batting for England, in the first innings of the only Test match between England and Australia on the Australians 1880 tour of England, played at the Kennington Oval (6–8 September 1880). The current holder of the record for most centuries in Test cricket is Sachin Tendulkar of India, who has scored 51 centuries. The first One Day International (ODI) century was scored by Denis Amiss who amassed 103 runs against Australia at Old Trafford in 1972. (the second official ODI on record). Sachin Tendulkar currently holds the record for"} +{"qid": "test3240", "pid": "679361", "query": "who has scored the most half centuries in test cricket", "answer": "Sachin Tendulkar", "passage": "\"Sachin Tendulkar\"\ncenturies in both Tests (51) and ODIs (49) as well as in Tests and ODIs combined (100). On 16 March 2012, Tendulkar scored his 100th international hundred. It came against Bangladesh in the league matches of Asia Cup 2012. He is also the only player to score fifty centuries in Test cricket, and the first to score fifty centuries in all international cricket combined. He also holds the world record for playing the highest number of Test matches (200) and ODI matches (463). Tendulkar has been part of most wins by an Indian in both Test cricket with 72 wins"} +{"qid": "test3240", "pid": "1501167", "query": "who has scored the most half centuries in test cricket", "answer": "Sachin Tendulkar", "passage": "\"Sunil Gavaskar\"\nSunil Gavaskar Sunil Manohar \"\"Sunny\"\" Gavaskar (born 10 July 1949) is a former Indian international cricketer who played from the early 1970s to late 1980s for the Bombay cricket team and Indian national team. Widely regarded as one of the greatest Test batsmen and best opening batsmen in Test cricket history, Gavaskar set world records during his career for the most Test runs and most Test centuries scored by any batsman. He held the record of 34 Test centuries for almost two decades before it was broken by Sachin Tendulkar in December 2005. He was the first person to score"} +{"qid": "test3241", "pid": "9862360", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"History of the Denver Broncos\"\nHistory of the Denver Broncos The history of the Denver Broncos American football club began when the team was chartered a member of the American Football League in 1960. The Broncos have played in the city of Denver, Colorado throughout their entire history. The Broncos did not win any titles as members of the AFL. Since the 1970 AFL–NFL merger, the Broncos have won 15 division titles, and played in eight Super Bowls, following the 1977, 1986, 1987, 1989, 1997, 1998, 2013, and 2015 seasons. They won Super Bowl XXXII, Super Bowl XXXIII and Super Bowl 50. Their most famous"} +{"qid": "test3241", "pid": "9862429", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"History of the Denver Broncos\"\nOakland Raiders. History of the Denver Broncos The history of the Denver Broncos American football club began when the team was chartered a member of the American Football League in 1960. The Broncos have played in the city of Denver, Colorado throughout their entire history. The Broncos did not win any titles as members of the AFL. Since the 1970 AFL–NFL merger, the Broncos have won 15 division titles, and played in eight Super Bowls, following the 1977, 1986, 1987, 1989, 1997, 1998, 2013, and 2015 seasons. They won Super Bowl XXXII, Super Bowl XXXIII and Super Bowl 50. Their"} +{"qid": "test3241", "pid": "106581", "query": "when did the broncos win the super bowl", "answer": "2015", "passage": "\"Denver Broncos\"\nblue jerseys. The team initially did not wear the white pants with the orange side stripes, until a November 1, 2015 game vs. the Green Bay Packers, in which the Broncos wore said design in order to match the uniform ensemble that was used during the team's Super Bowl XXXII win over the Packers. As the designated home team in Super Bowl 50, the Broncos — who have an 0–4 Super Bowl record when using their standard orange jerseys — chose to wear their white jerseys as the designated \"\"home\"\" team. In , the Broncos' unveiled a new \"\"Color Rush\"\""} +{"qid": "test3241", "pid": "106544", "query": "when did the broncos win the super bowl", "answer": "1997", "passage": "\"Denver Broncos\"\nmost of the teams that year. The fifth-seeded Jacksonville Jaguars, however, upset the Broncos 30–27 in the divisional round of the playoffs, ending the Broncos' 1996 run. During the 1997 season, Elway and Davis helped guide the Broncos to their first Super Bowl victory, a 31–24 win over the defending champion Green Bay Packers in Super Bowl XXXII. Though Elway completed only 13 of 22 passes, throwing one interception and no touchdowns (he did, however, have a rushing touchdown), Davis rushed for 157 yards and a Super Bowl–record three touchdowns to earn the Super Bowl Most Valuable Player Award—this while"} +{"qid": "test3241", "pid": "6468829", "query": "when did the broncos win the super bowl", "answer": "1997", "passage": "\"1997 Denver Broncos season\"\n1997 Denver Broncos season The 1997 Denver Broncos season was the team's 38th, and 28th in the National Football League (NFL). The Broncos finished the season with a record of 12–4, finishing second in the AFC West, and winning Super Bowl XXXII. The Broncos were the second team since the 1970 merger to win a Super Bowl (Oakland Raiders won in 1980) as a Wild Card team; the Kansas City Chiefs were an AFL wild card entrant who won the pre-merger Super Bowl IV in 1969. The 1997 season saw the new addition of the Denver Broncos' newest wordmark and"} +{"qid": "test3241", "pid": "12100237", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"1999 Denver Broncos season\"\n1999 Denver Broncos season The 1999 Denver Broncos season was the team' 30th year in the National Football League (NFL). After winning its second consecutive Super Bowl with a win over the Atlanta Falcons in Super Bowl XXXIII in Miami, the team suffered the retirement of Super Bowl XXXIII MVP quarterback John Elway during the off-season. Elway had spent his entire career with the Denver Broncos, and much of the focus in the weeks leading up to the season centered on the void left by Elway's departure. Head Coach Mike Shanahan announced that third-round 1998 draft pick Brian Griese, son"} +{"qid": "test3241", "pid": "16977266", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"2013 Denver Broncos season\"\nthe Patriots to within a one-score deficit, keeping the score at 26–16 with 3:13 remaining in the game. The Patriots tried an onside kick, but Broncos' wide receiver Eric Decker recovered the football near midfield. The Broncos' offense then forced the Patriots to use all of their timeouts and ran out the clock, aided by a critical 5-yard run on 4th-and-2 by running back Montee Ball just after the two-minute warning. With the win, the Broncos advanced to Super Bowl XLVIII, the team's first Super Bowl appearance since winning back-to-back Super Bowls in 1997 and 1998. Notes This was head"} +{"qid": "test3241", "pid": "6283082", "query": "when did the broncos win the super bowl", "answer": "2015", "passage": "\"Gary Kubiak\"\na key 27–20 win that enabled the team finish the 2015 regular season with a 12-4 record, winning the AFC West and securing the number one playoff seed in the AFC. In the postseason, the Broncos defeated the Pittsburgh Steelers by a score of 23-16 in the Divisional Round and the New England Patriots 20-18 in the AFC Championship, advancing to Super Bowl 50. The Broncos defeated the Carolina Panthers, 24-10 in Super Bowl 50, winning the title and giving Kubiak his first Super Bowl win as a head coach. Kubiak became the fourth head coach to win a Super"} +{"qid": "test3241", "pid": "6471467", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"1998 Denver Broncos season\"\nSuper Bowl. He finished his Broncos career with 51,475 yards passing and 300 touchdowns. Until Peyton Manning won in Super Bowl 50, Elway stood as the only Broncos quarterback to win a Super Bowl. However, Elway even played a large role in that victory as the general manager and president of football operations for the Broncos. Running back Terrell Davis set a team single season rushing mark. His final total was 2,008 yards, making him only the fourth player to rush for over 2,000 yards in single season. In 2007, the 1998 Broncos were ranked as the 12th greatest Super"} +{"qid": "test3241", "pid": "394931", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"Super Bowl XXXIII\"\nSuper Bowl XXXIII Super Bowl XXXIII was an American football game played between the American Football Conference (AFC) champion Denver Broncos and the National Football Conference (NFC) champion Atlanta Falcons to decide the National Football League (NFL) champion for the 1998 season. The Broncos defeated the Falcons by the score of 34–19, winning their second consecutive Super Bowl. The game was played on January 31, 1999, at Pro Player Stadium in Miami, Florida (now part of the suburb of Miami Gardens, which became a separate city in 2003). The defending Super Bowl champion Broncos entered the game with an AFC-best"} +{"qid": "test3241", "pid": "18388766", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"2015 Denver Broncos season\"\nthree playoff games, they recorded 14 sacks, forced seven turnovers, surrendered only one touchdown pass and gave up just 44 combined points (an average of just 14.7 points a game). The Broncos defeated the Pittsburgh Steelers 23–16 in the Divisional round and the defending Super Bowl champion New England Patriots 20–18 in the AFC Championship Game. The Broncos then defeated the Carolina Panthers 24–10 in Super Bowl 50 — the franchise's third Super Bowl championship, and the first since winning back-to-back Super Bowls in 1997 and 1998. On January 12, 2015, one day after the Broncos' 24–13 loss to the"} +{"qid": "test3241", "pid": "106553", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"Denver Broncos\"\nthe AFC's No. 1 seed in 2013. In the 2013 playoffs, the Broncos defeated the San Diego Chargers in the Divisional round and the New England Patriots in the AFC Championship. However, the Broncos were soundly defeated by the Seattle Seahawks in Super Bowl XLVIII by a score of 43–8, the Broncos' first Super Bowl berth since winning back-to-back Super Bowls in 1997 and 1998. Prior to the start of the 2014 season, the Broncos announced that Pat Bowlen, the team's owner since 1984, relinquished control of the team due to his battle with Alzheimer's disease, resulting in team president"} +{"qid": "test3241", "pid": "394936", "query": "when did the broncos win the super bowl", "answer": "1998", "passage": "\"Super Bowl XXXIII\"\nthat were closed prior to the start of the game). Following the Broncos' victory during Super Bowl XXXII the previous season, many wondered if 15-year veteran quarterback John Elway would retire after finally winning a Super Bowl. But Elway decided to stay with Denver and see if he could lead them to a second consecutive championship. Under the leadership of head coach Mike Shanahan, the Broncos stormed to the top of the AFC with a 14–2 regular record in 1998, winning their first 13 games before suffering their first loss to the New York Giants. The Broncos' offense, under the"} +{"qid": "test3242", "pid": "15864606", "query": "what awards did the curious case of benjamin button win", "answer": "Best Art Direction", "passage": "\"Victor J. Zolfo\"\nVictor J. Zolfo Victor J. Zolfo is a set decorator who has worked in the film industry since the late 1980s. Zolfo won the Academy Award for Best Art Direction and the BAFTA Award for Best Production Design for the 2008 film \"\"The Curious Case of Benjamin Button\"\", sharing the awards for the film with art director and production designer Donald Graham Burt. He was also part of the 20-person team who won the Art Directors Guild's Excellence in Production Design Award for \"\"The Curious Case of Benjamin Button\"\". Zolfo is the son of an art director who worked at"} +{"qid": "test3242", "pid": "2572637", "query": "what awards did the curious case of benjamin button win", "answer": "Best Visual Effects", "passage": "\"Digital Domain\"\nand technologists have been recognized with seven Academy Awards: three for Best Visual Effects (\"\"Titanic\"\", \"\"What Dreams May Come\"\", \"\"The Curious Case of Benjamin Button\"\"); and four for Scientific and Technical Achievement for its proprietary technology—i.e., for \"\"Track\"\" (proprietary tracking software), for \"\"Nuke\"\" (proprietary compositing software), for \"\"Storm\"\" (proprietary volumetric renderer), and for its proprietary fluid simulation system. The company's work has been nominated for five Academy Awards for Best Visual Effects (\"\"Apollo 13\"\", \"\"True Lies\"\", \"\"I, Robot\"\", \"\"Real Steel\"\" and \"\"\"\"). In addition, its excellence in digital imagery and animation has earned Digital Domain multiple British Academy (BAFTA) Awards."} +{"qid": "test3245", "pid": "4421835", "query": "when do you get your white coat in pharmacy school", "answer": "before the first year begins", "passage": "\"White coat ceremony\"\nWhite coat ceremony The White Coat Ceremony (WCC) is a relatively new ritual in some medical (MD, DO), dental, optometry, audiology, chiropractic, dietetic, occupational therapy, physical therapy, podiatric, pharmacy, physician assistant, pathologists' assistant, nursing, naturopathic and veterinary schools that marks the student's transition from the study of preclinical to clinical health sciences. At some schools, where students begin meeting patients early in their education, the white coat ceremony is held before the first year begins. It is an example of a matriculation. WCCs typically involve a formal \"\"coating\"\" of students. Over 100 medical schools in the United States now have"} +{"qid": "test3248", "pid": "9131694", "query": "when was the last year thanksgiving was on the 23rd", "answer": "2017", "passage": "\"NFL on Thanksgiving Day\"\nand Cowboys' division rivals for the contests so that ratings are maximized; seven out of the ten Thanksgiving games involving the Lions or Cowboys since 2014 have involved a team in the same division, while only one (a 2017 contest between the Cowboys and Los Angeles Chargers) has involved the AFC. The Los Angeles Rams have the longest active appearance drought of any team, with their last appearance coming in 1975. Among current NFL markets, Cleveland has had the longest wait to have a team from its city play on Thanksgiving; the Browns last appeared in 1989, several years before"} +{"qid": "test3248", "pid": "9131686", "query": "when was the last year thanksgiving was on the 23rd", "answer": "2017", "passage": "\"NFL on Thanksgiving Day\"\ncarry an AFC team; by 2018, the last vestiges of conference ties to the Thanksgiving games were eliminated (in practice, games on Fox remain all-NFC contests). Since teams playing on Thanksgiving have worn throwback uniforms on numerous occasions. In some years (namely 2002), it extended to nearly all games of the weekend, and in some cases also involved classic field logos at the respective stadiums. In 2001–2004, and again in 2008, 2010, and 2017 the Detroit Lions have worn throwback uniforms based on their very early years. From 2001 to 2003, Dallas chose to represent the 1990s Cowboys dynasty by"} +{"qid": "test3249", "pid": "20518266", "query": "who won the medals in men's figure skating 2018", "answer": "Yuzuru Hanyu", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\nFigure skating at the 2018 Winter Olympics – Men's singles The men's single figure skating competition of the 2018 Winter Olympics was held on 16 and 17 February 2018 at the Gangneung Ice Arena in Gangneung, South Korea. The short program was held on 16 February and the free skating was held on 17 February. This medal event was the 1000th medal event in the history of the Winter Olympic Games. With his victory at the 2018 Winter Olympics, Yuzuru Hanyu became the first male figure skater to win two consecutive gold medals after Dick Button, who did so in"} +{"qid": "test3249", "pid": "20518267", "query": "who won the medals in men's figure skating 2018", "answer": "Javier Fernández", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\n1952. Fellow countryman Shoma Uno won the silver medal, and Spain's Javier Fernández won the bronze medal. Fernández won Spain's first figure skating medal and fourth medal at the Winter Olympics. After the short program, Hanyu, Fernández, Uno, and Jin Boyang were first, second, third, and fourth respectively. Nathan Chen, originally one of the favorites for the podium, skated an uncharacteristically poor short program that placed him at 17th, but fought back to win the free skating with a score of 215.08--8.91 points above the second place free skating by Hanyu. He ended up fifth overall. In the free program,"} +{"qid": "test3249", "pid": "16226181", "query": "who won the medals in men's figure skating 2018", "answer": "Shoma Uno", "passage": "\"Shoma Uno\"\nbeen decided that Uno will still compete in the competition. Uno scored 94.26 in the short program, and 179.51 in the free skate, with a total score of 273.77, earning him the silver medal. His result, together with that of Kazuki Tomono secured three spots for Japanese men at the 2019 World Figure Skating Championships to be held in Saitama, Japan Uno started the season at the 2018 CS Lombardia Trophy, where he won the event. At 2018 Japan Open, he won the men's free program and won the gold medal as a member of Team Japan. He won his"} +{"qid": "test3250", "pid": "95704", "query": "the first permanent european settlement on future united states soil was located where", "answer": "St. Augustine", "passage": "\"The Maritimes\"\nPortuguese explorers/cartographers have also documented various parts of the Maritimes, namely Diogo Homem. However, it was French explorer Jacques Cartier who made the first detailed reconnaissance of the region for a European power, and in so doing, claimed the region for the King of France. Cartier was followed by nobleman Pierre Dugua, Sieur de Monts who was accompanied by explorer/cartographer Samuel de Champlain in a 1604 expedition where they established the second permanent European settlement in what is now the United States and Canada, following Spain's settlement at St. Augustine. Champlain's settlement at Saint Croix Island, later moved to Port-Royal,"} +{"qid": "test3250", "pid": "6861400", "query": "the first permanent european settlement on future united states soil was located where", "answer": "St. Augustine", "passage": "\"Maritime history of Florida\"\nJohns River for future settlement and then headed north to establish Charlesfort in present-day Parris Island, South Carolina. The colony failed, and in 1564, René Goulaine de Laudonnière led the settlers back to Florida and established Fort Caroline in what is now Jacksonville. In 1565, Spaniard Pedro Menéndez de Avilés captured Fort Caroline in a brutal fight with the French and established St. Augustine, the first permanent European colony in the continental United States. In 1568, Frenchman Dominique de Gourgues recaptured Fort Caroline. In 1569, the Spanish built a watchtower at Matanzas Inlet to watch the horizon and warn St."} +{"qid": "test3250", "pid": "7454399", "query": "the first permanent european settlement on future united states soil was located where", "answer": "St. Augustine", "passage": "\"Pedro Menendez High School\"\nPedro Menendez High School Pedro Menendez High School is a public high school in the St. Johns County School District, located in southern St. Johns County, Florida (United States). It was named for Pedro Menéndez de Avilés, a sixteenth-century Spanish admiral and pirate hunter who founded St. Augustine, the first permanent European settlement and oldest port city in what is now the continental United States, on August 28, 1565. It has a student body of over 1,300 students. The school building is a two-story octagon with an open courtyard in the center. The gymnasium and auditorium are attached on the"} +{"qid": "test3250", "pid": "7454401", "query": "the first permanent european settlement on future united states soil was located where", "answer": "St. Augustine", "passage": "\"Pedro Menendez High School\"\nof 2010. Pedro Menendez High School Pedro Menendez High School is a public high school in the St. Johns County School District, located in southern St. Johns County, Florida (United States). It was named for Pedro Menéndez de Avilés, a sixteenth-century Spanish admiral and pirate hunter who founded St. Augustine, the first permanent European settlement and oldest port city in what is now the continental United States, on August 28, 1565. It has a student body of over 1,300 students. The school building is a two-story octagon with an open courtyard in the center. The gymnasium and auditorium are attached"} +{"qid": "test3250", "pid": "2233078", "query": "the first permanent european settlement on future united states soil was located where", "answer": "Jamestown", "passage": "\"Virginia Peninsula\"\nfirst European settlement in the interior of North America. The first permanent English settlement in North America was established in 1607 at Jamestown. The first continuously occupied settlement was at Kecoughtan in Elizabeth City County what is now the City of Hampton. Nearby, Fort Monroe, the country's oldest military base still in use is located at Old Point Comfort. Old Point Comfort is also the site of the first landing of Africans in America, in 1619. After declaring independence from Great Britain, Virginia's first state capital was Williamsburg. Also, the decisive battle of the American Revolution, the siege of Yorktown"} +{"qid": "test3250", "pid": "1172367", "query": "the first permanent european settlement on future united states soil was located where", "answer": "Jamestown", "passage": "\"Morganton, North Carolina\"\noldest-known European inland (non-coastal) settlement in the United States of Fort San Juan has been identified at Joara, a former Mississippian culture chiefdom located about five miles north of present-day Morganton. In 1567 a Spanish expedition built the fort there, while seeking to establish an interior route to Mexican silver mines. This was more than 40 years before the English settled Jamestown, Virginia, their first permanent settlement in North America. The Spanish left a 31-man garrison that occupied the fort for 18 months before being overcome in a Mississippian attack. Five other Spanish forts in the larger interior region were"} +{"qid": "test3250", "pid": "12580409", "query": "the first permanent european settlement on future united states soil was located where", "answer": "St. Augustine", "passage": "Americans\nfirst voyage of Christopher Columbus, the European colonization of the Americas began, with St. Augustine, Florida becoming the first permanent European settlement in the continental United States. From the 16th through the 19th centuries, the population of Native Americans declined in the following ways: epidemic diseases brought from Europe; genocide and warfare at the hands of European explorers and colonists, as well as between tribes; displacement from their lands; internal warfare, enslavement; and intermarriage. As defined by the United States Census Bureau and the Office of Management and Budget, Native Hawaiians and other Pacific Islanders are \"\"persons having origins in"} +{"qid": "test3250", "pid": "10307208", "query": "the first permanent european settlement on future united states soil was located where", "answer": "St. Augustine", "passage": "\"Maritime history of Colonial America\"\nAmericas. Spanish explorers also reached the present-day United States. The first confirmed landing in the continental US was by a Spaniard, Juan Ponce de León, who landed in 1513 at a lush shore he christened La Florida. The Spanish sent some settlers, creating the first permanent European settlement in the continental United States at St. Augustine, Florida, in 1565 and later Santa Fe, New Mexico, San Antonio, Tucson, San Diego, Los Angeles and San Francisco. Most Spanish settlements were along the California coast or the Sante Fe River in New Mexico. The first successful English colony was established in 1607,"} +{"qid": "test3251", "pid": "19293024", "query": "who played violet in a series of unfortunate events netflix", "answer": "Malina Weissman", "passage": "\"Malina Weissman\"\nKevin Spacey and Jennifer Garner, which was released in August, 2016. Since 2017, Weissman has starred as Violet Baudelaire in the Netflix series \"\"A Series of Unfortunate Events\"\". Malina Weissman Malina Opal Weissman (born March 12, 2003) is an American actress and model, best known for her roles as Violet Baudelaire in the Netflix series \"\"A Series of Unfortunate Events\"\", young April O'Neil in \"\"Teenage Mutant Ninja Turtles\"\" and young Kara Zor-El in \"\"Supergirl\"\". Weissman is a New York City-based model and actress. She started her career as a model at the age of eight, following in the footsteps of"} +{"qid": "test3251", "pid": "2907551", "query": "who played violet in a series of unfortunate events netflix", "answer": "Malina Weissman", "passage": "\"A Series of Unfortunate Events\"\nthe project and they have not yet named a replacement showrunner. However, it was announced that Sonnenfeld and Handler were both still on board, and that Neil Patrick Harris had been cast as Count Olaf and Malina Weissman and Louis Hynes are cast as Violet and Klaus. In March 2016, K. Todd Freeman and Patrick Warburton were cast as Mr. Poe and Lemony Snicket respectively. The first season, consisting of eight episodes that cover the first four books, was released worldwide on Netflix on January 13, 2017. \"\"A Series of Unfortunate Events\"\" was renewed for a second season, which was"} +{"qid": "test3251", "pid": "19293022", "query": "who played violet in a series of unfortunate events netflix", "answer": "Malina Weissman", "passage": "\"Malina Weissman\"\nMalina Weissman Malina Opal Weissman (born March 12, 2003) is an American actress and model, best known for her roles as Violet Baudelaire in the Netflix series \"\"A Series of Unfortunate Events\"\", young April O'Neil in \"\"Teenage Mutant Ninja Turtles\"\" and young Kara Zor-El in \"\"Supergirl\"\". Weissman is a New York City-based model and actress. She started her career as a model at the age of eight, following in the footsteps of her mother whose agency signed her. She has appeared in major designers and brands like Calvin Klein, Ralph Lauren, Levi's, Benetton, DKNY, H&M, among many others. As an"} +{"qid": "test3251", "pid": "19383203", "query": "who played violet in a series of unfortunate events netflix", "answer": "Malina Weissman", "passage": "\"A Series of Unfortunate Events (TV series)\"\nand deepening the novel series' mythology. Dornbush also praised the performance of guest stars such as Lucy Punch and Patrick Warburton and awarded the second season 7.2 stars. A Series of Unfortunate Events (TV series) Lemony Snicket's A Series of Unfortunate Events, or simply A Series of Unfortunate Events, is an American black comedy-drama web television series from Netflix, developed by Mark Hudis and Barry Sonnenfeld, based on Lemony Snicket’s children's novel series of the same name. It stars Neil Patrick Harris, Patrick Warburton, Malina Weissman, Louis Hynes, K. Todd Freeman, and Presley Smith with Lucy Punch, Avi Lake, and"} +{"qid": "test3251", "pid": "19383175", "query": "who played violet in a series of unfortunate events netflix", "answer": "Malina Weissman", "passage": "\"A Series of Unfortunate Events (TV series)\"\nA Series of Unfortunate Events (TV series) Lemony Snicket's A Series of Unfortunate Events, or simply A Series of Unfortunate Events, is an American black comedy-drama web television series from Netflix, developed by Mark Hudis and Barry Sonnenfeld, based on Lemony Snicket’s children's novel series of the same name. It stars Neil Patrick Harris, Patrick Warburton, Malina Weissman, Louis Hynes, K. Todd Freeman, and Presley Smith with Lucy Punch, Avi Lake, and Dylan Kingwell joining the cast in the second season. The first season, which premiered on January 13, 2017, consists of eight episodes and adapts the first four books"} +{"qid": "test3251", "pid": "4189584", "query": "who played violet in a series of unfortunate events netflix", "answer": "Malina Weissman", "passage": "\"Lemony Snicket's A Series of Unfortunate Events\"\nlead actors having grown too old to continue their roles. \"\"In an odd way, the best thing you could do is actually have Lemony Snicket say to the audience, 'Okay, we pawned the first film off as a mere dramatization with actors. Now, I'm afraid I'm going to have to show you the real thing.'\"\" In November 2014, Netflix announced its plans of creating a television series to adapt the entire novel series. The series stars Neil Patrick Harris, Malina Weissman, Louis Hynes and Presley Smith, with Patrick Warburton as narrator. The series, also titled \"\"A Series of Unfortunate Events\"\","} +{"qid": "test3253", "pid": "7574144", "query": "star wars episode ii attack of the clones characters", "answer": "Anakin Skywalker", "passage": "\"Star Wars: Episode II – Attack of the Clones (video game)\"\nStar Wars: Episode II – Attack of the Clones (video game) Star Wars Episode II: Attack of the Clones is a video game based on . It was announced by THQ and LucasArts in early February 2002 that they would be releasing a game on Game Boy Advance based on Over the course of eleven levels, the player is able to play as three of the film's main protagonists: Obi-Wan Kenobi, Mace Windu and Anakin Skywalker. He/she is also able to fight enemies such as Count Dooku and Jango Fett. Locations include Tatooine, Coruscant and Geonosis. Players can play a"} +{"qid": "test3253", "pid": "614589", "query": "star wars episode ii attack of the clones characters", "answer": "Obi-Wan Kenobi", "passage": "\"Star Wars: Episode II – Attack of the Clones\"\ntitle was \"\"Jar Jar's Big Adventure\"\", a sarcastic reference to the negative fan response to the \"\"Episode I\"\" character. In writing \"\"The Empire Strikes Back\"\", Lucas initially decided that Lando Calrissian was a clone and came from a planet of clones which caused the \"\"Clone Wars\"\" mentioned by Obi-Wan Kenobi in \"\"A New Hope\"\"; he later came up with an alternate concept of an army of clone shocktroopers from a remote planet which were used by the Republic as an army in the war that followed. Principal photography occurred between June 26, 2000 and September 20, 2000 at Fox Studios"} +{"qid": "test3253", "pid": "7368125", "query": "star wars episode ii attack of the clones characters", "answer": "Yoda", "passage": "\"Star Wars: Episode II – Attack of the Clones (soundtrack)\"\nStar Wars: Episode II – Attack of the Clones (soundtrack) The soundtrack to was released by Sony Classical on April 23, 2002. The music was composed and conducted by John Williams, and performed by the London Symphony Orchestra and London Voices. Shawn Murphy recorded and mixed the score. Peter Myles and Kenneth Wannberg served as music editors. Williams himself produced the recording sessions. Four different album covers were featured with Anakin and Padme, Jango Fett, Yoda, and the theatrical poster. For a limited time, the CD shipped with a bonus CD-ROM featuring a PC screensaver and a total of four"} +{"qid": "test3253", "pid": "614586", "query": "star wars episode ii attack of the clones characters", "answer": "Yoda", "passage": "\"Star Wars: Episode II – Attack of the Clones\"\nuses Force powers to divert Yoda and flees to Coruscant, where he delivers blueprints for a superweapon to his Sith master, Darth Sidious. As the Jedi acknowledge the beginning of the Clone Wars, Anakin is fitted with a robotic arm, and secretly marries Padmé on Naboo. \"\"E! Online\"\" reported that Lucas had allowed 'N Sync to film a small background cameo appearance, in order to satisfy his daughters. They were subsequently cut out of the film in post-production. The end credits erroneously list Alan Ruscoe as playing Neimoidian senator Lott Dod. The character was actually another Neimoidian, played by an"} +{"qid": "test3253", "pid": "12484119", "query": "star wars episode ii attack of the clones characters", "answer": "Anakin Skywalker", "passage": "\"Clone Wars Adventures\"\n\"\"Clone Wars Adventures\"\" was set in the Jedi Temple on Coruscant set between Episodes II and III of Star Wars. Here players can interact with popular Clone Wars characters like Anakin Skywalker, Mace Windu, Yoda, and Obi-Wan Kenobi, and play more than 20 different mini-games including Lightsaber Duel, Republic Defender, a tower defense game, and Speeder Bike Racing. Other mini-games are campaign based on Seasons 3, 4, and 5 from Star Wars the Clone Wars. Players can challenge each other in multi-player games to win Credits. Even though the game is based on the Jedi temple, players can travel to"} +{"qid": "test3253", "pid": "614597", "query": "star wars episode ii attack of the clones characters", "answer": "Yoda", "passage": "\"Star Wars: Episode II – Attack of the Clones\"\nsame way that traditional stunt doubles did. It also furthered the authenticity of computer-generated characters by introducing a new, completely CGI-created version of the character Yoda. Rob Coleman and John Knoll prepared two tests featuring a CGI-animated Yoda using audio from \"\"The Empire Strikes Back\"\". Yoda's appearance in \"\"Episode V\"\" also served as the reference point for the creation of the CGI Yoda; Lucas repeatedly stated to the animation department that \"\"the trick\"\" to the animation of the CGI Yoda was to make him like the puppet from which he was based, in order to maintain a flow of continuity."} +{"qid": "test3253", "pid": "614579", "query": "star wars episode ii attack of the clones characters", "answer": "Anakin Skywalker", "passage": "\"Star Wars: Episode II – Attack of the Clones\"\nSenator Padmé Amidala evades an assassination attempt, Jedi apprentice Anakin Skywalker becomes her protector, while his mentor Obi-Wan Kenobi investigates the attempt on her life. Soon, the trio witness the onset of a new threat to the galaxy, the Clone Wars. Development of \"\"Attack of the Clones\"\" began in March 2000, some months after the release of \"\"The Phantom Menace\"\". By June 2000, Lucas and Hales completed a draft of the script and principal photography took place from June to September 2000. The film crew primarily shot at Fox Studios Australia in Sydney, Australia, with additional footage filmed in Tunisia,"} +{"qid": "test3253", "pid": "614613", "query": "star wars episode ii attack of the clones characters", "answer": "C-3PO", "passage": "\"Star Wars: Episode II – Attack of the Clones\"\nin \"\"The Phantom Menace\"\" were toned down; instead, C-3PO reprised some of his bumbling traditions in that role. McGregor referred to the swordplay in the film as \"\"unsatisfactory\"\" when comparing it to the climactic duel in \"\"\"\" as it neared release. ReelViews.net's James Berardinelli gave a positive review, saying \"\"in a time when, more often than not, sequels disappoint, it's refreshing to uncover something this high-profile that fulfills the promise of its name and adds another title to a storied legacy.\"\" Roger Ebert, who had praised the previous \"\"Star Wars\"\" films, gave \"\"Episode II\"\" only two out of four stars,"} +{"qid": "test3253", "pid": "12213737", "query": "star wars episode ii attack of the clones characters", "answer": "Obi-Wan Kenobi", "passage": "Palpatine\ncomics produced since the originating 1977 film \"\"Star Wars\"\" were rebranded as \"\"Star Wars Legends\"\" and declared non-canon to the franchise by Lucasfilm. \"\"Star Wars Legends\"\" literature elaborates on Palpatine's role in \"\"Star Wars\"\" fiction outside of the films. Palpatine/Darth Sidious is a central character in Genndy Tartakovsky's \"\"\"\" micro-series, which is set between \"\"Attack of the Clones\"\" and \"\"Revenge of the Sith\"\". The character's likeness in the series is based on that in \"\"The Phantom Menace\"\" and \"\"Attack of the Clones\"\", and he is voiced by Nick Jameson. In the first chapter, Palpatine is informed by Obi-Wan Kenobi that"} +{"qid": "test3254", "pid": "18184258", "query": "who plays dawn on nicky ricky dicky and dawn", "answer": "Lizzy Greene", "passage": "\"Nicky, Ricky, Dicky & Dawn\"\nNicky, Ricky, Dicky & Dawn Nicky, Ricky, Dicky & Dawn is an American comedy television series developed by Michael Feldman and created by Matt Fleckenstein that aired on Nickelodeon from September 13, 2014 to August 4, 2018. The series stars Brian Stepanek, Allison Munn, Aidan Gallagher, Casey Simpson, Mace Coronel, Lizzy Greene, Gabrielle Elyse, and Kyla-Drew Simmons. The series focuses on quadruplets Nicky, Ricky, Dicky, and Dawn Harper, 10 years old at the start of the series, who have nothing in common and often fight, but must work together to solve everyday situations. The series was originally picked up for"} +{"qid": "test3254", "pid": "18184259", "query": "who plays dawn on nicky ricky dicky and dawn", "answer": "Lizzy Greene", "passage": "\"Nicky, Ricky, Dicky & Dawn\"\n13 episodes on March 13, 2014, but was later increased to 20 episodes. The series premiered on September 13, 2014. On November 18, 2014, the series was renewed for a second season. The second season premiered on May 23, 2015. On February 9, 2016, Nickelodeon renewed \"\"Nicky, Ricky, Dicky & Dawn\"\" for a third season of 14 episodes. It was also confirmed that Matt Fleckenstein would step down as show runner. Actress Lizzy Greene announced on her Twitter account that production for season three started on April 26, 2016. The third season premiered on January 7, 2017. The series was"} +{"qid": "test3255", "pid": "5590022", "query": "who played tom in four weddings and a funeral", "answer": "James Fleet", "passage": "\"James Fleet\"\nJohn Dashwood in 1995's \"\"Sense and Sensibility\"\" and that of Lytton Strachey in the 2003 film \"\"Al Sur de Granada\"\" (\"\"South from Granada\"\"). In 2014 he played John Constable in the Mike Leigh film \"\"Mr Turner\"\". He played Kevin’s dad in the 2000 cult film \"\"Kevin and Perry Go Large\"\". James Fleet James Edward Fleet (born 11 March 1952) is a British actor. He is most famous for his roles as the bumbling and well-meaning Tom in the 1994 British romantic comedy film \"\"Four Weddings and a Funeral\"\" and the dim-witted but kind Hugo Horton in the BBC sitcom television"} +{"qid": "test3255", "pid": "2304550", "query": "who played tom in four weddings and a funeral", "answer": "James Fleet", "passage": "Bilston\nlife in Bilston. James Fleet (born 1954) is a British actor. He is most famous for his roles as the bumbling and well-meaning Tom in the 1994 British romantic comedy film \"\"Four Weddings and a Funeral\"\", and the dim-witted Hugo Horton in the BBC situation comedy television series \"\"The Vicar of Dibley\"\". David Daker, born in Bilston in 1935, is a British actor. His best-known roles are in television. He played PC Owen Culshaw in Z-Cars, Jarvis in Porridge, Captain Nathan Spiker in Dick Turpin and Harry Crawford in Boon. Don Powell, drummer in the band Slade, was born in"} +{"qid": "test3255", "pid": "142062", "query": "who played tom in four weddings and a funeral", "answer": "James Fleet", "passage": "\"Four Weddings and a Funeral\"\nFour Weddings and a Funeral Four Weddings and a Funeral is a 1994 British romantic comedy film directed by Mike Newell. It was the first of several films by screenwriter Richard Curtis to feature Hugh Grant, and follows the adventures of Charles (Grant) and his circle of friends through a number of social occasions as they each encounter romance. Andie MacDowell stars as Charles' love interest Carrie, with Kristin Scott Thomas, James Fleet, Simon Callow, John Hannah, Charlotte Coleman, David Bower, Corin Redgrave and Rowan Atkinson in supporting roles. It was made in six weeks and cost under £3 million,"} +{"qid": "test3256", "pid": "7944361", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Vijaya Mulay\"\nproduce test modules for children in the 6 to 9 age group. In 1975, Vijaya was asked to head the CET – Center for Educational Technology to prepare educational films for broadcast to over 2400 villages in rural districts and programming in 4 languages. Ek Anek Aur Ekta, the 1974 animation film Scripted and Directed by Vijaya Mulay and Produced by Center for Educational Technology is very popular amongst the many generations of Indians. The CET, NCERT projects equipped her to later continue research on the field of education and on using media for development. After her retirement from NCERT,"} +{"qid": "test3256", "pid": "14385284", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Ek Anek Aur Ekta\"\na group of children playing in a garden with one of them asking his elder sister, \"\"Didi, yeh anek kya hota hai?\"\", or in English, \"\"Sis, what do you mean by Many?\"\". The rest of the film is the sister's reply, using a metaphorical story of how a group of birds escape a bird catcher by uniting to recruit their friends, a group of mice. The film was directed by Vijaya Mulay. The film's design, animation and creation was done by Bhimsain Khurana. The lyrics of \"\"Hind Desh ke Niwasi\"\" were written by Pandit Vinay Chandra Maudgalya. Sadhna Sargam sang"} +{"qid": "test3256", "pid": "8920591", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Shubha Mudgal\"\nMaudgalya, who was the founder of Gandharva Mahavidyalaya, a famous school of fine arts. He had founded the institution in 1939 and ran it from his residence near Plaza cinema, Connaught Place, New Delhi. Apart from being an outstanding classical musician, Pandit Maudgalya was also an accomplished lyricist; the song \"\"Hind Desh ke Niwasi,\"\" used in the animation film Ek Anek Aur Ekta by Vijaya Mulay, which won the National Film Award for Best Educational Film, was written by him. Shubha Gupta not only became Pandit Mudgalya's student but also his daughter-in-law; she married (and was later divorced from) Pandit"} +{"qid": "test3256", "pid": "15111987", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Madhup Mudgal\"\nProfessor Vinay Chandra Maudgalya is best remembered today for the lyrics of the song \"\"Hind Desh ke Niwasi\"\" in the animation film Ek Anek Aur Ekta by Vijaya Mulay which won the National Film Award for Best Educational Film. Because of his father's interests, Madhup grew up in a musical environment, where veteran musicians like Pt. Omkarnath Thakur and Ali Akbar Khan would come by regularly for \"\"sangeet baithaks\"\" (musical sittings). The school to its present location at Deen Dayal Upadhayaya Marg in 1972 and today houses over 1200 dance and music students and a faculty of 60 teachers. Madhup"} +{"qid": "test3256", "pid": "16560805", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Madhavi Mudgal\"\nProfessor Vinay Chandra Maudgalya is best remembered today for the lyrics of the song \"\"Hind Desh ke Niwasi\"\" in the animation film Ek Anek Aur Ekta by Vijaya Mulay which won the National Film Award for Best Educational Film She inherited a deep love towards art and dance from her family and under the proper guidance of her guru Shri Harekrishna Behera, the world soon came to know about her extraordinary skills. She gave her first public performance at the age of only 4. Initially she learnt Bharatnatyam and Kathak, but finally she chose Odissi as her medium of expression."} +{"qid": "test3256", "pid": "7944354", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Vijaya Mulay\"\nVijaya Mulay Vijaya Mulay (born 16 May 1921) is a documentary filmmaker, film historian, writer, educationist and researcher. Her close friendships with Satyajit Ray, Louis Malle, Mrinal Sen and other film personalities have given her a unique perspective into Indian cinema and influenced her work. Her body of work has shaped how India is viewed by Indian and non-Indian filmmakers. She is the mother of National Award winning actor Suhasini Mulay and noted high energy physicist Atul Gurtu is her son-in-law. Vijaya Mulay is remembered for her animation film \"\"Ek Anek Aur Ekta\"\" which won the National Film Award for"} +{"qid": "test3256", "pid": "18356017", "query": "who directed the iconic animated short educational film ek anek aur ekta", "answer": "Vijaya Mulay", "passage": "\"Mukul Mudgal\"\nAnek Aur Ekta by Vijaya Mulay which won the National Film Award for Best Educational Film. After his schooling from Modern School, Barakhamba Road, New Delhi, Mukul Mudgal did B.Sc. (Hons) from Hindu College, University of Delhi, followed by LL.B from Faculty of Law, University of Delhi. He started his career as an advocate at the Supreme Court of India and the Delhi High Court in 1973. He was appointed as a Judge of the Delhi High Court on 2 March 1998. Thereafter, he became the Chief Justice of Punjab and Haryana High Court on 5 December 2009 and retired"} +{"qid": "test3257", "pid": "1293867", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Laurasia\nformed - the Atlantic Ocean, though Greenland (attached to North America) and Europe were still joined together. The separation of Europe and Greenland occurred around 55 million years ago (at the end of the Paleocene). Laurasia finally divided into the continents after which it is named: Laurentia (now North America) and Eurasia (excluding the Indian subcontinent). Laurasia Laurasia () was the more northern of two supercontinents (the other being Gondwana) that formed part of the Pangaea supercontinent around (Mya). It separated from Gondwana (beginning in the late Triassic period) during the breakup of Pangaea, drifting farther north after the split."} +{"qid": "test3257", "pid": "1613028", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"University of Greenland\"\nUniversity of Greenland The University of Greenland (; ) is Greenland's only university. It is in the capital city of Nuuk. Most courses are taught in Danish, a few in Greenlandic and classes by exchange lecturers often in English. The university had an enrollment of approximately 650 students in 2015, composed of mostly Greenlandic inhabitants. It has around fourteen academic staff and five technical-administrative employees. The modest student population is due in part to the government's policy allowing students a free university education anywhere in Europe or North America, with most Greenlandic students going to university in Denmark. The University"} +{"qid": "test3257", "pid": "619054", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"History of North America\"\nThe only Norse site outside of Greenland yet discovered in North America is at L'Anse aux Meadows, Newfoundland and Labrador in Canada. All of the Norse colonies were eventually abandoned. The Norse voyages did not become common knowledge in the Old World. Even the permanent settlement in Greenland, which persisted until the early 1400s, received little attention and Europeans remained largely ignorant of the existence of the Americas until 1492. As part of a general age of discovery, Italian sailor Christopher Columbus proposed a voyage west from Europe to find a shorter route to Asia. He eventually received the backing"} +{"qid": "test3257", "pid": "155186", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Greenland\nGreenland Greenland (, ; , ) is an autonomous constituent country of the Kingdom of Denmark between the Arctic and Atlantic Oceans, east of the Canadian Arctic Archipelago. Though physiographically a part of the continent of North America, Greenland has been politically and culturally associated with Europe (specifically Norway and Denmark, the colonial powers, as well as the nearby island of Iceland) for more than a millennium. The majority of its residents are Inuit, whose ancestors began migrating from the Canadian mainland in the 13th century, gradually settling across the island. Greenland is the world's largest island. Australia and Antarctica"} +{"qid": "test3257", "pid": "155256", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Greenland\nin 2001. Greenland has excellent conditions for skiing, fishing, snowboarding, ice climbing and rock climbing, although mountain climbing and hiking are preferred by the general public. Although the country's environment is generally ill-suited for golf, there are nevertheless golf courses on the island. Greenland Greenland (, ; , ) is an autonomous constituent country of the Kingdom of Denmark between the Arctic and Atlantic Oceans, east of the Canadian Arctic Archipelago. Though physiographically a part of the continent of North America, Greenland has been politically and culturally associated with Europe (specifically Norway and Denmark, the colonial powers, as well as"} +{"qid": "test3257", "pid": "20041197", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Solar eclipse of October 19, 1865\"\nlocal time) at 21.3°N 60.2°W northeast of Antigua and Barbuda and lasted 9 min 27 sec. The maximum width of band was 326 km (203 mi). The eclipse was visible in North America (except for the Yukon, Alaska and the northernmost part of Greenland), Central America, the Caribbean South America including, the northern parts of Peru and Bolivia and most of Brazil, the westernmost parts of Africa and Europe (westernmost Spain and Portugal, Ireland and parts of Scotland). Areas that were in the edge of the eclipse included the Galapagos Islands. In North America, it occurred in the morning, in"} +{"qid": "test3257", "pid": "12265224", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Selaginella selaginoides\"\nbear stout, yellowish cones which are only slightly differentiated from the branch. The cones usually bear two kinds of sporangia: lobed megasporangia in the lower part of the cone which produce megaspores and simple microsporangia in the upper part which produce many tiny microspores. It has a near-circumpolar distribution in the northern hemisphere, including northern parts of Europe, Asia and North America including Greenland, Iceland and the Faroe Islands. In Europe it occurs south to the Pyrenees, Apennines and Caucasus. In Asia it reaches Japan while in North America it occurs south as far as Nevada, Wisconsin, Michigan and Maine."} +{"qid": "test3257", "pid": "189925", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Iceland\nAtlantic and Arctic Oceans. The main island is entirely south of the Arctic Circle, which passes through the small Icelandic island of Grímsey off the main island's northern coast. The country lies between latitudes 63 and 68°N, and longitudes 25 and 13°W. Iceland is closer to continental Europe than to mainland North America, although it is closest to Greenland (), an island of North America. Iceland is generally included in Europe for geographical, historical, political, cultural, linguistic and practical reasons. Geologically, the island includes parts of both continental plates. The closest bodies of land in Europe are the Faroe Islands"} +{"qid": "test3257", "pid": "619042", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"History of North America\"\nwas limited in comparison to the extensive trade and conflict of civilizations across the Atlantic in Europe and Asia. Records of European travel to North America begin with the Norse in the tenth century CE. In 985, they founded a settlement on Greenland (an often-overlooked part of North America) that persisted until the early 1400s. They also explored the east coast of Canada, but their settlements there were much smaller and shorter-lived. With the Age of Exploration and the voyages of Christopher Columbus (starting 1492), Europeans began to arrive in the Americas in large numbers and to develop colonial ambitions"} +{"qid": "test3257", "pid": "13593847", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"North Atlantic air ferry route in World War II\"\nthe Destroyers for Bases Agreement was completed. In exchange for fifty obsolete destroyers, the U. S. got ninety-nine-year leases for air and naval bases in the Dominion of Newfoundland, Bermuda, British Guiana, Antigua, Trinidad, St. Lucia, Jamaica and the Bahamas. (Technically, not all bases were exchanged; some were \"\"gifted.\"\") Although Iceland was viewed as a part of Europe, Greenland was considered a part of North America and subject to the Monroe doctrine. President Roosevelt vetoed Canadian and British plans for the occupation of the island. In 1940, Greenland was subject to a U.S. protectorate enforced by the U.S. Coast Guard,"} +{"qid": "test3257", "pid": "3394198", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Columbia (supercontinent)\"\ndyke swarm in Fennoscandia and the Galiwinku dyke swarm in Australia. An area around Georgetown in northern Queensland, Australia, has been suggested to consist of rocks that originally formed part of Nuna 1.7 billion years ago in what is now Northern Canada. In the initial configuration of Rogers and Santosh (2002), South Africa, Madagascar, India, Australia, and attached parts of Antarctica are placed adjacent to the western margin of North America, whereas Greenland, Baltica (Northern Europe), and Siberia are positioned adjacent to the northern margin of North America, and South America is placed against West Africa. In the same year"} +{"qid": "test3257", "pid": "12266011", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Equisetum variegatum\"\nmarked with a black band and has dark teeth with white edges. The stems are tipped with a small cone, 3–4 mm across, which is usually green with a black, bluntly-pointed tip. It is found in northern parts of Europe, Asia and North America including Greenland, Iceland and the Faroe Islands. Its range extends south as far as the Pyrenees and Apennines in Europe, Mongolia and Japan in Asia and Connecticut, Wisconsin and Oregon in North America. It prefers open, lime-rich sites, often those that flood in winter. It occurs in dune slacks, mountain flushes and beside lakes, rivers and"} +{"qid": "test3257", "pid": "111391", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Europe\ntaken to be the Urals, the Ural River, and the Caspian Sea; to the southeast, including the Caucasus Mountains, the Black Sea and the waterways connecting the Black Sea to the Mediterranean Sea. Islands are generally grouped with the nearest continental landmass, hence Iceland is generally considered to be part of Europe, while the nearby island of Greenland is usually assigned to North America. Nevertheless, there are some exceptions based on sociopolitical and cultural differences. Cyprus is closest to Anatolia (or Asia Minor), but is usually considered part of Europe both culturally and politically and is a member state of"} +{"qid": "test3257", "pid": "10226594", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Teilhardina\nfinally North America. 2. Primates originated in North America then dispersed to Asia through the Bering route and later passed through Greenland to finally reach Europe. 3. Primates originated in Asia or Africa and dispersed through North America and finally reaching western Europe. 4. Asia was the primate’s origination, they then dispersed eastward towards North America and westward to Europe. At one point a hypothesis arose that the primates may have originated in India prior to Asia plate collision near the Paleocene Eocene boundary and they spread into Asia after it collided. These hypotheses were re-evaluated using new morphological evidence"} +{"qid": "test3257", "pid": "10358343", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Geological history of Earth\"\nOligocene Epochs. The Paleocene, lasted from to . In many ways, the Paleocene continued processes that had begun during the late Cretaceous Period. During the Paleocene, the continents continued to drift toward their present positions. Supercontinent Laurasia had not yet separated into three continents. Europe and Greenland were still connected. North America and Asia were still intermittently joined by a land bridge, while Greenland and North America were beginning to separate. The Laramide orogeny of the late Cretaceous continued to uplift the Rocky Mountains in the American west, which ended in the succeeding epoch. South and North America remained separated"} +{"qid": "test3257", "pid": "12530057", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"73rd parallel north\"\nlater Danish colonies of Greenland (1776–1782) and North Greenland (1782–1950). 73rd parallel north The 73rd parallel north is a circle of latitude that is 73 degrees north of the Earth's equatorial plane, in the Arctic. It crosses the Atlantic Ocean, Europe, Asia, the Arctic Ocean and North America. At this latitude the sun is visible for 24 hours, 0 minutes during the summer solstice and nautical twilight during the winter solstice. Starting at the Prime Meridian and heading eastwards, the parallel 73° north passes through: Between 1776 and 1950, the 73rd parallel formed the northern limit of the Royal Greenland"} +{"qid": "test3257", "pid": "12138497", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"60th parallel north\"\nTerritories/Nunavut border. Between 1776 and 1950, the 60th parallel formed the southern limit of the Royal Greenland Trade Department's exclusive monopoly on trade near the Dano-Norwegian and later Danish colonies of Greenland (1776–1782) and South Greenland (1782–1950). 60th parallel north The 60th parallel north is a circle of latitude that is 60 degrees north of Earth's equator. It crosses Europe, Asia, the Pacific Ocean, North America, and the Atlantic Ocean. Although it lies approximately twice as far away from the Equator as from the North Pole, the 60th parallel is half as long as the Equator line. This is where"} +{"qid": "test3257", "pid": "14655400", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Nain Province\"\nNain Province In Labrador, Canada, the North Atlantic Craton is known as the Nain Province. The Nain geologic province was intruded by the Nain Plutonic Suite which divides the province into the northern Saglek block and the southern Hopedale block. The North Atlantic Craton is exposed in parts of the coast of Labrador, parts of central Greenland, the Scourian Complex of northwestern Scotland and is unexposed in northern Norway. The North Atlantic Craton fragmented 2450 to 2000 million years ago. When North America and Europe rejoined, the North Atlantic Craton was triangular shaped with each side ; this unit was"} +{"qid": "test3257", "pid": "19548581", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Worcester Basin\"\nWorcester Basin The Worcester Basin or Worcester Graben is a sedimentary basin in central England, filled with mainly Permian and Triassic rocks. It trends roughly north-south and lies between the East Malverns Fault in the west and the Inkberrow Fault in the east. It forms part of a series of Permo-Triassic basins that stretch north-south across England, including the Cheshire Basin and the East Irish Sea Basin. These basins resulted from a regional rifting event that affected parts of North-West Europe, eastern North America and East Greenland. The oldest part of the sedimentary fill in the Worcester Basin is the"} +{"qid": "test3257", "pid": "4118085", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Geography of Europe\"\nthe Caucasus), and on to the Black Sea. The Bosporus, the Sea of Marmara, and the Dardanelles conclude the Asian boundary. The Mediterranean Sea to the south separates Europe from Africa. The western boundary is the Atlantic Ocean. Iceland, though on the Mid-Atlantic Ridge and nearer to Greenland (North America) than mainland Europe, is generally included in Europe for cultural reasons and because it is over twice as close to mainland Europe than to mainland North America. There is ongoing debate on where the geographical centre of Europe falls. Some geographical texts refer to a Eurasian continent given that Europe"} +{"qid": "test3257", "pid": "1536357", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Instrumental temperature record\"\nto the Pacific Decadal Oscillation and Southern Annular Mode. Seasonal temperature trends are positive over most of the globe but weak cooling is observed over the mid latitudes of the southern ocean but also over eastern Canada in spring because of strengthening of the North Atlantic Oscillation. Warming is stronger over northern Europe, China and North America in winter, Europe and Asia interior in spring, Europe and north Africa in summer and northern North America, Greenland and eastern Asia in autumn. Enhanced warming over north Eurasia is partly linked to the Northern Annular Mode, while in the southern hemisphere the"} +{"qid": "test3257", "pid": "121226", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Eocene\ncontinents. The Antarctic region cooled down, and the ocean surrounding Antarctica began to freeze, sending cold water and icefloes north, reinforcing the cooling. The northern supercontinent of Laurasia began to fragment, as Europe, Greenland and North America drifted apart. In western North America, mountain building started in the Eocene, and huge lakes formed in the high flat basins among uplifts, resulting in the deposition of the Green River Formation lagerstätte. At about 35 Ma, an asteroid impact on the eastern coast of North America formed the Chesapeake Bay impact crater. In Europe, the Tethys Sea finally disappeared, while the uplift"} +{"qid": "test3257", "pid": "1281752", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Reindeer\nin historical times, it probably occurred naturally in Ireland. During the late Pleistocene era, reindeer occurred as far south as Nevada and Tennessee in North America and as far south as Spain in Europe. Today, wild reindeer have disappeared from these areas, especially from the southern parts, where it vanished almost everywhere. Large populations of wild reindeer are still found in Norway, Finland, Siberia, Greenland, Alaska and Canada. According to the Grubb (2005), \"\"Rangifer tarandus\"\" is \"\"circumboreal in the tundra and taiga\"\" from \"\"Svalbard, Norway, Finland, Russia, Alaska (USA) and Canada including most Arctic islands, and Greenland, south to northern"} +{"qid": "test3257", "pid": "191044", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Island\ncontinental lithosphere, so it floats low on the mantle. Islands are either extensions of the oceanic crust (e.g. volcanic islands) or geologically they are part of some continent sitting on continental lithosphere (e.g. Greenland). This holds true for Australia, which sits on its own continental lithosphere and tectonic plate. Continental islands are bodies of land that lie on the continental shelf of a continent. Examples are Borneo, Java, Sumatra, Sakhalin, Taiwan and Hainan off Asia; New Guinea, Tasmania, and Kangaroo Island off Australia; Great Britain, Ireland, and Sicily off Europe; Greenland, Newfoundland, Long Island, and Sable Island off North America;"} +{"qid": "test3257", "pid": "15346380", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "Tomistominae\nable to cross these areas, indicating that they had tolerance to salt water. Tomistomines crossed the Atlantic Ocean and spread into the Americas in the Oligocene, Miocene, and Pliocene. The earliest known neotropical tomistomine is \"\"Charactosuchus kuleri\"\" from Jamaica. A close relationship has been proposed between \"\"C. kuleri\"\" and \"\"D. zajsanicus\"\" from Belgium, suggesting that tomistomines migrated from Europe to the Americas through the De Geer land bridge connecting Norway to Greenland and the North American mainland or the Thule land bridge connecting Scotland, Iceland, Greenland, and the North American mainland. The genus \"\"Thecachampsa\"\" was present along the eastern coast"} +{"qid": "test3257", "pid": "155305", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Telecommunications in Greenland\"\nadequate domestic and international telephone services, provided by cables and microwave radio relay. The system was totally digitized in 1995. The Greenland Connect submarine cable provides connectivity to Europe via Iceland and to North America via Newfoundland. TELE Greenland first used satellite communication in 1978 and currently uses 15 satellite earth stations (12 Intelsat, 1 Eutelsat, and 2 Americom GE-2), all over the Atlantic Ocean. Today, Greenland has more mobile phones than landlines. As of 2007 there are 66.400 active GSM (2G) and UMTS (3G) subscriptions in use in Greenland. In 2007, all NMT (1G) networks were shut down. Nova"} +{"qid": "test3257", "pid": "280056", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"North America\"\nIndigenous Americans and Asians among other less numerous groups. The dominant languages in North America are English, Spanish, and French. Danish is prevalent in Greenland alongside Greenlandic, and Dutch is spoken side by side local languages in the Dutch Caribbean. The term Anglo-America is used to refer to the anglophone countries of the Americas: namely Canada (where English and French are co-official) and the United States, but also sometimes Belize and parts of the tropics, especially the Commonwealth Caribbean. Latin America refers to the other areas of the Americas (generally south of the United States) where the Romance languages, derived"} +{"qid": "test3257", "pid": "16537879", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Rasmus Lyberth\"\nhis second album, \"\"Piumassuseq nukiuvoq\"\", at which point he went on hiatus. He also appeared on the stage of the Greenlandic Tuukaq Teatret, and gave many concerts not only in Denmark and Greenland, but also in many countries in Europe and North America. He has collaborated with other musicians, including Christian Alvad and Lars Lilholt Band. In 1979 he participated in the Dansk Melodi Grand Prix, performing second on the night with 'Faders bøn' ('Father's Prayer') in Greenlandic, and placing 11th out of 17 entries.) Rasmus Lyberth Rasmus Ole Lyberth (born 21 August 1951) is a Greenlandic singer, songwriter and"} +{"qid": "test3257", "pid": "8303166", "query": "is greenland part of europe or north america", "answer": "North America", "passage": "\"Salix reticulata\"\nSalix reticulata Salix reticulata, the net-leaved willow, or snow willow, is a dwarf willow, native to the colder parts of Europe, North America, and Northern Asia. It is found in the western United States (\"\"Salix reticulata\"\" subsp. \"\"nivalis\"\"), including the Sierra Nevada and Rocky Mountains. In Europe it extends south through the Carpathian Mountains and Alps to the Pyrenees and the mountains of Macedonia. It is common in Canada, Greenland and Finland, and present but rare in Scotland. The plant grows on wet, often slightly calcareous, rocks and ledges. \"\"Salix reticulata\"\" is a dwarf, prostrate, deciduous shrub growing to tall"} +{"qid": "test3258", "pid": "9719265", "query": "what age do you need to be to buy a bb gun", "answer": "18", "passage": "\"Trolley Square shooting\"\nthink, but I am not sure...\"\" The father suggested that the U.S. government bears some responsibility for his son's actions, saying \"\"The authorities are guilty for not alerting us that he bought a gun. In the U.S., you cannot buy cigarettes if you are under-aged, but you can buy a gun.\"\" Federal law prohibits the sale of handguns and handgun ammunition to those under 21 from federally licensed gun dealers although some states allow 18+ to purchase handguns through legal private sales. Long guns (being a rifle or shotgun) and rifle/shotgun ammunition are prohibited to those under 18. Talović had"} +{"qid": "test3258", "pid": "1677513", "query": "what age do you need to be to buy a bb gun", "answer": "18", "passage": "\"BB gun\"\nstream, and this is used to suck the BBs up into the barrel at rates as high as 3600 rounds per minute. It is possible to shoot competitively with a BB gun. The National Rifle Association youth shooting program has classifications for smoothbore BB guns, open to ages 14 – 18, and these classes are popular with youth groups such as Boy Scouts of America and 4H. Most BB-firing airguns can shoot faster than . Some airguns have the ability to fire considerably faster, even beyond . Although claims are often exaggerated, a few airguns can actually fire a standard"} +{"qid": "test3258", "pid": "15946637", "query": "what age do you need to be to buy a bb gun", "answer": "18", "passage": "\"Political positions of Gary Johnson\"\nthat the lower the age the better you come to grips with what these substances are... If you can go to Iraq and die, or Afghanistan and die as a service man or women at 18, and you can't drink — I'm sorry I don't buy into that.\"\" Current federal legislation mandates that states adopt laws prohibiting the sale of alcohol to individuals under 21 years old. If states do not comply, they risk losing federal transportation funding. Johnson says his drug policy is \"\"Don't do drugs.\"\" He believes drugs are \"\"harmful, addictive and destructive to our lives and society.\"\""} +{"qid": "test3259", "pid": "1341994", "query": "when did jelly beans became associated with easter", "answer": "during the 1930s", "passage": "\"Jelly bean\"\nbook \"\"The Century in Food: America's Fads and Favorites\"\". Most historians contend that jelly beans were first associated with celebrations of Easter in the United States sometime during the 1930s due to their egg-like shape. The basic ingredients of jelly beans include sugar, tapioca or corn syrup, and pectin or starch. Relatively minor amounts of the emulsifying agent lecithin, anti-foaming agents, an edible wax such as carnauba wax or beeswax, salt, and confectioner's glaze are also included. The ingredients that give each bean its character are also relatively small in proportion and may vary depending on the flavor. Most jelly"} +{"qid": "test3264", "pid": "11077435", "query": "when was the last time ny rangers won stanley cup", "answer": "1993–94", "passage": "\"1993–94 New York Rangers season\"\nof the series to send the Rangers to the Finals. The series-winning goal prompted the famous call of \"\"Matteau, Matteau, Matteau!\"\" by Rangers radio announcer Howie Rose. The Rangers won their first Stanley Cup in 54 years, dating back to , beating the Vancouver Canucks in seven games. The Rangers winning this Stanley Cup drew 4.957 million viewers to the CBC, making it the highest-rated single CBC Sports program in history until the 10.6 million viewers for the men's ice hockey gold medal game between Canada and the United States at the 2002 Winter Olympics, when Canada won its first"} +{"qid": "test3266", "pid": "11522356", "query": "what side does us army go on acu", "answer": "the right", "passage": "\"Uniforms of the United States Army\"\n(UCP), which was designed for use in woodland, desert, and urban environments. The ACU jacket uses hook-and-loop-backed attachments to secure items such as name tapes, rank insignia, and shoulder patches and tabs, as well as recognition devices such as the U.S. flag patch and the infrared (IR) tab. Two U.S. flag insignia are authorized for wear with the ACU: full-color and subdued IR. The U.S. flag insignia is worn on the right shoulder pocket flap of the ACU coat. Unit patches are worn on the left shoulder, while combat patches are worn on the right. In July 2011, coinciding with"} +{"qid": "test3266", "pid": "4157472", "query": "what side does us army go on acu", "answer": "the right", "passage": "\"Army Combat Uniform\"\nare sewn to each shoulder to help identify friendly personnel when night vision devices are used, and are protected by Velcro tabs in garrison or when not in use. Three U.S. flag insignia are authorized for wear with the ACU: full-color, full-color IR, and subdued IR. The U.S. flag insignia (full-color or subdued) is worn on the right shoulder pocket flap of the ACU coat. The subdued version is only worn as directed under tactical or field conditions. On the right shoulder of the ACU, the U.S. flag is depicted with the union (stars) to the viewer's right, instead of"} +{"qid": "test3266", "pid": "3637538", "query": "what side does us army go on acu", "answer": "the right", "passage": "\"First Navy Jack\"\nlocal Army commander. For the NWU and ACU, the patch is typically worn on the opposite sleeve as the U.S. flag. Sailors and naval officers assigned to the International Security Assistance Force (ISAF) are also authorized to wear the First Navy Jack on their Army Combat Uniform (ACU)/Operation Enduring Freedom Camouflage Pattern (MultiCam) on the right sleeve, below the American flag. Like other snake flags, unsanctioned use of the First Navy Jack has also been used by individuals or individuals in the United States (e.g., external to the U.S. Navy) as a sign of protest or commemoration. For example, opponents"} +{"qid": "test3267", "pid": "2061476", "query": "what type of business is chamber of commerce", "answer": "a form of business network", "passage": "\"Chamber of commerce\"\nChambers of Commerce are a source of private sector information. The information is usually gathered by surveying Chamber members. The British Chambers of Commerce Quarterly Economic Survey is an example of a Chambers of Commerce survey that is used by official governmental departments as a guide to the performance of the economy. Chamber of commerce A chamber of commerce (or board of trade) is a form of business network, for example, a local organization of businesses whose goal is to further the interests of businesses. Business owners in towns and cities form these local societies to advocate on behalf of"} +{"qid": "test3267", "pid": "2061463", "query": "what type of business is chamber of commerce", "answer": "a form of business network", "passage": "\"Chamber of commerce\"\nChamber of commerce A chamber of commerce (or board of trade) is a form of business network, for example, a local organization of businesses whose goal is to further the interests of businesses. Business owners in towns and cities form these local societies to advocate on behalf of the business community. Local businesses are members, and they elect a board of directors or executive council to set policy for the chamber. The board or council then hires a President, CEO or Executive Director, plus staffing appropriate to size, to run the organization. The first chamber of commerce was founded in"} +{"qid": "test3268", "pid": "3085673", "query": "chemicals produced in one part of a plant that affect the growth and response of other parts", "answer": "Plant hormones", "passage": "\"Plant physiology\"\ncells at other locations. Unlike animals, plants lack specific hormone-producing tissues or organs. Plant hormones are often not transported to other parts of the plant and production is not limited to specific locations. Plant hormones are chemicals that in small amounts promote and influence the growth, development and differentiation of cells and tissues. Hormones are vital to plant growth; affecting processes in plants from flowering to seed development, dormancy, and germination. They regulate which tissues grow upwards and which grow downwards, leaf formation and stem growth, fruit development and ripening, as well as leaf abscission and even plant death. The"} +{"qid": "test3268", "pid": "266512", "query": "chemicals produced in one part of a plant that affect the growth and response of other parts", "answer": "hormones", "passage": "Morphogenesis\nembryonic stage in their life cycle, or describes the evolution of a body structure within a taxonomic group. Morphogenetic responses may be induced in organisms by hormones, by environmental chemicals ranging from substances produced by other organisms to toxic chemicals or radionuclides released as pollutants, and other plants, or by mechanical stresses induced by spatial patterning of the cells. Some of the earliest ideas and mathematical descriptions on how physical processes and constraints affect biological growth, and hence natural patterns such as the spirals of phyllotaxis, were written by D'Arcy Wentworth Thompson in his 1917 book \"\"On Growth and Form\"\""} +{"qid": "test3268", "pid": "1882411", "query": "chemicals produced in one part of a plant that affect the growth and response of other parts", "answer": "Plant hormones", "passage": "\"Plant hormone\"\nto those seen in higher plants. Some phytohormones also occur in microorganisms, such as unicellular fungi and bacteria, however in these cases they do not play a hormonal role and can better be regarded as secondary metabolites. The word hormone is derived from Greek, meaning \"\"set in motion\"\". Plant hormones affect gene expression and transcription levels, cellular division, and growth. They are naturally produced within plants, though very similar chemicals are produced by fungi and bacteria that can also affect plant growth. A large number of related chemical compounds are synthesized by humans. They are used to regulate the growth"} +{"qid": "test3268", "pid": "3085672", "query": "chemicals produced in one part of a plant that affect the growth and response of other parts", "answer": "Plant hormones", "passage": "\"Plant physiology\"\nwhich possess them, but there is some preliminary evidence that they may have fungicidal properties. Plants produce hormones and other growth regulators which act to signal a physiological response in their tissues. They also produce compounds such as phytochrome that are sensitive to light and which serve to trigger growth or development in response to environmental signals. Plant hormones, known as plant growth regulators (PGRs) or phytohormones, are chemicals that regulate a plant's growth. According to a standard animal definition, hormones are signal molecules produced at specific locations, that occur in very low concentrations, and cause altered processes in target"} +{"qid": "test3268", "pid": "49652", "query": "chemicals produced in one part of a plant that affect the growth and response of other parts", "answer": "hormones", "passage": "Botany\nfrom the chemical breakdown of soil minerals. Sucrose produced by photosynthesis is transported from the leaves to other parts of the plant in the phloem and plant hormones are transported by a variety of processes. Plants are not passive, but respond to external signals such as light, touch, and injury by moving or growing towards or away from the stimulus, as appropriate. Tangible evidence of touch sensitivity is the almost instantaneous collapse of leaflets of \"\"Mimosa pudica\"\", the insect traps of Venus flytrap and bladderworts, and the pollinia of orchids. The hypothesis that plant growth and development is coordinated by"} +{"qid": "test3268", "pid": "9410599", "query": "chemicals produced in one part of a plant that affect the growth and response of other parts", "answer": "hormones", "passage": "\"Plant perception (physiology)\"\nand flowering. These electrical responses can cause the synthesis of numerous organic molecules, including ones that act as neuroactive substances in other organisms. Thus, plants accomplish behavioural responses in environmental, communicative, and ecological contexts. A plant's concomitant reactive behavior is mediated by phytochromes, kinins, hormones, antibiotic or other chemical release, changes of water and chemical transport, and other means. These responses are generally slow, taking at minimum a number of hours to accomplish, and can best be observed with time-lapse cinematography, but rapid movements can occur as well. Plants respond to volatile signals produced by other plants. Jasmonate levels also"} +{"qid": "test3269", "pid": "5713010", "query": "what are the power of supreme court in the philippines", "answer": "Justices", "passage": "\"Government of the Philippines\"\nas the new Vice President. The appointment must then be validated by a three-fourths vote of the Congress. Executive leadership: National government Local government The judicial power is vested in the Supreme Court of the Philippines and lower courts established by law. The Supreme Court, which has a Chief Justice as its head and 14 Associate Justices, occupies the highest tier of the judiciary. The justices serve until the age of 70. The justices are appointed by the president on the recommendation of the Judicial and Bar Council of the Philippines. The sitting Chief Justice is Maria Lourdes Sereno, the"} +{"qid": "test3269", "pid": "4349749", "query": "what are the power of supreme court in the philippines", "answer": "Justices", "passage": "\"Supreme Court of the Philippines\"\nSupreme Court of the Philippines The Supreme Court of the Philippines (; colloquially referred to as \"\"Korte Suprema\"\") is the highest court in the Philippines. It is presided over by a Chief Justice and is composed of fifteen (15) Justices, including the Chief Justice. Pursuant to the Constitution, the Supreme Court has \"\"administrative supervision over all courts and the personnel thereof\"\". The Supreme Court Complex, which was formerly the part of the University of the Philippines Manila campus, occupies the corner of Padre Faura Street and Taft Avenue in Manila, with the main building directly fronting the Philippine General Hospital."} +{"qid": "test3269", "pid": "4349781", "query": "what are the power of supreme court in the philippines", "answer": "Justices", "passage": "\"Supreme Court of the Philippines\"\nSupreme Court of the Philippines The Supreme Court of the Philippines (; colloquially referred to as \"\"Korte Suprema\"\") is the highest court in the Philippines. It is presided over by a Chief Justice and is composed of fifteen (15) Justices, including the Chief Justice. Pursuant to the Constitution, the Supreme Court has \"\"administrative supervision over all courts and the personnel thereof\"\". The Supreme Court Complex, which was formerly the part of the University of the Philippines Manila campus, occupies the corner of Padre Faura Street and Taft Avenue in Manila, with the main building directly fronting the Philippine General Hospital."} +{"qid": "test3269", "pid": "15340021", "query": "what are the power of supreme court in the philippines", "answer": "Justices", "passage": "\"Hello Garci scandal\"\nemergency powers by Arroyo in early 2006. On September 6, 2007, retired Philippine Court of Appeals Justices Santiago Ranada and Oswaldo Agcaoili filed (a 15-page petition for prohibition with temporary restraining order or preliminary injunction) with the Supreme Court of the Philippines to enjoin the September 7, 2007 Senate of the Philippines (committee on national defense) wiretap probe (on the alleged wiretapping of telephone conversations of President Arroyo and former election commissioner Virgilio Garcillano \"\"inter alia\"\"). On February 12, 2008, the Supreme Court, in a preliminary voting, favored the airing of the Garci tapes, thus nullifying the National Telecommunications Commission"} +{"qid": "test3269", "pid": "9534047", "query": "what are the power of supreme court in the philippines", "answer": "Justices", "passage": "\"Associate Justice of the Supreme Court of the Philippines\"\nAssociate Justice of the Supreme Court of the Philippines An Associate Justice of the Supreme Court of the Philippines is one of 15 members of the Philippine Supreme Court, the highest court in the Philippines. The Chief Justice presides over the High Court, but carries only 1 of the 15 votes in the court. Traditionally, the Chief Justice is deemed as \"\"primus inter pares\"\" (\"\"first among equals\"\") among the Justices. Until 1973, only men were appointed as Associate Justices to the Court. Cecilia Muñoz-Palma, an appointee of President Ferdinand Marcos, was the first woman to sit on the Court. Since"} +{"qid": "test3272", "pid": "4640758", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"Cruella de Vil\"\nCruella de Vil Cruella de Vil (spelled de Vil in the novel, spelled De Vil by Disney) is a character created by Dodie Smith as the main antagonist of her 1956 novel \"\"The Hundred and One Dalmatians\"\" and in Walt Disney Pictures' animated film adaptations \"\"101 Dalmatians\"\" (1961), \"\"\"\" (2003), and Disney's live-action film adaptations \"\"101 Dalmatians\"\" (1996) and \"\"102 Dalmatians\"\" (2000). She was originally voiced by Betty Lou Gerson, after that, she has been voiced by April Winchell (), Tress MacNeille (TV series, two episodes), and Susanne Blakeslee (currently) and was portrayed live by Glenn Close (\"\"101 Dalmatians\"\" and"} +{"qid": "test3272", "pid": "1520744", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"One Hundred and One Dalmatians\"\nwith an average score of 8.1/10. The website's critical consensus reads, \"\"With plenty of pooches and a memorable villain (Cruella De Vil), this is one of Disney's most enduring, entertaining animated films.\"\" Cruella de Vil ranked 39th on AFI's list of \"\"100 Years...100 Heroes and Villains\"\". In the years since the original release of the film, Disney has taken the property in various directions. The earliest of these endeavors was the live-action remake, \"\"101 Dalmatians\"\" (1996). Starring Glenn Close as Cruella De Vil, none of the animals talked in this version. Its success in theaters led to \"\"102 Dalmatians\"\", released"} +{"qid": "test3272", "pid": "18201629", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"One Hundred and One Dalmatians (franchise)\"\nlove and marry along with their dalmatians Perdita and Pongo. The dogs' puppies are kidnapped by Anita's boss Cruella De Vil, who is stealing young dalmatians to make the coat she has set her heart on. Pongo and Perdita set out to find and rescue all ninety-nine pups from their captors. 102 Dalmatians is a 2000 British-American live-action family comedy film directed by Kevin Lima in his directorial debut and produced by Walt Disney Pictures. It is the sequel to the 1996 film \"\"101 Dalmatians\"\" and stars Glenn Close reprising her role as Cruella de Vil as she attempts to"} +{"qid": "test3272", "pid": "4640775", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"Cruella de Vil\"\nappears during the Halloween Party. From the unsubtle symbolic name to her hideous physical appearance, Cruella's evil is overt. In 2002, \"\"Forbes\"\" ranked Cruella as the thirteenth wealthiest fiction character, citing the single 65-year-old has a net worth of $875 million, obtained through inheritance. Cruella was listed as the 39th greatest villain in American cinema in AFI's 100 Years... 100 Heroes and Villains. Also, in Ultimate Disney's Top 30 Disney Villains Countdown, Cruella ranked #6. Glenn Close portrayed Cruella de Vil in the 1996 film \"\"101 Dalmatians\"\" and its 2000 sequel \"\"102 Dalmatians\"\". The film reinvented Cruella as the vindictive,"} +{"qid": "test3272", "pid": "1520488", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"101 Dalmatians (1996 film)\"\nof these new owners eventually surrendered their animals to pounds, where many dogs ended up being euthanized. A sequel, \"\"102 Dalmatians\"\", was released on November 22, 2000. The film's early working title was \"\"101 Dalmatians Returns.\"\" Disney is planning a live-action Cruella de Vil prequel titled \"\"Cruella\"\" directed by Alex Timbers. Marc Platt and Andrew Gunn will produce; Glenn Close is executive producer. Screenwriter Aline Brosh McKenna was set to write it, but Kelly Marcel replaced her. Emma Stone will play the eponymous role. Alex Timbers had originally signed on to direct the film, but he left the project in"} +{"qid": "test3272", "pid": "18201628", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"One Hundred and One Dalmatians (franchise)\"\n\"\"101 Dalmatians\"\". A scrappy puppy tries to rescue his siblings after evil Cruella kidnaps them. 101 Dalmatians is a 1996 British-American live-action family comedy film written and produced by John Hughes and directed by Stephen Herek. It is the second adaptation of Dodie Smith's 1956 novel \"\"The Hundred and One Dalmatians\"\" produced by Walt Disney Pictures following the 1961 animated adventure comedy film of the same name. The film stars Glenn Close as the iconic villainess Cruella de Vil, and Jeff Daniels as Roger, the owner of the 101 dalmatians. Fashion designer Anita and computer-game writer Roger meet, fall in"} +{"qid": "test3272", "pid": "549518", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"Glenn Close\"\n\"\"The Paper\"\" (1994), directed by her good friend Ron Howard. She would go on to appear in the alien invasion satire \"\"Mars Attacks!\"\" (1996) as The First Lady and as the sinister Cruella de Vil in the Disney hit \"\"101 Dalmatians.\"\" Close's portrayal of Cruella de Vil was universally praised and earned her a Golden Globe nomination for Best Actress in a comedy. The film was also a commercial success, grossing $320.6 million in theaters against a $75 million budget. The following year, Close appeared in another box office hit with \"\"Air Force One\"\" (1997), playing the trustworthy vice president"} +{"qid": "test3272", "pid": "4840048", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"102 Dalmatians\"\n102 Dalmatians 102 Dalmatians is a 2000 American crime family comedy film directed by Kevin Lima in his live-action directorial debut and produced by Edward S. Feldman and Walt Disney Pictures. It is the sequel to the 1996 film \"\"101 Dalmatians\"\", a live-action remake of the 1961 Disney animated film of the same name and stars Glenn Close reprising her role as Cruella de Vil as she attempts to steal puppies for her \"\"grandest\"\" fur coat yet. Close and Tim McInnerny were the only two actors from the first film to return for the sequel, however. The film received negative"} +{"qid": "test3272", "pid": "18201631", "query": "who played cruella de vil in 101 dalmatians", "answer": "Glenn Close", "passage": "\"One Hundred and One Dalmatians (franchise)\"\nschool. Ben, the teenaged son of King Beast and Queen Belle, invites the exiled children of defeated villains to attend a prep school with the heroes' children, among them Carlos, the son of Cruella de Vil. On September 30, 2013, \"\"The Hollywood Reporter\"\" confirmed that Disney is planning a live-action Cruella de Vil film titled \"\"Cruella\"\" with Andrew Gunn and Glenn Close as producer and executive producer respectively. Screenwriter Aline Brosh McKenna most known for writing \"\"The Devil Wears Prada\"\" was set to write it for Disney. On January 6, 2016, \"\"The Hollywood Reporter\"\" announced that Kelly Marcel, who wrote"} +{"qid": "test3273", "pid": "7366026", "query": "name two fibres which are made of proteins", "answer": "silk", "passage": "\"Broadgilled hagfish\"\nin Ontario, Canada who heads the research team looking into the hagfish slime states that when dried out the fibres within the slime become very silk-like, the fibres being very thin and strong. “Hagfish slime is made up of two parts: mucus and tiny fibres, about 15cm long but only a micron wide (National Geographic, 2014).” It could be a natural renewable alternative to non-renewable fabrics like nylon and spandex which are made from oil. They propose that in the future (even though no one has been able to extract the proteins and make a spool of hagfish thread yet),"} +{"qid": "test3273", "pid": "13032730", "query": "name two fibres which are made of proteins", "answer": "wool", "passage": "\"Textile manufacturing by pre-industrial methods\"\nvegetable fibres, animal protein fibres and artificial fibres. Natural vegetable fibres include cotton, linen, jute and hemp. Animal protein fibres include wool and silk. Man-made fibres (made by industrial processes) including nylon, polyester will be used in some hobbies and hand crafts and in the developed world. Almost all commercial textiles are produced by industrial methods. Textiles are still produced by pre-industrial processes in village communities in Asia, Africa and South America. Creating textiles using traditional manual techniques is an artisan craft practised as a hobby in Europe and North America. Traditional practices are also kept alive by artisans in"} +{"qid": "test3273", "pid": "6217917", "query": "name two fibres which are made of proteins", "answer": "hair", "passage": "\"William Astbury\"\nbiology’. His other great passion was classical music and once said that protein fibres such as keratin in wool were ‘the chosen instruments on which nature has played so many incomparable themes, and countless variations and harmonies’These two passions converged when in 1960 he presented an X-ray image taken by his research assistant Elwyn Beighton of a fibre of keratin protein in a lock of hair that was said to have come from Mozart - who was one of Astbury’s favourite composers. But proteins were not the only biological fibre that Astbury studied. In 1937 Torbjörn Caspersson of Sweden sent"} +{"qid": "test3273", "pid": "20523767", "query": "name two fibres which are made of proteins", "answer": "wool", "passage": "Fibrolane\nFibrolane Fibrolane was the brand name of a regenerated protein fibre produced by Courtaulds Ltd. in Coventry (UK) during the 1940s, 1950s and early 1960s. It was made from the milk protein casein dissolved in alkali and regenerated by spinning the resulting dope into an acid bath using technology similar to that of viscose rayon production. The fibre was produced as staple, tow or stretch-broken tow (\"\"tops\"\"), mainly for blending with wool. It had a warm, soft handle and could be converted into fine yarns and soft fabrics. Small amounts of Fibrolane could be added to wool to improve the"} +{"qid": "test3273", "pid": "20523768", "query": "name two fibres which are made of proteins", "answer": "wool", "passage": "Fibrolane\nefficiency of felt production. Fibrolane Fibrolane was the brand name of a regenerated protein fibre produced by Courtaulds Ltd. in Coventry (UK) during the 1940s, 1950s and early 1960s. It was made from the milk protein casein dissolved in alkali and regenerated by spinning the resulting dope into an acid bath using technology similar to that of viscose rayon production. The fibre was produced as staple, tow or stretch-broken tow (\"\"tops\"\"), mainly for blending with wool. It had a warm, soft handle and could be converted into fine yarns and soft fabrics. Small amounts of Fibrolane could be added to"} +{"qid": "test3273", "pid": "4381227", "query": "name two fibres which are made of proteins", "answer": "silk", "passage": "Noil\nslightly rough texture. It is relatively weaker and has low resilience. It tends to have very low lustre, which makes it appear more like cotton than silk. Noil silk has the advantage of being made from protein. Thus, it has a better texture and depth that cotton – and gives a nice fall and drape. Silk noil is also blended or appended with heavier fabrics like velvets and satins to create varied textures. Made out of the strongest natural fibres (with a protein base) around, the Noil Sarees are not slippery like synthetic fibres and absorb moisture well. Noils are"} +{"qid": "test3273", "pid": "629297", "query": "name two fibres which are made of proteins", "answer": "fur", "passage": "Textile\nto dry quickly. A sintered felt of olefin fibres is sold under the trade name Tyvek. Ingeo is a polylactide fibre blended with other fibres such as cotton and used in clothing. It is more hydrophilic than most other synthetics, allowing it to wick away perspiration. Lurex is a metallic fibre used in clothing embellishment. Milk proteins have also been used to create synthetic fabric. Milk or casein fibre cloth was developed during World War I in Germany, and further developed in Italy and America during the 1930s. Milk fibre fabric is not very durable and wrinkles easily, but has"} +{"qid": "test3273", "pid": "13032736", "query": "name two fibres which are made of proteins", "answer": "wool", "passage": "\"Textile manufacturing by pre-industrial methods\"\nto a standard size. The leaves are crushed in between two large rollers producing the fibres which are bundled up and dried in the sun over trellises. The dried fibres are combined into rolags. At this point it is ready to spin. The waste, a pulpy liquid that stinks, can be used as a fertilizer. Wool is a protein based fibre, being the coat of a sheep. The wool is removed by shearing. Sheep Shearing Shearing can be done with use of hand-shears or powered shears. Professional sheep shearers can shear a sheep in under a minute, without nicking the"} +{"qid": "test3273", "pid": "859941", "query": "name two fibres which are made of proteins", "answer": "silk", "passage": "\"Spider silk\"\ndesirable properties, it also makes replication of the fibre somewhat of a challenge. Various organisms have been used as a basis for attempts to replicate some components or all of some or all of the proteins involved. These proteins must then be extracted, purified and then spun before their properties can be tested. Spider silks with comparatively simple molecular structure need complex ducts to be able to spin an effective fibre. There have been a number of methods used to produce fibres, of which the main types are briefly discussed below. Feedstock is simply forced through a hollow needle using"} +{"qid": "test3273", "pid": "859948", "query": "name two fibres which are made of proteins", "answer": "silk", "passage": "\"Spider silk\"\nfibres that are comparable to spider silk has proven difficult in research and early-stage manufacturing. Through genetic engineering, \"\"Escherichia coli\"\" bacteria, yeasts, plants, silkworms, and animals have been used to produce spider silk proteins, which have different, simpler characteristics than those from a spider. Artificial spider silks have fewer and simpler proteins than natural dragline silk, and are consequently half the diameter, strength, and flexibility of natural dragline silk. Spider silk Spider silk is a protein fibre spun by spiders. Spiders use their silk to make webs or other structures, which function as sticky nets to catch other animals, or"} +{"qid": "test3273", "pid": "14366083", "query": "name two fibres which are made of proteins", "answer": "silk", "passage": "Sericin\nSericin Sericin is a protein created by \"\"Bombyx mori\"\" (silkworms) in the production of silk. Silk is a fibre produced by the silkworm in production of its cocoon. It consists mainly of two proteins, fibroin and sericin. Silk consists of 70–80% fibroin and 20–30% sericin; fibroin being the structural center of the silk, and sericin being the gum coating the fibres and allowing them to stick to each other. Composed structurally of 18 different amino acids, and 32% serine, in most commonly, a randomized amorphous coil. When in the amorphous coil, sericin can also be easily be converted into a"} +{"qid": "test3273", "pid": "10002862", "query": "name two fibres which are made of proteins", "answer": "hair", "passage": "\"Liming (leather processing)\"\nweight also needs to take into consideration that proteins (especially the hair) have been removed, and the fleshing operation is often performed after liming. The action of liming, in particular the swelling of the skin, results in the splitting of the fibre bundle sheath. Owing to the fibre diameter increasing, the bundle sheath cannot contain the thicker fibres, and it bursts open. This allows increased access to the fibres, which allows better tanning, retanning, dyeing and fatliquoring. Liming (leather processing) Liming is a process used for parchment or leather processing, in which hides are soaked in an alkali solution. It"} +{"qid": "test3273", "pid": "10397484", "query": "name two fibres which are made of proteins", "answer": "feathers", "passage": "\"Conservation and restoration of textiles\"\ndamage to fibres. Among the most common are clothes moths, carpet beetles, silverfish, firebrats and rodents. Clothes moths are attracted to protein fibres, and so are especially drawn to silk, wool, and feathers. An infestation might be identified through the evidence of white cocoons (or the remnants thereof) on the textiles, or of sighting the insects themselves. They are roughly 8 centimetres long and white in colour. Like clothes moths, carpet beetles are likewise drawn to proteins, and can be quite destructive. Evidence of an infestation may take of the form of chewed holes, carcasses, or larvae, which appear as"} +{"qid": "test3273", "pid": "6398213", "query": "name two fibres which are made of proteins", "answer": "hair", "passage": "\"Camel hair\"\nin the same way as wool fibres. Camel hair Camel hair specifically refers to the fur from the body of a camel, but more generally refers to the fibre (and cloth) that may be made from either pure camel hair or a blend of camel hair and another fibre. Camel hair has two components: \"\"guard hair\"\" and \"\"undercoat\"\". Guard hair is the outer protective fur, which is coarse and inflexible and can be woven into haircloth. (Guard hair may be made softer and plusher by blending it with another fibre, especially wool.) The undercoat, which is shorter and finer than"} +{"qid": "test3274", "pid": "17142218", "query": "who is john snow on game of thrones", "answer": "Kit Harington", "passage": "\"Game of Thrones (season 4)\"\nhave a claim to the Iron Throne. Meanwhile, at the wall, Jon Snow and the Night's Watch get ready for the battle against the free folk. \"\"Game of Thrones\"\" features a large ensemble cast, including Peter Dinklage, Nikolaj Coster-Waldau, Lena Headey, Emilia Clarke and Kit Harington. The season introduced a number of new cast members, including Pedro Pascal, Indira Varma, Michiel Huisman and Dean-Charles Chapman. Critics praised the show's production values and cast, with specific accolades for Dinklage's portrayal of Tyrion Lannister. Viewership yet again rose compared to the previous season. It won 4 of the 19 Emmy Awards for"} +{"qid": "test3275", "pid": "9347937", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Wally?: The Ultimate Fun Book\"\nWhere's Wally?: The Ultimate Fun Book Where's Wally?: The Ultimate Fun Book (Where's Waldo?: The Ultimate Fun Book in America) was a \"\"Where's Wally?\"\" activity book released in 1990. The book introduces Wilma, her dog Woof, and the Wally Watchers. Unlike the previous three Where's Wally? books (\"\"Where's Wally?\"\", \"\"Where's Wally Now?\"\", and \"\"The Fantastic Journey\"\"), this book featured various puzzles and games rather than the traditional detailed crowd scenes. The other kinds of additional puzzles included spot-the-differences, coloring pages, and a board game. The book was also a smaller paperback book that included stickers and press-outs. This book introduced"} +{"qid": "test3275", "pid": "6901783", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Waldo? (video game)\"\nWhere's Waldo? (video game) Where's Waldo? (Where's Wally? in the UK, Australia and South America) is a puzzle game developed by Bethesda Softworks and published in 1991 by THQ for the Nintendo Entertainment System. It was the first video game loosely based on Martin Handford's book of the \"\"same name\"\". Mostly similar to the books, players must help Waldo get to the moon by finding him in each of the eight levels in the game. The game was panned by critics, who criticized the game for its graphics, which made it more difficult to find Waldo in each of the"} +{"qid": "test3275", "pid": "6901790", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Waldo? (video game)\"\ntakes advantage of superior pointer-based motion controls to easily locate search targets and supports versus multiplayer. Where's Waldo? (video game) Where's Waldo? (Where's Wally? in the UK, Australia and South America) is a puzzle game developed by Bethesda Softworks and published in 1991 by THQ for the Nintendo Entertainment System. It was the first video game loosely based on Martin Handford's book of the \"\"same name\"\". Mostly similar to the books, players must help Waldo get to the moon by finding him in each of the eight levels in the game. The game was panned by critics, who criticized the"} +{"qid": "test3275", "pid": "13858533", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Waldo? The Fantastic Journey (video game)\"\nWhere's Waldo? The Fantastic Journey (video game) Where's Waldo? The Fantastic Journey is a video game published by Ubisoft and developed by Ludia based on the book of the same name. It is a puzzle adventure game released for the Nintendo DS, Wii, Microsoft Windows, and the iPhone, and is also a remake of \"\"The Great Waldo Search\"\", released in 1992. Like the other games in the series, the object of the game is to search for hidden characters and items within a time limit. Hints are awarded to the player through Woof, Waldo's pet dog. Woof alerts the players"} +{"qid": "test3275", "pid": "9347978", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Wally?: The Animated Series\"\nby Wizard Whitebeard to help solve a puzzle, or mysteries, \"\"Where's Waldo?\"\" was a 1/2 hour puzzle of clues and riddles. The evil Waldo lookalike Odlaw was the show's villain, constantly plotting to steal Waldo's magic stick. In each episode Odlaw would team up with the other villains from the far-off lands to help get the magic stick, while Waldo and Woof teamed up with other land's \"\"good-guys\"\" to help with their problems. Waldo stayed true to the books' premise by means of the \"\"Waldo's Minutes,\"\" during which the screen froze for a full minute so the viewer at home"} +{"qid": "test3275", "pid": "9347980", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Wally?: The Animated Series\"\nbased on the adventures and characters from the \"\"Where's Waldo?\"\" TV Show. \"\"Fun with Waldo\"\" and \"\"More Fun with Waldo\"\", featured print versions of many of the \"\"Waldo Minute\"\" freeze-frame scenes, along with new puzzles and things to spot in each picture. To meet the needs of international viewers in the US and Canada, a second audio track was recorded using the same vocal actors – the name \"\"Wally\"\" was replaced entirely with \"\"Waldo\"\", the name of the books' character in the US and Canada. Other international versions were produced dubbed in entirely in German, French, Spanish, Italian, Japanese and"} +{"qid": "test3275", "pid": "12107606", "query": "what kind of book is where's waldo", "answer": "puzzle", "passage": "\"Where's Wally?\"\nwas turned into a Sunday newspaper comic/puzzle, distributed by King Features Syndicate. The comics were also released in book form in the US, using the regional name 'Waldo'. In the early 1990s Quaker Life Cereal in the US carried various \"\"Where's Wally?\"\" scenes on the back of the boxes along with collector's cards, toys and send-away prizes. This was shown in \"\"The Simpsons\"\" episode \"\"Hello Gutter, Hello Fadder\"\" where Homer shouts \"\"WALDO, WHERE ARE YOU?!\"\" after looking at the scene on the cereal box as Waldo walks by the kitchen window. On 1 April 2018 Google Maps added a minigame"} +{"qid": "test3278", "pid": "8840451", "query": "where is the left anterior descending artery located", "answer": "the left coronary artery", "passage": "\"Left anterior descending artery\"\nLeft anterior descending artery The left anterior descending artery (also LAD, anterior interventricular branch of left coronary artery, or anterior descending branch) is a branch of the left coronary artery. Occlusion of this artery is often called the \"\"widow-maker infarction\"\" due to a high death risk. It passes at first behind the pulmonary artery and then comes forward between that vessel and the left atrium to reach the anterior interventricular sulcus, along which it descends to the notch of cardiac apex. Although rare, multiple anomalous courses of the LAD have been described. These include the origin of the artery from"} +{"qid": "test3278", "pid": "1302842", "query": "where is the left anterior descending artery located", "answer": "the left coronary artery", "passage": "\"Coronary circulation\"\nleft coronary artery and follows the coronary sulcus to the left. Eventually, it will fuse with the small branches of the right coronary artery. The larger anterior interventricular artery, also known as the left anterior descending artery (LAD), is the second major branch arising from the left coronary artery. It follows the anterior interventricular sulcus around the pulmonary trunk. Along the way it gives rise to numerous smaller branches that interconnect with the branches of the posterior interventricular artery, forming anastomoses. An anastomosis is an area where vessels unite to form interconnections that normally allow blood to circulate to a"} +{"qid": "test3278", "pid": "1302846", "query": "where is the left anterior descending artery located", "answer": "the left coronary artery", "passage": "\"Coronary circulation\"\nthree areas of anastomoses. Small branches of the LAD (left anterior descending/anterior interventricular) branch of the left coronary join with branches of the posterior interventricular branch of the right coronary in the interventricular sulcus(groove). More superiorly, there is an anastomosis between the circumflex artery (a branch of the left coronary artery) and the right coronary artery in the atrioventricular groove. There is also an anastomosis between the septal branches of the two coronary arteries in the interventricular septum. The photograph shows area of heart supplied by the right and the left coronary arteries. The left and right coronary arteries occasionally"} +{"qid": "test3278", "pid": "8840452", "query": "where is the left anterior descending artery located", "answer": "the left coronary artery", "passage": "\"Left anterior descending artery\"\nthe right aortic sinus. In 78% of cases, it reaches the apex of the heart. The LAD gives off two types of branches: \"\"septals\"\" and \"\"diagonals\"\". The artery supplies the anterolateral myocardium, apex, and interventricular septum. The LAD typically supplies 45-55% of the left ventricle (LV) and is therefore considered the most critical vessel in terms of myocardial blood supply. The \"\"widow maker\"\" is an alternate name for the anterior interventricular branch of the left coronary artery. The name \"\"widow maker\"\" may also apply to the left coronary artery or severe occlusions to that artery. This term is used because"} +{"qid": "test3278", "pid": "1600158", "query": "where is the left anterior descending artery located", "answer": "the left coronary artery", "passage": "\"Coronary artery bypass surgery\"\nCoronary artery bypass surgery Coronary artery bypass surgery, also known as coronary artery bypass graft (CABG, pronounced \"\"cabbage\"\") surgery, and colloquially heart bypass or bypass surgery, is a surgical procedure to restore normal blood flow to an obstructed coronary artery. A normal coronary artery transports blood to and from the heart muscle itself, not through the main circulatory system. There are two main approaches. In one, the left internal thoracic artery, LITA (also called left internal mammary artery, LIMA) is diverted to the left anterior descending branch of the left coronary artery. In this method, the artery is \"\"pedicled\"\" which"} +{"qid": "test3279", "pid": "473054", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "Heart\nrole in cardiac conduction. It arises from the lower part of the interventricular septum and crosses the interior space of the right ventricle to connect with the inferior papillary muscle. The right ventricle tapers into the pulmonary trunk, into which it ejects blood when contracting. The pulmonary trunk branches into the left and right pulmonary arteries that carry the blood to each lung. The pulmonary valve lies between the right heart and the pulmonary trunk. The left heart has two chambers: the left atrium, and the left ventricle, separated by the mitral valve. The left atrium receives oxygenated blood back"} +{"qid": "test3279", "pid": "2763028", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "\"Pulmonary artery\"\nPulmonary artery A pulmonary artery is an artery in the pulmonary circulation that carries deoxygenated blood from the right side of the heart to the lungs. The largest pulmonary artery is the \"\"main pulmonary artery.\"\" or \"\"pulmonary trunk\"\" from the heart, and the smallest ones are the arterioles, which lead to the capillaries that surround the pulmonary alveoli. In order of blood flow, the pulmonary arteries start as the pulmonary trunk or main pulmonary artery. The main pulmonary artery begins at the base of the right ventricle. It is short and wide—approximately in length and in diameter. The main pulmonary"} +{"qid": "test3279", "pid": "2763032", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "\"Pulmonary artery\"\nand right ventricles. As a septum develops between the two ventricles of the heart, two bulges form on either side of the truncus arteriosus. These progressively enlarge until the trunk splits into the aorta and pulmonary arteries. During early development, the ductus arteriosis connects the pulmonary trunk and the aortic arch, allowing blood to bypass the lungs. The pulmonary artery carries deoxygenated blood from the right ventricle to the lungs. The blood here passes through capillaries adjacent to alveoli and becomes oxygenated as part of the process of respiration. In contrast to the \"\"pulmonary arteries\"\", the bronchial arteries supply nutrition"} +{"qid": "test3279", "pid": "2763035", "query": "where does the pulmonary trunk receive blood from", "answer": "from the heart", "passage": "\"Pulmonary artery\"\nafter a period of immobility. A pulmonary embolus is a common cause of death in patients with cancer and stroke. A large pulmonary embolus which becomes lodged in the bifurcation of the pulmonary trunk with extensions into both the left and right main pulmonary arteries is called a \"\"saddle embolus\"\". Pulmonary artery A pulmonary artery is an artery in the pulmonary circulation that carries deoxygenated blood from the right side of the heart to the lungs. The largest pulmonary artery is the \"\"main pulmonary artery.\"\" or \"\"pulmonary trunk\"\" from the heart, and the smallest ones are the arterioles, which lead"} +{"qid": "test3279", "pid": "14451052", "query": "where does the pulmonary trunk receive blood from", "answer": "the heart", "passage": "\"Cardiac physiology\"\ncollects oxygen from the lungs and delivers carbon dioxide for exhalation. The systemic circuit transports oxygen to the body and returns relatively de-oxygenated blood and carbon dioxide to the pulmonary circuit. Blood flows through the heart in one direction, from the atria to the ventricles, and out through the pulmonary artery into the pulmonary circulation, and the aorta into the systemic circulation. The pulmonary artery (also trunk) branches into the left and right pulmonary arteries to supply each lung. Blood is prevented from flowing backwards (regurgitation) by the tricuspid, bicuspid, aortic, and pulmonary valves. The function of the \"\"right heart\"\","} +{"qid": "test3279", "pid": "3170590", "query": "where does the pulmonary trunk receive blood from", "answer": "the heart", "passage": "\"Vascular resistance\"\nthe cardiac output is measured in units of litres per minute (L/min). The pulmonary artery wedge pressure (also called pulmonary artery occlusion pressure or PAOP) is a measurement in which one of the pulmonary arteries is occluded, and the pressure downstream from the occlusion is measured in order to approximately sample the left atrial pressure. Therefore, the numerator of the above equation is the pressure difference between the input to the pulmonary blood circuit (where the heart's right ventricle connects to the pulmonary trunk) and the output of the circuit (which is the input to the left atrium of the"} +{"qid": "test3279", "pid": "67229", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "Cardiology\nand is when the right ventricle pumps blood into the aorta and deoxygenated blood enters the blood stream. The temporary procedure is to create an atrial septal defect (ASD). A permanent fix is more complicated and involves redirecting the pulmonary return to the right atrium and the systemic return to the left atrium, which is known as the Senning procedure. The Rastelli procedure can also be done by rerouting the left ventricular outflow, dividing the pulmonary trunk, and placing a conduit in between the right ventricle and pulmonary trunk. Levo-transposition happens in about 1 in 13,000 newborns and is characterized"} +{"qid": "test3279", "pid": "12928791", "query": "where does the pulmonary trunk receive blood from", "answer": "from the heart", "passage": "\"Hypoplastic right heart syndrome\"\nleft and right portions of the pulmonary artery and joined with the upper portion of the aorta.[7] The proximal pulmonary artery is connected to the aortic arch, while the narrowed segment of the pulmonary trunk is repaired. An aortopulmonary shunt is created to connect the aorta to the main pulmonary artery to provide pulmonary blood flow to the lungs.[7] The Glen procedure disconnects the superior vena cava from the heart and connects it to the right pulmonary artery so deoxygenated blood from the upper body goes directly to the lungs.[10] The Fontan procedure, done usually after the patient is two"} +{"qid": "test3279", "pid": "1819592", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "Systole\nin isovolumetric, or fixed-volume, contraction phase until maximal pressure (dP/dt = 0) occurs, causing the pulmonary and aortic valves to open in ejection phase. In ejection phase, blood flows from the two ventricles down its pressure gradient—that is, 'down' from higher pressure to lower pressure—into (and through) the aorta and the pulmonary trunk respectively. Notably, cardiac muscle perfusion through the heart's coronary vessels doesn't happen during ventricular systole; rather, it occurs during ventricular diastole. Ventricular systole is the origin of the pulse. The pulmonary (or pulmonic) valve in the right ventricle opens into the pulmonary trunk, also known as the"} +{"qid": "test3279", "pid": "472789", "query": "where does the pulmonary trunk receive blood from", "answer": "from the heart", "passage": "Artery\naway from the heart to the tissues, except for pulmonary arteries, which carry blood to the lungs for oxygenation (usually veins carry deoxygenated blood to the heart but the pulmonary veins carry oxygenated blood as well). There are two types of unique arteries. The pulmonary artery carries blood from the heart to the lungs, where it receives oxygen. It is unique because the blood in it is not \"\"oxygenated\"\", as it has not yet passed through the lungs. The other unique artery is the umbilical artery, which carries deoxygenated blood from a fetus to its mother. Arteries have a blood"} +{"qid": "test3279", "pid": "12661950", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "Fetus\ninto the left atrium, thus bypassing pulmonary circulation. The majority of blood flow is into the left ventricle from where it is pumped through the aorta into the body. Some of the blood moves from the aorta through the internal iliac arteries to the umbilical arteries, and re-enters the placenta, where carbon dioxide and other waste products from the fetus are taken up and enter the woman's circulation. Some of the blood from the right atrium does not enter the left atrium, but enters the right ventricle and is pumped into the pulmonary artery. In the fetus, there is a"} +{"qid": "test3279", "pid": "22208", "query": "where does the pulmonary trunk receive blood from", "answer": "the heart", "passage": "Aorta\nis known as the abdominal aorta. The aorta ends by dividing into two major blood vessels, the common iliac arteries and a smaller midline vessel, the median sacral artery. The ascending aorta begins at the opening of the aortic valve in the left ventricle of the heart. It runs through a common pericardial sheath with the pulmonary trunk. These two blood vessels twist around each other, causing the aorta to start out posterior to the pulmonary trunk, but end by twisting to its right and anterior side. The transition from ascending aorta to aortic arch is at the pericardial reflection"} +{"qid": "test3279", "pid": "6360128", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "\"Fetal circulation\"\nwhere it is pumped through the aorta into the body. Some of the blood moves from the aorta through the internal iliac arteries to the umbilical arteries, and re-enters the placenta, where carbon dioxide and other waste products from the fetus are taken up and enter the woman's circulation. Some of the blood from the right atrium does not enter the left atrium, but enters the right ventricle and is pumped into the pulmonary artery. In the fetus, there is a special connection between the pulmonary artery and the aorta, called the \"\"ductus arteriosus\"\", which directs most of this blood"} +{"qid": "test3279", "pid": "1830492", "query": "where does the pulmonary trunk receive blood from", "answer": "the heart", "passage": "Pericardium\nwhich is fused to and inseparable from the fibrous pericardium, and the \"\"visceral pericardium\"\", which is part of, or in some textbooks synonymous with, the epicardium. Both of these layers function in lubricating the heart to prevent friction during heart activity. The visceral layer extends to the beginning of the great vessels (the large blood vessels serving the heart) becoming one with the parietal layer of the serous pericardium. This happens at two areas: where the aorta and pulmonary trunk leave the heart and where the superior vena cava, inferior vena cava and pulmonary veins enter the heart. In between"} +{"qid": "test3279", "pid": "1783509", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "\"Heart valve\"\nof blood that is transferred from the left atrium to the left ventricle. This amount of blood is known as the end diastolic volume (EDV), and the mitral valve closes at the end of atrial contraction to prevent a reversal of blood flow. The tricuspid valve has three leaflets or cusps and is on the right side of the heart. It is between the right atrium and the right ventricle, and stops the backflow of blood between the two. The aortic and pulmonary valves are located at the base of the aorta and the pulmonary trunk respectively. These are also"} +{"qid": "test3279", "pid": "473088", "query": "where does the pulmonary trunk receive blood from", "answer": "the heart", "passage": "Heart\nin the brainstem that control the sympathetic and parasympathetic influences to the heart through the vagus nerve and sympathetic trunk. These cardiovascular centres receive input from a series of receptors including baroreceptors, sensing stretch the stretching of blood vessels and chemoreceptors, sensing the amount of oxygen and carbon dioxide in the blood and its pH. Through a series of reflexes these help regulate and sustain blood flow. Baroreceptors are stretch receptors located in the aortic sinus, carotid bodies, the venae cavae, and other locations, including pulmonary vessels and the right side of the heart itself. Baroreceptors fire at a rate"} +{"qid": "test3279", "pid": "3016756", "query": "where does the pulmonary trunk receive blood from", "answer": "from the heart", "passage": "Diastole\nand pulmonary valves open—and now blood is ejected from the heart. Ejection causes pressure within the ventricles to fall, and, simultaneously, the atria begin to refill (atrial diastole). Finally, pressures within the ventricles fall below the back pressures in the trunks of the aorta and the pulmonary arteries, and the aortic and pulmonary valves close. The ventricles start to relax, the mitral and tricuspid valves begin to open, and the cycle begins again. In summary, when the ventricles are in systole and contracting, the atria are relaxed and collecting blood as 'return' flows. When, in late diastole, the ventricles become"} +{"qid": "test3279", "pid": "5788359", "query": "where does the pulmonary trunk receive blood from", "answer": "from the heart", "passage": "\"Persistent truncus arteriosus\"\nPersistent truncus arteriosus Persistent truncus arteriosus (or patent truncus arteriosus or common arterial trunk), is a rare form of congenital heart disease that presents at birth. In this condition, the embryological structure known as the truncus arteriosus fails to properly divide into the pulmonary trunk and aorta. This results in one arterial trunk arising from the heart and providing mixed blood to the coronary arteries, pulmonary arteries, and systemic circulation. Most of the time, this defect occurs spontaneously. Genetic disorders, and teratogens (viruses, metabolic imbalance, and industrial or pharmacological agents) have been associated as possible causes. Up to 50% (varies"} +{"qid": "test3279", "pid": "67230", "query": "where does the pulmonary trunk receive blood from", "answer": "the right ventricle", "passage": "Cardiology\nby the left ventricle pumping blood into the lungs and the right ventricle pumping the blood into the aorta. This may not produce problems at the beginning, but will eventually due to the different pressures each ventricle uses to pump blood. Switching the left ventricle to be the systemic ventricle and the right ventricle to pump blood into the pulmonary artery can repair levo-transposition. Persistent truncus arteriosus is when the truncus arteriosus fails to split into the aorta and pulmonary trunk. This occurs in about 1 in 11,000 live births and allows both oxygenated and deoxygenated blood into the body."} +{"qid": "test3280", "pid": "10418212", "query": "when was south african youth day first celebrated", "answer": "1976", "passage": "\"International Day of the African Child\"\nInternational Day of the African Child The Day of the African Child has been celebrated on June 16 every year since 1991,when it was first initiated by the OAU Organisation of African Unity. It honors those who participated in the Soweto Uprising in 1976 on that day. It also raises awareness of the continuing need for improvement of the education provided to African children. In Soweto, South Africa, on June 16, 1976, about ten thousand black school children marched in a column more than half a mile long, protesting the poor quality of their education and demanding their right to"} +{"qid": "test3281", "pid": "369827", "query": "baseball teams who have not won a world series", "answer": "Washington Nationals", "passage": "\"Seattle Mariners\"\nto preserve baseball in Seattle, and has since become an iconic moment in team history. The Mariners won 116 games in , which set the American League record for most wins in a single season and tied the 1906 Chicago Cubs for the Major League record for most wins in a single season. Through the end of the 2018 season, the franchise has finished with a losing record in 28 of 42 seasons. The Mariners are one of seven Major League Baseball teams who have never won a World Series championship, and one of two (along with the Washington Nationals)"} +{"qid": "test3282", "pid": "11906379", "query": "who has the most trophies in la liga", "answer": "Real Madrid", "passage": "\"2008–09 La Liga\"\nto the player who scores the most goals in a season. The Zamora Trophy is awarded by newspaper \"\"Marca\"\" to the goalkeeper with least goals-to-games ratio. A goalkeeper must play at least 28 games of 60 or more minutes to be eligible for the trophy. 2008–09 La Liga The 2008–09 La Liga season (known as the \"\"Liga BBVA\"\" for sponsorship reasons) was the 78th since its establishment. Real Madrid were the defending champions, having won their 31st La Liga title in the previous season. The campaign began on 30 August 2008 and ended on 31 May 2009. A total of"} +{"qid": "test3282", "pid": "8502979", "query": "who has the most trophies in la liga", "answer": "Real Madrid", "passage": "\"2006–07 La Liga\"\nfrom a 1–0 deficit to beat Mallorca 3–1 and clinch the title on head-to-head superiority. Teams promoted from 2005–06 Segunda División Teams relegated to 2006–07 Segunda División The Pichichi Trophy is awarded to the player who scores the most goals in a season. The Zamora Trophy is awarded to the goalkeeper with least goals to games ratio. \"\"Last updated 17 June 2007\"\" Cuco Ziganda (Osasuna head coach) and David Belenguer (Getafe footballer) 2006–07 La Liga The 2006–07 La Liga season, the 76th since its establishment, started on 27 August 2006 and finished on 17 June 2007. Real Madrid won La"} +{"qid": "test3282", "pid": "10430272", "query": "who has the most trophies in la liga", "answer": "Real Madrid", "passage": "\"2007–08 La Liga\"\nwho scores the most goals in a season. The Zamora Trophy is awarded to the goalkeeper with least goals to games ratio. Spain supporters 2007–08 La Liga The 2007–08 La Liga season, the 77th since its establishment, started on 25 August 2007 and finished on 18 May 2008. Real Madrid defended their La Liga title successfully after a 2–1 victory over Osasuna. This season, all European leagues ended earlier than the previous season, due to the UEFA Euro 2008 championship. It also was the first year of the new La Liga television agreement that had La Sexta mark its first"} +{"qid": "test3282", "pid": "492915", "query": "who has the most trophies in la liga", "answer": "Real Madrid", "passage": "\"La Liga\"\nin eight years, making him the most successful manager in Barcelona’s history until the record was broken by his protege Pep Guardiola two decades later. Barcelona's run ended with Real Madrid winning La Liga in 1995. Atlético Madrid won their ninth \"\"Primera División\"\" title in 1996 before Real Madrid added another Liga trophy to their cabinet in 1997. After the success of Cruyff, another Dutchman – Ajax manager Louis van Gaal – arrived at the Camp Nou, and with the talents of Luís Figo, Luis Enrique, and Rivaldo, Barcelona won La Liga title in 1998 and 1999, which included their"} +{"qid": "test3282", "pid": "19359956", "query": "who has the most trophies in la liga", "answer": "Real Madrid", "passage": "\"2016–17 La Liga\"\nor more minutes to be eligible for the trophy. La Liga's governing body, the Liga de Fútbol Profesional, honoured the competition's best players and coach with the La Liga Awards. 2016–17 La Liga The 2016–17 La Liga season, also known as La Liga Santander for sponsorship reasons, was the 86th since its establishment. The season began on 19 August 2016 and concluded on 21 May 2017. The title was won by Real Madrid, for a record 33rd time; this was the first time they became champions since the 2011–12 season. Real Madrid also became only the second side (after Barcelona"} +{"qid": "test3283", "pid": "7875523", "query": "who told the story of the prodigal son", "answer": "Jesus Christ", "passage": "\"The Prodigal\"\nThe Prodigal The Prodigal is a 1955 Eastmancolor biblical epic CinemaScope film made by MGM starring Edmund Purdom and Lana Turner. It was based on the New Testament parable about a selfish son who leaves his family to pursue a life of pleasure. The film also features James Mitchell, Louis Calhern, Joseph Wiseman, Cecil Kellaway and Walter Hampden. The dancer Taina Elg made her film debut. The story is loosely based on Jesus Christ's parable of the prodigal son, from the Gospel According to Luke 15:11-32, although considerable liberties are taken with the source material, chief among them being the"} +{"qid": "test3283", "pid": "2421918", "query": "who told the story of the prodigal son", "answer": "Jesus Christ", "passage": "\"Parable of the Prodigal Son\"\nParable of the Prodigal Son The Parable of the Prodigal Son (also known as the Two Brothers, Lost Son, Loving Father, or Lovesick Father) is one of the parables of Jesus and appears in . Jesus Christ shares it with his disciples, the Pharisees and others. In the story, a father has two sons, a younger and an older. The younger son asks the father for his inheritance, and the father grants his son's request. However, the younger son is prodigal (i.e., wasteful and extravagant) and squanders his fortune, eventually becoming destitute. The younger son is forced to return home"} +{"qid": "test3285", "pid": "20005706", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"2017 SEC Championship Game\"\n2017 SEC Championship Game The 2017 SEC Championship Game was played on December 2, 2017 at Mercedes-Benz Stadium in Atlanta, Georgia, and determined the 2017 football champion of the Southeastern Conference (SEC). This was the first SEC Conference football championship at the Mercedes-Benz Stadium. The game featured the Eastern Division Champion, 2017 Georgia Bulldogs football team against the Western Division Co-Champion, the 2017 Auburn Tigers football team. This championship game was a rematch of their rivalry game, played on November 11, 2017. In that earlier game, Auburn beat Georgia by a score of 40-17. In this rematch, Georgia won the"} +{"qid": "test3285", "pid": "6177035", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"Auburn Tigers football\"\nin 1892, Auburn has completed twelve undefeated seasons. This includes seven perfect seasons in which the Tigers were undefeated and untied. Auburn officially has won 12 total conference championships, including three SIAA Championships, one Southern Conference Championship, and eight SEC Championships. † Co-champions Since divisional play began in 1992, Auburn has won the SEC Western Division championship and gone on to the conference title game on 6 occasions and is 3–3 in the SEC Championship Game. The most recent appearance came in 2017, as Auburn completed the regular season 10-2, and lost to Georgia, 28-7, in the 2017 SEC Championship"} +{"qid": "test3285", "pid": "20317668", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"2017–18 Auburn Tigers men's basketball team\"\n!colspan=9 style=| SEC regular season !colspan=9 style=| SEC Tournament !colspan=9 style=| NCAA Tournament *AP does not release post-NCAA tournament rankings 2017–18 Auburn Tigers men's basketball team The 2017–18 Auburn Tigers men's basketball team represented Auburn University during the 2017–18 NCAA Division I men's basketball season as a member of the Southeastern Conference. The team's head coach was Bruce Pearl in his fourth season at Auburn. The team played their home games at the Auburn Arena in Auburn, Alabama. They finished the season 26–8, 13–5 in SEC play to finish in a tie for the SEC regular season championship with Tennessee."} +{"qid": "test3285", "pid": "19729979", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"2017 Auburn Tigers football team\"\nclinched a berth in the SEC Championship Game with their victory over Alabama. The Tigers played Georgia for the second time this season, after defeating the Bulldogs 40–17 on November 11. It was Auburn's sixth appearance in the SEC Championship, going 3–2 with losses to Tennessee in 1997 and Florida in 2000, and victories over Tennessee in 2004, South Carolina in 2010, and Missouri in 2013. It was also the first SEC Championship Game held in the new Mercedes-Benz Stadium after the Georgia Dome was demolished the week before. Despite beating #1 Georgia three weeks prior to the SEC championship,"} +{"qid": "test3285", "pid": "20317665", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"2017–18 Auburn Tigers men's basketball team\"\n2017–18 Auburn Tigers men's basketball team The 2017–18 Auburn Tigers men's basketball team represented Auburn University during the 2017–18 NCAA Division I men's basketball season as a member of the Southeastern Conference. The team's head coach was Bruce Pearl in his fourth season at Auburn. The team played their home games at the Auburn Arena in Auburn, Alabama. They finished the season 26–8, 13–5 in SEC play to finish in a tie for the SEC regular season championship with Tennessee. As the No. 1 seed in the SEC Tournament they were upset in the quarterfinals by No. 9 seed Alabama."} +{"qid": "test3285", "pid": "19729960", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"2017 Auburn Tigers football team\"\n2017 Auburn Tigers football team The 2017 Auburn Tigers football team represented Auburn University in the 2017 NCAA Division I FBS football season. The Tigers played their home games at Jordan–Hare Stadium in Auburn, Alabama and competed in the Western Division of the Southeastern Conference (SEC). They were led by fifth-year head coach Gus Malzahn. They finished the season 10–4 overall and 7–1 in SEC play to win a share of the Western Division title with Alabama. Due to their head-to-head win over Alabama, they represented the Western Division in the SEC Championship Game where they lost to Georgia. They"} +{"qid": "test3285", "pid": "19729982", "query": "who's playing in the sec championship 2017", "answer": "Auburn Tigers", "passage": "\"2017 Auburn Tigers football team\"\nas well. 2017 Auburn Tigers football team The 2017 Auburn Tigers football team represented Auburn University in the 2017 NCAA Division I FBS football season. The Tigers played their home games at Jordan–Hare Stadium in Auburn, Alabama and competed in the Western Division of the Southeastern Conference (SEC). They were led by fifth-year head coach Gus Malzahn. They finished the season 10–4 overall and 7–1 in SEC play to win a share of the Western Division title with Alabama. Due to their head-to-head win over Alabama, they represented the Western Division in the SEC Championship Game where they lost to"} +{"qid": "test3287", "pid": "6050755", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Dead mall\"\nDead mall A dead mall, or ghost mall, is a shopping mall with a high vacancy rate or a low consumer traffic level, or that is dated or deteriorating in some manner. Many malls in North America are considered \"\"dead\"\" (for the purposes of leasing) when they have no surviving anchor store (often a large department store) or successor that could serve as an entry into or attraction to the mall. Without the pedestrian traffic that department stores previously generated, sales volumes decline for almost all stores and rental revenues from those stores can no longer sustain the costly maintenance"} +{"qid": "test3287", "pid": "6050766", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Dead mall\"\na strict permitting process) or in major urban areas (where open fields are long gone), this greyfielding can be much easier and cheaper than building on a greenfield site. A good example of this type of redevelopment is Prestonwood Town Center in Dallas and Voorhees Town Center in Voorhees Township, New Jersey. Dead mall A dead mall, or ghost mall, is a shopping mall with a high vacancy rate or a low consumer traffic level, or that is dated or deteriorating in some manner. Many malls in North America are considered \"\"dead\"\" (for the purposes of leasing) when they have"} +{"qid": "test3287", "pid": "13363835", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Cohoes Commons\"\nlarger malls, loss of the anchor caused traffic to dwindle and a chain reaction of smaller stores leaving. Size of the mall (under 200,000 sq. ft.) made it difficult to attract new retail tenants. Unlike many larger struggling enclosed malls, this mall did not face the wrecking ball. Instead, its purpose changed into an office complex when Seton Health moved in and later a unit of the New York State Department of Civil Service. Cohoes Commons Cohoes Commons was a small, urban enclosed shopping mall in Cohoes, New York, mostly focusing on upscale fashion factory outlets. What is unique about"} +{"qid": "test3287", "pid": "1241049", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Amusement park\"\nis Magic Kingdom at Walt Disney World Resort. Examples of amusement parks in shopping malls exist in West Edmonton Mall, Pier 39 and Mall of America. Family fun parks starting as miniature golf courses have begun to grow to include batting cages, go-karts, bumper cars, bumper boats and water slides. Some of these parks have grown to include even roller coasters, and traditional amusement parks now also have these competition areas in addition to their thrill rides. Some parks use rides and attractions for educational purposes. Disney was the first to successfully open a large-scale theme park built around education."} +{"qid": "test3287", "pid": "979388", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall of America\"\naid, defensive tactics, crisis intervention, terrorism awareness, and rapid response. As Doug Reynolds, the Security Director at the mall, noted in a congressional testimony in 2008, BDOs are taught to \"\"look for intent, rather than means. The objective is to focus on suspicious indicators in three categories: People, vehicles and unattended items like backpacks, shopping bags, suitcases.\"\" This methodology has prepared the mall for a variety of threats, both from terrorists and everyday criminals. In 2010, it was noted that mall security officials were instructed to question or detain individuals exhibiting what they deemed \"\"suspicious behavior\"\". Signs of suspicious behavior"} +{"qid": "test3287", "pid": "15514164", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall museums\"\nyears ago in an area of 16,000 square meters and more than 15 different collections including stamp, bill, coin, and art collections. Its main purpose is to make the world aware of Iran's history. For example, one of the newest museums to open is the new Rock and Roll Museum housed in the newly opened shopping complex called Arenas de Barcelona mall in Barcelona, Spain. The mall was opened in March 2011 in what originally was a historic bullring called Plaza de Toros las Arenas (the Sands Bullring). The original bullring, designed by Catalan architect Lluís Domènech i Montaner, was"} +{"qid": "test3287", "pid": "979372", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall of America\"\nMall of America The Mall of America (commonly, locally known as \"\"MOA\"\") is a shopping mall located in Bloomington, Minnesota, United States (a suburb of the Twin Cities). It lies southeast of the junction of Interstate 494 and Minnesota State Highway 77, north of the Minnesota River, and across the Interstate from the Minneapolis–St. Paul International Airport. Opened in 1992, it is the largest mall in the United States in terms of total floor area (including Nickelodeon Universe), the fifth largest mall in North America in terms of leaseable space, and the twelfth largest in the world. The mall is"} +{"qid": "test3287", "pid": "979373", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall of America\"\nmanaged by the Triple Five Group (which in turn is owned by Canada's Ghermezian family, along with the West Edmonton Mall and the future American Dream Meadowlands). Eighty percent of visitors to the Mall of America are from Minnesota, Wisconsin, Iowa, Nebraska, the Dakotas, Illinois, Ohio, and Canada. The mall's concept was designed by the Triple Five Group, owned by the Ghermezian brothers, who also own the largest shopping mall in North America, the West Edmonton Mall. The Mall of America is located on the site of the former Metropolitan Stadium, where the Minnesota Vikings and Minnesota Twins played until"} +{"qid": "test3287", "pid": "13534419", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall of the Americas\"\nMall of the Americas Mall of the Americas is an enclosed shopping mall located at 7795 West Flagler Street next to the Palmetto Expressway in Miami, Florida. Major stores at the mall include Foot Locker, Old Navy, Ross Dress for Less, Marshalls, The Home Depot, and a Florida Department of Highway Safety and Motor Vehicles office. At its grand opening in 1970, it was known as Midway Mall. The name change to Mall of the Americas took place in December 1987. Former anchor department stores included Richard's, Jefferson Ward and Woolco, all of which closed in the 1980s. The Woolco"} +{"qid": "test3287", "pid": "979375", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall of America\"\nof America opened its doors to the public on August 11, 1992. Its anchors were Nordstrom, Macy’s, Bloomingdale's and Sears. Even before opening, the mall had earned several nicknames, including \"\"The Megamall\"\", \"\"Sprawl of America\"\", \"\"Hugedale\"\"—in reference to the four major \"\"dale\"\" shopping malls within the Twin Cities: Rosedale, Southdale, Ridgedale, and the now-defunct Brookdale. Mall of America became the largest shopping mall in total area and largest in total store vendors in the United States when it opened. The Mall of America's 42 million annual visitors equal roughly eight times the population of the state of Minnesota. , the"} +{"qid": "test3287", "pid": "979393", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Mall of America\"\nand an unconstitutional overreach. The Mall of America was used as a filming location for various movies and television shows, including: Mall of America The Mall of America (commonly, locally known as \"\"MOA\"\") is a shopping mall located in Bloomington, Minnesota, United States (a suburb of the Twin Cities). It lies southeast of the junction of Interstate 494 and Minnesota State Highway 77, north of the Minnesota River, and across the Interstate from the Minneapolis–St. Paul International Airport. Opened in 1992, it is the largest mall in the United States in terms of total floor area (including Nickelodeon Universe), the"} +{"qid": "test3287", "pid": "17515947", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Robert Alai\"\nConjestina Achieng. In the wake of the Westgate shopping mall attack in Nairobi where over 65 people were killed, Alai was praised, both by local and international media for his timely and creative use of social media, mainly Twitter, to provide updates of what was happening at the mall. In a world of virtual media shut down by a government keen to spin the narrative to its own public image purposes, Alai virtually became the go-to person for the alternative, more accurate view. He was constant in his tweeting, all day and night long, reporting each and every significant happening."} +{"qid": "test3287", "pid": "2101887", "query": "what was the purpose of the mall of america", "answer": "shopping", "passage": "\"Maringá\"\nCocamar, Coca-Cola, Noma, among others, foster job creation in the region, and even other cities. Metalworking industries serving the entire country and also exports to countries in Latin America a very large range of products. Maringá is the fashion hub in the south of Brazil, with the largest wholesale mall in Latin America, the Mercosul. Recently, Maringá also has been highlighted in the software market, with a consolidated APL (Local Productive Arrangements). Maringá has five shopping malls: Avenida Center Mall, Cidade Mall, Mandacaru Boulevard Mall, Maringá Park Mall (formerly Aspen Park Mall) and Catuaí Maringá Mall, this is the second"} +{"qid": "test3289", "pid": "967312", "query": "who does betty end up with on riverdale", "answer": "Archie Andrews", "passage": "\"Archie Andrews\"\nhad a dog named Spotty. Archie lives in Riverdale, where he attends Riverdale High School. Archie is a typical small-town teenager. His main crush is Veronica Lodge, but he is also fond of Betty Cooper, forming the love triangle driving many of the comic's plot lines. He has the best intentions, but often comes into conflict with Veronica's rich father, Hiram Lodge, and Riverdale High's principal, Waldo Weatherbee. As the lead singer of \"\"The Archies\"\", Archie performs with Betty and Veronica as well as his friend Reggie Mantle, who battles him for Veronica's heart, and his best friend Jughead Jones."} +{"qid": "test3289", "pid": "1662445", "query": "who does betty end up with on riverdale", "answer": "Archie Andrews", "passage": "\"Chuck Clayton\"\nChuck Clayton Chuck Clayton is a teenage fictional character published by Archie Comics. Chuck lives in the fictional town of Riverdale, and is the friend of Archie Andrews, Betty Cooper, Jughead Jones, and other students at Riverdale High School. Chuck first appeared in \"\"Life With Archie\"\" #110 in 1971. Chuck was created as a means of adding diversity to the cast of Archie characters, though Valerie (of \"\"Josie and the Pussycats\"\") predates Chuck by several years. Chuck is African American and the son of Floyd Clayton, who works at Riverdale High School as the school's coach, and Alice Clayton, a"} +{"qid": "test3289", "pid": "1662449", "query": "who does betty end up with on riverdale", "answer": "Archie Andrews", "passage": "\"Chuck Clayton\"\nis to become an artist and illustrate children's books. Chuck Clayton Chuck Clayton is a teenage fictional character published by Archie Comics. Chuck lives in the fictional town of Riverdale, and is the friend of Archie Andrews, Betty Cooper, Jughead Jones, and other students at Riverdale High School. Chuck first appeared in \"\"Life With Archie\"\" #110 in 1971. Chuck was created as a means of adding diversity to the cast of Archie characters, though Valerie (of \"\"Josie and the Pussycats\"\") predates Chuck by several years. Chuck is African American and the son of Floyd Clayton, who works at Riverdale High"} +{"qid": "test3290", "pid": "5205444", "query": "who won the american league east in 2017", "answer": "The Yankees", "passage": "\"Gulf Coast League Yankees\"\nGulf Coast League Yankees The Gulf Coast League Yankees (or GCL Yankees) are the Rookie League affiliate of Major League Baseball's New York Yankees. The GCL Yankees play in Tampa, Florida at the Yankee Complex. The team is composed mainly of players who are in their first year of professional baseball either as draftees or non-drafted free agents. The GCL Yankees have won the Gulf Coast League championship twelve times, most recently in 2017 by the GCL Yankees East squad. The Yankees originally fielded a team who played in the Sarasota Rookie League and the Florida Rookie League in 1964"} +{"qid": "test3290", "pid": "20105822", "query": "who won the american league east in 2017", "answer": "Houston Astros", "passage": "\"2017 American League Championship Series\"\n2017 American League Championship Series The 2017 American League Championship Series was a best-of-seven playoff pitting the Houston Astros against the New York Yankees for the American League pennant and the right to face the Los Angeles Dodgers in the 2017 World Series. The Astros defeated the Yankees in 7 games after falling behind 3 games to 2. The home team won every game in the series. This was the first time in history that the ALCS and NLCS teams were from the four most populous U.S. cities: New York, Los Angeles, Chicago, and Houston. For the first time, Major"} +{"qid": "test3291", "pid": "13329716", "query": "when was the last time the ducks won the stanley cup", "answer": "2006–07", "passage": "\"History of the Anaheim Ducks\"\nimproved under the leadership of center Paul Kariya, who led the team to their first two Stanley Cup playoffs appearances in 1997 and 1999 while forming a potent line with Teemu Selanne, and later rode the strong goaltending of Jean-Sebastien Giguere to a Cinderella run to the franchise's first Stanley Cup Finals appearance in 2003, losing to the New Jersey Devils in seven games. Once Disney sold the franchise in 2005 to Henry and Susan Samueli, the team's name was changed to the Anaheim Ducks before the 2006–07 season, where the Ducks won the Stanley Cup in five games over"} +{"qid": "test3293", "pid": "20071335", "query": "what is the real name of our sun", "answer": "The Sun", "passage": "\"Educating Essex\"\nDrew, and staff use profane language with one another; also highlighting the depiction of bullying, teenage pregnancy and \"\"young girls caked with make-up\"\", Andrew Levy and Lynn Davidson of the \"\"Mail\"\" wrote \"\"What sort of example is this to set our children?\"\" Nick Seaton, a spokesman for the Campaign for Real Education, criticised Passmores and its Ofsted rating, saying \"\"If this is an outstanding school then it doesn't say much for the rest\"\". Katie Jackson of \"\"The Sun\"\" also criticised the profanity, although she called the series \"\"hilarious, heart-warming and sometimes hard-hitting\"\". In 2012 \"\"Educating Essex\"\" was shortlisted for the"} +{"qid": "test3293", "pid": "2275787", "query": "what is the real name of our sun", "answer": "The Sun", "passage": "\"The Sun Also Rises\"\nif he had fashioned the art of writing himself,\"\" and that the characters \"\"are amazingly real and alive.\"\" Many reviewers, among them H.L. Mencken, praised Hemingway's style, use of understatement, and tight writing. Other critics, however, disliked the novel. \"\"The Nation\"\" critic believed Hemingway's hard-boiled style was better suited to the short stories published in \"\"In Our Time\"\" than his novel. Writing in the \"\"New Masses\"\", Hemingway's friend John Dos Passos asked: \"\"What's the matter with American writing these days? ... The few unsad young men of this lost generation will have to look for another way of finding themselves"} +{"qid": "test3293", "pid": "14274987", "query": "what is the real name of our sun", "answer": "The Sun", "passage": "\"The Sun (United Kingdom)\"\nonly three years old at the time of Hillsborough) should not be punished for its \"\"past sins\"\". In January 2005, \"\"The Sun\"\" managing editor Graham Dudman admitting the Hillsborough coverage was \"\"the worst mistake in our history\"\", added: \"\"What we did was a terrible mistake. It was a terrible, insensitive, horrible article, with a dreadful headline; but what we'd also say is: we have apologised for it, and the entire senior team here now is completely different from the team that put the paper out in 1989.\"\" In May 2006, Kelvin MacKenzie, \"\"Sun\"\" editor at the time of the Hillsborough"} +{"qid": "test3294", "pid": "5033530", "query": "who sang the song i wanna be sedated", "answer": "the Ramones", "passage": "\"I Wanna Be Sedated\"\nI Wanna Be Sedated \"\"I Wanna Be Sedated\"\" is a song by the American punk rock band the Ramones. It is one of the band's best known songs. It was originally released on their fourth album, \"\"Road to Ruin\"\", in September 1978 and was the B-side of the UK single \"\"She's the One\"\" released on September 21,1978. The song was later released as a single in the Netherlands in 1979, then in the U.S. in 1980 by RSO Records from the \"\"Times Square\"\" soundtrack album. \"\"I Wanna Be Sedated\"\" was written by Joey Ramone. In an interview about the song,"} +{"qid": "test3294", "pid": "9106750", "query": "who sang the song i wanna be sedated", "answer": "the Ramones", "passage": "\"Exposed (Vince Neil album)\"\nNeil Wharton, who portrayed a young Vince Neil in the video. Neil recorded two bonus tracks for the Japanese edition: \"\"Blondes (Have More Fun)\"\" and the Ramones’ cover \"\"I Wanna Be Sedated\"\". \"\"The Last Goodbye\"\" , cowritten with Todd Meagher, was pulled from the album at the last minute due to a dispute between Meagher and Neil that culminated in a brawl at the Roxbury on Sunset Strip. The song was a ballad, about Neil's split from Mötley. \"\"\"\"Exposed\"\" did well… and I'm sure the record that Mötley Crüe did without me was also very good,\"\" Neil said in 2000,"} +{"qid": "test3294", "pid": "5033531", "query": "who sang the song i wanna be sedated", "answer": "the Ramones", "passage": "\"I Wanna Be Sedated\"\nJoey explains the chorus: The music video for the song, directed by Bill Fishman, was released in September 1988 (About ten years after the song was originally released) to promote the compilation album \"\"Ramones Mania\"\". The iconic video features the Ramones sitting at a table (left to right: Johnny, Joey, Marky and Dee Dee), nonchalantly reading and eating corn flakes. Meanwhile, the background room erupts into a meeting place for nuns, acrobats, ballerinas, monsters, cheerleaders, clowns, doctors, fetish nurses, and smoking schoolgirls. The film is intentionally sped up to show the excitement of the background, while the band's actions are"} +{"qid": "test3296", "pid": "5004769", "query": "who sang i dreamed a dream in les miserables", "answer": "Fantine", "passage": "\"Rachelle Ann Go\"\nEva Noblezada and the rest of the “Les Miserables” cast gave a rousing performance during the 2016 West End Live event in London held over the weekend. Go and Noblezada started with a beautiful mash-up of “I Dreamed a Dream” and “On My Own.” They play the roles of Fantine and Eponine, respectively. Go was awarded by West End Theater the Best performance of a song for her rendition of Les Misérables' \"\"I Dreamed a Dream\"\". On November 11, 2016, at the Smart Araneta Coliseum, Go was set to have a concert with Yeng Constantino, KZ Tandingan, Angeline Quinto and"} +{"qid": "test3296", "pid": "10794109", "query": "who sang i dreamed a dream in les miserables", "answer": "Fantine", "passage": "\"Tom Hooper\"\nwireless earpieces on set so they could sing to accompanying piano music. Hooper believed this method allowed the actors to have emotional control over their songs: \"\"When Annie [Hathaway, who plays Fantine] is singing 'I Dreamed a Dream', if she needs to take a tenth of a second to have a thought before she sings it, or to have an emotion before she sings a line, she can take it.\"\" The actors also performed their songs in recitative style, which Hooper likened to being immersed in a 3D film. \"\"Les Miserables\"\" was released in North America on 25 December 2012,"} +{"qid": "test3296", "pid": "8592882", "query": "who sang i dreamed a dream in les miserables", "answer": "Fantine", "passage": "\"I Dreamed a Dream\"\nI Dreamed a Dream \"\"I Dreamed a Dream\"\" is a song from the musical \"\"Les Misérables\"\". It is a solo that is sung by the character Fantine during the first act. The music is by Claude-Michel Schönberg, with orchestrations by John Cameron. The English lyrics are by Herbert Kretzmer, based on the original French libretto by Alain Boublil and Jean-Marc Natel from the original French production. The song is a lament, sung by the anguished Fantine, who has just been fired from her job at the factory and thrown onto the streets. She thinks back to happier days and wonders"} +{"qid": "test3296", "pid": "8592901", "query": "who sang i dreamed a dream in les miserables", "answer": "Fantine", "passage": "\"I Dreamed a Dream\"\nwas never released as a single until Kahara's cover. The song was suggested for Kahara's comeback by executives at Universal J, Kahara's record label and the one behind the Japanese release of the soundtrack for the 2012 film adaptation of \"\"Les Misérables\"\". Coincidentally, the song happened to be a favorite of Kahara's that she often sang at auditions. The song was recorded with a backing orchestra of 41 musicians. The cover art for the single pays homage to the musical and the character of Fantine by depicting Kahara as a broken but hopeful woman. The single also includes a piano"} +{"qid": "test3296", "pid": "8592902", "query": "who sang i dreamed a dream in les miserables", "answer": "Fantine", "passage": "\"I Dreamed a Dream\"\nversion of \"\"Yume Yaburete\"\" as well as a self-cover of Kahara's 1996 hit song \"\"I'm Proud\"\". First pressing of the single includes a DVD featuring the music video for \"\"Yume Yaburete\"\". \"\"Yume Yaburete (I Dreamed a Dream)\"\" entered the Oricon weekly singles chart at number 13, marking Kahara's first top 20 single since \"\"Anata ga Ireba\"\" (2004). I Dreamed a Dream \"\"I Dreamed a Dream\"\" is a song from the musical \"\"Les Misérables\"\". It is a solo that is sung by the character Fantine during the first act. The music is by Claude-Michel Schönberg, with orchestrations by John Cameron. The"} +{"qid": "test3297", "pid": "18169615", "query": "who plays the scary nun in the conjuring 2", "answer": "Bonnie Aarons", "passage": "\"The Conjuring 2\"\ntitled \"\"The Nun\"\", focusing on the \"\"Demon Nun\"\" character Valak, was in development with Johnson writing the script. Safran and Wan are producing. Corin Hardy was hired to direct the film, with a screenplay by Wan and Gary Dauberman. It was released on September 7, 2018, with Demián Bichir and Taissa Farmiga cast in the lead roles. Bonnie Aarons will reprise her role in the film, and Charlotte Hope, Jonas Bloquet, and Ingrid Bisu are set to co-star. Filming began in May 2017 in Bucharest, Romania. On May 31, 2017, Peter Safran said there was a possibility of a Crooked"} +{"qid": "test3297", "pid": "19969243", "query": "who plays the scary nun in the conjuring 2", "answer": "Bonnie Aarons", "passage": "\"Bonnie Aarons\"\nBonnie Aarons Bonnie Aarons (born June 3, 1979 in Los Angeles) is an American actress and writer. She is best known for her roles as the bum in \"\"Mulholland Drive\"\" (2001), Baroness Joy von Troken in \"\"The Princess Diaries\"\" (2001) and its sequel, \"\"\"\" (2004), and the demon nun known as Valak in \"\"The Conjuring 2\"\" (2016) and its subsequent spinoff, \"\"The Nun\"\" (2018). She will appear in the 2018 movie \"\"Adi Shankar's Gods and Secrets\"\". Aarons attended acting school in New York City, but was frequently told that she would not have an acting career, due to her look"} +{"qid": "test3297", "pid": "20124790", "query": "who plays the scary nun in the conjuring 2", "answer": "Bonnie Aarons", "passage": "\"The Nun (2018 film)\"\nauditions for this role and she had some kind of presence outside of her own body that is evident, and she's phenomenal.\"\" Bonnie Aarons was then set to reprise her role as the \"\"Demon Nun\"\" character Valak from \"\"The Conjuring 2\"\". Charlotte Hope, Jonas Bloquet, and Ingrid Bisu were subsequently announced to star, rounding out the main cast. Principal photography for the film began on May 3, 2017, at Castel Film Studios in Bucharest, Romania, with Maxime Alexandre serving as cinematographer. Film director Corin Hardy had a Roman Catholic priest bless the set prior to filming. Scenes were filmed in"} +{"qid": "test3297", "pid": "19407463", "query": "who plays the scary nun in the conjuring 2", "answer": "Bonnie Aarons", "passage": "\"Annabelle: Creation\"\nsoon adopt Annabelle. Twelve years later, a grown-up Annabelle joins a Satanic cult and, along with her boyfriend, murders her adoptive parents in their bedroom, which catches the attention of their next-door neighbors, the Forms. In 1952, Valak, the Demon Nun, walks the candle-lit halls of the Cârța Monastery in Romania, as each candle slowly goes out. Additionally, Annabelle Wallis and Ward Horton appear in archive footage from \"\"Annabelle\"\" as Mia and John Form, respectively, and Bonnie Aarons reprises her role from \"\"The Conjuring 2\"\" as the demon nun Valak in an uncredited appearance. In October 2015, it was confirmed"} +{"qid": "test3297", "pid": "19577045", "query": "who plays the scary nun in the conjuring 2", "answer": "Bonnie Aarons", "passage": "\"The Conjuring Universe\"\nhad joined the cast in the lead role. That same month, Taissa Farmiga joined the cast of the film, in the titular role. Bonnie Aarons will reprise her role in the film. The plot of the film follows a nun, a priest and a novitiate as they investigate an unholy secret and confront a malevolent force in the form of a demonic nun. Filming began in May 2017 in Bucharest, Romania and the film was released on September 7, 2018. On August 12, 2017, Wan discussed a possibility for a \"\"Nun\"\" sequel and what its storyline may be: \"\"I do"} +{"qid": "test3298", "pid": "4057302", "query": "who has the most number one single hits", "answer": "The Beatles", "passage": "\"Sean Garrett\"\nin fifth place on the \"\"Billboard\"\" list of producers with the most number one hits. Garrett is the first producer to achieve this measure of success in under a decade since George Martin, who produced 20 number one hits for The Beatles in 6 1/2 years from 1964 to 1970. He is also the only active hip hop producer that is mentioned on the Billboard list of producers with the most number one hits. Garrett is in a production duo with Swizz Beatz, and together they produced several Beyoncé Knowles singles: \"\"Ring the Alarm\"\", \"\"Get Me Bodied\"\", \"\"Upgrade U\"\", \"\"Check"} +{"qid": "test3298", "pid": "4508079", "query": "who has the most number one single hits", "answer": "The Beatles", "passage": "\"Rock and Roll Music\"\nRock and Roll Music \"\"Rock and Roll Music\"\" is a 1957 hit single written and recorded by rock and roll star Chuck Berry. The song has been widely covered and is recognized as one of Berry's most popular and enduring compositions. In the fall of 1957, his recording reached number 6 on \"\"Billboard\"\" magazine's R&B Singles chart and number 8 on its Hot 100 chart. The song has been recorded by many well-known artists. The Beatles' 1964 recording topped singles charts in Europe and in Australia, and the Beach Boys had a U.S. top ten hit with the song in"} +{"qid": "test3299", "pid": "12608665", "query": "how does the cash cab guy read the questions", "answer": "walkie-talkie and earpiece", "passage": "\"Cash Cab (U.S. game show)\"\nthe same rules as its New York counterpart, aired. The spin-off was cancelled after one season, but rerun episodes are aired along with \"\"Cash Cab\"\" episodes in syndication. Ben Bailey stated that the show was created during contract renewal negotiations. A support van tails the Cash Cab, containing producers and a camera crew for the various street shots. The staff provide logistical information and questions by way of a walkie-talkie and earpiece worn by the host. The Cash Cab is equipped with ten cameras: one on the host, three on the passengers, one pointing forward from the back window of"} +{"qid": "test330", "pid": "9444027", "query": "who said the poison is in the dose", "answer": "credited to Paracelsus", "passage": "\"The dose makes the poison\"\nThe dose makes the poison \"\"The dose makes the poison\"\" () is an adage intended to indicate a basic principle of toxicology. It is credited to Paracelsus who expressed the classic toxicology maxim \"\"All things are poison, and nothing is without poison, the dosage alone makes it so a thing is not a poison.\"\" This is often condensed to: \"\"The dose makes the poison\"\" or in Latin, . It means that a substance can produce the harmful effect associated with its toxic properties only if it reaches a susceptible biological system within the body in a high enough concentration (i.e.,"} +{"qid": "test330", "pid": "9444029", "query": "who said the poison is in the dose", "answer": "credited to Paracelsus", "passage": "\"The dose makes the poison\"\nalready have significant chronic effects if there is a long-term exposure. Many pollutants, drugs, and natural substances adhere to this principle by causing different effects at different levels, which can as a result lead to health standards that are either too strong or too weak. Generally the effects of different doses can be very different at different levels (not only bigger and smaller impacts depending on dose). The dose makes the poison \"\"The dose makes the poison\"\" () is an adage intended to indicate a basic principle of toxicology. It is credited to Paracelsus who expressed the classic toxicology maxim"} +{"qid": "test330", "pid": "16045454", "query": "who said the poison is in the dose", "answer": "Paracelsus", "passage": "\"Psychoactive drug\"\nexperiences and systematic observations on psychedelics, developed this theory along with his colleagues Ralph Metzner, and Richard Alpert (Ram Dass) in the 1960s. The first factor, dosage, has been a truism since ancient times, or at least since Paracelsus who said, \"\"Dose makes the poison.\"\" Some compounds are beneficial or pleasurable when consumed in small amounts, but harmful, deadly, or evoke discomfort in higher doses. The set is the internal attitudes and constitution of the person, including their expectations, wishes, fears, and sensitivity to the drug. This factor is especially important for the hallucinogens, which have the ability to make"} +{"qid": "test330", "pid": "615913", "query": "who said the poison is in the dose", "answer": "Paracelsus", "passage": "Poison\n1784 and the term \"\"poison oak\"\" was first used in 1743. The term \"\"poison gas\"\" was first used in 1915. The term \"\"poison\"\" is often used colloquially to describe any harmful substance—particularly corrosive substances, carcinogens, mutagens, teratogens and harmful pollutants, and to exaggerate the dangers of chemicals. Paracelsus (1493–1541), the father of toxicology, once wrote: \"\"Everything is poison, there is poison in everything. Only the dose makes a thing not a poison\"\" (see median lethal dose). The term \"\"poison\"\" is also used in a figurative sense: \"\"His brother's presence poisoned the atmosphere at the party\"\". The law defines \"\"poison\"\" more"} +{"qid": "test3300", "pid": "11473986", "query": "when did the black death end in england", "answer": "December 1349", "passage": "\"England in the Late Middle Ages\"\nthe devastations of the plague. Pestilence is less virulent during the winter months, and spreads less rapidly. The Black Death in England had survived the winter of 1348–49, but during the following winter it ended, and by December 1349 conditions were returning to relative normalcy. It had taken the disease approximately 500 days to traverse the entire country. The Black Death brought a halt to Edward's campaigns by killing between a third to more than half of his subjects. The king passed the Ordinance of Labourers and the Statute of Labourers in response to the shortage of labour and social"} +{"qid": "test3302", "pid": "13091892", "query": "when do new episodes of ncis los angeles return", "answer": "October 1, 2017", "passage": "\"NCIS: Los Angeles\"\nNCIS: Los Angeles NCIS: Los Angeles is an American action television series combining elements of the military drama and police procedural genres, which premiered on CBS on September 22, 2009, and stars Chris O'Donnell and LL Cool J. The series follows the exploits of the Los Angeles–based Office of Special Projects (OSP), an elite division of the Naval Criminal Investigative Service that specializes in undercover assignments. \"\"NCIS: Los Angeles\"\" is the first spin-off of the successful series \"\"NCIS\"\". On March 23, 2017, CBS renewed the series for a ninth season which premiered on October 1, 2017. Nia Long joined the"} +{"qid": "test3303", "pid": "1860051", "query": "when did the ouija board first come out", "answer": "July 1, 1890", "passage": "Ouija\nto refer to any talking board. According to Hasbro, players take turns asking questions and then \"\"wait to see what the planchette spells out\"\" for them. It is recommended for players over the age of 8. Following its commercial introduction by businessman Elijah Bond on July 1, 1890, the ouija board was regarded as a parlor game unrelated to the occult until American spiritualist Pearl Curran popularized its use as a divining tool during World War I. Spiritualists claimed that the dead were able to contact the living and reportedly used a talking board very similar to a modern ouija"} +{"qid": "test3304", "pid": "18429937", "query": "where was the movie the glass castle filmed", "answer": "in Welch, West Virginia", "passage": "\"The Glass Castle (film)\"\nof the film, replacing Lawrence who exited the film after a male lead couldn't be found. In November 2015, Woody Harrelson joined the cast of the film. In March 2016, Naomi Watts joined the cast. In April 2016, Max Greenfield and Sarah Snook joined the cast. In May 2016, Ella Anderson joined the cast. Principal photography began on May 20, 2016, in Welch, West Virginia. \"\"The Glass Castle\"\" was released on August 11, 2017, by Lionsgate. \"\"The Glass Castle\"\" grossed $17.3 million in the United States and Canada and $3.9 million in other territories, for a worldwide total of $21.7"} +{"qid": "test3304", "pid": "12387794", "query": "where was the movie the glass castle filmed", "answer": "in Welch, West Virginia", "passage": "\"The Glass Castle\"\nthe movie adaptation. In August 2014, it was announced that Destin Daniel Cretton was set to direct. On October 9, 2015, it was reported that Lawrence withdrew from the film. Lionsgate acquired the film rights from Paramount and Brie Larson was cast as Jeannette Walls. Naomi Watts and Woody Harrelson were cast as Rose Mary and Rex Walls, respectively, with Gil Netter producing. Filming began May 20, 2016 in Welch, West Virginia. The film was released August 11, 2017, to mixed reviews praising the performances while noting the film's overall uneven tone. It holds a 51% rating on RottenTomatoes.com. The"} +{"qid": "test3305", "pid": "12297112", "query": "who grows the most coffee in the world", "answer": "Brazil", "passage": "\"Coffee production in Indonesia\"\nthe end of the 18th century, the price had dropped to 0.6 Guilders per kilogram and coffee drinking spread from the elite to the general population. The East Indies were the most important coffee supplier in the world during this period and it was only in the 1840s that their stranglehold on supply was eclipsed by Brazil The coffee trade was very profitable for the VOC, and for the Dutch East Indies government that replaced it in 1800, but was less so for the Indonesian farmers who were forced to grow it by the colonial government from 1830 to around"} +{"qid": "test3305", "pid": "10849916", "query": "who grows the most coffee in the world", "answer": "Brazil", "passage": "\"Coffee production in Colombia\"\nCoffee production in Colombia Coffee production in Colombia has a reputation as producing mild, well-balanced coffee beans. Colombia's average annual coffee production of 11.5 million bags is the third total highest in the world, after Brazil and Vietnam; though highest in terms of the arabica bean. The beans are exported to United States, (Germany), France, Japan, and Italy. Most coffee is grown in the Colombian coffee growing axis region. In 2007, the European Union granted Colombian coffee a protected designation of origin status. In 2011 UNESCO declared the \"\"Coffee Cultural Landscape\"\" of Colombia, a World Heritage site. Geordie Shore (series 15) The fifteenth series of Geordie Shore, a British television programme based in Newcastle upon Tyne, was confirmed on 8 August 2017 when a teaser video was released. The series began on 29"} +{"qid": "test333", "pid": "17409229", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 7)\"\nlist, new cast member Marnie isolating herself after breaking up the friendship between Gaz and Scott, and Jay returning to fix the drift between the cast members. Geordie Shore (series 7) The seventh series of Geordie Shore, a British television programme based in Newcastle upon Tyne, was announced on 5 July 2013 after cast members Holly Hagan and Vicky Pattison had been arrested for assault on a night out during filming. The series began on 17 September 2013, just three weeks after Series 6 had concluded, and finished airing on 22 October 2013 after six episodes. This series had"} +{"qid": "test333", "pid": "20643444", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 17)\"\ncast members had joined the series, including Grant Molloy, Adam Guthrie and four Australians, Alex MacPherson, Nick Murdoch, Dee Nguyen, and Chrysten Zenoni. Zenoni had previously appeared in the fifth series of \"\"Ex on the Beach\"\". The new cast members are to replace Aaron Chalmers and Marnie Simpson, who both announced that they'd quit the show, and Steph Snowdon who was fired after the sixteenth series. Geordie Shore (series 17) The seventeenth series of Geordie Shore, a British television programme based in Newcastle Upon Tyne was filmed in February 2018, and began airing from 15 May 2018. It concluded"} +{"qid": "test333", "pid": "19069010", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Ex on the Beach (series 2)\"\nup on the beach during the fourth episode in an attempt to win her back, whilst \"\"Geordie Shore\"\"'s Charlotte Crosby arrived during the fifth coming face-to-face with her ex Gary. Danielle Abbott received a warm welcome from ex-boyfriend Luke when she made her first appearance in the sixth episode, and Ashley Cain returned to the beach during the seventh episode as the ex Emily. Ashley had previously appeared in the first series. Ex on the Beach (series 2) The second series of \"\"Ex on the Beach\"\", a British television programme, began airing on 27 January 2015 on MTV. The"} +{"qid": "test333", "pid": "17259676", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 5)\"\nGeordie Shore (series 5) The fifth series of Geordie Shore, a British television programme based in Newcastle upon Tyne, began airing on 19 February 2013 on MTV. The series concluded on 16 April 2013 after 8 episodes and a special episode counting down the best bits from the series. This series was filmed in Newcastle upon Tyne with the cast visiting various locations around Europe, including Amsterdam, Barcelona, Prague and Tignes. This was the final series to feature cast members Daniel Thomas-Tuck, and Ricci Guarnaccio, who departed the series following the breakdown of his relationship with Vicky Pattison. The series"} +{"qid": "test333", "pid": "17259677", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 5)\"\nfocused heavily on Charlotte finally being honest with Gaz about her feelings towards him, a rift growing between Holly and James following instructions from girlfriend Kate, and the end of Ricci and Vicky's turbulent relationship. Geordie Shore (series 5) The fifth series of Geordie Shore, a British television programme based in Newcastle upon Tyne, began airing on 19 February 2013 on MTV. The series concluded on 16 April 2013 after 8 episodes and a special episode counting down the best bits from the series. This series was filmed in Newcastle upon Tyne with the cast visiting various locations around"} +{"qid": "test333", "pid": "20643443", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 17)\"\nGeordie Shore (series 17) The seventeenth series of Geordie Shore, a British television programme based in Newcastle Upon Tyne was filmed in February 2018, and began airing from 15 May 2018. It concluded following twelve episodes on 31 July 2018 making this the joint longest series to date. The series was filmed in Australia rather than Newcastle, making this the second series to be filmed here following the sixth series in 2013. Ahead of the series it was announced that former cast member Holly Hagan would be making a return to the show. It was also confirmed that six new"} +{"qid": "test333", "pid": "19058655", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 11)\"\nmembers would air for 10 episodes, making it the longest series to date. It was also confirmed that the cast had travelled to Zante, Malia, Mykonos, Ios as well as Athens for the series. Geordie Shore (series 11) The eleventh series of Geordie Shore, a British television programme based in Newcastle upon Tyne was confirmed on 23 May 2015 when it was confirmed that MTV had renewed the series for a further three series. The show began on 20 October 2015. This is the first series not to include original cast member James Tindale after he departed at the"} +{"qid": "test333", "pid": "15598161", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore\"\nJay and Vicky's rocky relationship. In June 2011, two summer specials based in Magaluf were announced. These episodes aired from 23 August 2011 to 30 August 2011. This was the only series to feature Greg Lake. The second series of the show began airing on 31 January 2012 and concluded on 20 March 2012, consisting of eight episodes. Like the first series, this series included a reunion special and a \"\"Best Bits\"\" special episode. The series was confirmed on 15 August 2011 when \"\"Geordie Shore\"\" was recommissioned for a second series with an extended eight-episode run. After the Magaluf specials,"} +{"qid": "test333", "pid": "17409227", "query": "what episode does marnie come back in geordie shore", "answer": "5", "passage": "\"Geordie Shore (series 7)\"\nGeordie Shore (series 7) The seventh series of Geordie Shore, a British television programme based in Newcastle upon Tyne, was announced on 5 July 2013 after cast members Holly Hagan and Vicky Pattison had been arrested for assault on a night out during filming. The series began on 17 September 2013, just three weeks after Series 6 had concluded, and finished airing on 22 October 2013 after six episodes. This series had a shorter run that usual due to filming being postponed after the night of the assault. It was reported that filming for the series began on 26 June"} +{"qid": "test3330", "pid": "9906382", "query": "what group of animals do octopus belong to", "answer": "class Cephalopoda", "passage": "\"Common octopus\"\nCommon octopus The common octopus (\"\"Octopus vulgaris\"\") is a mollusc belonging to the class Cephalopoda. \"\"Octopus vulgaris\"\" is the most studied of all octopus species. \"\"Octopus vulgaris\"\" is considered cosmopolitan. A global species, its range in the eastern Atlantic extends from the Mediterranean Sea and the southern coast of England to at least Senegal in Africa. It also occurs off the Azores, Canary Islands, and Cape Verde Islands. The species is also common in the Western Atlantic. \"\"Octopus vulgaris\"\" grows to 25 cm in mantle length with arms up to 1 m long. \"\"O. vulgaris\"\" is caught by bottom trawls"} +{"qid": "test3330", "pid": "9906420", "query": "what group of animals do octopus belong to", "answer": "class Cephalopoda", "passage": "\"Common octopus\"\norder to stay within its preferential temperature zone. Common octopus The common octopus (\"\"Octopus vulgaris\"\") is a mollusc belonging to the class Cephalopoda. \"\"Octopus vulgaris\"\" is the most studied of all octopus species. \"\"Octopus vulgaris\"\" is considered cosmopolitan. A global species, its range in the eastern Atlantic extends from the Mediterranean Sea and the southern coast of England to at least Senegal in Africa. It also occurs off the Azores, Canary Islands, and Cape Verde Islands. The species is also common in the Western Atlantic. \"\"Octopus vulgaris\"\" grows to 25 cm in mantle length with arms up to 1 m"} +{"qid": "test3332", "pid": "111849", "query": "suffix applied to the end of the name of enzymes", "answer": "-ase", "passage": "Enzyme\nthe suffix \"\"-ase\"\" is combined with the name of the substrate (e.g., lactase is the enzyme that cleaves lactose) or to the type of reaction (e.g., DNA polymerase forms DNA polymers). The biochemical identity of enzymes was still unknown in the early 1900s. Many scientists observed that enzymatic activity was associated with proteins, but others (such as Nobel laureate Richard Willstätter) argued that proteins were merely carriers for the true enzymes and that proteins \"\"per se\"\" were incapable of catalysis. In 1926, James B. Sumner showed that the enzyme urease was a pure protein and crystallized it; he did likewise"} +{"qid": "test3332", "pid": "9754073", "query": "suffix applied to the end of the name of enzymes", "answer": "-ase", "passage": "\"Émile Duclaux\"\nhe was elected to the \"\"Académie des sciences\"\", and in 1894 became a member of the \"\"Académie Nationale de Médecine\"\". Duclaux's work was largely in the fields of chemistry, bacteriology, hygiene and agriculture. Duclaux initiated the custom of naming enzymes by adding the suffix \"\"-ase\"\" to the enzyme's substrate. His intention was to honor the first scientists (namely Anselme Payen, 1795–1871; and Jean-François Persoz, 1805–1868) to isolate an enzyme; \"\"diastase\"\", in 1833. With Pasteur, he collaborated in the study of silkworm diseases, and also took part in experiments to debunk the theory of spontaneous generation. In the 1870s, he undertook"} +{"qid": "test3332", "pid": "9950288", "query": "suffix applied to the end of the name of enzymes", "answer": "-ase", "passage": "\"History of biochemistry\"\nhis biochemical research and his discovery of cell-free fermentation\"\". Following Buchner's example; enzymes are usually named according to the reaction they carry out. Typically the suffix \"\"-ase\"\" is added to the name of the substrate (\"\"e.g.\"\", lactase is the enzyme that cleaves lactose) or the type of reaction (\"\"e.g.\"\", DNA polymerase forms DNA polymers). Having shown that enzymes could function outside a living cell, the next step was to determine their biochemical nature. Many early workers noted that enzymatic activity was associated with proteins, but several scientists (such as Nobel laureate Richard Willstätter) argued that proteins were merely carriers for"} +{"qid": "test3332", "pid": "679138", "query": "suffix applied to the end of the name of enzymes", "answer": "-ase", "passage": "Diastase\nmash is heated, the enzyme causes the starch in the barley seed to transform quickly into soluble sugars and hence the husk to separate from the rest of the seed. Today, \"\"diastase\"\" refers to any α-, β-, or γ-amylase (all of which are hydrolases) that can break down carbohydrates. The commonly used -ase suffix for naming enzymes was derived from the name diastase. When used as a pharmaceutical drug, diastase has the ATC code . Amylases can also be extracted from other sources including plants, saliva and milk. Urine diastase is useful in diagnosing uncertain abdominal cases (especially when pancreatitis"} +{"qid": "test3333", "pid": "18255217", "query": "who plays caesar planet of the apes 2014", "answer": "Andy Serkis", "passage": "\"War for the Planet of the Apes\"\nWar for the Planet of the Apes War for the Planet of the Apes is a 2017 American science fiction film directed by Matt Reeves and written by Mark Bomback and Reeves. A sequel to \"\"Rise of the Planet of the Apes\"\" (2011) and \"\"Dawn of the Planet of the Apes\"\" (2014), it is the third installment in the \"\"Planet of the Apes\"\" reboot series. The film stars Andy Serkis, Woody Harrelson and Steve Zahn, and follows a confrontation between the apes, led by Caesar, and the humans for control of Earth. Like its predecessor, its premise shares several similarities"} +{"qid": "test3333", "pid": "2417383", "query": "who plays caesar planet of the apes 2014", "answer": "Andy Serkis", "passage": "\"Andy Serkis\"\ndone critically acclaimed motion capture work in several other films, including the title character in the 2005 version of King Kong (in which he also played the ship's cook in live action) and as Caesar in \"\"Rise of the Planet of the Apes\"\" (2011), \"\"Dawn of the Planet of the Apes\"\" (2014), and \"\"War for the Planet of the Apes\"\" (2017). He also worked with game developers Ninja Theory on the 2007 release \"\"Heavenly Sword\"\", providing the motion capture and voice for King Bohan (the game's main villain). Serkis was cast as serial killer Ian Brady in the BAFTA-nominated \"\"Longford\"\","} +{"qid": "test3333", "pid": "14548394", "query": "who plays caesar planet of the apes 2014", "answer": "Andy Serkis", "passage": "\"Rise of the Planet of the Apes\"\nthe screenplay, with rewrites from Scott Z. Burns and Mark Bomback. Taking place ten years after \"\"Rise\"\", \"\"Dawn\"\" follows Caesar's growing nation of evolved apes. Andy Serkis, Terry Notary and Karin Konoval reprise their roles as Caesar, Rocket and Maurice. James Franco returned as Will Rodman in a \"\"cameo via video\"\". \"\"Dawn of the Planet of the Apes\"\" was released July 11, 2014. On January 6, 2014, 20th Century Fox announced a third installment with Reeves returning to direct and co-write along with Bomback, with a planned July 2016 release. In January 2015, Fox delayed the release to July 14,"} +{"qid": "test3333", "pid": "2417389", "query": "who plays caesar planet of the apes 2014", "answer": "Andy Serkis", "passage": "\"Andy Serkis\"\n\"\"The Hobbit\"\" films which were released in 2012, 2013 and 2014. He was also the film's second unit director, which included directing aerial shots and battle scenes. He was invited to join the Academy of Motion Picture Arts and Sciences in June 2012 along with 175 other individuals. In 2014, Serkis reprised his role as Caesar in \"\"Dawn of the Planet of the Apes\"\", and in 2017 again reprised the role in \"\"War for the Planet of the Apes\"\", the last of the trilogy. In Gareth Edwards' 2014 science-fiction monster film \"\"Godzilla\"\", Serkis was the consultant on the film's motion"} +{"qid": "test3335", "pid": "2783990", "query": "nobel laureate who began career as accountant in calcutta", "answer": "Amartya Sen", "passage": "\"University of Calcutta\"\nare: The university has produced many scientists, engineers, world leaders and Nobel laureates and teachers. As the oldest university of Bengal and India, it attracted students from diverse walks of life. Nobel laureates who either studied or worked here include Rabindranath Tagore, Chandrasekhara Venkata Raman, Ronald Ross, and Amartya Sen. The Academy Award winning director Satyajit Ray was an alumnus of this university. So was the composer of the national song of India, Bankim Chandra Chattopadhyay. Some of the industrialists who studied in this university include Sir Rajen Mookerjee, Rama Prasad Goenka, Lakshmi Mittal, and Aditya Birla. Notable scientists and"} +{"qid": "test3335", "pid": "19550381", "query": "nobel laureate who began career as accountant in calcutta", "answer": "Amartya Sen", "passage": "\"Mrinal Datta Chaudhuri\"\nIndia. He did his college education at Shantiniketan where he studied with Amartya Sen, who later won the Nobel Prize for economics, and Sukhamoy Chakraborty. He completed his post graduate education at Presidency College, Calcutta. Receiving a full-paid scholarship to pursue his doctoral studies at Massachusetts Institute of Technology, he studied under the guidance of Paul Samuelson, the first American Nobel Laureate in Economics who was later described by the New York Times as the \"\"foremost academic economist of the 20th century\"\". The stint at MIT also gave him opportunity to study under Nobel Prize winners such as Robert Solow,"} +{"qid": "test3335", "pid": "2783977", "query": "nobel laureate who began career as accountant in calcutta", "answer": "Amartya Sen", "passage": "\"University of Calcutta\"\nNobel laureates, namely Ronald Ross (Medicine), Rabindranath Tagore (Literature), C. V. Raman (Physics), and Amartya Sen (Economics). The university has the highest number of students who have cleared the doctoral entrance eligibility exam in Natural Science & Arts conducted by Government of India's National Eligibility Test to become eligible to pursue research with a full scholarship awarded by the Government of India. The Calcutta University Act came into force on 24 January 1857 and a 41-member Senate was formed as the policy making body of the university. The land for the establishment of this university was given by Maharaja Maheshwar"} +{"qid": "test3338", "pid": "109949", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Dewey Decimal Classification\"\nDewey Decimal Classification The Dewey Decimal Classification (DDC), colloquially the Dewey Decimal System, is a proprietary library classification system first published in the United States by Melvil Dewey in 1876. Originally described in a four-page pamphlet, it has been expanded to multiple volumes and revised through 23 major editions, the latest printed in 2011. It is also available in an abridged version suitable for smaller libraries. OCLC, a non-profit cooperative that serves libraries, currently maintains the system and licenses online access to WebDewey, a continuously updated version for catalogers. The Decimal Classification introduced the concepts of \"\"relative location\"\" and \"\"relative"} +{"qid": "test3338", "pid": "17204386", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Natale Battezzati\"\nproponent, fell from use. In each of the first fourteen editions of the Dewey Decimal System, Melvil Dewey included a short acknowledgment of Battezzati and his card system: \"\"Perhaps the most fruitful source of ideas was the Nuovo sistema di Catalogo Bibliografico Generale of Natale Battezzati, of Milan. Certainly he [Dewey] is indebted to this system adopted by the Italian publishers in 1871, though he has copied nothing from it.\"\" It is not obvious, however, how and where Dewey encountered Battezzati's system. Battezzati himself states that: \"\"... the systems was studied and admired by Mr. Melvil Dewey of Boston, secretary"} +{"qid": "test3338", "pid": "109959", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Dewey Decimal Classification\"\nwas reached between the committee overseeing the development of the Decimal Classification and the developers of the French \"\"Classification Decimal\"\". The English version was published as the Universal Decimal Classification and is still in use today. According to a study done in 1927, the Dewey system was used in the US in approximately 96% of responding public libraries and 89% of the college libraries. After the death of Melvil Dewey in 1931, administration of the classification was under the Decimal Classification Committee of the Lake Placid Club Education Foundation, and the editorial body was the Decimal Classification Editorial Policy Committee"} +{"qid": "test3338", "pid": "17521690", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Byrd Spilman Dewey\"\nInstitute (Sayre School) where she studied literature, music, art, and language skills. In 1877 she moved with her family to Salem, Illinois, to her father's next pastorate. It was there that she met Frederick Sidney Dewey; they were married on September 25, 1877. Fred was a distant cousin of Admiral George Dewey, and also of Melvil Dewey, the inventor of the Dewey Decimal System. Because of Fred S. Dewey's respiratory ailments, contracted during his service in the American Civil War, the Deweys moved to Florida in 1881. They arrived in Jacksonville where they looked at properties in the St. Augustine"} +{"qid": "test3338", "pid": "858685", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Melvil Dewey\"\nMelvil Dewey Melville Louis Kossuth \"\"Melvil\"\" Dewey (December 10, 1851 – December 26, 1931) was an American librarian and educator, inventor of the Dewey Decimal system of library classification, and a founder of the Lake Placid Club. Dewey was born in Adams Center, New York, the fifth and last child of Joel and Eliza Greene Dewey. He attended rural schools and determined early that his destiny was to reform education of the masses. He briefly attended Alfred University (1870), then Amherst College, where he belonged to Delta Kappa Epsilon, and from which he earned a bachelor's degree in 1874 and"} +{"qid": "test3338", "pid": "4509107", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Paul Otlet\"\nholding the master copy. At various times between 1900 and 1914, attempts were made to send full copies of the RBU to cities such as Paris, Washington, D.C. and Rio de Janeiro; however, difficulties in copying and transportation meant that no city received more than a few hundred thousand cards. In 1904, Otlet and La Fontaine began to publish their classification scheme, which they termed the Universal Decimal Classification. The UDC was originally based on Melvil Dewey's Decimal classification system. Otlet and La Fontaine contacted Melvil Dewey to inquire if they could modify the Dewey Decimal System to suit the"} +{"qid": "test3338", "pid": "109963", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Dewey Decimal Classification\"\nBeginning in 1922, the Lake Placid Club Educational Foundation, a not-for-profit organization founded by Melvil Dewey, managed administrative affairs. The ALA set up a Special Advisory Committee on the Decimal Classification as part of the Cataloging and Classification division of ALA in 1952. The previous Decimal Classification Committee was changed to the Decimal Classification Editorial Policy Committee, with participation of the ALA Division of Cataloging and Classification, and of the Library of Congress. Melvil Dewey edited the first three editions of the classification system and oversaw the revisions of all editions until his death in 1931. May Seymour became editor"} +{"qid": "test3338", "pid": "109957", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Dewey Decimal Classification\"\nClassification numbers on nearly all of its cards, thus making the system immediately available to all libraries making use of the Library of Congress card sets. Dewey's was not the only library classification available, although it was the most complete. Charles Ammi Cutter published the Expansive Classification in 1882, with initial encouragement from Melvil Dewey. Cutter's system was not adopted by many libraries, with one major exception: it was used as the basis for the Library of Congress Classification system. In 1895, the International Institute of Bibliography, located in Belgium and led by Paul Otlet, contacted Dewey about the possibility"} +{"qid": "test3338", "pid": "858692", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Melvil Dewey\"\nInstitute which was an organization conceived to provide for the investigation, study and discussion of issues within the field of library theory and practice. Immediately after receiving his undergraduate degree he was hired to manage Amherst's library and reclassify its collections. Dewey worked out a new scheme that superimposed a system of decimal numbers on a structure of knowledge first outlined by Sir Francis Bacon. For his decision to use a decimal system he may have been inspired by two library systems that he includes in the acknowledgements in the first publication of his system in 1876. In that preface,"} +{"qid": "test3338", "pid": "12862303", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Dewey Readmore Books\"\ncat, who was suffering from frostbite, back to health and named him Dewey, after Melvil Dewey, inventor of the Dewey Decimal library classification system. The library decided to keep him as a library cat and his story first received publicity in the \"\"Spencer Daily Reporter\"\" a week after his discovery. A contest to name the cat received nearly 400 entries, the majority of which supported retaining the name \"\"Dewey\"\". The librarians added \"\"Readmore Books\"\" to his full name, inspired partially by the cartoon library cat Cap'n O. G. Readmore, although he was usually referred to as just \"\"Dewey\"\". Aside from"} +{"qid": "test3338", "pid": "17715192", "query": "where did the dewey decimal system come from", "answer": "Melvil Dewey", "passage": "\"Josephus Nelson Larned\"\nclassification systems, he met Melvil Dewey and learned about his new Dewey Decimal System. Larned's library was the first outside Dewey's Amherst College to adopt the system, which is now universal in public libraries in the US. Adopting the new system and presenting his experiences introduced him to other professionals and the new American Library Association, which he would later serve as president of for the 1893-1894 term. Larned impressed his new colleagues and Dewey would later say he was one of the country's best librarians. His interest in cataloging continued. He later developed a system for classifying newspaper clippings"} +{"qid": "test3339", "pid": "6885611", "query": "what was the first light beer in the us", "answer": "Miller Lite", "passage": "\"Light beer\"\nis not primarily intended to produce a less intoxicating beverage. This is the primary definition in the United States, where the spelling Lite beer is also encountered, and where popular light beers include Bud Light, Miller Lite, and Coors Light. Light beer Light beer (invented in 1967 by American biochemist Joseph Owades) is a beer (usually a Pilsner) that is reduced in alcohol content or in calories compared to regular beers. Light beers may be chosen by beer drinkers who wish to manage their alcohol consumption or their calorie intake; however, they are sometimes criticised for being less flavourful than"} +{"qid": "test3339", "pid": "3984797", "query": "what was the first light beer in the us", "answer": "Miller Lite", "passage": "\"Miller Lite\"\nMiller Lite Miller Lite, also known simply as Lite, is a 4.2% ABV American light pale lager sold by MillerCoors of Milwaukee, Wisconsin, United States. Miller Lite competes with Anheuser-Busch's Bud Light beer. The company also produces Miller Genuine Draft and Miller High Life. It is also the Official Beer Sponsor of the Dallas Cowboys and Bellator MMA. Miller Lite was the first successful mainstream light beer in the United States market. After its first inception as \"\"Gablinger's Diet Beer\"\", developed in 1967 by Joseph L. Owades, PhD, a biochemist working for New York's Rheingold Brewery, the recipe was given"} +{"qid": "test334", "pid": "17485795", "query": "who played in the first fifty shades of grey", "answer": "Jamie Dornan", "passage": "\"Fifty Shades of Grey (film)\"\nFifty Shades of Grey (film) Fifty Shades of Grey is a 2015 American erotic romantic drama film directed by Sam Taylor-Johnson, with a screenplay by Kelly Marcel. The film is based on E. L. James’ 2011 novel of the same name and stars Dakota Johnson as Anastasia Steele, a college graduate who begins a sadomasochistic relationship with young business magnate Christian Grey, played by Jamie Dornan. The film premiered at the 65th Berlin International Film Festival on February 11, 2015 and was released on February 13, 2015, by Universal Pictures and Focus Features. Despite receiving generally negative reviews, it was"} +{"qid": "test334", "pid": "17485846", "query": "who played in the first fifty shades of grey", "answer": "Jamie Dornan", "passage": "\"Fifty Shades of Grey (film)\"\nto lampoon.\"\" Fifty Shades of Grey (film) Fifty Shades of Grey is a 2015 American erotic romantic drama film directed by Sam Taylor-Johnson, with a screenplay by Kelly Marcel. The film is based on E. L. James’ 2011 novel of the same name and stars Dakota Johnson as Anastasia Steele, a college graduate who begins a sadomasochistic relationship with young business magnate Christian Grey, played by Jamie Dornan. The film premiered at the 65th Berlin International Film Festival on February 11, 2015 and was released on February 13, 2015, by Universal Pictures and Focus Features. Despite receiving generally negative reviews,"} +{"qid": "test334", "pid": "18580006", "query": "who played in the first fifty shades of grey", "answer": "Jamie Dornan", "passage": "\"Fifty Shades Freed (film)\"\nFifty Shades Freed (film) Fifty Shades Freed is a 2018 American erotic romantic drama film directed by James Foley and written by Niall Leonard, and based on E. L. James's 2012 novel of the same name. It is the third and final installment in the \"\"Fifty Shades\"\" film series, following \"\"Fifty Shades of Grey\"\" (2015) and \"\"Fifty Shades Darker\"\" (2017). The film stars Dakota Johnson and Jamie Dornan as Anastasia Steele and Christian Grey, respectively, and follows the couple as they marry, and must deal with Ana's former boss (Eric Johnson), who begins to stalk them. Principal photography on \"\"Fifty"} +{"qid": "test334", "pid": "19323009", "query": "who played in the first fifty shades of grey", "answer": "Jamie Dornan", "passage": "\"Fifty Shades (film series)\"\nFifty Shades (film series) Fifty Shades is an American film series that consists of three erotic romantic drama films, based on the \"\"Fifty Shades\"\" trilogy by English author E. L. James. It is distributed by Universal Studios and stars Dakota Johnson and Jamie Dornan as the lead roles Anastasia Steele and Christian Grey, respectively. Sam Taylor-Johnson directed the first film and initially she was slated to be the director of the sequels as well, however subsequently the second and third films were directed by James Foley. The first film, \"\"Fifty Shades of Grey\"\", was released on February 13, 2015, while"} +{"qid": "test334", "pid": "18587244", "query": "who played in the first fifty shades of grey", "answer": "Marcia Gay Harden", "passage": "\"Fifty Shades Darker (film)\"\nFifty Shades Darker (film) Fifty Shades Darker is a 2017 American erotic romantic drama film directed by James Foley and written by Niall Leonard, based on E. L. James's 2012 novel of the same name. The second film in the \"\"Fifty Shades\"\" film series and the sequel to the 2015 film \"\"Fifty Shades of Grey\"\", it stars Dakota Johnson and Jamie Dornan as Anastasia Steele and Christian Grey, respectively, with Eric Johnson, Eloise Mumford, Bella Heathcote, Rita Ora, Luke Grimes, Victor Rasuk, Kim Basinger, and Marcia Gay Harden in supporting roles. Principal photography on \"\"Fifty Shades Darker\"\" and its sequel"} +{"qid": "test334", "pid": "19323020", "query": "who played in the first fifty shades of grey", "answer": "Jamie Dornan", "passage": "\"Fifty Shades (film series)\"\nfilms) and \"\"Alien\"\" ($1.328 billion not counting the PG-13 \"\"Alien vs. Predator\"\"). Fifty Shades (film series) Fifty Shades is an American film series that consists of three erotic romantic drama films, based on the \"\"Fifty Shades\"\" trilogy by English author E. L. James. It is distributed by Universal Studios and stars Dakota Johnson and Jamie Dornan as the lead roles Anastasia Steele and Christian Grey, respectively. Sam Taylor-Johnson directed the first film and initially she was slated to be the director of the sequels as well, however subsequently the second and third films were directed by James Foley. The first"} +{"qid": "test3340", "pid": "20355360", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"You Make It Feel Like Christmas (song)\"\nRobert Ross. In the chorus, Stefani and Shelton sing: \"\"Sleigh bells singing 'Hallelujah' / Stars are shining on us too / I want to thank you, baby / You make it feel like Christmas\"\". Ryan Reed of \"\"Rolling Stone\"\" said the Christmas song recalled \"\"the chug of The Supremes' 1966 hit 'You Can't Hurry Love'\"\" while the staff at \"\"Entertainment Weekly\"\" called the song infectious. Mike Nied from Idolator suggested that Stefani and Shelton's track \"\"may have something that will live up to Mariah Carey’s defining classic 'All I Want For Christmas Is You'\"\". \"\"Stereogum\"\"s Tom Breihan called the track"} +{"qid": "test3340", "pid": "20504862", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"All I Want for Christmas Is You (film)\"\ntake care of Jack, then she can have a dog of her very own. A soundtrack for this album was released alongside the release of the movie, featuring old christmas classics by Carey as well as a brand new song called \"\"Lil Snowman\"\". All I Want for Christmas Is You (film) All I Want For Christmas Is You (also known as Mariah Carey's All I Want For Christmas Is You) is a 2017 direct-to-video computer-animated Christmas film based on the song by Mariah Carey and the book by Carey herself and Colleen Madden. The film stars the voices of Mariah"} +{"qid": "test3340", "pid": "5027085", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"All I Want for Christmas Is You\"\nAll I Want for Christmas Is You \"\"All I Want for Christmas Is You\"\" is a Christmas song performed by American singer and songwriter Mariah Carey. She wrote and produced the song alongside Walter Afanasieff. Columbia Records released it on November 1, 1994, as the lead single from her fourth studio album and first holiday album, \"\"Merry Christmas\"\" (1994). The track is an uptempo love song that includes bell chimes, heavy back-up vocals, and synthesizers. It is also considered the best-selling modern day Christmas song. Two music videos were commissioned for the song: the song's primary music video features grainy"} +{"qid": "test3340", "pid": "20504861", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"All I Want for Christmas Is You (film)\"\nAll I Want for Christmas Is You (film) All I Want For Christmas Is You (also known as Mariah Carey's All I Want For Christmas Is You) is a 2017 direct-to-video computer-animated Christmas film based on the song by Mariah Carey and the book by Carey herself and Colleen Madden. The film stars the voices of Mariah Carey, Breanna Yde, and Henry Winkler. Young Mariah (Breanna Yde) desperately wants a puppy for Christmas, but her parents are not convinced that she should have one. They agree to let Mariah dog-sit the puppy Jack (Dee Bradley Baker) and if she can"} +{"qid": "test3340", "pid": "5027109", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"All I Want for Christmas Is You\"\nchart on the \"\"Billboard\"\" Hot 100 (peaking at No. 83 in January 2000). The song topped the \"\"Billboard\"\" Hot Digital Songs chart in December 2005, but it was unable to attain a new peak on the \"\"Billboard\"\" Hot 100 chart because it was considered a recurrent single and was thus ineligible for chart re-entry. All I Want for Christmas Is You \"\"All I Want for Christmas Is You\"\" is a Christmas song performed by American singer and songwriter Mariah Carey. She wrote and produced the song alongside Walter Afanasieff. Columbia Records released it on November 1, 1994, as the"} +{"qid": "test3340", "pid": "18573748", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"Everyday Is Christmas (song)\"\non the \"\"Private Corner\"\" album that Cheung sings in English. Nokia’s music download service website (Ovi.com) announced that \"\"Everyday is Christmas\"\" was the tenth most downloaded Christmas song in the world in 2010, joining classic hits such as Wham’s \"\"Last Christmas\"\" and Mariah Carey’s \"\"All I Want for Christmas is You\"\". Jacky is the only Chinese language singer to make it into the Top Ten. Jacky Cheung performed \"\"Everyday Is Christmas\"\" at his \"\"Private Corner\"\" mini-concert at the Hong Kong Jockey Club on April 30. The show was taped, with the \"\"Private Corner\"\" Mini-Concert DVD releasing July 23, 2010. Earth,"} +{"qid": "test3340", "pid": "20376895", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"Finally It's Christmas\"\nFinally It's Christmas Finally It's Christmas is the second Christmas album by American pop rock group Hanson. The band wrote and produced the album with Mark Hudson, who also collaborated on the band's first Christmas release, \"\"Snowed In\"\" (1997). Several of the band's children also make appearances in some songs. The album was released on October 27, 2017. Taylor Hanson on why it took so long to do another Christmas album: The album features a mix of classic Christmas covers from Elvis Presley's \"\"Blue Christmas\"\" to Mariah Carey's \"\"All I Want for Christmas Is You\"\" (renamed \"\"All I Want for"} +{"qid": "test3340", "pid": "5228402", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"Merry Christmas (Mariah Carey album)\"\nwell as reentering many times throughout the years. In the US, \"\"All I Want for Christmas Is You\"\" is one of the few songs in recent years to be considered a classic and is the only holiday song and ringtone to reach multi-Platinum status in the US. \"\"Merry Christmas\"\" has sold 15 million copies worldwide, and is the best-selling Christmas album of all time. On March 21, 2017, Carey announced via her Twitter account that a film based on \"\"All I Want for Christmas Is You\"\" is being developed. A musical film based on \"\"Merry Christmas\"\", the plot revolves around"} +{"qid": "test3340", "pid": "7785018", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"The Chipmunk Song (Christmas Don't Be Late)\"\nSoundScan estimated total sales of two versions of the digital track by The Chipmunks at 867,000 downloads, placing it third on the list of all-time best-selling Christmas/holiday digital singles in SoundScan history (behind Mariah Carey's 1994 hit single \"\"All I Want for Christmas Is You\"\" and Trans-Siberian Orchestra's 1996 track \"\"Christmas Eve/Sarajevo 12/24\"\"). The song has been adapted in \"\"The Alvin Show\"\" as one of its musical segments. The short depicts Alvin looking through various presents to find a hula hoop, even as he reluctantly sings along with the other Chipmunks. At the end of the song, Seville rewards Simon"} +{"qid": "test3340", "pid": "5027107", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"All I Want for Christmas Is You\"\nbe surprised to see Mariah Carey's sublime All I Want For Christmas Is You bounding up the charts after being named the nation's top festive song.\"\" In his review for Carey's \"\"Merry Christmas II You\"\", Thomas Connor from the \"\"Chicago Sun-Times\"\" called the song \"\"a simple, well-crafted chestnut and one of the last great additions to the Christmas pop canon\"\". In a 2006 retrospective look at Carey's career, Sasha Frere-Jones of \"\"The New Yorker\"\" said, the \"\"charming\"\" song was one of Carey's biggest accomplishments, calling it \"\"one of the few worthy modern additions to the holiday canon\"\". Dan Hancox, editor"} +{"qid": "test3340", "pid": "16847578", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"My Only Wish (song)\"\nthe same meaning: not change much between all the phrase 'All I want for Christmas is you baby \"\"and\"\" My only wish for Christmas is you'. In summary, it appears that much of Jessica suffers a lack of inspiration ... MTV said, we know that Mariah Carey has returned to the yuletide jam with her Merry Christmas II You. And now we get some Christmas spirit from Jessica Simpson, with the jaunty, playful \"\"My Only Wish.\"\" Not unlike Mariah Carey's \"\"All I Want for Christmas Is You\"\", Simpson's track covers up some heartache with a buoyant and peppy track, complete"} +{"qid": "test3340", "pid": "260800", "query": "who sings the christmas song all i want for christmas is you", "answer": "Mariah Carey", "passage": "\"Mariah Carey\"\nDirty Bastard, of the Wu-Tang Clan, for the 1995 hit \"\"Fantasy (Remix)\"\", it was a surprise, and a smash.\"\" Aside from her pop culture and musical influence, Carey is credited for releasing a classic Christmas song called \"\"All I Want for Christmas Is You.\"\" In a retrospective look at Carey's career, Sasha Frere-Jones of \"\"The New Yorker\"\" said, the \"\"charming\"\" song was one of Carey's biggest accomplishments, calling it \"\"one of the few worthy modern additions to the holiday canon.\"\" \"\"Rolling Stone\"\" ranked \"\"All I Want for Christmas Is You\"\" fourth on its Greatest Rock and Roll Christmas Songs list,"} +{"qid": "test3341", "pid": "20570100", "query": "who had a baby at 100 in the bible", "answer": "Sarah", "passage": "\"The Bible and humor\"\nhumor in the Bible. Macy, Walker, M. D. Shutter, and other scholars contend Genesis has several stories that offer humor through absurdity, trickery, surprises and reversals. Macy says that in speaking of humor in the Bible he usually begins with asking how it might feel to personally get the message Abraham and Sarah received, putting them into the absurd situation of a ninety year old having a baby. He argues that the Biblical author shows that the situation is replete with humor: \"\"Abraham laughs, Sarah laughs, everybody else laughs, and they name the baby 'laughter' or He-laughs [Isaac Yitzack].\"\" Humor"} +{"qid": "test3342", "pid": "10600701", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1967 Stanley Cup Finals\"\n1967 Stanley Cup Finals The 1967 Stanley Cup Finals was a best-of-seven series played between the Montreal Canadiens and the Toronto Maple Leafs. The Maple Leafs ended up winning the series, four games to two. In doing this, they won their thirteenth Stanley Cup. To date, this is Toronto's most recent Stanley Cup championship, most recent appearance in the championship final, and is tied for the longest-active championship drought in the NHL with the St. Louis Blues (who have never won since joining the NHL in 1967) at 50 (not including 2004–05 lockout) seasons. The 1967 Stanley Cup Final was"} +{"qid": "test3342", "pid": "10600705", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1967 Stanley Cup Finals\"\npart of all 4 cups, but were not included on the cup each season.) 1967 Stanley Cup Finals The 1967 Stanley Cup Finals was a best-of-seven series played between the Montreal Canadiens and the Toronto Maple Leafs. The Maple Leafs ended up winning the series, four games to two. In doing this, they won their thirteenth Stanley Cup. To date, this is Toronto's most recent Stanley Cup championship, most recent appearance in the championship final, and is tied for the longest-active championship drought in the NHL with the St. Louis Blues (who have never won since joining the NHL in"} +{"qid": "test3342", "pid": "10419158", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1988–89 Calgary Flames season\"\n1988–89 Calgary Flames season The 1988–89 Calgary Flames season was the ninth season for the Calgary Flames and 17th for the Flames franchise in the National Hockey League (NHL). They won their second consecutive Presidents' Trophy as the NHL's top regular season club and went on to win the first Stanley Cup championship in franchise history, defeating the Montreal Canadiens in the 1989 Stanley Cup Final. Al MacInnis won the Conn Smythe Trophy as the most valuable player of the playoffs. The regular season saw the debut of Theoren Fleury, who went on to become the Flames' all-time leading scorer,"} +{"qid": "test3342", "pid": "11963692", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"History of the Montreal Canadiens\"\nfinal, with the Flames emerging victorious in six games. It was the only time a visiting team defeated the Canadiens to win the Cup on Forum ice. The Stanley Cup celebrated its 100th anniversary in 1993, returning again to Canada with the Canadiens' 24th Stanley Cup victory, the most recent NHL championship won by a Canadian team. After losing the first game of their Adams Division semi-final to the Quebec Nordiques in overtime, the Canadiens won ten overtime games en route to the title, setting an NHL record for most consecutive overtime victories in a playoff year. As with the"} +{"qid": "test3342", "pid": "11963691", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"History of the Montreal Canadiens\"\nto their 23rd Stanley Cup championship in over the Calgary Flames in the first all-Canadian Stanley Cup final since . The 1986 Canadiens were young and led by rookie head coach Jean Perron and forward Claude Lemieux, in addition to Roy, who became the youngest player in NHL history to win the Conn Smythe Trophy. Brian Skrudland, another rookie, scored the game-winning goal just nine seconds into overtime of the second game of the finals — the fastest overtime goal in NHL history. The two teams met again in the 1989 Stanley Cup Finals, the most recent all-Canadian Stanley Cup"} +{"qid": "test3342", "pid": "5026534", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"Claude Provost\"\nClaude Provost Claude Joseph Antoine Provost (September 17, 1933 – April 17, 1984) was a Canadian professional ice hockey right winger. Provost played his entire NHL career with the Montreal Canadiens. He won the Stanley Cup 9 times and the first ever Bill Masterton Trophy awarded for perseverance in 1968. He suffered a fatal heart attack while playing tennis at his home in Florida in 1984. Provost won the most Stanley Cups of anyone who is not a member of Hockey Hall of Fame. Every other player and executive who has won at least 8 Stanley Cups has been named"} +{"qid": "test3342", "pid": "12831595", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1993 Stanley Cup playoffs\"\n1993 Stanley Cup playoffs The 1993 Stanley Cup playoffs the championship of the National Hockey League (NHL) began after the conclusion of the 1992–93 NHL season on April 18 and ended with the Montreal Canadiens defeating the Los Angeles Kings four games to one to win the Stanley Cup on June 9. These playoffs featured an NHL record 28 overtime games, of which the Canadiens set a playoff record for most overtime games won in one year with ten. The Canadiens also won 11 consecutive games during the playoffs, tying an NHL record. The Presidents' Trophy-winning Pittsburgh Penguins, who had"} +{"qid": "test3342", "pid": "11076876", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1992–93 Montreal Canadiens season\"\nfor the fifth game. The Canadiens had few problems with a tired Kings team in the fifth game, winning 4–1, and earning their 24th Stanley Cup in team history. Patrick Roy was named the winner of the Conn Smythe Trophy. It was their most recent Stanley Cup championship as of 2018, and the last time a Canadian team won the Cup. Roy would win two more Stanley Cups with the Colorado Avalanche in 1996 and 2001. Montreal's draft picks at the 1992 NHL Entry Draft 1992–93 Montreal Canadiens season The 1992–93 Montreal Canadiens season was the Montreal Canadiens' 76th season"} +{"qid": "test3342", "pid": "11026677", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1945 Stanley Cup Finals\"\n1945 Stanley Cup Finals The 1945 Stanley Cup Finals was a best-of-seven series between the Detroit Red Wings and the Toronto Maple Leafs. The Maple Leafs won the series by four games to three--although not before they blew a 3-0 lead to the Red Wings, who nearly served them a taste of their own medicine. Toronto beat the defending champion Montreal Canadiens in six games to advance to the Final. Detroit defeated the Boston Bruins in seven games to reach the Final. This was the first Cup Final in NHL history where both teams started rookie goaltenders. Harry Lumley, who"} +{"qid": "test3342", "pid": "4969690", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"1993 Stanley Cup Finals\"\ngame winner. Gretzky did not manage a shot on net during the entire game. With the win, the Canadiens won the series four games to one and clinched their 24th Stanley Cup championship. Montreal goaltender Patrick Roy won the Conn Smythe Trophy as the most valuable player of the Stanley Cup Playoffs for the second time (he won it for the first time in ). The 1993 Montreal Stanley Cup riot occurred in Montreal after the Montreal Canadiens won their 24th Stanley Cup. People poured into the streets of the city and some began to commit acts of vandalism and"} +{"qid": "test3342", "pid": "531761", "query": "who won the most stanley cups in history", "answer": "Montreal Canadiens", "passage": "\"Montreal Canadiens\"\nin an 80-game season. The next season, 1977–78, the team had a 28-game unbeaten streak, the second-longest in NHL history. The next generation of stars included Guy Lafleur, Yvan Cournoyer, Ken Dryden, Pete Mahovlich, Jacques Lemaire, Pierre Larouche, Steve Shutt, Bob Gainey, Serge Savard, Guy Lapointe and Larry Robinson. Scotty Bowman, who would later set a record for most NHL victories by a coach, was the team's head coach for its last five Stanley Cup victories in the 1970s. The Canadiens won Stanley Cups in 1986, led by rookie star goaltender Patrick Roy, and in 1993, continuing their streak of"} +{"qid": "test3343", "pid": "7233624", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"Norway at the 2002 Winter Olympics\"\nteams advanced to semi-finals. Semi-final Gold medal game Contestants Top four teams advanced to semi-finals. Contestants Men's sprint Events: Men's individual Events: Men's Team Four participants per team. Events: Norway at the 2002 Winter Olympics Norway competed at the 2002 Winter Olympics in Salt Lake City, United States. The nation enjoyed its best ever results in gold medals, most notably in the biathlon events, when Ole Einar Bjørndalen swept all four gold medals. With 13 gold medals, Norway tied the Soviet Union at the 1976 Winter Olympics for most gold medals a country won at a Winter Olympics. However, Canada"} +{"qid": "test3343", "pid": "8346579", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"Great Britain at the 1920 Summer Olympics\"\nmedals in the women's singles; Holman took silver and McKane won the bronze. Great Britain competed in the Olympic tug of war tournament for the third time in 1920, the final appearance of the sport in the Olympics. Along with Sweden and the United States, Great Britain's three appearances in the five Olympic tug of war tournaments were the most of any nation. The Bergvall System was used in 1920. Great Britain won all three of its matches, taking the gold medal to become the only country to win two Olympic golds in the tug of war. All matches were"} +{"qid": "test3343", "pid": "3633243", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"1948 Summer Olympics medal table\"\nfrom Arab countries should an Israeli team fly their flag at the opening ceremony, the International Olympic Committee (IOC) excluded Israel from the Games on a technicality. The most successful nation was the United States, winning the most gold (38), silver (27) and bronze (19) medals. Great Britain, the host nation, although winning only three gold medals, and twenty-three medals overall, was seen as successful. Several countries participated for the first time, including Burma, Ceylon, Lebanon, Puerto Rico and Syria. The Olympic medals themselves were the standard \"\"Trionfo\"\" design used for the Olympic medals between 1928 and 1968. It was"} +{"qid": "test3343", "pid": "3705132", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"2016 Summer Olympics\"\nin the Guanabara Bay; and a doping scandal involving Russia, which affected the participation of its athletes in the Games; nobody competing in or attending the Olympics contracted the Zika virus. The United States topped the medal table for the fifth time in the past six Summer Olympics, winning the most golds (46) and most medals overall (121), as well as its 1,000th Olympic gold medal overall. Great Britain finished second and became the first country of modern Olympics history to increase its tally of medals in the subsequent games after being the host nation. China finished third. Host country"} +{"qid": "test3343", "pid": "7233623", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"Norway at the 2002 Winter Olympics\"\nNorway at the 2002 Winter Olympics Norway competed at the 2002 Winter Olympics in Salt Lake City, United States. The nation enjoyed its best ever results in gold medals, most notably in the biathlon events, when Ole Einar Bjørndalen swept all four gold medals. With 13 gold medals, Norway tied the Soviet Union at the 1976 Winter Olympics for most gold medals a country won at a Winter Olympics. However, Canada broke this record with 14 when they hosted the Vancouver games. Men's combined Sprint Pursuit 4 × 10 km relay Sprint Pursuit 4 × 5 km relay Top four"} +{"qid": "test3343", "pid": "3591690", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"2004 Summer Olympics medal table\"\n2004 Summer Olympics medal table The 2004 Summer Olympics medal table is a list of National Olympic Committees ranked by the number of medals won during the 2004 Summer Olympics, held in Athens, Greece, from 13 to 29 August 2004. A total of 10,625 athletes from 201 countries participated in these games, competing in 301 events in 28 sports. Kiribati and Timor Leste competed for the first time in these Olympic Games. Athletes from 74 countries won at least one medal, leaving 127 countries without a medal. The United States won the most gold medals (36), the most silver medals"} +{"qid": "test3343", "pid": "6919343", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"All-time Olympic Games medal table\"\nsome of the entries in the preceding sections differently. For the 1900 Summer Olympics several countries are credited with appearances that are not considered official by the IOC. Only one of these cases concerns a medal. A gold medal that is officially added to France's total is given to Luxembourg. Similar cases of disputed nationality affect the 1904 Summer Olympics. France is credited with a silver medal and Norway with two gold medals. In the table above these medals are listed under the United States. Furthermore, Newfoundland is occasionally listed as a separate country at the 1904 Olympics, and would"} +{"qid": "test3343", "pid": "15480492", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"Canada–United States sports rivalries\"\nhas had the most golds for a host country and is currently dominating in men's ice hockey. In summer sports, the United States' closest rival at the Summer Olympics is now China. All time, the United States is the number one ranked country in gold, silver, bronze, and total medals won. In the run-up to the 1998 Winter Olympics, \"\"Los Angeles Times\"\" columnist Mike Penner named Canada the United States' most important rival, especially in hockey. and \"\"USA Today\"\" ran the headline \"\"Cold War now means Canada\"\", with Canadian columnist Terry Jones reporting that the Canadian Olympic team approved of"} +{"qid": "test3343", "pid": "12403066", "query": "country with most olympic gold medals all time", "answer": "United States", "passage": "\"Shawn Johnson East\"\nSummer Olympics, Johnson competed in all four events during the team competition, in which the United States won the silver medal. Johnson also won the silver medal in the individual all-around competition, receiving a score of 62.725. Johnson's teammate and roommate at the Olympic Village, Nastia Liukin, won the gold medal, receiving a score of 63.325. With Liukin taking gold and Johnson silver, this competition was the first time that the United States Women's Gymnastics team took both the gold and silver medals in the individual all-around competition; this competition also marks the fourth time a country won both gold"} +{"qid": "test3344", "pid": "11459558", "query": "when did the song things that make you go hmmm come out", "answer": "June 1991", "passage": "\"Things That Make You Go Hmmm...\"\nThings That Make You Go Hmmm... \"\"Things That Make You Go Hmmm...\"\" is a song by American dance group C+C Music Factory. It was released in June 1991 as the third single from the album \"\"Gonna Make You Sweat\"\". The single features Freedom Williams and he is also seen in the song's music video. The song was inspired by a running gag on \"\"The Arsenio Hall Show\"\", where Arsenio, while allegedly on a long drive, pondered certain thoughts and referred to them as \"\"things that make you go hmmm...\"\" The C+C song was a success in the US, reaching number"} +{"qid": "test3344", "pid": "11459563", "query": "when did the song things that make you go hmmm come out", "answer": "June 1991", "passage": "\"Things That Make You Go Hmmm...\"\nunder the title \"\"Things That Make You Go Mmm\"\". The single reached number three in the UK and number four in Scotland. Things That Make You Go Hmmm... \"\"Things That Make You Go Hmmm...\"\" is a song by American dance group C+C Music Factory. It was released in June 1991 as the third single from the album \"\"Gonna Make You Sweat\"\". The single features Freedom Williams and he is also seen in the song's music video. The song was inspired by a running gag on \"\"The Arsenio Hall Show\"\", where Arsenio, while allegedly on a long drive, pondered certain thoughts"} +{"qid": "test3346", "pid": "13220445", "query": "when was the last time clemson won the national championship", "answer": "2016", "passage": "\"2005 NCAA conference realignment\"\nwon twice, partly due to the concurrent rise of the Southeastern Conference as the NCAA's pre-eminent football power conference (an SEC member school won every national championship in D-I FBS football each season from 2006 to 2012). The ACC's two football national championship since 2005 have been Florida State's 2013 championship over Auburn and Clemson's 2016 championship over Alabama. The ACC's last national championship prior to the realignment was in 1999, when Florida State beat future ACC member (and then Big East member) Virginia Tech in the 2000 Sugar Bowl. The Big East's last national championship came in 2001, when"} +{"qid": "test3346", "pid": "13284908", "query": "when was the last time clemson won the national championship", "answer": "2016", "passage": "\"Clemson Tigers men's soccer\"\nand winning their 14th ACC championship in 2014. In 2015, the Tigers advanced to the finals of the NCAA College Cup for the first time since 1987, falling in the national championship match to Stanford. In 2016, the Tigers finished runners up in the ACC Tournament and advanced to the Quarterfinals of the NCAA Tournament. Updated October 16, 2018 Source: Clemson Tigers men's soccer The Clemson Tigers men's soccer team represent Clemson University in the Atlantic Coast Conference of NCAA Division I soccer. The team has won 14 Atlantic Coast Conference championships, 2 NCAA national championships, and hosted 2 Hermann"} +{"qid": "test3346", "pid": "8606199", "query": "when was the last time clemson won the national championship", "answer": "2016", "passage": "\"Clemson Tigers\"\nThe Tiger wrestling program produced 8 overall wrestlers with All-American status, two NCAA Champions, and a finish at the NCAA Championships as high as 7th in 1994. Sammie Henson is a former standout at Clemson, as one of the most accomplished tiger wrestlers with a 1993 and 1994 NCAA Champion titles who eventually earned a 2000 Olympic silver medal and became a 1998 world champion in freestyle wrestling. Clemson University has three NCAA team national championships. Additionally, Clemson has won two football national championships, in 1981 and 2016. The title were awarded by polling agencies in 1981 and the College"} +{"qid": "test3346", "pid": "9451363", "query": "when was the last time clemson won the national championship", "answer": "2016", "passage": "\"Clemson Tigers football\"\nhis career. Clemson won the ACC championship and secured its second trip to the CFP National Championship with a 31–0 shutout of semi-finalist #3 Ohio State in the 2016 Fiesta Bowl. The Tigers competed in the College Football Playoff National Championship game in Tampa, Florida on January 9, 2017, beating the previously undefeated Alabama Crimson Tide 35–31 on a game-winning touchdown with one second remaining, and winning the 2016 National Championship. The Clemson-South Carolina rivalry which dates back to 1896 is the largest annual sporting event in terms of ticket sales in the state of South Carolina. From 1896 to"} +{"qid": "test3346", "pid": "9451299", "query": "when was the last time clemson won the national championship", "answer": "2016", "passage": "\"Clemson Tigers football\"\nschool. The Tigers' most recent ACC championships came back-to-back-to-back-to-back in 2015, 2016, 2017, and 2018 the latter with a 12–0 regular season and a 42-10 win over the Pittsburg Panthers. Among its seven undefeated regular seasons, Clemson was crowned poll-era National Champions and finished with its third perfect season with a win over Nebraska in the 48th Orange Bowl, and was the National Championship Finalist Runner-up with a 14–1 record in 2015. The next year Clemson won the National Title over #1 Alabama in college football's first National Championship rematch in 2016. The Tigers have 41 bowl appearances, 18 of"} +{"qid": "test3346", "pid": "13627548", "query": "when was the last time clemson won the national championship", "answer": "2016", "passage": "\"Clemson–Georgia Tech football rivalry\"\nSeptember 2009 and repeated the feat when they faced off again in the 2009 ACC Championship Game three months later. The rivals have seen large and similar amounts of high-level success, as Georgia Tech claims four national championships (1917, 1928, 1954, 1990) and Clemson two (1981 and 2016). Moreover, Georgia Tech has played in 44 bowl games (25–19) and Clemson, 42 (22–20), while Clemson and Georgia Tech have 729 and 728 all-time wins, respectively, as of the conclusion of the 2017 season. These two ACC members also coincidentally have more of a science, technology, engineering, and mathematics focus than their"} +{"qid": "test3347", "pid": "14705038", "query": "how many seasons of the glades were made", "answer": "four", "passage": "\"The Glades (TV series)\"\nplaying only a peripheral role in the stories. On September 13, 2010, A&E announced that the show had been renewed for a second season. Season two of the series premiered on Sunday, June 5, 2011. On October 18, 2011, \"\"The Glades\"\" was renewed for a third season, which premiered June 3, 2012. With a 5% increase in viewership, A&E renewed \"\"The Glades\"\" for a fourth season. On September 1, 2013, \"\"The Huffington Post\"\" reported that the A&E Network did not renew \"\"The Glades\"\" for its fifth season. Show creator Clifton Campbell later told Rob Owen that the fifth season would"} +{"qid": "test3347", "pid": "14705041", "query": "how many seasons of the glades were made", "answer": "four", "passage": "\"The Glades (TV series)\"\na gag reel. \"\"The Glades: Season Three\"\" was released on DVD in region 1 on June 4, 2013. \"\"The Glades: Season Four\"\" was released on DVD in region 1 on June 3, 2014. In Australia, the series premiered on SoHo (formerly W) on December 5, 2010, with season 2 returning on December 4, 2011, season 3 on August 20, 2012, and season 4 on May 30, 2013. In the U.K., the series premiered on Alibi on September 11, 2012, with season 2 returning on January 22, 2013, and season 3 on September 4, 2013. The fourth season, its last, premiered"} +{"qid": "test3347", "pid": "20693658", "query": "how many seasons of the glades were made", "answer": "four", "passage": "\"Percy Glading\"\nopened in front of them: it contained four blueprints for a pressure-bar apparatus. Glading and his companions were charged under Section 1, sub-section C of the 1911 Official Secrets Act. A search of Glading's home revealed cameras, exposures of blueprints, and on a spool of film, a copy of a 1925 military textbook on explosives. Also found was a diary. This—\"\"cryptic, though decipherable\"\"—revealed that, perhaps as Williams had feared, Glading was \"\"less than thorough\"\" in his tradecraft. One diary entry the secret service was unable to crack made a reference to Melita Sirnis, a fellow NKVD agent who later revealed"} +{"qid": "test3347", "pid": "14705039", "query": "how many seasons of the glades were made", "answer": "four", "passage": "\"The Glades (TV series)\"\nhave focused on the question \"\"Who shot Jim Longworth?\"\", adding that Longworth would have survived. However, Campbell said, \"\"The cancellation took us all by surprise.\"\" A total of 49 episodes of \"\"The Glades\"\" was aired over four seasons. \"\"The Glades\"\" debuted with 3.6 million viewers, breaking A&E's records for most-watched and highest-rated original drama series telecast ever according to Nielsen Fast Nationals numbers. The show has been met with positive reviews, with an initial score of 64 out of 100 from Metacritic. \"\"The Glades: Season One\"\" was released on DVD in region 1 on June 14, 2011, and region 4"} +{"qid": "test3348", "pid": "656212", "query": "when was the problem of cfc's discovered", "answer": "1974", "passage": "Chlorofluorocarbon\nhazardous to the environment. The experiment did however provide the first useful data on the presence of CFCs in the atmosphere. The damage caused by CFCs was discovered by Sherry Rowland and Mario Molina who, after hearing a lecture on the subject of Lovelock's work, embarked on research resulting in the first publication suggesting the connection in 1974. It turns out that one of CFCs' most attractive features—their low reactivity— is key to their most destructive effects. CFCs' lack of reactivity gives them a lifespan that can exceed 100 years, giving them time to diffuse into the upper stratosphere. Once"} +{"qid": "test3348", "pid": "268086", "query": "when was the problem of cfc's discovered", "answer": "1973", "passage": "\"Montreal Protocol\"\n1973, the chemists Frank Sherwood Rowland and Mario Molina, who were then at the University of California, Irvine, began studying the impacts of CFCs in the Earth's atmosphere. They discovered that CFC molecules were stable enough to remain in the atmosphere until they got up into the middle of the stratosphere where they would finally (after an average of 50–100 years for two common CFCs) be broken down by ultraviolet radiation releasing a chlorine atom. Rowland and Molina then proposed that these chlorine atoms might be expected to cause the breakdown of large amounts of ozone (O) in the stratosphere."} +{"qid": "test3348", "pid": "12368999", "query": "when was the problem of cfc's discovered", "answer": "1970s", "passage": "Antarctica\nEarth. Antarctic ice serves as both the shield and the detection medium for the largest neutrino telescope in the world, built below Amundsen–Scott station. Since the 1970s an important focus of study has been the ozone layer in the atmosphere above Antarctica. In 1985, three British scientists working on data they had gathered at Halley Station on the Brunt Ice Shelf discovered the existence of a hole in this layer. It was eventually determined that the destruction of the ozone was caused by chlorofluorocarbons (CFCs) emitted by human products. With the ban of CFCs in the Montreal Protocol of 1989,"} +{"qid": "test3348", "pid": "218434", "query": "when was the problem of cfc's discovered", "answer": "1974", "passage": "\"James Lovelock\"\nozone layer by the photolysis of CFCs was later discovered by Sherwood Rowland and Mario Molina. After hearing a lecture on the subject of Lovelock's results, Sherwood and Molina embarked on research that resulted in the first published paper that suggested a link between stratospheric CFCs and ozone depletion in 1974 (for which they later shared the 1995 Nobel Prize in Chemistry with Paul Crutzen). First formulated by Lovelock during the 1960s as a result of work for NASA concerned with detecting life on Mars, the Gaia hypothesis proposes that living and non-living parts of the Earth form a complex"} +{"qid": "test3348", "pid": "546043", "query": "when was the problem of cfc's discovered", "answer": "1974", "passage": "\"Ozone depletion\"\naircraft were operated. This, Fahey expressed, would not be a showstopper for advanced supersonic passenger aircraft development. In 1974 Frank Sherwood Rowland, Chemistry Professor at the University of California at Irvine, and his postdoctoral associate Mario J. Molina suggested that long-lived organic halogen compounds, such as CFCs, might behave in a similar fashion as Crutzen had proposed for nitrous oxide. James Lovelock had recently discovered, during a cruise in the South Atlantic in 1971, that almost all of the CFC compounds manufactured since their invention in 1930 were still present in the atmosphere. Molina and Rowland concluded that, like ,"} +{"qid": "test3348", "pid": "11886285", "query": "when was the problem of cfc's discovered", "answer": "1974", "passage": "\"Environmental policy of the United States\"\nfrom the sun. Chlorofluorocarbons (CFCs), which were used beginning in the 1930s in a number of important areas, were determined in 1974 to be responsible for much of the depletion of the ozone layer. Four years later, the EPA and FDA banned CFCs in aerosol cans. As research in the 1980s indicated that the problem was worse than before, and revealed a controversial massive hole in the ozone layer over Antarctica, three international agreements were made to reduce the ozone-damaging substances- the Vienna Convention, the 1987 Montreal Protocol, and a third agreement in 1990 in London. In the United States,"} +{"qid": "test3348", "pid": "15151130", "query": "when was the problem of cfc's discovered", "answer": "1970s", "passage": "\"Technological and industrial history of 20th-century Canada\"\nthe Keele Valley Landfill was operated by the City of Toronto from 1983 until 2002, when it was closed because it was full. Chlorofluorocarbons (CFCs), the gas propellants used in aerosol spray cans, became a target for environmental concern in the 1970s and 1980s when research demonstrated that they had a harmful effect on the ozone layer in the atmosphere. The international Montreal Protocol of 1989 banned the use of these substances and they were subsequently replaced with volatile hydrocarbons. The problem with choice to reuse is still not available. There are many products that don't need to be recycled"} +{"qid": "test3349", "pid": "3195048", "query": "who has sold more albums kelly or carrie", "answer": "Carrie", "passage": "\"Idol (franchise)\"\nClay Aiken (second place, season 2) and Chris Daughtry (fourth place, season 5, through his band Daughtry), who have each outsold all \"\"American Idol\"\" winners except Kelly Clarkson and Carrie Underwood; Jennifer Hudson (seventh place, season 3), who would later win the Academy Award for Best Supporting Actress; and William Hung, who turned his off-key season 3 audition into a recording career and has outsold some finalists. Often, a studio compilation album and/or a CD single is made to promote the show. In some cases, DVDs of highlights of the show will be released. While these releases have sold well"} +{"qid": "test335", "pid": "19754675", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Burn the Witch (Gotham)\"\nup some loose threads from last season, and laying the groundwork for intriguing new plot and character arcs for season 3\"\". Matt Fowler of IGN gave the episode a \"\"good\"\" 7.0 out of 10 and wrote in his verdict, \"\"When I talk about enjoying Gordon's time away from the GCPD, I'm half-joking. I'm just going with the flow here, and the flow is that Gordon is, at best, an irresponsible mess. In 'Burn the Witch,' he made one of the most boneheaded calls on the show so far when he triggered the angry mob so that he could save himself"} +{"qid": "test335", "pid": "2822347", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Catherine Bell (actress)\"\ndomestic violence at the hands of her teenage son during the show's first season. Bell was the Grand Marshal of the NASCAR Cup Series race at Dover International Speedway on June 3, 2007. Bell played the role of Cassandra \"\"Cassie\"\" Nightingale, the main character of Hallmark's \"\"The Good Witch\"\" (2008), and its sequels \"\"The Good Witch's Garden\"\" (2009), \"\"The Good Witch's Gift\"\" (2010), \"\"The Good Witch's Family\"\" (2011), \"\"The Good Witch's Charm\"\" (2012), \"\"The Good Witch's Destiny\"\" (2013), and \"\"The Good Witch's Wonder\"\" (2014). She was also a co-executive producer of all of the movies. She also starred in another"} +{"qid": "test335", "pid": "11463545", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"The Good Witch\"\ntime period, propelling the channel to the #4 spot in weekly ranking. The \"\"Good Witch\"\" (Region 1) DVD was released on January 5, 2010. \"\"The Good Witch Collection\"\" (Region 1) DVD was released October 14, 2014. In addition to the original TV movie the Hallmark Channel has aired ten sequels. In February 2014, the Hallmark Channel announced that \"\"Good Witch\"\" had been green-lighted for a ten-episode series, starring Catherine Bell, to premiere on February 28, 2015. Production for the first season began on October 29, 2014, in Toronto, with Sue Tenney as showrunner. Bailee Madison and James Denton also star."} +{"qid": "test335", "pid": "5409647", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Book of Shadows (Charmed)\"\nThe book has grown over the years with each witch who has possessed it, and by the late 1960s, it had about 100 pages. It continued to grow as The Charmed Ones added more information to it. Penny Halliwell brags in the season five episode, \"\"Happily Ever After\"\", that she created most of the good potion recipes in it. Patty Halliwell added text on Barbas, the Demon of Fear. For many years, the \"\"Book\"\" was kept in the Manor's attic. Normally, all witches are supposed to keep their \"\"Book of Shadows\"\" in a specially protected altar room. However, the \"\"Book\"\""} +{"qid": "test335", "pid": "9951912", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Star Wars: The Clone Wars (2008 TV series)\"\nnature of the Force. On December 5, 2011, a full-length feature cut of one of the Season 3 trilogies of episodes (the one composed by \"\"Nightsisters,\"\" \"\"Monster,\"\" and \"\"Witches of the Mist\"\") was released for download on iTunes as an uninterrupted movie that was previously shown at selected screenings in 2010. The three episodes were written by Katie Lucas, who had previously written the Season 1 episode \"\"Jedi Crash\"\" as well as the Season 3 episodes \"\"Sphere of Influence\"\" and \"\"Assassin.\"\" A repeat of season one aired in \"\"decoded\"\" episode format. Each installment contained unobtrusive text windows giving supplemental information"} +{"qid": "test335", "pid": "15598641", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"The Vampire Diaries (season 3)\"\ndaughter has become a monster, but later accepts her. Alice Evans joined the cast as the original witch Esther, Klaus' mother. She was first seen in a flashback in episode eight. Daniel Gillies will also return first appearing in a flashback during episode eight as Klaus' brother, Elijah. Persia White has been cast as Bonnie's mother, Abby Bennett. On November 10, 2011, it was announced that Paul Wesley's wife Torrey DeVitto was cast as Meredith Fell (based off Meredith Sulez from the source novel), a young doctor who is fascinated by Alaric, when she notices how quickly he recovers from"} +{"qid": "test335", "pid": "17925283", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Witch Hunt (Once Upon a Time)\"\nthe spring premiere the previous week. The increase in viewers made a change to the typically decreasing figures earlier from each episode in the season. The episode was met with mostly positive reviews, with many critics complimenting the improvement and progression in the story lines. Amy Ratcliffe of \"\"IGN\"\" gave the episode a 9.2 out of 10, saying \"\"Overall, the episode almost had too many \"\"what?!\"\" moments, but it worked. While I hope to see more of why the Wicked Witch is taking out her anger on Regina, we've seen enough to know she's interesting and that their battle has"} +{"qid": "test335", "pid": "19372976", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Salem (season 3)\"\nSalem (season 3) The third season of \"\"Salem\"\", an American horror–drama television series on WGN America, premiered on November 2, 2016, and concluded on January 25, 2017, consisting of ten episodes. Created for television by Adam Simon and Brannon Braga, who write or co-write episodes of the show, the series is based on the Salem Witch Trials. It was executive produced by Braga, Coby Greenberg and David Von Ancken, with Braga and Simon assuming the role of showrunner. On January 25, 2017, Salem was canceled after three seasons. On July 11, 2015, WGN America renewed \"\"Salem\"\" for a 10-episode third"} +{"qid": "test335", "pid": "11459642", "query": "how many episodes in season 3 of good witch", "answer": "10", "passage": "\"Matthew Knight\"\nof films, albeit with a less sinister theme, when he was cast as Brandon Russell, a young man whose family is charmed by a mysterious woman, in the popular \"\"Good Witch\"\" series: \"\"The Good Witch\"\" (2008), \"\"The Good Witch's Garden\"\" (2009), \"\"The Good Witch's Gift\"\" (2010) and \"\"The Good Witch's Family\"\" (2011). He also starred in the television movie and series \"\"My Babysitter's a Vampire\"\" as Ethan Morgan, a high school student who discovers his babysitter just also happens to be a vampire. He has starred in the episodes, \"\"Alien Candy\"\" and \"\"Checking Out\"\" of the TV series, \"\"R.L. Stine's"} +{"qid": "test3350", "pid": "3579707", "query": "who won the ncaa basketball championship in 1994", "answer": "Arkansas", "passage": "\"Nolan Richardson\"\nNolan Richardson Nolan Richardson Jr. (born December 27, 1941) is a former American basketball head coach best known for his tenure at the University of Arkansas, where he won the 1994 NCAA Men's Division I Basketball Tournament. Elected to the National Collegiate Basketball Hall of Fame in 2008 and the Naismith Memorial Basketball Hall of Fame in 2014, Richardson coached teams to winning a Division I Basketball National Championship, an NIT championship, and a Junior College National Championship, making him the only coach to win all three championships. During his 22 seasons of coaching in NCAA Division I, Richardson made"} +{"qid": "test3350", "pid": "10061614", "query": "who won the ncaa basketball championship in 1994", "answer": "Arkansas", "passage": "\"Arkansas Razorbacks men's basketball\"\nArkansas Razorbacks men's basketball The Arkansas Razorbacks basketball team represents the University of Arkansas in Fayetteville, Arkansas, United States in NCAA Division I men's basketball competition. The school's team currently competes in the Southeastern Conference. The team last played in the NCAA Division I Men's Basketball Tournament in 2018. They lost in the first round to Butler University. The basketball team plays its home games in Bud Walton Arena on the University of Arkansas campus. Under the coaching leadership of Nolan Richardson, the Hogs won the national championship in 1994, defeating Duke, and appeared in the championship game the following"} +{"qid": "test3350", "pid": "19177303", "query": "who won the ncaa basketball championship in 1994", "answer": "Arkansas", "passage": "\"1995 NCAA Division I Men's Basketball Championship Game\"\n1995 NCAA Division I Men's Basketball Championship Game The 1995 NCAA Division I Men's Basketball Championship Game was the finals of the 1995 NCAA Men's Division I Basketball Tournament and it determined the national champion for the 1994-95 NCAA Division I men's basketball season The 1995 National Title Game was played on April 3, 1995 at the Kingdome in Seattle, Washington. The 1995 National Title Game was played between the 1995 West Regional Champions, #1-seeded UCLA and the 1995 Midwest Regional Champions, #2-seeded Arkansas. This was the last national championship game that was played in a western state until the"} +{"qid": "test3350", "pid": "20649506", "query": "who won the ncaa basketball championship in 1994", "answer": "Arkansas", "passage": "\"1993–94 NCAA Division I men's basketball season\"\n1993–94 NCAA Division I men's basketball season The 1993–94 NCAA Division I men's basketball season concluded in the 64-team 1994 NCAA Men's Division I Basketball Tournament whose finals were held at the Charlotte Coliseum in Charlotte, North Carolina. The Arkansas Razorbacks earned their first national championship by defeating the Duke Blue Devils 76–72 on April 4, 1994. They were coached by Nolan Richardson and the NCAA Basketball Tournament Most Outstanding Player was Arkansas' Corliss Williamson. In the 32-team 1994 National Invitation Tournament, the Villanova Wildcats defeated the Vanderbilt Commodores at Madison Square Garden in New York City. Following the season,"} +{"qid": "test3350", "pid": "20643749", "query": "who won the ncaa basketball championship in 1994", "answer": "Arkansas", "passage": "\"1994–95 NCAA Division I men's basketball season\"\n1994–95 NCAA Division I men's basketball season The 1994–95 NCAA Division I men's basketball season concluded in the 64-team 1995 NCAA Men's Division I Basketball Tournament whose finals were held at the Kingdome in Seattle, Washington. The UCLA Bruins earned their eleventh national championship by defeating the Arkansas Razorbacks 89–78 on April 3, 1995. They were coached by Jim Harrick and the NCAA Basketball Tournament Most Outstanding Player was UCLA's Ed O'Bannon. In the 32-team 1995 National Invitation Tournament, the Virginia Tech Hokies defeated the Marquette Warriors at Madison Square Garden in New York City. Following the season, the 1995"} +{"qid": "test3351", "pid": "3448870", "query": "where does the term jack mormon come from", "answer": "Jackson County, Missouri", "passage": "\"Jack Mormon\"\nDemocrats in Jackson County, Missouri. Their belief is that the term originated in Missouri, during the Kirtland period of Latter Day Saint history, circa 1834. When Church members were expelled from Jackson County by a mob, many fled to Clay County, where local citizens, mostly Democrats, were sympathetic and friendly toward the Mormons. These citizens were pejoratively labeled \"\"Jack\"\" Mormons by the antagonistic citizens of Jackson County. During the early 1980s, it was also used as a description of members of the Fundamentalist Church of Jesus Christ of Latter Day Saints (FLDS Church) who broke from the church, in part,"} +{"qid": "test3354", "pid": "12820890", "query": "who won season 5 of hell's kitchen", "answer": "Executive Chef Danny Veltri", "passage": "\"Hell's Kitchen (U.S. season 5)\"\nHell's Kitchen (U.S. season 5) Season 5 of the American competitive reality television series \"\"Hell's Kitchen\"\" began airing on the Fox Network starting on January 29, 2009. The season concluded on May 14, 2009. Gordon Ramsay returned as head chef, as well as sous chefs Scott Leibfried and Gloria Felix and maître d' Jean-Philippe Susilovic. Executive Chef Danny Veltri won the series and was awarded a sous chef position under Stephen Kalt at Italian restaurant \"\"Fornelletto\"\" at the Borgata in Atlantic City, New Jersey. Danny also received $250,000 in prize money from the show. This season also featured a high"} +{"qid": "test3355", "pid": "18017325", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"A Curious Thing (Once Upon a Time)\"\na message and the bottle of potion to Hook by way of a dove before being reabsorbed into his father. In Emma's room at the inn, Regina, Emma, David, and Mary Margaret wait for Hook as they discuss what to do. Regina (who just finished her romantic date with Robin Hood) decides that they need to break the curse and the way they did that before was Emma. They figure out that the missing component to breaking the curse is that Henry needs to believe. It's time to find the storybook, because that is what first made Henry start believing."} +{"qid": "test3355", "pid": "18971141", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Siege Perilous (Once Upon a Time)\"\nRobin look at Zelena's sonogram when Granny hands Hook a meal, which he knew came from Emma, who wants to meet him on board the Jolly Roger for a lunch date. However, Hook is not impressed, telling Emma that she wasn't the real Emma he knew and loved. However, Emma explains she was doing this to test if he still loved with her, vanishing the moment he says that he loved who she had been. Unfortunately, at the Storybrooke Sheriff station, it turns out King Arthur is not as honest as he seems; he found out that the heroes lied"} +{"qid": "test3355", "pid": "18349719", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"The Apprentice (Once Upon a Time)\"\nreattach his hand because Hook knows that Belle has a fake dagger. Mr. Gold does so but warns Hook that he is no longer the man that hand belonged to and attaching it may have unforeseen consequences. The Charmings, David (Josh Dallas) and Mary Margaret (Ginnifer Goodwin), are shown helping Elsa at their loft by going through spell books. Emma asks their opinion wearing a dress for her date with Hook and all three are breathless. Hook arrives and presents Emma with a red rose from his newly restored hand. Emma is impressed by Hook's dating clothing. Hook tells Emma"} +{"qid": "test3355", "pid": "18322646", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Rocky Road (Once Upon a Time)\"\nattack on Hook, Emma arrives just in time to use her powers, allowing the Snow Queen to get away upon getting distracted by helping David free Hook before the large icicles could fall on him. Emma was surprised that the Snow Queen knew Emma's name, but Elsa suspects that the Snow Queen might be lying about her remembering their past experience and about her past with Emma, although Emma assures Elsa they'll find out together. Later that night, the Snow Queen is approached by Gold, who asks if Emma remembers her. As it turns out, Gold tells her that Emma"} +{"qid": "test3355", "pid": "19414780", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Firebird (Once Upon a Time)\"\nFirebird (Once Upon a Time) \"\"Firebird\"\" is the twentieth episode of the fifth season of the American fantasy drama series \"\"Once Upon a Time\"\", which aired on May 1, 2016. In this episode, Emma and Hook prove that they are truly in love, but Hook decides to stay in the Underworld; and Mr. Gold tricks Pan. In flashbacks, Emma forces a bail bonds person to help her. Emma's yellow bug drives through the red-tinted forest. The Land Without Magic events take place in 2009, eight years after \"\"Save Henry\"\" and before \"\"Pilot\"\". The last flashback scene takes place at Boston"} +{"qid": "test3355", "pid": "19414796", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Firebird (Once Upon a Time)\"\nbecause if we know anything from these five seasons of OUAT, we know that's what they do.\"\" Firebird (Once Upon a Time) \"\"Firebird\"\" is the twentieth episode of the fifth season of the American fantasy drama series \"\"Once Upon a Time\"\", which aired on May 1, 2016. In this episode, Emma and Hook prove that they are truly in love, but Hook decides to stay in the Underworld; and Mr. Gold tricks Pan. In flashbacks, Emma forces a bail bonds person to help her. Emma's yellow bug drives through the red-tinted forest. The Land Without Magic events take place in"} +{"qid": "test3355", "pid": "17883943", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"New York City Serenade (Once Upon a Time)\"\nepisode. Furthermore, the episode achieved its highest weekly viewership rank for the series since the second episode of the second season in October 2012. New York City's skyline appears in the background. Emma Swan, in her new life with Henry in New York City, goes on a date with her new boyfriend Walsh (Christopher Gorham) when she is interrupted by Hook who is imploring her to remember herself and that her family needs to be saved. Emma angrily rebuffs him despite using her gift to prove he isn't lying. Hook passes her a note stating that it's an address where"} +{"qid": "test3355", "pid": "18349718", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"The Apprentice (Once Upon a Time)\"\nto get rid of Elsa's powers, and Anna says she has no idea what to tell Elsa. Mr. Gold is shown in his shop opening the box and producing the sorcerer's hat. Emma Swan (Jennifer Morrison) arrives at Granny's diner and asks Captain Hook (Colin O'Donoghue) out on a date. Hook makes Emma promise to let him plan the date. She leaves and on the way to her car she notices a puddle underneath it that was not there when she entered. Mr. Gold arrives at his shop to find Hook sitting on a counter. Hook asks Mr. Gold to"} +{"qid": "test3355", "pid": "19078571", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Hook (Once Upon a Time)\"\nEmma of her powers. Using a resurrected Rumplestiltskin in her thrall, Zelena orchestrates a series of events which lead to Hook's inadvertently doing just that. Regina possesses enough light magic to stop Zelena for a time. However, after she is nearly killed by Gold, she opens a time portal, which Hook and Emma fall through. While in the Enchanted Forest, Hook and Emma inadvertently interrupt the meeting of Emma's parents: Snow White and Prince \"\"James\"\" David. With the help of Rumplestiltskin, Hook and Emma fix their mistake, but inadvertently rescue Marian, who was to die. To fix this mistake, Hook"} +{"qid": "test3355", "pid": "19950544", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Awake (Once Upon a Time)\"\nAwake (Once Upon a Time) \"\"Awake\"\" is the seventeenth episode of the sixth season of the American fantasy drama series \"\"Once Upon a Time\"\", which aired on April 16, 2017. In this episode, Regina attempts to reverse the sleeping curse that Snow and David are under, while Hook encounters Tiger Lily as he finds a way to reach Emma and escape Neverland, and The Black Fairy comes face to face with Gold. In Storybrooke's past, a key element altered a timeline involving Snow and David during the first curse. The portal door that Snow and David create to find Emma,"} +{"qid": "test3355", "pid": "19078594", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Hook (Once Upon a Time)\"\nat the docks and after conferring with him about forgiveness, decides to burn his memories with a dreamcatcher. Emma catches him and is angry over him keeping secrets, ending their engagement until he can learn to change. He decides to go on an adventure with Nemo, in order to once again become the man that Emma needs, however after a talk with Snow on the docks who reminds him even the Evil Queen can get a happy ending, changes his mind and wants to go back to Emma. However, Gideon forcefully banishes him and keeps Emma's tears as a barrier"} +{"qid": "test3355", "pid": "17883944", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"New York City Serenade (Once Upon a Time)\"\nshe will find her answers. After Hook leaves Walsh proposes to Emma who says she needs time to think. Emma hands Henry a permission slip for a field trip the next morning and finds the note that Hook gave her which is the address for Neal's apartment in the city. She goes to the apartment and finds nothing of interest until she finds a camera with the name \"\"HENRY\"\" on it. Emma meets with Hook in Central Park who again tries to convince her by producing a memory potion. Again Emma doesn't believe him and handcuffs Hook to a bike"} +{"qid": "test3355", "pid": "16886504", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Tallahassee (Once Upon a Time)\"\nTallahassee (Once Upon a Time) \"\"Tallahassee\"\" is the sixth episode of the second season of the American ABC fantasy/drama television series \"\"Once Upon a Time\"\", and the show's 28th episode overall, which aired on November 4, 2012. It was co-written by Christine Boylan and Jane Espenson, while being directed by David M. Barrett. In this episode, Emma Swan and Captain Hook climb a beanstalk to find a compass, while flashbacks show how she met Henry's father. When Emma and Neal are robbing the convenience store, there is a display of key chains next to Neal while he is talking to"} +{"qid": "test3355", "pid": "19725890", "query": "who is emma dating in once upon a time", "answer": "Hook", "passage": "\"Dark Waters (Once Upon a Time)\"\nno longer sees himself as The Savior, is being convinced by Jasmine to help save Agrabah. When he leaves, she calls Emma for help. Emma later finds Aladdin trying to steal a car, then takes him to the city line to show him that like him, she has run from her duty as the Savior many times. Suddenly Aladdin opens up to Emma about what happened in Agrabah. When they return, Aladdin apologizes to Jasmine, who tells him the kingdom disappeared after he left. As Emma goes searching for Aladdin, Henry, who was at home with Hook, goes outside to"} +{"qid": "test3356", "pid": "9224092", "query": "star cast of ab tumhare hawale watan sathiyon", "answer": "Bobby Deol", "passage": "\"Ab Tumhare Hawale Watan Saathiyo\"\nAb Tumhare Hawale Watan Saathiyo Ab Tumhare Hawale Watan Saathiyo (English: \"\"We entrust this nation in you, O countrymen\"\") is a 2004 Indian war drama film, directed by Anil Sharma and starring Amitabh Bachchan, Akshay Kumar, Bobby Deol, Divya Khosla Kumar, Sandali Sinha and Nagma Major General Amarjeet Singh (Amitabh Bachchan) is a dedicated officer for the Indian Army. His son Lieutenant Commander Vikramjeet Singh (Bobby Deol) follows in his footsteps and joins the Navy. In 1971 during the Indo-Pak war and the formation of Bangladesh, Lt. Commander Vikramjeet Singh has a ship in his command and a regiment of"} +{"qid": "test3356", "pid": "3859897", "query": "star cast of ab tumhare hawale watan sathiyon", "answer": "Bobby Deol", "passage": "\"Bobby Deol\"\nDutta and Rahul Dev as Aditya Shrivastav, a deserted army officer. The film deals with themes of police brutality and corruption and justice. Deol then played another army officer, a Lieutenant Commander in Anil Sharma's \"\"Ab Tumhare Hawale Watan Saathiyo\"\" as Kunaljit Singh/Vikramjeet Singh. The film, which featured some prominent Bollywood actors such as Amitabh Bachchan (who played a general and Deol's father), and Akshay Kumar, it was arguably Deol's highest profile film to date but despite high box office expectations it was a commercial failure. His most famous role of all time was in \"\"Ab Tumhare Hawale Watan Saathiyo\"\","} +{"qid": "test3356", "pid": "10694860", "query": "star cast of ab tumhare hawale watan sathiyon", "answer": "Bobby Deol", "passage": "\"Anil Sharma\"\nAbraham and Bipasha Basu, and directed the war film \"\"Ab Tumhare Hawale Watan Saathiyo\"\" starring Amitabh Bachchan, Bobby Deol and Akshay Kumar, both of which bombed at the box office. In 2007, Sharma made a comeback when directed the family drama \"\"Apne\"\". This film received generally favorable reviews from critics, and was also a commercial success. The film was also noted for the success it enjoyed in the overseas market, most notably in Canada, the UK and Australia. In 2010, he directed \"\"Veer\"\", starring Salman Khan, who also wrote the script for the film followed by the action drama \"\"Singh"} +{"qid": "test3356", "pid": "17746743", "query": "star cast of ab tumhare hawale watan sathiyon", "answer": "Akshay Kumar", "passage": "\"Divya Khosla Kumar\"\nLagake\"\". Divya recently debuted as director for a college romance movie called \"\"Yaariyan\"\", that released on 10 January 2014, and then her new directorial movie \"\"Sanam Re\"\" was released on 12th Feb 2016. Divya is also one of the producers of the Ranbir Kapoor-starrer film \"\"Roy\"\". She starred in film \"\"Ab Tumhare Hawale Watan Saathiyo\"\" opposite to Akshay Kumar. She has also starred in the songs \"\"Humne Pee Rakhi Hai\"\" and \"\"Akkad Bakkad\"\", from her movie \"\"Sanam Re\"\" in 2016. Again she came in lead role in \"\"BulBul\"\", which released on 7 December 2017, the film was directed by Ashish"} +{"qid": "test3356", "pid": "17746742", "query": "star cast of ab tumhare hawale watan sathiyon", "answer": "Divya Khosla Kumar", "passage": "\"Divya Khosla Kumar\"\nHer sister-in-law is playback singer Tulsi Ralhan. Divya started her career in Bollywood as an actress with the 2004 film \"\"Ab Tumhare Hawale Watan Saathiyo\"\". (She also made her Tollywood debut in the same year with the film \"\"Love Today\"\"). Divya then did a course in cinematography and editing. After that, Divya directed music videos for Agam Nigam, Jermaine Jackson, Tulsi Kumar, and a few ad films. After directing 20 music videos, Divya did her first directorial venture \"\"Yaariyan\"\" in 2014. Divya also choreographed 5 songs in the film, including \"\"Baarish\"\", \"\"Maa\"\", \"\"Love Me Thoda Aur\"\", \"\"Allah Wariya\"\" and \"\"Zor"} +{"qid": "test3360", "pid": "2872886", "query": "when did the ncaa tournament became more important than the nit", "answer": "By the mid-1980s", "passage": "\"National Invitation Tournament\"\nwhen the NCAA eliminated the one-team-per-conference rule in 1975, its requirement that teams accept its bids relegated the NIT to a collection of teams that did not make the NCAA grade. Compounding this, to cut costs the NIT moved its early rounds out of Madison Square Garden in 1977, playing games at home sites until the later rounds. This further harmed the NIT's prestige, both regionalizing interest in it and marginalizing it by reducing its association with Madison Square Garden. By the mid-1980s, its transition to a secondary tournament for lesser teams was complete. In 2005, the NCAA purchased 10-year"} +{"qid": "test3362", "pid": "14054679", "query": "when did frank sinatra first sing new york new york", "answer": "1980", "passage": "\"Sinatra: New York\"\nGene Cherico * Drums: Irv Cottler * Trumpet: Charles Turner Sinatra: New York Sinatra: New York is a 2009 box set album of live performances by the American singer Frank Sinatra, recorded in New York City. New York, both at the Carnegie Hall, and at Madison Square Garden. The first disc captures two live performances from 1955 and 1963, disc two and three are from the Carnegie Hall and from Madison Square Garden in 1974. The final two discs are from the 1980s, with disc five a previously unreleased DVD of a June 25, 1980 performance at the Carnegie Hall."} +{"qid": "test3362", "pid": "14054677", "query": "when did frank sinatra first sing new york new york", "answer": "1980", "passage": "\"Sinatra: New York\"\nSinatra: New York Sinatra: New York is a 2009 box set album of live performances by the American singer Frank Sinatra, recorded in New York City. New York, both at the Carnegie Hall, and at Madison Square Garden. The first disc captures two live performances from 1955 and 1963, disc two and three are from the Carnegie Hall and from Madison Square Garden in 1974. The final two discs are from the 1980s, with disc five a previously unreleased DVD of a June 25, 1980 performance at the Carnegie Hall. Manhattan Center, February 3, 1955 With Tommy Dorsey Piano: Skitch"} +{"qid": "test3362", "pid": "4198106", "query": "when did frank sinatra first sing new york new york", "answer": "1980", "passage": "\"New York, New York (1977 film)\"\nthey get together for dinner. Francine is tempted, heads toward the stage door exit, but at the last moment changes her mind. Jimmy, waiting on the sidewalk, realizes he has been stood up and heads off down the street, accompanied by the song he has written—the \"\"Theme from \"\"New York, New York\"\". The theme song of the film, \"\"Theme from \"\"New York, New York\"\", found its own success when Frank Sinatra recorded a cover version of it in 1980. The song became a hit, and both Sinatra's and Minnelli's versions have become closely associated with Manhattan in New York City."} +{"qid": "test3362", "pid": "6505779", "query": "when did frank sinatra first sing new york new york", "answer": "1980", "passage": "\"Trilogy: Past Present Future\"\nTrilogy: Past Present Future Trilogy: Past Present Future (or simply Trilogy) is a 1980 album by the American singer Frank Sinatra. It was his first album in six years. This album produced the last of Sinatra's many signature numbers, \"\"Theme from \"\"New York, New York\"\".\"\" Each of the album's three records was conceived as an individual work portraying a different time epoch, and each was arranged by one of Sinatra's major collaborators: Billy May (The Past), Don Costa (The Present), and Gordon Jenkins (The Future). For \"\"The Past,\"\" Sinatra made a record of standards (\"\"The Song Is You,\"\" \"\"It Had"} +{"qid": "test3362", "pid": "4655897", "query": "when did frank sinatra first sing new york new york", "answer": "1980", "passage": "\"Theme from New York, New York\"\nhelluva town / The Bronx is up and the Battery's down...\"\" Composers Kander and Ebb stated on the A&E \"\"Biography\"\" episode about Liza Minnelli, that they attribute the song's success to actor Robert De Niro, who rejected their original theme for the film because he thought it was \"\"too weak\"\". The song did not become a popular hit until it was picked up in concert by Frank Sinatra during his performances at Radio City Music Hall in October 1978. (It was not even nominated for the Academy Award for 'Best Song'). Subsequently, Sinatra recorded it in 1979 for his 1980"} +{"qid": "test3363", "pid": "14943954", "query": "who is the first wife on sister wives", "answer": "Meri", "passage": "\"Sister Wives\"\nafter the marriage anniversary/ spiritual celebration. The first episode talks about Kody and Janelles upcoming wedding anniversary, Kody’s Birthday and the Sister Wives Closet meeting with investors. The second episodes delves a little bit deeper into the Sister Wives closet VS. potential investors idea- tank is heavily focused on the “shark tank” like business the Brown’s are trying to pitch to investors. In the previous episode Meri dropped the bombshell to Robyn that she was going back to college. Robyn states that she was annoyed and felt betrayed because Meri was the only wife who was 100% devoted to the"} +{"qid": "test3363", "pid": "14943942", "query": "who is the first wife on sister wives", "answer": "Meri", "passage": "\"Sister Wives\"\napartments. It also chronicled Kody's dating and engagement to Robyn Sullivan, who herself has three children, marking the first time in 16 years Kody had courted another wife. The new relationship creates insecurity and jealousy among the other three wives, but they ultimately accept her and welcome her into the family. During the fourth episode of the season, Christine gives birth to her sixth child, , which brings the family to 16 children including Robyn's three kids. Later, Kody and Meri go to Mexico to celebrate their twentieth wedding anniversary, where Meri discussed her sadness about her infertility problems and"} +{"qid": "test3364", "pid": "13927610", "query": "list of local government area in benue state", "answer": "Ohimini", "passage": "Ohimini\nfor investors in Benue State. Ohimini Ohimini is a Local Government Area of Benue State, Nigeria. Its headquarters are in the town of Idekpa-Okpiko.Ohimini was created out of the present Otukpo Local Government Area of Benue State.Major districts under Ohimini local Government are,Onyagede which share boundary with Kogi state has the following villages, Amoke, Enumona, Ogodu, Awume, Ikpoke, Ogoli, Ogande, Ugofu, Ipolabakpa, Umonomi and Iyaya, Okpiko, Agadagba, Oglewu and Idekpa the capital. It has an area of 632 km² and a population of 71,482 at the 2006 census. Ohimini Local Government Area of Benue State, Nigeria, was created in December"} +{"qid": "test3364", "pid": "13927604", "query": "list of local government area in benue state", "answer": "Ohimini", "passage": "Ohimini\nOhimini Ohimini is a Local Government Area of Benue State, Nigeria. Its headquarters are in the town of Idekpa-Okpiko.Ohimini was created out of the present Otukpo Local Government Area of Benue State.Major districts under Ohimini local Government are,Onyagede which share boundary with Kogi state has the following villages, Amoke, Enumona, Ogodu, Awume, Ikpoke, Ogoli, Ogande, Ugofu, Ipolabakpa, Umonomi and Iyaya, Okpiko, Agadagba, Oglewu and Idekpa the capital. It has an area of 632 km² and a population of 71,482 at the 2006 census. Ohimini Local Government Area of Benue State, Nigeria, was created in December 1996 by the military regime"} +{"qid": "test3364", "pid": "15535462", "query": "list of local government area in benue state", "answer": "Gwer East", "passage": "Igede\nonline community of Igede people. The Oju Local Government Area was created in 1976 and shares boundaries with present-day Obi, Ado, Konshisha and Gwer East Local Government Areas of Benue State, Ebonyi and Izzi Local Government Areas of Ebonyi State, and Yala Local Government Area of Cross River State. It is headquartered in Oju Town. The Obi local government area was created in 1996 and has its headquarters at Obarike-Ito. The local government area derives its name from the Obi stream that flows in the area and shares boundary with Ado, Otukpo and Oju local government areas of Benue State."} +{"qid": "test3364", "pid": "19202060", "query": "list of local government area in benue state", "answer": "Gwer West", "passage": "\"Naka Benue Nigeria\"\nthese include; Bunaka, Agagbe, Nagi, Aondoana, Kula, Jimba, Anguhar, Atukpu and Ajigba. Ikyande is another popular market in Gwer West Local Government Area. Naka Benue is a name one of prominent founders of the town and grand son of Asha (Onmbaasha) Ahsa-Tor Naka Benue Nigeria Naka Benue Nigeria is the headquarters of Gwer West Local Government Area of Benue State, Nigeria. It has been known as the highest producer of Honey and Rice in the state. It has an area of 1,094 km² and a population of 122,145 at the 2006 census. it has fifteen council wards and kindreds, The"} +{"qid": "test3364", "pid": "13922760", "query": "list of local government area in benue state", "answer": "Apa", "passage": "\"Ado, Benue\"\nAdo, Benue Ado is a local government area of Benue State, Nigeria and was created in 1991. It is one of the 9 local government areas in the southern senatorial zone which is mainly occupied primarily by the Idoma people of Benue State. The administrative headquarters are at Igumale, situated on the railway line transversing the north-south of Nigeria. The area contains mineral and natural resources in commercial quantities such as limestone, kaolin, petroleum and coal. It is a culturally rich and diverse area comprising the Agila/Apa, Ulayi, Ijigbam, Utonkon and Igumale, Ekile communities. It was one of the first"} +{"qid": "test3364", "pid": "13922762", "query": "list of local government area in benue state", "answer": "Ado", "passage": "\"Ado, Benue\"\nespecially in the Agila area. They are best known for the large arm-sized yam tubers they produce as well as the abundance of ready-to-drop ripe orange trees and sweet palm wine. Ado, Benue Ado is a local government area of Benue State, Nigeria and was created in 1991. It is one of the 9 local government areas in the southern senatorial zone which is mainly occupied primarily by the Idoma people of Benue State. The administrative headquarters are at Igumale, situated on the railway line transversing the north-south of Nigeria. The area contains mineral and natural resources in commercial quantities"} +{"qid": "test3364", "pid": "4656440", "query": "list of local government area in benue state", "answer": "Obi", "passage": "\"Benue State\"\nflax, yams, sesame, rice, and groundnuts, Palm Tree. Benue State is named after the Benue River and was formed from the former Benue-Plateau State in 1976, along with Igala and some part of Kwara State. In 1991 some areas of Benue state (mostly Igala area), along with areas in Kwara State, were carved out to become part of the new Kogi State. Igbo people are found in the boundary areas of Ebonyi State and Enugu State in local government areas like the Obi, Oju etc. Samuel Ortom is the governor and Benson Abounu is the deputy governor. Both are All"} +{"qid": "test3364", "pid": "19202059", "query": "list of local government area in benue state", "answer": "Gwer West", "passage": "\"Naka Benue Nigeria\"\nNaka Benue Nigeria Naka Benue Nigeria is the headquarters of Gwer West Local Government Area of Benue State, Nigeria. It has been known as the highest producer of Honey and Rice in the state. It has an area of 1,094 km² and a population of 122,145 at the 2006 census. it has fifteen council wards and kindreds, The first paramount ruler was (late) HRH Chief Gendaga Damna, and HRH Chief Daniel Ayua Abomtse is the current paramount ruler. The current Chairman (transition/caretaker) is Hon Hyacinth Kwegi. There are some other important settlements in the local government apart from the headquarters,"} +{"qid": "test3364", "pid": "15594408", "query": "list of local government area in benue state", "answer": "Apa", "passage": "\"Agila Town\"\nAgila Town Agila Town is the traditional home of the Agilan people from Ado local Government area, Benue State. Ado is a local government area of Benue State, Nigeria and was created in 1991. Nigeria is an independent country situated in Western Africa. The area comprises many settlements, which include Apa, Ivetse, Ikpenba, Agila, Ogbokwu, Udokwu and Odah. Apa was historically dominated by the Agilan who were not able to return to the main town after the Biafra War. Agila shares boundaries with Ebonyi State in the East, Enugu State in the West and Igumale, the Local Government headquarters in"} +{"qid": "test3364", "pid": "15594410", "query": "list of local government area in benue state", "answer": "Apa", "passage": "\"Agila Town\"\na culturally rich and diverse area comprising the Agila/Apa, Ulayi, Ijigbam, Utonkon, and Igumale communities. It was one of the first areas in Idoma to have contact with European missionaries, and they began their first missionary school in this area. Igumale is also the proposed location of Apa State University. Agila Town Agila Town is the traditional home of the Agilan people from Ado local Government area, Benue State. Ado is a local government area of Benue State, Nigeria and was created in 1991. Nigeria is an independent country situated in Western Africa. The area comprises many settlements, which include"} +{"qid": "test3364", "pid": "5686821", "query": "list of local government area in benue state", "answer": "Gboko", "passage": "N.K.S.T\nstrengthen the communion of the Saints, to responsibly teach believers and instill self-discipline. The church has its headquarters at Mkar-Gboko in Benue state but has spread all over Nigeria, and even beyond. The members are predominantly the Tiv speaking tribe but other tribes in Nigeria belong to this church. It was first introduced in Sai on 17 April 1911 a village in Katsina Ala local government area of Benue state, Nigeria. Although its headquarters is now at Mkar, Gboko, the local government is in Benue State. The church is the fruit of missionary work undertaken by the Dutch Reformed Church"} +{"qid": "test3364", "pid": "4656473", "query": "list of local government area in benue state", "answer": "Kwande", "passage": "\"Benue State\"\nforest with tall giant trees, the centre of which used to serve as a slave trade market, but is now the site of shrines and a periodic market. Swem is a shrine site at the foot of the Cameroon range in Kwande local government area from where the Tivs were said to have originated. There are three universities recognized by the National Universities Commission in Benue State namely; Benue State Benue State is one of the South Eastern states in Nigeria with a population of about 4,253,641 in 2006 census. It is inhabited predominantly by the Tiv, Idoma and Igede"} +{"qid": "test3364", "pid": "19930164", "query": "list of local government area in benue state", "answer": "Agatu", "passage": "\"Agatu massacres\"\nlocal government area of Benue state as suspected herdsmen unleash terror of their victims leaving 26people; including and children, dead just a day after president Muhammad Buhari promise to visit the state. Agatu massacres The Agatu attacks and massacres occurred in Agatu, Benue State, began in late February 2016 and continued for several days into March. Agatu is in the State of Benue close to Nigeria's centre, where several different ethnic groups meet. It is believed that the attack was committed in retaliation for the killing of the Fulanis' cows. Former Senate President Mark also pointed out that the Benue"} +{"qid": "test3364", "pid": "4656453", "query": "list of local government area in benue state", "answer": "Guma", "passage": "\"Benue State\"\nAya, Apa Ogede and Ombi. The flood plains which are characterised by extensive swamps and ponds are good for dry season irrigated farming. Though Benue State has high drainage density many of the streams are seasonal. Hence, there is an acute water shortage in the dry season in Local Government Areas such as Guma, Okpokwu, Ogbadibo, Gwer West (Naka, Nigeria) and Oju. The state is populated by several ethnic groups: Tiv, Idoma, Igede, Etulo, Abakpa, Jukun, Hausa, Igbo, Akweya and Nyifon. The Tiv are the dominant ethnic group, occupying 14 local government areas with the Etulo and Jukun , while"} +{"qid": "test3364", "pid": "4656442", "query": "list of local government area in benue state", "answer": "Guma", "passage": "\"Benue State\"\nThe territory was initially known as Munshi Province until 1918 when the name of its dominant geographical feature, the 'Benue River' was adopted. The State which is in the has a total population of 4,253,641 in 2006 census, with an average population density of 99 persons per km2. This makes Benue the 9th most populous state in Nigeria. However, the distribution of the population according to Local government areas shows marked duality. There are areas of low population density . such as Guma, Gwer East, Ohimini, Katsina-Ala, Apa, Logo and Agatu, each with less than seventy persons per km2, while"} +{"qid": "test3364", "pid": "4656450", "query": "list of local government area in benue state", "answer": "Gboko", "passage": "\"Benue State\"\na result, marine sediments form the dominant surface geology of much of Benue State. Benue State is blessed with abundant mineral resources. These resources are distributed in the Local Government Areas of the state. Of these mineral resources, only Limestone at Tse-Kucha near Gboko and Kaolinite at Otukpo are being commercially exploited. Other mineral deposits include Baryte, Gypsum, Feldspar, Wolframite, Kaolinite, mineral salts and Gemstone etc. Benue State is the nation's acclaimed food basket because of its rich agricultural produce which include Yam, Rice, Beans, Cassava, Sweet-potato, Maize, Soybean, Sorghum, Millet, Sesame, cocoyam etc. The state accounts for over 70%"} +{"qid": "test3364", "pid": "3991933", "query": "list of local government area in benue state", "answer": "Logo", "passage": "\"Benue River\"\nRiver, the Gongola River and the Mayo Kébbi, which connects it with the Logone River (part of the Lake Chad system) during floods. Other tributaries are Taraba River and River Katsina Ala. At the point of confluence, the Benue exceeds the Niger by volume. The mean discharge before 1960 was for the Benue and for the Niger. During the following decades, the runoff of both rivers decreased markedly due to irrigation. The Benue River flooded in October 2012, resulting in a large increase in the population of venomous snakes in the Duguri District, Alkaleri Local Government Area, Bauchi State. A"} +{"qid": "test3364", "pid": "4656445", "query": "list of local government area in benue state", "answer": "Apa", "passage": "\"Benue State\"\nAdoka, Aliade, Okpoga, lgumale, Oju, Utonkon, Ugbokolo, Wannune, Ugbokpo, Otukpa, Ugba and Korinya. Most of these towns are headquarters of recently created Local Government Areas and/or district headquarters or major market areas. Some of the headquarters of the newly created LGAs have populations of less than 10,000 people. Such places include Tse-Agberaba, Gbajimba, Buruku, Idekpa, Obagaji and Obarikeito. Apart from earth roads, schools, periodic markets and chemists(local drug stores), the rural areas are largely used for farming, relying on the urban centres for most of their urban needs. Benue State has no problem of capital city primacy. Rather, three towns"} +{"qid": "test3364", "pid": "17881883", "query": "list of local government area in benue state", "answer": "Gboko", "passage": "\"John Dyegh\"\nAlhaji Abubakar Tsav called for the interrogation of Hon John Dyegh, the then Gboko Local Government Chairman, Emmanuel Kwagba and Hon Terhemba Chabo of the Benue State House of Assembly over allegation of the destruction of some property belonging to a widow in Ikyumbur, Mbatiav, Gboko Local Government Area of Benue State. In a petition written by Adam Terkula Raphael, son of the widow, Eunice Adam, alleged that Hon John Dyegh and others aided the destruction of his mother’s property which included houses, farm produce, a motorcycle and economic trees valued at ten million naira (N10,000,000). Raphael in his petition"} +{"qid": "test3364", "pid": "20232443", "query": "list of local government area in benue state", "answer": "Makurdi", "passage": "\"Terhemen Tarzoor\"\nsame university. In 2006 he obtained an additional Master of Science (M.Sc) Degree in Economics with specifics in Monetary economics, completing in 2009. He went on to earn a doctorate degree from the same institution. Terhemen Tarzoor Terhemen Tarzoor (born 26 January 1972) is a Nigerian politician from Makurdi Local Government Area of Benue State in North Central Nigeria. He previously served as Speaker in the Benue State House of Assembly in which he represented his constituency. Tarzoor came to prominence when he ran unsuccessfully for the seat of the Governor of Benue State, losing to Samuel Ortom in the"} +{"qid": "test3365", "pid": "2302820", "query": "an influential religion to enter china along the silk route during the han dynasty was", "answer": "Buddhism", "passage": "\"Religion in China\"\ncapital Luoyang during Emperor Ming's reign. Buddhism entered China via the Silk Road, transmitted by the Buddhist populations who inhabited the Western Regions (modern Xinjiang), then Indo-Europeans (predominantly Tocharians and Saka). It began to grow to become a significant influence in China proper only after the fall of the Han dynasty, in the period of political division. When Buddhism had become an established religion it began to compete with Chinese indigenous religion and Taoist movements, deprecatorily designated as Ways of Demons (鬼道 \"\"Guǐdào\"\") in Buddhist polemical literature. After the fall of the Han dynasty, a period of disunity defined as"} +{"qid": "test3365", "pid": "4552048", "query": "an influential religion to enter china along the silk route during the han dynasty was", "answer": "Buddhism", "passage": "\"Silk Road transmission of Buddhism\"\nof Transoxiana, resulting in the Uyghur Khaganate by the 740s. By this time, Indian Buddhism itself was in decline, due to the resurgence of Hinduism on one hand and due to the Muslim expansion on the other, while Tang-era Chinese Buddhism was repressed in the 9th century, but not before in its turn giving rise to Korean and Japanese traditions. Buddhism was brought to China via the Silk Road. Buddhist monks travelled with merchant caravans on the Silk Road, to preach their new religion. The lucrative Chinese silk trade along this trade route began during the Han Dynasty (206 BCE"} +{"qid": "test3365", "pid": "1347585", "query": "an influential religion to enter china along the silk route during the han dynasty was", "answer": "Buddhism", "passage": "\"Han Chinese\"\nand chemistry, cuisine, martial arts, and architecture. Taoism was the state religion of the early Han Dynasty, and also often enjoyed state patronage under subsequent emperors and dynasties. Confucianism, although sometimes described as a religion, is a governing philosophy and moral code with some religious elements like ancestor worship. It is deeply ingrained in Chinese culture and was the official state philosophy in China during the Han Dynasty and unto the fall of imperial China in the 20th century. In the Han Dynasty, Confucian ideals were the dominant ideology. Near the end of the dynasty, Buddhism entered China, later gaining"} +{"qid": "test3365", "pid": "1752413", "query": "an influential religion to enter china along the silk route during the han dynasty was", "answer": "Buddhism", "passage": "\"Chinese Buddhism\"\nvery ancient times. Nonetheless, the scholarly consensus is that Buddhism first came to China in the first century CE during the Han dynasty, through missionaries from India. Generations of scholars have debated whether Buddhist missionaries first reached Han China via the maritime or overland routes of the Silk Road. The maritime route hypothesis, favored by Liang Qichao and Paul Pelliot, proposed that Buddhism was originally practiced in southern China, the Yangtze River and Huai River region, where prince Ying of Chu (present day Jiangsu) was jointly worshipping the Yellow Emperor, Laozi, and Buddha in 65 CE. The overland route hypothesis,"} +{"qid": "test3365", "pid": "1341269", "query": "an influential religion to enter china along the silk route during the han dynasty was", "answer": "Buddhism", "passage": "\"Eastern philosophy\"\ndevelopments and saw the rise of the major Chinese philosophical schools (Confucianism, Legalism, and Daoism) as well as numerous less influential schools (Mohism, School of Names, School of Yin Yang). These philosophical traditions developed metaphysical, political and ethical theories which, along with Chinese Buddhism, had a direct influence on the rest of the East Asian cultural sphere. Buddhism began arriving in China during the Han Dynasty (206 BCE–220 CE), through a gradual Silk road transmission and gradually developed distinct Chinese forms (such as Chan/Zen). Confucianism (\"\"Kǒngjiào\"\" — \"\"Confucius' doctrine\"\"), also known as \"\"Ruism\"\" (\"\"Rújiào\"\" — \"\"doctrine of the scholars\"\"), is"} +{"qid": "test3365", "pid": "4686642", "query": "an influential religion to enter china along the silk route during the han dynasty was", "answer": "Buddhism", "passage": "\"History of Central Asia\"\ntogether by the trade of the Silk Route at Turfan, which was then ruled by China's Tang Dynasty. The Uyghurs, primarily pastoral nomads, observed a number of religions including Manichaeism, Buddhism, and Nestorian Christianity. Many of the artefacts from this period were found in the 19th century in this remote desert region. It was during the Sui and Tang dynasties that China expanded into eastern Central Asia. Chinese foreign policy to the north and west now had to deal with Turkic nomads, who were becoming the most dominant ethnic group in Central Asia. To handle and avoid any threats posed"} +{"qid": "test3366", "pid": "3839621", "query": "who sang the song one of these nights", "answer": "Eagles", "passage": "\"One of These Nights\"\nand won the Eagles' first Grammy for Best Pop Performance by a Duo or Group with Vocals. \"\"One of These Nights\"\" is the last Eagles album to feature guitarist Bernie Leadon, who left the band after the \"\"One Of These Nights\"\" tour and was replaced by Joe Walsh. The seventh track, \"\"Visions\"\", is the only Eagles song on which lead guitarist Don Felder sang the lead vocals, despite his desire to write and sing more songs. The album was the band's commercial breakthrough, transforming them into international superstars. They went on a worldwide tour to promote the album. The Eagles"} +{"qid": "test3366", "pid": "9406262", "query": "who sang the song one of these nights", "answer": "Eagles", "passage": "\"Take It to the Limit (Eagles song)\"\nTake It to the Limit (Eagles song) \"\"Take It to the Limit\"\" is a song by the Eagles from their fourth album \"\"One of These Nights\"\" from which it was issued as the third single on November 15, 1975. It reached No. 4 on the U.S. \"\"Billboard\"\" Hot 100 and was also the Eagles' greatest success to that point in the UK, going to No. 12 on the charts. \"\"Billboard\"\" ranked it as the No. 25 song for 1976. The song was written by Eagles' members Randy Meisner, Don Henley and Glenn Frey. Meisner, who sang lead on it, says"} +{"qid": "test3367", "pid": "17004562", "query": "who won season 16 on dancing with the stars", "answer": "Kellie Pickler", "passage": "\"Dancing with the Stars (U.S. season 16)\"\nlearn Paso doble, Jacoby Jones did not learn Samba, Kellie Pickler did not learn Salsa, and Zendaya did not learn Rumba. Each of the four finalists also did not dance one of the two new dance styles introduced this season. Raisman and Zendaya did not dance Jazz while Pickler and Jones did not dance Contemporary (although Pickler danced a Contemporary freestyle in the finals and Raisman did an Afro-Jazz routine picked from Twitter). Pickler and her partner Derek Hough won the competition, marking his fourth of six wins and increasing his lead on the show as the professional dancer who"} +{"qid": "test3367", "pid": "13392103", "query": "who won season 16 on dancing with the stars", "answer": "Derek Hough", "passage": "\"Dancing with the Stars (U.S. season 9)\"\ndanced one of these routines for each corresponding week. Joanna Krupa performed this dance with Maksim Chmerkovskiy as Derek Hough was unable to perform due to illness. Mark Dacascos performed this dance with Anna Trebunskaya as Lacey Schwimmer was unable to perform due to illness. Dancing with the Stars (U.S. season 9) Season nine of \"\"Dancing with the Stars\"\" premiered on September 21, 2009. Executive producer Conrad Green confirmed to \"\"Entertainment Tonight\"\" that the season would start off with 16 celebrities, with 3 double-eliminations halfway through the season. Former House Majority Leader Tom DeLay withdrew from the competition in week"} +{"qid": "test3372", "pid": "7348714", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome: The Seeger Sessions\"\npromoting the ethic of local, historical musical influences and recognizing the cultural significance that folk music embodies. The record began in 1997, when Springsteen recorded \"\"We Shall Overcome\"\" for the \"\"Where Have All the Flowers Gone: the Songs of Pete Seeger\"\" tribute album, released the following year. Springsteen had not known much about Seeger given his rock and roll upbringing and orientation, and proceeded to investigate and listen to his music. While playing them in his house, his 10-year-old daughter said, \"\"Hey, that sounds like fun,\"\" which caused Springsteen to get interested in further exploring the material and genre. Via"} +{"qid": "test3372", "pid": "2109453", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome\"\nsong on its worship CD for that year: \"\"The Making of a Godly Man\"\", featuring worship leader Donn Thomas and the Maranatha! Promise Band. Bruce Springsteen's re-interpretation of the song was included on the 1998 tribute album \"\"Where Have All the Flowers Gone: The Songs of Pete Seeger\"\" as well as on Springsteen's 2006 album \"\"\"\". \"\"We Shall Overcome\"\" was adopted by various labor, nationalist, and political movements both during and after the Cold War. In his memoir about his years teaching English in Czechoslovakia after the Velvet Revolution, Mark Allen wrote: The melody was also used (crediting it to"} +{"qid": "test3372", "pid": "7348718", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome: The Seeger Sessions\"\nother in Springsteen's admittedly rich catalog.\"\" David Browne of \"\"Entertainment Weekly\"\" felt that Springsteen successfully imbues the songs with a \"\"rock & roll energy\"\" rather than an adherence to folk's blander musical aesthetic. \"\"Rolling Stone\"\" magazine's Jonathan Ringen believed that he relied on folk and Americana styles on the album in order to \"\"find a moral compass for a nation that's gone off the rails\"\", particularly on the implicitly political \"\"Oh, Mary Don't You Weep\"\", \"\"Eyes on the Prize\"\", and \"\"We Shall Overcome\"\". Gavin Martin of \"\"Uncut\"\" called it \"\"a great teeming flood of Americana\"\" and \"\"a powerful example of"} +{"qid": "test3372", "pid": "7348717", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome: The Seeger Sessions\"\nan expanded documentary and liner notes. Rather than a DualDisc release, the \"\"American Land Edition\"\" was released with separate CD and DVDs. Added sales were minimal. \"\"We Shall Overcome\"\" received widespread acclaim from music critics. At Metacritic, which assigns a normalized rating out of 100 to reviews from mainstream critics, the album received an average score of 82, based on 25 reviews. In his review for AllMusic, Stephen Thomas Erlewine praised Springsteen's modern take on Seeger's repertoire of folk songs and said that it is the liveliest album of his career: \"\"It's a rambunctious, freewheeling, positively joyous record unlike any"} +{"qid": "test3372", "pid": "7348719", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome: The Seeger Sessions\"\nhow songs reverberate through the years to accrue contemporary meaning\"\". In a less enthusiastic review, Neil Spencer of \"\"The Observer\"\" wrote that the songs chosen for the album lack intrigue and edge, and are \"\"mostly too corny to have much drama restored to them\"\". Robert Christgau panned \"\"We Shall Overcome\"\" in his consumer guide for \"\"The Village Voice\"\", wherein he gave it a \"\"B\"\", which is assigned to bad albums he reviews as the \"\"dud of the month\"\" in his column. He felt that Springsteen relies too much on a rural drawl and overblown sound when folk music requires subtlety"} +{"qid": "test3372", "pid": "13182017", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"The Sessions Band\"\nSoozie Tyrell, and recorded a number of songs on November 2, 1997. These included \"\"We Shall Overcome\"\", which was released on the 1998 tribute album, \"\"\"\". The group was then disbanded for an extended period. In late 2004, while reviewing material for a possible follow-up to his \"\"Tracks\"\" box set, Springsteen stumbled upon these recordings and decided to release them as a stand-alone project. There was not enough material, however, so he reformed the band for what would become known as the Second Seeger Session on March 19, 2005. The third and, so far, final Seeger Session took place on"} +{"qid": "test3372", "pid": "7348720", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome: The Seeger Sessions\"\nand viewed the album as the worst case of his histrionic singing. Seeger himself was pleased by the result, saying \"\"It was a great honor. [Springsteen]'s an extraordinary person, as well as an extraordinary singer.\"\" \"\"We Shall Overcome\"\" was voted the 19th best album of the year in the Pazz & Jop, an annual critics poll run by \"\"The Village Voice\"\". In 2007, it won the Grammy Award for Best Traditional Folk Album at the 49th Grammy Awards. By January 2009, the album had sold 700,000 copies in the United States. the RIAA certified it with gold record status. All"} +{"qid": "test3372", "pid": "1274154", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"Pete Seeger\"\nnever claimed that – he once said that if music could change the world he'd only be making music – but he believed that while music didn't have agency, it did have the power to make a difference.\"\" Bruce Springsteen said of Seeger's death, \"\"I lost a great friend and a great hero last night, Pete Seeger\"\", before performing \"\"We Shall Overcome\"\" while on tour in South Africa. Seeger has been the recipient of many awards and recognitions throughout his career, including: Pete Seeger Peter Seeger (May 3, 1919 – January 27, 2014) was an American folk singer and social"} +{"qid": "test3372", "pid": "19235344", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome: Sacred Song On The Devil's Tongue\"\nAfrican American union workers in the late 1940s from which \"\"prima facie\"\" and other evidence indicates \"\"We Shall Overcome\"\" was derived. The book concludes that the first and most important verse to We Shall Overcome; \"\"We Shall Overcome, We Shall Overcome, We Shall Overcome Someday, Oh Deep In My Heart, I Do Believe, We Shall Overcome Someday\"\", have never been legally owned by Pete Seeger or The Richmond Organization, Inc. and should reside in the public domain. Featuring more than 100 photographs, Gamboa's book also contextually explores African American religious culture, the historical attitudes of Black-exploitation, subjugation and racism in"} +{"qid": "test3372", "pid": "2109455", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome\"\nCarl Bildt and Immigration Minister Birgit Friggebo attended a meeting in Rinkeby. As the audience became upset, Friggebo tried to calm them down by proposing that everyone sing \"\"We Shall Overcome.\"\" This statement is widely regarded as one of the most embarrassing moments in Swedish politics. In 2008, the newspaper \"\"Svenska Dagbladet\"\" listed the Sveriges Television recording of the event as the best political clip available on YouTube. On June 7, 2010, Roger Waters of Pink Floyd fame, released a new version of the song as a protest against the Israeli blockade of Gaza. On July 22, 2012, Bruce Springsteen"} +{"qid": "test3372", "pid": "2109459", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome\"\nof African Americans in the past. The song was sung in both English and Urdu in the film, which starred Kajol and Shahrukh Khan. The copyright status of \"\"We Shall Overcome\"\" was disputed in the late-2010s. A copyright registration was made for the song in 1960, which is credited as an arrangement by Zilphia Horton, Guy Carawan, Frank Hamilton, and Pete Seeger, of a work entitled \"\"I'll Overcome\"\", with no known original author. Horton's heirs, Carawan, Hamilton, and Seeger share the artists' half of the rights, and The Richmond Organization (TRO), which includes Ludlow Music, Essex, Folkways Music, and Hollis"} +{"qid": "test3372", "pid": "17759325", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"High Hopes Tour\"\nat the U.S. rehearsals, did not tour with the band for the first two legs (Africa and Oceania) due to family commitments but rejoined the tour when it returned to the United States. The tour kicked off on January 26, 2014, with the first of three shows in Cape Town, South Africa. Springsteen opened with a cover of \"\"Free Nelson Mandela\"\" by The Special AKA. \"\"We Are Alive\"\" was also dedicated to Mandela later in the set. During the second show in Cape Town, Springsteen dedicated \"\"We Shall Overcome\"\" to Pete Seeger, who died on January 27 at the age"} +{"qid": "test3372", "pid": "2109445", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"We Shall Overcome\"", "passage": "\"We Shall Overcome\"\nfrom the interracial FTA-CIO workers and had found it to be extremely powerful. Pete Seeger, a founding member of People's Songs and its director for three years, learned it from Horton's version in 1947. Seeger writes: \"\"I changed it to 'We shall'... I think I liked a more open sound; 'We will' has alliteration to it, but 'We shall' opens the mouth wider; the 'i' in 'will' is not an easy vowel to sing well [...].\"\" Seeger also added some verses (\"\"We'll walk hand in hand\"\" and \"\"The whole wide world around\"\"). In 1950, the CIO's Department of Education and"} +{"qid": "test3372", "pid": "8133841", "query": "bruce springsteen we shall overcome the seeger sessions songs", "answer": "\"Jacob's Ladder\"", "passage": "\"Bruce Springsteen with The Seeger Sessions Band Tour\"\nplenty of violin, banjo, and trumpet solos as well as multiple false endings. Audience participation was encouraged for the later \"\"My Oklahoma Home\"\" (\"\"Blown away!\"\") and sing-songey \"\"Pay Me My Money Down\"\", while \"\"Jacob's Ladder\"\" was musically illustrated by three or four key changes. The \"\"San Francisco Chronicle\"\" wrote, \"\"[Springsteen] used every trick in the trade to make these 100-year-old songs sound bigger than life.\"\" To these album numbers Springsteen added more songs from the same cloth, such as Seeger's \"\"Bring 'Em Home\"\" (cast towards the Iraq War rather than the original Vietnam) and Blind Alfred Reed's \"\"How Can a"} +{"qid": "test3373", "pid": "17358657", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Demetrius (A Midsummer Night's Dream)\"\nDemetrius (A Midsummer Night's Dream) Demetrius is one of the iconic lovers in William Shakespeare's play \"\"A Midsummer Night's Dream\"\". He is a young Athenian who is engaged to another young Athenian, Hermia. He claims to love her, but really appears this way to gain Duke Theseus' and Egeus' support (in one interpretation). However, Hermia does not love Demetrius, but instead she loves a man called Lysander. Demetrius follows Hermia and Lysander into the woods once they have fled Athens, whilst Helena follows him. Helena craves Demetrius' love but he doesn't return her love and instead finds her annoying and"} +{"qid": "test3373", "pid": "5690761", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Lysander (A Midsummer Night's Dream)\"\nLysander (A Midsummer Night's Dream) Lysander is a fictional character in William Shakespeare's play \"\"A Midsummer Night's Dream\"\". A handsome young man of Athens, Lysander is in love with Egeus's daughter Hermia. However, Egeus does not approve of Lysander and prefers his daughter to marry a man called Demetrius. Meanwhile, Hermia's friend Helena has fallen in love with Demetrius. When Hermia is forced to choose between dying, never seeing a man again or marrying Demetrius, she and Lysander run away into the forest. After Lysander is put under Puck's spell, being mistaken for Demetrius he falls in love with Helena."} +{"qid": "test3373", "pid": "5690762", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Lysander (A Midsummer Night's Dream)\"\nEventually, the spell is reversed and Lysander marries Hermia. Lysander (A Midsummer Night's Dream) Lysander is a fictional character in William Shakespeare's play \"\"A Midsummer Night's Dream\"\". A handsome young man of Athens, Lysander is in love with Egeus's daughter Hermia. However, Egeus does not approve of Lysander and prefers his daughter to marry a man called Demetrius. Meanwhile, Hermia's friend Helena has fallen in love with Demetrius. When Hermia is forced to choose between dying, never seeing a man again or marrying Demetrius, she and Lysander run away into the forest. After Lysander is put under Puck's spell, being"} +{"qid": "test3373", "pid": "17358661", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Demetrius (A Midsummer Night's Dream)\"\nloves Helena. Demetrius watched the tale of Pyramus and Thisbe performed by the six craftsmen on Duke Theseus and the Duchess's wedding day at night, alongside Helena, Lysander and Hermia. Demetrius and the other four lovers share a wedding with Theseus and his soon-to-be wife. Demetrius (A Midsummer Night's Dream) Demetrius is one of the iconic lovers in William Shakespeare's play \"\"A Midsummer Night's Dream\"\". He is a young Athenian who is engaged to another young Athenian, Hermia. He claims to love her, but really appears this way to gain Duke Theseus' and Egeus' support (in one interpretation). However, Hermia"} +{"qid": "test3373", "pid": "18844128", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1969 film)\"\nA Midsummer Night's Dream (1969 film) \"\"Le Songe d'une nuit d'été\"\" (A Midsummer Night's Dream) is a French TV film from 1969. It is based on \"\"A Midsummer Night's Dream\"\" by William Shakespeare, and was directed by Jean-Christophe Averty. The four lovers Hermia (Christine Delaroche), Helena (Claude Jade), Lysander (Michel Ruhl), and Demetrius (Dominique Serina) have fled to a forest near Athens to escape from their parents' marriage plans. The situation is a bad one, because Helena's beloved Demetrius is in love with Hermia. Since Helena wants to win over Demetrius, she reveals the escape plan. The four wander through"} +{"qid": "test3373", "pid": "4691851", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Helena (A Midsummer Night's Dream)\"\nHelena (A Midsummer Night's Dream) Helena is a fictional character and one of the four young lovers – Demetrius, Lysander, Hermia and Helena – featured in William Shakespeare's play \"\"A Midsummer Night's Dream\"\". She is the daughter of Nedar, and a friend of Hermia (with whom she often compares herself). Prior to the play's beginning, she is betrothed to the nobleman Demetrius but is jilted when his affections turn to Hermia. Despite this, Helena's abiding love for Demetrius remains consistent throughout the play. Hermia and her suitor, Lysander, confide in Helena that they plan to elope. In the hopes that"} +{"qid": "test3373", "pid": "4691857", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Helena (A Midsummer Night's Dream)\"\nEnd's Well\"\". Helena (A Midsummer Night's Dream) Helena is a fictional character and one of the four young lovers – Demetrius, Lysander, Hermia and Helena – featured in William Shakespeare's play \"\"A Midsummer Night's Dream\"\". She is the daughter of Nedar, and a friend of Hermia (with whom she often compares herself). Prior to the play's beginning, she is betrothed to the nobleman Demetrius but is jilted when his affections turn to Hermia. Despite this, Helena's abiding love for Demetrius remains consistent throughout the play. Hermia and her suitor, Lysander, confide in Helena that they plan to elope. In the"} +{"qid": "test3373", "pid": "8785006", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1935 film)\"\nDemetrius does not love Hermia any more, Theseus overrules Egeus's demands and arranges a group wedding—Hermia to marry Lysander, and Helena to marry Demetrius. The lovers decide that the previous night's events must have been a dream. That night at the wedding, they all watch Bottom and his fellow players perform \"\"Pyramus and Thisbe\"\". Unprepared as they are, the performers are so terrible playing their roles, the guests laugh as if it were meant to be a comedy. Before the encore, the guests sneak away and retire to bed. Afterwards, Oberon, Titania, Puck, and the other fairies enter, and bless"} +{"qid": "test3373", "pid": "10231992", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1909 film)\"\nA Midsummer Night's Dream (1909 film) A Midsummer Night's Dream is a 1909 American film directed by Charles Kent and J. Stuart Blackton, and starring Walter Ackerman and Charles Chapman. It was the first film adaptation of the eponymous play by William Shakespeare. The movie was made during summer 1909, but not released until 25 December. The Duke of Athens decrees that Hermia (Rose Tapley) shall forsake Lysander (Maurice Costello) in favour of her father's choice, Demetrius (Walter Ackerman). The lovers elope into the woods, quickly followed by Demetrius and his love, Helena (Julia Swayne Gordon). The town tradesmen, meanwhile,"} +{"qid": "test3373", "pid": "8785002", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1935 film)\"\nlove with Hermia, pursues them into the forest. He is followed by Helena (Jean Muir), who is desperate to reclaim Demetrius' love. Helena continues to make advances towards Demetrius, promising to love him more than Hermia, but he rebuffs her with cruel insults. When Oberon sees this, he orders Puck to spread some of the love potion on the eyelids of Demetrius. When Puck later discovers the sleeping Lysander, he mistakes him for Demetrius—not having seen either before—and administers the love potion to the sleeping Lysander. During the night, Helena comes across the sleeping Lysander and wakes him up while"} +{"qid": "test3373", "pid": "17358659", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Demetrius (A Midsummer Night's Dream)\"\nOberon feels pity on Helena and decides to help her by putting love juice on Demetrius's eyes, thereby compelling Demetrius to return Helena's love. Oberon instructs Puck, another fairy, to pour love juice on the eyelids of the \"\"Athenian man\"\" However, Puck sees Lysander sleeping, and pours the love juice in Lysander's eyes instead, thus causing Lysander to fall in love with Helena (and abandon Hermia), while Demetrius's love for Hermia continues unaltered. Later, Puck pours the love juice in Demetrius's eyes as well, with the result of both Demetrius and Lysander falling in love with Helena and despising Hermia."} +{"qid": "test3373", "pid": "17358660", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Demetrius (A Midsummer Night's Dream)\"\nThey fight over Helena, until Puck lulls them to sleep, and then Puck reverses the spell upon Lysander so that Lysander will love Hermia again. The spell on Demetrius, however, is not removed, and the play ends with Demetrius very much in love with Helena. Thus the love plot is balanced, with Lysander and Hermia forming one couple, and Demetrius and Helena forming another couple. Demetrius has to marry Hermia, while Hermia wants to marry Lysander. When Puck corrects his mistake and Demetrius then falls for Helena, it is because of the love potion. But somewhere deep down Demetrius truly"} +{"qid": "test3373", "pid": "6213322", "query": "who does demetrius love in a midsummer night dream", "answer": "Hermia", "passage": "Hermia\nHermia Hermia is a fictional character from Shakespeare's play, \"\"A Midsummer Night's Dream\"\". She is a girl of ancient Athens named for Hermes, the Greek god of trade. Hermia is caught in a romantic entanglement where she loves one man, Lysander, but is being courted by another, Demetrius, whose feelings she does not return. Though she loves Lysander, Hermia's father, Egeus, wants her to marry Demetrius and has appealed to Theseus, the Duke of Athens, for support. Under Athenian law, Hermia's refusal of her father's command would result in her being put to death or being banished to a nunnery."} +{"qid": "test3373", "pid": "6213328", "query": "who does demetrius love in a midsummer night dream", "answer": "Hermia", "passage": "Hermia\nde Havilland in the 1935 version and by Anna Friel in the 1999 release. Hermia Hermia is a fictional character from Shakespeare's play, \"\"A Midsummer Night's Dream\"\". She is a girl of ancient Athens named for Hermes, the Greek god of trade. Hermia is caught in a romantic entanglement where she loves one man, Lysander, but is being courted by another, Demetrius, whose feelings she does not return. Though she loves Lysander, Hermia's father, Egeus, wants her to marry Demetrius and has appealed to Theseus, the Duke of Athens, for support. Under Athenian law, Hermia's refusal of her father's command"} +{"qid": "test3373", "pid": "4691852", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Helena (A Midsummer Night's Dream)\"\nshe will gain back some of his respect, Helena tells Demetrius of Hermia and Lysander's plans and, the next night, they follow the escaping lovers into the forest. Though Demetrius is deliberately cruel towards her, Helena remains intent in her devotion. Her ardor catches the attention of Oberon, who commands that Puck enchant Demetrius so that he will fall back in love with Helena. When Puck mistakenly enchants a sleeping Lysander instead, Lysander wakes and falls instantly in love with Helena. He pursues a shocked and hurt Helena, deserting a sleeping Hermia. Oberon, trying to correct Puck's error, then puts"} +{"qid": "test3373", "pid": "534263", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream\"\nimmediately falls in love with Helena. Helena, thinking Lysander is playing a trick on her, runs away with Lysander following her. When Hermia wakes up, she sees that Lysander is gone and goes out in the woods to find him. Oberon sees Demetrius still following Hermia, who thinks Demetrius killed Lysander, and is enraged. When Demetrius goes to sleep, Oberon sends Puck to get Helena while he charms Demetrius' eyes. Upon waking up, he sees Helena. Now, both men are in love with Helena. However, she is convinced that her two suitors are mocking her, as neither loved her originally."} +{"qid": "test3373", "pid": "17358658", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Demetrius (A Midsummer Night's Dream)\"\na nuisance as she tries to win his heart. Eventually Demetrius falls in love with Helena due to Oberon and Puck putting the love juice on his eyes. The storyline is complex and shows the difficulties of true love through comedy. After Hermia has confided in Helena regarding her plans to elope with Lysander, Helena reveals the plan to Demetrius, in the hopes of procuring Demetrius's trust. However, Demetrius merely goes to the forest seeking Hermia, without giving Helena a second thought. After that he returns to the king. Helena follows Demetrius, and Oberon, the fairy king, sees them arguing."} +{"qid": "test3373", "pid": "8444060", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1999 film)\"\npromised Hermia to Demetrius (Christian Bale). Lysander and Hermia make plans to flee to the forest to escape the arrangement. Demetrius follows them, having been made aware of the plan by Helena (Calista Flockhart), a young woman who is desperately in love with him. Once in the forest, they wander into the fairy world, ruled by Oberon (Rupert Everett) and Titania (Michelle Pfeiffer), King and Queen of the fairies. Oberon and his servant sprite Puck (Stanley Tucci) cause mayhem among the lovers with a magic potion that causes both Lysander and Demetrius to fall in love with Helena, leading to"} +{"qid": "test3373", "pid": "8785004", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1935 film)\"\nlove with Helena, who is convinced that her two suitors are simply mocking her. When Hermia encounters Helena with her two suitors, she accuses Helena of stealing Lysander away from her. The four quarrel with each other until Lysander and Demetrius become so enraged that they seek a place to duel each other to prove whose love for Helena is the greatest. Oberon orders Puck to keep Lysander and Demetrius from catching up with one another and to remove the charm from Lysander. After Puck applies the potion to the sleeping Lysander's eyes, he returns to loving Hermia, while Demetrius"} +{"qid": "test3373", "pid": "4691854", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"Helena (A Midsummer Night's Dream)\"\nsleep again. Puck crushes another herb into Lysander's eyes, negating the effect of the first one. When the lovers are discovered in the morning by a hunting Theseus, Hippolyta, and Egeus, all is put to rights. Demetrius claims that a metaphorical 'sickness' made him love Hermia, but in health, his love has returned to Helena. The lovers are married in a joint ceremony with Theseus and Hippolyta and together watch the play put on by the Mechanicals in honor of the marriages. While not the only protagonist of \"\"A Midsummer Night's Dream\"\", Helena is one of its most talkative characters."} +{"qid": "test3373", "pid": "6172776", "query": "who does demetrius love in a midsummer night dream", "answer": "Hermia", "passage": "Egeus\nEgeus Egeus is a character in \"\"A Midsummer Night's Dream\"\", the comedy by William Shakespeare. He is an Athenian who tries to keep his daughter, Hermia, from marrying Lysander the man she loves. In original performances, the actor for his role probably played the part of Philostrate as well. Appearing in Scene 1 and Scene 11, Egeus is the father of Hermia, who disapproves of Hermia's and Lysander's love, appealing to Theseus to force Hermia to marry Demetrius. If Hermia refuses to wed Demetrius, she could be put to death, or cloistered in a nunnery for the rest of her"} +{"qid": "test3373", "pid": "8785003", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1935 film)\"\nattempting to determine whether he is dead or asleep. When he lays eyes on her, Lysander immediately falls in love with Helena. Meanwhile, the mischievous Puck turns Bottom into a donkey. When Titania wakes up and lays eyes on Bottom as a donkey, she falls in love with him. Oberon finds the abandoned changeling and takes him away. Part two When Oberon sees Demetrius still following Hermia, he instructs Puck to bring Helena to him while he applies the love potion to the sleeping Demetrius' eyes. Upon waking up, Demetrius sees Helena, and now both Lysander and Demetrius are in"} +{"qid": "test3373", "pid": "534267", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream\"\nand arranges everything so Helena, Hermia, Demetrius and Lysander will all believe they have been dreaming when they awaken. Puck distracts Lysander and Demetrius from fighting over Helena's love by mimicking their voices and leading them apart. Eventually, all four find themselves separately falling asleep in the glade. Once they fall asleep, Puck administers the love potion to Lysander again, returning his love to Hermia again, and claiming all will be well in the morning. The fairies then disappear, and Theseus and Hippolyta arrive on the scene, during an early morning hunt. They find the lovers still sleeping in the"} +{"qid": "test3373", "pid": "18844129", "query": "who does demetrius love in a midsummer night dream", "answer": "Hermia", "passage": "\"A Midsummer Night's Dream (1969 film)\"\nthe thicket in the kingdom of the elves. There, the elf couple Oberon (Jean-Claude Drouot) and Titania (Christiane Minazzoli) are arguing furiously. Hoping to solve the lovers' romantic problems, the spirit Puck drops a magical potion into the eyes of the young man he believes to be Demetrius. The potion's effect is to make the man fall in love with the first being he sees upon awaking. But Puck is mistaken: the sleeping man was Lysander. Now both Lysander and Demetrius are competing for the same woman, Hermia, who previously nobody had loved. Hermia's jealousy is reawakened. Standing between the"} +{"qid": "test3373", "pid": "534265", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream\"\nmen to make sure Lysander doesn't get hurt or killed. Oberon orders Puck to keep Lysander and Demetrius from catching up with one another and to remove the charm from Lysander so Lysander can return to love Hermia, while Demetrius continues to love Helena. Meanwhile, Quince and his band of six labourers (\"\"rude mechanicals\"\", as they are described by Puck) have arranged to perform their play about Pyramus and Thisbe for Theseus' wedding and venture into the forest, near Titania's bower, for their rehearsal. Bottom is spotted by Puck, who (taking his name to be another word for a jackass)"} +{"qid": "test3373", "pid": "534257", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream\"\ninterconnecting plots, connected by a celebration of the wedding of Duke Theseus of Athens and the Amazon queen, Hippolyta, which are set simultaneously in the woodland and in the realm of Fairyland, under the light of the moon. The play opens with Hermia, who is in love with Lysander, resistant to her father Egeus's demand that she wed Demetrius, whom he has arranged for her to marry. Helena, Hermia's best friend, pines unrequitedly for Demetrius, who broke up with her to be with Hermia. Enraged, Egeus invokes an ancient Athenian law before Duke Theseus, whereby a daughter needs to marry"} +{"qid": "test3373", "pid": "18844133", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream (1969 film)\"\nTV, a critic at WDR remarked: \"\"Rather than being accused of having too few ideas, Averty has created a colourful phantasmagoria against which categories like arts, crafts, or kitsch fail.\"\" A Midsummer Night's Dream (1969 film) \"\"Le Songe d'une nuit d'été\"\" (A Midsummer Night's Dream) is a French TV film from 1969. It is based on \"\"A Midsummer Night's Dream\"\" by William Shakespeare, and was directed by Jean-Christophe Averty. The four lovers Hermia (Christine Delaroche), Helena (Claude Jade), Lysander (Michel Ruhl), and Demetrius (Dominique Serina) have fled to a forest near Athens to escape from their parents' marriage plans. The"} +{"qid": "test3373", "pid": "534262", "query": "who does demetrius love in a midsummer night dream", "answer": "Helena", "passage": "\"A Midsummer Night's Dream\"\nlove, tells Demetrius about the plan and he follows them in hopes of finding Hermia. Helena continually makes advances towards Demetrius, promising to love him more than Hermia. However, he rebuffs her with cruel insults against her. Observing this, Oberon orders Puck to spread some of the magical juice from the flower on the eyelids of the young Athenian man. Instead, Puck mistakes Lysander for Demetrius, not having actually seen either before, and administers the juice to the sleeping Lysander. Helena, coming across him, wakes him while attempting to determine whether he is dead or asleep. Upon this happening, Lysander"} +{"qid": "test3373", "pid": "534268", "query": "who does demetrius love in a midsummer night dream", "answer": "Hermia", "passage": "\"A Midsummer Night's Dream\"\nglade. They wake up the lovers and, since Demetrius no longer loves Hermia, Theseus over-rules Egeus's demands and arranges a group wedding. The lovers at first believe they are still in a dream and can't recall what has happened. The lovers decide that the night's events must have been a dream. After they exit, Bottom awakes, and he too decides that he must have experienced a dream \"\"past the wit of man\"\". In Athens, Theseus, Hippolyta and the lovers watch the six workmen perform \"\"Pyramus and Thisbe.\"\" The performers are so terrible playing their roles that the guests laugh as"} +{"qid": "test3374", "pid": "3457905", "query": "who sang our god is an awesome god", "answer": "Rich Mullins", "passage": "\"Awesome God\"\nAwesome God \"\"Awesome God\"\" is a contemporary worship song written by Rich Mullins and first recorded on his 1988 album, \"\"Winds of Heaven, Stuff of Earth\"\". It was the first single from the album and rose to the number one spot on Christian radio and subsequently became a popular congregational song. Its title is inspired by a biblical expression (Nehemiah 1:5, Nehemiah 9:32, Psalm 47, Daniel 9:4, etc.), variously translated as \"\"Awesome God\"\", (JPS, in the old-fashioned meaning \"\"awe-inspiring\"\"), \"\"great\"\" (KJV), among other alternatives. Due to the popularity of the song it became Mullins' signature song. Mullins did not consider"} +{"qid": "test3374", "pid": "3457908", "query": "who sang our god is an awesome god", "answer": "Rich Mullins", "passage": "\"Awesome God\"\nstyle, even hardcore punk and heavy metal bands, such as, Unashamed and Pantokrator. The song may be used as a hymn and can be sung using only the chorus, alone or in medley. Awesome God \"\"Awesome God\"\" is a contemporary worship song written by Rich Mullins and first recorded on his 1988 album, \"\"Winds of Heaven, Stuff of Earth\"\". It was the first single from the album and rose to the number one spot on Christian radio and subsequently became a popular congregational song. Its title is inspired by a biblical expression (Nehemiah 1:5, Nehemiah 9:32, Psalm 47, Daniel 9:4,"} +{"qid": "test3375", "pid": "6822329", "query": "forney's sister in where the heart is", "answer": "Mary Elizabeth", "passage": "\"Where the Heart Is (novel)\"\nNovalee one night that she walked in on Roger abusing her son Brownie and oldest daughter Praline. She attacked him and he fought back and ran away. She chastises herself for being a stupid woman who couldn't see past Roger's looks and his fancy car while Novalee comforts her. Forney's sister Mary Elizabeth dies and Novalee goes to visit him and offer her support. They end up making love before Forney has to leave to go to Maine to bury his sister. Lexi meanwhile befriends Brownie's soccer coach, Ernie, who isn't typically the type of man who catches Lexi's interest"} +{"qid": "test3375", "pid": "548465", "query": "forney's sister in where the heart is", "answer": "Margaret Hoard", "passage": "\"Where the Heart Is (2000 film)\"\nstrong name. A sickly and homeless Novalee is forced to live in the Walmart, undetected. Novalee is also acquainted with surly librarian Forney Hull (James Frain) who looks after his alcoholic sister Mary Elizabeth (Margaret Hoard). During a thunderstorm Novalee, alone at Walmart, goes into labor. Forney, who is now in awe of Novalee, smashes through the Walmart window to help deliver her child whom she names Americus. Novalee instantly becomes a media darling, and in hospital is befriended by Nurse Lexie Coop (Ashley Judd). Her estranged mother Mama Lil (Sally Field), visits after seeing her daughter on television, but"} +{"qid": "test3378", "pid": "3298366", "query": "what flag is red and has a gold star", "answer": "flag of Vietnam", "passage": "\"Red star\"\non a red field. The flag of Vietnam also has a yellow star on a red field. North Korea's Red Star operating system takes its name from the communist red star. Socialist countries in Africa also incorporated the red and/or gold star into their heraldry. This practice was also adopted by countries that were formed following decolonial national liberation struggles, which often involved Marxist organizations. Transnistria and the Luhansk People's Republic are proto-states located in Eastern Europe. Due to their historical association with the Soviet Union, they have adopted socialist imagery including the red star into their flags and heraldry."} +{"qid": "test3378", "pid": "2615355", "query": "what flag is red and has a gold star", "answer": "flag of Vietnam", "passage": "\"Flag of Vietnam\"\nNearby Milpitas also banned the flag from municipal display on September 5, 2017. Flag of Vietnam The flag of Vietnam, or \"\"red flag with a gold star\"\" (), was designed in 1940 and used during an uprising against French rule in southern Vietnam that year . Red symbolizes the goals of social revolution behind the Vietnamese, national uprising. The star represents the five main classes in Vietnamese society—intellectuals, farmers, workers, businesspeople and military personnel. The flag was used by the Viet Minh, a communist-led organization created in 1941 to oppose Japanese occupation. At the end of World War II, Viet"} +{"qid": "test3379", "pid": "3803376", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Terry's Chocolate Orange\"\nround for long\"\"\"\" (some include the \"\"Countdown\"\" timer music). The newest advertising campaign in the United Kingdom features various situations in which people are trying to break the segments of their Terry's Chocolate Orange apart with the slogan \"\"\"\"Smash it to pieces, love it to bits\"\"\"\". On 29 May 2016, the UK product size was reduced from 175g to 157g by changing the moulded shape of each segment to leave an air gap between each piece. Terry's Chocolate Orange Terry's Chocolate Orange is a chocolate product created by Terry's in 1932 at the Chocolate Works factory in York, England. It"} +{"qid": "test3379", "pid": "3803372", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Terry's Chocolate Orange\"\nTerry's Chocolate Orange Terry's Chocolate Orange is a chocolate product created by Terry's in 1932 at the Chocolate Works factory in York, England. It was made by Mondelēz International from 2012 to 2017. As of spring 2017, it is made by Carambar & Co. The company opened the Art Deco-style factory The Chocolate Works in 1926, and began launching new products. These included the Dessert Chocolate Apple (1926), Terry's All Gold (1931) and the Chocolate Orange (1932). At the onset of World War II, confectionery production was immediately halted. The factory was taken over by F. Hills and Sons of"} +{"qid": "test3379", "pid": "3803374", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Terry's Chocolate Orange\"\nin 2017. Since 2005 and the closure of the Terry factory in York, Chocolate Orange products have been manufactured near Jankowice, Poland. In 1979, Terry's launched the Chocolate Lemon, but it was withdrawn three years later. The Terry's Chocolate Orange comprises an orange-shaped ball of chocolate mixed with orange oil, divided into 20 segments, similar to a real orange, and wrapped in orange-skin patterned foil. When packaged, the segments are stuck together firmly in the centre; therefore, prior to unwrapping, the ball is traditionally tapped severely on a hard surface to cause the segments to separate from each other (dubbed"} +{"qid": "test3379", "pid": "8984051", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"South Bank, York\"\nSouth Bank, York South Bank is an area to the south of the River Ouse in York. The area is dominated by the disused Terry's chocolate factory, The Chocolate Works, and the numerous streets of terraced housing that surround it. The Chocolate Works factory opened in 1926, where over the years it manufactured Terry's Chocolate Orange, Terry's All Gold and York Fruits. Terry's was acquired by Kraft Foods in 1993, who decided in 2004 to switch production of remaining products All Gold and Chocolate Orange to factories in Belgium, Sweden, Poland and Slovakia, and close the plant. The factory closed"} +{"qid": "test3379", "pid": "16618143", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"The Chocolate Works\"\nof increased production of the chocolate orange. In 1975, Terry's was acquired by United Biscuits, forming the bulk of their confectionery division. After UB ran into financial difficulties in the early 1990s, they sold their entire confectionery division to Kraft Foods, who amalgamated it with Jacobs Suchard to create Terry's Suchard. From 2000, the company brand was changed from \"\"Terry's of York\"\" to simply \"\"Terry's\"\", reducing the company's links to the city. Production was also scaled back, with just UK products and Terry's Chocolate Orange, Terry's All Gold and Twilight made for the international market. In 2004, Kraft Foods decided"} +{"qid": "test3379", "pid": "7913265", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Terry's\"\nTerry's Terry's was a British chocolate and confectionery maker based in York, England. It was founded in 1767 and in 1993 it was taken over by Kraft Foods. The company's headquarters, later renamed The Chocolate Works factory, was closed by Kraft in 2005; products using the Terry's brand name are now produced in Kraft facilities in Poland, Sweden, Belgium, and Slovakia. The Terry's name became part of Mondelēz International in 2012 and part of Carambar & Co in 2016. Their best known products include Terry's Chocolate Orange (1931), and Terry's All Gold box of assorted chocolates, which was also introduced"} +{"qid": "test3379", "pid": "465234", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "York\nconfectionery manufacturer Nestlé York (formerly Nestlé Rowntrees) and home to the \"\"KitKat\"\" and eponymous \"\"Yorkie\"\" bar chocolate brands. Terry's chocolate factory, makers of the \"\"Chocolate Orange\"\", was located in the city; but it closed on 30 September 2005, when production was moved by its owners, Kraft Foods, to Poland. The historic factory building is situated next to the Knavesmire racecourse. On 20 September 2006, Nestlé announced that it would cut 645 jobs at the Rowntree's chocolate factory in York. This came after a number of other job losses in the city at Aviva, British Sugar and Terry's chocolate factory. Despite"} +{"qid": "test3379", "pid": "10509827", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Neapolitans (chocolate)\"\nNeapolitans (chocolate) Neapolitans were individually wrapped square/rectangular pieces of chocolate. They were produced in several different flavours and by numerous confectionery companies. Neapolitans were used by hotels and coffee shops (often served with a cup of coffee) and when used for promotional purposes may feature packaging with personalised branding. They were also sold in boxes of assorted flavours. Terry's of York, England, first produced Neapolitans in 1899. The company was sold to Kraft Foods in 1993 and Terry's Neapolitans were discontinued in 2005 when their York factory was closed. The flavours were: Terry's also produced a selection of mint-flavoured neapolitans"} +{"qid": "test3379", "pid": "7913273", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Terry's\"\nLtd. in 1977. United Biscuits (Holdings) Ltd. (UB) acquired Joseph Terry & Sons Ltd. from Colgate in 1982; Terry's formed the bulk of their confectionery division. After UB ran into financial difficulties in the 1990s, they sold their confectionery division to Kraft Foods in 1993. Kraft amalgamated Terry's with Jacobs Suchard to create Terry's Suchard. From 2000, the company brand was changed from Terry's of York to Terry's, reducing the company's links with York. Production was also scaled back to UK products and Terry's Chocolate Orange, Terry's All Gold, and Twilight made for the international market. In 2004, Kraft Foods"} +{"qid": "test3379", "pid": "8599634", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Types of chocolate\"\nare produced by varying the quantities of the different ingredients. Other flavours can be obtained by varying the time and temperature when roasting the beans. Flavours such as mint, vanilla, coffee, orange, or strawberry are sometimes added to chocolate in a creamy form or in very small pieces. Chocolate bars frequently contain added ingredients such as peanuts, nuts, fruit, caramel, and crisped rice. Pieces of chocolate, in various flavours, are sometimes added to breakfast cereals and ice cream. The U.S. Food and Drug Administration (FDA) regulates the naming and ingredients of cocoa products: In March 2007, the Chocolate Manufacturers Association,"} +{"qid": "test3379", "pid": "7913274", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Terry's\"\ndecided to absorb Terry's, move production of remaining products such as All Gold and Chocolate Orange to factories in Belgium, Sweden, Poland, and Slovakia, and close the plant. The factory closed on 30 September 2005 with the loss of 316 jobs. In 2012, Kraft split into two companies; one called Kraft Foods Group and the other called Mondelēz International. After the split, Terry's became part of Mondelēz. In 2016, Terry's was one of a number of brands acquired by the Eurazeo and it subsequently became part of Carambar & Co. The business was based in St Helen’s Square as early"} +{"qid": "test3379", "pid": "6359827", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "Chocolatier\nto designing and sculpting using chocolate. These master chocolatiers also craft pieces of chocolate with outstanding flavor and texture, said to be the best in the world by some. Chocolatiers must be able to work with chocolate in many different applications tempering, molding, sculpting, and decorating. Chocolate can be made into pieces, incorporated into pastries, or simply designed as a piece of art. 2007 World Chocolate Masters Winner: Naomi Mizuno Mizuno, from Japan, took home the title to the World Chocolate Masters competition in 2007. The competition was judged in four different categories, including: molded pralines, hand-dipped pralines, gastronomic chocolate"} +{"qid": "test3379", "pid": "4169336", "query": "how many pieces in a terry's chocolate orange", "answer": "20", "passage": "\"Aero (chocolate)\"\nto remove artificial food colourings from the product. There has, however, been no indication that the Mint Aero chocolate bar is to be modified in the same way. On 4 May 2011, Nestlé introduced the Aero Biscuit. Aero Biscuit consists of the classic flavour Aero chocolate and round pieces of biscuit. It is currently sold throughout the United Kingdom and Ireland, and is also available in Aero Orange and Aero Mint varieties. As well as the United Kingdom, its place of creation, the bar is also sold as Aero in Argentina, Australia, Bahrain, Bulgaria(as LZ, through Aero is sold in"} +{"qid": "test338", "pid": "9044960", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"The Daily Show: Indecision 2006\"\nhave been featured across the nation were parodied. Stewart's guest was The Ohio State University political science professor John Mueller who wrote the book \"\"Overblown\"\". The Midtacular culminated in a live, hour-long episode on the night of Election Day, November 7, 2006. The episode was a joint venture with \"\"The Colbert Report\"\" and its host, former Daily Show correspondent Stephen Colbert. Former CBS news anchor Dan Rather also joined as a special correspondent. Guests included Robert Wexler and Eleanor Holmes Norton. The Daily Show: Indecision 2006 \"\"The Daily Show with Jon Stewart's\"\" Indecision 2006 was Stewart's coverage of the 2006"} +{"qid": "test338", "pid": "1787000", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"The Daily Show\"\nits run and is notable for boosting the careers of several of these. Scott Dikkers, editor-in-chief of \"\"The Onion\"\", describes it as a key launching pad for comedic talent, saying that \"\"I don't know if there's a better show you could put on your resume right now.\"\" Steve Carell, who was a correspondent between 1999 and 2005 before moving on to a movie career and starring television role in \"\"The Office\"\", credits Stewart and \"\"The Daily Show\"\" with his success. In 2005, the show's longest-serving correspondent, Stephen Colbert, became the host of the spin-off \"\"The Colbert Report\"\", earning critical and"} +{"qid": "test338", "pid": "17972680", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"The Late Show (franchise)\"\nThe Late Show (franchise) The Late Show is an American late-night talk show franchise on CBS. It first aired in August 1993 with host David Letterman, who previously hosted \"\"Late Night with David Letterman\"\" on NBC from 1982 to 1993. Letterman's iteration of the program ran until his retirement on May 20, 2015. Comedian Stephen Colbert, best known for his roles on Comedy Central programs \"\"The Daily Show\"\" and \"\"The Colbert Report\"\", assumed hosting duties in September. The show originates from the Ed Sullivan Theater in the Theater District of Manhattan, New York, and airs live to tape in most"} +{"qid": "test338", "pid": "2805608", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Craig Kilborn", "passage": "\"Craig Kilborn\"\n\"\"Daily Show\"\" episode aired on December 17, 1998, ending a 386-episode tenure. On January 11, 1999, Jon Stewart replaced Kilborn as host of \"\"The Daily Show\"\". On August 6, 2015, he made a cameo appearance on \"\"The Daily Show\"\" as part of Jon Stewart's last episode. It was his first appearance on the show since he left as host. Kilborn hosted \"\"The Late Late Show\"\" for five years, changing the format to appeal to a younger audience. On the show, he popularized segments such as \"\"Yambo\"\" and \"\"5 Questions\"\". He created several characters, including Sebastian, the Asexual Icon. He also"} +{"qid": "test338", "pid": "1786989", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"The Daily Show\"\na member of the Writers Guild of America, Stewart was barred from writing any material for the show himself which he or his writers would ordinarily write. As a result, Stewart and the correspondents largely ad-libbed the show around planned topics. In an effort to fill time while keeping to the strike-related restrictions, the show aired or re-aired some previously recorded segments, and Stewart engaged in a briefly recurring mock feud with fellow late-night hosts Stephen Colbert and Conan O'Brien. The strike officially ended on February 12, 2008, with the show's writers returning to work the following day, at which"} +{"qid": "test338", "pid": "1786997", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Craig Kilborn", "passage": "\"The Daily Show\"\nto between .1 and .2, the ratings are lower than before Jon Stewart took over the show from Craig Kilborn. On December 8, 2015, former host Jon Stewart returned to \"\"The Daily Show\"\" for the first time in an extended-length show to return attention to extending the James Zadroga 9/11 Health and Compensation Act, otherwise referred to as 9/11 First Responders Bill, which Stewart explained had been blocked by Paul Ryan and Mitch McConnell for political reasons. On October 20, 2016, Noah was unable to host a scheduled taping of \"\"The Daily Show\"\" due to illness, so correspondent Jordan Klepper"} +{"qid": "test338", "pid": "2185584", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"Stephen Colbert\"\npoint, the series gradually began to take on a more political tone and increase in popularity, particularly in the latter part of the 2000 U.S. presidential election season. The roles of the show's correspondents were expanded to include more in-studio segments and international reports, which were almost always done in the studio with the aid of a greenscreen. Unlike Stewart, who essentially hosted \"\"The Daily Show\"\" as himself, Colbert developed a correspondent character for his pieces on the series. Colbert has described his correspondent character as \"\"a fool who has spent a lot of his life playing not the fool"} +{"qid": "test338", "pid": "8362109", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"Stephen Colbert (character)\"\nthe manner of \"\"20/20\"\" correspondent John Stossel. In 1997, Colbert was promoted to anchor of the Channel 7 News on WPTS Patterson Springs after outing the previous anchor, Wayne Colt, for his cocaine addiction. His ensuing investigative reports into Colt's downfall earned him a local Emmy, and eventually a correspondent position at \"\"The Daily Show\"\". This corresponds with the year the comedian joined the cast of the show. Colbert often makes digs at the expense of \"\"Daily Show\"\" host Jon Stewart. He has implied a strained relationship with Stewart, in contrast with the real Colbert's admiration for the comedian, and"} +{"qid": "test338", "pid": "4837076", "query": "host of the late show who was once a correspondent for the daily show", "answer": "Stephen Colbert", "passage": "\"Political satire\"\nOctober 11, 1975. \"\"The Daily Show\"\" and \"\"The Colbert Report\"\" use stylistic formats that are similar to \"\"Weekend Update\"\". On \"\"The Daily Show\"\", host Jon Stewart used footage from news programs to satirize politics and the news media. Stephen Colbert performed in character on \"\"The Colbert Report\"\" as a right-wing news pundit. Both hosts' television programs were broadcast on Comedy Central, while \"\"The Daily Show\"\" continues to run featuring a new host. Colbert became the host of \"\"The Late Show\"\", succeeding David Letterman. With their shows, Stewart and Colbert helped increase public and academic discussion of the significance of political"} +{"qid": "test3380", "pid": "1450679", "query": "what are the functions of the human skeleton", "answer": "endocrine regulation", "passage": "\"Human skeleton\"\nand the bones of the upper and lower limbs. The human skeleton performs six major functions; support, movement, protection, production of blood cells, storage of minerals, and endocrine regulation. The human skeleton is not as sexually dimorphic as that of many other primate species, but subtle differences between sexes in the morphology of the skull, dentition, long bones, and pelvis exist. In general, female skeletal elements tend to be smaller and less robust than corresponding male elements within a given population. The human female pelvis is also different from that of males in order to facilitate childbirth. Unlike most primates,"} +{"qid": "test3380", "pid": "1450681", "query": "what are the functions of the human skeleton", "answer": "endocrine regulation", "passage": "\"Human skeleton\"\nof the spine are supported by many ligaments. The erector spinae muscles are also supporting and are useful for balance. The appendicular skeleton (126 bones) is formed by the pectoral girdles, the upper limbs, the pelvic girdle or pelvis, and the lower limbs. Their functions are to make locomotion possible and to protect the major organs of digestion, excretion and reproduction. The skeleton serves six major functions: support, movement, protection, production of blood cells, storage of minerals and endocrine regulation. The skeleton provides the framework which supports the body and maintains its shape. The pelvis, associated ligaments and muscles provide"} +{"qid": "test3380", "pid": "2784441", "query": "what are the functions of the human skeleton", "answer": "support", "passage": "\"Appendicular skeleton\"\nAppendicular skeleton The appendicular skeleton is the portion of the skeleton of vertebrates consisting of the bones that support the appendages. Appendages appeared as fins in early fish, and subsequently evolved into the limbs of tetrapods. The appendicular skeleton includes the skeletal elements within the limbs, as well as supporting pectoral and pelvic girdles in the case of tetrapods (these are lacking in fish). The word appendicular is the adjective of the noun \"\"appendage\"\", which itself means a part that is joined to something larger. Of the 206 bones in the human skeleton, the appendicular skeleton comprises 126. Functionally it"} +{"qid": "test3380", "pid": "14106055", "query": "what are the functions of the human skeleton", "answer": "support", "passage": "\"Algorithmic skeleton\"\nSkil is compiled, such features are eliminated and a regular C code is produced. Thus, Skil transforms polymorphic high order functions into monomorphic first order C functions. Skil does not support nestable composition of skeletons. Data parallelism is achieved using specific data parallel structures, for example to spread arrays among available processors. Filter skeletons can be used. In STAPL Skeleton Framework skeletons are defined as parametric data flow graphs, letting them scale beyond 100,000 cores. In addition, this framework addresses composition of skeletons as point-to-point composition of their corresponding data flow graphs through the notion of ports, allowing new skeletons"} +{"qid": "test3380", "pid": "3125343", "query": "what are the functions of the human skeleton", "answer": "support", "passage": "\"Human musculoskeletal system\"\nHuman musculoskeletal system The human musculoskeletal system (also known as the locomotor system, and previously the activity system) is an organ system that gives humans the ability to move using their muscular and skeletal systems. The musculoskeletal system provides form, support, stability, and movement to the body. It is made up of the bones of the skeleton, muscles, cartilage, tendons, ligaments, joints, and other connective tissue that supports and binds tissues and organs together. The musculoskeletal system's primary functions include supporting the body, allowing motion, and protecting vital organs. The skeletal portion of the system serves as the main storage"} +{"qid": "test3380", "pid": "14106056", "query": "what are the functions of the human skeleton", "answer": "support", "passage": "\"Algorithmic skeleton\"\nto be easily added to the framework. As a result, this framework eliminate the need for reimplementation and global synchronizations in composed skeletons. STAPL Skeleton Framework supports nested composition and can switch between parallel and sequential execution in each level of nesting. This framework benefits from scalable implementation of STAPL parallel containers and can run skeletons on various containers including vectors, multidimensional arrays, and lists. T4P was one of the first systems introduced for skeleton programming. The system relied heavily on functional programming properties, and five skeletons were defined as higher order functions: Divide-and-Conquer, Farm, Map, Pipe and RaMP. A"} +{"qid": "test3382", "pid": "15873205", "query": "what is the oasis in ready player one", "answer": "a virtual reality simulator", "passage": "\"Ready Player One\"\nis facing, people turn to the OASIS, a virtual reality simulator accessible by players using visors and haptic technology such as gloves. It functions both as an MMORPG and as a virtual world, with its currency being the most stable in the real world. It was created by James Halliday who, when he died, had announced in his will to the public that he had left an Easter egg inside OASIS, and the first person to find it would inherit his entire fortune and the corporation. The story follows the adventures of Wade Watts, starting about five years after the"} +{"qid": "test3383", "pid": "8856107", "query": "what was the name of the horse in steptoe and son", "answer": "Hercules", "passage": "\"Steptoe and Son in Murder at Oil Drum Lane\"\nand in the argument they fly into the sky on their old wagon, pulled by their old horse Hercules, arguing over which one will go to Heaven. Steptoe and Son in Murder at Oil Drum Lane Steptoe and Son in Murder at Oil Drum Lane is a play written by Ray Galton and John Antrobus that brought the \"\"Steptoe and Son\"\" saga to an end. It was first performed in 2005. The title of the play was borrowed from the Swedish 1982 play \"\"Albert & Herbert: Mordet på Skolgatan 15\"\" (meaning \"\"Albert & Harold : The Murder at Skolgatan 15\"\")"} +{"qid": "test3383", "pid": "1496625", "query": "what was the name of the horse in steptoe and son", "answer": "Hercules", "passage": "\"Steptoe and Son\"\n\"\"Steptoe and Son in Murder at Oil Drum Lane\"\", written by Ray Galton and John Antrobus, brought the storyline to a close. The series was one of the first UK situation comedy programmes to employ actors rather than comedians in the principal roles. Galton and Simpson had decided that they wanted to try to write for performers who \"\"didn't count their laughs\"\". The series' title music, \"\"Old Ned\"\", won its composer Ron Grainer his second successive Ivor Novello award. The series had no standard set of opening titles but the opening sequences would often feature the Steptoe's horse, Hercules. \"\"Steptoe"} +{"qid": "test3384", "pid": "11875575", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"1974–75 Golden State Warriors season\"\nrallied to win Game 6 in Chicago and took the series with an 83–79 Game 7 triumph in Oakland. In the NBA Finals, the Warriors faced off against the Washington Bullets. The Warriors took the series in four straight games, including 1-point wins in Games 2 and 4. Rick Barry was named the series MVP. The Warriors wouldn't make another NBA Finals appearance again until 2015, where the franchise won its fourth league title. C – NBA Champions The Warriors had a first round bye. (1) Golden State Warriors vs. (4) Seattle SuperSonics: \"\"Warriors win series 4–2\"\" (1) Golden State"} +{"qid": "test3384", "pid": "11875604", "query": "when did the golden state warriors win the finals", "answer": "1975", "passage": "\"1975–76 Golden State Warriors season\"\n1975–76 Golden State Warriors season Coming off their NBA Championship, the Warriors finished the 1975–76 season with a then franchise best 59–23 record. The record would be surpassed when the team won the championship 39 years later. In the playoffs, the Warriors returned to the Western Conference Finals by beating the Detroit Pistons in 6 games. In the Western Finals, the Warriors faced the Phoenix Suns. The Warriors had a 2 games to 1 lead. Game 4 went in overtime and the Warriors were unable to grab a 3–1 series lead. The Suns would rally to win the game 133–129."} +{"qid": "test3384", "pid": "14795016", "query": "when did the golden state warriors win the finals", "answer": "1975", "passage": "\"1991–92 Golden State Warriors season\"\nto the 6th-seeded Seattle SuperSonics, losing the final two games by just four points. Following the season, Rod Higgins signed as a free agent with the Sacramento Kings. (3) Golden State Warriors vs. (6) Seattle SuperSonics: \"\"SuperSonics win series 3-1\"\" Last Playoff Meeting: 1975 Western Conference Semifinals (Golden State won 4-2) 1991–92 Golden State Warriors season The 1991–92 NBA season was the Warriors' 46th season in the National Basketball Association, and 29th in the San Francisco Bay Area. On the first day of the regular season, Run TMC was broken up when the Warriors traded Mitch Richmond to the Sacramento"} +{"qid": "test3384", "pid": "18081588", "query": "when did the golden state warriors win the finals", "answer": "1975", "passage": "\"2014–15 Golden State Warriors season\"\n2014–15 Golden State Warriors season The 2014–15 Golden State Warriors season was the 69th season of the franchise in the National Basketball Association (NBA), and their 53rd in the San Francisco Bay Area. The Warriors finished the season 67–15, a new franchise record for wins in a season, clinching their best record in the NBA since they won 59 games in the 1975–76 season. They are the tenth NBA team to win 67 games in a season. Golden State reached the 2015 NBA Finals and defeated the Cleveland Cavaliers 4–2, to win their first title in 40 years, and the"} +{"qid": "test3384", "pid": "9371704", "query": "when did the golden state warriors win the finals", "answer": "1975", "passage": "\"1975 NBA Playoffs\"\n1991. Champion: Golden State Warriors 1st Round (1) Golden State Warriors, (2) Chicago Bulls & (3) Kansas City Kings have first round byes. (4) Seattle SuperSonics vs. (5) Detroit Pistons: \"\"Sonics win series 2-1\"\" Conference Semifinals (1) Golden State Warriors vs. (4) Seattle SuperSonics: \"\"Warriors win series 4-2\"\" (2) Chicago Bulls vs. (3) Kansas City-Omaha Kings: \"\"Bulls win series 4-2\"\" Conference Finals (1) Golden State Warriors vs. (2) Chicago Bulls: \"\"Warriors win series 4-3\"\" Champion: Washington Bullets 1st Round (1) Boston Celtics, (2) Washington Bullets & (3) Buffalo Braves have first round byes. (4) Houston Rockets vs. (5) New York"} +{"qid": "test3384", "pid": "11875605", "query": "when did the golden state warriors win the finals", "answer": "1975", "passage": "\"1975–76 Golden State Warriors season\"\nThe Warriors would bounce back to take Game 5, but the Suns would win Games 6 & 7 to stun the defending Champions. The Warriors had a first round bye. (1) Golden State Warriors vs. (5) Detroit Pistons: \"\"Warriors win series 4-2\"\" (1) Golden State Warriors vs. (3) Phoenix Suns: \"\"Suns win series 4-3\"\" 1975–76 Golden State Warriors season Coming off their NBA Championship, the Warriors finished the 1975–76 season with a then franchise best 59–23 record. The record would be surpassed when the team won the championship 39 years later. In the playoffs, the Warriors returned to the Western"} +{"qid": "test3384", "pid": "4169678", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"1989 World Series\"\nseason meeting between the Giants and A's, the Giants honored 27 members of their 1989 team. The A's victory continued a string of success for any Bay Area-based professional sports team. The San Francisco 49ers of the NFL continued its '80s dynasty by winning Super Bowl XXIII and XXIV in between the Athletics' World Series triumph. The next championship for the city of Oakland came in 2015, when the Golden State Warriors of the NBA won the 2015 NBA Finals. Later, the Golden State Warriors would win the 2017 and 2018 NBA Finals, defeating the Cleveland Cavaliers. This would be"} +{"qid": "test3384", "pid": "18081593", "query": "when did the golden state warriors win the finals", "answer": "1975", "passage": "\"2014–15 Golden State Warriors season\"\nsmashing the prior NBA record of 484 (set by themselves in 2013–14). The Warriors did not have a pick in the 2014 NBA draft. 2014–15 Golden State Warriors season The 2014–15 Golden State Warriors season was the 69th season of the franchise in the National Basketball Association (NBA), and their 53rd in the San Francisco Bay Area. The Warriors finished the season 67–15, a new franchise record for wins in a season, clinching their best record in the NBA since they won 59 games in the 1975–76 season. They are the tenth NBA team to win 67 games in a"} +{"qid": "test3384", "pid": "18864067", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"2015–16 Golden State Warriors season\"\nthat the Warriors had lost three straight games. Golden State became the first team in NBA history to finish with the same number of regular-season and postseason losses (9). Golden State also became the first team in NBA history with 69 or more regular season wins that failed to win the NBA Championship. Golden State broke numerous regular-season, postseason and franchise records this year, both as a team and individually. * – Recorded statistics when playing for Golden State 2015–16 Golden State Warriors season The 2015–16 Golden State Warriors season was the 70th season of the franchise in the National"} +{"qid": "test3384", "pid": "18864059", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"2015–16 Golden State Warriors season\"\nwhen Neil Johnston, Paul Arizin, and Jack George were selected. Curry was unanimously selected for first team honors, Green for the second team and Thompson got third team recognition. The Warriors tied the Western Conference Finals series at 3–3 on May 28, with a 108–101 road win over the Thunder. Klay Thompson made eleven three-pointers, breaking the NBA playoff record of nine. Golden State tied their franchise record for most three-pointers made in a playoff game with 21. Golden State also set a new franchise record for wins with their 84th of the season (regular-season and postseason combined), surpassing the"} +{"qid": "test3384", "pid": "19423218", "query": "when did the golden state warriors win the finals", "answer": "2017", "passage": "\"2017 NBA Playoffs\"\n2017 NBA Playoffs The 2017 NBA Playoffs began on April 15, 2017. It concluded with the Golden State Warriors defeating the Cleveland Cavaliers 4 games to 1 in the NBA Finals, their third consecutive meeting at the Finals. Kevin Durant was named the NBA Finals MVP in his first year on the team. The Warriors set the record for the longest playoff winning streak (15) and the best record (16-1) in NBA playoff history. The Golden State Warriors began the finals with a playoff record of 12–0. The first two finals' games were blowouts by Golden State, game three was"} +{"qid": "test3384", "pid": "295998", "query": "when did the golden state warriors win the finals", "answer": "2017", "passage": "\"National Basketball Association\"\nJames announced that he would return to the Cleveland Cavaliers. James led the Cavaliers to their second Finals appearance, where they lost to the Golden State Warriors in six games. The following year, in a rematch, the 2016 NBA Finals concluded with the Cavaliers defeating the Warriors in seven games to win their first NBA Championship. The dominance of those two teams continued in 2017, when the Warriors, having signed Kevin Durant as a free agent, took the third straight Finals matchup between the two teams in five games, with Durant named Finals MVP, and again in 2018 when they"} +{"qid": "test3384", "pid": "14622925", "query": "when did the golden state warriors win the finals", "answer": "2017", "passage": "\"History of the Golden State Warriors\"\nHistory of the Golden State Warriors The history of the Golden State Warriors began in Philadelphia in 1946. In 1962, the franchise was relocated to San Francisco, California and became known as the San Francisco Warriors until 1971, when its name was changed to the current Golden State Warriors. Along with their inaugural championship win in the 1946–47 season, the Warriors have won five others in the team's history, including another in Philadelphia after the 1955–56 season, and four more as Golden State after the 1974–75, 2014–15, 2016–17, and 2017–18 seasons. The Warriors were founded in Philadelphia in 1946 as"} +{"qid": "test3384", "pid": "803919", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"Golden State Warriors\"\nteams' rivalry began to develop in the 2014–15 season when they met in the first of four consecutive NBA Finals. Previously, no pair of teams had faced each other in more than two consecutive Finals. The Warriors have won three of the four NBA Finals in which they faced the Cavs, winning in 2015, 2017, and 2018. Bob Fitzgerald has done television play-by-play, and former Warrior guard Jim Barnett has done color commentary for the Warriors for more than 15 years, currently on NBC Sports Bay Area, where they telecast more than 70 Warrior games a year. They also host"} +{"qid": "test3384", "pid": "19423232", "query": "when did the golden state warriors win the finals", "answer": "2017", "passage": "\"2017 NBA Playoffs\"\nFinals for the 15th consecutive year. 2017 NBA Playoffs The 2017 NBA Playoffs began on April 15, 2017. It concluded with the Golden State Warriors defeating the Cleveland Cavaliers 4 games to 1 in the NBA Finals, their third consecutive meeting at the Finals. Kevin Durant was named the NBA Finals MVP in his first year on the team. The Warriors set the record for the longest playoff winning streak (15) and the best record (16-1) in NBA playoff history. The Golden State Warriors began the finals with a playoff record of 12–0. The first two finals' games were blowouts"} +{"qid": "test3384", "pid": "11504216", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"Monty McCutchen\"\nMonty McCutchen Monty McCutchen (born February 14, 1966) is a former professional basketball referee who has worked in the National Basketball Association (NBA) since the 1993-1994 season. 2017 Finals, Game 3 Golden State Warriors (118) @ Cleveland Cavaliers (113) 2016 Finals, Game 7 Cleveland Cavaliers (93) @ Golden State Warriors (89) 2016 Finals, Game 5 Cleveland Cavaliers (112) @ Golden State Warriors (97) 2016 Finals, Game 3 Golden State Warriors (90) @ Cleveland Cavaliers (120) 2015 Finals, Game 5: Cleveland Cavaliers (91) @ Golden State Warriors (104) 2015 Finals, Game 1: Cleveland Cavaliers (100) @ Golden State Warriors (108) (OT)"} +{"qid": "test3384", "pid": "19423245", "query": "when did the golden state warriors win the finals", "answer": "2017", "passage": "\"2017 NBA Finals\"\ngame since 1970 where two opposing players each had a triple-double. Golden State took a 2–0 series lead heading into Cleveland for Game 3. The Warriors defeated the Cavaliers 118–113 to extend the longest winning streak in NBA playoff history to 15 games. Golden State became the first team in the four major sports leagues in North America to go 15–0 in the postseason. The Warriors got off to a torrid start, hitting an NBA Finals record 9 three-pointers in the first quarter, resulting in an early 39-32 lead. During the quarter, the Cavaliers got a scare when LeBron James"} +{"qid": "test3384", "pid": "17996871", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"2015 NBA Finals\"\n2015 NBA Finals The 2015 NBA Finals was the championship series of the 2014–15 season of the National Basketball Association (NBA) and the conclusion of the season's playoffs. The Western Conference champion Golden State Warriors defeated the Eastern Conference champion Cleveland Cavaliers in six games (4–2) for the Warriors' first title in 40 years and their fourth in franchise history, becoming the first team since the 1990–91 Chicago Bulls to win a championship without any prior Finals experience from any player on their roster. Golden State's Andre Iguodala was named the Finals Most Valuable Player (MVP). The Warriors were led"} +{"qid": "test3384", "pid": "5761807", "query": "when did the golden state warriors win the finals", "answer": "2015", "passage": "\"Andre Iguodala\"\nAndre Iguodala Andre Tyler Iguodala ( ; born January 28, 1984) is an American professional basketball player for the Golden State Warriors of the National Basketball Association (NBA). The swingman was an NBA All-Star in 2012 and has been named to the NBA All-Defensive Team twice. Iguodala won an NBA championship with the Warriors in 2015, when he was named the NBA Finals Most Valuable Player. Iguodala helped the Warriors win two more championships in 2017 and 2018. He was also a member of the United States national team at the 2010 FIBA World Championship and 2012 Summer Olympics, winning"} +{"qid": "test3385", "pid": "16600290", "query": "who won the oscar over wolf of wall street", "answer": "Terence Winter", "passage": "\"The Wolf of Wall Street (2013 film)\"\nThe Wolf of Wall Street (2013 film) The Wolf of Wall Street is a 2013 American biographical black comedy crime film directed by Martin Scorsese and written by Terence Winter, based on the memoir of the same name by Jordan Belfort. It recounts Belfort's perspective on his career as a stockbroker in New York City and how his firm Stratton Oakmont engaged in rampant corruption and fraud on Wall Street that ultimately led to his downfall. Leonardo DiCaprio (who was also a producer) stars as Belfort, with Jonah Hill as his business partner and friend Donnie Azoff, Margot Robbie as"} +{"qid": "test3385", "pid": "18596260", "query": "who won the oscar over wolf of wall street", "answer": "Leonardo DiCaprio", "passage": "\"The Wolf of Wall Street (book)\"\nThe Wolf of Wall Street (book) The Wolf of Wall Street is a memoir by former stockbroker and trader Jordan Belfort, first published in September 2007 by Bantam Books, then adapted into a 2013 film of the same name (directed by Martin Scorsese and starring Leonardo DiCaprio as Belfort). Belfort's autobiographical account was continued by \"\"Catching the Wolf of Wall Street\"\", published in 2009. Belfort tells his real-life story of creating Stratton Oakmont, a brokerage house engaged in pump and dump schemes with penny stocks. The firm was shut down by regulators in the late 1990s, and Belfort was jailed"} +{"qid": "test3385", "pid": "18596261", "query": "who won the oscar over wolf of wall street", "answer": "Leonardo DiCaprio", "passage": "\"The Wolf of Wall Street (book)\"\nfor securities fraud. Multiple portions of the book are disputed by law agencies as either fictitious, exaggerated, or untrue to real events. The Wolf of Wall Street (book) The Wolf of Wall Street is a memoir by former stockbroker and trader Jordan Belfort, first published in September 2007 by Bantam Books, then adapted into a 2013 film of the same name (directed by Martin Scorsese and starring Leonardo DiCaprio as Belfort). Belfort's autobiographical account was continued by \"\"Catching the Wolf of Wall Street\"\", published in 2009. Belfort tells his real-life story of creating Stratton Oakmont, a brokerage house engaged in"} +{"qid": "test3385", "pid": "16600322", "query": "who won the oscar over wolf of wall street", "answer": "Terence Winter", "passage": "\"The Wolf of Wall Street (2013 film)\"\n– Motion Picture Musical or Comedy. The soundtrack to \"\"The Wolf of Wall Street\"\" features both original as well as existing music tracks, and was released on December 17, 2013 for digital download. More than sixty songs were used in the film, but only sixteen were included on the official soundtrack. Notably, among the exceptions are original compositions by Theodore Shapiro. The Wolf of Wall Street (2013 film) The Wolf of Wall Street is a 2013 American biographical black comedy crime film directed by Martin Scorsese and written by Terence Winter, based on the memoir of the same name by"} +{"qid": "test3385", "pid": "16600301", "query": "who won the oscar over wolf of wall street", "answer": "Leonardo DiCaprio", "passage": "\"The Wolf of Wall Street (2013 film)\"\na penny stock trader. In 2007, Leonardo DiCaprio/Warner Bros. won a bidding war against Brad Pitt/Paramount Pictures for the rights to Jordan Belfort's memoir \"\"The Wolf of Wall Street\"\", and Martin Scorsese was considered to direct the film. During pre-production, Scorsese worked on the film's script before working on \"\"Shutter Island\"\". He describes having \"\"wasted five months of [his] life\"\" without getting a green light on production dates by the Warner Bros. studio. Jordan Belfort made $1 million on the movie rights. In 2010, Warner Bros. had offered Ridley Scott to direct the film, with Leonardo DiCaprio playing the male"} +{"qid": "test3385", "pid": "17386475", "query": "who won the oscar over wolf of wall street", "answer": "Terence Winter", "passage": "\"Riza Aziz\"\nfilm \"\"The Wolf of Wall Street\"\". \"\"The Wolf of Wall Street\"\" is based upon Jordan Belfort's best-selling novel of the same name and was adapted into a screenplay by Terence Winter. The film starred Leonardo DiCaprio, Margot Robbie, Jonah Hill, and was directed by Martin Scorsese. The film was released on December 25, 2013. The film is banned in his native country, Malaysia. \"\"The Wolf of Wall Street\"\" has achieved tremendous box office success and critical acclaim - including a Golden Globe win for Best Actor in a Motion Picture Comedy for star Leonardo DiCaprio and five Academy Award nominations"} +{"qid": "test3385", "pid": "16600315", "query": "who won the oscar over wolf of wall street", "answer": "Leonardo DiCaprio", "passage": "\"The Wolf of Wall Street (2013 film)\"\nan average rating of 7.8/10. The site's critical consensus reads, \"\"Funny, self-referential, and irreverent to a fault, \"\"The Wolf of Wall Street\"\" finds Martin Scorsese and Leonardo DiCaprio at their most infectiously dynamic.\"\" On Metacritic, the film has a weighted average score of 75 out of 100, based on 47 critics, indicating \"\"generally favorable reviews\"\". Peter Travers of \"\"Rolling Stone\"\" magazine named \"\"The Wolf of Wall Street\"\" as the third best film of 2013, behind \"\"12 Years a Slave\"\" and \"\"Gravity\"\" at numbers one and two, respectively. The movie was chosen as one of the top ten films of the"} +{"qid": "test3385", "pid": "251760", "query": "who won the oscar over wolf of wall street", "answer": "Terence Winter", "passage": "\"Martin Scorsese\"\nconfirmed that the Sinatra biopic has been cancelled, due to a lack of support from the Sinatra estate. In March 2015, it was reported that Scorsese will direct a Mike Tyson biopic. The film is set to star Oscar-winning actor Jamie Foxx to play Tyson. Foxx mentioned that, \"\"This will be the first boxing movie that Martin Scorsese has done since \"\"Raging Bull\"\".\"\" The Mike Tyson film that Terence Winter (\"\"The Wolf of Wall Street\"\", \"\"Boardwalk Empire\"\") is penning will cover the full breadth of his career, reportedly using the aging technology deployed in David Fincher's \"\"The Curious Case of"} +{"qid": "test3385", "pid": "16600308", "query": "who won the oscar over wolf of wall street", "answer": "Leonardo DiCaprio", "passage": "\"The Wolf of Wall Street (2013 film)\"\nscreen effects or low light were shot with the digital Arri Alexa. The film contains 400–450 VFX shots. \"\"The Wolf of Wall Street\"\" uses animals including a chimpanzee, a lion, a snake, a fish, and dogs. The chimpanzee and the lion were provided by the Big Cat Habitat wildlife sanctuary in Sarasota County, Florida. The four-year-old chimpanzee Chance spent time with actor Leonardo DiCaprio and learned to roller skate over the course of three weeks. The sanctuary also provided a lion named Handsome because the film's trading company used a lion for its symbol. Danny Porush, Jordan Belfort's real-life partner,"} +{"qid": "test3386", "pid": "7796854", "query": "who was the youngest president to be elected", "answer": "Theodore Roosevelt", "passage": "\"John F. Kennedy\"\nwhich won a Pulitzer Prize for Biography. In the 1960 presidential election, Kennedy narrowly defeated Republican opponent Richard Nixon, who was the incumbent vice president. At age 43, he became the second-youngest man to serve as president (after Theodore Roosevelt), the youngest man to be elected as U.S. president, as well as the only Roman Catholic to occupy that office. Kennedy's time in office was marked by high tensions with communist states in the Cold War. He increased the number of American military advisers in South Vietnam by a factor of 18 over President Dwight D. Eisenhower. In April 1961,"} +{"qid": "test3386", "pid": "505387", "query": "who was the youngest president to be elected", "answer": "Theodore Roosevelt", "passage": "\"1960 United States presidential election\"\nof inauguration. Kennedy, by contrast, was 43 years, 236 days, on the date of his inauguration; the second-youngest man to begin a Presidency (at 42 Theodore Roosevelt, who assumed the Presidency upon the assassination of President William McKinley 60 years previously, was the youngest). During Kennedy's campaign he relied on his youth and promised to bring about change. Kennedy had a slogan emphasizing his youth reading, \"\"who's seasoned through and through/but not so dog-gone seasoned that he won't try something new.\"\" He was also endorsed by celebrities such as, Henry Fonda and Harry Belafonte. Nixon relied on his experience in"} +{"qid": "test3386", "pid": "12887916", "query": "who was the youngest president to be elected", "answer": "John F. Kennedy", "passage": "\"1962 United States Senate special election in Massachusetts\"\n1962 United States Senate special election in Massachusetts The United States Senate special election of 1962 in Massachusetts was held on November 6, 1962. The election was won by Edward M. Kennedy, the youngest brother of President John F. Kennedy, who would remain Senator until his death in 2009, 47 years later. Senator John F. Kennedy resigned the seat to become President of the United States after winning the presidential election in 1960. Benjamin A. Smith II, a Kennedy family friend, was appointed to succeed Kennedy, serving as a placeholder for Edward M. \"\"Ted\"\" Kennedy, who at the time was"} +{"qid": "test3386", "pid": "511326", "query": "who was the youngest president to be elected", "answer": "Theodore Roosevelt", "passage": "\"1988 United States presidential election\"\nplagiarism charges. Al Gore, a Senator from Tennessee, also chose to run for the nomination. Turning 40 in 1988, he would have been the youngest man to contest the Presidency on a major party ticket since William Jennings Bryan in 1896, and the youngest president ever if elected, younger than John F. Kennedy at election age and Theodore Roosevelt at age of assumption of office. He eventually became the 45th Vice President of the United States under Bill Clinton, then the Democratic presidential nominee in 2000. Gore was later defeated by George W. Bush, George H.W.'s son, in 2000. After"} +{"qid": "test3387", "pid": "18020", "query": "which indian actor has won most national awards", "answer": "Amitabh Bachchan", "passage": "\"Amitabh Bachchan\"\nthe greatest and most influential actors in the history of Indian cinema as well as world cinema. So total was his dominance on the Indian movie scene in the 1970s and 1980s that the French director François Truffaut called him a \"\"one-man industry\"\". Beyond the Indian subcontinent, he also had a large overseas following in markets such as Africa, the Middle East (especially Egypt), and the Soviet Union. Bachchan has won numerous accolades in his career, including four National Film Awards as Best Actor and many awards at international film festivals and award ceremonies. He has won fifteen Filmfare Awards"} +{"qid": "test3388", "pid": "19941685", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2016)\"\nThe Young and the Restless characters (2016) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2016, by order of first appearance. In the first half of the year, characters were introduced by executive producer Jill Farren Phelps until her replacement in the summer of 2016 by supervising producer Mal Young Young was first credited as executive producer on July 13, 2016. Co-executive producer and head writer Charles Pratt Jr. oversaw"} +{"qid": "test3388", "pid": "19939234", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2017)\"\nThe Young and the Restless characters (2017) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2017, by order of first appearance. All characters are introduced by executive producer Mal Young and co-executive producer/head writer Sally Sussman. In October 2017, Sussman departed as co-executive producer and head writer; Young remained as executive producer and was promoted as head writer. Alex Dettmer, portrayed by Jessica Nicole Webb, was introduced on January 11"} +{"qid": "test3388", "pid": "19939245", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2017)\"\nhis former girls, while he threatened Abby and Scott Grainger. The Young and the Restless characters (2017) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2017, by order of first appearance. All characters are introduced by executive producer Mal Young and co-executive producer/head writer Sally Sussman. In October 2017, Sussman departed as co-executive producer and head writer; Young remained as executive producer and was promoted as head writer. Alex Dettmer,"} +{"qid": "test3388", "pid": "19941692", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2016)\"\nis the estranged mother of Neil Winters (Kristoff St. John). Nichols first appeared on September 1. Ravi Shapur, portrayed by Abhi Sinha, is a computer engineer hired by Jabot Cosmetics. Abhi made his debut on December 12, on a recurring basis. The Young and the Restless characters (2016) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2016, by order of first appearance. In the first half of the year, characters"} +{"qid": "test3388", "pid": "1579386", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless\"\nThe Young and the Restless The Young and the Restless (often abbreviated as Y&R) is an American television soap opera created by William J. Bell and Lee Phillip Bell for CBS. The show is set in a fictional Wisconsin town called Genoa City, which is unlike and unrelated to the real life village of the same name, Genoa City, Wisconsin. First broadcast on March 26, 1973, \"\"The Young and the Restless\"\" was originally broadcast as half-hour episodes, five times a week. The show expanded to one-hour episodes on February 4, 1980. In 2006, the series began airing encore episodes weeknights"} +{"qid": "test3388", "pid": "16974062", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2013)\"\nThe Young and the Restless characters (2013) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2013, by order of first appearance. All characters through October are introduced by executive producer Jill Farren Phelps and head writer Josh Griffith; characters after October are introduced by Phelps and head writers Shelly Altman and Jean Passanante. Adriana Stone, portrayed by Jhoanna Flores, made her first appearance on January 7, 2013. The news of"} +{"qid": "test3388", "pid": "17556457", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2014)\"\nThe Young and the Restless characters (2014) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2014, by order of first appearance. All characters are introduced by executive producer Jill Farren Phelps and head writers Shelly Altman and Jean Passanante. Ian Ward, portrayed by Ray Wise, made his first appearance on January 23, 2014, as a former cult leader, believed to be the biological father of Dylan McAvoy (Steve Burton) and"} +{"qid": "test3388", "pid": "16974093", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2013)\"\ntransplanted to Connor. The surgery is a success and Connor's eyesight is saved. In 2018 he leaves town with his mother. The Young and the Restless characters (2013) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2013, by order of first appearance. All characters through October are introduced by executive producer Jill Farren Phelps and head writer Josh Griffith; characters after October are introduced by Phelps and head writers Shelly"} +{"qid": "test3388", "pid": "18490315", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2015)\"\nMartin on \"\"All My Children\"\", Knight's casting was announced by \"\"TV Insider\"\" in September 2015. In June 2016, it was announced that Knight had finished taping for the role. Elise Moxley, portrayed by Jensen Buchanan, was introduced in November 2015. The Young and the Restless characters (2015) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2015, by order of first appearance. All characters are introduced by executive producer Jill Farren"} +{"qid": "test3388", "pid": "16206314", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2010)\"\nThe Young and the Restless characters (2010) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared in 2010, by order of appearance. All characters were introduced to the series by its head writer that year, Maria Arena Bell. Doppelgänger Sarah Smythe first appeared in April. June saw the arrival of Meggie McClaine, Spencer Walsh and twin characters, Charles and Matilda Ashby, born on-screen. Vance Abrams and Sofia Dupre debuted in July, followed by Blake Joseph's stint"} +{"qid": "test3388", "pid": "16206253", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2011)\"\nThe Young and the Restless characters (2011) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared in 2011, by order of appearance. All characters were introduced to the series by its head writer that year, Maria Arena Bell. Lucy Romalotti, Primrose DeVille and Caleb Atkinson all debuted in January, while Angelo Veneziano first appeared in February. Davis Holloway debuted in July while Moses Winters debuted in October. Lucy Romalotti is the daughter of Daniel Romalotti and"} +{"qid": "test3388", "pid": "17556507", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2014)\"\nevent at the Genoa City Athletic Club intoxicated, Tobias leaves and is involved in a fatal car crash. Before succumbing to his injuries, he manages to mention the name Austin. Evidence implicating him in the murders of both Austin and Courtney is then found in his hotel room by Kevin Fisher and Mariah Copeland. His final airdate is May 27, 2015. The Young and the Restless characters (2014) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first"} +{"qid": "test3388", "pid": "16215382", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2012)\"\nThe Young and the Restless characters (2012) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared in 2012, by order of appearance. All characters that appeared before August 2012 were introduced by the show's former head writer and executive producer Maria Arena Bell. Beyond that point, all characters are introduced by Bell's replacements: executive producer Jill Farren Phelps and head writer Josh Griffith. Anita Lawson and Sarge Wilder. Carmine Basco first appeared in March, while April"} +{"qid": "test3388", "pid": "18490308", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2015)\"\nThe Young and the Restless characters (2015) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared on the soap opera in 2015, by order of first appearance. All characters are introduced by executive producer Jill Farren Phelps and co-executive producer/head writer Charles Pratt, Jr. Marco Annicelli was a primary antagonist in Victor Newman's plan to bring down his rival, Jack Abbott. He was portrayed by Peter Bergman, who portrayed Jack at the same time. Marco's character"} +{"qid": "test3388", "pid": "16206277", "query": "when was the young and the restless first aired", "answer": "March 26, 1973", "passage": "\"The Young and the Restless characters (2011)\"\nmonths later as Neil had feelings for Harmony Hamilton. The Young and the Restless characters (2011) \"\"The Young and the Restless\"\" is an American television soap opera. It was first broadcast on March 26, 1973, and airs on CBS. The following is a list of characters that first appeared in 2011, by order of appearance. All characters were introduced to the series by its head writer that year, Maria Arena Bell. Lucy Romalotti, Primrose DeVille and Caleb Atkinson all debuted in January, while Angelo Veneziano first appeared in February. Davis Holloway debuted in July while Moses Winters debuted in October."} +{"qid": "test3389", "pid": "5438204", "query": "when did lionel messi play his first game for barcelona", "answer": "2002", "passage": "\"Lionel Messi\"\nmother moved back to Rosario with his brothers and little sister, María Sol, while he stayed in Barcelona with his father. After a year at Barcelona's youth academy, La Masia, Messi was finally enrolled in the Royal Spanish Football Federation (RFEF) in February 2002. Now playing in all competitions, he befriended his teammates, among whom were Cesc Fàbregas and Gerard Piqué. After completing his growth hormone treatment aged 14, Messi became an integral part of the \"\"Baby Dream Team\"\", Barcelona's greatest-ever youth side. During his first full season (2002–03), he was top scorer with 36 goals in 30 games for"} +{"qid": "test339", "pid": "17344746", "query": "where did students for a democratic society start", "answer": "Ann Arbor, Michigan", "passage": "\"Students for a Democratic Society\"\noriented, making it more difficult to recruit students. Moreover, because the LID's leadership did not correspond to the expectations and the mood on the campuses, the SLID felt the need to dissociate itself from its parent organization. SDS held its first meeting in 1960 on the University of Michigan campus at Ann Arbor, Michigan, where Alan Haber was elected president. Its political manifesto, known as the Port Huron Statement, was adopted at the organization's first convention in 1962, based on an earlier draft by staff member Tom Hayden. The Port Huron Statement criticized the political system of the United States"} +{"qid": "test3390", "pid": "14130300", "query": "the boards name on ed edd and eddy", "answer": "Plank", "passage": "\"Ed, Edd n Eddy (season 1)\"\nJuly 18, 2007. The DVD is in English (Dolby Digital Stereo), and is dubbed in French and Spanish, with subtitles in English, Spanish and French. The set includes special features such as an interview with the creator, \"\"How to make an Ed, Edd n Eddy cartoon\"\", \"\"How to Draw Eddy\"\" and a Cartoon Network commercial bumper featuring Jimmy and Plank. The season is available for download on the iTunes Store. The \"\"Fools' Per-Ed-Ise\"\" and \"\"The Complete First Season\"\" DVDs can also be purchased on the Cartoon Network Shop. Ed, Edd n Eddy (season 1) The first season of the"} +{"qid": "test3392", "pid": "1304080", "query": "the area enclosed by hysteresis loop is a measure of", "answer": "energy loss", "passage": "Hysteresis\na memory, for example magnetic tape, hard disks, and credit cards. In these applications, \"\"hard\"\" magnets (high coercivity) like iron are desirable so the memory is not easily erased. Magnetically \"\"soft\"\" (low coercivity) iron is used for the cores in electromagnets. The low coercivity reduces that energy loss associated with hysteresis. The low energy loss during a hysteresis loop is also the reason why soft iron is used for transformer cores and electric motors. Electrical hysteresis typically occurs in ferroelectric material, where domains of polarization contribute to the total polarization. Polarization is the electrical dipole moment (either C·m or C·m)."} +{"qid": "test3394", "pid": "18938990", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nDrama Series. The recurring actors listed here are those who appeared in season 7. They are listed by the region in which they first appear. Series creators and executive producers David Benioff and D. B. Weiss serve as showrunners for the seventh season. The directors for the seventh season are Jeremy Podeswa (episodes 1 and 7), Mark Mylod (episodes 2 and 3), Matt Shakman (episodes 4 and 5) and Alan Taylor (episode 6). This marks Taylor's return to the series after an absence since the second season. Shakman is a first-time \"\"Game of Thrones\"\" director, with the rest each"} +{"qid": "test3394", "pid": "18668996", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Dave Hill (screenwriter)\"\neach. Dave Hill (screenwriter) Dave Hill is an American television writer. He is known for writing three episodes of the HBO series \"\"Game of Thrones\"\": in season 5, \"\"Sons of the Harpy\"\"; in season 6, \"\"Home\"\"; and in season 7, \"\"Eastwatch\"\". Dave Hill began working as an assistant to \"\"Game of Thrones\"\" executive producers/writers David Benioff and D.B. Weiss in season 2. In 2014, Hill became a staff writer for the fifth season and was assigned to write an episode. He was credited as story editor on Season 6 and executive story editor on Season 7, and wrote an episode"} +{"qid": "test3394", "pid": "18668995", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Dave Hill (screenwriter)\"\nDave Hill (screenwriter) Dave Hill is an American television writer. He is known for writing three episodes of the HBO series \"\"Game of Thrones\"\": in season 5, \"\"Sons of the Harpy\"\"; in season 6, \"\"Home\"\"; and in season 7, \"\"Eastwatch\"\". Dave Hill began working as an assistant to \"\"Game of Thrones\"\" executive producers/writers David Benioff and D.B. Weiss in season 2. In 2014, Hill became a staff writer for the fifth season and was assigned to write an episode. He was credited as story editor on Season 6 and executive story editor on Season 7, and wrote an episode for"} +{"qid": "test3394", "pid": "18939007", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\non-demand viewing for one hour before being removed. Data from piracy monitoring firm MUSO indicates that season seven was pirated more than one billion times mostly by unauthorized streaming, with torrent and direct downloads accounting for about 15 percent of this piracy. On average, each episode is estimated to have been pirated 140 million times, making \"\"Game of Thrones\"\" the most-pirated television series in 2017. Game of Thrones (season 7) The seventh and penultimate season of the fantasy drama television series \"\"Game of Thrones\"\" premiered on HBO on July 16, 2017, and concluded on August 27, 2017. Unlike previous seasons"} +{"qid": "test3394", "pid": "20240330", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Dragonstone (Game of Thrones)\"\na blistering opening salvo, \"\"Game of Thrones\"\" charts an assured path for its anxiously-anticipated final stretch.\"\" Matt Fowler of IGN wrote in his review for the episode \"\"'Dragonstone' sublimely set the stage for \"\"Game of Thrones\"\" Season 7 with some righteous revenge, a new alliance, a dramatic (and quiet) homecoming, and a surprisingly great sequence from The Hound as he began to atone for his old life.\"\" He gave the episode an 8.8 out of 10. Erik Kain of \"\"Forbes\"\" similarly gave praise to the episode, writing \"\"This was easily one of my favorite season premieres of any season of"} +{"qid": "test3394", "pid": "18938999", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nseason of the series includes its longest episode, with the finale running for 81 minutes. The penultimate episode also runs for 71 minutes – around 16 minutes longer than an average \"\"Game of Thrones\"\" episode. The first five episodes mostly run longer than average (55 minutes), at 59, 59, 63, 50, and 59 minutes respectively. The previous longest episode in the series was the sixth-season finale, \"\"The Winds of Winter\"\", which ran for 69 minutes. Ramin Djawadi returned as the composer of the show for the seventh season. On Metacritic, the season (based on the first episode) has a score"} +{"qid": "test3394", "pid": "18938987", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nGame of Thrones (season 7) The seventh and penultimate season of the fantasy drama television series \"\"Game of Thrones\"\" premiered on HBO on July 16, 2017, and concluded on August 27, 2017. Unlike previous seasons that consisted of ten episodes each, the seventh season consisted of only seven. Like the previous season, it largely consisted of original content not found in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series, while also incorporating material Martin revealed to showrunners about the upcoming novels in the series. The series was adapted for television by David Benioff and D. B. Weiss."} +{"qid": "test3394", "pid": "4481681", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Mastodon (band)\"\nThrone Vol. 2\"\" mixtape to promote the fifth season of the HBO TV series Game of Thrones. Dailor, Hinds, and Kelliher also appeared in episode 8 of the season as wildlings. This mixtape will also feature songs by various other acts, ranging from Killswitch Engage to Snoop Dogg. Hinds and Kelliher once again returned to Game of Thrones as wights among the White Walker army for the season 7 finale episode, \"\"The Dragon and the Wolf\"\". The band's seventh studio album \"\"Emperor of Sand\"\" was released on March 31, 2017. The theme for the album was cancer, inspired by Troy's"} +{"qid": "test3394", "pid": "3042632", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"The Most Dangerous Game\"\nSeason 7, Episode 12 of \"\"Futurama\"\", \"\"31st Century Fox\"\", Bender becomes the target of a fox hunting club and is referred to as 'the most dangerous game.' In Season 2 Episode 6 of \"\"The Blacklist\"\", Elizabeth Keen and her FBI task force encounters a family in Idaho who trained the mother's youngest son to hunt and kill humans kidnapped by the eldest son. In the Season 3, Episode 5 episode of \"\"Archer\"\", \"\"El Contador\"\", Lana and Archer are hunted by a drug lord. In an episode of Season 5 of \"\"Game of Thrones\"\", there is a scene in which Ramsay"} +{"qid": "test3394", "pid": "18938997", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 7)\"\nfifth season. New York Mets baseball pitcher Noah Syndergaard made a background cameo as a javelin-throwing Lannister soldier in \"\"The Spoils of War.\"\" On April 21, 2016, HBO officially ordered the seventh season of \"\"Game of Thrones\"\", just three days prior to the premiere of the show's sixth season. In a June 2016 interview with \"\"Variety\"\", co-creators David Benioff and D. B. Weiss revealed the seventh season would likely consist of fewer episodes, stating at the time of the interview that they were \"\"down to our final 13 episodes after this season. We're heading into the final lap.\"\" Director Jack"} +{"qid": "test3394", "pid": "10430613", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Mark Mylod\"\nand executive-produced the pilot episode of the U.S. version of the dramedy, \"\"Shameless\"\", for Showtime. He remains a co-executive producer and frequent director on the series. In 2011, Mylod directed and executive-produced the pilot of the ABC fantasy series \"\"Once Upon a Time\"\". In 2014, he directed the pilot episode for American TV Series \"\"The Affair\"\". In 2014 he directed episodes 3 and 4 of Season 5 of the HBO series \"\"Game of Thrones\"\". He came back for Season 6, where he directed episode 7 and 8 and episode 2 of season 7. Mylod is married to costume designer Amy"} +{"qid": "test3394", "pid": "16475193", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Bryan Cogman\"\nBryan Cogman Bryan Cogman is an American television writer and producer. He is known for writing ten episodes of the HBO series \"\"Game of Thrones\"\": in season 1, \"\"Cripples, Bastards, and Broken Things\"\"; in season 2, \"\"What Is Dead May Never Die\"\"; in season 3, \"\"Kissed by Fire\"\"; in season 4, \"\"Oathkeeper\"\" and \"\"The Laws of Gods and Men\"\"; in season 5, \"\"Kill the Boy\"\" and \"\"Unbowed, Unbent, Unbroken\"\"; in season 6, \"\"Blood of My Blood\"\" and \"\"The Broken Man\"\"; and in season 7, \"\"Stormborn\"\". He is the author of the book \"\"Inside HBO's Game of Thrones\"\" which features a"} +{"qid": "test3394", "pid": "20049005", "query": "how many episodes in game if thrones season 7", "answer": "seven", "passage": "\"Game of Thrones (season 8)\"\nto premiere in April 2019. Ramin Djawadi is set to return as the composer of the show for the eighth season. On December 6, 2018, HBO released the first official teaser trailer for the eighth season. Game of Thrones (season 8) The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Unlike the first six seasons that each had ten episodes and the seventh that had seven episodes, the eighth season will have only six episodes. Like the previous season, it will largely consist of original content not found"} +{"qid": "test3394", "pid": "17142220", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 4)\"\nWeiss co-directed the season premiere after making their directorial debut in season 3, although only Weiss is credited as Benioff received credit for their previous directed episode; Alex Graves, who directed two episodes in season 3, returned and directed episodes 2, 3, 8 and 10; Michelle MacLaren, who also directed two episodes in season 3, returned to direct episodes 4 and 5; former series cinematographer Alik Sakharov, who directed in seasons 2 and 3, returned to direct episodes 6 and 7; and Neil Marshall directed episode 9 after previously directing \"\"Blackwater\"\", the ninth episode of season 2. The fourth season"} +{"qid": "test3394", "pid": "18135460", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 6)\"\nfor the sixth season includes executive producers and showrunners David Benioff and D. B. Weiss, producer Bryan Cogman and Dave Hill. Author George R. R. Martin, who had written one episode for each of the first four seasons, did not write an episode for the sixth season, as he was working to finish writing the sixth \"\"A Song of Ice and Fire\"\" novel, \"\"The Winds of Winter\"\". The directing staff for the sixth season was Jeremy Podeswa (episodes 1 and 2), Daniel Sackheim (episodes 3 and 4), Jack Bender (episodes 5 and 6), Mark Mylod (episodes 7 and 8), and"} +{"qid": "test3394", "pid": "18135436", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Game of Thrones (season 5)\"\nCogman, and Dave Hill, who was promoted to staff writer this season after previously working as an assistant to Benioff and Weiss. Author George R. R. Martin, who had written one episode for each of the first four seasons, did not write an episode for the fifth season as he was working to finish writing the sixth novel of the series, \"\"The Winds of Winter\"\". The directing staff for the fifth season is Michael Slovis (episodes 1 and 2), Mark Mylod (episodes 3 and 4), Jeremy Podeswa (episodes 5 and 6), Miguel Sapochnik (episodes 7 and 8), and David Nutter"} +{"qid": "test3394", "pid": "20048998", "query": "how many episodes in game if thrones season 7", "answer": "seven", "passage": "\"Game of Thrones (season 8)\"\nGame of Thrones (season 8) The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Unlike the first six seasons that each had ten episodes and the seventh that had seven episodes, the eighth season will have only six episodes. Like the previous season, it will largely consist of original content not found currently in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series and will also adapt material Martin has revealed to showrunners about the upcoming novels in the series, \"\"The Winds of Winter\"\" and \"\"A"} +{"qid": "test3394", "pid": "16257215", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"Noah Syndergaard\"\nwhich raises money to fight Sjögren's disease, an autoimmune disease from which his mother suffers. In 2017 the Mets collaborated with Marvel Comics to put out a Noah Syndeggard as Thor bobblehead and held fan giveaways of the souvenir at games at Citi Field during the 2017 and 2018 seasons. Syndergaard has made several appearances on television shows. In 2017, he made a cameo appearance in \"\"The Spoils of War\"\", a Season 7 episode of \"\"Game of Thrones\"\" on HBO, in which he played an unnamed Lannister spearman in the episode's climactic battle. Syndergaard appeared in a Season 1 episode"} +{"qid": "test3394", "pid": "15804667", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"The Specials (TV series)\"\nweb series by D. B. Weiss (co-creator of \"\"Game of Thrones\"\"). Together, and with the help of Rosie O'Donnell they brought it to executives at OWN, including Oprah Winfrey. OWN acquired two seasons of the show. Season 1 consists of the web series with some extra footage recut into six 21-minute episodes. It launched together with season 2 on OWN as a back-to-back marathon on 7 September 2014. Season 2 consists of seven 21-minute episodes. It premiered together with season 2 on OWN as a back-to-back marathon on 7 September 2014. It picks up 2 years after the end of"} +{"qid": "test3394", "pid": "12037975", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"The Mole (U.S. season 4)\"\n\"\"Clucks for Bucks\"\": When Ahmad explained the rules of the Clucks for Bucks game, the example he showed had the number 7, which even Angie noted. Episode 4 \"\"Still Life\"\": The painting with Ahmad and a mole also contained a flag with the number 7. Episode 5 \"\"Donkey Rally\"\": Angie convinced Mark to take a chihuahua with the number 7 on it. \"\"The Graduate\"\": The answer to the first question, \"\"The Earth has how many continents?\"\", was 7. The answers to the next two questions started with the mole's initials, Antarctica & Equator. The answer to the 7th question, \"\"Make"} +{"qid": "test3394", "pid": "157544", "query": "how many episodes in game if thrones season 7", "answer": "7", "passage": "\"George R. R. Martin\"\na dozen Emmy Awards, including Outstanding Drama Series. By the end of 2016, all seasons up to season 6 (which premiered on April 24, 2016) had been aired on HBO and all seasons had been released on DVD and/or Blu-ray for home viewing (see List of Game of Thrones episodes). The company confirmed on July 18, 2016 that season 7 would consist of seven episodes instead of the usual ten, and would premiere later than usual, in mid-2017, because of the later filming schedule. This was necessary in order to be shooting during the winter season in Europe. Season 7"} +{"qid": "test3394", "pid": "17440543", "query": "how many episodes in game if thrones season 7", "answer": "seven", "passage": "\"Game of Tones\"\nGame of Tones \"\"Game of Tones\"\" is the twenty-third episode of the seventh season of the animated sitcom \"\"Futurama\"\". It originally aired on Comedy Central on August 14, 2013. The episode was written by Michael Rowe and directed by Edmund Fong. The Planet Express crew enter Fry's dreams and find themselves back in the year 1999 in search of a mysterious alien song. The title is a spoof of \"\"Game of Thrones\"\", while the episode as a whole makes many references to \"\"Close Encounters of the Third Kind\"\" and \"\"Inception\"\", and the plot contains many similarities to \"\"\"\". Earth is"} +{"qid": "test3394", "pid": "12800963", "query": "how many episodes in game if thrones season 7", "answer": "seven", "passage": "\"Game of Thrones\"\ncontent. In April 2016, the showrunners' plan was to shoot 13 more episodes after the sixth season: seven episodes in the seventh season and six episodes in the eighth. Later that month, the series was renewed for a seventh season with a seven-episode order. Eight seasons were ordered and filmed, adapting the novels at a rate of about 48 seconds per page for the first three seasons. The first two seasons adapted one novel each. For the later seasons, its creators see \"\"Game of Thrones\"\" as an adaptation of \"\"A Song of Ice and Fire\"\" as a whole rather than"} +{"qid": "test3397", "pid": "7083140", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "Mexico\nde las Banderas. The Spanish conquest of the Aztec Empire began in February 1519 when Hernán Cortés arrived at the port in Veracruz with ca. 500 conquistadores. After taking control of that city, he moved on to the Aztec capital. In his search for gold and other riches, Cortés decided to invade and conquer the Aztec empire. When the Spaniards arrived, the ruler of the Aztec empire was Moctezuma II, who was later killed. His successor and brother Cuitláhuac took control of the Aztec empire, but was among the first to fall from the first smallpox epidemic in the area"} +{"qid": "test3397", "pid": "11617780", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"K'iche' kingdom of Q'umarkaj\"\nto leave his kingdom, not to return. However, in 1510 when Aztec emissaries from Moctezuma II arrived in Q'umarkaj to request tribute from the K'iche they saw themselves forced to accept vassalage to the Aztecs. From 1510 to 1521 Aztec influence at Q'umarkaj increased and the K'iche lord 7 Noj also married two daughters of the Aztec ruler, further cementing the Aztec lordship, by becoming his son in-law. During this period Q'umarkaj also became known as \"\"Utatlán\"\", the Nahuatl translation of the placename. When the Aztecs were defeated by the Spanish in 1521 they sent messengers to the K'iche' ruler"} +{"qid": "test3397", "pid": "12826043", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"Mexican nobility\"\nMexican nobility The Political Constitution of Mexico has prohibited the state from granting any titles of nobility since 1917. The United Mexican States do not issue or recognize titles of nobility or hereditary prerogatives and honors. The Aztecs and other Indigenous peoples in Mexico had a system of hereditary aristocracy in place when the Spanish arrived in Mexico. The Spaniards respected this system and added to it, resulting in many unions between Aztec and Spanish nobility. Descendents of the elites of pre-Columbian Mexico who received these distinctions included the heirs of the Aztec ruler Moctezuma II; That family became known"} +{"qid": "test3397", "pid": "17524760", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"Maria Bartola\"\nMaria Bartola Maria Bartola was a 16th-century Aztec woman and is referred to as the first historian of Mexico. Moctezuma II, ruler of the Aztec Empire prior to the arrival of Spanish conquistadors, had a brother named Cuitláhuac. When Moctezuma II was killed in the battles against Hernán Cortés, Cuitláhuac became his successor. Cuitláhuac died early into his tenure. His daughter Maria Bartola, so christened by the Spanish, lived on through the violent period of the Spanish siege of the Aztec capital city, Tenochtitlan. Through her own experiences witnessing this siege, sometimes from the battle field itself, “she began to"} +{"qid": "test3397", "pid": "17524761", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"Maria Bartola\"\nwrite a history of her time.” Unfortunately, her writing has not survived for the Spaniards burned it. It is thanks to historian Fernando de Alva Cortés Ixtlilxochitl that we know of her work and of her. Maria Bartola Maria Bartola was a 16th-century Aztec woman and is referred to as the first historian of Mexico. Moctezuma II, ruler of the Aztec Empire prior to the arrival of Spanish conquistadors, had a brother named Cuitláhuac. When Moctezuma II was killed in the battles against Hernán Cortés, Cuitláhuac became his successor. Cuitláhuac died early into his tenure. His daughter Maria Bartola, so"} +{"qid": "test3397", "pid": "9342721", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "Tlacochcalcatl\n\"\"tlacochcalcatl\"\" was the next ruler: Moctezuma II (Xocoyotzin). The \"\"tlacochcalcatl\"\" of Moctezuma II at the arrival of the Spaniards was Quappiatl. Tlacochcalcatl Tlacochcalcatl ( \"\"The man from the house of darts\"\") was an Aztec military title or rank; roughly equivalent to the modern title of General. In Aztec warfare the \"\"tlacochcalcatl\"\" was second in command only to the \"\"tlatoani\"\" and he usually lead the Aztec army into battle when the ruler was otherwise occupied. Together with the \"\"tlacateccatl\"\" (general), he was in charge of the Aztec army and undertook all military decisions and planning once the \"\"tlatoani\"\" had decided to"} +{"qid": "test3397", "pid": "13475760", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"Tzintzuntzan, Michoacán\"\nwas not only able to hold off invasions by some of the Aztecs' most successful emperors such as Axayacatl, Ahuizotl and Moctezuma II, they inflicted heavy losses on invading Aztec armies and continued extending their dominion. In fact, until the Spanish arrival in the 1520s, the Purépecha had not known military defeat. Tzintzuntzan was a large, prosperous city when the Spanish arrived to conquer the area in the 1520s. At that time, it was governed by Tanganxoán II, who was burned at the stake by Nuño de Guzmán in 1529. It was made the first capital city of Michoacán, until"} +{"qid": "test3397", "pid": "2148473", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"Psilocybin mushroom\"\nof Colima. A \"\"Psilocybe\"\" species was known to the Aztecs as \"\"teōnanācatl\"\" (literally \"\"divine mushroom\"\" - agglutinative form of \"\"teōtl\"\" (god, sacred) and \"\"nanācatl\"\" (mushroom) in Náhuatl) and were reportedly served at the coronation of the Aztec ruler Moctezuma II in 1502. Aztecs and Mazatecs referred to psilocybin mushrooms as genius mushrooms, divinatory mushrooms, and wondrous mushrooms, when translated into English. Bernardino de Sahagún reported ritualistic use of \"\"teonanácatl\"\" by the Aztecs, when he traveled to Central America after the expedition of Hernán Cortés. After the Spanish conquest, Catholic missionaries campaigned against the cultural tradition of the Aztecs, dismissing the"} +{"qid": "test3397", "pid": "97079", "query": "who was the aztec ruler when the spanish arrived", "answer": "Moctezuma II", "passage": "\"Cuitláhuac\"\nCuitláhuac Cuitláhuac (, ) (c. 1476 – 1520) or Cuitláhuac (in Spanish orthography; , , honorific form: Cuitlahuatzin) was the 10th \"\"tlatoani\"\" (ruler) of the Aztec city of Tenochtitlan for 80 days during the year Two Flint (1520). He is credited with leading the Mexica resistance to the Spanish invasion, following the death of his kinsman Moctezuma II. Cuitláhuac was the eleventh son of the ruler Axayacatl and a younger brother of Moctezuma II, the late ruler of Tenochtitlan, who died during the Spanish occupation of the city. His mother's father, also called Cuitlahuac, had been ruler of Iztapalapa, and"} +{"qid": "test3398", "pid": "14372579", "query": "who plays nikko in the wizard of oz", "answer": "Patrick Walshe", "passage": "\"Pat Walshe\"\nof his work, but was still well remembered for his appearance in the classic \"\"The Wizard of Oz\"\". On December 11, 1991, in Los Angeles, Walshe died of a heart attack at the age of 91. At this time he was the last surviving credited cast member of \"\"The Wizard of Oz\"\". His resting place is Westwood Memorial Park. Pat Walshe Patrick Walshe (July 26, 1900 – December 11, 1991) was an American dwarf character actor and circus performer who specialized portraying animals (animal impersonating). He is best known for playing Nikko, the head of the Winged Monkeys in \"\"The"} +{"qid": "test3398", "pid": "14372565", "query": "who plays nikko in the wizard of oz", "answer": "Patrick Walshe", "passage": "\"Pat Walshe\"\nPat Walshe Patrick Walshe (July 26, 1900 – December 11, 1991) was an American dwarf character actor and circus performer who specialized portraying animals (animal impersonating). He is best known for playing Nikko, the head of the Winged Monkeys in \"\"The Wizard of Oz\"\". He appeared in only a few films, as most of his work was in theater, vaudeville and circus. Walshe was born as Patrick Walshe, on July 26, 1900, in New York City. Living his early years in Brooklyn, Walshe suffered from a form of restricted growth, and as a result never grew to be taller than"} +{"qid": "test34", "pid": "11543026", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Leeds United F.C.–Manchester United F.C. rivalry\"\nCounty Cricket Club. Although the clubs cover the larger county region, Yorkshire are based in Leeds and play at the Headingley Stadium, while Lancashire play at the Old Trafford Cricket Ground in Manchester, close to the football stadium of the same name. Manchester is now in the metropolitan county of Greater Manchester, while Leeds is now in the metropolitan county of West Yorkshire. A direct rivalry between the cities of Leeds and Manchester sprang up during the Industrial Revolution in Britain during the 18th and 19th centuries. The entire country was going through an unprecedented phase of economic growth and"} +{"qid": "test34", "pid": "10677229", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Sport in Manchester\"\nCentre Two Premier League football clubs, Manchester United and Manchester City , bear the city's name. Manchester City's home ground, the City of Manchester Stadium, is two miles outside Manchester city centre in east Manchester and Manchester United’s, Old Trafford, the largest club football ground in the United Kingdom, on the west side two miles from the city centre. Both City and United, as of 2001, had a highly localised fanbase with the majority of season ticket holding fans in the outer postal areas (BL, OL, SK, and WA) of Greater Manchester and within other counties of the North-west Only"} +{"qid": "test34", "pid": "3143060", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Old Trafford\"\none timber-built platform immediately adjacent to the stadium and this opened on 21 August 1935. It was initially named United Football Ground, but was renamed Old Trafford Football Ground in early 1936. It was served on match days only by a shuttle service of steam trains from Manchester Central railway station. It is currently known as Manchester United Football Ground. Construction was carried out by Messrs Brameld and Smith of Manchester and development was completed in late 1909. The stadium hosted its inaugural game on 19 February 1910, with United playing host to Liverpool. However, the home side were unable"} +{"qid": "test34", "pid": "266425", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Manchester United F.C.\"\nManchester United F.C. Manchester United Football Club, commonly known as Man United, or simply United, is a professional football club based in Old Trafford, Greater Manchester, England, that competes in the Premier League, the top flight of English football. Nicknamed \"\"the Red Devils\"\", the club was founded as Newton Heath LYR Football Club in 1878, changed its name to Manchester United in 1902 and moved to its current stadium, Old Trafford, in 1910. Manchester United have won more trophies than any other club in English football, with a record 20 League titles, 12 FA Cups, 5 League Cups and a"} +{"qid": "test34", "pid": "269497", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "Manchester\nIslamic High School for Girls, and The King David High School) while three managed 25% or below (Plant Hill Arts College, North Manchester High School for Boys, Brookway High School and Sports College). Manchester is well known for being a city of sport. Two decorated Premier League football clubs bear the city name – Manchester United and Manchester City. Although Manchester United play its home games at Old Trafford, in the neighbouring Greater Manchester borough of Trafford, the largest club football ground in the United Kingdom. Manchester City's home ground is the City of Manchester Stadium (also known as the"} +{"qid": "test34", "pid": "5300733", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"History of Manchester United F.C. (1945–69)\"\nHistory of Manchester United F.C. (1945–69) Manchester United Football Club is an English professional football club, based in Old Trafford, Greater Manchester, that plays in the Premier League. Founded as Newton Heath LYR Football Club in 1878, and changed its name to Manchester United in 1902. United had been league champions in 1908 and 1911, as well as winning the FA Cup in 1909, but the interwar years were less successful as financial problems blighted the club, who spent the 1920s, and 1930s bouncing between the First and Second Divisions. The club's Old Trafford stadium was then severely damaged in"} +{"qid": "test34", "pid": "5300767", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"History of Manchester United F.C. (1945–69)\"\nreplace Harry Gregg. History of Manchester United F.C. (1945–69) Manchester United Football Club is an English professional football club, based in Old Trafford, Greater Manchester, that plays in the Premier League. Founded as Newton Heath LYR Football Club in 1878, and changed its name to Manchester United in 1902. United had been league champions in 1908 and 1911, as well as winning the FA Cup in 1909, but the interwar years were less successful as financial problems blighted the club, who spent the 1920s, and 1930s bouncing between the First and Second Divisions. The club's Old Trafford stadium was then"} +{"qid": "test34", "pid": "7651368", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Manchester United Football Ground railway station\"\nchange to the current name is not known. The station has a direct connection to the Old Trafford football stadium and the platform is adjacent to the south stand of the stadium. The station is not a regularly served stop on the line and is only open on match days – when Northern run services to the halt; Northern also manage and operate the single platform. Since 2018, matchday services to and from Old Trafford do not operate due to insufficient capacity on the line since the introduction of more services in the May 2018 timetable. Manchester United Football Ground"} +{"qid": "test34", "pid": "3319222", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Salford Quays\"\nof 2013, the exhibition is dedicated to Medicine Through Time. The museum also currently has a large artefact from the New York 9/11 Twin Tower disaster. Manchester United are a Premier League football club based in the Old Trafford section of the Quays. Their stadium Old Trafford stands with a capacity of 74,994, it is the largest club football stadium (and second largest football stadium overall after Wembley Stadium) in the United Kingdom. Manchester United are known for their working class vocal supporters and originally drew large amounts of their support from the dockers that worked on the former Manchester"} +{"qid": "test34", "pid": "19843277", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"White City Stadium (Manchester)\"\nWhite City Stadium (Manchester) White City Stadium was a greyhound racing and speedway stadium in Greater Manchester. Manchester is synonymous with greyhound racing because Belle Vue Stadium became the first greyhound track in the United Kingdom and Ireland to hold oval course racing in 1926. One year later on 1 November 1927 the remaining eleven acres out of a sixteen-acre plot of land belonging to the Royal Botanical Gardens was sold to Canine Sports Ltd and a stadium was speedily constructed. The stadium in the Old Trafford area was south of the Chester Road tramway and north of Talbot Road."} +{"qid": "test34", "pid": "6198176", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"F.E.A.R. (song)\"\nclip of the instrumental version appears at the end of the LP version of \"\"Music of the Spheres\"\"; this is a tribute to Marvin Gaye's \"\"What's Going On\"\" which also featured a clip of the lead track at the end of the album. The song has influenced a fan-made banner on the Stretford End at English football club Manchester United's home stadium Old Trafford. The sign reads \"\"For Everymanc A Religion\"\", a take on the lyric \"\"For everyman a religion\"\". Brown himself is a life-long supporter of Manchester United. The song appears on the \"\"\"\" episode \"\"A Night at the"} +{"qid": "test34", "pid": "3143053", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Old Trafford\"\nOld Trafford Old Trafford is a football stadium in Old Trafford, Greater Manchester, England, and the home of Manchester United. With a capacity of 74,994, it is the largest club football stadium (and second largest football stadium overall after Wembley Stadium) in the United Kingdom, and the eleventh-largest in Europe. It is about from Old Trafford Cricket Ground and the adjacent tram stop. Nicknamed \"\"The Theatre of Dreams\"\" by Bobby Charlton, Old Trafford has been United's home ground since 1910, although from 1941 to 1949 the club shared Maine Road with local rivals Manchester City as a result of Second"} +{"qid": "test34", "pid": "6218718", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"Manchester Blitz\"\nhours. In June 1941 German bombs damaged the original Salford Royal Hospital on Chapel Street at the junction with Adelphi Street, killing 14 nurses. On 11 March 1941 Old Trafford football stadium, the home of Manchester United F.C., was hit by a bomb aimed at the industrial complex of Trafford Park, wrecking the pitch and demolishing the stands. The stadium was rebuilt after the war and reopened in 1949, until which time United played at Manchester City's Maine Road stadium. In June 1941 German bombs damaged the police headquarters. Manchester continued to be bombed by the \"\"Luftwaffe\"\" throughout the war,"} +{"qid": "test34", "pid": "5198287", "query": "what is the name of manchester united stadium", "answer": "Old Trafford", "passage": "\"History of Manchester United F.C. (1878–1945)\"\nfor a direct interest in running the club. As a mark of this fresh start, on 24 April 1902, the club's name was changed to \"\"Manchester United\"\". Under Ernest Mangnall, who became club secretary in 1903, the team finished as Second Division runners-up in 1906 and secured promotion to the First Division, which it won in 1908 – the club's first league title. The following season began with victory in the first ever Charity Shield and ended with the club's first FA Cup title. Manchester United moved to a new stadium at Old Trafford in 1910, and won the First"} +{"qid": "test3400", "pid": "703548", "query": "who founded mission nuestra senora de la soledad", "answer": "the Franciscan order", "passage": "\"Mission Nuestra Señora de la Soledad\"\nMission Nuestra Señora de la Soledad Mission Nuestra Señora de la Soledad, known colloquially as the Soledad Mission or Mission Soledad, is a Spanish mission located near the present-day town of Soledad, California. The mission was founded by the Franciscan order on October 9, 1791 to convert the Native Americans living in the area to Catholicism. It was the thirteenth of California's Spanish missions, and is named for Mary, Our Lady of Solitude. The town of Soledad is named for the mission. After the 1835 secularization of the mission and the later sale of building materials, the mission fell into"} +{"qid": "test3400", "pid": "703552", "query": "who founded mission nuestra senora de la soledad", "answer": "the Franciscan order", "passage": "\"Mission Nuestra Señora de la Soledad\"\nCatholic chapel and public museum. Mission Nuestra Señora de la Soledad Mission Nuestra Señora de la Soledad, known colloquially as the Soledad Mission or Mission Soledad, is a Spanish mission located near the present-day town of Soledad, California. The mission was founded by the Franciscan order on October 9, 1791 to convert the Native Americans living in the area to Catholicism. It was the thirteenth of California's Spanish missions, and is named for Mary, Our Lady of Solitude. The town of Soledad is named for the mission. After the 1835 secularization of the mission and the later sale of building"} +{"qid": "test3400", "pid": "703549", "query": "who founded mission nuestra senora de la soledad", "answer": "Fermín Francisco de Lasuén", "passage": "\"Mission Nuestra Señora de la Soledad\"\na state of disrepair and soon after was left in ruins. A restoration project began in 1954 and a new chapel was dedicated in 1955. The chapel now functions as a chapel of Our Lady of Solitude, a parish church of the Diocese of Monterey. The priests' residence was later recreated, and functions as a museum. Mission Nuestra Señora de la Soledad, \"\"La Misión de María Santísima, Nuestra Señora Dolorosísima de la Soledad\"\", was founded October 9, 1791 by Fermín Francisco de Lasuén, the 13th of 21 missions in California. The Chalon, a subgroup of the Ohlone were converted and"} +{"qid": "test3400", "pid": "1012863", "query": "who founded mission nuestra senora de la soledad", "answer": "Fermín Francisco de Lasuén", "passage": "\"Soledad, California\"\nSoledad, California Soledad is a city in Monterey County, California, United States. Soledad is located southeast of Salinas, at an elevation of 190 feet (58 m). The population was 25,738 at the 2010 census. The town is located near the Spanish mission, Mission Nuestra Señora de la Soledad (the mission of Our Lady of Solitude), founded October 9, 1791 by Fermín Francisco de Lasuén, the 13th of 21 missions in California. The town's name comes from the mission. Soledad is seated at the heart of one of the most economically productive and technologically advanced agricultural regions in the world; hence,"} +{"qid": "test3400", "pid": "1012883", "query": "who founded mission nuestra senora de la soledad", "answer": "Fermín Francisco de Lasuén", "passage": "\"Soledad, California\"\nis Salinas Valley State Prison, which opened in 1996. Soledad, California Soledad is a city in Monterey County, California, United States. Soledad is located southeast of Salinas, at an elevation of 190 feet (58 m). The population was 25,738 at the 2010 census. The town is located near the Spanish mission, Mission Nuestra Señora de la Soledad (the mission of Our Lady of Solitude), founded October 9, 1791 by Fermín Francisco de Lasuén, the 13th of 21 missions in California. The town's name comes from the mission. Soledad is seated at the heart of one of the most economically productive"} +{"qid": "test3401", "pid": "20482569", "query": "the lowest temperature at which a lubricant will flow is called the", "answer": "pour point", "passage": "\"Pour point depressant\"\nfollowing winter, along with reports that oil would not flow out of containers. The issue seemed to be caused by olefin copolymers which caused the oil to gel in cold temperatures. Pour point depressant Pour point depressants are used to allow the use of petroleum based mineral oils at lower temperatures. The lowest temperature at which a fuel or oil will pour is called a pour point. Wax crystals, which form at lower temperatures, may interfere with lubrication of mechanical equipment. High-quality pour point depressants can lower a pour point of an oil additive by as much as 40°C. Pour"} +{"qid": "test3401", "pid": "20482566", "query": "the lowest temperature at which a lubricant will flow is called the", "answer": "pour point", "passage": "\"Pour point depressant\"\nPour point depressant Pour point depressants are used to allow the use of petroleum based mineral oils at lower temperatures. The lowest temperature at which a fuel or oil will pour is called a pour point. Wax crystals, which form at lower temperatures, may interfere with lubrication of mechanical equipment. High-quality pour point depressants can lower a pour point of an oil additive by as much as 40°C. Pour point depressants do not lower the temperature at which wax crystals begin to form, called the cloud point, or the amount of wax that is formed—pour point depressants work by altering"} +{"qid": "test3402", "pid": "13107034", "query": "who are the judges on the fisa court", "answer": "Dennis Saylor", "passage": "\"F. Dennis Saylor IV\"\n2003, Saylor was nominated by President George W. Bush to a seat on the United States District Court for the District of Massachusetts vacated by Robert Keeton. Saylor was confirmed by the United States Senate on June 1, 2004, and received his commission on June 2, 2004. He also served a 2011-2018 term on the FISA Court. F. Dennis Saylor IV Frank Dennis Saylor IV (born 1955) is a United States District Judge of the United States District Court for the District of Massachusetts and was formerly a Judge on the United States Foreign Intelligence Surveillance Court. Born in Royal"} +{"qid": "test3403", "pid": "8207881", "query": "when did martial law in the philippines end", "answer": "1981", "passage": "\"History of the Philippines (1965–86)\"\ndeclared his intention to lift martial law by the end of January 1981. The reassuring words for the skeptic came on the occasion of the University of the Philippines law alumni reunion on December 12, 1980 when the President declared: \"\"We must erase once and for all from the public mind any doubts as to our resolve to bring martial law to an end and to minister to an orderly transition to parliamentary government.\"\" The apparent forthright irrevocable commitment was cast at the 45th anniversary celebration of the Armed Forces of the Philippines on December 22, 1980 when the President"} +{"qid": "test3403", "pid": "315910", "query": "when did martial law in the philippines end", "answer": "1981", "passage": "\"Politics of the Philippines\"\ndeclare martial law and suspend the constitution. A new constitution calling for a semi-presidential government was approved in 1973, but Marcos still ruled by decree until 1978, when the Interim Batasang Pambansa was elected. However, opposition groups, whose leaders mostly had already left in exile, boycotted the election, and Marcos still allowed martial law to continue. Marcos did end martial law in 1981, but opposition groups still boycotted the 1981 presidential election, which Marcos easily won. Opposition leader Benigno Aquino, Jr. was slain upon his return to the country in 1983. By this time, the government was marred by alleged"} +{"qid": "test3403", "pid": "7779298", "query": "when did martial law in the philippines end", "answer": "81", "passage": "\"Proclamation No. 1081\"\nwhen Press Secretary Francisco Tatad went on air to read Proclamation No. 1081, through which Marcos declared Martial Law. Ferdinand Marcos himself went on air at 7:15 that evening to formalize the announcement. On the following Morning, September 24, the headline of Benedicto's Daily Express announced \"\"FM Declares Martial Law\"\" - the only newspaper to come out in the immediate aftermath of Martial Law. Martial law was ratified by 90.77% of the voters during the controversial Philippine Martial Law referendum, 1973. After the constitution was approved by 95% of the voters in the Philippine constitutional plebiscite, the 1935 Constitution was"} +{"qid": "test3403", "pid": "20734845", "query": "when did martial law in the philippines end", "answer": "1981", "passage": "\"Martial law under Ferdinand Marcos\"\nFerdinand Marcos was in power actually began seven years earlier, when he was first inaugurated president of the Philippines in late 1965, this article deals specifically with the period where he exercised dictatorial powers under martial law, and the period in which he continued to wield those powers despite technically lifting the proclamation of martial law in 1981. When he declared martial law in 1972, Marcos claimed that he had done so in response to the \"\"communist threat\"\" posed by the newly-founded Communist Party of the Philippines (CPP), and the sectarian \"\"rebellion\"\" of the Mindanao Independence Movement (MIM). Opposition figures"} +{"qid": "test3403", "pid": "12577353", "query": "when did martial law in the philippines end", "answer": "1981", "passage": "\"Martial law in the Philippines\"\n\"\"guests\"\" of the (Chinese) government, feuding bitterly among themselves and with the party leadership in the Philippines\"\". Martial law was lifted by President Marcos on January 17, 1981, through Proclamation 2045, and he continued to rule the country until 1986 when he went to exile after the People Power Revolution. On December 4, 2009, through Proclamation No. 1959, President Gloria Macapagal Arroyo officially placed Maguindanao province under a state of martial law, thereby suspending the privilege of the writ of habeas corpus. Executive Secretary Eduardo Ermita said the step was taken in order to avert the escalation of \"\"lawless\"\" violence"} +{"qid": "test3403", "pid": "8207882", "query": "when did martial law in the philippines end", "answer": "1981", "passage": "\"History of the Philippines (1965–86)\"\nproclaimed: \"\"A few days ago, following extensive consultations with a broad representation of various sectors of the nation and in keeping with the pledge made a year ago during the seventh anniversary of the New Society, I came to the firm decision that martial law should be lifted before the end of January, 1981, and that only in a few areas where grave problems of public order and national security continue to exist will martial law continue to remain in force.\"\" After the lifting of martial law, power remained concentrated with Marcos. One scholar noted how Marcos retained \"\"all martial"} +{"qid": "test3403", "pid": "20734860", "query": "when did martial law in the philippines end", "answer": "81", "passage": "\"Martial law under Ferdinand Marcos\"\nannounced on September 23, 1972. Of the various threats cited in the Proclamation 1081 document as rationalizations for declaration of Martial Law, the most extensively described was the threat supposedly posed by Communist insurgents - specifically the newly formed Communist Party of the Philippines, a Maoist organization which had only recently broken off from the Marxist–Leninist Partido Komunista ng Pilipinas. When Marcos became president in 1965, Philippine policy and politics functioned under a Post-World War II geopolitical framework. After gaining independence from the US after the war, the Philippines had retained strong economic, political and military ties to the United"} +{"qid": "test3406", "pid": "3722987", "query": "how many levels of protein structure are there", "answer": "four", "passage": "\"Protein structure\"\nclassified as nanoparticles, between 1–100 nm. Very large aggregates can be formed from protein subunits. For example, many thousands of actin molecules assemble into a microfilament. A protein generally undergo reversible structural changes in performing its biological function. The alternative structures of the same protein are referred to as different conformational isomers, or simply, conformations, and transitions between them are called conformational changes. There are four distinct levels of protein structure. The primary structure of a protein refers to the sequence of amino acids in the polypeptide chain. The primary structure is held together by peptide bonds that are made"} +{"qid": "test3406", "pid": "19509010", "query": "how many levels of protein structure are there", "answer": "four", "passage": "\"Mosaic protein\"\nMosaic protein Proteins are made up of amino acids which connect by peptide bonds and form into polypeptide chains. There are four levels of protein organization: primary structure- the amino acid sequences; secondary structure- different types of folded shapes (ex: alpha helices and beta sheets); tertiary structure- includes all the different folding that happens on one polypeptide chain; quaternary structure- the combination of multiple polypeptide chains. (Note: not all proteins reach this fourth level of organization). A protein domain is a self-contained protein unit that has its own function within a protein and is folded in a tertiary structure. A"} +{"qid": "test3407", "pid": "11434229", "query": "when is the last time the jaguars won a playoff game", "answer": "2017", "passage": "\"Doug Marrone\"\nthe Jaguars following the firing of former head coach Gus Bradley. He coached the final two games of the 2016 season. On January 9, 2017, the Jaguars officially removed the interim tag and named Marrone the fifth head coach in team history. That same day, the Jaguars also announced the return of Tom Coughlin, their first head coach, who was hired as the Executive Vice President of Football Operations. In 2017, the Jaguars won the AFC South division championship, making the playoffs for the first time since the 2007 season. On January 7, 2018, the Jaguars won their first playoff"} +{"qid": "test3407", "pid": "4554758", "query": "when is the last time the jaguars won a playoff game", "answer": "2017", "passage": "\"1998–99 NFL playoffs\"\n\"\"Monday Night Football\"\". ESPN finally aired a game between these two in 2017 (though they did meet on Sunday night on ESPN once). It was the final home playoff game for the triplets and the last playoff game at Texas Stadium until 2007. Running back Fred Taylor ran for 162 yards and a touchdown as the Jaguars won their first home playoff game in team history. Jacksonville kicker Mike Hollis contributed four field goals. Patriots running back Robert Edwards, who rushed for 1,115 yards and nine touchdowns during the season, was held to 28 yards on 17 carries. The Patriots,"} +{"qid": "test3407", "pid": "12485083", "query": "when is the last time the jaguars won a playoff game", "answer": "2017", "passage": "\"1996 Buffalo Bills season\"\nmeetings with Buffalo. The first ever playoff game for the second-year Jaguars saw the game lead tie or change nine times. Natrone Means rushed for 175 yards and a touchdown while Mark Brunell threw for 239 yards, a score, and two interceptions; in the fourth Jeff Burris ran back a 38-yard score off a Brunell pick. The Jaguars rallied with two fourth-quarter scoring drives ending in a 45-yard field goal from future Bills kicker Mike Hollis. The game turned out to be the last home playoff game for the Bills entering 2017. 1996 Buffalo Bills season The 1996 Buffalo Bills"} +{"qid": "test3407", "pid": "17627210", "query": "when is the last time the jaguars won a playoff game", "answer": "2017", "passage": "\"Blake Bortles\"\nas the Jaguars won, 45–7, helping the team clinch their first playoff berth in 10 years. During Week 16 against the San Francisco 49ers, Bortles finished with a season-best 382 passing yards, 2 touchdowns, and 3 interceptions as the Jaguars lost, 44–33. Despite the loss, the Jaguars clinched the AFC South due to the Titans losing to the Los Angeles Rams. After finishing 10–6, the Jaguars made the playoffs as the 3rd seed in the 2017 NFL Playoffs. In the Wild Card round, Bortles defeated the Buffalo Bills 10–3 in his first playoff game. He completed 12 of 23 passes"} +{"qid": "test3407", "pid": "214557", "query": "when is the last time the jaguars won a playoff game", "answer": "2017", "passage": "\"Jacksonville Jaguars\"\nJacksonville Jaguars The Jacksonville Jaguars are an American professional football franchise based in Jacksonville, Florida. The Jaguars compete in the National Football League (NFL) as a member club of the American Football Conference (AFC) South division. The team plays its home games at TIAA Bank Field. The Jaguars and the Carolina Panthers joined the NFL as expansion teams for the 1995 season. Since their inception, the Jaguars have won division championships in 1998 and 1999 (as members of the now-defunct AFC Central) and 2017 (as members of the AFC South) and have qualified for the playoffs seven times, most recently"} +{"qid": "test3407", "pid": "9915401", "query": "when is the last time the jaguars won a playoff game", "answer": "2017", "passage": "\"2007 Jacksonville Jaguars season\"\nin the playoffs. 2007 Jacksonville Jaguars season The 2007 Jacksonville Jaguars season was the 13th season for the team in the National Football League. They improved upon their 8–8 record in 2006 where they finished third in the AFC South and returned to the playoffs for the first time since 2005. This was the last season that the Jaguars had a winning season and a playoff berth, going on a 9-year drought before ending it in 2017. After the 2006 season, the Jaguars announced that offensive coordinator Carl Smith, special teams coordinator Pete Rodriguez, quarterbacks coach Ken Anderson, and wide"} +{"qid": "test3409", "pid": "5073802", "query": "what is the definition of the word hosanna", "answer": "save, rescue, savior", "passage": "Hosanna\nHosanna Hosanna () is a liturgical word in Judaism and Christianity. In Judaism, it is always used in its original Hebrew form, הושענא \"\"Hoshana\"\". The word \"\"hosanna\"\" (Latin ', Greek , \"\"hōsanná\"\") is from Hebrew , ' and related to Aramaic (ʾōshaʿnā) meaning \"\"save, rescue, savior\"\". In the Hebrew Bible it is used only in verses such as \"\"help\"\" or \"\"save, I pray\"\" (). It is applied in numerous verses of the New Testament including \"\"Hosanna; blessed is the one who comes in the name of the Lord\"\" (), \"\"hosanna in the highest\"\" (); \"\"hosanna to the Son of David\"\""} +{"qid": "test3409", "pid": "5073809", "query": "what is the definition of the word hosanna", "answer": "save, rescue, savior", "passage": "Hosanna\nContextually, he uses the phrase as a cry for help in light of the world's current state of affairs. American comedians Tim and Eric use the phrase \"\"blessed Hosanna\"\" freely in their piece \"\"Morning Prayer with Skott and Behr.\"\" Hosanna Hosanna () is a liturgical word in Judaism and Christianity. In Judaism, it is always used in its original Hebrew form, הושענא \"\"Hoshana\"\". The word \"\"hosanna\"\" (Latin ', Greek , \"\"hōsanná\"\") is from Hebrew , ' and related to Aramaic (ʾōshaʿnā) meaning \"\"save, rescue, savior\"\". In the Hebrew Bible it is used only in verses such as \"\"help\"\" or \"\"save,"} +{"qid": "test3409", "pid": "5073803", "query": "what is the definition of the word hosanna", "answer": "save", "passage": "Hosanna\n(). In that context, the word Hosanna seems to be a \"\"special kind of respect\"\" given to the one who saves, saved, will save or is saving now. If so Hosanna means \"\"a special honor to the one who saves\"\". The old interpretation \"\"Save, now!\"\", based on Psalm 118:25, does not fully explain the occurrence of the word in the Gospels as a shout of jubilation, and this has given rise to complex discussions. In a liturgical context, it refers to a cry expressing an appeal for divine help. The grandson of Prophet Muhammed, and the son of Ali was"} +{"qid": "test3409", "pid": "14335874", "query": "what is the definition of the word hosanna", "answer": "save", "passage": "\"Hosanna (A. R. Rahman song)\"\nsung by Leon D'Souza & Maria Roe Vincent and the interlude Hosanna humming by Suzanne D'Mello. The song became very popular in all versions and was #1 in the year end music charts of 2010. The song is woven around the word Hosanna which is considered sacred and used in liturgy by Jews and Christians. The word is a shout of adoration and literally means \"\"save now\"\". In the movie, it is a soulful romantic song which express the joy in the heart and soul of a guy who comes across his beloved. The song has rap interludes in between"} +{"qid": "test341", "pid": "17319615", "query": "when was last time bayern munich won champions league", "answer": "2000–01", "passage": "\"2000–01 UEFA Champions League knockout stage\"\ntimes Central European Time () \"\"All times Central European Time () \"\"Leeds United won 3–2 on aggregate.\"\" \"\"2–2 on aggregate. Valencia won on away goals.\"\" \"\"Real Madrid won 5–3 on aggregate.\"\" \"\"Bayern Munich won 3–1 on aggregate.\"\" \"\"All times Central European Time () \"\"All times Central European Time () \"\"Valencia won 3–0 on aggregate.\"\" \"\"Bayern Munich won 3–1 on aggregate.\"\" 2000–01 UEFA Champions League knockout stage The knockout stage of the 2000–01 UEFA Champions League featured the eight teams that had finished in the top two of each of the four groups in the second group stage and lasted from"} +{"qid": "test341", "pid": "20303051", "query": "when was last time bayern munich won champions league", "answer": "2013", "passage": "\"2018 DFB-Pokal Final\"\nchampions of the 2017–18 edition of the Bundesliga, Bayern Munich. Frankfurt also earned automatic qualification for the group stage of the 2018–19 edition of the UEFA Europa League. The match was the 22nd final for Bayern Munich, a competition record. Of the previous finals, Bayern had won on 18 occasions, also a competition record, and lost three times. Bayern's last final appearance was in 2016, where they won on penalties against Borussia Dortmund. Bayern were chasing a league and cup double, having won the 2017–18 Bundesliga in April 2018. Bayern had previously completed the double on 11 occasions (in 2013"} +{"qid": "test341", "pid": "17021210", "query": "when was last time bayern munich won champions league", "answer": "2013", "passage": "\"2013–14 FC Bayern Munich season\"\nRomelu Lukaku failed to score on the last shot of the shoot–out. Javi Martínez, Mario Götze, and Arjen Robben picked up injuries during the match. Bayern also participated in the FIFA Club World Cup. Bayern were drawn against the winner of the match between the Asian Champions League champions and the African Champions League champions. Guangzhou Evergrande won the Asian Champions League and Al Ahly won the African Champions League. Guangzhou Evergrande advanced to the semi–final against Bayern on 17 December. Bayern won 3–0 with goals from Franck Ribéry, Mario Mandžukić, and Mario Götze. Bayern went on to play in"} +{"qid": "test341", "pid": "4921180", "query": "when was last time bayern munich won champions league", "answer": "2000–01", "passage": "\"Ottmar Hitzfeld\"\nwinning by a record margin last season, Bayern won on a heartbeat finish this season. They had won the league on a tiebreaker. Hitzfeld's team depended on the neighbours from Unterhaching, a suburb of Munich, to beat Bayer Leverkusen on the last day play to secure the title. The DFB-Pokal final was won against Bremen, the team which beat Bayern in the previous final. In the Champions League, Bayern was stopped in the semifinal by eventual winners Real Madrid. In the 2000–01 season, Hitzfeld led Bayern not only to the league championship hat-trick, but once again into the Champions League"} +{"qid": "test341", "pid": "5402277", "query": "when was last time bayern munich won champions league", "answer": "2013", "passage": "\"History of Manchester United F.C. (1986–2013)\"\nFA Cup semi-final against Arsenal, won by a Ryan Giggs goal deep into extra time, forced by a last-gasp Peter Schmeichel penalty save in the last of his eight seasons at the club. However, the most dramatic comeback came in the Champions League final against Bayern Munich, when Teddy Sheringham and Ole Gunnar Solskjær scored a goal each in stoppage time to give United a 2–1 win in stoppage time – a sixth-minute goal from Bayern's Mario Basler looked to have won the trophy for the Germans, who still had the lead with 90 minutes showing on the clock. United"} +{"qid": "test341", "pid": "17021197", "query": "when was last time bayern munich won champions league", "answer": "2013", "passage": "\"2013–14 FC Bayern Munich season\"\nJérôme Boateng was sent–off late in the match. Bayern Munich finished matchday two in sole possession of first place in Group D. Bayern faced Viktoria Plzeň in Champions League on 23 October. Bayern won 5–0 with goals from Franck Ribéry, David Alaba, Bastian Schweinsteiger, and Mario Götze. Franck Ribéry scored two goals. Bastian Schweinsteiger's goal was the 6200 in the history of the Champions League. Bayern faced Viktoria Plzeň in Champions League on 5 November. Bayern won 1–0 with a goal from Mario Mandžukić. With the win, Bayern equaled Barcelona's record of nine consecutive wins in the competition. Bayern finished"} +{"qid": "test341", "pid": "2666013", "query": "when was last time bayern munich won champions league", "answer": "2000–01", "passage": "\"Lothar Matthäus\"\nremoved his runners-up medal immediately after he received it – it was the second time he had been on the losing side in a final under similar circumstances; in the 1987 final, Bayern had been leading 1–0 most of the game until two late goals gave FC Porto the win. After Matthäus retired, Bayern would win the Champions League in 2000–01 and later that year the Intercontinental Cup. His last official match for Bayern took place in Munich on 8 March 2000 and was a Champions League match against Real Madrid, which Bayern won 4–1. During the 1999–2000 season, Matthäus"} +{"qid": "test341", "pid": "17234922", "query": "when was last time bayern munich won champions league", "answer": "2012–13", "passage": "\"2013 DFB-Pokal Final\"\nwas the first team to accomplish the feat in 1967. Since then, Ajax (1972), PSV Eindhoven (1988), Manchester United (1999), Barcelona (2009 and 2015) and Internazionale (2010) have accomplished the feat. 2013 DFB-Pokal Final The 2012–13 DFB-Pokal tournament came to a close on 1 June 2013 when Bayern Munich played VfB Stuttgart at the Olympiastadion in Berlin. Bayern Munich won the game 3–2, claiming the cup for the 16th time. The win, combined with earlier titles in the Champions League and Bundesliga, allowed Bayern Munich to complete a continental treble. The feat had never been achieved by a German"} +{"qid": "test3410", "pid": "19083233", "query": "who has the best nba record this season", "answer": "Houston Rockets", "passage": "\"2016 NBA Finals\"\nbroke the record set by the 1995–96 Chicago Bulls by finishing the regular season with a 73–9 record. In addition, the Warriors broke numerous other NBA records, including most road wins (34), best start to a season (24–0) and longest regular-season home win streak (54 dating back to the 2014–15 season). They also became the first team to make over 1,000 three-pointers in the regular-season with 1,077, eclipsing the previous record of 933 set by the 2014–15 Houston Rockets. The Warriors were led by Stephen Curry, who was named the NBA Most Valuable Player (MVP) for the second straight season."} +{"qid": "test3413", "pid": "616816", "query": "what part of maryland is close to washington dc", "answer": "Frederick County", "passage": "\"Frederick, Maryland\"\nFrederick, Maryland Frederick is a city in, and the county seat of, Frederick County in the U.S. state of Maryland. It is part of the Baltimore–Washington Metropolitan Area. Frederick has long been an important crossroads, located at the intersection of a major north–south Indian trail and east–west routes to the Chesapeake Bay, both at Baltimore and what became Washington, D.C. and across the Appalachian mountains to the Ohio River watershed. It is a part of the Washington-Arlington-Alexandria, DC-VA-MD-WV Metropolitan Statistical Area, which is part of a greater Washington-Baltimore-Arlington, DC-MD-VA-WV-PA Combined Statistical Area. The city's population was 65,239 people at the"} +{"qid": "test3413", "pid": "616876", "query": "what part of maryland is close to washington dc", "answer": "Frederick County", "passage": "\"Frederick, Maryland\"\nand promoting the benefits of these systems. Frederick, Maryland Frederick is a city in, and the county seat of, Frederick County in the U.S. state of Maryland. It is part of the Baltimore–Washington Metropolitan Area. Frederick has long been an important crossroads, located at the intersection of a major north–south Indian trail and east–west routes to the Chesapeake Bay, both at Baltimore and what became Washington, D.C. and across the Appalachian mountains to the Ohio River watershed. It is a part of the Washington-Arlington-Alexandria, DC-VA-MD-WV Metropolitan Statistical Area, which is part of a greater Washington-Baltimore-Arlington, DC-MD-VA-WV-PA Combined Statistical Area. The"} +{"qid": "test3413", "pid": "5359257", "query": "what part of maryland is close to washington dc", "answer": "Frederick County", "passage": "Snallygaster\nthe history of the snallygaster entitled \"\"Snallygaster: the Lost Legend of Frederick County\"\". The snallygaster appears in the 2018 Bethesda game \"\"Fallout 76\"\". In 2011, an annual beer festival (a \"\"beastly beer jamboree\"\") called \"\"Snallygaster\"\" started in Washington, DC. In 2012, a hard/punk rock music group called \"\"The Snallygasters\"\" formed in the Baltimore, Maryland, area. In Middletown, a giftshop called \"\"The Snallygaster\"\" sold antiques on Main Street for years. It closed in 2014. Snallygaster In American folklore, the snallygaster is a dragon-like beast said to inhabit Central Maryland, the Washington, DC, metro area, and particularly the Middletown area of Frederick"} +{"qid": "test3413", "pid": "583199", "query": "what part of maryland is close to washington dc", "answer": "Prince George's County", "passage": "\"Washington County, Maryland\"\nis included in the Hagerstown-Martinsburg, MD-WV Metropolitan Statistical Area, which is also included in the Washington-Baltimore-Arlington, DC-MD-VA-WV-PA Combined Statistical Area. The closes states to Washington County is west Virginia, Pennsylvania, Virginia, and Tennessee. The western portions of the Province of Maryland (including present Washington County) were incorporated into Prince George's County in 1696. This original county included six current counties. The first to be created was Frederick, separated from Prince George's County in 1748. Following independence, the sovereign State of Maryland formed Washington County on September 6, 1776, by the division of Frederick County. At the same time, a portion"} +{"qid": "test3413", "pid": "3611744", "query": "what part of maryland is close to washington dc", "answer": "Prince George's County", "passage": "\"Robert Brent\"\nin Washington County (the mansion site - Florida Ave and 6th Street NE is now part of the Gallaudet University campus in Northeast DC) as a present for his daughter Eleanor on her marriage to Congressman Joseph Pearson (Federalist - N.C.). Brentwood was designed by one of the Capitol's architects, Benjamin H. Latrobe. The Prince George's County, Maryland, towns of Brentwood and North Brentwood and the DC neighborhood of Brentwood (which formed most of the original estate) take their names from his home. Brent died in Washington, DC, on 7 September 1819. Robert Brent Elementary School in Washington, D.C. is"} +{"qid": "test3413", "pid": "3611743", "query": "what part of maryland is close to washington dc", "answer": "Montgomery County", "passage": "\"Robert Brent\"\nUnited States Army, Judge of the Orphan's Court for Washington County, and Chairman of the Board of Trustees of the Public Schools. He was the first president of the Patriotic Bank and of the Columbia Manufacturing Co. Brent's home was located on the southeast corner of the present 12th Street and Maryland Avenue SW in Washington, DC, but he owned land throughout the region, including parts of Montgomery County, Maryland, and Washington County. His landholdings were largely inherited through his father's family, his mother's family (the Carrolls of Maryland), and his father-in-law. In 1817 Brent had the Brentwood Mansion constructed"} +{"qid": "test3413", "pid": "538020", "query": "what part of maryland is close to washington dc", "answer": "Montgomery County", "passage": "\"Montgomery County, Maryland\"\nMontgomery County, Maryland Montgomery County is the most populous county in the U.S. state of Maryland, located adjacent to Washington, D.C. As of the 2010 census, the county's population was 971,777, increasing by 9.0% to an estimated 1,058,810 in 2017. The county seat and largest municipality is Rockville, although the census-designated place of Germantown is the most populous place. Montgomery County is included in the Washington–Arlington–Alexandria, DC–VA–MD–WV Metropolitan Statistical Area, which in turn forms part of the Baltimore–Washington Combined Statistical Area. Most of the county's residents live in unincorporated locales, of which the most built up are Silver Spring and"} +{"qid": "test3413", "pid": "1092849", "query": "what part of maryland is close to washington dc", "answer": "Prince George's County", "passage": "\"Brentwood, Maryland\"\nBrentwood, Maryland Brentwood is a town in Prince George's County, Maryland, United States. The population was 3,046 at the 2010 census. Brentwood is less than away from Washington, D.C. The municipality of Brentwood is located just outside the northeast boundary of the District of Columbia and surrounded by the communities of Mount Rainier, Cottage City, North Brentwood, and the nearby Hyattsville. Along the Route 1 Corridor, Brentwood is part of the Gateway Arts District. The town was originally incorporated in 1922 and is named after the Brentwood estate built in 1817 by Robert Brent in Northeast Washington, DC. The town"} +{"qid": "test3413", "pid": "18256637", "query": "what part of maryland is close to washington dc", "answer": "Montgomery County", "passage": "\"Koreans in Washington, D.C.\"\nKorean community. Pyong Gap Min, author of \"\"Asian Americans: Contemporary Trends and Issues\"\", stated that the suburban lifestyle and proximity to Washington, DC made Fairfax County an attractive destination for the ethnic Koreans. As of the 2000 U.S. Census, there were 39,155 Koreans in the State of Maryland; 40% of them were in Montgomery County, Maryland in the Washington DC area. Shinagawa stated that Koreans in Maryland are more likely to have high education compared to those in Virginia and that they tend to work in banking, government, law, and science. As of 2006 many Koreans in Fairfax County, Virginia"} +{"qid": "test3413", "pid": "560720", "query": "what part of maryland is close to washington dc", "answer": "Washington metropolitan area", "passage": "\"Frederick County, Maryland\"\nFrederick County, Maryland Frederick County is located in the northern part of the U.S. state of Maryland. As of the 2010 U.S. Census, the population was 240,336. The county seat is Frederick. Frederick County is included in the Washington-Arlington-Alexandria, DC-VA-MD-WV Metropolitan Statistical Area. Like other outlying sections of the Washington metropolitan area, Frederick County has experienced a rapid population increase in recent years. It borders the southern border of Pennsylvania and the northeastern border of Virginia. The county is home to Catoctin Mountain Park (encompassing the presidential retreat Camp David) and to the U.S. Army's Fort Detrick. It has also"} +{"qid": "test3413", "pid": "7198646", "query": "what part of maryland is close to washington dc", "answer": "Montgomery County", "passage": "\"Trail (surname)\"\nTraill (1844-1933) was an Irish engineer and co-founder of the Giant's Causeway Railway and Tramway Company, opened in 1887. In the mid 17th century, Trails acquired and settled land in the North America, in Massachusetts and in Maryland. The Maryland area, New Scotland Hundred, eventually became the city of Washington DC. The Maryland Trails also held estates in what are now Montgomery County and Frederick County. Other branches of the family settled in Argentina, Australia, Canada and New Zealand. The book \"\"Silver River\"\" by Daisy Goodwin gives a partly fictionalised account of the fortunes of her branch of the Traill"} +{"qid": "test3414", "pid": "7002537", "query": "when was the last time giants won superbowl", "answer": "2011", "passage": "\"Super Bowl XLVI\"\nteam won every playoff game they played away from their home stadium (Giants Stadium and MetLife Stadium) from 2007-2011. Prior to this run, last time the Giants were defeated in a game away from the Meadowlands was in 2006, when they were defeated by the Philadelphia Eagles in the Wild Card round. This streak came to an end in the 2016–17 NFL playoffs, where the Giants were defeated 38-13 by the Green Bay Packers at Lambeau Field in the Wild Card round. Two of the Giants' road playoff victories during this streak occurred at Lambeau. This was the second Super"} +{"qid": "test3414", "pid": "7210781", "query": "when was the last time giants won superbowl", "answer": "2011", "passage": "\"2006 World Series\"\nseason until the San Francisco Giants followed up their 2012 championship season with a 76-86 record in 2013. The Tigers would not make the playoffs again until 2011, when they won the AL Central title for the first time with their last division title being the 1987 AL East crown. The Tigers would win the AL Central in 2012 again and would return to the World Series in 2012 after winning the 2012 American League pennant where they would be swept by the San Francisco Giants in four games. The Cardinals would later make the playoffs in 2009, when the"} +{"qid": "test3418", "pid": "718634", "query": "who plays the lion in the movie zookeeper", "answer": "Sylvester Stallone", "passage": "\"Sylvester Stallone\"\ndirecting a film on Edgar Allan Poe's life, a script he has been preparing for years. In July 2009, Stallone appeared in a cameo in the Bollywood movie \"\"Kambakkht Ishq\"\" where he played himself. Stallone also provided the voice of a lion in Kevin James' comedy \"\"Zookeeper\"\". Stallone has also mentioned that he would like to adapt Nelson DeMille's novel, \"\"The Lion's Game\"\", and James Byron Huggins's novel, \"\"Hunter\"\", for which Stallone had the film rights several years; he originally planned to use the plot from \"\"Hunter\"\" for \"\"Rambo V: Last Blood\"\". In 2009, Stallone expressed interest in starring in"} +{"qid": "test3418", "pid": "13719737", "query": "who plays the lion in the movie zookeeper", "answer": "Sylvester Stallone", "passage": "\"Zookeeper (film)\"\nand besides, I'm getting a teensy bit exhausted by cute little animated animals. The creatures in this zoo all have the excellent taste to be in 2D.\"\" Zookeeper (film) Zookeeper is a 2011 American comedy film directed by Frank Coraci, starring Kevin James, Rosario Dawson, Leslie Bibb, Joe Rogan and featuring the voices of Nick Nolte, Sylvester Stallone, Adam Sandler, Don Rickles, Judd Apatow, Cher, Jon Favreau, and Faizon Love. It revolves around an unlucky zookeeper who turns to the animals at his zoo to help him find love. It was the first MGM movie to be co-produced with Happy"} +{"qid": "test3418", "pid": "13719722", "query": "who plays the lion in the movie zookeeper", "answer": "Sylvester Stallone", "passage": "\"Zookeeper (film)\"\nZookeeper (film) Zookeeper is a 2011 American comedy film directed by Frank Coraci, starring Kevin James, Rosario Dawson, Leslie Bibb, Joe Rogan and featuring the voices of Nick Nolte, Sylvester Stallone, Adam Sandler, Don Rickles, Judd Apatow, Cher, Jon Favreau, and Faizon Love. It revolves around an unlucky zookeeper who turns to the animals at his zoo to help him find love. It was the first MGM movie to be co-produced with Happy Madison, yet distributed by Columbia Pictures. The film was released on July 8, 2011. This was the last full-length film Don Rickles starred in before his death"} +{"qid": "test3418", "pid": "13719725", "query": "who plays the lion in the movie zookeeper", "answer": "Sylvester Stallone", "passage": "\"Zookeeper (film)\"\nthe Bear (Jon Favreau) suggests that they teach Griffin their animal mating techniques, but Joe the Lion (Sylvester Stallone) protests, reminding them that it's against the animal code to talk to humans. Donald the Monkey (Adam Sandler) says that Stephanie will be at the zoo tomorrow, and all the animals have to do is make Griffin look like a hero in front of her. The next day, Donald unlocks the door to the lion enclosure and lets Joe out, who confronts Stephanie and Dave's fiancée Robin (Steffiana de la Cruz). Kate (Rosario Dawson), the zoo's vet, manages to get them"} +{"qid": "test3419", "pid": "4368691", "query": "what is the speed of the nascar pace car", "answer": "pit road speed", "passage": "\"Safety car\"\nRPM at which pit road speed is maintained. Drivers exceeding that speed on pit road will be penalized, typically a \"\"drive-through\"\" or \"\"stop and go\"\" penalty, costing them valuable track position. Since mid-2004, NASCAR official Brett Bodine has driven the vehicle during official race functions during Monster Energy NASCAR Cup Series races. Other famous NASCAR pace car drivers include Robert \"\"Buster\"\" Auton and Elmo Langley. At many races, NASCAR has an honorary pace car driver that actually drives a car during the parade laps . Depending on the drivers skill, some drivers are allowed to pace the field right up"} +{"qid": "test3419", "pid": "14861387", "query": "what is the speed of the nascar pace car", "answer": "pit road speed", "passage": "\"Safety in NASCAR\"\npit road crash. By April 1991, NASCAR implemented the current policy of pit road speed limits. The speed limit depends on the size of the track and the size of pit road. NASCAR uses an electronic scoring system, similar to the VASCAR system, to monitor the speeds of cars on pit road by measuring the time it takes to get from checkpoint to checkpoint. The cars are not equipped with speedometers, therefore during the pre-race warm-up laps, the cars are driven around the track at the pit road speed limit behind the pace car. The drivers then select a gear"} +{"qid": "test3419", "pid": "9295509", "query": "what is the speed of the nascar pace car", "answer": "pit road speed", "passage": "\"NASCAR rules and regulations\"\nthe car when refueling it. There is an established pit road speed limit for each race. Since NASCAR cars do not have speedometers, the first pace lap of each race is run at pit road speed so drivers can get a tachometer reading for pit speed. There are a variety of other safety rules (see penalties above) that must be followed. At the moment of caution or when there are two laps to go in the stage, pit road is immediately closed. NASCAR uses both a light at the end of pit road and a series of cameras to help"} +{"qid": "test3419", "pid": "4368690", "query": "what is the speed of the nascar pace car", "answer": "pit road speed", "passage": "\"Safety car\"\nwhile Chrysler dealership affiliated tracks will use a Ram 1500. Ford-affiliated tracks will often use the F-Series, but Toyota-affiliated tracks are less likely to use the Toyota Tundra, but prefer marketing the Camry Hybrid. However, Ford and Toyota manufacturer sponsored tracks will prefer the Mustang and Camry, respectively, instead of a truck, and occasionally, pickup trucks have been used as pace vehicles for Sprint Cup and Xfinity races. Since NASCAR does not allow speedometers or electronic speed limiting devices, the pace car circles the track at pit road speed during the warm-up laps. This allows each driver to note the"} +{"qid": "test3421", "pid": "12435364", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Fool (If You Think It's Over)\"\nFool (If You Think It's Over) \"\"Fool (If You Think It's Over)\"\" is the title of a popular song originally publicly released in 1978 by the British singer-songwriter Chris Rea. Rea also wrote the words and composed the music of the song, which appears on his 1978 debut album, \"\"Whatever Happened to Benny Santini?\"\" The single's charting success in the USA earned him a Grammy nomination as Best New Artist in 1979. \"\"Fool (If You Think It's Over)\"\" was the lead single from Rea's debut album \"\"Whatever Happened to Benny Santini?\"\" which was recorded at producer Gus Dudgeon's Thames Valley"} +{"qid": "test3421", "pid": "12435374", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Fool (If You Think It's Over)\"\nthe 1990s British sitcom \"\"Joking Apart\"\". Kenny Craddock arranged and performed this version. Fool (If You Think It's Over) \"\"Fool (If You Think It's Over)\"\" is the title of a popular song originally publicly released in 1978 by the British singer-songwriter Chris Rea. Rea also wrote the words and composed the music of the song, which appears on his 1978 debut album, \"\"Whatever Happened to Benny Santini?\"\" The single's charting success in the USA earned him a Grammy nomination as Best New Artist in 1979. \"\"Fool (If You Think It's Over)\"\" was the lead single from Rea's debut album \"\"Whatever"} +{"qid": "test3421", "pid": "12435372", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Fool (If You Think It's Over)\"\nperformances by Brooks one of which was re-run. (After taping her 11 February 1982 \"\"TOTP\"\" performance of \"\"Fool\"\", Brooks was approached backstage by a fan asking for her autograph who Brooks soon intuited was in fact Chris Rea incognito.) In Ireland \"\"Fool\"\" became Brooks' highest-charting single with a #6 chart peak. In a 2014 pre-concert interview Brooks, when asked what \"\"big numbers\"\" she looked forward to singing, replied: \"\"I still really like 'Don't Cry Out Loud', 'Sunshine After the Rain' and of course 'Fool If You Think It’s Over': that is a terrific song.\"\" \"\"Fool If You Think It's Over\"\""} +{"qid": "test3421", "pid": "12435370", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Fool (If You Think It's Over)\"\nGreatest Hits)\"\". The music journalist Wayne Jacik mentioned the single in his work \"\"Billboard Book of One-Hit Wonders\"\". In 1982 Elkie Brooks had a Top 20 hit in the UK and South Africa with her remake of \"\"Fool If You Think It's Over\"\" - so titled - which like the Chris Rea original was produced by Gus Dudgeon and recorded at the Mill. Brooks' version was one of eight tracks recorded with Dudgeon in 1980 for her 1981 twelve-track album release \"\"Pearls\"\" which also included four of Brooks' previous hit singles: Brooks (quote) - \"\"Most of [\"\"Pearl\"\"'s new] material had"} +{"qid": "test3421", "pid": "15589922", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Singers and Songwriters (Time-Life Music)\"\nlicensing restrictions issues. The song \"\"Fool , If you think it's Over\"\" by Chris Rea, is a different version of the song. In the original version Rea's voice was sped up. Rea was never happy with that recording and although a hit in the US wanted the original version buried. The re recording is Rea singing in his normal voice. The Stevie Nicks song, plus the songs that Nicks did with Fleetwood Mac, could not be used in this collection, due to the same licensing restrictions. As with many of Time-Life Records' multi-volume releases, the volumes were not issued in"} +{"qid": "test3421", "pid": "3847946", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Chris Rea\"\n\"\"Fool (If You Think It's Over)\"\", was Rea's biggest hit in the US, peaking at No. 12 on the \"\"Billboard\"\" Hot 100 and reaching No. 1 on the Adult Contemporary Singles chart. Like most of Rea's early singles, \"\"Fool (If You Think It's Over)\"\" failed to appear on the UK Singles Chart on its first release and only reached No. 30 when was re-released in late 1978 to capitalise on its U.S. achievement. The overall success was Magnet Records' major breakthrough and their first Top-10 success in the U.S., making Rea their biggest artist. Levy remembers him as \"\"more of"} +{"qid": "test3421", "pid": "6806293", "query": "who is the original singer of fool if you think it's over", "answer": "Chris Rea", "passage": "\"Whatever Happened to Benny Santini?\"\nWhatever Happened to Benny Santini? Whatever Happened to Benny Santini? is the debut album by the British singer-songwriter Chris Rea, released in 1978. The title of the album is a reference to a name Rea's UK record label (Magnet) had considered christening him with to make him sound more attractive commercially. The album peaked at number forty-nine on the \"\"Billboard\"\" Hot 200, and charted for 12 weeks. The first single lifted from the album, \"\"Fool (If You Think It's Over)\"\", remains his biggest hit in the United States, peaking at number twelve on the \"\"Billboard\"\" Hot 100, charted for 15"} +{"qid": "test3422", "pid": "679538", "query": "who played the female lead in the 1942 film casablanca", "answer": "romantic drama", "passage": "\"Casablanca (film)\"\nCasablanca (film) Casablanca is a 1942 American romantic drama film directed by Michael Curtiz based on Murray Burnett and Joan Alison's unproduced stage play \"\"Everybody Comes to Rick's\"\". The film stars Humphrey Bogart, Ingrid Bergman, and Paul Henreid; it also features Claude Rains, Conrad Veidt, Sydney Greenstreet, Peter Lorre, and Dooley Wilson. Set during contemporary World War II, it focuses on an American expatriate who must choose between his love for a woman and helping her and her husband, a Czech Resistance leader, escape from the Vichy-controlled city of Casablanca to continue his fight against the Nazis. Warner Bros. story"} +{"qid": "test3422", "pid": "520186", "query": "who played the female lead in the 1942 film casablanca", "answer": "Ingrid Bergman", "passage": "\"Ingrid Bergman\"\nMr. Hyde\"\", all 1941) in the United States, Bergman co-starred with Humphrey Bogart in the classic film \"\"Casablanca\"\" (1942), which remains her best-known role. In this film, she played the role of Ilsa, the beautiful Norwegian wife of Victor Laszlo, played by Paul Henreid, an \"\"anti-Nazi underground hero\"\" who is in Casablanca, a haven from the Nazis. Bergman did not consider \"\"Casablanca\"\" to be one of her favorite performances. \"\"I made so many films which were more important, but the only one people ever want to talk about is that one with Bogart.\"\" In later years, she stated, \"\"I feel"} +{"qid": "test3422", "pid": "679607", "query": "who played the female lead in the 1942 film casablanca", "answer": "romantic drama", "passage": "\"Casablanca (film)\"\ntraced the path to Morocco shown in the film's opening scene. Notes Bibliography Streaming audio Casablanca (film) Casablanca is a 1942 American romantic drama film directed by Michael Curtiz based on Murray Burnett and Joan Alison's unproduced stage play \"\"Everybody Comes to Rick's\"\". The film stars Humphrey Bogart, Ingrid Bergman, and Paul Henreid; it also features Claude Rains, Conrad Veidt, Sydney Greenstreet, Peter Lorre, and Dooley Wilson. Set during contemporary World War II, it focuses on an American expatriate who must choose between his love for a woman and helping her and her husband, a Czech Resistance leader, escape from"} +{"qid": "test3422", "pid": "19000319", "query": "who played the female lead in the 1942 film casablanca", "answer": "Ingrid Bergman", "passage": "\"Inequality in Hollywood\"\nFor example, “in the 1942 classic \"\"Casablanca\"\", Ingrid Bergman, 27, played opposite Humphrey Bogart, 16 years older than her.” The FIA finds that 63.8 percent of women in the performance industry and 51.2 percent of men have a career that lasts between 11 and 15 years. This difference of 12.6 percent depicts the number of women who have ended their careers earlier than their male counterparts. A study in the Journal of Management Inquiry found a correlation between age, gender, and pay. The data show that “Average earnings per film of female movie stars increase until the age of 34,"} +{"qid": "test3422", "pid": "2816590", "query": "who played the female lead in the 1942 film casablanca", "answer": "romantic drama", "passage": "\"Paul Henreid\"\nsimpler and less overtly Germanic Henreid. That year, Henreid became a citizen of the United States. His first film for the studio was \"\"Joan of Paris\"\", which came out in 1942 and was a big hit. At Warner Bros Henreid was cast in \"\"Now, Voyager\"\" (1942), playing the romantic lead opposite Bette Davis. Henreid's next role was as Victor Laszlo, a heroic anti-German resistance leader on the run, in \"\"Casablanca\"\" (1942) with Humphrey Bogart and Ingrid Bergman. Warners tried to consolidate Henreid's new status by co-starring him with Ida Lupino in a romantic drama, \"\"In Our Time\"\" (1944) then putting"} +{"qid": "test3424", "pid": "453740", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "Vibranium\nunconnected to the shield. This created a vibranium \"\"cancer\"\", a shock wave propagating throughout the world. It violently detonated any vibranium it found, from mineral deposits to components of ships or equipment. The shock wave was traveling to the \"\"Great Vibranium Mound\"\" in Wakanda, where the resulting explosion could destroy the world. With the unwitting aid of the villain Klaw, Captain America was able to stop the cancer and restore his shield. Vibranium appears frequently in the Marvel Universe. In the computer game \"\"\"\" the nanite artificial intelligence known as \"\"the Fold\"\" attempts to harvest vibranium in Wakanda in order"} +{"qid": "test3424", "pid": "6888035", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "\"Captain America's shield\"\nthe design was too similar to that of its own patriotic hero the Shield, Timely Comics replaced the triangular shield with a disc-shaped one. While the origin and fate of the original shield were not described in the original comics from the 1940s, the shield's fate was revealed decades later in 2001 through a retconned story. According to the tale, King T'Chaka of the African nation Wakanda met Captain America in early 1941 and gave him a sample of vibranium, an alien metal with unique vibration absorption properties and found only in Wakanda and the Savage Land. The new Vibranium"} +{"qid": "test3424", "pid": "3304448", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "\"Klaw (Marvel Comics)\"\nto a 'vibranium cancer' introduced into the world when Captain America's shield was broken and improperly repaired, Klaw travels to Wakanda with the goal of absorbing the sound energy of the imminent explosion to become even stronger. Captain America is able to defeat him when he uses the damaged shield to absorb Klaw's attack. The blast realigns the shield molecules so that the shield is repaired and the vibranium cancer destroyed. Klaw features in the opening arc of the fourth Black Panther series, a flashback story that features the origin of the title character. The character ultimately resurfaces again, having"} +{"qid": "test3424", "pid": "453725", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "Vibranium\nVibranium Vibranium () is a fictional metal appearing in American comic books published by Marvel Comics. This fictional metal is noted for its uncanny ability to leverage thermodynamics in absorbing, storing, and releasing kinetic energy in a controlled manner. Vibranium is associated with Black Panther, as his suit is made from vibranium and is found in his native homeland of Wakanda. Antarctic Vibranium or Anti-Metal is created by artificial means, in contrast to natural, or Wakandan, vibranium. Vibranium is also commonly known as one of the materials used to construct Captain America's shield. Vibranium first appeared in \"\"Daredevil\"\" #13 (February"} +{"qid": "test3424", "pid": "6888050", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "\"Captain America's shield\"\nimpact until it finally shattered after it was retrieved from the bottom of the ocean. Learning that the vibranium cancer would require the destruction of the shield in order to cure it, Rogers took the shield to the main vibranium deposit in Wakanda so that he could use a device created by Tony Stark to halt the 'cancer' before it could contaminate the Wakandan vibranium and destroy the world, only to be intercepted by the villain Klaw, who sought to absorb the power and become stronger. Fortunately, the amount of energy Klaw had absorbed was released when he struck the"} +{"qid": "test3424", "pid": "453739", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "Vibranium\non to some of it without her team's knowledge. Reverbium would turn up again in the hands of A.I.M Scientists under the influence of Klaw, who'd used it in a new scheme against Black Panther and the nation of Wakanda; the faux vibranium also had the effect of enhancing his sonic powers to unknown degrees. When a small sub-molecular imperfection was introduced into Captain America's shield, each impact over the years spread to neighboring molecules. It grew until the molecular bonds of the shield were completely broken down, shattering the shield. The shattering effect continued to spread to other vibranium,"} +{"qid": "test3424", "pid": "6888038", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "\"Captain America's shield\"\nhero known as the Patriot and leader of the Young Avengers. In 2010, the history of the original shield was revised. In the limited series \"\"Captain America/Black Panther: Flags of Our Fathers\"\", Captain America, Sergeant Nick Fury and the Howling Commandos meet Azzari (grandfather of T'Challa) -- the Black Panther and king of Wakanda during World War II. Aided by Wakandan military forces, they successfully repel a series of Nazi assaults led by the Red Skull and Baron Strucker. During the battle, the Red Skull (wearing a battle-suit) crushes the triangular shield, and Captain America uses a circular vibranium shield"} +{"qid": "test3424", "pid": "453729", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "Vibranium\nform a new tank armor, but was unable to fuse the elements. One morning, he found that the two materials had bonded on their own in an unknown manner. The ultra-resilient alloy was used to create Captain America's shield. MacLain worked for decades (without success) to duplicate the accident. However, during an experiment in the 1960s, he developed the virtually indestructible metal adamantium. In the comics, when T'Challa became king of Wakanda, he strove to end his country's isolation from the rest of the world. Making the existence of vibranium known to the outside world around the mid-1980s, he sold"} +{"qid": "test3424", "pid": "453732", "query": "where did they get the vibranium to make captain americas shield", "answer": "Wakanda", "passage": "Vibranium\nCaptain Marvel's space travels. In the wake of the continuity-wide spanning reboot of the Marvel multiverse called \"\"Secret Wars: Battleworld\"\", vibranium's abundance in Wakanda and beyond has re-flourished to sizable quantities, mutant criminal Vanisher was making off with and selling Wakandan vibranium in the black market in New York City. In the Marvel Comics Universe, vibranium is a rare metallic substance of extraterrestrial origin. It exists in three forms: Wakandan Vibranium is the most common variety, and is often referred to simply as \"\"vibranium\"\". It is a rare substance native only to the fictional small African nation of Wakanda. The"} +{"qid": "test3426", "pid": "12979678", "query": "which state was returned to spain after the revolutionary war", "answer": "Menorca", "passage": "\"Balearic Islands\"\nthe Seven Years' War. The British re-occupied the island after the war but, with their military forces diverted away by the American War of Independence, it fell to a Franco-Spanish force after a seven-month siege (1781–82). Spain retained it under the Treaty of Paris in 1783. However, during the French Revolutionary Wars, when Spain became an ally of France, it came under French rule. Menorca was finally returned to Spain by the Treaty of Amiens during the French Revolutionary Wars, following the last British occupation, which lasted from 1798 to 1802. The continued presence of British naval forces, however, meant"} +{"qid": "test3426", "pid": "6067903", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Spanish Florida\"\na result of the Anglo-Spanish War, but while Britain occupied the territory, it did not develop it further. Sparsely populated British Florida stayed loyal to the Crown during the American Revolutionary War, and by the terms of the Treaty of Paris which ended the war, the territory was returned to Spain in 1783. After a brief diplomatic border dispute with the fledgling United States, the countries set a territorial border and allowed Americans free navigation of the Mississippi River by the terms of Pinckney's Treaty in 1795. France sold Louisiana to the United States in 1803. The U.S. claimed that"} +{"qid": "test3426", "pid": "2294336", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Second Seminole War\"\nmembers of different tribes. Other groups in Florida at the time of the Seminole Wars included \"\"Spanish Indians\"\", so called because it was believed that they were descended from Calusas, and \"\"rancho Indians\"\", persons of Native American ancestry, possibly both Calusa and Creek, and mixed Native American/Spanish ancestry, living at Spanish/Cuban fishing camps on the Florida coast. The United States and Spain were at odds over Florida after the Treaty of Paris ended the American Revolutionary War and returned East and West Florida to Spanish control. The United States disputed the boundaries of West Florida (which had been established while"} +{"qid": "test3426", "pid": "909093", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Seminole Wars\"\nwar allowed more slaves to escape to Florida. The British promised slaves freedom for fighting with them. These events made the new United States enemies of the Seminoles. In 1783, as part of the treaty ending the Revolutionary War, Florida was returned to Spain. Spain's grip on Florida was light, as it maintained only small garrisons at St. Augustine, St. Marks and Pensacola. They did not control the border between Florida and the United States and were unable to act against the State of Muskogee established in 1799, envisioned as a single nation of American Indians independent of both Spain"} +{"qid": "test3426", "pid": "9278144", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Treaty of Aranjuez (1779)\"\nGibraltar fell, as stipulated by the Treaty of Aranjuez but withdrew that requirement after the disastrous repulse of a combined French and Spanish assault in September 1782. Under the Peace of Paris, Britain returned Menorca and the Floridas, allowing Spain to claim success although the loss of Gibraltar remains an issue to this day, while in reality the Floridas were of little value. In the longer-term, concerns about an independent United States on New Spain's borders were justified, with constant encroachments by American settlers and disputes such as the West Florida Controversy. Spain's involvement in the 1792-1802 French Revolutionary Wars"} +{"qid": "test3426", "pid": "171619", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"History of Spain\"\nand ended up having to cede Florida to the British at the Treaty of Paris (1763) while gaining Louisiana from France. Spain regained Florida with the Treaty of Paris (1783), which ended the American Revolutionary War (1775–83), and gained an improved international standing. However, there were no reforming impulses in the reign of Charles IV (1788 to abdication in 1808), seen by some as mentally handicapped. Dominated by his wife's lover, Manuel de Godoy, Charles IV embarked on policies that overturned much of Charles III's reforms. After briefly opposing Revolutionary France early in the French Revolutionary Wars, Spain was cajoled"} +{"qid": "test3426", "pid": "1036706", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"St. Augustine, Florida\"\nof the British colony of Georgia, General James Oglethorpe, who was also unable to take the fort. The Treaty of Paris (1763), signed after Great Britain's victory over France and Spain during the Seven Years' War, ceded Florida to Great Britain and consequently St. Augustine became a Loyalist haven during the American Revolutionary War. The second Treaty of Paris (1783), which recognized the independence of the former British colonies north of Florida, also ceded Florida back to Spain, and as a result many of the town's Spanish citizens returned to St Augustine. Refugees from Dr. Andrew Turnbull's troubled colony in"} +{"qid": "test3426", "pid": "12391107", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Seven Years' War\"\nby the other powers. The involvement of Portugal, Spain and Sweden did not return them to their former status as great powers. France was deprived of many of its colonies and had saddled itself with heavy war debts that its inefficient financial system could barely handle. Spain lost Florida but gained French Louisiana and regained control of its colonies, e.g., Cuba and the Philippines, which had been captured by the British during the war. France and Spain avenged their defeat during the American Revolutionary War, with hopes of destroying Britain's dominance once and for all. The Seven Years' War was"} +{"qid": "test3426", "pid": "262238", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Mississippi River\"\nthe Mississippi. Spain also ceded Florida to Britain to regain Cuba, which the British occupied during the war. Britain then divided the territory into East and West Florida. Article 8 of the Treaty of Paris (1783) states, \"\"The navigation of the river Mississippi, from its source to the ocean, shall forever remain free and open to the subjects of Great Britain and the citizens of the United States\"\". With this treaty, which ended the American Revolutionary War, Britain also ceded West Florida back to Spain to regain the Bahamas, which Spain had occupied during the war. In 1800, under duress"} +{"qid": "test3426", "pid": "2939408", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Esteban Rodríguez Miró\"\nSeven Years' War. Around 1765, he was transferred to Mexico and rose to the rank of lieutenant. He returned to Spain in the 1770s and received military training before being sent to Louisiana in 1778. In 1779 during the American Revolutionary War and Anglo-Spanish War (1779–83), Miró was a part of the forces commanded by Bernardo de Gálvez in campaigns against the British in West Florida. Gálvez appointed Miró as acting Governor of Louisiana (New Spain) on January 20, 1782. He became proprietary governor on December 16, 1785. Spain had taken over this territory from France after the latter's defeat"} +{"qid": "test3426", "pid": "9278145", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Treaty of Aranjuez (1779)\"\nled to France repossessing Louisiana in 1800, which it later sold to the US in the Louisiana Purchase of 1803. The US acquired Florida in July 1821, ending Spain's presence in mainland North America. Treaty of Aranjuez (1779) The Treaty of Aranjuez (1779) was signed on 12 April 1779 by France and Spain. Under its terms, Spain agreed to support France in its war with Britain, in return for French assistance in recovering the former Spanish possessions of Menorca, Gibraltar and the Floridas. By declaring war on Great Britain on 21 June 1779, Spain became involved in the American Revolutionary"} +{"qid": "test3426", "pid": "1325621", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Charles III of Spain\"\nin which Spain again conceded that Portuguese Brazil had expanded far west of the longitude specified in the Treaty of Tordesillas, and in return Portugal ceded present-day Equatorial Guinea to Spain. The rivalry with Britain also led him to support the American revolutionaries in their War of Independence despite his misgivings about the example it would set for the Spanish Colonies. During the war, Spain recovered Menorca and British West Florida in military campaigns, but failed to regain Gibraltar. Spanish military operations in West Florida and on the Mississippi River helped the Thirteen Colonies secure their southern and western frontiers"} +{"qid": "test3426", "pid": "13284456", "query": "which state was returned to spain after the revolutionary war", "answer": "Florida", "passage": "\"Diplomacy in the American Revolutionary War\"\nto aid in the capture of Gibraltar, Florida, and the island of Menorca. On 21 June 1779, Spain declared war on England. Spain's economy depended almost entirely on its colonial empire in the Americas, and they were worried about the United States' territorial expansion. With such considerations in mind, Spain persistently rebuffed John Jay's attempts to establish diplomatic relations. They were the last participant of the American Revolutionary War to acknowledge the independence of the United States, on 3 February 1783. Ragusa (present-day Dubrovnik, Croatia), a major city with historical and cultural ties to Italy on the Adriatic Sea, was"} +{"qid": "test3427", "pid": "519748", "query": "who played forrest gumps mother in the 1994 film", "answer": "Sally Field", "passage": "\"Forrest Gump\"\nForrest Gump Forrest Gump is a 1994 American comedy-drama film based on the 1986 novel of the same name by Winston Groom. It was directed by Robert Zemeckis and written by Eric Roth, and stars Tom Hanks, Robin Wright, Gary Sinise, Mykelti Williamson, and Sally Field. The story depicts several decades in the life of Forrest Gump (Hanks), a slow-witted but kind-hearted man from Alabama who witnesses several defining historical events in the 20th century in the United States. The film differs substantially from the novel. Principal photography took place in late 1993, mainly in Georgia, North Carolina, and South"} +{"qid": "test3427", "pid": "1807927", "query": "who played forrest gumps mother in the 1994 film", "answer": "Sally Field", "passage": "\"Sally Field\"\nin the film version of \"\"Steel Magnolias\"\" (1989), she was nominated for a 1990 Golden Globe Award for Best Actress. Field had supporting roles in a number of other movies, including \"\"Mrs. Doubtfire\"\" (1993) in which she played Miranda Hillard, the wife of Robin Williams's character and the love interest of Pierce Brosnan's character Stuart 'Stu' Dunmyer. She then played Tom Hanks's mother in \"\"Forrest Gump\"\" (1994), even though she was only 10 years older than Hanks, with whom she had co-starred six years earlier in \"\"Punchline\"\". Field's other 1990s films included \"\"Not Without My Daughter\"\", a controversial thriller based"} +{"qid": "test3428", "pid": "2921277", "query": "when did we find out the smoking man was mulder's father", "answer": "Later in the sixth season", "passage": "\"Cigarette Smoking Man\"\ndestruction of the Syndicate. Later in the sixth season, there is more evidence that suggested that the Smoking Man is Mulder's biological father. Eventually in \"\"\"\", Smoking Man literally looks at Mulder and says \"\"I am your father.\"\", while Mulder has a flashback to his childhood of walking on the beach with his parents. Fowley comes in disagreement with him. Because of his plans to kill Mulder, Fowley helps Scully in her investigation to locate Mulder, which leads to her death. After the destruction of the Syndicate, the Smoking Man starts to operate as he wishes. However, his cancer resurfaces,"} +{"qid": "test343", "pid": "3830278", "query": "who laid foundation stone of islamia college peshawar", "answer": "Haji Sahib", "passage": "\"Islamia College University\"\nthe time was requested by Nawab Sir Sahibzada Abdul Qayyum to lay the foundation stone of Islamia College. Haji Sahib agreed to the request, however, he had been declared a proclaimed offender by the British for his anti-British activities and his entry was banned into British controlled territory. He was residing in tribal territory, which was outside British control, so Nawab Sahib prevailed upon Sir George Roos-Keppel and the British to permit Haji Sahib to enter British controlled territory for one day so he could lay the foundation stone of Islamia College. The British agreed to this request with the"} +{"qid": "test343", "pid": "3830279", "query": "who laid foundation stone of islamia college peshawar", "answer": "Haji Sahib", "passage": "\"Islamia College University\"\nunderstanding that Haji Sahib would return to tribal territory once he had laid the foundation stone. Haji Sahib was permitted to enter British controlled territory for the ceremony and spent the night in the 'Pokh' Mosque of Tehkal. At the foundation stone laying ceremony, Sir Roos Keppel and other British officials were present, so Haji Sahib hid his face in his sheet (Chadar) from them and was led by Sheikh Muhammad Ibrahim to the place where he was to lay the foundation stone. After laying the stone Haji Sahib went to Tehkal and then returned to the tribal territory. https://picclick.com/PAKISTAN-1000-Rupees-Banknote-World-Money-Currency-BILL-230882141214.html#&gid=1&pid=1"} +{"qid": "test343", "pid": "10710552", "query": "who laid foundation stone of islamia college peshawar", "answer": "Haji Sahib", "passage": "\"Haji Sahib of Turangzai\"\nto events, and accused Haji Sahib as well as Ghaffar Khan of running a parallel government to that of the British. They had him arrested and put on trial. He briefly attempted to oppose the British government but was arrested. On the basis of lack of evidence, Haji Sahib was released, but his fellow workers were given sentences of up to three years. In 1913, Sir Sahibzada Abdul Qayyum Khan chose Haji Sahib of Turangzai to inaugurate the foundation laying ceremony of the Darul Uloom Islamia in Peshawar, present day Islamia College. In June 1915 the British government issued an"} +{"qid": "test3430", "pid": "18022144", "query": "how many seasons has greys anatomy been on tv", "answer": "14", "passage": "\"Grey's Anatomy (season 11)\"\nsaying goodbye to our ‘McDreamy.’\"\" \"\"Grey's Anatomy\"\" was renewed for an eleventh season by ABC on May 8, 2014. On May 13, 2014, ABC announced their new schedule, as well as a new timeslot for \"\"Grey's Anatomy\"\". The show remained on Thursday night, but it was moved to 8:00 PM E.T. to make room for ShondaLand Production Company's new TV series, \"\"How to Get Away with Murder\"\". Even though Paul Lee, the president of ABC, moved \"\"Grey's Anatomy\"\" to a new timeslot, he announced at ABC's 2014-15 upfront that the eleventh season would air in the same order as the"} +{"qid": "test3430", "pid": "18022145", "query": "how many seasons has greys anatomy been on tv", "answer": "14", "passage": "\"Grey's Anatomy (season 11)\"\nprevious season with two batches consisting of 12 interrupted episodes. For the 2014-15 TV season, ABC programmed its entire Thursday primetime lineup with Shondaland dramas \"\"Grey's Anatomy\"\", \"\"Scandal\"\" and \"\"How To Get Away With Murder\"\", then branded the night as \"\"Thank God It's Thursday\"\" (or \"\"TGIT\"\"). This echoes ABC's former TGIF branding of its Friday night family sitcoms and even NBC's Must See TV promotion of formidable Thursday night television hits in the 1990s. The remaining fall schedule for ABC was announced on October 30, 2014, where it was announced that \"\"Grey's Anatomy\"\" would be split into two batches. However,"} +{"qid": "test3430", "pid": "17314138", "query": "how many seasons has greys anatomy been on tv", "answer": "14", "passage": "\"Grey's Anatomy (season 10)\"\nhighest ranking for the 18-49 key demographic was 3rd for Seasons 3, 4, and 5. Last season, \"\"Grey's Anatomy\"\" was ranked 10th. For the 2013-2014 primetime TV schedule, \"\"Grey's Anatomy\"\" was the #1 drama in the 18-49 key demographic. The tenth season of the medical-drama received positive reviews from the critics with many referring to the season as a return to form for the long-running show. The season holds a 100% positive score on Rotten Tomatoes and a \"\"Fresh\"\" rating. Annie Barett of \"\"Entertainment Weekly\"\" gave a positive review to the season and wrote, \"\"There's true sorrow here along with"} +{"qid": "test3430", "pid": "18742977", "query": "how many seasons has greys anatomy been on tv", "answer": "14", "passage": "\"How to Save a Life (Grey's Anatomy)\"\nher role in the show's 250th episode \"\"Guess Who's Coming to Dinner\"\" and was subsequently promoted to a recurring character for the twelfth season. The soundtrack for \"\"How to Save a Life\"\" featured covers, recorded by Sleeping at Last, of such previously used tracks as \"\"Today Has Been OK\"\", originally by Emilíana Torrini and \"\"Chasing Cars\"\", originally by Snow Patrol, and the originals \"\"Sedona\"\" by Houndmouth, \"\"Gulls\"\" by David Gray, and \"\"Into the Fire\"\" by Erin McCarley. Speculation about Dempsey's exit from \"\"Grey's Anatomy\"\" began in November, 2014, when Dempsey casually mentioned during an interview that he might be leaving"} +{"qid": "test3431", "pid": "1280347", "query": "how did leo dalton die in silent witness", "answer": "in an explosion", "passage": "\"Silent Witness\"\nMullery (Liz Carr). During the sixteenth series Dr Dalton is killed in an explosion. His replacement, Dr Thomas Chamberlain (Richard Lintern), is introduced at the start of the seventeenth series. Although the show focuses heavily on areas of pathology, the police also have a presence in each case. During later series of the show detectives and investigators tend to differ from episode to episode, with guest artists appearing in these roles. However, during the early years of the show several characters appeared regularly to investigate each case. The first three series were set in Cambridge. This changed to London from"} +{"qid": "test3432", "pid": "110960", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "Economics\nrights. Public finance is the field of economics that deals with budgeting the revenues and expenditures of a public sector entity, usually government. The subject addresses such matters as tax incidence (who really pays a particular tax), cost-benefit analysis of government programmes, effects on economic efficiency and income distribution of different kinds of spending and taxes, and fiscal politics. The latter, an aspect of public choice theory, models public-sector behaviour analogously to microeconomics, involving interactions of self-interested voters, politicians, and bureaucrats. Much of economics is positive, seeking to describe and predict economic phenomena. Normative economics seeks to identify what economies"} +{"qid": "test3432", "pid": "18314706", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Public sector undertakings in India\"\nof Indian economic development until the 1991 Indian economic crisis. After the crisis, the government began dis-investing its ownership of several PSUs to raise capital and privatise companies facing poor financial performance and low efficiency. Certain public sector undertakings have been awarded additional financial autonomy. These companies are \"\"public sector companies that have comparative advantages\"\", giving them greater autonomy to compete in the global market so as to \"\"support [them] in their drive to become global giants\"\". Financial autonomy was initially awarded to nine PSUs as \"\"Navratna\"\" status in 1997. Originally, the term \"\"Navaratna\"\" meant a talisman composed of nine"} +{"qid": "test3432", "pid": "2181757", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Public sector\"\nPublic enterprises, or state-owned enterprises, are self-financing commercial enterprises that are under public ownership which provide various private goods and services for sale and usually operate on a commercial basis. Organizations that are not part of the public sector are either a part of the private sector or voluntary sector. The private sector is composed of the economic sectors that are intended to earn a profit for the owners of the enterprise. The voluntary, civic or social sector concerns a diverse array of non-profit organizations emphasizing civil society. The organization of the public sector can take several forms, including: A"} +{"qid": "test3432", "pid": "12650230", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Privatization in Israel\"\njoint businesses, along with various cases of transition from the private sector to the public sector and from the public sector to the private sector. The various parts of the public sectors recognized the economic importance of their activities, and it is difficult to distinguish between the political motives and considerations and economic considerations. The two were, and would continue to be interwoven with each other. After the state of Israel was founded and the cabinet was established, many dominant institutions which were formed beforehand were transferred to its possession as an \"\"inheritance\"\". The Israeli government like many other governments"} +{"qid": "test3432", "pid": "12229007", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Public economics\"\nPublic economics Public economics (or economics of the public sector) is the study of government policy through the lens of economic efficiency and equity. At its most basic level, public economics provides a framework for thinking about whether or not the government should participate in economic markets and to what extent it should do so. In order to do this, microeconomic theory is utilized to assess whether the private market is likely to provide efficient outcomes in the absence of governmental interference. Inherently, this study involves the analysis of government taxation and expenditures. This subject encompasses a host of topics"} +{"qid": "test3432", "pid": "12229017", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Public economics\"\nof Water-Resource Systems: New Techniques for Relating Economic Objectives, Engineering Analysis, and Governmental Planning\"\" (1962). Public economics Public economics (or economics of the public sector) is the study of government policy through the lens of economic efficiency and equity. At its most basic level, public economics provides a framework for thinking about whether or not the government should participate in economic markets and to what extent it should do so. In order to do this, microeconomic theory is utilized to assess whether the private market is likely to provide efficient outcomes in the absence of governmental interference. Inherently, this study"} +{"qid": "test3432", "pid": "2387412", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"David Lewis (politician)\"\nScott, then the CCF's National Chairman. The book's main argument was that national economic planning had proven itself during wartime with the King government's imposition of wage and price controls through the Wartime Prices and Trade Board. Lewis and Scott further argued that its wartime success could translate to peacetime, and that Canada should adopt a mixed economy. They also called for public ownership of key economic sectors, and for the burden to be placed on private companies to demonstrate that they could manage an industry more effectively in the private sector than the government could in the public sector."} +{"qid": "test3432", "pid": "12192052", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Groupement d'intérêt économique\"\nof 6 partners that come from both the private and the public sector (including three Ministries). Groupement d'intérêt économique A Groupement d'intérêt économique (abbreviated \"\"GIE\"\"; in English Economic Interest Grouping or Economic Interest Group, abbreviated \"\"EIG\"\") is a Francophone consortium of related businesses, companies, foundations, organisations or institutes which are formally pooling their efforts for competitive advantage. Most partners come from the private sector but inclusion of public sector partners is not unusual. For example, a number of businesses in the umbrella industry located in Aurillac, France, Europe formed a GIE to better meet the challenges of competing globally. Another"} +{"qid": "test3432", "pid": "6524795", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Market mechanism\"\nindividuals); in a planned economy, all the resources are owned by the public sector (local and central government); and, in a mixed economy, some resources are owned by both sectors, private and public. In reality the first two are mostly theoretical and the third is common. Resources are allocated according to the forces of supply and demand. Government's interference in the market mechanism leads to economic inefficiency when it is applied to private goods. Prices convey a lot of information. They not only tell producers what to produce but also inform the producers to produce what people want. The more"} +{"qid": "test3432", "pid": "6558453", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"Economic history of Portugal\"\nthereby permitting the denationalization of the state-owned banks and other public enterprises. Privatization, economic deregulation, and tax reform became the salient concerns of public policy as Portugal prepared itself for the challenges and opportunities of membership in the EC's single market in the 1990s. Following the sweeping nationalizations of the mid-1970s, public enterprises became a major component of Portugal's consolidated public sector. Portugal's nationalized sector in 1980 included a core of fifty non-financial enterprises, which were entirely government owned. This so-called public non-financial enterprise group included the Institute of State Participation, a holding company with investments in some seventy subsidiary"} +{"qid": "test3432", "pid": "14896471", "query": "public companies are part of what economic sector", "answer": "public sector", "passage": "\"National Institute of Statistics and Applied Economics\"\nand political environment. Graduates of INSEA are expected to play a strategic role at various stages of the process of economic and social development, pursuing careers in the public sector, local communities and the private sector: bank companies' Insurance and large companies and national multinationals. The Institute is under the supervision of the High Commissioner for Planning, National Board of Economic Planning of the country. Statistics is the study of observations, its application areas are numerous and diverse, in fact almost all areas that lend themselves to numerical observations may be privileged fields of application. An INSEAist statistician engineer may"} +{"qid": "test3433", "pid": "96549", "query": "who played young clark kent in 1978 superman", "answer": "Jeff East", "passage": "\"Clark Kent\"\nhas a good, often wisecracking, sense of humor. Reeves, who first appeared as the character in the 1951 film \"\"Superman and the Mole Men\"\", was older than subsequent Superman actors. In 1978, the first of four Superman films was made in which Clark Kent and Superman were portrayed by Christopher Reeve (with teenage Kent played by Jeff East in the first film). This was followed nearly two decades later by a fifth film called \"\"Superman Returns\"\" with Brandon Routh giving a performance very similar to Reeve's. In contrast to George Reeves' intellectual Clark Kent, Reeve's version is much more of"} +{"qid": "test3434", "pid": "5104085", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Abanindranath Tagore\"\nof Krishna in a Mughal-influenced style. After meeting E. B. Havell, Tagore worked with him to revitalise and redefine art teaching at the Calcutta School of art, a project also supported by his brother Gaganendranath, who set up the Indian Society of Oriental Art. Tagore believed in the traditional Indian techniques of painting. His philosophy rejected the \"\"materialistic\"\" art of the west and came back to Indian traditional art forms. He was influenced by the Mughal school of painting as well as Whistler's Aestheticism. In his later works, Tagore started integrating Chinese and Japanese calligraphic traditions into his style. Tagore"} +{"qid": "test3434", "pid": "5104082", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Abanindranath Tagore\"\nWestern models of art, as taught in art schools under the British Raj and developed the Indian style of painting, later known as Bengal school of art. Such was the success of Tagore's work that it was eventually accepted and promoted as a national Indian style within British art institutions under the epithet of Indian Society of Oriental Art. Abanindranath Tagore was born in Jorasanko, Calcutta, British India, to Gunendranath Tagore. His grandfather was Girindranath Tagore, the second son of \"\"Prince\"\" Dwarkanath Tagore. He was a member of the distinguished Tagore family, and a nephew of the poet Rabindranath Tagore."} +{"qid": "test3434", "pid": "6772759", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Ernest Binfield Havell\"\nof London, \"\"The Studio\"\". In January 1906 he left for England on long leave and finally in 1908, he was removed from the post. Havell worked with Abanindranath Tagore to redefine Indian art education. He established the Indian Society of Oriental Art, which sought to adapt British art education in India so as to reject the previous emphasis placed on European traditions in favour of revivals of native Indian styles of art, in particular the Mughal miniature tradition. He married Angelique Wilhelmina Jacobsen in 1895 at St Giles, London, Middlesex, England. The couple had a daughter, Sonia Joyce Havell in"} +{"qid": "test3434", "pid": "5104081", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore CIE", "passage": "\"Abanindranath Tagore\"\nAbanindranath Tagore Abanindranath Tagore CIE (অবনীন্দ্রনাথ ঠাকুর) (7 August 1871 – 5 December 1951) was the principal artist and creator of the \"\"Indian Society of Oriental Art\"\". He was also the first major exponent of Swadeshi values in Indian art, thereby founding the influential Bengal school of art, which led to the development of modern Indian painting He was also a noted writer, particularly for children. Popularly known as 'Aban Thakur', his books \"\"Rajkahini, Budo Angla, Nalak,\"\" and \"\"Khirer Putul\"\" are landmarks in Bengali language children's literature. Tagore sought to modernise Mughal and Rajput styles to counter the influence of"} +{"qid": "test3434", "pid": "17060864", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Stella Kramrisch\"\n1924 her first monograph \"\"Essence of Indian art\"\" was published in German, which was reviewed widely in various journals throughout Europe. In the 1920s Kramrisch kept travelling to Vienna to give lectures. Various articles of her colleagues in Vienna appear as English translations in the Journal of the Indian Society of Oriental Art, which Kramrisch edited from 1933 onwards together with Abanindranath Tagore. Her seminal publication \"\"Indian sculpture\"\" (1933) was a profound analysis of Indian sculpture, conceptualized in size and format to function as an actual handbook. After the British left India in 1947, her husband Laszlo Nemenyi opted to"} +{"qid": "test3434", "pid": "18104863", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Somalal Shah\"\nSomalal Shah Somalal Shah (1905–1994) was an Indian painter and art teacher. Born in Kapadvanj and educated in Bombay and Calcutta, he spent three decades painting and teaching art in Bhavnagar in Saurashtra, Gujarat. He was born to a shopkeeper Chunilal and Jekorben on February 14, 1905 in Kapadvanj, Gujarat, India. He studied briefly at Gujarat College in Ahmedabad and Kalavant Karkhana in Baroda. He joined Sir J. J. School of Art, Bombay in 1926. He further studied at Indian Society of Oriental Art, Calcutta established by Abanindranath Tagore. On Ravishankar Raval's advice, he joined Dakshinamurti, an educational institute established"} +{"qid": "test3434", "pid": "16471645", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Nirode Mazumdar\"\nNirode Mazumdar Nirode Mazumdar (11 May 1916 – 26 September 1982) was an Indian painter from the first generation of Indian modernists, and a key member of the Calcutta Group. Nirode Mazumdar was the younger brother of renowned Bengali novelist Kamal Kumar Majumdar, their younger sister Shanu Lahiri (1928-2013) was also a noted painter and art educator. Nirode Mazumdar had his first education under Kshitindranath Majumdar, student of Abanindranath Tagore, at the Indian Society of Oriental Art in Calcutta. After he finished his course Mazumdar was awarded the Norman Blount Memorial Award for his artistic skill. Along with the new"} +{"qid": "test3434", "pid": "17103803", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Kazi Abul Kasem\"\nduring the Language Movement. During his visit to Calcutta, many famous people such as Abanindranath Tagore the creator of \"\"Indian Society of Oriental Art\"\", folklorist Gurusaday Dutt, leading Bengali novelists Tarasankar Bandyopadhyay and many more, who inspired him to chase his dream to become a pathfinder artist. While working in Calcutta, Kasem created quite a few drawing and illustrations of these great people which also brought him to the limelight. In his lifetime, Kasem has created hundreds of pictures, cartoons, and caricatures, a large portion of his arts were published in various famous magazines in Calcutta, also he painted a"} +{"qid": "test3434", "pid": "16687876", "query": "who formed the indian society of oriental art", "answer": "Abanindranath Tagore", "passage": "\"Chintamoni Kar\"\nChintamoni Kar Chintamoni Kar (19 April 1915 – 3 October 2005) was a renowned Indian sculptor. He received civilian awards from the Indian and French governments and won an Olympic silver medal on behalf of Great Britain. Born on 19 April 1915 in Kharagpur, West Bengal, Kar trained at the Indian Society of Oriental Art run by Abanindranath Tagore. He was taught to sculpt by Giridhari Mahapatra and Victor Giovanelli. Kar moved to Paris in 1938 where he studied at the Académie de la Grande Chaumière before moving back to India. Chintamoni Kar was married to Amina Kar and the"} +{"qid": "test3436", "pid": "4828026", "query": "when was the suite life of zack and cody made", "answer": "2005", "passage": "\"The Suite Life of Zack & Cody\"\nOriginal Movie based on \"\"The Suite Life of Zack & Cody\"\" and \"\"The Suite Life on Deck\"\". \"\"The Suite Life Movie\"\" premiered on the Disney Channel in the United States and Canada on March 25, 2011. \"\"The Suite Life on Deck\"\" eventually ended on May 6, 2011. An Indian adaptation of the show, titled \"\"The Suite Life of Karan & Kabir\"\", premiered on Disney Channel India on April 8, 2012. It ran for two seasons and ended on January 19, 2014. In 2005, ABC's child block ABC Kids aired The Suite Life of Zack and Cody until its closing in"} +{"qid": "test3436", "pid": "19064790", "query": "when was the suite life of zack and cody made", "answer": "2005", "passage": "\"The Suite Life of Zack & Cody (season 1)\"\nThe Suite Life of Zack & Cody (season 1) The first season of \"\"The Suite Life of Zack & Cody\"\" aired on Disney Channel from March 18, 2005 to January 27, 2006. The season introduces Zack and Cody Martin, twin brothers who move into the Tipton Hotel in Boston with their mother, Carey, where she sings and performs in the lounge. The show also centers in London Tipton, the daughter of the hotel owner, who is very wealthy and ditzy, the hotel's down-to-earth candy-counter girl, Maddie Fitzpatrick, and Mr. Moseby, the strict, dutiful, and serious manager, who is often the"} +{"qid": "test3436", "pid": "19064783", "query": "when was the suite life of zack and cody made", "answer": "2005", "passage": "\"The Suite Life of Zack & Cody (season 1)\"\nThe Suite Life of Zack & Cody (season 1) The first season of \"\"The Suite Life of Zack & Cody\"\" aired on Disney Channel from March 18, 2005 to January 27, 2006. The season introduces Zack and Cody Martin, twin brothers who move into the Tipton Hotel in Boston with their mother, Carey, where she sings and performs in the lounge. The show also centers in London Tipton, the daughter of the hotel owner, who is very wealthy and ditzy, the hotel's down-to-earth candy-counter girl, Maddie Fitzpatrick, and Mr. Moseby, the strict, dutiful, and serious manager, who is often the"} +{"qid": "test3436", "pid": "4828009", "query": "when was the suite life of zack and cody made", "answer": "2005", "passage": "\"The Suite Life of Zack & Cody\"\nThe Suite Life of Zack & Cody The Suite Life of Zack & Cody is an American sitcom created by Danny Kallis and Jim Geoghan. The series aired on Disney Channel from March 18, 2005, to September 1, 2008 with 4 million viewers, making it the most successful premiere for Disney Channel. The series was nominated for an Emmy Award three times and was nominated for a Nickelodeon Kids' Choice Award three times. The show was also a long-standing staple of the now defunct ABC Kids Saturday morning block on ABC. The series is set in the Tipton Hotel in"} +{"qid": "test3436", "pid": "4828031", "query": "when was the suite life of zack and cody made", "answer": "2005", "passage": "\"The Suite Life of Zack & Cody\"\nfor the show was announced to be released around Summer 2008. It would have featured songs from and inspired from the show, including songs from Ashley Tisdale, Brenda Song, Jesse McCartney, and Raven-Symoné. This idea was scrapped as of 2017. The Suite Life of Zack & Cody The Suite Life of Zack & Cody is an American sitcom created by Danny Kallis and Jim Geoghan. The series aired on Disney Channel from March 18, 2005, to September 1, 2008 with 4 million viewers, making it the most successful premiere for Disney Channel. The series was nominated for an Emmy Award"} +{"qid": "test3439", "pid": "16228705", "query": "when did the new day win the tag team titles", "answer": "2016", "passage": "\"Dash Chisako\"\ntournament, where, later that same day, they defeated their compatriots, Team JWP (Command Bolshoi, Hanako Nakamori and Manami Katsu), to win the 2016 King of Trios, becoming the first female wrestlers to win the tournament. On October 16, Chisako regained the Sendai Girls World Tag Team Championship, when she and her new tag team partner Kaoru defeated Hikaru Shida and Syuri for the vacant title. They lost the title to Shida and Syuri in a rematch on November 23. Chisako regained the title from Shida and Syuri on July 15, 2017, with new partner Cassandra Miyagi. However, just six days"} +{"qid": "test3439", "pid": "19697294", "query": "when did the new day win the tag team titles", "answer": "2016", "passage": "\"Wrestle Kingdom 11\"\nstoryline rivalry against each other following Shibata's September 2012 return to NJPW. The rivalry lasted until January 2014, when the two came together to form a tag team, eventually winning both the 2014 World Tag League and the IWGP Tag Team Championship. The team disbanded in March 2016, when Goto joined the Chaos stable. Shibata and Goto did not face each other until the 2016 World Tag League, where, on December 5, Shibata and his tag team partner Yuji Nagata defeated Goto and Tomohiro Ishii with Shibata pinning Goto for the win. Five days later, Goto avenged the loss by"} +{"qid": "test3439", "pid": "18923626", "query": "when did the new day win the tag team titles", "answer": "2016", "passage": "\"Yuji Okabayashi\"\nbecome the new BJW World Strong Heavyweight Champion, winning the first singles title of his professional wrestling career. On August 23, Okabayashi and Sasaki lost the KO-D Tag Team Championship to Daisuke Sasaki and Kota Ibushi. On October 29, Okabayashi and Sekimoto defeated Kohei Sato and Shuji Ishikawa in the finals to win the 2015 Saikyo Tag League and the BJW Tag Team Championship. They lost the title to Hideyoshi Kamitani and Ryota Hama on December 30. On June 8, 2016, Okabayashi won another tag team title, when he and Yasufumi Nakanoue defeated Kazma Sakamoto and Yuji Hino for the"} +{"qid": "test344", "pid": "20868157", "query": "who wrote the song city of new orleans", "answer": "Steve Goodman", "passage": "\"Steve Goodman (album)\"\none guy who was at least as interested in picking an old country song as he was in baring his soul.\"\" Steve Goodman (album) Steve Goodman is the debut album of singer/songwriter Steve Goodman, released in 1971. It included his most well-known composition \"\"City of New Orleans\"\", first covered by Arlo Guthrie. The album was reissued on CD in 1999 and included two bonus tracks, \"\"Election Year Rag\"\" and \"\"Georgia Rag\"\". The album was a critical success, although a commercial failure. In reviewing the 1999 reissue, Allmusic critic William Ruhlmann called \"\"City of New Orleans\"\" the \"\"obvious standout\"\" and wrote,"} +{"qid": "test344", "pid": "6571590", "query": "who wrote the song city of new orleans", "answer": "Steve Goodman", "passage": "\"City of New Orleans (song)\"\nCity of New Orleans (song) \"\"City of New Orleans\"\" is a folk song written by Steve Goodman (and first recorded for Goodman's self-titled 1971 album), describing a train ride from Chicago to New Orleans on the Illinois Central Railroad's \"\"City of New Orleans\"\" in bittersweet and nostalgic terms. Goodman got the idea while traveling on the Illinois Central line for a visit to his wife's family. The song has been recorded by numerous artists both in the US and Europe, including two major hit versions: first by Arlo Guthrie in 1972, and later by Willie Nelson in 1984. An article"} +{"qid": "test344", "pid": "6571594", "query": "who wrote the song city of new orleans", "answer": "Steve Goodman", "passage": "\"City of New Orleans (song)\"\n\"\"Jingle, Jingle, Jingle\"\", The Jukebox Band sing this song to celebrate their promotion of winning the slogan contest. Israeli singer Yehoram Gaon recorded an Hebrew version, which was translated by Ilan Goldhirsch, titled \"\"Shalom lakh eretz nehederet\"\". Punk rock supergroup cover band Me First and the Gimme Gimmes released a version as a single in 2017. Judy Collins In her album \"\"Judith\"\" City of New Orleans (song) \"\"City of New Orleans\"\" is a folk song written by Steve Goodman (and first recorded for Goodman's self-titled 1971 album), describing a train ride from Chicago to New Orleans on the Illinois Central"} +{"qid": "test344", "pid": "2730480", "query": "who wrote the song city of new orleans", "answer": "Steve Goodman", "passage": "\"City of New Orleans (train)\"\nCity of New Orleans (train) The City of New Orleans is an Amtrak passenger train which operates on an overnight schedule between Chicago and New Orleans. The train is a successor to the Illinois Central Railroad's \"\"Panama Limited\"\". The present name was revived in 1981. The original \"\"City of New Orleans\"\" began in 1947 as part of the Illinois Central Railroad, and was the longest daylight run in the United States. The daylight train under that name ran through 1971. It is the subject of the bittersweet 1971 song \"\"City of New Orleans\"\", written by Steve Goodman. Additional corridor service"} +{"qid": "test344", "pid": "2730490", "query": "who wrote the song city of new orleans", "answer": "Steve Goodman", "passage": "\"City of New Orleans (train)\"\n\"\"Saluki\"\", and \"\"City of New Orleans\"\" trains from CN's tracks to Norfolk Southern's Chicago Line in the Greater Grand Crossing neighborhood in Chicago. This will eliminate a time consuming switchback on the St. Charles Air Line into Chicago Union Station. A typical \"\"City of New Orleans\"\" consist goes as follows: \"\"City of New Orleans\"\" is a folk music song written and first performed by Steve Goodman in 1970 and subsequently recorded by Arlo Guthrie in 1972 and many other artists, notably Willie Nelson, Johnny Cash, John Denver (with slightly different lyrics), Judy Collins, and Jerry Reed. The song lyrics trace"} +{"qid": "test3440", "pid": "8511751", "query": "who wrote if she knew what she wants", "answer": "Jules Shear", "passage": "\"If She Knew What She Wants\"\nmusic videos were created for the song, one that was commonly shown in North America and the other that was commonly shown in Europe. The \"\"American version\"\" was produced by Tamar Simon Hoffs, the mother of Bangles guitarist/vocalist Susanna Hoffs, who sings lead in this song. The Bangles version is featured in the 2006 Tim Allen and Courteney Cox superhero comedy \"\"Zoom\"\". If She Knew What She Wants \"\"If She Knew What She Wants\"\" is a song by Jules Shear released on his 1985 album \"\"The Eternal Return\"\". The song was recorded a year later by The Bangles for their"} +{"qid": "test3440", "pid": "8511750", "query": "who wrote if she knew what she wants", "answer": "Jules Shear", "passage": "\"If She Knew What She Wants\"\nIf She Knew What She Wants \"\"If She Knew What She Wants\"\" is a song by Jules Shear released on his 1985 album \"\"The Eternal Return\"\". The song was recorded a year later by The Bangles for their 1986 album \"\"Different Light\"\". Shear's song originally was written in the first person as a love song; the Bangles rewrote the lyrics in the third person rather than change the subject's gender. The Bangles charted at number 29 on the \"\"Billboard\"\" Hot 100, number 31 on the UK Singles Chart, and number 31 on the Australian Kent Music Report chart. Two different"} +{"qid": "test3440", "pid": "413322", "query": "who wrote if she knew what she wants", "answer": "Jules Shear", "passage": "\"The Bangles\"\nthe wistful \"\"If She Knew What She Wants\"\", written and first recorded by Jules Shear (which reached 29 on the Billboard Hot 100 in the summer of 1986 and was in the German Top 20 for 13 weeks). There was friction among band members after music industry media began singling out Hoffs as the lead singer of the group, a result of Columbia Records releasing mostly singles on which Hoffs sang lead vocal. In fact, singing duties on the group's albums were evenly divided among all of the band's members, all of whom wrote or co-wrote songs. Hoffs starred in"} +{"qid": "test3440", "pid": "3735010", "query": "who wrote if she knew what she wants", "answer": "Jules Shear", "passage": "\"Jules Shear\"\nhighly polished, synthesizer-heavy effort, produced by Bill Drescher (of Rick Springfield fame). The album opened with \"\"If She Knew What She Wants\"\", which The Bangles would make into a hit. It also featured what would prove to be Shear's only hit single under his own name, \"\"Steady\"\" which he wrote in collaboration with Cyndi Lauper. The single reached No. 48 in the U.S. Shear would go on to form two more bands, Reckless Sleepers and Raisins in the Sun. He also conceived (and hosted the first 13 episodes of) the MTV series \"\"Unplugged\"\". His songs have been more commercially successful"} +{"qid": "test3442", "pid": "7990454", "query": "is coca cola a public or private company", "answer": "Public", "passage": "\"Criticism of Coca-Cola\"\nthere was a federal suit under which the US government unsuccessfully attempted to force The Coca-Cola Company to remove caffeine from its products. In 1944, Escola was a waitress in a restaurant. She was putting away glass bottles of Coca-Cola when one of the bottles spontaneously exploded in her hand. She successfully argued that the company was liable. Coca-Cola is rich in sugar, especially sucrose, which causes dental caries when consumed regularly. Besides this, the high caloric value contributes to obesity. Both are major health issues in the developed world. According to the Harvard School of Public Health in 2015,"} +{"qid": "test3443", "pid": "18411218", "query": "who wrote from now on from the greatest showman", "answer": "Benj Pasek and Justin Paul", "passage": "\"The Greatest Showman\"\nas P.T. Barnum, spare no expense in production values, add a score by Oscar and Tony winners Benj Pasek and Justin Paul and still end up with the shrill blast of nothing that is \"\"The Greatest Showman\"\"? Ask first-time director Michael Gracey, who cut his teeth on commercials and music videos without ever mastering the crucial knack of building snippets of musical comedy and drama into a satisfying whole.\"\" Justin Chang of the \"\"Los Angeles Times\"\" wrote that the film's failures \"\"are rooted in something deeper: a dispiriting lack of faith in the audience's intelligence, and a dawning awareness of"} +{"qid": "test3444", "pid": "10794559", "query": "who sang nice day for a white wedding", "answer": "Billy Idol", "passage": "\"A Nice Day for a Posh Wedding\"\nA Nice Day for a Posh Wedding \"\"A Nice Day for a Posh Wedding\"\" is the seventh episode of the second season from the dramedy series \"\"Ugly Betty\"\". It is the 30th episode in the series, which aired on November 8, 2007. The episode was written by Silvio Horta & Marco Pennette and directed by James Hayman. The episode's title is a play on the Billy Idol song \"\"White Wedding\"\" (which features the line \"\"It's a nice day for a white wedding\"\") and Victoria Beckham's nickname in the Spice Girls, \"\"Posh.\"\" The episode begins as Ignacio comes into Betty's bedroom"} +{"qid": "test3444", "pid": "6734966", "query": "who sang nice day for a white wedding", "answer": "Billy Idol", "passage": "\"White Wedding (song)\"\nThe song was featured in the 1998 film \"\"The Wedding Singer\"\" (in which Idol appears), on the American TV series \"\"My Name Is Earl\"\" and on the British TV series \"\"Blackpool\"\". It was also featured in the 1993 film \"\"True Romance\"\" during the scene where Alabama is being tattooed. It was also featured in the skate videos \"\"CKY\"\" and Toy Machine's Jump Off A Building. The line, \"\"It's a nice day to start again\"\", was featured on the sticker on the front of Idol's 2005 album, \"\"Devil's Playground\"\". The song was remixed as (Trashcan Jack vs Billy Idol) \"\"Club Wedding\"\""} +{"qid": "test3444", "pid": "6734969", "query": "who sang nice day for a white wedding", "answer": "Billy Idol", "passage": "\"White Wedding (song)\"\n\"\"Ritual\"\"; the song's chorus contains the line, \"\"it's a nice night for a black wedding,\"\" an obvious homage to Idol's 1982 hit \"\"White Wedding.\"\" Due to claimed scheduling difficulties, Rob Halford of Judas Priest was featured on the track instead. Notes: White Wedding (song) \"\"White Wedding\"\" is a song by Billy Idol that appeared on his album \"\"Billy Idol\"\" in 1982. It is often considered one of his most recognizable songs, although other Idol songs charted higher. In the US, it peaked at No. 110 on the \"\"Billboard\"\" Bubbling Under the Hot 100 chart on 27 November 1982, then reached"} +{"qid": "test3446", "pid": "1310744", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "\"Speed of sound\"\nsuch as for \"\"The Queen's Birthday\"\" is being fired. In a gas or liquid, sound consists of compression waves. In solids, waves propagate as two different types. A longitudinal wave is associated with compression and decompression in the direction of travel, and is the same process in gases and liquids, with an analogous compression-type wave in solids. Only compression waves are supported in gases and liquids. An additional type of wave, the transverse wave, also called a shear wave, occurs only in solids because only solids support elastic deformations. It is due to elastic deformation of the medium perpendicular to"} +{"qid": "test3446", "pid": "12378228", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "Solid\nSolid Solid is one of the four fundamental states of matter (the others being liquid, gas, and plasma). In solids molecules are closely packed. It is characterized by structural rigidity and resistance to changes of shape or volume. Unlike liquid, a solid object does not flow to take on the shape of its container, nor does it expand to fill the entire volume available to it like a gas does. The atoms in a solid are tightly bound to each other, either in a regular geometric lattice (crystalline solids, which include metals and ordinary ice) or irregularly (an amorphous solid"} +{"qid": "test3446", "pid": "12378272", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "Solid\nabsorption beyond Earth's atmosphere, as well. Solid Solid is one of the four fundamental states of matter (the others being liquid, gas, and plasma). In solids molecules are closely packed. It is characterized by structural rigidity and resistance to changes of shape or volume. Unlike liquid, a solid object does not flow to take on the shape of its container, nor does it expand to fill the entire volume available to it like a gas does. The atoms in a solid are tightly bound to each other, either in a regular geometric lattice (crystalline solids, which include metals and ordinary"} +{"qid": "test3446", "pid": "691468", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "Fog\nobjects that cast shadows. Sound typically travels fastest and farthest through solids, then liquids, then gases such as the atmosphere. Sound is affected during fog conditions due to the small distances between water droplets, and air temperature differences. Molecular effect: Though fog is essentially liquid water, the many droplets are separated by small air gaps. High-pitched sounds have a high frequency, which in turn means they have a short wavelength. To transmit a high frequency wave, air must move back and forth very quickly. Short-wavelength high-pitched sound waves are reflected and refracted by many separated water droplets, partially cancelling and"} +{"qid": "test3446", "pid": "12378557", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "Sound\nor focused). The mechanical vibrations that can be interpreted as sound can travel through all forms of matter: gases, liquids, solids, and plasmas. The matter that supports the sound is called the medium. Sound cannot travel through a vacuum. Sound is transmitted through gases, plasma, and liquids as longitudinal waves, also called compression waves. It requires a medium to propagate. Through solids, however, it can be transmitted as both longitudinal waves and transverse waves. Longitudinal sound waves are waves of alternating pressure deviations from the equilibrium pressure, causing local regions of compression and rarefaction, while transverse waves (in solids) are"} +{"qid": "test3446", "pid": "9504734", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "\"Nonlinear acoustics\"\nNonlinear acoustics Nonlinear acoustics (NLA) is a branch of physics and acoustics dealing with sound waves of sufficiently large amplitudes. Large amplitudes require using full systems of governing equations of fluid dynamics (for sound waves in liquids and gases) and elasticity (for sound waves in solids). These equations are generally nonlinear, and their traditional linearization is no longer possible. The solutions of these equations show that, due to the effects of nonlinearity, sound waves are being distorted as they travel. A sound wave propagates through a material as a localized pressure change. Increasing the pressure of a gas or fluid"} +{"qid": "test3446", "pid": "521189", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "\"Transmission medium\"\nTransmission medium A transmission medium is a material substance (solid, liquid, gas, or plasma) that can propagate energy waves. For example, the transmission medium for sounds is usually a gas, but solids and liquids may also act as a transmission medium for sound. The absence of a material medium in vacuum may also constitute a transmission medium for electromagnetic waves such as light and radio waves. While material substance is not required for electromagnetic waves to propagate, such waves are usually affected by the transmission media they pass through, for instance by absorption or by reflection or refraction at the"} +{"qid": "test3446", "pid": "521197", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "\"Transmission medium\"\nto a channel to follow. Following are unguided media used for data communication: Transmission and reception of data typically is performed in four steps. Transmission medium A transmission medium is a material substance (solid, liquid, gas, or plasma) that can propagate energy waves. For example, the transmission medium for sounds is usually a gas, but solids and liquids may also act as a transmission medium for sound. The absence of a material medium in vacuum may also constitute a transmission medium for electromagnetic waves such as light and radio waves. While material substance is not required for electromagnetic waves to"} +{"qid": "test3446", "pid": "1310736", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "\"Speed of sound\"\nmph); (about 35 times as fast as in air) which is around the maximum speed that sound will travel under normal conditions. Sound waves in solids are composed of compression waves (just as in gases and liquids), and a different type of sound wave called a shear wave, which occurs only in solids. Shear waves in solids usually travel at different speeds, as exhibited in seismology. The speed of compression waves in solids is determined by the medium's compressibility, shear modulus and density. The speed of shear waves is determined only by the solid material's shear modulus and density. In"} +{"qid": "test3446", "pid": "1310752", "query": "where does sound travel fastest solid liquid or gas", "answer": "solids", "passage": "\"Speed of sound\"\nexactly. In a similar way, compression waves in solids depend both on compressibility and density—just as in liquids—but in gases the density contributes to the compressibility in such a way that some part of each attribute factors out, leaving only a dependence on temperature, molecular weight, and heat capacity ratio which can be independently derived from temperature and molecular composition (see derivations below). Thus, for a single given gas (assuming the molecular weight does not change) and over a small temperature range (for which the heat capacity is relatively constant), the speed of sound becomes dependent on only the temperature"} +{"qid": "test3449", "pid": "19069046", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"Democratic Party vice presidential candidate selection, 1960\"\nDemocratic Party vice presidential candidate selection, 1960 This article lists those who were potential candidates for the Democratic nomination for Vice President of the United States in the 1960 election. After winning the presidential nomination on the first ballot of the 1960 Democratic National Convention, Massachusetts Senator John F. Kennedy turned his attention to picking a running mate. Kennedy chose Senate Majority Leader Lyndon B. Johnson, who had finished second on the presidential ballot, as his running mate. Johnson, a Protestant Texan, provided geographical and religious balance to a ticket led by a Catholic Northeasterner, but many liberals did not"} +{"qid": "test3449", "pid": "19069049", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"Democratic Party vice presidential candidate selection, 1960\"\nof Kennedy. Democratic Party vice presidential candidate selection, 1960 This article lists those who were potential candidates for the Democratic nomination for Vice President of the United States in the 1960 election. After winning the presidential nomination on the first ballot of the 1960 Democratic National Convention, Massachusetts Senator John F. Kennedy turned his attention to picking a running mate. Kennedy chose Senate Majority Leader Lyndon B. Johnson, who had finished second on the presidential ballot, as his running mate. Johnson, a Protestant Texan, provided geographical and religious balance to a ticket led by a Catholic Northeasterner, but many liberals"} +{"qid": "test3449", "pid": "6234110", "query": "3 candidates for the democratic nomination in 1960", "answer": "Pat Brown", "passage": "\"1960 Democratic National Convention\"\nhoused command-posts for the campaigns of the various candidates seeking the nomination, temporary studio spaces for the television networks, and workspaces for select print journalists. The major candidates for the 1960 Democratic presidential nomination were Kennedy, Governor Pat Brown of California, Senator Stuart Symington of Missouri, Senator Lyndon B. Johnson of Texas, former Illinois Governor Adlai Stevenson, Senator Wayne Morse of Oregon, and Senator Hubert Humphrey of Minnesota. Several other candidates sought support in their home state or region as \"\"favorite son\"\" candidates without any realistic chance of winning the nomination. Symington, Stevenson, and Johnson all declined to campaign in"} +{"qid": "test3449", "pid": "17192842", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"History of the Poles in the United States\"\nthe face of a Republican landslide that year. Into the 1960s Polonia as a whole continued to vote solidly for the liberal New Deal Coalition and for local Democratic party organization candidates. The first candidate on a national ticket was Senator Edmund S Muskie (Marciszewski), nominated by the Democrats for vice president in 1968. He was a prominent, but unsuccessful, candidate for the Democratic nomination for president in 1972; he later served as Secretary of State. The first appointee to the Cabinet was John Gronouski, chosen by John F. Kennedy as postmaster general 1963–65. By 1967, there were nine Polish"} +{"qid": "test3449", "pid": "11375708", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"National Democratic Party of Alabama\"\nsouthern states despite Harry S. Truman being the Democratic nominee. In 1960, Democrat John F. Kennedy was on the ballot and carried the state, but most of his electors were unfaithful, opting for Virginia Senator Harry F. Byrd in the electoral college. In 1964, the Democrat Lyndon B. Johnson was not in ballot in Alabama, and an unpledged electors slate was officially nominated by Alabama's Democrats. At the time, Alabama listed all the electors on the ballot but not the Presidential candidate, so Democratic Presidential candidate Hubert Humphrey was supported by the National Democratic slate (whose most popular elector won"} +{"qid": "test3449", "pid": "6234109", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"1960 Democratic National Convention\"\n1960 Democratic National Convention The 1960 Democratic National Convention was held in Los Angeles, California, on July 11–July 15, 1960. It nominated Senator John F. Kennedy of Massachusetts for President and Senator Lyndon B. Johnson of Texas for Vice President. In the general election, the Kennedy–Johnson ticket won an electoral college victory and a narrow popular vote plurality (slightly over 110,000 nationally) over the Republican candidates Vice President Richard M. Nixon and UN Ambassador Henry C. Lodge II. Due to its size, the Biltmore Hotel was selected to serve as the headquarters hotel for the Democratic National Committee. It also"} +{"qid": "test3449", "pid": "505367", "query": "3 candidates for the democratic nomination in 1960", "answer": "Pat Brown", "passage": "\"1960 United States presidential election\"\nhold the South, and used television effectively. In 1963, Kennedy was assassinated and was succeeded by Johnson. Nixon would later successfully seek the presidency in 1968. The major candidates for the 1960 Democratic presidential nomination were John F. Kennedy, Governor Pat Brown of California, Senator Stuart Symington from Missouri, Senator Lyndon B. Johnson from Texas, former Illinois Governor Adlai Stevenson, Senator Wayne Morse from Oregon, and Senator Hubert Humphrey from Minnesota. Several other candidates sought support in their home state or region as \"\"favorite son\"\" candidates without any realistic chance of winning the nomination. Symington, Stevenson, and Johnson all declined"} +{"qid": "test3449", "pid": "6234124", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"1960 Democratic National Convention\"\nof the vote. The convention was the setting for Norman Mailer's famous profile of Kennedy, \"\"Superman Comes to the Supermarket,\"\" published in \"\"Esquire\"\". 1960 Democratic National Convention The 1960 Democratic National Convention was held in Los Angeles, California, on July 11–July 15, 1960. It nominated Senator John F. Kennedy of Massachusetts for President and Senator Lyndon B. Johnson of Texas for Vice President. In the general election, the Kennedy–Johnson ticket won an electoral college victory and a narrow popular vote plurality (slightly over 110,000 nationally) over the Republican candidates Vice President Richard M. Nixon and UN Ambassador Henry C. Lodge"} +{"qid": "test3449", "pid": "638197", "query": "3 candidates for the democratic nomination in 1960", "answer": "John F. Kennedy", "passage": "\"Adlai Stevenson II\"\nthe Convention.\"\" In May 1960 Senator John F. Kennedy, who was actively campaigning for the Democratic nomination, visited Stevenson at his Libertyville home. Kennedy asked Stevenson for a public endorsement of his candidacy; in exchange Kennedy promised, if elected, to appoint Stevenson as his Secretary of State. Stevenson turned down the offer, which strained relations between the two men. At the 1960 Democratic National Convention in Los Angeles, Stevenson's admirers, led by Eleanor Roosevelt, Agnes Meyer, and such Hollywood celebrities as Dore Schary and Henry Fonda, vigorously promoted him for the nomination, even though he was not an announced candidate."} +{"qid": "test345", "pid": "12022851", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Middle-earth wars and battles\"\ndied defending him as he lay on the ground. Thorin died the day after the battle, after meeting Bilbo one last time. Thorin was succeeded as King of Durin's folk by Dáin Ironfoot, who then began refounding the Dwarvish kingdom of Erebor under the Mountain. Bard the Bowman re-established the Mannish city of Dale. One of the first actions of the victors, after treating their wounded and burying their dead, was to divide the fabulous treasure of Erebor. Bard took Bilbo's one-fourteenth share of the gold and silver in return for the Arkenstone, whereupon he shared his reward with the"} +{"qid": "test345", "pid": "2461043", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Iron Hills\"\nwas the lord of the Iron Hills after the death of his father, Náin the son of Grór. He was considered a mighty dwarf because he killed the Orc Azog of Moria, and therefore avenged his father, when he was at an age considered young to Dwarves. After the death of Thorin Oakenshield in the Battle of the Five Armies, Dáin became King of Erebor until his death during the War of the Ring. Thorin III Stonehelm Son of Dáin II. After the death of his father, he became the Lord of the people of both Erebor and the Iron"} +{"qid": "test345", "pid": "686798", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Lonely Mountain\"\nthe dragon's hoard as recompense for the destruction. Thorin, mad with greed, refused all claims and sent word to his second cousin Dáin II Ironfoot, chief of the Dwarves of the Iron Hills, who brought reinforcements to the aid of Thorin and Company. However before any battle began, an army of Orcs and Wargs descended on Erebor. Dwarves, Elves, and Men joined ranks against them, which led to the Battle of Five Armies. During this battle, Thorin's nephews Fíli and Kíli were slain, and Thorin himself was mortally injured and died shortly afterwards. The title of King under the Mountain"} +{"qid": "test345", "pid": "2734156", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Dáin II Ironfoot\"\nhelp during the quest to reclaim Erebor. Dáin set out with several hundred Dwarves, and arrived just in time for the Battle of Five Armies. Thorin was mortally wounded in this battle, and after his death and the extinction of the main branch of Durin's line, Dáin succeeded Thorin as King under the Mountain and King of Durin's folk, the first not in the direct line of Durin. Dáin was killed during the War of the Ring in , defending the body of his ally King Brand of Dale before the gates of Erebor. He was by then an old"} +{"qid": "test345", "pid": "13166112", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Middle-earth dwarf characters\"\nBattle of Five Armies, Dáin was proclaimed king of Durin's Folk. He fell in the Battle of Dale and was succeeded by his son Thorin III Stonehelm. Thorin III Stonehelm ( – Fourth Age) was born the son and heir of Dáin II Ironfoot, the lord of the Iron Hills. In 2941 Dáin succeeded as King under the Mountain and King of Durin's Folk. Thorin himself succeeded to the kingships when his father was killed during the War of the Ring in T.A. 3019. Thorin III helped rebuild Erebor and Dale, and prospered. His realm became a close ally of"} +{"qid": "test345", "pid": "686801", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Lonely Mountain\"\nDáin was killed before the gates of Erebor defending the body of his fallen ally King Brand of Dale. Dáin was succeeded by his son Thorin III Stonehelm, who along with King Bard II withstood the siege and later routed Sauron's forces. In \"\"The Quest of Erebor\"\", Gandalf related that although Sauron's main thrust was directed against Gondor, the restoration of the Kingdom under the Mountain had established a bulwark against Sauron's northern allies, who otherwise could have done great harm in Arnor and the Shire. \"\"The Lonely Mountain: Lair of Smaug the Dragon\"\" is a board game produced in"} +{"qid": "test345", "pid": "686608", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Thorin Oakenshield\"\nwas buried with the Arkenstone, and Orcrist was returned and laid upon his tomb. The blade would glow blue should Orcs approach, and they could thus not take the Mountain by surprise. Thorin was succeeded as leader of Durin's Folk by his cousin Dáin. Part III of Appendix A in \"\"The Return of the King\"\" gives an overview of the history of Durin's Folk and gives more of Thorin's background. He was born in , and when Smaug attacked Erebor in 2770, Thorin was driven into exile with the other surviving dwarves. In 2799 when he was 53 (a young"} +{"qid": "test345", "pid": "18000042", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"The Hobbit: The Battle of the Five Armies\"\ndismisses him. Bilbo sneaks out of Erebor to hand the Arkenstone over to Thranduil and Bard so that they can trade it for the treasures they were promised and prevent a battle. When Bard's and Thranduil's armies gather at the gates of Erebor, offering to trade the Arkenstone for the promised treasures, Thorin angrily refuses to believe they have the Arkenstone until Bilbo admits giving it away and chides Thorin for letting greed cloud his judgement. Outraged by what he sees as betrayal, Thorin nearly kills Bilbo, but Gandalf appears and shames Thorin into releasing Bilbo. Thorin's cousin Dáin arrives"} +{"qid": "test345", "pid": "13166079", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Middle-earth dwarf characters\"\nof his shocked kinsmen and Bilbo, driving Kíli into a berserk rage. Glóin ( – Fourth Age 15), son of Gróin, was one of the twelve companions of Thorin and Bilbo Baggins on the Quest of Erebor, as was his older brother Óin. The two brothers were direct descendants of Durin the Deathless. Many years after the Quest, Glóin and his son Gimli were sent to Rivendell as an embassy from King Dáin II to bring news of Erebor, Moria, and what they knew of Sauron's plans; they arrived in time to attend the . He wears a white hood."} +{"qid": "test345", "pid": "686799", "query": "who became king of erebor after thorin dies", "answer": "Dáin", "passage": "\"Lonely Mountain\"\npassed to Dáin. With the restoration of the Kingdom under the Mountain the area became prosperous again. Dale was rebuilt under Bard's leadership, and Dwarves and Men reforged their friendship. Some of the Dwarves, led by Balin, left Erebor to reclaim the ancient Dwarvish Kingdom of Khazad-dûm (also known as Moria). They established a colony there but five years later Balin was killed by an Orc, and soon after Moria was overrun by Orcs and the rest of the Dwarves were killed. Gimli, a dwarf of Erebor and the son of Glóin, one of Thorin's twelve companions, was chosen to"} +{"qid": "test3451", "pid": "6749862", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"Presidency of Theodore Roosevelt\"\nas the Chief Engineer of the canal project. When Wallace resigned in 1905, Roosevelt appointed John Frank Stevens, who built a railroad in the canal zone and initiated the construction of a lock canal. Stevens was replaced in 1907 by George Washington Goethals, who saw construction through to its completion. Roosevelt traveled to Panama in November 1906 to inspect progress on the canal. Although presidents before him had traveled outside the U.S. in other diplomatic capacities prior to or after serving as president, Roosevelt was the first to do so while in office. Russia had occupied the Chinese region of"} +{"qid": "test3451", "pid": "4476780", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"Philippe Bunau-Varilla\"\nNew Panama Canal Company soon abandoned efforts to build the canal. It sold the land in Panama to the United States, in hopes that the company would not fail entirely. U.S. President Grover Cleveland, an anti-imperialist, avoided the canal issue. When the more supportive Theodore Roosevelt became president (succeeding William McKinley), canal planning resumed in the United States. Bunau-Varilla vociferously promoted construction of the canal. With aid from the New Panama Canal Company's New York attorney, William Nelson Cromwell, he persuaded the government to select Panama as the canal site, as opposed to the popular alternative, Nicaragua. When opponents voiced"} +{"qid": "test3451", "pid": "6198447", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"History of the Panama Canal\"\nthe three presidents whose terms spanned the construction period, Theodore Roosevelt is most associated with the canal and Woodrow Wilson presided over its opening. However, William Howard Taft may have given the canal its greatest impetus for the longest time. Taft visited Panama five times as Roosevelt's secretary of war and twice as president. He hired John Stevens and later recommended Goethals as Stevens' replacement. Taft became president in 1909, when the canal was half finished, and was in office for most of the remainder of the work. However, Goethals later wrote: \"\"The real builder of the Panama Canal was"} +{"qid": "test3451", "pid": "2100143", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"Panama Canal Zone\"\nassets, the Canal Zone was formally turned over by Panama on May 4, 1904, when American officials reopened the Panama City offices of the canal company and raised the American flag. This marked the beginning point for U.S. excavation and construction which concluded in August 1914 with the opening of the canal to commercial traffic. By order of President Theodore Roosevelt under the Panama Canal Acts of 1902 and 1904 the Secretary of War was made supervisor of canal construction and the second Isthmian Canal Commission made the governing body for the Canal Zone. Under the Panama Canal Act of"} +{"qid": "test3451", "pid": "334982", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"Panama Canal\"\nWar William Howard Taft and was directed to avoid the inefficiency and corruption that had plagued the French 15 years earlier. On May 6, 1904, President Theodore Roosevelt appointed John Findley Wallace, formerly chief engineer and finally general manager of the Illinois Central Railroad, as chief engineer of the Panama Canal Project. Overwhelmed by the disease-plagued country and forced to use often dilapidated French infrastructure and equipment, as well as being frustrated by the overly bureaucratic ICC, Wallace resigned abruptly in June 1905. He was succeeded by John Frank Stevens, a self-educated engineer who had built the Great Northern Railroad."} +{"qid": "test3451", "pid": "20560907", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"Panama Canal Department\"\nPanama Canal Department The Panama Canal Department was a department (geographical command) of the United States Army, responsible for the defense of the Panama Canal Zone between 1917 and 1947. The Isthmian Canal Commission and the Panama Canal Guard of 1904–1914 both played a pivotal role in the construction and early defense of the Canal. With the active support and encouragement of the United States, Panama declared its independence from Colombia on 3 Nov. 1903 and that same month, the United States received the right to build and administer the Panama Canal. On 8 Mar. 1904, President Theodore Roosevelt appointed"} +{"qid": "test3451", "pid": "2666939", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"John Frank Stevens\"\nStevens built over a thousand miles of railroad, including the original Cascade Tunnel. Stevens left the Great Northern in 1903 for the Chicago, Rock Island and Pacific Railroad, where he was promoted to vice-president. Then, in 1905, at Hill's recommendation, he was hired by Theodore Roosevelt as chief engineer on the Panama Canal. Stevens' primary achievement in Panama was to build the infrastructure needed for the completion of the canal. \"\"The digging,\"\" he said, \"\"is the least thing of all.\"\" He proceeded immediately to build warehouses, machine shops, and piers. Communities for the personnel were planned and built to include"} +{"qid": "test3451", "pid": "6749860", "query": "who was president when the panama canal was built", "answer": "Theodore Roosevelt", "passage": "\"Presidency of Theodore Roosevelt\"\nregarding construction of the canal. According to Roosevelt biographer Edmund Morris, most other Latin American nations welcomed the prospect of the new canal in hopes of increased economic activity, but anti-imperialists in the U.S. raged against Roosevelt's aid to the Panamanian separatists. Secretary of State Hay and French diplomat Philippe-Jean Bunau-Varilla, who represented the Panamanian government, quickly negotiated the Hay–Bunau-Varilla Treaty. Signed on November 18, 1903, it established the Panama Canal Zone—over which the United States would exercise sovereignty—and insured the construction of an Atlantic to Pacific ship canal across the Isthmus of Panama. Panama sold the Canal Zone (consisting"} +{"qid": "test3452", "pid": "18567776", "query": "who is super bowl 2018 half time show", "answer": "Justin Timberlake", "passage": "\"Super Bowl LII halftime show\"\nSuper Bowl LII halftime show The Super Bowl LII Halftime Show (officially known as the Pepsi Super Bowl LII Halftime Show) took place on February 4, 2018 at U.S. Bank Stadium in Minneapolis, Minnesota, as part of Super Bowl LII. Justin Timberlake was the featured performer, as confirmed by the National Football League (NFL) on October 22, 2017. It was televised nationally by NBC. It received four nominations at the 70th Primetime Emmy Awards. The show began with Jimmy Fallon introducing Justin Timberlake, followed by a video screen depicting Timberlake performing \"\"Filthy\"\" in a club setting below the field level"} +{"qid": "test3452", "pid": "2734467", "query": "who is super bowl 2018 half time show", "answer": "Justin Timberlake", "passage": "\"Super Bowl XXXVIII halftime show controversy\"\nSuper Bowl XXXVIII halftime show controversy Super Bowl XXXVIII – which was broadcast live on February 1, 2004 from Houston, Texas on the CBS television network in the United States – was noted for a controversial halftime show in which Janet Jackson's breast, adorned with a nipple shield, was exposed by Justin Timberlake for about half a second, in what was later referred to as a \"\"wardrobe malfunction\"\". The incident, sometimes referred to as Nipplegate, was widely discussed. Along with the rest of the halftime show, it led to an immediate crackdown and widespread debate on perceived indecency in broadcasting."} +{"qid": "test3453", "pid": "6580072", "query": "where does prime rib come from on a cow", "answer": "the primal rib", "passage": "\"Standing rib roast\"\nStanding rib roast A standing rib roast, also known as prime rib, is a cut of beef from the primal rib, one of the nine primal cuts of beef. While the entire rib section comprises ribs six through 12, a standing rib roast may contain anywhere from two to seven ribs. It is most often roasted \"\"standing\"\" on the rib bones so that the meat does not touch the pan. An alternative cut removes the top end of the ribs for easier carving. Rib eye steaks are cut from a standing rib, boned with most of the fat and lesser"} +{"qid": "test3454", "pid": "5008144", "query": "who enforces the charter of rights and freedoms", "answer": "the courts", "passage": "\"Section 2 of the Canadian Charter of Rights and Freedoms\"\nSection 2 of the Canadian Charter of Rights and Freedoms Section 2 of the \"\"Canadian Charter of Rights and Freedoms\"\" (\"\"\"\"Charter\"\"\"\") is the section of the Constitution of Canada that lists what the \"\"Charter\"\" calls \"\"fundamental freedoms\"\" theoretically applying to everyone in Canada, regardless of whether they are a Canadian citizen, or an individual or corporation. These freedoms can be held against actions of all levels of government and are enforceable by the courts. The fundamental freedoms are freedom of expression, freedom of religion, freedom of thought, freedom of belief, freedom of peaceful assembly and freedom of association. Section 1"} +{"qid": "test3454", "pid": "6492425", "query": "who enforces the charter of rights and freedoms", "answer": "the courts", "passage": "\"Section 31 of the Canadian Charter of Rights and Freedoms\"\nSection 31 of the Canadian Charter of Rights and Freedoms Section 31 of the Canadian Charter of Rights and Freedoms is a part of the Constitution of Canada, which clarifies that the Charter does not increase the powers of either the federal government or the legislatures of the provinces of Canada. As a result, only the courts may enforce the rights in the Charter. The section reads, As the government of Canada notes, this shows the Charter does not disturb the balance of the distribution of legislative powers under the Constitution Act, 1867. Constitutional scholar Peter Hogg has called section"} +{"qid": "test3454", "pid": "1181446", "query": "who enforces the charter of rights and freedoms", "answer": "the courts", "passage": "\"Canadian Charter of Rights and Freedoms\"\nsystem of government, and as judges were perceived not to have enforced rights well in the past, it was questioned whether the courts should be named as the enforcers of the Charter, as Trudeau wanted. Conservatives argued that elected politicians should be trusted instead. It was eventually decided that the responsibility should go to the courts. At the urging of civil libertarians, judges could even now exclude evidence in trials if acquired in breach of Charter rights in certain circumstances, something the Charter was not originally going to provide for. As the process continued, more features were added to the"} +{"qid": "test3454", "pid": "1181433", "query": "who enforces the charter of rights and freedoms", "answer": "the courts", "passage": "\"Canadian Charter of Rights and Freedoms\"\nin enforcing them than was the Bill of Rights. The courts, when confronted with violations of Charter rights, have struck down unconstitutional federal and provincial statutes and regulations or parts of statutes and regulations, as they did when Canadian case law was primarily concerned with resolving issues of federalism. The Charter, however, granted new powers to the courts to enforce remedies that are more creative and to exclude more evidence in trials. These powers are greater than what was typical under the common law and under a system of government that, influenced by Canada's parent country the United Kingdom, was"} +{"qid": "test3454", "pid": "1181435", "query": "who enforces the charter of rights and freedoms", "answer": "the courts", "passage": "\"Canadian Charter of Rights and Freedoms\"\na few of the rights belong exclusively to natural persons, or (as in sections 3 and 6) only to citizens of Canada. The rights are enforceable by the courts through section 24 of the Charter, which allows courts discretion to award remedies to those whose rights have been denied. This section also allows courts to exclude evidence in trials if the evidence was acquired in a way that conflicts with the Charter and might damage the reputation of the justice system. Section 32 confirms that the Charter is binding on the federal government, the territories under its authority, and the"} +{"qid": "test3454", "pid": "1181462", "query": "who enforces the charter of rights and freedoms", "answer": "courts", "passage": "\"Canadian Charter of Rights and Freedoms\"\nParliamentary supremacy. Others would say that the European Convention on Human Rights (ECHR) has now limited British parliamentary power to a greater degree than the Canadian Charter limited the power of the Canadian Parliament and provincial legislatures. Hogg has speculated that the British adopted the \"\"Human Rights Act 1998\"\", which allows the ECHR to be enforced directly in domestic courts, partly because they were inspired by the similar Canadian Charter. The Canadian Charter bears a number of similarities to the European Convention, specifically in relation to the limitations clauses contained in the European document. Because of this similarity with European"} +{"qid": "test3454", "pid": "1181453", "query": "who enforces the charter of rights and freedoms", "answer": "Supreme Court of Canada", "passage": "\"Canadian Charter of Rights and Freedoms\"\ntask of interpreting and enforcing the Charter falls to the courts, with the Supreme Court of Canada being the ultimate authority on the matter. With the Charter's supremacy confirmed by section 52 of the Constitution Act, 1982, the courts continued their practice of striking down unconstitutional statutes or parts of statutes as they had with earlier case law regarding federalism. However, under section 24 of the Charter, courts also gained new powers to enforce creative remedies and exclude more evidence in trials. Courts have since made many important decisions, including \"\"R. v. Morgentaler\"\" (1988), which struck down Canada's abortion law,"} +{"qid": "test3454", "pid": "13676830", "query": "who enforces the charter of rights and freedoms", "answer": "Supreme Court of Canada", "passage": "\"Feminist views on pornography\"\nThe Supreme Court of Canada's 1992 ruling in \"\"R. v. Butler\"\" (the Butler decision) fueled further controversy, when the court decided to incorporate some elements of Dworkin and MacKinnon's legal work on pornography into the existing Canadian obscenity law. In \"\"Butler\"\" the Court held that Canadian obscenity law violated Canadian citizens' rights to free speech under the Canadian Charter of Rights and Freedoms if enforced on grounds of morality or community standards of decency; but that obscenity law \"\"could\"\" be enforced constitutionally against some pornography on the basis of the Charter's guarantees of sex equality. The Court's decision cited extensively"} +{"qid": "test3454", "pid": "1181445", "query": "who enforces the charter of rights and freedoms", "answer": "courts", "passage": "\"Canadian Charter of Rights and Freedoms\"\nliberal bias among judges, should courts be called upon to enforce rights. Additionally, the British Parliament cited their right to uphold Canada's old form of government. At a suggestion of the Conservatives, Trudeau's government thus agreed to a committee of Senators and MPs to further examine the bill of rights as well as the patriation plan. During this time, 90 hours were spent on the bill of rights alone, all filmed for television, while civil rights experts and advocacy groups put forward their perceptions on the Charter's flaws and omissions and how to remedy them. As Canada had a parliamentary"} +{"qid": "test3455", "pid": "12927833", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"Joker (The Dark Knight)\"\nSupporting Actor in recognition of Ledger's performance in \"\"The Dark Knight\"\". Joker (The Dark Knight) The Joker is a fictional character who appears in Christopher Nolan's 2008 superhero film \"\"The Dark Knight\"\". Based upon the DC Comics character of the same name, he was played by Australian actor Heath Ledger. A psychopathic mass murderer with a sadistic sense of humor, the Joker attempts to undermine the efforts of Batman (Christian Bale), James Gordon (Gary Oldman), and Harvey Dent (Aaron Eckhart) to rid Gotham City of crime. The character embodies themes of chaos, anarchy and obsession: throughout the film, he expresses"} +{"qid": "test3455", "pid": "12927800", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"Joker (The Dark Knight)\"\nJoker (The Dark Knight) The Joker is a fictional character who appears in Christopher Nolan's 2008 superhero film \"\"The Dark Knight\"\". Based upon the DC Comics character of the same name, he was played by Australian actor Heath Ledger. A psychopathic mass murderer with a sadistic sense of humor, the Joker attempts to undermine the efforts of Batman (Christian Bale), James Gordon (Gary Oldman), and Harvey Dent (Aaron Eckhart) to rid Gotham City of crime. The character embodies themes of chaos, anarchy and obsession: throughout the film, he expresses a desire to upset social order through crime, and defines himself"} +{"qid": "test3455", "pid": "7290528", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"The Dark Knight (film)\"\nmastermind known as the Joker (Ledger), who seeks to undermine Batman's influence and turn the city to chaos. Nolan's inspiration for the film was the Joker's comic book debut in 1940, the 1988 graphic novel \"\"\"\", and the 1996 series \"\"\"\", which retold Two-Face's origin. The \"\"Dark Knight\"\" nickname was first applied to Batman in \"\"Batman\"\" #1 (1940), in a story written by Bill Finger. \"\"The Dark Knight\"\" was filmed primarily in Chicago, as well as in several other locations in the United States, the United Kingdom, and Hong Kong. Nolan used IMAX 70 mm film cameras to film some"} +{"qid": "test3455", "pid": "960764", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"Joker (character)\"\nyoung children. Hamill's Joker is considered a defining portrayal, and he voiced the character in spin-off films (1993's \"\"\"\" and 2000's \"\"\"\"), video games (2001's \"\"\"\"), related series (1996's \"\"\"\", 2000's \"\"Static Shock\"\" and 2001's \"\"Justice League\"\"), action figures, toys and amusement-park voiceovers. A redesigned Joker, voiced by Kevin Michael Richardson, appeared in 2004's \"\"The Batman\"\"; Richardson was the first African-American to play the character. After Christopher Nolan's successful 2005 Batman film reboot, \"\"Batman Begins\"\", which ended with a teaser for the Joker's involvement in a sequel, the character appeared in 2008's \"\"The Dark Knight\"\", played by Heath Ledger as"} +{"qid": "test3455", "pid": "960687", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"Joker (character)\"\nreferenced in a number of media. The Joker has been adapted to serve as Batman's adversary in live-action, animated, and video game incarnations, including the 1960s \"\"Batman\"\" television series (played by Cesar Romero) and in films by Jack Nicholson in \"\"Batman\"\" (1989); Heath Ledger in \"\"The Dark Knight\"\" (2008); Jared Leto in \"\"Suicide Squad\"\" (2016); and Joaquin Phoenix in \"\"Joker\"\" (2019). Mark Hamill, Troy Baker, and others have provided the character's voice. Bill Finger, Bob Kane, and Jerry Robinson are credited with creating the Joker, but their accounts of the character's conception differ, each providing his own version of events."} +{"qid": "test3455", "pid": "12927802", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"Joker (The Dark Knight)\"\nperformance; he himself regarded it as his most enjoyable. When the film was released in July 2008, six months after the actor had died from an accidental prescription drug overdose, the performance caused a sensation, receiving widespread acclaim and numerous posthumous accolades, including the Academy Award for Best Supporting Actor. The character is indirectly referenced at the end of \"\"Batman Begins\"\", when Lt. James Gordon (Gary Oldman) describes to Batman (Christian Bale) a suspect wanted in connection with an armed robbery and double homicide. Gordon shows Batman a joker playing card left at the crime scene. The Joker (Heath Ledger)"} +{"qid": "test3455", "pid": "12137404", "query": "who plays joker in batman the dark knight", "answer": "Ledger", "passage": "\"Joker in other media\"\ncritical and commercial failure of \"\"Batman & Robin\"\", this film was cancelled. Heath Ledger played the Joker in Christopher Nolan's 2008 film \"\"The Dark Knight\"\". Ledger's interpretation of the character was specifically influenced by the graphic novels \"\"\"\" and \"\"\"\". In the film, he wears the character's traditional colour palette, while his facial appearance includes clown makeup that covers facial scars of a Glasgow smile. This version of the Joker embodies themes of chaos, anarchy, and obsession; he expresses a desire to upset social order through crime, and defines himself by his conflict with Batman. The character explores techniques found"} +{"qid": "test3456", "pid": "2109434", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "Lucille Simmons", "passage": "\"We Shall Overcome\"\nWe Shall Overcome \"\"We Shall Overcome\"\" is a gospel song which became a protest song and a key anthem of the Civil Rights Movement. The song is most commonly attributed as being lyrically descended from \"\"I'll Overcome Some Day\"\", a hymn by Charles Albert Tindley that was first published in 1900. The modern version of the song was first said to have been sung by tobacco workers led by Lucille Simmons during a 1945 strike in Charleston, South Carolina. In 1947, the song was published under the title \"\"We Will Overcome\"\" in an edition of the \"\"People's Songs Bulletin\"\" (a"} +{"qid": "test3456", "pid": "2109450", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "President Lyndon Johnson", "passage": "\"We Shall Overcome\"\nJoan Baez, led a crowd of 300,000 in singing \"\"We Shall Overcome\"\" at the Lincoln Memorial during A. Philip Randolph's March on Washington. President Lyndon Johnson, himself a Southerner, used the phrase \"\"we shall overcome\"\" in addressing Congress on March 15, 1965, in a speech delivered after the violent \"\"Bloody Sunday\"\" attacks on civil rights demonstrators during the Selma to Montgomery marches, thus legitimizing the protest movement. Dr. Martin Luther King, Jr. recited the words from \"\"We Shall Overcome\"\" in his final sermon delivered in Memphis on Sunday, March 31, 1968, before his assassination. He had done so in a"} +{"qid": "test3456", "pid": "1274079", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "Guy Carawan", "passage": "\"Pete Seeger\"\nByrds had a number one hit with \"\"Turn! Turn! Turn!\"\" in 1965. Seeger was one of the folk singers responsible for popularizing the spiritual \"\"We Shall Overcome\"\" (also recorded by Joan Baez and many other singer-activists) that became the acknowledged anthem of the Civil Rights Movement, soon after folk singer and activist Guy Carawan introduced it at the founding meeting of the Student Nonviolent Coordinating Committee (SNCC) in 1960. In the PBS \"\"American Masters\"\" episode \"\"\"\", Seeger said it was he who changed the lyric from the traditional \"\"We will overcome\"\" to the more singable \"\"We shall overcome\"\". Seeger was"} +{"qid": "test3456", "pid": "614699", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "Guy Carawan", "passage": "\"Joan Baez\"\nleave her Palo Alto High School classroom in Palo Alto, California, for an air raid drill. The early years of Baez's career saw the Civil Rights Movement in the U.S. become a prominent issue. Her performance of \"\"We Shall Overcome\"\", the civil rights anthem written by Pete Seeger and Guy Carawan, at the 1963 March on Washington for Jobs and Freedom permanently linked her to the song. Baez again sang \"\"We Shall Overcome\"\" in Sproul Plaza during the mid-1960s Free Speech Movement demonstrations at the University of California, Berkeley in Berkeley, California, and at many other rallies and protests. Her"} +{"qid": "test3456", "pid": "2109316", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "Guy Carawan", "passage": "\"Guy Carawan\"\nto lead the singing, and he closed the first evening with \"\"We Shall Overcome.\"\" The audience stood, linked hands and sang—and went away inspired, carrying the song to meetings and demonstrations across the South. According to his wife Candie, one of Guy's most important roles during the Civil Rights Movement—more so than introducing \"\"We Shall Overcome\"\" as a Freedom Song—was his desire to record and archive the evolution of the movement through song. Both Guy and Candie believe that the political usage of religious and folk music could shape movements and influence people to take action in social change, and"} +{"qid": "test3456", "pid": "2109436", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "Guy Carawan", "passage": "\"We Shall Overcome\"\nRights Movement from 1959, when Guy Carawan stepped in with his and Seeger's version as song leader at Highlander, which was then focused on nonviolent civil rights activism. It quickly became the movement's unofficial anthem. Seeger and other famous folksingers in the early 1960s, such as Joan Baez, sang the song at rallies, folk festivals, and concerts in the North and helped make it widely known. Since its rise to prominence, the song, and songs based on it, have been used in a variety of protests worldwide. The U.S. copyright of the \"\"People's Songs Bulletin\"\" issue which contained \"\"We Will"} +{"qid": "test3456", "pid": "15956268", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "President Lyndon Johnson", "passage": "\"Protest songs in the United States\"\nSweet\"\"). Seeger's song \"\"If I Had a Hammer\"\", written with Lee Hays in 1949 in support of the progressive movement, rose to Top Ten popularity in 1962 when covered by Peter, Paul and Mary, going on to become one of the major Freedom Songs of the Civil Rights Movement. \"\"We Shall Overcome\"\", Seeger's adaptation of an American gospel song, continues to be used to support issues from labor rights to peace movements. Seeger was one of the leading singers to protest against then-President Lyndon Johnson through song. Seeger first satirically attacked the president with his 1966 recording of Len Chandler's"} +{"qid": "test3456", "pid": "2109460", "query": "who validated the civil rights movement by proclaiming we shall overcome", "answer": "Lucille Simmons", "passage": "\"We Shall Overcome\"\nMusic, holds the publishers' rights, to 50% of the royalty earnings. Seeger explained that he registered the copyright under the advice of TRO, who showed concern that someone else could register it. \"\"At that time we didn't know Lucille Simmons' name\"\", Seeger said. Their royalties go to the \"\"We Shall Overcome\"\" Fund, administered by Highlander under the trusteeship of the \"\"writers\"\". Such funds are purportedly used to give small grants for cultural expression involving African Americans organizing in the U.S. South. In April 2016, the We Shall Overcome Foundation (WSOF), led by music producer Isaias Gamboa, sued TRO and Ludlow,"} +{"qid": "test3457", "pid": "477689", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "Infection\nability of the host to resist the pathogen. However a host's immune system can also cause damage to the host itself in an attempt to control the infection. Clinicians therefore classify infectious microorganisms or microbes according to the status of host defenses - either as \"\"primary pathogens\"\" or as \"\"opportunistic pathogens\"\": One way of proving that a given disease is \"\"infectious\"\", is to satisfy Koch's postulates (first proposed by Robert Koch), which demands that the infectious agent be identified only in patients and not in healthy controls, and that patients who contract the agent also develop the disease. These postulates"} +{"qid": "test3457", "pid": "173526", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "\"Robert Koch\"\nand observed them through a microscope. His work with anthrax is notable in that he was the first to link a specific microorganism with a specific disease, rejecting the idea of spontaneous generation and supporting the germ theory of disease. During his time as the government advisor with the Imperial Department of Health in Berlin in the 1880s, Robert Koch became interested in tuberculosis research. At the time, it was widely believed that tuberculosis was an inherited disease. However, Koch was convinced that the disease was caused by a bacterium and was infectious, and tested his four postulates using guinea"} +{"qid": "test3457", "pid": "18085184", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "\"Diseases and epidemics of the 19th century\"\nJohn Snow, \"\"et al.\"\", as to contaminated drinking water being the likely source of the disease, relatively quickly identified the East London Water Company as the source of the contaminated water. Quick action prevented further deaths. During the fifth cholera pandemic, Robert Koch isolated \"\"Vibrio cholerae\"\" and proposed postulates to explain how bacteria caused disease. His work helped to establish the germ theory of disease. Prior to this time, many physicians believed that microorganisms were spontaneously generated, and disease was caused by direct exposure to filth and decay. Koch helped establish that the disease was more specifically contagious and was"} +{"qid": "test3457", "pid": "173518", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "\"Robert Koch\"\nRobert Koch Heinrich Hermann Robert Koch (; ; 11 December 1843 – 27 May 1910) was a German physician and microbiologist. As the founder of modern bacteriology, he identified the specific causative agents of tuberculosis, cholera, and anthrax and gave experimental support for the concept of infectious disease, which included experiments on humans and animals. Koch created and improved laboratory technologies and techniques in the field of microbiology, and made key discoveries in public health. His research led to the creation of Koch's postulates, a series of four generalized principles linking specific microorganisms to specific diseases that remain today the"} +{"qid": "test3457", "pid": "2355492", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "\"Friedrich Gustav Jakob Henle\"\nin the kidney. Other anatomical and pathological findings associated with his name are: Henle developed the concepts of contagium vivum and contagium animatum, respectively (\"\"Von den Miasmen und Kontagien\"\", 1840) – thereby following ideas of Girolamo Fracastoro and the work of Agostino Bassi; thus co-founding the theory of microorganisms as the cause of infective diseases. He did not find a special species of bacteria himself – this was achieved by his student Robert Koch. Those two put up the fundamental rules of cleanly defining disease-causing microbes: the Henle Koch postulates. In 1870, he was elected a foreign member of the"} +{"qid": "test3457", "pid": "9564174", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "Bacteria\nnot bacteria, but rather fungi.) Along with his contemporary Robert Koch, Pasteur was an early advocate of the germ theory of disease. Robert Koch, a pioneer in medical microbiology, worked on cholera, anthrax and tuberculosis. In his research into tuberculosis Koch finally proved the germ theory, for which he received a Nobel Prize in 1905. In \"\"Koch's postulates\"\", he set out criteria to test if an organism is the cause of a disease, and these postulates are still used today. Ferdinand Cohn is said to be a founder of bacteriology, studying bacteria from 1870. Cohn was the first to classify"} +{"qid": "test3457", "pid": "9854454", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "\"Medical microbiology\"\nsurgery safer for patients. In the years between 1876 and 1884 Robert Koch provided much insight into infectious diseases. He was one of the first scientists to focus on the isolation of bacteria in pure culture. This gave rise to the germ theory, a certain microorganism being responsible for a certain disease. He developed a series of criteria around this that have become known as the Koch's postulates. A major milestone in medical microbiology is the Gram stain. In 1884 Hans Christian Gram developed the method of staining bacteria to make them more visible and differentiable under a microscope. This"} +{"qid": "test3457", "pid": "1551735", "query": "who developed a set of postulates to prove that specific microorganisms cause disease", "answer": "Robert Koch", "passage": "\"Germ theory of disease\"\ndiscovered that another serious disease of silkworms, \"\"pébrine\"\", was caused by a small microscopic organism now known as \"\"Nosema bombycis\"\" (1870). Pasteur saved France's silk industry by developing a method to screen silkworms eggs for those that were not infected, a method that is still used today to control this and other silkworm diseases. Robert Koch is known for developing four basic criteria (known as Koch's postulates) for demonstrating, in a scientifically sound manner, that a disease is caused by a particular organism. These postulates grew out of his seminal work with anthrax using purified cultures of the pathogen that"} +{"qid": "test3459", "pid": "5632563", "query": "region of antarctica where march of the penguins filmed", "answer": "Dumont d'Urville Station", "passage": "\"March of the Penguins\"\nmelts and the distance to the sea decreases, until finally the parents can leave the chicks to fend for themselves. The DVD version includes a 54-minute film entitled \"\"Of Penguins and Men\"\" made by the film crew Laurent Chalet and Jérôme Mason about the filming of \"\"March of the Penguins\"\". Director and film crew spent more than 13 months at the Dumont d'Urville Station, where the Institut polaire français Paul-Émile Victor is based. Although the penguins' meeting place, one of four in Antarctica, was known to be near, the day on which it occurs is not known, so they had"} +{"qid": "test346", "pid": "13100669", "query": "who won the ncaa women's championship last year 2017", "answer": "South Carolina", "passage": "\"Florida A&M Rattlers and Lady Rattlers\"\nPress College Division National Championship in 1962. The Rattlers also won the inaugural NCAA Division I-AA National Championship in 1978. The Florida A&M Rattlers Men's Tennis team won HBCU National Tennis Championships in 2003, 2007, 2008, 2009 and 2010. They also captured the MEAC Championship for the 2016/2017 season, beating South Carolina State 4-2. Freshman recruit, Luis Federico Nani from Argentina, clinched the last game. The Men Rattlers made it to the first round of the NCAA Championship. The Women's team won the HBCU National Tennis Championship in 2008. Florida A&M Rattlers and Lady Rattlers The Florida A&M Rattlers represent"} +{"qid": "test346", "pid": "15180419", "query": "who won the ncaa women's championship last year 2017", "answer": "South Carolina", "passage": "\"Basketball winning streaks\"\n63-60. Of their wins, 31 were against ranked teams. UConn defeated South Carolina 66-55 on February 13, 2017 at home, to record their 100th straight win. The streak ended at 111 wins on March 31, 2017, following a last-second, 64-66 OT loss to Mississippi State in the semifinals of the 2017 NCAA Women's Tournament. In March 2001, UConn had won their second national championship a year earlier, and was headed to the NCAA tournament as a number 1 seed. They had only lost two games during the regular season, once to Tennessee, and once to Notre Dame, each of whom"} +{"qid": "test346", "pid": "8384074", "query": "who won the ncaa women's championship last year 2017", "answer": "South Carolina Gamecocks", "passage": "\"South Carolina Gamecocks\"\nearned a #1 seed in the NCAA Tournament 4 consecutive seasons (2014-2017). The 2015 season also saw the team win its first out of two NCAA regional championships (2015, 2017) and advance to the Final Four for the first time in school history. Most recently, the Gamecocks won the 2017 NCAA Division I Women's Basketball Tournament National Championship, marking the first ever National Championship that the men's or women's program has ever won in school history. The Gamecocks share a home with the South Carolina men's basketball team at the 18,000-seat Colonial Life Arena. The South Carolina Gamecocks baseball team"} +{"qid": "test3463", "pid": "15327012", "query": "who sang raindrops keep fallin on my head", "answer": "B. J. Thomas", "passage": "\"Raindrops Keep Fallin' on My Head\"\nRaindrops Keep Fallin' on My Head \"\"Raindrops Keep Fallin' on My Head\"\" is a song written by Hal David and Burt Bacharach for the 1969 film \"\"Butch Cassidy and the Sundance Kid\"\". It won an Academy Award for Best Original Song. David and Bacharach also won Best Original Score. The song was recorded by B. J. Thomas in seven takes, after Bacharach expressed dissatisfaction with the first six. In the film version of the song, Thomas had been recovering from laryngitis, which made his voice sound hoarser than in the 7-inch release. The film version featured a separate vaudeville-style instrumental"} +{"qid": "test3463", "pid": "13761999", "query": "who sang raindrops keep fallin on my head", "answer": "B. J. Thomas", "passage": "\"Looking Through a Tear\"\nLooking Through a Tear Looking Through A Tear is the third studio album by Australian pop singer Johnny Farnham, it was released in Australia by EMI Records in July 1970. Farnham's covers of Harry Nilsson's \"\"One\"\", and B. J. Thomas' \"\"Raindrops Keep Fallin' On My Head\"\" were released as singles, and helped to propel the album to #11 on the Australian Kent Music Report Album Charts. \"\"One\"\"/\"\"Mr. Whippy\"\" (non-album track) was released as a double A-side in July 1969 and peaked at #4 on the \"\"Go-Set\"\" National Singles Charts. \"\"Raindrops Keep Fallin' On My Head\"\" was released in November and"} +{"qid": "test3463", "pid": "13762110", "query": "who sang raindrops keep fallin on my head", "answer": "B. J. Thomas", "passage": "\"The Best of Johnny Farnham\"\nwas the double A-sided, \"\"Jamie\"\"/\"\"I Don't Want To Love You\"\", which peaked at #8 on the \"\"Go-Set\"\" National Singles Charts. This was followed by \"\"Rose Coloured Glasses\"\" in October which reached #16. Farnham's second album, \"\"Everybody Oughta Sing A Song\"\" followed in November. Farnham's covers of Harry Nilsson's \"\"One\"\", and B. J. Thomas' \"\"Raindrops Keep Fallin' On My Head\"\" were released as singles, from his third album, \"\"Looking Through A Tear\"\". \"\"One\"\"/\"\"Mr. Whippy\"\" (non-album track) was released as a double A-side in July 1969 and peaked at #4. \"\"Raindrops Keep Fallin' On My Head\"\" was released in November and peaked"} +{"qid": "test3463", "pid": "1466692", "query": "who sang raindrops keep fallin on my head", "answer": "B. J. Thomas", "passage": "\"B. J. Thomas\"\nB. J. Thomas Billy Joe \"\"B.J.\"\" Thomas (born August 7, 1942) is an American popular singer. He is particularly known for his hit songs of the 1960s and 1970s, which appeared on the pop, country, and Christian music charts. His best-known recordings are the Burt Bacharach and Hal David song \"\"Raindrops Keep Fallin' on My Head\"\" and the original version of the Mark James song \"\"Hooked on a Feeling\"\". Thomas was raised in and around Houston, Texas, graduating from Lamar Consolidated High School in Rosenberg. Before his solo career, he sang in a church choir as a teenager, then joined"} +{"qid": "test3465", "pid": "1271134", "query": "how many wars held between india and pakistan", "answer": "four", "passage": "\"Indo-Pakistani wars and conflicts\"\nIndo-Pakistani wars and conflicts Since the partition of British India in 1947 and creation of modern states of India and Pakistan, the two South Asian countries have been involved in four wars, including one undeclared war, and many border skirmishes and military stand-offs. Most of these wars and conflict have ended with defeat or disaster for Pakistan. The Kashmir issue has been the main cause of all major conflicts between the two countries with the exception of the Indo-Pakistani War of 1971 where conflict originated due to turmoil in erstwhile East Pakistan (now Bangladesh). The Partition of British India came"} +{"qid": "test3465", "pid": "6621683", "query": "how many wars held between india and pakistan", "answer": "four", "passage": "\"1971 Bangladesh genocide\"\nthe government of Bangladesh announced plans to put 100 senior Pakistani officers and officials on trial for crimes of genocide. The list included General A. K. Niazi and four other generals. After the war, the Indian Army held 92,000 Pakistani prisoners of war, and 195 of those were suspected of committing war crimes. All 195 of them were released in April 1974 following the tripartite Delhi Agreement between Bangladesh, Pakistan and India, and repatriated to Pakistan, in return for Pakistan's recognition of Bangladesh. Pakistan expressed her interest to perform a trial against those 195 officials and furthermore fearing for the"} +{"qid": "test3466", "pid": "864306", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "\"Geocentric model\"\nit (רקיע- rāqîa'). However, the ancient Greeks believed that the motions of the planets were circular and not elliptical, a view that was not challenged in Western culture until the 17th century, when Johannes Kepler postulated that orbits were heliocentric and elliptical (Kepler's first law of planetary motion). In 1687, Newton showed that elliptical orbits could be derived from his laws of gravitation. The astronomical predictions of Ptolemy's geocentric model were used to prepare astrological and astronomical charts for over 1500 years. The geocentric model held sway into the early modern age, but from the late 16th century onward, it"} +{"qid": "test3466", "pid": "1828971", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "Heliocentrism\nthe Copernican Revolution. While a moving Earth was proposed at least from the 4th century BC in Pythagoreanism, and a fully developed heliocentric model was developed by Aristarchus of Samos in the 3rd century BC, these ideas were not successful in replacing the view of a static spherical Earth, and from the 2nd century AD the predominant model, which would be inherited by medieval astronomy, was the geocentric model described in Ptolemy's \"\"Almagest\"\". The Ptolemaic system was a sophisticated astronomical system that managed to calculate the positions for the planets to a fair degree of accuracy. Ptolemy himself, in his"} +{"qid": "test3466", "pid": "11554116", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "\"Feminist epistemology\"\nnew scientific theories. For example, in his view, the transition from the geocentrism of Ptolemy to the heliocentric theory of Copernicus did not occur through a gradual series of challenges and improvements to the previous model. Rather, it was a sudden and complete revolution because it is impossible to conceptualize the theory of heliocentrism within the dominant geocentric theory. Kuhn argued that together, the ideas of Newton, Galileo, and Kepler completed the revolution that Copernicus started. However, most students of science do not learn of the many failed and alternative scientific paradigms. They are taught a version of the history"} +{"qid": "test3466", "pid": "5986852", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "\"Timeline of astronomy\"\nwith Earth as just one planet orbiting it. However, there were only a few people who took the theory seriously. The earliest recorded sighting of Halley's Comet is made by Chinese astronomers. Their records of the comet's movement allow astronomers today to predict accurately how the comet's orbit changes over the centuries. The astronomer Shi Shen is believed to have cataloged 809 stars in 122 constellations, and he also made the earliest known observation of sunspots. Ptolemy publishes his star catalogue, listing 48 constellations and endorses the geocentric (Earth-centered) view of the universe. His views go unquestioned for nearly 1500"} +{"qid": "test3466", "pid": "864304", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "\"Geocentric model\"\nGeocentric model In astronomy, the geocentric model (also known as geocentrism, or the Ptolemaic system) is a superseded description of the Universe with Earth at the center. Under the geocentric model, the Sun, Moon, stars, and planets all orbited Earth. The geocentric model served as the predominant description of the cosmos in many ancient civilizations, such as those of Aristotle and Ptolemy. Two observations supported the idea that Earth was the center of the Universe. First, from anywhere on Earth, the Sun appears to revolve around Earth once per day. While the Moon and the planets have their own motions,"} +{"qid": "test3466", "pid": "8307332", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "\"Cosmology in medieval Islam\"\nmost notably those following the Maragha school of astronomy, developed non-Ptolemaic planetary models within a geocentric context that were later adapted by the Copernican model in a heliocentric context. Between 1025 and 1028, Ibn al-Haytham (Latinized as Alhazen), began the \"\"hay'a\"\" tradition of Islamic astronomy with his \"\"Al-Shuku ala Batlamyus\"\" (\"\"Doubts on Ptolemy\"\"). While maintaining the physical reality of the geocentric model, he was the first to criticize Ptolemy's astronomical system, which he criticized on empirical, observational and experimental grounds, and for relating actual physical motions to imaginary mathematical points, lines and circles. Ibn al-Haytham developed a physical structure of"} +{"qid": "test3466", "pid": "611572", "query": "who is credited with developing the geocentric view", "answer": "Ptolemy", "passage": "Astronomy\nEarth in the Universe were explored philosophically. The Earth was believed to be the center of the Universe with the Sun, the Moon and the stars rotating around it. This is known as the geocentric model of the Universe, or the Ptolemaic system, named after Ptolemy. A particularly important early development was the beginning of mathematical and scientific astronomy, which began among the Babylonians, who laid the foundations for the later astronomical traditions that developed in many other civilizations. The Babylonians discovered that lunar eclipses recurred in a repeating cycle known as a saros. Following the Babylonians, significant advances in"} +{"qid": "test3467", "pid": "2551331", "query": "who was the voice of templeton in charlotte's web", "answer": "Paul Lynde", "passage": "\"Tony Randall\"\nOscar, and the TV spots were filmed on the same set as \"\"The Odd Couple\"\". During the series run he had a small role in \"\"Everything You Always Wanted to Know About Sex * But Were Afraid to Ask\"\" (1972). In 1973, he was originally hired to play the voice of Templeton the gluttonous rat in \"\"Charlotte's Web\"\", but was replaced at the last minute by Paul Lynde, due to his voice sounding too sophisticated and the director wanting Templeton to have a nasal voice. From 1976–78, he starred in \"\"The Tony Randall Show\"\", playing a Philadelphia judge. He had"} +{"qid": "test3467", "pid": "673428", "query": "who was the voice of templeton in charlotte's web", "answer": "Paul Lynde", "passage": "\"Paul Lynde\"\nvoice work on animated cartoons, particularly those of Hanna-Barbera Productions. His most notable roles included The Hooded Claw in \"\"The Perils of Penelope Pitstop\"\", Mildew Wolf from \"\"It's the Wolf\"\" (a segment of \"\"Cattanooga Cats\"\"), and Pertwee from \"\"Where's Huddles?\"\". He also voiced gluttonous rat Templeton in the animated feature \"\"Charlotte's Web\"\". Lynde's sardonic inflections added a dimension to such lines as the sly, drawn-out whine, \"\"What's in it for \"\"meeee?\"\"\"\" His distinctive voice remains popular among impressionists. Although it is sometimes assumed that actress Alice Ghostley based her speech patterns and mannerisms on Lynde's, according to actress Kaye Ballard"} +{"qid": "test3467", "pid": "673422", "query": "who was the voice of templeton in charlotte's web", "answer": "Paul Lynde", "passage": "\"Paul Lynde\"\nPaul Lynde Paul Edward Lynde (; June 13, 1926January 11, 1982) was an American comedian, voice artist, game show panelist and actor. A character actor with a distinctively campy and snarky persona that often poked fun at his barely in-the-closet homosexuality, Lynde was well known for his roles as Uncle Arthur on \"\"Bewitched\"\" and the befuddled father Harry MacAfee in \"\"Bye Bye Birdie\"\". He was also the regular \"\"center square\"\" panelist on the game show \"\"Hollywood Squares\"\" from 1968 to 1981, and he voiced four Hanna-Barbera productions: he was Templeton the gluttonous rat in \"\"Charlotte's Web\"\", Mildew Wolf from \"\"It's"} +{"qid": "test3467", "pid": "6955601", "query": "who was the voice of templeton in charlotte's web", "answer": "Paul Lynde", "passage": "\"Charlotte's Web (1973 film)\"\nTony's delivery was a bit too sophisticated and his singing was too operatic. He did not have enough of that raunchy feeling that the character required.\"\" Barbera felt Randall had to be replaced, and approached Paul Lynde, who was voicing characters in \"\"The Perils of Penelope Pitstop\"\" at the time, to do a reading. Lynde was officially cast in the following spring, which was followed by Agnes Moorehead, Rex Allen, Pamelyn Ferdin, and Martha Scott who had joined the cast. \"\"Charlotte's Web\"\" was originally slated to be released during the summer of 1972, but by September 1972, its release was"} +{"qid": "test3467", "pid": "6955596", "query": "who was the voice of templeton in charlotte's web", "answer": "Paul Lynde", "passage": "\"Charlotte's Web (1973 film)\"\nwhen the film was made. Ferdin and Lynde also both appeared on \"\"The Paul Lynde Show\"\", another ABC sitcom created to fill the contract of \"\"Bewitched\"\". Bonaduce, Lynde, Gerber, Messick, and Stephenson had previously worked for Hanna-Barbera in their television shows: Lynde appeared in \"\"The Perils of Penelope Pitstop\"\" (uncredited), Bonaduce and Gerber were stars in \"\"Partridge Family 2200 A.D.\"\", and Stephenson and Messick were Hanna-Barbera regulars who regularly lent their voices to many of their shows. In 1967, animators John and Faith Hubley were interested to purchase the film rights of \"\"Charlotte's Web\"\" in hopes of producing a feature-length"} +{"qid": "test3468", "pid": "7175265", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Jurassic Park (song)\"\nJurassic Park (song) \"\"Jurassic Park\"\" is a parody of Richard Harris's version of Jimmy Webb's song \"\"MacArthur Park\"\", written and performed by \"\"Weird Al\"\" Yankovic; it was released both as a single and as part of Yankovic's \"\"Alapalooza\"\" album in October 1993. \"\"Jurassic Park\"\" was penned by Yankovic after he remembered the enjoyment he had when he combined a classic rock track with a recent movie topic with his 1985 song \"\"Yoda\"\". Yankovic decided to combine the plot of the recent movie \"\"Jurassic Park\"\"—a film about a park on a fictional island where geneticists have succeeded in cloning dinosaurs—with the"} +{"qid": "test3468", "pid": "6561474", "query": "when did the jurassic park movies come out", "answer": "2018", "passage": "\"Jurassic Park Interactive\"\ngenre every few minutes.\"\" Gore and three editors for the magazine gave the game an overall score of 7 out of 10, with praise for the game's graphics and music. In 2018, Zack Zwiezen of \"\"Kotaku\"\" ranked the game among the \"\"worst\"\" \"\"Jurassic Park\"\" games ever released, calling it \"\"boring and unintentionally hilarious,\"\" while criticizing the \"\"poorly designed\"\" minigames and the \"\"laughably bad imitations\"\" of the film's characters. Jurassic Park Interactive Jurassic Park Interactive is an action video game based on the 1993 movie \"\"Jurassic Park\"\". It was released in North America on May 10, 1994 exclusively for the 3DO"} +{"qid": "test3468", "pid": "8172742", "query": "when did the jurassic park movies come out", "answer": "2001", "passage": "\"Jurassic Park III: The DNA Factor\"\nto do to collect the particles you need.\"\" In 2018, Zack Zwiezen of \"\"Kotaku\"\" ranked the game among the \"\"worst\"\" \"\"Jurassic Park\"\" games ever released, stating that it \"\"looked and played awful when it was first released, and it hasn’t aged well at all.\"\" Jurassic Park III: The DNA Factor Jurassic Park III: The DNA Factor is a side scrolling and puzzle game set in the \"\"Jurassic Park\"\" movie universe. It was developed by Konami Computer Entertainment Hawaii and published by Konami in 2001 for the Game Boy Advance A cargo plane flying over Isla Sorna is struck by lightning,"} +{"qid": "test3468", "pid": "7175279", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Jurassic Park (song)\"\nlampoon the original material, but instead transposed new elements on top of them. Rob Owen of \"\"Richmond Times-Dispatch\"\" wrote that the song \"\"does nothing but recount the plot of the hit movie\"\" and that \"\"dinosaurs don't lend themselves to music\"\". Jurassic Park (song) \"\"Jurassic Park\"\" is a parody of Richard Harris's version of Jimmy Webb's song \"\"MacArthur Park\"\", written and performed by \"\"Weird Al\"\" Yankovic; it was released both as a single and as part of Yankovic's \"\"Alapalooza\"\" album in October 1993. \"\"Jurassic Park\"\" was penned by Yankovic after he remembered the enjoyment he had when he combined a classic"} +{"qid": "test3468", "pid": "10178460", "query": "when did the jurassic park movies come out", "answer": "2018", "passage": "\"Jurassic Park\"\nbe thought through on that level. It can't be arbitrary [...] the earlier Jurassic Park movies had pretty clear definitive endings. They were much more episodic.\"\" In March 2017, Laura Dern commented, \"\"As I said to the people who are making the new series, 'If you guys make a last one, you gotta let Ellie Sattler come back.'\"\" In February 2018, it was announced that the film, titled Jurassic World 3, would be released on June 11, 2021. It was also announced that Trevorrow would write the script with Emily Carmichael, based on a story by Trevorrow and Connolly; and"} +{"qid": "test3468", "pid": "5613196", "query": "when did the jurassic park movies come out", "answer": "2015", "passage": "\"Six Flags New Orleans\"\nfilmed for the movie \"\"Dawn of the Planet of the Apes\"\" until mid-August. The park was also used to film portions of the movie \"\"Jurassic World\"\" in June 2014. \"\"Jurassic World\"\" used the parking lot as the location for the Jurassic World park. \"\"Deepwater Horizon\"\" built its oil rig set in the parking lot. Deepwater Horizon was the last film to use the parking lot. No movie studio has signed up to use the park for filming since August 2015. In January of 2015, the park was photographed as part of a photo essay/series by Cleveland-based photographer Johnny Joo. In"} +{"qid": "test3468", "pid": "4669235", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Jurassic Park (NES video game)\"\ngame gives the player three lives and four continues. To aid Ocean Software in creating the game, Universal Studios provided the programmers with various materials related to the film, including the script and photos of the sets. In the United States, \"\"Jurassic Park\"\" was released in July 1993. Skyler Miller of AllGame rated the game four stars out of five and wrote, \"\"Jurassic Park is an uncharacteristically good movie adaptation [...]. As a late era NES game, the visuals are appropriately impressive, and pleasingly depict the various jungle environments and many types of dinosaurs you encounter.\"\" \"\"Nintendo Power\"\" praised the"} +{"qid": "test3468", "pid": "4669231", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Jurassic Park (NES video game)\"\nJurassic Park (NES video game) Jurassic Park is a 1993 video game based on the film and novel of the same name. It was developed and published by Ocean Software and released for the Nintendo Entertainment System (NES). Ocean also released \"\"Jurassic Park\"\" on the handheld Game Boy console. The Game Boy version is a port of the NES version. The object of the game is to survive in Jurassic Park, a theme park and zoo where dinosaurs have escaped from containment. Much like the movie and novel which it is based on, Dr. Alan Grant is trapped at Jurassic"} +{"qid": "test3468", "pid": "770079", "query": "when did the jurassic park movies come out", "answer": "2001", "passage": "\"Jurassic Park (film)\"\nFavorite All-Around Motion Picture. Young Artist Awards were given to Ariana Richards and Joseph Mazzello, with the film winning an Outstanding Action/Adventure Family Motion Picture award. In 2001, the American Film Institute ranked \"\"Jurassic Park\"\" as the 35th most thrilling film of American cinema. The film is included in the book \"\"1001 Movies You Must See Before You Die\"\", film lists by \"\"Empire\"\" magazine, and \"\"The Guardian\"\". Since its release, \"\"Jurassic Park\"\" has frequently been cited by film critics and industry professionals as one of the greatest movies of the action and thriller genres. The American Film Institute named \"\"Jurassic"} +{"qid": "test3468", "pid": "2661002", "query": "when did the jurassic park movies come out", "answer": "2001", "passage": "\"Jurassic Park III\"\nCalifornia included South Pasadena and a rock quarry in Irwindale. Filming also took place at Universal Studios' backlot in Los Angeles. Production returned to Hawaii in January 2001 to film the movie's ending, which had not be written at the time of the previous Hawaiian shoot. The ending was filmed on Kauai's Pila'a Beach. The storyline contains minor scenes taken from Crichton's novels \"\"Jurassic Park\"\" and \"\"The Lost World\"\", such as the \"\"Pteranodon\"\" aviary and the use of a boat, that did not appear in these books' film adaptations.Laura Dern's cameo was filmed in a day. In an earlier draft,"} +{"qid": "test3468", "pid": "6561466", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Jurassic Park Interactive\"\nJurassic Park Interactive Jurassic Park Interactive is an action video game based on the 1993 movie \"\"Jurassic Park\"\". It was released in North America on May 10, 1994 exclusively for the 3DO Interactive Multiplayer by Universal Interactive Studios. \"\"Jurassic Park Interactive\"\" was the first video game released by Universal Interactive Studios. The game's interface is set as a computer screen that allows the player to navigate a map of the island, as well as a collection of five minigames programmed by Dennis Nedry. Players have to locate various guests on the map, then engage in a short first-person action level"} +{"qid": "test3468", "pid": "3157737", "query": "when did the jurassic park movies come out", "answer": "2001", "passage": "\"The Lost World: Jurassic Park\"\nmade available in a package with predecessor \"\"Jurassic Park\"\". The films were also featured in a deluxe limited edition box set featuring both DVDs, soundtrack albums, two lenticulars, stills from both films, and a certificate of authenticity signed by set's producers, inside a collector case. After the release of sequel \"\"Jurassic Park III\"\", box sets including all three movies were also made available, as \"\"Jurassic Park Trilogy\"\" on December 11, 2001, and as the \"\"Jurassic Park Adventure Pack\"\" on November 29, 2005. \"\"The Lost World\"\" was first made available on Blu-ray on October 25, 2011, as part of a trilogy"} +{"qid": "test3468", "pid": "3157744", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"The Lost World: Jurassic Park\"\nme wistful about doing a talking picture, because sometimes I got the feeling I was just making this big silent-roar movie... I found myself saying, 'Is that all there is? It's not enough for me.'\"\" The Lost World: Jurassic Park The Lost World: Jurassic Park is a 1997 American science fiction adventure film and the second installment in the \"\"Jurassic Park\"\" film series. A sequel to 1993's \"\"Jurassic Park\"\", the film was written by David Koepp, loosely based on Michael Crichton's 1995 novel \"\"The Lost World\"\", and directed by Steven Spielberg. Gerald R. Molen and Colin Wilson produced the film."} +{"qid": "test3468", "pid": "10236524", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Jurassic Park (Sega video game)\"\ncriticized the game as a poor movie tie-in and included it on the show's list of \"\"Games We Wish Were Buried In New Mexico.\"\" \"\"Game Informer\"\" magazine declared the Genesis version of \"\"Jurassic Park\"\" somewhat superior to the SNES version in a 2012 comparison of the two games. Jurassic Park (Sega video game) Jurassic Park is a 1993 video game developed by BlueSky Software and published by Sega for the Sega Mega Drive/Genesis. It was released as part of the tie-in merchandise to the 1993 film of the same name. The game includes elements from Michael Crichton's 1990 novel, \"\"Jurassic"} +{"qid": "test3468", "pid": "11204355", "query": "when did the jurassic park movies come out", "answer": "2001", "passage": "\"Jurassic Park III: Danger Zone!\"\nJurassic Park III: Danger Zone! Jurassic Park III: Danger Zone! is a 2001 video game developed and published by Knowledge Adventure for Microsoft Windows. It is based on the 2001 film \"\"Jurassic Park III\"\". Gameplay consists of the player(s) going around on a virtual board game map. Knowledge Adventure also concurrently developed and published \"\"\"\". Certain aspects of \"\"Dino Defender\"\" were re-used for \"\"Danger Zone!\"\". InGen's supply of dinosaur DNA is nearly destroyed after an earthquake comes to Jurassic Park. As in \"\"Jurassic Park III: Dino Defender\"\", the player is again cast as a Dino Defender. The player must go"} +{"qid": "test3468", "pid": "12768250", "query": "when did the jurassic park movies come out", "answer": "1997", "passage": "Brachiosaurus\nseeing the dinosaur for the first time was mirrored by audiences. The movements of the movie's \"\"Brachiosaurus\"\" were based on the gait of a giraffe combined with the mass of an elephant. A scene later in the movie used an animatronic head and neck, for when a \"\"Brachiosaurus\"\" interacts with human characters. The digital model of \"\"Brachiosaurus\"\" used in \"\"Jurassic Park\"\" later became the starting point for the ronto models in the 1997 special edition of the film \"\"\"\". Brachiosaurus Brachiosaurus () is a genus of sauropod dinosaur that lived in North America during the Late Jurassic, about 154–153 million"} +{"qid": "test3468", "pid": "8172738", "query": "when did the jurassic park movies come out", "answer": "2001", "passage": "\"Jurassic Park III: The DNA Factor\"\nJurassic Park III: The DNA Factor Jurassic Park III: The DNA Factor is a side scrolling and puzzle game set in the \"\"Jurassic Park\"\" movie universe. It was developed by Konami Computer Entertainment Hawaii and published by Konami in 2001 for the Game Boy Advance A cargo plane flying over Isla Sorna is struck by lightning, and upon crashing, the dinosaur DNA it stored is spread across the island. The player then assumes the role of either Mark Hanson (a photographer) or Lori Torres (an ace pilot), and must wander around the island in a side-scrolling format, collecting DNA and"} +{"qid": "test3468", "pid": "3715489", "query": "when did the jurassic park movies come out", "answer": "1993", "passage": "\"Bob Peck\"\n\"\"An Ungentlemanly Act\"\". In 1993, Peck made his biggest film appearance, when he was cast as park gamekeeper Robert Muldoon in the blockbuster smash hit \"\"Jurassic Park\"\", directed by Steven Spielberg from the 1990 novel of the same name by Michael Crichton. After appearing in \"\"Jurassic Park\"\", Peck appeared in the popular television show \"\"The Young Indiana Jones Chronicles\"\" in 1993 playing General Targo in one episode. He also played Italian Romantic composer Giuseppe Verdi in a television movie documenting the life and success of the composer. In the later years of his life and career, Peck appeared in more"} +{"qid": "test3469", "pid": "2369456", "query": "in the dynastic cycle what is the right to rule called", "answer": "Mandate of Heaven", "passage": "\"Dynastic cycle\"\nthe doubts of many historians when he wrote that \"\"the concept of the dynastic cycle... has been a major block to the understanding of the fundamental dynamics of Chinese history.\"\" The cycle appears as follows: The Mandate of Heaven was the idea that the Emperor was favored by Heaven to rule over China. The Mandate of Heaven explanation was championed by the Chinese philosopher Mencius during the Warring States period. It has 3 main phases: Chinese history is traditionally represented in terms of dynastic cycles. Through its long history, the Chinese have been ruled not by one dynasty, but by"} +{"qid": "test3469", "pid": "2369459", "query": "in the dynastic cycle what is the right to rule called", "answer": "the Mandate of Heaven", "passage": "\"Dynastic cycle\"\nunion, a split will occur\"\" (分久必合,合久必分). Each of these rulers would claim the Mandate of Heaven to legitimize their rule. Although this well-known dynastic periodization of China is more or less based on traditional Sinocentric ideology, it also applies to non-native rulers who sought to gain the Mandate of Heaven. While most ruling dynasties in Chinese history were founded by native Chinese, there were also non-native or Conquest Dynasties established by non-Han Chinese people beyond the traditional border of central part of China dominated by Han Chinese people (also known as China proper). These include the Yuan founded by Mongols"} +{"qid": "test3469", "pid": "2369455", "query": "in the dynastic cycle what is the right to rule called", "answer": "the Mandate of Heaven", "passage": "\"Dynastic cycle\"\nDynastic cycle Dynastic cycle () is an important political theory in Chinese history. According to this theory, each dynasty rises to a political, cultural, and economic peak and then, because of moral corruption, declines, loses the Mandate of Heaven, and falls, only to be replaced by a new dynasty. The cycle then repeats under a surface pattern of repetitive motifs. It sees a continuity in Chinese history from early times to the present by looking at the succession of empires or dynasties, implying that there is little basic development or change in social or economic structures. John K. Fairbank expressed"} +{"qid": "test3469", "pid": "2369460", "query": "in the dynastic cycle what is the right to rule called", "answer": "the Mandate of Heaven", "passage": "\"Dynastic cycle\"\nand the Qing founded by Manchus, who later conquered the central part of China and assumed the title of Emperor of China. Dynastic cycle Dynastic cycle () is an important political theory in Chinese history. According to this theory, each dynasty rises to a political, cultural, and economic peak and then, because of moral corruption, declines, loses the Mandate of Heaven, and falls, only to be replaced by a new dynasty. The cycle then repeats under a surface pattern of repetitive motifs. It sees a continuity in Chinese history from early times to the present by looking at the succession"} +{"qid": "test347", "pid": "10316688", "query": "who plays the mouse in alice in wonderland", "answer": "Barbara Windsor", "passage": "\"The Dormouse\"\nthe Mad Hatter, and the King of Hearts running around trying to catch him, with comical results. The Disney version of the character also appears in \"\"House of Mouse\"\" and \"\"\"\". In Tim Burton's 2010 \"\"Alice in Wonderland\"\" film, the Dormouse is named Mallymkun. Unlike the sleepy character in the book, this Dormouse is an action-oriented swordswoman similar to the character Reepicheep from \"\"The Chronicles of Narnia\"\". She is voiced by Barbara Windsor. She is initially seen with the group Alice first meets in Wonderland, and saving Alice from the Bandersnatch by plucking out its eye. She is seen a"} +{"qid": "test3470", "pid": "17177751", "query": "who sings i don't want to be lonely", "answer": "Ronnie Dyson", "passage": "\"Just Don't Want to Be Lonely\"\nJust Don't Want to Be Lonely \"\"Just Don't Want to Be Lonely\"\" is a song written by Bobby Eli, John Freeman and Vinnie Barrett, originally recorded in 1973 by Ronnie Dyson and popularized internationally by The Main Ingredient. Dyson's version reached No. 60 in the US Pop chart, No. 30 Adult Contemporary, and No. 29 in the US R&B chart. Its flipside was \"\"Point of No Return,\"\" a song written by Tom Bell & Linda Creed. The Main Ingredient's version of the song released in 1974 on RCA Victor and reached No. 10 in the US, No. 8 in US"} +{"qid": "test3470", "pid": "17177752", "query": "who sings i don't want to be lonely", "answer": "Ronnie Dyson", "passage": "\"Just Don't Want to Be Lonely\"\nR&B and No. 42 in US AC. It reached number seven in Canada. The recording was arranged by Bert de Coteaux. It became a gold record. Just Don't Want to Be Lonely \"\"Just Don't Want to Be Lonely\"\" is a song written by Bobby Eli, John Freeman and Vinnie Barrett, originally recorded in 1973 by Ronnie Dyson and popularized internationally by The Main Ingredient. Dyson's version reached No. 60 in the US Pop chart, No. 30 Adult Contemporary, and No. 29 in the US R&B chart. Its flipside was \"\"Point of No Return,\"\" a song written by Tom Bell &"} +{"qid": "test3471", "pid": "3404107", "query": "who was the successful commanding general of the northern forces in the civil war", "answer": "George B. McClellan", "passage": "\"Troop engagements of the American Civil War, 1862\"\nTroop engagements of the American Civil War, 1862 The following is a list of engagements that took place in 1862 during the American Civil War. During the summer and early spring of the year, Union forces gained several successes over the Confederacy, seizing control of Missouri, northern Arkansas, Kentucky, and western Tennessee, along with several coastal areas. Confederate forces defended the capital of Richmond, Virginia, from Union assaults, and then launched counter–offensives into Kentucky and Maryland, both of which end in Union victories. In the Eastern Theater, the Union Army of the Potomac, commanded by Major General George B. McClellan,"} +{"qid": "test3472", "pid": "400064", "query": "who sang the original song send in the clowns", "answer": "Glynis Johns", "passage": "\"Stephen Sondheim\"\noriginal cast of \"\"Into the Woods\"\", Kim Crosby, Chip Zien, Danielle Ferland and Ben Wright, Angela Lansbury and Jim Walton. The concert, directed by John Doyle, was co-hosted by Mia Farrow; greetings from Sheila Hancock, Julia McKenzie, Milton Babbitt, Judi Dench and Glynis Johns were read. After Catherine Zeta-Jones performed \"\"Send in the Clowns\"\", Julie Andrews sang part of \"\"Not a Day Goes By\"\" in a recorded greeting. Although Patti LuPone, Barbara Cook, Bernadette Peters, Tom Aldredge and Victor Garber were originally scheduled to perform, they did not appear. A July 31 BBC Proms concert celebrated Sondheim's 80th birthday at"} +{"qid": "test3472", "pid": "1294532", "query": "who sang the original song send in the clowns", "answer": "Glynis Johns", "passage": "\"Glynis Johns\"\nGlynis Johns Glynis Johns (born 5 October 1923) is a retired Welsh stage, television and film actress, dancer, pianist, and singer. Born in Pretoria, South Africa while her parents were on tour, she is best known for creating the role of Desiree Armfeldt in \"\"A Little Night Music\"\" on Broadway, for which she won a Tony Award, and for playing Winifred Banks in Walt Disney's musical motion picture box office smash \"\"Mary Poppins.\"\" In both roles, she sang songs written specifically for her, including \"\"Send in the Clowns\"\", composed by Stephen Sondheim, and \"\"Sister Suffragette\"\", written by the Sherman Brothers."} +{"qid": "test3473", "pid": "20753920", "query": "where is bigg boss tamil house is located", "answer": "Chennai", "passage": "\"Bigg Boss Tamil 2\"\n\"\"Fun Unlimited\"\" hosted by actor Rio Raj, which described the events in the Bigg Boss house in a humourous manner. A lavish house set, which was used in the first season was renovated just prior to the commencement of the programme. The set is located on the outskirts of the Chennai city in the EVP Film City at Chembarambakkam. The renovated house for the second season included special features including a \"\"jail room\"\" to increase the level of punishments to the contestants who commits mistakes. The winner of the second season of Bigg Boss Tamil was character actress Riythvika, who"} +{"qid": "test3473", "pid": "20197694", "query": "where is bigg boss tamil house is located", "answer": "Chennai", "passage": "\"Bigg Boss Tamil 1\"\nparticipants were, in order of their entry to the house, are as follows : Bigg Boss Tamil 1 Bigg Boss Tamil 1 is the first season of the reality TV programme \"\"Bigg Boss Tamil\"\". The first season aired on Star Vijay from 25 June to 30 September 2017, and aired from 9:00 to 10:30 pm on weekdays and 8:30 to 10:00 pm on weekends. A lavish house set was constructed at EVP theme park, Chennai. The season's presenter was Kamal Haasan. The winner of the season was model/actor Aarav, who received a cash prize of 50 lakh. Lyricist Snehan was"} +{"qid": "test3473", "pid": "20197693", "query": "where is bigg boss tamil house is located", "answer": "Chennai", "passage": "\"Bigg Boss Tamil 1\"\nBigg Boss Tamil 1 Bigg Boss Tamil 1 is the first season of the reality TV programme \"\"Bigg Boss Tamil\"\". The first season aired on Star Vijay from 25 June to 30 September 2017, and aired from 9:00 to 10:30 pm on weekdays and 8:30 to 10:00 pm on weekends. A lavish house set was constructed at EVP theme park, Chennai. The season's presenter was Kamal Haasan. The winner of the season was model/actor Aarav, who received a cash prize of 50 lakh. Lyricist Snehan was the runner-up, while the other finalists included actors Harish Kalyan and Ganesh Venkatraman. The"} +{"qid": "test3473", "pid": "20767951", "query": "where is bigg boss tamil house is located", "answer": "Chennai", "passage": "\"Bigg Boss\"\nat Lonavala. The house for \"\"Bigg Boss Tamil\"\" was constructed at EVP Film City, Chennai and is being used since the first season. Both the seasons so far have had as the prize money. Aaravand Riythvika was the winners of the first and second seasons of the show. All the episodes of the show are available on the OTT platform Hotstar. \"\"Bigg Boss Telugu\"\" is the Telugu version of the show and was produced by Star India on Star Maa with Jr NTR as the host and the Lonavala house was used for the first season. The second season is"} +{"qid": "test3474", "pid": "16387526", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"San Luis Obispo International Film Festival\"\nthe festival arranged for a historic screening of \"\"Citizen Kane\"\" at Hearst Castle. \"\"Citizen Kane\"\" was loosely based on the life of wealthy publisher William Randolph Hearst, and was considered by Hearst supporters to represent an unfavorable view of the newspaper magnate. Hearst went to great lengths to prevent the film from being shown, and he banned the film from being mentioned in any of his newspapers. Hearst's longtime companion, Marion Davies, claimed that he never saw the movie. Ben Mankiewicz, grandson of Herman Mankiewicz who won an Oscar for co-writing the screenplay, introduced the movie at the Hearst Castle"} +{"qid": "test3474", "pid": "3298105", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Samuel Insull\"\na fictionalized biography of William Randolph Hearst, Orson Welles's film \"\"Citizen Kane\"\" is, in part, inspired by the life of Samuel Insull. \"\"It was a real man who built an opera house for the soprano of his choice, and much in the movie was borrowed from that story,\"\" Welles wrote. Welles gave Maurice Seiderman a photograph of Insull, with mustache, to use as a model for the makeup design of the old Charles Foster Kane. Welles denied that the character of Susan Alexander was based on Gladys Wallis, but co-writer Herman J. Mankiewicz did incorporate a related experience into the"} +{"qid": "test3474", "pid": "6120090", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Charles Lederer\"\na \"\"strange design for living at the beach.\"\" Welles became famous in the movie world after the release of \"\"Citizen Kane\"\" in 1941, a story based in part on the life of William Randolph Hearst. The story attempts to solve the mystery of newspaper publisher Charles Foster Kane's last dying word: \"\"Rosebud\"\". Film critic David Thomson calls the word \"\"the greatest secret in cinema.\"\" In 1989, author Gore Vidal disclosed that \"\"Rosebud\"\" was in fact a nickname which Hearst playfully used for the clitoris of his mistress, Marion Davies. Vidal said that Davies told this intimate detail to Lederer, who"} +{"qid": "test3474", "pid": "18466421", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Criticism of Rede Globo\"\nthe documentary received the Portuguese title \"\"Muito Além do Cidadão Kane\"\". The title originated in character Charles Foster Kane, created in 1941 by writer and director Orson Welles for the film \"\"Citizen Kane\"\", which in turn was a dramatized fiction based on the life of William Randolph Hearst the American newspaper business magnate. According to the documentary, Rede Globo uses the same vulgar manipulation of news to influence public opinion as Kane did in the movie. According to an article published in the \"\"Folha de S.Paulo\"\" website on August 28, 2009, an independent production company created the film and the"} +{"qid": "test3474", "pid": "215797", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Joseph Cotten\"\nafter a year, but after a meeting with writer Herman J. Mankiewicz Welles had a suitable project. In mid-1940, filming began on \"\"Citizen Kane\"\", portraying the life of a press magnate (played by Welles) who starts out as an idealist but eventually turns into a corrupt, lonely old man. The film featured Cotten prominently in the role of Kane's best friend Jedediah Leland, eventually a drama critic for one of Kane's papers. When released on May 1, 1941, \"\"Citizen Kane\"\" — based in part on the life of William Randolph Hearst — did not do much business at theaters; Hearst"} +{"qid": "test3474", "pid": "19935503", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Once Upon a Castle\"\nOnce Upon a Castle Once Upon a Castle is a symphonie concertante for organ and orchestra composed in 2003 and revised in 2015 by American composer Michael Daugherty. The music is inspired by both the life and times of American media mogul William Randolph Hearst, Hearst Castle, and the Hollywood lore of Charles Foster Kane, a fictional character based on Hearst in the movie Citizen Kane. The composition was commissioned by the Ann Arbor Symphony Orchestra and a consortium consisting of the Cedar Rapids Symphony Orchestra, the Rockford Symphony Orchestra and the West Michigan Symphony Orchestra. The world premiere was"} +{"qid": "test3474", "pid": "463475", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"William Randolph Hearst\"\nin pressuring theater chains to limit showings of \"\"Citizen Kane,\"\" resulting in only moderate box-office numbers and seriously harming Welles' career later on. The fight over the film was documented in the Academy Award nominated documentary, \"\"The Battle Over Citizen Kane\"\", and nearly sixty years later, HBO offered a fictionalized version of Hearst's efforts in its 1999 original production \"\"RKO 281\"\". Hearst is portrayed in the film by James Cromwell. \"\"Citizen Kane\"\" has twice been ranked No. 1 on AFI's 100 Years...100 Movies (1998 and 2007). William Randolph Hearst William Randolph Hearst Sr. (; April 29, 1863 – August 14,"} +{"qid": "test3474", "pid": "8930578", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"The Battle Over Citizen Kane\"\nThe Battle Over Citizen Kane The Battle Over Citizen Kane is a 1996 documentary film about the clash between newspaper mogul William Randolph Hearst and actor/writer/director Orson Welles over Welles's 1941 motion picture \"\"Citizen Kane\"\", which is widely regarded as one of the greatest films of all time. \"\"The Battle Over Citizen Kane\"\" aired January 29, 1996, as an episode of the Public Broadcast System's \"\"The American Experience\"\" series. The documentary was narrated by Richard Ben Cramer, who co-wrote the program with Thomas Lennon. The rights to \"\"The Battle Over Citizen Kane\"\" were acquired by Scott Free productions in 1997"} +{"qid": "test3474", "pid": "62179", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Citizen Kane\"\nscreenwriter Herman J. Mankiewicz, who had been writing Mercury radio scripts. \"\"Arguing, inventing, discarding, these two powerful, headstrong, dazzlingly articulate personalities thrashed toward \"\"Kane\"\"\"\", wrote biographer Richard Meryman. One of the long-standing controversies about \"\"Citizen Kane\"\" has been the authorship of the screenplay. Welles conceived the project with screenwriter Herman J. Mankiewicz, who was writing radio plays for Welles's CBS Radio series, \"\"The Campbell Playhouse\"\". Mankiewicz based the original outline on the life of William Randolph Hearst, whom he knew socially and came to hate after being exiled from Hearst's circle. In February 1940 Welles supplied Mankiewicz with 300 pages"} +{"qid": "test3474", "pid": "19935508", "query": "who was the movie citizen kane based on", "answer": "William Randolph Hearst", "passage": "\"Once Upon a Castle\"\nmind fragments of Samuel Taylor Coleridge's 1798 poem, Kubla Khan...[the music uses] virtuoso bass pedal riffs surrounded by sizzling strings, rumbling brass, shimmering percussion and pulsating timpani.” Once Upon a Castle Once Upon a Castle is a symphonie concertante for organ and orchestra composed in 2003 and revised in 2015 by American composer Michael Daugherty. The music is inspired by both the life and times of American media mogul William Randolph Hearst, Hearst Castle, and the Hollywood lore of Charles Foster Kane, a fictional character based on Hearst in the movie Citizen Kane. The composition was commissioned by the Ann"} +{"qid": "test3477", "pid": "3168308", "query": "who played scotty baldwins father on general hospital", "answer": "Peter Hansen", "passage": "\"Carly Schroeder\"\nannounced that Schroeder would return as Serena Baldwin to \"\"General Hospital\"\" to honor the late Peter Hansen, who had died in April 2017, who had portrayed her grandfather, Lee Baldwin. Carly Schroeder Carly Brook Schroeder (born October 18, 1990) is an American film and television actress. She is best known for playing Serena Baldwin, the daughter of Scotty Baldwin and Lucy Coe in the \"\"General Hospital\"\" spin-off \"\"Port Charles\"\". She also had a recurring role on the Disney Channel's \"\"Lizzie McGuire\"\". In 2007, she played the lead in \"\"Gracie\"\", a film inspired by a real-life tragedy during the childhood of"} +{"qid": "test3477", "pid": "10311709", "query": "who played scotty baldwins father on general hospital", "answer": "Ross Elliott", "passage": "\"Lee Baldwin\"\nLee Baldwin Lee Baldwin is a fictional character on the daytime dramas \"\"General Hospital\"\" and \"\"Port Charles\"\". Ross Elliott originated the role on \"\"General Hospital\"\" in 1963. Peter Hansen inherited the role in 1965 and played it until 1986 and again from 1989 to 1990 before returning permanently from 1992 to 2004. Lee Baldwin is the adoptive father of Scott Baldwin. A recovering alcoholic, Lee is a pillar in the community and has a thriving law practice. Scott has sometimes been a disappointment to Lee over the years but these days, Lee couldn't be more proud of Scott and the"} +{"qid": "test3477", "pid": "10311731", "query": "who played scotty baldwins father on general hospital", "answer": "Ross Elliott", "passage": "\"Lee Baldwin\"\nintimate. Their second attempt at marriage ended in divorce soon afterwards due to her pre-occupation with Luke's ongoing problems. On July 13, 2017, Lucy comes to Scott to report Lee's passing (actor Peter Hansen died on April 9). Lee Baldwin Lee Baldwin is a fictional character on the daytime dramas \"\"General Hospital\"\" and \"\"Port Charles\"\". Ross Elliott originated the role on \"\"General Hospital\"\" in 1963. Peter Hansen inherited the role in 1965 and played it until 1986 and again from 1989 to 1990 before returning permanently from 1992 to 2004. Lee Baldwin is the adoptive father of Scott Baldwin. A"} +{"qid": "test3477", "pid": "9173594", "query": "who played scotty baldwins father on general hospital", "answer": "Ross Elliott", "passage": "\"History of General Hospital\"\nMacRae), Diana Taylor (Valerie Starrett, later Brooke Bundy), Sharon McGillis (Sharon DeBord) and Jane Harland (Shelby Hiatt). Meg marries Lee Baldwin (Ross Elliott, later Peter Hansen), who adopts her son Scotty and becomes his only family when Meg dies. Diana is torn between two men, Dr. Peter Taylor (Paul Carr, later Craig Huebing) and Dr. Phil Brewer. Sharon marries Dr. Henry Pinkham (Peter Kilman) while Jane marries Howie Dawson (Ray Girardin). In one fast-paced plot in 1971, Audrey is accused of murdering her son's babysitter and \"\"General Hospital\"\" was briefly elevated to the number one position, beating longtime ratings giant"} +{"qid": "test3477", "pid": "18355027", "query": "who played scotty baldwins father on general hospital", "answer": "Peter Hansen", "passage": "\"Susan Brown (American actress)\"\non a recurring status. In between stints, Brown played Victoria Lane's mother, Janet, on \"\"Santa Barbara\"\" and businesswoman Adelaide Fitzgibbons (who was romantically involved with the much younger Kirk Anderson (Tom Wiggin) on \"\"As the World Turns\"\"). When \"\"General Hospital\"\"s spin-off series \"\"Port Charles\"\" began, the Baldwins were established as the core family, although once Kin Shriner (who played Scott Baldwin) returned to \"\"General Hospital\"\", their appearances were reduced. Brown, however, continued to be seen on occasion for special events on both shows. Along with Peter Hansen, she made her final appearance in 2004 in an episode honoring the late"} +{"qid": "test3478", "pid": "12734652", "query": "who won the academy award for the deer hunter", "answer": "Michael Cimino", "passage": "\"The Deer Hunter (novel)\"\nThe Deer Hunter (novel) The Deer Hunter is a novelization by the American writer E. M. Corder based upon the screenplay by Deric Washburn and Michael Cimino of the 1978 war drama film \"\"The Deer Hunter\"\", a film that won five Academy Awards, including Best Picture and Best Director. The novel is set in southern Vietnam, in Pittsburgh and in working-class Clairton, Pennsylvania, a Monongahela River town south of Pittsburgh. The book follows a trio of Rusyn American steel worker friends—Michael \"\"Mike\"\" Vronsky, Steven Pushkov, and Nikanor \"\"Nick\"\" Chevotarevich—both before and during their infantry service in the Vietnam War. The"} +{"qid": "test3478", "pid": "1444581", "query": "who won the academy award for the deer hunter", "answer": "Michael Cimino", "passage": "\"Christopher Walken\"\n\"\"Kojak\"\" as Ben Wiley, a robber. Walken won an Academy Award for Best Supporting Actor in Michael Cimino's 1978 film \"\"The Deer Hunter\"\". He plays a young Pennsylvania steelworker who is emotionally destroyed by the Vietnam War. To help achieve his character's gaunt appearance before the third act, Walken consumed only bananas, water, and rice for a week. Walken's first film of the 1980s was the controversial \"\"Heaven's Gate\"\", directed by Cimino of \"\"Deer Hunter\"\" fame. Walken also starred in the 1981 action adventure \"\"The Dogs of War\"\", directed by John Irvin. He surprised many critics and filmgoers with his"} +{"qid": "test3478", "pid": "809128", "query": "who won the academy award for the deer hunter", "answer": "Christopher Walken", "passage": "\"The Deer Hunter\"\nChristopher Walken. Academy Award-winning film director Miloš Forman and Academy Award-nominated actor Mickey Rourke consider \"\"The Deer Hunter\"\" to be one of the greatest films of all time. Cimino's next film, \"\"Heaven's Gate\"\" (1980), debuted to lacerating reviews and took in only $3 million in ticket sales, effectively leaving United Artists bankrupt. The failure of \"\"Heaven's Gate\"\" led several critics to revise their positions on \"\"The Deer Hunter\"\". Canby said in his famous review of \"\"Heaven's Gate\"\", \"\"[The film] fails so completely that you might suspect Mr. Cimino sold his soul to the Devil to obtain the success of \"\"The"} +{"qid": "test3478", "pid": "809067", "query": "who won the academy award for the deer hunter", "answer": "Michael Deeley", "passage": "\"The Deer Hunter\"\nMan Who Came to Play\"\" by Louis Garfinkle and Quinn K. Redeker, about Las Vegas and Russian roulette. Producer Michael Deeley, who bought the script, hired writer/director Michael Cimino who, with Deric Washburn, rewrote the script, taking the Russian roulette element and placing it in the Vietnam War. The film went over-budget and over-schedule, and ended up costing $15 million. The scenes depicting Russian roulette were highly controversial after the film's release. The film won five Academy Awards, including Best Picture, Best Director for Michael Cimino, and Best Supporting Actor for Christopher Walken, and marked Meryl Streep's first Academy Award"} +{"qid": "test3478", "pid": "809107", "query": "who won the academy award for the deer hunter", "answer": "Michael Cimino", "passage": "\"The Deer Hunter\"\nown.\"\" Mount says he turned to Verna Fields, Universal's then-head of post-production. \"\"I sicked Verna on Cimino,\"\" Mount says. \"\"Verna was no slouch. She started to turn the heat up on Michael, and he started screeching and yelling.\"\" Zinner eventually cut the film down to . Cimino later fired Zinner when he discovered that Zinner was editing down the wedding scenes. Zinner eventually won Best Editing Oscar for \"\"The Deer Hunter\"\". Regarding the clashes between him and Cimino, Zinner stated: \"\"Michael Cimino and I had our differences at the end, but he kissed me when we both got Academy Awards.\"\""} +{"qid": "test3478", "pid": "4903308", "query": "who won the academy award for the deer hunter", "answer": "Barry Spikings", "passage": "\"Barry Spikings\"\nBarry Spikings Barry Spikings (born 23 November 1939) is a British film producer who worked in Hollywood. Spikings is best known as a producer of the 1978 film, \"\"The Deer Hunter\"\", which won five Academy Awards. Spikings was born in Boston, Lincolnshire. After leaving Boston Grammar School he joined the local newspaper, the \"\"Lincolnshire Standard\"\", as a trainee reporter. Later he joined the \"\"Farmers' Weekly\"\", where he won a Golden Ear award for a fifteen-minute film that he produced and directed himself. Spikings then moved to the entertainment world. Initially, he promoted pop music festivals and later films. In 1972,"} +{"qid": "test3478", "pid": "1591187", "query": "who won the academy award for the deer hunter", "answer": "Michael Cimino", "passage": "\"1970s in film\"\npsychological damage caused by such horrors. Christopher Walken and director Michael Cimino earned Oscars for their work on the film, which earned a Best Picture Academy Award. Robert De Niro and Meryl Streep were also nominated for their work in \"\"The Deer Hunter\"\". \"\"Apocalypse Now\"\" won for cinematography and sound, and earned nominations for Robert Duvall and Coppola. Hal Ashby's \"\"Coming Home\"\" portrayed life for Vietnam veterans. Actor Jon Voight won an Academy Award for his role in the film. 1979 saw the poignant \"\"Kramer vs. Kramer\"\", the inspiring \"\"Norma Rae\"\", and the nuclear thriller, \"\"The China Syndrome\"\". \"\"Alien\"\" scared"} +{"qid": "test3478", "pid": "4903310", "query": "who won the academy award for the deer hunter", "answer": "Barry Spikings", "passage": "\"Barry Spikings\"\nto the output from the newly-formed Castle Rock Entertainment. Spikings served as president of Nelson Entertainment through the early 1990s. Afterwards, he formed a production partnership with Eric Pleskow. Barry Spikings Barry Spikings (born 23 November 1939) is a British film producer who worked in Hollywood. Spikings is best known as a producer of the 1978 film, \"\"The Deer Hunter\"\", which won five Academy Awards. Spikings was born in Boston, Lincolnshire. After leaving Boston Grammar School he joined the local newspaper, the \"\"Lincolnshire Standard\"\", as a trainee reporter. Later he joined the \"\"Farmers' Weekly\"\", where he won a Golden Ear"} +{"qid": "test3478", "pid": "14665335", "query": "who won the academy award for the deer hunter", "answer": "Michael Cimino", "passage": "\"Deric Washburn\"\nDeric Washburn Deric Washburn (born June 2, 1937) is an American screenwriter. Washburn was born in Buffalo, NY and grew up in Providence, RI. He graduated from Harvard College, A.B. English Literature, in 1959. His early career was that of a playwright, penning the off-Broadway plays \"\"Ginger Anne\"\" and \"\"The Love Nest\"\". He is best known for co-writing the original screenplay of \"\"The Deer Hunter\"\" with Michael Cimino. As a writer, Washburn was nominated for an Academy Award for Best Writing (Original Screenplay) and a WGA Award for \"\"Best Drama Written Directly for the Screen\"\" for \"\"The Deer Hunter\"\", along"} +{"qid": "test3478", "pid": "1444573", "query": "who won the academy award for the deer hunter", "answer": "Christopher Walken", "passage": "\"Christopher Walken\"\nartists. Walken has received a number of awards and nominations during his career, including winning the Academy Award for Best Supporting Actor for his portrayal of Nikanor \"\"Nick\"\" Chebotarevich in \"\"The Deer Hunter.\"\" He was nominated for the same award and won BAFTA and Screen Actors Guild Awards for his performance as Frank Abagnale Sr. in \"\"Catch Me If You Can\"\". Walken's films have grossed more than $1 billion in the United States. Two-time Tony nominee, he has also played the lead in the Shakespeare plays \"\"Hamlet\"\", \"\"Macbeth\"\", \"\"Romeo and Juliet\"\" and \"\"Coriolanus\"\". He is a popular guest-host of \"\"Saturday"} +{"qid": "test3478", "pid": "11187056", "query": "who won the academy award for the deer hunter", "answer": "Peter Zinner", "passage": "\"Peter Zinner\"\nthree times for his work on \"\"The Godfather\"\" (1972), \"\"The Deer Hunter\"\" (directed by Michael Cimino-1978), and \"\"An Officer and a Gentleman\"\" {directed by Taylor Hackford-1982}. He won the Oscar, a BAFTA, and an Eddie for \"\"The Deer Hunter\"\". His work (with Barry Malkin and Richard Marks) on \"\"The Godfather Part II\"\" (1974) earned a second BAFTA nomination. Zinner was nominated four times for Emmy Awards, and won for the miniseries \"\"War and Remembrance\"\" (1988) and for \"\"Citizen Cohn\"\" (1992). His peers in the American Cinema Editors honored him with six Eddie nominations of which he won four. His many"} +{"qid": "test3478", "pid": "4903309", "query": "who won the academy award for the deer hunter", "answer": "Barry Spikings", "passage": "\"Barry Spikings\"\nhe became the co-owner of British Lion Films; Spikings later joined EMI when it took over British Lion. For the 1978 film, \"\"The Deer Hunter\"\", Spikings won an Academy Award for Best Picture. The film also garnered awards for several of its actors. In 1985, Spikings formed a Canadian company, Nelson Holdings International, with British financier Richard Northcott, to purchase entertainment firms. Nelson later acquired the home video assets of Embassy Pictures from Coca-Cola and film production companies Galactic Films and the Spikings Corporation, and formed Nelson Entertainment. Nelson had the North American home video rights and all international rights"} +{"qid": "test3478", "pid": "1422602", "query": "who won the academy award for the deer hunter", "answer": "Christopher Walken", "passage": "\"John Hurt\"\nWise had invited him to a special pre-production party, hoping Hurt would change his mind, and that he was so impressed by meeting the rest of the cast and crew that he reversed his decision and took the role. Hurt appeared in the 1978 \"\"Midnight Express\"\", for which he won a Golden Globe and a BAFTA and was nominated for an Academy Award for Best Supporting Actor (the latter of which he lost to Christopher Walken for his performance in \"\"The Deer Hunter\"\"). Around the same time, he lent his voice to Ralph Bakshi's animated film adaptation of \"\"Lord of"} +{"qid": "test3478", "pid": "4669886", "query": "who won the academy award for the deer hunter", "answer": "Michael Cimino", "passage": "\"Vilmos Zsigmond\"\nVilmos Zsigmond Vilmos Zsigmond, ASC (; June 16, 1930 – January 1, 2016) was a Hungarian-American cinematographer. His work in cinematography helped shape the look of American movies in the 1970s, making him one of the leading figures in the American New Wave movement. Over his career he became associated with many leading American directors, such as Robert Altman, Steven Spielberg, Brian De Palma, Michael Cimino and Woody Allen. He is best known for his work on the films \"\"Close Encounters of the Third Kind\"\" and \"\"The Deer Hunter\"\". He won the Academy Award for Best Cinematography for his work"} +{"qid": "test3478", "pid": "11423504", "query": "who won the academy award for the deer hunter", "answer": "Christopher Walken", "passage": "\"Christopher Walken on stage and screen\"\nhis career, Walken was credited as \"\"Ken Walken\"\" and later as \"\"Ronnie Walken\"\", until he finally settled on \"\"Christopher Walken\"\". He began acting in films in 1969 and, after a series of increasingly larger roles, won an Academy Award in 1978 as Best Supporting Actor for his role in \"\"The Deer Hunter\"\". Since then, Walken has become a highly sought-after actor, typically performing in numerous films every year. Walken has been a primary character in two film franchises: as Gabriel the fallen angel in \"\"The Prophecy\"\" series, and as Jacob Witting in the made-for-television films based on Patricia MacLachlan's \"\"Sarah,"} +{"qid": "test3478", "pid": "1185690", "query": "who won the academy award for the deer hunter", "answer": "Christopher Walken", "passage": "\"Mingo Junction, Ohio\"\nCreek High School (Grades 9-12). Jefferson County Christian School was also located in the area until 2012. Until 2009, the Catholic school of St. Agnes (Pre-kindergarten to eighth grade) was part of the Steubenville Parochial School District. Mingo Junction served as the Pennsylvania steel mill town in the 1978 film \"\"The Deer Hunter\"\", which won the Academy Award for Best Picture and starred Robert De Niro, Meryl Streep, Christopher Walken, and John Cazale. Many of the scenes that took place in and around a steel mill were filmed in Mingo Junction. Mingo was also the primary filming location for \"\"Reckless\"\","} +{"qid": "test3478", "pid": "16007828", "query": "who won the academy award for the deer hunter", "answer": "Christopher Walken", "passage": "\"1978 National Society of Film Critics Awards\"\nRobert De Niro – \"\"The Deer Hunter\"\" 1. Ingrid Bergman – \"\"Autumn Sonata (Höstsonaten\"\")
2. Jane Fonda – \"\"Coming Home\"\", \"\"Comes a Horseman\"\" and \"\"California Suite\"\"
3. Jill Clayburgh – \"\"An Unmarried Woman\"\"
4. Maggie Smith – \"\"California Suite\"\" 1. Richard Farnsworth – \"\"Comes a Horseman\"\"
1. Robert Morley – \"\"Who Is Killing the Great Chefs of Europe?\"\"
3. Christopher Walken – \"\"The Deer Hunter\"\"
4. Barry Bostwick – \"\"Movie Movie\"\" 1. Meryl Streep – \"\"The Deer Hunter\"\"
2. Maureen Stapleton – \"\"Interiors\"\"
3. Maggie Smith – \"\"California Suite\"\" 1. Paul Mazursky – \"\"An Unmarried Woman\"\"
2. Bertrand Blier –"} +{"qid": "test3479", "pid": "13867468", "query": "vine with heart shaped leaves and white flowers", "answer": "Antigonon leptopus", "passage": "\"Antigonon leptopus\"\nAntigonon leptopus Antigonon leptopus, commonly known as Mexican creeper, coral vine, Coralita, bee bush (in many Caribbean islands) or San Miguelito vine, is a species of flowering plant in the buckwheat family, Polygonaceae. It is a perennial that is native to Mexico. It is a vine with pink or white flowers (\"\"Antigonon leptopus 'alba' \"\"). This plant is listed as a category II invasive exotic by the Florida's pest plant council. \"\"Antigonon leptopus\"\" is a fast-growing climbing vine that holds on via tendrils, and is able to reach 25 ft or more in length. It has cordate (heart shaped), sometimes"} +{"qid": "test348", "pid": "20875687", "query": "who did us fight in world war 1", "answer": "Germany", "passage": "\"Religious effects of World War I\"\npower and influence. Religious effects of World War I Christianity in both Europe and the United States served to unite fellow soldiers of the same denomination and motivated them to fight. Some European countries shared unity across denominations while others did not. In Germany, Catholic and Protestant differences caused tension while Austria-Hungary did not unify Catholic services. The Greek Orthodox Church received much of its income from pilgrimage. The First World War stopped pilgrimage and a heavy tax was required of those who didn't want to fight in the war. The factors caused the Greek Orthodox Church to borrow large"} +{"qid": "test348", "pid": "20875674", "query": "who did us fight in world war 1", "answer": "Germany", "passage": "\"Religious effects of World War I\"\nReligious effects of World War I Christianity in both Europe and the United States served to unite fellow soldiers of the same denomination and motivated them to fight. Some European countries shared unity across denominations while others did not. In Germany, Catholic and Protestant differences caused tension while Austria-Hungary did not unify Catholic services. The Greek Orthodox Church received much of its income from pilgrimage. The First World War stopped pilgrimage and a heavy tax was required of those who didn't want to fight in the war. The factors caused the Greek Orthodox Church to borrow large amounts of money"} +{"qid": "test348", "pid": "9031647", "query": "who did us fight in world war 1", "answer": "Austria-Hungary", "passage": "\"Serbian Americans\"\nAustria-Hungary, 4,321 from Serbia, and 3,724 from Montenegro. Serbian-Americans volunteered in the First Balkan War. During World War I, as many as 15,000 Serbian-American volunteers returned to the Balkans to fight for the Allied cause in their homeland. Serbs in the United States who did not volunteer to fight marched for the creation of Yugoslavia, sent aid to the Balkans through the Red Cross, formed a Serbian Relief Committee, and urged notable Americans to support the Serbian cause. Distinguished Serbian American scientist Mihajlo Pupin, a friend of US President Woodrow Wilson, led the Serbian National Defence (SND), a Serbian-American organization"} +{"qid": "test348", "pid": "133673", "query": "who did us fight in world war 1", "answer": "Germany", "passage": "\"Cinema of Germany\"\nof war films which tended to depict the ordinary German soldiers of World War II as brave and apolitical. The Israeli historian Omer Bartov wrote that German films of the 1950s showed the average German soldier as a heroic victim: noble, tough, brave, honourable, and patriotic while fighting hard in a senseless war for a regime that he did not care for. The \"\"08/15\"\" film trilogy of 1954–55 concerns a sensitive young German soldier who would rather play the piano than fight, and who fights on the Eastern Front without understanding why; however, no mention is made of the genocidal"} +{"qid": "test3483", "pid": "11371482", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Pachaiyappa Mudaliar\"\none such visit to Thanjavur in 1794 he fell ill at Kumbakonam and died at Tiruvaiyaru on 31 March 1794. Pachaiyappa Mudaliar was one of the first Indians to leave a will. He had set aside Rs. 4.5 lakh of what he had left to be spent on Hindu religious institutions and the remaining Rs. 7 lakh on providing an English education to Hindu youth. (\"\"At the time of his death his fortune was estimated at five lakhs of pagodas or 1.7 million rupees\"\" Reference: The Dubashes of Madras by Susan Neild-Basu (1984)). The bequests, however, remained contested even after"} +{"qid": "test3483", "pid": "1121907", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "Lakh\nrather than in English media. In Indian English, the word is used both as an attributive and non-attributive noun, and with either a marked (\"\"-s\"\") or unmarked plural, as in: \"\"1 \"\"lakh\"\" people\"\" or \"\"1 \"\"lakh\"\" of people\"\"; \"\"200 \"\"lakh\"\" rupees\"\"; \"\"5 \"\"lakh\"\" of rupees\"\"; \"\"rupees 10 lakh\"\"; or \"\"5 \"\"lakh\"\" of rupees\"\". In the abbreviated form, usage such as \"\"5L\"\" (for \"\"rupees 5 \"\"lakh\"\"\"\") is common. In this system of numeration 100 \"\"lakh\"\" is called one \"\"crore\"\" and is equal to 10 million. In colloquial Urdu, especially in the city of Karachi, the word \"\"peti\"\" (\"\"suitcase\"\") is also used"} +{"qid": "test3483", "pid": "2957321", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Pakistani rupee\"\nPakistani rupee The Pakistani rupee ( / ALA-LC: ; sign: ₨; code: PKR) is the currency of Pakistan. The issuance of the currency is controlled by the State Bank of Pakistan, the central bank of the country. The most commonly used symbol for the rupee is Rs, used on receipts when purchasing goods and services. In Pakistan, the rupee is also spelled as \"\"rupees\"\", \"\"rupaya\"\" or \"\"rupaye\"\". As standard in Pakistani English, large values of rupees are counted in terms of thousands; lakh (100,000); crore (10 million); arab (1 billion); kharab (100 billion). The word \"\"rūpiya\"\" is derived from the"} +{"qid": "test3483", "pid": "14776686", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"The 65 Lakh Heist\"\nleaving Grewal to the mercy of the humiliated Mrs. Khanna. The 65 Lakh Heist The 65 Lakh Heist is first English version (translated by Sudarshan Purohit) of a Surender Mohan Pathak book. The Hindi crime thriller (, \"\"Painsatth Lakh ki Dacoity\"\") was first published in 1977. It was the 4th book in the Vimal series. The novel begun the trend of anti-heroism in Indian pulp fiction and was very controversial. Vimal is blackmailed into joining a conspiracy to break into the vault of Bharat Bank at Amritsar to loot 6.5 million rupees (65 lakh) inside it. The conspiracy is the"} +{"qid": "test3483", "pid": "14776681", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"The 65 Lakh Heist\"\nThe 65 Lakh Heist The 65 Lakh Heist is first English version (translated by Sudarshan Purohit) of a Surender Mohan Pathak book. The Hindi crime thriller (, \"\"Painsatth Lakh ki Dacoity\"\") was first published in 1977. It was the 4th book in the Vimal series. The novel begun the trend of anti-heroism in Indian pulp fiction and was very controversial. Vimal is blackmailed into joining a conspiracy to break into the vault of Bharat Bank at Amritsar to loot 6.5 million rupees (65 lakh) inside it. The conspiracy is the brainchild of Mayaram Bawa, a veteran vault-buster who is preparing"} +{"qid": "test3483", "pid": "1121906", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "Lakh\nLakh A lakh (; abbreviated L; sometimes written Lac or Lacs; Devanāgarī: लाख) is a unit in the Indian numbering system equal to one hundred thousand (100,000; scientific notation: 10). In the Indian convention of digit grouping, it is written as 1,00,000. For example, in India 150,000 rupees becomes 1.5 \"\"lakh\"\" rupees, written as 1,50,000 or INR 1,50,000. It is widely used both in official and other contexts in Bangladesh, Bhutan, India, Myanmar, Nepal, Pakistan, and Sri Lanka. It is often used in Indian, Pakistani, and Sri Lankan English. In Pakistan, the word \"\"lakh\"\" is used mostly in local languages"} +{"qid": "test3483", "pid": "15780769", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Dus Lakh\"\nDus Lakh Dus Lakh (English: Ten Lakhs or One Million) is a 1966 Hindi comedy film. It was produced and directed by Devendra Goel. Music was composed by Ravi. The starcast included Om Prakash, Sanjay Khan, Babita, Manorama, Helen, Pran, Ramesh Deo, Seema Deo, Neetu Singh and others. Om Prakash won the Filmfare Best Comedian Award and Asha Bhosle won the Filmfare Award for Best Female Playback Singer for the song \"\"Garibon ki Suno\"\" in 1967 for this movie. The story of the film revolves around how the fortunes of a family change after they inherit ten lakh rupees. Gokulchand"} +{"qid": "test3483", "pid": "16679042", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Life Is Beautiful (2012 film)\"\nShe also provides Nagaraj with the jewelry that her father has been saving up for her marriage, which is worth Rs. 1 lakh. Nagaraj successfully starts his cab service under the name of ‘Laxmi’, the only word he can spell in English. Having realized how much Nagaraj loves her, Lakshmi reciprocates her love. Abhi changes back into his old nerdy self, Lakshmi and Satya write their examinations well, and Srinu earns his degree and gets a job. When everything seems to be going well, doctors from Amma's hospital call and inform that Amma's condition is deteriorating and request Srinu to"} +{"qid": "test3483", "pid": "17409841", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Anup Shukla\"\ncrosses a lakh of rupees. Giving the quality that they have in this industry today, earning 3-4 lakh a month is pretty easy to achieve for being a full-time dubbing artist. Anup Shukla Anup Shukla (\"\"Anūpa Śuklā\"\", Born 25 December 1979 in Lucknow, Uttar Pradesh) is an Indian TV anchor, actor and voice actor who speaks English and Hindi. Via translation from Hindi to English, his name is sometimes mentioned as Anoop Shukla and Aanup Shuklaa. Anup Shukla has dubbed for foreign content and once said that one dubbing artist can earn between 75,000 rupees and one lakh by even"} +{"qid": "test3483", "pid": "14870391", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Classmate Stationery\"\nand an opportunity to develop it through interaction with some of the country's leading literary icons. Classmate Spellbee has completed nine seasons so far and is considered India's largest spelling competition. It aims to bring the best spellers together from every part of the nation, focusing on honing the spelling skills of Indian students in a fun and educational way. The last season winner received a cash prize of 2 lakh along with a sponsored trip to Washington DC, USA, to witness the Scripps National Spelling Bee 2015 with a parent. This first took off in 2009. ITC Classmate was"} +{"qid": "test3483", "pid": "20326799", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"M. A. Gaffar\"\nthe \"\"official nations\"\" (ethnic groups) of Burma under the name Rohingya. The memorandum was published in the \"\"Guardian Daily\"\", an English newspaper in Burma, on 20 August 1951. \"\"We the Rohingyas of Arakan are a nation. We maintain and hold that Rohingyas and Arakanese are the two principal nations in Arakan. We are a nation of nearly 9 lakh, which is sufficient for the population of a nation; and what is more is that we are a nation according to any definition of a nation, with our own distinctive culture and civilization, language and literature, art and architecture, names and"} +{"qid": "test3483", "pid": "3465646", "query": "what is the spelling of lakh in english", "answer": "lakh", "passage": "\"Indian numbering system\"\nIndian numbering system The Indian numbering system is used in the Indian subcontinent (Bangladesh, India, Nepal, Maldives, Pakistan and Sri Lanka) and in Burma. The terms \"\"lakh\"\" (100,000 or 1,00,000 in the Indian system) and \"\"crore\"\" (10,000,000 or 1,00,00,000 in the Indian system) are used in Indian English to express large numbers. For example, in India 150,000 rupees becomes 1.5 lakh rupees, written as 1,50,000 or INR 1,50,000, while 30,000,000 (thirty million) rupees becomes 3 crore rupees, written as 3,00,00,000 with commas at the thousand, \"\"lakh\"\", and \"\"crore\"\" levels, and 1,000,000,000 (one billion) rupees (one hundred crore rupees or one"} +{"qid": "test3485", "pid": "4474382", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf naming dispute\"\nIt also used the name \"\"Arabian Gulf\"\" in the same article. Google had previously put both Persian Gulf and Arabian Gulf on its Google Maps. After May 2012, it removed both names from the body of water stating that it does not name every place in the world and that it did not want to take a political stance. Iranians complained about the change and started a Twitter campaign asking \"\"Where's the Persian Gulf?\"\". Google Earth continues to show both names, unless viewed through a server from a Gulf Coast Arab country, in which case it labels it simply \"\"Arabian"} +{"qid": "test3485", "pid": "7702422", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "VFA-154\nwith one taking place in 1987, during this cruise they operated in the Persian Gulf, intercepting Iranian P-3s and conducting movements in the Gulf of Oman, at the so-called \"\"Gonzo\"\" station. After the cruises with USS \"\"Constellation\"\", CVW-14 moved to . Aboard \"\"Independence\"\", VF-154 and VF-21 became the first F-14 squadrons to arrive in the Persian Gulf as part of Operation Desert Shield, although they never took part in Operation Desert Storm as USS \"\"Independence\"\" returned to the US before the war started. In August 1991, USS \"\"Independence\"\" become home based at Yokosuka, Japan, to replace . VF-154 stayed with"} +{"qid": "test3485", "pid": "12109212", "query": "where did the first persian gulf war take place", "answer": "Iraq", "passage": "\"Greece–Iraq relations\"\ndispute over Iraq by diplomatic means and not by force. Unlike the opposition to Gulf war II, Greece did participate in the first Gulf war, as a means of restoring peace in the Persian gulf, after Iraq had invaded Kuwait. Public opinion in Greece was overwhelmingly against the war on Iraq. A poll published on 4 April 2003 showed that 90.7% of Greeks were totally opposed to the intervention in Iraq, while 3.4% were quite opposed to it. Only 1.4% agreed completely with the war and 2.0% agreed to an extent. Many demonstrations took place with people shouting anti-American slogans"} +{"qid": "test3485", "pid": "195417", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Iran–Iraq War\"\nneither reparations nor border changes. The Iran–Iraq War was originally referred to as the \"\"Gulf War\"\" until the Persian Gulf War of 1990 and 1991, after which it was known as the \"\"First Persian Gulf War\"\". The Iraq–Kuwait conflict, which was known as the \"\"Second Persian Gulf War,\"\" eventually became known simply as the \"\"Gulf War\"\". The Iraq War from 2003 to 2011 has been called the \"\"Second Persian Gulf War\"\". In Iran, the war is known as the \"\"Imposed War\"\" ( ') and the \"\"Holy Defense\"\" ( '). State media in Iraq dubbed the war \"\"Saddam's Qadisiyyah\"\" (, \"\"\"\"),"} +{"qid": "test3485", "pid": "4474383", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf naming dispute\"\nGulf.\"\" A planned second Islamic Solidarity Games in Iran, originally scheduled to take place in October 2009, and later rescheduled for April 2010, was canceled when the Arab World and Iran could not agree over the use of the term \"\"Persian Gulf\"\" in logos and medals for the Games. In association football, the top tier of the Iranian football league system was named the Persian Gulf Cup in August 2006 to promote the Persian naming. The Iran national football team does not take part in the Arabian Gulf Cup for national teams surrounding the waters. The top football league in"} +{"qid": "test3485", "pid": "198860", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "Islamism\nWar, compared to the (perceived) near-victory of the Yom Kippur War six years later. In that war the military's slogan was \"\"God is Great\"\". Along with the Yom Kippur War came the Arab oil embargo where the (Muslim) Persian Gulf oil-producing states' dramatic decision to cut back on production and quadruple the price of oil, made the terms oil, Arabs and Islam synonymous—with power—in the world, and especially in the Muslim world's public imagination. Many Muslims believe as Saudi Prince Saud al Faisal did that the hundreds of billions of dollars in wealth obtained from the Persian Gulf's huge oil"} +{"qid": "test3485", "pid": "764203", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Australian Defence Force\"\nwar zone since the establishment of the ADF. Although the warships and clearance diving team deployed to the Persian Gulf did not see combat, the deployment tested the ADF's capabilities and command structure. Following the war the Navy regularly deployed a frigate to the Persian Gulf or Red Sea to enforce the trade sanctions imposed on Iraq. In 1996, John Howard led the Liberal Party's election campaign and became Prime Minister. Subsequently, there were significant reforms to the ADF's force structure and role. The new government's defence strategy placed less emphasis on defending Australia from direct attack and greater emphasis"} +{"qid": "test3485", "pid": "13541328", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Gulf War syndrome\"\ndevelopment of cardiac, gastrointestinal, or nervous disease.\"\" Early Gulf War research also failed to accurately account for the prevalence, duration, and health impact of Gulf War illness. For example, a November 1996 article in the \"\"New England Journal of Medicine\"\" found no difference in death rates, hospitalization rates, or self-reported symptoms between Persian Gulf veterans and non-Persian Gulf veterans. This article was a compilation of dozens of individual studies involving tens of thousands of veterans. The study did find a statistically significant elevation in the number of traffic accidents suffered by Gulf War veterans. An April 1998 article in \"\"Emerging"} +{"qid": "test3485", "pid": "12861501", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf campaign of 1809\"\nPersian Gulf campaign of 1809 The Persian Gulf Campaign, in 1809, was an operation by a British Royal Navy to force the Al Qasimi to cease their raids on British ships in the Persian Gulf, particularly on the Persian and Arab coasts of the Straits of Hormuz. The operation's success was limited as the Royal Navy forces, already heavily involved in the Napoleonic Wars, were unable to permanently suppress the strong fleets of the Al Qasimi of Ras Al Khaimah and Sharjah. The expedition did achieve its short-term goals by destroying three Al Qasimi bases and over 80 vessels, including"} +{"qid": "test3485", "pid": "18823546", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf (horse)\"\nPersian Gulf (horse) Persian Gulf (1940–1964) was a British Thoroughbred racehorse and sire, who raced during World War II. He was a slow-maturing horse who did not race until he was three years old and failed to win in his first season although he finished fourth in both the Derby and the St Leger. As a four-year-old in 1944 he established himself as arguably the best horse in Britain by winning four of his five races, culminating with an emphatic win in a substitute Coronation Cup. His racing career was ended by injury less than a month later. He later"} +{"qid": "test3485", "pid": "3667754", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Military service\"\ndied during the First Persian Gulf War, also known as Operation Desert Storm. In the intervening years, Iraq's military suffered from decay and poor leadership, but there was still compulsory service. Note: One of voluntary program was \"\"Ashbal Saddam\"\" known as \"\"Saddam's Cubs\"\" where children were trained to defend Iraq through \"\"toughening\"\" exercises such as firearms training and dismembering live chickens with their teeth. Following the Second Persian Gulf War where the original military was disbanded, the Iraqi Army was recreated as a volunteer force with training overseen at first by the Coalition Provisional Authority and later by the American"} +{"qid": "test3485", "pid": "3783711", "query": "where did the first persian gulf war take place", "answer": "Iraq", "passage": "\"The Gulf War Did Not Take Place\"\n1995 translated by Paul Patton. Baudrillard argued the Gulf War was not really a war, but rather an atrocity which \"\"masqueraded\"\" as a war. Using overwhelming airpower, the American military for the most part did not directly engage in combat with the Iraqi army, and suffered few casualties. Almost nothing was made known about Iraqi deaths. Thus, the fighting \"\"did not really take place\"\" from the point of view of the west. Moreover, all that spectators got to know about the war was in the form of propaganda imagery. The closely watched media presentations made it impossible to distinguish between"} +{"qid": "test3485", "pid": "16305821", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf National Day\"\nPersian Gulf National Day National Persian Gulf Day () is an official holiday in Iran that takes place on the 10th of Ordibehesht, the second month on the Iranian calendar _ usually occurring on 30 April on the Georgian calendar _ to commemorate Persian Gulf. The date coincides with the anniversary of Abbas I of Persia's successful military campaign when the Portuguese navy was driven out of the Strait of Hormuz in the Capture of Ormuz (1622). The decision was taken by the High Council of Cultural Revolution, presided over by former President Mohammad Khatami, noting that the campaign launched"} +{"qid": "test3485", "pid": "10503572", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Recurring segments on The Colbert Report\"\nWhere in the World and when in Time is Stephen Colbert Going to be in the Persian Gulf? was a segment that was created in response to both the cancellation of Matt Lauer's \"\"Today Show\"\" segment \"\"Where in the World is Matt Lauer?\"\" and Colbert's announcement that he would take his show to the Persian Gulf for a week of shows. The segment profiles a random region in the Persian Gulf using the \"\"Press Your Luck\"\" board. On the May 6, 2009 airing, Colbert changed the title to Where in the When and Who in How is Stephen Someone Going"} +{"qid": "test3485", "pid": "9588799", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Muhammad al-Asi\"\nCanada, and Europe. On September 10, 2006, in an interview on Iranian Channel 2 (as translated by the MEMRI), al-Asi stated that attacks of 9/11 were planned by the United State Government. Specifically, al-Asi stated that \"\"The events of 9/11 were planned by the American administration, to be used as a pretext and justification to fight terrorism.\"\" Al-Asi had also stated in reference to the first Gulf War, \"\"if Americans are placing their forces in the Persian Gulf, we should be creating another war front for the Americans in the Muslim world - specifically where American interests are concentrated.\"\" In"} +{"qid": "test3485", "pid": "15153679", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Kenneth J. Summers\"\nForce that sailed from Halifax to the Persian Gulf, and upon arrival he was appointed Commander Canadian Forces Middle East, with headquarters in Bahrain. All Canadian naval, air and land forces in the Gulf came under his command during the implementation of Operation FRICTION, where Canadian naval and air units engaged in combat for the first time since the Korean War. After the Persian Gulf War, Summers served in Maritime Forces Pacific Headquarters (MARPAC HQ) as Chief of Staff to Commander MARPAC 1991. He was promoted to Rear-Admiral and was appointed as a Commander Canadian Defence Liaison Staff Washington in"} +{"qid": "test3485", "pid": "4864477", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"USS Seattle (AOE-3)\"\nincorporate and provide support with the fleets sent underway at first to exert military pressure to political negotiations but later, when the government of Saddam entrenched, to provide continued cover during Operation Desert Shield. During the course of operations, the \"\"Seattle\"\" would take a crucial and important part, while no substantial bases and ports existed yet in the Persian Gulf, in the earlier and later actions in the buildup to the Operation Desert Storm during the conflict of the First Persian Gulf War from the first weeks of August to the end of April next year, after the successful retaking"} +{"qid": "test3485", "pid": "16514332", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Media coverage of the Gulf War\"\ntilted as anti-patriotic by some. Overall media and television reporting during this first Gulf War has received several criticisms . People like Columbia’s professor Douglas Kellner have argued that the media framed the war as an exciting narrative, turning it into a kind of dramatic, patriotic spectacle and that the anchors of the major American TV networks such as CBS presented a view that seemed to identify solely with the American Military point of view. In the book The Persian Gulf TV War he has also argued that television networks and other media did not provide a balanced account of"} +{"qid": "test3485", "pid": "305828", "query": "where did the first persian gulf war take place", "answer": "Israel", "passage": "\"Foreign relations of Oman\"\nnot break relations with Egypt after the signing of the Egyptian-Israeli Peace Treaty in 1979. During the Persian Gulf crisis, Oman assisted the United Nations coalition effort. Oman has developed close ties to its neighbors; it joined the six-member Gulf Cooperation Council when it was established in 1980. Oman has traditionally supported Middle East peace initiatives, as it did those in 1983. In April 1994, Oman hosted the plenary meeting of the Water Working Group of the peace process, the first Persian Gulf state to do so. During the Cold War period, Oman avoided relations with communist countries because of"} +{"qid": "test3485", "pid": "7680425", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"First Oil Well, Bahrain\"\nstabilized at about . In 1980, BAPCO was taken over by the Government of Bahrain. Close to the well, which has been reconstructed to its first appearance, is a stable. Bahrain was the first place on the Arabian side of the Persian Gulf where oil was discovered, and it coincided with the collapse of the world pearl market. First Oil Well, Bahrain As its name suggests, it is the first oil well in the Arabian side of the Persian Gulf and is located in Bahrain. The well is situated below Jebel Dukhan. It was discovered and operated by Bahrain Petroleum"} +{"qid": "test3485", "pid": "19601506", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf Forever\"\nand Tonbs Islands, in some editions of the song. With every look I kiss the sky of this land (Iran), for thousand times I take my breath from White River, the sky of Caspian Sea and the Persian Gulf Forever My gaze takes brightness from the Greater and Lesser Tunbs and Abu Musa (Islands) Persian Gulf Forever The Persian Gulf Forever () or the Persian Gulf () also shortly known by Ebi's 1990 album's name The Gulf () is a Persian language political, protest and nationalistic song performed by plenty of Iranian singers, inside and outside the country. Finally, the"} +{"qid": "test3485", "pid": "8970412", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "Iraq\npresidency and control of the Revolutionary Command Council (RCC), then Iraq's supreme executive body, in July 1979. In 1979, the Iranian Revolution took place. Following months of cross-border raids between the two countries, Saddam declared war on Iran in September 1980, initiating the Iran–Iraq War (or First Persian Gulf War). Taking advantage of the post-revolution chaos in Iran, Iraq captured some territories in southwest of Iran, but Iran recaptured all of the lost territories within two years, and for the next six years Iran was on the offensive. The war, which ended in stalemate in 1988, had cost the lives"} +{"qid": "test3485", "pid": "18823551", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Persian Gulf (horse)\"\nin a maiden race in August. The \"\"New St Leger\"\" was run over one mile and six furlong at the Newmarket July course in September. Persian Gulf again ran well to finish fourth behind Herringbone, Ribbon and Straight Deal. Persian Gulf reached his peak as a four-year-old in 1944. One result of the wartime restrictions was that only horses who had been placed in the first three were allowed to remain in training: Persian Gulf qualified by virtue of his second place in the August maiden. After winning three times in spring, he was beaten by a neck when attempting"} +{"qid": "test3485", "pid": "16411338", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Qatari–Bahraini War\"\ntruce agreed between Arab States of the Persian Gulf states such as Abu Dhabi, Sharjah, the rest of the Trucial States as well as Bahrain and Oman. The truce was supervised by the British Royal Navy (notably the \"\"Bombay Marine\"\"). In order to enforce a pre-existing peace treaty (the General Maritime Treaty of 1820), the Bombay Marine deployed squadrons to the Persian Gulf, based in Qeshm Island. The treaty prohibited piracy in the Persian Gulf but it did not outlaw maritime warfare, as a result, the British acted differently towards pirates who attacked ships hoisting a British flag (these pirates"} +{"qid": "test3485", "pid": "20798500", "query": "where did the first persian gulf war take place", "answer": "Persian Gulf", "passage": "\"Senior Naval Officer, Persian Gulf\"\npresence called the Persian Gulf Squadron later the Persian Gulf Division. The \"\"Senior Naval Office Persian Gulf\"\" gradually became an important position throughout the twentieth century by supporting Britain's strategic interests in the region, he reported to the Commander-in-Chief, East Indies Station. The Persian Gulf was one of the areas of naval operations during First World War in which it assumed a level of importance during the Mesopotamian campaign, its operations consisted of patrolling, keeping the peace and ensuring the continued supply of oil from the region. In May 1942 it then became part of the Eastern Fleet command until"} +{"qid": "test3486", "pid": "4478964", "query": "who is responsible for establishing local licensing forum", "answer": "unitary authorities", "passage": "\"Licensing Act 2003\"\nLicensing Act 2003 The Licensing Act 2003 (c 17) is an Act of the Parliament of the United Kingdom. The Act establishes a single integrated scheme for licensing premises in England and Wales (only) which are used for the sale or supply of alcohol, to provide regulated entertainment, or to provide late night refreshment. Permission to carry on some or all of these licensable activities is now contained in a single licence — the premises licence — replacing several different and complex schemes. Responsibility for issuing licences now rests with local authorities, specifically London boroughs, Metropolitan boroughs, unitary authorities, and"} +{"qid": "test3486", "pid": "11742927", "query": "who is responsible for establishing local licensing forum", "answer": "local authorities", "passage": "\"Commonwealth Local Government Forum\"\nnext conference will be held in June 2019 in Sri Lanka Commonwealth Local Government Forum The Commonwealth Local Government Forum (CLGF) is a global local government organisation, bringing together local authorities, their national associations and the ministries responsible for local government in the member countries of the Commonwealth. CLGF works with national and local governments to support the development of democratic values and good local governance and is the associated organisation officially recognised by Commonwealth Heads of Government as the representative body for local government in the Commonwealth. CLGF is unique in bringing together central, provincial and local spheres of"} +{"qid": "test3486", "pid": "11742922", "query": "who is responsible for establishing local licensing forum", "answer": "local authorities", "passage": "\"Commonwealth Local Government Forum\"\nCommonwealth Local Government Forum The Commonwealth Local Government Forum (CLGF) is a global local government organisation, bringing together local authorities, their national associations and the ministries responsible for local government in the member countries of the Commonwealth. CLGF works with national and local governments to support the development of democratic values and good local governance and is the associated organisation officially recognised by Commonwealth Heads of Government as the representative body for local government in the Commonwealth. CLGF is unique in bringing together central, provincial and local spheres of government involved in local government policy and decision-making. CLGF members include"} +{"qid": "test3488", "pid": "7716210", "query": "who was the ruler of england in 1616", "answer": "James I", "passage": "\"Giovanni Paolo Oliva\"\ncertainly did with his brother, the future King James II of England. In addition he took a strong view of the lawfulness of attempting to overthrow the ruler, stating that if any Jesuits had engaged in such actions (while stressing that he thought it improbable that they had) they deserved to suffer for them. He died at Sant'Andrea al Quirinale in Rome. Giovanni Paolo Oliva Giovanni Paolo Oliva (4 October 1600 – 26 November 1681) was the eleventh Superior General of the Society of Jesus. Oliva was born at Genoa in 1600, and in 1616 he entered the Society of"} +{"qid": "test3489", "pid": "15014697", "query": "what episode does caroline get turned into a vampire", "answer": "Brave New World", "passage": "\"Brave New World (The Vampire Diaries)\"\nBrave New World (The Vampire Diaries) \"\"Brave New World\"\" is the 2nd episode of the second season of The CW television series, \"\"The Vampire Diaries\"\" and the 24th episode of the series overall. It originally aired on September 16, 2010. The episode was written by Brian Young and directed by John Dahl. Caroline (Candice Accola) wakes up in the hospital after Katherine (Nina Dobrev) killed her and she is hungry. She asks for food from the nurse but she sends her back to bed. Caroline smells blood from the next room and without knowing what is happening to her, she"} +{"qid": "test349", "pid": "33459", "query": "rain sleet or snow that contains a high concentration of acids is called", "answer": "Acid rain", "passage": "\"Acid rain\"\nis produced by volcanic eruptions. Acid rain has been shown to have adverse impacts on forests, freshwaters and soils, killing insect and aquatic life-forms, causing paint to peel, corrosion of steel structures such as bridges, and weathering of stone buildings and statues as well as having impacts on human health. \"\"Acid rain\"\" is a popular term referring to the deposition of a mixture from wet (rain, snow, sleet, fog, cloudwater, and dew) and dry (acidifying particles and gases) acidic components. Distilled water, once carbon dioxide is removed, has a neutral pH of 7. Liquids with a pH less than 7"} +{"qid": "test349", "pid": "795794", "query": "rain sleet or snow that contains a high concentration of acids is called", "answer": "Acid rain", "passage": "Thunderstorm\nproduces a concentrated amount of extreme heat. Direct damage caused by lightning strikes occurs on occasion. In areas with a high frequency for cloud-to-ground lightning, like Florida, lightning causes several fatalities per year, most commonly to people working outside. Acid rain is also a frequent risk produced by lightning. Distilled water has a neutral pH of 7. “Clean” or unpolluted rain has a slightly acidic pH of about 5.2, because carbon dioxide and water in the air react together to form carbonic acid, a weak acid (pH 5.6 in distilled water), but unpolluted rain also contains other chemicals. Nitric oxide"} +{"qid": "test3491", "pid": "20449750", "query": "when does the men's worlds curling start", "answer": "March 31", "passage": "\"2018 World Men's Curling Championship\"\n2018 World Men's Curling Championship The 2018 World Men's Curling Championship (branded as the 361˚ World Men's Curling Championship 2018 for sponsorship reasons) was held from March 31 to April 8, 2018 at Orleans Arena, on the Las Vegas Strip in Paradise, Nevada, United States. In a rematch of the 2017 gold medal game, the Swedish team led by Niklas Edin beat the defending champion Canadian team led by Brad Gushue to win the championship. The following nations are qualified to participate in the 2018 World Men's Curling Championship: \"\"Final Round Robin Standings\"\" Year to date World Curling Tour order"} +{"qid": "test3492", "pid": "19509875", "query": "who did cubs beat in 2016 world series", "answer": "Cleveland Indians", "passage": "\"2016 National League Championship Series\"\nhis Game 2 magic, giving up five runs and two home runs, being replaced in the sixth inning. Relief pitcher Kenley Jansen shut out the Cubs for three innings in the loss. Javier Báez and Jon Lester won NLCS co-Most Valuable Player honors. 2016 NLCS (4–2): Chicago Cubs beat Los Angeles Dodgers. 2016 National League Championship Series The 2016 National League Championship Series was a best-of-seven playoff in which the Chicago Cubs defeated the Los Angeles Dodgers for the National League (NL) pennant and the right to play in the 2016 World Series against the Cleveland Indians. As winners of"} +{"qid": "test3492", "pid": "3983483", "query": "who did cubs beat in 2016 world series", "answer": "the Indians", "passage": "\"Terry Francona\"\n19, 2016, Terry Francona's Indians beat the Toronto Blue Jays to move on to the World Series, where the Indians won game 1 against the Chicago Cubs 6-0 to extend his World Series record to 9–0. He lost his first World Series game when the Indians were defeated by the Cubs in game 2 by a score of 5–1. The Indians won game 3 against the Chicago Cubs 1–0. The Indians won game 4 against the Chicago Cubs 7–2 to give Cleveland a 3–1 lead. The Indians would fall to the Cubs 3–2 in game 5. Cleveland went on to"} +{"qid": "test3492", "pid": "12953418", "query": "who did cubs beat in 2016 world series", "answer": "the Indians", "passage": "\"Katie Stam\"\nChicago Cubs fan. So when the couple found out she was pregnant, they decided that if the Chicago Cubs won the World Series, their son would be named Wrigley. If the Cleveland Indians won, then he would be named Oliver. Their son remained unnamed for three days, until the Cubs beat the Indians in Game 7 on November 3, 2016, and he was given the name Wrigley Oliver. Katie Stam Katie R. Stam Irk (born July 9, 1986) is an American beauty queen from Seymour, Indiana, who was crowned Miss America 2009. Katie Stam was born to Keith and Tracy"} +{"qid": "test3492", "pid": "19071389", "query": "who did cubs beat in 2016 world series", "answer": "Cleveland Indians", "passage": "\"2016 Cleveland Indians season\"\n2016 Cleveland Indians season The 2016 Cleveland Indians season was the 116th season for the franchise and the 23rd season at Progressive Field. The Indians won the American League Central Division for the first time since 2007 and also beat the Boston Red Sox in the Division Series for their first playoff win in nine years. They defeated the Toronto Blue Jays in five games in the American League Championship Series before losing to the Chicago Cubs in seven games in the 2016 World Series. This was their first appearance in the World Series since 1997. Tuesday, April 5, 2016"} +{"qid": "test3492", "pid": "2828188", "query": "who did cubs beat in 2016 world series", "answer": "Cleveland Indians", "passage": "\"Curse of the Billy Goat\"\ndrought. The Cubs beat the Cleveland Indians in the 2016 World Series in seven games after trailing in the series 3 games to 1. They won game 7 by a score of 8–7 in 10 innings at Progressive Field in Cleveland, Ohio. Curse of the Billy Goat The Curse of the Billy Goat was a sports-related curse that was supposedly placed on the Chicago Cubs Major League Baseball (MLB) franchise in 1945, by Billy Goat Tavern owner William Sianis. The curse lasted 71 years, from 1945 to 2016. Because the odor of his pet goat, named Murphy, was bothering other"} +{"qid": "test3492", "pid": "18801384", "query": "who did cubs beat in 2016 world series", "answer": "Cleveland Indians", "passage": "\"2016 World Series\"\n3-0 in postseason series against Terry Francona, having also won the 2008 ALCS and the 2013 Wild Card Game against him. Game 7 was the 60th extra inning game in World Series history as well as the first extra inning Game 7 won by the road team. In the previous four times in 1912, 1924, 1991 and 1997, the home team won all four extra inning Game 7s. 2016 World Series (4–3): Chicago Cubs beat Cleveland Indians. Fox televised the series in the United States, under contract with Major League Baseball giving it exclusive rights to the World Series through"} +{"qid": "test3492", "pid": "5256590", "query": "who did cubs beat in 2016 world series", "answer": "Cleveland Indians", "passage": "\"John Lackey\"\nthe season 103-58, the team clinched the NL Central Division. Lackey won the World Series for the third time of his career, and with a third different team after the Cubs beat the Cleveland Indians in the 2016 World Series, ending a 108-year long drought for a championship. On August 16, 2017, against the Cincinnati Reds, Lackey recorded his first career stolen base, but was then picked off shortly thereafter. On September 15, 2017, Lackey was ejected and fined for arguing a strike call by umpire Jordan Baker. He became a free agent after the Cubs lost to the Los"} +{"qid": "test3492", "pid": "6829653", "query": "who did cubs beat in 2016 world series", "answer": "the Indians", "passage": "\"NBC Sunday Night Football\"\nPhillies did not contend for the National League East in 2016, while the Rangers won the American League West title that season, but they lost in three games to the Toronto Blue Jays in the ALDS; on the other hand, the Cleveland Browns and the Chicago Bears, the NFL franchises of the participating World Series cities, have been performing at the bottom of its respective divisions in recent years, with the Browns issues dating back to the team's return to the league in 1999. As for the two games that aired simultaneously on October 30, the Cubs beat the Indians,"} +{"qid": "test3492", "pid": "5013877", "query": "who did cubs beat in 2016 world series", "answer": "Cleveland Indians", "passage": "\"Rookie of the Year (film)\"\nand was invited to sing \"\"Take Me Out To The Ballgame\"\" multiple times during the customary 7th-inning stretch. During the 2015 National League Championship Series where the Cubs faced the Mets as they did in the movie, he attended Game 4 in a Rowengartner #1 jersey similar to what he wore during the film. Following the Cubs' win over the Cleveland Indians in Game 7 of the 2016 World Series to win their first championship since 1908, Nicholas, in celebration, tweeted the final shot from the movie of Henry showing his Cubs World Series ring. Furthermore, director Daniel Stern briefly"} +{"qid": "test3493", "pid": "776049", "query": "who owns the rights to rocky and bullwinkle", "answer": "Universal Pictures", "passage": "\"The Adventures of Rocky and Bullwinkle and Friends\"\nduring the summer 2013 season. The underlying rights are now owned by Universal Pictures, which holds the library of predecessor companies DreamWorks Animation and Classic Media, and who in turn with copyright holder Ward Productions forms the joint venture Bullwinkle Studios, which manages the Rocky and Bullwinkle properties; Universal's purchase of Classic Media coincided with The Program Exchange's shutdown. Sponsor General Mills retained all United States television rights to the series. Two packages, each containing different episodes, are available. The syndicated version of \"\"The Bullwinkle Show\"\" contains 98 half-hour shows (#801–898). The first 78 comprise the Rocky & Bullwinkle story"} +{"qid": "test3493", "pid": "4087751", "query": "who owns the rights to rocky and bullwinkle", "answer": "Universal Pictures", "passage": "\"The Adventures of Rocky and Bullwinkle (film)\"\nThe Adventures of Rocky and Bullwinkle (film) The Adventures of Rocky and Bullwinkle is a 2000 American live action/animated adventure comedy film directed by Des McAnuff and produced by Universal Pictures, based on the television cartoon of the same name by Jay Ward. Animated characters Rocky and Bullwinkle share the screen with live actors portraying Fearless Leader (Robert De Niro, who also produces), Boris Badenov (Jason Alexander) and Natasha Fatale (Rene Russo) alongside Piper Perabo, Kenan Thompson and Kel Mitchell. Reprising her role as Rocky was June Foray, and Keith Scott voices Bullwinkle and the film's narrator. It also features"} +{"qid": "test3495", "pid": "12442378", "query": "who was the leader of the zulu in south africa who led the fight against the british", "answer": "Cetshwayo", "passage": "\"South African Wars (1879–1915)\"\na Zulu assault was unlikely. He took the main part of his force from camp on 22 January to sweep the countryside, and while he was out, the Zulu surrounded the remaining forces at Isandlwana and slaughtered the majority of the British troops who had remained. It was one of the worst defeats in the history of the British Army. The shock of the British defeat led to a desire of the British to crush the Zulu and dismantle their nation. After five months of fighting, the British used their technological advantage as a vast force multiplier and destroyed Cetshwayo's"} +{"qid": "test3495", "pid": "7651497", "query": "who was the leader of the zulu in south africa who led the fight against the british", "answer": "Cetshwayo", "passage": "\"King Cetshwayo District Municipality\"\nKing Cetshwayo District Municipality King Cetshwayo District Municipality (formerly Uthungulu District Municipality) is one of the 11 district municipalities (\"\"districts\"\") of KwaZulu-Natal province in South Africa. The seat of the district is Richards Bay. The majority of its 885 944 people speak Zulu (2001 Census). The district code is DC28. It is named after Cetshwayo kaMpande, King of the Zulu Kingdom from 1872 to 1879, who led his nation to victory against the British in the Battle of Isandlwana. King Cetshwayo District is surrounded by: The district contains the following local municipalities: The following statistics are from the 2001 census."} +{"qid": "test3495", "pid": "12442460", "query": "who was the leader of the zulu in south africa who led the fight against the british", "answer": "Cetshwayo", "passage": "\"South African Wars (1879–1915)\"\nOn 11 December 1878, Frere's representative Sir Theophilus Shepstone informed the Zulu leader that he could either turn in the two men who led this raid into Natal and disarm his army, or face war. The disarmament conditions were deliberately impossible to fulfill, Cetshwayo refused them, and the British attacked the Zulu on 22 January 1879. The British attacked with only 1700 troops while the Zulu brought 24,000. The battle was almost a complete massacre of the British with only sixty Europeans surviving. Cetshwayo and his army were eventually defeated at oNdini on 4 July 1879. He escaped but was"} +{"qid": "test3495", "pid": "13084113", "query": "who was the leader of the zulu in south africa who led the fight against the british", "answer": "Cetshwayo", "passage": "\"Dabulamanzi kaMpande\"\narmy. At the Battle of Gingindlovu, the Zulus were defeated. Dabulamanzi became the focal figure of anti-British sentiment in the aftermath of the war, and was a vocal opponent of Theophilus Shepstone and John Robert Dunn, Cetshwayo's former adviser who sided with the British and acquired large landholdings after the British victory. Dabulamanzi was keen to ensure his brother's return to power in Zululand. Conflicts between rival factions prompted the British to reestablish Cetshwayo as king in an attempt to restore order, but the conflicts continued. Dabulamanzi led the fight against Cetshwayo's principal enemy Zibhebhu kaMaphitha, who was supported by"} +{"qid": "test3497", "pid": "5092579", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Fix You\"\nOn an episode of the BBC comedy game show \"\"Never Mind the Buzzcocks\"\", the Coldplay song \"\"Violet Hill\"\" was used in a segment, and when regular panellist Noel Fielding said that he \"\"genuinely hated Coldplay,\"\" host David Tennant then played a snippet of \"\"Fix You\"\" and mouthed the line \"\"\"\"And I will try...to fix you.\"\"\"\" Comedian Catherine Tate also finished the lyrics of the chorus correctly in a different segment of the same episode. The song was also played at the wedding of the Swedish prince Carl Philip and Sofia Hellqvist on 13 June 2015, performed by Salem al Fakir."} +{"qid": "test3497", "pid": "5092570", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Fix You\"\n2010, the song re-entered the Australian singles chart at number 37. In 2005, Coldplay performed the song live on \"\"Saturday Night Live\"\" and the Live 8 event in July. It has also become the anthem for the event. In 2009, the song also appeared on Coldplay's live album, \"\"LeftRightLeftRightLeft\"\". On 19 October 2011, the band played the song at the \"\"Celebrating Steve\"\" event for Apple employees over a global media stream to all the Apple Stores. This event was also available for Apple customers via the company website. On 4 June 2017, Coldplay performed \"\"Fix You\"\" at the \"\"One Love"} +{"qid": "test3497", "pid": "13496503", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"I'm Not Alright\"\ntry to sugarcoat what's happening right now or say something because it sounds good\"\", Hammit said. \"\"[We] went over it and ended up with 'I'm Not Alright', which was a true confession of how we were feeling and gave us a little of the freedom and emotional release to be honest and vulnerable.\"\" \"\"I'm Not Alright\"\" has lyrical themes of openness and honesty. According to a \"\"Christianity Today\"\" music review, the song \"\"comfortably [rests] somewhere between Switchfoot's \"\"Meant to Live\"\" and Coldplay's \"\"Fix You\"\". The song was released on February 21, 2006 as the lead single from Sanctus Real's album"} +{"qid": "test3497", "pid": "960222", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Bruce Paltrow\"\nThe foundation works primarily in the areas of public awareness, early detection, patient support functions and research. Coldplay singer Chris Martin married Paltrow's daughter, Gwyneth, in 2003. The 2005 Coldplay album \"\"X&Y\"\" carried a dedication to Bruce Paltrow. According to Blythe Danner, the famous Coldplay song \"\"Fix You\"\" was written for Gwyneth, as Martin wanted to \"\"fix her\"\" after the death of her father. Bruce Paltrow Bruce Weigert Paltrow (November 26, 1943 – October 3, 2002) was an American television and film director and producer. He was the husband of actress Blythe Danner, and the father of actress Gwyneth Paltrow"} +{"qid": "test3497", "pid": "5092561", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Fix You\"\nFix You \"\"Fix You\"\" is a song by the British rock band Coldplay. It was written by all four members of the band for their third studio album, \"\"X&Y\"\" (2005). The track is built around an organ accompanied by piano and guitar in the first half and an alternative rock style in the second half featuring electric guitar, bass and drums. It was released on 5 September 2005 as the second single from \"\"X&Y\"\" and has reached number 4 on the UK Singles Chart. The song reached number 18 in the United States \"\"Billboard\"\" Hot Modern Rock Tracks. Promo singles"} +{"qid": "test3497", "pid": "5092567", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Fix You\"\nduring the second half of the bridge. The song finally ends with the beginning chorus, with slow, melancholic piano notes being played in the background. The message throughout the song, in which Martin sings, is words of encouragement: \"\"Lights will guide you home / And ignite your bones / And I will try to fix you.\"\" Michele Hatty of \"\"USA Weekend\"\" reported that Martin sings about recovering from grief in the song. Travis Gass of the \"\"Bangor Daily News\"\" wrote that Martin offers his sympathies for the downtrodden, with \"\"When you love someone but it goes to waste / Could"} +{"qid": "test3497", "pid": "7997450", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"A Rush of Blood to the Head Tour\"\nsongs from the second album, as well as many unreleased tracks. For example, the future \"\"Live 2003\"\" song \"\"Moses\"\" and \"\"Fix You\"\" B-side \"\"Pour Me\"\" were introduced during the tour. Other new songs included future \"\"X&Y\"\" b-sides, \"\"Gravity\"\" & \"\"Proof\"\", \"\"Your World Turns Upside Down\"\", which would later become a completely different song called \"\"The World Turned Upside Down\"\" as another b-side to \"\"Fix You\"\", and an unreleased piano ballad called \"\"A Ladder to the Sun\"\". Coldplay also made a habit of covering other artists on the tour, often as outros to their own songs. Covers ranged from a tongue-in-cheek"} +{"qid": "test3497", "pid": "9767538", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Ruth (band)\"\nthe band began recording their second album \"\"Anorak\"\" in early 2008. They worked with Chris Keene of Surrogate as the album's producer, as well as Aaron Sprinkle again. The recording was completed in May 2008, and the album was released on October 28, 2008 in the United States. In April 2009, Ruth toured with Falling Up on their Fangs! tour. On August 25, 2009, Ruth digitally released a five-song EP covering artists such as Coldplay, Tracy Chapman, Buddy Holly, Mr. Big, and the Everly Brothers. The first song to be released was the cover of Coldplay's \"\"Fix You\"\". As of"} +{"qid": "test3497", "pid": "19558614", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Portland Lesbian Choir\"\nSpring 2017, is titled, \"\"You, Yes You!\"\" Songs About You. The music featured will feature the word \"\"you\"\" and include songs such as \"\"For Good\"\", from the musical \"\"Wicked\"\", \"\"Fix You\"\" by the band Coldplay, and \"\"Love Song\"\" by Sara Bareilles. In 2016, PLC presented \"\"The Miles Fly By\"\" at Revolution Hall in celebration of its thirtieth anniversary. Portland Lesbian Choir The Portland Lesbian Choir (PLC) is a choir based in Portland, Oregon, in the United States. The group formed in 1986 and, as of 2015, gathers at the Ainsworth United Church of Christ. PLC typically rehearses on Wednesday nights"} +{"qid": "test3497", "pid": "8800813", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Rise and Fall, Rage and Grace\"\nthe Offspring played Japan's Summer Sonic Festival that August. Before the 311 and Pepper tour, the Offspring played four East Coast Dates in June, which was supported by Terrible Things. The album received mixed reviews from critics. While Stephen Thomas Erlewine of Allmusic compared \"\"Fix You\"\" to Coldplay's song by the same name and A Lot Like You to Clocks by Coldplay and criticized the band for not changing their sound or moving forward, giving the album 2 out of 5 stars, \"\"Kerrang!\"\" gave the album a positive 4 our of 5 review, saying that the album is \"\"an exquisite"} +{"qid": "test3497", "pid": "12570054", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Alexandra Burke\"\ncover of Coldplay's \"\"Fix You\"\". On 20 November, Burke revealed that the lead single from her upcoming third record had been decided and a video was to be shot in the coming weeks. She previewed two new songs on her Facebook page on Christmas. On 5 January 2015, Burke announced that she would be releasing an EP in March called \"\"Renegade\"\". She said \"\"This EP is extremely close to my heart. It marks what is set to be a new chapter for me both personally and artistically. I have worked extremely hard on this, there has been laughter, tears and"} +{"qid": "test3497", "pid": "20728000", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Brynn Cartelli\"\nthroughout the live shows, which included covers of \"\"Up to the Mountain\"\" by Patty Griffin in the top twelve week, \"\"Yoü and I\"\" by Lady Gaga in the top eleven week, \"\"Fix You\"\" by Coldplay in the top ten week, and \"\"What the World Needs Now is Love\"\" by Burt Bacharach in the semifinals week. The latter two songs charted in the top ten of iTunes and gave Cartelli a download bonus multiplier for each performance. During part one of the live finale on May 21, 2018, she joined her coach, Clarkson, in a coach duet as they sang \"\"Don't"} +{"qid": "test3497", "pid": "18134740", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"University of Bolton Stadium\"\nElton John, Coldplay, The Killers & Little Mix. Footage from the Coldplay concert was used in the video for the single, \"\"Fix You\"\", which shows lead singer Chris Martin entering the stage as the song reaches its climax. The stadium also hosted the UK Open Darts Championship, boxing matches with local boxer Amir Khan and 16 April 2011 when it hosted its first rugby union match when Sale Sharks lost to London Irish. Every November until 2012, the Reebok Stadium hosted Kidz up North which is one of the largest free UK exhibitions totally dedicated to children with disabilities and"} +{"qid": "test3497", "pid": "15922401", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Asian F\"\nTinsley (LaMarcus Tinker) and Azimio (James Earl). This episode features the show's first Coldplay cover, \"\"Fix You\"\". Coldplay had previously refused to license their music for use on \"\"Glee\"\", but later changed their minds. Five other songs are covered, including Beyoncé's \"\"Run the World (Girls)\"\" sung by Morris, Jennifer Hudson's \"\"Spotlight\"\" sung by Riley, \"\"Cool\"\" from \"\"West Side Story\"\" sung by Shum in his first solo, \"\"Out Here On My Own\"\" from \"\"Fame\"\" sung by Riley and Michele, and \"\"It's All Over\"\" from \"\"Dreamgirls\"\" performed by Riley and most of New Directions. Riley appreciated the opportunity to perform \"\"Spotlight\"\", a"} +{"qid": "test3497", "pid": "15935788", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Lars Lefgren\"\nmusic video \"\"Fix You\"\" promoting BYU OIT, using the song \"\"Fix You\"\" by Coldplay. https://web.archive.org/web/20111104013911/http://economics.byu.edu/Pages/Faculty/Lars%20Lefgren/Lars-Lefgren.aspx Lars Lefgren Lars Lefgren (born October 1972) is an American Economist trained at the University of Chicago Booth School of Business who is a professor of Economics at Brigham Young University (BYU), specializing in labor economics and causal identification strategies. Lefgren received his bachelor's degree from BYU in 1996 and his Ph.D. from the University of Chicago in 2001. Lefgren has done work showing the impact of summer schools for students requiring remediation by comparing the limit of students who barely passed and barely failed"} +{"qid": "test3497", "pid": "12221357", "query": "coldplay song i will try to fix you", "answer": "\"Fix You\"", "passage": "\"Music on The O.C.\"\n\"\"The Strip\"\" that aired April 28, 2004. During the second season, U2 debuted their song \"\"Sometimes You Can't Make It On Your Own\"\" at the end of an episode on December 2, 2004. Gwen Stefani debuted her single \"\"Cool\"\" in an episode on December 9, 2004. In promoting his new album, \"\"Guero\"\", Beck debuted five tracks from the album on March 10, 2005, with that week's installment being dubbed a \"\"Beckisode\"\" by the media. Another music premiere was Coldplay's song \"\"Fix You\"\", which debuted on May 12, 2005 in the final scene of the episode in which characters find out"} +{"qid": "test3498", "pid": "4894590", "query": "most assists in an nba all star game", "answer": "22", "passage": "\"Gene Shue\"\nNBA in minutes (3338) and finishing second in free throw % (.872) while earning All-NBA First Team honors. The following year, he may have had his most complete year ever, averaging 4.3 rebounds/game, 6.8 assists/game (4th in the NBA) (530 assists also 4th) and 22.6 points/game (10th most in the NBA) (1765 pts). He also marked his highest field goal% (.421) and was named to the All-NBA Second Team. The 1961–62 season was his last one as star player; he averaged 19.0 pts/game and 5.8 assists/game (5th in the NBA) (465 assists also 5th). In 1962, Shue was traded back"} +{"qid": "test3498", "pid": "8171833", "query": "most assists in an nba all star game", "answer": "22", "passage": "\"Kyle Lowry\"\n22, 2015, Lowry became a first-time All-Star when he was announced as an Eastern Conference starter in the 2015 NBA All-Star Game. He became only the third Raptor to be voted in as a starter, after Vince Carter and Bosh. On February 5, 2015, the NBA announced that Lowry would also participate in the 2015 NBA All-Star Weekend Skills Challenge as part of the NBA All-Star Weekend. Lowry finished the All-Star game with 10 points, a team-high eight assists, three rebounds and four steals in a loss to the West, completing his first in-game dunk since 2009. On March 16,"} +{"qid": "test35", "pid": "9843781", "query": "who played the mother in the black stallion", "answer": "Teri Garr", "passage": "\"The Black Stallion Returns\"\nThe Black Stallion Returns The Black Stallion Returns is a 1983 film adaptation of the book of the same name by Walter Farley, and is a sequel to \"\"The Black Stallion\"\". It is directed by Robert Dalva and produced by Francis Ford Coppola for MGM/UA Entertainment Company. The movie stars Kelly Reno, Vincent Spano and Teri Garr. The portrayal of The Black was shared between Cass Ole, the horse from \"\"The Black Stallion\"\", and El Mokhtar. The story begins with several odd occurrences at the farm where the Black, Alec (Kelly Reno), and his mother (Teri Garr) live. A suspicious"} +{"qid": "test350", "pid": "2418775", "query": "who plays jack skellington in nightmare before christmas", "answer": "Danny Elfman", "passage": "\"The Nightmare Before Christmas\"\nThe Nightmare Before Christmas The Nightmare Before Christmas (marketed as Tim Burton's The Nightmare Before Christmas) is a 1993 American stop-motion animated musical dark fantasy Halloween-Christmas film directed by Henry Selick, and produced and conceived by Tim Burton. It tells the story of Jack Skellington, the King of \"\"Halloween Town\"\" who stumbles through a portal to \"\"Christmas Town\"\" and decides to celebrate the holiday. Danny Elfman wrote the songs and score, and provided the singing voice of Jack. The principal voice cast also includes Chris Sarandon, Catherine O'Hara, William Hickey, Ken Page, Paul Reubens, Glenn Shadix, and Ed Ivory. \"\"The"} +{"qid": "test350", "pid": "3903219", "query": "who plays jack skellington in nightmare before christmas", "answer": "Danny Elfman", "passage": "\"Jack Skellington\"\nJack Skellington Jack Skellington is a character and the main protagonist of the 1993 film \"\"The Nightmare Before Christmas\"\". Jack is the \"\"Pumpkin King\"\" of Halloween Town, a fantasy world based solely on the Halloween holiday. Jack is voiced by Chris Sarandon. Danny Elfman provided Jack's singing voice in the film, although Sarandon has sung as Jack in subsequent productions. His overall appearance is a skeleton dressed in a black pin-striped suit and a bow tie that strongly resembles a black bat. Originally, his suit was meant to be completely black, but it blended with the background too well, so"} +{"qid": "test350", "pid": "3903226", "query": "who plays jack skellington in nightmare before christmas", "answer": "Chris Sarandon", "passage": "\"Jack Skellington\"\nshape. Jack decided to leave Halloween Town to get new ideas for Halloween frights. When Jack comes back to town, he finds that Oogie Boogie has been resurrected. Now Jack has to set things right again. Jack dances, fights, and sings in this game to attack Oogie Boogie's minions. Jack is portrayed as inept to some degree in this game. Chris Sarandon did both the speaking and singing voice for Jack in this game. Jack Skellington features in the Nightmare Before Christmas downloadable expansion pack which includes Jack Skellington, Sally, Oogie-Boogie, Dr. Finklestein and the Mayor as in-game playable costumes."} +{"qid": "test350", "pid": "90224", "query": "who plays jack skellington in nightmare before christmas", "answer": "Chris Sarandon", "passage": "\"Chris Sarandon\"\nChris Sarandon Christopher Sarandon Jr. (; born July 24, 1942) is an American actor. He is known best for playing Prince Humperdinck in the movie \"\"The Princess Bride\"\", the vampire Jerry Dandrige in \"\"Fright Night\"\", Detective Mike Norris in \"\"Child's Play\"\" (1988), and for providing the speaking voice of Jack Skellington in \"\"The Nightmare Before Christmas\"\". He was nominated for an Academy Award for Best Supporting Actor for his performance as Leon Shermer in \"\"Dog Day Afternoon\"\". Sarandon was born and raised in Beckley, West Virginia, the son of restaurateurs Christopher \"\"Chris\"\" Sarandon and Cliffie (née Cardullias). His father, whose"} +{"qid": "test350", "pid": "90229", "query": "who plays jack skellington in nightmare before christmas", "answer": "Chris Sarandon", "passage": "\"Chris Sarandon\"\nbest known in the film industry for his role as Prince Humperdinck in Rob Reiner's 1987 movie \"\"The Princess Bride\"\", though he also has had supporting parts in other successful movies such as the original \"\"Child's Play\"\" (1988). In 1992, he played Joseph Curwen/Charles Dexter Ward in \"\"The Resurrected\"\". He also provided the voice of Jack Skellington, the main character of Tim Burton's animated Disney movie \"\"The Nightmare Before Christmas\"\" (1993), and has since reprised the role in other productions, including the Disney/Square video games \"\"Kingdom Hearts\"\" and \"\"Kingdom Hearts II\"\" and the Capcom sequel to the original movie, \"\"\"\"."} +{"qid": "test3500", "pid": "8303722", "query": "where does the song 10 green bottles come from", "answer": "United Kingdom", "passage": "\"Ting (drink)\"\nTing (drink) Ting is a carbonated beverage popular in the Caribbean. It is flavored with Jamaican grapefruit juice (from concentrate) and is both tart and sweet. Ting comes in a green glass bottle, green plastic bottle or a green and yellow can. Like Orangina, the beverage contains a small amount of sediment consisting of grapefruit juice pulp. Ting is produced in the United Kingdom under license by Cott Beverages. Ting also now makes Pink Ting Soda, Diet Ting Soda, and Ginger Beer. Ting was first produced in 1976 by Desnoes & Geddes Limited. Desnoes & Geddes Limited was acquired by"} +{"qid": "test3502", "pid": "4455416", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (TV series)\"\nWonder Woman (TV series) Wonder Woman, known for seasons 2 and 3 as The New Adventures of Wonder Woman, is an American television series based on the DC Comics comic book superhero of the same name. The show stars Lynda Carter as Wonder Woman/Diana Prince and Lyle Waggoner as Steve Trevor Sr. & Jr. It originally aired for three seasons from 1975 to 1979. The show's first season aired on ABC and is set in the 1940s during World War II. The second and third seasons aired on CBS and are set in the 1970s, with the title changed to"} +{"qid": "test3502", "pid": "4455461", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (TV series)\"\nreprising her role by voicing the character; along with an animated adaptation of the comic series \"\"Batman/Teenage Mutant Ninja Turtles\"\". Wonder Woman (TV series) Wonder Woman, known for seasons 2 and 3 as The New Adventures of Wonder Woman, is an American television series based on the DC Comics comic book superhero of the same name. The show stars Lynda Carter as Wonder Woman/Diana Prince and Lyle Waggoner as Steve Trevor Sr. & Jr. It originally aired for three seasons from 1975 to 1979. The show's first season aired on ABC and is set in the 1940s during World War"} +{"qid": "test3502", "pid": "19697512", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Marneen Fields\"\nFields was discovered by stunt man Paul Stader in 1976, who began her stunt training. Later in 1976, she was cast as one of the school girls in the movie \"\"The Spell\"\" (1977). In the TV series \"\"Wonder Woman\"\", Fields got beaten up by Wonder Woman (Lynda Carter) herself. In addition, Fields stunt doubled for Jane Seymour and Maren Jensen in the original TV series of Battlestar Galactica. She also stunt doubled for Pamela Sue Martin in The Hardy Boys/Nancy Drew Mysteries TV show. Some of the film and TV series that Fields guest-starred or had cameo roles in were"} +{"qid": "test3502", "pid": "5966050", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Linda Harrison (actress)\"\nwas supposed to engender interest in a Wonder Woman pilot and an eventual TV series. Harrison played a glamorous mirror image of Wonder Woman, which existed only in the imagination of the homely Diana Prince character, played by Ellie Wood Walker (Robert Walker Jr.'s wife). The \"\"Who's Afraid of Diana Prince?\"\" segment failed to engender any interest in a Wonder Woman pilot, although Lynda Carter had great success in the role eight years later. Harrison next appeared as Carl Reiner's blonde-wigged young inamorata \"\"Miss Stardust\"\" in \"\"A Guide for the Married Man\"\" (1967), a bedroom comedy about marital infidelity directed"} +{"qid": "test3502", "pid": "4455419", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (TV series)\"\nKeen to make a distinction from the last pilot, producers gave the pilot the rather paradoxical title \"\"The New Original Wonder Woman\"\". Scripting duties were given to Stanley Ralph Ross, who was instructed to be more faithful to the comic book and to create a subtle \"\"high comedy.\"\" Ross set the pilot in World War II, the era in which the original comic book began. After an intensive talent search, Lynda Carter, who had had a handful of minor acting roles and had been the 1972 Miss World USA and a Bob Hope USO cast member, was chosen for the"} +{"qid": "test3502", "pid": "4455458", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (TV series)\"\nThe pilot episode is included as a bonus feature on the February 23, 2010 Blu-ray release of \"\"\"\". The complete series has been remastered in high definition and reframed for a 16:9 widescreen format. This version is available for purchase on iTunes and airs on MeTV. Mego Corporation released a line of dolls in 1976 to correspond with the TV series. The boxes originally featured Lynda Carter as Wonder Woman on the front flap. However, in 1977, her image on the box was dropped and the line was revamped with only the Wonder Woman doll being featured and revised. The"} +{"qid": "test3502", "pid": "4455455", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (TV series)\"\nan ongoing comic book series set in the Lynda Carter TV series continuity. The comic was written by Marc Andreyko. It was first published as digital chapters on DC Comics' website. \"\"Wonder Woman '77 Special\"\" #1 was published in May 2015. A second \"\"Wonder Woman '77 Special\"\" collecting further digital first chapters was published in September 2015.. A third special was published in April 2016. Wonder Woman teams up with Jaime Sommers in the crossover title \"\"Wonder Woman ’77 Meets the Bionic Woman\"\". Wonder Woman teams up with Batman in the crossover team up \"\"Batman' 66 Meets Wonder Woman '77\"\""} +{"qid": "test3502", "pid": "4455459", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (TV series)\"\nMego dolls included Wonder Woman, Diana Prince, Queen Hippolyta, Nubia, and Steve Trevor. The line also included separate fashion outfits for Diana Prince that were released in Canada. Various playsets were also created but were not released for sale. DC Direct (which creates merchandise for DC Comics) released a Wonder Woman statue in 2007 which is based upon the image created by Lynda Carter. In 2015, Hallmark released a Wonder Woman Christmas ornament bearing the likeness of Lynda Carter that also plays the intro to the television theme song. In July 2016, prior to Comic-Con International, the New York Times"} +{"qid": "test3502", "pid": "16968128", "query": "who played the original wonder woman on tv", "answer": "Lynda Carter", "passage": "\"Wonder Woman (1974 film)\"\npilot. \"\"\"\", which premiered in 1975, starred Lynda Carter and eventually led to the \"\"Wonder Woman\"\" TV series. Crosby would later claim that she was offered the chance to reprise the role in that series. Wonder Woman's first broadcast appearance in live-action television was a movie made in 1974 for ABC. Written by John D. F. Black, the TV movie resembles the Wonder Woman of the \"\"I Ching\"\" period. Wonder Woman (Cathy Lee Crosby) did not wear the comic-book uniform, demonstrated no apparent super-human powers, had a \"\"secret identity\"\" of Diana Prince that was not all that secret, and she"} +{"qid": "test3503", "pid": "17936053", "query": "where was the louisiana purchase signed in 1803", "answer": "Paris", "passage": "\"Territories of the United States on stamps\"\nthe Louisiana Purchase from France in 1803 under President Thomas Jefferson, known as the architect of the Louisiana Purchase. His portrait is featured on the second stamp of the Louisiana Purchase Exposition issue. This issue of 1904 also featured a 10-cent stamp with an outline of the Louisiana Purchase territory superimposed over a political map of the United States. The Louisiana Purchase sesquicentennial 1953 featured James Monroe, Robert R. Livingston and François Barbé-Marbois, \"\"signing the Louisiana Transfer, Paris 1803\"\". A map of the 1822 Florida Territory was pictured on the statehood commemoration from its original state seal on its 100th"} +{"qid": "test3503", "pid": "232425", "query": "where was the louisiana purchase signed in 1803", "answer": "Paris", "passage": "\"Louisiana Purchase\"\n1804 event is remembered as Three Flags Day. James Monroe and Robert R. Livingston had traveled to Paris to negotiate the purchase of New Orleans in January 1803. Their instructions were to negotiate or purchase control of New Orleans and its environs; they did not anticipate the much larger acquisition which would follow. The Louisiana Purchase was by far the largest territorial gain in U.S. history. Stretching from the Mississippi River to the Rocky Mountains, the purchase doubled the size of the United States. Before 1803, Louisiana had been under Spanish control for forty years. Although Spain aided the rebels"} +{"qid": "test3504", "pid": "16873741", "query": "what is the name of india 29 state", "answer": "Rajasthan", "passage": "\"Bharat Broadband Network\"\nBharatNet at various locations to provide the high speed last mile wireless broadband connectivity. There are 36 states and union territories of India, including 29 states and 7 UTs. BSNL was awarded work for 18 of these, RailTel received work in 8 and Power Grid Corporation of India in 5. BSNL was awarded work for 18+ states and UTs, namely Andaman and Nicobar Islands, Assam, Bihar, Chandigarh, Chhattisgarh, Haryana, Jammu and Kashmir, Karnataka, Kerala, Lakshadweep, Madhya Pradesh, Maharashtra, Punjab, Rajasthan, Sikkim, Uttar Pradesh (divided into two projects, UP East and UP West), Uttarakhand and West Bengal. RailTel was awarded work"} +{"qid": "test3504", "pid": "19973828", "query": "what is the name of india 29 state", "answer": "Rajasthan", "passage": "\"Riyan Parag\"\nhe was bought by the Rajasthan Royals in the player auction for the 2019 Indian Premier League at his base price of 20 lakhs. Riyan Parag Riyan Parag (born 10 November 2001) is an Indian cricketer. He made his Twenty20 debut for Assam in the 2016–17 Inter State Twenty-20 Tournament on 29 January 2017. In October 2017 he was named in India's squad for the 2017 ACC Under-19 Asia Cup. He made his first-class debut for Assam in the 2017–18 Ranji Trophy on 17 November 2017. In December 2017, he was named in India's squad for the 2018 Under-19 Cricket"} +{"qid": "test3505", "pid": "12931248", "query": "when did harvard become an ivy league school", "answer": "1945", "passage": "\"Harvard Crimson baseball\"\nStahl's first season, Harvard won its second EIBL title, finishing with a 9–3 league record. Because of World War II, Harvard competed as an independent in 1943 and 1946 and did not sponsor a team in 1944 or 1945. Harvard rejoined the EIBL for the 1947 season. For the 1948 season, Brown joined the seven other Ivy League schools in the league; Army and Navy also joined, giving the league 10 members. In the immediate postwar years, under head coaches Adolph Samborski (1947–1948) and Stuffy McInnis (1949–1954), the program finished no higher than 4th in the EIBL. Norman Shepard became"} +{"qid": "test3509", "pid": "853916", "query": "who played the colorado kid in rio bravo", "answer": "Ricky Nelson", "passage": "\"Rio Bravo (film)\"\nRio Bravo (film) Rio Bravo is a 1959 American Western film produced and directed by Howard Hawks and starring John Wayne, Dean Martin, Ricky Nelson, Angie Dickinson, Walter Brennan, and Ward Bond. Written by Jules Furthman and Leigh Brackett, based on the short story \"\"Rio Bravo\"\" by B. H. McCampbell, the film is about the sheriff of the town of Rio Bravo, Texas, who arrests the brother of a powerful local rancher to help his drunken deputy/friend. With the help of a cripple and a young gunfighter, they hold off the rancher's gang. \"\"Rio Bravo\"\" was filmed on location at"} +{"qid": "test3509", "pid": "853919", "query": "who played the colorado kid in rio bravo", "answer": "Ricky Nelson", "passage": "\"Rio Bravo (film)\"\na gun Dude used to be. Chance's friend Pat Wheeler (Ward Bond) and his wagon train of supplies stop in town, with a young gunslinger, Colorado Ryan (Ricky Nelson), riding guard. Inside the jail, Stumpy (Walter Brennan), Chance's game-legged deputy, keeps watch over the jail and Joe, who knows that Stumpy holds an old grudge against Joe's wealthy and powerful brother. Joe warns his jailers that Nathan Burdette will not like how his brother is being treated. A mysterious woman nicknamed Feathers (Angie Dickinson) is in the saloon, playing poker. In the meantime, Dude and Chance patrol the town. Hotel"} +{"qid": "test3509", "pid": "853937", "query": "who played the colorado kid in rio bravo", "answer": "Ricky Nelson", "passage": "\"Rio Bravo (film)\"\nof \"\"Rio Bravo\"\", on both occasions under a different title. Both of these remakes were directed by Hawks, both starred John Wayne, and in each case, the script was written by Leigh Brackett. All involve lawmen working against an entrenched criminal element, partially by \"\"holing up\"\" in their jailhouses. Rio Bravo (film) Rio Bravo is a 1959 American Western film produced and directed by Howard Hawks and starring John Wayne, Dean Martin, Ricky Nelson, Angie Dickinson, Walter Brennan, and Ward Bond. Written by Jules Furthman and Leigh Brackett, based on the short story \"\"Rio Bravo\"\" by B. H. McCampbell, the"} +{"qid": "test351", "pid": "4788537", "query": "who was the head of the spanish inquisition", "answer": "Grand Inquisitor", "passage": "\"Portuguese Inquisition\"\nthe Conversos, also known as New Christians, Conversos or Marranos, who were suspected of secretly practising Judaism. Many of these were originally Spanish Jews who had left Spain for Portugal, when Spain forced Jews to convert to Christianity or leave. The number of victims is estimated as around 40,000. As in Spain, the Inquisition was subject to the authority of the King. It was headed by a Grand Inquisitor, or General Inquisitor, named by the Pope but selected by the king, always from within the royal family. The Grand Inquisitor would later nominate other inquisitors. In Portugal, the first Grand"} +{"qid": "test351", "pid": "15934631", "query": "who was the head of the spanish inquisition", "answer": "Grand Inquisitor", "passage": "\"Manuel Abad y Lasierra\"\n1789 to become preceptor of the children of Charles IV of Spain, although this appointment never ultimately occurred. He resigned as Bishop of Astorga on April 9, 1791. He became Titular Archbishop of Selymbria on April 11, 1792. He became Grand Inquisitor of Spain (and thus head of the Spanish Inquisition) in April 1793, but was forced to resign the next year, probably because he attempted to institute reforms to make the Spanish Inquisition less secretive. He became head of the monastery at Sopetrán, Guadalajara in 1794. He retired to his native Estadilla in 1798. He died in Zaragoza on"} +{"qid": "test3511", "pid": "3865114", "query": "what is the main character's name in layer cake", "answer": "XXXX", "passage": "\"Layer Cake (film)\"\nhe hopes to avoid joining, XXXX is shot by a heart-broken Sidney. XXXX collapses bleeding and he lies twitching on the front steps while contemplating his possible death. Filming began in June 2003. Queen's Gate Mews, SW7, was used as the filming location for the home of Daniel Craig's character XXXX. The soundtrack from \"\"Layer Cake\"\" is composed of 14 tracks. The Rolling Stones song \"\"Gimme Shelter\"\" also features in the film but does not appear on the soundtrack album. \"\"Layer Cake\"\" received positive reviews, with an 81% \"\"fresh\"\" rating on Rotten Tomatoes with an average of 7.1/10 based on"} +{"qid": "test3512", "pid": "9768410", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Steve McGarrett\"\nSteve McGarrett Steve McGarrett is a fictional character who is the protagonist of CBS' \"\"Hawaii Five-O\"\". McGarrett is a former United States Navy officer and the leader of a special state police task force, which is called Five-O. McGarrett was originally portrayed by Jack Lord between 1968 and 1980, and later by Alex O'Loughlin in the series' remake in 2010. McGarrett is partner to Detective Danny \"\"Danno\"\" Williams. In the original show, Steve McGarrett was portrayed by Jack Lord from 1968 to 1980. McGarrett was a former United States Navy officer and Detective Captain in the Honolulu Police Department who"} +{"qid": "test3512", "pid": "14335242", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Hawaii Five-0 (2010 TV series)\"\nnew Five-0 team. Original cast member James MacArthur briefly returned as Dan Williams, this time as governor of Hawaii, with cameos made by other former \"\"Five-O\"\" regulars. Another attempt was made to turn the project into a film by Warner Bros. but that also was scrapped. On August 12, 2008, CBS announced that it would bring \"\"Hawaii Five-O\"\" back to the network schedule for the 2009–10 television season. The new version would be an updated present-day sequel, this time centering on Steve McGarrett, who succeeds his late father Steve (Jack Lord's character in the original series) as the head of"} +{"qid": "test3512", "pid": "509804", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Hawaii Five-O (1968 TV series)\"\nHawaii Five-O (1968 TV series) Hawaii Five-O is an American police procedural drama series produced by CBS Productions and Leonard Freeman. Set in Hawaii, the show originally aired for 12 seasons from 1968 to 1980, and continues in reruns. At the airing of its last episode it was the longest-running police drama in American television history. Jack Lord portrayed Detective Captain Steve McGarrett, the head of a special state police task force which was based on an actual unit that existed under martial law in the 1940s. The theme music composed by Morton Stevens became especially popular. Many episodes would"} +{"qid": "test3512", "pid": "8851293", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Wo Fat\"\nWo Fat Wo Fat is the name of a fictional villain in the CBS series \"\"Hawaii Five-O.\"\" On the show, Wo Fat is the nemesis of Steve McGarrett (Jack Lord and Alex O'Loughlin), the head of Hawaii's (fictional) special task force, Five-O. The character appeared in eleven episodes of the original \"\"Hawaii Five-O\"\" including the TV-movie pilot and the final episode. Two of his appearances were in two-part episodes and three were two-hour specials later re-edited into two-parters for reruns. The character evolved from the beginning as a master spy for China, later into an extremist Chinese agent working with"} +{"qid": "test3512", "pid": "3313278", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Honolulu Police Department\"\nApril 1980. Until \"\"Law & Order\"\", \"\"Hawaii Five-O\"\" was the longest running crime series on American television. Jack Lord starred as Steve McGarrett, head of the elite state law enforcement office which worked alongside the chief of the Honolulu Police Department. James MacArthur starred as Danny Williams, McGarrett's right-hand man. McGarrett and \"\"Dano\"\" were straight-laced men with extreme dedication to law and justice fighting the forces of evil around the islands, especially in seedy downtown dives. Kam Fong Chun (who played Det. Chin Ho Kelly) was, in real life, a former HPD officer during World War Two. A modern-day remake"} +{"qid": "test3512", "pid": "14335248", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Hawaii Five-0 (2010 TV series)\"\nwas announced that Daniel Dae Kim had been cast to play Chin Ho Kelly, an ex-cop trained by Steve McGarrett's father. He was the first actor cast for the remake. Several days later, Alex O'Loughlin was cast as Steve McGarrett, the son of ex-cop John McGarrett (portrayed by William Sadler). The producers pay homage to the original series throughout the first year by making one of Steve's hobbies restoring his father's 1974 Mercury Marquis, which is in fact the actual car driven by Jack Lord in the latter half of the original series' run. Actress Grace Park was later cast"} +{"qid": "test3512", "pid": "8691709", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Robert Brown (American actor)\"\nknown to have done any on-camera work since that time. According to TV producer Perry Lafferty, Brown was initially cast to play Steve McGarrett in the original \"\"Hawaii Five-O\"\", but was replaced at the last minute by Jack Lord when producer Leonard Freeman decided Brown wasn't right for the role. Brown has done voiceover work for radio and television. He is also a writer working on short stories and a novel. Robert Brown (American actor) Robert Brown (born Robin Adair MacKenzie Brown; November 17, 1926) is a television actor who was most active in the 1960s and 1970s. Brown was"} +{"qid": "test3512", "pid": "10723841", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Gerald S. O'Loughlin\"\nthe episode \"\"The Box\"\". O'Loughlin played the tough but sympathetic central figure of a group of prison inmates who take Hawaii Five-O chief Steve McGarrett (Jack Lord) hostage. The second was called \"\"Six Kilos\"\" on March 12, 1969 (playing the same character as in \"\"The Box\"\"), and the third was called \"\"A Time to Die\"\" on September 16, 1970. He also appeared on \"\"Cannon\"\" on February 22, 1972, in the episode \"\"Flight of the Hawks\"\". He also appeared on episode 16 of the TV show \"\"The Green Hornet.\"\" In Season 2 Episode 22 of Mission: Impossible, he played a killer"} +{"qid": "test3512", "pid": "3392868", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Richard Boone\"\n\"\"Hawaii Five-O\"\" exclusively in Hawaii. Prior to that, Freeman had planned to do \"\"establishing\"\" location shots in Hawaii, but principal production in Southern California. Boone and others convinced Freeman that the islands could offer all necessary support for a major TV series and would provide an authenticity otherwise unobtainable. Freeman, impressed by Boone's love of Hawaii, offered him the role of Steve McGarrett; Boone turned it down, however, and the role went to Jack Lord, who shared Boone's enthusiasm for the region, which Freeman considered vital. Coincidentally, Lord had appeared alongside Boone in the first episode of \"\"Have Gun –"} +{"qid": "test3512", "pid": "6087748", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Fort Trumbull\"\nand trained over 15,000 of the Merchant Marine officers who served during the Second World War. One of the Merchant Marine officers trained there was actor Jack Lord, who is best known for playing Steve McGarrett on the popular TV series \"\"Hawaii Five-O\"\" in the 1960s and 70s. The Fort was the site of a satellite campus of the University of Connecticut from 1946 to 1950, educating war veterans attending college under the GI Bill. During World War II, Fort Trumbull hosted an office of Columbia University's Division of War Research, which developed passive sonar systems. By 1946, this was"} +{"qid": "test3512", "pid": "8851311", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "Jack Lord", "passage": "\"Wo Fat\"\nMahoney was largely based on Wo Fat, and then adapted to the gritty Baltimore setting of their series. Wo Fat also has a U.S. stoner rock band named after him. They released an album in 2012 entitled \"\"The Black Code\"\" which features powerful riffs and has been compared to a cross between Kyuss and Electric Wizard. Wo Fat Wo Fat is the name of a fictional villain in the CBS series \"\"Hawaii Five-O.\"\" On the show, Wo Fat is the nemesis of Steve McGarrett (Jack Lord and Alex O'Loughlin), the head of Hawaii's (fictional) special task force, Five-O. The character"} +{"qid": "test3512", "pid": "2046565", "query": "who played the original steve mcgarrett on hawaii five-o", "answer": "John Joseph Patrick Ryan", "passage": "\"Jack Lord\"\nThe nonprofit Jack Lord Memorial Fund, which raised the money for the memorial, was co-chaired by British \"\"Hawaii Five-O\"\" fan Esperanza Isaac and Lord's co-star Doug Mossman. Jack Lord John Joseph Patrick Ryan (December 30, 1920 – January 21, 1998), best known by his stage name, Jack Lord, was an American television, film and Broadway actor, director and producer. He was known for his starring role as Steve McGarrett in the CBS television program \"\"Hawaii Five-O\"\", which ran from 1968 to 1980. Born in Brooklyn, New York, Lord was the son of Irish-American parents. His father, William Lawrence Ryan, was"} +{"qid": "test3513", "pid": "5490064", "query": "what year did return of the mack come out", "answer": "1996", "passage": "\"Eye for an Eye (1996 film)\"\nDNA tests reveal the killer, Robert Doob, a delivery man with a criminal record. At the trial it is clear Doob is guilty, but because the defense did not receive a sample of the DNA evidence, the judge dismisses the case. Karen and Mack are dumbstruck as Doob walks free. When Doob launches an antagonizing apology at Karen it causes Mack to snap and furiously attack Doob, but is overpowered by guards and Doob walks out unharmed. Mack is desperate to return to a normal life, but Karen cannot stop thinking of Doob. She finds the apartment where he lives,"} +{"qid": "test3514", "pid": "661546", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Great Society\"\nby making its benefits available to everyone over sixty-five, regardless of need, and by linking payments to the existing private insurance system. In 1966 welfare recipients of all ages received medical care through the Medicaid program. Medicaid was created on July 30, 1965 under Title XIX of the Social Security Act of 1965. Each state administers its own Medicaid program while the federal Centers for Medicare and Medicaid Services (CMS) monitors the state-run programs and establishes requirements for service delivery, quality, funding, and eligibility standards. A number of improvements were made to the Social Security program in terms of both"} +{"qid": "test3514", "pid": "10726716", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Harris v. McRae\"\nHarris v. McRae Harris v. McRae, 448 U.S. 297 (1980), was a case in which the Supreme Court of the United States held that States that participated in Medicaid were not required to fund medically necessary abortions for which federal reimbursement was unavailable as a result of the Hyde Amendment, which restricted the use of federal funds for abortion. The Court also held that the funding restrictions of the Hyde Amendment did not violate either the Fifth Amendment or the Establishment Clause of the First Amendment. In 1965 Congress amended Title XIX of the Social Security Act to create the"} +{"qid": "test3514", "pid": "661582", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "Medicaid\nservice, regardless of whether or not it is covered on that particular Medicaid plan. The Social Security Amendments of 1965 created Medicaid by adding Title XIX to the Social Security Act, 42 U.S.C. §§ 1396 et seq. Under the program, the federal government provides matching funds to states to enable them to provide medical assistance to residents who meet certain eligibility requirements. The objective is to help states provide medical assistance to residents whose incomes and resources are insufficient to meet the costs of necessary medical services. Medicaid serves as the nation's primary source of health insurance coverage for low-income"} +{"qid": "test3514", "pid": "7891903", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "Medi-Cal\nby the Centers for Medicare and Medicaid Services (CMS) and the California Department of Health Care Services (DHCS), while the county welfare department in each of the 58 counties is responsible for local administration of the Medi-Cal program. C4Yourself and CalWIN are statewide online application systems that allows you to apply for benefits. Federal law mostly consists of the Social Security Amendments of 1965 which added Title XIX to the Social Security Act ( \"\"et seq.\"\"), and state law mostly consists of California Welfare and Institutions Code (WIC) Division 9, Part 3, Chapter 7 (WIC § 14000 \"\"et seq.\"\"). Federal"} +{"qid": "test3514", "pid": "16348896", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Mental health reform in North Carolina\"\nincrease of 9% from 2008.\"\" The Centers for Medicare and Medicaid Services report that in 2009 (the last year for which data was available) North Carolina had 1,974,287 enrollees in Medicaid. 1.97 million enrollees equaled 21% of the state's population that year (9,380,884). \"\"Title XIX of the Social Security Act is a federal and state entitlement program that pays for medical assistance for certain individuals and families with low incomes and resources. This program, known as Medicaid, became law in 1965 as a cooperative venture jointly funded by the federal and state governments...to assist states in furnishing medical assistance to"} +{"qid": "test3514", "pid": "20246921", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Adoption Assistance and Child Welfare Act of 1980 P.L. 96-272\"\nsupport obligations assigned to it under part A (AFDC) of title IV as a condition of an applicant's eligibility for aid. Amends titles XVIII (Medicare) and XIX of the Act to provide for the exchange of information between the Secretary and the State agency administering a plan under the Medicare or Medicaid program concerning the suspension of a provider of services under a Medicare or Medicaid plan. Delays the date certain child support requirements under part D of title IV of the Social Security Act (Child Support and Establishment of Paternity) become effective in the case of certain States. Exempts"} +{"qid": "test3514", "pid": "18226745", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"American Health Care Reform Act of 2013\"\na Medicare Advantage Medical Savings Account (MSA), (2) receiving periodic hospital care or medical services for a service-connected disability, (3) eligible for Indian Health Service assistance, or (4) eligible for TRICARE coverage. Prescribes requirements for interaction of health flexible spending arrangements (FSAs) and health reimbursement arrangements with HSAs. Prohibits the payment of health insurance premiums from HSAs, with certain exceptions. Prescribes circumstances in which certain medical expenses incurred before establishment of an HSA may still be qualified expenses. Prescribes requirements for protection of any HSA in a bankruptcy proceeding. Amends title XIX (Medicaid) of the Social Security Act (SSA) to"} +{"qid": "test3514", "pid": "4143820", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Social Security Amendments of 1965\"\nwhich became known as Medicare, includes Part A, which provides hospital insurance for the aged, and Part B, which provides supplementary medical insurance. Title XIX, which became known as Medicaid, provides for the states to finance health care for individuals who were at or close to the public assistance level with federal matching funds. On July 30, 1965, President Johnson signed the bill, making it Public Law 89-97. The signing took place in Independence, Missouri and was attended by Harry S. Truman. Johnson credited Truman with \"\"planting the seeds of compassion and duty which have today flowered into care for"} +{"qid": "test3514", "pid": "11055882", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Early Treatment for HIV Act\"\nRepublican-controlled 106th, 107th, 108th, and 109th Congresses. In each case, the bill never made it out of committee. Early Treatment for HIV Act The Early Treatment for HIV Act (or ETHA) ( and ) is a bill introduced in the U.S. Senate. The stated purpose of the bill is \"\"to amend title XIX of the Social Security Act to permit States the option to provide Medicaid coverage for low-income individuals infected with HIV.\"\" In the 110th Congress, ETHA ( was introduced in the U.S. Senate on March 13, 2007. The bill was sponsored by Senators Gordon Smith (R-OR) with 38"} +{"qid": "test3514", "pid": "11055881", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Early Treatment for HIV Act\"\nEarly Treatment for HIV Act The Early Treatment for HIV Act (or ETHA) ( and ) is a bill introduced in the U.S. Senate. The stated purpose of the bill is \"\"to amend title XIX of the Social Security Act to permit States the option to provide Medicaid coverage for low-income individuals infected with HIV.\"\" In the 110th Congress, ETHA ( was introduced in the U.S. Senate on March 13, 2007. The bill was sponsored by Senators Gordon Smith (R-OR) with 38 cosponsors including Hillary Clinton (D-NY) and Bernie Sanders (I-VT) Previous versions of the bill were introduced in the"} +{"qid": "test3514", "pid": "1700523", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"Centers for Medicare and Medicaid Services\"\nnursing homes) through its survey and certification process, clinical laboratory quality standards under the Clinical Laboratory Improvement Amendments, and oversight of HealthCare.gov. President Lyndon B. Johnson signed the Social Security Amendments on July 30, 1965, establishing both Medicare and Medicaid. Arthur E. Hess, a deputy commissioner of the Social Security Administration, was named as first director of the Bureau of Health Insurance in 1965, placing him as the first executive in charge of the Medicare program. At the time, the program provided health insurance to 19 million Americans. The Social Security Administration (SSA) became responsible for the administration of Medicare"} +{"qid": "test3514", "pid": "16468645", "query": "the xix of the social security act of 1965 established", "answer": "Medicaid", "passage": "\"History of Social Security in the United States\"\nWidows of covered workers were allowed to retire at 62 without the reduction in benefits. In 1961, retirement at age 62 was extended to men, and the tax rate was increased to 6.0%. In 1962, the changing role of the female worker was acknowledged when benefits of covered women could be collected by dependent husbands, widowers, and children. These individuals, however, had to be able to prove their dependency. Medicare and Medicaid were added in 1965 by the Social Security Act of 1965, part of President Lyndon B. Johnson's \"\"Great Society\"\" program. In 1965, the age at which widows could"} +{"qid": "test3515", "pid": "12557756", "query": "who wrote the song if i were a boy", "answer": "BC Jean", "passage": "\"I Am... Sasha Fierce\"\nis strictly for the stage, with the editor describing Sasha Fierce as the singer's sensual, aggressive alter ego. \"\"If I Were a Boy\"\", the first single of \"\"I Am...\"\", stands as the only song on either disc that Beyoncé did not co-write. BC Jean, who wrote most of the song's lyrics, took inspiration from a poor relationship. Beyoncé explained in \"\"Essence\"\" that \"\"If I Were a Boy\"\" is different from her previous songs in the sense that it is not a traditional R&B song. Music critics remarked that the song seemed to be a mixture of her hit single \"\"Irreplaceable\"\""} +{"qid": "test3516", "pid": "187160", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Hoover Dam\"\nHoover Dam Bypass project was expedited. Pending the completion of the bypass, restricted traffic was permitted over Hoover Dam. Some types of vehicles were inspected prior to crossing the dam while semi-trailer trucks, buses carrying luggage, and enclosed-box trucks over long were not allowed on the dam at all, and were diverted to U.S. Route 95 or Nevada State Routes 163/68. The four-lane Hoover Dam Bypass opened on October 19, 2010. It includes a composite steel and concrete arch bridge, the Mike O'Callaghan–Pat Tillman Memorial Bridge, downstream from the dam. With the opening of the bypass, through traffic is no"} +{"qid": "test3516", "pid": "11749515", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"U.S. Route 93 in Nevada\"\nportion of abandoned railroad right-of-way. A shopping center now sits where the original truck bypass alignment once ran. US 93 was realigned again on October 19, 2010, when the Mike O'Callaghan – Pat Tillman Memorial Bridge over the Black Canyon of the Colorado River opened to vehicular traffic. With that, the highway no longer passes over Hoover Dam, and the state-maintained portion of the replaced route was renamed as Hoover Dam Access Road (SR 172). In 2011, US 93 from Buchanan Boulevard to the Nevada terminus of the Hoover Dam Bypass was expanded to four through lanes with dedicated turn"} +{"qid": "test3516", "pid": "5092658", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Mike O'Callaghan–Pat Tillman Memorial Bridge\"\nof Hoover Dam. Construction of the bridge approaches began in 2003, and construction of the bridge itself began in February 2005. The bridge was completed in 2010 and the entire bypass route opened to vehicle traffic on October 19, 2010. The Hoover Dam Bypass project was completed within budget at a cost of $240 million; the bridge portion cost $114 million. The bridge was the first concrete-steel composite arch bridge built in the United States, and incorporates the widest concrete arch in the Western Hemisphere. At above the Colorado River, it is the second highest bridge in the United States"} +{"qid": "test3516", "pid": "13385090", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Hoover Dam Police\"\nsecurity for the facility. Because of the September 11, 2001 terrorist attacks, the Hoover Dam Bypass project was expedited and traffic across the dam was restricted. Some types of vehicles were inspected prior to crossing the dam while semi-trailer trucks, buses carrying luggage, and enclosed-box trucks over long were not allowed on the dam at all. That traffic was diverted south to a Colorado River bridge at Laughlin, Nevada. Once the bypass opened on October 19, 2010, all through traffic was rerouted on it; the roadway on the dam is now open only to employees and dam visitors. The Hoover-Mead"} +{"qid": "test3516", "pid": "16349223", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Course of the Colorado River\"\nDavis Dam in Pyramid Canyon above Laughlin, Nevada, where a bridge carries NV 163 (Laughlin Highway)/AZ 95 over the Colorado River. Prior to the completion of the Hoover Dam Bypass project in 2010, this bridge was the main crossing for freight traffic between Arizona and Nevada as trucks were not allowed over Hoover Dam for security reasons after the September 11, 2001 attacks. The Colorado then passes by Bullhead City, Arizona and Fort Mohave, Arizona and the Fort Mojave Reservation. The Colorado forms the border of California to the west and Arizona to the east for most of its course"} +{"qid": "test3516", "pid": "5092656", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Mike O'Callaghan–Pat Tillman Memorial Bridge\"\nMike O'Callaghan–Pat Tillman Memorial Bridge The Mike O'Callaghan–Pat Tillman Memorial Bridge is an arch bridge in the United States that spans the Colorado River between the states of Arizona and Nevada. The bridge is located within the Lake Mead National Recreation Area approximately southeast of Las Vegas, and carries U.S. Route 93 over the Colorado River. Opened in 2010, it was the key component of the Hoover Dam Bypass project, which rerouted US 93 from its previous routing along the top of Hoover Dam and removed several hairpin turns and blind curves from the route. It is jointly named for"} +{"qid": "test3516", "pid": "15014865", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Nevada State Route 172\"\nbeing blocked off to prevent all but dam personnel from continuing further south. SR 172 was originally part of US 93. US 93 was rerouted onto the Hoover Dam Bypass when construction was completed in October 2010, and the new state highway was designated over the old route. The Nevada Interchange, built as part of the Hoover Dam Bypass Project that opened in 2010 and gave birth to SR 172, is being reconfigured as part of the I-11/US 93 Boulder City Bypass project. Once completed in 2018, the freeway will no longer end at this interchange, but veer off to"} +{"qid": "test3516", "pid": "1997799", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"U.S. Route 93\"\nthe area, the US 93 designation was carried on into Wickenburg. A new highway segment opened in October 2010 in the area of Hoover Dam; the Hoover Dam Bypass replaces a highway that had been closed to truck traffic due to security concerns over the dam since the September 11, 2001 attacks. The bypass crosses the Colorado River on a new bridge downstream of the dam. The new bypass will now make the truck detour through either Laughlin, Nevada, or Needles, California, unnecessary. US 93 (with US 60 to the southeast of Wickenburg) is currently the shortest and most direct"} +{"qid": "test3516", "pid": "5092665", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Mike O'Callaghan–Pat Tillman Memorial Bridge\"\nhighest bridge in the nation, with the arch above the river. The twin arch ribs are connected by steel struts. The composite design, using concrete for the arch and columns with steel construction for the roadway deck, was selected for schedule and cost control while being aesthetically compatible with the Hoover Dam. Sean Holstege in \"\"The Arizona Republic\"\" has called the bridge \"\"an American triumph\"\". \"\"USA Today\"\" called it \"\"America's Newest Wonder\"\" on October 18, 2010. Pedestrian access is provided over the bridge to tourists who wish to take in a different view of the nearby dam and river below,"} +{"qid": "test3516", "pid": "187100", "query": "when was the bridge over the hoover dam built", "answer": "2010", "passage": "\"Hoover Dam\"\nMarch 1, 1936, more than two years ahead of schedule. Hoover Dam impounds Lake Mead, the largest reservoir in the United States by volume (when it is full). The dam is located near Boulder City, Nevada, a municipality originally constructed for workers on the construction project, about southeast of Las Vegas, Nevada. The dam's generators provide power for public and private utilities in Nevada, Arizona, and California. Hoover Dam is a major tourist attraction; nearly a million people tour the dam each year. The heavily traveled U.S. Route 93 (US 93) ran along the dam's crest until October 2010, when"} +{"qid": "test3517", "pid": "19673818", "query": "who plays auggie in the movie the wonder", "answer": "Jacob Tremblay", "passage": "\"Wonder (film)\"\nhad departed from the project. In October 2014, John Krokidas was reported to be directing the film, though in April 2015, Paul King was hired to direct instead. Steven Conrad was writing the script at that time. On April 14, 2016, Jacob Tremblay was cast to play the lead role, Auggie Pullman, while Julia Roberts was in talks to play Auggie's mother. On May 5, 2016, Roberts' casting was confirmed, and Stephen Chbosky was set as the film's director. On June 27, 2016, Owen Wilson joined to play Auggie's father. On July 11, 2016, newcomer Noah Jupe joined the cast"} +{"qid": "test3517", "pid": "17281172", "query": "who plays auggie in the movie the wonder", "answer": "Jacob Tremblay", "passage": "\"Wonder (Palacio novel)\"\nand Owen Wilson as Isabel and Nate Pullman respectively, and Jacob Tremblay as August Pullman was released on November 17, 2017 by Lionsgate. \"\"Auggie and Me\"\" is not a sequel but a companion book to \"\"Wonder\"\" (although \"\"The Julian Chapter\"\" serves as one). It contains three stories, each telling the events of \"\"Wonder\"\" from different perspectives. The first story, called \"\"The Julian Chapter\"\", is told from the point of view of school bully Julian where he explains why he mistreats Auggie and if he will change. The second, called \"\"Pluto\"\", focuses on August Pullman's life before Beecher Prep and is"} +{"qid": "test3517", "pid": "19673811", "query": "who plays auggie in the movie the wonder", "answer": "Jacob Tremblay", "passage": "\"Wonder (film)\"\nfor Best Makeup and Hairstyling. (Jacob Tremblay) is a 10-year-old boy living in North River Heights in upper Manhattan, New York, with his mother Isabel (Julia Roberts), father Nate (Owen Wilson), older sister Olivia \"\"Via\"\" (Izabela Vidovic), and dog Daisy. He has a rare medical facial deformity, which he refers to as \"\"mandibulofacial dysostosis\"\", and has undergone 27 different surgeries as a result. Auggie has been home-schooled, but as he approaches fifth grade, his parents decide to enroll him in Beecher Prep, a private school. Before the school year begins, Auggie meets with Mr. Tushman (Mandy Patinkin), the principal, who"} +{"qid": "test3517", "pid": "20416215", "query": "who plays auggie in the movie the wonder", "answer": "Jacob Tremblay", "passage": "\"Noah Jupe\"\nHurt and Charles Dance; had one of the lead roles, the son of Matt Damon's character, in the black comedy film, \"\"Suburbicon\"\", directed by George Clooney; and appeared in the comedy-drama \"\"Wonder\"\" as Jack Will, best friend to Auggie Pullman (played by Jacob Tremblay). In 2018, he starred with Sam Worthington and Tom Wilkinson in science fiction film \"\"The Titan\"\", and alongside Emily Blunt and John Krasinski in the well-reviewed horror film \"\"A Quiet Place\"\". Krasinski, who cowrote and directed the film, cast Jupe on the recommendation of Clooney. Jupe will next star in the short film adaptation of Stephen"} +{"qid": "test3517", "pid": "19673824", "query": "who plays auggie in the movie the wonder", "answer": "Jacob Tremblay", "passage": "\"Wonder (film)\"\nthe disease as Auggie as undermining the film's message. Wonder (film) Wonder is a 2017 American comedy-drama film, directed by Stephen Chbosky, written by Jack Thorne, Steve Conrad, and Chbosky, based on the 2012 novel of the same name by R. J. Palacio, and starring Julia Roberts, Owen Wilson, Jacob Tremblay, Mandy Patinkin, and Daveed Diggs. The film, which follows a boy with Treacher Collins syndrome trying to fit in, was released in the United States on November 17, 2017, by Lionsgate. It received positive reviews from critics and audiences, and grossed $305 million worldwide on a $20 million budget."} +{"qid": "test3518", "pid": "284353", "query": "when was the japanese videogame company nintendo founded", "answer": "23 September 1889", "passage": "Nintendo\nNintendo Nintendo Co., Ltd. is a Japanese multinational consumer electronics and video game company headquartered in Kyoto. Nintendo is one of the world's largest video game companies by market capitalisation, creating some of the best-known and top-selling video game franchises, such as \"\"Mario\"\", \"\"The Legend of Zelda\"\", and \"\"Pokémon\"\". Founded on 23 September 1889 by Fusajiro Yamauchi, it originally produced handmade hanafuda playing cards. By 1963, the company had tried several small niche businesses, such as cab services and love hotels. Abandoning previous ventures in favour of toys in the 1960s, Nintendo developed into a video game company in the"} +{"qid": "test3519", "pid": "7867802", "query": "when was half life 2 episode 2 released", "answer": "in 2007", "passage": "\"Half-Life 2: Episode Two\"\ntrilogy, the game lacks the driving force of the previous episode.\"\" GameSpy criticized the game, saying it is \"\"a little more inconsistent than its predecessors,\"\" and that the opening segments of the game were \"\"arguably the weakest\"\" parts. Half-Life 2: Episode Two Half-Life 2: Episode Two (stylized as HλLF-LIFE: EPISODE TWO) is a first-person shooter video game, the second in a series of episodic sequels to the 2004 \"\"Half-Life 2\"\". It was developed by Valve Corporation in tandem with \"\"\"\", the first game in the series, and released in 2007 via Valve's Steam content distribution platform. The episode was released"} +{"qid": "test3519", "pid": "7867778", "query": "when was half life 2 episode 2 released", "answer": "in 2007", "passage": "\"Half-Life 2: Episode Two\"\nHalf-Life 2: Episode Two Half-Life 2: Episode Two (stylized as HλLF-LIFE: EPISODE TWO) is a first-person shooter video game, the second in a series of episodic sequels to the 2004 \"\"Half-Life 2\"\". It was developed by Valve Corporation in tandem with \"\"\"\", the first game in the series, and released in 2007 via Valve's Steam content distribution platform. The episode was released both separately and as a part of a bundled package, \"\"The Orange Box\"\". \"\"Episode Two\"\" gameplay consists of expansive environments, travel and reduced linear play, continuing Valve's policy of orienting each episode around a particular theme or set"} +{"qid": "test3519", "pid": "8538180", "query": "when was half life 2 episode 2 released", "answer": "in 2007", "passage": "\"Half-Life (series)\"\nHalf-Life (series) Half-Life (stylized HλLF-LIFE) is a series of first-person shooter games developed and published by Valve. The major installments feature protagonist Gordon Freeman, a physicist who battles an alien invasion. \"\"Half-Life\"\" (1998) and \"\"Half-Life 2\"\" (2004) are full-length games, while \"\"\"\" (2006) and \"\"\"\" (2007) are shorter, episodic games. A third episode, \"\"Half-Life 2: Episode Three\"\", was scheduled for release by Christmas 2007, but is now described as vaporware. The first game in the \"\"Portal\"\" series, set in the same universe as \"\"Half-Life\"\", was released in 2007. The \"\"Half-Life\"\" series includes a core set of games which carry the"} +{"qid": "test3519", "pid": "8538217", "query": "when was half life 2 episode 2 released", "answer": "in 2007", "passage": "\"Half-Life (series)\"\nonline on January 21, 2011. Half-Life (series) Half-Life (stylized HλLF-LIFE) is a series of first-person shooter games developed and published by Valve. The major installments feature protagonist Gordon Freeman, a physicist who battles an alien invasion. \"\"Half-Life\"\" (1998) and \"\"Half-Life 2\"\" (2004) are full-length games, while \"\"\"\" (2006) and \"\"\"\" (2007) are shorter, episodic games. A third episode, \"\"Half-Life 2: Episode Three\"\", was scheduled for release by Christmas 2007, but is now described as vaporware. The first game in the \"\"Portal\"\" series, set in the same universe as \"\"Half-Life\"\", was released in 2007. The \"\"Half-Life\"\" series includes a core set"} +{"qid": "test3519", "pid": "5061963", "query": "when was half life 2 episode 2 released", "answer": "October 10, 2007", "passage": "\"Team Fortress 2\"\non Steam on September 17, 2007, for customers who had pre-purchased \"\"The Orange Box\"\", who had activated their \"\"Black Box\"\" coupon, which was included with the ATI HD 2900XT Graphics cards, and for members of Valve's Cyber Café Program. The beta continued until the game's final release. The game was released on October 10, 2007, both as a standalone product via Steam and at retail stores as part of \"\"The Orange Box\"\" compilation pack, priced at each gaming platform's recommended retail price. \"\"The Orange Box\"\" also contains \"\"Half-Life 2\"\", \"\"Half-Life 2: Episode One\"\", \"\"Half-Life 2: Episode Two\"\", and \"\"Portal\"\". Valve"} +{"qid": "test3519", "pid": "8538191", "query": "when was half life 2 episode 2 released", "answer": "October 10, 2007", "passage": "\"Half-Life (series)\"\n3\"\". \"\"\"\" was released on June 1, 2006. The player controls Freeman as he and Alyx escape City 17 before a dark energy reactor core they damaged at the end of \"\"Half-Life 2\"\" destroys it. It introduced several new graphical effects including new lighting features and more advanced facial animation. \"\"Episode One\"\" received a generally positive critical reaction, although the game's short length was a point of common criticism. \"\"\"\" was released for Windows, Xbox 360, and PlayStation 3 on October 10, 2007 as part of \"\"The Orange Box,\"\" which also includes the games \"\"Portal,\"\" \"\"Team Fortress 2,\"\" \"\"Half-Life 2\"\","} +{"qid": "test3519", "pid": "20291680", "query": "when was half life 2 episode 2 released", "answer": "in 2007", "passage": "\"Review bomb\"\nunpaid games of any kind not count towards the game's review scores. The developer of \"\"Defender's Quest\"\", Lars Doucet, stated that this policy prevented low priced games from being review bombed, but harmed the visibility of crowdfunded indie games. \"\"Dota 2\"\" was reviewed bombed in August 2017 after Marc Laidlaw, a former Valve writer for the \"\"Half-Life\"\" series, posted a \"\"fanfic\"\" on his personal blog that several journalists deduced was the plot for \"\"Half-Life 2: Episode 3\"\", which had been planned for release in 2007, but appeared to have become vaporware within Valve. Players were upset that the episode has"} +{"qid": "test3520", "pid": "2121440", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Virginia Plan\"\nVirginia Plan The Virginia Plan (also known as the Randolph Plan, after its sponsor, or the Large-State Plan) was a proposal by Virginia delegates for a bicameral legislative branch. The plan was drafted by James Madison while he waited for a quorum to assemble at the Constitutional Convention of 1787. The Virginia Plan was notable for its role in setting the overall agenda for debate in the convention and, in particular, for setting forth the idea of population-weighted representation in the proposed national legislature. The Constitutional Convention gathered in Philadelphia to revise the Articles of Confederation. The Virginia delegation took"} +{"qid": "test3520", "pid": "209825", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"James Madison\"\nArticles had to be superseded by a new constitution, and he began preparing for a convention that would propose an entirely new constitution. Madison ensured that George Washington, who was popular throughout the country, and Robert Morris, who was influential in the critical state of Pennsylvania, would both broadly support Madison's plan to implement a new constitution. As a quorum was being reached for the Philadelphia Convention to begin, the 36-year-old Madison wrote what became known as the Virginia Plan, an outline for a new constitution. Madison worked with his fellow members of the Virginia delegation, especially Edmund Randolph and"} +{"qid": "test3520", "pid": "2121446", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Virginia Plan\"\nThe Virginia Plan and the debate surrounding it are prominently featured in the 1989 film \"\"A More Perfect Union\"\", which depicts the events of the 1787 Constitutional Convention. Presented largely from the viewpoint and words of James Madison, the movie was mainly filmed in Independence Hall. Virginia Plan The Virginia Plan (also known as the Randolph Plan, after its sponsor, or the Large-State Plan) was a proposal by Virginia delegates for a bicameral legislative branch. The plan was drafted by James Madison while he waited for a quorum to assemble at the Constitutional Convention of 1787. The Virginia Plan was"} +{"qid": "test3520", "pid": "5514650", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Convention to propose amendments to the United States Constitution\"\nto address this problem. The first proposal for a method of amending the Constitution offered in the Constitutional Convention, contained in the Virginia Plan, sought to circumvent the national legislature, stating that \"\"the assent of the National Legislature ought not to be required.\"\" This was subsequently modified by the Committee of Detail to include a process whereby Congress would call for a constitutional convention on the request of two-thirds of the state legislatures. During the debate on the Committee of Detail's report, James Madison expressed concern about the lack of detail in the article regarding how the convention amendment process"} +{"qid": "test3520", "pid": "5459359", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"History of Virginia\"\nyounger veterans of the war had developed a national identity. Led by George Washington and James Madison, Virginia played a major role in the Constitutional Convention of 1787 in Philadelphia. Madison proposed the Virginia Plan, which would give representation in Congress according to total population, including a proportion of slaves. Virginia was the most populous state, and it was allowed to count all of its white residents and 3/5 of the enslaved African Americans for its congressional representation and its electoral vote. (Only white men who owned a certain amount of property could vote.) Ratification was bitterly contested; the pro-Constitution"} +{"qid": "test3520", "pid": "4933962", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Constitutional Convention (United States)\"\nthat the purpose of the convention was to discuss and draft improvements to the existing Articles of Confederation, and would have not agreed to participate otherwise. Once the Convention began, however, most of the delegates – though not all – came to agree in general terms that the goal would be a new system of government, not simply a revised version of the Articles of Confederation. Several broad outlines were proposed and debated, most notably James Madison's Virginia Plan and William Paterson's New Jersey Plan. The Virginia Plan was selected as the basis for the new government, but several issues"} +{"qid": "test3520", "pid": "4934025", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Constitutional Convention (United States)\"\nlargely from Madison's suggestions, came up with what came to be known as the Virginia Plan, also known as the Large State Plan. For this reason, James Madison is sometimes called the Father of the Constitution. Presented by Virginia governor Edmund Randolph on May 29, 1787, the Virginia Plan proposed a very powerful bicameral legislature. Both houses of the legislature would be determined proportionately. The lower house would be elected by the people, and the upper house would be elected by the lower house. The executive would exist solely to ensure that the will of the legislature was carried out"} +{"qid": "test3520", "pid": "5336697", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Independence National Historical Park\"\ntrade and the structure of the government. This resulted in the Philadelphia Convention, which met from May 14 to September 17, 1787 at the Pennsylvania State House. The Convention was dominated by controversies and conflicting interests, but the delegates forged a Constitution that has been called a \"\"bundle of compromises\"\". At the convention, delegate James Madison presented the Virginia Plan, which proposed a national government with three branches with proportional representation. Large states supported this plan, but smaller states feared losing substantial power under the plan. In response, William Paterson designed the New Jersey Plan, which proposed a one-house (unicameral)"} +{"qid": "test3520", "pid": "6396980", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Virginia Conventions\"\nThe Virginia Ratifying Convention narrowly approved joining the proposed United States under a constitution of supreme national law as authorized by \"\"We, the people\"\" of the United States. James Madison led those in favor, Patrick Henry, delegate to the First Continental Convention and Revolutionary wartime governor, led those opposed. Governor Edmund Randolph, who had refused to sign the U.S. Constitution, now chose to support adoption for the sake of national unity. George Mason who had refused to sign the U.S. Constitution due to the lack of a Bill of Rights continued in his opposition. The Virginia ratification included a recommendation"} +{"qid": "test3520", "pid": "9282748", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Virginia Ratifying Convention\"\nat Richmond VA, and elected Edmund Pendleton its presiding officer. The Virginia Ratifying Convention narrowly approved joining the proposed United States under a Constitution of supreme national law as authorized by \"\"We, the people\"\" of the United States. James Madison led those in favor, Patrick Henry, delegate to the First Continental Convention and Revolutionary wartime governor, led those opposed. Governor Edmund Randolph, who had refused to sign the Constitution in the Philadelphia Convention, chose in Virginia's Ratifying Convention to support adoption. George Mason had refused to sign due to the lack of a Bill of Rights in Philadelphia and would"} +{"qid": "test3520", "pid": "4934005", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Constitutional Convention (United States)\"\npass only with two-thirds majorities of both houses of Congress. While much of the rest of the committee's report would be accepted without serious challenge on the Convention floor, these last three proposals would provoke outrage from Northern delegates and slavery opponents. The final report of the committee, which became the first draft of the Constitution, was the first workable constitutional plan, as Madison's Virginia Plan had simply been an outline of goals and a broad structure. Even after it issued this report, the committee continued to meet off and on until early September. Another month of discussion and relatively"} +{"qid": "test3520", "pid": "576756", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"The Federalist Papers\"\nbeen sent to Virginia; Furtwangler presumes that it was to act as a \"\"debater's handbook for the convention there,\"\" though he claims that this indirect influence would be a \"\"dubious distinction.\"\" Probably of greater importance to the Virginia debate, in any case, were George Washington's support for the proposed Constitution and the presence of Madison and Edmund Randolph, the governor, at the convention arguing for ratification. In Federalist No. 1, Hamilton listed six topics to be covered in the subsequent articles: Furtwangler notes that as the series grew, this plan was somewhat changed. The fourth topic expanded into detailed coverage"} +{"qid": "test3520", "pid": "9282749", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Virginia Ratifying Convention\"\ncontinue in his opposition. The Virginia ratification included a recommendation for a Bill of Rights, and Madison subsequently led the First Congress to send the Bill of Rights to the states for ratification. On receiving the proposed Constitution from the Philadelphia Convention, Congress initiated a ratification procedure for the proposed Constitution which by-passed the sitting state legislatures, going directly to the people of the country, state by state. Four delegates, James Madison with Edmund Randolph for the Federalists and Patrick Henry with George Mason for the Anti-federalists made most of the speeches of the Convention; 149 of the 170 delegates"} +{"qid": "test3520", "pid": "209829", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"James Madison\"\nstates would ensure the approval of a constitution largely similar to the one proposed in the Virginia Plan. However, delegates from small states successfully argued for more power for state governments and presented the New Jersey Plan as an alternative. In response, Roger Sherman proposed the Connecticut Compromise, which sought to balance the interests of small and large states. During the course of the convention, the Council of Revision was jettisoned, each state was given equal representation in the Senate, and the state legislatures, rather than the House of Representatives, were given the power to elect members of the Senate."} +{"qid": "test3520", "pid": "11826402", "query": "who proposed the virginia plan at the constitutional convention", "answer": "Madison", "passage": "\"Confederation Period\"\nfor the consideration of an entirely new constitution, as open consideration of a new constitution would likely have inspired great public outcry. Shortly after the start of the convention, Virginia's delegates introduced a set of reforms known as the Virginia Plan. Drafted by Madison, the Virginia Plan called for a stronger national government with three independent branches of government: executive, legislative, and judicial. The plan granted the federal government legislative power on all issues, as well as the power to nullify state laws. Madison's plan was well-received and served as the basis for the convention's discussion, though several of its"} +{"qid": "test3522", "pid": "2759731", "query": "what is the current population of bora bora", "answer": "10,605", "passage": "\"Bora Bora\"\non the western side of the main island, opposite the main channel into the lagoon. Produce of the island is mostly limited to what can be obtained from the sea and the plentiful coconut trees, which were historically of economic importance for copra. , the Bora Bora group has a permanent population of 10,605. In ancient times the island was called \"\"Pora pora mai te pora\"\", meaning \"\"created by the gods\"\" in the local Tahitian dialect. This was often abbreviated \"\"Pora Pora\"\" meaning simply \"\"first born\"\". Because of ambiguities in the phonemes of the Tahitian language, this could also be"} +{"qid": "test3524", "pid": "8363129", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"Text over IP\"\nsecond) results in a two kilobit per second traffic load (including overheads for RFC4103 with the maximum level of redundancy, RTP, UDP and IP). Control of ToIP sessions has been defined using the standard Session Initiation Protocol (SIP) (RFC 3261) and the Session Description Protocol (SDP) (RFC 4566) protocols. See IETF RFC 5194 \"\"Framework for real-time text over IP using the Session Initiation Protocol (SIP)\"\" and IETF RFC 4504 \"\"SIP Telephony Device Requirements and Configuration\"\" Section 2.9 for more information. Next Generation Networking (NGNs) is a concept developed by telecommunication service providers and their suppliers. It aims to create a"} +{"qid": "test3524", "pid": "191232", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"Telecommunications in India\"\na single core network with service layers separated from network layer. Next-generation networking is such a convergence concept which according to ITU-T is: Access network: The user can connect to the IP-core of NGN in various ways, most of which use the standard Internet Protocol (IP). User terminals such as mobile phones, personal digital assistants (PDAs) and computers can register directly on NGN-core, even when they are roaming in another network or country. The only requirement is that they can use IP and Session Initiation Protocol (SIP). Fixed access (e.g., Digital Subscriber Line (DSL), cable modems, Ethernet), mobile access (e.g."} +{"qid": "test3524", "pid": "18405007", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"SIP extensions for the IP Multimedia Subsystem\"\nSIP extensions for the IP Multimedia Subsystem The Session Initiation Protocol (SIP) is the signaling protocol selected by the 3rd Generation Partnership Project (3GPP) to create and control multimedia sessions with two or more participants in the IP Multimedia Subsystem (IMS), and therefore is a key element in the IMS framework. SIP was developed by the Internet Engineering Task Force (IETF) as a standard for controlling multimedia communication sessions in Internet Protocol (IP) networks, working in the application layer of the Internet Protocol Suite. Several SIP extensions have been added to the basic protocol specification in order to extend its"} +{"qid": "test3524", "pid": "1746451", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"SIMPLE (instant messaging protocol)\"\nSIMPLE (instant messaging protocol) SIMPLE, the Session Initiation Protocol for Instant Messaging and Presence Leveraging Extensions, is an instant messaging (IM) and presence protocol suite based on Session Initiation Protocol (SIP) managed by the Internet Engineering Task Force. Contrary to the vast majority of IM and presence protocols used by software deployed today, SIMPLE is an open standard like XMPP. SIMPLE applies SIP to the problems of: Implementations of the SIMPLE based protocols can be found in SIP Softphones and also in SIP Hardphones. The SIMPLE presence specifications can be broken up into: SIP defines two modes of instant messaging:"} +{"qid": "test3524", "pid": "1746452", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"SIMPLE (instant messaging protocol)\"\nSIMPLE (instant messaging protocol) SIMPLE, the Session Initiation Protocol for Instant Messaging and Presence Leveraging Extensions, is an instant messaging (IM) and presence protocol suite based on Session Initiation Protocol (SIP) managed by the Internet Engineering Task Force. Contrary to the vast majority of IM and presence protocols used by software deployed today, SIMPLE is an open standard like XMPP. SIMPLE applies SIP to the problems of: Implementations of the SIMPLE based protocols can be found in SIP Softphones and also in SIP Hardphones. The SIMPLE presence specifications can be broken up into: SIP defines two modes of instant messaging:"} +{"qid": "test3524", "pid": "11039521", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"Video Share\"\none of mobile operators who have deployed the Video Share service nationwide. Peer-to-peer video sharing was introduced by Nokia phones first in 2004. This was a proprietary solution on top of a SIP or IMS infrastructure. Some European operators offered commercial services based on these phones already in 2005. Similar services popped under the names of See What I See, Rich Voice Call, Push-to-Video (P2video or PTV), etc. The GSMA Video Share service was originally defined, implemented and tested during the Session Initiation Protocol (SIP) trials conducted by the GSM Association in 2005/2006. During the SIP trials, the Video Share"} +{"qid": "test3524", "pid": "11000267", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"Peer-to-peer video sharing\"\nmultimedia IMS session. The session is normally a video stream, with audio being optional (since there is an audio session already open on the CS domain). It is also possible to share photos or files. Actually, P2P video sharing does not require a full IMS implementation. It could work with a pure IETF Session Initiation Protocol (SIP) infrastructure and simple HTTP Digest authentication. However, mobile operators may want to use it without username/password provisioning and the related frauds problems. One possible solution is the Early IMS Authentication method. In the future USIM/ISIM based authentication could be introduced, too. So the"} +{"qid": "test3524", "pid": "16097905", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"Total conversation\"\nThe currently most common implementation environment is native SIP as described above. Total conversation can also be implemented in other call control environments. One such environment is IP Multimedia Subsystem (IMS) in its IMS multimedia telephony service. Firstly, total conversation can be defined as a pragmatic selection of existing standards related to Session Initiation Protocol with the selection of audio, video and text codecs. It is a private initiative of services provider and technology vendors seeking interoperability in the broadtest sense. Secondly, this can apply to existing and deployed SIP platform rather than future or next generation networks. Thirdly, IMS"} +{"qid": "test3524", "pid": "12973127", "query": "what does sip stand for in the ngn / ims context", "answer": "Session Initiation Protocol", "passage": "\"Next Generation 9-1-1\"\nIP Network (ESInet) to deliver voice, video, text and data \"\"calls\"\" to the PSAP. The protocol used for delivering these \"\"calls\"\" will be the Session Initiation Protocol (SIP), or IP Multimedia Subsystem (IMS, which incorporates SIP). The functional and interface standards developed by NENA describe general SIP and IMS-based architectures that allow responsible 9-1-1 Authorities flexibility in developing an infrastructure to support the envisioned features of NG9-1-1. The 911 Improvement Act of 2008 requires IP-enabled voice service providers to provide 9-1-1 service, allows state and tribal fees to pay for such services, and directs the Federal Communications Commission to gather"} +{"qid": "test3525", "pid": "313104", "query": "when was penicillin first introduced to the public", "answer": "After World War II", "passage": "Penicillin\ncompetitively inhibits the excretion of penicillin, increasing penicillin's concentration and prolonging its activity. Eventually, the advent of mass-production techniques and semi-synthetic penicillins resolved the supply issues, so this use of probenecid declined. Probenecid is still useful, however, for certain infections requiring particularly high concentrations of penicillins. After World War II, Australia was the first country to make the drug available for civilian use. In the U.S., penicillin was made available to the general public on March 15, 1945. The chemical structure of penicillin was first proposed by Edward Abraham in 1942 and was later confirmed in 1945 using X-ray crystallography"} +{"qid": "test3525", "pid": "17684", "query": "when was penicillin first introduced to the public", "answer": "1942", "passage": "Antibiotic\nEdward Abraham succeeded in purifying the first penicillin, penicillin G, in 1942, but it did not become widely available outside the Allied military before 1945. Later, Norman Heatley developed the back extraction technique for efficiently purifying penicillin in bulk. The chemical structure of penicillin was first proposed by Abraham in 1942 and then later confirmed by Dorothy Crowfoot Hodgkin in 1945. Purified penicillin displayed potent antibacterial activity against a wide range of bacteria and had low toxicity in humans. Furthermore, its activity was not inhibited by biological constituents such as pus, unlike the synthetic sulfonamides. (see below) The development of"} +{"qid": "test3527", "pid": "10258237", "query": "who overthrew the mongols and established the ming dynasty", "answer": "Zhu Yuanzhang", "passage": "\"Jiao Yu\"\nJiao Yu Jiao Yu () was a Chinese military officer, philosopher, and writer of the Ming dynasty under Zhu Yuanzhang, who founded the dynasty and became known as the Hongwu Emperor. He was entrusted by Zhu as a leading artillery officer for the rebel army that overthrew the Mongol Yuan dynasty, and established the Ming Dynasty. As a senior adviser and general, he was later appointed to the venerable and noble status of the Count of Dongning. He edited and wrote a famous military treatise that outlined the use of Chinese military technology during the mid 14th century based on"} +{"qid": "test3527", "pid": "289495", "query": "who overthrew the mongols and established the ming dynasty", "answer": "Zhu Yuanzhang", "passage": "Nanjing\nby the Jurchen-led Jin dynasty. The court of Da Chu, a short-lived puppet state established by the Jurchens, and the court of Song were once in the city. Song was eventually exterminated by the Mongol empire under the name Yuan and in the Yuan dynasty the city's status as a hub of the textile industry was further consolidated. The first emperor of the Ming dynasty, Zhu Yuanzhang (the Hongwu Emperor), who overthrew the Yuan dynasty, renamed the city Yingtian, rebuilt it, and made it the dynastic capital in 1368. He constructed a long city wall around Yingtian, as well as"} +{"qid": "test3527", "pid": "8457780", "query": "who overthrew the mongols and established the ming dynasty", "answer": "Zhu Yuanzhang", "passage": "\"Xu Da\"\nand establishing the Ming dynasty. Xu Da Xu Da (1332–1385), courtesy name Tiande, was a Chinese military general who lived in the late Yuan dynasty and early Ming dynasty. He was a friend of Hongwu Emperor, the founder and first ruler of the Ming dynasty, and assisted him in overthrowing the Mongol-led Yuan dynasty and establishing the Ming dynasty. He was also the father of Empress Xu, who married the third Ming ruler, the Yongle Emperor. Xu joined the Red Turban rebels in 1353 to overthrow the Mongol-led Yuan dynasty in China. He served as a general under Zhu Yuanzhang,"} +{"qid": "test3527", "pid": "8457776", "query": "who overthrew the mongols and established the ming dynasty", "answer": "Zhu Yuanzhang", "passage": "\"Xu Da\"\nXu Da Xu Da (1332–1385), courtesy name Tiande, was a Chinese military general who lived in the late Yuan dynasty and early Ming dynasty. He was a friend of Hongwu Emperor, the founder and first ruler of the Ming dynasty, and assisted him in overthrowing the Mongol-led Yuan dynasty and establishing the Ming dynasty. He was also the father of Empress Xu, who married the third Ming ruler, the Yongle Emperor. Xu joined the Red Turban rebels in 1353 to overthrow the Mongol-led Yuan dynasty in China. He served as a general under Zhu Yuanzhang, a prominent rebel leader, and"} +{"qid": "test3527", "pid": "4711664", "query": "who overthrew the mongols and established the ming dynasty", "answer": "Zhu Yuanzhang", "passage": "\"Chinese garden\"\nTai. Some of them were said to look like the heads of lions. The Kangxi and Qianlong emperors of the Qing dynasty each visited the garden several times, and used it as model for their own summer garden, the \"\"Garden of Perfect Splendor\"\", at the Chengde Mountain Resort. In 1368, forces of the Ming dynasty, led by Zhu Yuanzhang, captured Dadu from the Mongols and overthrew the Yuan dynasty. Zhu Yuanzhang ordered the Yuan palaces in Dadu to be burned down. The most famous existing garden from the Ming dynasty is the Humble Administrator's Garden in Suzhou. It was built"} +{"qid": "test3527", "pid": "2406013", "query": "who overthrew the mongols and established the ming dynasty", "answer": "Zhu Yuanzhang", "passage": "Taiyuan\nthe start of the Southern Song dynasty. The Mongol empire emerged in 1206 under the leadership of Genghis Khan, and it expanded quickly. In 1218, Taiyuan was conquested by the Mongol army led by General Muqali. Kublai Khan established the Yuan dynasty in 1271, and the administrative area of Taiyuan Lu () was expanded. The Taoist was built in early Yuan dynasty, initiated by Taoist monk Song Defang (). In 1368, Zhu Yuanzhang established the Ming dynasty, and Taiyuan was obtained from Yuan, by General Xu Da. The Ming dynasty installed Nine Military Garrisons to defend the northern territory during"} +{"qid": "test3528", "pid": "530413", "query": "where does the grapes of wrath take place", "answer": "Oklahoma", "passage": "\"The Grapes of Wrath\"\nThe Grapes of Wrath The Grapes of Wrath is an American realist novel written by John Steinbeck and published in 1939. The book won the National Book Award and Pulitzer Prize for fiction, and it was cited prominently when Steinbeck was awarded the Nobel Prize in 1962. Set during the Great Depression, the novel focuses on the Joads, a poor family of tenant farmers driven from their Oklahoma home by drought, economic hardship, agricultural industry changes, and bank foreclosures forcing tenant farmers out of work. Due to their nearly hopeless situation, and in part because they are trapped in the"} +{"qid": "test3528", "pid": "7340766", "query": "where does the grapes of wrath take place", "answer": "Oklahoma", "passage": "\"The Grapes of Wrath (film)\"\nThe Grapes of Wrath (film) The Grapes of Wrath is a 1940 American drama film directed by John Ford. It was based on John Steinbeck's 1939 Pulitzer Prize-winning novel of the same name. The screenplay was written by Nunnally Johnson and the executive producer was Darryl F. Zanuck. The film tells the story of the Joads, an Oklahoma family, who, after losing their farm during the Great Depression in the 1930s, become migrant workers and end up in California. The motion picture details their arduous journey across the United States as they travel to California in search of work and"} +{"qid": "test3529", "pid": "101358", "query": "who wrote the declaration of man and citizen", "answer": "Thomas Jefferson", "passage": "\"Declaration of the Rights of Man and of the Citizen\"\nDeclaration of the Rights of Man and of the Citizen The Declaration of the Rights of Man and of the Citizen (), set by France's National Constituent Assembly in 1789, is a human civil rights document from the French Revolution. The Declaration was drafted by the Abbé Sieyès and the Marquis de Lafayette, in consultation with Thomas Jefferson. Influenced by the doctrine of \"\"natural right\"\", the rights of man are held to be universal: valid at all times and in every place, pertaining to human nature itself. It became the basis for a nation of free individuals protected equally by"} +{"qid": "test3529", "pid": "434520", "query": "who wrote the declaration of man and citizen", "answer": "Thomas Jefferson", "passage": "\"United States Declaration of Independence\"\ndocuments\"\", wrote Pauline Maier, \"\"is there any evidence whatsoever that the Declaration of Independence lived in men's minds as a classic statement of American political principles.\"\" Many leaders of the French Revolution admired the Declaration of Independence but were also interested in the new American state constitutions. The inspiration and content of the French Declaration of the Rights of Man and Citizen (1789) emerged largely from the ideals of the American Revolution. Its key drafts were prepared by Lafayette, working closely in Paris with his friend Thomas Jefferson. It also borrowed language from George Mason's Virginia Declaration of Rights. The"} +{"qid": "test3529", "pid": "101360", "query": "who wrote the declaration of man and citizen", "answer": "Honoré Mirabeau", "passage": "\"Declaration of the Rights of Man and of the Citizen\"\nthe document emerged largely from the ideals of the Enlightenment. The key drafts were prepared by Lafayette, working at times with his close friend Thomas Jefferson. In August 1789, Honoré Mirabeau played a central role in conceptualizing and drafting the Declaration of the Rights of Man and of the Citizen. The last article of the Declaration of the Rights of Man and the Citizen was adopted on the 26 of August 1789 by the National Constituent Assembly, during the period of the French Revolution, as the first step toward writing a constitution for France. Inspired by the Enlightenment, the original"} +{"qid": "test3530", "pid": "5793854", "query": "when did the cowboys start playing on thanksgiving day", "answer": "1966", "passage": "\"1977 NFL season\"\n1977 NFL season The 1977 NFL season was the 58th regular season of the National Football League. The Seattle Seahawks were placed in the AFC West while the Tampa Bay Buccaneers were slotted into the NFC Central. Instead of a traditional Thanksgiving Day game hosted by the Dallas Cowboys, the league scheduled a Miami Dolphins at St. Louis Cardinals contest. This would be only the second season since 1966 that the Cowboys did not play on that holiday. It marked the last time that the Cowboys did not play on Thanksgiving. This was the last NFL regular season with 14"} +{"qid": "test3530", "pid": "5793858", "query": "when did the cowboys start playing on thanksgiving day", "answer": "1966", "passage": "\"1977 NFL season\"\nCalifornia. 1977 NFL season The 1977 NFL season was the 58th regular season of the National Football League. The Seattle Seahawks were placed in the AFC West while the Tampa Bay Buccaneers were slotted into the NFC Central. Instead of a traditional Thanksgiving Day game hosted by the Dallas Cowboys, the league scheduled a Miami Dolphins at St. Louis Cardinals contest. This would be only the second season since 1966 that the Cowboys did not play on that holiday. It marked the last time that the Cowboys did not play on Thanksgiving. This was the last NFL regular season with"} +{"qid": "test3530", "pid": "12742905", "query": "when did the cowboys start playing on thanksgiving day", "answer": "1966", "passage": "\"1974 Dallas Cowboys season\"\n1974 Dallas Cowboys season The 1974 Dallas Cowboys season was their 15th in the league. The team failed to improve on their previous output of 10–4, winning only eight games. They failed to qualify for the playoffs for the first time in nine seasons and this marked the only season from 1966 to 1983 (18 seasons) that the Cowboys did not qualify. The Cowboys began with a 1–4 start and although they went 7–2 afterwards, it was not enough to overcome the slow start. The season featured one of the most memorable Thanksgiving Day games in Cowboys history. Trailing 16–3"} +{"qid": "test3530", "pid": "9131673", "query": "when did the cowboys start playing on thanksgiving day", "answer": "1978", "passage": "\"NFL on Thanksgiving Day\"\nNFL on Thanksgiving Day Since its inception in 1920, the National Football League has played games on Thanksgiving Day, patterned upon the historic playing of college football games on and around the Thanksgiving holiday. Since 1978, the NFL's Thanksgiving Day games have traditionally included one game hosted by the Detroit Lions, and one game hosted by the Dallas Cowboys. Since 2006, with the advent of the NFL's then-new \"\"Thursday Night Football\"\" package, a third primetime game has also been played on Thanksgiving. Unlike the traditional afternoon games, this game has no fixed host and has featured different teams annually. The"} +{"qid": "test3530", "pid": "6553508", "query": "when did the cowboys start playing on thanksgiving day", "answer": "1966", "passage": "\"American football on Thanksgiving\"\nthe NFL upon its founding in 1920, and as such, the NFL has played on Thanksgiving ever since. The Detroit Lions and the Dallas Cowboys have played home games on Thanksgiving since 1934 and 1966, respectively, in a traditional series of NFL games. Beginning in 2006, the NFL added a third game on Thanksgiving night with a rotating host team. The rival American Football League also played on Thanksgiving in the 1960s, as did the All-America Football Conference in the 1940s and the original AFL in 1926. In the Canadian Football League, where games are played on Canadian Thanksgiving, the"} +{"qid": "test3530", "pid": "9131681", "query": "when did the cowboys start playing on thanksgiving day", "answer": "In 1966", "passage": "\"NFL on Thanksgiving Day\"\nlater be absorbed into the NFL, also held Thanksgiving contests, although neither of those leagues had permanent hosts. Likewise, the AFL of 1926 also played two Thanksgiving games in its lone season of existence, while the AFL of 1936 hosted one in its first season, which featured the Cleveland Rams, a future NFL team, and the 1940–41 incarnation of the American Football League played two games in 1940 on the earlier \"\"Franksgiving\"\" date. In 1966, the Dallas Cowboys, who had been founded six years earlier, adopted the practice of hosting Thanksgiving games. It is widely rumored that the Cowboys sought"} +{"qid": "test3530", "pid": "12098089", "query": "when did the cowboys start playing on thanksgiving day", "answer": "In 1966", "passage": "\"1966 Dallas Cowboys season\"\ngame. Every team turned down the offer, except for the Dallas Cowboys. General Manager Tex Schramm recognized this as an opportunity for the franchise to increase its popularity and establish its own Thanksgiving Day game tradition. In 1966, the Cowboys who had been founded six years earlier, adopted the practice of hosting Thanksgiving games. It is widely rumored that the Cowboys sought a guarantee that they would regularly host Thanksgiving games as a condition of their very first one (since games on days other than Sunday were uncommon at the time and thus high attendance was not a certainty). Since"} +{"qid": "test3531", "pid": "16788205", "query": "who was the author of the art of war", "answer": "Sun Tzu", "passage": "\"The Art of War (comics)\"\nThe Art of War (comics) The Art of War is a graphic novel written and storyboarded by Kelly Roman with art by Michael DeWeese. The book was published as a paperback original by Harper Perennial on July 31, 2012. The graphic novel adapts Sun Tzu's original \"\"The Art of War\"\" into a science fiction story that follows an ex-soldier who works in a militarized financial world dominated by the Chinese government. Author Kelly Roman was inspired to adapt \"\"The Art of War\"\" after \"\"he sensed a growing national anxiety about China's hegemonic rise, and I wanted to transform the ancient"} +{"qid": "test3531", "pid": "625216", "query": "who was the author of the art of war", "answer": "Sun Tzu", "passage": "\"Sun Tzu\"\nare numerous theories concerning when the text was completed and concerning the identity of the author or authors, but archeological recoveries show \"\"The Art of War\"\" had taken roughly its current form by at least the early Han. Because it is impossible to prove definitively when the \"\"Art of War\"\" was completed before this date, the differing theories concerning the work's author or authors and date of completion are unlikely to be completely resolved. Some modern scholars believe that it contains not only the thoughts of its original author but also commentary and clarifications from later military theorists, such as"} +{"qid": "test3532", "pid": "2971043", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701)\"\n\"\"Star Trek\"\". Another \"\"Discovery\"\" producer, Greg Harberts isn't worried whether fans are satisfied with the ship's redesign: while many of the staff who developed the new appearance are \"\"Star Trek\"\" fans, Harberts stated fans rarely agree on anything. Starfleet commissioned the \"\"Enterprise\"\" in 2245. Robert April is the \"\"Enterprise\"\"s first captain, succeeded by Christopher Pike. Pike leads the \"\"Enterprise\"\" for about a decade and is the commanding officer in the original pilot, \"\"The Cage\"\". Throughout the first live action and animated \"\"Star Trek\"\" television series, Captain James T. Kirk commands the ship on an exploration mission from 2264 to 2269."} +{"qid": "test3532", "pid": "3010232", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701-D)\"\nUSS Enterprise (NCC-1701-D) USS \"\"Enterprise\"\" - NCC-1701-D (or \"\"Enterprise\"\"-D) is a 24th-century starship in the fictional \"\"Star Trek\"\" universe and the principal setting of the \"\"\"\" television series. The \"\"Enterprise\"\"-D also appears in the pilot episode of \"\"\"\" (\"\"\"\"), the series finale of \"\"\"\" (\"\"These Are the Voyages...\"\"), and the movie \"\"Star Trek Generations\"\". The \"\"Enterprise\"\"-D is a \"\"Galaxy\"\"-class ship and the fifth Federation starship in the \"\"Star Trek\"\" universe to carry the name \"\"Enterprise\"\". \"\"Enterprise\"\"-D is the flagship of Starfleet. For majority of the ship's service in the \"\"Star Trek\"\" universe, the commanding officer of \"\"Enterprise\"\"-D is Captain Jean-Luc"} +{"qid": "test3532", "pid": "3174014", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701-E)\"\nUSS Enterprise (NCC-1701-E) The USS \"\"Enterprise\"\" NCC-1701-E (or \"\"Enterprise\"\"-E, to distinguish it from prior and later starships with the same name) is a fictional starship in the \"\"Star Trek\"\" franchise. A \"\"Sovereign\"\"-class starship, it appears in the films \"\"\"\", \"\"\"\" and \"\"Star Trek Nemesis\"\", where it serves as the primary setting. It is the sixth Federation starship to carry the name \"\"Enterprise\"\". Ronald D. Moore, the co-writer of \"\"Star Trek Generations\"\" and \"\"Star Trek: First Contact\"\", has suggested that construction of the \"\"Enterprise\"\"-E began during the final season of \"\"The Next Generation\"\" (2370), and that the ship was renamed USS"} +{"qid": "test3532", "pid": "3174018", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701-E)\"\nto warp 9.995. USS Enterprise (NCC-1701-E) The USS \"\"Enterprise\"\" NCC-1701-E (or \"\"Enterprise\"\"-E, to distinguish it from prior and later starships with the same name) is a fictional starship in the \"\"Star Trek\"\" franchise. A \"\"Sovereign\"\"-class starship, it appears in the films \"\"\"\", \"\"\"\" and \"\"Star Trek Nemesis\"\", where it serves as the primary setting. It is the sixth Federation starship to carry the name \"\"Enterprise\"\". Ronald D. Moore, the co-writer of \"\"Star Trek Generations\"\" and \"\"Star Trek: First Contact\"\", has suggested that construction of the \"\"Enterprise\"\"-E began during the final season of \"\"The Next Generation\"\" (2370), and that the ship"} +{"qid": "test3532", "pid": "2971044", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701)\"\n\"\"Star Trek: The Motion Picture\"\" begins with the \"\"Enterprise\"\" completing an 18-month refit overseen by its new captain, Willard Decker. Decker describes the refit vessel as \"\"an almost totally new \"\"Enterprise\"\"\"\". Admiral Kirk takes command of the ship to address a threat to Earth. \"\"Star Trek\"\" novels and other media depict a second five-year mission under Kirk's command between the events of the first and second films. Captain Spock commands the \"\"Enterprise\"\", serving as a training ship, at the beginning of \"\"Star Trek II: The Wrath of Khan\"\" in 2285. Kirk assumes command to investigate problems at space station Regula"} +{"qid": "test3532", "pid": "3174017", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701-E)\"\nthe \"\"Enterprise\"\"-E remains under the command of Picard as of 2385 in the 2013 novel miniseries \"\"Star Trek: The Fall\"\". Data was resurrected in the novels similarly to the comic miniseries \"\"Countdown\"\", but he decided not to re-enter Starfleet. A designer's blueprints show that the \"\"Enterprise\"\" has new phaser banks and torpedo launchers in \"\"Star Trek Nemesis\"\" that were not present in \"\"Star Trek: Insurrection\"\". It also shows the warp nacelles have been moved upwards and forward slightly. \"\"Star Trek: Ships of the Line\"\", written by \"\"Star Trek\"\"s technical consultant Michael Okuda, states that the \"\"Enterprise\"\" can travel at up"} +{"qid": "test3532", "pid": "2971050", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701)\"\nThe ship's destruction in \"\"The Search for Spock\"\" has been described as \"\"truly iconic\"\" and \"\"a good way to go\"\", though David Gerrold wrote that the ship's destruction \"\"casts a pall\"\" over the film that even Spock's resurrection cannot displace. In a 2010 retrospective of the \"\"Star Trek\"\" films, author Jill Sherwin suggests the aging \"\"Enterprise\"\" in \"\"The Search for Spock\"\" served as a metaphor for the aging \"\"Star Trek\"\" franchise. The starship \"\"Enterprise\"\" has had considerable cultural impact, and the original ship's model is \"\"a living cultural object\"\". Bjo Trimble said producers of the original \"\"Star Trek\"\" received more"} +{"qid": "test3532", "pid": "3010246", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701-D)\"\nsituations that could easily end with the complete destruction of the ship with all hands. Some civilians work aboard the ship, such as the bartender Ben in \"\"Lower Decks\"\" and botanist in \"\"\"\" and other episodes. USS Enterprise (NCC-1701-D) USS \"\"Enterprise\"\" - NCC-1701-D (or \"\"Enterprise\"\"-D) is a 24th-century starship in the fictional \"\"Star Trek\"\" universe and the principal setting of the \"\"\"\" television series. The \"\"Enterprise\"\"-D also appears in the pilot episode of \"\"\"\" (\"\"\"\"), the series finale of \"\"\"\" (\"\"These Are the Voyages...\"\"), and the movie \"\"Star Trek Generations\"\". The \"\"Enterprise\"\"-D is a \"\"Galaxy\"\"-class ship and the fifth Federation"} +{"qid": "test3532", "pid": "2971047", "query": "what was the first star trek enterprise ship", "answer": "NCC-1701", "passage": "\"USS Enterprise (NCC-1701)\"\n\"\"Enterprise\"\". The vessel is destroyed in \"\"Star Trek Beyond\"\" and a new \"\"Enterprise\"\", NCC-1701-A, is commissioned under Kirk's command. When it first appeared on television, the \"\"Enterprise\"\" was an \"\"elegant and weird looking behemoth\"\". Although the contemporaneous Apollo program prompted awareness of the possibilities of space travel, the \"\"Enterprise\"\" sparked space travel fantasies. Jonathan Glancey described the \"\"convincing and exciting\"\" \"\"Enterprise\"\" as having the same aesthetic appeal as the Concorde jet, B-17 bomber, and \"\"Queen Elizabeth 2\"\" ocean liner. Like other \"\"Star Trek\"\" ships with the same name, the original \"\"Enterprise\"\" is \"\"a character in its own right\"\". Film critic"} +{"qid": "test3536", "pid": "918759", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Electron transport chain\"\nElectron transport chain An electron transport chain (ETC) is a series of complexes that transfer electrons from electron donors to electron acceptors via redox (both reduction and oxidation occurring simultaneously) reactions, and couples this electron transfer with the transfer of protons (H ions) across a membrane. This creates an electrochemical proton gradient that drives the synthesis of adenosine triphosphate (ATP), a molecule that stores energy chemically in the form of highly strained bonds. The molecules of the chain include peptides, enzymes (which are proteins or protein complexes), and others. The final acceptor of electrons in the electron transport chain during"} +{"qid": "test3536", "pid": "918763", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Electron transport chain\"\npowers most cellular reactions. A small amount of ATP is available from substrate-level phosphorylation, for example, in glycolysis. In most organisms the majority of ATP is generated in electron transport chains, while only some obtain ATP by fermentation. Most eukaryotic cells have mitochondria, which produce ATP from products of the citric acid cycle, fatty acid oxidation, and amino acid oxidation. At the mitochondrial inner membrane, electrons from NADH and FADH2 pass through the electron transport chain to oxygen, which is reduced to water. The electron transport chain comprises an enzymatic series of electron donors and acceptors. Each electron donor will"} +{"qid": "test3536", "pid": "918792", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Electron transport chain\"\nof protons across a membrane, producing a proton gradient. The proton gradient is used to produce useful work. About 30 work units are produced per electron transport. Electron transport chain An electron transport chain (ETC) is a series of complexes that transfer electrons from electron donors to electron acceptors via redox (both reduction and oxidation occurring simultaneously) reactions, and couples this electron transfer with the transfer of protons (H ions) across a membrane. This creates an electrochemical proton gradient that drives the synthesis of adenosine triphosphate (ATP), a molecule that stores energy chemically in the form of highly strained bonds."} +{"qid": "test3536", "pid": "918785", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Electron transport chain\"\nstructures imbedded in the membrane. The mobile cytochrome electron carrier in mitochondria is cytochrome \"\"c\"\". Bacteria use a number of different mobile cytochrome electron carriers. Other cytochromes are found within macromolecules such as \"\"Complex III\"\" and \"\"Complex IV\"\". They also function as electron carriers, but in a very different, intramolecular, solid-state environment. Electrons may enter an electron transport chain at the level of a mobile cytochrome or quinone carrier. For example, electrons from inorganic electron donors (nitrite, ferrous iron, etc.) enter the electron transport chain at the cytochrome level. When electrons enter at a redox level greater than NADH, the"} +{"qid": "test3536", "pid": "918779", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Electron transport chain\"\nAcceptor\"\". Individual bacteria use multiple electron transport chains, often simultaneously. Bacteria can use a number of different electron donors, a number of different dehydrogenases, a number of different oxidases and reductases, and a number of different electron acceptors. For example, \"\"E. coli\"\" (when growing aerobically using glucose as an energy source) uses two different NADH dehydrogenases and two different quinol oxidases, for a total of four different electron transport chains operating simultaneously. A common feature of all electron transport chains is the presence of a proton pump to create a transmembrane proton gradient. Bacterial electron transport chains may contain as"} +{"qid": "test3536", "pid": "17569653", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Chlorobium chlorochromatii\"\na free-living state in naturally occurring bacterial communities. \"\"C. chlorochromatii\"\" conducts anoxygenic photosynthesis which means it does not produce oxygen as a waste product like plants and cyanobacteria, this type of photosynthesis is exclusive to Bacteria. In their electron transport chain reduced forms of sulfur, e.g., HS. These reduced forms of sulfur are used in the electron transport chain cyclic Photosystem 1 as electron donors to reduce NADP+ to NADPH. It grows under strictly anaerobic conditions as a photolithoautotroph. They grow best at a pH of 7.0-7.3 at 25 C in continuous light and absorb light maximally at 748 and"} +{"qid": "test3536", "pid": "304641", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Oxidative phosphorylation\"\ntransport chain, from electron donors such as NADH to electron acceptors such as oxygen, is an exergonic process – it releases energy, whereas the synthesis of ATP is an endergonic process, which requires an input of energy. Both the electron transport chain and the ATP synthase are embedded in a membrane, and energy is transferred from electron transport chain to the ATP synthase by movements of protons across this membrane, in a process called \"\"chemiosmosis\"\". In practice, this is like a simple electric circuit, with a current of protons being driven from the negative N-side of the membrane to the"} +{"qid": "test3536", "pid": "918761", "query": "where does the electron transport chain get its electrons from", "answer": "donor molecule", "passage": "\"Electron transport chain\"\ntheir cell membrane. In chloroplasts, light drives the conversion of water to oxygen and NADP to NADPH with transfer of H ions across chloroplast membranes. In mitochondria, it is the conversion of oxygen to water, NADH to NAD and succinate to fumarate that are required to generate the proton gradient. Electron transport chains are major sites of premature electron leakage to oxygen, generating superoxide and potentially resulting in increased oxidative stress. The electron transport chain consists of a spatially separated series of redox reactions in which electrons are transferred from a donor molecule to an acceptor molecule. The underlying force"} +{"qid": "test3536", "pid": "918770", "query": "where does the electron transport chain get its electrons from", "answer": "electron donors", "passage": "\"Electron transport chain\"\nelectron donors (e.g., fatty acids and glycerol 3-phosphate) also direct electrons into Q (via FAD). Complex 2 is a parallel electron transport pathway to complex 1, but unlike complex 1, no protons are transported to the intermembrane space in this pathway. Therefore, the pathway through complex 2 contributes less energy to the overall electron transport chain process. This complex is inhibited by Carboxin. In \"\"Complex III\"\" (cytochrome \"\"bc\"\" complex or CoQH-cytochrome \"\"c\"\" reductase; ), the Q-cycle contributes to the proton gradient by an asymmetric absorption/release of protons. Two electrons are removed from QH at the Q site and sequentially transferred"} +{"qid": "test3537", "pid": "10978610", "query": "when did the ottoman empire surrender in ww1", "answer": "1918", "passage": "\"Siege of Medina\"\nby T. E. Lawrence and his Arab forces, on which his entire logistics depended. Turkish garrisons of the isolated small train stations withstood the continuous night attacks and secured the tracks against increasing number of sabotages (around 130 major attacks in 1917 and hundreds in 1918 including exploding more than 300 bombs on 30 April 1918). With the resignation of the Ottoman Empire from the war with the Armistice of Mudros between Ottoman Empire and Entente on 30 October 1918, it was expected that Fahreddin Pasha would also surrender. He refused and did not surrender even after the end of"} +{"qid": "test3537", "pid": "10432147", "query": "when did the ottoman empire surrender in ww1", "answer": "1918", "passage": "\"Ottoman–Habsburg wars\"\na more committed level, driving the Turks out of the Crimea and Caucasus. Meanwhile, the German Empire of Prussia appealed to the Austrians through a common culture, language and the lenient terms imposed after the Austro-Prussian War. The Austrians were in no hurry to see Russia advance at the cost of the Ottomans towards their borders. Thus, in the years before World War I, the two former enemies found themselves allies against the French, the Russians and the British. In 1918, the Austro-Hungarian Empire surrendered to partition under the Treaty of Saint-Germain, as did the Ottomans under the Treaty of"} +{"qid": "test3537", "pid": "6914441", "query": "when did the ottoman empire surrender in ww1", "answer": "1918", "passage": "\"Charles Townshend (British Army officer)\"\nPOWs in Egypt served to distract attention from what the Ottomans were doing to the Armenians and Assyrians. At the war's end Townshend, as the most senior British imperial official in Istanbul at that moment, was involved in the negotiations for the Ottoman Empire's military surrender to the British Empire's advancing Egyptian Expeditionary Force in October 1918. Townshend's claim made on his return to Britain that the entire Armistice of Mudros was all his work led to an annoyed Field Marshal Edmund Allenby to issue a corrective statement saying that Townshend did indeed play a role in negotiating the Armistice"} +{"qid": "test3537", "pid": "20556613", "query": "when did the ottoman empire surrender in ww1", "answer": "1918", "passage": "\"Republic Day (Armenia)\"\nRepublic Day (Armenia) Republic Day () is a national holiday in Armenia marking the anniversary of the First Armenian Republic in 1918. It is commonly celebrated with fireworks, concerts, torchlight marches, parades, and parties. It is considered to be the national day of Armenia. Shortly after the start of WW1 the Ottoman Empire began forcible expulsion of Armenians from the empire. Women, children and elderly people were forced to leave Armenia and go to Syria and Russia. 1 to 1.5 million people were killed in what is now known as the Armenian Genocide. Following the genocide, the Armenian National Council"} +{"qid": "test3537", "pid": "20556616", "query": "when did the ottoman empire surrender in ww1", "answer": "1918", "passage": "\"Republic Day (Armenia)\"\nheld at the memorial, which featured hundreds of soldiers dressed in military uniforms from the First Armenian, Soviet Army uniforms from World War II, as well as veterans of the Nagorno-Karabakh War. Republic Day (Armenia) Republic Day () is a national holiday in Armenia marking the anniversary of the First Armenian Republic in 1918. It is commonly celebrated with fireworks, concerts, torchlight marches, parades, and parties. It is considered to be the national day of Armenia. Shortly after the start of WW1 the Ottoman Empire began forcible expulsion of Armenians from the empire. Women, children and elderly people were forced"} +{"qid": "test3537", "pid": "20739461", "query": "when did the ottoman empire surrender in ww1", "answer": "1918", "passage": "\"Repatriation of Armenians\"\nRussian Empire in 1917, the Armenian population of Transcaucasia declared the independence of the first Armenian Republic in 1918. The short-lived republic dealt with war from all side throughout the entirety of its existence. As the Ottoman Empire fell, the partition of the Ottoman Empire was being discussed at the Paris Peace Conference of 1919. The conference agreed that the Ottoman Empire had to surrender all of its territorial claims in Transcaucasia, but the parts of Ottoman Armenia to be awarded to the Armenian Republic was less clear, since its Armenian population had been extinguished during the Armenian Genocide. Additionally,"} +{"qid": "test3539", "pid": "586603", "query": "where do the blood vessels that supply the retinal cells lie", "answer": "optic nerve", "passage": "Retina\ntwo of synapses, including the unique ribbon synapse. The optic nerve carries the ganglion cell axons to the brain, and the blood vessels that supply the retina. The ganglion cells lie innermost in the eye while the photoreceptive cells lie beyond. Because of this counter-intuitive arrangement, light must first pass through and around the ganglion cells and through the thickness of the retina, (including its capillary vessels, not shown) before reaching the rods and cones. Light is absorbed by the retinal pigment epithelium or the choroid (both of which are opaque). The white blood cells in the capillaries in front"} +{"qid": "test3539", "pid": "3898653", "query": "where do the blood vessels that supply the retinal cells lie", "answer": "optic nerve", "passage": "\"Optic disc\"\nOptic disc The optic disc or optic nerve head is the point of exit for ganglion cell axons leaving the eye. Because there are no rods or cones overlying the optic disc, it corresponds to a small blind spot in each eye. The ganglion cell axons form the optic nerve after they leave the eye. The optic disc represents the beginning of the optic nerve and is the point where the axons of retinal ganglion cells come together. The optic disc is also the entry point for the major blood vessels that supply the retina. The optic disc in a"} +{"qid": "test3539", "pid": "3898660", "query": "where do the blood vessels that supply the retinal cells lie", "answer": "optic nerve", "passage": "\"Optic disc\"\npatients without glaucoma. Optic disc The optic disc or optic nerve head is the point of exit for ganglion cell axons leaving the eye. Because there are no rods or cones overlying the optic disc, it corresponds to a small blind spot in each eye. The ganglion cell axons form the optic nerve after they leave the eye. The optic disc represents the beginning of the optic nerve and is the point where the axons of retinal ganglion cells come together. The optic disc is also the entry point for the major blood vessels that supply the retina. The optic"} +{"qid": "test3539", "pid": "14492390", "query": "where do the blood vessels that supply the retinal cells lie", "answer": "optic nerve", "passage": "\"Scleral reinforcement surgery\"\nlarge posterior temporal bulge. Curtin described five varieties, based on size, shape, and change in appearance of the optic nerve and retinal vessels, but the posterior pole type is the most common. As the posterior staphyloma enlarges, choroidal tissue becomes thin and Bruch's membrane begins to break, creating lesions called lacquer cracks. Neovascularization may occur, causing blood vessels to protrude through the cracks and leak in the space underneath the photoreceptor cell layer. This hemorrhaging can lead to scarring and macular degeneration, causing vision to gradually deteriorate. If left untreated, high myopia can cause retinal detachment, glaucoma, and a higher"} +{"qid": "test3540", "pid": "17983192", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"Katerina (The Vampire Diaries)\"\ncan get in touch with Klaus. Rose says that she got in touch with Elijah via Slater (Trevor Peterson), a vampire who lives in Richmond. Damon does not waste any time and they immediately leave to find Slater. They meet him at a cafe that is built in a way that does not allow the sun burn the vampires but Trevor's contacts stop to Elijah and he does not know how to reach Klaus. Outside the cafe, Elijah listens to the whole conversation between Damon, Rose and Slater and he is not happy with what is happening. He throws some"} +{"qid": "test3540", "pid": "16408369", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"Original Vampires (The Vampire Diaries)\"\nto their \"\"linked\"\" status. However, Klaus manages to force Bonnie into unlinking the siblings moments before Finn is killed. It is revealed through Finn's death that when an Original dies, all vampires of his or her bloodline die as well. As was revealed in the season finale of \"\"The Originals\"\", Finn returns along with his mother Esther and brother Kol in another body of a male witch named Vincent. He is portrayed by New Zealand actor Daniel Gillies Elijah first appears in episode eight of season two, entitled \"\"Rose\"\". Elijah is brought into the circle by two vampires named Rose"} +{"qid": "test3540", "pid": "17976646", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"Rose (The Vampire Diaries)\"\ncome and when he arrives, Trevor freaks out, something that makes Elena realize that they are afraid of him. Rose manages to calm him down and leaves to meet Elijah. Rose meets Elijah and tells him that Katherine survived back in 1864 and that there is also a human doppelganger of hers. Elijah seems unwilling to believe her but he does when he sees Elena. Trevor apologizes for his betrayal to Elijah who forgives him but he still kills him. Elena is terrified of him and tries to negotiate with him by telling him that she knows where the moonstone"} +{"qid": "test3540", "pid": "17989620", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"The Sacrifice (The Vampire Diaries)\"\nwant to help but she changes her mind when Elena tells her that if she does, Rose will turn her into a vampire. With Alice's help, they find another contact of Slater's, Cody (James Harvey Ward), and Elena sends him a message to deliver to Klaus: that the doppelganger is alive and wants to surrender. Rose realizes that this was Elena's plan since the beginning and not to learn more about the moonstone. She tries to change her mind but Elena does not want to hear it, so Rose calls Damon. In the meantime, Elijah (Daniel Gillies) wants to find"} +{"qid": "test3540", "pid": "17976648", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"Rose (The Vampire Diaries)\"\nthe fights and protect Elena together. Rose appears at the Salvatore house to offer her help because, as she says, Elijah might be dead but the rest of the Originals will come for Elena because they all work for him; Klaus. In the meantime, Damon pays a visit to Elena to give her back her vervain necklace but before he does it, he admits to her that he loves her and then compels her to forget about it. He leaves the room and Elena stays behind with the necklace, wondering what happened. The episode ends with Elijah coming back to"} +{"qid": "test3540", "pid": "17983198", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"Katerina (The Vampire Diaries)\"\nthat he doesn't want to be involved in their plans but he tells her that if they want to destroy the curse they will have to get the moonstone and a witch. He hangs up the phone and it's revealed that Elijah is there with him who compelled him to say those things to Rose. Elijah also compels Slater to stake himself, something that Slater does and dies. The episode ends with Jonas entering the room asking Elijah if it was necessary to kill Slater and Elijah says that it was. In \"\"Katerina\"\" we can hear the songs: In its"} +{"qid": "test3540", "pid": "14843207", "query": "when does elijah first appear in vampire diaries", "answer": "Rose", "passage": "\"The Vampire Diaries (season 2)\"\nOriginals (the first generation of vampires). Rose reveals to Elena that she is the Petrova doppelgänger and needs to be sacrificed to break the sun and moon curse. Katherine was also a Petrova doppelgänger, who used Trevor to help her escape from the Originals and Rose to turn her into a vampire to save herself. Elena is rescued by Stefan and Damon by stabbing Elijah with a sharp wooden pole and they escape. Klaus, one of the original vampires, arrives and is now hunting Elena. His brother Elijah has made a deal with Elena to protect her loved ones, because"} +{"qid": "test3541", "pid": "6731079", "query": "who does the voice of nala in the lion king", "answer": "Niketa Calame", "passage": "\"Nala (The Lion King)\"\nNala (The Lion King) Nala is a fictional character who appears in Disney's \"\"The\"\" \"\"Lion King\"\" franchise. Introduced in the animated film \"\"The Lion King\"\" in 1994, Nala subsequently appears as a less prominent character in the film's sequels \"\"\"\" (1998) and \"\"The Lion King 1½\"\" (2004), and serves as a recurring character in \"\"The Lion Guard\"\" (2015–). In the original film, the adult Nala is voiced by American actress Moira Kelly. Young Nala's speaking voice is provided by actress Niketa Calame, while singers Laura Williams and Sally Dworsky provide the singing voices of young and adult Nala respectively. Nala"} +{"qid": "test3541", "pid": "6731115", "query": "who does the voice of nala in the lion king", "answer": "Moira Kelly", "passage": "\"Nala (The Lion King)\"\nacclaim. Writing for \"\"The Washington Post\"\", Desson Howe hailed Kelly's voice acting as \"\"terrific.\"\" Jeremy Gerard of \"\"Variety\"\" commended Kelly for voicing the character \"\"beautifully\"\". PopSugar ranked Kelly among the website's \"\"Favorite Animated Voices\"\", writing, \"\"there are a lot of great voices in Disney's \"\"The Lion King\"\" ... but Moira Kelly has a unique quality to her voice, and I remember reveling in it as a youngster anytime the adult Nala was on the screen.\"\" Official Disney Blogs published an article entitled \"\"We All Thought it… But Nala Actually Said It\"\", which cites the character's most revered quotes. The blog"} +{"qid": "test3541", "pid": "6731090", "query": "who does the voice of nala in the lion king", "answer": "Niketa Calame", "passage": "\"Nala (The Lion King)\"\nBecause Nala is a \"\"very straight character\"\", determining what kind of voice she would use for her was not a particularly challenging task. Additionally, the filmmakers would also film Kelly's performances in order to incorporate her own facial expressions into her character's design, the process of which impressed the actress. In her film debut, actress Niketa Calame voices young Nala. According to Calame's official website, Nala remains the actress' \"\"biggest role to date\"\". A classically trained pianist and chorister, Laura Williams provides the singing voice of young Nala, which can be heard in the song \"\"I Just Can't Wait to"} +{"qid": "test3541", "pid": "6731091", "query": "who does the voice of nala in the lion king", "answer": "Sally Dworsky", "passage": "\"Nala (The Lion King)\"\nBe King\"\"; the singer was 15 years old at the time. Meanwhile, singer-songwriter Sally Dworsky provides the singing voice of adult Nala, which is heard during the song \"\"Can You Feel the Love Tonight\"\". The lyrics of the film's love theme, \"\"Can You Feel the Love Tonight\"\", were re-written approximately 15 times, according to lyricist Tim Rice, who wrote the song alongside composer Elton John. At one point, the producers wanted the song to be a comical duet performed by supporting characters Timon and Pumbaa, despite the fact that John had originally composed the song with Nala and Simba in"} +{"qid": "test3541", "pid": "6731086", "query": "who does the voice of nala in the lion king", "answer": "Moira Kelly", "passage": "\"Nala (The Lion King)\"\nmain plot of the film. Ella Ceron of \"\"Thought Catalog\"\" observed that \"\"At [Simba's] return, she's not exactly the friendliest little kitten, either ... but is willing to overlook her own hurt ego in the spirit of their friendship. She believes in Simba, and doesn’t understand why he wouldn’t want to fight for his right to rule.\"\" The speaking voice of adult Nala is provided by American actress Moira Kelly. Kelly learned that Disney was auditioning actresses for the role of Nala from her agent. Despite having not been the directors' first choice for the role, Kelly was allowed to"} +{"qid": "test3541", "pid": "895776", "query": "who does the voice of nala in the lion king", "answer": "Moira Kelly", "passage": "\"The Lion King\"\nFor the hyenas, the original intention was to reunite Cheech & Chong, but while Cheech Marin accepted to play Banzai, Tommy Chong was unavailable. Thus his role was changed into a female hyena, Shenzi, who was voiced by Whoopi Goldberg. Matthew Broderick was cast as adult Simba early during production, and during the three years of voice acting only recorded with another actor once, and only discovered Moira Kelly voiced Nala at the premiere. English actors Tim Curry and Malcolm McDowell were originally considered for the role of Scar, however, Curry left the role due to \"\"\"\", and it was"} +{"qid": "test3542", "pid": "8163958", "query": "who sings god gave rock and roll to you", "answer": "the British band Argent", "passage": "\"God Gave Rock and Roll to You\"\nunder the title \"\"Final Solo\"\". \"\"God Gave Rock and Roll to You II\"\" would also be included on the Kiss album \"\"Alive III\"\", which was released in 1993. God Gave Rock and Roll to You \"\"God Gave Rock and Roll to You\"\" is a 1973 song by the British band Argent and covered by both Petra, in 1977 and 1984, and Kiss in 1991, both with modified lyrics. Argent recorded the song in 1971 during the sessions for their album \"\"All Together Now\"\", but it originally did not appear as an album track until 1973's \"\"In Deep\"\", and was released"} +{"qid": "test3542", "pid": "8163953", "query": "who sings god gave rock and roll to you", "answer": "Petra", "passage": "\"God Gave Rock and Roll to You\"\nmore closely followed the Petra version of the song. It was released for the film \"\"Bill & Ted's Bogus Journey\"\". The song has also been covered by Bride featuring rap group DOC and by Midtown. Unrest remade the song as \"\"God Gave Rock & Roll To You III\"\" for their 1992 \"\"Bavarian Mods\"\" EP. \"\"God Gave Rock 'N' Roll to You II\"\" was covered by the American hard rock band Kiss. Kiss first released it as a single in 1991, featured on the soundtrack to the movie \"\"Bill & Ted's Bogus Journey\"\", and was later included on Kiss' 1992 album"} +{"qid": "test3542", "pid": "8163951", "query": "who sings god gave rock and roll to you", "answer": "the British band Argent", "passage": "\"God Gave Rock and Roll to You\"\nGod Gave Rock and Roll to You \"\"God Gave Rock and Roll to You\"\" is a 1973 song by the British band Argent and covered by both Petra, in 1977 and 1984, and Kiss in 1991, both with modified lyrics. Argent recorded the song in 1971 during the sessions for their album \"\"All Together Now\"\", but it originally did not appear as an album track until 1973's \"\"In Deep\"\", and was released as a successful single at that time. The 1997 CD re-release of \"\"All Together Now\"\" has the track included as a bonus. The original lyrics include a reference"} +{"qid": "test3542", "pid": "8163955", "query": "who sings god gave rock and roll to you", "answer": "Kiss", "passage": "\"God Gave Rock and Roll to You\"\nbacking vocals during the a cappella break, singing the repeated line \"\"\"\"...to everyone, he gave a song to be sung\"\"\"\", as well as performing drums during the video for the song. The drum tracks were recorded by Eric Singer, who would become Kiss' full-time drummer, following Carr's death. The single was also the first to feature Gene Simmons and Paul Stanley sharing lead vocals since \"\"I\"\" from 1981's \"\"Music from \"\"The Elder\"\"\"\". The video was filmed in Los Angeles, California, in July 1991 and was directed by Mark Rezyka. The video was edited by Scott C. Wilson. It features the"} +{"qid": "test3542", "pid": "5023170", "query": "who sings god gave rock and roll to you", "answer": "Kiss", "passage": "\"Revenge (Kiss album)\"\nJust Wanna\"\" was only performed during the Revenge Tour, while \"\"Every Time I Look at You\"\" and \"\"Spit\"\" were, along with \"\"Domino\"\", performed during the MTV Unplugged show. In February 1991, Kiss was asked by the producers of the film \"\"Bill & Ted's Bogus Journey\"\" to record the song \"\"God Gave Rock 'n Roll to You II\"\", (a remake of the song \"\"God Gave Rock 'n Roll to You\"\" by the English rock band Argent) which would be produced by Bob Ezrin. The band agreed and reunited with Ezrin after 10 years and the debacle they had with \"\"Music from"} +{"qid": "test3542", "pid": "5023181", "query": "who sings god gave rock and roll to you", "answer": "Kiss", "passage": "\"Revenge (Kiss album)\"\non VH1 Classic, Simmons stated the importance of the song \"\"God Gave Rock 'N' Roll to You II\"\": \"\"It's not just a cover song for a soundtrack, but a testament to Eric Carr, and I think a lot of people don't realize that.\"\" The first single released from the album was \"\"God Gave Rock 'N' Roll to You II\"\", which was a big hit in the UK and Switzerland, reaching #4. It peaked at #21 on the US Mainstream Rock Tracks Chart and #18 on the Australian Singles Charts. \"\"Domino\"\" was the next single from the album, peaking at #26"} +{"qid": "test3542", "pid": "8163952", "query": "who sings god gave rock and roll to you", "answer": "Petra", "passage": "\"God Gave Rock and Roll to You\"\nto British pop singer Cliff Richard, known for his Christianity. The Christian rock band Petra first released a cover version of the song in their 1977 album \"\"Come and Join Us\"\". This version had modified lyrics in the verses from the Argent original, while the chorus remained largely unchanged. Petra then re-recorded and released a somewhat updated version for their 1984 album \"\"Beat the System\"\". In 1989, the British band the Truth released a version. In 1991, the song was notably covered by Kiss under the title \"\"God Gave Rock 'N' Roll to You II\"\". This version's lyrics and arrangement"} +{"qid": "test3542", "pid": "15304499", "query": "who sings god gave rock and roll to you", "answer": "Kiss", "passage": "\"In Deep (Argent album)\"\nIn Deep (Argent album) In Deep is the fourth studio album by Argent, originally released by Epic Records in 1973. It features the original full-length recording of \"\"God Gave Rock and Roll to You\"\", which reached No. 18 in the UK charts (U.S. No. 114) when released in edited form as a single later the same year. It was later remade by Kiss as \"\"God Gave Rock 'n' Roll to You II\"\" for the film \"\"Bill & Ted's Bogus Journey\"\" in 1991. The title, as a phrase, has several meanings, such as being \"\"in (too) deep (to quit)\"\" (that is,"} +{"qid": "test3542", "pid": "4963688", "query": "who sings god gave rock and roll to you", "answer": "Petra", "passage": "\"Argent (band)\"\nGave Rock and Roll to You\"\", written by Russ Ballard, which was covered by Kiss in 1991 under the name \"\"God Gave Rock 'n' Roll to You II\"\", and featured prominently at the end of the film \"\"Bill & Ted's Bogus Journey\"\". The song also became a Contemporary Christian rock anthem and was twice covered by the Christian Rock band Petra, in 1977 (on the album \"\"Come and Join Us\"\") and again in 1984 (on the album \"\"Beat the System\"\"), with new verses. Some of Ballard's compositions became hits when they were covered by other artists, including Rainbow (\"\"Since You"} +{"qid": "test3542", "pid": "8163954", "query": "who sings god gave rock and roll to you", "answer": "Kiss", "passage": "\"God Gave Rock and Roll to You\"\n\"\"Revenge\"\". Though the power ballad covered the original Argent 1973 version \"\"God Gave Rock and Roll to You\"\", it had substantially modified lyrics in the verses, thus the reason behind the slight change in the name of the song. It is one of the few songs from Kiss's non-makeup era to be played live since the band returned to makeup. It was the last Kiss song to feature longtime drummer Eric Carr before his death three months later after it was released as a single. Although he was too ill to play drums on the track, he is featured on"} +{"qid": "test3542", "pid": "5508920", "query": "who sings god gave rock and roll to you", "answer": "Kiss", "passage": "\"Rock and Roll Over\"\nRock and Roll Over Rock and Roll Over is the fifth studio album by American rock band Kiss, released in 1976. It was recorded at the Star Theatre, and in order to get the proper drum sound, Peter Criss recorded the drum tracks in a bathroom, communicating via video-link with the rest of the band. Criss' vocals are featured on the tracks \"\"Baby Driver\"\" and \"\"Hard Luck Woman\"\". Paul Stanley, who originally wanted the latter song to be sung by Rod Stewart, gave it to Criss, after Gene Simmons insisted Criss sing the song instead. Although \"\"Hard Luck Woman\"\" did"} +{"qid": "test3545", "pid": "6683501", "query": "who made the first spanish landing on the mainland of north america", "answer": "Christopher Columbus", "passage": "\"United States\"\n1492, other explorers followed. The first Europeans to arrive in the territory of the modern United States were Spanish conquistadors such as Juan Ponce de León, who made his first visit to Florida in 1513; however, if unincorporated territories are accounted for, then credit would go to Christopher Columbus who landed in Puerto Rico on his 1493 voyage. The Spanish set up the first settlements in Florida and New Mexico such as Saint Augustine and Santa Fe. The French established their own as well along the Mississippi River. Successful English settlement on the eastern coast of North America began with"} +{"qid": "test3545", "pid": "14235461", "query": "who made the first spanish landing on the mainland of north america", "answer": "Christopher Columbus", "passage": "\"Spanish immigration to Cuba\"\nSpanish immigration to Cuba Spanish immigration to Cuba began in 1492, when Christopher Columbus first landed on the island, and continues to the present day. The first sighting of a Spanish boat approaching the island was on 27 or 28 October 1492, probably at Bariay on the eastern point of the island. Columbus, on his first voyage to the Americas, sailed south from what is now The Bahamas to explore the northeast coast of Cuba and the northern coast of Hispaniola. Columbus discovered the island believing it to be a peninsula of the Asian mainland. In 1511, Diego Velázquez de"} +{"qid": "test3545", "pid": "15831693", "query": "who made the first spanish landing on the mainland of north america", "answer": "Christopher Columbus", "passage": "\"Donkeys in the United States\"\nthat includes a feral population), and the spotted ass. The first asses came to the Americas on ships of the second voyage of Christopher Columbus, and were landed at Hispaniola in 1495. In the early days of the Conquest, jackasses were highly valued as sires for mules, which were esteemed as riding animals by the Spanish, and reserved for the nobility. Mules were bred for expeditions to mainland America, with males preferred for pack animals and the females for riding. The first shipment of mules, along with three jacks and twelve jennies, arrived in Mexico from Cuba ten years after"} +{"qid": "test3549", "pid": "10000403", "query": "where was the remake of wake in fright filmed", "answer": "Broken", "passage": "\"Wake in Fright\"\nWake in Fright Wake in Fright (initially released as Outback outside Australia) is a 1971 psychological thriller film directed by Ted Kotcheff, written by Evan Jones and starring Gary Bond, Donald Pleasence, Chips Rafferty, Sylvia Kay and Jack Thompson. Based on Kenneth Cook's 1961 novel of the same name, the film follows a young schoolteacher from Sydney who descends into personal moral degradation after finding himself stranded in a brutal, menacing town in outback Australia. Filmed on location in Broken Hill and Sydney, \"\"Wake in Fright\"\" was an Australian-American co-production between NLT Productions and Westinghouse Broadcasting. Alongside \"\"Walkabout\"\", it was"} +{"qid": "test3549", "pid": "10000415", "query": "where was the remake of wake in fright filmed", "answer": "Broken", "passage": "\"Wake in Fright\"\nattack prior to \"\"Wake in Fright\"\"s release, and the first film with Jack Thompson, the future Australian cinema star, among its cast members. Coincidentally, Rafferty (real name John William Pilbean Goffage) had been born in Broken Hill, the film's stand-in for the Yabba, in 1909. The world premiere of \"\"Wake in Fright\"\" (as \"\"Outback\"\") occurred at the 1971 Cannes Film Festival, held in May. Ted Kotcheff was nominated for a Golden Palm Award. The film opened commercially in France on 22 July 1971, Great Britain on 29 October 1971, Australia during the same month and the United States on 20"} +{"qid": "test3549", "pid": "790935", "query": "where was the remake of wake in fright filmed", "answer": "Broken", "passage": "Two-up\n\"\"fair go\"\", which translates roughly as \"\"play fair\"\". Appropriately, the action in the game on-screen is rapid and without hesitations or false starts. A similar sequence can be found in the 1971 film \"\"Wake in Fright\"\". In the 1940 film \"\"Forty Thousand Horsemen\"\", the three leads, played by Grant Taylor, Chips Rafferty, and Pat Twohill, are introduced to us playing two-up in a market place. The film \"\"Wake in Fright\"\" contains scenes where the main protagonist, a schoolteacher named John Grant, staying in a semi fictional mining town based on Broken Hill for one night, initially makes significant winnings in"} +{"qid": "test3549", "pid": "20032083", "query": "where was the remake of wake in fright filmed", "answer": "Broken", "passage": "\"Wake in Fright (miniseries)\"\nstupid idea\"\". He changed his mind and accepted the role after expressing satisfaction with the script, adding that \"\"Very few people after my generation will ever see that film. That's what made me turn 180 degrees. I thought, 'Why not give people the opportunity to access this story? Why am I being so snooty about it?'\"\" Principal photography for \"\"Wake in Fright\"\" took place in Broken Hill and Sydney. Beginning on March 5, 2017, the shoot lasted five weeks. Network Ten released the first trailer for \"\"Wake in Fright\"\" on July 25, 2017, followed by a second on September 17."} +{"qid": "test3550", "pid": "5124072", "query": "who is the actor who plays king joffrey", "answer": "Jack Gleeson", "passage": "\"Joffrey Baratheon\"\nroyal fool Ser Dontos Hollard, who successfully smuggles Tyrion's wife Sansa out of King's Landing before either of them can be caught and tried for Joffrey's murder. Joffrey is mentioned a few times in the later novels. In January 2007 HBO secured the rights to adapt Martin's series for television. Years later young actor Jack Gleeson was cast as Joffrey Baratheon. Joffrey Baratheon is the Crown Prince of the Seven Kingdoms. He is the eldest of Cersei Lannister's children and heir to the Iron Throne. Evil, arrogant, vicious, and cruel, he has a short temper and believes he can do"} +{"qid": "test3550", "pid": "5124062", "query": "who is the actor who plays king joffrey", "answer": "Jack Gleeson", "passage": "\"Joffrey Baratheon\"\nJoffrey Baratheon Joffrey Baratheon is a fictional character in the \"\"A Song of Ice and Fire\"\" series of epic fantasy novels by American author George R. R. Martin, and its television adaptation \"\"Game of Thrones\"\". Introduced in 1996's \"\"A Game of Thrones\"\", Joffrey is the eldest son of Cersei Lannister from the kingdom of Westeros. He subsequently appeared in Martin's \"\"A Clash of Kings\"\" (1998) and \"\"A Storm of Swords\"\" (2000). Joffrey is portrayed by Irish actor Jack Gleeson in the HBO television adaptation. Joffrey Baratheon is not a point of view character in the novels, so his actions are"} +{"qid": "test3550", "pid": "12800948", "query": "who is the actor who plays king joffrey", "answer": "Jack Gleeson", "passage": "\"Game of Thrones\"\nKing's Landing, the capital, Ned's friend King Robert Baratheon (Mark Addy) shares a loveless marriage with Cersei Lannister (Lena Headey), who has taken her twin brother, the \"\"Kingslayer\"\" Ser Jaime Lannister (Nikolaj Coster-Waldau), as her lover. She loathes her younger brother, the dwarf Tyrion Lannister (Peter Dinklage), who is attended by his mistress Shae (Sibel Kekilli) and the sellsword Bronn (Jerome Flynn). Cersei's father is Lord Tywin Lannister (Charles Dance). Cersei also has two young sons: Joffrey (Jack Gleeson) and Tommen (Dean-Charles Chapman). Joffrey is guarded by the scar-faced warrior, Sandor \"\"the Hound\"\" Clegane (Rory McCann). The king's Small Council"} +{"qid": "test3553", "pid": "6335893", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "\"Turlough (lake)\"\nTurlough (lake) A turlough, or turlach, is a type of disappearing lake found mostly in limestone areas of Ireland, west of the River Shannon. The name comes from the Irish \"\"tur\"\", meaning \"\"dry\"\", with the suffix \"\"-lach\"\", meaning \"\"a place\"\" (in an abstract sense). The \"\"-lach\"\" suffix is often mistakenly spelled and/or thought to refer to the word \"\"loch\"\", the Irish, Scottish Gaelic and Scots word for \"\"lake\"\". The landforms are found in Irish karst (exposed limestone) areas. The features are almost unique to Ireland, although there is one example in Great Britain, at Cernydd Carmel near Llandeilo. They are"} +{"qid": "test3553", "pid": "226659", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "Karst\nareas may disappear underground a number of times and spring up again in different places, usually under a different name (like Ljubljanica, the river of seven names). An example of this is the Popo Agie River in Fremont County, Wyoming. At a site simply named \"\"The Sinks\"\" in Sinks Canyon State Park, the river flows into a cave in a formation known as the Madison Limestone and then rises again down the canyon in a placid pool. A turlough is a unique type of seasonal lake found in Irish karst areas which are formed through the annual welling-up of water"} +{"qid": "test3553", "pid": "6335896", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "\"Turlough (lake)\"\nBay, can be seen to flood and empty again twice every 24 hours. Most turloughs flood to a depth of about but some are much deeper: for example, some of the turloughs near Gort reach about deep in midwinter. Turloughs are variable in size: the largest turlough in Ireland, Rahasane turlough, which lies to the west of Craughwell in County Galway, covers about . All of the turloughs are found in limestone areas. This is because limestone can be dissolved away by rainwater, which becomes mildly acidic by picking up carbon dioxide as it passes through the atmosphere. The cracks"} +{"qid": "test3553", "pid": "3037550", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "\"The Burren\"\nsurface streams locally possible once more. Today, the uplands' highest point is on the hill Slieve Elva, whose shale cover rises up to above sea level. In addition to the limestone pavement, major landscape types, providing the habitats for the flora and fauna, include limestone heath, dry calcareous grasslands, calcareous (calcifying or petrifying) springs, the intermittent water bodies called turloughs, bogs, cladium fens, lakes, wet grasslands, scrub and light woodland, and neutral, and farm-improved, grasslands. The Burren is renowned for its remarkable assemblage of plants and animals, and over 70% of Ireland's species of flowers are found there. The region"} +{"qid": "test3553", "pid": "3812179", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "\"Coole Park\"\nBird Area, Coole Park and Garryland complex. Coole Park Coole Park is a nature reserve of approximately located a few miles west of Gort, County Galway, Ireland. It is managed by the Irish National Parks & Wildlife Service, part of the Department of Arts, Heritage and the Gaeltacht. The park is in a low–lying karstic limestone area characterised by seasonal lakes, known as turloughs, which are almost unique to Ireland. It has extensive woodlands. There are 6 kilometres of signposted nature trails plus a formal late 18th century walled garden. The park was formerly the estate of the Gregory family."} +{"qid": "test3553", "pid": "6335908", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "\"Turlough (lake)\"\nconsequences, because the unique flora and fauna of the turlough cannot survive in the absence of seasonal flooding. Even for farmers, the benefits are not always as great as anticipated; the stopping of the annual limy silt deposition means that the soil may become impoverished and fertilisers must be used. Also, the poorly developed and delicate soil may not be able to withstand the presence of animals through the winter. Article originally taken from an information sheet on turloughs available at ENFO, St. Andrew Street, Dublin 2,Ireland. Turlough (lake) A turlough, or turlach, is a type of disappearing lake found"} +{"qid": "test3553", "pid": "3812173", "query": "type of disappearing lake found in limestone areas in the west of ireland", "answer": "turlough", "passage": "\"Coole Park\"\nCoole Park Coole Park is a nature reserve of approximately located a few miles west of Gort, County Galway, Ireland. It is managed by the Irish National Parks & Wildlife Service, part of the Department of Arts, Heritage and the Gaeltacht. The park is in a low–lying karstic limestone area characterised by seasonal lakes, known as turloughs, which are almost unique to Ireland. It has extensive woodlands. There are 6 kilometres of signposted nature trails plus a formal late 18th century walled garden. The park was formerly the estate of the Gregory family. Coole House was built in the late"} +{"qid": "test3555", "pid": "11116478", "query": "in which year was led zepplin refused entry into singapore because the band members had long hair", "answer": "1972", "passage": "\"Led Zeppelin Australasian Tour 1972\"\nLed Zeppelin Australasian Tour 1972 Led Zeppelin's 1972 Australasian Tour was the only concert tour of Australia and New Zealand by the English rock band. The tour commenced on 16 February and concluded on 29 February 1972. (Led Zeppelin's guitarist Jimmy Page had earlier toured Australia with The Yardbirds in January 1967). The original plan for this tour was for the group to stop off en route at Singapore for a concert on 14 February, but the local authorities refused their entry due to local laws banning males from wearing long hair. Led Zeppelin received generally good press coverage for"} +{"qid": "test3555", "pid": "11116481", "query": "in which year was led zepplin refused entry into singapore because the band members had long hair", "answer": "1972", "passage": "\"Led Zeppelin Australasian Tour 1972\"\nduring the tour. Led Zeppelin Australasian Tour 1972 Led Zeppelin's 1972 Australasian Tour was the only concert tour of Australia and New Zealand by the English rock band. The tour commenced on 16 February and concluded on 29 February 1972. (Led Zeppelin's guitarist Jimmy Page had earlier toured Australia with The Yardbirds in January 1967). The original plan for this tour was for the group to stop off en route at Singapore for a concert on 14 February, but the local authorities refused their entry due to local laws banning males from wearing long hair. Led Zeppelin received generally good"} +{"qid": "test3555", "pid": "16857387", "query": "in which year was led zepplin refused entry into singapore because the band members had long hair", "answer": "1972", "passage": "\"1972 Carlton Football Club season\"\nsoccer match in Athens at the time, and the Greek crowd reportedly supported Carlton because its guernsey matched the Greek national colours of blue and white. The final match in Singapore was played on a temporary oval field, which was set up on three adjacent soccer pitches. The crowd of 8,500 was mostly a mixture of locals and Australian servicemen based in Singapore. The oppressively humid weather was the most significant difficulty with the match, which was won by the All-Stars, 11.11 (77) to 9.11 (65). Additionally, laws in Singapore at the time prevented men from wearing long hair, so"} +{"qid": "test3556", "pid": "699936", "query": "when were the words under god added to the pledge", "answer": "on Flag Day in 1954", "passage": "\"Pledge of Allegiance\"\nalteration of its wording came on Flag Day in 1954, when the words \"\"under God\"\" were added. Congressional sessions open with the recital of the Pledge, as do many government meetings at local levels, and meetings held by many private organizations. All states except Hawaii, Iowa, Vermont and Wyoming require a regularly scheduled recitation of the pledge in the public schools, although the Supreme Court has ruled in \"\"West Virginia State Board of Education v. Barnette\"\" that students cannot be compelled to recite the Pledge, nor can they be punished for not doing so. In a number of states, state"} +{"qid": "test3556", "pid": "6952327", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Criticism of the Pledge of Allegiance\"\npledge violates any part of the Establishment Clause.\"\" Derek Gaubatz, Director of Litigation for the Becket Fund, said his group would appeal the decision \"\"if necessary to the Supreme Court to get that ruling reversed to secure the constitutionality of the pledge once and for all\"\". The words \"\"under God\"\" were added to the Pledge on June 14, 1954 when then U.S. President Dwight D. Eisenhower signed a bill into law. At the time, Eisenhower stated that \"\"From this day forward, the millions of our school children will daily proclaim in every city and town, every village and rural schoolhouse,"} +{"qid": "test3556", "pid": "1450101", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Separation of church and state\"\nreligion from American public life. Critics of the American Pledge of Allegiance have argued that the use of the phrase \"\"under God\"\" violates the separation of church and state. While the pledge was created by Francis Bellamy in 1891, in 1954, the Knights of Columbus, a Catholic organization, campaigned with other groups to have the words \"\"under God\"\" added to the pledge. On June 14, 1954, President Dwight Eisenhower signed the bill to make the addition. Since then, critics have challenged the existence of the phrase in the Pledge. In 2004, an atheist man challenged a Californian law which required"} +{"qid": "test3556", "pid": "12173392", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Lon Burnam\"\nflag by adding the words \"\"one state under God\"\" in order to acknowledge our \"\"Judeo-Christian heritage\"\", Burnam challenged her, noting the many denominations present in Texas that do not align with that heritage. Representative Riddle replied, \"\"The purpose of this bill is to have our state pledge mirror our national pledge. Our national pledge says, 'one nation under God.' [added 1954] I think it is altogether right and appropriate...\"\" HB1034 passed May 4, 2007. Burnam voted against the 2013 legislation to ban abortion beyond the twentieth week of gestation. He opposed companion legislation to increase the medical and health requirements"} +{"qid": "test3556", "pid": "2426432", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Jim McDermott\"\ncommunism scare, Congress had passed a bill, which was signed into law, to add the words \"\"under God.\"\" McDermott later stated that he had \"\"reverted to the pledge as it was written and taught in the public schools throughout my childhood\"\", as the phrase \"\"under God\"\" was added in 1954, the year in which McDermott graduated from high school; he turned 18 in late December of that year, after graduating. In December 2004, the House Ethics Committee investigated McDermott over the leaking of an illegally recorded telephone conversation during a 1997 committee investigation of then-Speaker Newt Gingrich. In the conversation,"} +{"qid": "test3556", "pid": "6952336", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Criticism of the Pledge of Allegiance\"\nGod\"\" is merely a ceremonial reference to history and not an affirmation of religious faith. Opponents contend that this contradicts the 1954 House Report of the legislators who inserted the \"\"under God\"\" phrase into the Pledge, which stated that the words \"\"under God\"\" served to \"\"acknowledge the dependence of our people and our Government upon the moral directions of the Creator.\"\" 154 U.S.C.A.A.N 2339, 2340. The plaintiff, Michael Newdow, an atheist, took issue with the phrase \"\"In God We Trust\"\" on the coins of American currency, believing that the phrase was a state-sponsored statement of religious faith—illegal under the separation"} +{"qid": "test3556", "pid": "9808924", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Susan Jacoby\"\npeople tend to believe. She has cited as an example the pledge of allegiance, only written in 1892 and which did not include the expression 'Under God' until 1954. These words were added with the sole purpose of distinguishing the American government from the Soviet one, which was considered atheist. The influence of secularism in the Civil Rights Movement in the United States is another important subject for Jacoby. She believes that accepting the importance of secularism in the civil rights movement does not deny the role religion played in it, and while she has admitted that \"\"the driving force"} +{"qid": "test3556", "pid": "6191298", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Eureka (word)\"\nthe miner at work\"\". In 1957 the state legislature attempted to make \"\"In God We Trust\"\" the state motto as part of the same post WWII anti-Communist movement that successfully added the term \"\"under God\"\" to the American Pledge of Allegiance in 1954, but this attempt did not succeed and \"\"Eureka\"\" was made the official motto in 1963. The city of Eureka, California, founded in 1850, uses the California State Seal as its official seal. Eureka is a considerable distance from Sutter's Mill, but was the jumping off point of a smaller gold rush in nearby Trinity County, California in"} +{"qid": "test3556", "pid": "880798", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Francis Bellamy\"\nthe pledge, see Pledge of Allegiance\"\"). In 1954, in response to the perceived threat of secular Communism, President Eisenhower encouraged Congress to add the words \"\"under God,\"\" creating the 31-word pledge that is recited today. Bellamy described his thoughts as crafted the language of the pledge: Bellamy \"\"viewed his Pledge as an 'inoculation' that would protect immigrants and native-born but insufficiently patriotic Americans from the 'virus' of radicalism and subversion.\"\" Bellamy was a Christian socialist who \"\"championed 'the rights of working people and the equal distribution of economic resources, which he believed was inherent in the teachings of Jesus.'\"\" In"} +{"qid": "test3556", "pid": "11416409", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"United States national motto\"\ndifferentiate the United States from atheistic communism. Earlier, a 1954 act added the words \"\"under God\"\" to the Pledge of Allegiance. Some states also adopted mottos with religious overtones during this time, for example Ohio's \"\"With God, all things are possible\"\". The constitutionality of the modern national motto has been questioned with relationship to the separation of church and state outlined in the First Amendment. In 1970, in \"\"Aronow v. United States\"\", the United States Court of Appeals for the Ninth Circuit ruled that the motto does not violate the First Amendment to the Constitution. The United States Supreme Court"} +{"qid": "test3556", "pid": "699954", "query": "when were the words under god added to the pledge", "answer": "1954", "passage": "\"Pledge of Allegiance\"\npolicy for the entire nation. These attempts were eventually a success. At the suggestion of a correspondent, Representative Louis C. Rabaut (D-Mich.), of Michigan sponsored a resolution to add the words \"\"under God\"\" to the Pledge in 1953. Before February 1954, no endeavor to get the pledge officially amended had succeeded. The final successful push came from George MacPherson Docherty. Some American presidents honored Lincoln's birthday by attending services at the church Lincoln attended, New York Avenue Presbyterian Church by sitting in Lincoln's pew on the Sunday nearest February 12. On February 7, 1954, with President Eisenhower sitting in Lincoln's"} +{"qid": "test3557", "pid": "11884373", "query": "what was vietnam called in the years before world war 2", "answer": "French Indochina", "passage": "\"CIA activities in Vietnam\"\nMarch 20. Headquarters decided to work on the responsibilities with the Communists and to gain support for the refugees that were moving away from the Communists. \"\"Air America\"\" CIA activities in Vietnam CIA activities in Vietnam were operations conducted by the Central Intelligence Agency in Indochina and then Vietnam from the 1950s to the late 1960s, before and during the Vietnam War. Historically, Vietnam became a part of French Indochina in 1887. Although Vietnam became independent after World War II, the French continued to rule the country until 1954. Also, the year of 1954 was when Ho Chi Minh was"} +{"qid": "test3557", "pid": "11884280", "query": "what was vietnam called in the years before world war 2", "answer": "French Indochina", "passage": "\"CIA activities in Vietnam\"\nCIA activities in Vietnam CIA activities in Vietnam were operations conducted by the Central Intelligence Agency in Indochina and then Vietnam from the 1950s to the late 1960s, before and during the Vietnam War. Historically, Vietnam became a part of French Indochina in 1887. Although Vietnam became independent after World War II, the French continued to rule the country until 1954. Also, the year of 1954 was when Ho Chi Minh was in power and the country started to be separated into two parts. While the north was controlled by the communist forces and under Ho Chi Minh's leadership, the"} +{"qid": "test3558", "pid": "3193646", "query": "who is directly elected according to the constitution", "answer": "senators", "passage": "\"Senate of Chile\"\n-the 20 current senators whose seats expire in March 2022. Plus 7 new senators, who will be elected in 2022 Senate of Chile The Senate of the Republic of Chile is the upper house of Chile's bicameral National Congress, as established in the current Constitution of Chile. According to the present Constitution of Chile, the Senate is composed of thirty-eight directly elected senators, chosen by universal popular suffrage vote in 19 senatorial circumscriptions. These serve eight-year terms, with half of them being replaced every fourth year. They must be eligible to vote, have completed secondary school, or its equivalent, and"} +{"qid": "test3558", "pid": "3193642", "query": "who is directly elected according to the constitution", "answer": "senators", "passage": "\"Senate of Chile\"\nof Valparaíso that replaced the old National Congress located in downtown Santiago, the nation's capital. Amendments to the Constitution, approved by a joint session of Congress on August 16, 2005, eliminated non-directly elected senators from March 11, 2006, the day 20 newly elected senators were sworn in, leaving the total number of senators at 38, all directly elected. Previously, according to the Constitution of 1980, \"\"designated\"\" or \"\"institutional\"\" senators were appointed to the chamber. Two former heads of state, Eduardo Frei Ruiz-Tagle and Augusto Pinochet, were installed as senators for life. Pinochet later resigned from this position and Frei lost"} +{"qid": "test3558", "pid": "428884", "query": "who is directly elected according to the constitution", "answer": "senators", "passage": "\"Seventeenth Amendment to the United States Constitution\"\nthat renowned senators could not have been elected directly, and that since a large number of senators had experience in the House, which was already directly elected, a constitutional amendment would be pointless. The reform was considered by opponents to threaten the rights and independence of the states, who were \"\"sovereign, entitled...to have a separate branch of Congress...to which they could send their ambassadors\"\". This was countered by the argument that a change in the mode in which senators were elected would not change their responsibilities. The Senate freshman class of 1910 brought new hope to the reformers. Fourteen of"} +{"qid": "test3559", "pid": "7654688", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Jason Raize\"\nthe age of 19, Raize succeeded Dennis DeYoung of Styx in the national tour of \"\"Jesus Christ Superstar\"\", starring Ted Neely and Carl Anderson. Next, he toured with \"\"Miss Saigon\"\", and had been cast as a swing in a national tour of \"\"The King and I\"\" starring Hayley Mills when he decided to audition for Julie Taymor's upcoming Broadway production of \"\"The Lion King\"\" (1997). Winning the role of \"\"Simba\"\" in \"\"The Lion King\"\"'s original Broadway cast, Raize became part of one of the biggest Broadway hits of the 1990s. During his three years with \"\"The Lion King\"\", Raize performed"} +{"qid": "test3559", "pid": "895828", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"The Lion King\"\nin October 1997 at the New Amsterdam Theatre. \"\"The Lion King\"\" musical was directed by Julie Taymor and featured songs from both the movie and \"\"Rhythm of the Pride Lands\"\", along with three new compositions by Elton John and Tim Rice. Mark Mancina did the musical arrangements and new orchestral tracks. The musical became one of the most successful in Broadway history, winning six Tony Awards including Best Musical, and despite moving to the Minskoff Theatre in 2006, is still running to this day in New York, becoming the third longest-running show and highest grossing Broadway production in history. The"} +{"qid": "test3559", "pid": "8017642", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Irene Mecchi\"\nIrene Mecchi Irene Mecchi (born September 21, 1949) is an American writer for television, movies, newspapers, and Broadway. Originally from San Francisco, she started her work with Disney in March 1992, when she wrote \"\"Recycle Rex\"\", an animated short film which won the 1994 Environmental Media Award. Irene has worked on Herb Caen's books, and is the co-screenwriter of Disney animated movies such as \"\"The Lion King\"\", \"\"The Hunchback of Notre Dame\"\", \"\"Hercules\"\", and \"\"Fantasia 2000\"\". With co-author Roger Allers, she received a 1998 Tony nomination for writing the book for \"\"The Lion King\"\". Irene wrote the teleplay for \"\"Annie\"\","} +{"qid": "test3559", "pid": "8017643", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Irene Mecchi\"\nwhich aired on ABC in 1999. Irene Mecchi Irene Mecchi (born September 21, 1949) is an American writer for television, movies, newspapers, and Broadway. Originally from San Francisco, she started her work with Disney in March 1992, when she wrote \"\"Recycle Rex\"\", an animated short film which won the 1994 Environmental Media Award. Irene has worked on Herb Caen's books, and is the co-screenwriter of Disney animated movies such as \"\"The Lion King\"\", \"\"The Hunchback of Notre Dame\"\", \"\"Hercules\"\", and \"\"Fantasia 2000\"\". With co-author Roger Allers, she received a 1998 Tony nomination for writing the book for \"\"The Lion King\"\"."} +{"qid": "test3559", "pid": "9946982", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"The Hunchback of Notre Dame (musical)\"\nname. It received generally positive reviews and did reasonably well at the box office. Disney on Broadway, the stage play arm of the Disney Corporation, had staged successful versions of \"\"Beauty and the Beast\"\" in 1994 and \"\"The Lion King\"\" in 1997. Disney wanted to move \"\"The Lion King\"\" to Berlin. For a long time, Berlin was in talks to stage The Lion King, but after those negotiations fell through, Disney offered this property instead. This project, announced by Stella Entertainment on March 18, 1998, saw the stage musical-producing market leader of Germany depart from its tradition of only importing"} +{"qid": "test3559", "pid": "9798995", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Tom Alan Robbins\"\nTom Alan Robbins Tom Alan Robbins is an American actor. He recently returned to the role of Pumbaa in \"\"The Lion King\"\", a role he originated at its Broadway opening. Before returning to \"\"The Lion King\"\", he appeared in the Broadway production of \"\"Is He Dead?\"\", a comedy written by Mark Twain, as Hans von Bismarck, a role which he originated in 2007. He has been on television shows including \"\"Seinfeld\"\", \"\"NYPD Blue\"\", \"\"Law & Order\"\", \"\"The Good Wife\"\", and \"\"Baby Talk\"\". Robbins, a native of Ohio, has appeared in the original Broadway casts of \"\"The Lion King\"\", \"\"The Threepenny"} +{"qid": "test3559", "pid": "15197185", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Scar (The Lion King)\"\nto blame his crimes on the hyenas, unaware that they are listening nearby. Simba ignores Scar and gives him one last chance to run away and never return. When Simba's back is turned, Scar attacks him and they fight. Simba overpowers Scar and throws him over the cliff ledge to the base of Pride Rock. Scar survives the fall, but is attacked and killed by the vengeful hyenas. The success of \"\"The Lion King \"\"spawned a Broadway musical based on the film, directed by Julie Taymor with a book written by \"\"The Lion King \"\"co-director Roger Allers and screenwriter Irene"} +{"qid": "test3559", "pid": "20290387", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Christian Hebel\"\n12 years on Broadway where they won 3 Tony Awards and received a Grammy Award. On July 12, 2018, with its 6,138th performance, it surpassed \"\"A Chorus Line\"\" to become Broadway's sixth-longest running show. In March 2016, Wicked surpassed $1 billion in total Broadway revenue, joining both \"\"The Phantom of the Opera\"\" and \"\"The Lion King\"\" as the only Broadway shows to do so. In July 2017, Wicked surpassed \"\"The Phantom of the Opera\"\" as Broadway's second-highest grossing show, trailing only \"\"The Lion King\"\". Hebel originated and helped create the violin and concertmaster role in Craig Lucas and Adam Guettel's"} +{"qid": "test3559", "pid": "6731109", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Nala (The Lion King)\"\nLion King\"\", which is expected to be released in July 19, 2019. The same day Shahadi Wright Joseph was cast as young Nala in the film. In the Broadway musical adaptation of \"\"The Lion King\"\", the role of Nala was originated by Trinidadian-American singer Heather Headley. Her Broadway debut, at first auditioning for the role proved a challenge for the singer due to her \"\"Ragtime\"\" contract, which her agent was eventually successful in getting her released from. Director Julie Taymor felt that Nala's journey in the film was underdeveloped and among the story's weaker elements, and thus decided to \"\"strengthen\"\""} +{"qid": "test3559", "pid": "6528873", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"The Lion King (musical)\"\nDisney Company, a recording of the songs as heard in the stage musical. Most of the tracks were composed by African composer Lebo M. and focused primarily on the African influences of the film's original music, with most songs being sung either partially or entirely in various African languages. Rafiki's chants in \"\"Rafiki Mourns\"\" were written by Tsidii Le Loka, who originated the role on Broadway. The original Broadway show included: The Lion King (musical) The Lion King is a musical based on the 1994 Walt Disney Animation Studios' animated feature film of the same name with music by Elton"} +{"qid": "test3559", "pid": "18601543", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Hamilton (musical)\"\nrepairs prior to \"\"Hamilton\"\"'s 2019 bow. \"\"Hamilton\"\"s off-Broadway engagement at The Public Theater was sold out, and when the musical opened on Broadway, it had a multimillion-dollar advance in ticket sales, reportedly taking in $30 million before its official opening. By September 2015, the show was sold out for most of its Broadway engagement. It was the second-highest-grossing show on Broadway for the Labor Day week ending September 6, 2015 (behind only \"\"The Lion King\"\"). \"\"Hamilton\"\" set a Broadway box office record for the most money grossed in a single week in New York City in late November 2016, when"} +{"qid": "test3559", "pid": "5282236", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Beauty and the Beast (musical)\"\nDisney's next musical venture, \"\"The Little Mermaid\"\". With Disney set to open its Broadway version of \"\"The Little Mermaid\"\" on November 3, 2007, at the time, it was believed that having two Disney princess films on Broadway at the same time would divide audiences and cause competition between the two shows. At this point, Disney also had three other shows running at the same time: \"\"The Lion King\"\", \"\"Tarzan\"\", and \"\"Mary Poppins\"\". It was reported that Disney Theatrical planned to revive the show on Broadway for the 2008 holiday season, but Disney did not pursue this. The West End production"} +{"qid": "test3559", "pid": "18960397", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Christopher Jackson (actor)\"\nYork City. Jackson began his career in 1995 starring in the Off-Broadway musical \"\"Time and the Wind\"\" by composer Galt MacDermot of \"\"Hair\"\" fame. He made his Broadway debut in 1997 as an ensemble member and the understudy for Simba in the Original Broadway Cast of \"\"The Lion King\"\". He later took over the role of Simba in 2000. He then did work in the theater scenes in Chicago and Minneapolis–Saint Paul, notably earning a BATC Award nomination for Best Actor for \"\"Beggar's Holiday\"\" in 2004 for and winning a Joseph Jefferson Award (Chicago's equivalent to the Tony Awards) in"} +{"qid": "test3559", "pid": "272880", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Musical theatre\"\nfor $20 front row tickets, and some saw the show dozens of times. Other shows on Broadway followed \"\"Rent\"\"'s lead by offering heavily discounted day-of-performance or standing-room tickets, although often the discounts are offered only to students. The 1990s also saw the influence of large corporations on the production of musicals. The most important has been Disney Theatrical Productions, which began adapting some of Disney's animated film musicals for the stage, starting with \"\"Beauty and the Beast\"\" (1994), \"\"The Lion King\"\" (1997) and \"\"Aida\"\" (2000), the latter two with music by Elton John. \"\"The Lion King\"\" is the highest-grossing musical"} +{"qid": "test3559", "pid": "16204053", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"The Legend of the Lion King\"\nThe Legend of the Lion King The Legend of The Lion King is the name of former attractions hosted at both Magic Kingdom in Walt Disney World in Florida and in Disneyland Paris. Although both shows were inspired by the hit Disney film \"\"The Lion King\"\" they took on two different performance styles. The Legend of the Lion King Show at Magic Kingdom in Walt Disney World Resort was a stage performance retelling the story of the film using life size puppets, while the show at Disneyland Paris was a Broadway inspired performance that used human actors and featured popular"} +{"qid": "test3559", "pid": "9950829", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Danny Rutigliano\"\nDanny Rutigliano Danny Rutigliano is an American actor. He appeared on Broadway in \"\"The Best Little Whorehouse Goes Public\"\" in 1994. He has appeared in \"\"The Lion King\"\" on Broadway, portraying the character Timon; he left the show in April 2010. A member of the original cast as the understudy, he also originated the role of Timon in the L.A. Production of \"\"The Lion King\"\", for which he received the Ovation Award for Best Featured Actor. He appeared in the Broadway revival of \"\"Born Yesterday\"\" in 2011. He starred in Cirque du Soleil's \"\"Banana Shpeel\"\" in New York City in"} +{"qid": "test3559", "pid": "4837290", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Wicked (musical)\"\nsurpassed $1 billion in total Broadway revenue, joining both \"\"The Phantom of the Opera\"\" and \"\"The Lion King\"\" as the only Broadway shows to do so. In July 2017, \"\"Wicked\"\" surpassed \"\"The Phantom of the Opera\"\" as Broadway's second-highest grossing show, trailing only \"\"The Lion King\"\". Composer and lyricist Stephen Schwartz discovered writer Gregory Maguire's 1995 novel \"\"Wicked: The Life and Times of the Wicked Witch of the West\"\" while on vacation, and saw its potential for a dramatic adaptation. Maguire, however, had released the rights to Universal Pictures, which had planned to develop a live-action feature film. In 1998,"} +{"qid": "test3559", "pid": "9042715", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Hakuna Matata (song)\"\nYou\"\" as a B-side and was ultimately used in the Broadway theatrical version of \"\"The Lion King\"\". The song was based on an earlier song written early on in the production stage called \"\"Warthog Rhapsody\"\". Although the two songs shared the same message and position in the film, when Elton and Tim began to work on the music the song was completely rewritten and it eventually evolved into \"\"Hakuna Matata\"\". \"\"Warthog Rhapsody\"\" was eventually re-produced and released on \"\"Rhythm of the Pride Lands\"\". The melody of Warthog Rhaspody was used in \"\"The Lion King 1½\"\" for the song \"\"That's All"} +{"qid": "test3559", "pid": "10728936", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Margo Lion\"\nMargo Lion Margo Lion is a producer for plays and musicals both on Broadway and off-Broadway. She is known for her role in producing the stage and screen hit \"\"Hairspray\"\". Combined, the works Lion produced have won 20 Tony Awards and a Pulitzer Prize. Margo Lion is from Baltimore, Maryland and is of German-Jewish heritage. She started her producing career with Lyn Austin at The Music-Theater Group/Lenox Arts Center. Her first commercial production was \"\"How I Got That Story\"\" in 1982. Later off-Broadway productions included the 1987 version of Martha Clarke's \"\"The Garden of Earthly Delights\"\", \"\"Frankie and Johnny in"} +{"qid": "test3559", "pid": "14153154", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"The Lion King (franchise)\"\nwith Rafiki who gives him wisdom by narrating the past tales of the Pridelands. The story of the books was completely ignored by Disney in \"\"The Lion King\"\" sequels and isn't considered canon. \"\"The Legend of the Lion King\"\" was an underground stage performance retelling the story of the film using fully articulated puppets in Magic Kingdom's Fantasyland. This attraction ran from June 1994 to February 2002. A Broadway-caliber short-form stage musical named \"\"Festival of the Lion King\"\" is performed live in Disney's Animal Kingdom at Walt Disney World, Florida and in Adventureland at Hong Kong Disneyland. It uses the"} +{"qid": "test3559", "pid": "18960393", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Christopher Jackson (actor)\"\nChristopher Jackson (actor) Christopher Neal Jackson (born September 30, 1975) is an American actor, singer, musician, and composer. He began his career in 1995 starring in the Off-Broadway musical \"\"Time and the Wind\"\" by composer Galt MacDermot when he was just 20 years old. He made his Broadway debut in 1997 as an ensemble member in the Original Broadway Cast of Disney's \"\"The Lion King\"\". He remained with the show for several years, ultimately taking over the role of Simba. He went on to perform leading roles in several more Broadway musicals and plays, including \"\"After Midnight\"\", \"\"Bronx Bombers\"\", \"\"Holler"} +{"qid": "test3559", "pid": "9962129", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Nathaniel Stampley\"\nNathaniel Stampley Nathaniel Stampley is an African-American actor. He has performed in the West End, on Broadway, on tours, and regionally. On Broadway, he was a replacement for Old Deuteronomy in the revival of \"\"CATS\"\", he played Mister in the revival of \"\"The Color Purple\"\", Mufasa in \"\"The Lion King\"\", and was in the opening night cast of original production of\"\"The Color Purple\"\" as Buster, Chief, an ensemble member, and an understudy for Harpo. He also played Mufasa in \"\"The Lion King\"\" in the West End and on the national tour. He was in the national tour of Ragtime. Regionally,"} +{"qid": "test3559", "pid": "7654686", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Jason Raize\"\nJason Raize Jason Raize Rothenberg (July 20, 1975 – February 3, 2004), known professionally as Jason Raize, was an American actor, singer and former Goodwill Ambassador for the United Nations Environment Programme. He was best known for his roles as the adult Simba in the Broadway stage musical version of \"\"The Lion King\"\" and the voice of Denahi in the animated Disney film \"\"Brother Bear\"\". Born Jason Raize Rothenberg, in Oneonta, New York, he grew up in the Catskills in upstate New York and started acting as a teenager, when his stepmother enrolled him in a summer Shakespeare workshop. In"} +{"qid": "test3559", "pid": "12870693", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Lana Gordon\"\nsame year, Gordon played the role of Dionne in the European tour of the musical \"\"Hair\"\". In 1997, Gordon debuted on Broadway as an ensemble cast member in Lion King, a role she played for 2½ years, one of her roles was a cheetah. Following this, she joined the cast of Broadway musical Jesus Christ Superstar. After Jesus Christ Superstar she was asked to come to The Lion King to play the role of Shenzi. In 2003 she took on the role of Anita in West Side Story, and toured Europe numerous of times over her 5 years in the"} +{"qid": "test3559", "pid": "3368194", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Neal S. Blaisdell Center\"\nlate May and June. The arena also hosts the WWE's flagship shows, \"\"Raw\"\" and \"\"SmackDown LIVE\"\" for two nights, starts from June 25 to 26, 2018. With a capacity of 2,158 seats, the Neal S. Blaisdell Concert Hall is the home of the Honolulu Symphony and the Hawaii Opera Theatre. Broadway productions such as \"\"The Phantom of the Opera\"\", \"\"Les Misérables\"\", \"\"Rent\"\", \"\"Miss Saigon\"\", \"\"Chicago\"\", \"\"Cats\"\", and other national touring shows have performed at the concert hall. In the fall and early winter of 2007 the concert hall was host to the Broadway musical \"\"The Lion King\"\", a booking which"} +{"qid": "test3559", "pid": "19004883", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Titus Andromedon\"\nVonda Jeanne Brooks. The thought of the wedding night was too much for him and he fled the reception without saying goodbye, travelling to New York to begin a new life under a new name, Titus Andromedon. Titus is an aspiring Broadway performer. He auditioned for \"\"The Lion King\"\" on Broadway at least 20 times and never got in because he did not come off as straight. He tried to put on his own production, but only got one audience member, who had come to show him copyright laws. His rival is Coriolanus Burt (James Monroe Iglehart), who beat him"} +{"qid": "test3559", "pid": "14153132", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"The Lion King (franchise)\"\nThe Lion King (franchise) The Lion King is a Disney media franchise comprising a film series and additional media. The success of the original 1994 American animated feature, \"\"The Lion King\"\", directed by Roger Allers and Rob Minkoff, led to two direct-to-video sequel films, a television film sequel, two spin-off television series, three educational shorts, several video games, merchandise, and the third-longest-running musical in Broadway history, which garnered six Tony Awards including Best Musical. The franchise as a whole has EGOT-ed, meaning it has won the four biggest awards of American show business. The franchise mainly revolves about a pride"} +{"qid": "test3559", "pid": "7366286", "query": "when did the lion king start on broadway", "answer": "Broadway", "passage": "\"Minskoff Theatre\"\nin MTV's studios and in Los Angeles. The program returned to Los Angeles for the 2008–09 season. \"\"The Lion King\"\" achieved the box office record for the Minskoff Theatre. The production cleared $2,837,158 over eight performances, for the week ending December 29, 2013. Minskoff Theatre The Minskoff Theatre is a Broadway theatre, located at 1515 Broadway in Midtown Manhattan. It is currently home to the musical \"\"The Lion King\"\", based on the Disney animated film of the same name. The 1,621-seat venue, designed by architects Kahn and Jacobs, is on the third floor of One Astor Plaza, an office tower"} +{"qid": "test3560", "pid": "2351085", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Wizard of Oz (character)\"\nWizard of Oz (character) Oscar Zoroaster Phadrig Isaac Norman Henkle Emmannuel Ambroise Diggs (also known as the Wizard of Oz and, during his reign, as Oz, the Great and Terrible) is a fictional character in the Land of Oz created by American author L. Frank Baum. The character was further popularized by a stage play and several movies, most famously the classic 1939 movie, as well as the 2013 prequel adaption. The Wizard is one of the characters in \"\"The Wonderful Wizard of Oz.\"\" Unseen for most of the novel, he is the ruler of the Land of Oz and"} +{"qid": "test3560", "pid": "17942106", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Copyright status of The Wizard of Oz and related works in the United States\"\nOz Film Manufacturing Company movies entered public domain in 1942. and then the 1925 Larry Semon movie version of \"\"The Wizard of Oz\"\" entered the public domain in 1954. These films remain the only Oz live action movies in the public domain. The 1939 version of \"\"The Wizard of Oz\"\" is the most well-known adaptation of \"\"The Wizard of Oz\"\"; in many respects, its popularity surpassed the original book. Its copyright was renewed in 1967, so it will remain copyrighted for a 95-year term, entering the public domain in 2035. This has caused issues for most subsequent Oz adaptations, especially"} +{"qid": "test3560", "pid": "15874231", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Wizard of Oz festival\"\nWizard of Oz festival The Wizard of Oz festival was an annual festival in Chesterton, Indiana for \"\"The Wizard of Oz\"\". It was cancelled in 2008 after 27 years following poor financial performance due a complicated history with town government, the declining health of actors from the 1939 movie, and a severe storm that essentially stopped the 2008 festival dead in its tracks. The festival was revived in the fall of 2009 under new management and greatly overhauled in structure and organization. It was once again cancelled in 2013 when the primary sponsor dropped the festival last minute, leaving the"} +{"qid": "test3560", "pid": "12645984", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Paradox in Oz\"\nObsidian City, the alternative version of Omby Amby calls himself Wantowin Battles — a name introduced by Ruth Plumly Thompson in her \"\"Ozoplaning with the Wizard of Oz\"\" (1939). When dealing with Dorothy, the Evil Version of the Wizard makes a reference to the 1939 movie version, by reversing part of the Wizard's dialog, describing himself, as \"\"a very bad man, but I am a very good wizard,\"\" before performing a wicked spell on the girl. Eric Shanower's black-and-white illustrations for \"\"Paradox in Oz\"\" are faithful to the richly romantic style that Shanower has developed for Oz illustration, from \"\"The"} +{"qid": "test3560", "pid": "17942109", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Copyright status of The Wizard of Oz and related works in the United States\"\nowned the rights to adapt all of Baum's books except \"\"The Wizard of Oz\"\", but this did not matter because by 1985 both \"\"The Land of Oz\"\" and \"\"Ozma of Oz\"\" were in the public domain. The only element that \"\"Return to Oz\"\" used from the 1939 movie was the ruby slippers – in the book, the slippers were silver. The ruby slippers had become so iconic due to the MGM movie, Disney paid handsomely for the rights to use them. The 2013 film \"\"Oz the Great and Powerful\"\" was technically a prequel to the 1939 movie, but it was"} +{"qid": "test3560", "pid": "9390177", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"The Wizard of Oz on television\"\nin advance of that year's telecast and were still airing as late as 1989. On the major commercial networks, it was never termed a \"\"CBS Movie Special\"\" or an \"\"NBC Movie Special\"\", as movie specials shown on those networks are frequently termed, but as simply \"\"The Wizard of Oz\"\". The 1955 and 1998 theatrical re-releases were matted in movie theaters to produce a widescreen effect for the Academy-standard aspect-ratio film. When shown in HDTV, the film is pillarboxed so that its aspect ratio is preserved. On DVD, the film has always been issued in its original 1939 aspect ratio. The"} +{"qid": "test3560", "pid": "18075281", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Cowardly Lion\"\n\"\"The Marvelous Land of Oz\"\" he receives a bare mention in the eleventh chapter.) In the classic 1939 movie \"\"The Wizard of Oz\"\", the Cowardly Lion was a humanoid biped and played by Bert Lahr, a popular vaudeville and Broadway star, with many of Lahr's trademark mannerisms deliberately worked into the film. In this version, the liquid courage given to him by the Wizard is replaced with a medal marked \"\"Courage\"\". Bert Lahr's biography, written by his son John Lahr, is entitled \"\"Notes on a Cowardly Lion\"\". The movie was made by Metro-Goldwyn-Mayer, which uses a lion as its mascot."} +{"qid": "test3560", "pid": "8271606", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Oz Before the Rainbow\"\nadaptations were then turned into successful novels. He notes, however, that the various versions influenced each other and led to the 1939 MGM movie. Oz Before the Rainbow Oz Before the Rainbow is a book written by Mark Evan Swartz in 2000 chronicling the early stage and film versions of \"\"The Wizard of Oz\"\", before the 1939 movie, as well as an album featuring music from the early stage versions. Half of the book is devoted to the 1902 stage musical of \"\"The Wizard of Oz\"\" that Baum adapted from his book, with substantial revisions by the director and producer."} +{"qid": "test3560", "pid": "8155662", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"The Wizard of Oz (1902 musical)\"\nThe Wizard of Oz (1902 musical) The Wizard of Oz was a 1902 musical extravaganza based on \"\"The Wonderful Wizard of Oz\"\" by L. Frank Baum, which was originally published in 1900. Much of the original music was by Paul Tietjens and has been mostly forgotten, although it was still well-remembered and in discussion at MGM in 1939 when the classic film version of the story was made. Although Baum is the credited bookwriter, Glen MacDonough was hired on as jokewriter after Baum had finished the script. The show premiered at the Chicago Grand Opera House on June 16, 1902"} +{"qid": "test3560", "pid": "15874232", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Wizard of Oz festival\"\nevent without any financial backing. Smaller organizations and dedicated fans worked tirelessly in an attempt to save the festival. Unfortunately, it was all to no avail. To this date, there is still a large demand from fans to bring the festival back to the small Indiana town. Wizard of Oz festival The Wizard of Oz festival was an annual festival in Chesterton, Indiana for \"\"The Wizard of Oz\"\". It was cancelled in 2008 after 27 years following poor financial performance due a complicated history with town government, the declining health of actors from the 1939 movie, and a severe storm"} +{"qid": "test3560", "pid": "2888808", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"The Wizard of Oz (1939 film)\"\nbest films of 1939. Roger Ebert chose it as one of his Great Films, writing that \"\"\"\"The Wizard of Oz\"\" has a wonderful surface of comedy and music, special effects and excitement, but we still watch it six decades later because its underlying story penetrates straight to the deepest insecurities of childhood, stirs them and then reassures them.\"\" Writer Salman Rushdie acknowledged \"\"\"\"The Wizard of Oz\"\" was my very first literary influence\"\" in his 2002 musings about the film. He has written: \"\"When I first saw \"\"The Wizard of Oz\"\", it made a writer of me.\"\" His first short story,"} +{"qid": "test3560", "pid": "2888829", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"The Wizard of Oz (1939 film)\"\nattributes, including a wizard from Omaha, \"\"The Wonderful Wizard of Oz\"\" has universal appeal.\"\" The film was one inductee of a group of 25 films that inaugurated in 1989 the National Film Registry list, based on at least it being declared by the Library of Congress as the most viewed film on television syndication. In June 2007, the film was listed on UNESCO's Memory of the World Register. The film placed at number 86 on Bravo's \"\"100 Scariest Movie Moments\"\". In 1977, Aljean Harmetz wrote \"\"The Making of The Wizard of Oz\"\", a detailed description of the creation of the"} +{"qid": "test3560", "pid": "1456251", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Yellow brick road\"\nYellow brick road The Yellow Brick Road is a fictional element in the 1900 children's novel \"\"The Wonderful Wizard of Oz\"\" by American author L. Frank Baum. The road also appears in the several sequel Oz books such as \"\"The Marvelous Land of Oz\"\" (1904) and \"\"The Patchwork Girl of Oz\"\" (1913). The road's most notable portrayal is in the classic 1939 MGM musical movie \"\"The Wizard of Oz\"\", loosely based on Baum's first Oz book. In the novel's first edition the road is mostly referred to as the \"\"Road of Yellow Bricks\"\". In the original story and in later"} +{"qid": "test3560", "pid": "6342889", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Aunt Em\"\nit may refer to her maiden name. Aunt Em was played by Queen Latifah in the ABC made-for-television movie \"\"The Muppets' Wizard of Oz\"\" where this character owned a diner. In the \"\"VeggieTales\"\" episode \"\"The Wonderful Wizard of Ha's\"\", Aunt Em and her husband Uncle Henry were substituted by a father (Dad Asparagus) to retell The Prodigal Son, a biblical parable from the Gospel of Luke. She was voiced by Lurene Tuttle in 1980's \"\"Dorothy in the Land of Oz\"\". Lucie Arnaz performed this character in \"\"\"\" (based on the 1939 MGM film) to benefit the Children's Defense Fund. She"} +{"qid": "test3560", "pid": "8271603", "query": "when was the movie the wizard of oz made", "answer": "1939", "passage": "\"Oz Before the Rainbow\"\nOz Before the Rainbow Oz Before the Rainbow is a book written by Mark Evan Swartz in 2000 chronicling the early stage and film versions of \"\"The Wizard of Oz\"\", before the 1939 movie, as well as an album featuring music from the early stage versions. Half of the book is devoted to the 1902 stage musical of \"\"The Wizard of Oz\"\" that Baum adapted from his book, with substantial revisions by the director and producer. The adaptation was a tremendous success, first in Chicago, then on Broadway, where it ran for two years, and then on tour for an"} +{"qid": "test3562", "pid": "5371001", "query": "what kind of dog is nana in snow dogs", "answer": "a Border Collie", "passage": "\"Snow Dogs\"\nthe backwoods village of Tolketna. Brooks' mother Amelia reveals that he is adopted; Lucy was his biological mother. Ted travels to Tolketna to claim his inheritance from Lucy: seven Siberian Huskies named Diesel, Mack, Sniff, Yodel, Scooper, Duchess and Demon, and a Border Collie named Nana. In Tolketna, he discovers his roots. Totally out of his element, Ted is confounded by blizzards, thin ice, foxes, skunks, grizzly bears, an intimidating, crusty old mountain man named James \"\"Thunder Jack\"\" Johnson, and the aggressive, defiant lead dog, Demon. All of this happens with the buzzing excitement of the Arctic Challenge Sled Dog"} +{"qid": "test3563", "pid": "17596194", "query": "who has won the most college football national champions", "answer": "Princeton", "passage": "\"1869 Princeton Tigers football team\"\n1869 Princeton Tigers football team The 1869 Princeton Tigers football team represented the College of New Jersey, more commonly known as Princeton College, in the 1869 college football season. The team finished with a 1–1 record and was retroactively named national champions by the Billingsley Report and National Championship Foundation, and as the co-national champions by Parke H. Davis. Princeton's first captain was William S. Gummere, who was 17 during the season. On November 6, the team played at Rutgers in what has been called the first intercollegiate American football game. Rutgers won the game 6–4, which was played using"} +{"qid": "test3563", "pid": "9239474", "query": "who has won the most college football national champions", "answer": "Princeton", "passage": "\"Rutgers Scarlet Knights football\"\nchose both Rutgers and Princeton as national champion, as the teams split two matches 1–1. Rutgers has won one conference championship. † Co-champions Rutgers has won three division titles. During their time in the Middle Atlantic Conferences, the conference established three leagues that were referred to as Divisions (University, Northern College, and Southern College), with no one true conference champion. The Princeton–Rutgers rivalry is a college rivalry in athletics between the Tigers of Princeton University and Scarlet Knights of Rutgers University – New Brunswick, both of which are located in New Jersey The rivalry dates back to the first college"} +{"qid": "test3564", "pid": "9160744", "query": "who ruled the ottoman empire in the 1500s", "answer": "Selim I", "passage": "\"Ottoman–Safavid relations\"\nespecially important role in defining the Ottoman–Safavid relationship. Both the Safavids and Ottomans relied on ties to Islam to help justify their individual rules. However, Islamic law prevents war of Muslims against each other, unless a religious need arises to enforce a sacred law or to check transgressions against it. Thus, for one power to wage war against the other, he would have to justify the action religiously. Selim I, sultan of the Ottoman Empire in the early 1500s, looked for such justification. Religious scholars and officials in the Ottoman Empire quickly labeled Shah Ismail, and by extension his followers,"} +{"qid": "test3564", "pid": "1656653", "query": "who ruled the ottoman empire in the 1500s", "answer": "Selim I", "passage": "\"History of the Kurds\"\nDynasty was allowed to rule the region as vassals by many of the sovereign rulers over the wider territory, until the Qajar monarch Nasser-al-Din Shah (1848–1896) ended their rule in 1867. For many centuries, starting in the early modern period with Ismail I, Shah of Safavid Persia, and Ottoman Sultan Selim I, the Kurds came under the suzerainty of the two most powerful empires of the Near East and staunch arch rivals, the Sunni Ottoman Empire and the various Shia Empires. It started off with the rule of Ismail I, who ruled over all regions that encompass native Kurdish living"} +{"qid": "test3564", "pid": "298341", "query": "who ruled the ottoman empire in the 1500s", "answer": "Selim I", "passage": "\"Ottoman Empire\"\nEmpire, the majority of the Orthodox population accepted Ottoman rule as preferable to Venetian rule. Albanian resistance was a major obstacle to Ottoman expansion on the Italian peninsula. In the 15th and 16th centuries, the Ottoman Empire entered a period of expansion. The Empire prospered under the rule of a line of committed and effective Sultans. It also flourished economically due to its control of the major overland trade routes between Europe and Asia. Sultan Selim I (1512–1520) dramatically expanded the Empire's eastern and southern frontiers by defeating Shah Ismail of Safavid Persia, in the Battle of Chaldiran. Selim I"} +{"qid": "test3565", "pid": "6550163", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Non-ferrous metal\"\nNon-ferrous metal In metallurgy, a non-ferrous metal is a metal, including alloys, that does not contain iron (ferrite) in appreciable amounts. Generally more costly than ferrous metals are used because of desirable properties such as low weight (e.g. aluminium), higher conductivity (e.g. copper), non-magnetic property or resistance to corrosion (e.g. zinc). Some non-ferrous materials are also used in the iron and steel industries. For example, bauxite is used as flux for blast furnaces, while others such as wolframite, pyrolusite and chromite are used in making ferrous alloys. Important non-ferrous metals include aluminium, copper, lead, nickel, tin, titanium and zinc, and"} +{"qid": "test3565", "pid": "6550168", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Non-ferrous metal\"\nreaction of nonferrous metals to these forming processes is often more severe. Consequently, properties may differ considerably between the cast and wrought forms of the same metal or alloy. Non-ferrous metal In metallurgy, a non-ferrous metal is a metal, including alloys, that does not contain iron (ferrite) in appreciable amounts. Generally more costly than ferrous metals are used because of desirable properties such as low weight (e.g. aluminium), higher conductivity (e.g. copper), non-magnetic property or resistance to corrosion (e.g. zinc). Some non-ferrous materials are also used in the iron and steel industries. For example, bauxite is used as flux for"} +{"qid": "test3565", "pid": "17249329", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Non-ferrous extractive metallurgy\"\nNon-ferrous extractive metallurgy Non-ferrous extractive metallurgy is one of the two branches of extractive metallurgy which pertains to the processes of reducing valuable, non-iron metals from ores or raw material. Metals like zinc, copper, lead, aluminium as well as rare and noble metals are of particular interest in this field, while the more common metal, iron, is considered a major impurity. Like ferrous extraction, non-ferrous extraction primarily focuses on the economic optimization of extraction processes in separating qualitatively and quantitatively marketable metals from its impurities (gangue). Any extraction process will include a sequence of steps or unit processes for separating"} +{"qid": "test3565", "pid": "17249340", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Non-ferrous extractive metallurgy\"\npowder. Finally, the precipitated copper is collected and refined further through the traditional smelting process. This is the first large-scale use of a hydrometallurgical process. Non-ferrous extractive metallurgy Non-ferrous extractive metallurgy is one of the two branches of extractive metallurgy which pertains to the processes of reducing valuable, non-iron metals from ores or raw material. Metals like zinc, copper, lead, aluminium as well as rare and noble metals are of particular interest in this field, while the more common metal, iron, is considered a major impurity. Like ferrous extraction, non-ferrous extraction primarily focuses on the economic optimization of extraction processes"} +{"qid": "test3565", "pid": "8862231", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Trafigura\nis the third-largest physical commodities trading group in the world behind Vitol and Glencore. Trafigura sources, stores, blends and transports raw materials including oil, refined petroleum products and non-ferrous metals (iron ore and coal). Trade in non-ferrous and bulk commodities – mainly copper, lead and zinc concentrate, alumina, refined metals of copper, lead, zinc and aluminium as well as the iron ore and coal trading books – made up 13% of Trafigura’s overall trading turnover in 2016. The group traded 8.2 million tonnes of non-ferrous metal concentrates and 6.6 million tonnes of non-ferrous refined metal during the year. Overall volume"} +{"qid": "test3565", "pid": "1853964", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Slag\nthe alumina and silica separated from the metal, and assist in the removal of sulfur and phosphorus from the steel. Ferrous and non-ferrous smelting processes produce different slags. The smelting of copper and lead in non-ferrous smelting, for instance, is designed to remove the iron and silica that often occurs with those ores, and separates them as iron-silicate-based slags. Slag from steel mills in ferrous smelting, on the other hand, is designed to minimize iron loss and so mainly contains oxides of calcium, silicon, magnesium, and aluminium. Any sandy component or quartz component of the original ore automatically carries through"} +{"qid": "test3565", "pid": "14496778", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"British Metals Recycling Association\"\nBritish Metals Recycling Association As a trade association, the British Metals Recycling Association (BMRA) represents over 300 organisations working across UK’s metal recycling sector. Its website also helps members of the public to find a local metal recycling organisation. It is based in Cambridgeshire, England. The UK’s £5 billion metals recycling industry supplies environmentally sound raw materials to metals manufacturers around the world. The wider industry comprises an estimated 2,500 businesses, employing 8,000-10,000 people, and processes approximately 13 million tonnes of ferrous and non-ferrous metals every year. The BMRA’s members trade and process steel, aluminium, copper and most other ferrous"} +{"qid": "test3565", "pid": "19437772", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Liberty House Group\"\nLiberty House Group Liberty House Group (also referred to as Liberty House or Liberty House UK) is an industrial and metals company founded in the United Kingdom in 1992 by industrialist Sanjeev Gupta. It is headquartered in Mayfair, London and has global hubs in Dubai, Singapore and Hong Kong. The company focuses on ferrous and non-ferrous metal trading, metals recycling, steel and aluminium production, and engineering products and services. The company, together with the SIMEC Group, part of the GFG Alliance, purchased the Lochaber aluminium smelter plant from Rio Tinto Group in November 2016. In February 2017, the company agreed"} +{"qid": "test3565", "pid": "17249331", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Non-ferrous extractive metallurgy\"\na cathode plate (electrowinning); or smelted then melted using an electric arc or plasma arc furnace (electrothermic reactor). Extractive metallurgy of ferrous and non-ferrous metals can involve pyrometallurgy, but chemical processes like hydrometallurgy and electrometallurgy are far more common in method of non-ferrous extraction. Another major difference in non-ferrous extraction is the greater emphasis on minimizing metal losses in slag. This is widely due to the exceptional scarcity and economic value of certain non-ferrous metals which are, inevitably, discarded during the extraction process to some extent. Thus, material resource scarcity and shortages are of great concern to the non-ferrous industry."} +{"qid": "test3565", "pid": "3907202", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Scrap\nnon-ferrous. Metals which contain iron in them are known as \"\"ferrous\"\" where metals without iron are \"\"non-ferrous\"\". Non-ferrous metals also include precious and exotic metals. OSHA guidelines should be followed when recycling any type of scrap metal to ensure safety. Ferrous metals are able to be recycled, with steel being one of the most recycled materials in the world. Ferrous metals contain an appreciable percentage of iron and the addition of carbon and other substances creates steel. In the United States, steel containers, cans, automobiles, appliances, and construction materials contribute the greatest weight of recycled materials. For example, in 2008,"} +{"qid": "test3565", "pid": "6550164", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Non-ferrous metal\"\nalloys such as brass. Precious metals such as gold, silver and platinum and exotic or rare metals such as cobalt, mercury, tungsten, beryllium, bismuth, cerium, cadmium, niobium, indium, gallium, germanium, lithium, selenium, tantalum, tellurium, vanadium, and zirconium are also non-ferrous. They are usually obtained through minerals such as sulfides, carbonates, and silicates. Non-ferrous metals are usually refined through electrolysis. Due to their extensive use, non-ferrous scrap metals are usually recycled. The secondary materials in scrap are vital to the metallurgy industry, as the production of new metals often needs them. Some recycling facilities re-smelt and recast non-ferrous materials; the dross"} +{"qid": "test3565", "pid": "9184470", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"British Non-Ferrous Metals Research Association\"\nBritish Non-Ferrous Metals Research Association The British Non-Ferrous Metals Research Association was a research group in the United Kingdom during the 20th century, bringing together public and privately funded research into metallurgy. The name was abbreviated officially to B.N.F.M.R.A. (the organisation was normally known as ‘The BNF’ during its life). It was formed in 1920 by members of the British Non-Ferrous Metals Federation which represented the commercial interests of British manufacturers of coppers and copper alloys, lead, zinc and other non-ferrous metals and their alloys, latterly including titanium. Robert Hutton was appointed director in 1921. The 600 or so subscribing"} +{"qid": "test3565", "pid": "1535278", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Heat treating\"\nprecipitation hardening alloys include 2000 series, 6000 series, and 7000 series aluminium alloy, as well as some superalloys and some stainless steels. Steels that harden by aging are typically referred to as maraging steels, from a combination of the term \"\"martensite aging.\"\" Quenching is a process of cooling a metal at a rapid rate. This is most often done to produce a martensite transformation. In ferrous alloys, this will often produce a harder metal, while non-ferrous alloys will usually become softer than normal. To harden by quenching, a metal (usually steel or cast iron) must be heated above the upper"} +{"qid": "test3565", "pid": "5110781", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Shanghai Metal Exchange\"\nShanghai Metal Exchange Shanghai Metal Exchange (SHME), one of the national level futures exchanges of China, was established on 28 May 1992. SHME is a non-profit, self-regulating corporation. The exchange was created for trading in non-ferrous metals and currently contracts for several non-ferrous metals including copper, aluminum, lead, zinc, tin, nickel. SHME is located in the city of Shanghai and its geographical location bridges the time gap between London Metal Exchange and New York Mercantile Exchange markets, thus enabling traders across the world to have a 24-hour access to futures contracts of non-ferrous metals. SHME is currently the largest non-ferrous"} +{"qid": "test3565", "pid": "15874439", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Eddy current separator\"\nrotor. Non-ferrous metals are thrown forward from the belt into a product bin, while non-metals simply fall off the belt due to gravity. Eddy current separators may use a rotating drum with permanent magnets, or may use an electromagnet depending on the type of separator. A patent for a device using eddy currents to separate non-ferrous metals from non-metals was granted to William Benson and Thomas Falconer of Eriez Magnetics in 1969. Eddy current separator An eddy current separator uses a powerful magnetic field to separate non-ferrous metals from waste after all ferrous metals have been removed previously by some"} +{"qid": "test3565", "pid": "264747", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Metallurgy\nis distinguished from the craft of metalworking, although metalworking relies on metallurgy, as medicine relies on medical science, for technical advancement. The science of metallurgy is subdivided into chemical metallurgy and physical metallurgy. Metallurgy is subdivided into ferrous metallurgy (also known as \"\"black metallurgy\"\") and non-ferrous metallurgy (also known as \"\"colored metallurgy\"\"). Ferrous metallurgy involves processes and alloys based on iron while non-ferrous metallurgy involves processes and alloys based on other metals. The production of ferrous metals accounts for 95 percent of world metal production. The roots of \"\"metallurgy\"\" derive from Ancient Greek: μεταλλουργός, \"\"metallourgós\"\", \"\"worker in metal\"\", from μέταλλον,"} +{"qid": "test3565", "pid": "4623239", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Sheet metal\"\ngauge numbers to designate sheet metal thickness is discouraged by numerous international standards organizations. For example, ASTM states in specification ASTM A480-10a: \"\"The use of gauge number is discouraged as being an archaic term of limited usefulness not having general agreement on meaning.\"\" Manufacturers' Standard Gauge for Sheet Steel is based on an average weight of 41.82 lb (18.96 kg) per square foot per inch thick. Gauge is defined differently for ferrous (iron-based) and non-ferrous metals (e.g. aluminium and brass). During the rolling process the rollers bow slightly, which results in the sheets being thinner on the edges. The tolerances"} +{"qid": "test3565", "pid": "10565", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Aluminium\nused non-ferrous metal. The global production of aluminium in 2016 was 58.8 million metric tons. It exceeded that of any other metal except iron (1,231 million metric tons). Aluminium is almost always alloyed, which markedly improves its mechanical properties, especially when tempered. For example, the common aluminium foils and beverage cans are alloys of 92% to 99% aluminium. The main alloying agents are copper, zinc, magnesium, manganese, and silicon (e.g., duralumin) with the levels of other metals in a few percent by weight. The major uses for aluminium metal are in: The great majority (about 90%) of aluminium oxide is"} +{"qid": "test3565", "pid": "9184477", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"British Non-Ferrous Metals Research Association\"\ndevelopment work on non-ferrous metals similar to and sooner than the BNF in Britain. During the 1970s the BNF became the BNF Metals Technology Centre and moved out of London to Grove Laboratories, Wantage, Oxfordshire. Recognising globalisation, membership was then opened to companies based overseas. In 1990 the BNF bought Fulmer Research Laboratories from the Institute of Physics and was renamed the BNF-Fulmer, then BNF (Fulmer Materials Centre). The laboratories were closed in 1992. British Non-Ferrous Metals Research Association The British Non-Ferrous Metals Research Association was a research group in the United Kingdom during the 20th century, bringing together public"} +{"qid": "test3565", "pid": "8996473", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Automotive shredder residue\"\ncalcite, magnetite, anhydrite and hematite. Some of the methods to recycle ASR are: Automotive shredder residue The shredding of automobiles and major household appliances is a process where a hammermill acts as a giant tree chipper by grinding the materials fed into it to fist-size pieces. The shredding of automobiles results in a mixture of ferrous metal, non-ferrous metal (e.g. alloys of copper and aluminium) and shredder waste, called automotive shredder residue or automobile shredder residue (ASR). ASR consists of glass, fiber, rubber, automobile liquids, plastics and dirt. ASR is sometimes differentiated into shredder light fraction and dust. Sometimes these"} +{"qid": "test3565", "pid": "8996471", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Automotive shredder residue\"\nAutomotive shredder residue The shredding of automobiles and major household appliances is a process where a hammermill acts as a giant tree chipper by grinding the materials fed into it to fist-size pieces. The shredding of automobiles results in a mixture of ferrous metal, non-ferrous metal (e.g. alloys of copper and aluminium) and shredder waste, called automotive shredder residue or automobile shredder residue (ASR). ASR consists of glass, fiber, rubber, automobile liquids, plastics and dirt. ASR is sometimes differentiated into shredder light fraction and dust. Sometimes these residual materials are called \"\"Car-fluff\"\". ASR often contains hazardous substances such as lead,"} +{"qid": "test3565", "pid": "16984148", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Scrap metal shredder\"\nScrap metal shredder A scrap metal shredder, also sometimes referred to as a metal scrap shredder, is a machine used for reducing the size of scrap metal. Scrap metal shredders come in many different variations and sizes. Some examples of scrap metal materials that are commonly shredded are: Auto shredders are large machines that turn a car into a large bucket of scrap steel and the rest of the car into non-ferrous materials, plastics and waste. The glass, fabric, plastic, and all other non ferrous materials are separated by eddy current magnets in place of heavy media separation. The non-ferrous"} +{"qid": "test3565", "pid": "3295276", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Bashkortostan\nsome 3,000 mineral resources. Bashkortostan is rich in crude oil reserves, and was one of the principal centers of oil extraction in the Russian Federation. Other major resources are natural gas, coal, ferrous metal ores, manganese, chromite, iron ores, non-ferrous metals ores (lead, tungsten), non-metallic ores (rock crystal, fluorite, Iceland spar, sulfide pyrites, barite, silicates, silica, asbestos, talcum), deposits of precious and semi-precious stones and natural stones (malachite, jade, granite). The republic has enough mineral resources to provide its power and fuel complex as well as petrochemical, chemical, agro-industrial complex, ferrous and non-ferrous metallurgy, glass-making and ceramic branches with raw"} +{"qid": "test3565", "pid": "7032337", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Electronic waste\"\nAnother benefit of recycling e-waste is that many of the materials can be recycled and re-used again. Materials that can be recycled include \"\"ferrous (iron-based) and non-ferrous metals, glass, and various types of plastic.\"\" “Non-ferrous metals, mainly aluminum and copper can all be re-smelted and re-manufactured. Ferrous metals such as steel and iron can be also be re-used.\"\" Due to the recent surge in popularity in 3D printing, certain 3D printers have been designed (FDM variety) to produce waste that can be easily recycled which decreases the amount of harmful pollutants in the atmosphere. The excess plastic from these printers"} +{"qid": "test3565", "pid": "2636986", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Eddy current\"\nan eddy current separator. Ferrous metals cling to the magnet, and aluminum (and other non-ferrous conductors) are forced away from the magnet; this can separate a waste stream into ferrous and non-ferrous scrap metal. With a very strong handheld magnet, such as those made from neodymium, one can easily observe a very similar effect by rapidly sweeping the magnet over a coin with only a small separation. Depending on the strength of the magnet, identity of the coin, and separation between the magnet and coin, one may induce the coin to be pushed slightly ahead of the magnet – even"} +{"qid": "test3565", "pid": "3907199", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "Scrap\nmaterials, that can help recyclers make more money on their metal recycling. When a magnet sticks to the metal, it will be a ferrous material, like steel or iron. This is usually a less expensive item that is recycled but usually is recycled in larger quantities of thousands of pounds. Non-ferrous metals like copper, aluminum, and brass do not stick to a magnet. Some cheaper grades of stainless steel are magnetic, other grades are not. These items are higher priced commodities for metal recycling and are important to separate when recycling them. The prices of non-ferrous metals also tend to"} +{"qid": "test3565", "pid": "8476926", "query": "is aluminium a ferrous or non ferrous metal", "answer": "non-ferrous", "passage": "\"Waste autoclave\"\nfibre separation, the secondary streams consist of mixed plastics, which have normally been softened and deformed which eases separation, a glass and aggregate stream, separate ferrous and non-ferrous metals. The heat, steam and rotating action of the autoclave vessel strip off labels and glues from food cans leaving a very high quality ferrous/non-ferrous stream for recycling. With the removal of water, fibre, metals, and much of the plastics, the residual waste stream for disposal may be less than 10% by weight of the original stream, and is essentially devoid of materials that decompose to produce methane. Systems in Europe meet"} +{"qid": "test3569", "pid": "5166611", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"Gianni Schicchi\"\nEdoardo Sonzogno for the best such work, which was won by the young Pietro Mascagni's \"\"Cavalleria rusticana\"\". With \"\"Tosca\"\" essentially completed by November 1899, Puccini sought a new project. Among sources he considered, before proceeding with \"\"Madama Butterfly\"\", were three works by French dramatist Alphonse Daudet that Puccini thought might be made into a trilogy of one-act operas. After \"\"Butterfly\"\" premiered in 1904, Puccini again had difficulty finding a new subject. He further considered the idea of composing three one-act operas to be performed together, but found his publisher, Giulio Ricordi, firmly opposed to such a project, convinced that it"} +{"qid": "test3569", "pid": "3173707", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"New York City Opera\"\nNew York City Opera.\"\" NYCO Renaissance presented Puccini's \"\"Tosca\"\" – using Adolfo Hohenstein's stage and costume design from the opera's premiere in 1900 in Rome – in January 2016 at the 1,100-seat Rose Theater. It had two separate casts, including tenor James Valenti and soprano Latonia Moore, and the least expensive balcony seats were $25. \"\"Tosca\"\" had been, in 1944, the first opera performed by the NYCO. The NYCO announced that it would round out the 2015–16 season with the performance of three contemporary works, all new to the company. On March 16, 2016, a new concert series at the"} +{"qid": "test3569", "pid": "489337", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "Tosca\nTosca Tosca is an opera in three acts by Giacomo Puccini to an Italian libretto by Luigi Illica and Giuseppe Giacosa. It premiered at the Teatro Costanzi in Rome on 14 January 1900. The work, based on Victorien Sardou's 1887 French-language dramatic play, \"\"La Tosca\"\", is a melodramatic piece set in Rome in June 1800, with the Kingdom of Naples's control of Rome threatened by Napoleon's invasion of Italy. It contains depictions of torture, murder and suicide, as well as some of Puccini's best-known lyrical arias. Puccini saw Sardou's play when it was touring Italy in 1889 and, after some"} +{"qid": "test3569", "pid": "489406", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "Tosca\nnever hears. Notes Sources Tosca Tosca is an opera in three acts by Giacomo Puccini to an Italian libretto by Luigi Illica and Giuseppe Giacosa. It premiered at the Teatro Costanzi in Rome on 14 January 1900. The work, based on Victorien Sardou's 1887 French-language dramatic play, \"\"La Tosca\"\", is a melodramatic piece set in Rome in June 1800, with the Kingdom of Naples's control of Rome threatened by Napoleon's invasion of Italy. It contains depictions of torture, murder and suicide, as well as some of Puccini's best-known lyrical arias. Puccini saw Sardou's play when it was touring Italy in"} +{"qid": "test3569", "pid": "489409", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"Madama Butterfly\"\nperformance on 28 May 1904 in Brescia. \"\"Madama Butterfly\"\" is a staple of the operatic repertoire around the world, ranked 6th by Operabase; Puccini's \"\"La bohème\"\" and \"\"Tosca\"\" rank 3rd and 5th. Puccini wrote five versions of the opera. The original two-act version, which was presented at the world premiere at La Scala on 17 February 1904, was withdrawn after the disastrous premiere. Puccini then substantially rewrote it, this time in three acts. This second version was performed on 28 May 1904 in Brescia, where it was a great success. It was this second version that premiered in the United"} +{"qid": "test3569", "pid": "164033", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"Giacomo Puccini\"\nBecause only three \"\"verismo\"\" works by Puccini continue to appear regularly on stage (the aforementioned \"\"Cavalleria rusticana\"\", \"\"Pagliacci\"\", and \"\"Andrea Chénier\"\"), Puccini's contribution has had lasting significance to the genre. Both during his lifetime and in posterity, Puccini's success outstripped other Italian opera composers of his time, and he has been matched in this regard by only a handful of composers in the entire history of opera. Eleven of Puccini's operas are numbered among the 200 most-performed operas (worldwide, by composers of any nationality, as surveyed by Operabase). Three of his works (\"\"La bohème\"\", \"\"Tosca\"\", and \"\"Madama Butterfly\"\") rank among"} +{"qid": "test3569", "pid": "164007", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"Giacomo Puccini\"\nreferred to her well publicised affair with Arturo Toscanini. This version was in two acts; after its disastrous premiere, Puccini withdrew the opera, revising it for what was virtually a second premiere at Brescia in May 1904 and performances in Buenos Aires, London, the USA and Paris. In 1907, Puccini made his final revisions to the opera in a fifth version, which has become known as the \"\"standard version\"\". Today, the standard version of the opera is the version most often performed around the world. However, the original 1904 version is occasionally performed as well, and has been recorded. After"} +{"qid": "test3569", "pid": "164003", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"Giacomo Puccini\"\n\"\"La bohème\"\" was \"\"Tosca\"\" (1900), arguably Puccini's first foray into \"\"verismo\"\", the realistic depiction of many facets of real life including violence. Puccini had been considering an opera on this theme since he saw the play \"\"Tosca\"\" by Victorien Sardou in 1889, when he wrote to his publisher, Giulio Ricordi, begging him to get Sardou's permission for the work to be made into an opera: \"\"I see in this \"\"Tosca\"\" the opera I need, with no overblown proportions, no elaborate spectacle, nor will it call for the usual excessive amount of music.\"\" The music of \"\"Tosca\"\" employs musical signatures for"} +{"qid": "test3569", "pid": "489364", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "Tosca\ncontaining the motif that would be associated with Scarpia, is dated January 1898. At Puccini's request, Giacosa irritably provided new lyrics for the act 1 love duet. In August, Puccini removed several numbers from the opera, according to his biographer, Mary Jane Phillips-Matz, \"\"cut[ting] \"\"Tosca\"\" to the bone, leaving three strong characters trapped in an airless, violent, tightly wound melodrama that had little room for lyricism\"\". At the end of the year, Puccini wrote that he was \"\"busting his balls\"\" on the opera. Puccini asked clerical friends for words for the congregation to mutter at the start of the act"} +{"qid": "test3569", "pid": "163986", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "\"Giacomo Puccini\"\nGiacomo Puccini Giacomo Antonio Domenico Michele Secondo Maria Puccini (; 22 December 1858 29 November 1924) was an Italian opera composer who has been called \"\"the greatest composer of Italian opera after Verdi\"\". Puccini's early work was rooted in traditional late-19th-century romantic Italian opera. Later, he successfully developed his work in the realistic \"\"verismo\"\" style, of which he became one of the leading exponents. Puccini's most renowned works are \"\"La bohème\"\" (1896), \"\"Tosca\"\" (1900), \"\"Madama Butterfly\"\" (1904), and \"\"Turandot\"\" (1924), all of which are among the important operas played as standards. Puccini was born Giacomo Antonio Domenico Michele Secondo Maria"} +{"qid": "test3569", "pid": "489371", "query": "three act puccini opera first performed in 1900", "answer": "Tosca", "passage": "Tosca\nand instructed Mugnone (who had survived a theatre bombing in Barcelona), that in an emergency he was to strike up the royal march. The unrest caused the premiere to be postponed by one day, to 14 January. By 1900, the premiere of a Puccini opera was a national event. Many Roman dignitaries attended, as did Queen Margherita, though she arrived late, after the first act. The Prime Minister of Italy, Luigi Pelloux was present, with several members of his cabinet. A number of Puccini's operatic rivals were there, including Franchetti, Pietro Mascagni, Francesco Cilea and Ildebrando Pizzetti. Shortly after the"} +{"qid": "test3576", "pid": "3032103", "query": "who played bubba in the heat of the night", "answer": "Carlos Alan Autry Jr.", "passage": "\"Alan Autry\"\nAlan Autry Carlos Alan Autry Jr. (also known for a period of time as Carlos Brown; born July 31, 1952), is an American actor, politician, and former National Football League player. During his brief football career, he was known as Carlos Brown. He played the role of Captain Bubba Skinner on the NBC television series, \"\"In the Heat of the Night\"\", starring Carroll O'Connor. He has also appeared in films and other television shows. In November 2000, he was elected mayor of Fresno, California, and served for two four-year terms through January 2009. In 2008, Autry was hosting a radio"} +{"qid": "test3578", "pid": "15715129", "query": "who is the singer of kal ho na ho", "answer": "Sonu Nigam", "passage": "\"Kal Ho Naa Ho (song)\"\nKal Ho Naa Ho (song) \"\"Kal Ho Naa Ho\"\" ( Tomorrow may never come) is a 2003 Hindi-language filmi song performed by Sonu Nigam for the 2003 Indian romantic drama film of the same name. The track was composed by Shankar-Ehsaan-Loy, while lyrics were written by Javed Akhtar. In a pathos version, Nigam is joined by Alka Yagnik and Richa Sharma. \"\"Kal Ho Naa Ho\"\" was directed by Nikhil Advani and written by Karan Johar; the latter co-produced it with his father Yash Johar under the banner of Dharma Productions. The music video of \"\"Kal Ho Naa Ho\"\" features leads"} +{"qid": "test3578", "pid": "14967100", "query": "who is the singer of kal ho na ho", "answer": "Sonu Nigam", "passage": "\"49th Filmfare Awards\"\nin Munna Bhai M.B.B.S.\"\" as Murli Prasad \"\"Munna\"\" \"\"Shahid Kapoor in Ishq Vishk\"\" \"\"Priyanka Chopra and Lara Dutta for Andaaz\"\" \"\"3 Deewarein – Nagesh Kukunoor\"\" \"\"Munna Bhai M.B.B.S. – Vidhu Vinod Chopra , Rajkumar Hirani and Lajan Joseph\"\" \"\"Munna Bhai M.B.B.S. – Abbas Tyrewala\"\" \"\"Kal Ho Naa Ho – Shankar-Ehsaan-Loy\"\" \"\"Kal Ho Naa Ho – Javed Akhtar for Kal Ho Naa Ho\"\" \"\"Kal Ho Naa Ho – Sonu Nigam for Kal Ho Naa Ho\"\" \"\"Jism – Shreya Ghoshal for Jadoo Hai Nasha Hai\"\" \"\"Gangaajal – Wayne Sharpe\"\" \"\"Vishal-Shekhar – Jhankaar Beats\"\" \"\" – Allan Amin\"\" \"\"Pinjar – Muneesh Sappel\"\" \"\"Chameli"} +{"qid": "test3578", "pid": "15715132", "query": "who is the singer of kal ho na ho", "answer": "Sonu Nigam", "passage": "\"Kal Ho Naa Ho (song)\"\nsongs the winners were ranked according to the number of votes each song got. \"\"Kal Ho Naa Ho\"\" was ranked at 19 making it the only contemporary selection in the list. The track was featured in \"\"Hindustan Times's\"\" \"\"Song of the Century\"\" list, which described the song as \"\"one of the most unforgettable tunes in recent times.\"\" Kal Ho Naa Ho (song) \"\"Kal Ho Naa Ho\"\" ( Tomorrow may never come) is a 2003 Hindi-language filmi song performed by Sonu Nigam for the 2003 Indian romantic drama film of the same name. The track was composed by Shankar-Ehsaan-Loy, while lyrics"} +{"qid": "test3578", "pid": "2963287", "query": "who is the singer of kal ho na ho", "answer": "Sonu Nigam", "passage": "\"Kal Ho Naa Ho\"\nUK and US, grossing in the UK top ten. It earned 279.1 million ($6,112,571 in 2003) overseas, the year's highest-grossing Indian film. Earning a total of 860.9 million ($18,854,577 in 2003), it was also 2003's most profitable Indian film. At the 51st National Film Awards, Shankar–Ehsaan–Loy received the award for Best Music Direction and Sonu Nigam received the Best Male Playback Singer award. \"\"Kal Ho Naa Ho\"\" received eleven nominations at the 49th Filmfare Awards, and won eight—the most for any film that year, including Best Actress (Zinta), Best Supporting Actor (Saif Ali Khan) and Best Supporting Actress (Bachchan). The"} +{"qid": "test3578", "pid": "10025793", "query": "who is the singer of kal ho na ho", "answer": "Richa Sharma", "passage": "\"Richa Sharma (singer)\"\n(the song \"\"Duppatte Ka Palu\"\"), \"\"Baghban\"\" (Title Song for Aadesh Shrivastava); \"\"Soch\"\" (the song \"\"Nikal Chali Be\"\" for Jatin-Lalit); \"\"Rudraksh\"\", \"\"Kal Ho Naa Ho\"\" (Sad version of the title track for Shankar-Ehsaan-Loy); \"\"Gangajal\"\" (Sandesh Shandilya); \"\"Popcorn Khao Mast Ho Jao\"\" (Vishal-Shekhar), \"\"Saawariya\"\" (Monty Sharma), and \"\"Om Shanti Om\"\" (Vishal-Shekhar) and the most popular song for \"\"Kaante\"\" (\"\"Mahi Ve\"\" for Anand Raaj Anand). The versatile playback singer has also done quite a few albums to showcase her talent. Albums like \"\"Ni Main Yaar Nu Sajda Kardi\"\", \"\"Piya\"\" and \"\"Winds of Rajasthan\"\" (for Times Music released early 2004) have brought out the"} +{"qid": "test358", "pid": "20084190", "query": "another name for the torso is the blank region of the body", "answer": "trunk", "passage": "\"Gait deviations\"\nin transfemoral amputees for lifting the prosthesis and providing foot clearance. This behavior is colloquially known as 'hip-hiking'. As such, rotation and obliquity of the pelvis have been determined to be instrumental in producing more symmetric gait, even when the rotation itself is asymmetric between intact and impaired limbs. Torso or trunk motion is also linked to amputee gait, specifically increasing upper-body ranges of motion with decreasing walking velocity. Another study observed a coupling of torso and pelvis rotations. They noted that the 'hip-hiking' behavior made the rotations of the upper and lower body 'in' or 'out' of phase depending"} +{"qid": "test358", "pid": "3170433", "query": "another name for the torso is the blank region of the body", "answer": "trunk", "passage": "Torso\nand lumbar parts of the spinal cord. Some organs also receive a nerve supply from the vagus nerve. The sensation to the skin is provided by: Torso The torso or trunk is an anatomical term for the central part or core of many animal bodies (including humans) from which extend the neck and limbs. The torso includes: the chest, abdomen, and back. Most critical organs are housed within the torso. In the upper chest, the heart and lungs are protected by the rib cage, and the abdomen contains most of the organs responsible for digestion: the stomach, which breaks down"} +{"qid": "test3581", "pid": "3005449", "query": "where did the crown of thorns starfish come from", "answer": "Indo-Pacific", "passage": "\"Crown-of-thorns starfish\"\nCrown-of-thorns starfish The crown-of-thorns starfish, \"\"Acanthaster planci\"\", is a large starfish that preys upon hard, or stony, coral polyps (Scleractinia). The crown-of-thorns starfish receives its name from venomous thorn-like spines that cover its upper surface, resembling the biblical crown of thorns. It is one of the largest starfish in the world. \"\"A. planci\"\" has a very wide Indo-Pacific distribution. It is perhaps most common in Australia, but can occur at tropical and subtropical latitudes from the Red Sea and the east African coast across the Indian Ocean, and across the Pacific Ocean to the west coast of Central America. It"} +{"qid": "test3581", "pid": "3005489", "query": "where did the crown of thorns starfish come from", "answer": "Indo-Pacific", "passage": "\"Crown-of-thorns starfish\"\nin the fish fauna and long-terms studies of coral reef fish communities confirm this expectation. Large populations of crown-of-thorns starfish (sometime emotively known as 'plagues') have been substantiated as occurring at twenty one locations of coral reefs during the 1960s to 1980s. These locations ranged from the Red Sea through the tropical Indo-Pacific region to French Polynesia. There were at least two substantiated repeated outbreaks at ten of these locations. Values of starfish density from 140/ha to 1,000/ha have been considered in various reports to be outbreak populations, while starfish densities less than 100/ha have been considered to be low;"} +{"qid": "test3581", "pid": "18113753", "query": "where did the crown of thorns starfish come from", "answer": "Indo-Pacific", "passage": "\"Acropora abrotanoides\"\ncoral reefs, the increase of temperature causing coral bleaching, climate change, human activity, the crown-of-thorns starfish (\"\"Acanthaster planci\"\") and disease. Acropora abrotanoides Acropora abrotanoides is a species of acroporid coral found in Indo-Pacific waters from the Red Sea and the Gulf of Aden east to the East China Sea, Japan, the central Pacific Ocean and Australia. It is found in shallow coral reefs that are exposed to the action of strong waves, at depths up to 15 m. It is vulnerable to coral bleaching, disease and crown-of-thorns starfish. It is resistant to predation as it has well-developed radial corallite lips."} +{"qid": "test3583", "pid": "1807949", "query": "who did bette midler portray in the rose", "answer": "Mary Rose Foster", "passage": "\"The Rose (film)\"\nwritten by Bill Kerby and Bo Goldman from a story by Bill Kerby, and directed by Mark Rydell. \"\"The Rose\"\" was nominated for four Academy Awards including Best Actress in a Leading Role (Bette Midler, in her screen debut), Best Actor in a Supporting Role (Frederic Forrest), Best Film Editing and Best Sound. Midler performed the soundtrack album for the film, and the title track became one of her biggest hit singles. In late 1969, Mary Rose Foster (Bette Midler) is a famous rock and roll diva known as The Rose. Although a success, she is burnt out and lonely"} +{"qid": "test3584", "pid": "1549069", "query": "what is the setting of the story sorry wrong number", "answer": "Manhattan", "passage": "\"Sorry, Wrong Number\"\n\"\"Sorry, Wrong Number\"\" conforms to many of the conventions of film noir. The movie plays in real time, with many flashbacks to flesh out the story. Stanwyck's bedroom window overlooks the night skyline of Manhattan. The film is shot very dark, with looming shadows and a circling camera used to maintain a high level of suspense. Hollywood's Production Code Administration initially objected to elements of Fletcher's screenplay, including its depiction of drug trafficking, and the script was significantly revised to win approval. For her role in the film, Stanwyck was nominated for the Academy Award for Best Actress. Lucille Fletcher's"} +{"qid": "test3584", "pid": "6077782", "query": "what is the setting of the story sorry wrong number", "answer": "Manhattan", "passage": "\"Lucille Fletcher\"\nscore for the November 17, 1941, radio debut of Fletcher's famous story, \"\"The Hitch-Hiker\"\" on \"\"The Orson Welles Show\"\". Fletcher's greatest success, \"\"Sorry, Wrong Number\"\", premiered on May 25, 1943, as an episode of the radio series \"\"Suspense\"\". Agnes Moorehead created the role in the first performance and again in several later radio productions. It was broadcast nationwide seven times between 1943 and 1948. Fletcher's daughter Dorothy Herrmann told \"\"The New York Times\"\" that Fletcher got the idea for \"\"Sorry, Wrong Number\"\" when she was buying food for her sick child at a local grocery on Manhattan's East Side, and"} +{"qid": "test3585", "pid": "6698932", "query": "where do they get the hair for a hair transplant", "answer": "legs", "passage": "\"Tarzoon: Shame of the Jungle\"\nQueen Bazonga, who resides in a blimp, inside a cave shaped like a women's legs spread open revealing her vagina, plans to conquer Earth. Before she can do that, however, she wishes to have a full set of hair so people can take her seriously. Her two-headed assistant, called the Charles Of The Pits, suggests a \"\"scalp transplant\"\", an experiment where someone else's hair is transplanted to another person's head. Bazonga demands that she wants the hair of June, the maid of Shame: Ruler of the jungle. Bazonga sends out her penis soldiers to kidnap June. Meanwhile, that night, June"} +{"qid": "test3585", "pid": "6227728", "query": "where do they get the hair for a hair transplant", "answer": "chest", "passage": "\"Hair transplantation\"\nHair transplantation Hair transplantation is a surgical technique that removes hair follicles from one part of the body, called the 'donor site', to a bald or balding part of the body known as the 'recipient site'. The technique is primarily used to treat male pattern baldness. In this minimally invasive procedure, grafts containing hair follicles that are genetically resistant to balding (like the back of the head) are transplanted to the bald scalp. Hair transplantation can also be used to restore eyelashes, eyebrows, beard hair, chest hair, pubic hair and to fill in scars caused by accidents or surgery such"} +{"qid": "test3585", "pid": "10255882", "query": "where do they get the hair for a hair transplant", "answer": "back", "passage": "\"Eyebrow restoration\"\nhair and eyebrow restoration surgery technique is follicular unit transplantation, which involves the removal of donor follicles from the back of the patient's head (where hair tends to be more permanent). The most advanced form of follicular unit surgery is with the robotic system. Once removed, the \"\"donor area\"\" is then stitched back up with no visible scarring. The donor follicles are then transplanted into the \"\"problem areas\"\" of the patient’s scalp. Eyebrow transplants are designed to restore growing hair to eyebrows that are overly thin, scarred, or completely missing. The absence of hair can be due to genetics, prior"} +{"qid": "test3585", "pid": "2524498", "query": "where do they get the hair for a hair transplant", "answer": "back of the head", "passage": "Eyebrow\nmore common for men to pluck part of their eyebrows. To create a fuller look, eyebrows can be cloned in an eyebrow transplant. Individual strands of the eyebrow are created to mimic a natural-looking eyebrow of the desired shape. The process of eyebrow transplant is quite similar to the process of hair transplant. In this process as well, follicles from an active area are transferred to the area where there are no hairs. Follicles are mostly taken from the back of the head because it is the best harvesting site when it comes to hairs. The follicles are then injected"} +{"qid": "test3585", "pid": "11896609", "query": "where do they get the hair for a hair transplant", "answer": "back", "passage": "Laxometer\nLaxometer A laxometer is a measuring device for scalp skin mobility, used in hair restoration surgery, where a strip of skin from a donor area on the back of the scalp is transplanted. The laxometer was first presented at the 15th Annual Meeting of the International Society of Hair Restoration Surgery in Las Vegas. It was invented by Parsa Mohebi, M.D. and introduced as the first tool that could objectively measure the laxity of scalp in hair transplant patients. The second generation of Laxometer (Laxometer II was introduced in September 2011 in the scientific meeting of International Society of Hair"} +{"qid": "test3585", "pid": "6227739", "query": "where do they get the hair for a hair transplant", "answer": "back of the head", "passage": "\"Hair transplantation\"\nrestoration. The ARTAS System was FDA approved in 2011 for use in harvesting follicular units from brown-haired and black-haired men. Despite the advantages of robotic hair restoration systems, there are still some disadvantages such as the size of the punches being relatively large in comparison to what is used in other methods of FUE, and the high costs associated with the devices. There are a number of applications for hair transplant surgery, including: If donor hair numbers from the back of the head are insufficient, it is possible to perform body hair transplantation (BHT) on appropriate candidates who have available"} +{"qid": "test3585", "pid": "6227738", "query": "where do they get the hair for a hair transplant", "answer": "back", "passage": "\"Hair transplantation\"\nthe learning curve to acquire the skills necessary is lengthy and tough. Some surgeons note that FUE can lead to a lower ratio of successfully transplanted follicles as compared to strip harvesting. Follicular unit transplant (FUT) is the traditional hair transplant method which involves extracting a linear strip of hair bearing skin from the back or the side of the scalp. The strip is then dissected to separate individual grafts. Robotic hair restoration devices utilize cameras and robotic arms to assist the surgeon with the FUE procedure. In 2009, NeoGraft became the first robotic surgical device FDA approved for hair"} +{"qid": "test3585", "pid": "2632617", "query": "where do they get the hair for a hair transplant", "answer": "back", "passage": "\"Hair follicle\"\nthey continue to grow hair in the normal hair cycle, thus providing the hair restoration patient with permanent, naturally-growing hair. More than 60% of men and 10% of women suffer from hair loss. While hair transplantation dates back to the 1950s, and plucked human hair follicle cell culture in vitro to the early 1980s, it was not until 1995 when hair transplantation using individual follicular units was introduced into medical literature. Hair follicle The hair follicle is a dynamic organ found in mammalian skin. It resides in the dermal layer of the skin and is made up of 20 different"} +{"qid": "test3585", "pid": "1626290", "query": "where do they get the hair for a hair transplant", "answer": "back", "passage": "\"Hair loss\"\ncarried out under local anaesthetic. A surgeon will move healthy hair from the back and sides of the head to areas of thinning. The procedure can take between four and eight hours, and additional sessions can be carried out to make hair even thicker. Transplanted hair falls out within a few weeks, but regrows permanently within months. Hair transplants, takes tiny plugs of skin, each which contains a few hairs, and implants the plugs into bald sections. The plugs are generally taken from the back or sides of the scalp. Several transplant sessions may be necessary. Hypothermia caps may be"} +{"qid": "test3588", "pid": "3844962", "query": "the vast interior rural area of australia is known as the", "answer": "Outback", "passage": "\"Royal Flying Doctor Service of Australia\"\nRoyal Flying Doctor Service of Australia The Royal Flying Doctor Service of Australia (RFDS, informally known as The Flying Doctor) is one of the largest and most comprehensive aeromedical organisations in the world. It provides emergency and primary health care services for those living in rural, remote and regional areas of Australia. It is a non-profit organisation which provides health care to people who cannot access a hospital or general practice due to the vast distances of the Outback. The Reverend John Flynn had worked in rural and remote areas of Victoria and was commissioned by the Presbyterian Church to"} +{"qid": "test3588", "pid": "33240", "query": "the vast interior rural area of australia is known as the", "answer": "The Outback", "passage": "Outback\nOutback The Outback is the vast, remote interior of Australia. \"\"The Outback\"\" is more remote than those areas named \"\"the bush\"\" which is any location outside the main urban areas. While often envisaged as being arid, the Outback regions extend from the northern to southern Australian coastlines, and encompass a number of climatic zones; including tropical and monsoonal climates in northern areas, arid areas in the \"\"red centre\"\" and semi-arid and temperate climates in southerly regions. Geographically, the Outback is unified by a combination of factors, most notably a low human population density, a largely intact, natural environment and, in"} +{"qid": "test3588", "pid": "33262", "query": "the vast interior rural area of australia is known as the", "answer": "The Outback", "passage": "Outback\ntourists and locals becoming stranded on outback trips occasionally occur, sometimes because insufficient water and food supplies were taken, or because people have walked away from their vehicle in search of help. Travellers through very remote areas should always inform a reliable person of their route and expected destination arrival time, and remember that a vehicle is much easier to locate in an aerial search, than a person, so in the event of a breakdown, they must not leave their vehicle. Outback The Outback is the vast, remote interior of Australia. \"\"The Outback\"\" is more remote than those areas named"} +{"qid": "test359", "pid": "7990975", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Foramen secundum\"\nblood. The foramen secundum and foramen ovale act as a shunt where blood bypasses the lungs and does not become oxygenated. To provide proper blood flow as a newborn, the foramen secundum and foramen ovale must close at birth. Since the lungs now require a significant amount of blood flow, the vessels going to and from the lungs undergo dilation. While the pulmonary artery and pulmonary veins are dilating, the umbilical artery and umbilical vein are severed at the cutting of the umbilical cord, or the funiculus umbilicalis. This combination results in a reversal of pressure differences between the atria,"} +{"qid": "test359", "pid": "9578607", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary shunt\"\nconsideration results in de-oxygenated blood going to the heart from the lungs via the pulmonary veins. If giving pure oxygen at 100% for five-ten minutes doesn't raise the arterial pressure of O2 more than it does the alveolar pressure of O2 then the defect in the lung is because of a pulmonary shunt. This is because although the PO2 of alveolar gas has been changed by giving pure supplemental O2, the PaO2 (arterial gas pressure) will not increase that much because the V/Q mismatch still exists and it will still add some de-oxygenated blood to the arterial system via the"} +{"qid": "test359", "pid": "2981476", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary circulation\"\nHuman knowledge of pulmonary circulation grew gradually over centuries, and scientists Ibn al-Nafis, Michael Servetus, and William Harvey provided some of the first accurate descriptions of this process. Deoxygenated blood leaves the heart, goes to the lungs, and then re-enters the heart; Deoxygenated blood leaves through the right ventricle through the pulmonary artery. From the right atrium, the blood is pumped through the tricuspid valve (or right atrioventricular valve), into the right ventricle. Blood is then pumped from the right ventricle through the pulmonary valve and into the main pulmonary artery. The pulmonary arteries carry deoxygenated blood to the lungs,"} +{"qid": "test359", "pid": "472789", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "Artery\naway from the heart to the tissues, except for pulmonary arteries, which carry blood to the lungs for oxygenation (usually veins carry deoxygenated blood to the heart but the pulmonary veins carry oxygenated blood as well). There are two types of unique arteries. The pulmonary artery carries blood from the heart to the lungs, where it receives oxygen. It is unique because the blood in it is not \"\"oxygenated\"\", as it has not yet passed through the lungs. The other unique artery is the umbilical artery, which carries deoxygenated blood from a fetus to its mother. Arteries have a blood"} +{"qid": "test359", "pid": "19835112", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Biofluid dynamics\"\nveins before reaching the right heart. Thus completing the cycle of blood going to heart and then coming from it and going to all parts of the body. The tricuspid valve, right heart (right ventricle), pulmonary valve, pulmonary artery, lungs, pulmonary veins and right heart are the elements of the Pulmonary Circulation System. The process of gas exchange, that is, exchange of carbon dioxide with oxygen in the lungs is the main function of the pulmonary system. The de-oxygenated blood from the right ventricle is pumped to the lungs where the capillaries surrounding the alveole sacks exchange carbon dioxide for"} +{"qid": "test359", "pid": "2981477", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary circulation\"\nwhere carbon dioxide is released and oxygen is picked up during respiration. Arteries are further divided into very fine capillaries which are extremely thin-walled. The pulmonary vein returns oxygenated blood to the left atrium of the heart. The oxygenated blood then leaves the lungs through pulmonary veins, which return it to the left heart, completing the pulmonary cycle. This blood then enters the left atrium, which pumps it through the mitral valve into the left ventricle. From the left ventricle, the blood passes through the aortic valve to the aorta. The blood is then distributed to the body through the"} +{"qid": "test359", "pid": "20277299", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Chronic thromboembolic pulmonary hypertension\"\nChronic thromboembolic pulmonary hypertension Chronic thromboembolic pulmonary hypertension (CTEPH) is a long-term disease caused by a blockage in the blood vessels that deliver blood from the heart to the lungs (pulmonary arteries), resulting in increased pressure in these arteries (pulmonary hypertension). The blockage either results from a hardened blood clot that is thought to originate from the deep veins of the body (thromboembolism) and remains in the arteries, or from a scar that forms at the site where the clot has damaged the arteries, causing permanent fibrous obstruction (blood flow blockage). Most patients have a combination of microvascular (small vessel)"} +{"qid": "test359", "pid": "15724138", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary artery banding\"\nPulmonary artery banding Pulmonary Artery Banding (PAB) was introduced by Muller and Danimann in 1951 as a surgical technique to reduce excessive pulmonary blood flow in infants suffering from congenital heart defects. PAB is a palliative operation as it does not correct the problems, but attempts to improve abnormal heart function, relieve symptoms and reduce high pressure in the lungs. The use of PAB has decreased over the years due to advancements in definitive surgical repairs, however PAB still has widespread clinical use. PAB is commonly used in patients when definitive surgical repair is not feasible. The technique was first"} +{"qid": "test359", "pid": "14398124", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Major aortopulmonary collateral artery\"\nMajor aortopulmonary collateral artery Major aortopulmonary collateral arteries (or MAPCAs) are arteries that develop to supply blood to the lungs when native pulmonary circulation is underdeveloped. Instead of coming from the pulmonary trunk, supply develops from the aorta and other systemic arteries. Major aortopulmonary collateral arteries (MAPCAs) develop early in embryonic life but regress as the normal pulmonary arteries (vessels that will supply deoxygenated blood to the lungs) develop. In certain heart conditions the pulmonary arteries do not develop. The collaterals continue to grow, and can become the main supply of blood to the lungs. Though it is usually associated"} +{"qid": "test359", "pid": "6360124", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Fetal circulation\"\nthe placenta, where carbon dioxide and other waste products from the fetus are taken up and enter the maternal circulation. Some of the blood entering the right atrium does not pass directly to the left atrium through the \"\"foramen ovale\"\", but enters the right ventricle and is pumped into the pulmonary artery. In the fetus, there is a special connection between the pulmonary artery and the aorta, called the \"\"ductus arteriosus\"\", which directs most of this blood away from the lungs (which are not being used for respiration at this point as the fetus is suspended in amniotic fluid). The"} +{"qid": "test359", "pid": "2763028", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary artery\"\nPulmonary artery A pulmonary artery is an artery in the pulmonary circulation that carries deoxygenated blood from the right side of the heart to the lungs. The largest pulmonary artery is the \"\"main pulmonary artery.\"\" or \"\"pulmonary trunk\"\" from the heart, and the smallest ones are the arterioles, which lead to the capillaries that surround the pulmonary alveoli. In order of blood flow, the pulmonary arteries start as the pulmonary trunk or main pulmonary artery. The main pulmonary artery begins at the base of the right ventricle. It is short and wide—approximately in length and in diameter. The main pulmonary"} +{"qid": "test359", "pid": "9578597", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Cardiac shunt\"\nof the person whose heart it is. There are four chambers in a heart: an atrium (upper) and a ventricle (lower) on both the left and right sides. In mammals and birds, blood from the body goes to the right side of the heart first. Blood enters the upper right atrium, is pumped down to the right ventricle and from there to the lungs via the pulmonary artery. Blood going to the lungs is called the pulmonary circulation. When the blood returns to the heart from the lungs via the pulmonary vein, it goes to the left side of the"} +{"qid": "test359", "pid": "15724141", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary artery banding\"\nto reduce blood flow into the lungs. A variety of banding materials are used; one commonly used material is polytetrafluoroethylene. The band is wrapped around the main pulmonary artery and fixed into place. Once inserted, the band is tightened, narrowing the diameter of the pulmonary artery to reduce blood flow to the lungs and reduce pulmonary artery pressure. PAB followed by later repair is a common surgical alternative when early definitive repair is high-risk. One major difficulty with PAB is assessing the optimal tightness of band, as minimal changes to the diameter of the pulmonary artery can have drastic effects"} +{"qid": "test359", "pid": "11803521", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Shunt equation\"\ndead space. The following equation relates the percentage of blood flow that is not exposed to inhaled gas, called the shunt fraction formula_1, to the content of oxygen in venous, arterial, and pulmonary capillary blood. The blood entering the pulmonary system will have oxygen flux formula_3, where formula_4 is oxygen content of the venous blood and formula_5 is the total cardiac output. Similarly, the blood emerging from the pulmonary system will have oxygen flux formula_6, where formula_7 is oxygen content of the arterial blood. This will be made up of blood that bypassed the lungs (formula_8) and that which went"} +{"qid": "test359", "pid": "9578603", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary shunt\"\nlungs become consolidated. The shunt fraction is the percentage of blood put out by the heart that is not completely oxygenated. In pathological conditions such as pulmonary contusion, the shunt fraction is significantly greater and even breathing 100% oxygen does not fully oxygenate the blood. A small degree of shunt is normal and may be described as an 'anatomical shunt'. Anatomical shunting occurs when too much of the blood supplying the lung tissues via the bronchial arteries is returned via the pulmonary veins, bypassing the gas exchange. In addition, some of the smallest cardiac veins drain directly into the left"} +{"qid": "test359", "pid": "2981478", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary circulation\"\nsystemic circulation before returning again to the pulmonary circulation. From the right ventricle, blood is pumped through the semilunar pulmonary valve into the left and right main pulmonary arteries (one for each lung), which branch into smaller pulmonary arteries that spread throughout the lungs. The pulmonary circulation loop is virtually bypassed in fetal circulation. The fetal lungs are collapsed, and blood passes from the right atrium directly into the left atrium through the foramen ovale: an open conduit between the paired atria, or through the ductus arteriosus: a shunt between the pulmonary artery and the aorta. When the lungs expand"} +{"qid": "test359", "pid": "5837504", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Foramen of Panizza\"\nForamen of Panizza The foramen of Panizza (named for anatomist Bartolomeo Panizza) is a hole that connects the left and right aorta as they leave the heart of all animals of the order Crocodilia. Crocodilians have a completely separated ventricle with deoxygenated blood from the body, or systemic circulation, in the right ventricle and oxygenated blood from the lungs, or pulmonary circulation, in the left ventricle, as in birds and mammals. Two vessels, the left aorta and the pulmonary artery, exit the right ventricle. Blood from the right ventricle goes to the lungs through the pulmonary artery, as in mammals"} +{"qid": "test359", "pid": "5751041", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Bronchial artery\"\nbranches of the pulmonary arteries, and together, they supply the visceral pleura of the lung in the process. Note that much of the oxygenated blood supplied by the bronchial arteries is returned via the pulmonary veins rather than the bronchial veins. As a consequence, blood returning to the left heart is slightly less oxygenated than blood found at the level of the pulmonary capillary beds. Each bronchial artery also has a branch that supplies the esophagus. It is easy to confuse the bronchial arteries with the pulmonary arteries, because they both supply the lungs with blood, but there are important"} +{"qid": "test359", "pid": "765278", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Respiratory system\"\nlow partial pressures of oxygen in the inhaled air these sensors reflexively cause the pulmonary arterioles to constrict. (This is the exact opposite of the corresponding reflex in the tissues, where low arterial partial pressures of O cause arteriolar vasodilation.) At altitude this causes the pulmonary arterial pressure to rise resulting in a much more even distribution of blood flow to the lungs than occurs at sea level. At sea level the pulmonary arterial pressure is very low, with the result that the tops of the lungs receive far less blood than the bases, which are relatively over-perfused with blood."} +{"qid": "test359", "pid": "15724140", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary artery banding\"\n(AVSD), there may be one or multiple holes in the walls separating adjacent chambers. This causes left-to-right shunting of blood as oxygenated blood can flow back to the right side of the heart, resulting in a mixture of oxygenated and deoxygenated blood. Increased amounts of blood on the right side of the heart cause an excess of blood flow into the lungs (pulmonary circulation) and increased pulmonary resistance due to the buildup of pressure. The goal of PAB is to reduce pulmonary artery pressure and excess pulmonary blood flow. PAB involves the insertion of a band around the pulmonary artery"} +{"qid": "test359", "pid": "473651", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "Lung\nreceptors in the smooth muscle of the airways initiate a reflex known as the Hering–Breuer reflex that prevents the lungs from over-inflation, during forceful inspiration. The lungs have a dual blood supply provided by a bronchial and a pulmonary circulation. The bronchial circulation supplies oxygenated blood to the airways of the lungs, through the bronchial arteries that leave the aorta. There are usually three arteries, two to the left lung and one to the right, and they branch alongside the bronchi and bronchioles. The pulmonary circulation carries deoxygenated blood from the heart to the lungs and returns the oxygenated blood"} +{"qid": "test359", "pid": "2763032", "query": "where does blood go when it leaves the pulmonary artery", "answer": "lungs", "passage": "\"Pulmonary artery\"\nand right ventricles. As a septum develops between the two ventricles of the heart, two bulges form on either side of the truncus arteriosus. These progressively enlarge until the trunk splits into the aorta and pulmonary arteries. During early development, the ductus arteriosis connects the pulmonary trunk and the aortic arch, allowing blood to bypass the lungs. The pulmonary artery carries deoxygenated blood from the right ventricle to the lungs. The blood here passes through capillaries adjacent to alveoli and becomes oxygenated as part of the process of respiration. In contrast to the \"\"pulmonary arteries\"\", the bronchial arteries supply nutrition"} +{"qid": "test3590", "pid": "2948156", "query": "what type of reaction occurs to form a dipeptide", "answer": "peptide bond", "passage": "Dipeptide\ncombined in the presence of a coupling agent, which facilitates formation of the amide bond: Subsequent to this coupling reaction, the amine protecting group P and the ester are converted to the free amine and carboxylic acid, respectively. For many amino acids, the ancillary functional groups are protected. The condensation of the amine and the carboxylic acid to form the peptide bond generally employs coupling agents to activate the carboxylic acid. The Bergmann azlactone peptide synthesis is a classic organic synthesis for the preparation of dipeptides. Dipeptides are produced from polypeptides by the action of the hydrolase enzyme dipeptidyl peptidase."} +{"qid": "test3590", "pid": "323434", "query": "what type of reaction occurs to form a dipeptide", "answer": "peptide bond", "passage": "\"Peptide bond\"\nPeptide bond A peptide bond is an amide type of covalent chemical bond linking two consecutive alpha-amino acids from C1 (carbon number one) of one alpha-amino acid and N2 (nitrogen number two) of another along a peptide or protein chain. It can also be called an eupeptide bond to separate it from an isopeptide bond, a different type of amide bond between two amino acids. When two amino acids form a \"\"dipeptide\"\" through a \"\"peptide bond\"\" it is type of condensation reaction. In this kind of condensation, two amino acids approach each other, with the non-side chain (C1) carboxylic acid"} +{"qid": "test3590", "pid": "12736", "query": "what type of reaction occurs to form a dipeptide", "answer": "peptide bond", "passage": "\"Amino acid\"\na peptide bond formed between the side chain carboxyl of the glutamate (the gamma carbon of this side chain) and the amino group of the cysteine. This dipeptide is then condensed with glycine by glutathione synthetase to form glutathione. In chemistry, peptides are synthesized by a variety of reactions. One of the most-used in solid-phase peptide synthesis uses the aromatic oxime derivatives of amino acids as activated units. These are added in sequence onto the growing peptide chain, which is attached to a solid resin support. The ability to easily synthesize vast numbers of different peptides by varying the types"} +{"qid": "test3591", "pid": "17191772", "query": "when did india win their first cricket match", "answer": "1952", "passage": "\"India national cricket team record by opponent\"\nIndia national cricket team record by opponent The India national cricket team represents India in international cricket and is a full member of the International Cricket Council with Test and One Day International (ODI) status. They first competed in international cricket in 1932, when they played against England in a three-day Test match; England won the match by 158 runs. India's first Test series as an independent country was against Australia. They secured their first Test win against England in 1952 at Madras Cricket Club Ground. , India have played 522 Test matches; they have won 145 matches, lost 160"} +{"qid": "test3591", "pid": "17539956", "query": "when did india win their first cricket match", "answer": "1952", "passage": "\"Pakistan national cricket team record by opponent\"\nPakistan national cricket team record by opponent The Pakistan national cricket team represents Pakistan in international cricket and is a full member of the International Cricket Council (ICC) with Test and One Day International (ODI) status. Pakistan first competed in international cricket in 1952, when they played against India in a four-day Test match; India won the match by an innings and 70 runs at the Feroz Shah Kotla Ground, Delhi. In the same series, Pakistan recorded their first Test win, the second match by an innings and 43 runs at the University Ground, Lucknow. , Pakistan have played 410"} +{"qid": "test3591", "pid": "15426697", "query": "when did india win their first cricket match", "answer": "1952", "passage": "\"Alan Dowding\"\nOxford University cricket team, usually as a number five batsman but also batting in the top order. In just his third first-class appearance, Dowding scored 105 against Nottinghamshire. He made it back to back centuries when he made 103 not out in a win over Free Foresters in his very next match. His performances in 1952 were mixed, but he did score 69 against India. In 1952 he also played two first-class matches for the Commonwealth XI and against batted well against India, with a first innings 54 and 35 in the second. Appointed Oxford captain in 1953, Dowding led"} +{"qid": "test3592", "pid": "4289378", "query": "the era of the great mughals began with the accession of", "answer": "Babur", "passage": "\"Indo-Persian culture\"\nDelhi Sultanate (1206–1526). The invasion of Babur in 1526, the end of the Delhi Sultanate, and the establishment of what would become the Mughal Empire would usher the golden age of Indo-Persian culture with particular reference to the art and architecture of the Mughal era. The Mughal Era to the British Raj: Persian persisted as the language of the Mughals up to and including the year 1707 which marked the death of the Emperor Aurangzeb, generally considered the last of the \"\"Great Mughals\"\". Thereafter, with the decline of the Mughal empire, the 1739 invasion of Delhi by Nader Shah and"} +{"qid": "test3592", "pid": "12931504", "query": "the era of the great mughals began with the accession of", "answer": "Akbar the Great", "passage": "\"India–Mongolia relations\"\nthe Mughal Empire, the dynasty was ended. The Mughals were perhaps the richest single dynasty to have ever existed. During the Mughal era, the dominant political forces consisted of the Mughal Empire and its tributaries and, later on, the rising successor states - including the Maratha Empire - which fought an increasingly weak Mughal dynasty. The Mughals, while often employing brutal tactics to subjugate their empire, had a policy of integration with Indian culture, which is what made them successful where the short-lived Sultanates of Delhi had failed. Akbar the Great was particularly famed for this. Akbar declared \"\"Amari\"\" or"} +{"qid": "test3592", "pid": "10748382", "query": "the era of the great mughals began with the accession of", "answer": "Akbar the Great", "passage": "\"Wah Gardens\"\nthe trees that were there in Mughal days, repairs of the twelve-door structures, the bathrooms and waterfalls will be completed soon. Once completed, the gardens are expected to return to their former state. - Wah Gardens @ Photography.by.Riaz Wah Gardens Wah Gardens (), also known as Mughal Garden Wah (), is a garden-complex dating back to the era of the Mughal Emperor Akbar the Great (1542-1605), located at Wah village, of Hasan Abdal, in Punjab, Pakistan. The site was largely abandoned after Mughal rule, and while it lied in ruins for a number of years, it is now being restored"} +{"qid": "test3592", "pid": "10748376", "query": "the era of the great mughals began with the accession of", "answer": "Akbar the Great", "passage": "\"Wah Gardens\"\nWah Gardens Wah Gardens (), also known as Mughal Garden Wah (), is a garden-complex dating back to the era of the Mughal Emperor Akbar the Great (1542-1605), located at Wah village, of Hasan Abdal, in Punjab, Pakistan. The site was largely abandoned after Mughal rule, and while it lied in ruins for a number of years, it is now being restored by the Pakistan Department of Archaeology The gardens are in the old village of Wah, close to the present garrison town of Wah, located 50 km north west of Islamabad on the main Grand Trunk Road. Raja Man"} +{"qid": "test3592", "pid": "18868813", "query": "the era of the great mughals began with the accession of", "answer": "Akbar the Great", "passage": "\"Syed Zainul Abedin\"\nSyed Zainul Abedin Syed Zainul Abedin Ali Khan is the Dewan (Ministerial level representative of Mughals for Dargah) of the Ajmer Sharif Dargah founded by Khawaja Moinuddin Chishti (Khwaja Gareeb Nawaz), according to the Dargah Act and APEX Court of India. Khwaja Hussain was the first Dewan or minister on behalf of the Mughals who was appointed in the later era of the Mughal Emperor Akbar the Great. After having been satisfied with his services as Daroga Langar Khana or keeper of the kitchen at the Dargah in Ajmer Sharif he was promoted to the position of Dewan. As described"} +{"qid": "test3592", "pid": "13760936", "query": "the era of the great mughals began with the accession of", "answer": "Akbar the Great", "passage": "\"Mughal Empire\"\nHumayun's exile in Persia established diplomatic ties between the Safavid and Mughal Courts, and led to increasing Persian cultural influence in the Mughal Empire. The restoration of Mughal rule began after Humayun's triumphant return from Persia in 1555, but he died from a fatal accident shortly afterwards. Akbar the Great (reigned 1556–1605) was born Jalal-ud-din Muhammad in the Rajput Umarkot Fort, to Humayun and his wife Hamida Banu Begum, a Persian princess. Akbar succeeded to the throne under a regent, Bairam Khan, who helped consolidate the Mughal Empire in India. Through warfare and diplomacy, Akbar was able to extend the"} +{"qid": "test3592", "pid": "5432053", "query": "the era of the great mughals began with the accession of", "answer": "Akbar the Great", "passage": "Sheikhupura\nhe refers to the town as \"\"Jehangirabad.\"\" The city then came to be known by its current name, which derives from Jehangir's nickname \"\"Shekhu\"\" that was given to him by his mother, wife of Akbar the Great. Mughal Emperor Jahangir laid the foundations of Sheikhupura in 1607 near the older town of Jandiala Sher Khan, an important provincial town during the early to middle Mughal era. He also erected the nearby Hiran Minar, Sheikhpura's most renowned site, between 1607 and 1620 as a monument to his beloved pet deer, \"\"Mansiraj\"\", at a time when the area served as a royal"} +{"qid": "test3593", "pid": "2634511", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Financial accounting\"\nReporting Standards (IFRS), which are issued by the International Accounting Standards Board (IASB). Financial accounting serves the following purposes: Objectives of Financial Accounting The accounting equation (Assets = Liabilities + Owners' Equity) and financial statements are the main topics of financial accounting. The trial balance, which is usually prepared using the double-entry accounting system, forms the basis for preparing the financial statements. All the figures in the trial balance are rearranged to prepare a profit & loss statement and balance sheet. Accounting standards determine the format for these accounts (SSAP, FRS, IFRS). Financial statements display the income and expenditure for"} +{"qid": "test3593", "pid": "51743", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "Bookkeeping\ntransaction, whether cash or credit, into the correct daybook—that is, petty cash book, suppliers ledger, customer ledger, etc.—and the general ledger. Thereafter, an accountant can create financial reports from the information recorded by the bookkeeper. Bookkeeping refers mainly to the record-keeping aspects of financial accounting, and involves preparing source documents for all transactions, operations, and other events of a business. The bookkeeper brings the books to the trial balance stage: an accountant may prepare the income statement and balance sheet using the trial balance and ledgers prepared by the bookkeeper. The origin of book-keeping is lost in obscurity, but recent"} +{"qid": "test3593", "pid": "5791524", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Balance (accounting)\"\nand liabilities. To better understand balance in the accounting equation. Balancing the books refers to the primary balance sheet equation of: The first \"\"balancing\"\" of books, or of the balance sheet financial statement in accounting is to check iterations (trial balance) to be sure the equation above applies, and where assets and liabilities are unequal, to equalize them by debiting or crediting owner's equity (i.e. if assets exceed liabilities, equity is increased, if liabilities exceed assets, equity is decreased, both in the amount needed to balance the equation). In addition to the balance sheet, the other primary financial statement (the"} +{"qid": "test3593", "pid": "15351692", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Financial ratio\"\nexpresses the same information, but may be more understandable: for instance, the earnings yield can be compared with bond yields, while the P/E ratio cannot be: for example, a P/E ratio of 20 corresponds to an earnings yield of 5%. Values used in calculating financial ratios are taken from the balance sheet, income statement, statement of cash flows or (sometimes) the statement of changes in equity. These comprise the firm's \"\"accounting statements\"\" or financial statements. The statements' data is based on the accounting method and accounting standards used by the organisation. Financial ratios quantify many aspects of a business and"} +{"qid": "test3593", "pid": "2634506", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Financial accounting\"\nfinancial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement. The total assets always equal the total combined liabilities and equity in dollar amount. This statement best demonstrates the basic accounting equation - \"\"Assets = Liabilities + Equity\"\". The statement can be used to help show the status of a company. Accounting standards often set out a general format that companies are expected to follow when presenting their balance sheets. International Financial Reporting Standards normally require that companies report current assets"} +{"qid": "test3593", "pid": "12377548", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Forensic accountant\"\ntech to the extent of using computers to defraud and perpetrate financial related crimes in such a manner that a traditional forensic accountant can not be able to trace. Sometimes investigation involves e-mail tracing to ascertain intent an element that must exist for any one to be convicted of fraud. Certified Forensic Investigation Professionals have such training. They are part forensic accountants and part digital forensic experts. Financial statements are very important to forensic accountants because they must analyze the information given on the statements and compare that information to other sources. The balance sheet, income statement, statement of owner's"} +{"qid": "test3593", "pid": "10276032", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"FASB 133\"\nFASB 133 Launched prior to the millennium, (and subsequently amended) FAS 133 \"\"Accounting for Derivative Instruments and Hedging Activities\"\" provided an \"\"integrated accounting framework for derivative instruments and hedging activities.\"\" Statements of Financial Accounting Standards No. 133, \"\"Accounting for Derivative Instruments and Hedging Activities\"\", commonly known as FAS 133, is an accounting standard issued in June 1998 by the Financial Accounting Standards Board (FASB) that requires companies to measure all assets and liabilities on their balance sheet at “fair value”. This standard was created in response to significant hedging losses involving derivatives years ago and the attempt to control and"} +{"qid": "test3593", "pid": "3120848", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Financial analysis\"\nrun, without having to sustain significant losses in the conduct of its business. Assessing a company's stability requires the use of both the income statement and the balance sheet, as well as other financial and non-financial indicators. etc. Financial analysts often compare financial ratios (of solvency, profitability, growth, etc.): These ratios are calculated by dividing a (group of) account balance(s), taken from the balance sheet and/or the income statement, by another, for example : Comparing financial ratios is merely one way of conducting financial analysis. Financial ratios face several theoretical challenges: Financial analysts can also use percentage analysis which involves"} +{"qid": "test3593", "pid": "6711973", "query": "which financial statement involves all aspects of the accounting​ equation", "answer": "balance sheet", "passage": "\"Accounting analyst\"\nAccounting analyst An accounting analyst evaluates public company financial statements. Public companies issue these (10-K) annual financial statements as required by the Security and Exchange Commission. The statements include the balance sheet, the income statement, the statement of cash flows and the notes to the financial statements. Specifically, the notes to the financial statements contain considerable quantitative detail supporting the financial statements along with narrative information. This individual has extensive training in understanding financial accounting principles for public companies based on generally accepted accounting principles as provided by the Financial Accounting Standards Board. Or, he/she may have additional experience in"} +{"qid": "test3597", "pid": "2964922", "query": "where does the last name roberts come from", "answer": "Norman", "passage": "Hodgson\nname \"\"Hrodgeir\"\" (from which, as it happens, the name Roger has evolved). One of the earliest Victorian surname studies is by Mark Lower (1842, p. 96) who suggests that Hodgson may come from \"\"son of Roger\"\" but immediately adds \"\"if not from Odo.\"\" In a more extensive discussion of the surname, Robert Ferguson (1858) entertains a number of possibilities concerning its origin. One is to connect it to the Scandinavian first name Odda. Ferguson notes (1858, p. 225) that this name, although frequently appearing before the Norman Conquest, does not appear to be a word in the Anglo-Saxon language. He"} +{"qid": "test3598", "pid": "13802594", "query": "who dies in transformers revenge of the fallen", "answer": "Jetfire", "passage": "\"Transformers (film comic series)\"\nwith each issue focusing on a different \"\"Revenge of the Fallen\"\" character. The six Transformers whose stories are seen are: Bumblebee, Sideswipe, Jetfire, The Fallen, Arcee and Ravage. The events in these stories occur before or after \"\"Revenge of the Fallen\"\". Nefarious is a 6-part comic series that ran from March 2010 to August 2010. The story picks up from the end of \"\"Revenge of the Fallen\"\" and introduces an all-new adversary for the Transformers (both Autobot and Decepticon). Seeds for the new series were shown in the fifth \"\"Tales of the Fallen\"\" issue, featuring Ravage, and he along with"} +{"qid": "test36", "pid": "2847980", "query": "who sings the theme song for the proud family", "answer": "Solange Knowles", "passage": "\"Solange Knowles\"\nhusband, Alan Ferguson. During the 2017 Roots Picnic Festival in Philadelphia, Pennsylvania, Knowles performed a rendition of the sing-along from \"\"The Proud Family\"\", the television series whose theme song she was featured on in 2001. In December 2017, Solange directed the video of The Weekend by SZA (singer). On October 15, 2018, it was announced by Knowles that she would be releasing her fourth studio album this Fall during an interview with New York Times Style Magazine. Knowles cites as her influences Motown girl groups such as The Supremes and The Marvelettes, and Martha Reeves, lead singer of Martha and"} +{"qid": "test36", "pid": "2847963", "query": "who sings the theme song for the proud family", "answer": "Destiny's Child", "passage": "\"Solange Knowles\"\nManaged by her father Mathew, Knowles first ventured into the music business in 2001 as the lead singer, backed by Destiny's Child, on the title theme song for the animated television series \"\"The Proud Family\"\". She also was a featured performer on \"\"Hey Goldmember\"\" for the soundtrack to the 2002 film \"\"Austin Powers in Goldmember\"\", as well as a backup singer on the track \"\"Little Drummer Boy\"\" on Destiny's Child's 2001 holiday album \"\"8 Days of Christmas\"\". In 2002, she was featured on Lil Romeo's second studio album \"\"Game Time\"\", singing portions of Luther Vandross-penned \"\"So Amazing\"\" on the single"} +{"qid": "test360", "pid": "18845905", "query": "who were the bands in pitch perfect 3", "answer": "the Bellas", "passage": "\"Pitch Perfect 3\"\nPitch Perfect 3 Pitch Perfect 3 is a 2017 American musical comedy film directed by Trish Sie and written by Kay Cannon and Mike White. A sequel to \"\"Pitch Perfect 2\"\" (2015), and the third installment in the \"\"Pitch Perfect\"\" series, the film stars Anna Kendrick, Anna Camp, Rebel Wilson, Brittany Snow, Hailee Steinfeld, Hana Mae Lee, Ester Dean, Chrissie Fit, Alexis Knapp, John Lithgow, Matt Lanter, Ruby Rose, Kelley Jakle, Shelley Regner, Elizabeth Banks, and John Michael Higgins. The film follows the Bellas, now graduated from college, reuniting for one final performance together during an overseas USO tour. Principal"} +{"qid": "test360", "pid": "18845922", "query": "who were the bands in pitch perfect 3", "answer": "the Bellas", "passage": "\"Pitch Perfect 3\"\nin the next 12 months\"\". Pitch Perfect 3 Pitch Perfect 3 is a 2017 American musical comedy film directed by Trish Sie and written by Kay Cannon and Mike White. A sequel to \"\"Pitch Perfect 2\"\" (2015), and the third installment in the \"\"Pitch Perfect\"\" series, the film stars Anna Kendrick, Anna Camp, Rebel Wilson, Brittany Snow, Hailee Steinfeld, Hana Mae Lee, Ester Dean, Chrissie Fit, Alexis Knapp, John Lithgow, Matt Lanter, Ruby Rose, Kelley Jakle, Shelley Regner, Elizabeth Banks, and John Michael Higgins. The film follows the Bellas, now graduated from college, reuniting for one final performance together during"} +{"qid": "test360", "pid": "18963260", "query": "who were the bands in pitch perfect 3", "answer": "the Bellas", "passage": "\"Pitch Perfect (film series)\"\nfind out that they are actually competing with other bands on tour to be the opening act for DJ Khaled. The film is based on Mickey Rapkin's non-fiction book \"\"Pitch Perfect: The Quest for Collegiate a Cappella Glory\"\". Rapkin, senior editor at \"\"GQ\"\" magazine, spent a season covering competitive collegiate a cappella. He followed the Tufts University Beelzebubs, the University of Oregon Divisi (the loose inspiration for the Bellas), and the University of Virginia Hullabahoos, who have a cameo in the film. Rapkin's book mainly covers the singing, groupies, partying and rivalries. Two members of the a cappella community, Deke"} +{"qid": "test360", "pid": "18845907", "query": "who were the bands in pitch perfect 3", "answer": "Evermoist", "passage": "\"Pitch Perfect 3\"\nsing at an event. Arriving at the reunion, they learn that Emily simply invited them to see the new Bellas. They later gather at a bar in disappointment, but express how much they miss each other. Aubrey convinces them to join a USO tour, near her Army officer father. Emily fills in for Stacie, who is eight months pregnant. The Bellas land at a base in Spain, greeted by their liaisons, soldiers Chicago and Zeke. They also meet the other three bands, including the mean-spirited female quartet Evermoist. The others use musical instruments, helping them defeat the Bellas in a"} +{"qid": "test3600", "pid": "5942748", "query": "which church was given a letter in the book of revelation", "answer": "Laodicea", "passage": "\"Laodicea on the Lycus\"\ncertain Epaphras from Colossae, who worked hard for the Christians of the three Phrygian cities of Colossae, Laodicea and Hierapolis. Asking for greetings to be sent to the Laodicean Christians, the writer requests that his letter be read publicly at Laodicea (Colossians 4:16) and that another letter addressed to the Laodiceans (see Epistle to the Laodiceans) be given a public reading at Colossae. Some Greek manuscripts of the First Epistle to Timothy end with the words: \"\"Written at Laodicea, metropolis of Phrygia Pacatiana\"\". Laodicea is also one of the seven churches of Asia mentioned in the Book of Revelation. The"} +{"qid": "test3600", "pid": "16900101", "query": "which church was given a letter in the book of revelation", "answer": "Ephesus", "passage": "\"Metropolis of Ephesus\"\nreleased late in his life and returned to Ephesus, where it is thought that he wrote his Gospel. Tradition says that the Virgin Mary lived in Ephesus near to John. Apollos, a Jew from Alexandria who was a disciple of John the Baptist, arrived in Ephesus and met with Aquila and Priscilla. Christian canon identifies the Epistle to the Ephesians as a letter to the church in Ephesus, and John of Patmos mentions the church as one of the seven churches of Asia in the Book of Revelation. In Revelation (), the church's perseverance, scrutiny toward alleged apostles and hatred"} +{"qid": "test3600", "pid": "124305", "query": "which church was given a letter in the book of revelation", "answer": "Ephesus", "passage": "Ephesus\nthe Gospel of John might have been written in Ephesus, \"\"c\"\" 90–100. Ephesus was one of the seven cities addressed in the Book of Revelation, indicating that the church at Ephesus was strong. Two decades later, the church at Ephesus was still important enough to be addressed by a letter written by Bishop Ignatius of Antioch to the Ephesians in the early 2nd century AD, that begins with, \"\"Ignatius, who is also called Theophorus, to the Church which is at Ephesus, in Asia, deservedly most happy, being blessed in the greatness and fullness of God the Father, and predestinated before"} +{"qid": "test3601", "pid": "338342", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "\"Peripheral nervous system\"\nit exposed to toxins and mechanical injuries. The peripheral nervous system is divided into the somatic nervous system and the autonomic nervous system. In the somatic nervous system, the cranial nerves are part of the PNS with the exception of the optic nerve (cranial nerve II), along with the retina. The second cranial nerve is not a true peripheral nerve but a tract of the diencephalon. Cranial nerve ganglia originated in the CNS. However, the remaining ten cranial nerve axons extend beyond the brain and are therefore considered part of the PNS. The autonomic nervous system is an involuntary control"} +{"qid": "test3601", "pid": "2189279", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "Neuroanatomy\nprimarily of the axons of neurons, along with a variety of membranes that wrap around and segregate them into nerve fascicles. The vertebrate nervous system is divided into the central and peripheral nervous systems. The central nervous system (CNS) consists of the brain, retina, and spinal cord, while the peripheral nervous system (PNS) is made up of all the nerves outside of the CNS that connect it to the rest of the body. The PNS is further subdivided into the somatic and autonomic nervous systems. The somatic nervous system is made up of \"\"afferent\"\" neurons, which bring sensory information from"} +{"qid": "test3601", "pid": "338343", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "\"Peripheral nervous system\"\nof smooth muscle and glands. The connection between CNS and organs allows the system to be in two different functional states: sympathetic and parasympathetic. The peripheral nervous system is divided into the somatic nervous system, and the autonomic nervous system. The somatic nervous system is under voluntary control, and transmits signals from the brain to end organs such as muscles. The sensory nervous system is part of the somatic nervous system and transmits signals from senses such as taste and touch (including fine touch and gross touch) to the spinal cord and brain. The autonomic nervous system is a 'self-regulating'"} +{"qid": "test3601", "pid": "157245", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "Ganglion\ndifferent neurological structures in the body, such as the peripheral and central nervous systems. Among vertebrates there are three major groups of ganglia: In the autonomic nervous system, fibers from the central nervous system to the ganglia are known as preganglionic fibers, while those from the ganglia to the effector organ are called postganglionic fibers. The term \"\"ganglion\"\" refers to the peripheral nervous system. However, in the brain (part of the central nervous system), the \"\"basal ganglia\"\" is a group of nuclei interconnected with the cerebral cortex, thalamus, and brainstem, associated with a variety of functions: motor control, cognition, emotions,"} +{"qid": "test3601", "pid": "9447", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "Anatomy\nfound in groups and send messages along neural networks to other parts of the organism. Neurons can be connected together in ganglia. In higher animals, specialized receptors are the basis of sense organs and there is a central nervous system (brain and spinal cord) and a peripheral nervous system. The latter consists of sensory nerves that transmit information from sense organs and motor nerves that influence target organs. The peripheral nervous system is divided into the somatic nervous system which conveys sensation and controls voluntary muscle, and the autonomic nervous system which involuntarily controls smooth muscle, certain glands and internal"} +{"qid": "test3601", "pid": "338354", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "\"Peripheral nervous system\"\nfunction one or more nerves are damaged through a variety of means. Toxic damage may occur because of diabetes (diabetic neuropathy), alcohol, heavy metals or other toxins; some infections; autoimmune and inflammatory conditions such as amyloidosis and sarcoidosis. Peripheral neuropathy is associated with a sensory loss in a \"\"glove and stocking\"\" distribution that begins at the peripheral and slowly progresses upwards, and may also be associated with acute and chronic pain. Peripheral neuropathy is not just limited to the somatosensory nerves, but the autonomic nervous system too (autonomic neuropathy). Peripheral nervous system The peripheral nervous system (PNS) is one of"} +{"qid": "test3601", "pid": "20456628", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "\"Classification of peripheral nerves\"\nClassification of peripheral nerves The classification of peripheral nerves in the peripheral nervous system (PNS) groups the nerves into two main groups, the somatic and the autonomic nervous systems. Together, these two systems provide information regarding the location and status of the limbs, organs, and the remainder of the body to the central nervous system (CNS) via nerves and ganglia present outside of the spinal cord and brain. The somatic nervous system directs all voluntary movements of the skeletal muscles, and can be sub-divided into afferent and efferent neuronal flow. The autonomic nervous system is divided primarily into the sympathetic"} +{"qid": "test3601", "pid": "17565910", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "Neuromechanics\nis then composed of three sub-systems: the somatic nervous system, the autonomic nervous system, and the visceral nervous system. The autonomic nervous system is also broken down into the sympathetic nervous system, the parasympathetic nervous system, and the enteric nervous system. The nervous system responsible for voluntary motion, including lower limb motion, is the somatic nervous system. Though the somatic nervous system is part of the peripheral nervous system, motion also involves use of elements of the central nervous system: the brain and the spinal cord. Neuroscience contributes to human neuromechanics by studying how different neurological diseases contribute to biomechanical"} +{"qid": "test3601", "pid": "20456639", "query": "what parts make up the peripheral nervous system", "answer": "autonomic nervous system", "passage": "\"Classification of peripheral nerves\"\ndisease, particularly those of the gut and stomach region. Classification of peripheral nerves The classification of peripheral nerves in the peripheral nervous system (PNS) groups the nerves into two main groups, the somatic and the autonomic nervous systems. Together, these two systems provide information regarding the location and status of the limbs, organs, and the remainder of the body to the central nervous system (CNS) via nerves and ganglia present outside of the spinal cord and brain. The somatic nervous system directs all voluntary movements of the skeletal muscles, and can be sub-divided into afferent and efferent neuronal flow. The"} +{"qid": "test3602", "pid": "6878981", "query": "who were the two mathematicians that invented calculus", "answer": "Isaac Newton", "passage": "\"Leibniz–Newton calculus controversy\"\n(Chali 2na). Tyson delivers a rap line stating that Newton was busy \"\"sticking daggers in Leibniz\"\". In an episode of \"\"The Big Bang Theory\"\", Leonard is accused of not wanting the bust of Isaac Newton at the top of the Christmas tree by Sheldon, saying it is because he is a Leibniz man. Leibniz–Newton calculus controversy The calculus controversy (, \"\"priority dispute\"\") was an argument between the mathematicians Isaac Newton and Gottfried Wilhelm Leibniz over who had first invented calculus. The question was a major intellectual controversy, which began simmering in 1699 and broke out in full force in 1711."} +{"qid": "test3602", "pid": "6878960", "query": "who were the two mathematicians that invented calculus", "answer": "Isaac Newton", "passage": "\"Leibniz–Newton calculus controversy\"\nLeibniz–Newton calculus controversy The calculus controversy (, \"\"priority dispute\"\") was an argument between the mathematicians Isaac Newton and Gottfried Wilhelm Leibniz over who had first invented calculus. The question was a major intellectual controversy, which began simmering in 1699 and broke out in full force in 1711. Leibniz had published his work first, but Newton's supporters accused Leibniz of plagiarizing Newton's unpublished ideas. Leibniz died in disfavor in 1716 after his patron, the Elector Georg Ludwig of Hanover, became King George I of Great Britain in 1714. The modern consensus is that both men developed their ideas independently. Newton claimed"} +{"qid": "test3602", "pid": "8595281", "query": "who were the two mathematicians that invented calculus", "answer": "Isaac Newton", "passage": "\"Scientific priority\"\nthe earliest documented controversy was a bitter claim between Isaac Newton and Gottfried Wilhelm Leibniz in the 17th century about priority in the invention of calculus. This particular incidence clearly shows human biases and prejudice. It has become unanimously accepted that both the mathematicians independently developed calculus. Since then priority has caused a number of historical maladies in the history of science. In the cases of scientists who have since achieved incredible levels of popularity, such as Charles Darwin and Albert Einstein, priority questions are often rooted in taking too seriously the myth of the \"\"lone genius\"\" which is often"} +{"qid": "test3602", "pid": "600291", "query": "who were the two mathematicians that invented calculus", "answer": "Isaac Newton", "passage": "\"Henri Lebesgue\"\na high degree of geometric symmetry. In the 17th century, Isaac Newton and Gottfried Wilhelm Leibniz discovered the idea that integration was intrinsically linked to differentiation, the latter being a way of measuring how quickly a function changed at any given point on the graph. This surprising relationship between two major geometric operations in calculus, differentiation and integration, is now known as the Fundamental Theorem of Calculus. It has allowed mathematicians to calculate a broad class of integrals for the first time. However, unlike Archimedes' method, which was based on Euclidean geometry, mathematicians felt that Newton's and Leibniz's integral calculus"} +{"qid": "test3603", "pid": "789631", "query": "where do red ear slider turtles lay eggs", "answer": "a hole", "passage": "\"Red-eared slider\"\nremain viable and available in the female's body in the absence of mating. During the last weeks of gestation, the female spends less time in the water and smells and scratches at the ground, indicating she is searching for a suitable place to lay her eggs. The female excavates a hole, using her hind legs, and lays her eggs in it. Incubation takes 59 to 112 days. Late-season hatchlings may spend the winter in the nest and emerge when the weather warms in the spring. Just prior to hatching, the egg contains 50% turtle and 50% egg sac. A new"} +{"qid": "test3604", "pid": "20164129", "query": "when is the new season of wentworth coming out", "answer": "19 June 2018", "passage": "\"Wentworth (season 6)\"\nWentworth (season 6) The sixth season of television drama series \"\"Wentworth\"\" premiered on Showcase in Australia on 19 June 2018 and concluded on 4 September 2018. It is executive produced by FremantleMedia's Director of Drama, Jo Porter. The season comprised 12 episodes. The sixth season picks up just days after the escape of Franky Doyle and Joan Ferguson. This season introduced three new characters portrayed by Leah Purcell, Susie Porter and Rarriwuy Hick. On 9 May 2017, it was announced that FremantleMedia had renewed Wentworth for a sixth season, set to air in 2018. FremantleMedia's Director of Drama, Jo"} +{"qid": "test3605", "pid": "8618168", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "Inductivism\nprovides no clear way to frame axioms, let alone develop principles or theoretical constructs universally true, researchers might observe and collect data endlessly. For this vast venture, Bacon's advised precise record keeping and collaboration among researchers—a vision resembling today's research institutes—while the true understanding of nature would permit technological innovation, heralding a New Atlantis. Modern science arose against Aristotelian physics, Both geocentric were Aristotelian physics and Ptolemaic astronomy, which latter was a basis of astrology, a basis of medicine. Nicolaus Copernicus proposed heliocentrism, perhaps to better fit astronomy to Aristotelian physics' fifth element—universal essence, or quintessence, or aether—its intrinsic motion"} +{"qid": "test3605", "pid": "15091198", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Galileo Galilei\"\nbest equivocal, however. In the whole world prior to Galileo's conflict with the Church, the majority of educated people subscribed either to the Aristotelian geocentric view that the earth was the center of the universe and that all heavenly bodies revolved around the Earth, or the Tychonic system that blended geocentrism with heliocentrism. Nevertheless, following the death of Copernicus and before Galileo, heliocentrism was relatively uncontroversial; Copernicus's work was used by Pope Gregory XIII to reform the calendar in 1582. Opposition to heliocentrism and Galileo's writings combined religious and scientific objections. Scientific opposition came from Tycho Brahe and others and"} +{"qid": "test3605", "pid": "6090258", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Copernican Revolution\"\nTycho Brahe accepted Copernicus's model but reasserted geocentricity. In 1572, Tycho Brahe observed a new star in the constellation Cassiopeia. For eighteen months, it shone brightly in the sky with no visible parallax, indicating it was part of the heavenly region of stars according to Aristotle's model. However, according to that model, no change could take place in the heavens so Tycho’s observation was a major discredit to Aristotle’s theories. In 1577, Tycho observed a great comet in the sky. Based on his parallax observations, the comet passed through the region of the planets. According to Aristotelian theory, only uniform"} +{"qid": "test3605", "pid": "864323", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Geocentric model\"\ncould remove Ptolemy's epicycles because the retrograde motion could be seen to be the result of the combination of Earth and planet movement and speeds. Copernicus felt strongly that equants were a violation of Aristotelian purity, and proved that replacement of the equant with a pair of new epicycles was entirely equivalent. Astronomers often continued using the equants instead of the epicycles because the former was easier to calculate, and gave the same result. It has been determined, in fact, that the Copernican, Ptolemaic and even the Tychonic models provided identical results to identical inputs. They are computationally equivalent. It"} +{"qid": "test3605", "pid": "864333", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Geocentric model\"\nthat both Venus and Mercury went around the Sun rather than the Earth, but this is no longer accepted. Martianus Capella definitely put Mercury and Venus in orbit around the Sun. Aristarchus of Samos was the most radical. He wrote a work, which has not survived, on heliocentrism, saying that the Sun was at the center of the universe, while the Earth and other planets revolved around it. His theory was not popular, and he had one named follower, Seleucus of Seleucia. In 1543, the geocentric system met its first serious challenge with the publication of Copernicus' \"\"De revolutionibus orbium"} +{"qid": "test3605", "pid": "4617718", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Chinese astronomy\"\nWestern astronomy, then undergoing its own revolution, to China and—via João Rodrigues's gifts to Jeong Duwon—to Joseon Korea. After the Galileo affair early in the seventeenth century, the Roman Catholic Jesuit order was required to adhere to geocentrism and ignore the heliocentric teachings of Copernicus and his followers, even though they were becoming standard in European astronomy. Thus, the Jesuits initially shared an Earth-centered and largely pre-Copernican astronomy with their Chinese hosts (i.e., the Ptolemaic-Aristotelian views from Hellenistic times). The Jesuits (such as Giacomo Rho) later introduced Tycho's geoheliocentric model as the standard cosmological model. The Chinese often were fundamentally"} +{"qid": "test3605", "pid": "864340", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Geocentric model\"\n1631). The change from circular orbits to elliptical planetary paths dramatically improved the accuracy of celestial observations and predictions. Because the heliocentric model devised by Copernicus was no more accurate than Ptolemy's system, new observations were needed to persuade those who still adhered to the geocentric model. However, Kepler's laws based on Brahe's data became a problem which geocentrists could not easily overcome. In 1687, Isaac Newton stated the law of universal gravitation, described earlier as a hypothesis by Robert Hooke and others. His main achievement was to mathematically derive Kepler's laws of planetary motion from the law of gravitation,"} +{"qid": "test3605", "pid": "6090268", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Copernican Revolution\"\nthe most influential in the transition from geocentrism to heliocentrism. In the sixteenth century, a number of writers inspired by Copernicus, such as Thomas Digges, Giordano Bruno and William Gilbert argued for an indefinitely extended or even infinite universe, with other stars as distant suns. This contrasts with the Aristotelian view of a sphere of the fixed stars. Although opposed by Copernicus and Kepler (with Galileo not expressing a view), by the middle of the 17th century this became widely accepted, partly due to the support of René Descartes. The Chinese astronomical tradition has often been viewed as largely contrasting"} +{"qid": "test3605", "pid": "11554116", "query": "who challenged the aristotelian model of a geocentric universe", "answer": "Copernicus", "passage": "\"Feminist epistemology\"\nnew scientific theories. For example, in his view, the transition from the geocentrism of Ptolemy to the heliocentric theory of Copernicus did not occur through a gradual series of challenges and improvements to the previous model. Rather, it was a sudden and complete revolution because it is impossible to conceptualize the theory of heliocentrism within the dominant geocentric theory. Kuhn argued that together, the ideas of Newton, Galileo, and Kepler completed the revolution that Copernicus started. However, most students of science do not learn of the many failed and alternative scientific paradigms. They are taught a version of the history"} +{"qid": "test3606", "pid": "9638146", "query": "when was the miraculous journey of edward tulane published", "answer": "2006", "passage": "\"The Miraculous Journey of Edward Tulane\"\nThe Miraculous Journey of Edward Tulane The Miraculous Journey of Edward Tulane is a 2006 novel by Kate DiCamillo. Following the life of a china rabbit, the book won the 2006 Boston Globe-Horn Book Award in Fiction category. Edward Tulane is a china rabbit given to a ten-year-old girl named Abilene by her grandmother in the 1930s. He enjoys a pleasant but vain life with his young mistress, who treats him with the utmost love and respect, until an unfortunate incident finds him falling overboard while vacationing on the \"\"RMS Queen Mary\"\". Edward spends 297 days on the ocean floor,"} +{"qid": "test3606", "pid": "9638150", "query": "when was the miraculous journey of edward tulane published", "answer": "2006", "passage": "\"The Miraculous Journey of Edward Tulane\"\nthe bestseller lists in major Korean bookstores as the alien repeatedly quotes from it throughout the series. The book was also quoted at a memorial service for Gustav Åhr by his mother. The Miraculous Journey of Edward Tulane The Miraculous Journey of Edward Tulane is a 2006 novel by Kate DiCamillo. Following the life of a china rabbit, the book won the 2006 Boston Globe-Horn Book Award in Fiction category. Edward Tulane is a china rabbit given to a ten-year-old girl named Abilene by her grandmother in the 1930s. He enjoys a pleasant but vain life with his young mistress,"} +{"qid": "test3606", "pid": "9638148", "query": "when was the miraculous journey of edward tulane published", "answer": "2006", "passage": "\"The Miraculous Journey of Edward Tulane\"\nfor sale in a doll store for several years. He is finally bought by Abilene, his original mistress, now married with a daughter of her own. The novel contains several themes involving loss and recovery, kindness and compassion, and the journey to self-discovery. The main theme can be summarized by a quote from the book: \"\"If you have no intention of loving or being loved, then the whole journey is pointless.\"\"- The old doll \"\"The Miraculous Journey\"\" won the 2006 Boston Globe–Horn Book Award for children's fiction and a Parents' Choice Award for Spring 2006 fiction. It was a Quill"} +{"qid": "test3606", "pid": "5278159", "query": "when was the miraculous journey of edward tulane published", "answer": "2006", "passage": "\"The Steadfast Tin Soldier\"\nWar I environment. Kate DiCamillo's \"\"The Miraculous Journey of Edward Tulane\"\" (2006) makes use of the tale's themes. The Hanson song Soldier is also based on this fairy tale. The song doesn't mention the goblin at all. The tin soldier fell out the window when the wind blew and the tin soldier and ballerina melted together while dancing and the ballerina fell near the fireplace. In Anirudh Arun's 2013 bildungsroman \"\"The Steadfast Tin Soldier?\"\", the protagonist Ashwin is compared to the tin soldier by his successful brother Abhinav (the society thus plays the part of the dangerous jack-in-the-box). Daft Punk's"} +{"qid": "test3606", "pid": "4397378", "query": "when was the miraculous journey of edward tulane published", "answer": "2006", "passage": "\"Kate DiCamillo\"\n\"\"most distinguished contribution to American literature for children,\"\" in 2004 for \"\"The Tale of Despereaux\"\" and again in 2014 for \"\"Flora & Ulysses;\"\" since the award's introduction in 1922, only six writers have won two of the annual awards. She won the 2000 Josette Frank Award for \"\"Because of Winn-Dixie\"\" and the 2006 Boston Globe–Horn Book Award in the children's fiction category for \"\"The Miraculous Journey of Edward Tulane\"\". She, co-writer Alison McGhee, and illustrator Tony Fucile won the ALA Theodor Seuss Geisel Medal in 2011, recognizing \"\"Bink and Gollie\"\" as the previous year's \"\"most distinguished book for beginning readers\"\"."} +{"qid": "test3607", "pid": "19959101", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Third Murderer\"\ncharacter may only be an extra. In 1929, Professor Theodore Halbert Wilson said the question of who the character is always provoked interested debate among his students. In 1869, author Allan Park Paton advanced the argument that Macbeth personally served as the Third Murderer. Paton argued the successful killings of Banquo and Fleance were personally important to Macbeth, and that while the banquet that night was scheduled to start at 7 pm, Macbeth did not appear until midnight. Paton believes the Third Murderer extinguished a light to avoid recognition, and later, Macbeth tells Banquo's ghost something that sounds like \"\"In"} +{"qid": "test3607", "pid": "2823231", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Macbeth (1971 film)\"\nand utters Macbeth's name, but Macbeth stabs him to death. He then murders the guards. Fearing a conspiracy, Malcolm and Donalbain flee to England and Ireland, and the Thane of Ross realises Macbeth will be king. An opportunistic courtier, he hails Macbeth at Scone, while the noble Macduff heads back to his home in Fife. When Macbeth begins to fear possible usurpation by Banquo and his son Fleance, he sends two murderers to kill them, and then sends Ross as the mysterious Third Murderer. Banquo is killed, while Fleance escapes. After Banquo appears at a banquet as a ghost, Macbeth"} +{"qid": "test3607", "pid": "19959099", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Third Murderer\"\nThird Murderer The Third Murderer is a character in William Shakespeare's tragedy \"\"Macbeth\"\" (1606). He appears in one scene (3.3), joining the First and Second Murderers to assassinate Banquo and Fleance, at the orders of Macbeth. The Third Murderer is not present when Macbeth speaks to the First and Second Murderers, and is not expected by his partners. Although the Third Murderer is a small role, the identity of the character has been the subject of scholarly debate, and various productions have equated him with other characters. The first two murderers are recruited by Macbeth in 3.1. In 3.3, the"} +{"qid": "test3607", "pid": "4008613", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Ghost story\"\n\"\"Richard III\"\" also resemble the Senecan model, while the ghost in \"\"Hamlet\"\" plays a more complex role. The shade of Hamlet's murdered father in \"\"Hamlet\"\" has become one of the more recognizable ghosts in English literature. In another of Shakespeare’s works, \"\"Macbeth\"\", the murdered Banquo returns as a ghost to the dismay of the title character. In English Renaissance theatre, ghosts were often depicted in the garb of the living and even in armour. Armour, being out-of-date by the time of the Renaissance, gave the stage ghost a sense of antiquity. The sheeted ghost began to gain ground on stage"} +{"qid": "test3607", "pid": "58516", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Lord Banquo", "passage": "Banquo\nBanquo Lord Banquo , the Thane of Lochaber, is a character in William Shakespeare's 1606 play \"\"Macbeth\"\". In the play, he is at first an ally to Macbeth (both are generals in the King's army) and they meet the Three Witches together. After prophesying that Macbeth will become king, the witches tell Banquo that he will not be king himself, but that his descendants will be. Later, Macbeth in his lust for power sees Banquo as a threat and has him murdered by two hired assassins; Banquo's son, Fleance, escapes. Banquo's ghost returns in a later scene, causing Macbeth to"} +{"qid": "test3607", "pid": "19959106", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Third Murderer\"\nof Banquo, and then leads the murder of Lady Macduff, and is thus seen as \"\"thoroughly vicious\"\". Third Murderer The Third Murderer is a character in William Shakespeare's tragedy \"\"Macbeth\"\" (1606). He appears in one scene (3.3), joining the First and Second Murderers to assassinate Banquo and Fleance, at the orders of Macbeth. The Third Murderer is not present when Macbeth speaks to the First and Second Murderers, and is not expected by his partners. Although the Third Murderer is a small role, the identity of the character has been the subject of scholarly debate, and various productions have equated"} +{"qid": "test3607", "pid": "247831", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "Macbeth\nBanquo's suspicions, Macbeth arranges to have him murdered, by hiring two men to kill them, later sending a Third Murderer. The assassins succeed in killing Banquo, but Fleance escapes. Macbeth becomes furious: he fears that his power remains insecure as long as an heir of Banquo remains alive. At a banquet, Macbeth invites his lords and Lady Macbeth to a night of drinking and merriment. Banquo's ghost enters and sits in Macbeth's place. Macbeth raves fearfully, startling his guests, as the ghost is only visible to him. The others panic at the sight of Macbeth raging at an empty chair,"} +{"qid": "test3607", "pid": "15774637", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Ghosts in English-speaking cultures\"\nuncle, King Claudius. In Shakespeare's \"\"Macbeth\"\", the murdered Banquo returns as a ghost to the dismay of the title character. In English Renaissance theater, ghosts were often depicted in the garb of the living and even in armor, as with the ghost of Hamlet's father. Armor, being out of date by the time of the Renaissance, gave the stage ghost a sense of antiquity. But the sheeted ghost began to gain ground on stage in the 19th century because an armored ghost could not satisfactorily convey the requisite spookiness: it clanked and creaked, and had to be moved about by"} +{"qid": "test3607", "pid": "8593575", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Macbeth (2006 film)\"\nthem. Malcolm, Duncan's son, immediately suspects Macbeth as having something to do with his father's death and flees. After Macbeth is hailed as the new leader by most of Duncan's gang Macbeth sends two murderers to kill Banquo and his son, Fleance. The murderers kill Banquo, but Fleance escapes. Macbeth holds a celebratory dinner, and after learning that Banquo has been killed, sees a vision of Banquo's ghost at the dining table. Macbeth is becoming shaken by his desire for power. Lennox, Ross and others suspect Macbeth of killing Duncan and Banquo. Macbeth finds the three witches in his house"} +{"qid": "test3607", "pid": "58534", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "Banquo\nMacbeth had already seen a hallucination before murdering Duncan: a knife hovering in the air. Several performances of the play have even ignored the stage direction to have the Ghost of Banquo enter at all, heightening the sense that Macbeth is growing mad, since the audience cannot see what he claims to see. Scholars opposing this view claim that while the dagger is unusual, ghosts of murdered victims are more believable, having a basis in the audience's superstitions. Spirits in other Shakespeare plays—notably \"\"Hamlet\"\" and \"\"Midsummer Night's Dream\"\"—exist in ambiguous forms, occasionally even calling into question their own presence. The"} +{"qid": "test3607", "pid": "10247654", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Exit Ghost\"\nresults. The older Zuckerman, though not pleased, was more philosophical and was able to place the results into a more historical context. The stage direction, \"\"exit ghost\"\" appears in three of William Shakespeare's plays: \"\"Hamlet\"\", \"\"Macbeth\"\" and \"\"Julius Caesar\"\". In a BBC interview, Roth stated that using this direction as a title \"\"came to me because of \"\"Macbeth\"\". Last year in the summer I was going to see a production of \"\"Macbeth\"\" here in America, and I re-read the script that afternoon, and I came upon the Banquo scene, ghost scene, and it just leaped out — 'exit ghost' —"} +{"qid": "test3607", "pid": "19959103", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Third Murderer\"\nextinguished the light. John Addis complimented Paton for the \"\"quite original suggestion\"\", citing the belief Macbeth sent the Third Murderer out of \"\"superabundant caution\"\", and acknowledging Macbeth could have sent himself out of that caution. Addis instead connected the Third Murderer to the spy mentioned by Macbeth in 3.1. Scholar Henry Norman Hudson also addressed and attempted to refute speculation that Macbeth was the Third Murderer. The scene in which the First Murderer describes the killing of Banquo to Macbeth has been used for and against arguments of Macbeth's identity as the Third Murderer. Macbeth appears surprised Fleance has escaped,"} +{"qid": "test3607", "pid": "58517", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "Banquo\nreact with alarm during a public feast. Shakespeare borrowed the character of Banquo from \"\"Holinshed's Chronicles\"\", a history of Britain published by Raphael Holinshed in 1587. In \"\"Chronicles\"\" Banquo is an accomplice to Macbeth in the murder of the king, rather than a loyal subject of the king who is seen as an enemy by Macbeth. Shakespeare may have changed this aspect of his character to please King James, who was thought at the time to be a descendant of the real Banquo. Critics often interpret Banquo's role in the play as being a foil to Macbeth, resisting evil where"} +{"qid": "test3607", "pid": "4450223", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "Fleance\nhas murdered most of his family. In another gangster adaptation, \"\"Men of Respect\"\" (1991), Fleance is replaced by a character named Phil, who similarly helps overthrow Mike (Macbeth) after his father, Bankie (Banquo), is murdered. Phil is inducted into the gang at the end of the film, when Mal (Malcolm) has taken over, suggesting that the violent gang culture will continue through generations. This sentiment echoes into the final scenes of Penny Woolcock's \"\"Macbeth on the Estate\"\". Macduff shoots Macbeth and takes a ring (representing his high status) off Macbeth's finger. Entering a bar, he flips it to Malcolm, saying,"} +{"qid": "test3607", "pid": "20212912", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "\"Macbeth in popular culture\"\nBanquo visible to the audience from Macbeth's perspective, but invisible from the perspective of other characters. Television versions, however, have often taken the third approach of leaving Banquo invisible to viewers, thereby portraying Banquo's ghost as merely Macbeth's delusion. This approach is taken in the 1978 Thames TV production, Jack Gold's 1983 version for BBC Television Shakespeare, and in Penny Woolcock's 1997 \"\"Macbeth on the Estate\"\". \"\"Macbeth on the Estate\"\" largely dispensed with the supernatural in favour of the drug-crime driven realism of characters living on a Birmingham housing estate: except for the three \"\"weird\"\" (in the modern sense of"} +{"qid": "test3607", "pid": "4450222", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "Fleance\nnew king after the killing of Macbeth. The BBC Shakespeare version of \"\"Macbeth\"\" shows Fleance in the final scene, implying his future role in bringing Banquo's line to the throne. In \"\"Joe Macbeth\"\" (1955), the first film to transpose \"\"Macbeth\"\" into a gang and Mafia-like setting, Fleance is replaced by a character named Lenny. Lenny's father, Banky, is killed, but Lenny escapes, and gathers a group of angry mobsters to overthrow Macbeth, who has, through a series of murders, made himself the kingpin gangster in the area. Lenny is successful in killing Macbeth in the end, but only after Macbeth"} +{"qid": "test3607", "pid": "58533", "query": "character in macbeth who is murdered and appears as a ghost", "answer": "Banquo", "passage": "Banquo\nattends the banquet state that Macbeth's lines to the Ghost could apply equally well to the slain king. \"\"Thou canst not say I did it\"\", for example, can mean that Macbeth is not the man who actually killed Banquo, or it can mean that Duncan, who was asleep when Macbeth killed him, cannot claim to have seen his killer. To add to the confusion, some lines Macbeth directs to the ghost, such as \"\"Thy bones are marrowless\"\", cannot rightly be said of Banquo, who has only recently died. Scholars debate whether Macbeth's vision of Banquo is real or a hallucination."} +{"qid": "test3608", "pid": "13533203", "query": "when was as you like it first performed", "answer": "1603", "passage": "\"As You Like It\"\nAs You Like It As You Like It is a pastoral comedy by William Shakespeare believed to have been written in 1599 and first published in the First Folio in 1623. The play's first performance is uncertain, though a performance at Wilton House in 1603 has been suggested as a possibility. \"\"As You Like It\"\" follows its heroine Rosalind as she flees persecution in her uncle's court, accompanied by her cousin Celia to find safety and, eventually, love, in the Forest of Arden. In the forest, they encounter a variety of memorable characters, notably the melancholy traveller Jaques who speaks"} +{"qid": "test3608", "pid": "13533242", "query": "when was as you like it first performed", "answer": "1603", "passage": "\"As You Like It\"\nis based on the \"\"Seven Ages of Man\"\" element of the \"\"All the world's a stage\"\" speech and was premiered in April 2016. As You Like It As You Like It is a pastoral comedy by William Shakespeare believed to have been written in 1599 and first published in the First Folio in 1623. The play's first performance is uncertain, though a performance at Wilton House in 1603 has been suggested as a possibility. \"\"As You Like It\"\" follows its heroine Rosalind as she flees persecution in her uncle's court, accompanied by her cousin Celia to find safety and, eventually,"} +{"qid": "test3609", "pid": "178185", "query": "when did computer become widespread in homes and schools", "answer": "1980s", "passage": "Hacker\nThe early hobbyist hackers built their home computers themselves, from construction kits. However, all these activities have died out during the 1980s, when the phone network switched to digitally controlled switchboards, causing network hacking to shift to dialing remote computers with modems, when pre-assembled inexpensive home computers were available, and when academic institutions started to give individual mass-produced workstation computers to scientists instead of using a central timesharing system. The only kind of widespread hardware modification nowadays is case modding. An encounter of the programmer and the computer security hacker subculture occurred at the end of the 1980s, when a"} +{"qid": "test3609", "pid": "5379467", "query": "when did computer become widespread in homes and schools", "answer": "1980s", "passage": "Telecentre\nsocial development—reducing isolation, bridging the digital divide, promoting health issues, creating economic opportunities, and reaching out to youth for example. The telecentre movement’s origins can be traced to Europe's telecottage and Electronic Village Halls (originally in Denmark) and Community Technology Centers (CTCs) in the United States, both of which emerged in the 1980s as a result of advances in computing. At a time when computers were available but not yet a common household good, public access to computers emerged as a solution. Today, although home ownership of computers is widespread in the United States and other industrialized countries, there remains"} +{"qid": "test3609", "pid": "16859354", "query": "when did computer become widespread in homes and schools", "answer": "1980s", "passage": "\"History of videotelephony\"\nVery expensive videoconferencing systems rapidly evolved throughout the 1980s and 1990s from proprietary equipment, software and network requirements to standards-based technologies that were readily available to the general public at a reasonable cost. Only in the late 20th century with the advent of powerful video codecs combined with high-speed Internet broadband and ISDN service did videotelephony become a practical technology for regular use. With the rapid improvements and popularity of the Internet, videotelephony has become widespread through the deployment of video-enabled mobile phones, plus videoconferencing and computer webcams which utilize Internet telephony. In the upper echelons of government, business and"} +{"qid": "test361", "pid": "11681070", "query": "who has the most yards per carry in nfl history", "answer": "Emmitt Smith", "passage": "\"Carry (gridiron football)\"\nCarry (gridiron football) In American football and Canadian football, a carry or rushing attempt is a statistical term equivalent to a single rushing play. The term is typically used in reference to \"\"yards per carry\"\", meaning yards per attempt rushing the ball. Although running backs are typically tasked with carrying the ball, any offensive player who performs a carry is known as a ball-carrier for that play, regardless of position. The yards gained on a carry are referred to as rushing yards. In the National Football League (NFL), Emmitt Smith holds the record for the most career carries, with 4,409."} +{"qid": "test362", "pid": "1461753", "query": "who commissioned the first christmas card in 1943", "answer": "Sir Henry Cole", "passage": "\"Christmas card\"\nevents over the Christmas season, when members of the public can make their own Christmas cards in the Strang Print Room. Specimens from the \"\"golden age\"\" of printing (1840s–1890s) are especially prized and bring in large sums at auctions. In December 2005, one of Horsley's original cards sold for nearly £9,000. Collectors may focus on particular images like Santa Claus, poets, or printing techniques. The Christmas card that holds the world record as the most expensive ever sold was a card produced in 1843 by J. C. Horsley and commissioned by civil servant Sir Henry Cole. The card, one of"} +{"qid": "test362", "pid": "77674", "query": "who commissioned the first christmas card in 1943", "answer": "Sir Henry Cole", "passage": "Christmas\npreceding Christmas Day. The traditional greeting reads \"\"wishing you a Merry Christmas and a Happy New Year\"\", much like that of the first commercial Christmas card, produced by Sir Henry Cole in London in 1843. The custom of sending them has become popular among a wide cross-section of people with the emergence of the modern trend towards exchanging E-cards. Christmas cards are purchased in considerable quantities, and feature artwork, commercially designed and relevant to the season. The content of the design might relate directly to the Christmas narrative, with depictions of the Nativity of Jesus, or Christian symbols such as"} +{"qid": "test363", "pid": "9299624", "query": "when did they start adding zinc to pennies", "answer": "1943", "passage": "\"The Man in the Fallout Shelter\"\nparents disappeared when she was 15, and no information has been uncovered regarding their whereabouts). Bones, listening to her friend, goes to her office and starts making phone calls trying to locate Ivy Gillespie. Finally, on Christmas morning, she finds Ivy’s granddaughter who provides information to contact her. Bones asks Booth to look at the penny they found in Lionel’s pocket. She scanned it to find out that it was actually a bronze penny minted in 1943, unlike almost all pennies from that time that were made of zinc clad steel to conserve copper for World War II. Today, there"} +{"qid": "test364", "pid": "9355604", "query": "who was hope brady's mother on days of our lives", "answer": "Ciara Brady", "passage": "\"Hope Williams Brady\"\nHope Williams Brady Hope Williams Brady is a character on the NBC soap opera \"\"Days of Our Lives\"\". Created by writer William J. Bell, she has been portrayed by Kristian Alfonso since she was recast on April 14, 1983. Hope is a member of the Horton family, the long-running core fictional family on \"\"Days\"\". She is the mother of Shawn-Douglas Brady, Zack Brady, and Ciara Brady. Hope is one half of the supercouple Bo & Hope. She works as a cop for the Salem P.D. Hope was promoted to Commissioner of Salem P.D. in 2017. Alfonso was nominated for a"} +{"qid": "test364", "pid": "9355633", "query": "who was hope brady's mother on days of our lives", "answer": "Ciara Brady", "passage": "\"Hope Williams Brady\"\nto hold off on the annulment. They are still trying to work through Rafe's lies and betrayal. Hope Williams Brady Hope Williams Brady is a character on the NBC soap opera \"\"Days of Our Lives\"\". Created by writer William J. Bell, she has been portrayed by Kristian Alfonso since she was recast on April 14, 1983. Hope is a member of the Horton family, the long-running core fictional family on \"\"Days\"\". She is the mother of Shawn-Douglas Brady, Zack Brady, and Ciara Brady. Hope is one half of the supercouple Bo & Hope. She works as a cop for the"} +{"qid": "test364", "pid": "10387818", "query": "who was hope brady's mother on days of our lives", "answer": "Ciara Brady", "passage": "\"Horton family\"\nthe voice-over epigraph, \"\"Like sands through the hourglass, so are the 'days of our lives' ... \"\"; from \"\"Days\"\" inception until Carey's death in 1994, and on special episodes since, the initial words are followed by \"\" ... this is Macdonald Carey, and these are the 'days of our lives.'\"\" The family is currently represented by: Julie Olson Williams, Hope Williams Brady, Maggie Horton, Sarah Horton, Jennifer Horton, Will Horton, Shawn-Douglas Brady, Belle Black, Abigail Deveraux, JJ Deveraux, Ciara Brady, Claire Brady, Eli Grant, Arianna Horton, Thomas DiMera and Charlotte DiMera. This is a list of all known members of"} +{"qid": "test364", "pid": "19017245", "query": "who was hope brady's mother on days of our lives", "answer": "Ciara Brady", "passage": "\"Days of Our Lives characters (2000s)\"\nSteve Johnson, is actually Tyler. Ciara Brady is the daughter of Bo Brady and Hope Brady. Vivian Jovanni assumed the role of Ciara on October 30, 2015. In December 2016, Jovanni left the show, with it airing on May 26, 2017. In July 2017, it was revealed that Ciara would recast and will returning in December 2017 alongside Brandon Beemer's Shawn-Douglas Brady and Martha Madison's Belle Black. In August 2017, actress Victoria Konefal has been cast as the new Ciara, making her debut on December 1, 2017. While grieving over the death of their young son, Zack, Hope and Bo"} +{"qid": "test366", "pid": "18383892", "query": "who has been designed as the new finance secretary of india", "answer": "Hasmukh Adhia", "passage": "\"Hasmukh Adhia\"\nAdhia retired from IAS and simultaneously demitted the offices of Finance Secretary and Revenue Secretary on 30November 2018; he was succeeded as Revenue Secretary by Unique Identification Authority of India's chief executive officer Ajay Bhushan Pandey, and as Finance Secretary by Expenditure Secretary Ajay Narayan Jha, as the senior-most secretary in the Ministry of Finance. Ahead of his retirement, Adhia was praised by Minister of Finance Arun Jaitley, who called him \"\"highly competent, disciplined, no-nonsense civil servant [...] with impeccable integrity,\"\" and said that Adhia refused important post-retirement assignment from the government and instead intended to focus on spirituality and"} +{"qid": "test367", "pid": "5699759", "query": "who plays the first nfl game of the season", "answer": "the New England Patriots", "passage": "\"1993 NFL season\"\nThe Cowboys became the first team to win a Super Bowl after losing their first two regular season games. This game also marked the fourth consecutive Super Bowl loss by the Bills. The 1993 NFL Draft was held from April 25 to 26, 1993 at New York City's Marriott Marquis. With the first pick, the New England Patriots selected quarterback Drew Bledsoe from Washington State University. 1993 NFL season The 1993 NFL season was the 74th regular season of the National Football League. It was the only season in league history where all NFL teams played their 16-game schedule over"} +{"qid": "test367", "pid": "13633652", "query": "who plays the first nfl game of the season", "answer": "the New England Patriots", "passage": "\"Arthur Jones (American football)\"\nthe former UFC Light Heavyweight Champion, while his youngest brother Chandler is an outside linebacker for the Arizona Cardinals who previously played defensive end for the New England Patriots. Their teams played one another for the first time when the Ravens played the Patriots in Week 3 of the 2012 NFL season, and again in the 2013 AFC Divisional Game, Arthur winning both games. Arthur Jones (American football) Arthur Willis Jones III (born June 3, 1986) is a former American football defensive end who played eight seasons in the National Football League (NFL). He played college football at Syracuse. He"} +{"qid": "test367", "pid": "5795538", "query": "who plays the first nfl game of the season", "answer": "the New England Patriots", "passage": "\"American Bowl\"\nabandonment of international pre-season games as well as the closure of NFL Europe, instead focusing on playing regular season games in foreign countries. The pre-season game that was scheduled to take place in August 2007 (later postponed to 2009) between the New England Patriots and the Seattle Seahawks at Beijing National Stadium in Beijing, China was named the \"\"China Bowl\"\" instead of the \"\"American Bowl\"\"; that game, too, was eventually canceled before being played. The first regular season NFL game played outside the United States was held on October 2, 2005 at Estadio Azteca in Mexico City before an NFL"} +{"qid": "test368", "pid": "845858", "query": "who won last year's ncaa women's basketball", "answer": "South Carolina", "passage": "\"Southeastern Conference\"\nA&M. The other permanent opponents are the same as men's basketball, except for Florida-Georgia and Kentucky-South Carolina (both pairs had been permanent women's basketball opponents before the 2012 expansion). Each school plays two others home-and-home during a given season and the other 10 once each. The divisional alignments no longer play any role in scheduling. The recent history of SEC women's basketball is dominated by Tennessee, who have won regular season and/or conference tournament championships in 20 of the last 22 seasons, as well as 8 national championships since 1987. In the 28 seasons the NCAA Division I Women's Basketball"} +{"qid": "test369", "pid": "9897790", "query": "what is the most popular religion in sweden", "answer": "Lutheran", "passage": "\"Religion in Sweden\"\nat least one parent being a member of the Church of Sweden were also registered as members of the church. Yet the membership is declining rapidly, about 1% each year, for the most recent years even 2%, falling from 95% in 1970 and 85% in 2000. Prior to their Christianisation that became complete around the 12th century, the Swedes practised forms of Norse religion. At first they became part of the Catholic Church; then, from the 1530s, Sweden switched to Lutheranism as part of the Protestant Reformation which converted most of Germanic Europe; the Church of Sweden was formed and"} +{"qid": "test369", "pid": "370720", "query": "what is the most popular religion in sweden", "answer": "Lutheran", "passage": "\"Demographics of Sweden\"\nin its traditional form as most Sami today belong to the Lutheran church. Jews were permitted to practice their religion in five Swedish cities in 1782, and have enjoyed full rights as citizens since 1870. The new Freedom of Religion Bill was passed in 1951, and former obstacles against Non-Lutherans working in schools and hospitals were removed. Further, that bill made it legal to leave any religious denomination, without entering another. There are also a number of Muslims, Buddhists, and Bahá'í in Sweden, mainly from immigration. Demographics of Sweden The demography of Sweden is monitored by Statistics Sweden (SCB). As"} +{"qid": "test369", "pid": "9897794", "query": "what is the most popular religion in sweden", "answer": "Christianity", "passage": "\"Religion in Sweden\"\nThe diocese of Skara, which is the oldest diocese in Sweden, emerged under the Archdiocese of Hamburg-Bremen, in the late 10th century. According to Adam of Bremen, the Christian king Olof Skötkonung, who ruled from c. 995 to c. 1022 was forced to limit Christian activities to the western province. When King Stenkil ascended to the throne in 1060 Christianity was firmly established throughout most of Sweden, although the people of Uppland, and probably Sodermanland, resisted the new religion. The last king adhering to the old religion was Blot-Sweyn, who reigned 1084–1087. A handful of local saints (canonized on diocesan"} +{"qid": "test369", "pid": "9897808", "query": "what is the most popular religion in sweden", "answer": "Lutheran", "passage": "\"Religion in Sweden\"\nSweden () is the largest Christian church in Sweden, and also the largest religious body. The church professes the Lutheran faith and is a member of the Porvoo Communion. As of 2017 it has 5,993,368 members, 59.3% of the Swedish population, although surveys show different figures, ranging from 24% to 41% to 52.1%. Until 2000 it held the position of state religion, and most Swedes were baptised at birth. The number of both new baptisms and members has declined since. Indeed, according to official statistics, as of 2016: The Church of Sweden, by law, is organized in the following manner:"} +{"qid": "test369", "pid": "18082526", "query": "what is the most popular religion in sweden", "answer": "Christianity", "passage": "\"History of popular religion in Scotland\"\nHistory of popular religion in Scotland The history of popular religion in Scotland includes all forms of religion outwith the formal theology and structures of institutional religion, between the earliest times of human occupation of what is now Scotland and the present day. Very little is known about religion in Scotland before the arrival of Christianity. It is generally presumed to have resembled Celtic polytheism and there is evidence of the worship of spirits and wells. The Christianisation of Scotland was carried out by Irish-Scots missionaries, and to a lesser extent those from Rome and England, from the sixth century."} +{"qid": "test369", "pid": "18704689", "query": "what is the most popular religion in sweden", "answer": "Lutheran", "passage": "\"Conventicle Act (Sweden)\"\nConventicle Act (Sweden) The Conventicle Act () was a Swedish law, in effect between 21 January 1726 and 26 October 1858. The act outlawed all conventicles, or religious meetings of any kind, outside of the Lutheran Church of Sweden, with the exception of the family prayer or worship. The purpose was to prevent freedom of religion and protect religious unity, as such unity was regarded as important to maintain the control of the crown over the public through the church. The law was initiated in 1726 to prevent the popularity of pietism, which was spreading rapidly in Sweden in the"} +{"qid": "test369", "pid": "9897798", "query": "what is the most popular religion in sweden", "answer": "Lutheran", "passage": "\"Religion in Sweden\"\nepiscopal organization was retained. Gradually, in spite of popular protests against the introduction of \"\"Luthery\"\", teachings were aligned with continental Lutheranism. Calvinism was, otherwise, refuted as heresy at the synod of Stockholm in 1565. In order to appease the Holy See, king John III of Sweden, one of Gustav Vasa's sons, took measures to bring the Church of Sweden to a theological position influenced by George Cassander, but, in the heat of controversy, such a compromise position did not achieve its intent of reunion. However, after his death, his brother, Duke Charles, summoned the Uppsala Synod in 1593, which declared"} +{"qid": "test369", "pid": "9897789", "query": "what is the most popular religion in sweden", "answer": "Lutheran", "passage": "\"Religion in Sweden\"\nReligion in Sweden Religion in Sweden is diversified. Christianity was the religion of virtually all of the Swedish population from the 12th to the early 20th century, but it has rapidly declined throughout the late 20th and early 21st century. In 2015, legally registered Christians comprised 69.9% of the total population. The Lutheran Church of Sweden — which was the state religion until 2000 — has a registered membership of 6.0 million Swedish citizens as of 2017, equal to 59.3% of the total population. One reason for the high membership might be the fact that until 1996 all newborns with"} +{"qid": "test37", "pid": "4253939", "query": "who wrote cant get you out of my head lyrics", "answer": "Cathy Dennis and Rob Davis", "passage": "\"Can't Get You Out of My Head\"\nonline messageboards alight.\"\" \"\"Can't Get You Out of My Head\"\" was chosen as the lead single from Minogue's eighth studio album, \"\"Fever,\"\" and it was released on 8 September 2001 by Parlophone in Australia, while in the United Kingdom and other European countries it was released on 17 September. \"\"Can't Get You Out of My Head\"\" was jointly written, composed, and produced by Cathy Dennis and Rob Davis. Dennis and Davis had been brought together by British artist manager Simon Fuller, who wanted the duo to come up with a song for British pop group S Club 7. The song"} +{"qid": "test37", "pid": "4253933", "query": "who wrote cant get you out of my head lyrics", "answer": "Cathy Dennis and Rob Davis", "passage": "\"Can't Get You Out of My Head\"\nCan't Get You Out of My Head \"\"Can't Get You Out of My Head\"\" is a song recorded by Australian singer Kylie Minogue for her eighth studio album, titled \"\"Fever,\"\" which she released in 2001. The song was released in Australia by Parlophone as the lead single from the album on 8 September 2001. It was released on 17 September 2001 in the United Kingdom. In the United States, the single was released on 18 February 2002. Jointly written, composed, and produced by Cathy Dennis and Rob Davis, \"\"Can't Get You Out of My Head\"\" is a midtempo dance song"} +{"qid": "test37", "pid": "4253984", "query": "who wrote cant get you out of my head lyrics", "answer": "Cathy Dennis and Rob Davis", "passage": "\"Can't Get You Out of My Head\"\n2009). (2nd ed.) Can't Get You Out of My Head \"\"Can't Get You Out of My Head\"\" is a song recorded by Australian singer Kylie Minogue for her eighth studio album, titled \"\"Fever,\"\" which she released in 2001. The song was released in Australia by Parlophone as the lead single from the album on 8 September 2001. It was released on 17 September 2001 in the United Kingdom. In the United States, the single was released on 18 February 2002. Jointly written, composed, and produced by Cathy Dennis and Rob Davis, \"\"Can't Get You Out of My Head\"\" is a"} +{"qid": "test371", "pid": "393771", "query": "who decides where the super bowl is played", "answer": "the NFL", "passage": "\"Super Bowl V\"\nSuper Bowl V Super Bowl V, the fifth edition of the Super Bowl and first modern-era National Football League (NFL) championship game, was an American football game between the American Football Conference (AFC) champion Baltimore Colts and the National Football Conference (NFC) champion Dallas Cowboys to decide the NFL champion for the 1970 season. The Colts defeated the Cowboys by the score of 16–13. The game was played on January 17, 1971, at the Orange Bowl in Miami, Florida, the first Super Bowl game played on artificial turf, on first-generation Poly-Turf. This was the first Super Bowl played after the"} +{"qid": "test371", "pid": "20728494", "query": "who decides where the super bowl is played", "answer": "the NFL", "passage": "\"Super Bowl LVIII\"\nSuper Bowl LVIII Super Bowl LVIII, the 58th Super Bowl and the 54th modern-era National Football League (NFL) championship game, will decide the league champion for the 2023 NFL season. The game is scheduled to be played on February 4, 2024 at Mercedes-Benz Superdome in New Orleans, Louisiana (with the exact date pending potential changes to the NFL calendar). It will be the eleventh Super Bowl hosted by New Orleans, with the last one being Super Bowl XLVII in 2013 eleven years earlier, also held at the Superdome. Super Bowl LVIII, along with Super Bowl LVII, was part of a"} +{"qid": "test371", "pid": "18798752", "query": "who decides where the super bowl is played", "answer": "NFL owners", "passage": "\"Super Bowl LIV\"\nBowl LIV were as follows: Miami was selected as the host site at the NFL owners meeting on May 24, 2016. This is the first time the state of Florida will host back to back Super Bowls since Super Bowl XLIII in 2009 in Tampa and Super Bowl XLIV in 2010 in Miami Gardens. Super Bowl LIV Super Bowl LIV, the 54th Super Bowl and the 50th modern-era National Football League (NFL) championship game, will decide the league champion for the league's centennial 2019 season. The game is scheduled to be played on February 2, 2020 in Miami Gardens, Florida"} +{"qid": "test371", "pid": "18798747", "query": "who decides where the super bowl is played", "answer": "the NFL", "passage": "\"Super Bowl LIV\"\nSuper Bowl LIV Super Bowl LIV, the 54th Super Bowl and the 50th modern-era National Football League (NFL) championship game, will decide the league champion for the league's centennial 2019 season. The game is scheduled to be played on February 2, 2020 in Miami Gardens, Florida (with the exact date pending potential changes to the NFL calendar). This will be the 11th Super Bowl hosted by the South Florida region and the sixth Super Bowl hosted in Miami Gardens, with the last one being Super Bowl XLIV ten years earlier. The game will be televised nationally by Fox. On May"} +{"qid": "test374", "pid": "16621513", "query": "cls bank deals with transactions arising out of", "answer": "foreign exchange market", "passage": "\"CLS Group\"\nCLS Group CLS (originally Continuous Linked Settlement) is a specialist US financial institution that provides settlement services to its members in the foreign exchange market (FX). Although the forex market is decentralised and has no central exchange or clearing facility, firms that chose to use CLS to settle their FX transactions can mitigate the settlement risk associated with their trades. CLS does this through the operation of a payment versus payment (PvP) settlement service which mitigates settlement risk for the FX transactions of its settlement members and their customers (third parties). The service started operating in 2002 as an Edge"} +{"qid": "test375", "pid": "7336952", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"UK–US extradition treaty of 2003\"\nthe Extradition Act 2003 within the UK and an opposition proposal to amend the Act in the House of Lords. It also coincided with public disquiet at the case of the NatWest Three who were extradited on the same date. This meant the NatWest three were extradited to the US under the US-UK Extradition Treaty 2003, even though that treaty had not been ratified in the US. On 30 September 2006 the US Senate unanimously ratified the treaty. British Home Secretary John Reid said he was \"\"\"\"delighted\"\"\"\" that Baroness Scotland's visit to the US over the summer succeeded in getting"} +{"qid": "test375", "pid": "2969271", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"Special Relationship\"\nextradite and prosecute a number of high-profile London businessmen (e.g., the Natwest Three and Ian Norris) on fraud charges. Contrasts have been drawn with the United States' harboring of Provisional IRA terrorists in the 1970s through to the 1990s and repeated refusals to extradite them to the UK. On 30 September 2006, the US Senate unanimously ratified the 2003 treaty. Ratification had been slowed by complaints from some Irish-American groups that the treaty would create new legal jeopardy for US citizens who opposed British policy in Northern Ireland. \"\"The Spectator\"\" condemned the three-year delay as 'an appalling breach in a"} +{"qid": "test375", "pid": "14716527", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"U.S.–Hungarian Peace Treaty (1921)\"\nwas among the signatories of that treaty, the Senate refused to ratify the treaty due to opposition to joining the League of Nations. As a result, the two governments started negotiations for a bilateral peace treaty not connected to the League of Nations. Such a treaty was concluded on August 29, 1921. Article 1 obliged the Hungarian government to grant to the US government all rights and privileges enjoyed by the other Allied Powers who have ratified the peace treaty signed in Paris. Article 2 specified which articles of the Trianon treaty shall apply to the United States. Article 3"} +{"qid": "test375", "pid": "11070317", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"Presidency of Andrew Jackson\"\nUnited States Senate voted to ratify the treaty in May 1836. The Treaty of New Echota was enforced by Jackson's successor, Van Buren; subsequently, as many as 4,000 out of 18,000 Cherokees died on the \"\"Trail of Tears\"\" in 1838. Jackson, Eaton, and General John Coffee negotiated with the Chickasaw, who quickly agreed to move. Jackson put Eaton and Coffee in charge of negotiating with the Choctaw tribe. Lacking Jackson's skills at negotiation, they frequently bribed the chiefs in order to gain their submission. The Choctaw chiefs agreed to move with the signing of the Treaty of Dancing Rabbit Creek."} +{"qid": "test375", "pid": "14705231", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"U.S.–German Peace Treaty (1921)\"\nand Germany Restoring Friendly Relations\"\" was signed in Berlin on August 25, 1921. The United States Senate advised ratification on October 18, 1921 and the treaty was ratified by President Harding on October 21, 1921. The treaty was ratified by Germany on November 2, 1921, and ratifications exchanged in Berlin on November 11, 1921. Article 1 obliged the German government to grant to the U.S. government all rights and privileges enjoyed by the other allied powers who had ratified the peace treaty signed in Paris. Article 2 specified which articles of the Versailles treaty shall apply to the U.S. Article"} +{"qid": "test375", "pid": "1931286", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"Second Barbary War\"\nSecond Barbary War The Second Barbary War (1815) was fought between the United States and the North African Barbary Coast states of Tripoli, Tunis, and Ottoman Algeria. The war ended when the United States Senate ratified Commodore Stephen Decatur’s Algerian treaty on December 5, 1815. However, Dey Omar Agha of Algeria repudiated the US treaty, refused to accept the terms of peace that had been ratified by the Congress of Vienna, and threatened the lives of all Christian inhabitants of Algiers. William Shaler was the US commissioner in Algiers who had negotiated alongside Decatur, but he had to flee aboard"} +{"qid": "test375", "pid": "3874033", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"Moon Treaty\"\nof which ratified the agreement and the rest acceded. Four additional states have signed but not ratified the treaty. The L5 Society and others successfully opposed ratification of the treaty by the United States Senate. The objection to the treaty by the spacefaring nations is held to be the requirement that extracted resources (and the technology used to that end) must be shared with other nations. The similar regime in the United Nations Convention on the Law of the Sea is believed to impede the development of such industries on the seabed. Moon Treaty The Agreement Governing the Activities of"} +{"qid": "test375", "pid": "10249926", "query": "who is in charge of ratifying treaties in the us", "answer": "Senate", "passage": "\"Incorporation of international law\"\nSupremacy Clause (VI.2) of the United States Constitution states that \"\"all Treaties made, or which shall be made, under the authority of the United States, shall be the supreme Law of the land.\"\" However, the term \"\"treaty\"\" has a more restricted sense in American law than in international law. Of the more than 16,000 international agreements entered into by the United States between 1946 and 1999, only 912 were ratified by the required two thirds of the US Senate of the Treaty Clause of the Constitution. The US Supreme Court has also limited the direct effect of ratified treaties, notably"} +{"qid": "test376", "pid": "7778764", "query": "where was the hindenburg scheduled to fly and how many passengers were on it", "answer": "36 passengers", "passage": "\"Hindenburg disaster\"\nthe \"\"Hindenburg\"\" fire; many were caused by bad weather. The \"\"Graf Zeppelin\"\" had flown safely for more than 1.6 million kilometers (1.0 million miles), including the first circumnavigation of the globe by an airship. The Zeppelin company's promotions had prominently featured the fact that no passenger had been injured on any of its airships. Despite the sheer ferocity of the colossal fire, many of the crew members and passengers survived, but the majority of them were severely burned. Of the 36 passengers and 61 crewmen, 13 passengers and 22 aircrewmen died. Also killed was one ground crewman, the civilian linesman"} +{"qid": "test376", "pid": "7778743", "query": "where was the hindenburg scheduled to fly and how many passengers were on it", "answer": "36 passengers", "passage": "\"Hindenburg disaster\"\nHindenburg disaster The \"\"Hindenburg\"\" disaster occurred on May 6, 1937, in Manchester Township, New Jersey, United States. The German passenger airship LZ 129 \"\"Hindenburg\"\" caught fire and was destroyed during its attempt to dock with its mooring mast at Naval Air Station Lakehurst. On board were 97 people (36 passengers and 61 crewmen); there were 36 fatalities (13 passengers and 22 crewmen, 1 worker on the ground). The disaster was the subject of spectacular newsreel coverage, photographs, and Herbert Morrison's recorded radio eyewitness reports from the landing field, which were broadcast the next day. A variety of hypotheses have been"} +{"qid": "test377", "pid": "9250699", "query": "days of our lives cast doug and julie", "answer": "Bill Hayes", "passage": "\"Doug Williams (Days of Our Lives)\"\nreturned again in the spring of 2015 with Julie to visit Hope. Both Doug and Julie were highly involved with the show's 50th anniversary and were around to help Hope deal with the sudden death of Bo Brady from cancer. Doug Williams (Days of Our Lives) Doug Williams is a fictional character on the American soap opera \"\"Days of Our Lives\"\". He has been portrayed by Bill Hayes since 1970. Since 1999, Hayes has continued to make recurring appearances as Doug, notably airing during the holiday seasons. Born Brent Douglas, he later changed his name to Doug Williams. He is"} +{"qid": "test377", "pid": "15665879", "query": "days of our lives cast doug and julie", "answer": "Susan Seaforth Hayes", "passage": "\"Days of Our Lives\"\nMaggie Horton has been on the show since 1973, and Susan Seaforth Hayes has played Julie Olson Williams since 1968 with a few breaks in between, and also her husband Bill Hayes, who has played Doug Williams since 1970, though neither Seaforth Hayes nor Hayes is employed with the serial on contract. In recent years, \"\"Days of Our Lives\"\" has hired back many former cast members. Twenty of the current contract cast members have been with the show, off-and-on, since at least 1999. Since 2005, cast members from the 1980s and 1990s, such as Christie Clark (Carrie Brady), Stephen Nichols"} +{"qid": "test377", "pid": "8863598", "query": "days of our lives cast doug and julie", "answer": "Susan Seaforth Hayes", "passage": "\"Doug Williams and Julie Olson\"\nDoug Williams and Julie Olson Douglas Williams and Julie Olson Williams are fictional characters and a supercouple from the American daytime drama \"\"Days of Our Lives\"\". Doug and Julie are considered to be the first supercouple in daytime television history. Doug is portrayed by Bill Hayes and Julie is portrayed by Susan Seaforth Hayes. The actors are married in real life and also still recur in their roles that made them famous on NBC's \"\"Days of our Lives\"\". Bill Hayes and Susan Seaforth began to develop a romance outside of their characters' storyline. It was \"\"at first publicized by the"} +{"qid": "test377", "pid": "9250662", "query": "days of our lives cast doug and julie", "answer": "Bill Hayes", "passage": "\"Doug Williams (Days of Our Lives)\"\nDoug Williams (Days of Our Lives) Doug Williams is a fictional character on the American soap opera \"\"Days of Our Lives\"\". He has been portrayed by Bill Hayes since 1970. Since 1999, Hayes has continued to make recurring appearances as Doug, notably airing during the holiday seasons. Born Brent Douglas, he later changed his name to Doug Williams. He is the half-brother of Byron Carmichael. He is the father of Hope Williams and Douglas LeClair. He is the husband of Julie Williams, whom he has married three times. Doug is also the ex-husband of Kim Douglas and Lee DuMonde and"} +{"qid": "test378", "pid": "12319250", "query": "who sang i'm gonna run away from you", "answer": "Tami Lynn", "passage": "\"Tami Lynn\"\nTami Lynn Tami Lynn (born 1942, Gert Town, New Orleans, Louisiana, United States) is an American soul singer. She scored a Top Ten hit on the UK Singles Chart in 1971, with the song \"\"I'm Gonna Run Away From You\"\". Lynn was discovered by Jerry Wexler in 1965 after hearing her sing at a talent show. Wexler had her record the Bert Berns penned and produced song, \"\"I'm Gonna Run Away From You\"\", for Atco Records, but the song was not released at the time, although it was released in the UK on Atlantic, AT.4071. She then sang backup for"} +{"qid": "test378", "pid": "3888447", "query": "who sang i'm gonna run away from you", "answer": "Tami Lynn", "passage": "\"Kiki Dee\"\nsession singer. She sang backing vocals for Dusty Springfield, among others, and was well regarded by other singers but did not achieve solo success in the UK for many years. In 1963 Dee released her first single \"\"Early Night\"\", and recorded her debut album \"\"I’m Kiki Dee\"\", which included a series of Phil Spector style tracks and covers for Fontana Records. Her 1966 release \"\"Why Don't I Run Away From You\"\" (a cover of Tami Lynn's \"\"I'm Gonna Run Away From You\"\") was a big hit on Radio London and Radio Caroline, and she sang the B side \"\"Small Town\"\""} +{"qid": "test378", "pid": "12319251", "query": "who sang i'm gonna run away from you", "answer": "Tami Lynn", "passage": "\"Tami Lynn\"\nmusicians such as The Rolling Stones (backing vocalist on \"\"Exile on Main St.\"\"), Dr. John, Wilson Pickett, and Sonny & Cher. In 1971, \"\"I'm Gonna Run Away From You\"\" was released as a single, with \"\"The Boy Next Door\"\" as the b-side, on Mojo and Atlantic, where it became a hit in the UK among devotees of Northern soul. The tune hit number 4 in the UK Singles Chart in 1971. A full-length album, \"\"Love Is Here and Now You're Gone\"\", followed in 1972, produced by John Abbey. \"\"I'm Gonna Run Away From You\"\" returned to the UK chart in"} +{"qid": "test379", "pid": "17170554", "query": "who plays whitey bulger's girlfriend in black mass", "answer": "Dakota Johnson", "passage": "\"Black Mass (film)\"\nBlack Mass (film) Black Mass is a 2015 American biographical crime drama film directed by Scott Cooper and written by Mark Mallouk and Jez Butterworth, based on the 2001 book \"\"Black Mass: The True Story of an Unholy Alliance Between the FBI and the Irish Mob\"\" by Dick Lehr and Gerard O'Neill. The film has an ensemble cast including Johnny Depp, Joel Edgerton, Benedict Cumberbatch, Kevin Bacon, Jesse Plemons, Peter Sarsgaard, Rory Cochrane, Adam Scott, Julianne Nicholson, Dakota Johnson and Corey Stoll. The film follows the criminal career of infamous American mobster James \"\"Whitey\"\" Bulger (Depp). Principal photography of the"} +{"qid": "test381", "pid": "11220759", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Fluid compartments\"\nin the extracellular compartment. The extracellular fluids may be divided into three types: interstitial fluid in the \"\"interstitial compartment\"\" (surrounding tissue cells and bathing them in a solution of nutrients and other chemicals), blood plasma and lymph in the \"\"intravascular compartment\"\" (inside the blood vessels and lymphatic vessels), and small amounts of transcellular fluid such as ocular and cerebrospinal fluids in the \"\"transcellular compartment\"\". The interstitial and intravascular compartments readily exchange water and solutes but the third extracellular compartment, the transcellular, is thought of as separate from the other two and not in dynamic equilibrium with them. The intracellular fluid,"} +{"qid": "test381", "pid": "11220762", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Fluid compartments\"\n(the blood plasma). The other intravascular fluid is lymph. It too represents both the intracellular compartment (the fluid inside its lymphocytes) and the extracellular compartment (the noncellular matrix of the lymph, which is roughly equivalent to serum). The average volume of plasma in the average (70 kg) male is approximately 3.5 liters. The volume of the intravascular compartment is regulated in part by hydrostatic pressure gradients, and by reabsorption by the kidneys. The third extracellular compartment, the transcellular, consists of those spaces in the body where fluid does not normally collect in larger amounts, or where any significant fluid collection"} +{"qid": "test381", "pid": "11220760", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Fluid compartments\"\nalso known as cytosol, is all fluid contained inside the cells. It is the matrix in which cellular organelles are suspended. The cytosol and organelles together compose the cytoplasm. The cell membranes are the outer barrier. In humans, the intracellular compartment contains on average about 8 litres of fluid, and under ordinary circumstances remains in osmotic equilibrium. It contains moderate quantities of magnesium and sulphate ions. The interstitial, intravascular and transcellular compartments comprise the extracellular compartment. Its extracellular fluid (ECF) contains about one-third of total body water. The interstitial compartment (also called \"\"tissue space\"\") surrounds tissue cells. It is filled"} +{"qid": "test381", "pid": "2674852", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Extracellular fluid\"\nplasma. The remaining small percentage of ECF includes the transcellular fluid. These constituents are often called fluid compartments. The transcellular fluid includes the aqueous humour in the eye, the synovial fluid in the joints, the cerebrospinal fluid in the brain and spinal cord, the serous fluid in the serous membranes lining body cavities and in the saliva and other gut fluids (gastric juice, pancreatic juice and other intestinal secretions), as well as the perilymph and endolymph in the inner ear. The volume of extracellular fluid in a young adult male of 70 kg, is 20% of body weight – about"} +{"qid": "test381", "pid": "11220761", "query": "what are the two extracellular fluid compartments in the body", "answer": "intravascular", "passage": "\"Fluid compartments\"\nwith interstitial fluid. Interstitial fluid provides the immediate microenvironment that allows for movement of ions, proteins and nutrients across the cell barrier. This fluid is not static, but is continually being refreshed by the blood capillaries and recollected by lymphatic capillaries. In the average male (70 kg) human body, the interstitial space has approximately 10.5 litres of fluid. The main intravascular fluid in mammals is blood, a complex mixture with elements of a suspension (blood cells), colloid (globulins), and solutes (glucose and ions). The blood represents both the intracellular compartment (the fluid inside the blood cells) and the extracellular compartment"} +{"qid": "test381", "pid": "2674849", "query": "what are the two extracellular fluid compartments in the body", "answer": "interstitial", "passage": "\"Extracellular fluid\"\nExtracellular fluid Extracellular fluid (ECF) denotes all body fluid outside the cells. Total body water in humans makes up between 45 to 75% of total body weight. About two thirds of this is intracellular fluid within cells, and one third is the extracellular fluid. The main component of the extracellular fluid is the interstitial fluid that bathes cells. Extracellular fluid is the internal environment of all multicellular animals, and in those animals with a blood circulatory system a proportion of this fluid is blood plasma. Plasma and interstitial fluid are the two components that make up at least 97% of"} +{"qid": "test381", "pid": "2674872", "query": "what are the two extracellular fluid compartments in the body", "answer": "interstitial", "passage": "\"Extracellular fluid\"\nbe considered a newly identified biological structure in the body. However, there is some debate over whether the interstitium is an organ. Main cations: Main anions: Extracellular fluid Extracellular fluid (ECF) denotes all body fluid outside the cells. Total body water in humans makes up between 45 to 75% of total body weight. About two thirds of this is intracellular fluid within cells, and one third is the extracellular fluid. The main component of the extracellular fluid is the interstitial fluid that bathes cells. Extracellular fluid is the internal environment of all multicellular animals, and in those animals with a"} +{"qid": "test381", "pid": "1780544", "query": "what are the two extracellular fluid compartments in the body", "answer": "interstitial", "passage": "\"Compartment syndrome\"\nwill reduce the compartment volume of the surrounding fascial borders and result in an increased compartment pressure. An increase in the pressure of the tissue can force fluid to leak into the interstitial space (extracellular fluid), leading to a disruption of the micro-circulation of the leg. This condition occurs commonly in the lower leg and various other locations within the body, such as the foot or forearm. CECS can be seen in athletes who train rigorously in activities that involve constant repetitive actions or motions. Symptoms of CECS involve numbness, a tingling sensation or pain described as burning, cramping, sharp,"} +{"qid": "test381", "pid": "2674855", "query": "what are the two extracellular fluid compartments in the body", "answer": "interstitial", "passage": "\"Extracellular fluid\"\nsmall vessels it is considered to be lymph, and the vessels that carry it back to the blood are called the lymphatic vessels. The lymphatic system returns protein and excess interstitial fluid to the circulation. The ionic composition of the interstitial fluid and blood plasma vary due to the Gibbs–Donnan effect. This causes a slight difference in the concentration of cations and anions between the two fluid compartments. The extracellular fluid provides the medium for the exchange of substances between the ECF and the cells, and this can take place through dissolving, mixing and transporting in the fluid medium. Substances"} +{"qid": "test381", "pid": "11220766", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Fluid compartments\"\nthe abnormal accumulation of fluid into an extracellular and extravascular space. In medicine, the term is often used with regard to loss of fluid into interstitial spaces, such as with burns or edema, but it can also refer to fluid shifts into a body cavity (transcellular space), such as ascites and pleural effusions. With regard to severe burns, fluids may pool on the burn site (i.e. fluid lying outside of the interstitial tissue, exposed to evaporation) and cause depletion of the fluids. With pancreatitis or ileus, fluids may \"\"leak out\"\" into the peritoneal cavity, also causing depletion of the intracellular,"} +{"qid": "test381", "pid": "6674832", "query": "what are the two extracellular fluid compartments in the body", "answer": "intravascular", "passage": "Hypervolemia\nHypervolemia Hypervolemia, also known as fluid overload, is the medical condition where there is too much fluid in the blood. The opposite condition is hypovolemia, which is too little fluid volume in the blood. Fluid volume excess in the intravascular compartment occurs due to an increase in total body sodium content and a consequent increase in extracellular body water. The mechanism usually stems from compromised regulatory mechanisms for sodium handling as seen in congestive heart failure (CHF), kidney failure, and liver failure. It may also be caused by excessive intake of sodium from foods, intravenous (IV) solutions and blood transfusions,"} +{"qid": "test381", "pid": "6313799", "query": "what are the two extracellular fluid compartments in the body", "answer": "interstitial", "passage": "Interstitium\nInterstitium The interstitium is a contiguous fluid-filled space existing between a structural barrier, such as a cell wall or the skin, and internal structures, such as organs, including muscles and the circulatory system. The fluid in this space is called \"\"interstitial fluid\"\", comprises water and solutes, and drains into the lymph system. The interstitial compartment is composed of connective and supporting tissues within the body – called the extracellular matrix – that are situated outside the blood and lymphatic vessels and the parenchyma of organs. The non-fluid parts of the interstitium are predominantly collagen types I, III, and V, elastin,"} +{"qid": "test381", "pid": "9892170", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Transcellular fluid\"\nTranscellular fluid Transcellular fluid is the portion of total body water that represents all body fluids which are formed from the transport activities of cells. It is the smallest component of extracellular fluid. It is contained within epithelial lined spaces. It is often not calculated as a fraction of the extracellular fluid, but it is 5% of extracellular fluid (2.5% of total body water). Examples of this fluid are cerebrospinal fluid, ocular fluid and joint fluid. Due to the varying locations of transcellular fluid, the composition changes dramatically. Some of the electrolytes present in the transcellular fluid are sodium ions,"} +{"qid": "test381", "pid": "2674851", "query": "what are the two extracellular fluid compartments in the body", "answer": "intravascular", "passage": "\"Extracellular fluid\"\namong others, the pH, sodium, potassium, and calcium concentrations in the ECF. The volume of body fluid, blood glucose, oxygen, and carbon dioxide levels are also tightly homeostatically maintained. The volume of extracellular fluid in a young adult male of 70 kg (154 lbs) is 20% of body weight – about fourteen litres. Eleven litres is interstitial fluid and the remaining three litres is plasma. The main component of the extracellular fluid is the interstitial fluid which surrounds the cells in the body. The other major component of the ECF is the intravascular fluid of the circulatory system called blood"} +{"qid": "test381", "pid": "2674850", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Extracellular fluid\"\nthe ECF. Lymph makes up a small percentage of the interstitial fluid. The remaining small portion of the ECF includes the transcellular fluid (about 2.5%). The ECF can also be seen as having two components – plasma and lymph as a delivery system, and interstitial fluid for water and solute exchange with the cells. The extracellular fluid, in particular the interstitial fluid, constitutes the body's internal environment that bathes all of the cells in the body. The ECF composition is therefore crucial for their normal functions, and is maintained by a number of homeostatic mechanisms involving negative feedback. Homeostasis regulates,"} +{"qid": "test381", "pid": "11341325", "query": "what are the two extracellular fluid compartments in the body", "answer": "transcellular", "passage": "\"Compartment (pharmacokinetics)\"\nsupport of efforts in drug discovery, and in environmental science. In humans and related organisms, there are five major body compartments: the blood plasma, interstitial fluids, fat tissues, intracellular fluids, and transcellular fluids, the latter of which includes fluids in the pleural (peritoneal) cavity. The relative percents of body mass of these are included in the following table. Compartment (pharmacokinetics) In pharmacokinetics, a compartment is a defined volume of body fluids, typically of the human body, but also those of other animals with multiple organ systems. The meaning in this area of study is different from the concept of anatomic"} +{"qid": "test381", "pid": "16816307", "query": "what are the two extracellular fluid compartments in the body", "answer": "interstitial", "passage": "\"Glymphatic system\"\nGlymphatic system The glymphatic system (or glymphatic clearance pathway, or paravascular system) is a functional waste clearance pathway for the vertebrate central nervous system (CNS). The pathway consists of a para-arterial influx route for cerebrospinal fluid (CSF) to enter the brain parenchyma, coupled to a clearance mechanism for the removal of interstitial fluid (ISF) and extracellular solutes from the interstitial compartments of the brain and spinal cord. Exchange of solutes between CSF and ISF is driven primarily by arterial pulsation and regulated during sleep by the expansion and contraction of brain extracellular space. Clearance of soluble proteins, waste products, and"} +{"qid": "test382", "pid": "7309052", "query": "what emperor took over france after the reign of terror", "answer": "Napoleon", "passage": "\"History of Western civilization\"\nDuring this period France effectively became a dictatorship after the parliamentary coup of the radical leaders, the Jacobin. Their leader, Robespierre oversaw the Reign of Terror, in which thousands of people deemed disloyal to the republic were executed. Finally, in 1794, Robespierre himself was arrested and executed, and more moderate deputies took power. This led to a new government, the French Directory. In 1799, a coup overthrew the Directory and General Napoleon Bonaparte seized power as dictator and even an emperor in 1804. Liberté, égalité, fraternité (French for \"\"Liberty, equality, fraternity\"\"), now the national motto of France, had its origins"} +{"qid": "test382", "pid": "1892295", "query": "what emperor took over france after the reign of terror", "answer": "Napoleon", "passage": "\"Elective monarchy\"\nand in the Principality of Transylvania. Medieval France was an elective monarchy at the time of the first Capetian kings; the kings however took the habit of, during their reign, having their son elected as successor. The election soon became a mere formality and vanished after the reign of Philip II of France. In a much later period of its history, France briefly had again a kind of elective monarchy when Napoleon III was first elected President of France and then transformed himself into an Emperor – which, him being the nephew and heir of the Emperor Napoleon I, was"} +{"qid": "test382", "pid": "417067", "query": "what emperor took over france after the reign of terror", "answer": "Napoleon", "passage": "Terrorism\n6 AD. Their terror was also directed against Jewish \"\"collaborators\"\", including temple priests, Sadducees, Herodians, and other wealthy elites. The term \"\"terrorism\"\" itself was originally used to describe the actions of the Jacobin Club during the \"\"Reign of Terror\"\" in the French Revolution. \"\"Terror is nothing other than justice, prompt, severe, inflexible\"\", said Jacobin leader Maximilien Robespierre. In 1795, Edmund Burke denounced the Jacobins for letting \"\"thousands of those hell-hounds called Terrorists ... loose on the people\"\" of France. In January 1858, Italian patriot Felice Orsini threw three bombs in an attempt to assassinate French Emperor Napoleon III. Eight bystanders"} +{"qid": "test382", "pid": "18033180", "query": "what emperor took over france after the reign of terror", "answer": "Napoleon", "passage": "\"In the Reign of Terror: The Adventures of a Westminster Boy\"\nfighting in the French Army under Napoleon, purchases the chateau that once belonged to the Marquis de St. Caux. \"\"In the Reign of Terror\"\" was published in 1888 by Blackie and Son, a publishing company located in Glasgow, Scotland, and London, England. It was published nearly a century after the events of the French Revolution, and in his preface Henty states that the purpose of the novel is not \"\"to impart historical knowledge, for the facts of the dreadful time when 'the terror' reigned supreme in France are well known to all educated lads.\"\" He addresses the novel to \"\"My"} +{"qid": "test383", "pid": "3470910", "query": "how many episodes of touching evil are there", "answer": "16", "passage": "\"Touching Evil\"\nby Abbott or Davies. The first episode aired on 29 April 1997. The last episode of the series aired on 6 June 1999, after 16 episodes and 3 seasons. The star of the series is Robson Green, playing a police officer D.I. Dave Creegan. \"\"Touching Evil III\"\" was co-produced by Green's own independent production company Coastal Productions. Green's co-star was Nicola Walker, playing Creegan's colleague D.I. Susan Taylor. Touching Evil Touching Evil is a British television drama serial following the exploits of a crack squad on the Organised & Serial Crime Unit, a rapid response police force that serves the"} +{"qid": "test385", "pid": "8310533", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"A White Sport Coat and a Pink Crustacean\"\na play on the country song \"\"A White Sport Coat and a Pink Carnation\"\" by Marty Robbins, and it contains several of what later became Buffett's most popular songs. The album was recorded at outlaw country singer Tompall Glaser's studio in Nashville, Tennessee. It marks the first reference to Buffett's backup band as \"\"The Coral Reefer Band\"\" and is the first album on which long-time Reefers Michael Utley and Greg \"\"Fingers\"\" Taylor play. The album reached number 43 on the \"\"Billboard\"\" Top Country Albums chart, but did not make the \"\"Billboard\"\" 200 album chart, his last major release not to"} +{"qid": "test385", "pid": "6388900", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"Sport coat\"\noften made with metal buttons reflecting their origins in the British Navy and the sport of boating, though this is not necessarily a defining feature. Blazers also often have patch pockets, unlike other kinds of coats. A sports coat can be casual wear if worn with jeans. The jacket is mentioned in the title of the 1957 rock and roll hit single \"\"A White Sport Coat (and a Pink Carnation)\"\" by Marty Robbins; the title was later adapted by Jimmy Buffett for his 1973 album \"\"A White Sport Coat and a Pink Crustacean\"\". Sport coat A sport coat, also called"} +{"qid": "test385", "pid": "1578405", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"Marty Robbins\"\n\"\"A White Sport Coat and a Pink Carnation\"\" sold over one million copies, and was awarded a gold record. His musical accomplishments include the Grammy Award for his 1959 hit and signature song \"\"El Paso\"\", taken from his album \"\"Gunfighter Ballads and Trail Songs\"\". \"\"El Paso\"\" was his first song to hit No. 1 on the pop chart in the 1960s. It was followed up, successfully, by \"\"Don't Worry\"\", which reached No. 3 on the pop chart in 1961, becoming his third, and last, Top 10 pop hit. \"\"El Paso\"\" was followed by one prequel and one sequel: \"\"Faleena From"} +{"qid": "test385", "pid": "1578402", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"Marty Robbins\"\nthe Seventies for the bleached-denim 'outlaw school' of Waylon Jennings and Willie Nelson. Robbins belonged to the Jim Reeves era and he wore his embroidered cowboy suits proudly. Best known for the western ballad, \"\"El Paso\"\", his career also touched the rock 'n' roll side of country in songs like \"\"White Sports Coat And A Pink Carnation\"\", and he kept a touch of the dude about him to the end.\"\" In 1980, Robbins appeared on the PBS music program \"\"Austin City Limits\"\" (season 5). In addition to his recordings and performances, Robbins was an avid race car driver, competing in"} +{"qid": "test385", "pid": "2657914", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"Mitch Miller\"\nof his recommendation and a letter of reference to William Schuman that Aken's parents sent the young musician and future Hall of Fame guitarist to the Juilliard School of Music. Despite his distaste for rock 'n' roll, Miller emphasized emotional expression over vocal perfection and often produced records for Columbia artists that were rockish in nature. Two examples of these are \"\"A White Sport Coat (and a Pink Carnation)\"\" by Marty Robbins and \"\"Rock-a-Billy\"\" by Guy Mitchell. As a record producer, Miller gained a reputation for both innovation and gimmickry. Although he oversaw dozens of chart hits, his relentlessly cheery"} +{"qid": "test385", "pid": "1578404", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"Marty Robbins\"\ncardiovascular disease. After his third heart attack on December 2, 1982, he underwent quadruple coronary bypass surgery. He did not recover and died six days later, on December 8, at St. Thomas Hospital in Nashville. He was 57 years old. Although by 1960 Robbins' output was largely country music, his initial hits like \"\"Singing the Blues\"\", \"\"Knee Deep in the Blues\"\", \"\"The Story of My Life\"\", \"\"She Was Only Seventeen\"\", and \"\"A White Sport Coat and a Pink Carnation\"\" were generally regarded as more pop/teen idol material than his hits from 1960 onwards (\"\"El Paso\"\" etc.). His 1957 recording of"} +{"qid": "test385", "pid": "11152427", "query": "who sang the song a white sports coat and a pink carnation", "answer": "Marty Robbins", "passage": "\"A White Sport Coat\"\nA White Sport Coat \"\"A White Sport Coat\"\" is a 1957 country and western song with words and music both written by Marty Robbins. It was recorded on January 25, 1957, and released on the Columbia Records label, over a month later, on March 4. The arranger and recording session conductor was Ray Conniff, an in-house conductor/arranger at Columbia. Robbins had demanded to have Conniff oversee the recording after his earlier hit, \"\"Singing the Blues\"\", had been quickly eclipsed on the charts by Guy Mitchell's cover version scored and conducted by Conniff in October, 1956. Robbins recalled writing the song"} +{"qid": "test389", "pid": "7801945", "query": "when was the last time the vikings made the superbowl", "answer": "in the 1970s", "passage": "\"Superbowl of Wrestling\"\nSuperbowl of Wrestling The Superbowl of Wrestling was an event held in the 1970s. It was one of the first professional wrestling \"\"Supercards\"\". The first Superbowl of Wrestling was held in Cleveland, Ohio at Municipal Stadium on August 12, 1972. Three rings were set up, side by side, and often more than one match would be going on at a time. Attendance figures have been estimated as high as 20,000 and as low as 5,000. No reliable sources seem to agree on a number. Here are partial results of the show: Another Superbowl of Wrestling was held on January 25,"} +{"qid": "test389", "pid": "7801946", "query": "when was the last time the vikings made the superbowl", "answer": "in the 1970s", "passage": "\"Superbowl of Wrestling\"\n1978. This Superbowl of Wrestling was held at the Orange Bowl in Miami, Florida, drawing over 12,000 fans for a unification match between the WWWF and NWA World Championships. Here are the results: Superbowl of Wrestling The Superbowl of Wrestling was an event held in the 1970s. It was one of the first professional wrestling \"\"Supercards\"\". The first Superbowl of Wrestling was held in Cleveland, Ohio at Municipal Stadium on August 12, 1972. Three rings were set up, side by side, and often more than one match would be going on at a time. Attendance figures have been estimated as"} +{"qid": "test390", "pid": "1293825", "query": "where does new crust come from in sea floor spreading", "answer": "volcanic activity", "passage": "\"Seafloor spreading\"\n~ Tx/L, where L is the distance between the ridge to the continental shelf (roughly half the ocean width), and T is the ocean age. Seafloor spreading Seafloor spreading is a process that occurs at mid-ocean ridges, where new oceanic crust is formed through volcanic activity and then gradually moves away from the ridge. Earlier theories (e.g. by Alfred Wegener and Alexander du Toit) of continental drift postulated that continents \"\"ploughed\"\" through the sea. The idea that the seafloor itself moves (and also carries the continents with it) as it expands from a central axis was proposed by Harry Hess"} +{"qid": "test390", "pid": "1293806", "query": "where does new crust come from in sea floor spreading", "answer": "volcanic activity", "passage": "\"Seafloor spreading\"\nSeafloor spreading Seafloor spreading is a process that occurs at mid-ocean ridges, where new oceanic crust is formed through volcanic activity and then gradually moves away from the ridge. Earlier theories (e.g. by Alfred Wegener and Alexander du Toit) of continental drift postulated that continents \"\"ploughed\"\" through the sea. The idea that the seafloor itself moves (and also carries the continents with it) as it expands from a central axis was proposed by Harry Hess from Princeton University in the 1960s. The theory is well accepted now, and the phenomenon is known to be caused by convection currents in the"} +{"qid": "test394", "pid": "9212013", "query": "how many times have real madrid won the champions league in a row", "answer": "five times", "passage": "\"Spanish football clubs in international competitions\"\nCup/UEFA Champions League title and Sevilla won their fourth UEFA Cup/UEFA Europa League; during the 2015–16 season as Real Madrid won their eleventh European Cup/UEFA Champions League title and Sevilla won their fifth UEFA Cup/UEFA Europa League (first team to win three consecutive editions of this competition). Real Madrid won the European Cup five times in a row between 1956 and 1960 and then for a sixth time in 1966. La Liga clubs also dominated the early Inter-Cities Fairs Cup. Barcelona, Valencia and Zaragoza won this competition six times between 1958 and 1966, resulting in three all-La Liga finals in"} +{"qid": "test394", "pid": "492922", "query": "how many times have real madrid won the champions league in a row", "answer": "five", "passage": "\"La Liga\"\nand Valencia are in the top ten most successful clubs in European football in terms of total European trophies. These three clubs, along with Sevilla and Atlético Madrid, are five of the most successful teams in European competition history; these five are the only Spanish clubs to have won five or more international trophies. Deportivo La Coruña are the joint fifth-most participating Spanish team in the Champions League with Sevilla — after Real Madrid, Barcelona, Valencia and Atletico Madrid — with five Champions League appearances in a row, including a semifinal appearance in 2003–04. In 2005–06, Barcelona won the Champions"} +{"qid": "test394", "pid": "367424", "query": "how many times have real madrid won the champions league in a row", "answer": "five times", "passage": "\"Real Madrid C.F.\"\nthe UEFA Champions League. It was under Bernabéu's guidance that Real Madrid established itself as a major force in both Spanish and European football. The club won the European Cup five times in a row between 1956 and 1960, which included the 7–3 Hampden Park final against Eintracht Frankfurt in 1960. After these five consecutive successes, Real was permanently awarded the original cup and earning the right to wear the UEFA badge of honour. The club won the European Cup for a sixth time in 1966 defeating Partizan Belgrade 2–1 in the final with a team composed entirely of same"} +{"qid": "test394", "pid": "10845058", "query": "how many times have real madrid won the champions league in a row", "answer": "five times", "passage": "\"History of Real Madrid C.F.\"\nHistory of Real Madrid C.F. Real Madrid C.F. are a professional football club based in Madrid, Spain. In addition to their domestic success, Real Madrid's reputation as a major club was established by their outstanding record in the European Cup. To date, they have been crowned champions of Europe a record thirteen times. Alfredo Di Stéfano, Ferenc Puskás and other famous players helped the club win the European Cup five times in a row between 1956 and 1960, which included the memorable 7–3 Hampden Park final against German side Eintracht Frankfurt in 1960. The club won for a sixth time"} +{"qid": "test394", "pid": "838495", "query": "how many times have real madrid won the champions league in a row", "answer": "five", "passage": "\"Zinedine Zidane\"\neighth trophy as manager when Real defeated Grêmio in the 2017 FIFA Club World Cup in the United Arab Emirates. On 26 May, Zidane won the Champions League for the third time in a row, beating Liverpool 3–1 in the final. He became one of three managers, alongside Bob Paisley and Carlo Ancelotti, to win the European Cup three times, while also becoming the first manager to win the trophy in three consecutive seasons. On 31 May, five days after the Champions League Final, Zidane announced his resignation as Real Madrid manager, citing the club's \"\"need for change\"\" as his"} +{"qid": "test394", "pid": "492911", "query": "how many times have real madrid won the champions league in a row", "answer": "five", "passage": "\"La Liga\"\nsequence. All in all, Barcelona and Real Madrid won 4 La Liga titles each, with Atletico De Madrid and Atletico De Bilbao winning one each during this decade. Between 1961 and 1980, Real Madrid dominated the \"\"Primera División\"\", being crowned champions 14 times, including five-in-a-row from 1961 to 1965 and two three-in-a-row sequences (1967–1969 and 1978–1980). However, their only European Cup triumph during this period came in 1966, a sharp contrast to their five successive victories in the competition from 1956. During this era, only Atlético Madrid offered Real Madrid any serious challenge, adding four more titles to their tally"} +{"qid": "test396", "pid": "4739491", "query": "where do you get a cashiers check from", "answer": "a bank", "passage": "\"Cashier's check\"\nCashier's check A cashier's check (or cashier's cheque) is a check guaranteed by a bank, drawn on the bank's own funds and signed by a cashier. Cashier's checks are treated as guaranteed funds because the bank, rather than the purchaser, is responsible for paying the amount. They are commonly required for real estate and brokerage transactions. Cashier's checks deposited into a bank account are usually cleared the next day. The customer can request \"\"next-day availability\"\" when depositing a cashier's check in person. When cashier’s checks took weeks to clear the banks, they were often forged in fraud schemes. The recipient"} +{"qid": "test396", "pid": "4739502", "query": "where do you get a cashiers check from", "answer": "a bank", "passage": "\"Cashier's check\"\naccount credit many days later, the customer will usually have already mailed the item. In many cases the \"\"check\"\" or \"\"money order\"\" is for more than the amount owed, and the victim is asked to refund the difference in cash. Cashier's check A cashier's check (or cashier's cheque) is a check guaranteed by a bank, drawn on the bank's own funds and signed by a cashier. Cashier's checks are treated as guaranteed funds because the bank, rather than the purchaser, is responsible for paying the amount. They are commonly required for real estate and brokerage transactions. Cashier's checks deposited into"} +{"qid": "test396", "pid": "4739493", "query": "where do you get a cashiers check from", "answer": "a bank", "passage": "\"Cashier's check\"\nnot debit the amount from the customer's account until the check is deposited or cashed by the recipient. A cashier's check is not the same as a teller's check, also known as a banker's draft, which is a check provided to a customer of a bank or acquired from a bank for remittance purposes and drawn by the bank, and drawn on another bank or payable through or at a bank. A cashier's check is also different from a certified check, which is a personal check written by the customer and drawn on the customer's account, on which the bank"} +{"qid": "test396", "pid": "9439417", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Frank J. Wilson\"\nthe name of J.C. Dunbar was depositing hundreds of thousands of dollars in cash into the bank in gunny sacks. Dunbar also purchased $300,000 worth of cashier's checks. With help from his informants, Wilson was able to find out that Dunbar's real name was Reis. They also discovered that he was on the run and was hiding in St. Louis. Wilson rushed to get to St. Louis and was able to find Reis with Help from the postal inspectors. Wilson then arrested Reis and brought him back to Chicago. In Chicago, Wilson got Reis to testify that the cashiers checks"} +{"qid": "test396", "pid": "4739498", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Cashier's check\"\nbank can be held responsible for accepting a bad cashier's check. In Canada, bank drafts do not carry any different legal weight as opposed to a standard check, but are provided as a service to clients as a payment instrument with guaranteed funds. Drafts (or money orders depending on the issuing institution) usually have better security features than standard checks, and as such are often preferred when the receiver is concerned about receiving fraudulent payment instruments. However, bank drafts can also be subject to counterfeiting, and as such can be held or verified by depositing institutions in accordance with their"} +{"qid": "test396", "pid": "17458943", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Kill It Live\"\nto Gilbert. The guitarist explained, \"\"There is a reason why they are a little bit more energetic, because we’re on that tour and it’s just wild and we’re playing and you just start writing.\"\" New song \"\"I Want to Believe\"\" is about \"\"that whole thing in music that’s going on and questioning a band’s integrity. Are you doing this because you really love it or are you doing it because you’re checking in and checking out when your bank account gets low? Are you willing to play in front of five people when the going gets rough, or is that"} +{"qid": "test396", "pid": "4739492", "query": "where do you get a cashiers check from", "answer": "a bank", "passage": "\"Cashier's check\"\nof the check would deposit it in their account and withdraw funds under next-day availability, assuming it was legitimate. The bank might not be informed the check was fraudulent until, perhaps, weeks after the customer had withdrawn funds made available by the fraudulent deposit, by which time the customer would be legally liable for the cash already withdrawn. A customer asks a bank for a cashier's check, and the bank debits the amount from the customer's account immediately, and assumes the responsibility for covering the cashier's check. That is in contrast with a personal check, in which the bank does"} +{"qid": "test396", "pid": "4739496", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Cashier's check\"\nofficer or other senior official. Some banks contract out the maintenance of their cashier's check accounts and check issuing. One leading contractor is Integrated Payment Systems, which issues cashier's checks and coordinates redemption of the items for many banks, in addition to issuing money orders and other payment instruments. In theory, checks issued by a financial institution but drawn on another institution, as is often the case with credit unions, are teller's checks. Due to an increase in fraudulent activities, starting in 2006 many banks insist upon waiting for a cashier's check to clear the originating institution before making funds"} +{"qid": "test396", "pid": "10169587", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Five Dolls for an August Moon\"\nwhen he sneaks out of the house and uncovers a motorboat which will take him to the mainland. As he returns to the house to get supplies, Jack confronts him and reveals himself to be the killer, having killed off everyone to steal the $1 million cashier's checks from their bank accounts. Before Stark can do anything, Jack shoots him dead. But it is revealed that Jack has not been acting alone. After killing Stark, Jack meets in the freezer with Trudy, who is the real mastermind behind the whole scheme. Trudy had met with Jack sometime before arriving on"} +{"qid": "test396", "pid": "4739495", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Cashier's check\"\ncolor-shifting ink, and special bond paper. These are designed to decrease the vulnerability to counterfeit items. To be recognized as a cashier's check, words to that effect must be included in a prominent place on the front of the item. The payee's name, the written and numeric amount to be tendered, the remitter's information, and other tracking information (such as the branch of issue), are printed on the front of the check. The check is generally signed by one or two bank employees or officers; however, some banks issue cashier's checks featuring a facsimile signature of the bank's chief executive"} +{"qid": "test396", "pid": "4739497", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Cashier's check\"\navailable for withdrawal. Personal checks will thus have the same utility in such transactions. In the United States, under Article 3 of the Uniform Commercial Code, a cashier's check is effective as a note of the issuing bank. Also, according to Regulation CC (Reg CC) of the Federal Reserve, cashier's checks are recognized as \"\"guaranteed funds\"\" and amounts under $5,000 are not subject to deposit hold, except in the case of new accounts. The length of a hold varies (2 days to 2 weeks) depending on the bank. It is not clear what length of time may pass before a"} +{"qid": "test396", "pid": "4739494", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Cashier's check\"\ncertifies that the signature is genuine and that the customer has sufficient funds in the account to cover the check. Also, it should not be confused with a counter check, which is a non-personalized check provided by the bank for the convenience of a customer in making withdrawals or payments but is not guaranteed and is functionally equivalent to a personal check. Cashier's checks feature the name of the issuing bank in a prominent location, usually the upper left-hand corner or upper centre of the check. In addition, they are generally produced with enhanced security features, including watermarks, security thread,"} +{"qid": "test396", "pid": "7111936", "query": "where do you get a cashiers check from", "answer": "a bank", "passage": "\"Expedited Funds Availability Act\"\nor envelope. *\"\"Regulation CC defines a \"\"cashier's check\"\" as a check that is issued by a bank, drawn on that same bank, is a direct liability of the bank, and signed by one or more officers of that bank. Though the term \"\"teller's check\"\" is commonly used only by Federal credit unions, under Regulation CC any check \"\"drawn by the bank, and drawn on another bank or payable through or at a bank\"\" is a \"\"teller's check\"\" if issued \"\"for remittance purposes\"\". \"\"Official Checks\"\" or \"\"Bank Checks\"\" may not qualify as \"\"cashier's checks\"\" under Regulation CC, but they usually qualify"} +{"qid": "test396", "pid": "1290643", "query": "where do you get a cashiers check from", "answer": "bank", "passage": "\"Aspect-oriented programming\"\ndefines how the security check is implemented. That way, both the check and the places can be maintained in one place. Further, a good pointcut can anticipate later program changes, so if another developer creates a new method to access the bank account, the advice will apply to the new method when it executes. So for the example above implementing logging in an aspect: One can think of AOP as a debugging tool or as a user-level tool. Advice should be reserved for the cases where you cannot get the function changed (user level) or do not want to change"} +{"qid": "test397", "pid": "17047403", "query": "how many episodes in great british bake off 2017", "answer": "10", "passage": "\"The Great British Bake Off (series 1)\"\nThe Great British Bake Off (series 1) The first series of \"\"The Great British Bake Off\"\", first aired on BBC Two on 17 August 2010. Ten home bakers took part in a bake-off to test every aspect of their baking skills as they battled to be crowned the Great British Bake Off's best amateur baker. Each week the nationwide tour saw bakers put through three challenges in a particular discipline, with some being eliminated from competition at the end of the episode. The rounds of the competition took place in various locations across the UK following a theme, for example,"} +{"qid": "test397", "pid": "14943385", "query": "how many episodes in great british bake off 2017", "answer": "10", "passage": "\"The Great British Bake Off\"\nThe Great British Bake Off The Great British Bake Off (also called Bake Off or GBBO) is a British television baking competition, produced by Love Productions, in which a group of amateur bakers compete against each other in a series of rounds, attempting to impress a group of judges with their baking skills, with a contestant being eliminated in each round, with the winner being selected from the contestants who reach the finals. The show's first episode was aired on 17 August 2010, with its first four series broadcast on BBC Two, until its growing popularity led the BBC to"} +{"qid": "test397", "pid": "17047440", "query": "how many episodes in great british bake off 2017", "answer": "10", "passage": "\"The Great British Bake Off (series 2)\"\nbakers were individually highlighted as Star Baker. For their final signature bake, the finalists were asked to bake 12 mille-feuille in 2 1/2 hours. For the technical challenge, the bakers were asked to bake a sachertorte in 2 hours and 40 minutes. For their final showstopper, the bakers were asked to bake 3 different types of petits fours: Meringue, Sweet Pastry, and Sponge Based, within 4 hours. Both episodes 9 and 10 were Masterclasses by Paul and Mary where they demonstrated how to make the Technical Challenges that they had set throughout the series. Episode 9 showed the first four"} +{"qid": "test397", "pid": "17047411", "query": "how many episodes in great british bake off 2017", "answer": "10", "passage": "\"The Great British Bake Off (series 1)\"\njust 16 hours, one being \"\"traditional\"\" and the other \"\"contemporary\"\". Paul and Mary explore the history of the Great British Wedding Cake, looking at the dramatic changes through the eras; from the Tudors and the Victorians, wartime Britain and the eighties to the present day. Although Paul and Mary judged the results, no individual winner was declared. Official episode viewing figures are from BARB. The Great British Bake Off (series 1) The first series of \"\"The Great British Bake Off\"\", first aired on BBC Two on 17 August 2010. Ten home bakers took part in a bake-off to test every"} +{"qid": "test397", "pid": "17483355", "query": "how many episodes in great british bake off 2017", "answer": "10", "passage": "\"The Great British Bake Off (series 4)\"\nby an episode of \"\"Top Gear\"\" in 2007. Series 4 had an average of viewing figure of 7.4 million. Official episode viewing figures are from BARB. The Great British Bake Off (series 4) The fourth series of \"\"The Great British Bake Off\"\" began airing on 20 August 2013. Mel Giedroyc and Sue Perkins again presented the show and Mary Berry and Paul Hollywood returned as judges. As with series three, the competition was held at Harptree Court in East Harptree, Somerset. 13,000 amateur bakers applied to appear on the programme, and 100 were selected for screen test, with the best"} +{"qid": "test398", "pid": "11053451", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"The Heart Gently Weeps\"\nfor George Harrison, RZA, who produced this song, asked Harrison's son Dhani to play rhythm guitar. It was played using a mint condition Gretsch guitar from 1961 which was given to RZA as a gift from Russell Crowe after they had finished filming \"\"American Gangster\"\". The song was #50 on \"\"Rolling Stone\"\"s list of the 100 Best Songs of 2007. The Heart Gently Weeps \"\"The Heart Gently Weeps\"\" is the first single from the 2007 album \"\"8 Diagrams\"\" by the Wu-Tang Clan. The song features a sample of The Beatles' song \"\"While My Guitar Gently Weeps\"\". It features guest appearances"} +{"qid": "test398", "pid": "11053450", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"The Heart Gently Weeps\"\nThe Heart Gently Weeps \"\"The Heart Gently Weeps\"\" is the first single from the 2007 album \"\"8 Diagrams\"\" by the Wu-Tang Clan. The song features a sample of The Beatles' song \"\"While My Guitar Gently Weeps\"\". It features guest appearances from three other musicians: R&B singer Erykah Badu sings the song's chorus; Dhani Harrison, son of Beatles member George Harrison, plays acoustic guitar; and John Frusciante of the Red Hot Chili Peppers is featured on lead guitar. This song was made using a cover version of the George Harrison song played by the blues guitarist Jimmy Ponder. Out of respect"} +{"qid": "test398", "pid": "3634361", "query": "who played guitar on my guitar gently weeps", "answer": "Eric Clapton", "passage": "\"While My Guitar Gently Weeps\"\nWhile My Guitar Gently Weeps \"\"While My Guitar Gently Weeps\"\" is a song by the English rock band the Beatles from their 1968 double album \"\"The Beatles\"\" (also known as \"\"the White Album\"\"). It was written by George Harrison, the band's lead guitarist. The song serves as a comment on the disharmony within the Beatles following their return from studying Transcendental Meditation in India in early 1968. This lack of camaraderie was reflected in the band's initial apathy towards the composition, which Harrison countered by inviting his friend and occasional collaborator, Eric Clapton, to contribute to the recording. Clapton overdubbed"} +{"qid": "test398", "pid": "3634384", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"While My Guitar Gently Weeps\"\ndescription, \"\"While My Guitar Gently Weeps\"\" was the most instantly popular of \"\"a quartet of more conventionally accessible pop songs [written by Harrison] that many felt were among the finest on the album\"\". Among contemporary reviews, Jann Wenner of \"\"Rolling Stone\"\" said that \"\"While My Guitar Gently Weeps\"\" was \"\"one of George Harrison's very best songs\"\", and likened it to \"\"Blue Jay Way\"\" in that it \"\"recalls California, the simple Baja California beat, the dreamy words of the Los Angeles haze, the organic pace lapping around every room as if in invisible waves\"\". Wenner found the lyrics \"\"slightly self-righteous and"} +{"qid": "test398", "pid": "3634391", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"While My Guitar Gently Weeps\"\nand, as with his substandard playing at the event, one indicative of his descent into heroin addiction.\"\"The Concert for Bangladesh Revisited with George Harrison and Friends\"\", DVD, 2005. The version performed by Harrison during his set at the 1987 Prince's Trust Concert reunited him with Starr and Clapton, and features an extended coda with the guitars of Harrison and Clapton interweaving. On their 1991 tour of Japan, Harrison and Clapton performed \"\"While My Guitar Gently Weeps\"\" with additional background vocals. An edit combining parts of the 14 December and 17 December Tokyo Dome performances of the song was"} +{"qid": "test398", "pid": "8155359", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"This Guitar (Can't Keep from Crying)\"\nnew composition as \"\"Son of 'Guitar Gently Weeps'\"\".George Harrison interview, \"\"Rockweek\"\", \"\"George Harrison explains 'This Guitar Can't Keep from Crying'\"\" (retrieved 5 May 2013). Like the Beatles track, \"\"This Guitar\"\" is structured around short, minor-key verses (in this case, in the key of G minor) that conclude with the song title, rather than distinct choruses. Author Ian Inglis also notes the \"\"evident similarity\"\" between the melody of the two compositions. As with Harrison's lyrics for \"\"While My Guitar Gently Weeps\"\", Inglis writes, \"\"This Guitar\"\" follows in a tradition established by Woody Guthrie, Pete Seeger and Bo Diddley, of"} +{"qid": "test398", "pid": "3634387", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"While My Guitar Gently Weeps\"\nPhil Ochs's 'Tape from California', is the first track I know that succeeds in making magnanimous love serious and touching.\"\" \"\"While My Guitar Gently Weeps\"\" became a staple of US rock radio during the early 1970s, on a par with songs such as \"\"Layla\"\" by Clapton's short-lived band Derek and the Dominos, Led Zeppelin's \"\"Stairway to Heaven\"\" and the Who's \"\"Won't Get Fooled Again\"\". In 1973, it appeared on the Beatles' double album compilation \"\"1967–1970\"\", as one of only three tracks representing the White Album. Capitol Records included it on \"\"The Best of George Harrison\"\" in 1976; a year before"} +{"qid": "test398", "pid": "3634365", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"While My Guitar Gently Weeps\"\n1971 and \"\"Live in Japan\"\" in 1992. Backed by a band that included McCartney and Ringo Starr, Clapton performed the song at the Concert for George in November 2002, a year after Harrison's death. George Harrison wrote \"\"While My Guitar Gently Weeps\"\" after his return from India, where the Beatles had been studying Transcendental Meditation under Maharishi Mahesh Yogi during the spring of 1968. The visit had allowed Harrison to re-engage with the guitar as his primary instrument, after focusing on the Indian sitar for the previous two years, and also marked the start of a prolific period for him"} +{"qid": "test398", "pid": "3634386", "query": "who played guitar on my guitar gently weeps", "answer": "George Harrison", "passage": "\"While My Guitar Gently Weeps\"\nof the \"\"highlights ... moving into a slightly Hendrix thing\"\" and was bound to be \"\"Another hit for somebody\"\". Three weeks later, Smith acknowledged that the singer and composer was in fact Harrison, and added: \"\"the words are evocative and the melody line is creeping into my mind to stay.\"\" Geoffrey Cannon wrote in \"\"The Guardian\"\": \"\"George Harrison has seen the truth, and is anxious that we should see our truth. He's a preacher, man of fire. When his songs speak of 'you', the address is direct. He achieves his character in 'While My Guitar Gently Weeps', which, with"} +{"qid": "test399", "pid": "17689784", "query": "what state does rick and morty take place in", "answer": "Washington", "passage": "\"Rick and Morty\"\ntheir children Summer and Morty, and Beth's father, Rick Sanchez, who lives with them as a guest. According to Justin Roiland, the family lives outside of Seattle in the U.S. state of Washington. The adventures of \"\"Rick and Morty\"\", however, take place across an infinite number of realities, with the characters travelling to other planets and dimensions through portals and Rick's flying car. Rick is an eccentric and alcoholic mad scientist, who eschews many ordinary conventions such as school, marriage, love, and family. He frequently goes on adventures with his 14-year-old grandson, Morty, a kind-hearted but easily distressed boy, whose"} +{"qid": "test40", "pid": "17736433", "query": "when did the dallas cowboys win their last playoff game", "answer": "2014", "passage": "\"2014 Dallas Cowboys season\"\nloss to the Bears that began the (7-5) Cowboys late season slide, losing 3 out of their 4 final games, ending the year with a 3rd straight 8-8 season and no playoff appearance for the 4th year in a row. For the second consecutive year, Dallas and Philadelphia would split the season series with the road team winning all four games. Dallas has now won 5 out of their last 6 meetings in Philadelphia. With the win, the Cowboys took a one-game lead in the NFC East with two games to go. The victory over the Eagles in Philadelphia improved"} +{"qid": "test40", "pid": "17736432", "query": "when did the dallas cowboys win their last playoff game", "answer": "2014", "passage": "\"2014 Dallas Cowboys season\"\nof the season for Dallas at home, and DeMarco Murray failed to break 100 yards for only the second time this season. With the win, the Cowboys avoided going 8-8 for the first time since 2010, and clinched a winning season, the first since the 2009 team won the NFC East and won a playoff game. After defeating the Bears in Chicago, the Cowboys are 6-0 on the road after 13 games into their 2014 season. Oddly enough, the last time Dallas lost on the road was in Chicago 45-28 nearly a year ago on December 9, 2013. A devastating"} +{"qid": "test40", "pid": "17736437", "query": "when did the dallas cowboys win their last playoff game", "answer": "2014", "passage": "\"2014 Dallas Cowboys season\"\nwas the 108th meeting in 54 years between the Dallas Cowboys and the Washington Redskins. After this game, the Cowboys all-time record versus the Redskins is 65-41-2 in 54 years. The Dallas Cowboys now lead the all time Head-to-Head match-up against the Detroit Lions (14-12). The Cowboys also lead the all time playoff match-up against the Lions (2-1). This is the first time in franchise history that the Cowboys have won a post-season game when trailing by 10 points or more at half time. At the time, with this win over the Lions, the Cowboys became the team with the"} +{"qid": "test403", "pid": "821435", "query": "the removal of temperature in fire fighting method is known as", "answer": "cooling", "passage": "Hyperthermia\nof heatstroke. In this situation, antipyretics actually may be harmful in patients who develop hepatic, hematologic, and renal complications because they may aggravate bleeding tendencies. When body temperature is significantly elevated, mechanical cooling methods are used to remove heat and to restore the body's ability to regulate its own temperatures. Passive cooling techniques, such as resting in a cool, shady area and removing clothing can be applied immediately. Active cooling methods, such as sponging the head, neck, and trunk with cool water, remove heat from the body and thereby speed the body's return to normal temperatures. Drinking water and turning"} +{"qid": "test404", "pid": "20076448", "query": "the witch and the hundred knight 2 us release", "answer": "March 2018", "passage": "\"The Witch and the Hundred Knight 2\"\nthe PlayStation 4 was chosen as platform for the game because \"\"The Witch and the Hundred Knight Revival\"\", an enhanced port of the original game for the system, was well received. A Winter 2017 release was announced at the same time. Later that month, the February 23 release date was revealed. The game will be released in North America and Europe in March 2018. \"\"The Witch and the Hundred Knight 2\"\" received a 33/40 score in issue 1472 of Famitsu upon its Japanese release. Commercially, the game was not as successful in Japan as its predecessor. According to Media Create,"} +{"qid": "test405", "pid": "4430896", "query": "who was in dont worry be happy video", "answer": "McFerrin", "passage": "\"Don't Worry, Be Happy\"\nDon't Worry, Be Happy \"\"Don't Worry, Be Happy\"\" is a popular worldwide hit song by musician Bobby McFerrin. Released in September 1988, it became the first \"\"a cappella\"\" song to reach number one on the \"\"Billboard\"\" Hot 100 chart, a position it held for two weeks. The Indian mystic and sage Meher Baba (1894–1969) often used the expression \"\"Don't worry, be happy\"\" when cabling his followers in the West. In the 1960s, the expression was printed up on inspirational cards and posters of the era. In 1988, McFerrin noticed a similar poster in the apartment of the jazz duo Tuck"} +{"qid": "test405", "pid": "4430902", "query": "who was in dont worry be happy video", "answer": "McFerrin", "passage": "\"Don't Worry, Be Happy\"\nNineties\"\" album in 2009. Reggae artist Cas Haley covered the song as a hidden bonus track on his \"\"Favorites\"\" album (together with former Jah Roots lead singer, Josh Heinrichs). Also in 1989 Dutch rock DJ Alfred Lagarde recorded a version in Dutch with a heavy Surinam accent under the name Johnny Camaro. Spanish Ska band The Locos covered this song in a similar style, ska. Don't Worry, Be Happy \"\"Don't Worry, Be Happy\"\" is a popular worldwide hit song by musician Bobby McFerrin. Released in September 1988, it became the first \"\"a cappella\"\" song to reach number one on the"} +{"qid": "test406", "pid": "20188067", "query": "total strength of judges in supreme court of india", "answer": "24", "passage": "\"Indira Banerjee\"\nHigh Court, after Justice Kanta Kumari Bhatnagar who headed the Court between June and November 1992. Indira Banerjee Justice Indira Banerjee is presently a Judge in the Supreme Court of India, the 8th female Judge in history and the 3rd female Judge of the Supreme Court of India at present. She was the Chief Justice of the Madras High Court, the second woman to hold the postition in India. before being elevated as a Judge of the Supreme Court of India. Indira Banerjee was born on 24 September 1957. She did her schooling at the Loreto House in Kolkata. She"} +{"qid": "test406", "pid": "20188065", "query": "total strength of judges in supreme court of india", "answer": "24", "passage": "\"Indira Banerjee\"\nIndira Banerjee Justice Indira Banerjee is presently a Judge in the Supreme Court of India, the 8th female Judge in history and the 3rd female Judge of the Supreme Court of India at present. She was the Chief Justice of the Madras High Court, the second woman to hold the postition in India. before being elevated as a Judge of the Supreme Court of India. Indira Banerjee was born on 24 September 1957. She did her schooling at the Loreto House in Kolkata. She pursued her higher education at the Presidency College, Kolkata and Calcutta University's College of Law. She"} +{"qid": "test406", "pid": "2390765", "query": "total strength of judges in supreme court of india", "answer": "24", "passage": "\"Supreme Court of India\"\na fixed term for the judges including the Chief Justice of India. Article 125 of the Indian constitution leaves it to the Indian parliament to determine the salary, other allowances, leave of absence, pension, etc. of the supreme court judges. However, the parliament cannot alter any of these privileges and rights to the judge's disadvantage after his/her appointment. A judge of the supreme court draws a salary of per month—equivalent to the most-senior civil servant of the Indian government, Cabinet Secretary of India—while the chief justice earns per month. As Per Article 124 and third Schedule of the constitution, the"} +{"qid": "test406", "pid": "20955207", "query": "total strength of judges in supreme court of india", "answer": "24", "passage": "\"Ramayyagari Subhash Reddy\"\nboth original and appellate side. His field of specialization is in Constitutional Law. He was appointed as an Additional Judge of the Andhra Pradesh High Court on 2 December 2002. He was appointed as Permanent Judge on 24 June 2004. He was appointed as Chief Justice of Gujarat High Court on 13 February 2016. He was appointed as Judge of Supreme Court of India on 2 November 2018. Ramayyagari Subhash Reddy Ramayyagari Subhash Reddy is the judge of Supreme Court of India since 2 November 2018. Prior to his elevation to the bench of Supreme Court, he was the Chief"} +{"qid": "test407", "pid": "11833324", "query": "who is the original singer of just when i needed you most", "answer": "Randy VanWarmer", "passage": "\"Just When I Needed You Most\"\nJust When I Needed You Most \"\"Just When I Needed You Most\"\" is the title of a 1979 hit single by the American singer-songwriter Randy VanWarmer. VanWarmer was inspired to write \"\"Just When I Needed You Most\"\" after his old car that he loved and used for years broke down on the way to work in Denver, Colorado and by a \"\"devastating\"\" breakup with a girlfriend: he wrote the song six months after that breakup co-writing it with Tony Wilson of the group Hot Chocolate two years before it became a hit. After recording \"\"Just When I Needed You Most\"\""} +{"qid": "test407", "pid": "11833330", "query": "who is the original singer of just when i needed you most", "answer": "Randy VanWarmer", "passage": "\"Just When I Needed You Most\"\nby Wolfgang Ambros for his 2012 album 190352. Just When I Needed You Most \"\"Just When I Needed You Most\"\" is the title of a 1979 hit single by the American singer-songwriter Randy VanWarmer. VanWarmer was inspired to write \"\"Just When I Needed You Most\"\" after his old car that he loved and used for years broke down on the way to work in Denver, Colorado and by a \"\"devastating\"\" breakup with a girlfriend: he wrote the song six months after that breakup co-writing it with Tony Wilson of the group Hot Chocolate two years before it became a hit."} +{"qid": "test409", "pid": "1346808", "query": "ganglion axons forming the optic nerve run to the", "answer": "photoreceptor cells", "passage": "\"Optic nerve\"\nof the retinal ganglion cells of one retina. In the fovea, which has high acuity, these ganglion cells connect to as few as 5 photoreceptor cells; in other areas of retina, they connect to many thousand photoreceptors. The optic nerve leaves the orbit (eye socket) via the optic canal, running postero-medially towards the optic chiasm, where there is a partial decussation (crossing) of fibres from the temporal visual fields (the nasal hemi-retina) of both eyes. The proportion of decussating fibers varies between species, and is correlated with the degree of binocular vision enjoyed by a species. Most of the axons"} +{"qid": "test409", "pid": "1346805", "query": "ganglion axons forming the optic nerve run to the", "answer": "lateral geniculate nucleus", "passage": "\"Optic nerve\"\nOptic nerve The optic nerve, also known as cranial nerve II, or simply as CN II, is a paired nerve that transmits visual information from the retina to the brain. In humans, the optic nerve is derived from optic stalks during the seventh week of development and is composed of retinal ganglion cell axons and glial cells; it extends from the optic disc to the optic chiasma and continues as the optic tract to the lateral geniculate nucleus, pretectal nuclei, and superior colliculus. The optic nerve is the second of twelve paired cranial nerves and is technically part of the"} +{"qid": "test409", "pid": "14447397", "query": "ganglion axons forming the optic nerve run to the", "answer": "lateral geniculate nucleus", "passage": "\"Bistratified cell\"\nBistratified cell Bistratified ganglion cell can refer to either of two kinds of retinal ganglion cells whose cell body is located in the ganglion cell layer of the retina, the small-field bistratified ganglion cell, also known as small bistratified cell (SBC), and the large-field bistratified ganglion cell or large bistratified cell (LBC). Bistratified cells receive their input from bipolar cells and amacrine cells. The bistratified cells project their axons through the optic nerve and optic tract to the koniocellular layers in the lateral geniculate nucleus (LGN), synapsing with koniocellular cells. Koniocellular means \"\"cells as small as dust\"\"; their small size"} +{"qid": "test409", "pid": "14447384", "query": "ganglion axons forming the optic nerve run to the", "answer": "lateral geniculate nucleus", "passage": "\"Midget cell\"\nMidget cell A midget cell is one type of retinal ganglion cell (RGC). Midget cells originate in the ganglion cell layer of the retina, and project to the parvocellular layers of the lateral geniculate nucleus (LGN). The axons of midget cells travel through the optic nerve and optic tract, ultimately synapsing with parvocellular cells in the LGN. These cells are known as midget retinal ganglion cells due to the small sizes of their dendritic trees and cell bodies. About 80% of RGCs are midget cells. They receive inputs from relatively few rods and cones. In many cases, they are connected"} +{"qid": "test409", "pid": "586630", "query": "ganglion axons forming the optic nerve run to the", "answer": "lateral geniculate nucleus", "passage": "Retina\ndifferences are: Here is an example of an input image and how edge detection would modify it. Once the image is spatially encoded by the centre–surround structures, the signal is sent out along the optic nerve (via the axons of the ganglion cells) through the optic chiasm to the LGN (lateral geniculate nucleus). The exact function of the LGN is unknown at this time. The output of the LGN is then sent to the back of the brain. Specifically, the output of the LGN \"\"radiates\"\" out to the V1 primary visual cortex. Simplified signal flow: Photoreceptors → Bipolar → Ganglion"} +{"qid": "test41", "pid": "9022569", "query": "who may be affected by monetary penalties imposed by the irs", "answer": "Taxpayers in the United States", "passage": "\"IRS penalties\"\nIRS penalties Taxpayers in the United States may face various penalties for failures related to Federal, state, and local tax matters. The Internal Revenue Service (IRS) is primarily responsible for charging these penalties at the Federal level. The IRS can assert only those penalties specified imposed under Federal tax law. State and local rules vary widely, are administered by state and local authorities, and are not discussed herein. Penalties may be monetary or may involve forfeiture of property. Criminal penalties may include jail time, but are imposed only by a federal judge after a defendant is convicted. Most monetary penalties"} +{"qid": "test41", "pid": "9022584", "query": "who may be affected by monetary penalties imposed by the irs", "answer": "Taxpayers in the United States", "passage": "\"IRS penalties\"\nassessed against tax protesters who raise arguments that income tax laws are not valid, or who otherwise file frivolous returns or court petitions. Penalties also apply to people who promote tax shelters or who fail to maintain and disclose lists of reportable transactions their customers or clients for those transactions. These monetary penalties can be severe. Most penalties are subject to judicial review. However, the courts rarely modify assessment of the penalties and interest for underestimate or late payment. IRS penalties Taxpayers in the United States may face various penalties for failures related to Federal, state, and local tax matters."} +{"qid": "test412", "pid": "19937218", "query": "where do peaches come from in the us", "answer": "California", "passage": "\"Where Do You Come From\"\nWhere Do You Come From \"\"Where Do You Come From\"\" is a song first recorded by Elvis Presley as part of the soundtrack for his 1962 motion picture \"\"Girls! Girls! Girls!\"\". Later it was rejected from the motion picture and wasn't used in it, but appeared on its soundtrack album \"\"Girls! Girls! Girls!\"\". The song was written by Ruth Bachelor and Bob Roberts. Elvis Presley recorded \"\"Where Do You Come From\"\" on March 27, 1962 — during his March 26-28 soundtrack recordings for the Paramount motion picture \"\"Girls! Girls! Girls!\"\" at the Radio Recorders studio in Hollywood, California. The song"} +{"qid": "test413", "pid": "3368446", "query": "when did they stop putting lead in paint", "answer": "1992", "passage": "\"CDS – People's Party\"\ndo Amaral from the government and from the presidency of the party, putting an end to the Democratic Alliance. After the collapse of the AD, the party looked for a new leader and new direction. Freitas do Amaral's successor was Adriano Moreira, who, when having been unable to stop the party's negative performance, did not stand for re-election. Freitas do Amaral returned as party president, during a period characterised by the electoral success of the PSD, Aníbal Cavaco Silva, to lead a rump of 4 deputies (later 5) in parliament. Freitas do Amaral left the party in 1992. In 1992"} +{"qid": "test414", "pid": "18587634", "query": "what breed of dog is the teddy bear dog", "answer": "Zuchon", "passage": "Zuchon\nfully grown. 'Dog Breed Info' says the Zuchon is a dog \"\"known for his endearing face, large expressive eyes, and his soft teddy-bear coat.\"\" The Zuchon usually has a longer coat that does not shed. This longer coat may lead to more time for maintenance and grooming. As hypoallergenic dogs, Zuchons are generally more suitable for homes with allergy problems amongst the inhabitants, although allergic reactions may still occur. This toy dog is said to have a \"\"great\"\" personality, and it is playful, lively and well-mannered. They can be a bit stubborn, but when they are trained well, they are"} +{"qid": "test415", "pid": "9085307", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Lexington Battle Green\"\nLexington Battle Green The Lexington Battle Green, properly known as Lexington Common, is the historic town common of Lexington, Massachusetts. It was at this site that the opening shots of the Battles of Lexington and Concord were fired on April 19, 1775, starting the American Revolutionary War. Now a public park, the common is a National Historic Landmark. Unlike many other towns, Lexington did not set aside a separate common area when the town was laid out. In 1711, the townspeople raised funds by subscription, and purchased of land as a militia training ground. This was enlarged by one more"} +{"qid": "test415", "pid": "5507644", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Buckman Tavern\"\nthe Lexington Training Band. In those years the tavern was a favorite gathering place for militiamen on days when they trained on the Lexington Green. (Lexington, unlike other local communities, did not establish a minuteman company, instead maintaining a \"\"training band\"\" [an old English phrase for a militia company] for local defense). The Battle of Lexington and Concord took form before dawn on April 19, 1775. Having received word that the regular army had left Boston in force to seize and destroy military supplies in Concord, several dozen militiamen gathered on the town common, and then eventually went to the"} +{"qid": "test415", "pid": "18588482", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Historical reenactment in Concord and Lexington, Massachusetts\"\nHistorical reenactment in Concord and Lexington, Massachusetts The towns of Concord and Lexington, Massachusetts are the site of Minute Man National Historical Park, a park governed by the National Park Service. The most highly-attended event in the park is the annual reenactment of the first shots of the Battles of Lexington and Concord, performed by the Lexington Minute Men Company and His Majesty's Tenth Regiment of Foot. On April 19, 1775, the Revolutionary War's first battle was fought on the Lexington Battle Green. Later, as public interest grew due to the bicentennial celebration of the American Revolutionary War, volunteers began"} +{"qid": "test415", "pid": "7320507", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Battles of Lexington and Concord\"\nwreath at the base of \"\"The Minute Man\"\" statue and then respectfully observed as Sir Peter Ramsbotham, the British Ambassador to the United States, laid a wreath at the grave of British soldiers killed in the battle. Battles of Lexington and Concord The Battles of Lexington and Concord were the first military engagements of the American Revolutionary War. The battles were fought on April 19, 1775 in Middlesex County, Province of Massachusetts Bay, within the towns of Lexington, Concord, Lincoln, Menotomy (present-day Arlington), and Cambridge. They marked the outbreak of armed conflict between the Kingdom of Great Britain and its"} +{"qid": "test415", "pid": "20887302", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Luke Brooks (American soldier)\"\nLuke Brooks (American soldier) Luke Brooks (1731-1817) was an American soldier who served at the Battles of Lexington and Concord, the first battles of the American Revolutionary War. Luke Brooks was born in Concord, Massachusetts in August 10, 1731 to Thomas Brooks and Hannah Brooks. Luke Brooks married Lucy Wheeler in Concord in 1755. On April 19, 1775, Brooks served at the Lexington alarm when the militia was called to Concord, and he served as a participant in the first battles of the American Revolutionary War in the Stow militia as a private in the Assabet Company of minutemen, who"} +{"qid": "test415", "pid": "7320404", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Battles of Lexington and Concord\"\nBattles of Lexington and Concord The Battles of Lexington and Concord were the first military engagements of the American Revolutionary War. The battles were fought on April 19, 1775 in Middlesex County, Province of Massachusetts Bay, within the towns of Lexington, Concord, Lincoln, Menotomy (present-day Arlington), and Cambridge. They marked the outbreak of armed conflict between the Kingdom of Great Britain and its thirteen colonies in America. In late 1774, Colonial leaders adopted the Suffolk Resolves in resistance to the alterations made to the Massachusetts colonial government by the British parliament following the Boston Tea Party. The colonial assembly responded"} +{"qid": "test415", "pid": "12047286", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Concord Monument Square–Lexington Road Historic District\"\nConcord Monument Square–Lexington Road Historic District The Concord Monument Square–Lexington Road Historic District is an historic district in Concord, Massachusetts. Monument Square, at the center of the district, was laid out in 1635. The district includes a collection of well-preserved residential houses stretching along Lexington Street southeast from the square, and along Lowell northwest of the square. The square is prominently known as the site of British activities on April 19, 1775, the day of the Battles of Lexington and Concord which began the American Revolutionary War, and of earlier meetings by Massachusetts Patriots which were held in the First"} +{"qid": "test415", "pid": "2189080", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Capture of Fort Ticonderoga\"\nforces in Boston to attack from the rear. After the war began with the Battles of Lexington and Concord on April 19, 1775, the British General Thomas Gage realized the fort would require fortification, and several colonists had the idea of capturing the fort. Gage, writing from the besieged city of Boston following Lexington and Concord, instructed Quebec's governor, General Guy Carleton, to rehabilitate and refortify the forts at Ticonderoga and Crown Point. Carleton did not receive this letter until May 19, well after the fort had been captured. Benedict Arnold had frequently traveled through the area around the fort,"} +{"qid": "test415", "pid": "7373924", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Massachusetts National Guard\"\nto an emergency - theoretically on a minute's notice. In the early morning hours of April 19, 1775, the militia company of Lexington, commanded by Captain John Parker, confronted British forces heading to Concord to search for stores of munitions. This led to the \"\"shot heard round the world\"\" and the beginning of the American Revolution. While the Lexington militia retreated in the face of superior British forces, militiamen continuously engaged the British as they retreated from Concord back to Boston later the same day. After the battles of Lexington and Concord in April 1775, Massachusetts militia units were called"} +{"qid": "test415", "pid": "5466391", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"The Wayside\"\nretained most of its original appearance, on April 19, 1775, when British troops passed by on their way to the Battles of Lexington and Concord at Concord's Old North Bridge. During the years 1775 and 1776 the house was occupied by scientist John Winthrop during the nine months when Harvard College was moved to Concord. Shortly after the failure of the Fruitlands experiment, educator and philosopher Amos Bronson Alcott and his family moved to Concord. Beginning in October 1844, the family first lived in the home of a friend named Edmund Hosmer. Alcott's wife Abby May had recently inherited about"} +{"qid": "test415", "pid": "19003495", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Lexington-Concord Sesquicentennial half dollar\"\nCommission of Fine Arts passed the design only reluctantly, feeling Beach had been given poor materials to work with. The coins were sold for $1, and were vended at the anniversary celebrations in Lexington and in Concord; they were sold at banks across New England. Although just over half of the authorized mintage of 300,000 was struck, almost all of the coins that were minted were sold. Depending on condition, they are catalogued in the hundreds of dollars. The Battles of Lexington and Concord took place in those neighboring Massachusetts towns on April 19, 1775. The enmity between the British"} +{"qid": "test415", "pid": "1800663", "query": "when did the battles of lexington and concord happen", "answer": "April 19, 1775", "passage": "\"Siege of Boston\"\nthe accumulation of weapons and other military supplies. Under the terms of the Boston Port Act, Gage closed the Boston port, which caused much unemployment and discontent. When British forces were sent to seize military supplies from the town of Concord on April 19, 1775, militia companies from surrounding towns opposed them in the Battles of Lexington and Concord. At Concord, some of the British forces were routed in a confrontation at the North Bridge. The British troops, on their march back to Boston, were then engaged in a running battle, suffering heavy casualties. All of the New England colonies"} +{"qid": "test416", "pid": "655112", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\ncrossing in Bull Run Creek that would enable them to get in the rear of the Union army. However, Robertson and Rosser found the crossing blocked by John Buford's cavalry and after a short, but fierce engagement, Buford's superior numbers won out and the Confederate horsemen pulled back. The cavalry clash lasted only about ten minutes, but resulted in Col. Thomas Munford of the 2nd Virginia Cavalry being wounded. Col. Thornton Brodhead of the 1st Michigan Cavalry was shot dead, and John Buford was also wounded. The Union army's retreat however had been safeguarded. The Second Battle of Bull Run,"} +{"qid": "test416", "pid": "1755321", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"First Battle of Bull Run\"\nto the adoption of the Confederate Battle Flag, which eventually became the most popular symbol of the Confederacy and the South in general. First Bull Run demonstrated that the war would not be won by one grand battle, and both sides began preparing for a long and bloody conflict. The battle also showed the need for adequately trained and experienced officers and men. One year later many of the same soldiers who had fought at First Bull Run, now combat veterans, would have an opportunity to test their skills on the same battlefield at the Second Battle of Bull Run/Manassas."} +{"qid": "test416", "pid": "19795557", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"Detroit Light Guard\"\nin the Peninsular Campaign, the Second Battle of Bull Run, the Battle of Antietam, the Battle of Fredericksburg, the Battle of Chancellorsville, and the Battle of Gettysburg. After all this fighting, the men of the 1st Michigan were battle-hardened, and the regiment was officially reorganized on 1 March 1864 as the 1st Michigan Veteran Volunteer Infantry. These veterans would go on to engage the Confederates in the Battle of the Wilderness, the Battle of Cold Harbor, the Siege of Petersburg, and the Battle of Five Forks. The regiment suffered 15 officers and 172 enlisted men who were killed in action"} +{"qid": "test416", "pid": "8025456", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"Bull Run (novel)\"\nBull Run (novel) Bull Run is a historical novel for children by Paul Fleischman, published in 1993. It consists of sixteen monologues by participants in the First Battle of Bull Run in 1861. The novel has won several awards. This historical fiction novel, written by Paul Fleischman, highlights the events surrounding the first major battle of the American Civil War, the Battle of Bull Run. It is told through the first-person perspectives of 16 different characters, both Union and Confederate. . Northerners: Vincent martinez, Lily Malloy, Gideon Adams, Dietrich Herz, James Dacy, Nathaniel Epp, General Irvin McDowell, A.B. Tilbury, Edmund"} +{"qid": "test416", "pid": "4375367", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"Battle of Blackburn's Ford\"\nfailed reconnaissance-in-force at Blackburn's Ford led McDowell to decide against a frontal assault along Bull Run. He decided to attempt to cross the stream beyond the Confederate left flank, the maneuver he employed at the First Battle of Bull Run on July 21. Both Longstreet and Early claimed later that the battle \"\"went a long way towards winning the victory of the 21st, for it gave our troops confidence in themselves\"\". In June 1994, bodies from the 1st Massachusetts Infantry were found and later re-interred. Battle of Blackburn's Ford The Battle of Blackburn's Ford took place on July 18, 1861,"} +{"qid": "test416", "pid": "11981799", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"William McCandless\"\nBull Run and the Battle of Antietam. McCandless was wounded at Second Bull Run and missed Antietam. (Captain James N. Byrnes commanded in his absence.) When William Sinclair was wounded in the Battle of Fredericksburg, McCandless succeeded him in command of the 1st Brigade of the Reserves under George Gordon Meade. The division was, at that time, 3rd Division, I Corps. It had penetrated the Confederate right flank along the line of A. P. Hill’s Light Division. After Fredericksburg, the division was transferred to the defenses of Washington, D. C. to recuperate from its losses on active duty. In May"} +{"qid": "test416", "pid": "11724982", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"Iron Brigade\"\nKellogg (6th Wisconsin): February 28, 1865 – April 27, 1865 Col. Henry A. Morrow (24th Michigan): April 27, 1863 – June 5, 1865 In June 1865, the units of the surviving brigade were separated and reassigned to the Army of the Tennessee. The brigade fought in the battles of Second Bull Run, Antietam, Fredericksburg, Chancellorsville, Gettysburg, Mine Run, Overland, Richmond-Petersburg, and Appomattox. The brigade took pride in its designation, \"\"1st Brigade, 1st Division, I Corps\"\", under which it played a prominent role in the first day of the Battle of Gettysburg, July 1, 1863. It repulsed the first Confederate offensive"} +{"qid": "test416", "pid": "655118", "query": "who won the 1st battle of bull run", "answer": "Confederate", "passage": "\"Second Battle of Bull Run\"\npartners have acquired and preserved of the Second Battle of Bull Run battlefield in more than 10 transactions since 2000. Second Battle of Bull Run The Second Battle of Bull Run or Battle of Second Manassas was fought August 28–30, 1862 in Prince William County, Virginia, as part of the American Civil War. It was the culmination of the Northern Virginia Campaign waged by Confederate Gen. Robert E. Lee's Army of Northern Virginia against Union Maj. Gen. John Pope's Army of Virginia, and a battle of much larger scale and numbers than the First Battle of Bull Run (or \"\"First"} +{"qid": "test417", "pid": "14929300", "query": "what is the name of the under butler in downton abbey", "answer": "Mr Carson", "passage": "\"Downton Abbey\"\nMatthew Goode as Henry Talbot. Downton Abbey's senior staff are portrayed by Jim Carter as Mr Carson, the butler, and Phyllis Logan as Mrs Hughes, the housekeeper. Tensions rise when Rob James-Collier, portraying Mr Barrow, a valet and footman, along with Siobhan Finneran as Miss O'Brien, the personal maid to the Countess of Grantham (up to series three), plot against Brendan Coyle as Mr Bates, the valet to the Earl of Grantham, and his love interest and eventual wife, Anna (Joanne Froggatt), the personal maid to Lady Mary. Kevin Doyle plays the unlucky Mr Molesley, valet to Matthew Crawley; he"} +{"qid": "test417", "pid": "3501558", "query": "what is the name of the under butler in downton abbey", "answer": "Mr Carson", "passage": "Butler\nis \"\"The butler did it!\"\" The best-known fictional manservant, and the archetype of the quintessential British butler, is himself not a butler at all. Reginald Jeeves, the iconic creation of author P. G. Wodehouse is a \"\"gentleman's gentleman\"\" and general factotum. Probably the best-known fictional butlers are Alfred from the \"\"Batman\"\" comic and films; Hudson of Upstairs, Downstairs television fame; Mr Carson from the Downton Abbey television series; and Crichton from J. M. Barrie's \"\"The Admirable Crichton\"\". Lesser-knowns include Mr. Belvedere from the novel \"\"Belvedere\"\", which was adapted into a feature film with sequels and later a television series; Lurch,"} +{"qid": "test417", "pid": "18765947", "query": "what is the name of the under butler in downton abbey", "answer": "Charles Carson", "passage": "\"Marie Curie's Blooming Great Tea Party\"\nMatt Milne held a party on the set. Jim Carter, played by Butler Charles Carson said ‘What could be more Downton Abbey than a good British tea party? We rather enjoyed having a break from serving the Earl and Countess of Grantham!’ Marie Curie's Blooming Great Tea Party The Blooming Great Tea Party was started in 2008 by the Marie Curie charity. It's the charity’s second biggest annual fundraising campaign, only beaten by its Great Daffodil Appeal. The Blooming Great Tea Party takes place every year in the spring or summer. Members of the public host a tea party in"} +{"qid": "test417", "pid": "14929287", "query": "what is the name of the under butler in downton abbey", "answer": "Mr Carson", "passage": "\"Downton Abbey\"\nbetween them. Mrs Patmore's decision to invest her inheritance in real estate inspires Mr Carson, Downton's butler, to do likewise. He suggests that head housekeeper Mrs Hughes invest with him; she confesses she has no money due to supporting a mentally incapacitated sister. The Crawleys' cousin, Lady Rose, daughter of Lord and Lady Flintshire, becomes engaged to Atticus Aldridge, son of Lord and Lady Sinderby. Lord Sinderby strongly objects to Atticus's marrying outside the Jewish faith. Lord Merton proposes to Isobel Crawley (Matthew's mother). She accepts, but later ends the engagement due to Lord Merton's sons' disparaging comments over her"} +{"qid": "test417", "pid": "14929290", "query": "what is the name of the under butler in downton abbey", "answer": "Mr Carson", "passage": "\"Downton Abbey\"\nis hired on Barrow's recommendation. During the annual Downton Abbey Christmas celebration, Tom Branson announces he is moving to America to work for his cousin, taking daughter Sybil with him. Mr Carson proposes marriage to Mrs Hughes and she accepts. In series six, covering the year 1925, changes are once again afoot at Downton Abbey as the middle class rises and more bankrupted aristocrats are forced to sell off their large estates. Downton must do more to ensure its future survival; reductions in staff are considered, forcing Barrow to look for a job elsewhere. Lady Mary defies a blackmailer, who"} +{"qid": "test418", "pid": "6821014", "query": "in the early 1800s california society was dominated by which group", "answer": "Spanish", "passage": "\"History of California wine\"\nthe first variety named \"\"Misionéro\"\". In 1779, Franciscan missionaries under the direction of the Spanish Father Junípero Serra planted California's first sustained vineyard at Mission San Diego de Alcalá. Father Serra founded eight other California missions. Hence, he has been called the \"\"Father of California Wine\"\". The variety he planted, presumably descended from Spain, became known as the Mission grape and dominated California wine production until about 1880. Starting in the early 1800s, commercial viticulture in California was mostly based in Southern California. California's first documented imported European wine vines were planted in Los Angeles in 1833 by Jean-Louis Vignes,"} +{"qid": "test418", "pid": "4286766", "query": "in the early 1800s california society was dominated by which group", "answer": "Spanish", "passage": "\"Avila Adobe\"\nin Alta California. Throughout the years, the Avila home today has kept the styles similarly as to when it was originally built, even after undergoing wars and restoration. The town in which the home was built in was called El Pueblo de la Reina de Los Angeles, which is now greatly known as the city of Los Angeles. Before the construction of the Avila home, the land was colonized by Spanish people from Sinaloa, Mexico. In the early 1800s, the town was home to ranchero families who dominated the town. Francisco Avila was a wealthy cattle rancher who was a"} +{"qid": "test418", "pid": "13647123", "query": "in the early 1800s california society was dominated by which group", "answer": "Spanish", "passage": "\"Pinoleville Pomo Nation\"\ncamps. These villages remained connected and cooperative with each other through marriage, and ceremonies. They were governed by councilmen called tca ka-li in Northern Pomo, also sometimes known as captains. The arrival of the Spanish, Russians, and fur traders in the early 1800’s was devastating for Native Californians and their way of life. In the first half of the century, the Pomos suffered from forced removal, disease and servitude from the settlers. This domination continued into the second half of the 17th century with the discovery of gold in California. By 1850 thousands of Europeans had arrived in northern California"} +{"qid": "test418", "pid": "5929879", "query": "in the early 1800s california society was dominated by which group", "answer": "Spanish", "passage": "\"Stanislaus River\"\nby the Miwok group of Native Americans, the Stanislaus River was explored in the early 1800s by the Spanish, who conscripted indigenous people to work in the colonial mission and presidio systems. The river is named for Estanislao, who led a native uprising in Mexican-controlled California in 1828, but was ultimately defeated on the Stanislaus River (then known as the \"\"Río de los Laquisimes\"\"). During the California Gold Rush, the Stanislaus River was the destination of tens of thousands of gold seekers; many of them reached California via Sonora Pass, at the headwaters of the Middle Fork. Many miners and"} +{"qid": "test418", "pid": "19208778", "query": "in the early 1800s california society was dominated by which group", "answer": "Spanish", "passage": "\"Joan Llimona\"\npost his time in Rome. When the two brothers returned to Barcelona, Llimona was 24 years old. Upon their return, there were two dominant groups of artists in Barcelona: the more aristocratic group, which met at the Barcelona Athenaeum, and the more creaftsmen-focused group, which formed the Center Watercolour ists in the Cathedral Square. A member of the latter group, Llimona spent his time painting with a broad array of Spanish society. In the Cathedral Square, artists, such as Llimona, came to paint models and play dominoes. During this early stage in his career, many of Llimona’s paintings are described"} +{"qid": "test419", "pid": "13291513", "query": "who was appointed to manage the national recovery administration", "answer": "Hugh S. Johnson", "passage": "\"Leo Wolman\"\nbecame a strong advocate for federal unemployment insurance, and co-authored a major study of European economies in 1932 which linked dropping standards of living to lack of unemployment benefits. In June 1933, Wolman was appointed to the staff of the National Recovery Administration (NRA), which led to a critical role in the regulation of labor relations. His initial appointment was as an expert on labor to NRA Administrator Hugh S. Johnson in the industrial section. Four days later, Labor Secretary Francis Perkins appointed him chair of the NRA Labor Advisory Board, with authority to meet with the NRA Industry Advisory"} +{"qid": "test42", "pid": "17495578", "query": "who turned out to be the mother on how i met your mother", "answer": "Tracy McConnell", "passage": "\"The Mother (How I Met Your Mother)\"\nThe Mother (How I Met Your Mother) Tracy McConnell (colloquial: \"\"The Mother\"\") is the title character from the CBS television sitcom \"\"How I Met Your Mother\"\". The show, narrated by Future Ted (Bob Saget), tells the story of how Ted Mosby (Josh Radnor) met The Mother. Tracy McConnell appears in eight episodes, from \"\"Lucky Penny\"\" to \"\"The Time Travelers\"\", as an unseen character; she was first seen fully in \"\"Something New\"\" and was promoted to a main character in season 9. The Mother is played by Cristin Milioti. The story of how Ted met The Mother is the framing device"} +{"qid": "test42", "pid": "17495599", "query": "who turned out to be the mother on how i met your mother", "answer": "Tracy McConnell", "passage": "\"The Mother (How I Met Your Mother)\"\n9 DVD. No new material was shot for this scene. In the alternate ending, The Mother is still living when Ted is telling the story in 2030. The Mother (How I Met Your Mother) Tracy McConnell (colloquial: \"\"The Mother\"\") is the title character from the CBS television sitcom \"\"How I Met Your Mother\"\". The show, narrated by Future Ted (Bob Saget), tells the story of how Ted Mosby (Josh Radnor) met The Mother. Tracy McConnell appears in eight episodes, from \"\"Lucky Penny\"\" to \"\"The Time Travelers\"\", as an unseen character; she was first seen fully in \"\"Something New\"\" and was"} +{"qid": "test420", "pid": "639669", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "Vein\npressure. The arteries are perceived as carrying oxygenated blood to the tissues, while veins carry deoxygenated blood back to the heart. This is true of the systemic circulation, by far the larger of the two circuits of blood in the body, which transports oxygen from the heart to the tissues of the body. However, in pulmonary circulation, the arteries carry deoxygenated blood from the heart to the lungs, and veins return blood from the lungs to the heart. The difference between veins and arteries is their direction of flow (out of the heart by arteries, returning to the heart for"} +{"qid": "test420", "pid": "473072", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "Heart\nto and from the body and the pulmonary circulation to and from the lungs. Blood in the pulmonary circulation exchanges carbon dioxide for oxygen in the lungs through the process of respiration. The systemic circulation then transports oxygen to the body and returns carbon dioxide and relatively deoxygenated blood to the heart for transfer to the lungs. The right heart collects deoxygenated blood from two large veins, the superior and inferior venae cavae. Blood collects in the right and left atrium continuously. The superior vena cava drains blood from above the diaphragm and empties into the upper back part of"} +{"qid": "test420", "pid": "639667", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "Vein\nvenules, which continue to converge and form the larger veins. The de-oxygenated blood is taken by veins to the right atrium of the heart, which transfers the blood to the right ventricle, where it is then pumped through the pulmonary arteries to the lungs. In pulmonary circulation the pulmonary veins return oxygenated blood from the lungs to the left atrium, which empties into the left ventricle, completing the cycle of blood circulation. The return of blood to the heart is assisted by the action of the muscle pump, and by the thoracic pump action of breathing during respiration. Standing or"} +{"qid": "test420", "pid": "473651", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "Lung\nreceptors in the smooth muscle of the airways initiate a reflex known as the Hering–Breuer reflex that prevents the lungs from over-inflation, during forceful inspiration. The lungs have a dual blood supply provided by a bronchial and a pulmonary circulation. The bronchial circulation supplies oxygenated blood to the airways of the lungs, through the bronchial arteries that leave the aorta. There are usually three arteries, two to the left lung and one to the right, and they branch alongside the bronchi and bronchioles. The pulmonary circulation carries deoxygenated blood from the heart to the lungs and returns the oxygenated blood"} +{"qid": "test420", "pid": "14451052", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "\"Cardiac physiology\"\ncollects oxygen from the lungs and delivers carbon dioxide for exhalation. The systemic circuit transports oxygen to the body and returns relatively de-oxygenated blood and carbon dioxide to the pulmonary circuit. Blood flows through the heart in one direction, from the atria to the ventricles, and out through the pulmonary artery into the pulmonary circulation, and the aorta into the systemic circulation. The pulmonary artery (also trunk) branches into the left and right pulmonary arteries to supply each lung. Blood is prevented from flowing backwards (regurgitation) by the tricuspid, bicuspid, aortic, and pulmonary valves. The function of the \"\"right heart\"\","} +{"qid": "test420", "pid": "2981475", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "\"Pulmonary circulation\"\nPulmonary circulation The pulmonary circulation is the portion of the circulatory system which carries deoxygenated blood away from the right ventricle of the heart, to the lungs, and returns oxygenated blood to the left atrium and ventricle of the heart. The term pulmonary circulation is readily paired and contrasted with the systemic circulation. The vessels of the pulmonary circulation are the pulmonary arteries and the pulmonary veins. A separate system known as the bronchial circulation supplies oxygenated blood to the tissue of the larger airways of the lung. The earliest human discussions of pulmonary circulation date back to Egyptian times."} +{"qid": "test420", "pid": "473041", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "Heart\nand along the conduction system of the heart. The heart receives blood low in oxygen from the systemic circulation, which enters the right atrium from the superior and inferior venae cavae and passes to the right ventricle. From here it is pumped into the pulmonary circulation, through the lungs where it receives oxygen and gives off carbon dioxide. Oxygenated blood then returns to the left atrium, passes through the left ventricle and is pumped out through the aorta to the systemic circulation−where the oxygen is used and metabolized to carbon dioxide. The heart beats at a resting rate close to"} +{"qid": "test420", "pid": "11173362", "query": "how oxygenated blood returns to the heart from the lungs", "answer": "pulmonary circulation", "passage": "\"Atrial septostomy\"\nseptectomy was developed by Vivien Thomas in a canine model and performed in humans by Alfred Blalock. There are two types of this procedure: balloon atrial septostomy (also called endovascular atrial septostomy, Rashkind atrial balloon septostomy, or simply Rashkind's procedure) and blade atrial septostomy (also called static balloon atrial septostomy). In a normal heart, oxygen-depleted blood (\"\"blue\"\") is pumped from the right side of the heart, through the pulmonary artery, to the lungs where it is oxygenated. This is the pulmonary circulation part of blood flow. The oxygen-rich (\"\"red\"\") blood then returns to the left heart, via the pulmonary veins,"} +{"qid": "test422", "pid": "1953165", "query": "when did the government change the retirement age", "answer": "2015", "passage": "\"Marshall Taylor\"\nto \"\"creep up on him.\"\" He retired from racing in 1910 at the age of 32. When Taylor returned to his home in Worcester at the end of his racing career, his estimated net worth was $75,000 ($ in 2015 chained dollars) to $100,000 ($ in 2015 chained dollars). Taylor won his final competition, an \"\"old-timers race\"\" among former professional racers, in New Jersey in September 1917. As Taylor gained notoriety as an amateur and a professional, he did not escape racial segregation. In 1894, the LAW changed its bylaws to exclude blacks from membership; however, it did permit them"} +{"qid": "test422", "pid": "3839231", "query": "when did the government change the retirement age", "answer": "2015", "passage": "\"Perth Observatory\"\ndied on 8 April 2015. Upon the retirement of Dr I Nikoloff, the governing body of the Perth Observatory at that time, the Department of Science and Technology (Australia), replaced the primary title of what was previously called the Government Astronomer, with the title of Director Perth Observatory. The reason given was that the title of Government Astronomer \"\"...\"\"seemed antiquated to them\"\"\"\", it also reflected similar changes throughout the world with astronomical institutions merging with Universities. With the compulsory retirement age still in place, after Dr I Nikoloff retired, Mr Michael Philip Candy became the first Director of the Perth"} +{"qid": "test424", "pid": "12140552", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Rivers of Paraguay\"\nof 170 km. This river rises in the mountains of Caaguazú and poured water on the right bank of Paraná River, a short distance from the mouth of the River Iguazu. There are recent references that flatboats and tugboats transported mate and wood in the short journey between the Caaguazú jungle factories. These were close to the famous Saltos del Monday, that ended in the Paraná River, where cargo was transferred to larger capacity ships. Rivers of Paraguay The rivers of Paraguay have served, in the absence of usable roads, as natural ways to access the more remote Paraguayan territories."} +{"qid": "test424", "pid": "3848137", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Paraguay River\"\nupper part of the Paraguay River is warmer than the lower and generally its temperature does not fall below , although some upper Paraguay tributaries may fall below this. The Paraguay River ecoregion has high species richness with about 350 fish species, including more than 80 endemics. About 80% of the fish species in the river are characiforms (tetras and allies) and siluriforms (catfish). Several of these migrate up the Paraguay River to spawn, including \"\"Prochilodus lineatus\"\" and \"\"Pseudoplatystoma corruscans\"\". Unsurprisingly many species in the river are essentially of Paraná River Basin origin, but the fauna also has a connection"} +{"qid": "test424", "pid": "586362", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Iguazu Falls\"\nlength does not have water flowing over it. The water of the lower Iguazu collects in a canyon that drains into the Paraná River, a short distance downstream from the Itaipu Dam. The junction of the water flows marks the border between Brazil, Argentina, and Paraguay. Some points in the cities of Foz do Iguaçu, Brazil, Puerto Iguazú, Argentina, and Ciudad del Este, Paraguay, have access to the Iguazu River, where the borders of all three nations may be seen, a popular tourist attraction for visitors to the three cities. The Iguazu Falls are arranged in a way that resembles"} +{"qid": "test424", "pid": "1592287", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Río de la Plata\"\nrivers of the La Plata basin are the Paraná River, the Paraguay River (the Paraná's main tributary), and the Uruguay River. The Paraná River's main tributaries include the Paranaíba River, Grande River, Tietê River, Paranapanema River, Iguazu River, Paraguay River, and the Salado River, after which it ends in the large Paraná Delta. The Paraguay River flows through the Pantanal wetland, after which its main tributaries include the Pilcomayo River and the Bermejo River, before it ends in the Paraná. The Uruguay's main tributaries include the Pelotas River, Canoas River, Ibicuí River, and the Río Negro. Another significant tributary to"} +{"qid": "test424", "pid": "3848129", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Paraguay River\"\n98% of the country's inhabitants. As such the river is considered perhaps the key geographical feature of the country with which it shares its name. Some after flowing through the middle of Paraguay, at the confluence with the Pilcomayo River and passing the Paraguayan capital city, Asunción, the river forms the border with Argentina, flowing generally south-southwesterly for another before it reaches its end, joining with the Paraná River. The Paraguay River is the second major river of the Rio de la Plata Basin, after the Paraná River. The Paraguay's drainage basin, about , covers a vast area that includes"} +{"qid": "test424", "pid": "14609374", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Route 1 (Paraguay)\"\nRoute 1 (Paraguay) National Route 1 (in Spanish, Ruta Nacional Número 1 \"\"Mcal. Francisco Solano López\"\", or simply Ruta Uno) is one of the most important and one of the first highways in Paraguay, which runs from the capital city, Asunción to Itapua Department's capital, Encarnación. Crossing the departments of Central, Paraguarí, Misiones and Itapua. It starts on Avenida Eusebio Ayala, and ends at the San Roque González de Santa Cruz Bridge, on the Paraná River, traversing . The following table shows the distances traversed by Ruta 1 in each different department, and important cities that it passes by (or"} +{"qid": "test424", "pid": "14609375", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Route 1 (Paraguay)\"\nnear). Route 1 (Paraguay) National Route 1 (in Spanish, Ruta Nacional Número 1 \"\"Mcal. Francisco Solano López\"\", or simply Ruta Uno) is one of the most important and one of the first highways in Paraguay, which runs from the capital city, Asunción to Itapua Department's capital, Encarnación. Crossing the departments of Central, Paraguarí, Misiones and Itapua. It starts on Avenida Eusebio Ayala, and ends at the San Roque González de Santa Cruz Bridge, on the Paraná River, traversing . The following table shows the distances traversed by Ruta 1 in each different department, and important cities that it passes by"} +{"qid": "test424", "pid": "13558697", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Apa River\"\nApa River The Apa River (Spanish: Río Apa, Portuguese: Rio Apa) is a river of Paraguay and Brazil. It is a tributary of the Paraguay River, which in turn is a tributary of the Paraná River. It starts in the Amambai Mountains of the Brazilian state of Mato Grosso do Sul. The Apa forms part of the border between Paraguay and Brazil beginning at the twin cities of Bella Vista Norte and Bela Vista. Its principle tributaries flow from the right, the most notable being the Arroyo Estrella, and the Pirapucu, Caracol, and Perdido rivers which flow from the Serra"} +{"qid": "test424", "pid": "13558698", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Apa River\"\nda Bodoquena. Apa River The Apa River (Spanish: Río Apa, Portuguese: Rio Apa) is a river of Paraguay and Brazil. It is a tributary of the Paraguay River, which in turn is a tributary of the Paraná River. It starts in the Amambai Mountains of the Brazilian state of Mato Grosso do Sul. The Apa forms part of the border between Paraguay and Brazil beginning at the twin cities of Bella Vista Norte and Bela Vista. Its principle tributaries flow from the right, the most notable being the Arroyo Estrella, and the Pirapucu, Caracol, and Perdido rivers which flow from"} +{"qid": "test424", "pid": "2874234", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Argentine War of Independence\"\nother militia sent by Buenos Aires was commanded by Manuel Belgrano and made its way up the Paraná River towards the Intendency of Paraguay. A first battle was fought at Campichuelo, where the Patriots claimed victory. However, they were completely overwhelmed at the subsequent battles of Paraguarí and Tacuarí. Thus, this campaign ended in failure as well from a military point of view; however, some months later, inspired on the Argentine example, Paraguay broke its links with the Spanish crown by declaring itself an independent nation. The undesired outcomes of the Paraguay and Upper Peru campaigns led the Junta to"} +{"qid": "test424", "pid": "7622570", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "\"Río de la Plata Basin\"\nroute from the Atlantic to Buenos Aires is kept open by continual dredging. The Paraná River's main tributaries include the Paranaíba River, Grande River, Tietê River, Paranapanema River, Iguazu River, Paraguay River, and the Salado River, after which it ends in the large Paraná Delta. The Paraguay River flows through the Pantanal wetland, after which its main tributaries include the Pilcomayo River and the Bermejo River, before it ends in the Paraná. The Uruguay's main tributaries include the Pelotas River, Canoas River, Ibicuí River, and the Río Negro. Another significant tributary to the Río de la Plata is the Salado"} +{"qid": "test424", "pid": "314854", "query": "where does the paraguay river start and end", "answer": "Paraná River", "passage": "Paraguay\nRío de la Plata to the Paraná River, and finally up the Paraguay River. In 1537, they established the city of Asunción, which was the first capital of the Governorate of Paraguay and Río de la Plata. Paraguay was the epicenter of the Jesuit Missions, where the Guaraní people were educated and introduced to Christianity and European culture under the direction of the Society of Jesus in Jesuit reductions, mainly during the 17th century. However, after the expulsion of the Jesuits from Spanish territories in 1767, Paraguay increasingly became a peripheral colony, with few urban centers and settlers. Following independence"} +{"qid": "test426", "pid": "388698", "query": "where was the statue of liberty originally built", "answer": "France", "passage": "\"Statue of Liberty\"\nStatue of Liberty The Statue of Liberty (Liberty Enlightening the World; ) is a colossal neoclassical sculpture on Liberty Island in New York Harbor in New York City, in the United States. The copper statue, a gift from the people of France to the people of the United States, was designed by French sculptor Frédéric Auguste Bartholdi and built by Gustave Eiffel. The statue was dedicated on October 28, 1886. The Statue of Liberty is a figure of Libertas, a robed Roman liberty goddess. She holds a torch above her head with her right hand, and in her left hand"} +{"qid": "test426", "pid": "5992414", "query": "where was the statue of liberty originally built", "answer": "France", "passage": "\"Institutions in the Southern Victory Series\"\na celebration as Remembrance Day. This statue, in New York City's harbor, occupies the place of our timeline's Statue of Liberty. The Statue of Liberty was not built in this timeline because relations between the United States and France are poor due to France's support of the Confederate States. Rather than the Statue of Liberty, Liberty Island (still under the name of Bedloe's Island) is taken up by a similar but more grim German-influenced statue known as the Statue of Remembrance holding the \"\"Sword of Vengeance\"\". Whenever either Germany gave the statue to the United States or the USA building"} +{"qid": "test426", "pid": "388729", "query": "where was the statue of liberty originally built", "answer": "Paris", "passage": "\"Statue of Liberty\"\nthe Eiffel factory in the nearby Parisian suburb of Levallois-Perret. The change in structural material from masonry to iron allowed Bartholdi to change his plans for the statue's assembly. He had originally expected to assemble the skin on-site as the masonry pier was built; instead he decided to build the statue in France and have it disassembled and transported to the United States for reassembly in place on Bedloe's Island. In a symbolic act, the first rivet placed into the skin, fixing a copper plate onto the statue's big toe, was driven by United States Ambassador to France Levi P."} +{"qid": "test426", "pid": "388778", "query": "where was the statue of liberty originally built", "answer": "Paris", "passage": "\"Statue of Liberty\"\nand opportunity.\"\" Hundreds of replicas of the Statue of Liberty are displayed worldwide. A smaller version of the statue, one-fourth the height of the original, was given by the American community in Paris to that city. It now stands on the Île aux Cygnes, facing west toward her larger sister. A replica tall stood atop the Liberty Warehouse on West 64th Street in Manhattan for many years; it now resides at the Brooklyn Museum. In a patriotic tribute, the Boy Scouts of America, as part of their Strengthen the Arm of Liberty campaign in 1949–1952, donated about two hundred replicas"} +{"qid": "test426", "pid": "2196841", "query": "where was the statue of liberty originally built", "answer": "France", "passage": "\"How Few Remain\"\nand Lorraine. In this timeline's New York City, there is no Statue of Liberty on Bedloe's Island, nor does the name get changed to Liberty Island – as relations between the United States and France are poor, due to France's support for the Confederacy, and there is no question of the French donating such a statue to the Americans. Instead, the island is taken up by a similar but more grim German-influenced statue known as the Statue of Remembrance holding the \"\"Sword of Vengeance\"\". Whenever either Germany gave the statue to the United States or the USA built it itself"} +{"qid": "test427", "pid": "12487681", "query": "what language is the olympic anthem sang in", "answer": "Greek", "passage": "\"2008 Summer Olympics opening ceremony\"\nfun\"\" and to reject doping and performance enhancement drugs. This reminder was reiterated in French. Afterward, Hu Jintao, the paramount leader of China, formally announced the opening of the 2008 Summer Olympics by speaking in Mandarin: Afterward, the Olympic flag was carried in by eight former athletes from China. They were: They then passed on the flag to the soldiers of the People's Liberation Army (the PLA) and the Olympic anthem played while the flag was being raised. A multinational chorus of 80 children sang the Olympic anthem in Greek. Chinese table tennis champion Zhang Yining and arbiter Huang Liping"} +{"qid": "test427", "pid": "3499293", "query": "what language is the olympic anthem sang in", "answer": "Greek", "passage": "\"Olympic Hymn\"\nperformed in many different languages, usually as a result of the hosting of either form of the Games in various countries. The IOC doesn’t require that the anthem be performed in either English or Greek. But in the 2008 Olympic opening and closing ceremonies in Beijing, China, Greek was sung instead of the host country's official language, Mandarin. Also in the 2016 Olympic opening ceremonies in Rio de Janeiro, Brazil, English was also sung instead of host country's official language, Portuguese. Olympic Hymn The Olympic Hymn (, \"\"Olympiakós Ýmnos\"\"), also known informally as the Olympic Anthem, is a choral cantata"} +{"qid": "test427", "pid": "16916108", "query": "what language is the olympic anthem sang in", "answer": "Greek", "passage": "\"Millennium celebrations\"\nthe Philippine presentation in the \"\"2000 Today\"\" (Global Millennium Day broadcast on GMA). Moscow's government and its national government had sponsored parties across the city. They all celebrated as the Spasskaya Tower to ring in the new millennium. South Africa's Nelson Mandela lit a candle in his former cell at Robben Island at the stroke of midnight. Athens held a fireworks display over the Acropolis and a televised choir sang the Olympic anthem, a Byzantine anthem and the Greek national anthem. In Jerusalem, and particularly at the Mount of Olives, fears that doomsday fanatics \"\"...could try to trigger an apocalypse"} +{"qid": "test427", "pid": "3499292", "query": "what language is the olympic anthem sang in", "answer": "Greek", "passage": "\"Olympic Hymn\"\nGreek, then the original version is translated to the language it is to be performed but in the 2008 Beijing games, Greek was also sung instead of Chinese and in the 2016 Rio de Janeiro games, English was also sung instead of Portuguese. The only Olympic games in which lyrics of the English version were used in translation were the 2010 Winter Olympics in Vancouver, British Columbia, Canada. Donovan Seidle, associate music director during the games, arranged the anthem, translating some of the stanzas to French in recognition of the official bilingualism in Canada. The anthem has been recorded and"} +{"qid": "test43", "pid": "19881004", "query": "what is the corporate tax rate in great britain", "answer": "20%", "passage": "\"Economic policy of Donald Trump\"\nadd significantly to the national debt over the 2018–2028 window, relative to a baseline without that legislation: During the six months following enactment of the Trump tax cut, year-on-year corporate profits increased 6.4%, while corporate income tax receipts declined 45.2%. This was the sharpest semiannual decline since records began in 1948, with the sole exception of a 57.0% decline during the Great Recession when corporate profits fell 47.3%. In late September 2017, the Trump administration proposed a tax overhaul. The proposal would reduce the corporate tax rate to 20% (from 35%) and eliminate the estate tax. On individual tax returns"} +{"qid": "test43", "pid": "12478391", "query": "what is the corporate tax rate in great britain", "answer": "20%", "passage": "\"Great Recession in Russia\"\nratings. 20 November Vladimir Putin announced government package of tax reforms. Corporate profit tax rate (24% in 2008) is to be reduced to 20%. Profit tax base will decrease for companies investing in capital assets as the immediately recoverable depreciation allowance is raised from 10% to 30% of the asset cost. There will be no change in value added tax rates (maximum 18%) in 2009, but the government considered changing VAT accrual rules in favor of the taxpayers. Minister of finance Alexey Kudrin, who resisted tax breaks until September, concurred with Putin's proposal, estimating that they will save the businesses"} +{"qid": "test430", "pid": "7322049", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Mississippi River System\"\nMissouri River is the longest river on the North American continent. The Missouri River was one of the main routes for the watershed expansion of the United States during the 19th century. The Ohio River runs 981 miles (1582 km) long, starting at the meeting of the Allegheny River and the Monongahela River in Pittsburgh, Pennsylvania; ending in Cairo, Illinois, where it then flows into the Mississippi. The Ohio River flows through six states, including, Illinois, Indiana, Ohio, Kentucky, Pennsylvania and West Virginia. The river is a location with the capacity to provide enough water for over five million people."} +{"qid": "test430", "pid": "306315", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Ohio River\"\ncourse forms the northern borders of West Virginia and Kentucky; and the southern borders of Ohio, Indiana and Illinois, until it joins the Mississippi River at the city of Cairo, Illinois. Where the Ohio joins the Mississippi is the lowest elevation in the state of Illinois, at . The Ohio River, which flows westward from Pittsburgh, Pennsylvania, to Cairo, Illinois, is the largest tributary, by volume, of the Mississippi River in the United States. At the confluence, the Ohio is considerably bigger than the Mississippi. Measured by long-term mean discharge in cubic feet per second and cubic meters per second,"} +{"qid": "test430", "pid": "262196", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Mississippi River\"\nfalls over for an average rate of . At its confluence with the Ohio River, the Middle Mississippi is above sea level. Apart from the Missouri and Meramec rivers of Missouri and the Kaskaskia River of Illinois, no major tributaries enter the Middle Mississippi River. The Mississippi River is called the Lower Mississippi River from its confluence with the Ohio River to its mouth at the Gulf of Mexico, a distance of about . At the confluence of the Ohio and the Middle Mississippi, the long-term mean discharge of the Ohio at Cairo, Illinois is , while the long-term mean"} +{"qid": "test430", "pid": "7354876", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Upper Mississippi River\"\nUpper Mississippi River The Upper Mississippi River is the portion of the Mississippi River upstream of Cairo, Illinois, United States. From the headwaters at Lake Itasca, Minnesota, the river flows approximately 2000 kilometers (1250 mi) to Cairo, where it is joined by the Ohio River to form the Lower Mississippi River. In terms of geologic and hydrographic history, the Upper Mississippi east and south of Fort Snelling is a portion of the now-extinct Glacial River Warren which carved the valley of the Minnesota River, permitting the immense Glacial Lake Agassiz to join the world's oceans at the Gulf of Mexico."} +{"qid": "test430", "pid": "7354885", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Upper Mississippi River\"\nprovide a collective 123 meters (404 ft) of lift. The Army Corps of Engineers has studied expanding locks 20, 21, 22, 24, and 25 on the Upper Mississippi. Upper Mississippi River The Upper Mississippi River is the portion of the Mississippi River upstream of Cairo, Illinois, United States. From the headwaters at Lake Itasca, Minnesota, the river flows approximately 2000 kilometers (1250 mi) to Cairo, where it is joined by the Ohio River to form the Lower Mississippi River. In terms of geologic and hydrographic history, the Upper Mississippi east and south of Fort Snelling is a portion of the"} +{"qid": "test430", "pid": "306323", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Ohio River\"\nMississippi River Forecast Center. Ohio River The Ohio River, which flows westward from Pittsburgh, Pennsylvania, to Cairo, Illinois, is the largest tributary, by volume, of the Mississippi River in the United States. At the confluence, the Ohio is considerably bigger than the Mississippi (by (long-term mean discharge, Ohio at Cairo: 281,500 cu ft/s (7,960 m/s); Mississippi at Thebes: 208,200 cu ft/s (5,897 m/s)) and, thus from a hydrological perspective, is the main stream of the whole river system. The river flows through or along the border of six states, and its drainage basin includes parts of 15 states. Through its"} +{"qid": "test430", "pid": "262195", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Mississippi River\"\neither side. The height of these bluffs decreases to the south of Dubuque, though they are still significant through Savanna, Illinois. This topography contrasts strongly with the Lower Mississippi, which is a meandering river in a broad, flat area, only rarely flowing alongside a bluff (as at Vicksburg, Mississippi). The Mississippi River is known as the Middle Mississippi from the Upper Mississippi River's confluence with the Missouri River at St. Louis, Missouri, for to its confluence with the Ohio River at Cairo, Illinois. The Middle Mississippi is relatively free-flowing. From St. Louis to the Ohio River confluence, the Middle Mississippi"} +{"qid": "test430", "pid": "306290", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Ohio River\"\nOhio River The Ohio River, which flows westward from Pittsburgh, Pennsylvania, to Cairo, Illinois, is the largest tributary, by volume, of the Mississippi River in the United States. At the confluence, the Ohio is considerably bigger than the Mississippi (by (long-term mean discharge, Ohio at Cairo: 281,500 cu ft/s (7,960 m/s); Mississippi at Thebes: 208,200 cu ft/s (5,897 m/s)) and, thus from a hydrological perspective, is the main stream of the whole river system. The river flows through or along the border of six states, and its drainage basin includes parts of 15 states. Through its largest tributary, the Tennessee"} +{"qid": "test430", "pid": "306322", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Ohio River\"\nriver loses depth very gradually until its confluence with the Mississippi at Cairo, Illinois, where it has an approximate depth of . Water levels for the Ohio River from Smithland Lock and Dam upstream to Pittsburgh are predicted daily by the National Oceanic and Atmospheric Administration's Ohio River Forecast Center. The water depth predictions are relative to each local flood plain based upon predicted rainfall in the Ohio River basin in five reports as follows: The water levels for the Ohio River from Smithland Lock and Dam to Cairo, Illinois, are predicted by the National Oceanic and Atmospheric Administration's Lower"} +{"qid": "test430", "pid": "12581877", "query": "where does the ohio river and the mississippi river meet", "answer": "Cairo, Illinois", "passage": "\"Peninsula Extension\"\nwith the Ohio River, which in turn, flowed west to the Mississippi River. In the earlier periods during which a transportation link was contemplated, the Colony of Virginia (according to the British and its own calculations) extended all the way to west to what is now Cairo, Illinois, where the Ohio and Mississippi Rivers join. Of course, transportation was the only obstacle to developing these western regions, as both the French and the Indians did not see it the same way. In any event, that gap in the navigable waters became a major focus for Virginians. By the end of"} +{"qid": "test431", "pid": "5053550", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Benjamin Stone (Law & Order character)\"\nBenjamin Stone (Law & Order character) Benjamin \"\"Ben\"\" Stone is a fictional character portrayed by Michael Moriarty in the TV drama \"\"Law & Order\"\". He was the Executive Assistant District Attorney for New York County until his resignation at the end of season four. He appeared in 88 episodes. Stone works in the Manhattan District Attorney's office under Alfred Wentworth (in the pilot episode) and Adam Schiff. He was raised in an Irish Catholic family. He was raised mostly by his Irish grandmother, his father having been an alcoholic. Stone is divorced and has a son, Peter Stone, who was"} +{"qid": "test431", "pid": "5964411", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Law & Order (season 4)\"\nLaw & Order (season 4) The fourth season of \"\"Law & Order\"\" aired on NBC between September 15, 1993, and May 25, 1994. This is the final season to feature Michael Moriarty as Ben Stone. It is also the first season to include a shorter opening sequence and theme (at 46 seconds), which would be used for the remainder of the series' run. Season four was released on DVD December 6, 2005. There were two cast changes from season 3: This was the first time women played any of the \"\"Law and Order\"\" 's six major characters: both roles would"} +{"qid": "test431", "pid": "5053557", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Benjamin Stone (Law & Order character)\"\ndebate Senator Kent Conrad, he was replaced by FCC chairman Reed Hundt. Both appearances were scheduled to air on January 26, 1994. Moriarty submitted his resignation to producer Dick Wolf on January 25, 1994, and his departure was written into the series. Benjamin Stone (Law & Order character) Benjamin \"\"Ben\"\" Stone is a fictional character portrayed by Michael Moriarty in the TV drama \"\"Law & Order\"\". He was the Executive Assistant District Attorney for New York County until his resignation at the end of season four. He appeared in 88 episodes. Stone works in the Manhattan District Attorney's office under"} +{"qid": "test431", "pid": "3623938", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Michael Moriarty\"\nof Korean Air Lines flight 007 in 1983. He portrayed U.S. Air Force Major Hank Daniels, who was largely ignored if not ridiculed for showing how the ill-fated airliner had strayed off course into airspace known by the Soviets to be used by U.S. Air Force electronic surveillance planes as they approached Soviet airspace. From 1990 to 1994, Moriarty starred as Ben Stone on \"\"Law & Order\"\". He left the show in 1994, alleging that his departure was a result of his threatening a lawsuit against then-Attorney General Janet Reno, who had cited \"\"Law & Order\"\" as offensively violent. Moriarty"} +{"qid": "test431", "pid": "15471447", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Manhood (Law & Order)\"\nto protect\"\". Stone counters that homophobia is no more acceptable than hatred based on race, nationality, religion or politics, and that police officers who allow their own prejudices to interfere with their duties should be held accountable. Nevertheless, the jury acquits the defendants. Co-writer Robert Nathan credits Michael Moriarty with inspiring the strength of his character Ben Stone's closing argument. Moriarty felt that the original summation was weak and suggested that Stone should deliver a variation on Martin Niemöller's famous First they came ... statement, relating the defendants' hatred for gay people to hatred for other groups that might include"} +{"qid": "test431", "pid": "3623940", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Michael Moriarty\"\nHollywood trade magazine, calling upon fellow artists to stand up with him against attempts to censor TV show content. He subsequently wrote and published \"\"The Gift of Stern Angels\"\", his account of this time in his life. The character of Ben Stone has yet to reappear on the franchise. The February 7, 2018, episode of \"\"\"\" opens with Sam Waterston's character of Jack McCoy delivering a eulogy at Ben Stone's funeral. Wolf and others working on \"\"Law & Order\"\" tell a different story, however. On November 18, 1993, Moriarty and Wolf, along with other television executives, met with Reno to"} +{"qid": "test431", "pid": "5053556", "query": "who was the actor that played ben stone on law and order", "answer": "Michael Moriarty", "passage": "\"Benjamin Stone (Law & Order character)\"\nthe visits since their father's death. She is murdered by sex traffickers in \"\"\"\". Stone's departure from the series stemmed from actor Michael Moriarty's dispute with the network and U.S. Attorney General Janet Reno, who in 1993 began promoting legislation to limit portrayals of violence on television. Moriarty, who was outspoken against Reno and what he felt was government censorship, was scheduled to appear on NBC shows \"\"Today\"\" and \"\"Now with Tom Brokaw and Katie Couric\"\", but both ended up canceled. Moriarty had already taped his segment for \"\"Now\"\"; for his \"\"Today\"\" show appearance, during which he was scheduled to"} +{"qid": "test432", "pid": "2264960", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "Scheria\nnautical renown dated from the days of its old inhabitants, the Phaeacians.\"\" Locals on Corfu had long claimed this, based on the rock outside Corfu harbour, which is supposedly the ship that carried Odysseus back to Ithaca, but was turned to stone by Poseidon, to punish the Phaeacians for helping his enemy, The Phaeacians did not participate in the Trojan War. The Greek name Φαίακες is derived from \"\"phaiós\"\" (φαιός “gray”). However, the Phaeacians in the \"\"Odyssey\"\" did not know Odysseus (although they knew \"\"of\"\" him, as evidenced by the tales of Demodocus), so they called him a \"\"stranger\"\". Odysseus"} +{"qid": "test432", "pid": "306144", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "Odyssey\nOdysseus, which may or may not be the same island that is now called Ithakē (Ιθάκη). The wanderings of Odysseus as told to the Phaeacians, and the location of the Phaeacians' own island of Scheria, pose more fundamental problems, if geography is to be applied: scholars, both ancient and modern, are divided as to whether or not any of the places visited by Odysseus (after Ismaros and before his return to Ithaca) are real. Scholars have seen strong influences from Near Eastern mythology and literature in the \"\"Odyssey\"\". Martin West has noted substantial parallels between the \"\"Epic of Gilgamesh\"\" and"} +{"qid": "test432", "pid": "8951714", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "\"Geography of the Odyssey\"\npart of Cephalonia. Lately, Robert Bittlestone, in his book \"\"Odysseus Unbound\"\", has identified the Paliki peninsula on Cephalonia with Homeric Ithaca. The geography of the \"\"Apologoi\"\" (the tale that Odysseus told to the Phaeacians, forming books 9-12 of the \"\"Odyssey\"\"), and the location of the Phaeacians' own island of Scheria, pose quite different problems from those encountered in identifying Troy, Mycenae, Pylos and Ithaca. For these reasons, the opinions of later students and scholars about the geography of Odysseus's travels vary enormously. It has repeatedly been argued that each successive landfall, and the routes joining them, are real and can"} +{"qid": "test432", "pid": "2264953", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "Scheria\nScheria Scheria (; or )—also known as Scherie or Phaeacia—was a region in Greek mythology, first mentioned in Homer's \"\"Odyssey\"\" as the home of the Phaeacians and the last destination of Odysseus in his 10-year journey before returning home to Ithaca. Before leaving Ogygia, Odysseus builds a raft and sails eastwards, instructed by Calypso to navigate using the stars as a celestial reference point. On the eighteenth day appear the shadowy mountains of the land of the Phaeacians, that looked like a \"\"shield\"\" in the misty deep. But Poseidon spots his raft and seeking vengeance for his son Polyphemus who"} +{"qid": "test432", "pid": "560891", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "Corfu\n(\"\"Csa\"\" in the Köppen climate classification). The earliest reference to Corfu is the Mycenaean Greek word \"\"ko-ro-ku-ra-i-jo (\"\"\"\"man from Kerkyra\"\") written in Linear B syllabic script, c. 1300 BC. According to Strabo, Corcyra (Κόρκυρα) was the Homeric island of Scheria (Σχερία), and its earliest inhabitants were the Phaeacians (Φαίακες). The island has indeed been identified by some scholars with Scheria, the island of the Phaeacians described in Homer's \"\"Odyssey\"\", though conclusive and irrefutable evidence for this theory or for Ithaca's location have not been found. Apollonius of Rhodes depicts the island in \"\"Argonautica\"\" as a place visited by the Argonauts."} +{"qid": "test432", "pid": "2264963", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "Scheria\ncriticized Polybius on the geography of the \"\"Odyssey\"\". Strabo proposed that Scheria and Ogygia were located in the middle of the Atlantic Ocean. Scheria Scheria (; or )—also known as Scherie or Phaeacia—was a region in Greek mythology, first mentioned in Homer's \"\"Odyssey\"\" as the home of the Phaeacians and the last destination of Odysseus in his 10-year journey before returning home to Ithaca. Before leaving Ogygia, Odysseus builds a raft and sails eastwards, instructed by Calypso to navigate using the stars as a celestial reference point. On the eighteenth day appear the shadowy mountains of the land of the"} +{"qid": "test432", "pid": "19337048", "query": "where do the phaeacians live in the odyssey", "answer": "Scheria", "passage": "\"Parallels between Virgil's Aeneid and Homer's Iliad and Odyssey\"\nof Scheria, the land of the Phaeacians, who hospitably take Odysseus in and ask him how he has come to their land. Odysseus spends Books IX through XII recounting his journey from Troy to where he was presently. In Aeneas' case, upon arrival in Carthage, Dido asked Aeneas to share his story, so Books II and III were narrating the fall of Troy and how Aeneas and his people arrived at Carthage. Both heroes sail over the same sea, sometimes visiting the same locations and experiencing the same difficulties. In Book III of the \"\"Aeneid\"\", Aeneas and his men come"} +{"qid": "test433", "pid": "5805694", "query": "who invented the glasses that give sight to the blind", "answer": "2006", "passage": "\"Blind cricket\"\nBlind cricket Blind cricket is a version of the sport of cricket adapted for blind and partially sighted players. It has been governed by the World Blind Cricket Council (WBCC) since 1996. So far, five Blind World Cups have been held: New Delhi, India (1998); Chennai, India (2002); Islamabad, Pakistan (2006), and India (2018). In 2012, the first Blind World Cup T20 was held in Bangalore, India. Blind cricket relies on common use of the 'sweep shot', in order to provide maximum chance of the bat hitting the ball. Blind cricket was invented in Melbourne in 1922 by two blind"} +{"qid": "test433", "pid": "5805711", "query": "who invented the glasses that give sight to the blind", "answer": "2006", "passage": "\"Blind cricket\"\nqualify for the finals. Blind cricket Blind cricket is a version of the sport of cricket adapted for blind and partially sighted players. It has been governed by the World Blind Cricket Council (WBCC) since 1996. So far, five Blind World Cups have been held: New Delhi, India (1998); Chennai, India (2002); Islamabad, Pakistan (2006), and India (2018). In 2012, the first Blind World Cup T20 was held in Bangalore, India. Blind cricket relies on common use of the 'sweep shot', in order to provide maximum chance of the bat hitting the ball. Blind cricket was invented in Melbourne in"} +{"qid": "test434", "pid": "612409", "query": "when do we find out luke and leia are siblings", "answer": "Return of the Jedi", "passage": "\"Return of the Jedi\"\nLuke arrives soon afterward, but after a tense standoff, is sent through a trapdoor to do battle with Jabba's rancor. Jabba sentences Luke and Han to death by being fed to the Sarlacc. Having hidden his lightsaber inside , Luke frees himself and battles Jabba's guards while Leia uses her chains to strangle Jabba. As the others rendezvous with the Rebel Alliance, Luke returns to Dagobah, where he finds that Yoda is dying. Yoda confirms that Darth Vader, once known as Anakin Skywalker, is Luke's father. The spirit of Obi-Wan Kenobi reveals that Leia is Luke's twin sister. The Jedi"} +{"qid": "test434", "pid": "1820784", "query": "when do we find out luke and leia are siblings", "answer": "Return of the Jedi", "passage": "\"Skywalker family\"\nis force sensitive and skilled with a lightsaber. In \"\"Return of the Jedi\"\", a dying Yoda confirms to Luke, that Darth Vader (previously Anakin Skywalker) is actually his father, despite Luke's belief that Vader's claim to fatherhood in \"\"The Empire Strikes Back\"\" was a ruse to pull Luke to the dark side. He also finds out from Obi-Wan's force ghost that Princess Leia Organa is his sister. In \"\"The Force Awakens\"\", as the last known Jedi, Luke is in hiding after failing to prevent his apprentice Ben (now Kylo Ren) from turning to the dark side to join Supreme Leader"} +{"qid": "test435", "pid": "15576774", "query": "who wrote the original little red riding hood story", "answer": "Charles Perrault", "passage": "\"About the Little Red Riding Hood\"\nAbout the Little Red Riding Hood About the Little Red Riding Hood () is a 1977 Soviet two-part musical TV movie based on the ideas of Charles Perrault and directed by Leonid Nechayev The story is a sequel of the tale of Little Red Riding Hood. The film is significant in its treatment of the characters from within the original story. The manner in which the characters of the wolves is portrayed is different from the original story, as the wolves are viewed as human beings throughout the film. They are akin to a family of forest hermits or a"} +{"qid": "test435", "pid": "2033855", "query": "who wrote the original little red riding hood story", "answer": "Charles Perrault", "passage": "\"Little Red Riding Hood\"\nLittle Red Riding Hood \"\"Little Red Riding Hood\"\" is a European fairy tale about a young girl and a Big Bad Wolf. Its origins can be traced back to the 10th century by several European folk tales, including one from Italy called \"\"The False Grandmother\"\" (), later written among others by Italo Calvino in the \"\"Italian Folktales\"\" collection; the best known versions were written by Charles Perrault and the Brothers Grimm. The story has been changed considerably in various retellings and subjected to numerous modern adaptations and readings. Other names for the story are: \"\"\"\"Little Red Ridinghood\"\"\"\", \"\"\"\"Little Red Cap\"\"\"\""} +{"qid": "test435", "pid": "11710819", "query": "who wrote the original little red riding hood story", "answer": "Charles Perrault", "passage": "\"Little Red Riding Hood (1995 film)\"\nLittle Red Riding Hood (1995 film) Little Red Riding Hood is a 48-minute direct-to-video animated film produced by Jetlag Productions. It was distributed by GoodTimes Entertainment and originally released on VHS on July 31, 1995. The film was produced by Mark Taylor and directed by Toshiyuki Hiruma Takashi. Writer George Arthur Bloom adapted the script from Charles Perrault's version of the story of \"\"Little Red Riding Hood\"\". Though it has been released on DVD in many European countries, the film has never been released in that format in the United States. It is the only Jetlag Productions animated film to"} +{"qid": "test435", "pid": "2033872", "query": "who wrote the original little red riding hood story", "answer": "Charles Perrault", "passage": "\"Little Red Riding Hood\"\nby woodcutters working in the nearby forest. Then he proceeded to lay a trap for the Red Riding Hood. Little Red Riding Hood ends up being asked to climb into the bed before being eaten by the wolf, where the story ends. The wolf emerges the victor of the encounter and there is no happy ending. Charles Perrault explained the 'moral' at the end of the tale: so that no doubt is left to his intended meaning: This, the presumed original, version of the tale was written for late seventeenth-century French court of King Louis XIV. This audience, whom the"} +{"qid": "test435", "pid": "2033882", "query": "who wrote the original little red riding hood story", "answer": "Charles Perrault", "passage": "\"Little Red Riding Hood\"\nRiding Hood\"\" reveal to the heroine that she has a wild nature like the hero's. These interpretations refuse to characterize Little Red Riding Hood as a victim; these are tales of female empowerment. Little Red Riding Hood \"\"Little Red Riding Hood\"\" is a European fairy tale about a young girl and a Big Bad Wolf. Its origins can be traced back to the 10th century by several European folk tales, including one from Italy called \"\"The False Grandmother\"\" (), later written among others by Italo Calvino in the \"\"Italian Folktales\"\" collection; the best known versions were written by Charles Perrault"} +{"qid": "test436", "pid": "4363140", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "\"National Emissions Standards Act\"\nhaze\"\" in national parks and wilderness areas. Acid precipitation comes in more forms than just rain. Snow, fog, mist, gas, and dust are also formed in the atmosphere and have the ability to become acid precipitation. These types of precipitation are formed when certain types of air pollutants mix with the moisture in the air to form an acid. Each type is potentially dangerous to humans' health, can cause haze and problems in the environment, and can cause damage to people's properties. The two main pollutants that cause acid precipitation are sulfur dioxide (SO2) and nitrogen oxides (NOx). Power plants"} +{"qid": "test436", "pid": "11114164", "query": "what are the four main types of precipitation", "answer": "snow", "passage": "\"Automated airport weather station\"\nthan actual. Current sensors are capable of reporting visibility in a wide range. For aviation purposes, the reported values are rounded down to the nearest step in one of the following scales: Automated airport weather stations use a Light Emitting Diode Weather Identifier (LEDWI) to determine if and what type of precipitation is falling. The LEDWI sensor measures the scintillation pattern of the precipitation falling through the sensor's infrared beam (approximately 50 millimeters in diameter) and determines from a pattern analysis of the particle size and fall velocity whether the precipitation is rain or snow. If precipitation is determined to"} +{"qid": "test436", "pid": "1457998", "query": "what are the four main types of precipitation", "answer": "snow", "passage": "Kyrgyzstan\nseasonal periods. The summer months are expected to show a significant reduction in precipitation, whereas the winter months are expected to have the largest increase in precipitation. Changes to these precipitation patterns will affect what crops will be suitable for production during those periods. Grazing lands and pastures for livestock production will be affected as the availability of precipitation will determine growth and the ability to regenerate. Glaciers and snow melt are important for filling up rivers that Kyrgyzstan relies on. Hydro power is the country's main source of energy, making up about 90 percent of electricity generation. Climate change"} +{"qid": "test436", "pid": "10444043", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "\"Brücken, Birkenfeld\"\n1934, the population is almost 1,300. The municipality’s \"\"Ortsteile\"\" are Brücken (main centre) and Traunen. Also belonging to Brücken is the outlying homestead of Friesenhof. Yearly precipitation in Brücken amounts to 1 021 mm, which is very high, falling into the highest fourth of the precipitation chart for all Germany. At 86% of the German Weather Service’s weather stations, lower figures are recorded. The driest month is July. The most rainfall comes in December. In that month, precipitation is 1.8 times what it is in July. Precipitation varies greatly. Only at 18% of the weather stations are higher seasonal recorded."} +{"qid": "test436", "pid": "10131003", "query": "what are the four main types of precipitation", "answer": "drizzle", "passage": "\"Precipitation types\"\nPrecipitation types In meteorology, the various types of precipitation often include the character or phase of the precipitation which is falling to ground level. There are three distinct ways that precipitation can occur. Convective precipitation is generally more intense, and of shorter duration, than stratiform precipitation. Orographic precipitation occurs when moist air is forced upwards over rising terrain, such as a mountain. Precipitation can fall in either liquid or solid phases, or transition between them at the freezing level. Liquid forms of precipitation include rain and drizzle. Rain or drizzle which freezes on contact within a subfreezing air mass gains"} +{"qid": "test436", "pid": "10131014", "query": "what are the four main types of precipitation", "answer": "snow", "passage": "\"Precipitation types\"\nHeavy snowfall describes conditions when visibility is restricted below . Precipitation types In meteorology, the various types of precipitation often include the character or phase of the precipitation which is falling to ground level. There are three distinct ways that precipitation can occur. Convective precipitation is generally more intense, and of shorter duration, than stratiform precipitation. Orographic precipitation occurs when moist air is forced upwards over rising terrain, such as a mountain. Precipitation can fall in either liquid or solid phases, or transition between them at the freezing level. Liquid forms of precipitation include rain and drizzle. Rain or drizzle"} +{"qid": "test436", "pid": "12398825", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "Alpine-steppe\nglobal average, indicating the sensitivity of this area. Studies have been done that show that the spread of vegetation has changed dramatically since the Holocene period. The Tibetan Plateau is composed of three main regions, based on yearly precipitation levels and types of vegetation, namely the alpine meadow, alpine steppe, and the alpine desert-steppe. Since the Holocene, studies of fossil pollen records have shown that the alpine meadow has extended into areas that were previously alpine steppe as precipitation increased during that period. There is a unimodal pattern across precipitation and vegetation rain use efficiency (RUE), with an increasing trend"} +{"qid": "test436", "pid": "19152547", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "\"Climatic regions of Argentina\"\nmountainous west and south; precipitation is more evenly distributed in the east and south. One defining characteristic is the strong winds from the west which blow year-round, lowering the perception of temperature (wind chill), while being a factor in keeping the region arid by favouring evaporation. The vast size, and wide range of altitudes, contribute to Argentina's diverse climate. Consequently, there is a wide variety of biomes in the country, including subtropical rain forests, semi-arid and arid regions, temperate plains in the Pampas, and cold subantarctic in the south. In general, Argentina has four main climate types: warm, moderate, arid,"} +{"qid": "test436", "pid": "7782517", "query": "what are the four main types of precipitation", "answer": "snow", "passage": "\"Climate of Milwaukee\"\nwith an average 4.03 inches (102 mm) of precipitation, mainly as rainfall. Long-duration rains are uncommon in summer, usually occurring only in April or October. Thunderstorms are the main precipitation events from May until September, and Milwaukee experiences an extended tornado season that lasts from late March until early June, however, severe weather and tornadoes are more frequent inland to the west. The driest month is February, when only 1.65 inches (41.9 mm) of precipitation falls, almost entirely as light, low moisture content snow resulting from the Alberta clipper type system when cold, dry air masses dominate. Climate of Milwaukee"} +{"qid": "test436", "pid": "1980806", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "Precipitation\nmeans the globally averaged annual precipitation is . Mechanisms of producing precipitation include convective, stratiform, and orographic rainfall. Convective processes involve strong vertical motions that can cause the overturning of the atmosphere in that location within an hour and cause heavy precipitation, while stratiform processes involve weaker upward motions and less intense precipitation. Precipitation can be divided into three categories, based on whether it falls as liquid water, liquid water that freezes on contact with the surface, or ice. Mixtures of different types of precipitation, including types in different categories, can fall simultaneously. Liquid forms of precipitation include rain and"} +{"qid": "test436", "pid": "10416473", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "Flonheim\neven lower figures are recorded. The driest month is January. The most rainfall comes in June. In that month, precipitation is twice what it is in January. Precipitation hardly varies over the year. At 28% of the weather stations, lower seasonal swings are recorded. Flonheim’s neighbours are Armsheim, Bornheim, Uffhofen (since 7 June 1969 amalgamated with Flonheim) and Wendelsheim. As early as Roman times, sandstone was being quarried in what is now Flonheim’s municipal area. Some sculptural finds are on display at the Alzey Museum, such as a \"\"Viergötterstein\"\" (a “four-god stone”, a pedestal on which a Jupiter Column was"} +{"qid": "test436", "pid": "17713427", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "\"Zabarwan Range\"\nlangur and Himalayan weasel. The climate of the Zabarwans can be summed up from the climate of Dachigam. It is a sub-Mediterranean type, with two spells of dryness from April to June and September to November. The range has irregular weather conditions with a considerable variation in the amount of precipitation. Snow is the main source of precipitation, and in some parts melts till June. The annual minimum and maximum rainfall of the Zabarwans ranges between 32 mm to 546 mm. The crystalline axis of the Himalayan system contains the oldest rocks, and in the northern flank of this crystalline"} +{"qid": "test436", "pid": "4711755", "query": "what are the four main types of precipitation", "answer": "rain", "passage": "\"Precipitation hardening\"\ndislocation will be repulsed by the precipitate. Precipitate particles also serve by locally changing the stiffness of a material. Dislocations are repulsed by regions of higher stiffness. Conversely, if the precipitate causes the material to be locally more compliant, then the dislocation will be attracted to that region. In addition, there are three types of interphase boundaries (IPBs). The first type is a coherent or ordered IPB, the atoms match up one by one along the boundary. Due to difference in lattice parameters of the two phases, a coherency strain energy is associated with this type of boundary. The second"} +{"qid": "test436", "pid": "3411850", "query": "what are the four main types of precipitation", "answer": "snow", "passage": "\"Climate of India\"\nprecipitation in the post-monsoon and winter periods. However, parts of West Bengal, Orissa, Andhra Pradesh, Karnataka and Mumbai also receive minor precipitation from the north-east monsoon. Shown below are temperature and precipitation data for selected Indian cities; these represent the full variety of major Indian climate types. Figures have been grouped by the four-season classification scheme used by the IMD; year-round averages and totals are also displayed. Climate-related natural disasters cause massive losses of Indian life and property. Droughts, flash floods, cyclones, avalanches, landslides brought on by torrential rains, and snowstorms pose the greatest threats. Other dangers include frequent summer"} +{"qid": "test436", "pid": "12381860", "query": "what are the four main types of precipitation", "answer": "snow", "passage": "Rain\nan occluded front, with thunderstorms possible, but usually their passage is associated with a drying of the air mass. Occluded fronts usually form around mature low-pressure areas. What separates rainfall from other precipitation types, such as ice pellets and snow, is the presence of a thick layer of air aloft which is above the melting point of water, which melts the frozen precipitation well before it reaches the ground. If there is a shallow near surface layer that is below freezing, freezing rain (rain which freezes on contact with surfaces in subfreezing environments) will result. Hail becomes an increasingly infrequent"} +{"qid": "test437", "pid": "20518266", "query": "who won the men's ice skating 2018", "answer": "Yuzuru Hanyu", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\nFigure skating at the 2018 Winter Olympics – Men's singles The men's single figure skating competition of the 2018 Winter Olympics was held on 16 and 17 February 2018 at the Gangneung Ice Arena in Gangneung, South Korea. The short program was held on 16 February and the free skating was held on 17 February. This medal event was the 1000th medal event in the history of the Winter Olympic Games. With his victory at the 2018 Winter Olympics, Yuzuru Hanyu became the first male figure skater to win two consecutive gold medals after Dick Button, who did so in"} +{"qid": "test439", "pid": "19772570", "query": "which is the fastest train in india and what is its speed", "answer": "Mumbai Rajdhani Express", "passage": "\"New Delhi–Mumbai main line\"\nNew Delhi–Mumbai main line The Delhi–Mumbai line is a major railway line in India. Linking the national capital of New Delhi with financial capital Mumbai, this railway line covers a distance of across the Indian states of Delhi, Haryana, Uttar Pradesh, Madhya Pradesh, Rajasthan, Gujarat and Maharashtra. Mumbai Rajdhani Express which the fastest Rajdhani Express travels on this line and covers the distance between Delhi and Mumbai in 15 hours and 40 minutes at an average speed of 91 km/hr. In 2016, Spanish high speed rail manufacturer Talgo conducted several trials of its high speed train between Mumbai. The train"} +{"qid": "test439", "pid": "1442993", "query": "which is the fastest train in india and what is its speed", "answer": "Gatiman", "passage": "\"Rail transport in India\"\nEsplanade and Bhowanipur (now the Netaji Bhawan station). In 1988 the first Shatabdi Express was introduced between New Delhi and Jhansi (later extended to Bhopal), and was the fastest train at the time. In 1993 air-conditioned 3-tier coaches were introduced as well as a sleeper class separate from second class. In 1999 South East Central was constituted. On 6 July 2002 the East Coast, South Western, South East Central, North Central, and West Central zones were created. On 5 April 2016 Gatiman Express, India's fastest train at a maximum speed of , made its first run from Delhi to Agra."} +{"qid": "test439", "pid": "12854499", "query": "which is the fastest train in india and what is its speed", "answer": "Mumbai Rajdhani Express", "passage": "\"Mumbai Rajdhani Express\"\nMumbai Rajdhani Express The 12951/12952 Mumbai Rajdhani Express is a super fast express train of Rajdhani class belonging to Indian Railways that runs between Mumbai and Delhi in India. It is the second fastest Rajdhani service in all of India, surpassed by only the Bandra Rajdhani, with an average running speed (ARS) of nearly 88 km/h. It was introduced on 17 May 1972 between the then Bombay Central and New Delhi. The train became so popular that prior to the introduction of current reservation facility its reservation chart was prepared just 15 minutes before the scheduled departure of the train."} +{"qid": "test439", "pid": "12854504", "query": "which is the fastest train in india and what is its speed", "answer": "Mumbai Rajdhani Express", "passage": "\"Mumbai Rajdhani Express\"\nfor one month . Recently Virar-Vadodara-Godhra Section top speed is enhanced from 120 km/h to 130 km/h. Hence, Mumbai Rajdhani's time reduced from 16 hours to 15 hr 35 minutes while it continues to be the fastest train in India (including halts) with average speed of 91 km/h.It is the first train (along with 12953/54 August Kranti Rajdhani Express as both have Rake Sharing) to be experimented with HOG (Head On Generation) which powers the train directly from locomotive instead of an EOG or generator van . On 18 April 2011, three coaches of the train caught fire, including the"} +{"qid": "test440", "pid": "16658639", "query": "who are the permanent member of un security council", "answer": "China", "passage": "\"Permanent members of the United Nations Security Council\"\nPermanent members of the United Nations Security Council The permanent members of the United Nations Security Council (also known as the Permanent Five, Big Five, or P5) are the five states which the UN Charter of 1945 grants a permanent seat on the UN Security Council: China (formerly the Republic of China), France, Russia (formerly the Soviet Union), the United Kingdom, and the United States. These countries were all allies in World War II, which they won. They are also all nuclear weapons states. A total of 15 UN member states serve on the UNSC, the remainder of which are"} +{"qid": "test440", "pid": "16658646", "query": "who are the permanent member of un security council", "answer": "China", "passage": "\"Permanent members of the United Nations Security Council\"\nPermanent members of the United Nations Security Council The permanent members of the United Nations Security Council (also known as the Permanent Five, Big Five, or P5) are the five states which the UN Charter of 1945 grants a permanent seat on the UN Security Council: China (formerly the Republic of China), France, Russia (formerly the Soviet Union), the United Kingdom, and the United States. These countries were all allies in World War II, which they won. They are also all nuclear weapons states. A total of 15 UN member states serve on the UNSC, the remainder of which are"} +{"qid": "test440", "pid": "20700598", "query": "who are the permanent member of un security council", "answer": "China", "passage": "\"Kazakhstan's membership in the United Nations Security Council\"\nparticular such threats like terrorism growth, illegal drugs production, human trafficking, and also the presence of \"\"Islamic State\"\" and Al-Qaida. The UN Security Council is a standing body of the United Nations, which is entrusted with the primary responsibility for the maintenance of international peace and security. The Security Council consists of 15 members, 5 of which are permanent (United Kingdom, China, Russia, United States, France), and 10 are non-permanent, elected by the UN General Assembly for a two-year period for 5 countries each year. In 2017, non-permanent members of the UN Security Council include Bolivia, Egypt, Italy, Kazakhstan, Senegal,"} +{"qid": "test443", "pid": "14837163", "query": "a concave mirror can form a real image which is a copy of an object that forms", "answer": "inverted", "passage": "Projector\nlantern use all kinds of colorful transparent cellophane figures which are projected across the walls, especially popular for nurseries. The inverted real image of an object reflected by a concave mirror can appear at the focal point in front of the mirror. In a construction with an object at the bottom of two opposing concave mirrors (parabolic reflectors) on top of each other, the top one with an opening in its center, the reflected image can appear at the opening as a very convincing 3D optical illusion. The earliest description of projection with concave mirrors has been traced back to"} +{"qid": "test443", "pid": "3692649", "query": "a concave mirror can form a real image which is a copy of an object that forms", "answer": "inverted", "passage": "\"Real image\"\n(such as the images on the right), real rays of light are always represented by full, solid lines; perceived or extrapolated rays of light are represented by dashed lines. A real image occurs where rays converge, whereas a virtual image occurs where rays only \"\"appear\"\" to converge. Real images can be produced by concave mirrors and converging lenses, only if the object is placed further away from the mirror/lens than the focal point and this real image is inverted. As the object approaches the focal point the image approaches infinity, and when the object passes the focal point the image"} +{"qid": "test443", "pid": "300841", "query": "a concave mirror can form a real image which is a copy of an object that forms", "answer": "inverted", "passage": "Optics\nbehind the mirror as the objects are in front of the mirror. The image size is the same as the object size. The law also implies that mirror images are parity inverted, which we perceive as a left-right inversion. Images formed from reflection in two (or any even number of) mirrors are not parity inverted. Corner reflectors retroreflect light, producing reflected rays that travel back in the direction from which the incident rays came. Mirrors with curved surfaces can be modelled by ray tracing and using the law of reflection at each point on the surface. For mirrors with parabolic"} +{"qid": "test443", "pid": "300842", "query": "a concave mirror can form a real image which is a copy of an object that forms", "answer": "inverted", "passage": "Optics\nsurfaces, parallel rays incident on the mirror produce reflected rays that converge at a common focus. Other curved surfaces may also focus light, but with aberrations due to the diverging shape causing the focus to be smeared out in space. In particular, spherical mirrors exhibit spherical aberration. Curved mirrors can form images with magnification greater than or less than one, and the magnification can be negative, indicating that the image is inverted. An upright image formed by reflection in a mirror is always virtual, while an inverted image is real and can be projected onto a screen. Refraction occurs when"} +{"qid": "test443", "pid": "10298212", "query": "a concave mirror can form a real image which is a copy of an object that forms", "answer": "inverted", "passage": "\"Plane mirror\"\ncome. However, the image is a laterally-inverted \"\"mirror image\"\" of the object. If a person is reflected in a plane mirror, the image of his right hand appears to be the left hand of the image. Plane mirrors are the only type of mirror for which a real object always produces an image that is virtual, erect and of the same size as the object. Virtual objects produce real images, however. The focal length of a plane mirror is infinity; its optical power is zero. A plane mirror is made using some highly reflecting and polished surface such as a"} +{"qid": "test444", "pid": "8074319", "query": "which abbott and costello movie has who on first", "answer": "The Naughty Nineties", "passage": "\"The Naughty Nineties\"\n\"\"Who's on First?\"\", was ranked No. 91 on American Film Institute's 100 Movie Quotes. The \"\"Who's on First?\"\" routine was intended to appear much earlier in the film. Costello begins the routine by saying, \"\"When we get to St. Louis...\"\", but at this point in the film they are already in St. Louis. The camera crew can be heard laughing in the background during the routine. The film also contains the \"\"Lower/Higher\"\" routine, where Costello auditions as a singer while Abbott shouts directions to the stage crew to change the height and placement of the backdrop curtain. Costello believes Abbott"} +{"qid": "test444", "pid": "8074322", "query": "which abbott and costello movie has who on first", "answer": "The Naughty Nineties", "passage": "\"The Naughty Nineties\"\nand Costello returned to Universal for re-shoots on this film. The riverboat used was originally constructed for the 1936 Universal musical \"\"Show Boat\"\". It was re-released in 1950 along with \"\"One Night in the Tropics\"\", which also contained a shorter version of the \"\"Who's on First?\"\" routine. This film has been released twice on DVD. The first time, on \"\"The Best of Abbott and Costello Volume Two\"\", on May 4, 2004, and again on October 28, 2008 as part of \"\"Abbott and Costello: The Complete Universal Pictures Collection\"\". The Naughty Nineties The Naughty Nineties is a 1945 film starring the"} +{"qid": "test446", "pid": "14180961", "query": "when did the first wireless beats come out", "answer": "October 2012", "passage": "\"Beats Electronics\"\nbuilding something from scratch … Every time we put out an album, it was basically like building a new business--a unique cast of characters, unique challenges and opportunities, and trying to figure out a unique path to market. In October 2012, Beats unveiled its first two self-developed products, \"\"Beats Executive\"\" headphones and \"\"Beats Pill\"\" wireless speakers—Iovine believed that the company would now have to \"\"control [its] own destiny\"\" in order to continue its growth. Iovine also commented on how other headphone makers had attempted to emulate Beats' celebrity endorsement business model (including Monster themselves, who unveiled Earth, Wind and Fire"} +{"qid": "test447", "pid": "19167394", "query": "when did the first pair of yeezys come out", "answer": "February 14, 2015", "passage": "\"Adidas Yeezy\"\nFebruary 14, 2015, exclusively for those who confirmed a reservation through the Adidas mobile app. This initial release of the Adidas Yeezy Boost 750 \"\"Light Brown\"\" was limited to 9000 pairs to be available only in New York City via the Adidas smartphone app; the Adidas Yeezy Boosts were sold out within 10 minutes. Between February 21 and February 28 the Yeezy Boost 750 \"\"Light Brown\"\" was available through a wider range of retailers and boutiques. The shoe retailed for $350. On June 11, 2016, Yeezy Season 2 began with the second set of releases of the Yeezy Boost 750"} +{"qid": "test448", "pid": "11169963", "query": "who wrote the song be thankful for what you got", "answer": "William DeVaughn", "passage": "\"Be Thankful for What You Got\"\nBe Thankful for What You Got \"\"Be Thankful for What You Got\"\" is a soul song written and first performed by William DeVaughn. DeVaughn wrote \"\"A Cadillac Don't Come Easy\"\", eventually re-written to become \"\"Be Thankful for What You Got\"\" in 1972, and spent $900 toward it under a development agreement, under which an artist will record a few initial demos or tracks where, if successfully approved, the company may reserve the right to extend the arrangement to Omega Sound, a Philadelphia production house, and release the song. Producers Frank Fioravanti and saxophonist, and MFSB session group member, John Davis"} +{"qid": "test448", "pid": "8773984", "query": "who wrote the song be thankful for what you got", "answer": "William DeVaughn", "passage": "\"William DeVaughn\"\nWilliam DeVaughn William Edward DeVaughn Jr. (born November 28, 1947, in Washington, D.C.) is an American R&B/soul singer, songwriter and guitarist, best known for the million-selling hit song \"\"Be Thankful for What You Got\"\" in 1974. DeVaughn was a salaried government employee as a drafting technician, and a part-time singer. He wrote a song called \"\"A Cadillac Don't Come Easy\"\", which was eventually re-written to become \"\"Be Thankful for What You Got\"\", in 1972. He spent $900 towards getting it recorded with Omega Sound, a Philadelphia production house. The record's producer at Omega, John Davis (a member of the MFSB"} +{"qid": "test45", "pid": "17448025", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"History of the National Football League on television\"\nhe launched \"\"NFL Countdown\"\" and \"\"NFL Prime Time\"\", and they have since become the top-rated pre- and post-game shows on television. The cable network's contract to show \"\"ESPN Sunday Night Football\"\" was one of the turning points in their growth, transforming them from a small cable network to a marketing empire. When ESPN first started televising NFL games in 1987, it only broadcast Sunday night games during the second half of the season. Meanwhile, ABC, CBS, and NBC maintained their rights to \"\"Monday Night Football\"\", the NFC, and the AFC, respectively. By 1990, Turner's TNT network started to broadcast Sunday"} +{"qid": "test45", "pid": "1602206", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"Monday Night Football\"\nMonday Night Football ESPN Monday Night Football (abbreviated as MNF and also known as ESPN Monday Night Football on ABC for rare live special broadcast) is a live television broadcast of weekly National Football League (NFL) games on ESPN in the United States. From to , it aired on sister broadcast network ABC. \"\"Monday Night Football\"\" was, along with \"\"Hallmark Hall of Fame\"\" and the Walt Disney anthology television series, one of the longest-running prime time programs ever on commercial network television, and one of the highest-rated, particularly among male viewers. \"\"MNF\"\" is preceded on air by \"\"Monday Night Countdown\"\"."} +{"qid": "test45", "pid": "5582448", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "WKRN-TV\nfor the majority of the 2000s). The show now airs Monday and Saturday at 6:30 p.m., pre-empting \"\"Wheel of Fortune\"\" in that timeslot during football season. WKRN is the Nashville home and the flagship station of the Tennessee Titans Preseason Television Network, which broadcasts \"\"Titans Preseason Football\"\" during August and sometimes the very early parts of September. These games often prompt WKRN to broadcast the night's ABC primetime programming on a tape delay in the overnight hours of the following morning. WKRN also simulcasts ESPN's \"\"Monday Night Football\"\" any time the Tennessee Titans are involved in a Monday night match-up"} +{"qid": "test45", "pid": "4660061", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "WWJ-TV\nWWJ-TV also broadcasts the Lions' ESPN \"\"Monday Night Football\"\" and NFL Network \"\"Thursday Night Football\"\" games, resulting in CBS' entire primetime lineup being moved to WKBD-TV for the night. As per ESPN's \"\"Monday Night\"\" contract, WWJ-TV has the right of first refusal for at least one Monday night game. This right of first refusal has only been deferred twice, when the Lions' lone Monday night game of 2011 moved to WXYZ-TV due to an unexpected winning record at the time, and then when the station moved the team's first Monday night game of 2015 to WKBD so as to not"} +{"qid": "test45", "pid": "720935", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"American Broadcasting Company\"\nshare were greatly helped by the fact that several smaller markets had grown large enough to allow full-time affiliations from all three networks. In 1970, ABC debuted \"\"Monday Night Football\"\" as part of its Monday prime time schedule; the program became a hit for the network and served as the National Football League (NFL)'s premier game of the week until 2006, when \"\"Sunday Night Football\"\", which moved to NBC that year as part of a broadcast deal that in turn saw \"\"MNF\"\" move to ESPN, took over as the league's marquee game. According to Goldenson, \"\"Monday Night Football\"\" helped earn"} +{"qid": "test45", "pid": "17792966", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"NFL Special\"\nlive coverage of NBC's Sunday Night Football coverage and ESPN's Monday Night Football, giving Sky live rights to every NFL game during the season for the first time ever. Similarly to Thursday Night Football, Sky Sports uses feeds from the American network to cover the late night Sunday game and the Monday game. NFL on Sky Sports uses the commentary teams from the American networks, including the likes of Jim Nantz, Phil Simms, Al Michaels, Cris Collinsworth, Joe Buck and Troy Aikman. NFL Special NFL on Sky Sports, previously known as known as NFL Special when it airs on that"} +{"qid": "test45", "pid": "5623901", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"Monday Night Football (UK TV programme)\"\na format similar to that of \"\"Ford Super Sunday\"\" with a presenter (Jeff Stelling) and studio guests. In 2004–05, the analysis section was then incorporated into an additional programme shown after \"\"Ford Super Sunday\"\" called \"\"Ford Super Sunday: The Last Word\"\". The show ended after the 2006–07 season when Setanta and subsequently ESPN obtained the rights for Monday night Premier League games. \"\"Monday Night Football\"\" returned from the 2010–11 season after Sky regained the rights to Monday night Premier League games. The games broadcast kick off at 8:00 pm on Monday nights. The show also started broadcasting in high-definition. Due"} +{"qid": "test45", "pid": "14279632", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"Michelle Beisner-Buck\"\nMichelle Beisner-Buck Michelle Beisner-Buck (born October 15, 1976) is a feature reporter for ESPN and is a member of the \"\"Monday Night Countdown\"\" crew as well as Monday Night Football. She had an 8-year tenure at NFL Network being the host of NFL Weekly Countdown, and served as a field reporter for \"\"NFL Total Access\"\" and \"\"NFL GameDay Morning\"\". She was also the host of \"\"NFL Network Now\"\", a news program on NFL Network. She has been a reporter and has worked on \"\"NFL Quarterback Challenge\"\", and the \"\"Total Access On Location\"\" pre-game show at the Super Bowl. Beisner also"} +{"qid": "test45", "pid": "675234", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"Canadian Football League\"\nESPN2 and then re-aired on ESPN the following day, leading into the network's \"\"Monday Night Countdown\"\" show. ESPN's on-air talent included a mix of the network's American football broadcasters and established CFL broadcasters from Canada. Most of the US-based teams also had deals with local carriers to show games that were not covered in the national package. Though there were no US teams in the league after 1995, ESPN2 continued showing games until 1997, albeit on a much lighter schedule. The now-defunct America One network held CFL broadcast rights in the United States from 2001 to 2009 and aired a"} +{"qid": "test45", "pid": "4686442", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"Mike & Mike\"\nGolic would also call a National Football League game together for ESPN, broadcasting the second game of ESPN's Week 1 \"\"Monday Night Football\"\" doubleheader along with former NFL coach and player Mike Ditka. In June 2008, ESPN announced that the \"\"Three Mikes\"\" will return to broadcast the second game of the opening 2008 \"\"Monday Night Football\"\" doubleheader. Their last Monday Night Football assignment was in 2009. Starting on December 17, 2007, Greenberg also hosted the game show \"\"Duel\"\". The show lasted for 16 episodes. The first six episodes were part of a first season high-stakes tournament, while the remaining ten"} +{"qid": "test45", "pid": "14105138", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"National Football League on Canadian television\"\ngames and produces the CTV broadcasts in tandem with CBS and Fox. Aside from its brief experiment with soccer, the Global network has never had an in-house sports production division as do CBC and CTV/TSN. Network sports broadcasts are either simulcast with American networks or outsourced to independent producers such as Molstar. Global was the longtime broadcaster of National Football League football games in Canada, an association that ended in 2007 when CTV outbid Global for the NFL broadcast package. TSN airs ESPN original programming, including \"\"Sunday NFL Countdown\"\" and \"\"Monday Night Football\"\". In addition to \"\"Monday Night Football\"\", TSN"} +{"qid": "test45", "pid": "284607", "query": "what network is showing the monday night football game", "answer": "ESPN", "passage": "\"National Football League\"\ntelecasts, mostly in prime time, that are carried nationwide. NBC broadcasts the primetime \"\"Sunday Night Football\"\" package', which includes the Thursday NFL Kickoff game that starts the regular season and a primetime Thanksgiving Day game. ESPN carries all Monday Night Football games. The NFL's own network, NFL Network, broadcasts a series titled \"\"Thursday Night Football\"\", which was originally exclusive to the network, but which in recent years has had several games simulcast on CBS (since 2014) and NBC (since 2016) (except the Thanksgiving and kickoff games, which remain exclusive to NBC). For the 2017 season, the NFL Network will broadcast"} +{"qid": "test450", "pid": "14148291", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Cool Hand Luke (soundtrack)\"\nordinary score.\"\" The \"\"Cool Hand Luke\"\" score was nominated for an Academy Award. All songs by Lalo Schifrin unless otherwise noted. Cool Hand Luke (soundtrack) Cool Hand Luke is a soundtrack album for the Warner Bros. film of the same name, released in 1967 on the Dot label. The original music for \"\"Cool Hand Luke\"\" was composed by Lalo Schifrin, who reissued it in 2001 along with additional cues and new music on his own Aleph label. In part because its staccato melody resembles the sound of a telegraph, an edited version of the musical cue from \"\"Tar Sequence\"\" has"} +{"qid": "test450", "pid": "1406419", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Cool Hand Luke\"\nand even teenagers. The quotation was listed at number 11 on the American Film Institute's list of the 100 most memorable movie lines. An audio sample of the line is included in the Guns N' Roses songs \"\"Civil War\"\" and \"\"Madagascar.\"\" \"\"Cool Hand Luke\"\" opened on November 1, 1967 at Loew's State Theatre in New York City. The proceeds of the premiere went to charities. The film became a box-office success, grossing US$16,217,773 in domestic screenings. Kennedy won the Academy Award for Best Supporting Actor. Newman was nominated for the Academy Award for Best Actor, while Pearce and Pierson were"} +{"qid": "test450", "pid": "1406427", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Cool Hand Luke\"\nprison farm. He wears the trademark shades of Boss Godfrey throughout the episode. Nashville-based Christian alternative rock band Cool Hand Luke is named after the film. Cool Hand Luke Cool Hand Luke is a 1967 American prison drama film directed by Stuart Rosenberg, starring Paul Newman and featuring George Kennedy in an Oscar-winning performance. Newman stars in the title role as Luke, a prisoner in a Florida prison camp who refuses to submit to the system. The film, set in the early 1960s, is based on Donn Pearce's 1965 novel of the same name. Pearce sold the story to Warner"} +{"qid": "test450", "pid": "14148287", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Cool Hand Luke (soundtrack)\"\nCool Hand Luke (soundtrack) Cool Hand Luke is a soundtrack album for the Warner Bros. film of the same name, released in 1967 on the Dot label. The original music for \"\"Cool Hand Luke\"\" was composed by Lalo Schifrin, who reissued it in 2001 along with additional cues and new music on his own Aleph label. In part because its staccato melody resembles the sound of a telegraph, an edited version of the musical cue from \"\"Tar Sequence\"\" has been used for many years as the news music package on several television stations' news programs around the world, most notably"} +{"qid": "test450", "pid": "7020956", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"What we've got here is failure to communicate\"\nWhat we've got here is failure to communicate The phrase \"\"What we've got here is failure to communicate\"\" is a quotation from the 1967 film \"\"Cool Hand Luke\"\", spoken in the movie first by Strother Martin (as the Captain, a prison warden) and, later, paraphrased by Paul Newman (as Luke, a stubborn prisoner). The context of the first delivery of the line is: The Captain's line is often misquoted as \"\"What we \"\"have\"\" here is \"\"a\"\" failure to communicate\"\". This is actually a quote by Zero Mostel in the 1969 comedy movie The Great Bank Robbery. Towards the end of"} +{"qid": "test450", "pid": "7020958", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"What we've got here is failure to communicate\"\nAmerican Film Institute list, AFI's 100 Years... 100 Movie Quotes. What we've got here is failure to communicate The phrase \"\"What we've got here is failure to communicate\"\" is a quotation from the 1967 film \"\"Cool Hand Luke\"\", spoken in the movie first by Strother Martin (as the Captain, a prison warden) and, later, paraphrased by Paul Newman (as Luke, a stubborn prisoner). The context of the first delivery of the line is: The Captain's line is often misquoted as \"\"What we \"\"have\"\" here is \"\"a\"\" failure to communicate\"\". This is actually a quote by Zero Mostel in the 1969"} +{"qid": "test450", "pid": "1406388", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Cool Hand Luke\"\nCool Hand Luke Cool Hand Luke is a 1967 American prison drama film directed by Stuart Rosenberg, starring Paul Newman and featuring George Kennedy in an Oscar-winning performance. Newman stars in the title role as Luke, a prisoner in a Florida prison camp who refuses to submit to the system. The film, set in the early 1960s, is based on Donn Pearce's 1965 novel of the same name. Pearce sold the story to Warner Bros., who then hired him to write the script. Due to Pearce's lack of film experience, the studio added Frank Pierson to rework the screenplay. Newman's"} +{"qid": "test450", "pid": "14305278", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Ain't No Grave\"\nthe song, including Johnny Cash on the posthumous album \"\"\"\". In 1967 the song was featured in the film \"\"Cool Hand Luke\"\" while Luke (Paul Newman) is digging a grave, performed by Harry Dean Stanton. In 1989 Russ Taff covered this song on the album \"\"The Way Home\"\" and also as an extended version on the 1991 album Under Their Influence. In 1997 it was featured in the film, \"\"The Apostle\"\", performed by the movie's star Robert Duvall. In 2006 Crooked Still recorded the song on the album \"\"Shaken by a Low Sound\"\". In 2015 Tom Jones recorded the song"} +{"qid": "test450", "pid": "1406407", "query": "when was the movie cool hand luke made", "answer": "1967", "passage": "\"Cool Hand Luke\"\nthe unit production manager. Newman's biographer Marie Edelman Borden states that the \"\"tough, honest\"\" script drew together threads from earlier movies, especially \"\"Hombre\"\", Newman's earlier film of 1967. Director Stuart Rosenberg altered the original ending in the script, adding \"\"an upbeat ending that would reprise the protagonist's (and Paul Newman's) trademark smile.\"\" Paul Newman's character, Luke, is a decorated war veteran who is sentenced to serve two years in a Florida rural prison. He constantly defies the authorities of the facility, becoming a leader among the prisoners, as well as escaping multiple times. While the script was being developed, the"} +{"qid": "test451", "pid": "349398", "query": "who says that which we call a rose", "answer": "Juliet", "passage": "\"Romeo and Juliet\"\nreplaced by someone who will reciprocate. Shakespeare's procreation sonnets describe another young man who, like Romeo, is having trouble creating offspring and who may be seen as being a homosexual. Goldberg believes that Shakespeare may have used Rosaline as a way to express homosexual problems of procreation in an acceptable way. In this view, when Juliet says \"\"...that which we call a rose, by any other name would smell as sweet\"\", she may be raising the question of whether there is any difference between the beauty of a man and the beauty of a woman. The balcony scene was introduced"} +{"qid": "test451", "pid": "10189369", "query": "who says that which we call a rose", "answer": "Juliet", "passage": "Rosaline\nline ties the young man to both Rosaline and Romeo in Juliet's \"\"What's in a name?\"\" soliloquy. When Juliet says \"\"...that which we call a rose / By any other name would smell as sweet\"\", she may be raising the question of whether there is any difference between the beauty of a man and the beauty of a woman. Rosaline is used as a name for only one other Shakespearean character—the one of the main female figures in \"\"Love's Labours Lost\"\" (1598), although Rosalin\"\"d\"\" is the name of the main female character in \"\"As You Like It\"\". Scholars have found"} +{"qid": "test452", "pid": "784087", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Semiconservative replication\"\n37 °C, the rate of strand elongation was 749 nucleotides per second. The mutation rate per base pair per round of replication during phage T4 DNA synthesis is . Thus semiconservative DNA replication is both rapid and accurate. Semiconservative replication Semiconservative replication describes the mechanism by which DNA is replicated in all known cells. It derives its name from the fact that this mechanism of transcription was one of three models originally proposed for DNA replication: The deciphering of the structure of DNA by Watson and Crick in 1953 suggested that each strand of the double helix would serve as"} +{"qid": "test452", "pid": "146656", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Francis Crick\"\nto a published article that included Sven Furberg's DNA model that had the bases on the inside. Thus, the Watson and Crick model was not the first \"\"bases in\"\" model to be proposed. Furberg's results had also provided the correct orientation of the DNA sugars with respect to the bases. During their model building, Crick and Watson learned that an antiparallel orientation of the two nucleotide chain backbones worked best to orient the base pairs in the centre of a double helix. Crick's access to Franklin's progress report of late 1952 is what made Crick confident that DNA was a"} +{"qid": "test452", "pid": "5332552", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Triple-stranded DNA\"\nwas a common hypothesis in the 1950s when scientists were struggling to discover DNA's true structural form. Watson and Crick (who later won the Nobel Prize for their double-helix model) originally considered a triple-helix model, as did Pauling and Corey, who published a proposal for their triple-helix model in 1953, as well as fellow scientist Fraser. However, Watson and Crick soon identified several problems with these models: Fraser's model differed from Pauling and Corey's in that in his model the phosphates are on the outside and the bases are on the inside, linked together by hydrogen bonds. However, Watson and"} +{"qid": "test452", "pid": "97619", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "DNA\nthe same issue of \"\"Nature\"\". Of these, Franklin and Gosling's paper was the first publication of their own X-ray diffraction data and original analysis method that partly supported the Watson and Crick model; this issue also contained an article on DNA structure by Maurice Wilkins and two of his colleagues, whose analysis and \"\"in vivo\"\" B-DNA X-ray patterns also supported the presence \"\"in vivo\"\" of the double-helical DNA configurations as proposed by Crick and Watson for their double-helix molecular model of DNA in the prior two pages of \"\"Nature\"\". In 1962, after Franklin's death, Watson, Crick, and Wilkins jointly received"} +{"qid": "test452", "pid": "16395105", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Non-helical models of DNA structure\"\nthe top of this article, or there could be an equal number of right-handed and left-handed twists, as in the Rodley structure below. The abbreviation \"\"TN\"\", to be used to refer to any DNA structure whose strands are topologically non-linked, has been proposed. The double-helix model of DNA structure was first published in the journal \"\"Nature\"\" by James D. Watson and Francis Crick in 1953 with further details in 1954.) Their work was based upon the crucial X-ray diffraction image of DNA - labeled as \"\"Photo 51\"\" - from Rosalind Franklin in 1952, followed by her more highly clarified DNA"} +{"qid": "test452", "pid": "7617413", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Steven A. Benner\"\nuses synthetic iso-C/iso-G DNA which uses the synthetic DNA codon [iso-C/A/G] which he calls the 65th codon. Synthetic mRNA with synthetic anti-codon [iso-G/U/C] with synthetic aminoacyl-tRNA synthetase results in an \"\"in vivo\"\" experiment that can code for a synthetic amino acid incorporated into synthetic polypeptides (synthetic proteomics). Benner has used synthetic organic chemistry and biophysics to create a \"\"second generation\"\" model for nucleic acid structure. The first generation model of DNA was proposed by James Watson and Francis Crick, based on crystallized X-ray structures being studied by Rosalind Franklin. According to the double-helix model, DNA is composed of two complementary"} +{"qid": "test452", "pid": "6011271", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Molecular Structure of Nucleic Acids: A Structure for Deoxyribose Nucleic Acid\"\ndirections. Crick was thus in a unique position to make this interpretation because he had formerly worked on the X-ray diffraction data for other large molecules that had helical symmetry similar to that of DNA. Franklin, on the other hand, rejected the first molecular model building approach proposed by Crick and Watson: the first DNA model, which in 1952 Watson presented to her and to Wilkins in London, had an obviously incorrect structure with hydrated charged groups on the inside of the model, rather than on the outside. Watson explicitly admitted this in his book \"\"The Double Helix\"\". Molecular Structure"} +{"qid": "test452", "pid": "7769301", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Molecular model\"\napproximate scale was 5 cm per ångström (0.5 m/nm or 500,000,000:1), but was not consistent over all elements. Arnold Beevers in Edinburgh created small models using PMMA balls and stainless steel rods. By using individually drilled balls with precise bond angles and bond lengths in these models, large crystal structures to be accurately created, but with light and rigid form. Figure 4 shows a unit cell of ruby in this style. Crick and Watson's DNA model and the protein-building kits of Kendrew were among the first skeletal models. These were based on atomic components where the valences were represented by"} +{"qid": "test452", "pid": "479593", "query": "who proposed the first accurate model of dna", "answer": "Watson", "passage": "\"Linus Pauling\"\nthe concept of orbital hybridisation and the first accurate scale of electronegativities of the elements. Pauling also worked on the structures of biological molecules, and showed the importance of the alpha helix and beta sheet in protein secondary structure. Pauling's approach combined methods and results from X-ray crystallography, molecular model building and quantum chemistry. His discoveries inspired the work of James Watson, Francis Crick, and Rosalind Franklin on the structure of DNA, which in turn made it possible for geneticists to crack the DNA code of all organisms. In his later years he promoted nuclear disarmament, as well as orthomolecular"} +{"qid": "test453", "pid": "4705472", "query": "where is the hero golf challenge being played", "answer": "Albany development in the Bahamas", "passage": "\"Hero World Challenge\"\n2013. In 2014, Hero MotoCorp became the title sponsor. In 2015, the event moved to the Albany development in the Bahamas. The first World Challenge was televised by the USA Network and NBC Sports. It was then covered by USA and ABC Sports from 2000–2006. It has been televised by Golf Channel and a returning NBC since 2007. Hero World Challenge The Hero World Challenge is a golf tournament hosted by Tiger Woods, which takes place each December. It features a small number (currently 18) of top-ranked golf pros. The tournament is a benefit for the Tiger Woods Foundation. Initially,"} +{"qid": "test457", "pid": "17135499", "query": "who is the cast of despicable me 3", "answer": "Steve Carell", "passage": "\"Despicable Me 3\"\nhis show cancelled following puberty. Steve Carell, Miranda Cosgrove and Dana Gaier reprise their roles of Felonious Gru, Margo and Edith from the first two films and Julie Andrews returns as Marlena Gru, Gru's mother from \"\"Despicable Me\"\" (2010). Kristen Wiig and Steve Coogan return from \"\"Despicable Me 2\"\", while Trey Parker (co-creator of Comedy Central's \"\"South Park\"\"), Jenny Slate and Nev Scharrel (replacing Elsie Fisher) join the cast. \"\"Despicable Me 3\"\" premiered on June 14, 2017, at the Annecy International Animated Film Festival, and had a theatrical release in the United States on June 30, 2017, by Universal Pictures"} +{"qid": "test457", "pid": "17135508", "query": "who is the cast of despicable me 3", "answer": "Trey Parker", "passage": "\"Despicable Me 3\"\nemblem replaced with a \"\"D\"\" graffiti. Gru and Lucy decide to give them a five-minute head-start before engaging pursuit. Steve Burke, the NBCUniversal CEO, confirmed in September 2013 that a third film in the \"\"Despicable Me\"\" series was in development. Cinco Paul and Ken Daurio, the writers of the first two films, announced that they would return to write the screenplay for the film. On April 13, 2016, Trey Parker, co-creator of \"\"South Park\"\", was cast as the main antagonist for the film, Balthazar Bratt. The soundtrack for \"\"Despicable Me 3\"\" was released on June 23, 2017. Pharrell Williams released"} +{"qid": "test457", "pid": "16840688", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Despicable Me (franchise)\"\nwho recruits Gru to take down a new villain. New cast members include Benjamin Bratt as Eduardo; Bratt replaced the previously cast Al Pacino. Steve Coogan voices Silas Ramsbottom, lead director of the Anti-Villain League (AVL). The sequel was met with generally positive reviews and grossed more than its predecessor with over $970 million worldwide. A third film, \"\"Despicable Me 3\"\", was released on June 30, 2017. The film was directed by Pierre Coffin and Kyle Balda, and co-directed by Eric Guillon. Cinco Paul and Ken Daurio, the writers of the first two films, returned to write the screenplay for"} +{"qid": "test457", "pid": "17135498", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Despicable Me 3\"\nDespicable Me 3 Despicable Me 3 is a 2017 American 3D computer-animated comedy film produced by Illumination for Universal Pictures. It is the third installment in the \"\"Despicable Me\"\" film series and the sequel to \"\"Despicable Me 2\"\" (2013). The film is directed by Pierre Coffin and Kyle Balda, co-directed by Eric Guillon and written by Cinco Paul and Ken Daurio. In the film, Gru teams up with his long-lost twin brother Dru in order to defeat a new enemy named Balthazar Bratt, a former child actor, obsessed with the 1980s, who grows up to become a villain after having"} +{"qid": "test457", "pid": "17135517", "query": "who is the cast of despicable me 3", "answer": "Trey Parker", "passage": "\"Despicable Me 3\"\nof these flaws will matter to the throngs of little kids who have made the previous \"\"Despicable Me\"\" movies (and the superior \"\"Minions\"\" spin-off) into giant global hits.\"\" Sandy Schaefer for Screen Rant gives the film a 3 out of 5 stars saying \"\"\"\"Despicable Me 3\"\" offers enough in the way of zany, irreverent entertainment (with a dose of heart) to please steadfast fans of the franchise.\"\" Jordan Mintzer for The Hollywood Reporter gave the film a positive review saying \"\"This rather clever, breakneck-paced cartoon gives fans exactly what they want: Like the new nemesis voiced by Trey Parker, it"} +{"qid": "test457", "pid": "16840701", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Despicable Me (franchise)\"\nand Pierre Coffin as the Minions. A similar attraction (featuring a Japanese voice cast) opened on April 21, 2017 at Universal Studios Japan. The film series has grossed a total of more than $3.7 billion, with an average of over $927 million per film, making the \"\"Despicable Me\"\" franchise the highest-grossing animated film franchise, and the 13th highest-grossing film franchise of all time. Despicable Me (franchise) Despicable Me is an animated comedy film franchise produced by Illumination and distributed by Universal Pictures. It consists of four feature films (including a spin-off), eleven short films and additional merchandise. It centers on"} +{"qid": "test457", "pid": "13583700", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Despicable Me\"\nJeong returned but voiced new characters (Lucy Wilde and Floyd Eagle-san). New cast members include Benjamin Bratt as Eduardo, Gru's nemesis, and Steve Coogan as Silas Ramsbottom. Another sequel, titled \"\"Despicable Me 3\"\", was released on June 30, 2017. A prequel feature film titled \"\"Minions\"\", featuring the Minions as the main characters, was released on July 10, 2015. Written by Brian Lynch, it was directed by Pierre Coffin and Kyle Balda, and produced by Chris Meledandri and Janet Healy. The film, set in the 1960s, focuses on the Minions before they met Gru, where they compete for the right to"} +{"qid": "test457", "pid": "15155399", "query": "who is the cast of despicable me 3", "answer": "Steve Coogan", "passage": "\"Despicable Me 2\"\nHost, voices Floyd Eagle-san. New cast members include Benjamin Bratt as Eduardo \"\"El Macho\"\" Pérez and Steve Coogan as Silas Ramsbottom, head of the fictional Anti-Villain League (AVL). \"\"Despicable Me 2\"\" premiered on June 5, 2013 in Australia and had a wide theatrical release in the United States on July 3, 2013. It received generally positive reviews from critics and grossed over $970 million worldwide against a budget of $76 million. It was nominated for Academy Award for Best Animated Feature and for Academy Award for Best Original Song (for \"\"Happy\"\"), losing both to Walt Disney Animation Studios' \"\"Frozen\"\". It"} +{"qid": "test457", "pid": "13700845", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Illumination (animation company)\"\nstudio look at each other's projects on a regular basis and give each other very candid \"\"notes\"\" (the industry term for constructive criticism). Instead for its creative team, Illumination often uses the same core of creators. \"\"Despicable Me\"\" and \"\"Despicable Me 2\"\" were directed by Pierre Coffin and Chris Renaud; Coffin went on to direct \"\"Minions\"\" and \"\"Despicable Me 3\"\" respectively, while Renaud directed \"\"The Lorax\"\" and \"\"The Secret Life of Pets\"\", respectively. Screenwriters Cinco Paul and Ken Daurio wrote Illumination's first four films (\"\"Despicable Me\"\", \"\"Hop\"\", \"\"The Lorax\"\", \"\"Despicable Me 2\"\") as well as \"\"The Secret Life of Pets\"\""} +{"qid": "test457", "pid": "14925237", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Pierre Coffin\"\nstarted as a freelance animator in the French CGI studio Ex Machina where he worked as an animator and eventually animation supervisor. Pierre Coffin's directorial career began with a short named Pings in 1997. He then started to collaborate by doing commercials with Passion Pictures Paris and Mac Guff. He created the characters \"\"Pat & Stan\"\" for a TF1 TV series. In 2010 he completed, with Chris Renaud, the feature CGI animated movie \"\"Despicable Me\"\" for Universal. Coffin directed \"\"Despicable Me\"\" (2010) and \"\"Despicable Me 2\"\" (2013), with Renaud, \"\"Despicable Me 3\"\" (2017) and the \"\"Despicable Me\"\" spin-off, \"\"Minions\"\" (2015)"} +{"qid": "test457", "pid": "17692639", "query": "who is the cast of despicable me 3", "answer": "Steve Carell", "passage": "\"Happy (Pharrell Williams song)\"\nincluding all 360 four-minute segments. Williams himself appears 24 times in the day-long video, once at the start of each hour. There are a number of celebrity cameos in the video, including Whit Hertford, Kelly Osbourne, Rob Zabrecky, Magic Johnson, Urijah Faber, Sérgio Mendes, Jimmy Kimmel, Odd Future, Steve Carell (who plays Gru in \"\"Despicable Me 2\"\"), Jamie Foxx, Ana Ortiz, Miranda Cosgrove (who plays Margo in \"\"Despicable Me 2\"\"), Kazuchika Okada, Gavin DeGraw and JoJo. The minions from \"\"Despicable Me 2\"\" make several appearances throughout the film, including one scene at 3:00 am, in which Pharrell Williams and the"} +{"qid": "test457", "pid": "16840687", "query": "who is the cast of despicable me 3", "answer": "Steve Carell", "passage": "\"Despicable Me (franchise)\"\nrival, to shrink and steal the Earth's moon. \"\"Despicable Me\"\" received positive reviews, and grossed over $543 million worldwide, against a budget of $69 million, launching a new franchise. A sequel, \"\"Despicable Me 2\"\", released on July 3, 2013, was once again directed by Pierre Coffin and Chris Renaud, and written by Cinco Paul and Ken Daurio. Steve Carell, Russell Brand, Miranda Cosgrove, Dana Gaier, and Elsie Fisher reprise their roles as Felonious Gru, Dr. Nefario, Margo, Edith and Agnes respectively. Kristen Wiig, who voiced Miss Hattie in the first film, voices Lucy Wilde, an agent of the Anti-Villain League"} +{"qid": "test457", "pid": "15155438", "query": "who is the cast of despicable me 3", "answer": "Steve Carell", "passage": "\"Despicable Me 2\"\nJulie Andrews and Steve Coogan reprised their roles from previous films as Gru, Lucy Wilde, Margo, Edith, Marlena Gru, and Silas Ramsbottom, respectively. New cast members include Trey Parker as former child star-turned-supervillain Balthazar Bratt, Jenny Slate as AVL member Valerie Da Vinci, and Nev Scharrel as the new voice of Agnes. Steve Carell and Steve Coogan also voiced new characters: Gru's long-lost twin brother Dru, and his courteous butler, Fritz. Pierre Coffin and Chris Renaud reprised their roles as the Minions, respectively. Despicable Me 2 Despicable Me 2 is a 2013 American 3D computer-animated comedy film and the sequel"} +{"qid": "test457", "pid": "17135516", "query": "who is the cast of despicable me 3", "answer": "Pierre Coffin", "passage": "\"Despicable Me 3\"\nfranchise.\"\" Peter Debruge of \"\"Variety\"\" wrote, \"\"\"\"Despicable Me 3\"\" is unwieldy, but it mostly works, as co-directors Pierre Coffin (who also voices the Minions) and Kyle Balda never lose sight of the film's emotional center, packing the rest with as much humor as they can manage. The jokes come so fast and furious, the movie can hardly find room for Heitor Pereira's funky score, and though Pharrell Williams has contributed five new songs to sell soundtracks (including the sweet \"\"There's Something Special\"\"), the movie hardly needs them.\"\" Alonso Duralde of \"\"TheWrap\"\" gave the film a mixed review, saying: \"\"Ultimately, none"} +{"qid": "test457", "pid": "15155398", "query": "who is the cast of despicable me 3", "answer": "Steve Carell", "passage": "\"Despicable Me 2\"\nDespicable Me 2 Despicable Me 2 is a 2013 American 3D computer-animated comedy film and the sequel to the 2010 animated film \"\"Despicable Me\"\". Produced by Illumination Entertainment for Universal Pictures and animated by Illumination Mac Guff, the film was directed by Pierre Coffin and Chris Renaud, and written by Cinco Paul and Ken Daurio. Steve Carell, Russell Brand, Miranda Cosgrove, Elsie Fisher, and Dana Gaier reprise their roles as Gru, Dr. Nefario, Margo, Agnes, and Edith respectively. Kristen Wiig, who played Miss Hattie in the first film, voices agent Lucy Wilde, while Ken Jeong, who played the Talk Show"} +{"qid": "test457", "pid": "4336906", "query": "who is the cast of despicable me 3", "answer": "Steve Carell", "passage": "\"Steve Carell\"\nstarred with Tina Fey in \"\"Date Night\"\" during late 2008 and was released on April 9, 2010 in the U.S. He voiced Gru, the main character in the Universal CGI film \"\"Despicable Me\"\" along with Russell Brand, Miranda Cosgrove, and Kristen Wiig. He reprised the role in the 2013 sequel \"\"Despicable Me 2\"\" and in the third installment of the film franchise \"\"Despicable Me 3\"\" in 2017. He has several other projects in the works, including a remake of the 1967 Peter Sellers film \"\"The Bobo\"\". He is doing voice-over work in commercials for Wrigley's Extra gum. Carell has launched"} +{"qid": "test459", "pid": "19415161", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Joint Session of Indian Parliament\"\nJoint Session of Indian Parliament The Parliament of India is bicameral. Concurrence of both houses are required to pass any bill. However, the makers of the Constitution of India visualised situations of deadlock between the upper house i.e. Rajya Sabha and the lower house i.e. Lok Sabha. Therefore, the Constitution of India provides for Joint sittings of both the Houses to break this deadlock. The joint sitting of the Parliament is called by the President (Article 108) and is presided over by the Speaker or, in his absence, by the Deputy Speaker of the Lok Sabha or in his absence,"} +{"qid": "test459", "pid": "4468283", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Italian Parliament\"\nplace in the building of the Chamber of Deputies at Palazzo Montecitorio and are presided over by the President of the Chamber of Deputies \"\"ex officio\"\". In this way, the drafters of the Constitution intended to establish an equilibrium with the power of the President of the Senate to exercise the functions of the President of the Republic when the latter is indisposed. Joint sessions take place for the following matters explicitly established by the Constitution: There is debate among legal scholars about whether the Parliament in joint session can make its own standing orders. Most scholars think it can,"} +{"qid": "test459", "pid": "19415166", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Joint Session of Indian Parliament\"\nIN JOINT SESSION: 1. Dowry Prohibition Bill , 1961 2. Banking Service Commission ( Repeal) Bill , 1978 3. Prevention of Terrorism Bill, 2002 Joint Session of Indian Parliament The Parliament of India is bicameral. Concurrence of both houses are required to pass any bill. However, the makers of the Constitution of India visualised situations of deadlock between the upper house i.e. Rajya Sabha and the lower house i.e. Lok Sabha. Therefore, the Constitution of India provides for Joint sittings of both the Houses to break this deadlock. The joint sitting of the Parliament is called by the President (Article"} +{"qid": "test459", "pid": "1774451", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Rajya Sabha\"\nsittings of the Houses of Parliament of India are rare, and in the history of the Republic, only three such joint-sessions have been held; the latest one for the passage of the 2002 Prevention of Terrorism Act. The Vice President of India (currently, Venkaiah Naidu) is the \"\"ex-officio\"\" Chairman of the Rajya Sabha, who presides over its sessions. The Deputy Chairman, who is elected from amongst the house's members, takes care of the day-to-day matters of the house in the absence of the Chairman. The Rajya Sabha held its first sitting on 13 May 1952. The salary and other benefits"} +{"qid": "test459", "pid": "8057271", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Joint session\"\nParliament, the first to do so was French President Albert Lebrun in March 1939. The speech from the throne upon the State Opening of Parliament is made before a joint sitting of both Houses. This occurs in the House of Lords, the upper chamber, due to the constitutional convention that the monarch never enters the House of Commons. The closing of each of parliamentary session is also marked by a speech to both Houses. The State of the Union Address of the president of the United States is traditionally made before a \"\"joint session\"\" of the United States Congress. Many"} +{"qid": "test459", "pid": "1947694", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"President of Romania\"\nby the Prime Minister in order to take effect. An incumbent President who severely violates the Constitution may be suspended by the Parliament in joint session. If the suspension motion passes, there is a call for a referendum of impeachment within no more than 30 days from the suspension. If the Senate and Chamber of Deputies, in joint session, accuse the President of high treason, the President is suspended from powers and duties by right. The accusations are judged by the High Court of Cassation and Justice. The incumbent President is dismissed by right if found guilty of high treason."} +{"qid": "test459", "pid": "1774457", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Rajya Sabha\"\ninfluence in a joint sitting of Parliament. A joint session is chaired by the Speaker of Lok Sabha. Also, because the joint session is convened by the President on advice of the government, which already has a majority in Lok Sabha, the joint session is usually convened to get bills passed through a Rajya Sabha in which the government has a minority. Joint sessions of Parliament are a rarity, and have been convened three times in last 71 years, for the purpose of passage of a specific legislative act, the latest time being in 2002: Unlike the Lok Sabha, a"} +{"qid": "test459", "pid": "4466393", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Constitution of Italy\"\nPresident of the Council of ministers. The President is not responsible for the actions performed in the exercise of his duties, except for high treason and violation of the Constitution, for which the President can be impeached by the Parliament in joint session, with an absolute majority of its members. Before taking office, the President must take an oath of allegiance to the Republic and pledge to uphold the Constitution before the Parliament in joint session. The Government of the Republic is composed of the President of the Council of ministers and the other Ministers. The President of the Republic"} +{"qid": "test459", "pid": "4466390", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Constitution of Italy\"\nwhile after the third ballot an absolute majority is sufficient. Thirty days before the end of the term of the current President of the Republic, the President of the Chamber of Deputies must summon a joint session of Parliament and the regional delegates to elect the new President of the Republic. During or in the three months preceding the dissolution of Parliament, the election must be held within the first fifteen days of the first sitting of a new Parliament. In the mean time, the powers of the incumbent President of the Republic are extended. Any citizen over fifty enjoying"} +{"qid": "test459", "pid": "642891", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Palace of Versailles\"\nNapoleon Bonaparte gave an address before the French Second Republic. Following the November 2015 Paris attacks, President François Hollande gave a speech before a rare joint session of parliament at the Palace of Versailles. This was the third time since 1848 that a French president addressed a joint session of the French Parliament at Versailles. The president of the National Assembly has an official apartment at the Palace of Versailles. One of the most baffling aspects to the study of Versailles is the cost – how much Louis XIV and his successors spent on Versailles. Owing to the nature of"} +{"qid": "test459", "pid": "7436948", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Haitian Parliament\"\nd'état and the overthrow of the government in February 2004, the Chamber of Deputies remained empty. It was re-established along with the Senate, and elections were held on 21 April 2006. The next Chamber elections are scheduled for 2010. The National Assembly () is a joint session of Parliament. The National Assembly is convened for specific purposes laid out in the Constitution. Meetings of the National Assembly are presided over by the President of the Senate, with the President of the Chamber of Deputies assisting. The Secretaries of the Senate and the Chamber of Deputies also serve as Secretaries of"} +{"qid": "test459", "pid": "565020", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Speaker of the United States House of Representatives\"\nconsider it. As a member of the House, the Speaker is entitled to participate in debate and to vote. Ordinarily, the Speaker votes only when the Speaker's vote would be decisive or on matters of great importance, such as constitutional amendments or major legislation. Because joint sessions and joint meetings of Congress are held in the House chamber, the Speaker presides over joint sessions to hear addresses by the President, and joint meetings to hear addresses from foreign leaders or other invited guests. However, the Twelfth Amendment and require that the President of the Senate preside over joint sessions of"} +{"qid": "test459", "pid": "19942256", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"High Council of the Judiciary (Italy)\"\nmembers (the \"\"togate members\"\") must belong to the judiciary and are elected by all the ordinary magistrates. One third of the elected members (the \"\"lay members\"\") are chosen by a joint session of the Italian Parliament and must be university professors dealing with law or lawyers who have worked in the procession for at least fourteen years. These lay members are to ensure that the autonomous and independent judiciary nevertheless remains subject to the interests of the state and does not become a privileged caste. It is for the same reason that the President of Italy presides over the Council,"} +{"qid": "test459", "pid": "4075289", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Chamber of Deputies (Italy)\"\nspeaker are assumed by the vice president of Chamber of Deputies of the previous legislature who was elected first. If two were elected simultaneously, the oldest deputy serves as president of Chamber of Deputies. The President of Chamber of Deputies has also the role of President during the Parliament joint sessions, when the upper and lower houses have to vote together. This a list of Presidents of the Italian Chamber of Deputies: Chamber of Deputies (Italy) The Chamber of Deputies () is a house of the bicameral Parliament of Italy (the other being the Senate of the Republic). The two"} +{"qid": "test459", "pid": "6017873", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Joint session of the United States Congress\"\na ceremonial or formal occasion and does not perform any legislative function; and no resolution is proposed or vote taken. Joint sessions and meetings are usually held in the Chamber of the House of Representatives, and are traditionally presided over by the Speaker of the House. However, the Constitution requires the Vice President (as President of the Senate) to preside over the counting of electoral votes. The Twelfth Amendment mandates that the Congress assemble in joint session to count the electoral votes and declare the winners of the election. The session is ordinarily required to take place on January 6"} +{"qid": "test459", "pid": "3491375", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Parliament of Pakistan\"\nfor next five years on 6 September 2008. He addressed the Joint Session of the Parliament on 20 September 2008. President Asif Ali Zardari during his address to the Joint Session of the Parliament on 28 March 2009 asked the Speaker National Assembly to form a committee of both houses for the purpose of proposing amendments in the Constitution in the light of Charter of Democracy (COD). After consultation with the leadership of all political parties in the Parliament, Speaker National Assembly announced the Constitutional Reforms Committee (CRC) on 29 April 2009. After the marathon consultation in 77 meetings, CRC"} +{"qid": "test459", "pid": "4466402", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Constitution of Italy\"\nmilitary tribunals in times of war is established by law. In times of peace they have jurisdiction only for military crimes committed by members of the Armed Forces. The High Council of the Judiciary is presided over by the President of the Republic, two-thirds of its members are elected by all the ordinary judges belonging to the various categories, and one third are elected by Parliament in joint session from among university professors of law and lawyers with fifteen years of practice. Its vice-president is elected by the Council from among those members designated by Parliament. The members of the"} +{"qid": "test459", "pid": "8187270", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Federal Assembly (Austria)\"\nFederal Assembly (Austria) The Federal Assembly () is the name given to a formal joint session of the two houses of the bicameral Austrian Parliament, the National Council and the Federal Council. It is chaired by the presidents of the two parliamentary chambers taking turns presiding over its sessions. According to the Federal Constitutional Law, the Federal Assembly does not function as a legislative body; the two chambers enact legislation, and even amend the constitution, as strictly separate entities. Since 1945, the assembly has only met to swear the elected President of Austria into office. While during the pre-war First"} +{"qid": "test459", "pid": "8057268", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Joint session\"\nthe President of Germany. It includes members from the Bundestag and representatives of the States of Germany. In India, if an ordinary bill has been rejected by any house of the parliament and if more than six months have elapsed, the President may summon a joint session for purpose of passing the bill. The bill is passed by a simple majority of a joint sitting. Since the lower house (Lok Sabha) has more than twice the members of the upper house (Rajya Sabha), a group commanding a majority in the lower house of the Government of India can pass such"} +{"qid": "test459", "pid": "7643062", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Nevada Assembly\"\nno screens or voting equipment in the old chamber, all business is hand-written on a chalk board, as it would have been done when the Assembly still met in the Capitol. All joint-meetings and joint-sessions are held in the Assembly chamber, including the State of the State Address, the State of the Judiciary Address, and addresses from Nevada's federal delegation. Unlike in Congress, where the Speaker of the House presides over all joint-meetings and sessions (except when Congress counts the Electoral Votes after a Presidential election), the President of the Senate presides over joint-meetings and sessions instead of the Speaker"} +{"qid": "test459", "pid": "12935668", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Barack Obama speech to joint session of Congress, February 2009\"\nBarack Obama speech to joint session of Congress, February 2009 The 44th President of the United States, Barack Obama, gave his first public address before a joint session of the United States Congress on Tuesday, February 24, 2009. Similar to a State of the Union address, it was delivered before the 111th United States Congress in the Chamber of the United States House of Representatives in the United States Capitol. Presiding over this joint session was the House Speaker, Nancy Pelosi. Accompanying the Speaker of the House was the President of the United States Senate, Joe Biden, the Vice President"} +{"qid": "test459", "pid": "19968003", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"February 2017 Donald Trump speech to joint session of Congress\"\nFebruary 2017 Donald Trump speech to joint session of Congress The 45th President of the United States, Donald Trump, gave his first public address before a joint session of the United States Congress on Tuesday, February 28, 2017. Similar to a State of the Union address, it was delivered before the 115th United States Congress in the Chamber of the United States House of Representatives in the United States Capitol. Presiding over this joint session was the House Speaker, Paul Ryan. Accompanying the Speaker of the House was the President of the United States Senate, Mike Pence, the Vice President"} +{"qid": "test459", "pid": "20439358", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"2017 Zimbabwean coup d'état\"\nreplacing him with Mnangagwa, and issued a deadline of 20 November for Mugabe to resign the presidency or face impeachment. Mugabe did not resign, so on 21 November a joint session of Parliament and Senate met for his impeachment. After the session convened, Mugabe sent a letter to Zimbabwe's Parliament resigning the presidency. Second Vice-President Phelekezela Mphoko became the Acting President. Mnangagwa was sworn in as President on 24 November 2017. In the first week of October 2017, tensions between Vice-President Emmerson Mnangagwa and Grace Mugabe, two leading figures to replace the 93-year-old Robert Mugabe as President of Zimbabwe, were"} +{"qid": "test459", "pid": "11763808", "query": "who presides over the joint sessions of parliament", "answer": "President", "passage": "\"Raza Rabbani\"\nof the Beginning of the Rights of Balochistan where he worked on presenting a package to redress the problems of the Balochistan Province to the joint sessions of the Parliament. Despite his recommendations, none of the provisions in the packages would be carried out by Prime Minister Yousaf Raza Gillani who would later entangle with the Supreme Court over the missing persons scandal. In 2003, Rabbani demonstrated his opposition against the Iraq war in 2003, over the issue of its nuclear program. About the atomic proliferation issues, Rabbani criticised the President Pervez Musharraf in the news channels and publicly supported"} +{"qid": "test46", "pid": "2520233", "query": "what is the form of mozart symphony no 40", "answer": "G minor", "passage": "\"Symphony No. 40 (Mozart)\"\nSymphony No. 40 (Mozart) Symphony No. 40 in G minor, KV. 550 was written by Wolfgang Amadeus Mozart in 1788. It is sometimes referred to as the \"\"Great G minor symphony\"\", to distinguish it from the \"\"Little G minor symphony\"\", No. 25. The two are the only extant minor key symphonies Mozart wrote. The date of completion of this symphony is known exactly, since Mozart in his mature years kept a full catalog of his completed works; he entered the 40th Symphony into it on 25 July 1788. Work on the symphony occupied an exceptionally productive period of just a"} +{"qid": "test46", "pid": "2520245", "query": "what is the form of mozart symphony no 40", "answer": "G minor", "passage": "\"Symphony No. 40 (Mozart)\"\nknown recording of the 40th Symphony is by the Victor Recording Company and issued in 1915 under the title \"\"Symphony in G Minor\"\". The Victor Concert Orchestra performed under the direction of conductor Walter B. Rogers. The following files contain a digital recording of a performance of the 40th Symphony by the Fulda Symphonic Orchestra. The performance took place on March 18, 2001 in the Orangerie in Fulda, Germany. Versions of the score: Symphony No. 40 (Mozart) Symphony No. 40 in G minor, KV. 550 was written by Wolfgang Amadeus Mozart in 1788. It is sometimes referred to as the"} +{"qid": "test46", "pid": "3027565", "query": "what is the form of mozart symphony no 40", "answer": "G minor", "passage": "\"Symphony No. 25 (Mozart)\"\nNo. 40; see also Mozart and G minor.) \\relative c { The symphony is laid out in standard classical form: This symphony is scored for two oboes, two bassoons, four horns and strings. With its wide-leap melodic lines and syncopation, this symphony is characteristic of the \"\"\"\" style. It shares certain features with other \"\"Sturm and Drang\"\" symphonies of this time, and is likely inspired by Joseph Haydn's Symphony No. 39, also in G minor. The work was first performed in the United States by the Boston Symphony Orchestra on October 27, 1899, under the direction of Wilhelm Gericke."} +{"qid": "test46", "pid": "19491600", "query": "what is the form of mozart symphony no 40", "answer": "G minor", "passage": "\"Headbangers Symphony\"\nfor two cellos in G minor\"\" have a significantly metal style. The fifth track, \"\"Adagio\"\", is an adaptation of the famous Albinoni's Adagio in G minor composition, which Wolf expanded and made sound slightly different, however he was still loyal to the main theme of this piece. \"\"Symphony No. 40\"\", the sixth track of the album is what Wolf called a \"\"huge challenge\"\". He played Mozart's Symphony No. 40 melody on guitar and mixed it with some heavy metal riffs. The next track, titled \"\"Swan Lake\"\", is an adaptation of Tchaikovsky's ballet Swan Lake, which sounds different to what other"} +{"qid": "test46", "pid": "16147974", "query": "what is the form of mozart symphony no 40", "answer": "G minor", "passage": "\"Symphony, K. 16a (Mozart)\"\nSymphony, K. 16a (Mozart) The Symphony in A minor \"\"Odense\"\", K. Anh. 220/16a, was formerly attributed to Wolfgang Amadeus Mozart. It is one of only three symphonies possibly by Mozart (alongside the two G minor symphonies, No. 25 and No. 40) to be in a minor key. \\relative c { The symphony is scored for two oboes, two bassoons, two horns and strings. In contemporary orchestras, it was usual to not write in the parts for the bassoons and harpsichord, and they would simply double the cellos and double basses if they were available in the orchestra to reinforce"} +{"qid": "test46", "pid": "17400907", "query": "what is the form of mozart symphony no 40", "answer": "G minor", "passage": "\"Mozart and G minor\"\nMozart and G minor G minor has been considered the key through which Wolfgang Amadeus Mozart best expressed sadness and tragedy, and many of his minor key works are in G minor. Though Mozart touched on various minor keys in his symphonies, G minor is the only minor key he used as a main key for his numbered symphonies. In the Classical period, symphonies in G minor almost always used four horns, two in G and two in B alto. Another convention of G minor symphonies observed in Mozart's No. 25 and No. 40 was the choice of the subdominant"} +{"qid": "test460", "pid": "19910020", "query": "who was the president of pakistan during 1971 war", "answer": "President Yahya Khan", "passage": "\"Aleksei A. Rodionov\"\nAleksei A. Rodionov Aleksei Alekseievich Rodionov (b. 1922) was a Soviet-Ukrainian diplomat who served as the Soviet Ambassador to Pakistan from 1971 until 1974 and the Ambassador of Ukraine to Canada after the Cold war from 1991-92. He is notable for his appointment that saw his involvement during the war with India in 1971 when the Soviet Union directed a secret message to President Yahya Khan to come up with a peaceful political settlement for the East Pakistan to avoid going through the conflict with India. The now-declassified Rodionov message ultimately warned Pakistan that \"\"it will embarking a suicidal course"} +{"qid": "test460", "pid": "11946490", "query": "who was the president of pakistan during 1971 war", "answer": "President Yahya Khan", "passage": "\"Abdul Hamid Khan (general)\"\nother sense the de facto commander-in-chief in place of Yahya as he was the President. General Hamid, the chief of staff of the army was blamed along with General Yahya Khan for the Pakistani military debacle during the 1971 Indo-Pakistan War. Abdul Hamid Khan (general) General Abdul Hamid Khan, (Urdu: عبد الحمید خان) , was a four star rank army general in the Pakistan Army, serving as the Chief of Staff of the Pakistan Army under President Yahya Khan and led the army during the events in the war with India in 1971. Abdul Hamid Khan was born 29 April"} +{"qid": "test460", "pid": "2632556", "query": "who was the president of pakistan during 1971 war", "answer": "President Yahya Khan", "passage": "\"Indo-Pakistani War of 1971\"\ncame from the surrender of East Pakistan was finally announced, the people could not come to terms with the magnitude of defeat; spontaneous demonstrations and massive protests erupted on the streets of major metropolitan cities in Pakistan. According to Pakistani historians, the trauma was extremely severe, and the cost of the war for Pakistan in monetary terms and in human resources was very high. Demoralized and finding unable to control the situation, the Yahya administration fell when President Yahya Khan turned over his presidency to Zulfiqar Ali Bhutto, who was sworn in on 20 December 1971 as President with the"} +{"qid": "test460", "pid": "465181", "query": "who was the president of pakistan during 1971 war", "answer": "Yahya Khan", "passage": "\"Yahya Khan\"\nNixon's trip in 1972. Since 1960, Pakistan was perceived in the United States as an integral bulwark against global Communism in the Cold War. The United States cautiously supported Pakistan during 1971 although Congress kept in place an arms embargo. In 1970, India with a heavily socialist economy entered in a formal alliance with the Soviet Union in August 1971. Nixon relayed several written and oral messages to President Yahya, strongly urging him to restrain the use of Pakistan forces. His objective was to prevent a war and safeguard Pakistan's interests, though he feared an Indian invasion of Pakistan that"} +{"qid": "test460", "pid": "5219481", "query": "who was the president of pakistan during 1971 war", "answer": "Yahya Khan", "passage": "\"Pakistan Army\"\nNew York, who at that time was presenting Pakistan's case before the United Nations Security Council (UNSC) on the East Pakistan crisis. Bhutto returned home on 18 December 1971. On 20 December, he was taken to the President House in Rawalpindi where he took over two positions from Yahya Khan, one as President and the other as Chief Martial Law Administrator. Thus, he was the first civilian Chief Martial Law Administrator of Pakistan. PAF and Navy fighter pilots voluntarily served in Arab nations' militaries against Israel in the Yom Kippur War (1973). In the 1973 war one of the PAF"} +{"qid": "test460", "pid": "2623345", "query": "who was the president of pakistan during 1971 war", "answer": "Yahya Khan", "passage": "\"Prime Minister of Pakistan\"\nPrime Minister who was also the Vice-President. Negotiations that fall apart between Zulfikar Ali Bhutto, Mujibur Rehman, and Yahya Khan that prompted to liberation movement in the East Pakistan. With India intervening in East Pakistan and Pakistan conceding defeat to end the war led to the collapse of the presidential system in 1971. As the comprehensive Constitution reinstated in 1973, the post was reestablished with more central powers as the constitution provided a parliamentary system with President of Pakistan as figurehead. Amid agitation instigated by the right-wing alliance invited the military intervention in 1977 which suspended the post. The general"} +{"qid": "test461", "pid": "4881486", "query": "who is the girl in the hinder video lips of an angel", "answer": "Emmanuelle Chriqui", "passage": "\"Emmanuelle Chriqui\"\nEve\"\", and played Adam Sandler's love interest in the 2008 film \"\"You Don't Mess with the Zohan\"\". Chriqui was nominated for a Best Actress DVD Exclusive Award for her performance in \"\"100 Girls\"\" and was nominated, with Lance Bass, for a Choice Liplock Teen Choice Award in \"\"On the Line\"\". In April 2008, she won the Standout Performance Trophy at the Young Hollywood Awards. Chriqui also starred in several music videos including Hinder's \"\"Lips of an Angel\"\", Zac Brown Band's \"\"Whatever It Is\"\", and Charles Perry's \"\"I Could Be the Best Time of Your Life\"\". She threw out the ceremonial"} +{"qid": "test461", "pid": "8367945", "query": "who is the girl in the hinder video lips of an angel", "answer": "Emmanuelle Chriqui", "passage": "\"Lips of an Angel\"\nIt\"\", reached a peak of number 16 on the \"\"Billboard\"\" Hot Country Songs chart in April 2007. Ingram's version does not include the last stanza where the singer once again asks why she is calling so late. Regarding his cover of this song, Ingram gave an explanation in the liner notes of \"\"This Is It\"\": Premiering in early 2007, the music video for \"\"Lips of an Angel\"\" was directed by Shaun Silva and largely follows the narrative of the song's lyrics, focusing on a late night phone call between the raconteur (Austin Winkler) and his former lover (Emmanuelle Chriqui). Lips"} +{"qid": "test462", "pid": "9959061", "query": "who helped the british in the french and indian war", "answer": "Iroquois", "passage": "\"Conrad Weiser\"\nWeiser was inclined to be sympathetic to their interpretation of events, as opposed to the Lenape or the Shawnee. This may have exacerbated Pennsylvanian-Lenape/Shawnee relations, with bloody consequences in the French and Indian Wars. But for many years, Weiser helped to keep the powerful Iroquois allied with the British as opposed to the French. This important service contributed to the continued survival of the British colonies and the eventual victory of the British over the French in the French and Indian Wars. Between 1734 and 1741, Weiser became a follower of Conrad Beissel, a German Seventh Day Baptist preacher. For"} +{"qid": "test462", "pid": "17931466", "query": "who helped the british in the french and indian war", "answer": "Cherokee", "passage": "\"New London, Virginia\"\nconflicts including the French and Indian and Anglo-Cherokee wars. During the early French and Indian war, the Cherokees were allied with the British. That all changed when a series of misunderstandings and thefts led to a confrontation in 1758 between a Cherokee war party and colonists from Bedford County that left at least five Virginians and thirty Cherokees dead. This incident near New London exacerbated the already tense relationship between the British and the Cherokees and helped set in motion the events that led to the Anglo-Cherokee War. During the Revolutionary War, New London was home to an arsenal used"} +{"qid": "test462", "pid": "507328", "query": "who helped the british in the french and indian war", "answer": "the colonies of British America", "passage": "\"French and Indian War\"\nFrench and Indian War The French and Indian War (1754–63) pitted the colonies of British America against those of New France, each side supported by military units from the parent country and by American Indian allies. At the start of the war, the French colonies had a population of roughly 60,000 settlers, compared with 2 million in the British colonies. The outnumbered French particularly depended on the Indians. The European nations declared a wider war upon one another overseas in 1756, two years into the French and Indian war, and some view the French and Indian War as being merely"} +{"qid": "test462", "pid": "16536746", "query": "who helped the british in the french and indian war", "answer": "Cherokee", "passage": "\"Siege of Fort Loudoun\"\nSiege of Fort Loudoun The Siege of Fort Loudoun was an engagement during the Anglo-Cherokee War fought from February 1760 to August 1760 between the warriors of the Cherokee led by Ostenaco and the garrison of Fort Loudoun (in what is now Tennessee) composed of British and colonial soldiers commanded by Captain Paul Demeré. During the French and Indian War the Cherokee were sought after as allies by the British and Provincial Colonial Governments to help contest the frontiers against the French and their Indian allies. An alliance was formed and both sides initially fulfilled each other's expectations. The Cherokee"} +{"qid": "test462", "pid": "16536770", "query": "who helped the british in the french and indian war", "answer": "Cherokee", "passage": "\"Siege of Fort Loudoun\"\nand settlers of Tennessee. Siege of Fort Loudoun The Siege of Fort Loudoun was an engagement during the Anglo-Cherokee War fought from February 1760 to August 1760 between the warriors of the Cherokee led by Ostenaco and the garrison of Fort Loudoun (in what is now Tennessee) composed of British and colonial soldiers commanded by Captain Paul Demeré. During the French and Indian War the Cherokee were sought after as allies by the British and Provincial Colonial Governments to help contest the frontiers against the French and their Indian allies. An alliance was formed and both sides initially fulfilled each"} +{"qid": "test462", "pid": "507398", "query": "who helped the british in the french and indian war", "answer": "the colonies of British America", "passage": "\"French and Indian War\"\nWar of Independence. This time, France succeeded in prevailing over Britain in what historian Alfred A. Cave describes as French \"\"revenge for Montcalm's death\"\". French and Indian War The French and Indian War (1754–63) pitted the colonies of British America against those of New France, each side supported by military units from the parent country and by American Indian allies. At the start of the war, the French colonies had a population of roughly 60,000 settlers, compared with 2 million in the British colonies. The outnumbered French particularly depended on the Indians. The European nations declared a wider war upon"} +{"qid": "test462", "pid": "284982", "query": "who helped the british in the french and indian war", "answer": "Iroquois", "passage": "\"Native Americans in the United States\"\nand Indian War/Seven Years' War. Those involved in the fur trade tended to ally with French forces against British colonial militias. The British had made fewer allies, but it was joined by some tribes that wanted to prove assimilation and loyalty in support of treaties to preserve their territories. They were often disappointed when such treaties were later overturned. The tribes had their own purposes, using their alliances with the European powers to battle traditional Native enemies. Some Iroquois who were loyal to the British, and helped them fight in the American Revolution, fled north into Canada. After European explorers"} +{"qid": "test462", "pid": "15048234", "query": "who helped the british in the french and indian war", "answer": "Iroquois", "passage": "\"French in Syracuse, New York\"\nAt the same time, the war spread into Asia as the \"\"Third Carnatic War\"\". The \"\"French and Indian War\"\" not only stripped France of its North American empire, it also caused Britain to change its relationship to its colonies, a change that eventually led to the \"\"American Revolution\"\". During the \"\"French and Indian War\"\" (1754–1763), Native Americans were allied with both sides. The Iroquois sided with the British against the French and their Algonquin allies who were traditionally the enemies of the Iroquois. The \"\"Old French Fort\"\" at the \"\"Mission of Sainte Marie\"\" was one of the first attempts to"} +{"qid": "test462", "pid": "507329", "query": "who helped the british in the french and indian war", "answer": "Catawba", "passage": "\"French and Indian War\"\nthe American theater of the worldwide Seven Years' War of 1756–63; however, the French and Indian War is viewed in America as a singular conflict which was not associated with any European war. The name \"\"French and Indian War\"\" is used mainly in the United States, referring to the two enemies of the British colonists, while European historians use the term \"\"Seven Years' War\"\", as do English-speaking Canadians. French Canadians call it Guerre de la Conquête (the War of the Conquest) or (rarely) the Fourth Intercolonial War. The British colonists were supported at various times by the Iroquois, Catawba, and"} +{"qid": "test463", "pid": "13294080", "query": "which animal is the carrier of the h1n1 virus", "answer": "Pig", "passage": "\"2009 flu pandemic\"\ncalled \"\"Pig Flu\"\", but is now called \"\"New Influenza A (H1N1)\"\" by the national health institute, although the media and general population use the name \"\"Mexican Flu\"\". South Korea and Israel briefly considered calling it the \"\"Mexican virus\"\". Later, the South Korean press used \"\"SI\"\", short for \"\"swine influenza\"\". Taiwan suggested the names \"\"H1N1 flu\"\" or \"\"new flu\"\", which most local media adopted. The World Organization for Animal Health proposed the name \"\"North American influenza\"\". The European Commission adopted the term \"\"novel flu virus\"\". The symptoms of H1N1 flu are similar to those of other influenzas, and may include fever,"} +{"qid": "test463", "pid": "4607422", "query": "which animal is the carrier of the h1n1 virus", "answer": "pigs", "passage": "\"Swine influenza\"\nthe evolution of flu strains. First, the re-emergence of the human H1N1 strain became a seasonal strain. Then, a small outbreak of swine H1N1 occurred in humans, and finally, the human H2N2 strain apparently became extinct. Around 1979, the avian H1N1 strain infected pigs and gave rise to Euroasiatic swine flu and H1N1 Euroasiatic swine virus, which is still being transmitted in swine populations. The critical moment for the 2009 outbreak was between 1990 and 1993. A triple reassortment event in a pig host of North American H1N1 swine virus, the human H3N2 virus and avian H1N1 virus generated the"} +{"qid": "test463", "pid": "13366355", "query": "which animal is the carrier of the h1n1 virus", "answer": "pigs", "passage": "\"Pandemic H1N1/09 virus\"\nthe Mexican cases. The genetic divergence of the virus in samples from different cases has been analysed by an international collaboration who found that the virus jumped to humans in 2008 probably after June, and not later than the end of November. The research also indicated the virus had been latent in pigs for several months prior to the outbreak, suggesting a need to increase agricultural surveillance to prevent future outbreaks. Pandemic H1N1/09 virus The Pandemic H1N1/09 virus is a swine origin Influenza A virus subtype H1N1 virus strain responsible for the 2009 flu pandemic. For other names see the"} +{"qid": "test463", "pid": "4607420", "query": "which animal is the carrier of the h1n1 virus", "answer": "pigs", "passage": "\"Swine influenza\"\nthe flu strain of swine origin (S-OIV). The phylogenetic origin of the flu virus that caused the 2009 pandemics can be traced before 1918. Around 1918, the ancestral virus, of avian origin, crossed the species boundaries and infected humans as human H1N1. The same phenomenon took place soon after in America, where the human virus was infecting pigs; it led to the emergence of the H1N1 swine strain, which later became the classic swine flu. However, genetic coding of H1N1 shows it is a combination of segments of 4 influenza viruses forming a novel strain– North American Swine (30.6%)- PIG"} +{"qid": "test463", "pid": "6195146", "query": "which animal is the carrier of the h1n1 virus", "answer": "pigs", "passage": "\"Influenza A virus subtype H1N1\"\nhelps to move the virus particles through the infected cell and assist in budding from the host cells. Some strains of H1N1 are endemic in humans and cause a small fraction of all influenza-like illness and a small fraction of all seasonal influenza. H1N1 strains caused a small percentage of all human flu infections in 2004–2005. Other strains of H1N1 are endemic in pigs (swine influenza) and in birds (avian influenza). In June 2009, the World Health Organization (WHO) declared the new strain of swine-origin H1N1 as a pandemic. This strain is often called swine flu by the public media."} +{"qid": "test463", "pid": "6195148", "query": "which animal is the carrier of the h1n1 virus", "answer": "Pig", "passage": "\"Influenza A virus subtype H1N1\"\ncan also become infected with the H4N6 and H9N2 subtypes. Swine influenza virus is common throughout pig populations worldwide. Transmission of the virus from pigs to humans is not common and does not always lead to human influenza, often resulting only in the production of antibodies in the blood. If transmission does cause human influenza, it is called zoonotic swine flu or a variant virus. People with regular exposure to pigs are at increased risk of swine flu infection. The meat of an infected animal poses no risk of infection when properly cooked. Pigs experimentally infected with the strain of"} +{"qid": "test464", "pid": "2203022", "query": "which type of fire detector uses the effect of smoke on a light source and photo-electric cell", "answer": "optical smoke detector", "passage": "\"Smoke detector\"\nradiation. Some European countries, including France, and some US states and municipalities have banned the use of domestic ionic smoke alarms because of concerns that they are not reliable enough as compared to other technologies. Where an ionizing smoke detector has been the only detector, fires in the early stages have not always been effectively detected. A photoelectric, or optical smoke detector contains a source of infrared, visible, or ultraviolet light (typically an incandescent light bulb or light-emitting diode), a lens, and a photoelectric receiver (typically a photodiode). In spot-type detectors all of these components are arranged inside a chamber"} +{"qid": "test468", "pid": "6286093", "query": "who stole the mona lisa from the louvre in 1911", "answer": "Vincenzo Peruggia", "passage": "\"Eduardo de Valfierno\"\nEduardo de Valfierno Eduardo de Valfierno (1850–1931), who posed as a \"\"marqués\"\" (marquis), was an Argentine con man who allegedly masterminded the theft of the \"\"Mona Lisa\"\" in 1911. In 1932 journalist Karl Decker published a story in the \"\"Saturday Evening Post\"\" claiming Valfierno paid several men to steal the work of art from the Louvre, including museum employee Vincenzo Peruggia. On August 21, 1911 Peruggia hid the \"\"Mona Lisa\"\" under his coat and simply walked out the door. Before the heist took place, Valfierno allegedly commissioned French art restorer and forger Yves Chaudron to make six copies of the"} +{"qid": "test468", "pid": "6286100", "query": "who stole the mona lisa from the louvre in 1911", "answer": "Vincenzo Peruggia", "passage": "\"Eduardo de Valfierno\"\nthe Valfierno story. Eduardo de Valfierno Eduardo de Valfierno (1850–1931), who posed as a \"\"marqués\"\" (marquis), was an Argentine con man who allegedly masterminded the theft of the \"\"Mona Lisa\"\" in 1911. In 1932 journalist Karl Decker published a story in the \"\"Saturday Evening Post\"\" claiming Valfierno paid several men to steal the work of art from the Louvre, including museum employee Vincenzo Peruggia. On August 21, 1911 Peruggia hid the \"\"Mona Lisa\"\" under his coat and simply walked out the door. Before the heist took place, Valfierno allegedly commissioned French art restorer and forger Yves Chaudron to make six"} +{"qid": "test468", "pid": "793094", "query": "who stole the mona lisa from the louvre in 1911", "answer": "Vincenzo Peruggia", "passage": "\"Mona Lisa\"\nBéroud checked back with the Section Chief of the Louvre who confirmed that the \"\"Mona Lisa\"\" was not with the photographers. The Louvre was closed for an entire week during the investigation. French poet Guillaume Apollinaire came under suspicion and was arrested and imprisoned. Apollinaire implicated his friend Pablo Picasso, who was brought in for questioning. Both were later exonerated. Two years later the thief revealed himself. Louvre employee Vincenzo Peruggia had stolen the \"\"Mona Lisa\"\" by entering the building during regular hours, hiding in a broom closet, and walking out with it hidden under his coat after the museum"} +{"qid": "test468", "pid": "10630177", "query": "who stole the mona lisa from the louvre in 1911", "answer": "Vincenzo Peruggia", "passage": "\"The Theft of the Mona Lisa\"\nThe Theft of the Mona Lisa The Theft of the Mona Lisa (German: Der Raub der Mona Lisa) is a 1931 German drama film directed by Géza von Bolváry and starring Trude von Molo , Willi Forst and Gustaf Gründgens. It is based on a true story. The film's sets were designed by the art directors Andrej Andrejew and Robert A. Dietrich. In 1911, Vincenzo Peruggia is a poverty-stricken Italian glazier who falls in love with Mathilde, a French hotel maid. Struck by the girl's resemblance to Leonardo da Vinci's \"\"Mona Lisa\"\", Vicenzo manages to steal the painting from the"} +{"qid": "test47", "pid": "15429932", "query": "what was the city of beijing previously known as", "answer": "Peking", "passage": "\"Beijing Huiwen Middle School\"\nrelocated into its current address in 1959 due to the construction of Beijing Railway Station. In 1989, the school regained its historic title as Beijing Huiwen Middle School permitted by the local government and became one of Beijing's first batch of beacon high schools in 2001. Beijing Huiwen Middle School Beijing Huiwen Middle School, previously known as Peking Academy, also referred to as Beijing Huiwen High School (), is a public beacon high school in Dongcheng District, Beijing, China. It was established in 1871 by the Methodist Episcopal Church as Mengxueguan 蒙学馆 (School of Rudimentary Knowledge). In 1882, Huaili Shuyuan"} +{"qid": "test47", "pid": "15429929", "query": "what was the city of beijing previously known as", "answer": "Peking", "passage": "\"Beijing Huiwen Middle School\"\nBeijing Huiwen Middle School Beijing Huiwen Middle School, previously known as Peking Academy, also referred to as Beijing Huiwen High School (), is a public beacon high school in Dongcheng District, Beijing, China. It was established in 1871 by the Methodist Episcopal Church as Mengxueguan 蒙学馆 (School of Rudimentary Knowledge). In 1882, Huaili Shuyuan 怀理书院 (Reason-Nurturing Academy) spun off with the newly added middle- and high-school divisions. In 1882, the Academy was renamed as Huiwen Academy 汇文书院. During the Boxer Rebellion, it was burned down, then rebuilt again in 1902 with the support from local church. In 1904, it again"} +{"qid": "test470", "pid": "16688332", "query": "who sings far from the home i love in fiddler on the roof", "answer": "Hodel", "passage": "\"Michele Marsh (actress)\"\nhim—another break with tradition—the couple tells Tevye that they do not seek his permission to marry, only his blessing. When Perchik is exiled to Siberia, Hodel leaves home to join him. Marsh is one of the singers of \"\"Matchmaker, Matchmaker\"\" and performs the solo \"\"Far From the Home I Love\"\". After completing \"\"Fiddler on the Roof\"\", Marsh moved to Los Angeles and appeared mainly in television and in West Coast theatre. Marsh lives in Idyllwild, California, with her third husband, Peter Szabadi, a retired litigation attorney. They married in 2005. Her first husband was Van Cade Marsh, Jr.; they married"} +{"qid": "test470", "pid": "901886", "query": "who sings far from the home i love in fiddler on the roof", "answer": "Hodel", "passage": "\"Fiddler on the Roof\"\nGolde. \"\"Love,\"\" he says, \"\"it's the new style.\"\" Tevye asks Golde, despite their own arranged marriage, \"\"Do You Love Me?\"\" After dismissing Tevye's question as foolish, she eventually admits that, after 25 years of living and struggling together and raising five daughters, she does. Meanwhile, Yente tells Tzeitel that she saw Chava with Fyedka. News spreads quickly in Anatevka that Perchik has been arrested and exiled to Siberia (\"\"The Rumor/I Just Heard\"\"), and Hodel is determined to join him there. At the railway station, she explains to her father that her home is with her beloved, wherever he may be,"} +{"qid": "test470", "pid": "901876", "query": "who sings far from the home i love in fiddler on the roof", "answer": "Hodel", "passage": "\"Fiddler on the Roof\"\nand hid his Jewish heritage from the public. Other cast members also had run-ins with Robbins, who reportedly \"\"abused the cast, drove the designers crazy [and] strained the good nature of Hal Prince\"\". Tevye, a poor Jewish milkman with five daughters, explains the customs of the Jews in the Russian shtetl of Anatevka in 1905, where their lives are as precarious as the perch of a fiddler on a roof (\"\"Tradition\"\"). At Tevye's home, everyone is busy preparing for the Sabbath meal. His sharp-tongued wife, Golde, orders their daughters, Tzeitel, Hodel, Chava, Shprintze and Bielke, about their tasks. Yente, the"} +{"qid": "test470", "pid": "16688331", "query": "who sings far from the home i love in fiddler on the roof", "answer": "Hodel", "passage": "\"Michele Marsh (actress)\"\nKing and I\"\" at the Wharf Theater in Monterey, playing one of the children. After earning her bachelors of fine arts degree, she joined the American Conservatory Theatre in San Francisco. Marsh made her film debut in the 1971 film \"\"Fiddler on the Roof\"\". During high school, Marsh had played one of Tevye's younger daughters, Bielke, in the play \"\"Tevye and His Daughters\"\". In the film, she portrays the second-eldest daughter, Hodel, who falls in love with Perchik, a student radical who breaks tradition by dancing hand-in-hand with Hodel at her elder sister's wedding. After Perchik asks her to marry"} +{"qid": "test470", "pid": "19443873", "query": "who sings far from the home i love in fiddler on the roof", "answer": "Hodel", "passage": "\"Samantha Massell\"\nIn 2015, she won the role of Hodel in a revival of the classic Broadway show \"\"Fiddler on the Roof\"\". Samantha Massell Samantha Massell (born January 15, 1990) is a New York-based American actor and singer notable for playing Hodel in the 2015 Broadway revival of \"\"Fiddler on the Roof\"\". She has received positive reviews of her singing and acting performance. Massell attended Hunter College High School (where she interned for Lin-Manuel Miranda) and the University of Michigan, where she studied musical theater and English, and graduated Phi Beta Kappa. She made her Broadway debut at age 12 in \"\"La"} +{"qid": "test471", "pid": "5968830", "query": "when did billy don't be a hero come out", "answer": "1974", "passage": "\"Billy Don't Be a Hero\"\nto ride out and seek reinforcements. (This suggests mounted infantry and a lack of modern two-way radio communications.) In the end, the heartbroken woman throws away the official letter notifying her of Billy's \"\"heroic\"\" death. Paper Lace's version of \"\"Billy Don't Be a Hero\"\" reached No. 1 in the UK Singles Chart on 16 March 1974, and did likewise in Australia, where it spent eight weeks at the top spot. Thereafter, Bo Donaldson's and the Heywoods's version reached No. 1 in the U.S. on the \"\"Billboard\"\" Hot 100 on 15 June 1974, but was dubbed into French for Canada. The"} +{"qid": "test471", "pid": "5968828", "query": "when did billy don't be a hero come out", "answer": "1974", "passage": "\"Billy Don't Be a Hero\"\nBilly Don't Be a Hero \"\"Billy Don't Be a Hero\"\" is a 1974 pop song that was first a UK hit for Paper Lace and then, some months later, a US hit for Bo Donaldson and The Heywoods. The song was written and composed by two British songwriters, Mitch Murray and Peter Callander. Because the song was released in 1974, it was associated by some listeners with the Vietnam War, though the war to which it actually refers is never identified in the lyrics. It has been suggested that the drum pattern, references to a marching band leading soldiers in"} +{"qid": "test471", "pid": "4389950", "query": "when did billy don't be a hero come out", "answer": "1974", "passage": "\"Paper Lace\"\nPhil Wright's Original 70s Paper Lace) the band initially questioned appearing. However, with the show having weekly viewing figures of 7 million, they concluded that going on the programme was a \"\"no brainer\"\", and the band won Opportunity Knocks for five consecutive weeks. Based on Opportunity Knocks' performances, songwriters (Mitch Murray and Peter Callander) offered the band \"\"Billy Don't Be a Hero\"\", with the possibility of more songs if it took off. Billy Don't Be a Hero would spend three weeks at Number 1 on the UK Singles Chart in March 1974, with a total of 14 weeks on the"} +{"qid": "test471", "pid": "10165628", "query": "when did billy don't be a hero come out", "answer": "1974", "passage": "\"Teenage tragedy song\"\n\"\"Dear Mom and Dad\"\". Into the 1970s, as the Vietnam War continued, hit ballads of youth and death included B. J. Thomas' \"\"Billy and Sue\"\" (1972) and Terry Jacks' No. 1 hit \"\"Seasons in the Sun\"\" (1974), their protagonists of indeterminate age, or slightly older than teens. A song that was thought to have referenced the Civil War was Paper Lace's 1974 hit \"\"Billy Don't Be a Hero,\"\" made a bigger hit in the U.S. by Bo Donaldson and the Heywoods. Hard-rock acts recorded vehicular death scenarios such as \"\"D.O.A.\"\" (Bloodrock, 1971), \"\"Detroit Rock City\"\" (Kiss, 1976) and \"\"Bat Out"} +{"qid": "test472", "pid": "8000290", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Second Jungle Book: Mowgli & Baloo\"\nMowgli is a 10-year-old boy has been brought up in the jungle of India by his animal friends: the wolf pack, Baloo the bear and Bagheera the panther. However, Mowgli also has enemies in the jungle: Shere Khan, the vicious tiger who killed the boy's father; and the Bandar-log, who are hated by nearly all animals of the jungle. After being found by Shere Khan and running away, Mowgli hears a train coming his way on the train tracks. The conductor stops the train when Mowgli is seen by humans. An American circus scout named Harrison, who is traveling through"} +{"qid": "test472", "pid": "18235695", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book (2016 film)\"\na wildfire in the process. He confronts Shere Khan, who argues that Mowgli has made himself the enemy of the jungle by causing the wildfire. Mowgli throws the torch into the water, giving Shere Khan the advantage. Baloo, Bagheera, and the wolf pack intervene and hold Shere Khan off, giving Mowgli enough time to set a trap. He lures Shere Khan up a dead tree and onto a branch, which breaks under the tiger's weight, and Shere Khan falls into the fire to his death. Mowgli then directs the elephants to divert the river and put out the fire. In"} +{"qid": "test472", "pid": "2454393", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "Baloo\nBaloo Baloo ( \"\"Bhālū\"\", \"\"bear\"\") is a main fictional character featured in Rudyard Kipling's \"\"The Jungle Book\"\" from 1894 and \"\"The Second Jungle Book\"\" from 1895. Baloo, a sloth bear, is the strict teacher of the cubs of the Seeonee wolf pack. His most challenging pupil is the \"\"man-cub\"\" Mowgli. Baloo and Bagheera, a panther, save Mowgli from Shere Khan the tiger and endeavor to teach Mowgli the Law of the Jungle in many of \"\"The Jungle Book\"\" stories. He is described in Kipling's work as \"\"the sleepy brown bear\"\". Robert Armitage Sterndale, from whom Kipling derived most of his"} +{"qid": "test472", "pid": "2394424", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"Raksha (The Jungle Book)\"\nRaksha (The Jungle Book) Raksha ( / \"\"Rakšā\"\" or Mother Wolf as initially named) is a fictional character featured in Rudyard Kipling's Mowgli stories, collected in \"\"The Jungle Book\"\" and \"\"The Second Jungle Book\"\". She is a female Indian wolf, member of the Seeonee pack, who while suckling her own cubs decides also to adopt a human \"\"cub\"\" that her mate Father Wolf has found wandering in the jungle, naming him \"\"Mowgli\"\" (which means \"\"frog\"\" in the Speech of the Jungle) because of his hairlessness. Defying the tiger Shere Khan, who is determined to eat the man-cub, she reveals that"} +{"qid": "test472", "pid": "3273403", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book (1994 film)\"\nconfronted by Shere Khan. However, Mowgli shows no fear and stands up by roaring back at the tiger who roars at Mowgli to make him run away. Shere Khan, impressed by Mowgli's bravery, acknowledges him as a creature of the jungle and allows Mowgli and Katherine to leave peacefully. Mowgli and Katherine meet both the Colonel and Baloo, both of whom have recovered from their injuries under Plumford's care. Mowgli becomes the new lord of the jungle after fulfilling his childhood dream of facing Shere Khan with no fear and he begins a relationship with Katherine. Kaa is portrayed by"} +{"qid": "test472", "pid": "10914093", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book: Mowgli's Story\"\nKhan falls for Mowgli's trap, a large circle made from vines. With Shere Khan in the circle, Mowgli sets the vines on fire using a match he found at the wooden house back at Monkey Town, trapping Shere Khan by surrounding him with flames. Mowgli then banishes Shere Khan from the jungle as Bagheera, Baloo, Little Raksha, Hathi and the wolf bullies look on. Shere Khan swears never to return to the jungle, so Mowgli allows him to leave. Mowgli is praised by everyone, including the wolf bullies, who admit that they were wrong about him. The role of leader"} +{"qid": "test472", "pid": "8000294", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Second Jungle Book: Mowgli & Baloo\"\nChuchandra is reunited with Timo. The Bandar-log are sent by King Murphy to light the cannon which Buldeo is hiding in - he is sent to the other side of the jungle where he hangs upside down from a tree and faces possible death by Shere Khan. The film received negative reviews from critics. The Second Jungle Book: Mowgli & Baloo The Second Jungle Book: Mowgli & Baloo is a 1997 American adventure film starring Jamie Williams as Mowgli, with Roddy McDowall and Billy Campbell in supporting roles. It is a live action adaptation of Rudyard Kipling's \"\"The Jungle Book\"\""} +{"qid": "test472", "pid": "1626387", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book\"\nanimation and its 2016 remake, and the 1989 Japanese anime \"\"Jungle Book Shonen Mowgli\"\". Stuart Paterson wrote a stage adaptation in 2004, first produced by the Birmingham Old Rep in 2004 and published in 2007 by Nick Hern Books. The Jungle Book The Jungle Book (1894) is a collection of stories by the English author Rudyard Kipling. Most of the characters are animals such as Shere Khan the tiger and Baloo the bear, though a principal character is the boy or \"\"man-cub\"\" Mowgli, who is raised in the jungle by wolves. The stories are set in a forest in India;"} +{"qid": "test472", "pid": "3272498", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book 2\"\nwith the girl who lured him in, Shanti, his adopted brother Ranjan, and Ranjan's parents. However, Mowgli wants to return to the chaotic adventures of the jungle, and after nearly leading the other children of the village into the jungle, is punished by his adopted father for putting them in danger. Meanwhile, in the jungle, Shere Khan has returned to Baloo and Bagheera's part of the jungle seeking retribution on Mowgli. Baloo breaks into the Man Village and persuades Mowgli to live in the jungle; however, unbeknownst to them, Shere Khan has followed Baloo into the village, only to be"} +{"qid": "test472", "pid": "1626366", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book\"\nThe Jungle Book The Jungle Book (1894) is a collection of stories by the English author Rudyard Kipling. Most of the characters are animals such as Shere Khan the tiger and Baloo the bear, though a principal character is the boy or \"\"man-cub\"\" Mowgli, who is raised in the jungle by wolves. The stories are set in a forest in India; one place mentioned repeatedly is \"\"Seonee\"\" (Seoni), in the central state of Madhya Pradesh. A major theme in the book is abandonment followed by fostering, as in the life of Mowgli, echoing Kipling's own childhood. The theme is echoed"} +{"qid": "test472", "pid": "18235692", "query": "who is mowgli's main enemy in the jungle book", "answer": "Shere Khan", "passage": "\"The Jungle Book (2016 film)\"\nalso warns of the destructive power of the \"\"red flower\"\" (fire). Kaa attempts to devour Mowgli, but she is attacked by a large Himalayan brown bear named Baloo, who rescues the unconscious Mowgli. Baloo and Mowgli bond while retrieving some difficult-to-access honey for Baloo, and the boy agrees to stay with Baloo until the winter season arrives. Upon learning that Mowgli has left the jungle, Shere Khan kills Akela and threatens the pack to lure Mowgli out. Bagheera eventually finds Mowgli and Baloo and is angered that Mowgli has not joined the humans as agreed, but Baloo calms him down"} +{"qid": "test473", "pid": "3563886", "query": "when did the tradition of self government began in america", "answer": "1783", "passage": "\"Modern history\"\ncentury saw the Thirteen Colonies of North America overthrow the governance of the Parliament of Great Britain, and then reject the British monarchy itself to become the sovereign United States of America. In this period the colonies first rejected the authority of the Parliament to govern them without representation, and formed self-governing independent states. The Second Continental Congress then joined together against the British to defend that self-governance in the armed conflict from 1775 to 1783 known as the American Revolutionary War (also called American War of Independence). The American Revolution began with fighting at Lexington and Concord. On July"} +{"qid": "test474", "pid": "11457198", "query": "who wrote somewhere there's a place for us", "answer": "Stephen Sondheim", "passage": "\"Somewhere (song)\"\nuses elements of another \"\"West Side Story\"\" song, \"\"I Feel Pretty\"\", and the album version uses elements of \"\"One Hand, One Heart\"\" spoken by Chris Lowe. Somewhere (song) \"\"Somewhere\"\", sometimes referred to as \"\"Somewhere (There's a Place for Us)\"\" or simply \"\"There's a Place for Us\"\", is a song from the 1957 Broadway musical \"\"West Side Story\"\" that was made into a film in 1961. The music is composed by Leonard Bernstein with lyrics by Stephen Sondheim, and takes a phrase from the slow movement of Beethoven's 'Emperor' Piano Concerto, which forms the start of the melody,(actually is a quote"} +{"qid": "test474", "pid": "11457188", "query": "who wrote somewhere there's a place for us", "answer": "Stephen Sondheim", "passage": "\"Somewhere (song)\"\nSomewhere (song) \"\"Somewhere\"\", sometimes referred to as \"\"Somewhere (There's a Place for Us)\"\" or simply \"\"There's a Place for Us\"\", is a song from the 1957 Broadway musical \"\"West Side Story\"\" that was made into a film in 1961. The music is composed by Leonard Bernstein with lyrics by Stephen Sondheim, and takes a phrase from the slow movement of Beethoven's 'Emperor' Piano Concerto, which forms the start of the melody,(actually is a quote from the cello and bass line in Tchaikovsky’s Romeo and Juliet, 17 bars from the end.) and also a longer phrase from the main theme of"} +{"qid": "test475", "pid": "18255217", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"War for the Planet of the Apes\"\nWar for the Planet of the Apes War for the Planet of the Apes is a 2017 American science fiction film directed by Matt Reeves and written by Mark Bomback and Reeves. A sequel to \"\"Rise of the Planet of the Apes\"\" (2011) and \"\"Dawn of the Planet of the Apes\"\" (2014), it is the third installment in the \"\"Planet of the Apes\"\" reboot series. The film stars Andy Serkis, Woody Harrelson and Steve Zahn, and follows a confrontation between the apes, led by Caesar, and the humans for control of Earth. Like its predecessor, its premise shares several similarities"} +{"qid": "test475", "pid": "14548394", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"Rise of the Planet of the Apes\"\nthe screenplay, with rewrites from Scott Z. Burns and Mark Bomback. Taking place ten years after \"\"Rise\"\", \"\"Dawn\"\" follows Caesar's growing nation of evolved apes. Andy Serkis, Terry Notary and Karin Konoval reprise their roles as Caesar, Rocket and Maurice. James Franco returned as Will Rodman in a \"\"cameo via video\"\". \"\"Dawn of the Planet of the Apes\"\" was released July 11, 2014. On January 6, 2014, 20th Century Fox announced a third installment with Reeves returning to direct and co-write along with Bomback, with a planned July 2016 release. In January 2015, Fox delayed the release to July 14,"} +{"qid": "test475", "pid": "2417383", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"Andy Serkis\"\ndone critically acclaimed motion capture work in several other films, including the title character in the 2005 version of King Kong (in which he also played the ship's cook in live action) and as Caesar in \"\"Rise of the Planet of the Apes\"\" (2011), \"\"Dawn of the Planet of the Apes\"\" (2014), and \"\"War for the Planet of the Apes\"\" (2017). He also worked with game developers Ninja Theory on the 2007 release \"\"Heavenly Sword\"\", providing the motion capture and voice for King Bohan (the game's main villain). Serkis was cast as serial killer Ian Brady in the BAFTA-nominated \"\"Longford\"\","} +{"qid": "test475", "pid": "16563606", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"Dawn of the Planet of the Apes\"\nas a deliberate hint to a possible sequel. In November 2011, Andy Serkis was the first to be announced as having closed a deal for a sequel to \"\"Rise\"\". It was reported to be a \"\"healthy seven-figure deal\"\" for him to reprise his role as Caesar, the ape leader. On May 15, 2012, it was announced Scott Z. Burns had been hired to do rewrites on the original screenplay by \"\"Rise\"\" writers Rick Jaffa and Amanda Silver. On May 31, 2012, 20th Century Fox announced that the sequel would be titled \"\"Dawn of the Planet of the Apes\"\". On September"} +{"qid": "test475", "pid": "16563595", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"Dawn of the Planet of the Apes\"\nDawn of the Planet of the Apes Dawn of the Planet of the Apes is a 2014 American science fiction film directed by Matt Reeves and written by Mark Bomback, Rick Jaffa and Amanda Silver. It stars Andy Serkis, Jason Clarke, Gary Oldman, Keri Russell, Toby Kebbell, and Kodi Smit-McPhee. It is the sequel to the 2011 film \"\"Rise of the Planet of the Apes\"\", which began 20th Century Fox's reboot of the original \"\"Planet of the Apes\"\" series. \"\"Dawn\"\" is set ten years after the events of \"\"Rise\"\", and follows a group of people in San Francisco who struggle"} +{"qid": "test475", "pid": "2417389", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"Andy Serkis\"\n\"\"The Hobbit\"\" films which were released in 2012, 2013 and 2014. He was also the film's second unit director, which included directing aerial shots and battle scenes. He was invited to join the Academy of Motion Picture Arts and Sciences in June 2012 along with 175 other individuals. In 2014, Serkis reprised his role as Caesar in \"\"Dawn of the Planet of the Apes\"\", and in 2017 again reprised the role in \"\"War for the Planet of the Apes\"\", the last of the trilogy. In Gareth Edwards' 2014 science-fiction monster film \"\"Godzilla\"\", Serkis was the consultant on the film's motion"} +{"qid": "test475", "pid": "13813720", "query": "actor who played caesar in dawn of the planet of the apes", "answer": "Andy Serkis", "passage": "\"Planet of the Apes\"\nat the 84th Academy Awards, among other accolades. The strength of Serkis's performance also inspired Fox to promote him for Oscar consideration; he was not nominated by Academy voters. Following the movie's success, Fox immediately planned for a sequel. Producers Peter Chernin and Dylan Clark started planning the film eventually titled \"\"Dawn of the Planet of the Apes\"\" just after \"\"Rise\"\"s release in 2011. Fox allocated a budget of $170 million. Rick Jaffa and Amanda Silver returned to pen the script and produce, and the studio quickly signed Andy Serkis to reprise his role as Caesar. Director Rupert Wyatt withdrew"} +{"qid": "test476", "pid": "642339", "query": "what information is displayed in clear text from the ftp header", "answer": "all transmissions", "passage": "\"File Transfer Protocol\"\naccess this resource. More details on specifying a username and password may be found in the browsers' documentation (e.g., Firefox and Internet Explorer). By default, most web browsers use passive (PASV) mode, which more easily traverses end-user firewalls. Some variation has existed in how different browsers treat path resolution in cases where there is a non-root home directory for a user. FTP was not designed to be a secure protocol, and has many security weaknesses. In May 1999, the authors of listed a vulnerability to the following problems: FTP does not encrypt its traffic; all transmissions are in clear text,"} +{"qid": "test477", "pid": "19020201", "query": "what is the name of son of lord krishna", "answer": "Pradyumna", "passage": "\"Dwarakadhisa Temple\"\nfour arms. On the chamber to the left of the main altar is the deity of Balarama, elder brother of Lord Krishna. The chamber to the right houses the images of Pradyumna and Aniruddha, son and grandson of Krishna. In several shrines surrounding the central shrine there are images of Radha (Krishna's companion), Jambavati, Satyabhama, Lakshmi, Devaki (Krishna’s mother), Madhav Raoji (another name for Krishna), Rukmini, Jugal Swaroop (name for Krishna), Lakshmi Narayana, and Sita. The temple spire rises to a height of and a very large flag with symbols of Sun and Moon is hoisted on it. The flag,"} +{"qid": "test477", "pid": "4211667", "query": "what is the name of son of lord krishna", "answer": "Pradyumna", "passage": "Pradyumna\nof Bana Daitya and granddaughter of Mahabali). He is said to have been very much like his grandfather Krishna, to the extent that he may be a jana avatar, avatar of Vishnu. Aniruddha had a son named Vajra (or Vajranabh) . Vajra was known as an invincible warrior and would remain among the few survivors of the Yadus' battle. King Vajra then had 16 idols of Krishna and other gods carved from a rare, imperishable stone called Braja and built temples to house these idols in and around Mathura so as to feel the presence of Lord Krishna. The Jain"} +{"qid": "test478", "pid": "2100013", "query": "who is considered as architect of india constitution", "answer": "B. R. Ambedkar", "passage": "\"Constitution of India\"\nConstitution of India The Constitution of India (IAST: ) is the supreme law of India. The document lays down the framework demarcating fundamental political code, structure, procedures, powers, and duties of government institutions and sets out fundamental rights, directive principles, and the duties of citizens. It is the longest written constitution of any country on earth. B. R. Ambedkar, chairman of the drafting committee, is widely considered to be its chief architect. It imparts constitutional supremacy (not parliamentary supremacy, since it was created by a constituent assembly rather than Parliament) and was adopted by its people with a declaration in"} +{"qid": "test478", "pid": "2100035", "query": "who is considered as architect of india constitution", "answer": "B. R. Ambedkar", "passage": "\"Constitution of India\"\nRaj Khanna wrote: Constitution of India The Constitution of India (IAST: ) is the supreme law of India. The document lays down the framework demarcating fundamental political code, structure, procedures, powers, and duties of government institutions and sets out fundamental rights, directive principles, and the duties of citizens. It is the longest written constitution of any country on earth. B. R. Ambedkar, chairman of the drafting committee, is widely considered to be its chief architect. It imparts constitutional supremacy (not parliamentary supremacy, since it was created by a constituent assembly rather than Parliament) and was adopted by its people with"} +{"qid": "test478", "pid": "9528004", "query": "who is considered as architect of india constitution", "answer": "B. R. Ambedkar", "passage": "\"Forty-second Amendment of the Constitution of India\"\nAmendment changed the description of India from a \"\"sovereign democratic republic\"\" to a \"\"sovereign, socialist secular democratic republic\"\", and also changed the words \"\"unity of the nation\"\" to \"\"unity and integrity of the nation\"\". B. R. Ambedkar, the principal architect of the Constitution, was opposed to declaring India's social and economic structure in the Constitution. During the Constituent Assembly debates on framing the Constitution in 1946, K.T. Shah proposed an amendment seeking to declare India as a \"\"Secular, Federal, Socialist\"\" nation. In his opposition to the amendment, Ambedkar stated, \"\"My objections, stated briefly are two. In the first place the"} +{"qid": "test478", "pid": "1612123", "query": "who is considered as architect of india constitution", "answer": "B. R. Ambedkar", "passage": "\"B. R. Ambedkar\"\nB. R. Ambedkar Bhimrao Ramji Ambedkar (14 April 1891 – 6 December 1956), popularly known as Babasaheb Ambedkar, was an Indian jurist, economist, politician and social reformer who inspired the Dalit Buddhist movement and campaigned against social discrimination towards the untouchables (\"\"Dalits\"\"), while also supporting the rights of women and labour. He was independent India's first law and justice minister, the principal architect of the Constitution of India, and a founding father of the Republic of India. Ambedkar was a prolific student earning doctorates in economics from both Columbia University and the London School of Economics and gained a reputation"} +{"qid": "test478", "pid": "1612181", "query": "who is considered as architect of india constitution", "answer": "B. R. Ambedkar", "passage": "\"B. R. Ambedkar\"\nnot been published yet, more than 30 volumes can be made from his unpublished writing literature. Primary sources B. R. Ambedkar Bhimrao Ramji Ambedkar (14 April 1891 – 6 December 1956), popularly known as Babasaheb Ambedkar, was an Indian jurist, economist, politician and social reformer who inspired the Dalit Buddhist movement and campaigned against social discrimination towards the untouchables (\"\"Dalits\"\"), while also supporting the rights of women and labour. He was independent India's first law and justice minister, the principal architect of the Constitution of India, and a founding father of the Republic of India. Ambedkar was a prolific student"} +{"qid": "test479", "pid": "9021679", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"I Wanna Be the Only One\"\nI Wanna Be the Only One \"\"I Wanna Be the Only One\"\" is a song by British R&B girl group Eternal and American R&B and gospel singer BeBe Winans. It was the third single released from their album \"\"Before the Rain\"\". Topping the UK Singles Chart, the release became the group's third collaboration with BeBe Winans, who produced 1994's \"\"Crazy\"\" (from \"\"Always & Forever\"\") and 1995's \"\"It Will Never End\"\" (from \"\"Power of a Woman\"\"). The single became the group's 11th non-consecutive top ten entry on the UK Singles Chart. \"\"I Wanna Be the Only One\"\" became Eternal's biggest hit"} +{"qid": "test479", "pid": "9021680", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"I Wanna Be the Only One\"\nto date: it was the third most played song on British radio and the most played song on European radio by a UK act in 1997. It earned Eternal a MOBO Award and Capital FM Award for Best Single. It was also nominated for Best Single at the BRIT Awards. As of May 2017, the song has sold 650,000 copies in the UK. CD1 CD2 I Wanna Be the Only One \"\"I Wanna Be the Only One\"\" is a song by British R&B girl group Eternal and American R&B and gospel singer BeBe Winans. It was the third single released"} +{"qid": "test479", "pid": "11823312", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"Eternal discography\"\nGold-certified in Australia; plus \"\"I Am Blessed\"\" which peaked at number 7 in the UK. As of February 1997, \"\"Power of a Woman\"\" has sold 2 million copies worldwide. \"\"Before the Rain\"\", their third album, was released in March 1997, with first week sales exceeding 100,000 copies in the UK alone. It spawned the group's highest charting singles in the UK; \"\"Don't You Love Me\"\" and the number-one hit \"\"I Wanna Be the Only One\"\" (featuring BeBe Winans), which was a top 10 hit in twelve territories. \"\"Before the Rain\"\" was certified Platinum in the UK, whilst \"\"I Wanna Be"} +{"qid": "test479", "pid": "2988020", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"Eternal (group)\"\none, a duet with BeBe Winans, \"\"I Wanna Be the Only One\"\", which became the second most played song on UK Radio in 1997, and stayed at the top spot for one week. It was taken from their third album \"\"Before the Rain\"\", which also included \"\"Don't You Love Me\"\". The album peaked at number three in the UK. Eternal's Greatest Hits package was released in the later part of 1997, and became the highest selling Greatest Hits package of the year. In 2013, Eternal's Greatest Hits album was confirmed as being the biggest selling \"\"\"\"Best Of\"\"\"\" by a girl"} +{"qid": "test479", "pid": "9028534", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"Before the Rain (album)\"\nBefore the Rain (album) Before the Rain is the third album by the British R&B vocal group Eternal, released in March 1997. The album includes the single \"\"I Wanna Be the Only One\"\" (a duet with BeBe Winans) which became Eternal's first and only number one hit in the United Kingdom. The album features lead vocals from Vernie Bennett (\"\"Think About Me\"\") and Kéllé Bryan (\"\"I'm Still Crying\"\", \"\"All My Love\"\"), and is their last to feature Bryan. A commercial success, the album went Gold in its first week, debuting with sales of 100,000 copies before being certified Platinum. According"} +{"qid": "test479", "pid": "5495474", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"Rhett Lawrence\"\nwhich lasted many years and led to great success. He produced and co-wrote the No. 1 UK hit single \"\"Never Be The Same Again\"\" with Melanie C. of The Spice Girls and Lisa \"\"Left Eye\"\" Lopes of TLC, which was No. 1 in 35 countries. He wrote the No. 1 single \"\"Angel of Mine\"\" recorded by Monica and Eternal and co-wrote the No. 1 UK song “I Wanna Be the Only One” for Eternal featuring BeBe Winans. In addition, he has produced and written songs for and with the likes of Whitney Houston, Rock and Roll Hall of Fame inductees"} +{"qid": "test479", "pid": "7022524", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"BeBe Winans\"\n2010 in the category of Urban Recorded Song. In 1989, BeBe won his first Grammy for Best Soul Gospel Performance, Male for his contribution to \"\"Abundant Life\"\", a track on his brother Ronald's Family & Friends Choir. BeBe signed with Atlantic records and delivered a self-titled solo debut in 1997. The album featured the singles \"\"In Harms' Way\"\", \"\"Thank You\"\", and the international crossover hit \"\"I Wanna Be the Only One\"\" featuring British soul trio Eternal. The song topped the UK Singles Chart in Eternal's native United Kingdom in May 1997. The next album released was the fruit of a"} +{"qid": "test479", "pid": "7022530", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"BeBe Winans\"\nIn March 2014, Winans joined British pop/R&B group Eternal at the Hammersmith Apollo in London, to perform the number one hit \"\"I Wanna Be the Only One\"\", as part of \"\"The Big Reunion\"\" live shows. In November 2007, BeBe Winans filed suit in Davidson County (Tenn.) Circuit Court against his former business manager, Eric Peterson. His claims included breach of a managerial contract and of fiduciary duties, as well as fraud. Peterson managed Winans from early 2002 until early 2007. In the lawsuit, a copy of which is available through this link, Winans asserted that Peterson stole from him and"} +{"qid": "test479", "pid": "9028535", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"Before the Rain (album)\"\nto \"\"Billboard\"\", a US release was planned for August 26, 1997, featuring 4 additional tracks. \"\"Dreams\"\", produced by Peter Mokran and Emosia was slated as the lead single and was serviced to R&B radio on June 9, 1997. \"\"Someday\"\", which was the theme to Disney's \"\"The Hunchback of Notre Dame\"\", was released as a single in 1996, the year before \"\"Before the Rain\"\" was released. \"\"Don't You Love Me\"\" was released just before the album's release, followed by the duet with American singer BeBe Winans \"\"I Wanna Be the Only One\"\" which reached #1 in the UK, becoming Eternal's first"} +{"qid": "test479", "pid": "2988026", "query": "who sang with eternal on i wanna be the only one", "answer": "BeBe Winans", "passage": "\"Eternal (group)\"\na concert at the Hammersmith Apollo in March 2014, where they performed alongside BeBe Winans for their hit single \"\"I Wanna Be the Only One\"\". Louise was the first member of the band to leave to pursue a solo career, scoring a string of Top 10 singles and albums and two UK tours from 1995 to 2003. She married footballer Jamie Redknapp in 1998, and she has also presented a number of television shows including \"\"SMTV Live\"\", \"\"\"\" and most notably \"\"The Clothes Show\"\", \"\"Something for the Weekend\"\" and \"\"So You Think You Can Dance\"\". Kéllé experienced minor success after"} +{"qid": "test481", "pid": "5996240", "query": "what is the name of the gap between two front teeth", "answer": "diastema (plural diastemata)", "passage": "Diastema\nDiastema A diastema (plural diastemata) is a space or gap between two teeth. Many species of mammals have diastemata as a normal feature, most commonly between the incisors and molars. Diastemata are common for children and can exist in adult teeth as well. Diastemata are primarily caused by imbalance in the relationship between the jaw and the size of teeth. If the labial frenulum (lip tissue) pulls, it can also push the teeth apart and cause a diastema between the center of the two front teeth. In humans, the term is most commonly applied to an open space between the"} +{"qid": "test481", "pid": "9452145", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "Ornithosuchidae\npaleontologist Friedrich von Huene in 1914. Ornithosuchids can be identified by the presence of an arched diastema, a gap between the teeth at the front of the snout. When the jaw is closed, two large curved dentary (lower jaw) teeth fit into the diastema, which is positioned between the premaxilla and maxilla. There are two shallow depressions on the wall of the diastema to accommodate these teeth. The large dentary teeth of \"\"Ornithosuchus\"\" and \"\"Riojasuchus\"\" are placed behind a smaller procumbent dentary tooth that sticks out from the jaw. This type of tooth position is not seen in any other"} +{"qid": "test481", "pid": "7844951", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "Tritylodontidae\nfront pair of incisors were enlarged and were very similar to rodents of today. Tritylodontids had a large gap, called a diastema, that separated the incisors from their square-shaped cheek teeth. The cheek teeth in the upper jaw had three rows of cusps running along its length, with grooves in between. The lower teeth had two rows of cusps which fitted into the grooves in the upper teeth. The matching of the cusps allowed the teeth to occlude more precisely than in earlier cynodonts. It would grind its food between the teeth in somewhat the same way as a modern"} +{"qid": "test481", "pid": "17916403", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "\"Bear Brook murders\"\nof pneumonia, a crooked front tooth and a diastema, two earrings in each ear, and was between 4'3\"\" and 4'6\"\" tall. Her hair was wavy and light brown; she had no dental fillings. The second-youngest girl (age estimated between 2–4 years old) also had a gap in her front teeth. She had brown hair and was about 3'8\"\" tall. She had an overbite, which was probably noticeable. DNA proved the child was fathered by Terry Peder Rasmussen, a now-dead convicted killer who used the name Robert \"\"Bob\"\" Evans and other aliases. The child's mother was not the woman found with"} +{"qid": "test481", "pid": "5594938", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "Stegoceras\nthe maxilla by a short diastema (space), and the two rows in the premaxilla were separated by a toothless gap at the front. The teeth in the front part of the upper jaw (premaxilla) and front lower jaw were similar; these had taller, more pointed and recurved crowns, and a \"\"heel\"\" at the back. The front teeth in the lower jaw were larger than those of the upper jaw. The front edges of the crowns bore eight denticles (serrations), and the back edge bore nine to eleven. The teeth in the back of the upper (maxilla) and lower jaw were"} +{"qid": "test481", "pid": "5499035", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "Ouranosaurus\nskull in an oblique line. The snout was toothless and covered in a horny sheath during life, forming a very wide beak together with a comparable sheath on the short predentary bone at the extreme front of the lower jaws. However, after a rather large diastema with the beak, there were large batteries of cheek teeth on the sides of the jaws: the gaps between the teeth crowns were filled by the points of a second generation of replacement teeth, the whole forming a continuous surface. Contrary to the situation with some related species, a third generation of erupted teeth"} +{"qid": "test481", "pid": "14761532", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "\"TNM 02067\"\nlong and 11.4 mm (0.45 in) deep. All the teeth are incomplete or absent, and lack both enamel and cementum, but what remains indicates that there was a large incisor at the front and five cheekteeth further back, separated by a diastema (gap) of about 2.5 mm (0.098 in). On the labial (outer) surface of the dentary, there is one large mental foramen (opening). The mandibular symphysis, where the two halves of the lower jaw meet, is poorly preserved, but there is nothing to suggest that the left and right dentaries were fused. The lower margin of the bone is"} +{"qid": "test481", "pid": "14589184", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "\"Microgale macpheei\"\nin other \"\"Microgale\"\", but the rostrum of \"\"M. brevicaudata\"\" is distinctly more tapered at the front, whereas that of \"\"M. macpheei\"\" is more blunt at the front. Unlike other \"\"Microgale\"\", \"\"M. brevicaudata\"\" and \"\"M. macpheei\"\" lack gaps (diastemata) between the premolars. \"\"M. macpheei\"\" had larger, more robust teeth than \"\"M. brevicaudata\"\". In both species, the mesiostyle and distostyle, two crests, on the fourth premolar (P4) and the molars are reduced relative to the condition in other \"\"Microgale\"\". \"\"M. macpheei\"\" lacks an extension of the protocone cusp on the lingual (inner) side of the third upper premolar (P3) and P4, present"} +{"qid": "test481", "pid": "4251103", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "\"Slow loris\"\na toothcomb, which is used for personal and social grooming and feeding. The toothcomb is kept clean by the sublingua or \"\"under-tongue\"\", a specialized structure that acts like a toothbrush to remove hair and other debris. The sublingua extends below the tip of the tongue and is tipped with keratinized, serrated points that rake between the front teeth. Slow lorises have relatively large maxillary canine teeth, their inner (mesial) maxillary incisors are larger than the outer (distal) maxillary incisors, and they have a diastema (gap) between the canine and the first premolar. The first mandibular premolar is elongated, and the"} +{"qid": "test481", "pid": "5996242", "query": "what is the name of the gap between two front teeth", "answer": "diastema", "passage": "Diastema\ncombination of veneers or crowns. In \"\"The Canterbury Tales\"\", Geoffrey Chaucer wrote of the \"\"gap-toothed wife of Bath\"\". As early as this time period, the gap between the front teeth, especially in women, was associated with lustful characteristics. Thus, the implication in describing \"\"the gap-toothed wife of Bath\"\" is that she is a middle-aged woman with insatiable lust. This has no scientific basis, but it has been a common premise in folklore since the Middle Ages. In Ghana, Namibia and Nigeria, diastemata are regarded as being attractive and a sign of fertility, and some people have even had them created"} +{"qid": "test483", "pid": "4751804", "query": "who drove the number 18 car in nascar", "answer": "Kyle Busch", "passage": "\"Marcos Ambrose\"\nwinner Kyle Busch and Tony Stewart. Ambrose drove the No. 47 Toyota in the 2009 NASCAR Sprint Cup series, after forming a technical alliance with Michael Waltrip Racing and Toyota Racing Development. Ambrose also drove the last 4 races of the 2008 Sprint Cup series in the No. 47 Toyota, after NASCAR agreed to change MWR's car number from No. 00 to No. 47. Ambrose entered Homestead with the No. 47 in the Top 35, earning him a guaranteed start for the first time in his career. However, a bad finish at Homestead put the team back out of the"} +{"qid": "test484", "pid": "76057", "query": "how many steps does the cn tower have", "answer": "2,579 steps", "passage": "\"CN Tower\"\nlevel are at . The 360 Restaurant, a revolving restaurant that completes a full rotation once every 72 minutes, is at . When the tower first opened, it also featured a disco named Sparkles (at the Indoor Observation Level), billed as the highest disco and dance floor in the world. The SkyPod was once the highest public observation deck in the world until it was surpassed by the Shanghai World Financial Center in 2008. A metal staircase reaches the main deck level after 1,776 steps, and the SkyPod above after 2,579 steps; it is the tallest metal staircase on Earth."} +{"qid": "test485", "pid": "15746620", "query": "when did south sudan join east african community", "answer": "2016", "passage": "\"South Sudan\"\nMinister of Foreign Affairs, Barnaba Marial Benjamin, claimed publicly in October 2015 that, following evaluations and meetings of a special technical committee in May, June, August, September and October, the committee has recommended that South Sudan be allowed to join the East African Community. Those recommendations, however, had not been officially released to the public. It was reported that South Sudan could be admitted as early as November 2015 when the heads of East African States had their summit meeting. South Sudan was eventually approved for membership in East African Community on March 2016, and formally acceded with the signature"} +{"qid": "test485", "pid": "4218839", "query": "when did south sudan join east african community", "answer": "April 2016", "passage": "\"East African Community\"\nreported that South Sudan could be admitted as early as November 2015 when the heads of East African States had their summit meeting. South Sudan was eventually approved for membership to the bloc in March 2016, and signed a treaty of accession in April 2016. It had six months to ratify the agreement, which it did on 5 September, at which point it formally acceded to the community. It does not yet participate to the same extent as the other members. The geographical region encompassed by the EAC covers an area of , with a combined population of about 173,583,000."} +{"qid": "test485", "pid": "20935816", "query": "when did south sudan join east african community", "answer": "2016", "passage": "\"Trade in the East African Community\"\ncollapse of the bloc in 1977. The rebirth of the treaty that still stands was created in 1999, and this group of three countries held together until 2009 when Burundi and Rwanda joined. Eventually, in 2016, South Sudan joined the group and trade has been bolstered within each country ever since. With the help of harmonization of monetary and fiscal policies among the nations, there has been an enormous effort in eventually becoming one large nation, Political Federation of the East African States. Becoming one nation will bring improved terms of trade as countries will want to ensure that their"} +{"qid": "test485", "pid": "4218837", "query": "when did south sudan join east african community", "answer": "2016", "passage": "\"East African Community\"\nthe process. In December 2012, Tanzania agreed to South Sudan’s bid to join the EAC, clearing the way for the world’s newest state to become the regional bloc’s sixth member. In May 2013 the EAC set aside US$82,000 for the admission of South Sudan into the bloc even though admission may not happen until 2016. The process, to start after the EAC Council of Ministers meeting in August 2013, was projected to take at least four years. At the 14th Ordinary Summit held in Nairobi in 2012, EAC heads of state approved the verification report that was presented by the"} +{"qid": "test485", "pid": "19738029", "query": "when did south sudan join east african community", "answer": "2016", "passage": "\"17th EAC Extra Ordinary summit\"\nthe Inter-Burundi dialogue was approved by the heads of state. The heads of states congratulated the council of ministers from South Sudan for fully completing the process to join the East African Community. The council then presented an outline of how the country plans to integrate into the community and their detailed road map was scheduled to be released to the public at the next summit scheduled for November 2016. The heads of state took into consideration that Rwanda recommended that Christophe Bazivamo of Rwanda to be appointed as a Deputy Secretary general of the community. Bazivamo was sworn in"} +{"qid": "test485", "pid": "14842186", "query": "when did south sudan join east african community", "answer": "2016", "passage": "\"Tanzanian nationality law\"\nKenya, Uganda and Tanzania. In 2007, the organisation expanded to include the Republic of Rwanda and the Republic of Burundi as part of the East African Community. in 2016 the organisation expanded to include the Republic of South Sudan. Owing to the customs union, relaxed immigration regulations and free movement of labour set to be implemented within the community,Tanzanian citizens stand to benefit free movement within the East African Community zone, likewise citizens of other East African Community member states, may also enjoy free movement to Tanzania and other member territories and unlimited duration of stay while still maintaining their"} +{"qid": "test486", "pid": "2629391", "query": "when did cricket go to 6 ball overs", "answer": "1979/80", "passage": "\"Over (cricket)\"\nbowling pattern and tire the fielders by making them reposition themselves frequently. Since 1979/80, all Test cricket has been played with six balls per over. However, overs in Test cricket originally had four balls per over, and there have been varying numbers of balls per over around the world up to 1979/80, generally the same as the number of balls per over in force in other first-class cricket in that country. Prior to the Laws of Cricket (1980 Code), law 17.1 (Number of balls [in the over]) did not explicitly specify the number of balls to be bowled in an"} +{"qid": "test488", "pid": "1486492", "query": "who plays steve's wife on my three sons", "answer": "Beverly Garland", "passage": "\"My Three Sons\"\nSteve remarries, taking widowed teacher Barbara Harper (Beverly Garland) as his wife; she brings with her a 5-year-old daughter, Dorothy \"\"Dodie\"\" (Dawn Lyn), so Steven now had a stepdaughter whom he also subsequently adopts. (Dodie is wary of Steve at first, believing that he wants her to simply forget her late father, until he explains that he wants her to always remember and love him, but since he's no longer alive, Steve wants to raise her in his place, and hopes she'll come to love him also.) Also, the last year-and-a-half of the series feature fewer appearances of both Don"} +{"qid": "test489", "pid": "756090", "query": "the chinese dragons are protectors of how many seas diggy", "answer": "Four Seas", "passage": "\"Chinese dragon\"\nbut with a dragon head wearing a king's headdress. There are four major Dragon Kings, representing each of the Four Seas: the East Sea (corresponding to the East China Sea), the South Sea (corresponding to the South China Sea), the West Sea (sometimes seen as the Qinghai Lake and beyond), and the North Sea (sometimes seen as Lake Baikal). Because of this association, they are seen as \"\"in charge\"\" of water-related weather phenomena. In premodern times, many Chinese villages (especially those close to rivers and seas) had temples dedicated to their local \"\"dragon king\"\". In times of drought or flooding,"} +{"qid": "test489", "pid": "6051810", "query": "the chinese dragons are protectors of how many seas diggy", "answer": "Four", "passage": "\"Japanese dragon\"\nEmperor of China. Dragons in later Japanese folklore were influenced by Chinese and Indian myths. Chinese dragon mythology is central to Japanese dragons. Japanese words for \"\"dragon\"\" are written with \"\"kanji\"\" (\"\"Chinese characters\"\"), either simplified \"\"shinjitai\"\" 竜 or traditional \"\"kyūjitai\"\" 龍 from Chinese \"\"long\"\" 龍. These \"\"kanji\"\" can be read \"\"tatsu\"\" in native Japanese \"\"kun'yomi\"\" and \"\"ryū\"\" or \"\"ryō\"\" in Sino-Japanese \"\"on'yomi\"\". Many Japanese dragon names are loanwords from Chinese. For instance, the Japanese counterparts of the astrological Four Symbols are: Japanese \"\"Shiryū\"\" 四竜 \"\"4 dragon [kings]\"\" are the legendary Chinese \"\"Longwang\"\" 龍王 \"\"Dragon Kings\"\" who rule the four seas."} +{"qid": "test489", "pid": "8556953", "query": "the chinese dragons are protectors of how many seas diggy", "answer": "Four Seas", "passage": "\"East Sea (Chinese literature)\"\nEast Sea (Chinese literature) The East Sea (), one of the Four Seas, is identified as the body of water east of the mainland according to ancient Chinese geography. In Chinese literature, the Four Seas are a metaphor for the boundaries of China. It contains modern day East China Sea as well as the Yellow Sea (West Sea) and Bohai Sea. In Chinese mythology, East Sea is the domain of Ao Guang, the \"\"Donghai Longwang\"\" (東海龍王), or \"\"the Dragon King of the Eastern Sea\"\", who is responsible for controlling its storms and tides. Supposedly, the Dragon King resides in a"} +{"qid": "test489", "pid": "8556954", "query": "the chinese dragons are protectors of how many seas diggy", "answer": "Four Seas", "passage": "\"East Sea (Chinese literature)\"\nlarge \"\"dragon palace\"\", the \"\"Donghai Longgong\"\" (東海龍宮), located at its bottom. East Sea (Chinese literature) The East Sea (), one of the Four Seas, is identified as the body of water east of the mainland according to ancient Chinese geography. In Chinese literature, the Four Seas are a metaphor for the boundaries of China. It contains modern day East China Sea as well as the Yellow Sea (West Sea) and Bohai Sea. In Chinese mythology, East Sea is the domain of Ao Guang, the \"\"Donghai Longwang\"\" (東海龍王), or \"\"the Dragon King of the Eastern Sea\"\", who is responsible for controlling"} +{"qid": "test490", "pid": "15540499", "query": "what is the meaning of gorakh dhanda in urdu", "answer": "You are a Puzzle", "passage": "\"Naz Khialvi\"\nNaz Khialvi Naz Khialvi (1947 – 12 December 2010) was a Pakistani lyricist and radio broadcaster, who is mainly known for his Sufi verse \"\"Tum Ek Gorakh Dhanda Ho\"\" (You are a Puzzle), later sung by Nusrat Fateh Ali Khan, a legendary Qawwali singer, making both of them a household name. He also hosted a radio programme, Sandhal Dharti at Faisalabad radio station for 27 years. Muhammad Siddique, pen name Naz Khialvi, born in Jhok Baig Chak No 394GB, near Tandlianwala, district of Faisalabad, 174 km from Lahore, in Province of Punjab, Pakistan. Khialvi later became a broadcaster with state-run"} +{"qid": "test490", "pid": "15540501", "query": "what is the meaning of gorakh dhanda in urdu", "answer": "You are a Puzzle", "passage": "\"Naz Khialvi\"\nRadio Compering Award\"\" in 2000. Naz Khialvi Naz Khialvi (1947 – 12 December 2010) was a Pakistani lyricist and radio broadcaster, who is mainly known for his Sufi verse \"\"Tum Ek Gorakh Dhanda Ho\"\" (You are a Puzzle), later sung by Nusrat Fateh Ali Khan, a legendary Qawwali singer, making both of them a household name. He also hosted a radio programme, Sandhal Dharti at Faisalabad radio station for 27 years. Muhammad Siddique, pen name Naz Khialvi, born in Jhok Baig Chak No 394GB, near Tandlianwala, district of Faisalabad, 174 km from Lahore, in Province of Punjab, Pakistan. Khialvi later"} +{"qid": "test491", "pid": "6719311", "query": "who was the first to say i'm going to disney world", "answer": "Phil Simms", "passage": "\"Jack Lindquist\"\nand celebratory tradition, when the New York Giants won Super Bowl XXI in 1985, and quarterback Phil Simms was the first to utter the phrase: \"\"I'm Going to Disneyland.\"\" while on the East coast broadcasting feed, the line was: \"\"I'm Going to Disney World.\"\" Upon reading of the rise of the British pound in the financial section of a newspaper, Lindquist was inspired to create a real currency for Disneyland and Walt Disney World. Disneyland, after all, was at that time drawing approximately 12 million people a year and an additional 24 million would visit the Walt Disney World resort;"} +{"qid": "test491", "pid": "7088636", "query": "who was the first to say i'm going to disney world", "answer": "Jeana Yeager", "passage": "\"I'm going to Disney World!\"\nopening for the Star Tours attraction at Disneyland, the couple dined with Dick Rutan and Jeana Yeager, who in December 1986 had piloted the first aircraft to fly around the world without stopping or refueling. After Jane Eisner asked what the pilots planned to do next, they replied, \"\"Well, we're going to Disneyland.\"\" She later told her husband the phrase would make a great advertising campaign. Weeks later, Disney launched the series following Super Bowl XXI on January 25, 1987 with a commercial featuring New York Giants quarterback Phil Simms. Simms was paid a reported $75,000 for his participation. The"} +{"qid": "test491", "pid": "376039", "query": "who was the first to say i'm going to disney world", "answer": "Phil Simms", "passage": "\"Super Bowl\"\nSuper Bowl XLV, which returned to using current pop acts such as The Black Eyed Peas and Katy Perry. Excluding Super Bowl XXXIX, the famous \"\"I'm going to Disney World!\"\" advertising campaign took place in every Super Bowl since Super Bowl XXI when quarterback Phil Simms from the New York Giants became the first player to say the tagline. As of Super Bowl LII, 27 of 52 Super Bowls have been played in three cities: New Orleans (ten times), the Greater Miami area (ten times), and the Greater Los Angeles area (seven times). No market or region without an active"} +{"qid": "test492", "pid": "15717327", "query": "who signed the largest on the declaration of independence", "answer": "John Hancock", "passage": "\"Signing of the United States Declaration of Independence\"\ndelegation before the August 2 signing. Rogers had voted for the resolution of independence but was no longer a delegate on August 2. Alsop favored reconciliation with Great Britain and so resigned rather than add his name to the document. Dickinson refused to sign, believing the Declaration premature, but he remained in Congress. George Read had voted against the resolution of independence, and Robert Morris had abstained—yet they both signed the Declaration. The most famous signature on the engrossed copy is that of John Hancock, who presumably signed first as President of Congress. Hancock's large, flamboyant signature became iconic, and"} +{"qid": "test492", "pid": "15717331", "query": "who signed the largest on the declaration of independence", "answer": "John Hancock", "passage": "\"Signing of the United States Declaration of Independence\"\nwho may not have signed the Declaration until after the Goddard Broadside was published. Congress Secretary Charles Thomson did not sign the engrossed copy of the Declaration, and his name doesn't appear on the Goddard Broadside, even though it does appear on the Dunlap broadside. Various legends emerged years later concerning the signing of the Declaration, when the document had become an important national symbol. In one famous story, John Hancock supposedly said that Congress, having signed the Declaration, must now \"\"all hang together\"\", and Benjamin Franklin replied: \"\"Yes, we must indeed all hang together, or most assuredly we shall"} +{"qid": "test492", "pid": "434502", "query": "who signed the largest on the declaration of independence", "answer": "John Hancock", "passage": "\"United States Declaration of Independence\"\nthe Declaration had been signed on July 4, pointing out that some signers were not then present, including several who were not even elected to Congress until after that date. The Declaration was transposed on paper, adopted by the Continental Congress, and signed by John Hancock, President of the Congress, on July 4, 1776, according to the 1911 record of events by the U.S. State Department under Secretary Philander C. Knox. On August 2, 1776, a parchment paper copy of the Declaration was signed by 56 persons. Many of these signers were not present when the original Declaration was adopted"} +{"qid": "test493", "pid": "15239866", "query": "when was the r10+20 summit in rio de janeiro held", "answer": "June 2012", "passage": "\"United Nations Conference on Sustainable Development\"\nUnited Nations Conference on Sustainable Development The United Nations Conference on Sustainable Development (UNCSD), also known as Rio 2012, Rio+20 (), or Earth Summit 2012 was the third international conference on sustainable development aimed at reconciling the economic and environmental goals of the global community. Hosted by Brazil in Rio de Janeiro from 13 to 22 June 2012, Rio+20 was a 20-year follow-up to the 1992 United Nations Conference on Environment and Development (UNCED) held in the same city, and the 10th anniversary of the 2002 World Summit on Sustainable Development (WSSD) in Johannesburg. The ten-day mega-summit, which culminated in"} +{"qid": "test493", "pid": "16548540", "query": "when was the r10+20 summit in rio de janeiro held", "answer": "June 2012", "passage": "Aluna\nall of it.\"\"— Alan Ereira. The 1990 documentary was shown at the Earth Summit in Rio de Janeiro, Brazil in 1992 and was seen to inspire delegates to take action. 'Aluna' was produced in time for another important UN environmental conference, the United Nations Conference on Sustainable Development held at Rio de Janeiro, Brazil from 20–22 June 2012. Two Kogi Mamos shall be attending the conference the Rio conference could again be inspired by the Kogis. Originally the budget was set at £270,000. Alan Ereira had got Bruce Parry interested in the project and Parry met with the Kogi and"} +{"qid": "test493", "pid": "11245653", "query": "when was the r10+20 summit in rio de janeiro held", "answer": "June 2012", "passage": "Ecocide\npresented to legislators and judges from around the world at the World Congress on Justice Governance and Law for Environmental Sustainability, held in Mangaratiba before the Rio +20 Earth Summit, the United Nations Conference on Sustainable Development. Making ecocide an international crime was voted as one of the top twenty solutions to achieving sustainable development at the World Youth Congress in Rio de Janeiro in June 2012. In October 2012 a range of experts gathered at the international conference Environmental Crime: Current and Emerging Threats held in Rome at the UN Food and Agricultural Organization Headquarters hosted by the United"} +{"qid": "test493", "pid": "15239887", "query": "when was the r10+20 summit in rio de janeiro held", "answer": "June 2012", "passage": "\"United Nations Conference on Sustainable Development\"\nworld. Despite the huge response, the platform was taken down two years later due to technical and economic constraints but has since remained as a positive legacy through the activities of students who were first recognized by the network. United Nations Conference on Sustainable Development The United Nations Conference on Sustainable Development (UNCSD), also known as Rio 2012, Rio+20 (), or Earth Summit 2012 was the third international conference on sustainable development aimed at reconciling the economic and environmental goals of the global community. Hosted by Brazil in Rio de Janeiro from 13 to 22 June 2012, Rio+20 was a"} +{"qid": "test494", "pid": "6509415", "query": "all time highest goal scorer in spain national team", "answer": "David Villa", "passage": "\"David Villa\"\nRaúl, even though we have hardly met on international duty.\"\" Speaking about Raúl's record with the Spanish national team as the nation's leading top scorer, Villa said, \"\"I've got 25 goals but he's got 44 and is still playing. I'd be delighted to reach that tally as I'd help the national team achieve great victories and, in many years' time, I could see my name on a [scorers' list] that another young lad was trying to beat. That would be great.\"\" On 25 March 2011, two years after making that remark, Villa surpassed Raúl as Spain's all-time top scorer. A"} +{"qid": "test494", "pid": "1448644", "query": "all time highest goal scorer in spain national team", "answer": "David Villa", "passage": "\"2010 FIFA World Cup\"\nalso had the fewest goals conceded for a champion (2), equal with Italy (2006) and France (1998). Spain's victory marked the first time that a team won the World Cup without conceding a goal in the knockout stage. The four top scorers in the tournament had five goals each. All of the four top scorers also came from the teams that finished in the top four, Spain, the Netherlands, Germany, and Uruguay. The Golden Boot went to Thomas Müller of Germany who had three assists, compared to one for the three others. The Silver Boot went to David Villa of"} +{"qid": "test494", "pid": "3018024", "query": "all time highest goal scorer in spain national team", "answer": "David Villa", "passage": "\"Spain national football team\"\nscored the match's only goal, coming in extra time. Spain became the third team to win a World Cup outside their own continent, and the first European team to do so. Goalkeeper Iker Casillas won the golden glove for only conceding two goals during the tournament, while David Villa won the bronze ball and silver boot, tied for top scorer of the tournament. Spain qualified top of Group I in qualification for UEFA Euro 2012 with a perfect 100% record. They became the first team to retain the European Championship, winning the final 4–0 against Italy, while Fernando Torres won"} +{"qid": "test496", "pid": "394043", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Super Bowl XI\"\nthe first 23 played, as well as the four worst of the first 11, when Minnesota made its last appearance. The Vikings’ loss in Super Bowl XI meant the franchise finished with a dismal 0–4 Super Bowl record under head coach Bud Grant, even though in the same eight-season span their regular season record was 87–24–1, which was the best in the NFL. Grant coached Minnesota eight more seasons, but never managed to guide the team back to a Super Bowl. In fact, as of the 2017 season this remains the Vikings’ last ever appearance in a Super Bowl, although"} +{"qid": "test496", "pid": "6471470", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"1998 Denver Broncos season\"\n23–10 after coming back from a 10–0 deficit. Many had expected Denver to play the Minnesota Vikings in the Super Bowl, the team with the number one record that year at 15–1, but the Vikings lost the NFC Championship Game to the Atlanta Falcons in overtime. The Broncos defeated the Falcons 34–19 in Super Bowl XXXIII. Elway was the Super Bowl MVP and Davis rushed for over 100 yards. It was Elway's last game, and until the 2013 season, the last time Denver reached the Super Bowl. The Broncos had 3,808 yards passing, sixth in the league. They had 2,468"} +{"qid": "test496", "pid": "7167384", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Super Bowl XLVII\"\ntwo appearances during that span. With the 49ers making their first Super Bowl appearance since Super Bowl XXIX, this left the Dallas Cowboys (last appeared in Super Bowl XXX), Detroit Lions (never appeared in a Super Bowl), Minnesota Vikings (last appeared in Super Bowl XI) and Washington Redskins (last appeared in Super Bowl XXVI) as the only NFC teams not to play in a Super Bowl since 1998, with only the Vikings (on three occasions) even advancing to the NFC Championship Game. The 49ers attempted to follow the 2012 World Series championship victory of Major League Baseball's San Francisco Giants."} +{"qid": "test496", "pid": "395022", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Super Bowl XXXV\"\never in a Super Bowl), recorded 4 sacks, and forced 5 turnovers. All 16 of the Giants' possessions ended with punts or interceptions, with the exception of the last one, which ended when time expired in the game. New York's lone touchdown, a 97-yard kickoff return, was quickly answered by Baltimore on an 84-yard touchdown return on the ensuing kickoff. The Giants became the first team since the Cincinnati Bengals in Super Bowl XXIII to not score an offensive touchdown and the fifth overall (joining the Bengals as well as the Minnesota Vikings in Super Bowl IX, the Washington Redskins"} +{"qid": "test496", "pid": "8256490", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "1969", "passage": "\"Sports in Minnesota\"\nAngeles, where they became the Los Angeles Lakers. The Minnesota Vikings are an NFL team founded as an expansion team in 1961. They play their home games at U.S. Bank Stadium. The Vikings have won one NFL Championship in 1969, one year before the AFL–NFL Merger. The Vikings were the first team to appear in four Super Bowls, but also lost all of them. Their last appearance in the Super Bowl was Super Bowl XI against the Oakland Raiders in 1977. Notable current and former players include Warren Moon, Randall Cunningham, Jim Marshall, Ron Yary, Mick Tingelhoff, Paul Krause, Cris"} +{"qid": "test496", "pid": "262448", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "Minnesota\ndemolition after the 2013 season for the construction of the team's new home, U.S. Bank Stadium. The Vikings' current stadium hosted Super Bowl LII in February, 2018. Super Bowl XXVI was played in the Metrodome. The Vikings have advanced to the Super Bowl Super Bowl IV, Super Bowl VIII, Super Bowl IX, and Super Bowl XI, losing all four games to their AFC/AFL opponent The Minnesota Twins have played in the Major League Baseball in the Twin Cities starting in 1961. The Twins began play as the original Washington Senators, relocating to Minnesota in 1961. The Twins won the 1987"} +{"qid": "test496", "pid": "5950926", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "1969", "passage": "\"1969 NFL season\"\nwhen the Minnesota Vikings defeated the Cleveland Browns in the NFL championship game, earning the right to face the American Football League's Kansas City Chiefs in Super Bowl IV in New Orleans Tulane Stadium. This was the last awarding of the Ed Thorp Memorial Trophy to the NFL champion; the trophy was introduced 35 years earlier in 1934. As was the case the previous season, the NFL Champion was not crowned as the world champion because of the Vikings' 23-7 loss to the Chiefs in the Super Bowl. This occurrence can no longer happen, as the AFL and the NFL"} +{"qid": "test496", "pid": "9975443", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "1969", "passage": "\"1969 Minnesota Vikings season\"\n1969 Minnesota Vikings season The 1969 season was the Minnesota Vikings' ninth season in the National Football League. With a 12–2 record, the Vikings won the NFL Central division title, before beating the Los Angeles Rams in the Western Conference Championship Game, and the Cleveland Browns in the last NFL Championship Game ever played in the pre-merger era. With these wins, the Vikings became the last team to possess the Ed Thorp Memorial Trophy, introduced 35 years earlier in 1934. However, Minnesota lost Super Bowl IV in New Orleans to the AFL champion Kansas City Chiefs in the final professional"} +{"qid": "test496", "pid": "9975449", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "1969", "passage": "\"1969 Minnesota Vikings season\"\nALCS at Metropolitan Stadium on Monday, October 6. 1969 Minnesota Vikings season The 1969 season was the Minnesota Vikings' ninth season in the National Football League. With a 12–2 record, the Vikings won the NFL Central division title, before beating the Los Angeles Rams in the Western Conference Championship Game, and the Cleveland Browns in the last NFL Championship Game ever played in the pre-merger era. With these wins, the Vikings became the last team to possess the Ed Thorp Memorial Trophy, introduced 35 years earlier in 1934. However, Minnesota lost Super Bowl IV in New Orleans to the AFL"} +{"qid": "test496", "pid": "9734898", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Fred McNeill\"\nfewest total yards allowed in 1975 and fewest passing yards allowed in 1976. McNeill appeared in 2 Super Bowls with the Vikings, Super Bowl IX and Super Bowl XI. McNeill blocked a punt in Super Bowl XI. During his last campaign with the Vikings, he began his studies at the William Mitchell College of Law, where he graduated at the top of his class. He eventually became a partner with a Minneapolis, Minnesota area law firm following his NFL career. McNeill was voted into the UCLA Athletics Hall of Fame in 2012. In his later years he was diagnosed with"} +{"qid": "test496", "pid": "394041", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Super Bowl XI\"\nIX. In this game Stabler completed 12 of 19 for 180 yards and a touchdown, and had a 111.7 passer rating. The Purple People Eaters were dominated in their final Super Bowl appearance as Oakland set Super Bowl records of 266 yards rushing and 429 yards total offense. \"\"Slate\"\" writer Justin Peters, after viewing every Super Bowl over a two-month period before Super Bowl 50, considered Minnesota the worst franchise in Super Bowl history. He remarked that “the Vikings in the 1970s really pissed me off... Minnesota went to the Super Bowl four separate times from 1970 to 1977 and"} +{"qid": "test496", "pid": "9465510", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Wally Hilgenberg\"\nfrom the Lions to the Pittsburgh Steelers, but was waived before ever playing a game in Pittsburgh. After being waived by the Steelers, Hilgenberg was picked up off waivers by the Vikings, for whom he played until he retired after the 1979 season. During that time, he was one of 11 players to play in all four of the Vikings' Super Bowl appearances (Super Bowl IV, Super Bowl VIII, Super Bowl IX, Super Bowl XI). Hilgenberg's daughter Kristi was Miss Minnesota Teen USA 1998. Hilgenberg's grandson, Luke, was a linebacker for the Iowa Hawkeyes. Hilgenberg died on September 23, 2008,"} +{"qid": "test496", "pid": "394039", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"Super Bowl XI\"\nthree occasions; two of the opportunities were to take a lead (one in this game). The Vikings committed a total of 15 turnovers and forced only three. In their four Super Bowl appearances the Vikings averaged only 56.75 yards rushing (a total of 227 yards on 90 carries for just 2.52 yards per carry), while the “Purple People Eaters” yielded a huge 215.5 yards average. After Kansas City rushed 42 times in Super Bowl IV, Oakland became the third consecutive opponent to rush more than 50 times against the Vikings. Minnesota also had just a 49.3 team passer rating to"} +{"qid": "test496", "pid": "13536780", "query": "when was the last time minnesota vikings was in the super bowl", "answer": "XI", "passage": "\"1972 Rose Bowl\"\n2013. Two Indians were top 10 selections in the 1972 NFL Draft. Offensive tackle Greg Sampson went sixth overall to the Houston Oilers, and linebacker Jeff Siemon went 10th to the Minnesota Vikings. Siemon was the Vikings' starting middle linebacker in three Super Bowl losses (VIII, IX and XI, the last of which was the first Super Bowl played at the Rose Bowl stadium) and played 11 seasons for the club. Sampson played seven seasons in Houston and had a role in the 1974 film \"\"The Longest Yard\"\". Ralston departed Palo Alto shortly after the Rose Bowl to accept the"} +{"qid": "test497", "pid": "16793196", "query": "who has won 2017 women's singles korean open series badminton championship", "answer": "P. V. Sindhu", "passage": "\"Nozomi Okuhara\"\nand Grand Prix Gold. It is a series of badminton tournaments, sanctioned by Badminton World Federation (BWF) since 2007. \"\"Women's singles\"\" \"\"Women's singles\"\" Women's Singles results against World Superseries finalists, World Championships semifinalists, and Olympic quarterfinalists, as well as all Olympic opponents. \"\"Last revised: 20 December 2018\"\" Nozomi Okuhara She became the 2017 world champion in Glasgow, Scotland after defeating India's P. V. Sindhu in the finals. In 2011, the then 16-year-old Nozomi Okuhara became the youngest women's singles champion ever at the All Japan Badminton Championships, which are the Japanese National Badminton Championships. She won a BWF World junior"} +{"qid": "test498", "pid": "19269404", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 7)\"\non the show since towards the end of the fifth season. Pretty Little Liars (season 7) The seventh and final season of the American mystery drama television series \"\"Pretty Little Liars\"\", based on the books of the same name by Sara Shepard, was renewed on June 10, 2014 for two additional seasons, making the show Freeform's longest running original series. The season consisted of 20 episodes, in which ten episodes aired in the summer of 2016, with the remaining ten episodes aired from April 2017. The season's premiere aired on June 21, 2016 on Freeform. Production and filming began in"} +{"qid": "test498", "pid": "19269383", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 7)\"\nPretty Little Liars (season 7) The seventh and final season of the American mystery drama television series \"\"Pretty Little Liars\"\", based on the books of the same name by Sara Shepard, was renewed on June 10, 2014 for two additional seasons, making the show Freeform's longest running original series. The season consisted of 20 episodes, in which ten episodes aired in the summer of 2016, with the remaining ten episodes aired from April 2017. The season's premiere aired on June 21, 2016 on Freeform. Production and filming began in the end of March 2016, which was confirmed by showrunner I."} +{"qid": "test498", "pid": "14201342", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars\"\nthat the show was renewed for a fourth season, again comprising 24 episodes. The second half of the third season began airing on January 8, 2013 and finished March 19, 2013. \"\"Pretty Little Liars\"\" returned for Season 4 on June 11, 2013. On March 25, 2013, it was again announced that \"\"Pretty Little Liars\"\" had been renewed for a fifth season scheduled for a 2014 air date and a new spin off show entitled \"\"Ravenswood\"\" would begin airing after the season four annual Halloween special in October 2013. The second half of season four premiered on January 7, 2014. It"} +{"qid": "test498", "pid": "16130495", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 3)\"\nPretty Little Liars (season 3) The third season of Pretty Little Liars, based on the books of the same name by Sara Shepard, premiered on June 5, 2012 on ABC Family and concluded on March 19, 2013. On November 29, 2011, ABC Family renewed the series for a third season, consisting of 24 episodes. Filming of the season began on April 2, 2012. On October 4, 2012, ABC Family renewed the series for a fourth season, consisting of 24 episodes. This season of Pretty Little Liars takes place five months following the discovery that Mona Vanderwaal (Janel Parrish) was the"} +{"qid": "test498", "pid": "17937523", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"For Whom the Bell Tolls (Pretty Little Liars)\"\ntimes during \"\"Pretty Little Liars\"\" Season 1 finale.” Teresa Lopez of \"\"TV Fanatic\"\" praised Brendan Robinson’s character for bring Caleb back to Rosewood and called the episode ‘‘entertaining, although somewhat unsatisfying.” For Whom the Bell Tolls (Pretty Little Liars) \"\"For Whom the Bell Tolls\"\" is the season finale of the first season of the American mystery-drama series \"\"Pretty Little Liars\"\", based on the novels written by Sara Shepard, and the twenty-second episode of the series overall. It originally aired on ABC Family in the United States on March 21, 2011. The episode was directed by Lesli Linka Glatter and written"} +{"qid": "test498", "pid": "17916487", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 5)\"\nPretty Little Liars (season 5) The fifth season of the American mystery drama television series Pretty Little Liars began airing on ABC Family on June 10, 2014. Shooting for the season began on March 24, 2014, and ended on November 20, 2014. The season aired from June 10, 2014 to March 24, 2015. Like the second season, the season consisted of 25 episodes, including a special holiday-themed episode, instead of a Halloween episode which was written by I. Marlene King and her assistant Kyle Bown and was directed by King. It also contained the 100th episode and the episode was"} +{"qid": "test498", "pid": "18080667", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Grave New World (Pretty Little Liars)\"\nup the mysterious new show Ravenswood than advancing the plot of Pretty Little Liars.\"\" Lopez further added that the episode fell short of the \"\"great background information coupled with a spooky story\"\" in the season two Halloween special, \"\"First Secret\"\", and the \"\"wild ride with an shocking final surprise\"\" in the previous Halloween special, \"\"This Is a Dark Ride\"\". Grave New World (Pretty Little Liars) \"\"Grave New World\"\" is the 13th episode of the fourth season of the American mystery drama series \"\"Pretty Little Liars\"\". It originally aired on October 22, 2013 on ABC Family and serves as the season's"} +{"qid": "test498", "pid": "19269393", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 7)\"\nwas ordered with the sixth season on June 10, 2014, right before the fifth-season premiere aired, which made Pretty Little Liars ABC Family's longest running original series, surpassing \"\"The Secret Life of the American Teenager\"\", which was ABC Family's previous longest running original series. The season will consist of 20 episodes, in which ten episodes will air in the summer of 2016, with the remaining ten episodes beginning to air in April 2017. Charlie Craig, who served as writer/consulting producer on the second season, will return for the seventh season as executive producer/co-showrunner. I. Marlene King revealed the title of"} +{"qid": "test498", "pid": "19920781", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"UnmAsked (Pretty Little Liars)\"\nUnmAsked (Pretty Little Liars) \"\"UnmAsked\"\" is the season finale and the twenty-fifth episode of the second season of \"\"Pretty Little Liars\"\", which premiered on ABC Family on March 19, 2012. The forty-seventh episode overall, it was directed by Lesli Linka Glatter and written by series creator and showrunner I. Marlene King. The episode yielded 3.69 million viewers and a 1.6 demo rating, an increase from the previous episode. It also received favorable reviews. This episode is rated TV-14. Set chronologically in April 2011, the episode revolves around the Liars approaching to the truth of who's behind \"\"A\"\"'s mask, while the"} +{"qid": "test498", "pid": "17916505", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 5)\"\nviewers. On Rotten Tomatoes the fifth season got a rating of 80% fresh based on 5 reviews. Pretty Little Liars (season 5) The fifth season of the American mystery drama television series Pretty Little Liars began airing on ABC Family on June 10, 2014. Shooting for the season began on March 24, 2014, and ended on November 20, 2014. The season aired from June 10, 2014 to March 24, 2015. Like the second season, the season consisted of 25 episodes, including a special holiday-themed episode, instead of a Halloween episode which was written by I. Marlene King and her assistant"} +{"qid": "test498", "pid": "20360290", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars: The Perfectionists\"\nPretty Little Liars: The Perfectionists Pretty Little Liars: The Perfectionists is an upcoming American teen drama television series developed by I. Marlene King. The series is a sequel to \"\"Pretty Little Liars\"\" and based on the novel \"\"The Perfectionists\"\" by Sara Shepard. Freeform ordered the series to pilot on September 25, 2017, as the second spin-off series of \"\"Pretty Little Liars\"\" which will include some of the main characters. Freeform picked up the series for a 10-episode first season on May 14, 2018. Freeform ordered the show to pilot on September 25, 2017, as a sequel to \"\"Pretty Little Liars\"\""} +{"qid": "test498", "pid": "18080649", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Grave New World (Pretty Little Liars)\"\nGrave New World (Pretty Little Liars) \"\"Grave New World\"\" is the 13th episode of the fourth season of the American mystery drama series \"\"Pretty Little Liars\"\". It originally aired on October 22, 2013 on ABC Family and serves as the season's Halloween episode, which aired as part of the \"\"13 Nights of Halloween\"\" programming block. The episode was directed by Ron Lagomarsino and written by Joseph Dougherty, Oliver Goldstick and I. Marlene King. The episode also serves as a backdoor pilot to the series’ spinoff \"\"Ravenswood\"\", which follows a group of people investigating the supernatural occurrences in the titular town."} +{"qid": "test498", "pid": "18651090", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars (season 6)\"\nPretty Little Liars (season 6) The sixth season of the American mystery drama television series \"\"Pretty Little Liars\"\", based on the books of the same name by Sara Shepard, was renewed on June 10, 2014 for two additional seasons, making the show ABC Family's longest running original series. The sixth and seventh seasons will consist of 20 episodes each. It aired 10 episodes for the first half the season, which began airing on June 2, 2015. Filming for the sixth season began on March 24, 2015, which was confirmed by showrunner I. Marlene King on Twitter. The season premiere was"} +{"qid": "test498", "pid": "19648432", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Along Comes Mary (Pretty Little Liars)\"\nshe had with Jenna too.\"\" Jessica Goldstein of \"\"Vulture\"\" gave the episode 2 out of 5 stars. Caitlin White of \"\"Wetpaint\"\" had favorable feelings on the episode and in the seventh season overall, alleging, \"\"this wild ride isn’t slowing down anytime soon.\"\" The episode currently holds an 8.5/10 rating on TV.com and 8/10 rating on IMDb. Along Comes Mary (Pretty Little Liars) \"\"Along Comes Mary\"\" is the fifth episode of the seventh season of the American mystery drama television series \"\"Pretty Little Liars\"\", which aired on July 16, 2016, on the cable network Freeform. The hundred and forty-fifth episode on"} +{"qid": "test498", "pid": "14201343", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Pretty Little Liars\"\nwas announced on June 10, 2014 that \"\"Pretty Little Liars\"\" was renewed for two seasons, making the show ABC Family's longest running original hit series. On August 29, 2016, I.Marlene King announced that \"\"Pretty Little Liars\"\" would be ending after the seventh season had aired. The second half of the seventh season will begin airing later than previous season, in April instead of January. \"\"Pretty Little Liars\"\" opened with mixed reviews. Metacritic gave the pilot episode 52 out of 100, based upon 14 critical reviews. The New York \"\"Daily News\"\" gave the show a positive review, commenting that it \"\"makes"} +{"qid": "test498", "pid": "19701322", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"The Wrath of Kahn (Pretty Little Liars)\"\nThe Wrath of Kahn (Pretty Little Liars) \"\"The Wrath of Kahn\"\" is the ninth episode of the seventh season of the mystery drama television series \"\"Pretty Little Liars\"\", which aired on August 23, 2016, on the cable network Freeform. The hundred and forty-ninth episode, it was written by Jonell Lennon and directed by Chad Lowe. \"\"The Wrath of Kahn\"\" received a Nielsen rating of 0.5 and was viewed by 1.09 million viewers, down from the previous episode. It received positive reviews from critics. This episode is rated TV-14. The series revolves around a group of five women—collectively known as Liars—,"} +{"qid": "test498", "pid": "17937516", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"For Whom the Bell Tolls (Pretty Little Liars)\"\nFor Whom the Bell Tolls (Pretty Little Liars) \"\"For Whom the Bell Tolls\"\" is the season finale of the first season of the American mystery-drama series \"\"Pretty Little Liars\"\", based on the novels written by Sara Shepard, and the twenty-second episode of the series overall. It originally aired on ABC Family in the United States on March 21, 2011. The episode was directed by Lesli Linka Glatter and written by I. Marlene King. In the episode, the girls plan to expose Ian as Alison's murderer after finding video files of them changing in their rooms. Meanwhile, each of the girls"} +{"qid": "test498", "pid": "20219828", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Till Death Do Us Part (Pretty Little Liars)\"\nTill Death Do Us Part (Pretty Little Liars) \"\"Till Death Do Us Part\"\" is the series finale of \"\"Pretty Little Liars\"\", which premiered on the Freeform network in the United States on June 27, 2017. The twentieth episode of the seventh season and the 160th overall, it was directed by showrunner I. Marlene King, who also co-wrote the episode alongside Kyle Bown and Maya Goldsmith. Shortly after the two-hour final episode, a special titled \"\"A-List Wrap Party\"\" was aired, in which the main cast and King talked about the show's end and behind-the-scenes exclusives. In this episode, the Liars finally"} +{"qid": "test498", "pid": "20116265", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Playtime (Pretty Little Liars)\"\nPlaytime (Pretty Little Liars) \"\"Playtime\"\" is the eleventh episode of \"\"Pretty Little Liars\"\" seventh season and the 151st episode overall. It first aired on the Freeform network in the United States on April 18, 2017. The installment was directed by Chad Lowe and written by Allyson Nelson and Joseph Dougherty. Upon its original airing in the United States, the episode was watched by 1.33 million people. In the aftermath of Spencer's (Troian Bellisario) shooting, things get messy in the Hastings residence when Veronica (Lesley Fera) reveals things about the family's past. Meanwhile, the Liars struggle with their own personal problems,"} +{"qid": "test498", "pid": "19676415", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Wanted: Dead or Alive (Pretty Little Liars)\"\nWanted: Dead or Alive (Pretty Little Liars) \"\"Wanted: Dead or Alive\"\" is the sixth episode of the seventh season of the mystery drama television series \"\"Pretty Little Liars\"\", which aired on August 2, 2016, on the cable network Freeform. The hundred and forty-sixth episode on the series, it was directed by Bethany Rooney and written by Lijah J. Barasz. The episode received a Nielsen rating of 0.5 and was viewed by 1.10 million viewers. It received mixed to positive reviews from critics. The series focuses on a group of five women, collectively known as Liars, who receive anonymous messages in"} +{"qid": "test498", "pid": "19648420", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Along Comes Mary (Pretty Little Liars)\"\nAlong Comes Mary (Pretty Little Liars) \"\"Along Comes Mary\"\" is the fifth episode of the seventh season of the American mystery drama television series \"\"Pretty Little Liars\"\", which aired on July 16, 2016, on the cable network Freeform. The hundred and forty-fifth episode on the series, it was directed by Norman Buckley and written by Bryan M. Holdman. The episode received a Nielsen rating of 0.6 and was viewed by 1.17 million viewers. It received mixed to positive reviews from critics. The series focuses on a group of five women, collectively known as Liars, whose receive anonymous messages in form"} +{"qid": "test498", "pid": "19701328", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"The Wrath of Kahn (Pretty Little Liars)\"\nsaying he really enjoyed the episode. Jessica Goldstein of \"\"Vulture\"\" gave the episode 3 out of 5 stars. Gavin Hetherington of SpoilerTV said he \"\"enjoyed the episode\"\" and that \"\"every character had some good moment\"\". \"\"The Wrath of Kahn\"\" currently holds a 8.7/10 rating on IMDb and a 8.2/10 rating on TV.com. The Wrath of Kahn (Pretty Little Liars) \"\"The Wrath of Kahn\"\" is the ninth episode of the seventh season of the mystery drama television series \"\"Pretty Little Liars\"\", which aired on August 23, 2016, on the cable network Freeform. The hundred and forty-ninth episode, it was written by"} +{"qid": "test498", "pid": "20776592", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Escape from New York (Pretty Little Liars)\"\nEscape from New York (Pretty Little Liars) \"\"Escape from New York\"\" is the first episode and the premiere of the fifth season of the American mystery drama television series \"\"Pretty Little Liars\"\" and the 96th episode of the series overall. The episode was written by showrunner I. Marlene King and directed by Norman Buckley, it aired on June 10, 2014 on ABC Family and was watched by 2.72 viewers. The episode opens with paramedics loading Ezra into an ambulance. Noel is being questioned by the police. Noel claims that he heard the gunshot and ran to the rooftop and found"} +{"qid": "test498", "pid": "19676427", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Wanted: Dead or Alive (Pretty Little Liars)\"\nand some of the characters had better material than the last episode (looking at you Spencer).\"\" Jessica Goldstein of \"\"Vulture\"\" gave the episode three out of 5 stars. The episode currently holds a 8.1/10 rating on TV.com and 8.5/10 rating on IMDb. Wanted: Dead or Alive (Pretty Little Liars) \"\"Wanted: Dead or Alive\"\" is the sixth episode of the seventh season of the mystery drama television series \"\"Pretty Little Liars\"\", which aired on August 2, 2016, on the cable network Freeform. The hundred and forty-sixth episode on the series, it was directed by Bethany Rooney and written by Lijah J."} +{"qid": "test498", "pid": "20116275", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Playtime (Pretty Little Liars)\"\nkeep us distracted.\"\" \"\"SpoilerTV\"\" Gavin Hetherington wrote for the episode an uplifting review, stating that \"\"[the show is] going to take the final stretch of episodes in a very interesting direction.\"\" He also glorified the series' writer's work on Spencer's story line as Mary Drake's daughter. Playtime (Pretty Little Liars) \"\"Playtime\"\" is the eleventh episode of \"\"Pretty Little Liars\"\" seventh season and the 151st episode overall. It first aired on the Freeform network in the United States on April 18, 2017. The installment was directed by Chad Lowe and written by Allyson Nelson and Joseph Dougherty. Upon its original airing"} +{"qid": "test498", "pid": "18035536", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Free Fall (Pretty Little Liars)\"\nFree Fall (Pretty Little Liars) \"\"Free Fall\"\" is the twentieth episode of the fourth season of \"\"Pretty Little Liars\"\", an American mystery drama television series based on the novel series written by Sara Shepard, and is the ninety-first episode of the series. The episode, directed by Melanie Mayron and written by Maya Goldsmith, originally aired on February 18, 2014 on ABC Family. In the episode, Spencer is ready to tell Aria that Ezra is \"\"A\"\", while Hanna and Emily, worried that Aria will be hurt, remain hesitant. Meanwhile, Spencer’s addiction to amphetamines is exposed, causing damage to her credibility among"} +{"qid": "test498", "pid": "18035543", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Free Fall (Pretty Little Liars)\"\npraised Lesley Fera’s character for showing good parenting when confronted with Spencer’s addiction. Free Fall (Pretty Little Liars) \"\"Free Fall\"\" is the twentieth episode of the fourth season of \"\"Pretty Little Liars\"\", an American mystery drama television series based on the novel series written by Sara Shepard, and is the ninety-first episode of the series. The episode, directed by Melanie Mayron and written by Maya Goldsmith, originally aired on February 18, 2014 on ABC Family. In the episode, Spencer is ready to tell Aria that Ezra is \"\"A\"\", while Hanna and Emily, worried that Aria will be hurt, remain hesitant."} +{"qid": "test498", "pid": "19602479", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Bedlam (Pretty Little Liars)\"\nBedlam (Pretty Little Liars) \"\"Bedlam\"\" is the second episode of the seventh season of the mystery drama television series \"\"Pretty Little Liars\"\", which aired on June 28, 2016, on the cable network Freeform. The episode was written by Joseph Dougherty and directed by Tawnia McKiernan. The episode focuses on the protagonists growing suspicious of Elliott as Ali's condition worsens. Spencer and Caleb's relationship is on the rocks. Liam helps Aria and Ezra on their book. Hanna and Jordan's engagement falls down, and Hanna signs a contract with Lucas to construct a fashion company. \"\"Bedlam\"\" yielded 1.24 million viewers and a"} +{"qid": "test498", "pid": "20776616", "query": "how many episodes are in season 7 of pretty little liars", "answer": "20", "passage": "\"Escape from New York (Pretty Little Liars)\"\nWide Shut\"\" apothecary get-up\"\". Escape from New York was broadcast on June 10, 2014. It was watched by 2.72 million viewers, scoring a 1.1 rating in the 18-49 demographic. Escape from New York (Pretty Little Liars) \"\"Escape from New York\"\" is the first episode and the premiere of the fifth season of the American mystery drama television series \"\"Pretty Little Liars\"\" and the 96th episode of the series overall. The episode was written by showrunner I. Marlene King and directed by Norman Buckley, it aired on June 10, 2014 on ABC Family and was watched by 2.72 viewers. The episode"} +{"qid": "test499", "pid": "348501", "query": "where did the term 'robot' come from", "answer": "Czech", "passage": "Robot\ncan take the place of humans in dangerous environments or manufacturing processes, or resemble humans in appearance, behavior, or cognition. Many of today's robots are inspired by nature contributing to the field of bio-inspired robotics. These robots have also created a newer branch of robotics: soft robotics. From the time of ancient civilization there have been many accounts of user-configurable automated devices and even automata resembling animals and humans, designed primarily as entertainment. As mechanical techniques developed through the Industrial age, there appeared more practical applications such as automated machines, remote-control and wireless remote-control. The term comes from a Czech"} +{"qid": "test499", "pid": "12865004", "query": "where did the term 'robot' come from", "answer": "Czech", "passage": "Robotics\nof robots. This field overlaps with electronics, computer science, artificial intelligence, mechatronics, nanotechnology and bioengineering. The word \"\"robotics\"\" was derived from the word \"\"robot\"\", which was introduced to the public by Czech writer Karel Čapek in his play \"\"R.U.R. (Rossum's Universal Robots)\"\", which was published in 1920. The word \"\"robot\"\" comes from the Slavic word \"\"robota\"\", which means labour/work. The play begins in a factory that makes artificial people called \"\"robots\"\", creatures who can be mistaken for humans – very similar to the modern ideas of androids. Karel Čapek himself did not coin the word. He wrote a short letter"} +{"qid": "test5", "pid": "6090871", "query": "who wrote the first declaration of human rights", "answer": "Cyrus", "passage": "\"Cyrus Cylinder\"\nof Iran called it \"\"the world's first charter of human rights\"\". The cylinder was a key symbol of the Shah's political ideology and is still regarded by some commentators as a charter of human rights, despite the disagreement of some historians and scholars. The Cyrus Cylinder was dubbed the \"\"first declaration of human rights\"\" by the pre-Revolution Iranian government, a reading prominently advanced by Shah Mohammed Reza Pahlavi, in a 1967 book, \"\"The White Revolution of Iran\"\". The Shah identified Cyrus as a key figure in government ideology and associated his government with the Achaemenids. He wrote that \"\"the history"} +{"qid": "test50", "pid": "14089410", "query": "who is the girl in green day 21 guns", "answer": "Lisa Stelly", "passage": "\"Last of the American Girls\"\nis playable in the video game \"\"\"\". The music video for \"\"Last of the American Girls\"\" was directed by Marc Webb and released to MTV on April 1, 2010. The video alternates between the band playing in a desert and the character Gloria (Lisa Stelly) who appears in the video for \"\"21 Guns\"\", and is also a protagonist in the story of the album \"\"21st Century Breakdown\"\". Gloria is shown taking part in everyday activities, such as brushing her teeth, watching television, and cleaning her nails. It is the Green Day's fourth video to feature touring guitarist Jason White performing"} +{"qid": "test502", "pid": "10463339", "query": "prior to 1948 north and south vietnam were a part of", "answer": "France", "passage": "\"Provisional Central Government of Vietnam\"\nof Vietnam could then be officially proclaimed on July 2. Provisional Central Government of Vietnam The Provisional Central Government of Vietnam was an entity proclaimed in Vietnam during the First Indochina War. It was created as a transitional government replacing the protectorates of Tonkin (North Vietnam) and Annam (Middle Vietnam), until Cochinchina (South Vietnam) could be reunited with the rest of the country. On June 5, 1948, the Halong Bay Agreements (\"\"Accords de la baie d’Along\"\") allowed the creation of a unified Vietnamese government replacing the Tonkin (North Vietnam), Annam (Middle Vietnam) associated to France within the French Union and"} +{"qid": "test502", "pid": "10463333", "query": "prior to 1948 north and south vietnam were a part of", "answer": "France", "passage": "\"Provisional Central Government of Vietnam\"\nProvisional Central Government of Vietnam The Provisional Central Government of Vietnam was an entity proclaimed in Vietnam during the First Indochina War. It was created as a transitional government replacing the protectorates of Tonkin (North Vietnam) and Annam (Middle Vietnam), until Cochinchina (South Vietnam) could be reunited with the rest of the country. On June 5, 1948, the Halong Bay Agreements (\"\"Accords de la baie d’Along\"\") allowed the creation of a unified Vietnamese government replacing the Tonkin (North Vietnam), Annam (Middle Vietnam) associated to France within the French Union and the Indochinese Federation then including the neighboring Kingdom of Laos"} +{"qid": "test502", "pid": "9297776", "query": "prior to 1948 north and south vietnam were a part of", "answer": "France", "passage": "\"United States Ambassador to South Vietnam\"\nUnited States Ambassador to South Vietnam After World War II, France attempted to regain control of Vietnam, which they had lost to Japan in 1941. Following the First Indochina War, the country was split into two parts, the north and the south. The southern part was named the \"\"State of Vietnam\"\" under the leadership of Bảo Đại. In 1950, the United States recognized the Bảo Đại government, established diplomatic relations, and sent its first ambassador to Saigon in South Vietnam, officially known as the \"\"Republic of Vietnam\"\". The US was opposed to the Communist government of the North, led by"} +{"qid": "test504", "pid": "11091887", "query": "where do the florida marlins have spring training", "answer": "Roger Dean Stadium", "passage": "\"2003 Montreal Expos season\"\nto the one they finished with the previous year. After holding spring training at Roger Dean Stadium in Jupiter, Florida, from 1998 through 2002, the Expos moved to Space Coast Stadium in Viera, Florida, for spring training in 2003. The move to Viera came about as the result of a deal in which Major League Baseball bought the Expos from Jeffrey Loria, who then purchased the Florida Marlins; as part of the deal, the Marlins traded spring training sites with the Expos, moving from Viera to Jupiter. The franchise, as the Expos in 2003 and 2004 and then from 2005"} +{"qid": "test504", "pid": "5163465", "query": "where do the florida marlins have spring training", "answer": "Roger Dean Stadium", "passage": "\"Roger Dean Stadium\"\nStadium is one of only two stadiums in Florida to host two Major League Baseball teams annually for spring training: the Miami Marlins and St. Louis Cardinals (the other is The Ballpark of The Palm Beaches, which opened in 2017, hosting the Washington Nationals and Houston Astros). In both venues, the teams share the main stadium where the games are played. However, the teams have their own practice fields, outdoor batting cages, several pitching mounds, and state-of-the-art conditioning rooms. Through 2002 the Montreal Expos shared the stadium with the Cardinals, until they swapped with the Marlins as part of the"} +{"qid": "test504", "pid": "13518746", "query": "where do the florida marlins have spring training", "answer": "Roger Dean Stadium", "passage": "\"St. Louis Cardinals\"\nII, in downtown St. Louis, opened it during the 1966 season and played there until 2005. It was built as the multi-purpose stadium home of both the baseball Cardinals and the NFL football Cardinals, who are now the Arizona Cardinals. The current Busch Stadium was constructed adjacent to, and partly atop, the site of Busch Memorial Stadium. The Cardinals home field in spring training is Roger Dean Stadium in Jupiter, Florida. They share the complex, which opened in 1998, with the Miami Marlins. Before moving to Jupiter, the Cardinals hosted spring training at Al Lang Field in St. Petersburg, Florida"} +{"qid": "test504", "pid": "811289", "query": "where do the florida marlins have spring training", "answer": "Roger Dean Stadium", "passage": "\"Palm Beach County, Florida\"\ncity of West Palm Beach operates the Mandel Public Library of West Palm Beach for its residents. Other cities also operate separate public libraries for their residents, such as the Boca Raton Public Library. The St. Louis Cardinals and the Miami Marlins conduct their spring training at Roger Dean Stadium in Jupiter. Two teams in the Class A-Advanced Florida State League also play their home games at Roger Dean Stadium: the Jupiter Hammerheads, an affiliate of the Miami Marlins, and the Palm Beach Cardinals, an affiliate of the St. Louis Cardinals. The Ballpark of The Palm Beaches, opened in February"} +{"qid": "test506", "pid": "2418775", "query": "who is the director of nightmare before christmas", "answer": "Henry Selick", "passage": "\"The Nightmare Before Christmas\"\nThe Nightmare Before Christmas The Nightmare Before Christmas (marketed as Tim Burton's The Nightmare Before Christmas) is a 1993 American stop-motion animated musical dark fantasy Halloween-Christmas film directed by Henry Selick, and produced and conceived by Tim Burton. It tells the story of Jack Skellington, the King of \"\"Halloween Town\"\" who stumbles through a portal to \"\"Christmas Town\"\" and decides to celebrate the holiday. Danny Elfman wrote the songs and score, and provided the singing voice of Jack. The principal voice cast also includes Chris Sarandon, Catherine O'Hara, William Hickey, Ken Page, Paul Reubens, Glenn Shadix, and Ed Ivory. \"\"The"} +{"qid": "test506", "pid": "2418784", "query": "who is the director of nightmare before christmas", "answer": "Henry Selick", "passage": "\"The Nightmare Before Christmas\"\nNightmare Before Christmas\"\", drawing inspiration from television specials of \"\"Rudolph the Red-Nosed Reindeer\"\", \"\"How the Grinch Stole Christmas!\"\" and the poem \"\"A Visit from St. Nicholas\"\". Burton intended to adapt the poem into a television special with the narration spoken by his favorite actor, Vincent Price, but also considered other options such as a children's book. He created concept art and storyboards for the project in collaboration with Rick Heinrichs, who also sculpted character models; Burton later showed his and Heinrichs' works-in-progress to Henry Selick, also a Disney animator at the time. After the success of \"\"Vincent\"\" in 1982, Disney"} +{"qid": "test506", "pid": "2418806", "query": "who is the director of nightmare before christmas", "answer": "Henry Selick", "passage": "\"The Nightmare Before Christmas\"\nBefore Christmas\"\"\"\". Danny Elfman was worried the characterization of Oogie Boogie would be considered racist by the National Association for the Advancement of Colored People (NAACP). Elfman's predictions came true; however, director Henry Selick stated the character was inspired by the Betty Boop cartoon \"\"The Old Man of the Mountain\"\". \"\"Cab Calloway would dance his inimitable jazz dance and sing 'Minnie the Moocher' or 'Old Man of the Mountain', and they would rotoscope him, trace him, turn him into a cartoon character, often transforming him into an animal, like a walrus,\"\" Selick continued. \"\"I think those are some of the"} +{"qid": "test506", "pid": "2811494", "query": "who is the director of nightmare before christmas", "answer": "Henry Selick", "passage": "\"Henry Selick\"\nHenry Selick Charles Henry Selick (; born November 30, 1952) is an American stop motion director, producer and writer who is best known for directing the stop-motion animation films \"\"The Nightmare Before Christmas\"\" (1993), \"\"James and the Giant Peach\"\" (1996), and \"\"Coraline\"\" (2009). He studied at the Program in Experimental Animation at California Institute of the Arts, under the guidance of Jules Engel. Selick was born in Glen Ridge, New Jersey, the son of Melanie (née Molan) and Charles H. Selick. He was raised in Rumson. Selick did little but draw from ages 3 to 12. Selick's fascination with animation"} +{"qid": "test507", "pid": "18545326", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Ash vs Evil Dead\"\n\"\"True to the movies that spawned it, \"\"Ash vs Evil Dead\"\" is a gory, hilarious, and audacious resurrection of Sam Raimi's beloved horror franchise.\"\" Metacritic gave the season a rating of 75 out of 100, based on 25 critics, indicating \"\"generally favorable reviews.\"\" The second season has received critical acclaim. On Rotten Tomatoes, the season has a score of 100%, based on 16 reviews, with an average rating of 8/10. The site's critical consensus currently reads, \"\"\"\"Ash vs. Evil Dead\"\"s sophomore season proves the show is in command of its characters and tone, turning up the gore, fun, and energy"} +{"qid": "test507", "pid": "8045168", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Evil Dead\"\nwas released on DVD and Blu-ray Disc on February 10, 2009. The series stars Bruce Campbell reprising his role as an older Ash Williams with a supporting cast that includes Lucy Lawless, Ray Santiago, Dana DeLorenzo, and Jill Marie Jones. The 10-episode series is executive produced by Campbell, Sam Raimi, and Rob Tapert. It premiered on Starz on October 31, 2015. \"\"Ash vs Evil Dead\"\" proved to be a critically well-received television show, earning a 98% from Rotten Tomatoes. Four days before its premiere, the show was picked up for a second 10-episode season. The series lasted for three seasons"} +{"qid": "test507", "pid": "13047216", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Death (protopunk band)\"\nplayed three shows with original members Bobby and Dannis Hackney, with Lambsbread guitarist Bobbie Duncan taking the place of the late David Hackney. In 2010, their song \"\"Freakin' Out\"\" was used in an episode of the television program \"\"How I Met Your Mother\"\" entitled \"\"False Positive\"\" (Season 6, Episode 12). In 2015, the same song was used in an episode of the television program Ash Vs. Evil Dead entitled \"\"The Killer of Killers\"\" (Season 1, Episode 6). During a 2010 performance at the Boomslang Festival in Lexington, Kentucky the band announced that Drag City would release a new album with"} +{"qid": "test507", "pid": "8045151", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Evil Dead\"\nto the 2013 reboot titled \"\"Evil Dead 2\"\", a direct sequel to \"\"Army of Darkness\"\" starring Campbell and directed by Sam Raimi, and finally a seventh film which would merge the narratives of both film series. In July 2014, Bruce Campbell stated it was likely that the planned sequel would instead be a TV series with him as the star. On November 10, 2014, Starz announced that a ten-episode series titled \"\"Ash vs Evil Dead\"\" would premiere on their cable network in 2015. The series was renewed for an additional twenty episodes and starred Bruce Campbell as Ash and was"} +{"qid": "test507", "pid": "6592007", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Never Say Never (Romeo Void song)\"\nhis classmates. A dance sequence ensues with Quinn's character moshing about while a somewhat distraught Daryl Hannah tries to figure out how to dance with him. The song is also featured in the 2002 video game \"\"\"\" as part of the fictional in-game new wave radio station \"\"Wave 103\"\". Also, a small segment of the song was featured in a scene of the film \"\"\"\". It also was included in the 2013 film \"\"The Wolf of Wall Street\"\". In 2016, it was featured in the show \"\"Ash vs Evil Dead\"\" during a scene of the season two episode \"\"Trapped Inside\"\"."} +{"qid": "test507", "pid": "18545325", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Ash vs Evil Dead\"\nfrom the STARZ Original Series\"\" would be released by Varèse Sarabande digitally on December 11, 2015 and via audio CD on December 18, 2015. The following are the tracks that are on that album: Furthermore, in the season two finale, a marching band plays Victory for MSU, the official fight song of Michigan State University, where Raimi and Tapert attended college. The first season of \"\"Ash vs Evil Dead\"\" has received critical acclaim. Review aggregator Rotten Tomatoes gave the season a 98% \"\"Certified Fresh\"\" rating based on 49 reviews, with an average rating of 8/10. The site's critical consensus reading:"} +{"qid": "test507", "pid": "18545327", "query": "how many episodes is ash vs evil dead season 3", "answer": "10", "passage": "\"Ash vs Evil Dead\"\nto deliver even more grisly, action-packed thrills and laughs.\"\" On Metacritic, the season has a rating of 82 out of 100, based on 5 reviews, indicating \"\"universal acclaim.\"\" Subscribers to Starz can stream episodes of the show on Amazon Video. Season two is not yet available for purchase or rental on Amazon without a Starz account. On August 23, 2016, Anchor Bay Entertainment released the first season of the series on Blu-ray and DVD. The second season hit home media in the fall of 2017. The third and final season hit home media in August of 2018. On December 11,"} +{"qid": "test508", "pid": "593875", "query": "when was the term social justice first used", "answer": "the 1840s", "passage": "\"Social justice\"\nreinterpreting historical figures such as Bartolomé de las Casas, in philosophical debates about differences among human beings, in efforts for gender, racial and social equality, for advocating justice for migrants, prisoners, the environment, and the physically and developmentally disabled. While the concept of social justice can be traced through the theology of Augustine of Hippo and the philosophy of Thomas Paine, the term \"\"social justice\"\" became used explicitly from the 1840s. A Jesuit priest named Luigi Taparelli is typically credited with coining the term, and it spread during the revolutions of 1848 with the work of Antonio Rosmini-Serbati. However, recent"} +{"qid": "test509", "pid": "18950704", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 10)\"\nepisode. General references The Big Bang Theory (season 10) The tenth season of the American sitcom \"\"The Big Bang Theory\"\" premiered on CBS Monday, September 19, 2016 and concluded on Thursday, May 11, 2017. It returned to its regular Thursday time slot on October 27, 2016, after \"\"Thursday Night Football on CBS\"\". On March 12, 2014, \"\"The Big Bang Theory\"\" was renewed for an additional three years, extending it through the 2016–17 season for a total of ten seasons. Like the previous two seasons, the first five episodes of the tenth season aired on a different night due"} +{"qid": "test509", "pid": "18950701", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 10)\"\nThe Big Bang Theory (season 10) The tenth season of the American sitcom \"\"The Big Bang Theory\"\" premiered on CBS Monday, September 19, 2016 and concluded on Thursday, May 11, 2017. It returned to its regular Thursday time slot on October 27, 2016, after \"\"Thursday Night Football on CBS\"\". On March 12, 2014, \"\"The Big Bang Theory\"\" was renewed for an additional three years, extending it through the 2016–17 season for a total of ten seasons. Like the previous two seasons, the first five episodes of the tenth season aired on a different night due to to \"\"Thursday Night Football\"\""} +{"qid": "test509", "pid": "14572597", "query": "big bang theory season 11 how many episodes", "answer": "12", "passage": "\"The Big Bang Theory (season 2)\"\nThe Big Bang Theory (season 2) The second season of the American sitcom \"\"The Big Bang Theory\"\" was originally aired on CBS from September 22, 2008, to May 11, 2009, over 23 episodes. The Complete Season DVD was released September 15, 2009, and a Blu-ray version was reissued on July 10, 2012, with remastered surround sound audio, whereas the DVD version only had stereo. Season two starts immediately after the end of season one with Leonard and Penny's date. Jim Parsons submitted the episode \"\"The Bath Item Gift Hypothesis\"\" for consideration due to his nomination for the Primetime Emmy Award"} +{"qid": "test509", "pid": "17860946", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 8)\"\nThe Big Bang Theory (season 8) The eighth season of the American sitcom \"\"The Big Bang Theory\"\" first aired on CBS with a one-hour premiere on Monday, September 22, 2014. It returned to its previous Thursday time slot on October 30 for the season's seventh episode. It concluded on May 7, 2015. On March 12, 2014, \"\"The Big Bang Theory\"\" was renewed for an additional three years, extending it through the 2016–17 season for a total of ten seasons. Mayim Bialik submitted the episode \"\"The Prom Equivalency\"\" for consideration due to her nomination for the Primetime Emmy Award for Outstanding"} +{"qid": "test509", "pid": "14572582", "query": "big bang theory season 11 how many episodes", "answer": "12", "passage": "\"The Big Bang Theory (season 1)\"\nThe Big Bang Theory (season 1) The first season of the American sitcom \"\"The Big Bang Theory\"\" was originally aired on CBS from September 24, 2007, to May 19, 2008, over 17 episodes. An unaired pilot also exists. The Season 1 DVD came without a gag reel and is, so far, the only \"\"Big Bang Theory\"\" DVD set not to have one. The reissued Blu-ray, was released July 10, 2012, and includes a gag reel that is exclusive to the set. The episodes on Blu-ray are all in remastered surround sound, whereas the DVD version had stereo. Two of the"} +{"qid": "test509", "pid": "18832362", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 9)\"\nThe Big Bang Theory (season 9) The ninth season of the American sitcom \"\"The Big Bang Theory\"\" started airing on CBS on Monday, September 21, 2015. It returned to its regular Thursday time slot on November 5, 2015 for the season's seventh episode. It concluded on May 12, 2016. On March 12, 2014, \"\"The Big Bang Theory\"\" was renewed for an additional three years, extending it through the 2016–17 season for a total of ten seasons. Laura Spencer was upgraded to the main cast during the season as Dr. Emily Sweeney, after being a recurring cast member for two seasons."} +{"qid": "test509", "pid": "10248582", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory\"\nseason. The second half of season seven aired in mid 2014. The eighth season premiered on E4 on October 23, 2014 at 8:30 p.m. During its eighth season, \"\"The Big Bang Theory\"\" shared its 8:30 p.m. time period with fellow CBS comedy, \"\"2 Broke Girls\"\". Following the airing of the first eight episodes of that show's fourth season, \"\"The Big Bang Theory\"\" returned to finish airing its eighth season on March 19, 2015. Netflix UK & Ireland announced on February 13, 2016 that seasons 1–8 would be available to stream from February 15, 2016. \"\"The Big Bang Theory\"\" started off"} +{"qid": "test509", "pid": "15603122", "query": "big bang theory season 11 how many episodes", "answer": "12", "passage": "\"The Big Bang Theory (season 5)\"\nThe Big Bang Theory (season 5) The fifth season of the American sitcom \"\"The Big Bang Theory\"\" was originally aired on CBS from September 22, 2011, to May 10, 2012, over 24 episodes. At the 64th Primetime Emmy Awards, \"\"The Big Bang Theory\"\" was nominated for Outstanding Comedy Series, but \"\"Modern Family\"\" on ABC won. The show was also nominated for Outstanding Technical Direction, Camerawork, Video Control for a Series and Outstanding Multi-Camera Picture Editing For A Comedy Series. Jim Parsons (Sheldon Cooper) was nominated for Outstanding Lead Actor in a Comedy Series for \"\"The Werewolf Transformation\"\", but lost out"} +{"qid": "test509", "pid": "15603129", "query": "big bang theory season 11 how many episodes", "answer": "12", "passage": "\"The Big Bang Theory (season 5)\"\n1, on September 2, 2012, in Region 2 and October 3, 2012, in Region 4. The episodes can also be purchased on Amazon Video or the iTunes store in the US. In Canada, \"\"The Big Bang Theory\"\" aired on CTV Television Network. The season premiere (\"\"The Skank Reflex Analysis\"\") garnered 3.72 million viewers and the finale was watched by 4.04 million households. Most episodes were the most watched programme in Canada that week. The highest rating in season 5 was 4.05 million, for \"\"The Infestation Hypothesis\"\", and the lowest rating was 3.17 million, for \"\"The Stag Convergence\"\". The Big Bang"} +{"qid": "test509", "pid": "16062975", "query": "big bang theory season 11 how many episodes", "answer": "12", "passage": "\"The Big Bang Theory (season 6)\"\nbecome a crutch for the writers to lean on\"\". Jesse Schedeen of \"\"IGN\"\" criticized the storylines, writing that \"\"The entire episode was pretty much predicated on two jokes ... But those two jokes had enough mileage in them to last a full 22 minutes\"\". The Big Bang Theory (season 6) The sixth season of the American sitcom \"\"The Big Bang Theory\"\" aired on CBS from September 27, 2012, to May 16, 2013. The series crossed the 20 million viewer mark for the first time with this season's \"\"The Bakersfield Expedition\"\", which along with \"\"NCIS\"\", made CBS the first network to"} +{"qid": "test509", "pid": "16777402", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 7)\"\nthe 66th Primetime Emmy Awards for the episode \"\"The Relationship Diremption\"\". Bob Newhart submitted the episode \"\"The Proton Transmogrification\"\" for consideration due to his nomination for the Primetime Emmy Award for Outstanding Guest Actor in a Comedy Series at the 66th Primetime Creative Arts Emmy Awards. Lucasfilm helped with the creation of the episode. On March 12, 2014, \"\"The Big Bang Theory\"\" was renewed for an additional three years, extending it through the 2016–17 season for a total of ten seasons. Production for the seventh season began on August 14, 2013. The seventh season received positive reviews. Oliver"} +{"qid": "test509", "pid": "16777401", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 7)\"\nThe Big Bang Theory (season 7) The seventh season of the American sitcom \"\"The Big Bang Theory\"\" aired on CBS from September 26, 2013, to May 15, 2014. Kaley Cuoco was credited as \"\"Kaley Cuoco-Sweeting\"\" from \"\"The Convention Conundrum\"\" and onwards after her wedding with Ryan Sweeting on December 31, 2013. Mayim Bialik submitted the episode \"\"The Indecision Amalgamation\"\" for consideration due to her nomination for the Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series at the 66th Primetime Emmy Awards. Jim Parsons won the Primetime Emmy Award for Outstanding Lead Actor in a Comedy Series at"} +{"qid": "test509", "pid": "16777404", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 7)\"\nAnd just gets ever better\"\". The Big Bang Theory (season 7) The seventh season of the American sitcom \"\"The Big Bang Theory\"\" aired on CBS from September 26, 2013, to May 15, 2014. Kaley Cuoco was credited as \"\"Kaley Cuoco-Sweeting\"\" from \"\"The Convention Conundrum\"\" and onwards after her wedding with Ryan Sweeting on December 31, 2013. Mayim Bialik submitted the episode \"\"The Indecision Amalgamation\"\" for consideration due to her nomination for the Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series at the 66th Primetime Emmy Awards. Jim Parsons won the Primetime Emmy Award for Outstanding Lead Actor"} +{"qid": "test509", "pid": "15603124", "query": "big bang theory season 11 how many episodes", "answer": "14", "passage": "\"The Big Bang Theory (season 5)\"\nordered in a three-year renewal for \"\"The Big Bang Theory\"\", extending the series through the 2013-2014 season. Several high-profile celebrities appear in the season. In \"\"The Transporter Malfunction\"\", actor Leonard Nimoy appears as a voice actor, playing an action-figure Spock that Sheldon imagines talking to him. In the following episode, \"\"The Hawking Excitation\"\", cosmologist Stephen Hawking appears as a guest star. Astronaut Mike Massimino appears in \"\"The Friendship Contraction\"\" and \"\"The Countdown Reflection\"\". Stephen Hawking went on to appear in the season 6 episode \"\"The Extract Obliteration\"\" and the season 7 episode \"\"The Relationship Diremption\"\". Mike Massimino later appeared in"} +{"qid": "test51", "pid": "3229975", "query": "what are the zords in the power rangers movie", "answer": "animal-themed Ninja Zords", "passage": "\"Mighty Morphin Power Rangers: The Movie\"\nand he unleashes them on Angel Grove, ordering the parents to commit suicide at the construction site. Fred, Bulk, Skull and the other kids head to the construction site to save their parents. The Rangers return with their new animal-themed Ninja Zords and destroy one of Ivan's Ecto-Morphicons. Ivan takes control of the other and battles the Rangers himself. The Rangers lead Ivan into space right into the path of Ryan's Comet, which destroys him. His destruction breaks the hypnosis and the parents are reunited with their children. The Rangers then use the Great Power to restore the Command Center"} +{"qid": "test511", "pid": "1608183", "query": "who has the most international goals of all time", "answer": "Ali Daei", "passage": "\"Ali Daei\"\nhim past Hungarian legend Ferenc Puskás to top the all-time list of scorers in international matches. On 17 November 2004, he scored four goals against Laos in a World Cup qualifier, giving him 102 goals and making him the first male player to score 100 goals in international play. He has 149 caps for Iran and is ranked 21st among the world's most capped players list. On 8 October 2006, upon sudden leave of Saipa's German coach Werner Lorant, he was appointed as the interim coach of Saipa. He was later officially announced as the full-time head coach. On 28"} +{"qid": "test512", "pid": "20022022", "query": "how many gold medals won by india in 2018 commonwealth games", "answer": "26", "passage": "\"India at the 2018 Commonwealth Games\"\nIndia at the 2018 Commonwealth Games India competed at the 2018 Commonwealth Games at Gold Coast, Australia from 4 to 15 April 2018. It was India's 18th appearance at the Commonwealth Games. With 26 Gold medals and a total of 66 medals, India finished 3rd for the tournament. It was India's best position since the 2010 Commonwealth Games, which they hosted. The following is a list of the number of competitors representing India that participated at the Games per India/discipline: India was the best nation in 5 disciplines, weightlifting, shooting, wrestling, badminton and table tennis, and the second best nation"} +{"qid": "test512", "pid": "20022026", "query": "how many gold medals won by india in 2018 commonwealth games", "answer": "26", "passage": "\"India at the 2018 Commonwealth Games\"\nManika Batra, Mouma Das, Sutirtha Mukherjee, Madhurika Patkar and Pooja Sahasrabudhe. India participated with 12 athletes (6 men and 6 women). India at the 2018 Commonwealth Games India competed at the 2018 Commonwealth Games at Gold Coast, Australia from 4 to 15 April 2018. It was India's 18th appearance at the Commonwealth Games. With 26 Gold medals and a total of 66 medals, India finished 3rd for the tournament. It was India's best position since the 2010 Commonwealth Games, which they hosted. The following is a list of the number of competitors representing India that participated at the Games per"} +{"qid": "test512", "pid": "20662086", "query": "how many gold medals won by india in 2018 commonwealth games", "answer": "26", "passage": "\"2018 Commonwealth Games medal table\"\nlisted alphabetically by their three-letter country code. Australia tops the medal table rank with 80 gold, second England with 45 gold and third India with 26 gold. Host nation (Australia) Khumukcham Sanjita Chanu, the Weightlifting Women's 53 kg gold medallist for India subsequently failed an anti-doping test, but later her B sample found negative and she was handed over her medal back. 2018 Commonwealth Games medal table The 2018 Commonwealth Games (officially known as the XXI Commonwealth Games), were a multi-sport event held in Gold Coast, Queensland, Australia, between 4 and 15 April 2018. 275 medal events were held"} +{"qid": "test512", "pid": "14927506", "query": "how many gold medals won by india in 2018 commonwealth games", "answer": "66", "passage": "\"India at the 1966 British Empire and Commonwealth Games\"\nIndia at the 1966 British Empire and Commonwealth Games This was the 5th time India participated in Commonwealth Games. Probably the Best Commonwealth Games for India so far, in terms of Medals won. India participated in most sports this time, involving, Athletics, Badminton, Boxing, Weightlifting and Wrestling. India won silver in Men's Hammer Throw, where Praveen Kumar threw Hammer to a distance of 60.13m. Dinesh Khanna won first medal in Badminton for India in Commonwealth Games. He won Bronze medal. Gold and Silver was won by Malaysian players. India won Silver in Weightlifting too. In Men's 60 kg Combined, Mohon"} +{"qid": "test512", "pid": "7962360", "query": "how many gold medals won by india in 2018 commonwealth games", "answer": "26", "passage": "\"Field hockey in India\"\nfrom penalty corners (19th, 26th, 38th, 49th and 51st). Indian Men's Team Finished in 9th place in World Cup 2014 held in Hague, Netherlands. Indian team won Silver Medal at the Commonwealth Games 2014, Glasgow. They lost to Australia 4-0 in the Finals. India will host the 2018 World Cup. India won 2014 Asian Games Gold Medal after 16 years ( last won in 1998). India won Asia Cup held in DHaka in 2017. Indian Men's hockey team won by a record 26-0 margin against Hong Kong in the 2018 Asian Games pool games. The earlier record was 24-1 made"} +{"qid": "test512", "pid": "14927507", "query": "how many gold medals won by india in 2018 commonwealth games", "answer": "66", "passage": "\"India at the 1966 British Empire and Commonwealth Games\"\nL. Ghosh won silver. Arun K. Das, placed himself 5th in same event. The Medal hunt in Wrestling continues for India in this games too. India won all three Gold medals this year in Wrestling only, with additional 2 Silver and 2 Bronze medals. India at the 1966 British Empire and Commonwealth Games This was the 5th time India participated in Commonwealth Games. Probably the Best Commonwealth Games for India so far, in terms of Medals won. India participated in most sports this time, involving, Athletics, Badminton, Boxing, Weightlifting and Wrestling. India won silver in Men's Hammer Throw, where Praveen"} +{"qid": "test514", "pid": "18281109", "query": "who is the best director in bollywood 2017", "answer": "Nitesh Tiwari", "passage": "\"Nitesh Tiwari\"\nin Metallurgy and Material Science engineering. Tiwari worked as a creative director at Leo Burnett before he entered Bollywood. He lives at a quaint bungalow in Chembur with his wife Ashwiny Iyer Tiwari, who was his colleague and creative director at Leo Burnett. She turned a film director. The couple have twins, a boy and a girl. Nitesh Tiwari Nitesh Tiwari is an Indian film director, screenwriter, and lyricist known for his works in Bollywood. He made his directorial debut by co-directing \"\"Chillar Party\"\" (2011) which won the National Film Award for Best Children's Film for that year. He then"} +{"qid": "test514", "pid": "18281107", "query": "who is the best director in bollywood 2017", "answer": "Nitesh Tiwari", "passage": "\"Nitesh Tiwari\"\nNitesh Tiwari Nitesh Tiwari is an Indian film director, screenwriter, and lyricist known for his works in Bollywood. He made his directorial debut by co-directing \"\"Chillar Party\"\" (2011) which won the National Film Award for Best Children's Film for that year. He then directed the supernatural political drama \"\"Bhoothnath Returns\"\" (2014) which became a box office hit. In 2016, he scripted, and directed \"\"Dangal\"\" which was screened at the Beijing International Film Festival in April 2017 and second BRICS festival in June 2017. The film is the highest-grossing Indian films and the fifth highest grossing non-English film, having collected over"} +{"qid": "test515", "pid": "19036885", "query": "what is the word for clarified butter in the balkans and middle east", "answer": "smen", "passage": "\"Middle Eastern cuisine\"\nor dried fruits. Butter and clarified butter (also known as smen) are, traditionally, the preferred medium of cooking. Olive oil is prevalent in the Mediterranean coastal areas. Christians use it during Lent, when meat and dairy products are excluded, and Jews use it in place of animal fats such as butter to avoid mixing meat and dairy products. Most regions in the Middle East use spices. Typically, a stew will include a small amount of cinnamon, nutmeg, cloves, cumin, and coriander. Black pepper is common, and chili peppers are used occasionally, especially as a separate sauce or as a pickle."} +{"qid": "test515", "pid": "16525477", "query": "what is the word for clarified butter in the balkans and middle east", "answer": "smen", "passage": "\"M'semen\"\nstuffed with optional fillings. The original name is derived from the Arabic word \"\"samn\"\" or \"\"smen\"\", meaning \"\"clarified butter\"\". The \"\"m\"\" prefix makes the whole term \"\"with clarified butter\"\", because it is a substantial ingredient to prepare the bread. A variety that is made from pulling the dough into strands and forming a disk is called is also called \"\"malawi\"\" in North Africa. The recipe uses flour, durum wheat semolina, dry yeast, melted butter, salt, sugar and a bit of water. These are mixed well together into a smooth dough mixture, later cut into several balls which are then rolled"} +{"qid": "test516", "pid": "3364829", "query": "who played the girl in silence of the lambs", "answer": "Jodie Foster", "passage": "\"Clarice Starling\"\nClarice Starling Clarice M. Starling is a fictional character who appears in the novels \"\"The Silence of the Lambs\"\" and \"\"Hannibal\"\" by Thomas Harris. In the film adaptation of \"\"The Silence of the Lambs\"\", she was played by Jodie Foster, while in the film adaptation of \"\"Hannibal\"\", she was played by Julianne Moore. Clarice Starling, as portrayed by Foster, was ranked the sixth greatest protagonist in film history on AFI's \"\"100 Years...100 Heroes and Villains\"\", making her the highest-ranking heroine. In 1991, for her portrayal of Starling she also received the Academy Award for Best Actress. In \"\"The Silence of"} +{"qid": "test516", "pid": "575041", "query": "who played the girl in silence of the lambs", "answer": "Jodie Foster", "passage": "Cunt\npersists, and in \"\"The Silence of the Lambs\"\" (1991), Agent Starling (Jodie Foster) meets Dr. Hannibal Lecter (Anthony Hopkins) for the first time and passes the cell of \"\"Multiple Miggs\"\", who says to Starling: \"\"I can smell your cunt.\"\" In versions of the film edited for television the word is dubbed with the word scent. The 2010 film \"\"Kick-Ass\"\" caused a controversy when the word was used by Hit-Girl because the actress playing the part, Chloë Grace Moretz, was 11 years old at the time of filming. In Britain, use of the word \"\"cunt\"\" may result in an \"\"18\"\" rating"} +{"qid": "test516", "pid": "7667385", "query": "who played the girl in silence of the lambs", "answer": "Jodie Foster", "passage": "\"45th British Academy Film Awards\"\nSilence of the Lambs\"\" Jodie Foster in \"\"The Silence of the Lambs\"\" \"\"The Commitments\"\" \"\"The Commitments\"\" - Alan Parker Alan Rickman in \"\"\"\" Kate Nelligan in \"\"Frankie and Johnny\"\" \"\"Cyrano de Bergerac - Pierre Lhomme\"\" \"\"Cyrano de Bergerac\"\" - Franca Squarciapino \"\"The Commitments\"\" - Gerry Hambling \"\"The Nasty Girl\"\" \"\"' \"\"Cyrano de Bergerac - Jean-Pierre Eychenne, Michele Burke\"\" \"\"Cyrano de Bergerac - Jean-Claude Petit\"\" \"\"Edward Scissorhands - Bo Welch\"\" \"\"The Commitments - Dick Clement, Ian La Frenais and Roddy Doyle\"\" \"\"Truly, Madly, Deeply - Anthony Minghella\"\" John Gielgud Winners Nominees 45th British Academy Film Awards The 45th British Film Awards,"} +{"qid": "test516", "pid": "404956", "query": "who played the girl in silence of the lambs", "answer": "Jodie Foster", "passage": "\"The Silence of the Lambs (film)\"\nThe Silence of the Lambs (film) The Silence of the Lambs is a 1991 American psychological horror-thriller film directed by Jonathan Demme from a screenplay written by Ted Tally, adapted from Thomas Harris's 1988 novel of the same name. The film stars Jodie Foster, Anthony Hopkins, Scott Glenn, Ted Levine, and Anthony Heald. In the film, Clarice Starling, a young FBI trainee, seeks the advice of the imprisoned Dr. Hannibal Lecter, a brilliant psychiatrist and cannibalistic serial killer to apprehend another serial killer, known only as \"\"Buffalo Bill\"\", who skins his female victims' corpses. The novel was Harris's first and"} +{"qid": "test516", "pid": "404984", "query": "who played the girl in silence of the lambs", "answer": "Jodie Foster", "passage": "\"The Silence of the Lambs (film)\"\nthe \"\"Playboy\"\" centerfold.\"\" The Silence of the Lambs (film) The Silence of the Lambs is a 1991 American psychological horror-thriller film directed by Jonathan Demme from a screenplay written by Ted Tally, adapted from Thomas Harris's 1988 novel of the same name. The film stars Jodie Foster, Anthony Hopkins, Scott Glenn, Ted Levine, and Anthony Heald. In the film, Clarice Starling, a young FBI trainee, seeks the advice of the imprisoned Dr. Hannibal Lecter, a brilliant psychiatrist and cannibalistic serial killer to apprehend another serial killer, known only as \"\"Buffalo Bill\"\", who skins his female victims' corpses. The novel was"} +{"qid": "test516", "pid": "7498593", "query": "who played the girl in silence of the lambs", "answer": "Jodie Foster", "passage": "\"The Silence of the Lambs (novel)\"\nActor, Best Actress, and Best Screenplay. It stars Jodie Foster as Clarice Starling and Anthony Hopkins as Hannibal Lecter. In 2005, comedian-musicians Jon and Al Kaplan parodied the story, especially the film, in \"\"Silence! The Musical\"\". It premiered Off-Off-Broadway and has since had productions in London and Los Angeles. In 2012, the Los Angeles production won the Los Angeles Drama Critics Circle awards for Score, Lead Performance, and Choreography. The Silence of the Lambs (novel) The Silence of the Lambs is a novel by Thomas Harris. First published in 1988, it is the sequel to Harris' 1981 novel \"\"Red Dragon\"\"."} +{"qid": "test519", "pid": "9439341", "query": "who owns spirit of the suwannee music park", "answer": "The Cornett family", "passage": "\"Spirit of the Suwannee Music Park\"\nof the Suwannee river bordering the park, hosts over 25 diverse, fun events throughout the year. AURA Music and Arts Festival, Suwannee Hulaween, Wanee Music Festival, Springfest, Suwannee Festival of Lights, and Suwannee River Jam are some of these annual festivals. The park offers multiple stages, miles of trails and over for camping, hiking, canoe and kayak rentals on the river, horseback riding, a restaurant and country store. Besides a variety of other flora and fauna it includes a large bat house which has become a home to an increasing number of bats. The Cornett family has been making improvements"} +{"qid": "test52", "pid": "17897693", "query": "who plays the voice of johnny in sing", "answer": "Taron Egerton", "passage": "\"Stay with Me (Sam Smith song)\"\nW. The song is featured in the television shows \"\"Mistresses, Girlfriends' Guide to Divorce,\"\" \"\"Bad Education,\"\" and \"\"The Mindy Project.\"\" Actor Marlon Wayans lip synced this song on the show \"\"Lip Sync Battle\"\". The song is played in the emotional scene where Mary, Queen of Scots (Adelaide Kane) and a dying Francis II of France (Toby Regbo) dance together in the television show \"\"Reign\"\". In the 2016 animated film \"\"Sing,\"\" Johnny (voiced by Taron Egerton) sings this song as his audition for the singing competition. The song is also used as the background music for the Inspiron 17 5000 commercial,"} +{"qid": "test521", "pid": "19554895", "query": "when will the 2018 oscar nominations be announced", "answer": "January 23, 2018", "passage": "\"Call Me by Your Name (film)\"\nwith similar theater counts,\"\" according to \"\"Deadline Hollywood\"\". The following weekend, after the announcement of its four Oscar nominations, the film's revenues dropped 6 percent to $1.3 million. With a total gross revenue of $9,370,359 by the week of January 23, 2018, \"\"Call Me by Your Name\"\" was the second-lowest-grossing film among that year's Best Picture nominees. However, the online ticketing company Fandango reported that the film had experienced a 56 percent increase in ticket sales through its service since its Best Picture nomination was announced. Regarding the film's \"\"lagging\"\" box-office performance, Tom Brueggemann of IndieWire commented that Sony Picture"} +{"qid": "test521", "pid": "20550638", "query": "when will the 2018 oscar nominations be announced", "answer": "January 23, 2018", "passage": "\"Susan Brnovich\"\n2009, when she was appointed by Governor of Arizona Janet Napolitano, to 2018. On January 23, 2018 President Donald Trump announced his intent to nominate Brnovich to an undetermined seat on the United States District Court for the District of Arizona. On January 24, 2018, her nomination was sent to the United States Senate. She was nominated to the seat vacated by Judge Neil Vincent Wake, who took senior status on July 5, 2016. On May 9, 2018, a hearing on her nomination was held before the Senate Judiciary Committee. Her nomination was voted out of committee on June 7,"} +{"qid": "test523", "pid": "650629", "query": "who is under the mask of darth vader", "answer": "Anakin Skywalker", "passage": "\"Darth Vader\"\nDarth Vader Darth Vader is a fictional character in the \"\"Star Wars\"\" franchise. He is the main antagonist of the original trilogy, but, as Anakin Skywalker, is the main protagonist of the prequel trilogy. \"\"Star Wars\"\" creator George Lucas has collectively referred to the first six episodic films of the franchise as \"\"the tragedy of Darth Vader.\"\" Originally a Jedi prophesied to bring balance to the Force, Anakin Skywalker is lured to the dark side of the Force by Palpatine, who is secretly a Sith Lord. After fighting a lightsaber battle with his former mentor Obi-Wan Kenobi in which he"} +{"qid": "test523", "pid": "650698", "query": "who is under the mask of darth vader", "answer": "Anakin Skywalker", "passage": "\"Darth Vader\"\nthe Terrible, Napoleon, Al Capone and the fictional Pharaoh Kahmunrah, but they judge him only a futile robot, as he does not speak, but tries to Force-choke them, with a gesture they interpret as a sort of salute. In 2010, IGN ranked Darth Vader 25th in the \"\"Top 100 Videogames Villains\"\". In Ukraine, the Internet Party of Ukraine regularly lets people named Darth Vader take part in elections. Footnotes Citations Darth Vader Darth Vader is a fictional character in the \"\"Star Wars\"\" franchise. He is the main antagonist of the original trilogy, but, as Anakin Skywalker, is the main protagonist"} +{"qid": "test523", "pid": "6566745", "query": "who is under the mask of darth vader", "answer": "Anakin Skywalker", "passage": "\"Dark Lord: The Rise of Darth Vader\"\nwants to forget forever. It is revealed that the general public of the galaxy believes that Anakin Skywalker perished in the attack on the Jedi Temple (which Skywalker led as Darth Vader). The novel received largely positive reviews among the \"\"Star Wars\"\" fan communities, and was described as a successful narration of Vader's emotions and perspectives. Luceno told the magazine \"\"Star Wars Insider\"\" about a discussion he had with Ryan Kaufman, formerly of LucasArts, who had worn a Darth Vader costume during the production of a number of LucasArts \"\"Star Wars\"\" video games. Kaufman's description of what it was like"} +{"qid": "test523", "pid": "6566743", "query": "who is under the mask of darth vader", "answer": "Anakin Skywalker", "passage": "\"Dark Lord: The Rise of Darth Vader\"\nGrand Moff Tarkin are also shown. Luceno devotes much of \"\"Dark Lord: The Rise of Darth Vader\"\" to the internal conflict that Darth Vader undergoes as he tries to shed his former identity of Anakin Skywalker and relearn to master the Force. Palpatine intends for these early missions that he sends Vader on to be as much about learning what it means to be a Sith as they are about consolidating the rule of the nascent Empire. The final chapters of \"\"Dark Lord: The Rise of Darth Vader\"\" depict the beginning of the Imperial enslavement of the Wookiees of Kashyyyk,"} +{"qid": "test524", "pid": "20790853", "query": "who plays justin on the haves and the have nots", "answer": "Nicholas James", "passage": "\"Nicholas James (actor)\"\nown words, “I don’t look too Italian and people trip over that name all the time.” His original surname Muscarella has however appeared as part of one of three variations of his name in film and television credits. James's \"\"Haves and Have Nots\"\" character Officer Justin Lewis has been described as being in a \"\"toxic and codependent\"\" relationship with his series love interest Jeffrey Harrington, according to Gavin Houston, who plays that character. As a heterosexual actor portraying a homosexual character (also the case in his debut film \"\"Eating Out 2: Sloppy Seconds\"\"), James falls within an area of concern"} +{"qid": "test524", "pid": "20790851", "query": "who plays justin on the haves and the have nots", "answer": "Nicholas James", "passage": "\"Nicholas James (actor)\"\nNicholas James (actor) Nicholas James (born Nicholas James Muscarella and additionally variously credited as Nick James or Nicholas J. Muscarella) is an American actor. James is known for his recurring role (beginning in 2016) as Officer Justin Lewis in the Tyler Perry-created OWN series \"\"The Haves and the Have Nots\"\" (Season 3 – Season 5, in 63 episodes as of July 2018) as well as for appearances in \"\"Prom Night\"\" (2008) and \"\"\"\" (2014). His earliest credited film appearance was in \"\"\"\" in 2006. Additionally, James has appeared in television commercials for Grupo Modelo and Walmart. Outside of acting, James"} +{"qid": "test526", "pid": "1871098", "query": "when was harry potter and the philosophers stone published", "answer": "1997", "passage": "\"Harry Potter and the Prisoner of Azkaban\"\nwill meet again. \"\"Harry Potter and the Prisoner of Azkaban\"\" is the third book in the \"\"Harry Potter\"\" series. The first, \"\"Harry Potter and the Philosopher's Stone\"\" (\"\"Harry Potter and the Sorcerer's Stone\"\" in the US), was published by Bloomsbury on 26 June 1997 and the second, \"\"Harry Potter and the Chamber of Secrets\"\", was published on 2 July 1998. Rowling started to write the \"\"Prisoner of Azkaban\"\" the day after she finished \"\"The Chamber of Secrets\"\". Rowling's favourite aspect of this book was introducing the character Remus Lupin, Rowling additionally said in 2004 that \"\"Prisoner of Azkaban\"\" was \"\"the"} +{"qid": "test526", "pid": "591532", "query": "when was harry potter and the philosophers stone published", "answer": "in 1997", "passage": "\"Harry Potter and the Philosopher's Stone\"\nHarry's parents, but failed to kill Harry when he was just 15 months old. The book was first published in the United Kingdom in 1997 by Bloomsbury. In 1998, it was published in the United States by Scholastic Corporation under the title Harry Potter and the Sorcerer's Stone. It won most of the British book awards that were judged by children and other awards in the US. The book reached the top of the \"\"New York Times\"\" list of best-selling fiction in August 1999 and stayed near the top of that list for much of 1999 and 2000. It has"} +{"qid": "test526", "pid": "3160313", "query": "when was harry potter and the philosophers stone published", "answer": "1997", "passage": "\"Harry Potter and the Philosopher's Stone (film)\"\nHarry Potter and the Philosopher's Stone (film) Harry Potter and the Philosopher's Stone (released in the United States as Harry Potter and the Sorcerer's Stone) is a 2001 fantasy film directed by Chris Columbus and distributed by Warner Bros. Pictures. It is based on J. K. Rowling's 1997 novel of the same name. The film is the first instalment in the long-running \"\"Harry Potter\"\" film series and was written by Steve Kloves and produced by David Heyman. Its story follows Harry Potter's first year at Hogwarts School of Witchcraft and Wizardry as he discovers that he is a famous wizard"} +{"qid": "test526", "pid": "3160356", "query": "when was harry potter and the philosophers stone published", "answer": "1997", "passage": "\"Harry Potter and the Philosopher's Stone (film)\"\nYears of Film Scores. Harry Potter and the Philosopher's Stone (film) Harry Potter and the Philosopher's Stone (released in the United States as Harry Potter and the Sorcerer's Stone) is a 2001 fantasy film directed by Chris Columbus and distributed by Warner Bros. Pictures. It is based on J. K. Rowling's 1997 novel of the same name. The film is the first instalment in the long-running \"\"Harry Potter\"\" film series and was written by Steve Kloves and produced by David Heyman. Its story follows Harry Potter's first year at Hogwarts School of Witchcraft and Wizardry as he discovers that he"} +{"qid": "test526", "pid": "3378765", "query": "when was harry potter and the philosophers stone published", "answer": "in 1997", "passage": "\"Harry Potter and the Deathly Hallows\"\nHarry Potter and the Deathly Hallows Harry Potter and the Deathly Hallows is a fantasy novel written by British author J. K. Rowling and the seventh and final novel of the \"\"Harry Potter\"\" series. The book was released on 21 July 2007, ending the series that began in 1997 with the publication of \"\"Harry Potter and the Philosopher's Stone\"\". It was published in the United Kingdom by Bloomsbury Publishing, in the United States by Scholastic, and in Canada by Raincoast Books. The novel chronicles the events directly following \"\"Harry Potter and the Half-Blood Prince\"\" (2005) and the final confrontation between"} +{"qid": "test526", "pid": "3378829", "query": "when was harry potter and the philosophers stone published", "answer": "in 1997", "passage": "\"Harry Potter and the Deathly Hallows\"\nHarry Potter and the Deathly Hallows Harry Potter and the Deathly Hallows is a fantasy novel written by British author J. K. Rowling and the seventh and final novel of the \"\"Harry Potter\"\" series. The book was released on 21 July 2007, ending the series that began in 1997 with the publication of \"\"Harry Potter and the Philosopher's Stone\"\". It was published in the United Kingdom by Bloomsbury Publishing, in the United States by Scholastic, and in Canada by Raincoast Books. The novel chronicles the events directly following \"\"Harry Potter and the Half-Blood Prince\"\" (2005) and the final confrontation between"} +{"qid": "test526", "pid": "18868134", "query": "when was harry potter and the philosophers stone published", "answer": "1997", "passage": "\"Harry Potter and the Cursed Child\"\nwould receive its world premiere in mid-2016 at London's Palace Theatre. The announcement marked the eighteenth anniversary of the publication of the first \"\"Harry Potter\"\" novel, \"\"Harry Potter and the Philosopher's Stone\"\", published on 26 June 1997. On announcing plans for the project, Rowling stated that the play would not be a prequel. In response to queries regarding the choice of a play rather than a new novel, Rowling has stated that she \"\"is confident that when audiences see the play they will agree that it is the only proper medium for the story\"\". Rowling has also assured audiences that"} +{"qid": "test526", "pid": "1994081", "query": "when was harry potter and the philosophers stone published", "answer": "in 1997", "passage": "\"Scholastic Corporation\"\n180, mathematics intervention for middle school, and FasttMath, a technology based program to teach basic math facts. The EdTech and Services business was sold to Houghton Mifflin Harcourt in 2015 for $575 million. To appeal to American children, in 1997, Scholastic (through Arthur A. Levine Books) purchased the US publication rights to the first \"\"Harry Potter\"\" book, \"\"Harry Potter and the Philosopher's Stone\"\", which was renamed \"\"Harry Potter and the Sorcerer's Stone\"\". It continues to publish \"\"Harry Potter\"\" books, each title a best seller. Scholastic's growth has continued by acquiring other media companies. In February 2012, it bought Weekly Reader"} +{"qid": "test526", "pid": "206070", "query": "when was harry potter and the philosophers stone published", "answer": "in 1997", "passage": "\"J. K. Rowling\"\nworking as a researcher and bilingual secretary for Amnesty International when she conceived the idea for the \"\"Harry Potter\"\" series while on a delayed train from Manchester to London in 1990. The seven-year period that followed saw the death of her mother, birth of her first child, divorce from her first husband and relative poverty until the first novel in the series, \"\"Harry Potter and the Philosopher's Stone\"\", was published in 1997. There were six sequels, of which the last, \"\"Harry Potter and the Deathly Hallows\"\", was released in 2007. Since then, Rowling has written five books for adult readers:"} +{"qid": "test527", "pid": "157091", "query": "who is the father of genetics and what did he study", "answer": "Mendel", "passage": "Genetics\nGenetics Genetics is a branch of biology concerned with the study of genes, genetic variation, and heredity in organisms. Gregor Mendel, a scientist and Augustinian friar, discovered genetics in the late 19th-century. Mendel studied \"\"trait inheritance\"\", patterns in the way traits are handed down from parents to offspring. He observed that organisms (pea plants) inherit traits by way of discrete \"\"units of inheritance\"\". This term, still used today, is a somewhat ambiguous definition of what is referred to as a gene. Trait inheritance and molecular inheritance mechanisms of genes are still primary principles of genetics in the 21st century, but"} +{"qid": "test527", "pid": "17043536", "query": "who is the father of genetics and what did he study", "answer": "Mendel", "passage": "\"In the Name of the Brother\"\nextraordinary things discovered in the real world are likely to be \"\"studied to death.\"\" The name of the character Greg Mendell is similar to that of Gregor Mendel, who is known as the father of modern genetics. It is not known if this reference is deliberate, or what its significance is. Mendell acknowledges that it is against the law to text while driving in Maine, accurately reflecting a state law that went into effect on September 26, 2011. This episode was at the time the lowest rated in the series' run, with a 2.4/6 among 18-49s and only 7.68 million"} +{"qid": "test529", "pid": "19470566", "query": "what state did they film daddy's home 2", "answer": "Massachusetts", "passage": "\"Daddy's Home 2\"\nDaddy's Home 2 Daddy's Home 2 is a 2017 American Christmas comedy film directed by Sean Anders and written by Anders and John Morris. A sequel to \"\"Daddy's Home\"\" (2015), it stars Will Ferrell, Mark Wahlberg, Linda Cardellini, John Cena, with John Lithgow and Mel Gibson. The plot follows now reformed-fathers Brad and Dusty (Ferrell and Wahlberg), now co-parenting Dusty's kids, who have to deal with their own fathers (Lithgow and Gibson) visiting for the holidays. Principal photography on the film began in Massachusetts in March 2017 and it was released in the United States by Paramount Pictures on November"} +{"qid": "test529", "pid": "19470583", "query": "what state did they film daddy's home 2", "answer": "Great Barrington, Massachusetts", "passage": "\"Daddy's Home 2\"\nIn January 2017, it was reported that Mel Gibson and John Lithgow were being sought to play the main characters' fathers in the film. The two were later confirmed to star, along with Linda Cardellini, John Cena, Owen Vaccaro and Scarlett Estevez, reprising their roles. Principal photography began on March 20, 2017. Scenes were filmed in Concord, Massachusetts,Clinton, Massachusetts,Framingham, Massachusetts, Lawrence, Massachusetts and Great Barrington, Massachusetts. The film was released in the United States on November 10, 2017. \"\"Daddy's Home 2\"\" was released on Digital HD on February 6, 2018, and was released on Blu-ray and DVD on February 20,"} +{"qid": "test530", "pid": "9034974", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Gauhati University\"\nGauhati University Gauhati University located in Jalukbari, Guwahati, is the oldest and one of the most renowned University in the entire North East India. It was established in 1948. It is a teaching-cum-affiliating university. There are several colleges, institutes etc. that are affiliated to this university. At present there are approximately 326 Colleges/Institutes which comes under this university, which are mostly located in the districts of Lower Assam. The first public demand was made at the annual session of the Assam Association held at Sivasagar in 1917. In 1940 the Government appointed S. K. Bhuyan as Special Officer with the"} +{"qid": "test530", "pid": "3456656", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "Guwahati\ndecided to shift the capital to Dispur. Accordingly, the first sitting of the Budget Session of the Assam Legislative Assembly was held at Dispur on 16 March 1973. Dispur houses the Secretariat of Assam Government, the Assam Assembly House, the National Bank for Agriculture and Rural Development (NABARD) Regional Office, the North Eastern Development Finance Corporation Ltd (NEDFi) House and the Guwahati Tea Auction Centre (GTAC). Guwahati Municipal Corporation (GMC) is the local body responsible for governing, developing and managing the city. GMC is further divided into 31 municipal wards. Guwahati Metropolitan Development Authority (GMDA) is an agency responsible for"} +{"qid": "test530", "pid": "13294674", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Assam Cricket Association\"\nAssam Cricket Association Assam Cricket Association is the governing body of the Cricket activities in the Assam state of India and the Assam cricket team. It is affiliated to the Board of Control for Cricket in India. The current office of the Assam Cricket Association is at the ACA Stadium, Barsapara, Guwahati. Himanta Biswa Sarma became the president of the Assam Cricket Association in June 2016. Since Assam played its first home match in 1948, it has also played first-class home matches in chronological order Shillong, Jorhat, Nowgong, Dibrugarh, Karimganj, Hailakandi, Mangaldoi and Tinsukia. Until the 2002–03 season, when the"} +{"qid": "test530", "pid": "20445305", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Guwahati International Film Festival\"\nGuwahati International Film Festival The Guwahati International Film Festival (GIFF) () is an annual film festival held in Guwahati, Assam, India.The State Government-owned Jyoti Chitraban (Film Studio) Society organised the festival in association with the Dr. Bhupen Hazarika Regional Government Film and Television Institute. The first ever Guwahati International Film Festival (GIFF) to be held in northeast India, which will be inaugurated on October 28, 2017 by Assam Chief Minister Sarbananda Sonowal. The Assam government supported festival began on October 28 with screening of the Oscar winning ‘The Salesman’, directed by Asghar Farhadi and produced by a joint collaboration of"} +{"qid": "test530", "pid": "9888778", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Lakshminath Bezbaroa\"\nthat he created and portrayed as the lead character in such works. He is also known in Assamese literary society as the Sahityarathi (সাহিত্যৰথী) which means \"\"Charioteer of Literature\"\" for his expertise in all branches of literature. . He presided over the All-Assam Students' Conference at Guwahati in 1921. He presided over the 7th annual session of Assam Sahitya Sabha held at Guwahati in 1924. He died in Dibrugarh on 26 March at the age of seventy only a few months after he went back to live in Assam permanently. The Asom Sahitya Sabha annually observes this day Sahitya Divas."} +{"qid": "test530", "pid": "8519627", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Assam State Zoo cum Botanical Garden\"\nAssam State Zoo cum Botanical Garden The Assam State Zoo cum Botanical Garden (popularly known as Guwahati Zoo) is the largest of its kind in the North East region and it is spread across 432 acre (175 hectare). The zoo is located within the Hengrabari Reserved Forest at Guwahati, India. The zoo is home to about 895 animals, birds and reptiles representing almost 113 species of animals and birds from around the world. The 64th session of Indian National Congress was held in Guwahati, in the year 1957. The Organising committee of INC organised an exhibit with included few animals"} +{"qid": "test530", "pid": "18826942", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Chandraprava Saikiani\"\nspeaker at the Nagaon session of the Assam Sahitya Sabha in 1925 where she called upon the women attendees who were seated in a separate enclosure to break the barriers and the women heeded her call to come out to the open area. Returning to her village, she joined Kaljirapara school as a teacher but resigned her job when she was denied permission to attend the Guwahati session of the Indian National Congress. She continued her social activism and founded Assam Pradeshik Mahila Samiti in 1926 to act against child marriage, polygamy and the discrimination of women at the temples"} +{"qid": "test530", "pid": "13289867", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Bhabananda Deka\"\nSatra and Byaskuchi Satra (Vaisnavite Monastery) in Barpeta District of Assam in India. He died on 4 December 2006 at his residence in Pub Sarania, Guwahati. Assam Legislative Assembly officially mourned his death in a special Winter Session in presence of 126 Members(MLAs) and Chief Minister with his all Cabinet Colleagues, wherein the Speaker of the Assembly presiding over the Session formally read out a Resolution in official acknowledgement of his role in propagating Assamese language and literature outside the state of Assam at all-India and international level. The Chief Minister of Assam Tarun Gogoi also officially condoled the death"} +{"qid": "test530", "pid": "14698153", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Tarun Ram Phukan\"\na great orator and also a prominent writer. He served as the President of the Asam Sahitya Sabha, a premier literary organisation in Assam at its Goalpara Session in 1927. He also served as President of the Assam Chhatra Sammelan in 1928. He also bought the first bicycle and the first motor car in Guwahati. In 1921, Assam Provincial Congress Committee was formed with its headquarters at Guwahati and Kuladhar Chaliha as its president. Phookan became the president. The reconstituted APCC elected Phookan, Gopinath Bordoloi, Bimala Prasad Chaliha, Chandranath Sarmah, Krishna Nath Sarmah and Kanak Chandra Sarmah as the members"} +{"qid": "test530", "pid": "13294678", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Assam Cricket Association\"\nAssam Cricket Association. Assam Cricket Association conducts various district level tournaments for different age groups. Those are: Affiliated members of Assam Cricket Association are: North-East Frontier Railway Sports Association, Tezpur, Guwahati, Dibrugarh, Silchar, Nowgong, Barpeta, Jorhat, Bongaigaon, Sivasagar, Charaideo, Golaghat, Tinsukia, Nazira, Morigaon, Goalpara, Dhubri, Biswanath Chariali, Karimganj, Hailakandi, Karbi Anglong, Dima Hasao, Kaliabor, Titabor, Margherita, Bokakhat, Rangiya, Udalguri, Kokrajhar, Lakhimpur, Hojai, Bajali, North Salmara, Bilasipara, Nalbari, Mangaldoi and Dhemaji, NAHARKATIA Assam Cricket Association Assam Cricket Association is the governing body of the Cricket activities in the Assam state of India and the Assam cricket team. It is affiliated to"} +{"qid": "test530", "pid": "17077948", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Assam Football Association\"\nthe Guwahati based clubs. Assam Football Association The Assam Football Association (AFA) is one of the 36 Indian State Football Associations that are affiliated to the All India Football Federation and its current president is Hemendra Nath Brahma, while secretary is Ankur Dutta. Assam Football Association was formed in 1951, but the game of football has been played since before independence of India. The game of Football was introduced by and an institution and some individual persons. It is affiliated to the All India Football Federation, Assam council of sports and Assam Olympic association. The association controls men and women"} +{"qid": "test530", "pid": "14135669", "query": "where was the first session of the assam association held in1905", "answer": "Guwahati", "passage": "\"Brahmaputra Beach Festival\"\nare also held where children can take part. Exhibition of traditional craft is also a part of the festival. Brahmaputra Beach Festival Brahmaputra Festival is an open-air festival held in Guwahati on the ravine beaches of the mighty Brahmaputra river. It is held every year in the month of January that coincides with the Magh Bihu, the harvest festival in Assam. It is said to be inspired from various festivals held in the southern states of India. It is a confluence of the conventional with the modern and represents the culture and tradition of the state of Assam. The aim"} +{"qid": "test531", "pid": "6918588", "query": "who proved that cells come from other cells", "answer": "Robert Remak", "passage": "\"Robert Remak\"\nRobert Remak Robert Remak (26 July 1815 – 29 August 1865) was a Jewish Polish-German embryologist, physiologist, and neurologist, born in Posen, Prussia, who discovered that the origin of cells was by the division of pre-existing cells. as well as several other key discoveries. According to historian Paul Weindling, Rudolf Virchow, one of the founders of modern cell theory, plagiarized the notion that all cells come from pre-existing cells from Remak. Remak had reached the conclusion after observing red blood cells from chicken embryos in various stages of division. He then confirmed that the phenomenon existed in the cell of"} +{"qid": "test531", "pid": "43630", "query": "who proved that cells come from other cells", "answer": "Robert Hooke", "passage": "\"Cell (biology)\"\ncontain more than 10 trillion (10) cells. Most plant and animal cells are visible only under a microscope, with dimensions between 1 and 100 micrometres. Cells were discovered by Robert Hooke in 1665, who named them for their resemblance to cells inhabited by Christian monks in a monastery. Cell theory, first developed in 1839 by Matthias Jakob Schleiden and Theodor Schwann, states that all organisms are composed of one or more cells, that cells are the fundamental unit of structure and function in all living organisms, and that all cells come from pre-existing cells. Cells emerged on Earth at least"} +{"qid": "test531", "pid": "2135257", "query": "who proved that cells come from other cells", "answer": "Robert Remak", "passage": "\"History of biology\"\nof biologists pointed to the central importance of the cell. In 1838 and 1839, Schleiden and Schwann began promoting the ideas that (1) the basic unit of organisms is the cell and (2) that individual cells have all the characteristics of life, though they opposed the idea that (3) all cells come from the division of other cells. Thanks to the work of Robert Remak and Rudolf Virchow, however, by the 1860s most biologists accepted all three tenets of what came to be known as cell theory. Cell theory led biologists to re-envision individual organisms as interdependent assemblages of individual"} +{"qid": "test532", "pid": "11828866", "query": "who sang the song with reba does he love you", "answer": "Linda Davis", "passage": "\"Does He Love You\"\nDoes He Love You \"\"Does He Love You\"\" is a song written by Sandy Knox and Billy Stritch, and recorded as a duet by American country music artists Reba McEntire and Linda Davis. It was released in August 1993 as the first single from Reba's album \"\"Greatest Hits Volume Two\"\". It is one of country music's several songs about a love triangle. \"\"Does He Love You\"\" was written in 1982 by Billy Stritch. He recorded it with a trio in which he performed at the time, because he wanted a song that could be sung by the other two members"} +{"qid": "test532", "pid": "8870096", "query": "who sang the song with reba does he love you", "answer": "Linda Davis", "passage": "\"Greatest Hits Volume Two (Reba McEntire album)\"\n(then a background singer in McEntire's road band), was the first single and turned out to be a smash. It reached number 1 on the country charts. The song also earned them a Grammy award for Best Country Vocal Collaboration as well as the CMA Award for \"\"Vocal Event of the Year\"\". CMT ranked the song at No. 9 on their list of 100 Greatest Duets. \"\"Does He Love You\"\" is the first of three duets featuring Reba and Linda Davis. The album's other new track was \"\"They Asked About You\"\", which peaked at No. 7 on the country chart."} +{"qid": "test532", "pid": "15632586", "query": "who sang the song with reba does he love you", "answer": "Linda Davis", "passage": "\"Red Sandy Spika dress of Reba McEntire\"\nRed Sandy Spika dress of Reba McEntire American recording artist Reba McEntire wore a sheer red dress to the 1993 Country Music Association Awards ceremony on September 29, 1993. The sheer fabric was covered with sequins, and cut with a low neckline. The garment was designed by stylist Sandy Spika, and McEntire wore it during a duet performance of \"\"Does He Love You\"\" with Linda Davis. McEntire later said, \"\"I got more press off that dress than if I'd won entertainer of the year.\"\" According to McEntire, when her little sister, Susie, saw her on stage she leaned over and"} +{"qid": "test532", "pid": "8870095", "query": "who sang the song with reba does he love you", "answer": "Linda Davis", "passage": "\"Greatest Hits Volume Two (Reba McEntire album)\"\nwith increased sales of over 183,000 during Christmas week. This would remain her best selling week sales until 14 years later when \"\"\"\" opened at 300,000 sales. It was taken off the charts at number 184 for the week of January 6, 1996. \"\"Greatest Hits Volume Two\"\" went on to become the best-selling album of McEntire's career, being certified five times platinum by the RIAA. It has gone to sell almost 11 million copies worldwide. Two new songs were recorded for this compilation, both were released as singles. \"\"Does He Love You\"\", a duet that McEntire recorded with Linda Davis"} +{"qid": "test535", "pid": "5527164", "query": "who sings the song i'll never forget you", "answer": "Mariah Carey", "passage": "\"Never Forget You (Mariah Carey song)\"\nNever Forget You (Mariah Carey song) \"\"Never Forget You\"\" is a song performed by American singer Mariah Carey. It was co-written by Carey and Babyface. It was produced by Carey, Babyface, and Daryl Simmons for Carey's third studio album, \"\"Music Box\"\" (1993). It was released as the fourth single from \"\"Music Box\"\" in the first quarter of 1994, as a double A-side with a cover of Badfinger's \"\"Without You.\"\" Lyrically, the song's protagonist describes her ex-lover and although they have since moved on, she will never forget them. No music video was commissioned for the album version or any of"} +{"qid": "test536", "pid": "12418263", "query": "skin that covers the palms fingertips and soles of the feet", "answer": "stratum lucidum", "passage": "Hand\nis tightly bound to the underlying tissue and bones. Compared to the rest of the body's skin, the hands' palms (as well as the soles of the feet) are usually lighter — and even much lighter in dark-skinned individuals, compared to the other side of the hand. Indeed, genes specifically expressed in the dermis of palmoplantar skin inhibit melanin production and thus the ability to tan, and promote the thickening of the stratum lucidum and stratum corneum layers of the epidermis. All parts of the skin involved in grasping are covered by papillary ridges (fingerprints) acting as friction pads. In"} +{"qid": "test536", "pid": "5965753", "query": "skin that covers the palms fingertips and soles of the feet", "answer": "stratum lucidum", "passage": "\"Stratum lucidum\"\nStratum lucidum The stratum lucidum (Latin for \"\"clear layer\"\") is a thin, clear layer of dead skin cells in the epidermis named for its translucent appearance under a microscope. It is readily visible by light microscopy only in areas of thick skin, which are found on the palms of the hands and the soles of the feet. Located between the stratum granulosum and stratum corneum layers, it is composed of three to five layers of dead, flattened keratinocytes. The keratinocytes of the stratum lucidum do not feature distinct boundaries and are filled with eleidin, an intermediate form of keratin. They"} +{"qid": "test537", "pid": "12824348", "query": "who dies in the lost city of z", "answer": "Manley", "passage": "\"The Lost City of Z (film)\"\nFawcett goes to France to fight. Manley dies in the trenches at the Battle of the Somme, and Fawcett is temporarily blinded in a chlorine gas attack. Jack, Fawcett's eldest son—who had long accused Fawcett of abandoning the family—reconciles with his father as he recovers. In 1923, Fawcett is living in obscurity in Britain. North American interest in exploring the Amazon has reached fever pitch, primarily due to Fawcett's stories of the lost city. John D. Rockefeller Jr. and a consortium of US newspapers finance a new expedition by Fawcett. The RGS co-funds the expedition at the last moment to"} +{"qid": "test538", "pid": "19071809", "query": "where do the astros play for spring training", "answer": "Osceola County Stadium", "passage": "\"2016 Houston Astros season\"\nback of the division champion Texas Rangers. 2016 marked the final year the Astros will play their spring training ball at Osceola County Stadium in Kissimmee, Florida, where Houston has played since 1985. In 2017, the Astros will move to The Ballpark of The Palm Beaches, a brand new stadium located in West Palm Beach, Florida that Houston will share with the Washington Nationals. Houston finished fifth in the Grapefruit League with an 18–11 record, four games back of the champion Nationals. \"\"Through 2016 season\"\" 2016 Houston Astros season The 2016 Houston Astros season was the 55th season for the"} +{"qid": "test538", "pid": "3557534", "query": "where do the astros play for spring training", "answer": "West Palm Beach", "passage": "\"Washington Nationals\"\nplay their annual slate of Grapefruit League games. From 2005 through 2016, they held spring training at Space Coast Stadium in Viera, Florida, a facility that they inherited from the Expos. In 2017, the Nationals moved their spring training operations to The Ballpark of the Palm Beaches, a new facility they share with the Houston Astros in West Palm Beach, Florida; they played their first Grapefruit League game there on February 28, 2017. On February 16, 2018, it was renamed FITTEAM Ballpark of the Palm Beaches after the Nationals and Astros signed a 12-year deal for the naming rights to"} +{"qid": "test538", "pid": "5165224", "query": "where do the astros play for spring training", "answer": "Osceola County Stadium", "passage": "\"Osceola County Stadium\"\nrenovation in 2003 at a price of US$18.4 million The renovation increased seating capacity, upgraded the press box, improved the clubhouses, and added \"\"Autograph Alley\"\" which is a popular feature of spring training events. The Astros' lease with the ballpark ended in 2017. On November 9, 2015, groundbreaking commenced for a new spring training facility for both the Astros and Washington Nationals in West Palm Beach. The Osceola County Complex was also home of the Jim Evans Academy of Professional Umpiring where many hopeful future major league umpires went to learn the trade. Additionally, it hosts numerous amateur baseball events"} +{"qid": "test538", "pid": "183876", "query": "where do the astros play for spring training", "answer": "Osceola County Stadium", "passage": "\"Houston Astros\"\nKile died as an active player with the St. Louis Cardinals. In addition, the Astros have not issued the number 17 since Lance Berkman was traded in 2010. The number 42 is retired by Major League Baseball in honor of Jackie Robinson. The Astros have held their spring training at FITTEAM Ballpark of the Palm Beaches in West Palm Beach, Florida since 2017. They share the stadium with the Washington Nationals. From 1985 to 2016, the Astros held spring training at Osceola County Stadium in Kissimmee, Florida. *In December 2016, the Astros agreed to a 30-year deal to field a"} +{"qid": "test538", "pid": "1040943", "query": "where do the astros play for spring training", "answer": "West Palm Beach", "passage": "\"West Palm Beach, Florida\"\nLeague play at BB&T Center in Sunrise to the south. Major League Baseball's Miami Marlins, the National Football League's Miami Dolphins and the Miami Heat of the National Basketball Association all play in nearby Miami-Dade County. In the past, West Palm Beach has hosted various professional teams such as arena football, minor-league ice hockey, baseball, and semi-professional football teams. Spring Training Baseball: FITTEAM Ballpark of the Palm Beaches opened in February 2017 and accommodates both the Houston Astros and Washington Nationals for spring training. The Miami Marlins and St. Louis Cardinals conduct spring training in suburban West Palm Beach in"} +{"qid": "test538", "pid": "811290", "query": "where do the astros play for spring training", "answer": "West Palm Beach", "passage": "\"Palm Beach County, Florida\"\n2017 in West Palm Beach, accommodates both the Washington Nationals and the Houston Astros for spring training. Prior to the construction of Roger Dean Stadium, the Montreal Expos and Atlanta Braves held their spring training at Municipal Stadium in West Palm Beach. The West Palm Beach Expos, a Single-A affiliate of the Montreal Expos, also played their games there. Also popular are the Florida Atlantic Owls, an NCAA Division I school that participates in Conference USA. The FAU football team play at FAU Stadium, and averaged 17,941 fans during the 2017 season. The FAU basketball team plays at FAU Arena,"} +{"qid": "test539", "pid": "2138250", "query": "when was the last time oklahoma won a national championship in football", "answer": "2000", "passage": "\"University of Oklahoma\"\nin French Impressionism and Native American artwork, and the Sam Noble Oklahoma Museum of Natural History, specializing in the natural history of Oklahoma. The school, well known for its athletic programs, claims multiple national championships in multiple sports, including 7 football national championships and 2 NCAA Division I baseball championships. The women's softball team has won the national championship four times: in 2000, 2013, and consecutively in 2016 and 2017. The gymnastics teams have won a combined 11 national championships since 2002, with the men's team winning 8 in the last 15 years, including three consecutive titles from 2015 to"} +{"qid": "test539", "pid": "8709019", "query": "when was the last time oklahoma won a national championship in football", "answer": "2003", "passage": "\"Texas Longhorns football\"\na heated affair as the Oklahoma staff was accused of spying on Texas' practices, a move later confirmed by former OU head coach Barry Switzer. In the 2008 season Texas scored 45 points over then No. 1 Oklahoma for the win, but even with the victory Texas would not go on to the Big 12 Championship game due to BCS rankings. Six of the last ten showings featured one of the participants in the BCS National Championship Game (2000, 2003–2005, 2008, 2009), including national titles won by Oklahoma in 2000 and by Texas in 2005. On October 6, 2018 the"} +{"qid": "test539", "pid": "5231936", "query": "when was the last time oklahoma won a national championship in football", "answer": "2003", "passage": "\"Skip Bertman\"\njob was eventually given to Notre Dame coach Paul Mainieri. Mainieri led the Tigers to the 2009 College World Series championship, the sixth baseball national championship in school history and the first not won with Bertman as head coach. Bertman presided over two football national championship seasons as athletic director. The Tigers won the 2003 BCS championship under coach Nick Saban. When Saban left at the end of the 2004 season to coach the Miami Dolphins of the National Football League, Bertman moved quickly to hire Oklahoma State coach Les Miles. Miles led LSU to a consensus national championship in"} +{"qid": "test539", "pid": "20325113", "query": "when was the last time oklahoma won a national championship in football", "answer": "2003", "passage": "\"2017 Cape Verdean Football Championship Final\"\nGroup A while Sporting Praia competed in Group C, the first participant of each of the three groups. Sporting Praia had reached the national championship final 14 times, 12 with the playoff stage winning eight of nine. The last time they won a champion title was last season in 2012. Ultramarina Tarrafal reached the national championship final in 2003 and never won a title. Sporting Praia won their 10th and recent national football championship title, it now has two behind Mindelense's totals. 2017 Cape Verdean Football Championship Final The 2017 Cape Verdean Football Championship final was the final of the"} +{"qid": "test539", "pid": "8465142", "query": "when was the last time oklahoma won a national championship in football", "answer": "2000", "passage": "\"Oklahoma Sooners football\"\nare noted for playing in the Game of the Century, in 1971 which OU lost 35–31. In 1996, the teams joined the Big XII Conference when Nebraska joined the North Division, and Oklahoma joined the South Division, thus ending the annual match-ups between the programs in 1998 and 1999. In 2000 the series resumed with Nebraska and Oklahoma being ranked number one and two in the BCS rankings. OU won 31–14. Oklahoma leads the inactive series 45–38–3 as of 2018 with the last game being the 2010 Big 12 Championship Game, won by Oklahoma 23–20. The two programs are scheduled"} +{"qid": "test539", "pid": "19191392", "query": "when was the last time oklahoma won a national championship in football", "answer": "2000", "passage": "\"Seth Littrell\"\nSeth Littrell James Seth Littrell (born July 24, 1978) is an American football coach and former player. He is currently the head coach of the North Texas Mean Green football team. Littrell was born in Muskogee, Oklahoma, and attended the University of Oklahoma, where he played four years and was a team captain on the Oklahoma Sooners football team that won the 2000 national championship. He graduated in 2001 with a degree in communications. His father, Jimmy, also played fullback at OU and won two national championships in 1974 and 1975. Litrell started his coaching as a graduate assistant for"} +{"qid": "test539", "pid": "13220445", "query": "when was the last time oklahoma won a national championship in football", "answer": "2000", "passage": "\"2005 NCAA conference realignment\"\nwon twice, partly due to the concurrent rise of the Southeastern Conference as the NCAA's pre-eminent football power conference (an SEC member school won every national championship in D-I FBS football each season from 2006 to 2012). The ACC's two football national championship since 2005 have been Florida State's 2013 championship over Auburn and Clemson's 2016 championship over Alabama. The ACC's last national championship prior to the realignment was in 1999, when Florida State beat future ACC member (and then Big East member) Virginia Tech in the 2000 Sugar Bowl. The Big East's last national championship came in 2001, when"} +{"qid": "test539", "pid": "7299656", "query": "when was the last time oklahoma won a national championship in football", "answer": "2003", "passage": "\"2002 NCAA Division I-A football season\"\nthe Pac-10. However, Big Ten-champion Ohio State, finishing #2 in the BCS, had qualified to play in the 2003 Fiesta Bowl for the national championship against Miami (Florida) Earlier in the season, Ohio State had defeated Washington State 25-7. After the national championship was set, the Orange Bowl had the next pick, and invited #3 (#5 BCS) Iowa from the Big Ten. When it was the Rose Bowl's turn to select, the best available team was #8 (#7 BCS) Oklahoma, who won the Big 12 Championship Game. When it came time for the Orange Bowl and Sugar Bowl to make"} +{"qid": "test539", "pid": "7562432", "query": "when was the last time oklahoma won a national championship in football", "answer": "2000", "passage": "\"Rocky Calmus\"\nHigh School in Jenks, Oklahoma. There, he was a star linebacker and running back on a team ranked third in nation and helped start a run to six consecutive Oklahoma Class 6A state championships. While attending the University of Oklahoma, Calmus played for coach John Blake andBob Stoops's Oklahoma Sooners football team from 1998 to 2001. He was a three-time first-team All-Big 12 selection (1999, 2000, 2001), and a two-time consensus first-team All-American (2000, 2001). He was recognized as the Big 12 Defensive Player of the Year as a junior and senior, and won the Butkus Award as the nation's"} +{"qid": "test539", "pid": "6851690", "query": "when was the last time oklahoma won a national championship in football", "answer": "2000", "passage": "\"Roy Williams (safety)\"\ngraduated from James Logan High School in Union City, California, where he played quarterback, wide receiver and defensive back for the Logan Colts high school football. Williams attended the University of Oklahoma, and played for coach Bob Stoops's Oklahoma Sooners football team from 1999 to 2001. He was a starter on the undefeated 2000 Oklahoma Sooners team that won the BCS National Championship, setting a school record for tackles for a loss by a defensive back with 12. In 2001, his junior season at Oklahoma, he won the Bronko Nagurski Trophy as the nation's top overall defensive player and also"} +{"qid": "test541", "pid": "10256027", "query": "when was the last time dallas cowboys won the super bowl", "answer": "1995", "passage": "\"1995 Dallas Cowboys season\"\n1995 Dallas Cowboys season The 1995 Dallas Cowboys season was the franchise's 36th season in the National Football League and was the second year under head coach Barry Switzer and final of the three Super Bowl titles they would win during 1992 to 1995. Dallas would be the first team to ever win three Super Bowls in a span of four seasons. Switzer guided the Cowboys to a fifth Super Bowl victory by defeating the Pittsburgh Steelers in Super Bowl XXX. As of 2017, this is the last time the Cowboys appeared in the NFC Championship Game, and in turn,"} +{"qid": "test541", "pid": "15096448", "query": "when was the last time dallas cowboys won the super bowl", "answer": "1995", "passage": "\"2011 New York Giants season\"\ndefeated by the Pittsburgh Steelers. Additionally, upon defeating the Patriots in Super Bowl XLVI the Giants became the first NFC East Division champion to win the Super Bowl since the Dallas Cowboys in 1995 (the Giants were a Wild Card team when they won Super Bowl XLII). Some news organizations, among them \"\"The St. Louis Post-Dispatch\"\", said that the Giants' victory in the Super Bowl made them NFL's version of the 2011 World Series champion St. Louis Cardinals, saying that these two championship teams that had been given the last rites by many near the end of the season, emerged"} +{"qid": "test541", "pid": "9863703", "query": "when was the last time dallas cowboys won the super bowl", "answer": "1995", "passage": "\"2007 Dallas Cowboys season\"\nwith just 16 seconds left, Romo heaved a desperation pass into the back of the end zone, into double coverage, which was intercepted by Giants cornerback R.W. McQuarters, effectively ending the game, 21-17 Giants. The 2007 Dallas Cowboy season ended in disappointment, after raising huge hopes with a spectacular 13-3 regular season, the best season for the Cowboys since their last Super Bowl season of 1995. The Giants would go on to shock the undefeated New England Patriots in the Super Bowl. 2007 Dallas Cowboys season The 2007 Dallas Cowboys season was the 48th season for the team in the"} +{"qid": "test541", "pid": "394787", "query": "when was the last time dallas cowboys won the super bowl", "answer": "1995", "passage": "\"Super Bowl XXX\"\nXXX was also the last Super Bowl to have a team wear jerseys with screen printed numbers as was the case with the Cowboys. The Cowboys entered the 1995 regular season attempting to become the first team in NFL history to win three out of the last four Super Bowls. They had previously won Super Bowls XXVII and XXVIII but their chance of a \"\"three-peat\"\" (winning three consecutive championships) was thwarted when they lost the NFC Championship Game to the San Francisco 49ers, the eventual Super Bowl XXIX champions. This was the Cowboys’ eighth appearance in the Super Bowl, the"} +{"qid": "test543", "pid": "17832177", "query": "legislation regarding data protection and security in uk", "answer": "Data Protection Act 1998", "passage": "\"Network Sovereignty\"\ninformation privacy legislation (see the EU's Data Protection Directive, the UK's Data Protection Act 1998). Network Sovereignty has implications for state security, Internet governance, and the users of the Internet's national and international networks. Networks are challenging places for states to extend their sovereign control. In her book \"\"Sociology in the Age of the Internet\"\", communications professor Allison Cavanagh argues that state sovereignty has been drastically decreased by networks. Other scholars such as Saskia Sassen and Joel R. Reidenberg agree. Sassen argues that the state's power is limited in cyberspace and that networks, particularly the numerous private tunnels for institutions"} +{"qid": "test544", "pid": "129167", "query": "where does the eurostar train arrives in london", "answer": "St Pancras International", "passage": "Eurostar\nfor the longest non-stop high-speed journey, a distance of from London to Cannes taking 7 hours 25 minutes. On 4 September 2007, a record-breaking train left Paris Gare du Nord at 10:44 (09:44 BST) and reached London St Pancras in 2 hours 3 minutes 39 seconds; carrying journalists and railway workers. This record trip was also the first passenger-carrying arrival to the new St Pancras International station. On 20 September 2007, Eurostar broke another record when it completed the journey from Brussels to London in 1 hour, 43 minutes. The original proposals for Eurostar included direct services to Paris and"} +{"qid": "test544", "pid": "129180", "query": "where does the eurostar train arrives in london", "answer": "St Pancras International", "passage": "Eurostar\nas a one-way service, with return trains carrying passengers to Rotterdam and Brussels Midi/Zuid, making a 28-minute stop (which has not been deemed long enough to process UK-bound passengers) and then carrying different passengers from Brussels to London. Passengers travelling back must take Thalys services to Brussels Midi/Zuid where they can join the Eurostar. This is owing to the lack of UK Border Force facilities at Amsterdam Centraal and Rotterdam Centraal. Since 14 November 2007, all Eurostar trains have been routed via High Speed 1 to or from the redeveloped London terminus at St Pancras International, which at a cost"} +{"qid": "test544", "pid": "129158", "query": "where does the eurostar train arrives in london", "answer": "St Pancras International", "passage": "Eurostar\nEurostar Eurostar is a high-speed railway service connecting London with Amsterdam, Avignon, Brussels, Lille, Lyon, Marseille, Paris and Rotterdam. All its trains traverse the Channel Tunnel between the United Kingdom and France, owned and operated separately by Getlink. The London terminus is St Pancras International, the other British calling points being Ebbsfleet International and Ashford International in Kent. Intermediate calling points in France are Calais-Fréthun and Lille-Europe, with trains to Paris terminating at Gare du Nord. Trains to Belgium terminate at Midi/Zuid station in Brussels. The only intermediate calling point in the Netherlands is Rotterdam Centraal, with trains terminating at"} +{"qid": "test544", "pid": "129184", "query": "where does the eurostar train arrives in london", "answer": "St Pancras International", "passage": "Eurostar\nusing the North of London trainsets across the rest of Britain, Eurostar has developed its connections with other transport services instead, such as integrating effectively with traditional UK rail operators' schedules and routes, making it possible for passengers to use Eurostar as a quick connection to further destinations on the continent. All three main terminals used by the Eurostar service – St Pancras International, Paris Gare du Nord, and Brussels Midi/Zuid – are served by domestic trains and by local urban transport networks such as the London Underground and the Paris Metro. Standard Eurostar tickets no longer include free onward"} +{"qid": "test545", "pid": "1489599", "query": "what is the main religion in british columbia", "answer": "Catholic", "passage": "\"Surrey, British Columbia\"\nby 104,720 (22.6%) of the population. Other frequently reported religions included: Roman Catholic (13.8%) and Christian, n.i.e. (7.6%). In comparison, the top three most frequently reported religions in British Columbia were: Roman Catholic (reported by 15.0% of the population of British Columbia), Christian, n.i.e. (7.2%) and United Church (5.1%).\"\" As of 2010, Surrey had the highest median family income of CDN$78,283, while BC provincial median was $71,660, and national's median was $74,540. The average family income was $85,765. South Surrey area had the highest average household income of all six town centres in Surrey, with an average of $86,824 as"} +{"qid": "test545", "pid": "12201876", "query": "what is the main religion in british columbia", "answer": "Catholic", "passage": "\"Steven Engler\"\nas Kardecism and Umbanda. His work on theories of religion engages semantic holism, a philosophical position in the area of semantics. Engler was born and raised in the interior of British Columbia.. He received a B.A. in Philosophy from the University of British Columbia in 1986; a M.A. in Philosophy from the University of Toronto in 1989; and a Ph.D. in Religion from Concordia University in 1999. Steven Engler Steven Joseph Engler (born 1962) is a Canadian scholar of religion, Professor at Mount Royal University, \"\"Professor Colaborador\"\" in the Graduate Program in \"\"Ciêncas da Religião\"\" at the Pontifical Catholic University"} +{"qid": "test545", "pid": "17526425", "query": "what is the main religion in british columbia", "answer": "Catholic", "passage": "\"Burnaby North—Seymour\"\n3.3% Italian, 2.8% Korean, 1.6% Spanish, 1.5% Persian, 1.2% French, 1.2% Tagalog, 1.1% German
Religions: 44.8% Christian (21.3% Catholic, 4.5% United Church, 4.0% Anglican, 1.5% Christian Orthodox, 1.3% Baptist, 1.2% Lutheran, 1.0% Presbyterian, 10.1% Other), 3.6% Buddhist, 2.9% Muslim, 45.6% No religion
Median income (2010): $29,910
Average income (2010): $41,002
Main industries: Professional, scientific and technical services (11.2% of labour force); Retail trade (10.0%); Health care and social assistance (9.1%) This riding has elected the following members of the House of Commons of Canada: Burnaby North—Seymour Burnaby North—Seymour () is a federal electoral district in British Columbia. It"} +{"qid": "test545", "pid": "5913747", "query": "what is the main religion in british columbia", "answer": "Protestant", "passage": "\"Charles Herbert Mackintosh\"\ndeclared him to be \"\"warm hearted, amiable and altogether likeable\"\". He was a life director of the Carleton County Protestant Home for the Aged in Ottawa, Ontario. In politics, he was a Liberal-Conservative, being noted as \"\"an imperialist of no uncertain sound\"\", and served as vice-president of the British Empire League in Canada. In religion, he was an Anglican. He was a member of two gentleman's clubs, the Union Club, Victoria, British Columbia, and of the Vancouver Club, Vancouver, British Columbia. He was author of the \"\"Liberal-Conservative Handbook\"\" (1876), and wrote a prize essay entitled \"\"Potential Resources of British Columbia\"\""} +{"qid": "test545", "pid": "17695650", "query": "what is the main religion in british columbia", "answer": "Catholic", "passage": "\"Nanaimo—Ladysmith\"\nChinese
Religions: 43.2% Christian (11.0% Catholic, 7.4% United Church, 7.0% Anglican, 2.0% Baptist, 1.7% Lutheran, 1.6% Pentecostal, 1.3% Presbyterian, 11.2% Other), 53.0% No religion
Median income (2010): $27,826
Average income (2010): $35,078 Nanaimo—Ladysmith Nanaimo—Ladysmith is a federal electoral district in British Columbia. It encompasses a portion of British Columbia that was included in the electoral districts of Nanaimo—Alberni and Nanaimo—Cowichan. Nanaimo—Ladysmith was created by the 2012 federal electoral boundaries redistribution and is to be legally defined in the 2013 representation order. It has come into effect with the call of the 42nd Canadian federal election, on August 2,"} +{"qid": "test545", "pid": "7516214", "query": "what is the main religion in british columbia", "answer": "Catholic", "passage": "\"Chris Kempling\"\ntenets, no violation of his right to freedom of religion could be established. Intervening on Kempling's behalf in the Court of Appeal hearing were the Evangelical Fellowship of Canada, the Catholic Civil Rights League, the Christian Teachers Association, The Christian Legal Fellowship, and the British Columbia Teachers' Federation. The British Columbia Civil Liberties Association and the British Columbia Public School Employers' Association intervened on behalf of the BCCT. Leave to appeal the Court of Appeal's ruling to the Supreme Court of Canada was denied in January, 2006. While his appeals were in process, Kempling was interviewed by CBC Radio in"} +{"qid": "test546", "pid": "7158056", "query": "krypton-85 decays by emission of a beta particle. the product of this decay is", "answer": "rubidium-85", "passage": "Krypton-85\ntype 5651. Krypton-85 Krypton-85 (Kr) is a radioisotope of krypton. It has a half-life of 10.756 years and a maximum decay energy of 687 keV. It decays into stable, non-radioactive rubidium-85. Its most common decay (99.57%) is by beta particle emission with maximum energy of 687 keV and an average energy of 251 keV. The second most common decay (0.43%) is by beta particle emission (maximum energy of 173 keV) followed by gamma ray emission (energy of 514 keV). Other decay modes have very small probabilities and emit less energetic gammas. It's one of the 33 known isotopes of krypton."} +{"qid": "test546", "pid": "7158050", "query": "krypton-85 decays by emission of a beta particle. the product of this decay is", "answer": "rubidium-85", "passage": "Krypton-85\nKrypton-85 Krypton-85 (Kr) is a radioisotope of krypton. It has a half-life of 10.756 years and a maximum decay energy of 687 keV. It decays into stable, non-radioactive rubidium-85. Its most common decay (99.57%) is by beta particle emission with maximum energy of 687 keV and an average energy of 251 keV. The second most common decay (0.43%) is by beta particle emission (maximum energy of 173 keV) followed by gamma ray emission (energy of 514 keV). Other decay modes have very small probabilities and emit less energetic gammas. It's one of the 33 known isotopes of krypton. In terms"} +{"qid": "test547", "pid": "12134009", "query": "who sings every light in the house is on", "answer": "Trace Adkins", "passage": "\"Every Light in the House\"\nalbum \"\"Did I Shave My Back for This?\"\", country parodist Cledus T. Judd parodied the song as \"\"Every Light in the House Is Blown\"\". Trace Adkins is featured in the music video. Every Light in the House \"\"Every Light in the House\"\" is a song written by Kent Robbins and recorded by American country music artist Trace Adkins. It was released in August 1996 as the second single from his debut album \"\"Dreamin' Out Loud\"\". It was his first Top 5 single on the Hot Country Singles & Tracks (now Hot Country Songs) chart, where it peaked at #3. The"} +{"qid": "test547", "pid": "12134005", "query": "who sings every light in the house is on", "answer": "Trace Adkins", "passage": "\"Every Light in the House\"\nEvery Light in the House \"\"Every Light in the House\"\" is a song written by Kent Robbins and recorded by American country music artist Trace Adkins. It was released in August 1996 as the second single from his debut album \"\"Dreamin' Out Loud\"\". It was his first Top 5 single on the Hot Country Singles & Tracks (now Hot Country Songs) chart, where it peaked at #3. The song is a mid-tempo ballad mostly accompanied by piano and fiddle in which the narrator was recently split from his wife. He literally turns every single light on in the house and"} +{"qid": "test548", "pid": "1496292", "query": "who was the leader of the soviet union when the berlin wall was built", "answer": "Khrushchev", "passage": "\"Alec Douglas-Home\"\nthe inter-war years – the two men respected and liked one another. Home supported Macmillan's ambition to get Britain into the EEC, and was happy to leave the negotiations in Heath's hands. Home's attention was mainly concentrated on the Cold War, where his forcefully expressed anti-communist beliefs were tempered by a pragmatic approach to dealing with the Soviet Union. His first major problem in this sphere was in 1961 when on the orders of the Soviet leader, Nikita Khrushchev, the Berlin Wall was erected to stop East Germans escaping to West Germany via West Berlin. Home wrote to his American"} +{"qid": "test548", "pid": "15509742", "query": "who was the leader of the soviet union when the berlin wall was built", "answer": "Khrushchev", "passage": "\"Mikhail Pervukhin\"\nthe East German leader, invited Pervukhin to his summer house to discuss the East German immigration flow to West Germany. There Ulbricht told Pervukhin that if the Soviets did not react soon, East Germany would \"\"collapse\"\". Pervukhin discussed other problems as well, claiming that Ulbricht but also the East German leadership in general, were opposed to the Soviet Union's plan to improve relations with West Germany. When Khrushchev gave his approval to construct what would become the Berlin Wall, Pervukhin was the first to know. Ulbricht told Pervukhin of the need to create the East–West barrier at night, and he"} +{"qid": "test549", "pid": "3301344", "query": "how many stores does lowes have in canada", "answer": "62", "passage": "\"Lowe's\"\nalso expanded into western Canada, starting with three new stores in Calgary, Alberta. One of the three locations opened in late September 2010. The other two opened in early 2011. There are now stores in British Columbia, Manitoba and Saskatchewan. To date (2018) Lowe's has 62 locations in Canada. Each store represents an average investment of $20.5 million ($20.4 million USD). In February 2013, former Walmart Canada and Loblaw Companies executive Sylvain Prud'homme was hired as CEO of Lowe's Canada. On May 11, 2015, Lowe's Canada announced that it would acquire the leases of 13 former Target Canada stores, as"} +{"qid": "test55", "pid": "6672895", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Cortical reaction\"\nCortical reaction The cortical reaction is a process initiated during fertilization by the release of cortical granules from the egg, which prevents polyspermy, the fusion of multiple sperm with one egg. In contrast to the fast block of polyspermy which immediately but temporarily blocks additional sperm from fertilizing the egg, the cortical reaction gradually establishes a permanent barrier to sperm entry and functions as the main part of the slow block of polyspermy in many animals. To create this barrier cortical granules, specialized secretory vesicles located within the egg's cortex (the region directly below the plasma membrane), are fused with"} +{"qid": "test55", "pid": "6936290", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Double fertilization\"\nfertilization is often used to study the molecular interactions as well as other aspects of gamete fusion in flowering plants. One of the major obstacles in developing an in vitro double fertilization between male and female gametes is the confinement of the sperm in the pollen tube and the egg in the embryo sac. A controlled fusion of the egg and sperm has already been achieved with poppy plants. Pollen germination, pollen tube entry, and double fertilization processes have all been observed to proceed normally. In fact, this technique has already been used to obtain seeds in various flowering plants"} +{"qid": "test55", "pid": "13030213", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Lipid bilayer fusion\"\nbilayer also remain separated. Fusion is involved in many cellular processes, particularly in eukaryotes since the eukaryotic cell is extensively sub-divided by lipid bilayer membranes. Exocytosis, fertilization of an egg by sperm and transport of waste products to the lysosome are a few of the many eukaryotic processes that rely on some form of fusion. Fusion is also an important mechanism for transport of lipids from their site of synthesis to the membrane where they are needed. Even the entry of pathogens can be governed by fusion, as many bilayer-coated viruses have dedicated fusion proteins to gain entry into the"} +{"qid": "test55", "pid": "5853639", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Ryuzo Yanagimachi\"\nprocess of sperm penetration through the zona pellucida and fusion with the egg proper in living (hamster) egg, which was the first in mammals. He was one of few who began to study the process and mechanisms of mammalian fertilization using in vitro fertilization technique. Throughout his career he has made numerous, fundamental contributions to our understanding of mammalian fertilization and to the development of assisted fertilization technologies such as in vitro fertilization (IVF) and intracytoplasmic sperm injection (ICSI) which are widely used today in human infertility clinics throughout the world. His comprehensive review of the basic biology of \"\"Mammalian"} +{"qid": "test55", "pid": "6331226", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Human fertilization\"\na sperm and an egg fuse to form a diploid cell, known as zygote. The successful fusion of gametes forms a new organism. Where the spermatozoon is about to pierce, the yolk (ooplasm) is drawn out into a conical elevation, termed the cone of attraction or reception cone. Once the spermatozoon has entered, the peripheral portion of the yolk changes into a membrane, the perivitelline membrane, which prevents the passage of additional spermatozoa. At the beginning of the process, the sperm undergoes a series of changes, as freshly ejaculated sperm is unable or poorly able to fertilize. The sperm must"} +{"qid": "test55", "pid": "7481569", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "Flower\nFlower A flower, sometimes known as a bloom or blossom, is the reproductive structure found in flowering plants (plants of the division Magnoliophyta, also called angiosperms). The biological function of a flower is to effect reproduction, usually by providing a mechanism for the union of sperm with eggs. Flowers may facilitate outcrossing (fusion of sperm and eggs from different individuals in a population) or allow selfing (fusion of sperm and egg from the same flower). Some flowers produce diaspores without fertilization (parthenocarpy). Flowers contain sporangia and are the site where gametophytes develop. Many flowers have evolved to be attractive to"} +{"qid": "test55", "pid": "15344892", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "ADAM7\nto sperm maturation and fertilization. Sperm are immobile until traversing the epididymis, in which the sperm interact with many proteins secreted by epithelial cells of the epididymis. Lacking protease activity, ADAM7 may play roles in protein-protein interactions and cell adhesion processes including sperm-egg fusion. ADAM7 is secreted by epididymis cells and transferred to the maturing sperm's surface. As determined through mouse gene knock-out studies, the amount of ADAM7 secreted is directly linked to ADAM2 and ADAM3 protein levels. Complex formation between ADAM7, Calnexin, Hspa5, and Itm2b have been shown to act as a molecular chaperone after ADAM7 is incorporated into"} +{"qid": "test55", "pid": "1456624", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Lipid-anchored protein\"\nadhesion molecule, receptors, protease inhibitor and complement regulatory proteins. Furthermore, GPI proteins play an important in embryogenesis, development, neurogenesis, the immune system and fertilization. More specifically, the GPI protein IZUMO1R/JUNO (named after the Roman goddess of fertility) on the egg plasma has an essential role in sperm-egg fusion. Releasing the IZUMO1R/JUNO GPI protein from the egg plasma membrane does not allow for sperm to fuse with the egg and it is suggested that this mechanism may contribute to the polyspermy block at the plasma membrane in eggs. Other roles that GPI modification allows for is in the association with membrane"} +{"qid": "test55", "pid": "6331230", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Human fertilization\"\ntakes place, preventing other sperm from fertilizing the same egg. The oocyte now undergoes its second meiotic division producing the haploid ovum and releasing a polar body. The sperm nucleus then fuses with the ovum, enabling fusion of their genetic material. The fusion of cell membranes of the secondary oocyte and sperm takes place. In preparation for the fusion of their genetic material both the oocyte and the sperm undergo transformations as a reaction to the fusion of cell membranes. The oocyte completes its second meiotic division. This results in a mature ovum. The nucleus of the oocyte is called"} +{"qid": "test55", "pid": "6370105", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "Polyspermy\npositive upon fertilization. When sea urchin sperm encounter an egg with a positive charge, sperm-egg fusion is blocked. Thus, after the first sperm contacts the egg and causes the change, subsequent sperms are prevented from fusing. This \"\"electrical polyspermy block\"\" is thought to result because a positively charged molecule in the sperm surface membrane is repelled by the positive charge at the egg surface. Electrical polyspermy blocks operate in many animal species, including frogs, clams, and marine worms, but not in the several mammals that have been studied (hamster, rabbit, mouse). In species without an electrical block, polyspermy is usually"} +{"qid": "test55", "pid": "15677767", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Egg lysin\"\nto create a hole, thereby allowing the sperm to pass through the envelope and fuse with the egg. Lysins exhibit species-specific binding to their egg receptor, possibly through differences in charged surface residues. SP18 is also released from sperm, acting as a potent fusagen of liposomes to mediate the fusion between the sperm and egg cell membranes. Despite a similarity in the overall fold, the variation in the surface features of SP18 and lysin account for their different roles in fertilization. The molecular basis of VERL-lysin interaction was revealed in June 2017 by researchers at Karolinska Institutet and ESRF, who"} +{"qid": "test55", "pid": "2563588", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Acrosome reaction\"\nAcrosome reaction During fertilization, a sperm must first fuse with the plasma membrane and then penetrate the female egg in order to fertilize it. Fusing to the egg usually causes little problem, whereas penetrating through the egg's hard shell or extracellular matrix can present more of a problem to the sperm. Therefore, sperm cells go through a process known as the acrosome reaction which is the reaction that occurs in the acrosome of the sperm as it approaches the egg. The \"\"acrosome\"\" is a cap-like structure over the anterior half of the sperm's head. As the sperm approaches the zona"} +{"qid": "test55", "pid": "2563603", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Acrosome reaction\"\nAcrosome reaction During fertilization, a sperm must first fuse with the plasma membrane and then penetrate the female egg in order to fertilize it. Fusing to the egg usually causes little problem, whereas penetrating through the egg's hard shell or extracellular matrix can present more of a problem to the sperm. Therefore, sperm cells go through a process known as the acrosome reaction which is the reaction that occurs in the acrosome of the sperm as it approaches the egg. The \"\"acrosome\"\" is a cap-like structure over the anterior half of the sperm's head. As the sperm approaches the zona"} +{"qid": "test55", "pid": "5651163", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "Sperm\nSperm Sperm is the male reproductive cell and is derived from the Greek word (σπέρμα) \"\"sperma\"\" (meaning \"\"seed\"\"). In the types of sexual reproduction known as anisogamy and its subtype oogamy, there is a marked difference in the size of the gametes with the smaller one being termed the \"\"male\"\" or sperm cell. A uniflagellar sperm cell that is motile is referred to as a spermatozoon, whereas a non-motile sperm cell is referred to as a spermatium. Sperm cells cannot divide and have a limited life span, but after fusion with egg cells during fertilization, a new organism begins developing,"} +{"qid": "test55", "pid": "15281309", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Oocyte activation\"\nOocyte activation Oocyte (or ovum/egg) activation is a series of processes that occur in the oocyte during fertilization. Sperm entry causes calcium release into the oocyte. In mammals, this has been proposed to be caused by the introduction of phospholipase C isoform zeta (PLCζ) from the sperm cytoplasm, although this remains to be established definitively. Activation of the ovum includes the following events: The sperm may trigger egg activation via the interaction between a sperm protein and an egg surface receptor. Izumo is the sperm cell signal, that will trigger the egg receptor Juno. This receptor is activated by the"} +{"qid": "test55", "pid": "6331225", "query": "name the process of fusion of an egg with a sperm", "answer": "fertilization", "passage": "\"Human fertilization\"\nUpon encountering the secondary oocyte, the acrosome of the sperm produces enzymes which allow it to burrow through the outer jelly coat of the egg. The sperm plasma, then fuses with the egg's plasma membrane, the sperm head disconnects from its flagellum and the egg travels down the Fallopian tube to reach the uterus. In vitro fertilization (IVF) is a process by which egg cells are fertilized by sperm outside the womb, \"\"in vitro\"\". The sperm binds through the corona radiata, a layer of follicle cells on the outside of the secondary oocyte. Fertilization occurs when the nucleus of both"} +{"qid": "test551", "pid": "1626562", "query": "what is a another name for the water cycle", "answer": "the hydrological cycle", "passage": "\"Water cycle\"\nWater cycle The water cycle, also known as the hydrological cycle or the hydrologic cycle, describes the continuous movement of water on, above and below the surface of the Earth. The mass of water on Earth remains fairly constant over time but the partitioning of the water into the major reservoirs of ice, fresh water, saline water and atmospheric water is variable depending on a wide range of climatic variables. The water moves from one reservoir to another, such as from river to ocean, or from the ocean to the atmosphere, by the physical processes of evaporation, condensation, precipitation, infiltration,"} +{"qid": "test552", "pid": "12367747", "query": "what is the biggest determinant of climate in venezuela", "answer": "altitude", "passage": "\"Climate of Venezuela\"\nPico Humboldt are in danger of disappearing. Climate of Venezuela The Climate of Venezuela is characterized for being tropical and isothermal as a result of its geographical location near the Equator, but because of the topography and the dominant wind direction, several climatic types occur which can be the same as found in temperate latitudes, and even polar regions. Latitude exerts little influence on the Venezuelan climate, but the altitude changes it dramatically, particularly the temperature, reaching values very different according to the presence of different thermal floors. While the coastal cities of Maracaibo, Barcelona, Porlamar and Maiquetia can get"} +{"qid": "test552", "pid": "12367734", "query": "what is the biggest determinant of climate in venezuela", "answer": "altitude", "passage": "\"Climate of Venezuela\"\nClimate of Venezuela The Climate of Venezuela is characterized for being tropical and isothermal as a result of its geographical location near the Equator, but because of the topography and the dominant wind direction, several climatic types occur which can be the same as found in temperate latitudes, and even polar regions. Latitude exerts little influence on the Venezuelan climate, but the altitude changes it dramatically, particularly the temperature, reaching values very different according to the presence of different thermal floors. While the coastal cities of Maracaibo, Barcelona, Porlamar and Maiquetia can get extremely hot, cities located at valleys such"} +{"qid": "test552", "pid": "74807", "query": "what is the biggest determinant of climate in venezuela", "answer": "altitude", "passage": "Climate\ntime frame for climatological standard normals. In 1982 the WMO agreed to update climate normals, and these were subsequently completed on the basis of climate data from 1 January 1961 to 31 December 1990. The difference between climate and weather is usefully summarized by the popular phrase \"\"Climate is what you expect, weather is what you get.\"\" Over historical time spans there are a number of nearly constant variables that determine climate, including latitude, altitude, proportion of land to water, and proximity to oceans and mountains. These change only over periods of millions of years due to processes such as"} +{"qid": "test552", "pid": "5726846", "query": "what is the biggest determinant of climate in venezuela", "answer": "altitude", "passage": "\"Gran Sabana\"\nthe south-east it is above . Visitors to the Gran Sabana may notice strong winds to finish up the area of La Escalera and see for first time large areas of savannah. Compared to the average weather of Venezuela, the site moved relatively favorable and cool winds, creating a comfortable feeling. Climate variation is determined by altitude and winds, as the latitude (between 4 ° and 8 ° latitude north) of the site falls within the equatorial belt. The area further north in its lower part is subject to the influence of winds from the east and northeast, resulting in"} +{"qid": "test552", "pid": "20217970", "query": "what is the biggest determinant of climate in venezuela", "answer": "altitude", "passage": "\"Orinoco Basin\"\nthe fifth type of climate. In any case, the existence of this climate would be reduced to the Atlantic coast of the Orinoco delta, where the influence of the northern equatorial current (which here is practically a coastal drift) influences to make the rains much more important On the whole coast common to the Guianas and Venezuela, but that diminish abruptly in Venezuela when advancing inland. At higher altitudes four or five thermal, climatic, biotic or ecological floors can be distinguished according to criteria used by different authors and their interest in their field of research. Temperatures have a very"} +{"qid": "test553", "pid": "2833986", "query": "who invented the printing press and in what year", "answer": "1440", "passage": "\"History of the Ottoman Empire\"\nguilds of writers had denounced the printing press as \"\"the Devil's Invention\"\", and were responsible for a 53-year lag between its invention by Johannes Gutenberg in Europe in c. 1440 and its introduction to the Ottoman society with the first Gutenberg press in Istanbul that was established by the Sephardic Jews of Spain in 1493 (who had migrated to the Ottoman Empire a year earlier, escaping from the Spanish Inquisition of 1492.) However, the printing press was used only by the non-Muslims in the Ottoman Empire until the 18th century. In 1726, Ibrahim Muteferrika convinced the Grand Vizier Nevşehirli Damat"} +{"qid": "test553", "pid": "20098644", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "ChatScript\ninformation can be defined to generate appropriate facts. table: ~inventors(^who ^what) createfact(^who invent ^what) DATA: \"\"Johannes Gutenberg\"\" \"\"printing press\"\" \"\"Albert Einstein\"\" [\"\"Theory of Relativity\"\" photon \"\"Theory of General Relativity\"\"] The above table links people to what they invented (1 per line) with Einstein getting a list of things he did. ChatScript embeds the Curl library and can directly read and write facts in JSON to a website. A ChatScript engine can run in local or server mode. ChatScript comes with a copy of English WordNet embedded within, including its ontology, and creates and extends its own ontology via concept declarations."} +{"qid": "test553", "pid": "484503", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "\"History of East Asia\"\nSheng in the Pinyin system). Pi Sheng's type was made of baked clay, as described by the Chinese scholar Shen Kuo (1031–1095). The world's first metal-based movable type printing press was invented in Korea in 1234, 210 years before Johannes Gutenberg invented a similar press in Germany. Jikji is the world's oldest extant movable metal print book. It was published in Heungdeok Temple in 1377, 78 years prior to Gutenberg's \"\"42-Line Bible\"\" printed during the years 1452-1455. In 1603, the Tokugawa shogunate (military dictatorship) ushered in a long period of isolation from foreign influence in order to secure its power."} +{"qid": "test553", "pid": "11113187", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "\"Schweipolt Fiol\"\nPoland. Unfortunately his attempts to reform the state led to the Partitions of Poland carried out by Prussia, Austria and Russia. The world's first movable type printing technology was invented and developed in China by the Han Chinese printer Bi Sheng between the years 1041 and 1048. In the West, the invention of an improved movable type mechanical printing technology in Europe is credited to the German printer Johannes Gutenberg in 1450. The exact date of Gutenberg's press is debated based on existing screw presses. Gutenberg, a goldsmith by profession, developed a printing system by both adapting existing technologies and"} +{"qid": "test553", "pid": "263463", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "\"Mass media\"\nmost known to be printed before about 1600 have not survived. The term \"\"mass media\"\" was coined with the creation of print media, which is notable for being the first example of mass media, as we use the term today. This form of media started in Europe in the Middle Ages. Johannes Gutenberg's invention of the printing press allowed the mass production of books to sweep the nation. He printed the first book, a Latin Bible, on a printing press with movable type in 1453. The invention of the printing press gave rise to some of the first forms of"} +{"qid": "test553", "pid": "9039638", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "\"Global spread of the printing press\"\nGlobal spread of the printing press The global spread of the printing press began with the invention of the printing press with movable type by Johannes Gutenberg in Mainz, Germany . Western printing technology was adopted in all world regions by the end of the 19th century, displacing the manuscript and block printing. In the Western world, the operation of a press became synonymous with the enterprise of publishing and lent its name to a new branch of media, the \"\"press\"\" (see List of the oldest newspapers). Gutenberg's first major print work was the 42-line Bible in Latin, printed probably"} +{"qid": "test553", "pid": "9039649", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "\"Global spread of the printing press\"\n19th century. On the effects of Gutenberg's printing Global spread of the printing press The global spread of the printing press began with the invention of the printing press with movable type by Johannes Gutenberg in Mainz, Germany . Western printing technology was adopted in all world regions by the end of the 19th century, displacing the manuscript and block printing. In the Western world, the operation of a press became synonymous with the enterprise of publishing and lent its name to a new branch of media, the \"\"press\"\" (see List of the oldest newspapers). Gutenberg's first major print work"} +{"qid": "test553", "pid": "6960200", "query": "who invented the printing press and in what year", "answer": "Johannes Gutenberg", "passage": "\"Berrow's Worcester Journal\"\nBerrow's Worcester Journal Berrow's Worcester Journal is a weekly freesheet tabloid newspaper, based in Worcester, England. Owned by Newsquest, the newspaper is delivered across central and southern Worcestershire county. Worcester was one of the earliest location in Britain to have a printing press where its first press was established in 1548 (about 100 years after Johannes Gutenberg's invention of movable type) and set up by who printed several books on it between 1548 and 1553. The first established records of a Worcester newspaper date from 1690 when Stephen Bryan founded the Worcester Post-Man, which has been published ever since, although"} +{"qid": "test554", "pid": "19583662", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Victoria & Abdul\"\nkneeling at a large statue of the Queen close to the Taj Mahal, talking to it and kissing its feet in respect. On 17 June 2016, it was reported that Judi Dench would play Queen Victoria in \"\"Victoria & Abdul\"\", a film based on the book of the same name by Shrabani Basu. Stephen Frears was set to direct. Dench had also portrayed Victoria in the 1997 film \"\"Mrs Brown\"\". On 5 August 2016, it was announced that Ali Fazal would play Victoria's confidant Abdul Karim, while the film would be co-produced by Working Title Films and BBC Films, and"} +{"qid": "test554", "pid": "19583665", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Victoria & Abdul\"\nreviews, with an average rating of 6.2/10. The site’s critical consensus reads, \"\"\"\"Victoria & Abdul\"\" reunites Dame Judi Dench with the role of Queen Victoria — which is all this period drama needs to overcome its imbalanced narrative.\"\" On Metacritic, the film has a weighted average score of 58 out of 100, based on 34 critics, indicating \"\"mixed or average reviews\"\". In the \"\"Women's Voices for Change\"\", Alexandra MacAaron, who rated the movie eight out of ten, wrote that \"\"Judi Dench's Oscar-worthy second turn as Queen Victoria is a poignant portrait of fading power and human connection.\"\" Christopher Orr's response"} +{"qid": "test554", "pid": "15698059", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Ali Fazal\"\nthe leading role in the horror \"\"Khamoshiyan\"\" (2015) followed by his first American film \"\"Furious 7\"\" (2015). He also played an important role in \"\"Happy Bhag Jayegi\"\", opposite \"\"Diana Penty\"\" in 2016. Fazal has also starred in the British-American film \"\"Victoria & Abdul\"\", which depicts the relationship of Queen Victoria (Judi Dench) and her confidant, Indian servant Abdul Karim (Fazal). The film premiered at the Venice Film Festival in 2017. The costumes worn by the lead actors in the film have been added as part of the official display at Osborne House, the former residence of the Queen of England."} +{"qid": "test554", "pid": "16000878", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Abdul Karim (the Munshi)\"\npresence. He only helps her to read words which she cannot read or merely ordinary submissions on warrants for signature. He does not read English fluently enough to be able to read anything of importance.\"\" Consequently, it is thought unlikely that he could have influenced the government's Indian policy or provided useful information to Muslim activists. The 2017 feature film \"\"Victoria & Abdul\"\", directed by Stephen Frears and starring Ali Fazal as Abdul Karim and Judi Dench as Queen Victoria, offers a fictionalised version of the relationship between Karim and the Queen. Abdul Karim (the Munshi) Mohammed Abdul Karim (1863"} +{"qid": "test554", "pid": "6752225", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Henry Ponsonby\"\nfather's sister, had been married to Lord Melbourne, a crucial advisor to Queen Victoria during her first years on the throne. His son Arthur wrote a biography of him which won the James Tait Black Memorial Prize in 1942: \"\"Henry Ponsonby, Queen Victoria's Private Secretary: His Life from His Letters\"\". In \"\"Mrs. Brown\"\", he was portrayed by Geoffrey Palmer whose close friend and frequent co-star, Dame Judi Dench, played Queen Victoria. In the movie Victoria & Abdul, he was portrayed by Tim Pigott-Smith. Henry Ponsonby Major-General Sir Henry Frederick Ponsonby (10 December 1825 – 21 November 1895), was a British"} +{"qid": "test554", "pid": "19583655", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Victoria & Abdul\"\nVictoria & Abdul Victoria & Abdul is a 2017 British biographical drama film directed by Stephen Frears and written by Lee Hall. The film is based on the book of same name by Shrabani Basu, about the real-life relationship between Queen Victoria of the United Kingdom and her Indian Muslim servant Abdul Karim. It stars Judi Dench, Ali Fazal, Michael Gambon, Eddie Izzard, Tim Pigott-Smith and Adeel Akhtar. The film had its world premiere at the 74th Venice Film Festival, and was theatrically released on 15 September 2017 in the United Kingdom. It has grossed over $65 million worldwide. The"} +{"qid": "test554", "pid": "874702", "query": "who plays the queen in victoria and abdul", "answer": "Judi Dench", "passage": "\"Judi Dench\"\nAlso in 2017, Dench reprised the role of Queen Victoria when she headlined Stephen Frears's \"\"Victoria & Abdul\"\". The biographical comedy-drama depicts the real-life relationship between the monarch and her Indian Muslim servant Abdul Karim, played by opposite Ali Fazal. While the film was met with lukewarm reviews for its \"\"imbalanced narrative\"\", Dench earned specific praise for her performance, earning the actress her 12th Golden Globe nomination. Dench's last film that year was Kenneth Branagh's \"\"Murder on the Orient Express\"\", based on the 1934 novel of the same name by Agatha Christie. The mystery–drama ensemble film follows world-renowned detective Hercule"} +{"qid": "test555", "pid": "3879825", "query": "where is the hotel used in the movie the shining", "answer": "The Stanley Hotel", "passage": "\"The Stanley Hotel\"\nin a horror movie, insisted that Kubrick change the haunted room in the film to Room 237. The Stanley Hotel shows the uncut R-rated version of Kubrick's film on a continuous loop on Channel 42 on guest room televisions. King was apparently displeased with Kubrick's film, based mainly on Jack Nicholson's portrayal of Jack Torrance. In 1996, Warner Brothers secured the television rights to \"\"The Shining\"\" and produced a miniseries (stylized as Stephen King's The Shining) with a script by Stephen King. Thanks to King, the Stanley Hotel was chosen as the primary shooting location. A playhouse version of the"} +{"qid": "test555", "pid": "3879822", "query": "where is the hotel used in the movie the shining", "answer": "The Stanley Hotel", "passage": "\"The Stanley Hotel\"\nShining\"\" firmly set in my mind.\"\" \"\"The Shining\"\" was published in 1977 and became the third great success of King's career after \"\"Carrie\"\" and \"\"'Salem's Lot\"\". The primary setting is an isolated Colorado resort called the Overlook Hotel which closes for the winter. In the front matter of the book, King tactfully states, \"\"Some of the most beautiful resort hotels in the world are located in Colorado, but the hotel in these pages is based on none of them. The Overlook and the people associated with it exist wholly in the author's imagination.\"\" King locates the Overlook Hotel near the"} +{"qid": "test555", "pid": "3879823", "query": "where is the hotel used in the movie the shining", "answer": "The Stanley Hotel", "passage": "\"The Stanley Hotel\"\nfictional town of Sidewinder which is supposed to be near Estes Park. The Stanley Hotel is never mentioned. Notwithstanding King's efforts to explicitly differentiate the Overlook Hotel from the Stanley, it seems that King imagined the Stanley Hotel as the setting of \"\"The Shining\"\". Room 217 of the Overlook features prominently in the novel, having been the room where King spent the night at the Stanley. This is the room on the second floor in the center of the west wing with a balcony overlooking the south terrace. Room 217 remains the Stanley's most requested accommodation. Despite its connection with"} +{"qid": "test557", "pid": "17990278", "query": "who is the first indian woman to be canonized as a saint", "answer": "Saint Alphonsa", "passage": "\"Syro-Malabar Catholic Eparchy of Palai\"\nof the crucified Lord. On Sunday, 12 October 2008, Pope Benedict XVI announced her canonization at a ceremony at Saint Peter's Square. Indians from across the world, especially people from Kerala, gathered at the ceremony in Rome. Among them was a 10-year-old Kerala boy Jinil Joseph whose clubfoot – a birth defect – was, in the judgment of Vatican officials, miraculously healed after prayers to Alphonsa in 1999. In the homily, Pope Benedict XVI recalled Saint Alphonsa's life as one of \"\"extreme physical and spiritual suffering.\"\" \"\"This exceptional woman … was convinced that her cross was the very means of"} +{"qid": "test557", "pid": "5546500", "query": "who is the first indian woman to be canonized as a saint", "answer": "Saint Alphonsa", "passage": "\"Saint Alphonsa\"\nSaint Alphonsa Saint Alphonsa, F.C.C., (born Anna Muttathupadathu; 19 August 1910 – 28 July 1946) was an Indian religious sister and educator. She was the first woman of Indian origin to be canonised as a saint by the Catholic Church, and the first canonised saint of the Syro-Malabar Church, an Eastern Catholic Church based in Kerala. Her feast day is observed on July 28th. St Alphonsa was born as Anna Muttathupadathu in a Syro-Malabar Nasrani family to Cherian Ouseph and Mary Muttathupadathu in Kudamalloor, near Kottayam, on 19 August 1910. She was baptised on 27 August. \"\"Alphonsamma\"\", as she was"} +{"qid": "test557", "pid": "5546516", "query": "who is the first indian woman to be canonized as a saint", "answer": "Saint Alphonsa", "passage": "\"Saint Alphonsa\"\ntomb has been designated as a pilgrimage site with numerous miracles being reported by pious devotees. Saint Alphonsa Saint Alphonsa, F.C.C., (born Anna Muttathupadathu; 19 August 1910 – 28 July 1946) was an Indian religious sister and educator. She was the first woman of Indian origin to be canonised as a saint by the Catholic Church, and the first canonised saint of the Syro-Malabar Church, an Eastern Catholic Church based in Kerala. Her feast day is observed on July 28th. St Alphonsa was born as Anna Muttathupadathu in a Syro-Malabar Nasrani family to Cherian Ouseph and Mary Muttathupadathu in Kudamalloor,"} +{"qid": "test558", "pid": "4900920", "query": "what is the meaning of the harp in ireland", "answer": "the arms of Ireland", "passage": "\"Coat of arms of Ireland\"\nthey were integrated into the unified royal coat of arms of kingdoms of England, Scotland and Ireland. The harp was adopted as the emblem of the Irish Free State when it separated from the United Kingdom in 1922. They were registered as the arms of Ireland with the Chief Herald of Ireland on 9 November 1945. The depiction of the harp has changed over time. In the 17th century, during the period of the Kingdom of Ireland, the pillar of the harp began to be depicted as a bare-breasted woman. When the arms were restored as the arms of the"} +{"qid": "test56", "pid": "3732226", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "Uvea\nUvea The uvea (/ˈjuːvɪə/) (Lat. \"\"uva\"\", grape), also called the \"\"uveal layer\"\", \"\"uveal coat\"\", \"\"uveal tract\"\", \"\"vascular tunic\"\" or \"\"vascular layer\"\" is the pigmented middle of the three concentric layers that make up an eye. The name is possibly a reference to its reddish-blue or almost black colour, wrinkled appearance and grape-like size and shape when stripped intact from a cadaveric eye. Its use as a technical term in anatomy and ophthalmology is relatively modern. The uvea is the vascular middle layer of the eye. It is traditionally divided into three areas, from front to back, the: The prime functions"} +{"qid": "test56", "pid": "3732229", "query": "the vascular layer of the eye is the", "answer": "The uvea", "passage": "Uvea\n(i.e., the body's inability to distinguish between them, with resulting misdirected inflammatory reactions). See uveitis, choroiditis, iritis, iridocyclitis, anterior uveitis, sympathetic ophthalmia, and uveal melanoma. Uvea The uvea (/ˈjuːvɪə/) (Lat. \"\"uva\"\", grape), also called the \"\"uveal layer\"\", \"\"uveal coat\"\", \"\"uveal tract\"\", \"\"vascular tunic\"\" or \"\"vascular layer\"\" is the pigmented middle of the three concentric layers that make up an eye. The name is possibly a reference to its reddish-blue or almost black colour, wrinkled appearance and grape-like size and shape when stripped intact from a cadaveric eye. Its use as a technical term in anatomy and ophthalmology is relatively modern."} +{"qid": "test56", "pid": "2829741", "query": "the vascular layer of the eye is the", "answer": "uvea", "passage": "Choroid\nChoroid The choroid, also known as the choroidea or choroid coat, is the vascular layer of the eye, containing connective tissues, and lying between the retina and the sclera. The human choroid is thickest at the far extreme rear of the eye (at 0.2 mm), while in the outlying areas it narrows to 0.1 mm. The choroid provides oxygen and nourishment to the outer layers of the retina. Along with the ciliary body and iris, the choroid forms the uveal tract. The structure of the choroid is generally divided into four layers (classified in order of furthest away from the"} +{"qid": "test56", "pid": "3862602", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "Uveitis\nUveitis Uveitis is the inflammation of the uvea, the pigmented layer that lies between the inner retina and the outer fibrous layer composed of the sclera and cornea. The uvea consists of the middle layer of pigmented vascular structures of the eye and includes the iris, ciliary body, and choroid. Uveitis is an ophthalmic emergency and requires a thorough examination by an optometrist or ophthalmologist and urgent treatment to control the inflammation. It is often associated with other ocular problems. Uveitis is classified anatomically into anterior, intermediate, posterior, and panuveitic forms—based on the part of the eye primarily affected. Prior"} +{"qid": "test56", "pid": "4476793", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "\"Ciliary muscle\"\nsuspension of the lens of the eye. Ciliary muscle The ciliary muscle is a ring of smooth muscle in the eye's middle layer (vascular layer) that controls accommodation for viewing objects at varying distances and regulates the flow of aqueous humor into Schlemm's canal. It changes the shape of the lens within the eye, not the size of the pupil which is carried out by the sphincter pupillae muscle and dilator pupillae. The ciliary muscle develops from mesenchyme within the choroid and is considered a cranial neural crest derivative. The ciliary muscle receives parasympathetic fibers from the short ciliary nerves"} +{"qid": "test56", "pid": "3909236", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "\"Human eye\"\nlayer, known as the fibrous tunic, is composed of the cornea and sclera. The middle layer, known as the vascular tunic or uvea, consists of the choroid, ciliary body, pigmented epithelium and iris. The innermost is the retina, which gets its oxygenation from the blood vessels of the choroid (posteriorly) as well as the retinal vessels (anteriorly). The spaces of the eye are filled with the aqueous humour anteriorly, between the cornea and lens, and the vitreous body, a jelly-like substance, behind the lens, filling the entire posterior cavity. The aqueous humour is a clear watery fluid that is contained"} +{"qid": "test56", "pid": "4476787", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "\"Ciliary muscle\"\nCiliary muscle The ciliary muscle is a ring of smooth muscle in the eye's middle layer (vascular layer) that controls accommodation for viewing objects at varying distances and regulates the flow of aqueous humor into Schlemm's canal. It changes the shape of the lens within the eye, not the size of the pupil which is carried out by the sphincter pupillae muscle and dilator pupillae. The ciliary muscle develops from mesenchyme within the choroid and is considered a cranial neural crest derivative. The ciliary muscle receives parasympathetic fibers from the short ciliary nerves that arise from the ciliary ganglion. The"} +{"qid": "test56", "pid": "3862613", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "Uveitis\nbetween 28% and 50%. Uveitis is estimated to be responsible for approximately 10%-20% of the blindness in the United States. Uveitis Uveitis is the inflammation of the uvea, the pigmented layer that lies between the inner retina and the outer fibrous layer composed of the sclera and cornea. The uvea consists of the middle layer of pigmented vascular structures of the eye and includes the iris, ciliary body, and choroid. Uveitis is an ophthalmic emergency and requires a thorough examination by an optometrist or ophthalmologist and urgent treatment to control the inflammation. It is often associated with other ocular problems."} +{"qid": "test56", "pid": "588392", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "\"Blood vessel\"\nbetween the blood and the tissues; and the veins, which carry blood from the capillaries back toward the heart. The word \"\"vascular\"\", meaning relating to the blood vessels, is derived from the Latin \"\"vas\"\", meaning vessel. A few structures (such as cartilage and the lens of the eye) do not contain blood vessels and are labeled. The arteries and veins have three layers. The middle layer is thicker in the arteries than it is in the veins: Capillaries consist of little more than a layer of endothelium and occasional connective tissue. When blood vessels connect to form a region of"} +{"qid": "test56", "pid": "810955", "query": "the vascular layer of the eye is the", "answer": "middle layer", "passage": "Glaucoma\nof the hyaloid canal and the tunica vasculosa lentis is associated with other anomalies. Angle closure-induced ocular hypertension and glaucomatous optic neuropathy may also occur with these anomalies, and has been modelled in mice. Other factors can cause glaucoma, known as \"\"secondary glaucoma\"\", including prolonged use of steroids (steroid-induced glaucoma); conditions that severely restrict blood flow to the eye, such as severe diabetic retinopathy and central retinal vein occlusion (neovascular glaucoma); ocular trauma (angle-recession glaucoma); and inflammation of the middle layer of the pigmented vascular eye structure (uveitis), known as uveitic glaucoma. The underlying cause of open-angle glaucoma remains unclear."} +{"qid": "test561", "pid": "3743813", "query": "when was hitchhiker's guide to the galaxy made", "answer": "2005", "passage": "\"The Hitchhiker's Guide to the Galaxy (film)\"\nSingle disc releases in the UMD format for the PlayStation Portable were also released on the respective dates in these three countries. The movie was made available as a paid download in the iTunes Store starting in September 2006, for the American market only. A region-free Blu-ray Disc version was released in January 2007. The Hitchhiker's Guide to the Galaxy (film) The Hitchhiker's Guide to the Galaxy is a 2005 British-American science fiction comedy film directed by Garth Jennings, based upon previous works in the media franchise of the same name, created by Douglas Adams. It stars Martin Freeman, Sam"} +{"qid": "test561", "pid": "1282168", "query": "when was hitchhiker's guide to the galaxy made", "answer": "2005", "passage": "\"Zaphod Beeblebrox\"\ndidn't really work. [...] Zaphod has to be more aggressive and so we went rock star, Freddie Mercury, Elvis, a little Brad Pitt.\"\" \"\"The Illustrated Hitchhiker's Guide to the Galaxy\"\" has him portrayed by Francis Johnson. When Mark Wing-Davey's academic commitments prevented him resuming the role of Zaphod for the 2013 tour of \"\"The Hitchhiker's Guide To The Galaxy Live Radio Show\"\", comedian, songwriter and author Mitch Benn was cast in the part. To coincide with the April 2005 release of \"\"The Hitchhiker's Guide to the Galaxy\"\" film, a \"\"campaign music video\"\" was released on the Internet. The music, \"\"Beeblebrox"} +{"qid": "test561", "pid": "5108406", "query": "when was hitchhiker's guide to the galaxy made", "answer": "1978", "passage": "\"The Hitchhiker's Guide to the Galaxy (TV series)\"\nThe Hitchhiker's Guide to the Galaxy (TV series) The Hitchhiker's Guide to the Galaxy is a BBC television adaptation of Douglas Adams's \"\"The Hitchhiker's Guide to the Galaxy\"\" which was broadcast in January and February 1981 on UK television station BBC Two. The adaptation follows the original radio series in 1978 and 1980, the first novel and double LP, in 1979, and the stage shows, in 1979 and 1980, making it the fifth iteration of the guide. The series stars Simon Jones as Arthur Dent, David Dixon as Ford Prefect, Mark Wing-Davey as Zaphod Beeblebrox, Sandra Dickinson as Trillian and"} +{"qid": "test561", "pid": "5129874", "query": "when was hitchhiker's guide to the galaxy made", "answer": "1978", "passage": "\"The Hitchhiker's Guide to the Galaxy Primary and Secondary Phases\"\nThe Hitchhiker's Guide to the Galaxy Primary and Secondary Phases The terms Primary Phase and Secondary Phase describe the first two radio series of \"\"The Hitchhiker's Guide to the Galaxy\"\", first broadcast in 1978. These were the first incarnations of the \"\"Hitchhiker's Guide to the Galaxy\"\" franchise. Both were written by Douglas Adams and consist of six episodes each. The series followed the aimless wanderings of Arthur Dent, Ford Prefect and his book, the eponymous \"\"Guide\"\". It introduced unfamiliar music, mind stretching concepts and the newest science mixed together with out of context parodies, unfeasibly rude names, \"\"semantic and philosophical"} +{"qid": "test561", "pid": "5129935", "query": "when was hitchhiker's guide to the galaxy made", "answer": "1978", "passage": "\"The Hitchhiker's Guide to the Galaxy Primary and Secondary Phases\"\ncomplete episodes heard in the UK—they were edited down from their original 29+ minute running time to 25–26 minutes. The Hitchhiker's Guide to the Galaxy Primary and Secondary Phases The terms Primary Phase and Secondary Phase describe the first two radio series of \"\"The Hitchhiker's Guide to the Galaxy\"\", first broadcast in 1978. These were the first incarnations of the \"\"Hitchhiker's Guide to the Galaxy\"\" franchise. Both were written by Douglas Adams and consist of six episodes each. The series followed the aimless wanderings of Arthur Dent, Ford Prefect and his book, the eponymous \"\"Guide\"\". It introduced unfamiliar music, mind"} +{"qid": "test561", "pid": "423296", "query": "when was hitchhiker's guide to the galaxy made", "answer": "2005", "passage": "\"The Hitchhiker's Guide to the Galaxy\"\nThe Hitchhiker's Guide to the Galaxy The Hitchhiker's Guide to the Galaxy (sometimes referred to as HG2G, HHGTTG or H2G2) is a comedy science fiction series created by Douglas Adams. Originally a radio comedy broadcast on BBC Radio 4 in 1978, it was later adapted to other formats, including stage shows, novels, comic books, a 1981 TV series, a 1984 video game, and 2005 feature film. A prominent series in British popular culture, \"\"The Hitchhiker's Guide to the Galaxy\"\" has become an international multi-media phenomenon; the novels are the most widely distributed, having been translated into more than 30 languages"} +{"qid": "test561", "pid": "423381", "query": "when was hitchhiker's guide to the galaxy made", "answer": "1978", "passage": "\"The Hitchhiker's Guide to the Galaxy\"\n\"\"Hitchhiker's Guide\"\" is the spelling Adams preferred. At least two reference works make note of the inconsistency in the titles. Both, however, repeat the statement that Adams decided in 2000 that \"\"everyone should spell it the same way [one word, no hyphen] from then on.\"\" Notes Bibliography The Hitchhiker's Guide to the Galaxy The Hitchhiker's Guide to the Galaxy (sometimes referred to as HG2G, HHGTTG or H2G2) is a comedy science fiction series created by Douglas Adams. Originally a radio comedy broadcast on BBC Radio 4 in 1978, it was later adapted to other formats, including stage shows, novels, comic"} +{"qid": "test563", "pid": "20932071", "query": "when does madea's family funeral come out", "answer": "2018", "passage": "\"A Madea Family Funeral\"\nsecrets. Filming took place at Tyler Perry Studios and Atlanta for one week in 2017. In this movie Tyler Perry plays a new character named Heathrow, Madea and Joe's brother. He was also a Vietnam war veteran. The film is scheduled to be released in the United States on March 1, 2019 by Lionsgate. It was originally scheduled to be released in the fall of 2018. Lionsgate released a trailer for the movie on October 31, 2018. A Madea Family Funeral Tyler Perry's A Madea Family Funeral is an upcoming American comedy film written, directed and produced by Tyler Perry."} +{"qid": "test563", "pid": "5842009", "query": "when does madea's family funeral come out", "answer": "2018", "passage": "Madea\nin \"\"Diary of a Mad Black Woman\"\", which makes William in his 50s. Tyler Perry has confirmed that in \"\"A Madea Family Funeral\"\" (2018) Madea has another brother named Heathrow (also played by Perry), a Vietnam war veteran. Madea has appeared in several plays (some of which have been recorded for repeated viewing), fully produced films, a couple of television programs (guest appearances), one book and one animated film. The character made her first appearance in the 1999 play \"\"I Can Do Bad All by Myself\"\", later appearing in numerous other plays by Perry, then appearing in films based on"} +{"qid": "test564", "pid": "11381839", "query": "who is the team that beat the eagles this season", "answer": "Dallas Cowboys", "passage": "\"2008 Philadelphia Eagles season\"\n100 yards receiving. Westbrook ran for 91 yards and two touchdowns With the win, the Eagles began their season at 1–0. The Eagles went toe-to-toe with their hated rivals, the Dallas Cowboys, on MNF in the teams' final meeting at Texas Stadium. The game would be high-scoring – filled with exciting plays and seven lead changes. On their opening drive, Philadelphia scored first with kicker David Akers nailing a 34-yard field goal. The Cowboys struck right back with Tony Romo completing a 72-yard touchdown pass to Terrell Owens, who badly beat the Eagles' secondary. Donovan McNabb drove the Eagles' into"} +{"qid": "test564", "pid": "12490028", "query": "who is the team that beat the eagles this season", "answer": "Dallas Cowboys", "passage": "\"1972 New York Giants season\"\nSnead, who led the league in pass completion average in 1972. The Giants lost twice to open the season, but went on a four-game winning streak afterwards. In their 11th game, the Giants defeated the Philadelphia Eagles 62–10, setting the franchise record for the most points scored in a game; it was also an Eagles record for the most points allowed. The victory put the team at 7–4 and in contention for a playoff berth. Two losses ended their postseason chances, but New York beat the Dallas Cowboys in the final game of the season to finish with 8 wins"} +{"qid": "test565", "pid": "3197892", "query": "who plays kevins shrink on kevin probably saves the world", "answer": "Richard Masur", "passage": "\"Richard Masur\"\nJanuary 2006, Masur began appearing as a recurring character on the soap opera \"\"All My Children\"\". He has also appeared in guest spots on many TV shows, including \"\"M*A*S*H\"\", \"\"The Mary Tyler Moore Show\"\", \"\"Hawaii Five-O\"\", \"\"Happy Days\"\", \"\"Picket Fences\"\", \"\"Matlock\"\", \"\"Murphy Brown\"\", \"\"Law & Order\"\", \"\"Kevin (Probably) Saves the World\"\", and \"\"Transparent\"\" . Masur played the role of Martin Stone in the off-Broadway play \"\"Dust\"\". Richard Masur Richard Masur (born November 20, 1948) is an American actor who has appeared in more than 80 movies. From 1995 to 1999, he served two terms as president of the Screen Actors"} +{"qid": "test566", "pid": "1809734", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Saratoga campaign\"\nThe World War II era aircraft carriers USS Saratoga (CV-3) and USS Bennington (CV-20) were named after the battles of the Saratoga campaign. Saratoga campaign The Saratoga Campaign in 1777 was an attempt by the British high command for North America to gain military control of the strategically important Hudson River valley during the American Revolutionary War. It ended in the surrender of the British army, which historian Edmund Morgan argues, \"\"was a great turning point of the war, because it won for Americans the foreign assistance which was the last element needed for victory.\"\" The primary thrust of the"} +{"qid": "test566", "pid": "763060", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Battles of Saratoga\"\nMiss Bailey incorrectly states that Benedict Arnold was wounded at the Battle of Saratoga when there was, in fact no SINGLE Battle of Saratoga. She also fails to mention that Arnold was wounded during the assault on Quebec City in the same leg. Battles of Saratoga The Battles of Saratoga (September 19 and October 7, 1777) marked the climax of the Saratoga campaign, giving a decisive victory to the Americans over the British in the American Revolutionary War. British General John Burgoyne led a large invasion army southward from Canada in the Champlain Valley, hoping to meet a similar British"} +{"qid": "test566", "pid": "763009", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Battles of Saratoga\"\nBattles of Saratoga The Battles of Saratoga (September 19 and October 7, 1777) marked the climax of the Saratoga campaign, giving a decisive victory to the Americans over the British in the American Revolutionary War. British General John Burgoyne led a large invasion army southward from Canada in the Champlain Valley, hoping to meet a similar British force marching northward from New York City and another British force marching eastward from Lake Ontario; the southern and western forces never arrived, and Burgoyne was surrounded by American forces in upstate New York. He fought two small battles to break out which"} +{"qid": "test566", "pid": "5552931", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"29th (Worcestershire) Regiment of Foot\"\n1771, then to England in 1773. During the American Revolutionary War in 1775, the Americans tried to capture Quebec City; they were forced to retreat but the 29th arrived in Quebec in June 1776 to reinforce British forces in what is now modern Canada. The Light and Grenadier companies were detached to join the 1777 Saratoga campaign, and fought at the Battle of Hubbardton on 7 July under Brigadier Simon Fraser. Following defeat in the Battles of Saratoga, these companies surrendered with the rest of Burgoyne's force in October 1777. The other eight remained in Canada, fighting in a number"} +{"qid": "test566", "pid": "5651111", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Saratoga National Historical Park\"\nSaratoga National Historical Park Saratoga National Historical Park is a United States National Historical Park located in the Town of Stillwater in eastern New York, north of Albany. The park preserves the site of the Battles of Saratoga. The park preserves the site of the Battles of Saratoga, the first significant American military victory of the American Revolutionary War. Here in 1777, American forces met, defeated, and forced a major British army to surrender, an event which led France to recognize the independence of the United States, and enter the war as a decisive military ally of the struggling Americans."} +{"qid": "test566", "pid": "9793361", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Northern theater of the American Revolutionary War after Saratoga\"\n1781 Battle of Groton Heights, the British were led by Connecticut native Benedict Arnold, who did substantial damage to the town. After General John Burgoyne surrendered his army after the Battles of Saratoga in October 1777 France entered the war, recognizing the United States and entering into a military alliance. France dispatched a fleet and army across the Atlantic to aid the Americans fighting for independence, in addition to pursuing military operations in the Caribbean and the East Indies. France also applied pressure on Spain to enter the war; although this did not happen until 1779, Spanish actions in other"} +{"qid": "test566", "pid": "669460", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Saratoga County, New York\"\nState as well as all of the present State of Vermont and, in theory, extending westward to the Pacific Ocean. This large county was progressively reduced in size by the separation of several counties until 1791, when Saratoga County as well as Rensselaer County were split off from Albany County. The Battles of Saratoga (September 19 and October 7, 1777) marked the climax of the Saratoga campaign, giving a decisive victory to the Americans over the British in the American Revolutionary War. During the nineteenth century, Saratoga County was an important industrial center. Its location 30 miles north of Albany"} +{"qid": "test566", "pid": "1376764", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Battle of Carillon\"\ntheir superior officers, who may not have been familiar with the site's shortcomings, fell under the spell of this idea. In 1777, when General John Burgoyne advanced down Lake Champlain at the beginning of the Saratoga campaign, General George Washington, who had never seen the fort, thought highly of its defensive value. Anthony Wayne, who was at Fort Ticonderoga preparing its defenses before Burgoyne's arrival, wrote to Washington that the fort \"\"can never be carried, without much loss of blood\"\". Fort Ticonderoga was surrendered by the Americans without much of a fight in July 1777. The modern flag of Quebec"} +{"qid": "test566", "pid": "19689632", "query": "who won the battle of saratoga in 1777", "answer": "Americans", "passage": "\"Vermont Sesquicentennial half dollar\"\njoined by some 1,500 New Hampshire militiamen, and on August 16, 1777, the Battle of Bennington took place. About 200 of the British forces were killed and 700 taken prisoner; only 40 Americans were killed. Weakened by the losses and the failure to obtain supplies, Burgoyne was defeated at the Battle of Saratoga in New York state that October, an American victory that historian Edmund Morgan deemed \"\"a great turning point of the war, because it won for Americans the foreign assistance [from France] which was the last element needed for victory\"\". Legislation for a silver fifty-cent piece and a"} +{"qid": "test569", "pid": "1022220", "query": "where does the name loyola university come from", "answer": "St. Ignatius of Loyola", "passage": "\"Loyola, California\"\nLoyola, California Loyola is a census-designated place in Santa Clara County, California, United States. The population was 3,261 at the 2010 census. The woodsy area is located between the cities of Los Altos and Los Altos Hills. It is the home of Facebook's first headquarters. Homes in the area range from cottages to mansions. The name comes from a 1904 plan by the Jesuits of Santa Clara University to build a new university named for their founder, St. Ignatius of Loyola, in the area. If the plan had come to fruition, the university would have been located in the area"} +{"qid": "test569", "pid": "1022228", "query": "where does the name loyola university come from", "answer": "St. Ignatius of Loyola", "passage": "\"Loyola, California\"\nSchool District (9-12). Loyola, California Loyola is a census-designated place in Santa Clara County, California, United States. The population was 3,261 at the 2010 census. The woodsy area is located between the cities of Los Altos and Los Altos Hills. It is the home of Facebook's first headquarters. Homes in the area range from cottages to mansions. The name comes from a 1904 plan by the Jesuits of Santa Clara University to build a new university named for their founder, St. Ignatius of Loyola, in the area. If the plan had come to fruition, the university would have been located"} +{"qid": "test569", "pid": "8270603", "query": "where does the name loyola university come from", "answer": "St. Ignatius of Loyola", "passage": "\"Loyola Jesuit College\"\nbungalows for all the lay staff. The dormitories are Connelly, Loyola, Regis, and Xavier. Connelly is named after Cornelia Connelly, the founder of the Sisters of the Holy Child Jesus who are on the College staff. The names of the others come from the Jesuit saints Ignatius Loyola, John Francis Regis, and Francis Xavier. The campus is fenced to secure the safety of the students. Upon entering the LJC campus via the front gates, a statue of St. Ignatius of Loyola is seen presenting his knightly sword to the Lord, to become a \"\"Knight for Christ.\"\" Loyola Jesuit College is"} +{"qid": "test569", "pid": "3291415", "query": "where does the name loyola university come from", "answer": "St. Ignatius of Loyola", "passage": "\"Loyola University Maryland\"\nLoyola University Maryland Loyola University Maryland is a Catholic, Jesuit private liberal arts university located within the Archdiocese of Baltimore in the city of Baltimore, Maryland, United States. Established as Loyola College in Maryland by John Early and eight other members of the Society of Jesus in 1852, it is one of 28 member institutions of the Association of Jesuit Colleges and Universities, the ninth-oldest Jesuit college in the United States, and the first college in the United States to bear the name of St. Ignatius of Loyola, the founder of the Society of Jesus. Loyola's main campus is in"} +{"qid": "test57", "pid": "4011843", "query": "the cuban revolt against spain was led by", "answer": "Antonio Maceo", "passage": "\"Antonio Maceo Grajales\"\ntime and was initiated in the mysteries of Freemasonry. The Cuban Freemasonry movement was influenced by the principles of the French Revolution - \"\"Liberty, Equality and Fraternity\"\" - as well as the Masons' main guidelines: God, Reason, Virtue. Approximately two weeks after the October 10, 1868 revolt led by Carlos Manuel de Céspedes against Spain known as \"\"The cry of Yara\"\" (\"\"El grito de Yara\"\"), Maceo, together with his father and brothers joined the war. Mariana Grajales, followed her family members into the \"\"manigua\"\" (the woods and most thick countryside) in order to support the mambises, as Cuban rebels were"} +{"qid": "test57", "pid": "3191376", "query": "the cuban revolt against spain was led by", "answer": "José Martí", "passage": "\"Culture of Cuba\"\nthe Caribbean and some of Central America, football is not a major game in Cuba, but is gaining popularity. Baseball is the most popular sport in Cuba. Introduced by American dockworkers in Havana in the 19th century, the game has played a role in Cuban independence from Spain. Banned in 1895 by the Spanish, secret games funded José Martí's revolt. Cuban \"\"peloteros\"\" rank highly internationally and some have migrated to Major League Baseball in the United States. The Cuba national baseball team finished second in the first World Baseball Classic against the Japanese national team. Boxing is also rather popular"} +{"qid": "test571", "pid": "18563346", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl 50 halftime show\"\nSuper Bowl 50 halftime show The Super Bowl 50 Halftime Show took place on February 7, 2016, at Levi's Stadium in Santa Clara, California as part of Super Bowl 50. It was headlined by the British rock group Coldplay with special guest performers Beyoncé and Bruno Mars, who previously had headlined the Super Bowl XLVII and Super Bowl XLVIII halftime shows, respectively. Coldplay, Rihanna, and Katy Perry were considered as potential acts for the Super Bowl XLIX halftime show in 2015. Perry was soon confirmed as the headliner of the halftime show in October 2014. In late November, 2015, reports"} +{"qid": "test571", "pid": "18563356", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl 50 halftime show\"\nwho \"\"are willing to raise social consciousness and use their artistry to advance social justice.\"\" In attempt to address her own controversy, Beyoncé explained, \"\"I have so much admiration and respect for officers and the families of officers who sacrifice themselves to keep us safe. But let's be clear: I am against police brutality and injustice.\"\" The halftime show became the fourth highest ever watched show in the United States, with total viewership of 115.5 million. Setlist obtained from \"\"Billboard\"\". Super Bowl 50 halftime show The Super Bowl 50 Halftime Show took place on February 7, 2016, at Levi's Stadium"} +{"qid": "test571", "pid": "18084512", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl 50\"\nthe league confirmed that the show would be headlined by the British rock band Coldplay. On January 7, 2016, Pepsi confirmed to the Associated Press that Beyoncé, who headlined the Super Bowl XLVII halftime show and collaborated with Coldplay on the single \"\"Hymn for the Weekend\"\" (which was removed from the setlist before the game), would be making an appearance. Bruno Mars, who headlined the Super Bowl XLVIII halftime show, and Mark Ronson (Mars's collaborator on \"\"Uptown Funk\"\") also performed. Denver took the opening kickoff of Super Bowl 50 and started out strong. Quarterback Peyton Manning completed an 18-yard pass"} +{"qid": "test571", "pid": "19314921", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Formation (song)\"\nwho -- until now -- has been beyond race for the mainstream audience. That was the basis of a recent \"\"Saturday Night Live\"\" skit that portrayed white fans freaking out about her \"\"blackness,\"\" as conveyed by her new \"\"Formation\"\" music video and a Super Bowl halftime performance in which her backup dancers dressed in Black Panther-esque outfits. The halftime show has prompted a number of discussions both pro- and anti-Beyoncé.\"\" Beyoncé performed the song as part of a guest appearance during the Super Bowl 50 halftime show, which was headlined by Coldplay at the Levi's Stadium in Santa Clara, California"} +{"qid": "test571", "pid": "17836780", "query": "who is playing halftime show super bowl 50", "answer": "Bruno Mars", "passage": "\"Super Bowl XLVIII halftime show\"\nSuper Bowl XLVIII halftime show The Super Bowl XLVIII halftime show occurred on February 2, 2014 at MetLife Stadium in New Jersey as part of Super Bowl XLVIII and was headlined by American singer Bruno Mars alongside his band The Hooligans with special guests The Red Hot Chili Peppers. The show was produced by Ricky Kirshner and directed by Hamish Hamilton. At the time of airing the halftime show attracted the largest audience in the history of the Super Bowl, attracting 115.3 million viewers. The show was later surpassed by the following year's Super Bowl XLIX halftime show in which"} +{"qid": "test571", "pid": "17079291", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl XLVII halftime show\"\nSuper Bowl XLVII halftime show The Super Bowl XLVII halftime show occurred on February 3, 2013, at the Mercedes-Benz Superdome in New Orleans as part of Super Bowl XLVII and featured American entertainer Beyoncé with special guests Kelly Rowland and Michelle Williams from Destiny's Child. The show was produced by Ricky Kirshner and directed by Hamish Hamilton. It received acclaim from music critics who commented that Beyoncé once more proved her abilities during live performances. It became the then second most watched show in Super Bowl history by garnering 110.8 million viewers. The performance, and the stadium blackout that followed,"} +{"qid": "test571", "pid": "17079304", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl XLVII halftime show\"\nSuper Bowl XLIX halftime show with 118.5 million viewers. Beyoncé's performance at the Super Bowl XLVII halftime show became the most tweeted-about moment in Twitter history with 268,000 tweets per minute. In the week ending February 10, 2013, Beyoncé sold 220,000 digital song downloads in the US, while Destiny's Child sold 60,000; up 80% and 36% on the previous week, respectively. Set list adapted from BBC. Super Bowl XLVII halftime show The Super Bowl XLVII halftime show occurred on February 3, 2013, at the Mercedes-Benz Superdome in New Orleans as part of Super Bowl XLVII and featured American entertainer Beyoncé"} +{"qid": "test571", "pid": "18084466", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl 50\"\nMVP. This game was also the final game of Peyton Manning's career; the Broncos quarterback, who also won Super Bowl XLI, announced his retirement in March 2016. CBS' broadcast of the game was the third most-watched program in American television history with an average of 111.9 million viewers. The network charged an average of $5 million for a 30-second commercial during the game. It remains the highest-rated program in the history of CBS. The Super Bowl 50 halftime show was headlined by Coldplay, with special guest performers Beyoncé and Bruno Mars. In early 2012, NFL Commissioner Roger Goodell stated that"} +{"qid": "test571", "pid": "18563347", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl 50 halftime show\"\nsurfaced stating that multiple acts would perform during the halftime show. Coldplay was confirmed as the lead half time performer for Super Bowl 50 on December 3, 2015, one day before the release of their seventh studio album \"\"A Head Full of Dreams\"\". It was confirmed that Beyoncé and Bruno Mars would join Coldplay as special guests. Chris Martin called Mars to ask him to perform with Coldplay; however, Mars declined the offer. Nevertheless, the singer of Coldplay invited Mars to his studio in Malibu where he was working. There, Martin revealed to Mars that he wanted for him to"} +{"qid": "test571", "pid": "18563350", "query": "who is playing halftime show super bowl 50", "answer": "Beyoncé", "passage": "\"Super Bowl 50 halftime show\"\nof California Marching Band. Bruno Mars, Mark Ronson, and a troupe of backing dancers (dressed in the style of Michael Jackson) then performed \"\"Uptown Funk\"\". Beyoncé, also in a Jackson-inspired outfit and appearing with a set of backing dancers dressed as Black Panthers, then performed her new single \"\"Formation\"\" in a mass choreographed dance number before joining Mars onstage for a verse of \"\"Uptown Funk\"\". Coldplay played a snippet of \"\"Clocks\"\" during a video montage of past Super Bowl halftime and national anthem performances, including those by Bruce Springsteen, Missy Elliott, Katy Perry, The Rolling Stones, Paul McCartney, Stevie Wonder,"} +{"qid": "test571", "pid": "17836795", "query": "who is playing halftime show super bowl 50", "answer": "Bruno Mars", "passage": "\"Super Bowl XLVIII halftime show\"\nOne Direction tickets and Jason Aldean tickets, which were two of the highest prices for an American tours during the spring and summer of 2014. Super Bowl XLVIII halftime show The Super Bowl XLVIII halftime show occurred on February 2, 2014 at MetLife Stadium in New Jersey as part of Super Bowl XLVIII and was headlined by American singer Bruno Mars alongside his band The Hooligans with special guests The Red Hot Chili Peppers. The show was produced by Ricky Kirshner and directed by Hamish Hamilton. At the time of airing the halftime show attracted the largest audience in the"} +{"qid": "test572", "pid": "20431169", "query": "the assassination of gianni versace american crime story season 2 episode 2", "answer": "Manhunt", "passage": "\"The Assassination of Gianni Versace: American Crime Story\"\nThe Assassination of Gianni Versace: American Crime Story The Assassination of Gianni Versace: American Crime Story is the second season of the FX true crime anthology television series \"\"American Crime Story\"\". The season premiered on January 17, 2018, and concluded on March 21, 2018. It consists of a total of 9 episodes, and explores the murder of designer Gianni Versace by spree killer Andrew Cunanan, based on Maureen Orth's book \"\"Vulgar Favors: Andrew Cunanan, Gianni Versace, and the Largest Failed Manhunt in U.S. History\"\". The series stars Édgar Ramírez, Darren Criss, Ricky Martin, and Penélope Cruz. The season received positive"} +{"qid": "test572", "pid": "18327647", "query": "the assassination of gianni versace american crime story season 2 episode 2", "answer": "Manhunt", "passage": "\"American Crime Story\"\nHis Life: The People v. O. J. Simpson\"\". The second season, subtitled \"\"\"\", explores the murder of designer Gianni Versace by serial killer Andrew Cunanan, based on Maureen Orth's book \"\"Vulgar Favors: Andrew Cunanan, Gianni Versace, and the Largest Failed Manhunt in U. S. History\"\". The series is broadcast on the cable television channel FX in the United States. It premiered on February 2, 2016. A third season, based on the aftermath of Hurricane Katrina, is in development. Based on Jeffrey Toobin's \"\"The Run of His Life: The People v. O. J. Simpson\"\", the season explores the O.J. Simpson (Cuba"} +{"qid": "test572", "pid": "18327649", "query": "the assassination of gianni versace american crime story season 2 episode 2", "answer": "Manhunt", "passage": "\"American Crime Story\"\nthe Largest Failed Manhunt in U.S. History\"\", the season examines the July 1997 assassination of legendary fashion designer Gianni Versace (Édgar Ramírez) by sociopathic serial killer Andrew Cunanan (Darren Criss), who killed himself in a Miami Beach houseboat after an eight-day manhunt. The season also stars Ricky Martin as Antonio D'Amico and Penélope Cruz as Donatella Versace. Based on Sheri Fink's book \"\"Five Days at Memorial: Life and Death in a Storm-Ravaged Hospital\"\", the season will take an unflinching look at the decisions doctors made at Memorial Medical Center (see also: Memorial Medical Center and Hurricane Katrina). In August 2017,"} +{"qid": "test573", "pid": "4799870", "query": "where do rory and paris go to college", "answer": "Yale University", "passage": "\"Rory Gilmore\"\nLater that year, still upset, Jess returns and tells Rory that he loves her and then leaves again. After graduating Chilton as valedictorian and with a 4.2 GPA, Rory goes on to attend Yale University, her grandfather's alma mater, in season four, although her entire life she had wanted to go to Harvard, having decided that the benefits of Yale outweighed her dream of studying at Harvard. During her freshman year, Rory resides at Durfee Hall and shares a dorm room with Tana, Janet, and fellow Chilton alumna Paris Geller. She moves to Branford College, the same residential college that"} +{"qid": "test573", "pid": "2327119", "query": "where do rory and paris go to college", "answer": "Yale University", "passage": "\"Gilmore Girls\"\nand decides to return to her, leaving Lorelai heartbroken. At the same time, Rory impulsively kisses Jess. Rory's attraction to Jess grows stronger, and she gets jealous when he teases her with a new girlfriend. Dean can't ignore what is going on, and eventually ends their relationship. Rory and Jess immediately become a couple. Meanwhile, she and Paris spend the year as Student Body Presidents at Chilton and both submit applications to Harvard University. Paris is devastated when she doesn't get in. Rory is accepted but decides to attend Yale University instead, much to Emily and Richard's delight. The Independence"} +{"qid": "test573", "pid": "20528057", "query": "where do rory and paris go to college", "answer": "Yale University", "passage": "\"Rory Gilmore and Paris Geller\"\nfrom high school, Rory is elected valedictorian over Paris, and the girls hug before parting ways. They then become roommates at Yale University, supporting one another through a number of issues. During their first spring break, the pair share a kiss while bored in a club. This development garnered immediate interest from viewers and the media. Rory later feels that they cannot pursue a romantic relationship, however, because Paris is too \"\"high-maintenance\"\" for her. When Rory drops out of school, Paris grows upset and spends a great deal of time with Rory's mother, Lorelai, labeling Rory her best friend. They"} +{"qid": "test574", "pid": "1751163", "query": "who was the winner of the first indianapolis 500", "answer": "Ray Harroun", "passage": "\"A. J. Foyt\"\nat the time. Shortly thereafter, Foyt and Ray Harroun (who won the first Indianapolis 500 in 1911) appeared together on a segment of the TV program \"\"I've Got a Secret\"\"—their secret being their respective wins 50 years apart. As of June 2018, Foyt stands as only the third-oldest living winner of the Indianapolis 500 (Parnelli Jones and Bobby Unser are older), but the longest-ago living winner (1961). While an active driver, Foyt entered into a longtime partnership with Kalamazoo, Michigan businessman Jim Gilmore, and raced under the Gilmore-Foyt Racing name for many years. After retiring as a driver, he continued"} +{"qid": "test574", "pid": "15626650", "query": "who was the winner of the first indianapolis 500", "answer": "Ray Harroun", "passage": "\"Lou Palmer (motorsport broadcaster)\"\nvideo produced by the Indianapolis Motor Speedway called \"\"The Indianapolis 500 - An American Tradition since 1911\"\". The production detailed each Indianapolis 500 race until 1988 and included archive footage as well as interviews with drivers such as 1911 winner Ray Harroun and the first triple winner of the 500 Louis Meyer. It also told the history of the IMS and its founding father Carl Fisher, as well as later owners Eddie Rickenbacker and Tony Hulman. Palmer continued to work at WIBC during the year but annually took a hiatus every May which he would spend most waking hours at"} +{"qid": "test575", "pid": "2875852", "query": "when did the united states acquired puerto rico", "answer": "1898", "passage": "\"Commonwealth (U.S. insular area)\"\nare not states, the term broadly describes an area that is self-governing under a constitution of its adoption and whose right of self-government will not be unilaterally withdrawn by Congress.\"\" Of the current U.S. insular areas, the term was first used by Puerto Rico in 1952 as its formal name in English (\"\"Commonwealth of Puerto Rico\"\"). The formal name in Spanish for Puerto Rico is \"\"Estado Libre Asociado de Puerto Rico,\"\" (\"\"Free Associated State of Puerto Rico\"\"). The United States acquired the islands of Puerto Rico in 1898 after the Spanish–American War. In 1950, Congress enacted legislation (P.L. 81-600) authorizing"} +{"qid": "test575", "pid": "311431", "query": "when did the united states acquired puerto rico", "answer": "1898", "passage": "\"Puerto Rico\"\nNew Spain. Spain's distant administrative control continued up to the end of the 19th century, producing a distinctive creole Hispanic culture and language that combined indigenous, African, and European elements. In 1898, following the Spanish–American War, the United States acquired Puerto Rico under the terms of the Treaty of Paris. Puerto Ricans have been citizens of the United States since 1917, and enjoy freedom of movement between the island and the mainland. As it is not a state, Puerto Rico does not have a vote in the United States Congress, which governs the territory with full jurisdiction under the Puerto"} +{"qid": "test575", "pid": "7524548", "query": "when did the united states acquired puerto rico", "answer": "1898", "passage": "\"Puerto Rico National Cemetery\"\nPuerto Rico National Cemetery Puerto Rico National Cemetery is a United States national cemetery located in the city of Bayamón, in the Commonwealth of Puerto Rico. It encompasses of land, and as of the end of 2005, had 44,722 interments. It is the only National Cemetery in Puerto Rico, and the only one outside of the mainland United States. The land in which the cemetery is located was under the jurisdiction of the United States Navy since 1898, when Spain ceded Puerto Rico to the United States as a consequence of the treaties signed which officially ended the Spanish–American War."} +{"qid": "test575", "pid": "8622048", "query": "when did the united states acquired puerto rico", "answer": "1898", "passage": "\"Puerto Ricans in the United States\"\n1898 that a significant influx of Puerto Rican workers to the US began. With its 1898 victory, the United States acquired Puerto Rico from Spain and has retained sovereignty since. The 1917 Jones–Shafroth Act made all Puerto Ricans US citizens, freeing them from immigration barriers. The massive migration of Puerto Ricans to the mainland United States was largest in the early and late 20th century, prior to its resurgence in the early 21st century. U.S. political and economic interventions in Puerto Rico created the conditions for emigration, \"\"by concentrating wealth in the hands of US corporations and displacing workers.\"\" Policymakers"} +{"qid": "test575", "pid": "12415279", "query": "when did the united states acquired puerto rico", "answer": "1898", "passage": "\"Isabel González\"\nlive. Under the terms of the Treaty of Paris of 1898 which was ratified on December 10, 1898, Puerto Rico was annexed by the United States after the 1898 Spanish–American War. Spain had lost its last colony in the Western Hemisphere. The United States established a military government which acted as both head of the army of occupation and administrator of civil affairs. Almost immediately, the United States began the \"\"Americanization\"\" process of Puerto Rico. The U.S. occupation brought about a total change in Puerto Rico's economy and polity and did not apply democratic principles in their colony. Puerto Rico"} +{"qid": "test575", "pid": "4693021", "query": "when did the united states acquired puerto rico", "answer": "1898", "passage": "\"Balzac v. Porto Rico\"\nit had not incorporated Puerto Rico into the Union. Although Puerto Rico had been under the control of the United States since the end of the Spanish–American War in 1898, the territory had not been designated for ultimate statehood, and Congress could determine which parts of the Constitution would apply. Taft distinguished Puerto Rico from the territory in the Alaska purchase, acquired from Russia in 1867, which had been held to be incorporated in \"\"Rasmussen v. United States\"\". Thus, particular constitutional provisions were applied based on location, rather than on citizenship. Taft's grounds for denying jury trial specifically echoed earlier"} +{"qid": "test577", "pid": "16458429", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Wayne Allwine", "passage": "\"Mickey Mouse Clubhouse (season 3)\"\nMickey Mouse Clubhouse (season 3) The third season of \"\"Mickey Mouse Clubhouse\"\" ran from to on Playhouse Disney, and later on Disney Junior. NOTE: In the beginning of season 3, Disney announced that \"\"Mickey Mouse Clubhouse\"\" was renewed for a fourth season, set to air on Disney Junior in the summer of 2012. NOTE 2: This is the final season that Wayne Allwine voices Mickey. Note 3: Starting with the season, Mickey and his friends no longer use 3 mousketools. Note 4: Mickey, Minnie, Donald, Daisy, Goofy, and Pluto are present in all episodes, like in the second season. "} +{"qid": "test577", "pid": "16458430", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Wayne Allwine", "passage": "\"Mickey Mouse Clubhouse (season 3)\"\n Mickey Mouse Clubhouse (season 3) The third season of \"\"Mickey Mouse Clubhouse\"\" ran from to on Playhouse Disney, and later on Disney Junior. NOTE: In the beginning of season 3, Disney announced that \"\"Mickey Mouse Clubhouse\"\" was renewed for a fourth season, set to air on Disney Junior in the summer of 2012. NOTE 2: This is the final season that Wayne Allwine voices Mickey. Note 3: Starting with the season, Mickey and his friends no longer use 3 mousketools. Note 4: Mickey, Minnie, Donald, Daisy, Goofy, and Pluto are present in all episodes, like in the second season."} +{"qid": "test577", "pid": "4021602", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Wayne Allwine", "passage": "\"Wayne Allwine\"\nthe same film, he voiced a Santa Claus on the street appealing for charity donations at the start of the movie, Moley (who appears with Ratty) \"\"collecting for the poor\"\", and one of the two weasel undertakers in the Christmas future scene. He also starred in films such as \"\"The Great Mouse Detective\"\" (1986), \"\"Who Framed Roger Rabbit\"\" (1988), \"\"The Prince and the Pauper\"\" (1990) and \"\"\"\" (2004), and the TV series \"\"Mickey Mouse Works\"\" (1999–2000), \"\"Disney's House of Mouse\"\" (2001–2003) and \"\"Mickey Mouse Clubhouse\"\" (2006–2009). He has provided Mickey's voice in the popular \"\"Kingdom Hearts\"\" series of video games"} +{"qid": "test577", "pid": "13781951", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Bret Iwan", "passage": "\"Bret Iwan\"\nthat Iwan had already taken over the role when the new episodes came out after Allwine's death. Unlike Allwine, Iwan is keeping Mickey's voice in a higher lighter range similar to what Allwine would normally do when he used to voice Mickey before \"\"Mickey Mouse Clubhouse\"\". Bret Iwan Bret Iwan (born September 10, 1982) is an American voice actor and illustrator. He is currently the official voice of Mickey Mouse following the death of Wayne Allwine in 2009. He graduated from the Ringling College of Art and Design in Sarasota, Florida, USA in 2004. Iwan was previously an illustrator at"} +{"qid": "test577", "pid": "288304", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Wayne Allwine", "passage": "\"Mickey Mouse\"\nrecord \"\"Mickey Mouse's Birthday Party\"\". Alan Young voiced Mickey in the Disneyland record album \"\"An Adaptation of Dickens' Christmas Carol, Performed by The Walt Disney Players\"\" in 1974, which would be the first and only time that Alan Young voiced him. The 1983 short film \"\"Mickey's Christmas Carol\"\" marked the theatrical debut of Wayne Allwine as Mickey Mouse, who was the official voice of Mickey from 1977 until his death in 2009. Allwine once recounted something MacDonald had told him about voicing Mickey: \"\"The main piece of advice that Jim gave me about Mickey helped me keep things in perspective."} +{"qid": "test577", "pid": "13781950", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Bret Iwan", "passage": "\"Bret Iwan\"\nTomorrowland Transit Authority PeopleMover attraction at the Magic Kingdom, in which upon passing through Mickey's Star Traders, Mickey responds with his signature laugh and says \"\"That's right, it's outta this world!\"\" Bret Iwan has stated that in the third season of \"\"Mickey Mouse Clubhouse\"\", the voice of Mickey was still indeed Wayne Allwine, due to Mickey's voice sounding a bit lower in the later episodes (Wayne had already recorded Mickey's voice for many of those episodes before his death). Wayne would change his Mickey voice to a mid-low pitch to make Mickey sound more calm as he spoke. Viewers thought"} +{"qid": "test577", "pid": "4021601", "query": "who does the voice of mickey mouse on mickey mouse clubhouse", "answer": "Wayne Allwine", "passage": "\"Wayne Allwine\"\neffects department under Jimmy MacDonald. After auditioning for the role, Allwine became the voice of Mickey Mouse from 1977 until his death in 2009. He succeeded MacDonald, who in 1947 had taken over from Walt Disney himself, who had performed the role since 1928 as well as supplying Mickey's voice for animated portions of the original \"\"The Mickey Mouse Club\"\" television show (ABC-TV, 1955–59). Allwine's first appearance as Mickey was voicing the animated lead-ins for \"\"The New Mickey Mouse Club\"\" in 1977. His first appearance as Mickey for a theatrical release was in the 1983 featurette \"\"Mickey's Christmas Carol\"\". In"} +{"qid": "test580", "pid": "6682092", "query": "what does the ghost of christmas present sprinkle from his torch", "answer": "warmth", "passage": "\"Ghost of Christmas Present\"\na scabbard with no sword in it, a representation of peace on Earth and good will toward men. The spirit transports Scrooge around the city, showing him scenes of festivity and also deprivation that are happening as they watch, sprinkling a little warmth from his torch as he travels. Amongst the visits are the city streets, Scrooge's nephew’s Christmas party, and the family of his impoverished clerk, Bob Cratchit. Scrooge takes an interest in Cratchit's desperately-ill son, Tiny Tim, and asks the Ghost if Tim will live. The Ghost first states that \"\"If these shadows remain unaltered by the Future,"} +{"qid": "test581", "pid": "19966273", "query": "who won the 2018 women's royal rumble match", "answer": "Asuka", "passage": "\"Royal Rumble (2018)\"\nRoyal Rumble (2018) Royal Rumble (2018) was a professional wrestling pay-per-view (PPV) event and WWE Network event produced by WWE featuring wrestlers primarily from the Raw and SmackDown brands, as well as surprise appearances from competitors on the NXT brand. It took place on January 28, 2018, at the Wells Fargo Center in Philadelphia, Pennsylvania. It was the thirty-first event under the Royal Rumble chronology, the first to include a women's Royal Rumble match, and consequently, two Royal Rumble matches. Nine matches were contested at the event, including three on the pre-show. In the main event, Asuka won the first-ever"} +{"qid": "test581", "pid": "8086621", "query": "who won the 2018 women's royal rumble match", "answer": "Asuka", "passage": "\"History of WWE\"\nthe Bank ladder match at Money in the Bank. In January 2018, Asuka won the first ever 30 Women's Royal Rumble match at the Royal Rumble. In February 2018, Alexa Bliss won the first ever women's Elimination Chamber Match at the Elimination Chamber, where she would retained the Raw women's championship. At WrestleMania 34, former UFC fighter Ronda Rousey made her WWE in ring debut, teaming with Kurt Angle to defeat Triple H and Stephanie McMahon in a mixed tag team match. Daniel Bryan returned to in ring competition at WrestleMania 34, teaming with Shane McMahon to defeat Kevin Owens"} +{"qid": "test581", "pid": "20467809", "query": "who won the 2018 women's royal rumble match", "answer": "Asuka", "passage": "\"Elimination Chamber (2018)\"\nJanuary 15 episode of \"\"Raw\"\", Asuka defeated Nia Jax after the referee stopped the match, who deemed Jax unable to continue. Both then competed in the inaugural women's Royal Rumble match at the Royal Rumble, which Asuka won for the right to challenge for either the Raw Women's Championship or SmackDown Women's Championship at WrestleMania 34. On the February 5 episode of \"\"Raw\"\", General Manager Kurt Angle announced that Jax would face Asuka at Elimination Chamber and if she were to defeat Asuka, Jax would be added to Asuka's championship match at WrestleMania to make it a triple threat match."} +{"qid": "test581", "pid": "15812110", "query": "who won the 2018 women's royal rumble match", "answer": "Asuka", "passage": "\"Asuka (wrestler)\"\nand Raw Women's Champion Alexa Bliss in a non-title match. On January 28, 2018 at the Royal Rumble, Asuka won the first women's Royal Rumble match, entering at number 25 and eliminating her former rival Ember Moon and lastly Nikki Bella to earn herself a women's championship match at WrestleMania 34. Throughout January and February, Asuka feuded with Nia Jax, who attacked her during and before her matches. Asuka defeated Nia Jax on February 25 at Elimination Chamber and again on the March 5 episode of \"\"Raw\"\". In parallel, she also took a part of the Mixed Match Challenge tournament,"} +{"qid": "test581", "pid": "19966301", "query": "who won the 2018 women's royal rumble match", "answer": "Asuka", "passage": "\"Royal Rumble (2018)\"\nBliss was scheduled to defend her title in the first-ever women's Elimination Chamber match, and the result may affect Asuka's decision. Asuka was then confronted by Sasha Banks, who spent the longest time in the Royal Rumble match, and Banks challenged Asuka to a match that Asuka won. Banks, along with Bayley, Mandy Rose, Mickie James, and Sonya Deville were announced as the other competitors in the Elimination Chamber match. Nia Jax was also scheduled to face Asuka at Elimination Chamber where if she were to win, she would be added to the Asuka's championship match at WrestleMania. On the"} +{"qid": "test581", "pid": "20467842", "query": "who won the 2018 women's royal rumble match", "answer": "Asuka", "passage": "\"Fastlane (2018)\"\ninterrupted and said that they had been with the WWE for a number of years, but had never had a spot on the main card at WrestleMania and said that would not be the case at WrestleMania 34. As the two teams had a confrontation, they were interrupted by The Bludgeon Brothers (Harper and Rowan) and retreated. At the Royal Rumble, Asuka of the Raw brand won the inaugural women's Royal Rumble match for the right to challenge for either the Raw Women's Championship or SmackDown Women's Championship at WrestleMania 34. The following night on \"\"Raw\"\", Raw Commissioner Stephanie McMahon"} +{"qid": "test582", "pid": "9114724", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Australia", "passage": "\"The Endless Summer II\"\nof surf sessions in France, South Africa, Costa Rica, Australia, Bali, Java, and even Alaska. It also has a brief cameo appearance by morey surfer Felipe Zylbersztajn, Steve Irwin, and Mary, a crocodile from Irwin's Australia Zoo. In 2003, Dana Brown, Bruce's son, made what is seen as the \"\"third movie\"\", \"\"Step into Liquid\"\". It follows the evolution of surfing over the last 10–15 years from shortboarding to tow-in surfing. The Endless Summer II The Endless Summer II is a 1994 film directed by Bruce Brown and is a sequel to his 1966 film \"\"The Endless Summer\"\". In \"\"The Endless"} +{"qid": "test582", "pid": "1430267", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "South Africa", "passage": "\"The Endless Summer\"\nretrace the steps of Hynson and August. It shows the growth and evolution of the surfing scene since the first film, which presented only classic longboard surfing. O'Connell rides a shortboard, which was developed in the time between the two movies, and there are scenes of windsurfing and bodyboarding. The film illustrates how far surfing had spread, with footage of surf sessions in France, South Africa, Costa Rica, Bali, Java, and even Alaska. The sequel follows a similar structure to the original, with another round the world surfing adventure reflecting on cultural differences since the first film was shot. In"} +{"qid": "test582", "pid": "1430268", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Ghana", "passage": "\"The Endless Summer\"\n2000, Dana Brown, Bruce's son, released \"\"The Endless Summer Revisited\"\", which consisted of unused footage from the first two films, as well as original cast interviews. The Endless Summer The Endless Summer is a seminal 1966 surf movie (the initial release was in 1964, world-wide release was 1966). Filmmaker/narrator Bruce Brown follows two surfers, Mike Hynson and Robert August, on a surfing trip around the world. Despite the balmy climate of their native California, cold ocean currents make local beaches inhospitable during the winter. They travel to the coasts of Australia, New Zealand, Tahiti, Hawaii, Senegal, Ghana, Nigeria and South"} +{"qid": "test582", "pid": "5816394", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Hawaii", "passage": "\"Surf film\"\nSurf film Surf movies fall into three distinct genres: The sporting documentary film was pioneered by Bud Browne (e.g. \"\"Hawaiian Holiday\"\") in the 1940s and early 1950s, and later popularized by Bruce Brown (e.g. \"\"The Endless Summer\"\") in the late 1950s and early 1960s, then later perfected by Greg MacGillivray and Jim Freeman (e.g. \"\"Five Summer Stories\"\") in the 1970s and beyond (MacGillivray and Freeman later went on to film IMAX movies such as \"\"To Fly!\"\" and \"\"Speed\"\"). The genre in itself has been defined by surfers, traveling with their friends and documenting the experience on film. In the 'heyday'"} +{"qid": "test582", "pid": "19408757", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "South Africa", "passage": "\"Surfing in South Africa\"\nwho was born in Zimbabwe. Jeffreys Bay is one of the five most famous surfing destinations (no.2 on one \"\"best in the world\"\" surfing list) in the world and hosts the annual Billabong Pro ASP World Tour surfing event at Super Tubes during July. A right hand point wave at St. Francis Bay was first idolised and promoted in the cult classic surf movie \"\"The Endless Summer\"\" in the 1960s Surfing in South Africa Surfing in South Africa began in Durban in the 1940s. By 1965 the South African Surfing Association was formed. In recent years surfing associations have tried"} +{"qid": "test582", "pid": "5816399", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Hawaii", "passage": "\"Surf film\"\nfrom the Bohemian surf boom\"\" Santa Monica Press Chapter 7
Ormrod & Wheaton (2009) \"\"On the edge: leisure, consumption and the representation of adventure sports\"\" Leisure Studies Association Issue 104: 17-25 Surf film Surf movies fall into three distinct genres: The sporting documentary film was pioneered by Bud Browne (e.g. \"\"Hawaiian Holiday\"\") in the 1940s and early 1950s, and later popularized by Bruce Brown (e.g. \"\"The Endless Summer\"\") in the late 1950s and early 1960s, then later perfected by Greg MacGillivray and Jim Freeman (e.g. \"\"Five Summer Stories\"\") in the 1970s and beyond (MacGillivray and Freeman later went on"} +{"qid": "test582", "pid": "7175165", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Hawaii", "passage": "\"Riding Giants\"\n\"\"Gidget\"\" movies, \"\"Endless Summer\"\", The Beach Boys, Elvis and lots of TV commercials. \"\"Riding Giants\"\" is about altogether another reality.\"\" Riding Giants Riding Giants is a 2004 documentary film directed and narrated by Stacy Peralta, a famous skater/surfer. The movie traces the origins of surfing and specifically focuses on the art of big wave riding. Some of the featured surfers are Greg Noll, Laird Hamilton, and Jeff Clark, and surfing pioneers such as Mickey Munoz. The film begins with a historical overview, starting at its Hawaiian beginnings, then moves on to focus on the dangerous lure of big-wave surfing (surfing"} +{"qid": "test582", "pid": "1430266", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "South Africa", "passage": "\"The Endless Summer\"\nTimes\"\", Robert Alden wrote, \"\"the subject matter itself—the challenge and the joy of a sport that is part swimming, part skiing, part sky-diving and part Russian roulette—is buoyant fun\"\". The then-unknown break off Cape St. Francis in South Africa became one of the world's most famous surfing sites thanks to \"\"The Endless Summer\"\". In 2002, \"\"The Endless Summer\"\" was selected for preservation in the United States National Film Registry by the Library of Congress as being \"\"culturally, historically, or aesthetically significant\"\". In 1994, Brown released a sequel, \"\"The Endless Summer II\"\", in which surfers Pat O'Connell and Robert \"\"Wingnut\"\" Weaver"} +{"qid": "test582", "pid": "1430258", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Ghana", "passage": "\"The Endless Summer\"\nThe Endless Summer The Endless Summer is a seminal 1966 surf movie (the initial release was in 1964, world-wide release was 1966). Filmmaker/narrator Bruce Brown follows two surfers, Mike Hynson and Robert August, on a surfing trip around the world. Despite the balmy climate of their native California, cold ocean currents make local beaches inhospitable during the winter. They travel to the coasts of Australia, New Zealand, Tahiti, Hawaii, Senegal, Ghana, Nigeria and South Africa in a quest for new surf spots and introduce locals to the sport. Other important surfers of the time, such as Miki Dora, Phil Edwards"} +{"qid": "test582", "pid": "1430262", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Hawaii", "passage": "\"The Endless Summer\"\nOnce Brown got back to the states, he edited his footage into an hour-long film. Surfer Dale Velzy showed it at his San Clemente shop, charging 25 cents for admission. Velzy bought Brown a 16 mm camera and together they raised $5,000 to make \"\"Slippery When Wet\"\", Brown's first \"\"real\"\" surf film. In the winter of 1958, Brown went back to Hawaii to film the North Shore's big surf. On the plane ride over, the novice filmmaker read a book about how to make movies. Brown said, \"\"I never had formal training in filmmaking and that probably worked to my"} +{"qid": "test582", "pid": "19401252", "query": "where was part of the classic surfing movie endless summer filmed", "answer": "Hawaii", "passage": "\"Lord James Blears\"\nacting appearance in 1950, playing a dramatized version of himself in an episode of \"\"The Buster Keaton Show\"\". In 1966, Blears appeared in the surfing documentary \"\"The Endless Summer\"\", playing himself. He played himself once more in the 1974 professional wrestling documentary \"\"The Wrestler\"\". In 1987, he appeared in the surfing movie \"\"North Shore\"\". Blears appeared in an episode of \"\"Hawaii Five-O\"\" in 1977 and in episodes of \"\"Magnum, P.I.\"\" filmed in Hawaii in 1982 and 1983. Blears was born in Tyldesley, Lancashire in the United Kingdom, but moved to the United States in the mid-1940s and ultimately successfully applied"} +{"qid": "test585", "pid": "18036959", "query": "who are nominated for president of india 2017", "answer": "Meira Kumar", "passage": "\"Ram Nath Kovind\"\nchoice and praised Kovind as being unbiased and working closely with the State Government during his Governorship. After nomination for the post of 14th President of India, he resigned from his post as Governor of Bihar, and President of India Pranab Mukherjee accepted his resignation on 20 June 2017. He won election on 20 July 2017. Ram Nath Kovind received 65.65% of the valid votes, against former Speaker of the Lok Sabha - Meira Kumar, the presidential candidate of the Opposition who received 34.35% of the total votes. Kovind received 2,930 votes (From MPs and MLAs) amounting to Electoral College"} +{"qid": "test585", "pid": "19490480", "query": "who are nominated for president of india 2017", "answer": "Ram Nath Kovind", "passage": "\"2017 elections in India\"\n2017 elections in India The elections in India in 2017 include the seven state legislative assembly elections. A presidential election was held in India on 17 July 2017 before the term of the President Pranab Mukherjee ended. Ram Nath Kovind was declared the winner after the counting of votes which was held on 20 July 2017. A Vice Presidential election were held in India on 5 August 2017 before the term of Vice President Mohammad Hamid Ansari ends. Venkaiah Naidu was elected as the Vice President of India. Mr Naidu received 516 votes defeating the opposition's candidate, Gopal Krishna Gandhi,"} +{"qid": "test586", "pid": "5637537", "query": "who wrote he ain't heavy he's my brother lyrics", "answer": "Bobby Scott", "passage": "\"He Ain't Heavy, He's My Brother\"\nHe Ain't Heavy, He's My Brother \"\"He Ain't Heavy, He's My Brother\"\" is a ballad written by Bobby Scott and Bob Russell. Originally recorded by Kelly Gordon in 1969, the song became a worldwide hit for The Hollies later that year and again for Neil Diamond in 1970. It has been recorded by many artists in subsequent years. The Hollies' and Rufus Wainwright's versions of the song were featured in the film \"\"Zoolander\"\". Scott and Russell had been introduced to each other by Johnny Mercer, at a California nightclub. Although Russell was dying of lymphoma and the pair met in"} +{"qid": "test586", "pid": "5637546", "query": "who wrote he ain't heavy he's my brother lyrics", "answer": "Bobby Scott", "passage": "\"He Ain't Heavy, He's My Brother\"\nDave McCabe, Paul Heaton, Hollie Cook, Jon McClure, John Power, Gerry Marsden, and two original members of The Hollies, Bobby Elliott and Tony Hicks. Another version by an unknown vocalist was used in the early 1990s by the New Zealand Police in a televised public service announcement. He Ain't Heavy, He's My Brother \"\"He Ain't Heavy, He's My Brother\"\" is a ballad written by Bobby Scott and Bob Russell. Originally recorded by Kelly Gordon in 1969, the song became a worldwide hit for The Hollies later that year and again for Neil Diamond in 1970. It has been recorded by"} +{"qid": "test586", "pid": "11438875", "query": "who wrote he ain't heavy he's my brother lyrics", "answer": "Bobby Scott", "passage": "\"Bobby Scott (musician)\"\n\"\"Billboard\"\" Hot 100 with the song \"\"Chain Gang\"\", peaking at #13. (This was not the same song as Sam Cooke's \"\"Chain Gang\"\".) It sold over one million copies, and was awarded a gold disc. As a bandleader, he did sessions for Verve, ABC-Paramount, Bethlehem, and Musicmasters. As a songwriter, he won a Grammy Award for Best Instrumental Composition for the song \"\"A Taste of Honey\"\". In addition to \"\"A Taste of Honey\"\", Scott also co-wrote the song \"\"He Ain't Heavy, He's My Brother\"\". In the 1960s he became a music teacher and studied again under Moritz, but occasionally recorded as"} +{"qid": "test586", "pid": "5371652", "query": "who wrote he ain't heavy he's my brother lyrics", "answer": "Bobby Scott", "passage": "\"Bob Russell (songwriter)\"\nLikely, Blue Gardenia\"\" and \"\"Matter of Who\"\" (1961), Russell's compositions included the title songs. He had his last hit song in 1969-70 with \"\"He Ain't Heavy, He's My Brother\"\", co-written with Bobby Scott and recorded by The Hollies. The song was introduced to the group by Russell's son-in-law Jefferey Spearitt, who was living in London at the time with his wife Simohn. Among Russell's collaborators were Lou Alter, Peter De Rose, Duke Ellington, Bronislaw Kaper, Lester Lee, Carl Sigman, Harold Spina, and Harry Warren. In 1970 he was inducted into the Songwriters Hall of Fame. In 2004, he was posthumously"} +{"qid": "test587", "pid": "10278054", "query": "when was the lupus foundation of america founded", "answer": "1977", "passage": "\"Lupus Foundation of America\"\nLupus Foundation of America The Lupus Foundation of America (LFA), founded in 1977, is a national voluntary health organization based in Washington, D.C. with a network of chapters, offices and support groups located in communities throughout the United States. The Foundation is devoted to solving the mystery of lupus, one of the world’s cruelest, most unpredictable and devastating diseases, while giving caring support to those who suffer from its brutal impact. Its mission is to improve the quality of life for all people affected by lupus through programs of research, education, support and advocacy. The Lupus Foundation of America is"} +{"qid": "test588", "pid": "435902", "query": "who drafted the document of the un declaration of human rights", "answer": "René Cassin", "passage": "\"United Nations\"\nby a committee headed by American diplomat and activist Eleanor Roosevelt, and including the French lawyer René Cassin. The document proclaims basic civil, political, and economic rights common to all human beings, though its effectiveness towards achieving these ends has been disputed since its drafting. The Declaration serves as a \"\"common standard of achievement for all peoples and all nations\"\" rather than a legally binding document, but it has become the basis of two binding treaties, the 1966 International Covenant on Civil and Political Rights and International Covenant on Economic, Social and Cultural Rights. In practice, the UN is unable"} +{"qid": "test588", "pid": "19709255", "query": "who drafted the document of the un declaration of human rights", "answer": "Eleanor Roosevelt", "passage": "\"Margaret A. Hickey\"\nParis to work on the human rights section of the UN charter with Eleanor Roosevelt. The document the committee drafted is now known as the Universal Declaration of Human Rights. Also in that year, Hickey went back to journalism and joined the \"\"Ladies Home Journal,\"\" a successful wartime magazine stationed in Philadelphia, Pennsylvania. She received the Ben Franklin Award for Distinguished Public Service Journalism in 1953 from the city of Philadelphia. In 1961, Hickey was appointed by President John F. Kennedy as a chairman of the United Nations Commission on the Status of Women. She primarily worked on federal employment"} +{"qid": "test588", "pid": "434773", "query": "who drafted the document of the un declaration of human rights", "answer": "Eleanor Roosevelt", "passage": "\"Universal Declaration of Human Rights\"\nthe Rights of the Child, the United Nations Convention Against Torture, and many more. The Declaration continues to be widely cited by governments, academics, advocates, and constitutional courts, and by individuals who appeal to its principles for the protection of their recognised human rights. The Universal Declaration has received praise from a number of notable people. The Lebanese philosopher and diplomat Charles Malik called it \"\"an international document of the first order of importance\"\", while Eleanor Roosevelt—first chairwoman of the Commission on Human Rights (CHR) that drafted the Declaration—stated that it \"\"may well become the international Magna Carta of all"} +{"qid": "test588", "pid": "12461047", "query": "who drafted the document of the un declaration of human rights", "answer": "John Peters Humphrey", "passage": "\"Drafting of the Universal Declaration of Human Rights\"\nDrafting of the Universal Declaration of Human Rights The Universal Declaration of Human Rights was drafted from early 1947 to late 1948 by Drafting Committee the first United Nations Commission on Human Rights. Further discussion and amendments were made by the Commission on Human Rights, the Economic and Social Council and the General Assembly of the United Nations. Members of the Commission who contributed significantly to the creation of the Declaration included Canadian John Peters Humphrey of the United Nations Secretariat, Eleanor Roosevelt of the United States (who chaired the Drafting Committee), René Cassin of France, Charles Malik of Lebanon,"} +{"qid": "test588", "pid": "18263120", "query": "who drafted the document of the un declaration of human rights", "answer": "William Roy Hodgson", "passage": "\"William Roy Hodgson\"\nand the Human Rights Commission. He was also an Australian delegate to the Paris Peace Treaties, 1947. In 1946 the UN established the Commission on human rights (see United Nations Human Rights Committee), and Colonel Hodgson made a significant contribution. Eleanor Roosevelt took on the role of chairing the Commission and took up the task of drafting the Universal Declaration of Human rights, with Hodgson being involved in this committee. He was particularly interested in the enforcement of human rights and pushed for an international tribunal for the filing of complaints. As an alternative, Hodgson proposed that the declaration be"} +{"qid": "test588", "pid": "4450560", "query": "who drafted the document of the un declaration of human rights", "answer": "John Peters Humphrey", "passage": "\"Canada and the United Nations\"\nCanada and the United Nations Canada has been a member of the United Nations since it was established, and has served six separate terms on the UN Security Council. Canada has also participated in United Nations peacekeeping missions. In the initial set-up of the UN, McGill University law professor John Peters Humphrey established the Division for Human Rights in the UN Secretariat, and remained in charge of the division for twenty years. The initial work of the Division for Human Rights was the creation of the Universal Declaration of Human Rights of which Humphrey created the first draft and remained"} +{"qid": "test59", "pid": "20385637", "query": "who has won the mens singles title in the australian open tennis tournament", "answer": "Roger Federer", "passage": "\"2018 Australian Open\"\n2018 Australian Open The 2018 Australian Open was a tennis tournament played at Melbourne Park between 15–28 January 2018, and was the first Grand Slam tournament of the 2018 season. The tournament consisted of events for professional players in singles, doubles and mixed doubles play. Junior and wheelchair players compete in singles and doubles tournaments. Roger Federer was the defending champion in the men's singles event and successfully retained his title (his sixth), defeating Marin Čilić in the final, while Caroline Wozniacki won the women's title, defeating Simona Halep in the final to win her first Grand Slam. The tournament"} +{"qid": "test59", "pid": "19469920", "query": "who has won the mens singles title in the australian open tennis tournament", "answer": "Roger Federer", "passage": "\"2006 Rafael Nadal tennis season\"\n2006 Rafael Nadal tennis season The 2006 Rafael Nadal tennis season started in February as Nadal missed the Australian Open because of a foot injury. Nadal won five singles titles in 2006. In February, Nadal lost in the semifinals of the first tournament he played, the Open 13 tournament in Marseille, France. Two weeks later, he handed Roger Federer his first loss of the year in the final of the Dubai Duty Free Men's Open (in 2006, Rafael Nadal and Andy Murray were the only two men who defeated Federer). To complete the spring hard-court season, Nadal was upset in"} +{"qid": "test59", "pid": "12796930", "query": "who has won the mens singles title in the australian open tennis tournament", "answer": "Roger Federer", "passage": "\"2003 ABN AMRO World Tennis Tournament\"\n2003 ABN AMRO World Tennis Tournament The 2003 ABN AMRO World Tennis Tournament was a men's tennis tournament played on indoor hard courts at Ahoy Rotterdam in the Netherlands. It was part of the International Series Gold of the 2003 ATP Tour. The tournament ran from 17 February through 23 February 2003. Unseeded Max Mirnyi won the singles title. The singles draw featured Association of Tennis Professionals (ATP) No. 3, Australian Open quarterfinalist, Tennis Masters Cup and Sydney runner-up Juan Carlos Ferrero, Doha quarterfinalist and Marseille winner Roger Federer and Sydney quarterfinalist and Paris Masters champion Marat Safin. Other seeded"} +{"qid": "test590", "pid": "1430191", "query": "who plays alec ramsay in the black stallion", "answer": "Kelly Reno", "passage": "\"The Black Stallion (film)\"\nThe Black Stallion (film) The Black Stallion is a 1979 American adventure film based on the 1941 classic children's novel \"\"The Black Stallion\"\" by Walter Farley. But the film starts in 1946, five years after the book was published. It tells the story of Alec Ramsey, who is shipwrecked on a deserted island with a wild Arabian stallion whom he befriends. After being rescued, they are set on entering a race challenging two champion horses. The film is adapted by Melissa Mathison, Jeanne Rosenberg and William D. Wittliff. It is directed by Carroll Ballard. The movie stars Kelly Reno, Teri"} +{"qid": "test590", "pid": "9843781", "query": "who plays alec ramsay in the black stallion", "answer": "Kelly Reno", "passage": "\"The Black Stallion Returns\"\nThe Black Stallion Returns The Black Stallion Returns is a 1983 film adaptation of the book of the same name by Walter Farley, and is a sequel to \"\"The Black Stallion\"\". It is directed by Robert Dalva and produced by Francis Ford Coppola for MGM/UA Entertainment Company. The movie stars Kelly Reno, Vincent Spano and Teri Garr. The portrayal of The Black was shared between Cass Ole, the horse from \"\"The Black Stallion\"\", and El Mokhtar. The story begins with several odd occurrences at the farm where the Black, Alec (Kelly Reno), and his mother (Teri Garr) live. A suspicious"} +{"qid": "test590", "pid": "8281653", "query": "who plays alec ramsay in the black stallion", "answer": "Kelly Reno", "passage": "\"Kelly Reno\"\nKelly Reno Kelly Reno (born June 19, 1966 raised in Pueblo Colorado) is a former child actor who was cast at age 11 in the role of Alec Ramsey (after responding to an open casting call), the young boy who is marooned on a deserted island along with an Arabian horse, in \"\"The Black Stallion\"\" (based on the novel by Walter Farley). The film was made in 1977. Reno did nearly all of the action scenes in the movie. Reno also appeared in the 1983 film adaptation of \"\"The Black Stallion Returns\"\", alongside Vincent Spano. Reno's acting career was cut"} +{"qid": "test591", "pid": "11536710", "query": "who wrote you must have been a beautiful baby", "answer": "Johnny Mercer", "passage": "\"You Must Have Been a Beautiful Baby\"\nthe charts again that year. The song has been recorded by many other artists (see below for a partial list) and is considered a popular standard. It was used frequently in the Looney Tunes and Merrie Melodies cartoons, also produced by Warner Brothers, under the musical direction of Carl W. Stalling. You Must Have Been a Beautiful Baby \"\"You Must Have Been a Beautiful Baby\"\" is a popular song with music by Harry Warren and lyrics by Johnny Mercer, published in 1938 by Remick Music Corporation. It was featured in the Warner Brothers movie \"\"Hard to Get,\"\" released November 1938,"} +{"qid": "test591", "pid": "11536709", "query": "who wrote you must have been a beautiful baby", "answer": "Johnny Mercer", "passage": "\"You Must Have Been a Beautiful Baby\"\nYou Must Have Been a Beautiful Baby \"\"You Must Have Been a Beautiful Baby\"\" is a popular song with music by Harry Warren and lyrics by Johnny Mercer, published in 1938 by Remick Music Corporation. It was featured in the Warner Brothers movie \"\"Hard to Get,\"\" released November 1938, in which it was sung by Dick Powell. The biggest-selling hit version was recorded by Bing Crosby, with Bob Crosby and his orchestra while other contemporaneous hit versions included recordings by Tommy Dorsey (with vocal by Edythe Wright) and Russ Morgan. It was also revived by Bobby Darin in 1961, reaching"} +{"qid": "test591", "pid": "2352902", "query": "who wrote you must have been a beautiful baby", "answer": "Harry Warren", "passage": "\"Harry Warren\"\nthan 800 songs. Other well known Warren hits included \"\"I Only Have Eyes for You\"\", \"\"You Must Have Been a Beautiful Baby\"\", \"\"Jeepers Creepers\"\", \"\"The Gold Diggers' Song (We're in the Money)\"\", \"\"That's Amore\"\", \"\"The More I See You\"\", \"\"At Last\"\" and \"\"Chattanooga Choo Choo\"\" (the last of which was the first gold record in history). Warren was one of America's most prolific film composers,and his songs have been featured in over 300 films. Warren was born Salvatore Antonio Guaragna, one of eleven children of Italian immigrants Antonio (a bootmaker) and Rachel De Luca Guaragna, and grew up in Brooklyn,"} +{"qid": "test591", "pid": "1454095", "query": "who wrote you must have been a beautiful baby", "answer": "Johnny Mercer", "passage": "\"Johnny Mercer\"\nwith the veteran composer Richard Whiting (\"\"Ain't We Got Fun?\"\"), soon producing his standard, \"\"Too Marvelous for Words\"\", followed by \"\"Hooray for Hollywood\"\". After Whiting's sudden death from a heart attack, Mercer joined forces with Harry Warren and created \"\"Jeepers Creepers\"\", which earned Mercer his first Oscar nomination for Best Song (1938). It was given a memorable recording by Louis Armstrong. Another hit with Warren in 1938 was \"\"You Must Have Been a Beautiful Baby\"\". The pair also created \"\"Hooray for Spinach\"\", a comic song produced for the film \"\"Naughty but Nice\"\" in 1939. During a lull at Warners, Mercer"} +{"qid": "test593", "pid": "349629", "query": "when was rosencrantz and guildenstern are dead written", "answer": "1966", "passage": "\"Rosencrantz and Guildenstern Are Dead\"\nRosencrantz and Guildenstern Are Dead Rosencrantz and Guildenstern Are Dead, often referred to as just Rosencrantz and Guildenstern, is an absurdist, existential tragicomedy by Tom Stoppard, first staged at the Edinburgh Festival Fringe in 1966. The play expands upon the exploits of two minor characters from Shakespeare's \"\"Hamlet\"\", the courtiers Rosencrantz and Guildenstern. The main setting is Denmark. The action of Stoppard's play takes place mainly \"\"in the wings\"\" of Shakespeare's, with brief appearances of major characters from \"\"Hamlet\"\" who enact fragments of the original's scenes. Between these episodes the two protagonists voice their confusion at the progress of events"} +{"qid": "test593", "pid": "178575", "query": "when was rosencrantz and guildenstern are dead written", "answer": "1966", "passage": "Hamlet\nor act as sequels or prequels to \"\"Hamlet\"\". This section is limited to those written for the stage. The best-known is Tom Stoppard's 1966 play \"\"Rosencrantz and Guildenstern Are Dead\"\", which retells many of the events of the story from the point of view of the characters Rosencrantz and Guildenstern and gives them a backstory of their own. Several times since 1995, the American Shakespeare Center has mounted repertories that included both \"\"Hamlet\"\" and \"\"Rosencrantz and Guildenstern\"\", with the same actors performing the same roles in each; in their 2001 and 2009 seasons the two plays were \"\"directed, designed, and"} +{"qid": "test593", "pid": "349647", "query": "when was rosencrantz and guildenstern are dead written", "answer": "1966", "passage": "\"Rosencrantz and Guildenstern Are Dead\"\n(3.3). Since Rosencrantz and Guildenstern are characters from \"\"Hamlet\"\" itself, Stoppard's entire play can be considered a piece of metatheatre. Bernardina da Silveira Pinheiro observes that Stoppard uses metatheatrical devices to produce a \"\"parody\"\" of the key elements of Shakespeare's \"\"Hamlet\"\" that includes foregrounding two minor characters considered \"\"nonentities\"\" in the original tragedy. The play had its first incarnation as a 1964 one-act titled \"\"Rosencrantz and Guildenstern Meet King Lear\"\". The expanded version under the current title was first staged at the Edinburgh Festival Fringe on 24 August 1966, by the Oxford Theatre Group. The play debuted in London with"} +{"qid": "test594", "pid": "17295879", "query": "who plays connor's mom in madeas christmas", "answer": "Kathy Najimy", "passage": "\"A Madea Christmas (film)\"\nto her class, but is interrupted by Oliver, who gives her a kiss. While she tries to tell Oliver that she is married and is not interested in getting back together with him, her and the principal discover that Madea has tied the girl that stole her purse to the cross decoration in the classroom. Connor's parents, Buddy (Larry the Cable Guy), and Kim (Kathy Najimy), arrive at Connor and Lacey's house, as they have come to visit him for Christmas and are told that they must not mention that he and Lacey are married, as they do not know"} +{"qid": "test595", "pid": "17324985", "query": "hazels boyfriend in the fault in our stars", "answer": "Augustus Waters", "passage": "\"The Fault in Our Stars (film)\"\nThe Fault in Our Stars (film) The Fault in Our Stars is a 2014 American romantic tragedy film directed by Josh Boone, based on the 2012 novel of the same name by John Green. The film stars Shailene Woodley, Ansel Elgort, Laura Dern, Sam Trammell, Nat Wolff, and Willem Dafoe playing supporting roles. Woodley plays Hazel Grace Lancaster, a sixteen-year-old cancer patient who is forced by her parents to attend a support group, where she meets and subsequently falls in love with Augustus Waters, another cancer patient, played by Elgort. Development of \"\"The Fault in Our Stars\"\" began in January"} +{"qid": "test595", "pid": "5662386", "query": "hazels boyfriend in the fault in our stars", "answer": "Augustus Waters", "passage": "\"Shailene Woodley\"\nits opening weekend and was a financial success. Afterwards in 2014, Woodley starred as Hazel Grace Lancaster in \"\"The Fault in Our Stars,\"\" the film adaptation of John Green's novel of the same name. She portrayed a 16-year-old cancer patient who meets and falls in love with Augustus Waters (played by Ansel Elgort) (and also her brother in the Divergent series), a similarly afflicted teen from her cancer support group. Green added via Twitter about Woodley; \"\"There were so many amazing auditions for the role of Hazel, but Shailene's love for the book and her understanding of Hazel blew me"} +{"qid": "test595", "pid": "17324988", "query": "hazels boyfriend in the fault in our stars", "answer": "Augustus Waters", "passage": "\"The Fault in Our Stars (film)\"\nthe same thing. There Hazel meets Augustus Waters, a charming teenager who lost a leg to bone cancer but has since apparently been cancer-free. He invites Hazel to his house where they bond over their hobbies and agree to read each other's favorite books. Hazel recommends \"\"An Imperial Affliction\"\", a novel about a cancer-stricken girl named Anna that parallels her experience, and Augustus gives Hazel \"\"Counter Insurgence\"\". They keep in touch via text over the weeks that follow and grow closer. After Augustus finishes the book, he expresses frustration with its abrupt ending (it ends in the middle of a"} +{"qid": "test595", "pid": "17324996", "query": "hazels boyfriend in the fault in our stars", "answer": "Augustus Waters", "passage": "\"The Fault in Our Stars (film)\"\nheld up her script pages and just her eyes were peeking over them.\"\" On May 10, 2013, Ansel Elgort was cast as Hazel's love interest, Augustus Waters. On July 23, Laura Dern joined the cast as Hazel's mother Frannie Lancaster, and Nat Wolff as Issac, Augustus' best friend. Wolff told HuffPost Live: \"\"It's exciting, I feel really lucky. The fact that I get to work with these super talented peopleI mean, that's part of the reason why, I'm good in the movie, that's the reason.\"\" On August 14, Sam Trammell was cast as Hazel's father Michael Lancaster, and on August"} +{"qid": "test595", "pid": "15724372", "query": "hazels boyfriend in the fault in our stars", "answer": "Augustus Waters", "passage": "\"The Fault in Our Stars\"\n17-year-old Augustus Waters, an ex-basketball player and amputee. A feature film adaptation of the novel directed by Josh Boone and starring Shailene Woodley, Ansel Elgort and Nat Wolff was released on June 6, 2014. Both the book and its film adaptation were met with strong critical and commercial success. Hazel Grace Lancaster, a 16-year-old with thyroid cancer that has spread to her lungs, attends a cancer patient support group at her mother's behest. At one meeting, Hazel meets a 17-year-old boy currently in remission named Augustus Waters, whose Osteosarcoma caused him to lose his right leg. Augustus is at the"} +{"qid": "test596", "pid": "313758", "query": "who has won the most games in nfl 2017", "answer": "Dallas Cowboys", "passage": "\"Pittsburgh Steelers\"\nsince . In the NFL's \"\"modern era\"\" (since the AFL–NFL merger in 1970) the Steelers have posted the best record in the league. The franchise has won the most regular season games, the most playoff games (33 playoff wins; the Dallas Cowboys are second with 32), won the most divisional titles (20), has played in the most conference championship games (15), hosted the most conference championship games (11), and is tied with the Dallas Cowboys, the Denver Broncos and the New England Patriots for the most Super Bowl appearances (8). The Steelers have the best winning percentage (including every expansion"} +{"qid": "test596", "pid": "11515980", "query": "who has won the most games in nfl 2017", "answer": "Dallas Cowboys", "passage": "\"National Football League Christmas games\"\nthe Arizona Cardinals hosted the Dallas Cowboys on ABC's \"\"Monday Night Football\"\" in 1995, and on the NFL Network in 2010. However, in this case, each game was played at a different venue – the 1995 game at Sun Devil Stadium (where the Cowboys won Super Bowl XXX a month later), and the 2010 game at University of Phoenix Stadium. \"\"By Franchise (as of 2017 NFL Season)\"\" There have also been several games played on Christmas Eve over the years, the most famous of these being an Oakland Raiders-Baltimore Colts playoff contest in which culminated in a play immortalized as"} +{"qid": "test597", "pid": "1634259", "query": "when did italy enter the second world war", "answer": "10 June 1940", "passage": "\"Fiat CR.42\"\n10 June 1940, the date on which Italy entered the Second World War on the side of Germany, roughly 300 aircraft had been delivered. Italy had delayed its entry into the war in order to better prepare itself for combat; through the period commonly known as the Phoney War, the \"\"Regia Aeronautica\"\" activated many new squadrons and did all that was possible to speed up aircraft deliveries, including of the CR.42. Accordingly, further orders for the type were placed as a part of this expansion effort. Upon Italy's entry into the conflict, the \"\"Falchi\"\" was principally tasked with the defense"} +{"qid": "test597", "pid": "4971309", "query": "when did italy enter the second world war", "answer": "10 June 1940", "passage": "\"Mediterranean and Middle East theatre of World War II\"\nMediterranean and Middle East theatre of World War II The Mediterranean and Middle East Theatre was a major theatre of operations during the Second World War. The vast size of the Mediterranean and Middle East theatre saw interconnected naval, land, and air campaigns fought for control of the Mediterranean, North Africa, the Horn of Africa, the Middle East and Southern Europe. The fighting in this theatre lasted from 10 June 1940, when Italy entered the war on the side of Nazi Germany, until 2 May 1945 when all Axis forces in Italy surrendered. However, fighting would continue in Greece –"} +{"qid": "test597", "pid": "10948966", "query": "when did italy enter the second world war", "answer": "10 June 1940", "passage": "\"Royal Italian Army during World War II\"\npeace agreements with the Axis after France's surrender, and did not anticipate a long lasting war. Consequently, Italy entered the war inadequately prepared. Italy declared war on 10 June 1940 and initially the Royal Army started a campaign with limited advances in the Alps against the French Army. But the French were not quickly defeated on this front and all advances came at a high cost to the Italian army. Only in July, after the French surrender to Germany, did the Royal Army initiate a limited campaign from Italian colonies in Africa (Libya and Italian East Africa) against the British"} +{"qid": "test597", "pid": "20810874", "query": "when did italy enter the second world war", "answer": "10 June 1940", "passage": "\"Italian prisoners of war in Australia\"\nItalian prisoners of war in Australia Italian prisoners of war in Australia were Italian soldiers captured by the British and Allied Forces in World War II and taken to Australia. On 10 June 1940, Italy entered the Second World War on the side of Germany. During the course of the war, Great Britain and their allies captured in Ethiopia and North Africa approximately 400,000 Italian troops, who were sent to POW camps all over the world, including Australia. Between 1941 and 1945, Australia received custody of 18,420 Italian POWs. Then, after Italy signed an armistice with the Allies in September"} +{"qid": "test60", "pid": "3262922", "query": "who has been ranked no. 1 in the latest football rankings announced by fifa", "answer": "Germany", "passage": "\"FIFA World Rankings\"\nwill be updated on a game-by-game basis. The weighting designated for each confederation for ranking purposes will be abolished. However, the new methodology does not account for home or away games and margin of the victory, as Elo rankings. FIFA had intended to introduce the new ranking system in July 2018, but with no matches scheduled between the July and August ranking dates, delayed until August 2018. There was speculation from football journalists such as ESPN's Dale Johnson that this was because projections of the new rankings had seen relatively little change in positions, with Germany – who had been"} +{"qid": "test60", "pid": "16601555", "query": "who has been ranked no. 1 in the latest football rankings announced by fifa", "answer": "Germany", "passage": "\"2013 FIFA Confederations Cup Final\"\nagainst Germany. They reached the semi-finals, but lost 2–0 to the United States, resulting in Spain competing for the third-place play-off against South Africa, who had lost 1–0 against Brazil in the second semi-final match. The match ended in a 3–2 scoreline for Spain. Brazil were ranked 22nd in the FIFA World Rankings, considered to be their worst rank ever achieved, while Spain were ranked first. The Estádio do Maracanã in Rio de Janeiro was announced as the venue of the final. It is the largest of the six 2013 Confederations Cup venues. The stadium was used at"} +{"qid": "test600", "pid": "11040193", "query": "where does sleeping freshmen never lie take place", "answer": "J.P. Zenger High", "passage": "\"Sleeping Freshmen Never Lie\"\nto make all of this more manageable, Scott tries to write down tips for getting through daily life and high school for his unborn sibling. The novel follows Scott's journey as he learns what to do and what not to do in high school as well as balancing activities, homework, friendships, and relationships with girls. \"\"Sophomores and Other Oxymorons\"\" is a sequel to the book and was released on August 18, 2015. Scott Hudson enters J.P. Zenger High as a freshman, along with his three best friends, Mitch, Patrick, and Kyle, and quickly realizes that it is very different from"} +{"qid": "test601", "pid": "6012515", "query": "where was the witch of blackbird pond published", "answer": "1958", "passage": "\"The Witch of Blackbird Pond\"\nThe Witch of Blackbird Pond The Witch of Blackbird Pond is a children's novel by American author Elizabeth George Speare, published in 1958. The story takes place in late-17th century New England. It won the Newbery Medal in 1959. In April 1687, 16 year-old Katherine Tyler (known throughout the story as Kit Tyler) leaves her home in Barbados after her grandfather dies and a 50-year-old man tries to marry her. She goes to Wethersfield, Connecticut to live with her Aunt Rachel, Uncle Matthew, and her 2 cousins , Judith and Mercy, in their Puritan community. In Connecticut, there is a"} +{"qid": "test601", "pid": "6012526", "query": "where was the witch of blackbird pond published", "answer": "1958", "passage": "\"The Witch of Blackbird Pond\"\nowns the ship completely head to toe and they go off to visit Uncle Matthew. Many places in the novel are actual locations in Old Wethersfield, Connecticut. They include: The Witch of Blackbird Pond The Witch of Blackbird Pond is a children's novel by American author Elizabeth George Speare, published in 1958. The story takes place in late-17th century New England. It won the Newbery Medal in 1959. In April 1687, 16 year-old Katherine Tyler (known throughout the story as Kit Tyler) leaves her home in Barbados after her grandfather dies and a 50-year-old man tries to marry her. She"} +{"qid": "test601", "pid": "15146415", "query": "where was the witch of blackbird pond published", "answer": "1958", "passage": "\"Eleazer Kimberly\"\nwas married three times and had five children. He built the Kimberly Mansion in the early 18th century. Kimberly was also a minor character in the 1958 children's historical novel, \"\"The Witch of Blackbird Pond\"\". Eleazer Kimberly Eleazer Kimberly (November 17, 1639 - February 3, 1709) was the sixth Secretary of the State of Connecticut. Born in New Haven, Connecticut, to Thomas Kimberly and Alice Atwood of England, Kimberly was reportedly the first male child born in New Haven. He was a schoolmaster in Wethersfield from 1661 to 1689. In the 1690s, he held several positions in Glastonbury, including Commissioner"} +{"qid": "test601", "pid": "11954562", "query": "where was the witch of blackbird pond published", "answer": "1958", "passage": "\"Samuel A. Talcott\"\nThomas Grosvenor Talcott (1819-1870). He was a leading member of the Albany Regency and was New York State Attorney General from 1821 to 1829, when he was forced to resign \"\"due to irregular habits\"\", a then-used euphemism for what is now called a \"\"drinking problem\"\". Afterward, he practiced law in New York City. He is mentioned briefly as a character in \"\"The Witch of Blackbird Pond\"\", written by Elizabeth George Speare in 1958. Samuel A. Talcott Samuel Austin Talcott (December 31, 1789 Hartford, Connecticut – March 19, 1836 New York City) was an American lawyer and politician. He was the"} +{"qid": "test601", "pid": "17714003", "query": "where was the witch of blackbird pond published", "answer": "1958", "passage": "\"Webb-Deane-Stevens Museum\"\nheadquarters and has been restored to a late 18th-century appearance. There is a Colonial Revival garden out back and a 19th-century barn. The Silas Deane House has been restored to a mid-18th century appearance. The Isaac Stevens House has been restored to reflect a middle-class family of the 1820s-1830s using many original family items. The Webb-Deane-Stevens Museum also manages the nearby 1715 Buttolph-Williams House which is owned by Connecticut Landmarks. The interior features rare 17th and early 18th century antiques and was the setting for Elizabeth George Speare’s Newbery Medal-winning novel \"\"The Witch of Blackbird Pond\"\" (1958). The Museum is"} +{"qid": "test602", "pid": "19287952", "query": "when was the last time there was a school shooting in canada", "answer": "January 22, 2016", "passage": "\"La Loche shootings\"\nLa Loche shootings On January 22, 2016, four people were killed and seven others injured in a shooting spree in La Loche, Saskatchewan, Canada. Two boys, said to be the suspect's cousins, were killed at their home, and two teachers were killed at the Dene Building of the La Loche Community School. A 17-year-old male suspect was apprehended and placed into custody. According to police, the shootings began at a residence in the 300 block of Dene Crescent, where the suspect shot two of his cousins some time before He then went to La Loche Community School's Dene Building and"} +{"qid": "test602", "pid": "19287960", "query": "when was the last time there was a school shooting in canada", "answer": "January 22, 2016", "passage": "\"La Loche shootings\"\nyears. La Loche shootings On January 22, 2016, four people were killed and seven others injured in a shooting spree in La Loche, Saskatchewan, Canada. Two boys, said to be the suspect's cousins, were killed at their home, and two teachers were killed at the Dene Building of the La Loche Community School. A 17-year-old male suspect was apprehended and placed into custody. According to police, the shootings began at a residence in the 300 block of Dene Crescent, where the suspect shot two of his cousins some time before He then went to La Loche Community School's Dene Building"} +{"qid": "test603", "pid": "2683138", "query": "when did the us cut off trade with cuba", "answer": "1961", "passage": "\"26th of July Movement\"\ntrade instead. The US responded by cutting all diplomatic ties to Cuba, and have had a rocky relationship ever since. In April 1961, a CIA-trained force of Cuban exiles and dissidents launched the unsuccessful Bay of Pigs Invasion against Cuba. The flag of the 26th of July Movement is on the shoulder of the Cuban military uniform, and continues to be used as a symbol of the Cuban revolution. 26th of July Movement The 26th of July Movement (; M-26-7) was a vanguard revolutionary organization then a party led by Fidel Castro that in 1959 overthrew the Fulgencio Batista dictatorship"} +{"qid": "test604", "pid": "11267940", "query": "cast of the movie pride of the marines", "answer": "Eleanor Parker", "passage": "\"Pride of the Marines\"\nrecords the film earned $2,295,000 domestically and $724,000 foreign. \"\"Pride of the Marines\"\" was adapted as a radio play on the January 31, 1945 episode of Lux Radio Theater and the June 15, 1946 episode of Academy Award Theater, both with John Garfield reprising his role. As a bonus feature in the Lux Radio Theater version, Al Schmid is introduced by phone and speaks with Garfield. Pride of the Marines Pride of the Marines is a 1945 American biographical war film starring John Garfield and Eleanor Parker. It tells the story of U.S. Marine Al Schmid in World War II,"} +{"qid": "test604", "pid": "11267932", "query": "cast of the movie pride of the marines", "answer": "Eleanor Parker", "passage": "\"Pride of the Marines\"\nPride of the Marines Pride of the Marines is a 1945 American biographical war film starring John Garfield and Eleanor Parker. It tells the story of U.S. Marine Al Schmid in World War II, his heroic stand against a Japanese attack during the Battle of Guadalcanal, in which he was blinded by a grenade, and his subsequent rehabilitation. The film was based on the Roger Butterfield book \"\"Al Schmid, Marine\"\". Albert Maltz was nominated for an Academy Award for Writing Adapted Screenplay. The film is divided into three parts. The first takes place prior to the war. Cocky Philadelphia steel"} +{"qid": "test604", "pid": "1559071", "query": "cast of the movie pride of the marines", "answer": "Eleanor Parker", "passage": "\"Eleanor Parker\"\nParker later said the \"\"big break\"\" of her career was when she was cast opposite John Garfield in \"\"Pride of the Marines\"\" (1945). \"\"It was a great part and who wouldn't look good with John Garfield,\"\" she later said. \"\"He was absolutely wonderful.\"\" However two films that followed with Errol Flynn, the romantic comedy \"\"Never Say Goodbye\"\" (1946) and the drama \"\"Escape Me Never\"\" (1947), were box office disappointments. Parker was suspended twice by Warners for refusing parts in films – in \"\"Stallion Road\"\", where she was replaced by Alexis Smith and \"\"Love and Learn\"\". She made the comedy \"\"Voice"} +{"qid": "test605", "pid": "10833143", "query": "who wrote how do you do it by gerry and the pacemakers", "answer": "Mitch Murray", "passage": "\"How Do You Do It?\"\nHow Do You Do It? \"\"How Do You Do It?\"\" was the debut single by Liverpudlian band Gerry and the Pacemakers. The song was number one in the UK Singles Chart on 11 April 1963, where it stayed for three weeks. The song was written by Mitch Murray, who offered it to Adam Faith and Brian Poole but was turned down. George Martin of EMI decided to pick it up for the new group he was producing, the Beatles, as the A-side of their first record. The Beatles recorded the song but opposed releasing it, feeling that it did not"} +{"qid": "test605", "pid": "1447294", "query": "who wrote how do you do it by gerry and the pacemakers", "answer": "Mitch Murray", "passage": "\"Gerry and the Pacemakers\"\nthe chocolate Mars Bar, complained. The band was the second to sign with Brian Epstein, who later signed them to Columbia Records (a sister label to the Beatles' label Parlophone under EMI). They began recording in early 1963 with \"\"How Do You Do It?\"\", a song written by Mitch Murray. The song was produced by George Martin and became a number one hit in the UK, the first by an Epstein-managed Liverpool group to achieve this on all charts. Gerry and the Pacemakers' next two singles, Murray's \"\"I Like It\"\" and Rodgers and Hammerstein's \"\"You'll Never Walk Alone\"\", both also"} +{"qid": "test605", "pid": "12368291", "query": "who wrote how do you do it by gerry and the pacemakers", "answer": "Mitch Murray", "passage": "\"Ron Richards (producer)\"\nunsuitable for recording work, and he wasn't very impressed by Best's replacement, Ringo Starr. Richards hired session drummer Andy White, and Richards and Martin produced the Beatles' first single \"\"Love Me Do\"\". Richards had suggested the Beatles' first record should be \"\"How Do You Do It?\"\" by Mitch Murray and, after Martin took control of the Beatles' sessions, Richards worked with Gerry and the Pacemakers, who were the first act to go to No. 1 with each of their first three singles, \"\"How Do You Do It?\"\", \"\"I Like It\"\", and using Martin's string arrangement, \"\"You'll Never Walk Alone\"\". In"} +{"qid": "test605", "pid": "7943331", "query": "who wrote how do you do it by gerry and the pacemakers", "answer": "Mitch Murray", "passage": "\"Mitch Murray\"\nlack of enthusiasm was clear in the recording, which remained officially unreleased until it appeared on \"\"Anthology 1\"\" in 1995. Martin let them release \"\"Love Me Do\"\" instead, passing \"\"How Do You Do It?\"\" to another young Liverpool based group, Gerry and the Pacemakers. Their version - essentially a copy of The Beatles' recording - launched their career with a UK Number 1 single the following spring. Thus encouraged, Murray sent them another of his songs, \"\"I Like It\"\", which became their second single and also topped the UK Singles Chart. He had further success throughout the next ten years,"} +{"qid": "test606", "pid": "6701746", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "\"Leander J. McCormick\"\ninvented agricultural machines including the mechanical reaper, for which Leander's eldest brother Cyrus McCormick received the patent in 1834. Leander eventually developed multiple improvements to the reaper and received patents for two of them, with the remainder being patented by his brother Cyrus. At age 26, McCormick married Henrietta Maria Hamilton on her parents' homestead, Locust Hill, in Rockbridge County on October 22, 1845. The following year their father Robert McCormick, Jr. died. Leander had a third share of the reaper business, which amounted to 75 machines in 1846. In 1847 Leander helped Cyrus set up a factory in Cincinnati,"} +{"qid": "test606", "pid": "2276216", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "Reaper\nMcCormick in 1834 as a horse-drawn farm implement to cut small grain crops. This McCormick reaper machine had several special elements: Cyrus McCormick claimed that his reaper was actually invented in 1831, giving him the true claim to the general design of the machine. Over the next few decades the Hussey and McCormick reapers would compete with each other in the marketplace, despite being quite similar. By the 1850's, the original patents of both Hussey and McCormick had expired and many other manufacturers put similar machines on the market. In 1861, the United States Patent and Trademark Office issued a"} +{"qid": "test606", "pid": "7770305", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "\"Obed Hussey\"\n31, 1833. In the spring of 1834, Mechanics' Magazine gave coverage to Hussey's reaper. That report was seen by Cyrus McCormick, who promptly wrote a letter to the editor claiming that he had invented and field-tested a reaping machine in 1831 and that use of the principles of the machine by others was an infringement of his rights. Thus began a fierce rivalry between Hussey and McCormick that would last more than a quarter of a century. There had been unsuccessful attempts by others to built reaping machines before Hussey and McCormick. These included thirty-three English and twenty-two American inventions,"} +{"qid": "test606", "pid": "6775569", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "\"Robert McCormick (Virginia)\"\na reaper. He was encouraged by Polly to give it to their assertive and business-minded son Cyrus, who was able to improve and patent it in 1834. He died on July 4, 1846. He and his wife were buried in the cemetery of the Old Providence Stone Church just north of the estate. In 2002, Robert Jr. and his three surviving sons had a variety of wheat named after them, for \"\"inventing, perfecting, manufacturing, and marketing of the mechanical grain reaper [which] ushered in the era of modern agriculture and wrought one of the greatest advancements in agricultural history.\"\" \"\"McCormick\"\""} +{"qid": "test606", "pid": "6775566", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "\"Robert McCormick (Virginia)\"\nRobert McCormick (Virginia) Robert McCormick Jr. (June 8, 1780 – July 4, 1846) was an American inventor, who invented numerous devices including a version of the reaper which his eldest son Cyrus McCormick patented in 1834. Although he lived his life in rural Virginia, he was patriarch of the McCormick family that became influential throughout the world, especially in large cities such as Chicago Washington, D.C. and New York City. McCormick was born June 8, 1780, on the family estate of Walnut Grove in Rockbridge County, Virginia, in the Shenandoah Valley on the western side of the Blue Ridge Mountains"} +{"qid": "test606", "pid": "822957", "query": "when was the reaper invented by cyrus mccormick", "answer": "1837", "passage": "\"Cyrus McCormick\"\nof Steeles Tavern, Virginia in 1831. He claimed to have developed a final version of the reaper in 18 months. The young McCormick was granted a patent on the reaper on June 21, 1834, two years after having been granted a patent for a self-sharpening plow. However, none were sold, because the machine could not handle varying conditions. The McCormick family also worked together in a blacksmith/metal smelting business. The panic of 1837 almost caused the family to go into bankruptcy when a partner pulled out. In 1839 McCormick started doing more public demonstrations of the reaper, but local farmers"} +{"qid": "test606", "pid": "6775570", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "\"Robert McCormick (Virginia)\"\nis a soft red winter wheat (\"\"Triticum aestivum L.\"\") developed and released in May 2002 by the Virginia Agricultural Experiment Station. Robert McCormick (Virginia) Robert McCormick Jr. (June 8, 1780 – July 4, 1846) was an American inventor, who invented numerous devices including a version of the reaper which his eldest son Cyrus McCormick patented in 1834. Although he lived his life in rural Virginia, he was patriarch of the McCormick family that became influential throughout the world, especially in large cities such as Chicago Washington, D.C. and New York City. McCormick was born June 8, 1780, on the family"} +{"qid": "test606", "pid": "4312374", "query": "when was the reaper invented by cyrus mccormick", "answer": "1837", "passage": "\"Edward Huber\"\nEdward Huber Edward Huber (September 1, 1837, Dover, Indiana – August 26, 1904, Marion, Ohio) was an American inventor and industrialist. Huber established his role in the modernization of American agriculture when he invented a “revolving hay rake” (patented in 1863) that allowed one man to do in three hours what three men could do in a day. Relocating to Marion, Ohio, Huber patented his hay rake and began a full line of agricultural implements. Huber's production lines ran only in second to that of Cyrus McCormick, the inventor of the McCormick reaper. Huber also began to build and market"} +{"qid": "test606", "pid": "3849197", "query": "when was the reaper invented by cyrus mccormick", "answer": "1834", "passage": "\"International Harvester\"\nwith Tenneco, the remainder of International Harvester (primarily heavy trucks) became Navistar International Corporation in 1986. The roots of International Harvester run to the 1830s, when Cyrus Hall McCormick, an inventor from Virginia, finalized his version of a horse-drawn reaper, which he field-demonstrated throughout 1831, and for which he received a patent in 1834. Together with his brother Leander J. McCormick (1819–1900), McCormick moved to Chicago in 1847 and started the McCormick Harvesting Machine Company. The McCormick reaper sold well, partially as a result of savvy and innovative business practices. Their products came onto the market just as the development"} +{"qid": "test607", "pid": "11737427", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "\"Discography of Mobile Suit Gundam 00\"\nof \"\"Mobile Suit Gundam 00\"\" first season's first ending theme, used from episode 1 to episode 13. Limited Edition has a bonus track, \"\"Serenade Live at NHK HALL in 2007\"\", and comes with Lockon Stratos data card. Catalog Number Track listing (Limited Edition) Single of \"\"Mobile Suit Gundam 00\"\" first season's second ending theme, used from episode 14 to episode 24. First press comes with Tieria Erde data card. Catalog Number Track listing Single of \"\"Mobile Suit Gundam 00\"\" second season's first ending theme, used from episode 2 to episode 13. First press comes with Lockon Stratos data card. Catalog"} +{"qid": "test607", "pid": "7361364", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "\"Carl²\"\nshe is a sensitive person with a heart of gold. In Season 1, she wears orange over her white shirt. As of Season 2, she wears green along with a matching headband. She is voiced by Bryn McAuley. The show is divided into 4 seasons of 13 episodes each, with the exception of the first one, which includes 26 episodes. A number of episodes are specials and are not regularly aired; these are indicated. There are 2 two-part episodes in the show, one in Season 2 and the other in Season 4. The Season 2 one was made as a"} +{"qid": "test607", "pid": "12414693", "query": "season 2 this is us number of episodes", "answer": "15", "passage": "\"Case Closed (season 2)\"\nJapanese numbering. The season two DVD boxset Viridian edition is slated for release on September 15, 2009. The episodes use nine pieces of theme music: three opening themes and two closing themes in the Japanese episodes and one opening theme and ending theme in the English ones. The first Japanese opening theme is by The High-Lows to episode thirty. The second opening theme is \"\"Feel Your Heart\"\" by Velvet Garden until episode fifty-two. It is followed by by Miho Komatsu. The first ending theme is by Heath until episode fifty-one. The remaining episodes use the ending theme by Keiko Utoko."} +{"qid": "test607", "pid": "5394715", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "\"Naturally, Sadie\"\nand was broadcast on Disney Channel in the United States, ABC in Australia, and France 2. It also aired on a number of international Nickelodeon channels, including Nickelodeon Australia, Nickelodeon Italy, Nickelodeon Israel, Nickelodeon Scandinavia, Nickelodeon Spain, Nickelodeon Asia, and Nickelodeon Germany. A best-of compilation DVD of \"\"Naturally Sadie\"\" was released on May 11, 2010 in the US and Canada by Video Services Corp. The DVD contains 13 episodes over 2 discs from seasons 1 and 2. In Australia, 2 volumes of season 1 has been released by distributor Roadshow. The first volume titled 'Forest For the Trees' contains episodes"} +{"qid": "test607", "pid": "17301153", "query": "season 2 this is us number of episodes", "answer": "18", "passage": "\"The Carrie Diaries (season 2)\"\nThe Carrie Diaries (season 2) The second and final season of \"\"The Carrie Diaries\"\" aired from October 25, 2013, through January 31, 2014, on The CW. The series serves as a prequel to the HBO series \"\"Sex and the City\"\". In the netlet's target demo W18-34, the season premiere averaged 0.3, doubling the numbers with the following episode to 0.6. The third episode of the season slipped to 0.5 points. The fourth episode surged to 0.7, a new season high in that demo. The fifth episode of the season fell to 0.3. However, the sixth episode rose to 0.5."} +{"qid": "test607", "pid": "11433887", "query": "season 2 this is us number of episodes", "answer": "18", "passage": "\"Bon Iver\"\n2009, \"\"Skinny Love\"\" was announced at No. 92 in Triple J's Hottest 100 of All Time countdown. Additionally, the track \"\"Flume\"\" has been used by the BBC to advertise their Jimmy McGovern-penned drama series \"\"The Street\"\"; the track \"\"Blood Bank\"\" (off the EP of the same name) was used in a 2009 episode of the NBC series \"\"Chuck\"\" (season 2, episode 18) and the track \"\"Creature Fear\"\" was used in another \"\"Chuck\"\" episode (season 2, episode 21); the track \"\"Skinny Love\"\" was featured in another episode of \"\"Chuck\"\" (season 2, episode 3), as well as in the ABC drama \"\"Grey's"} +{"qid": "test607", "pid": "15567561", "query": "season 2 this is us number of episodes", "answer": "18", "passage": "\"Supernatural (season 7)\"\nfor season eight. Warner Home Video released the season on DVD and Blu-ray in Region 1 on September 18, 2012, in region 2 on November 5, 2012, and in Region 4 on October 31, 2012. The seventh season had an average viewership of 1.73 million U.S. viewers. In this table, the number in the first column refers to the episode's number within the entire series, whereas the number in the second column indicates the episode's number within this particular season. \"\"U.S. viewers in millions\"\" refers to how many Americans watched the episode live or on the day of broadcast. "} +{"qid": "test607", "pid": "16915354", "query": "season 2 this is us number of episodes", "answer": "15", "passage": "\"Gravel & Wine\"\n7 November 2011. It debuted at number 1, and received a Recorded Music NZ double platinum certification, meaning over 15,000 units sold. Wigmore released music videos for \"\"Man Like That\"\" and \"\"If Only\"\". Wigmore's single \"\"Black Sheep\"\" was featured in a trailer for \"\"Orange Is the New Black\"\", and it appeared in episode 12, season 8 of \"\"Grey's Anatomy\"\", in episode 2, season 2 of \"\"Teen Wolf\"\", and in episode 5, season 5 of \"\"The Good Wife\"\". She also appeared singing it on \"\"Gift of Revenge\"\", a segment of ABC's television show \"\"Revenge\"\" season 2, episode 7. \"\"Kill of the"} +{"qid": "test607", "pid": "17301154", "query": "season 2 this is us number of episodes", "answer": "18", "passage": "\"The Carrie Diaries (season 2)\"\nThe seventh episode dropped to 0.4. The midseason finale rose to 0.5. The ninth episode rose again, this time to 0.6. The tenth episode dropped to 0.4. The eleventh episode rose to 0.5. The penultimate episode scored a 0.6. The season finale tumbled to 0.4. The Carrie Diaries (season 2) The second and final season of \"\"The Carrie Diaries\"\" aired from October 25, 2013, through January 31, 2014, on The CW. The series serves as a prequel to the HBO series \"\"Sex and the City\"\". In the netlet's target demo W18-34, the season premiere averaged 0.3, doubling the numbers"} +{"qid": "test607", "pid": "4345131", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "\"Sgt. Frog\"\nand on Hulu. Unlike the other versions released outside Japan, the US version remains uncut. The episode distribution scheme has been slightly changed from the Japanese Region 2 release. Although the first 51 episodes are known as \"\"Season 1\"\" in Japan, Funimation has divided the episodes into a \"\"Season 1\"\" and a \"\"Season 2\"\". The Season 1 Part 1 DVD set was released September 22, 2009. It contains episodes 1 through 13, Season 1 Part 2 was released on November 24, 2009, and contains episodes 14 through 26. Season 2 Part 1 was released on January 26, 2010, containing episodes"} +{"qid": "test607", "pid": "15015106", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "\"Coon 2: Hindsight\"\nCoon 2: Hindsight \"\"Coon 2: Hindsight\"\" (originally titled \"\"The Coon 2: Rise of Captain Hindsight\"\") is the eleventh episode of the fourteenth season of animated television series \"\"South Park\"\", and the 206th episode of the series overall. It is a sequel to the season 13 episode \"\"The Coon\"\", and is the first part of a three-part story. In the episode, the Coon (Cartman) now leads an entire team of crime-fighters (alter-egos of other regular characters, although the identities of a number of them are left unresolved until subsequent episodes). They are ready to take their place among the world's most"} +{"qid": "test607", "pid": "12132962", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "Workaholics\nsaw its first 2 million plus viewed episode with the season premiere. The highest rating, a 2.16, was achieved in episode seven titled \"\"Teenage Mutant Ninja Roommates\"\". The show received its highest number of viewers during this season and averaged about 1.64 (million) viewers per episode. The third-season premiere achieved a 2.11 in the Nielsen ratings, the third highest in the show's history. The number of viewers began to drop off afterward. The final three episodes achieved 1.23, 1.21, 1.24 respectively. Season 3 wrapped up on March 20, 2013, after 20 episodes split over two broadcast seasons. Workaholics Workaholics is"} +{"qid": "test607", "pid": "7261803", "query": "season 2 this is us number of episodes", "answer": "15", "passage": "\"How the West Was Won (TV series)\"\nfirst two seasons on DVD in Region 1; season 1 was released on July 9, 2013, followed by season 2 on July 15, 2014. The third and final season was released by Warner Archive as an MOD DVD on April 19, 2016. A more accurate list of the 14 episodes from season 2 can be found inside the Season 2 DVD case released in July 2014. This new DVD episode list fixes errors found in most web sites. In January 1978, a nearly 400-page \"\"epic length\"\" paperback novelization of a number of early episodes, written by Lou Cameron, was published"} +{"qid": "test607", "pid": "19538848", "query": "season 2 this is us number of episodes", "answer": "18", "passage": "\"Barns Courtney\"\n23rd season of \"\"Top Gear\"\". In late January he also announced details of an extensive US headlining tour, in addition to the release of his debut EP, \"\"The Dull Drums\"\". His song, \"\"\"\"Hellfire\"\", was named as the official theme song for Extreme Rules in 2017. In July 2017 his song \"\"Fire\"\" was used in the opening scene of \"\"Suits\"\" (Season 7 Episode 1). It has been used in the episode of \"\"Teen Wolf\"\", (Season 6 Episode 2) as well as in Lucifer (Season 2 Episode 18). His song \"\"Fire\"\" was used in the 2017 documentary \"\"We, the Marines\"\", narrated by"} +{"qid": "test607", "pid": "15015116", "query": "season 2 this is us number of episodes", "answer": "13", "passage": "\"Coon 2: Hindsight\"\nreleased on a three-disc DVD set and two-disc Blu-ray set in the United States on April 26, 2011. Coon 2: Hindsight \"\"Coon 2: Hindsight\"\" (originally titled \"\"The Coon 2: Rise of Captain Hindsight\"\") is the eleventh episode of the fourteenth season of animated television series \"\"South Park\"\", and the 206th episode of the series overall. It is a sequel to the season 13 episode \"\"The Coon\"\", and is the first part of a three-part story. In the episode, the Coon (Cartman) now leads an entire team of crime-fighters (alter-egos of other regular characters, although the identities of a number of"} +{"qid": "test608", "pid": "2637496", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "Affirmed\nhis stride. Affirmed finished first but was disqualified and placed second. The horses never met again, and the final winning tally stood at Affirmed 7, Alydar 3. Affirmed then prepared to meet another major rival: 1977 Triple Crown winner Seattle Slew. The 1978 Marlboro Cup Invitational Handicap marked the first time in racing history that two Triple Crown winners ever met in a race. Seattle Slew was a speed horse and got the first quarter mile in 24 seconds under jockey Angel Cordero, who never allowed Affirmed to get close. Seattle Slew won by three lengths in 1:45 for the"} +{"qid": "test608", "pid": "2637504", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"Seattle Slew\"\nSeattle Slew Seattle Slew (February 15, 1974 – May 7, 2002) was an American Thoroughbred race horse who won the Triple Crown in 1977 — the tenth of thirteen horses to accomplish the feat. He is one of two horses to have won the Triple Crown while having been undefeated in any previous race; the second was Justify, who won the Triple Crown in 2018 and who is descended from Seattle Slew. Honored as the 1977 Horse of the Year, he was also a champion at ages two, three, and four. In the Blood-Horse magazine List of the Top 100"} +{"qid": "test608", "pid": "2637553", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"Seattle Slew\"\nEclipse Press released another book of the same title, written by Dan Mearns as part of the \"\"Thoroughbred Legends\"\" series. In 2015, the state of Kentucky starting issuing a license plate bearing Seattle Slew's image, based on a photograph by Tony Leonard. Proceeds benefit the Kentucky Equine Education Project Foundation (KEEP). Seattle Slew Seattle Slew (February 15, 1974 – May 7, 2002) was an American Thoroughbred race horse who won the Triple Crown in 1977 — the tenth of thirteen horses to accomplish the feat. He is one of two horses to have won the Triple Crown while having been"} +{"qid": "test608", "pid": "2637494", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "Affirmed\nhistory, they raced the fastest last mile in Belmont Stakes history, in 1:14, the mile in 1:37 and finished in 2:26 . It was, at the time, the third fastest Belmont ever, behind Secretariat and Gallant Man. His Triple Crown win set two records: the shortest and longest gaps between the previous and next Triple Crown winners. Affirmed's win in 1978 was the first time the Triple Crown had been won in consecutive years (Seattle Slew won in 1977). Affirmed's win also marked the start of the longest gap until the next Triple Crown winner, with American Pharoah's win on"} +{"qid": "test608", "pid": "3172591", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"New York Racing Association\"\nrail at Belmont Stakes, 31 ½ lengths from the finish line. \"\"Secretariat was trained by Lucien Laurin.\"\" 1977: “Every time he ran he was an odds-on favorite, and the response to his presence on the racetrack, either for a morning workout or a major race, was electric,” wrote Joe Hirsch of the \"\"Daily Racing Form\"\" of Seattle Slew. “‘Slewmania’ was a virulent and widespread condition.” In winning the Belmont Stakes, Seattle Slew, trained by Billy Turner and ridden by Jean Cruguet, became the 10th winner of the Triple Crown. \"\"Seattle Slew was bred by Ben S. Castleman and owned by"} +{"qid": "test608", "pid": "724233", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"Belmont Stakes\"\nthe mile and a half stakes record (which is also a track and world record on dirt) of 2:24. The attendance at the Belmont Stakes is among the American thoroughbred racing top-attended events. The 2004 Belmont Stakes drew a television audience of 21.9 million viewers, and had the highest household viewing rate since 1977 when Seattle Slew won the Triple Crown. The 150th Belmont Stakes took place on Saturday, June 9, 2018. Justify won the race and became the second horse in four years to win the Triple Crown. The first Belmont Stakes was held at Jerome Park Racetrack in"} +{"qid": "test608", "pid": "20149869", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"1977 Belmont Stakes\"\n1 mile: 1:38.8, 1mile: 2:03.8, Final: 2:29.6 Note: times were kept to the fifth of a second. 1977 Belmont Stakes The 1977 Belmont Stakes was the 109th running of the Belmont Stakes at Belmont Park in Elmont, New York held on June 11, 1977. With a field of eight horses, Seattle Slew won by four lengths in front of a crowd of 70,229 spectators. In conjunction with previously winning the Kentucky Derby and Preakness Stakes, Seattle Slew became the tenth horse to with the Triple Crown of Thoroughbred Racing, and the first to do so unbeaten. The race went off"} +{"qid": "test608", "pid": "20149868", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"1977 Belmont Stakes\"\n1977 Belmont Stakes The 1977 Belmont Stakes was the 109th running of the Belmont Stakes at Belmont Park in Elmont, New York held on June 11, 1977. With a field of eight horses, Seattle Slew won by four lengths in front of a crowd of 70,229 spectators. In conjunction with previously winning the Kentucky Derby and Preakness Stakes, Seattle Slew became the tenth horse to with the Triple Crown of Thoroughbred Racing, and the first to do so unbeaten. The race went off at 5:47 pm ET and was televised on CBS nationwide. Times: mile: :24.6, mile: :48.4, mile: 1:14,"} +{"qid": "test608", "pid": "18461160", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"Surfside (horse)\"\nstanding 16.3 hands high bred in Kentucky by her owner, William T. Young's Overbrook Farm. She was sired by Seattle Slew, who won the Triple Crown and was voted American Horse of the Year in 1977. He went on to become a highly successful breeding stallion and was Leading sire in North America in 1984. His other progeny included Swale, A P Indy, Landaluce and Slew o' Gold. Surfside was the first foal of her dam Flanders the American Champion Two-Year-Old Filly of 1994, whose racing career was ended by an injury sustained when winning the Breeders' Cup Juvenile Fillies."} +{"qid": "test608", "pid": "12971123", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "Escena\nEscena Escena (foaled 1993 in Kentucky, died 2015) is an American Thoroughbred racehorse. She had her best season as a five-year-old in 1998 when her wins included the Breeders' Cup Distaff. In that season she was voted American Champion Older Female Horse at the Eclipse Awards. Bred and raced by Allen Paulson, she was out of the mare Claxton's Slew, a daughter of 1977 U.S. Triple Crown champion Seattle Slew. Her sire was the great international runner Strawberry Road, who was the 1983 Australian Champion Racehorse of the Year and the 1984 German Champion Older Male Horse. Strawberry Road also"} +{"qid": "test608", "pid": "8173392", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"William H. Turner Jr.\"\nPatti is also a skilled consultant on bloodlines and breeding and, along with Turner, regularly travels to Keenland, Saratoga, Timonium etc. to assess bloodstock and advise clients in their purchases. William H. Turner Jr. William H. \"\"Billy\"\" Turner Jr. (born February 29, 1940) is an American Thoroughbred flat racing trainer who is best known for winning the United States Triple Crown of Thoroughbred Racing in 1977 with Seattle Slew, and is the world's oldest living Triple Crown-winning trainer. Turner maintains a public training stable and bloodstock consulting services, operating mainly in New York, Florida and the Mid-Atlantic region. In recent"} +{"qid": "test608", "pid": "8173386", "query": "when did seattle slew win the triple crown", "answer": "1977", "passage": "\"William H. Turner Jr.\"\nWilliam H. Turner Jr. William H. \"\"Billy\"\" Turner Jr. (born February 29, 1940) is an American Thoroughbred flat racing trainer who is best known for winning the United States Triple Crown of Thoroughbred Racing in 1977 with Seattle Slew, and is the world's oldest living Triple Crown-winning trainer. Turner maintains a public training stable and bloodstock consulting services, operating mainly in New York, Florida and the Mid-Atlantic region. In recent years he has been based in Belmont Park and Saratoga Racetrack in New York, and Palm Meadows Thoroughbred Training Center in Florida, training horses that compete on the New York"} +{"qid": "test610", "pid": "10004249", "query": "when did teenage mutant ninja turtles come out", "answer": "1984", "passage": "\"Table of Teenage Mutant Ninja Turtles character appearances\"\nTable of Teenage Mutant Ninja Turtles character appearances This table lists characters and their appearances in eight of the major continuities of the Teenage Mutant Ninja Turtles (TMNT) franchise, as well as appearances in various video games, magazines, or as action figures. The Teenage Mutant Ninja Turtles originated in an American comic book published by Mirage Studios in 1984. The concept arose from a humorous drawing sketched out by Kevin Eastman during a casual evening of brainstorming with his friend Peter Laird. Using money from a tax refund together with a loan from Eastman's uncle, the young artists self-published a"} +{"qid": "test611", "pid": "9093654", "query": "when does the team find out prentiss is alive", "answer": "In the season seven premiere", "passage": "\"Aaron Hotchner\"\nAgent Spencer Reid so that people will respect him despite his youth. He has mostly taken over the fatherly role with Spencer after Gideon's departure. In the season seven premiere, it was revealed that Hotch was assigned to temporary duty with an investigative task force in Pakistan during the period between seasons. Once Hotch gets back, he tells JJ it's time for the team to learn that Prentiss is alive. Although JJ isn't sure it's a good idea, Hotch tells her Prentiss is already on her way. He quickly tells the team what happened with Prentiss on the operating table."} +{"qid": "test611", "pid": "13965748", "query": "when does the team find out prentiss is alive", "answer": "In the season seven premiere", "passage": "\"Emily Prentiss\"\nwith \"\"passports from three different countries, and a bank account in each one to keep [her] comfortable\"\". In the season seven premiere, Morgan captures Doyle and Emily returns to the BAU to assist the team in finding who kidnapped Doyle's son. The team comes under fire from the judiciary panel for their retaliatory actions to avenge Prentiss's death, but everyone stands their ground to protect the team. Section Chief Erin Strauss later reveals to them that the committee was persuaded by Prentiss' defense and eventually decided to lift the BAU's suspensions although they will still be \"\"keeping a close eye\"\""} +{"qid": "test617", "pid": "9634656", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "Israel\nwas conquered by the Neo-Assyrian Empire. In 586 BCE, King Nebuchadnezzar II of Babylon conquered Judah. According to the Hebrew Bible, he destroyed Solomon's Temple and exiled the Jews to Babylon. The defeat was also recorded in the Babylonian Chronicles. The Babylonian exile ended around 538 BCE under the rule of the Persian Cyrus the Great after he captured Babylon. The Second Temple was constructed around 520 BCE. As part of the Persian Empire, the former Kingdom of Judah became the province of Judah (\"\"Yehud Medinata\"\") with different borders, covering a smaller territory. The population of the province was greatly"} +{"qid": "test617", "pid": "179865", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "\"History of Israel\"\npre-writing verbal traditions. In 586 BCE King Nebuchadnezzar II of Babylon conquered Judah. According to the Hebrew Bible, he destroyed Solomon's Temple and exiled the Jews to Babylon. The Phillistines were also driven into exile. The defeat of Judah was recorded by the Babylonians (see the Babylonian Chronicles). Babylonian and Biblical sources suggest that the Judean king, Jehoiachin, switched allegiances between the Egyptians and the Babylonians and that invasion was a punishment for allying with Babylon's principal rival, Egypt. The exiled Jews may have been restricted to the elite. Jehoiachin was eventually released by the Babylonians. Tablets which seem to"} +{"qid": "test617", "pid": "9039893", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "\"History of the Jews and Judaism in the Land of Israel\"\nfor control of Palestine led to the destruction of Judah in a series of campaigns between 597 and 582. The Assyrian Empire was overthrown in 612 BCE by the Medes and the Neo-Babylonian Empire. In 586 BCE King Nebuchadnezzar II of Babylon conquered Judah. According to the Hebrew Bible, he destroyed Solomon's Temple and exiled the Jews to Babylon. The defeat was also recorded by the Babylonians in the Babylonian Chronicles. The exile of Jews may have been restricted to the elite. Babylonian Judah suffered a steep decline in both economy and population and lost the Negev, the Shephelah, and"} +{"qid": "test617", "pid": "11013627", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "\"Jewish military history\"\nJudah and Jewish independence until the Hasmonean revolt. After Babylonia invaded Jerusalem it destroyed the First Temple, and started the Babylonian exile. In 605 BC Nebuchadnezzar II, king of Babylon defeated Pharaoh Neco at the Battle of Carchemish, and subsequently invaded Judah. To avoid the destruction of Jerusalem, King Jehoiakim of Jerusalem, in his third year, changed allegiances from Egypt to Babylon. He paid tribute from the treasury in Jerusalem, some temple artifacts, and some of the royal family and nobility as hostages. In 601 BC, Nebuchadnezzar failed to invade Egypt, the failure led to rebellions among states in the"} +{"qid": "test617", "pid": "9072540", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "\"History of the Jews in Iran\"\nlost tribes were expelled to the land of the Medes in modern-day Iran. The book of Tobit, which is part of the Apocrypha suggests that there were people from the tribe of Naphtali living in Rhages (Rey, Iran) and Ecbatana (Hamedan) at the time of the Assyrians (Book of Tobit 6:12). Three times during the 6th century BC, the Jews (Hebrews) of the ancient Kingdom of Judah were exiled to Babylon by Nebuchadnezzar. These three separate occasions are mentioned in Jeremiah (52:28-30). The first exile was in the time of Jehoiachin in 597 BC, when the Temple of Jerusalem was"} +{"qid": "test617", "pid": "16007269", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "\"Yehud (Babylonian province)\"\nof Jerusalem and the First Temple in 586 BCE. The numbers deported to Babylon or who made their way to Egypt, and the remnant that remained in Yehud province and in surrounding countries, is subject to academic debate. The Book of Jeremiah reports that a total of 4,600 were exiled to Babylon. To these numbers must be added those deported by Nebuchadnezzar in 597 BCE following the first siege to Jerusalem, when he deported the king of Judah, Jeconiah, and his court and other prominent citizens and craftsmen, along with a sizable portion of the Jewish population of Judah, numbering"} +{"qid": "test617", "pid": "13347726", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "\"Yehud (Province)\"\nand many Jews fled to Moab, Ammon, Edom and other countries to seek refuge. The city fell after an 18-month siege and Nebuchadnezzar again pillaged and destroyed Jerusalem and burned the Temple. Thus, by 586 BCE, much of Judah was devastated, the royal family, the priesthood, and the scribes, the country's elite, were in exile in Babylon, and the former kingdom suffered a steep decline of both economy and population. The former kingdom of Judah then became a Babylonian province Yehud, with Gedaliah, a native Judahite, as governor (or possibly ruling as a puppet king). According to Miller and Hayes,"} +{"qid": "test617", "pid": "780881", "query": "who destroyed the first temple and exiled the two tribes of judah to babylon", "answer": "Nebuchadnezzar", "passage": "Pharisees\neyewitness accounts of the Pharisees and their teachings. The deportation and exile of an unknown number of Jews of the ancient Kingdom of Judah to Babylon by Nebuchadnezzar II, starting with the first deportation in 597 BCE and continuing after the fall of Jerusalem and destruction of the Temple in 587 BCE, resulted in dramatic changes to Jewish culture and religion. During the 70-year exile in Babylon, Jewish houses of assembly (known in Hebrew as a \"\"beit knesset\"\" or in Greek as a \"\"synagogue\"\") and houses of prayer (Hebrew \"\"Beit Tefilah\"\"; Greek προσευχαί, \"\"proseuchai\"\") were the primary meeting places for"} +{"qid": "test618", "pid": "3532272", "query": "where is the white castle that harold and kumar go to", "answer": "in Cherry Hill", "passage": "\"Harold & Kumar Go to White Castle\"\nto the nearest White Castle in New Brunswick, they find it replaced by \"\"Burger Shack\"\" but learn of another White Castle in Cherry Hill. Kumar suggests stopping at Princeton University to buy more marijuana. Kumar buys marijuana from one of the students and they are discovered by campus security and forced to flee, losing their marijuana after it falls in the toilet. Harold and Kumar resume their drive, and when Kumar pulls over to urinate, a raccoon gets in the car and bites Harold. Kumar takes Harold to a hospital where Kumar's father and older brother work. Kumar steals ID"} +{"qid": "test619", "pid": "17206716", "query": "when was child benefit paid for the first child", "answer": "1975", "passage": "\"Child benefits in the United Kingdom\"\nchildren was increased to ten shillings per week, and the maximum age for payments for dependent children was increased from 15 to 18. In 1968 the rates were increased from 8 to 15 and then 18 shillings and from 10 to 17 shillings and then £1 respectively, but this was paid for in part by a reduction in the value of child tax allowance, so that the poor would benefit, but the middle classes did not. In 1975, the rate was increased to £1.50 for each child after the first. Family Income Supplement was introduced in 1970 by the new"} +{"qid": "test62", "pid": "13715934", "query": "who wrote the song the glory of love", "answer": "Billy Hill", "passage": "\"The Glory of Love (song)\"\nThe Glory of Love (song) \"\"The Glory of Love\"\" is a song written by Billy Hill, recorded by Benny Goodman in 1936, whose version was a number one pop hit. Subsequently, the song has been recorded by a vast number of artists, ranging from Dean Martin to Jimmy Durante to Paul McCartney. Bette Midler included the song in her film \"\"Beaches\"\" (1988) and it appears in the soundtrack recording. In 1951, R&B vocal group, The Five Keys, had their biggest R&B hit with their version of the song, hitting number one on the R&B chart for four non-consecutive weeks. Although"} +{"qid": "test62", "pid": "13715935", "query": "who wrote the song the glory of love", "answer": "Billy Hill", "passage": "\"The Glory of Love (song)\"\nThe Five Keys recording sold a reported million copies, pressed recordings are very rare. In 1967, Otis Redding recorded a cover version for his 1968 album, \"\"The Dock of the Bay\"\". Redding's cover became a top 20 hit and reached number nineteen on the \"\"Billboard\"\" R&B Songs chart and number sixty on the \"\"Billboard\"\" Hot 100. The Glory of Love (song) \"\"The Glory of Love\"\" is a song written by Billy Hill, recorded by Benny Goodman in 1936, whose version was a number one pop hit. Subsequently, the song has been recorded by a vast number of artists, ranging from"} +{"qid": "test620", "pid": "4571923", "query": "what was the initial effect of the transition from command to market economies in eastern europe", "answer": "Inequality of opportunity", "passage": "\"Transition economy\"\nincomes. These outcomes had not yet been achieved by 2013 and progress in establishing well-functioning market economies had stalled since the 1990s. On the EBRD's measure of transition indicators the transition economies had become \"\"stuck in transition\"\". Price liberalization, small-scale privatization and the opening-up of trade and foreign exchange markets were mostly complete by the end of the 1990s. However economic reform had slowed in areas such governance, enterprise restructuring and competition policy, which remained substantially below the standard of other developed market economies. Inequality of opportunity was higher in the transition economies of Central and Eastern Europe and Central"} +{"qid": "test621", "pid": "20004073", "query": "when did linkin park release one more light", "answer": "May 19, 2017", "passage": "\"One More Light\"\npeople are still coming to see you to hear the music. Give it a little time, you have to give it a little time.\"\" Bennington later responded that he agreed with Taylor's statements, saying: Notes Credits adapted from the album's liner notes. Linkin Park Additional musicians Technical One More Light One More Light is the seventh studio album by American rock band Linkin Park. It was released on May 19, 2017, through Warner Bros. and Machine Shop. It is the last Linkin Park record produced before lead vocalist Chester Bennington's death on July 20, 2017. The band recorded the album"} +{"qid": "test621", "pid": "20004047", "query": "when did linkin park release one more light", "answer": "May 19, 2017", "passage": "\"One More Light\"\nOne More Light One More Light is the seventh studio album by American rock band Linkin Park. It was released on May 19, 2017, through Warner Bros. and Machine Shop. It is the last Linkin Park record produced before lead vocalist Chester Bennington's death on July 20, 2017. The band recorded the album between September 2015 and February 2017 in multiple studios. Band members Brad Delson and Mike Shinoda served as the album's primary producers. The sound of \"\"One More Light\"\" has been described as being more pop-focused, departing from the alternative metal sound of their previous album, \"\"The Hunting"} +{"qid": "test621", "pid": "256728", "query": "when did linkin park release one more light", "answer": "May 19, 2017", "passage": "\"Linkin Park\"\nand Justin Tranter. The single was released for download on February 16. As they have done in the past, Linkin Park had cryptic messages online in relation to the new album. The album cover was revealed through digital puzzles across social media; the cover features six kids playing in the ocean. The band's seventh album, \"\"One More Light\"\", was released on May 19, 2017. Bennington died on July 20, 2017; his death was ruled a suicide by hanging. Shinoda confirmed Bennington's death on Twitter, writing, \"\"Shocked and heartbroken, but it's true. An official statement will come out as soon as"} +{"qid": "test621", "pid": "256688", "query": "when did linkin park release one more light", "answer": "May 19, 2017", "passage": "\"Linkin Park\"\nto Midnight\"\" (2007). The album topped the \"\"Billboard\"\" charts and had the third-best debut week of any album that year. The band continued to explore a wider variation of musical types in their fourth album, \"\"A Thousand Suns\"\" (2010), layering their music with more electronic sounds. Their fifth album, \"\"Living Things\"\" (2012), combines musical elements from all of their previous records. Their sixth album, \"\"The Hunting Party\"\" (2014), returned to a heavier rock sound. Their seventh album \"\"One More Light\"\", a more electronic and pop-oriented record, was released on May 19, 2017. In 2003, MTV2 named Linkin Park the sixth-greatest"} +{"qid": "test622", "pid": "6712050", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of the isthmus between Gibraltar and Spain\"\nin a , as well as in several EU acts, the UK has acknowledged that Spain disputes the sovereignty of the isthmus (\"\"The ... arrangements ... are understood to be without prejudice to the respective legal positions of Spain and the United Kingdom with regard to the dispute over sovereignty over the territory in which the airport is situated.\"\"), although they reject the basis for that dispute. The Gibraltar government rejects Spain's argument in its entirety. They point out that as \"\"Utrecht\"\" ceded \"\"\"\"the town and castle of Gibraltar, together with the port, fortifications, and forts thereunto belonging\"\"\"\" and there"} +{"qid": "test622", "pid": "6712045", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of the isthmus between Gibraltar and Spain\"\nDisputed status of the isthmus between Gibraltar and Spain The Gibraltar territory currently contains an long section of the isthmus that links the Rock with mainland Spain. Spain does not acknowledge British sovereignty over Gibraltar beyond the fortified perimeter of the town as at 1704. The United Kingdom claims the southern part of the isthmus on the basis of continuous possession over a long period. As well as the airport, there are two substantial housing estates, a sports stadium, a secondary school, a marina, and a beach on this land, which de facto is an integral part of the territory"} +{"qid": "test622", "pid": "16863776", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Brussels Agreement, 1984\"\nParty called for self-determination, expressed its opposition to the negotiations over the sovereignty and future of Gibraltar between Spain and the United Kingdom, and opposed to any transfer of sovereignty to Spain. It also asked for the withdrawal of the negotiations on the Brussels Declaration and opposed to the Airport agreement. The GSLP got 8 seats and a 58.2% of the popular vote. Brussels Agreement, 1984 The Brussels Agreement, 1984 was an agreement between the Governments of the United Kingdom and Spain concerning the territorial dispute over Gibraltar. The agreement was criticised by Gibraltar politicians for limiting the participation of"} +{"qid": "test622", "pid": "6712049", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of the isthmus between Gibraltar and Spain\"\nin Spanish) instead of \"\"frontier\"\" or \"\"border\"\", since it does not acknowledge the possibility of having a frontier with what Spain considers to be its own territory. Historically however it has often been referred to as a frontier, even during the Franco era on official documents. Frontier passes were issued by the Spanish authorities which clearly referred to it as a frontier. The United Kingdom relies on \"\"de facto\"\" arguments of possession by prescription in relation to the southern part of the isthmus, as there has been \"\"continuous possession [of the isthmus] over a long period\"\". On December 2, 1987,"} +{"qid": "test622", "pid": "13439082", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Spain–United Kingdom relations\"\nbe conducted. In 2004, Spain and the United Kingdom established the Tripartite Forum for Dialogue on Gibraltar, with equal representation of both countries and the British Overseas Territory. Waters around Gibraltar, declared by the United Kingdom as territorial waters according to the United Nations Convention on the Law of the Sea (to a three-mile limit), and claimed by Spain, are other source of clash, with the Government of Gibraltar actively backing the British position naming the disputed waters as \"\"British Gibraltar territorial waters\"\". In December 2008, the European Commission approved a Spanish request designating most of the waters around Gibraltar"} +{"qid": "test622", "pid": "3795706", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of Gibraltar\"\nupon ratification of the Convention by the Government of Spain, the Government of the United Kingdom has no doubt about the sovereignty of the United Kingdom over Gibraltar, including its territorial waters. The Government of the United Kingdom, as the administering authority of Gibraltar, has extended the United Kingdom's accession to the Convention and ratification of the Agreement to Gibraltar. The Government of the United Kingdom, therefore, rejects as unfounded point 2 of the Spanish declaration. However, Articles 309 and 310 of the Convention state that \"\"No reservations or exceptions may be made to this Convention unless expressly permitted by"} +{"qid": "test622", "pid": "3795704", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of Gibraltar\"\nterritory was also taken over by Spain in the 1960s, during dictator Francisco Franco's regime, and now forms an integral part of the Spanish municipality of La Línea de la Concepción. Both the United Kingdom and Spain have ratified the United Nations Convention on the Law of the Sea of 1982, which governs countries' oceanic territorial claims. Both countries made statements regarding Gibraltar in their declarations upon ratification of the Convention. The Spanish statement was: 2. In ratifying the Convention, Spain wishes to make it known that this act cannot be construed as recognition of any rights or status regarding"} +{"qid": "test622", "pid": "400143", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "Self-determination\nand, since the United Kingdom also gave assurances that the right to self-determination of Gibraltarians would be respected in any transfer of sovereignty over the territory, is a factor in the dispute with Spain over the territory. The impact of the right to self-determination of Gibraltarians was seen in the 2002 Gibraltar sovereignty referendum, where Gibraltarian voters overwhelmingly rejected a plan to share sovereignty over Gibraltar between the UK and Spain. However, the UK government differs with the Gibraltarian government in that it considers Gibraltarian self-determination to be limited by the Treaty of Utrecht, which prevents Gibraltar achieving independence without"} +{"qid": "test622", "pid": "6712052", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of the isthmus between Gibraltar and Spain\"\n600 Toises, being more than two cannon shots distance between the British guns and the Spanish guns, would be considered “the neutral ground”. In either case, the United Kingdom further bases its claim upon what they consider to be established legal precedents that grant property rights over an area that is continually occupied and made sole use of, for an extended period. In practice, the land is now an integral part of the territory of Gibraltar on one side, and similarly on the Spanish side, and, although there may be a line on the map, there is no longer any"} +{"qid": "test622", "pid": "3795697", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of Gibraltar\"\nGibraltar sovereignty, but she does not dispute the fact that in proper international law, she ceded sovereignty to Britain in perpetuity and therefore it is undisputed British sovereign territory. Gibraltarians seem to remain mistrustful of Spain despite improved relations. Spain insisted that the Gibraltar dispute is a bilateral matter purely between the United Kingdom and Spain. This principle appears to have been reflected in the United Nations resolutions on the decolonisation of Gibraltar in the 1960s, which focused on the \"\"interests\"\" of the Gibraltarians. Speaking to the UN C24 in 2006, the Chief Minister of Gibraltar, Peter Caruana, stated that"} +{"qid": "test622", "pid": "16863773", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Brussels Agreement, 1984\"\nBrussels Agreement, 1984 The Brussels Agreement, 1984 was an agreement between the Governments of the United Kingdom and Spain concerning the territorial dispute over Gibraltar. The agreement was criticised by Gibraltar politicians for limiting the participation of Gibraltarians in determining their own future. The Lisbon Agreement concluded in 1980 did not provide an immediate solution to the problems resulting from the blockade of Gibraltar imposed by Franco in 1969. The border did not reopen as planned and London and Madrid continued to disagree over the interpretation of the agreement. Spain's admittance to NATO and the EU provided the impetus to"} +{"qid": "test622", "pid": "381746", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Foreign relations of Spain\"\nagreements and a very good relationship. In the recent years Spain has also been boosting its contacts, relations and investment in other Asian countries, most notably Vietnam and Malaysia. Relations with the Philippines are, despite a very long colonial past, considerably weaker than the ones Spain has with other countries in the area, dealing mostly with cultural aspects and humanitarian assistance programs. Whilst the disputed on Gibraltar with the United Kingdom is perhaps the best known territorial dispute of Spain, the country also has disputes with Portugal and Morocco. Ever since it was captured in 1704 by Anglo-Dutch forces during"} +{"qid": "test622", "pid": "381747", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Foreign relations of Spain\"\nthe War of the Spanish Succession, Gibraltar has been the subject of a dispute between the United Kingdom and Spain. Situated at the southern tip of the Iberian peninsula, overseeing the Strait of Gibraltar which connects the Atlantic Ocean with the Mediterranean Sea, the territory has great strategic importance. Today, Gibraltar is a British Overseas Territory and houses an important base of British Armed Forces. The strategic position of the Strait of Gibraltar has left a legacy of a number of sovereignty disputes, including those with Morocco concerning the \"\"five places of sovereignty\"\" (\"\"plazas de soberanía\"\") on and off the"} +{"qid": "test622", "pid": "12652424", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Serbia–Spain relations\"\nMovement. Spain is one of five member states of the European Union that does not recognize unilateral declaration of independence of Kosovo and is actively opposing its membership in international organisations such as UNSCO and Interpol. In addition, Spain is supporting Serbia's insistence on establishment of Community of Serb Municipalities in Kosovo as provided by the 2013 Brussels Agreement signed under the auspices of the European Union. Some explained hard Spanish position towards Kosovo by drawing parallels with its own internal issues with the Catalan independence movement and with the United Kingdom dispute over Gibraltar. Serbia strongly supported Spanish territorial"} +{"qid": "test622", "pid": "5408604", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Gibraltar International Airport\"\nthe general commander of the Campo de Gibraltar, General Don José María de Alós, that \"\"a large proportion of the inhabitants [of Gibraltar] to [..] not [have] they suffered fever, temporarily established on the neutral ground, as close as circumstances permit, in front of this fortress\"\". In 1908 the British government erected a fence that forms the actual border. Spain claims of the original 156 hectares of neutral ground, England annexed 106. In this location Gibraltar Airport was built. Spain's continuing sovereignty dispute with the United Kingdom over the territory where the airport stands (different from the generic one on"} +{"qid": "test622", "pid": "13439043", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Spain–United Kingdom relations\"\nby the fact that the United Kingdom and Spain were both imperial powers, after the same land, an occurrence which is being played out to this day with the disputed ownership and status of Gibraltar. For centuries, the role of England, and subsequently the United Kingdom, in Iberia was coloured by the Anglo-Portuguese Alliance. Relations with Portugal always have been closer than those with Spain, and Spain and the United Kingdom have gone to war twice over Portugal's independence. In 1384, at the height of the Hundred Years' War, England provided reinforcements to King João I to thwart a French-backed"} +{"qid": "test622", "pid": "6712047", "query": "what territory is spain and the united kingdom in a dispute over", "answer": "Gibraltar", "passage": "\"Disputed status of the isthmus between Gibraltar and Spain\"\nof the city, and the rest had no territorial jurisdiction (the literal phrase of the treaty is \"\"the Catholic King wills, and takes it to be understood that the above-named propriety be yielded to Great Britain without any territorial jurisdiction\"\"). Therefore, the Treaty would not have ceded any part of the isthmus. Spain considers that such an area was occupied by the UK since the 19th century (1815), and such \"\"occupation of the isthmus [by the United Kingdom] is illegal and against the principles of the international law\"\". For said reason, British sovereignty is not acknowledged by Spain, considering itself"} +{"qid": "test623", "pid": "1820695", "query": "who has the most green jackets from the masters", "answer": "Nicklaus", "passage": "\"Jack Nicklaus\"\nbecame the eighth honorary starter since the tradition began in 1963 when Nicklaus won his first green jacket. The Big Three were once again reunited in Augusta for the 2012 Masters Tournament as Gary Player joined Palmer and Nicklaus to kickoff the 76th renewal of the major tournament. Nicklaus, through his global reach in design and development, as well as the worldwide marketing and licensing of his golf and lifestyle brand, is atop \"\"Golf Inc.\"\" magazine's coveted list of the \"\"Most Powerful People in Golf\"\" for a record-extending sixth consecutive year. He is the only golf industry figure who has"} +{"qid": "test623", "pid": "10802914", "query": "who has the most green jackets from the masters", "answer": "Nicklaus", "passage": "\"1948 Masters Tournament\"\nJones, then age 46. It was also the last Masters that did not immediately present the iconic green jacket to the winner. The nine winners of the first twelve tournaments received their green jackets in 1949. The five-stroke victory margin was matched by Ben Hogan in 1953; the record was raised to seven in 1955 by Cary Middlecoff, nine in 1965 by Jack Nicklaus, and twelve by Tiger Woods in 1997. \"\"Thursday, April 8, 1948\"\" \"\"Friday, April 9, 1948\"\" \"\"Saturday, April 10, 1948\"\" \"\"Sunday, April 11, 1948\"\" \"\"Cumulative tournament scores, relative to par\"\" 1948 Masters Tournament The 1948 Masters Tournament"} +{"qid": "test623", "pid": "4610338", "query": "who has the most green jackets from the masters", "answer": "Nicklaus", "passage": "\"Raymond Floyd\"\nAndrews; he tied for second place, behind three-time winner Jack Nicklaus. Floyd came very close to winning a second Green Jacket at the 1990 Masters, where he lost in a playoff to Nick Faldo. On the second playoff hole, Floyd pulled a 7-iron shot into the pond left of the 11th green. Afterward, he said, \"\"This is the most devastating thing that's ever happened to me in my career. I've had a lot of losses, but nothing like this.\"\" In 1992, Floyd again finished runner-up at The Masters, two strokes behind the winner Fred Couples. Floyd's final win on the"} +{"qid": "test623", "pid": "1375361", "query": "who has the most green jackets from the masters", "answer": "Nicklaus", "passage": "\"Masters Tournament\"\nhe shot a then-course record of 271 (17 under par) for his second Masters win, leading Bobby Jones to say that Nicklaus played \"\"a game with which I am not familiar.\"\" The next year, Nicklaus won his third green jacket in a grueling 18-hole playoff against Tommy Jacobs and Gay Brewer. This made Nicklaus the first player to win consecutive Masters. He won again in 1972 by three strokes. In 1975, Nicklaus won by one stroke in a close contest with Tom Weiskopf and Johnny Miller in one of the most exciting Masters to date. Gary Player became the first"} +{"qid": "test623", "pid": "11728875", "query": "who has the most green jackets from the masters", "answer": "Nicklaus", "passage": "\"1980 Masters Tournament\"\npairing at Augusta in five years and the first time Palmer had finished higher than Nicklaus there since 1967. Nicklaus regrouped and won two majors in 1980, the U.S. Open and the PGA Championship and was the runner-up the following April. Ballesteros, of Spain, was the first winner of the Masters from Europe, and won a second green jacket in 1983. This was the final Masters with Bermuda and ryegrass greens, which were replaced with bentgrass following this tournament. \"\"Thursday, April 10, 1980\"\" \"\"Friday, April 11, 1980\"\" \"\"Saturday, April 12, 1980\"\" \"\"Sunday, April 13, 1980\"\" \"\"Final round\"\" \"\"Cumulative tournament scores,"} +{"qid": "test625", "pid": "7005598", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately That I Love You?\"\nHave I Told You Lately That I Love You? \"\"Have I Told You Lately That I Love You?\"\" is a popular song written by Scotty Wiseman and published in 1945. It was the greatest hit of Wiseman and his wife and one of the first country music songs to attract major attention in the pop music field. It's repeating fourth line is \"\"Well darling, I'm telling you now.\"\" Bing Crosby and The Andrews Sisters recorded the song on November 25, 1949 and it had a good reception from the trade magazine Billboard who said: \"\"Ditty’s a sprightly mountain-musiker that had"} +{"qid": "test625", "pid": "7005601", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately That I Love You?\"\nsingle (\"\"Be-Bop Baby\"\", released in September), while Cochran's was an album cut (released in November). The impact of the Elvis version was felt across the Atlantic. Eddie Cochran recorded his version in August 1957 and released it on the album \"\"Singin' to My Baby\"\". Musicians on the session were: Have I Told You Lately That I Love You? \"\"Have I Told You Lately That I Love You?\"\" is a popular song written by Scotty Wiseman and published in 1945. It was the greatest hit of Wiseman and his wife and one of the first country music songs to attract major"} +{"qid": "test625", "pid": "9568976", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately\"\nImpressionist and comedian Rory Bremner included the song as one of his eight \"\"Desert Island Discs\"\" on BBC Radio 4 on 20 April 2003. Television and radio presenter Gloria Hunniford also included the song on her list on 24 December 2006. Have I Told You Lately \"\"Have I Told You Lately\"\" is a song written and recorded by Northern Irish singer-songwriter Van Morrison for his nineteenth studio album \"\"Avalon Sunset\"\" (1989). It is a romantic ballad that is often played at weddings, although it was originally written as a prayer. \"\"Have I Told You Lately\"\" has received acclaim, winning a"} +{"qid": "test625", "pid": "9568971", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately\"\nHave I Told You Lately \"\"Have I Told You Lately\"\" is a song written and recorded by Northern Irish singer-songwriter Van Morrison for his nineteenth studio album \"\"Avalon Sunset\"\" (1989). It is a romantic ballad that is often played at weddings, although it was originally written as a prayer. \"\"Have I Told You Lately\"\" has received acclaim, winning a Grammy Award and a BMI Million-Air certificate. It was released as a single on 5 June 1989, and reached number 12 on the US \"\"Billboard\"\" Adult Contemporary chart. It has become a popular cover song with many vocal and instrumental versions"} +{"qid": "test625", "pid": "7005600", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately That I Love You?\"\n50's Masters\"\", Presley recorded it on January 19, 1957, at RCA's Radio Recorders in Hollywood for his \"\"Loving You\"\" album. Session musicians for the song included Presley himself on rhythm guitar, his usual lead guitarist Scotty Moore, with Bill Black on bass, D.J. Fontana on drums, piano by Dudley Brooks, organ by Hoyt Hawkins, and background vocals were of course The Jordanaires. When the song was included on the \"\"Loving You\"\" album release in July 1957, it immediately prompted both Ricky Nelson and Eddie Cochran to record cover versions of the song. Nelson's was the \"\"B\"\" side of a hit"} +{"qid": "test625", "pid": "8921992", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Roses Are Red (album)\"\nOrbison's hit \"\"Crying\"\", \"\"If I Give My Heart to You\"\" and five country songs (\"\"I Fall to Pieces\"\", \"\"Have I Told You Lately That I Love You?\"\", \"\"I Can't Stop Loving You\"\", \"\"I Can't Help It\"\" and \"\"Please Help Me, I'm Falling\"\"). Vinton's 1964 No. 1 hit \"\"Mr. Lonely\"\" (co-written by Vinton) was originally only an album track here; its release as a single was two years later when it appeared on \"\"Bobby Vinton's Greatest Hits\"\". Album - \"\"Billboard\"\" (North America) Singles - \"\"Billboard\"\" (North America) Roses Are Red (album) Roses Are Red is Bobby Vinton's third studio album, released"} +{"qid": "test625", "pid": "17121684", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"To Be Loved\"\nalso features appearances from actress Reese Witherspoon on \"\"Somethin' Stupid\"\", Naturally 7 and The Puppini Sisters, and includes covers of songs such as the Bee Gees' \"\"To Love Somebody\"\", Dean Martin's \"\"Nevertheless (I'm in Love with You)\"\", the Miracles' \"\"Who's Lovin' You\"\", Jackie Wilson's \"\"To Be Loved\"\", and Scotty Wiseman's \"\"Have I Told You Lately That I Love You?\"\" In an interview posted on his official website, Bublé stated: \"\"My new record is about love, happiness, fun and yummy things. Getting to work with my friend and longtime collaborator Bob Rock, who was also responsible for \"\"Call Me Irresponsible\"\", \"\"Crazy"} +{"qid": "test625", "pid": "7005599", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately That I Love You?\"\nits innings a couple of years back on straight hillbilly diskings. Bing and the gals are in top form as they harmonize it to a spanking fare-thee-well.\"\" The record entered the Billboard charts on January 21, 1950 and in a four-week stay it peaked at No. 24. Lulu Belle and Scotty released their version in 1956 on a Mercury Records 45 rpm single. The earliest and easily most prominent recording of \"\"Have I Told You Lately That I Love You\"\" in the early rock era was by Elvis Presley. According to the book of the CD-boxset \"\"Elvis - The Complete"} +{"qid": "test625", "pid": "9568973", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately\"\nversion from his album \"\"Unplugged...and Seated\"\" (1993) was released as a single, becoming a number-five hit in the US and the UK. This version also reached number four on the US \"\"Billboard\"\" Mainstream Top 40 chart, \"\"Have I Told You Lately\"\" has been performed by many unknown as well as many famous artists. Morrison chose \"\"Have I Told You Lately\"\" as one of the songs included on 1990s \"\"The Best of Van Morrison\"\", his first greatest-hits album. It was also one of the songs on two of the compilation albums that were issued in 2007: \"\"Still on Top - The"} +{"qid": "test625", "pid": "11126395", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Loving You (soundtrack)\"\nPresley's number one hit \"\"(Let Me Be Your) Teddy Bear\"\" backed with the film's title track, \"\"Loving You\"\". Producer Hal B. Wallis liked \"\"Teddy Bear\"\" so much that he insisted it be included in the movie. Songs were added to bring up the running time of the album, including the swing-era favorite \"\"Blueberry Hill\"\", which had been a big hit for Fats Domino in 1956. \"\"Have I Told You Lately That I Love You?\"\" had been done previously by the Sons of the Pioneers, as well as Bing Crosby with The Andrews Sisters. Cole Porter's \"\"True Love\"\", written for the"} +{"qid": "test625", "pid": "19761330", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Love is Forever (Cliff Richard album)\"\nLove is Forever (Cliff Richard album) Love Is Forever is the ninth studio album by Cliff Richard released in 1965 (sixteenth album overall). The album reached number 19 in the UK Album Charts and is primarily made up of pop standards such as \"\"Long Ago (And Far Away)\"\", \"\"Have I Told You Lately That I Love You\"\", and \"\"Someday (You'll Want Me To Want You)\"\". The album was produced primarily by Richard's usual producer Norrie Paramor, but two song's \"\"Everyone Needs to Love Someone\"\" and \"\"Through the Eye of a Needle\"\" were from Richard's August 1964 recording sessions in New"} +{"qid": "test625", "pid": "19761331", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Love is Forever (Cliff Richard album)\"\nYork with Bob Morgan producing. Bob Morgan was from Epic Records, Richard's US record company at the time. Love is Forever (Cliff Richard album) Love Is Forever is the ninth studio album by Cliff Richard released in 1965 (sixteenth album overall). The album reached number 19 in the UK Album Charts and is primarily made up of pop standards such as \"\"Long Ago (And Far Away)\"\", \"\"Have I Told You Lately That I Love You\"\", and \"\"Someday (You'll Want Me To Want You)\"\". The album was produced primarily by Richard's usual producer Norrie Paramor, but two song's \"\"Everyone Needs to"} +{"qid": "test625", "pid": "9812617", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Someone like You (Van Morrison song)\"\nSomeone like You (Van Morrison song) \"\"Someone Like You\"\" is a song written by Northern Irish singer-songwriter Van Morrison and recorded on his album, \"\"Poetic Champions Compose\"\" (1987). It has become a wedding and movie classic and the song would subsequently furnish the framework for another of his most popular classics and love ballads, \"\"Have I Told You Lately\"\", that was released in 1989. In 1987 the single charted at number 28 on the \"\"Billboard\"\" Adult Contemporary in the U.S. \"\"Someone Like You\"\" was recorded in the summer of 1987 at Wool Hall Studios in Beckington,Somerset with Mick Glossop as"} +{"qid": "test625", "pid": "5532296", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Sentimental Journey (Ringo Starr album)\"\nthe song. That same day, the vocals for both \"\"Have I Told You Lately That I Love You?\"\" and \"\"Let the Rest of the World Go By\"\" were re-recorded. Following this, \"\"It Don't Come Easy\"\" was recorded during a late-night part of the session, under the title \"\"Gotta Pay Your Dues\"\". Two days later, \"\"I'm a Fool to Care\"\", \"\"Let the Rest of the World Go By\"\" and \"\"Sentimental Journey\"\" were mixed. On 24 February, over a week later, Starr's vocal was recorded for \"\"Blue, Turning Grey Over You\"\". Now moving to De Lane Lea Studios a day later, the"} +{"qid": "test625", "pid": "5532295", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Sentimental Journey (Ringo Starr album)\"\non \"\"Have I Told You Lately That I Love You?\"\" on both 9 and 18 February 1970, the track was arranged by Elmer Bernstein. On 11 February, the orchestra for \"\"I'm a Fool to Care\"\" was conducted by Voorman, who also arranged his version of the song at Starr's request. On the same day, Starr added his vocal track to the song. A day later, the backing track, and Starr's vocal, for \"\"Let the Rest of the World Go By\"\" were recorded; the track was arranged by Les Reed. Nearly a week later, on 18 February, overdubs were added to"} +{"qid": "test625", "pid": "9568972", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Have I Told You Lately\"\nrecorded by numerous artists and bands. In 1993, Rod Stewart's version charted at number five on both the US \"\"Billboard\"\" Hot 100 as well as on the UK Singles Chart. Composed as a love ballad and built on the framework of \"\"Someone Like You\"\", it is preceded on \"\"Avalon Sunset\"\" by the song, \"\"I'd Love to Write Another Song\"\" proclaiming \"\"In poetry I'd carve it well/ I'd even make it rhyme.\"\" Then, in the words of Brian Hinton what follows is: Coney Island Medley with the Chieftains Rod Stewart covered the song for his album \"\"Vagabond Heart\"\" (1991). A live"} +{"qid": "test625", "pid": "13908030", "query": "song have i told you lately i love you", "answer": "Have I Told You Lately", "passage": "\"Keith Harkin\"\nwinner, Colbie Caillat. They cover Van Morrison's \"\"Have I Told You Lately That I Love You\"\" as the third track on the album. Harkin's second solo album was released in October 2015. The songs on Harkin's second solo album On Mercy Street were written by Harkin and he completely funded the album, the album reached number one on World music Billboard charts. Collaborations with Gavin Goldberg and Andy Wright guided Harkin to make it his own style. Harkin recorded all the songs on the album live and in only one take. Harkin released a solo Christmas album titled Nollaig in"} +{"qid": "test628", "pid": "14405281", "query": "who is the coach of university of kentucky basketball", "answer": "John Calipari", "passage": "\"Adolph Rupp Cup\"\nof Kentucky. The award's inaugural recipient was Phil Martelli of Saint Joseph's University, who was also recognized as the Naismith National Coach of the Year that season. As of 2015, the most recent winner John Calipari is the only head coach to receive the Rupp Cup twice. Adolph Rupp Cup The Adolph Rupp Cup is an award given annually since 2004 to the men's college basketball head coach in NCAA Division I competition \"\"who best exemplifies excellence in his dedication to the game of basketball and to his student athletes.\"\" The award is named for former University of Kentucky head"} +{"qid": "test628", "pid": "13194813", "query": "who is the coach of university of kentucky basketball", "answer": "John Calipari", "passage": "\"2009–10 Kentucky Wildcats men's basketball team\"\n2009–10 Kentucky Wildcats men's basketball team The 2009–10 Kentucky Wildcats men's basketball team represented the University of Kentucky during the college basketball season of 2009–2010. This season was the first of John Calipari's tenure as head coach; he accepted the position on March 31, 2009. The Wildcats set several records this season. They became the first men's college basketball program to reach 2,000 wins by defeating the Drexel Dragons on December 21. Coach Calipari set a record for the most consecutive wins for a first-year Kentucky basketball coach at 19-0, surpassing Adolph Rupp's previous mark of 11-0. Kentucky also extended"} +{"qid": "test628", "pid": "1975143", "query": "who is the coach of university of kentucky basketball", "answer": "John Calipari", "passage": "\"University of Kentucky\"\nSmith in 1998. In 2007, the University of Kentucky named Billy Gillispie as the head coach of the men's basketball team and on March 30, 2009, the university named John Calipari as the head coach of the Wildcats. Calipari coached the team to its eighth national title in 2012. On December 21, 2009, the men's basketball team reached another milestone, becoming the first college basketball team to reach 2000 all-time wins. The 2000th win was an 88–44 victory over the Drexel Dragons. Kentucky was also the first school to reach the 1000 all-time wins, which they accomplished in 1969. The"} +{"qid": "test629", "pid": "378758", "query": "where does the papillary layer of the skin lie", "answer": "adjacent to the epidermis", "passage": "Skin\nthrough a basement membrane and is structurally divided into two areas: a superficial area adjacent to the epidermis, called the \"\"papillary region\"\", and a deep thicker area known as the \"\"reticular region\"\". The papillary region is composed of loose areolar connective tissue.This is named for its fingerlike projections called \"\"papillae\"\" that extend toward the epidermis. The papillae provide the dermis with a \"\"bumpy\"\" surface that interdigitates with the epidermis, strengthening the connection between the two layers of skin. The reticular region lies deep in the papillary region and is usually much thicker. It is composed of dense irregular connective tissue,"} +{"qid": "test629", "pid": "3302940", "query": "where does the papillary layer of the skin lie", "answer": "adjacent to the epidermis", "passage": "Dermis\nDermis The dermis or corium is a layer of skin between the epidermis (with which it makes up the cutis) and subcutaneous tissues, that primarily consists of dense irregular connective tissue and cushions the body from stress and strain. It is divided into two layers, the superficial area adjacent to the epidermis called the papillary region and a deep thicker area known as the reticular dermis. The dermis is tightly connected to the epidermis through a basement membrane. Structural components of the dermis are collagen, elastic fibers, and extrafibrillar matrix. It also contains mechanoreceptors that provide the sense of touch"} +{"qid": "test629", "pid": "3302946", "query": "where does the papillary layer of the skin lie", "answer": "adjacent to the epidermis", "passage": "Dermis\nmembranes, the equivalent structures to dermal papillae are generally termed \"\"connective tissue papillae\"\", which interdigitate with the rete pegs of the superficial epithelium. Dermis The dermis or corium is a layer of skin between the epidermis (with which it makes up the cutis) and subcutaneous tissues, that primarily consists of dense irregular connective tissue and cushions the body from stress and strain. It is divided into two layers, the superficial area adjacent to the epidermis called the papillary region and a deep thicker area known as the reticular dermis. The dermis is tightly connected to the epidermis through a basement"} +{"qid": "test63", "pid": "6159501", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"Oscar Hertwig\"\nRoyal Swedish Academy of Sciences in 1903. Hertwig is known as Oscar Hedwig in the book \"\"Who discovered what when\"\" by David Ellyard. A history of the discovery of fertilization for mammals including scientists like Hertwig and other workers is given by the book \"\"The Mammalian Egg\"\" by Austin. Oscar Hertwig Oscar Hertwig (21 April 1849 in Friedberg – 25 October 1922 in Berlin) was a German zoologist and professor, who also wrote about the theory of evolution circa 1916, over 55 years after Charles Darwin's book \"\"The Origin of Species\"\". He was the elder brother of zoologist-professor Richard Hertwig"} +{"qid": "test63", "pid": "16541507", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"R. B. Freeman\"\nDarwin’s \"\"Origin of Species\"\"] as it would be to discover those of its great – and almost as shattering – coeval, \"\"The Rubáiyát of Omar Khayyám\"\"\"\", Freeman wrote: “I have tried to do just that for all of Darwin’s works.” The second revised edition of \"\"The Works of Charles Darwin\"\" was “virtually a new book” and “a required purchase for students of Darwin and of the history of evolutionary biology generally” which “stands second only to a facsimile of the first edition of \"\"The Origin of Species\"\".” A \"\"remarkable\"\" reader's guide to \"\"Darwin's life, his ancestry, collaterals and descendants, his"} +{"qid": "test63", "pid": "12785973", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"Jennifer Connelly\"\nher into a corner\"\". In 2009, she appeared in the costume drama biopic \"\"Creation\"\", in which she played Emma Darwin, wife of Charles Darwin, opposite her real-life husband Paul Bettany. Set during the writing of \"\"On the Origin of Species\"\", the movie depicts Darwin's struggle with the subject of the book as well as with his wife, who opposed his theories, and their mourning for their daughter Annie. The \"\"San Francisco Chronicle\"\" wrote, \"\"Darwin's wife, a religious woman who disapproved of her husband's theories, is played by Jennifer Connelly, Bettany's real-life wife, in the kind of casting that doesn't always"} +{"qid": "test63", "pid": "3005513", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"Primordial soup\"\nheat, light, electricity and moisture\"\"\"\", he wrote in 1809 in \"\"Philosophie Zoologique\"\" (\"\"The Philosophy of Zoology\"\"), \"\"\"\"forms direct or spontaneous generation at that extremity of each kingdom of living bodies, where the simplest of these bodies are found\"\".\"\" When English naturalist Charles Darwin introduced the theory of natural selection in his book \"\"On the Origin of Species\"\" in 1859, his supporters, such as a German zoologist Ernst Haeckel, criticised him for not using his theory to explain the origin of life. Haeckel wrote in 1862: \"\"\"\"The chief defect of the Darwinian theory is that it throws no light on the"} +{"qid": "test63", "pid": "2730516", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "Paleoanthropology\nthat humans are similar to certain great apes had been obvious to people for some time, but the idea of the biological evolution of species in general was not legitimized until after Charles Darwin published \"\"On the Origin of Species\"\" in 1859. Though Darwin's first book on evolution did not address the specific question of human evolution—\"\"light will be thrown on the origin of man and his history,\"\" was all Darwin wrote on the subject—the implications of evolutionary theory were clear to contemporary readers. Debates between Thomas Huxley and Richard Owen focused on the idea of human evolution. Huxley convincingly"} +{"qid": "test63", "pid": "4874082", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"Essays and Reviews\"\nJapan. The book was important because of its date and its authors. Appearing four months after Charles Darwin's \"\"On the Origin of Species\"\", it summed up a three-quarter-century-long challenge to biblical history by the higher critics and to biblical prehistory by scientists working in the new fields of geology and biology. Baden Powell restated his argument that God is a lawgiver, miracles break the lawful edicts issued at the creation, therefore belief in miracles is atheistic, and wrote of \"\"Mr Darwin's masterly volume\"\" that the \"\"Origin of Species\"\" \"\"must soon bring about an entire revolution in opinion in favour of"} +{"qid": "test63", "pid": "7576318", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"Man and Nature\"\nbe found occurring in the United States. The book was one of the most influential books of its time, next to Charles Darwin's On the Origin of Species, inspiring conservation and reform in the USA since it forebode what happened to an ancient civilisation when it depleted and exhausted its natural resources. The book was instrumental in the creation of Adirondack Park in New York and the United States National Forest. Gifford Pinchot, first Chief of the United States Forest Service, called it \"\"epoch making\"\" and Stewart Udall wrote that it was \"\"the beginning of land wisdom in this country.\"\""} +{"qid": "test63", "pid": "16541502", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"R. B. Freeman\"\nR. B. Freeman Richard Broke Freeman (1 April 1915 – 1 September 1986) was a zoologist, historian of zoology, bibliographer of natural history and book collector. Known professionally as R. B. Freeman, he compiled comprehensive reference works on Charles Darwin and on P. H. Gosse. He was “a meticulous scholar” and a “brilliant bibliographer” who showed “a genuine modesty about his great erudition.” \"\"It is darkly rumored among antiquarian booksellers that R. B. Freeman once missed a completely unrecorded and absurdly rare 1859 second issue of the first edition of \"\"The Origin of Species\"\"\"\", a reviewer wrote in the \"\"Times"} +{"qid": "test63", "pid": "2508454", "query": "who wrote the book the origin of species", "answer": "Charles Darwin", "passage": "\"Group selection\"\nbetween two or more groups, some containing altruistic individuals who act cooperatively together, is more important for survival than competition between individuals within each group. Their proposals provoked a strong rebuttal from a large group of evolutionary biologists. Charles Darwin developed the theory of evolution in his book, \"\"Origin of Species\"\". Darwin also made the first suggestion of group selection in \"\"The Descent of Man\"\" that the evolution of groups could affect the survival of individuals. He wrote, \"\"If one man in a tribe... invented a new snare or weapon, the tribe would increase in number, spread, and supplant other"} +{"qid": "test630", "pid": "2554424", "query": "who has become the new chairman of sebi", "answer": "Ajay Tyagi", "passage": "\"Securities and Exchange Board of India\"\ncollective investment scheme brought under SEBI except NIDHI, chit fund and cooperatives. Ajay Tyagi was appointed chairman on 10 January 2017, replacing U K Sinha, and took charge of the chairman office on 1 March 2017. The board comprises: List of Chairmen: The Preamble of the Securities and Exchange Board of India describes the basic functions of the Securities and Exchange Board of India as \"\"...to protect the interests of investors in securities and to promote the development of, and to regulate the securities market and for matters connected there with or incidental there to\"\". SEBI has to be responsive"} +{"qid": "test632", "pid": "2599657", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause 2\"\nreleased as a 3-Movie Collection Blu-ray set on October 16, 2012. The Santa Clause 2 The Santa Clause 2 is a 2002 Christmas family comedy film directed by Michael Lembeck. It is a sequel to \"\"The Santa Clause\"\" (1994) and the second installment in the \"\"Santa Clause\"\" film series. All the principal actors from the first film, including Tim Allen, Eric Lloyd, Wendy Crewson and Judge Reinhold, reprise their roles. Released on November 1, 2002, the film received mixed reviews from critics and grossed $172 million worldwide on a $65 million budget. It was followed by another sequel, \"\"\"\", released"} +{"qid": "test632", "pid": "8095291", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"Santa Claus in film\"\nChristmas\"\" (1988), Ernest P. Worrell (Jim Varney) joins the challenge of Santa Claus, alias Seth Applegate (Douglas Seale), to convince Florida kids' show host Joe Carruthers (Oliver Clark) to become the next Santa. In \"\"The Santa Clause\"\" (1994), Tim Allen plays Scott Calvin, who accidentally causes Santa Claus to fall off the roof of his house. After he puts on Santa's robes, he becomes subject to the \"\"Santa clause\"\" (like a contract), which requires him to become the next Santa. Despite his average appearance, over the next year he grows fat, his hair whitens, and he grows a beard by"} +{"qid": "test632", "pid": "1286338", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause\"\nThe Santa Clause The Santa Clause (stylized as The Santa Claus) is a 1994 American Christmas fantasy family comedy film written by Leo Benvenuti and Steve Rudnick, and directed by John Pasquin. The first film in the \"\"Santa Clause\"\" film series, it stars Tim Allen as Scott Calvin, an ordinary man who accidentally causes Santa Claus to fall from his roof on Christmas Eve. When he and his young son, Charlie, finish St. Nick's trip and deliveries, they go to the North Pole where Scott learns that he must become the new Santa and convince those he loves that he"} +{"qid": "test632", "pid": "1286350", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause\"\nthe number (which turned out to be an actual, working sex line number) and racked up a $400 phone bill. On television airings, the phone number is changed to \"\"1-800-POUND\"\". The line remains intact on the 1995 VHS release. The Santa Clause The Santa Clause (stylized as The Santa Claus) is a 1994 American Christmas fantasy family comedy film written by Leo Benvenuti and Steve Rudnick, and directed by John Pasquin. The first film in the \"\"Santa Clause\"\" film series, it stars Tim Allen as Scott Calvin, an ordinary man who accidentally causes Santa Claus to fall from his roof"} +{"qid": "test632", "pid": "6553750", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause 3: The Escape Clause\"\nThe Santa Clause 3: The Escape Clause The Santa Clause 3: The Escape Clause is a 2006 American Christmas fantasy comedy adventure film directed by Michael Lembeck. It is the third and final film in the \"\"Santa Clause\"\" film series following \"\"The Santa Clause\"\" and \"\"The Santa Clause 2\"\". The film stars Tim Allen returning as Scott Calvin/Santa Claus and Martin Short as Jack Frost. Allen and Short had previously worked together in the 1997 Disney comedy feature film, \"\"Jungle 2 Jungle\"\". Most of the supporting actors from the first two films reprise their roles, with the exception of David"} +{"qid": "test632", "pid": "17225874", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause (film series)\"\nThe Santa Clause (film series) The Santa Clause (also known as The Santa Clause Trilogy) is a series of comedy films starring Tim Allen. The film series began with \"\"The Santa Clause\"\" (1994). It was followed by \"\"The Santa Clause 2\"\" (2002) and \"\"\"\" (2006). The series experienced a diminishing critical reception with each subsequent film. Divorced dad Scott Calvin (Tim Allen) has custody of his son Charlie (Eric Lloyd) on Christmas Eve. After he accidentally causes the death of a man in a Santa suit, they are magically transported to the North Pole, where an elf explains that Scott"} +{"qid": "test632", "pid": "6246124", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"Spencer Breslin\"\nJoey in the Disney Channel Original Movie \"\"The Ultimate Christmas Present\"\", a comedy, and garnered a 2000 Young Artist Award nomination for Best Performance in a TV Movie (Comedy or Drama) Young Actor Age 10 or Under. He played whiz-kid Curtis the Elf in the 2002 romantic comedy-drama-fantasy film \"\"The Santa Clause 2: The Mrs. Clause\"\", marking the first of four films in which he co-starred alongside actor Tim Allen. The movie was a great financial success, raking in $173 million in gross sales, and was the fifth-highest-grossing holiday movie ever and the 28th-highest-grossing movie worldwide of the year, making"} +{"qid": "test632", "pid": "17225878", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause (film series)\"\nsentimental, life-affirming moments without tugging too hard.\"\" \"\"The Santa Clause 2\"\" on its opening weekend grossed more than its predecessor. The opening weekend was a personal best to date for Tim Allen. \"\"The Hollywood Reporter\"\" said its performance \"\"exceeded expectations\"\". \"\"The Santa Clause\"\" strongest market outside the United States was Germany, and \"\"The Santa Clause 2\"\" had in Germany an opening weekend of $892,000, which was 50% larger than the opening weekend of the original film. In the United States, \"\"The Santa Clause 3\"\" had an opening weekend of , which was less than the grossed by \"\"The Santa Clause"} +{"qid": "test632", "pid": "2599647", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause 2\"\nThe Santa Clause 2 The Santa Clause 2 is a 2002 Christmas family comedy film directed by Michael Lembeck. It is a sequel to \"\"The Santa Clause\"\" (1994) and the second installment in the \"\"Santa Clause\"\" film series. All the principal actors from the first film, including Tim Allen, Eric Lloyd, Wendy Crewson and Judge Reinhold, reprise their roles. Released on November 1, 2002, the film received mixed reviews from critics and grossed $172 million worldwide on a $65 million budget. It was followed by another sequel, \"\"\"\", released in 2006. Eight years have passed since Scott Calvin took on"} +{"qid": "test632", "pid": "1286339", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"The Santa Clause\"\nis indeed Father Christmas. This was Pasquin and Allen's first movie collaboration after they both worked together on the TV series \"\"Home Improvement\"\". Pasquin and Allen would later work again on the films \"\"Jungle 2 Jungle\"\" and \"\"Joe Somebody\"\", and on the television series \"\"Last Man Standing\"\". The film was followed by two sequels, \"\"The Santa Clause 2\"\" (2002) and \"\"\"\" (2006). In comparison to the original, the former received mixed critical response while the latter was panned by most critics. Scott Calvin (Tim Allen), a successful toy salesman, prepares to spend Christmas Eve with his son Charlie (Eric Lloyd)."} +{"qid": "test632", "pid": "6864537", "query": "who played santa in the santa clause movies", "answer": "Tim Allen", "passage": "\"Kenny Vadas\"\nKenny Vadas Ken \"\"Kenny\"\" Vadas is a Canadian actor. In his early career Vadas acted in several commercials; he was a regular on the television series \"\"Eric's World\"\" and had guest roles on television series such as \"\"Are You Afraid of the Dark?\"\", \"\"Goosebumps\"\", and \"\"The Adventures of Sinbad\"\" which filmed in South Africa. He acted in several made-for-television movies and is famous for his role as the E.L.F.S. Leader in the Disney blockbuster \"\"The Santa Clause\"\" with Tim Allen in which he saved Santa and his son Charlie and is quoted frequently for his line in the movie; \"\"We're"} +{"qid": "test633", "pid": "6271942", "query": "how many times have real madrid won the european cup.in paris", "answer": "twelve", "passage": "\"European Cup and UEFA Champions League records and statistics\"\nare Scotland, Romania, Yugoslavia, and France. Greece, Belgium and Sweden have all provided losing finalists. Clubs from a total of 35 European cities have participated in the tournament final. Clubs from 21 cities have provided winners, with the clear city leaders being Madrid (winning twelve) and Milan (winning ten); though both Milan and Inter Milan have helped the city of Milan be successful, only Real Madrid have won it for the city of Madrid, with Atlético Madrid losing all three of their finals (albeit two of these were against city rivals Real Madrid, therefore by the time of these two"} +{"qid": "test635", "pid": "14761021", "query": "when was kudzu introduced to the united states", "answer": "1876", "passage": "\"Kudzu in the United States\"\nto the 30th parallel north (the island of Kuchinoshima) and many of the lowlands and the islands. In Korea, kudzu grows in areas where the temperature can drop to . The kudzu plant was introduced to the United States from Japan in 1876 at the Centennial Exposition in Philadelphia. Kudzu was introduced to the Southeast in 1883 at the New Orleans Exposition. The vine was widely marketed in the Southeast as an ornamental plant to be used to shade porches, and in the first half of the 20th century, kudzu was distributed as a high-protein content cattle fodder and as"} +{"qid": "test635", "pid": "683706", "query": "when was kudzu introduced to the united states", "answer": "1876", "passage": "Kudzu\nin leaf litter associated with kudzu infestation results in changes to decomposition processes and a 28% reduction in stocks of soil carbon, with potential implications for processes involved in climate change. Kudzu was introduced from Japan into the United States at the Japanese pavilion in the 1876 Centennial Exposition in Philadelphia. In the 1930s and 1940s, the vine was rebranded as a way for farmers to stop soil erosion. Workers were paid $8 per acre to sow topsoil with the invasive vine. The cultivation covered over one million acres of kudzu. It is now common along roadsides and other disturbed"} +{"qid": "test635", "pid": "14761025", "query": "when was kudzu introduced to the united states", "answer": "1876", "passage": "\"Kudzu in the United States\"\nto make hay that sick animals will eat. The starch is used in Japanese cuisine, and is widely consumed as such in that country. Kudzu is also used as a food crop in Java, Sumatra, and Malaya, and can be found in Puerto Rico and South America. Other uses may include: paper products, food products, insect repellents (the smoke from burning leaves), honey, and methane production. Kudzu also has potential as a source for biofuel. Kudzu was intentionally introduced to North America by the Soil Erosion Service and Civilian Conservation Corp in 1876 for the purpose of controlling soil erosion"} +{"qid": "test636", "pid": "6314612", "query": "the radiographic term used to describe the dense bone of the socket and septal crest is", "answer": "lamina dura", "passage": "\"Alveolar process\"\nadjacent to the periodontal ligament (PDL), called the lamina dura when viewed on radiographs. It is this part which is attached to the cementum of the roots by the periodontal ligament. It is uniformly radiopaque (or lighter). Integrity of the lamina dura is important when studying radiographs for pathological lesions. The alveolar process has a supporting bone, both of which have the same components: fibers, cells, intercellular substances, nerves, blood vessels, and lymphatics. The alveolar process is the lining of the tooth socket or alveolus (plural, alveoli). Although the alveolar process is composed of compact bone, it may be called"} +{"qid": "test636", "pid": "5262982", "query": "the radiographic term used to describe the dense bone of the socket and septal crest is", "answer": "alveolar process", "passage": "\"Dental alveolus\"\nDental alveolus Dental alveoli (singular \"\"alveolus\"\") are sockets in the jaws in which the roots of teeth are held in the alveolar process with the periodontal ligament. The lay term for dental alveoli is tooth sockets. A joint that connects the roots of the teeth and the alveolus is called \"\"gomphosis\"\" (plural \"\"gomphoses\"\"). Alveolar bone is the bone that surrounds the roots of the teeth forming bone sockets. In mammals, tooth sockets are found in the maxilla, the premaxilla, and the mandible. Socket preservation or alveolar ridge preservation (ARP) is a procedure to reduce bone loss after tooth extraction to"} +{"qid": "test637", "pid": "8042709", "query": "where was the tv show friday night lights filmed", "answer": "Austin", "passage": "\"Friday Night Lights (TV series)\"\nyielding roughly $33 million a year in revenue, other states courted the production company after the state of Texas failed to pay all the rebates it had promised to the show's producers. The Texas legislature authorized funding to match the offers of other states, and the production company preferred to stay near Austin, so the show remained in Texas. \"\"Friday Night Lights\"\" is unusual for using actual locations rather than stage sets and sound stage. These factors together with reliance on filming hundreds of locals as extras, gives the series an authentic feel and look. The producers used a documentary-style"} +{"qid": "test637", "pid": "8042708", "query": "where was the tv show friday night lights filmed", "answer": "Austin", "passage": "\"Friday Night Lights (TV series)\"\n\"\"no rehearsal, no blocking, just three cameras and we shoot.\"\" Working in this fashion profoundly influenced everyone involved with the show. Series star Kyle Chandler said: \"\"When I look back at my life, I'm going to say, 'Wow, [executive producer] Peter Berg really changed my life.'\"\" Executive producer and head writer Jason Katims echoed this sentiment, saying: \"\"When I first came on [the \"\"FNL\"\"] set, I thought, it’s interesting – this is what I imagined filmmaking would be, before I saw what filmmaking was.\"\" All five seasons of \"\"Friday Night Lights\"\" were filmed in Austin and Pflugerville. With the show"} +{"qid": "test637", "pid": "8042704", "query": "where was the tv show friday night lights filmed", "answer": "Austin", "passage": "\"Friday Night Lights (TV series)\"\nparticularly for the pilot, which was closely related to the film. He cast Connie Britton as the wife of head coach Eric Taylor, and Brad Leland as Buddy Garrity, a major businessman and football booster, in roles similar to those they played in the film. Filming for the show's pilot began in February 2006 in Austin, Texas. Berg said he required filming the pilot and eventually the show in Texas as \"\"a deal breaker\"\" in order to agree to participate weekly in the project. The show features homages to its Texas heritage. In the pilot, Berg featured former Texas Longhorns"} +{"qid": "test638", "pid": "1381921", "query": "who led an attack that allowed for american victory at yorktown", "answer": "George Washington", "passage": "\"Siege of Yorktown\"\nSiege of Yorktown The Siege of Yorktown, also known as the Battle of Yorktown, the Surrender at Yorktown, German Battle or the Siege of Little York, ending on October 19, 1781, at Yorktown, Virginia, was a decisive victory by a combined force of American Continental Army troops led by General George Washington and French Army troops led by the Comte de Rochambeau over a British Army commanded by British peer and Lieutenant General Charles Cornwallis. The culmination of the Yorktown campaign, the siege proved to be the last major land battle of the American Revolutionary War in the North American"} +{"qid": "test638", "pid": "1381969", "query": "who led an attack that allowed for american victory at yorktown", "answer": "George Washington", "passage": "\"Siege of Yorktown\"\nHerbert Hoover along with French representatives. The event included the official dedication of the Colonial National Historical Park. Siege of Yorktown The Siege of Yorktown, also known as the Battle of Yorktown, the Surrender at Yorktown, German Battle or the Siege of Little York, ending on October 19, 1781, at Yorktown, Virginia, was a decisive victory by a combined force of American Continental Army troops led by General George Washington and French Army troops led by the Comte de Rochambeau over a British Army commanded by British peer and Lieutenant General Charles Cornwallis. The culmination of the Yorktown campaign, the"} +{"qid": "test638", "pid": "16856064", "query": "who led an attack that allowed for american victory at yorktown", "answer": "George Washington", "passage": "\"Sampson Mathews\"\nmonth. Mathews' company later merged with General George Washington and French Army troops led by the Comte de Rochambeau for the October 1781 Siege of Yorktown, the last major battle of the war. In the beginning of September, the fleet of the Comte de Grasse defeated a British fleet led by Sir Thomas Graves that had come to relieve British General Lord Cornwallis, who had built a stronghold in Yorktown, at the Battle of the Chesapeake. As a result of this victory, de Grasse blocked any escape by sea for Cornwallis. By late September Washington and Rochambeau's armies arrived, and"} +{"qid": "test638", "pid": "3267211", "query": "who led an attack that allowed for american victory at yorktown", "answer": "George Washington", "passage": "\"York River (Virginia)\"\nCornwallis at Yorktown found itself cornered by the Americans under George Washington on land and by the French fleet at sea. The ensuing American victory at the Battle of Yorktown forced the surrender of Cornwallis and the end of the war in the east. During the American Civil War, the same area became the theater of the Peninsular Campaign of 1862. In the third millennium, York River State Park is located along the southern shore northwest of Yorktown in James City County. Also on the south shore are several large military reservations, including Camp Peary and the Naval Weapons Station"} +{"qid": "test639", "pid": "75446", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\napart. Although he presented much evidence for continental drift, he was unable to provide a convincing explanation for the physical processes which might have caused this drift. His suggestion that the continents had been pulled apart by the centrifugal pseudoforce (\"\"Polflucht\"\") of the Earth's rotation or by a small component of astronomical precession was rejected, as calculations showed that the force was not sufficient. The Polflucht hypothesis was also studied by Paul Sophus Epstein in 1920 and found to be implausible. The theory of continental drift was not accepted for many years. One problem was that a plausible driving force"} +{"qid": "test639", "pid": "75443", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nWegener noted the similarity of Mantovani's and his own maps of the former positions of the southern continents. In Mantovani's conjecture, this continent broke due to volcanic activity caused by thermal expansion, and the new continents drifted away from each other because of further expansion of the rip-zones, where the oceans now lie. This led Mantovani to propose an Expanding Earth theory which has since been shown to be incorrect. Continental drift without expansion was proposed by Frank Bursley Taylor, who suggested in 1908 (published in 1910) that the continents were moved into their present positions by a process of"} +{"qid": "test639", "pid": "75445", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nhis own. In the mid-20th century, the theory of continental drift was referred to as the \"\"Taylor-Wegener hypothesis\"\", although this terminology eventually fell out of common use. Alfred Wegener first presented his hypothesis to the German Geological Society on 6 January 1912. His hypothesis was that the continents had once formed a single landmass, called Pangaea, before breaking apart and drifting to their present locations. Wegener was the first to use the phrase \"\"continental drift\"\" (1912, 1915) (in German \"\"die Verschiebung der Kontinente\"\" – translated into English in 1922) and formally publish the hypothesis that the continents had somehow \"\"drifted\"\""} +{"qid": "test639", "pid": "13750926", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Future of Earth\"\nplates to relocate and collide. Continental drift is facilitated by two factors: the energy generation within the planet and the presence of a hydrosphere. With the loss of either of these, continental drift will come to a halt. The production of heat through radiogenic processes is sufficient to maintain mantle convection and plate subduction for at least the next 1.1 billion years. At present, the continents of North and South America are moving westward from Africa and Europe. Researchers have produced several scenarios about how this will continue in the future. These geodynamic models can be distinguished by the subduction"} +{"qid": "test639", "pid": "75461", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nconcept of continental drift. Striations indicated glacial flow away from the equator and toward the poles, based on continents' current positions and orientations, and supported the idea that the southern continents had previously been in dramatically different locations that were contiguous with one another. Continental drift Continental drift is the theory that the Earth's continents have moved over geologic time relative to each other, thus appearing to have \"\"drifted\"\" across the ocean bed. The speculation that continents might have 'drifted' was first put forward by Abraham Ortelius in 1596. The concept was independently and more fully developed by Alfred Wegener"} +{"qid": "test639", "pid": "75437", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nContinental drift Continental drift is the theory that the Earth's continents have moved over geologic time relative to each other, thus appearing to have \"\"drifted\"\" across the ocean bed. The speculation that continents might have 'drifted' was first put forward by Abraham Ortelius in 1596. The concept was independently and more fully developed by Alfred Wegener in 1912, but his theory was rejected by many for lack of any motive mechanism. Arthur Holmes later proposed mantle convection for that mechanism. The idea of continental drift has since been subsumed by the theory of plate tectonics, which explains that the continents"} +{"qid": "test639", "pid": "75448", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nwhat is the nature of the forces propelling the plates? The British geologist Arthur Holmes championed the theory of continental drift at a time when it was deeply unfashionable. He proposed in 1931 that the Earth's mantle contained convection cells which dissipated radioactive heat and moved the crust at the surface. His \"\"Principles of Physical Geology\"\", ending with a chapter on continental drift, was published in 1944. Geological maps of the time showed huge land bridges spanning the Atlantic and Indian oceans to account for the similarities of fauna and flora and the divisions of the Asian continent in the"} +{"qid": "test639", "pid": "75452", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nby Kurt Leuchs. The few drifters and mobilists at the conference appealed to biogeography (Kirsch, Wittmann), paleoclimatology (Wegener, K), paleontology (Gerth) and geodetic measurements (Wegener, K). F. Bernauer correctly equated Reykjanes in Iceland with the Mid-Atlantic Ridge arguing with this that the floor of the Atlantic Ocean was undergoing extension just like Reykjanes. Bernauer thought this extension had drifted the continents only 100–200 km apart, the approximate width of the volcanic zone in Iceland. David Attenborough, who attended university in the second half of the 1940s, recounted an incident illustrating its lack of acceptance then: \"\"I once asked one of"} +{"qid": "test639", "pid": "75441", "query": "what process causes the continents to drift apart how", "answer": "Continental drift", "passage": "\"Continental drift\"\nshelf. This suggested that the oceans were a permanent feature of the Earth's surface, and did not change places with the continents. Apart from the earlier speculations mentioned in the previous section, the idea that the American continents had once formed a single landmass together with Europe and Asia before assuming their present shapes and positions was speculated by several scientists before Alfred Wegener's 1912 paper. Although Wegener's theory was formed independently and was more complete than those of his predecessors, Wegener later credited a number of past authors with similar ideas: Franklin Coxworthy (between 1848 and 1890), Roberto Mantovani"} +{"qid": "test64", "pid": "13888179", "query": "who sang rip it up and start again", "answer": "Orange Juice", "passage": "\"In Your Shoes\"\nstations featuring British rapper Chipmunk performing over the original middle-eight section of the song. The remix version was premiered on Ronnie Herel's BBC 1Xtra radio programme. Knight explains that \"\"In Your Shoes\"\" is about people who focus their envy of your progress, instead of concentrating on their own journey\"\". In an early review of \"\"100%\"\", David Quantick of the BBC said of the song \"\"Knight's fifth album sees the singer rip it up and start again. Literally so in the case of the splendid, must-be-a-single In Your Shoes, which doesn't so much sample Orange Juice's Rip It Up as sit"} +{"qid": "test64", "pid": "8216394", "query": "who sang rip it up and start again", "answer": "Orange Juice", "passage": "\"Paul Quinn (singer)\"\nMark A. Radcliffe, Quinn's \"\"Will I Ever Be Inside Of You\"\" is the song that is playing when one of the characters wakes from a coma. Paul Quinn (singer) Paul Walter Quinn (born 1959) is a Scottish musician who was the lead singer of cult 1980s band Bourgie Bourgie, and also released records with Jazzateers, Vince Clarke and Edwyn Collins and sang on an early track by the French Impressionists. Quinn was a classmate of Edwyn Collins between the ages of 11 and 15, and sang backing vocals on \"\"Rip It Up\"\" by Collins' band Orange Juice. After singing with"} +{"qid": "test64", "pid": "8216389", "query": "who sang rip it up and start again", "answer": "Orange Juice", "passage": "\"Paul Quinn (singer)\"\nPaul Quinn (singer) Paul Walter Quinn (born 1959) is a Scottish musician who was the lead singer of cult 1980s band Bourgie Bourgie, and also released records with Jazzateers, Vince Clarke and Edwyn Collins and sang on an early track by the French Impressionists. Quinn was a classmate of Edwyn Collins between the ages of 11 and 15, and sang backing vocals on \"\"Rip It Up\"\" by Collins' band Orange Juice. After singing with Postcard Records band Jazzateers (contemporaries of Josef K, The French Impressionists and Aztec Camera) he formed Bourgie Bourgie in May 1983 along with former members of"} +{"qid": "test640", "pid": "11128521", "query": "who played in last train from gun hill", "answer": "Earl Holliman", "passage": "\"Last Train from Gun Hill\"\nLast Train from Gun Hill Last Train from Gun Hill is a 1959 Western in VistaVision and Technicolor by action director John Sturges. It stars Kirk Douglas, Anthony Quinn, Carolyn Jones, and Earl Holliman. Douglas and Holliman had previously appeared together in Sturges' \"\"Gunfight at the O.K. Corral\"\" (1957), which used much of the same crew. Two old friends, Matt Morgan (Kirk Douglas) and Craig Belden (Anthony Quinn), now find themselves on opposite sides of the law. Belden, a rich cattle baron, is the de facto ruler of the town of Gun Hill. Morgan is a U.S. Marshal living in"} +{"qid": "test640", "pid": "11128522", "query": "who played in last train from gun hill", "answer": "Ziva Rodann", "passage": "\"Last Train from Gun Hill\"\nanother town with his Native American/Indian wife (played by Ziva Rodann) and young son, Petey. Two young drunken cowboys rape and murder Morgan's wife while she is returning with their son from a visit to her father. The boy escapes on one of the killers' horses, bearing a distinctive, fancy saddle. Morgan sets off to find the killer. His one clue is the saddle, which he recognizes as belonging to Belden. Assuming it was stolen from his old friend, Morgan travels to the town of Gun Hill to pick up the trail, but once there he quickly realizes that Belden's"} +{"qid": "test640", "pid": "11128523", "query": "who played in last train from gun hill", "answer": "Earl Holliman", "passage": "\"Last Train from Gun Hill\"\nson Rick (Earl Holliman) is the killer. Belden refuses to turn over his son, forcing Morgan to go against the entire town. He vows to capture Rick and get him on that night's last train from Gun Hill. Morgan takes Rick prisoner, holding him at the hotel. Belden sends men to rescue his son, but Morgan manages to hold them off. In the meantime, Belden's former lover (Carolyn Jones) decides to help Morgan. She sneaks a shotgun to his hotel room. The second rapist, Lee, sets fire to the hotel to flush out Morgan. Morgan presses the shotgun to Rick's"} +{"qid": "test640", "pid": "4915551", "query": "who played in last train from gun hill", "answer": "Earl Holliman", "passage": "\"Earl Holliman\"\na Thousand Times\"\" (1955), a remake of \"\"High Sierra\"\". In his award-winning performance opposite Katharine Hepburn and Burt Lancaster in \"\"The Rainmaker\"\", he played a rancher's timid son who finally must defy his father to gain self-respect. He was the soft-spoken son-in-law of a rancher (Rock Hudson) in the epic western saga \"\"Giant\"\". Holliman would play many roles set in the American west. He was Wyatt Earp's deputy in \"\"Gunfight at the O.K. Corral\"\", co-starring Lancaster and Douglas, and a sniveling coward guilty of murdering and raping the wife of a lawman (Kirk Douglas) in \"\"Last Train from Gun Hill\"\"."} +{"qid": "test640", "pid": "19548609", "query": "who played in last train from gun hill", "answer": "Ziva Rodann", "passage": "\"Ziva Rodann\"\nAmerican wife in the Hal B. Wallis production \"\"Last Train from Gun Hill\"\" (1958). She portrayed Naomi's daughter-in-law Orpah in the 20th Century Fox biblical epic \"\"The Story of Ruth\"\" (1960), which stars another Israeli actress, Elana Eden. In 1961, she was a guest star on the western television series \"\"Bonanza\"\", playing Maria Reagan in \"\"The Fugitive\"\"; \"\"Tales of Wells Fargo\"\", playing Leah Harper in \"\"Rifles for Red Hand\"\"; and \"\"The Rifleman\"\", playing Maria in \"\"The Vaqueros\"\". She played Nefertiti in two \"\"Batman\"\" episodes, \"\"The Curse of Tut\"\" (1966) and \"\"The Pharaoh's in a Rut\"\" (1966). She has appeared in"} +{"qid": "test640", "pid": "5122954", "query": "who played in last train from gun hill", "answer": "Brad Dexter", "passage": "\"Brad Dexter\"\n\"\"The Oklahoman\"\" (1957), produced by Walter Mirisch and could be seen in \"\"Run Silent Run Deep\"\" (1958), again as a villain. He largely focused on television though, appearing in episodes of \"\"Climax!\"\", \"\"The Gale Storm Show\"\", \"\"How to Marry a Millionaire\"\", \"\"Pursuit\"\", \"\"Studio One in Hollywood\"\", \"\"Wagon Train\"\", \"\"Have Gun - Will Travel\"\", \"\"Zane Grey Theatre\"\", \"\"Behind Closed Doors\"\", \"\"Cimarron City\"\", \"\"Yancy Derringer\"\", \"\"This Man Dawson\"\", \"\"77 Sunset Strip\"\", \"\"Colt 45\"\", \"\"The Man from Blackhawk\"\", \"\"Tightrope\"\", \"\"Mr. Lucky\"\", \"\"Bat Masterton\"\", and \"\"Wanted: Dead or Alive\"\". He made the occasional feature film, such as \"\"Last Train from Gun Hill\"\" (1959), directed"} +{"qid": "test640", "pid": "2969320", "query": "who played in last train from gun hill", "answer": "Kirk Douglas", "passage": "\"Carolyn Jones\"\nopposite Frank Sinatra in Frank Capra's \"\"A Hole in the Head\"\", Dean Martin in \"\"Career\"\", and Anthony Quinn and Kirk Douglas in \"\"Last Train from Gun Hill\"\". In 1960, she guest-starred with James Best and Jack Mullaney in the episode \"\"Love on Credit\"\" of CBS's anthology series \"\"The DuPont Show with June Allyson\"\", a Four Star Television production. In the 1962–1963 season, Jones guest-starred on CBS's \"\"The Lloyd Bridges Show\"\", which Spelling created. While married to Spelling, she appeared on the NBC program \"\"Here's Hollywood\"\". In the epic Western, \"\"How The West Was Won\"\" (1963), she played the role of"} +{"qid": "test640", "pid": "4915550", "query": "who played in last train from gun hill", "answer": "Earl Holliman", "passage": "\"Earl Holliman\"\n(1956), \"\"Giant\"\" (1956), \"\"The Rainmaker\"\" (1956), being cast instead of Elvis Presley for the role of Jim Curry and went on to win the Golden Globe Award for Best Supporting Actor – Motion Picture, \"\"Gunfight at the O.K. Corral\"\" (1957), \"\"Last Train from Gun Hill\"\" (1959), \"\"Visit to a Small Planet\"\" (1960), \"\"The Sons of Katie Elder\"\" (1965), \"\"Anzio\"\" (1968) and \"\"Sharky's Machine\"\" (1981). Holliman played a doomed helicopter crewman in the William Holden war drama \"\"The Bridges at Toko-Ri\"\" and a gangster's double-crossed thug in \"\"The Big Combo\"\". He co-starred with Jack Palance in the crime drama \"\"I Died"} +{"qid": "test642", "pid": "2005416", "query": "who invented the first computer game in 1962 and what was the name of the game", "answer": "Spacewar!", "passage": "\"Computer Space\"\nComputer Space Computer Space is a space combat arcade game developed in 1971 as one of the last games created in the early history of video games. Created by Nolan Bushnell and Ted Dabney in partnership as Syzygy Engineering, it was the first arcade video game as well as the first commercially available video game. \"\"Computer Space\"\" is a derivative of the 1962 computer game \"\"Spacewar!\"\", possibly the first video game to spread to multiple computer installations. It features a rocket, controlled by the player, engaged in a missile battle with a pair of flying saucers set against a background"} +{"qid": "test642", "pid": "3543155", "query": "who invented the first computer game in 1962 and what was the name of the game", "answer": "Spacewar!", "passage": "\"Star Trek (1971 video game)\"\nhigh school for a SDS Sigma 7 mainframe computer with the goal of creating a game like \"\"Spacewar!\"\" (1962) that could be played with a teleprinter instead of a graphical display. He then rewrote it for the HP 2000C minicomputer in 1972, and it was included in Hewlett-Packard's public domain software catalog the following year. It was picked up from there by David H. Ahl, who ported it with Mary Cole to BASIC-PLUS and published the source code first in his Digital Equipment Computer Users' Society newsletter and then along with other early mainframe games and computer games in his"} +{"qid": "test642", "pid": "11705256", "query": "who invented the first computer game in 1962 and what was the name of the game", "answer": "Spacewar!", "passage": "\"History of online games\"\nHistory of online games Online games are video games played over a computer network. The evolution of these games parallels the evolution of computers and computer networking, with new technologies improving the essential functionality needed for playing video games on a remote server. Many video games have an online component, allowing players to play against or cooperatively with players across a network around the world. The first video and computer games, such as NIMROD (1951), OXO (1952), and Spacewar! (1962), were for one or two players sitting at a single computer which was being used only to play the game."} +{"qid": "test643", "pid": "3639530", "query": "largest state in the us by land mass", "answer": "Alaska", "passage": "\"Kodiak Archipelago\"\nKodiak Archipelago The Kodiak Archipelago is an archipelago, or group of islands, south of the main land mass of the state of Alaska (United States), about by air south of Anchorage in the Gulf of Alaska. The largest island in the archipelago is Kodiak Island, the second largest island in the United States. The archipelago is about long and across, from the Barren Islands on the north to Chirikof Island and the Semidi Islands group on the south. The Archipelago contains of land. The Kodiak Archipelago contains about 40 small glaciers, numerous streams and many species of land and marine"} +{"qid": "test643", "pid": "3639532", "query": "largest state in the us by land mass", "answer": "Alaska", "passage": "\"Kodiak Archipelago\"\nsignificance of each. Kodiak Archipelago The Kodiak Archipelago is an archipelago, or group of islands, south of the main land mass of the state of Alaska (United States), about by air south of Anchorage in the Gulf of Alaska. The largest island in the archipelago is Kodiak Island, the second largest island in the United States. The archipelago is about long and across, from the Barren Islands on the north to Chirikof Island and the Semidi Islands group on the south. The Archipelago contains of land. The Kodiak Archipelago contains about 40 small glaciers, numerous streams and many species of"} +{"qid": "test644", "pid": "4648994", "query": "who sings somebody's watching me with michael jackson", "answer": "Jermaine Jackson", "passage": "\"Somebody's Watching Me\"\nSomebody's Watching Me \"\"Somebody's Watching Me\"\" is a song recorded by American singer Rockwell, released by the Motown label on January 14, 1984, as the lead single from his debut studio album of the same name. Rockwell's debut single release, the song features guest vocals by brothers Michael Jackson (in the chorus) and Jermaine Jackson (additional backing vocals). \"\"Somebody's Watching Me\"\" became a major commercial success internationally, topping the charts in Belgium, France and Spain. The song reached No. 6 in the United Kingdom, Rockwell's only Top 40 hit there. The song reached the Top 5 in Canada, Germany, the"} +{"qid": "test644", "pid": "4465929", "query": "who sings somebody's watching me with michael jackson", "answer": "Jermaine Jackson", "passage": "\"Rockwell (musician)\"\n1984, Rockwell released his biggest hit single, \"\"Somebody's Watching Me\"\", featuring childhood friend Michael Jackson on guest vocals (notably in the chorus lyrics), and Jermaine Jackson singing back-up. \"\"Somebody's Watching Me\"\" became a Gold-certified million selling #2 smash hit in the US, which also peaked at #6 in the UK. Additionally, it held #1 on Billboard's R&B chart for five weeks. Follow-up singles underperformed, however, with single \"\"Obscene Phone Caller\"\" being Rockwell's only other Top 40 single. This follow-up single reached #35 on the Billboard Hot 100. Rockwell soon ended his musical career with Motown. Rockwell was not the first"} +{"qid": "test644", "pid": "13343660", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Somebody's Watching Me (album)\"\namong the Gordy offspring. AllMusic's Rick A. Bueche called the record \"\"an impressive debut set with an emphasis on rock instrumentals.\"\" An uptempo version of \"\"Knife\"\" was released by another Motown artist, Monalisa Young. She also appears on this album as a background vocalist. Somebody's Watching Me (album) Somebody's Watching Me is singer/songwriter Rockwell's debut album, released in 1984 on Motown. It featured the song, \"\"Somebody's Watching Me\"\" (with Michael Jackson on vocals in the chorus), as well as the top 40 hit \"\"Obscene Phone Caller\"\". After being kicked out of the house by his father, Motown founder Berry Gordy,"} +{"qid": "test644", "pid": "13343657", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Somebody's Watching Me (album)\"\nSomebody's Watching Me (album) Somebody's Watching Me is singer/songwriter Rockwell's debut album, released in 1984 on Motown. It featured the song, \"\"Somebody's Watching Me\"\" (with Michael Jackson on vocals in the chorus), as well as the top 40 hit \"\"Obscene Phone Caller\"\". After being kicked out of the house by his father, Motown founder Berry Gordy, Kennedy Gordy moved in with Ray Singleton, Gordy's ex-wife. While living there, the younger Gordy began working on some music. Seeing the youngster's potential, Singleton successfully lobbied to get Kennedy a staff writing job at Jobete. One night, Singleton overheard Kennedy working on the"} +{"qid": "test644", "pid": "4648996", "query": "who sings somebody's watching me with michael jackson", "answer": "Jermaine Jackson", "passage": "\"Somebody's Watching Me\"\nRockwell's music until he heard the single with a familiar voice featuring prominently on background vocals. \"\"Somebody's Watching Me\"\" was written in the key of C-sharp minor in time with a tempo of 124 beats per minute. The vocals span from C# to C#. Produced by Curtis Anthony Nolen, the song featured backing vocals by Michael and Jermaine Jackson, with Alan Murray on percussion. The music video to \"\"Somebody's Watching Me\"\" (which uses the radio edit instead of the album version) underscores the song's paranoid tone with a haunted house-inspired theme, including imagery of floating heads, ravens, graveyards, and shower"} +{"qid": "test644", "pid": "15213902", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Captured (Rockwell album)\"\n\"\"The Last Dragon\"\", but it too was a disappointment. Captured (Rockwell album) Captured is singer/songwriter Rockwell's 1985 follow-up to his gold album, \"\"Somebody's Watching Me\"\". Despite featuring one single featuring Stevie Wonder and another appearing on the soundtrack of \"\"The Last Dragon\"\", it was a commercial and critical disappointment. As Rockwell had done on his previous album, he soliticed the help of another prominent recording artist to sing with him on the first single. Instead of Michael Jackson, however, this time he got Stevie Wonder to record the song \"\"He's a Cobra\"\" with him. The song was a flop. The"} +{"qid": "test644", "pid": "15213901", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Captured (Rockwell album)\"\nCaptured (Rockwell album) Captured is singer/songwriter Rockwell's 1985 follow-up to his gold album, \"\"Somebody's Watching Me\"\". Despite featuring one single featuring Stevie Wonder and another appearing on the soundtrack of \"\"The Last Dragon\"\", it was a commercial and critical disappointment. As Rockwell had done on his previous album, he soliticed the help of another prominent recording artist to sing with him on the first single. Instead of Michael Jackson, however, this time he got Stevie Wonder to record the song \"\"He's a Cobra\"\" with him. The song was a flop. The next single, \"\"Peeping Tom\"\" appeared on the soundtrack to"} +{"qid": "test644", "pid": "2251922", "query": "who sings somebody's watching me with michael jackson", "answer": "Jermaine Jackson", "passage": "\"Jermaine Jackson\"\nFancy\"\" (featuring Devo on backing vocals) (#18), \"\"Let's Get Serious\"\" (#9, also one of his only two UK hits, peaking at #8), \"\"Dynamite\"\" (#15), \"\"Do What You Do\"\" (#13), and \"\"I Think It's Love\"\" (#16). A duet with his brother Michael, \"\"Tell Me I'm Not Dreamin' (Too Good to Be True)\"\", hit number one on the dance chart in 1984. Michael and he also collaborated with Rockwell, both providing guest vocals on his 1984 hit single, \"\"Somebody's Watching Me\"\". In 1985, his duet with Pia Zadora, \"\"When the Rain Begins to Fall\"\", topped several singles charts in Europe. His final"} +{"qid": "test644", "pid": "13343659", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Somebody's Watching Me (album)\"\nGordy, who thought one of the voices sounded familiar, but couldn't identify it. When Gordy found out it was Michael Jackson, he was elated. Not wanting the Gordy name to influence the outcome of the song (his half-brother Kerry Gordy, recorded under his own name five years earlier without success), Kennedy decided to use the name Rockwell on the record. The title cut was one of the biggest singles of 1984 and both the album and single were certified Gold. It was easily the most successful record by a Gordy as a recording artist. Rockwell now gained an exalted position"} +{"qid": "test644", "pid": "12681960", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Gordy family\"\nMayberry, was a member of the band Apollo, which released an album on Gordy Records in 1979. Later, he worked as a staff writer and producer at Motown under his given name, Kerry Ashby. He continues to work as an entertainment industry executive today. Son of Berry Gordy Jr. and former girlfriend Margaret Norton, Kennedy William Gordy changed his name to Rockwell in 1983 to become a rock star. The singer, who earned his deal with Motown without his father's knowledge, recorded his biggest hit, 1984's \"\"Somebody's Watching Me\"\", which included background vocals by Michael Jackson. The song rose to"} +{"qid": "test644", "pid": "12990033", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"GEICO advertising campaigns\"\nover by narrator David O'Brien. Starting in 2008, GEICO has aired a series of TV ads featuring two paper-banded stacks of U.S. bills with a pair of big, googly eyes on top. Kash, who never says anything, just sits and stares at people (in a manner intended to be unsettling), set to a remix of a Rockwell/Michael Jackson song, \"\"Somebody's Watching Me\"\" by Mysto & Pizzi. Toward the end of 2009 until mid 2012, GEICO introduced another advertising campaign in which Mike McGlone walks into an empty room and queries the viewer, \"\"Could switching to GEICO really save you 15%"} +{"qid": "test644", "pid": "19672794", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Mysto and Pizzi\"\nMysto and Pizzi Yaroslav Vynnytsky and Marc Joseph, also known as Mysto & Pizzi, are two electronic music producers from Queens, NY. They are notable for their remix of the Rockwell/Michael Jackson song \"\"Somebody's Watching Me\"\" which was used as the theme for GEICO's \"\"Kash\"\" campaign. They also established a name for themselves through their YouTube channel which has over 48 million views. The duo have produced records for Kelly Rowland and R. Kelly as well as official remixes for acts such as Justin Timberlake, Tiësto, Kaskade, Avicii, Steve Aoki, EDX, and Adrian Lux. Yaroslav Vynnytsky and Marc Joseph started"} +{"qid": "test644", "pid": "19672795", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Mysto and Pizzi\"\nworking together in 2006 sharing a common interest in music production. Soon after, they started a YouTube channel showcasing their in-studio performances and documenting their life in the music industry. Their first production placement was on R. Kelly's \"\"Double Up\"\" Album titled \"\"Get Dirty\"\" featuring Chamillionaire. The album debuted at no.1 on the Billboard 200 earning the team their first platinum plaque. They followed up with their second production placement on Kelly Rowland's \"\"Ms. Kelly\"\" album with a track titled \"\"Love\"\". In 2009, Mysto and Pizzi produced a remix of the Rockwell/Michael Jackson song \"\"Somebody's Watching Me\"\" which was used"} +{"qid": "test644", "pid": "12091648", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Tru 2 da Game\"\nX & Mo B. Dick FEDz featuring Mia X \"\"I Always Feel Like...\"\" samples \"\"Somebody's Watching Me\"\" by Rockwell featuring Michael Jackson \"\"I Got Candy\"\" samples \"\"Candy\"\" by Cameo \"\"FEDz\"\" samples \"\"If Your Girl Only Knew\"\" by Aaliyah \"\"Smoking Green\"\" samples \"\"Summer Breeze\"\" by Seals & Croft \"\"TRU 2 Da Game\"\" samples \"\"Why Have I Lost You?\"\" by Cameo \"\"Pop Goes My 9\"\" samples \"\"(Pop, Pop, Pop, Pop) Goes My Mind\"\" by LeVert Tru 2 da Game Tru 2 da Game is the fourth studio album released by New Orleans hip-hop group, TRU. It was released February 18, 1997 on"} +{"qid": "test644", "pid": "4649000", "query": "who sings somebody's watching me with michael jackson", "answer": "Rockwell", "passage": "\"Somebody's Watching Me\"\non the Swiss Hitparade, reaching No. 4. The mix was made on the 20th anniversary of the initial hit by DJ BoBo in November 1992. In 2006, Dutch dance group Beatfreakz recorded a pseudo-cover of the song which sampled the chorus but omitted the verses. This version was a Top 10 hit in Belgium, Finland, Ireland, New Zealand and the United Kingdom. Somebody's Watching Me \"\"Somebody's Watching Me\"\" is a song recorded by American singer Rockwell, released by the Motown label on January 14, 1984, as the lead single from his debut studio album of the same name. Rockwell's debut"} +{"qid": "test645", "pid": "3140056", "query": "who played the mom on what's eating gilbert grape", "answer": "Darlene Cates", "passage": "\"What's Eating Gilbert Grape\"\nWhat's Eating Gilbert Grape What's Eating Gilbert Grape is a 1993 American drama film directed by Lasse Hallström and starring Johnny Depp, Juliette Lewis, Darlene Cates, and Leonardo DiCaprio. The film follows 24-year-old Gilbert (Depp), a grocery store clerk caring for his morbidly obese mother (Cates) and his mentally impaired younger brother (DiCaprio) in a sleepy Midwestern town. Peter Hedges wrote the screenplay, adapted from his 1991 novel of the same name. The film was well-received; DiCaprio received his first Academy Award nomination for his role. In the small town of Endora, Iowa, Gilbert Grape (Johnny Depp) is busy caring"} +{"qid": "test645", "pid": "3140066", "query": "who played the mom on what's eating gilbert grape", "answer": "Darlene Cates", "passage": "\"What's Eating Gilbert Grape\"\nit \"\"a performance of astonishing innocence and spontaneity\"\", bringing \"\"a touching credibility to a very difficult part\"\". The film was nominated for the prestigious Grand Prix of the Belgian Syndicate of Cinema Critics. What's Eating Gilbert Grape What's Eating Gilbert Grape is a 1993 American drama film directed by Lasse Hallström and starring Johnny Depp, Juliette Lewis, Darlene Cates, and Leonardo DiCaprio. The film follows 24-year-old Gilbert (Depp), a grocery store clerk caring for his morbidly obese mother (Cates) and his mentally impaired younger brother (DiCaprio) in a sleepy Midwestern town. Peter Hedges wrote the screenplay, adapted from his 1991"} +{"qid": "test645", "pid": "9330252", "query": "who played the mom on what's eating gilbert grape", "answer": "Darlene Cates", "passage": "\"Darlene Cates\"\ngained an additional 149 pounds. Hedges offered her the role of a morbidly obese mother in the 1993 film \"\"What's Eating Gilbert Grape\"\", which she accepted. Television roles followed on the shows \"\"Picket Fences\"\" in 1994 and \"\"Touched by an Angel\"\" in 1996. She had a small role in the 2001 film \"\"Wolf Girl\"\". Producer J. Miles Dale flew a small crew and the film's stars from Romania to Texas to shoot their scenes with Cates. Her performance in \"\"What's Eating Gilbert Grape\"\", her first attempt at acting in any form, received critical acclaim and was lauded by her costars"} +{"qid": "test645", "pid": "3140057", "query": "who played the mom on what's eating gilbert grape", "answer": "Darlene Cates", "passage": "\"What's Eating Gilbert Grape\"\nfor Arnie (Leonardo DiCaprio), his mentally challenged brother, as they wait for the many tourists' trailers to pass through town during an annual Airstreamer's Club gathering at a nearby recreational area. His father had hanged himself seven years earlier, and since then his mother, Bonnie (Darlene Cates), has spent most of her days on the couch watching TV and eating. With Bonnie unable to care for her children on her own due to her morbid obesity, Gilbert has taken responsibility for repairing the old house and looking after Arnie, who has a habit of climbing the town water tower, while"} +{"qid": "test645", "pid": "5501965", "query": "who played the mom on what's eating gilbert grape", "answer": "Darlene Cates", "passage": "\"Sweets and Sour Marge\"\n\"\"If it had still been in existence, we wouldn't have done it\"\", Jean said in the DVD commentary for the episode. Cletus' cousin Dia-Betty is loosely based on Darlene Cates' character Bonnie Grape in the 1993 film \"\"What's Eating Gilbert Grape\"\". During the boat chase when Wiggum pursues Homer for the sugar cargo (narrowly avoiding two boats transporting a huge glass pane and a mother and child riding a combined jet ski-stroller), the Miami Vice Theme is played. Before he agrees to hand the sugar cargo to Motherloving, Homer demands that he gets to see an Oompa Loompa, a character"} +{"qid": "test645", "pid": "9330251", "query": "who played the mom on what's eating gilbert grape", "answer": "Darlene Cates", "passage": "\"Darlene Cates\"\nDarlene Cates Darlene Cates (born Rita Darlene Guthrie; December 13, 1947 – March 26, 2017) was an American actress. She was best known for her role in the 1993 film \"\"What's Eating Gilbert Grape\"\", in which she played the title character's housebound mother. Author and screenwriter Peter Hedges saw a tape of Cates on a 1992 episode of \"\"Sally\"\" entitled \"\"Too Heavy to Leave Their House\"\". On the show, she discussed her battle with obesity and how it had affected her life. In 1986, pelvic infections caused by her excess weight kept her bedridden for two years, during which she"} +{"qid": "test646", "pid": "18678558", "query": "when does the second part of vikings season 4 start", "answer": "November 30, 2016", "passage": "\"Vikings (season 4)\"\nVikings (season 4) The fourth season of the historical drama television series \"\"Vikings\"\" premiered on February 18, 2016 on History in Canada. The series broadly follows the exploits of the legendary Viking chieftain Ragnar Lothbrok and his crew, and later those of his sons. The first season of the series begins at the start of the Viking Age, marked by the Lindisfarne raid in 793. The fourth season consists of a double order of twenty episodes, split into two parts of ten episodes; the second half premiered on November 30, 2016. The season follows the battles between Ragnar and Rollo"} +{"qid": "test648", "pid": "14552434", "query": "who gets the golden boot if its a tie", "answer": "shared", "passage": "\"Premier League Golden Boot\"\ngoals scored to be bestowed the award, however, is 18 goals; this was achieved during the 1997–98 and 1998–99 seasons, when the award was shared between three players both times. The latter season marked the last time the Golden Boot was shared until 2010–11, when Dimitar Berbatov and Carlos Tevez both scored 20 goals that season to tie for the award. Harry Kane recorded the highest goals-to-games ratio to win the award, scoring 29 goals in 30 games in 2016–17 for a rate of 0.97. General Specific Premier League Golden Boot The Premier League Golden Boot is an annual association"} +{"qid": "test65", "pid": "17779932", "query": "where are the winter olympics and when do they start", "answer": "9 February", "passage": "\"Bobsleigh at the 2014 Winter Olympics – Two-woman\"\nBobsleigh at the 2014 Winter Olympics – Two-woman The two-woman bobsleigh competition at the 2014 Winter Olympics in Sochi, Russia was held at the Sliding Center Sanki near Krasnaya Polyana, Russia on 18–19 February. Kaillie Humphries and Heather Moyse of Canada repeated as Olympic Champions, becoming the first duo to do so. While the IOC does not consider bobsled times eligible for Olympic records, the FIBT does maintain records for both the start and a complete run at each track at which it competes. Top finish in each run is in boldface. TR – track record. On 24 November 2017,"} +{"qid": "test650", "pid": "4691243", "query": "who are the dallas cowboys playing on thanksgiving", "answer": "the Detroit Lions", "passage": "\"Bart vs. Thanksgiving\"\nwas turned into a balloon for the Macy's Thanksgiving Day Parade. While watching the Thanksgiving football game, Homer says he is cheering for the Dallas Cowboys. Two of the fictional Dallas Cowboys players are named Jay Kogen and Wallace Wolodarsky after two writers on \"\"The Simpsons\"\". The song that plays on the radio during the break in the Thanksgiving football game is \"\"Get Dancing\"\" by Disco-Tex and the Sex-O-Lettes. The game is played at the Pontiac Silverdome, then home to the Detroit Lions, who also play on Thanksgiving. Lisa says the following about her centerpiece: \"\"It's a tribute to the"} +{"qid": "test650", "pid": "19127730", "query": "who are the dallas cowboys playing on thanksgiving", "answer": "the Detroit Lions", "passage": "\"2016 Dallas Cowboys season\"\ntime. Thanksgiving Day game In the traditional Thanksgiving game, the Cowboys hosted the Washington Redskins, who had just came off a victory against the Green Bay Packers. In a game of catch-up, the Redskins never led; however, they made a valiant effort in the fourth quarter to take the lead. The Cowboys held them off and won the game, thus extending their winning streak to ten games for the first time in franchise history. The Cowboys traveled to Minnesota to take on the struggling Vikings following their loss against the Detroit Lions on Thanksgiving. In a rather tightly contested game"} +{"qid": "test650", "pid": "9131673", "query": "who are the dallas cowboys playing on thanksgiving", "answer": "the Detroit Lions", "passage": "\"NFL on Thanksgiving Day\"\nNFL on Thanksgiving Day Since its inception in 1920, the National Football League has played games on Thanksgiving Day, patterned upon the historic playing of college football games on and around the Thanksgiving holiday. Since 1978, the NFL's Thanksgiving Day games have traditionally included one game hosted by the Detroit Lions, and one game hosted by the Dallas Cowboys. Since 2006, with the advent of the NFL's then-new \"\"Thursday Night Football\"\" package, a third primetime game has also been played on Thanksgiving. Unlike the traditional afternoon games, this game has no fixed host and has featured different teams annually. The"} +{"qid": "test650", "pid": "12098088", "query": "who are the dallas cowboys playing on thanksgiving", "answer": "the Detroit Lions", "passage": "\"1966 Dallas Cowboys season\"\n1966 Dallas Cowboys season The 1966 Dallas Cowboys season was the seventh for the franchise in the National Football League. The Cowboys finished the regular season at 10–3–1, their first winning record as a franchise and first Eastern Conference title. They hosted the NFL Championship Game at the Cotton Bowl, but lost to the defending champion Green Bay Packers, who went on to win the first Super Bowl two weeks later. With the growth in popularity of televised NFL games, the league began looking for a second team in addition to the Detroit Lions, to host an annual Thanksgiving Day"} +{"qid": "test651", "pid": "5214463", "query": "who sang i put a spell on you in hocus pocus", "answer": "Bette Midler", "passage": "\"Hocus Pocus (1993 film)\"\nIntervention Tour, Bette Midler appeared on stage dressed as Winifred Sanderson. Her Harlettes appeared with her dressed as Mary and Sarah, and the three of them performed the film's version of \"\"I Put a Spell on You\"\". On September 15, 2015, the \"\"Hocus Pocus Villain Spelltacular\"\" was introduced at the Magic Kingdom as a part of Mickey's Not-So-Scary Halloween Party. The show introduces new actresses as the Sanderson Sisters, who try to make a villain party and summon or attract various Disney villains in the process. In September 2016, entertainment critic Aaron Wallace published \"\"Hocus Pocus in Focus: The Thinking"} +{"qid": "test651", "pid": "5214470", "query": "who sang i put a spell on you in hocus pocus", "answer": "Bette Midler", "passage": "\"Hocus Pocus (1993 film)\"\nthe movie, in an attempt to prove there's nothing to the story. Hocus Pocus (1993 film) Hocus Pocus is a 1993 American comedy horror fantasy film directed by Kenny Ortega, starring Bette Midler, Kathy Najimy, and Sarah Jessica Parker; written by Neil Cuthbert and Mick Garris, and based on a story by Garris and David Kirschner. It follows a villainous trio of witches, who are inadvertently resurrected by a teenage boy in Salem, Massachusetts. Although it was not a critical or commercial success when it was first released, \"\"Hocus Pocus\"\" has become a cult film, largely from annual airings on"} +{"qid": "test651", "pid": "5214444", "query": "who sang i put a spell on you in hocus pocus", "answer": "Bette Midler", "passage": "\"Hocus Pocus (1993 film)\"\nHocus Pocus (1993 film) Hocus Pocus is a 1993 American comedy horror fantasy film directed by Kenny Ortega, starring Bette Midler, Kathy Najimy, and Sarah Jessica Parker; written by Neil Cuthbert and Mick Garris, and based on a story by Garris and David Kirschner. It follows a villainous trio of witches, who are inadvertently resurrected by a teenage boy in Salem, Massachusetts. Although it was not a critical or commercial success when it was first released, \"\"Hocus Pocus\"\" has become a cult film, largely from annual airings on the Disney Channel and Freeform (formerly ABC Family). On October 31, 1693"} +{"qid": "test652", "pid": "200680", "query": "what are the roles of international monetary fund", "answer": "foster global monetary cooperation", "passage": "\"International Monetary Fund\"\nInternational Monetary Fund The International Monetary Fund (IMF) is an international organization headquartered in Washington, D.C., consisting of \"\"189 countries working to foster global monetary cooperation, secure financial stability, facilitate international trade, promote high employment and sustainable economic growth, and reduce poverty around the world.\"\" Formed in 1944 at the Bretton Woods Conference primarily by the ideas of Harry Dexter White and John Maynard Keynes, it came into formal existence in 1945 with 29 member countries and the goal of reconstructing the international payment system. It now plays a central role in the management of balance of payments difficulties and"} +{"qid": "test653", "pid": "630854", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars (film)\"\n20th Century Fox. Moreover, Mark Hamill's car accident left his face visibly scarred, which restricted re-shoots. \"\"Star Wars\"\" was originally slated for release on Christmas 1976; however, its production delays pushed the film's release to summer 1977. Already anxious about meeting his deadline, Lucas was shocked when editor John Jympson's first cut of the film was a \"\"complete disaster\"\". According to an article in \"\"Star Wars Insider\"\" No. 41 by David West Reynolds, this first edit of \"\"Star Wars\"\" contained about 30–40% different footage from the final version. After attempting to persuade Jympson to cut the film his way, Lucas"} +{"qid": "test653", "pid": "3786743", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Changes in Star Wars re-releases\"\nof the theatrical version. Lucasfilm offered the altered 1997 Special Edition release, but the Registry refused it as the first published version must be accepted. The Library of Congress, however, received a 35mm print of the film, without the \"\"A New Hope\"\" subtitle and subsequent alterations, in 1978 as part of the film's copyright deposit. The first film was released in 1977 under the title \"\"Star Wars\"\". The subtitles \"\"Episode IV\"\" and \"\"A New Hope\"\" were retroactively added to the opening crawl in a subsequent release. Accounts differ as to when this change occurred. Some, including Lucasfilm, date the addition"} +{"qid": "test653", "pid": "6391376", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars opening crawl\"\nno other \"\"Star Wars\"\" movies prior to 1977. In addition, it was not certain if the film would be followed with a sequel. When \"\"The Empire Strikes Back\"\" was released in 1980, the episode number, \"\"Episode V\"\", and subtitle \"\"THE EMPIRE STRIKES BACK\"\" appeared as the first two lines of the opening crawl. To match its sequel's crawl, the episode number \"\"Episode IV\"\" and subtitle \"\"A NEW HOPE\"\" were added for the film's theatrical re-release in April 1981. The original version, without the subtitle, was not released again until the 2006 limited edition DVDs. Star Wars opening crawl The opening"} +{"qid": "test653", "pid": "6391375", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars opening crawl\"\nand immediately after \"\"A long time ago, in a galaxy far, far away...\"\". This places it halfway between \"\"Rogue One\"\" and the main saga. The opening crawl in the first \"\"Star Wars\"\" film is very different from Lucas' original intention. The original text, used in the rough cut he showed to friends and studio executives in February 1977, appears in the Marvel Comics adaptation of the film. When originally released in May 1977, the first film was simply titled \"\"Star Wars\"\", as 20th Century Fox forbade Lucas to use a subtitle because it could be confusing, since there had been"} +{"qid": "test653", "pid": "8147880", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Warped\"\nsaid that when the \"\"modest\"\" cost of the game was not worth the \"\"cheap concoction\"\". Star Warped Star Warped is a first-person parody point-and-click adventure video game that parodies the science fiction \"\"Star Wars\"\" universe, specifically the original trilogy of films released from 1977–1983: \"\"Star Wars\"\", \"\"The Empire Strikes Back\"\", and \"\"Return of the Jedi\"\". It was created by Parroty Interactive, which was a division the game's publisher, Palladium Interactive. \"\"Star Warped\"\" was released in both the United States and Canada in late 1997 as their follow-up from their debut video game; a \"\"Myst\"\" parody named \"\"Pyst\"\". The Star Wars"} +{"qid": "test653", "pid": "630801", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars (film)\"\nStar Wars (film) Star Wars (later retitled Star Wars: Episode IV – A New Hope) is a 1977 American epic space opera film written and directed by George Lucas. It is the first film in the original \"\"Star Wars\"\" trilogy and the beginning of the \"\"Star Wars\"\" franchise. Starring Mark Hamill, Harrison Ford, Carrie Fisher, Peter Cushing, Alec Guinness, David Prowse, James Earl Jones, Anthony Daniels, Kenny Baker, and Peter Mayhew, the film focuses on the Rebel Alliance, led by Princess Leia (Fisher), and its attempt to destroy the Galactic Empire's space station, the Death Star. \"\"Star Wars\"\" was released"} +{"qid": "test653", "pid": "630935", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars (film)\"\nadapted by E. Jack Kaplan and Cheryl Gard. An audio CD boxed set of the \"\"Star Wars\"\" radio series was released in 1993, containing the original 1981 radio drama along with the radio adaptations of the sequels, \"\"The Empire Strikes Back\"\" and \"\"Return of the Jedi\"\". Footnotes Citations Star Wars (film) Star Wars (later retitled Star Wars: Episode IV – A New Hope) is a 1977 American epic space opera film written and directed by George Lucas. It is the first film in the original \"\"Star Wars\"\" trilogy and the beginning of the \"\"Star Wars\"\" franchise. Starring Mark Hamill, Harrison"} +{"qid": "test653", "pid": "630802", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars (film)\"\nin theatres in the United States on May 25, 1977. It earned $461 million in the U.S. and $314 million overseas, totaling $775 million. It surpassed \"\"Jaws\"\" (1975) to become the highest-grossing film of all time until the release of \"\"E.T. the Extra-Terrestrial\"\" (1982). When adjusted for inflation, \"\"Star Wars\"\" is the second-highest-grossing film in North America, and the third-highest-grossing film in the world. It received ten Academy Award nominations (including Best Picture), winning seven. It was among the first films to be selected as part of the U.S. Library of Congress's National Film Registry as being \"\"culturally, historically, or"} +{"qid": "test653", "pid": "19537450", "query": "when was the first star wars film released", "answer": "1977", "passage": "\"Star Wars: Tarkin\"\nThe Walt Disney Company, most of the licensed \"\"Star Wars\"\" novels and comics produced since the originating 1977 film \"\"Star Wars\"\" were rebranded as \"\"Star Wars Legends\"\" and declared non-canon to the franchise in April 2014. \"\"Tarkin\"\" was subsequently announced as one of the first four canon novels to be released in 2014 and 2015. Star Wars: Tarkin Star Wars: Tarkin is a \"\"Star Wars\"\" novel by James Luceno, published in November 2014. Set between the films \"\"\"\" and \"\"A New Hope\"\", it follows the rise of the character Grand Moff Tarkin. \"\"Tarkin\"\" was one of the first four novels"} +{"qid": "test654", "pid": "404982", "query": "who was the bad guy in silence of the lambs", "answer": "Buffalo Bill", "passage": "\"The Silence of the Lambs (film)\"\n2015, \"\"Entertainment Weekly\"\"'s 25th anniversary year, it included \"\"The Silence of the Lambs\"\" in its list of the 25 best movies made since the magazine's beginning. Upon its release, \"\"The Silence of the Lambs\"\" was criticized by members of the LGBT community for its portrayal of Buffalo Bill as bisexual and transsexual. In response to the critiques, Demme replied that Buffalo Bill \"\"wasn't a gay character. He was a tormented man who hated himself and wished he was a woman because that would have made him as far away from himself as he possibly could be.\"\" Demme added that he"} +{"qid": "test654", "pid": "404956", "query": "who was the bad guy in silence of the lambs", "answer": "Buffalo Bill", "passage": "\"The Silence of the Lambs (film)\"\nThe Silence of the Lambs (film) The Silence of the Lambs is a 1991 American psychological horror-thriller film directed by Jonathan Demme from a screenplay written by Ted Tally, adapted from Thomas Harris's 1988 novel of the same name. The film stars Jodie Foster, Anthony Hopkins, Scott Glenn, Ted Levine, and Anthony Heald. In the film, Clarice Starling, a young FBI trainee, seeks the advice of the imprisoned Dr. Hannibal Lecter, a brilliant psychiatrist and cannibalistic serial killer to apprehend another serial killer, known only as \"\"Buffalo Bill\"\", who skins his female victims' corpses. The novel was Harris's first and"} +{"qid": "test654", "pid": "404984", "query": "who was the bad guy in silence of the lambs", "answer": "Buffalo Bill", "passage": "\"The Silence of the Lambs (film)\"\nthe \"\"Playboy\"\" centerfold.\"\" The Silence of the Lambs (film) The Silence of the Lambs is a 1991 American psychological horror-thriller film directed by Jonathan Demme from a screenplay written by Ted Tally, adapted from Thomas Harris's 1988 novel of the same name. The film stars Jodie Foster, Anthony Hopkins, Scott Glenn, Ted Levine, and Anthony Heald. In the film, Clarice Starling, a young FBI trainee, seeks the advice of the imprisoned Dr. Hannibal Lecter, a brilliant psychiatrist and cannibalistic serial killer to apprehend another serial killer, known only as \"\"Buffalo Bill\"\", who skins his female victims' corpses. The novel was"} +{"qid": "test654", "pid": "2816315", "query": "who was the bad guy in silence of the lambs", "answer": "Buffalo Bill", "passage": "\"Chris Griffin\"\n\"\"The Silence of the Lambs\"\" in which Buffalo Bill dances nude in front of a mirror, resulting in Connie regaining her popularity, while Chris is socially demoted back to an outcast. In \"\"Once Bitten\"\", Chris gains an official friend in Neil Goldman, the resident nerd and Meg's self-proclaimed love interest. Although their friendship is initially a ploy for Neil to get closer to Meg, Neil eventually feels bad for using Chris and returns to him to resume their friendship. As a running gag, starting in the episode \"\"Dammit Janet!\"\", Chris is regularly tormented by the Evil Monkey, who lives in"} +{"qid": "test654", "pid": "1565289", "query": "who was the bad guy in silence of the lambs", "answer": "Buffalo Bill", "passage": "\"Family Guy\"\nof his artwork, and said it was \"\"really sight unseen\"\". At the time, Borstein was performing in a stage show in Los Angeles. She played a redheaded mother whose voice she had based on one of her cousins. Seth Green primarily voices Chris Griffin and Neil Goldman. Green stated that he did an impression of the character Buffalo Bill from the thriller film \"\"The Silence of the Lambs\"\" during his audition. Mila Kunis and Lacey Chabert have both voiced Meg Griffin. Chabert left the series because of time conflicts with schoolwork and her role on \"\"Party of Five\"\". When Kunis"} +{"qid": "test655", "pid": "4601990", "query": "epidemiologists attempt to explain the link between health and variables such as", "answer": "smoking", "passage": "\"Instrumental variables estimation\"\nestimate the causal effect of some variable \"\"X\"\" on another \"\"Y\"\", an instrument is a third variable \"\"Z\"\" which affects \"\"Y\"\" only through its effect on \"\"X\"\". For example, suppose a researcher wishes to estimate the causal effect of smoking on general health. Correlation between health and smoking does not imply that smoking causes poor health because other variables, such as depression, may affect both health and smoking, or because health may affect smoking. It is at best difficult and expensive to conduct controlled experiments on smoking status in the general population. The researcher may attempt to estimate the causal"} +{"qid": "test655", "pid": "20092333", "query": "epidemiologists attempt to explain the link between health and variables such as", "answer": "smoking", "passage": "\"Linda Koo\"\n24, 1995, the university rejected Koo and Ho's appeal. Linda Koo Linda Chih-ling Koo (born 1954 in Thailand), is a Chinese cancer epidemiologist and former lecturer at the University of Hong Kong. She is known for her studies on the relationship between indoor pollution, dietary factors, and lung cancer in China. These studies included some examining the link between passive smoking and lung cancer, and which found no association between the two. She has been criticized for her ties to the tobacco industry, which attempted to recruit her as a consultant because she had said she thought that lung cancer"} +{"qid": "test655", "pid": "20092330", "query": "epidemiologists attempt to explain the link between health and variables such as", "answer": "smoking", "passage": "\"Linda Koo\"\nLinda Koo Linda Chih-ling Koo (born 1954 in Thailand), is a Chinese cancer epidemiologist and former lecturer at the University of Hong Kong. She is known for her studies on the relationship between indoor pollution, dietary factors, and lung cancer in China. These studies included some examining the link between passive smoking and lung cancer, and which found no association between the two. She has been criticized for her ties to the tobacco industry, which attempted to recruit her as a consultant because she had said she thought that lung cancer was mainly caused by dietary factors. Her critics have"} +{"qid": "test655", "pid": "20241990", "query": "epidemiologists attempt to explain the link between health and variables such as", "answer": "smoking", "passage": "\"E. Cuyler Hammond\"\nE. Cuyler Hammond E. Cuyler Hammond (14 June 1912 – 3 November 1986) was an American biologist and epidemiologist who was one of the first researchers to establish a link between smoking and lung cancer. Hammond was a native of Baltimore, Maryland and educated at the Gilman Country Day School. He studied biology at Yale (B.S. 1935) and earned a D.Sc. in epidemiology from Johns Hopkins (1938). From 1938 to 1942 he worked as a statistician in the Division of Industrial Hygiene at the National Institutes of Health and in 1941 and 1942 as a consultant for medical research to"} +{"qid": "test655", "pid": "12139303", "query": "epidemiologists attempt to explain the link between health and variables such as", "answer": "stress", "passage": "\"Unnatural Causes: Is Inequality Making Us Sick?\"\nan unemployed mother, the program illustrates how stress increases and control over one’s life decreases as one moves down the socio-economic ladder, with very real consequences for health. The program includes interviews with the following experts: Nicholas Christakis (Medical Sociologist, Harvard University), Sheldon Cohen (Psychologist, Carnegie Mellon University), Ana Diez Roux (Epidemiologist, University of Michigan), Tony Iton (Director, Alameda County Public Health Dept.), Ichiro Kawachi (Epidemiologist, Harvard School of Public Health), Nancy Krieger (Social Epidemiologist, Harvard School of Public Health), Michael Marmot (Epidemiologist, University College London), Bruce McEwen (Neuroscientist, Rockefeller University), Carol Shively (Comparative Psychologist, Wake Forest University), Jack P."} +{"qid": "test655", "pid": "8333838", "query": "epidemiologists attempt to explain the link between health and variables such as", "answer": "smoking", "passage": "\"Cancer Wars\"\nCancer Wars Cancer Wars was a six-part documentary that aired on PBS in May 25, 1998. The first episode discussed the history of cancer research such as contributions of epidemiologists at the University of Jena which were the first to document the link between cancer and smoking. The documentary discusses how US government tobacco interests prevented this evidence from coming to surface since tobacco was such an important US export. Cancer Wars delved into the pioneering work of Rachel Carson, whose book \"\"Silent Spring\"\" radically changed the world's thinking about chemicals and their effects on human health and the environment."} +{"qid": "test656", "pid": "17895872", "query": "when was night at the museum 3 filmed", "answer": "2014", "passage": "\"Night at the Museum (film series)\"\nNight at the Museum (film series) Night at the Museum is a trilogy of fantasy-comedy films beginning in 2006 and ending in 2014. All three films, based on the children's book \"\"The Night at the Museum\"\" by Milan Trenc, are directed by Shawn Levy and written by Robert Ben Garant and Thomas Lennon. Starring Ben Stiller as a museum night security guard named Larry, the films also star an ensemble cast featuring Owen Wilson, Robin Williams, Ricky Gervais, Steve Coogan, Patrick Gallagher, Rami Malek, Mizuo Peck, Mickey Rooney, Bill Cobbs and Dick Van Dyke. When Larry Daley (Ben Stiller), a"} +{"qid": "test656", "pid": "17895875", "query": "when was night at the museum 3 filmed", "answer": "2014", "passage": "\"Night at the Museum (film series)\"\nannounced that a television series based on \"\"Night at the Museum\"\" is currently being developed. With the upcoming acquisition by Disney, it is increasingly likely that it will appear on one of their platforms. Night at the Museum (film series) Night at the Museum is a trilogy of fantasy-comedy films beginning in 2006 and ending in 2014. All three films, based on the children's book \"\"The Night at the Museum\"\" by Milan Trenc, are directed by Shawn Levy and written by Robert Ben Garant and Thomas Lennon. Starring Ben Stiller as a museum night security guard named Larry, the films"} +{"qid": "test656", "pid": "7213365", "query": "when was night at the museum 3 filmed", "answer": "2014", "passage": "\"Night at the Museum\"\ntrilogy, \"\"Night at the Museum\"\" was followed by a sequel titled \"\"Night at the Museum: Battle of the Smithsonian,\"\" which was released on May 22, 2009 in North America. The third and final installment, \"\"Night at the Museum: Secret of the Tomb\"\", was released on December 19, 2014 in North America. In 2016, The Hollywood Reporter stated that the Alibaba Pictures Group intended to remake the film. Night at the Museum Night at the Museum is a 2006 American fantasy-comedy film directed by Shawn Levy and written by Robert Ben Garant and Thomas Lennon, based on the 1993 children's book"} +{"qid": "test656", "pid": "17175522", "query": "when was night at the museum 3 filmed", "answer": "2014", "passage": "\"Night at the Museum: Secret of the Tomb\"\n\"\"Night at the Museum: Secret of the Tomb\"\", the third and supposedly final edition in the franchise, is nothing more than an uncomfortably transparent contractual obligation.\"\" \"\"Night at the Museum: Secret of the Tomb\"\" was released on Blu-ray and DVD on March 10, 2015. The film debuted in second place on the home media charts behind \"\"\"\". Night at the Museum: Secret of the Tomb Night at the Museum: Secret of the Tomb is a 2014 American comedy adventure fantasy film directed by Shawn Levy and written by David Guion and Michael Handelman. It is the third and final installment"} +{"qid": "test656", "pid": "12301125", "query": "when was night at the museum 3 filmed", "answer": "2014", "passage": "\"Night at the Museum: Battle of the Smithsonian\"\nphotography and production began on January 27, 2014. In May 2014, principal photography ended. Night at the Museum: Battle of the Smithsonian Night at the Museum: Battle of the Smithsonian is a 2009 American adventure fantasy comedy film written by Robert Ben Garant and Thomas Lennon, produced by Chris Columbus, Michael Barnathan and Shawn Levy and directed by Levy. The film stars Ben Stiller, Amy Adams, Owen Wilson, Steve Coogan, Hank Azaria, Bill Hader, Christopher Guest, Alain Chabat, Jon Bernthal, and Robin Williams. It is the second installment in the \"\"Night at the Museum\"\" trilogy, and a sequel to the"} +{"qid": "test656", "pid": "17175498", "query": "when was night at the museum 3 filmed", "answer": "2014", "passage": "\"Night at the Museum: Secret of the Tomb\"\nNight at the Museum: Secret of the Tomb Night at the Museum: Secret of the Tomb is a 2014 American comedy adventure fantasy film directed by Shawn Levy and written by David Guion and Michael Handelman. It is the third and final installment in the \"\"Night at the Museum\"\" trilogy. The film features an ensemble cast including Ben Stiller, Robin Williams, Owen Wilson, Steve Coogan, Ricky Gervais, Rachael Harris, Dan Stevens, Rebel Wilson, Skyler Gisondo, Rami Malek, Patrick Gallagher, Mizuo Peck, Ben Kingsley, Dick Van Dyke, and Crystal the Monkey. In \"\"Secret of the Tomb\"\", security guard Larry Daley must"} +{"qid": "test657", "pid": "1019085", "query": "what mall did they use in back to the future", "answer": "Puente Hills Mall", "passage": "\"City of Industry, California\"\nof the Puente Hills Mall, a major shopping center that was the \"\"Twin/Lone Pine(s) Mall\"\" in the \"\"Back to the Future\"\" movie series. Adjacent to the mall's property is a SpeedZone entertainment center, which was featured in a prominent scene of Kevin Smith's \"\"Clerks II\"\". A former IKEA store located north of the Puente Hills Mall and across the State Route 60 freeway was used as a shooting location for the final fight scene in \"\"Mr. & Mrs Smith\"\". Its exterior was renovated so it could be used for both exterior and interior filming; it was later demolished. The IKEA"} +{"qid": "test657", "pid": "5505189", "query": "what mall did they use in back to the future", "answer": "Puente Hills Mall", "passage": "\"Puente Hills Mall\"\nto close in September 2018. Puente Hills Mall served as a filming location for the fictional Twin Pines Mall (later Lone Pine Mall) in the 1985 film \"\"Back to the Future\"\". In the film, Doc Brown (Christopher Lloyd) uses the mall's south parking lot (visible in the above photograph) to stage his time travel experiments with the DeLorean time machine. A JCPenney store and Robinson's features prominently in the background. A Ross Dress for Less store can be seen in a strip mall across the street. The scenes were filmed in January 1985. According to the DVD audio commentary, screenplay"} +{"qid": "test657", "pid": "2562392", "query": "what mall did they use in back to the future", "answer": "Puente Hills Mall", "passage": "\"San Gabriel Valley\"\ntrilogy of time travel adventure movies (1985, 1989, 1990), Whittier High School was used as Hill Valley High School. Michael J. Fox's character travels back in time on the huge parking lot of the Puente Hills Mall in the City of Industry that served as the location of the fictitious Twin Pines Mall / Lone Pine Mall. The Gamble House in Pasadena provided the exterior of Christopher Lloyd's character's 1950s mansion. The city of El Monte served as a dilapidated future neighborhood. Another movie starring Fox, \"\"Teen Wolf\"\". was largely filmed in Arcadia. The Pasadena Chapter building of the Red"} +{"qid": "test657", "pid": "5505184", "query": "what mall did they use in back to the future", "answer": "Puente Hills Mall", "passage": "\"Puente Hills Mall\"\nPuente Hills Mall Puente Hills Mall, located in the City of Industry, California, United States, is a major regional shopping center in the San Gabriel Valley region of Los Angeles County. It is most famous for serving as the filming site for the Twin Pines/Lone Pine Mall for the 1985 movie \"\"Back to the Future\"\" starring Michael J. Fox and Christopher Lloyd. Puente Hills Mall was built in 1974 after the completion of the Pomona Freeway a few years earlier. It opened with four primary anchors in a cross-shaped design by The Hahn Company. One of the mall's original tenants"} +{"qid": "test657", "pid": "2279009", "query": "what mall did they use in back to the future", "answer": "Puente Hills Mall", "passage": "\"Hill Valley (Back to the Future)\"\nthe shopping center located outside Hill Valley, where Doctor Emmett Brown first tests his time machine, making his dog Einstein the first time traveler in the world. (The site where the mall was filmed for the movie is actually Puente Hills Mall, located in City of Industry, California. The J.C. Penney location seen in the movie has been shut down, and is now occupied by a 24 Hour Fitness center.) When Marty McFly returns from 1955 to 1985, the mall can be seen to have changed its name to Lone Pine Mall, as upon arriving in 1955 and crashing into"} +{"qid": "test659", "pid": "5330766", "query": "when did the movie breakfast club come out", "answer": "1985", "passage": "\"2005 MTV Movie Awards\"\nas it is to me\"\". Foo Fighters replaced them. 2005 MTV Movie Awards The 2005 MTV Movie Awards was hosted by Jimmy Fallon. A special award, the Silver Bucket of Excellence, was presented to the 1985 film \"\"Breakfast Club\"\". Also, Tom Cruise was presented with the first-ever MTV Generation Award. Neither of these two special awards were voted upon by the public. The awards were also marked by Nine Inch Nails' decision to pull out because MTV refused to let them perform using as a backdrop an unaltered image of President George W. Bush. Frontman Trent Reznor commented, \"\"apparently the"} +{"qid": "test659", "pid": "5330765", "query": "when did the movie breakfast club come out", "answer": "1985", "passage": "\"2005 MTV Movie Awards\"\n2005 MTV Movie Awards The 2005 MTV Movie Awards was hosted by Jimmy Fallon. A special award, the Silver Bucket of Excellence, was presented to the 1985 film \"\"Breakfast Club\"\". Also, Tom Cruise was presented with the first-ever MTV Generation Award. Neither of these two special awards were voted upon by the public. The awards were also marked by Nine Inch Nails' decision to pull out because MTV refused to let them perform using as a backdrop an unaltered image of President George W. Bush. Frontman Trent Reznor commented, \"\"apparently the image of our president is as offensive to MTV"} +{"qid": "test66", "pid": "20524153", "query": "when does the miz and maryse show start", "answer": "2018", "passage": "\"Miz & Mrs.\"\nMiz & Mrs. Miz & Mrs. is an American reality television series that premiered on July 24, 2018 on the USA Network. The series, a spin-off of \"\"Total Divas\"\", follows the lives of The Miz and Maryse in and out of the wrestling ring. The show is set to include six 30-minute episodes, which will follow the couple leading up to the birth of their first child. The Miz and Maryse also serve as executive producers of the show. On January 8, 2018, WWE announced that The Miz and Maryse would be getting their own spinoff show, set to premiere"} +{"qid": "test66", "pid": "7720460", "query": "when does the miz and maryse show start", "answer": "2018", "passage": "\"Maryse Ouellet\"\nmaking backstage promotional videos with Miz supporting him in the WWE Mixed Match Challenge, in which he won alongside Asuka in April in support of the charity Rescue Dogs Rock. Maryse returned to \"\"Smackdown\"\" to manage the Miz in July 2018. Following Maryse's interfence in the Miz vs. Daniel Bryan match at Summerslam, Maryse and Miz were put in a mixed tag match by the \"\"SmackDown\"\" general manager Paige against Brie Bella and Daniel Bryan at Hell in a Cell on September 16 and won. On the September 11th edition of \"\"SmackDown Live\"\", Maryse competed in her first singles match"} +{"qid": "test66", "pid": "20457293", "query": "when does the miz and maryse show start", "answer": "2018", "passage": "\"Hell in a Cell (2018)\"\nor less distinguishable characters in scripted events that built tension and culminated in a wrestling match or series of matches, with results predetermined by WWE's writers on the Raw and SmackDown brands. Storylines were produced on WWE's weekly television shows, \"\"Monday Night Raw\"\" and \"\"SmackDown Live\"\". At SummerSlam, The Miz defeated Daniel Bryan after Miz's wife Maryse gave him a pair of brass knuckles that the referee did not see. On the following \"\"SmackDown\"\", Miz and Maryse mocked Bryan's retirement speech from two years earlier. Bryan and his wife Brie Bella came out and confronted them. Bryan called Miz a"} +{"qid": "test66", "pid": "7720431", "query": "when does the miz and maryse show start", "answer": "2018", "passage": "\"Maryse Ouellet\"\nrelease from the company in October 2011. In April 2016, she returned to the company and became the manager of her husband The Miz, managing him to three Intercontinental Championship reigns. In late-2011, she announced plans for a clothing and jewellery line called House of Maryse, and later began working as a realtor. In November 2016, she joined the cast of the reality show Total Divas, and appeared in the show's sixth and seventh seasons, which initially aired on the E! Network. On January 8, 2018, WWE announced a spin-off show titled Miz & Mrs., which stars Ouellet in a"} +{"qid": "test66", "pid": "7720463", "query": "when does the miz and maryse show start", "answer": "2018", "passage": "\"Maryse Ouellet\"\nher return to WWE. In June 2017, Maryse along with Miz were cover of the \"\"DUB Magazine\"\" with a Jeep car. Maryse has appeared in five WWE video games. She made her in-game debut at \"\"WWE Smackdown vs. Raw 2010\"\", later appearing in \"\"WWE Smackdown vs. Raw 2011\"\", \"\"WWE '12\"\", and returned in \"\"WWE 2K18\"\", \"\"WWE 2K19\"\". In 2018, Maryse and her husband Mike appeared in a reality television series titled \"\"Miz & Mrs.\"\" It was later announced on July 26 that Maryse would not be returning for the eighth season of Total Divas. Following her release from WWE in"} +{"qid": "test660", "pid": "15050865", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Baroness Gösta von dem Bussche-Haddenhausen\"\nBaroness Gösta von dem Bussche-Haddenhausen Baroness Gösta von dem Bussche-Haddenhausen (; 26 January 1902 – 13 June 1996) was the mother of Prince Claus of the Netherlands, who was the Prince Consort of Queen Beatrix of the Netherlands, thus making her the mother-in-law of the former Dutch Queen. She is also the paternal grandmother of King Willem-Alexander of the Netherlands, who is the current Dutch King. Gösta was born at Döbeln, Kingdom of Saxony, German Empire (now Saxony, Germany), the second child and daughter of Baron George von dem Bussche-Haddenhausen (1869–1923), and his wife, Baroness Gabriele von dem Bussche-Ippenburg (1877–1973)."} +{"qid": "test660", "pid": "17479463", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Marquis of Veere and Flushing\"\nmonarchs. The present holder of the title Marquis of Veere is King Willem-Alexander of the Netherlands. Marquis of Veere and Flushing Marquis of Veere and Flushing () is one of the titles of the kings and queens of the Netherlands. It was originally a Dutch title of nobility referring to the cities of Veere and Vlissingen, in the southwestern Netherlands. Holy Roman Emperor Charles V created the title in 1555 for his distant relative, Maximilian of Burgundy, who had by then ruled as Lord of Veere. After being held by the kings of Spain and England and claimed by the"} +{"qid": "test660", "pid": "984612", "query": "who is the king and queen of the netherlands", "answer": "Queen Máxima of the Netherlands", "passage": "\"Queen Máxima of the Netherlands\"\nQueen Máxima of the Netherlands Queen Máxima of the Netherlands (born Máxima Zorreguieta Cerruti; 17 May 1971) is the wife of King Willem-Alexander. On 30 April 2013, she became the first queen consort of the Netherlands since Emma of Waldeck and Pyrmont (queen consort from 1879 to 1890) and the first Latin American-born queen consort in the history of the Netherlands. Máxima Zorreguieta Cerruti was born in Buenos Aires, Argentina, on 17 May 1971. Queen Máxima is the daughter of Jorge Zorreguieta (1928–2017), Secretary of Agriculture under General Jorge Rafael Videla during Argentina's last civil-military dictatorship (1976–1983), and his second"} +{"qid": "test660", "pid": "10040320", "query": "who is the king and queen of the netherlands", "answer": "Queen Máxima of the Netherlands", "passage": "\"Princess Ariane of the Netherlands\"\nPrincess Ariane of the Netherlands Princess Ariane of the Netherlands, Princess of Orange-Nassau (Ariane Wilhelmina Máxima Inés; born 10 April 2007) is the third and youngest daughter of King Willem-Alexander and Queen Máxima. Princess Ariane is a member of the Dutch Royal House and currently third in the line of succession to the Dutch throne. Princess Ariane was born in the HMC Bronovo in The Hague at 21:56 local time on 10 April 2007 as the third child and youngest daughter of King Willem-Alexander of the Netherlands and Queen Máxima of the Netherlands. Prime Minister Balkenende addressed the nation shortly"} +{"qid": "test660", "pid": "12268859", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Descendants of Ferdinand II of Aragon and Isabella I of Castile\"\nline of Kings of Spain are descended from their union, with their current major dynastic heir being King Felipe VI of Spain, who reigns in their native territories. Also among their descendants are King Albert II of Belgium, Grand-Duke Henri of Luxembourg, Queen Elizabeth II of the U.K., Queen Margrethe II of Denmark, King Harald V of Norway, King Carl XVI Gustaf of Sweden, and King Willem-Alexander of the Netherlands – descend from Isabella I and Ferdinand II. This is also true of the Sovereign Princes of Europe: Albert II, Prince of Monaco and Hans-Adam II, Prince of Liechtenstein. Albert"} +{"qid": "test660", "pid": "11309583", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Royal descendants of Queen Victoria and King Christian IX\"\nKing Carl XVI Gustaf & Queen Silvia 6. United Kingdom: Queen Elizabeth II & Prince Philip, Duke of Edinburgh 7. Netherlands: King Willem-Alexander & Queen Máxima King Harald V of Norway, Queen Elizabeth II of the United Kingdom, her husband, Prince Philip, Duke of Edinburgh, Queen Margrethe II of Denmark and King Felipe VI of Spain are all descended from both Queen Victoria and King Christian IX. The first two monarchs are great-grandchildren of the aforementioned union between Alexandra of Denmark (daughter of King Christian IX) and Edward VII (son of Queen Victoria). Harald V of Norway is actually descended"} +{"qid": "test660", "pid": "984629", "query": "who is the king and queen of the netherlands", "answer": "Queen Máxima of the Netherlands", "passage": "\"Queen Máxima of the Netherlands\"\ndebate over her future title and style. On 28 January 2013, it was announced that Queen Beatrix would abdicate on 30 April in favour of Willem-Alexander. Máxima is the Kingdom's first queen consort since Princess Emma of Waldeck and Pyrmont, the second wife of William III. She is the first Dutch queen consort to have been born as a commoner, and the first to have been born outside Europe. Queen Máxima of the Netherlands Queen Máxima of the Netherlands (born Máxima Zorreguieta Cerruti; 17 May 1971) is the wife of King Willem-Alexander. On 30 April 2013, she became the first"} +{"qid": "test660", "pid": "11998817", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Canada–Netherlands relations\"\nculminating in the Canadian Tulip Festival. In May 1967, Queen Juliana of the Netherlands visited Canada. From 9–17 May 1988 Queen Beatrix of the Netherlands and Prince Claus of the Netherlands visited Canada. King Willem-Alexander and Queen Máxima paid a widely publicized state visit to Canada from 27–29 May 2015, receiving an extremely warm welcome, particularly in Ontario. Canada and the Netherlands have worked very closely together on many foreign issues. They are both members of the United Nations (and its Specialized Agencies), the World Trade Organization, Interpol, they are both founding members of the North Atlantic Treaty Organization (NATO),"} +{"qid": "test660", "pid": "7641789", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Princess Sarvath al-Hassan\"\nevents, such as the wedding of Crown Princess Victoria of Sweden, and the inauguration of King Willem-Alexander of the Netherlands. In 2013, she rode in the carriage of Queen Elizabeth II at Royal Ascot. There have been tensions between Princess Sarvath and her sister-in-law, Queen Noor. The tensions between the Queen, who wanted her own son Hamzah to be proclaimed crown prince, and the then Crown Princess Sarvath were exacerbated by the matter of succession during the last days of King Hussein's life. According to off-the-record briefings by anonymous palace officials in Amman, a rumour was circulated that Princess Sarvath"} +{"qid": "test660", "pid": "13521459", "query": "who is the king and queen of the netherlands", "answer": "King Willem-Alexander", "passage": "\"Monarchy of the Netherlands\"\nthe Netherlands. On 28 January 2013, the Queen announced that she would be abdicating on 30 April 2013 in favour of her eldest son. The current monarch is King Willem-Alexander (born 1967), who has been on the Throne since 30 April 2013. He studied history at the University of Leiden and became actively involved in water management. His wife is Queen Máxima (née Máxima Zorreguieta Cerruti), an economics major, whose father was a minister of agriculture in the dictatorial regime under General Videla in Argentina. Because of that their relationship was accompanied by fierce public debate and only officially sanctioned"} +{"qid": "test661", "pid": "3039457", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "\"Jerusalem Talmud\"\nyear 200 CE, and either the Babylonian or the Jerusalem \"\"Gemara\"\". The \"\"Gemara\"\" is what differentiates the Jerusalem Talmud from its Babylonian counterpart. The \"\"Jerusalem Gemara\"\" contains the written discussions of generations of rabbis in the Land of Israel (primarily in the academies of Tiberias and Caesarea), compiled c. 350-400 CE into a series of books. The \"\"Babylonian Gemara\"\", which is the second recension of the Mishnah, was compiled by the scholars of Babylonia (primarily in the Talmudic academies of Sura and Pumbedita), and was completed c. 500. The Babylonian Talmud is often seen as more authoritative and is studied"} +{"qid": "test661", "pid": "2971918", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "Moed\nMoed Moed (, \"\"Festivals\"\") is the second Order of the Mishnah, the first written recording of the Oral Torah of the Jewish people (also the Tosefta and Talmud). Of the six orders of the Mishna, Moed is the third shortest. The order of Moed consists of 12 tractates: The Jerusalem Talmud has a Gemara on each of the tractates, while in the Babylonian, only that on Shekalim is missing. However, in most printed editions of the Babylonian Talmud (as well as the Daf Yomi cycle), the Jerusalem Gemara to Shekalim is included. In the Babylonian Talmud the treatises of the"} +{"qid": "test661", "pid": "175068", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "\"Hebrew language\"\noccurs in the other works of Tannaitic literature dating from the century beginning with the completion of the Mishnah. These include the halachic Midrashim (Sifra, Sifre, Mechilta etc.) and the expanded collection of Mishnah-related material known as the Tosefta. The Talmud contains excerpts from these works, as well as further Tannaitic material not attested elsewhere; the generic term for these passages is \"\"Baraitot\"\". The dialect of all these works is very similar to Mishnaic Hebrew. About a century after the publication of the Mishnah, Mishnaic Hebrew fell into disuse as a spoken language. The later section of the Talmud, the"} +{"qid": "test661", "pid": "3038460", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "\"Minor tractate\"\nMinor tractate The minor tractates (Hebrew: מסכתות קטנות, \"\"masechtot qetanot\"\") are essays from the Tannaitic period or later dealing with topics about which no formal tractate exists in the Mishnah. They may thus be contrasted to the Tosefta, whose tractates parallel those of the Mishnah. The first eight or so contain much original material; the last seven or so are collections of material scattered throughout the Talmud. The Minor Tractates are normally printed at the end of \"\"Seder Nezikin\"\" in the Talmud. They include: There is also a lost tractate called \"\"Eretz Yisrael\"\" (about laws pertaining to the Land of"} +{"qid": "test661", "pid": "3038461", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "\"Minor tractate\"\nIsrael). Minor tractate The minor tractates (Hebrew: מסכתות קטנות, \"\"masechtot qetanot\"\") are essays from the Tannaitic period or later dealing with topics about which no formal tractate exists in the Mishnah. They may thus be contrasted to the Tosefta, whose tractates parallel those of the Mishnah. The first eight or so contain much original material; the last seven or so are collections of material scattered throughout the Talmud. The Minor Tractates are normally printed at the end of \"\"Seder Nezikin\"\" in the Talmud. They include: There is also a lost tractate called \"\"Eretz Yisrael\"\" (about laws pertaining to the Land"} +{"qid": "test661", "pid": "388845", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "Sukkot\nblessing is recited over the Lulav and the Etrog. Observance of Sukkot is detailed in the Hebrew Bible (, and ); the Mishnah (Sukkah 1:1–5:8); the Tosefta (Sukkah 1:1–4:28); and the Jerusalem Talmud (Sukkah 1a–) and Babylonian Talmud (Sukkah 2a–56b). The sukkah walls can be constructed of any material (wood, canvas, aluminum siding, sheets). The walls can be free-standing or include the sides of a building or porch. The roof must be of organic material, known as s'chach, such as leafy tree overgrowth, schach mats or palm fronds. It is customary to decorate the interior of the sukkah with hanging"} +{"qid": "test661", "pid": "2725695", "query": "what written material is included in the talmud", "answer": "the Mishnah", "passage": "\"Historical Jesus\"\nTacitus reference is now widely accepted as an independent confirmation of Christ's crucifixion. Other considerations outside Christendom include the possible mentions of Jesus in the Talmud. The Talmud speaks in some detail of the conduct of criminal cases of Israel whose texts were gathered together from 200–500 CE. Bart Ehrman says this material is too late to be of much use. Ehrman explains that \"\"Jesus is never mentioned in the oldest part of the Talmud, the Mishnah, but appears only in the later commentaries of the Gemara.\"\" Jesus is not mentioned by name, but there is a subtle attack on"} +{"qid": "test662", "pid": "11635123", "query": "what are the value of style guides and style sheet", "answer": "improve communication", "passage": "\"Style guide\"\ntheir own systems. Guidelines for citing web content also appear in comprehensive style guides such as Oxford/Hart, Chicago and MLA. Style guide A style guide (or manual of style) is a set of standards for the writing and design of documents, either for general use or for a specific publication, organization, or field. (It is often called a style sheet, though that term has other meanings.) A style guide establishes and enforces style to improve communication. To do that, it ensures consistency within a document and across multiple documents and enforces best practice in usage and in language composition, visual"} +{"qid": "test662", "pid": "11635115", "query": "what are the value of style guides and style sheet", "answer": "improve communication", "passage": "\"Style guide\"\nStyle guide A style guide (or manual of style) is a set of standards for the writing and design of documents, either for general use or for a specific publication, organization, or field. (It is often called a style sheet, though that term has other meanings.) A style guide establishes and enforces style to improve communication. To do that, it ensures consistency within a document and across multiple documents and enforces best practice in usage and in language composition, visual composition, orthography and typography. For academic and technical documents, a guide may also enforce the best practice in ethics (such"} +{"qid": "test663", "pid": "5890313", "query": "what is the approximate volume of blood in your body", "answer": "approximately 5 liters", "passage": "\"Blood volume\"\nBlood volume Blood volume is the volume of blood (both red blood cells and plasma) in the circulatory system of any individual. A typical adult has a blood volume of approximately 5 liters, with females and males having approximately the same blood volume. Blood volume is regulated by the kidneys. Blood volume (BV) can be calculated given the hematocrit (HC; the fraction of blood that is red blood cells) and plasma volume (PV), with the hematocrit being regulated via the blood oxygen content regulator: Blood volume measurement may be used in people with congestive heart failure, chronic hypertension, renal failure"} +{"qid": "test663", "pid": "5890317", "query": "what is the approximate volume of blood in your body", "answer": "approximately 5 liters", "passage": "\"Blood volume\"\nMeasurements are taken 5 times in 6 minute intervals so that the BVA-100 can calculate the albumin transudation time to understand the flux of liquid through capillary membranes. The table at right shows circulating blood volumes, given as volume per kilogram, for healthy adults and some animals. However, it can be 15% less in obese and old animals. Blood volume Blood volume is the volume of blood (both red blood cells and plasma) in the circulatory system of any individual. A typical adult has a blood volume of approximately 5 liters, with females and males having approximately the same blood"} +{"qid": "test664", "pid": "14570701", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"The Debarted (Gossip Girl)\"\nThe Debarted (Gossip Girl) \"\"The Debarted\"\" is the 55th episode of the CW television series, \"\"Gossip Girl\"\". It was also the twelfth episode of the show's third season. The episode was written by executive producer and one of the series' creator Stephanie Savage and directed by Jason Ensler. It originally aired on Monday, December 7, 2009 on the CW. On the first anniversary of Bart Bass' death, Chuck wrestles with hallucinations of Bart (Robert John Burke), who tells him that he is weak. Blair seeks Lily's help in coercing Chuck to visit his father's grave. Meanwhile, Lily cannot find the"} +{"qid": "test664", "pid": "14570710", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"The Debarted (Gossip Girl)\"\n\"\"a showdown between Rufus and Dr. Van der Woodsen\"\". The Debarted (Gossip Girl) \"\"The Debarted\"\" is the 55th episode of the CW television series, \"\"Gossip Girl\"\". It was also the twelfth episode of the show's third season. The episode was written by executive producer and one of the series' creator Stephanie Savage and directed by Jason Ensler. It originally aired on Monday, December 7, 2009 on the CW. On the first anniversary of Bart Bass' death, Chuck wrestles with hallucinations of Bart (Robert John Burke), who tells him that he is weak. Blair seeks Lily's help in coercing Chuck to"} +{"qid": "test664", "pid": "16976161", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"New York, I Love You XOXO\"\nNew York, I Love You XOXO \"\"New York, I Love You XOXO\"\" is the series finale of \"\"Gossip Girl\"\". The episode serves as the tenth episode of the sixth season and the show's 121st episode overall. Written by Stephanie Savage, and directed by Mark Piznarski, the series finale originally aired on The CW Television Network (The CW) in the United States on December 17, 2012. \"\"Gossip Girl\"\" follows the lives of a group of young adults coming from a wealthy background. In this final episode, the death of Bart Bass rushes Chuck Bass (Ed Westwick) to marry Blair Waldorf (Leighton"} +{"qid": "test664", "pid": "12437561", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gossip Girl\"\nYouth. The ninth episode of the season caused a significant amount of controversy. Parent groups urged The CW not to air the episode as it contained a threesome. The preview for the episode revolved around an \"\"OM3\"\" theme. CW ignored these requests and announced that it was going to air the episode as planned. Robert John Burke, who played Chuck's father, Bart Bass, returned for \"\"A Christmas Carol\"\" themed episode in December, while Desmond Harrington returned as Chuck's uncle Jack with a major storyline affecting Chuck and Blair's relationship again and involving Chuck's estranged mother Evelyn Bass Fisher (Laura Harring)."} +{"qid": "test664", "pid": "16976162", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"New York, I Love You XOXO\"\nMeester) and the identity of Gossip Girl is revealed. A five-year flash forward takes place and shows the wedding of Dan Humphrey (Penn Badgley) to Serena van der Woodsen (Blake Lively). \"\"New York, I Love You XOXO\"\" received favorable reviews from television critics. Upon its initial airing, the finale was viewed in the United States by 1.55 million people and garnered a 0.8/2 Nielsen rating/share in the 18–49 demographic, registering as the season's most-watched episode. The series finale picked up where the previous episode left off, where Chuck Bass (Ed Westwick) and Bart argue on the roof ending with Bart"} +{"qid": "test664", "pid": "16976164", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"New York, I Love You XOXO\"\nto stay in New York to confront Dan. William van der Woodsen (William Baldwin) shows up to support Lily Bass (Kelly Rutherford) and tells Ivy Dickens (Kaylee DeFer) that he used her to get back to Lily. With the death of Bart Bass, Nate Archibald (Chace Crawford) who is running the newspaper \"\"The Spectator\"\", is no longer indebted to him (Bart paid his debts to control him) and he decides to find out for good who Gossip Girl is. Jack and Georgina Sparks (Michelle Trachtenberg) deal with the arrangements of Chuck and Blair's wedding. Before the ceremony, Serena and Blair"} +{"qid": "test664", "pid": "9157799", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Hit Me Up (Gia Farrell song)\"\n\"\"Germany's Next Topmodel\"\", Cycle 2. It was featured in a Wheat Thins's commercial for garden vegetable flavored crackers, and gained attention again when it was performed in May 2008 by Syesha Mercado on \"\"American Idol\"\" seventh season at the top three stage. The song was also in an episode of Gossip Girl Season 1 Episode 2, The Wild Brunch, when the cooks are getting ready for Bart Bass Brunch. The song charted in several countries around the world, and barely made the top 40 in the U.S. Its highest peak position was in Hungary at #1. In Germany the song"} +{"qid": "test664", "pid": "14426137", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gossip Girl (season 2)\"\nGossip Girl (season 2) The second season of the American teen drama television series \"\"Gossip Girl\"\" premiered on The CW on September 1, 2008, and concluded on May 17, 2009, consisting of 25 episodes. Based on the novel series of the same name by Cecily von Ziegesar, the series was developed for television by Josh Schwartz and Stephanie Savage. The series revolves around the lives of privileged teenagers Serena van der Woodsen, Blair Waldorf, Dan Humphrey, Nate Archibald, Jenny Humphrey, and Chuck Bass attending an elite private school on Manhattan's Upper East Side in New York City. It also features"} +{"qid": "test664", "pid": "16832177", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gone Maybe Gone\"\n(Kelly Rutherford) annuls her marriage to Rufus Humphrey (Matthew Settle) in order to get back with Bart Bass (Robert John Burke) who recently resurfaced. Ivy Dickens (Kaylee DeFer) plans to take down Lily with the help of Lola Rhodes (Ella Rae Peck). \"\"Gone Maybe Gone\"\" picks up right after those events; Blair and Chuck have sex in a room of the casino's hotel, Serena is seen unconscious in the train, Dan is in Italy with Georgina who tries to make him write, and Nate prints pictures of a video featuring the masked Gossip Girl. Four months later, Lily and Bart"} +{"qid": "test664", "pid": "13548180", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gossip Girl (season 1)\"\nwho returns after escaping rehab in Utah. Sam Robards and Francie Swift portrayed Nate's parents Howard and Anne Archibald. Nicole Fiscella and Nan Zhang acted as Blair's loyal sidekicks Isabel Coates and Kati Farkas. Other members of Blair's clique include Amanda Setton as Penelope Shafai, Dreama Walker as Hazel Williams and Emma Demar as Elise Wells. Other guest stars in recurring roles include Zuzanna Szadkowski as Blair's maid Dorota Kishlovsky, Robert John Burke as Chuck's father and billionaire Bart Bass, Susie Misner as Rufus' estranged wife Alison Humphrey and John Shea as Blair's father Harold Waldorf, with William Abadie as"} +{"qid": "test664", "pid": "11844025", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Eric van der Woodsen\"\nis present during Thanksgiving dinner at the Humphrey's apartment when Lily and Rufus reveal they had a previous relationship years ago. Due to his mother's engagement to billionaire Bart Bass, he develops a close friendship with Chuck Bass, whom he soon sees as a brother. He tries to warn Jenny about her new boyfriend Asher Hornsby (Jesse Swenson) but she mistakes this for Eric being in love with her. In the same episode, Dan and Georgina Sparks see Asher making out with someone outside of school. The news becomes public on Gossip Girl, and Jenny denies the rumor by saying"} +{"qid": "test664", "pid": "14557276", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gossip Girl (season 4)\"\nwith Zap2it, stating \"\"the answer is in the finale.\"\" On May 16, 2011, \"\"Entertainment Weekly\"\" announced that \"\"Gossip Girl\"\" author Cecily von Ziegesar would be making a cameo for the season finale. Season four begins with Serena and Blair enjoying their summer in Paris, until the unexpected appearance of Chuck Bass, who is using a false name and cozying up to a new girl. Blair has to decide if she wants to fight for Chuck or spend her energy trying to rule Columbia University. Serena needs to choose between Nate and Dan, but Dan is a bit busy coping with"} +{"qid": "test664", "pid": "14909850", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Double Identity (Gossip Girl)\"\nthat this episode aired, the name \"\"Chuck Bass\"\" was one of the trending topics on Twitter. Double Identity (Gossip Girl) \"\"Double Identity\"\" is the 67th episode of the CW television series, \"\"Gossip Girl\"\", as well as the second episode of the show's fourth season. The episode was written by Joshua Safran and Stephanie Savage and directed by Mark Piznarski. It originally aired on Monday, September 20, 2010 on the CW. Serena and Blair both run into a different Chuck in Paris, who is discovered to now be living with Eva, a young French woman who saved his life after he"} +{"qid": "test664", "pid": "16832176", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gone Maybe Gone\"\nstoryline, which was criticized. In the fifth season finale, Blair Waldorf (Leighton Meester) decides she wants to have a relationship with Chuck Bass (Ed Westwick) and she meets him in a casino of Monte Carlo. Serena van der Woodsen (Blake Lively) leaves New York City after being rejected by Blair and Dan Humphrey (Penn Badgley) and does drugs with a stranger in a train. Dan decides to expose the real world of the Upper East Side in his new book and teams up with Georgina Sparks (Michelle Trachtenberg) while Nate Archibald (Chace Crawford) tries to unmask Gossip Girl. Lily Bass"} +{"qid": "test664", "pid": "12437570", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gossip Girl\"\ncameo as herself (but is not revealed as Gossip Girl). Several former \"\"Gossip Girl\"\" cast members appear in the finale, including Jessica Szohr, who played Vanessa Abrams, and Katie Cassidy, who played Juliet Sharp. Former series regulars Connor Paolo (Eric van der Woodsen) and Taylor Momsen (Jenny Humphrey), each appear also with one line a piece. Season 6 begins with Chuck and Blair who part ways after making a pact that they will unite once they both achieve their individual goals. Chuck goes on his way to try to regain Bass Industries from his father who stole it from him"} +{"qid": "test664", "pid": "14581197", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"The Lost Boy (Gossip Girl)\"\nThe Lost Boy (Gossip Girl) \"\"The Lost Boy\"\" is the 46th episode of the CW television series, \"\"Gossip Girl\"\". It was also the third episode of the show's third season. The episode was written by Robert Hull and directed by Jean de Segonzac. It originally aired on Monday, September 28, 2009 on the CW. \"\"The Lost Boy\"\" shows Blair Waldorf (Leighton Meester) and Chuck Bass (Ed Westwick) plotting against each other when a particular item up for bid at Sotheby's raises their personal interests. Serena van der Woodsen (Blake Lively) suspects Carter Baizen's (Sebastian Stan) return to his old habits"} +{"qid": "test664", "pid": "13548188", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Gossip Girl (season 1)\"\nis supposed to be, what, 14?\"\". The series has also been criticized for having less-than believable storylines, and has been described as a guilty pleasure rather than an hour's worth of must-watch television. The DVD release of season one was released by Warner Home Video in the United States on August 19, 2008, after it had completed broadcast on television. As well as every episode from the season, the DVD release features bonus material including a downloadable audiobook, deleted scenes, and behind-the-scenes featurettes. Gossip Girl (season 1) The first season of the American teen drama television series \"\"Gossip Girl\"\" premiered"} +{"qid": "test664", "pid": "12542949", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Lipgloss (TV series)\"\nbeautiful princess, Ava, whom he falls for. The finale shows the love teams ending up with each other: Abby and Jake, Louise and Brent, Ava and Edge. \"\"Lipgloss\"\" closely resembled the hit American TV show \"\"Gossip Girl\"\", prompting people to label it as a rip-off of the iconic series. Many said that the show's plot imitated that of \"\"Gossip Girl\"\" — \"\"Gossip Girl\"\" spread the gossip about the main characters, the website administrator does the same in \"\"Lipgloss\"\". In the middle of the second season, Sam Concepcion and Cheska Ortega left the show. Matt Evans and Carlo Guevara were then"} +{"qid": "test664", "pid": "8406859", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Robert John Burke\"\nRobert John Burke Robert John Burke (born September 12, 1960) is an American actor. Burke was born in Washington Heights, Manhattan, the son of immigrants from Galway, Ireland. He attended the Acting Conservatory at State University of New York at Purchase. Burke holds a second degree black belt in Matsubayashi, Shorin-ryu Okinawa karate and is also a certified and active New York State firefighter. Burke was a cast member on Denis Leary's \"\"Rescue Me\"\" and played Bart Bass on The CW's \"\"Gossip Girl\"\". He was working on the TV series \"\"Kidnapped\"\" for NBC and was a featured character on ABC's"} +{"qid": "test664", "pid": "8406863", "query": "what season does bart bass die in gossip girl", "answer": ")", "passage": "\"Robert John Burke\"\nin Spike Lee's \"\"BlacKkKlansman\"\" in 2018. Robert John Burke Robert John Burke (born September 12, 1960) is an American actor. Burke was born in Washington Heights, Manhattan, the son of immigrants from Galway, Ireland. He attended the Acting Conservatory at State University of New York at Purchase. Burke holds a second degree black belt in Matsubayashi, Shorin-ryu Okinawa karate and is also a certified and active New York State firefighter. Burke was a cast member on Denis Leary's \"\"Rescue Me\"\" and played Bart Bass on The CW's \"\"Gossip Girl\"\". He was working on the TV series \"\"Kidnapped\"\" for NBC and"} +{"qid": "test665", "pid": "227030", "query": "when did france and belgium invade the ruhr", "answer": "1923", "passage": "Krupp\nreaction to the Kapp Putsch. The Ruhr Red Army, or Rote Soldatenbund, took over much of the demilitarized Rhineland unopposed. Krupp's factory in Essen was occupied, and independent republics were declared, but the German Reichswehr invaded from Westphalia and quickly restored order. Later in the year, Britain oversaw the dismantling of much of Krupp's factory, reducing capacity by half and shipping industrial equipment to France as war reparations. In the hyperinflation of 1923, the firm printed Kruppmarks for use in Essen, which was the only stable currency there. France and Belgium occupied the Ruhr and established martial law. French soldiers"} +{"qid": "test665", "pid": "4735546", "query": "when did france and belgium invade the ruhr", "answer": "1923", "passage": "\"Occupation of the Ruhr\"\nOccupation of the Ruhr The Occupation of the Ruhr () was a period of military occupation of the German Ruhr valley by France and Belgium between 1923 and 1925. The occupation was a response to the Weimar Republic widely and regularly defaulting on reparation payments in the early 1920s. The total reparation sum of £6.6 billion had been dictated by the Triple Entente in 1921 in the Treaty of Versailles, and the reparation payments were due to last several decades. The Ruhr region had been occupied by Allied troops in the immediate aftermath of the First World War, during the"} +{"qid": "test665", "pid": "20172919", "query": "when did france and belgium invade the ruhr", "answer": "1923", "passage": "\"Ruhr Question\"\nthe north, Dortmund in the east, and Düsseldorf in the south. Germany defaulted on reparations, causing France and Belgium to occupy the cities of Düsseldorf, Duisburg, and Ruhrort in 1921 and the remaining Ruhr area stretching east to Dortmund in 1923. The occupation of the Ruhr, including control of the factories and coal mines, lasted until the agreement of the Dawes Plan in 1924. The confiscated of Düsseldorf served as the command center of the occupation of the Ruhr until the French withdrew on August 25th, 1925. At the end of the Second World War, the Allies once again asked"} +{"qid": "test665", "pid": "4735562", "query": "when did france and belgium invade the ruhr", "answer": "1923", "passage": "\"Occupation of the Ruhr\"\nso it never managed to unite the right before it had faded away by the late 1920s, as the NSDAP emerged. Occupation of the Ruhr The Occupation of the Ruhr () was a period of military occupation of the German Ruhr valley by France and Belgium between 1923 and 1925. The occupation was a response to the Weimar Republic widely and regularly defaulting on reparation payments in the early 1920s. The total reparation sum of £6.6 billion had been dictated by the Triple Entente in 1921 in the Treaty of Versailles, and the reparation payments were due to last several"} +{"qid": "test665", "pid": "13704764", "query": "when did france and belgium invade the ruhr", "answer": "1923", "passage": "\"Political views of Albert Einstein\"\nfounding members of the German Democratic Party. In 1921, Einstein refused to attend the third Solvay Congress in Belgium, as his German compatriots were excluded. In 1922, Einstein joined a committee sponsored by the League of Nations, but quickly left when the League refused to act on France's occupation of the Ruhr in 1923. As a member of the German League of Human Rights, Einstein worked hard to repair relations between Germany and France. Einstein moved to the United States in December 1932, where he worked at the California Institute of Technology in Pasadena, California, and lectured at Abraham Flexner's"} +{"qid": "test666", "pid": "4018218", "query": "what type of novel is goodbye mr chips", "answer": "novella", "passage": "\"Goodbye, Mr. Chips (1939 film)\"\nGoodbye, Mr. Chips (1939 film) Goodbye, Mr. Chips is a 1939 British romantic drama film directed by Sam Wood and starring Robert Donat and Greer Garson. Based on the 1934 novella \"\"Goodbye, Mr. Chips\"\" by James Hilton, the film is about Mr Chipping, a beloved aged school teacher and former headmaster of a boarding school who recalls his career and his personal life over the decades. Produced for the British division of MGM at Denham Studios, \"\"Goodbye, Mr. Chips\"\" was voted the 72nd greatest British film ever in the BFI Top 100 British films poll. For his performance as Mr."} +{"qid": "test666", "pid": "4018227", "query": "what type of novel is goodbye mr chips", "answer": "novella", "passage": "\"Goodbye, Mr. Chips (1939 film)\"\ncategories; Robert Donat won for Best Actor, beating Laurence Olivier, Clark Gable and James Stewart, though \"\"Goodbye, Mr. Chips\"\" lost to \"\"Gone With the Wind\"\" in five of the six remaining categories, while \"\"Mr. Smith Goes to Washington\"\" won Best Original Story. (Best Sound went to \"\"When Tomorrow Comes\"\".) \"\"Goodbye, Mr. Chips\"\" was remade as a musical in 1969, starring Peter O'Toole and Petula Clark. Streaming audio Goodbye, Mr. Chips (1939 film) Goodbye, Mr. Chips is a 1939 British romantic drama film directed by Sam Wood and starring Robert Donat and Greer Garson. Based on the 1934 novella \"\"Goodbye, Mr."} +{"qid": "test666", "pid": "721770", "query": "what type of novel is goodbye mr chips", "answer": "novella", "passage": "\"Goodbye, Mr. Chips\"\nin the United States. It starred Martin Clunes and Victoria Hamilton with Henry Cavill, William Moseley, Oliver Rokison and Harry Lloyd. \"\"Goodbye, Mr. Chips\"\" was parodied in the British sketch comedy programmes \"\"Hale and Pace\"\" (as \"\"Piss Off, Mr. Chips\"\") and \"\"Big Train\"\". Goodbye, Mr. Chips Goodbye, Mr. Chips is a novella about the life of a schoolteacher, Mr. Chipping, written by the English writer James Hilton and first published by Hodder & Stoughton in October 1934. It has been adapted into two cinema films and two television presentations. The novella has remained an essential part of the English subject"} +{"qid": "test666", "pid": "721755", "query": "what type of novel is goodbye mr chips", "answer": "novella", "passage": "\"Goodbye, Mr. Chips\"\nGoodbye, Mr. Chips Goodbye, Mr. Chips is a novella about the life of a schoolteacher, Mr. Chipping, written by the English writer James Hilton and first published by Hodder & Stoughton in October 1934. It has been adapted into two cinema films and two television presentations. The novella has remained an essential part of the English subject syllabus taught at Pakistan's higher secondary school level for the past 30 years, although its choice has received some criticism in the recent past due to perceived lack of relevance to the local society and education system. The story was originally issued in"} +{"qid": "test666", "pid": "721758", "query": "what type of novel is goodbye mr chips", "answer": "novella", "passage": "\"Goodbye, Mr. Chips\"\nthe huge success of this book, James Hilton became a best-selling author. The novella tells the story of a beloved school teacher, Mr Chipping, and his long tenure at Brookfield School, a fictional minor British boys' public boarding school located in the fictional village of Brookfield, in the Fenlands. Mr Chips, as the boys call him, is conventional in his beliefs and exercises firm discipline in the classroom. His views broaden, and his pedagogical manner loosens after he marries Katherine, a young woman whom he meets on holiday in the Lake District. Katherine charms the Brookfield teachers and headmaster, and"} +{"qid": "test667", "pid": "20518266", "query": "who won the mens figure skating in 2018 olympics", "answer": "Yuzuru Hanyu", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\nFigure skating at the 2018 Winter Olympics – Men's singles The men's single figure skating competition of the 2018 Winter Olympics was held on 16 and 17 February 2018 at the Gangneung Ice Arena in Gangneung, South Korea. The short program was held on 16 February and the free skating was held on 17 February. This medal event was the 1000th medal event in the history of the Winter Olympic Games. With his victory at the 2018 Winter Olympics, Yuzuru Hanyu became the first male figure skater to win two consecutive gold medals after Dick Button, who did so in"} +{"qid": "test667", "pid": "20518267", "query": "who won the mens figure skating in 2018 olympics", "answer": "Javier Fernández", "passage": "\"Figure skating at the 2018 Winter Olympics – Men's singles\"\n1952. Fellow countryman Shoma Uno won the silver medal, and Spain's Javier Fernández won the bronze medal. Fernández won Spain's first figure skating medal and fourth medal at the Winter Olympics. After the short program, Hanyu, Fernández, Uno, and Jin Boyang were first, second, third, and fourth respectively. Nathan Chen, originally one of the favorites for the podium, skated an uncharacteristically poor short program that placed him at 17th, but fought back to win the free skating with a score of 215.08--8.91 points above the second place free skating by Hanyu. He ended up fifth overall. In the free program,"} +{"qid": "test67", "pid": "19177748", "query": "where was the first season of slasher filmed", "answer": "Orangeville, Ontario, Canada", "passage": "\"Slasher (TV series)\"\none day but return later to film earlier scenes as necessary. As an example of this, Martin cited Mark Ghanimé's first day on set, when his character, Justin Faysal, was laid out in a casket for a scene early in \"\"Slasher\"\"s third episode (Justin's death, which took place in Episode 2, would be filmed later on). On May 1, 2017, \"\"Slasher\"\" began filming a second season in Orangeville, Ontario, Canada. Shaftesbury Films confirmed that the series will not be returning to Super Channel or Chiller for a second season. However, Netflix acquired the rights to the second season. The second"} +{"qid": "test67", "pid": "19177734", "query": "where was the first season of slasher filmed", "answer": "Orangeville, Ontario, Canada", "passage": "\"Slasher (TV series)\"\nSudbury, Parry Sound, and Sault Ste. Marie, Ontario. On May 1, 2017, \"\"Slasher\"\" began filming a second season in Orangeville, Ontario, Canada. The licensing rights for the second season were acquired by Netflix. The season was released as a \"\"Netflix Original\"\" title in various countries on October 17, 2017. The second season titled \"\"Slasher: Guilty Party\"\" is centered on a group of former summer camp counselors who return to an isolated campground in order to bury their sins of the past, before being targeted, one by one, by an unknown killer. The series has been renewed for a third season."} +{"qid": "test670", "pid": "1860805", "query": "when does buffy tell her friends she was in heaven", "answer": "Something to Sing About", "passage": "\"Once More, with Feeling (Buffy the Vampire Slayer)\"\nwould be better for him if Buffy was dead, he also changes his mind and decides to help Buffy; Sweet opines that Buffy is drawn to danger (\"\"Walk Through the Fire\"\"). Meeting Sweet at The Bronze, Buffy offers a deal to Sweet: she will take the place of her sister if she can’t kill him. When asked by Sweet what she thinks about life, Buffy gives her pessimistic take on its meaning (\"\"Something to Sing About\"\"). When the others arrive, she divulges that Willow took her from heaven, and Willow reacts with horror at finding out what she’s done. Upon"} +{"qid": "test671", "pid": "6508491", "query": "the recipient of first jnanpith award was an author which language", "answer": "Malayalam", "passage": "\"Thakazhi Sivasankara Pillai\"\nThakazhi Sivasankara Pillai Thakazhi Sivasankara Pillai (17 April 1912 – 10 April 1999) was an Indian novelist and short story writer in the Malayalam language. He is popularly known as Thakazhi, after his place of birth. He focused on the oppressed classes as the subject of his works, which are known for their attention to historic detail. He wrote several novels and over 600 short stories. His most famous works are \"\"Kayar\"\" (Coir, 1978) and \"\"Chemmeen\"\" (Prawns, 1956). Pillai, a recipient of the Padma Bhushan, was awarded India's highest literary award, the Jnanpith in 1984 for the epic novel \"\"Kayar\"\"."} +{"qid": "test673", "pid": "3393280", "query": "who has played raoul in phantom of the opera", "answer": "Steve Barton", "passage": "\"Michael Ball (singer)\"\nCameron Mackintosh asked Ball to play Raoul in the second casting of \"\"The Phantom of the Opera\"\" in London, which was necessary after Michael Crawford (who played the Phantom) and Steve Barton (who played Raoul) left the London show to appear in the Broadway staging in New York City. Mackintosh thought that Ball would not be under too much pressure as Raoul, and that the part was right for him. Ball played Alex in \"\"Aspects of Love\"\", both in London and New York, and Giorgio in the London production of Stephen Sondheim's \"\"Passion\"\". \"\"Alone Together\"\" was his one-man show first"} +{"qid": "test673", "pid": "10124887", "query": "who has played raoul in phantom of the opera", "answer": "Tim Martin Gleason", "passage": "\"Tim Martin Gleason\"\nOpera. Tim completed a record-setting tenure as Raoul with 3 different American companies of The Phantom of the Opera. Initially a member of the ensemble of the touring company in '01, Tim quickly took over the role of Raoul, playing the role for over three years. He was then asked to join the Broadway production to be Raoul for the record-breaking company when Phantom became the longest-running show in Broadway history. Gleason was then chosen by the creative team to originate the role of Raoul for Phantom: The Las Vegas Spectacular at the Venetian Hotel in Las Vegas. He rejoined"} +{"qid": "test673", "pid": "9544983", "query": "who has played raoul in phantom of the opera", "answer": "Hadley Fraser", "passage": "\"Hadley Fraser\"\nOn 1 and 2 October 2011 Fraser played Raoul in the 25th Anniversary staging of \"\"The Phantom of the Opera at the Royal Albert Hall\"\" in London. He costarred alongside Ramin Karimloo and Sierra Boggess, who played the Phantom and Christine, respectively. Fraser also costarred with Karimloo in the 25th Anniversary concert of \"\"Les Misérables\"\". Hadley has written music for a band called \"\"Sheytoons\"\" with Karimloo, including \"\"Heading West\"\" and \"\"Driftwood.\"\" Fraser appeared in the film adaptation of \"\"Les Misérables\"\", as the Army General of the National Guard. Fraser appeared aside Tom Hiddleston in the Donmar Warehouse's production of Coriolanus"} +{"qid": "test675", "pid": "10877286", "query": "who has the most ncaa basketball tournament appearances", "answer": "Kentucky", "passage": "\"Kentucky Wildcats men's basketball\"\nKentucky Wildcats men's basketball The Kentucky Wildcats men's basketball team is an American college basketball team that represents the University of Kentucky. Kentucky is the most successful NCAA Division I basketball program in history in terms of both all-time wins (2,263) and all-time winning percentage (.764). The Wildcats are currently coached by John Calipari. Kentucky leads all schools in total NCAA tournament appearances (58), NCAA tournament wins (126), NCAA Tournament games played (177), NCAA Sweet Sixteen appearances (43), NCAA Elite Eight appearances (37), and total postseason tournament appearances (65). Further, Kentucky has played in 17 NCAA Final Fours (tied for"} +{"qid": "test675", "pid": "189578", "query": "who has the most ncaa basketball tournament appearances", "answer": "Kentucky", "passage": "\"Hoosier Hysteria\"\nIndiana's collegiate basketball squad, the Indiana Hoosiers men's basketball team has several championships to their credit: The Hoosiers' five NCAA Championships are the fourth in history, tied with Duke, and trailing UCLA (11) Kentucky (8) and North Carolina (6). Their eight trips to the Final Four ranks seventh on the all-time list. The Hoosiers have made 32 appearances in the NCAA Division I Men's Basketball Tournament (fifth-most in NCAA history). In those 32 appearances, Indiana has posted 52 victories, the sixth-most in NCAA history. With their only men's national championship coming in the days before the NCAA Tournament, the Purdue"} +{"qid": "test675", "pid": "13244788", "query": "who has the most ncaa basketball tournament appearances", "answer": "Kentucky", "passage": "\"1969 NCAA College Division Basketball Tournament\"\n1969 NCAA College Division Basketball Tournament The 1969 NCAA College Division Basketball Tournament involved 32 schools playing in a single-elimination tournament to determine the national champion of men's NCAA College Division college basketball as a culmination of the 1968–69 NCAA College Division men's basketball season. It was won by Kentucky Wesleyan College, with Kentucky Wesleyan's George Tinsley named the Most Outstanding Player. American International College's tournament and semifinal appearances were later vacated due to NCAA rules violations. *\"\"tournament appearance vacated\"\" Location: Location: Owensboro Sportscenter Location: Las Vegas Convention Center Location: Butova Gymnasium Location: Henninger Athletic Center Location: McDonald Hall and"} +{"qid": "test675", "pid": "11701254", "query": "who has the most ncaa basketball tournament appearances", "answer": "Kentucky", "passage": "\"Western Kentucky Hilltoppers basketball\"\nWestern Kentucky Hilltoppers basketball The Western Kentucky Hilltoppers men's basketball team is the men's basketball team that represents Western Kentucky University (WKU) in Bowling Green, Kentucky. The Hilltoppers currently compete in Conference USA. The team's most recent appearance in the NCAA Division I Men's Basketball Tournament was in 2013. Rick Stansbury was announced as the team's current head coach on March 28, 2016. The men's basketball program has the 16th most victories in the history of the NCAA and has attained the eighth best winning percentage in NCAA history. The school made an NCAA Final Four appearance in 1971, which"} +{"qid": "test675", "pid": "13244789", "query": "who has the most ncaa basketball tournament appearances", "answer": "Kentucky", "passage": "\"1969 NCAA College Division Basketball Tournament\"\nArena Location: Hilltop Gym Location: Kates Gymnasium *denotes each overtime played Location: Roberts Municipal Stadium *denotes each overtime played 1969 NCAA College Division Basketball Tournament The 1969 NCAA College Division Basketball Tournament involved 32 schools playing in a single-elimination tournament to determine the national champion of men's NCAA College Division college basketball as a culmination of the 1968–69 NCAA College Division men's basketball season. It was won by Kentucky Wesleyan College, with Kentucky Wesleyan's George Tinsley named the Most Outstanding Player. American International College's tournament and semifinal appearances were later vacated due to NCAA rules violations. *\"\"tournament appearance vacated\"\" Location:"} +{"qid": "test676", "pid": "1903060", "query": "which condition would most likely require nutrition delivered through tpn", "answer": "bowel obstruction", "passage": "\"Parenteral nutrition\"\nare unable to obtain adequate nutrients by oral or enteral routes. The Society of Critical Care Medicine (SCCM) and American Society for Parenteral and Enteral Nutrition recommends waiting until hospital day number seven. Absolute indications for TPN: TPN may be the only feasible option for providing nutrition to patients who do not have a functioning gastrointestinal tract or who have disorders requiring complete bowel rest, including bowel obstruction, short bowel syndrome, gastroschisis, prolonged diarrhea regardless of its cause, very severe Crohn's disease or ulcerative colitis, and certain pediatric GI disorders including congenital GI anomalies and necrotizing enterocolitis. The benefit of"} +{"qid": "test676", "pid": "733455", "query": "which condition would most likely require nutrition delivered through tpn", "answer": "bowel obstruction", "passage": "\"Crohn's disease\"\nfor many reasons, including decreased food intake and malabsorption. The risk increases following resection of the small bowel. Such individuals may require oral supplements to increase their caloric intake, or in severe cases, total parenteral nutrition (TPN). Most people with moderate or severe Crohn's disease are referred to a dietitian for assistance in nutrition. The major significant complications of Crohn's disease include bowel obstruction, abscesses, free perforation and hemorrhage, which in rare cases may be fatal. Crohn's disease can be problematic during pregnancy, and some medications can cause adverse outcomes for the fetus or mother. Consultation with an obstetrician and"} +{"qid": "test676", "pid": "4239323", "query": "which condition would most likely require nutrition delivered through tpn", "answer": "short bowel syndrome", "passage": "\"Short bowel syndrome\"\npediatric surgeons at quaternary hospitals who specialize in small bowel surgery. There is no cure for short bowel syndrome except transplant. In newborn infants, the 4-year survival rate on parenteral nutrition is approximately 70%. In newborn infants with less than 10% of expected intestinal length, 5 year survival is approximately 20%. Some studies suggest that much of the mortality is due to a complication of the total parenteral nutrition (TPN), especially chronic liver disease. Much hope is vested in Omegaven, a type of lipid TPN feed, in which recent case reports suggest the risk of liver disease is much lower."} +{"qid": "test676", "pid": "1903069", "query": "which condition would most likely require nutrition delivered through tpn", "answer": "short bowel syndrome", "passage": "\"Parenteral nutrition\"\nroutinely recommended. Such complications are suggested to be the main reason for mortality in people requiring long-term total parenteral nutrition, such as in short bowel syndrome. In newborn infants with short bowel syndrome with less than 10% of expected intestinal length, thereby being dependent upon total parenteral nutrition, 5 year survival is approximately 20%. Infants who are sustained on TPN without food by mouth for prolonged periods are at risk for developing gut atrophy. Other complications are either related to catheter insertion, or metabolic, including refeeding syndrome. Catheter complications include pneumothorax, accidental arterial puncture, and catheter-related sepsis. The complication rate"} +{"qid": "test677", "pid": "789107", "query": "today gestalt psychology ideas are part of which branch of psychology", "answer": "Berlin School of experimental psychology", "passage": "\"Gestalt psychology\"\nGestalt psychology Gestalt psychology or gestaltism (; from \"\"shape, form\"\") is a philosophy of mind of the Berlin School of experimental psychology. Gestalt psychology is an attempt to understand the laws behind the ability to acquire and maintain meaningful perceptions in an apparently chaotic world. The central principle of gestalt psychology is that the mind forms a global whole with self-organizing tendencies. This principle maintains that when the human mind (perceptual system) forms a percept or \"\"gestalt\"\", the whole has a reality of its own, independent of the parts. The original famous phrase of Gestalt psychologist Kurt Koffka, \"\"the whole"} +{"qid": "test677", "pid": "789129", "query": "today gestalt psychology ideas are part of which branch of psychology", "answer": "Berlin School of experimental psychology", "passage": "\"Gestalt psychology\"\ndepend on the order in which they are performed—a pertinent feature for psychological processes, as an experiment performed on a conscious person may influence the outcome of a subsequent experiment by changing the state of mind of that person. Gestalt psychology Gestalt psychology or gestaltism (; from \"\"shape, form\"\") is a philosophy of mind of the Berlin School of experimental psychology. Gestalt psychology is an attempt to understand the laws behind the ability to acquire and maintain meaningful perceptions in an apparently chaotic world. The central principle of gestalt psychology is that the mind forms a global whole with self-organizing"} +{"qid": "test679", "pid": "7782498", "query": "who was the first territorial governor of oklahoma", "answer": "George Washington Steele", "passage": "\"Lieutenant Governor of Oklahoma\"\nof Oklahoma is Republican Todd Lamb. His first term began on January 10, 2011, replacing Lieutenant Governor Jari Askins. Although there was no lieutenant governor in Oklahoma Territory prior to the creation of the U.S. state of Oklahoma, a territorial secretary served as the immediate successor to the governorship of Oklahoma Territory if the position became vacant. Two territorial secretaries succeeded territorial governors. Secretary Robert Martin became acting governor of the territory after Governor George Washington Steele's resignation in 1890 and Secretary William C. Grimes served as acting governor of the territory in 1901. When the Oklahoma Constitution was adopted"} +{"qid": "test679", "pid": "1779244", "query": "who was the first territorial governor of oklahoma", "answer": "George Washington Steele", "passage": "\"Governor of Oklahoma\"\nin turn had to be ratified by territorial lawmakers. The governor had the power to appoint justices to the territorial high court. The governor was responsible to the U.S. president on addressing issues in the territory and served as the representative as the federal government of the United States. He was also the Commander in Chief of the territorial militia. George Washington Steele served as the first governor of Oklahoma Territory. He vetoed the territorial legislature's attempts to move the state capital from Guthrie to Oklahoma City or Kingfisher. He was instrumental in the establishment of two universities that would"} +{"qid": "test679", "pid": "8175891", "query": "who was the first territorial governor of oklahoma", "answer": "George Washington Steele", "passage": "\"George Washington Steele\"\nmilitary officer to serve as the territory's first governor. Harrison appointed Steele to the office, and on May 22, 1890, Steele was inaugurated in Guthrie, Oklahoma Territory. Immediately upon entering office, Governor Steele declared a state of emergency throughout the Territory. This allowed him to best use his experience as a military officer. Steele supplemented the orderly processes of government for the Territory's disorderly situation. Unfortunately for the Governor, much of his time was occupied with a dispute with the Oklahoma Territorial Legislature. The Legislature wanted to move the capital from Guthrie, first to Oklahoma City then to Kingfisher. All"} +{"qid": "test679", "pid": "8175897", "query": "who was the first territorial governor of oklahoma", "answer": "George Washington Steele", "passage": "\"George Washington Steele\"\nOdd Fellows Cemetery. Steele's most enduring legacy would not be found in his home state of Indiana or in national politics, but in Oklahoma. He instituted Oklahoma Territory's first public school system, as well as to help establish Oklahoma's premier universities: University of Oklahoma and Oklahoma State University. One observer noted his tenure as Governor: \"\"He was a most capable executive and his unafraid service to the territory must not be minimized.\"\" National Home for Disabled Volunteer Soldiers, Marion Branch George Washington Steele George Washington Steele (December 13, 1839July 12, 1922) was an American lawyer, soldier, and politician who twice"} +{"qid": "test679", "pid": "11447092", "query": "who was the first territorial governor of oklahoma", "answer": "George Washington Steele", "passage": "\"Oklahoma State Regents for Higher Education\"\nwith the Oklahoma Territory Organic Act, enacted laws creating three institutions of higher education in 1890. The United States Congress mandated that the Territory have access to three different types of colleges: a liberal arts and professional education college, an agriculture and mechanical arts college to meet the provisions of the Morrill Act of 1862, and a normal school college On December 19 of 1890, the first Governor of Oklahoma Territory George Washington Steele signed the bill that created the Oklahoma Territorial University at Norman (now the University of Oklahoma), the institution designated to provide the liberal arts and professional"} +{"qid": "test679", "pid": "2138251", "query": "who was the first territorial governor of oklahoma", "answer": "George Washington Steele", "passage": "\"University of Oklahoma\"\n2017. With the support of Governor George Washington Steele, on December 18, 1890 the Oklahoma Territorial legislature established three universities: the state university in Norman, the agricultural and mechanical college in Stillwater (later renamed Oklahoma State University) and a normal school in Edmond (later renamed University of Central Oklahoma). Oklahoma's admission into the union in 1907 led to the renaming of the Norman Territorial University as the University of Oklahoma. Norman residents donated of land for the university south of the Norman railroad depot. The university's first president ordered the planting of trees before the construction of the first campus"} +{"qid": "test68", "pid": "8868579", "query": "who said if a tree falls in the woods and nobody hears it", "answer": "Philosopher George Berkeley", "passage": "\"If a tree falls in a forest\"\nIf a tree falls in a forest \"\"If a tree falls in a forest and no one is around to hear it, does it make a sound?\"\" is a philosophical thought experiment that raises questions regarding observation and perception. Philosopher George Berkeley, in his work, \"\"A Treatise Concerning the Principles of Human Knowledge\"\" (1710), proposes, \"\"But, say you, surely there is nothing easier than for me to imagine trees, for instance, in a park [...] and nobody by to perceive them. [...] The objects of sense exist only when they are perceived; the trees therefore are in the garden [...]"} +{"qid": "test680", "pid": "295995", "query": "who did the mavericks beat in the finals", "answer": "Miami Heat", "passage": "\"National Basketball Association\"\n7, 83–79. Before the start of the 2010–11 season the NBA had an exciting summer with one of the most anticipated free agent classes of all time. Two of which signed, and one resigned, with the Miami Heat, leading to a season that was heavily centered on their eventual success or failure at taking home the championship. The Heat, led by LeBron James, Dwyane Wade, and Chris Bosh, did in fact make the Finals against the Dallas Mavericks, in a rematch for the franchises of the 2006 Finals. The Mavericks, led by Dirk Nowitzki (the eventual NBA Finals MVP), took"} +{"qid": "test681", "pid": "19054020", "query": "who is the actor that plays sneaky pete", "answer": "Giovanni Ribisi", "passage": "\"Sneaky Pete\"\nreceived acclaim from critics. Rotten Tomatoes gave the first season a 100% 'Certified Fresh' rating based on 22 critic reviews, with the critical consensus \"\"Suspenseful, smart, and terrifically cast, Sneaky Pete is part dramedy, part crime caper, and all in all entertaining.\"\" Metacritic gave the first season a 78 out of 100 score based on 21 critic reviews, indicating 'generally favorable reviews'. Sneaky Pete Sneaky Pete is an American crime drama series created by David Shore and Bryan Cranston. The series follows Marius Josipović (Giovanni Ribisi), a released convict who adopts the identity of his cell mate, Pete Murphy, in"} +{"qid": "test681", "pid": "19054016", "query": "who is the actor that plays sneaky pete", "answer": "Giovanni Ribisi", "passage": "\"Sneaky Pete\"\nSneaky Pete Sneaky Pete is an American crime drama series created by David Shore and Bryan Cranston. The series follows Marius Josipović (Giovanni Ribisi), a released convict who adopts the identity of his cell mate, Pete Murphy, in order to avoid his past life. The series also stars Marin Ireland, Shane McRae, Libe Barer, Michael Drayer, Peter Gerety, and Margo Martindale. The pilot debuted on August 7, 2015, and was followed by a full series order that September. Shore left the project in early 2016 and was replaced by Graham Yost, who served as executive producer and showrunner for the"} +{"qid": "test681", "pid": "3440140", "query": "who is the actor that plays sneaky pete", "answer": "Giovanni Ribisi", "passage": "\"Giovanni Ribisi\"\nHe is of Italian, English and German descent. Ribisi began acting on television during the 1980s and on films during the 1990s. For \"\"My Name Is Earl\"\", he was nominated for the Primetime Emmy Award for Outstanding Guest Actor in a Comedy Series. Ribisi starred in James Cameron's acclaimed highest-grossing film \"\"Avatar\"\". In 2016, Ribisi directed a music video for \"\"Siberian Nights\"\", the third single from \"\"Ash & Ice\"\" by The Kills. Ribisi played Marius in the Amazon series \"\"Sneaky Pete\"\". The pilot was created and produced by David Shore and Bryan Cranston, who also starred in the series. It"} +{"qid": "test681", "pid": "3440139", "query": "who is the actor that plays sneaky pete", "answer": "Giovanni Ribisi", "passage": "\"Giovanni Ribisi\"\nGiovanni Ribisi Antonino Giovanni Ribisi (; born December 17, 1974) is an American film and television actor known for his roles in the TV series \"\"Sneaky Pete\"\", and the films \"\"Avatar\"\", \"\"A Million Ways to Die in the West\"\" and \"\"Ted\"\". He also had recurring roles in \"\"My Name Is Earl\"\" and \"\"Friends\"\". His father, Albert Anthony Ribisi, is an Italian-American musician who had been the keyboard player in People!, and his mother, Gay (née Landrum), is a manager of actors and writers. He is the twin brother of actress Marissa Ribisi and the brother of voice actress Gina Ribisi."} +{"qid": "test681", "pid": "3440142", "query": "who is the actor that plays sneaky pete", "answer": "Giovanni Ribisi", "passage": "\"Giovanni Ribisi\"\n. His twin sister, Marissa, is also a Scientologist. She is married to musician Beck, another Scientologist. Giovanni Ribisi Antonino Giovanni Ribisi (; born December 17, 1974) is an American film and television actor known for his roles in the TV series \"\"Sneaky Pete\"\", and the films \"\"Avatar\"\", \"\"A Million Ways to Die in the West\"\" and \"\"Ted\"\". He also had recurring roles in \"\"My Name Is Earl\"\" and \"\"Friends\"\". His father, Albert Anthony Ribisi, is an Italian-American musician who had been the keyboard player in People!, and his mother, Gay (née Landrum), is a manager of actors and writers."} +{"qid": "test682", "pid": "3654567", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"A Christmas Story\"\nnetworks were running 24 hour marathons in 2017, as well. A sequel involving Ralphie and his family, titled \"\"My Summer Story\"\" (originally released as \"\"It Runs in the Family\"\"), was made in 1994. With the exceptions of Tedde Moore as Ralphie's teacher (Miss Shields) and Jean Shepherd as the narrator (the voice of the adult Ralphie), it features an entirely different cast. A series of television films involving the Parker family, also from Shepherd stories, were made by PBS, including \"\"Ollie Hopnoodle's Haven of Bliss\"\" (1988), \"\"The Star-Crossed Romance of Josephine Cosnowski\"\" (1985), \"\"The Great American Fourth of July and"} +{"qid": "test682", "pid": "16771134", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"A Christmas Story 2\"\nA Christmas Story 2 A Christmas Story 2 (also known in the trailer as A Christmas Story 2: Official Sequel) is a 2012 film directed by Brian Levant and starring Daniel Stern and Braeden Lemasters. The film is a direct sequel to the 1983 film \"\"A Christmas Story\"\", which ignores the events of the 1994 film \"\"My Summer Story\"\". It was released straight to DVD on October 30, 2012. Although billed as an \"\"official sequel\"\" in the trailer, the film is not based on Jean Shepherd's writings, instead relying on an original script by Nat Mauldin, who also narrates the"} +{"qid": "test682", "pid": "16771138", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"A Christmas Story 2\"\nthe original picture again.\"\" A Christmas Story 2 A Christmas Story 2 (also known in the trailer as A Christmas Story 2: Official Sequel) is a 2012 film directed by Brian Levant and starring Daniel Stern and Braeden Lemasters. The film is a direct sequel to the 1983 film \"\"A Christmas Story\"\", which ignores the events of the 1994 film \"\"My Summer Story\"\". It was released straight to DVD on October 30, 2012. Although billed as an \"\"official sequel\"\" in the trailer, the film is not based on Jean Shepherd's writings, instead relying on an original script by Nat Mauldin,"} +{"qid": "test682", "pid": "4289198", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"Ollie Hopnoodle's Haven of Bliss\"\n\"\"Ollie Hopnoodle\"\" as a \"\"Critic's Choice\"\" for viewers in 1989. PBS and WGBH made a series of TV movies with Shepherd, as part of American Playhouse, based on the fictional Parker family, including \"\"The Great American Fourth of July and Other Disasters\"\", \"\"The Star-Crossed Romance of Josephine Cosnowski\"\", and \"\"The Phantom of the Open Hearth\"\". The theatrical sequel to \"\"A Christmas Story\"\" was Shepherd's 1994 \"\"My Summer Story (It Runs in the Family)\"\", which follows a younger Ralphie than depicted in \"\"Ollie Hopnoodle\"\". Ollie Hopnoodle's Haven of Bliss Ollie Hopnoodle's Haven of Bliss is a 1988 television comedy film written"} +{"qid": "test682", "pid": "3654568", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"A Christmas Story\"\nOther Disasters\"\" (1982), and \"\"The Phantom of the Open Hearth\"\" (1976). \"\"A Christmas Story 2\"\" is another sequel which ignores the references and events of \"\"My Summer Story\"\" and was released direct-to-video in 2012 and directed by Brian Levant. It was filmed in New Westminster, British Columbia, Canada. In 2000, a stage play adaptation of \"\"A Christmas Story\"\" was written by Philip Grecian. In November 2012, \"\"\"\", based on the film, opened on Broadway. Written by Benj Pasek and Justin Paul (music and lyrics) and Joseph Robinette (book), the musical opened to positive reviews. The run ended December 30, 2012."} +{"qid": "test682", "pid": "4289207", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"My Summer Story\"\nMy Summer Story My Summer Story, originally released in theaters as It Runs in the Family, is a 1994 film that follows the further adventures of the Parker family from \"\"A Christmas Story\"\". Like the previous film, it is based on semi-autobiographical stories by Jean Shepherd, primarily from his book \"\"In God We Trust, All Others Pay Cash\"\". The opening of the film makes direct reference to the events of \"\"A Christmas Story\"\", and the ending narration strongly parallels it. However, because the cast of the original film had aged to the point where they no longer fit their roles,"} +{"qid": "test682", "pid": "3654549", "query": "sequel to a christmas story it runs in the family", "answer": "My Summer Story", "passage": "\"A Christmas Story\"\nin the sequel, \"\"My Summer Story\"\". Jeff Gillen was an old friend of Clark's who had been in one of his earliest films. The schoolyard bully, Scut Farkus, was played by Zack Ward, now an actor, writer and director, who had actually been bullied himself while in elementary school. In 2017, he said he was surprised at the impact his role had had over the years. \"\"I saw that I was ranked — as Christmas villains go — higher than the Grinch. That's amazing.\"\" The screenplay for \"\"A Christmas Story\"\" is based on material from author Jean Shepherd's collection of"} +{"qid": "test683", "pid": "2220533", "query": "when did virgin australia (formerly virgin blue) commence flying in australia", "answer": "November 1999", "passage": "\"Virgin Australia\"\nVirgin Australia Virgin Australia Airlines is Australia's second-largest airline after Qantas and it is the largest airline by fleet size to use the Virgin brand. Based in Bowen Hills, Brisbane, the airline was co-founded by British businessman Richard Branson, the founder of Virgin Group and former CEO Brett Godfrey. It was established as Virgin Blue in November 1999 with two aircraft operating on a single route, and suddenly found itself catapulted to the position of Australia's second airline after the collapse of Ansett Australia in September 2001. The airline has grown to directly serve 29 cities in Australia from hubs"} +{"qid": "test684", "pid": "1283453", "query": "a political leader during the roman empire was called", "answer": "emperors", "passage": "\"Gallic Empire\"\nGallic Empire The Gallic Empire () or the Gallic Roman Empire are names used in modern historiography for a breakaway part of the Roman Empire that functioned \"\"de facto\"\" as a separate state from 260 to 274. It originated during the Crisis of the Third Century, when a series of Roman military leaders and aristocrats declared themselves emperors and took control of Gaul and adjacent provinces without attempting to conquer Italy or otherwise seize the central Roman administrative apparatus. It was established by Postumus in 260 in the wake of barbarian invasions and instability in Rome, and at its height"} +{"qid": "test685", "pid": "10212683", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Camp Half-Blood chronicles\"\nhas been on \"\"the New York Times\"\" best seller list for children's book series for 369 weeks. \"\"The Lightning Thief\"\" is the first book in the \"\"Percy Jackson and the Olympians\"\" series. It features Percy Jackson, Annabeth Chase, and Grover Underwood during their travels to the Underworld to try to recover Zeus' stolen master bolt. It was released on July 1, 2005. \"\"The Sea of Monsters\"\" is the second book in the \"\"Percy Jackson and the Olympians\"\" series. In this book, Percy, Annabeth, and Tyson, Percy's cyclops brother, need to go to the Bermuda Triangle, also known as the Sea"} +{"qid": "test685", "pid": "10212704", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Camp Half-Blood chronicles\"\nmade $226,497,209 worldwide. \"\"Percy Jackson: Sea of Monsters\"\" (also known as \"\"Percy Jackson & The Sea of Monsters\"\") is a 2013 fantasy film and the sequel to the 2010 film \"\"\"\". It continues the adventures of Percy Jackson (Logan Lerman) and his friends, as they look for the golden fleece, in order to save Camp Half-Blood's magical borders from monsters. The film is based on the book \"\"The Sea of Monsters\"\", and was released on August 7, 2013. \"\"The Lightning Thief\"\" is a two-hour-long 2017 Off-Broadway musical adaptation of the first Percy Jackson novel by Theatreworks USA. The stageplay was"} +{"qid": "test685", "pid": "8376738", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Percy Jackson & the Olympians\"\nthe way Percy's sword works. In 2004, the book was sold to Miramax Books for enough money for Riordan to quit his job and focus on writing. After it was released on 28 June 2005, it sold over 1.2 million copies. The book was released in multiple versions, including hardcover, paperback and audio editions. It has been translated into multiple languages and published all over the world. \"\"The Lightning Thief\"\" is the first book in the series and was released on July 1, 2005. After a harrowing experience at his school trip, Percy Jackson returns home for the summer vacation,"} +{"qid": "test685", "pid": "8376765", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Percy Jackson & the Olympians\"\nof Unfortunate Events\"\" story editor Joe Tracz wrote a new Off Broadway musical adaptation of Percy Jackson tale “The Lightning Thief. \"\"The Heroes of Olympus\"\" is a sequel series, also based on Camp Half-Blood and the Greek and Roman mythologies. The first book \"\"The Lost Hero\"\" was released on October 12, 2010. Like the first series, there are five books. The official website requires a password, later revealed as \"\"newhero\"\". On December 1, 2010, the site went live. The second book in \"\"The Heroes of Olympus\"\", \"\"The Son of Neptune\"\", was released in October 2011. The third book, \"\"The Mark"} +{"qid": "test685", "pid": "10212700", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Camp Half-Blood chronicles\"\nPercy Jackson written by Mary-Jane Knight, who is not credited on the front cover. It features illustrations of characters in the series by Antonio Caparo (as trading cards in pockets) and chapters about Percy Jackson, Camp Half-Blood, and places, gods, monsters, and items from mythology. It was released by Hyperion on January 18, 2010 (156 pp; 1-4231-2171-6) and termed Book 8 in the Percy Jackson series by Amazon or the publisher. The British edition was published by Puffin Books in March as \"\"Percy Jackson: The Ultimate Guide\"\". \"\"The Lightning Thief Graphic Novel\"\" is an adaptation of \"\"The Lightning Thief\"\" into"} +{"qid": "test685", "pid": "8359746", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"The Lightning Thief\"\nThe Lightning Thief The Lightning Thief is an American fantasy-adventure novel based on Greek mythology, the first young adult novel written by Rick Riordan in the \"\"Percy Jackson & the Olympians\"\" series. The manuscript was sold in an auction to Miramax Books, an imprint of Hyperion Books for Children and thus Disney Publishing (succeeded by the Disney Hyperion imprint). The novel charts the adventures of modern-day twelve-year-old Percy Jackson as he discovers he is a demigod, the son of a mortal woman and the Greek god Poseidon. Percy and his friends Annabeth Chase and Grover Underwood go on a quest"} +{"qid": "test685", "pid": "18192193", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Percy Jackson's Greek Gods\"\nentitled \"\"Percy Jackson and the Lightning Thief\"\" rather than \"\"The Lightning Thief\"\", and so on.) On April 21, 2013, Rick Riordan announced on his Twitter account that he was writing a new book based on the stories of Greek mythology from Percy Jackson's point of view. He later confirmed this in his blog. While on tour for \"\"The House of Hades\"\" Rick Riordan also revealed that the book is 450 pages long, with illustrations throughout. It was released on August 19, 2014. John Rocco, the illustrator of the book, announced that there will be 60 full-color paintings drawn by him"} +{"qid": "test685", "pid": "9198594", "query": "what is the first book of percy jackson", "answer": "The Lightning Thief", "passage": "\"Rick Riordan\"\nwhich became the first book in the Tres Navarre series. His big breakthrough was \"\"The Lightning Thief\"\" (2005), the first novel in the five-volume Percy Jackson series, which placed a group of adolescents in a Greco-Roman mythological setting. Since then, Riordan has written \"\"The Kane Chronicles\"\" trilogy and \"\"The Heroes of Olympus\"\" series. \"\"The Kane Chronicles\"\" (2010-2012) focused on Egyptian mythology; \"\"The Heroes of Olympus\"\" was the sequel to the Percy Jackson series. Riordan also helped Scholastic Press develop \"\"The 39 Clues\"\" series and its spinoffs, and penned its first book, \"\"The Maze of Bones\"\" (2008). His most recent publications"} +{"qid": "test686", "pid": "8252380", "query": "who sings the song only in my dreams", "answer": "Debbie Gibson", "passage": "\"Only in My Dreams\"\nDM 2532 'Only in My Dreams 1998' (released February 1998). The basic rhythm is modified from the Dream House Version of the original song on Atlantic DM 86556, track 3. 'Only in My Dreams 1998' Only in My Dreams \"\"Only in My Dreams\"\" is the debut single for American singer-songwriter-actress Debbie Gibson. Released December 16, 1986, as a maxi single (Atlantic DM 86744), and then in remixed form (Vocal/3:50, as described herein) February 1987, the song was written by Gibson in 1984, two years before she recorded it. Produced by Fred Zarr and engineered by Don Feinberg for BiZarr Music,"} +{"qid": "test687", "pid": "13632924", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Alabama Department of Public Health\"\nand is charged with the responsibility for safeguarding the public health through enforcement of the public health laws of the State of Alabama...\"\" \"\"The Medical Association of the State of Alabama is the State Board of Health. The State Board of Health and its administrative arm, the Department of Public Health, have central offices located in the state’s capital city, Montgomery, Alabama.\"\" \"\"The terms State Board of Health, State Committee of Public Health, State Department of Public Health, and State Health Officer are used interchangeably except where the context prohibits.\"\" \"\"The Board functions through the State Committee of Public Health"} +{"qid": "test687", "pid": "4164734", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Coosa River\"\nCoosa River The Coosa River is a tributary of the Alabama River in the U.S. states of Alabama and Georgia. The river is about long. The Coosa River begins at the confluence of the Oostanaula and Etowah rivers in Rome, Georgia, and ends just northeast of the Alabama state capital, Montgomery, where it joins the Tallapoosa River to form the Alabama River just south of Wetumpka. Around 90% of the Coosa River's length is located in Alabama. Coosa County, Alabama, is located on the Coosa River. The Coosa is one of Alabama's most developed rivers. Most of the river has"} +{"qid": "test687", "pid": "682944", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Montgomery, Alabama\"\nU.S. Congress for the 2nd district. The city is served by a nine-member city council, elected from nine single-member districts of equal size population. As the seat of Montgomery County, the city is the location of county courts and the county commission, elected separately. Montgomery is the capital of Alabama, and hosts numerous state government offices, including the office of the Governor, the Alabama Legislature, and the Alabama Supreme Court. At the federal level, Montgomery is part of Alabama's 2nd, 7th, and 3rd Congressional district, currently represented by Martha Roby, Terri Sewell, and Mike Rogers, respectively. Montgomery's crime rates compare"} +{"qid": "test687", "pid": "991452", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Wetumpka, Alabama\"\nshifting toward the southern and central part of the state. Both the Black Belt cotton barons and the Mobilians wanted the capital moved. Compromise indicated a new, centrally located capital, accessible by river and by steamboat. The lead contenders were Wetumpka and the newer city of Montgomery, a few miles south. Neither city had a majority of support; representatives from north Alabama, enraged that the capital was being moved from Tuscaloosa, were indifferent to either site. Just before the vote, Montgomery lured an expensive French chef to the new hotel that had been built to house the state's representatives if"} +{"qid": "test687", "pid": "17253998", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Capitol City Plume Superfund site\"\nCapitol City Plume Superfund site The Capitol City Plume, which also is referred to as the Capital City Plume, is an area of contaminated groundwater located beneath the western downtown area of Montgomery, Alabama. The contamination was discovered in 1993 by the Alabama Department of Environmental Management (ADEM) which was investigating soil contamination at the Retirement Systems of Alabama Energy Plant in the city. After assessment by the United States Environmental Protection Agency (EPA) it was proposed for inclusion in the National Priorities List (NPL) in May 2000. The City of Montgomery managed to keep the site off of the"} +{"qid": "test687", "pid": "17254007", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Capitol City Plume Superfund site\"\narea has remained open for business and redevelopment. This includes the building of a new Riverfront Amphitheater, a Conference Complex, and parks and attracting new retail outlets, housing, offices, and industry. Capitol City Plume Superfund site The Capitol City Plume, which also is referred to as the Capital City Plume, is an area of contaminated groundwater located beneath the western downtown area of Montgomery, Alabama. The contamination was discovered in 1993 by the Alabama Department of Environmental Management (ADEM) which was investigating soil contamination at the Retirement Systems of Alabama Energy Plant in the city. After assessment by the United"} +{"qid": "test687", "pid": "966162", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Daphne, Alabama\"\nDaphne, Alabama Daphne () is a city in Baldwin County, Alabama, United States, on the eastern shoreline of Mobile Bay. The city is located along I-10, 11 miles east of Mobile and 170 miles southwest of the state capital of Montgomery. The 2010 United States Census lists the population of the city as 21,570, making Daphne the most populous city in Baldwin County. It is a principal city of the Daphne-Fairhope-Foley metropolitan area, which includes all of Baldwin County. The inhabited history of what is now called Daphne dates at least to the Paleo-Indian period and Native American tribes around"} +{"qid": "test687", "pid": "966192", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Daphne, Alabama\"\nOutpatient rehabilitation services are offered through various practitioners and through physician offices. Daphne, Alabama Daphne () is a city in Baldwin County, Alabama, United States, on the eastern shoreline of Mobile Bay. The city is located along I-10, 11 miles east of Mobile and 170 miles southwest of the state capital of Montgomery. The 2010 United States Census lists the population of the city as 21,570, making Daphne the most populous city in Baldwin County. It is a principal city of the Daphne-Fairhope-Foley metropolitan area, which includes all of Baldwin County. The inhabited history of what is now called Daphne"} +{"qid": "test687", "pid": "18067664", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Bert Nettles\"\nMonroe County in south Alabama. His brothers are David Miller Nettles (1930-1981), George Clay Nettles (born 1932), and Joe Lee Nettles (born 1933). Monroeville, the setting of the 1960 Harper Lee novel \"\"To Kill a Mockingbird\"\", is located halfway between Mobile on the Gulf Coast and the capital city of Montgomery. Nettles graduated in 1958 from the University of Alabama and in 1960 from the University of Alabama School of Law, both institutions located in Tuscaloosa. Thereafter, he was admitted to the bar and worked briefly in Montgomery for the office of the state attorney general, MacDonald Gallion, before he"} +{"qid": "test687", "pid": "975737", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Greenville, Alabama\"\nwas based in Greenville. Greenville is located in southern Alabama at 31°49'52.583\"\" North, 86°37'39.241\"\" West (31.831273, -86.627567). Interstate 65 passes to the west of the city center, with access from exits 128 and 130. U.S. Route 31 passes to the east of the city center. Montgomery, the state capital, is north, the closest city to Greenville with a population above 50,000. Mobile is to the southwest on I-65. According to the U.S. Census Bureau, Greenville has a total area of , of which is land and , or 0.82%, is water. The city of Greenville has a humid subtropical climate,"} +{"qid": "test687", "pid": "5480395", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Alabama State Capitol\"\nAlabama State Capitol The Alabama State Capitol, listed on the National Register of Historic Places as the First Confederate Capitol, is the state capitol building for Alabama. It is located on Capitol Hill, originally Goat Hill, in Montgomery. It was declared a National Historic Landmark on December 19, 1960. Alabama has had five political capitals during its history. The first was the territorial capital in St. Stephens in 1817, followed by the state convention in Huntsville in 1819, then the first \"\"permanent\"\" capital in Cahaba in 1820. It was then moved to Tuscaloosa in 1826, until coming to rest in"} +{"qid": "test687", "pid": "13632927", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Alabama Department of Public Health\"\ncurrent State Health Officer is Dr. Scott Harris, MD, MPH. The Department of Public Health’s Central Office, located in the state’s capital city, Montgomery, Alabama is organized into offices, bureaus, divisions, and units. There are 2000-3000 Alabama Department of Public Health employees, including central office staff, public health area officers and administrators, and county health department staff. The Department divides the state of Alabama into eight Public Health Districts. Each Public Health Area Office is overseen by an District Health Officer or District Administrator. District Offices are responsible for developing public health services and programs specific to the needs of"} +{"qid": "test687", "pid": "974105", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Brent, Alabama\"\ndate in Alabama history, beginning just northeast of Demopolis in Hale County and eventually dissipating at Cheaha Mountain in Clay County. Adjacent Centreville received significant damage as well as locations in nearby counties. Brent was able to be rebuilt. Brent is located near the center of Bibb County at 32°56'24.864\"\" North, 87°10'29.935\"\" West (32.940240, -87.174982). It lies in the Cahaba River valley and is adjacent to the city of Centreville, the county seat. U.S. Route 82 passes through the northern part of town, bypassing the town center, and leads northwest to Tuscaloosa and southeast to Montgomery, the state capital. According"} +{"qid": "test687", "pid": "16442129", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"UHF television broadcasting\"\n\"\"Pray TV\"\". Some significantly populated cities had few or no VHF stations. These cities had UHF stations but lacked major network affiliations but became sound businesses. Some of these stations were located in or near state capital cities or served nearby major rural regions, such as Montgomery, Alabama; Frankfort, Kentucky; Dover, Delaware; Lincoln, Nebraska; Topeka, Kansas; Jefferson City, Missouri; Lansing, Michigan; Harrisburg, Pennsylvania; Madison, Wisconsin; and Springfield, Missouri. In the United States, television stations in or near state capital cities are important because they closely covered the operations of state governments and spread information to residents across their state. TV"} +{"qid": "test687", "pid": "5480423", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Alabama State Capitol\"\nState Supreme Court, the old Supreme Court Library, the rotunda, the old House of Representatives, and the old Senate Chamber. Its buildings and grounds are maintained by the Alabama Historical Commission. Alabama State Capitol The Alabama State Capitol, listed on the National Register of Historic Places as the First Confederate Capitol, is the state capitol building for Alabama. It is located on Capitol Hill, originally Goat Hill, in Montgomery. It was declared a National Historic Landmark on December 19, 1960. Alabama has had five political capitals during its history. The first was the territorial capital in St. Stephens in 1817,"} +{"qid": "test687", "pid": "15110", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "Alabama\nthe state flower is the camellia. Alabama's capital is Montgomery. The largest city by population is Birmingham, which has long been the most industrialized city; the largest city by land area is Huntsville. The oldest city is Mobile, founded by French colonists in 1702 as the capital of French Louisiana. From the American Civil War until World War II, Alabama, like many states in the southern U.S., suffered economic hardship, in part because of its continued dependence on agriculture. Similar to other former slave states, Alabamian legislators employed Jim Crow laws to disenfranchise and otherwise discriminate against African Americans from"} +{"qid": "test687", "pid": "3419472", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Alabama Public Television\"\ncenter are located in Birmingham. APT maintains offices and studio facilities located adjacent to Patterson Field in the state capital of Montgomery, as well as a small secondary studio located in the basement of the Alabama State House. APT also operates a studio in Washington, D.C., in partnership with the Folger Shakespeare Library. The AETC also operates a public radio station, WLRH (89.3 FM) in Huntsville. Alabama was one of the earliest states to enter into educational television broadcasting when the Alabama General Assembly created the Alabama Educational Television Commission in 1953. In an unusual move at the time, the"} +{"qid": "test687", "pid": "992383", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Tuscaloosa, Alabama\"\nTuscaloosa, one day before Congress admitted Alabama to the Union as a state. From 1826 to 1846, Tuscaloosa was the capital of Alabama. During this period, in 1831, the University of Alabama was established. The town's population and economy grew rapidly, but the relocation of the capital to Montgomery caused a severe decline. The state legislature established Bryce State Hospital for the Insane in Tuscaloosa in the 1850s, which helped restore the city's fortunes. During the Civil War following Alabama's secession from the Union, several thousand men from Tuscaloosa fought in the Confederate armies. During the last weeks of the"} +{"qid": "test687", "pid": "682968", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Montgomery, Alabama\"\nin 2016, compared to a national average of 1.8 per household. Montgomery has one sister city: Montgomery, Alabama Montgomery is the capital city of the U.S. state of Alabama and the county seat of Montgomery County. Named for Richard Montgomery, it stands beside the Alabama River, on the coastal Plain of the Gulf of Mexico. In the 2010 Census, Montgomery's population was 205,764. It is the second most populous city in Alabama, after Birmingham, and is the 118th most populous in the United States. The Montgomery Metropolitan Statistical Area's population in 2010 was estimated at 374,536; it is the fourth"} +{"qid": "test687", "pid": "682910", "query": "where is the capital city of alabama located", "answer": "Montgomery", "passage": "\"Montgomery, Alabama\"\nMontgomery, Alabama Montgomery is the capital city of the U.S. state of Alabama and the county seat of Montgomery County. Named for Richard Montgomery, it stands beside the Alabama River, on the coastal Plain of the Gulf of Mexico. In the 2010 Census, Montgomery's population was 205,764. It is the second most populous city in Alabama, after Birmingham, and is the 118th most populous in the United States. The Montgomery Metropolitan Statistical Area's population in 2010 was estimated at 374,536; it is the fourth largest in the state and 136th among United States metropolitan areas. The city was incorporated in"} +{"qid": "test688", "pid": "3001976", "query": "when was coffee first made into a drink", "answer": "15th century", "passage": "Coffee\nto soften the seed, which resulted in a fragrant brown liquid. Upon drinking the liquid Omar was revitalized and sustained for days. As stories of this \"\"miracle drug\"\" reached Mocha, Omar was asked to return and was made a saint. The earliest credible evidence of coffee-drinking or knowledge of the coffee tree appears in the middle of the 15th century in the accounts of Ahmed al-Ghaffar in Yemen. It was here in Arabia that coffee seeds were first roasted and brewed, in a similar way to how it is prepared now. Coffee was used by Sufi circles to stay awake"} +{"qid": "test689", "pid": "636348", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"Vancouver Island\"\nfully subducted beneath it and the remnants of the Farallon Plate, the Juan de Fuca Plate, are now subducting below the island. This process has led to Vancouver Island being one of the most seismically active regions in Canada. The subduction zone off the coast of the island forms a section of the Pacific Ring of Fire. The area has been known to host megathrust earthquakes in the past, the last occurring in 1700. In 1946, the Forbidden Plateau in the east of the Vancouver Island Ranges was the epicentre of an earthquake that registered 7.3 on the Richter magnitude"} +{"qid": "test689", "pid": "12076276", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\ndepth of the earthquake places it within the continental crust, not at the margin with the Cascadia subduction zone, and certainly not inside the subduction zone itself. Specifically, the earthquake's epicentre was positioned somewhere in the Forbidden Plateau region, in central Vancouver Island. Though very destructive, the earthquake caused only two deaths: Jacob L. Kingston, aged 69, and Daniel Fidler, who was 50. Kingston suffered a heart attack, while Fidler drowned when his dinghy was swamped by a wave. In Vancouver, damage consisted of lofty buildings oscillating violently, and a piece of masonry fell from the local railway station. In"} +{"qid": "test689", "pid": "12076273", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\n1946 Vancouver Island earthquake The 1946 Vancouver Island earthquake struck Vancouver Island on the Coast of British Columbia, Canada, on June 23 at 10:15 a.m. with a magnitude estimated at 7.0 and 7.5 . The main shock epicenter occurred in the Forbidden Plateau area northwest of Courtenay. While most of the large earthquakes in the Vancouver area occur at tectonic plate boundaries, the 1946 Vancouver Island earthquake was a crustal event. Shaking was felt from Portland, Oregon to Prince Rupert, British Columbia. This is one of the most damaging earthquakes in the history of British Columbia, but damage was restricted"} +{"qid": "test689", "pid": "12076281", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\nsustained for about a minute even in Seattle. The earthquake caused significant movement among structures, moving one wall about and caused one home to shift for off its foundation. The total affected area in Canada and the United States was about . 1946 Vancouver Island earthquake The 1946 Vancouver Island earthquake struck Vancouver Island on the Coast of British Columbia, Canada, on June 23 at 10:15 a.m. with a magnitude estimated at 7.0 and 7.5 . The main shock epicenter occurred in the Forbidden Plateau area northwest of Courtenay. While most of the large earthquakes in the Vancouver area occur"} +{"qid": "test689", "pid": "12076280", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\nan aerial photographic survey of Vancouver Island had commenced in 1946, soon after the earthquake, and these photographs were eventually studied by a geoscientist in the late 1970s. South of the Canada–United States border in Washington State, some chimneys fell at Eastsound on Orcas Island and a concrete mill was damaged at Port Angeles. In Seattle, some damage occurred on upper floors of tall buildings, and one bridge was damaged. The shock was strongly felt at Bellingham, Olympia, Raymond, and Tacoma. The earthquake was powerful enough to knock the needle off a seismograph at the University of Washington, and was"} +{"qid": "test689", "pid": "12076275", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\ncomputer interpretation of seismic data from over 50 stations has shown that a possible explanation of the earthquake includes a strike-slip fault corresponding to the lengthy axis of Vancouver Island, known as the Beaufort Range Fault. A fault running across Vancouver Island, corresponding to the projection of the underwater Nootka Fault on the British Columbia Coast, is also a possibility but an unlikely one because the earthquake showed no evidence of offsets along a series of highways that follows much of the eastern coastline of Vancouver Island, called Island Highway, and other roads between Courtenay and Campbell River. The estimated"} +{"qid": "test689", "pid": "12076274", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\nbecause there were no heavily populated areas near the epicentre, where severe shaking occurred. This earthquake is Canada's largest historic onshore earthquake. However, the greatest earthquake in Canadian history recorded by seismometers was the 1949 Queen Charlotte earthquake, an interplate earthquake that occurred on the ocean bottom just off the rugged coast of Graham Island, which reached magnitude 8.1 on the moment magnitude scale. The tectonics that caused the 1946 Vancouver Island earthquake are poorly known. No surface expression of the offset was noticed, most likely because the epicentre area is very remote and densely forested. A comprehensive examination and"} +{"qid": "test689", "pid": "12076278", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"1946 Vancouver Island earthquake\"\nin Comox, Port Alberni, and Powell River, on the eastern side of the Strait of Georgia. Some chimneys were fractured in Victoria, and people in Victoria and Vancouver experienced great fright, with some seen fleeing into the streets. Landslides created by the earthquake were common throughout Vancouver Island. Land subsidence resulted from the earthquake, most commonly around shorelines on the Strait of Georgia. This included the bottom of Deep Bay which sank between and . These measurements were reported by the Canadian Hydrographic Service. Also, a ground shift occurred on Read Island. Ships throughout the region were affected, and those"} +{"qid": "test689", "pid": "4166046", "query": "when was the last time vancouver had an earthquake", "answer": "1946", "passage": "\"Courtenay, British Columbia\"\nJune 1946, a 7.3 magnitude earthquake struck just west of Courtenay, with the epicentre located at Forbidden Plateau. The earthquake was felt as far north as Prince Rupert and as far south as Portland, Oregon. Many of the town's chimneys were destroyed, and there was significant damage to the post office and the Courtenay elementary school. This was the largest earthquake to hit Vancouver Island, and the largest onshore earthquake in Canada on record. There were only two reported deaths: one Seattle man died of a heart attack and another drowned when his boat capsized due to a resulting wave."} +{"qid": "test69", "pid": "4661041", "query": "turkish finnish and hungarian belong to which family of languages", "answer": "Uralic languages", "passage": "\"Demographics of Europe\"\nsuch as Scots, Welsh, Bretons and Basques, making it difficult to quantify a \"\"British\"\" or \"\"French\"\" ethnicity, for example. Approximately 20 million non-Europeans live in the EU, 4% of the overall population. Most of the languages of Europe belong to the Indo-European language family. This family is divided into a number of branches, including Romance, Germanic, Baltic, Slavic, Albanian, Celtic and Greek. The Uralic languages, which include Hungarian, Finnish, and Estonian, also have a significant presence in Europe. The Turkic and Mongolic families also have several European members, while the North Caucasian and Kartvelian families are important in the southeastern"} +{"qid": "test69", "pid": "361070", "query": "turkish finnish and hungarian belong to which family of languages", "answer": "Uralic languages", "passage": "Scandinavia\nthe church and law courts remained Icelandic. The Scandinavian languages are (as a language family) unrelated to Finnish, Estonian and Sami languages, which as Uralic languages are distantly related to Hungarian. Owing to the close proximity, there is still a great deal of borrowing from the Swedish and Norwegian languages in the Finnish and Sami languages. The long history of linguistic influence of Swedish on Finnish is also due to the fact that Finnish, the language of the majority in Finland, was treated as a minority language while Finland was part of Sweden. Finnish-speakers had to learn Swedish in order"} +{"qid": "test69", "pid": "428986", "query": "turkish finnish and hungarian belong to which family of languages", "answer": "Uralic languages", "passage": "\"Uralic languages\"\nimpetus from the fact that these languages, unlike most of the other languages spoken in Europe, are not part of what is now known as the Indo-European family. In 1717, Swedish professor Olof Rudbeck proposed about 100 etymologies connecting Finnish and Hungarian, of which about 40 are still considered valid. Several early reports comparing Finnish or Hungarian with Mordvin, Mari or Khanty were additionally collected by Leibniz and edited by his assistant Johann Georg von Eckhart. In 1730, Philip Johan von Strahlenberg published his book (\"\"The North and East Parts of Europe and Asia\"\"), surveying the geography, peoples and languages"} +{"qid": "test69", "pid": "12624804", "query": "turkish finnish and hungarian belong to which family of languages", "answer": "Uralic languages", "passage": "\"Finnish language\"\nIt modifies and inflects nouns, adjectives, pronouns, numerals and verbs, depending on their roles in the sentence. Finnish is a member of the Finnic group of the Uralic family of languages. The Finnic group also includes Estonian and a few minority languages spoken around the Baltic Sea. Finnish demonstrates an affiliation with other Uralic languages (such as Hungarian) in several respects including: Several theories exist as to the geographic origin of Finnish and the other Uralic languages. The most widely held view is that they originated as a Proto-Uralic language somewhere in the boreal forest belt around the Ural Mountains"} +{"qid": "test693", "pid": "12168450", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 8)\"\nI'm a Celebrity...Get Me Out of Here! (UK series 8) I'm a Celebrity... Get Me Out of Here! returned to ITV for an eighth series from 16 November to 5 December 2008. Ant & Dec returned to present the main show on ITV, whilst Matt Willis, Emma Willis and Mark Durden-Smith returned to host spin-off show \"\"I'm a Celebrity...Get Me Out of Here! NOW!\"\" on ITV2. It was the first series to use a redesigned logo, which imitates the Hollywood Sign. The winner of this series was Joe Swash. The show began with 10 celebrity contestants. On 19 November, they"} +{"qid": "test693", "pid": "12168454", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 8)\"\nin the second battle. This feature replaced the 'Celebrity Chests' for five episodes. All ratings are taken from the UK Programme Ratings website, BARB. I'm a Celebrity...Get Me Out of Here! (UK series 8) I'm a Celebrity... Get Me Out of Here! returned to ITV for an eighth series from 16 November to 5 December 2008. Ant & Dec returned to present the main show on ITV, whilst Matt Willis, Emma Willis and Mark Durden-Smith returned to host spin-off show \"\"I'm a Celebrity...Get Me Out of Here! NOW!\"\" on ITV2. It was the first series to use a redesigned logo,"} +{"qid": "test693", "pid": "15154051", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 11)\"\nI'm a Celebrity...Get Me Out of Here! (UK series 11) I'm a Celebrity...Get Me Out of Here! returned for its eleventh series on 13 November 2011. Ant & Dec returned as presenters for the main show, and its spin off show \"\"Get Me Out of Here...NOW!\"\" returned with new host Laura Whitmore, Russell Kane and Joe Swash as presenters. On 3 December 2011, Dougie Poynter was crowned the new King of the Jungle. Ant & Dec announced on the \"\"Coming Out\"\" show that \"\"I'm a Celebrity...\"\" would return for its 12th series in 2012. The official line-up was confirmed on"} +{"qid": "test693", "pid": "19095100", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 15)\"\nwon the show on 6 December 2015, with Union J singer George Shelley finishing runner up. This was the second time that a late-entry contestant had won the show, the first being Christopher Biggins in 2007. Ant & Dec both returned as presenters of the main show, whilst Joe Swash and Laura Whitmore returned to present the ITV2 spin-off show, \"\"I'm a Celebrity...Get Me Out of Here! NOW!\"\", alongside David Morgan, who replaced Rob Beckett. The celebrity cast line-up for the fifteenth series was confirmed on 9 November 2015. Spencer Matthews withdrew on 20 November, because of health issues. Lady"} +{"qid": "test693", "pid": "12775950", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 9)\"\nwas paid £400,000, making her the highest-paid \"\"I'm a Celebrity\"\" contestant, up until she was surpassed by boxer Amir Khan in series 17. Ant & Dec returned to present the main show. Emma Willis and Matt Willis stood down from the role as presenters of \"\"I'm a Celebrity... Get Me out of Here! Now\"\" and were replaced by last year's winner Joe Swash and Caroline Flack for the 2009 series. The full celebrity line-up was revealed on 11 November 2009. The contestants made their way into the jungle in a variety of ways, including sky-diving and hiking. They were situated"} +{"qid": "test693", "pid": "14118063", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 10)\"\nI'm a Celebrity...Get Me Out of Here! (UK series 10) I'm a Celebrity...Get Me Out of Here! returned for its tenth series on 14 November 2010. It ran for 3 weeks. Ant & Dec returned as the presenters for the main show, and its spin off show \"\"Get Me out of Here... Now\"\" returned, with Caroline Flack and Joe Swash as main presenters. On 4 December 2010, singer Stacey Solomon won the show. On 10 November, ITV officially confirmed the 10 celebrities taking part. Dom Joly, Gail Porter and Alison Hammond, initially reported to be joining the show, were not"} +{"qid": "test693", "pid": "14118069", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 10)\"\ncamp.
Official ratings are taken from the Broadcasters' Audience Research Board. I'm a Celebrity...Get Me Out of Here! (UK series 10) I'm a Celebrity...Get Me Out of Here! returned for its tenth series on 14 November 2010. It ran for 3 weeks. Ant & Dec returned as the presenters for the main show, and its spin off show \"\"Get Me out of Here... Now\"\" returned, with Caroline Flack and Joe Swash as main presenters. On 4 December 2010, singer Stacey Solomon won the show. On 10 November, ITV officially confirmed the 10 celebrities taking part. Dom Joly, Gail Porter and"} +{"qid": "test693", "pid": "13997081", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 2)\"\nI'm a Celebrity...Get Me Out of Here! (UK series 2) The second series of I'm a Celebrity... Get Me out of Here! was broadcast on ITV from 28 April to 12 May 2003. Ant & Dec presented the main show on ITV, whilst Mark Durden-Smith and former contestant Tara Palmer-Tomkinson hosted the spin-off show \"\"I'm A Celebrity... Get Me Out Of Here... Now!\"\" on ITV2. The winner of this series was former English cricketer Phil Tufnell. The series was sponsored by the energy drink V. The show began with ten celebrity contestants: There was no elimination on Day 9 due"} +{"qid": "test693", "pid": "13996877", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 1)\"\nI'm a Celebrity...Get Me Out of Here! (UK series 1) The first series of 'I'm a Celebrity...Get Me Out of Here!' was broadcast on ITV from 25 August to 8 September 2002. Ant & Dec presented the main show on ITV, whilst Louise Loughman hosted the spin-off show \"\"I'm a Celebrity...Get Me Out of Here! NOW!\"\" on ITV2. The winner of this series was radio DJ Tony Blackburn. The show began with 8 celebrity contestants. The contestants take part in daily trials to earn food All ratings are taken from the UK Programme Ratings website, BARB. Series average = 7.57"} +{"qid": "test693", "pid": "13996878", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 1)\"\nmillion viewers. I'm a Celebrity...Get Me Out of Here! (UK series 1) The first series of 'I'm a Celebrity...Get Me Out of Here!' was broadcast on ITV from 25 August to 8 September 2002. Ant & Dec presented the main show on ITV, whilst Louise Loughman hosted the spin-off show \"\"I'm a Celebrity...Get Me Out of Here! NOW!\"\" on ITV2. The winner of this series was radio DJ Tony Blackburn. The show began with 8 celebrity contestants. The contestants take part in daily trials to earn food All ratings are taken from the UK Programme Ratings website, BARB. Series average"} +{"qid": "test693", "pid": "15154055", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 11)\"\naverage, as it is an extra show shown after the series has ended. There were no shows on 15 or 23 November due to live football being shown, however, the ITV2 show still aired as normal. I'm a Celebrity...Get Me Out of Here! (UK series 11) I'm a Celebrity...Get Me Out of Here! returned for its eleventh series on 13 November 2011. Ant & Dec returned as presenters for the main show, and its spin off show \"\"Get Me Out of Here...NOW!\"\" returned with new host Laura Whitmore, Russell Kane and Joe Swash as presenters. On 3 December 2011, Dougie"} +{"qid": "test693", "pid": "13997082", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 2)\"\nto Danniella walking out of the jungle. The contestants take part in daily trials to earn food All ratings are taken from the UK Programme Ratings website, BARB. Series average = 8.55 million viewers. I'm a Celebrity...Get Me Out of Here! (UK series 2) The second series of I'm a Celebrity... Get Me out of Here! was broadcast on ITV from 28 April to 12 May 2003. Ant & Dec presented the main show on ITV, whilst Mark Durden-Smith and former contestant Tara Palmer-Tomkinson hosted the spin-off show \"\"I'm A Celebrity... Get Me Out Of Here... Now!\"\" on ITV2. The"} +{"qid": "test693", "pid": "20950924", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 18)\"\nhanded. Official ratings are taken from BARB, utilising the four-screen dashboard which includes viewers who watched the programme on laptops, smartphones, and tablets within 7 days of the original broadcast. I'm a Celebrity...Get Me Out of Here! (UK series 18) \"\"I'm a Celebrity...Get Me Out of Here!\"\" returned for its eighteenth series on 18 November 2018 on ITV, as confirmed by Ant & Dec at the end of the Coming Out show in December 2017. On 9 August 2018, Anthony McPartlin confirmed that he would not be presenting the then upcoming eighteenth series. On 29 August, it was confirmed that"} +{"qid": "test693", "pid": "16205564", "query": "who used to present i'm a celebrity now", "answer": "Ant & Dec", "passage": "\"I'm a Celebrity...Get Me Out of Here! (UK series 12)\"\nI'm a Celebrity...Get Me Out of Here! (UK series 12) \"\"I'm a Celebrity...Get Me Out of Here!\"\" returned for its twelfth series on 11 November 2012 and finished on 1 December 2012. Ant & Dec returned as main hosts, with Laura Whitmore and Joe Swash returning as hosts of spin-off show \"\"I'm a Celebrity...Get Me Out of Here! NOW!\"\". On 16 June 2012, it was announced that Russell Kane would be leaving \"\"Get Me Out of Here! NOW!\"\". He has been replaced by comedian Rob Beckett. On 1 December 2012, the series was won by \"\"EastEnders\"\" actress Charlie Brooks, with"} +{"qid": "test694", "pid": "666777", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"Francisco Pizarro\"\nand Cortés in North and South America as very similar in style and career. Pizarro, however, faced the Incas with a smaller army and fewer resources than Cortés, at a much greater distance from the Spanish Caribbean outposts that could easily support him, which has led some to rank Pizarro slightly ahead of Cortés in their battles for conquest. Based on sheer numbers alone, Pizarro's military victory was one of the most improbable in recorded history. Pizarro is well known in Peru as the leader of the Spanish conquest. After his invasion, Pizarro destroyed the Inca state and while ruling"} +{"qid": "test694", "pid": "13558407", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"Military history of South America\"\nSouth America in the 16th and 17th centuries, principally by the Spanish and Portuguese, were to have a dramatic impact. The military conquests destroyed the Inca state; the consequent epidemics and social chaos reduced this and other indigenous societies by up to 93%. Few other military events have had as long lasting consequences for a region. The Spanish conquistadors who would conquer the Incas, Francisco Pizarro and his brothers Gonzalo and Hernando, were attracted by the prospects of wealth and power. Pizarro made several early attempts to invade Peru from his main base in Panama; the first, leaving in 1524,"} +{"qid": "test694", "pid": "12449594", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"History of Bolivia\"\na part of the Inca territory as province of Qullasuyu. Francisco Pizarro, Diego de Almagro, and Hernando de Luque led the Spanish discovery and conquest of the Inca empire. They first sailed south in 1524 along the Pacific coast from Panama to confirm the existence of a legendary land of gold called \"\"Biru\"\" (later altered to Peru). Because the rapidly expanding Inca Empire was internally weak, the conquest was remarkably easy. After the Inca Emperor Huayna Capac died in 1527, his sons Huascar and Atahualpa fought over the succession. Although Atahualpa defeated his brother, he had not yet consolidated his"} +{"qid": "test694", "pid": "4216957", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"Spanish conquest of the Inca Empire\"\nSpanish conquest of the Inca Empire The Spanish conquest of the Inca Empire was one of the most important campaigns in the Spanish colonization of the Americas. After years of preliminary exploration and military skirmishes, 168 Spanish soldiers under conquistador Francisco Pizarro, his brothers, and their native allies captured the Sapa Inca Atahualpa in the 1532 Battle of Cajamarca. It was the first step in a long campaign that took decades of fighting but ended in Spanish victory in 1572 and colonization of the region as the Viceroyalty of Peru. The conquest of the Inca Empire (called \"\"Tahuantinsuyu\"\" or \"\"Tawantinsuyu\"\""} +{"qid": "test694", "pid": "1464640", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "Peru\nfather, Inca Huayna Capac. In December 1532, a party of \"\"conquistadors\"\" led by Francisco Pizarro defeated and captured the Inca Emperor Atahualpa in the Battle of Cajamarca. The Spanish conquest of the Inca Empire was one of the most important campaigns in the Spanish colonization of the Americas. After years of preliminary exploration and military conflicts, it was the first step in a long campaign that took decades of fighting but ended in Spanish victory and colonization of the region known as the Viceroyalty of Peru with its capital at Lima, which became known as \"\"The City of Kings\"\". The"} +{"qid": "test694", "pid": "13693841", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"History of Bolivia to 1809\"\nFrancisco Pizarro, Diego de Almagro, and Hernando de Luque led the Spanish discovery and conquest of the Inca Empire. They first sailed south in 1524 along the Pacific coast from Panama to confirm the legendary existence of a land of gold called Biru. Because the rapidly expanding Inca Empire was internally weak, the conquest was remarkably easy. After the Inca Huayna Capac died in 1527, his sons Huascar and Atahualpa fought a civil war over the succession. Although Atahualpa defeated his brother, he had not yet consolidated his power when the Spaniards arrived in 1532, and he seriously misjudged their"} +{"qid": "test694", "pid": "4332194", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"Sapa Inca\"\nInca was known as the Coya. There were two known dynasties, led by the Hurin and Hanan moieties respectively. The latter was in power at the time of Spanish conquest. The last effective Sapa Inca of Inca Empire was Atahualpa, who was executed by Francisco Pizarro and his conquistadors in 1533, but several successors later claimed the title. Little is known of the rulers of the first dynasty of Sapa Incas. Evidently, they were affiliated with the Hurin moiety and their rule did not extend beyond the Kingdom of Cusco. Their origins are tied to the mythical establishment of Cusco"} +{"qid": "test694", "pid": "6250997", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"History of the Ecuadorian–Peruvian territorial dispute\"\nSpanish Crown. Beginning with the arrival of Christopher Columbus in 1492, the Spanish conquistadores expanded the range of the Spanish Crown's reach from early small settlements in the Caribbean to various continental territories, eventually including Central America and most of South America. The Spaniards arrived at the borders of the Inca Empire in 1528, and on November 16, 1532, taking advantage of the Inca Civil War, the tiny army of Francisco Pizarro began the Spanish conquest of Peru. In the following decades, Spain consolidated its power over the entire Andean region, repressing successive indigenous rebellions. To govern the new territories"} +{"qid": "test694", "pid": "103008", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"Diego de Almagro\"\nDiego de Almagro Diego de Almagro (; – July 8, 1538), also known as El Adelantado and El Viejo, was a Spanish conquistador known for his exploits in western South America. He participated with Francisco Pizarro in the Spanish conquest of Peru. From Peru Almagro led an expedition that made him the second European to set foot in central Chile (after ). Back in Peru a longstanding conflict with Pizarro over the control of the former Inca capital of Cuzco erupted into a civil war between the two bands of conquistadores. In the battle of Las Salinas in 1538 Almagro"} +{"qid": "test694", "pid": "103037", "query": "who led the conquest of the incas in south america", "answer": "Francisco Pizarro", "passage": "\"Diego de Almagro\"\n16, 1542, escaped to Cuzco, but was arrested, immediately condemned to death, and executed in the great square of the city. Diego de Almagro Diego de Almagro (; – July 8, 1538), also known as El Adelantado and El Viejo, was a Spanish conquistador known for his exploits in western South America. He participated with Francisco Pizarro in the Spanish conquest of Peru. From Peru Almagro led an expedition that made him the second European to set foot in central Chile (after ). Back in Peru a longstanding conflict with Pizarro over the control of the former Inca capital of"} +{"qid": "test695", "pid": "16188461", "query": "who sings the pokemon theme song season 1", "answer": "Jason Paige", "passage": "\"Jason Paige\"\nepisode of the YouTube series \"\"Hellbenders.\"\" He is a long time member of Broadway Inspirational Voices and has appeared at Mandalay Bay's LIGHT in \"\"For The Record\"\" Baz named after the director Baz Luhrmann. In response to the massive popularity of the \"\"Pokémon Go\"\" mobile game, Paige re-recorded the theme during the height of the game's popularity in July 2016. Later that month, Paige sang another parody of the theme song featuring Dwayne Johnson as a Pokémon. He performed the song in Los Angeles as well. In October 2016 He released his anthem \"\"a tribute to Pokemon Go\"\" as a"} +{"qid": "test696", "pid": "14548382", "query": "where was the rise of the planet of the apes filmed", "answer": "Oahu, Hawaii", "passage": "\"Rise of the Planet of the Apes\"\nthe evolution of the apes, and there's a lot more stories to tell after this. I imagine the next film will be about the all-out war between the apes and humans.\"\" Mark Bomback did an uncredited rewrite of the script. Filming began in July 2010 in Vancouver, British Columbia. Filming also happened in San Francisco, California (the primary setting of the film), and around Oahu, Hawaii, which doubled for the African jungle as the schedule and budget did not allow for location shooting in Africa. As the apes in \"\"Rise\"\" were meant to be actual apes, the producers decided not"} +{"qid": "test697", "pid": "4455267", "query": "where does wild caught sockeye salmon come from", "answer": "the Northern Pacific Ocean", "passage": "\"Sockeye salmon\"\nmillion salmon returned to the Fraser River and its tributaries in 2010. In total, approximately 11,591,000 Fraser sockeye were caught by Canadian fishers and 1,974,000 Fraser sockeye were caught by American fishers. The final projected escapement (fish which were not caught) was 15,852,990 fish. Recent unpredictable fluctuations in runs are speculated to be due to changing water temperatures. Sockeye salmon Sockeye salmon (\"\"Oncorhynchus nerka\"\"), also called red salmon, kokanee salmon, or blueback salmon, is an anadromous species of salmon found in the Northern Pacific Ocean and rivers discharging into it. This species is a Pacific salmon that is primarily red"} +{"qid": "test697", "pid": "4455241", "query": "where does wild caught sockeye salmon come from", "answer": "the Northern Pacific Ocean", "passage": "\"Sockeye salmon\"\nSockeye salmon Sockeye salmon (\"\"Oncorhynchus nerka\"\"), also called red salmon, kokanee salmon, or blueback salmon, is an anadromous species of salmon found in the Northern Pacific Ocean and rivers discharging into it. This species is a Pacific salmon that is primarily red in hue during spawning. They can grow up to in length and weigh . Juveniles remain in freshwater until they are ready to migrate to the ocean, over distances of up to . Their diet consists primarily of zooplankton. Sockeye salmon are semelparous, dying after they spawn. Some populations, referred to as kokanee, do not migrate to the"} +{"qid": "test699", "pid": "8444665", "query": "who added a press room to the white house", "answer": "Richard Nixon", "passage": "\"James S. Brady Press Briefing Room\"\nand general press news conferences took place in various locations, including the Indian Treaty Room, the State Department auditorium, and the White House East Room. In 1969, to accommodate the growing number of reporters assigned to the White House, President Richard Nixon had the indoor swimming pool, which had been installed by the March of Dimes for Franklin D. Roosevelt, covered and turned into press offices and a lounge that could double as a briefing room. In 2000, the room was renamed the \"\"James S. Brady Press Briefing Room\"\" in honor of James Brady, the press secretary who had been"} +{"qid": "test699", "pid": "3297402", "query": "who added a press room to the white house", "answer": "Richard Nixon", "passage": "\"West Wing\"\nplaced on the opposite wall providing secure audio and visual conference capabilities across the hall from the Oval Office. During the 1930s, the March of Dimes constructed a swimming pool so that Franklin Roosevelt could exercise, as therapy for his polio-related disability. Richard Nixon had the swimming pool covered over to create the Press Briefing Room, where the White House Press Secretary gives daily briefings. The journalists, correspondents, and others who are part of the White House press corps have offices near the press briefing room. The West Wing ground floor is also the site of a small dining facility"} +{"qid": "test699", "pid": "455106", "query": "who added a press room to the white house", "answer": "Richard Nixon", "passage": "\"White House\"\nthe State Rooms. Charged with maintaining the historical integrity of the White House, the congressionally authorized committee works with each First Family—usually represented by the First Lady, the White House Curator, and the Chief Usher—to implement the family's proposals for altering the house. During the Nixon Administration (1969–1974), First Lady Pat Nixon refurbished the Green Room, Blue Room, and Red Room, working with Clement Conger, the curator appointed by President Richard Nixon. Mrs. Nixon's efforts brought more than 600 artifacts to the house, the largest acquisition by any administration. Her husband created the modern press briefing room over Franklin Roosevelt's"} +{"qid": "test699", "pid": "12650467", "query": "who added a press room to the white house", "answer": "Richard Nixon", "passage": "\"White House basement\"\nlaundry, elevator control machinery, the water softener, and incinerator, as well as dressing rooms for White House performers. Dwight Eisenhower made the first White House television broadcast from a special room in the basement in 1953, though the \"\"broadcast room\"\" was soon divided for other purposes. A bowling alley was added by Richard Nixon in 1969. There had previously been a bowling alley in the West Wing, built for President Truman in 1947, which had been moved to the Old Executive Office Building in 1955. After the Recording Industry Association of America suggested that the White House Library should be"} +{"qid": "test700", "pid": "4266936", "query": "what was the religion in persia before islam", "answer": "the Zoroastrian religion", "passage": "\"Islam in Iran\"\nIslam in Iran The Islamic conquest of Persia (637–651) led to the end of the Sasanian Empire and the eventual decline of the Zoroastrian religion in Persia. However, the achievements of the previous Persian civilizations were not lost, but were to a great extent absorbed by the new Islamic polity. Islam has been the official religion of Iran since then, except for a short duration after the Mongol raids and establishment of Ilkhanate. Iran became an Islamic republic after the Islamic Revolution of 1979. Before the Islamic conquest, the Persians had been mainly Zoroastrian; however, there were also large and"} +{"qid": "test700", "pid": "4266981", "query": "what was the religion in persia before islam", "answer": "the Zoroastrian religion", "passage": "\"Islam in Iran\"\nof religious buildings according to \"\"آمارنامه اماکن مذهبی\"\" which has been gathered in 2003. Islam in Iran The Islamic conquest of Persia (637–651) led to the end of the Sasanian Empire and the eventual decline of the Zoroastrian religion in Persia. However, the achievements of the previous Persian civilizations were not lost, but were to a great extent absorbed by the new Islamic polity. Islam has been the official religion of Iran since then, except for a short duration after the Mongol raids and establishment of Ilkhanate. Iran became an Islamic republic after the Islamic Revolution of 1979. Before the"} +{"qid": "test700", "pid": "9611191", "query": "what was the religion in persia before islam", "answer": "Zoroastrian", "passage": "\"Persecution of Zoroastrians\"\nflourished. On occasion, the Zoroastrian clergy assisted Muslims in attacks against those who they deemed Zoroastrian heretics. Until the Arab invasion and subsequent Muslim conquest, in the mid 7th century Persia (modern-day Iran) was a politically independent state, spanning from the Mesopotamia to the Indus River and dominated by a Zoroastrian majority. Zoroastrianism was the official state religion of four pre-Islamic Persian empires, the last being the Sassanian empire that passed a decree solidifying this in 224 CE. The Arab invasion abruptly brought to an end the religious domination of Zoroastrianism in Persia and instituted Islam as the official religion"} +{"qid": "test700", "pid": "3547948", "query": "what was the religion in persia before islam", "answer": "Zoroastrian", "passage": "\"Persian carpet\"\nthe borders set by the Achaemenids, with the capital at Ctesiphon. This last Persian dynasty before the arrival of Islam adopted Zoroastrianism as the state religion. When and how exactly the Persians started weaving pile carpets is currently unknown, but the knowledge of carpet weaving, and of suitable designs for floor coverings, was certainly available in the area covering Byzance, Anatolia, and Persia: Anatolia, located between Byzance and Persia, was ruled by the Roman Empire since 133 BCE. Geographically and politically, by changing alliances and warfare as well as by trade, Anatolia connected the East Roman with the Persian Empire."} +{"qid": "test700", "pid": "7110805", "query": "what was the religion in persia before islam", "answer": "the Zoroastrian religion", "passage": "\"Military history of Iran\"\ntheir predecessors, the Parthians, and would end after around 720 years, making it the longest conflict in human history. The Islamic conquest of Persia (633–656) led to the end of the Sassanid Empire and the eventual decline of the Zoroastrian religion in Persia. However, the achievements of the previous Persian civilizations were not lost, but were to a great extent absorbed by the new Islamic polity. Most Muslim historians have long offered the idea that Persia, on the verge of the Arab invasion, was a society in decline and decay and thus it embraced the invading Arab armies with open"} +{"qid": "test700", "pid": "13752937", "query": "what was the religion in persia before islam", "answer": "Zoroastrian", "passage": "\"Persian Empire\"\nera and it has been a UNESCO World Heritage Site since 1979. From 247 BC to 224 AD, Persia was ruled by the Parthian Empire, which supplanted the Hellenistic Seleucid Empire, and then by the Sassanian Empire, which ruled up until the mid-7th century. The Persian Empire in the Sasanian era was interrupted by the Arab conquest of Persia in 651 AD, establishing the even larger Islamic caliphate, and later by the Mongol invasion. The main religion of ancient Persia was the native Zoroastrianism, but after the seventh century, it was slowly replaced by Islam which achieved a majority in"} +{"qid": "test700", "pid": "3547952", "query": "what was the religion in persia before islam", "answer": "the Zoroastrian religion", "passage": "\"Persian carpet\"\nfragments, although reliably dated to the early Sasanian time, do not seem to be related to the splendid court carpets described by the Arab conquerors. Their crude knots incorporating shag on the reverse hints at the need for increased insulation. With their coarsely finished animal and hunting depictions, these carpets were likely woven by nomadic people. The Muslim conquest of Persia led to the end of the Sasanian Empire in 651 and the eventual decline of the Zoroastrian religion in Persia. Persia became a part of the Islamic world, ruled by Muslim Caliphates. Arabian geographers and historians visiting Persia provide,"} +{"qid": "test700", "pid": "16237629", "query": "what was the religion in persia before islam", "answer": "Zoroastrian", "passage": "\"Cyril Elgood\"\nthe commonly delved into history of Post-Islamic Persia as cited through works of such Arabophone Persians such as Ali Abbas Majusi, Razi, and Avicenna, with the less commonly studied history of medicine in Pre-Islamic Persia. In what are perhaps his best recognized works, titled Medical History of Persia and the Eastern Caliphate from the Earliest Times Until 1932, and his Persian Medicine published in Clio Medica series, Elgood traces early concepts of Zoroastrian hygiene, Sassanid influences in Medicine, all the way to Post-Islamic writings of Avicenna, and his contemporaries. Elgood also outlines the debt that Western medicine owes to the"} +{"qid": "test700", "pid": "4267249", "query": "what was the religion in persia before islam", "answer": "Zoroastrian", "passage": "\"Muslim conquest of Persia\"\ncontrol. The violent subjugation of Bukhara is a case in point: Conversion to Islam was gradual, partially as the result of this violent resistance; however, Zoroastrian scriptures were burnt and many priests were executed. However, the Persians began to reassert themselves by maintaining Persian language and culture. Islam would become the dominant religion late in the medieval ages. When Western academics first investigated the Muslim conquest of Persia, they only had to rely on the accounts of the Armenian Christian bishop Sebeos, and accounts in Arabic that were written some time after the events they describe. The most significant work"} +{"qid": "test700", "pid": "19029170", "query": "what was the religion in persia before islam", "answer": "Zoroastrian", "passage": "\"Spread of Islam\"\nthat led to the First Crusade. It used to be argued that Zoroastrianism quickly collapsed in the wake of the Islamic conquest of Persia due to its intimate ties to the Sassanid state structure. Now however, more complex processes are considered, in light of the more protracted time frame attributed to the progression of the ancient Persian religion to a minority; a progression that is more contiguous with the trends of the late antiquity period. These trends are the conversions from the state religion that had already plagued the Zoroastrian authorities that continued after the Arab conquest, coupled with the"} +{"qid": "test701", "pid": "1580920", "query": "why does kerosene oil rise up in the wick of lantern", "answer": "capillary action", "passage": "\"Kerosene lamp\"\nin rural areas of Africa and Asia, where electricity is not distributed or is too costly. Kerosene lamps consume an estimated 77 billion litres of fuel per year, equivalent to 1.3 million barrels of oil per day, comparable to annual U.S. jet-fuel consumption of 76 billion litres per year. A flat-wick lamp is a simple type of kerosene lamp, which burns kerosene drawn up through a wick by capillary action. If this type of lamp is broken, it can easily start a fire. A flat-wick lamp has a fuel tank (fount), with the lamp burner attached. Attached to the fuel"} +{"qid": "test701", "pid": "1580923", "query": "why does kerosene oil rise up in the wick of lantern", "answer": "capillary action", "passage": "\"Kerosene lamp\"\nlit, the kerosene that the wick has absorbed burns and produces a clear, bright, yellow flame. As the kerosene burns, capillary action in the wick draws more kerosene up from the fuel tank. All kerosene flat-wick lamps use the dead-flame burner design, where the flame is fed cold air from below, and hot air exits above. This type of lamp was very widely used by railways, both on the front and rear of trains and for hand signals, due to its reliability. At a time when there were few competing light sources at night outside major towns, the limited brightness"} +{"qid": "test702", "pid": "1851877", "query": "mention the chemical change that proinsulin undergo to be able to act as mature insulin", "answer": "post translational modification", "passage": "Proinsulin\nform mature insulin. Mature insulin has 35 fewer amino acids; 4 are removed altogether, and the remaining 31 form the C-peptide. The C-peptide is abstracted from the center of the proinsulin sequence; the two other ends (the B chain and A chain) remain connected by disulfide bonds. The post translational modification of proinsulin to mature insulin only occurs in the beta cells of the islets of Langerhans. When proinsulin is transported through the Golgi apparatus the C-peptide is cleaved. This cleavage occurs with the aid of two endoproteases. Type I endoproteases, PC1 and PC3, disrupt the C peptide-B chain connection."} +{"qid": "test704", "pid": "501027", "query": "an object that moves around an external axis is said to be", "answer": "revolution or orbital revolution", "passage": "Rotation\nRotation A rotation is a circular movement of an object around a center (or point) of rotation. A three-dimensional object can always be rotated around an infinite number of imaginary lines called \"\"rotation axes\"\" ( ). If the axis passes through the body's center of mass, the body is said to rotate upon itself, or spin. A rotation about an external point, e.g. the Earth about the Sun, is called a revolution or orbital revolution, typically when it is produced by gravity. The axis is called a pole. Mathematically, a rotation is a rigid body movement which, unlike a translation,"} +{"qid": "test704", "pid": "1985925", "query": "an object that moves around an external axis is said to be", "answer": "orbit", "passage": "\"Closed timelike curve\"\ntilted lightcone on the corresponding spacetime diagram. An object in free fall in this circumstance continues to move along its local formula_1 axis, but to an external observer it appears it is accelerating in space as well—a common situation if the object is in orbit, for instance. In extreme examples, in spacetimes with suitably high-curvature metrics, the light cone can be tilted beyond 45 degrees. That means there are potential \"\"future\"\" positions, from the object's frame of reference, that are spacelike separated to observers in an external rest frame. From this outside viewpoint, the object can move instantaneously through space."} +{"qid": "test705", "pid": "6699278", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\nLittle Shop of Horrors (film) Little Shop of Horrors is a 1986 American rock musical comedy horror film directed by Frank Oz. It is a film adaptation of the off-Broadway musical comedy of the same name by composer Alan Menken and writer Howard Ashman about a geeky florist shop worker who finds out his Venus flytrap can speak. Menken and Ashman's Off-Broadway musical was based on the low-budget 1960 film \"\"The Little Shop of Horrors\"\", directed by Roger Corman. The 1986 film stars Rick Moranis, Ellen Greene, Vincent Gardenia, Steve Martin, and Levi Stubbs as the voice of Audrey II."} +{"qid": "test705", "pid": "6699253", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (musical)\"\nstreet urchins: Crystal, Chiffon and Ronette, named after (and reminiscent of) girl groups of the 1960s. The plant is named \"\"Audrey II\"\" in the musical, rather than the film's \"\"Audrey Junior\"\", and instead of being a crossbreed of a butterwort and a Venus Flytrap, in the musical it is a creature from outer space intent on taking over the world. Perhaps the biggest difference is the ending. The musical ends with Orin, Mushnik, Audrey and Seymour all eaten by the plant, and the three girls report that Audrey II's progeny continues to consume people. In the 1960 film, Mushnik and"} +{"qid": "test705", "pid": "6699235", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (musical)\"\nflower district, a sudden eclipse of the sun occurred, and when the light returned, the weird plant had appeared (\"\"Da-Doo\"\"). Seymour, who is secretly in love with Audrey, names the plant Audrey II in her honor. The plant does not thrive in its new environment and appears to be dying. Seymour questions why it should be doing poorly, since he takes such good care of it. He accidentally pricks his finger on a rose thorn, which draws blood, and Audrey II's pod opens thirstily. Seymour realizes that Audrey II requires blood to survive and allows the plant to suckle from"} +{"qid": "test705", "pid": "6699302", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\nof growth and there were three different versions of Mushnik's shop, making it possible for two units to work with different sized plants at the same time. Each of the talking plants had to be cleaned, re-painted and patched up at the end of each shooting day, which would take up to three hours depending on the size. The \"\"Suppertime\"\" number uses two different sizes of Audrey II. When the plant is singing all alone in the shop, it is actually a smaller size: the same size as when it sang \"\"Feed Me\"\", but now standing on a scaled down"} +{"qid": "test705", "pid": "6699284", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\nnitrous oxide, puts on a type of venturi mask to receive a constant flow of the gas. Accidentally breaking an intake valve and unable to remove the mask, Orin begs Seymour for help removing it, but Seymour does nothing. When Orin asks Seymour what he ever did to him, Seymour coldly replies \"\"Nothing, it's what you did to her.\"\" Orin dies from asphyxiation and Seymour drags his body back to Audrey II. While dismembering the body to feed to the plant, Seymour is unknowingly witnessed by Mushnik, who flees in fear. After feeding Orin's parts to Audrey II, which has"} +{"qid": "test705", "pid": "6699290", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\noff the roof of a building, only to be stopped by Patrick Martin. Martin offers to reproduce and sell Audrey IIs and has already grown a smaller Audrey II from one of the cuttings that he harvested earlier. He also warns Seymour that his consent is not necessary as plants are considered to be in the public domain. Realizing Audrey II is planning global domination, Seymour climbs down from the roof with the resolution to destroy the plant. Returning to the shop, he confronts and tries to kill Audrey II, who tears down the shop, fishes him from the rubble"} +{"qid": "test705", "pid": "6699303", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\nset to make it look larger. The full size one that is seen to interact with Seymour and Mushnik was not provided with lip movement, but was built to swallow Mushnik's (mechanical) legs. During Audrey II's final stage of growth, 60 technicians were necessary to operate the one-ton puppet. Oz and Ashman wanted to retain the ending of the musical where Seymour and Audrey die and the plant succeeds and takes over the city of New York, but Geffen was actually against it. \"\"He said you can't do that,\"\" Oz recounts. \"\"But again he knew what Howard and I wanted"} +{"qid": "test705", "pid": "6699281", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\nThey lament that they cannot escape the neighborhood (\"\"Skid Row (Downtown)\"\"). Struggling from a lack of customers, Mr. Mushnik (Vincent Gardenia) decides to close the store, but Audrey suggests he may have more success by displaying an unusual plant that Seymour owns. Immediately attracting a customer, Seymour explains he bought the plant, which he dubbed \"\"Audrey II\"\", from a Chinese flower shop during a solar eclipse (\"\"Da-Doo\"\"). Attracting business to Mushnik's shop, the plant soon starts dying, worrying Seymour. Accidentally pricking his finger, he then discovers Audrey II needs human blood to thrive (\"\"Grow for Me\"\"). Seymour takes Audrey II"} +{"qid": "test705", "pid": "6699287", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (film)\"\nin time to save Audrey, escapes the store with her. Explaining that he fed the plant to become successful and win Audrey's heart, Seymour discovers she has always loved him. Approached by an executive named Patrick Martin (Jim Belushi) from a botanical company, Seymour is offered a contract to breed Audrey II and sell the saplings worldwide. Horrified by the idea, Seymour drives Martin away and realizes he must destroy Audrey II for the sake of humanity. Returning to the shop, Seymour learns that Audrey II is actually an alien from outer space (\"\"Mean Green Mother from Outer Space\"\"). Audrey"} +{"qid": "test705", "pid": "6699270", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (musical)\"\nChiffon), \"\"Mushnik and Son\"\", \"\"Now (It's Just the Gas)\"\", \"\"Sudden Changes,\"\" \"\"Closed for Renovation\"\" and \"\"Call Back in the Morning\"\"; the final cut ending also omits \"\"Finale Ultimo (Don't Feed The Plants)\"\". Other changes include the removal of Mr. Mushnik's adoption proposition and a new ending, in which Seymour is able to save Audrey from Audrey II and then electrocutes the plant after it has destroyed the shop. Seymour and Audrey marry and move to the tract home of her dreams, but a small Audrey II-type bud is seen in their garden, which portends a possible spread of the alien"} +{"qid": "test705", "pid": "6699271", "query": "what was the name of the plant on little shop of horrors", "answer": "Audrey II", "passage": "\"Little Shop of Horrors (musical)\"\nplants. An ending more faithful to the stage version was filmed, in which the plant eats Audrey and Seymour and then, having grown to massive size and reproduced, goes on a King Kong-style rampage through New York City. It was received poorly by test audiences, and the upbeat alternate ending was used for the theatrical cut. In October 2012, the original ending was restored and released with the film as \"\"The Director's Cut\"\" on DVD and Blu-ray. A new song for Audrey II, \"\"Mean Green Mother from Outer Space\"\", was nominated for an Academy Award for Best Original Song. Little"} +{"qid": "test706", "pid": "14219310", "query": "who signed the declaration of independence for maryland", "answer": "William Paca", "passage": "\"Maryland in the American Revolution\"\nlanding at the second provincial capital of Annapolis docks, arguably the first violent resistance to British taxation in the colonies. After a decade of bitter argument and internal discord, Maryland declared itself a sovereign state in 1776. The province was one of the Thirteen Colonies of British America to declare independence from Great Britain and joined the others in signing a collective Declaration of Independence that summer in the Second Continental Congress in nearby Philadelphia. Samuel Chase, William Paca, Thomas Stone, and Charles Carroll of Carrollton signed on Maryland's behalf. Although no major Battles of the American Revolutionary War (1775-1783)"} +{"qid": "test706", "pid": "14219329", "query": "who signed the declaration of independence for maryland", "answer": "William Paca", "passage": "\"Maryland in the American Revolution\"\nto sign the Declaration of Independence, and until his death in 1832 he was its last living signatory. Samuel Chase (1741–1811), was a \"\"firebrand\"\" states-righter and revolutionary, and was a signatory to the United States Declaration of Independence as a representative of Maryland. He co-founded Anne Arundel County's Sons of Liberty chapter with his close friend William Paca, and led opposition to the 1765 Stamp Act. Later he became an Associate Justice of the United States Supreme Court. Public opinion in Maryland before the war was bitterly divided; many Marylanders either actively supported the Crown or were unwilling to countenance"} +{"qid": "test706", "pid": "14219338", "query": "who signed the declaration of independence for maryland", "answer": "William Paca", "passage": "\"Maryland in the American Revolution\"\nnotices to the counties they adjourned. On August 1, all freemen with property elected delegates for the last convention. The ninth and last convention was also known as the Constitutional Convention of 1776. They drafted a constitution, and when they adjourned on November 11, they would not meet again. The Conventions were replaced by the new state government which the Maryland Constitution of 1776 had established. Thomas Johnson became the state's first elected governor. Maryland declared independence from Britain in 1776, with Samuel Chase, William Paca, Thomas Stone, and Charles Carroll of Carrollton signing the Declaration of Independence for the"} +{"qid": "test706", "pid": "7248071", "query": "who signed the declaration of independence for maryland", "answer": "Charles Carroll of Carrollton", "passage": "\"St. Charles College (Maryland)\"\nSt. Charles College (Maryland) St. Charles College was a minor seminary in Catonsville, Maryland, originally located in Ellicott City, Maryland. Charles Carroll of Carrollton (1737-1832) was a signer of the Declaration of Independence for Maryland. One of the wealthiest men in the Americas at that time and a newly elected delegate to the Second Continental Congress and the only Roman Catholic to vote on independence and sign the document, Carroll staked his fortune on the American Revolution. After the Revolution, Carroll became president of the Maryland Senate in the General Assembly and divided his time between the family mansion and"} +{"qid": "test706", "pid": "6035022", "query": "who signed the declaration of independence for maryland", "answer": "Thomas Stone", "passage": "\"Michael J. Stone\"\nMichael J. Stone Michael Jenifer Stone (1747–1812) was an American planter and statesman from Charles County, Maryland. He represented Maryland in the United States House of Representatives. Michael was born to David and Elizabeth (Jenifer) Stone at \"\"Poynton Manor\"\" in Charles County. That home had been founded by his ancestor William Stone who had been the 3rd Governor of the colony of Maryland in the mid seventeenth century. His elder brother Thomas Stone signed the Declaration of Independence, and his younger brother John Hoskins Stone was the 9th Governor of Maryland. As an adult, Michael lived at \"\"Haberdeventure\"\", which was"} +{"qid": "test706", "pid": "18036720", "query": "who signed the declaration of independence for maryland", "answer": "Thomas Stone", "passage": "\"Thomas E. Stone\"\na wide variety of positions with the Bureau of Prohibition, including chief of the 7th District (covering Maryland and the District of Columbia) from 1929 until his retirement in 1934. Stone was born in Leonardtown, Maryland, on July 31, 1869, to William Martin Van Buren and Mary Ann ( Wilkerson) Stone. He was the third of eight children, and a descendent of Thomas Stone (an American planter and lawyer who signed the United States Declaration of Independence as a delegate for Maryland and later worked on the committee that formed the Articles of Confederation in 1777). He was educated in"} +{"qid": "test706", "pid": "1900176", "query": "who signed the declaration of independence for maryland", "answer": "Thomas Stone", "passage": "\"Thomas Stone\"\nby the NPS. The site, located on 6655 Rose Hill Road in Port Tobacco Village, Maryland, opened to the public in 1997. Thomas Stone Thomas Stone (1743 – October 5, 1787) was an American planter and lawyer who signed the United States Declaration of Independence as a delegate for Maryland. He later worked on the committee that formed the Articles of Confederation in 1777. He acted as President of Congress for a short time in 1784. Stone was born into a prominent family at \"\"Poynton Manor\"\" in Charles County, Maryland. He was the second son in the large family of"} +{"qid": "test706", "pid": "1806214", "query": "who signed the declaration of independence for maryland", "answer": "Samuel Chase", "passage": "\"Charles Carroll of Carrollton\"\nin Maryland by a state holiday and historical event commemorating the American Revolution, known as \"\"Peggy Stewart Day\"\" on October 19. In the early 1770s Carroll appears to have embraced the idea that only violence could break the impasse with Great Britain. According to legend, Carroll and Samuel Chase (who would also later sign the Declaration of Independence on Maryland's behalf) had the following exchange: Beginning with his election to Maryland's committee of correspondence in 1774, Carroll represented the colony in most of the pre-revolutionary groups. He became a member of Annapolis' first Committee of Safety in 1775. Carroll was"} +{"qid": "test706", "pid": "1090136", "query": "who signed the declaration of independence for maryland", "answer": "Thomas Stone", "passage": "\"Port Tobacco Village, Maryland\"\nConfederation before moving to Frederick, Maryland. Daniel of St. Thomas Jenifer was a signer of the United States Constitution; and Thomas Stone was one of four of the Maryland delegation who signed the Declaration of Independence. During the Civil War, Port Tobacco became known as a stronghold of Confederate sympathizers, although Union troops occupied the town. Rose O'Neal Greenhow (1814-1864), born here, became renowned as a Confederate spy operating in Washington, DC. Recruited by former US Army captain Thomas Jordan, later promoted to Confederate general, she took over his network in early 1861. Due to military plans she passed to"} +{"qid": "test706", "pid": "1900170", "query": "who signed the declaration of independence for maryland", "answer": "Thomas Stone", "passage": "\"Thomas Stone\"\nThomas Stone Thomas Stone (1743 – October 5, 1787) was an American planter and lawyer who signed the United States Declaration of Independence as a delegate for Maryland. He later worked on the committee that formed the Articles of Confederation in 1777. He acted as President of Congress for a short time in 1784. Stone was born into a prominent family at \"\"Poynton Manor\"\" in Charles County, Maryland. He was the second son in the large family of David (1709–1773) and Elizabeth Jenifer Stone. His brothers Michael J. Stone and John Hoskins Stone also had important political careers. His uncle"} +{"qid": "test706", "pid": "2699594", "query": "who signed the declaration of independence for maryland", "answer": "William Paca", "passage": "\"Province of Maryland\"\nBritain in 1776, with Samuel Chase, William Paca, Thomas Stone, and Charles Carroll of Carrollton signing the Declaration of Independence for the colony. In the 1776–77 debates over the Articles of Confederation, Maryland delegates led the party that insisted that states with western land claims cede them to the Confederation government, and in 1781 Maryland became the last state to ratify the Articles of Confederation. It accepted the United States Constitution more readily, ratifying it on 28 April 1788. Maryland also gave up some territory to create the new District of Columbia after the American Revolution. Province of Maryland The"} +{"qid": "test706", "pid": "1806228", "query": "who signed the declaration of independence for maryland", "answer": "Charles Carroll of Carrollton", "passage": "\"Charles Carroll of Carrollton\"\ngranddaughter of Henry Darnall (Charles Carroll was a great grandson of Henry Darnall). They had seven children before Molly died in 1782, but only three survived infancy: Today, Carroll's descendants continue to own Doughoregan Manor, the largest parcel of land in Howard County, Maryland, with over 1000 acres (4 km²) of valuable but historically preserved land in Ellicott City, Maryland. In the 1940s, newspaper journalist John Hix's syndicated comic \"\"Strange as It Seems\"\" published an interesting, but apocryphal, explanation for Charles Carroll's distinctive signature on the Declaration of Independence. Every member of the Continental Congress who signed this document automatically"} +{"qid": "test706", "pid": "16233614", "query": "who signed the declaration of independence for maryland", "answer": "Charles Carroll of Carrollton", "passage": "\"Protestant Revolution (Maryland)\"\nrestored in Maryland until the American Revolution, when Darnall's great-grandson Charles Carroll of Carrollton, arguably the wealthiest Catholic in Maryland, signed the American Declaration of Independence. The United States Constitution would guarantee freedom of worship for all Americans for the first time. Protestant Revolution (Maryland) The Protestant Revolution of 1689, sometimes called \"\"Coode's Rebellion\"\" after one of its leaders, John Coode, took place in the Province of Maryland when Puritans, by then a substantial majority in the colony, revolted against the proprietary government led by the Roman Catholic Charles Calvert, 3rd Baron Baltimore. The rebellion followed the \"\"Glorious Revolution\"\" in"} +{"qid": "test706", "pid": "14219326", "query": "who signed the declaration of independence for maryland", "answer": "Samuel Chase", "passage": "\"Maryland in the American Revolution\"\nfrom practicing law, and from voting. In the early 1770s, Carroll appears to have begun to embrace the idea that only violence could break the impasse with Great Britain. According to legend, Carroll and Samuel Chase (who would also later sign the Declaration of Independence on Maryland's behalf) had the following exchange: Chase: \"\"We have the better of our opponents; we have completely written them down.\"\" Carroll: \"\"And do you think that writing will settle the question between us?\"\" Chase: \"\"To be sure, what else can we resort to?\"\" Carroll: \"\"The bayonet. Our arguments will only raise the feelings"} +{"qid": "test706", "pid": "6030861", "query": "who signed the declaration of independence for maryland", "answer": "Thomas Stone", "passage": "\"William Stone (Maryland governor)\"\nthe proprietor's government in Maryland were restored. Lord Baltimore granted William Stone as much land as he could ride, by horseback, in a day, as a reward for Stone's faithful service. Stone concentrated on developing his plantation at \"\"Poynton Manor\"\" in what is now Charles County, Maryland, where he died in about 1660. Stone's great-grandson, David (born 1709), greatly expanded the value of the estate at Poynton and returned the family to prominence. William Stone's great-great-grandsons made major contributions to the foundation of Maryland as an American state: Thomas Stone signed the Declaration of Independence, Michael Jenifer Stone represented Maryland"} +{"qid": "test706", "pid": "2699588", "query": "who signed the declaration of independence for maryland", "answer": "Charles Carroll of Carrollton", "passage": "\"Province of Maryland\"\nMass. In 1704, an Act was passed \"\"to prevent the growth of Popery in this Province\"\", preventing Catholics from holding political office. Full religious toleration would not be restored in Maryland until the American Revolution, when Darnall's great-grandson Charles Carroll of Carrollton, arguably the wealthiest Catholic in Maryland, signed the American Declaration of Independence. Early settlements and population centers tended to cluster around the rivers and other waterways that empty into Chesapeake Bay. In the 17th century, most Marylanders lived in rough conditions on small farms. While they raised a variety of fruits, vegetables, grains, and livestock, the main cash"} +{"qid": "test707", "pid": "19155899", "query": "when does wonder woman come out on blue ray", "answer": "September 19, 2017", "passage": "\"Wonder Woman (2017 film)\"\nfeatures a standalone woman superhero, and 87% wished Hollywood would make more women-led superhero films. In May 2017, NASCAR driver Danica Patrick drove her No. 10 car with a \"\"Wonder Woman\"\" paint scheme at the Go Bowling 400 in Kansas and at the Monster Energy Open in Charlotte. \"\"Wonder Woman\"\" was released on Digital HD on August 29, 2017, and on Blu-ray, Blu-ray 3D, 4K Ultra-HD Blu-ray and DVD on September 19, 2017. The film debuted at the top spot of both the NPD VideoScan overall disc sales chart and the Blu-ray Disc sales chart. On May 31, \"\"Wonder Woman\"\""} +{"qid": "test708", "pid": "12845669", "query": "what nba team did derrick rose play for", "answer": "Minnesota Timberwolves", "passage": "\"Derrick Rose\"\nDerrick Rose Derrick Martell Rose (born October 4, 1988) is an American professional basketball player for the Minnesota Timberwolves of the National Basketball Association (NBA). He played one year of college basketball for the Memphis Tigers before being drafted first overall by his hometown Chicago Bulls in the 2008 NBA draft. After being named the NBA Rookie of the Year, Rose, at age 22, became the youngest player to win the NBA Most Valuable Player Award in 2011. Rose was born and raised in Chicago, and attended Simeon Career Academy. He was highly recruited by NCAA scouts and coaches, eventually"} +{"qid": "test708", "pid": "12845717", "query": "what nba team did derrick rose play for", "answer": "Minnesota Timberwolves", "passage": "\"Derrick Rose\"\nreleased in July 2018. In 2011, Rose was estimated by \"\"Crain's Chicago Business\"\" to earn $1.5–$2.5 million annually in endorsements, ranking just outside the top 10 NBA players in that category. In 2012, it was reported that Rose signed a contract extension with Adidas, worth $185 million over 14 years. Derrick Rose Derrick Martell Rose (born October 4, 1988) is an American professional basketball player for the Minnesota Timberwolves of the National Basketball Association (NBA). He played one year of college basketball for the Memphis Tigers before being drafted first overall by his hometown Chicago Bulls in the 2008 NBA"} +{"qid": "test708", "pid": "10182856", "query": "what nba team did derrick rose play for", "answer": "Cleveland Cavaliers", "passage": "\"Bulls–Pistons rivalry\"\nand Charlie Villanueva, and welcomed back Ben Wallace that offseason. However, injuries demoted them from an Eastern Conference power, winning only 27 games in the 2010 season, thus a rebuilding period for the team began. The team did manage to make it to the playoffs once again in 2016, once again losing to the Cleveland Cavaliers in a four-game sweep. After missing the playoffs in a dismal 2008, the Bulls earned the first pick in the 2008 NBA Draft. They selected Chicago native Derrick Rose. The Bulls steadily rose to one of the NBA's elite teams; after a pair of"} +{"qid": "test708", "pid": "802731", "query": "what nba team did derrick rose play for", "answer": "New York Knicks", "passage": "\"Chicago Bulls\"\nuntil the 2015–16 Warriors. Many experts and analysts consider the 1996 Bulls to be one of the greatest teams in NBA history. Michael Jordan and Derrick Rose have both won the NBA Most Valuable Player Award while playing for the Bulls, for a total of six MVP awards. The Bulls share rivalries with the Detroit Pistons, New York Knicks, and the Miami Heat. The Bulls' rivalry with the Pistons was highlighted heavily during the late 1980s and early 1990s. On January 16, 1966 Chicago was granted an NBA franchise to be called the Bulls. The Chicago Bulls became the third"} +{"qid": "test708", "pid": "12845711", "query": "what nba team did derrick rose play for", "answer": "Cleveland Cavaliers", "passage": "\"Derrick Rose\"\nseason after tearing the meniscus in his left knee, necessitating a fourth round of knee surgery for Rose in his nine-year career. On July 25, 2017, Rose signed with the Cleveland Cavaliers. In his debut for the Cavaliers in their season opener against the Boston Celtics on October 17, 2017, Rose scored 14 points in a 102–99 win. On November 24, 2017, Rose left the team to re-evaluate his future in the NBA. His increasing frustration with injuries caused him to question his desire to continue playing. He returned to working with the Cavaliers' medical staff in early December in"} +{"qid": "test708", "pid": "19522664", "query": "what nba team did derrick rose play for", "answer": "New York Knicks", "passage": "\"2016–17 Chicago Bulls season\"\n2016–17 Chicago Bulls season The 2016–17 Chicago Bulls season was the 51st season of the franchise in the National Basketball Association (NBA). Former 2011 MVP and 2009 Rookie of the Year Derrick Rose was traded from his hometown team to the New York Knicks. This was the first season without Rose since the 2012–13 season. Dwyane Wade, who played for the Miami Heat from 2003 to 2016, decided to leave the Heat and sign with his hometown team, the Chicago Bulls. A Chicago native, Wade grew up a fan of the Bulls, and Michael Jordan. The Bulls traded Tony Snell"} +{"qid": "test708", "pid": "14654032", "query": "what nba team did derrick rose play for", "answer": "Chicago Bulls", "passage": "\"2010–11 Chicago Bulls season\"\nAtlanta Hawks in six games in the semifinals, before losing to the Miami Heat in five games in the Conference Finals. The Heat would eventually lose 4-2 to the Dallas Mavericks in the NBA Finals to win their first championship title. As of 2018, this is the only time in the post-Michael Jordan era where the Bulls have made the Conference Finals. The team's season roster is featured in NBA 2K18. |- Kurt Thomas played in his 1000th game in a contest vs the Charlotte Bobcats on Feb 15, 2011 at the United Center. Derrick Rose scored a career high"} +{"qid": "test708", "pid": "802790", "query": "what nba team did derrick rose play for", "answer": "Chicago Bulls", "passage": "\"Chicago Bulls\"\nBulls drafted Jimmy Butler 30th overall in the 2011 NBA draft. After the NBA lockout ended, the Bulls lost Kurt Thomas to free agency, and released Keith Bogans. The Bulls signed veteran shooting guard Richard \"\"Rip\"\" Hamilton to a three-year deal, after he was waived by the Detroit Pistons. The Bulls also gave MVP Derrick Rose a 5-year contract extension worth $94.8 million. Derrick Rose was voted as an NBA All-Star starter for the second consecutive year, and was the third leading voted player overall behind Dwight Howard and Kobe Bryant. Luol Deng was also selected as a reserve for"} +{"qid": "test708", "pid": "4350061", "query": "what nba team did derrick rose play for", "answer": "Chicago Bulls", "passage": "\"Luol Deng\"\n2012 NBA All-Star Game's Eastern Conference team, joining teammate Derrick Rose, who was voted in as a starter. This was the first time since 1997 (when both Michael Jordan and Scottie Pippen made the team) that the Chicago Bulls had had two All-Stars in the All-Star Game. Deng made a buzzer-beating game winner on 24 March 2012, off a tip-in basket to lift the Bulls 102–101 in overtime versus the Toronto Raptors. At the end of the season, Deng was selected for the NBA All-Defensive Second Team. Deng was selected as a reserve for the 2013 NBA All-Star Game, along"} +{"qid": "test709", "pid": "257108", "query": "where did the term liberal arts come from", "answer": "the Roman Empire", "passage": "\"Liberal arts education\"\n– the or \"\"education in a circle\"\" – of late Classical and Hellenistic Greece, the \"\"liberal arts\"\" or \"\"liberal pursuits\"\" (Latin ) were already so called in formal education during the Roman Empire. The first recorded use of the term \"\"liberal arts\"\" () occurs in by Marcus Tullius Cicero, but it is unclear if he created the term. Seneca the Younger discusses liberal arts in education from a critical Stoic point of view in \"\"Moral Epistles\"\". The exact classification of the liberal arts varied however in Roman times, and it was only after Martianus Capella in the 5th century AD"} +{"qid": "test71", "pid": "4325608", "query": "a bond that the issuer has the right to pay off before its maturity date", "answer": "callable", "passage": "\"Callable bond\"\nCallable bond A callable bond (also called redeemable bond) is a type of bond (debt security) that allows the issuer of the bond to retain the privilege of redeeming the bond at some point before the bond reaches its date of maturity. In other words, on the call date(s), the issuer has the right, but not the obligation, to buy back the bonds from the bond holders at a defined call price. Technically speaking, the bonds are not really bought and held by the issuer but are instead cancelled immediately. The call price will usually exceed the par or issue"} +{"qid": "test71", "pid": "4325612", "query": "a bond that the issuer has the right to pay off before its maturity date", "answer": "callable", "passage": "\"Callable bond\"\noptions embedded. Callable bond A callable bond (also called redeemable bond) is a type of bond (debt security) that allows the issuer of the bond to retain the privilege of redeeming the bond at some point before the bond reaches its date of maturity. In other words, on the call date(s), the issuer has the right, but not the obligation, to buy back the bonds from the bond holders at a defined call price. Technically speaking, the bonds are not really bought and held by the issuer but are instead cancelled immediately. The call price will usually exceed the par"} +{"qid": "test71", "pid": "4298133", "query": "a bond that the issuer has the right to pay off before its maturity date", "answer": "callable", "passage": "\"Corporate bond\"\nmaturity. The $20 gain (ignoring time value of money) is in lieu of the regular coupon. However, this is rare for corporate bonds. Some corporate bonds have an embedded call option that allows the issuer to redeem the debt before its maturity date. These are called callable bonds. A less common feature is an embedded put option that allows investors to put the bond back to the issuer before its maturity date. These are called putable bonds. Both of these features are common to the High Yield market. High Grade bonds rarely have embedded options. A straight bond that is"} +{"qid": "test71", "pid": "12183445", "query": "a bond that the issuer has the right to pay off before its maturity date", "answer": "callable", "passage": "\"Puttable bond\"\nlower yield relative to that of a straight bond. Of course, if an issuer has a severe liquidity crisis, it may be incapable of paying for the bonds when the investors wish. The investors also cannot sell back the bond at \"\"any\"\" time, but at specified dates. However, they would still be ahead of holders of non-puttable bonds, who may have no more right than 'timely payment of interest and principal' (which could perhaps be many years to get all their money back). The price behaviour of puttable bonds is the opposite of that of a callable bond. Since call"} +{"qid": "test710", "pid": "11812779", "query": "who heads the executive department of west virginia government", "answer": "the Governor of West Virginia", "passage": "\"Government of West Virginia\"\nGovernment of West Virginia The Government of West Virginia is modeled after the Government of the United States, with three branches: the executive, consisting of the Governor of West Virginia and the other elected constitutional officers; the legislative, consisting of the West Virginia Legislature which includes the Senate and the House of Delegates; and the judicial, consisting of the West Virginia Supreme Court of Appeals and lower courts. The capital and seat of government in West Virginia is the city of Charleston, located in the southwest area of the state. Like all states except Nebraska, West Virginia has a bicameral"} +{"qid": "test712", "pid": "6281667", "query": "when did the uk and us become allies", "answer": "1940", "passage": "\"Fiat M13/40\"\ntracks were reliable, but resulted in relatively low speeds, not much better than infantry tanks such as the Matilda. Armament was sufficient for 1940–41 but did not keep up with the increased armour and firepower on Allied or German tanks. The method of construction, using rivets, was outdated. Most tanks of the era were switching to the use of welding for construction, since rivets can shear off when hit, becoming additional projectiles inside the tank. The two-man turret was less efficient in combat than the three-man turrets used in many other tanks of the era. Radios were not fitted to"} +{"qid": "test713", "pid": "10067213", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"The Man with the Golden Gun (soundtrack)\"\nThe Man with the Golden Gun (soundtrack) The Man with the Golden Gun is the soundtrack for the ninth James Bond film of the same name. The theme tune was performed by Lulu, composed by John Barry, and the lyrics to the song were written by Don Black. Alice Cooper claims his song \"\"The Man With The Golden Gun\"\" was to be used by the film's producers until it was dropped for Lulu's song instead. Cooper's song appears on his album \"\"Muscle of Love\"\". Barry considered the theme tune – the only Bond film title track not to chart as"} +{"qid": "test713", "pid": "8421073", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"The Man with the Golden Gun (film)\"\n20th Century Fox poll of the most popular film weapons, which surveyed approximately 2,000 film fans. On 10 October 2008, it was discovered that one of the golden guns used in the film, which is estimated to be worth around £80,000, was missing (suspected stolen) from Elstree Props, a company based at Hertfordshire studios. The theme tune to \"\"The Man with the Golden Gun\"\", released in 1974, was performed by Scottish singer Lulu and composed by John Barry. Tony Bramwell, who worked for Harry Saltzman's music publishing company Hilary Music, wanted Elton John or Cat Stevens to sing the title"} +{"qid": "test713", "pid": "10067215", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"The Man with the Golden Gun (soundtrack)\"\nof a new practice of using a different song altogether). Some Bond music fans consider Lulu's brassy vocal to be effective in setting the tone for the film's female characters. The film was also the first to drop the distinctive plucked guitar from the Bond theme heard over the gun barrel sequence - in all subsequent John Barry James Bond scores, this theme would be heard on strings and trumpet. Not present on the album but heard in the film is a brief reprise, for recognition purposes, of the song \"\"Live and Let Die\"\" when a character (Sheriff JW Pepper)"} +{"qid": "test713", "pid": "5656600", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"The World Is Not Enough (song)\"\nwould be seen as a generic action movie. Getting the balance right might be a \"\"poisoned chalice\"\", since the results could sound too much or too little like a Bond theme. Arnold collaborated with lyricist Don Black on the song. Black, with 30 years of experience writing Bond themes, wrote the lyrics to Tom Jones's \"\"Thunderball\"\", Shirley Bassey's \"\"Diamonds Are Forever\"\", Lulu's \"\"The Man with the Golden Gun\"\" and k.d. lang's closing credits theme, \"\"Surrender\"\", from \"\"Tomorrow Never Dies\"\". Arnold and Black met several times to discuss lyrics for \"\"The World Is Not Enough\"\", also collaborating by phone, fax and"} +{"qid": "test713", "pid": "10067214", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"The Man with the Golden Gun (soundtrack)\"\na single in either the U.K. or U.S. – and score to be among the weakest of his contributions to the series: \"\"It's the one I hate most... it just never happened for me.\"\" Certainly the title song is notable for having suggestive lyrics, and during a TV celebration for the series' 40th anniversary, Lulu's performance was introduced with reference to its being the raunchiest of all Bond songs. For the first time, the song's end theme is not a straight reprise of the opener, as it begins with different lyrics (subsequent films followed suit with variations in arrangement, ahead"} +{"qid": "test713", "pid": "5461123", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"Don Black (lyricist)\"\nDon Black (lyricist) Don Black, (born 21 June 1938) is an English lyricist. His works have included numerous musicals, movie themes and hit songs. He has provided lyrics for John Barry, Charles Strouse, Andrew Lloyd Webber, Quincy Jones, Lulu, Jule Styne, Henry Mancini, Meat Loaf, Michael Jackson, Elmer Bernstein, Michel Legrand, Hayley Westenra, A. R. Rahman, Marvin Hamlisch and Debbie Wiseman. Allmusic stated that \"\"Black is perhaps best-known for his collaborations with Andrew Lloyd Webber, and for the James Bond theme songs he co-wrote with composer John Barry: \"\"Thunderball\"\", \"\"Diamonds Are Forever\"\" and \"\"The Man with the Golden Gun\"\".\"\" Black"} +{"qid": "test713", "pid": "8421074", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"The Man with the Golden Gun (film)\"\nsong. However, by this time the producers were taking turns producing the films; Albert Broccoli—whose turn it was to produce—rejected Bramwell's suggestions. The lyrics to the Lulu song were written by Don Black and have been described variously as \"\"ludicrous\"\", \"\"inane\"\" and \"\"one long stream of smut\"\", because of their sexual innuendo. Bramwell subsequently dismissed the Barry-Lulu tune as \"\"mundane\"\". Alice Cooper wrote a song titled \"\"Man with the Golden Gun\"\" to be used by the producers of the film, but they opted for Lulu's song instead. Cooper released his song in his album \"\"Muscle of Love\"\". Barry had only"} +{"qid": "test713", "pid": "1255602", "query": "who sang the theme song for the man with the golden gun", "answer": "Lulu", "passage": "\"Alice Cooper\"\nand marked Alice Cooper's last UK Top 20 single of the 1970s with \"\"Teenage Lament '74\"\". An unsolicited theme song was recorded for the James Bond movie \"\"The Man with the Golden Gun\"\", but a different song of the same name by Lulu was chosen instead. By 1974, the \"\"Muscle of Love\"\" album still had not matched the top-charting success of its predecessor, and the band began to have constant disagreements. For various reasons, the members agreed to take what was expected to be a temporary hiatus. \"\"Everyone decided they needed a rest from one another\"\", said manager Shep Gordon"} +{"qid": "test715", "pid": "8094747", "query": "the probability of making a type i error when retaining ho at the .05 level of significance is", "answer": "5%", "passage": "\"Type I and type II errors\"\ngiven that it is true. It is denoted by the Greek letter α (alpha) and is also called the alpha level. Often, the significance level is set to 0.05 (5%), implying that it is acceptable to have a 5% probability of incorrectly rejecting the null hypothesis. A type II error occurs when the null hypothesis is false, but erroneously fails to be rejected. It is failing to assert what is present, a miss. A type II error may be compared with a so-called false negative (where an actual 'hit' was disregarded by the test and seen as a 'miss') in"} +{"qid": "test715", "pid": "1400741", "query": "the probability of making a type i error when retaining ho at the .05 level of significance is", "answer": "5%", "passage": "\"Statistical significance\"\ntrue (a type I error). It is usually set at or below 5%. For example, when α is set to 5%, the conditional probability of a type I error, \"\"given that the null hypothesis is true\"\", is 5%, and a statistically significant result is one where the observed \"\"p\"\"-value is less than 5%. When drawing data from a sample, this means that the rejection region comprises 5% of the sampling distribution. These 5% can be allocated to one side of the sampling distribution, as in a one-tailed test, or partitioned to both sides of the distribution as in a two-tailed"} +{"qid": "test716", "pid": "498982", "query": "what year did the us hockey team won the olympics", "answer": "1980", "passage": "\"Ice hockey at the 2002 Winter Olympics\"\nnation's last gold medal in men's Olympic hockey. Canada last won 50 years previously at the 1952 Winter Olympics when they tied the US 3–3 (Olympic ice hockey previously only had a round-robin portion). The US won their last gold medal when they defeated Finland two days after \"\"The Miracle on Ice\"\" in 1980. Both games, coincidentally, were played on a Sunday. The Canada-USA final was tied at 2–2, however Canada then scored three goals to win 5–2. It was only the second time and first in 70 years that the US men's hockey team lost an Olympic game on"} +{"qid": "test716", "pid": "4441098", "query": "what year did the us hockey team won the olympics", "answer": "1960", "passage": "\"Ice hockey at the 1980 Winter Olympics\"\nthe USSR had invaded Afghanistan, and there was speculation that the Soviet Union might not be allowed to compete in these Olympics. The Soviet Union did compete in the Lake Placid games, but the United States and 65 other nations boycotted the 1980 Summer Olympics in Moscow later that year. The Soviets, who had won every Winter Olympics ice hockey tournament since the United States took gold at the 1960 Olympics, were well-seasoned \"\"amateurs\"\" who were employed by industrial firms or military organizations for the sole purpose of playing hockey on their organization's team. Many players on the Soviet team"} +{"qid": "test716", "pid": "8822261", "query": "what year did the us hockey team won the olympics", "answer": "1980", "passage": "\"Anita Miller (field hockey)\"\nAnita Miller (field hockey) Anita Corl Huntsman (born May 14, 1951 in Bryn Mawr, Pennsylvania) is a former field hockey player from the United States, who was a member of the Women's National Team that won the bronze medal at the 1984 Summer Olympics in Los Angeles, California. She had previously qualified for the 1980 Olympic team but did not compete due to the Olympic Committee's boycott of the 1980 Summer Olympics in Moscow, Russia. As consolation, she was one of 461 athletes to receive a Congressional Gold Medal many years later. Anita is also an avid horseback rider and"} +{"qid": "test716", "pid": "8822262", "query": "what year did the us hockey team won the olympics", "answer": "1980", "passage": "\"Anita Miller (field hockey)\"\nteacher. Anita Miller (field hockey) Anita Corl Huntsman (born May 14, 1951 in Bryn Mawr, Pennsylvania) is a former field hockey player from the United States, who was a member of the Women's National Team that won the bronze medal at the 1984 Summer Olympics in Los Angeles, California. She had previously qualified for the 1980 Olympic team but did not compete due to the Olympic Committee's boycott of the 1980 Summer Olympics in Moscow, Russia. As consolation, she was one of 461 athletes to receive a Congressional Gold Medal many years later. Anita is also an avid horseback rider"} +{"qid": "test716", "pid": "8256511", "query": "what year did the us hockey team won the olympics", "answer": "1960", "passage": "\"Sports in Minnesota\"\nJuly 1, 2008. There are nine full members, seven from Minnesota. All seven Minnesota members are full Division III members. The United States hockey team won the Olympic gold medal for ice hockey in 1980, coached by Minnesota native Herb Brooks. Eleven of the twenty players on the roster were from Minnesota. The team beat the long-dominant Soviet team in what has been called the Miracle on Ice, and went on to win the gold medal by defeating Finland. The 1960 United States hockey team won the Olympic gold medal in the 1960 Winter Olympics. Six of the 18 members"} +{"qid": "test716", "pid": "17876215", "query": "what year did the us hockey team won the olympics", "answer": "1980", "passage": "\"Zimbabwe women's national field hockey team at the 1980 Summer Olympics\"\nof the boycott, having failed to qualify initially. All of the matches were played at Dynamo Minor Arena in Moscow. Zimbabwe arrived two weeks before the hockey tournament was due to start, and warmed up with a number of matches against local teams. The players' lack of preparation and unfamiliarity with artificial turf—\"\"none of us had ever seen it before\"\", Chick recalled—were offset by what several members of the squad have described as a very strong team spirit. They considered themselves serious underdogs and did not expect to win a medal. Zimbabwe played in the first women's Olympic hockey match,"} +{"qid": "test716", "pid": "14829011", "query": "what year did the us hockey team won the olympics", "answer": "1960", "passage": "\"Munir Dar (field hockey)\"\nused to play in the national hockey team. After Munir Dar retired from hockey, he along with his younger brother Tanvir Dar established a hockey academy in Pakistan. Munir Dar (field hockey) Munir Ahmed Dar (28 March 1935 – 1 June 2011) was a field hockey player from Pakistan, who was part of the team which won Pakistan's first ever Olympic gold at Rome in 1960. Dar also won the silver medal with the Men's National Hockey Team at the Melbourne 1956 Summer Olympics and 1964 Summer Olympics at Tokyo. He also captained Pakistan Hockey Team from 1965 to 1967."} +{"qid": "test72", "pid": "13065397", "query": "when did united states enter world war i", "answer": "April 1917", "passage": "\"USS Moccasin (ID-1322)\"\nUSS Moccasin (ID-1322) USS \"\"Moccasin\"\" (ID-1322) was a United States Navy refrigerated cargo ship in commission from 1918-1919. She was the third ship to carry her name. \"\"Moccasin\"\" was built as the German commercial passenger-cargo ship SS \"\"Prinz Joachim\"\" in 1903 at Flensburg, Germany, by Flensburger Schiffbau-Gesellschaft for the Hamburg America Line. When the United States entered World War I on the side of the Allied in April 1917, the United States Government seized her and placed her under the control of the United States Shipping Board for use during World War I. Renamed SS \"\"Moccasin\"\", she entered service as"} +{"qid": "test72", "pid": "1579038", "query": "when did united states enter world war i", "answer": "April 1917", "passage": "\"USS North Dakota (BB-29)\"\npresent during the United States occupation of Veracruz in 1914, but did not see action. After the United States entered World War I in April 1917, \"\"North Dakota\"\" remained in the US, training crewmen for the rapidly expanding wartime Navy, and therefore did not see combat. She remained on active duty through the early 1920s, until she was decommissioned under the terms of the Washington Naval Treaty in November 1923, and converted into a radio-controlled target ship. She served in that capacity until 1930, when she was replaced in that role by . In 1931, she was sold for scrapping"} +{"qid": "test72", "pid": "3860339", "query": "when did united states enter world war i", "answer": "April 1917", "passage": "\"William S. Benson\"\nin the Caribbean and Central America, and World War I. Promoted to the rank of admiral in 1916, his responsibilities greatly expanded when the United States entered World War I in April 1917. Over the next year and a half, he oversaw a huge expansion of the navy, the extension of its operations to European waters and the transportation of the United States Army's American Expeditionary Forces to France. After the November 1918 Armistice, he was an active participant in the lengthy peace negotiations held in France. In World War I the Navy explored aviation, both land-based and carrier based."} +{"qid": "test721", "pid": "3917893", "query": "who was executed for being an american spy during the revolutionary war", "answer": "Nathan Hale", "passage": "\"Intelligence in the American Revolutionary War\"\nthe execution reported the dying words that gained him immortality (a paraphrase of a line from Joseph Addison's play \"\"Cato\"\"): \"\"I only regret that I have but one life to lose for my country.\"\" After he was accused of being a spy he stated his name, rank, and his reason for being there. He gave a soldier a letter to his family, which was ripped up. He asked to see a bible and was denied the right. The same day that Nathan Hale was executed in New York, British authorities arrested another Patriot and charged him with being a spy."} +{"qid": "test721", "pid": "1981009", "query": "who was executed for being an american spy during the revolutionary war", "answer": "Nathan Hale", "passage": "\"Nathan Hale\"\nNathan Hale Nathan Hale (June 6, 1755 – September 22, 1776) was an American soldier and spy for the Continental Army during the American Revolutionary War. He volunteered for an intelligence-gathering mission in New York City but was captured by the British and executed. Hale has long been considered an American hero and, in 1985, he was officially designated the state hero of Connecticut. Nathan Hale was born in Coventry, Connecticut, in 1755 to Richard Hale and Elizabeth Strong. In 1769, when he was fourteen years old, he was sent with his brother Enoch, who was sixteen, to Yale College."} +{"qid": "test721", "pid": "1168581", "query": "who was executed for being an american spy during the revolutionary war", "answer": "Nathan Hale", "passage": "\"Halesite, New York\"\nHalesite, New York Halesite is a hamlet and census-designated place (CDP) in the Town of Huntington on the North Shore of Long Island in Suffolk County, New York, United States. The population was 2,498 at the 2010 census. Halesite is named after Nathan Hale, a captain and spy in the Continental Army during the American Revolutionary War who arrived on Long Island at Huntington Harbor (at the site now named Halesite) just prior to his capture and execution. There is a rock with a tribute to him off of the traffic circle at Mill Dam Road and New York Avenue."} +{"qid": "test721", "pid": "9682694", "query": "who was executed for being an american spy during the revolutionary war", "answer": "Nathan Hale", "passage": "\"Bergen Beach, Brooklyn\"\nHans Hansen Bergen, an early Norwegian or Dutch settler of New Netherland. He lived in the Bergen House, which was built sometime before 1800. One story has it that Bergen's house was hit by British bombs during the American Revolutionary War, but this is not supported by documentation. Another rumor, that the American spy Nathan Hale was executed near or on Bergen Island, is also refuted by other evidence. By the 1850s, Cornelius Bergen owned a farm on the island along the Jamaica Bay coast. However, Bergen Island remained largely undeveloped until the end of the century. According to an"} +{"qid": "test721", "pid": "1981026", "query": "who was executed for being an american spy during the revolutionary war", "answer": "Nathan Hale", "passage": "\"Nathan Hale\"\nappearance and demeanor, fellow soldier Lieutenant Elisha Bostwick wrote that Nathan Hale had blue eyes, flaxen blond hair, darker eyebrows, and stood slightly taller than average height (of the time), with mental powers of a sedate mind and pious. Bostwick wrote: Hale has been honored with two standing images: Other statues/markers include: Nathan Hale Nathan Hale (June 6, 1755 – September 22, 1776) was an American soldier and spy for the Continental Army during the American Revolutionary War. He volunteered for an intelligence-gathering mission in New York City but was captured by the British and executed. Hale has long been"} +{"qid": "test722", "pid": "14138190", "query": "who sang the song suddenly with olivia newton john", "answer": "Cliff Richard", "passage": "\"Suddenly (Olivia Newton-John and Cliff Richard song)\"\nSuddenly (Olivia Newton-John and Cliff Richard song) \"\"Suddenly\"\" is a song from the soundtrack album \"\"Xanadu\"\", and is the love theme from the 1980 film of the same name. The song is performed as a duet between Olivia Newton-John and Cliff Richard. It was written by John Farrar who also produced the record. \"\"Suddenly\"\" was released on Jet Records and reached No. 15 in the UK charts in October 1980 and No. 20 in the US in January 1981. It was also a major adult contemporary hit, reaching number four. The video shows them in a penthouse singing the song"} +{"qid": "test722", "pid": "14138191", "query": "who sang the song suddenly with olivia newton john", "answer": "Cliff Richard", "passage": "\"Suddenly (Olivia Newton-John and Cliff Richard song)\"\nto each other taken from her ABC TV special \"\"Hollywood Nights\"\" that aired before the Academy Awards on March 31st, 1981. The song was covered by Filipino singers Sam Milby and Toni Gonzaga on their gold album \"\"Love Duets\"\", released February 20, 2009, also released as a single. Suddenly (Olivia Newton-John and Cliff Richard song) \"\"Suddenly\"\" is a song from the soundtrack album \"\"Xanadu\"\", and is the love theme from the 1980 film of the same name. The song is performed as a duet between Olivia Newton-John and Cliff Richard. It was written by John Farrar who also produced the"} +{"qid": "test722", "pid": "13212854", "query": "who sang the song suddenly with olivia newton john", "answer": "Cliff Richard", "passage": "\"Long Live Love (Olivia Newton-John song)\"\nOne\"\". Olivia Newton-John would be the last solo act to represent the UK at Eurovision until Eurovision 1985. This article was based on informations from: Diggiloo net Long Live Love (Olivia Newton-John song) \"\"Long Live Love\"\" was the British entrant to the Eurovision Song Contest 1974 in Brighton, United Kingdom. It was sung by Olivia Newton-John in English. The song's composers, Valerie Avon and Harold Spiro, had worked together as staff writers for Belwin Mills Publishing since 1970 and had placed songs with several artists: Newton-John had recorded the Avon/Spiro composition \"\"Don't Move Away\"\" as a duet with Cliff Richard,"} +{"qid": "test722", "pid": "640092", "query": "who sang the song suddenly with olivia newton john", "answer": "Cliff Richard", "passage": "\"Olivia Newton-John\"\nfilm was a critical failure, its soundtrack (No. 4 Pop) was certified double platinum boasting five Top 20 singles on the \"\"Billboard\"\" Hot 100. Newton-John charted with \"\"Magic\"\" (No. 1 Pop, No. 1 AC), \"\"Suddenly\"\" with Cliff Richard (No. 20 Pop, No. 4 AC) and the title song with the Electric Light Orchestra (No. 8 Pop, No. 2 AC). (ELO also charted with \"\"I'm Alive\"\" (No. 16 Pop, No. 48 AC) and \"\"All Over the World\"\" (No. 13 Pop, No. 46 AC).) \"\"Magic\"\" was Newton-John's biggest Pop hit to that point (four weeks at No. 1) and still ranks as"} +{"qid": "test722", "pid": "13212848", "query": "who sang the song suddenly with olivia newton john", "answer": "Cliff Richard", "passage": "\"Long Live Love (Olivia Newton-John song)\"\nLong Live Love (Olivia Newton-John song) \"\"Long Live Love\"\" was the British entrant to the Eurovision Song Contest 1974 in Brighton, United Kingdom. It was sung by Olivia Newton-John in English. The song's composers, Valerie Avon and Harold Spiro, had worked together as staff writers for Belwin Mills Publishing since 1970 and had placed songs with several artists: Newton-John had recorded the Avon/Spiro composition \"\"Don't Move Away\"\" as a duet with Cliff Richard, the track serving as B-side to Richard's 1971 hit \"\"Sunny Honey Girl\"\". \"\"Long Live Love\"\" was the third bid Avon and Spriro had made to have a"} +{"qid": "test723", "pid": "18563168", "query": "who is command sergeant major of the army", "answer": "Daniel A. Dailey", "passage": "\"Daniel A. Dailey\"\na wife and son. Daniel A. Dailey Daniel A. Dailey (born January 11, 1969) is the current Sergeant Major of the Army of the United States Army. He was sworn in as the 15th Sergeant Major of the Army on January 30, 2015. He is the youngest soldier to serve in this position at 46 years old. Prior to his tenure as the Sergeant Major of the Army, he served as the Command Sergeant Major for the United States Army Training and Doctrine Command. A native of Palmerton, Pennsylvania, Dailey entered the U.S. Army as an 11B (Infantryman) in 1989."} +{"qid": "test723", "pid": "18563165", "query": "who is command sergeant major of the army", "answer": "Daniel A. Dailey", "passage": "\"Daniel A. Dailey\"\nDaniel A. Dailey Daniel A. Dailey (born January 11, 1969) is the current Sergeant Major of the Army of the United States Army. He was sworn in as the 15th Sergeant Major of the Army on January 30, 2015. He is the youngest soldier to serve in this position at 46 years old. Prior to his tenure as the Sergeant Major of the Army, he served as the Command Sergeant Major for the United States Army Training and Doctrine Command. A native of Palmerton, Pennsylvania, Dailey entered the U.S. Army as an 11B (Infantryman) in 1989. He enlisted at the"} +{"qid": "test723", "pid": "18563167", "query": "who is command sergeant major of the army", "answer": "Daniel A. Dailey", "passage": "\"Daniel A. Dailey\"\ndegree in history from Excelsior College. He has served in the 1st, 2nd, 3rd & 4th Infantry Divisions. He is decorated with the Bronze Star with Valor for his leadership during the Siege of Sadr City. Later, he was selected as the 4th Infantry Division command sergeant major in 2009. Prior to his selection as the Sergeant Major of the Army, he served as the command sergeant major of the United States Army Training and Doctrine Command. Dailey is a member of the Order of Saint Maurice (Centurion) and a member of the Distinguished Sergeant Audie Murphy Club. He has"} +{"qid": "test724", "pid": "9440914", "query": "who sings the original windmills of your mind", "answer": "Noel Harrison", "passage": "\"The Windmills of Your Mind\"\nand also on variety shows hosted by Rolf Harris and Scott Walker—when the song won the Academy Award on 14 April 1969, an endorsement which facilitated the Top Ten entry of Harrison's single on the UK chart dated 22 April 1969 with its chart peak of #8 effected two weeks later. \"\"The Windmills of Your Mind\"\" was performed on the Academy Awards ceremony broadcast of 14 April 1969 by José Feliciano; Noel Harrison would recall: \"\"I was invited to sing it at the Academy Awards... but I was making a movie in England at the time, and the producer (who"} +{"qid": "test724", "pid": "9440919", "query": "who sings the original windmills of your mind", "answer": "Noel Harrison", "passage": "\"The Windmills of Your Mind\"\nfeat matched by Springfield's third subsequent single \"\"Brand New Me\"\" which therefore ties with \"\"The Windmills\"\" as having afforded Springfield her best-ever solo showing on a \"\"Billboard\"\" chart. \"\"The Windmills of Your Mind\"\" was recorded by José Feliciano for his 1969 album \"\"10 to 23\"\", and Feliciano performed the song on the Academy Awards ceremony broadcast of 14 April 1969; the song's original singer Noel Harrison would later opine of Feliciano's performance: \"\"A wonderful musician and compelling singer, he made much too free with the beautiful melody in my humble opinion. But that's jazz.\"\" It was Feliciano's version of \"\"The"} +{"qid": "test724", "pid": "8650353", "query": "who sings the original windmills of your mind", "answer": "Noel Harrison", "passage": "\"Noel Harrison\"\nin a third-season episode titled \"\"The Galatea Affair\"\". \"\"A Young Girl\"\" was included as one of the tracks on Harrison's debut album, \"\"Noel Harrison\"\", in 1966. Two years later, he recorded \"\"The Windmills of Your Mind\"\", the theme tune from the film \"\"The Thomas Crown Affair\"\", which won the Academy Award for Best Original Song in 1968, and was also a Top 10 hit in the UK Singles Chart. Despite the song winning the 1968 Oscar for best original song, Harrison did not sing it at the ceremony. Instead his place was taken by Jose Feliciano. The change was made"} +{"qid": "test724", "pid": "5699771", "query": "who sings the original windmills of your mind", "answer": "Noel Harrison", "passage": "\"The Thomas Crown Affair (1968 film)\"\nbut he was unavailable and recommended Legrand; he wrote his music as long pieces rather than specifically to scene timings, with the film later edited to the music by Legrand, Jewison and editor Hal Ashby. In addition, Legrand also had to prepare an original song to replace \"\"Strawberry Fields Forever,\"\" used as the temp track for the glider scene. Taking Quincy Jones' advice, Legrand worked with the Bergmans to compose \"\"The Windmills of Your Mind\"\" and a second song, \"\"His Eyes, Her Eyes\"\"; Noel Harrison recorded \"\"The Windmills of Your Mind\"\" after Jewison failed to get his friend Andy Williams"} +{"qid": "test724", "pid": "9440909", "query": "who sings the original windmills of your mind", "answer": "Noel Harrison", "passage": "\"The Windmills of Your Mind\"\n1999 remake of \"\"The Thomas Crown Affair\"\". In the original 1968 film \"\"The Thomas Crown Affair\"\", the song is heard – sung by Noel Harrison – during opening credits; and, during the film, in a scene in which the character Thomas Crown flies a glider at the glider airport in Salem, New Hampshire: having edited the rough cut for this scene utilizing the Beatles track \"\"Strawberry Fields Forever\"\" producer/director Norman Jewison commissioned an original song be written for the glider scene which would reference the ambivalent feelings of Thomas Crown as he engages in a favorite pastime while experiencing the"} +{"qid": "test725", "pid": "9090309", "query": "where will the next summer and winter olympics be held", "answer": "Tokyo", "passage": "\"Nepal at the 2002 Winter Olympics\"\nOlympic competition at the 1964 Summer Olympics in Tokyo. The nation did not take part in the next Summer Olympics, but have participated in every Summer Olympic Games since the 1972 edition. Despite this, these Salt Lake City Games were their first appearance in the Winter Olympic Games, and they have never won an Olympic medal as of 2018. The 2002 Winter Olympics were held from 8–24 February 2002; a total of 2,399 athletes took part representing 77 National Olympic Committees. The only athlete sent by Nepal to the Salt Lake Olympics was Jay Khadka, competing in cross-country skiing. He"} +{"qid": "test725", "pid": "1063775", "query": "where will the next summer and winter olympics be held", "answer": "Tokyo", "passage": "\"1998 Winter Olympics\"\nin Japan, after the 1964 Summer Olympics in Tokyo and the 1972 Winter Olympics in Sapporo. Nagano is so far the southernmost city to host a Winter Olympics, next to Squaw Valley, host of the 1960 Winter Olympics. The games were succeeded by the 1998 Winter Paralympics from 5 to 14 March. These were the final Winter Olympic Games under the IOC Presidency of Juan Antonio Samaranch. Other candidate cities for the 1998 Olympics were Aosta, Italy; Jaca, Spain; Östersund, Sweden; and Salt Lake City, United States. The host city selection was held in Birmingham, United Kingdom, on 15 June"} +{"qid": "test725", "pid": "1682685", "query": "where will the next summer and winter olympics be held", "answer": "Tokyo", "passage": "\"1972 Winter Olympics\"\n1972 Winter Olympics The 1972 Winter Olympics, officially known as the (French: Les \"\"XIes Jeux olympiques d'hiver\"\"), were a winter multi-sport event which was held from February 3 to February 13, 1972, in Sapporo, Hokkaidō, Japan. It was the first Winter Olympics to be held outside Europe and North America, and only the third game (summer or winter) held outside those regions overall, after Melbourne (1956 Summer Olympics) and Tokyo (1964 Summer Olympics). Sapporo first won the rights to host the 1940 Winter Olympics, but Japan resigned as the Games' host after its 1937 invasion of China. The 1940 Games"} +{"qid": "test725", "pid": "20035945", "query": "where will the next summer and winter olympics be held", "answer": "Tokyo", "passage": "\"Participation of women in the Olympics\"\nwinning the gold medal. At the Summer Games of the same year held in Berlin, gymnastics returned to the programme for women. The 1940 Winter Olympics due to be held in Sapporo, 1940 Summer Olympics due to be held in Tokyo, 1944 Winter Olympics due to be held in Cortina d'Ampezzo and the 1944 Summer Olympics due to be held in London were all cancelled due to the outbreak of World War II. Five female Olympic athletes died due to World War II: At the 1948 Winter Olympics in St. Moritz, women made their debut in the downhill and slalom"} +{"qid": "test725", "pid": "1064878", "query": "where will the next summer and winter olympics be held", "answer": "Beijing", "passage": "\"1984 Winter Olympics\"\nstate are the 2008 Summer Olympics held in Beijing and 2014 Summer Youth Olympics in Nanjing, and the 2022 Winter Olympics which will be held in Beijing. All of these have been in China. The Sarajevo games have also been the only Olympics so far to be hosted by a city with mainly Muslim population. During the 2014 Winter Olympics in Sochi, Russia, numerous newspapers drew attention to the Games neglected venues as it was the 30th anniversary of the 1984 Winter Olympics. The host city for the XIV Winter Olympics was announced on 18 May 1978 during an 80th"} +{"qid": "test725", "pid": "18384823", "query": "where will the next summer and winter olympics be held", "answer": "Beijing", "passage": "\"Colonialism and the Olympic Games\"\nlands; and neglect and/or intensification of poor social conditions for indigenous peoples. Such practices have been observed at: the 1904 Summer Olympics in St. Louis, MO; the 1976 Summer Olympics in Montreal, Quebec; the 1988 Winter Olympics in Calgary, Alberta; the 2008 Summer Olympics in Beijing, China; the 2010 Winter Olympics in Vancouver, BC; the 2012 Summer Olympics in London, England; the 2014 Winter Olympics in Sochi, Krasnodar Krai and the 2022 Winter Olympics in Beijing, China. The 1904 Summer Olympics in St. Louis, Missouri were held in conjunction with the Louisiana Purchase Exposition (also known as the St. Louis"} +{"qid": "test728", "pid": "18080341", "query": "where are the organ mountains in new mexico", "answer": "southern New Mexico", "passage": "\"Organ Mountains-Desert Peaks National Monument\"\nOrgan Mountains-Desert Peaks National Monument The Organ Mountains-Desert Peaks National Monument is a United States National Monument in the state of New Mexico, managed by the Bureau of Land Management as part of the National Landscape Conservation System. The monument is located in the Mesilla Valley in southern New Mexico, surrounding the city of Las Cruces in Doña Ana County. The protected area includes several mountain ranges of the Chihuahuan Desert. The five identified as being within the national monument are the Robledo Mountains, Sierra de las Uvas, Doña Ana Mountains, Organ Mountains and Potrillo Mountains. The Prehistoric Trackways National"} +{"qid": "test728", "pid": "6449511", "query": "where are the organ mountains in new mexico", "answer": "southern New Mexico", "passage": "\"Organ Mountains\"\nOrgan Mountains The Organ Mountains are a rugged mountain range in southern New Mexico in the Southwestern United States. Organ Mountains-Desert Peaks National Monument was declared a national monument on May 21, 2014. They lie east of the city of Las Cruces, in Doña Ana County. The Organ Mountains are near the southern end of a long line of mountains on the east side of the Rio Grande's rift valley. The range is nearly contiguous with the San Andres Mountains to the north and the Franklin Mountains to the south, but is very different geologically. Whereas the San Andres and"} +{"qid": "test728", "pid": "6449516", "query": "where are the organ mountains in new mexico", "answer": "southern New Mexico", "passage": "\"Organ Mountains\"\nexecutive authority on Wednesday, May 21, 2014. White House press secretary Jay Carney stated that \"\"By establishing the monument, the president will permanently protect more than 496,000 acres to preserve the prehistoric, historic and scientific values of the area for the benefit of all Americans.\"\" Organ Mountains The Organ Mountains are a rugged mountain range in southern New Mexico in the Southwestern United States. Organ Mountains-Desert Peaks National Monument was declared a national monument on May 21, 2014. They lie east of the city of Las Cruces, in Doña Ana County. The Organ Mountains are near the southern end of"} +{"qid": "test728", "pid": "15123489", "query": "where are the organ mountains in new mexico", "answer": "southern New Mexico", "passage": "\"Hachita Valley\"\nand Big Hatchet Mountains. Hachita Valley The Hachita Valley, (Spanish language \"\"hacho\"\", hatchet-(axe), \"\"hachita\"\", little hatchet; \"\"Little Hatchet Valley\"\"), is a small valley in southwest New Mexico. The valley is in the east of the New Mexico Bootheel region and borders Chihuahua state, Mexico. Hachita, New Mexico lies in the valley's northeast, where New Mexico State Road 9 traverses east-west across much of southern New Mexico. The large, and extensive north-south Playas Valley borders to the west on the other side of the west perimeter mountain ranges. The Hachita Valley lies in the northwest of the Chihuahuan Desert, with the"} +{"qid": "test729", "pid": "16663591", "query": "where are the 10 plagues found in the bible", "answer": "Exodus", "passage": "\"Finger of God\"\nFinger of God The \"\"finger of God\"\" is a phrase used in the Bible. In Exodus 8:16–20 it is used during the plagues of Egypt by the Egyptian priests. In Exodus 31:18 and Deuteronomy 9:10 it refers to the method by which the Ten Commandments were written on tablets of stone that were brought down from biblical Mount Sinai by Moses. It was used once by Jesus in the Gospel of Luke to describe how he had cast out demons. The first time the phrase \"\"finger of God\"\" appears is in the Hebrew Bible, in the eighth chapter, in the"} +{"qid": "test729", "pid": "602802", "query": "where are the 10 plagues found in the bible", "answer": "Exodus", "passage": "\"Aaron's rod\"\nbiblical eponymous reference, with the flute representing a magic rod, is intended to be ironic. Aaron's rod Aaron's rod refers to any of the staves carried by Moses's brother, Aaron, in the Torah. The Bible tells how, along with Moses's rod, Aaron's rod was endowed with miraculous power during the Plagues of Egypt that preceded the Exodus. There are two occasions where the Bible tells of the rod's power. In the culture of the Israelites, the rod ( \"\"maṭṭeh\"\") was a natural symbol of authority, as the tool used by the shepherd to correct and guide his flock (Psalm 23:4)."} +{"qid": "test729", "pid": "602789", "query": "where are the 10 plagues found in the bible", "answer": "Exodus", "passage": "\"Aaron's rod\"\nAaron's rod Aaron's rod refers to any of the staves carried by Moses's brother, Aaron, in the Torah. The Bible tells how, along with Moses's rod, Aaron's rod was endowed with miraculous power during the Plagues of Egypt that preceded the Exodus. There are two occasions where the Bible tells of the rod's power. In the culture of the Israelites, the rod ( \"\"maṭṭeh\"\") was a natural symbol of authority, as the tool used by the shepherd to correct and guide his flock (Psalm 23:4). Moses's rod is, in fact, cited in Exodus 4:2 as carried by him while he"} +{"qid": "test73", "pid": "15853152", "query": "who has given the theory of unbalanced economic growth", "answer": "Hirschman", "passage": "\"Ragnar Nurkse's balanced growth theory\"\nthe development of the country in question. However, it should be noted that most economists who favoured the balanced growth hypothesis believed that only the state has the capacity to take on the kind of heavy investments the theory propagates. Further, the gestation period of such lumpy investments is usually long and private sector entrepreneurs do not normally undertake such high risks. Ragnar Nurkse's balanced growth theory too has been criticised on a number of grounds. His main critic was Albert O. Hirschman, the pioneer of the strategy of unbalanced growth. Hans W. Singer also criticised certain aspects of the"} +{"qid": "test73", "pid": "15894118", "query": "who has given the theory of unbalanced economic growth", "answer": "Hirschman", "passage": "\"Strategy of unbalanced growth\"\nStrategy of unbalanced growth Unbalanced growth is a natural path of economic development. Situations that countries are in at any one point in time reflect their previous investment decisions and development. Accordingly, at any point in time desirable investment programs that are not balanced investment packages may still advance welfare. Unbalanced investment can complement or correct existing imbalances. Once such an investment is made, a new imbalance is likely to appear, requiring further compensating investments. Therefore, growth need not take place in a balanced way. Supporters of the unbalanced growth doctrine include Albert O. Hirschman, Hans Singer, Paul Streeten, Marcus"} +{"qid": "test73", "pid": "15894120", "query": "who has given the theory of unbalanced economic growth", "answer": "Hirschman", "passage": "\"Strategy of unbalanced growth\"\nto exploit these resources. With a lack of investors and entrepreneurs, cash flows cannot be directed into various sectors that influence balanced economic growth. Hirschman contends that deliberate unbalancing of the economy according to the strategy is the best method of development and if the economy is to be kept moving ahead, the task of development policy is to maintain tension, disproportions and disequilibrium. Balanced growth should not be the goal but rather the maintenance of existing imbalances, which can be seen from profit and losses. Therefore, the sequence that leads away from equilibrium is precisely an ideal pattern for"} +{"qid": "test73", "pid": "15894126", "query": "who has given the theory of unbalanced economic growth", "answer": "Hirschman", "passage": "\"Strategy of unbalanced growth\"\nof the paradoxes of development is that poor countries cannot afford to be economical. According to Hirschman, resources are not scarce per se, but the ability to employ those resources may be lacking. To explain unbalanced growth, Hirschman assumes that the country invests in either DPA or SOC. Both paths set up incentives and an evaluation of their respective efficiency depends on the strengths of entrepreneurial motivations and the response to public pressure of the authorities responsible for SOC. The major characteristic of the two paths of development is that they yield excess dividends. SOC built ahead of demand creates"} +{"qid": "test730", "pid": "6751969", "query": "where are red blood cells made in adults", "answer": "in the bone marrow", "passage": "\"Blood donation in England\"\nand each donation usually gives two or three adult doses. One adult dose of platelets would otherwise require four whole blood donations. Blood is made in the bone marrow. It is composed of red blood cells, platelets, plasma and white blood cells, collectively referred to as blood components. Donations given at regular blood donation sessions are referred to as \"\"Whole Blood\"\". Platelets are very small cells. They work with the clotting factors in plasma to form a mesh \"\"plug\"\" to stop or prevent bleeding. Plasma is the fluid part of the blood. It contains protein, salts and clotting factors. White"} +{"qid": "test730", "pid": "766106", "query": "where are red blood cells made in adults", "answer": "in the bone marrow", "passage": "\"Red blood cell\"\nsecond in human adults. The cells develop in the bone marrow and circulate for about 100–120 days in the body before their components are recycled by macrophages. Each circulation takes about 60 seconds (one minute). Approximately a quarter of the cells in the human body are red blood cells. Nearly half of the blood's volume (40% to 45%) is red blood cells. Packed red blood cells (pRBC) are red blood cells that have been donated, processed, and stored in a blood bank for blood transfusion. Almost all vertebrates, including all mammals and humans, have red blood cells. Red blood cells"} +{"qid": "test730", "pid": "8934589", "query": "where are red blood cells made in adults", "answer": "in the bone marrow", "passage": "\"National Marrow Donor Program\"\ncord blood, or the circulating blood (peripheral blood stem cells (PBSCs)). Hematopoietic cells are a type of adult (i.e., non-embryonic) stem cell that can multiply and differentiate into the three types of blood cells: red blood cells, white blood cells, and platelets. Bone marrow and PBSCs come from living adult donors. Bone marrow is extracted from the donor's pelvic bones while the donor is under general or local anesthesia. PBSCs are collected from the donor's blood after five or six days of taking a drug that causes hematopoietic cells in the bone marrow to move into the circulating blood. In"} +{"qid": "test730", "pid": "3412874", "query": "where are red blood cells made in adults", "answer": "in the bone marrow", "passage": "Hydroxycarbamide\nof gamma globin gene expression and subsequent gamma chain synthesis necessary for fetal hemoglobin (HbF) production (which does not polymerize and deform red blood cells like the mutated HbS, responsible for sickle cell disease). Adult red cells containing more than 1% HbF are termed F cells. These cells are progeny of a small pool of immature committed erythroid precursors (BFU-e) that retain the ability to produce HbF. Hydroxyurea also suppresses the production of granulocytes in the bone marrow which has a mild immunosuppressive effect particularly at vascular sites where sickle cells have occluded blood flow. Brand names include: Hydrea, Litalir,"} +{"qid": "test731", "pid": "11072480", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Hattie Lawton\"\nHattie Lawton Hattie Lawton, also known as Hattie H. Lawton, Hattie Lewis, and Hattie Lewis Lawton was an American detective, who worked for Allan Pinkerton, of the Pinkerton Detective Agency. Lawton may have been born around 1837, although, most details of her life, before and after the American Civil War, are unknown. \"\"[Hattie] Lawton was part of Pinkerton's Female Detective Bureau, formed in 1860 to 'worm out secrets' by means unavailable to male detectives.\"\" Hattie Lawton, along with fellow female Pinkerton detective Kate Warne, worked with other Pinkerton agents who actively participated in the detection of the alleged 1861 Baltimore"} +{"qid": "test731", "pid": "722031", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Private investigator\"\nAbraham Lincoln in 1861. Pinkerton's agents performed services which ranged from undercover investigations and detection of crimes, to plant protection and armed security. It is sometimes claimed, probably with exaggeration, that at the height of its existence, the Pinkerton National Detective Agency employed more agents than the United States Army. Allan Pinkerton hired Kate Warne in 1856 as a private detective, making her the first female private detective in America. During the union unrest in the US in the late 19th century, companies sometimes hired operatives and armed guards from the Pinkertons. In the aftermath of the Homestead Riot of"} +{"qid": "test731", "pid": "11074596", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Kate Warne\"\nas a young detective in the Canadian TV series \"\"The Pinkertons\"\", played by Martha MacIsaac. Kate Warne Kate Warne (1833 – January 28, 1868) was the first female detective, in 1856, in the Pinkerton Detective Agency and the United States. Very little is known about Kate Warne prior to her working for Allan Pinkerton, except that she was born in Erin, Chemung County, New York and was a widow by age 23. Pinkerton, in his book \"\"The Spy of the Rebellion\"\" (1883), described her as: [a] commanding person, with clear cut, expressive features ... a slender, brown-haired woman, graceful in"} +{"qid": "test731", "pid": "11074593", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Kate Warne\"\nwent undercover was brought about by a Captain Sumner, who was convinced that both his sister, Mrs. Annie Thayer and a Mr. Pattmore, were attempting to poison Mrs. Pattmore and himself. Warne took the name Lucille and assumed the role of a fortune teller to lure information out of the suspected murderer's confidants. In the meantime, she also continually coordinated Pinkerton's other female detectives in the agency. Pinkerton rented a space for Warne to work as part of her guise. Allan Pinkerton named Kate Warne one of the five best detectives that he had. Her employment by Pinkerton was a"} +{"qid": "test731", "pid": "11074590", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Kate Warne\"\nWarne over expenses turned over to the agency, but her relationship with Allan continued for years. After the quelled assassination attempt on president-elect Abraham Lincoln, Kate Warne continued to travel with Allan Pinkerton as his Female Superintendent of Detectives. On April 12, 1861, the Confederate States of America's cannons in Charleston began firing on Fort Sumter. These cannon shells marked the beginning of the American Civil War. Within nine days, Pinkerton wrote to President Lincoln offering the services of the Pinkerton National Detective Agency. However, before Lincoln could respond, Major General George B. McClellan asked Pinkerton to set up a"} +{"qid": "test731", "pid": "11074575", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Kate Warne\"\nKate Warne Kate Warne (1833 – January 28, 1868) was the first female detective, in 1856, in the Pinkerton Detective Agency and the United States. Very little is known about Kate Warne prior to her working for Allan Pinkerton, except that she was born in Erin, Chemung County, New York and was a widow by age 23. Pinkerton, in his book \"\"The Spy of the Rebellion\"\" (1883), described her as: [a] commanding person, with clear cut, expressive features ... a slender, brown-haired woman, graceful in her movements and self-possessed. Her features, although not what could be called handsome [beautiful], were"} +{"qid": "test731", "pid": "11074577", "query": "who was the pinkerton detective agency's first female detective", "answer": "Kate Warne", "passage": "\"Kate Warne\"\ncustom to employ women detectives!\"\" Kate argued her point of view eloquently - pointing out that women could be \"\"most useful in worming out secrets in many places which would be impossible for a male detective.\"\" A Woman would be able to befriend the wives and girlfriends of suspected criminals and gain their confidence. Men become braggarts when they are around women who encourage them to boast. Kate also noted, Women have an eye for detail and are excellent observers. Warne's arguments swayed Pinkerton, who employed Warne as the first female detective. Pinkerton soon had a chance to put Warne"} +{"qid": "test732", "pid": "18049610", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"The Wedding (Modern Family)\"\nof story-lines.\"\" Adler also criticized how many story-lines were in the episode, saying \"\"This episode is a lot of half-scenes, moments that feel trimmed so that every character can have a little story of his or her own.\"\" For his performance in the episode, Nathan Lane was nominated for the Primetime Emmy Award for Outstanding Guest Actor in a Comedy Series. The Wedding (Modern Family) \"\"The Wedding\"\" is the finale of the fifth season of the American sitcom \"\"Modern Family\"\". It aired in two parts, on May 14, 2014 and May 21, 2014. The first part was written by Abraham"} +{"qid": "test732", "pid": "19273537", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"The Verdict (Modern Family)\"\nThe episode was watched by 7.80 million viewers. La Toya Ferguson of \"\"The A.V. Club\"\" awarded the episode a C grade, saying \"\"A good episode of \"\"Modern Family\"\" depends on just how funny it can make the expected.\"\" The Verdict (Modern Family) \"\"The Verdict'\"\" is the fifth episode of seventh season of the American sitcom \"\"Modern Family\"\". It aired on October 21, 2015 on American Broadcasting Company (ABC). The episode is directed by Alisa Statman and written by Chuck Tathum. Gloria (Sofía Vergara) tells Jay (Ed O'Neill) that she got selected in a jury duty. But in the audience court,"} +{"qid": "test732", "pid": "18632833", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Fight or Flight (Modern Family)\"\nFight or Flight (Modern Family) \"\"Fight or Flight\"\" is the fifteenth episode of the sixth season of the American sitcom \"\"Modern Family\"\", and the series' 135th episode overall. It originally aired on February 18, 2015. The episode was written by Steven Levitan and directed by Abraham Higginbotham. In the episode, Mitchell and Cameron organize a baby shower for Sal, who then seems to abandon her son with them. Mitchell and Cameron compete with Pepper and Ronaldo over adopting a child. Manny deals with a bully at cooking class, and Gloria insists that Jay teach Manny how to fight back. Claire"} +{"qid": "test732", "pid": "17727643", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"The Old Man & the Tree\"\nlast minute shopping and family feuds. Modern Family Season 5 Episode 10 was no exception to this rule, but the Dunphy-Pritchitt clan knows how to make it funny!\"\" The Old Man & the Tree \"\"The Old Man & the Tree\"\" is the tenth episode of the fifth season of the American sitcom \"\"Modern Family\"\", and the series' 106th overall. It was aired on December 11, 2013. The episode was written by Paul Corrigan & Brad Walsh and directed by Bryan Cranston. This is the second episode directed by Cranston, with the first being the episode \"\"Election Day\"\". The episode also"} +{"qid": "test732", "pid": "15058998", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Mother Tucker (Modern Family)\"\nMother Tucker (Modern Family) \"\"Mother Tucker\"\" is the ninth episode of the second season of the American sitcom \"\"Modern Family\"\", and the 33rd episode of the series overall. It originally aired on November 24, 2010 on ABC. The episode was written by Paul Corrigan & Brad Walsh and was directed by Michael Spiller. In the episode, Mitchell tries to tell Cameron how he feels uncomfortable with his mom, Barb Tucker. Meanwhile, Haley breaks up with Dylan much to Phil's dismay. Jay has a little stomach ache gets exacerbated when he and Manny look it up on the internet. \"\"Mother Tucker\"\""} +{"qid": "test732", "pid": "18748779", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Integrity (Modern Family)\"\nIntegrity (Modern Family) \"\"Integrity\"\" is the twenty-first episode of the sixth season of the American sitcom \"\"Modern Family\"\", and the series' 141st episode overall. It originally aired on April 29, 2015. The episode was written by Stephen Lloyd & Chuck Tatham, and directed by Chris Koch. In the episode, Claire tries to bribe the school Principal to give Luke an award as she thinks that Luke's bad mood is because Alex gets all the awards each year. Luke and Manny are fighting over a girl. Gloria tries to interfere when she sees how Haley's boss treats her with no respect."} +{"qid": "test732", "pid": "17799385", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Under Pressure (Modern Family)\"\nUnder Pressure (Modern Family) \"\"Under Pressure\"\" is the twelfth episode of the fifth season of the American sitcom \"\"Modern Family\"\", and the series' 108th overall. It was aired on January 15, 2014. The episode was written by Elaine Ko and directed by James Bagdonas. In the episode, Alex suffers a meltdown during her birthday party due to the pressure she is always under and she finds herself a therapist. At the school's open day, Jay and Phil have fun taking Luke and Manny's lessons while Claire finally realizes how much pressure Alex must feel every day. Luke and Manny go"} +{"qid": "test732", "pid": "17819170", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Three Dinners\"\nsegments from a comedy play. That’s how sharp the writing is [...] The writers use a night out, paced and structured expertly as the characters examine the pace of their own lives at the current moment. It’s as lovely an episode from Modern Family as we have seen in years.\"\" Three Dinners \"\"Three Dinners\"\" is the thirteenth episode of the fifth season of the American sitcom \"\"Modern Family\"\", and the series' 109th overall. It was aired on January 22, 2014. The episode was written by Abraham Higginbotham, Steven Levitan & Jeffrey Richman and directed by Steven Levitan. In the episode,"} +{"qid": "test732", "pid": "20736742", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Nadiya's Family Favourites\"\nNadiya's Family Favourites Nadiya's Family Favourites is a British television cookery show presented by Nadiya Hussain. The series shows Nadiya out and about with specially-filmed inserts speaking to family and friends about how cooking fits in with modern life, as well as meals being prepared in the kitchen. The eight-part series first aired on BBC Two in July 2018. It was reported that the new series was the main reason for Nadiya Hussain giving up her role as a presenter in another BBC cookery programme, \"\"The Big Family Cooking Showdown\"\". In each themed episode, four recipes are featured. Many of"} +{"qid": "test732", "pid": "19037437", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Summer Lovin' (Modern Family)\"\nbelieving that it was that way \"\"because the last episode ended on a cliffhanger that they didn′t know how to resolve\"\", negatively comparing the episode to fourth-season premiere \"\"Bringing Up Baby\"\". Summer Lovin' (Modern Family) \"\"Summer Lovin'\"\" is the season premiere of the seventh season of the American sitcom \"\"Modern Family\"\". It aired on September 23, 2015 on American Broadcasting Company (ABC). The premiere is directed by Jim Hensz and written by executive-producer Abraham Higginbotham. Picking up where the last season left off, Haley (Sarah Hyland) and Claire (Julie Bowen) attempt to stop Andy (Adam DeVine) from proposing to Beth"} +{"qid": "test732", "pid": "13337975", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Modern Family\"\nRachel Stein of \"\"Television Without Pity\"\" wrote, \"\"much as I liked the pairings and some of the dialogue, [\"\"New Year's Eve\"\"] is just another contrived episode of Modern Family we can cite when we talk later about how a different show should have won the 2013 Emmy for Best Comedy.\"\" Dalene Rovenstein of \"\"Paste Magazine\"\" gave the season a positive review, but said a better season was possible. The fifth season of \"\"Modern Family\"\" also received positive reviews. On Rotten Tomatoes, season five has a rating of 83%. Reviewing the season's first eight episodes, Matthew Wolfson of \"\"Slant Magazine\"\" wrote"} +{"qid": "test732", "pid": "17714709", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"The Big Game (Modern Family)\"\ndo fizzy concoctions of intricate, intersecting plotlines that coalesce into a touching finale really well. This week’s episode nails its landing, but everything prior to the closing feels scattershot. There are too many stories and not enough laughs\"\" and adding that the most entertaining plotline of the episode was Phil's. The Big Game (Modern Family) \"\"The Big Game\"\" is the ninth episode of the fifth season of the American sitcom \"\"Modern Family\"\", and the series' 105th overall. It was aired on December 4, 2013. The episode was written by Megan Ganz and directed by Beth McCarthy-Miller. Cam (Eric Stonestreet) is"} +{"qid": "test732", "pid": "18762827", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Patriot Games (Modern Family)\"\nPatriot Games (Modern Family) \"\"Patriot Games\"\" is the twenty-second episode of the sixth season of the American sitcom \"\"Modern Family\"\", and the series' 142nd episode overall. It originally aired on May 6, 2015. The episode was written by Vali Chandrasekaran, and directed by Alisa Statman. In the episode, Phil, Claire and Alex get a call to meet Alex's principal, where they learn that she must settle for co-valedictorian with Sanjay, Alex's competition at school for many years. Gloria studies to become an American citizen, something that Jay supports but Javier (Manny's father) tries to prevent. Mitchell and Cameron join a"} +{"qid": "test732", "pid": "14557795", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Modern Family (season 2)\"\nbest episode of 2010 by \"\"TV Guide\"\" and was also named among the best 2010 episodes of \"\"Modern Family\"\" by The A.V. Club. The episode, \"\"Unplugged\"\" received some controversy due to Gloria's line \"\"Ah, here we go. Because, in Colombia, we trip over goats and we kill people in the street. Do you know how offensive that is? Like we’re \"\"Peruvians\"\"!\"\" Milagros Lizarraga, founder of the online group Peru USA Southern Ca, told the Associated Press, \"\"It’s incredible that in a country where everything is politically correct, ABC would have a line of this sort.\"\" Sofía Vergara responded to a"} +{"qid": "test732", "pid": "16434418", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Election Day (Modern Family)\"\nElection Day (Modern Family) \"\"Election Day\"\" is the 19th episode of the third season of the American sitcom \"\"Modern Family\"\", and the series' 67th episode overall. This episode originally aired on ABC on April 11, 2012. It was written by Ben Karlin, and directed by Bryan Cranston. The day of the council elections, for which Claire (Julie Bowen) is running, has come and everyone in the family is assigned a task to help her get as many votes as possible. Cameron (Eric Stonestreet) and Mitchell (Jesse Tyler Ferguson) campaign for Claire in a truck with a loud speaker from which"} +{"qid": "test732", "pid": "17386056", "query": "how many episodes are there in modern family", "answer": "201", "passage": "\"Bad Hair Day (Modern Family)\"\nepisode with 4/5 while Zach Dionne from \"\"Vulture \"\"rated it with 5/5. Bad Hair Day (Modern Family) \"\"Bad Hair Day\"\" is the 16th episode of the fourth season of the American sitcom \"\"Modern Family\"\", and the series' 88th episode overall. It aired February 20, 2013. The episode was written by Elaine Ko and directed by Gail Mancuso. Claire (Julie Bowen) has her college reunion and she is glad that Phil (Ty Burrell) can not go with her because there will be many things he does not know and to try to explain him everything all the time can be really"} +{"qid": "test733", "pid": "413550", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Temple in Jerusalem\"\nHaElohim\"\" \"\"House of God\"\", or simply \"\"Beiti\"\" \"\"my house\"\", \"\"Beitekhah\"\" \"\"your house\"\" etc. In rabbinical literature the temple is \"\"Beit HaMikdash\"\", \"\"The Sanctified House\"\", and only the Temple in Jerusalem is referred to by this name. The Hebrew Bible says that the First Temple was built by King Solomon. According to the Book of Deuteronomy, as the sole place of Israelite sacrifice (), the Temple replaced the Tabernacle constructed in the Sinai Desert under the auspices of Moses, as well as local sanctuaries, and altars in the hills. This temple was sacked a few decades later by Shoshenq I, Pharaoh"} +{"qid": "test733", "pid": "14786368", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Temple of Solomon (São Paulo)\"\nTemple of Solomon (São Paulo) The Temple of Solomon (, ) is a replica of the Temple of Solomon built by the Universal Church of the Kingdom of God in São Paulo. According to Brazilian press reports, the new temple is an \"\"exact replica\"\" of the ancient Temple of Solomon in Jerusalem. According to the church's leader, \"\"The outside is exactly the same as that which was built in Jerusalem\"\", but with increased dimensions. Bishop Edir Macedo, the founder and leader of the neo-pentecostal church, at the time of construction explained that \"\"We are preparing ourselves to build the temple,"} +{"qid": "test733", "pid": "6738755", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Religious significance of Jerusalem\"\nJudaism it is considered the Written Law, the basis for the Oral Law (Mishnah, Talmud and Shulkhan Arukh) studied, practiced and treasured by Jews and Judaism for three millennia. The Talmud elaborates in great depth the Jewish connection with the city. According to the Hebrew Bible, the First Temple, at the site known as the Temple Mount today, was built by King Solomon and finished in 950 BC, and Mount Moriah is where Abraham almost sacrificed his son and talked to God. When the Babylonians captured the city in 580 BC, they destroyed the temple and sent the Jews into"} +{"qid": "test733", "pid": "6738766", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Religious significance of Jerusalem\"\nof Jerusalem will not mention the name of God. (Elsewhere, however, it more prosaically says the city was built by Solomon.) However, Yahya (John the Baptist), an important figure in the religion, is said to have been born there. Religious significance of Jerusalem The city of Jerusalem is sacred to a number of religious traditions, including the Abrahamic religions Judaism, Christianity, and Islam, which consider it a holy city. Some of the most sacred places for each of these religions are found in Jerusalem and the one shared between all three is the Temple Mount. Jerusalem has been the holiest"} +{"qid": "test733", "pid": "8286251", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Va'etchanan\"\nEgypt is described as an \"\"iron furnace\"\". Solomon used the same image in his prayer at the dedication of the temple he built in Jerusalem. (). In Moses called heaven and earth to serve as witnesses against Israel, and he did so again in and Similarly, Psalm reports that God \"\"summoned the heavens above, and the earth, for the trial of His people,\"\" saying \"\"Bring in My devotees, who made a covenant with Me over sacrifice!\"\" continues: \"\"Then the heavens proclaimed His righteousness, for He is a God who judges.\"\" Many commentators have called the account in a fuller narrative"} +{"qid": "test733", "pid": "15892143", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Priesthood (Ancient Israel)\"\nPriesthood (Ancient Israel) The priesthood of Ancient Israel was the class of male individuals, who, according to the Hebrew Bible, were patrilineal descendants from Aaron (the elder brother of Moses), who served in the Tabernacle, Solomon's Temple and Second Temple until the destruction of Jerusalem in 70 CE. Their temple role included animal sacrifice. The priests (Hebrew \"\"kohanim\"\") are viewed as continuing in the Kohen families of rabbinical Judaism. The first priest mentioned in the Bible is Melchizedek, who was a priest of the Most High, and who officiated for Abraham. The first priest mentioned of another god is Potipherah"} +{"qid": "test733", "pid": "19698415", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Archaeological remnants of the Jerusalem Temple\"\nThey believe the temple should not really be assigned to Solomon, who they see as little more than a small-time hill country chieftain, and was most likely built by Josiah, who governed Judah from 639 to 609 BCE. The term \"\"Second Temple\"\" describes the temple described in the Bible as having been built after the accession of Cyrus the Great to the throne of the Persian Empire in 559 BCE made the re-establishment of the city of Jerusalem and the rebuilding of the Temple possible. The physical evidence for the existence of this Temple is extensive. Consecrated in 516 BCE"} +{"qid": "test733", "pid": "19698413", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Archaeological remnants of the Jerusalem Temple\"\nArchaeological remnants of the Jerusalem Temple Several kinds of archaeological remnants of the Jerusalem Temple exist, both for the Temple that stood before the destruction of Jerusalem by Babylonia in 586 BCE, and for the rebuilt Temple that stood until destruction by Rome in the year 70. The term First Temple is customarily used to describe the Temple of the Biblical period, which is thought to have been destroyed by the Babylonian conquest. It is described in the Bible as having been built by King Solomon, and is understood to have been constructed with its Holy of Holies centered on"} +{"qid": "test733", "pid": "5856014", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Third Temple\"\nThird Temple If built, the Third Temple (, \"\"Beit haMikdash haShlishi\"\", literally: The House, the Holy, the Third) would be the third Jewish temple in Jerusalem after Solomon's Temple and the rebuilt Second Temple. Although it has not been built, prospects for its completion are important in Jewish eschatology. The Third Temple is portrayed as a religious notion and desire in Judaism rooted and expressed in many of Judaism's prayers for the return and rebuilding of the Temple in Jerusalem that had once stood as the First and Second Temples that were destroyed by the ancient Babylonians and the Romans."} +{"qid": "test733", "pid": "40056", "query": "who built the first temple for god in jerusalem", "answer": "Solomon", "passage": "\"Books of Chronicles\"\nGod in Jerusalem, and fights the wars that will enable the Temple to be built, then Solomon becomes king, builds and dedicates the Temple, and reaps the benefits of prosperity and peace). The last events in Chronicles take place in the reign of Cyrus the Great, the Persian king who conquered Babylon in 539 BC; this sets an earliest possible date for the book. It was probably composed between 400–250 BC, with the period 350–300 BC the most likely. The latest person mentioned in Chronicles is Anani, an eighth-generation descendant of King Jehoiachin according to the Masoretic Text. Anani's birth"} +{"qid": "test734", "pid": "18461627", "query": "what is a dropped pin on google maps for", "answer": "marks locations in Google Maps", "passage": "\"Google Maps pin\"\nGoogle Maps pin The Google Maps pin is the inverted-drop-shaped icon that marks locations in Google Maps. The pin is protected under a U.S. design patent as \"\"teardrop-shaped marker icon including a shadow\"\". Google has used the pin in various graphics, games, and promotional materials. The pin, sometimes referred to as \"\"the marker\"\", has been widely co-opted by other companies, organizations, and individuals for their own marketing efforts, artwork, and activism. In both digital and physical representations, the pin is often used to symbolize mapping software and the technology industry as a whole. The Google Maps pin has been called"} +{"qid": "test734", "pid": "18461641", "query": "what is a dropped pin on google maps for", "answer": "marks locations in Google Maps", "passage": "\"Google Maps pin\"\nas google map does. The iconic symbol will become a navigating landmark for the flying birds.\"\" Jaime Derriger wrote, \"\"The icon that we have all come to know and love which graces our Google maps to let us know where we are, or where we need to go, has become ubiquitous. Designer Shu-Chun Hsiao realized this and created the Google Birdhouse Project, an ongoing project to give birds destinations of their own, just like Google maps does for humans\"\". Google Maps pin The Google Maps pin is the inverted-drop-shaped icon that marks locations in Google Maps. The pin is protected"} +{"qid": "test736", "pid": "5794718", "query": "who wrote the song photograph by ringo starr", "answer": "George Harrison", "passage": "\"Photograph (Ringo Starr song)\"\nPhotograph (Ringo Starr song) \"\"Photograph\"\" is a song by English musician Ringo Starr that was released as the lead single from his 1973 album \"\"Ringo\"\". Starr co-wrote the song with George Harrison, his former bandmate from the Beatles. Although the two of them collaborated on other compositions, it is the only song officially credited to the pair. A signature tune for Starr as a solo artist, \"\"Photograph\"\" became an international hit, topping singles charts in the United States, Canada and Australia, and receiving gold disc certification for US sales of 1 million. Music critics have similarly received the song favourably;"} +{"qid": "test736", "pid": "5794747", "query": "who wrote the song photograph by ringo starr", "answer": "George Harrison", "passage": "\"Photograph (Ringo Starr song)\"\nfirst at her most soulful\"\", according to music critic Bruce Eder. While Starr's original recording appeared on the soundtrack to \"\"Funny People\"\", a cover by the film's leading actor, Adam Sandler, is available as an iTunes bonus track with the album. Photograph (Ringo Starr song) \"\"Photograph\"\" is a song by English musician Ringo Starr that was released as the lead single from his 1973 album \"\"Ringo\"\". Starr co-wrote the song with George Harrison, his former bandmate from the Beatles. Although the two of them collaborated on other compositions, it is the only song officially credited to the pair. A signature"} +{"qid": "test736", "pid": "5794742", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nOn 29 November 2002, Starr performed \"\"Photograph\"\" at the Concert for George, held at London's Royal Albert Hall to mark the first anniversary of Harrison's death. According to the Concert for George website: \"\"Ringo Starr caught everyone with a tear in their eye with a rendition of 'Photograph', a composition he wrote with George, which seemed to sum up how everyone felt.\"\" Starr's appearance came towards the end of the concert, and Inglis writes that his arrival was \"\"given an extra poignancy by his choice of song\"\". In his preamble to the audience, Starr stated, \"\"I loved George, George loved"} +{"qid": "test736", "pid": "5794735", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nof the album's \"\"three most wonderful songs\"\", along with the Lennon-composed \"\"I'm the Greatest\"\" and the Harrison–Mal Evans collaboration \"\"You and Me (Babe)\"\". Gerson noted how the song's intro provided an effective \"\"pull on the listener\"\" and wrote that, while the lyrics had a sorrowful quality, \"\"the effect is warming\"\". \"\"Billboard\"\"s album reviewer praised Perry's \"\"stunning production\"\" on \"\"the best Ringo album ever\"\", adding: \"\"We all know already that 'Photograph' has got to be a No. 1 single this month, right?\"\" Although less impressed with \"\"Ringo\"\", Alan Betrock wrote in \"\"Phonograph Record\"\": \"\"It's also clear when you reach 'Photograph'"} +{"qid": "test736", "pid": "5794721", "query": "who wrote the song photograph by ringo starr", "answer": "George Harrison", "passage": "\"Photograph (Ringo Starr song)\"\nwith the Roundheads. In November 2002, a year after Harrison's death, Starr sang \"\"Photograph\"\" at the Concert for George – a performance that was an emotional highpoint of the event. Engelbert Humperdinck, Camper Van Beethoven, Cilla Black and Adam Sandler are among the artists who have covered the song. Ex-Beatles Ringo Starr and George Harrison began writing \"\"Photograph\"\" on a luxury yacht in the South of France in May 1971. Starr had hired a yacht, the \"\"Marala\"\", for the duration of the Cannes Film Festival, after attending Mick Jagger's wedding in St Tropez with his wife, Maureen Starkey. The Starkeys"} +{"qid": "test736", "pid": "10439432", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph: The Very Best of Ringo Starr\"\nPhotograph: The Very Best of Ringo Starr Photograph: The Very Best of Ringo Starr (the last word visually rendered as ) is a career-spanning best-of compilation album by Ringo Starr and is the first such album since the releases of 1975's \"\"Blast from Your Past\"\" and 1989's \"\"\"\". The release of the new collection coincided with the reissue of Starr's first four solo albums for EMI, in digital format, on 28 August 2007. The tracks from 70's and 80' presented on the compilation featured updated mixes of the songs in comparison to the Starr's 90's CD reissues of his earlier"} +{"qid": "test736", "pid": "5794745", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nscreen behind him.\"\" The accompanying images were taken from Starr's recently published book; also titled \"\"Photograph\"\", it consists of photos from his personal collection, dating back to the 1950s and '60s. Engelbert Humperdinck and the Ray Conniff Singers each released recordings of the song in 1974. The following year, London-based recording engineer David Hentschel covered \"\"Photograph\"\", along with all the other tracks on \"\"Ringo\"\", for his album \"\"Sta*rtling Music\"\".Woffinden, Bob (12 April 1975). \"\"Ringo Starr: Everyone One of Us Has All We Need ...\"\". \"\"NME\"\". Available at Rock's Backpages (\"\"subscription required\"\"). The latter, an experimental work featuring Hentschel"} +{"qid": "test736", "pid": "13218925", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"A Dose of Rock 'n' Roll\"\nUK on 15 October but failed to chart there. \"\"A Dose of Rock 'n' Roll\"\" is also the title of a later book by Nancy Lee Andrews, a fashion model and photographer, who had previously been engaged to Ringo Starr, and whom she subsequently sued for palimony. A Dose of Rock 'n' Roll \"\"A Dose of Rock 'n' Roll\"\" is a song written by Carl Groszman, who at the time was signed to Ringo Starr's record label, Ring O' Records. Starr released his own recording of the song on his 1976 album \"\"Ringo's Rotogravure\"\". Also issued as the album's lead"} +{"qid": "test736", "pid": "5794746", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\non ARP synthesizer, was the first release on Starr's short-lived record label, Ring O' Records. A cover version of the song by American alt rock band Camper Van Beethoven appeared on their 1993 rarities compilation \"\"Camper Vantiquities\"\". Canadian band Sloan made mention of \"\"Photograph\"\" in their 1996 single \"\"The Lines You Amend\"\", the lyrics of which refer to a song \"\"\"\"... about photographs / Sung by Ringo Starr / Especially in the chorus part / You always said, 'Now don't you start'.\"\"\"\" Cilla Black eventually recorded \"\"Photograph\"\", for her 2003 album \"\"\"\" – a version that \"\"she jumps into head"} +{"qid": "test736", "pid": "16275740", "query": "who wrote the song photograph by ringo starr", "answer": "George Harrison", "passage": "\"You and Me (Babe)\"\nYou and Me (Babe) \"\"You and Me (Babe)\"\" is a song by English musician Ringo Starr, released as the final track on his 1973 album \"\"Ringo\"\". Starr's fellow ex-Beatle George Harrison wrote the song along with Mal Evans, the Beatles' longtime aide and a personal assistant to Starr during the making of \"\"Ringo\"\". The track serves as a farewell from Starr to his audience in the manner of a show-closing finale, by lyrically referring to the completion of the album. During the extended fadeout, Starr delivers a spoken message in which he thanks the musicians and studio personnel who helped"} +{"qid": "test736", "pid": "5794739", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nRecords. For the 1991 CD reissue of \"\"Ringo\"\", the album was expanded through the inclusion of three bonus tracks, the last of which was the long-unavailable \"\"Down and Out\"\". In 2009, \"\"Photograph\"\" was featured in the Judd Apatow-directed film \"\"Funny People\"\" and appeared on the accompanying soundtrack album. Following his return to touring in July 1989 – the first tour for Starr since the Beatles quit performing live in 1966Sandall, Robert (January 1991). \"\"Ringo Starr\"\". \"\"Q\"\". Available at Rock's Backpages (\"\"subscription required\"\"). – he has played \"\"Photograph\"\" regularly with the various incarnations of his All-Starr Band. Eschewing his drum"} +{"qid": "test736", "pid": "5794738", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nacknowledges the extent of Harrison's influence on this and other tracks on \"\"Ringo\"\" while rueing that \"\"Photograph\"\" marks the only formal co-composition by the two ex-Beatles. Huntley describes the song as the album's \"\"stand-out track\"\" and \"\"by a country mile, the commercial high-point\"\" for Starr as a songwriter. Former \"\"Mojo\"\" editor Mat Snow recognises it as \"\"perhaps the single best song of [Starr's] career\"\" and the \"\"emotional heart\"\" of the album. The song provided the title to Starr's 2007 career-spanning compilation \"\"\"\", having earlier appeared on \"\"Blast from Your Past\"\" (1975), a greatest-hits collection covering his years on Apple"} +{"qid": "test736", "pid": "5794733", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nafter \"\"Photograph\"\". Noting the context in which Starr's song of \"\"beautiful sadness\"\" was released in the United States, Clayson describes \"\"Photograph\"\" as having been a popular request on radio playlists \"\"for a nation still awaiting the return of many of its sons from Vietnam, following the January cease-fire\"\". Rodriguez comments on the precipitous timing of the single, which \"\"capitaliz[ed] on the year's nostalgia craze\"\", while news of Starr recording with each of his former bandmates during the \"\"Ringo\"\" sessions provided further impetus. In late November, the single topped America's \"\"Billboard\"\" Hot 100 for one week, Starr's first number 1 hit"} +{"qid": "test736", "pid": "349682", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Ringo Starr\"\nRingo Starr Sir Richard Starkey (born 7 July 1940), known professionally as Ringo Starr, is an English musician, singer, songwriter and actor who gained worldwide fame as the drummer for the Beatles. He occasionally sang lead vocals, usually for one song on an album, including \"\"With a Little Help from My Friends\"\", \"\"Yellow Submarine\"\", \"\"Good Night\"\", and their cover of \"\"Act Naturally\"\". He also wrote the Beatles' songs \"\"Don't Pass Me By\"\" and \"\"Octopus's Garden\"\", and is credited as a co-writer of others, including \"\"What Goes On\"\" and \"\"Flying\"\". Starr was afflicted by life-threatening illnesses during childhood, and he fell"} +{"qid": "test736", "pid": "349769", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Ringo Starr\"\nappeared in interview segments with fellow drummer Keith Moon. Since the breakup of the Beatles, Starr has released 19 solo studio albums: Ringo Starr Sir Richard Starkey (born 7 July 1940), known professionally as Ringo Starr, is an English musician, singer, songwriter and actor who gained worldwide fame as the drummer for the Beatles. He occasionally sang lead vocals, usually for one song on an album, including \"\"With a Little Help from My Friends\"\", \"\"Yellow Submarine\"\", \"\"Good Night\"\", and their cover of \"\"Act Naturally\"\". He also wrote the Beatles' songs \"\"Don't Pass Me By\"\" and \"\"Octopus's Garden\"\", and is credited"} +{"qid": "test736", "pid": "5794741", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nin August 2005. Featuring backing from the Roundheads – a band led by his latter-day producer Mark Hudson – these recordings were issued on Starr's releases \"\"VH1 Storytellers\"\" (1998) and \"\"\"\" (2007), respectively. Further versions with his All-Starr Band have appeared on the albums \"\"King Biscuit Flower Hour Presents Ringo & His New All-Starr Band\"\" (2002), \"\"Ringo Starr & His All Starr Band Live 2006\"\" (2008) and \"\"Live at the Greek Theatre 2008\"\" (2010), the latter with Gary Wright among the revised line-up. Starr re-recorded the song with the American band Vandaveer for his 2017 album \"\"Give More Love\"\"."} +{"qid": "test736", "pid": "5794736", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nthat Side One is the undisputed champ of the album. Jack Nitzsche has thrown in a lot of \"\"his\"\" past influences here, including the Famous School of Phil Spector castanets, lesson No. 2.\"\" Betrock concluded of the song: \"\"'Photograph' is one of those rare pop records that grows stronger with each play, and will be covered and revived for years to come (I'll lay you 50-1 it appears on the next Andy Williams album).\"\"Betrock, Alan (December 1973). \"\"Ringo Starr: \"\"Ringo\"\"\"\". \"\"Phonograph Record\"\". Available at Rock's Backpages (\"\"subscription required\"\"). Stephen Thomas Erlewine of AllMusic considers \"\"Photograph\"\" a \"\"gorgeous collaboration\"\" between"} +{"qid": "test736", "pid": "11169408", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Ringo Starr: Live at Soundstage\"\nboth as a solo artist and as a member of the Beatles. The tracks include \"\"Yellow Submarine\"\", \"\"Octopus' Garden\"\", \"\"Photograph\"\" and songs from his two previous studio albums, \"\"Choose Love\"\" and \"\"Ringo Rama\"\". Ringo Starr: Live at Soundstage Ringo Starr: Live at Soundstage is a 2007 live album by English rock musician Ringo Starr. It was recorded at the Genesee Theatre in Waukegan, Illinois on 24 June 2005 as part of the PBS concert series \"\"Soundstage\"\". The Roundheads for this performance were: Steve Dudas (lead guitar), Gary Burr (guitar), Mark Hudson (guitar), Matt Bissonette (bass guitar), Mark Hart (keyboards) and"} +{"qid": "test736", "pid": "5794740", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nkit for the role of lead singer, Starr often closed his shows with the song (before returning for an encore) during tours he made between 1989 and 2000. A live version appeared on the album and video \"\"Ringo Starr and His All-Starr Band\"\" (1990); recorded at the Greek Theatre, Los Angeles, on 3 September 1989, it features the original All-Starr line-up of Starr, Billy Preston, Jim Keltner, Rick Danko, Levon Helm, Dr. John, Joe Walsh, Nils Lofgren and Clarence Clemons. Starr also included the song in his performances on the television shows \"\"VH1 Storytellers\"\", in May 1998, and PBS's \"\"Soundstage\"\","} +{"qid": "test736", "pid": "1518951", "query": "who wrote the song photograph by ringo starr", "answer": "George Harrison", "passage": "\"Cilla Black\"\n(Something's Gonna Happen Tonight)\"\" (UK No. 3) in 1971. Black's association with the Beatles continued. At the 1971 Cannes Film Festival she joined George Harrison, Ringo Starr and singer Marc Bolan to attend a screening of the John Lennon–Yoko Ono experimental film \"\"Erection\"\". She also holidayed with Harrison and Starr on a trip aboard a yacht chartered by Starr. \"\"Photograph\"\" was written on this trip—originally intended for Black—but Starr decided to record it himself. George Harrison also wrote two songs for Black: \"\"The Light that has Lighted the World\"\" and \"\"I'll Still Love You (When Every Song is Sung)\"\". The"} +{"qid": "test736", "pid": "16275752", "query": "who wrote the song photograph by ringo starr", "answer": "George Harrison", "passage": "\"You and Me (Babe)\"\n\"\"Ringo Starr: Everyone One of Us Has All We Need …\"\", \"\"NME\"\", 12 April 1975; available at Rock's Backpages (subscription required).
The latter, an experimental work featuring Hentschel on ARP synthesizer, was one of the first releases on Starr's short-lived record label, Ring O' Records. You and Me (Babe) \"\"You and Me (Babe)\"\" is a song by English musician Ringo Starr, released as the final track on his 1973 album \"\"Ringo\"\". Starr's fellow ex-Beatle George Harrison wrote the song along with Mal Evans, the Beatles' longtime aide and a personal assistant to Starr during the making of \"\"Ringo\"\". The track"} +{"qid": "test736", "pid": "5794729", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nthe production that Harrison adopted for Ravi Shankar's song \"\"I Am Missing You\"\", an April 1973 recording that also featured Starr. With \"\"Photograph\"\" selected as the album's lead single, Starr chose \"\"Down and Out\"\", a song written by him alone, for the B-side. Starr recorded the song in England, backed by Harrison, pianist Gary Wright and Voormann. The Harrison-produced session most likely took place in 1972, according to authors Chip Madinger and Mark Easter, during the same period as Starr and Harrison's first attempt at recording \"\"Photograph\"\". A twelve-bar blues with what Starr biographer Alan Clayson describes as \"\"perfunctory\"\" lyrics,"} +{"qid": "test736", "pid": "10439434", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph: The Very Best of Ringo Starr\"\nand title for the iTunes release differs from the standard release. Unlike the standard CD release, the digital album contains \"\"Oo-Wee\"\" (from \"\"Goodnight Vienna\"\"), \"\"Have You Seen My Baby\"\" and an extended version of \"\"Six O'Clock\"\" (both from \"\"Ringo\"\") in place of \"\"Hey! Baby\"\", \"\"A Dose of Rock 'n' Roll\"\" and \"\"King of Broken Hearts.\"\" A digital booklet was also included with the purchase of \"\"Photograph: The Digital Hits.\"\" Photograph: The Very Best of Ringo Starr Photograph: The Very Best of Ringo Starr (the last word visually rendered as ) is a career-spanning best-of compilation album by Ringo Starr and"} +{"qid": "test736", "pid": "5794737", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nStarr and Harrison, a track that \"\"ranks ... among the very best post-Beatles songs by any of the Fab Four\"\". Robert Rodriguez describes it as \"\"an elegantly produced ballad\"\" and Starr's \"\"signature tune as a solo artist\"\". Rodriguez continues: \"\"The ersatz Wall of Sound somehow managed not to swamp the lead vocal and Harrison harmony, while embodying the best qualities of the Beatles' singles: hummable and familiar, yet fresh and enduring.\"\" In his 1977 book \"\"The Beatles Forever\"\", Nicholas Schaffner wrote of how the song's \"\"grand, sweeping arrangement\"\" was reminiscent of Harrison's \"\"own recent cosmic productions\"\". Author Elliot Huntley similarly"} +{"qid": "test736", "pid": "5794726", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\ntook place at either Apple Studio in central London, or Harrison's home studio, FPSHOT, in Oxfordshire. Starr re-recorded the song in March 1973, while working at Sunset Sound Recorders in Los Angeles on \"\"Ringo\"\", his first solo album in the rock or contemporary pop style. He later described \"\"Ringo\"\" as an \"\"accidental album\"\", since it only came about because he was attending the Grammy Awards in Nashville, where \"\"The Concert for Bangladesh\"\" won the Grammy for Best Album of 1972. Keen to find another activity to justify the flight to the US, Starr arranged to record with American producer Richard"} +{"qid": "test736", "pid": "5794727", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nPerry during the visit. The recording engineer on \"\"Photograph\"\" was Bill Schnee, and author Simon Leng suggests that Harrison helped \"\"hew\"\" the production. Along with Starr (on drums) and Harrison (12-string acoustic guitar), the other musicians included Nicky Hopkins (piano), Klaus Voormann (bass) and Jim Keltner (drums), all of whom had participated in the sessions for \"\"Material World\"\". In addition, Vini Poncia, Starr's new songwriting partner, and session musician Jimmy Calvert played acoustic rhythm guitar on the Los Angeles recording. Overdubs on the basic tracks recorded for \"\"Ringo\"\" took place from April to July 1973. On \"\"Photograph\"\", the additional instrumentation"} +{"qid": "test736", "pid": "5794731", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nBerkshire estate that he had recently purchased from former bandmate John Lennon. To circumvent the BBC's ban on lip-synching, Starr placed his hand over his mouth for part of the song, thereby making it impossible to tell whether he was singing or merely miming. The single's picture sleeve consisted of a photo by Barry Feinstein that showed Starr's head poking through a large star made of silver foil. The same image, which author Bruce Spizer terms \"\"the Ringo starfish\"\", appeared on the single's face labels and on those of the \"\"Ringo\"\" album. The album's release followed in November 1973, with"} +{"qid": "test736", "pid": "5794734", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\non that chart as a solo artist and Harrison's third there as a composer since the Beatles' break-up in 1970. \"\"Photograph\"\" was also number 1 in Canada and Australia, while in Britain it peaked at number 8. In Rodriguez's words, the single \"\"did a good job of setting the table\"\" for \"\"Ringo\"\", which also enjoyed considerable commercial success. On 28 December 1973, \"\"Photograph\"\" was certified gold by the Recording Industry Association of America, signifying US sales of 1 million – Starr's second such award, after \"\"It Don't Come Easy\"\". On release, Ben Gerson of \"\"Rolling Stone\"\" highlighted \"\"Photograph\"\" as one"} +{"qid": "test736", "pid": "10439433", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph: The Very Best of Ringo Starr\"\nalbums. All the tracks from Ringo's first compilation \"\"Blast From Your Past\"\" appeared on \"\"Photograph: The Very Best of Ringo Starr\"\". The compilation debuted at number 26 on the UK Albums Chart on 2 September 2007. This achievement represented Starr's highest peak on that chart since 1974, when \"\"Goodnight Vienna\"\" reached number 30. \"\"Photograph: The Very Best of Ringo Starr\"\" stayed in the UK top 100 for three weeks. The album also had a two-week chart run in the United States, where it debuted at number 130 with 5,426 copies sold during the first week of release. The track listing"} +{"qid": "test736", "pid": "5794722", "query": "who wrote the song photograph by ringo starr", "answer": "Ringo Starr", "passage": "\"Photograph (Ringo Starr song)\"\nwere then joined in France by Harrison and the latter's wife, Pattie Boyd, for the Monaco Grand Prix. This period coincided with Starr's first success as a solo artist, with the Harrison-produced single \"\"It Don't Come Easy\"\", although he would continue to focus on his career as a film actor, beginning with a role in \"\"Blindman\"\" (1971). Another guest on the \"\"Marala\"\" was Cilla Black, singer and a friend to the Beatles since the 1960s, who recalls Starr and Harrison playing \"\"Photograph\"\" during an evening get-together, with \"\"everyone on board\"\" contributing ideas for the lyrics. As with Starr's two singles"} +{"qid": "test737", "pid": "18563346", "query": "who is playing the halftime show at super bowl 2016", "answer": "Beyoncé", "passage": "\"Super Bowl 50 halftime show\"\nSuper Bowl 50 halftime show The Super Bowl 50 Halftime Show took place on February 7, 2016, at Levi's Stadium in Santa Clara, California as part of Super Bowl 50. It was headlined by the British rock group Coldplay with special guest performers Beyoncé and Bruno Mars, who previously had headlined the Super Bowl XLVII and Super Bowl XLVIII halftime shows, respectively. Coldplay, Rihanna, and Katy Perry were considered as potential acts for the Super Bowl XLIX halftime show in 2015. Perry was soon confirmed as the headliner of the halftime show in October 2014. In late November, 2015, reports"} +{"qid": "test737", "pid": "18563356", "query": "who is playing the halftime show at super bowl 2016", "answer": "Beyoncé", "passage": "\"Super Bowl 50 halftime show\"\nwho \"\"are willing to raise social consciousness and use their artistry to advance social justice.\"\" In attempt to address her own controversy, Beyoncé explained, \"\"I have so much admiration and respect for officers and the families of officers who sacrifice themselves to keep us safe. But let's be clear: I am against police brutality and injustice.\"\" The halftime show became the fourth highest ever watched show in the United States, with total viewership of 115.5 million. Setlist obtained from \"\"Billboard\"\". Super Bowl 50 halftime show The Super Bowl 50 Halftime Show took place on February 7, 2016, at Levi's Stadium"} +{"qid": "test737", "pid": "18084512", "query": "who is playing the halftime show at super bowl 2016", "answer": "Beyoncé", "passage": "\"Super Bowl 50\"\nthe league confirmed that the show would be headlined by the British rock band Coldplay. On January 7, 2016, Pepsi confirmed to the Associated Press that Beyoncé, who headlined the Super Bowl XLVII halftime show and collaborated with Coldplay on the single \"\"Hymn for the Weekend\"\" (which was removed from the setlist before the game), would be making an appearance. Bruno Mars, who headlined the Super Bowl XLVIII halftime show, and Mark Ronson (Mars's collaborator on \"\"Uptown Funk\"\") also performed. Denver took the opening kickoff of Super Bowl 50 and started out strong. Quarterback Peyton Manning completed an 18-yard pass"} +{"qid": "test737", "pid": "17836780", "query": "who is playing the halftime show at super bowl 2016", "answer": "Bruno Mars", "passage": "\"Super Bowl XLVIII halftime show\"\nSuper Bowl XLVIII halftime show The Super Bowl XLVIII halftime show occurred on February 2, 2014 at MetLife Stadium in New Jersey as part of Super Bowl XLVIII and was headlined by American singer Bruno Mars alongside his band The Hooligans with special guests The Red Hot Chili Peppers. The show was produced by Ricky Kirshner and directed by Hamish Hamilton. At the time of airing the halftime show attracted the largest audience in the history of the Super Bowl, attracting 115.3 million viewers. The show was later surpassed by the following year's Super Bowl XLIX halftime show in which"} +{"qid": "test737", "pid": "17079291", "query": "who is playing the halftime show at super bowl 2016", "answer": "Beyoncé", "passage": "\"Super Bowl XLVII halftime show\"\nSuper Bowl XLVII halftime show The Super Bowl XLVII halftime show occurred on February 3, 2013, at the Mercedes-Benz Superdome in New Orleans as part of Super Bowl XLVII and featured American entertainer Beyoncé with special guests Kelly Rowland and Michelle Williams from Destiny's Child. The show was produced by Ricky Kirshner and directed by Hamish Hamilton. It received acclaim from music critics who commented that Beyoncé once more proved her abilities during live performances. It became the then second most watched show in Super Bowl history by garnering 110.8 million viewers. The performance, and the stadium blackout that followed,"} +{"qid": "test737", "pid": "17079304", "query": "who is playing the halftime show at super bowl 2016", "answer": "Beyoncé", "passage": "\"Super Bowl XLVII halftime show\"\nSuper Bowl XLIX halftime show with 118.5 million viewers. Beyoncé's performance at the Super Bowl XLVII halftime show became the most tweeted-about moment in Twitter history with 268,000 tweets per minute. In the week ending February 10, 2013, Beyoncé sold 220,000 digital song downloads in the US, while Destiny's Child sold 60,000; up 80% and 36% on the previous week, respectively. Set list adapted from BBC. Super Bowl XLVII halftime show The Super Bowl XLVII halftime show occurred on February 3, 2013, at the Mercedes-Benz Superdome in New Orleans as part of Super Bowl XLVII and featured American entertainer Beyoncé"} +{"qid": "test737", "pid": "17836795", "query": "who is playing the halftime show at super bowl 2016", "answer": "Bruno Mars", "passage": "\"Super Bowl XLVIII halftime show\"\nOne Direction tickets and Jason Aldean tickets, which were two of the highest prices for an American tours during the spring and summer of 2014. Super Bowl XLVIII halftime show The Super Bowl XLVIII halftime show occurred on February 2, 2014 at MetLife Stadium in New Jersey as part of Super Bowl XLVIII and was headlined by American singer Bruno Mars alongside his band The Hooligans with special guests The Red Hot Chili Peppers. The show was produced by Ricky Kirshner and directed by Hamish Hamilton. At the time of airing the halftime show attracted the largest audience in the"} +{"qid": "test74", "pid": "4325778", "query": "where did the term spirits for alcohol come from", "answer": "Middle Eastern alchemy", "passage": "Liquor\n\"\"OED\"\" mentions of its meaning \"\"a liquid for drinking\"\" occurred in the 14th century. Its use as a term for \"\"an intoxicating alcoholic drink\"\" appeared in the 16th century. The term \"\"spirit\"\" in reference to alcohol stems from Middle Eastern alchemy. These alchemists were more concerned with medical elixirs than with transmuting lead into gold. The vapor given off and collected during an alchemical process (as with distillation of alcohol) was called a spirit of the original material. Early evidence of distillation comes from Akkadian tablets dated \"\"circa\"\" 1200 BC describing perfumery operations, providing textual evidence that an early primitive"} +{"qid": "test740", "pid": "17258910", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"World Economic Forum in Baku\"\nWorld Economic Forum in Baku World Economic Forum in Baku – was held in Baku (Azerbaijan) on April 7-8, 2013. “Strategic dialogue on the future of the South Caucasus and Central Asia” was the theme of the forum. More than 200 representatives of business sphere, administration and civil organizations took part at the forum. General agreement about holding of the World Economic Forum in Baku was signed on January 23, 2013 in Swiss Davos, during the meeting of Ilham Aliyev, the President of Azerbaijani Republic and Klaus Schwab, executive chairman of the World Economic Forum. Discussion of issues on development"} +{"qid": "test740", "pid": "10679156", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"Social forum\"\nSocial forum A social forum is an open meeting place for civil society organizations and individuals opposed to neoliberalism and what its participants regard as the domination of the world by capital and imperialism. The first social forum was the World Social Forum (WSF) held in January 2001 in Porto Alegre. It was designed as a counter forum to the World Economic Forum (WEF) held in Davos at the same time. While the WSF regards the WEF as a meeting of the political and economic elite of the world, the WSF gathers social forces and aims to promotes democratization and"} +{"qid": "test740", "pid": "1471439", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"World Economic Forum\"\ncriticized in the Swiss national media. Since the annual meeting in January 2003 in Davos, an \"\"Open Forum Davos\"\", co-organized by the Federation of Swiss Protestant Churches, is held concurrently with the Davos forum, opening up the debate about globalization to the general public. The Open Forum has been held in the local high school every year, featuring top politicians and business leaders. It is open to all members of the public free of charge. The annual meeting of the forum also has been decried as a \"\"mix of pomp and platitude\"\" and criticized for moving away from serious economics"} +{"qid": "test740", "pid": "14307111", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"St. Petersburg International Economic Forum\"\nand exhibitions, became the new SPIEF venue. The Forum was held on June 8–10, 2007. The Forum was a cooperation between two venues – the St. Petersburg International Economic Forum and the World Economic Forum in Davos. It was commemorated by the signing of a Memorandum of Understanding between the Russian Ministry of Economic Development and the Trade and the World Economic Forum. SPIEF was attended by more than 8,000 people and delegations from 76 countries, including 9 heads of state, 3 prime ministers, representatives of 340 foreign businesses from 65 countries, 37 representatives of the Federation Council of the"} +{"qid": "test740", "pid": "1471441", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"World Economic Forum\"\nthe intellectual agenda for the meeting) have been convicted of serious criminal, civil, or human rights violations, raising significant issues about the forum's legitimacy as a neutral convener on certain topics. The Public Eye Awards have been held every year since 2000. It is a counter-event to the annual meeting of the World Economic Forum (WEF) in Davos. Public Eye Awards is a public competition of the worst corporations in the world. In 2011, more than 50,000 people voted for companies that acted irresponsibly. At a ceremony at a Davos hotel, the \"\"winners\"\" in 2011 were named as Indonesian palm"} +{"qid": "test740", "pid": "14070097", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"The Russia Forum\"\nThe Russia Forum The Russia Forum was an annual event held in Moscow, hosted by Troika Dialog from 2008 to 2013. From 2012, The Russia Forum was jointly presented by Sberbank of Russia and Troika Dialog. Sometimes referred to as the \"\"Russian Davos\"\" (World Economic Forum in Davos), not only because the event in Switzerland is held a few days before the forum in Moscow, but also because of the high-profile nature of the speakers and scale of the industry leading agenda and high-level discussion attracted to The Russia Forum. The Russia Forum was one of the key economic events"} +{"qid": "test740", "pid": "1471433", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"World Economic Forum\"\nwas held in Dubai in November 2017, when there were 35 distinct councils focused on a specific issue, industry or technology. In 2017 members met with representatives and partners of the Forum's new Center for the Fourth Industrial Revolution. Ideas and proposals are taken forward for further discussion at the World Economic Forum Annual Meeting in Davos-Klosters in January. The Technology Pioneers Programme recognizes companies that are designing and developing new technologies. The award is given to 30–50 companies each year. Since 2000, Technology Pioneers have consisted of more than 400 companies from 5 continents. The Tech Pioneers are integrated"} +{"qid": "test740", "pid": "13130232", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"Ray O. Johnson\"\nsolve many of the world's most challenging problems. For the 2012 World Economic Forum Annual Meeting, he was a member of the Davos Open Forum panel, A Day Without Satellites. The panel discussed the importance of space, the associated technologies, and the current and future space-related challenges. He currently serves as a member of the World Economic Forum’s Global Agenda Council on Space Security. In 2013, Johnson participated in four World Economic Forum Annual Meeting sessions: Manufacturing for Growth - Strategies for Driving Growth and Employment, where he led a discussion on advanced manufacturing; Cyber Resilience, where he led a"} +{"qid": "test740", "pid": "1471407", "query": "where was the world economic forum held this year", "answer": "Davos", "passage": "\"World Economic Forum\"\nits name to the World Economic Forum in 1987 and sought to broaden its vision to include providing a platform for resolving international conflicts. In the summer of 1971, Schwab invited 444 executives from Western European firms to the first European Management Symposium held in the Davos Congress Centre under the patronage of the European Commission and European industrial associations, where Schwab sought to introduce European firms to American management practices. He then founded the WEF as a nonprofit organization based in Geneva and drew European business leaders to Davos for the annual meetings each January. Schwab developed the \"\"stakeholder\"\""} +{"qid": "test741", "pid": "11680096", "query": "where are the giant redwoods located in california", "answer": "Humboldt County", "passage": "\"Avenue of the Giants Marathon\"\nAvenue of the Giants Marathon The Avenue of the Giants Marathon is held annually in May along the Avenue of the Giants in Humboldt Redwoods State Park in Humboldt County, California, United States. The course, consisting of two out-and-back legs, is almost entirely under the canopy of redwood trees. Half marathon and 10K races are run concurrently. The event, one of four larger annual races organized by the Six Rivers Running Club, was first run in 1972. In 2011, more than 2300 runners participated. A sister event, the Humboldt Redwoods Marathon, is run in October over the same course. The"} +{"qid": "test741", "pid": "11680097", "query": "where are the giant redwoods located in california", "answer": "Humboldt County", "passage": "\"Avenue of the Giants Marathon\"\nAvenue of the Giants Marathon is a qualifying event for the Boston Marathon. Avenue of the Giants Marathon The Avenue of the Giants Marathon is held annually in May along the Avenue of the Giants in Humboldt Redwoods State Park in Humboldt County, California, United States. The course, consisting of two out-and-back legs, is almost entirely under the canopy of redwood trees. Half marathon and 10K races are run concurrently. The event, one of four larger annual races organized by the Six Rivers Running Club, was first run in 1972. In 2011, more than 2300 runners participated. A sister event,"} +{"qid": "test741", "pid": "7684714", "query": "where are the giant redwoods located in california", "answer": "Humboldt County", "passage": "\"The Big Trees\"\nestablishing shots featuring Wayne Morris that were taken from the 1938 film \"\"Valley of the Giants\"\". The film was made with the cooperation of the Hammond and Carlotta Lumber companies, and was shot on locations in Humboldt County, California. \"\"The New York Times\"\" called it a \"\"stormy and sometimes silly saga\"\" based on a script \"\"not terribly far removed from the Warners \"\"Valley of the Giants\"\"\"\"; its \"\"plot and emoting seem to be as old as the giant redwoods with which they are concerned.\"\" The Big Trees The Big Trees is a 1952 Western film starring Kirk Douglas and directed"} +{"qid": "test741", "pid": "10856440", "query": "where are the giant redwoods located in california", "answer": "Humboldt County", "passage": "\"Phillipsville, California\"\nthe California State Legislature, Phillipsville is in , and . In the United States House of Representatives, Phillipsville is in . Phillipsville, California Phillipsville (formerly, Kettintelbe, Philippsville, and Phillips Flat) is a census-designated place in Humboldt County, California. It is located on the South Fork of the Eel River north of Garberville, at an elevation of 289 feet (88 m). It is the southernmost town on the Avenue of the Giants. Near the town is the Chimney Tree. This is a redwood tree that resembles a chimney. The ZIP Code is 95559. The community is inside area code 707. The"} +{"qid": "test742", "pid": "4322785", "query": "who has made the most premier league appearances", "answer": "Gareth Barry", "passage": "\"Gareth Barry\"\nGareth Barry Gareth Barry (born 23 February 1981) is an English professional footballer who plays as a midfielder for EFL Championship club West Bromwich Albion. A former England international, Barry has made 653 Premier League appearances for Aston Villa, Manchester City, Everton and West Bromwich Albion, the highest number of appearances in the Premier League. Barry moved to Aston Villa from Brighton & Hove Albion as a youngster, and spent 12 years at the club. He captained Aston Villa and is eighth in their all-time list of appearances, with 441 across all competitions, including 365 in the Premier League. He"} +{"qid": "test743", "pid": "7236987", "query": "who was the first chief minister of west bengal", "answer": "Prafulla Chandra Ghosh", "passage": "\"Prafulla Chandra Ghosh\"\nand along with other members of Anami Sangha joined freedom struggle movement led by Gandhi. His great-granddaughter is Priyanka Yoshikawa, who won the 2016 Miss World Japan contest. Prafulla Chandra Ghosh Prafulla Chandra Ghosh (\"\"প্রফুল্ল চন্দ্র ঘোষ\"\"; 1891–1983) was the first Chief Minister of West Bengal, India. He was the Chief Minister in two West Bengal governments, first in the Indian National Congress government from August 15, 1947 to August 14, 1948, then in the Progressive Democratic Alliance Front government from November 2, 1967 to February 20, 1968. Education: Presidency College, Calcutta.Chemistry, B.Sc (Gold Medalist). Occupation: First ASA master, British"} +{"qid": "test743", "pid": "7236983", "query": "who was the first chief minister of west bengal", "answer": "Prafulla Chandra Ghosh", "passage": "\"Prafulla Chandra Ghosh\"\nPrafulla Chandra Ghosh Prafulla Chandra Ghosh (\"\"প্রফুল্ল চন্দ্র ঘোষ\"\"; 1891–1983) was the first Chief Minister of West Bengal, India. He was the Chief Minister in two West Bengal governments, first in the Indian National Congress government from August 15, 1947 to August 14, 1948, then in the Progressive Democratic Alliance Front government from November 2, 1967 to February 20, 1968. Education: Presidency College, Calcutta.Chemistry, B.Sc (Gold Medalist). Occupation: First ASA master, British India, of Indian origin. He also exchanged scientific views with the likes of Madame Marie Curie and Albert Einstein. Prafulla Ghosh was born in a Yadav Family on"} +{"qid": "test744", "pid": "6057016", "query": "who sings got my mind set on you", "answer": "James Ray", "passage": "\"Got My Mind Set on You\"\nGot My Mind Set on You \"\"Got My Mind Set on You\"\" (also written as \"\"(Got My Mind) Set on You\"\") is a song written and composed by Rudy Clark and originally recorded by James Ray in 1962, under the title \"\"I've Got My Mind Set on You\"\". An edited version of the song was released later in the year as a single on the Dynamic Sound label. In 1987, George Harrison released a cover version of the song as a single, and released it on his album \"\"Cloud Nine,\"\" which he had recorded on his own Dark Horse Records"} +{"qid": "test744", "pid": "9371183", "query": "who sings got my mind set on you", "answer": "James Ray", "passage": "\"Rudy Clark\"\nRudy Clark Rudy Clark (born 1935) is an American songwriter. He was most active from the early 1960s through the early 1970s. He has more than 250 copyrights listed by BMI. Clark wrote songs for James Ray (and indeed may have discovered the singer), including Ray's moody 1962 R&B and regional pop hit \"\"If You Gotta Make a Fool of Somebody\"\", later a hit for Freddie and the Dreamers, as well as \"\"Got My Mind Set on You\"\", which became a No. 1 US and No. 2 UK hit for George Harrison in 1987. \"\"Got My Mind Set On You\"\""} +{"qid": "test744", "pid": "6057019", "query": "who sings got my mind set on you", "answer": "George Harrison", "passage": "\"Got My Mind Set on You\"\nat number two. It was kept off the number 1 spot by T'Pau's \"\"China in Your Hand\"\". The song was included in the Harrison compilation albums \"\"Best of Dark Horse 1976–1989\"\" (1989) and \"\"\"\" (2009). A live version was recorded for his \"\"Live in Japan\"\" (1992) album. In 2010, AOL radio listeners chose \"\"Got My Mind Set on You\"\" as one of the \"\"10 Best George Harrison Songs\"\", appearing at number 4 on the list. Two music videos were released for the single, both directed by Gary Weis. The first stars Alexis Denisof trying for the heart of a girl"} +{"qid": "test744", "pid": "18475504", "query": "who sings got my mind set on you", "answer": "George Harrison", "passage": "\"Songs by George Harrison\"\nmarred by the effects of laryngitis; it remains the only vocal performance from that tour to have been made available outside of concert bootlegs. While \"\"Lay His Head\"\" was issued as the B-side to his 1987 single \"\"Got My Mind Set on You\"\", the \"\"Songs by George Harrison\"\" EP remains the sole official release for this live version of \"\"For You Blue\"\" and for the studio tracks \"\"Sat Singing\"\" and \"\"Flying Hour\"\". Genesis undertook a single print run for the book, after which \"\"Songs by George Harrison\"\" became a highly priced collector's item. It was followed by a second volume,"} +{"qid": "test744", "pid": "9371187", "query": "who sings got my mind set on you", "answer": "James Ray", "passage": "\"Rudy Clark\"\n(1997). Rudy Clark Rudy Clark (born 1935) is an American songwriter. He was most active from the early 1960s through the early 1970s. He has more than 250 copyrights listed by BMI. Clark wrote songs for James Ray (and indeed may have discovered the singer), including Ray's moody 1962 R&B and regional pop hit \"\"If You Gotta Make a Fool of Somebody\"\", later a hit for Freddie and the Dreamers, as well as \"\"Got My Mind Set on You\"\", which became a No. 1 US and No. 2 UK hit for George Harrison in 1987. \"\"Got My Mind Set On"} +{"qid": "test745", "pid": "2171688", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Qualitative psychological research\"\nin phenomenology, ethnomethodology, and naturalistic behaviourism. Its research methods are derived from ethnography and anthropology. In psychology, the research methods commonly classified as qualitative include: The data collected by researchers using these techniques consist of: After collecting data, qualitative psychological researchers' goal is to examine their data in depth and in detail. Most psychological researchers probably use both types of method. In particular, qualitative methods are widely used as exploratory methods; the results of qualitative analysis are used to design quantitative research which tests null hypotheses derived from the qualitative observations. Those psychological researchers who prefer qualitative research argue that"} +{"qid": "test745", "pid": "13168852", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Psychological research\"\nConsequently, however, these methods reduce the researcher's control over the type of data collected. Web and others regard these methods as an additional tools to use with the more common \"\"reactive\"\" and \"\"intrusive methods\"\". Psychological research Psychological research refers to research that psychologists conduct for systematic study and for analysis of the experiences and behaviours of individuals or groups. Their research can have educational, occupational and clinical applications. Psychologists use many research methods, and categorical distinctions of these methods have emerged. Methods can be categorized by the kind of data they produce: qualitative or quantitative—and both these are used for"} +{"qid": "test745", "pid": "15872229", "query": "two main types of research methods used in psychology", "answer": "qualitative", "passage": "\"Center for Qualitative Psychology\"\nCenter for Qualitative Psychology The Center for Qualitative Psychology was founded in October 1999 in the department of educational psychology at the University of Tübingen to promote qualitative research methods in psychology. The centre is also committed to supporting qualitative methods for social research in education, sociology, philosophy, medicine, ethnography, politics, etc. Qualitative psychological research has developed a long experience from 1950 using open strategies as observation, introspection, narratives, discussion groups, interviews, etc. This kind of instruments allow to collect non structured data that need specific types of analysis as content analysis that is also supported on new computer means"} +{"qid": "test745", "pid": "3150066", "query": "two main types of research methods used in psychology", "answer": "qualitative", "passage": "\"Community psychology\"\nempirical grounding is what separates community psychology from a social movement or grassroots organization. Methods from psychology have been adapted for use in the field that acknowledge value-driven, subjective research involving community members. The methods used in community psychology are therefore tailored to each individual research question. Quantitative as well as qualitative methods and other innovative methods are embraced. The American psychological Association has sponsored two major conferences on community research methods and has recently published an edited book on this topic. Community psychology has been differentiated from traditional clinical psychology as practiced in the UK in the following ways:"} +{"qid": "test745", "pid": "6378220", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Quantitative psychology\"\nobject-oriented programming language or learning to write code in SPSS or R is useful for the type of data analysis performed in graduate school. Quantitative psychologists may possess a doctoral degree or a master's degree. Due to its interdisciplinary nature and depending on the research focus of the university, these programs may be housed in a school's college of education or in their psychology department. Programs that focus especially in educational research and psychometrics are often part of education or educational psychology departments. These programs may therefore have different names mentioning \"\"research methods\"\" or \"\"quantitative methods\"\", such as the \"\"Research"} +{"qid": "test745", "pid": "15872231", "query": "two main types of research methods used in psychology", "answer": "qualitative", "passage": "\"Center for Qualitative Psychology\"\npublishes proceedings with the main contributions presented at the annual meeting. All published workshop are available at the PsyDok (Volltextserver der Virtuellen Fachbibliothek Psychologie). Center for Qualitative Psychology The Center for Qualitative Psychology was founded in October 1999 in the department of educational psychology at the University of Tübingen to promote qualitative research methods in psychology. The centre is also committed to supporting qualitative methods for social research in education, sociology, philosophy, medicine, ethnography, politics, etc. Qualitative psychological research has developed a long experience from 1950 using open strategies as observation, introspection, narratives, discussion groups, interviews, etc. This kind of"} +{"qid": "test745", "pid": "2373256", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Quantitative research\"\nvariable. In most physical and biological sciences, the use of either quantitative or qualitative methods is uncontroversial, and each is used when appropriate. In the social sciences, particularly in sociology, social anthropology and psychology, the use of one or other type of method can be a matter of controversy and even ideology, with particular schools of thought within each discipline favouring one type of method and pouring scorn on to the other. The majority tendency throughout the history of social science, however, is to use eclectic approaches-by combining both methods. Qualitative methods might be used to understand the meaning of"} +{"qid": "test745", "pid": "14287307", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Society of Multivariate Experimental Psychology\"\ngroups in quantitative psychology. Society of Multivariate Experimental Psychology The Society of Multivariate Experimental Psychology (SMEP) is a small academic organization of research psychologists who have interests in multivariate statistical models for advancing psychological knowledge. It publishes a journal, \"\"Multivariate Behavioral Research\"\". SMEP was founded in 1960 by Raymond Cattell and others as an organization of scientific researchers interested in applying complex multivariate quantitative methods to substantive problems in psychology. The two main functions of the society are to hold an annual meeting of scientific or quantitative psychology specialists and to publish a journal, \"\"Multivariate Behavioral Research\"\". The first meeting"} +{"qid": "test745", "pid": "14287303", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Society of Multivariate Experimental Psychology\"\nSociety of Multivariate Experimental Psychology The Society of Multivariate Experimental Psychology (SMEP) is a small academic organization of research psychologists who have interests in multivariate statistical models for advancing psychological knowledge. It publishes a journal, \"\"Multivariate Behavioral Research\"\". SMEP was founded in 1960 by Raymond Cattell and others as an organization of scientific researchers interested in applying complex multivariate quantitative methods to substantive problems in psychology. The two main functions of the society are to hold an annual meeting of scientific or quantitative psychology specialists and to publish a journal, \"\"Multivariate Behavioral Research\"\". The first meeting of the Society was"} +{"qid": "test745", "pid": "13168837", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Psychological research\"\nPsychological research Psychological research refers to research that psychologists conduct for systematic study and for analysis of the experiences and behaviours of individuals or groups. Their research can have educational, occupational and clinical applications. Psychologists use many research methods, and categorical distinctions of these methods have emerged. Methods can be categorized by the kind of data they produce: qualitative or quantitative—and both these are used for pure or applied research. Psychology tends to be eclectic, applying knowledge from other fields. Some of its methods are used within other areas of research, especially in the social and behavioural sciences. The field"} +{"qid": "test745", "pid": "4539034", "query": "two main types of research methods used in psychology", "answer": "qualitative", "passage": "\"Health psychology\"\nbetween regions and nations. The individualism of mainstream health psychology has been critiqued and deconstructed by critical health psychologists using qualitative methods that zero in on the health experience. Like psychologists in the other main psychology disciplines, health psychologists have advanced knowledge of research methods. Health psychologists apply this knowledge to conduct research on a variety of questions. For example, health psychologists carry out research to answer questions such as: Health psychologists can also be responsible for training other health professionals on how to deliver interventions to help promote healthy eating, stopping smoking, weight loss, etc. Health psychologists also train"} +{"qid": "test745", "pid": "2171683", "query": "two main types of research methods used in psychology", "answer": "quantitative", "passage": "\"Qualitative psychological research\"\nQualitative psychological research In psychology, qualitative research has come to be defined as research whose findings are not arrived at by statistical or other quantitative procedures. Qualitative research is often said to be \"\"naturalistic\"\". That is, its goal is to understand behaviour in a natural setting. Two other goals attributed to qualitative research are understanding a phenomenon from the perspective of the research participant and understanding the meanings people give to their experience. It attempts to do this by using so-called naturalistic methods—interviewing, observation, ethnography, participant observation and focus groups. Each of these methods seeks to understand the perspective of"} +{"qid": "test746", "pid": "18319944", "query": "who plays peter in what we do in the shadows", "answer": "Ben Fransham", "passage": "\"Ben Fransham\"\n\"\"What We Do in the Shadows\"\", and also appeared in three episodes of \"\"Ash vs Evil Dead\"\". Films include: Television shows: Ben Fransham Ben Fransham is a New Zealand film, television and theatre actor, known for his role in the film \"\"What We Do in the Shadows\"\". Fransham graduated from the New Zealand School of Dance with a third year scholarship diploma in 1991, and then won entry to The London Contemporary Dance School, but did not attend. In 1992 Fransham began freelance work, performing in Paul Jenden's South Island tour of Dance South and in '93, and toured New"} +{"qid": "test746", "pid": "7717534", "query": "who plays peter in what we do in the shadows", "answer": "Ben Fransham", "passage": "\"Armageddon (convention)\"\nSalyers (Regular Show), Charles Martinet (Mario Games), Jessica DiCicco (Adventure Time). TV/Movie guests: Michael Rowe, David Ramsey, Manu Bennett (Arrow), Christopher Judge (Stargate SG1), DJ Qualls, James Patrick Stuart, Jake Abel, Samantha Ferris, Steven Williams (Supernatural), John Callen, Mark Hadlow, Peter Hambleton (The Hobbit), Taika Waititi, Jemaine Clement, Jonny Brugh, Ben Fransham (What We Do In The Shadows), Frazer Hines (Doctor Who). J-Pop performer: Chii Sakurabi. 18–19 October - Melbourne, Melbourne Showgrounds Guests included, Comic Guests: Kevin Eastman, Alan Robinson, Darick Robertson, James Tynion IV, John Layman, Kyle Higgins, Dean Rankine, Wayne Nichols, Adam Nichols. Animation Guests: Greg Cipes (Teen"} +{"qid": "test747", "pid": "20161240", "query": "when does the 14th season of grey's anatomy come out", "answer": "September 28, 2017", "passage": "\"Grey's Anatomy (season 14)\"\na 14th season on February 10, 2017. It premiered on September 28, 2017, with a two-hour premiere. Ellen Pompeo announced that she would be directing several episodes in the 14th season. On April 28, 2017, veteran writer Krista Vernoff announced that she would return to the show as a writer after leaving the show after the seventh season. On January 11, 2018, ABC released a six-episode web series following the new surgical interns at Grey Sloan Memorial Hospital. The web series was written by Barbara Kaye Friend and directed by series regular Sarah Drew. The number in the \"\"No. overall\"\""} +{"qid": "test748", "pid": "12661195", "query": "when was the first hunger games book published", "answer": "September 14, 2008", "passage": "\"The Hunger Games (novel)\"\nreviewers and authors. It was praised for its plot and character development. In writing \"\"The Hunger Games\"\", Collins drew upon Greek mythology, Roman gladiatorial games, and contemporary reality television for thematic content. The novel won many awards, including the California Young Reader Medal, and was named one of \"\"Publishers Weekly\"\"s \"\"Best Books of the Year\"\" in 2008. \"\"The Hunger Games\"\" was first published in hardcover on September 14, 2008, by Scholastic, featuring a cover designed by Tim O'Brien. It has since been released in paperback and also as an audiobook and ebook. After an initial print of 200,000, the book"} +{"qid": "test748", "pid": "12661220", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"The Hunger Games (novel)\"\nher website, saying, \"\"I was so obsessed with this book ... \"\"The Hunger Games\"\" is amazing.\"\" \"\"The Hunger Games\"\" received many awards and honors. It was named one of \"\"Publishers Weekly\"\" \"\"Best Books of the Year\"\" in 2008 and a \"\"The New York Times\"\" \"\"Notable Children's Book of 2008\"\". It was the 2009 winner of the Golden Duck Award in the Young Adult Fiction Category. \"\"The Hunger Games\"\" was also a \"\"2008 Cybil Winner\"\" for fantasy and science-fiction books along with \"\"The Graveyard Book\"\", one of \"\"School Library Journal\"\"s \"\"Best Books 2008\"\", and a \"\"Booklist Editors' Choice\"\" in 2008. In"} +{"qid": "test748", "pid": "13152233", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"Catching Fire\"\nCatching Fire Catching Fire is a 2009 science fiction young adult novel by the American novelist Suzanne Collins, the second book in \"\"The Hunger Games trilogy\"\". As the sequel to the 2008 bestseller \"\"The Hunger Games\"\", it continues the story of Katniss Everdeen and the post-apocalyptic nation of Panem. Following the events of the previous novel, a rebellion against the oppressive Capitol has begun, and Katniss and fellow tribute Peeta Mellark are forced to return to the arena in a special edition of the Hunger Games. The book was first published on September 1, 2009, by Scholastic, in hardcover, and"} +{"qid": "test748", "pid": "14290645", "query": "when was the first hunger games book published", "answer": "2008", "passage": "Mockingjay\nMockingjay Mockingjay is a 2010 science fiction novel by American author Suzanne Collins. It is the last installment of \"\"The Hunger Games\"\", following 2008's \"\"The Hunger Games\"\" and 2009's \"\"Catching Fire\"\". The book continues the story of Katniss Everdeen, who agrees to unify the districts of Panem in a rebellion against the tyrannical Capitol. The hardcover and audiobook editions of \"\"Mockingjay\"\" were published by Scholastic on August 24, 2010, six days after the ebook edition went on sale. The book sold 450,000 copies in the first week of release, exceeding the publisher's expectations. It received a generally positive reaction from"} +{"qid": "test748", "pid": "12661212", "query": "when was the first hunger games book published", "answer": "September 14, 2008", "passage": "\"The Hunger Games (novel)\"\nPeeta Mellark is stabbed after warning Katniss to flee for her life, and is then buried in the ground and placed in a cave for three days before emerging with a new lease on life. Further, she finds that the Christian image of the Bread of Life is used throughout \"\"The Hunger Games\"\"; in the story, Peeta gives Katniss a loaf of bread, saving the girl and her family from starvation. After writing the novel, Collins signed a six-figure deal for three books with Scholastic. First published as a hardcover in the United States on September 14, 2008, \"\"The Hunger"} +{"qid": "test748", "pid": "7233097", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"Suzanne Collins\"\na rhyming picture book, \"\"When Charlie McButton Lost Power\"\" (2005), illustrated by Mike Lester. In September 2008, Scholastic Press released \"\"The Hunger Games\"\", the first book of a trilogy by Collins. \"\"The Hunger Games\"\" was partly inspired by the Greek myth of Theseus and the Minotaur. Another inspiration was her father's career in the Air Force, which gave her insight to poverty, starvation, and the effects of war. The trilogy's second book, \"\"Catching Fire\"\", was released in September 2009, and its third book, \"\"Mockingjay\"\", was released on August 24, 2010. Within 14 months, 1.5 million copies of the first two"} +{"qid": "test748", "pid": "14290669", "query": "when was the first hunger games book published", "answer": "2008", "passage": "Mockingjay\nto direct the two final films in the series. Julianne Moore played President Coin. Mockingjay Mockingjay is a 2010 science fiction novel by American author Suzanne Collins. It is the last installment of \"\"The Hunger Games\"\", following 2008's \"\"The Hunger Games\"\" and 2009's \"\"Catching Fire\"\". The book continues the story of Katniss Everdeen, who agrees to unify the districts of Panem in a rebellion against the tyrannical Capitol. The hardcover and audiobook editions of \"\"Mockingjay\"\" were published by Scholastic on August 24, 2010, six days after the ebook edition went on sale. The book sold 450,000 copies in the first"} +{"qid": "test748", "pid": "11973210", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"Tim O'Brien (illustrator)\"\ncover of \"\"Time\"\", for the cover story \"\"The Price Of Greed\"\" following the onset of a severe global financial recession in the September 29, 2008 issue of the magazine. Between 2008 and 2010, O'Brien was commissioned by Scholastic Publishing to illustrate each cover of \"\"The Hunger Games\"\" trilogy, by Suzanne Collins, including \"\"The Hunger Games\"\" \"\"mockingjay\"\" logo. The images were then used again for promotional posters when the film distributor Lionsgate turned the best selling books into a film franchise. At the end of the films official theatrical trailer, the ring and bird by the artist are seen ablaze. O'Brien"} +{"qid": "test748", "pid": "7731363", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"The Hunger of Sejanoz\"\nPlain. \"\"The Hunger of Sejanoz\"\" was the last of Dever's Lone Wolf books to be published before a hiatus of over ten years. The book is rare and sells for hundreds of dollars where copies exist. Also, the omission of 50 extra sections is controversial, as most Lone Wolf books have 350 sections and this one only 300. It is rumored that the publishers, knowing that no more books would be released, excised those last pages connecting the book to the next part of the story. At a press conference during the 2008 Lucca Comics & Games convention, Dever confirmed"} +{"qid": "test748", "pid": "12661213", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"The Hunger Games (novel)\"\nGames\"\" had a first printing of 50,000 copies, which was bumped up twice to 200,000 copies. By February 2010, the book had sold 800,000 copies, and rights to the novel had been sold in 38 territories worldwide. A few months later, in July, the book was released in paperback. \"\"The Hunger Games\"\" entered the \"\"New York Times\"\" Best Seller list in November 2008, where it would feature for over 100 consecutive weeks. By the time the film adaptation of \"\"The Hunger Games\"\" was released in March 2012, the book had been on \"\"USA Today\"\"s best-sellers list for 135 consecutive weeks"} +{"qid": "test748", "pid": "15443377", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"The Hunger Games\"\nThe Hunger Games The Hunger Games is a trilogy of young adult dystopian novels written by American novelist Suzanne Collins. The series is set in \"\"The Hunger Games\"\" universe, and follows young characters Katniss Everdeen and Peeta Mellark. The novels in the trilogy are titled \"\"The Hunger Games\"\" (2008), \"\"Catching Fire\"\" (2009), and \"\"Mockingjay\"\" (2010). The novels have all been developed into films starring Jennifer Lawrence, with the film adaptation of \"\"Mockingjay\"\" split into two parts. The first two books in the series were both \"\"New York Times\"\" best sellers, and \"\"Mockingjay\"\" topped all US bestseller lists upon its release."} +{"qid": "test748", "pid": "15443327", "query": "when was the first hunger games book published", "answer": "2008", "passage": "\"The Hunger Games (film)\"\nbased on the last book \"\"Mockingjay\"\". \"\"\"\" was released November 21, 2014, and \"\"\"\" was released November 20, 2015. Lawrence, Hutcherson, Hemsworth, and Harrelson were all signed on to the whole franchise. The Hunger Games (film) The Hunger Games is a 2012 American science fiction-adventure film directed by Gary Ross and based on Suzanne Collins’ 2008 novel of the same name. It is the first installment in \"\"The Hunger Games\"\" film series and was produced by Nina Jacobson and Jon Kilik, with a screenplay by Ross, Collins, and Billy Ray. The film stars Jennifer Lawrence, Josh Hutcherson, Liam Hemsworth, Woody"} +{"qid": "test75", "pid": "12589459", "query": "who led the soldiers in ending the raid on the harper's ferry arsenal", "answer": "Colonel Robert E. Lee", "passage": "\"John Brown's raid on Harpers Ferry\"\nJohn Brown's raid on Harpers Ferry John Brown's raid on Harpers Ferry (also known as John Brown's raid or The raid on Harpers Ferry) was an effort by abolitionist John Brown to initiate an armed slave revolt in 1859 by taking over a United States arsenal at Harpers Ferry, Virginia. Brown's party of 22 was defeated by a company of U.S. Marines, led by First Lieutenant Israel Greene. Colonel Robert E. Lee was in overall command of the operation to retake the arsenal. John Brown had originally asked Harriet Tubman and Frederick Douglass, both of whom he had met in"} +{"qid": "test75", "pid": "12589488", "query": "who led the soldiers in ending the raid on the harper's ferry arsenal", "answer": "Colonel Robert E. Lee", "passage": "\"John Brown's raid on Harpers Ferry\"\nof the events are particularly clear with regard to the Heyward Shepherd monument. John Brown's raid on Harpers Ferry John Brown's raid on Harpers Ferry (also known as John Brown's raid or The raid on Harpers Ferry) was an effort by abolitionist John Brown to initiate an armed slave revolt in 1859 by taking over a United States arsenal at Harpers Ferry, Virginia. Brown's party of 22 was defeated by a company of U.S. Marines, led by First Lieutenant Israel Greene. Colonel Robert E. Lee was in overall command of the operation to retake the arsenal. John Brown had originally"} +{"qid": "test752", "pid": "2495144", "query": "a good that can be used in place of another good", "answer": "A substitute good", "passage": "\"Substitute good\"\nitems. For example, consider a certain consumer that only wants a means of transportation, which may be either a car or a bicycle. His utility from a car is 100 and from a bicycle is 50. If he has both a car and a bicycle, then he uses only the car so his utility is 100. \"\"Unit-demand goods are always substitutes\"\", since if the price of one good increases, the consumer will tend to want the other good (Laizer 2016). Substitute good A substitute good is a good that can be used in place of another. In consumer theory, substitute"} +{"qid": "test752", "pid": "2495131", "query": "a good that can be used in place of another good", "answer": "A substitute good", "passage": "\"Substitute good\"\nSubstitute good A substitute good is a good that can be used in place of another. In consumer theory, substitute goods or substitutes are products that a consumer perceives as similar or comparable, so that having more of one product makes them desire less of the other product. Formally, \"\"X\"\" and \"\"Y\"\" are substitutes if, when the price of \"\"X\"\" rises, the demand for \"\"Y\"\" rises. Potatoes from different farms are an example: if the price of one farm's potatoes goes up, then it can be presumed that fewer people will buy potatoes from that farm and source them from"} +{"qid": "test752", "pid": "2495135", "query": "a good that can be used in place of another good", "answer": "substitute good", "passage": "\"Substitute good\"\nas compared to the demand for cereal generally. The fact that one good is substitutable for another has immediate economic consequences: insofar as one good can be substituted for another, the demands for the two kinds of good will be interrelated by the fact that customers can trade off one good for the other if it becomes advantageous to do so. An \"\"increase\"\" in price (ceteris paribus) will result in an \"\"increase\"\" in demand for its substitute goods. If two goods have a high substitutability, the change in demand will be much greater. Thus, economists can predict that a spike"} +{"qid": "test754", "pid": "504540", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "\"1896 United States presidential election\"\nDemocrats won Kansas and Wyoming until 1912, and the last in which the Democrats won Nebraska until 1908. It was also the last time that South Dakota and Washington voted against the Republicans until they voted for the Progressive Party in 1912. This also constitutes the only election since their statehoods when a Republican won the presidency without winning Kansas, South Dakota, Utah, or Wyoming. Today these are solidly Republican states and have not backed a Democratic nominee since Lyndon Johnson's 1964 landslide over Barry Goldwater. In the South, there were numerous Republican counties, notably in Texas, Tennessee, North Carolina,"} +{"qid": "test754", "pid": "6905492", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "\"Nebraska's 2nd congressional district\"\nstatewide popular vote, as well as the district-wide popular vote for the other two Nebraska congressional districts, thus receiving four electoral votes from Nebraska. Obama's victory in the 2nd district meant that Nebraska's electoral delegation was split for the first time ever. It also marked the first Nebraskan electoral vote for a Democrat since 1964. By contrast, in 2012 and 2016, both Gov. Mitt Romney and Donald Trump won the 2nd district, as well as the overall statewide vote and the electoral votes of the first and third districts. This district is known as a swing district; it was one"} +{"qid": "test754", "pid": "566381", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "\"Omaha, Nebraska\"\nthe state in fall 2008. Mike Fahey, the former Democratic mayor of Omaha, said he would do whatever it took to deliver the district's electoral vote to Obama; and the Obama campaign considered the district \"\"in play\"\". Former Nebraska U.S. Senator Bob Kerrey and former Senator Ben Nelson campaigned in the city for Obama, and in November 2008 Obama won the district's electoral vote. This was an exceptional win, because with Nebraska's split electoral vote system Obama became the first Democratic presidential candidate to win an electoral vote in Nebraska since 1964. In 2011, Nebraska lawmakers moved Offutt Air Force"} +{"qid": "test754", "pid": "293408", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "Nebraska\nsince 1940: the 1964 landslide election of Lyndon B. Johnson. In the 2004 presidential election, George W. Bush won the state's five electoral votes by a margin of 33 percentage points (making Nebraska's the fourth-strongest Republican vote among states) with 65.9% of the overall vote; only Thurston County, which is majority-Native American, voted for his Democratic challenger John Kerry. In 2008, the state split its electoral votes for the first time: Republican John McCain won the popular vote in Nebraska as a whole and two of its three congressional districts; the second district, which includes the city of Omaha, went"} +{"qid": "test754", "pid": "17853559", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "\"1964 United States presidential election in New Hampshire\"\nthe first time Sullivan County had voted for a Democratic presidential candidate since Franklin D. Roosevelt in 1944, the first time Belknap, Grafton, Merrimack and Rockingham Counties had voted Democratic since Woodrow Wilson in 1912 when the GOP was mortally divided, and the first time Cheshire County had voted Democratic since voting for New Hampshire native Franklin Pierce in 1852. Johnson’s strongest victory was in rural, French-Canadian Coös County in the far north of the state, which Johnson won with 71.1 percent of the vote. This would prove the last occasion until 2008 when the Democratic Party won Belknap County"} +{"qid": "test754", "pid": "18126154", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "\"1964 United States presidential election in Virginia\"\nHowever, the state would not vote for another Democratic candidate until 2008. , this remains the last occasion when Amherst County, Bland County, Clarke County, Culpeper County, Fauquier County, Frederick County, Rockingham County, Washington County and York County have voted for a Democratic presidential candidate. It is also the only time Waynesboro City has voted for a Democrat for president, whilst Prince William County and Winchester City would never vote Democratic again until 2008. Fairfax County, Virginia's most populous county, would not vote Democratic again until 2004, having last voted Democratic in 1940 before this election. The independent city of"} +{"qid": "test754", "pid": "502816", "query": "when was the last time nebraska voted democrat", "answer": "1964", "passage": "\"1876 United States presidential election\"\nRepublican again until the election of 1928 (Texas, Florida, North Carolina, and Virginia). This proved the last election in which the Republicans won Louisiana until 1956 and the last in which the Republicans won South Carolina until 1964. The next time those two states voted against the Democrats was when they supported the Dixiecrats in 1948; Louisiana also voted against the Democrats in 1968 by voting for Wallace. Although 1876 marked the last competitive two party election in the South before Democratic dominance of the South through 1948 and of the border states through 1896, it was also the last"} +{"qid": "test756", "pid": "12437570", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"Gossip Girl\"\ncameo as herself (but is not revealed as Gossip Girl). Several former \"\"Gossip Girl\"\" cast members appear in the finale, including Jessica Szohr, who played Vanessa Abrams, and Katie Cassidy, who played Juliet Sharp. Former series regulars Connor Paolo (Eric van der Woodsen) and Taylor Momsen (Jenny Humphrey), each appear also with one line a piece. Season 6 begins with Chuck and Blair who part ways after making a pact that they will unite once they both achieve their individual goals. Chuck goes on his way to try to regain Bass Industries from his father who stole it from him"} +{"qid": "test756", "pid": "12437572", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"Gossip Girl\"\nlater where Chuck and Blair are revealed to have had a child and Nate Archibald appears successful and is rumored to be running for Mayor of New York. The show ends with the wedding of Serena van der Woodsen and Dan Humphrey. It's a small ceremony, in what looks like Blair and Chuck's home together, where Lily is with Serena and Eric's father, William, and Rufus seems to be happy with another woman (musician Lisa Loeb, who guest-starred in the first season) along with Dorota, Nate, Jack Bass and Georgina (who are now together), Jenny and Eric. A brief shot"} +{"qid": "test756", "pid": "14570704", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"The Debarted (Gossip Girl)\"\nand Maureen makes him leave with her. Serena survives the crash, and Nate sleeps in her hospital room all night. Back in New York, Eric (Connor Paolo) continues to sabotage Jenny's reign as queen. He teams up with Kira (Sarah Steele) to turn Jenny's minions against her. In the end, Jenny outwits him, and he tells Kira that they will try again soon. When Jenny and Eric see each other at the hospital after Serena's accident, they apologize and call a truce. Meanwhile, Dan and Vanessa attempt to navigate their newly complicated friendship. Dan seeks a new potential relationship with"} +{"qid": "test756", "pid": "10902337", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"Pilot (Gossip Girl)\"\na text message from Blair's party asking for help. Dan and Serena turn heads as they burst in on the party and search frantically for Jenny. They find her on the roof, where an egotistical sex-addicted Chuck Bass (Ed Westwick) is attempting to rape her. Dan punches Chuck and he and Serena leave in disgust, hand-in-hand with Jenny tagging along. The apparent reason for Serena's abrupt return is revealed to be her younger brother Eric (Connor Paolo), who unsuccessfully tried to commit suicide but is now living in a psychiatric institution. Not even \"\"Gossip Girl\"\" is aware of this. In"} +{"qid": "test756", "pid": "11424721", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"The Thin Line Between Chuck and Nate\"\nThe Thin Line Between Chuck and Nate \"\"The Thin Line Between Chuck and Nate\"\" is the 13th episode of the CW television series, \"\"Gossip Girl\"\". The episode was written by Felicia D. Henderson and directed by Norman Buckley. It originally aired on Wednesday, January 9, 2008 on the CW. After Gossip Girl posts a picture of Serena looking at pregnancy tests, everyone thinks that she must be pregnant. Jenny, Dan, and Rufus see the news online, and Dan worries about what's the right thing to say. After hearing about the Gossip Girl blast while with Eric, Serena runs into a"} +{"qid": "test756", "pid": "11844027", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"Eric van der Woodsen\"\ninvolved. Asher denies this, but Blair sends a Gossip Girl blast with Eric and Asher's emails. He and Lilly later reconcile. During summer 2008, Eric is staying with his sister and grandmother in The Hamptons. He receives a call from Jenny who tells him, she needs help to get in the Vitamin White Party. She apologizes to him about the incident with Asher and they become friends again. Eric introduces Tinsley Mortimer to Jenny to extend her contacts in the fashion industry. After the school year starts, although Serena complains about Lily's new marriage and their new house rules, Eric"} +{"qid": "test756", "pid": "12437562", "query": "who does eric end up with in gossip girl", "answer": "Jenny", "passage": "\"Gossip Girl\"\nThe season focused hugely on Jenny Humphrey's development and downward spiral. She spends a good part of the season alienating herself from Eric, her former best friend, and chasing after Nate, who has his heart set on Serena. At the end of the season, due to her one night stand with Chuck Bass, and new drug dealing habit, Jenny's father and Lily send her to Hudson, New York, to live with her mother. Other story lines include: Blair and Chuck's attempt and ultimate failure at having a successful relationship; Dan and Vanessa moving from friends to something more; and Serena's"} +{"qid": "test759", "pid": "368407", "query": "who is recognized as the founder of islam", "answer": "Muhammad", "passage": "\"Religious pluralism\"\nwill not be separated again. Ahmadis recognize many founders of world religions to be from God, who all brought teaching and guidance from God to all peoples. According to the Ahmadiyya understanding of the Quran, every nation in the history of mankind has been sent a prophet, as the Quran states: \"\"And there is a guide for every people\"\". Though the Quran mentions only 24 prophets, the founder of Islam, Muhammad states that the world has seen 124,000 prophets. Thus other than the prophets mentioned in the Quran, Ahmadis, with support from theological study also recognize Buddha, Krishna, founders of"} +{"qid": "test759", "pid": "8323098", "query": "who is recognized as the founder of islam", "answer": "Muhammad", "passage": "\"Islam and Sikhism\"\nMian Mir, visited Guru Arjan Dev at the initiation ceremony before the construction of the Harmandir Sahib (Golden Temple). Ahmadiyya, a minority reform sect that arose within Islam, believe that a certain form of prophethood within Islam continues after Muhammad and consider themselves to be Muslims. They are, however, not recognized as Muslims by mainstream Sunni and Shia Islam, and are treated as blasphemous and persecuted. Since the 18th century, Sufis and ancestors of Mirza Ghulam Ahmad – the founder of the Ahmadiyya Movement – had cordial relations with Sikhs, and they fought with Sikhs to resist the persecution by"} +{"qid": "test759", "pid": "19024629", "query": "who is recognized as the founder of islam", "answer": "Muhammad", "passage": "\"The Muslim Sunrise\"\nfrom the Quran, followed by sayings of Muhammad and excerpts from the writings of Mirza Ghulam Ahmad the founder of the Ahmadiyya movement, believed by its followers to be the expected Mahdi and Messiah; an address by an Ahmadi Imam and a series of scholarly articles typically dealing with theological issues and Islamic practices and morals. It also frequently discusses contemporary issues and events in the Muslim world or within local American Muslim communities. Sadiq, and the American Ahmadiyya Muslim Community utilized \"\"The Muslim Sunrise\"\" as a tool to defend Islam and the Quran particularly against Christian polemics. Recognizing racial"} +{"qid": "test759", "pid": "15359656", "query": "who is recognized as the founder of islam", "answer": "Muhammad", "passage": "\"Black nationalism\"\nPoverty Law Center classifies the Nation of Islam as a hate group, stating: \"\"Its theology of innate black superiority over whites and the deeply racist, antisemitic and anti-LGBT rhetoric of its leaders have earned the NOI a prominent position in the ranks of organized hate.\"\" Louis Farrakhan currently leads the group. Elijah Muhammad was famously known as the successor of Wallace Fard, the founder of the Nation of Islam. He was born in Georgia on October 7, 1897. He led the group from 1934-1975, being very well recognized as one of the mentors to other famous leaders such as Malcolm"} +{"qid": "test759", "pid": "12181969", "query": "who is recognized as the founder of islam", "answer": "Muhammad", "passage": "Twelver\nAkhbari (traditionalist) trend which Mulla Muhammad Amin al-Astarabadi was its founder. Astarabadi attacked the idea of Ijtihad and called the Usulies as the enemies of religion. He recognized the hadith as the only source for the Islamic law and the understanding of the Quran. Bihbahani as the founder of a new stage in Shia Jurisprudence, took a new practical method. He attacked the Ikhbaries and their method was abandoned by Shia. The dominance of the Usuli over the Akhbari came in last half of the 18th century when Muhammad Baqir Behbahani led Usulis to dominance and \"\"completely routed the Akhbaris"} +{"qid": "test759", "pid": "12686648", "query": "who is recognized as the founder of islam", "answer": "Muhammad", "passage": "\"Jamia Khair-ul-Madaris\"\nJamia Khair-ul-Madaris Jamia Khair-ul-Madaris is located in Multan, Punjab, Pakistan. It is one of the Islamic seminaries in the South Asia. It was founded by an Islamic scholar, a saint and a teacher of Islamic learning Hazrat Maulana Khair Muhammad Jalandhari on 19th of Shawal, 1349 AH (9 March 1931, AD) at Jalandhar (now in Indian Punjab), under the patronage of Hazrat Maulana Ashraf Ali Thanvi who was an Islamic revivalist, a sage of his time and the spiritual preceptor of the founder of the Jamia. The Jamia, with the blessings and suggestion of the spiritual preceptor of the founder,"} +{"qid": "test76", "pid": "14557351", "query": "when did disney art of animation resort open", "answer": "May 31, 2012", "passage": "\"Disney's Art of Animation Resort\"\nDisney's Art of Animation Resort Disney's Art of Animation Resort is a resort within Walt Disney World Resort in Lake Buena Vista, Florida. It is located where construction on the unfinished half of Disney's Pop Century Resort was started but later abandoned after the September 11 attacks. The resort is the first to be built in the complex in over seven years and the fifth to be placed in the value-priced category, along with Disney's All-Star Sports Resort, the All-Star Music Resort, the All-Star Movies Resort, and Disney's Pop Century Resort. Family suites opened on May 31, 2012, and standard"} +{"qid": "test761", "pid": "3302213", "query": "how old was sasuke when his clan died", "answer": "seven", "passage": "\"Sasuke Uchiha\"\nantisocial, he starts caring about Naruto and Sakura. During a mission, Sasuke awakens his Sharingan — his clan's inherited ability to see through illusions — which allows him to learn imperceptible movements at a superhuman rate. It is revealed later that Sasuke is the sole survivor of the once-powerful Uchiha clan of Konohagakure. He, at the age of seven, survived the massacre of his clan perpetrated by his brother, Itachi, who spared Sasuke's life because he did not consider him worth killing. Sasuke seeks strong fighting opponents to reassure himself his power is growing. During a ninja examination meant to"} +{"qid": "test762", "pid": "12394509", "query": "where do some of the natural air pollutants come from", "answer": "wildfires", "passage": "\"Clean Air Act (United States)\"\nto the management of conventional air pollutants in the United States due to warmer, dryer summer conditions that can lead to increased air stagnation episodes. Prolonged droughts that may contribute to wildfires would also result in regionally high levels of air particles. As of 2017, some US cities still don’t meet all national ambient air quality standards. It is likely that tens of thousands of premature deaths are still being caused by fine-particle pollution and ground-level ozone pollution. Air pollution is not bound to a nation. Often, air coming into the U.S. contains pollution from upwind countries, making it harder"} +{"qid": "test763", "pid": "14944128", "query": "who is the pastor of new birth missionary baptist church now", "answer": "Stephen A. Davis", "passage": "\"New Birth Missionary Baptist Church\"\nBishop Long used his pastoral influence to coerce them into a sexual relationship with him when they were teenagers. On January 15, 2017, Bishop Eddie Long died from an aggressive form of cancer according to a statement released by the church. The church then announced Stephen A. Davis, pastor of New Birth Birmingham in Birmingham, Alabama would be Long's successor at New Birth Missionary Baptist Church in Lithonia while remaining pastor of the Birmingham. However in June, 2018 Bishop Davis resigned. On November 19, 2018, the church announced Jamal Bryant, pastor of Empowerment Temple AME Church in Baltimore, Maryland would"} +{"qid": "test764", "pid": "18567776", "query": "who is doing 2018 super bowl half time show", "answer": "Justin Timberlake", "passage": "\"Super Bowl LII halftime show\"\nSuper Bowl LII halftime show The Super Bowl LII Halftime Show (officially known as the Pepsi Super Bowl LII Halftime Show) took place on February 4, 2018 at U.S. Bank Stadium in Minneapolis, Minnesota, as part of Super Bowl LII. Justin Timberlake was the featured performer, as confirmed by the National Football League (NFL) on October 22, 2017. It was televised nationally by NBC. It received four nominations at the 70th Primetime Emmy Awards. The show began with Jimmy Fallon introducing Justin Timberlake, followed by a video screen depicting Timberlake performing \"\"Filthy\"\" in a club setting below the field level"} +{"qid": "test766", "pid": "1481785", "query": "who hosted they think it's all over", "answer": "Nick Hancock", "passage": "Stoke-on-Trent\n\"\"Black Hawk Down\"\", Freddie Jones, Alan Lake (widower of Diana Dors), Adrian Rawlins, Hanley Stafford (American radio actor, born Alfred John Austin in Hanley), Jonathan Wilkes and Neil Morrissey, star of \"\"Men Behaving Badly\"\". Hollyoaks actress Rachel Shenton is also from the area. Paul Bown Comedy actor was born in Fenton. Several nationally recognised TV presenters have been born in the area including Frank Bough, who presented \"\"Nationwide\"\" and \"\"Breakfast Time\"\"; Anthea Turner from \"\"Blue Peter\"\"; and Nick Hancock, who chaired the comedy quiz show \"\"They Think It's All Over\"\" and was host on \"\"Room 101.\"\" Bruno Brookes, the former"} +{"qid": "test766", "pid": "1339063", "query": "who hosted they think it's all over", "answer": "Nick Hancock", "passage": "\"Nick Hancock\"\nlater as a ticket inspector in a train. His early television credits also include \"\"Me, You and Him\"\" and \"\"The Mary Whitehouse Experience\"\". Hancock’s comedy idol is Peter Cook and he got the chance to meet him when Cook appeared on \"\"Room 101\"\". Hancock enjoyed hosting \"\"They Think It's All Over\"\" - especially when guests got in hot water: \"\"\"\"Chris Eubank was slagging off Kiwi rugby star Jonah Lomu, who's 6 ft 5 in and about 18 1/2 stone. I knew Jonah was backstage, about to come on for our 'feel the sportsman' round. It was a very pleasing moment!\"\"\"\""} +{"qid": "test766", "pid": "7706344", "query": "who hosted they think it's all over", "answer": "Des Lynam", "passage": "\"They Think It's All Over (TV series)\"\nDes Lynam did record a pilot in early 1994 but decided not to do the already commissioned series, which was then put on hold. In 1999 and 2001, as part of the BBC's Comic Relief broadcasts, one-off special programmes were made called \"\"Have I Got Buzzcocks All Over\"\". They combined elements of the show with \"\"Have I Got News for You\"\" and \"\"Never Mind the Buzzcocks\"\", with Angus Deayton as host. Kenneth Wolstenholme was unhappy with the use of the phrase for the title of the show. He wrote in his autobiography that he had contacted the BBC to find"} +{"qid": "test766", "pid": "6282222", "query": "who hosted they think it's all over", "answer": "Lee Mack", "passage": "\"Lee Mack\"\nfirst came to prominence by winning \"\"So You Think You're Funny\"\" at the 1995 Edinburgh Festival Fringe. Since then, Mack has played the part of Graham, the security guard in the original radio version of \"\"The Mighty Boosh\"\", and also has his own radio show on BBC Radio 2 called \"\"The Lee Mack Show\"\", which features varying celebrities co-hosting the show. Mack was a cast member for ITV's \"\"The Sketch Show\"\" and featured in the American version of the same name. In 2005, Mack presented \"\"They Think It's All Over\"\", a sports based comedy panel game, formerly presented by Nick"} +{"qid": "test767", "pid": "5668287", "query": "where does the movie proof of life take place", "answer": "The Republic of Tecala", "passage": "\"Proof of Life\"\nColombia's second largest guerrilla group is the Ejército de Liberación Nacional or ELN. Control Risks, a risk consulting firm, was hired to provide security for the cast and crew while filming on location. The firm also served as inspiration for kidnap and ransom consulting seen in the film. The movie end credit and post-script says: \"\"Inspired by the VANITY FAIR article 'Adventures in the Ransom Trade' by William Prochnau and by the book \"\"Long March to Freedom\"\" by Thomas Hargrove. The Republic of Tecala, where most of \"\"Proof of Life\"\" is set, is a fictional South American country. Tecala has"} +{"qid": "test769", "pid": "11667075", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"James Harden\"\nblock in a 105–96 win over the Detroit Pistons. He became just the fourth NBA player in the last 25 years to post those totals in a single game and matched the third-highest point total for any NBA player in his team debut (most for Rockets debut). Two days later, he scored 45 points against the Atlanta Hawks. His 82 total points were the most scored by a player in his first two games with a team in NBA history, surpassing the previous mark held by Wilt Chamberlain, who scored 79 points in his first two career games with the"} +{"qid": "test769", "pid": "1361475", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"Pete Maravich\"\nantics. He was elected to the All-NBA First Team that year. The following season (1976–77) was his most productive in the NBA. He led the league in scoring with an average of 31.1 points per game. He scored 40 points or more in 13 different games, and 50 or more in 4 games. His 68-point masterpiece against the Knicks was at the time the most points ever scored by a guard in a single game, and only two players at any position had ever scored more: Wilt Chamberlain and Elgin Baylor. Baylor was head coach of the Jazz at that"} +{"qid": "test769", "pid": "11904500", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"1961–62 Philadelphia Warriors season\"\nBasketball Association as one of its greatest games, took place between the Philadelphia Warriors and the New York Knicks on March 2, 1962, at Hersheypark Arena in Hershey, Pennsylvania. The Warriors won the game, 169–147, setting what was then a record for the most combined points in a game by both teams. But the game is most remembered for the 100 points scored by Warriors center Wilt Chamberlain, who set the NBA single-game scoring record. The next leading scorer for Philadelphia was Phil Attles with 17 points. The Knicks leading scorer was Guerin with 39 points. In that game, Chamberlain"} +{"qid": "test769", "pid": "3130574", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"Center (basketball)\"\nMost notably, Chamberlain is the only player in NBA history to average more than 50 points in a season and score 100 points in a single game (both in 1961–62 as a member of the Philadelphia Warriors). He also holds the NBA's all-time records for rebounding average (27.2), rebounds in a single game (55), and career rebounds (23,924). A lesser-known center of the era was Nate Thurmond, who initially played the forward position opposite Wilt Chamberlain for the San Francisco Warriors but moved to center after Chamberlain was traded to the new Philadelphia franchise. Although he never won a Championship,"} +{"qid": "test769", "pid": "1833137", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"Kobe Bryant\"\nHeat. Bryant became the cornerstone of the Lakers, and he led the NBA in scoring during the 2005–06 and 2006–07 seasons. In 2006, he scored a career-high 81 points against the Toronto Raptors, the second most points scored in a single game in league history behind Wilt Chamberlain's 100-point game in 1962. Bryant was awarded the regular season's Most Valuable Player Award (MVP) in 2008. After losing in the 2008 NBA Finals, he led the Lakers to two consecutive championships in 2009 and 2010, earning the Finals MVP Award on both occasions. He continued to be among the top players"} +{"qid": "test769", "pid": "9708651", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"Wilt Chamberlain's 100-point game\"\nNaulls wrote, \"\"Wilt had rung the bell of freedom loud and clear, shouting, 'Let my people be free to express themselves.' For we were and will be for all time those who withstood the humiliation of racial quotas even to the point of the NBA's facing extinction because of retarded expression and stagnating growth.\"\" Source
Wilt Chamberlain's 100-point game Wilt Chamberlain set the single-game scoring record in the National Basketball Association (NBA) by scoring 100 points for the Philadelphia Warriors in a 169–147 win over the New York Knicks on March 2, 1962, at Hershey Sports Arena in Hershey,"} +{"qid": "test769", "pid": "1877390", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"Wilt Chamberlain\"\nin scoring, rebounding, and durability categories. He is the only player to score 100 points in a single NBA game or average more than 40 and 50 points in a season. He won seven scoring, eleven rebounding, nine field goal percentage titles and led the league in assists once. Chamberlain is the only player in NBA history to average at least 30 points and 20 rebounds per game in a season, which he accomplished seven times. He is also the only player to average at least 30 points and 20 rebounds per game over the entire course of his NBA"} +{"qid": "test769", "pid": "9708601", "query": "who scored the most points in a single game in the nba", "answer": "Wilt Chamberlain", "passage": "\"Wilt Chamberlain's 100-point game\"\nWilt Chamberlain's 100-point game Wilt Chamberlain set the single-game scoring record in the National Basketball Association (NBA) by scoring 100 points for the Philadelphia Warriors in a 169–147 win over the New York Knicks on March 2, 1962, at Hershey Sports Arena in Hershey, Pennsylvania. It is widely considered one of the greatest records in basketball. Chamberlain set five other league records that game including most free throws made, a notable achievement, as he was regarded as a poor free throw shooter. The teams broke the record for most combined points in a game (316). That season, Chamberlain averaged a"} +{"qid": "test77", "pid": "2181849", "query": "where would a subcutaneous injection be made in the skin", "answer": "the subcutis", "passage": "\"Subcutaneous injection\"\nSubcutaneous injection A subcutaneous injection is administered as a bolus into the subcutis, the layer of skin directly below the dermis and epidermis, collectively referred to as the cutis. Subcutaneous injections are highly effective in administering vaccines and medications such as insulin, morphine, diacetylmorphine and goserelin. Subcutaneous (as opposed to intravenous) injection of recreational drugs is referred to as \"\"skin popping.\"\" Subcutaneous administration may be abbreviated as SC, SQ, sub-cu, sub-Q, SubQ, or subcut. Subcut is the preferred abbreviation for patient safety. Subcutaneous tissue has few blood vessels and so drugs injected here are for slow, sustained rates of absorption."} +{"qid": "test77", "pid": "2181851", "query": "where would a subcutaneous injection be made in the skin", "answer": "the subcutis", "passage": "\"Subcutaneous injection\"\n3/8\"\" needle is usually inserted 90 degrees and a 5/8\"\" needle is usually inserted at 45 degrees. Medication is administered slowly, about 10 seconds/milliliter. A person with insulin-dependent (either type 1 or type 2) diabetes mellitus typically injects insulin subcutaneously. The injection should be given under the skin, into the fat layer. Subcutaneous injection A subcutaneous injection is administered as a bolus into the subcutis, the layer of skin directly below the dermis and epidermis, collectively referred to as the cutis. Subcutaneous injections are highly effective in administering vaccines and medications such as insulin, morphine, diacetylmorphine and goserelin. Subcutaneous (as"} +{"qid": "test77", "pid": "3609503", "query": "where would a subcutaneous injection be made in the skin", "answer": "the subcutis", "passage": "\"Subdermal implant\"\ndermal punch. To have one of these implants installed, an incision is made down to the subcutaneous layer (subcutis) of the skin. A dermal elevator, a widely used medical instrument, separates the subcutis and the fascia, creating the pocket in which the implant will be inserted. After the implant is placed, the incision is stitched shut. Surgical tape is often applied to minimize movement while the skin fuses around the implant. Contraceptive implants in the UK and Australia are \"\"injected\"\" under the skin using a special device similar to a large syringe or ear-piercing gun, and extracted by making a"} +{"qid": "test770", "pid": "9468575", "query": "where is natural gas found in the us", "answer": "Pennsylvania", "passage": "\"Hydraulic fracturing in the United States\"\nmicrobial in origin and not thermogenic like gas produced from gas wells. Research done by the ODNR found that naturally occurring methane gas was present in the aquifers of Nelson and Windham Townships of Portage County, Ohio. A 2014 study of households using groundwater near active natural gas drilling in Washington County, Pennsylvania found that upper respiratory illnesses and skin diseases were much more prevalent closer to hydraulic fracturing activity. Respiratory problems were found in 18% of the population 1.2 miles or more from drilling, compared to 39% of those within 0.6 miles of new natural gas wells. People with"} +{"qid": "test770", "pid": "19957352", "query": "where is natural gas found in the us", "answer": "Pennsylvania", "passage": "\"21st-century fossil fuel regulations in the United States\"\nFrench explorers found Native Americans setting gas on fire that leaked into Lake Erie. In 1816, the U.S. first lighted the streets of Baltimore, Maryland. Then in 1821, the first successful natural gas well was dug in Fredonia, New York, which allowed for the American natural gas distribution company to be built there in 1858. And then in 1836, the first city-owned natural gas distribution company was created in Philadelphia, Pennsylvania. While during the 1800s, natural gas was used mainly for lighting streets and homes, the creation of pipelines in the 1900s allowed for extensive use of it in home"} +{"qid": "test770", "pid": "860439", "query": "where is natural gas found in the us", "answer": "Texas", "passage": "Thiol\ndistributors were required to add thiols, originally ethanethiol, to natural gas (which is naturally odorless) after the deadly New London School explosion in New London, Texas, in 1937. Many gas distributors were odorizing gas prior to this event. Most gas odorants utilized currently contain mixtures of mercaptans and sulfides, with \"\"t\"\"-butyl mercaptan as the main odor constituent in natural gas and ethanethiol in liquefied petroleum gas (LPG, propane). In situations where thiols are used in commercial industry, such as liquid petroleum gas tankers and bulk handling systems, an oxidizing catalyst is used to destroy the odor. A copper-based oxidation catalyst"} +{"qid": "test770", "pid": "4876370", "query": "where is natural gas found in the us", "answer": "Pennsylvania", "passage": "\"TransCanada Corporation\"\nbillion. The Columbia acquisition added a pipeline network in Pennsylvania and surrounding states, where the Marcellus and Utica shale gas formations are located. TransCanada's natural gas pipelines business builds, owns and operates a network of natural gas pipelines across North America that connects gas production to interconnects and end use markets. The company transports over 25% of continental daily natural gas demand through 91,900 km (57,100 mi) of pipelines. In addition, the company owns 535 Bcf of natural gas storage facilities, making TransCanada one of the largest natural gas storage providers in North America. This segment is TransCanada's largest segment,"} +{"qid": "test770", "pid": "15264858", "query": "where is natural gas found in the us", "answer": "Texas", "passage": "\"Phillips Petroleum Co. v. Wisconsin\"\nfor useful purposes. In order to prevent any gaps in the natural gas regulation when natural gas flows in interstate commerce, Congress enacted the Natural Gas Act of 1938. That law required that companies must obtain from the Federal Power Commission (FPC) a \"\"certificate of public convenience and necessity\"\" (certificate) before making any sale for resale natural gas in interstate commerce. The FPC set the maximum prices charged for gas sold under a certificate. For example, if gas flowed from a well in Texas through a pipeline to New York where it was sold to a gas distribution company, the"} +{"qid": "test771", "pid": "3942108", "query": "when were the first general elections held in independent india", "answer": "1951–52", "passage": "\"1951–52 elections in India\"\n1951–52 elections in India The Election Commission of India held the first presidential elections of India on May 2, 1952. Dr. Rajendra Prasad won his first election with 507,400 votes over his nearest rival K.T. Shah who got 92,827 votes. General elections to the first Lok Sabha since independence were held in India between 25 October 1951 and 21 February 1952. The Indian National Congress (INC) stormed into power, winning 364 of the 489 seats. Jawaharlal Nehru became the first democratically elected Prime Minister of the country. : On 1 November 1956, Ajmer State was merged into Rajasthan under States"} +{"qid": "test771", "pid": "3942115", "query": "when were the first general elections held in independent india", "answer": "1951–52", "passage": "\"1951–52 elections in India\"\nenlarged slightly by the transfer of minor territories from Bihar in 1956 under States Reorganisation Act, 1956. 1951–52 elections in India The Election Commission of India held the first presidential elections of India on May 2, 1952. Dr. Rajendra Prasad won his first election with 507,400 votes over his nearest rival K.T. Shah who got 92,827 votes. General elections to the first Lok Sabha since independence were held in India between 25 October 1951 and 21 February 1952. The Indian National Congress (INC) stormed into power, winning 364 of the 489 seats. Jawaharlal Nehru became the first democratically elected Prime"} +{"qid": "test771", "pid": "10216200", "query": "when were the first general elections held in independent india", "answer": "1951–52", "passage": "\"1951–52 Indian general election\"\nrest of the India voted only in February–March 1952 for the Lok Sabha and Vidhan Sabha elections. Polling was held between 25 October 1951 and 27 March 1952. The very first votes of the election were cast in the tehsil (district) of Chini in Himachal Pradesh. 1951–52 Indian general election The Indian general election of 1951–52 elected the first Lok Sabha since India became independent in August 1947. Until this point, the Indian Constituent Assembly had served as an interim legislature. See the 'Durations' section below to find the time-range associated with these elections. The Indian National Congress (INC) won"} +{"qid": "test773", "pid": "2511037", "query": "what type of fuel goes in a zippo", "answer": "lighter fluid", "passage": "Zippo\nthe lid closed or opened securely. Unlike disposable lighters, Zippo lighters purchased new do not contain fuel. Instructions for safely fueling the Zippo are included in its packaging. Zippo also offers for sale a name brand lighter fluid. Morley Safer, in his August 5, 1965 \"\"CBS News\"\" report of the Cam Ne affair and Private First Class Reginald \"\"Malik\"\" Edwards, the rifleman 9th Regiment, US Marine Corps Danang (June 1965 – March 1966) whose profile comprises chapter one of Wallace Terry's book, \"\"Bloods: An Oral History of the Vietnam War by Black Veterans\"\" (1984), describe the use of Zippo lighters"} +{"qid": "test773", "pid": "2511033", "query": "what type of fuel goes in a zippo", "answer": "butane", "passage": "Zippo\nMPLs. This was followed in 2005 with the Outdoor Utility Lighter, known as the OUL. These lighters are fueled with butane. In August 2007, Zippo released a new butane lighter called the Zippo BLU. A museum called \"\"Zippo/Case visitors center\"\" is located in Bradford, Pennsylvania, at 1932 Zippo Drive. This building contains rare and custom made Zippo lighters, and also sells the entire Zippo line. The museum was featured on the NPR program \"\"Weekend Edition\"\" on Sunday, January 25, 2009. The museum also contains an enormous collection of Case knives. Since the Zippo company's 60th anniversary in 1992, annual editions"} +{"qid": "test773", "pid": "2511045", "query": "what type of fuel goes in a zippo", "answer": "butane", "passage": "Zippo\nthe only butane torch lighters that uses a flint and striker wheel. There is also the BLU2, which features a more square frame and eliminates the fuel gauge on the side of the original Zippo BLU. As of January 1, 2016, the BLU line of lighters are discontinued. Zippo has stated that they will continue to service all previously sold BLU lighters. In addition to its 2010 purchase of the Ronson brand in the US and Canada, Zippo also owns W. R. Case & Sons Cutlery Co. of Bradford, Pennsylvania, Zippo UK, Ltd. of London, England, and Zippo Fashion Italia"} +{"qid": "test773", "pid": "16473906", "query": "what type of fuel goes in a zippo", "answer": "lighter fluid", "passage": "\"Catalytic heater\"\nCatalytic heater A catalytic heater is a type of heater which relies on catalyzed chemical reactions to break down molecules and produce heat. Catalytic heaters can be used wherever heat is required, producing heat at a lower, more controlled rate than unconstrained combustion. Examples of smaller and larger heaters are soldering irons, hand warmers (such as the Jon-E or Zippo) and space-heating appliances. Current small-scale space heaters are typically propane (LP) or butane fueled, whereas many older types used liquid fuel (naphtha, lighter fluid, Coleman camping fuel or \"\"white gas\"\" in the USA) or alcohol. Pocket-sized catalytic hand warmers have"} +{"qid": "test773", "pid": "2511043", "query": "what type of fuel goes in a zippo", "answer": "lighter fluid", "passage": "Zippo\na piece of felt approximately 1/4 of an inch thick. Printed on the bottom of the felt (in modern Zippos, not on older models ) are the words, \"\"LIFT TO FILL,\"\" to indicate one must lift the felt away from the \"\"cotton\"\" in order to refuel it. The fuel, light petroleum distillate or synthetic isoparaffinic hydrocarbon (commonly referred to as lighter fluid or naphtha), is poured into the rayon balls (sometimes called the \"\"cotton,\"\" or the \"\"batting\"\"), which absorbs it. It also contains a tube that holds a short, cylindrical flint. The tube has an interior spring and exterior cap-screw"} +{"qid": "test773", "pid": "2511044", "query": "what type of fuel goes in a zippo", "answer": "butane", "passage": "Zippo\nthat keeps the flint in constant contact with the exterior flint-wheel. Spinning this rough-surfaced wheel against flint results in a spark that ignites the fluid in the wick. All parts of the lighter are replaceable. The Zippo lighter requires 108 manufacturing operations. Zippo released the Zippo BLU in 2007 (although there are many 2005 pre-release models). These are butane torch lighters, which Zippo has gone to great lengths to make sure are still \"\"identifiable as a Zippo\"\". Specifically, the lid and cam were \"\"tuned\"\" so that the lighter still makes the distinctive \"\"Zippo click\"\", and also it is one of"} +{"qid": "test773", "pid": "2222387", "query": "what type of fuel goes in a zippo", "answer": "butane", "passage": "Lighter\nits reliability, \"\"Life Time Warranty\"\" and marketing as \"\"Wind-Proof\"\". Most early Zippos used naphtha as a fuel source. In the 1950s, there was a switch in the fuel of choice from naphtha to butane, as butane allows for a controllable flame and has less odour. This also led to the use of piezoelectric spark, which replaced the need for a flint wheel in some lighters and was used in many Ronson lighters. In modern times most of the world's lighters are produced in the United States, China, and Thailand. Naphtha based lighters employ a saturated cloth wick and fibre packing"} +{"qid": "test774", "pid": "3985859", "query": "first jnanpith award was an autor of which language", "answer": "Malayalam", "passage": "\"Jnanpith Award\"\nthe award was the Malayalam writer G. Sankara Kurup who received the award in 1965 for his collection of poems, Odakkuzhal (\"\"The Bamboo Flute\"\"), published in 1950. The rules were revised in subsequent years to consider only works published during the preceding twenty years, excluding the year for which the award was to be given and the cash prize was increased to from 1981. , the cash prize has been revised to and out of twenty-three eligible languages the award has been presented for works in sixteen languages: Hindi (eleven), Kannada (eight), Bengali (six), Malayalam (five), Gujarati, Marathi, Odia, and"} +{"qid": "test774", "pid": "8809379", "query": "first jnanpith award was an autor of which language", "answer": "Malayalam", "passage": "\"Shivaji Sawant\"\nthe Marathi compositions . It is based on Karna, the greatest warrior in the epic of Mahabharata. It was awarded with many of the prizes and awards given by the Jnanpith (Moorti Devi Award). Mrityujaya was translated in many other languages. Dr P K chandran & Dr Jayashree translated the book in to Malayalam (Karnan), which won Kendra Sahitya Akademy Award for translation in the year 2001 Yugandhar is another Novel of Shivaji Sawant based on the life of Krishna, a great character in Mahabharata and other narrative epics as well as the God of the Hindus.Yugandhar is one of"} +{"qid": "test775", "pid": "16160850", "query": "who played the mad hatter in the batman tv show", "answer": "Benedict Samuel", "passage": "\"Benedict Samuel\"\nalso appeared in the short film \"\"Kiss\"\". He appeared as Owen, a member of the Wolves gang, in the American post-apocalyptic zombie series \"\"The Walking Dead\"\" and as Jacob Harding in the thriller film \"\"The Stanford Prison Experiment\"\". In 2016, Samuel was cast as famous Batman villain The Mad Hatter, the main antagonist of the third season of \"\"Gotham\"\". He continued to play the character in a recurring capacity during the fourth season. Benedict Samuel Benedict Samuel (born 15 April 1988) is an Australian actor, writer and director best known for playing Jervis Tetch/Mad Hatter in the Fox crime series"} +{"qid": "test777", "pid": "20655042", "query": "in photosynthesis the carbon in co2 is initially fixed to what molecule", "answer": "3-phosphoglycerate", "passage": "\"Fractionation of carbon isotopes in oxygenic photosynthesis\"\nbe less fractionated in C (ie, δC is relatively less negative) compared to C3 plants with low water-use efficiency. C4 plants have developed the C4 carbon fixation pathway to conserve water loss, thus are more prevalent in hot, sunny, and dry climates. These plants differ from C3 plants because the Calvin Cycle in C4 plants produces a four-carbon molecule, malate (rather than 3-phosphoglycerate), after fixation of CO. Malate, the four-carbon compound is the namesake of \"\"C4\"\" photosynthesis. This pathway allows C4 photosynthesis to efficiently shuttle CO to the RuBisCO enzyme and maintain high concentrations of CO within bundle sheath cells."} +{"qid": "test779", "pid": "652446", "query": "how many countries does cadbury sell its products", "answer": "more than 50 countries worldwide", "passage": "Cadbury\nCadbury Cadbury, formerly Cadbury's and Cadbury Schweppes, is a British multinational confectionery company wholly owned by Mondelez International (originally Kraft Foods) since 2010. It is the second-largest confectionery brand in the world after Mars. Cadbury is internationally headquartered in Uxbridge, West London, and operates in more than 50 countries worldwide. It is known for its Dairy Milk chocolate, the Creme Egg and Roses selection box, and many other confectionery products. One of the best-known British brands, in 2013 \"\"The Daily Telegraph\"\" named Cadbury among Britain's most successful exports. Cadbury was established in Birmingham, England in 1824, by John Cadbury who"} +{"qid": "test78", "pid": "5886181", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Extracellular digestion\"\ndown outside the cell either mechanically or with acid by special molecules called enzymes. Then the newly broken down nutrients can be absorbed by the cells nearby. Humans use extracellular digestion when they eat. Their teeth grind the food, enzymes and acid in the stomach liquefy it, and additional enzymes in the small intestine break the food down into parts their cells can use. Although fungi do not have a digestive tract like humans, they still use extracellular digestion. Fungi and other decomposers utilize nutrients derived from breaking down the substrate they grow on. Another example of extracellular digestion being"} +{"qid": "test78", "pid": "8548572", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Protein (nutrient)\"\nAcid Score. Most proteins are decomposed to single amino acids by digestion in the gastro-intestinal tract. Digestion typically begins in the stomach when pepsinogen is converted to pepsin by the action of hydrochloric acid, and continued by trypsin and chymotrypsin in the small intestine. Before the absorption in the small intestine, most proteins are already reduced to single amino acid or peptides of several amino acids. Most peptides longer than four amino acids are not absorbed. Absorption into the intestinal absorptive cells is not the end. There, most of the peptides are broken into single amino acids. Absorption of the"} +{"qid": "test78", "pid": "6675110", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Indiana pouch\"\ndigested matter from re-entering the small intestine. Originally, it was thought that removing the ileocecal valve from the digestive tract would likely result in diarrhea, but this has not shown to be the case. After a period of several weeks, the body adjusts to the absence of this valve (from the digestive tract) by absorbing more liquids and nutrients. Importantly, this valve, in its new capacity, will now effectively prevent the escape of urine from the stoma. The passage of the conduit through the abdominal wall allows the rectus abdominis muscle to aid with continence. The surgery itself along with"} +{"qid": "test78", "pid": "18632990", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Serum-derived bovine immunoglobulin/protein isolate\"\nthe gastrointestinal (GI) tract. Conditions like HIV-enteropathy, IBS-D (irritable bowel syndrome with diarrhea), SIBO (small intestine bacterial overgrowth), recurrent C. difficile infection-associated diarrhea and post-infectious IBS-D often limit or impair the body's ability to absorb and digest select nutrients including water. Clinical studies have indicated that serum-derived bovine immunoglobulin/protein isolate may help to reduce diarrhea and to restore the ability of the GI tract to properly absorb and utilize those nutrients. Research into bovine- and porcine-associated sources of immunoglobulin began in the field of animal health. Studies examined the health effects of adding immunoglobulins to the feed of early-weaned piglets"} +{"qid": "test78", "pid": "17916260", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Human digestive system\"\nfats to some degree though is not as efficient as the pancreatic lipase. The pylorus, the lowest section of the stomach which attaches to the duodenum via the pyloric canal, contains countless glands which secrete digestive enzymes including gastrin. After an hour or two, a thick semi-liquid called chyme is produced. When the pyloric sphincter, or valve opens, chyme enters the duodenum where it mixes further with digestive enzymes from the pancreas, and then passes through the small intestine, where digestion continues. When the chyme is fully digested, it is absorbed into the blood. 95% of absorption of nutrients occurs"} +{"qid": "test78", "pid": "2963957", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Fecal fat test\"\nFecal fat test In medicine, the fecal fat test is a diagnostic test for fat malabsorption conditions, which lead to excess fat in the feces (steatorrhea). In the Duodenum, dietary fat (primarily triglycerides) is digested by enzymes such as pancreatic lipase into smaller molecules of 1,2-Diacylglycerols and Free Fatty Acids which can be absorbed through the wall of the Jejenum of the small intestine and enter the circulation for metabolism and storage. As fat is a valuable nutrient, human feces normally contain very little undigested fat. However, a number of diseases of the pancreas and gastrointestinal tract are characterized by"} +{"qid": "test78", "pid": "1430918", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "Digestion\nthat move along the stomach wall. This allows the mass of food to further mix with the digestive enzymes. After some time (typically 1–2 hours in humans, 4–6 hours in dogs, 3–4 hours in house cats), the resulting thick liquid is called chyme. When the pyloric sphincter valve opens, chyme enters the duodenum where it mixes with digestive enzymes from the pancreas and bile juice from the liver and then passes through the small intestine, in which digestion continues. When the chyme is fully digested, it is absorbed into the blood. 95% of absorption of nutrients occurs in the small"} +{"qid": "test78", "pid": "14765491", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "\"Parasitic nutrition\"\nendoparasitic species. Tapeworms are endoparasites with numerous adaptations to enhance parasitic nutrition. Tapeworms live in the small intestine of humans, providing an ideal location to access a readily available, rich source of pre-digested nutrients. Since nutrients in the small intestine are plentiful and pre-digested by the host, tapeworms do not require a gut and instead have adaptations to maximise nutrient absorption. Tapeworms have a tegument that they use to absorb nutrients directly from the host small intestine by diffusion. They also have anatomical adaptations in the form of a scolex with hookers and suckers that they use to attach to"} +{"qid": "test78", "pid": "497725", "query": "where are most nutrients absorbed in the human digestive tract", "answer": "small intestine", "passage": "Frog\neyes assist in the swallowing of food as they can be retracted through holes in the skull and help push food down the throat. The food then moves through the oesophagus into the stomach where digestive enzymes are added and it is churned up. It then proceeds to the small intestine (duodenum and ileum) where most digestion occurs. Pancreatic juice from the pancreas, and bile, produced by the liver and stored in the gallbladder, are secreted into the small intestine, where the fluids digest the food and the nutrients are absorbed. The food residue passes into the large intestine where"} +{"qid": "test780", "pid": "2357073", "query": "ethiopia flight 961 crashes in to the sea", "answer": "23 November 1996", "passage": "\"Ethiopian Airlines Flight 961\"\nEthiopian Airlines Flight 961 Ethiopian Airlines Flight 961 was a scheduled flight serving the route Addis Ababa–Nairobi–Brazzaville–Lagos–Abidjan. On 23 November 1996, the aircraft serving the flight, a Boeing 767-200ER, was hijacked en route from Addis Ababa to Nairobi by three Ethiopians seeking asylum in Australia. The plane crash-landed in the Indian Ocean near Grande Comore, Comoros Islands, due to fuel exhaustion; 125 of the 175 passengers and crew on board, including the three hijackers, died. The only (partially) successful ditching of a wide-body airliner in history, the crash was captured on video. The aircraft involved in the crash was a"} +{"qid": "test780", "pid": "6660203", "query": "ethiopia flight 961 crashes in to the sea", "answer": "23 November 1996", "passage": "Mitsamiouli\nfrom Mitsamiouli and leads to the village of Bangoi Mafsankoa further inland, which has its own mosque. Lac Sale Crater – Lac Sale is an ancient volcano crater, near Mitsamiouli, filled with sea water. Tourism is important in the area, particularly from European honeymooners. Fishing is also practiced in Mitsamiouli. Mitsamiouli Mitsamiouli (population 6,100) is a town on the northwest coast of Grande Comore in the Comoros. On 23 November 1996, Ethiopian Airlines Flight 961 made a crash-landing in the shallow waters offshore from Le Galawa Beach Hotel in Mitsamiouli. Of the 175 passengers, 125 died, despite rescue attempts by"} +{"qid": "test780", "pid": "2357089", "query": "ethiopia flight 961 crashes in to the sea", "answer": "23 November 1996", "passage": "\"Ethiopian Airlines Flight 961\"\ncovered the events of Flight 961 in detail. Most recently, it featured in the season 10 episode covering US Airways Flight 1549, to explain the risks of that crew's decision to ditch in the Hudson River. It was also featured in a 2010 episode of the Biography Channel series \"\"I Survived...\"\", in which a survivor told his story of what happened on the plane. Ethiopian Airlines Flight 961 Ethiopian Airlines Flight 961 was a scheduled flight serving the route Addis Ababa–Nairobi–Brazzaville–Lagos–Abidjan. On 23 November 1996, the aircraft serving the flight, a Boeing 767-200ER, was hijacked en route from Addis Ababa"} +{"qid": "test780", "pid": "9697806", "query": "ethiopia flight 961 crashes in to the sea", "answer": "23 November 1996", "passage": "\"Leul Abate\"\nLeul Abate Captain Leul Abate (Ge'ez: born 1954) is an Ethiopian pilot who piloted Ethiopian Airlines Flight 961, which was hijacked on 23 November 1996, fifteen minutes out from Addis Ababa to Nairobi, by three Ethiopians seeking political asylum in Australia. The plane crashed in the Indian Ocean near The Comoros after running out of fuel, killing 125 of the 175 passengers and crew on board. Leul observed that, \"\"[The hijackers] knew they wouldn't make it to Australia - they just wanted us to crash. They should be dead. The way they were talking they didn't want to live.\"\" Four"} +{"qid": "test780", "pid": "74842", "query": "ethiopia flight 961 crashes in to the sea", "answer": "23 November 1996", "passage": "\"History of the Comoros\"\ncivilian government that Denard had tried to set up in October 1995, became president. On 23 November 1996, Ethiopian Airlines Flight 961 crashed near a beach on the island after it was hijacked and ran out of fuel killing 125 people and leaving 50 survivors. In 1997, the islands of Anjouan and Mohéli declared their independence from the Comoros. A subsequent attempt by the government to re-establish control over the rebellious islands by force failed, and presently the African Union is brokering negotiations to effect a reconciliation. This process is largely complete, at least in theory. According to some sources,"} +{"qid": "test780", "pid": "6660202", "query": "ethiopia flight 961 crashes in to the sea", "answer": "23 November 1996", "passage": "Mitsamiouli\nMitsamiouli Mitsamiouli (population 6,100) is a town on the northwest coast of Grande Comore in the Comoros. On 23 November 1996, Ethiopian Airlines Flight 961 made a crash-landing in the shallow waters offshore from Le Galawa Beach Hotel in Mitsamiouli. Of the 175 passengers, 125 died, despite rescue attempts by island residents and tourists. Mitsamiouli lies on the northwest coast of the island, along the main coast road RN-1 and RN-3. This coastal road connects it to Djomani and Ntsaouéni further to the south on the west coast and Ivoini on the northeast coast. The RR 122 road runs south"} +{"qid": "test783", "pid": "5340788", "query": "who scored the most points in their nba career", "answer": "Kareem Abdul-Jabbar", "passage": "\"1984 NBA draft\"\nand later in Brazil. He played in five Olympics and was the top scorer in three of them. He finished his career with 49,703 points with various clubs and the Brazilian national team, more than the NBA's career scoring leader, Kareem Abdul-Jabbar, who scored 38,387 points in his NBA career. In 2010, International Basketball Federation (FIBA) honored Schmidt with an induction to the FIBA Hall of Fame, and Schmidt was inducted by the Naismith Hall in 2013. University of Houston track and field Olympic Champion Carl Lewis, who had never played college basketball, was drafted by the Chicago Bulls with"} +{"qid": "test783", "pid": "3701938", "query": "who scored the most points in their nba career", "answer": "Kareem Abdul-Jabbar", "passage": "\"Paul Pierce\"\npoints for the 15th straight season, becoming the only active NBA player and the sixth player in NBA history to score 1,000 points in 15 straight seasons (Kareem Abdul-Jabbar, Karl Malone, John Havlicek, Elvin Hayes, Robert Parish). He passed Allen Iverson and Patrick Ewing on the NBA's all-time scoring list (moved up to 18th in NBA history), moved into fifth place in all-time NBA history with 1935 career three-pointers made, and had his most steals (86) in a season since 2007–08. He came off the bench more times in 2013–14 (seven games) than he did in his previous 15 seasons"} +{"qid": "test784", "pid": "1251401", "query": "with a land area of 54 314 square miles where does wisconsin rank among the 50 states", "answer": "25", "passage": "\"Hewett, Wisconsin\"\nHewett, Wisconsin Hewett is a town in Clark County in the U.S. state of Wisconsin. The population was 314 at the 2000 census. The unincorporated community of Columbia is located in the town. According to the United States Census Bureau, the town has a total area of 35.8 square miles (92.7 km²), of which, 35.8 square miles (92.6 km²) of it is land and 0.04 square miles (0.1 km²) of it (0.08%) is water. As of the census of 2000, there were 314 people, 125 households, and 96 families residing in the town. The population density was 8.8 people per"} +{"qid": "test784", "pid": "1255029", "query": "with a land area of 54 314 square miles where does wisconsin rank among the 50 states", "answer": "25", "passage": "\"Helenville, Wisconsin\"\nHelenville, Wisconsin Helenville is a census-designated place (CDP) in the town of Jefferson, Jefferson County, Wisconsin, United States. The population was 249 at the 2010 census. A post office called Helenville has been in operation since 1851. The community was named in honor of Helen, the wife of the original owner of the town site. Helenville is located at (43.020378, -88.698619). According to the United States Census Bureau, the CDP has a total area of 0.5 square mile (1.3 km), all land. As of the census of 2000, there were 225 people, 74 households, and 54 families residing in the"} +{"qid": "test786", "pid": "11724858", "query": "who wrote the book my country my life", "answer": "L. K. Advani", "passage": "\"My Country My Life\"\nMy Country My Life My Country My Life is an autobiographical book by L. K. Advani, an Indian politician who served as the Deputy Prime Minister of India from 2002 to 2004, and was the Leader of the Opposition in the 15th Lok Sabha. The book was released on 19 March 2008 by Abdul Kalam, the eleventh President of India. The book has 1,040 pages and narrates autobiographical accounts and events in the life of Advani. It became the best seller book in the non-fiction category and Advani joined Archer as a bestseller author. The book website claims the book"} +{"qid": "test786", "pid": "11724868", "query": "who wrote the book my country my life", "answer": "L. K. Advani", "passage": "\"My Country My Life\"\nIndia should take in the future, but there are no two opinions, after reading the autobiography, that there are very few in Indian politics with the mettle and character of Advani. Perhaps this book will serve as an inspiration to many who are deeply for the nation but don’t know the high cost and also the high value of power\"\". My Country My Life My Country My Life is an autobiographical book by L. K. Advani, an Indian politician who served as the Deputy Prime Minister of India from 2002 to 2004, and was the Leader of the Opposition in"} +{"qid": "test787", "pid": "183712", "query": "when did the east india company take control of india", "answer": "1799", "passage": "\"History of India\"\nBritish East India Company gained exclusive control over the entire Carnatic region of India. The Company soon expanded its territories around its bases in Bombay and Madras; the Anglo-Mysore Wars (1766–1799) and later the Anglo-Maratha Wars (1772–1818) led to control of vast regions of India. Ahom Kingdom of North-east India first fell to Burmese invasion and then to the British after the Treaty of Yandabo in 1826; concurrently, the Burmese invasions also lead the Kingdom of Manipur to seek British protectorate in 1824, however, it was after the Anglo-Manipur War of 1891 did it become part of the British Empire."} +{"qid": "test787", "pid": "1392534", "query": "when did the east india company take control of india", "answer": "1799", "passage": "Travancore\nThe Prime Ministers (Dalawas or Dewans) started taking control of the kingdom beginning with Velu Thampi Dalawa (Velayudhan Chempakaraman Thampi) (1799–1809) who was appointed as the \"\"divan\"\" following the dismissal of Jayanthan Sankaran Nampoothiri (1798–1799). Initially, Velayudhan Chempakaraman Thampi and the English East India Company got along very well. When a section of the Travancore army mutinied in 1805 against Velu Thampi Dalawa, he sought refuge with the British Resident and later used English East India Company troops to crush the mutiny. Velu Thampi also played a key role in renegotiating a new treaty between Travancore and the English East"} +{"qid": "test787", "pid": "538260", "query": "when did the east india company take control of india", "answer": "in 1757", "passage": "\"East India Company\"\nto rule large areas of India with its private armies, exercising military power and assuming administrative functions. Company rule in India effectively began in 1757 and lasted until 1858, when, following the Indian Rebellion of 1857, the Government of India Act 1858 led to the British Crown's assuming direct control of the Indian subcontinent in the form of the new British Raj. Despite frequent government intervention, the company had recurring problems with its finances. It was dissolved in 1874 as a result of the East India Stock Dividend Redemption Act passed one year earlier, as the Government of India Act"} +{"qid": "test788", "pid": "243632", "query": "where does the water come from to fill lake eyre", "answer": "Warburton River", "passage": "\"Lake Eyre\"\npresence of beta-carotene pigment caused by the algae \"\"Dunaliella salina\"\". Typically a flood occurs every three years, a flood every decade, and a fill or near fill a few times a century. The water in the lake soon evaporates with a minor or medium flood drying by the end of the following summer. Most of the water entering the lakes arrives via Warburton River. In strong La Niña years the lake can fill. Since 1885 this has occurred in 1886–1887, 1889–1890, 1916–1917, 1950, 1955, 1974–1977, and 1999–2001, with the highest flood of in 1974. Local rain can also fill Kati"} +{"qid": "test788", "pid": "243636", "query": "where does the water come from to fill lake eyre", "answer": "Warburton River", "passage": "\"Lake Eyre\"\nfrom the Warburton River. In late 2015, water began flowing into Lake Eyre following heavy rain in the north-east of the state. The Lake Eyre Yacht Club is a dedicated group of sailors who sail on the lake's floods, including recent trips in 1997, 2000, 2001, 2004, 2007 and 2009. A number of trailer sailers sailed on Kati Thanda–Lake Eyre in 1975, 1976, and 1984 when the flood depth reached . In July 2010 The Yacht Club held its first regatta since 1976 and its first on Lake Killamperpunna, a freshwater lake on Cooper Creek. The Cooper had reached Kati"} +{"qid": "test789", "pid": "2105264", "query": "who is the founder of google and when was it founded", "answer": "1998", "passage": "\"Andy Bechtolsheim\"\nwith two Sun colleagues: Bill Joy and Roy Sardiña. HighBAR's investments include Brocade, Tasmania Network Systems, Brightmail, and Regroup. Bechtolsheim and Cheriton were two of the first investors in Google, investing US$100,000 each in September 1998. Bechtolsheim wrote the check to \"\"Google Inc\"\" prior to the company even being founded. Claims that Bechtolsheim coined the name \"\"Google\"\" is untrue. However, he did motivate the founders to officially organize the company under that name. When he gave the check to Larry Page and Sergey Brin, Google's founders, they had not actually yet even been legally incorporated. As a result of investments"} +{"qid": "test789", "pid": "713145", "query": "who is the founder of google and when was it founded", "answer": "Sergey Brin", "passage": "\"Larry Page\"\nlabelled google defined his absence. His plans for a censored Chinese search engine called dragonfly upset some USA senators. He has refused to discuss his China search plans and did not even reveal his plans to google co-founder Sergey Brin. Google is coming under intense scrutiny for anti trust behaviour. Larry Page Lawrence Edward Page (born March 26, 1973) is an American computer scientist and Internet entrepreneur who co-founded Google with Sergey Brin. Page is the chief executive officer of Alphabet Inc. (Google's parent company). After stepping aside as Google CEO in August 2001, in favor of Eric Schmidt, he"} +{"qid": "test789", "pid": "2333855", "query": "who is the founder of google and when was it founded", "answer": "1998", "passage": "\"Google (verb)\"\nverb, was on July 8, 1998, by Google co-founder Larry Page himself, who wrote on a mailing list: \"\"Have fun and keep googling!\"\". Its earliest known use (as a transitive verb) on American television was in the \"\"Help\"\" episode of \"\"Buffy the Vampire Slayer\"\" (October 15, 2002), when Willow asked Buffy, \"\"Have you googled her yet?\"\" On February 23, 2003, Google sent a cease and desist letter to Paul McFedries, creator of Word Spy, a website that tracks neologisms. In an article in the \"\"Washington Post\"\", Frank Ahrens discussed the letter he received from a Google lawyer that demonstrated \"\"appropriate\"\""} +{"qid": "test789", "pid": "6489132", "query": "who is the founder of google and when was it founded", "answer": "Larry Page", "passage": "\"Google Books\"\nthe original page numbers. However, [[Tim Parks]], writing in \"\"[[The New York Review of Books]]\"\" in 2014, noted that Google had stopped providing page numbers for many recent publications (likely the ones acquired through the Partner Program) \"\"presumably in alliance with the publishers, in order to force those of us who need to prepare footnotes to buy paper editions.\"\" The project began in 2002 under the codename Project Ocean. Google co-founder [[Larry Page]] had always had an interest in digitizing books. When he and [[Marissa Mayer]] began experimenting with [[book scanning]] in 2002, it took 40 minutes for them to"} +{"qid": "test789", "pid": "18275440", "query": "who is the founder of google and when was it founded", "answer": "Sergey Brin", "passage": "Verily\nVerily Verily (formerly Google Life Sciences) is Alphabet Inc.'s research organization devoted to the study of life sciences. The organization was formerly a division of Google X, until 10 August 2015 when Sergey Brin announced that the organization would become an independent subsidiary of Alphabet Inc. This restructuring process was completed on October 2, 2015. On December 7, 2015, Google Life Sciences was renamed Verily. As of July 2014, members of the research team include Andrew Conrad, founder of LabCorp's National Genetics Institute; Vik Bajaj, an expert in nuclear magnetic resonance; Marija Pavlovic, who studies the effect of radiation on"} +{"qid": "test789", "pid": "17079065", "query": "who is the founder of google and when was it founded", "answer": "Larry Page", "passage": "OKR\nas a \"\"management methodology that helps to ensure that the company focuses efforts on the same important issues throughout the organization.\"\" Larry Page, the CEO of Alphabet and co-founder of Google, credited OKRs within the foreword to Doerr's book: \"\"OKRs have helped lead us to 10x growth, many times over. They’ve helped make our crazily bold mission of 'organizing the world’s information' perhaps even achievable. They’ve kept me and the rest of the company on time and on track when it mattered the most.\"\" Since becoming popular at Google OKRs have found favour with several other similar tech start-up organisations"} +{"qid": "test789", "pid": "3946683", "query": "who is the founder of google and when was it founded", "answer": "Larry Page", "passage": "Google\n2011, \"\"The Globe and Mail\"\" reported that Google bid $900 million for 6000 Nortel Networks patents. On August 15, 2011, Google made its largest-ever acquisition to date when it announced that it would acquire Motorola Mobility for $12.5 billion subject to approval from regulators in the United States and Europe. In a post on Google's blog, Google Chief Executive and co-founder Larry Page revealed that the acquisition was a strategic move to strengthen Google's patent portfolio. The company's Android operating system has come under fire in an industry-wide patent battle, as Apple and Microsoft have sued Android device makers such"} +{"qid": "test789", "pid": "17559028", "query": "who is the founder of google and when was it founded", "answer": "Larry Page", "passage": "\"Calico (company)\"\nCalico (company) Calico LLC is an American research and development biotech company founded on September 18, 2013 by Bill Maris and backed by Google with the goal of combating aging and associated diseases. In Google's 2013 Founders' Letter, Larry Page described Calico as a company focused on \"\"health, well-being, and longevity\"\". The company's name is an acronym for \"\"California Life Company\"\". In 2015, Google restructured into Alphabet Inc., making Calico a subsidiary of the new company along with Google and others. As of 2018, Calico has not developed any known drugs or biotechnology products. In September 2014, it was announced"} +{"qid": "test789", "pid": "6254994", "query": "who is the founder of google and when was it founded", "answer": "Sergey Brin", "passage": "\"Google Summer of Code\"\nGoogle Summer of Code The Google Summer of Code, often abbreviated to GSoC, is an international annual program, first held from May to August 2005, in which Google awards stipends, which depends on the purchasing power parity of the country the student's university belongs to, to all students who successfully complete a requested free and open-source software coding project during the summer. The program is open to university students aged 18 or over. The idea for the Summer of Code came directly from Google's founders, Sergey Brin and Larry Page. From 2007 until 2009 Leslie Hawthorn, who has been involved"} +{"qid": "test789", "pid": "3070706", "query": "who is the founder of google and when was it founded", "answer": "Sergey Brin", "passage": "\"Google Toolbar\"\nhelp the Folding@home distributed computing project, which studies disease-relevant protein folding and other molecular dynamics. It was founded in March 2002 by Google co-founder Sergey Brin. Functionally, it downloaded a small packet of work, performed calculations on it, and uploaded it back to Stanford University. Although it was limited in functionality and scope, it increased Folding@home's participation from 10,000 up to about 30,000 active CPUs. The program ended in October 2005 in favor of the project's official clients, and is no longer available for the Toolbar. Google Toolbar Google Toolbar is a web browser toolbar for Internet Explorer, developed by"} +{"qid": "test79", "pid": "8395351", "query": "when do primary ossification centers appear in an embryo", "answer": "prenatal development", "passage": "\"Ossification center\"\nof the same row also becomes calcified, and transverse bars of calcified substance stretch across from one calcareous column to another. Thus there are longitudinal groups of the cartilage cells enclosed in oblong cavities, the walls of which are formed of calcified matrix which cuts off all nutrition from the cells; the cells, in consequence, atrophy, leaving spaces called the primary areolæ. There are two types of ossification centers – primary and secondary. A primary ossification center is the first area of a bone to start ossifying. It usually appears during prenatal development in the central part of each developing"} +{"qid": "test790", "pid": "10363967", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Dominican Day Parade\"\nleadership of General Gregorio Luperon, the war was ultimately won from Spain. In 1844, the Dominican Republic secured its independence from Haiti and became a sovereign state until 1861. Under the leadership of General Pedro Santana, segments of the Dominican population sought to annex the Republic back to Spain and did so during March 18, 1861. On August 16, 1863, the start of the war for the Restoration of the Dominican Republic under the command of General Luperon. The Dominican Republic originally declared its independence from Spain on December 1, 1821. Ultimately, the Dominican Republic was re-established, free from Spain,"} +{"qid": "test790", "pid": "20115790", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Colorism in the Caribbean\"\ninto preference for lighter skin. Ritualistic skin bleaching to lighten one’s skin, brown paper bag tests to verify one's skin tone, and degradation of darker-complected Haitians as ugly are contemporary manifestations of colorism in Haiti. After declaring its independence from Spanish rule in 1821, the Dominican Republic was overtaken by Haitian rule in 1822. The Dominican Republic did not achieve independence from Haiti until after their victory in the Dominican War of Independence in 1844. However, the country fell back under Spanish rule until it reclaimed its sovereignty after the Dominican War of Restoration of 1865. As the Dominican Republic"} +{"qid": "test790", "pid": "4138145", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Dominican Navy\"\nDominican Navy The Navy of the Dominican Republic or Armada de Republica Dominicana (ARD), is one of the three branches of the Military of the Dominican Republic, together with the Army and the Air Force. After the Dominican Republic gained its independence from Haiti on February 27, 1844, there was a need to create a naval fleet. Three schooners were commissioned for this, (flagship), \"\"María Chica\"\" and \"\"Leonor\"\". These were the original three Dominican vessels which were incorporated in the newly created Dominican Navy as authorized by the Junta Central Gubernativa with the Naval Act of 1844 on April 23,"} +{"qid": "test790", "pid": "20115791", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Colorism in the Caribbean\"\nis the only country in the Caribbean that attained its independence from Haiti, a \"\"black country,\"\" the country and its leaders grew a disdain and disowned anything associated with Haiti. Dominican dictator, Rafael Trujillo, sought to establish a more \"\"European\"\" identity for the country by outlawing the practice of \"\"African religious and cultural rites.\"\" In 1937, Trujillo ordered the massacre of 20,000 Haitians residing in the Dominican border. His successor, Joaquín Balaguer, who gained power in 1966, maintained that the Dominican Republic was a \"\"Caucasian Western Nation,\"\" despite the predominance of black and mixed race peoples in the country’s population"} +{"qid": "test790", "pid": "12479562", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Spanish occupation of the Dominican Republic\"\nSpanish occupation of the Dominican Republic In 1861, Dominican general Pedro Santana suggested retaking control of the Dominican Republic to queen Isabella II of Spain, after a period of 17 years of Dominican sovereignty. Newly independent Dominican Republic was economically recovering from the recently ended Dominican War of Independence (1844–1856), when the Republic won its independence against Haiti. Spanish crown and authorities, which scorned and rejected the peace treaties signed after the dismantling of some of its colonies in the Spanish West Indies some 50 years prior, welcomed his proposal and set to reestablish the colony. The end of the"} +{"qid": "test790", "pid": "407898", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "Americas\n1800s. Between 1811 and 1825, Paraguay, Argentina, Chile, Gran Colombia, the United Provinces of Central America, Mexico, Brazil, Peru, and Bolivia gained independence from Spain and Portugal in armed revolutions. After the Dominican Republic won independence from Haiti, it was re-annexed by Spain in 1861, but reclaimed its independence in 1865 at the conclusion of the Dominican Restoration War. The last violent episode of decolonization was the Cuban War of Independence which became the Spanish–American War, which resulted in the independence of Cuba in 1898, and the transfer of sovereignty over Puerto Rico from Spain to the United States. Peaceful"} +{"qid": "test790", "pid": "2737726", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Culture of the Dominican Republic\"\nand merengue are the most common. Another musical event takes place in October during Columbus Day Weekend: the Dominican Republic Jazz Festival. Concerts are held in Puerto Plata, Sosua, and Cabarete, and feature some of the country's top jazz musicians and bands. Other festivals include the Festivales del Santo Cristo de Bayaguana on New Years Day. Events leading up to Mass include a parade, music, and dance. Each January the Dominican Republic honors Juan Pablo Duarte with gun salutes in Santo Domingo and numerous carnivals throughout the country. Duarte is celebrated as the man who gained independence from Haiti for"} +{"qid": "test790", "pid": "12479565", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Spanish occupation of the Dominican Republic\"\nkilled or wounded in action. The 12,000 pro-Spanish southern forces recruited by Santana had also suffered about 10,000 casualties. The fatal losses among the Cibao-based nationalist armies were estimated at 4,000. Spanish occupation of the Dominican Republic In 1861, Dominican general Pedro Santana suggested retaking control of the Dominican Republic to queen Isabella II of Spain, after a period of 17 years of Dominican sovereignty. Newly independent Dominican Republic was economically recovering from the recently ended Dominican War of Independence (1844–1856), when the Republic won its independence against Haiti. Spanish crown and authorities, which scorned and rejected the peace treaties"} +{"qid": "test790", "pid": "13317078", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Territorial evolution of the Caribbean\"\nTrinitaria, were decisive in the fight for independence. Duarte and they are the three Founding Fathers of the Dominican Republic. On February 27, 1844, the \"\"Trinitarios\"\" (Trinitarians), declared the independence from Haiti. They were backed by Pedro Santana, a wealthy cattle rancher from El Seibo, who became general of the army of the nascent Republic. The Dominican Republic's first Constitution was adopted on November 6, 1844, and was modeled after the United States Constitution. Yucatán renounced the government, declaring independence effective 1 January 1846. When the Mexican–American War broke out, Yucatán declared its neutrality. After the end of the Mexican–American"} +{"qid": "test790", "pid": "10916015", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Dominican Restoration War\"\nDominican Restoration War The Dominican Restoration War was a guerrilla war between 1863 and 1865 in the Dominican Republic between nationalists and Spain, who had recolonized the country 17 years after its independence. The war against the Spaniards ended in July 1865 with Dominican independence restored but with the country devastated and disorganized, and most of the peasantry in arms. General Pedro Santana had wrested the presidency from Buenaventura Báez, who had bankrupted the nation's treasury at great profit to himself. Faced with an economic crisis as well as the possibility of renewed attack from Haiti, Santana asked Spain to"} +{"qid": "test790", "pid": "7033614", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Franjul (family)\"\nFamily's origins. Some have recently argued that the phonetics of the surname is one of Arab descent, which implies the family is one of Moorish descent. The Moors were the medieval Muslim inhabitants of al-Andalus (the Iberian Peninsula including the present day Spain and Portugal) and the Maghreb, whose culture is often also called \"\"Moorish\"\". The first Dominican-born member of the family was Francisco Fanjul, whose father became a naturalized Dominican citizen after the Dominican Republic gained its independence from Haiti in 1844. It was then when, because of a misunderstanding in pronunciation, the family name was mistakenly changed from"} +{"qid": "test790", "pid": "18050132", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Episcopal Diocese of the Dominican Republic\"\nof the Independent Haitian Episcopal Church. The American Episcopal Church began missionary work in the Dominican Republic when the country was occupied by the United States Marine Corps. William Wyllie, who arrived in 1918, and Archibald Beer, who arrived in 1920, were the first missionaries. The bishops of Puerto Rico and Haiti supervised the mission territory from 1918 to 1960. The Missionary District of the Dominican Republic was established by the General Convention in 1940. Paul Axtell Kellogg became the first resident Bishop of the Dominican Republic in 1960. The Dominican Republic became a missionary diocese in 1970, and it"} +{"qid": "test790", "pid": "105424", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Dominican Republic\"\nconsidered the three Founding Fathers of the Dominican Republic. The \"\"Trinitarios\"\" took advantage of a Haitian rebellion against the dictator Jean-Pierre Boyer. They rose up on January 27, 1843, ostensibly in support of the Haitian Charles Hérard who was challenging Boyer for the control of Haiti. However, the movement soon discarded its pretext of support for Hérard and now championed Dominican independence. After overthrowing Boyer, Hérard executed some Dominicans, and threw many others into prison; Duarte escaped. After subduing the Dominicans, Hérard, a mulatto, faced a rebellion by blacks in Port-au-Prince. Haiti had formed two regiments composed of Dominicans from"} +{"qid": "test790", "pid": "618997", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"History of the Caribbean\"\ntwo-thirds of Hispaniola were conquered by Haitian forces in 1821. In 1844, the newly formed Dominican Republic declared its independence from Haiti. The nations bordering the Caribbean in Central America gained independence with the 1821 establishment of the First Mexican Empire—which at that time included the modern states of Mexico, Guatemala, El Salvador, Honduras, Nicaragua, and Costa Rica. The nations bordering the Caribbean in South America also gained independence from Spain in 1821 with the establishment of Gran Colombia—which comprised the modern states of Venezuela, Colombia, Ecuador, and Panama. Cuba and Puerto Rico remained as Spanish colonies until the Spanish–American"} +{"qid": "test790", "pid": "4216937", "query": "who did the dominican republic gain its independence from", "answer": "Haiti", "passage": "\"Dominican peso\"\nDominican peso The Dominican peso is the currency of the Dominican Republic (). Its symbol is \"\"$\"\", with \"\"RD$\"\" used when distinction from other pesos (or dollars) is required; its ISO 4217 code is \"\"DOP\"\". Each peso is divided into 100 \"\"centavos\"\" (\"\"cents\"\"), for which the ¢ symbol is used. It is the only currency that is legal tender in the Dominican Republic for all monetary transactions, whether public or private. The first Dominican peso was introduced with the country's independence from Haiti in 1844. It replaced the Haitian gourde at par and was divided into 8 \"\"reales\"\". The Dominican"} +{"qid": "test791", "pid": "18306292", "query": "how did early humans make use of stones during the prehistoric period", "answer": "hunt", "passage": "\"Niumatou Site\"\nNiumatou Site The Niumatou Site () is an archaeological site during the mid Neolithic period in Qingshui District, Taichung, Taiwan. It is the oldest archaeological site in central Taiwan. The site has been designated as a historical relic by then Taichung County Government. Civilizations around the area started around 4,000 years ago when prehistoric people lived within the area during the Neolithic age. They knew how to use stone tools and potteries. Because of the large numbers of stone hoes were unearthed, archaeologists think that those prehistoric people probably relied largely on farming for food. However, they also went hunting"} +{"qid": "test791", "pid": "3075158", "query": "how did early humans make use of stones during the prehistoric period", "answer": "hunt", "passage": "Kathu\nuse wear, is taken to indicate that human ancestors used stone-tipped weapons for hunting 200 000 years earlier than previously thought. Wilkins is quoted as saying that the find does more than simply extend the prehistory of stone-tipped spears – it puts those first spears firmly in the hands of \"\"Homo heidelbergensis\"\". \"\"Modern foragers use such tools to take down large game as part of cooperative, strategic hunts. Perhaps our ancestor did so too.\"\" Kathu Townlands, one of the richest early prehistoric archaeological sites at Kathu, has produced tens of thousands of Earlier Stone Age artifacts, including hand axes and"} +{"qid": "test791", "pid": "13925533", "query": "how did early humans make use of stones during the prehistoric period", "answer": "hunt", "passage": "\"Archaeology of Azerbaijan\"\nduring this period. Guruchay culture is an archaeological culture in the territory of Azerbaijan. Prehistoric humans collected stones from Guruchay valley and brought them to the cave for preparing the tools. At the same time, Azokh humans were engaged with hunting in the Guruchay valley. The Guruchay valley had all the conditions for the living of prehistoric humans. Therefore, remains of the new archaeological culture discovered in the 7-10th layers of the Azykh Cave were named as a Guruchay culture. During the complex archaeological digs, several developed stages of the Guruchay culture have been identified. The preparation of tools was"} +{"qid": "test791", "pid": "2008312", "query": "how did early humans make use of stones during the prehistoric period", "answer": "hunt", "passage": "\"Prehistoric North Africa\"\nperiod longer. Mesolithic hunter-gatherers are gradually replaced by pastoralists (nomads) by the early 3rd millennium BC. Some Phoenician and Greek colonies were established along the Mediterranean coast during the 7th century BC. Prehistoric North Africa The Prehistory of North Africa spans the period of earliest human presence in the region to gradual onset of historicity in the Maghreb during classical antiquity. Early anatomically modern humans are known to have been present at Jebel Irhoud, in what is now Morocco, from about 300,000 years ago. The Nile valley (Ancient Egypt) participated in the development of the Old World Neolithic, Bronze Age"} +{"qid": "test792", "pid": "9047483", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"I Dream of Jeanie (film)\"\nI Dream of Jeanie (film) I Dream of Jeanie is a 1952 American historical musical film based on the songs and life of Stephen Foster who wrote the song \"\"Jeanie with the Light Brown Hair\"\" from which the title is taken. The film was directed by Allan Dwan for Republic Pictures and was shot in Trucolor. The film is also known as I Dream of Jeanie (with the Light Brown Hair). In 1849 the song \"\"Oh, Susannah\"\" is a nationwide hit—but bookkeeper Stephen Foster has given his work to several music houses without charge and without credit. His refined true"} +{"qid": "test792", "pid": "6904434", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Jeanie with the Light Brown Hair\"\nJeanie with the Light Brown Hair \"\"Jeanie with the Light Brown Hair\"\" is a parlor song by Stephen Foster (1826–1864). It was published by Firth, Pond & Co. of New York in 1854. Foster wrote the song with his estranged wife Jane McDowell in mind. The lyrics allude to a permanent separation. \"\"Jeanie\"\" was a notorious beneficiary of the ASCAP boycott of 1941, a dispute caused by ASCAP increasing its licensing fees. During this period, radio broadcasters played only public domain music or songs licensed by ASCAP rival BMI. According to a 1941 article in \"\"Time\"\" magazine, \"\"So often had"} +{"qid": "test792", "pid": "9047484", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"I Dream of Jeanie (film)\"\nlove Inez McDowell, a classically trained singer, despises popular music, especially Stephen's songs. Foster's world changes when Edwin P. Christy sets him straight on the music business and launches his career as an author of the songs the Christy Minstrels use in their shows. I Dream of Jeanie (film) I Dream of Jeanie is a 1952 American historical musical film based on the songs and life of Stephen Foster who wrote the song \"\"Jeanie with the Light Brown Hair\"\" from which the title is taken. The film was directed by Allan Dwan for Republic Pictures and was shot in Trucolor."} +{"qid": "test792", "pid": "19678454", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Stephen Foster's sketchbook\"\nand initials. In addition to the digital version, a photostat of the sketchbook was published by the staff of the Foster Hall Collection in 1933. This full transcript of the book was created by Deane L. Root and edited by Kathryn Miller Haines in June 2000. The Transcript field within the database contains the text and is searchable. Foliation (recto and verso) numbers were supplied in 1986 using archival techniques. The draft and original text for Foster's song \"\"Jeanie with the Light Brown Hair\"\" is contained in the sketchbook. In addition, Foster records his meeting with Charles Dickens while Dickens"} +{"qid": "test792", "pid": "7618269", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Jeanie with the Light Brown Hair (TV series)\"\nlearning the importance of life, she decides to devote her life to helping many people suffering from illness. The series is a love story about the relationship between Steven and Jeanie - clearly a reference to Stephen Foster and his wife Jeanie. French Title: Le Rêve de Jeannie (\"\"The Dream of Jeannie\"\") The series aired in late 1996 (23 December) on French TV channel TF1 under Club Dorothée, a French television show with programming primarily focused on the youth. Only 38 episodes out of the total 52 were aired on television, leaving episodes 39-52 unreleased on television on France. The"} +{"qid": "test792", "pid": "1500087", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Stephen Foster\"\nStephen Foster Stephen Collins Foster (July 4, 1826January 13, 1864), known as \"\"the father of American music\"\", was an American songwriter known primarily for his parlor and minstrel music. Foster wrote over 200 songs; among his best-known are \"\"Oh! Susanna\"\", \"\"Hard Times Come Again No More\"\", \"\"Camptown Races\"\", \"\"Old Folks at Home\"\" (\"\"Swanee River\"\"), \"\"My Old Kentucky Home\"\", \"\"Jeanie with the Light Brown Hair\"\", \"\"Old Black Joe\"\", and \"\"Beautiful Dreamer\"\". Many of his compositions remain popular more than 150 years after he wrote them. His compositions are thought to be autobiographical. He has been identified as \"\"the most famous songwriter"} +{"qid": "test792", "pid": "19164683", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Jane McDowell Foster Wiley\"\nJane McDowell Foster Wiley Jane Denny McDowell Foster Wiley was born December 10, 1829. She died at the age of seventy-three in a fire on January 17, 1903 in Pittsburgh, Pennsylvania. She is best known for being the wife of Stephen Foster and being the inspiration for Foster's song Jeanie with the Light Brown Hair. Her archives are located in the University of Pittsburgh. Jane's father, Andrew Nathan McDowell, was a well-known physician in Pittsburgh. He encouraged the first black medical student from Western Pennsylvania to apply to and attend Harvard Medical School. Dr. McDowell wrote a letter of recommendation"} +{"qid": "test792", "pid": "15793279", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"John Woods House (Pittsburgh, Pennsylvania)\"\nservant girl who worked at the Woods house. The song was composed on Rachel Keller Woods' piano, on which Foster is said to have written other classics (including \"\"Jeanie with the Light Brown Hair\"\"), and the instrument is currently housed at the Stephen Foster Memorial in Pittsburgh. This house is currently owned by the Urban Redevelopment Authority (URA). It may be developed into a Scottish pub. John Woods House (Pittsburgh, Pennsylvania) The John Woods House at 4604 Monongahela Street in the Hazelwood neighborhood of Pittsburgh, Pennsylvania, is a vernacular stone house that was built in 1792. It was added to"} +{"qid": "test792", "pid": "10493909", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Amanda of Honeymoon Hill\"\n(as Mr. Lenord), later a familiar radio voice as friendly undertaker Digger O'Dell on \"\"The Life of Riley\"\". Organist Ann Leaf supplied the program's background music, and the opening theme was Stephen Foster's 1854 tune, \"\"Jeanie with the Light Brown Hair.\"\" In addition to Frank Gallop and George Ansbro, other announcers were Howard Claney and Hugh Conover. Anne Hummert unintentionally scripted a prominent double meaning into the show's opening, and this amused many since it was heard for years without change, as described by George Ansbro in his book, \"\"I Have a Lady in the Balcony\"\": The program was sponsored"} +{"qid": "test792", "pid": "8697952", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"The Old Maid (1939 film)\"\nfilm's soundtrack includes \"\"When Johnny Comes Marching Home\"\" (anachronistically) by Patrick Gilmore, \"\"The Battle Hymn of the Republic\"\" by William Steffe and Julia Ward Howe, \"\"(I Wish I Was in) Dixie's Land\"\" by Daniel Decatur Emmett, \"\"Oh My Darling, Clementine\"\" by Percy Montrose, and \"\"Jeanie with the Light Brown Hair\"\" by Stephen Foster. Frank S. Nugent of \"\"The New York Times\"\" observed, \"\"It probably is not a good motion picture, in the strict cinematic sense, professing as it does such strict allegiance to its theatrical parent; unquestionably it is as dated as the Victorian morals code which scourges its heroine"} +{"qid": "test792", "pid": "19015839", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Bing Crosby – Stephen Foster\"\nsets, some featuring freshly recorded material and others utilizing Crosby's back catalogue. Ten of these sets were released in 1946, nine in 1947 and nine more in 1948. Most of these 78rpm albums were reissued as 10\"\" vinyl LP's in subsequent years. Billboard liked the album saying: \"\"It was expected that sooner or later Bing Crosby would make an album of Stephen Foster tunes. Crosby does full justice to the popular composer's music.\"\" The songs were featured on a 4-disc, 78 rpm album set, Decca Album No. A-440. Disc 1 (18801): \"\"Jeanie with the Light Brown Hair\"\" / \"\"Nell and"} +{"qid": "test792", "pid": "1500093", "query": "who wrote the text for jeanie with the light brown hair", "answer": "Stephen Foster", "passage": "\"Stephen Foster\"\nThen he returned to Pennsylvania and signed a contract with the Christy Minstrels. It was during this period that Foster would write most of his best-known songs: \"\"Camptown Races\"\" (1850), \"\"Nelly Bly\"\" (1850), \"\"Ring de Banjo\"\" (1851), \"\"Old Folks at Home\"\" (known also as \"\"Swanee River\"\", 1851), \"\"My Old Kentucky Home\"\" (1853), \"\"Old Dog Tray\"\" (1853), and \"\"Jeanie with the Light Brown Hair\"\" (1854), written for his wife Jane Denny McDowell. Many of Foster's songs were of the blackface minstrel show tradition popular at the time. Foster sought, in his own words, to \"\"build up taste ... among refined people"} +{"qid": "test795", "pid": "4202886", "query": "where does the bob and tom show broadcast from", "answer": "Indianapolis, Indiana", "passage": "\"Bob Kevoian\"\nBob Kevoian Robert James \"\"Bob\"\" Kevoian (born December 2, 1950) is a retired American radio host of the nationally syndicated radio show \"\"The Bob & Tom Show\"\" together with his partner, Tom Griswold. The show is broadcast from WFBQ's studios in Indianapolis, Indiana. Kevoian is a 1973 graduate of California State University, Long Beach. Kevoian started a masters program in 1974, but gave it up when he started working as an intern for a local radio station in Los Angeles. Kevoian was awarded an honorary doctorate in Communications from Central Michigan University where he gave the commencement speech in 2003."} +{"qid": "test795", "pid": "8309695", "query": "where does the bob and tom show broadcast from", "answer": "WFBQ in Indianapolis, Indiana", "passage": "\"The Bob & Tom Show\"\nThe Bob & Tom Show The Bob & Tom Show is a syndicated US radio program established by Bob Kevoian and Tom Griswold at radio station WFBQ in Indianapolis, Indiana, March 7, 1983, and syndicated nationally since January 6, 1995. Originally syndicated by Premiere Networks, the show moved to Cumulus Media Networks (now Westwood One) at the beginning of 2014. The program enjoys extensive popularity and has frequently received recognition by the National Association of Broadcasters as an exemplar in American radio. \"\"Focusing on comedy and talk, \"\"The Bob & Tom Show\"\" is a mash-up of news, sports, conversation, and"} +{"qid": "test795", "pid": "4202932", "query": "where does the bob and tom show broadcast from", "answer": "Indianapolis, Indiana", "passage": "\"Tom Griswold\"\nTom Griswold Thomas Bruce \"\"Tom\"\" Griswold (born April 22, 1953) co-hosts the radio show \"\"The Bob & Tom Show\"\" together with Chick McGee, Kristi Lee, and Josh Arnold. Co-host Bob Kevoian retired at the end of 2015. This comedy-based early morning program is among the highest rated in American radio and has been nationally syndicated since 1995. The show is broadcast from WFBQ's studios in Indianapolis, Indiana. He worked in radio in WETO in DeLand, Florida and WMBN and WJML in Petoskey, Michigan. Griswold met Bob Kevoian in Petoskey, Michigan. After Michigan he would go to WFBQ Radio in Indianapolis"} +{"qid": "test795", "pid": "4202893", "query": "where does the bob and tom show broadcast from", "answer": "Indianapolis, Indiana", "passage": "\"Bob Kevoian\"\nKevoian also likes to collect \"\"large\"\" ordinary items, such as coffee cups or safety pins that are extremely large compared to their normal sizes. Kevoian likewise keeps a collection of these \"\"large\"\" items in his studio. Bob Kevoian Robert James \"\"Bob\"\" Kevoian (born December 2, 1950) is a retired American radio host of the nationally syndicated radio show \"\"The Bob & Tom Show\"\" together with his partner, Tom Griswold. The show is broadcast from WFBQ's studios in Indianapolis, Indiana. Kevoian is a 1973 graduate of California State University, Long Beach. Kevoian started a masters program in 1974, but gave it"} +{"qid": "test795", "pid": "9130473", "query": "where does the bob and tom show broadcast from", "answer": "WFBQ in Indianapolis, Indiana", "passage": "\"Bob and Tom Radio: The Comedy Tour\"\nBob and Tom Radio: The Comedy Tour Bob and Tom Radio: The Comedy Tour is a DVD made as a spin-off from \"\"The Bob & Tom Show\"\". This is a syndicated US radio program established by Bob Kevoian and Tom Griswold at radio station WFBQ in Indianapolis, Indiana, in 1983. The program is among the highest rated in American radio. The show is hosted by Bob Kevoian and Tom Griswold and its format is that of a comedy variety show. Each day, there are usually several guests on the show, including many comedians seeking a national fan base. Over the"} +{"qid": "test798", "pid": "18871291", "query": "who won the champions league final in 2016", "answer": "Real Madrid", "passage": "\"2017 UEFA Champions League Final\"\nplay-off after the two sides exchanged 1–0 away wins. The most recent meeting between the clubs had taken place in the 2014–15 UEFA Champions League semi-finals, where Juventus won 3–2 on aggregate to advance to the 2015 final. Juventus entered the final chasing their first treble of domestic league, domestic cup, and Champions League titles, bidding to become the ninth team to win it. They won the 2016–17 Coppa Italia after defeating Lazio in the final on 17 May, and clinched the 2016–17 Serie A title on 21 May. Real Madrid were chasing the double of domestic league and Champions"} +{"qid": "test798", "pid": "18221936", "query": "who won the champions league final in 2016", "answer": "Real Madrid", "passage": "\"2016 UEFA Champions League Final\"\nmedia he was happy and proud of the win, and that the team had shown character until the end. He added, \"\"We deserved to win. I feel sorry for Atlético but I feel glad for ourselves that we won the game. This is Real Madrid's competition. The \"\"undecima\"\" [\"\"eleventh\"\"]. This trophy belongs to Real Madrid, it's why it's the best club in the world.\"\" 2016 UEFA Champions League Final The 2016 UEFA Champions League Final was the final match of the 2015–16 UEFA Champions League, the 61st season of Europe's premier club football tournament organised by UEFA, and the 24th"} +{"qid": "test798", "pid": "10849689", "query": "who won the champions league final in 2016", "answer": "Real Madrid", "passage": "\"Madrid Derby\"\nclubs from the same city played in the final. Real Madrid won 4–1 after extra time, earning their tenth European Cup after having last won in 2002. They met again in the quarter-finals of the 2014–15 UEFA Champions League. The score was 0–0 at the Vicente Calderón and 1–0 in favour of Real Madrid at the Santiago Bernabéu. The two rivals met again in Milan for the 2016 Champions League Final. After a 1–1 draw, Real Madrid won 5–3 on penalties. They met each other again in the semi-finals of the 2016-2017 UEFA Champions League. Atlético were beaten 3–0 in"} +{"qid": "test798", "pid": "18871287", "query": "who won the champions league final in 2016", "answer": "Real Madrid", "passage": "\"2017 UEFA Champions League Final\"\nthe final itself. The match was a repeat of the 1998 final, making it the eighth repeated final pairing. Real Madrid won the 1998 final 1–0. The 2017 final was the first time since the two teams met in 1998 that both finalists had won either their domestic league or the Champions League the previous season. Juventus reached their ninth final after a 4–1 aggregate win against Monaco to maintain their undefeated record in this season's competition. Juventus also entered the final with the best defensive record in the 2016–17 Champions League, having conceded only thrice. Previously Juventus won finals"} +{"qid": "test798", "pid": "18871284", "query": "who won the champions league final in 2016", "answer": "Real Madrid", "passage": "\"2017 UEFA Champions League Final\"\n2017 UEFA Champions League Final The 2017 UEFA Champions League Final was the final match of the 2016–17 UEFA Champions League, the 62nd season of Europe's premier club football tournament organised by UEFA, and the 25th season since it was renamed from the European Champion Clubs' Cup to the UEFA Champions League. It was played at the Millennium Stadium in Cardiff, Wales on 3 June 2017, between Italian side Juventus and Spanish side and title holders Real Madrid, in a repeat of the 1998 final. Real Madrid won the match 4–1 to secure their 12th title in this competition. With"} +{"qid": "test799", "pid": "502481", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"Ole Einar Bjørndalen\"\nthe second time that Norway had won a title in this event, with the other being at the 2002 Winter Olympics (also anchored by Bjørndalen). With this victory he became the second most decorated Winter Olympian of all time and one of only two athletes to win 11 medals at the Winter Olympics. With his gold medal in 10 km sprint at the Sochi 2014 Winter Olympics, he tied fellow Norwegian Bjørn Dæhlie for most Winter Olympic medals, with 12 in total, before overtaking Dæhlie by winning his second gold of the Games as part of the Norwegian mixed relay"} +{"qid": "test799", "pid": "7121071", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"Canada at the Winter Olympics\"\nCanada at the Winter Olympics Canada (IOC country code CAN) has competed at every Winter Olympic Games, and has won at least one medal each time. By total medals, the country's best performance was in the 2018 Winter Olympic Games where Canadian athletes won 29 medals. Canada set a new record for most gold medals won by a country in a single Winter Olympics with 14 at the 2010 Winter Olympics in Vancouver, Canada. This achievement surpassed the previous record of 13 gold medals held by the Soviet Union (1976) and Norway (2002). Both Germany and Norway matched the record"} +{"qid": "test799", "pid": "6591595", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"Speed skating at the 1994 Winter Olympics\"\nSpeed skating at the 1994 Winter Olympics Speed skating at the 1994 Winter Olympics, was held from 13 February to 25 February. Ten events were contested at Hamar Olympic Hall. Norway led the medal table in speed skating on home ice, led by Johann Olav Koss, who won three gold medals. Bonnie Blair was the most successful woman, with a pair of gold medals. Germany won the most total medals, with six, though only a single gold. Belarus and Russia won their first medals in speed skating, with both nations competing in the Olympics for the first time. Four world"} +{"qid": "test799", "pid": "8933110", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"Norway at the 1952 Winter Olympics\"\nNorway at the 1952 Winter Olympics Norway was the host nation for the 1952 Winter Olympics in Oslo. By winning 7 gold medals, Norway had the most golds at these games. This would be the last time a host country would win the most gold medals at the Winter Olympics until Canada won the most gold medals at the 2010 Winter Olympics in Vancouver. The tournament was run in a round-robin format with nine teams participating. Events: The cross-country skiing part of this event was combined with the main medal event, meaning that athletes competing here were skiing for two"} +{"qid": "test799", "pid": "7233624", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"Norway at the 2002 Winter Olympics\"\nteams advanced to semi-finals. Semi-final Gold medal game Contestants Top four teams advanced to semi-finals. Contestants Men's sprint Events: Men's individual Events: Men's Team Four participants per team. Events: Norway at the 2002 Winter Olympics Norway competed at the 2002 Winter Olympics in Salt Lake City, United States. The nation enjoyed its best ever results in gold medals, most notably in the biathlon events, when Ole Einar Bjørndalen swept all four gold medals. With 13 gold medals, Norway tied the Soviet Union at the 1976 Winter Olympics for most gold medals a country won at a Winter Olympics. However, Canada"} +{"qid": "test799", "pid": "9688218", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"2000s in sports\"\n2000s in sports Five Olympic Games were held in this decade 2000 XXVII Summer Olympics - Sydney, Australia (most gold medal wins USA) 2002 XIX Winter Olympics - Salt Lake City, USA (most gold medal wins Norway) 2004 XXVIII Summer Olympics - Athens, Greece (most gold medal wins USA) 2006 XX Winter Olympics - Turin, Italy (most gold medal wins Germany) 2008 XXIX Summer Olympics - Beijing, China (most gold medal wins China) USA basketball teams dominated this era, especially in the Olympics. However USA female basketball teams were better than men scoring all golds on Olympic events during this"} +{"qid": "test799", "pid": "7233623", "query": "who has the most gold medals in the winter olympics of all time", "answer": "Norway", "passage": "\"Norway at the 2002 Winter Olympics\"\nNorway at the 2002 Winter Olympics Norway competed at the 2002 Winter Olympics in Salt Lake City, United States. The nation enjoyed its best ever results in gold medals, most notably in the biathlon events, when Ole Einar Bjørndalen swept all four gold medals. With 13 gold medals, Norway tied the Soviet Union at the 1976 Winter Olympics for most gold medals a country won at a Winter Olympics. However, Canada broke this record with 14 when they hosted the Vancouver games. Men's combined Sprint Pursuit 4 × 10 km relay Sprint Pursuit 4 × 5 km relay Top four"} +{"qid": "test8", "pid": "9527732", "query": "when is the last time the philadelphia won the superbowl", "answer": "2017", "passage": "\"25 ta Life\"\nThey performed at This is Hardcore fest in Philadelphia on July 29, 2017. They also announced on their Facebook page that they are working on new material. In March 2018, 25 ta Life released 3 new songs (Hunting Season EP) online. They also went on a short European tour which included headlining the sold out Superbowl of Hardcore in Rennes, France. in 2018 Fred Mesk announced that he was leaving the band to go solo in a project called \"\" Mista Bojangles\"\" described as Death Metal Meets Oi he states that a full length LP is due in the near"} +{"qid": "test80", "pid": "2014128", "query": "where does kevins family go in home alone 2", "answer": "Florida", "passage": "\"Home Alone 2: Lost in New York\"\nHome Alone 2: Lost in New York Home Alone 2: Lost in New York is a 1992 American Christmas comedy film written and produced by John Hughes and directed by Chris Columbus. It is the second film in the \"\"Home Alone\"\" series and the sequel to \"\"Home Alone\"\". Macaulay Culkin reprises his role as Kevin McCallister, while Joe Pesci and Daniel Stern reprise their roles as the Wet Bandits, now known as the Sticky Bandits. Catherine O'Hara, John Heard, Rob Schneider, Tim Curry, and Brenda Fricker are also featured. Kevin and his family decide to take a trip to Florida,"} +{"qid": "test80", "pid": "2014130", "query": "where does kevins family go in home alone 2", "answer": "Florida", "passage": "\"Home Alone 2: Lost in New York\"\nfilm is also notable for featuring a cameo from future U.S. President Donald Trump, who had owned the Plaza Hotel at the time of the film's production. A sequel, \"\"Home Alone 3\"\", followed five years later in 1997. The McCallister family is preparing to spend Christmas in Miami, gathering at Peter and Kate's home outside of Chicago. Peter and Kate's youngest son, Kevin, sees Florida as contradictory to Christmas, due to the lack of Christmas trees in Florida. Later, at a school Christmas pageant, Kevin's older brother Buzz humiliates him, causing Kevin to retaliate and ruin the pageant. Back home,"} +{"qid": "test800", "pid": "20383650", "query": "where was the movie strangers prey at night filmed", "answer": "Covington, Kentucky", "passage": "\"The Strangers: Prey at Night\"\nIn June 2017, it was announced Martin Henderson had also joined the cast, along with other cast members. Filming began in June 2017 in Covington, Kentucky and lower Cincinnati which concluded on July 10, 2017. Bailee Madison's boyfriend Alex Lange has visited the set of the movie while the events of filming. There was once an event called \"\"The Strangers: Prey at Night Experience\"\", in which people visited. Bailee Madison did almost all of her stunts and had some minor injuries including, a broken toe along with some bruises while filming. On set, the cast explained how horrifying the set"} +{"qid": "test800", "pid": "20383640", "query": "where was the movie strangers prey at night filmed", "answer": "Covington, Kentucky", "passage": "\"The Strangers: Prey at Night\"\nit more entertaining than the original and appreciating its satire of horror films, while others noted it as inferior and called it cliché. In a secluded trailer park in Covington, Kentucky, the three masked strangers — Dollface, Pin-Up, and the Man in Mask — arrive in a truck at night to a couple's new trailer. Dollface wakes a sleeping female occupant, knocking at the front door. Dollface instantly kills her and then lies down in bed next to the woman's sleeping husband in a creepy manner. Meanwhile, Mike and his wife Cindy take a family trip with their children, Luke"} +{"qid": "test801", "pid": "17868071", "query": "what order do the captain america movies go in", "answer": "Captain America: Civil War", "passage": "\"Captain America: Civil War\"\ncontrolled because their power can be scary\"\" being applicable. Anthony Russo expanded, \"\"in a lot of ways [superhero registration] can be a political issue, and we didn't want the conflict of the movie to solely exist on that level. We wanted to figure out very personal reasons why everyone's relationship to this idea of registration is going to become complicated. That's what the relationship between Steve and Bucky allowed us to do, to get very personal in terms of why people would lean one way or the other.\"\" Executive producer Nate Moore added that \"\"it felt like it was kind"} +{"qid": "test801", "pid": "17868079", "query": "what order do the captain america movies go in", "answer": "Captain America: Civil War", "passage": "\"Captain America: Civil War\"\nthe cast, usually reserved for the \"\"Avengers\"\" films, and the fact that the film no longer felt like a Captain America-centric one, as with \"\"The Winter Soldier\"\". In response to this, Feige said, \"\"What's fun about \"\"Civil War\"\" though is, as you know from the comics, it's a very simple story. And it really has to be, to accommodate that many players. It's very much a Captain America movie and it's very much a sequel to the \"\"Winter Soldier\"\" in ways I don't think people [will expect]... It's a very simple structure that allows you to have these amazing character"} +{"qid": "test801", "pid": "17868137", "query": "what order do the captain america movies go in", "answer": "Captain America: Civil War", "passage": "\"Captain America: Civil War\"\n\"\"had a good opening twenty [minutes], but then I honestly can't remember what the movie was about.\"\" He also felt the film lacked levity, especially considering the Russo brothers' background in comedy. According to Feige, \"\"Civil War\"\" is the conclusion of the Captain America trilogy that began with \"\"The First Avenger\"\". While it is the final standalone Captain America film in Evans' contract with Marvel Studios, Evans stated in September 2015 that he was open to extending his contract past \"\"\"\" and \"\"\"\", the final films on his contract at the time. In November 2018, Joe Russo said that Evans"} +{"qid": "test801", "pid": "17868083", "query": "what order do the captain america movies go in", "answer": "Captain America: Civil War", "passage": "\"Captain America: Civil War\"\nby Jonathan M. Goldstein, one of the writers of the solo Spider-Man film, and later by \"\"Entertainment Weekly\"\" from a set visit. Jon Watts, director of \"\"Spider-Man: Homecoming\"\", was on set for the filming of Spider-Man's scenes, in order to \"\"see what they were doing with it, and that informed where we eventually took it,\"\" and provide \"\"ideas about this and that\"\", such as what Parker's wardrobe and bedroom should look like, \"\"to make sure we were all on the same page so that [\"\"Homecoming\"\"] transitions seamlessly with theirs.\"\" Anthony Russo stated that, despite Marvel telling them to have a"} +{"qid": "test802", "pid": "4976568", "query": "when was i don't like mondays released", "answer": "1979", "passage": "\"The Fine Art of Surfacing\"\nThe Fine Art of Surfacing The Fine Art of Surfacing was The Boomtown Rats' third album and contained the hit-single releases, \"\"I Don't Like Mondays\"\", \"\"Diamond Smiles\"\" and \"\"Someone's Looking at You\"\". The album peaked at No. 7 in the UK Albums Chart in 1979. \"\"I Don't Like Mondays\"\" b/w \"\"It's All the Rage\"\" was released in June 1979, and reached No. 1 in the UK Singles Chart in late July in the UK in the same year. The song refers to Brenda Ann Spencer's killing spree on Monday, 29 January 1979 in San Diego, California. Bob Geldof also went"} +{"qid": "test802", "pid": "8450287", "query": "when was i don't like mondays released", "answer": "1979", "passage": "\"I Don't Like Mondays\"\n8 concert in London, on 2 July 2005. \"\"I Don't Like Mondays\"\" was subsequently covered by Tori Amos on her 2001 album \"\"Strange Little Girls\"\" and later by G4 on their 2006 album \"\"Act Three\"\". I Don't Like Mondays \"\"I Don't Like Mondays\"\" is a song by Irish band The Boomtown Rats about the 1979 Cleveland Elementary School shooting in San Diego. The song was a number one single in the UK Singles Chart for four weeks during the summer of 1979, and ranks as the sixth biggest hit of the UK in 1979. Written by Bob Geldof, it was"} +{"qid": "test802", "pid": "8450280", "query": "when was i don't like mondays released", "answer": "1979", "passage": "\"I Don't Like Mondays\"\nI Don't Like Mondays \"\"I Don't Like Mondays\"\" is a song by Irish band The Boomtown Rats about the 1979 Cleveland Elementary School shooting in San Diego. The song was a number one single in the UK Singles Chart for four weeks during the summer of 1979, and ranks as the sixth biggest hit of the UK in 1979. Written by Bob Geldof, it was the band's second single to reach number one on the UK charts. The full length version appeared on the group's third album, \"\"The Fine Art of Surfacing\"\". It includes a reprise of the first verse,"} +{"qid": "test802", "pid": "8450281", "query": "when was i don't like mondays released", "answer": "1979", "passage": "\"I Don't Like Mondays\"\nwhich was edited for the single release. According to Geldof, he wrote the song after reading a telex report at Georgia State University's campus radio station, WRAS, on the shooting spree of 16-year-old Brenda Ann Spencer, who fired at children in a school playground at Grover Cleveland Elementary School in San Diego, California, on 29 January 1979, killing two adults and injuring eight children and one police officer. Spencer showed no remorse for her crime; her full explanation for her actions was \"\"I don't like Mondays. This livens up the day\"\". Geldof had been contacted by Steve Jobs to play"} +{"qid": "test802", "pid": "654200", "query": "when was i don't like mondays released", "answer": "1979", "passage": "Monday\nbusinesses owned by Latter-Day Saints close early on Mondays so they and their customers are able to spend more time with their families. A number of popular songs in Western culture feature Monday, often as a day of depression, anxiety, avolition, hysteria, or melancholy (mostly because of its association with the first day of the work week). For example, \"\"Monday, Monday\"\" (1966) from the Mamas & the Papas, \"\"Rainy Days and Mondays\"\" (1971) from the Carpenters, \"\"I Don't Like Mondays\"\" (1979) from the Boomtown Rats, and \"\"Manic Monday\"\" (1986) from the Bangles (written by Prince). There is a band named"} +{"qid": "test802", "pid": "1871639", "query": "when was i don't like mondays released", "answer": "1979", "passage": "\"The Boomtown Rats\"\nnumber one spot. In 1979, \"\"I Don't Like Mondays\"\", was released. This was written in response to a school shooting in California carried out by Brenda Ann Spencer, and also reached No. 1 in the UK. It was a worldwide hit, with the exception being the United States. It was the band's only song to reach the US \"\"Billboard\"\" Hot 100 and was included in the band's third album, \"\"The Fine Art of Surfacing\"\". The album also contained \"\"Diamond Smiles\"\" and their next Top 10 hit in the UK, \"\"Someone's Looking at You\"\". In 1980 \"\"Banana Republic\"\" was released, which"} +{"qid": "test803", "pid": "2616153", "query": "what does the sun represent on the uruguay flag", "answer": "the May Revolution of 1810", "passage": "\"Flag of Uruguay\"\nJoaquín Suárez. The horizontal stripes on the flag represent the nine original departments of Uruguay, based on the U.S. flag, where the stripes represent the original 13 colonies. The first flag designed in 1828 had 9 light blue stripes; this number was reduced to 4 in 1830 due to visibility problems from distance. The Sun of May represents the May Revolution of 1810; according to the historian Diego Abad de Santillán, the Sun of May is a figurative sun that represents Inti, the sun god of the Inca religion. It also appears in the Flag of Argentina and the Coat"} +{"qid": "test805", "pid": "1598488", "query": "when did beryl markham fly across the atlantic", "answer": "September 1936", "passage": "\"Beryl Markham\"\nspotting game animals from the air and signaling their locations to safaris on the ground. She also mingled with the notorious Happy Valley set. Markham is best known for her solo flight across the Atlantic, from east to west. When Markham decided to take on the Atlantic crossing, no female pilot had yet flown non-stop from Europe to New York, and no woman had made the westward flight solo, though several had died trying. Markham hoped to claim both records. On 4 September 1936, she took off from Abingdon, England. After a 20-hour flight, her Vega Gull, \"\"The Messenger\"\", suffered"} +{"qid": "test805", "pid": "4995663", "query": "when did beryl markham fly across the atlantic", "answer": "September 1936", "passage": "\"Tom Campbell Black\"\nin the mid-1930s was converted into one of the country's most exclusive sporting country clubs. Campbell Black also had a long-term affair with Beryl Markham, an aviator who lived in Kenya who had been introduced to aviation by Campbell Black. He subsequently became her flight instructor, which Markham describes in her memoir \"\"West with the Night\"\". In September 1936, Beryl Markham achieved fame by being the first solo female aviator to fly the Atlantic Ocean from East to West (from England to America), against the prevailing winds. In the same year, Tom Black had entered in an air race from"} +{"qid": "test806", "pid": "1414132", "query": "who played john clark sr on nypd blue", "answer": "Joe Spano", "passage": "\"NYPD Blue\"\nfrom years earlier involving Sipowicz and Clark's father, John Clark, Sr. (Joe Spano), an average, by-the-book detective from a low crime precinct, who is enraged that his son chose to join the 15th Precinct to work with Andy. Season nine also has the introduction of Det. Rita Ortiz (played by Jacqueline Obradors). Two other actresses were first cast in roles as young, Latina detectives who were intended to be regular cast members; one was dropped in the pre-filming process over creative differences, and Vanessa Marcil's made an appearance as Det. Carmen Olivera in the Season 9 premiere, with the possibility"} +{"qid": "test809", "pid": "13706808", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nruns into Veronica (who returned from Europe) & Reggie, and learn they are engaged. On their ride home, Archie says he believes it is wrong, but Betty thinks that he is wishing it was him who had proposed to Veronica. Archie then explains he is worried that the marriage is based on money only and will end badly, hurting both of his friends. Betty accepts his statement and they make up. As the next few months pass, Archie & Betty become two of the most popular teachers at Riverdale High, and as Betty's pregnancy advances, they start to spend less"} +{"qid": "test809", "pid": "13706788", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nthat moment takes up her position as Veronica's maid of honor. Betty brings along a “friend” of hers named Henry who works with her. Ethel states that he reminds her of Archie as Betty rushes him out the door. On the eve of the wedding, Archie and Veronica discuss their future. The big day comes and everything seems to be going as planned, with all of Riverdale attending the wedding. Before the ceremony, Archie asks Betty to take a walk with him. He tells her that she was his first friend when his family moved to Riverdale and how he"} +{"qid": "test809", "pid": "13706787", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nto get over with and move on. The residents of Riverdale are overwhelmed with shock that Archie finally chose between his two girlfriends, but also concerned with Betty's well being. Veronica calls Betty and asks her to be her maid of honor. Instead of answering, Betty simply leaves the phone on her bed. \"\"The Wedding\"\" is Part 2 in the 6 issue story arc. Archie is preparing for his upcoming nuptials with his groomsmen. Meanwhile, Veronica is treating her bridesmaids to a day at the spa. Veronica is sad that Betty Cooper is not there, but Betty shows up at"} +{"qid": "test809", "pid": "967312", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Andrews\"\nhad a dog named Spotty. Archie lives in Riverdale, where he attends Riverdale High School. Archie is a typical small-town teenager. His main crush is Veronica Lodge, but he is also fond of Betty Cooper, forming the love triangle driving many of the comic's plot lines. He has the best intentions, but often comes into conflict with Veronica's rich father, Hiram Lodge, and Riverdale High's principal, Waldo Weatherbee. As the lead singer of \"\"The Archies\"\", Archie performs with Betty and Veronica as well as his friend Reggie Mantle, who battles him for Veronica's heart, and his best friend Jughead Jones."} +{"qid": "test809", "pid": "965014", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Veronica Lodge\"\ngave Betty a candy bar containing nuts (which Betty is allergic to), so that Veronica could steal her modeling job. Veronica is often seen scheming to get Archie from Betty whenever she spots the two dating. Occasionally she is victorious, but usually Betty manages to successfully take revenge on her. Also, Archie occasionally has stood up to Veronica and stuck with Betty. Her other friends include Ethel Muggs, Midge Klump and Nancy Woods, and they all enjoy having slumber parties and shopping at the mall together. Aside from Archie, Veronica's cannon boyfriend on the CW's Riverdale, is Jughead Jones ,"} +{"qid": "test809", "pid": "13706781", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nArchie Marries Veronica/Archie Marries Betty \"\"Archie Marries Veronica/Archie Marries Betty\"\" is an American comic book story by writer Michael Uslan and artists Stan Goldberg and Bob Smith that was originally presented in \"\"Archie\"\" # 600–606. In issues # 600–602, the story features a futuristic look into the life of Riverdale teen Archie Andrews in the years that follow his college graduation when Archie makes his ultimate decision to marry Veronica Lodge instead of Betty Cooper. In Issues # 603–605, the story switches and Archie proposes marriage to Betty instead of to Veronica. Issue #606 serves as the epilogue to the"} +{"qid": "test809", "pid": "19217700", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie (comic book)\"\na love letter in the mail and Betty and Veronica both swear it wasn't from them. The story was continued in Betty #19, Betty and Veronica #82, and concluded with Veronica #39. In issues # 600–602, the story features a futuristic look into the life of Riverdale teen Archie Andrews in the years that follow his college graduation when Archie makes his ultimate decision to marry spoiled rich girl Veronica Lodge instead of sweet girl next door Betty Cooper. In Issues # 603–605, the story switches and Archie proposes marriage to Betty instead of to Veronica. Issue #606 serves as"} +{"qid": "test809", "pid": "13706810", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nof honor at their wedding. After making some arrangements, Veronica managed to hire a jet for the gang and employed the nurses to take care of Archie's twins so that they can all attend their wedding. Reggie and Veronica marries. As Archie & Betty adjust to parenthood, life goes on in Riverdale. Jughead & Midge are soon expecting a child of their own. Mr. Weatherbee & Miss Grundy along with Miss Beazley & Mr. Svenson have started dating. Archie & Betty receive a postcard from Veronica & Reggie detailing all of their world travels and new ventures. Betty comments to"} +{"qid": "test809", "pid": "13706786", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\non an engagement ring for Veronica a few weeks later in New York. He proposes to her just as Betty and Jughead happen to walk by and witness. Veronica accepts, while Betty runs weeping in an unknown direction. Eventually, Archie and Veronica tell Mr. Lodge, who accepts Archie as his future son-in-law as long as he works for Lodge Industries. Archie accepts while his fiancee plans the biggest wedding Riverdale has ever seen. Jughead later chastises Archie for not telling him his plan, and advised him not to go near Betty for a while, so that she will be able"} +{"qid": "test809", "pid": "967314", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Andrews\"\nbetween Veronica, Archie, and Betty became the hallmark of the Archie stories since the character was created more than 70 years ago. In Archie's debut, when he was nicknamed Chick, he was trying to impress Betty Cooper. When Veronica Lodge moves to Riverdale, however, he switched his attention to her, making Betty both angry and jealous. She began competing with Veronica for his affection. The problem is that Archie reciprocates both girls' feelings for him. He and Betty date frequently, and he can always count on Betty to lift his ego by showering him with affection. Betty loves Archie, but"} +{"qid": "test809", "pid": "20117578", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"New Riverdale\"\nComics made a special edition of the first issue of the New Riverdale \"\"Archie\"\" series available as part of Free Comic Book Day. For FCBD 2017, a special edition of the first issue of \"\"Betty and Veronica\"\" was released. The first title in the company's \"\"New Riverdale\"\" universe, Archie was released with a July 2015 cover date and came in at #7 for comic book sales for the month. The next title, Jughead, was released in October. In April 2015, Archie Comics announced Betty and Veronica which debuted in July 2016. Josie and the Pussycats, and Reggie and Me, a"} +{"qid": "test809", "pid": "13706783", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nand that the first half of the story would show Archie's life with Veronica, and the second half would show his life with Betty. \"\"The Proposal\"\" is Part 1 in the 6 issue story arc, in which Archie decides to marry Veronica. The night before the gang's graduation from Riverdale High, The Archies play their final concert and mourn the oncoming changes. Archie comes home and after getting heat from his father about picking a college, he takes a walk down Memory Lane... literally. Archie realizes he's never walked up Memory Lane before and switches directions. After traveling through a"} +{"qid": "test809", "pid": "1567831", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Betty and Veronica (comic book)\"\ntwo new female characters would replace them. The six-issue arc, titled \"\"Farewell to Betty and Veronica\"\", was published from November 2014 to August 2015 through issues #272-277. \"\"Betty and Veronica\"\" was relaunched in 2016 as one of the New Riverdale titles. The series focuses on Pops’ Chocklit Shoppe being taken over by a huge coffee company owned by Veronica's father. Betty and Veronica take opposing viewpoints over the issue. Betty and Veronica (comic book) Betty and Veronica (also known as Archie's Girls Betty and Veronica) was an ongoing comic book series published by Archie Comics focusing on \"\"best friends and"} +{"qid": "test809", "pid": "13706817", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nof other futures and in each one Archie is married to a different woman. Some of these futures had Archie being married to Cheryl Blossom, Sabrina Spellman, and even Josie. Seeing these futures Valerie runs out of Memory Lane and happily reunites with Archie. Archie Marries Veronica/Archie Marries Betty \"\"Archie Marries Veronica/Archie Marries Betty\"\" is an American comic book story by writer Michael Uslan and artists Stan Goldberg and Bob Smith that was originally presented in \"\"Archie\"\" # 600–606. In issues # 600–602, the story features a futuristic look into the life of Riverdale teen Archie Andrews in the years"} +{"qid": "test809", "pid": "1567830", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Betty and Veronica (comic book)\"\nStories center around the daily life in Riverdale, which includes school, sports, part-time jobs, and romance. Most stories usually feature the two young women as they fight for Archie's affections. On occasion, stories will delve into more serious subjects such as divorce or cheating. In 2007, a new realistic look for the characters was experimented with but by 2008 the characters had reverted to their traditional appearances. At New York Comic Con in 2013, Archie Comics announced that Betty and Veronica would leave Riverdale in \"\"Farewell, Betty and Veronica\"\" written by Michael Uslan with art by Dan Parent, and that"} +{"qid": "test809", "pid": "13706806", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nalready has a great future with Archie back in their hometown. Cassie wishes them well. Back in Riverdale, Archie and Betty temporarily move in with Archie's parents. Mr. Weatherbee has a teaching position available for Betty, and also offers Archie a position of the school's music teacher, which he accepts. That night, Archie and Betty celebrate their first anniversary with a romantic dinner and share a malt with three straws in it. Archie, confused and thinking that Veronica would be joining them, is told that the third straw isn't for her, but for someone he will love. Betty tells him"} +{"qid": "test809", "pid": "2027050", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Love Showdown (Archie Comics)\"\nhim another black eye. Before he can tell her how he feels he gets distracted by a new girl, Savannah Smythe from Mississippi. Archie then gives her a tour of Riverdale High and tells Betty he will talk to her later. A sequel titled \"\"Love Showdown II\"\" was released in \"\"Betty and Veronica Spectacular\"\" #64 and \"\"Archie & Friends\"\" #79. After Betty and Veronica learn that a movie is going to be filmed in Riverdale they decide to try to get into it as extras. The girls find out that the movie is about a red haired boy named Arnie"} +{"qid": "test809", "pid": "13706805", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nabout Archie's clothes and talent. Archie tries to defend himself, but Betty tries to pass it off as a joke. However, when he tries to insult Archie again, Betty loses it and tells him she would punch him if she wasn't as classy as her husband, and quits her job on the spot. The two decide to move back to Riverdale, and Archie willingly gives up his thriving music career. The next day, while packing their bags, Cassie shows up at their apartment and tries convincing her to stay on in her job. However, Betty thanks her and says she"} +{"qid": "test809", "pid": "13706799", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nfather's shoulder, but he assures her that there are plenty of men out there and “things always work out for the best.” All of Riverdale is gossiping about the upcoming nuptials, and whether Veronica's fortune should be a factor. On the night of Archie's bachelor party at Pop Tate's, his groomsmen, Jughead, Reggie, Moose, Dilton, and Chuck express concern for Veronica and her place among Betty's bridesmaids. Meanwhile, Betty goes to the Lodge estate and asks Veronica to be her maid of honor, who promptly slams the door in her face. However, after seeing her so upset, Veronica agrees and"} +{"qid": "test809", "pid": "1567829", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Betty and Veronica (comic book)\"\n1950 and ran for 347 issues before ending in April 1987. The run additionally included eight annual publications published from 1953 to 1980. A new \"\"Betty and Veronica\"\" series launched with a #1 on June 1987. This volume ended in late 2015 with 278 issues (625 overall issues if you count volume one). Stories from previous issues of \"\"Betty and Veronica\"\" have been reprinted in Archie Comics' digest series starring the two females. \"\"Betty and Veronica\"\", a new series taking place in their rebooted New Riverdale universe debuted in September 2016. The series was written and drawn by Adam Hughes."} +{"qid": "test809", "pid": "20842112", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Harley & Ivy Meet Betty & Veronica\"\npositive reviews for its lighthearted plot. In the story, Harley and Ivy accidentally switch bodies with Veronica and Betty. While Harley and Ivy try to stop Veronica's father from destroying a swamp in Riverdale, Betty and Veronica have to find their way back home while being chased by the Gotham City police and criminals. Continuing the trend of unusual crossovers between Archie Andrews and other characters in comics such as \"\"Archie Meets the Punisher\"\" (1994) and \"\"Archie vs. Predator\"\" (2015), an intercompany publication with DC Comics was announced in July 2017. Co-written by Marc Andreyko and Paul Dini, the series"} +{"qid": "test809", "pid": "967315", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Andrews\"\nhe frequently takes her for granted. He often thinks of her more as a close friend and confidant; he likes it that he can use her as a back-up when he does not have a date with Veronica. He dislikes it when Betty dates other boys, wanting her to stay available as his second choice. Now that Betty sporadically dates Jason Blossom and Adam Chisholm, Archie shows a tinge of jealousy. Archie is married to Betty in Archie Marries Betty: Life With Archie series and is married to Veronica in Archie Marries Veronica: Life with Archie series. Archie considers Veronica"} +{"qid": "test809", "pid": "13335523", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Life with Archie\"\nwalk down Memory Lane, driving a wedge between the two. Meanwhile, feeling lonely and neglected, Betty calls Veronica and invites her to dinner. Veronica accepts, but forgets, because of a further quarrel with Archie, leading Betty to believe that she is unwanted, and should leave Riverdale. Moose holds his first press conference as a mayoral candidate, but fumbles over the most basic questions. Nancy and Chuck find themselves struggling to keep their comic book shop going despite the recession, and lament that their respective writing and drawing talents are buried. The story ends with Betty leaving in a cab.\"\" ...Love"} +{"qid": "test809", "pid": "13706796", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nArchie asks to speak with her privately and starts to reminisce about the day she moved to Riverdale, but she keeps interrupting him. Moose demands that The Archies play a few songs. The group thenentertain everyone with one of their hits, “Jingle Jangle”, then Moose starts a food fight that Jughead thoroughly enjoys. After the gang cleans up their mess, Archie attempts to resume his conversation with Veronica, but she interrupts him again to tell him she's moving to Paris after her trip to run her father's fashion holdings. After this news, Archie decides to stop talking with Veronica and"} +{"qid": "test809", "pid": "965007", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Veronica Lodge\"\nVeronica Lodge Veronica Lodge is one of the main characters in the Archie Comics franchise, including The CW's \"\"Riverdale\"\". Veronica Lodge is the only child of Hiram Lodge, the richest man in Riverdale, and his wife Hermione Lodge. She is called both by her name \"\"Veronica\"\" and her nicknames \"\"Ronnie\"\" and \"\"Ron.\"\" Bob Montana knew the Lodge family, because he had once painted a mural for them. Montana combined that name with actress Veronica Lake to create the character of Veronica Lodge. Her character was added in Pep Comics 38, just months after Archie Andrews, Betty Cooper, and Jughead Jones"} +{"qid": "test809", "pid": "13706807", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nshe's pregnant, and Archie chokes on the malt and faints. \"\"Happily Ever After\"\" is Part 6 in the 6 issue story arc. Archie & Betty meets up with Jughead & Midge and are shocked to learn that they are now married, fearing that Moose will kill them. However, Moose, who is now the custodian at Riverdale High, has been practicing yoga and meditation and is less hot-tempered than before. Archie and Betty learn that Pop Tate is retiring and has sold the Chok'lit Shoppe to Jughead and Midge and it has been renamed \"\"Juggie's\"\". At the new Juggie's, the gang"} +{"qid": "test809", "pid": "13706792", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nand Veronica begin Lamaze class, which proves to be a slapstick disaster for Archie. One night when Veronica's ill, Jughead fills in for her replete with a pillow under his shirt and hilarity ensues. Despite all of this, Archie promises to be calm when the big day arrives. Shortly thereafter, Veronica goes into labor and he drives her to the hospital. Soon, Veronica delivers a a pair of fraternal twins, a redheaded boy named Archie, and a black haired girl named Veronica. Time passes and Archie and Veronica move back to Riverdale and buy a minivan. Parenting is exhausting for"} +{"qid": "test809", "pid": "14308159", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Families of Archie's Gang\"\nfor Betty, very proud of her, and is always willing to help with her problems. Still, she hopes that Betty will eventually outgrow her tomboy phase and embrace some of Veronica's more desirable traits (though Betty does have several traditionally feminine interests). In later years, it is implied that Alice works, but this has not really been explored. She secretly envies the Lodge wealth a little, mainly because she wishes she could afford to buy Betty the nice things the Lodges buy for Veronica. Mädchen Amick portrays Alice in the CW series \"\"Riverdale\"\". In this version Alice is very strict"} +{"qid": "test809", "pid": "1663070", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Cheryl Blossom\"\nin the main continuity and back into Archie Andrews' life during the \"\"Love Showdown\"\" four-part series in 1994. During the series, Archie receives a letter from Cheryl which states she will be returning to Riverdale. Archie, infatuated with girls as always, decides to keep Cheryl's return a secret from Betty Cooper and Veronica Lodge. He merely acts in a typical Archie girl crush maneuver (looking dreamy, uttering nonsense). Unknown to Archie is that Betty and Veronica both think the other person did this to Archie, and they declare war on each other to win back Archie once and for all."} +{"qid": "test809", "pid": "13706815", "query": "does archie end up with betty or veronica in riverdale", "answer": "Betty", "passage": "\"Archie Marries Veronica/Archie Marries Betty\"\nfrom 2010 to 2014, ending with 37 issues. Issues 1-35 contained two stories each, the first story was \"\"Archie Marries Veronica\"\" and the second one was \"\"Archie Marries Betty\"\". The last two issues, on the other hand, were structured differently. Instead of having two stories both issues had one, but were twice as long as the others. Also, neither issue made it clear whether Archie was married to Betty or Veronica. Together both issues make up \"\"The Death of Archie\"\" storyline. The \"\"Archie Marries Valerie\"\" storyline was similar to the \"\"Archie Marries Veronica/Archie Marries Betty\"\" storyline, but had some major"} +{"qid": "test81", "pid": "19275270", "query": "when is season 2 of jessica jones being released", "answer": "March 8, 2018", "passage": "\"Jessica Jones (season 2)\"\nshield being broken, as well as mention of the Raft prison. The season also mentions the Rand Corporation from \"\"Iron Fist\"\", and makes multiple references to Spider-Man. The second season of \"\"Jessica Jones\"\" was released on March 8, 2018, to coincide with International Women's Day, on the streaming service Netflix worldwide, in Ultra HD 4K and high dynamic range. In December 2017, a teaser trailer for the season was released, along with announcing the season release date. A trailer was released on February 7, 2018. Ahead of the season releasing, Netflix revealed the episode titles and creative teams with pulp"} +{"qid": "test81", "pid": "5036566", "query": "when is season 2 of jessica jones being released", "answer": "March 8, 2018", "passage": "\"Jessica Jones\"\nDefenders\"\", a 2017 crossover miniseries. A second season of \"\"Jessica Jones\"\" was released on Netflix on March 8, 2018, on International Women's Day. The second season of \"\"Jessica Jones\"\", follows Jones as she takes on a new case after the events surrounding her encounter with Kilgrave. It is set in the Marvel Cinematic Universe (MCU), sharing continuity with the films and other television series of the franchise. The season was produced by Marvel Television in association with ABC Studios and Tall Girls Productions, with Melissa Rosenberg serving as showrunner. Jessica Jones Jessica Campbell Jones is a fictional superhero appearing in"} +{"qid": "test81", "pid": "17845918", "query": "when is season 2 of jessica jones being released", "answer": "March 8, 2018", "passage": "\"Jessica Jones (TV series)\"\nKitchen. All episodes of the first season premiered on November 20, 2015. They were released to critical acclaim, with critics noting Ritter's and Tennant's performances as well as the series' noir tone, approach to sexuality, and depiction of darker topics such as rape, assault and posttraumatic stress disorder (PTSD). In January 2016, Netflix renewed \"\"Jessica Jones\"\" for a second season; filming began in April 2017 and concluded in September 2017. The second season was released on March 8, 2018, and a third season was ordered on April 12, which is scheduled to be released in 2019. Following the tragic end"} +{"qid": "test810", "pid": "5912543", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"Sheffield Declaration\"\nDr. Lemuel Bernard, Aaron Root, Major John Fellows, Philip Callender, Capt. William Day, Deacon Ebenezer Smith, Capt. Daniel Austin, Capt. Stephen Dewey, and Theodore Sedgwick, who wrote the text. The Declaration's was that \"\"Mankind in a state of nature are equal, free, and independent of each other, and have a right to the undisturbed enjoyment of their lives, their liberty and property,\"\" These words are echoed in the most famous line of Thomas Jefferson's Declaration of Independence three years later: \"\"We hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator"} +{"qid": "test810", "pid": "9221998", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"Roger C. Weightman\"\nbest attended and most remembered of the era. The last letter that Thomas Jefferson, the third president of the United States and the writer of the Declaration of Independence, ever wrote was sent to Roger C. Weightman. It was a letter declining an invitation to join a celebration for the 50th anniversary of the signing of the Declaration of Independence. The letter says: During the 1820s, Weightman was a member of the prestigious society, Columbian Institute for the Promotion of Arts and Sciences, who counted among their members former presidents Andrew Jackson and John Quincy Adams and many prominent men"} +{"qid": "test810", "pid": "3384600", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"Independence Day (United States)\"\nJuly 4, even though Thomas Jefferson, John Adams, and Benjamin Franklin all later wrote that they had signed it on that day. Most historians have concluded that the Declaration was signed nearly a month after its adoption, on August 2, 1776, and not on July 4 as is commonly believed. Coincidentally, both John Adams and Thomas Jefferson, the only signers of the Declaration of Independence later to serve as Presidents of the United States, died on the same day: July 4, 1826, which was the 50th anniversary of the Declaration. Although not a signer of the Declaration of Independence, James"} +{"qid": "test810", "pid": "2776070", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "Cursive\nthe British Empire in the 17th and 18th centuries as round hand by John Ayers and William Banson. In the American colonies, on the eve of their independence from the Kingdom of Great Britain, it is notable that Thomas Jefferson joined most, but not all the letters when drafting the United States Declaration of Independence. However, a few days later, Timothy Matlack professionally re-wrote the presentation copy of the Declaration in a fully joined, cursive hand. Eighty-seven years later, in the middle of the 19th century, Abraham Lincoln drafted the Gettysburg Address in a cursive hand that would not look"} +{"qid": "test810", "pid": "2095226", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"Mecklenburg Declaration of Independence\"\nthough the Mecklenburg Declaration was supposedly written more than a year before the 1776 United States Declaration of Independence, the two declarations had some very similar phrases, including \"\"dissolve the political bands which have connected\"\", \"\"absolve ourselves from all allegiance to the British Crown\"\", \"\"are, and of right ought to be\"\", and \"\"pledge to each other, our mutual cooperation, our lives, our fortunes, and our most sacred honor\"\". This raised an obvious question: did Thomas Jefferson, the principal author of the American Declaration of Independence, use the Mecklenburg Declaration as a source? One person who thought so was John Adams,"} +{"qid": "test810", "pid": "5899807", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"William Randolph\"\nMost of the Randolphs, like the rest of the Virginia gentry, strongly supported the Revolution. However, John Randolph (son of Sir John), in opposition to both his brother Peyton and son Edmund, remained loyal to Great Britain and left Virginia. It was the period of William Randolph's most famous descendants. Thomas Jefferson wrote the Declaration of Independence, and 18-year-old John Marshall was at Valley Forge for the trying winter of 1777–1778. Turkey Island derives its name from the first explorers of the James River, who noted that it contained a large population of wild turkeys. The term can refer to"} +{"qid": "test810", "pid": "434520", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"United States Declaration of Independence\"\ndocuments\"\", wrote Pauline Maier, \"\"is there any evidence whatsoever that the Declaration of Independence lived in men's minds as a classic statement of American political principles.\"\" Many leaders of the French Revolution admired the Declaration of Independence but were also interested in the new American state constitutions. The inspiration and content of the French Declaration of the Rights of Man and Citizen (1789) emerged largely from the ideals of the American Revolution. Its key drafts were prepared by Lafayette, working closely in Paris with his friend Thomas Jefferson. It also borrowed language from George Mason's Virginia Declaration of Rights. The"} +{"qid": "test810", "pid": "1404799", "query": "who wrote most of the declaration of independance", "answer": "Thomas Jefferson", "passage": "\"1776 (musical)\"\nthe authors of the musical. In the song \"\"But, Mr. Adams\"\", John Adams tells Thomas Jefferson that Adams is 41 years old. Adams (born in October, 1735) was actually 40 years old at the time of the events depicted in the musical. In his review of the original 1969 production, Clive Barnes of \"\"The New York Times\"\" wrote, On the face of it, few historical incidents seem more unlikely to spawn a Broadway musical than that solemn moment in the history of mankind, the signing of the Declaration of Independence. Yet \"\"1776\"\"... most handsomely demonstrated that people who merely go"} +{"qid": "test811", "pid": "15192627", "query": "who does brant daugherty play in pretty little liars", "answer": "Noel Kahn", "passage": "\"Brant Daugherty\"\nBrant Daugherty Brant David Daugherty (born August 20, 1985) is an American actor, known for his recurring role as Noel Kahn on the teen drama television series \"\"Pretty Little Liars\"\". In 2013, he had a recurring role as Brian in the long-running NBC daytime drama \"\"Days of Our Lives\"\". In 2013, he was a regular of the cast of Lifetime Network's \"\"Army Wives\"\" for season 7, which began airing in April 2013, in the role of Patrick Clarke. He had a credited role in Jason Friedberg and Aaron Seltzer's motion picture comedy film \"\"The Starving Games\"\" released in fall 2013."} +{"qid": "test811", "pid": "15192630", "query": "who does brant daugherty play in pretty little liars", "answer": "Noel Kahn", "passage": "\"Brant Daugherty\"\na trip to Amsterdam. Brant Daugherty Brant David Daugherty (born August 20, 1985) is an American actor, known for his recurring role as Noel Kahn on the teen drama television series \"\"Pretty Little Liars\"\". In 2013, he had a recurring role as Brian in the long-running NBC daytime drama \"\"Days of Our Lives\"\". In 2013, he was a regular of the cast of Lifetime Network's \"\"Army Wives\"\" for season 7, which began airing in April 2013, in the role of Patrick Clarke. He had a credited role in Jason Friedberg and Aaron Seltzer's motion picture comedy film \"\"The Starving Games\"\""} +{"qid": "test811", "pid": "19269402", "query": "who does brant daugherty play in pretty little liars", "answer": "Noel Kahn", "passage": "\"Pretty Little Liars (season 7)\"\nDet. Marco Furey. Tammin Sursok announced that she will return to the show as Jenna Marshall after last appearing in the fifth-season episode \"\"How the 'A' Stole Christmas\"\". On June 2, 2016, \"\"Variety\"\" reported that Brant Daugherty would be returning as Noel Kahn; Brant has not appeared on the show since the beginning of the fifth season. On June 10, 2016, \"\"The Hollywood Reporter\"\" reported that Lindsey Shaw would be returning as Paige McCullers after leaving in the fifth season mid-season premiere. The actress playing Sydney Driscoll, Chloe Bridges, posted an image on social media, confirming that she would return"} +{"qid": "test811", "pid": "19648429", "query": "who does brant daugherty play in pretty little liars", "answer": "Noel Kahn", "passage": "\"Along Comes Mary (Pretty Little Liars)\"\ncommenced on May 11, 2016, and it was filmed between May 17 and May 25, 2016. Cast members Keegan Allen, Lulu Brud, Nicholas Gonzalez and Tammin Sursok appeared in the episode reprising their roles as Toby Cavanaugh, Sabrina, Marco Furey, and Jenna Marshall, respectively. On June 2, 2016, Variety reported that Brant Daugherty would be returning for the series as Noel Kahn, since he has not appeared on the show since the beginning of the fifth season. Brant first appeared on the seventh season on this episode. Actress Dre Davis returned to the show for the seventh season, portraying Sara"} +{"qid": "test811", "pid": "19701323", "query": "who does brant daugherty play in pretty little liars", "answer": "Noel Kahn", "passage": "\"The Wrath of Kahn (Pretty Little Liars)\"\nwhose receive anonymous messages in the form of threats from an unknown person named A.D., while they struggle to survive a life with danger. In this episode, Hanna begins her plan to kidnap the dangerous Noel Kahn, while the other Liars investigate secrets of the past and present of the suspicious Mary Drake. The episode is a reference to the 1982 film \"\"\"\". Hanna (Ashley Benson) rages and ends up trying to make a deal with Noel (Brant Daugherty), and, indirectly, drug him in order to lock him up; however, her initial goal fails and she uses a plan B."} +{"qid": "test811", "pid": "19648428", "query": "who does brant daugherty play in pretty little liars", "answer": "Noel Kahn", "passage": "\"Along Comes Mary (Pretty Little Liars)\"\nwith Emily, as Sara reveals that she knows about Emily's acceptance in Hollis College. In a meeting, Hanna freaks out when realizing that somebody knows about what she did, and Aria ends up infuriating Alison when she leaves to see Ezra. Later, Alison discovers through a message from \"\"A.D.\"\" that the girls gave her up as Charlotte's killer in order to free Hanna. Meanwhile, Ezra proposes marriage to Aria. The episode ends with Noel Kahn (Brant Daugherty) meeting with Sara and Jenna. The episode was directed by Norman Buckley, and written by Bryan M. Holdman. The table-read for this episode"} +{"qid": "test814", "pid": "5278022", "query": "when did under the cork tree come out", "answer": "May 3, 2005", "passage": "\"From Under the Cork Tree\"\nFrom Under the Cork Tree From Under the Cork Tree is the second studio album by American rock band Fall Out Boy. It was released on May 3, 2005, through Island Records as the band's major label debut. The music was composed by lead vocalist and guitarist Patrick Stump, with all lyrics penned by bassist Pete Wentz, continuing the band's songwriting approach they took for some songs on their prior 2003 effort \"\"Take This to Your Grave\"\". Neal Avron handled production duties. Commenting on the record's lyrical themes, Wentz said the lyrics were about \"\"the anxiety and depression that goes"} +{"qid": "test815", "pid": "17254669", "query": "when did korea separate into north and south", "answer": "1945", "passage": "\"Korea Independence Party\"\nKorea Independence Party The Korea Independence Party (, \"\"Hanguk Doglib Dang\"\", KIP) was a political party in South Korea. The party was established in Shanghai by Kim Koo in 1928, uniting a faction of conservative members of the Provisional Government of the Republic of Korea headed by Kim. When Kim was able to return to Korea in 1945, the KIP began operating in the country. Kim was initially supportive of Syngman Rhee, but a dispute over holding separate elections in South Korea (Kim was opposed, Rhee was for) led to a split and the party did not participate in the"} +{"qid": "test815", "pid": "2988241", "query": "when did korea separate into north and south", "answer": "1945", "passage": "Sokcho\nSokcho Sokcho (; ()) is a city in Gangwon-do province, South Korea. It is located in the far northeast of Gangwon-do. Lying north of the 38th parallel, the city belonged to North Korea from 1945 until the end of the Korean War, when the dividing line between the two Korean states was officially altered. Abai Maeul was originally set up as an area to house North Korean refugees in Sokcho due to the separation of the two Koreas. Consequently, many of the population have relatives in North Korea. Today, Sokcho receives a number of tourists attracted by the closeness to"} +{"qid": "test815", "pid": "1397763", "query": "when did korea separate into north and south", "answer": "1945", "passage": "\"Provinces of Korea\"\nII in 1945, Korea was divided into Northern Korea and Southern Korea under trusteeship of the Soviet Union and the United States. The peninsula was divided at the 38th parallel in 1945. In 1948, the two zones became the independent countries of North Korea and South Korea. Three provinces—Hwanghae, Gyeonggi, and Gangwon—were divided by the 38th parallel. Also in 1946, the cities of Seoul in the south and Pyongyang in the north separated from Gyeonggi and South Pyongan Provinces respectively to become Special Cities. Both North Korea and South Korea upgraded cities to a level equal to a province, and"} +{"qid": "test815", "pid": "290714", "query": "when did korea separate into north and south", "answer": "1945", "passage": "\"North Korea\"\nbe the legitimate government of the entire peninsula and adjacent islands. Both North Korea and South Korea became members of the United Nations in 1991. In 1910, Korea was annexed by Imperial Japan. After the Japanese surrender at the end of World War II in 1945, Korea was divided into two zones, with the north occupied by the Soviet Union and the south occupied by the United States. Negotiations on reunification failed, and in 1948, separate governments were formed: the socialist Democratic People's Republic of Korea in the north, and the capitalist Republic of Korea in the south. An invasion"} +{"qid": "test815", "pid": "8331199", "query": "when did korea separate into north and south", "answer": "1945", "passage": "\"North–South differences in the Korean language\"\nNorth–South differences in the Korean language The Korean language has changed between the two states due to the length of time that North and South Korea have been separated. Korean orthography, as defined by the Korean Language Society in 1933 in the \"\"Proposal for Unified Korean Orthography\"\" () continued to be used by the North and the South after liberation of Korea in 1945, but with the establishments of the Democratic People's Republic of Korea and the Republic of Korea in 1948, the two states have taken on differing policies regarding the language. In 1954, North Korea set out the"} +{"qid": "test815", "pid": "2104772", "query": "when did korea separate into north and south", "answer": "1945", "passage": "\"Gangwon Province, South Korea\"\nGangwon Province, South Korea Gangwon-do () is a province of South Korea, with its capital at Chuncheon. It is bounded on the east part by the East Sea, and borders Gyeonggi Province to its west, and North Gyeongsang Province and North Chungcheong Province to its south. Its northern boundary is the Military Demarcation Line, separating it from North Korea's Kangwŏn Province. Before the division of Korea in 1945 Gangwon and Kangwŏn formed a single province. Pyeongchang County hosted the 2018 Winter Olympics and 2018 Winter Paralympics. Gangwon-do was one of the Eight Provinces of Korea during the Joseon Dynasty. The"} +{"qid": "test816", "pid": "61391", "query": "who discovered the atom and in what year", "answer": "John Dalton", "passage": "Chemistry\nday. Before his work, though, many important discoveries had been made, specifically relating to the nature of 'air' which was discovered to be composed of many different gases. The Scottish chemist Joseph Black (the first experimental chemist) and the Dutchman J.B. van Helmont discovered carbon dioxide, or what Black called 'fixed air' in 1754; Henry Cavendish discovered hydrogen and elucidated its properties and Joseph Priestley and, independently, Carl Wilhelm Scheele isolated pure oxygen. English scientist John Dalton proposed the modern theory of atoms; that all substances are composed of indivisible 'atoms' of matter and that different atoms have varying atomic"} +{"qid": "test819", "pid": "1051264", "query": "how many seasons are there for lost girl", "answer": "5", "passage": "\"Grand Ridge, Illinois\"\ngirls basketball team was 4th in state out of 88 teams in the 2007 season. They have many sports at the school including cheerleading, boys' and girls' basketball, track, volleyball and boys' baseball. They also have an academic team that competes with other schools at meets. The academic team took second place at the regional tournament in the 2008 season. The 8th grade girls basketball team finished with a record of 18-6, and placed first in their conference and their regional. The 5th grade girls only lost 5 games, where the 6th graders lost 6. In the 2007–2008 season, the"} +{"qid": "test819", "pid": "15117431", "query": "how many seasons are there for lost girl", "answer": "5", "passage": "\"The Biggest Loser (season 11)\"\nyounger girls and, especially Arthur to stay. Jesse gets very upset and says that he needs to be there just as much as any of the others - he doesn't want to be 'thrown out' just because he's the old man. The discussion gets heated and eventually Olivia leaves the room and several are upset at how Jesse acted. At the weigh in, the red team weighed in first. Austin lost 7 lbs, Ken lost 5 lbs, Justin lost 7 lbs, Rulon lost 4 lbs, Kaylee lost 7 lbs, Moses lost 11 lbs, and Jen gained 2 lbs. With the"} +{"qid": "test819", "pid": "17993584", "query": "how many seasons are there for lost girl", "answer": "5", "passage": "\"Lost Girl (season 5)\"\n2015, in advance of the broadcast premiere on September 6, 2015. It was made available for viewing on its website and on multi digital platforms. Note: Showcase considers season 5 to have 16 episodes, but their cable distributors only count it as having 8 episodes and split the second half into \"\"season 6\"\", beginning with \"\"44 Minutes to Save the World\"\" as season 6 episode 1. Lost Girl (season 5) \"\"Lost Girl\"\" is a Canadian supernatural drama television series that premiered on Showcase on September 12, 2010. The series was created by Michelle Lovretta and is produced by"} +{"qid": "test82", "pid": "9868975", "query": "who is the most losing team in nfl history", "answer": "Tampa Bay Buccaneers", "passage": "\"History of the Tampa Bay Buccaneers\"\nthe first NFL team to follow up a Super Bowl championship with back-to-back losing seasons. The lone highlights of 2004 were the high-quality play of rookie wide receiver Michael Clayton and the return of Doug Williams, who joined the Bucs front office as a personnel executive. In the 2005 season, the Bucs returned to their winning ways. The Buccaneers selected Carnell “Cadillac” Williams in the first round of the 2005 draft, and the rookie would provide a running game the Buccaneers hadn't possessed since the days of James Wilder in the 1980s. Williams set the NFL record for most yards"} +{"qid": "test82", "pid": "16468907", "query": "who is the most losing team in nfl history", "answer": "Tampa Bay Buccaneers", "passage": "\"National Football League controversies\"\ntwo players from each existing franchise and the remainder from the local area to make up a 55-player roster. When the Tampa Bay Buccaneers were added to the NFL in 1976, their roster ended up being composed mostly of aging veterans and inexperienced rookies, and as a result, Tampa Bay had the first winless season in modern NFL history en route to losing their first 26 games (the longest losing streak in NFL history). After significant public criticism, the NFL created an expansion draft to avoid a repeat of this very poor start for future expansion teams. The league has"} +{"qid": "test820", "pid": "11941797", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"South African Meat Merino\"\nseparate in 1971 when the name was changed to South African Mutton Merino. The SAMM has been developed as a versatile, hardy, polled dual-purpose breed. Ewes have a good maternal instinct and high milk production. Mature ewes will grow up to about and rams to over . Ewes will produce to of medium/strong wool. The wool is classified separately from the higher quality wool of Merinos, to avoid the risk of contamination of the latter with hair and kemp fibre from the SAMM wool. The SAMM is bred specifically to produce a slaughter lamb at an early age ( at"} +{"qid": "test820", "pid": "18842944", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"James Edwin Duerden\"\nwas associated with the Grootfontein College of Agriculture and the Onderstepoort Veterinary Academic Hospital. Having built up a research team, Duerden became a leading authority on wool, leading to his appointment as the Director of Wool Research at the Department of Agriculture. He devised the Duerden Crimp Scale in 1927, for use by the wool industry. Duerden was elected as the President of the South African Association for the Advancement of Science in 1921. Duerden spoke and published on eugenics whilst in this position. Duerden retired from Rhodes University in 1932, though continued to work with the Grootfontein Agricultural College."} +{"qid": "test820", "pid": "17659333", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"South African Wool Board\"\nall wool sales in the Union of South Africa. South African Wool Board The South African Wool Board was constituted in 1946 as an independent and non-profit making statutory board under the Wool Act (Act No 19 of 1946) in response to the rapid rise synthetic replacements for natural wool fibre. It was wound up in 1997. Improve marketing research, advertising and technical research of South Africa's wool and wool textiles. The board was founded in 1946 under the Wool Act (Act No 19 of 1946). In 1972 the Wool Commission was merged with it. It was wound up in"} +{"qid": "test820", "pid": "17659332", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"South African Wool Board\"\nSouth African Wool Board The South African Wool Board was constituted in 1946 as an independent and non-profit making statutory board under the Wool Act (Act No 19 of 1946) in response to the rapid rise synthetic replacements for natural wool fibre. It was wound up in 1997. Improve marketing research, advertising and technical research of South Africa's wool and wool textiles. The board was founded in 1946 under the Wool Act (Act No 19 of 1946). In 1972 the Wool Commission was merged with it. It was wound up in 1997. It was funded by a levy imposed on"} +{"qid": "test820", "pid": "11941799", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"South African Meat Merino\"\nand have been developing the SAMM breed in the United States using top Australian SAMM producers bloodlines. South African Meat Merino The South African Meat Merino or SAMM is a wool and meat sheep originating in South Africa, but now found throughout the world. The SAMM is derived from the German \"\"Merinofleischschaf\"\" animals imported into South Africa from Europe in 1932, to improve the quality of wool and meat from sheep in South Africa. The \"\"Deutsche Fleisch Merino\"\" is a common meat sheep in Germany, Austria, and Poland. In South Africa, the German name was translated into Afrikaans as \"\"Duitse"} +{"qid": "test820", "pid": "17506136", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"South African law of agency\"\nor liability attaching to the agent. The agent acts merely as a conduit to bring about a legal relationship between the principal and the third party. In SA law of contract: “independent contractor” normally used to mean \"\"conductor operis\"\"—one who’s obliged to produce certain finished work. “Typical examples,” as cited by Kerr, “are a builder who is obliged to complete a house or a building, a manufacturer who is obliged to build a ship, a weaver who is obliged to make cloth from wool supplied to him, and a person who is obliged to wash or mend clothes.” Independent contract"} +{"qid": "test820", "pid": "7883359", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "Dorper\nDorper The Dorper is a South African breed of domestic sheep developed by crossing Dorset Horn and the Blackhead Persian sheep. The breed was created through the efforts of the South African Department of Agriculture to breed a meat sheep suitable to the more arid regions of the country. It is now farmed in other areas as well, and is the second most common sheep breed in South Africa. A Dorper is a fast-growing meat-producing sheep. The Dorper is an easy-care animal that produces a short, light coat of wool and hair that is shed in late spring and summer."} +{"qid": "test820", "pid": "3233798", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"Wellington, Somerset\"\nLtd who manufactured animal husbandry products. The company diversified and in 1950 produced the first commercial aerosols in the UK which were basically farm products, air fresheners and insecticides. Bed manufacturers Relyon employ some 400 people. The company started in 1858 as a wool merchant, Price Brothers and Co., but the business soon moved into manufacturing beds and in 1935 changed its name to Relyon Ltd. In 2001 it was acquired by Steinhoff International Holdings Ltd., a quoted South African group. The town was served by Wellington railway station on the Bristol and Exeter Railway from 1 May 1843 until"} +{"qid": "test820", "pid": "13825990", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "Meiringspoort\npass as a way of connecting farmers and businesses in the southern African hinterland, with the port at Mossel Bay. A measure of its success was that Mossel Bay's port structures had to be expanded almost immediately, to cope with the massive growth in exports. By the 1870s, in spite of the frequent repairs from flood damage, one eighth of the country's entire export wool produce was being transported through the pass. Meiringspoort Meiringspoort (Afrikaans for \"\"Meiring's pass\"\") is a South African mountain pass on the N12 national road, where it crosses the Swartberg mountain range. The pass is a"} +{"qid": "test820", "pid": "11941796", "query": "who is the leading african producer of wool", "answer": "South Africa", "passage": "\"South African Meat Merino\"\nSouth African Meat Merino The South African Meat Merino or SAMM is a wool and meat sheep originating in South Africa, but now found throughout the world. The SAMM is derived from the German \"\"Merinofleischschaf\"\" animals imported into South Africa from Europe in 1932, to improve the quality of wool and meat from sheep in South Africa. The \"\"Deutsche Fleisch Merino\"\" is a common meat sheep in Germany, Austria, and Poland. In South Africa, the German name was translated into Afrikaans as \"\"Duitse Vleis Merino\"\" and then into English as \"\"German Mutton Merino\"\". The South African breed was recognised as"} +{"qid": "test821", "pid": "19747768", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"Ice hockey in the United States\"\nto the general American public as are stars of the NFL, MLB, and the NBA, average attendance for NHL games in the U.S. has surpassed average NBA attendance in recent seasons, buoyed in part by the NHL Winter Classic being played in large outdoor stadiums. In 1924, the Boston Bruins were the first American team to join the National Hockey League. During that season, the first NHL game was played in the United States where the Boston Bruins defeated the Montreal Maroons 2-1. That same season, the NHL increased the season schedule from 24 games to 30 games. Three more"} +{"qid": "test821", "pid": "12681304", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"Lude Check\"\nLude Check Ludic Check (May 22, 1918 – May 11, 2009) was a professional hockey player who played for the Detroit Red Wings and the Chicago Black Hawks in the National Hockey League. After several years of hockey in Manitoba, Saskatchewan and New York, Check was signed by the Montreal Canadiens after a season playing with the Quebec Senior Hockey League in 1943. In his first NHL season, he played only one professional game, with the Red Wings in 1944. Check was then loaned to the Black Hawks, where he played 26 games in his final NHL season. The Canadiens"} +{"qid": "test821", "pid": "8720869", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"Matt Higgins (ice hockey)\"\nMatt Higgins (ice hockey) Matthew Warren Higgins(born October 29, 1977) is a Canadian former professional ice hockey centre who played in the National Hockey League (NHL) with the Montreal Canadiens. Matt Higgins was selected 18th overall in the 1996 NHL Entry Draft by the Montreal Canadiens. He played in 57 regular season NHL games throughout the 1997–98 NHL season to the 2000–01 NHL season. He began his hockey career with the Western Hockey League Moose Jaw Warriors in 1993 where he played until he was drafted. He then played for the American Hockey League Fredericton Canadiens and Quebec Citadelles. He"} +{"qid": "test821", "pid": "5848460", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"1927–28 NHL season\"\nGoals against average\"\" Source: hockey-reference.com The following is a list of players of note who played their first NHL game in 1927–28 (listed with their first team, asterisk(*) marks debut in playoffs): The following is a list of players of note that played their last game in the NHL in 1927–28 (listed with their last team):* Denotes last game was in the playoffs. 1927–28 NHL season The 1927–28 NHL season was the 11th season of the National Hockey League. Ten teams played 44 games each. The New York Rangers won the Stanley Cup beating the Montreal Maroons, becoming the first"} +{"qid": "test821", "pid": "16016871", "query": "where was the first nhl hockey game played", "answer": "Ottawa", "passage": "\"Derek Grant (ice hockey, born 1990)\"\na career year, where he produced 12 goals, 12 assists and 24 points in 66 games. Having played his first full season in the NHL, Grant left the Ducks as a free agent and agreed to a one-year, $650,000 contract with the Pittsburgh Penguins on July 20, 2018. Derek Grant (ice hockey, born 1990) Derek Grant (born April 20, 1990) is a Canadian professional ice hockey player. Grant is currently playing for the Pittsburgh Penguins in the National Hockey League (NHL). He was selected by the Ottawa Senators in the 4th round (119th overall) of the 2008 NHL Entry Draft."} +{"qid": "test821", "pid": "4373256", "query": "where was the first nhl hockey game played", "answer": "Ottawa", "passage": "\"1923–24 NHL season\"\nof note who played their first NHL game in 1923–24 (listed with their first team, asterisk(*) marks debut in playoffs): The following is a list of players of note that played their last game in the NHL in 1923–24 (listed with their last team): 1923–24 NHL season The 1923–24 NHL season was the seventh season of the National Hockey League. Four teams each played 24 games. The league champions were the Montreal Canadiens, who defeated the first-place Ottawa Senators in the league playoff. The Canadiens then defeated the Calgary Tigers of the Western Canada Hockey League (WCHL) and Vancouver Maroons"} +{"qid": "test821", "pid": "5944750", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"1952–53 NHL season\"\nwho played their first NHL game in 1952–53 (listed with their first team, asterisk(*) marks debut in playoffs): The following is a list of players of note that played their last game in the NHL in 1952–53 (listed with their last team): 1952–53 NHL season The 1952–53 NHL season was the 36th season of the National Hockey League. The Montreal Canadiens were the Stanley Cup winners as they beat the Boston Bruins four games to one in the final series. The NHL almost had a seventh franchise, as the Cleveland Barons of the American Hockey League applied for a franchise."} +{"qid": "test821", "pid": "10105287", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"Carey Wilson (ice hockey)\"\nCarey Wilson (ice hockey) Carey John Wilson (born May 19, 1962) is a Canadian former professional ice hockey centre who played in the National Hockey League for ten seasons. His father, Gerry Wilson, played three games in the NHL for the Montreal Canadiens in the 1950s, and later was the team doctor for the Winnipeg Jets. Carey Wilson was a rarity in that he played in the Canadian Hockey League, NCAA, Division I hockey in Europe, and the Canadian National Team all before playing his first game in the NHL. He started his career by playing five games for the"} +{"qid": "test821", "pid": "4603918", "query": "where was the first nhl hockey game played", "answer": "Ottawa", "passage": "\"1921–22 NHL season\"\nthat played their last game in the NHL in 1921–22 (listed with their last team): 1921–22 NHL season The 1921–22 NHL season was the fifth season of the National Hockey League (NHL). Four teams each played 24 games. The league dropped the split season and the two top teams played off for the league championship. The second-place Toronto St. Patricks defeated the first-place Ottawa Senators for the league championship. For the first four seasons of the NHL, the winner of the league playoffs had faced the winner of the Pacific Coast Hockey Association (PCHA) for the Stanley Cup. That changed"} +{"qid": "test821", "pid": "6277965", "query": "where was the first nhl hockey game played", "answer": "Montreal", "passage": "\"1978–79 NHL season\"\na list of players of note who played their first NHL game in 1978–79 (listed with their first team, asterisk (*) marks debut in playoffs): \"\"Players marked with § began their major professional career in the World Hockey Association.\"\" The following is a list of players of note that played their last game in the NHL in 1978–79 (listed with their last team): 1978–79 NHL season The 1978–79 NHL season was the 62nd season of the National Hockey League. The Montreal Canadiens beat the New York Rangers in the Stanley Cup finals four games to one for their fourth consecutive"} +{"qid": "test822", "pid": "15988450", "query": "how many inches is the iphone 5s screen", "answer": "4-inch screen size", "passage": "\"IPhone 5S\"\nwho preferred the 4-inch screen size of iPhone 5S, which remained the second-most popular iPhone after the iPhone 6 and ahead of the iPhone 6S. Apple stated in their event that they sold 30 million 4-inch iPhones in 2015, even as that form factor was succeeded as the flagship iPhone by the redesigned larger display 4.7/5.5-inch iPhone 6 and 6 Plus back in September 2014. Furthermore, the 5/5S design was regarded as \"\"long been the golden child of Apple phone design and a benchmark for phones in general\"\" (with the 5S's gold finish adding a premium touch to the 5's"} +{"qid": "test822", "pid": "19361197", "query": "how many inches is the iphone 5s screen", "answer": "4-inch screen size", "passage": "\"IPhone SE\"\nbe able to use it fully.\"\" The previous major redesign of the iPhone, the 4.7-inch iPhone 6 and the 5.5-inch iPhone 6 Plus, resulted in larger screen sizes. However, a significant number of customers still preferred the smaller 4-inch screen size of the iPhone 5 and the iPhone 5S. Apple stated in the \"\"Let us loop you in\"\" event on March 21, 2016 that they sold over 30 million 4-inch iPhones in 2015, further explaining that some people love smaller compact phones. Later in the event they presented the iPhone SE, describing it as \"\"the most powerful 4-inch phone ever.\"\""} +{"qid": "test822", "pid": "4338", "query": "how many inches is the iphone 5s screen", "answer": "4-inch screen size", "passage": "\"Apple Inc.\"\n2014, Apple introduced the iPhone 6, alongside the iPhone 6 Plus that both have screen sizes over 4-inches. One year later, Apple introduced the iPhone 6S, and iPhone 6S Plus, which introduced a new technology called 3D Touch, including an increase of the rear camera to 12 MP, and the FaceTime camera to 5 MP. On March 21, 2016, Apple introduced the iPhone SE that has a 4-inch screen size last used with the 5S and has nearly the same internal hardware as the 6S. In July 2016, Apple announced that one billion iPhones had been sold. On September 7,"} +{"qid": "test823", "pid": "27164", "query": "where do the signals for apoptosis come from", "answer": "from other cells", "passage": "Apoptosis\n\"\"intrinsic pathway\"\" the cell kills itself because it senses cell stress, while in the \"\"extrinsic pathway\"\" the cell kills itself because of signals from other cells. Weak external signals may also activate the intrinsic pathway of apoptosis. Both pathways induce cell death by activating caspases, which are proteases, or enzymes that degrade proteins. The two pathways both activate initiator caspases, which then activate executioner caspases, which then kill the cell by degrading proteins indiscriminately. Research on apoptosis has increased substantially since the early 1990s. In addition to its importance as a biological phenomenon, defective apoptotic processes have been implicated in"} +{"qid": "test825", "pid": "19272991", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Theatre Royal, Melbourne\"\nTheatre Royal, Melbourne The Theatre Royal was one of the premier theatres in the city of Melbourne, the capital of Victoria, Australia, throughout the 19th century and early 20th century. First built in 1855, it was located at what is now 236 Bourke Street, Melbourne, in the heart of what was once the city's theatre and entertainment district. The Theatre Royal was built in 1855 by John Melton Black. It was capable of holding 3300 people and was comparable in size to London's Drury Lane and Covent Garden theatres. The opening production was Richard Sheridan's \"\"The School for Scandal\"\". Described"} +{"qid": "test825", "pid": "19272993", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Theatre Royal, Melbourne\"\n1932. In 1933 it was finally demolished, and replaced by Manton's department store, later becoming a Coles store, itself redeveloped into a Target store in the 1970s. Theatre Royal, Melbourne The Theatre Royal was one of the premier theatres in the city of Melbourne, the capital of Victoria, Australia, throughout the 19th century and early 20th century. First built in 1855, it was located at what is now 236 Bourke Street, Melbourne, in the heart of what was once the city's theatre and entertainment district. The Theatre Royal was built in 1855 by John Melton Black. It was capable of"} +{"qid": "test825", "pid": "2641974", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"City of Whittlesea\"\nCity of Whittlesea The City of Whittlesea is a local government area located in the outer northern suburbs of Melbourne, the state capital of Victoria, Australia. The city covers an area of , and at the 2016 Census, it had a population of 197,491. What became the City of Whittlesea had its origins in two separate districts. The first, Whittlesea, was incorporated on 12 December 1862 and became a Shire in 1874. The second, Epping, was incorporated on 25 July 1864, became the Shire of Darebin on 7 October 1870 and was renamed back to Shire of Epping on 22"} +{"qid": "test825", "pid": "2641983", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"City of Whittlesea\"\n1997. The mayor is elected yearly from amongst the elected councillors to serve as leader of the council. City of Whittlesea The City of Whittlesea is a local government area located in the outer northern suburbs of Melbourne, the state capital of Victoria, Australia. The city covers an area of , and at the 2016 Census, it had a population of 197,491. What became the City of Whittlesea had its origins in two separate districts. The first, Whittlesea, was incorporated on 12 December 1862 and became a Shire in 1874. The second, Epping, was incorporated on 25 July 1864, became"} +{"qid": "test825", "pid": "3487147", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Sky News Australia\"\nNZ politics. Sky News Australia has a bureau in every capital city in Australia, completing this with the opening of its Hobart studio in 2013. In 2016, it opened a bureau in Cairns, making it the first non-capital city bureau. In 2017, a Gold Coast bureau was opened marking the third non-capital city studio after Cairns and Geelong. The base of Sky News Australia is in the Sydney suburb of Macquarie Park, where the majority of its news and programming is broadcast from. Its Melbourne studio was upgraded in 2014, allowing it to be used as a secondary broadcast studio."} +{"qid": "test825", "pid": "11677682", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"City of Bairnsdale\"\nCity of Bairnsdale The City of Bairnsdale was a local government area about east of Melbourne, the state capital of Victoria, Australia. The City covered an area of , and existed from its split from the Shire of Bairnsdale in 1967 until 1994. Originally inhabited by the Kurnai Aborigines, the area was explored by Angus McMillan in 1840. It was McMillan who named the Mitchell River on which the nearby land the township stands. Two years later Frederick Jones became the first European settler in the area when he settled at what is now known as Lucknow, using the land"} +{"qid": "test825", "pid": "2942732", "query": "what was the first capital city of australia", "answer": "Sydney", "passage": "\"History of Canberra\"\nBurley Griffin. On 9 May 1988, a new, much larger Commonwealth Parliament House was opened on Capital Hill in State Circle, Parkes. This imposing complex of parliamentary chambers, public spaces, offices and other facilities replaced the outmoded (Provisional) Parliament House that had operated close by for some 60 years. The complex's elaborate opening ceremony was a centrepiece of Australia's bicentenary celebrations, which were held nationwide to mark the 200th anniversary of the arrival of the First Fleet from England, and the foundation of European settlement in what was to become the City of Sydney in 1788. Significantly, the Australian Capital"} +{"qid": "test825", "pid": "1530558", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Capital city\"\nof Australia are Adelaide; Brisbane; Hobart; Melbourne; Perth; and Sydney. In Australia, the term \"\"capital cities\"\" is regularly used to refer to the aforementioned state capitals plus the federal capital Canberra and Darwin, the capital of the Northern Territory. Abu Dhabi is the capital city of the Emirate of Abu Dhabi and the United Arab Emirates overall. In unitary states which consist of multiple constituent nations, such as the United Kingdom or the Kingdom of Denmark, each will usually have its own capital city. Unlike in federations, there is usually not a separate national capital, but rather the capital city"} +{"qid": "test825", "pid": "11663863", "query": "what was the first capital city of australia", "answer": "New South Wales", "passage": "\"Postcodes in Australia\"\nthe same number as the first number for postcodes in that state, e.g. \"\"2xx\"\" in New South Wales, \"\"3xx\"\" in Victoria, etc. Radio callsigns pre-date postcodes in Australia by more than forty years. Australia's external territories are also included in Australia Post's postcode system. While these territories do not belong to any state, they are addressed as such for mail sorting: Three scientific bases in Antarctica operated by the Australian National Antarctic Research Expeditions share a postcode with the isolated sub-Antarctic island of Macquarie Island (part of Tasmania): Each state's capital city ends with three zeroes, while territorial capital cities"} +{"qid": "test825", "pid": "4188345", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Presbyterian Church of Eastern Australia\"\nthe most generally used translations at present. Of recent times the church has been stable with increasing diversity of ethnic origins represented in its membership and ministerial ranks. Until recent years the membership was largely outside major cities. Currently (2017) about 60% of the following is in the capital cities of Brisbane, Sydney and Melbourne. The PCEA is distinguished from the Presbyterian Church of Australia by adherence to \"\"the whole doctrine\"\" of the Confession of Faith as adopted by the Church of Scotland in 1647 and vindicated in the Scottish Disruption of 1843. It does not have what it considers"} +{"qid": "test825", "pid": "1599149", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Planned community\"\nextensive as Adelaide's, and the city rapidly outgrew its original boundaries. As such, it is often not considered to be a planned city, but the grid continues to define much of the character of the Melbourne city centre. Canberra, established in 1908, was planned as the capital city of Australia and is Australia's most notable and ambitious example of civic planning. The city was designed to be the Federal Capital following the federation of the six Australian colonies which formed the Commonwealth of Australia. The new nation required a capital that was located away from other major settlements such as"} +{"qid": "test825", "pid": "1599145", "query": "what was the first capital city of australia", "answer": "New South Wales", "passage": "\"Planned community\"\nyears and is now home to squatting farmers. Other notable planned cities in Brazil include Teresina (The first one, inaugurated in 1842), Petrópolis, Boa Vista, Palmas, Londrina, and Maringá (the latter two in the state of Paraná). Australia's most prominent fully planned city is Canberra, its capital, designed by American architect Walter Burley Griffin. The early central areas of two state capital cities – Adelaide and Melbourne – were also planned by surveyors. Walter Burley Griffin was Australia's most notable city planner, having also designed smaller cities and towns, including Leeton and Griffith in New South Wales. A controversial Japanese-backed"} +{"qid": "test825", "pid": "19515751", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"Historical European Martial Arts in Australia\"\nHistorical European Martial Arts in Australia The practice of Historical European Martial Arts (HEMA) first started in Australia in the late 19th century before largely dying out. There was then a revival of interest in the late 20th century to the current day. The practice of HEMA in Australia has grown to be a popular activity, with clubs all in capital cities, and the larger cities in Australia, Sydney and Melbourne, each have a number of clubs teaching various styles. Unusually, Australia was the scene for relatively well attended broadsword competitions, in the late 19th century. Some of the first"} +{"qid": "test825", "pid": "18490149", "query": "what was the first capital city of australia", "answer": "New South Wales", "passage": "\"Wallangarra railway station\"\nat the rear of the train, to be hauled at what was the time the most powerful locomotives on a narrow gauge in Australia. In 1921 the Federal Royal Commission into Standard Gauge had recommended that the mainland States of Australia and the Australian Government commit themselves to providing a uniform railway network linking the capital cities of Australia with a common gauge. As part of the standardisation of the disparate gauges, a new link between Sydney and Brisbane via Kyogle, New South Wales was identified as being a central element. Queensland in 1924 passed the South Brisbane Kyogle Grafton"} +{"qid": "test825", "pid": "630121", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "Canberra\nCanberra Canberra (, ) is the capital city of Australia. With a population of 410,301, it is Australia's largest inland city and the eighth-largest city overall. The city is located at the northern end of the Australian Capital Territory (ACT), south-west of Sydney, and north-east of Melbourne. A resident of Canberra is known as a Canberran. Although Canberra is the capital and seat of government, many federal government ministries have secondary seats in state capital cities, as do the Governor-General and the Prime Minister. The site of Canberra was selected for the location of the nation's capital in 1908 as"} +{"qid": "test825", "pid": "13320169", "query": "what was the first capital city of australia", "answer": "Melbourne", "passage": "\"The Big Blue (A-League)\"\nalmost instantaneous. The cities of Sydney and Melbourne have had a long-standing rivalry that dates back to pre-Federation Australia. Such was the rivalry, that neither city was chosen as the capital of Australia when federation occurred in 1901. Instead Melbourne served as a temporary capital until the permanent capital of Canberra, that was to be created closer to Sydney, was established. To this day, the two cities are generally competing for bragging rights to be Australia's premier city. Both believe they lay claim to this right as Sydney has been named world's best city by Condé Nast Traveler and Melbourne"} +{"qid": "test826", "pid": "20423363", "query": "who won the womens 2017 ncaa basketball tournament", "answer": "South Carolina", "passage": "\"2017–18 South Carolina Gamecocks women's basketball team\"\ndefeated Mississippi State to win their first National Championship. A'ja Wilson won the NCAA Basketball Tournament Most Outstanding Player award. !colspan=9 style=\"\"background:#73000A; color:#FFFFFF;\"\" | Exhibition !colspan=9 style=\"\"background:#73000A; color:#FFFFFF;\"\"| Regular season !colspan=9 style=\"\"background:#73000A; color:#FFFFFF;\"\" | SEC Women's Tournament !colspan=9 style=\"\"background:#73000A; color:#FFFFFF;\"\" | NCAA Women's Tournament 2017–18 South Carolina Gamecocks women's basketball team The 2017–18 South Carolina Gamecocks women's basketball team represented the University of South Carolina during the 2017–18 NCAA Division I women's basketball season. The Gamecocks, led by tenth year head coach Dawn Staley, played their home games at the Colonial Life Arena and were members of the Southeastern Conference."} +{"qid": "test826", "pid": "20618487", "query": "who won the womens 2017 ncaa basketball tournament", "answer": "South Carolina", "passage": "\"2017–18 Quinnipiac Bobcats women's basketball team\"\nseason 29–7, 17–3 in MAAC play to win MAAC regular season and tournament titles to earn an automatic trip to the NCAA Women's Tournament.. They upset Marquette and Miami (FL) in the first and second rounds before falling to eventual champions South Carolina in the sweet sixteen. !colspan=9 style=| Non-conference regular season !colspan=9 style=| MAAC regular season !colspan=9 style=| MAAC Women's Tournament !colspan=9 style=| NCAA Women's Tournament 2017–18 NCAA Division I women's basketball rankings 2017–18 Quinnipiac Bobcats women's basketball team The 2017–18 Quinnipiac Bobcats women's basketball team represents Quinnipiac University during the 2017–18 NCAA Division I women's basketball season. The"} +{"qid": "test827", "pid": "16597382", "query": "how many episodes of ray donovan series 3 are there", "answer": "12", "passage": "\"Ray Donovan\"\nRay Donovan Ray Donovan is an American television crime drama series created by Ann Biderman for Showtime. The twelve-episode first season premiered on June 30, 2013. The pilot episode broke viewership records, becoming the biggest premiere of all time on Showtime. Showtime renewed the show for a fourth season, which premiered on June 26, 2016. On August 11, 2016, Showtime renewed the show for a fifth season, which premiered on August 6, 2017. On October 23, 2017, the series was renewed for a 12-episode sixth season, filmed in New York City, which premiered on October 28, 2018. The drama is"} +{"qid": "test827", "pid": "13436125", "query": "how many episodes of ray donovan series 3 are there", "answer": "12", "passage": "\"Melanie Barnett\"\nat the center of many of the episodes' storylines. Mowry left the series in 2012 upon learning that her role would be reduced as a result of co-star Pooch Hall's decision to leave \"\"The Game\"\" to appear in the crime drama series \"\"Ray Donovan\"\". Both actors reprised their roles in the series' finale, in which Melanie gives birth to twins. Melanie was created by producer Mara Brock Akil. While casting the character, Brock Akil had doubts about whether Mowry would be the best choice, given her wholesome image from starring as Tia Landry on the sitcom \"\"Sister, Sister\"\", but hired"} +{"qid": "test827", "pid": "9417403", "query": "how many episodes of ray donovan series 3 are there", "answer": "12", "passage": "\"Nicole Willis\"\ntrack of the album \"\"Keep Reachin' Up\"\" was chosen by US President Barack Obama, as one of many songs on his Re-Election Campaign Spotify Playlist, in February 2012. The track \"\"If This Ain't Love(Don't Know What Is)\"\" was placed in the USA TV channel ABC's show \"\"Brothers & Sisters\"\" in season 2, episode 1 in 2007. The track \"\"No One's Gonna Love You\"\" was placed in Showtime's \"\"Ray Donovan\"\" in season 1, episode 3 in 2013. Nicole Willis & the Soul Investigators released an album, titled \"\"Tortured Soul\"\" in 2013 on Timmion Records in Finland, France, United Kingdom and other"} +{"qid": "test827", "pid": "16008526", "query": "how many episodes of ray donovan series 3 are there", "answer": "12", "passage": "\"Kerris Dorsey\"\n\"\"Walk the Line\"\" and \"\"Just Like Heaven\"\". She played a supporting role in the \"\"American Girl\"\" film \"\"\"\" as McKenna Brooks's reading tutor, Josie. Dorsey guest starred as Molly in one episode in \"\"Don't Trust the B---- in Apartment 23\"\", and had a small role in \"\"Sons of Anarchy\"\" as Ellie Winston. In 2012, she gained a supporting role as Sadie in the Disney Channel Original Movie \"\"Girl vs. Monster\"\". Dorsey stars as Bridget Donovan on the Showtime crime drama series \"\"Ray Donovan\"\". Since 2014, Dorsey has been in a relationship with Dylan Minnette, after meeting on the set of"} +{"qid": "test827", "pid": "10394315", "query": "how many episodes of ray donovan series 3 are there", "answer": "12", "passage": "\"Brooke Smith (actress)\"\nseries because the writers did not find that the \"\"magic and chemistry\"\" that Smith's character had with Sara Ramirez's character, Callie Torres, would sustain in the long run. Smith has also had roles on \"\"\"\", \"\"\"\", \"\"\"\", \"\"Law & Order\"\", \"\"Criminal Minds\"\" and \"\"The Hunger\"\". In 2012, Smith also appeared in an episode of the second season of the FX TV series \"\"American Horror Story\"\". In 2015, she appeared as Frances Simpson on the Showtime drama series \"\"Ray Donovan\"\". As of spring 2017, Smith is appearing in the recurring role of Sheriff Jane Greene in the fifth and final season"} +{"qid": "test828", "pid": "16002964", "query": "when does canada switch to daylight savings time", "answer": "the second Sunday of March", "passage": "\"Daylight saving time in Canada\"\nDaylight saving time in Canada Daylight saving time (DST) is observed in all ten Canadian provinces and three territories. However, there are exceptions within several provinces and the territory of Nunavut, including most of Saskatchewan, which observes Central Standard Time year-round even though the province is in the Mountain Zone, effectively putting it on DST year-round. Under the Canadian Constitution, laws related to timekeeping are a purely provincial or territorial matter. In regions where daylight saving time is used, it commences on the second Sunday of March, and standard time restarts on the first Sunday in November. Daylight saving time"} +{"qid": "test83", "pid": "8513182", "query": "what are the top five wine producing states", "answer": "Oregon", "passage": "\"Oregon wine\"\nand White Bordeaux varietals, Red and White Rhône varietals, Sangiovese, Tempranillo, Zinfandel and Tannat. For these wines, they follow the Federal guidelines of 75%. Oregon law has long forbidden use of place names, except as appellations of origin. Oregon is most famous for its Pinot noir, which is produced throughout the state. Pinot noirs from the Willamette Valley have received much critical acclaim from wine connoisseurs and critics, and Oregon is regarded as one of the premier Pinot-producing regions in the world. In 2016 the top five varieties produced in Oregon were: Other varieties with significant production by harvested acres"} +{"qid": "test83", "pid": "9238092", "query": "what are the top five wine producing states", "answer": "New York", "passage": "\"New York (state)\"\nyielding US$4.8 billion in direct economic impact from New York grapes, grape juice, and wine and grape products. New York is a major agricultural producer overall, ranking among the top five states for agricultural products including maple syrup, apples, cherries, cabbage, dairy products, onions, and potatoes. The state is the largest producer of cabbage in the U.S. The state has about a quarter of its land in farms and produced $3.4 billion in agricultural products in 2001. The south shore of Lake Ontario provides the right mix of soils and microclimate for many apple, cherry, plum, pear and peach orchards."} +{"qid": "test83", "pid": "14940100", "query": "what are the top five wine producing states", "answer": "California", "passage": "\"Roederer Estate\"\nRoederer Estate Roederer Estate is a California winery founded in 1982 by Jean-Claude Rouzaud, then president of its parent company, Champagne Louis Roederer. It produces estate-bottled sparkling wines from Mendocino County's cool, fog-shrouded Anderson Valley. As the California outpost of Champagne Louis Roederer, Roederer Estate winery is considered one of the top sparkling wine producers in the United States. Roederer Estate's sparkling wines are produced using estate-grown grapes exclusively from the winery's own vineyard and special oak-aged reserve wines are added to each blend. The winery produces four sparkling wines: the multi-vintage Roederer Estate Anderson Valley Brut, debuted in 1988,"} +{"qid": "test832", "pid": "14635621", "query": "what happened to the actor who played frost on rizzoli and isles", "answer": "Lee Thompson Young", "passage": "\"Rizzoli & Isles\"\nwith Harmon. Bruce McGill signed as Rizzoli's former partner, Sgt. Vince Korsak. Lee Thompson Young was cast as her new partner, Barry Frost. The role of Rizzoli's younger brother Frankie was filled by Jordan Bridges. Lorraine Bracco signed on as Rizzoli's mother, Angela. In early 2010, Billy Burke was announced as FBI agent Gabriel Dean. In late January 2010, TNT green-lighted the pilot to series with the new title \"\"Rizzoli & Isles\"\". Ten episodes were ordered and the show premiered on July 12, 2010. The series is produced on the Paramount Pictures lot in Hollywood, California. Owing to a sponsorship"} +{"qid": "test832", "pid": "14635623", "query": "what happened to the actor who played frost on rizzoli and isles", "answer": "Lee Thompson Young", "passage": "\"Rizzoli & Isles\"\nrenewed \"\"Rizzoli & Isles\"\" for an 18-episode sixth season. In August 2013, production on the fourth season was suspended when cast member Lee Thompson Young was found dead at his Los Angeles apartment from a self-inflicted gunshot wound. In the second half of the fifth season, a new character, crime scene analyst Nina Holiday, played by Idara Victor, was introduced. Series executive producer Jan Nash stated that Nina would not replace Young's character, Frost, but is her own character. Instead, the existing characters were given \"\"new dynamics\"\", according to Nash. For example, Jane and Korsak work more cases together, and"} +{"qid": "test832", "pid": "6144947", "query": "what happened to the actor who played frost on rizzoli and isles", "answer": "committed suicide", "passage": "\"Lee Thompson Young\"\ninvolved in a romance with one of the medical interns. Young played the role of Al Gough, an FBI agent, in the ABC television drama \"\"FlashForward\"\". He was written off the show in episode 7, when his character committed suicide to prevent the death of an innocent civilian. His last acting role was playing Barry Frost, partner of Jane Rizzoli (Angie Harmon) on the TNT drama \"\"Rizzoli & Isles\"\", and he made an appearance on the Fox drama \"\"The Good Guys\"\" as the brother and business partner of an arms dealer. Young graduated with Honors from the University of Southern"} +{"qid": "test832", "pid": "6144943", "query": "what happened to the actor who played frost on rizzoli and isles", "answer": "Lee Thompson Young", "passage": "\"Lee Thompson Young\"\nLee Thompson Young Lee Thompson Young (February 1, 1984 – August 19, 2013) was an American actor. He is best remembered for his adolescent role as the title character on the Disney Channel television series \"\"The Famous Jett Jackson\"\" (1998–2001) and as Chris Comer in the movie \"\"Friday Night Lights\"\" (2004). His last starring role was as Boston police detective Barry Frost on the TNT police drama series \"\"Rizzoli & Isles\"\" (2010–14). Young was born in Columbia, South Carolina, the son of Velma Elaine (née Love) and Tommy Scott Young. He was in the second grade when his parents' marriage"} +{"qid": "test836", "pid": "12310535", "query": "when was the death penalty reinstated in oregon", "answer": "1984", "passage": "\"John Gordon (Rhode Island)\"\nboth trial judges and the court of final appeal. Included in jury instructions, Durfee \"\"told the jurors to give greater weight to Yankee witnesses than Irish witnesses.\"\" Seven years after Gordon's execution, Rhode Island abolished the death penalty. Although it was reintroduced in 1872, no executions took place before capital punishment was abolished again by the state in 1984. In the 1990s, when the Rhode Island General Assembly considered reinstating the death penalty, Gordon's case has been used by those against reinstatement to demonstrate the dangers of capital punishment. Rhode Island Governor Lincoln Chafee pardoned Gordon on June 29, 2011,"} +{"qid": "test837", "pid": "202863", "query": "what was icq as related to instant messaging", "answer": "an instant messaging client", "passage": "ICQ\nnetwork protocol used by ICQ is proprietary and using a third party client is a violation of ICQ Terms of Service, nevertheless a number of third-party clients have been created by using reverse-engineering and protocol descriptions. These clients include: AOL supported clients include: ICQ ICQ is an instant messaging client that was first developed and popularized by the Israeli company Mirabilis in 1996. The name ICQ derives from the English phrase \"\"I Seek You\"\". Ownership of ICQ passed from Mirabilis to AOL in 1998, and from AOL to Mail.Ru Group in 2010. The ICQ client application and service were initially"} +{"qid": "test837", "pid": "202853", "query": "what was icq as related to instant messaging", "answer": "an instant messaging client", "passage": "ICQ\nICQ ICQ is an instant messaging client that was first developed and popularized by the Israeli company Mirabilis in 1996. The name ICQ derives from the English phrase \"\"I Seek You\"\". Ownership of ICQ passed from Mirabilis to AOL in 1998, and from AOL to Mail.Ru Group in 2010. The ICQ client application and service were initially released in November 1996 and the client was freely available to download. Users could register an account and would be assigned a number, like a phone number, for others to be able to contact them (users could also provide handles). ICQ was among"} +{"qid": "test837", "pid": "2083558", "query": "what was icq as related to instant messaging", "answer": "an instant messaging client", "passage": "\"Fire (instant messaging client)\"\nFire (instant messaging client) Fire is an instant messaging client for Mac OS X (previously for OPENSTEP), that can access IRC, XMPP, AIM, ICQ, Microsoft, Yahoo!, and Bonjour. All services are built on GPL’d libraries, including firetalk, libfaim, libicq2000, libmsn, XMPP, and libyahoo2. Fire supports OS X v10.1 and higher. The latest version of Fire is 1.5.6. The program is released under the GNU General Public License. On 2007-02-23, it was announced that there would be no future versions of Fire released. The official Fire website stated there were several reasons, the biggest being the loss of developers, followed by"} +{"qid": "test839", "pid": "10102275", "query": "chandra and bhaga river meets at the place", "answer": "Tandi, in Lahaul", "passage": "\"Rivers in Himachal Pradesh\"\n\"\"Luni\"\", the \"\"Banganga\"\" and the \"\"Chaki\"\". The northern and eastern tributaries of the river are snow fed and perennial, while the southern ones are seasonal. During the month of August, increase in the inflow sometimes results in floods. The Chandrabhaga or Chenab (Vedic name Askni), the largest river (in terms of volume of water) is formed after the meeting of two streams namely, Chandra and Bhaga at Tandi, in Lahaul. It flows and covers an area of . in Himachal, before entering Kashmir. The Chandra passes through the barren tribal land. The Ravi is born in Bara Banghal, Kangra district"} +{"qid": "test84", "pid": "20049005", "query": "what is final season of game of thrones", "answer": "The eighth", "passage": "\"Game of Thrones (season 8)\"\nto premiere in April 2019. Ramin Djawadi is set to return as the composer of the show for the eighth season. On December 6, 2018, HBO released the first official teaser trailer for the eighth season. Game of Thrones (season 8) The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Unlike the first six seasons that each had ten episodes and the seventh that had seven episodes, the eighth season will have only six episodes. Like the previous season, it will largely consist of original content not found"} +{"qid": "test84", "pid": "20048998", "query": "what is final season of game of thrones", "answer": "The eighth", "passage": "\"Game of Thrones (season 8)\"\nGame of Thrones (season 8) The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Unlike the first six seasons that each had ten episodes and the seventh that had seven episodes, the eighth season will have only six episodes. Like the previous season, it will largely consist of original content not found currently in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series and will also adapt material Martin has revealed to showrunners about the upcoming novels in the series, \"\"The Winds of Winter\"\" and \"\"A"} +{"qid": "test84", "pid": "20049002", "query": "what is final season of game of thrones", "answer": "eighth", "passage": "\"Game of Thrones (season 8)\"\nbe the last time that we would be doing this\"\". In an interview with \"\"Entertainment Weekly\"\", HBO programming president Casey Bloys stated that instead of the series finale being a feature film, the final season would be \"\"six one-hour movies\"\" on television. He continued, \"\"The show has proven that TV is every bit as impressive and in many cases more so, than film. What they're doing is monumental.\"\" Filming officially began on October 23, 2017, and concluded in July 2018. Co-creators David Benioff and D. B. Weiss have said that the seventh and eighth season would likely consist of fewer"} +{"qid": "test84", "pid": "20048999", "query": "what is final season of game of thrones", "answer": "The eighth", "passage": "\"Game of Thrones (season 8)\"\nDream of Spring\"\". The season will be adapted for television by David Benioff and D. B. Weiss. Filming officially began on October 23, 2017, and concluded in July 2018. The season is scheduled to premiere in April 2019. The eighth and final season of the fantasy drama television series \"\"Game of Thrones\"\" was announced by HBO in July 2016. Like the previous season, it will largely consist of original content not found currently in George R. R. Martin's \"\"A Song of Ice and Fire\"\" series; it will instead adapt material Martin has revealed to showrunners about the upcoming novels"} +{"qid": "test84", "pid": "20049001", "query": "what is final season of game of thrones", "answer": "eighth", "passage": "\"Game of Thrones (season 8)\"\nof Castamere\"\" and \"\"Mother's Mercy\"\". The final episode of the show will be directed by Benioff and Weiss, who have previously directed one episode each. At the show's South by Southwest panel on March 12, 2017, Benioff and Weiss announced the writers for the show to be Dave Hill (episode 1) and Bryan Cogman (episode 2). The showrunners will then divide up the screenplay for the remaining four episodes amongst themselves. Writing for the eighth season started with a 140-page outline. Benioff said that the divvying up process and who should write what section became more difficult because \"\"this would"} +{"qid": "test841", "pid": "4512071", "query": "when was the national flag of india adopted", "answer": "22 July 1947", "passage": "\"Flag code of India\"\nwith the honour and dignity of the flag,\"\" The Flag Code of India has been divided into three parts:- The National flag of India is officially described in the Flag Code of India as follows: \"\"The colour of the top panel shall be India saffron (Kesari) and that of the bottom panel shall be India green. The middle panel shall be white, bearing at its centre the design of Ashoka Chakra in navy blue colour with 24 equally spaced spokes.\"\" It was adopted in its present form during a meeting of the Constituent Assembly held on 22 July 1947, when"} +{"qid": "test841", "pid": "3742050", "query": "when was the national flag of india adopted", "answer": "15 August 1947", "passage": "\"Flag of India\"\nFlag of India The National Flag of India is a horizontal rectangular tricolour of India saffron, white and India green; with the ', a 24-spoke wheel, in navy blue at its centre. It was adopted in its present form during a meeting of the Constituent Assembly held on 22 July 1947, and it became the official flag of the Dominion of India on 15 August 1947. The flag was subsequently retained as that of the Republic of India. In India, the term \"\"tricolour\"\" () almost always refers to the Indian national flag. The flag is based on the ' flag,"} +{"qid": "test841", "pid": "3742099", "query": "when was the national flag of india adopted", "answer": "15 August 1947", "passage": "\"Flag of India\"\ntowards the head of the bier or coffin. The flag should not be lowered into the grave or burnt in the pyre. Flag of India The National Flag of India is a horizontal rectangular tricolour of India saffron, white and India green; with the ', a 24-spoke wheel, in navy blue at its centre. It was adopted in its present form during a meeting of the Constituent Assembly held on 22 July 1947, and it became the official flag of the Dominion of India on 15 August 1947. The flag was subsequently retained as that of the Republic of India."} +{"qid": "test843", "pid": "13544044", "query": "who is often associated with printing the first book using moveable type in germany", "answer": "Johannes Gutenberg", "passage": "\"36-line Bible\"\n36-line Bible The 36-line Bible, also known as the \"\"Bamberg Bible\"\", (and sometimes called a \"\"Gutenberg Bible\"\") was the second moveable-type-printed edition of the Bible. It is believed to have been printed in Bamberg, Germany, circa 1458–1460. No printer's name appears in the book, but it is possible that Johannes Gutenberg was the printer. The primary, or particular meaning of the term Gutenberg Bible, is the first moveable-type-printed edition of the Bible, circa 1450–1455. The Gutenberg has 42 lines of text on each page in comparison to the Bamberg's 36 lines, and the Bibles are thus sometimes therefore referred to"} +{"qid": "test843", "pid": "13544052", "query": "who is often associated with printing the first book using moveable type in germany", "answer": "Johannes Gutenberg", "passage": "\"36-line Bible\"\nJohn Ritblat Gallery in the British Library, and another is contained in the Plantin-Moretus Museum in Antwerp. 36-line Bible The 36-line Bible, also known as the \"\"Bamberg Bible\"\", (and sometimes called a \"\"Gutenberg Bible\"\") was the second moveable-type-printed edition of the Bible. It is believed to have been printed in Bamberg, Germany, circa 1458–1460. No printer's name appears in the book, but it is possible that Johannes Gutenberg was the printer. The primary, or particular meaning of the term Gutenberg Bible, is the first moveable-type-printed edition of the Bible, circa 1450–1455. The Gutenberg has 42 lines of text on each"} +{"qid": "test843", "pid": "10087707", "query": "who is often associated with printing the first book using moveable type in germany", "answer": "Johannes Gutenberg", "passage": "\"Michigan State University Libraries\"\nin Special Collections. Its title is Scriptores Rei Rusticae, and was printed in Venice in 1472, only a short time after the invention of the moveable type printing press by Johannes Gutenberg in Germany about 1455. A Division or Branch of the Special Collections Department is \"\"The Comic Art Collection\"\". The Comic Art Collection holds over 200,000 items. It is the largest library comic book collection in the world. While the bulk of the collection is made up of American comic books, it also includes over 1,000 books of collected newspaper comic strips, nearly 15,000 comics from other countries, and"} +{"qid": "test844", "pid": "2981790", "query": "when does the sa node begin electrical signaling", "answer": "spontaneously", "passage": "\"Sinoatrial node\"\nSinoatrial node The sinoatrial node (SA node), also known as sinus node, is a group of cells located in the wall of the right atrium of the heart. These cells have the ability to spontaneously produce an electrical impulse (action potential; see below for more details), that travels through the heart via the electrical conduction system (see figure 1) causing it to contract. In a healthy heart, the SA node continuously produces action potential, setting the rhythm of the heart and so is known as the heart's natural pacemaker. The rate of action potential production (and therefore the heart rate)"} +{"qid": "test844", "pid": "2981808", "query": "when does the sa node begin electrical signaling", "answer": "spontaneously", "passage": "\"Sinoatrial node\"\nthe discovery in a makeshift laboratory set up in a picturesque farmhouse in Kent, England, called Mann's Place. Their discovery was published in 1907. Sinoatrial node The sinoatrial node (SA node), also known as sinus node, is a group of cells located in the wall of the right atrium of the heart. These cells have the ability to spontaneously produce an electrical impulse (action potential; see below for more details), that travels through the heart via the electrical conduction system (see figure 1) causing it to contract. In a healthy heart, the SA node continuously produces action potential, setting the"} +{"qid": "test844", "pid": "3119350", "query": "when does the sa node begin electrical signaling", "answer": "spontaneously generated", "passage": "\"Electrical conduction system of the heart\"\nthe SA node's pacemaker activity. In order to maximize efficiency of contractions and cardiac output, the conduction system of the heart has: An electrocardiogram is a recording of the electrical activity of the heart. Under normal conditions, electrical activity is spontaneously generated by the SA node, the cardiac pacemaker. This electrical impulse is propagated throughout the right atrium, and through Bachmann's bundle to the left atrium, stimulating the myocardium of the atria to contract. The conduction of the electrical impulses throughout the atria is seen on the ECG as the P wave. As the electrical activity is spreading throughout the"} +{"qid": "test845", "pid": "4770559", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys Vol. 1\"\n\"\"This wonderful potpourri of stars reintroduced 'having a good time' to their vocabulary and the result was not a Harrison solo album but the superb debut of the Traveling Wilburys. The outing proved to be a major success, bringing out the best of each artist; in particular, this [album] proved to be the marvellous swan song for Roy Orbison who tragically died soon afterwards.\"\" After Harrison’s distribution deal with Warner Bros. expired in 1995, ownership of the Dark Horse Records catalog as well as the two Traveling Wilburys albums reverted to Harrison and the albums went out of print. On"} +{"qid": "test845", "pid": "10123549", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"The Traveling Wilburys Collection\"\nout of print in the mid 1990s. Two of the bonus tracks were completed for the box set by Jeff Lynne, who co-founded the Wilburys in 1988, and Harrison's son Dhani. \"\"The Traveling Wilburys Collection\"\" was commercially successful, topping albums charts in Britain, Ireland, Australia and several other countries. All songs written by the Traveling Wilburys. All songs written by the Traveling Wilburys, except where noted. The Vinyl Edition features the originally released Vol. 1 and Vol. 3 Plus a Bonus 12\"\" featuring: The set is available in four different configurations: Traveling Wilburys Additional musicians Though the original issues enjoyed"} +{"qid": "test845", "pid": "5226689", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"Traveling Wilburys Vol. 3\"\nownership of his Dark Horse Records catalog and the two Wilburys albums reverted to him, and the albums went out of print. On June 12, 2007, \"\"Vol. 1\"\" and \"\"Vol. 3\"\" were reissued by Rhino Records as \"\"The Traveling Wilburys Collection\"\", packaged together with bonus tracks and a DVD. Additional personnel } Traveling Wilburys Vol. 3 Traveling Wilburys Vol. 3 is the second and final studio album by the Traveling Wilburys, a group consisting of George Harrison, Jeff Lynne, Bob Dylan and Tom Petty. It was released in October 29, 1990 as the follow-up to their 1988 debut, \"\"Traveling Wilburys"} +{"qid": "test845", "pid": "5226686", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys Vol. 3\"\nwithin the band had shifted with Roy Orbison's death, the four remaining members all adopted new Wilbury pseudonyms: Spike (George Harrison), Clayton (Jeff Lynne), Muddy (Tom Petty) and Boo (Bob Dylan). With Harrison and Lynne producing again, the sessions were undertaken in the spring of 1990. An additional track, a cover of \"\"Nobody's Child\"\", was recorded and released in June 1990 as a charity single in aid of Olivia Harrison's Romanian Angel Appeal. The song was also the title track of a multi-artist fundraising album compiled by the Harrisons, \"\"\"\". \"\"Traveling Wilburys Vol. 3\"\" was dedicated to the memory of"} +{"qid": "test845", "pid": "421497", "query": "who are the artists in the traveling wilburys", "answer": "Tom Petty", "passage": "\"Traveling Wilburys\"\nsessions. Referring to recording errors created by faulty equipment, Harrison jokingly remarked to Lynne, \"\"\"\"We'll bury\"\" 'em in the mix.\"\" Thereafter, they used the term for any small error in performance. Harrison first suggested \"\"the Trembling Wilburys\"\" as the group's name; at Lynne's suggestion, they amended it to \"\"Traveling Wilburys\"\". During his \"\"Rockline\"\" interview, Harrison voiced his support for Dylan, at a time when the latter was experiencing an artistic and commercial low point in his career. Harrison and Lynne became friends with Tom Petty in October 1987, when Petty and his band, the Heartbreakers, toured Europe as Dylan's backing"} +{"qid": "test845", "pid": "16356784", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"Heading for the Light\"\nof his spiritual search\"\". He says that it would have made \"\"a worthy \"\"Cloud Nine\"\" track\"\" and \"\"is quite explicit in its meaning, but so spirited that most listeners wouldn't have cared\"\". Traveling Wilburys Additional musicians Heading for the Light \"\"Heading for the Light\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1988 album \"\"Traveling Wilburys Vol. 1\"\". It was written primarily by George Harrison but credited to all five members of the band. Harrison sings the song with Jeff Lynne, who also co-produced the track and, with Harrison, formulated the idea for starting the Wilburys."} +{"qid": "test845", "pid": "4770560", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys Vol. 1\"\nJune 12, 2007, \"\"Volume One\"\" and \"\"Vol. 3\"\" were reissued by Rhino Records as \"\"The Traveling Wilburys Collection\"\", packaged together with bonus tracks and a DVD. The box set debuted at No. 1 on the UK Albums Chart and No. 9 on the US \"\"Billboard\"\" 200. Traveling Wilburys Additional personnel Production Traveling Wilburys Vol. 1 The Traveling Wilburys Vol. 1 is the debut studio album by the British-American supergroup Traveling Wilburys, comprising George Harrison, Jeff Lynne, Bob Dylan, Roy Orbison and Tom Petty. It was released in October 1988 to commercial success and critical acclaim. Although Harrison had long planned"} +{"qid": "test845", "pid": "5226685", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"Traveling Wilburys Vol. 3\"\nTraveling Wilburys Vol. 3 Traveling Wilburys Vol. 3 is the second and final studio album by the Traveling Wilburys, a group consisting of George Harrison, Jeff Lynne, Bob Dylan and Tom Petty. It was released in October 29, 1990 as the follow-up to their 1988 debut, \"\"Traveling Wilburys Vol. 1\"\". The band members again adopted pseudonyms for their contributions, using new names from the fictitious Wilbury brothers. Though it was their second release, the album was mischievously titled \"\"Vol. 3\"\" by George Harrison. According to Jeff Lynne, \"\"That was George's idea. He said, 'Let's confuse the buggers.'\"\" As the dynamics"} +{"qid": "test845", "pid": "10123548", "query": "who are the artists in the traveling wilburys", "answer": "George Harrison", "passage": "\"The Traveling Wilburys Collection\"\nThe Traveling Wilburys Collection The Traveling Wilburys Collection is a box set compilation album by the British-American supergroup the Traveling Wilburys. It comprises the two studio albums recorded by the band in 1988 and 1990, with additional bonus tracks, and a DVD containing their music videos and a documentary about the group. The box set was released on 11 June 2007 by Rhino, in association with Wilbury Records. The release was overseen by George Harrison's estate, as the rights holder for the Wilburys' catalogue, and ensured that the band's recordings were available for the first time since they went"} +{"qid": "test845", "pid": "6229964", "query": "who are the artists in the traveling wilburys", "answer": "Bob Dylan", "passage": "\"End of the Line (Traveling Wilburys song)\"\nWhere Near the End of My Time\"\" by radio on-air personality Bob Rivers. The song was used on the end credits of the Australian family comedy film \"\"\"\" in 2016 and for an episode of HBO's \"\"Crashing\"\" in 2018. End of the Line (Traveling Wilburys song) \"\"End of the Line\"\" is a song by the British-American supergroup the Traveling Wilburys. Released in October 1988, it was the final track on their debut album, \"\"Traveling Wilburys Vol. 1\"\". It was also issued as the band's second single, in January 1989. The recording features all the Wilburys except Bob Dylan as lead"} +{"qid": "test845", "pid": "6229961", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"End of the Line (Traveling Wilburys song)\"\nEnd of the Line (Traveling Wilburys song) \"\"End of the Line\"\" is a song by the British-American supergroup the Traveling Wilburys. Released in October 1988, it was the final track on their debut album, \"\"Traveling Wilburys Vol. 1\"\". It was also issued as the band's second single, in January 1989. The recording features all the Wilburys except Bob Dylan as lead singers: George Harrison, Jeff Lynne and Roy Orbison sing the choruses in turn, while Tom Petty sings the verses. The song was mainly written by Harrison and was assigned to his publishing company, Umlaut Corporation. In keeping with the"} +{"qid": "test845", "pid": "6437994", "query": "who are the artists in the traveling wilburys", "answer": "George Harrison", "passage": "\"Tweeter and the Monkey Man\"\nTweeter and the Monkey Man \"\"Tweeter and the Monkey Man\"\" is a song by the British–American supergroup the Traveling Wilburys that first appeared on the 1988 album \"\"Traveling Wilburys Vol. 1\"\". The songwriting credit goes officially to all members of the band, but the song is published by Bob Dylan's Special Rider Music label, indicating that the main writer is Dylan, who is also the lead singer on the record. This is partially contradicted by George Harrison's account of the song in the 2007 documentary \"\"The True History of the Traveling Wilburys\"\": \"\"Tweeter and the Monkey Man\"\" was really [written"} +{"qid": "test845", "pid": "8652872", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"She's My Baby (Traveling Wilburys song)\"\nmusic video for the single, which was directed by David Leland and produced by Limelight Films. The clip shows the four Wilburys and drummer Jim Keltner performing the track and a snippet of Dylan riding a bike on the set. Additional musicians She's My Baby (Traveling Wilburys song) \"\"She's My Baby\"\" is a song by the British–American supergroup the Traveling Wilburys and the opening track of their 1990 album \"\"Traveling Wilburys Vol. 3\"\". The song was written by all four members of the band – George Harrison, Jeff Lynne, Bob Dylan and Tom Petty – and each of them sing"} +{"qid": "test845", "pid": "421493", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nTraveling Wilburys The Traveling Wilburys (sometimes shortened to the Wilburys) were a British–American supergroup consisting of Bob Dylan, George Harrison, Jeff Lynne, Roy Orbison and Tom Petty. Originating from an idea discussed by Harrison and Lynne during the sessions for Harrison's 1987 album \"\"Cloud Nine\"\", the band formed in April 1988 after the five members united to record a bonus track for Harrison's next European single. When this collaboration, \"\"Handle with Care\"\", was deemed too good for such a limited release, the group agreed to record a full album, titled \"\"Traveling Wilburys Vol. 1\"\". Following Orbison's death in December 1988,"} +{"qid": "test845", "pid": "421526", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nOver Again\"\" contained a greeting that read \"\"Merry Christmas from Nelson and Pee Wee Wilbury.\"\" Traveling Wilburys The Traveling Wilburys (sometimes shortened to the Wilburys) were a British–American supergroup consisting of Bob Dylan, George Harrison, Jeff Lynne, Roy Orbison and Tom Petty. Originating from an idea discussed by Harrison and Lynne during the sessions for Harrison's 1987 album \"\"Cloud Nine\"\", the band formed in April 1988 after the five members united to record a bonus track for Harrison's next European single. When this collaboration, \"\"Handle with Care\"\", was deemed too good for such a limited release, the group agreed to"} +{"qid": "test845", "pid": "421496", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Traveling Wilburys\"\nof my mates ... It's this new group I got [in mind]: it's called the Traveling Wilburys, I'd like to do an album with them and then later we can all do our own albums again.\"\" According to Jeff Lynne, who co-produced \"\"Cloud Nine\"\", Harrison introduced the idea of the two of them starting a band together around two months into the sessions for his album, which began in early January 1987. When discussing who the other members might be, Harrison chose Bob Dylan and Lynne opted for Roy Orbison. The term \"\"Wilbury\"\" also originated during the \"\"Cloud Nine\"\""} +{"qid": "test845", "pid": "16356766", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"Heading for the Light\"\nHeading for the Light \"\"Heading for the Light\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1988 album \"\"Traveling Wilburys Vol. 1\"\". It was written primarily by George Harrison but credited to all five members of the band. Harrison sings the song with Jeff Lynne, who also co-produced the track and, with Harrison, formulated the idea for starting the Wilburys. The song was issued as a promotional single in the United States, where it peaked at number 7 on \"\"Billboard\"\"s Album Rock Tracks chart. The lyrics convey the singer's return to a sure path after a"} +{"qid": "test845", "pid": "219202", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Jeff Lynne\"\n(1990) and \"\"Long Wave\"\" (2012). Additionally, he began producing various artists. In 1988, under the pseudonyms Otis Wilbury and Clayton Wilbury, he co-founded the supergroup Traveling Wilburys with George Harrison, Bob Dylan, Roy Orbison, and Tom Petty. Lynne's songwriting and production collaborations with former Beatles led him to co-produce their \"\"Anthology\"\" reunion singles \"\"Free as a Bird\"\" (1995) and \"\"Real Love\"\" (1996). In 2014, Lynne reformed ELO and resumed concert touring under the moniker \"\"Jeff Lynne's ELO\"\". Lynne produced all fifteen ELO singles that rose to the Top 10 record charts in the UK. His production credits also include the"} +{"qid": "test845", "pid": "8652871", "query": "who are the artists in the traveling wilburys", "answer": "Jeff Lynne", "passage": "\"She's My Baby (Traveling Wilburys song)\"\nShe's My Baby (Traveling Wilburys song) \"\"She's My Baby\"\" is a song by the British–American supergroup the Traveling Wilburys and the opening track of their 1990 album \"\"Traveling Wilburys Vol. 3\"\". The song was written by all four members of the band – George Harrison, Jeff Lynne, Bob Dylan and Tom Petty – and each of them sing a portion of the track. The song was released as the first single from the album, although it was only issued as a promotional single in the United States. The lead guitar part is played by Gary Moore. The band filmed a"} +{"qid": "test845", "pid": "16356805", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Inside Out (Traveling Wilburys song)\"\nof pop-rocking\"\" typical of \"\"Vol. 3\"\" and that, when played next to \"\"Vol. 1\"\", \"\"you can't hear the join.\"\" Inside Out (Traveling Wilburys song) \"\"Inside Out\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1990 album \"\"Traveling Wilburys Vol. 3\"\". It was written by all the members of the band, which had been reduced to a foursome following the death of Roy Orbison in December 1988, and it was the first song they worked on for the album. The lyrics address environmental issues and describe a world turned yellow. Recording for the track began at a"} +{"qid": "test845", "pid": "16356795", "query": "who are the artists in the traveling wilburys", "answer": "Roy Orbison", "passage": "\"Inside Out (Traveling Wilburys song)\"\nInside Out (Traveling Wilburys song) \"\"Inside Out\"\" is a song by the British–American supergroup the Traveling Wilburys from their 1990 album \"\"Traveling Wilburys Vol. 3\"\". It was written by all the members of the band, which had been reduced to a foursome following the death of Roy Orbison in December 1988, and it was the first song they worked on for the album. The lyrics address environmental issues and describe a world turned yellow. Recording for the track began at a private studio in Bel Air in Los Angeles, in April 1990, and was completed three months later at George"} +{"qid": "test845", "pid": "421525", "query": "who are the artists in the traveling wilburys", "answer": "Tom Petty", "passage": "\"Traveling Wilburys\"\nalbums. The lead guitar on the \"\"Volume 3\"\" song \"\"She's My Baby\"\" was played by rock guitarist Gary Moore (\"\"Ken Wilbury\"\"). The Traveling Wilburys contributed the title track, \"\"Nobody's Child\"\", to the Romanian Angel Appeal benefit album \"\"\"\", released on 24 July 1990. Harrison appeared as Nelson Wilbury on Warner Bros. Records' 1988 holiday promo album \"\"Winter Warnerland\"\" (which also included Paul Reubens as \"\"Pee Wee Wilbury\"\"). In his capacity as producer, Harrison credited himself as \"\"Spike and Nelson Wilbury\"\" on his 1992 live album \"\"Live in Japan\"\". The same year, the Tom Petty and the Heartbreakers single \"\"Christmas All"} +{"qid": "test846", "pid": "2977816", "query": "who plays artemisia in 300 rise of an empire", "answer": "Eva Green", "passage": "\"Eva Green\"\ncurse turns Johnny Depp's character into a vampire in Tim Burton's \"\"Dark Shadows\"\". In 2014, she played Artemisia in the \"\"300\"\" sequel, \"\"\"\" for which she received excellent reviews. Rafer Guzman in his \"\"Newsday\"\" review stated, \"\"The one bright spot is Eva Green as Xerxes' machinator, Artemesia, a raccoon-eyed warrior princess... Green plays a snarling, insatiable, self-hating femme fatale and completely steals the show.\"\" Stephanie Zacharek writing for \"\"The Village Voice\"\" exclaimed, \"\"\"\"Rise of an Empire\"\" might have been essentially more of the same, but for one distinction that makes it 300 times better than its predecessor: Mere mortals of"} +{"qid": "test846", "pid": "16489511", "query": "who plays artemisia in 300 rise of an empire", "answer": "Eva Green", "passage": "\"300: Rise of an Empire\"\nthe \"\"Newark Star-Ledger\"\" gave the film one and a half stars out of four, saying \"\"There is much grinding of teeth, and mauling of history, and anachronistic use of gunpowder, until we plug our ears and desperately pray to the gods of Olympus, or the brothers of Warner, that they might make an end.\"\" Despite mixed reviews for the film as a whole, Eva Green's performance as the naval officer Artemisia received rave reviews, with some going so far as to say she was more interesting than the heroes, and saved the film. Ty Burr of \"\"The Boston Globe\"\", in"} +{"qid": "test846", "pid": "16489513", "query": "who plays artemisia in 300 rise of an empire", "answer": "Eva Green", "passage": "\"300: Rise of an Empire\"\nthan its predecessor: Mere mortals of Athens, Sparta, and every city from Mumbai to Minneapolis, behold the magnificent Eva Green, and tremble!\"\" Paul Cartledge, a professor of Greek culture at Cambridge University, noted that the film contains historical errors. For example, Darius was not killed as depicted as neither Xerxes nor Darius was present at the Battle of Marathon. Artemisia, historically a queen and not an abused, orphaned slave, actually argued against sailing into the straits and survived the Persian Wars. In addition, the Spartan navy contributed a mere sixteen warships to the Greek fleet of 400 warships in the"} +{"qid": "test846", "pid": "2230346", "query": "who plays artemisia in 300 rise of an empire", "answer": "Eva Green", "passage": "\"Artemisia I of Caria\"\n1962 film, \"\"The 300 Spartans\"\", Artemisia is portrayed by Anne Wakefield. Artemisia appears in Gore Vidal's 1981 (and 2002 release) historical novel \"\"Creation (novel)\"\". In Vidal's depiction, she had a long relationship with the Persian general Mardonius, who at some periods lived in Halicarnassus and acted unofficially as her consort - but that she refused to marry him, determined to preserve her independence. In the 2014 film, \"\"\"\", Artemisia is featured as the main antagonist and is portrayed by Eva Green. Artemisia is the protagonist in \"\"The Blood Throne of Caria\"\" by Roy Casagranda, released on September 10, 2018. Casagranda's"} +{"qid": "test846", "pid": "16489512", "query": "who plays artemisia in 300 rise of an empire", "answer": "Eva Green", "passage": "\"300: Rise of an Empire\"\nhis positive review stated, \"\"\"\"Rise of an Empire\"\" may strike some as an improvement on the first film, if only for two reasons: naval warfare and the glorious absurdity of Eva Green.\"\" According to Rafer Guzman's \"\"Newsday\"\" review, \"\"The one bright spot is Eva Green as Xerxes' machinator, Artemesia, a raccoon-eyed warrior princess... Green plays a snarling, insatiable, self-hating femme fatale and completely steals the show.\"\" And perhaps most emphatically, Stephanie Zacharek writing for \"\"The Village Voice\"\" exclaimed, \"\"\"\"Rise of an Empire\"\" might have been essentially more of the same, but for one distinction that makes it 300 times better"} +{"qid": "test846", "pid": "16489502", "query": "who plays artemisia in 300 rise of an empire", "answer": "Eva Green", "passage": "\"300: Rise of an Empire\"\nweekend, the film dropped to number five, grossing $8.5 million. In its fourth weekend, the film dropped to number nine, grossing $4.2 million. \"\"300: Rise of an Empire\"\" received mixed reviews from critics. Review aggregation website Rotten Tomatoes gives the film an approval rating of 43% based on 181 reviews, with an average rating of 5/10. The site's critical consensus reads, \"\"It's bound to hit some viewers as an empty exercise in stylish gore, and despite a gonzo starring performance from Eva Green, \"\"300: Rise of an Empire\"\" is a step down from its predecessor.\"\" On Metacritic, the film has"} +{"qid": "test847", "pid": "19432911", "query": "who is the most played artist on spotify", "answer": "Ed Sheeran", "passage": "\"One Dance\"\nyear. On October 15, 2016, \"\"One Dance\"\" became the most played song ever on streaming media service Spotify, with over one billion individual streams, overtaking the previous record held by Major Lazer and DJ Snake's \"\"Lean On\"\". Ed Sheeran's \"\"Shape of You\"\" overtook \"\"One Dance\"\" as the most streamed song on Spotify on September 21, 2017. \"\"One Dance\"\" was the best-performing single worldwide of 2016 and is one of the best-selling singles of all-time. In early 2016, UK funky artist Kyla was first contacted by Drake's production team regarding the use of her 2008 song \"\"Do You Mind (Crazy Cousinz"} +{"qid": "test847", "pid": "15251344", "query": "who is the most played artist on spotify", "answer": "Ed Sheeran", "passage": "\"Ed Sheeran\"\nonly \"\"Uptown Funk\"\" by Mark Ronson featuring Bruno Mars keeping it from top spot). In 2014, combined streams on Sheeran's catalogue in Spotify reached 860 million; Spotify named him the most-streamed artist and \"\"x\"\" the most-streamed album. In the same year, the album made Sheeran iTunes' best-selling artist in the UK, Ireland and New Zealand. \"\"x\"\" was nominated for Album of the Year at the 57th Grammy Awards. Sheeran performed alongside John Mayer at the ceremony. On 25 February, Sheeran won British Male Solo Artist and British Album of the Year for \"\"x\"\" at the 2015 Brit Awards. On 21"} +{"qid": "test847", "pid": "13600831", "query": "who is the most played artist on spotify", "answer": "Justin Bieber", "passage": "\"Justin Bieber\"\neight that were achieved from the success of his album \"\"Purpose\"\" and was featured in the 2017 Edition. These records included the most streamed track on Spotify in one week, the most streamed album on Spotify in one week, the most simultaneous tracks and most simultaneous new entries on the US \"\"Billboard\"\" Hot 100 by a solo artist, the first act to occupy all top three positions simultaneously on the UK Singles Chart, the most followers on Twitter by a male, the most viewed music channel on YouTube by an individual, and the most subscribers on YouTube for a musician"} +{"qid": "test848", "pid": "7855075", "query": "which term describes the replacement of damaged cells to mend a tissue", "answer": "Stromal cells", "passage": "\"Cell damage\"\na cell cannot be regenerated the body will replace it with stromal connective tissue to maintain tissue/organ function. Stromal cells are the cells that support the parenchymal cells in any organ. Fibroblasts, immune cells, pericytes, and inflammatory cells are the most common types of stromal cells. ATP (adenosine triphosphate) depletion is a common biological alteration that occurs with cellular injury. This change can happen despite the inciting agent of the cell damage. A reduction in intracellular ATP can have a number of functional and morphologic consequences during cell injury. These effects include: DNA damage (or RNA damage in the case"} +{"qid": "test849", "pid": "312796", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "Ploidy\nhaploidy in parasite species. The nucleus of a eukaryotic cell is haploid if it has a single set of chromosomes, each one not being part of a pair. By extension a cell may be called haploid if its nucleus is haploid, and an organism may be called haploid if its body cells (somatic cells) are haploid. The number of chromosomes in a single set is called the haploid number, given the symbol \"\"n\"\". If the number of chromosomes in the set is 1 (n=1) then the nucleus (or cell, organism) may be called monoploid. Gametes (sperm and ova) are haploid"} +{"qid": "test849", "pid": "312786", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "Ploidy\nof chromosomes is called the monoploid number (\"\"x\"\"). In most animals, the haploid number (\"\"n\"\") is unique to gametes (sperm or egg cells), and refers to the total number of chromosomes found in a gamete, which under normal conditions is half the total number of chromosomes in a somatic cell. The haploid number for humans (half of 46) is 23; and the monoploid number equals 46 divided by the ploidy level of 2, which is also 23. When a human germ cell undergoes meiosis the two sets of 23 chromosomes are split in half to form gametes. After fusion of"} +{"qid": "test849", "pid": "5142870", "query": "where are haploid cells found in the human body", "answer": "ova", "passage": "\"Human reproductive system\"\ngametogenesis. This occurs when certain types of germ cells undergo meiosis to split the normal diploid number of chromosomes (n=46) into haploid cells containing only 23 chromosomes. In females, gametogenesis is known as oogenesis; this occurs in the ovarian follicles of the ovaries. This process does not produce mature ovum until puberty. In contrast with males, each of the original diploid germ cells or primary oocytes will form only one mature ovum, and three polar bodies which are not capable of fertilization. It has long been understood that in females, unlike males, all of the primary oocytes ever found in"} +{"qid": "test849", "pid": "535877", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "\"Human genome\"\nHuman genome
The human genome is the complete set of nucleic acid sequences for humans, encoded as DNA within the 23 chromosome pairs in cell nuclei and in a small DNA molecule found within individual mitochondria. These are usually treated separately as the nuclear genome, and the mitochondrial genome. Human genomes include both protein-coding DNA genes and noncoding DNA. Haploid human genomes, which are contained in germ cells (the egg and sperm gamete cells created in the meiosis phase of sexual reproduction before fertilization creates a zygote) consist of three billion DNA base pairs, while diploid genomes (found"} +{"qid": "test849", "pid": "3150829", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "\"Evolution of sexual reproduction\"\nmutations and decrease the overall reproductive success and fitness. For sexually reproducing populations, studies have shown that single-celled bottlenecks are beneficial for resisting mutation build-up. Passaging a population through a single-celled bottleneck involves the fertilization event occurring with haploid sets of DNA, forming one fertilized cell. For example, humans undergo a single-celled bottleneck in that the haploid sperm fertilizes the haploid egg, forming the diploid zygote, which is unicellular. This passage through a single cell is beneficial in that it lowers the chance of mutations from being passed on through multiple individuals. Further studies using \"\"Dictyostelium discoideum\"\" suggest that this"} +{"qid": "test849", "pid": "535936", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "\"Human genome\"\nthe environment and the genome. Human genome
The human genome is the complete set of nucleic acid sequences for humans, encoded as DNA within the 23 chromosome pairs in cell nuclei and in a small DNA molecule found within individual mitochondria. These are usually treated separately as the nuclear genome, and the mitochondrial genome. Human genomes include both protein-coding DNA genes and noncoding DNA. Haploid human genomes, which are contained in germ cells (the egg and sperm gamete cells created in the meiosis phase of sexual reproduction before fertilization creates a zygote) consist of three billion DNA base"} +{"qid": "test849", "pid": "5022160", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "\"Reproductive biology\"\ngives rise to four spermatids through meiosis. Spermatids are now haploid and undergo differentiation into sperm cells. Later in reproduction the sperm will fuse with a female oocyte to form the zygote. Oogenesis is the formation of a cell who will produce one ovum and three polar bodies. Oogenesis begins in the female embryo with the production of oogonia from primordial germ cells. Like spermatogenesis, the primordial germ cell undergo mitotic division to form the cells that will later undergo meiosis, but will be halted at the prophase I stage. This is known as the primary oocyte. Human females are"} +{"qid": "test849", "pid": "251347", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "Meiosis\nby the location of the organism phase(s). In the \"\"diplontic life cycle\"\" (with pre-gametic meiosis), of which humans are a part, the organism is diploid, grown from a diploid cell called the zygote. The organism's diploid germ-line stem cells undergo meiosis to create haploid gametes (the spermatozoa for males and ova for females), which fertilize to form the zygote. The diploid zygote undergoes repeated cellular division by mitosis to grow into the organism. In the \"\"haplontic life cycle\"\" (with post-zygotic meiosis), the organism is haploid instead, spawned by the proliferation and differentiation of a single haploid cell called the gamete."} +{"qid": "test849", "pid": "20559221", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "CCDC181\nincreased rate of my gene has found in the haploid phase of male cell during meiosis, thus it is believed to relate to sperm cell and aid in spermatogenesis. It is discovered that a significant high expression of CCDC 181 found on human testis, which is a male reproductive gland. This is related to the study of its encoded protein-CCDC181, which relates to human infertility when in low expression. Also, high expression of protein is found in the olfactory area and cortical subplate. Researchers have studied the expression of CCDC 181 under different conditions. One of the outstanding findings is"} +{"qid": "test849", "pid": "466568", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "Zygote\n(a haploid secondary oocyte with replicate chromosome copies) and a haploid sperm cell (male gamete)—combine to form a single 2n diploid cell called the zygote. Once the single sperm enters the oocyte, it completes the division of the second meiosis forming a haploid daughter with only 23 chromosomes, almost all of the cytoplasm, and the sperm in its own pronucleus. The other product of meiosis is the second polar body with only chromosomes but no ability to replicate or survive. In the fertilized daughter, DNA is then replicated in the two separate pronuclei derived from the sperm and ovum, making"} +{"qid": "test849", "pid": "2228344", "query": "where are haploid cells found in the human body", "answer": "ova", "passage": "\"Germ cell\"\nand a large mature egg, both being haploid cells. The polar bodies degenerate. Oocyte maturation stands by at metaphase II in most vertebrates. During ovulation, the arrested secondary oocyte leaves the ovary and matures rapidly into an egg ready for fertilization. Fertilization will cause the egg to complete meiosis II. In human females there is proliferation of the oogonia in the fetus, meiosis starts then before birth and stands by at meiotic division I up to 50 years, ovulation begins at puberty. A 10 - 20 μm large somatic cell generally needs 24 hours to double its mass for mitosis."} +{"qid": "test849", "pid": "5735236", "query": "where are haploid cells found in the human body", "answer": "ova", "passage": "Oogonium\nOogonium An oogonium (plural oogonia) is a small diploid cell which upon maturation forms a primordial follicle in a female fetus or the female (haploid or diploid) gametangium of certain thallophytes. Oogonia are formed in large numbers by mitosis early in fetal development from primordial germ cells. In humans they start to develop between weeks 4 and 8 and are present in the fetus between weeks 5 and 30. Normal oogonia in human ovaries are spherical or ovoid in shape and are found amongst neighboring somatic cells and oocytes at different phases of development. Oogonia can be distinguished from neighboring"} +{"qid": "test849", "pid": "1717320", "query": "where are haploid cells found in the human body", "answer": "sperm", "passage": "\"Egg cell\"\nbirth, or just after the egg leaves the mother's body. Some fish, reptiles and many invertebrates use this technique. Nearly all land plants have alternating diploid and haploid generations. Gametes are produced by the gametophyte, which is the haploid generation. The female gametophyte produces structures called archegonia, and the egg cells form within them via mitosis. The typical bryophyte archegonium consists of a long neck with a wider base containing the egg cell. Upon maturation, the neck opens to allow sperm cells to swim into the archegonium and fertilize the egg. The resulting zygote then gives rise to an embryo,"} +{"qid": "test85", "pid": "4830747", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Vikram Samvat\"\nVikram Samvat Vikram Samvat (IAST: Vikrama Samvat) (abbreviated as V.S. (or VS) or B.S. (or BS)); ) (also called the Bikrami calendar or sometimes just Hindu calendar) is the historical Hindu calendar of India and Nepal. It uses lunar months and solar sidereal years. It is the official calendar of Nepal. The Vikram Samvat is notable because many ancient and medieval era inscriptions use it. It is said to be named after the legendary king Vikramaditya, but the term \"\"Vikrama Samvat\"\" does not appear in the historical records before the 9th century, rather the same calendaring system is found by"} +{"qid": "test85", "pid": "3926925", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "Vaisakha\nVaisakha Vaisakha (, \"\"Vaiśākha\"\"; \"\"Vaiśākh\"\"; \"\"Boiśākh\"\"; \"\"Vaikāci\"\"; \"\"Baisākh\"\"; , \"\"Baiśākh\"\") is a month of the Hindu calendar that corresponds to April/May in the Gregorian Calendar. In the Indian national calendar Vaisakha is the second month of the year. It is the first month of the Nepali calendar (the Vikram Samvat), Odia Calender, Punjabi calendar and the Bengali calendar (where it is called \"\"Boishakh\"\"). Regional calendars used on the sub-continent have two aspects: lunar and solar. Lunar months begin with Chaitra and solar months start with Vaisakha Sankranti. However, regional calendars mark one one official new year is celebrated. In regions"} +{"qid": "test85", "pid": "4830760", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Vikram Samvat\"\ncalendar. For example, the year 2075 VS began in 2018 CE and will end in 2019 CE. The Rana rulers of Nepal made Vikram Samvat the official Hindu calendar in 1901 CE, which started as Samvat 1958. In Nepal, the new year begins with the first day of the month of Baishakh, which usually falls around 13-15 April in the Gregorian calendar. The first day of the new year is passionately celebrated in a historical carnival that takes place every year in Bhaktapur, called Bisket Jatra. From 2007 AD, Nepal Sambat is recognized as the national calendar. In India, the"} +{"qid": "test85", "pid": "4830754", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Vikram Samvat\"\nCambodia, Kerala, Kashmir, Manipur, Odisha, Punjab, Sri Lanka, Tamil Nadu and Thailand In addition to Nepal, the Vikram Samvat calendar is also recognized in North and East India, and in Gujarat among Hindus. Hindu religious festivals are based on Vikram Samvat. In North India the new year in Vikram Samvat starts from the first day of Chaitra Skukla paksha. In Buddhist communities, the month of Baishakh is associated with Vesak or Buddha's Birthday. It commemorates the birth, Enlightenment and passing of Gautama Buddha on the first full moon day in May, except in a leap year when the festival is"} +{"qid": "test85", "pid": "11088302", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Civil calendar\"\nCountries which do not use the Gregorian calendar are Afghanistan and Iran, which use the Solar Hijri calendar, Ethiopia (Ethiopian calendar) and Nepal (Vikram Samvat). Some countries use other calendars alongside the Gregorian calendar: Bangladesh (Bangla calendar), India (Indian national calendar) and Israel (Hebrew calendar). Other countries use modified versions of the Gregorian calendar: Taiwan (Minguo calendar), Thailand (Thai solar calendar), North Korea (North Korean Calendar) and Japan (Japanese calendar). Civil calendar The civil calendar is the calendar, or possibly one of several calendars, used within a country for civil, official or administrative purposes. The civil calendar is almost always"} +{"qid": "test85", "pid": "16030034", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "Ghimire\nVikram Samvat was established by Vikramaditya.Gudpal Bias was the Royal Purohit, Known as Royal Priest, of Vikramaditya. So, this cause Ghimire to believe that they have been here for more than 2000 year. Their Ancient decent named as Gudpal Bias settled in Dhamir from Ujjain.Gudpal Bias entered Western Nepal through Route of Kumaon , Garhwal and Jumla from Ujjain. Gudpal Bias is First known Ancestors Of Ghimire Settled in Dhamir from Ujjain. He belong to Family of Sandipani Bias. He is the Royal Purohit, Known as Royal Priest, of Vikramaditya, who establish Vikram Samvat , now Official Calendar of Nepal."} +{"qid": "test85", "pid": "19937629", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Date and time notation in Nepal\"\nDate and time notation in Nepal YYYY-MM-DD is official Nepali Vikram Samvat. An example of Vikram Samvat YYYY-DD-MM usage used is the online news portal Onlinekhabar. But for Gregorian calendar DD-MM-YY . The DD-MM-YY is the predominant short form of the numeric date usage. Almost all government documents need to be filled up in the YYYY-DD-MM format. An example of YYYY-DD-MM usage is the passport application form. The 12-hour notation is widely used in daily life, written communication, and is used in spoken language. The 24-hour notation is used in rare situations where there would be widespread ambiguity. Examples plane"} +{"qid": "test85", "pid": "19937630", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Date and time notation in Nepal\"\ndeparture and landing timings. A colon is widely used to separate hours, minutes and seconds (e.g., 08:00:20). Date and time notation in Nepal YYYY-MM-DD is official Nepali Vikram Samvat. An example of Vikram Samvat YYYY-DD-MM usage used is the online news portal Onlinekhabar. But for Gregorian calendar DD-MM-YY . The DD-MM-YY is the predominant short form of the numeric date usage. Almost all government documents need to be filled up in the YYYY-DD-MM format. An example of YYYY-DD-MM usage is the passport application form. The 12-hour notation is widely used in daily life, written communication, and is used in spoken"} +{"qid": "test85", "pid": "4830753", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Vikram Samvat\"\nking King Azes. However, this was disputed by Robert Bracey following discovery of an inscription of Vijayamitra, which is dated in two eras. The theory seems to be now thoroughly discredited by Falk and Bennett, who place the inception of the Azes era in 47–46 BCE. The traditional New Year of Vikram Samvat is one of the many festivals of Nepal, marked by parties, family gatherings, the exchange of good wishes, and participation in rituals to ensure good fortune in the coming year. It occurs in mid-April each year, and coincides with the traditional new year in Assam, Bengal, Burma,"} +{"qid": "test85", "pid": "4830757", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Vikram Samvat\"\nhas been widely used. With the arrival of the Islamic rule era, the Hijri Islamic calendar became the official calendar of various Sultanates and the Mughal Empire. During the colonial rule era of the Indian subcontinent, the Gregorian calendar was adopted and it is commonly used in the urban areas of India and Nepal. The predominantly Muslim countries of Pakistan and Bangladesh use the Islamic calendar since 1947, but older texts variously included the Bikrami and Gregorian calendar systems. In 2003, the India-based Shiromani Gurdwara Parbandhak Committee of Sikhism adopted the Nanakshahi calendar, a move that continues to be debated."} +{"qid": "test85", "pid": "237136", "query": "vikram samvat calender is official in which country", "answer": "Nepal", "passage": "\"Leap year\"\n- October and mid - November. Buddhist calendars in several related forms (each a simplified version of the Hindu calendar) are used on mainland Southeast Asia in the countries of Cambodia, Laos, Thailand, Myanmar (formerly Burma) and Sri Lanka. The Hindu Calendar also known as Vikram Samvat is used in Nepal as the national calendar. All the official work is done based on this calendar. The calendar followed in some parts of South India (mainly in Tamil Nadu) is solar. It has a leap year every four years. The Bahá'í calendar is a solar calendar composed of 19 months of"} +{"qid": "test850", "pid": "111087", "query": "form from material that has accumulated on the earths surface", "answer": "Sedimentary rock", "passage": "Earth\neruptions, flooding, weathering, glaciation, the growth of coral reefs, and meteorite impacts are among the processes that constantly reshape the Earth's surface over geological time. The continental crust consists of lower density material such as the igneous rocks granite and andesite. Less common is basalt, a denser volcanic rock that is the primary constituent of the ocean floors. Sedimentary rock is formed from the accumulation of sediment that becomes buried and compacted together. Nearly 75% of the continental surfaces are covered by sedimentary rocks, although they form about 5% of the crust. The third form of rock material found on"} +{"qid": "test850", "pid": "10692281", "query": "form from material that has accumulated on the earths surface", "answer": "Sedimentary rock", "passage": "\"Geology of solar terrestrial planets\"\nis basalt, a denser volcanic rock that is the primary constituent of the ocean floors. Sedimentary rock is formed from the accumulation of sediment that becomes compacted together. Nearly 75% of the continental surfaces are covered by sedimentary rocks, although they form only about 5% of the crust. The third form of rock material found on Earth is metamorphic rock, which is created from the transformation of pre-existing rock types through high pressures, high temperatures, or both. The most abundant silicate minerals on the Earth's surface include quartz, the feldspars, amphibole, mica, pyroxene, and olivine. Common carbonate minerals include calcite"} +{"qid": "test850", "pid": "1623638", "query": "form from material that has accumulated on the earths surface", "answer": "Sedimentary rock", "passage": "\"Rock (geology)\"\nform much of the continental crust. Over 700 types of igneous rocks have been described, most of them having formed beneath the surface of Earth's crust. These have diverse properties, depending on their composition and the temperature and pressure conditions in which they were formed. Sedimentary rocks are formed at the earth's surface by the accumulation and cementation of fragments of earlier rocks, minerals, and organisms or as chemical precipitates and organic growths in water (sedimentation). This process causes clastic sediments (pieces of rock) or organic particles (detritus) to settle and accumulate, or for minerals to chemically precipitate (evaporite) from"} +{"qid": "test853", "pid": "12063017", "query": "who is young george bailey in it's a wonderful life", "answer": "Robert James Anderson", "passage": "\"Bobby Anderson (actor)\"\nBobby Anderson (actor) Robert James Anderson (March 6, 1933 – June 6, 2008) was an American actor and television producer, most famous for his role as the young George Bailey in \"\"It's a Wonderful Life\"\". Bobby Anderson was born in Hollywood, to a showbiz family. He was the son of Eugene Randolph Anderson, an assistant director and production manager, and Marie Augusta Fleischer, and his brothers and cousins were editors and production managers in their own right. He was also the nephew, by marriage, of directors William Beaudine and James Flood, both of whom were married to Anderson's mother's sisters."} +{"qid": "test853", "pid": "12063019", "query": "who is young george bailey in it's a wonderful life", "answer": "Robert James Anderson", "passage": "\"Bobby Anderson (actor)\"\nHe also worked as a line producer and production consultant for films such as \"\"Passenger 57\"\", \"\"Demolition Man\"\" and \"\"Heat\"\". He died of cancer at age 75 at his home in Palm Springs, California. He was survived by his wife, 3 sons, 3 daughters and 11 grandchildren. Bobby Anderson (actor) Robert James Anderson (March 6, 1933 – June 6, 2008) was an American actor and television producer, most famous for his role as the young George Bailey in \"\"It's a Wonderful Life\"\". Bobby Anderson was born in Hollywood, to a showbiz family. He was the son of Eugene Randolph Anderson,"} +{"qid": "test854", "pid": "550609", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Battle of Stirling Bridge\"\nBattle of Stirling Bridge The Battle of Stirling Bridge was a battle of the First War of Scottish Independence. On 11 September 1297, the forces of Andrew Moray and William Wallace defeated the combined English forces of John de Warenne, 6th Earl of Surrey, and Hugh de Cressingham near Stirling, on the River Forth. The Earl of Surrey had won a victory over the aristocracy of Scotland at the Battle of Dunbar. However, by August 1297 Moray and Wallace controlled almost all of Scotland north of the Forth, except for Dundee. Surrey marched north with an army from Wicker to"} +{"qid": "test854", "pid": "717893", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "Stirling\nwith different lettering. Sibbald conflated the two mottos into a single rhyme; he gave no indication that he was aware of Boece's work. Stirling was first declared a royal burgh by King David in the 12th century, with later charters reaffirmed by subsequent monarchs. A ferry, and later bridge, on the River Forth at Stirling brought wealth and strategic influence, as did its tidal port at Riverside. Major battles during the Wars of Scottish Independence took place at the Stirling Bridge in 1297 and at the nearby village of Bannockburn in 1314 involving William Wallace and Robert the Bruce respectively."} +{"qid": "test854", "pid": "17634311", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"William Devereux, Baron Devereux of Lyonshall\"\ndied on 6 June 1296. His forces and Devereux then returned to England. In May 1297 William Wallace sacked Lanark Castle. William Devereux, as a holder of lands or rents in excess of 20L yearly, was summoned to muster at London 7 July 1297 for further service in parts beyond the seas. He was present at the Parliament assembled on 8 July. Devereux was at the Battle of Stirling Bridge on 11 September 1297 where the English were defeated by William Wallace. He was probably also with Edward I when William Wallace was defeated at the Battle of Falkirk on"} +{"qid": "test854", "pid": "16116121", "query": "who won the battle of stirling bridge 1297", "answer": "Andrew Moray", "passage": "\"William FitzWarin\"\nWilliam FitzWarin Sir William FitzWarin (died c. 1299) was an English soldier active during the First War of Scottish Independence. He was the constable of Urquhart Castle (1296-1297) and after the English defeat at the Battle of Stirling Bridge on 11 September 1297, he was appointed constable of Stirling Castle, which he later surrendered and was imprisoned in Dumbarton Castle. FitzWarin was made constable of Urquhart Castle following the English invasion of Scotland in 1296. Alarmed at the rebellion led by Andrew Moray, the English appointed sheriff of Inverness, Reginald le Chen ordered his principal lieutenants, including FitzWarin to a"} +{"qid": "test854", "pid": "7481845", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Clan Bruce\"\nthe summer of 1297 he again swore allegiance to Edward in what is known as the Capitulation of Irvine. Bruce appears to have sided with the Scots during the Battle of Stirling Bridge but when Edward returned victorious to England after the Battle of Falkirk, Bruce's lands of Annandale and Carrick were exempted from the lordships and lands which Edward assigned to his followers. Bruce, it seems, was seen as a man whose allegiance might still be won. Bruce and John Comyn (a rival for the throne) succeeded William Wallace as Guardians of Scotland, but their rivalry threatened the stability"} +{"qid": "test854", "pid": "8154189", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Clan Wallace\"\n\"\"Sir William Wallace was a younger son of Alan Wallace, a crown tenant in Ayrshire\"\". During the Wars of Scottish Independence William Wallace and Andrew de Moray began a successful military guerrilla campaign against the English. In 1297 they won a great and stunning victory over the English at the Battle of Stirling Bridge, after which Wallace was knighted as \"\"Guardian of Scotland\"\". Wallace was also in command at the Battle of Falkirk in 1298, but there he was defeated by the superiority of the English numbers. Wallace was eventually captured at Robroyston near Glasgow and delivered to Edward Longshanks"} +{"qid": "test854", "pid": "19272878", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"John Devereux, Lord of Munsley\"\nLanark Castle in May 1297. On 5 August 1297 the King provided John Devereux with letters of protection for the next year while he is on the king’s service overseas. William Wallace defeated the English at Stirling Bridge on 11 September 1297. Devereux gathered with the army for Edward I’s invasion of Scotland, and was probably present at the Battle of Falkirk. On 7 June 1300 John Devereux, son of Nicholas Devereux, was granted Letters of Protection while serving in Scotland under John de Usflete. John de Usflete was the husband of Lora, daughter and coheir of Gerard de Furnivale."} +{"qid": "test854", "pid": "16116124", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"William FitzWarin\"\nthe castle of\"\" Avoch\"\" in Ross\"\".\"\" Urquhart Castle was again besieged by Andrew Moray and with little supplies the castle garrison was eventually starved into submission. Present at the Battle of Stirling Bridge on 11 September 1297, he survived the defeat of the English army at the hands of the Scots under William Wallace. He was appointed, by John de Warenne, 6th Earl of Surrey the leader of the English army, to the constabulary of Stirling Castle, with Marmaduke Thweng as his deputy, following the rout of the English army. FitzWarin, with Marmaduke Thweng surrendered Stirling Castle and were committed"} +{"qid": "test854", "pid": "456991", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"William Wallace\"\nWilliam Wallace Sir William Wallace (Scottish Gaelic: \"\"Uilleam Uallas\"\" ; Norman French: \"\"William le Waleys\"\"; died 23 August 1305) was a Scottish knight who became one of the main leaders during the First War of Scottish Independence. Along with Andrew Moray, Wallace defeated an English army at the Battle of Stirling Bridge in September 1297. He was appointed Guardian of Scotland and served until his defeat at the Battle of Falkirk in July 1298. In August 1305, Wallace was captured in Robroyston, near Glasgow, and handed over to King Edward I of England, who had him hanged, drawn, and quartered"} +{"qid": "test854", "pid": "457015", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"William Wallace\"\nthe Wallace Monument dedicated in 1869. William Wallace Sir William Wallace (Scottish Gaelic: \"\"Uilleam Uallas\"\" ; Norman French: \"\"William le Waleys\"\"; died 23 August 1305) was a Scottish knight who became one of the main leaders during the First War of Scottish Independence. Along with Andrew Moray, Wallace defeated an English army at the Battle of Stirling Bridge in September 1297. He was appointed Guardian of Scotland and served until his defeat at the Battle of Falkirk in July 1298. In August 1305, Wallace was captured in Robroyston, near Glasgow, and handed over to King Edward I of England, who"} +{"qid": "test854", "pid": "8926275", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"William the Hardy, Lord of Douglas\"\nhad no such compunction. He was the first nobleman to join with Sir William Wallace in 1297 in rebellion; combining forces at Sanquhar, Durisdeer and later Scone Abbey where the two liberated the English treasury. With that booty Wallace financed further rebellion. Wallace joined his forces with that of Sir Andrew Moray and together they led the patriot army in the Battle at Stirling Bridge fought on 11 September 1297. They were joined by other patriots such as Robert Wishart Bishop of Glasgow, and the Morays of Bothwell, with a contingent of Douglases at the national muster at Irvine, North"} +{"qid": "test854", "pid": "6586225", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Abbey Craig\"\non the north bank of the River Forth, about 1 km to the south. The hill is the site of William Wallace's HQ ahead of the battle of Stirling Bridge in 1297, which was part of the Scottish Wars of Independence. The hilltop was also defended during the Early Medieval Period, and features a vitrified hillfort, destroyed by fire in the 6th or 7th centuries AD and then refortified in 8th or 9th centuries AD, as demonstrated by two phases of archaeological excavation, the first by SUAT Archaeology in 2001 and the second by Murray Cook, Stirling Council's Archaeologist in"} +{"qid": "test854", "pid": "20017730", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"English invasion of Scotland (1298)\"\nmost parts of Scotland. On 11 September 1297, the Scottish forces, under the joint command of Andrew de Moray and William Wallace, met an English army commanded by John de Warenne, Earl of Surrey, at the Battle of Stirling Bridge. The Scottish army deployed to the north-east of the bridge, and let the vanguard of the Earl of Surrey's army cross before attacking it. The English cavalry proved ineffective on the boggy ground around the bridge, and many were killed. The bridge collapsed as reinforcements tried to cross and the English on the opposite side of the river then fled"} +{"qid": "test854", "pid": "8064610", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Henry de Beaumont\"\nEdward I while he was campaigning in Flanders in 1297 against Philip IV of France. When Edward returned to England the following year to deal with the after effects of the defeat of his northern army by the Scots at the Battle of Stirling Bridge, he was accompanied by Beaumont. In the ensuing battle of Falkirk, Beaumont was one of the young knights who had his horse killed from under him by the spears of William Wallace's schiltrons. Beaumont again attended Edward I in the Scottish wars in 1302. Beaumont obtained large grants of manors and lands, including Folkingham, Barton-upon-Humber,"} +{"qid": "test854", "pid": "2288968", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Battle of Falkirk\"\nof the Antonine Fort. Battle of Falkirk The Battle of Falkirk (\"\"Blàr na h-Eaglaise Brice\"\" in Gaelic), which took place on 22 July 1298, was one of the major battles in the First War of Scottish Independence. Led by King Edward I of England, the English army defeated the Scots, led by William Wallace. Shortly after the battle Wallace resigned as Guardian of Scotland. King Edward learned of the defeat of his northern army at the Battle of Stirling Bridge. After concluding a truce with the French king, Philip the Fair in October 1297, he returned to England on 14"} +{"qid": "test854", "pid": "2288957", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Battle of Falkirk\"\nBattle of Falkirk The Battle of Falkirk (\"\"Blàr na h-Eaglaise Brice\"\" in Gaelic), which took place on 22 July 1298, was one of the major battles in the First War of Scottish Independence. Led by King Edward I of England, the English army defeated the Scots, led by William Wallace. Shortly after the battle Wallace resigned as Guardian of Scotland. King Edward learned of the defeat of his northern army at the Battle of Stirling Bridge. After concluding a truce with the French king, Philip the Fair in October 1297, he returned to England on 14 March 1298 to continue"} +{"qid": "test854", "pid": "8919487", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"Clan Haig\"\nto Dryburgh Abbey. Petrus is mentioned in several charters as \"\"Dominus de Bemersyde\"\" (Master of Bemersyde) which is evidence that the family were considerable magnates at that time. de Haga was amongst the nobles who were charged with the apprehension of John de Bisset for the murder of the Earl of Atholl in 1242. The Haig Barons of Bemersyde swore fealty to Edward I of England and appear on the Ragman Rolls in 1296. However, later they strongly supported the struggle for Scottish Independence and fought for William Wallace at the Battle of Stirling Bridge in 1297. The sixth Haig"} +{"qid": "test854", "pid": "8707244", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"History of Dundee\"\nthe Castle at Dundee at the outbreak of the First War of Independence in 1296 but the castle retaken by siege by the forces of William Wallace in 1297, immediately prior to the Battle of Stirling Bridge. From 1303 to 1312 the city was again occupied. Edward's removal resulted in the complete destruction of the Castle by Robert the Bruce, who had been proclaimed King of Scots at nearby Scone in 1306. In 1327, the Bruce granted the royal burgh a new charter. Later in the 14th century, during the conflict between England and France known as the Hundred Years'"} +{"qid": "test854", "pid": "20623727", "query": "who won the battle of stirling bridge 1297", "answer": "William Wallace", "passage": "\"William de Ormesby\"\nrule over the Scots. When William Wallace's revolt broke out in May 1297, Ormesby was attacked by Wallace at Scone. Ormesby who had been given warning at the last moment, succeeded in escaping, having to leave all his personal property. After the English defeat at the battle of Stirling Bridge on 11 September, Ormesby was appointed on 23 October to raise foot soldiers in Northumberland, Yorkshire, Derbyshire, and Nottinghamshire for the further campaign against the Scots. In March 1298 he was summoned to a council in London and continued duties at the king's bench. In 1305 he was also chief"} +{"qid": "test855", "pid": "20432485", "query": "who plays dylan in daddy's home 2", "answer": "Owen Vaccaro", "passage": "\"Owen Vaccaro\"\n\"\"Daddy's Home\"\". He attended Holy Innocents' Episcopal School in Atlanta. He co-starred in the Paramount Pictures films \"\"Daddy's Home\"\" (2015) and \"\"Daddy's Home 2\"\" (2017). \"\"Deadline Hollywood\"\" reported that Vaccaro \"\"is poised to breakout\"\" for playing the lead role of Lewis Barnavelt in the Universal Pictures film \"\"The House with a Clock in Its Walls\"\", with Jack Black and Cate Blanchett. Owen Vaccaro Owen Vaccaro is an American child actor. He has appeared in feature films since 2015, including \"\"Daddy's Home\"\" (2015) and \"\"Daddy's Home 2\"\" (2017), and in the lead role of \"\"The House with a Clock in Its"} +{"qid": "test855", "pid": "19470567", "query": "who plays dylan in daddy's home 2", "answer": "Owen Vaccaro", "passage": "\"Daddy's Home 2\"\n10, 2017. Although the film received generally negative reviews from critics, it grossed over $180 million worldwide on a $70 million budget. After finally becoming friends at the end of the first film, Brad Whittaker (Will Ferrell) and Dusty Mayron (Mark Wahlberg) have a co-dad system where their two children, Megan (Scarlett Estevez) and Dylan (Owen Vaccaro), take turns at each father's house. Dusty has also remarried, this time to Karen (Alessandra Ambrosio), a writer, and is stepdad to Adrianna (Didi Costine), Karen's daughter. Brad and his wife, Sara (Linda Cardellini), along with Dusty and Karen, attend a school play"} +{"qid": "test855", "pid": "19470583", "query": "who plays dylan in daddy's home 2", "answer": "Owen Vaccaro", "passage": "\"Daddy's Home 2\"\nIn January 2017, it was reported that Mel Gibson and John Lithgow were being sought to play the main characters' fathers in the film. The two were later confirmed to star, along with Linda Cardellini, John Cena, Owen Vaccaro and Scarlett Estevez, reprising their roles. Principal photography began on March 20, 2017. Scenes were filmed in Concord, Massachusetts,Clinton, Massachusetts,Framingham, Massachusetts, Lawrence, Massachusetts and Great Barrington, Massachusetts. The film was released in the United States on November 10, 2017. \"\"Daddy's Home 2\"\" was released on Digital HD on February 6, 2018, and was released on Blu-ray and DVD on February 20,"} +{"qid": "test857", "pid": "5340049", "query": "when did the right to buy scheme start", "answer": "1980", "passage": "\"Right to Buy\"\nRight to Buy The Right to Buy scheme is a policy in the United Kingdom (with the exception of Scotland since 1 August 2016) which gives secure tenants of councils and some housing associations the legal right to buy, at a large discount, the council house they are living in. There is also a Right to Acquire for assured tenants of housing association homes built with public subsidy after 1997, at a smaller discount. About 1,500,000 homes in the UK have been sold in this manner since the introduction of the scheme in 1980. Supporters claim that the programme has"} +{"qid": "test857", "pid": "17578327", "query": "when did the right to buy scheme start", "answer": "1980", "passage": "\"Help to Buy\"\nHelp to Buy Help to Buy is the name of a government programme in the United Kingdom that aims to help first time buyers, and those looking to move home, purchase residential property. It was announced in Chancellor of the Exchequer George Osborne's 2013 budget speech, and was described as \"\"the biggest government intervention in the housing market since the Right to Buy scheme\"\" of the 1980s. It is an extension of a previous programme called FirstBuy that was aimed solely at first-time buyers. Help to Buy has itself been expanded and extended. Subject to restrictions, which in some cases"} +{"qid": "test857", "pid": "19153117", "query": "when did the right to buy scheme start", "answer": "1980", "passage": "\"Public housing in the United Kingdom\"\noverspill estates. In Birmingham he forced the building of Castle Vale and the 15,590 dwelling Chelmsley Wood estate, Solihull. Laws restricted councils' investment in housing, preventing them subsidising it from local taxes, but more importantly, council tenants were given the Right to Buy in the Housing Act 1980 offering a discount price on their council house. Proposed as policy by Prime Minister Margaret Thatcher and carried out under the remit of Secretary of State for the Environment Michael Heseltine, the Right To Buy scheme allowed tenants to buy their home with a discount of 33–50% off the market value, depending"} +{"qid": "test859", "pid": "16732471", "query": "how many players have scored 10000 runs in odi", "answer": "11", "passage": "\"Babar Azam\"\nthe series Azam ended up scoring third consecutive century (117 from 106) and became the third batsman for Pakistan to score hundreds in three successive ODI innings. He also broke the record for scoring the most runs (360) in a three match ODI series. He became the only batsman to score 350+ runs in a three match ODI series. He made his Test debut for Pakistan against the West Indies in Dubai on 13 October 2016 and scored 69 runs in his first innings. He was the first player to score a fifty on his Test debut through a day/night"} +{"qid": "test859", "pid": "3668064", "query": "how many players have scored 10000 runs in odi", "answer": "11", "passage": "\"Gordon Greenidge\"\nGreenidge became the first player in One Day International (ODI) history to score a century in his 100th ODI when he scored 102* against Pakistan in 1988. In that game he achieved that milestone as captain, with his century eventually going in vain as West Indies lost that match. In total, Greenidge played in 108 Test matches, scoring 7,558 runs with 19 centuries, and in 128 ODIs, including the 1975 and 1983 World Cup Finals, scoring 5,134 runs and 11 centuries. Greenidge decided to pursue a coaching career and became the coach of the Bangladeshi national cricket team in 1997."} +{"qid": "test859", "pid": "679296", "query": "how many players have scored 10000 runs in odi", "answer": "11", "passage": "\"Sachin Tendulkar\"\nscoring a run in the only One Day International (ODI) he played. Thus Sachin Tendulkar became the youngest player to debut for India in Tests at the age of 16 years and 205 days and also the youngest player to debut for India in ODIs at the age of 16 years and 238 days. The series was followed by a tour of New Zealand in which he scored 117 runs at an average of 29.25 in Tests including an innings of 88 in the second Test. He was dismissed without scoring in one of the two one-day games he played,"} +{"qid": "test859", "pid": "14011717", "query": "how many players have scored 10000 runs in odi", "answer": "11", "passage": "\"Virender Sehwag\"\nthe 15th player to do that of all time, but weeks later he again scored crucial and aggressive pair of 55 against West Indies. In eight Test matches since April 2012, he has managed to score just 408 runs at an average of 31.38, with highest being 117. In six ODIs in the same period, he scored 183 runs at an average of 30.5 and was dropped for the ODI series against England. His last ODI century was the double hundred against the West Indies in December 2011. Former England batsman Geoffrey Boycott had hinted that it might be the"} +{"qid": "test86", "pid": "11743221", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\nof the Morning\"\", with lyrics in Swedish by Hasse Olsson as \"\"Killen ner' på Konsum svär att han är Elvis\"\" (\"\"The guy down Konsum\"\" swears he's Elvis). There's a Guy Works Down the Chip Shop Swears He's Elvis \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\" was Kirsty MacColl's first hit single, charting in the UK at #14 in 1981, and remaining in the charts for nine weeks. It reached #9 in the Irish charts. A promotional version was released in the US, which instead referenced a truck stop as opposed to the very British chip shop,"} +{"qid": "test86", "pid": "11743220", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\nThere's a Guy Works Down the Chip Shop Swears He's Elvis \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\" was Kirsty MacColl's first hit single, charting in the UK at #14 in 1981, and remaining in the charts for nine weeks. It reached #9 in the Irish charts. A promotional version was released in the US, which instead referenced a truck stop as opposed to the very British chip shop, but this was only available to DJs and did not get a full release. Norwegian singer Elisabeth Andreasson covered the song on her 1981 country album \"\"Angel"} +{"qid": "test86", "pid": "11743624", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"Terry (Kirsty MacColl song)\"\nTerry (Kirsty MacColl song) \"\"Terry\"\" is a song by Kirsty MacColl, released as a single in October 1983, and charting at #82 in the UK the following month. It was her first release after returning to Stiff Records, and was the last in a run of poorly selling singles released between \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\" and \"\"A New England\"\". The music video featured an appearance from actor and comedian Ade Edmondson who played MacColl's rejected boyfriend who got her back after fighting off a rival man. Just over a year later, in January"} +{"qid": "test86", "pid": "10369622", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"What Men Deserve to Lose\"\nFamous Banjo\"\" is named after the band's producer Calum MacLean whose stage name is Jason Famous, and when band member Innes travelled to the Staten Island, New York City to buy him a banjo. The title of the track \"\"There's a Girl Behind the Bar Who Think She's Garbo\"\", which mentions iconic Swedish film actress Garbo, is believed to be a reference to Kirsty MacColl's first hit \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\" from 1981. The track is dedicated to, as the liner notes describe, \"\"all those barmaids in New York City who tell you"} +{"qid": "test86", "pid": "16064112", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"Discworld characters\"\ntimeline in which this happened has, however, been eradicated following Death's intervention, and he was last seen working in a fried fish stall in Quirm, a clear reference to Kirsty MacColl's song \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\". During the novel several characters comment that he seems a bit \"\"elvish\"\" (also a reference to the same Kirsty MacColl song). In the animated adaptation of the novel, Imp was voiced by Andy Hockley, and his final fate is changed to working as a gardener at Susan's school; their interactions are rewritten throughout the adaptation to imply"} +{"qid": "test86", "pid": "14404788", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"Kirsty MacColl\"\nKirsty MacColl Kirsty Anna MacColl (10 October 1959 – 18 December 2000) was a British singer and songwriter. She recorded several pop hits in the 1980s and 1990s, including \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\" and cover versions of Billy Bragg's \"\"A New England\"\" and The Kinks' \"\"Days\"\". Her song \"\"They Don't Know\"\" was covered with great success by Tracey Ullman. MacColl also sang on recordings produced by her husband Steve Lillywhite, most notably \"\"Fairytale of New York\"\" by The Pogues. Kirsty MacColl was the daughter of folk singer Ewan MacColl (1915–1989) and dancer Jean"} +{"qid": "test86", "pid": "14404791", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"Kirsty MacColl\"\nlabel shortly before the song was to be released. The single was pulled, and only a few \"\"white label\"\" promo copies of the single are known to exist. MacColl moved to Polydor Records in 1981. She had a UK number 14 hit with \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\", taken from her critically acclaimed debut album \"\"Desperate Character\"\". In 1983, Polydor dropped her just as she had completed recording the songs for a planned second album (to be called \"\"Real\"\") which used more synthesizers and had new wave-styled tracks. She returned to Stiff, where pop"} +{"qid": "test86", "pid": "14404811", "query": "who wrote there's a guy works down the chip shop lyrics", "answer": "Kirsty MacColl", "passage": "\"Kirsty MacColl\"\nnot due to further releases (download sales counting toward the singles chart since 2005). A 7\"\" single was produced in 2012 to mark the 25th anniversary of its original appearance (Rhino Records WEA400), backed with an instrumental version. Kirsty MacColl Kirsty Anna MacColl (10 October 1959 – 18 December 2000) was a British singer and songwriter. She recorded several pop hits in the 1980s and 1990s, including \"\"There's a Guy Works Down the Chip Shop Swears He's Elvis\"\" and cover versions of Billy Bragg's \"\"A New England\"\" and The Kinks' \"\"Days\"\". Her song \"\"They Don't Know\"\" was covered with great"} +{"qid": "test860", "pid": "8489404", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Termination rates\"\nwere 8.75 rp/min into the Sunrise and Orange networks, and 7 rp/min into the Swisscom network. Termination charges in the UK are regulated by Ofcom. Maximum rates are set for a variety of number ranges including landline numbers starting 01 and 02, non-geographic numbers starting 03 and mobile numbers starting 071-075 and 077-079. The rates do not apply to landline or mobile numbers allocated in the Channel Islands or Isle of Man. Termination charges for calls to mobile numbers are reviewed every three years and annual reductions are set for the next three years. A separate set of regulations cover"} +{"qid": "test860", "pid": "10038256", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Ain't What You Do\"\nWay That You Do It)\"\". UK CD 1 UK CD 2 Ain't What You Do \"\"Ain't What You Do\"\" is a single released in 2003 by the UK hip hop/R&B group Big Brovaz. The single is the fifth and final single taken from Big Brovaz' 2002 debut album, \"\"Nu-Flow\"\". \"\"Ain't What You Do\"\" became Big Brovaz' fifth UK hit but their first to miss the top ten, peaking at number fifteen and spending seven weeks inside the top seventy-five of the UK Singles Chart. The single was not released in Australia. \"\"Ain't What You Do\"\" is based on Fun Boy"} +{"qid": "test860", "pid": "20332373", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Flipper (mobile application)\"\nFlipper (mobile application) Flipper is a mobile application created by London-based UK telecoms start up, Futuregen Communications Ltd. The application allows users to download additional UK mobile numbers onto their smartphones, from anywhere in the world. The company was founded by Josh Aspess and George Lineker, with the aim of providing security and safety online by offering a convenient means by which users can avoid giving out their personal phone number online, and yet still be contacted on their usual phone via a mobile number. The company successfully closed their first round of funding in December 2016 led by ex"} +{"qid": "test860", "pid": "5837827", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Streets of Love\"\ntop 20 in Germany, Greece, Italy, and Norway. It was also a top 20 hit in the UK (where it was released as a double A-side with \"\"Rough Justice\"\"), reaching number 15 in the UK Singles Chart, some 42 years after their first UK hit \"\"Come On\"\". \"\"Streets of Love\"\" is one of the few Rolling Stones songs licensed for use in advertising (See \"\"Start Me Up\"\", \"\"You Can't Always Get What You Want\"\", \"\"She's a Rainbow\"\"). It is heard in a television commercial for mobile telephony provider Vodafone Italy, in which the company's spokes-model Megan Gale also appears. The"} +{"qid": "test860", "pid": "18937851", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What Do You Mean?\"\nlater, it returned to the number one spot for another two weeks. This means that it has spent five non-consecutive weeks at number one in the UK Singles Chart. Bieber became only the fourth person to have the same single reach number one on the UK Singles Chart on three separate occasions. The other songs to top the chart three separate times are Frankie Laine's \"\"I Believe\"\", Guy Mitchell's \"\"Singing the Blues\"\" and Pharrell Williams' \"\"Happy\"\". 'What Do You Mean?' was the ninth best-selling single of 2015 in the UK with combined sales of 988,000 copies. In Australia, \"\"What Do"} +{"qid": "test860", "pid": "10038255", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Ain't What You Do\"\nAin't What You Do \"\"Ain't What You Do\"\" is a single released in 2003 by the UK hip hop/R&B group Big Brovaz. The single is the fifth and final single taken from Big Brovaz' 2002 debut album, \"\"Nu-Flow\"\". \"\"Ain't What You Do\"\" became Big Brovaz' fifth UK hit but their first to miss the top ten, peaking at number fifteen and spending seven weeks inside the top seventy-five of the UK Singles Chart. The single was not released in Australia. \"\"Ain't What You Do\"\" is based on Fun Boy Three and Bananarama's collaboration \"\"It Ain't What You Do (It's the"} +{"qid": "test860", "pid": "12698093", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What's a Girl to Do?\"\na total of 20 weeks (like its predecessor) in the top 50. In New Zealand the single debuted at number 40 before falling to number 44, then peaking at number 25 and falling out the next week. It then re-entered two weeks later at number 30, then fell out for the last time, bringing its top 50-week total to four. In the United Kingdom, the single debuted at number 61, and fell out the next week. Australian CD single UK CD1 UK CD2 What's a Girl to Do? \"\"What's a Girl to Do?\"\" is the follow-up single to the previous"} +{"qid": "test860", "pid": "11382709", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What Do You Want? (Adam Faith song)\"\nreach number one in the UK Singles Chart. \"\"What Do You Want?\"\" was covered by American singers Ersel Hickey in 1959 on Epic Records and Bobby Vee in 1960 on Liberty Records. It was recorded in French by Petula Clark as \"\"Moi, Je Préfère l'Amour a Tout Ça\"\" in 1959. What Do You Want? (Adam Faith song) \"\"What Do You Want?\"\" was a 1959 song that became a number one hit in the United Kingdom for Adam Faith. It was written by Les Vandyke and produced by John Burgess and arranged by John Barry. It first appeared on the UK"} +{"qid": "test860", "pid": "14319268", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What Can You Do for Me\"\nWhat Can You Do for Me \"\"What Can You Do For Me\"\" is the debut single by English electronic group Utah Saints. The song was released on 12 August 1991 and reached a peak position of number 10 in the UK Singles Chart. The song uses samples from \"\"There Must Be an Angel (Playing with My Heart)\"\" by Eurythmics and \"\"Ain't Nothin' Goin' on But the Rent\"\" by Gwen Guthrie. The single was released in August 1991 and entered the UK Singles Chart on 18 August at number 26. The song steadily rose up the chart and peaked at number"} +{"qid": "test860", "pid": "19556258", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Kyla (British singer)\"\nKyla (British singer) Kyla Reid ( Smith), commonly known as Kyla, is a British house music singer in the UK funky subgenre. She is best known for her song \"\"Do You Mind\"\" which was later featured on Drake's 2016 international hit \"\"One Dance\"\". Kyla features on the Crazy Cousinz UK funky song \"\"Do You Mind\"\", released in 2008, which peaked at number 48 on the UK Top Singles in 2009. DJ Paleface liked Kyla's voice after seeing her in a video for the song \"\"Be What I Wanna Be\"\". Kyla gave up her music career to start a family. In"} +{"qid": "test860", "pid": "19556261", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Kyla (British singer)\"\nKyla (British singer) Kyla Reid ( Smith), commonly known as Kyla, is a British house music singer in the UK funky subgenre. She is best known for her song \"\"Do You Mind\"\" which was later featured on Drake's 2016 international hit \"\"One Dance\"\". Kyla features on the Crazy Cousinz UK funky song \"\"Do You Mind\"\", released in 2008, which peaked at number 48 on the UK Top Singles in 2009. DJ Paleface liked Kyla's voice after seeing her in a video for the song \"\"Be What I Wanna Be\"\". Kyla gave up her music career to start a family. In"} +{"qid": "test860", "pid": "14393167", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Bad Boy (Skepta song)\"\neven bad boys like Skepta do what they do partly because they're not supposed to and it makes people look. Or at least, they SAY they do the things they do because of that. There is a difference.. In the mid-week chart in the UK Singles Chart, \"\"Bad Boy\"\" entered at number 34 on Wednesday 17 March 2010. Then 4 days after on Sunday 21 March 2010 climbed 8 places from the mid-week chart to number 26. In the same week, it reached number 8 on the UK R&B Chart and a number 1 on the UK Indie Chart. Bad"} +{"qid": "test860", "pid": "2602878", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Richard Ashcroft\"\nfirst single from the album, \"\"Break the Night with Colour\"\", was released on 9 January 2006, and entered the UK Singles Chart at number 3. Following his performance at Live 8, Ashcroft was booked as a support act for Coldplay's Twisted Logic Tour throughout North America and the UK, which started on 14 March in Ottawa, Canada. Ashcroft saw the support slot as \"\"a good chance to play to a significant amount of people and say, 'I’m back. And this is what I do'\"\". The album's second single, \"\"Music Is Power\"\", charted at number 20. On 18 April 2006, he"} +{"qid": "test860", "pid": "7157649", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Telephone numbers in Brazil\"\nof Paraná, Santa Catarina and Rio Grande do Sul, corresponding to area codes \"\"41\"\" through \"\"55\"\") did so on 6 November 2016. Initial digits \"\"6\"\" through \"\"8\"\" remain reserved for mobile lines, but as of August 2018 all mobile numbers in Brazil still start with \"\"9\"\" after the ninth digit was added, and it was not yet necessary to use the other reserved initial digits. Landline numbers (starting with \"\"2, 3, 4\"\" or \"\"5\"\") and trunked radio mobile telephony (iDEN) numbers were not changed and remained with eight digits. As iDEN numbers had the same format as the former 8-digit"} +{"qid": "test860", "pid": "3257914", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Telephone numbers in the United Kingdom\"\nas the termination points for non-geographic numbers, and by some automated systems such as alarms. As such they are not usually meant to be directly dialled. These numbers have been problematic as some mobile phone operators in the UK do not allow access to these ranges, and there may also be difficulty accessing these numbers from outside the UK. Regulator Ofcom proposes that in future these numbers be released for wider, general-purpose use in up to 70 area codes facing number shortage. In order to avoid confusion with codes beginning with these digits, the area code must always be dialled,"} +{"qid": "test860", "pid": "4711478", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Lethal Bizzle\"\nbe re-releasing \"\"Pow!\"\" on 13 December 2010, to try to get the Christmas number 1 in the UK Singles Chart, like many people were trying to do by using Facebook campaigns. On 18 November 2010, Lethal was interviewed by Grime Daily. Bizzle revealed: \"\"The whole Pow 2011 thing started as a joke. I was on Twitter one day and I said 'You know what? Pow for Christmas number 1'. And bare people retweeted it and someone was like 'Bizz you should do an updated version to go with it.'\"\" Lethal (saying to another source) said: \"\"I felt the original was"} +{"qid": "test860", "pid": "11382708", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What Do You Want? (Adam Faith song)\"\nWhat Do You Want? (Adam Faith song) \"\"What Do You Want?\"\" was a 1959 song that became a number one hit in the United Kingdom for Adam Faith. It was written by Les Vandyke and produced by John Burgess and arranged by John Barry. It first appeared on the UK Singles Chart on 20 November 1959 and spent 19 weeks there. It was at number one for three weeks, sharing the position for the final week with \"\"What Do You Want to Make Those Eyes at Me For?\"\" by Emile Ford & The Checkmates. It is the shortest song to"} +{"qid": "test860", "pid": "6308016", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"118 118 (UK)\"\n118 118 (UK) 118 118 is the UK telephone number for a US owned directory enquiries provider. Once wildly popular for its advertising featuring two runners, the service has experienced a dramatic decline in calls due to easily accessible information via mobile devices. Calls are answered from call centres in the Philippines, with some administration in Cardiff, Wales and other management offices in London that provides telephone numbers, given subscriber name and address, and answers general questions on any subject. 118 118 started operation in December 2002. In September 2013 the company started 118118Money, a provider of unsecured personal loans."} +{"qid": "test860", "pid": "11382665", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What Do You Want to Make Those Eyes at Me For?\"\nWhat Do You Want to Make Those Eyes at Me For? \"\"What Do You Want to Make Those Eyes at Me For?\"\" is a song written by Joseph McCarthy, Howard Johnson and James V. Monaco in 1916. It was released in 1917 by Ada Jones and Billy Murray on Victor Records (catalogue number 18224). It became a UK hit in 1959 when a doo-wop version, produced by Michael Barclay, became a number one hit for Emile Ford and the Checkmates over the Christmas and New Year of 1959/60, having overtaken Adam Faith's 'What Do You Want?'. Its stay in the"} +{"qid": "test860", "pid": "2986036", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"What's Love Got to Do with It (song)\"\nWhat's Love Got to Do with It (song) \"\"What's Love Got to Do with It\"\" is a song recorded by the American singer Tina Turner, released in 1984. It was taken from her fifth solo album, \"\"Private Dancer\"\" and became Turner's most successful single. Although Turner had already scored a UK Top 10 and US Top 30 hit some months earlier with her rendition of \"\"Let's Stay Together\"\", \"\"What's Love Got to Do with It\"\" gave Turner her first and only US number one. The song ranked number 309 on \"\"Rolling Stone\"\" magazine's list of \"\"The 500 Greatest Songs of"} +{"qid": "test860", "pid": "17580001", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Do What U Want\"\n100, and rose to a peak of number 26 after two weeks. \"\"Do What U Want\"\" also debuted at number seven on the Canadian Hot 100 and in its eleventh week on the chart, the song reached a new peak of number three. It was certified gold by Music Canada, for selling over 40,000 digital downloads. In the United Kingdom \"\"Do What U Want\"\" was deemed ineligible to enter the UK Singles Chart. The Official Charts Company released a statement explaining that the song would be allowed to chart only after the associated album's pre-order offer ended. The rules of"} +{"qid": "test860", "pid": "8841668", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Tell Me What You Want Me to Do\"\nvinyl UK CD Japan CD Germany CD Tell Me What You Want Me to Do \"\"Tell Me What You Want Me to Do\"\" is the title of a number-one R&B single by singer Tevin Campbell. To date, the single is Campbell's biggest hit peaking at number 6 on the \"\"Billboard\"\" Hot 100 and spending one week at number-one on the US R&B chart. The hit song is also Tevin's one and only Adult Contemporary hit, where it peaked at number 43. The song showcases Campbell's four-octave vocal range from a low note of E2 to a D#6 during the bridge"} +{"qid": "test860", "pid": "2368751", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "\"Utah Saints\"\nUtah Saints with the departure of Rae and Scott and the addition of Tim Garbutt - Jez Willis played drums with the band in the early days and has provided artwork and photography for a number of their releases. They first had chart success under the name Utah Saints with the singles \"\"What Can You Do For Me\"\" (UK No. 10), \"\"Something Good\"\" (their biggest UK success at No. 4) and \"\"Believe in Me\"\", a UK No. 8 chart hit, which they described as their vocal sample. \"\"What Can You Do For Me\"\" featured samples from Eurythmics' \"\"There Must Be"} +{"qid": "test860", "pid": "2885031", "query": "what do mobile numbers start with in the uk", "answer": "0", "passage": "Simpay\nin the UK. Simpay SimPay was a consortium which was founded to promote mobile payment in 2003 but which was closed as of June 2005. Simpay started in Spain by a number of mobile phone companies to build a open, interoperable solution, but was abandoned when key members pulled out in 2005. In February 2003, T-Mobile, Orange, Telefónica and Vodafone formed a new Mobile Payment Services Association (MPSA) with the goal to deliver an open, interoperable and commonly branded solution for payments via mobile phones, designed to work across all operator networks. In June 2003 the consortium re-branded itself as"} +{"qid": "test861", "pid": "16875316", "query": "who has won the most f1 grand prix", "answer": "Michael Schumacher", "passage": "\"Formula One drivers from Canada\"\nAzerbaijan Grand Prix, Stroll became the youngest rookie to achieve a podium finish in Formula One. Only one Canadian has won the \"\"F1\"\" Canadian Grand Prix, Gilles Villeneuve, at the 1978 Canadian Grand Prix. His son Jacques Villeneuve almost accomplished the feat at the 1997 Canadian Grand Prix, where he may have won, except for Michael Schumacher snatching pole position away from him and Jacques, in an effort to catch Michael, crashing into the Wall Of Champions. Lance Stroll would score his first World Championship points at the 2017 Canadian Grand Prix, the 50th anniversary grand prix. He is one"} +{"qid": "test861", "pid": "4364169", "query": "who has won the most f1 grand prix", "answer": "Michael Schumacher", "passage": "\"Intercity Istanbul Park\"\nPrix held at Istanbul Park. The winner of the inaugural Turkish Grand Prix was Kimi Räikkönen (McLaren-Mercedes), Fernando Alonso (Renault F1) came in second, followed by Juan Pablo Montoya (McLaren-Mercedes). The fastest race lap was achieved by Juan Pablo Montoya in 1'24.770, a time which is yet to be surpassed. The 2006 Turkish Grand Prix was won by Felipe Massa (Ferrari), who led from start to finish, Fernando Alonso (Renault F1) came in second and seven-time world champion Michael Schumacher in third. The fastest race lap was achieved by Michael Schumacher in 1'28.005. The winner of the 2007 Turkish Grand"} +{"qid": "test861", "pid": "8074175", "query": "who has won the most f1 grand prix", "answer": "Michael Schumacher", "passage": "\"2006 French Grand Prix\"\n2006 French Grand Prix The 2006 French Grand Prix (formally the XCII Grand Prix de France) was a Formula One motor race held at the Circuit de Nevers Magny-Cours, near Magny-Cours, France on 16 July 2006. The 70-lap race was the eleventh round of the 2006 Formula One season, the 57th French Grand Prix as part of the World Championship, and the 92nd overall. This race was a scene of yet another record breaking milestone for Michael Schumacher, who became the first driver in F1 history to win the same Grand Prix on eight different occasions (having previously won the"} +{"qid": "test862", "pid": "1774451", "query": "who is the present rajya sabha speaker of india", "answer": "Venkaiah Naidu", "passage": "\"Rajya Sabha\"\nsittings of the Houses of Parliament of India are rare, and in the history of the Republic, only three such joint-sessions have been held; the latest one for the passage of the 2002 Prevention of Terrorism Act. The Vice President of India (currently, Venkaiah Naidu) is the \"\"ex-officio\"\" Chairman of the Rajya Sabha, who presides over its sessions. The Deputy Chairman, who is elected from amongst the house's members, takes care of the day-to-day matters of the house in the absence of the Chairman. The Rajya Sabha held its first sitting on 13 May 1952. The salary and other benefits"} +{"qid": "test863", "pid": "11028972", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nThe episodes of \"\"Keeping Up with the Kardashians\"\" are also available on numerous streaming video on demand services, such as Amazon Video, iTunes, Google Play, Microsoft Movies & TV, Hulu, and Vudu, as well as the E! network's own streaming service. Keeping Up with the Kardashians Keeping Up with the Kardashians (often abbreviated KUWTK) is an American reality television series that airs on the E! cable network. The show focuses on the personal and professional lives of the Kardashian–Jenner blended family. Its premise originated with Ryan Seacrest, who also serves as an executive producer. The series debuted on October 14,"} +{"qid": "test863", "pid": "11028926", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nKeeping Up with the Kardashians Keeping Up with the Kardashians (often abbreviated KUWTK) is an American reality television series that airs on the E! cable network. The show focuses on the personal and professional lives of the Kardashian–Jenner blended family. Its premise originated with Ryan Seacrest, who also serves as an executive producer. The series debuted on October 14, 2007 and has subsequently become one of the longest-running reality television series in the country. The fifteenth season premiered on August 5, 2018. The series focuses mainly on sisters Kourtney, Kim, and Khloé Kardashian and their half-sisters Kendall and Kylie Jenner."} +{"qid": "test863", "pid": "19548556", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Rob & Chyna\"\nKardashian and Chyna their own series: The series airs on E!, an American cable network which features mostly entertainment-related programming, and reality television series, including \"\"Keeping Up with the Kardashians\"\", another series that both Rob Kardashian and Blac Chyna have been part of. The show is produced by Bunim/Murray Productions and Ryan Seacrest Productions, which also produce \"\"Keeping Up with the Kardashians\"\". On December 14, 2016, E! renewed the series for a second season consisting of eight episodes that was expected to premiere in 2017. In July 2017, E! confirmed the series was put on hold, and not on their"} +{"qid": "test863", "pid": "11028934", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\n2007, it was announced that the Kardashian and Jenner families would star in a yet-to-be-titled reality show on E! described as a \"\"new non-scripted family sitcom\"\", being produced by Ryan Seacrest and Bunim/Murray Productions. The series' announcement came one week after Paris Hilton and her friend Nicole Richie announced that their popular E! series, \"\"The Simple Life\"\", was ending. The show, entitled \"\"Keeping Up With the Kardashians\"\", premiered on October 14, 2007. The reality series centers around the members of the Kardashian-Jenner blended family, focusing on the sisters Kourtney, Kim and Khloé. Most episodes have very similar structure: the family"} +{"qid": "test863", "pid": "11028966", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nlarge Hispanic populations, particularly in the Southwest\"\". Despite negative reviews from critics, \"\"Keeping Up with the Kardashians\"\" has been nominated for, and won, several television awards. The reality series has received nominations for a Teen Choice Award in the Choice TV: Celebrity Reality Show category nine consecutive times between 2008 and 2016, winning the award in 2010, 2013, 2014 and 2016. The show also won a People's Choice Award as Favorite TV Guilty Pleasure in 2011. The Kardashian sisters have been nominated as part of the cast for five awards, winning four times; Kim Kardashian has been nominated for three"} +{"qid": "test863", "pid": "11028948", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Keeping Up with the Kardashians\"\nand her husband Lamar Odom, became the third spin-off of \"\"Keeping Up with the Kardashians\"\". The show premiered on April 10, 2011, and lasted two seasons. In March 2014, E! announced the fourth spin-off entitled \"\"Kourtney and Khloé Take The Hamptons\"\". The series premiered on November 2, 2014, and followed Kourtney and Khloé who relocated to the Hamptons to work on opening a new Dash pop-up store. The fifth spin-off series called \"\"Dash Dolls\"\" premiered on September 20, 2015. The reality series chronicles the daily life of the employees of the Dash boutique in Los Angeles. In June 2016, the"} +{"qid": "test863", "pid": "11905528", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Khloé Kardashian\"\nKhloé Kardashian Khloé Alexandra Kardashian (born June 27, 1984) is an American television personality, socialite, model, businesswoman, and entrepreneur. Since 2007, she has starred with her family in the reality television series, \"\"Keeping Up with the Kardashians\"\". Its success has led to the creation of spin-offs, including \"\"Kourtney and Khloé Take Miami\"\" (2009–2013) and \"\"Kourtney and Khloé Take The Hamptons\"\" (2014–2015). From September 2009 to October 2016, she was married to basketball player Lamar Odom, whom she married one month after they first met. They starred in their own reality television series, \"\"Khloé & Lamar\"\" (2011–2012). In 2009, Kardashian participated"} +{"qid": "test863", "pid": "11905537", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Khloé Kardashian\"\nthe Mavericks' season while she's in Dallas with her husband Lamar Odom.\"\" It aired on January 30, 2012. In October 2012, Kardashian and Mario Lopez were confirmed as the co-hosts of the second season of the American version of \"\"The X Factor\"\". Their first appearance on the series aired on October 31, 2012. It was confirmed on April 22, 2013 that Kardashian will not return to co-host \"\"The X Factor\"\" for its third season. On March 26, 2014, E! announced a \"\"Keeping Up with the Kardashians\"\" spin-off series titled \"\"Kourtney & Khloé Take the Hamptons\"\". \"\"The Hamptons\"\" follows Kourtney, Khloé,"} +{"qid": "test863", "pid": "17124296", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Kourtney and Khloé Take The Hamptons\"\nKourtney and Khloé Take The Hamptons Kourtney and Khloé Take The Hamptons is an American reality television series that premiered on E! on November 2, 2014. The series is the fourth spin-off show of \"\"Keeping Up with the Kardashians\"\", following \"\"Kourtney and Kim Take Miami\"\", \"\"Kourtney and Kim Take New York\"\", and \"\"Khloé & Lamar\"\". The show featured sisters Kourtney and Khloé Kardashian who opened a new D-A-S-H location in The Hamptons on Long Island, New York. The Kardashians' DASH boutique opened as a pop-up shop for the summer on the iconic Jobs Lane in Southampton Village. The family rented"} +{"qid": "test863", "pid": "17124297", "query": "latest series of keeping up with the kardashians", "answer": "14", "passage": "\"Kourtney and Khloé Take The Hamptons\"\na home on a peninsula in the Hamptons hamlet of North Sea. Kourtney and Khloé Take The Hamptons Kourtney and Khloé Take The Hamptons is an American reality television series that premiered on E! on November 2, 2014. The series is the fourth spin-off show of \"\"Keeping Up with the Kardashians\"\", following \"\"Kourtney and Kim Take Miami\"\", \"\"Kourtney and Kim Take New York\"\", and \"\"Khloé & Lamar\"\". The show featured sisters Kourtney and Khloé Kardashian who opened a new D-A-S-H location in The Hamptons on Long Island, New York. The Kardashians' DASH boutique opened as a pop-up shop for the"} +{"qid": "test864", "pid": "13685851", "query": "who plays meredith quill in guardians of the galaxy 2", "answer": "Laura Jane Haddock", "passage": "\"Laura Haddock\"\nLaura Haddock Laura Jane Haddock (born 21 August 1985) is an English actress. She is best known for portraying Kacie Carter in \"\"Honest\"\", Lucrezia in \"\"Da Vinci's Demons\"\", Meredith Quill in \"\"Guardians of the Galaxy\"\" and its sequel \"\"Guardians of the Galaxy Vol. 2\"\", Alison in \"\"The Inbetweeners Movie\"\" and Viviane Wembly in \"\"\"\". Born in Enfield, London and raised in Harpenden, Hertfordshire (where she attended St George's School), She left school at the age of 17 and moved to London to study drama. She trained at Arts Educational School in Chiswick. Haddock made her television debut in the television"} +{"qid": "test865", "pid": "11028941", "query": "who is the guy on keeping up with the kardashians", "answer": "Jonathan Cheban", "passage": "\"Keeping Up with the Kardashians\"\nthe show since the first season, as well as on the show's spin-offs. Cast members also include numerous friends and other acquaintances of the family members, most notably Malika Haqq and Jonathan Cheban who joined \"\"Keeping Up with the Kardashians\"\" in the second and third seasons, respectively. Most of the Kardashian sisters' significant others have appeared on the reality series. Kim's relationship with football player Reggie Bush was featured on the show when they were dating; after the breakup, Bush commented on appearing on the show saying that he never felt comfortable being followed by cameras, adding: \"\"I do it"} +{"qid": "test867", "pid": "6898817", "query": "locations for the film an englishman who went up a hill", "answer": "Llanrhaeadr-ym-Mochnant", "passage": "Llansilin\nLlansilin Llansilin is a village and local government community in Montgomeryshire, Powys, Wales, about 6 miles west of Oswestry. The community, which includes Llansilin village, a large rural area and the hamlets of Moelfre and Rhiwlas as well as the remote parish of Llangadwaladr, had a population of 648 at the 2001 census, increasing to 698 at the 2011 Census. There is also an electoral ward including the nearby village of Llanrhaeadr-ym-Mochnant with a population of 2,295. The village was a primary location for the making of the film \"\"The Englishman Who Went Up a Hill But Came Down a"} +{"qid": "test867", "pid": "3919532", "query": "locations for the film an englishman who went up a hill", "answer": "Llanrhaeadr-ym-Mochnant", "passage": "\"The Englishman who Went up a Hill but Came down a Mountain\"\nGarth Hill. Due to 20th century urbanisation of the area, it was filmed in the more rural Llanrhaeadr-ym-Mochnant and Llansilin in Powys. The Welsh Male Voice Choir used to provide background music throughout the film was, in fact, the London-based Gwalia Male Choir. The film is set in 1917 (with World War I in the background), and revolves around two English cartographers, the pompous George Garrad (Ian McNeice) and his junior Reginald Anson (Hugh Grant). They arrive at the fictional Welsh village of Ffynnon Garw ( \"\"Rough Fountain\"\" or \"\"Rough Spring\"\" in Welsh) to measure its \"\"mountain\"\" – only to"} +{"qid": "test867", "pid": "3045637", "query": "locations for the film an englishman who went up a hill", "answer": "Llanrhaeadr-ym-Mochnant", "passage": "Llanrhaeadr-ym-Mochnant\nVyrnwy. Bus services are operated by Tanat Valley Coaches, based in the village. Route 76 links the village with Llanfyllin, Meifod and Welshpool. Routes 79/79A connect the village with Llangynog, Llangedwyn, Penybontfawr and Oswestry. Parts of the 1995 film \"\"The Englishman Who Went Up a Hill But Came Down a Mountain\"\", starring Hugh Grant, were filmed in the village, portraying the real-life village of Taff's Well, in Rhondda Cynon Taf, which by 1995 had become too developed to use. More recently, the village featured in the 2012 film \"\"\"\" with David Tennant, as the village where the St. Bernadette's school"} +{"qid": "test868", "pid": "7675956", "query": "when did bihar bifurcate from bengal and some parts of chota nagpur merged into bengal", "answer": "1912", "passage": "\"Orissa Tributary States\"\nwas unclear until 1888, when the Secretary of State for India accepted the view that they did not form part of British India, and modified powers were handed over to the Orissa chiefs under the control of a superintendent. In 1905 five Oriya-speaking states of Bamra, Rairakhol, Sonpur, Patna, and Kalahandi State) were added from the Central Provinces and two states, Gangpur and Bonai, from the Chota Nagpur States. With the addition of these states, the total area was and the population was 3,173,395 per the 1901 census. In 1912, the province of Bihar and Orissa was detached from Bengal,"} +{"qid": "test868", "pid": "4794896", "query": "when did bihar bifurcate from bengal and some parts of chota nagpur merged into bengal", "answer": "1912", "passage": "Hazaribagh\nmany years, Lal Motor Company operated the rail-cum-bus service between Hazaribagh town and Hazaribagh Road railway station. In 1912, a new province of Bihar and Orissa was split from Bengal Province. In 1936, the province was split into separate provinces of Bihar and Orissa, with the Chota Nagpur Division being a part of Bihar. Bihar's boundaries remained mostly unchanged after Indian Independence in 1947. After the 1991 census, the district of Hazaribagh was divided into three separate districts, Hazaribagh, Chatra and Koderma. The two sub-divisions Chatra and Koderma were upgraded to the status of independent districts. In 2000, Jharkhand was"} +{"qid": "test868", "pid": "7327441", "query": "when did bihar bifurcate from bengal and some parts of chota nagpur merged into bengal", "answer": "1912", "passage": "\"Chota Nagpur Division\"\nPresidency. The title of the chief administrative officer was changed from Agent to Commissioner, and the officers in charge of the districts became Deputy Commissioners. The Commissioner exercised general control over the Chota Nagpur States. The present Divisional Commissioner is Shri. Surendra Singh Meena of the Indian Administrative Service (IAS) Chota Nagpur Division became part of the new province of Bihar and Orissa when it was created in 1912. In 1936 the province was split into the separate provinces of Bihar and Orissa, and the princely states were placed under the authority of the Eastern States Agency. The administrative headquarters"} +{"qid": "test869", "pid": "733940", "query": "when was the last time mount ruapehu erupted", "answer": "25 September 2007", "passage": "\"Mount Ruapehu\"\nclosed all major roads in the area, preventing thousands of motorists from travelling, and shut down the main rail system for the North Island. The river banks held and no spillovers occurred. There was no serious damage and no injuries. One family was trapped for around 24 hours after the lahar swept away the access route to their home. At about 8:20 p.m. on 25 September 2007, a hydrothermal eruption occurred without warning. One man, a 22-year-old primary school teacher, had a leg crushed by a rock during the eruption and a rescue operation was mounted to rescue him from"} +{"qid": "test871", "pid": "20874149", "query": "what proposition made the insurance commissioner an elected position", "answer": "Proposition 103", "passage": "\"Proposition 103\"\nProposition 103 California voters passed Proposition 103 on November 8, 1988. It in effect made insurance companies require \"\"prior approval\"\" from the California Department of Insurance before implementing property and casualty insurance rates. It passed with 51% of the vote. The measure expanded the Department's responsibility for enforcement to include: property insurance, automobile insurance, life insurance and other types of casualty coverage. Proposition 103 made the California Insurance Commissioner an elected position (previously being a governor-appointed position). The ballot measure required insurers \"\"roll back\"\" their rates 20 percent. Proposition 103 devised a process enabling consumer participation in the setting of"} +{"qid": "test871", "pid": "5449978", "query": "what proposition made the insurance commissioner an elected position", "answer": "Proposition 103", "passage": "\"California Insurance Commissioner\"\nCalifornia Insurance Commissioner California Insurance Commissioner has been an elected executive office position in California since 1991. Prior to that time, the Insurance Commissioner was appointed by the Governor. The officeholder is in charge of the California Department of Insurance. The current Insurance Commissioner is Democrat Dave Jones. As a result of the passage of Proposition 103 in 1988, the elected office of the California Insurance Commissioner was created in 1991. Previously, the position was held by a person appointed by the Governor. The Insurance Commissioner oversees the Department of Insurance. Democrat Dave Jones won the November 2, 2010 election"} +{"qid": "test871", "pid": "10986318", "query": "what proposition made the insurance commissioner an elected position", "answer": "Proposition 103", "passage": "\"California Department of Insurance\"\nto include property insurance, automobile insurance, life insurance and other types of casualty coverage, including a requirement that the property and casualty insurance premium rates must be pre-approved by the department. Proposition 103 also changed the status of the California Insurance Commissioner to that of an elected official, from being a governor-appointed position. Proposition 103 also expanded the department's important role in consumer affairs. In 2001, the CDI implemented and began overseeing the Slavery Era Insurance Registry, as per new legislation requirements signed into law in 2000. The registry was created to require insurance companies to disclose any historical data"} +{"qid": "test871", "pid": "13036225", "query": "what proposition made the insurance commissioner an elected position", "answer": "Proposition 103", "passage": "\"Consumer Watchdog\"\nsponsor it called Voter Revolt. The proposal turned into insurance reform Proposition 103 and promised voters a minimum 20% rollback in rates for property, auto and other kinds of insurance. The measure required auto insurers to base auto insurance premiums primarily on a policyholder's driving safety record, annual mileage driven and years driving experience. Proposition 103 also made the California Insurance Commissioner an elected official, subjected insurers to California's antitrust laws, civil rights laws and unfair business competition law. It also included a provision for \"\"intervenor fees,\"\" which has resulted in payments to Rosenfield and his organizations of more than"} +{"qid": "test871", "pid": "20874150", "query": "what proposition made the insurance commissioner an elected position", "answer": "Proposition 103", "passage": "\"Proposition 103\"\ninsurance rates, and allowed consumer \"\"intervenors\"\" witness fees and expenses in some cases. Insurance types regulated by Proposition 103 are: Personal automobile, dwelling fire, earthquake, homeowners, inland marine, and umbrella; Commercial aircraft, automobile, boiler and machinery, burglary and theft, business owners, earthquake, farm owners, some fidelity, fire, glass, inland marine, medical malpractice, miscellaneous, multi-peril, other liability, professional liability, special multi-peril, umbrella, and coverage under the Longshore and Harbor Workers' Compensation Act. According to the California Insurance Commissioner, Proposition 103 \"\"has saved consumers billions\"\" since being implemented, specifically a $4.29 billion per year dividend. It also claims \"\"Californians spent 0.3% less"} +{"qid": "test873", "pid": "11221725", "query": "who is the valley of the dolls based on", "answer": "Judy Garland", "passage": "\"(Theme from) Valley of the Dolls\"\n(Theme from) Valley of the Dolls \"\"(Theme from) Valley of the Dolls\"\" is a 1967 song by André and Dory Previn, composed for the film version of the Jacqueline Susann novel \"\"Valley of the Dolls\"\", and recorded by Dionne Warwick. Actress Barbara Parkins, who starred in the motion picture, suggested that Warwick be considered to sing the film's theme song. The song was to be given to Judy Garland, who had been fired from the film. Warwick performed the song, and when the film became a success in the early weeks of 1968, her single of the film theme became"} +{"qid": "test873", "pid": "2714398", "query": "who is the valley of the dolls based on", "answer": "Dean Martin", "passage": "\"Valley of the Dolls\"\nthe Mount Everest of her dreams, only to find herself back in the valley of the dolls. Susann had apparently been thinking about the novel for some time. Some years earlier, she had begun \"\"Underneath the Pancake\"\", a show business novel, with her actress friend Beatrice Cole (c. 1910–1999). Later, she considered writing a novel about drug usage in show business to be called \"\"The Pink Dolls\"\". \"\"Valley of the Dolls\"\" is considered to be a \"\"roman à clef\"\", with its characters based on famous figures such as Judy Garland, Carole Landis, Dean Martin, and Ethel Merman. In 1973, after"} +{"qid": "test873", "pid": "690678", "query": "who is the valley of the dolls based on", "answer": "Judy Garland", "passage": "\"Judy Garland\"\nRecords, and any other business dealings in which she could derive an income. This left Garland in a desperate situation which saw her sell her Brentwood home at a price far below its value and her taking the role of Helen Lawson in \"\"Valley of the Dolls\"\". In February 1967, Garland was cast as Helen Lawson in \"\"Valley of the Dolls\"\" for 20th Century Fox. According to co-star Patty Duke, Garland was treated poorly by director Mark Robson on the set of \"\"Valley of the Dolls\"\" and was primarily hired so as to augment publicity for the film. After her"} +{"qid": "test874", "pid": "10064581", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Michael \"\"Crocodile\"\" Dundee\"\nMichael \"\"Crocodile\"\" Dundee Michael J. \"\"Crocodile\"\" Dundee (also called Mick), played by Paul Hogan, is a fictional character, the protagonist in the \"\"Crocodile Dundee\"\" film series consisting of \"\"Crocodile Dundee\"\", \"\"Crocodile Dundee II\"\", and \"\"Crocodile Dundee in Los Angeles\"\". The character is a crocodile hunter, hence the nickname and is modeled on Rodney Ansell. In \"\"TV Week\"\" magazine, Paul Hogan spoke of the character: He said the character was seen by people in the USA as a cross between Chuck Norris and Rambo. This didn't sit well with Hogan who said people would rather see his character \"\"who doesn't kill"} +{"qid": "test874", "pid": "10064590", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Michael \"\"Crocodile\"\" Dundee\"\n2000 Summer Olympics. Michael \"\"Crocodile\"\" Dundee Michael J. \"\"Crocodile\"\" Dundee (also called Mick), played by Paul Hogan, is a fictional character, the protagonist in the \"\"Crocodile Dundee\"\" film series consisting of \"\"Crocodile Dundee\"\", \"\"Crocodile Dundee II\"\", and \"\"Crocodile Dundee in Los Angeles\"\". The character is a crocodile hunter, hence the nickname and is modeled on Rodney Ansell. In \"\"TV Week\"\" magazine, Paul Hogan spoke of the character: He said the character was seen by people in the USA as a cross between Chuck Norris and Rambo. This didn't sit well with Hogan who said people would rather see his character"} +{"qid": "test874", "pid": "19678236", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Gerry Skilton\"\nGerry Skilton Gerry Skilton is an Australian actor of the 20th and early 21st century. Skilton is best known as playing the character Nugget in all three of the Crocodile Dundee series of films: \"\"Crocodile Dundee\"\", \"\"Crocodile Dundee II\"\", and \"\"Crocodile Dundee in Los Angeles\"\". With permission from Paul Hogan, he reprised the character in 2010 for a proposed outback-adventure reality series \"\"Nugget Gets A Life\"\" which he self-financed and had hoped to sell to a network. Among other roles, Skilton played Wayne Churchill in the 1986 Australian mini-series \"\"Cyclone Tracy\"\", Corporal Andy Crilley (the ship's cook) in the 1989"} +{"qid": "test874", "pid": "19678237", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Gerry Skilton\"\nBritish/Australian mini-series \"\"The Heroes\"\" and Reggie Muddle in the 1996 Australian film \"\"Mr. Reliable\"\". Gerry Skilton Gerry Skilton is an Australian actor of the 20th and early 21st century. Skilton is best known as playing the character Nugget in all three of the Crocodile Dundee series of films: \"\"Crocodile Dundee\"\", \"\"Crocodile Dundee II\"\", and \"\"Crocodile Dundee in Los Angeles\"\". With permission from Paul Hogan, he reprised the character in 2010 for a proposed outback-adventure reality series \"\"Nugget Gets A Life\"\" which he self-financed and had hoped to sell to a network. Among other roles, Skilton played Wayne Churchill in the"} +{"qid": "test874", "pid": "3996688", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Crocodile Dundee II\"\nCrocodile Dundee II Crocodile Dundee II is a 1988 Australian-American action comedy film. The second of the \"\"Crocodile Dundee\"\" films, it is a sequel to \"\"Crocodile Dundee\"\" (1986) and was followed by \"\"Crocodile Dundee in Los Angeles\"\" (2001). Actors Paul Hogan and Linda Kozlowski reprise their roles as Mick Dundee and Sue Charlton, respectively; here shown opposing a Colombian drug cartel. The film was directed by John Cornell and shot on location in New York City and Northern Territory, Australia. It cost $14 million to make. A year has passed since the events of \"\"Crocodile Dundee\"\", and Mick Dundee and"} +{"qid": "test874", "pid": "5907847", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Crocodile Dundee in Los Angeles\"\nCrocodile Dundee in Los Angeles Crocodile Dundee in Los Angeles (also known as Crocodile Dundee III) is a 2001 Australian-American action comedy film, directed by Simon Wincer and starring Paul Hogan. It is the sequel to \"\"Crocodile Dundee II\"\" (1988) and the third film of the \"\"Crocodile Dundee\"\" series. Hogan and Linda Kozlowski reprise their roles as Michael \"\"Crocodile\"\" Dundee and Sue Charlton, respectively. The film was shot on location in Los Angeles and in Queensland. Actor Paul Hogan reported that the inspiration for the storyline came during a tour of Litomyšl, Czech Republic in 1993. At the beginning of"} +{"qid": "test874", "pid": "3996696", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Crocodile Dundee II\"\nNew York Times\"\" deemed the sequel to be inferior, noting \"\"the novelty has begun to wear thin, even if Mr. Hogan remains generally irresistible.\"\" Review aggregator Rotten Tomatoes assessed a \"\"Rotten\"\" score of 11% with an average 3.5/10 rating. Crocodile Dundee II Crocodile Dundee II is a 1988 Australian-American action comedy film. The second of the \"\"Crocodile Dundee\"\" films, it is a sequel to \"\"Crocodile Dundee\"\" (1986) and was followed by \"\"Crocodile Dundee in Los Angeles\"\" (2001). Actors Paul Hogan and Linda Kozlowski reprise their roles as Mick Dundee and Sue Charlton, respectively; here shown opposing a Colombian drug cartel."} +{"qid": "test874", "pid": "5097302", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"George Negus\"\nfor 15 years with his wife, Kirsty Cockburn, herself a journalist and a collaborator on many of Negus's projects. Negus' son, Serge Cockburn was the child actor who played Mikey Dundee alongside Paul Hogan in \"\"Crocodile Dundee in Los Angeles\"\". Negus is a fan of association football and a former board member of the national governing body Soccer Australia, as it was known at the time. Negus became a Member of the Order of Australia in the 2015 Australia Day honours. George Negus George Edward Negus AM (born 13 March 1942) is an Australian author, journalist and television presenter specialising"} +{"qid": "test874", "pid": "3210242", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Paul Hogan\"\nPaul Hogan Paul Hogan, (born 8 October 1939) is an Australian comedian, actor and television presenter. He was nominated for the Academy Award for Best Original Screenplay and won the Golden Globe Award for Best Actor – Motion Picture Musical or Comedy for his performance as outback adventurer Michael \"\"Crocodile\"\" Dundee in \"\"Crocodile Dundee\"\" (1986), the first in the \"\"Crocodile Dundee\"\" film series. Paul Hogan was born in Lightning Ridge, New South Wales, Australia. He moved to Granville in Western Sydney at a young age and worked as a rigger on the Sydney Harbour Bridge. Hogan's first public appearance was"} +{"qid": "test874", "pid": "3210248", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Paul Hogan\"\nhumour was repeated with his next endeavour. In another advertisement from the same Foster's series, Hogan's character is approached in a London Tube station by a Japanese tourist who asks, 'Do you know the way to Cockfosters?' (referring to an area in North London), to which Hogan replies (with a puzzled look on his face): \"\"Drink it warm, mate.\"\" Hogan's breakout role was that of Mick \"\"Crocodile\"\" Dundee in the 1986 film \"\"Crocodile Dundee\"\". Hogan also co-wrote the movie, which was a massive critical and commercial success in many countries. He won the 1987 Golden Globe Award for Best Actor"} +{"qid": "test874", "pid": "5030664", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"The Paul Hogan Show\"\nThe Paul Hogan Show The Paul Hogan Show is a popular Australian comedy show which aired on Australian television from 1973 until 1984. It made a star of Paul Hogan, who later appeared in \"\"\"\"Crocodile\"\" Dundee.\"\" Hogan's friend (and producer of \"\"Crocodile Dundee\"\") John Cornell also appeared in the show, playing Hogan's dim flatmate Strop. Episodes of the series generally opened with Hogan, playing a version of himself he called 'Hoges', presenting a stand-up comedy routine dressed in his bridge rigger's costume of boots, shorts, and shirt with sleeves cut off. The show then presented a series of comedy sketches,"} +{"qid": "test874", "pid": "5030667", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"The Paul Hogan Show\"\none of the shows shown on its launch night on 2 November 1982. The Paul Hogan Show The Paul Hogan Show is a popular Australian comedy show which aired on Australian television from 1973 until 1984. It made a star of Paul Hogan, who later appeared in \"\"\"\"Crocodile\"\" Dundee.\"\" Hogan's friend (and producer of \"\"Crocodile Dundee\"\") John Cornell also appeared in the show, playing Hogan's dim flatmate Strop. Episodes of the series generally opened with Hogan, playing a version of himself he called 'Hoges', presenting a stand-up comedy routine dressed in his bridge rigger's costume of boots, shorts, and shirt"} +{"qid": "test874", "pid": "1384472", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Kings Island\"\nof track bringing the park's wooden coaster total to , making it the most of any amusement park in the world. Included with park admission, Soak City is a water park featuring two wave pools, several children's areas and a variety of water slides. It originally opened in 1989 as \"\"WaterWorks\"\" and has since been expanded several times. It was renamed in 2004 to \"\"Crocodile Dundee's Boomerang Bay\"\", based on the titular character from the film \"\"\"\"Crocodile\"\" Dundee\"\", played by Paul Hogan who was also hired to promote the revamped water park. Following Cedar Fair's acquisition of Kings Island, it"} +{"qid": "test874", "pid": "3210249", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Paul Hogan\"\n- Motion Picture Musical or Comedy and was also nominated for Best Actor at the BAFTAs. The screenplay was nominated for an Academy Award, a BAFTA and a Saturn Award. Along with Chevy Chase and Goldie Hawn, Hogan co-hosted the 59th Academy Awards, also in 1987. Hogan again portrayed Mick Dundee in the sequel \"\"Crocodile Dundee II\"\", released in 1988. Hogan was also executive producer and co-writer with his son, Brett. Although less popular than the first \"\"Crocodile Dundee\"\" film with critics, it was also a commercial success. The character made him popular in the United States, with phrases like,"} +{"qid": "test874", "pid": "20546592", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Crocodile Dundee (film series)\"\nCrocodile Dundee (film series) The Crocodile Dundee film series are centered around a crocodile hunter named Michael J. \"\"Crocodile\"\" Dundee. The movies star Paul Hogan in the titular role, over the course of three feature films centered around his adventures. Hogan refused several proposals for more \"\"Crocodile Dundee\"\" films. A New York reporter named Sue Charlton heads to Australia to interview the living legend, known as \"\"Crocodile\"\" Dundee. When she finally finds him in the vast Australian terrain, she is so enthralled with him that she brings him back with her to New York City. In New York, Dundee is"} +{"qid": "test874", "pid": "20546597", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Crocodile Dundee (film series)\"\na movie. But I had so much fun making this commercial, I'd definitely be open to discussions about it.\"\" Crocodile Dundee (film series) The Crocodile Dundee film series are centered around a crocodile hunter named Michael J. \"\"Crocodile\"\" Dundee. The movies star Paul Hogan in the titular role, over the course of three feature films centered around his adventures. Hogan refused several proposals for more \"\"Crocodile Dundee\"\" films. A New York reporter named Sue Charlton heads to Australia to interview the living legend, known as \"\"Crocodile\"\" Dundee. When she finally finds him in the vast Australian terrain, she is so"} +{"qid": "test874", "pid": "3210254", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Paul Hogan\"\n1987 Hogan won a Golden Globe Award for Best Actor - Musical or Comedy for \"\"Crocodile Dundee\"\". In 2016 Hogan received the Longford Lyell Award, the highest honour of the Australian Academy of Cinema and Television Arts (AACTA), for outstanding services to the Australian screen. Hogan and his first wife, Noelene Edwards, married in 1958. They separated and divorced in 1981 and remarried less than one year later. A second divorce, initiated in 1986, was considered one of Australia's ugliest celebrity divorces. Hogan married his \"\"Crocodile Dundee\"\" co-star Linda Kozlowski in 1990. He has five children with his first wife"} +{"qid": "test874", "pid": "15618330", "query": "who was the actor who played crocodile dundee", "answer": "Paul Hogan", "passage": "\"Australian comedy\"\nwith an homage remake of Steele Rudd's \"\"\"\" featuring Joan Sutherland and some of Australia's most acclaimed character actors: Leo McKern, Geoffrey Rush and Noah Taylor. Australians have a strong tradition of self-mockery in their comedy, from the outlandish Barry McKenzie \"\"expat-in-Europe\"\" movies of the 1970s, to the quirky outback characters of the \"\"Crocodile Dundee\"\" films of the 1980s and the Working Dog Productions' 1997 homage to suburbia \"\"The Castle\"\". Paul Hogan's Aussie bushman-in-New York/fish-out-of-water comedy romance \"\"Crocodile Dundee\"\" was a huge international hit – becoming the most successful foreign film ever released in the United States. Other than Hogan"} +{"qid": "test875", "pid": "7485553", "query": "where are trigger points located in the body", "answer": "muscles", "passage": "\"Myofascial pain syndrome\"\nMyofascial pain syndrome Myofascial pain syndrome (MPS), also known as chronic myofascial pain (CMP), is a syndrome characterized by chronic pain in multiple myofascial trigger points (\"\"knots\"\") and fascial (connective tissue) constrictions. It can appear in any body part. Characteristic features of a myofascial trigger points include: focal point tenderness, reproduction of pain upon trigger point palpation, hardening of the muscle upon trigger point palpation, pseudo-weakness of the involved muscle, referred pain, and limited range of motion following approximately 5 seconds of sustained trigger point pressure. Myofascial pain is pain in muscles or fascia (a type of connective tissue that"} +{"qid": "test875", "pid": "4762273", "query": "where are trigger points located in the body", "answer": "muscles", "passage": "\"Myofascial trigger point\"\nor various tools to direct pressure directly upon the trigger point, to avoid overuse of their hands. A successful treatment protocol relies on identifying trigger points, resolving them and, if all trigger points have been deactivated, elongating the structures affected along their natural range of motion and length. In the case of muscles, which is where most treatment occurs, this involves stretching the muscle using combinations of passive, active, active isolated (AIS), muscle energy techniques (MET), and proprioceptive neuromuscular facilitation (PNF) stretching to be effective. Fascia surrounding muscles should also be treated to elongate and resolve strain patterns, otherwise muscles"} +{"qid": "test876", "pid": "18972830", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20 Final\"\n2007 ICC World Twenty20 Final The final of the 2007 ICC World Twenty20, the inaugural ICC World Twenty20 cricket tournament, was played on 24 September 2007 between India and Pakistan at the Wanderers Stadium, Johannesburg. Pakistan qualified for the final by defeating New Zealand in the first semifinal while India defeated Australia in the second semi final. India won the final by 5 runs, to win their second ICC limited-overs title. India's Irfan Pathan won the player of the match award in the final for his bowling performance of 3/16 in 4 overs. The match had an attendance of 32,217"} +{"qid": "test876", "pid": "8060383", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"Twenty20 International\"\npart in a bowl-out to determine a winner; New Zealand won 3–0. The game had initially been developed to boost the interest in domestic cricket, and to aid this the international teams were only allowed to host three T20Is each year. The cricket manager for the ICC, David Richardson, also commented that \"\"Part of the success of Twenty20 cricket is making sure it can coexist with Test cricket and one-dayers.\"\" Despite this, the first international tournament was held in 2007 in South Africa; the 2007 ICC World Twenty20. That tournament was won by India, who defeated their close rivals Pakistan"} +{"qid": "test876", "pid": "8820768", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20\"\n2007 ICC World Twenty20 The 2007 ICC World Twenty20 was the inaugural Twenty20 International cricket world championship, contested in South Africa from 11 to 24 September 2007. Twelve teams took part in the thirteen-day tournament—the ten Test-playing nations and the finalists of the 2007 WCL Division One tournament: Kenya and Scotland. India won the tournament, beating Pakistan in the final. During the group stage and Super Eight, points were awarded to the teams as follows: In case of a tie (i.e., both teams score exactly the same number of runs at the end of their respective innings), a bowl-out decided"} +{"qid": "test876", "pid": "8820771", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20\"\nto spare. In the first match Kenya scored the lowest Twenty20 International total of 73 against New Zealand and went on to lose with 12.2 overs and 9 wickets to spare. Kenya's fate was sealed when they allowed Sri Lanka to post a Twenty20 world record of 260 in the group's second match. Kenya were then bowled out for 88 and lost by a record 172 runs. India and Pakistan played in the first ever World Twenty20 bowl-out. India's bowlers defeated Pakistan 3–0. This tournament's Super Eight format was designed such that the top 2 seeds from each group was"} +{"qid": "test876", "pid": "18972831", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20 Final\"\nat the stadium. Prior to this match, these two teams faced each other for only time which was too in the same tournament. That Group D match ended in a tie but in order to satisfy the then ICC rule the winner of the match decided by Bowl-out where India beat Pakistan 3–0. India qualified for the Super 8s being the champions of Group D. They won against Pakistan (India won in bowl-out against Pakistan) and their match against Scotland was abandoned without a ball bowled due to rain. In Super 8 stage India was the topper of group E"} +{"qid": "test876", "pid": "3586650", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"Umar Gul\"\non bowling in the late overs of T20. He got his opportunity with the absence of Shoaib Akhtar and Abdul Razzaq in the 2007 ICC World Twenty20 held in South Africa. He bowled from the 13th over onwards and finished the tournament with 13 wickets, becoming the leading wicket taker ahead of Shahid Afridi and RP Singh. In the 2009 ICC World Twenty20, he performed well, earning the mantle from at least one pundit of \"\"the outstanding seam bowler of the World Twenty20\"\". His five-wicket haul for just six runs, when Pakistan defeated New Zealand, won especial acclaim. The spell"} +{"qid": "test876", "pid": "6363597", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"Joginder Sharma\"\n2007 World Twenty20 in South Africa. He bowled the final over of the semi final against Australia, with Michael Hussey facing and Australia needing 22 runs to win, taking two wickets as India won by 15 runs. He also bowled the final over in the final against Pakistan with thirteen runs required and only one wicket in hand. His first ball went for a wide and the next was borderline but not called by the umpire. The third was a full toss which was pulled straight back over his head for six by Misbah-ul-Haq. Misbah attempted to scoop the ball"} +{"qid": "test876", "pid": "11055478", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"ACC Twenty20 Cup\"\nACC Twenty20 Cup The ACC Twenty20 Cup is a 20-over cricket tournament organised by the Asian Cricket Council (ACC). The tournament does not include the four ACC members who are full members of the International Cricket Council (ICC) (Bangladesh, India, Pakistan, and Sri Lanka), instead featuring the best associate and affiliate members. Matches at the tournament are not accorded official Twenty20 or Twenty20 International status. The inaugural ACC Twenty20 Cup in 2007 was jointly won by Afghanistan and Oman. From 2011, the tournament has been part of the qualification process for the ICC World Twenty20. The four top-ranked teams at"} +{"qid": "test876", "pid": "7162340", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "Bowl-out\ninternational bowl-out in a Twenty20 match took place on 16 February 2006, when New Zealand beat West Indies 3-0 in Auckland. A bowl-out was also used on 14 September 2007 when India beat Pakistan 3-0 during the 2007 ICC World Twenty20 in Durban, South Africa. A bowl-out was first used to decide a domestic Twenty20 match when Surrey beat Warwickshire in July 2005. In some forms of domestic one-day cricket competition, a bowl-out is used to decide the result when the match is tied or rained out: for example, the quarterfinal of the Minor Counties Cricket Association Knockout Trophy in"} +{"qid": "test876", "pid": "18972838", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20 Final\"\nPathan (India)
Player of the Tournament: Shahid Afridi (Pakistan)
Umpires: M R Benson (England) and S J A Taufel (Australia)
TV Umpire: D J Harper (Australia)
Match Referee: R S Madugalle (Sri Lanka)
Reserve Umpire: B R Doctrove (West Indies) 2007 ICC World Twenty20 Final The final of the 2007 ICC World Twenty20, the inaugural ICC World Twenty20 cricket tournament, was played on 24 September 2007 between India and Pakistan at the Wanderers Stadium, Johannesburg. Pakistan qualified for the final by defeating New Zealand in the first semifinal while India defeated Australia in the second semi final. India won the"} +{"qid": "test876", "pid": "18972836", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20 Final\"\nout at the other end. In the last over of the match Pakistan needed 13 runs to win the match and Misbah was still there. A six from Misbah took Pakistan to 152–9 and Pakistan's chance was then very good.Misbah scored 43 run from 38 ball including 4 sixes,from which three came in one over bowled by Harbajhan singh. He was however dismissed in the last over for 43 by Joginder Sharma and Pakistan was all out for 152. Irfan Pathan and RP Singh were the best bowlers for India by taking 3 wickets each .Joginder Sharma took 2 wicket"} +{"qid": "test876", "pid": "17954283", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2014 ICC World Twenty20 Final\"\nIndia and Sri Lanka played 5 times against each other in Twenty20s, where Sri Lanka won 3 times and India won 2 times. In 2010 ICC World Twenty20 these teams met each other where Sri Lanka beat India by 5 wickets in a last ball thriller. This was their only meeting in an ICC World Twenty20 until this match. India directly qualified for the super 10s. They started their tournament strongly. They won their first match against Pakistan very easily. They beat West Indies, Bangladesh and Australia easily to be the topper of Group 1 with a 100% win rate."} +{"qid": "test876", "pid": "8820776", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2007 ICC World Twenty20\"\npanel and the referees from the Panel of ICC Referees. Coverage of the 2007 ICC World Twenty20 was as follows: Radio Networks 2007 ICC World Twenty20 The 2007 ICC World Twenty20 was the inaugural Twenty20 International cricket world championship, contested in South Africa from 11 to 24 September 2007. Twelve teams took part in the thirteen-day tournament—the ten Test-playing nations and the finalists of the 2007 WCL Division One tournament: Kenya and Scotland. India won the tournament, beating Pakistan in the final. During the group stage and Super Eight, points were awarded to the teams as follows: In case of"} +{"qid": "test876", "pid": "2444170", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"Harbhajan Singh\"\n29.50 and an economy rate of 4.65 in five matches. Harbhajan returned to international cricket as part of India's squad for the ICC World Twenty20 tournament in South Africa in September 2007, which India won, having been rank outsiders at the start of the tournament with many senior players opting out of the competition. He played in all six of India's matches and totalled seven wickets at 26.00 and an economy rate of 7.91. In the opening pool match against Pakistan, Harbhajan hit the stumps in a bowl-out after scores were tied; India won 3–0 after three rounds. In the"} +{"qid": "test876", "pid": "19317850", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"2010 ICC World Twenty20 Final\"\n2010 ICC World Twenty20 Final The 2010 ICC World Twenty20 Final was played between England and Australia at the Kensington Oval in Bridgetown, Barbados on 16 May 2010. This was the third ICC World Twenty20. England won the match by 7 wickets, its first World Twenty20 victory, and first ICC world championship for the cricket birthplace. England became the third team to win this title after India in 2007 and Pakistan in 2009 Prior to this match, England and Australia had played four times against each other in Twenty20s, where Australia won 2 matches and England won one. One match"} +{"qid": "test876", "pid": "2432686", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"India national cricket team\"\nand the emergence of young players like Robin Uthappa saw many pundits to tip India as a real contender to win the 2007 Cricket World Cup. However, defeats to Bangladesh and Sri Lanka saw India fail to reach the second round. After winning the Test series against England in August 2007, Dravid stepped down as the captain of the team, following which Dhoni was made the captain of the Twenty20 and ODI team. In September 2007, India won the first-ever Twenty20 World Cup held in South Africa, beating Pakistan by 5 runs in the final. In 2007–08, they toured Australia"} +{"qid": "test876", "pid": "17968594", "query": "who bowled the last over of the 2007 world twenty20 that india won", "answer": "Pakistan", "passage": "\"History of the ICC World Twenty20\"\n2007 it was decided to hold a qualifying tournament with a 20-over format to better prepare the teams. With six participants, two would qualify for the 2009 World Twenty20 and would each receive $250,000 in prize money. The second tournament was won by Pakistan who beat Sri Lanka by 8 wickets in England on 21 June 2009. The 2010 ICC World Twenty20 tournament was held in West Indies in May 2010, where England defeated Australia by 7 wickets. The 2012 ICC World Twenty20 was won by the West-Indies, by defeating Sri Lanka at the finals. For the first time, a"} +{"qid": "test879", "pid": "4717440", "query": "who hit 6 sixes in an over in test cricket", "answer": "Ravi Shastri", "passage": "\"Wankhede Stadium\"\nalso the host to the match in which Ravi Shastri hit six sixes in an over. As of 19 July 2017, it has hosted 25 Tests, 20 ODIs and 5 T20Is. Mumbai has seen Test matches played at three different grounds. The Bombay Gymkhana ground hosted the first ever Test in India, in 1933–34 against England. After World War II, the Cricket Club of India Ltd's Brabourne Stadium – second ground of the city – was used for 17 Tests. The Wankhede Stadium was built after disputes between the Cricket Club of India, which owns the Brabourne Stadium, and the"} +{"qid": "test879", "pid": "3247829", "query": "who hit 6 sixes in an over in test cricket", "answer": "Garfield Sobers", "passage": "\"Boundary (cricket)\"\nOne Day International is 38, which was achieved in a match between India and Australia at M Chinnaswamy Stadium on 2 November 2013. India and Australia hit 19 sixes each. The equivalent record in Twenty20 Internationals was set on the AMI Stadium, 24 sixes were hit during the Twenty20 International match between India and New Zealand on 25 February 2009. In 2012, during the First Test against Bangladesh in Dhaka, West Indies cricketer Chris Gayle became the first player to hit a six off the first ball in a Test cricket match. On 31 August 1968, Garfield Sobers became the"} +{"qid": "test88", "pid": "4516830", "query": "an edge that is between a vertex and itself is a", "answer": "loop", "passage": "\"Loop (graph theory)\"\nLoop (graph theory) In graph theory, a loop (also called a self-loop or a \"\"buckle\"\") is an edge that connects a vertex to itself. A simple graph contains no loops. Depending on the context, a graph or a multigraph may be defined so as to either allow or disallow the presence of loops (often in concert with allowing or disallowing multiple edges between the same vertices): In a graph with one vertex, all edges must be loops. Such a graph is called a bouquet. For an undirected graph, the degree of a vertex is equal to the number of adjacent"} +{"qid": "test88", "pid": "1828433", "query": "an edge that is between a vertex and itself is a", "answer": "loop", "passage": "\"Adjacency matrix\"\ngraph, a different matrix representation whose elements indicate whether vertex–edge pairs are incident or not, and degree matrix which contains information about the degree of each vertex. For a simple graph with vertex set \"\"V\"\", the adjacency matrix is a square × matrix \"\"A\"\" such that its element \"\"A\"\" is one when there is an edge from vertex \"\"i\"\" to vertex \"\"j\"\", and zero when there is no edge. The diagonal elements of the matrix are all zero, since edges from a vertex to itself (loops) are not allowed in simple graphs. It is also sometimes useful in algebraic graph"} +{"qid": "test88", "pid": "4516831", "query": "an edge that is between a vertex and itself is a", "answer": "loop", "passage": "\"Loop (graph theory)\"\nvertices. A special case is a loop, which adds two to the degree. This can be understood by letting each connection of the loop edge count as its own adjacent vertex. In other words, a vertex with a loop \"\"sees\"\" itself as an adjacent vertex from \"\"both\"\" ends of the edge thus adding two, not one, to the degree. For a directed graph, a loop adds one to the in degree and one to the out degree. Loops in Graph Theory Loops in Topology Loop (graph theory) In graph theory, a loop (also called a self-loop or a \"\"buckle\"\") is"} +{"qid": "test880", "pid": "20553972", "query": "how long has it been since eagles went to super bowl", "answer": "2018", "passage": "\"Tom vs Time\"\nson Jack, and in the car during Brady’s commute to and from work in Foxborough, Massachusetts. Following the Patriots' loss to the Philadelphia Eagles in Super Bowl LII, the release of the series finale was delayed. Chopra went on to explain that the episode had originally been \"\"tied to the Pats winning the Super Bowl\"\" and that following their defeat the episode had to be redeveloped. The episode was finally released on March 12, 2018. Simultaneously with the initial series announcement, Facebook released a trailer for the first season of the show. Chopra has indicated that there are currently no"} +{"qid": "test880", "pid": "16778801", "query": "how long has it been since eagles went to super bowl", "answer": "2018", "passage": "\"Rodney McLeod\"\nThe Philadelphia Eagles finished the 2017 season atop the NFC East with a 13–3 record and clinched a playoff berth and home field advantage. On January 13, 2018, McLeod started his first career playoff game and recorded seven solo tackles and a sack on Matt Ryan during the Eagles' 15–10 victory against the Atlanta Falcons in the NFC Divisional round. The Eagles went on to defeat the Minnesota Vikings in the NFC Championship and went on to face the New England Patriots in the Super Bowl. On February 4, 2018, McLeod started in Super Bowl LII and recorded six combined"} +{"qid": "test881", "pid": "912466", "query": "who did the united states win its independence from", "answer": "Great Britain", "passage": "\"Grand Isle County, Vermont\"\nuntil Vermont's independence from New York and Britain, which, however, did not end the contest. On September 3, 1783, as a result of the signing of the Treaty of Paris, the Revolutionary War ended with Great Britain recognizing the independence of the United States. Vermont's border with Quebec was established at 45 degrees north latitude, which explains why this county has no dry-land connection to the rest of the United States. Massachusetts did not formally withdraw its claim to the region, first made in 1629, until December 16, 1786. New York, still not satisfied with the relinquishment of its land"} +{"qid": "test881", "pid": "14443723", "query": "who did the united states win its independence from", "answer": "Great Britain", "passage": "\"America's Backyard\"\nto gain their independence from Spain. However, during the early 1820s, Spain was on the verge of restoration. The United States and Great Britain did not want Spain to gain any power back in Latin America because they wanted those colonies to become independent. Simon Bolivar was a leader in the fight for independence. He greatly admired the USA and in turn was supported by the USA . With those colonies independent, they could trade in a mutually beneficial way with the United States and Great Britain and not be restricted by mercantilistic Spain which wanted to benefit its home"} +{"qid": "test883", "pid": "759463", "query": "who was an early advocate for using scientific methods based on inductive reasoning", "answer": "Aristotle", "passage": "\"Baconian method\"\nBaconian method The Baconian method is the investigative method developed by Sir Francis Bacon. The method was put forward in Bacon's book \"\"Novum Organum\"\" (1620), or 'New Method', and was supposed to replace the methods put forward in Aristotle's \"\"Organon\"\". This method was influential upon the development of the scientific method in modern science; but also more generally in the early modern rejection of medieval Aristotelianism. Bacon's method is an example of the application of inductive reasoning. However, Bacon's method of induction is much more complex than the essential inductive process of making generalizations from observations. Bacon's method begins with"} +{"qid": "test883", "pid": "1468105", "query": "who was an early advocate for using scientific methods based on inductive reasoning", "answer": "Aristotle", "passage": "\"Early Islamic philosophy\"\nscientific method of open inquiry to disprove claims, the ijtihad, which could be generally applied to many types of questions. Early forms of analogical reasoning, inductive reasoning and categorical syllogism were introduced in Fiqh (Islamic jurisprudence), Sharia (Islamic law) and Kalam (Islamic theology) from the 7th century with the process of \"\"Qiyas\"\", before the Arabic translations of Aristotle's works. Later during the Islamic Golden Age, there was a logical debate among Islamic philosophers, logicians and theologians over whether the term \"\"Qiyas\"\" refers to analogical reasoning, inductive reasoning or categorical syllogism. Some Islamic scholars argued that \"\"Qiyas\"\" refers to inductive reasoning,"} +{"qid": "test883", "pid": "365030", "query": "who was an early advocate for using scientific methods based on inductive reasoning", "answer": "Aristotle", "passage": "\"Scientific method\"\nthe data and methods and build on the research that has gone before. Scientific data archiving can be done at a number of national archives in the U.S. or in the World Data Center. The classical model of scientific inquiry derives from Aristotle, who distinguished the forms of approximate and exact reasoning, set out the threefold scheme of abductive, deductive, and inductive inference, and also treated the compound forms such as reasoning by analogy. The hypothetico-deductive model or method is a proposed description of scientific method. Here, predictions from the hypothesis are central: if you assume the hypothesis to be"} +{"qid": "test883", "pid": "475542", "query": "who was an early advocate for using scientific methods based on inductive reasoning", "answer": "Aristotle", "passage": "\"Philosophy of science\"\nallusion to Aristotle's \"\"Organon\"\" – Bacon outlined a new system of logic to improve upon the old philosophical process of syllogism. Bacon's method relied on experimental \"\"histories\"\" to eliminate alternative theories. In 1637, René Descartes established a new framework for grounding scientific knowledge in his treatise, \"\"Discourse on Method\"\", advocating the central role of reason as opposed to sensory experience. By contrast, in 1713, the 2nd edition of Isaac Newton's \"\"Philosophiae Naturalis Principia Mathematica\"\" argued that \"\"... hypotheses ... have no place in experimental philosophy. In this philosophy[,] propositions are deduced from the phenomena and rendered general by induction. \"\""} +{"qid": "test883", "pid": "6447492", "query": "who was an early advocate for using scientific methods based on inductive reasoning", "answer": "Aristotle", "passage": "\"History of scientific method\"\nhistory to their natural settings, such as at the Pyrrha lagoon, now called Kalloni, at Lesbos. Aristotle and Theophrastus together formulated the new science of biology, inductively, case by case, for two years before Aristotle was called to tutor Alexander. Aristotle performed no modern-style experiments in the form in which they appear in today's physics and chemistry laboratories. Induction is not afforded the status of scientific reasoning, and so it is left to intuition to provide a solid foundation for Aristotle's science. With that said, Aristotle brings us somewhat closer an empirical science than his predecessors. In his work Kαvώv"} +{"qid": "test886", "pid": "17354070", "query": "who won mark and goal of the year 2017", "answer": "Joe Daniher", "passage": "\"Joe Daniher\"\nfor a second consecutive season and showed more presence on the field. In 2016, he continued to grow as a footballer and leader, being named in the clubs leadership group and finished the season with a career-high in marks (141) and goals (43). He won the club goal kicking award for a third consecutive year and was joint runner-up with James Kelly in the W.S. Crichton Medal. Daniher started the 2017 AFL season, reaching his potential as one of the best forwards in the league, winning both the Anzac Day Medal and the inaugural Tom Wills Medal in the Country"} +{"qid": "test887", "pid": "20515401", "query": "who will get ticket to finale in rising star 2", "answer": "Hemant Brijwasi", "passage": "\"Rising Star India (season 2)\"\nwill move on to compete for the \"\"Ticket To Finale\"\". The two top scorers of Saturday and Sunday episode participate in a face-off round. The Top 5 contestants except for Ticket to Finale winner Hemant Brijwasi were divided into two batches. Batch A- Zaid Ali, Chetan Brijwasi & Vishnumaya Ramesh and Batch B- Akhtar Brothers & Rohanpreet Singh. The contestant with the lowest score in each batch will be eliminated, making the Top 4. The Top 4 finalists compete in the first round. The Top 3 contestants proceed to the Face-off round. Rising Star India (season 2) Rising Star is"} +{"qid": "test890", "pid": "19096830", "query": "who became the king of ayodhya after ram", "answer": "Kusha", "passage": "\"Siya Ke Ram\"\nto her mother Bhumi after confronting Ram. Ram is very heartbroken at this and returns to Ayodhya. He then promotes woman rights on Sita's behalf. After some years Ram crowns Luva and Kusha as Kings of Ayodhya and along with his brothers - Bharat and Shatrughan drown themselves in the Sarayu river. Lakshman precedes his brothers, being the incarnation of Sheshnaag. At the bottom of the lake, Ram turns to Vishnu. Shatrughan transforms to the Sudarshan Chakra and Bharat to the conch shell of Vishnu's. They go back to Vishnu and Vishnu sees Lakshmi coming towards him, telling him that"} +{"qid": "test891", "pid": "566029", "query": "what is the most famous building in rennes", "answer": "Parlement de Bretagne", "passage": "Rennes\n\"\"parlement de Bretagne\"\", many \"\"hôtels particuliers\"\" were built in the northern part, the richest in the 18th century. Most of the monuments historiques can be found there. Colourful traditional half-timbered houses are situated primarily along the roads of Saint-Sauveur, Saint-Georges, de Saint-Malo, Saint-Guillaume, des Dames, du Chapitre, Vasselot, Saint-Michel, de la Psallette and around the plazas of Champ-Jacquet, des Lices, Saint-Anne and Rallier-du-Baty. The \"\"Parlement de Bretagne\"\" (Administrative and judicial centre of Brittany, ) is the most famous 17th century building in Rennes. It was rebuilt after a terrible fire in 1994 that may have been caused by a flare"} +{"qid": "test892", "pid": "6896017", "query": "when did equus first appear in fossil record", "answer": "~3.5 million years old", "passage": "\"African wild ass\"\nlarge with black margins. The tail terminates with a black brush. The hooves are slender and approximately of the diameter as the legs. The genus \"\"Equus\"\", which includes all extant equines, is believed to have evolved from \"\"Dinohippus\"\", via the intermediate form \"\"Plesippus\"\". One of the oldest species is \"\"Equus simplicidens\"\", described as zebra-like with a donkey-shaped head. The oldest fossil to date is ~3.5 million years old from Idaho, USA. The genus appears to have spread quickly into the Old World, with the similarly aged \"\"Equus livenzovensis\"\" documented from western Europe and Russia. Molecular phylogenies indicate the most recent"} +{"qid": "test892", "pid": "4717072", "query": "when did equus first appear in fossil record", "answer": "~3.5 million years old", "passage": "Kiang\nthe end of the tail, which ends in a tuft of blackish brown hairs. The genus \"\"Equus\"\", which includes all extant equines, is believed to have evolved from \"\"Dinohippus\"\", via the intermediate form \"\"Plesippus\"\". One of the oldest species is \"\"Equus simplicidens\"\", described as zebra-like with a donkey-shaped head. The oldest fossil to date is ~3.5 million years old from Idaho, USA. The genus appears to have spread quickly into the Old World, with the similarly aged \"\"Equus livenzovensis\"\" documented from western Europe and Russia. Molecular phylogenies indicate the most recent common ancestor of all modern equids (members of the"} +{"qid": "test892", "pid": "16175533", "query": "when did equus first appear in fossil record", "answer": "~3.5 million years old", "passage": "\"Turkmenian kulan\"\nis believed to have evolved from \"\"Dinohippus\"\" via the intermediate form \"\"Plesippus\"\". One of the oldest species is \"\"Equus simplicidens\"\", described as zebra-like with a donkey-shaped head. The oldest fossil to date is ~3.5 million years old from Idaho, USA. The genus appears to have spread quickly into the Old World, with the similarly aged \"\"Equus livenzovensis\"\" documented from western Europe and Russia. Molecular phylogenies indicate the most recent common ancestor of all modern equids (members of the genus \"\"Equus\"\") lived ~5.6 (3.9–7.8) mya. Direct paleogenomic sequencing of a 700,000-year-old middle Pleistocene horse metapodial bone from Canada implies a more"} +{"qid": "test893", "pid": "13142821", "query": "where was percy jackson and the olympians filmed", "answer": "Mission, British Columbia", "passage": "\"Percy Jackson & the Olympians: The Lightning Thief\"\nin Mission, British Columbia. Additional exterior scenes were filmed on location in Brooklyn, New York during the first week of August 2009. Digital intermediate work began in San Francisco in November 2009. Christophe Beck composed the score. Columbus has stated that the cast was chosen specifically with sequels in mind. \"\"I think with Percy Jackson it was a matter of finding the right cast to fit into these roles, sort of the perfect cast for these roles, because hopefully, God willing, we will go on to do other Percy Jackson films and you want the cast to grow with their"} +{"qid": "test895", "pid": "6563066", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "\"Mixtec transnational migration\"\nForum on Remittances “remittances are part of the centuries-old pattern of migration from rural to urban areas. Nowadays, remittances represent the human face of globalization, in which millions of people migrate in search of a better life and in order to provide for their loved ones back home. These flows of human and financial capital have profound implications for the economies and societies of the sending and the receiving countries.” Mixtec migrants send money back to their country of origin in a variety of ways. Where available, they may use formal channels such as banks and money transfer services. Digital"} +{"qid": "test895", "pid": "6267761", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "Remittance\nto falling levels of remittances sent to Latin American countries from the United States. Remittances to Africa play an important role to national economies. However, little data exists as many rely on informal channels to send money home. Immigrants from Africa today number approximately 20 to 30 million adults, who send around $40 billion USD annually to their families and local communities back home. For the region as a whole, this represents 50 percent more than net official development assistance (ODA) from all sources, and, for most countries, the amount also exceeds foreign direct investment (FDI). In several fragile states,"} +{"qid": "test895", "pid": "13409302", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "\"B. R. Shetty\"\nAbu Dhabi to be listed on the premium segment of the London Stock Exchange and is part of the coveted FTSE 100 Index. Shetty established the UAE Exchange in 1980 in an attempt to ease the process of sending money by the expats to their families in their respective home countries. By 2016, it had expanded into over 31 countries and had approximately 800 direct offices. In 2014, it did over 50 billion USD collectively in money remittance and exchange volumes. He acquired Travelex, the world's leading foreign exchange company, in 2014. It has a global footprint including 1500 stores"} +{"qid": "test895", "pid": "20012122", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "\"Migrant workers in the Persian Gulf region\"\ntheir respective countries of origin. However, the work conducted by migrants in the GCC constitutes an important section of the economy in the country of origin, as money is sent home to family members and relatives. India receives approximately half of all remittances from Indian migrants in the GCC countries and further constitutes the country sending most migrants to the region. Several state leaders in the GCC regard remittances as an economical “leakage”, as economic capital is leaving the country. Due to the value of remittances, GCC countries have recently started to discuss remittance taxes as a strategy to counterbalance"} +{"qid": "test895", "pid": "11935060", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "\"Gifting remittances\"\nNigeria on the socio-economic links between urban migrants and their rural sending communities in which money is remitted alongside gifts not readily available in the home country. In this work the focus on socio-cultural context and networks is strong. That the economic cost may be high for the migrant head of household is highlighted as visiting and bringing the requisite gifts can be very expensive, a disincentive to visiting the non-migrating family and community members. Margo Russell writes that defining remitted moneys as gifts rather than payments enhances freedom and flexibility for the giver. This works in Swaziland because moneys"} +{"qid": "test895", "pid": "7798529", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "\"Economy of the Middle East\"\non its highly skilled workforce in the oil-rich Persian Gulf to send back money to help support thousands of Jordanian families. Consequently, its economic fortunes are tied to events in the international community. Although the standard of living in Jordan is significantly higher than other countries with similar incomes, having among the best education and healthcare systems in the Middle East, many Jordanians opt to work abroad because of soaring costs of living and high unemployment in their native country. Jordan is dependent on those remittances which have accounted for nearly 20% of GDP since 1975. Jordan's dependence has had"} +{"qid": "test895", "pid": "6194739", "query": "sending money home to the native country is an example of", "answer": "remittance", "passage": "\"Economy of the Caribbean\"\nnursing and their degrees are recognized in their host countries. With advanced education come more career opportunities. In the host countries, there is a lot of demand for healthcare workers, which means more job opportunities for the women. Caribbean women also emigrate in such large numbers to developed countries to earn higher pay. Income earned in host countries is usually enough for a female immigrant from the Caribbean to live off of and still send remittances back home. Additionally, the currencies from host countries have more purchasing power than the domestic currency in the Caribbean. Money being sent back to"} +{"qid": "test897", "pid": "5456573", "query": "who was charlie writing to in perks of being a wallflower movie", "answer": "an unknown recipient", "passage": "\"The Perks of Being a Wallflower\"\n15-year-old protagonist, begins writing letters about his own life to an unknown recipient. In these letters he discusses his first year at high school and his struggles with two traumatic experiences: the suicide of his only middle-school friend, Michael Dobson, and the death of his favorite aunt, Helen. His English teacher, who encourages Charlie to call him Bill, notices Charlie's passion for reading and writing, and acts as a mentor by assigning him extracurricular books and reports. Although he is a wallflower, Charlie is befriended by two seniors: Patrick and Sam. Patrick is secretly dating Brad, a closeted football player,"} +{"qid": "test898", "pid": "18159796", "query": "who won the men's single title of australia open on 1 february 2015", "answer": "Djokovic", "passage": "\"2015 Australian Open\"\n2015 Australian Open The 2015 Australian Open was a tennis tournament that took place at Melbourne Park from 19 January to 1 February 2015. It was the 103rd edition of the Australian Open, and the first Grand Slam tournament of the year. Stan Wawrinka was the defending champion in men's singles but lost to four-time Australian Open champion Novak Djokovic in the semi-finals. Reigning women's champion Li Na did not defend her title, as she retired from professional tennis in September, 2014. Novak Djokovic won an Open Era record fifth men's singles crown by defeating Andy Murray in the final,"} +{"qid": "test898", "pid": "18656958", "query": "who won the men's single title of australia open on 1 february 2015", "answer": "Djokovic", "passage": "\"2015 French Open – Men's Singles\"\nin the quarterfinals, meaning that for the first time since 2004, neither Nadal nor Federer would win the title. This was the most recent time Federer competed at the French Open. Wawrinka defeated Djokovic in the final, 4–6, 6–4, 6–3, 6–4, to win his first French Open and second Grand Slam title. As he did when he won the 2014 Australian Open, Wawrinka defeated the world No. 1 and world No. 2 on his way to the title. 2015 French Open – Men's Singles Rafael Nadal was five-time defending champion, but was defeated by Novak Djokovic in the quarterfinals. This"} +{"qid": "test898", "pid": "11657377", "query": "who won the men's single title of australia open on 1 february 2015", "answer": "Djokovic", "passage": "\"Novak Djokovic\"\nNovak Djokovic Novak Djokovic ( / \"\"Novak Đoković\"\", ; born 22 May 1987) is a Serbian professional tennis player who is currently ranked world No. 1 in men's singles tennis by the Association of Tennis Professionals (ATP). Djokovic has won 14 Grand Slam singles titles, five ATP Finals titles, 32 ATP World Tour Masters 1000 series titles, 12 ATP World Tour 500 tournaments, and has held the No. 1 spot in the ATP rankings for over 200 weeks. In majors, he has won six Australian Open titles, four Wimbledon titles, three US Open titles and one French Open title. Following"} +{"qid": "test898", "pid": "17275328", "query": "who won the men's single title of australia open on 1 february 2015", "answer": "Djokovic", "passage": "\"2012 French Open – Men's singles final\"\n2012 French Open – Men's singles final The 2012 French Open Men's Singles final was the championship tennis match of the Men's Singles tournament at the 2012 French Open. In the final, Rafael Nadal defeated Novak Djokovic 6–4, 6–3, 2–6, 7–5 to win the match. It was a Major final match of historic proportions for both players. Nadal was looking to become the first man to win seven French Open titles, thus breaking the record previously held by Björn Borg, who won six titles, and equalling the record held by Chris Evert, who won seven titles. Djokovic was trying to"} +{"qid": "test90", "pid": "12368803", "query": "how tall is the actor who plays hagrid in harry potter", "answer": "6ft 1in", "passage": "\"Robbie Coltrane\"\nwon him three BAFTA awards. Roles in bigger films followed; the James Bond films \"\"GoldenEye\"\" (1995) and \"\"The World Is Not Enough\"\" (1999), a supporting role in \"\"From Hell\"\" (2001), as well as half-giant Rubeus Hagrid in the \"\"Harry Potter\"\" films (2001–2011). J. K. Rowling, author of the Harry Potter series, had Coltrane at the top of her list to play Hagrid and, when asked whom she would like to see in the role, responded \"\"Robbie Coltrane for Hagrid\"\" in one quick breath. There is also an unnamed 8ft actor who stands in for the 6ft 1in Coltrane in some"} +{"qid": "test902", "pid": "77682", "query": "who is the character of santa claus based on", "answer": "Father Christmas", "passage": "Christmas\ndrew a new image of \"\"Santa Claus\"\" annually, beginning in 1863. By the 1880s, Nast's Santa had evolved into the modern vision of the figure, perhaps based on the English figure of Father Christmas. The image was standardized by advertisers in the 1920s and continues through the present day. Father Christmas, a jolly, stout, bearded man who typified the spirit of good cheer at Christmas, predates the Santa Claus character. He is first recorded in early 17th century England, but was associated with holiday merrymaking and drunkenness rather than the bringing of gifts. In Victorian Britain, his image was remade"} +{"qid": "test902", "pid": "9439642", "query": "who is the character of santa claus based on", "answer": "Saint Nicholas", "passage": "\"Santa Claus\"\nSanta Claus Santa Claus, also known as Saint Nicholas, Kris Kringle, Father Christmas, or simply Santa, is a legendary figure originating in Western Christian culture who is said to bring gifts to the homes of well-behaved (\"\"good\"\" or \"\"nice\"\") children on Christmas Eve (24 December) and the early morning hours of Christmas Day (25 December). The modern Santa Claus grew out of traditions surrounding the historical Saint Nicholas (a fourth-century Greek bishop and gift-giver of Myra), the British figure of Father Christmas and the Dutch figure of \"\"Sinterklaas\"\" (himself also based on Saint Nicholas). Some maintain Santa Claus also absorbed"} +{"qid": "test902", "pid": "9439654", "query": "who is the character of santa claus based on", "answer": "Father Christmas", "passage": "\"Santa Claus\"\nmuch to Odin, the old blue-hooded, cloaked, white-bearded Giftbringer of the north, who rode the midwinter sky on his eight-footed steed Sleipnir, visiting his people with gifts. […] Odin, transformed into Father Christmas, then Santa Claus, prospered with St Nicholas and the Christchild, became a leading player on the Christmas stage.\"\" In Finland Santa Claus is called Joulupukki (direct translation 'Christmas Goat'). Pre-modern representations of the gift-giver from Church history and folklore, notably St Nicholas (known in Dutch as Sinterklaas), merged with the English character Father Christmas to create the character known to Americans and the rest of the English-speaking"} +{"qid": "test902", "pid": "148082", "query": "who is the character of santa claus based on", "answer": "Father Christmas", "passage": "\"Father Christmas\"\nClaus leaving presents on New Year's Eve 1852, with children \"\"hanging their stockings up on each side of the fire-place, in their sleeping apartments, at night, and waiting patiently till morning, to see what Santa Claus puts into them during their slumbers\"\". In Ireland in 1853, on the other hand, presents were being left on Christmas Eve according to a character in a newspaper short story who says \"\"... tomorrow will be Christmas. What will Santa Claus bring us?\"\" A poem published in Belfast in 1858 includes the lines \"\"The children sleep; they dream of him, the fairy, / Kind"} +{"qid": "test902", "pid": "148083", "query": "who is the character of santa claus based on", "answer": "Father Christmas", "passage": "\"Father Christmas\"\nSanta Claus, who with a right good will / Comes down the chimney with a footstep airy ...\"\" \"\"A Visit from St. Nicholas\"\" was published in England in December 1853 in \"\"Notes and Queries\"\". An explanatory note states that the St Nicholas figure is known as Santa Claus in New York State and as Krishkinkle in Pennsylvania. 1854 marked the first English publication of \"\"Carl Krinkin; or, The Christmas Stocking\"\" by the popular American author Susan Warner. The novel was published three times in London in 1854-5, and there were several later editions. Characters in the book include both Santa"} +{"qid": "test902", "pid": "9439699", "query": "who is the character of santa claus based on", "answer": "Saint Nicholas", "passage": "\"Santa Claus\"\nsend email to Santa Claus. Some websites, such as Santa's page on Microsoft's Windows Live Spaces, however have used or still use \"\"bots\"\" to compose and send email replies, with occasional unfortunate results. In addition to providing holiday-themed entertainment, \"\"Santa tracking\"\" websites raise interest in space technology and exploration, serve to educate children in geography. and encourage them to take an interest in science. Santa Claus has partial Christian roots in Saint Nicholas, particularly in the high church denominations that practice the veneration of him, in addition to other saints. In light of this, the character has sometimes been the"} +{"qid": "test903", "pid": "470657", "query": "who wins the next iron chef super chefs", "answer": "Zakarian", "passage": "\"Iron Chef\"\nNext Iron Chef\"\". In 2010, Chef Marc Forgione won the third season of The Next Iron Chef, becoming the seventh Iron Chef on Iron Chef America. Chef Geoffrey Zakarian won The Next Iron Chef's fourth season in 2011, making him the eighth Iron Chef. In 2012, Chef Alexandra Guarnaschelli became the ninth and most recent Iron Chef after winning the fifth season of \"\"The Next Iron Chef\"\". Even though both Todd English and Kerry Simon from \"\"Iron Chef USA\"\" have competed on \"\"Iron Chef America\"\", there has been no mention of their ICU tenure. Iron Chef Gauntlet is a Spring"} +{"qid": "test903", "pid": "20428020", "query": "who wins the next iron chef super chefs", "answer": "Zakarian", "passage": "\"Iron Chef Showdown\"\nan Iron Chef in \"\"Iron Chef Showdown\"\" and does not include win/loss records on any previous programs including \"\"Iron Chef,\"\" \"\"Iron Chef America,\"\" \"\"The Next Iron Chef,\"\" or \"\"Iron Chef Gauntlet\"\". Prior to the premiere episode of \"\"Showdown\"\", Food Network aired a one-time special, \"\"Iron Chef: Outside the Stadium\"\", which reviewed current status of former and current Iron Chefs Bobby Flay, Alex Guarnaschelli, Geoffrey Zakarian, Stephanie Izard, Michael Symon, Jose Garces and Wolfgang Puck. After each episode of \"\"Showdown\"\", Food Network will air an episode of the companion series \"\"Iron Chef: Behind the Battle\"\". In this series, Alton Brown will"} +{"qid": "test903", "pid": "10902988", "query": "who wins the next iron chef super chefs", "answer": "Zakarian", "passage": "\"The Next Iron Chef\"\nChef Judy Joo from \"\"Iron Chef UK\"\". Ingredient Order: Landmark Order: Ingredient Order: The judges for this season are: Iron Chef Geoffrey Zakarian, restaurateur Donatella Arpaia, and food writer Simon Majumdar. A Vietnamese version of \"\"The Next Iron Chef\"\" premiered on November 18, 2012 on VTV3 which also broadcasts \"\"Iron Chef Vietnam\"\". It premiered a week after \"\"Iron Chef Vietnam\"\" ended the first series. The Next Iron Chef The Next Iron Chef is a limited-run series on the Food Network that aired its fifth season in 2012. Each season is a stand-alone competition to select a chef to be designated"} +{"qid": "test903", "pid": "4436380", "query": "who wins the next iron chef super chefs", "answer": "Zakarian", "passage": "\"Iron Chef America\"\nAnne Burrell, Robert Irvine, among others. The December 18 battle in Kitchen Stadium featured Geoffrey Zakarian and Elizabeth Falkner. Zakarian prevailed and was named the winner. His first battle aired on December 25, 2011 during which he emerged victorious, being the second chef ever to receive a perfect overall score of 60 on \"\"Iron Chef America\"\". The fifth season of \"\"The Next Iron Chef\"\" in November 2012 featured 8 chefs who had previously competed on the show, plus 2 newcomers. In the final battle, Alex Guarnaschelli defeated Amanda Freitag, becoming the second female Iron Chef, as well as the first"} +{"qid": "test905", "pid": "15822282", "query": "where was one direction what makes you beautiful filmed", "answer": "Malibu, California", "passage": "\"What Makes You Beautiful\"\n2016. \"\"What Makes You Beautiful\"\" has sold over 7 million copies worldwide. The music video for \"\"What Makes You Beautiful\"\" was directed by John Urbano. Filmed over two days in July 2011, it premiered on 19 August 2011. On each of the five days preceding the video's premiere, One Direction posted a teaser trailer of the video online. Each teaser showed footage from the video and behind the scenes, and one member of the band announcing how many days were left until the video premiere. The video opens with One Direction spending time on a Malibu, California beach intercut with"} +{"qid": "test906", "pid": "1465985", "query": "when did they start vaccinating for whooping cough", "answer": "the 1920s", "passage": "\"Whooping cough\"\nthe highest incidence rate, with 3,877 cases, although it did not make an official epidemic declaration. \"\"B. pertussis\"\" was discovered in 1906 by Jules Bordet and Octave Gengou, who also developed the first serology and vaccine. Efforts to develop an inactivated whole-cell vaccine began soon after \"\"B. pertussis\"\" was cultured that year. In the 1920s, Louis W. Sauer developed a weak vaccine for whooping cough at Evanston Hospital (Evanston, IL). In 1925 Danish physician Thorvald Madsen was the first to test a whole-cell vaccine on a wide scale. Madsen used the vaccine to control outbreaks in the Faroe Islands in"} +{"qid": "test906", "pid": "1465968", "query": "when did they start vaccinating for whooping cough", "answer": "the 1940s", "passage": "\"Whooping cough\"\nof all ages may be affected. In 2015, pertussis resulted in 58,700 deaths – down from 138,000 deaths in 1990. Outbreaks of the disease were first described in the 16th century. The bacterium that causes the infection was discovered in 1906. The pertussis vaccine became available in the 1940s. The classic symptoms of pertussis are a paroxysmal cough, inspiratory whoop, and fainting, or vomiting after coughing. The cough from pertussis has been documented to cause subconjunctival hemorrhages, rib fractures, urinary incontinence, hernias, and vertebral artery dissection. Violent coughing can cause the pleura to rupture, leading to a pneumothorax. Vomiting after"} +{"qid": "test907", "pid": "6713813", "query": "who is the new york state senate majority leader", "answer": "John J. Flanagan", "passage": "\"Majority Leader of the New York State Senate\"\nwhile it was also announced that former majority leader Malcolm Smith had assumed the title of president pro tempore, and John Sampson would serve as Democratic conference leader with the understanding he would assume the presidency at an undetermined future date. Following the 2010 election and the Republican victory in the Senate, Senator Dean Skelos from Long Island served as both Temporary President and Majority Leader, but resigned in May 2015 in the midst of corruption charges. The current majority leader, or president, is John J. Flanagan. The position of President pro tempore of the New York State Senate was"} +{"qid": "test907", "pid": "5291247", "query": "who is the new york state senate majority leader", "answer": "John J. Flanagan", "passage": "\"John J. Flanagan\"\nwife, Lisa Perez, have three children and reside in East Northport, New York. In August 2017, Flanagan publicly stated that he had recently completed an alcohol treatment program. John J. Flanagan John J. Flanagan (born May 7, 1961) is the current Majority Leader of the New York State Senate. A Republican, Flanagan represents the 2nd District of the New York State Senate, which includes the entire town of Smithtown and portions of both the towns of Brookhaven and Huntington in Suffolk County, New York. He has served in the Senate since 2003, and as Majority Leader since May 2015. Flanagan"} +{"qid": "test907", "pid": "5291241", "query": "who is the new york state senate majority leader", "answer": "John J. Flanagan", "passage": "\"John J. Flanagan\"\nJohn J. Flanagan John J. Flanagan (born May 7, 1961) is the current Majority Leader of the New York State Senate. A Republican, Flanagan represents the 2nd District of the New York State Senate, which includes the entire town of Smithtown and portions of both the towns of Brookhaven and Huntington in Suffolk County, New York. He has served in the Senate since 2003, and as Majority Leader since May 2015. Flanagan was raised in Huntington, New York and attended Harborfields High School. He graduated from the College of William and Mary in 1983 with a B.A. in economics. He"} +{"qid": "test908", "pid": "3305312", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel ceiling\"\nSistine Chapel ceiling The Sistine Chapel ceiling, painted by Michelangelo between 1508 and 1512, is a cornerstone work of High Renaissance art. The ceiling is that of the Sistine Chapel, the large papal chapel built within the Vatican between 1477 and 1480 by Pope Sixtus IV, for whom the chapel is named. It was painted at the commission of Pope Julius II. The chapel is the location for papal conclaves and many other important services. The ceiling's various painted elements form part of a larger scheme of decoration within the Chapel, which includes the large fresco \"\"The Last Judgment\"\" on"} +{"qid": "test908", "pid": "3305391", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel ceiling\"\nparticular pentimenti, highlights and shadows, and other detailing painted \"\"a secco\"\" – was lost in the removal of various accretions. Vasari Johann Wolfgang Goethe Waldemar Januszczak The art critic and television producer Waldemar Januszczak wrote that when the Sistine Chapel ceiling was recently cleaned, he \"\"was able to persuade the man at the Vatican who was in charge of Japanese TV access to let me climb the scaffold while the cleaning was in progress.\"\" Gabriele Bartz and Eberhard König Pope John Paul II Sistine Chapel ceiling The Sistine Chapel ceiling, painted by Michelangelo between 1508 and 1512, is a cornerstone"} +{"qid": "test908", "pid": "9948355", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Gallery of Sistine Chapel ceiling\"\nGallery of Sistine Chapel ceiling The Sistine Chapel ceiling, painted by Michelangelo between 1508 and 1512, is one of the most renowned artworks of the High Renaissance. Central to the ceiling decoration are nine scenes from the Book of Genesis of which \"\"The Creation of Adam\"\" is the best known, the hands of God and Adam being reproduced in countless imitations. The complex design includes several sets of individual figures, both clothed and nude, which allowed Michelangelo to fully demonstrate his skill in creating a huge variety of poses for the human figure, and have provided an enormously influential pattern"} +{"qid": "test908", "pid": "9541055", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Restoration of the Sistine Chapel frescoes\"\nand by the painting of the \"\"Last Judgment\"\", commissioned by Pope Clement VII and completed in 1541, again by Michelangelo. The tapestries on the lowest tier, today best known from the Raphael Cartoons (painted designs) of 1515–16, completed the ensemble. Together the paintings make up the greatest pictorial scheme of the Renaissance. Individually, some of Michelangelo's paintings on the ceiling are among the most notable works of western art ever created. The frescoes of the Sistine Chapel and in particular the ceiling and accompanying lunettes by Michelangelo have been subject to a number of restorations, the most recent taking place"} +{"qid": "test908", "pid": "3305385", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel ceiling\"\nand the relatively conservative concept of the relationship between Eve and her Creator adheres closely to Jacopo's design. Other panels on the ceiling, most particularly the iconic \"\"Creation of Adam\"\" show \"\"... unprecedented invention\"\". The ceiling of the Sistine Chapel was to have a profound effect upon other artists, even before it was completed. Vasari, in his Life of Raphael, tells us that Bramante, who had the keys to the chapel, let Raphael in to examine the paintings in Michelangelo's absence. On seeing Michelangelo's prophets, Raphael went back to the picture of the Prophet Isaiah that he was painting on"} +{"qid": "test908", "pid": "4779822", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Chigi Chapel\"\nAdam\"\", \"\"Creation of Eve\"\", \"\"Creation of the Animals\"\", \"\"The Original Sin\"\" and \"\"Expulsion from Paradise\"\". The paintings show the strong influence of the sculptural style of Michelangelo's famous Genesis-cycle on the ceiling of the Sistine Chapel. The scenes are not in strictly chronological order. The first five are the same as the parallel Genesis paintings in the Sistine Chapel but the sixth fresco adds a new subject, the creation of the fishes, birds and wild animals. The sixth scene of the Sistine ceiling is separated into two individual paintings on the drum of the Chigi Chapel. Salviati's cycle ends here,"} +{"qid": "test908", "pid": "835051", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel\"\nSistine Chapel ceiling and \"\"The Last Judgment\"\" by Michelangelo. During the reign of Sixtus IV, a team of Renaissance painters that included Sandro Botticelli, Pietro Perugino, Pinturicchio, Domenico Ghirlandaio and Cosimo Rosselli, created a series of frescos depicting the \"\"Life of Moses\"\" and the \"\"Life of Christ\"\", offset by papal portraits above and trompe l’oeil drapery below. These paintings were completed in 1482, and on 15 August 1483 Sixtus IV celebrated the first mass in the Sistine Chapel for the Feast of the Assumption, at which ceremony the chapel was consecrated and dedicated to the Virgin Mary. Between 1508 and"} +{"qid": "test908", "pid": "9948358", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Gallery of Sistine Chapel ceiling\"\non the Flight into Egypt. The \"\"Ignudi\"\" which surround the narrative scenes may show the perfection of Humanity, or may represent angels. They were often imitated by other artists. The shields represent violent episodes in the history of Israel. Gallery of Sistine Chapel ceiling The Sistine Chapel ceiling, painted by Michelangelo between 1508 and 1512, is one of the most renowned artworks of the High Renaissance. Central to the ceiling decoration are nine scenes from the Book of Genesis of which \"\"The Creation of Adam\"\" is the best known, the hands of God and Adam being reproduced in countless imitations."} +{"qid": "test908", "pid": "9541054", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Restoration of the Sistine Chapel frescoes\"\nRestoration of the Sistine Chapel frescoes The conservation-restoration of the frescoes of the Sistine Chapel was one of the most significant conservation-restorations of the 20th century. The Sistine Chapel was built by Pope Sixtus IV within the Vatican immediately to the north of St. Peter's Basilica and completed in about 1481. Its walls were decorated by a number of Renaissance painters who were among the most highly regarded artists of late 15th century Italy, including Ghirlandaio, Perugino, and Botticelli. The Chapel was further enhanced under Pope Julius II by the painting of the ceiling by Michelangelo between 1508 and 1512"} +{"qid": "test908", "pid": "42960", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "Baroque\nof looking up at heaven. Another feature of baroque churches are the \"\"quadratura\"\"; trompe-l'œil paintings on the ceiling in stucco frames, either real or painted, crowded with paintings of saints and angels and connected by architectural details with the balustrades and consoles. \"\"Quadratura\"\" paintings of Atlantes below the cornices appear to be supporting the ceiling of the church. Unlike the painted ceilings of Michelangelo in the Sistine Chapel, which combined different scenes, each with its own perspective, to be looked at one at a time, the Baroque ceiling paintings were carefully created so the viewer on the floor of the"} +{"qid": "test908", "pid": "9638432", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Giuliano Bugiardini\"\nmoved to the studio of Fra Bartolomeo. He completed certain works left unfinished by Fra Bartolomeo when he died. Some years later in Rome, while at work on the ceiling of the Sistine Chapel, Michelangelo sought Giuliano Bugiardini's services but later rejected them. Vasari mentioned Bugiardini assisted Michelangelo very briefly in 1508 with the painting of the ceiling of the Sistine Chapel. He painted a \"\"Martyrdom of St Catherine\"\" for Santa Maria Novella in Florence, based on Michelangelo's sketches. He also painted in Bologna in 1526–1530. His earliest known works of between 1495 and 1500 show the influence of his"} +{"qid": "test908", "pid": "14421673", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Separation of Light from Darkness\"\nthe Book of Genesis: Although in terms of the Genesis chronology it is the first of nine central panels along the Sistine ceiling, the \"\"Separation of Light from Darkness\"\" was the last of the nine panels painted by Michelangelo. Michelangelo painted the Sistine ceiling in two stages. Between May 1508 and the summer of 1511, he completed the \"\"entrance half\"\" of the Sistine chapel and ended this stage by painting the \"\"Creation of Eve\"\" and the scenes flanking this central panel. After an idle period of about 6 months, he painted the \"\"altar half,\"\" starting with the \"\"Creation of Adam\"\","} +{"qid": "test908", "pid": "835082", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel\"\nceiling restoration began on 7 November 1984. The restoration complete, the chapel was re-opened to the public on 8 April 1994. The part of the restoration in the Sistine Chapel that has caused the most concern is the ceiling, painted by Michelangelo. The emergence of the brightly coloured Ancestors of Christ from the gloom sparked a reaction of fear that the processes being employed in the cleaning were too severe and removed the original intent of the artist. The problem lies in the analysis and understanding of the techniques utilised by Michelangelo, and the technical response of the restorers to"} +{"qid": "test908", "pid": "835052", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel\"\n1512, under the patronage of Pope Julius II, Michelangelo painted the chapel's ceiling, a project which changed the course of Western art and is regarded as one of the major artistic accomplishments of human civilization. In a different climate after the Sack of Rome, he returned and between 1535 and 1541, painted \"\"The Last Judgment\"\" for Popes Clement VII and Paul III. The fame of Michelangelo's paintings has drawn multitudes of visitors to the chapel ever since they were revealed five hundred years ago. While known as the location of Papal conclaves, the primary function of the Sistine Chapel is"} +{"qid": "test908", "pid": "3305323", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel ceiling\"\nof the Sistine Chapel. At the outset, the plaster, \"\"intonaco\"\", began to grow mold because it was too wet. Michelangelo had to remove it and start again. He then tried a new formula created by one of his assistants, Jacopo l'Indaco, which resisted mold and entered the Italian building tradition. Because he was painting \"\"fresco\"\", the plaster was laid in a new section every day, called a \"\"giornata\"\". At the beginning of each session, the edges would be scraped away and a new area laid down. The edges between \"\"giornate\"\" remain slightly visible; thus, they give a good idea of"} +{"qid": "test908", "pid": "3305370", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel ceiling\"\npicture is crowded with figures and separate incidents as the various individuals who have been attacked by snakes struggle and die or turn toward the icon that will save them. This is the most Mannerist of Michelangelo's earlier compositions at the Sistine Chapel, picking up the theme of human distress begun in the \"\"Great Flood\"\" scene and carrying it forward into the torment of lost souls in the \"\"Last Judgement\"\", which was later painted below. Between the large pendentives that support the vault are windows, six on each side of the chapel. There were two more windows in each end"} +{"qid": "test908", "pid": "9541080", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Restoration of the Sistine Chapel frescoes\"\npaintings as if we had been given the chance of being present when they were first shown.\"\" Other writers were less flattering. Andrew Wordsworth of \"\"The Independent\"\", London, expressed the major point of concern: This crucial matter was also emphasised by Beck and defined in very clearly expressed terms on the website of the artist, Peter Layne Arguimbau. That part of the restoration in the Sistine Chapel which has caused the most concern is the ceiling, painted by Michelangelo. The emergence of the brightly coloured Ancestors of Christ from the gloom sparked a reaction of fear that the processes being"} +{"qid": "test908", "pid": "2091192", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Renaissance art\"\nRome. He then set about an exploration of the expressive possibilities of the human anatomy. His commission by Pope Julius II to paint the Sistine Chapel ceiling resulted in the supreme masterpiece of figurative composition, which was to have profound effect on every subsequent generation of European artists. His later work, \"\"The Last Judgement\"\", painted on the altar wall of the Sistine Chapel between 1534 and 1541 shows a Mannerist (also called Late Renaissance) style with generally elongated bodies which took over from the High Renaissance style between 1520 and 1530. Standing alongside Leonardo and Michelangelo as the third great"} +{"qid": "test908", "pid": "3305371", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Sistine Chapel ceiling\"\nof the chapel, now closed, and those above the High Altar covered by the Last Judgement. Above each window is an arched shape, referred to as a lunette and above eight of the lunettes at the sides of the chapel are triangular \"\"spandrels\"\" filling the spaces between the side pendentives and the vault, the other eight lunettes each being below one of the corner pendentives. Michelangelo was commissioned to paint these areas as part of the work on the ceiling. The structures form visual bridges between the walls and the ceiling, and the figures which are painted on them are"} +{"qid": "test908", "pid": "8002178", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Poor Man's Bible\"\nimages of the \"\"Last Judgement\"\". Mural painting was also common in Italy, where the method employed was generally fresco, painting on freshly laid, slightly damp plaster. Many fine examples have survived from the Medieval and Early Renaissance periods. Remarkably, the best known example of such Biblical story-telling was not created for the edification of the poor but for the rich and powerful, the Ceiling of the Sistine Chapel created by Michelangelo for Pope Julius II. Murals occur in France, particularly in the south where the walls tend to be wider, rather than the north where the art of stained glass"} +{"qid": "test908", "pid": "8975771", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Tourism in Vatican City\"\na fee of about 15 to 19 euros. The number of people who come to see the Vatican's Museum has surpassed five million per year as of 2011. The Vatican's exotic gardens are also an attraction. From the gardens, wonderful views can be seen of St. Peter's Basilica and the Apostolic Palace. The Sistine Chapel is home to many pieces of art including statues, tapestries, and paintings by Michelangelo Buonarroti. One of the most famous attractions is the ceiling painting of Creation of Adam, along with the rest of the ceiling done by Michelangelo between the years of 1508 and"} +{"qid": "test908", "pid": "9898180", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Florentine painting\"\npainting for the next half millennium. Many other Renaissance artists painted versions of \"\"the Last Supper\"\", but only Leonardo's was destined to be reproduced countless times in wood, alabaster, plaster, lithograph, tapestry, crochet and table-carpets. Apart from the direct impact of the works themselves, Leonardo's studies of light, anatomy, landscape, and human expression were disseminated in part through his generosity to a retinue of students. In 1508 Pope Julius II succeeded in getting the sculptor Michelangelo to agree to continue the decorative scheme of the Sistine Chapel. The Sistine Chapel ceiling was constructed in such a way that there were"} +{"qid": "test908", "pid": "15256908", "query": "who created the pieta and also painted the ceiling of the sistine chapel", "answer": "Michelangelo", "passage": "\"Prophet Daniel (Michelangelo)\"\nProphet Daniel (Michelangelo) The Prophet Daniel is one of the seven Old Testament prophet's painted by the Italian High Renaissance master Michelangelo (c. 1542–1545) on the Sistine Chapel ceiling. The Sistine Chapel is in Vatican Palace, in the Vatican City. This particular fresco figure is painted second on the right from the side of the High Altar. Unlike many other paintings of the period, this portrayal makes no reference to the most famous event from Daniel's life, that is his time in the den of the lions. Instead, Michelangelo shows Daniel reading a great book, which is held up by"} +{"qid": "test909", "pid": "890821", "query": "who played cory's older brother on boy meets world", "answer": "Will Friedle", "passage": "\"Boy Meets World\"\nBoy Meets World Boy Meets World is an American television sitcom created and produced by Michael Jacobs and April Kelly. The show aired on the ABC network from September 24, 1993 to May 5, 2000, lasting seven seasons. The show chronicles the everyday events and life-lessons of Cory Matthews (Ben Savage). It also stars Cory's teacher George Feeny (William Daniels), best friend Shawn Hunter (Rider Strong), brother Eric (Will Friedle), and love interest Topanga (Danielle Fishel). The show also features Cory's father Alan (William Russ), mother Amy (Betsy Randle), and sister Morgan (Lily Nicksay), while introducing the characters Angela Moore"} +{"qid": "test909", "pid": "890855", "query": "who played cory's older brother on boy meets world", "answer": "Will Friedle", "passage": "\"Boy Meets World\"\nSavage and Danielle Fishel reprise their roles as Cory and Topanga. Philadelphia area native Sabrina Carpenter plays Riley's best friend Maya Hart. Several cast members from \"\"Boy Meets World\"\" appear in recurring guest roles. Most prominently: Rider Strong (Shawn Hunter), Will Friedle (Eric Matthews), Danny McNulty (Harley Keiner), Lee Norris (Stuart Minkus), and William Daniels (Mr. Feeny). \"\"Girl Meets World\"\" ran three seasons before being canceled in 2017. Boy Meets World Boy Meets World is an American television sitcom created and produced by Michael Jacobs and April Kelly. The show aired on the ABC network from September 24, 1993 to"} +{"qid": "test909", "pid": "890823", "query": "who played cory's older brother on boy meets world", "answer": "Will Friedle", "passage": "\"Boy Meets World\"\nmore and respect them for all that they do. His relationship with his elder brother Eric (Will Friedle) becomes confusing as Eric's constant obsession with girls is foreign to Cory, and he becomes more protective of his younger sister Morgan (Lily Nicksay from this season through the end of the second season). Cory begins to show interest in Topanga (Danielle Fishel), a smart outsider in his class, though he often hides this by insulting and berating her. Cory and Topanga have known each other since they were kids, making romance in their relationship even more predictable. Cory and Shawn's friendship"} +{"qid": "test909", "pid": "16633011", "query": "who played cory's older brother on boy meets world", "answer": "Will Friedle", "passage": "\"Pilot (Boy Meets World)\"\nlove by reading \"\"Romeo and Juliet\"\", but Cory struggles to see girls and love as \"\"good\"\" when his brother Eric takes a girl to see a baseball game instead of him. Eric's date is unsuccessful, but Cory advises Eric to give the girl another chance after a conversation with Mr Feeny in detention. Seven characters receive top billing in the episode: Cory Matthews (Ben Savage); Shawn Hunter (Rider Strong); George Feeny (William Daniels); Eric Matthews (Will Friedle); Alan Matthews (William Russ); Amy Matthews (Betsy Randle) and Morgan Matthews (Lily Nicksay). Krystin Moore made a guest appearance as Vanessa Kincaid, while"} +{"qid": "test909", "pid": "16956253", "query": "who played cory's older brother on boy meets world", "answer": "Will Friedle", "passage": "\"Girl Meets World\"\nin mid-November 2012 for the lead roles of Riley Matthews, the daughter of Cory and Topanga, Maya, a witty friend of Riley's who has a troubled past, and Elliot, Riley's older brother. By the end of January 2013, Rowan Blanchard and Sabrina Carpenter were cast as Riley and Maya, respectively. Teo Halm was tapped for the role of Elliot in early March. Filming of the pilot began on March 20, 2013, and concluded on March 22, 2013. Rider Strong and Will Friedle made a surprise visit to the set, sparking rumors of a return, or at least a cameo appearance,"} +{"qid": "test910", "pid": "10233487", "query": "who sings i want to be a rockstar", "answer": "Nickelback", "passage": "\"Famous (Puddle of Mudd song)\"\nFamous (Puddle of Mudd song) \"\"Famous\"\" is the title track and first single on the fourth studio album by post-grunge band Puddle of Mudd. The song was sent out to rock radio on May 11, 2007 and was officially released on May 21. In the song, lead singer Wes Scantlin, sings about wanting to be famous, for the perks that come along with that life. It has drawn comparisons to Nickelback's \"\"Rockstar\"\" because \"\"Rockstar\"\" is also about wanting to achieve celebrity status. The song has also featured in the video games WWE Smackdown vs. Raw 2008 and UFC Undisputed 2009."} +{"qid": "test911", "pid": "20620073", "query": "who did virginia cavaliers lose to in basketball this year", "answer": "UMBC", "passage": "\"2018–19 Virginia Cavaliers men's basketball team\"\nwhere they were upset by No. 16 UMBC in the First Round. This was the first time in NCAA tournament history that a No. 1 upset by No. 16. !colspan=12 style=| Non-conference regular season !colspan=12 style=\"\"\"\"| ACC Regular Season !colspan=12 style=| ACC Tournament *AP does not release post-NCAA Tournament rankings
^Coaches did not release a Week 2 poll. 2018–19 Virginia Cavaliers men's basketball team The 2018–19 Virginia Cavaliers men's basketball team represented the University of Virginia during the 2018–19 NCAA Division I men's basketball season. The team is led by head coach Tony Bennett in his tenth year, and played their"} +{"qid": "test912", "pid": "2655189", "query": "who was the king of england in 1756", "answer": "George II", "passage": "\"Earl of Harrowby\"\nHarrowby, of Harrowby in the County of Lincoln, was created in the Peerage of Great Britain in 1776 for Nathaniel Ryder, who had previously represented Tiverton in Parliament. He was the son of Sir Dudley Ryder, Lord Chief Justice of the King's Bench from 1754 to 1756. Dudley Ryder was offered a peerage by King George II on 24 May 1756, but died the following day, before the patent was completed. Lord Harrowby was succeeded by his son, the aforementioned second Baron, who was created Earl of Harrowby in 1809. The Ryders derive their name and their coat-of-arms from the"} +{"qid": "test914", "pid": "16385752", "query": "what was the full name of the titanic", "answer": "RMS Titanic", "passage": "\"Lifeboats of the RMS Titanic\"\nthe ship. The boats were supposed to be stocked with emergency supplies, but \"\"Titanic\"\"s passengers later found that they had only been partially provisioned. No lifeboat or fire drills had been carried out since \"\"Titanic\"\" left Southampton. A lifeboat drill had been scheduled for the morning before the ship sank, but was cancelled, allegedly because the ship's captain, Edward Smith, wanted to deliver one last Sunday service before he went into full retirement. Lists had been posted on the ship allocating crew members to particular lifeboat stations, but few appeared to have read them or to have known what they"} +{"qid": "test918", "pid": "3105200", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"New York City\"\nHudson River separates the city from the U.S. state of New Jersey. The East River—a tidal strait—flows from Long Island Sound and separates the Bronx and Manhattan from Long Island. The Harlem River, another tidal strait between the East and Hudson Rivers, separates most of Manhattan from the Bronx. The Bronx River, which flows through the Bronx and Westchester County, is the only entirely fresh water river in the city. The city's land has been altered substantially by human intervention, with considerable land reclamation along the waterfronts since Dutch colonial times; reclamation is most prominent in Lower Manhattan, with developments"} +{"qid": "test918", "pid": "6795495", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Geography of New York City\"\nBronx and Manhattan from Northern New Jersey. The Harlem River, another tidal strait between the East and Hudson Rivers, separates Manhattan from the Bronx. The boroughs of New York City straddle the border between two geologic provinces of eastern North America. Brooklyn and Queens, located on Long Island, are part of the eastern coastal plain. Long Island is a massive moraine which formed at the southern fringe of the Laurentide Ice Sheet during the last Ice Age. The Bronx and Manhattan lie on the eastern edge of the Newark Basin, a block of the Earth's crust which sank downward during"} +{"qid": "test918", "pid": "5037968", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Randalls and Wards Islands\"\nthe Bronx, opened. Construction of this bridge was proposed in 2006, but did not begin until 2013. Randalls and Wards Islands Randalls Island (also called Randall's Island) and Wards Island are conjoined islands, collectively called Randalls and Wards Islands, in the New York City borough of Manhattan, separated from Manhattan by the Harlem River, from Queens by the East River and Hell Gate, and from the Bronx by the Bronx Kill. The two islands were formerly separated, with Randalls Island to the north of Wards Island. The channel between them, Little Hell Gate, was infilled by the early 1960s. A"} +{"qid": "test918", "pid": "560996", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "Manhattan\nManhattan Manhattan (), often referred to locally as the City, is the most densely populated borough of New York City, its economic and administrative center, cultural identifier, and historical birthplace. The borough is coextensive with New York County, one of the original counties of the U.S. state of New York. The borough consists mostly of Manhattan Island, bounded by the Hudson, East, and Harlem rivers; several small adjacent islands; and Marble Hill, a small neighborhood now on the U.S. mainland, physically connected to the Bronx and separated from the rest of Manhattan by the Harlem River. Manhattan Island is divided"} +{"qid": "test918", "pid": "5037944", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Randalls and Wards Islands\"\nRandalls and Wards Islands Randalls Island (also called Randall's Island) and Wards Island are conjoined islands, collectively called Randalls and Wards Islands, in the New York City borough of Manhattan, separated from Manhattan by the Harlem River, from Queens by the East River and Hell Gate, and from the Bronx by the Bronx Kill. The two islands were formerly separated, with Randalls Island to the north of Wards Island. The channel between them, Little Hell Gate, was infilled by the early 1960s. A third, smaller island, Sunken Meadow Island, was located east of Randalls Island and was connected to it"} +{"qid": "test918", "pid": "561030", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "Manhattan\nexpand the Manhattan shoreline across West Street, creating Battery Park City, The result was a 700-foot (210-m) extension into the river, running six blocks or , covering , providing a riverfront esplanade and over of parks; Hudson River Park was subsequently opened in stages beginning in 1998. One neighborhood of New York County is contiguous with the U.S. mainland – Marble Hill at one time was part of Manhattan Island, but the Harlem River Ship Canal, dug in 1895 to improve navigation on the Harlem River, separated it from the remainder of Manhattan as an island between the Bronx and"} +{"qid": "test918", "pid": "1990955", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Harlem River\"\nthe water. It also contains several large scale public art murals and 15 etched steel heritage plaques depicting the history and culture of East and Central Harlem communities. The Harlem River Park will eventually connect two portions of the Manhattan Waterfront Greenway around all of Manhattan. On the Bronx side of the river, recently opened parks include Mill Pond Park and Bridge Park. Harlem River The Harlem River is an tidal strait flowing between the Hudson River and the East River and separating the island of Manhattan from the Bronx on the New York mainland. The northern stretch, also called"} +{"qid": "test918", "pid": "3178057", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Spuyten Duyvil Creek\"\nSpuyten Duyvil Creek Spuyten Duyvil Creek is a short tidal estuary in New York City connecting the Hudson River to the Harlem River Ship Canal and then on to the Harlem River. The confluence of the three water bodies separate the island of Manhattan from the Bronx and the rest of the mainland. Once a distinct, turbulent waterway between the Hudson and Harlem rivers, the creek has been subsumed by the modern ship canal. The Bronx neighborhood of Spuyten Duyvil lies to the north of the creek, neighboring Marble Hill lies to the north of the Ship Canal. The earliest"} +{"qid": "test918", "pid": "5139311", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Willis Avenue Bridge\"\nWillis Avenue Bridge The Willis Avenue Bridge is a swing bridge that carries road traffic northbound (and bicycles and pedestrians both ways) over the Harlem River between the New York City boroughs of Manhattan and the Bronx, United States. It connects First Avenue in Manhattan with Willis Avenue in the Bronx. The New York City Department of Transportation is responsible for maintaining and operating the bridge. The bridge is part of the course for the annual New York City Marathon. The runners, after crossing over from Manhattan to The Bronx via the bridge - which they have dubbed \"\"the wall\"\""} +{"qid": "test918", "pid": "2639694", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"East Harlem\"\nwas less than one percent, but by 2010, it has gone up to being three percent in the area. In the southern part, it rose from 4.6% to 8.4%. As of 2010, the Puerto Rican population was 27.7% in zip code 10029, and 23.4% in 10035. 10035 also has a large Mexican population, at 10.7%. The Harlem River separates the Bronx and Manhattan, necessitating several spans between the two New York City boroughs. In East Harlem, the Wards Island Bridge, also known as the 103rd Street Footbridge, connects Manhattan with Wards Island. The Triboro Bridge is a complex of three"} +{"qid": "test918", "pid": "561031", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "Manhattan\nthe remainder of Manhattan. Before World War I, the section of the original Harlem River channel separating Marble Hill from The Bronx was filled in, and Marble Hill became part of the mainland. Marble Hill is one example of how Manhattan's land has been considerably altered by human intervention. The borough has seen substantial land reclamation along its waterfronts since Dutch colonial times, and much of the natural variation in its topography has been evened out. In New York Harbor, there are three smaller islands: Other smaller islands, in the East River, include (from north to south): The bedrock underlying"} +{"qid": "test918", "pid": "3939516", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Spuyten Duyvil, Bronx\"\nCounty. Spuyten Duyvil Bridge, a railroad swing bridge that carries Amtrak's Empire Corridor line between New York City and Albany, spans Spuyten Duyvil Creek. The north end of the Henry Hudson Bridge connects the neighborhood to the island of Manhattan via the Henry Hudson Parkway. Notes Bibliography Spuyten Duyvil, Bronx Spuyten Duyvil is an upper middle class neighborhood of the Bronx, New York City. It is bounded on the north by Riverdale, on the east by Kingsbridge, on the south by the Harlem River, and on the west by the Hudson River, although some consider it to be the southernmost"} +{"qid": "test918", "pid": "1990923", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Harlem River\"\nHarlem River The Harlem River is an tidal strait flowing between the Hudson River and the East River and separating the island of Manhattan from the Bronx on the New York mainland. The northern stretch, also called the Spuyten Duyvil (\"\"spewing devil\"\") Creek, has been significantly altered for navigation purposes. Originally it curved round the north of Marble Hill, but in 1895 the Harlem River Ship Canal was dug between Manhattan and Marble Hill, and in 1914 the original course was filled in. The Harlem River forms a part of the Hudson estuary system, serving as a narrow strait that"} +{"qid": "test918", "pid": "4510651", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Broadway Bridge (Manhattan)\"\nNew York City Transit, and the express bus route operated by the MTA Bus Company. Notes Broadway Bridge (Manhattan) The Broadway Bridge in New York City crosses the Harlem River Ship Canal between Inwood on Manhattan Island and Marble Hill, also originally part of the island, but separated from it by the ship canal; it is still part of the borough of Manhattan. The bridge is named because it carries Broadway, which is designated as US 9 here. The bridge also carries the IRT Broadway–Seventh Avenue Line () above the road. Before the Harlem River was rerouted, the bridge in"} +{"qid": "test918", "pid": "5236960", "query": "which river separates the bronx in new york city from manhattan island", "answer": "Harlem River", "passage": "\"Transportation in New York City\"\nof highway. New York's limited-access parkways, another Moses Project, are frequently congested as well, despite being designed from the outset to only carry cars, as opposed to commercial trucks or buses. The FDR Drive (originally known as the East River Drive) and Harlem River Drive are two such routes that run along the eastern edge of Manhattan. The Henry Hudson Parkway, the Bronx River Parkway and the Hutchinson River Parkway link the Bronx to nearby Westchester County and its parkways; the Grand Central Parkway and Belt Parkway provide similar functions for Long Island's parkway system. The city's traffic lights are"} +{"qid": "test92", "pid": "18713215", "query": "who won the oscar for best picture in 1976", "answer": "Rocky", "passage": "\"88th Academy Awards\"\nOscars, \"\"Spotlight\"\" was the first film since 1952's \"\"The Greatest Show on Earth\"\" to win Best Picture with only one other award. Alejandro G. Iñárritu became the third individual to win two consecutive Oscars for Best Director. By virtue of his previous nomination for his portrayal of the titular character in 1976's \"\"Rocky\"\", Best Supporting Actor nominee Sylvester Stallone was the sixth person to be nominated for playing the same role in two different films. At the age of 87, Ennio Morricone was believed to be the oldest competitive winner in Oscar history. Having previously won for \"\"Gravity\"\" and \"\"Birdman\"\","} +{"qid": "test92", "pid": "4337387", "query": "who won the oscar for best picture in 1976", "answer": "Rocky", "passage": "\"Irwin Winkler\"\nIrwin Winkler Irwin Winkler (born May 25, 1931) is an American film producer and director. He is the producer or director of 50 motion pictures, dating back to 1967's \"\"Double Trouble\"\", starring Elvis Presley. The fourth film he produced, \"\"They Shoot Horses, Don't They?\"\" (1969), starring Jane Fonda, was nominated for nine Academy Awards. He won an Oscar for Best Picture for 1976's \"\"Rocky\"\". As a producer, he has been nominated for Best Picture for three other films: \"\"Raging Bull\"\", \"\"The Right Stuff\"\", and \"\"Goodfellas\"\". Winkler was born to a Jewish family in New York City, to Sol and Anna"} +{"qid": "test92", "pid": "4337389", "query": "who won the oscar for best picture in 1976", "answer": "Rocky", "passage": "\"Irwin Winkler\"\nyet with \"\"Rocky\"\" (1976), which earned the Academy Award as Best Picture. Subsequently, the producing duo picked up Best Picture Oscar nominations for \"\"Raging Bull\"\" (1980) and \"\"The Right Stuff\"\" (1983), their last project together before Winkler launched his solo career with the \"\"Revolution\"\" (1985). Winkler produced such noteworthy features as Bertrand Tavernier's \"\"Round Midnight\"\" (1986) and back-to-back Costa-Gavras films, \"\"Betrayed\"\" (1988) and \"\"Music Box\"\" (1989), before receiving another Best Picture Oscar nomination for Martin Scorsese's \"\"Goodfellas\"\" (1990). He also returned to the franchise to oversee \"\"Rocky IV\"\" (1985) and \"\"Rocky V\"\" (1990), continuing the association forged with Sylvester Stallone"} +{"qid": "test920", "pid": "353132", "query": "where does the red wolf live in the world", "answer": "the southeastern United States", "passage": "\"Red wolf\"\nRed wolf The red wolf (\"\"Canis lupus rufus\"\" or \"\"Canis rufus\"\") is a canid native to the southeastern United States. Morphologically it is intermediate between the coyote and gray wolf, and is of a reddish, tawny color. The Red Wolf is a federally listed endangered species of the United States and is protected by law. It has been listed by IUCN as a critically endangered species since 1996. It is considered the rarest species of wolf and is one of the five most endangered species of canid in the world. Red wolves were originally distributed throughout the eastern United States"} +{"qid": "test923", "pid": "499395", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli\"\nto spread horizontally through an existing population. The process of transduction, which uses the bacterial virus called a bacteriophage, is where the spread of the gene encoding for the Shiga toxin from the \"\"Shigella\"\" bacteria to \"\"E. coli\"\" helped produce , the Shiga toxin-producing strain of \"\"E. coli.\"\" \"\"E. coli\"\" encompasses an enormous population of bacteria that exhibit a very high degree of both genetic and phenotypic diversity. Genome sequencing of a large number of isolates of \"\"E. coli\"\" and related bacteria shows that a taxonomic reclassification would be desirable. However, this has not been done, largely due to its"} +{"qid": "test923", "pid": "15790514", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Pathogenic Escherichia coli\"\ntimes as high as previous estimates,\"\" a finding which may have significance for the study and management of bacterial antibiotic resistance. Antibiotic-resistant \"\"E. coli\"\" may also pass on the genes responsible for antibiotic resistance to other species of bacteria, such as \"\"Staphylococcus aureus\"\", through a process called horizontal gene transfer. \"\"E. coli\"\" bacteria often carry multiple drug resistance plasmids, and under stress, readily transfer those plasmids to other species. Mixing of species in the intestines allows \"\"E. coli\"\" to accept and transfer plasmids from and to other bacteria. Thus, \"\"E. coli\"\" and the other enterobacteria are important reservoirs of transferable"} +{"qid": "test923", "pid": "499401", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli\"\n65,000 generations in the laboratory. For instance, \"\"E. coli\"\" typically do not have the ability to grow aerobically with citrate as a carbon source, which is used as a diagnostic criterion with which to differentiate \"\"E. coli\"\" from other, closely, related bacteria such as \"\"Salmonella\"\". In this experiment, one population of \"\"E. coli\"\" unexpectedly evolved the ability to aerobically metabolize citrate, a major evolutionary shift with some hallmarks of microbial speciation. \"\"E. coli\"\" is the type species of the genus (\"\"Escherichia\"\") and in turn \"\"Escherichia\"\" is the type genus of the family Enterobacteriaceae, where the family name does not stem"} +{"qid": "test923", "pid": "20788180", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"2018 Romaine lettuce E. coli O157:H7 outbreak\"\n2018 Romaine lettuce E. coli O157:H7 outbreak In 2018, a strain of \"\"Escherichia coli\"\" bacteria caused the reported illness of 210 people across 36 states in the US, carried on Romaine lettuce from Yuma, Arizona. This strain produces shiga toxin, which is thought to have been transferred to the species from a strain of \"\"Shigella\"\" by a bacteriophage, a kind of virus that (as the name implies) \"\"eats\"\" bacteria. On or after April 16, 2018, cases of food poisoning began to be reported in the New York State area. The CDC eventually concluded this was an example of O157:H7, its"} +{"qid": "test923", "pid": "10677620", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli O104:H21\"\nEscherichia coli O104:H21 \"\"Escherichia coli\"\" O104:H21 is a rare serotype of \"\"Escherichia coli\"\", a species of bacteria that lives in the lower intestines of mammals. The presence of many serotypes of \"\"E. coli\"\" in animals is beneficial or does not cause disease in animals. However, some serotypes of \"\" E. coli\"\" have been recognized as pathogenic to humans, e.g. , \"\"E. coli\"\" O121 and \"\"E. coli\"\" O104:H21. \"\"E. coli\"\" O104:H21 was discovered in 1982, when it caused an outbreak of severe bloody diarrhea. It had infected hamburgers, and those affected had eaten these hamburgers not fully cooked. An of \"\"E."} +{"qid": "test923", "pid": "1489676", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Shiga-like toxin\"\nShiga-like toxin Shiga-like toxin, also known as verotoxin and verocytotoxin, is a toxin generated by some strains of \"\"Escherichia coli\"\" (but see below). It is named for its similarity to the AB5-type Shiga toxin produced by the bacteria \"\"Shigella dysenteriae\"\" (see Vero cell). There are two types, known as SLT1 and SLT2. In 1977, researchers in Ottawa, Ontario discovered the Shiga toxin normally produced by \"\"Shigella dysenteriae\"\" in a line of \"\"E. coli\"\". The \"\"E. coli\"\" version of the toxin was named \"\"verotoxin\"\" because of its ability to kill \"\"Vero\"\" cells (African green monkey kidney cells) in culture. Shortly after,"} +{"qid": "test923", "pid": "6181679", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "Isobutanol\nleveraging the native metabolic networks in E. coli but altered its intracellular chemistry using genetic engineering to produce these alcohols. Key pathways in E. coli were modified to produce several higher-chain alcohols from glucose, including isobutanol, 1-butanol, 2-methyl-1-butanol, 3-methyl-1-butanol, and 2-phenylethanol. This strategy exploits the E. coli host's highly active amino acid biosynthetic pathway by shifting part of it to alcohol production. It is proposed that these unusual alcohols can be produced as efficiently as the biosynthesis of ethanol. Escherichia coli \"\"Escherichia coli\"\", or \"\"E. coli\"\", is a Gram-negative, rod-shaped bacteria. \"\"E. coli\"\" is the microorganism most likely to move"} +{"qid": "test923", "pid": "2518123", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Entamoeba coli\"\nspecimens. Sometimes the \"\"Entamoeba coli\"\" have parasites as well. One is the fungus \"\"Sphaerita\"\" spp. This fungus lives in the cytoplasm of the \"\"E. coli\"\". While this differentiation is typically done by visual examination of the parasitic cysts via light microscopy, new methods using molecular biology techniques have been developed. The scientific name of the amoeba, \"\"E. coli\"\", is often mistaken for the bacterium, \"\"Escherichia coli\"\". Unlike the bacterium, the amoeba is mostly harmless, and does not cause as many intestinal problems as some strains of the \"\"E. coli\"\" bacterium. Some of these harmful strains are inside raw or uncooked"} +{"qid": "test923", "pid": "9904208", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli O121\"\nEscherichia coli O121 \"\"Escherichia coli\"\" O121 is a pathogenic serotype of \"\"Escherichia coli\"\", associated with Shiga toxin, intestinal bleeding, and hemolytic-uremic syndrome (HUS). HUS, if left untreated, can lead to kidney failure. Most serotypes of \"\"E. coli\"\"—a widespread species of bacteria residing in the lower intestines of mammals—are beneficial or do not cause disease. Unlike other pathogenic serotypes, such as (also an enterohemorrhagic \"\"E. coli\"\"), little is known in detail about the public health significance of O121. Therefore, O121 is sometimes roughly classified as a type of “non-O157 Shiga toxin–producing \"\"E. coli\"\"” (non-O157 STEC). A U.S. outbreak of \"\"E. coli\"\""} +{"qid": "test923", "pid": "2844612", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Hemolytic-uremic syndrome\"\nof Shiga toxin-producing bacteria. Some humans can also be asymptomatic carriers. Once the bacteria colonizes, diarrhea followed by bloody diarrhea, hemorrhagic colitis, typically follows. STEC-HUS is usually preceded by a prodrome of diarrhea, which is often bloody, and is caused by Shiga-like toxin-producing bacteria such as enterohemorrhagic \"\"Escherichia coli\"\" (EHEC), of which \"\"E. coli\"\" O157:H7 is the most common serotype. Other serotypes also cause disease and can emerge as new causes of STEC-HUS, as occurred with \"\"E. coli\"\" O104:H4, which triggered a 2011 epidemic of STEC-HUS in Germany. The typical pathophysiology of HUS involves the binding of Shiga-toxin to the"} +{"qid": "test923", "pid": "4589805", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Coliform bacteria\"\nbe present. Such pathogens include disease-causing bacteria, viruses, or protozoa and many multicellular parasites. Coliform procedures are performed in aerobic or anaerobic conditions. Typical genera include: \"\"Escherichia coli\"\" (\"\"E. coli\"\"), a rod-shaped member of the coliforms group, can be distinguished from most other coliforms by its ability to ferment lactose at 44°C in the fecal coliform test, and by its growth and color reaction on certain types of culture media. When cultured on an eosin methylene blue (EMB) plate, a positive result for \"\"E. coli\"\" is metallic green colonies on a dark purple media. Escherichia coli have an incubation period"} +{"qid": "test923", "pid": "15435723", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli in molecular biology\"\n(i.e. \"\"E. coli\"\" is paraphyletic to the genus). In 1885, Theodor Escherich, a German pediatrician, first discovered this species in the feces of healthy individuals and called it \"\"Bacterium coli commune\"\" because it is found in the colon and early classifications of Prokaryotes placed these in a handful of genera based on their shape and motility (at that time Ernst Haeckel's classification of Bacteria in the kingdom Monera was in place). Following a revision of Bacteria it was reclassified as \"\"Bacillus coli\"\" by Migula in 1895 and later reclassified as \"\"Escherichia coli\"\". Due to its ease of culture and fast"} +{"qid": "test923", "pid": "14036468", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "Fonticula\nthey found opposite results. \"\"F. alba\"\" was also cultured with different strains of bacteria, to determine if other bacterial species could serve as a nutrient. The agar was streaked with different bacteria such as \"\"Bacillus megaterium\"\", \"\"Serratia marcescens\"\", \"\"Pseudomonas fluorescens\"\", \"\"Micrococcus luteus\"\", and \"\"Escherichia coli\"\". The strains with \"\"B.megaterium\"\", \"\"S.marcescens\"\", and \"\"P.fluorescens\"\" sorocarps did develop, but lesser and later than normal. In the strains with \"\"M.luteus\"\" it was found that no sorocarps or myxamoebae grew. The strain with \"\"E. coli\"\" did show adequate growth and fruiting. However, compared to \"\"K.pneumoniae\"\", the sorocarps that grew with \"\"E. coli\"\" were smaller in"} +{"qid": "test923", "pid": "499412", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli\"\ngastrointestinal tract of warm-blooded animals. \"\"E. coli\"\" normally colonizes an infant's gastrointestinal tract within 40 hours of birth, arriving with food or water or from the individuals handling the child. In the bowel, \"\"E. coli\"\" adheres to the mucus of the large intestine. It is the primary facultative anaerobe of the human gastrointestinal tract. (Facultative anaerobes are organisms that can grow in either the presence or absence of oxygen.) As long as these bacteria do not acquire genetic elements encoding for virulence factors, they remain benign commensals. Nonpathogenic \"\"E. coli\"\" strain Nissle 1917, also known as Mutaflor, and \"\"E. coli\"\""} +{"qid": "test923", "pid": "499387", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Escherichia coli\"\nEscherichia coli Escherichia coli (), also known as E. coli (), is a Gram-negative, facultative anaerobic, rod-shaped, coliform bacterium of the genus \"\"Escherichia\"\" that is commonly found in the lower intestine of warm-blooded organisms (endotherms). Most \"\"E. coli\"\" strains are harmless, but some serotypes can cause serious food poisoning in their hosts, and are occasionally responsible for product recalls due to food contamination. The harmless strains are part of the normal microbiota of the gut, and can benefit their hosts by producing vitamin K, and preventing colonization of the intestine with pathogenic bacteria, having a symbiotic relationship. \"\"E. coli\"\" is"} +{"qid": "test923", "pid": "15790490", "query": "what is the full scientific name for the e. coli bacteria", "answer": "Escherichia coli", "passage": "\"Pathogenic Escherichia coli\"\nPathogenic Escherichia coli Escherichia coli ( Anglicized to ; commonly abbreviated E. coli) is a gram-negative, rod-shaped bacterium that is commonly found in the lower intestine of warm-blooded organisms (endotherms). Most \"\"E. coli\"\" strains are harmless, but some serotypes are pathogenic and can cause serious food poisoning in humans, and are occasionally responsible for product recalls. \"\"E. coli\"\" are also responsible for a majority of cases of urinary tract infections. The harmless strains are part of the normal flora of the gut, and can benefit their hosts by producing vitamin K, and by preventing the establishment of pathogenic bacteria within"} +{"qid": "test924", "pid": "3058271", "query": "when was the rock and roll hall of fame built in cleveland", "answer": "1995", "passage": "\"FirstEnergy Stadium\"\nat 67,895. The stadium sits on of land between Lake Erie and the Cleveland Memorial Shoreway in the North Coast Harbor area of downtown Cleveland, adjacent to the Great Lakes Science Center and Rock and Roll Hall of Fame. The site was previously the location of Cleveland Stadium from 1931 to 1996. FirstEnergy Stadium is located on the site of Cleveland Stadium, commonly called Cleveland Municipal Stadium, a multipurpose facility built in 1931 that served as the Browns' home field from their inception in 1946 through the 1995 season. During the 1995 season, owner Art Modell announced his plans to"} +{"qid": "test924", "pid": "1427115", "query": "when was the rock and roll hall of fame built in cleveland", "answer": "1995", "passage": "\"Booker T. & the M.G.'s\"\nand Roll Hall of Fame. In 1993, Booker T. & the M.G.'s toured with Neil Young, backing him on his own compositions. In 1994, the group recorded its first album in 17 years, \"\"That's the Way It Should Be\"\". Steve Jordan was the drummer on most tracks. In 1995, when the Rock and Roll Hall of Fame opened its museum in Cleveland, Ohio, the M.G.'s served as the house band for the opening ceremonies, playing behind Aretha Franklin, Sam Moore, John Fogerty, and Al Green, as well as performing themselves. Jones, Dunn, and Al Jackson's cousin, drummer Steve Potts, backed"} +{"qid": "test925", "pid": "17350602", "query": "who acts as the chairman of the election commission", "answer": "The Chief Election Commissioner", "passage": "\"Election Commissioner of Bangladesh\"\nElection Commissioner of Bangladesh The Election Commissioner of Bangladesh (EC) () is a member of Election Commission of Bangladesh, a body constitutionally empowered to conduct free and fair national and regional elections. Article 118 of the Bangladeshi Constitution consisting of a Chief Election Commissioner and four other Election Commissioners, appointed by the President. The appointment of the Chief Election Commissioner of Bangladesh and other Election Commissioners is made by the President. The Chief Election Commissioner is to act as Chairman of the Election Commission of Bangladesh. Under the Constitution the term of office of any Election Commissioner is five years"} +{"qid": "test926", "pid": "3383179", "query": "who played mrs warboys in one foot in the grave", "answer": "Doreen Mantle", "passage": "\"Doreen Mantle\"\nin \"\"Yentl\"\". In 2011, Mantle appeared in \"\"Coronation Street\"\" as the mother of Colin Fishwick whose identity was taken by John Stape. Doreen Mantle Doreen Mantle (born 1926) is a South African-born English actress who is probably best known for her role as Jean Warboys in \"\"One Foot in the Grave\"\" (1990–2000). She has appeared in many British television series from the 1960s to the present, such as \"\"The Duchess of Duke Street\"\", \"\"The Wild House\"\", \"\"Sam Saturday\"\", \"\"Chalk\"\", \"\"Casualty\"\", \"\"The Bill\"\", \"\"Doctors\"\", \"\"Holby City\"\" and \"\"Jonathan Creek\"\". She played lollipop lady Queenie in \"\"Jam & Jerusalem\"\" (2006–09). She appeared"} +{"qid": "test926", "pid": "3383177", "query": "who played mrs warboys in one foot in the grave", "answer": "Doreen Mantle", "passage": "\"Doreen Mantle\"\nDoreen Mantle Doreen Mantle (born 1926) is a South African-born English actress who is probably best known for her role as Jean Warboys in \"\"One Foot in the Grave\"\" (1990–2000). She has appeared in many British television series from the 1960s to the present, such as \"\"The Duchess of Duke Street\"\", \"\"The Wild House\"\", \"\"Sam Saturday\"\", \"\"Chalk\"\", \"\"Casualty\"\", \"\"The Bill\"\", \"\"Doctors\"\", \"\"Holby City\"\" and \"\"Jonathan Creek\"\". She played lollipop lady Queenie in \"\"Jam & Jerusalem\"\" (2006–09). She appeared in episode 63 of Father Brown in January 2018. Mantle has worked extensively on the stage in such productions as \"\"My Fair"} +{"qid": "test927", "pid": "12184107", "query": "where was the diary of a wimpy kid filmed", "answer": "Vancouver", "passage": "\"Diary of a Wimpy Kid: Rodrick Rules\"\nthe books made into movies.\"\" Fox 2000 greenlit the sequel and Zachary Gordon returned as Greg Heffley. Steve Zahn (Frank Heffley) and Rachael Harris (Susan Heffley) also returned. The film was directed by David Bowers and the screenplay was written by Gabe Sachs and Jeff Judah. Principal photography began in Vancouver in August 2010. A few new characters appeared in the film, including Peyton List as Holly Hills. The trailer was seen with \"\"Gulliver's Travels\"\". The film was released on March 25, 2011. Diary of a Wimpy Kid: Rodrick Rules Diary of a Wimpy Kid: Rodrick Rules is a children's"} +{"qid": "test928", "pid": "6498428", "query": "who wrote the song always be humble and kind", "answer": "Lori McKenna", "passage": "\"Lori McKenna\"\nat the Country Music Association Awards. McKenna won another Grammy the next year for Best Country Song for \"\"Humble and Kind\"\" performed by Tim McGraw. McKenna wrote the song as \"\"lullaby, guidebook, and tribute\"\" to her five children. The song was named Song of the Year at the 2016 CMA Awards and won favorite country song at the American Music Awards that same year. In 2017, \"\"Humble and Kind\"\" was nominated for Song of the Year and Single Record of the Year at the ACM Awards. McKenna was named Songwriter of the Year at the ACM's that same year. McKenna"} +{"qid": "test928", "pid": "19050494", "query": "who wrote the song always be humble and kind", "answer": "Lori McKenna", "passage": "\"Humble and Kind\"\nHumble and Kind \"\"Humble and Kind\"\" is a song written by Lori McKenna and first released by American singer Tim McGraw on January 20, 2016, as the second single from his 14th studio album, \"\"Damn Country Music\"\". McKenna later recorded her rendition of the song for her eighth studio album, \"\"The Bird and the Rifle\"\", released in July 2016. Among several other wins and nominations, the song won the award for Best Country Song at the 59th Annual Grammy Awards, \"\"Video of the Year\"\" at the 2016 CMT Music Awards, \"\"Song of the Year\"\" at 2016 CMA Awards and \"\"Country"} +{"qid": "test928", "pid": "19050500", "query": "who wrote the song always be humble and kind", "answer": "Lori McKenna", "passage": "\"Humble and Kind\"\nat the 2016 ACM Awards, which pushed its sales to 64,000 for the week, as well as the song's ranking to No. 1 on the Hot Country Songs, his 26th No. 1 on the chart. The single was certified Platinum by the Recording Industry Association of America on September 20, 2016. The song reached its million sales mark in December 2016, and has sold 1,252,000 copies in the US as of January 2018. Humble and Kind \"\"Humble and Kind\"\" is a song written by Lori McKenna and first released by American singer Tim McGraw on January 20, 2016, as the"} +{"qid": "test928", "pid": "19050495", "query": "who wrote the song always be humble and kind", "answer": "Lori McKenna", "passage": "\"Humble and Kind\"\nSong of the Year\"\" at 2016 American Music Awards. It has been certified platinum and reached the number one position on the country music charts in both Canada and the United States. The song was written by Lori McKenna. In an interview with CMT published in July 2016, McKenna revealed the song was written for her husband and their five kids and is her list of all the things she wanted to make sure she’d told them. McGraw and frequent collaborator Byron Gallimore co-produced the song. On July 8, 2016, Lori McKenna released her rendition of \"\"Humble and Kind\"\" as"} +{"qid": "test928", "pid": "6498422", "query": "who wrote the song always be humble and kind", "answer": "Lori McKenna", "passage": "\"Lori McKenna\"\nLori McKenna Lori McKenna (née Giroux; born December 22, 1968) is an American folk, Americana, and country music singer, songwriter, and performer. In 2016, she was nominated for the Grammy Award for Song of the Year and won Best Country Song for co-writing the hit single \"\"Girl Crush\"\" performed by Little Big Town. In 2017, she again won Best Country Song at the 59th Annual Grammy Awards for writing \"\"Humble and Kind\"\" performed by Tim McGraw. McKenna along with Lady Gaga, Natalie Hemby and Hillary Lindsey wrote the second single off the soundtrack to the 2018 film, A Star Is"} +{"qid": "test928", "pid": "6498426", "query": "who wrote the song always be humble and kind", "answer": "Lori McKenna", "passage": "\"Lori McKenna\"\nher next album \"\"Lorraine\"\" in 2011. Since then, McKenna has become “one of the industry’s most in-demand songwriters.” She has written songs for artists including Sara Evans, Reba McEntire, Tim McGraw, Carrie Underwood, and Keith Urban. She wrote 10 songs that made it to the Billboard Hot Country list, including Hunter Hayes’s “I Want Crazy,” Faith Hill’s “Stealing Kisses,” Tim McGraw’s “Humble and Kind,” and Little Big Town’s “Your Side of the Bed,” “Sober,” and “Girl Crush.” Although her early songs were exclusively self-written, McKenna has become accustomed to working with others after being introduced to Nashville's writing scene. One"} +{"qid": "test929", "pid": "6670636", "query": "what is the time setting of game of thrones", "answer": "medieval", "passage": "\"Throne of Darkness\"\nThrone of Darkness Throne of Darkness is a Japanese-themed action role-playing game released in 2001 by Sierra On-Line, a subsidiary of Vivendi Universal Interactive Publishing. Players control up to four (out of seven) different samurai at a time. The game has three separate multiplayer modes which support up to 35 players. The game is set in Yamato, a medieval version of Japan ruled by the shogun Tsunayoshi and the daimyōs of the four clans. To become immortal, Tsunayoshi transforms himself into the demon Zanshin, the Dark Warlord, who unleashes his army of darkness to conquer Yamato. Zanshin's forces sweep across"} +{"qid": "test93", "pid": "13279536", "query": "who has trained the most melbourne cup winners", "answer": "Bart Cummings", "passage": "\"Van der Hum\"\nVan der Hum Van der Hum (31 July 1971 – 27 July 2001) was a New Zealand thoroughbred racehorse, who won the 1976 Melbourne Cup when ridden by Bob Skelton. He was sired by the versatile stayer and sire of the winners of over $2m, Hermes (GB), his dam Tip O'Dawn was by the good sire Count Rendered (GB). The favourite for the 1976 Melbourne Cup was the Bart Cummings trained local Gold and Black, but Van Der Hum was a wet track specialist, and on cup day there was a very heavy downpour on the course, and Gold and"} +{"qid": "test931", "pid": "14023752", "query": "what is the second book in the alchemyst series", "answer": "The Magician", "passage": "\"The Secrets of the Immortal Nicholas Flamel\"\npresumed grandfather being Mars Ultor. On 1 July 2012 Michael Scott issued this statement incontrovertibly naming the title characters so far. On 5 August 2010 in the UK \"\"Necromancer\"\" was released featuring a new-style cover; it was joined by \"\"The Alchemyst\"\", \"\"The Magician\"\" and \"\"The Sorceress\"\" which were re-released with new covers in the same style. \"\"The Alchemyst\"\", \"\"The Magician\"\" and \"\"The Sorceress\"\" were released as a special edition boxed set called \"\"The First Codex\"\" in the USA on 28 September 2010. In published order: \"\"The Secrets of the Immortal Nicholas Flamel\"\" series has spawned online games. The first related"} +{"qid": "test931", "pid": "8711984", "query": "what is the second book in the alchemyst series", "answer": "The Magician", "passage": "\"Michael Scott (Irish author)\"\nthus far garnered him 10 literary award nominations. \"\"The Alchemyst\"\" was the winner of the 2008 Rhode Island Book Award (Teens) after beating 200 other nominated titles. \"\"The Alchemyst\"\" was nominated for: \"\"The Magician\"\" was nominated for: \"\"The Sorceress\"\" was nominated for: Illustrated Science Fiction Fantasy Folk Tales Teen Adventure Science Fiction Illustrated Horror Fantasy Folk Tales Adventure Science fiction Non-fiction Illustrated Michael Scott (Irish author) Michael Peter Scott (born 28 September 1959) is an Irish writer of science fiction, fantasy, horror and, under the name Anna Dillon, romance novels. He is also a collector and editor of folklore. Scott"} +{"qid": "test931", "pid": "14023756", "query": "what is the second book in the alchemyst series", "answer": "The Magician", "passage": "\"The Secrets of the Immortal Nicholas Flamel\"\n6 chapters of \"\"The Necromancer\"\". The Alchemyst The Magician The Sorceress The six titles have all been recorded as unabridged audiobooks. \"\"The Alchemyst\"\" was narrated by Denis O'Hare. \"\"The Magician\"\" was narrated by Erik Singer. \"\"The Sorceress\"\", \"\"The Necromancer\"\", \"\"The Warlock\"\" and \"\"The Enchantress\"\" were narrated by Paul Boehmer. Film rights were initially sold in 2006 to New Line Cinema and Mark Burnett Productions with Mark Burnett being named as the producer and Eric Bress as the script writer. The film was listed as in pre-production and reported at IMDb. Mention of the deal can still be found in the"} +{"qid": "test931", "pid": "12057021", "query": "what is the second book in the alchemyst series", "answer": "The Magician", "passage": "\"The Magician: The Secrets of the Immortal Nicholas Flamel\"\nrefers to the villain, John Dee, who works for the Dark Elders and for their return to dominance on Earth. Sophie and Josh Newman – 15-year-old twins – are in Paris with the alchemyst, Nicholas Flamel, and his friend, Scathach. They now face Niccolò Machiavelli and his colleague, but also rival, John Dee, who both work for the Dark Elders. Machiavelli is plotting to capture the twins and Flamel with the missing pages of the Codex – or Book of Abraham the Mage – before Dee can arrive in France from San Francisco. The twins seek out a friend and"} +{"qid": "test932", "pid": "5944045", "query": "bowler to take hattrick in both inning in test match", "answer": "Jimmy Matthews", "passage": "\"1912 Triangular Tournament\"\nof the series was Australian bowler Jimmy Matthews taking two hat-tricks in the same Test match, one in each innings of the opening match against South Africa, the only time a bowler has taken two hat-tricks in the same Test. 1912 Triangular Tournament The 1912 Triangular Tournament was a Test cricket competition played between Australia, England and South Africa, the only Test-playing nations at the time. The ultimate winners of the tournament were England, with four wins in their six matches, but the tournament was deemed a failure, with disappointing crowds and uncompetitive cricket, caused in part by a weakened"} +{"qid": "test933", "pid": "2634979", "query": "what is the width of a cricket bat", "answer": "no more than 4.25 inches", "passage": "\"Cricket bat\"\nwhere these bats are made in Kashmir are Anantnag, Baramula, and Pahalgam. Cricket bat A cricket bat is a specialised piece of equipment used by batsmen in the sport of cricket to hit the ball, typically consisting of a cane handle attached to a flat-fronted willow-wood blade. The length of the bat may be no more than 38 inches (965 mm) and the width no more than 4.25 inches (108 mm). Its use is first mentioned in 1624. Since 1979, a rule change stipulated that bats can only be made from wood. The \"\"blade\"\" of a cricket bat is a"} +{"qid": "test933", "pid": "2634957", "query": "what is the width of a cricket bat", "answer": "no more than 4.25 inches", "passage": "\"Cricket bat\"\nCricket bat A cricket bat is a specialised piece of equipment used by batsmen in the sport of cricket to hit the ball, typically consisting of a cane handle attached to a flat-fronted willow-wood blade. The length of the bat may be no more than 38 inches (965 mm) and the width no more than 4.25 inches (108 mm). Its use is first mentioned in 1624. Since 1979, a rule change stipulated that bats can only be made from wood. The \"\"blade\"\" of a cricket bat is a wooden block that is generally flat on the striking face and with"} +{"qid": "test934", "pid": "9892243", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Along Came a Spider (film)\"\nWashington for \"\"Training Day\"\". There were no further sequels, but the character of Alex Cross was rebooted with a 2012 film adaptation of the novel \"\"Cross\"\" under the title \"\"Alex Cross\"\" starring Tyler Perry in the titular role. Along Came a Spider (film) Along Came a Spider is a 2001 American neo noir psychological thriller film directed by Lee Tamahori. It is the second installment of \"\"Alex Cross\"\" film series and a sequel to the 1997 film \"\"Kiss the Girls\"\", with Morgan Freeman reprising his role as detective Alex Cross. The screenplay by Marc Moss was adapted from the 1993"} +{"qid": "test934", "pid": "4583292", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Along Came a Spider (novel)\"\nAlong Came a Spider (novel) Along Came a Spider is the first novel in James Patterson's series about forensic psychologist Alex Cross. First published in 1993, its success has led to eighteen sequels as of 2012. It was adapted into a film of the same name in 2001, starring Morgan Freeman as Cross. Washington, D.C. homicide investigator and forensic psychologist Alex Cross investigates the brutal murders of two black prostitutes and an infant. Then, at an exclusive private school, math teacher Gary Soneji kidnaps Maggie Rose Dunne and Michael Goldberg. Cross is pulled off the murder case to investigate the"} +{"qid": "test934", "pid": "16853316", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Alex Cross (novel series)\"\ntwo films (\"\"Kiss the Girls\"\" and\"\" Along Came a Spider\"\") both met to poor box-office. In 2012, a reboot titled \"\"Alex Cross\"\" based on the novel \"\"Cross\"\" with Tyler Perry was cast, his first role in a film that he doesn't direct, produce, write for his career. Two films, based on the first Cross novels, have been made starring Morgan Freeman (\"\"Kiss the Girls\"\" and \"\"Along Came a Spider\"\"), both released to negative reaction. Both of them are very loose adaptations of the books, with \"\"Along Came a Spider\"\" changing many of the plot's elements, while \"\"Kiss the Girls\"\" changes"} +{"qid": "test934", "pid": "9892230", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Along Came a Spider (film)\"\nAlong Came a Spider (film) Along Came a Spider is a 2001 American neo noir psychological thriller film directed by Lee Tamahori. It is the second installment of \"\"Alex Cross\"\" film series and a sequel to the 1997 film \"\"Kiss the Girls\"\", with Morgan Freeman reprising his role as detective Alex Cross. The screenplay by Marc Moss was adapted from the 1993 novel of the same title by James Patterson, but many of the key plot elements of the book were controversially eliminated. The movie received negative to mixed critical reviews, although it became a box office success. After Washington,"} +{"qid": "test934", "pid": "4583303", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Along Came a Spider (novel)\"\nfeared criminal in America. A film adaptation of the same name was released on April 6, 2001, starring Morgan Freeman as Alex Cross, Monica Potter as Jezzie Flannagan, and Michael Wincott as Gary Soneji. The adaptation makes substantial changes to the plot, omitting much of Soneji's background and his split personality, as well as changing the identity of the kidnapped children's parents and many characters' eventual fate. Along Came a Spider (novel) Along Came a Spider is the first novel in James Patterson's series about forensic psychologist Alex Cross. First published in 1993, its success has led to eighteen sequels"} +{"qid": "test934", "pid": "6530637", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Alex Cross\"\nhe is revealed to be none other than Rashawn Turnbull's own grandfather Harold Caine. He enjoyed killing Rashawn because he felt that Rashawn had humiliated him because of the colour of Rashawn's skin. Cross is portrayed by Morgan Freeman in the 1997 film \"\"Kiss the Girls\"\" and the 2001 film \"\"Along Came a Spider\"\". He is portrayed by Tyler Perry in the 2012 film \"\"Alex Cross\"\". In \"\"Kiss the Girls\"\", Alex is portrayed as a detective and a psychologist, who specializes in cases with the most frightening killers and situations. After handling a case where he convinces a woman who"} +{"qid": "test934", "pid": "16525974", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Alex Cross (film)\"\nAlex Cross (film) Alex Cross is a 2012 American crime thriller film directed by Rob Cohen and starring Tyler Perry as the title character and Matthew Fox as the villain Picasso. The adapted screenplay was written by Marc Moss and Kerry Williamson. It is based on the novel \"\"Cross\"\" by James Patterson and the third installment of the \"\"Alex Cross\"\" film series, which was considered as a reboot of the series. The title character was previously portrayed by Morgan Freeman in \"\"Kiss the Girls\"\" (1997) and \"\"Along Came a Spider\"\" (2001). Unlike the previous films, which were distributed by Paramount"} +{"qid": "test934", "pid": "9439512", "query": "who played alex cross in along came a spider", "answer": "Morgan Freeman", "passage": "\"Cross (novel)\"\nWashington DC, not Detroit. Damon is the eldest child, not Janelle who was still a baby when Maria was killed in a drive-by (not by a sniper). Alex's partner and best friend is John Sampson, a black man bigger even that Cross, not a skinny white guy. Patterson implies in the on-disc interviews that this Alex Cross movie should be considered as a reboot of the franchise and is meant to continue through to the current novels. He also said that, although he loved Morgan Freeman in the first two movies, Along Came a Spider and Kiss the Girls, Tyler"} +{"qid": "test936", "pid": "4944208", "query": "who came up with the first working periodic table", "answer": "Dmitri Mendeleev", "passage": "\"William Odling\"\nWilliam Odling William Odling, FRS (5 September 1829 in Southwark, London – 17 February 1921 in Oxford) was an English chemist who contributed to the development of the periodic table. In the 1860s Odling, like many chemists, was working towards classifying the elements, an effort that would eventually lead to the periodic table of elements. He was intrigued by atomic weights and the periodic occurrence of chemical properties. William Odling and Lothar Meyer drew up tables similar, but with improvements on, Dmitri Mendeleev's original table. Odling drew up a table of elements using repeating units of seven elements, which bears"} +{"qid": "test937", "pid": "1758206", "query": "when did cybermen first appear in doctor who", "answer": "in 1966", "passage": "Cyberman\nCyberman The Cybermen are a fictional race of cyborgs who are among the most persistent enemies of the Doctor in the British science fiction television programme, \"\"Doctor Who\"\". Within the context of the series, the Cybermen are a species of emotionless space-faring cyborgs who look to co-opt human beings or other similar species to join and populate their ranks. First appearing in 1966, the Cybermen were created by Dr. Kit Pedler (the unofficial scientific advisor to the show) and story editor Gerry Davis. The Cybermen have seen many redesigns and costume changes over \"\"Doctor Who\"\"s long run. Over the years,"} +{"qid": "test937", "pid": "6424529", "query": "when did cybermen first appear in doctor who", "answer": "1966", "passage": "Mondas\nMondas Mondas is a fictional planet in the British science fiction television series \"\"Doctor Who\"\". Mondas is the homeworld of the Cybermen, a race of cyborgs in that series. Mondas is first mentioned in the 1966 \"\"Doctor Who\"\" serial \"\"The Tenth Planet\"\". This episode is also the first appearance of the Cybermen, a race that recurs in numerous \"\"Doctor Who\"\" stories. In \"\"The Tenth Planet\"\", a New Zealand astronaut discovers a newly arrived planet near Earth, between the orbits of Mars and Venus. Later, a Cyberman informs the personnel of a nearby space station that this planet is the home"} +{"qid": "test937", "pid": "3698849", "query": "when did cybermen first appear in doctor who", "answer": "1966", "passage": "\"History of Doctor Who\"\nwriting the First Doctor out – as he was an alien being, they decided that he would have the power to change his body when it became worn out or seriously injured, a process that was called \"\"renewal\"\" but would later become known within the mythology of the series as \"\"regeneration\"\". Lloyd and Davis cast actor Patrick Troughton, who first appeared in November 1966 after the changeover from Hartnell had been seen at the end of the story \"\"The Tenth Planet\"\". That serial also introduced the popular Cybermen, villains who would return to face the Doctor on several subsequent occasions."} +{"qid": "test938", "pid": "300961", "query": "oklahoma's 10 geographic regions are defined by surface features called", "answer": "ecological regions", "passage": "Oklahoma\nits highest peak, Black Mesa, at above sea level, situated near its far northwest corner in the Oklahoma Panhandle. The state's lowest point is on the Little River near its far southeastern boundary near the town of Idabel, Oklahoma, which dips to above sea level. Among the most geographically diverse states, Oklahoma is one of four to harbor more than 10 distinct ecological regions, with 11 in its borders—more per square mile than in any other state. Its western and eastern halves, however, are marked by extreme differences in geographical diversity: Eastern Oklahoma touches eight ecological regions and its western"} +{"qid": "test938", "pid": "11531696", "query": "oklahoma's 10 geographic regions are defined by surface features called", "answer": "ecological regions", "passage": "\"Geography of Oklahoma\"\nGeography of Oklahoma The Geography of Oklahoma encompasses terrain and ecosystems ranging from arid plains to subtropical forests and mountains. Oklahoma contains 10 distinct ecological regions, more per square mile than in any other state by a wide margin. It is situated in the Great Plains and U.S. Interior Highlands region near the geographical center of the 48 contiguous states. Usually considered part of the South Central United States, Oklahoma is bounded on the east by Arkansas and Missouri, on the north by Kansas, on the northwest by Colorado, on the far west by New Mexico, and on the south"} +{"qid": "test939", "pid": "5671281", "query": "communities of similar organisms found in a particular environment are called", "answer": "species", "passage": "\"Evidence of common descent\"\npredating \"\"Tiktaalik\"\". Data about the presence or absence of species on various continents and islands (biogeography) can provide evidence of common descent and shed light on patterns of speciation. All organisms are adapted to their environment to a greater or lesser extent. If the abiotic and biotic factors within a habitat are capable of supporting a particular species in one geographic area, then one might assume that the same species would be found in a similar habitat in a similar geographic area, e.g. in Africa and South America. This is not the case. Plant and animal species are discontinuously distributed"} +{"qid": "test939", "pid": "4721342", "query": "communities of similar organisms found in a particular environment are called", "answer": "habitat", "passage": "Habitat\ngrow. It is similar in meaning to a biotope; an area of uniform environmental conditions associated with a particular community of plants and animals. The chief environmental factors affecting the distribution of living organisms are temperature, humidity, climate, soil type and light intensity, and the presence or absence of all the requirements that the organism needs to sustain it. Generally speaking, animal communities are reliant on specific types of plant communities. Some plants and animals are generalists, and their habitat requirements are met in a wide range of locations. The small white butterfly (\"\"Pieris rapae\"\") for example is found on"} +{"qid": "test939", "pid": "12774272", "query": "communities of similar organisms found in a particular environment are called", "answer": "species", "passage": "\"Southern Ocean\"\nsealing expeditions in the Weddell Sea. Antarctic krill, which congregates in large schools, is the keystone species of the ecosystem of the Southern Ocean, and is an important food organism for whales, seals, leopard seals, fur seals, squid, icefish, penguins, albatrosses and many other birds. The benthic communities of the seafloor are diverse and dense, with up to 155,000 animals found in . As the seafloor environment is very similar all around the Antarctic, hundreds of species can be found all the way around the mainland, which is a uniquely wide distribution for such a large community. Deep-sea gigantism is"} +{"qid": "test939", "pid": "126118", "query": "communities of similar organisms found in a particular environment are called", "answer": "species", "passage": "Ecology\nof similar species inhabiting species-rich communities. The habitat plus the niche is called the ecotope, which is defined as the full range of environmental and biological variables affecting an entire species. Organisms are subject to environmental pressures, but they also modify their habitats. The regulatory feedback between organisms and their environment can affect conditions from local (e.g., a beaver pond) to global scales, over time and even after death, such as decaying logs or silica skeleton deposits from marine organisms. The process and concept of ecosystem engineering is related to niche construction, but the former relates only to the physical"} +{"qid": "test939", "pid": "20947838", "query": "communities of similar organisms found in a particular environment are called", "answer": "species", "passage": "\"Hydrothermal vent microbial communities\"\nplumes (25°C), the surfaces exposed to warm vent plumes and in symbiotic tissues within certain vent invertebrates in the vicinity of the vent. These bacteria use various forms of available sulfur (S, S, SO) in the presence of oxygen. They are the predominant population in the majority of hydrothermal vents because their source of energy is widely available, and chemosynthesis rates increase in aerobic conditions. The bacteria at hydrothermal vents are similar to the types of sulfur bacteria found in other HS-rich environments - except \"\"Thiomicrospira\"\" has replaced \"\"Thiobacillus.\"\" Other common species are \"\"Thiothrix\"\" and \"\"Beggiatoa,\"\" which is of particular"} +{"qid": "test939", "pid": "15184935", "query": "communities of similar organisms found in a particular environment are called", "answer": "species", "passage": "Phacus\nspecies of \"\"Phacus\"\" are considered to be euplanktonic (free-floating organisms or open water plankton) because they are commonly found together with other genera of \"\"Euglenophyta\"\". These species include members of the genera \"\"Lepocinclis, Trachelomonas, Euglena\"\", and many different kinds of algae, which are typically found in similar aquatic habitats. The planktonic environments \"\"Phacus\"\" are generally found include swamps, ditches, trenches, ponds and even in many rice fields throughout North America and around the world. They are a small part of phytoplankton communities, but do serve important purposes such as nutrient cycling and food web stability. Their keen ability to colonize"} +{"qid": "test94", "pid": "2249016", "query": "who was involved in the mapp vs ohio case", "answer": "Dollree Mapp", "passage": "\"Mapp v. Ohio\"\nFourth Amendment which is applicable only to actions of the federal government into the Fourteenth Amendment due process clause which is applicable to actions of the states. Dollree Mapp was an employee in the illegal gambling rackets dominated by Cleveland rackets kingpin Shon Birns. On May 23, 1957, police officers in Cleveland, Ohio, received an anonymous tip by phone that Virgil Ogletree, a numbers operator who was wanted for questioning in the bombing of rival numbers racketeer and future boxing promoter Don King's home three days earlier, might be found at Mapp's house, as well as illegal betting slips and"} +{"qid": "test940", "pid": "398412", "query": "who plays scrooge mcduck in the new ducktales", "answer": "David Tennant", "passage": "\"Scrooge McDuck\"\n2016 \"\"Mickey Mouse\"\" Christmas special, \"\"Duck the Halls\"\", after Young's death, John Kassir took over voicing Scrooge McDuck, however he later tweeted that he won't be reprising his role in the reboot. Kassir continues to voice the character in subsequent appearances in this series. Scrooge makes a cameo appearance in the \"\"Legend of the Three Caballeros\"\" episode \"\"Shangri-La-Di-Da\"\", voiced by Eric Bauza. In the new \"\"DuckTales,\"\" Scrooge is played by Scottish actor David Tennant, who brings both the nephews and Donald into his home at the end of the series premier. This series shows that Scrooge previously adventured with his"} +{"qid": "test941", "pid": "12227702", "query": "who wrote i'm in the mood for dancing", "answer": "Bob Puzey", "passage": "\"Diamond Lights\"\nRent a Car, at an annual company awards ceremony. Hoddle and Waddle attempted an impromptu karaoke performance which was praised by a friend with connections in the music industry who was able to introduce the duo to Bob Puzey. Puzey, whose writing credits included \"\"I'm in the Mood for Dancing\"\" by The Nolan Sisters and \"\"Wanted\"\" by The Dooleys, auditioned the pair and agreed to write and co-produce a single for them. The \"\"diamond lights\"\" of the title refer to the songwriter's wife's eyes. Written by Bob Puzey and co-produced by Puzey and Terry Hobart, \"\"Diamond Lights\"\" debuted in the"} +{"qid": "test942", "pid": "8993113", "query": "most passing yards in nfl history in a game", "answer": "Norm Van Brocklin", "passage": "\"Matthew Stafford\"\npassing yards against the Green Bay Packers in a 45–41 loss in Week 17. (It should be noted that in this game, Stafford threw an interception on an attempted 37-yd touchdown pass that, had he been successful, he would've broken Norm Van Brocklin's record for most yards in a game.) The accomplishment made Stafford the second-youngest quarterback in NFL history to reach 5,000 yards, behind only Dan Marino. Over the last four games of the 2011 regular season, Stafford became the only quarterback in NFL history to pass for over 1,500 yards (1,511) and 14 touchdowns over a four-game span."} +{"qid": "test943", "pid": "13544793", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"World Series\"\nis awarded to the league champion team with the better regular season win-loss record. If both league champions have the same record, the second tie-breaker would be head-to-head record, and if that does not resolve it, the third tie-breaker would be best divisional record. The Houston Astros won the 2017 World Series in 7 games against the Los Angeles Dodgers on November 1, 2017, winning their first World Series since their creation in 1962. The Boston Red Sox won the 2018 World Series, beating the Los Angeles Dodgers in 5 games for their fourth title since 2004. American League (AL)"} +{"qid": "test943", "pid": "4169799", "query": "how many world series wins does the dodgers have", "answer": "six", "passage": "\"1981 World Series\"\nHowe, capping a 3-for-3 day. But Howe was able to close out the win, despite Willie Randolph pinning Dodger centerfielder Derrell Thomas against the centerfield wall with a deep fly ball. The series was now tied 2–2. According to Johnstone's book \"\"Temporary Insanity\"\" (1985), Steinbrenner confronted Davis in the Yankees' locker room after the game and demanded, \"\"Why did you throw Johnstone a fastball?\"\" Needing a win to stop the Dodgers' momentum in this series, the Yankees trotted out their ace, Ron Guidry. Guidry was sharp through six innings, holding the Dodgers to two singles. Reggie Jackson, continuing his torrid"} +{"qid": "test943", "pid": "5502413", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"Dodgers–Giants rivalry\"\nWhile the Dodgers have won the National League West fourteen times compared to the Giants' eight since the beginning of the Divisional Era in 1969, the Giants have more total wins, head-to-head wins, and World Series titles (8–6) in franchise history. Since moving to California, Los Angeles holds the edge in pennants (10–6) and World Series titles (5–3). Each team has advanced to the postseason as the wild card twice, the Giants most recently in 2016. The 2014 World Series was the Giants' most recent championship, while the Dodgers lost the 2017 World Series and the 2018 World Series. As"} +{"qid": "test943", "pid": "242108", "query": "how many world series wins does the dodgers have", "answer": "six", "passage": "\"Los Angeles Dodgers\"\ntwo teams. While the Giants have more wins in franchise history, the Dodgers and Giants are tied for most National League Pennants at 23, though the Giants have won eight World Series titles, while the Dodgers have won six. The 2010 World Series was the Giants' first championship since moving to California, while the Dodgers had won five World Series titles since their move, their last title coming in the 1988 World Series. This rivalry refers to a series of games played with the Los Angeles Angels. The Freeway Series takes its name from the massive freeway system in the"} +{"qid": "test943", "pid": "4169933", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"1988 World Series\"\nbecame the first (and so far only) team to have a perfect game pitched against them and win a World Series in the same season. Tom Browning of the Cincinnati Reds pitched the Perfect Game on September 16, 1988. With the Lakers winning their fifth NBA championship in nine years four months before, the Dodgers winning the World Series made Los Angeles the first city to have both NBA and World Series champions in the same year. 1988 World Series (4–1): Los Angeles Dodgers (N.L.) over Oakland Athletics (A.L.) The 1988 World Series marked the last time that NBC would"} +{"qid": "test943", "pid": "13544743", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"World Series\"\nthen each league has conducted a championship series (ALCS and NLCS) preceding the World Series to determine which teams will advance. As of 2018, the World Series has been contested 114 times, with the AL winning 66 and the NL winning 48. The 2018 World Series took place between the Los Angeles Dodgers and Boston Red Sox from October 23-28, with the Red Sox winning in five games to earn their ninth title. This was the first World Series meeting between these two teams since 1916. Having previously lost to the Houston Astros in the 2017 World Series, the Dodgers"} +{"qid": "test943", "pid": "5242883", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"Ex-Cubs Factor\"\n\"\"it is utterly impossible for a team with three or more ex-Cubs to win the series.\"\" Berler based this on a pattern that he observed in the post-1945 era; 1945 being the last time the Chicago Cubs made it to a World Series until 2016. Berler cited many examples of teams with three or more ex-Cubs on their teams that reached the World Series and lost: including the 1958 Milwaukee Braves, the 1966 Los Angeles Dodgers, and the 1978 Los Angeles Dodgers. The 1978 Dodgers, according to Berler, had lost the 1977 World Series with three ex-Cubs on their roster"} +{"qid": "test943", "pid": "242076", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"Los Angeles Dodgers\"\nthe Dodgers, winning a total of 13 MVP Awards; eight Cy Young Award winners have pitched for the Dodgers, winning a total of twelve Cy Young Awards. The team has also produced 18 Rookie of the Year Award winners, twice as many as the next closest team, including four consecutive from 1979 to 1982 and five consecutive from 1992 to 1996. In the early 20th century, the team, then known as the Robins, won league pennants in 1916 and 1920, losing the World Series both times, first to Boston and then Cleveland. In the 1930s, the team changed its name"} +{"qid": "test943", "pid": "3864646", "query": "how many world series wins does the dodgers have", "answer": "six", "passage": "\"Burt Hooton\"\nan Art Howe solo homer, through seven innings. After the Dodgers won the series in five games, they went on to face the Montreal Expos in the NLCS; Hooton won Game 1, allowing only six hits before leaving in the eighth inning with a 2–0 lead. Returning in Game 4 with the Dodgers behind two games to one, he allowed only five hits and one unearned run before leaving in the eighth inning with a 3–1 lead; the Dodgers went on to a 7–1 win, and won Game 5 to advance to the World Series, again meeting the Yankees. Hooton"} +{"qid": "test943", "pid": "16820123", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"2013 Los Angeles Dodgers season\"\nin the 1953 World Series). His six straight strikeouts in the game tied an MLB post-season record set by Tim Belcher in game 2 of the 1988 World Series. The Dodgers won the game 6-1. The Braves tied up the series the next day, with a 4-3 win, as the Dodgers bullpen faltered. Hanley Ramírez homered and doubled twice in the game but it wasn't enough. Jason Heyward had a two-RBI single for the deciding runs. The Dodgers offense took over in game 3 as they took the lead in the series with a 13-6 win at Dodger Stadium. Ramírez"} +{"qid": "test943", "pid": "13544765", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"World Series\"\nOrioles. In 1968, the Kansas City Athletics relocated to Oakland and the following year 1969, the National League granted a franchise to San Diego as the San Diego Padres. The A's became a powerful dynasty, winning three consecutive World Series from 1972–1974. In 1974, the A's played the Dodgers in the first all-California World Series. The Padres have two World Series appearances (a 1984 loss to the Detroit Tigers, and a 1998 loss to the New York Yankees). The Dodgers won two more World Series in the 1980s (1981, 1988). The A's again went to three straight world series, from"} +{"qid": "test943", "pid": "4171610", "query": "how many world series wins does the dodgers have", "answer": "six", "passage": "\"1978 World Series\"\n1978 World Series The 1978 World Series matched the defending champions New York Yankees against the Los Angeles Dodgers in a rematch of the previous year's World Series, with the Yankees winning in six games, just like the previous year, to repeat as champions. As of 2018, it remains the most recent World Series to feature a rematch of the previous season's matchup. 1978 was the first of ten consecutive years that saw ten different teams win the World Series. The Los Angeles Dodgers would break the string with a World Series win in 1988 (as they won in the"} +{"qid": "test943", "pid": "7641987", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"New York Yankees\"\nIn the World Series, the Yankees got off to a hot start by winning the first two games against the Los Angeles Dodgers. But the Dodgers fought back and stunned the Yankees by winning the next four games to clinch their first World Series title since 1965. Following the team's loss to the Dodgers in the 1981 World Series, the Yankees began their longest absence from the playoffs since 1921. Following the example set by the St. Louis Cardinals and the Big Red Machine that had defeated his team in the 1976 World Series, George Steinbrenner announced his plan to"} +{"qid": "test943", "pid": "15198072", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"Major League Baseball rivalries\"\nWhile the Giants have more wins, National League pennants and World Series titles in franchise history, the Dodgers have won the National League West twelve times compared to the Giants' eight. The 2014 World Series was the Giants' third championship since moving to California, while the Dodgers' have won five, the most recent in the 1988 World Series. Interleague or interconference matchups have long been the norm in other professional sports leagues such as the National Football League. Regular-season interleague play was discussed for baseball's major leagues as early as the 1930s. In December 1956, Major League owners considered a"} +{"qid": "test943", "pid": "4341596", "query": "how many world series wins does the dodgers have", "answer": "six", "passage": "\"1941 World Series\"\nthat run back in the fifth on Tommy Henrich's home run. The Dodgers hit only .182 as a team, contributing to their 5-game loss. 1941 World Series (4–1): New York Yankees (A.L.) over Brooklyn Dodgers (N.L.) 1941 World Series The 1941 World Series matched the New York Yankees against the Brooklyn Dodgers, with the Yankees winning in five games to capture their fifth title in six years, and their ninth overall. The name \"\"Subway Series\"\" arose for a World Series played between two New York City teams. The series was punctuated by the Dodgers' Mickey Owen's dropped third strike of"} +{"qid": "test943", "pid": "4171727", "query": "how many world series wins does the dodgers have", "answer": "six", "passage": "\"1977 World Series\"\nthe starting rotation, finishing with sixteen wins against just seven losses with a 2.82 ERA. The Yankees advanced to the World Series after beating the Kansas City Royals in an exciting fifth and final 1977 American League Championship Series (ALCS) game, winning it with three runs in the top of the ninth on a string of singles and a costly error by George Brett. The National League champion Los Angeles Dodgers were skippered by Tommy Lasorda, who was in his first full season as manager. The 1977 Dodgers became the first team to have four players hit thirty or more"} +{"qid": "test943", "pid": "20012300", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"2017 National League Championship Series\"\nwin their first World Series since 1908. This was the third postseason meeting between the Cubs and Dodgers. The clubs have split their two previous postseason meetings. Los Angeles swept Chicago in the 2008 NLDS (3–0) and the Cubs defeated the Dodgers in the 2016 NLCS in six games (4–2). This was just the tenth time two teams have met in at least two straight League Championship Series, which have existed since divisional play began in 1969. The Dodgers offense took a big hit before the series even began when All-Star shortstop Corey Seager was left off the NLCS roster"} +{"qid": "test943", "pid": "10776267", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"1981 Los Angeles Dodgers season\"\nthe National League Championship Series before beating the New York Yankees to win the World Series. In the divisional series, the Dodgers fell behind the Houston Astros two games to zero but came back to win the next three games to take the series and advance to the LCS. October 6, The Astrodome, Houston, Texas October 7, The Astrodome, Houston, Texas October 9, Dodger Stadium, Los Angeles October 10, Dodger Stadium, Los Angeles October 11, Dodger Stadium, Los Angeles The Dodgers faced the Montreal Expos in the 1981 NLCS and beat them three games to two, thanks to a ninth-inning"} +{"qid": "test943", "pid": "4341872", "query": "how many world series wins does the dodgers have", "answer": "6", "passage": "\"1959 World Series\"\nthe next year with 12 against the Pittsburgh Pirates in the 1960 World Series.) The Dodgers became the second National League team to win a World Series after relocating (the 1957 Milwaukee Braves being the first). The Dodgers became the first team to go from 7th place in one season to World Champion the next. The 1959 World Series was the last one for Comiskey Park, and the only one for Los Angeles Memorial Coliseum. The White Sox would move into U.S. Cellular Field, originally \"\"New Comiskey\"\", in 1991; the Dodgers would move into Dodger Stadium in 1962. This was"} +{"qid": "test944", "pid": "66626", "query": "who has the world's largest standing army", "answer": "China", "passage": "China\nreforms in 1978, China's economy has been one of the world's fastest-growing with annual growth rates consistently above 6 percent. , it is the world's second-largest economy by nominal GDP and largest by purchasing power parity (PPP). China is also the world's largest exporter and second-largest importer of goods. China is a recognized nuclear weapons state and has the world's largest standing army and second-largest defense budget. The PRC is a permanent member of the United Nations Security Council as it replaced the ROC in 1971, as well as an active global partner of ASEAN Plus mechanism. China is also"} +{"qid": "test944", "pid": "3667753", "query": "who has the world's largest standing army", "answer": "China", "passage": "\"Military service\"\nin January 2012. According to the legislation, the conscripts can only be drafted in \"\"state of emergency\"\" or as defensive measure, the National Assembly can authorise drafting. India has never had mandatory military service, either under British rule or since independence in 1947. In WWII the Indian Army became the largest all-volunteer force in history, rising to over 2.5 million men in size. It has since maintained the world's second largest army after China and the world's largest all volunteer army. Saddam Hussein's large Iraqi army was largely composed of conscripts, except for the elite Republican Guard. About 20,000-35,000 conscripts"} +{"qid": "test944", "pid": "335750", "query": "who has the world's largest standing army", "answer": "China", "passage": "\"People's Liberation Army Navy\"\nwomen, including 10,000 marines and 26,000 naval air force personnel, it is the second largest navy in the world in terms of tonnage, only behind the United States Navy, and has the largest number of major combatants of any navy. The PLAN traces its lineage to units of the Republic of China Navy (ROCN) who defected to the People's Liberation Army towards the end of the Chinese Civil War. In 1949, Mao Zedong asserted that \"\"to oppose imperialist aggression, we must build a powerful navy\"\". During the Landing Operation on Hainan Island, the communists used wooden junks fitted with mountain"} +{"qid": "test944", "pid": "758310", "query": "who has the world's largest standing army", "answer": "China", "passage": "\"People's Liberation Army\"\nPeople's Liberation Army The Chinese People's Liberation Army (PLA) is the armed forces of the People's Republic of China (PRC) and Communist Party of China (CPC). The PLA consists of five professional service branches: the Ground Force, Navy, Air Force, Rocket Force, and the Strategic Support Force. Units around the country are assigned to one of five Theater commands by geographical location. The PLA is the world's largest military force and constitutes the second largest defence budget in the world. It is one of the fastest modernising military power in the world and has been termed as a potential military"} +{"qid": "test945", "pid": "160672", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Geographic information system\"\ntoxic spill. Traditional maps are abstractions of the real world, a sampling of important elements portrayed on a sheet of paper with symbols to represent physical objects. People who use maps must interpret these symbols. Topographic maps show the shape of land surface with contour lines or with shaded relief. Today, graphic display techniques such as shading based on altitude in a GIS can make relationships among map elements visible, heightening one's ability to extract and analyze information. For example, two types of data were combined in a GIS to produce a perspective view of a portion of San Mateo"} +{"qid": "test945", "pid": "845063", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "Topography\nexample) or inconsistencies (due to the timing of specific image captures). Most modern topographic mapping includes a large component of remotely sensed data in its compilation process. In its contemporary definition, topographic mapping shows relief. In the United States, USGS topographic maps show relief using contour lines. The USGS calls maps based on topographic surveys, but without contours, \"\"planimetric maps.\"\" These maps show not only the contours, but also any significant streams or other bodies of water, forest cover, built-up areas or individual buildings (depending on scale), and other features and points of interest. While not officially \"\"topographic\"\" maps, the"} +{"qid": "test945", "pid": "794936", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Topographic map\"\nTopographic map In modern mapping, a topographic map is a type of map characterized by large-scale detail and quantitative representation of relief, usually using contour lines, but historically using a variety of methods. Traditional definitions require a topographic map to show both natural and man-made features. A topographic survey is typically published as a map series, made up of two or more map sheets that combine to form the whole map. A contour line is a line connecting places of equal elevation. Natural Resources Canada provides this description of topographic maps: Other authors define topographic maps by contrasting them with"} +{"qid": "test945", "pid": "794937", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Topographic map\"\nanother type of map; they are distinguished from smaller-scale \"\"chorographic maps\"\" that cover large regions, \"\"planimetric maps\"\" that do not show elevations, and \"\"thematic maps\"\" that focus on specific topics. However, in the vernacular and day to day world, the representation of relief (contours) is popularly held to define the genre, such that even small-scale maps showing relief are commonly (and erroneously, in the technical sense) called \"\"topographic\"\". The study or discipline of topography is a much broader field of study, which takes into account all natural and man-made features of terrain. Topographic maps are based on topographical surveys. Performed"} +{"qid": "test945", "pid": "9147784", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Terrain cartography\"\nrelief was standardized by the Austrian topographer Johann Georg Lehmann in 1799. Contour lines (or isohypses) are isolines showing equal elevation. This is the most common way of numerically showing elevation, and is familiar from topographic maps. Most 18th and early 19th century national surveys did not record relief across the entire area of coverage, calculating only spot elevations at survey points. The United States Geological Survey (USGS) topographical survey maps included contour representation of relief, and so maps that show relief, especially with exact representation of elevation, came to be called topographic maps (or \"\"topo\"\" maps) in the United"} +{"qid": "test945", "pid": "794968", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Topographic map\"\nprotect natural resources and the public at large, or because such features are not present in any public domain database. Topographic map In modern mapping, a topographic map is a type of map characterized by large-scale detail and quantitative representation of relief, usually using contour lines, but historically using a variety of methods. Traditional definitions require a topographic map to show both natural and man-made features. A topographic survey is typically published as a map series, made up of two or more map sheets that combine to form the whole map. A contour line is a line connecting places of"} +{"qid": "test945", "pid": "5284093", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Topographic profile\"\nTopographic profile A topographic profile or topographic cut is a representation of the relief of the terrain that is obtained by cutting transversely the lines of a topographic map. Each contour line can be defined as a closed line joining relief points at equal height above sea level. It is usually drawn on the same horizontal scale as the map, but the use of an exaggerated vertical scale is advisable to underline the elements of the relief. This can vary according to the slope and amplitude of the terrestrial relief, but is usually three to five times the horizontal scale."} +{"qid": "test945", "pid": "91638", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "Cartography\nin order to design a map with a specific audience in mind. Oftentimes, the type of audience an orienteering map is made for is in a particular industry or occupation. An example of this kind of map would be a municipal utility map. A topographic map is primarily concerned with the topographic description of a place, including (especially in the 20th and 21st centuries) the use of contour lines showing elevation. Terrain or relief can be shown in a variety of ways (see Cartographic relief depiction). In the present era, one of the most widespread and advanced methods used to"} +{"qid": "test945", "pid": "5284095", "query": "what is one element a topographic map shows", "answer": "relief", "passage": "\"Topographic profile\"\nworks of great length and small width, for example roads, sewers or pipelines. Sometimes topographical profiles appear in printed maps, such as those designed for navigation routes, excavations and especially for geological maps, where they are used to show the internal structure of the rocks that populate a territory. People who study natural resources such as geologists, geomorphologists, soil scientists and vegetation scholars, among others, build profiles to observe the relationship of natural resources to changes in topography and analyze numerous problems. Topographic profile A topographic profile or topographic cut is a representation of the relief of the terrain that"} +{"qid": "test946", "pid": "17428795", "query": "who played bat masterson in the movie tombstone", "answer": "Mason Alan Dinehart", "passage": "\"Mason Alan Dinehart\"\nto run for sheriff again. Earp as an appointed town marshal works with an elected sheriff, and their differences in jurisdiction do not cause any problems. Bat's brother, Ed Masterson, played by Brad Johnson, formerly the deputy sheriff on the \"\"Annie Oakley\"\" television series, is shot in an ambush by drunken cowboys, and Masterson settles the score. When Earp finally comes to Tombstone, Arizona Territory, he lacks the working relationship with Sheriff Johnny Behan that he had in Kansas with Bat Masterson. Dinehart's performance of Masterson was so highly regarded that ABC offered him a spinoff series, but he declined,"} +{"qid": "test946", "pid": "17428794", "query": "who played bat masterson in the movie tombstone", "answer": "Mason Alan Dinehart", "passage": "\"Mason Alan Dinehart\"\nformer Miranda Gazal have four children. One of his children, Scott Dinehart, died in 2010 of an emergency hip operation. Dinehart played the youthful Bat Masterson who is the understudy of Wyatt Earp in learning the proper techniques of frontier law enforcement. Earp rarely calls him \"\"Bat\"\" but \"\"Mr. Masterson\"\" to teach the young man maturity. In a 1956 episode \"\"Bat Masterson Again,\"\" Earp shows young Masterson on the proper use of a pistol. During this time Masterson was elected sheriff of Ford County, Kansas, which includes the county seat of Dodge City. Bill Tilghman had been denied the right"} +{"qid": "test946", "pid": "17428796", "query": "who played bat masterson in the movie tombstone", "answer": "Mason Alan Dinehart", "passage": "\"Mason Alan Dinehart\"\nsoon left acting, and entered the business field. Dinehart's last appearance on the series is the episode \"\"Dodge Is Civilized\"\" (April 28, 1959), in which he serves notice that he is headed to Tombstone, where he hopes Earp will join him in time. There is never a reunion show, and the Masterson character, now a gambler, is written out of \"\"The Life and Legend of Wyatt Earp\"\". The historical Earp did visit Tombstone to see his friend Masterson, who in time became a figure of western folklore, finishing his long career as a sportswriter in New York City. Masterson's hat"} +{"qid": "test949", "pid": "89251", "query": "where does cleavage of the peptide bond by chymotrypsin occur", "answer": "digestive systems", "passage": "Chymotrypsin\nturn, aminic group (-NH3) of the Ile16 residue interacts with the side chain of Glu194, producing the \"\"oxyanion hole\"\" and the hydrophobic \"\"S1 pocket\"\". Moreover, chymotrypsin induces its own activation by cleaving in positions 14-15, 146-147, and 148-149, producing α-chymotrypsin (which is more active and stable than π-chymotrypsin). The resulting molecule is a three-polypeptide molecule interconnected via disulfide bonds. \"\"In vivo\"\", chymotrypsin is a proteolytic enzyme (serine protease) acting in the digestive systems of many organisms. It facilitates the cleavage of peptide bonds by a hydrolysis reaction, which despite being thermodynamically favorable, occurs extremely slowly in the absence of a"} +{"qid": "test95", "pid": "5238989", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Kat Slater\"\nKat Slater Kathleen \"\"Kat\"\" Moon (also Slater) is a fictional character from the BBC soap opera \"\"EastEnders\"\", played by Jessie Wallace. She was also played by Kate Peck in a flashback in 2001. Kat is the daughter of Viv Slater and Charlie Slater (Derek Martin), and arrived with her sisters Lynne Hobbs (Elaine Lordan) and Little Mo Morgan (Kacey Ainsworth). Her daughter Zoe Slater (Michelle Ryan) is initially believed to be her sister as well until Kat reveals she was raped by her uncle Harry Slater (Michael Elphick) as a child. She later marries Alfie Moon (Shane Richie). It is"} +{"qid": "test95", "pid": "18743403", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Kat & Alfie: Redwater\"\n\"\"EastEnders\"\", also executive producer of \"\"Redwater\"\", Dominic Treadwell-Collins, said that two events in \"\"EastEnders\"\" serve as a catalyst for the series. In \"\"EastEnders\"\" episodes broadcast in April, May and December 2015 and January 2016, Kat and Alfie win the lottery, Alfie discovers he has a mass in his brain and Kat discovers she gave birth to a son, Luke, after she passed out during the birth of her daughter Zoe Slater (Michelle Ryan); Luke was adopted by a family in Ireland without Kat knowing he existed. Kat's sister Belinda Peacock (Carli Norris) recalls a time the family (minus Kat) went"} +{"qid": "test95", "pid": "20973151", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Slater family (EastEnders)\"\nSlater family (EastEnders) The Slater family are a fictional family from the BBC soap opera \"\"EastEnders\"\", that have appeared since episode 1997, first broadcast in September 2000. The family are introduced as a central family unit consisting of father Charlie Slater (Derek Martin), grandmother Mo Harris (Laila Morse), Charlie's daughters, Kat Slater (Jessie Wallace), Lynne Slater (Elaine Lordan), Little Mo Morgan (Kacey Ainsworth) and Zoe Slater (Michelle Ryan), and Lynne's partner Garry Hobbs (Ricky Groves). A fifth sister, Belinda Peacock (Leanne Lakey), was introduced a year later. The family were the eighth to be introduced in the soap's history, replacing"} +{"qid": "test95", "pid": "20973192", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Slater family (EastEnders)\"\nends of the country, and in some cases beyond.\"\" Slater family (EastEnders) The Slater family are a fictional family from the BBC soap opera \"\"EastEnders\"\", that have appeared since episode 1997, first broadcast in September 2000. The family are introduced as a central family unit consisting of father Charlie Slater (Derek Martin), grandmother Mo Harris (Laila Morse), Charlie's daughters, Kat Slater (Jessie Wallace), Lynne Slater (Elaine Lordan), Little Mo Morgan (Kacey Ainsworth) and Zoe Slater (Michelle Ryan), and Lynne's partner Garry Hobbs (Ricky Groves). A fifth sister, Belinda Peacock (Leanne Lakey), was introduced a year later. The family were the"} +{"qid": "test95", "pid": "5832105", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Zoe Slater\"\nZoe Slater Zoe Slater is a fictional character from the BBC soap opera \"\"EastEnders\"\", played by Michelle Ryan. She made her first appearance on 18 September 2000. After much speculation, Ryan decided to leave the role of Zoe and left on 24 June 2005. Zoe arrives in Walford along with her father, Charlie (Derek Martin), sisters Kat (Jessie Wallace), Lynne (Elaine Lordan) and Little Mo (Kacey Ainsworth), and grandmother Mo (Laila Morse). It later emerges that Zoe is in fact Kat's daughter, born after Kat was raped by her uncle Harry Slater (Michael Elphick), and was adopted by Kat's parents,"} +{"qid": "test95", "pid": "19233589", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Incest in film and television\"\nDevelopment\"\" features a recurring theme in which George Michael develops a crush on his cousin Maeby. While the two do come close to forming a relationship, it is suggested many times throughout the series that Maeby may have been adopted and that she and George Michael are not related by blood at all. Later story lines feature Maeby developing a relationship with a classmate of hers named Steve Holt, only to discover, he too, is her cousin. \"\"EastEnders\"\" also featured a storyline between Zoe Slater, Kat Slater and Harry Slater. Zoe discovered Kat, who she thought was her sister, is"} +{"qid": "test95", "pid": "127652", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "EastEnders\nMorgan, and Kat Slater's revelation to her daughter Zoe Slater that she was her mother. In 2002, Louise Berridge succeeded Yorke as the Executive Producer. During her time at \"\"EastEnders\"\", Berridge introduced popular characters such as Alfie Moon, Dennis Rickman, Chrissie Watts, Jane Beale, Stacey Slater and the critically panned Indian Ferreira family. Berridge was responsible for some ratings success stories, such as Alfie and Kat Slater's relationship, Janine Butcher getting her comeuppance, Trevor Morgan and Jamie Mitchell's death storylines and the return of one of the greatest soap icons, Den Watts, who had been presumed dead for 14 years."} +{"qid": "test95", "pid": "12220110", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Danielle Jones (EastEnders)\"\nDiscussing the character's death, Digital Spy's Kris Green praised Crace's acting. He compared Danielle's revelation that Ronnie was her mother to the \"\"EastEnders\"\" storyline several years previously, when Kat Slater (Jessie Wallace) revealed she was actually the mother of her supposed sister Zoe (Michelle Ryan). Green opined: \"\"Although it didn't quite capture the magic of [the Kat-Zoe scene] it definitely comes an \"\"extremely\"\" close second.\"\" He concluded: \"\"I'd probably go as far as to say that it's one of the best episodes \"\"EastEnders\"\" has produced in a long time\"\". The episode was selected as recommended viewing by \"\"The Guardian\"\" Sarah"} +{"qid": "test95", "pid": "5709609", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"EastEnders spin-offs\"\ndeath and funeral, and Carol Jackson confronting her daughter Bianca over her relationship with Dan Sullivan. The first \"\"EastEnders\"\" DVD was \"\"Slaters in Detention\"\", released in November 2003 and also available on VHS. It contained a special comedic episode of \"\"EastEnders\"\" starring the Slater family. It was written by Tony Jordan, who helped devise the characters. It began with the female members of the Slater family dressed up in school uniform for a local disco, and they end up in a police cell where they reflect on the events of their lives, such as Kat revealing that Zoe was her"} +{"qid": "test95", "pid": "20973160", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Slater family (EastEnders)\"\nin December, the actress stopped filming in August following a pregnancy scare. After a short absence, Wallace returned to filming in January and Kat reappeared in May. Shortly afterwards, Zoe made her final appearance following Ryan's decision to leave the series. Ryan filmed her final scenes in May and Zoe departs after deciding to move to Ibiza. On 19 July 2005, it was announced that Wallace had decided to leave \"\"EastEnders\"\". Richie had announced his intentions to leave two days previously, and the characters depart together on Christmas Day. The final Slater sister actress, Ainsworth, announced her plans to leave"} +{"qid": "test95", "pid": "127696", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "EastEnders\nher friend Dot Cotton), the unveiling of Kat Slater's abuse by her uncle Harry as a child (which led to the birth of her daughter Zoe, who had been brought up to believe that Kat was her sister), the domestic abuse of Little Mo Morgan by husband Trevor (which involved rape and culminated in Trevor's death after he tried to kill Little Mo in a fire), Sonia Jackson giving birth at the age of 15 and then putting her baby up for adoption, and Janine Butcher's prostitution, agoraphobia and drug addiction. The soap also tackled the issue of mental illness"} +{"qid": "test95", "pid": "5960182", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Michael Elphick\"\nit was soon cancelled. Elphick went on to play Billy Bones in Ken Russell's televised version of \"\"Treasure Island\"\" (1995) and Barkis in \"\"David Copperfield\"\" (1999). In 2001 he joined the cast of \"\"EastEnders\"\", where he played Harry Slater, a romantic interest for Peggy Mitchell (Barbara Windsor). The plotline indicated that Slater had sexually abused his niece, Kat Slater (Jessie Wallace), at the age of 13 and her \"\"sister\"\" Zoe (Michelle Ryan) was the daughter born to her when she became pregnant by him. Elphick's heavy drinking began to affect his performances, so the character promptly left the series and"} +{"qid": "test95", "pid": "5239090", "query": "who was kat slater's sisters in eastenders", "answer": "Zoe", "passage": "\"Kat Slater\"\nwas also nominated alongside Richie for Best Comeback. She won the Television and Radio Industries Club (TRIC) Award for \"\"TV Soap Personality\"\" in March 2011. Also in February, the scenes revealing Kat as Zoe's mother has become \"\"one of the most iconic moments in the history of EastEnders\"\". In September 2011, Kat and Andy's wedding was voted as a \"\"wedding from hell\"\" by \"\"Yahoo!\"\". After the announcement that Kat is to have a miscarriage, Tony Stewart from the \"\"Daily Mirror\"\" said that after the baby swap storyline, this is perhaps \"\"too much agony for Kat to bear\"\". An \"\"EastEnders\"\" source"} +{"qid": "test95", "pid": "20973156", "query": "who was kat slater's sisters in eastenders", "answer": "Lynne", "passage": "\"Slater family (EastEnders)\"\nexpanding, \"\"there were a lot of fractured families and people who were alone.\"\" The Slater family was created by series consultant Tony Jordan during an improvisation session with 30 actors and actresses. Prior to the workshop session, Yorke assumed he would create a more traditionally structured family, consisting of a mother, a father and two children. He was surprised to find that the presiding influence over the Slaters as they were created was a dead matriarch, Viv Slater (Debi Gibson), who exerted a \"\"powerful influence\"\" from beyond the grave. Yorke selected Jessie Wallace (Kat Slater), Elaine Lordan (Lynne Slater), Kacey"} +{"qid": "test95", "pid": "20973159", "query": "who was kat slater's sisters in eastenders", "answer": "Lynne", "passage": "\"Slater family (EastEnders)\"\nmade about a long-established and well-liked character. Both characters were also easily removed from the family, with Trevor dying in a fire, and Harry exiled to Spain where he died from a heart attack. Between July 2004 and May 2006, each original Slater sister departed the series. Lynne became the first original Slater character to leave the series after executive producer Louise Berridge decided not to renew Lordon's contract. Lynne departs after ending her marriage to Garry. After becoming pregnant in 2004, Wallace was confirmed to be taking maternity leave from the show. Despite this plans for Kat to leave"} +{"qid": "test954", "pid": "695751", "query": "where do the secretory cells of endocrine glands secrete their products", "answer": "bloodstream", "passage": "Gland\ndirectly onto the apical surface. The glands in this group can be divided into three groups: The type of secretory product of exocrine glands may also be one of three categories: Adenosis is any disease of a gland. The diseased gland has abnormal formation or development of glandular tissue which is sometimes tumorous. Gland A gland is a group of cells in an animal's body that synthesizes substances (such as hormones) for release into the bloodstream (endocrine gland) or into cavities inside the body or its outer surface (exocrine gland). Every gland is formed by an ingrowth from an epithelial"} +{"qid": "test954", "pid": "800848", "query": "where do the secretory cells of endocrine glands secrete their products", "answer": "epithelial surface", "passage": "\"Exocrine gland\"\nExocrine gland Exocrine glands are glands that produce and secrete substances onto an epithelial surface by way of a duct. Examples of exocrine glands include sweat, salivary, mammary, ceruminous, lacrimal, sebaceous, and mucous. Exocrine glands are one of two types of glands in the human body, the other being endocrine glands, which secrete their products directly into the bloodstream. The liver and pancreas are both exocrine and endocrine glands; they are exocrine glands because they secrete products—bile and pancreatic juice—into the gastrointestinal tract through a series of ducts, and endocrine because they secrete other substances directly into the bloodstream. Exocrine"} +{"qid": "test955", "pid": "1458543", "query": "where did the cosbys live in new york", "answer": "in Brooklyn", "passage": "\"The Cosby Show\"\nThe Cosby Show The Cosby Show was an American television sitcom starring Bill Cosby, which aired for eight seasons on NBC from September 20, 1984, until April 30, 1992. The show focuses on the Huxtable family, an upper middle-class African-American family living in Brooklyn, New York. \"\"The Cosby Show\"\" spent five consecutive seasons as the number-one rated show on television. \"\"The Cosby Show\"\" and \"\"All in the Family\"\" are the only sitcoms in the history of the Nielsen ratings to be the number-one show for five seasons. It spent all eight of its seasons in the top 20. According to"} +{"qid": "test955", "pid": "5256983", "query": "where did the cosbys live in new york", "answer": "Brooklyn, New York", "passage": "\"Rita Cosby\"\nRita Cosby Rita Cosby (born November 18, 1964, Brooklyn, New York) is a television news anchor and correspondent, radio host, and best selling author. She is currently a Special Correspondent for the CBS syndicated program \"\"Inside Edition\"\", specializing in interviewing newsmakers and political figures. Cosby has received three Emmy Awards, the Jack Anderson Award for investigative excellence, the Matrix Award, the Ellis Island Medal of Honor, and the Lech Walesa Freedom Award. October 11, 2010, was declared \"\"Rita Cosby Day\"\" in the State of New York for her “extraordinary journalism and exemplary service on behalf of her community.” The daughter"} +{"qid": "test956", "pid": "14112820", "query": "christmas though a christian holiday began as a celebration of", "answer": "the winter solstice", "passage": "\"Christmas in Nazi Germany\"\nas the celebration of the winter solstice. But for the majority of Germans, the Christian traditions remained the basis of the holiday, and the churches were outraged by the removal of Christ from Christmas and maintained the Christian traditions among themselves. Nazi ideologists claimed that the Christian elements of the holiday had been superimposed upon ancient Germanic traditions. They argued that Christmas Eve originally had nothing to do with the birth of Jesus Christ, but instead celebrated the winter solstice and the 'rebirth of the sun', that the swastika was an ancient symbol of the sun, and that Santa Claus"} +{"qid": "test957", "pid": "678750", "query": "where did the beer hall putsch take place", "answer": "Munich, Bavaria", "passage": "\"Beer Hall Putsch\"\nBeer Hall Putsch The Beer Hall Putsch, also known as the Munich Putsch, and, in German, as the Hitlerputsch, Hitler-Ludendorff-Putsch, Bürgerbräu-Putsch or Marsch auf die Feldherrnhalle (\"\"March on the general's hall\"\"), was a failed coup d'état by the Nazi Party (NSDAP) leader Adolf Hitler—along with \"\"Generalquartiermeister\"\" Erich Ludendorff and other \"\"Kampfbund\"\" leaders—to seize power in Munich, Bavaria, on 8–9 November 1923. Approximately two thousand Nazis were marching to the Feldherrnhalle, in the city center, when they were confronted by a police cordon, which resulted in the death of 16 Nazis and four police officers. Hitler, who was wounded during the"} +{"qid": "test957", "pid": "678789", "query": "where did the beer hall putsch take place", "answer": "Munich, Bavaria", "passage": "\"Beer Hall Putsch\"\n(Scheubner-Richter's servant), Gottfried Feder, Theodor von der Pfordten, Wilhelm Kolb, Rolf Reiner, Hans Streck, and Heinrich Bennecke, Brückner's adjutant. Behind this row marched the \"\"Stoßtrupp-Hitler\"\", the SA, the Infantry School, and the \"\"Oberländer\"\". Beer Hall Putsch The Beer Hall Putsch, also known as the Munich Putsch, and, in German, as the Hitlerputsch, Hitler-Ludendorff-Putsch, Bürgerbräu-Putsch or Marsch auf die Feldherrnhalle (\"\"March on the general's hall\"\"), was a failed coup d'état by the Nazi Party (NSDAP) leader Adolf Hitler—along with \"\"Generalquartiermeister\"\" Erich Ludendorff and other \"\"Kampfbund\"\" leaders—to seize power in Munich, Bavaria, on 8–9 November 1923. Approximately two thousand Nazis were marching"} +{"qid": "test958", "pid": "499385", "query": "who said beware of the ides of march", "answer": "the soothsayer", "passage": "\"Ides of March\"\nWilliam Shakespeare's play \"\"Julius Caesar\"\", when Caesar is warned by the soothsayer to \"\"beware the Ides of March.\"\" The Roman biographer Suetonius identifies the \"\"seer\"\" as a haruspex named Spurinna. Caesar's death was a closing event in the crisis of the Roman Republic, and triggered the civil war that would result in the rise to sole power of his adopted heir Octavian (later known as Augustus). Writing under Augustus, Ovid portrays the murder as a sacrilege, since Caesar was also the Pontifex Maximus of Rome and a priest of Vesta. On the fourth anniversary of Caesar's death in 40 BC,"} +{"qid": "test958", "pid": "1851628", "query": "who said beware of the ides of march", "answer": "a haruspex named Spurinna", "passage": "Haruspex\nLemnian. The art of haruspicy was taught in the \"\"Libri Tagetici\"\", a collection of texts attributed to Tages, a childlike being who figures in Etruscan mythology, and who was discovered in an open field by Tarchon; the \"\"Libri Tagetici\"\" were translated into Latin and employed in reading omens. The continuity of the Etruscan tradition among the Romans is indicated by several ancient literary sources, perhaps most famously in the incident related by Suetonius in which a haruspex named Spurinna warned Julius Caesar to beware the Ides of March. The emperor Claudius was a student of the Etruscan language and antiquities,"} +{"qid": "test959", "pid": "4861853", "query": "in what state was the united states center of population gravity located during the period 1790", "answer": "Maryland", "passage": "\"Center of population\"\nwhereas, in 1790, it was in Kent County, Maryland, east-northeast of the then-new federal capital, Washington, D.C. The mean center of the India lies at the Lat 22.49 N, Long 80.10 E near the town of Nainpur in the state of Madhya Pradesh. Center of population In demographics, the centre of population (or population center) of a region is a geographical point that describes a centrepoint of the region's population. There are several different ways of defining such a \"\"centre point\"\", leading to different geographical locations; these are often confused. Three commonly used (but different) center points are: A further"} +{"qid": "test96", "pid": "16180172", "query": "the cast of a good day to die hard", "answer": "Mary Elizabeth Winstead", "passage": "\"A Good Day to Die Hard\"\nbe \"\"A Good Day to Die Hard\"\"—with no further mention of any involvement from the \"\"24\"\" series—with a release date of February 14, 2013. Bruce Willis returned as John McClane, and has expressed a desire to shoot \"\"A Good Day to Die Hard\"\" and a sixth installment in the series before retiring the character. When casting the role of Jack McClane, the studios considered several actors, including Liam Hemsworth and James Badge Dale, before ultimately settling on Australian actor Jai Courtney. Mary Elizabeth Winstead also appeared in the film, reprising her role as McClane's daughter Lucy. However all her scenes"} +{"qid": "test96", "pid": "16180178", "query": "the cast of a good day to die hard", "answer": "Bruce Willis", "passage": "\"A Good Day to Die Hard\"\nin Berlin, Germany on February 4 and the second in London, England on February 7. \"\"A Good Day to Die Hard\"\" was commercially released first in Indonesia on February 6, 2013, and then opened in certain East and Southeast Asian territories on February 7. In the United States and Canada, the film was distributed to 2,328 theaters for night showings on February 13. Select theaters also held a one-time special marathon of all \"\"Die Hard\"\" films to lead up to \"\"A Good Day to Die Hard\"\"'s nationwide release, with Bruce Willis making a personal appearance at one of these marathons"} +{"qid": "test96", "pid": "16180161", "query": "the cast of a good day to die hard", "answer": "Sebastian Koch", "passage": "\"A Good Day to Die Hard\"\nA Good Day to Die Hard A Good Day to Die Hard is a 2013 American action thriller film and the fifth installment in the \"\"Die Hard\"\" film series. The film was directed by John Moore and written by Skip Woods, and stars Bruce Willis as John McClane. The main plot finds McClane travelling to Russia to get his estranged son, Jack, an undercover CIA agent, out of prison. He is soon caught in the crossfire of a global terrorist plot. Alongside Willis, the film also stars Jai Courtney, Cole Hauser, Yuliya Snigir and Sebastian Koch. Talks of a fifth"} +{"qid": "test96", "pid": "6459154", "query": "the cast of a good day to die hard", "answer": "Mary Elizabeth Winstead", "passage": "\"John McClane\"\nphone. She still resides in Los Angeles and is separated from, but still married to McClane. In \"\"Live Free or Die Hard\"\", cyber-terrorist Thomas Gabriel notes that McClane and Holly are divorced. in \"\"A Good Day to Die Hard\"\", she is mentioned by John when John and Jack are on their mission. Lucy McClane is John's daughter, born in 1982. She is played as a child by Taylor Fry in the first \"\"Die Hard\"\" film and as an adult by Mary Elizabeth Winstead in the fourth film \"\"Live Free or Die Hard\"\" and the fifth film \"\"A Good Day to"} +{"qid": "test96", "pid": "954275", "query": "the cast of a good day to die hard", "answer": "Bruce Willis", "passage": "\"Die Hard\"\nbut was limited to 3000 copies. It was subsequently reissued by La-La Land Records in November 2011, in a two-disc limited edition of 3500 copies. In addition to the Kamen score, this release also includes the Monroe and Beethoven end credits pieces, Run-D.M.C.'s \"\"Christmas in Hollis,\"\" and the John Scott track from \"\"Man on Fire\"\". The film spawned four sequels: \"\"Die Hard 2\"\" (1990), \"\"Die Hard with a Vengeance\"\" (1995), \"\"Live Free or Die Hard\"\" (2007), and \"\"A Good Day to Die Hard\"\" (2013). In July 2007, Bruce Willis donated the undershirt worn in the film to the National Museum"} +{"qid": "test96", "pid": "6459157", "query": "the cast of a good day to die hard", "answer": "Jai Courtney", "passage": "\"John McClane\"\nas a child (Noah Land) in the first \"\"Die Hard\"\" film and as an adult by Jai Courtney in the fifth film, \"\"A Good Day to Die Hard\"\". In \"\"Live Free or Die Hard\"\", cyber-terrorist Thomas Gabriel calls him Jack, which is a common alternative nickname for \"\"John\"\" in the United States. In early drafts of the script of \"\"Live Free or Die Hard\"\", John Jr. was set to be in the film. Jack is a CIA agent stationed in Russia to retrieve Yuri Komarov, a political prisoner who had evidence against Viktor Chagarin in a file at Chernobyl. To"} +{"qid": "test96", "pid": "16180179", "query": "the cast of a good day to die hard", "answer": "Bruce Willis", "passage": "\"A Good Day to Die Hard\"\nin New York City to thank fans. The film then expanded to a total of 3,553 theaters, including IMAX theaters, on February 14. On Rotten Tomatoes, the film has an approval rating of 14% based on 219 reviews, with an average rating of 3.9/10. The site's critical consensus reads, \"\"\"\"A Good Day to Die Hard\"\" is the weakest entry in a storied franchise, and not even Bruce Willis' smirking demeanor can enliven a cliched, uninspired script.\"\" On Metacritic, the film has a weighted average score of 28 out of 100, based on 40 critics, indicating \"\"generally unfavorable reviews\"\". On both"} +{"qid": "test96", "pid": "2266542", "query": "the cast of a good day to die hard", "answer": "Bruce Willis", "passage": "\"Die Hard with a Vengeance\"\nDumas appear as agents Bill Jarvis and Andrew Cross respectively. Aldis Hodge and Michael Alexander Jackson appear as Raymond and Dexter respectively, Zeus's nephews caught in the school bomb panic. Hodge later appeared in 2013's \"\"A Good Day to Die Hard\"\" as Lt. Foxy. Like most of the films in the series, the premise of this film was repurposed from a stand-alone project. Various scripts were written for \"\"Die Hard 3\"\"; a number of them were ultimately rejected by Bruce Willis on the grounds that they felt like retreads of the action movies that came in the wake of the"} +{"qid": "test96", "pid": "775488", "query": "the cast of a good day to die hard", "answer": "Bruce Willis", "passage": "\"24 (TV series)\"\nthe TV show.\"\" In June 2010, it was reported that plans were made to create a film titled \"\"Die Hard 24/7\"\", which would serve as a crossover between \"\"24\"\" and the \"\"Die Hard\"\" franchise, with Sutherland to reprise his role as Jack Bauer alongside Bruce Willis' John McClane. However, these plans never came to fruition, with the studio instead opting to create the film \"\"A Good Day to Die Hard\"\". In November 2010, executive producer Gordon revealed that a \"\"work in progress\"\" screenplay was being read by Fox, but that the film did not yet have a green-light or fixed"} +{"qid": "test96", "pid": "16180173", "query": "the cast of a good day to die hard", "answer": "Sebastian Koch", "passage": "\"A Good Day to Die Hard\"\nwere cut from the Extended release. Sebastian Koch played the film's primary antagonist, Yuri Komarov, while Yuliya Snigir and Cole Hauser featured as secondary characters Irina and Collins. The cast was completed by actors Amaury Nolasco as a friend of McClane, Pasha D. Lychnikoff as a taxi driver, and Megalyn Echikunwoke, Anne Vyalitsyna, and Ivan Kamaras in smaller roles. Production began in Hungary in April 2012, with the capital Budapest standing in for Moscow. A military shooting range near Hajmáskér was used for shooting live ammunition, while vehicular stunts were shot at the Hungaroring, a Formula One racing circuit in"} +{"qid": "test96", "pid": "16318186", "query": "the cast of a good day to die hard", "answer": "Jai Courtney", "passage": "\"Jai Courtney\"\nJai Courtney Jai Stephen Courtney (; born 15 March 1986) is an Australian actor. He started his career with small roles in films and television series before being cast as Charlie in the action film \"\"Jack Reacher\"\" (2012). He then went on to star in \"\"A Good Day to Die Hard\"\" (2013) and \"\"I, Frankenstein\"\" (2014). He stars alongside Christopher Plummer in the wartime thriller, \"\"The Exception\"\" (2016) Courtney had a recurring role as Varro in the television series \"\"\"\" (2010). He played Eric in the science fiction action film \"\"Divergent\"\" (2014), and in 2015, he reprised the role in"} +{"qid": "test961", "pid": "6146462", "query": "who proclaimed 5th october as world’s teachers day", "answer": "UNESCO/ILO", "passage": "\"World Teachers' Day\"\nfor instance, prepare an occasion for teachers during this day. More than 100 countries commemorate World Teachers' Day and each holds its own celebrations such as the case of India, which has been commemorating Teachers' Day every 5th of September. World Teachers' Day World Teachers' Day, also known as International Teachers Day, is held annually on October 5. Established in 1994, it commemorates the signing of the 1966 UNESCO/ILO Recommendation concerning the Status of Teachers, which is a standard-setting instrument that addresses the status and situations of teachers around the world. This recommendation outlines standards relating to education personnel policy,"} +{"qid": "test961", "pid": "6146459", "query": "who proclaimed 5th october as world’s teachers day", "answer": "UNESCO/ILO", "passage": "\"World Teachers' Day\"\nWorld Teachers' Day World Teachers' Day, also known as International Teachers Day, is held annually on October 5. Established in 1994, it commemorates the signing of the 1966 UNESCO/ILO Recommendation concerning the Status of Teachers, which is a standard-setting instrument that addresses the status and situations of teachers around the world. This recommendation outlines standards relating to education personnel policy, recruitment, and initial training as well as the continuing education of teachers, their employment, and working conditions. World Teachers' Day aims to focus on \"\"appreciating, assessing and improving the educators of the world\"\" and to provide an opportunity to consider"} +{"qid": "test963", "pid": "14617513", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama\"\nthe third season, \"\"Total Drama World Tour\"\", the contestants are taken all around the world in the \"\"Total Drama Jumbo Jet\"\", which seems to be structurally unstable. Some of the countries that are visited in the third season include Canada, France, Germany, Japan, the United Kingdom, and the United States. The fourth season, \"\"Total Drama: Revenge of the Island\"\", is set back at Camp Wawanakwa, but this time the island is radioactive. The first part of the fifth season, \"\"Total Drama All-Stars\"\", also takes place on the island, due to the success of the first and fourth seasons. The second"} +{"qid": "test963", "pid": "14617509", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama\"\nthat of \"\"Survivor\"\". \"\"Total Drama\"\" was met with critical acclaim upon release and has developed a cult following. The \"\"Total Drama\"\" series is the original series of the greater \"\"Total Drama\"\" franchise, which consists of five seasons that have aired during a timeframe of seven years: the first season, \"\"Total Drama Island\"\", the second season, \"\"Total Drama Action\"\", the third season, \"\"Total Drama World Tour\"\", the fourth season, \"\"\"\", and the fifth season, titled as both \"\"Total Drama All-Stars\"\" and \"\"Total Drama: Pahkitew Island\"\". The latest installment premiered on July 7, 2014, in the United States and September 4, 2014,"} +{"qid": "test963", "pid": "13488968", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama World Tour\"\nTotal Drama World Tour Total Drama World Tour is the third season of the \"\"Total Drama\"\" franchise that began with \"\"Total Drama Island\"\" and \"\"Total Drama Action\"\". The series extension was commissioned by Teletoon from the producers, Fresh TV, Inc. The season's elements and plot structure is largely based on \"\"The Amazing Race\"\", with the semi-final episode being a direct parody of the reality series. In this series, fifteen returning contestants and two new contestants are taken on a trip around the world, and compete in cultural themed challenges of countries they visit. An added twist in this season is"} +{"qid": "test963", "pid": "13488979", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama World Tour\"\nAugust 7, 2013. Teletoon hosted a \"\"Total Drama World Tour\"\" based website starting in 2010 called \"\"Total Drama Online\"\" where people could play games and earn badges to win prizes, but was only available in Canada. The site was then replaced with universal games available to everyone in 2013, but removed all special features from the site. Total Drama World Tour Total Drama World Tour is the third season of the \"\"Total Drama\"\" franchise that began with \"\"Total Drama Island\"\" and \"\"Total Drama Action\"\". The series extension was commissioned by Teletoon from the producers, Fresh TV, Inc. The season's elements"} +{"qid": "test963", "pid": "13488974", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama World Tour\"\nproduction in 2009 when Fresh TV Inc. told Teletoon to order new \"\"Total Drama\"\" episodes for an upcoming third season. This season was to be called \"\"Total Drama: The Musical\"\" when it first entered production. Keith Oliver and Chad Hicks directed this new season while two new voice actors, Marco Grazzini and Annick Obonsawin had to be hired if they wanted to voice the two new characters, Alejandro and Sierra. The season's title was later changed to the current title, \"\"Total Drama World Tour\"\" in 2010 upon the airing of Celebrity Manhunt's Total Drama Action Reunion Special due to the"} +{"qid": "test963", "pid": "14682558", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Carter Hayden\"\nCarter Hayden Carter Hayden (born February 12, 1982) is a Canadian actor and voice actor. He is most well-known for his role as Noah in the animated franchise \"\"Total Drama\"\". Hayden was born in British Columbia on February 12, 1982. He voiced Noah in the first season, \"\"Total Drama Island\"\", and the third season, \"\"Total Drama World Tour\"\". He also had a brief cameo appearance in the second season, \"\"Total Drama Action\"\", and later reprised the role in both \"\"Skatoony\"\", as well as the official spin-off series \"\"\"\". Noah has since become one of the most popular \"\"Total Drama\"\" characters,"} +{"qid": "test963", "pid": "14617531", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama\"\non Metacritic based on 14 reviews. The third season, \"\"Total Drama World Tour\"\", has also received critical acclaim from critics and won multiple awards including \"\"Best Animated Series\"\", \"\"Best Voice Actress\"\" (for Annick Obonsawin), and was also nominated for several other awards; however, the criticisms included the overuse of the love triangle between Courtney, Duncan, and Gwen, as well as the destruction of the character Ezekiel. \"\"Total Drama: Revenge of the Island\"\" received mixed to positive reviews, airing in over 100 countries and holding a 6.7 on Metacritic based on 15 reviews, thus indicating \"\"Generally favorable reviews.\"\" \"\"Total Drama All-Stars\"\""} +{"qid": "test963", "pid": "16979788", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama All-Stars and Pahkitew Island\"\nTotal Drama All-Stars and Pahkitew Island Total Drama All-Stars and Total Drama: Pahkitew Island are two 13-episode segments that both make up the fifth and final season of the Canadian animated television series, \"\"Total Drama\"\". The season was commissioned by Cartoon Network in October 2012, ordering 26 episodes. It is a sequel to \"\"Total Drama Island\"\", \"\"Total Drama Action\"\", \"\"Total Drama World Tour\"\", and \"\"\"\". The season was produced by Fresh TV and the Aboriginal Peoples Television Network and distributed by Cake Entertainment. Owing to the series' premise, the season presents itself as a parody of reality television series, such"} +{"qid": "test963", "pid": "14827452", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama: Revenge of the Island\"\nTotal Drama: Revenge of the Island Total Drama: Revenge of the Island (TDROTI for short) is the fourth season of the \"\"Total Drama\"\" franchise. The series' extension was commissioned by Teletoon from the producers, Fresh TV Inc. It is a sequel to \"\"Total Drama Island\"\", \"\"Total Drama Action\"\", and \"\"Total Drama World Tour\"\" and is a parody of reality TV shows, with this series taking the contestants back to Camp Wawanakwa (the original setting of the first season), only this time the island is radioactive. Previous contestants from past seasons no longer compete in \"\"Total Drama: Revenge of the Island\"\""} +{"qid": "test963", "pid": "14617534", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama\"\n3, 2013, and Collection 2 being released on August 7, 2013. On October 8, 2014, \"\"Total Drama: Revenge of the Island\"\" was released into one part due to it being a shorter season. The first part of the fifth season, \"\"Total Drama All-Stars\"\" was released on March 4, 2015, with the second part, \"\"Total Drama: Pahkitew Island\"\" being released on July 7, 2015. \"\"Total Drama\"\" episodes were made available on streaming services, such as Netflix, Amazon Prime, and iTunes. Currently, Netflix is missing \"\"Total Drama World Tour\"\" and \"\"Total Drama: Revenge of the Island\"\" while retaining all other seasons, especially"} +{"qid": "test963", "pid": "14827476", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama: Revenge of the Island\"\n\"\"generally favorable reviews\"\". Madman Entertainment is set to release Part 1 of Season 4 of \"\"Total Drama\"\" in August 1, 2014 on a Region 4 DVD in Australia with plans to release Part 2 in the fall. Total Drama: Revenge of the Island Total Drama: Revenge of the Island (TDROTI for short) is the fourth season of the \"\"Total Drama\"\" franchise. The series' extension was commissioned by Teletoon from the producers, Fresh TV Inc. It is a sequel to \"\"Total Drama Island\"\", \"\"Total Drama Action\"\", and \"\"Total Drama World Tour\"\" and is a parody of reality TV shows, with this"} +{"qid": "test963", "pid": "16979803", "query": "what is the third season of total drama", "answer": "World Tour", "passage": "\"Total Drama All-Stars and Pahkitew Island\"\nfemale. Seven of them are part of the first generation cast who have all been in \"\"Total Drama World Tour\"\", while the other seven are part of the second generation cast who have all competed in \"\"Total Drama: Revenge of the Island\"\" (the seven being the highest ranking for their season). Out of the seven original contestants, only Alejandro and Sierra have competed in one previous season; the other five have all competed in the first three seasons before \"\"Total Drama All-Stars\"\". Previous contestants from past seasons do not compete in \"\"Total Drama: Pahkitew Island\"\" because this part of the"} +{"qid": "test964", "pid": "6000202", "query": "how many times has south korea held the winter olympics", "answer": "two", "passage": "\"Short track speed skating at the 1992 Winter Olympics\"\nShort track speed skating at the 1992 Winter Olympics Short track speed skating at the 1992 Winter Olympics was held from 18 February to 22 February. Four events were contested at La halle de glace Olympique, located next to the Théâtre des Cérémonies, a couple of kilometers west of downtown Albertville. This was the first time short track speed skating was contested at the Winter Olympics. South Korea led the medal table with three, including two golds. Kim Ki-hoon's gold medal in the men's 1000 metre was the first Winter gold medal for South Korea. Kim also led the individual"} +{"qid": "test964", "pid": "17751348", "query": "how many times has south korea held the winter olympics", "answer": "two", "passage": "\"Short track speed skating at the 2014 Winter Olympics – Men's 1500 metres\"\nShort track speed skating at the 2014 Winter Olympics – Men's 1500 metres The men's 1500 metres in short track speed skating at the 2014 Winter Olympics was held on 10 February 2014 at the Iceberg Skating Palace in Sochi, Russia. The qualifying heats, semifinal, and the final were held on 10 February. The defending Olympic Champion was Lee Jung-su of South Korea, while the defending World Champion was Sin Da-woon also of South Korea. Countries were assigned quotas using a combination of the four special Olympic Qualification classifications that were held at two world cups in November 2013. A"} +{"qid": "test964", "pid": "19718566", "query": "how many times has south korea held the winter olympics", "answer": "two", "passage": "\"Bobsleigh at the 2018 Winter Olympics\"\nfrom Russia) were scheduled to participate (the numbers of athletes are shown in parentheses). This was the first time that Nigeria had qualified for the Winter Games in any sport. The two-woman bobsleigh team was thus Nigeria's first ever representation at the Winter Olympics. Bobsleigh at the 2018 Winter Olympics Bobsleigh at the 2018 Winter Olympics was held at the Alpensia Sliding Centre near Pyeongchang, South Korea. The events were scheduled to take place between 18 and 25 February 2018. A total of three bobsleigh events were held. A maximum of 170 quota spots were available to athletes to compete"} +{"qid": "test964", "pid": "20519584", "query": "how many times has south korea held the winter olympics", "answer": "two", "passage": "\"Bobsleigh at the 2018 Winter Olympics – Two-man\"\ncountries were awarded two sleds each. The remaining nine sleds were awarded to nine different countries, with South Korea being awarded a slot as host nation. The first two runs were held on 18 February and the last two runs were held on 19 February. Bobsleigh at the 2018 Winter Olympics – Two-man The two-man bobsleigh competition at the 2018 Winter Olympics was held on 18 and 19 February at the Alpensia Sliding Centre near Pyeongchang, South Korea. Justin Kripps and Alexander Kopacz of Canada and Francesco Friedrich and Thorsten Margis of Germany shared gold after the two teams recorded"} +{"qid": "test964", "pid": "20519689", "query": "how many times has south korea held the winter olympics", "answer": "two", "passage": "\"Bobsleigh at the 2018 Winter Olympics – Two-woman\"\nhost nation. The first two runs were held on 20 February and the last runs on 21 February 2018. With Mariama Jamanka (1st), Elana Meyers Taylor & Lauren Gibbs (2nd) and Phylicia George (3rd) all making the podium, it marked the first time in Winter Olympic history that black athletes won gold, silver and bronze medals in the same event. Bobsleigh at the 2018 Winter Olympics – Two-woman The two-man women's bobsleigh competition at the 2018 Winter Olympics was held on 20 and 21 February at the Alpensia Sliding Centre near Pyeongchang, South Korea. The top two countries in the"} +{"qid": "test964", "pid": "20511954", "query": "how many times has south korea held the winter olympics", "answer": "two", "passage": "\"Biathlon at the 2018 Winter Olympics – Women's pursuit\"\nBiathlon at the 2018 Winter Olympics – Women's pursuit The women's 10 km pursuit biathlon competition of the Pyeongchang 2018 Olympics was held on 12 February 2018 at the Alpensia Cross-Country Centre in Pyeongchang, South Korea. The field consisted of the top 60 finishers in the sprint event, held two days earlier, with competitors' starting times dependent on their final time in the sprint event. Laura Dahlmeier, who was the champion in the sprint, won a second title, becoming the first female biathlete to win an Olympic sprint-pursuit double. Anastasiya Kuzmina finished second, and Anaïs Bescond was third. This was"} +{"qid": "test966", "pid": "8073729", "query": "chris cornell she's going to change the world", "answer": "Can't Change Me", "passage": "\"Can't Change Me\"\nCan't Change Me \"\"Can't Change Me\"\" is the first single released from Chris Cornell's solo album, \"\"Euphoria Morning\"\". The song peaked at No. 5 on Billboard's Mainstream Rock Tracks, and at No. 7 on the Alternative Songs chart. A music video was produced for the song. \"\"Can't Change Me\"\" was nominated for Best Male Rock Vocal Performance at the 2000 Grammy Awards. \"\"Can't Change Me\"\" was released in early 1999 and turned out to be the biggest hit from the album commercially and the song had strong chart positions. \"\"Can't Change Me\"\" was the first Cornell single to chart but"} +{"qid": "test966", "pid": "8073732", "query": "chris cornell she's going to change the world", "answer": "Can't Change Me", "passage": "\"Can't Change Me\"\nAlexis Lemoine. CD1 CD2 Can't Change Me \"\"Can't Change Me\"\" is the first single released from Chris Cornell's solo album, \"\"Euphoria Morning\"\". The song peaked at No. 5 on Billboard's Mainstream Rock Tracks, and at No. 7 on the Alternative Songs chart. A music video was produced for the song. \"\"Can't Change Me\"\" was nominated for Best Male Rock Vocal Performance at the 2000 Grammy Awards. \"\"Can't Change Me\"\" was released in early 1999 and turned out to be the biggest hit from the album commercially and the song had strong chart positions. \"\"Can't Change Me\"\" was the first Cornell"} +{"qid": "test966", "pid": "1729096", "query": "chris cornell she's going to change the world", "answer": "Can't Change Me", "passage": "\"Chris Cornell\"\nAttendance for the shows were high, considering he performed the initial shows before fans were even familiar with the music. The touring band was made up of some of the contributing musicians Alain Johannes, Natasha Shneider, Rick Markmann, and Greg Upchurch. The album proved commercially unsuccessful selling 393,000 copies in the U.S., although the album's single \"\"Can't Change Me\"\" was nominated for Best Male Rock Vocal Performance at the 2000 Grammy Awards. Cornell recorded a version of \"\"Can't Change Me\"\" in French, this version is a bonus on \"\"Euphoria Morning\"\"'s deluxe version. The album includes \"\"Wave Goodbye\"\", Cornell's tribute to"} +{"qid": "test967", "pid": "12254860", "query": "how tall is the tallest building in las vegas", "answer": "The Drew Las Vegas", "passage": "\"The Drew Las Vegas\"\nThe Drew Las Vegas The Drew Las Vegas (formerly known as Fontainebleau Las Vegas) is an unfinished resort and casino on the Las Vegas Strip on the site previously occupied by the El Rancho Hotel and Casino and the Algiers Hotel in Winchester, Nevada. It was intended to be a sister property to the well-known 1950s-era Fontainebleau Miami Beach hotel. Excluding the nearby Stratosphere observation tower, the Drew's 63-floor hotel building is the tallest building in Las Vegas and in the state. Fontainebleau Las Vegas was announced in May 2005, with initial plans to begin construction by March 2006, and"} +{"qid": "test969", "pid": "753395", "query": "when was the dome of the rock completed", "answer": "691 CE", "passage": "\"Dome of the Rock\"\nDome of the Rock The Dome of the Rock ( \"\"Qubbat al-Sakhrah\"\", \"\"Kippat ha-Sela\"\") is an Islamic shrine located on the Temple Mount in the Old City of Jerusalem. It was initially completed in 691 CE at the order of Umayyad Caliph Abd al-Malik during the Second Fitna on the site of the Second Jewish Temple, destroyed during the Roman Siege of Jerusalem in 70 CE. The original dome collapsed in 1015 and was rebuilt in 1022–23. The Dome of the Rock is in its core one of the oldest extant works of Islamic architecture. Its architecture and mosaics were"} +{"qid": "test969", "pid": "753418", "query": "when was the dome of the rock completed", "answer": "691 CE", "passage": "\"Dome of the Rock\"\nBudapest, and the New Synagogue in Berlin, Germany. It was long believed by Christians that the Dome of the Rock echoed the architecture of the Temple in Jerusalem, as can be seen in Raphael's \"\"The Marriage of the Virgin\"\" and in Perugino's \"\"Marriage of the Virgin\"\". Citations Dome of the Rock The Dome of the Rock ( \"\"Qubbat al-Sakhrah\"\", \"\"Kippat ha-Sela\"\") is an Islamic shrine located on the Temple Mount in the Old City of Jerusalem. It was initially completed in 691 CE at the order of Umayyad Caliph Abd al-Malik during the Second Fitna on the site of the"} +{"qid": "test970", "pid": "3338041", "query": "abbreviated name of the highest peak in tasmania", "answer": "Mount Ossa", "passage": "\"Mount Ossa (Tasmania)\"\nMount Ossa (Tasmania) Mount Ossa is a mountain of the Pelion Range located in the Central Highlands region of Tasmania, Australia. With an elevation of above sea level, Mount Ossa is the highest peak in Tasmania. The mountain lies in the heart of Cradle Mountain-Lake St Clair National Park. It was first surveyed by Charles Gould and named after Mount Ossa in Greece following the theme of classical greek names set by George Frankland, an early Tasmanian surveyor. The entire mountain is composed of Jurassic dolerite. The peak is fairly remote from the nearest road, however there is a well"} +{"qid": "test973", "pid": "14123210", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"History of the Catholic Church in Cuba\"\nmembers of the Communist Party. The subsequent flight of 300,000 people from the island also helped to diminish the Church there. In 1992, Cuba declared itself a secular state and permitted Catholics and others to join the Communist Party. However, religious schools have remained closed since the early 1960s. History of the Catholic Church in Cuba Christopher Columbus, on his first Spanish-sponsored voyage to the Americas in 1492, sailed south from what is now the Bahamas to explore the northeast coast of Cuba and the northern coast of Hispaniola. Columbus, who was searching for a route to India, believed the"} +{"qid": "test973", "pid": "65968", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"History of Cuba\"\nlas Casas estimated that the Taíno population of Cuba had reached 350,000 by the end of the 15th century. The Taíno cultivated the yuca root, harvested it and baked it to produce cassava bread. They also grew cotton and tobacco, and ate maize and sweet potatoes. According to History of the Indians, they had \"\"everything they needed for living; they had many crops, well arranged\"\". Christopher Columbus, on his first Spanish-sponsored voyage to the Americas in 1492, sailed south from what is now the Bahamas to explore the northeast coast of Cuba and the northern coast of Hispaniola. Columbus, who"} +{"qid": "test973", "pid": "14123205", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"History of the Catholic Church in Cuba\"\nHistory of the Catholic Church in Cuba Christopher Columbus, on his first Spanish-sponsored voyage to the Americas in 1492, sailed south from what is now the Bahamas to explore the northeast coast of Cuba and the northern coast of Hispaniola. Columbus, who was searching for a route to India, believed the island to be a peninsula of the Asian mainland. The first sighting of a Spanish ship approaching the island was on 28 October 1492, probably at Bariay, Holguín Province, on the eastern point of the island. During a second voyage in 1494, Columbus passed along the south coast of"} +{"qid": "test973", "pid": "14235461", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"Spanish immigration to Cuba\"\nSpanish immigration to Cuba Spanish immigration to Cuba began in 1492, when Christopher Columbus first landed on the island, and continues to the present day. The first sighting of a Spanish boat approaching the island was on 27 or 28 October 1492, probably at Bariay on the eastern point of the island. Columbus, on his first voyage to the Americas, sailed south from what is now The Bahamas to explore the northeast coast of Cuba and the northern coast of Hispaniola. Columbus discovered the island believing it to be a peninsula of the Asian mainland. In 1511, Diego Velázquez de"} +{"qid": "test973", "pid": "15117743", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"Spanish diaspora\"\nisland. Christopher Columbus, on his first voyage to the Americas, sailed south from what is now the Bahamas to explore the northeast coast of Cuba and the northern coast of Hispaniola. Columbus discovered the island believing it to be a peninsula of the Asian mainland. In 1511, Diego Velázquez de Cuéllar set out with three ships and an army of 300 men from Santo Domingo to form the first Spanish settlement in Cuba, with orders from Spain to conquer the island. Most heritage comes from Canarians, Asturians, Galicians and Castilians. The native white population are nearly all descendants of the"} +{"qid": "test973", "pid": "13837540", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"Exploration of North America\"\nQueen Isabella I of Castille. Columbus's Letter on the First Voyage of his discovery of the Bahamas, Cuba, and Hispaniola spread the news across Europe quickly. Columbus rediscovered and explored much of the Lesser Antilles in his second voyage then discovered both Trinidad and Tobago on his third voyage whilst skirting the northern South American coast. His fourth voyage was spent scanning the Central American coast. The Voyages of Christopher Columbus opened the New World. Italian navigator and explorer Giovanni Caboto (known in English as John Cabot) is credited with the discovery of continental North America on June 24, 1497,"} +{"qid": "test973", "pid": "628163", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"European colonization of the Americas\"\nthe 7th century; the site became the first permanent European settlement in the Americas. Western European conquest, large-scale exploration and colonization soon followed. Columbus's first two voyages (1492–93) reached the Bahamas and various Caribbean islands, including Hispaniola, Puerto Rico, and Cuba. In 1497, Italian explorer John Cabot, on behalf of England, landed on the North American coast, and a year later, Columbus's third voyage reached the South American coast. As the sponsor of Christopher Columbus's voyages, Spain was the first European power to settle and colonize the largest areas, from North America and the Caribbean to the southern tip of"} +{"qid": "test973", "pid": "8090104", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"History of cartography\"\naround Africa to India, arriving in Calicut and starting a maritime route from Portugal to India. Soon, after Pedro Álvares Cabral reaching Brazil (1500), explorations proceed to Southeast Asia, having sent the first direct European maritime trade and diplomatic missions to Ming China and to Japan (1542). In 1492, when a Spanish expedition headed by Genoese explorer Christopher Columbus sailed west to find a new trade route to the Far East but inadvertently found the Americas. Columbus's first two voyages (1492–93) reached the Bahamas and various Caribbean islands, including Hispaniola, Puerto Rico and Cuba. The post-1492 era is known as"} +{"qid": "test973", "pid": "8912919", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"Voyages of Christopher Columbus\"\nthe Greater Antilles, the Bahamas, and the Leeward Islands; the Island Caribs (Kalina) and Galibi in the Windward Islands and Guadeloupe; and the Ciboney (a Taíno people) and Guanahatabey of central and western Cuba, respectively. The Taínos are subdivided into Classic Taínos, who occupied Hispaniola and Puerto Rico; Western Taínos, who occupied Cuba, Jamaica, and the Bahamian archipelago; and the Eastern Taínos, who occupied the Leeward Islands. Trinidad was inhabited by both Carib-speaking and Arawak-speaking groups. Most of modern Central America was part of the Mesoamerican civilization. The Amerindian societies of Mesoamerica occupied the land ranging from central Mexico in"} +{"qid": "test973", "pid": "17283316", "query": "who explored waters of cuba the bahamas and hispaniola", "answer": "Christopher Columbus", "passage": "\"Settler colonialism\"\npopulation ultimately made the Norse abandon those settlements. Extensive European colonization began in 1492, when a Spanish expedition headed by Genoese Christopher Columbus sailed west to find a new trade route to the Far East but inadvertently landed in the Americas. European conquest, large-scale exploration, colonization and industrial development soon followed. Columbus's first two voyages (1492–93) reached the Bahamas and various Caribbean islands, including Hispaniola, Puerto Rico and Cuba. In 1497, sailing from Bristol on behalf of England, John Cabot landed on the North American coast, and a year later, Columbus's third voyage reached the South American coast. As the"} +{"qid": "test974", "pid": "8120487", "query": "who played mrs. trumbull on i love lucy", "answer": "Mary Elizabeth Patterson", "passage": "\"Elizabeth Patterson (actress)\"\nElizabeth Patterson (actress) Mary Elizabeth Patterson (November 22, 1874 – January 31, 1966) was an American theatre, film, and television character actress who gained popular recognition late in her career playing the elderly neighbor Matilda Trumbull on the television comedy series \"\"I Love Lucy\"\". Born in 1874 in Savannah, Tennessee, Mary Elizabeth Patterson was the child of Mildred (\"\"née\"\" McDougal) and Edmund D. Patterson, a Confederate army veteran. Federal census records document that her father by 1880 was a lawyer and residing with his wife and children in the home of his father-in-law, Garrick Archibald McDougal, a widower, who was"} +{"qid": "test975", "pid": "2766906", "query": "where did the butchers in the slaughterhouse cases live", "answer": "New Orleans", "passage": "\"Matthew H. Carpenter\"\nsaved us!\"\" Even McCardle's attorney Jeremiah S. Black lauded him as \"\"the first Constitutional lawyer in the country.\"\" However, Radical Republicans in Congress feared that the reconstruction acts would be ruled unconstitutional, so they quickly pushed through a law repealing the Habeas Corpus Act of 1867, barring jurisdiction in pending cases and preventing a clear decision from being rendered by the court. In the Slaughterhouse cases Carpenter represented the Crescent City Livestock Landing and Slaughterhouse Company, which had been granted a monopoly on all slaughterhouse business in New Orleans by the carpetbag state legislature of Louisiana in 1869. Butchers and"} +{"qid": "test975", "pid": "1452109", "query": "where did the butchers in the slaughterhouse cases live", "answer": "New Orleans", "passage": "\"Slaughter-House Cases\"\ncovered by state citizenship. In effect, the amendment was interpreted to convey limited protection pertinent to a small minority of rights. The decision consolidated three similar cases: One writer described New Orleans in the mid-nineteenth century as plagued by \"\"intestines and portions of putrefied animal matter lodged [around the drinking pipes]\"\" whenever the tide from the Mississippi River was low; the offal came from the city's slaughterhouses. A mile and a half upstream from the city, 1,000 butchers gutted more than 300,000 animals per year. Animal entrails (known as offal), dung, blood, and urine contaminated New Orleans's drinking water, which"} +{"qid": "test977", "pid": "14551668", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's The Punisher", "passage": "\"Marvel Cinematic Universe\"\npost times. In some cases, when we have characters crossover, it makes it more difficult to manage production. It's not the goal to put out more than one or two [each] year ... The complex one is really \"\"The Defenders\"\". \"\"The Defenders\"\" production schedule will determine a lot of the season 2 and 3 output of those shows.\"\" He also noted on potential spin-offs that \"\"all the characters in the universe could also spin out\"\" into their own series at some point, with Netflix ordering \"\"Marvel's The Punisher\"\", a spin-off from \"\"Daredevil\"\", that April. Sarandos later stated that Netflix was"} +{"qid": "test977", "pid": "18532986", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's Iron Fist", "passage": "\"Luke Cage (TV series)\"\nNetflix as an examination of Harlem, \"\"like what \"\"The Wire\"\" did for Baltimore.\"\" Charles Murray, Alison Engel, Allie Goss, Kris Henigman, Cindy Holland, Alan Fine, Stan Lee, Joe Queseda, Dan Buckley, and Jim Chory also serve as executive producers. The series was originally intended to be the fourth of the announced series from Netflix, debuting after \"\"Marvel's Iron Fist\"\", but it was fast-tracked to be the third series, after Cage was introduced in \"\"Marvel's Jessica Jones\"\" and became a breakout star, with Marvel wanting to \"\"follow the momentum\"\". In December 2016, Netflix renewed the series for a second season. Charles"} +{"qid": "test977", "pid": "18533115", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's The Defenders", "passage": "\"The Defenders (miniseries)\"\non different characters. The Defenders (miniseries) Marvel's The Defenders, or simply The Defenders, is an American web television miniseries created by Douglas Petrie and Marco Ramirez for Netflix, based on the Marvel Comics characters Daredevil, Jessica Jones, Luke Cage, and Iron Fist, who form the eponymous superhero team. It is set in the Marvel Cinematic Universe (MCU), sharing continuity with the films of the franchise, and is the culmination of a series of interconnected shows from Marvel and Netflix. The miniseries is produced by Marvel Television in association with ABC Studios, Nine and a Half Fingers, Inc., and Goddard Textiles,"} +{"qid": "test977", "pid": "18533052", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's The Defenders", "passage": "\"The Defenders (miniseries)\"\nThe Defenders (miniseries) Marvel's The Defenders, or simply The Defenders, is an American web television miniseries created by Douglas Petrie and Marco Ramirez for Netflix, based on the Marvel Comics characters Daredevil, Jessica Jones, Luke Cage, and Iron Fist, who form the eponymous superhero team. It is set in the Marvel Cinematic Universe (MCU), sharing continuity with the films of the franchise, and is the culmination of a series of interconnected shows from Marvel and Netflix. The miniseries is produced by Marvel Television in association with ABC Studios, Nine and a Half Fingers, Inc., and Goddard Textiles, with Ramirez serving"} +{"qid": "test977", "pid": "19877313", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's Luke Cage", "passage": "\"Luke Cage (season 1)\"\nballyhooed shared-world premise so poorly, it's jarring when it even happens,\"\" and also took issue with elements of the season's logic, paceing, and \"\"thinly stretched plot\"\". Reviewing the entire season, Terri Schwartz of IGN awarded it an 8.4 out of 10, saying, \"\"\"\"Marvel's Luke Cage\"\" doesn't reach the heights of \"\"Daredevil\"\" and \"\"Jessica Jones\"\", and its flawed second half ends up diminishing what was otherwise a fantastic season. But with something important to say and interesting new characters, \"\"Luke Cage\"\" is another win for Marvel's Netflix shows.\"\" Keene highlighted the use of race in the season, and how it did"} +{"qid": "test977", "pid": "19877262", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's Luke Cage", "passage": "\"Luke Cage (season 1)\"\nenvisioned as a recurring role on \"\"Jessica Jones\"\" before headlining his own series. Netflix and Marvel announced that Cheo Hodari Coker would be the showrunner for \"\"Marvel's Luke Cage\"\" in late March 2015, after he pitched the series to Netflix as an examination of Harlem, \"\"like what \"\"The Wire\"\" did for Baltimore.\"\" The season consists of 13 hour-long episodes. Each episode of the season is named after a Gang Starr song, with Coker wanting the full season to feel like an album of music, explaining, \"\"When Prince put out an album, you would shut things out and listen to the"} +{"qid": "test977", "pid": "18532509", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's Daredevil", "passage": "\"Iron Fist (TV series)\"\nscore for the first season was released by Marvel digitally on March 17, 2017, coinciding with the release of the season. Robert Lydecker composed the score for the second season. \"\"Iron Fist\"\" is the fourth of the ordered Netflix series, after \"\"Marvel's Daredevil\"\", \"\"Jessica Jones\"\" and \"\"Luke Cage\"\", which lead to the miniseries, \"\"The Defenders\"\". In November 2013, Disney CEO Bob Iger stated that if the characters prove popular on Netflix, \"\"It’s quite possible that they could become feature films,\"\" which Sarandos echoed in July 2015. In August 2014, Vincent D'Onofrio, Wilson Fisk in \"\"Daredevil\"\", stated that after the \"\"series"} +{"qid": "test977", "pid": "19275255", "query": "what is the order of the netflix marvel shows", "answer": "Marvel's The Defenders", "passage": "\"Jessica Jones (season 2)\"\nJones\"\" would get an additional season before \"\"Marvel's The Defenders\"\". Rosenberg later expanded on this, saying that Marvel Television and Netflix were working out the placement of a potential second season, though \"\"[i]t might not be possible from a logistical standpoint\"\" to have a second season of \"\"Jessica Jones\"\" debut before \"\"The Defenders\"\"; Sarandos later confirmed this to be the case, stating that the season would air after \"\"The Defenders\"\" released in 2017. On January 17, 2016, Netflix ordered a second season of 13 episodes. Raelle Tucker joined the season as an executive producer and writer, replacing Liz Friedman from"} +{"qid": "test978", "pid": "2500081", "query": "a type of basic rock popular in the 1980s", "answer": "alternative rock", "passage": "\"1990s in music\"\nthe 1980s, rock music was also very popular in the 1990s, yet, unlike the new wave and glam metal-dominated scene of the time, grunge, Britpop, industrial rock and other alternative rock music emerged and took over as the most popular of the decade, as well as punk rock, ska punk and nu metal, amongst others, which attained a high level of success at different points throughout the years. Electronic music, which had risen in popularity in the 1980s, grew highly popular in the 1990s; house and techno from the 1980s rose to international success in this decade, as well as"} +{"qid": "test979", "pid": "6473470", "query": "who represents the insured in the investigation of a claim", "answer": "Claims adjuster", "passage": "\"Claims adjuster\"\nrequired to operate a 50-pound ladder and must stand, walk, kneel, crawl, and perform other physical demands as they investigate damaged property. Claims adjuster Claims adjuster (claim adjuster), or claims handler (claim handler), investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the company's liability. In the United Kingdom, Ireland, Australia, South Africa, the Caribbean and New Zealand the term loss adjuster is used. Other claims adjusters who represent policyholders may aid in the preparation of an insurance claim. In the United States, a claims adjuster's"} +{"qid": "test979", "pid": "6473460", "query": "who represents the insured in the investigation of a claim", "answer": "Claims adjuster", "passage": "\"Claims adjuster\"\nClaims adjuster Claims adjuster (claim adjuster), or claims handler (claim handler), investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the company's liability. In the United Kingdom, Ireland, Australia, South Africa, the Caribbean and New Zealand the term loss adjuster is used. Other claims adjusters who represent policyholders may aid in the preparation of an insurance claim. In the United States, a claims adjuster's duties typically extend to include the following elements: A Claims adjuster or Public Adjuster does not, and should not, engage in the"} +{"qid": "test979", "pid": "7588532", "query": "who represents the insured in the investigation of a claim", "answer": "Public adjusters", "passage": "\"Public insurance adjusting\"\nAssociation of Public Insurance Adjusters, which helps to coordinate claims and make the business environment open to adjusters. Public insurance adjusting Public insurance adjusters help policy holders receive payment from insurance companies. Public adjusters represent the policyholder for a small percentage of the resulting settlement money from the insurance claim. Public insurance adjusters represent the policyholder during the insurance claims process. These individuals or companies can inspect property damage, but cannot advise homeowners on questions of the law. They also help in building the case that is argued against the insurance company. Adjusters mostly represent clients who have been victim"} +{"qid": "test979", "pid": "7588525", "query": "who represents the insured in the investigation of a claim", "answer": "Public adjusters", "passage": "\"Public insurance adjusting\"\nPublic insurance adjusting Public insurance adjusters help policy holders receive payment from insurance companies. Public adjusters represent the policyholder for a small percentage of the resulting settlement money from the insurance claim. Public insurance adjusters represent the policyholder during the insurance claims process. These individuals or companies can inspect property damage, but cannot advise homeowners on questions of the law. They also help in building the case that is argued against the insurance company. Adjusters mostly represent clients who have been victim to property damage or loss. Most cases involve disasters including: fires, floods, hurricanes, frost damages, burglaries, and earthquakes."} +{"qid": "test979", "pid": "6473463", "query": "who represents the insured in the investigation of a claim", "answer": "Claims adjuster", "passage": "\"Claims adjuster\"\nwhen it comes to advocating on the policyholder's behalf to the insurance company. An independent adjuster could be working for multiple insurance companies or self-insured entities. If licensed by state authority they represent pinnacle of property loss knowledge in their field; whether it be residential, vehicular, marine, etc. An adjuster will frequently verify that coverage applies through an insurance policy, investigate liability for the damages caused, and make compensation to the injured person based on their emotional or physical property damages. Specific duties include: Some states now require adjusters disclose to claimants whose interest specifically independent, staff and public adjuster"} +{"qid": "test98", "pid": "10112355", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"U.S. Bank Stadium\"\ngame, on January 14, 2018, as the Vikings hosted the New Orleans Saints. The Vikings won the game 29-24 on a last second 61-yard catch by wide receiver Stefon Diggs, in a play that became known as the Minneapolis Miracle. The Vikings then advanced to the NFC Championship game against the Philadelphia Eagles in Philadelphia’s Lincoln Financial Field, where the Vikings lost 38-7, costing the Vikings the chance to become the first NFL team to play a Super Bowl in its own home stadium. Super Bowl LII was played at the stadium on February 4, 2018 between the Philadelphia Eagles"} +{"qid": "test98", "pid": "19807841", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"2017 Philadelphia Eagles season\"\nas the rest of the game represented total domination from Nick Foles and the Eagles' offense, who racked up 456 total yards and 38 unanswered points. With a blowout win against one of the league's top defenses, the Eagles advanced to their third Super Bowl. The Philadelphia Eagles entered Super Bowl LII as a 5.5 point underdog to the defending champions; the New England Patriots. This was also their first appearance in 13 years, with their last Super Bowl berth happening in 2005 (Super Bowl XXXIX), which also happened to be against the New England Patriots. In the first quarter,"} +{"qid": "test98", "pid": "16409522", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Brandon Brooks (American football)\"\nstarter and remained there throughout his Texans tenure. On March 9, 2016, Brooks signed a five-year, $40 million contract with the Philadelphia Eagles. He started 14 games at right guard in his first year in Philadelphia. On December 19, 2017, Brooks was named to his first Pro Bowl along with right tackle Lane Johnson after starting all 16 games at right guard. He could not play in the Pro Bowl because of his team advancing to the Super Bowl. Brooks would win his first Super Bowl when the Eagles defeated the New England Patriots in Super Bowl LII 41-33. Brandon"} +{"qid": "test98", "pid": "313805", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Philadelphia Eagles\"\nPhiladelphia Eagles The Philadelphia Eagles are a professional American football franchise based in Philadelphia, Pennsylvania. The Eagles compete in the National Football League (NFL) as a member club of the league's National Football Conference (NFC) East division. They are Super Bowl champions, having won Super Bowl LII; their first Super Bowl in franchise history, and their fourth NFL title overall, after winning the Championship Game in 1948, 1949, and 1960. The franchise was established in 1933 as a replacement for the bankrupt Frankford Yellow Jackets, when a group led by Bert Bell secured the rights to an NFL franchise in"} +{"qid": "test98", "pid": "17025369", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Lane Johnson\"\nFocus. He was ranked the top right tackle and received a $250,000 bonus for making the Pro Bowl. Johnson did not attend the Pro Bowl as the Eagles would play in Super Bowl LII. Johnson and Chris Long wore rubber masks of a German Shepherd (symbolic of the team's underdog status) after the 2017 Divisional playoff game versus the Atlanta Falcons, as the Falcons were considered favorites to win. Following the game, Philadelphia Eagles fans bought so many dog masks from Amazon that they were sold out. In Super Bowl LII, the Eagles defeated the New England Patriots 41-33 to"} +{"qid": "test98", "pid": "17161894", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Isaac Seumalo\"\nOn April 29, 2016, the Philadelphia Eagles selected Seumalo in the third round (79th overall) of the 2016 NFL Draft. In 2017, Seumalo played in 14 games, starting two at left guard. He won his first Super Bowl ring when the Eagles defeated the New England Patriots 41-33 in Super Bowl LII. Isaac Seumalo Isaac Seumalo (born October 29, 1993) is an American football guard and center for the Philadelphia Eagles of the National Football League. He played college football at Oregon State University. A native of Corvallis, Oregon, Seumalo attended Corvallis High School, where he was an 5A First"} +{"qid": "test98", "pid": "18247241", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Malcolm Butler\"\nand three forced fumbles. On January 21, 2018, the Patriots won the to advance to the Super Bowl for the third time in Butler's career. Butler and the Patriots lost Super Bowl LII to the Philadelphia Eagles, 41–33. Butler did not play any defensive snaps in the game, only coming in for a single play on special teams. After the game, Patriots head coach Bill Belichick said his lack of playing time was a \"\"coach's decision,\"\" not due to disciplinary issues. When asked about the benching, Butler stated \"\"I don't know what it was. I guess I wasn't playing or"} +{"qid": "test98", "pid": "10152678", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Corey Graham\"\nby the Bills. On August 3, 2017, Graham signed a one-year contract with the Philadelphia Eagles. Graham won his second Super Bowl ring when the Eagles defeated the New England Patriots 41-33 in Super Bowl LII with Graham recording 5 tackles. On August 5, 2018, Graham re-signed with the Eagles on a one-year deal. Corey Graham Corey Dewayne Graham (born July 25, 1985) is an American football free safety for the Philadelphia Eagles of the National Football League (NFL). He was drafted by the Chicago Bears in the fifth round of the 2007 NFL Draft. He played college football at"} +{"qid": "test98", "pid": "19807796", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"2017 Philadelphia Eagles season\"\nin the Divisional Round, as well as in the Conference Championship. In total, six Eagles players were selected for the Pro Bowl, including four first-time recipients. However, none of them participated due to preparations for Super Bowl LII. The Eagles defeated the New England Patriots by a score of 41–33 in Super Bowl LII for their first Super Bowl victory in franchise history. It was also their fourth NFL Championship, and their first league title since 1960. This was the second time the Eagles and Patriots battled in a Super Bowl; when they met in Super Bowl XXXIX, the Patriots"} +{"qid": "test98", "pid": "313880", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Philadelphia Eagles\"\nstarring Danny DeVito makes several references to the Philadelphia Eagles, most notably Season 3, Episode 2 – \"\"The Gang Gets Invincible,\"\" the title being a reference to the Wahlberg film. Philadelphia Eagles The Philadelphia Eagles are a professional American football franchise based in Philadelphia, Pennsylvania. The Eagles compete in the National Football League (NFL) as a member club of the league's National Football Conference (NFC) East division. They are Super Bowl champions, having won Super Bowl LII; their first Super Bowl in franchise history, and their fourth NFL title overall, after winning the Championship Game in 1948, 1949, and 1960."} +{"qid": "test98", "pid": "16396187", "query": "when did the philadelphia eagles play in the super bowl last", "answer": "Super Bowl LII", "passage": "\"Chance Warmack\"\na one-year, $1.51 million deal with the Philadelphia Eagles. On September 2, 2017, he signed a one-year contract extension with the Eagles through the 2018 season. In 2017, he played in 11 games, starting three at left guard. Warmack won Super Bowl LII when the Eagles defeated the New England Patriots 41-33. In the Super Bowl, he played four snaps at guard and another two for special teams plays. Warmack has a younger brother, Dallas, who is now an offensive guard for the University of Oregon. Chance Warmack Chance Warmack (born September 14, 1991) is an American football guard for"} +{"qid": "test980", "pid": "18961678", "query": "where did the rulers of the qing dynasty originate", "answer": "Manchuria", "passage": "\"Manchuria under Qing rule\"\nManchuria under Qing rule Manchuria under Qing rule was the rule of the Qing dynasty over Manchuria, including today's Northeast China and Outer Manchuria. The Qing dynasty itself was established by the Manchus, a Tungusic people coming from Manchuria, who later conquered the Ming dynasty and became the ruler of China. Thus, Manchuria enjoyed a somewhat special status during the Qing and was not governed as regular provinces until the late Qing dynasty. The Qing dynasty was founded not by Han Chinese, who form the majority of the Chinese population, but by a sedentary farming people known as the Jurchen,"} +{"qid": "test980", "pid": "2798696", "query": "where did the rulers of the qing dynasty originate", "answer": "Manchuria", "passage": "\"Treaty of Aigun\"\nTreaty of Aigun The Treaty of Aigun (Russian: Айгунский договор; ) was an 1858 treaty between the Russian Empire, and the empire of the Qing Dynasty, the Manchu rulers of China, that established much of the modern border between the Russian Far East and Manchuria (the original homeland of the Manchu people and the Qing Dynasty), which is now known as Northeast China. It reversed the Treaty of Nerchinsk (1689) by transferring the land between the Stanovoy Range and the Amur River from China (Qing Empire) to the Russian Empire. Russia received over from China. Since the 18th century, Russia"} +{"qid": "test980", "pid": "18961699", "query": "where did the rulers of the qing dynasty originate", "answer": "Manchuria", "passage": "\"Manchuria under Qing rule\"\nearlier. Manchuria became officially known as the \"\"Three Northeast Provinces\"\" (東三省), and the Qing established the post of Viceroy of the Three Northeast Provinces to oversee these provinces, which was the only Qing viceroy that had jurisdiction outside China proper. Manchuria under Qing rule Manchuria under Qing rule was the rule of the Qing dynasty over Manchuria, including today's Northeast China and Outer Manchuria. The Qing dynasty itself was established by the Manchus, a Tungusic people coming from Manchuria, who later conquered the Ming dynasty and became the ruler of China. Thus, Manchuria enjoyed a somewhat special status during the"} +{"qid": "test981", "pid": "2728087", "query": "what word is used to describe knowledge about the universe and method of obtaining that knowledge", "answer": "epistemology", "passage": "\"Knowledge by acquaintance\"\nKnowledge by acquaintance In philosophy, a distinction is often made between two different kinds of knowledge: knowledge by acquaintance and knowledge by description. Knowledge by acquaintance is obtained through a direct causal (experience-based) interaction between a person and the object that \"\"that person\"\" is perceiving. (Recent work in epistemology deploys related ideas concerning acquaintance in developing an epistemology of knowing other persons.) In 1865, philosopher John Grote distinguished between what he described as \"\"knowledge of acquaintance\"\" and \"\"knowledge-about\"\". Grote noted that these distinctions were made in many languages. He cited Greek (γνωναι and ειδεναι), Latin (noscere and scire), German (kennen"} +{"qid": "test981", "pid": "15441518", "query": "what word is used to describe knowledge about the universe and method of obtaining that knowledge", "answer": "epistemology", "passage": "\"Formative epistemology\"\nthe knowledge obtained through cognitive science, which is itself a natural science. This objection from circularity has been aimed specifically at strict replacement naturalism. There are similar challenges to substance naturalism that maintain that the substance naturalists' thesis that all facts of knowledge are natural facts is not only circular but fails to accommodate certain facts. Several other objectors have found fault in the inability of formative methods to adequately address questions about what value forms of potential knowledge have or lack. Formative epistemology is generally opposed to the anti-psychologism of Immanuel Kant, Gottlob Frege, Karl Popper and others. W."} +{"qid": "test982", "pid": "1668168", "query": "who is considered the father of modern cosmology", "answer": "Edwin Hubble", "passage": "\"Non-standard cosmology\"\nby starting from different assumptions or by contradicting the features predicted by Lambda-CDM. Modern physical cosmology as it is currently studied first emerged as a scientific discipline in the period after the Shapley–Curtis debate and discoveries by Edwin Hubble of a cosmic distance ladder when astronomers and physicists had to come to terms with a universe that was of a much larger scale than the previously assumed galactic size. Theorists who successfully developed cosmologies applicable to the larger-scale universe are remembered today as the founders of modern cosmology. Among these scientists are Arthur Milne, Willem de Sitter, Alexander Friedman, Georges"} +{"qid": "test984", "pid": "9079500", "query": "when was the last time an american won the new york marathon", "answer": "2017", "passage": "\"Miki Gorman\"\nin a course record of 2:47:11. Gorman would also place second at Boston in 1976, and won Boston again in 1977. Gorman also won the New York City Marathon twice, in 1976 and 1977, at the age of 41 and 42 respectively. Until November 5, 2017, when the race was won by Shalane Flanagan, she had been the last American woman to win the New York City Marathon. She set a personal best during her 1976 victory with a time of 2:39:11, then the second fastest women's marathon in history and just a minute off the world record. Gorman participated"} +{"qid": "test984", "pid": "14862138", "query": "when was the last time an american won the new york marathon", "answer": "2017", "passage": "\"Molly Huddle\"\nUnited States Olympic Trials. On August 12, 2016, Huddle achieved an American record of 30:13.17 in the 10,000 m at the 2016 Olympics while placing sixth, breaking Shalane Flanagan's 2008 Olympic time of 30:22.22. The world record was broken in the same race by Almaz Ayana in a time of 29:17.45. In November 2016, Huddle ran the 2016 New York City Marathon as her marathon debut. She finished in 3rd place in 2:28:13. Huddle won the 2017 New York Road Runners New York Half Marathon in 68:19, 2 seconds ahead of her training partner Emily Sisson. Her half marathon time"} +{"qid": "test984", "pid": "19092348", "query": "when was the last time an american won the new york marathon", "answer": "2017", "passage": "\"Emily Sisson\"\nConference. Emily Sisson won 2016 Manchester Road Race in 24:06. Emily Sisson finished second to Molly Huddle at 2017 New York Road Runners New York Half Marathon in 68:21. Her half marathon time is US All-time top 10. Sisson, who set an American debut record at 2017 race, runner-up finish behind Buze Diriba of Ethiopia with a time of 1:12:24 at 2018 United Airlines New York Road Runners New York Half Marathon. Emily Sisson Emily Sisson (born October 12, 1991) is a professional runner for New Balance in Providence, Rhode Island. Emily Sisson was 9th at the 2017 London IAAF"} +{"qid": "test984", "pid": "11472446", "query": "when was the last time an american won the new york marathon", "answer": "2017", "passage": "\"Tom Fleming (athlete)\"\nFame, and in July 2014, into the National Distance Running Hall of Fame in Utica, New York. In November 2017, Fleming was one of five people inducted by the New York Road Runners into its Hall of Fame. Tom Fleming (athlete) Tom Fleming (Thomas J. Fleming) (July 23, 1951 – April 19, 2017) was an American distance runner who won the 1973 and 1975 New York City Marathon. He was also a two time runner-up in the Boston Marathon in 1973 and 1974 and finished six times in the top ten in the BAA marathon. Fleming was the winner of"} +{"qid": "test984", "pid": "2528453", "query": "when was the last time an american won the new york marathon", "answer": "2017", "passage": "\"New York City Marathon\"\ntime of 2:11:32. On the women's side, the winner was Shalane Flanagan, a native of Marblehead, Massachusetts. She was the first American to win since 1977. Her time was 2:26:53. Mary Keitany placed 2nd with 2:27:54, and Mamitu Daska finished 3rd with a time of 2:28:08. The 2018 TCS New York City Marathon was run on Sunday, November 4. Lelisa Desisa of Ethiopia won his first New York City Marathon after finishing third in 2017, third in 2015 and second in 2014, followed by Shura Kitata and defending champion Geoffrey Kamworor. Their times of 2:05:59, 2:06:01 and 2:06:26 were the"} +{"qid": "test984", "pid": "12335900", "query": "when was the last time an american won the new york marathon", "answer": "2017", "passage": "\"Cheryl Bridges\"\nin physical education. In 1969, she finished fourth in the World Cross Country Championships in Scotland. She set the U.S. records in the 3 mile and 5,000 meter distances. In 1971, she finished 3rd in the U.S. cross country championship. On December 7, 1971, Bridges ran her first marathon, finishing the Culver City Marathon in a world record time of 2:49:40. Her daughter Shalane Flanagan won the silver medal, set an American record in the 2008 Summer Olympics Beijing in the 10,000 m and won the New York City marathon on November 5, 2017. The New York win was the"} +{"qid": "test984", "pid": "15541871", "query": "when was the last time an american won the new york marathon", "answer": "2009", "passage": "\"2011 Boston Marathon\"\nrecruiting top Americans to the marathon. In February 2011, Meb Keflezighi, the 2009 winner of the New York City Marathon and considered along with Ryan Hall to be one of the two most prominent American marathoners, announced through his website that race organizers had failed to make an appearance fee offer to him and that he would not be participating in the race. 2011 Boston Marathon The 2011 Boston Marathon took place on Monday, April 18, 2011. Geoffrey Mutai of Kenya won the men's race in a time of 2:03:02. In recognizing Mutai's mark as the \"\"fastest Marathon ever run\"\","} +{"qid": "test984", "pid": "17011152", "query": "when was the last time an american won the new york marathon", "answer": "2009", "passage": "\"George A. Hirsch\"\nwomen’s Olympic marathon in 1984. In 2009, on a promise to his wife Shay, he ran his final marathon in New York at age 75. He won his age group in each of his last eight marathons. Hirsch became the chairman of the New York Road Runners in 2005. Each year in conjunction with the New York City Marathon, the George Hirsch Journalism Award is given to a writer who has made a significant contribution to the sport of running. In 2014, Hirsch was also the recipient of a lifetime achievement award from the Association of International Marathons and Distance"} +{"qid": "test984", "pid": "2528442", "query": "when was the last time an american won the new york marathon", "answer": "2009", "passage": "\"New York City Marathon\"\nMarathons. The women's winner was the world Marathon record holder Paula Radcliffe from Great Britain in a time of 2:23:09, one second faster than her 2004 win. The 2008 New York City Marathon was held on Sunday, November 2. A field of 37,899 runners participated. The men's winner was Marílson Gomes dos Santos in 2:08:43. Paula Radcliffe won her third NYC marathon in 2:23:56. The 2008 marathon events were marred by the deaths of three marathon participants: The 2009 New York City Marathon was held Sunday November 1, 2009. Meb Keflezighi of the United States won the men's race (the"} +{"qid": "test985", "pid": "6709070", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Grim Reaper (comics)\"\nIron Man and the Avengers to which Eric's brother was transformed into Wonder Man. Learning of his brother's death, Eric was inflamed with guilt and anger. Through his Maggia contacts, he contacted the Tinkerer to provide him with his scythe weapon, which was further enhanced by Ultron with coma-inducing abilities. Taking the \"\"Grim Reaper\"\" name, he became a professional criminal and defeated Hawkeye, Goliath and the Wasp, placing the three Avengers in comas, but was beaten by the Black Panther's surprise appearance. In his next appearance, the Grim Reaper confronted the Avengers with his original Lethal Legion composed of the"} +{"qid": "test985", "pid": "6709081", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Grim Reaper (comics)\"\nit is discovered by the neighbor's dog, who is accidentally electrocuted to death upon biting Grim Reaper's scythe. The discovery alerts Vision to the body, and sends him into a short lived rage in which he destroys the family home. Ultimately, Vision decides to keep the death of Grim Reaper secret, to protect his family from the legal consequences and possible backlash from his fellow Avengers. The body is shown to be removed from the backyard. Originally, the Grim Reaper was a purely technological-based villain with no innate superhuman abilities. The techno-scythe he used as his trademark weapon was designed"} +{"qid": "test985", "pid": "510460", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Four Horsemen of the Apocalypse\"\nitself explicitly gives a name. Unlike the other three, he is not described carrying a weapon or other object, instead he is followed by Hades (the resting place of the dead). However, illustrations commonly depict him carrying a scythe (like the Grim Reaper), sword, or other implement. The color of Death's horse is written as \"\"khlōros\"\" (χλωρός) in the original Koine Greek, which can mean either green/greenish-yellow or pale/pallid. The color is often translated as \"\"pale\"\", though \"\"ashen\"\", \"\"pale green\"\", and \"\"yellowish green\"\" are other possible interpretations (the Greek word is the root of \"\"chlorophyll\"\" and \"\"chlorine\"\"). Based on uses"} +{"qid": "test985", "pid": "10931573", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Grim Reapers Motorcycle Club (USA)\"\nsymbolic personification of death, the Grim Reaper. The club's name is emblazoned on the top rocker of the three-piece patch. The center patch features the Grim Reaper in red holding his scythe, and is referred to as \"\"the Ghost.\"\" The territory from which the chapter operates appears on the bottom rocker. An \"\"MC\"\" patch appears to the right of the Ghost, when facing the cut. The cut also features a triangular front patch depicting a scythe over the club's initials, with one letter of the MC's motto, \"\"FTW,\"\" in each corner of the triangle. The Grim Reapers MC was founded"} +{"qid": "test985", "pid": "6709082", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Grim Reaper (comics)\"\nby the Tinkerer. The scythe was worn on his right hand and had the ability to make the blade spin at rapid speed, making the weapon usable as a high-speed propeller blade buzzsaw, missile shield, and an improvised helicopter. It could also fire electromagnetic power blasts and anaesthetic gas pellets, and dispense electric stun shocks on touch. The scythe was also equipped with a cerebral-frequency generator able to induce deep comas and revive victims from them as well. The Grim Reaper later gained some magic-related abilities: he could reanimate the souls and bodies of the dead, either through voodoo training"} +{"qid": "test985", "pid": "8796579", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Bathurst High School (New Brunswick)\"\nto get larger about halfway down, and the expansion is occupied by large, tapering red lines that occupy the expanded space. The school mascot is The Phantom. Varsity sports teams are called the \"\"Phantoms\"\" or the \"\"BHS Phantoms\"\", and the typical image of the mascot is of a hooded person or ghost, usually faceless, bearing resemblance to the iconic \"\"Grim Reaper\"\" image, carrying a scythe. The origins of this mascot are not related to the \"\"Grim Reaper\"\", but rather the legend of the \"\"Phantom Ship of the Bay of Chaleur\"\", a longstanding legend in the Bathurst area that a ghost"} +{"qid": "test985", "pid": "6709075", "query": "what is the name of the weapon the grim reaper carries", "answer": "scythe", "passage": "\"Grim Reaper (comics)\"\nand the Mandrill, and escaped again. The scythe was fused to his arm by Ultron, and he formed an alliance with Ultron. The Grim Reaper was later restored to life by the Scarlet Witch's magic. When Ultron attempted to create a new \"\"family\"\" for himself, Grim Reaper was abducted as one of the six individuals that came closest to being Ultron's \"\"family\"\" - the others being Hank Pym, Wasp, Vision, Scarlet Witch, and Wonder Man. Ultron regarded Grim Reaper as the first human connection made apart from Pym, as well as the connections to Wonder Man and Vision. While Vision"} +{"qid": "test987", "pid": "19213067", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Captain Phasma\"\non Amazon.co.uk. Captain Phasma Captain Phasma is a fictional character in the \"\"Star Wars\"\" franchise, portrayed by English actress Gwendoline Christie. Introduced in \"\"\"\" (2015), the first film in the \"\"Star Wars\"\" sequel trilogy, Phasma is the commander of the First Order's force of stormtroopers. Christie returned to the role in the next of the trilogy's films, \"\"\"\" (2017). The character also made an additional appearance in \"\"\"\", an anthology book set before the events of \"\"The Force Awakens\"\". J. J. Abrams created Phasma from an armor design originally developed for Kylo Ren and named her after the 1979 horror"} +{"qid": "test987", "pid": "19213048", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Captain Phasma\"\nCaptain Phasma Captain Phasma is a fictional character in the \"\"Star Wars\"\" franchise, portrayed by English actress Gwendoline Christie. Introduced in \"\"\"\" (2015), the first film in the \"\"Star Wars\"\" sequel trilogy, Phasma is the commander of the First Order's force of stormtroopers. Christie returned to the role in the next of the trilogy's films, \"\"\"\" (2017). The character also made an additional appearance in \"\"\"\", an anthology book set before the events of \"\"The Force Awakens\"\". J. J. Abrams created Phasma from an armor design originally developed for Kylo Ren and named her after the 1979 horror film \"\"Phantasm\"\"."} +{"qid": "test987", "pid": "19213060", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Captain Phasma\"\nfor Phasma in the films. Phasma will appear in the 2018 animated series \"\"Star Wars Resistance\"\", voiced again by Gwendoline Christie. \"\"Before the Awakening\"\", a prequel anthology, features the character in a short story centered around Finn. In it, she monitors Finn's performance in combat simulation and, although praising his skill, she criticizes his rescuing of a weaker soldier. Additionally, Phasma is featured in both the adult and junior novelizations of \"\"The Force Awakens\"\". The Lego \"\"Star Wars\"\" version of Phasma also appears in the 2016 short form animated series \"\"\"\". She is also a playable character and boss in"} +{"qid": "test987", "pid": "15742953", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Gwendoline Christie\"\nConstable in the Sydney Police Force, and the new partner of the show's main character played by Elisabeth Moss; the character was written especially for Christie by series co-creator Jane Campion, after Christie asked her to be a part of the series. The same year, she reprised her role of Captain Phasma in \"\"\"\", a sequel to \"\"The Force Awakens\"\". In April 2018, she was confirmed to reprise her role once again for the upcoming animated series \"\"Star Wars Resistance\"\". In 2018, she appeared as the bounty hunter Lady Jane in \"\"The Darkest Minds\"\", an adaptation of the book trilogy"} +{"qid": "test987", "pid": "19338364", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Star Wars: Poe Dameron\"\ntheir missions by X-wing pilots Snap Wexley, a character played by Greg Grunberg in the film and resembling the actor in the comic, and Jess Pava, also from \"\"The Force Awakens\"\", where she is played by Jessica Henwick. The series also includes cameos by Leia, appearing in Carrie Fisher's likeness as in the film, and stormtrooper commander Captain Phasma (Gwendoline Christie). New characters include Resistance pilots Karé Kun and L'ulo L'ampar, as well as X-wing tech Oddy Muva. \"\"Poe Dameron\"\" also introduces a new villain, Agent Terex of the First Order Security Bureau, a cocky ex-stormtrooper whom series creator Charles"} +{"qid": "test987", "pid": "19213051", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Captain Phasma\"\ngray\"\", with stormtroopers being updated to be more simplified and modernized. Kaplan designed the character believing it would be \"\"extremely cool\"\" to have a silver armored character in the film. The character was not originally conceived as a woman, but rather was changed from male to female during casting, less than three weeks before principal shooting began. Phasma thereby became the second on-screen female \"\"Star Wars\"\" villain, after Zam Wesell. With Captain Phasma, the filmmakers wished to \"\"push the boundaries\"\" of traditional roles for female characters. Actress Gwendoline Christie, who had previously played Brienne of Tarth in \"\"Game of Thrones\"\","} +{"qid": "test987", "pid": "11305785", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Star Wars: The Force Awakens\"\nRey's vision sequence, while archival audio of Frank Oz and Alec Guinness as Yoda and Kenobi, respectively, are also used in the same scene; Oz recorded new dialogue for the film, but it was replaced with preexisting audio from \"\"The Empire Strikes Back\"\". Gwendoline Christie portrays Captain Phasma, the commander of the First Order's legions of stormtroopers. Dave Chapman and Brian Herring served as puppeteers for BB-8, with Bill Hader and Ben Schwartz credited as \"\"Vocal Consultants\"\". Ken Leung appears as Statura, an admiral in the Resistance. Simon Pegg appears as Unkar Plutt, the Junkyard dealer on Jakku. Greg Grunberg"} +{"qid": "test987", "pid": "20081817", "query": "who plays captain phasma in star wars the force awakens", "answer": "Gwendoline Christie", "passage": "\"Star Wars Battlefront II (2017 video game)\"\nwas based on the movie \"\"\"\", and included Finn (John Boyega) and Captain Phasma (Gwendoline Christie) as heroes, the planet Crait as a ground map, and a space map above D'Qar. The second season, released in May 16, 2018, was based on the movie \"\"\"\", and included Jabba's Palace and Kessel as ground maps, the new game modes Hero Showdown and Extraction, new character skins for Han Solo, Lando Calrissian, Chewbacca, and Leia Organa. A third season was announced on June 9, 2018, during EA Play which will feature content from the prequel trilogy of \"\"Star Wars\"\", centering on the"} +{"qid": "test988", "pid": "19541688", "query": "who won so you think you can dance season 13", "answer": "Kida", "passage": "\"So You Think You Can Dance: The Next Generation (U.S. TV series)\"\nto reprise, and other duets were reprised as described below. Results were announced during the last hour of the show as follows: Emma placed 4th, Tate was 3rd, J. T. was runner-up, and Kida won the $250,000 top prize and will be featured on the cover of \"\"Dance Spirit\"\" magazine. Notes: So You Think You Can Dance: The Next Generation (U.S. TV series) So You Think You Can Dance: The Next Generation is the 13th season of \"\"So You Think You Can Dance\"\", an American dance competition show. The show premiered on Monday, May 30, 2016 in a new format"} +{"qid": "test989", "pid": "3282257", "query": "who wrote when a man loves a woman", "answer": "Percy Sledge", "passage": "\"When a Man Loves a Woman (film)\"\nWhen a Man Loves a Woman (film) When a Man Loves a Woman is a 1994 American romantic drama film written by Al Franken and Ronald Bass, starring Andy García, Meg Ryan, Tina Majorino, Mae Whitman, Ellen Burstyn, Lauren Tom and Philip Seymour Hoffman. For her performance as an alcoholic mother, Ryan received a Screen Actors Guild Award nomination for Best Female Actor in a Leading Role. The film's title is taken from the song of the same name by Percy Sledge. The film chronicles one woman's (Meg Ryan) alcoholism and her husband's (Andy García) efforts to help her. Meg"} +{"qid": "test99", "pid": "4921841", "query": "what is the cross on a letter t called", "answer": "arm", "passage": "\"Order of the Phoenix (Greece)\"\nThe Order has five classes: The badge of the Order is a white-enameled cross, in silver for the Silver Cross class, in gold for the higher classes, with the Phoenix (symbolizing the rebirth of the Hellenic nation) at the centre. A five-pointed star is at the upper arm of the cross. The first version of the Order (1926–1935) featured the letters \"\"E-T-T-A\"\" in Byzantine uncial on each arm of the cross, the initials of the motto \"\"Εκ της τέφρας μου αναγεννώμαι\"\" (\"\"From my ashes I am reborn\"\"). During the Monarchy (1935–1974) the letters were removed and the badge was topped"} +{"qid": "test990", "pid": "3969682", "query": "what's the difference between salisbury steak and hamburger steak", "answer": "ingredients", "passage": "\"Salisbury steak\"\nSalisbury steak Salisbury steak is a dish made from a blend of ground beef and other ingredients and is usually served with gravy or brown sauce. Hamburg steak is a similar product but differs in ingredients. The term \"\"Salisbury steak\"\" has been in use in the United States since 1897. The dish is named after an American physician, James H. Salisbury (1823–1905). The dish is popular in the United States, where it is traditionally served with gravy and mashed potatoes or pasta. The USDA standards for processed, packaged \"\"Salisbury steak\"\" require a minimum content of 65% meat, of which up"} +{"qid": "test990", "pid": "3969686", "query": "what's the difference between salisbury steak and hamburger steak", "answer": "ingredients", "passage": "\"Salisbury steak\"\ngarlic, and a binder (eggs and breadcrumbs soaked in milk), divided into oval-shaped patties, lightly breaded and shallow-fried in a half-inch of vegetable oil. The transliterated Japanese dish, \"\"menchi katsu\"\", is always deep-fried and heavily breaded, being essentially a mincemeat croquette, while the Russian version is always shallow-fried. Grillsteaks are a similar product sold in the UK. Salisbury steak Salisbury steak is a dish made from a blend of ground beef and other ingredients and is usually served with gravy or brown sauce. Hamburg steak is a similar product but differs in ingredients. The term \"\"Salisbury steak\"\" has been in"} +{"qid": "test990", "pid": "8960957", "query": "what's the difference between salisbury steak and hamburger steak", "answer": "ingredients", "passage": "\"Hamburg steak\"\ndish comprising the patty, a bun and, often, other ingredients. Hamburg steak is made from beef which is finely chopped, ground (American English), or minced (British English). Seasoning, egg, breadcrumb, onion and milk may be combined with the meat, which is then formed into patties and cooked, by frying, roasting, or smoking. Hamburg steak is listed by Escoffier as a classic dish in haute cuisine. is a popular dish in Japan. It is made from ground meat with finely chopped onion, egg and breadcrumbs flavored with various spices, and made into a flat, circular shape about a centimeter thick and"} +{"qid": "test991", "pid": "9972450", "query": "what are the 3 layers of the meninges", "answer": "arachnoid mater", "passage": "\"Laminar organization\"\nCells that remain in the epiblast become ectoderm. This is the trilaminar disc and the epiblast cells have given rise to the three germ layers. In the brain a laminar organization is evident in the arrangement of the three meninges, the membranes that cover the brain and spinal cord. These membranes are the dura mater, arachnoid mater, and pia mater. The dura mater has two layers a periosteal layer near to the bone of the skull, and a meningeal layer next to the other meninges. The cerebral cortex, the outer neural sheet covering the cerebral hemispheres can be described by"} +{"qid": "test991", "pid": "2409999", "query": "what are the 3 layers of the meninges", "answer": "arachnoid mater", "passage": "Meninges\narranged, fibroelastic layer of cells, characterized by multiple interdigitating cell processes, no extracellular collagen, and significant extracellular spaces. The middle region is a mostly fibrous portion. It consists of two layers: the endosteal layer, which lies closest to the calvaria (skullcap), and the inner meningeal layer, which lies closer to the brain. It contains larger blood vessels that split into the capillaries in the pia mater. It is composed of dense fibrous tissue, and its inner surface is covered by flattened cells like those present on the surfaces of the pia mater and arachnoid mater. The dura mater is a"} +{"qid": "test991", "pid": "12886877", "query": "what are the 3 layers of the meninges", "answer": "pia mater", "passage": "Meningitis\ncan be diagnosed after death has occurred. The findings from a post mortem are usually a widespread inflammation of the pia mater and arachnoid layers of the meninges. Neutrophil granulocytes tend to have migrated to the cerebrospinal fluid and the base of the brain, along with cranial nerves and the spinal cord, may be surrounded with pus – as may the meningeal vessels. For some causes of meningitis, protection can be provided in the long term through vaccination, or in the short term with antibiotics. Some behavioral measures may also be effective. Bacterial and viral meningitis are contagious, but neither"} +{"qid": "test991", "pid": "3085092", "query": "what are the 3 layers of the meninges", "answer": "the arachnoid mater", "passage": "\"Dura mater\"\nDura mater Dura mater, or dura, is a thick membrane made of dense irregular connective tissue that surrounds the brain and spinal cord. It is the outermost of the three layers of membrane called the meninges that protect the central nervous system. The other two meningeal layers are the arachnoid mater and the pia mater. The dura surrounds the brain and the spinal cord and is responsible for keeping in the cerebrospinal fluid. It is derived from neural crest cells. The dura mater has several functions and layers. The dura mater is a membrane that envelops the arachnoid mater. It"} +{"qid": "test991", "pid": "2603332", "query": "what are the 3 layers of the meninges", "answer": "the arachnoid mater", "passage": "\"Pia mater\"\nto damage the mitochondria and produce a large scale immune response. Headache and meningismus are often signs of inflammation relayed via trigeminal sensory nerve fibers within the pia mater. Disabling neuropsychological effects are seen in up to half of bacterial meningitis survivors. Research into how bacteria invade and enter the meningeal layers is the next step in prevention of the progression of meningitis. A tumor growing from the meninges is referred to as a meningioma. Most meningiomas grow from the arachnoid mater inward applying pressure on the pia mater and therefore the brain or spinal cord. While meningiomas make up"} +{"qid": "test991", "pid": "3436691", "query": "what are the 3 layers of the meninges", "answer": "the arachnoid mater", "passage": "\"Spinal canal\"\nSpinal canal The spinal canal (or vertebral canal or spinal cavity) is the space in the vertebral column formed by the vertebrae through which the spinal cord passes. It is a process of the dorsal body cavity. This canal is enclosed within the vertebral foramen of the vertebrae. In the intervertebral spaces, the canal is protected by the ligamentum flavum posteriorly and the posterior longitudinal ligament anteriorly. The outermost layer of the meninges, the dura mater, is closely associated with the arachnoid mater which in turn is loosely connected to the innermost layer, the pia mater. The meninges divide the"} +{"qid": "test991", "pid": "2410001", "query": "what are the 3 layers of the meninges", "answer": "pia mater", "passage": "Meninges\nloosely fitting sac. In particular, in the region of the brain a large number of fine filaments called arachnoid trabeculae pass from the arachnoid through the subarachnoid space to blend with the tissue of the pia mater. The arachnoid is composed of an outermost portion (arachnoid barrier cell layer) with tightly packed cells and no extracellular collagen; that is why it is considered to represent an effective morphological and physiological meningeal barrier between the cerebrospinal fluid and subarachnoid space and the blood circulation in the dura. The arachnoid barrier layer is characterized by a distinct continuous basal lamina on its"} +{"qid": "test991", "pid": "3768418", "query": "what are the 3 layers of the meninges", "answer": "arachnoid mater", "passage": "\"Longitudinal fissure\"\nthis structure then give rise to the two hemispheres of the Homo sapiens cortex, but do not merge at any point besides the corpus callosum. As a result, the longitudinal fissure is formed. All three meninges of the cortex (dura mater, arachnoid mater, pia mater) fold and descend deep down into the longitudinal fissure, physically separating the two hemispheres. Falx cerebri is the name given to the dura mater in-between the two hemispheres, whose significance rises from the fact that it is the outermost layer of the meninges. These layers prevent any direct connectivity between the bilateral lobes of the"} +{"qid": "test991", "pid": "3085101", "query": "what are the 3 layers of the meninges", "answer": "the arachnoid mater", "passage": "\"Dura mater\"\nloan translation of Arabic (umm al-dimāgh al-ṣafīcah), literally \"\"thick mother of the brain\"\", matrix of the brain, and is also referred to by the term \"\"pachymeninx\"\" (plural \"\"pachymeninges\"\"). The dura has been described as \"\"tough\"\" and \"\"leather-like\"\". Dura mater Dura mater, or dura, is a thick membrane made of dense irregular connective tissue that surrounds the brain and spinal cord. It is the outermost of the three layers of membrane called the meninges that protect the central nervous system. The other two meningeal layers are the arachnoid mater and the pia mater. The dura surrounds the brain and the spinal"} +{"qid": "test991", "pid": "3085096", "query": "what are the 3 layers of the meninges", "answer": "the arachnoid mater", "passage": "\"Dura mater\"\ntwo layers of dura mater run together throughout most of the skull. Where they separate, the gap between them is called a dural venous sinus. These sinuses drain blood and cerebrospinal fluid from the brain and empty into the internal jugular vein. Arachnoid villi, which are outgrowths of the arachnoid mater (the middle meningeal layer), extend into the venous sinuses to drain CSF. These villi act as one-way valves. Meningeal veins, which course through the dura mater, and bridging veins, which drain the underlying neural tissue and puncture the dura mater, empty into these dural sinuses. A rupture of a"} +{"qid": "test991", "pid": "2603314", "query": "what are the 3 layers of the meninges", "answer": "pia mater", "passage": "\"Pia mater\"\nwith the other meningeal layers to protect and cushion the brain. The pia mater allows blood vessels to pass through and nourish the brain. The perivascular space created between blood vessels and pia mater functions as a lymphatic system for the brain. When the pia mater becomes irritated and inflamed the result is meningitis. Pia mater is the thin, translucent, mesh-like meningeal envelope, spanning nearly the entire surface of the brain. It is absent only at the natural openings between the ventricles, the median aperture, and the lateral aperture. The pia firmly adheres to the surface of the brain and"} +{"qid": "test991", "pid": "3085093", "query": "what are the 3 layers of the meninges", "answer": "dura mater", "passage": "\"Dura mater\"\nsurrounds and supports the dural sinuses (also called dural venous sinuses, cerebral sinuses, or cranial sinuses) and carries blood from the brain toward the heart. The dura mater has two layers, or \"\"lamellae\"\": The superficial layer (also called the periosteal layer), which serves as the skull's inner periosteum, called the endocranium; and a deep layer called the meningeal layer; the actual dura mater. When it covers the spinal cord it is known as the \"\"dural sac\"\" or thecal sac. The dura separates into two layers at \"\"dural reflections\"\" (also known as \"\"dural folds\"\"), places where the inner dural layer is"} +{"qid": "test991", "pid": "6133207", "query": "what are the 3 layers of the meninges", "answer": "arachnoid mater", "passage": "\"Arachnoid mater\"\nArachnoid mater The arachnoid mater is one of the three meninges, the protective membranes that cover the brain and spinal cord. The arachnoid mater is a derivative of the neural crest mesectoderm in the embryo. It is interposed between the two other meninges, the more superficial and much thicker dura mater and the deeper pia mater, from which it is separated by the subarachnoid space. The delicate arachnoid layer is attached to the inside of the dura and surrounds the brain and spinal cord. It does not line the brain down into its sulci (folds), as does the pia mater,"} +{"qid": "test991", "pid": "2410002", "query": "what are the 3 layers of the meninges", "answer": "pia mater", "passage": "Meninges\ninner surface toward the innermost collagenous portion of the arachnoid reticular layer. The pia mater () is a very delicate membrane. It is the meningeal envelope that firmly adheres to the surface of the brain and spinal cord, following all of the brain's contours (the gyri and sulci). It is a very thin membrane composed of fibrous tissue covered on its outer surface by a sheet of flat cells thought to be impermeable to fluid. The pia mater is pierced by blood vessels to the brain and spinal cord, and its capillaries nourish the brain. The arachnoid and pia mater"} +{"qid": "test991", "pid": "6133212", "query": "what are the 3 layers of the meninges", "answer": "arachnoid mater", "passage": "\"Arachnoid mater\"\nreason some meningiomas can appear as completely inside the brain. Arachnoid mater The arachnoid mater is one of the three meninges, the protective membranes that cover the brain and spinal cord. The arachnoid mater is a derivative of the neural crest mesectoderm in the embryo. It is interposed between the two other meninges, the more superficial and much thicker dura mater and the deeper pia mater, from which it is separated by the subarachnoid space. The delicate arachnoid layer is attached to the inside of the dura and surrounds the brain and spinal cord. It does not line the brain"} +{"qid": "test991", "pid": "2603313", "query": "what are the 3 layers of the meninges", "answer": "the arachnoid mater", "passage": "\"Pia mater\"\nPia mater Pia mater ( or ), often referred to as simply the pia, is the delicate innermost layer of the meninges, the membranes surrounding the brain and spinal cord. \"\"Pia mater\"\" is medieval Latin meaning \"\"tender mother\"\". The other two meningeal membranes are the dura mater and the arachnoid mater. Both the pia and arachnoid mater are derivatives of the neural crest while the dura is derived from embryonic mesoderm. Pia mater is a thin fibrous tissue that is impermeable to fluid. This allows the pia mater to enclose cerebrospinal fluid. By containing this fluid the pia mater works"} +{"qid": "test991", "pid": "2603322", "query": "what are the 3 layers of the meninges", "answer": "pia mater", "passage": "\"Pia mater\"\nmeninges work together as a protection device for the brain, with the CSF often referred to as the fourth layer of the meninges. Cerebrospinal fluid is circulated through the ventricles, cisterns, and subarachnoid space within the brain and spinal cord. About 150 mL of CSF is always in circulation, constantly being recycled through the daily production of nearly 500 mL of fluid. The CSF is primarily secreted by the choroid plexus; however, about one-third of the CSF is secreted by pia mater and the other ventricular ependymal surfaces (the thin epithelial membrane lining the brain and central canal) and arachnoidal"} +{"qid": "test992", "pid": "7272783", "query": "who did puss in boots grew up with", "answer": "Kitty Softpaws", "passage": "\"Puss in Boots (Shrek)\"\nsince he had to follow \"\"the character's face movement\"\"; Puss speaks with a lisp in the Spanish dub. When he was at the Cannes Film Festival for \"\"Shrek 2\"\", Banderas noticed that Puss's character received much public attention. About Puss's changed appearance in \"\"Shrek Forever After\"\" (2010), Banderas joked that the character's weight gain did not bother him but the pink ribbon (which Puss wears in the film) did. For \"\"Puss in Boots\"\", Banderas advised the filmmakers to depict the relation between Puss and Kitty Softpaws (voiced by Salma Hayek) as a \"\"love-hate\"\" relationship to generate \"\"a great lot of"} +{"qid": "test992", "pid": "14736989", "query": "who did puss in boots grew up with", "answer": "Humpty Dumpty", "passage": "\"Puss in Boots (2011 film)\"\nPuss in Boots (2011 film) Puss in Boots is a 2011 American computer-animated adventure-comedy film produced in 3D format by DreamWorks Animation and distributed by Paramount Pictures. Written by Brian Lynch and Tom Wheeler, the film was directed by Chris Miller, who also directed \"\"Shrek the Third\"\" (2007). It stars Antonio Banderas, Salma Hayek, Zach Galifianakis, Billy Bob Thornton and Amy Sedaris. The film follows the character Puss in Boots on his adventures prior to his first appearance in \"\"Shrek 2\"\" (2004). Accompanied by his friends, Humpty Dumpty and Kitty Softpaws, Puss is pitted against Jack and Jill, two murderous"} +{"qid": "test992", "pid": "14737021", "query": "who did puss in boots grew up with", "answer": "Humpty Dumpty", "passage": "\"Puss in Boots (2011 film)\"\nPuss in Boots (2011 film) Puss in Boots is a 2011 American computer-animated adventure-comedy film produced in 3D format by DreamWorks Animation and distributed by Paramount Pictures. Written by Brian Lynch and Tom Wheeler, the film was directed by Chris Miller, who also directed \"\"Shrek the Third\"\" (2007). It stars Antonio Banderas, Salma Hayek, Zach Galifianakis, Billy Bob Thornton and Amy Sedaris. The film follows the character Puss in Boots on his adventures prior to his first appearance in \"\"Shrek 2\"\" (2004). Accompanied by his friends, Humpty Dumpty and Kitty Softpaws, Puss is pitted against Jack and Jill, two murderous"} +{"qid": "test992", "pid": "16029770", "query": "who did puss in boots grew up with", "answer": "Kitty Softpaws", "passage": "\"Puss in Boots (video game)\"\nin Boots themed video game is \"\"Fruit Ninja: Puss in Boots\"\", which was released on October 20, 2011, on the iOS App Store, and was released for Android devices on November 28, 2011, on the Amazon Appstore. In the years before meeting Shrek and Donkey in \"\"Shrek 2\"\", Puss in Boots must clear his name from all charges against him that has made him a wanted fugitive. While Puss is trying to steal magic beans from the infamous criminals Jack and Jill, the hero crosses paths with his female counterpart, Kitty Softpaws, who leads him to his old friend turned"} +{"qid": "test992", "pid": "7272797", "query": "who did puss in boots grew up with", "answer": "Humpty Alexander Dumpty", "passage": "\"Puss in Boots (Shrek)\"\nand \"\"The Ginger Hit Man\"\". After he was abandoned when he was little, Puss finds shelter at an orphanage in the town of San Ricardo and is adopted by Imelda. He becomes friends with Humpty Alexander Dumpty, who gives him the name \"\"Puss\"\" and with whom he decides to find the magic beans that would bring them to the Golden Goose (which lays golden eggs). Puss performs a heroic act, for which he receives acclaim and his boots. His bond with Humpty begins to fray, and Humpty compels Puss to (unknowingly) rob a bank with him. Puss leaves San Ricardo;"} +{"qid": "test993", "pid": "16341347", "query": "when was the first nuclear power plant opened", "answer": "the USSR", "passage": "\"Anti-nuclear movement in Russia\"\nout of the ten nuclear power plants can be found in the European part of Russia. In the Eastern part of Urals, two other nuclear power plants can be found. Russia has a long history of nuclear power plants. It was beneficial to the country when it first began but the view quickly changed in the post-Chernobyl period. On April 26, 1986 when the Chernobyl Nuclear Plant malfunctioned, it gave birth to the anti-nuclear movement in Russia and many anti-nuclear organizations emerged in the USSR. Many of these anti-nuclear protest or activities took place in the 1980s, which motivated people"} +{"qid": "test995", "pid": "11677010", "query": "what states do not allow daylight savings time", "answer": "Navajo", "passage": "\"Daylight saving time in the United States\"\nDaylight saving time in the United States Daylight saving time in the United States is the practice of setting the clock forward by one hour during the warmer part of the year, so that evenings have more daylight and mornings have less. Most areas of the United States observe daylight saving time (DST), the exceptions being Arizona (except for the Navajo, who do observe daylight saving time on tribal lands), Hawaii, and the overseas territories of American Samoa, Guam, the Northern Mariana Islands, Puerto Rico, and the United States Virgin Islands. The Uniform Time Act of 1966 established the system"} +{"qid": "test995", "pid": "11677033", "query": "what states do not allow daylight savings time", "answer": "Hawaii", "passage": "\"Daylight saving time in the United States\"\ncommon time). There are currently no states that keep daylight saving time year round. On March 6, 2018, the Florida Senate approved the “Sunshine Protection Act” which would put Florida on permanent Daylight Saving Time year round, and Governor Rick Scott signed it March 23. Congress would need to amend the existing 1966 federal law to allow the change. Hawaii has never observed daylight saving time under the Uniform Time Act, having opted out of the Act's provisions in 1967. Because of Hawaii's tropical latitude, there is not a large variation in daylight length between winter and summer. Advancing the"} +{"qid": "test995", "pid": "11677039", "query": "what states do not allow daylight savings time", "answer": "Arizona", "passage": "\"Daylight saving time in the United States\"\nCentral Time Zone. In 2015, the Nevada Senate passed Nevada Assembly Joint Resolution 4, which urged Congress to enact legislation allowing individual states to establish daylight saving time as the standard time in their respective states throughout the calendar year. This would mean that Nevada is on the same time as Arizona all year, but would be an hour ahead of California in the winter. The United States Congress has not yet enacted any enabling legislation in this regard. In 2015, Rep. Elizabeth Scott (R-Monroe) filed a House bill to end DST in Washington, and a companion bill was filed"} +{"qid": "test995", "pid": "16002997", "query": "what states do not allow daylight savings time", "answer": "Arizona", "passage": "\"Daylight saving time in Mexico\"\n(above). The bill was discarded by congress on June 29, 2016. The state of Baja California (not Baja California Sur) has observed daylight saving time from several decades ago and until 1996 was the only Mexican state to observe it. The state of Sonora has not observed DST since 1998 because of the non-observance of DST by its neighbor Arizona and its important economic ties with that US state. The Marías Islands and the Revillagigedo Archipelago do not observe DST. The westernmost island of the Revillagigedo Archipelago, Clarion Island, uses UTC−8 (PST) all the time. The state of Quintana Roo"} +{"qid": "test997", "pid": "17435885", "query": "when did dragon ball z air in australia", "answer": "Fall 1998", "passage": "\"Dragon Ball Z\"\nusing the censored Funimation/Saban dub before switching to Funimation's in-house dub. \"\"Dragon Ball Z\"\" originally aired on the British Comedy Network in Fall 1998. In February 2009, Toei Animation announced that it would begin broadcasting a revised version of \"\"Dragon Ball Z\"\" as part of the series' 20th-anniversary celebrations. The series premiered on Fuji TV in Japan on April 5, 2009, under the title \"\"Dragon Ball Kai\"\". The ending suffix in the name means \"\"updated\"\" or \"\"altered\"\" and reflects the improvements and corrections of the original work. The original footage was remastered for HDTV, featuring updated opening and ending sequences,"} +{"qid": "test998", "pid": "3085097", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "A subdural hematoma", "passage": "\"Dura mater\"\nbridging vein causes a subdural hematoma. The supratentorial dura mater membrane is supplied by small meningeal branches of the trigeminal nerve (V1, V2 and V3). The innervation for the infratentorial dura mater are via upper cervical nerves. Many medical conditions involve the dura mater. A subdural hematoma occurs when there is an abnormal collection of blood between the dura and the arachnoid, usually as a result of torn bridging veins secondary to head trauma. An epidural hematoma is a collection of blood between the dura and the inner surface of the skull, and is usually due to arterial bleeding. Intradural"} +{"qid": "test998", "pid": "3304779", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "A subdural hematoma", "passage": "\"Subdural hematoma\"\nSubdural hematoma A subdural hematoma (SDH), is a type of hematoma, usually associated with traumatic brain injury. Blood gathers between the inner layer of the dura mater and the arachnoid mater. Usually resulting from tears in bridging veins which cross the subdural space, subdural hemorrhages may cause an increase in intracranial pressure (ICP), which can cause compression of and damage to delicate brain tissue. Subdural hematomas are often life-threatening when acute. Chronic subdural hematomas, however, have a better prognosis if properly managed. In contrast, epidural hematomas are usually caused by tears in arteries, resulting in a build-up of blood between"} +{"qid": "test998", "pid": "3304796", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "A subdural hematoma", "passage": "\"Subdural hematoma\"\nevacuation; most frequently, simple burr holes for drainage; often conservative treatment; and rarely, palliative treatment in patients of extreme age or with no chance of recovery. In those with a chronic subdural hematoma, but without a history of seizures, the evidence is unclear if using anticonvulsants is harmful or beneficial. Subdural hematoma A subdural hematoma (SDH), is a type of hematoma, usually associated with traumatic brain injury. Blood gathers between the inner layer of the dura mater and the arachnoid mater. Usually resulting from tears in bridging veins which cross the subdural space, subdural hemorrhages may cause an increase in"} +{"qid": "test998", "pid": "5818259", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "\"Emissary veins\"\ninternal carotid pass through the cavernous sinus, with cranial nerves III, IV, V1, and V2 passing alongside the lateral wall of the sinus. Subsequent infection or inflammation in the cavernous sinus can result in damage to any of the cranial nerves that pass through it or meningitis. Also, rupturing the emissary veins will result in a subdural hematoma which will compress the brain. Emissary veins The emissary veins connect the extracranial venous system with the intracranial venous sinuses. They connect the veins outside the cranium to the venous sinuses inside the cranium. They drain from the scalp, through the skull,"} +{"qid": "test998", "pid": "3304782", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "\"Subdural hematoma\"\nin alcoholics, who have evidence of cerebral atrophy. Cerebral atrophy increases the length the bridging veins have to traverse between the two meningeal layers, hence increasing the likelihood of shearing forces causing a tear. It is also more common in patients on anticoagulants or antiplatelet drugs, such as warfarin and aspirin. Patients on these medications can have a subdural hematoma after a relatively minor traumatic event. A further cause can be a reduction in cerebral spinal fluid pressure which can create a low pressure in the subarachnoid space, pulling the arachnoid away from the dura mater and leading to a"} +{"qid": "test998", "pid": "3304781", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "\"Subdural hematoma\"\nthe brain will be present. Other signs and symptoms of subdural hematoma can include any combination of the following: Subdural hematomas are most often caused by head injury, when rapidly changing velocities within the skull may stretch and tear small bridging veins. Subdural hematomas due to head injury are described as traumatic. Much more common than epidural hemorrhages, subdural hemorrhages generally result from shearing injuries due to various rotational or linear forces. Subdural hemorrhage may be seen in shaken baby syndrome, in which similar shearing forces may cause retinal hemorrhages. Subdural hematoma is also commonly seen in the elderly and"} +{"qid": "test998", "pid": "3304784", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "\"Subdural hematoma\"\njuveniles, an arachnoid cyst is a risk factor for a subdural hematoma. Other risk factors for subdural bleeds include taking blood thinners (anticoagulants), long-term alcohol abuse, dementia, and the presence of a cerebrospinal fluid leak. Acute subdural haematoma is usually caused external trauma that creates tension in the wall of a bridging vein as it passes between the arachnoid and dural layers, i.e. the subdural space, of the brain's lining. This is because in the short course of the vein in the subdural space, circumferential arrangement of collagen surrounding the vein causes it to be susceptible to tear by this"} +{"qid": "test998", "pid": "782105", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "Headache\nnot dangerous. The most common type of headache seen in pediatric emergency rooms is headache caused by a cold (28.5%). Other headaches diagnosed in the emergency department include post-traumatic headache (20%), headache related to a problem with a ventriculoperitoneal shunt (a device put into the brain to remove excess CSF and reduce pressure in the brain) (11.5%) and migraine (8.5%). The most common serious headaches found in children include brain bleeds (subdural hematoma, epidural hematoma), brain abscesses, meningitis and ventriculoperitoneal shunt malfunction. Only 4–6.9% of kids with a headache have a serious cause. Just as in adults, most headaches are"} +{"qid": "test998", "pid": "3062215", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "Stroke\nof intracranial hemorrhage, such as epidural hematoma (bleeding between the skull and the dura mater, which is the thick \"\"outermost\"\" layer of the meninges that surround the brain) and subdural hematoma (bleeding in the subdural space), are not considered \"\"hemorrhagic strokes\"\". Hemorrhagic strokes may occur on the background of alterations to the blood vessels in the brain, such as cerebral amyloid angiopathy, cerebral arteriovenous malformation and an intracranial aneurysm, which can cause intraparenchymal or subarachnoid hemorrhage. In addition to neurological impairment, hemorrhagic strokes usually cause specific symptoms (for instance, subarachnoid hemorrhage classically causes a severe headache known as a thunderclap"} +{"qid": "test998", "pid": "3304783", "query": "which type of hematoma is a result of torn bridging meningeal veins", "answer": "subdural hematoma", "passage": "\"Subdural hematoma\"\nrupture of the blood vessels. Factors increasing the risk of a subdural hematoma include very young or very old age. As the brain shrinks with age, the subdural space enlarges and the veins that traverse the space must travel over a wider distance, making them more vulnerable to tears. This and the fact that the elderly have more brittle veins make chronic subdural bleeds more common in older patients. Infants, too, have larger subdural spaces and are more predisposed to subdural bleeds than are young adults. For this reason, subdural hematoma is a common finding in shaken baby syndrome. In"} diff --git a/make_qrels_cast22.py b/make_qrels_cast22.py new file mode 100644 index 0000000000000000000000000000000000000000..7b57c7853af4674900c198f7e2e1ef4127da6c98 --- /dev/null +++ b/make_qrels_cast22.py @@ -0,0 +1,47 @@ +import json + +from tqdm import tqdm + +QUERY_TYPE="Q0" # TREC format legacy +RELEVANCE_SCORE=1 + +PASSAGE_ID_VALID_PREFIX=["MARCO", "KILT"] # disable WAPO + +### read: cast 22 eval json +eval_json_path="/root/Corpus/CAsT22_eval_queries/cqr_inferred_results.json" + +# read data +with open(eval_json_path, 'r') as fr: + data = json.load(fr) + +# write: qrels.txt (format: {qid}\t{query}) +eval_qrels_path = "/root/Corpus/CAsT22_eval_queries/cqr_qrels.txt" +qid_pid_pair_list = [] # filter out duplicate pair exists in evaluation file +with open(eval_qrels_path, 'w') as fw: + for sample in tqdm(data): + conv_id = sample['number'] + for turn in sample['turn']: + turn_id = turn['number'] + automatic_rewritten_utterance = turn['automatic_rewritten_utterance'] + + q_id = f"{conv_id}_{turn_id}" + + if "provenance" in turn.keys(): + for passage_id in turn["provenance"]: + if any([valid_prefix in passage_id for valid_prefix in PASSAGE_ID_VALID_PREFIX]): + if ' ' in passage_id: + print(f"delete whitespace in passage_id: {passage_id}") + passage_id = passage_id.replace(' ', '') + + qid_pid_pair = f"{q_id}&{passage_id}" + if qid_pid_pair not in qid_pid_pair_list: + qid_pid_pair_list.append(qid_pid_pair) + fw.write(f"{q_id} {QUERY_TYPE} {passage_id} {RELEVANCE_SCORE}\n") + else: + print(f"skip appending duplicate qid&pid pair: qid = {q_id}, p_id = {passage_id}") + else: + print(f"exclude passage id: {passage_id}") + else: + print('no provenance for turn') + print(turn) + \ No newline at end of file diff --git a/pyserini/2cr/_base.py b/pyserini/2cr/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..8225e9c0c3d4026fc19f048b27aafae37bc4b277 --- /dev/null +++ b/pyserini/2cr/_base.py @@ -0,0 +1,95 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import subprocess + +fail_str = '\033[91m[FAIL]\033[0m' +ok_str = '[OK]' +okish_str = '\033[94m[OKish]\033[0m' + + +def run_command(cmd): + process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) + stdout, stderr = process.communicate() + stdout = stdout.decode('utf-8') + stderr = stderr.decode('utf-8') + + return stdout, stderr + + +def run_eval_and_return_metric(metric, eval_key, defs, runfile): + eval_cmd = f'python -m pyserini.eval.trec_eval {defs} {eval_key} {runfile}' + eval_stdout, eval_stderr = run_command(eval_cmd) + + for line in eval_stdout.split('\n'): + parts = line.split('\t') + if len(parts) == 3 and parts[1] == 'all': + return round(float(parts[2]), 4) + + return 0.0 + + +def run_dpr_retrieval_eval_and_return_metric(defs, json_file): + """Generate dpr retrieval evaluation scores + + Args: + defs: topk definitions (e.g., '--topk 5 20') + json_file: dpr retrieval json file + + Returns: + topk: a dictionary of topk scores (e.g., {"Top5": }) + """ + eval_cmd = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {json_file} {defs} ' + eval_stdout, eval_stderr = run_command(eval_cmd) + topk = {} + for line in eval_stdout.split('\n'): + parts = line.split('\t') + if len(parts) == 2 and 'accuracy' in parts[1]: + topk.update({parts[0]:round(float(parts[1][10:])*100, 4)}) + return topk + + +def convert_trec_run_to_dpr_retrieval_json(topics,index,runfile,output): + """Convert trec runfile to dpr retrieval json file + + Args: + topics: topics field + index: index field + runfile: input runfile + output: output jsonfile + + Returns: + exit status: exit status + """ + cmd = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics {topics} --index {index} --input {runfile} --output {output}' + return os.system(cmd) + + +def run_fusion(run_ls, output, k): + """run fusion command and return status code + + Args: + run_ls: a list of runfile paths + output: output path + k: topk value + + Returns: + status code: status code + """ + run_files = ' '.join(run_ls) + cmd = f'python -m pyserini.fusion --runs {run_files} --output {output} --k {k}' + return os.system(cmd) diff --git a/pyserini/2cr/msmarco-v1-doc.yaml b/pyserini/2cr/msmarco-v1-doc.yaml new file mode 100644 index 0000000000000000000000000000000000000000..29c15f83a4ecce9d5455ed2d037264fcbd99d1b5 --- /dev/null +++ b/pyserini/2cr/msmarco-v1-doc.yaml @@ -0,0 +1,539 @@ +conditions: + - name: bm25-doc-tuned + display: BM25 doc (k1=4.46, b=0.82) + display-html: BM25 doc (k1=4.46, b=0.82) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-slim --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2767 + R@1K: 0.9357 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2336 + nDCG@10: 0.5233 + R@1K: 0.6757 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3581 + nDCG@10: 0.5061 + R@1K: 0.7776 + - name: bm25-doc-default + display: BM25 doc (k1=0.9, b=0.4) + display-html: BM25 doc (k1=0.9, b=0.4) + display-row: "[1] — (1a)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-slim --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2299 + R@1K: 0.8856 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2434 + nDCG@10: 0.5176 + R@1K: 0.6966 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3793 + nDCG@10: 0.5286 + R@1K: 0.8085 + - name: bm25-doc-segmented-tuned + display: BM25 doc segmented (k1=2.16, b=0.61) + display-html: BM25 doc segmented (k1=2.16, b=0.61) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-slim --topics $topics --output $output --bm25 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2756 + R@1K: 0.9311 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2398 + nDCG@10: 0.5389 + R@1K: 0.6565 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3458 + nDCG@10: 0.5213 + R@1K: 0.7725 + - name: bm25-doc-segmented-default + display: BM25 doc segmented (k1=0.9, b=0.4) + display-html: BM25 doc segmented (k1=0.9, b=0.4) + display-row: "[1] — (1b)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-slim --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2684 + R@1K: 0.9178 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2449 + nDCG@10: 0.5302 + R@1K: 0.6871 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3586 + nDCG@10: 0.5281 + R@1K: 0.7755 + - name: bm25-rm3-doc-tuned + display: BM25+RM3 doc (k1=4.46, b=0.82) + display-html: BM25+RM3 doc (k1=4.46, b=0.82) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-full --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2227 + R@1K: 0.9303 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2638 + nDCG@10: 0.5526 + R@1K: 0.7188 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3610 + nDCG@10: 0.5195 + R@1K: 0.8180 + - name: bm25-rm3-doc-default + display: BM25+RM3 doc (k1=0.9, b=0.4) + display-html: BM25+RM3 doc (k1=0.9, b=0.4) + display-row: "[1] — (1c)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-full --topics $topics --output $output --bm25 --rm3 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.1618 + R@1K: 0.8783 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2773 + nDCG@10: 0.5174 + R@1K: 0.7507 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4015 + nDCG@10: 0.5254 + R@1K: 0.8259 + - name: bm25-rm3-doc-segmented-tuned + display: BM25+RM3 doc segmented (k1=2.16, b=0.61) + display-html: BM25+RM3 doc segmented (k1=2.16, b=0.61) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-full --topics $topics --output $output --bm25 --rm3 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2448 + R@1K: 0.9359 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2655 + nDCG@10: 0.5392 + R@1K: 0.7037 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3471 + nDCG@10: 0.5030 + R@1K: 0.8056 + - name: bm25-rm3-doc-segmented-default + display: BM25+RM3 doc segmented (k1=0.9, b=0.4) + display-html: BM25+RM3 doc segmented (k1=0.9, b=0.4) + display-row: "[1] — (1d)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-full --topics $topics --output $output --bm25 --rm3 --k1 0.9 --b 0.4 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2413 + R@1K: 0.9351 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2892 + nDCG@10: 0.5684 + R@1K: 0.7368 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3792 + nDCG@10: 0.5202 + R@1K: 0.8023 + - name: bm25-rocchio-doc-tuned + display: BM25+Rocchio doc (k1=4.46, b=0.82) + display-html: BM25+Rocchio doc (k1=4.46, b=0.82) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-full --topics $topics --output $output --bm25 --rocchio + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2242 + R@1K: 0.9314 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2657 + nDCG@10: 0.5584 + R@1K: 0.7299 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3628 + nDCG@10: 0.5199 + R@1K: 0.8217 + - name: bm25-rocchio-doc-default + display: BM25+Rocchio doc (k1=0.9, b=0.4) + display-html: BM25+Rocchio doc (k1=0.9, b=0.4) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-full --topics $topics --output $output --bm25 --rocchio --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.1624 + R@1K: 0.8789 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2811 + nDCG@10: 0.5256 + R@1K: 0.7546 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4089 + nDCG@10: 0.5192 + R@1K: 0.8273 + - name: bm25-rocchio-doc-segmented-tuned + display: BM25+Rocchio doc segmented (k1=2.16, b=0.61) + display-html: BM25+Rocchio doc segmented (k1=2.16, b=0.61) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-full --topics $topics --output $output --bm25 --rocchio --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2475 + R@1K: 0.9395 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2672 + nDCG@10: 0.5421 + R@1K: 0.7115 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3521 + nDCG@10: 0.4997 + R@1K: 0.8042 + - name: bm25-rocchio-doc-segmented-default + display: BM25+Rocchio doc segmented (k1=0.9, b=0.4) + display-html: BM25+Rocchio doc segmented (k1=0.9, b=0.4) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-full --topics $topics --output $output --bm25 --rocchio --k1 0.9 --b 0.4 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2447 + R@1K: 0.9351 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2889 + nDCG@10: 0.5570 + R@1K: 0.7423 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3830 + nDCG@10: 0.5226 + R@1K: 0.8102 + - name: bm25-d2q-t5-doc-tuned + display: BM25 w/ doc2query-T5 doc (k1=4.68, b=0.87) + display-html: BM25 w/ doc2query-T5 doc (k1=4.68, b=0.87) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-d2q-t5 --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3269 + R@1K: 0.9553 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2620 + nDCG@10: 0.5972 + R@1K: 0.6867 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4099 + nDCG@10: 0.5852 + R@1K: 0.8105 + - name: bm25-d2q-t5-doc-default + display: BM25 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-row: "[1] — (2a)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-d2q-t5 --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2880 + R@1K: 0.9259 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2700 + nDCG@10: 0.5968 + R@1K: 0.7190 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4230 + nDCG@10: 0.5885 + R@1K: 0.8403 + - name: bm25-d2q-t5-doc-segmented-tuned + display: BM25 w/ doc2query-T5 doc segmented (k1=2.56, b=0.59) + display-html: BM25 w/ doc2query-T5 doc segmented (k1=2.56, b=0.59) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-d2q-t5 --topics $topics --output $output --bm25 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3209 + R@1K: 0.9530 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2658 + nDCG@10: 0.6273 + R@1K: 0.6707 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4047 + nDCG@10: 0.5943 + R@1K: 0.7968 + - name: bm25-d2q-t5-doc-segmented-default + display: BM25 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-row: "[1] — (2b)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-d2q-t5 --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3179 + R@1K: 0.9490 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2798 + nDCG@10: 0.6119 + R@1K: 0.7165 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4150 + nDCG@10: 0.5957 + R@1K: 0.8046 + - name: bm25-rm3-d2q-t5-doc-tuned + display: BM25+RM3 w/ doc2query-T5 doc (k1=4.68, b=0.87) + display-html: BM25+RM3 w/ doc2query-T5 doc (k1=4.68, b=0.87) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2623 + R@1K: 0.9522 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2813 + nDCG@10: 0.6091 + R@1K: 0.7184 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4100 + nDCG@10: 0.5745 + R@1K: 0.8238 + - name: bm25-rm3-d2q-t5-doc-default + display: BM25+RM3 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-row: "[1] — (2c)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.1834 + R@1K: 0.9126 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.3045 + nDCG@10: 0.5904 + R@1K: 0.7737 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4230 + nDCG@10: 0.5427 + R@1K: 0.8631 + - name: bm25-rm3-d2q-t5-doc-segmented-tuned + display: BM25+RM3 w/ doc2query-T5 doc segmented (k1=2.56, b=0.59) + display-html: BM25+RM3 w/ doc2query-T5 doc segmented (k1=2.56, b=0.59) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2973 + R@1K: 0.9563 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2892 + nDCG@10: 0.6247 + R@1K: 0.7069 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4016 + nDCG@10: 0.5711 + R@1K: 0.8156 + - name: bm25-rm3-d2q-t5-doc-segmented-default + display: BM25+RM3 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-row: "[1] — (2d)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 --k1 0.9 --b 0.4 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.2803 + R@1K: 0.9551 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.3030 + nDCG@10: 0.6290 + R@1K: 0.7483 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.4271 + nDCG@10: 0.5851 + R@1K: 0.8266 + - name: unicoil-noexp-otf + display: "uniCOIL (noexp): otf" + display-html: "uniCOIL (noexp): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-unicoil-noexp --topics $topics --encoder castorini/unicoil-noexp-msmarco-passage --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3410 + R@1K: 0.9420 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2661 + nDCG@10: 0.6347 + R@1K: 0.6385 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3698 + nDCG@10: 0.5906 + R@1K: 0.7621 + - name: unicoil-noexp + display: "uniCOIL (noexp): pre-encoded" + display-html: "uniCOIL (noexp): pre-encoded queries" + display-row: "[1] — (3a)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-unicoil-noexp --topics $topics --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev-unicoil-noexp + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3409 + R@1K: 0.9420 + - topic_key: dl19-doc-unicoil-noexp + eval_key: dl19-doc + scores: + - MAP: 0.2665 + nDCG@10: 0.6349 + R@1K: 0.6391 + - topic_key: dl20-unicoil-noexp + eval_key: dl20-doc + scores: + - MAP: 0.3698 + nDCG@10: 0.5893 + R@1K: 0.7623 + - name: unicoil-otf + display: "uniCOIL (w/ doc2query-T5): otf" + display-html: "uniCOIL (w/ doc2query-T5): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-unicoil --topics $topics --encoder castorini/unicoil-msmarco-passage --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3532 + R@1K: 0.9546 + - topic_key: dl19-doc + eval_key: dl19-doc + scores: + - MAP: 0.2789 + nDCG@10: 0.6396 + R@1K: 0.6654 + - topic_key: dl20 + eval_key: dl20-doc + scores: + - MAP: 0.3881 + nDCG@10: 0.6030 + R@1K: 0.7866 + - name: unicoil + display: "uniCOIL (w/ doc2query-T5): pre-encoded" + display-html: "uniCOIL (w/ doc2query-T5): pre-encoded queries" + display-row: "[1] — (3b)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-doc-segmented-unicoil --topics $topics --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-doc-dev-unicoil + eval_key: msmarco-doc-dev + scores: + - MRR@10: 0.3531 + R@1K: 0.9546 + - topic_key: dl19-doc-unicoil + eval_key: dl19-doc + scores: + - MAP: 0.2789 + nDCG@10: 0.6396 + R@1K: 0.6652 + - topic_key: dl20-unicoil + eval_key: dl20-doc + scores: + - MAP: 0.3882 + nDCG@10: 0.6033 + R@1K: 0.7869 diff --git a/pyserini/2cr/msmarco-v1-passage.yaml b/pyserini/2cr/msmarco-v1-passage.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e604f9d035298f2c6b69addbf361c468bf597d14 --- /dev/null +++ b/pyserini/2cr/msmarco-v1-passage.yaml @@ -0,0 +1,543 @@ +conditions: + - name: bm25-rocchio-d2q-t5-tuned + display: BM25+Rocchio w/ doc2query-T5 (k1=2.18, b=0.86) + display-html: BM25+Rocchio w/ doc2query-T5 (k1=2.18, b=0.86) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-d2q-t5-docvectors --topics $topics --output $output --bm25 --rocchio + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.2395 + R@1K: 0.9535 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4339 + nDCG@10: 0.6559 + R@1K: 0.8465 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4376 + nDCG@10: 0.6224 + R@1K: 0.8641 + - name: bm25-rocchio-d2q-t5-default + display: BM25+Rocchio w/ doc2query-T5 (k1=0.9, b=0.4) + display-html: BM25+Rocchio w/ doc2query-T5 (k1=0.9, b=0.4) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-d2q-t5-docvectors --topics $topics --output $output --bm25 --rocchio --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.2158 + R@1K: 0.9467 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4469 + nDCG@10: 0.6538 + R@1K: 0.8855 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4246 + nDCG@10: 0.6102 + R@1K: 0.8675 + - name: bm25-rocchio-default + display: BM25+Rocchio (k1=0.9, b=0.4) + display-html: BM25+Rocchio (k1=0.9, b=0.4) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-full --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 --rocchio + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.1595 + R@1K: 0.8620 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3474 + nDCG@10: 0.5275 + R@1K: 0.8007 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.3115 + nDCG@10: 0.4910 + R@1K: 0.8156 + - name: bm25-rocchio-tuned + display: BM25+Rocchio (k1=0.82, b=0.68) + display-html: BM25+Rocchio (k1=0.82, b=0.68) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-full --topics $topics --output $output --bm25 --rocchio + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.1684 + R@1K: 0.8726 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3396 + nDCG@10: 0.5275 + R@1K: 0.7948 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.3120 + nDCG@10: 0.4908 + R@1K: 0.8327 + - name: distilbert-kd-tasb-otf + display: "DistilBERT KD TASB: otf" + display-html: "DistilBERT KD TASB: on-the-fly query inference" + display-row: "[4]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-distilbert-dot-tas_b-b256-bf --topics $topics --encoder sebastian-hofstaetter/distilbert-dot-tas_b-b256-msmarco --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3444 + R@1K: 0.9771 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4590 + nDCG@10: 0.7210 + R@1K: 0.8406 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4698 + nDCG@10: 0.6854 + R@1K: 0.8727 + - name: distilbert-kd-tasb + display: "DistilBERT KD TASB: pre-encoded" + display-html: "DistilBERT KD TASB: pre-encoded queries" + display-row: "[4]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-distilbert-dot-tas_b-b256-bf --topics $topics --encoded-queries distilbert_tas_b-$topics --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3444 + R@1K: 0.9771 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4590 + nDCG@10: 0.7210 + R@1K: 0.8406 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4698 + nDCG@10: 0.6854 + R@1K: 0.8727 + - name: distilbert-kd-otf + display: "DistilBERT KD: otf" + display-html: "DistilBERT KD: on-the-fly query inference" + display-row: "[3]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-distilbert-dot-margin_mse-T2-bf --topics $topics --encoder sebastian-hofstaetter/distilbert-dot-margin_mse-T2-msmarco --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3251 + R@1K: 0.9553 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4053 + nDCG@10: 0.6994 + R@1K: 0.7653 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4159 + nDCG@10: 0.6447 + R@1K: 0.7953 + - name: distilbert-kd + display: "DistilBERT KD: pre-encoded" + display-html: "DistilBERT KD: pre-encoded queries" + display-row: "[3]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-distilbert-dot-margin_mse-T2-bf --topics $topics --encoded-queries distilbert_kd-$topics --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3251 + R@1K: 0.9553 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4053 + nDCG@10: 0.6994 + R@1K: 0.7653 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4159 + nDCG@10: 0.6447 + R@1K: 0.7953 + - name: ance-otf + display: "ANCE: otf" + display-html: "ANCE: on-the-fly query inference" + display-row: "[2]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-ance-bf --topics $topics --encoder castorini/ance-msmarco-passage --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3302 + R@1K: 0.9587 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3710 + nDCG@10: 0.6452 + R@1K: 0.7554 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4076 + nDCG@10: 0.6458 + R@1K: 0.7764 + - name: ance + display: "ANCE: pre-encoded" + display-html: "ANCE: pre-encoded queries" + display-row: "[2]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-ance-bf --topics $topics --encoded-queries ance-$topics --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3302 + R@1K: 0.9584 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3710 + nDCG@10: 0.6452 + R@1K: 0.7554 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4076 + nDCG@10: 0.6458 + R@1K: 0.7764 + - name: bm25-tuned + display: BM25 (k1=0.82, b=0.68) + display-html: BM25 (k1=0.82, b=0.68) + command: python -m pyserini.search.lucene --topics $topics --index msmarco-v1-passage-slim --output $output --bm25 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.1875 + R@1K: 0.8573 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.2903 + nDCG@10: 0.4973 + R@1K: 0.7450 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.2876 + nDCG@10: 0.4876 + R@1K: 0.8031 + - name: bm25-rm3-tuned + display: BM25+RM3 (k1=0.82, b=0.68) + display-html: BM25+RM3 (k1=0.82, b=0.68) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-full --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.1646 + R@1K: 0.8704 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3339 + nDCG@10: 0.5147 + R@1K: 0.7950 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.3017 + nDCG@10: 0.4924 + R@1K: 0.8292 + - name: bm25-default + display: BM25 (k1=0.9, b=0.4) + display-html: BM25 (k1=0.9, b=0.4) + display-row: "[1] — (1a)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-slim --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.1840 + R@1K: 0.8526 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3013 + nDCG@10: 0.5058 + R@1K: 0.7501 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.2856 + nDCG@10: 0.4796 + R@1K: 0.7863 + - name: bm25-rm3-default + display: BM25+RM3 (k1=0.9, b=0.4) + display-html: BM25+RM3 (k1=0.9, b=0.4) + display-row: "[1] — (1b)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-full --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 --rm3 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.1566 + R@1K: 0.8606 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.3416 + nDCG@10: 0.5216 + R@1K: 0.8136 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.3006 + nDCG@10: 0.4896 + R@1K: 0.8236 + - name: bm25-d2q-t5-tuned + display: BM25 w/ doc2query-T5 (k1=2.18, b=0.86) + display-html: BM25 w/ doc2query-T5 (k1=2.18, b=0.86) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-d2q-t5 --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.2816 + R@1K: 0.9506 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4046 + nDCG@10: 0.6336 + R@1K: 0.8134 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4171 + nDCG@10: 0.6265 + R@1K: 0.8393 + - name: bm25-d2q-t5-default + display: BM25 w/ doc2query-T5 (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 (k1=0.9, b=0.4) + display-row: "[1] — (2a)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-d2q-t5 --topics $topics --output $output --bm25 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.2723 + R@1K: 0.9470 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4034 + nDCG@10: 0.6417 + R@1K: 0.8310 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4074 + nDCG@10: 0.6187 + R@1K: 0.8452 + - name: bm25-rm3-d2q-t5-tuned + display: BM25+RM3 w/ doc2query-T5 (k1=2.18, b=0.86) + display-html: BM25+RM3 w/ doc2query-T5 (k1=2.18, b=0.86) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.2382 + R@1K: 0.9528 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4377 + nDCG@10: 0.6537 + R@1K: 0.8443 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4348 + nDCG@10: 0.6235 + R@1K: 0.8605 + - name: bm25-rm3-d2q-t5-default + display: BM25+RM3 w/ doc2query-T5 (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 (k1=0.9, b=0.4) + display-row: "[1] — (2b)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 --k1 0.9 --b 0.4 + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.2139 + R@1K: 0.9460 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4483 + nDCG@10: 0.6586 + R@1K: 0.8863 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4286 + nDCG@10: 0.6131 + R@1K: 0.8700 + - name: unicoil-otf + display: "uniCOIL (w/ doc2query-T5): otf" + display-html: "uniCOIL (w/ doc2query-T5): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-unicoil --topics $topics --encoder castorini/unicoil-msmarco-passage --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3509 + R@1K: 0.9581 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4617 + nDCG@10: 0.7027 + R@1K: 0.8291 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4429 + nDCG@10: 0.6745 + R@1K: 0.8433 + - name: unicoil + display: "uniCOIL (w/ doc2query-T5): pre-encoded" + display-html: "uniCOIL (w/ doc2query-T5): pre-encoded queries" + display-row: "[1] — (3b)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-unicoil --topics $topics --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-passage-dev-subset-unicoil + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3516 + R@1K: 0.9582 + - topic_key: dl19-passage-unicoil + eval_key: dl19-passage + scores: + - MAP: 0.4612 + nDCG@10: 0.7024 + R@1K: 0.8292 + - topic_key: dl20-unicoil + eval_key: dl20-passage + scores: + - MAP: 0.4430 + nDCG@10: 0.6745 + R@1K: 0.8430 + - name: unicoil-noexp-otf + display: "uniCOIL (noexp): otf" + display-html: "uniCOIL (noexp): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-unicoil-noexp --topics $topics --encoder castorini/unicoil-noexp-msmarco-passage --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3153 + R@1K: 0.9239 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4033 + nDCG@10: 0.6434 + R@1K: 0.7752 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4022 + nDCG@10: 0.6524 + R@1K: 0.7861 + - name: unicoil-noexp + display: "uniCOIL (noexp): pre-encoded" + display-html: "uniCOIL (noexp): pre-encoded queries" + display-row: "[1] — (3a)" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v1-passage-unicoil-noexp --topics $topics --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-passage-dev-subset-unicoil-noexp + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3153 + R@1K: 0.9239 + - topic_key: dl19-passage-unicoil-noexp + eval_key: dl19-passage + scores: + - MAP: 0.4033 + nDCG@10: 0.6433 + R@1K: 0.7752 + - topic_key: dl20-unicoil-noexp + eval_key: dl20-passage + scores: + - MAP: 0.4021 + nDCG@10: 0.6523 + R@1K: 0.7861 + - name: tct_colbert-v2-hnp-otf + display: "TCT_ColBERT-V2-HN+: otf" + display-html: "TCT_ColBERT-V2-HN+: on-the-fly query inference" + display-row: "[5]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-tct_colbert-v2-hnp-bf --topics $topics --encoder castorini/tct_colbert-v2-hnp-msmarco --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3584 + R@1K: 0.9695 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4469 + nDCG@10: 0.7204 + R@1K: 0.8261 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4754 + nDCG@10: 0.6882 + R@1K: 0.8429 + - name: tct_colbert-v2-hnp + display: "TCT_ColBERT-V2-HN+: pre-encoded" + display-html: "TCT_ColBERT-V2-HN+: pre-encoded queries" + display-row: "[5]" + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --index msmarco-passage-tct_colbert-v2-hnp-bf --topics $topics --encoded-queries tct_colbert-v2-hnp-$topics --output $output + topics: + - topic_key: msmarco-passage-dev-subset + eval_key: msmarco-passage-dev-subset + scores: + - MRR@10: 0.3584 + R@1K: 0.9695 + - topic_key: dl19-passage + eval_key: dl19-passage + scores: + - MAP: 0.4469 + nDCG@10: 0.7204 + R@1K: 0.8261 + - topic_key: dl20 + eval_key: dl20-passage + scores: + - MAP: 0.4754 + nDCG@10: 0.6882 + R@1K: 0.8429 diff --git a/pyserini/2cr/msmarco-v2-doc.yaml b/pyserini/2cr/msmarco-v2-doc.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a3b5699d55cf393ef843de787a54f3609ed50494 --- /dev/null +++ b/pyserini/2cr/msmarco-v2-doc.yaml @@ -0,0 +1,287 @@ +conditions: + - name: bm25-doc-default + display: BM25 doc (k1=0.9, b=0.4) + display-html: BM25 doc (k1=0.9, b=0.4) + display-row: (1a) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-slim --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.1572 + R@1K: 0.8054 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.1659 + R@1K: 0.8029 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2126 + nDCG@10: 0.5116 + MRR@100: 0.8367 + R@100: 0.3195 + R@1K: 0.6739 + - name: bm25-doc-segmented-default + display: BM25 doc segmented (k1=0.9, b=0.4) + display-html: BM25 doc segmented (k1=0.9, b=0.4) + display-row: (1b) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-slim --topics $topics --output $output --bm25 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.1896 + R@1K: 0.8542 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.1930 + R@1K: 0.8549 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2436 + nDCG@10: 0.5776 + MRR@100: 0.8937 + R@100: 0.3478 + R@1K: 0.6930 + - name: bm25-rm3-doc-default + display: BM25+RM3 doc (k1=0.9, b=0.4) + display-html: BM25+RM3 doc (k1=0.9, b=0.4) + display-row: (1c) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-full --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.0974 + R@1K: 0.7699 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.1033 + R@1K: 0.7736 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2452 + nDCG@10: 0.5304 + MRR@100: 0.7914 + R@100: 0.3376 + R@1K: 0.7341 + - name: bm25-rm3-doc-segmented-default + display: BM25+RM3 doc segmented (k1=0.9, b=0.4) + display-html: BM25+RM3 doc segmented (k1=0.9, b=0.4) + display-row: (1d) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-full --topics $topics --output $output --bm25 --rm3 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.1660 + R@1K: 0.8608 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.1702 + R@1K: 0.8639 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2936 + nDCG@10: 0.6189 + MRR@100: 0.9076 + R@100: 0.3890 + R@1K: 0.7678 + - name: bm25-d2q-t5-doc-default + display: BM25 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-row: (2a) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-d2q-t5 --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.2011 + R@1K: 0.8614 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.2012 + R@1K: 0.8568 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2387 + nDCG@10: 0.5792 + MRR@100: 0.8866 + R@100: 0.3443 + R@1K: 0.7066 + - name: bm25-d2q-t5-doc-segmented-default + display: BM25 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-row: (2b) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-d2q-t5 --topics $topics --output $output --bm25 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.2226 + R@1K: 0.8982 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.2234 + R@1K: 0.8952 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2683 + nDCG@10: 0.6289 + MRR@100: 0.9454 + R@100: 0.3656 + R@1K: 0.7202 + - name: bm25-rm3-d2q-t5-doc-default + display: BM25+RM3 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 doc (k1=0.9, b=0.4) + display-row: (2c) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.1141 + R@1K: 0.8191 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.1170 + R@1K: 0.8247 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2611 + nDCG@10: 0.5375 + MRR@100: 0.8255 + R@100: 0.3580 + R@1K: 0.7574 + - name: bm25-rm3-d2q-t5-doc-segmented-default + display: BM25+RM3 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 doc segmented (k1=0.9, b=0.4) + display-row: (2d) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.1975 + R@1K: 0.9002 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.1978 + R@1K: 0.8972 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.3191 + nDCG@10: 0.6559 + MRR@100: 0.8989 + R@100: 0.4131 + R@1K: 0.7948 + - name: unicoil-noexp + display: "uniCOIL (noexp): pre-encoded" + display-html: "uniCOIL (noexp): pre-encoded queries" + display-row: (3a) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-unicoil-noexp-0shot --topics $topics --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev-unicoil-noexp + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.2231 + R@1K: 0.8987 + - topic_key: msmarco-v2-doc-dev2-unicoil-noexp + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.2314 + R@1K: 0.8995 + - topic_key: dl21-unicoil-noexp + eval_key: dl21-doc + scores: + - MAP@100: 0.2587 + nDCG@10: 0.6495 + MRR@100: 0.9282 + R@100: 0.3563 + R@1K: 0.6787 + - name: unicoil-noexp-otf + display: "uniCOIL (noexp): otf" + display-html: "uniCOIL (noexp): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-unicoil-noexp-0shot --topics $topics --encoder castorini/unicoil-noexp-msmarco-passage --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.2232 + R@1K: 0.8987 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.2314 + R@1K: 0.8993 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2589 + nDCG@10: 0.6501 + MRR@100: 0.9282 + R@100: 0.3574 + R@1K: 0.6782 + - name: unicoil + display: "uniCOIL (w/ doc2query-T5): pre-encoded" + display-html: "uniCOIL (w/ doc2query-T5): pre-encoded queries" + display-row: (3b) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-unicoil-0shot --topics $topics --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev-unicoil + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.2419 + R@1K: 0.9122 + - topic_key: msmarco-v2-doc-dev2-unicoil + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.2445 + R@1K: 0.9172 + - topic_key: dl21-unicoil + eval_key: dl21-doc + scores: + - MAP@100: 0.2718 + nDCG@10: 0.6783 + MRR@100: 0.9684 + R@100: 0.3700 + R@1K: 0.7069 + - name: unicoil-otf + display: "uniCOIL (w/ doc2query-T5): otf" + display-html: "uniCOIL (w/ doc2query-T5): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-doc-segmented-unicoil-0shot --topics $topics --encoder castorini/unicoil-msmarco-passage --output $output --impact --hits 10000 --max-passage-hits 1000 --max-passage + topics: + - topic_key: msmarco-v2-doc-dev + eval_key: msmarco-v2-doc-dev + scores: + - MRR@100: 0.2419 + R@1K: 0.9120 + - topic_key: msmarco-v2-doc-dev2 + eval_key: msmarco-v2-doc-dev2 + scores: + - MRR@100: 0.2447 + R@1K: 0.9174 + - topic_key: dl21 + eval_key: dl21-doc + scores: + - MAP@100: 0.2720 + nDCG@10: 0.6782 + MRR@100: 0.9684 + R@100: 0.3702 + R@1K: 0.7071 diff --git a/pyserini/2cr/msmarco-v2-passage.yaml b/pyserini/2cr/msmarco-v2-passage.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9322522d1933c5c64dbae750d834d58a15ef9250 --- /dev/null +++ b/pyserini/2cr/msmarco-v2-passage.yaml @@ -0,0 +1,287 @@ +conditions: + - name: bm25-default + display: BM25 original passage (k1=0.9, b=0.4) + display-html: BM25 original passage (k1=0.9, b=0.4) + display-row: (1a) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-slim --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.0719 + R@1K: 0.5733 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.0802 + R@1K: 0.5839 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.1357 + nDCG@10: 0.4458 + MRR@100: 0.5060 + R@100: 0.3261 + R@1K: 0.6149 + - name: bm25-augmented-default + display: BM25 augmented passage (k1=0.9, b=0.4) + display-html: BM25 augmented passage (k1=0.9, b=0.4) + display-row: (1b) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-augmented-slim --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.0872 + R@1K: 0.6925 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.0917 + R@1K: 0.6933 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.0977 + nDCG@10: 0.3977 + MRR@100: 0.5303 + R@100: 0.2709 + R@1K: 0.5835 + - name: bm25-rm3-default + display: BM25+RM3 original passage (k1=0.9, b=0.4) + display-html: BM25+RM3 original passage (k1=0.9, b=0.4) + display-row: (1c) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-full --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.0630 + R@1K: 0.5947 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.0659 + R@1K: 0.6062 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.1666 + nDCG@10: 0.4455 + MRR@100: 0.5202 + R@100: 0.3499 + R@1K: 0.6616 + - name: bm25-rm3-augmented-default + display: BM25+RM3 augmented passage (k1=0.9, b=0.4) + display-html: BM25+RM3 augmented passage (k1=0.9, b=0.4) + display-row: (1d) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-augmented-full --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.0667 + R@1K: 0.6857 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.0700 + R@1K: 0.6826 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.1050 + nDCG@10: 0.3869 + MRR@100: 0.4915 + R@100: 0.2807 + R@1K: 0.6298 + - name: bm25-d2q-t5-default + display: BM25 w/ doc2query-T5 original passage (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 original passage (k1=0.9, b=0.4) + display-row: (2a) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-d2q-t5 --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.1072 + R@1K: 0.7083 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.1123 + R@1K: 0.7151 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.1874 + nDCG@10: 0.4816 + MRR@100: 0.6848 + R@100: 0.4076 + R@1K: 0.7078 + - name: bm25-d2q-t5-augmented-default + display: BM25 w/ doc2query-T5 augmented passage (k1=0.9, b=0.4) + display-html: BM25 w/ doc2query-T5 augmented passage (k1=0.9, b=0.4) + display-row: (2b) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-augmented-d2q-t5 --topics $topics --output $output --bm25 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.1172 + R@1K: 0.7647 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.1170 + R@1K: 0.7659 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.1649 + nDCG@10: 0.4702 + MRR@100: 0.6391 + R@100: 0.3883 + R@1K: 0.6962 + - name: bm25-rm3-d2q-t5-default + display: BM25+RM3 w/ doc2query-T5 original passage (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 original passage (k1=0.9, b=0.4) + display-row: (2c) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.0947 + R@1K: 0.7181 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.0984 + R@1K: 0.7222 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.2285 + nDCG@10: 0.5098 + MRR@100: 0.6548 + R@100: 0.4499 + R@1K: 0.7537 + - name: bm25-rm3-d2q-t5-augmented-default + display: BM25+RM3 w/ doc2query-T5 augmented passage (k1=0.9, b=0.4) + display-html: BM25+RM3 w/ doc2query-T5 augmented passage (k1=0.9, b=0.4) + display-row: (2d) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-augmented-d2q-t5-docvectors --topics $topics --output $output --bm25 --rm3 + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.0883 + R@1K: 0.7607 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.0904 + R@1K: 0.7649 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.1930 + nDCG@10: 0.4812 + MRR@100: 0.5958 + R@100: 0.4321 + R@1K: 0.7672 + - name: unicoil + display: "uniCOIL (w/ doc2query-T5): pre-encoded" + display-html: "uniCOIL (w/ doc2query-T5): pre-encoded queries" + display-row: (3b) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-unicoil-0shot --topics $topics --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-v2-passage-dev-unicoil + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.1499 + R@1K: 0.7616 + - topic_key: msmarco-v2-passage-dev2-unicoil + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.1577 + R@1K: 0.7671 + - topic_key: dl21-unicoil + eval_key: dl21-passage + scores: + - MAP@100: 0.2538 + nDCG@10: 0.6159 + MRR@100: 0.7311 + R@100: 0.4731 + R@1K: 0.7551 + - name: unicoil-otf + display: "uniCOIL (w/ doc2query-T5): otf" + display-html: "uniCOIL (w/ doc2query-T5): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-unicoil-0shot --topics $topics --encoder castorini/unicoil-msmarco-passage --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.1501 + R@1K: 0.7613 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.1576 + R@1K: 0.7676 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.2539 + nDCG@10: 0.6160 + MRR@100: 0.7311 + R@100: 0.4723 + R@1K: 0.7560 + - name: unicoil-noexp + display: "uniCOIL (noexp): pre-encoded" + display-html: "uniCOIL (noexp): pre-encoded queries" + display-row: (3a) + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-unicoil-noexp-0shot --topics $topics --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-v2-passage-dev-unicoil-noexp + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.1342 + R@1K: 0.7010 + - topic_key: msmarco-v2-passage-dev2-unicoil-noexp + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.1385 + R@1K: 0.7114 + - topic_key: dl21-unicoil-noexp + eval_key: dl21-passage + scores: + - MAP@100: 0.2193 + nDCG@10: 0.5756 + MRR@100: 0.6991 + R@100: 0.4246 + R@1K: 0.6897 + - name: unicoil-noexp-otf + display: "uniCOIL (noexp): otf" + display-html: "uniCOIL (noexp): on-the-fly query inference" + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --index msmarco-v2-passage-unicoil-noexp-0shot --topics $topics --encoder castorini/unicoil-noexp-msmarco-passage --output $output --hits 1000 --impact + topics: + - topic_key: msmarco-v2-passage-dev + eval_key: msmarco-v2-passage-dev + scores: + - MRR@100: 0.1343 + R@1K: 0.7010 + - topic_key: msmarco-v2-passage-dev2 + eval_key: msmarco-v2-passage-dev2 + scores: + - MRR@100: 0.1385 + R@1K: 0.7114 + - topic_key: dl21 + eval_key: dl21-passage + scores: + - MAP@100: 0.2194 + nDCG@10: 0.5759 + MRR@100: 0.6991 + R@100: 0.4247 + R@1K: 0.6893 diff --git a/pyserini/2cr/msmarco.py b/pyserini/2cr/msmarco.py new file mode 100644 index 0000000000000000000000000000000000000000..be269db5b8269fd039bf113dc575e2583ae06358 --- /dev/null +++ b/pyserini/2cr/msmarco.py @@ -0,0 +1,575 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import math +import os +import re +import sys +import time +from collections import defaultdict +from string import Template + +import pkg_resources +import yaml + +from ._base import run_eval_and_return_metric, ok_str, okish_str, fail_str + +# The models: the rows of the results table will be ordered this way. +models = { + 'msmarco-v1-passage': + ['bm25-default', + 'bm25-rm3-default', + 'bm25-rocchio-default', + '', + 'bm25-tuned', + 'bm25-rm3-tuned', + 'bm25-rocchio-tuned', + '', + 'bm25-d2q-t5-default', + 'bm25-rm3-d2q-t5-default', + 'bm25-rocchio-d2q-t5-default', + '', + 'bm25-d2q-t5-tuned', + 'bm25-rm3-d2q-t5-tuned', + 'bm25-rocchio-d2q-t5-tuned', + '', + 'unicoil-noexp', + 'unicoil', + '', + 'unicoil-noexp-otf', + 'unicoil-otf', + '', + 'ance', + 'distilbert-kd', + 'distilbert-kd-tasb', + 'tct_colbert-v2-hnp', + '', + 'ance-otf', + 'distilbert-kd-otf', + 'distilbert-kd-tasb-otf', + 'tct_colbert-v2-hnp-otf'], + 'msmarco-v1-doc': + ['bm25-doc-default', + 'bm25-doc-segmented-default', + 'bm25-rm3-doc-default', + 'bm25-rm3-doc-segmented-default', + 'bm25-rocchio-doc-default', + 'bm25-rocchio-doc-segmented-default', + '', + 'bm25-doc-tuned', + 'bm25-doc-segmented-tuned', + 'bm25-rm3-doc-tuned', + 'bm25-rm3-doc-segmented-tuned', + 'bm25-rocchio-doc-tuned', + 'bm25-rocchio-doc-segmented-tuned', + '', + 'bm25-d2q-t5-doc-default', + 'bm25-d2q-t5-doc-segmented-default', + 'bm25-rm3-d2q-t5-doc-default', + 'bm25-rm3-d2q-t5-doc-segmented-default', + '', + 'bm25-d2q-t5-doc-tuned', + 'bm25-d2q-t5-doc-segmented-tuned', + 'bm25-rm3-d2q-t5-doc-tuned', + 'bm25-rm3-d2q-t5-doc-segmented-tuned', + '', + 'unicoil-noexp', + 'unicoil', + '', + 'unicoil-noexp-otf', + 'unicoil-otf'], + 'msmarco-v2-passage': + ['bm25-default', + 'bm25-augmented-default', + 'bm25-rm3-default', + 'bm25-rm3-augmented-default', + '', + 'bm25-d2q-t5-default', + 'bm25-d2q-t5-augmented-default', + 'bm25-rm3-d2q-t5-default', + 'bm25-rm3-d2q-t5-augmented-default', + '', + 'unicoil-noexp', + 'unicoil', + '', + 'unicoil-noexp-otf', + 'unicoil-otf'], + 'msmarco-v2-doc': + ['bm25-doc-default', + 'bm25-doc-segmented-default', + 'bm25-rm3-doc-default', + 'bm25-rm3-doc-segmented-default', + '', + 'bm25-d2q-t5-doc-default', + 'bm25-d2q-t5-doc-segmented-default', + 'bm25-rm3-d2q-t5-doc-default', + 'bm25-rm3-d2q-t5-doc-segmented-default', + '', + 'unicoil-noexp', + 'unicoil', + '', + 'unicoil-noexp-otf', + 'unicoil-otf' + ] +} + +trec_eval_metric_definitions = { + 'msmarco-v1-passage': { + 'msmarco-passage-dev-subset': { + 'MRR@10': '-c -M 10 -m recip_rank', + 'R@1K': '-c -m recall.1000' + }, + 'dl19-passage': { + 'MAP': '-c -l 2 -m map', + 'nDCG@10': '-c -m ndcg_cut.10', + 'R@1K': '-c -l 2 -m recall.1000' + }, + 'dl20-passage': { + 'MAP': '-c -l 2 -m map', + 'nDCG@10': '-c -m ndcg_cut.10', + 'R@1K': '-c -l 2 -m recall.1000' + } + }, + 'msmarco-v1-doc': { + 'msmarco-doc-dev': { + 'MRR@10': '-c -M 100 -m recip_rank', + 'R@1K': '-c -m recall.1000' + }, + 'dl19-doc': { + 'MAP': '-c -M 100 -m map', + 'nDCG@10': '-c -m ndcg_cut.10', + 'R@1K': '-c -m recall.1000' + }, + 'dl20-doc': { + 'MAP': '-c -M 100 -m map', + 'nDCG@10': '-c -m ndcg_cut.10', + 'R@1K': '-c -m recall.1000' + } + }, + 'msmarco-v2-passage': { + 'msmarco-v2-passage-dev': { + 'MRR@100': '-c -M 100 -m recip_rank', + 'R@1K': '-c -m recall.1000' + }, + 'msmarco-v2-passage-dev2': { + 'MRR@100': '-c -M 100 -m recip_rank', + 'R@1K': '-c -m recall.1000' + }, + 'dl21-passage': { + 'MAP@100': '-c -l 2 -M 100 -m map', + 'nDCG@10': '-c -m ndcg_cut.10', + 'MRR@100': '-c -l 2 -M 100 -m recip_rank', + 'R@100': '-c -l 2 -m recall.100', + 'R@1K': '-c -l 2 -m recall.1000' + } + }, + 'msmarco-v2-doc': { + 'msmarco-v2-doc-dev': { + 'MRR@100': '-c -M 100 -m recip_rank', + 'R@1K': '-c -m recall.1000' + }, + 'msmarco-v2-doc-dev2': { + 'MRR@100': '-c -M 100 -m recip_rank', + 'R@1K': '-c -m recall.1000' + }, + 'dl21-doc': { + 'MAP@100': '-c -M 100 -m map', + 'nDCG@10': '-c -m ndcg_cut.10', + 'MRR@100': '-c -M 100 -m recip_rank', + 'R@100': '-c -m recall.100', + 'R@1K': '-c -m recall.1000' + } + } +} + + +def find_msmarco_table_topic_set_key_v1(topic_key): + # E.g., we want to map variants like 'dl19-passage-unicoil' and 'dl19-passage' both into 'dl19' + key = '' + if topic_key.startswith('dl19'): + key = 'dl19' + elif topic_key.startswith('dl20'): + key = 'dl20' + elif topic_key.startswith('msmarco'): + key = 'dev' + + return key + + +def find_msmarco_table_topic_set_key_v2(topic_key): + key = '' + if topic_key.endswith('dev') or topic_key.endswith('dev-unicoil') or topic_key.endswith('dev-unicoil-noexp'): + key = 'dev' + elif topic_key.endswith('dev2') or topic_key.endswith('dev2-unicoil') or topic_key.endswith('dev2-unicoil-noexp'): + key = 'dev2' + elif topic_key.startswith('dl21'): + key = 'dl21' + + return key + + +def format_command(raw): + # After "--output foo.txt" are additional options like "--hits 1000 --impact". + # We want these on a separate line for better readability, but note that sometimes that might + # be the end of the command, in which case we don't want to add an extra line break. + return raw.replace('--topics', '\\\n --topics') \ + .replace('--threads', '\\\n --threads')\ + .replace('--index', '\\\n --index')\ + .replace('--output', '\\\n --output')\ + .replace('.txt ', '.txt \\\n ') + + +def read_file(f): + fin = open(f, 'r') + text = fin.read() + fin.close() + + return text + + +def list_conditions(args): + for condition in models[args.collection]: + if condition == '': + continue + print(condition) + + +def generate_report(args): + yaml_file = pkg_resources.resource_filename(__name__, f'{args.collection}.yaml') + + if args.collection == 'msmarco-v1-passage': + html_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_v1_passage.template')) + row_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_row_v1.template')) + elif args.collection == 'msmarco-v1-doc': + html_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_v1_doc.template')) + row_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_row_v1.template')) + elif args.collection == 'msmarco-v2-passage': + html_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_v2_passage.template')) + row_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_row_v2.template')) + elif args.collection == 'msmarco-v2-doc': + html_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_v2_doc.template')) + row_template = read_file(pkg_resources.resource_filename(__name__, 'msmarco_html_row_v2.template')) + else: + raise ValueError(f'Unknown corpus: {args.collection}') + + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + commands = defaultdict(lambda: defaultdict(lambda: '')) + eval_commands = defaultdict(lambda: defaultdict(lambda: '')) + + table_keys = {} + row_ids = {} + + with open(yaml_file) as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + display = condition['display-html'] + row_id = condition['display-row'] if 'display-row' in condition else '' + cmd_template = condition['command'] + + row_ids[name] =row_id + table_keys[name] = display + + for topic_set in condition['topics']: + topic_key = topic_set['topic_key'] + eval_key = topic_set['eval_key'] + + if args.collection == 'msmarco-v1-passage' or args.collection == 'msmarco-v1-doc': + short_topic_key = find_msmarco_table_topic_set_key_v1(topic_key) + else: + short_topic_key = find_msmarco_table_topic_set_key_v2(topic_key) + + runfile = f'run.{args.collection}.{name}.{short_topic_key}.txt' + cmd = Template(cmd_template).substitute(topics=topic_key, output=runfile) + commands[name][short_topic_key] = cmd + + for expected in topic_set['scores']: + for metric in expected: + eval_cmd = f'python -m pyserini.eval.trec_eval ' + \ + f'{trec_eval_metric_definitions[args.collection][eval_key][metric]} {eval_key} {runfile}' + eval_commands[name][short_topic_key] += eval_cmd + '\n' + table[name][short_topic_key][metric] = expected[metric] + + if args.collection == 'msmarco-v1-passage' or args.collection == 'msmarco-v1-doc': + row_cnt = 1 + + html_rows = [] + for name in models[args.collection]: + if not name: + # Add blank row for spacing + html_rows.append('') + continue + s = Template(row_template) + s = s.substitute(row_cnt=row_cnt, + condition_name=table_keys[name], + row=row_ids[name], + s1=f'{table[name]["dl19"]["MAP"]:.4f}' if table[name]['dl19']['MAP'] != 0 else '-', + s2=f'{table[name]["dl19"]["nDCG@10"]:.4f}' if table[name]['dl19']['nDCG@10'] != 0 else '-', + s3=f'{table[name]["dl19"]["R@1K"]:.4f}' if table[name]['dl19']['R@1K'] != 0 else '-', + s4=f'{table[name]["dl20"]["MAP"]:.4f}' if table[name]['dl20']['MAP'] != 0 else '-', + s5=f'{table[name]["dl20"]["nDCG@10"]:.4f}' if table[name]['dl20']['nDCG@10'] != 0 else '-', + s6=f'{table[name]["dl20"]["R@1K"]:.4f}' if table[name]['dl20']['R@1K'] != 0 else '-', + s7=f'{table[name]["dev"]["MRR@10"]:.4f}' if table[name]['dev']['MRR@10'] != 0 else '-', + s8=f'{table[name]["dev"]["R@1K"]:.4f}' if table[name]['dev']['R@1K'] != 0 else '-', + cmd1=format_command(commands[name]['dl19']), + cmd2=format_command(commands[name]['dl20']), + cmd3=format_command(commands[name]['dev']), + eval_cmd1=eval_commands[name]['dl19'], + eval_cmd2=eval_commands[name]['dl20'], + eval_cmd3=eval_commands[name]['dev'] + ) + + # If we don't have scores, we want to remove the commands also. Use simple regexp substitution. + if table[name]['dl19']['MAP'] == 0: + s = re.sub(re.compile('Command to generate run on TREC 2019 queries:.*?', + re.MULTILINE | re.DOTALL), + 'Not available.', s) + if table[name]['dl20']['MAP'] == 0: + s = re.sub(re.compile('Command to generate run on TREC 2020 queries:.*?', + re.MULTILINE | re.DOTALL), + 'Not available.', s) + if table[name]['dev']['MRR@10'] == 0: + s = re.sub(re.compile('Command to generate run on dev queries:.*?', + re.MULTILINE | re.DOTALL), + 'Not available.', s) + + html_rows.append(s) + row_cnt += 1 + + all_rows = '\n'.join(html_rows) + if args.collection == 'msmarco-v1-passage': + full_name = 'MS MARCO V1 Passage' + else: + full_name = 'MS MARCO V1 Document' + + with open(args.output, 'w') as out: + out.write(Template(html_template).substitute(title=full_name, rows=all_rows)) + else: + row_cnt = 1 + + html_rows = [] + for name in models[args.collection]: + if not name: + # Add blank row for spacing + html_rows.append('') + continue + s = Template(row_template) + s = s.substitute(row_cnt=row_cnt, + condition_name=table_keys[name], + row=row_ids[name], + s1=f'{table[name]["dl21"]["MAP@100"]:.4f}', + s2=f'{table[name]["dl21"]["nDCG@10"]:.4f}', + s3=f'{table[name]["dl21"]["MRR@100"]:.4f}', + s4=f'{table[name]["dl21"]["R@100"]:.4f}', + s5=f'{table[name]["dl21"]["R@1K"]:.4f}', + s6=f'{table[name]["dev"]["MRR@100"]:.4f}', + s7=f'{table[name]["dev"]["R@1K"]:.4f}', + s8=f'{table[name]["dev2"]["MRR@100"]:.4f}', + s9=f'{table[name]["dev2"]["R@1K"]:.4f}', + cmd1=format_command(commands[name]['dl21']), + cmd2=format_command(commands[name]['dev']), + cmd3=format_command(commands[name]['dev2']), + eval_cmd1=eval_commands[name]['dl21'], + eval_cmd2=eval_commands[name]['dev'], + eval_cmd3=eval_commands[name]['dev2'] + ) + html_rows.append(s) + row_cnt += 1 + + all_rows = '\n'.join(html_rows) + if args.collection == 'msmarco-v2-passage': + full_name = 'MS MARCO V2 Passage' + else: + full_name = 'MS MARCO V2 Document' + + with open(args.output, 'w') as out: + out.write(Template(html_template).substitute(title=full_name, rows=all_rows)) + + +def run_conditions(args): + start = time.time() + + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + table_keys = {} + + yaml_file = pkg_resources.resource_filename(__name__, f'{args.collection}.yaml') + + with open(yaml_file) as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + # Either we're running all conditions, or running only the condition specified in --condition + if not args.all: + if not condition['name'] == args.condition: + continue + + name = condition['name'] + display = condition['display'] + cmd_template = condition['command'] + + print(f'# Running condition "{name}": {display}\n') + for topic_set in condition['topics']: + topic_key = topic_set['topic_key'] + eval_key = topic_set['eval_key'] + + short_topic_key = '' + if args.collection == 'msmarco-v1-passage' or args.collection == 'msmarco-v1-doc': + short_topic_key = find_msmarco_table_topic_set_key_v1(topic_key) + else: + short_topic_key = find_msmarco_table_topic_set_key_v2(topic_key) + + print(f' - topic_key: {topic_key}') + + runfile = os.path.join(args.directory, f'run.{args.collection}.{name}.{short_topic_key}.txt') + cmd = Template(cmd_template).substitute(topics=topic_key, output=runfile) + + if args.display_commands: + print(f'\n```bash\n{format_command(cmd)}\n```\n') + + if not os.path.exists(runfile): + if not args.dry_run: + os.system(cmd) + + for expected in topic_set['scores']: + for metric in expected: + table_keys[name] = display + if not args.skip_eval: + # If the runfile doesn't exist, we can't evaluate. + # This would be the case if --dry-run were set. + if not os.path.exists(runfile): + continue + + score = float( + run_eval_and_return_metric( + metric, + eval_key, + trec_eval_metric_definitions[args.collection][eval_key][metric], + runfile)) + if math.isclose(score, float(expected[metric])): + result_str = ok_str + # Flaky test: small difference on my iMac Studio + elif args.collection == 'v1-passage' and topic_key == 'msmarco-passage-dev-subset' and \ + name == 'ance-otf' and math.isclose(score, float(expected[metric]), abs_tol=2e-4): + result_str = okish_str + else: + result_str = fail_str + f' expected {expected[metric]:.4f}' + print(f' {metric:7}: {score:.4f} {result_str}') + table[name][short_topic_key][metric] = score + else: + table[name][short_topic_key][metric] = expected[metric] + + if not args.skip_eval: + print('') + + if args.collection == 'msmarco-v1-passage' or args.collection == 'msmarco-v1-doc': + print(' ' * 69 + 'TREC 2019' + ' ' * 16 + 'TREC 2020' + ' ' * 12 + 'MS MARCO dev') + print(' ' * 62 + 'MAP nDCG@10 R@1K MAP nDCG@10 R@1K MRR@10 R@1K') + print(' ' * 62 + '-' * 22 + ' ' + '-' * 22 + ' ' + '-' * 14) + + if args.condition: + # If we've used --condition to specify a specific condition, print out only that row. + name = args.condition + print(f'{table_keys[name]:60}' + + f'{table[name]["dl19"]["MAP"]:8.4f}{table[name]["dl19"]["nDCG@10"]:8.4f}{table[name]["dl19"]["R@1K"]:8.4f} ' + + f'{table[name]["dl20"]["MAP"]:8.4f}{table[name]["dl20"]["nDCG@10"]:8.4f}{table[name]["dl20"]["R@1K"]:8.4f} ' + + f'{table[name]["dev"]["MRR@10"]:8.4f}{table[name]["dev"]["R@1K"]:8.4f}') + else: + # Otherwise, print out all rows + for name in models[args.collection]: + if not name: + print('') + continue + print(f'{table_keys[name]:60}' + + f'{table[name]["dl19"]["MAP"]:8.4f}{table[name]["dl19"]["nDCG@10"]:8.4f}{table[name]["dl19"]["R@1K"]:8.4f} ' + + f'{table[name]["dl20"]["MAP"]:8.4f}{table[name]["dl20"]["nDCG@10"]:8.4f}{table[name]["dl20"]["R@1K"]:8.4f} ' + + f'{table[name]["dev"]["MRR@10"]:8.4f}{table[name]["dev"]["R@1K"]:8.4f}') + else: + print(' ' * 77 + 'TREC 2021' + ' ' * 18 + 'MS MARCO dev' + ' ' * 6 + 'MS MARCO dev2') + print(' ' * 62 + 'MAP@100 nDCG@10 MRR@100 R@100 R@1K MRR@100 R@1K MRR@100 R@1K') + print(' ' * 62 + '-' * 38 + ' ' + '-' * 14 + ' ' + '-' * 14) + + if args.condition: + # If we've used --condition to specify a specific condition, print out only that row. + name = args.condition + print(f'{table_keys[name]:60}' + + f'{table[name]["dl21"]["MAP@100"]:8.4f}{table[name]["dl21"]["nDCG@10"]:8.4f}' + + f'{table[name]["dl21"]["MRR@100"]:8.4f}{table[name]["dl21"]["R@100"]:8.4f}{table[name]["dl21"]["R@1K"]:8.4f} ' + + f'{table[name]["dev"]["MRR@100"]:8.4f}{table[name]["dev"]["R@1K"]:8.4f} ' + + f'{table[name]["dev2"]["MRR@100"]:8.4f}{table[name]["dev2"]["R@1K"]:8.4f}') + else: + # Otherwise, print out all rows + for name in models[args.collection]: + if not name: + print('') + continue + print(f'{table_keys[name]:60}' + + f'{table[name]["dl21"]["MAP@100"]:8.4f}{table[name]["dl21"]["nDCG@10"]:8.4f}' + + f'{table[name]["dl21"]["MRR@100"]:8.4f}{table[name]["dl21"]["R@100"]:8.4f}{table[name]["dl21"]["R@1K"]:8.4f} ' + + f'{table[name]["dev"]["MRR@100"]:8.4f}{table[name]["dev"]["R@1K"]:8.4f} ' + + f'{table[name]["dev2"]["MRR@100"]:8.4f}{table[name]["dev2"]["R@1K"]:8.4f}') + + end = time.time() + + print('\n') + print(f'Total elapsed time: {end - start:.0f}s') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Generate regression matrix for MS MARCO corpora.') + parser.add_argument('--collection', type=str, + help='Collection = {v1-passage, v1-doc, v2-passage, v2-doc}.', required=True) + # To list all conditions + parser.add_argument('--list-conditions', action='store_true', default=False, help='List available conditions.') + # For generating reports + parser.add_argument('--generate-report', action='store_true', default=False, help='Generate report.') + parser.add_argument('--output', type=str, help='File to store report.', required=False) + # For actually running the experimental conditions + parser.add_argument('--all', action='store_true', default=False, help='Run all conditions.') + parser.add_argument('--condition', type=str, help='Condition to run.', required=False) + parser.add_argument('--directory', type=str, help='Base directory.', default='', required=False) + parser.add_argument('--dry-run', action='store_true', default=False, help='Print out commands but do not execute.') + parser.add_argument('--skip-eval', action='store_true', default=False, help='Skip running trec_eval.') + parser.add_argument('--display-commands', action='store_true', default=False, help='Display command.') + args = parser.parse_args() + + if args.collection == 'v1-passage': + args.collection = 'msmarco-v1-passage' + elif args.collection == 'v1-doc': + args.collection = 'msmarco-v1-doc' + elif args.collection == 'v2-passage': + args.collection = 'msmarco-v2-passage' + elif args.collection == 'v2-doc': + args.collection = 'msmarco-v2-doc' + else: + raise ValueError(f'Unknown corpus: {args.collection}') + + if args.list_conditions: + list_conditions(args) + sys.exit() + + if args.generate_report: + if not args.output: + print(f'Must specify report filename with --output.') + sys.exit() + + generate_report(args) + sys.exit() + + if not args.all and not args.condition: + print(f'Must specify a specific condition using --condition or use --all to run all conditions.') + sys.exit() + + run_conditions(args) diff --git a/pyserini/2cr/msmarco_html_row_v1.template b/pyserini/2cr/msmarco_html_row_v1.template new file mode 100644 index 0000000000000000000000000000000000000000..c032b14e4643b2d9b2a7a109d55d0c99611e129d --- /dev/null +++ b/pyserini/2cr/msmarco_html_row_v1.template @@ -0,0 +1,81 @@ + + + +$row +${condition_name} +$s1 +$s2 +$s3 + +$s4 +$s5 +$s6 + +$s7 +$s8 + + + + +
+ + + + + + +
+
+Command to generate run on TREC 2019 queries: + +
+
$cmd1
+
+Evaluation commands: + +
+
${eval_cmd1}
+
+ +
+
+ Command to generate run on TREC 2020 queries: + +
+
$cmd2
+
+Evaluation commands: + +
+
${eval_cmd2}
+
+ +
+
+ Command to generate run on dev queries: + +
+
$cmd3
+
+Evaluation commands: + +
+
${eval_cmd3}
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/pyserini/2cr/msmarco_html_row_v2.template b/pyserini/2cr/msmarco_html_row_v2.template new file mode 100644 index 0000000000000000000000000000000000000000..a1442c96f7d105002ead16bf7808a58b3d6ed5ee --- /dev/null +++ b/pyserini/2cr/msmarco_html_row_v2.template @@ -0,0 +1,82 @@ + + + +$row +${condition_name} +$s1 +$s2 +$s3 +$s4 +$s5 + +$s6 +$s7 + +$s8 +$s9 + + + + +
+ + + + + + +
+
+Command to generate run on TREC 2021 queries: + +
+
$cmd1
+
+Evaluation commands: + +
+
${eval_cmd1}
+
+ +
+
+ Command to generate run on dev queries: + +
+
$cmd2
+
+Evaluation commands: + +
+
${eval_cmd2}
+
+ +
+
+ Command to generate run on dev2 queries: + +
+
$cmd3
+
+Evaluation commands: + +
+
${eval_cmd3}
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/pyserini/2cr/msmarco_html_v1_doc.template b/pyserini/2cr/msmarco_html_v1_doc.template new file mode 100644 index 0000000000000000000000000000000000000000..50a41306828c81177a05ded8eed864a33775f155 --- /dev/null +++ b/pyserini/2cr/msmarco_html_v1_doc.template @@ -0,0 +1,296 @@ + + + + + + + Pyserini Reproductions: MS MARCO V1 Document + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ +

The two-click* reproduction matrix below provides commands for reproducing experimental results reported in a number of papers, denoted by the references in square brackets. +Instructions for programmatic execution are shown at the bottom of this page (scroll down).

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +$rows + + +
TREC 2019TREC 2020dev

AP@100
nDCG@10R@1K
AP@100
nDCG@10R@1KRR@100R@1K
+
+ + + +
+ +

Programmatic Execution

+ +

All experimental runs shown in the above table can be programmatically executed based on the instructions below. +To list all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v1-doc --list-conditions +
+ +

These conditions correspond to the table rows above.

+ +

For all conditions, just show the commands in a "dry run":

+ +
+python -m pyserini.2cr.msmarco --collection v1-doc --all --display-commands --dry-run +
+ +

To actually run all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v1-doc --all --display-commands +
+ +

With the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

To show the commands for a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v1-doc --condition bm25-doc-default --display-commands --dry-run +
+ +

This will generate exactly the commands for a specific condition above (corresponding to a row in the table).

+ +

To actually run a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v1-doc --condition bm25-doc-default --display-commands +
+ +

Again, with the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

Finally, to generate this page:

+ +
+python -m pyserini.2cr.msmarco --collection v1-doc --generate-report --output msmarco-v1-doc.html +
+ +

The output file msmarco-v1-doc.html should be identical to this page.

+ +
+ +
+ + + + + + + + + + + + diff --git a/pyserini/2cr/msmarco_html_v1_passage.template b/pyserini/2cr/msmarco_html_v1_passage.template new file mode 100644 index 0000000000000000000000000000000000000000..92bc97658fdd1ae5ae4ffeba70e8bad5268e6d57 --- /dev/null +++ b/pyserini/2cr/msmarco_html_v1_passage.template @@ -0,0 +1,313 @@ + + + + + + + Pyserini Reproductions: MS MARCO V1 Passage + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ +

The two-click* reproduction matrix below provides commands for reproducing experimental results reported in a number of papers, denoted by the references in square brackets. +Instructions for programmatic execution are shown at the bottom of this page (scroll down).

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +$rows + + +
TREC 2019TREC 2020dev

AP
nDCG@10R@1K
AP
nDCG@10R@1KRR@10R@1K
+
+ + + +
+ +

Programmatic Execution

+ +

All experimental runs shown in the above table can be programmatically executed based on the instructions below. +To list all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v1-passage --list-conditions +
+ +

These conditions correspond to the table rows above.

+ +

For all conditions, just show the commands in a "dry run":

+ +
+python -m pyserini.2cr.msmarco --collection v1-passage --all --display-commands --dry-run +
+ +

To actually run all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v1-passage --all --display-commands +
+ +

With the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

To show the commands for a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v1-passage --condition bm25-default --display-commands --dry-run +
+ +

This will generate exactly the commands for a specific condition above (corresponding to a row in the table).

+ +

To actually run a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v1-passage --condition bm25-default --display-commands +
+ +

Again, with the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

Finally, to generate this page:

+ +
+python -m pyserini.2cr.msmarco --collection v1-passage --generate-report --output msmarco-v1-passage.html +
+ +

The output file msmarco-v1-passage.html should be identical to this page.

+ +
+ +
+ + + + + + + + + + + + diff --git a/pyserini/2cr/msmarco_html_v2_doc.template b/pyserini/2cr/msmarco_html_v2_doc.template new file mode 100644 index 0000000000000000000000000000000000000000..a3379e14af7046a33e4e9f81b70cf9c3dca9de32 --- /dev/null +++ b/pyserini/2cr/msmarco_html_v2_doc.template @@ -0,0 +1,292 @@ + + + + + + + Pyserini Reproductions: MS MARCO V2 Document + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ +

The two-click* reproduction matrix below provides commands for reproducing experimental results reported in the following paper. +Numbered rows correspond to tables in the paper; additional conditions are provided for comparison purposes.

+ +

Xueguang Ma, Ronak Pradeep, Rodrigo Nogueira, and Jimmy Lin. Document Expansions and Learned Sparse Lexical Representations for MS MARCO V1 and V2. +Proceedings of the 45th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 2022), July 2022.

+ +

Instructions for programmatic execution are shown at the bottom of this page (scroll down).

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +$rows + + +
TREC 2021devdev2

AP
nDCG@10RR@100R@100R@1KRR@100R@1KRR@100R@1K
+
+ +
+ +

Programmatic Execution

+ +

All experimental runs shown in the above table can be programmatically executed based on the instructions below. +To list all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v2-doc --list-conditions +
+ +

These conditions correspond to the table rows above.

+ +

For all conditions, just show the commands in a "dry run":

+ +
+python -m pyserini.2cr.msmarco --collection v2-doc --all --display-commands --dry-run +
+ +

To actually run all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v2-doc --all --display-commands +
+ +

With the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

To show the commands for a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v2-doc --condition bm25-doc-default --display-commands --dry-run +
+ +

This will generate exactly the commands for a specific condition above (corresponding to a row in the table).

+ +

To actually run a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v2-doc --condition bm25-doc-default --display-commands +
+ +

Again, with the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

Finally, to generate this page:

+ +
+python -m pyserini.2cr.msmarco --collection v2-doc --generate-report --output msmarco-v2-doc.html +
+ +

The output file msmarco-v2-doc.html should be identical to this page.

+ +
+ +
+ + + + + + + + + + + + diff --git a/pyserini/2cr/msmarco_html_v2_passage.template b/pyserini/2cr/msmarco_html_v2_passage.template new file mode 100644 index 0000000000000000000000000000000000000000..79d0d012ba1790413305e4587de4663da741a012 --- /dev/null +++ b/pyserini/2cr/msmarco_html_v2_passage.template @@ -0,0 +1,292 @@ + + + + + + + Pyserini Reproductions: MS MARCO V2 Passage + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ +

The two-click* reproduction matrix below provides commands for reproducing experimental results reported in the following paper. +Numbered rows correspond to tables in the paper; additional conditions are provided for comparison purposes.

+ +

Xueguang Ma, Ronak Pradeep, Rodrigo Nogueira, and Jimmy Lin. Document Expansions and Learned Sparse Lexical Representations for MS MARCO V1 and V2. +Proceedings of the 45th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 2022), July 2022.

+ +

Instructions for programmatic execution are shown at the bottom of this page (scroll down).

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +$rows + + +
TREC 2021devdev2

AP
nDCG@10RR@100R@100R@1KRR@100R@1KRR@100R@1K
+
+ +
+ +

Programmatic Execution

+ +

All experimental runs shown in the above table can be programmatically executed based on the instructions below. +To list all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v2-passage --list-conditions +
+ +

These conditions correspond to the table rows above.

+ +

For all conditions, just show the commands in a "dry run":

+ +
+python -m pyserini.2cr.msmarco --collection v2-passage --all --display-commands --dry-run +
+ +

To actually run all the experimental conditions:

+ +
+python -m pyserini.2cr.msmarco --collection v2-passage --all --display-commands +
+ +

With the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

To show the commands for a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v2-passage --condition bm25-default --display-commands --dry-run +
+ +

This will generate exactly the commands for a specific condition above (corresponding to a row in the table).

+ +

To actually run a specific condition:

+ +
+python -m pyserini.2cr.msmarco --collection v2-passage --condition bm25-default --display-commands +
+ +

Again, with the above command, run files will be placed in the current directory. +Use the option --directory runs/ to place the runs in a sub-directory.

+ +

Finally, to generate this page:

+ +
+python -m pyserini.2cr.msmarco --collection v2-passage --generate-report --output msmarco-v2-passage.html +
+ +

The output file msmarco-v2-passage.html should be identical to this page.

+ +
+ +
+ + + + + + + + + + + + diff --git a/pyserini/__init__.py b/pyserini/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/pyserini/__init__.py @@ -0,0 +1 @@ + diff --git a/pyserini/__pycache__/__init__.cpython-38.pyc b/pyserini/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c03714e3c2403d62ec4426eaf19b748782030112 Binary files /dev/null and b/pyserini/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/__pycache__/dsearch.cpython-38.pyc b/pyserini/__pycache__/dsearch.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24f257f1f3910c95659776d07f1d2d6b8e0fc87d Binary files /dev/null and b/pyserini/__pycache__/dsearch.cpython-38.pyc differ diff --git a/pyserini/__pycache__/encoded_corpus_info.cpython-38.pyc b/pyserini/__pycache__/encoded_corpus_info.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efbe4c12b6d296de1e43374d91cb037579c1f75d Binary files /dev/null and b/pyserini/__pycache__/encoded_corpus_info.cpython-38.pyc differ diff --git a/pyserini/__pycache__/encoded_query_info.cpython-38.pyc b/pyserini/__pycache__/encoded_query_info.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d324a47dc7702932625b1ebfb94bea1f93d2d13 Binary files /dev/null and b/pyserini/__pycache__/encoded_query_info.cpython-38.pyc differ diff --git a/pyserini/__pycache__/evaluate_script_info.cpython-38.pyc b/pyserini/__pycache__/evaluate_script_info.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94b7e4a59faa3d55067137c4eab85f84bbc2c82d Binary files /dev/null and b/pyserini/__pycache__/evaluate_script_info.cpython-38.pyc differ diff --git a/pyserini/__pycache__/external_query_info.cpython-38.pyc b/pyserini/__pycache__/external_query_info.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8f2553e7fc29ea879804343dd99c09075db6114 Binary files /dev/null and b/pyserini/__pycache__/external_query_info.cpython-38.pyc differ diff --git a/pyserini/__pycache__/multithreading.cpython-38.pyc b/pyserini/__pycache__/multithreading.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21909ab91f0a7b32bc5b5dd0d5d7e642e38e2d3c Binary files /dev/null and b/pyserini/__pycache__/multithreading.cpython-38.pyc differ diff --git a/pyserini/__pycache__/output_writer.cpython-38.pyc b/pyserini/__pycache__/output_writer.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3ff3ed966bb3d8da49efc264297ea8235297cf0 Binary files /dev/null and b/pyserini/__pycache__/output_writer.cpython-38.pyc differ diff --git a/pyserini/__pycache__/prebuilt_index_info.cpython-38.pyc b/pyserini/__pycache__/prebuilt_index_info.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..484664ee10849b4e1efdeba82e83c93f72a3dc37 Binary files /dev/null and b/pyserini/__pycache__/prebuilt_index_info.cpython-38.pyc differ diff --git a/pyserini/__pycache__/pyclass.cpython-38.pyc b/pyserini/__pycache__/pyclass.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83b4c934ea98709bdf4c197359237ff01b21ac63 Binary files /dev/null and b/pyserini/__pycache__/pyclass.cpython-38.pyc differ diff --git a/pyserini/__pycache__/query_iterator.cpython-38.pyc b/pyserini/__pycache__/query_iterator.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..08722423540d3ab5e05835e3b7bcd8b1b06520c5 Binary files /dev/null and b/pyserini/__pycache__/query_iterator.cpython-38.pyc differ diff --git a/pyserini/__pycache__/query_iterator_order_info.cpython-38.pyc b/pyserini/__pycache__/query_iterator_order_info.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ead04a787e76e995e985d163692748a3df100caa Binary files /dev/null and b/pyserini/__pycache__/query_iterator_order_info.cpython-38.pyc differ diff --git a/pyserini/__pycache__/setup.cpython-38.pyc b/pyserini/__pycache__/setup.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a03090acba0dfca8ab950ee8be57d0519077ef69 Binary files /dev/null and b/pyserini/__pycache__/setup.cpython-38.pyc differ diff --git a/pyserini/__pycache__/util.cpython-38.pyc b/pyserini/__pycache__/util.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a0109c9d35be2932ec1df75a827c8bbaf05d368 Binary files /dev/null and b/pyserini/__pycache__/util.cpython-38.pyc differ diff --git a/pyserini/analysis/__init__.py b/pyserini/analysis/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..d3eed751bfa2cfda94a83221474328732d7c7d0f --- /dev/null +++ b/pyserini/analysis/__init__.py @@ -0,0 +1,19 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import get_lucene_analyzer, Analyzer, JAnalyzer, JAnalyzerUtils, JDefaultEnglishAnalyzer, JWhiteSpaceAnalyzer + +__all__ = ['get_lucene_analyzer', 'Analyzer', 'JAnalyzer', 'JAnalyzerUtils', 'JDefaultEnglishAnalyzer', 'JWhiteSpaceAnalyzer'] diff --git a/pyserini/analysis/__pycache__/__init__.cpython-38.pyc b/pyserini/analysis/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..161d5fb93f9afd161b9a0b1c4b806473473a80f4 Binary files /dev/null and b/pyserini/analysis/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/analysis/__pycache__/_base.cpython-38.pyc b/pyserini/analysis/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17124b021bfb2457f947efb2198a18ac01a2dffd Binary files /dev/null and b/pyserini/analysis/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/analysis/_base.py b/pyserini/analysis/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..7ca17c5ec6cafb9171a01cbdcac6303b5fc37526 --- /dev/null +++ b/pyserini/analysis/_base.py @@ -0,0 +1,166 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from typing import List + +from ..pyclass import autoclass + +# Wrappers around Lucene classes +JAnalyzer = autoclass('org.apache.lucene.analysis.Analyzer') +JArabicAnalyzer = autoclass('org.apache.lucene.analysis.ar.ArabicAnalyzer') +JBengaliAnalyzer = autoclass('org.apache.lucene.analysis.bn.BengaliAnalyzer') +JCJKAnalyzer = autoclass('org.apache.lucene.analysis.cjk.CJKAnalyzer') +JDanishAnalyzer = autoclass('org.apache.lucene.analysis.da.DanishAnalyzer') +JDefaultEnglishAnalyzer = autoclass('io.anserini.analysis.DefaultEnglishAnalyzer') +JDutchAnalyzer = autoclass('org.apache.lucene.analysis.nl.DutchAnalyzer') +JFinnishAnalyzer = autoclass('org.apache.lucene.analysis.fi.FinnishAnalyzer') +JFrenchAnalyzer = autoclass('org.apache.lucene.analysis.fr.FrenchAnalyzer') +JGermanAnalyzer = autoclass('org.apache.lucene.analysis.de.GermanAnalyzer') +JHindiAnalyzer = autoclass('org.apache.lucene.analysis.hi.HindiAnalyzer') +JHungarianAnalyzer = autoclass('org.apache.lucene.analysis.hu.HungarianAnalyzer') +JIndonesianAnalyzer = autoclass('org.apache.lucene.analysis.id.IndonesianAnalyzer') +JItalianAnalyzer = autoclass('org.apache.lucene.analysis.it.ItalianAnalyzer') +JJapaneseAnalyzer = autoclass('org.apache.lucene.analysis.ja.JapaneseAnalyzer') +JNorwegianAnalyzer = autoclass('org.apache.lucene.analysis.no.NorwegianAnalyzer') +JPortugueseAnalyzer = autoclass('org.apache.lucene.analysis.pt.PortugueseAnalyzer') +JRussianAnalyzer = autoclass('org.apache.lucene.analysis.ru.RussianAnalyzer') +JSpanishAnalyzer = autoclass('org.apache.lucene.analysis.es.SpanishAnalyzer') +JSwedishAnalyzer = autoclass('org.apache.lucene.analysis.sv.SwedishAnalyzer') +JTeluguAnalyzer = autoclass('org.apache.lucene.analysis.te.TeluguAnalyzer') +JThaiAnalyzer = autoclass('org.apache.lucene.analysis.th.ThaiAnalyzer') +JTurkishAnalyzer = autoclass('org.apache.lucene.analysis.tr.TurkishAnalyzer') +JWhiteSpaceAnalyzer = autoclass('org.apache.lucene.analysis.core.WhitespaceAnalyzer') +JCharArraySet = autoclass('org.apache.lucene.analysis.CharArraySet') + +# Wrappers around Anserini classes +JAnalyzerUtils = autoclass('io.anserini.analysis.AnalyzerUtils') +JDefaultEnglishAnalyzer = autoclass('io.anserini.analysis.DefaultEnglishAnalyzer') +JTweetAnalyzer = autoclass('io.anserini.analysis.TweetAnalyzer') +JHuggingFaceTokenizerAnalyzer = autoclass('io.anserini.analysis.HuggingFaceTokenizerAnalyzer') + + +def get_lucene_analyzer(language: str='en', stemming: bool=True, stemmer: str='porter', stopwords: bool=True, huggingFaceTokenizer: str=None) -> JAnalyzer: + """Create a Lucene ``Analyzer`` with specific settings. + + Parameters + ---------- + language : str + Name of analyzer. + stemming : bool + Set to stem. + stemmer : str + Stemmer to use. + stopwords : bool + Set to filter stopwords. + huggingFaceTokenizer: str + a huggingface model id or path to a tokenizer.json file + + Returns + ------- + JAnalyzer + Java ``Analyzer`` with specified settings. + """ + if language.lower() == 'ar': + return JArabicAnalyzer() + elif language.lower() == 'bn': + return JBengaliAnalyzer() + elif language.lower() in ['zh', 'ko']: + return JCJKAnalyzer() + elif language.lower() == 'da': + return JDanishAnalyzer() + elif language.lower() == 'nl': + return JDutchAnalyzer() + elif language.lower() == 'fi': + return JFinnishAnalyzer() + elif language.lower() == 'fr': + return JFrenchAnalyzer() + elif language.lower() == 'de': + return JGermanAnalyzer() + elif language.lower() == 'hi': + return JHindiAnalyzer() + elif language.lower() == 'hu': + return JHungarianAnalyzer() + elif language.lower() == 'id': + return JIndonesianAnalyzer() + elif language.lower() == 'it': + return JItalianAnalyzer() + elif language.lower() == 'ja': + return JJapaneseAnalyzer() + elif language.lower() == 'no': + return JNorwegianAnalyzer() + elif language.lower() == 'pt': + return JPortugueseAnalyzer() + elif language.lower() == 'ru': + return JRussianAnalyzer() + elif language.lower() == 'es': + return JSpanishAnalyzer() + elif language.lower() == 'te': + return JTeluguAnalyzer() + elif language.lower() == 'th': + return JThaiAnalyzer() + elif language.lower() == 'tr': + return JTurkishAnalyzer() + elif language.lower() == 'tweet': + return JTweetAnalyzer() + elif language.lower() == 'hgf_tokenizer': + return JHuggingFaceTokenizerAnalyzer(huggingFaceTokenizer) + elif language.lower() == 'en': + if stemming: + if stopwords: + return JDefaultEnglishAnalyzer.newStemmingInstance(stemmer) + else: + return JDefaultEnglishAnalyzer.newStemmingInstance(stemmer, JCharArraySet.EMPTY_SET) + else: + if stopwords: + return JDefaultEnglishAnalyzer.newNonStemmingInstance() + else: + return JDefaultEnglishAnalyzer.newNonStemmingInstance(JCharArraySet.EMPTY_SET) + else: + raise ValueError('Invalid configuration.') + + +class Analyzer: + """Python wrapper around a Lucene ``Analyzer`` to simplify analysis. + + Parameters + ---------- + analyzer : JAnalyzer + Lucene ``Analyzer``. + """ + + def __init__(self, analyzer): + if not isinstance(analyzer, JAnalyzer): + raise TypeError('Invalid JAnalyzer!') + self.analyzer = analyzer + + def analyze(self, text: str) -> List[str]: + """Analyze a piece of text. + + Parameters + ---------- + text : str + Text to analyze. + + Returns + ------- + List[str] + List of tokens corresponding to the output of the analyzer. + """ + results = JAnalyzerUtils.analyze(self.analyzer, text) + tokens = [] + for token in results.toArray(): + tokens.append(token) + return tokens diff --git a/pyserini/collection/__init__.py b/pyserini/collection/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..464516a633a1fe9c4f8943f2717b3671cba3ba7a --- /dev/null +++ b/pyserini/collection/__init__.py @@ -0,0 +1,20 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import Collection, FileSegment, SourceDocument +from ._collection_support import Cord19Article + +__all__ = ['Collection', 'FileSegment', 'SourceDocument', 'Cord19Article'] diff --git a/pyserini/collection/__pycache__/__init__.cpython-38.pyc b/pyserini/collection/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b40a94bc6ee7dbf7e404428d0a3d13ce333b98f Binary files /dev/null and b/pyserini/collection/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/collection/__pycache__/_base.cpython-38.pyc b/pyserini/collection/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..339926c5fdc593b284ce7dbab862bb3c8d259c73 Binary files /dev/null and b/pyserini/collection/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/collection/__pycache__/_collection_support.cpython-38.pyc b/pyserini/collection/__pycache__/_collection_support.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87775fc96cbd31c9249b3fd5a9b3676ea02f9bd3 Binary files /dev/null and b/pyserini/collection/__pycache__/_collection_support.cpython-38.pyc differ diff --git a/pyserini/collection/_base.py b/pyserini/collection/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..ad6084c2232896671c75ac6a297f76a9c30a0c00 --- /dev/null +++ b/pyserini/collection/_base.py @@ -0,0 +1,153 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import logging +import re +from enum import Enum + +from ..multithreading import Counters +from ..pyclass import autoclass, cast, JPaths + +logger = logging.getLogger(__name__) + + +JFileSegment = autoclass('io.anserini.collection.FileSegment') +JSourceDocument = autoclass('io.anserini.collection.SourceDocument') + + +class JCollections(Enum): + AclAnthology = autoclass('io.anserini.collection.AclAnthology') + CarCollection = autoclass('io.anserini.collection.CarCollection') + Cord19AbstractCollection = autoclass('io.anserini.collection.Cord19AbstractCollection') + ClueWeb09Collection = autoclass('io.anserini.collection.ClueWeb09Collection') + ClueWeb12Collection = autoclass('io.anserini.collection.ClueWeb12Collection') + HtmlCollection = autoclass('io.anserini.collection.HtmlCollection') + JsonCollection = autoclass('io.anserini.collection.JsonCollection') + NewYorkTimesCollection = autoclass('io.anserini.collection.NewYorkTimesCollection') + TrecCollection = autoclass('io.anserini.collection.TrecCollection') + TrecwebCollection = autoclass('io.anserini.collection.TrecwebCollection') + TweetCollection = autoclass('io.anserini.collection.TweetCollection') + WashingtonPostCollection = autoclass('io.anserini.collection.WashingtonPostCollection') + WikipediaCollection = autoclass('io.anserini.collection.WikipediaCollection') + + +class Collection: + """ + Iterable wrapper class for Anserini's DocumentCollection. + + Parameters + ---------- + collection_class : str + Name of collection class to instantiate + collection_path : str + Path to directory containing collection + """ + + def __init__(self, collection_class, collection_path): + self.counters = Counters() + self.collection_class = collection_class + self.collection_path = JPaths.get(collection_path) + self.object = self._get_collection() + self.collection_iterator = self.object.iterator() + + def _get_collection(self): + try: + return JCollections[self.collection_class].value(self.collection_path) + except: + raise ValueError(self.collection_class) + + def __iter__(self): + return self + + def __next__(self): + if self.collection_iterator.hasNext(): + fs = self.collection_iterator.next() + return FileSegment(self, fs, fs.getSegmentPath()) + else: + raise StopIteration + + +class FileSegment: + """ + Iterable wrapper class for Anserini's FileSegment. + + Parameters + ---------- + collection : Collection + Parent collection of the file segment + segment : JFileSegment + FileSegment object to create wrapper from + segment_path : str + Path to file backing the file segment + """ + + def __init__(self, collection, segment, segment_path): + self.collection = collection + try: + self.object = cast(collection.object.getClass().getName() + + '$Segment', segment) + except: + logger.exception('Exception from casting FileSegment type...') + self.object = cast('io.anserini.collection.FileSegment', segment) + + self.segment_iterator = self.object.iterator() + self.segment_path = segment_path + self.segment_name = re.sub(r'\\|\/', '-', collection.collection_path.relativize(segment_path).toString()) + + def __iter__(self): + return self + + def __next__(self): + if self.object.iterator().hasNext(): + d = self.object.iterator().next() + return SourceDocument(self, d) + else: + # log if iteration stopped by error + if self.object.getErrorStatus(): + logger.error(self.segment_name + ': Error from segment iteration, stopping...') + self.collection.counters.errors.increment() + + # stop iteration and log skipped documents + skipped = self.object.getSkippedCount() + if skipped > 0: + self.collection.counters.skips.increment(skipped) + logger.warning(self.segment_name + ': ' + str(skipped) + ' documents skipped') + self.object.close() + raise StopIteration + + +class SourceDocument: + """ + Wrapper class for Anserini's SourceDocument. + + Parameters + ---------- + + segment : FileSegment + Parent segment of the source document + document : io.anserini.collection.SourceDocument + SourceDocument object to create wrapper from + """ + + def __init__(self, segment, document): + if not isinstance(document, JSourceDocument): + raise TypeError('Invalid JSourceDocument!') + self.segment = segment + self.object = document + self.id = self.object.id() + self.indexable = self.object.indexable() + self.contents = self.object.contents() + self.raw = self.object.raw() diff --git a/pyserini/collection/_collection_support.py b/pyserini/collection/_collection_support.py new file mode 100644 index 0000000000000000000000000000000000000000..843bc0a74d9b54067b8aa446f9904bfb7dbe780c --- /dev/null +++ b/pyserini/collection/_collection_support.py @@ -0,0 +1,78 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +# Implementations of support for specific collections. + +import json + + +class Cord19Article: + """Wrapper class for a raw JSON article from AI2's COVID-19 Open Research Dataset (CORD-19). + + Parameters + ---------- + doc : str + A JSON string of a CORD-19 article. + """ + + def __init__(self, doc): + self.json = json.loads(doc) + # Performs some basic error checking, throws an exception if user tries to instantiate with something + # that isn't from CORD-19. + if 'cord_uid' in self.json: + self.full_text = False + elif 'paper_id' in self.json: + self.full_text = True + else: + raise TypeError + + def is_full_text(self): + return self.json['has_full_text'] + + def cord_uid(self): + return self.json['cord_uid'] + + def bib_entries(self): + return self.json['bib_entries'] + + def title(self): + try: + if self.is_full_text(): + return self.json['metadata']['title'] + else: + return self.json['csv_metadata']['title'] + except KeyError: + return '' + + def abstract(self): + try: + # For a full-text article, we can grab the abstract from two independent sources, the metadata or the + # actual full text. Here, we make the decision to use the metadata, even for full text. + return self.json['csv_metadata']['abstract'] + except KeyError: + return '' + + def metadata(self): + return self.json['csv_metadata'] + + def body(self): + try: + if self.is_full_text(): + return [entry['text'] for entry in self.json['body_text']] + else: + return [] + except KeyError: + return '' diff --git a/pyserini/demo/dpr.py b/pyserini/demo/dpr.py new file mode 100644 index 0000000000000000000000000000000000000000..02e9aca428be06bd1a54505fa4f6542e4f9d6ad3 --- /dev/null +++ b/pyserini/demo/dpr.py @@ -0,0 +1,105 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import cmd +import json +import random + +from pyserini.search.lucene import LuceneSearcher +from pyserini.search.faiss import FaissSearcher, DprQueryEncoder +from pyserini.search.hybrid import HybridSearcher +from pyserini import search + + +class DPRDemo(cmd.Cmd): + nq_dev_topics = list(search.get_topics('dpr-nq-dev').values()) + trivia_dev_topics = list(search.get_topics('dpr-trivia-dev').values()) + + ssearcher = LuceneSearcher.from_prebuilt_index('wikipedia-dpr') + searcher = ssearcher + + encoder = DprQueryEncoder("facebook/dpr-question_encoder-multiset-base") + index = 'wikipedia-dpr-multi-bf' + dsearcher = FaissSearcher.from_prebuilt_index( + index, + encoder + ) + hsearcher = HybridSearcher(dsearcher, ssearcher) + + k = 10 + prompt = '>>> ' + + def precmd(self, line): + if line[0] == '/': + line = line[1:] + return line + + def do_help(self, arg): + print(f'/help : returns this message') + print(f'/k [NUM] : sets k (number of hits to return) to [NUM]') + print(f'/mode [MODE] : sets retriever type to [MODE] (one of sparse, dense, hybrid)') + print(f'/random [COLLECTION]: returns results for a random question from the dev subset [COLLECTION] (one of nq, trivia).') + + def do_k(self, arg): + print(f'setting k = {int(arg)}') + self.k = int(arg) + + def do_mode(self, arg): + if arg == "sparse": + self.searcher = self.ssearcher + elif arg == "dense": + self.searcher = self.dsearcher + elif arg == "hybrid": + self.searcher = self.hsearcher + else: + print( + f'Mode "{arg}" is invalid. Mode should be one of [sparse, dense, hybrid].') + return + print(f'setting retriver = {arg}') + + def do_random(self, arg): + if arg == "nq": + topics = self.nq_dev_topics + elif arg == "trivia": + topics = self.trivia_dev_topics + else: + print( + f'Collection "{arg}" is invalid. Collection should be one of [nq, trivia].') + return + q = random.choice(topics)['title'] + print(f'question: {q}') + self.default(q) + + def do_EOF(self, line): + return True + + def default(self, q): + hits = self.searcher.search(q, self.k) + + for i in range(0, len(hits)): + raw_doc = None + if isinstance(self.searcher, LuceneSearcher): + raw_doc = hits[i].raw + else: + doc = self.searcher.doc(hits[i].docid) + if doc: + raw_doc = doc.raw() + jsondoc = json.loads(raw_doc) + print(f'{i + 1:2} {hits[i].score:.5f} {jsondoc["contents"]}') + + +if __name__ == '__main__': + DPRDemo().cmdloop() diff --git a/pyserini/demo/miracl.py b/pyserini/demo/miracl.py new file mode 100644 index 0000000000000000000000000000000000000000..ffecb93f2557658f8b5a3bd3546fb9be295f9240 --- /dev/null +++ b/pyserini/demo/miracl.py @@ -0,0 +1,149 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This script provides an interactive web interface demo for retrieval on the MIRACL dataset. +It requires `flask` (`pip install flask~=2.2.0`). +An example command looks like `python -m pyserini.demo.miracl` that starts up a server on port 8080. +The demo can be accessed via "http://localhost:8080" in a web browser. +Additional arguments include: + --port [PORT] --hits [Number of hits] --index [BM25 or mdpr-tied-pft-msmarco] + --k1 [BM25 k1] --b [BM25 b] --device [cpu, cuda] +""" +import json +import logging +from argparse import ArgumentParser +from functools import partial +from typing import Callable, Optional, Tuple, Union + +from flask import Flask, render_template, request, flash, jsonify +from pyserini.search import LuceneSearcher, FaissSearcher, AutoQueryEncoder + +logging.basicConfig( + format='%(asctime)s | %(levelname)s | %(name)s | %(message)s', + datefmt='%Y-%m-%d %H:%M:%S', + level=logging.INFO, +) +logger = logging.getLogger('miracl-demo') + +VERSION = '1.0' +LANGUAGES = ('ar', 'bn', 'en', 'es', 'fa', 'fi', 'fr', 'hi', 'id', 'ja', 'ko', 'ru', 'sw', 'te', 'th', 'zh') +Searcher = Union[FaissSearcher, LuceneSearcher] + + +def create_app(k: int, load_searcher_fn: Callable[[str], Tuple[Searcher, str]]): + app = Flask(__name__) + + lang = LANGUAGES[0] + searcher, retriever = load_searcher_fn(lang) + + @app.route('/') + def index(): + nonlocal lang, searcher, retriever + return render_template('miracl.html', lang=lang, retriever=retriever) + + @app.route('/search', methods=['GET', 'POST']) + def search(): + nonlocal lang, searcher, retriever + query = request.form['q'] + if not query: + search_results = [] + flash('Question is required') + else: + hits = searcher.search(query, k=k) + docs = [json.loads(searcher.doc(hit.docid).raw()) for hit in hits] + search_results = [ + { + 'rank': r + 1, + 'docid': hit.docid, + 'doc': docs[r]['text'], + 'title': docs[r]['title'], + 'score': hit.score, + } + for r, hit in enumerate(hits) + ] + return render_template( + 'miracl.html', search_results=search_results, query=query, lang=lang, retriever=retriever + ) + + @app.route('/lang', methods=['GET']) + def change_language(): + nonlocal lang, searcher, retriever + new_lang = request.args.get('new_lang', '', type=str) + if not new_lang or new_lang not in LANGUAGES: + return + + lang = new_lang + searcher, retriever = load_searcher_fn(lang) + return jsonify(lang=lang) + + return app + + +def _load_sparse_searcher(language: str, k1: Optional[float]=None, b: Optional[float]=None) -> (Searcher, str): + searcher = LuceneSearcher.from_prebuilt_index(f'miracl-v{VERSION}-{language}') + searcher.set_language(language) + if k1 is not None and b is not None: + searcher.set_bm25(k1, b) + retriever_name = f'BM25 (k1={k1}, b={b})' + else: + retriever_name = 'BM25' + + return searcher, retriever_name + + +def _load_faiss_searcher(language: str, device: str) -> (Searcher, str): + query_encoder = AutoQueryEncoder(encoder_dir='castorini/mdpr-tied-pft-msmarco', device=device) + searcher = FaissSearcher.from_prebuilt_index( + f'miracl-v{VERSION}-{language}-mdpr-tied-pft-msmarco', query_encoder + ) + retriever_name = 'mDPR-pFT-MSMARCO' + return searcher, retriever_name + + +def main(): + parser = ArgumentParser() + + parser.add_argument('--index', default='BM25', choices=('BM25', 'mdpr-tied-pft-msmarco'), help='Index type.') + parser.add_argument('--k1', type=float, help='BM25 k1 parameter.') + parser.add_argument('--b', type=float, help='BM25 b parameter.') + parser.add_argument('--hits', type=int, default=10, help='Number of hits returned by the retriever') + parser.add_argument( + '--device', + type=str, + default='cpu', + help='Device to run query encoder, cpu or [cuda:0, cuda:1, ...] (used only when index is based on FAISS)', + ) + parser.add_argument( + '--port', + default=8080, + type=int, + help='Web server port', + ) + + args = parser.parse_args() + + if args.index == 'mdpr-tied-pft-msmarco': + load_fn = partial(_load_faiss_searcher, device=args.device) + else: + load_fn = partial(_load_sparse_searcher, k1=args.k1, b=args.b) + + app = create_app(args.hits, load_fn) + app.run(host='0.0.0.0', port=args.port) + + +if __name__ == '__main__': + main() diff --git a/pyserini/demo/msmarco.py b/pyserini/demo/msmarco.py new file mode 100644 index 0000000000000000000000000000000000000000..b73276d1c4b20ea88aea10155a4d0f25d2764b56 --- /dev/null +++ b/pyserini/demo/msmarco.py @@ -0,0 +1,118 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import cmd +import json +import os +import random + +from pyserini.search.lucene import LuceneSearcher +from pyserini.search.faiss import FaissSearcher, TctColBertQueryEncoder, AnceQueryEncoder +from pyserini.search.hybrid import HybridSearcher +from pyserini import search + + +class MsMarcoDemo(cmd.Cmd): + dev_topics = list(search.get_topics('msmarco-passage-dev-subset').values()) + + ssearcher = LuceneSearcher.from_prebuilt_index('msmarco-passage') + dsearcher = None + hsearcher = None + searcher = ssearcher + + k = 10 + prompt = '>>> ' + + # https://stackoverflow.com/questions/35213134/command-prefixes-in-python-cli-using-cmd-in-pythons-standard-library + def precmd(self, line): + if line[0] == '/': + line = line[1:] + return line + + def do_help(self, arg): + print(f'/help : returns this message') + print(f'/k [NUM] : sets k (number of hits to return) to [NUM]') + print(f'/model [MODEL] : sets encoder to use the model [MODEL] (one of tct, ance)') + print(f'/mode [MODE] : sets retriever type to [MODE] (one of sparse, dense, hybrid)') + print(f'/random : returns results for a random question from dev subset') + + def do_k(self, arg): + print(f'setting k = {int(arg)}') + self.k = int(arg) + + def do_mode(self, arg): + if arg == "sparse": + self.searcher = self.ssearcher + elif arg == "dense": + if self.dsearcher is None: + print(f'Specify model through /model before using dense retrieval.') + return + self.searcher = self.dsearcher + elif arg == "hybrid": + if self.hsearcher is None: + print(f'Specify model through /model before using hybrid retrieval.') + return + self.searcher = self.hsearcher + else: + print( + f'Mode "{arg}" is invalid. Mode should be one of [sparse, dense, hybrid].') + return + print(f'setting retriver = {arg}') + + def do_model(self, arg): + if arg == "tct": + encoder = TctColBertQueryEncoder("castorini/tct_colbert-msmarco") + index = "msmarco-passage-tct_colbert-hnsw" + elif arg == "ance": + encoder = AnceQueryEncoder("castorini/ance-msmarco-passage") + index = "msmarco-passage-ance-bf" + else: + print( + f'Model "{arg}" is invalid. Model should be one of [tct, ance].') + return + + self.dsearcher = FaissSearcher.from_prebuilt_index( + index, + encoder + ) + self.hsearcher = HybridSearcher(self.dsearcher, self.ssearcher) + print(f'setting model = {arg}') + + def do_random(self, arg): + q = random.choice(self.dev_topics)['title'] + print(f'question: {q}') + self.default(q) + + def do_EOF(self, line): + return True + + def default(self, q): + hits = self.searcher.search(q, self.k) + + for i in range(0, len(hits)): + raw_doc = None + if isinstance(self.searcher, LuceneSearcher): + raw_doc = hits[i].raw + else: + doc = self.searcher.doc(hits[i].docid) + if doc: + raw_doc = doc.raw() + jsondoc = json.loads(raw_doc) + print(f'{i + 1:2} {hits[i].score:.5f} {jsondoc["contents"]}') + + +if __name__ == '__main__': + MsMarcoDemo().cmdloop() diff --git a/pyserini/demo/templates/miracl.html b/pyserini/demo/templates/miracl.html new file mode 100644 index 0000000000000000000000000000000000000000..28e49fdee803768af81603c0b92583253c37b50e --- /dev/null +++ b/pyserini/demo/templates/miracl.html @@ -0,0 +1,127 @@ + + + + + + + + + + + + MIRACL 🌍🙌🌏 Demo + + +

MIRACL 🌍🙌🌏 Demo

+

Multilingual Information Retrieval Across a Continuum of Languages

+ +
+ +

+ MIRACL is a multilingual dataset for ad hoc retrieval that consists of 18 different languages, collectively encompassing over three billion native speakers around the world. +

+ +
+ +
+ +
+
+
+ Loading... +
+
+
+ + retrieves passages using {{retriever}}. + +
+
+ +
+ +
+ {% for message in get_flashed_messages() %} +
{{ message }}
+ {% endfor %} + +
+
+
+ + +
+
+
+ + {% if search_results %} +
+ + + + + + + + + + + + {% for res in search_results %} + + + + + + + + {% endfor %} + +
#ScorePassage IDTitleContent
{{res["rank"]}}{{"%.2f"|format(res["score"])}}{{res["docid"]}}{{res["title"]}} + {{res["doc"]}} +
+
+ {% endif %} +
+ + \ No newline at end of file diff --git a/pyserini/dsearch.py b/pyserini/dsearch.py new file mode 100644 index 0000000000000000000000000000000000000000..72947e9e5662f2b293a966576192abb053a9c3e6 --- /dev/null +++ b/pyserini/dsearch.py @@ -0,0 +1,46 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Deprecated. The package ``pyserini.dsearch` has been renamed `pyserini.search.faiss`. Stubs are retained here for +redirection purpose to ensure that code in existing published papers remain function (with warnings).""" + +import os +import sys + +import pyserini.search.faiss +from pyserini.search.faiss import TctColBertQueryEncoder + +__all__ = ['SimpleDenseSearcher', 'BinaryDenseSearcher', 'TctColBertQueryEncoder'] + + +class SimpleDenseSearcher(pyserini.search.faiss.FaissSearcher): + def __new__(cls, *args, **kwargs): + print('pyserini.dsearch.SimpleDenseSearcher class has been deprecated, ' + 'please use FaissSearcher from pyserini.search.faiss instead') + return super().__new__(cls) + + +class BinaryDenseSearcher(pyserini.search.faiss.BinaryDenseSearcher): + def __new__(cls, *args, **kwargs): + print('pyserini.dsearch.BinaryDenseSearcher class has been deprecated, ' + 'please use BinaryDenseSearcher from pyserini.search.faiss instead') + return super().__new__(cls) + + +if __name__ == "__main__": + print('WARNING: pyserini.dsearch is deprecated, please use pyserini.search.faiss instead!') + args = " ".join(sys.argv[1:]) + os.system(f'python -m pyserini.search.faiss {args}') diff --git a/pyserini/encode/__init__.py b/pyserini/encode/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..62586e760c6f551830ee97449905b570e9a24132 --- /dev/null +++ b/pyserini/encode/__init__.py @@ -0,0 +1,27 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import DocumentEncoder, QueryEncoder, JsonlCollectionIterator,\ + RepresentationWriter, FaissRepresentationWriter, JsonlRepresentationWriter, PcaEncoder +from ._ance import AnceEncoder, AnceDocumentEncoder, AnceQueryEncoder +from ._auto import AutoQueryEncoder, AutoDocumentEncoder +from ._dpr import DprDocumentEncoder, DprQueryEncoder +from ._tct_colbert import TctColBertDocumentEncoder, TctColBertQueryEncoder +from ._unicoil import UniCoilEncoder, UniCoilDocumentEncoder, UniCoilQueryEncoder +from ._cached_data import CachedDataQueryEncoder +from ._tok_freq import TokFreqQueryEncoder +from ._splade import SpladeQueryEncoder +from ._slim import SlimQueryEncoder \ No newline at end of file diff --git a/pyserini/encode/__main__.py b/pyserini/encode/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..0ab0e521eb53f9814490629877edd92ddc4435e5 --- /dev/null +++ b/pyserini/encode/__main__.py @@ -0,0 +1,137 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import sys + +from pyserini.encode import JsonlRepresentationWriter, FaissRepresentationWriter, JsonlCollectionIterator +from pyserini.encode import DprDocumentEncoder, TctColBertDocumentEncoder, AnceDocumentEncoder, AutoDocumentEncoder +from pyserini.encode import UniCoilDocumentEncoder + + +encoder_class_map = { + "dpr": DprDocumentEncoder, + "tct_colbert": TctColBertDocumentEncoder, + "ance": AnceDocumentEncoder, + "sentence-transformers": AutoDocumentEncoder, + "unicoil": UniCoilDocumentEncoder, + "auto": AutoDocumentEncoder, +} + +def init_encoder(encoder, encoder_class, device): + _encoder_class = encoder_class + + # determine encoder_class + if encoder_class is not None: + encoder_class = encoder_class_map[encoder_class] + else: + # if any class keyword was matched in the given encoder name, + # use that encoder class + for class_keyword in encoder_class_map: + if class_keyword in encoder.lower(): + encoder_class = encoder_class_map[class_keyword] + break + + # if none of the class keyword was matched, + # use the AutoDocumentEncoder + if encoder_class is None: + encoder_class = AutoDocumentEncoder + + # prepare arguments to encoder class + kwargs = dict(model_name=encoder, device=device) + if (_encoder_class == "sentence-transformers") or ("sentence-transformers" in encoder): + kwargs.update(dict(pooling='mean', l2_norm=True)) + if (_encoder_class == "contriever") or ("contriever" in encoder): + kwargs.update(dict(pooling='mean', l2_norm=False)) + + return encoder_class(**kwargs) + + +def parse_args(parser, commands): + # Divide argv by commands + split_argv = [[]] + for c in sys.argv[1:]: + if c in commands.choices: + split_argv.append([c]) + else: + split_argv[-1].append(c) + # Initialize namespace + args = argparse.Namespace() + for c in commands.choices: + setattr(args, c, None) + # Parse each command + parser.parse_args(split_argv[0], namespace=args) # Without command + for argv in split_argv[1:]: # Commands + n = argparse.Namespace() + setattr(args, argv[0], n) + parser.parse_args(argv, namespace=n) + return args + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + commands = parser.add_subparsers(title='sub-commands') + input_parser = commands.add_parser('input') + input_parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', + required=True) + input_parser.add_argument('--fields', help='fields that contents in jsonl has (in order)', + nargs='+', default=['text'], required=False) + input_parser.add_argument('--delimiter', help='delimiter for the fields', default='\n', required=False) + input_parser.add_argument('--shard-id', type=int, help='shard-id 0-based', default=0, required=False) + input_parser.add_argument('--shard-num', type=int, help='number of shards', default=1, required=False) + + output_parser = commands.add_parser('output') + output_parser.add_argument('--embeddings', type=str, help='directory to store encoded corpus', required=True) + output_parser.add_argument('--to-faiss', action='store_true', default=False) + + encoder_parser = commands.add_parser('encoder') + encoder_parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + encoder_parser.add_argument('--encoder-class', type=str, required=False, default=None, + choices=["dpr", "bpr", "tct_colbert", "ance", "sentence-transformers", "auto"], + help='which query encoder class to use. `default` would infer from the args.encoder') + encoder_parser.add_argument('--fields', help='fields to encode', nargs='+', default=['text'], required=False) + encoder_parser.add_argument('--batch-size', type=int, help='batch size', default=64, required=False) + encoder_parser.add_argument('--max-length', type=int, help='max length', default=256, required=False) + encoder_parser.add_argument('--dimension', type=int, help='dimension', default=768, required=False) + encoder_parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', + default='cuda:0', required=False) + encoder_parser.add_argument('--fp16', action='store_true', default=False) + encoder_parser.add_argument('--add-sep', action='store_true', default=False) + + args = parse_args(parser, commands) + delimiter = args.input.delimiter.replace("\\n", "\n") # argparse would add \ prior to the passed '\n\n' + + encoder = init_encoder(args.encoder.encoder, args.encoder.encoder_class, device=args.encoder.device) + if args.output.to_faiss: + embedding_writer = FaissRepresentationWriter(args.output.embeddings, dimension=args.encoder.dimension) + else: + embedding_writer = JsonlRepresentationWriter(args.output.embeddings) + collection_iterator = JsonlCollectionIterator(args.input.corpus, args.input.fields, delimiter) + + with embedding_writer: + for batch_info in collection_iterator(args.encoder.batch_size, args.input.shard_id, args.input.shard_num): + kwargs = { + 'texts': batch_info['text'], + 'titles': batch_info['title'] if 'title' in args.encoder.fields else None, + 'expands': batch_info['expand'] if 'expand' in args.encoder.fields else None, + 'fp16': args.encoder.fp16, + 'max_length': args.encoder.max_length, + 'add_sep': args.encoder.add_sep, + } + embeddings = encoder.encode(**kwargs) + batch_info['vector'] = embeddings + embedding_writer.write(batch_info, args.input.fields) diff --git a/pyserini/encode/__pycache__/__init__.cpython-38.pyc b/pyserini/encode/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8690a792feb6d4e1b79dcf9742fbb71507f92ef5 Binary files /dev/null and b/pyserini/encode/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/__main__.cpython-38.pyc b/pyserini/encode/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..514355ad52da69c8a29a1169ae493b9e9b970416 Binary files /dev/null and b/pyserini/encode/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_ance.cpython-38.pyc b/pyserini/encode/__pycache__/_ance.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c445019e8e1b9ea94a45df12921f7f0e67ed997 Binary files /dev/null and b/pyserini/encode/__pycache__/_ance.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_auto.cpython-38.pyc b/pyserini/encode/__pycache__/_auto.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea64f6a332745addddbcf3ce5fc3d2fe08e8b24f Binary files /dev/null and b/pyserini/encode/__pycache__/_auto.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_base.cpython-38.pyc b/pyserini/encode/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01026f430a125d7108ad394a2aa98209d5bcbc94 Binary files /dev/null and b/pyserini/encode/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_cached_data.cpython-38.pyc b/pyserini/encode/__pycache__/_cached_data.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7c2c5dc2fa62546a0cf52656cabef2bbea22185 Binary files /dev/null and b/pyserini/encode/__pycache__/_cached_data.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_dpr.cpython-38.pyc b/pyserini/encode/__pycache__/_dpr.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5650a726550cb72fef6bce4cf8d4dd21b3fe138b Binary files /dev/null and b/pyserini/encode/__pycache__/_dpr.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_slim.cpython-38.pyc b/pyserini/encode/__pycache__/_slim.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f34b25dc6dc6e9520a230d0d50072982aaa77287 Binary files /dev/null and b/pyserini/encode/__pycache__/_slim.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_splade.cpython-38.pyc b/pyserini/encode/__pycache__/_splade.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c10449465d87e8b4fcba72d322edb9e16f14ce4 Binary files /dev/null and b/pyserini/encode/__pycache__/_splade.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_tct_colbert.cpython-38.pyc b/pyserini/encode/__pycache__/_tct_colbert.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8a562259c47065ff7ebca0861a635122c5bc218 Binary files /dev/null and b/pyserini/encode/__pycache__/_tct_colbert.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_tok_freq.cpython-38.pyc b/pyserini/encode/__pycache__/_tok_freq.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc5c7bcf8913fd0bbe2116a00d8cb29a1b763cd5 Binary files /dev/null and b/pyserini/encode/__pycache__/_tok_freq.cpython-38.pyc differ diff --git a/pyserini/encode/__pycache__/_unicoil.cpython-38.pyc b/pyserini/encode/__pycache__/_unicoil.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1b7f7800495393cbaf4c1aa9ba0c08bf72b0bcf Binary files /dev/null and b/pyserini/encode/__pycache__/_unicoil.cpython-38.pyc differ diff --git a/pyserini/encode/_ance.py b/pyserini/encode/_ance.py new file mode 100644 index 0000000000000000000000000000000000000000..10225c2b59a6c406dddbae46a5979703e7b5f750 --- /dev/null +++ b/pyserini/encode/_ance.py @@ -0,0 +1,119 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from typing import Optional + +import torch +from transformers import PreTrainedModel, RobertaConfig, RobertaModel, RobertaTokenizer + +from pyserini.encode import DocumentEncoder, QueryEncoder + + +class AnceEncoder(PreTrainedModel): + config_class = RobertaConfig + base_model_prefix = 'ance_encoder' + load_tf_weights = None + _keys_to_ignore_on_load_missing = [r'position_ids'] + _keys_to_ignore_on_load_unexpected = [r'pooler', r'classifier'] + + def __init__(self, config: RobertaConfig): + super().__init__(config) + self.config = config + self.roberta = RobertaModel(config) + self.embeddingHead = torch.nn.Linear(config.hidden_size, 768) + self.norm = torch.nn.LayerNorm(768) + self.init_weights() + + # Copied from transformers.models.bert.modeling_bert.BertPreTrainedModel._init_weights + def _init_weights(self, module): + """ Initialize the weights """ + if isinstance(module, (torch.nn.Linear, torch.nn.Embedding)): + # Slightly different from the TF version which uses truncated_normal for initialization + # cf https://github.com/pytorch/pytorch/pull/5617 + module.weight.data.normal_(mean=0.0, std=self.config.initializer_range) + elif isinstance(module, torch.nn.LayerNorm): + module.bias.data.zero_() + module.weight.data.fill_(1.0) + if isinstance(module, torch.nn.Linear) and module.bias is not None: + module.bias.data.zero_() + + def init_weights(self): + self.roberta.init_weights() + self.embeddingHead.apply(self._init_weights) + self.norm.apply(self._init_weights) + + def forward( + self, + input_ids: torch.Tensor, + attention_mask: Optional[torch.Tensor] = None, + ): + input_shape = input_ids.size() + device = input_ids.device + if attention_mask is None: + attention_mask = ( + torch.ones(input_shape, device=device) + if input_ids is None + else (input_ids != self.roberta.config.pad_token_id) + ) + outputs = self.roberta(input_ids=input_ids, attention_mask=attention_mask) + sequence_output = outputs.last_hidden_state + pooled_output = sequence_output[:, 0, :] + pooled_output = self.norm(self.embeddingHead(pooled_output)) + return pooled_output + + +class AnceDocumentEncoder(DocumentEncoder): + def __init__(self, model_name, tokenizer_name=None, device='cuda:0'): + self.device = device + self.model = AnceEncoder.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = RobertaTokenizer.from_pretrained(tokenizer_name or model_name) + + def encode(self, texts, titles=None, max_length=256, **kwargs): + if titles is not None: + texts = [f'{title} {text}' for title, text in zip(titles, texts)] + inputs = self.tokenizer( + texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(self.device) + return self.model(inputs["input_ids"]).detach().cpu().numpy() + + +class AnceQueryEncoder(QueryEncoder): + + def __init__(self, model_name: str, tokenizer_name: str = None, device: str = 'cpu'): + self.device = device + self.model = AnceEncoder.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = RobertaTokenizer.from_pretrained(tokenizer_name or tokenizer_name) + + def encode(self, query: str, **kwargs): + inputs = self.tokenizer( + [query], + max_length=64, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(self.device) + embeddings = self.model(inputs["input_ids"]).detach().cpu().numpy() + return embeddings.flatten() diff --git a/pyserini/encode/_auto.py b/pyserini/encode/_auto.py new file mode 100644 index 0000000000000000000000000000000000000000..5e8cf6cd1b778c8e2874ff482407c2174af1bdc2 --- /dev/null +++ b/pyserini/encode/_auto.py @@ -0,0 +1,99 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import numpy as np +from sklearn.preprocessing import normalize +from transformers import AutoModel, AutoTokenizer + +from pyserini.encode import DocumentEncoder, QueryEncoder + + +class AutoDocumentEncoder(DocumentEncoder): + def __init__(self, model_name, tokenizer_name=None, device='cuda:0', pooling='cls', l2_norm=False): + self.device = device + self.model = AutoModel.from_pretrained(model_name) + self.model.to(self.device) + try: + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or model_name) + except: + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or model_name, use_fast=False) + self.has_model = True + self.pooling = pooling + self.l2_norm = l2_norm + + def encode(self, texts, titles=None, max_length=256, add_sep=False, **kwargs): + shared_tokenizer_kwargs = dict( + max_length=max_length, + truncation=True, + padding='longest', + return_attention_mask=True, + return_token_type_ids=False, + return_tensors='pt', + add_special_tokens=True, + ) + input_kwargs = {} + if not add_sep: + input_kwargs["text"] = [f'{title} {text}' for title, text in zip(titles, texts)] if titles is not None else texts + else: + if titles is not None: + input_kwargs["text"] = titles + input_kwargs["text_pair"] = texts + else: + input_kwargs["text"] = texts + + inputs = self.tokenizer(**input_kwargs, **shared_tokenizer_kwargs) + inputs.to(self.device) + outputs = self.model(**inputs) + if self.pooling == "mean": + embeddings = self._mean_pooling(outputs[0], inputs['attention_mask']).detach().cpu().numpy() + else: + embeddings = outputs[0][:, 0, :].detach().cpu().numpy() + if self.l2_norm: + embeddings = normalize(embeddings, axis=1) + return embeddings + + +class AutoQueryEncoder(QueryEncoder): + def __init__(self, model_name: str, tokenizer_name: str = None, device: str = 'cpu', + pooling: str = 'cls', l2_norm: bool = False, prefix=None): + self.device = device + self.model = AutoModel.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or model_name) + self.pooling = pooling + self.l2_norm = l2_norm + self.prefix = prefix + + def encode(self, query: str, **kwargs): + if self.prefix: + query = f'{self.prefix} {query}' + inputs = self.tokenizer( + query, + add_special_tokens=True, + return_tensors='pt', + truncation='only_first', + padding='longest', + return_token_type_ids=False, + ) + inputs.to(self.device) + outputs = self.model(**inputs)[0].detach().cpu().numpy() + if self.pooling == "mean": + embeddings = np.average(outputs, axis=-2) + else: + embeddings = outputs[:, 0, :] + if self.l2_norm: + embeddings = normalize(outputs, norm='l2') + return embeddings.flatten() diff --git a/pyserini/encode/_base.py b/pyserini/encode/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..faf869ba4571e289cfb22dd462019c833f29968a --- /dev/null +++ b/pyserini/encode/_base.py @@ -0,0 +1,217 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import json +import os + +import faiss +import torch +import numpy as np +from tqdm import tqdm + + +class DocumentEncoder: + def encode(self, texts, **kwargs): + pass + + @staticmethod + def _mean_pooling(last_hidden_state, attention_mask): + token_embeddings = last_hidden_state + input_mask_expanded = ( + attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() + ) + sum_embeddings = torch.sum(token_embeddings * input_mask_expanded, 1) + sum_mask = torch.clamp(input_mask_expanded.sum(1), min=1e-9) + return sum_embeddings / sum_mask + + +class QueryEncoder: + def encode(self, text, **kwargs): + pass + + +class PcaEncoder: + def __init__(self, encoder, pca_model_path): + self.encoder = encoder + self.pca_mat = faiss.read_VectorTransform(pca_model_path) + + def encode(self, text, **kwargs): + if isinstance(text, str): + embeddings = self.encoder.encode(text, **kwargs) + embeddings = self.pca_mat.apply_py(np.array([embeddings])) + embeddings = embeddings[0] + else: + embeddings = self.encoder.encode(text, **kwargs) + embeddings = self.pca_mat.apply_py(embeddings) + return embeddings + + +class JsonlCollectionIterator: + def __init__(self, collection_path: str, fields=None, delimiter="\n\n"): + if fields: + self.fields = fields + else: + self.fields = ["text"] + self.delimiter = delimiter + + self.all_info = self._load(collection_path) + self.size = len(self.all_info["id"]) + self.batch_size = 1 + self.shard_id = 0 + self.shard_num = 1 + + def __call__(self, batch_size=1, shard_id=0, shard_num=1): + self.batch_size = batch_size + self.shard_id = shard_id + self.shard_num = shard_num + return self + + def __iter__(self): + total_len = self.size + shard_size = int(total_len / self.shard_num) + start_idx = self.shard_id * shard_size + end_idx = min(start_idx + shard_size, total_len) + if self.shard_id == self.shard_num - 1: + end_idx = total_len + to_yield = {} + for idx in tqdm(range(start_idx, end_idx, self.batch_size)): + for key in self.all_info: + to_yield[key] = self.all_info[key][ + idx : min(idx + self.batch_size, end_idx) + ] + yield to_yield + + def _parse_fields_from_info(self, info): + """ + :params info: dict, containing all fields as speicifed in self.fields either under + the key of the field name or under the key of 'contents'. If under `contents`, this + function will parse the input contents into each fields based the self.delimiter + return: List, each corresponds to the value of self.fields + """ + n_fields = len(self.fields) + + # if all fields are under the key of info, read these rather than 'contents' + if all([field in info for field in self.fields]): + return [info[field].strip() for field in self.fields] + + assert "contents" in info, f"contents not found in info: {info}" + contents = info["contents"] + # whether to remove the final self.delimiter (especially \n) + # in CACM, a \n is always there at the end of contents, which we want to remove; + # but in SciFact, Fiqa, and more, there are documents that only have title but not text (e.g. "This is title\n") + # where the trailing \n indicates empty fields + if contents.count(self.delimiter) == n_fields: + # the user appends one more delimiter to the end, we remove it + if contents.endswith(self.delimiter): + # not using .rstrip() as there might be more than one delimiters at the end + contents = contents[: -len(self.delimiter)] + return [field.strip(" ") for field in contents.split(self.delimiter)] + + def _load(self, collection_path): + filenames = [] + if os.path.isfile(collection_path): + filenames.append(collection_path) + else: + for filename in os.listdir(collection_path): + filenames.append(os.path.join(collection_path, filename)) + all_info = {field: [] for field in self.fields} + all_info["id"] = [] + for filename in filenames: + with open(filename) as f: + for line_i, line in tqdm(enumerate(f)): + # try: + info = json.loads(line) + _id = info.get("id", info.get("docid", None)) + if _id is None: + raise ValueError( + f"Cannot find 'id' or 'docid' from {filename}." + ) + all_info["id"].append(str(_id)) + fields_info = self._parse_fields_from_info(info) + + if len(fields_info) != len(self.fields): + raise ValueError( + f"{len(fields_info)} fields are found at Line#{line_i} in file {filename}." + f"{len(self.fields)} fields expected." + f"Line content: {info['contents']}" + ) + + for i in range(len(fields_info)): + all_info[self.fields[i]].append(fields_info[i]) + # except: + # print(f"skip line with error: {line}") + return all_info + + +class RepresentationWriter: + def __enter__(self): + pass + + def __exit__(self, exc_type, exc_val, exc_tb): + pass + + def write(self, batch_info, fields=None): + pass + + +class JsonlRepresentationWriter(RepresentationWriter): + def __init__(self, dir_path): + self.dir_path = dir_path + self.filename = "embeddings.jsonl" + self.file = None + + def __enter__(self): + if not os.path.exists(self.dir_path): + os.makedirs(self.dir_path) + self.file = open(os.path.join(self.dir_path, self.filename), "w") + + def __exit__(self, exc_type, exc_val, exc_tb): + self.file.close() + + def write(self, batch_info, fields=None): + for i in range(len(batch_info["id"])): + contents = "\n".join([batch_info[key][i] for key in fields]) + vector = batch_info["vector"][i] + vector = vector.tolist() if isinstance(vector, np.ndarray) else vector + self.file.write( + json.dumps( + {"id": batch_info["id"][i], "contents": contents, "vector": vector} + ) + + "\n" + ) + + +class FaissRepresentationWriter(RepresentationWriter): + def __init__(self, dir_path, dimension=768): + self.dir_path = dir_path + self.index_name = "index" + self.id_file_name = "docid" + self.dimension = dimension + self.index = faiss.IndexFlatIP(self.dimension) + self.id_file = None + + def __enter__(self): + if not os.path.exists(self.dir_path): + os.makedirs(self.dir_path) + self.id_file = open(os.path.join(self.dir_path, self.id_file_name), "w") + + def __exit__(self, exc_type, exc_val, exc_tb): + self.id_file.close() + faiss.write_index(self.index, os.path.join(self.dir_path, self.index_name)) + + def write(self, batch_info, fields=None): + for id_ in batch_info["id"]: + self.id_file.write(f"{id_}\n") + self.index.add(np.ascontiguousarray(batch_info["vector"])) diff --git a/pyserini/encode/_cached_data.py b/pyserini/encode/_cached_data.py new file mode 100644 index 0000000000000000000000000000000000000000..87182a607e56121765db6690f51eaba3491f5c37 --- /dev/null +++ b/pyserini/encode/_cached_data.py @@ -0,0 +1,38 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json + +from pyserini.encode import QueryEncoder + + +class CachedDataQueryEncoder(QueryEncoder): + def __init__(self, model_name_or_path): + self.vectors = self._load_from_jsonl(model_name_or_path) + + @staticmethod + def _load_from_jsonl(path): + vectors = {} + with open(path) as f: + for line in f: + info = json.loads(line) + text = info['contents'].strip() + vec = info['vector'] + vectors[text] = vec + return vectors + + def encode(self, text, **kwargs): + return self.vectors[text.strip()] diff --git a/pyserini/encode/_dpr.py b/pyserini/encode/_dpr.py new file mode 100644 index 0000000000000000000000000000000000000000..5ff9062f721b51c77136cd5175f7b0b5d3f19c80 --- /dev/null +++ b/pyserini/encode/_dpr.py @@ -0,0 +1,64 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from transformers import DPRContextEncoder, DPRContextEncoderTokenizer, DPRQuestionEncoder, DPRQuestionEncoderTokenizer + +from pyserini.encode import DocumentEncoder, QueryEncoder + + +class DprDocumentEncoder(DocumentEncoder): + def __init__(self, model_name, tokenizer_name=None, device='cuda:0'): + self.device = device + self.model = DPRContextEncoder.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = DPRContextEncoderTokenizer.from_pretrained(tokenizer_name or model_name) + + def encode(self, texts, titles=None, max_length=256, **kwargs): + if titles: + inputs = self.tokenizer( + titles, + text_pair=texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + else: + inputs = self.tokenizer( + texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(self.device) + return self.model(inputs["input_ids"]).pooler_output.detach().cpu().numpy() + + +class DprQueryEncoder(QueryEncoder): + def __init__(self, model_name: str, tokenizer_name: str = None, device: str = 'cpu'): + self.device = device + self.model = DPRQuestionEncoder.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = DPRQuestionEncoderTokenizer.from_pretrained(tokenizer_name or model_name) + + def encode(self, query: str, **kwargs): + input_ids = self.tokenizer(query, return_tensors='pt') + input_ids.to(self.device) + embeddings = self.model(input_ids["input_ids"]).pooler_output.detach().cpu().numpy() + return embeddings.flatten() diff --git a/pyserini/encode/_slim.py b/pyserini/encode/_slim.py new file mode 100644 index 0000000000000000000000000000000000000000..ea994631af8796c290c137ecf3a9ddd4e420a116 --- /dev/null +++ b/pyserini/encode/_slim.py @@ -0,0 +1,62 @@ +import torch +from transformers import AutoModelForMaskedLM, AutoTokenizer +import numpy as np +import scipy + +from pyserini.encode import QueryEncoder + + +class SlimQueryEncoder(QueryEncoder): + def __init__(self, model_name_or_path, tokenizer_name=None, fusion_weight=.99, device='cpu'): + self.device = device + self.fusion_weight = fusion_weight + self.model = AutoModelForMaskedLM.from_pretrained(model_name_or_path) + self.model.to(self.device) + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or model_name_or_path) + self.reverse_vocab = {v: k for k, v in self.tokenizer.vocab.items()} + + def encode(self, text, max_length=256, topk=20, return_sparse=False, **kwargs): + inputs = self.tokenizer( + [text], + return_tensors="pt", + padding=True, + truncation=True, + max_length=max_length, + add_special_tokens=True, + ) + outputs = self.model(**inputs, return_dict=True) + attention_mask = inputs["attention_mask"][:, 1:] # remove the cls token + logits = outputs.logits[:, 1:, :] # remove the cls token prediction + # routing, assign every token to top-k expert + full_router_repr = torch.log(1 + torch.relu(logits)) * attention_mask.unsqueeze(-1) + expert_weights, expert_ids = torch.topk(full_router_repr, dim=2, k=topk) # B x T x topk + min_expert_weight = torch.min(expert_weights, -1, True)[0] + sparse_expert_weights = torch.where(full_router_repr >= min_expert_weight, full_router_repr, 0) + return self._output_to_weight_dicts(expert_weights.cpu(), expert_ids.cpu(), sparse_expert_weights.cpu(), attention_mask.cpu(), return_sparse)[0] + + def _output_to_weight_dicts(self, batch_expert_weights, batch_expert_ids, batch_sparse_expert_weights, batch_attention, return_sparse): + to_return = [] + for batch_id, sparse_expert_weights in enumerate(batch_sparse_expert_weights): + tok_vector = scipy.sparse.csr_matrix(sparse_expert_weights.detach().numpy()) + upper_vector, lower_vector = {}, {} + max_term, max_weight = None, 0 + for position, (expert_topk_ids, expert_topk_weights, attention_score) in enumerate(zip(batch_expert_ids[batch_id], + batch_expert_weights[batch_id], + batch_attention[batch_id])): + if attention_score > 0: + for expert_id, expert_weight in zip(expert_topk_ids, expert_topk_weights): + if expert_weight > 0: + term, weight = self.reverse_vocab[expert_id.item()], expert_weight.item() + upper_vector[term] = upper_vector.get(term, 0) + weight + if weight > max_weight: + max_term, max_weight = term, weight + if max_term is not None: + lower_vector[term] = lower_vector.get(term, 0) + weight + fusion_vector = {} + for term, weight in upper_vector.items(): + fusion_vector[term] = self.fusion_weight * weight + (1 - self.fusion_weight) * lower_vector.get(term, 0) + if return_sparse: + to_return.append((fusion_vector, tok_vector)) + else: + to_return.append(fusion_vector) + return to_return \ No newline at end of file diff --git a/pyserini/encode/_splade.py b/pyserini/encode/_splade.py new file mode 100644 index 0000000000000000000000000000000000000000..4c6d97e341b1349c3c4ef6251886db6a6e5fbf99 --- /dev/null +++ b/pyserini/encode/_splade.py @@ -0,0 +1,35 @@ +import torch +from transformers import AutoModelForMaskedLM, AutoTokenizer +import numpy as np + +from pyserini.encode import QueryEncoder + + +class SpladeQueryEncoder(QueryEncoder): + def __init__(self, model_name_or_path, tokenizer_name=None, device='cpu'): + self.device = device + self.model = AutoModelForMaskedLM.from_pretrained(model_name_or_path) + self.model.to(self.device) + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or model_name_or_path) + self.reverse_voc = {v: k for k, v in self.tokenizer.vocab.items()} + + def encode(self, text, max_length=256, **kwargs): + inputs = self.tokenizer([text], max_length=max_length, padding='longest', + truncation=True, add_special_tokens=True, + return_tensors='pt').to(self.device) + input_ids = inputs['input_ids'] + input_attention = inputs['attention_mask'] + batch_logits = self.model(input_ids)['logits'] + batch_aggregated_logits, _ = torch.max(torch.log(1 + torch.relu(batch_logits)) + * input_attention.unsqueeze(-1), dim=1) + batch_aggregated_logits = batch_aggregated_logits.cpu().detach().numpy() + return self._output_to_weight_dicts(batch_aggregated_logits)[0] + + def _output_to_weight_dicts(self, batch_aggregated_logits): + to_return = [] + for aggregated_logits in batch_aggregated_logits: + col = np.nonzero(aggregated_logits)[0] + weights = aggregated_logits[col] + d = {self.reverse_voc[k]: float(v) for k, v in zip(list(col), list(weights))} + to_return.append(d) + return to_return diff --git a/pyserini/encode/_tct_colbert.py b/pyserini/encode/_tct_colbert.py new file mode 100644 index 0000000000000000000000000000000000000000..e68dc7d426a746545e3b010b6caf5d3767c0167f --- /dev/null +++ b/pyserini/encode/_tct_colbert.py @@ -0,0 +1,91 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import numpy as np +import torch +if torch.cuda.is_available(): + from torch.cuda.amp import autocast +from transformers import BertModel, BertTokenizer, BertTokenizerFast + +from pyserini.encode import DocumentEncoder, QueryEncoder +from onnxruntime import ExecutionMode, SessionOptions, InferenceSession + + +class TctColBertDocumentEncoder(DocumentEncoder): + def __init__(self, model_name: str, tokenizer_name=None, device='cuda:0'): + self.device = device + self.onnx = False + if model_name.endswith('onnx'): + options = SessionOptions() + self.session = InferenceSession(model_name, options) + self.onnx = True + self.tokenizer = BertTokenizerFast.from_pretrained(tokenizer_name or model_name[:-5]) + else: + self.model = BertModel.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = BertTokenizerFast.from_pretrained(tokenizer_name or model_name) + + def encode(self, texts, titles=None, fp16=False, max_length=512, **kwargs): + if titles is not None: + texts = [f'[CLS] [D] {title} {text}' for title, text in zip(titles, texts)] + else: + texts = ['[CLS] [D] ' + text for text in texts] + inputs = self.tokenizer( + texts, + max_length=max_length, + padding="longest", + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + if self.onnx: + inputs_onnx = {name: np.atleast_2d(value) for name, value in inputs.items()} + inputs.to(self.device) + outputs, _ = self.session.run(None, inputs_onnx) + outputs = torch.from_numpy(outputs).to(self.device) + embeddings = self._mean_pooling(outputs[:, 4:, :], inputs['attention_mask'][:, 4:]) + else: + inputs.to(self.device) + if fp16: + with autocast(): + with torch.no_grad(): + outputs = self.model(**inputs) + else: + outputs = self.model(**inputs) + embeddings = self._mean_pooling(outputs["last_hidden_state"][:, 4:, :], inputs['attention_mask'][:, 4:]) + return embeddings.detach().cpu().numpy() + + +class TctColBertQueryEncoder(QueryEncoder): + def __init__(self, model_name: str, tokenizer_name: str = None, device: str = 'cpu'): + self.device = device + self.model = BertModel.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = BertTokenizer.from_pretrained(tokenizer_name or model_name) + + def encode(self, query: str, **kwargs): + max_length = 36 # hardcode for now + inputs = self.tokenizer( + '[CLS] [Q] ' + query + '[MASK]' * max_length, + max_length=max_length, + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(self.device) + outputs = self.model(**inputs) + embeddings = outputs.last_hidden_state.detach().cpu().numpy() + return np.average(embeddings[:, 4:, :], axis=-2).flatten() diff --git a/pyserini/encode/_tok_freq.py b/pyserini/encode/_tok_freq.py new file mode 100644 index 0000000000000000000000000000000000000000..3574c34123fc38d687b73bb0e258f4be4a0af02e --- /dev/null +++ b/pyserini/encode/_tok_freq.py @@ -0,0 +1,37 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from transformers import AutoTokenizer + +from pyserini.encode import QueryEncoder + + +class TokFreqQueryEncoder(QueryEncoder): + def __init__(self, model_name_or_path=None): + self.tokenizer = AutoTokenizer.from_pretrained(model_name_or_path) if model_name_or_path else None + + def encode(self, text, **kwargs): + vector = {} + if self.tokenizer is not None: + tok_list = self.tokenizer.tokenize(text) + else: + tok_list = text.strip().split() + for tok in tok_list: + if tok not in vector: + vector[tok] = 1 + else: + vector[tok] += 1 + return vector diff --git a/pyserini/encode/_unicoil.py b/pyserini/encode/_unicoil.py new file mode 100644 index 0000000000000000000000000000000000000000..e0f48b131a371e9066d8de5cb2da60e5e98f1c90 --- /dev/null +++ b/pyserini/encode/_unicoil.py @@ -0,0 +1,175 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from typing import Optional + +import torch +if torch.cuda.is_available(): + from torch.cuda.amp import autocast +from transformers import BertConfig, BertModel, BertTokenizer, PreTrainedModel + +from pyserini.encode import DocumentEncoder, QueryEncoder + + +class UniCoilEncoder(PreTrainedModel): + config_class = BertConfig + base_model_prefix = 'coil_encoder' + load_tf_weights = None + + def __init__(self, config: BertConfig): + super().__init__(config) + self.config = config + self.bert = BertModel(config) + self.tok_proj = torch.nn.Linear(config.hidden_size, 1) + self.init_weights() + + # Copied from transformers.models.bert.modeling_bert.BertPreTrainedModel._init_weights + def _init_weights(self, module): + """ Initialize the weights """ + if isinstance(module, (torch.nn.Linear, torch.nn.Embedding)): + # Slightly different from the TF version which uses truncated_normal for initialization + # cf https://github.com/pytorch/pytorch/pull/5617 + module.weight.data.normal_(mean=0.0, std=self.config.initializer_range) + elif isinstance(module, torch.nn.LayerNorm): + module.bias.data.zero_() + module.weight.data.fill_(1.0) + if isinstance(module, torch.nn.Linear) and module.bias is not None: + module.bias.data.zero_() + + def init_weights(self): + self.bert.init_weights() + self.tok_proj.apply(self._init_weights) + + def forward( + self, + input_ids: torch.Tensor, + attention_mask: Optional[torch.Tensor] = None, + ): + input_shape = input_ids.size() + device = input_ids.device + if attention_mask is None: + attention_mask = ( + torch.ones(input_shape, device=device) + if input_ids is None + else (input_ids != self.bert.config.pad_token_id) + ) + outputs = self.bert(input_ids=input_ids, attention_mask=attention_mask) + sequence_output = outputs.last_hidden_state + tok_weights = self.tok_proj(sequence_output) + tok_weights = torch.relu(tok_weights) + return tok_weights + + +class UniCoilDocumentEncoder(DocumentEncoder): + def __init__(self, model_name, tokenizer_name=None, device='cuda:0'): + self.device = device + self.model = UniCoilEncoder.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = BertTokenizer.from_pretrained(tokenizer_name or model_name) + + def encode(self, texts, titles=None, expands=None, fp16=False, max_length=512, **kwargs): + if titles: + texts = [f'{title} {text}' for title, text in zip(titles, texts)] + if expands: + input_ids = self._tokenize_with_injects(texts, expands) + else: + input_ids = self.tokenizer(texts, max_length=max_length, padding='longest', + truncation=True, add_special_tokens=True, + return_tensors='pt').to(self.device)["input_ids"] + if fp16: + with autocast(): + with torch.no_grad(): + batch_weights = self.model(input_ids).cpu().detach().numpy() + else: + batch_weights = self.model(input_ids).cpu().detach().numpy() + batch_token_ids = input_ids.cpu().detach().numpy() + return self._output_to_weight_dicts(batch_token_ids, batch_weights) + + def _output_to_weight_dicts(self, batch_token_ids, batch_weights): + to_return = [] + for i in range(len(batch_token_ids)): + weights = batch_weights[i].flatten() + tokens = self.tokenizer.convert_ids_to_tokens(batch_token_ids[i]) + tok_weights = {} + for j in range(len(tokens)): + tok = str(tokens[j]) + weight = float(weights[j]) + if tok == '[CLS]': + continue + if tok == '[PAD]': + break + if tok not in tok_weights: + tok_weights[tok] = weight + elif weight > tok_weights[tok]: + tok_weights[tok] = weight + to_return.append(tok_weights) + return to_return + + def _tokenize_with_injects(self, texts, expands): + tokenized = [] + max_len = 0 + for text, expand in zip(texts, expands): + text_ids = self.tokenizer.encode(text, add_special_tokens=False, max_length=400, truncation=True) + expand_ids = self.tokenizer.encode(expand, add_special_tokens=False, max_length=100, truncation=True) + injects = set() + for tok_id in expand_ids: + if tok_id not in text_ids: + injects.add(tok_id) + all_tok_ids = [101] + text_ids + [102] + list(injects) + [102] # 101: CLS, 102: SEP + tokenized.append(all_tok_ids) + cur_len = len(all_tok_ids) + if cur_len > max_len: + max_len = cur_len + for i in range(len(tokenized)): + tokenized[i] += [0] * (max_len - len(tokenized[i])) + return torch.tensor(tokenized, device=self.device) + + +class UniCoilQueryEncoder(QueryEncoder): + def __init__(self, model_name_or_path, tokenizer_name=None, device='cpu'): + self.device = device + self.model = UniCoilEncoder.from_pretrained(model_name_or_path) + self.model.to(self.device) + self.tokenizer = BertTokenizer.from_pretrained(tokenizer_name or model_name_or_path) + + def encode(self, text, **kwargs): + max_length = 128 # hardcode for now + input_ids = self.tokenizer([text], max_length=max_length, padding='longest', + truncation=True, add_special_tokens=True, + return_tensors='pt').to(self.device)["input_ids"] + batch_weights = self.model(input_ids).cpu().detach().numpy() + batch_token_ids = input_ids.cpu().detach().numpy() + return self._output_to_weight_dicts(batch_token_ids, batch_weights)[0] + + def _output_to_weight_dicts(self, batch_token_ids, batch_weights): + to_return = [] + for i in range(len(batch_token_ids)): + weights = batch_weights[i].flatten() + tokens = self.tokenizer.convert_ids_to_tokens(batch_token_ids[i]) + tok_weights = {} + for j in range(len(tokens)): + tok = str(tokens[j]) + weight = float(weights[j]) + if tok == '[CLS]': + continue + if tok == '[PAD]': + break + if tok not in tok_weights: + tok_weights[tok] = weight + else: + tok_weights[tok] += weight + to_return.append(tok_weights) + return to_return diff --git a/pyserini/encode/merge_faiss_index.py b/pyserini/encode/merge_faiss_index.py new file mode 100644 index 0000000000000000000000000000000000000000..bc0a929cd7e552237c75f955db1c18d2757ba7a4 --- /dev/null +++ b/pyserini/encode/merge_faiss_index.py @@ -0,0 +1,48 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import glob +import argparse + +import faiss +from tqdm import tqdm + + +parser = argparse.ArgumentParser() +parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) +parser.add_argument('--input', type=str, help='wildcard directory to input indexes', required=True) +parser.add_argument('--output', type=str, help='directory to output full indexes', required=True) +args = parser.parse_args() +os.makedirs(args.output, exist_ok=True) + +# merge index +new_index = faiss.IndexFlatIP(args.dimension) +docid_files = [] +for index_dir in tqdm(sorted(glob.glob(args.input)), desc="Merging Faiss Index"): + index = faiss.read_index(os.path.join(index_dir, 'index')) + docid_files.append(os.path.join(index_dir, 'docid')) + vectors = index.reconstruct_n(0, index.ntotal) + new_index.add(vectors) + +faiss.write_index(new_index, os.path.join(args.output, 'index')) + +# merge docid +with open(os.path.join(args.output, 'docid'), 'w') as wfd: + for f in docid_files: + with open(f, 'r') as f1: + for line in f1: + wfd.write(line) diff --git a/pyserini/encode/query.py b/pyserini/encode/query.py new file mode 100644 index 0000000000000000000000000000000000000000..4cf53a0c69904d0872529c85107687277944956a --- /dev/null +++ b/pyserini/encode/query.py @@ -0,0 +1,83 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + +from tqdm import tqdm +import numpy as np +import pandas as pd +from pyserini.query_iterator import DefaultQueryIterator +from pyserini.encode import DprQueryEncoder, TctColBertQueryEncoder, AnceQueryEncoder, AutoQueryEncoder +from pyserini.encode import UniCoilQueryEncoder, SpladeQueryEncoder + + +def init_encoder(encoder, device): + if 'dpr' in encoder.lower(): + return DprQueryEncoder(encoder, device=device) + elif 'tct' in encoder.lower(): + return TctColBertQueryEncoder(encoder, device=device) + elif 'ance' in encoder.lower(): + return AnceQueryEncoder(encoder, device=device, tokenizer_name='roberta-base') + elif 'sentence-transformers' in encoder.lower(): + return AutoQueryEncoder(encoder, device=device, pooling='mean', l2_norm=True) + elif 'unicoil' in encoder.lower(): + return UniCoilQueryEncoder(encoder, device=device) + elif 'splade' in encoder.lower(): + return SpladeQueryEncoder(encoder, device=device) + else: + return AutoQueryEncoder(encoder, device=device) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--topics', type=str, + help='path to topics file in tsv format or self-contained topics name', required=True) + parser.add_argument('--encoder', type=str, help='encoder model name or path', required=True) + parser.add_argument('--weight-range', type=int, help='range of weights for sparse embedding', required=False) + parser.add_argument('--quant-range', type=int, help='range of quantization for sparse embedding', required=False) + parser.add_argument('--output', type=str, help='path to stored encoded queries', required=True) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', + default='cpu', required=False) + args = parser.parse_args() + + encoder = init_encoder(args.encoder, device=args.device) + query_iterator = DefaultQueryIterator.from_topics(args.topics) + + is_sparse = False + query_ids = [] + query_texts = [] + query_embeddings = [] + for topic_id, text in tqdm(query_iterator): + embedding = encoder.encode(text) + if isinstance(embedding, dict): + is_sparse = True + pseudo_str = [] + for tok, weight in embedding.items(): + weight_quanted = int(np.round(weight/args.weight_range*args.quant_range)) + pseudo_str += [tok] * weight_quanted + pseudo_str = " ".join(pseudo_str) + embedding = pseudo_str + query_ids.append(topic_id) + query_texts.append(text) + query_embeddings.append(embedding) + if is_sparse: + with open(args.output, 'w') as f: + for i in range(len(query_ids)): + f.write(f"{query_ids[i]}\t{query_embeddings[i]}\n") + else: + embeddings = {'id': query_ids, 'text': query_texts, 'embedding': query_embeddings} + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(args.output) diff --git a/pyserini/encoded_corpus_info.py b/pyserini/encoded_corpus_info.py new file mode 100644 index 0000000000000000000000000000000000000000..c5c47459ef8f82e2cb5d2e37f9388cba3a2ecc77 --- /dev/null +++ b/pyserini/encoded_corpus_info.py @@ -0,0 +1,40 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +CORPUS_INFO = { + "scipy-sparse-vectors.msmarco-v1-passage-slimr": { + "description": "MS MARCO passages-v1 corpus encoded by SLIM trained with BM25 negatives. (Scipy)", + "filename": "scipy-sparse-vectors.msmarco-v1-passage-slimr.20230220.tar.gz", + "urls": [ + "https://vault.cs.uwaterloo.ca/s/4MRXSmiDqNH4mgF/download", + ], + "md5": "7ec96c74dced272712fcbb091bb671a8", + "size (bytes)": 16533697862, + "documents": 8841823, + "downloaded": False + }, + "scipy-sparse-vectors.msmarco-v1-passage-slimr-pp": { + "description": "MS MARCO passages-v1 corpus encoded by SLIM trained with cross-encoder distillation and hardnegative mining (Scipy)", + "filename": "scipy-sparse-vectors.msmarco-v1-passage-slimr-pp.20230220.tar.gz", + "urls": [ + "https://vault.cs.uwaterloo.ca/s/gDJnrYGKsq6ir4w/download", + ], + "md5": "05ce2ce5f64b668a487909ab538ef2a5", + "size (bytes)": 15785241481, + "documents": 8841823, + "downloaded": False + }, +} \ No newline at end of file diff --git a/pyserini/encoded_query_info.py b/pyserini/encoded_query_info.py new file mode 100644 index 0000000000000000000000000000000000000000..4f9f2a53da31e21a8ab8171511e5e88a03ea69ee --- /dev/null +++ b/pyserini/encoded_query_info.py @@ -0,0 +1,418 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +QUERY_INFO = { + "tct_colbert-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by TCT-ColBERT", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-msmarco-passage-dev-subset-20210419-9323ec.tar.gz", + ], + "md5": "b2fe6494241639153f26cc61acf3b39d", + "size (bytes)": 20078757, + "total_queries": 6980, + "downloaded": False + }, + "tct_colbert-v2-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by TCT-ColBERT V2", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-v2-msmarco-passage-dev-subset-20210608-5f341b.tar.gz", + ], + "md5": "ee8d76e596aef02c5027a2ffd0ff66f8", + "size (bytes)": 20072992, + "total_queries": 6980, + "downloaded": False + }, + "tct_colbert-v2-hn-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by TCT-ColBERT V2 HN", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-v2-hn-msmarco-passage-dev-subset-20210608-5f341b.tar.gz", + ], + "md5": "f7e39cf2cd3ee53f7f8f2e0a1821431c", + "size (bytes)": 20074411, + "total_queries": 6980, + "downloaded": False + }, + "tct_colbert-v2-hnp-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by TCT-ColBERT V2 HN+", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-v2-hnp-msmarco-passage-dev-subset-20210608-5f341b.tar.gz", + ], + "md5": "bed8036475774d12915c8af2a44612f4", + "size (bytes)": 20078958, + "total_queries": 6980, + "downloaded": False + }, + "tct_colbert-v2-hnp-dl19-passage": { + "description": "TREC DL19-passage queries encoded by TCT-ColBERT V2 HN+", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-v2-hnp-dl19-passage-20230124-99b795.tar.gz", + ], + "md5": "ee945fb0a5b17cba4e2e5d51318fbe05", + "size (bytes)": 125193, + "total_queries": 43, + "downloaded": False + }, + "tct_colbert-v2-hnp-dl20": { + "description": "TREC DL20 queries encoded by TCT-ColBERT V2 HN+", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-v2-hnp-dl20-passage-20230124-99b795.tar.gz", + ], + "md5": "b940d3d38cf5a50a9467a4aa7a59d226", + "size (bytes)": 577645, + "total_queries": 200, + "downloaded": False + }, + "ance-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by ANCE", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance-msmarco-passage-dev-subset-20210419-9323ec.tar.gz", + ], + "md5": "adad81bb1495eff2f0463e809ecc01b8", + "size (bytes)": 19965095, + "total_queries": 6980, + "downloaded": False + }, + "ance-dl19-passage": { + "description": "TREC DL19 passage queries encoded by ANCE", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance-dl19-passage-20230124-99b79.tar.gz", + ], + "md5": "828714ef5481dc49686e14b61881ba06", + "size (bytes)": 124468, + "total_queries": 43, + "downloaded": False + }, + "ance-dl20": { + "description": "TREC DL20 queries encoded by ANCE", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance-dl20-passage-20230124-99b79.tar.gz", + ], + "md5": "79acea9812a5c20d0d0817b07b348d15", + "size (bytes)": 574183, + "total_queries": 200, + "downloaded": False + }, + "tct_colbert-msmarco-doc-dev": { + "description": "MS MARCO Document dev set queries encoded by TCT-ColBERT zero-shot", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-tct_colbert-msmarco-doc-dev-20210419-9323ec.tar.gz", + ], + "md5": "565fe57f92b229643b68fa3263f089a9", + "size (bytes)": 14940124, + "total_queries": 6980, + "downloaded": False + }, + "ance_maxp-msmarco-doc-dev": { + "description": "MS MARCO Document dev set queries encoded by ANCE maxp", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance_maxp-msmarco-doc-dev-20210419-9323ec.tar.gz", + ], + "md5": "3d41ae797cb97e42649c4f4fa7b97d56", + "size (bytes)": 14854155, + "total_queries": 6980, + "downloaded": False + }, + "sbert-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by SBERT", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-sbert-msmarco-passage-dev-subset-20210419-9323ec.tar.gz", + ], + "md5": "dc0d09a0f5803824c1ad46a39417aa1e", + "size (bytes)": 20058701, + "total_queries": 6980, + "downloaded": False + }, + "distilbert_kd-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by SBERT", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-distilbert_kd-msmarco-passage-dev-subset-20210419-9323ec.tar.gz", + ], + "md5": "4706ec91183eefa9771e9311fe4799e0", + "size (bytes)": 20013009, + "total_queries": 6980, + "downloaded": False + }, + "distilbert_kd-dl19-passage": { + "description": "TREC DL19 passage queries encoded by SBERT", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-distilbert_kd-dl19-passage-20230124-99b79.tar.gz", + ], + "md5": "c9fe8c8112a7d4fcda1aa606af77e66a", + "size (bytes)": 124760, + "total_queries": 43, + "downloaded": False + }, + "distilbert_kd-dl20": { + "description": "TREC DL20 queries encoded by SBERT", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-distilbert_kd-dl20-passage-20230124-99b79.tar.gz", + ], + "md5": "09fe19984515145a78183a98e44bd699", + "size (bytes)": 575682, + "total_queries": 200, + "downloaded": False + }, + "distilbert_tas_b-msmarco-passage-dev-subset": { + "description": "MS MARCO passage dev set queries encoded by TAS-B", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-distilbert_dot_tas_b_b256-msmarco-passage-dev-subset-20210527-63276f.tar.gz", + ], + "md5": "17a3f81de7ba497728050b83733b1c46", + "size (bytes)": 20016799, + "total_queries": 6980, + "downloaded": False + }, + "distilbert_tas_b-dl19-passage": { + "description": "TREC DL19 passage queries encoded by TAS-B", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-distilbert_dot_tas_b_b256-dl19-passage-20230124-99b795.tar.gz", + ], + "md5": "a0a23a1be77e6e9e5dfacf32dfcd5e9b", + "size (bytes)": 124809, + "total_queries": 43, + "downloaded": False + }, + "distilbert_tas_b-dl20": { + "description": "TREC DL20 queries encoded by TAS-B", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-distilbert_dot_tas_b_b256-dl20-passage-20230124-99b795.tar.gz", + ], + "md5": "8ffb4d5a17a2c028fb5065ef8a394ab3", + "size (bytes)": 575875, + "total_queries": 200, + "downloaded": False + }, + "dpr_multi-nq-dev": { + "description": "Natural Question dev set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-nq-dev-20210419-9323ec.tar.gz", + ], + "md5": "c2fd32438129e4994ce2ce71e08de875", + "size (bytes)": 25129398, + "total_queries": 8757, + "downloaded": False + }, + "dpr_multi-nq-test": { + "description": "Natural Question test set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-nq-test-20210419-9323ec.tar.gz", + ], + "md5": "1791f1ed078beb3a00847f75023eb020", + "size (bytes)": 10365005, + "total_queries": 3610, + "downloaded": False + }, + "ance_multi-nq-dev": { + "description": "Natural Question dev set questions encoded by ANCE question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance_multi-nq-dev-20210419-9323ec.tar.gz", + ], + "md5": "a3ed32ec8d5a474f61e3c3a9968b26fd", + "size (bytes)": 25163934, + "total_queries": 8757, + "downloaded": False + }, + "ance_multi-nq-test": { + "description": "Natural Question test set questions encoded by ANCE question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance_multi-nq-test-20210419-9323ec.tar.gz", + ], + "md5": "a356202b7c8f73758732c893a76a8005", + "size (bytes)": 10379384, + "total_queries": 3610, + "downloaded": False + }, + "dpr_multi-trivia-dev": { + "description": "TriviaQA dev set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-trivia-dev-20210419-9323ec.tar.gz", + ], + "md5": "efac7b71ef52ca073331e896089456a4", + "size (bytes)": 25517034, + "total_queries": 8837, + "downloaded": False + }, + "dpr_multi-trivia-test": { + "description": "TriviaQA test set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-trivia-test-20210419-9323ec.tar.gz", + ], + "md5": "01e95455d55d0495d806549f04a02c24", + "size (bytes)": 32664437, + "total_queries": 11313, + "downloaded": False + }, + "ance_multi-trivia-dev": { + "description": "TriviaQA dev set questions encoded by ANCE question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance_multi-trivia-dev-20210419-9323ec.tar.gz", + ], + "md5": "bd88499a5785b15ba702173cc0e91417", + "size (bytes)": 25559775, + "total_queries": 8837, + "downloaded": False + }, + "ance_multi-trivia-test": { + "description": "TriviaQA test set questions encoded by ANCE question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-ance_multi-trivia-test-20210419-9323ec.tar.gz", + ], + "md5": "3844dfb7f8feb6b064fa48775a35c6ee", + "size (bytes)": 32717910, + "total_queries": 11313, + "downloaded": False + }, + "dpr_multi-wq-test": { + "description": "Web Questions test set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-wq-test-20210419-9323ec.tar.gz", + ], + "md5": "19aa721632d05afe031cc2da83a9a5a5", + "size (bytes)": 5826854, + "total_queries": 2032, + "downloaded": False + }, + "dpr_multi-squad-test": { + "description": "SQUAD dev set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-squad-test-20210419-9323ec.tar.gz", + ], + "md5": "d11e0f801a488d51ad2a63b0748f4ae0", + "size (bytes)": 30328268, + "total_queries": 10570, + "downloaded": False + }, + "dpr_multi-curated-test": { + "description": "CuratedTREC test set questions encoded by DPR question encoder trained on multiset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_multi-curated-test-20210419-9323ec.tar.gz", + ], + "md5": "d1737d3ec5a080d93350ae76b02c7fd1", + "size (bytes)": 1995280, + "total_queries": 694, + "downloaded": False + }, + "dpr_single_nq-nq-dev": { + "description": "NQ dev set questions encoded by DPR question encoder trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_single_nq-nq-dev-20210419-9323ec.tar.gz", + ], + "md5": "1a992f8d5336dc8654bba5ab7e375ebe", + "size (bytes)": 25123288, + "total_queries": 8757, + "downloaded": False + }, + "dpr_single_nq-nq-test": { + "description": "NQ test set questions encoded by DPR question encoder trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dpr_single_nq-nq-test-20210419-9323ec.tar.gz", + ], + "md5": "e64bb009b6ba8bfe40d4b9967fd69240", + "size (bytes)": 10362252, + "total_queries": 3610, + "downloaded": False + }, + "bpr_single_nq-nq-test": { + "description": "NQ test set questions encoded by BPR question encoder trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-bpr_single_nq-nq-test-20210827-8a8f75.tar.gz", + ], + "md5": "b139d5a096ad52d2abc66fb54ec66158", + "size (bytes)": 11094680, + "total_queries": 3610, + "downloaded": False + }, + "dkrr-dpr-nq-retriever-dpr-nq-dev": { + "description": "DPR-NQ dev set questions encoded by castorini/dkrr-dpr-nq-retriever trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dkrr-dpr-nq-retriever-dpr-nq-dev-20220304-7ffa54.tar.gz", + ], + "md5": "fe1276ae841bd5be6f3e0daac144273a", + "size (bytes)": 25146740, + "total_queries": 8757, + "downloaded": False + }, + "dkrr-dpr-nq-retriever-dpr-nq-test": { + "description": "DPR-NQ test set questions encoded by castorini/dkrr-dpr-nq-retriever trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dkrr-dpr-nq-retriever-dpr-nq-test-20220304-7ffa54.tar.gz", + ], + "md5": "6c7793a0a89e7d10309a6973c52de326", + "size (bytes)": 10370414, + "total_queries": 3610, + "downloaded": False + }, + "dkrr-dpr-nq-retriever-nq-dev": { + "description": "NQ dev set questions encoded by castorini/dkrr-dpr-nq-retriever trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dkrr-dpr-nq-retriever-nq-dev-20220304-7ffa54.tar.gz", + ], + "md5": "3c84c7fb6569d7690d5c38be61d3a5a4", + "size (bytes)": 25146526, + "total_queries": 8757, + "downloaded": False + }, + "dkrr-dpr-nq-retriever-nq-test": { + "description": "NQ test set questions encoded by castorini/dkrr-dpr-nq-retriever trained on NQ dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dkrr-dpr-nq-retriever-nq-test-20220304-7ffa54.tar.gz", + ], + "md5": "cd3c30fc6dfde160983167b59acb17a3", + "size (bytes)": 10370264, + "total_queries": 3610, + "downloaded": False + }, + "dkrr-dpr-tqa-retriever-dpr-tqa-dev": { + "description": "TriviaQA dev set questions encoded by castorini/dkrr-dpr-tqa-retriever trained on TriviaQA dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dkrr-dpr-tqa-retriever-tqa-dev-20220304-7ffa54.tar.gz", + ], + "md5": "f9ca5060cf7794b681cd4fe3d3708c4d", + "size (bytes)": 25540932, + "total_queries": 8837, + "downloaded": False + }, + "dkrr-dpr-tqa-retriever-dpr-tqa-test": { + "description": "TriviaQA test set questions encoded by castorini/dkrr-dpr-tqa-retriever trained on TriviaQA dataset", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-dkrr-dpr-tqa-retriever-tqa-test-20220304-7ffa54.tar.gz", + ], + "md5": "9cbd030c3a4478b7eb8356844bacc45b", + "size (bytes)": 32688909, + "total_queries": 11313, + "downloaded": False + }, + "wiki-6-3-all-dpr2-multi-nq-test": { + "description": "NQ test set questions encoded by castorini/wiki-all-6-3-multi-dpr2-query-encoder.", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-wiki-all-6-3-dpr2-multi-retriever-nq-test-20230103-186fa7.tar.gz", + ], + "md5": "2632ca1392a33e975d505acd5090250a", + "size (bytes)": 10354577, + "total_queries": 3610, + "downloaded": False + }, + "wiki-6-3-all-dpr2-multi-dpr-trivia-test": { + "description": "TriviaQA test set questions encoded by castorini/wiki-all-6-3-multi-dpr2-query-encoder.", + "urls": [ + "https://github.com/castorini/pyserini-data/raw/main/encoded-queries/query-embedding-wiki-all-6-3-dpr2-multi-retriever-dpr-trivia-test-20230103-186fa7.tar.gz", + ], + "md5": "d0abf8ff598daaec35acd972a465b0e2", + "size (bytes)": 32620950, + "total_queries": 11313, + "downloaded": False + } +} diff --git a/pyserini/eval/__init__.py b/pyserini/eval/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/pyserini/eval/__pycache__/__init__.cpython-38.pyc b/pyserini/eval/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36eccc18e1e937e45c181d69d48df1373c0332f4 Binary files /dev/null and b/pyserini/eval/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/eval/__pycache__/trec_eval.cpython-38.pyc b/pyserini/eval/__pycache__/trec_eval.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6625aa9904c130ec1c9a305ba1de1d710c415cd1 Binary files /dev/null and b/pyserini/eval/__pycache__/trec_eval.cpython-38.pyc differ diff --git a/pyserini/eval/convert_msmarco_run_to_trec_run.py b/pyserini/eval/convert_msmarco_run_to_trec_run.py new file mode 100644 index 0000000000000000000000000000000000000000..757ab62abde488a3493c89aff99c96299ad1d13b --- /dev/null +++ b/pyserini/eval/convert_msmarco_run_to_trec_run.py @@ -0,0 +1,34 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert an MS MARCO run file to a TREC run file.') + parser.add_argument('--input', required=True, default='', help='Input MS MARCO run file.') + parser.add_argument('--output', required=True, default='', help='Output TREC run file.') + + args = parser.parse_args() + + with open(args.output, 'w') as fout: + for line in open(args.input): + query_id, doc_id, rank = line.strip().split('\t') + score = 1.0 / int(rank) + fout.write('{} Q0 {} {} {} anserini\n'.format( + query_id, doc_id, rank, score)) + + print('Done!') diff --git a/pyserini/eval/convert_trec_run_to_dpr_retrieval_run.py b/pyserini/eval/convert_trec_run_to_dpr_retrieval_run.py new file mode 100644 index 0000000000000000000000000000000000000000..7ef59efd2bda3691edb018871b2725ff2ee02b07 --- /dev/null +++ b/pyserini/eval/convert_trec_run_to_dpr_retrieval_run.py @@ -0,0 +1,85 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +from tqdm import tqdm + +from pyserini.search import get_topics, get_topics_with_reader +from pyserini.search.lucene import LuceneSearcher +from pyserini.eval.evaluate_dpr_retrieval import has_answers, SimpleTokenizer + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert an TREC run to DPR retrieval result json.') + parser.add_argument('--topics', help='topic name') + parser.add_argument('--topics-file', help='path to a topics file') + parser.add_argument('--topics-reader', help='anserini TopicReader class') + parser.add_argument('--index', required=True, help='Anserini Index that contains raw') + parser.add_argument('--input', required=True, help='Input TREC run file.') + parser.add_argument('--store-raw', action='store_true', help='Store raw text of passage') + parser.add_argument('--regex', action='store_true', default=False, help="regex match") + parser.add_argument('--combine-title-text', action='store_true', help="Make context the concatenation of title and text.") + parser.add_argument('--output', required=True, help='Output DPR Retrieval json file.') + args = parser.parse_args() + + if args.topics_file: + qas = get_topics_with_reader(args.topics_reader, args.topics_file) + elif args.topics: + qas = get_topics(args.topics) + else: + print("No topics file or topics name was provided") + + if os.path.exists(args.index): + searcher = LuceneSearcher(args.index) + else: + searcher = LuceneSearcher.from_prebuilt_index(args.index) + if not searcher: + exit() + + retrieval = {} + tokenizer = SimpleTokenizer() + with open(args.input) as f_in: + for line in tqdm(f_in.readlines()): + question_id, _, doc_id, _, score, _ = line.strip().split() + question_id = int(question_id) + question = qas[question_id]['title'] + answers = qas[question_id]['answers'] + if answers[0] == '"': + answers = answers[1:-1].replace('""', '"') + answers = eval(answers) + if args.combine_title_text: + passage = json.loads(searcher.doc(doc_id).raw()) + ctx = passage['title'] + "\n" + passage['text'] + else: + ctx = json.loads(searcher.doc(doc_id).raw())['contents'] + if question_id not in retrieval: + retrieval[question_id] = {'question': question, 'answers': answers, 'contexts': []} + title, text = ctx.split('\n') + answer_exist = has_answers(text, answers, tokenizer, args.regex) + if args.store_raw: + retrieval[question_id]['contexts'].append( + {'docid': doc_id, + 'score': score, + 'text': ctx, + 'has_answer': answer_exist} + ) + else: + retrieval[question_id]['contexts'].append( + {'docid': doc_id, 'score': score, 'has_answer': answer_exist} + ) + + json.dump(retrieval, open(args.output, 'w'), indent=4, ensure_ascii=False) diff --git a/pyserini/eval/evaluate_dpr_retrieval.py b/pyserini/eval/evaluate_dpr_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..e494cd7bcfd746931f7cba8096a52a5f164f4041 --- /dev/null +++ b/pyserini/eval/evaluate_dpr_retrieval.py @@ -0,0 +1,280 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +Most of the tokenization code here is copied from Facebook/DPR & DrQA codebase to avoid adding an extra dependency +""" + +import argparse +import copy +import json +import logging +import re +import unicodedata +from tqdm import tqdm +import numpy as np + +import regex + +logger = logging.getLogger(__name__) + + +class Tokens(object): + """A class to represent a list of tokenized text.""" + TEXT = 0 + TEXT_WS = 1 + SPAN = 2 + POS = 3 + LEMMA = 4 + NER = 5 + + def __init__(self, data, annotators, opts=None): + self.data = data + self.annotators = annotators + self.opts = opts or {} + + def __len__(self): + """The number of tokens.""" + return len(self.data) + + def slice(self, i=None, j=None): + """Return a view of the list of tokens from [i, j).""" + new_tokens = copy.copy(self) + new_tokens.data = self.data[i: j] + return new_tokens + + def untokenize(self): + """Returns the original text (with whitespace reinserted).""" + return ''.join([t[self.TEXT_WS] for t in self.data]).strip() + + def words(self, uncased=False): + """Returns a list of the text of each token + Args: + uncased: lower cases text + """ + if uncased: + return [t[self.TEXT].lower() for t in self.data] + else: + return [t[self.TEXT] for t in self.data] + + def offsets(self): + """Returns a list of [start, end) character offsets of each token.""" + return [t[self.SPAN] for t in self.data] + + def pos(self): + """Returns a list of part-of-speech tags of each token. + Returns None if this annotation was not included. + """ + if 'pos' not in self.annotators: + return None + return [t[self.POS] for t in self.data] + + def lemmas(self): + """Returns a list of the lemmatized text of each token. + Returns None if this annotation was not included. + """ + if 'lemma' not in self.annotators: + return None + return [t[self.LEMMA] for t in self.data] + + def entities(self): + """Returns a list of named-entity-recognition tags of each token. + Returns None if this annotation was not included. + """ + if 'ner' not in self.annotators: + return None + return [t[self.NER] for t in self.data] + + def ngrams(self, n=1, uncased=False, filter_fn=None, as_strings=True): + """Returns a list of all ngrams from length 1 to n. + Args: + n: upper limit of ngram length + uncased: lower cases text + filter_fn: user function that takes in an ngram list and returns + True or False to keep or not keep the ngram + as_string: return the ngram as a string vs list + """ + + def _skip(gram): + if not filter_fn: + return False + return filter_fn(gram) + + words = self.words(uncased) + ngrams = [(s, e + 1) + for s in range(len(words)) + for e in range(s, min(s + n, len(words))) + if not _skip(words[s:e + 1])] + + # Concatenate into strings + if as_strings: + ngrams = ['{}'.format(' '.join(words[s:e])) for (s, e) in ngrams] + + return ngrams + + def entity_groups(self): + """Group consecutive entity tokens with the same NER tag.""" + entities = self.entities() + if not entities: + return None + non_ent = self.opts.get('non_ent', 'O') + groups = [] + idx = 0 + while idx < len(entities): + ner_tag = entities[idx] + # Check for entity tag + if ner_tag != non_ent: + # Chomp the sequence + start = idx + while (idx < len(entities) and entities[idx] == ner_tag): + idx += 1 + groups.append((self.slice(start, idx).untokenize(), ner_tag)) + else: + idx += 1 + return groups + + +class Tokenizer(object): + """Base tokenizer class. + Tokenizers implement tokenize, which should return a Tokens class. + """ + + def tokenize(self, text): + raise NotImplementedError + + def shutdown(self): + pass + + def __del__(self): + self.shutdown() + + +class SimpleTokenizer(Tokenizer): + ALPHA_NUM = r'[\p{L}\p{N}\p{M}]+' + NON_WS = r'[^\p{Z}\p{C}]' + + def __init__(self, **kwargs): + """ + Args: + annotators: None or empty set (only tokenizes). + """ + self._regexp = regex.compile( + '(%s)|(%s)' % (self.ALPHA_NUM, self.NON_WS), + flags=regex.IGNORECASE + regex.UNICODE + regex.MULTILINE + ) + if len(kwargs.get('annotators', {})) > 0: + logger.warning('%s only tokenizes! Skipping annotators: %s' % + (type(self).__name__, kwargs.get('annotators'))) + self.annotators = set() + + def tokenize(self, text): + data = [] + matches = [m for m in self._regexp.finditer(text)] + for i in range(len(matches)): + # Get text + token = matches[i].group() + + # Get whitespace + span = matches[i].span() + start_ws = span[0] + if i + 1 < len(matches): + end_ws = matches[i + 1].span()[0] + else: + end_ws = span[1] + + # Format data + data.append(( + token, + text[start_ws: end_ws], + span, + )) + return Tokens(data, self.annotators) + + +def regex_match(text, pattern): + """Test if a regex pattern is contained within a text.""" + try: + pattern = re.compile( + pattern, + flags=re.IGNORECASE + re.UNICODE + re.MULTILINE, + ) + except BaseException: + return False + return pattern.search(text) is not None + + +def _normalize(text): + return unicodedata.normalize('NFD', text) + + +def has_answers(text, answers, tokenizer, regex=False): + text = _normalize(text) + if regex: + for ans in answers: + ans = _normalize(ans) + if regex_match(text, ans): + return True + else: + text = tokenizer.tokenize(text).words(uncased=True) + for ans in answers: + ans = _normalize(ans) + ans = tokenizer.tokenize(ans).words(uncased=True) + for i in range(0, len(text) - len(ans) + 1): + if ans == text[i: i + len(ans)]: + return True + return False + + +def evaluate_retrieval(retrieval_file, topk, regex=False): + tokenizer = SimpleTokenizer() + retrieval = json.load(open(retrieval_file)) + accuracy = { k : [] for k in topk } + max_k = max(topk) + + for qid in tqdm(list(retrieval.keys())): + answers = retrieval[qid]['answers'] + contexts = retrieval[qid]['contexts'] + has_ans_idx = max_k # first index in contexts that has answers + + for idx, ctx in enumerate(contexts): + if idx >= max_k: + break + if 'has_answer' in ctx: + if ctx['has_answer']: + has_ans_idx = idx + break + else: + text = ctx['text'].split('\n')[1] # [0] is title, [1] is text + if has_answers(text, answers, tokenizer, regex): + has_ans_idx = idx + break + + for k in topk: + accuracy[k].append(0 if has_ans_idx >= k else 1) + + for k in topk: + print(f'Top{k}\taccuracy: {np.mean(accuracy[k]):.4f}') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--retrieval', type=str, metavar='path', + help="Path to retrieval output file.") + parser.add_argument('--topk', type=int, nargs='+', help="topk to evaluate") + parser.add_argument('--regex', action='store_true', default=False, help="regex match") + args = parser.parse_args() + + evaluate_retrieval(args.retrieval, args.topk, args.regex) diff --git a/pyserini/eval/evaluate_kilt_retrieval.py b/pyserini/eval/evaluate_kilt_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..6de8ac2ece2718cdc5f33e25e1b950770d04ad6f --- /dev/null +++ b/pyserini/eval/evaluate_kilt_retrieval.py @@ -0,0 +1,377 @@ +# NOTE: This code is taken from the original KILT library's retrieval evaluation script +# https://github.com/facebookresearch/KILT/blob/9bcb119a7ed5fda88826058b062d0e45c726c676/kilt/eval_retrieval.py + +import argparse +import pprint +import json +from collections import defaultdict, OrderedDict + +import os +from pyserini.query_iterator import KiltQueryIterator + + +########################################################################################## +# Replaced: +# from kilt import kilt_utils +# With the following directly imported code: + +def load_data(filename): + data = [] + with open(filename, "r") as fin: + lines = fin.readlines() + for line in lines: + data.append(json.loads(line)) + return data + + +########################################################################################## +# Replaced: +# from kilt import eval_downstream +# With the following directly imported code: + +def validate_input(gold_records, guess_records): + + if len(gold_records) != len(guess_records): + print( + "WARNING: DIFFERENT SIZE gold: {} guess: {}".format( + len(gold_records), len(guess_records) + ) + ) + + # align order + gold_ids = [] + for gold in gold_records: + assert str(gold["id"]).strip() not in gold_ids, "Gold IDs should be unique" + gold_ids.append(str(gold["id"]).strip()) + + id2guess_record = {} + for guess in guess_records: + assert ( + str(guess["id"]).strip() not in id2guess_record + ), "Prediction IDs should be unique" + id2guess_record[str(guess["id"]).strip()] = guess + + guess_records = [] + for id in gold_ids: + if id in id2guess_record: + guess_records.append(id2guess_record[id]) + else: + raise ValueError("ERROR: no prediction provided for id: {}".format(id)) + + return gold_records, guess_records + +########################################################################################## + + +def _remove_duplicates(obj): + obj_tmp = [] + for o in obj: + if o not in obj_tmp: + obj_tmp.append(o) + return obj_tmp + + +def _get_ids_list(datapoint, rank_keys, verbose=False): + # collect all gold ids + ids_list = [] + for output in datapoint["output"]: + current_ids_list = [] + if "provenance" in output: + for provenance in output["provenance"]: + if any(rank_key not in provenance for rank_key in rank_keys): + missing = set(rank_keys) - set( + list(provenance.keys()) + ).intersection(set(rank_keys)) + if verbose: + print( + f"WARNING: missing key(s) {missing} in provenance, unable to compute retrieval for those." + ) + else: + current_ids_list.append( + "+".join( + [ + str(provenance[rank_key]).strip() + for rank_key in rank_keys + ] + ) + ) + ids_list.append(_remove_duplicates(current_ids_list)) # remove duplicates + + # consider only unique ids + return ids_list + + +def get_rank(guess_item, gold_item, k, rank_keys, verbose=False): + """ + The main idea is to consider each evidence set as a single point in the rank. + The score in the rank for an evidence set is given by the lowest scored evidence in the set. + """ + + assert k > 0, "k must be a positive integer grater than 0." + + rank = [] + num_distinct_evidence_sets = 0 + + guess_ids = _get_ids_list(guess_item, rank_keys)[0] + + if guess_ids and len(guess_ids) > 0: + + # 1. collect evidence sets and their sizes + evidence_sets = [] + e_size = defaultdict(int) + for output in gold_item["output"]: + if "provenance" in output: + e_set = { + "+".join( + [str(provenance[rank_key]).strip() for rank_key in rank_keys] + ) + for provenance in output["provenance"] + } + if e_set not in evidence_sets: # no duplicate evidence set + evidence_sets.append(e_set) + e_size[len(e_set)] += 1 + num_distinct_evidence_sets = len(evidence_sets) + + # 2. check what's the minimum number of predicted pages needed to get a robust P/R@k + min_prediction_size = 0 + c = 0 + for size, freq in sorted(e_size.items(), reverse=True): + for _ in range(freq): + min_prediction_size += size + c += 1 + if c == k: + break + if c == k: + break + # if the number of evidence sets is smaller than k + min_prediction_size += k - c + + if verbose and len(guess_ids) < min_prediction_size: + print( + f"WARNING: you should provide at least {min_prediction_size} provenance items for a robust recall@{k} computation (you provided {len(guess_ids)} item(s))." + ) + + # 3. rank by gruping pages in each evidence set (each evidence set count as 1), + # the position in the rank of each evidence set is given by the last page in guess_ids + # non evidence pages counts as 1 + rank = [] + for guess_id in guess_ids: + guess_id = str(guess_id).strip() + found = False + for idx, e_set in enumerate(evidence_sets): + + e_set_id = f"evidence_set:{idx}" + + if guess_id in e_set: + found = True + + # remove from the rank previous points referring to this evidence set + if e_set_id in rank: + rank.remove(e_set_id) + + # remove the guess_id from the evidence set + e_set.remove(guess_id) + + if len(e_set) == 0: + # it was the last evidence, it counts as true in the rank + rank.append(True) + else: + # add a point for this partial evidence set + rank.append(e_set_id) + + if not found: + rank.append(False) + + return rank, num_distinct_evidence_sets + + +# 1. Precision computation +def _precision_at_k(rank, k): + + # precision @ k + p = rank[:k].count(True) / k + + return p + + +# 2. Recall computation +def _recall_at_k(rank, num_distinct_evidence_sets, k): + + r = rank[:k].count(True) / num_distinct_evidence_sets + + return r + + +# 3. Success rate computation +def _success_rate_at_k(rank, k): + + # success rate @ k + p = int(True in rank[:k]) + + return p + + +def _computeRprec(guess_ids, gold_ids): + + R = len(gold_ids) + num = 0 + + for prediction in guess_ids[:R]: + if str(prediction).strip() in gold_ids: + num += 1 + + Rprec = num / R if R > 0 else 0 + return Rprec + + +# R-precision https://link.springer.com/referenceworkentry/10.1007%2F978-0-387-39940-9_486 +def rprecision(guess_item, gold_item, rank_keys): + gold_ids_list = _get_ids_list(gold_item, rank_keys) + guess_ids = _get_ids_list(guess_item, rank_keys)[0] + Rprec_vector = [] + for gold_ids in gold_ids_list: + Rprec = _computeRprec(guess_ids, gold_ids) + Rprec_vector.append(Rprec) + return max(Rprec_vector) + + +def get_ranking_metrics(guess_item, gold_item, ks, rank_keys): + + Rprec = 0 + P_at_k = {"precision@{}".format(k): 0 for k in sorted(ks) if k > 0} + R_at_k = {"recall@{}".format(k): 0 for k in sorted(ks) if k > 1} + S_at_k = {"success_rate@{}".format(k): 0 for k in sorted(ks) if k > 1} + + assert ( + "output" in guess_item and len(guess_item["output"]) == 1 + ), f"guess should provide exactly one output for {guess_item['id']}" + + Rprec = rprecision(guess_item, gold_item, rank_keys=rank_keys) + for k in ks: + + # 0. get rank + rank, num_distinct_evidence_sets = get_rank( + guess_item, gold_item, k, rank_keys=rank_keys + ) + + if num_distinct_evidence_sets > 0: + + # 1. precision + P_at_k["precision@{}".format(k)] = _precision_at_k(rank, k) + + # 2. recall + R_at_k["recall@{}".format(k)] = _recall_at_k( + rank, num_distinct_evidence_sets, k + ) + + # 3. success rate + S_at_k["success_rate@{}".format(k)] = _success_rate_at_k(rank, k) + + # else: + # print( + # "WARNING: the number of distinct evidence sets is 0 for {}".format( + # gold_item + # ) + # ) + + return {"Rprec": Rprec, **P_at_k, **R_at_k, **S_at_k} + + +def compute(gold_dataset, guess_dataset, ks, rank_keys): + + ks = sorted([int(x) for x in ks]) + + result = OrderedDict() + result["Rprec"] = 0.0 + for k in ks: + if k > 0: + result["precision@{}".format(k)] = 0.0 + if k > 1: + result["recall@{}".format(k)] = 0.0 + result["success_rate@{}".format(k)] = 0.0 + + assert len(guess_dataset) == len( + gold_dataset + ), "different size gold: {} guess: {}".format(len(guess_dataset), len(gold_dataset)) + + for gold, guess in zip(guess_dataset, gold_dataset): + assert ( + str(gold["id"]).strip() == str(guess["id"]).strip() + ), "Items must have same order with same IDs" + + for guess_item, gold_item in zip(guess_dataset, gold_dataset): + ranking_metrics = get_ranking_metrics(guess_item, gold_item, ks, rank_keys) + result["Rprec"] += ranking_metrics["Rprec"] + for k in ks: + if k > 0: + result["precision@{}".format(k)] += ranking_metrics[ + "precision@{}".format(k) + ] + if k > 1: + result["recall@{}".format(k)] += ranking_metrics["recall@{}".format(k)] + result["success_rate@{}".format(k)] += ranking_metrics[ + "success_rate@{}".format(k) + ] + + if len(guess_dataset) > 0: + result["Rprec"] /= len(guess_dataset) + for k in ks: + if k > 0: + result["precision@{}".format(k)] /= len(guess_dataset) + if k > 1: + result["recall@{}".format(k)] /= len(guess_dataset) + result["success_rate@{}".format(k)] /= len(guess_dataset) + + return result + + +def evaluate(gold, guess, ks, rank_keys): + pp = pprint.PrettyPrinter(indent=4) + + gold_dataset = load_data(gold) + guess_dataset = load_data(guess) + + # 0. validate input + gold_dataset, guess_dataset = validate_input( + gold_dataset, guess_dataset + ) + + # 1. get retrieval metrics + result = compute(gold_dataset, guess_dataset, ks, rank_keys) + + pp.pprint(result) + return result + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("guess", help="Guess KILT file") + parser.add_argument("gold", help="Gold KILT file") + parser.add_argument( + "--ks", + type=str, + required=False, + default="1,5,10,20", + help="Comma separated list of positive integers for recall@k and precision@k", + ) + parser.add_argument( + "--rank_keys", + type=str, + required=False, + default="wikipedia_id", + help="Comma separated list of rank keys for recall@k and precision@k", + ) + + args = parser.parse_args() + args.ks = [int(k) for k in args.ks.split(",")] + args.rank_keys = [rank_key for rank_key in args.rank_keys.split(",")] + + ########################################################################################## + # Pyserini change: + # Download gold file if necessary + gold = args.gold + if not os.path.exists(args.gold): + gold = KiltQueryIterator.download_kilt_topics(gold) + ########################################################################################## + + evaluate(gold, args.guess, args.ks, args.rank_keys) diff --git a/pyserini/eval/evaluate_qa_overlap_retrieval.py b/pyserini/eval/evaluate_qa_overlap_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..dd5163922e4ab895fd989f2d2fee4555cdf8475a --- /dev/null +++ b/pyserini/eval/evaluate_qa_overlap_retrieval.py @@ -0,0 +1,326 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +Most of the tokenization code here is copied from Facebook/DPR & DrQA codebase to avoid adding an extra dependency +""" + +import argparse +import copy +import json +import logging +import re +import unicodedata +from tqdm import tqdm +import numpy as np +import os +import regex +import collections + +logger = logging.getLogger(__name__) + + +DIRNAME = os.path.dirname(os.path.abspath(__file__)) +# download dependencies +if not os.path.exists('data/nq-annotations.jsonl'): + ANNOTATIONS_TO_DOWNLOAD = [ + ('https://dl.fbaipublicfiles.com/qaoverlap/data/nq-annotations.jsonl','nq-annotations.jsonl'), + ('https://dl.fbaipublicfiles.com/qaoverlap/data/triviaqa-annotations.jsonl', 'triviaqa-annotations.jsonl'), + ('https://dl.fbaipublicfiles.com/qaoverlap/data/webquestions-annotations.jsonl','webquestions-annotations.jsonl') + ] + + for link, dest in ANNOTATIONS_TO_DOWNLOAD: + os.system(f'wget {link} -P data/') + +ANNOTATION_PATHS = { + 'tqa': os.path.join(DIRNAME, '../../data/triviaqa-annotations.jsonl'), + 'nq': os.path.join(DIRNAME, '../../data/nq-annotations.jsonl'), + 'webquestions': os.path.join(DIRNAME, '../../data/webquestions-annotations.jsonl'), +} + +class Tokens(object): + """A class to represent a list of tokenized text.""" + TEXT = 0 + TEXT_WS = 1 + SPAN = 2 + POS = 3 + LEMMA = 4 + NER = 5 + + def __init__(self, data, annotators, opts=None): + self.data = data + self.annotators = annotators + self.opts = opts or {} + + def __len__(self): + """The number of tokens.""" + return len(self.data) + + def slice(self, i=None, j=None): + """Return a view of the list of tokens from [i, j).""" + new_tokens = copy.copy(self) + new_tokens.data = self.data[i: j] + return new_tokens + + def untokenize(self): + """Returns the original text (with whitespace reinserted).""" + return ''.join([t[self.TEXT_WS] for t in self.data]).strip() + + def words(self, uncased=False): + """Returns a list of the text of each token + Args: + uncased: lower cases text + """ + if uncased: + return [t[self.TEXT].lower() for t in self.data] + else: + return [t[self.TEXT] for t in self.data] + + def offsets(self): + """Returns a list of [start, end) character offsets of each token.""" + return [t[self.SPAN] for t in self.data] + + def pos(self): + """Returns a list of part-of-speech tags of each token. + Returns None if this annotation was not included. + """ + if 'pos' not in self.annotators: + return None + return [t[self.POS] for t in self.data] + + def lemmas(self): + """Returns a list of the lemmatized text of each token. + Returns None if this annotation was not included. + """ + if 'lemma' not in self.annotators: + return None + return [t[self.LEMMA] for t in self.data] + + def entities(self): + """Returns a list of named-entity-recognition tags of each token. + Returns None if this annotation was not included. + """ + if 'ner' not in self.annotators: + return None + return [t[self.NER] for t in self.data] + + def ngrams(self, n=1, uncased=False, filter_fn=None, as_strings=True): + """Returns a list of all ngrams from length 1 to n. + Args: + n: upper limit of ngram length + uncased: lower cases text + filter_fn: user function that takes in an ngram list and returns + True or False to keep or not keep the ngram + as_string: return the ngram as a string vs list + """ + + def _skip(gram): + if not filter_fn: + return False + return filter_fn(gram) + + words = self.words(uncased) + ngrams = [(s, e + 1) + for s in range(len(words)) + for e in range(s, min(s + n, len(words))) + if not _skip(words[s:e + 1])] + + # Concatenate into strings + if as_strings: + ngrams = ['{}'.format(' '.join(words[s:e])) for (s, e) in ngrams] + + return ngrams + + def entity_groups(self): + """Group consecutive entity tokens with the same NER tag.""" + entities = self.entities() + if not entities: + return None + non_ent = self.opts.get('non_ent', 'O') + groups = [] + idx = 0 + while idx < len(entities): + ner_tag = entities[idx] + # Check for entity tag + if ner_tag != non_ent: + # Chomp the sequence + start = idx + while (idx < len(entities) and entities[idx] == ner_tag): + idx += 1 + groups.append((self.slice(start, idx).untokenize(), ner_tag)) + else: + idx += 1 + return groups + + +class Tokenizer(object): + """Base tokenizer class. + Tokenizers implement tokenize, which should return a Tokens class. + """ + + def tokenize(self, text): + raise NotImplementedError + + def shutdown(self): + pass + + def __del__(self): + self.shutdown() + + +class SimpleTokenizer(Tokenizer): + ALPHA_NUM = r'[\p{L}\p{N}\p{M}]+' + NON_WS = r'[^\p{Z}\p{C}]' + + def __init__(self, **kwargs): + """ + Args: + annotators: None or empty set (only tokenizes). + """ + self._regexp = regex.compile( + '(%s)|(%s)' % (self.ALPHA_NUM, self.NON_WS), + flags=regex.IGNORECASE + regex.UNICODE + regex.MULTILINE + ) + if len(kwargs.get('annotators', {})) > 0: + logger.warning('%s only tokenizes! Skipping annotators: %s' % + (type(self).__name__, kwargs.get('annotators'))) + self.annotators = set() + + def tokenize(self, text): + data = [] + matches = [m for m in self._regexp.finditer(text)] + for i in range(len(matches)): + # Get text + token = matches[i].group() + + # Get whitespace + span = matches[i].span() + start_ws = span[0] + if i + 1 < len(matches): + end_ws = matches[i + 1].span()[0] + else: + end_ws = span[1] + + # Format data + data.append(( + token, + text[start_ws: end_ws], + span, + )) + return Tokens(data, self.annotators) + + +def regex_match(text, pattern): + """Test if a regex pattern is contained within a text.""" + try: + pattern = re.compile( + pattern, + flags=re.IGNORECASE + re.UNICODE + re.MULTILINE, + ) + except BaseException: + return False + return pattern.search(text) is not None + + +def _normalize(text): + return unicodedata.normalize('NFD', text) + + +def read_jsonl(path): + with open(path) as f: + return [json.loads(l) for l in f] + + +def read_annotations(annotations_data_path): + return read_jsonl(annotations_data_path) + + +def has_answers(text, answers, tokenizer, regex=False): + text = _normalize(text) + if regex: + for ans in answers: + ans = _normalize(ans) + if regex_match(text, ans): + return True + else: + text = tokenizer.tokenize(text).words(uncased=True) + for ans in answers: + ans = _normalize(ans) + ans = tokenizer.tokenize(ans).words(uncased=True) + for i in range(0, len(text) - len(ans) + 1): + if ans == text[i: i + len(ans)]: + return True + return False + + +def evaluate_retrieval(retrieval_file, topk, annotation_file, regex=False): + tokenizer = SimpleTokenizer() + retrieval = json.load(open(retrieval_file)) + annotations = read_annotations(annotation_file) + annotation_ids = {int(a['id']): a['labels'] for a in annotations} + accuracy = { k : collections.defaultdict(list) for k in topk } + max_k = max(topk) + annotation_labels = [ + 'total', + 'no_overlap', + 'question_overlap', + 'no_question_overlap', + 'answer_overlap', + 'no_answer_overlap', + 'answer_overlap_only' + ] + + + for qid in retrieval.keys(): + answers = retrieval[qid]['answers'] + contexts = retrieval[qid]['contexts'] + has_ans_idx = max_k # first index in contexts that has answers + + for idx, ctx in enumerate(contexts): + if idx >= max_k: + break + if 'has_answer' in ctx: + if ctx['has_answer']: + has_ans_idx = idx + break + else: + text = ctx['text'].split('\n')[1] # [0] is title, [1] is text + if has_answers(text, answers, tokenizer, regex): + has_ans_idx = idx + break + + for annotation_label in annotation_labels: + if annotation_label in annotation_ids[int(qid)] or annotation_label == 'total' or \ + (annotation_label == 'no_overlap' and ('no_question_overlap' in annotation_ids[int(qid)]) and ('no_answer_overlap' in annotation_ids[int(qid)])): + for k in topk: + accuracy[k][annotation_label].append(0 if has_ans_idx >= k else 1) + + for k in topk: + for annotation_label in annotation_labels: + print(f'Top{k}\taccuracy: {np.mean(accuracy[k][annotation_label])} \t {annotation_label}') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--retrieval', type=str, metavar='path', + help="Path to retrieval output file.") + parser.add_argument('--topk', type=int, nargs='+', help="topk to evaluate") + parser.add_argument('--regex', action='store_true', default=False, help="regex match") + parser.add_argument('--dataset_name', choices=['nq', 'tqa', 'webquestions'], type=str, + help='name of datset to evaluate on') + args = parser.parse_args() + + evaluate_retrieval(args.retrieval, args.topk, ANNOTATION_PATHS[args.dataset_name], args.regex) diff --git a/pyserini/eval/msmarco_doc_eval.py b/pyserini/eval/msmarco_doc_eval.py new file mode 100644 index 0000000000000000000000000000000000000000..4b818cde3c924d231112eb9f7ec9948af0c08d4e --- /dev/null +++ b/pyserini/eval/msmarco_doc_eval.py @@ -0,0 +1,46 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import subprocess +import sys +import platform + +from pyserini.search import get_qrels_file +from pyserini.util import download_evaluation_script + +script_path = download_evaluation_script('msmarco_doc_eval') +cmd_prefix = ['python', script_path] +args = sys.argv +if len(args) > 1: + cmd = cmd_prefix + args[1:] + for i in range(len(cmd)-1): + if cmd[i] == '--judgments': + if not os.path.exists(cmd[i+1]): + cmd[i+1] = get_qrels_file(cmd[i + 1]) +else: + cmd = cmd_prefix +print(f'Running command: {cmd}') +shell = platform.system() == "Windows" +process = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + shell=shell) +stdout, stderr = process.communicate() +if stderr: + print(stderr.decode("utf-8")) +print('Results:') +print(stdout.decode("utf-8")) diff --git a/pyserini/eval/msmarco_passage_eval.py b/pyserini/eval/msmarco_passage_eval.py new file mode 100644 index 0000000000000000000000000000000000000000..c5a07f950c9f0eaf00dbf60d8bcd16a69eadeafb --- /dev/null +++ b/pyserini/eval/msmarco_passage_eval.py @@ -0,0 +1,44 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import subprocess +import sys +import platform + +from pyserini.search import get_qrels_file +from pyserini.util import download_evaluation_script + +script_path = download_evaluation_script('msmarco_passage_eval') +cmd_prefix = ['python', script_path] +args = sys.argv +if len(args) > 1: + cmd = cmd_prefix + args[1:] + if not os.path.exists(cmd[-2]): + cmd[-2] = get_qrels_file(cmd[-2]) +else: + cmd = cmd_prefix +print(f'Running command: {cmd}') +shell = platform.system() == "Windows" +process = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + shell=shell) +stdout, stderr = process.communicate() +if stderr: + print(stderr.decode("utf-8")) +print('Results:') +print(stdout.decode("utf-8")) diff --git a/pyserini/eval/trec_eval.py b/pyserini/eval/trec_eval.py new file mode 100644 index 0000000000000000000000000000000000000000..b72f7c9f81e0539fcd19d43cfa7664c6471b185e --- /dev/null +++ b/pyserini/eval/trec_eval.py @@ -0,0 +1,112 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +# Example usage +# python -m pyserini.eval.trec_eval -m ndcg_cut.10,20 -m all_trec qrels.dev.small.tsv runs/run.Colbert.txt -remove-unjudged -cutoffs.20,50 + + +import os +import re +import subprocess +import sys +import platform +import pandas as pd +import tempfile + +from pyserini.search import get_qrels_file +from pyserini.util import download_evaluation_script + +script_path = download_evaluation_script('trec_eval') +cmd_prefix = ['java', '-jar', script_path] +args = sys.argv + +# Option to discard non-judged hits in run file +judged_docs_only = '' +judged_result = [] +cutoffs = [] + +if '-remove-unjudged' in args: + judged_docs_only = args.pop(args.index('-remove-unjudged')) + +if any([i.startswith('judged.') for i in args]): + # Find what position the arg is in. + idx = [i.startswith('judged.') for i in args].index(True) + cutoffs = args.pop(idx) + cutoffs = list(map(int, cutoffs[7:].split(','))) + # Get rid of the '-m' before the 'judged.xxx' option + args.pop(idx-1) + +temp_file = '' + +if len(args) > 1: + if not os.path.exists(args[-2]): + args[-2] = get_qrels_file(args[-2]) + if os.path.exists(args[-1]): + # Convert run to trec if it's on msmarco + with open(args[-1]) as f: + first_line = f.readline() + if 'Q0' not in first_line: + temp_file = tempfile.NamedTemporaryFile(delete=False).name + print('msmarco run detected. Converting to trec...') + run = pd.read_csv(args[-1], delim_whitespace=True, header=None, names=['query_id', 'doc_id', 'rank']) + run['score'] = 1 / run['rank'] + run.insert(1, 'Q0', 'Q0') + run['name'] = 'TEMPRUN' + run.to_csv(temp_file, sep='\t', header=None, index=None) + args[-1] = temp_file + + run = pd.read_csv(args[-1], delim_whitespace=True, header=None) + qrels = pd.read_csv(args[-2], delim_whitespace=True, header=None) + + # cast doc_id column as string + run[0] = run[0].astype(str) + qrels[0] = qrels[0].astype(str) + + # Discard non-judged hits + if judged_docs_only: + if not temp_file: + temp_file = tempfile.NamedTemporaryFile(delete=False).name + judged_indexes = pd.merge(run[[0,2]].reset_index(), qrels[[0,2]], on = [0,2])['index'] + run = run.loc[judged_indexes] + run.to_csv(temp_file, sep='\t', header=None, index=None) + args[-1] = temp_file + # Measure judged@cutoffs + for cutoff in cutoffs: + run_cutoff = run.groupby(0).head(cutoff) + judged = len(pd.merge(run_cutoff[[0,2]], qrels[[0,2]], on = [0,2])) / len(run_cutoff) + metric_name = f'judged_{cutoff}' + judged_result.append(f'{metric_name:22}\tall\t{judged:.4f}') + cmd = cmd_prefix + args[1:] +else: + cmd = cmd_prefix + +print(f'Running command: {cmd}') +shell = platform.system() == "Windows" +process = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + shell=shell) +stdout, stderr = process.communicate() +if stderr: + print(stderr.decode("utf-8")) + +print('Results:') +print(stdout.decode("utf-8").rstrip()) + +for judged in judged_result: + print(judged) + +if temp_file: + os.remove(temp_file) diff --git a/pyserini/evaluate_script_info.py b/pyserini/evaluate_script_info.py new file mode 100644 index 0000000000000000000000000000000000000000..4e583578bda5cad2c3fce388bce6afe233669545 --- /dev/null +++ b/pyserini/evaluate_script_info.py @@ -0,0 +1,37 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +EVALUATION_INFO = { + "trec_eval": { + "description": "TREC evaluation script", + "urls": [ + "https://search.maven.org/remotecontent?filepath=uk/ac/gla/dcs/terrierteam/jtreceval/0.0.5/jtreceval-0.0.5-jar-with-dependencies.jar", + ], + }, + "msmarco_passage_eval": { + "description": "MSMARCO-passage evaluation script", + "urls": [ + "https://raw.githubusercontent.com/castorini/anserini-tools/master/scripts/msmarco/msmarco_passage_eval.py", + ], + }, + "msmarco_doc_eval": { + "description": "MSMARCO-doc evaluation script", + "urls": [ + "https://raw.githubusercontent.com/castorini/anserini-tools/master/scripts/msmarco/msmarco_doc_eval.py", + ], + } + +} diff --git a/pyserini/external_query_info.py b/pyserini/external_query_info.py new file mode 100644 index 0000000000000000000000000000000000000000..ab953f8ba920f413042608df55a39045d0751bfb --- /dev/null +++ b/pyserini/external_query_info.py @@ -0,0 +1,95 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +KILT_QUERY_INFO = { + "fever-dev-kilt": { + "description": "KILT FEVER dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/fever-dev-kilt.jsonl"], + "md5": "ae9a27503d177ba82cdb1e968b1aeac1", + "size (bytes)": 6174139, + "total_queries": 10444 + }, + "aidayago2-dev-kilt": { + "description": "KILT AIDA CoNLL-YAGO dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/aidayago2-dev-kilt.jsonl"], + "md5": "262c2350c0a331b26cdcc70590f068f2", + "size (bytes)": 21061554, + "total_queries": 4784 + }, + "wned-dev-kilt": { + "description": "KILT WNED-WIKI dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/wned-dev-kilt.jsonl"], + "md5": "b04e18e85c7f87030f5118c21f1297dc", + "size (bytes)": 12868348, + "total_queries": 3396 + }, + "cweb-dev-kilt": { + "description": "KILT WNED-CWEB dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/cweb-dev-kilt.jsonl"], + "md5": "bb62b9471cdec028abbe91b19030e9ad", + "size (bytes)": 90228527, + "total_queries": 5599 + }, + "trex-dev-kilt": { + "description": "KILT T-REx dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/trex-dev-kilt.jsonl"], + "md5": "ccd3c43891f08b2d5d9adf3e6885c8f9", + "size (bytes)": 3803558, + "total_queries": 5000 + }, + "structured_zeroshot-dev-kilt": { + "description": "KILT Zero-Shot RE dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/structured_zeroshot-dev-kilt.jsonl"], + "md5": "b2cb14cb4b00a90352c9ad8317829cfd", + "size (bytes)": 2266707, + "total_queries": 3724 + }, + "nq-dev-kilt": { + "description": "KILT Natural Questions dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/nq-dev-kilt.jsonl"], + "md5": "0bb57ca0b4676ed66005b8788d3a3050", + "size (bytes)": 7936566, + "total_queries": 2837 + }, + "hotpotqa-dev-kilt": { + "description": "KILT HotpotQA dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/hotpotqa-dev-kilt.jsonl"], + "md5": "3ebc5eeaa5572ec29451eb4b66c29333", + "size (bytes)": 3971321, + "total_queries": 5600 + }, + "triviaqa-dev-kilt": { + "description": "KILT TriviaQA dev set, generated using KILT's scripts/get_triviaqa_input.py", + "urls": ["https://github.com/castorini/pyserini-data/raw/main/queries/triviaqa-dev-kilt.jsonl"], + "md5": "0eda82a7a3e24271d623710fa2a2ff64", + "size (bytes)": 10314686, + "total_queries": 5359 + }, + "eli5-dev-kilt": { + "description": "KILT ELI5 dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/eli5-dev-kilt.jsonl"], + "md5": "7abac8b2495581d513b0542916178893", + "size (bytes)": 14149811, + "total_queries": 1507 + }, + "wow-dev-kilt": { + "description": "KILT Wizard of Wikipedia dev set", + "urls": ["http://dl.fbaipublicfiles.com/KILT/wow-dev-kilt.jsonl"], + "md5": "bf4000198be9d8acbab11a57745a6a8b", + "size (bytes)": 2418241, + "total_queries": 3058 + } +} diff --git a/pyserini/fusion/__init__.py b/pyserini/fusion/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6eff3bfce97142fca2c7e138ca16afdbdfd1e82e --- /dev/null +++ b/pyserini/fusion/__init__.py @@ -0,0 +1,19 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import average, FusionMethod, interpolation, reciprocal_rank_fusion + +__all__ = ['FusionMethod', 'average', 'interpolation', 'reciprocal_rank_fusion'] diff --git a/pyserini/fusion/__main__.py b/pyserini/fusion/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..640754ec95ecf5a34bcb580e1e35f48f60f359af --- /dev/null +++ b/pyserini/fusion/__main__.py @@ -0,0 +1,49 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +from ._base import FusionMethod +from pyserini.fusion import average, interpolation, reciprocal_rank_fusion +from ..trectools import TrecRun + + +parser = argparse.ArgumentParser(description='Perform various ways of fusion given a list of trec run files.') +parser.add_argument('--runs', type=str, nargs='+', default=[], required=True, + help='List of run files separated by space.') +parser.add_argument('--output', type=str, required=True, help="Path to resulting fused txt.") +parser.add_argument('--runtag', type=str, default="pyserini.fusion", help="Tag name of fused run.") +parser.add_argument('--method', type=FusionMethod, default=FusionMethod.RRF, help="The fusion method to be used.") +parser.add_argument('--rrf.k', dest='rrf_k', type=int, default=60, + help="Parameter k needed for reciprocal rank fusion.") +parser.add_argument('--alpha', type=float, default=0.5, required=False, help='Alpha value used for interpolation.') +parser.add_argument('--depth', type=int, default=1000, required=False, help='Pool depth per topic.') +parser.add_argument('--k', type=int, default=1000, required=False, help='Number of documents to output per topic.') +parser.add_argument('--resort', action='store_true', help='We resort the Trec run files or not') +args = parser.parse_args() + +trec_runs = [TrecRun(filepath=path,resort=args.resort) for path in args.runs] + +fused_run = None +if args.method == FusionMethod.RRF: + fused_run = reciprocal_rank_fusion(trec_runs, rrf_k=args.rrf_k, depth=args.depth, k=args.k) +elif args.method == FusionMethod.INTERPOLATION: + fused_run = interpolation(trec_runs, alpha=args.alpha, depth=args.depth, k=args.k) +elif args.method == FusionMethod.AVERAGE: + fused_run = average(trec_runs, depth=args.depth, k=args.k) +else: + raise NotImplementedError(f'Fusion method {args.method} not implemented.') + +fused_run.save_to_txt(args.output, tag=args.runtag) diff --git a/pyserini/fusion/__pycache__/__init__.cpython-38.pyc b/pyserini/fusion/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f30b8cf8c741d3443de64b3a0bbc8c761a3886ee Binary files /dev/null and b/pyserini/fusion/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/fusion/__pycache__/__main__.cpython-38.pyc b/pyserini/fusion/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6224b7fefe31e83817f3ba376f0e485c09fa1b48 Binary files /dev/null and b/pyserini/fusion/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/fusion/__pycache__/_base.cpython-38.pyc b/pyserini/fusion/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..764f1f5d5ad109f0a3b04583a7c0c9f2f70e573d Binary files /dev/null and b/pyserini/fusion/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/fusion/_base.py b/pyserini/fusion/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..674fc07e9ab98940e80992abdd4e360e5e6aa888 --- /dev/null +++ b/pyserini/fusion/_base.py @@ -0,0 +1,111 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from enum import Enum +from pyserini.trectools import AggregationMethod, RescoreMethod, TrecRun +from typing import List + + +class FusionMethod(Enum): + RRF = 'rrf' + INTERPOLATION = 'interpolation' + AVERAGE = 'average' + + +def reciprocal_rank_fusion(runs: List[TrecRun], rrf_k: int = 60, depth: int = None, k: int = None): + """Perform reciprocal rank fusion on a list of ``TrecRun`` objects. Implementation follows Cormack et al. + (SIGIR 2009) paper titled "Reciprocal Rank Fusion Outperforms Condorcet and Individual Rank Learning Methods." + + Parameters + ---------- + runs : List[TrecRun] + List of ``TrecRun`` objects. + rrf_k : int + Parameter to avoid vanishing importance of lower-ranked documents. Note that this is different from the *k* in + top *k* retrieval; set to 60 by default, per Cormack et al. + depth : int + Maximum number of results from each input run to consider. Set to ``None`` by default, which indicates that + the complete list of results is considered. + k : int + Length of final results list. Set to ``None`` by default, which indicates that the union of all input documents + are ranked. + + Returns + ------- + TrecRun + Output ``TrecRun`` that combines input runs via reciprocal rank fusion. + """ + + # TODO: Add option to *not* clone runs, thus making the method destructive, but also more efficient. + rrf_runs = [run.clone().rescore(method=RescoreMethod.RRF, rrf_k=rrf_k) for run in runs] + return TrecRun.merge(rrf_runs, AggregationMethod.SUM, depth=depth, k=k) + + +def interpolation(runs: List[TrecRun], alpha: int = 0.5, depth: int = None, k: int = None): + """Perform fusion by interpolation on a list of exactly two ``TrecRun`` objects. + new_score = first_run_score * alpha + (1 - alpha) * second_run_score. + + Parameters + ---------- + runs : List[TrecRun] + List of ``TrecRun`` objects. Exactly two runs. + alpha : int + Parameter alpha will be applied on the first run and (1 - alpha) will be applied on the second run. + depth : int + Maximum number of results from each input run to consider. Set to ``None`` by default, which indicates that + the complete list of results is considered. + k : int + Length of final results list. Set to ``None`` by default, which indicates that the union of all input documents + are ranked. + + Returns + ------- + TrecRun + Output ``TrecRun`` that combines input runs via interpolation. + """ + + if len(runs) != 2: + raise Exception('Interpolation must be performed on exactly two runs.') + + scaled_runs = [] + scaled_runs.append(runs[0].clone().rescore(method=RescoreMethod.SCALE, scale=alpha)) + scaled_runs.append(runs[1].clone().rescore(method=RescoreMethod.SCALE, scale=(1-alpha))) + + return TrecRun.merge(scaled_runs, AggregationMethod.SUM, depth=depth, k=k) + + +def average(runs: List[TrecRun], depth: int = None, k: int = None): + """Perform fusion by averaging on a list of ``TrecRun`` objects. + + Parameters + ---------- + runs : List[TrecRun] + List of ``TrecRun`` objects. + depth : int + Maximum number of results from each input run to consider. Set to ``None`` by default, which indicates that + the complete list of results is considered. + k : int + Length of final results list. Set to ``None`` by default, which indicates that the union of all input documents + are ranked. + + Returns + ------- + TrecRun + Output ``TrecRun`` that combines input runs via averaging. + """ + + scaled_runs = [run.clone().rescore(method=RescoreMethod.SCALE, scale=(1/len(runs))) for run in runs] + return TrecRun.merge(scaled_runs, AggregationMethod.SUM, depth=depth, k=k) diff --git a/pyserini/hsearch.py b/pyserini/hsearch.py new file mode 100644 index 0000000000000000000000000000000000000000..7fd7605712ed496e7ac659fc38a50f6cb70b5551 --- /dev/null +++ b/pyserini/hsearch.py @@ -0,0 +1,38 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Deprecated. The package ``pyserini.hsearch` has been renamed `pyserini.search.hybrid`. Stubs are retained here for +redirection purpose to ensure that code in existing published papers remain function (with warnings).""" + +import os +import sys + +from pyserini.search.hybrid import HybridSearcher as NewHybridSearcher + +__all__ = ['HybridSearcher'] + + +class HybridSearcher(NewHybridSearcher): + def __new__(cls, *args, **kwargs): + print('pyserini.hsearch.HybridSearcher class has been deprecated, ' + 'please use HybridSearcher from pyserini.search.hybrid instead') + return super().__new__(cls) + + +if __name__ == "__main__": + print('WARNING: pyserini.hsearch is deprecated, please use pyserini.search.hybrid instead') + args = " ".join(sys.argv[1:]) + os.system(f'python -m pyserini.search.hybrid {args}') diff --git a/pyserini/index/__init__.py b/pyserini/index/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..4120db77a55cf527c747e44a510b48f4b36cda44 --- /dev/null +++ b/pyserini/index/__init__.py @@ -0,0 +1,23 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +# Classes here have been moved to pyserini.index.lucene, e.g., the pyserini.index.Indexer is now +# pyserini.index.lucene.IndexReader. We're importing symbols here and then re-exporting to preserve +# backward compatability to code snippets published in Lin et al. (SIGIR 2021). + +from .lucene._base import Document, Generator, IndexTerm, Posting, IndexReader + +__all__ = ['Document', 'Generator', 'IndexTerm', 'Posting', 'IndexReader'] diff --git a/pyserini/index/__main__.py b/pyserini/index/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..ecce089074c39e5f6e2475cf56a01dcb3fc400eb --- /dev/null +++ b/pyserini/index/__main__.py @@ -0,0 +1,34 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from jnius import autoclass +import sys +import os + +print('pyserini.index is deprecated, please use pyserini.index.lucene.') +args = sys.argv[1:] +# argument check +for i in range(len(args)): + # Convert double hyphen args into single hyphen args for Java: e.g., --input becomes -input + if args[i].startswith('--'): + args[i] = args[i][1:] + if args[i] == '-input': + collection_dir = args[i+1] + if os.path.isfile(collection_dir): + raise ValueError('Argument -input should be a directory.') + +JIndexCollection = autoclass('io.anserini.index.IndexCollection') +JIndexCollection.main(args) diff --git a/pyserini/index/__pycache__/__init__.cpython-38.pyc b/pyserini/index/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4caef160077434153a03be91f82988b3d48a442d Binary files /dev/null and b/pyserini/index/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/index/__pycache__/faiss.cpython-38.pyc b/pyserini/index/__pycache__/faiss.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..62450f797cf4ab601fe6a42e41b08e01b7e7c41d Binary files /dev/null and b/pyserini/index/__pycache__/faiss.cpython-38.pyc differ diff --git a/pyserini/index/__pycache__/merge_faiss_indexes.cpython-38.pyc b/pyserini/index/__pycache__/merge_faiss_indexes.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1eb7181f77cd301c31a5c4f74a2c27418c754c38 Binary files /dev/null and b/pyserini/index/__pycache__/merge_faiss_indexes.cpython-38.pyc differ diff --git a/pyserini/index/faiss.py b/pyserini/index/faiss.py new file mode 100644 index 0000000000000000000000000000000000000000..50712d378a3a6395373c1549c144a2c5f00a035c --- /dev/null +++ b/pyserini/index/faiss.py @@ -0,0 +1,82 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os +import argparse +import shutil +import numpy as np + +import faiss +from tqdm import tqdm + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--input', type=str, help='path to embeddings directory', required=True) + parser.add_argument('--output', type=str, help='path to output index dir', required=True) + parser.add_argument('--dim', type=int, default=768, required=False) + parser.add_argument('--hnsw', action="store_true", required=False) + parser.add_argument('--M', type=int, default=256, required=False) + parser.add_argument('--efC', type=int, default=256, required=False) + parser.add_argument('--pq', action="store_true", required=False) + parser.add_argument('--pq-m', type=int, default=192, required=False) + parser.add_argument('--pq-nbits', type=int, default=8, required=False) + parser.add_argument('--threads', type=int, default=12, required=False) + args = parser.parse_args() + + faiss.omp_set_num_threads(args.threads) + + if not os.path.exists(args.output): + os.mkdir(args.output) + + if 'index' in os.listdir(args.input): + shutil.copy(os.path.join(args.input, 'docid'), os.path.join(args.output, 'docid')) + bf_index = faiss.read_index(os.path.join(args.input, 'index')) + vectors = bf_index.reconstruct_n(0, bf_index.ntotal) + else: + vectors = [] + with open(os.path.join(args.output, 'docid'), 'w') as f_out: + for filename in tqdm(os.listdir(args.input)): + path = os.path.join(args.input, filename) + with open(path) as f_in: + for line in f_in: + info = json.loads(line) + docid = info['id'] + vector = info['vector'] + f_out.write(f'{docid}\n') + vectors.append(vector) + vectors = np.array(vectors, dtype='float32') + print(vectors.shape) + + if args.hnsw and args.pq: + index = faiss.IndexHNSWPQ(args.dim, args.pq_m, args.M) + index.hnsw.efConstruction = args.efC + index.metric_type = faiss.METRIC_INNER_PRODUCT + elif args.hnsw: + index = faiss.IndexHNSWFlat(args.dim, args.M, faiss.METRIC_INNER_PRODUCT) + index.hnsw.efConstruction = args.efC + elif args.pq: + index = faiss.IndexPQ(args.dim, args.pq_m, args.pq_nbits, faiss.METRIC_INNER_PRODUCT) + else: + index = faiss.IndexFlatIP(args.dim) + index.verbose = True + + if args.pq: + index.train(vectors) + + index.add(vectors) + print(index.ntotal) + faiss.write_index(index, os.path.join(args.output, 'index')) diff --git a/pyserini/index/lucene/__init__.py b/pyserini/index/lucene/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7926753011dbc9e876747f8048c1e73a56e69394 --- /dev/null +++ b/pyserini/index/lucene/__init__.py @@ -0,0 +1,21 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import Document, Generator, IndexTerm, Posting, IndexReader +from ._indexer import LuceneIndexer, JacksonObjectMapper, JacksonJsonNode + +__all__ = ['Document', 'Generator', 'IndexTerm', 'Posting', 'IndexReader', 'LuceneIndexer', + 'JacksonObjectMapper', 'JacksonJsonNode'] \ No newline at end of file diff --git a/pyserini/index/lucene/__main__.py b/pyserini/index/lucene/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..01d5a05cb1c0268dfe7299aa1c7987c6d90bcc58 --- /dev/null +++ b/pyserini/index/lucene/__main__.py @@ -0,0 +1,36 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from jnius import autoclass +import sys +import os + + +if __name__ == '__main__': + args = sys.argv[1:] + for i in range(len(args)): + if args[i].startswith('--'): + args[i] = args[i][1:] + + # argument check + for i in range(len(args)): + if args[i] == '-input': + collection_dir = args[i+1] + if os.path.isfile(collection_dir): + raise ValueError('Argument -input should be a directory.') + + JIndexCollection = autoclass('io.anserini.index.IndexCollection') + JIndexCollection.main(args) diff --git a/pyserini/index/lucene/__pycache__/__init__.cpython-38.pyc b/pyserini/index/lucene/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73bcd0eb73968d252bcca1ba001b85e1cfef67fb Binary files /dev/null and b/pyserini/index/lucene/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/index/lucene/__pycache__/__main__.cpython-38.pyc b/pyserini/index/lucene/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d83d4a5fe3f212003019124fa251f9a95f63b753 Binary files /dev/null and b/pyserini/index/lucene/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/index/lucene/__pycache__/_base.cpython-38.pyc b/pyserini/index/lucene/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4935e2630d3c6e9823c658d208c94e382fd9a69 Binary files /dev/null and b/pyserini/index/lucene/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/index/lucene/__pycache__/_indexer.cpython-38.pyc b/pyserini/index/lucene/__pycache__/_indexer.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49d868da4b0a06819ac8a47b01c0a0217d23b2be Binary files /dev/null and b/pyserini/index/lucene/__pycache__/_indexer.cpython-38.pyc differ diff --git a/pyserini/index/lucene/_base.py b/pyserini/index/lucene/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..9cf5cee1d50d3fc71369ea95bc0c8e1733839d85 --- /dev/null +++ b/pyserini/index/lucene/_base.py @@ -0,0 +1,623 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's Python interface for raw access to Lucene indexes built by Anserini. The main entry +point is the ``IndexReaderUtils`` class, which wraps the Java class with the same name in Anserini. Many of the classes +and methods provided are meant only to provide tools for examining an index and are not optimized for computing over. +""" + +import logging +from enum import Enum +from typing import Dict, Iterator, List, Optional, Tuple +from tqdm import tqdm +import json +import math + +from pyserini.analysis import get_lucene_analyzer, JAnalyzer, JAnalyzerUtils +from pyserini.pyclass import autoclass +from pyserini.util import download_prebuilt_index, get_sparse_indexes_info +from pyserini.prebuilt_index_info import TF_INDEX_INFO, IMPACT_INDEX_INFO + +logger = logging.getLogger(__name__) + + +# Wrappers around Anserini classes +JDocument = autoclass('org.apache.lucene.document.Document') +JIndexReader = autoclass('io.anserini.index.IndexReaderUtils') + + +class JIndexHelpers: + @staticmethod + def JArgs(): + args = autoclass('io.anserini.index.IndexCollection$Args')() + args.storeContents = True + args.storeRaw = True + args.dryRun = True ## So that indexing will be skipped + + return args + + @staticmethod + def JCounters(): + IndexCollection = autoclass('io.anserini.index.IndexCollection') + Counters = autoclass('io.anserini.index.IndexCollection$Counters') + + return Counters(IndexCollection) + + +class Document: + """Wrapper class for a Lucene ``Document``. + + Parameters + ---------- + document : JDocument + Underlying Lucene ``Document``. + """ + + def __init__(self, document): + if document is None: + raise ValueError('Cannot create a Document with None.') + self.object = document + + def docid(self: JDocument) -> str: + return self.object.getField('id').stringValue() + + def id(self: JDocument) -> str: + # Convenient alias for docid() + return self.object.getField('id').stringValue() + + def lucene_document(self: JDocument) -> JDocument: + return self.object + + def contents(self: JDocument) -> str: + return self.object.get('contents') + + def raw(self: JDocument) -> str: + return self.object.get('raw') + + def get(self: JDocument, field: str) -> str: + return self.object.get(field) + + +class JGenerators(Enum): + AclAnthologyGenerator = autoclass('io.anserini.index.generator.AclAnthologyGenerator') + DefaultLuceneDocumentGenerator = autoclass('io.anserini.index.generator.DefaultLuceneDocumentGenerator') + TweetGenerator = autoclass('io.anserini.index.generator.TweetGenerator') + WashingtonPostGenerator = autoclass('io.anserini.index.generator.WashingtonPostGenerator') + + +class Generator: + """Wrapper class for Anserini's generators. + + Parameters + ---------- + generator_class : str + Name of generator class to instantiate + """ + + def __init__(self, generator_class): + self.counters = JIndexHelpers.JCounters() + self.args = JIndexHelpers.JArgs() + self.generator_class = generator_class + self.object = self._get_generator() + + def _get_generator(self): + try: + return JGenerators[self.generator_class].value(self.args) + except: + raise ValueError(self.generator_class) + + def create_document(self, document): + """ + Parameters + ---------- + document : pyserini.collection.pycollection.Document + Collection document to create Lucene document from + + Returns + ------- + result : org.apache.lucene.document.Document + Lucene document generated + """ + return self.object.createDocument(document.object) + + +class IndexTerm: + """Class representing an analyzed term in an index with associated statistics. + + Parameters + ---------- + term : str + Analyzed term. + df : int + Document frequency, the number of documents in the collection that contains the term. + cf : int + Collection frequency, the number of times the term occurs in the entire collection. This value is equal to the + sum of all the term frequencies of the term across all documents in the collection. + """ + + def __init__(self, term, df, cf): + self.term = term + self.df = df + self.cf = cf + + +class Posting: + """Class representing a posting in a postings list. + + Parameters + ---------- + docid : int + Collection ``docid``. + tf : int + Term frequency. + positions : List[int] + List of positions. + """ + + def __init__(self, docid, tf, positions): + self.docid = docid + self.tf = tf + self.positions = positions + + def __repr__(self): + repr = '(' + str(self.docid) + ', ' + str(self.tf) + ')' + if self.positions: + repr += ' [' + ','.join([str(p) for p in self.positions]) + ']' + return repr + + +class IndexReader: + """Wrapper class for ``IndexReaderUtils`` in Anserini. + + Parameters + ---------- + index_dir : str + Path to Lucene index directory. + """ + + def __init__(self, index_dir): + self.object = JIndexReader() + self.reader = self.object.getReader(index_dir) + + @classmethod + def from_prebuilt_index(cls, prebuilt_index_name: str, verbose=False): + """Build an index reader from a prebuilt index; download the index if necessary. + + Parameters + ---------- + prebuilt_index_name : str + Prebuilt index name. + verbose : bool + Print status information. + + Returns + ------- + IndexReader + Index reader built from the prebuilt index. + """ + if verbose: + print(f'Attempting to initialize pre-built index {prebuilt_index_name}.') + + try: + index_dir = download_prebuilt_index(prebuilt_index_name, verbose=verbose) + except ValueError as e: + print(str(e)) + return None + + if verbose: + print(f'Initializing {prebuilt_index_name}...') + + index_reader = cls(index_dir) + # Validate index stats; will throw exception there are any issues. + index_reader.validate(prebuilt_index_name, verbose=verbose) + + return index_reader + + @staticmethod + def list_prebuilt_indexes(): + """Display information about available prebuilt indexes.""" + get_sparse_indexes_info() + + def analyze(self, text: str, analyzer=None) -> List[str]: + """Analyze a piece of text. Applies Anserini's default Lucene analyzer if analyzer not specified. + + Parameters + ---------- + text : str + Text to analyze. + analyzer : analyzer + Analyzer to apply. + Returns + ------- + List[str] + List of tokens corresponding to the output of the analyzer. + """ + if analyzer is None: + results = JAnalyzerUtils.analyze(text) + else: + results = JAnalyzerUtils.analyze(analyzer, text) + tokens = [] + for token in results.toArray(): + tokens.append(token) + return tokens + + def validate(self, prebuilt_index_name: str, verbose=False): + """Validate this index against stored stats for a pre-built index.""" + stats = self.stats() + + if prebuilt_index_name in TF_INDEX_INFO: + if stats['documents'] != TF_INDEX_INFO[prebuilt_index_name]['documents']: + raise ValueError('Pre-built index fails consistency check: "documents" does not match!') + if stats['unique_terms'] != TF_INDEX_INFO[prebuilt_index_name]['unique_terms']: + raise ValueError('Pre-built index fails consistency check: "unique_terms" does not match!') + if stats['total_terms'] != TF_INDEX_INFO[prebuilt_index_name]['total_terms']: + raise ValueError('Pre-built index fails consistency check: "total_terms" does not match!') + elif prebuilt_index_name in IMPACT_INDEX_INFO: + if stats['documents'] != IMPACT_INDEX_INFO[prebuilt_index_name]['documents']: + raise ValueError('Pre-built index fails consistency check: "documents" does not match!') + if stats['unique_terms'] != IMPACT_INDEX_INFO[prebuilt_index_name]['unique_terms']: + raise ValueError('Pre-built index fails consistency check: "unique_terms" does not match!') + if stats['total_terms'] != IMPACT_INDEX_INFO[prebuilt_index_name]['total_terms']: + raise ValueError('Pre-built index fails consistency check: "total_terms" does not match!') + else: + print(f'Unknown pre-built index \'{prebuilt_index_name}\'!') + return False + + if verbose: + print(stats) + print(f'Index passes consistency checks against pre-built index \'{prebuilt_index_name}\'!') + + return True + + def terms(self) -> Iterator[IndexTerm]: + """Return an iterator over analyzed terms in the index. + + Returns + ------- + Iterator[IndexTerm] + Iterator over :class:`IndexTerm` objects corresponding to (analyzed) terms in the index. + """ + term_iterator = self.object.getTerms(self.reader) + while term_iterator.hasNext(): + cur_term = term_iterator.next() + yield IndexTerm(cur_term.getTerm(), cur_term.getDF(), cur_term.getTotalTF()) + + def get_term_counts(self, term: str, analyzer: Optional[JAnalyzer] = get_lucene_analyzer()) -> Tuple[int, int]: + """Return the document frequency and collection frequency of a term. Applies Anserini's default Lucene + ``Analyzer`` if analyzer is not specified. + + Parameters + ---------- + term : str + Unanalyzed term. + analyzer : analyzer + Analyzer to apply. + + Returns + ------- + Tuple[int, int] + Document frequency and collection frequency. + """ + if analyzer is None: + analyzer = get_lucene_analyzer(stemming=False, stopwords=False) + + term_map = self.object.getTermCountsWithAnalyzer(self.reader, term, analyzer) + + return term_map.get('docFreq'), term_map.get('collectionFreq') + + def get_postings_list(self, term: str, analyzer=get_lucene_analyzer()) -> List[Posting]: + """Return the postings list for a term. + + Parameters + ---------- + term : str + Raw term. + analyzer : analyzer + Analyzer to apply. Defaults to Anserini's default. + + Returns + ------- + List[Posting] + List of :class:`Posting` objects corresponding to the postings list for the term. + """ + if analyzer is None: + postings_list = self.object.getPostingsListForAnalyzedTerm(self.reader, term) + else: + postings_list = self.object.getPostingsListWithAnalyzer(self.reader, term, + analyzer) + + if postings_list is None: + return None + + result = [] + for posting in postings_list.toArray(): + result.append(Posting(posting.getDocid(), posting.getTF(), posting.getPositions())) + return result + + def get_document_vector(self, docid: str) -> Optional[Dict[str, int]]: + """Return the document vector for a ``docid``. Note that requesting the document vector of a ``docid`` that + does not exist in the index will return ``None`` (as opposed to an empty dictionary); this forces the caller + to handle ``None`` explicitly and guards against silent errors. + + Parameters + ---------- + docid : str + Collection ``docid``. + + Returns + ------- + Optional[Dict[str, int]] + A dictionary with analyzed terms as keys and their term frequencies as values. + """ + doc_vector_map = self.object.getDocumentVector(self.reader, docid) + if doc_vector_map is None: + return None + doc_vector_dict = {} + for term in doc_vector_map.keySet().toArray(): + doc_vector_dict[term] = doc_vector_map.get(term) + return doc_vector_dict + + def get_term_positions(self, docid: str) -> Optional[Dict[str, int]]: + """Return the term position mapping of the document with ``docid``. Note that the term in the document is + stemmed and stop words may be removed according to your index settings. Also, requesting the document vector of + a ``docid`` that does not exist in the index will return ``None`` (as opposed to an empty dictionary); this + forces the caller to handle ``None`` explicitly and guards against silent errors. + + Parameters + ---------- + docid : str + Collection ``docid``. + + Returns + ------- + Optional[Dict[str, int]] + A tuple contains a dictionary with analyzed terms as keys and corresponding posting list as values + """ + java_term_position_map = self.object.getTermPositions(self.reader, docid) + if java_term_position_map is None: + return None + term_position_map = {} + for term in java_term_position_map.keySet().toArray(): + term_position_map[term] = java_term_position_map.get(term).toArray() + return term_position_map + + def doc(self, docid: str) -> Optional[Document]: + """Return the :class:`Document` corresponding to ``docid``. Returns ``None`` if the ``docid`` does not exist + in the index. + + Parameters + ---------- + docid : str + The collection ``docid``. + + Returns + ------- + Optional[Document] + :class:`Document` corresponding to the ``docid``. + """ + lucene_document = self.object.document(self.reader, docid) + if lucene_document is None: + return None + return Document(lucene_document) + + def doc_by_field(self, field: str, q: str) -> Optional[Document]: + """Return the :class:`Document` based on a ``field`` with ``id``. For example, this method can be used to fetch + document based on alternative primary keys that have been indexed, such as an article's DOI. + + Parameters + ---------- + field : str + The field to look up. + q : str + The document's unique id. + + Returns + ------- + Optional[Document] + :class:`Document` whose ``field`` is ``id``. + """ + lucene_document = self.object.documentByField(self.reader, field, q) + if lucene_document is None: + return None + return Document(lucene_document) + + def doc_raw(self, docid: str) -> Optional[str]: + """Return the raw document contents for a collection ``docid``. + + Parameters + ---------- + docid : str + Collection ``docid``. + + Returns + ------- + Optional[str] + Raw document contents. + """ + return self.object.documentRaw(self.reader, docid) + + def doc_contents(self, docid: str) -> Optional[str]: + """Return the indexed document contents for a collection ``docid``. + + Parameters + ---------- + docid : str + The collection ``docid``. + + Returns + ------- + Optional[str] + Index document contents. + """ + return self.object.documentContents(self.reader, docid) + + def compute_bm25_term_weight(self, docid: str, term: str, analyzer=get_lucene_analyzer(), k1=0.9, b=0.4) -> float: + """Compute the BM25 weight of a term in a document. Specify ``analyzer=None`` for an already analyzed term, + e.g., from the output of :func:`get_document_vector`. + + Parameters + ---------- + docid : str + Collection ``docid``. + term : str + Term. + analyzer : analyzer + Lucene analyzer to use, ``None`` if term is already analyzed. + k1 : float + BM25 k1 parameter. + b : float + BM25 b parameter. + + Returns + ------- + float + BM25 weight of the term in the document, or 0 if the term does not exist in the document. + """ + if analyzer is None: + return self.object.getBM25AnalyzedTermWeightWithParameters(self.reader, docid, + term, + float(k1), float(b)) + else: + return self.object.getBM25UnanalyzedTermWeightWithParameters(self.reader, docid, + term, analyzer, + float(k1), float(b)) + + def compute_query_document_score(self, docid: str, query: str, similarity=None): + if similarity is None: + return self.object.computeQueryDocumentScore(self.reader, docid, query) + else: + return self.object.computeQueryDocumentScoreWithSimilarity(self.reader, docid, query, similarity) + + def convert_internal_docid_to_collection_docid(self, docid: int) -> str: + """Convert Lucene's internal ``docid`` to its external collection ``docid``. + + Parameters + ---------- + docid : int + Lucene internal ``docid``. + + Returns + ------- + str + External collection ``docid`` corresponding to Lucene's internal ``docid``. + """ + return self.object.convertLuceneDocidToDocid(self.reader, docid) + + def convert_collection_docid_to_internal_docid(self, docid: str) -> int: + """Convert external collection ``docid`` to its Lucene's internal ``docid``. + + Parameters + ---------- + docid : str + External collection ``docid``. + + Returns + ------- + str + Lucene internal ``docid`` corresponding to the external collection ``docid``. + """ + return self.object.convertDocidToLuceneDocid(self.reader, docid) + + def stats(self) -> Dict[str, int]: + """Return dictionary with index statistics. + + Returns + ------- + Dict[str, int] + Index statistics as a dictionary of statistic's name to statistic. + - documents: number of documents + - non_empty_documents: number of non-empty documents + - unique_terms: number of unique terms + - total_terms: number of total terms + """ + index_stats_map = self.object.getIndexStats(self.reader) + + if index_stats_map is None: + return None + + index_stats_dict = {} + for term in index_stats_map.keySet().toArray(): + index_stats_dict[term] = index_stats_map.get(term) + + return index_stats_dict + + def dump_documents_BM25(self, file_path, k1=0.9, b=0.4): + """Dumps out all the document vectors with BM25 weights in Pyserini's JSONL vector format. + + Parameters + ---------- + file_path : str + File path to dump JSONL file. + k1 : float + BM25 k1 parameter. + b : float + BM25 b parameter. + """ + + f = open(file_path, 'w') + + assert 'documents' in self.stats() + for i in tqdm(range(self.stats()['documents'])): + docid = self.convert_internal_docid_to_collection_docid(i) + bm25_vector = {} + for term in self.get_document_vector(docid): + bm25_vector[term] = self.compute_bm25_term_weight(docid, term, analyzer=None, k1=k1, b=b) + + # vectors are written line by line to avoid running out of memory + f.write(json.dumps({'id': docid, 'vector': bm25_vector}) + "\n") + + f.close() + + def quantize_weights(self, input_file_path, output_file_path, bits = 8): + """Takes vectors of weights in Pyserini's JSONL vector format and quantizes them. + + Parameters + ---------- + input_file_path : str + File path of vectors of weights in Pyserini's JSONL vector format. + output_file_path : str + File path to output JSONL file of quantized weight vectors. + bits : int + Number of bits to use to represent quantized scores. + """ + + min_weight = float('inf') + max_weight = float('-inf') + + input_file = open(input_file_path, 'r') + + # vectors are read line by line to avoid running out of memory + for line in input_file: + doc = json.loads(line) + for weight in doc['vector'].values(): + if weight > max_weight: + max_weight = weight + if weight < min_weight: + min_weight = weight + input_file.seek(0) + + output_file = open(output_file_path, 'w') + + smallest_impact = 1 + for line in input_file: + doc = json.loads(line) + for element in doc['vector']: + doc['vector'][element] = math.floor((2 ** bits - smallest_impact) * (doc['vector'][element] - min_weight) / (max_weight - min_weight)) + smallest_impact + output_file.write(json.dumps(doc) + "\n") + + input_file.close() + output_file.close() diff --git a/pyserini/index/lucene/_indexer.py b/pyserini/index/lucene/_indexer.py new file mode 100644 index 0000000000000000000000000000000000000000..8546ee31572eea5a5d1fa8d133417573285124aa --- /dev/null +++ b/pyserini/index/lucene/_indexer.py @@ -0,0 +1,121 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import logging +from typing import List, Dict + +from pyserini.pyclass import autoclass + +logger = logging.getLogger(__name__) + +JLuceneIndexer = autoclass('io.anserini.index.SimpleIndexer') +JsonCollectionDocument = autoclass('io.anserini.collection.JsonCollection$Document') +JacksonObjectMapper = autoclass('com.fasterxml.jackson.databind.ObjectMapper') +JacksonJsonNode = autoclass('com.fasterxml.jackson.databind.JsonNode') + + +class LuceneIndexer: + """Wrapper class for ``SimpleIndexer`` in Anserini. Provides basic functionality for on-the-fly indexing via a + programmatic API, i.e., indexing in-process objects as opposed to on-file documents. + + Parameters + ---------- + index_dir : str + Path to Lucene index directory. + args : List[str] + List of arguments to pass to ``SimpleIndexer``. + append : bool + Append to existing index. + threads : int + Number of indexing threads. + """ + def __init__(self, index_dir: str = None, args: List[str] = None, append: bool = False, threads: int = 8): + self.index_dir = index_dir + self.args = args + if args: + args.extend(['-input', '', '-collection', 'JsonCollection', '-threads', str(threads)]) + if append: + args.extend(['-append']) + self.object = JLuceneIndexer(args) + else: + self.object = JLuceneIndexer(index_dir, append, int(threads)) + + self.mapper = JacksonObjectMapper() + + def add_doc_raw(self, doc: str): + """Add a raw document (in the form of a JSON string) to the index. + + Parameters + ---------- + doc : str + Document to add. + """ + self.object.addRawDocument(doc) + + def add_doc_dict(self, doc: Dict[str, str]): + """Add a document (in the form of a Python dictionary) to the index. + + Parameters + ---------- + doc : Dict[str, str] + Document to add. + """ + self.object.addJsonDocument(JsonCollectionDocument.fromFields(doc['id'], doc['contents'])) + + def add_doc_json(self, node: JacksonJsonNode): + """Add a document (in the form of a Jackson JSON node object) to the index. + + Parameters + ---------- + node : JacksonJsonNode + Document to add. + """ + self.object.addJsonNode(node) + + def add_batch_raw(self, docs: List[str]): + """Add a batch of raw documents (in the form of JSON strings) to the index. + + Parameters + ---------- + docs : List[str] + Documents to add. + """ + self.object.addRawDocuments(docs) + + def add_batch_dict(self, docs: List[Dict[str, str]]): + """Add a batch of documents (in the form of Python dictionaries) to the index. + + Parameters + ---------- + docs : List[Dict[str, str]] + Documents to add. + """ + docs = list(map(lambda d: JsonCollectionDocument.fromFields(d['id'], d['contents']), docs)) + self.object.addJsonDocuments(docs) + + def add_batch_json(self, nodes: List[JacksonJsonNode]): + """Add a batch of documents (in the form of Jackson JSON node objects) to the index. + + Parameters + ---------- + nodes : List[JacksonJsonNode] + Documents to add. + """ + self.object.addJsonNodes(nodes) + + def close(self): + """Close this indexer, committing all in-memory data to disk.""" + self.object.close() diff --git a/pyserini/index/merge_faiss_indexes.py b/pyserini/index/merge_faiss_indexes.py new file mode 100644 index 0000000000000000000000000000000000000000..5662aae9fe4ec844f89e85b7bf992341bd73321d --- /dev/null +++ b/pyserini/index/merge_faiss_indexes.py @@ -0,0 +1,46 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + +import faiss +import os + + +parser = argparse.ArgumentParser() +parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) +parser.add_argument('--prefix', type=str, help='directory to store brute force index of corpus', required=True) +parser.add_argument('--shard-num', type=int, help='number of shards', default=1) +args = parser.parse_args() + +new_index = faiss.IndexFlatIP(args.dimension) +docid_files = [] +for i in range(args.shard_num): + index = faiss.read_index(os.path.join(args.prefix + str(i), 'index')) + docid_files.append(os.path.join(args.prefix + str(i), 'docid')) + vectors = index.reconstruct_n(0, index.ntotal) + new_index.add(vectors) + +if not os.path.exists(args.prefix + 'full'): + os.mkdir(args.prefix + 'full') + +faiss.write_index(new_index, os.path.join(args.prefix + 'full', 'index')) + +with open(os.path.join(args.prefix + 'full', 'docid'), 'w') as wfd: + for f in docid_files: + with open(f, 'r') as f1: + for line in f1: + wfd.write(line) diff --git a/pyserini/index/nmslib.py b/pyserini/index/nmslib.py new file mode 100644 index 0000000000000000000000000000000000000000..be658b4de82b15fa81c5fd573720a5008a88afad --- /dev/null +++ b/pyserini/index/nmslib.py @@ -0,0 +1,102 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import copy +import json +import os +import shutil +import time + +import faiss +import nmslib +from scipy.sparse import csr_matrix + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--input', type=str, help='path to embeddings directory', required=True) + parser.add_argument('--output', type=str, help='path to output index dir', required=True) + parser.add_argument('--M', type=int, default=256, required=False) + parser.add_argument('--efC', type=int, default=256, required=False) + parser.add_argument('--threads', type=int, default=12, required=False) + args = parser.parse_args() + + if not os.path.exists(args.output): + os.mkdir(args.output) + + is_sparse = False + + if 'index' in os.listdir(args.input): + shutil.copy(os.path.join(args.input, 'docid'), os.path.join(args.output, 'docid')) + bf_index = faiss.read_index(os.path.join(args.input, 'index')) + vectors = bf_index.reconstruct_n(0, bf_index.ntotal) + else: + vectors = [] + for filename in os.listdir(args.input): + path = os.path.join(args.input, filename) + with open(path) as f_in, open(os.path.join(args.output, 'docid'), 'w') as f_out: + for line in f_in: + info = json.loads(line) + docid = info['id'] + vector = info['vector'] + f_out.write(f'{docid}\n') + vectors.append(vector) + + tokens = set() + if isinstance(vectors[0], dict): + is_sparse = True + for vec in vectors: + for key in vec: + tokens.add(key) + token2id = {} + with open(os.path.join(args.output, 'tokens'), 'w') as f: + for idx, tok in enumerate(tokens): + token2id[tok] = idx + f.write(f'{tok}\n') + + if is_sparse: + matrix_row, matrix_col, matrix_data = [], [], [] + for i, vec in enumerate(vectors): + weight_dict = vec + tokens = weight_dict.keys() + col = [token2id[tok] for tok in tokens] + data = weight_dict.values() + matrix_row.extend([i] * len(weight_dict)) + matrix_col.extend(col) + matrix_data.extend(data) + vectors = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(len(vectors), len(token2id))) + + M = args.M + efC = args.efC + num_threads = args.threads + index_time_params = {'M': M, 'indexThreadQty': num_threads, 'efConstruction': efC, 'post': 0} + if is_sparse: + index = nmslib.init(method='hnsw', space='negdotprod_sparse', data_type=nmslib.DataType.SPARSE_VECTOR) + else: + index = nmslib.init(method='hnsw', space='negdotprod', data_type=nmslib.DataType.DENSE_VECTOR) + index.addDataPointBatch(vectors) + start = time.time() + index.createIndex(index_time_params, print_progress=True) + end = time.time() + index_time = end - start + print('Index-time parameters', index_time_params) + print('Indexing time = %f' % index_time) + index.saveIndex(os.path.join(args.output, 'index.bin'), save_data=True) + + metadata = copy.deepcopy(index_time_params) + metadata['index-time'] = index_time + metadata['type'] = 'sparse' if is_sparse else 'dense' + json.dump(metadata, open(os.path.join(args.output, 'meta'), 'w'), indent=4) diff --git a/pyserini/multithreading.py b/pyserini/multithreading.py new file mode 100644 index 0000000000000000000000000000000000000000..ab36c535f24f8056f0d8d3e14d99ccca4f03b514 --- /dev/null +++ b/pyserini/multithreading.py @@ -0,0 +1,39 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import threading + + +class ThreadSafeCount: + + def __init__(self): + self.value = 0 + self.lock = threading.Lock() + + def increment(self, inc=1): + with self.lock: + self.value += inc + return self.value + + +class Counters: + + def __init__(self): + self.indexable = ThreadSafeCount() + self.unindexable = ThreadSafeCount() + self.skipped = ThreadSafeCount() + self.errors = ThreadSafeCount() + diff --git a/pyserini/output_writer.py b/pyserini/output_writer.py new file mode 100644 index 0000000000000000000000000000000000000000..2222552244f55d96fdc7ab0801199e28a22d8000 --- /dev/null +++ b/pyserini/output_writer.py @@ -0,0 +1,116 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os + +from abc import ABC, abstractmethod +from enum import Enum, unique +from typing import List + +from pyserini.search import JLuceneSearcherResult + + +@unique +class OutputFormat(Enum): + TREC = 'trec' + MSMARCO = "msmarco" + KILT = 'kilt' + + +class OutputWriter(ABC): + + def __init__(self, file_path: str, mode: str = 'w', + max_hits: int = 1000, tag: str = None, topics: dict = None, + use_max_passage: bool = False, max_passage_delimiter: str = None, max_passage_hits: int = 100): + self.file_path = file_path + self.mode = mode + self.tag = tag + self.topics = topics + self.use_max_passage = use_max_passage + self.max_passage_delimiter = max_passage_delimiter if use_max_passage else None + self.max_hits = max_passage_hits if use_max_passage else max_hits + self._file = None + + def __enter__(self): + dirname = os.path.dirname(self.file_path) + if dirname: + os.makedirs(dirname, exist_ok=True) + self._file = open(self.file_path, self.mode) + return self + + def __exit__(self, exc_type, exc_value, exc_traceback): + self._file.close() + + def hits_iterator(self, hits: List[JLuceneSearcherResult]): + unique_docs = set() + rank = 1 + for hit in hits: + if self.use_max_passage and self.max_passage_delimiter: + docid = hit.docid.split(self.max_passage_delimiter)[0] + else: + docid = hit.docid.strip() + + if self.use_max_passage: + if docid in unique_docs: + continue + unique_docs.add(docid) + + yield docid, rank, hit.score, hit + + rank = rank + 1 + if rank > self.max_hits: + break + + @abstractmethod + def write(self, topic: str, hits: List[JLuceneSearcherResult]): + raise NotImplementedError() + + +class TrecWriter(OutputWriter): + def write(self, topic: str, hits: List[JLuceneSearcherResult]): + for docid, rank, score, _ in self.hits_iterator(hits): + self._file.write(f'{topic} Q0 {docid} {rank} {score:.6f} {self.tag}\n') + + +class MsMarcoWriter(OutputWriter): + def write(self, topic: str, hits: List[JLuceneSearcherResult]): + for docid, rank, score, _ in self.hits_iterator(hits): + self._file.write(f'{topic}\t{docid}\t{rank}\n') + + +class KiltWriter(OutputWriter): + def write(self, topic: str, hits: List[JLuceneSearcherResult]): + datapoint = self.topics[topic] + provenance = [] + for docid, rank, score, _ in self.hits_iterator(hits): + provenance.append({"wikipedia_id": docid}) + datapoint["output"] = [{"provenance": provenance}] + json.dump(datapoint, self._file) + self._file.write('\n') + + +def get_output_writer(file_path: str, output_format: OutputFormat, *args, **kwargs) -> OutputWriter: + mapping = { + OutputFormat.TREC: TrecWriter, + OutputFormat.MSMARCO: MsMarcoWriter, + OutputFormat.KILT: KiltWriter, + } + return mapping[output_format](file_path, *args, **kwargs) + + +def tie_breaker(hits): + return sorted(hits, key=lambda x: (-x.score, x.docid)) diff --git a/pyserini/prebuilt_index_info.py b/pyserini/prebuilt_index_info.py new file mode 100644 index 0000000000000000000000000000000000000000..b26e47a3ac185dd235ecf2cfda5cadda82ae2168 --- /dev/null +++ b/pyserini/prebuilt_index_info.py @@ -0,0 +1,7266 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +TF_INDEX_INFO_CURRENT = { + "cacm": { + "description": "Lucene index of the CACM corpus. (Lucene 9)", + "filename": "lucene-index.cacm.tar.gz", + "urls": [ + "https://github.com/castorini/anserini-data/raw/master/CACM/lucene-index.cacm.20221005.252b5e.tar.gz", + ], + "md5": "cfe14d543c6a27f4d742fb2d0099b8e0", + "size compressed (bytes)": 2347197, + "total_terms": 320968, + "documents": 3204, + "unique_terms": 14363, + }, + "robust04": { + "description": "Lucene index of TREC Disks 4 & 5 (minus Congressional Records), used in the TREC 2004 Robust Track. (Lucene 9)", + "filename": "lucene-index.robust04.20221005.252b5e.tar.gz", + "readme": "lucene-index.robust04.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.robust04.20221005.252b5e.tar.gz", + ], + "md5": "a1abd5437394956b7ec8bea4699b5e46", + "size compressed (bytes)": 1806776535, + "total_terms": 174540872, + "documents": 528030, + "unique_terms": 923436, + }, + + # MS MARCO V1 document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v1-doc": { + "description": "Lucene index of the MS MARCO V1 document corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc.20221004.252b5e.tar.gz", + ], + "md5": "b2b1841c93255f9902150128d5e27e41", + "size compressed (bytes)": 13736982438, + "total_terms": 2742219865, + "documents": 3213835, + "unique_terms": 29823777, + "downloaded": False + }, + "msmarco-v1-doc-slim": { + "description": "Lucene index of the MS MARCO V1 document corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-slim.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-slim.20221004.252b5e.tar.gz", + ], + "md5": "400fe94ec97a20cf775596085c5ad79d", + "size compressed (bytes)": 1791498133, + "total_terms": 2742219865, + "documents": 3213835, + "unique_terms": 29823777, + "downloaded": False + }, + "msmarco-v1-doc-full": { + "description": "Lucene index of the MS MARCO V1 document corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-full.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-full.20221004.252b5e.tar.gz", + ], + "md5": "75735da0dd35e3631d22bf682ebed8a0", + "size compressed (bytes)": 25525615599, + "total_terms": 2742219865, + "documents": 3213835, + "unique_terms": 29823777, + "downloaded": False + }, + + # MS MARCO V1 document corpus, doc2query-T5 expansions. + "msmarco-v1-doc-d2q-t5": { + "description": "Lucene index of the MS MARCO V1 document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.tar.gz", + ], + "md5": "87530b64e55080fcfb90ec9e598be23e", + "size compressed (bytes)": 1885596544, + "total_terms": 3748343494, + "documents": 3213835, + "unique_terms": 30631009, + "downloaded": False + }, + "msmarco-v1-doc-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V1 document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20221004.252b5e.tar.gz", + ], + "md5": "a081b866b78e0f604ddb9e3103ee6cc5", + "size compressed (bytes)": 11152231182, + "total_terms": 3748343494, + "documents": 3213835, + "unique_terms": 30631009, + "downloaded": False + }, + + # MS MARCO V1 segmented document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v1-doc-segmented": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.tar.gz", + ], + "md5": "59fdf88f360d0a72d1b94b9729c2198e", + "size compressed (bytes)": 15924438098, + "total_terms": 3200522554, + "documents": 20545677, + "unique_terms": 21191748, + "downloaded": False + }, + "msmarco-v1-doc-segmented-slim": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented-slim.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-slim.20221004.252b5e.tar.gz", + ], + "md5": "c277161780d501ab832e16e6396f9cae", + "size compressed (bytes)": 3306727108, + "total_terms": 3200522554, + "documents": 20545677, + "unique_terms": 21191748, + "downloaded": False + }, + "msmarco-v1-doc-segmented-full": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented-full.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-full.20221004.252b5e.tar.gz", + ], + "md5": "c1af97d16c552a99a23382639c4a668c", + "size compressed (bytes)": 29470600011, + "total_terms": 3200522554, + "documents": 20545677, + "unique_terms": 21191748, + "downloaded": False + }, + + # MS MARCO V1 segmented document corpus, doc2query-T5 expansions. + "msmarco-v1-doc-segmented-d2q-t5": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.tar.gz", + ], + "md5": "b242fd9cb0982e87d0c667439cb6d59c", + "size compressed (bytes)": 3554554620, + "total_terms": 4206646183, + "documents": 20545677, + "unique_terms": 22055268, + "downloaded": False + }, + "msmarco-v1-doc-segmented-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V1 segmented document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20221004.252b5e.tar.gz", + ], + "md5": "40341fc2cf151b8c447a8e77f5e9f100", + "size compressed (bytes)": 16349673687, + "total_terms": 4206646183, + "documents": 20545677, + "unique_terms": 22055268, + "downloaded": False + }, + + # MS MARCO V1 passage corpus, three indexes with different amounts of information (and sizes). + "msmarco-v1-passage": { + "description": "Lucene index of the MS MARCO V1 passage corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage.20221004.252b5e.tar.gz", + ], + "md5": "c697b18c9a0686ca760583e615dbe450", + "size compressed (bytes)": 2170758938, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-v1-passage-slim": { + "description": "Lucene index of the MS MARCO V1 passage corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-slim.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-slim.20221004.252b5e.tar.gz", + ], + "md5": "9f952db731ed7c3f2ec14010664ddcec", + "size compressed (bytes)": 491451085, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-v1-passage-full": { + "description": "Lucene index of the MS MARCO V1 passage corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-full.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-full.20221004.252b5e.tar.gz", + ], + "md5": "0ff5ceaae32333d3580ae594d460385c", + "size compressed (bytes)": 3720616158, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + + # MS MARCO V1 passage corpus, doc2query-T5 expansions. + "msmarco-v1-passage-d2q-t5": { + "description": "Lucene index of the MS MARCO V1 passage corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.tar.gz", + ], + "md5": "0a62959d300634aa0eb37e910aa4f4a7", + "size compressed (bytes)": 807866125, + "total_terms": 1986612263, + "documents": 8841823, + "unique_terms": 3929111, + "downloaded": False + }, + "msmarco-v1-passage-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V1 passage corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20221004.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20221004.252b5e.tar.gz", + ], + "md5": "2530b20771c6f441073ff49a56ea9004", + "size compressed (bytes)": 4409861543, + "total_terms": 1986612263, + "documents": 8841823, + "unique_terms": 3929111, + "downloaded": False + }, + + # MS MARCO V1 indexes for LTR experiments. + "msmarco-passage-ltr": { + "description": "Lucene index of the MS MARCO passage corpus with four extra preprocessed fields for LTR. (Lucene 8)", + "filename": "index-msmarco-passage-ltr-20210519-e25e33f.tar.gz", + "readme": "index-msmarco-passage-ltr-20210519-e25e33f-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-passage-ltr-20210519-e25e33f.tar.gz", + "https://vault.cs.uwaterloo.ca/s/8qFCaCtwabRfYQD/download" + ], + "md5": "a5de642c268ac1ed5892c069bdc29ae3", + "size compressed (bytes)": 14073966046, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-doc-per-passage-ltr": { + "description": "Lucene index of the MS MARCO document per-passage corpus with four extra preprocessed fields for LTR. (Lucene 8)", + "filename": "index-msmarco-doc-per-passage-ltr-20211031-33e4151.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-per-passage-ltr-20211031-33e4151.tar.gz", + "https://vault.cs.uwaterloo.ca/s/kNdXMWXEsTt3fT8/download" + ], + "md5": "bd60e89041b4ebbabc4bf0cfac608a87", + "size compressed (bytes)": 45835520960, + "total_terms": 1232004740, + "documents": 20545628, + "unique_terms": 10123678, + "downloaded": False + }, + "msmarco-document-segment-ltr": { + "description": "Lucene index of the MS MARCO document segmented corpus with four extra preprocessed fields for LTR. (Lucene 8)", + "filename": "lucene-index.msmarco-doc-segmented.ibm.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-doc-segmented.ibm.tar.gz" + ], + "md5": "13064bdaf8e8a79222634d67ecd3ddb5", + "size compressed (bytes)": 98984853515, + "total_terms": 3197500226, + "documents": 20532330, + "unique_terms": -1, + "downloaded": False + }, + + # MS MARCO V2 document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-doc": { + "description": "Lucene index of the MS MARCO V2 document corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc.20220808.4d6d2a.tar.gz", + ], + "md5": "0599bd6ed5ee28390b279eb398ef0267", + "size compressed (bytes)": 63431299815, + "total_terms": 14165667143, + "documents": 11959635, + "unique_terms": 44860768, + "downloaded": False + }, + "msmarco-v2-doc-slim": { + "description": "Lucene index of the MS MARCO V2 document corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-slim.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-slim.20220808.4d6d2a.tar.gz", + ], + "md5": "4dfc5549e3c15abec4b9694542a376d1", + "size compressed (bytes)": 7172175394, + "total_terms": 14165667143, + "documents": 11959635, + "unique_terms": 44860768, + "downloaded": False + }, + "msmarco-v2-doc-full": { + "description": "Lucene index of the MS MARCO V2 document corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-full.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-full.20220808.4d6d2a.tar.gz", + ], + "md5": "fc6f546898725617eb5ca7a144bef531", + "size compressed (bytes)": 119537276117, + "total_terms": 14165667143, + "documents": 11959635, + "unique_terms": 44860768, + "downloaded": False + }, + + # MS MARCO V2 document corpus, doc2query-T5 expansions. + "msmarco-v2-doc-d2q-t5": { + "description": "Lucene index of the MS MARCO V2 document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.tar.gz", + ], + "md5": "25514f77600a6be87aeb1c66c9107b89", + "size compressed (bytes)": 8155218407, + "total_terms": 19760783236, + "documents": 11959635, + "unique_terms": 54148271, + "downloaded": False + }, + "msmarco-v2-doc-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + ], + "md5": "a3ce9b1146857a332825825623ab89e7", + "size compressed (bytes)": 54415612794, + "total_terms": 19760783236, + "documents": 11959635, + "unique_terms": 54148271, + "downloaded": False + }, + + # MS MARCO V2 segmented document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-doc-segmented": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.tar.gz" + ], + "md5": "8a5f444fa5a63cc5d4ddc3e6dd15faa0", + "size compressed (bytes)": 109269078191, + "total_terms": 24780918039, + "documents": 124131414, + "unique_terms": 29265408, + "downloaded": False + }, + "msmarco-v2-doc-segmented-slim": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented-slim.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-slim.20220808.4d6d2a.tar.gz" + ], + "md5": "f50c591aa9a0a0126ebc4dc53c6306d7", + "size compressed (bytes)": 20852487058, + "total_terms": 24780918039, + "documents": 124131414, + "unique_terms": 29265408, + "downloaded": False + }, + "msmarco-v2-doc-segmented-full": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented-full.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-full.20220808.4d6d2a.tar.gz" + ], + "md5": "259b936d3591e48770da9dde153d1617", + "size compressed (bytes)": 201358944352, + "total_terms": 24780918039, + "documents": 124131414, + "unique_terms": 29265408, + "downloaded": False + }, + + # MS MARCO V2 segmented document corpus, doc2query-T5 expansions. + "msmarco-v2-doc-segmented-d2q-t5": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.tar.gz" + ], + "md5": "1e9fa18f082aaadfef02ba9eea32fcc2", + "size compressed (bytes)": 24242738999, + "total_terms": 30376034132, + "documents": 124131414, + "unique_terms": 38932296, + "downloaded": False + }, + "msmarco-v2-doc-segmented-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 segmented document corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + ], + "md5": "eff6fe5b61936491c8985ad7efa46b20", + "size compressed (bytes)": 114315186555, + "total_terms": 30376034132, + "documents": 124131414, + "unique_terms": 38932296, + "downloaded": False + }, + + # MS MARCO V2 passage corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-passage": { + "description": "Lucene index of the MS MARCO V2 passage corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage.20220808.4d6d2a.tar.gz" + ], + "md5": "eacd8556dd416ccad517b5e7dc97bceb", + "size compressed (bytes)": 38808092190, + "total_terms": 4673266800, + "documents": 138364198, + "unique_terms": 11885838, + "downloaded": False + }, + "msmarco-v2-passage-slim": { + "description": "Lucene index of the MS MARCO V2 passage corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-slim.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-slim.20220808.4d6d2a.tar.gz" + ], + "md5": "d7e644c048669aa72314dd358b475765", + "size compressed (bytes)": 8170344330, + "total_terms": 4673266800, + "documents": 138364198, + "unique_terms": 11885838, + "downloaded": False + }, + "msmarco-v2-passage-full": { + "description": "Lucene index of the MS MARCO V2 passage corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-full.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-full.20220808.4d6d2a.tar.gz" + ], + "md5": "ef5c22c865094c386b9ec600165bb061", + "size compressed (bytes)": 60413585958, + "total_terms": 4673266800, + "documents": 138364198, + "unique_terms": 11885838, + "downloaded": False + }, + + # MS MARCO V2 passage corpus, doc2query-T5 expansions. + "msmarco-v2-passage-d2q-t5": { + "description": "Lucene index of the MS MARCO V2 passage corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.tar.gz", + ], + "md5": "3c357f9c219e4c3d980bc663e1f5a5f4", + "size compressed (bytes)": 14404903785, + "total_terms": 16961479264, + "documents": 138364198, + "unique_terms": 36651533, + "downloaded": False + }, + "msmarco-v2-passage-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 passage corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + ], + "md5": "01e369b644e5a8b7413e04140780cf94", + "size compressed (bytes)": 59206472740, + "total_terms": 16961479264, + "documents": 138364198, + "unique_terms": 36651533, + "downloaded": False + }, + + # MS MARCO V2 augmented passage corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-passage-augmented": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.tar.gz" + ], + "md5": "69675971a0172eb5e37668ea42761d43", + "size compressed (bytes)": 75036026507, + "total_terms": 15272965252, + "documents": 138364198, + "unique_terms": 16579899, + "downloaded": False + }, + "msmarco-v2-passage-augmented-slim": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus ('slim' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-augmented-slim.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-slim.20220808.4d6d2a.tar.gz" + ], + "md5": "3524b5b28117ac1a5365cd664c6871f1", + "size compressed (bytes)": 14757394934, + "total_terms": 15272965252, + "documents": 138364198, + "unique_terms": 16579899, + "downloaded": False + }, + "msmarco-v2-passage-augmented-full": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus ('full' version). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-augmented-full.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-full.20220808.4d6d2a.tar.gz" + ], + "md5": "c3e18c02e749c0416e1acc653899c6b0", + "size compressed (bytes)": 130622740320, + "total_terms": 15272965252, + "documents": 138364198, + "unique_terms": 16579899, + "downloaded": False + }, + + # MS MARCO V2 augmented passage corpus, doc2query-T5 expansions. + "msmarco-v2-passage-augmented-d2q-t5": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.tar.gz" + ], + "md5": "2b683a3a64692b95375ddbdcb9590f25", + "size compressed (bytes)": 14404903785, + "total_terms": 27561177716, + "documents": 138364198, + "unique_terms": 41177061, + "downloaded": False + }, + "msmarco-v2-passage-augmented-d2q-t5-docvectors": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 augmented passage corpus with doc2query-T5 expansions. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220808.4d6d2a.tar.gz", + ], + "md5": "fe6eaeceabaa06cb09fdf8432f65f9d8", + "size compressed (bytes)": 59206472740, + "total_terms": 27561177716, + "documents": 138364198, + "unique_terms": 41177061, + "downloaded": False + }, + + "enwiki-paragraphs": { + "description": "Lucene index of English Wikipedia for BERTserini", + "filename": "lucene-index.enwiki-20180701-paragraphs.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.enwiki-20180701-paragraphs.tar.gz", + "https://vault.cs.uwaterloo.ca/s/WHKMSCbwQfDXyHt/download" + ], + "md5": "77d1cd530579905dad2ee3c2bda1b73d", + "size compressed (bytes)": 17725958785, + "total_terms": 1498980668, + "documents": 39880064, + "unique_terms": -1, + "downloaded": False + }, + "zhwiki-paragraphs": { + "description": "Lucene index of Chinese Wikipedia for BERTserini", + "filename": "lucene-index.zhwiki-20181201-paragraphs.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.zhwiki-20181201-paragraphs.tar.gz", + "https://vault.cs.uwaterloo.ca/s/6kEjQZaRYtnb8A6/download" + ], + "md5": "c005af4036296972831288c894918a92", + "size compressed (bytes)": 3284531213, + "total_terms": 320776789, + "documents": 4170312, + "unique_terms": -1, + "downloaded": False + }, + "trec-covid-r5-abstract": { + "description": "Lucene index for TREC-COVID Round 5: abstract index", + "filename": "lucene-index-cord19-abstract-2020-07-16.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-07-16/lucene-index-cord19-abstract-2020-07-16.tar.gz", + "https://vault.cs.uwaterloo.ca/s/c37JxKYQ7Hogs72/download" + ], + "md5": "c883571ccc78b4c2ce05b41eb07f5405", + "size compressed (bytes)": 2796524, + "total_terms": 22100404, + "documents": 192459, + "unique_terms": 195875, + "downloaded": False + }, + "trec-covid-r5-full-text": { + "description": "Lucene index for TREC-COVID Round 5: full-text index", + "filename": "lucene-index-cord19-full-text-2020-07-16.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-07-16/lucene-index-cord19-full-text-2020-07-16.tar.gz", + "https://vault.cs.uwaterloo.ca/s/c7CcxRbFWfiFnFq/download" + ], + "md5": "23cfad89b4c206d66125f5736f60248f", + "size compressed (bytes)": 5351744, + "total_terms": 275238847, + "documents": 192460, + "unique_terms": 1843368, + "downloaded": False + }, + "trec-covid-r5-paragraph": { + "description": "Lucene index for TREC-COVID Round 5: paragraph index", + "filename": "lucene-index-cord19-paragraph-2020-07-16.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-07-16/lucene-index-cord19-paragraph-2020-07-16.tar.gz", + "https://vault.cs.uwaterloo.ca/s/HXigraF5KJL3xS8/download" + ], + "md5": "c2c6ac832f8a1fcb767d2356d2b1e1df", + "size compressed (bytes)": 11352968, + "total_terms": 627083574, + "documents": 3010497, + "unique_terms": 1843368, + "downloaded": False + }, + "trec-covid-r4-abstract": { + "description": "Lucene index for TREC-COVID Round 4: abstract index", + "filename": "lucene-index-cord19-abstract-2020-06-19.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-06-19/lucene-index-cord19-abstract-2020-06-19.tar.gz", + "https://vault.cs.uwaterloo.ca/s/fBta6sAt4MdaHQX/download" + ], + "md5": "029bd55daba8800fbae2be9e5fcd7b33", + "size compressed (bytes)": 2584264, + "total_terms": 18724353, + "documents": 158226, + "unique_terms": 179937, + "downloaded": False + }, + "trec-covid-r4-full-text": { + "description": "Lucene index for TREC-COVID Round 4: full-text index", + "filename": "lucene-index-cord19-full-text-2020-06-19.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-06-19/lucene-index-cord19-full-text-2020-06-19.tar.gz", + "https://vault.cs.uwaterloo.ca/s/yErSHZHD38jcDSY/download" + ], + "md5": "3d0eb12094a24cff9bcacd1f17c3ea1c", + "size compressed (bytes)": 4983900, + "total_terms": 254810123, + "documents": 158227, + "unique_terms": 1783089, + "downloaded": False + }, + "trec-covid-r4-paragraph": { + "description": "Lucene index for TREC-COVID Round 4: paragraph index", + "filename": "lucene-index-cord19-paragraph-2020-06-19.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-06-19/lucene-index-cord19-paragraph-2020-06-19.tar.gz", + "https://vault.cs.uwaterloo.ca/s/7md4kwNNgy3oxiH/download" + ], + "md5": "5cd8cd6998177bed7a3e0057ef8b3595", + "size compressed (bytes)": 10382704, + "total_terms": 567579834, + "documents": 2781172, + "unique_terms": 1783089, + "downloaded": False + }, + "trec-covid-r3-abstract": { + "description": "Lucene index for TREC-COVID Round 3: abstract index", + "filename": "lucene-index-cord19-abstract-2020-05-19.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-19/lucene-index-cord19-abstract-2020-05-19.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Zg9p2D5tJgiTGx2/download" + ], + "md5": "37bb97d0c41d650ba8e135fd75ae8fd8", + "size compressed (bytes)": 2190328, + "total_terms": 16278419, + "documents": 128465, + "unique_terms": 168291, + "downloaded": False + }, + "trec-covid-r3-full-text": { + "description": "Lucene index for TREC-COVID Round 3: full-text index", + "filename": "lucene-index-cord19-full-text-2020-05-19.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-19/lucene-index-cord19-full-text-2020-05-19.tar.gz", + "https://vault.cs.uwaterloo.ca/s/BTzaQgZ55898dXM/download" + ], + "md5": "f5711915a66cd2b511e0fb8d03e4c325", + "size compressed (bytes)": 4233300, + "total_terms": 215806519, + "documents": 128465, + "unique_terms": 1620335, + "downloaded": False + }, + "trec-covid-r3-paragraph": { + "description": "Lucene index for TREC-COVID Round 3: paragraph index", + "filename": "lucene-index-cord19-paragraph-2020-05-19.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-19/lucene-index-cord19-paragraph-2020-05-19.tar.gz", + "https://vault.cs.uwaterloo.ca/s/nPyMYTys6NkmEdN/download" + ], + "md5": "012ab1f804382b2275c433a74d7d31f2", + "size compressed (bytes)": 9053524, + "total_terms": 485309568, + "documents": 2297201, + "unique_terms": 1620335, + "downloaded": False + }, + "trec-covid-r2-abstract": { + "description": "Lucene index for TREC-COVID Round 2: abstract index", + "filename": "lucene-index-cord19-abstract-2020-05-01.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-01/lucene-index-cord19-abstract-2020-05-01.tar.gz", + "https://vault.cs.uwaterloo.ca/s/3YZE65FSypwfnQQ/download" + ], + "md5": "a06e71a98a68d31148cb0e97e70a2ee1", + "size compressed (bytes)": 1575804, + "total_terms": 7651125, + "documents": 59873, + "unique_terms": 109750, + "downloaded": False + }, + "trec-covid-r2-full-text": { + "description": "Lucene index for TREC-COVID Round 2: full-text index", + "filename": "lucene-index-cord19-full-text-2020-05-01.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-01/lucene-index-cord19-full-text-2020-05-01.tar.gz", + "https://vault.cs.uwaterloo.ca/s/NdPEB7swXeZnq3o/download" + ], + "md5": "e7eca1b976cdf2cd80e908c9ac2263cb", + "size compressed (bytes)": 3088540, + "total_terms": 154736295, + "documents": 59876, + "unique_terms": 1214374, + "downloaded": False + }, + "trec-covid-r2-paragraph": { + "description": "Lucene index for TREC-COVID Round 2: paragraph index", + "filename": "lucene-index-cord19-paragraph-2020-05-01.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-05-01/lucene-index-cord19-paragraph-2020-05-01.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Mz7n5FAt7rmnYCY/download" + ], + "md5": "8f9321757a03985ac1c1952b2fff2c7d", + "size compressed (bytes)": 6881696, + "total_terms": 360119048, + "documents": 1758168, + "unique_terms": 1214374, + "downloaded": False + }, + "trec-covid-r1-abstract": { + "description": "Lucene index for TREC-COVID Round 1: abstract index", + "filename": "lucene-index-covid-2020-04-10.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-04-10/lucene-index-covid-2020-04-10.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Rz8AEmsFo9NWGP6/download" + ], + "md5": "ec239d56498c0e7b74e3b41e1ce5d42a", + "size compressed (bytes)": 1621440, + "total_terms": 6672525, + "documents": 51069, + "unique_terms": 104595, + "downloaded": False + }, + "trec-covid-r1-full-text": { + "description": "Lucene index for TREC-COVID Round 1: full-text index", + "filename": "lucene-index-covid-full-text-2020-04-10.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-04-10/lucene-index-covid-full-text-2020-04-10.tar.gz", + "https://vault.cs.uwaterloo.ca/s/oQzSoxrT3grGmBe/download" + ], + "md5": "401a6f5583b0f05340c73fbbeb3279c8", + "size compressed (bytes)": 4471820, + "total_terms": 315624154, + "documents": 51071, + "unique_terms": 1812522, + "downloaded": False + }, + "trec-covid-r1-paragraph": { + "description": "Lucene index for TREC-COVID Round 1: paragraph index", + "filename": "lucene-index-covid-paragraph-2020-04-10.tar.gz", + "urls": [ + "https://git.uwaterloo.ca/jimmylin/cord19-indexes/raw/master/2020-04-10/lucene-index-covid-paragraph-2020-04-10.tar.gz", + "https://vault.cs.uwaterloo.ca/s/HDtb5Ys7MYBkePC/download" + ], + "md5": "8b87a2c55bc0a15b87f11e796860216a", + "size compressed (bytes)": 5994192, + "total_terms": 330715243, + "documents": 1412648, + "unique_terms": 944574, + "downloaded": False + }, + "cast2019": { + "description": "Lucene index for TREC 2019 CaST", + "filename": "index-cast2019.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-cast2019.tar.gz", + "https://vault.cs.uwaterloo.ca/s/56LcDcRPopdQc4d/download" + ], + "md5": "36e604d7f5a4e08ade54e446be2f6345", + "size compressed (bytes)": 21266884884, + "total_terms": 1593628213, + "documents": 38429835, + "unique_terms": -1, + "downloaded": False + }, + "wikipedia-dpr": { + "description": "Lucene index of Wikipedia with DPR 100-word splits", + "filename": "index-wikipedia-dpr-20210120-d1b9e6.tar.gz", + "readme": "index-wikipedia-dpr-20210120-d1b9e6-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-wikipedia-dpr-20210120-d1b9e6.tar.gz", + "https://vault.cs.uwaterloo.ca/s/t6tDJmpoxPw9tH8/download" + ], + "md5": "c28f3a56b2dfcef25bf3bf755c264d04", + "size compressed (bytes)": 9177942656, + "total_terms": 1512973270, + "documents": 21015324, + "unique_terms": 5345463, + "downloaded": False + }, + "wikipedia-dpr-slim": { + "description": "Lucene index of Wikipedia with DPR 100-word splits (slim version, document text not stored)", + "filename": "index-wikipedia-dpr-slim-20210120-d1b9e6.tar.gz", + "readme": "index-wikipedia-dpr-slim-20210120-d1b9e6-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-wikipedia-dpr-slim-20210120-d1b9e6.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Gk2sfTyJCyaTrYH/download" + ], + "md5": "7d40604a824b5df37a1ae9d25ea38071", + "size compressed (bytes)": 1810342390, + "total_terms": 1512973270, + "documents": 21015324, + "unique_terms": 5345463, + "downloaded": False + }, + "wikipedia-kilt-doc": { + "description": "Lucene index of Wikipedia snapshot used as KILT's knowledge source.", + "filename": "index-wikipedia-kilt-doc-20210421-f29307.tar.gz", + "readme": "index-wikipedia-kilt-doc-20210421-f29307-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-wikipedia-kilt-doc-20210421-f29307.tar.gz", + "https://vault.cs.uwaterloo.ca/s/RqtLg3CZT38k32c/download" + ], + "md5": "b8ec8feb654f7aaa86f9901dc6c804a8", + "size compressed (bytes)": 10901127209, + "total_terms": 1915061164, + "documents": 5903530, + "unique_terms": 8722502, + "downloaded": False + }, + "wiki-all-6-3-tamber": { + "description": "Lucene index of wiki-all-6-3-tamber from castorini/odqa-wiki-corpora", + "filename": "lucene-index.wiki-all-6-3-tamber.20230111.40277a.tar.gz", + "readme": "lucene-index-wiki-all-6-3-tamber-20230111-40277a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.wiki-all-6-3-tamber.20230111.40277a.tar.gz", + ], + "md5": "018b45ee8c6278a879caa3145b2dc05d", + "size compressed (bytes)": 26240661946, + "total_terms": 5064706668, + "documents": 76680040, + "unique_terms": 14604922, + "downloaded": False + }, + + # Mr.TyDi indexes + "mrtydi-v1.1-arabic": { + "description": "Lucene index for Mr.TyDi v1.1 (Arabic).", + "filename": "lucene-index.mrtydi-v1.1-arabic.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-arabic.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-arabic.20220928.b5ecc5.tar.gz", + ], + "md5": "efff40a2548f759eb8b0e47e0622685b", + "size compressed (bytes)": 1420441600, + "total_terms": 92529032, + "documents": 2106586, + "unique_terms": 1284748, + "downloaded": False + }, + "mrtydi-v1.1-bengali": { + "description": "Lucene index for Mr.TyDi v1.1 (Bengali).", + "filename": "lucene-index.mrtydi-v1.1-bengali.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-bengali.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-bengali.20220928.b5ecc5.tar.gz" + ], + "md5": "6ed844c8f17b2f041fba7c5676d3fb42", + "size compressed (bytes)": 294942720, + "total_terms": 15236599, + "documents": 304059, + "unique_terms": 520699, + "downloaded": False + }, + "mrtydi-v1.1-english": { + "description": "Lucene index for Mr.TyDi v1.1 (English).", + "filename": "lucene-index.mrtydi-v1.1-english.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-english.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-english.20220928.b5ecc5.tar.gz" + ], + "md5": "e6b0a2531d958c3d1a65634dc315b0ab", + "size compressed (bytes)": 20566118400, + "total_terms": 1507060932, + "documents": 32907100, + "unique_terms": -1, + "downloaded": False + }, + "mrtydi-v1.1-finnish": { + "description": "Lucene index for Mr.TyDi v1.1 (Finnish).", + "filename": "lucene-index.mrtydi-v1.1-finnish.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-finnish.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-finnish.20220928.b5ecc5.tar.gz" + ], + "md5": "0f464c022447eed5431157f0b2feb0b3", + "size compressed (bytes)": 1116272640, + "total_terms": 69416543, + "documents": 1908757, + "unique_terms": 1715076, + "downloaded": False + }, + "mrtydi-v1.1-indonesian": { + "description": "Lucene index for Mr.TyDi v1.1 (Indonesian).", + "filename": "lucene-index.mrtydi-v1.1-indonesian.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-indonesian.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-indonesian.20220928.b5ecc5.tar.gz" + ], + "md5": "345d43a2443786a3394a93a6f7ef77b7", + "size compressed (bytes)": 698388480, + "total_terms": 52493134, + "documents": 1469399, + "unique_terms": 942552, + "downloaded": False + }, + "mrtydi-v1.1-japanese": { + "description": "Lucene index for Mr.TyDi v1.1 (Japanese).", + "filename": "lucene-index.mrtydi-v1.1-japanese.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-japanese.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-japanese.20220928.b5ecc5.tar.gz" + ], + "md5": "5f0802c1257c325a3e25c58523dba841", + "size compressed (bytes)": 4333844480, + "total_terms": 300761975, + "documents": 7000027, + "unique_terms": 1588879, + "downloaded": False + }, + "mrtydi-v1.1-korean": { + "description": "Lucene index for Mr.TyDi v1.1 (Korean).", + "filename": "lucene-index.mrtydi-v1.1-korean.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-korean.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-korean.20220928.b5ecc5.tar.gz" + ], + "md5": "4277f406b138c46edf7c17e4248f3b2e", + "size compressed (bytes)": 1349109760, + "total_terms": 122217295, + "documents": 1496126, + "unique_terms": 1517179, + "downloaded": False + }, + "mrtydi-v1.1-russian": { + "description": "Lucene index for Mr.TyDi v1.1 (Russian).", + "filename": "lucene-index.mrtydi-v1.1-russian.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-russian.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-russian.20220928.b5ecc5.tar.gz" + ], + "md5": "d5837fee29c60c7a3a24cfd598056038", + "size compressed (bytes)": 6864660480, + "total_terms": 346329117, + "documents": 9597504, + "unique_terms": 3034240, + "downloaded": False + }, + "mrtydi-v1.1-swahili": { + "description": "Lucene index for Mr.TyDi v1.1 (Swahili).", + "filename": "lucene-index.mrtydi-v1.1-swahili.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-swahili.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-swahili.20220928.b5ecc5.tar.gz" + ], + "md5": "bebff76ec6dfe76c904604f8ed1bcd3e", + "size compressed (bytes)": 59607040, + "total_terms": 4937051, + "documents": 136689, + "unique_terms": 385711, + "downloaded": False + }, + "mrtydi-v1.1-telugu": { + "description": "Lucene index for Mr.TyDi v1.1 (Telugu).", + "filename": "lucene-index.mrtydi-v1.1-telugu.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-telugu.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-telugu.20220928.b5ecc5.tar.gz" + ], + "md5": "89f8b280cacbdc27e90bb1ea40029c21", + "size compressed (bytes)": 519157760, + "total_terms": 26812052, + "documents": 548224, + "unique_terms": 1157217, + "downloaded": False + }, + "mrtydi-v1.1-thai": { + "description": "Lucene index for Mr.TyDi v1.1 (Thai).", + "filename": "lucene-index.mrtydi-v1.1-thai.20220928.b5ecc5.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-thai.20220928.b5ecc5.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-thai.20220928.b5ecc5.tar.gz" + ], + "md5": "047152fc6bc1b5c5d945f38b23de971e", + "size compressed (bytes)": 546201600, + "total_terms": 31550936, + "documents": 568855, + "unique_terms": 663628, + "downloaded": False + }, + + # BEIR (v1.0.0) flat indexes + "beir-v1.0.0-trec-covid.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): TREC-COVID", + "filename": "lucene-index.beir-v1.0.0-trec-covid.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-covid.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-covid.flat.20221116.505594.tar.gz" + ], + "md5": "57b812594b11d064a23123137ae7dade", + "size compressed (bytes)": 226268665, + "total_terms": 20822821, + "documents": 171331, + "unique_terms": 202648, + "downloaded": False + }, + "beir-v1.0.0-bioasq.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): BioASQ", + "filename": "lucene-index.beir-v1.0.0-bioasq.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-bioasq.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-bioasq.flat.20221116.505594.tar.gz" + ], + "md5": "cf8d4804b06bb8678d30b1375b46a0b3", + "size compressed (bytes)": 24821933356, + "total_terms": 2257541758, + "documents": 14914603, + "unique_terms": 4960004, + "downloaded": False + }, + "beir-v1.0.0-nfcorpus.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): NFCorpus", + "filename": "lucene-index.beir-v1.0.0-nfcorpus.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nfcorpus.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nfcorpus.flat.20221116.505594.tar.gz" + ], + "md5": "34c0b11ad13a4715a78d025902061d37", + "size compressed (bytes)": 6509700, + "total_terms": 637485, + "documents": 3633, + "unique_terms": 22111, + "downloaded": False + }, + "beir-v1.0.0-nq.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): NQ", + "filename": "lucene-index.beir-v1.0.0-nq.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nq.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nq.flat.20221116.505594.tar.gz" + ], + "md5": "a2c5db4dd3780fff3c7c6bfea1dd08e8", + "size compressed (bytes)": 1645453748, + "total_terms": 151249294, + "documents": 2681468, + "unique_terms": 997027, + "downloaded": False + }, + "beir-v1.0.0-hotpotqa.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): HotpotQA", + "filename": "lucene-index.beir-v1.0.0-hotpotqa.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-hotpotqa.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-hotpotqa.flat.20221116.505594.tar.gz" + ], + "md5": "3be2875f93537369641287dcdf25add9", + "size compressed (bytes)": 2019081888, + "total_terms": 172477066, + "documents": 5233329, + "unique_terms": 2644892, + "downloaded": False + }, + "beir-v1.0.0-fiqa.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): FiQA-2018", + "filename": "lucene-index.beir-v1.0.0-fiqa.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fiqa.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fiqa.flat.20221116.505594.tar.gz" + ], + "md5": "409b779e8a39813d2fbdfd1ea2f009e9", + "size compressed (bytes)": 55982536, + "total_terms": 5288635, + "documents": 57600, + "unique_terms": 66977, + "downloaded": False + }, + "beir-v1.0.0-signal1m.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): Signal-1M", + "filename": "lucene-index.beir-v1.0.0-signal1m.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-signal1m.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-signal1m.flat.20221116.505594.tar.gz" + ], + "md5": "d0828b92a3df814bfa4b73bddeb25da7", + "size compressed (bytes)": 496596576, + "total_terms": 32240069, + "documents": 2866315, + "unique_terms": 796647, + "downloaded": False + }, + "beir-v1.0.0-trec-news.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): TREC-NEWS", + "filename": "lucene-index.beir-v1.0.0-trec-news.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-news.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-news.flat.20221116.505594.tar.gz" + ], + "md5": "98df3de34b4b76a4390520c606817ec4", + "size compressed (bytes)": 2623576957, + "total_terms": 275651967, + "documents": 594589, + "unique_terms": 729872, + "downloaded": False + }, + "beir-v1.0.0-robust04.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): Robust04", + "filename": "lucene-index.beir-v1.0.0-robust04.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-robust04.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-robust04.flat.20221116.505594.tar.gz" + ], + "md5": "89dfcb7297c12a772d1bfd7917df908d", + "size compressed (bytes)": 1728446730, + "total_terms": 174384263, + "documents": 528036, + "unique_terms": 923466, + "downloaded": False + }, + "beir-v1.0.0-arguana.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): ArguAna", + "filename": "lucene-index.beir-v1.0.0-arguana.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-arguana.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-arguana.flat.20221116.505594.tar.gz" + ], + "md5": "d6c005689a9e7e91f3b1a7fbc74063e1", + "size compressed (bytes)": 10563485, + "total_terms": 969528, + "documents": 8674, + "unique_terms": 23895, + "downloaded": False + }, + "beir-v1.0.0-webis-touche2020.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): Webis-Touche2020", + "filename": "lucene-index.beir-v1.0.0-webis-touche2020.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-webis-touche2020.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-webis-touche2020.flat.20221116.505594.tar.gz" + ], + "md5": "20c6e9f29461eea1a520cd1abead709a", + "size compressed (bytes)": 750400932, + "total_terms": 76082209, + "documents": 382545, + "unique_terms": 525540, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-android.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-android", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-android.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-android.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-android.flat.20221116.505594.tar.gz" + ], + "md5": "9f9f35e34f76336bc6e516599cbaf75b", + "size compressed (bytes)": 17423320, + "total_terms": 1760762, + "documents": 22998, + "unique_terms": 41456, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-english.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-english", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-english.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-english.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-english.flat.20221116.505594.tar.gz" + ], + "md5": "7d887497d32eedd92c314c93feaca28e", + "size compressed (bytes)": 24949578, + "total_terms": 2236655, + "documents": 40221, + "unique_terms": 62517, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gaming.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-gaming", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gaming.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gaming.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming.flat.20221116.505594.tar.gz" + ], + "md5": "140e16ee86a69c8fd4d16a83a6d51591", + "size compressed (bytes)": 29156970, + "total_terms": 2827717, + "documents": 45301, + "unique_terms": 60070, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gis.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-gis", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gis.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gis.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gis.flat.20221116.505594.tar.gz" + ], + "md5": "4bd93695f28af0a11172f387ef41fee6", + "size compressed (bytes)": 43396154, + "total_terms": 4048584, + "documents": 37637, + "unique_terms": 184133, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-mathematica.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-mathematica", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-mathematica.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-mathematica.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica.flat.20221116.505594.tar.gz" + ], + "md5": "5b5b7ab3d0437428e29a5a1431de1ca5", + "size compressed (bytes)": 21589909, + "total_terms": 2332642, + "documents": 16705, + "unique_terms": 111611, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-physics.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-physics", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-physics.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-physics.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-physics.flat.20221116.505594.tar.gz" + ], + "md5": "6864144bca1bb169a452321e14ef12e0", + "size compressed (bytes)": 37956215, + "total_terms": 3785483, + "documents": 38316, + "unique_terms": 55950, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-programmers.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-programmers", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-programmers.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-programmers.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers.flat.20221116.505594.tar.gz" + ], + "md5": "7b7d2bbf7cc5d53924d09c3b781dba8a", + "size compressed (bytes)": 40297069, + "total_terms": 3905694, + "documents": 32176, + "unique_terms": 74195, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-stats.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-stats", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-stats.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-stats.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-stats.flat.20221116.505594.tar.gz" + ], + "md5": "0b09b7bee2b60df0ff73710a93a79218", + "size compressed (bytes)": 52212599, + "total_terms": 5356042, + "documents": 42269, + "unique_terms": 183358, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-tex.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-tex", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-tex.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-tex.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-tex.flat.20221116.505594.tar.gz" + ], + "md5": "48a2541bd7d1adec06f053486655e815", + "size compressed (bytes)": 91819025, + "total_terms": 9556423, + "documents": 68184, + "unique_terms": 288088, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-unix.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-unix", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-unix.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-unix.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-unix.flat.20221116.505594.tar.gz" + ], + "md5": "a6cc0a867f6210ad44755c0a36fd682a", + "size compressed (bytes)": 53802808, + "total_terms": 5767374, + "documents": 47382, + "unique_terms": 206323, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-webmasters.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-webmasters", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-webmasters.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-webmasters.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters.flat.20221116.505594.tar.gz" + ], + "md5": "a04f65d575b4233a151c4960b82815b9", + "size compressed (bytes)": 15174811, + "total_terms": 1482585, + "documents": 17405, + "unique_terms": 40547, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-wordpress.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-wordpress", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-wordpress.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-wordpress.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress.flat.20221116.505594.tar.gz" + ], + "md5": "4ab079b9f7d0463955ce073b5d53e64d", + "size compressed (bytes)": 54807597, + "total_terms": 5463472, + "documents": 48605, + "unique_terms": 125727, + "downloaded": False + }, + "beir-v1.0.0-quora.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): Quora", + "filename": "lucene-index.beir-v1.0.0-quora.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-quora.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-quora.flat.20221116.505594.tar.gz" + ], + "md5": "53fa2bd0667d23a50f95adaf169b87a1", + "size compressed (bytes)": 52698691, + "total_terms": 4390852, + "documents": 522931, + "unique_terms": 69597, + "downloaded": False + }, + "beir-v1.0.0-dbpedia-entity.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): DBPedia", + "filename": "lucene-index.beir-v1.0.0-dbpedia-entity.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-dbpedia-entity.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-dbpedia-entity.flat.20221116.505594.tar.gz" + ], + "md5": "6bc15a920e262d12ec3842401755e934", + "size compressed (bytes)": 2085473498, + "total_terms": 164794982, + "documents": 4635922, + "unique_terms": 3351459, + "downloaded": False + }, + "beir-v1.0.0-scidocs.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): SCIDOCS", + "filename": "lucene-index.beir-v1.0.0-scidocs.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scidocs.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scidocs.flat.20221116.505594.tar.gz" + ], + "md5": "f1fba96a71a62bc567ecbd167de3794b", + "size compressed (bytes)": 186572809, + "total_terms": 3266767, + "documents": 25657, + "unique_terms": 63604, + "downloaded": False + }, + "beir-v1.0.0-fever.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): FEVER", + "filename": "lucene-index.beir-v1.0.0-fever.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fever.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fever.flat.20221116.505594.tar.gz" + ], + "md5": "1b06f43ea36e2ed450d1b1d90099ae67", + "size compressed (bytes)": 3880155553, + "total_terms": 325179165, + "documents": 5416568, + "unique_terms": 3293639, + "downloaded": False + }, + "beir-v1.0.0-climate-fever.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): Climate-FEVER", + "filename": "lucene-index.beir-v1.0.0-climate-fever.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-climate-fever.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-climate-fever.flat.20221116.505594.tar.gz" + ], + "md5": "68811e2614b3bac9e1b879c883fc722e", + "size compressed (bytes)": 3880208200, + "total_terms": 325185072, + "documents": 5416593, + "unique_terms": 3293621, + "downloaded": False + }, + "beir-v1.0.0-scifact.flat": { + "description": "Lucene flat index of BEIR (v1.0.0): SciFact", + "filename": "lucene-index.beir-v1.0.0-scifact.flat.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scifact.flat.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scifact.flat.20221116.505594.tar.gz" + ], + "md5": "6f6e55f1cf80c362f86bee65529b71de", + "size compressed (bytes)": 8851173, + "total_terms": 838128, + "documents": 5183, + "unique_terms": 28865, + "downloaded": False + }, + + # BEIR (v1.0.0) multifield indexes + "beir-v1.0.0-trec-covid.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): TREC-COVID", + "filename": "lucene-index.beir-v1.0.0-trec-covid.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-covid.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-covid.multifield.20221116.505594.tar.gz" + ], + "md5": "7501a330a0c9246e6350413c3f6ced7c", + "size compressed (bytes)": 222831983, + "total_terms": 19060122, + "documents": 129192, + "unique_terms": 193851, + "downloaded": False + }, + "beir-v1.0.0-bioasq.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): BioASQ", + "filename": "lucene-index.beir-v1.0.0-bioasq.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-bioasq.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-bioasq.multifield.20221116.505594.tar.gz" + ], + "md5": "cc01ab450cac0b8865bd1e70e2a58596", + "size compressed (bytes)": 25346354679, + "total_terms": 2099554307, + "documents": 14914602, + "unique_terms": 4889053, + "downloaded": False + }, + "beir-v1.0.0-nfcorpus.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): NFCorpus", + "filename": "lucene-index.beir-v1.0.0-nfcorpus.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nfcorpus.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nfcorpus.multifield.20221116.505594.tar.gz" + ], + "md5": "904e53b80fe04b3844b97847bc77a772", + "size compressed (bytes)": 6645576, + "total_terms": 601950, + "documents": 3633, + "unique_terms": 21819, + "downloaded": False + }, + "beir-v1.0.0-nq.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): NQ", + "filename": "lucene-index.beir-v1.0.0-nq.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nq.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nq.multifield.20221116.505594.tar.gz" + ], + "md5": "693ca315de9fbbbf7f664be313a03847", + "size compressed (bytes)": 1642708204, + "total_terms": 144050891, + "documents": 2680961, + "unique_terms": 996653, + "downloaded": False + }, + "beir-v1.0.0-hotpotqa.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): HotpotQA", + "filename": "lucene-index.beir-v1.0.0-hotpotqa.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-hotpotqa.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-hotpotqa.multifield.20221116.505594.tar.gz" + ], + "md5": "ef8c2f40097e652eec99e6bf25e151cd", + "size compressed (bytes)": 2083441492, + "total_terms": 158180692, + "documents": 5233235, + "unique_terms": 2627639, + "downloaded": False + }, + "beir-v1.0.0-fiqa.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): FiQA-2018", + "filename": "lucene-index.beir-v1.0.0-fiqa.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fiqa.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fiqa.multifield.20221116.505594.tar.gz" + ], + "md5": "073f3f19a94689e5fac511af49316fe1", + "size compressed (bytes)": 55984419, + "total_terms": 5288635, + "documents": 57600, + "unique_terms": 66977, + "downloaded": False + }, + "beir-v1.0.0-signal1m.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): Signal-1M", + "filename": "lucene-index.beir-v1.0.0-signal1m.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-signal1m.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-signal1m.multifield.20221116.505594.tar.gz" + ], + "md5": "4482ae02f18e8336c0a95ea33b5b6ede", + "size compressed (bytes)": 496603092, + "total_terms": 32240069, + "documents": 2866315, + "unique_terms": 796647, + "downloaded": False + }, + "beir-v1.0.0-trec-news.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): TREC-NEWS", + "filename": "lucene-index.beir-v1.0.0-trec-news.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-news.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-news.multifield.20221116.505594.tar.gz" + ], + "md5": "3151122da3cf081a0c8894af7b75be43", + "size compressed (bytes)": 2633899363, + "total_terms": 270886723, + "documents": 578605, + "unique_terms": 727856, + "downloaded": False + }, + "beir-v1.0.0-robust04.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): Robust04", + "filename": "lucene-index.beir-v1.0.0-robust04.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-robust04.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-robust04.multifield.20221116.505594.tar.gz" + ], + "md5": "fdf741a75efe089d0451de5720b52c3a", + "size compressed (bytes)": 1728446303, + "total_terms": 174384263, + "documents": 528036, + "unique_terms": 923466, + "downloaded": False + }, + "beir-v1.0.0-arguana.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): ArguAna", + "filename": "lucene-index.beir-v1.0.0-arguana.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-arguana.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-arguana.multifield.20221116.505594.tar.gz" + ], + "md5": "a8201952860d31c56ea8a54c31e88b51", + "size compressed (bytes)": 10524118, + "total_terms": 944123, + "documents": 8674, + "unique_terms": 23867, + "downloaded": False + }, + "beir-v1.0.0-webis-touche2020.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): Webis-Touche2020", + "filename": "lucene-index.beir-v1.0.0-webis-touche2020.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-webis-touche2020.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-webis-touche2020.multifield.20221116.505594.tar.gz" + ], + "md5": "e160ea813990cff4dbdb9f50d509f8ea", + "size compressed (bytes)": 750724439, + "total_terms": 74066724, + "documents": 382545, + "unique_terms": 524665, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-android.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-android", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-android.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-android.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-android.multifield.20221116.505594.tar.gz" + ], + "md5": "de85f92a018d83a7ea496d9ef955b8c5", + "size compressed (bytes)": 17887736, + "total_terms": 1591285, + "documents": 22998, + "unique_terms": 40824, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-english.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-english", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-english.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-english.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-english.multifield.20221116.505594.tar.gz" + ], + "md5": "71c5d3db04586283772f6069668f5bfa", + "size compressed (bytes)": 25558901, + "total_terms": 2006983, + "documents": 40221, + "unique_terms": 61530, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gaming.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-gaming", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gaming.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gaming.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming.multifield.20221116.505594.tar.gz" + ], + "md5": "ff7c628b568f916c3bc3f7bf2af831eb", + "size compressed (bytes)": 29992453, + "total_terms": 2510477, + "documents": 45300, + "unique_terms": 59113, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gis.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-gis", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gis.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gis.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gis.multifield.20221116.505594.tar.gz" + ], + "md5": "4083830da4922d1294b3fb38873ba5a2", + "size compressed (bytes)": 44188661, + "total_terms": 3789161, + "documents": 37637, + "unique_terms": 183298, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-mathematica.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-mathematica", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-mathematica.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-mathematica.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica.multifield.20221116.505594.tar.gz" + ], + "md5": "baa9414c385db88eaafffa95d5ec7d48", + "size compressed (bytes)": 21911919, + "total_terms": 2234369, + "documents": 16705, + "unique_terms": 111306, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-physics.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-physics", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-physics.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-physics.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-physics.multifield.20221116.505594.tar.gz" + ], + "md5": "342b105462067b87e78730921dd7288d", + "size compressed (bytes)": 38736492, + "total_terms": 3542078, + "documents": 38316, + "unique_terms": 55229, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-programmers.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-programmers", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-programmers.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-programmers.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers.multifield.20221116.505594.tar.gz" + ], + "md5": "2e95b82caf156d0f0b109c62e0011eab", + "size compressed (bytes)": 40982052, + "total_terms": 3682227, + "documents": 32176, + "unique_terms": 73765, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-stats.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-stats", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-stats.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-stats.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-stats.multifield.20221116.505594.tar.gz" + ], + "md5": "87c53df624baed7921672286beb94f9c", + "size compressed (bytes)": 53094508, + "total_terms": 5073873, + "documents": 42269, + "unique_terms": 182933, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-tex.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-tex", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-tex.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-tex.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-tex.multifield.20221116.505594.tar.gz" + ], + "md5": "86407171e4ff305ecb173afdd49eef7c", + "size compressed (bytes)": 93081190, + "total_terms": 9155405, + "documents": 68184, + "unique_terms": 287393, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-unix.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-unix", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-unix.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-unix.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-unix.multifield.20221116.505594.tar.gz" + ], + "md5": "acb0cc50cccb9e8dfca0ed599df0cfaa", + "size compressed (bytes)": 54758816, + "total_terms": 5449726, + "documents": 47382, + "unique_terms": 205471, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-webmasters.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-webmasters", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-webmasters.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-webmasters.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters.multifield.20221116.505594.tar.gz" + ], + "md5": "7701f016b6fc643c30630742f7712bbd", + "size compressed (bytes)": 15524400, + "total_terms": 1358292, + "documents": 17405, + "unique_terms": 40073, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-wordpress.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-wordpress", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-wordpress.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-wordpress.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress.multifield.20221116.505594.tar.gz" + ], + "md5": "d791cf8449a18ebe698d404f526375ee", + "size compressed (bytes)": 55738636, + "total_terms": 5151575, + "documents": 48605, + "unique_terms": 125110, + "downloaded": False + }, + "beir-v1.0.0-quora.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): Quora", + "filename": "lucene-index.beir-v1.0.0-quora.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-quora.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-quora.multifield.20221116.505594.tar.gz" + ], + "md5": "2d92b46f715df08ce146167ed1b12079", + "size compressed (bytes)": 52703122, + "total_terms": 4390852, + "documents": 522931, + "unique_terms": 69597, + "downloaded": False + }, + "beir-v1.0.0-dbpedia-entity.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): DBPedia", + "filename": "lucene-index.beir-v1.0.0-dbpedia-entity.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-dbpedia-entity.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-dbpedia-entity.multifield.20221116.505594.tar.gz" + ], + "md5": "b3f6b64bfd7903ff25ca2fa01a288392", + "size compressed (bytes)": 2144410289, + "total_terms": 152205479, + "documents": 4635922, + "unique_terms": 3338476, + "downloaded": False + }, + "beir-v1.0.0-scidocs.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): SCIDOCS", + "filename": "lucene-index.beir-v1.0.0-scidocs.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scidocs.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scidocs.multifield.20221116.505594.tar.gz" + ], + "md5": "04c1e9aad3751dc552027d8bc3491323", + "size compressed (bytes)": 175887267, + "total_terms": 3065828, + "documents": 25313, + "unique_terms": 62562, + "downloaded": False + }, + "beir-v1.0.0-fever.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): FEVER", + "filename": "lucene-index.beir-v1.0.0-fever.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fever.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fever.multifield.20221116.505594.tar.gz" + ], + "md5": "28ea09308760235ea2ec72d6f9b2f432", + "size compressed (bytes)": 3947213444, + "total_terms": 310655699, + "documents": 5396138, + "unique_terms": 3275057, + "downloaded": False + }, + "beir-v1.0.0-climate-fever.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): Climate-FEVER", + "filename": "lucene-index.beir-v1.0.0-climate-fever.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-climate-fever.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-climate-fever.multifield.20221116.505594.tar.gz" + ], + "md5": "827f2759cdfc45c47bbb67835cfcb1f2", + "size compressed (bytes)": 3947277939, + "total_terms": 310661477, + "documents": 5396163, + "unique_terms": 3275068, + "downloaded": False + }, + "beir-v1.0.0-scifact.multifield": { + "description": "Lucene multifield index of BEIR (v1.0.0): SciFact", + "filename": "lucene-index.beir-v1.0.0-scifact.multifield.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scifact.multifield.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scifact.multifield.20221116.505594.tar.gz" + ], + "md5": "efbafbc3e4909a026fe80bf8b1444b08", + "size compressed (bytes)": 9078032, + "total_terms": 784591, + "documents": 5183, + "unique_terms": 28581, + "downloaded": False + }, + + "hc4-v1.0-fa": { + "description": "Lucene index for HC4 v1.0 (Persian). (Lucene 9)", + "filename": "lucene-index.hc4-v1.0-fa.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.hc4-v1.0.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.hc4-v1.0-fa.20221025.c4a8d0.tar.gz" + ], + "md5": "80735c01b2f2cf82288381370adf1d66", + "size compressed (bytes)": 1652960750, + "total_terms": 112225896, + "documents": 486486, + "unique_terms": 617109, + "downloaded": False + }, + "hc4-v1.0-ru": { + "description": "Lucene index for HC4 v1.0 (Russian). (Lucene 9)", + "filename": "lucene-index.hc4-v1.0-ru.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.hc4-v1.0.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.hc4-v1.0-ru.20221025.c4a8d0.tar.gz" + ], + "md5": "40259ba9ca993f850c960a172debe33e", + "size compressed (bytes)": 13292705599, + "total_terms": 764996714, + "documents": 4721064, + "unique_terms": 2625222, + "downloaded": False + }, + "hc4-v1.0-zh": { + "description": "Lucene index for HC4 v1.0 (Chinese). (Lucene 9)", + "filename": "lucene-index.hc4-v1.0-zh.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.hc4-v1.0.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.hc4-v1.0-zh.20221025.c4a8d0.tar.gz" + ], + "md5": "2ea8885b8ec6c637971c8df0706b623e", + "size compressed (bytes)": 2899033342, + "total_terms": 304468580, + "documents": 646302, + "unique_terms": 4380932, + "downloaded": False + }, + "neuclir22-fa": { + "description": "Lucene index for NeuCLIR 2022 corpus (Persian). (Lucene 9)", + "filename": "lucene-index.neuclir22-fa.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.neuclir22.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-fa.20221025.c4a8d0.tar.gz" + ], + "md5": "d423fb72bcd5bf2dea6e4a19743dcb95", + "size compressed (bytes)": 7565790180, + "total_terms": 514262091, + "documents": 2232016, + "unique_terms": 1479443, + "downloaded": False + }, + "neuclir22-ru": { + "description": "Lucene index for NeuCLIR 2022 corpus (Russian). (Lucene 9)", + "filename": "lucene-index.neuclir22-ru.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.neuclir22.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-ru.20221025.c4a8d0.tar.gz" + ], + "md5": "2d04bbc880d535c1c4ab172c2c2d8ffe", + "size compressed (bytes)": 14202967387, + "total_terms": 830006658, + "documents": 4627541, + "unique_terms": 3396095, + "downloaded": False + }, + "neuclir22-zh": { + "description": "Lucene index for NeuCLIR 2022 corpus (Chinese). (Lucene 9)", + "filename": "lucene-index.neuclir22-zh.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.neuclir22.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-zh.20221025.c4a8d0.tar.gz" + ], + "md5": "46fe989676ff510b997af24f6398199f", + "size compressed (bytes)": 15733809682, + "total_terms": 1654090507, + "documents": 3179206, + "unique_terms": 8213058, + "downloaded": False + }, + "neuclir22-fa-en": { + "description": "Lucene index for NeuCLIR 2022 corpus (official English translation from Persian). (Lucene 9)", + "filename": "lucene-index.neuclir22-fa-en.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.neuclir22-en.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-fa-en.20221025.c4a8d0.tar.gz" + ], + "md5": "35363339b7f0527f27403b848fe01b04", + "size compressed (bytes)": 6172239242, + "total_terms": 554848215, + "documents": 2232016, + "unique_terms": 1033260, + "downloaded": False + }, + "neuclir22-ru-en": { + "description": "Lucene index for NeuCLIR 2022 corpus (official English translation from Russian). (Lucene 9)", + "filename": "lucene-index.neuclir22-ru-en.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.neuclir22-en.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-ru-en.20221025.c4a8d0.tar.gz" + ], + "md5": "b0b98803260665eeae97163d2361838e", + "size compressed (bytes)": 10513242212, + "total_terms": 911886830, + "documents": 4627541, + "unique_terms": 2794257, + "downloaded": False + }, + "neuclir22-zh-en": { + "description": "Lucene index for NeuCLIR 2022 corpus (official English translation from Chinese). (Lucene 9)", + "filename": "lucene-index.neuclir22-zh-en.20221025.c4a8d0.tar.gz", + "readme": "lucene-index.neuclir22-en.20221025.c4a8d0.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-zh-en.20221025.c4a8d0.tar.gz" + ], + "md5": "d44ca9c7b634cf56e8cfd5892a3d3427", + "size compressed (bytes)": 8470981318, + "total_terms": 803227160, + "documents": 3179206, + "unique_terms": 1616532, + "downloaded": False + }, + + "miracl-v1.0-ar": { + "description": "Lucene index for MIRACL v1.0 (Arabic).", + "filename": "lucene-index.miracl-v1.0-ar.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-ar.20221004.2b2856.tar.gz" + ], + "md5": "503d3b49a557222d8074ac831a2f047a", + "size compressed (bytes)": 1193292491, + "total_terms": 90223450, + "documents": 2061414, + "unique_terms": 1246254, + "downloaded": False + }, + "miracl-v1.0-bn": { + "description": "Lucene index for MIRACL v1.0 (Bengali).", + "filename": "lucene-index.miracl-v1.0-bn.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-bn.20221004.2b2856.tar.gz" + ], + "md5": "7a20210328f0b83f44e041f0c94d30e2", + "size compressed (bytes)": 236113202, + "total_terms": 14963235, + "documents": 297265, + "unique_terms": 506812, + "downloaded": False + }, + "miracl-v1.0-en": { + "description": "Lucene index for MIRACL v1.0 (English).", + "filename": "lucene-index.miracl-v1.0-en.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-en.20221004.2b2856.tar.gz" + ], + "md5": "4fbd652deb76bcc05daa35392d4aa9f3", + "size compressed (bytes)": 17823436054, + "total_terms": 1505029955, + "documents": 32893221, + "unique_terms": 6152316, + "downloaded": False + }, + "miracl-v1.0-es": { + "description": "Lucene index for MIRACL v1.0 (Spanish).", + "filename": "lucene-index.miracl-v1.0-es.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-es.20221004.2b2856.tar.gz" + ], + "md5": "b4c9993ee3a131871d4f07dd96e80531", + "size compressed (bytes)": 5474245249, + "total_terms": 389319806, + "documents": 10373953, + "unique_terms": 2907509, + "downloaded": False + }, + "miracl-v1.0-fa": { + "description": "Lucene index for MIRACL v1.0 (Persian).", + "filename": "lucene-index.miracl-v1.0-fa.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-fa.20221004.2b2856.tar.gz" + ], + "md5": "bfc824aa37633e3d45bcfd5c5e0e1701", + "size compressed (bytes)": 1023090577, + "total_terms": 67968038, + "documents": 2207172, + "unique_terms": 1208930, + "downloaded": False + }, + "miracl-v1.0-fi": { + "description": "Lucene index for MIRACL v1.0 (Finnish).", + "filename": "lucene-index.miracl-v1.0-fi.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-fi.20221004.2b2856.tar.gz" + ], + "md5": "4197c90efd781c6153acaf15452c5479", + "size compressed (bytes)": 925422988, + "total_terms": 68295087, + "documents": 1883509, + "unique_terms": 1669817, + "downloaded": False + }, + "miracl-v1.0-fr": { + "description": "Lucene index for MIRACL v1.0 (French).", + "filename": "lucene-index.miracl-v1.0-fr.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-fr.20221004.2b2856.tar.gz" + ], + "md5": "e68b10d90be71b702888a3d00a8aa39c", + "size compressed (bytes)": 6747612709, + "total_terms": 508723988, + "documents": 14636953, + "unique_terms": 2811342, + "downloaded": False + }, + "miracl-v1.0-hi": { + "description": "Lucene index for MIRACL v1.0 (Hindi).", + "filename": "lucene-index.miracl-v1.0-hi.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-hi.20221004.2b2856.tar.gz" + ], + "md5": "d81f4e2b7ec5df8f9741168c23c977e2", + "size compressed (bytes)": 340997734, + "total_terms": 21080143, + "documents": 506264, + "unique_terms": 597558, + "downloaded": False + }, + "miracl-v1.0-id": { + "description": "Lucene index for MIRACL v1.0 (Indonesian).", + "filename": "lucene-index.miracl-v1.0-id.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-id.20221004.2b2856.tar.gz" + ], + "md5": "b1092e732991029fae7c542e5e129255", + "size compressed (bytes)": 577263718, + "total_terms": 51469219, + "documents": 1446315, + "unique_terms": 911944, + "downloaded": False + }, + "miracl-v1.0-ja": { + "description": "Lucene index for MIRACL v1.0 (Japanese).", + "filename": "lucene-index.miracl-v1.0-ja.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-ja.20221004.2b2856.tar.gz" + ], + "md5": "4db9550d0af63736a0fd2b486b3b7273", + "size compressed (bytes)": 3745158372, + "total_terms": 296659169, + "documents": 6953614, + "unique_terms": 1558643, + "downloaded": False + }, + "miracl-v1.0-ko": { + "description": "Lucene index for MIRACL v1.0 (Korean).", + "filename": "lucene-index.miracl-v1.0-ko.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-ko.20221004.2b2856.tar.gz" + ], + "md5": "c82f5c7641fd78b8dadfcb279a1c0340", + "size compressed (bytes)": 1150899287, + "total_terms": 121464424, + "documents": 1486752, + "unique_terms": 1504782, + "downloaded": False + }, + "miracl-v1.0-ru": { + "description": "Lucene index for MIRACL v1.0 (Russian).", + "filename": "lucene-index.miracl-v1.0-ru.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-ru.20221004.2b2856.tar.gz" + ], + "md5": "c1b974e298d9e1deeccae8b84a5bcd64", + "size compressed (bytes)": 6003987738, + "total_terms": 343106870, + "documents": 9543918, + "unique_terms": 2955627, + "downloaded": False + }, + "miracl-v1.0-sw": { + "description": "Lucene index for MIRACL v1.0 (Swahili).", + "filename": "lucene-index.miracl-v1.0-sw.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-sw.20221004.2b2856.tar.gz" + ], + "md5": "64b77bcc11e04575d0723ad81ac7c135", + "size compressed (bytes)": 45410264, + "total_terms": 4752278, + "documents": 131924, + "unique_terms": 361306, + "downloaded": False + }, + "miracl-v1.0-te": { + "description": "Lucene index for MIRACL v1.0 (Telugu).", + "filename": "lucene-index.miracl-v1.0-te.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-te.20221004.2b2856.tar.gz" + ], + "md5": "1f78c68678f439a3143a6fb0d25bfe27", + "size compressed (bytes)": 402045711, + "total_terms": 26105595, + "documents": 518079, + "unique_terms": 1120047, + "downloaded": False + }, + "miracl-v1.0-th": { + "description": "Lucene index for MIRACL v1.0 (Thai).", + "filename": "lucene-index.miracl-v1.0-th.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-th.20221004.2b2856.tar.gz" + ], + "md5": "eeef93c23b76fdc66b9e1ee01576765e", + "size compressed (bytes)": 431498349, + "total_terms": 29922100, + "documents": 542166, + "unique_terms": 626084, + "downloaded": False + }, + "miracl-v1.0-zh": { + "description": "Lucene index for MIRACL v1.0 (Chinese).", + "filename": "lucene-index.miracl-v1.0-zh.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-zh.20221004.2b2856.tar.gz" + ], + "md5": "dc7880da333b7c56d3a4ff0bf018febd", + "size compressed (bytes)": 4212198217, + "total_terms": 423635495, + "documents": 4934368, + "unique_terms": 6517412, + "downloaded": False + }, + "miracl-v1.0-de": { + "description": "Lucene index for MIRACL v1.0 (German).", + "filename": "lucene-index.miracl-v1.0-de.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-de.20221004.2b2856.tar.gz" + ], + "md5": "a40d1b9429c450b2e476d1e4ba22784d", + "size compressed (bytes)": 8708219012, + "total_terms": 581583743, + "documents": 15866222, + "unique_terms": 6288858, + "downloaded": False + }, + "miracl-v1.0-yo": { + "description": "Lucene index for MIRACL v1.0 (Yoruba).", + "filename": "lucene-index.miracl-v1.0-yo.20221004.2b2856.tar.gz", + "readme": "lucene-index.miracl-v1.0.20221004.2b2856.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.miracl-v1.0-yo.20221004.2b2856.tar.gz" + ], + "md5": "7fa283d1af4a7c4ea8791eab9e386807", + "size compressed (bytes)": 13211664, + "total_terms": 1387088, + "documents": 49043, + "unique_terms": 174539, + "downloaded": False + }, +} + +TF_INDEX_INFO_DEPRECATED = { + "hc4-v1.0-zh-lucene8": { + "description": "Lucene index for HC4 v1.0 (Chinese). (Lucene 8; deprecated)", + "filename": "lucene-index.hc4-v1.0-zh.20220719.71c120.tar.gz", + "readme": "lucene-index.hc4-v1.0-zh.20220719.71c120.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.hc4-v1.0-zh.20220719.71c120.tar.gz" + ], + "md5": "7351794f4b570c387a12527cf46a7956", + "size compressed (bytes)": 2904147388, + "total_terms": 304468573, + "documents": 646302, + "unique_terms": 4380931, + "downloaded": False + }, + "hc4-v1.0-fa-lucene8": { + "description": "Lucene index for HC4 v1.0 (Persian). (Lucene 8; deprecated)", + "filename": "lucene-index.hc4-v1.0-fa.20220719.71c120.tar.gz", + "readme": "lucene-index.hc4-v1.0-fa.20220719.71c120.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.hc4-v1.0-fa.20220719.71c120.tar.gz" + ], + "md5": "fd838abb94864f22cb4d94cd33660b24", + "size compressed (bytes)": 1656366266, + "total_terms": 112225895, + "documents": 486486, + "unique_terms": 617107, + "downloaded": False + }, + "hc4-v1.0-ru-lucene8": { + "description": "Lucene index for HC4 v1.0 (Russian). (Lucene 8; deprecated)", + "filename": "lucene-index.hc4-v1.0-ru.20220719.71c120.tar.gz", + "readme": "lucene-index.hc4-v1.0-ru.20220719.71c120.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.hc4-v1.0-ru.20220719.71c120.tar.gz" + ], + "md5": "3f15b30d1238d2d0a6f720f06c7c442c", + "size compressed (bytes)": 13323791981, + "total_terms": 764996697, + "documents": 4721064, + "unique_terms": 2640439, + "downloaded": False + }, + "neuclir22-zh-lucene8": { + "description": "Lucene index for NeuCLIR 2022 corpus (Chinese). (Lucene 8; deprecated)", + "filename": "lucene-index.neuclir22-zh.20220719.71c120.tar.gz", + "readme": "lucene-index.neuclir22-zh.20220719.71c120.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-zh.20220719.71c120.tar.gz" + ], + "md5": "edca109c2f39464f73cf9d12af776b73", + "size compressed (bytes)": 15744742868, + "total_terms": 1654090468, + "documents": 3179206, + "unique_terms": 8213049, + "downloaded": False + }, + "neuclir22-fa-lucene8": { + "description": "Lucene index for NeuCLIR 2022 corpus (Persian). (Lucene 8; deprecated)", + "filename": "lucene-index.neuclir22-fa.20220719.71c120.tar.gz", + "readme": "lucene-index.neuclir22-fa.20220719.71c120.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-fa.20220719.71c120.tar.gz" + ], + "md5": "ff3a6ac9a4c428d3aa42e1ae3c007147", + "size compressed (bytes)": 7577718950, + "total_terms": 514262091, + "documents": 2232016, + "unique_terms": 1479422, + "downloaded": False + }, + "neuclir22-ru-lucene8": { + "description": "Lucene index for NeuCLIR 2022 corpus (Russian). (Lucene 8; deprecated)", + "filename": "lucene-index.neuclir22-ru.20220719.71c120.tar.gz", + "readme": "lucene-index.neuclir22-ru.20220719.71c120.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.neuclir22-ru.20220719.71c120.tar.gz" + ], + "md5": "dd483e258fddde98cd059fd5f4f0fe1e", + "size compressed (bytes)": 14237631658, + "total_terms": 830006488, + "documents": 4627541, + "unique_terms": 3412268, + "downloaded": False + }, + + "mrtydi-v1.1-arabic-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Arabic). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/7oDFnq8FmTazf2a/download" + ], + "md5": "0129b01cc88524e13a9ff3e398e988a5", + "size compressed (bytes)": 1172153418, + "total_terms": 92529014, + "documents": 2106586, + "unique_terms": 1284712, + "downloaded": False + }, + "mrtydi-v1.1-bengali-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Bengali). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/HaPaz2wFbRMP2LK/download" + ], + "md5": "756a686cc5723791eb5ab5357271be10", + "size compressed (bytes)": 240371052, + "total_terms": 15236598, + "documents": 304059, + "unique_terms": 520694, + "downloaded": False + }, + "mrtydi-v1.1-english-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (English). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-english.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-english.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-english.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/w4ccMwH5BLnXQ3j/download" + ], + "md5": "804c7626b5a36f06f75e0a04c6ec4fe1", + "size compressed (bytes)": 16772744114, + "total_terms": 1507060955, + "documents": 32907100, + "unique_terms": 6189349, + "downloaded": False + }, + "mrtydi-v1.1-finnish-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Finnish). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Pgd3mqjy77a6FR8/download" + ], + "md5": "65361258d1a318447f364ccae90c293a", + "size compressed (bytes)": 908904453, + "total_terms": 69431615, + "documents": 1908757, + "unique_terms": 1709590, + "downloaded": False + }, + "mrtydi-v1.1-indonesian-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Indonesian). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/tF8NE7pWZ2xGix7/download" + ], + "md5": "ca62d690401b84a493c70693ee2626c3", + "size compressed (bytes)": 564741230, + "total_terms": 52493134, + "documents": 1469399, + "unique_terms": 942550, + "downloaded": False + }, + "mrtydi-v1.1-japanese-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Japanese). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/ema8i83zqJr7n48/download" + ], + "md5": "d05aefed5f79bfc151a9f4815d3693d8", + "size compressed (bytes)": 3670762373, + "total_terms": 303640353, + "documents": 7000027, + "unique_terms": 1708155, + "downloaded": False + }, + "mrtydi-v1.1-korean-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Korean). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-korean.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-korean.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-korean.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/igmEHCTjTwNi3de/download" + ], + "md5": "4ecc408de4c749f25865859ea97278bd", + "size compressed (bytes)": 1141503582, + "total_terms": 122217290, + "documents": 1496126, + "unique_terms": 1517175, + "downloaded": False + }, + "mrtydi-v1.1-russian-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Russian). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-russian.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-russian.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-russian.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Pbi9xrD7jSYaxnX/download" + ], + "md5": "9e229b33f4ddea411477d2f00c25be72", + "size compressed (bytes)": 5672456411, + "total_terms": 346329152, + "documents": 9597504, + "unique_terms": 3059773, + "downloaded": False + }, + "mrtydi-v1.1-swahili-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Swahili). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/SWqajDQgq8wppf6/download" + ], + "md5": "ec88a5b39c2506b8cd61e6e47b8044e7", + "size compressed (bytes)": 47689785, + "total_terms": 4937051, + "documents": 136689, + "unique_terms": 385711, + "downloaded": False + }, + "mrtydi-v1.1-telugu-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Telugu). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/DAB6ba5ZF98awH6/download" + ], + "md5": "2704b725c0418905037a45b6301e8666", + "size compressed (bytes)": 452906283, + "total_terms": 27173644, + "documents": 548224, + "unique_terms": 1892900, + "downloaded": False + }, + "mrtydi-v1.1-thai-lucene8": { + "description": "Lucene index for Mr.TyDi v1.1 (Thai). (Lucene 8; deprecated)", + "filename": "lucene-index.mrtydi-v1.1-thai.20220108.6fcb89.tar.gz", + "readme": "lucene-index.mrtydi-v1.1-thai.20220108.6fcb89.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.mrtydi-v1.1-thai.20220108.6fcb89.tar.gz", + "https://vault.cs.uwaterloo.ca/s/2Ady6AwBwNbYLpg/download" + ], + "md5": "9756502f1aeeee035c37975202787538", + "size compressed (bytes)": 452244053, + "total_terms": 31550936, + "documents": 568855, + "unique_terms": 663628, + "downloaded": False + }, + + # Deprecated: MS MARCO V1 document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v1-doc-lucene8": { + "description": "Lucene index of the MS MARCO V1 document corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/aDRAfyZytQsQ9T3/download" + ], + "md5": "43b60b3fc75324c648a02375772e7fe8", + "size compressed (bytes)": 13757573401, + "total_terms": 2742209690, + "documents": 3213835, + "unique_terms": 29820456, + "downloaded": False + }, + "msmarco-v1-doc-slim-lucene8": { + "description": "Lucene index of the MS MARCO V1 document corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-slim.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-slim.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-slim.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/iCnysqnaG9SL9pA/download" + ], + "md5": "17a7b079e9d527492904c7697a9cae59", + "size compressed (bytes)": 1811599007, + "total_terms": 2742209690, + "documents": 3213835, + "unique_terms": 29820456, + "downloaded": False + }, + "msmarco-v1-doc-full-lucene8": { + "description": "Lucene index of the MS MARCO V1 document corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-full.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-full.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-full.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/KsqZ2AwkSrTM8yS/download" + ], + "md5": "ef60d7f8afa3919cdeedc6fea89aa3f7", + "size compressed (bytes)": 25548064269, + "total_terms": 2742209690, + "documents": 3213835, + "unique_terms": 29820456, + "downloaded": False + }, + + # Deprecated: MS MARCO V1 document corpus, doc2query-T5 expansions. + "msmarco-v1-doc-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V1 document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/jWb3La4NYorwSCp/download" + ], + "md5": "37c639c9c26a34d2612ea6549fb866df", + "size compressed (bytes)": 1904879520, + "total_terms": 3748333319, + "documents": 3213835, + "unique_terms": 30627687, + "downloaded": False + }, + "msmarco-v1-doc-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V1 document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "987088270d4df2d51bcdffb1588f6915", + "size compressed (bytes)": 11169880136, + "total_terms": 3748333319, + "documents": 3213835, + "unique_terms": 30627687, + "downloaded": False + }, + + # Deprecated: MS MARCO V1 segmented document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v1-doc-segmented-lucene8": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-segmented.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/FKniAWGJjZHy3TF/download" + ], + "md5": "611bb83e043c0d6febe0fa3508d1d7f9", + "size compressed (bytes)": 17091132803, + "total_terms": 3200515914, + "documents": 20545677, + "unique_terms": 21190687, + "downloaded": False + }, + "msmarco-v1-doc-segmented-slim-lucene8": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/QNYpaAcLXERr74y/download" + ], + "md5": "d42113cfeeea862b51765329795948ad", + "size compressed (bytes)": 3408754542, + "total_terms": 3200515914, + "documents": 20545677, + "unique_terms": 21190687, + "downloaded": False + }, + "msmarco-v1-doc-segmented-full-lucene8": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/RzRBC6xkmaTsmX9/download" + ], + "md5": "2ed7457c8804d2d6370a1a7f604eb360", + "size compressed (bytes)": 30771630666, + "total_terms": 3200515914, + "documents": 20545677, + "unique_terms": 21190687, + "downloaded": False + }, + + # Deprecated: MS MARCO V1 segmented document corpus, doc2query-T5 expansions. + "msmarco-v1-doc-segmented-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V1 segmented document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/gJmL8iiWWztnYmH/download" + ], + "md5": "6c1f86ee4f7175eed4d3a7acc3d567b8", + "size compressed (bytes)": 3638703522, + "total_terms": 4206639543, + "documents": 20545677, + "unique_terms": 22054207, + "downloaded": False + }, + "msmarco-v1-doc-segmented-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V1 segmented document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "a67e6854187f084a8a3eee11dd30bc31", + "size compressed (bytes)": 16627681594, + "total_terms": 4206639543, + "documents": 20545677, + "unique_terms": 22054207, + "downloaded": False + }, + + # Deprecated: MS MARCO V1 passage corpus, three indexes with different amounts of information (and sizes). + "msmarco-v1-passage-lucene8": { + "description": "Lucene index of the MS MARCO V1 passage corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-passage.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-passage.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/L7yNfCXpqK5yf8e/download" + ], + "md5": "4d8fdbdcd119c1f47a4cc5d01a45dad3", + "size compressed (bytes)": 2178557129, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-v1-passage-slim-lucene8": { + "description": "Lucene index of the MS MARCO V1 passage corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-passage-slim.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-slim.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-slim.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/swtPDQAGg6oHD8m/download" + ], + "md5": "2f1e50d60a0df32a50111a986159de51", + "size compressed (bytes)": 498355616, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-v1-passage-full-lucene8": { + "description": "Lucene index of the MS MARCO V1 passage corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-passage-full.20220131.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-full.20220131.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-full.20220131.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/wzGLFMQyKAc2TTC/download" + ], + "md5": "3283069c6e8451659c8ea83e2140d739", + "size compressed (bytes)": 3781721749, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + + # Deprecated: MS MARCO V1 passage corpus, doc2query-T5 expansions. + "msmarco-v1-passage-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V1 passage corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/P7Lt234kyZP87nB/download" + ], + "md5": "136205f35bd895077c0874eaa063376c", + "size compressed (bytes)": 819441969, + "total_terms": 1986612263, + "documents": 8841823, + "unique_terms": 3929111, + "downloaded": False + }, + "msmarco-v1-passage-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V1 passage corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "5eb8178e48a4a9b85714be156d85b2d1", + "size compressed (bytes)": 4433982542, + "total_terms": 1986612263, + "documents": 8841823, + "unique_terms": 3929111, + "downloaded": False + }, + + # These MS MARCO V1 indexes are deprecated, but keeping around for archival reasons + "msmarco-passage": { + "description": "Lucene index of the MS MARCO passage corpus (deprecated; use msmarco-v1-passage instead). (Lucene 8)", + "filename": "index-msmarco-passage-20201117-f87c94.tar.gz", + "readme": "index-msmarco-passage-20201117-f87c94-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-passage-20201117-f87c94.tar.gz", + "https://vault.cs.uwaterloo.ca/s/QQsZMFG8MpF4P8M/download" + ], + "md5": "1efad4f1ae6a77e235042eff4be1612d", + "size compressed (bytes)": 2218470796, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-passage-slim": { + "description": "Lucene index of the MS MARCO passage corpus (slim version, document text not stored) (deprecated; use msmarco-v1-passage-slim instead). (Lucene 8)", + "filename": "index-msmarco-passage-slim-20201202-ab6e28.tar.gz", + "readme": "index-msmarco-passage-slim-20201202-ab6e28-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-passage-slim-20201202-ab6e28.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Kx6K9NJFmwnaAP8/download" + ], + "md5": "5e11da4cebd2e8dda2e73c589ffb0b4c", + "size compressed (bytes)": 513566686, + "total_terms": 352316036, + "documents": 8841823, + "unique_terms": 2660824, + "downloaded": False + }, + "msmarco-doc": { + "description": "Lucene index of the MS MARCO document corpus (deprecated; use msmarco-v1-doc instead). (Lucene 8)", + "filename": "index-msmarco-doc-20201117-f87c94.tar.gz", + "readme": "index-msmarco-doc-20201117-f87c94-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-20201117-f87c94.tar.gz", + "https://vault.cs.uwaterloo.ca/s/5NC7A2wAL7opJKH/download" + ], + "md5": "ac747860e7a37aed37cc30ed3990f273", + "size compressed (bytes)": 13642330935, + "total_terms": 2748636047, + "documents": 3213835, + "unique_terms": 29823078, + "downloaded": False + }, + "msmarco-doc-slim": { + "description": "Lucene index of the MS MARCO document corpus (slim version, document text not stored) (deprecated; use msmarco-v1-doc-slim instead). (Lucene 8)", + "filename": "index-msmarco-doc-slim-20201202-ab6e28.tar.gz", + "readme": "index-msmarco-doc-slim-20201202-ab6e28-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-slim-20201202-ab6e28.tar.gz", + "https://vault.cs.uwaterloo.ca/s/BMZ6oYBoEPgTFqs/download" + ], + "md5": "c56e752f7992bf6149761097641d515a", + "size compressed (bytes)": 1874471867, + "total_terms": 2748636047, + "documents": 3213835, + "unique_terms": 29823078, + "downloaded": False + }, + "msmarco-doc-per-passage": { + "description": "Lucene index of the MS MARCO document corpus segmented into passages (deprecated; use msmarco-v1-doc-segmented instead). (Lucene 8)", + "filename": "index-msmarco-doc-per-passage-20201204-f50dcc.tar.gz", + "readme": "index-msmarco-doc-per-passage-20201204-f50dcc-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-per-passage-20201204-f50dcc.tar.gz", + "https://vault.cs.uwaterloo.ca/s/q6sAxE6q57q2TBo/download" + ], + "md5": "797367406a7542b649cefa6b41cf4c33", + "size compressed (bytes)": 11602951258, + "total_terms": 3197886407, + "documents": 20544550, + "unique_terms": 21173582, + "downloaded": False + }, + "msmarco-doc-per-passage-slim": { + "description": "Lucene index of the MS MARCO document corpus segmented into passages (slim version, document text not stored) (deprecated; use msmarco-v1-doc-segmented-slim instead). (Lucene 8)", + "filename": "index-msmarco-doc-per-passage-slim-20201204-f50dcc.tar.gz", + "readme": "index-msmarco-doc-per-passage-slim-20201204-f50dcc-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-per-passage-slim-20201204-f50dcc.tar.gz", + "https://vault.cs.uwaterloo.ca/s/mKTjbTKMwWF9kY3/download" + ], + "md5": "77c2409943a8c9faffabf57cb6adca69", + "size compressed (bytes)": 2834865200, + "total_terms": 3197886407, + "documents": 20544550, + "unique_terms": 21173582, + "downloaded": False + }, + + # These MS MARCO V1 doc2query expansion indexes are deprecated, but keeping around for archival reasons + "msmarco-passage-expanded": { + "description": "Lucene index of the MS MARCO passage corpus with docTTTTTquery expansions (deprecated; use msmarco-v1-passage-d2q-t5 instead). (Lucene 8)", + "filename": "index-msmarco-passage-expanded-20201121-e127fb.tar.gz", + "readme": "index-msmarco-passage-expanded-20201121-e127fb-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-passage-expanded-20201121-e127fb.tar.gz", + "https://vault.cs.uwaterloo.ca/s/pm7cisJtRxiAMHd/download" + ], + "md5": "e5762e9e065b6fe5000f9c18da778565", + "size compressed (bytes)": 816438546, + "total_terms": 1986612263, + "documents": 8841823, + "unique_terms": 3929111, + "downloaded": False + }, + "msmarco-doc-expanded-per-doc": { + "description": "Lucene index of the MS MARCO document corpus with per-doc docTTTTTquery expansions (deprecated; use msmarco-v1-doc-d2q-t5 instead). (Lucene 8)", + "filename": "index-msmarco-doc-expanded-per-doc-20201126-1b4d0a.tar.gz", + "readme": "index-msmarco-doc-expanded-per-doc-20201126-1b4d0a-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-expanded-per-doc-20201126-1b4d0a.tar.gz", + "https://vault.cs.uwaterloo.ca/s/3BQz6ZAXAxtfne8/download" + ], + "md5": "f7056191842ab77a01829cff68004782", + "size compressed (bytes)": 1978837253, + "total_terms": 3748333319, + "documents": 3213835, + "unique_terms": 30627687, + "downloaded": False + }, + "msmarco-doc-expanded-per-passage": { + "description": "Lucene index of the MS MARCO document corpus with per-passage docTTTTTquery expansions (deprecated; use msmarco-v1-doc-segmented-d2q-t5 instead). (Lucene 8)", + "filename": "index-msmarco-doc-expanded-per-passage-20201126-1b4d0a.tar.gz", + "readme": "index-msmarco-doc-expanded-per-passage-20201126-1b4d0a-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/index-msmarco-doc-expanded-per-passage-20201126-1b4d0a.tar.gz", + "https://vault.cs.uwaterloo.ca/s/eZLbPWcnB7LzKnQ/download" + ], + "md5": "54ea30c64515edf3c3741291b785be53", + "size compressed (bytes)": 3069280946, + "total_terms": 4203956960, + "documents": 20544550, + "unique_terms": 22037213, + "downloaded": False + }, + + # MS MARCO V2 document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-doc-lucene8": { + "description": "Lucene index of the MS MARCO V2 document corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-doc.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc.20220111.06fb4f.tar.gz", + "https://vault.cs.uwaterloo.ca/s/BC7CXiRrTfg9FbD/download" + ], + "md5": "3ca8b924f00f11e51e337c5421e55d96", + "size compressed (bytes)": 63719115316, + "total_terms": 14165661202, + "documents": 11959635, + "unique_terms": 44855557, + "downloaded": False + }, + "msmarco-v2-doc-slim-lucene8": { + "description": "Lucene index of the MS MARCO V2 document corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-slim.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-slim.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-slim.20220111.06fb4f.tar.gz", + "https://vault.cs.uwaterloo.ca/s/eAjtprNt2fwjQ7F/download" + ], + "md5": "502c4c96ecd95e4113a7a26a06065ecf", + "size compressed (bytes)": 7306072104, + "total_terms": 14165661202, + "documents": 11959635, + "unique_terms": 44855557, + "downloaded": False + }, + "msmarco-v2-doc-full-lucene8": { + "description": "Lucene index of the MS MARCO V2 document corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-full.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-full.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-full.20220111.06fb4f.tar.gz", + "https://vault.cs.uwaterloo.ca/s/ZqEx5bbznxc9ekd/download" + ], + "md5": "cdb600adceccd327cb97c4277f910150", + "size compressed (bytes)": 119577632837, + "total_terms": 14165661202, + "documents": 11959635, + "unique_terms": 44855557, + "downloaded": False + }, + + # MS MARCO V2 document corpus, doc2query-T5 expansions. + "msmarco-v2-doc-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V2 document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/MeTFfBnwffS7gLd/download" + ], + "md5": "431391554854c51f347ba38c5e07ef94", + "size compressed (bytes)": 8254297093, + "total_terms": 19760777295, + "documents": 11959635, + "unique_terms": 54143053, + "downloaded": False + }, + "msmarco-v2-doc-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "200176909cd31d750919f38410f20b8a", + "size compressed (bytes)": 54511069668, + "total_terms": 19760777295, + "documents": 11959635, + "unique_terms": 54143053, + "downloaded": False + }, + + # MS MARCO V2 segmented document corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-doc-segmented-lucene8": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f.tar.gz" + ], + "md5": "cb37211851bd0053227b8db1dd0a3853", + "size compressed (bytes)": 105646039864, + "total_terms": 24780915974, + "documents": 124131414, + "unique_terms": 29263590, + "downloaded": False + }, + "msmarco-v2-doc-segmented-slim-lucene8": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f.tar.gz" + ], + "md5": "448c1e0e49c38364abbc4d880e865ee5", + "size compressed (bytes)": 21004046043, + "total_terms": 24780915974, + "documents": 124131414, + "unique_terms": 29263590, + "downloaded": False + }, + "msmarco-v2-doc-segmented-full-lucene8": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f.tar.gz" + ], + "md5": "bb597b3d03eba00653387ffab8c01998", + "size compressed (bytes)": 186377654091, + "total_terms": 24780915974, + "documents": 124131414, + "unique_terms": 29263590, + "downloaded": False + }, + + # MS MARCO V2 segmented document corpus, doc2query-T5 expansions. + "msmarco-v2-doc-segmented-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V2 segmented document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/m4DRWpeGW9Dawd7/download" + ], + "md5": "3ce9eaca885e1e8a79466bee5e6a4084", + "size compressed (bytes)": 24125355549, + "total_terms": 30376032067, + "documents": 124131414, + "unique_terms": 38930475, + "downloaded": False + }, + "msmarco-v2-doc-segmented-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 segmented document corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "d7fd3d9fbca6ca0b5ffeb8b824db0cd7", + "size compressed (bytes)": 114312032964, + "total_terms": 30376032067, + "documents": 124131414, + "unique_terms": 38930475, + "downloaded": False + }, + + # MS MARCO V2 passage corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-passage-lucene8": { + "description": "Lucene index of the MS MARCO V2 passage corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-passage.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage.20220111.06fb4f.tar.gz" + ], + "md5": "5990b4938dfdd092888ce9c9dfb6a90c", + "size compressed (bytes)": 38013278576, + "total_terms": 4673266762, + "documents": 138364198, + "unique_terms": 11885026, + "downloaded": False + }, + "msmarco-v2-passage-slim-lucene8": { + "description": "Lucene index of the MS MARCO V2 passage corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-slim.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-slim.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-slim.20220111.06fb4f.tar.gz" + ], + "md5": "b9a6fdf88775b0b546907d4cd84c4a58", + "size compressed (bytes)": 8174630082, + "total_terms": 4673266762, + "documents": 138364198, + "unique_terms": 11885026, + "downloaded": False + }, + "msmarco-v2-passage-full-lucene8": { + "description": "Lucene index of the MS MARCO V2 passage corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-full.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-full.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-full.20220111.06fb4f.tar.gz" + ], + "md5": "a233873bef304dd87adef35f54c7a436", + "size compressed (bytes)": 59658189636, + "total_terms": 4673266762, + "documents": 138364198, + "unique_terms": 11885026, + "downloaded": False + }, + + # MS MARCO V2 passage corpus, doc2query-T5 expansions. + "msmarco-v2-passage-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V2 passage corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/EiPESdXiikAcbFF/download" + ], + "md5": "72f3f0f56b9c7a1bdff836419f2f30bd", + "size compressed (bytes)": 14431987438, + "total_terms": 16961479226, + "documents": 138364198, + "unique_terms": 36650715, + "downloaded": False + }, + "msmarco-v2-passage-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 passage corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "e0ed749284f67db1f0890cb709ecb690", + "size compressed (bytes)": 59320157969, + "total_terms": 16961479226, + "documents": 138364198, + "unique_terms": 36650715, + "downloaded": False + }, + + # MS MARCO V2 augmented passage corpus, three indexes with different amounts of information (and sizes). + "msmarco-v2-passage-augmented-lucene8": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f.tar.gz" + ], + "md5": "975f6be8d49238fe1d47e2895d26f99e", + "size compressed (bytes)": 65574361728, + "total_terms": 15272964956, + "documents": 138364198, + "unique_terms": 16579071, + "downloaded": False + }, + "msmarco-v2-passage-augmented-slim-lucene8": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus ('slim' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f.tar.gz" + ], + "md5": "af893e56d050a98b6646ce2ca063d3f4", + "size compressed (bytes)": 117322378611, + "total_terms": 15272964956, + "documents": 138364198, + "unique_terms": 16579071, + "downloaded": False + }, + "msmarco-v2-passage-augmented-full-lucene8": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus ('full' version). (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f.tar.gz" + ], + "md5": "e99f99503b9e030424546d59239f0cb5", + "size compressed (bytes)": 14819003760, + "total_terms": 15272964956, + "documents": 138364198, + "unique_terms": 16579071, + "downloaded": False + }, + + # MS MARCO V2 augmented passage corpus, doc2query-T5 expansions. + "msmarco-v2-passage-augmented-d2q-t5-lucene8": { + "description": "Lucene index of the MS MARCO V2 augmented passage corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315.tar.gz", + "https://vault.cs.uwaterloo.ca/s/44EDc5a9aCbHZNW/download" + ], + "md5": "f248becbe3ef3fffc39680cff417791d", + "size compressed (bytes)": 20940452572, + "total_terms": 27561177420, + "documents": 138364198, + "unique_terms": 41176227, + "downloaded": False + }, + "msmarco-v2-passage-augmented-d2q-t5-docvectors-lucene8": { + "description": "Lucene index (+docvectors) of the MS MARCO V2 augmented passage corpus with doc2query-T5 expansions. (Lucene 8; deprecated)", + "filename": "lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997.tar.gz", + ], + "md5": "8fc1cc2b71331772ff7b306cd62794f6", + "size compressed (bytes)": 96122355388, + "total_terms": 27561177420, + "documents": 138364198, + "unique_terms": 41176227, + "downloaded": False + }, + + # BEIR (v1.0.0) flat indexes (Lucene 8; deprecated) + "beir-v1.0.0-trec-covid-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): TREC-COVID. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee.tar.gz" + ], + "md5": "d8574b8263df5dc337b443c4c35d384f", + "size compressed (bytes)": 226745226, + "total_terms": 20822810, + "documents": 171331, + "unique_terms": 202643, + "downloaded": False + }, + "beir-v1.0.0-bioasq-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): BioASQ. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee.tar.gz" + ], + "md5": "ab4823b0b59dbb59ae72c2689b73133c", + "size compressed (bytes)": 24861183683, + "total_terms": 2257541768, + "documents": 14914603, + "unique_terms": 4959999, + "downloaded": False + }, + "beir-v1.0.0-nfcorpus-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): NFCorpus. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee.tar.gz" + ], + "md5": "b52e0f918eb3a5517289980850dec55c", + "size compressed (bytes)": 6508815, + "total_terms": 637485, + "documents": 3633, + "unique_terms": 22111, + "downloaded": False + }, + "beir-v1.0.0-nq-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): NQ. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee.tar.gz" + ], + "md5": "71c35db0343ba9800c6b34510acbfb4f", + "size compressed (bytes)": 1650195223, + "total_terms": 151249287, + "documents": 2681468, + "unique_terms": 997009, + "downloaded": False + }, + "beir-v1.0.0-hotpotqa-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): HotpotQA. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee.tar.gz" + ], + "md5": "431995b33471f183272bb84d9499d8f6", + "size compressed (bytes)": 2027634934, + "total_terms": 172477063, + "documents": 5233329, + "unique_terms": 2644887, + "downloaded": False + }, + "beir-v1.0.0-fiqa-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): FiQA-2018. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee.tar.gz" + ], + "md5": "332ec18504778b03e330847a006541d4", + "size compressed (bytes)": 56101137, + "total_terms": 5288635, + "documents": 57600, + "unique_terms": 66977, + "downloaded": False + }, + "beir-v1.0.0-signal1m-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): Signal-1M. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee.tar.gz" + ], + "md5": "95b279bbd4533b631967540647f18476", + "size compressed (bytes)": 499183897, + "total_terms": 32240067, + "documents": 2866315, + "unique_terms": 796646, + "downloaded": False + }, + "beir-v1.0.0-trec-news-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): TREC-NEWS. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee.tar.gz" + ], + "md5": "9f78f049ffdcac5f6f55cd118e008bdb", + "size compressed (bytes)": 2630489172, + "total_terms": 275651967, + "documents": 594589, + "unique_terms": 729872, + "downloaded": False + }, + "beir-v1.0.0-robust04-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): Robust04. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee.tar.gz" + ], + "md5": "a9340eeedb444a303afbf974ba1872d5", + "size compressed (bytes)": 1731243578, + "total_terms": 174384263, + "documents": 528036, + "unique_terms": 923466, + "downloaded": False + }, + "beir-v1.0.0-arguana-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): ArguAna. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee.tar.gz" + ], + "md5": "62ba65fa619e7f1c9e48850974ab242d", + "size compressed (bytes)": 10563170, + "total_terms": 969528, + "documents": 8674, + "unique_terms": 23895, + "downloaded": False + }, + "beir-v1.0.0-webis-touche2020-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): Webis-Touche2020. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee.tar.gz" + ], + "md5": "9e43abfd1de98da6671df90bba8486a1", + "size compressed (bytes)": 751902399, + "total_terms": 76082209, + "documents": 382545, + "unique_terms": 525540, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-android-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-android. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee.tar.gz" + ], + "md5": "870b2ddfd59abb96a74c00515122b9e1", + "size compressed (bytes)": 17466940, + "total_terms": 1760761, + "documents": 22998, + "unique_terms": 41455, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-english-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-english. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee.tar.gz" + ], + "md5": "bdcfe2cb5798b79405cba1185ad4ad38", + "size compressed (bytes)": 24992357, + "total_terms": 2236655, + "documents": 40221, + "unique_terms": 62517, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gaming-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-gaming. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee.tar.gz" + ], + "md5": "92fc7435b1ee64783c4a97eea9d2c4a4", + "size compressed (bytes)": 29224430, + "total_terms": 2827717, + "documents": 45301, + "unique_terms": 60070, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gis-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-gis. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee.tar.gz" + ], + "md5": "80c3dcc4b3fd39a1125537b587f27436", + "size compressed (bytes)": 43466795, + "total_terms": 4048584, + "documents": 37637, + "unique_terms": 184133, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-mathematica-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-mathematica. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee.tar.gz" + ], + "md5": "359c577e5a4f9a48e7b61fbd70447121", + "size compressed (bytes)": 21621544, + "total_terms": 2332642, + "documents": 16705, + "unique_terms": 111611, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-physics-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-physics. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee.tar.gz" + ], + "md5": "3f4a0c885463a50038893c5169374e56", + "size compressed (bytes)": 38016173, + "total_terms": 3785483, + "documents": 38316, + "unique_terms": 55950, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-programmers-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-programmers. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee.tar.gz" + ], + "md5": "2b0be6fc6d9623201540cbcb2f4881ab", + "size compressed (bytes)": 40373220, + "total_terms": 3905694, + "documents": 32176, + "unique_terms": 74195, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-stats-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-stats. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee.tar.gz" + ], + "md5": "ce64d853969bde0fecea2228c1258944", + "size compressed (bytes)": 52283784, + "total_terms": 5356042, + "documents": 42269, + "unique_terms": 183358, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-tex-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-tex. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee.tar.gz" + ], + "md5": "558efcfba599b0e8e7a95a41df4dc5f2", + "size compressed (bytes)": 91968319, + "total_terms": 9556422, + "documents": 68184, + "unique_terms": 288087, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-unix-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-unix. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee.tar.gz" + ], + "md5": "a3c6cbfc1e81d98abc6cc4380a8f19d2", + "size compressed (bytes)": 53892386, + "total_terms": 5767374, + "documents": 47382, + "unique_terms": 206323, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-webmasters-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-webmasters. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee.tar.gz" + ], + "md5": "fa35ece230cb4d85a5e4ad5de0fd9240", + "size compressed (bytes)": 15204463, + "total_terms": 1482585, + "documents": 17405, + "unique_terms": 40547, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-wordpress-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): CQADupStack-wordpress. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee.tar.gz" + ], + "md5": "5a3591b6ff9ce5a97d1600f8a8cd63e8", + "size compressed (bytes)": 54895441, + "total_terms": 5463472, + "documents": 48605, + "unique_terms": 125727, + "downloaded": False + }, + "beir-v1.0.0-quora-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): Quora. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee.tar.gz" + ], + "md5": "dde92b4610b08282d11e7a4465b29181", + "size compressed (bytes)": 52750359, + "total_terms": 4390852, + "documents": 522931, + "unique_terms": 69597, + "downloaded": False + }, + "beir-v1.0.0-dbpedia-entity-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): DBPedia. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee.tar.gz" + ], + "md5": "0d38ea1abf89644bb7d39e74cc4dd2d9", + "size compressed (bytes)": 2079898414, + "total_terms": 164794987, + "documents": 4635922, + "unique_terms": 3351449, + "downloaded": False + }, + "beir-v1.0.0-scidocs-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): SCIDOCS. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee.tar.gz" + ], + "md5": "09a0ea1853445be14da2afb0bc47335e", + "size compressed (bytes)": 186605163, + "total_terms": 3266767, + "documents": 25657, + "unique_terms": 63604, + "downloaded": False + }, + "beir-v1.0.0-fever-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): FEVER. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee.tar.gz" + ], + "md5": "63cd5f369b5952386f138efe45571d41", + "size compressed (bytes)": 3878535207, + "total_terms": 325179170, + "documents": 5416568, + "unique_terms": 3293639, + "downloaded": False + }, + "beir-v1.0.0-climate-fever-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): Climate-FEVER. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee.tar.gz" + ], + "md5": "9af959cf58139d086d52121917913a02", + "size compressed (bytes)": 3878606250, + "total_terms": 325185077, + "documents": 5416593, + "unique_terms": 3293621, + "downloaded": False + }, + "beir-v1.0.0-scifact-flat-lucene8": { + "description": "Lucene flat index of BEIR (v1.0.0): SciFact. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee.tar.gz" + ], + "md5": "8c79300afd78acb95f127c58682fc881", + "size compressed (bytes)": 8851845, + "total_terms": 838128, + "documents": 5183, + "unique_terms": 28865, + "downloaded": False + }, + + # BEIR (v1.0.0) multifield indexes (Lucene 8; deprecated) + "beir-v1.0.0-trec-covid-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): TREC-COVID. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee.tar.gz" + ], + "md5": "2dabcca159c157215ae59b1899c495a8", + "size compressed (bytes)": 223251753, + "total_terms": 19060111, + "documents": 129192, + "unique_terms": 193846, + "downloaded": False + }, + "beir-v1.0.0-bioasq-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): BioASQ. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee.tar.gz" + ], + "md5": "723dcc48c961a9faef23e41cc0f372b0", + "size compressed (bytes)": 25390117017, + "total_terms": 2099554317, + "documents": 14914602, + "unique_terms": 4889048, + "downloaded": False + }, + "beir-v1.0.0-nfcorpus-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): NFCorpus. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee.tar.gz" + ], + "md5": "7c6a63153cca484bd85510d9ffc7c62e", + "size compressed (bytes)": 6644821, + "total_terms": 601950, + "documents": 3633, + "unique_terms": 21819, + "downloaded": False + }, + "beir-v1.0.0-nq-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): NQ. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee.tar.gz" + ], + "md5": "3642ab8879de1c37993347d164694885", + "size compressed (bytes)": 1647410313, + "total_terms": 144050884, + "documents": 2680961, + "unique_terms": 996635, + "downloaded": False + }, + "beir-v1.0.0-hotpotqa-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): HotpotQA. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee.tar.gz" + ], + "md5": "fa80379866ff06ad905d70ba1d4d55e3", + "size compressed (bytes)": 2092477199, + "total_terms": 158180689, + "documents": 5233235, + "unique_terms": 2627634, + "downloaded": False + }, + "beir-v1.0.0-fiqa-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): FiQA-2018. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee.tar.gz" + ], + "md5": "2cc96d72349f5f864235a88303af5da9", + "size compressed (bytes)": 56101140, + "total_terms": 5288635, + "documents": 57600, + "unique_terms": 66977, + "downloaded": False + }, + "beir-v1.0.0-signal1m-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): Signal-1M. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee.tar.gz" + ], + "md5": "16a8c34363c69afc820af20ec6ec0848", + "size compressed (bytes)": 499183933, + "total_terms": 32240067, + "documents": 2866315, + "unique_terms": 796646, + "downloaded": False + }, + "beir-v1.0.0-trec-news-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): TREC-NEWS. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee.tar.gz" + ], + "md5": "91390f9e059ba04479f3550cca166a65", + "size compressed (bytes)": 2640469722, + "total_terms": 270886723, + "documents": 578605, + "unique_terms": 727856, + "downloaded": False + }, + "beir-v1.0.0-robust04-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): Robust04. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee.tar.gz" + ], + "md5": "f9821cef4dc903772dec283cc8c9e0f5", + "size compressed (bytes)": 1731243641, + "total_terms": 174384263, + "documents": 528036, + "unique_terms": 923466, + "downloaded": False + }, + "beir-v1.0.0-arguana-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): ArguAna. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee.tar.gz" + ], + "md5": "d22aa6b4247535dedb78b3f876d958e7", + "size compressed (bytes)": 10523627, + "total_terms": 944123, + "documents": 8674, + "unique_terms": 23867, + "downloaded": False + }, + "beir-v1.0.0-webis-touche2020-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): Webis-Touche2020. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee.tar.gz" + ], + "md5": "f9d1601b76bdbafef6bfa335bf1d1595", + "size compressed (bytes)": 752116420, + "total_terms": 74066724, + "documents": 382545, + "unique_terms": 524665, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-android-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-android. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee.tar.gz" + ], + "md5": "05801b35a25af7c16172255512b4ce36", + "size compressed (bytes)": 17931810, + "total_terms": 1591284, + "documents": 22998, + "unique_terms": 40823, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-english-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-english. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee.tar.gz" + ], + "md5": "bf9eef1c5fd10b66b6816f272e7872e1", + "size compressed (bytes)": 25605309, + "total_terms": 2006983, + "documents": 40221, + "unique_terms": 61530, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gaming-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-gaming. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee.tar.gz" + ], + "md5": "3393426ddc796ce263ffb318a6d2bfed", + "size compressed (bytes)": 30065920, + "total_terms": 2510477, + "documents": 45300, + "unique_terms": 59113, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gis-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-gis. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee.tar.gz" + ], + "md5": "f69c20cdd61ca7d59ba13e46d8119f5c", + "size compressed (bytes)": 44265052, + "total_terms": 3789161, + "documents": 37637, + "unique_terms": 183298, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-mathematica-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-mathematica. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee.tar.gz" + ], + "md5": "74ef57dcbca928d6ac77b79bb9e6c9ad", + "size compressed (bytes)": 21944398, + "total_terms": 2234369, + "documents": 16705, + "unique_terms": 111306, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-physics-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-physics. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee.tar.gz" + ], + "md5": "be67a3ae1f91fbe3fb26262e695871f3", + "size compressed (bytes)": 38801084, + "total_terms": 3542078, + "documents": 38316, + "unique_terms": 55229, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-programmers-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-programmers. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee.tar.gz" + ], + "md5": "8d40c0e813171a68ea27da42e1943ebe", + "size compressed (bytes)": 41061263, + "total_terms": 3682227, + "documents": 32176, + "unique_terms": 73765, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-stats-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-stats. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee.tar.gz" + ], + "md5": "d00eec70ebfba38d32e5d588be7e0d74", + "size compressed (bytes)": 53164818, + "total_terms": 5073873, + "documents": 42269, + "unique_terms": 182933, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-tex-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-tex. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee.tar.gz" + ], + "md5": "6952954b17ebe87987c08d1994bcb801", + "size compressed (bytes)": 93231672, + "total_terms": 9155404, + "documents": 68184, + "unique_terms": 287392, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-unix-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-unix. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee.tar.gz" + ], + "md5": "858632caf3b93fd0ce6f2c4cdc95503b", + "size compressed (bytes)": 54854147, + "total_terms": 5449726, + "documents": 47382, + "unique_terms": 205471, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-webmasters-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-webmasters. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee.tar.gz" + ], + "md5": "d40fbb1d750a8d4bfcb77edd3d74e758", + "size compressed (bytes)": 15560909, + "total_terms": 1358292, + "documents": 17405, + "unique_terms": 40073, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-wordpress-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): CQADupStack-wordpress. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee.tar.gz" + ], + "md5": "938abf49a6835006e1b29b1bcd28602f", + "size compressed (bytes)": 55833972, + "total_terms": 5151575, + "documents": 48605, + "unique_terms": 125110, + "downloaded": False + }, + "beir-v1.0.0-quora-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): Quora. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee.tar.gz" + ], + "md5": "0812beec31e051515524c746323e0ee2", + "size compressed (bytes)": 52750399, + "total_terms": 4390852, + "documents": 522931, + "unique_terms": 69597, + "downloaded": False + }, + "beir-v1.0.0-dbpedia-entity-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): DBPedia. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee.tar.gz" + ], + "md5": "0834295cdc4e955cb9052b24a56f074b", + "size compressed (bytes)": 2139032416, + "total_terms": 152205484, + "documents": 4635922, + "unique_terms": 3338466, + "downloaded": False + }, + "beir-v1.0.0-scidocs-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): SCIDOCS. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee.tar.gz" + ], + "md5": "0944c45ccf3ab5bb3cee5f1863725114", + "size compressed (bytes)": 175925466, + "total_terms": 3065828, + "documents": 25313, + "unique_terms": 62562, + "downloaded": False + }, + "beir-v1.0.0-fever-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): FEVER. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee.tar.gz" + ], + "md5": "3ba53efbdbeed974a641c7dc5860dbc8", + "size compressed (bytes)": 3946159718, + "total_terms": 310655704, + "documents": 5396138, + "unique_terms": 3275057, + "downloaded": False + }, + "beir-v1.0.0-climate-fever-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): Climate-FEVER. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee.tar.gz" + ], + "md5": "998e9e9aa3d91c8022e1f8cae3f75a5f", + "size compressed (bytes)": 3946246078, + "total_terms": 310661482, + "documents": 5396163, + "unique_terms": 3275068, + "downloaded": False + }, + "beir-v1.0.0-scifact-multifield-lucene8": { + "description": "Lucene multifield index of BEIR (v1.0.0): SciFact. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee.tar.gz" + ], + "md5": "a72d8c62859a2434fba2e0034268dbe4", + "size compressed (bytes)": 9078043, + "total_terms": 784591, + "documents": 5183, + "unique_terms": 28581, + "downloaded": False + } + +} + +TF_INDEX_INFO = {**TF_INDEX_INFO_CURRENT, **TF_INDEX_INFO_DEPRECATED} + +IMPACT_INDEX_INFO_CURRENT = { + "msmarco-v1-passage-slimr": { + "description": "Lucene impact index of the MS MARCO V1 passage corpus enoded by SLIM trained with BM25 negatives. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-slimr.20230220.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-slimr.20230220.md", + "urls": [ + "https://vault.cs.uwaterloo.ca/s/EptAojzmCxz7mYM/download", + ], + "md5": "79e566fee4f376096e12a33cf67c8012", + "size compressed (bytes)": 1942207690, + "total_terms": 100694232684, + "documents": 8841823, + "unique_terms": 28121, + "downloaded": False + }, + "msmarco-v1-passage-slimr-pp": { + "description": "Lucene impact index of the MS MARCO V1 passage corpus enoded by SLIM trained with cross-encoder distillation and hardnegative mining. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-slimr-pp.20230220.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-slimr-pp.20230220.md", + "urls": [ + "https://vault.cs.uwaterloo.ca/s/22Gjmnp5EP2HpqR/download", + ], + "md5": "17b2edd909bcda4980a93fb0ab87e72b", + "size compressed (bytes)": 2164253966, + "total_terms": 104421954301, + "documents": 8841823, + "unique_terms": 27766, + "downloaded": False + }, + "msmarco-v1-passage-unicoil": { + "description": "Lucene impact index of the MS MARCO V1 passage corpus for uniCOIL. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-unicoil.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-unicoil.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-unicoil.20221005.252b5e.tar.gz", + ], + "md5": "29521fa94165e87caaaddcb5b0d37b13", + "size compressed (bytes)": 1161034003, + "total_terms": 44495093768, + "documents": 8841823, + "unique_terms": 27678, + "downloaded": False + }, + "msmarco-v1-passage-unicoil-noexp": { + "description": "Lucene impact index of the MS MARCO V1 passage corpus for uniCOIL (noexp). (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-unicoil-noexp.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-unicoil-noexp.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-unicoil-noexp.20221005.252b5e.tar.gz", + ], + "md5": "dcb6506e0b8bb1d41863ea9cbaa057cf", + "size compressed (bytes)": 873512626, + "total_terms": 26468530021, + "documents": 8841823, + "unique_terms": 27647, + "downloaded": False + }, + "msmarco-v1-passage-deepimpact": { + "description": "Lucene impact index of the MS MARCO passage corpus encoded by DeepImpact. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-deepimpact.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-deepimpact.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-deepimpact.20221005.252b5e.tar.gz", + ], + "md5": "e1cd5bd86ae5b35912991a6c8c448bb0", + "size compressed (bytes)": 1242661484, + "total_terms": 35455908214, + "documents": 8841823, + "unique_terms": 3514102, + "downloaded": False + }, + "msmarco-v1-passage-unicoil-tilde": { + "description": "Lucene impact index of the MS MARCO passage corpus encoded by uniCOIL-TILDE. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-unicoil-tilde.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-unicoil-tilde.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-unicoil-tilde.20221005.252b5e.tar.gz", + ], + "md5": "b732c58113ec39b197083dee3e702932", + "size compressed (bytes)": 1871922326, + "total_terms": 73040108576, + "documents": 8841823, + "unique_terms": 27646, + "downloaded": False + }, + "msmarco-v1-passage-distill-splade-max": { + "description": "Lucene impact index of the MS MARCO passage corpus encoded by distill-splade-max. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-passage-distill-splade-max.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-passage-distill-splade-max.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-passage-distill-splade-max.20221005.252b5e.tar.gz" + ], + "md5": "7d8b56b348685b9c3e29e306803c61eb", + "size compressed (bytes)": 3822892457, + "total_terms": 95445422483, + "documents": 8841823, + "unique_terms": 28131, + "downloaded": False + }, + + "msmarco-v1-doc-segmented-unicoil": { + "description": "Lucene impact index of the MS MARCO V1 segmented document corpus for uniCOIL, with title/segment encoding. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented-unicoil.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-unicoil.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-unicoil.20221005.252b5e.tar.gz", + ], + "md5": "06e087b8575f3d49177abfcfaf4bba1c", + "size compressed (bytes)": 5765257637, + "total_terms": 214505277898, + "documents": 20545677, + "unique_terms": 29142, + "downloaded": False + }, + "msmarco-v1-doc-segmented-unicoil-noexp": { + "description": "Lucene impact index of the MS MARCO V1 segmented document corpus for uniCOIL (noexp), with title/segment encoding. (Lucene 9)", + "filename": "lucene-index.msmarco-v1-doc-segmented-unicoil-noexp.20221005.252b5e.tar.gz", + "readme": "lucene-index.msmarco-v1-doc-segmented-unicoil-noexp.20221005.252b5e.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v1-doc-segmented-unicoil-noexp.20221005.252b5e.tar.gz", + ], + "md5": "f2bb0e6e9e0ea4baa6072f6f842623d8", + "size compressed (bytes)": 5323380960, + "total_terms": 152323732876, + "documents": 20545677, + "unique_terms": 29142, + "downloaded": False + }, + + "msmarco-v2-passage-unicoil-0shot": { + "description": "Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.tar.gz", + ], + "md5": "9da229088995a3abfea57dd8681d16d5", + "size compressed (bytes)": 21736933361, + "total_terms": 775253560148, + "documents": 138364198, + "unique_terms": 29149, + "downloaded": False + }, + "msmarco-v2-passage-unicoil-noexp-0shot": { + "description": "Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL (noexp). (Lucene 9)", + "filename": "lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.tar.gz", + ], + "md5": "dda9de84072d2162e8649a040153942e", + "size compressed (bytes)": 14347302774, + "total_terms": 411330032512, + "documents": 138364198, + "unique_terms": 29148, + "downloaded": False + }, + + "msmarco-v2-doc-segmented-unicoil-0shot": { + "description": "Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL, with title prepended. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.tar.gz" + ], + "md5": "cc98b13869c78ad3ef069d3a1c4ebaf4", + "size compressed (bytes)": 33573641204, + "total_terms": 1204542769110, + "documents": 124131414, + "unique_terms": 29168, + "downloaded": False + }, + "msmarco-v2-doc-segmented-unicoil-noexp-0shot": { + "description": "Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp) with title prepended. (Lucene 9)", + "filename": "lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.tar.gz" + ], + "md5": "e70c3bf0016407bf20cfe35fb0d277e0", + "size compressed (bytes)": 29059155839, + "total_terms": 820664704261, + "documents": 124131404, + "unique_terms": 29172, + "downloaded": False + }, + + # BEIR (v1.0.0) impact indexes encoded by SPLADE-distill CoCodenser-medium + "beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): TREC-COVID encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "0f91fb01fec4b1c590fe683ad2383339", + "size compressed (bytes)": 55889585, + "total_terms": 1697942549, + "documents": 171332, + "unique_terms": 26611, + "downloaded": False + }, + "beir-v1.0.0-bioasq-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): BioASQ encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "a0317f26b1fab3bca71b46e0a4eff816", + "size compressed (bytes)": 5396189427, + "total_terms": 181960155708, + "documents": 14914603, + "unique_terms": 27703, + "downloaded": False + }, + "beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): NFCorpus encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "9c6f3ecfa6186c3ab5125f5c3d4eb962", + "size compressed (bytes)": 1439110, + "total_terms": 41582222, + "documents": 3633, + "unique_terms": 16295, + "downloaded": False + }, + "beir-v1.0.0-nq-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): NQ encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "9d418f806b8304a075945afa80bfcc22", + "size compressed (bytes)": 833470407, + "total_terms": 21901570532, + "documents": 2681468, + "unique_terms": 28747, + "downloaded": False + }, + "beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): HotpotQA encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "e96767f3d97cba5104dfd76eafdb35b7", + "size compressed (bytes)": 1173403732, + "total_terms": 32565190895, + "documents": 5233329, + "unique_terms": 28724, + "downloaded": False + }, + "beir-v1.0.0-fiqa-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): FiQA-2018 encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "937f0112a77a81879d6e42431d7fd522", + "size compressed (bytes)": 19624314, + "total_terms": 487502241, + "documents": 57638, + "unique_terms": 26244, + "downloaded": False + }, + "beir-v1.0.0-signal1m-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): Signal-1M encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "ac79812f60bcd597d351174a58fb085c", + "size compressed (bytes)": 602427178, + "total_terms": 13103073741, + "documents": 2866316, + "unique_terms": 28130, + "downloaded": False + }, + "beir-v1.0.0-trec-news-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): TREC-NEWS encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "d24ca30cb52510d193f9361e7f6996b7", + "size compressed (bytes)": 270800660, + "total_terms": 7519025445, + "documents": 594977, + "unique_terms": 27745, + "downloaded": False + }, + "beir-v1.0.0-robust04-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): Robust04 encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "24e6310cd04a73604a8b467e582d153f", + "size compressed (bytes)": 213476457, + "total_terms": 6718533167, + "documents": 528155, + "unique_terms": 27623, + "downloaded": False + }, + "beir-v1.0.0-arguana-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): ArguAna encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "d008e420e5be96ab7e9d40bafc3183ce", + "size compressed (bytes)": 3816904, + "total_terms": 96421121, + "documents": 8674, + "unique_terms": 22536, + "downloaded": False + }, + "beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): Webis-Touche2020 encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "e05433f5cd3113b50b5fe166e18975d4", + "size compressed (bytes)": 124322238, + "total_terms": 3229042324, + "documents": 382545, + "unique_terms": 27742, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-android encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "753c02411a6391e5d45ba39fdc30a535", + "size compressed (bytes)": 5995405, + "total_terms": 157949889, + "documents": 22998, + "unique_terms": 18891, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-english encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "f377274f93d9f6426034fdd78457f5ee", + "size compressed (bytes)": 9857825, + "total_terms": 218761119, + "documents": 40221, + "unique_terms": 26613, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-gaming encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "a8549ec6b7af25fe4a60fd7f4827afbd", + "size compressed (bytes)": 12976249, + "total_terms": 296073202, + "documents": 45301, + "unique_terms": 24564, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-gis encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "26341f18a352668986bc8cf82006dc38", + "size compressed (bytes)": 10250646, + "total_terms": 296967034, + "documents": 37637, + "unique_terms": 22034, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-mathematica encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "799a7c044cc774b29e55de4a8c0a813b", + "size compressed (bytes)": 4771584, + "total_terms": 132796971, + "documents": 16705, + "unique_terms": 19765, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-physics encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "75ed5bb0217ba4f1c957bc25109f2823", + "size compressed (bytes)": 10887180, + "total_terms": 284896455, + "documents": 38316, + "unique_terms": 22985, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-programmers encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "42e2da2036a3e1d5780c90cda8c2193e", + "size compressed (bytes)": 10036425, + "total_terms": 258856106, + "documents": 32176, + "unique_terms": 22560, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-stats encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "50043a036497ea6533fd2ce62f151370", + "size compressed (bytes)": 11867711, + "total_terms": 333590386, + "documents": 42269, + "unique_terms": 23322, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-tex encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "83026f984c1007c656f15d7c01cf5da0", + "size compressed (bytes)": 19613041, + "total_terms": 604604076, + "documents": 68184, + "unique_terms": 24669, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-unix encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "5bb2b4999e8769aca00c7dff2baaf297", + "size compressed (bytes)": 12705584, + "total_terms": 369576280, + "documents": 47382, + "unique_terms": 21712, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-webmasters encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "bb2b4227659f8f32e1fcd4d7dee6065c", + "size compressed (bytes)": 4987493, + "total_terms": 127823828, + "documents": 17405, + "unique_terms": 20286, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-wordpress encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "2acbaa7b2a0f8699e54fdee2efb2d376", + "size compressed (bytes)": 12583602, + "total_terms": 362488001, + "documents": 48605, + "unique_terms": 21867, + "downloaded": False + }, + "beir-v1.0.0-quora-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): Quora encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "6358d683527284ecf4c1dbb6ad008a0f", + "size compressed (bytes)": 51880975, + "total_terms": 1322737004, + "documents": 522931, + "unique_terms": 27042, + "downloaded": False + }, + "beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): DBPedia encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "9cb05766611bea863a96818219657c78", + "size compressed (bytes)": 1225612002, + "total_terms": 30490098411, + "documents": 4635922, + "unique_terms": 28709, + "downloaded": False + }, + "beir-v1.0.0-scidocs-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): SCIDOCS encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "38d2a4bbabf9b6b1cd627ce81660e07d", + "size compressed (bytes)": 11252695, + "total_terms": 273175826, + "documents": 25657, + "unique_terms": 24241, + "downloaded": False + }, + "beir-v1.0.0-fever-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): FEVER encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "cc71baa5838edd4e7cd288ca26488532", + "size compressed (bytes)": 1497554696, + "total_terms": 38844967407, + "documents": 5416568, + "unique_terms": 28670, + "downloaded": False + }, + "beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): Climate-FEVER encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "1479d75cd9496a7d57064b86f6ee67ef", + "size compressed (bytes)": 1497450545, + "total_terms": 38845226073, + "documents": 5416593, + "unique_terms": 28670, + "downloaded": False + }, + "beir-v1.0.0-scifact-splade_distil_cocodenser_medium": { + "description": "Lucene impact index of BEIR (v1.0.0): SciFact encoded by SPLADE-distill CoCodenser-medium", + "filename": "lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20221116.505594.tar.gz", + "readme": "lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20221116.505594.tar.gz" + ], + "md5": "367db6c4a466d442ba089a38dad9fc6e", + "size compressed (bytes)": 2173167, + "total_terms": 65836037, + "documents": 5183, + "unique_terms": 17486, + "downloaded": False + }, +} + +IMPACT_INDEX_INFO_DEPRECATED = { + + # Deprecated: Lucene 8 indexes + "msmarco-v2-passage-unicoil-0shot-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL. (Lucene 8)", + "filename": "lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080.tar.gz", + "https://vault.cs.uwaterloo.ca/s/SCskjTJLX4CExkF/download" + ], + "md5": "ea024b0dd43a574deb65942e14d32630", + "size compressed (bytes)": 22212154603, + "total_terms": 775253560148, + "documents": 138364198, + "unique_terms": 29149, + "downloaded": False + }, + "msmarco-v2-passage-unicoil-noexp-0shot-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL (noexp). (Lucene 8)", + "filename": "lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080.tar.gz", + "readme": "lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080.tar.gz", + "https://vault.cs.uwaterloo.ca/s/FmW6N5FpMCyjMCE/download" + ], + "md5": "fb356e7614afc07e330b0559ae5cef18", + "size compressed (bytes)": 14615689637, + "total_terms": 411330032512, + "documents": 138364198, + "unique_terms": 29148, + "downloaded": False + }, + "msmarco-v2-passage-unicoil-tilde-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 passage corpus encoded by uniCOIL-TILDE. (Lucene 8)", + "filename": "lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.tar.gz", + "readme": "lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.tar.gz", + "https://vault.cs.uwaterloo.ca/s/oGQ8tWifozPaHLK/download" + ], + "md5": "562f9534eefe04ab8c07beb304074d41", + "size compressed (bytes)": 31168302160, + "total_terms": 1155211154985, + "documents": 138364198, + "unique_terms": 29149, + "downloaded": False + }, + + "msmarco-v2-doc-segmented-unicoil-0shot-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL. (Lucene 8)", + "filename": "lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080.tar.gz", + "https://vault.cs.uwaterloo.ca/s/7PTnyEGwNGoJjXm/download" + ], + "md5": "94fc8af0d08682f7c79ffb16d82dcfab", + "size compressed (bytes)": 32787358081, + "total_terms": 1185840285417, + "documents": 124131414, + "unique_terms": 29169, + "downloaded": False + }, + "msmarco-v2-doc-segmented-unicoil-0shot-v2-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL, with title prepended. (Lucene 8)", + "filename": "lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2.20220419.c47993.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2.20220419.c47993.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2.20220419.c47993.tar.gz" + ], + "md5": "109572d65098021642b33e0feecde057", + "size compressed (bytes)": 33967003367, + "total_terms": 1204542769110, + "documents": 124131414, + "unique_terms": 29168, + "downloaded": False + }, + "msmarco-v2-doc-segmented-unicoil-noexp-0shot-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp). (Lucene 8)", + "filename": "lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080.tar.gz", + "https://vault.cs.uwaterloo.ca/s/PoWYJzGJYx6nCik/download" + ], + "md5": "d7807b60087b630010e9c31b59d30b69", + "size compressed (bytes)": 28640356748, + "total_terms": 805830282591, + "documents": 124131404, + "unique_terms": 29172, + "downloaded": False + }, + "msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2-lucene8": { + "description": "Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp) with title prepended. (Lucene 8)", + "filename": "lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2.20220419.c47993.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2.20220419.c47993.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2.20220419.c47993.tar.gz" + ], + "md5": "8a48373934ad45052b5267ba73cdcad0", + "size compressed (bytes)": 29662349942, + "total_terms": 820664704261, + "documents": 124131404, + "unique_terms": 29172, + "downloaded": False + }, + + # These MS MARCO uniCOIL models are deprecated, but keeping around for archival reasons + "msmarco-passage-unicoil-d2q": { + "description": "Lucene impact index of the MS MARCO passage corpus encoded by uniCOIL-d2q (deprecated; use msmarco-v1-passage-unicoil instead).", + "filename": "lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.tar.gz", + "readme": "lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.tar.gz", + "https://vault.cs.uwaterloo.ca/s/LGoAAXM7ZEbyQ7y/download" + ], + "md5": "4a8cb3b86a0d9085a0860c7f7bb7fe99", + "size compressed (bytes)": 1205104390, + "total_terms": 44495093768, + "documents": 8841823, + "unique_terms": 27678, + "downloaded": False + }, + "msmarco-doc-per-passage-unicoil-d2q": { + "description": "Lucene impact index of the MS MARCO doc corpus per passage expansion encoded by uniCOIL-d2q (deprecated; use msmarco-v1-doc-segmented-unicoil instead).", + "filename": "lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.tar.gz", + "readme": "lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.tar.gz", + ], + "md5": "44bfc848f9a77302b10a59c5b136eb95", + "size compressed (bytes)": 5945466106, + "total_terms": 214505277898, + "documents": 20545677, + "unique_terms": 29142, + "downloaded": False + }, + "msmarco-v2-passage-unicoil-noexp-0shot-deprecated": { + "description": "Lucene impact index of the MS MARCO V2 passage corpus encoded by uniCOIL (zero-shot, no expansions) (deprecated; use msmarco-v2-passage-unicoil-noexp-0shot instead).", + "filename": "lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.tar.gz", + "readme": "lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.tar.gz", + "https://vault.cs.uwaterloo.ca/s/eXA2BHF8WQjdY8R/download" + ], + "md5": "8886a8d9599838bc6d8d61464da61086", + "size compressed (bytes)": 14801476783, + "total_terms": 411330032512, + "documents": 138364198, + "unique_terms": 29148, + "downloaded": False + }, + "msmarco-v2-doc-per-passage-unicoil-noexp-0shot": { + "description": "Lucene impact index of the MS MARCO V2 document corpus per passage encoded by uniCOIL (zero-shot, no expansions) (deprecated; msmarco-v2-doc-segmented-unicoil-noexp-0shot).", + "filename": "lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.tar.gz", + "readme": "lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.tar.gz", + "https://vault.cs.uwaterloo.ca/s/BSrJmAFJywsRYXo/download" + ], + "md5": "1980db886d969c3393e4da20190eaa8f", + "size compressed (bytes)": 29229949764, + "total_terms": 805830282591, + "documents": 124131404, + "unique_terms": 29172, + "downloaded": False + }, + + # BEIR (v1.0.0) impact indexes encoded by SPLADE-distill CoCodenser-medium (Lucene 8; deprecated) + "beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): TREC-COVID encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "b9c3837f2421667ba48adb84fcb599aa", + "size compressed (bytes)": 57011989, + "total_terms": 1697942549, + "documents": 171332, + "unique_terms": 26611, + "downloaded": False + }, + "beir-v1.0.0-bioasq-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): BioASQ encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "96ebb0b9016d9894e9784fa71ad7595d", + "size compressed (bytes)": 5474720263, + "total_terms": 181960155708, + "documents": 14914603, + "unique_terms": 27703, + "downloaded": False + }, + "beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): NFCorpus encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "7f5ec129305d630a18d63f188e08aa22", + "size compressed (bytes)": 1445273, + "total_terms": 41582222, + "documents": 3633, + "unique_terms": 16295, + "downloaded": False + }, + "beir-v1.0.0-nq-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): NQ encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "026dc3c2ed7292e7549ce4ff9ae2c318", + "size compressed (bytes)": 859416460, + "total_terms": 21901570532, + "documents": 2681468, + "unique_terms": 28747, + "downloaded": False + }, + "beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): HotpotQA encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "3edf537dfed5a9274ba56ef58ab090f6", + "size compressed (bytes)": 1197602761, + "total_terms": 32565190895, + "documents": 5233329, + "unique_terms": 28724, + "downloaded": False + }, + "beir-v1.0.0-fiqa-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): FiQA-2018 encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "a6ff07fe2a75f30838c3faf7c133efc1", + "size compressed (bytes)": 19858617, + "total_terms": 487502241, + "documents": 57638, + "unique_terms": 26244, + "downloaded": False + }, + "beir-v1.0.0-signal1m-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): Signal-1M encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "6d1fedefd3cb3a08820edc9552dd44b6", + "size compressed (bytes)": 611827346, + "total_terms": 13103073741, + "documents": 2866316, + "unique_terms": 28130, + "downloaded": False + }, + "beir-v1.0.0-trec-news-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): TREC-NEWS encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "05faf28e84259629aceb4d39d52471db", + "size compressed (bytes)": 278203568, + "total_terms": 7519025445, + "documents": 594977, + "unique_terms": 27745, + "downloaded": False + }, + "beir-v1.0.0-robust04-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): Robust04 encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "c2c7f69edf7bc0edf2ede9d88f4d0402", + "size compressed (bytes)": 217727819, + "total_terms": 6718533167, + "documents": 528155, + "unique_terms": 27623, + "downloaded": False + }, + "beir-v1.0.0-arguana-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): ArguAna encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "2dbb3cdd8412697cc336197912783eb2", + "size compressed (bytes)": 3866879, + "total_terms": 96421121, + "documents": 8674, + "unique_terms": 22536, + "downloaded": False + }, + "beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): Webis-Touche2020 encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "ff5cb006fac08086c575109e0ac80a1c", + "size compressed (bytes)": 126819142, + "total_terms": 3229042324, + "documents": 382545, + "unique_terms": 27742, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-android encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "1fb9462d93a21293a0c7aedd26653158", + "size compressed (bytes)": 6068305, + "total_terms": 157949889, + "documents": 22998, + "unique_terms": 18891, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-english encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "12f4581a96b775166210b462a78f72e3", + "size compressed (bytes)": 9955691, + "total_terms": 218761119, + "documents": 40221, + "unique_terms": 26613, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-gaming encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "310750f0cbe930fd521d875b6df7a61f", + "size compressed (bytes)": 13104645, + "total_terms": 296073202, + "documents": 45301, + "unique_terms": 24564, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-gis encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "3b42c73ccc278cc0bb823829867c6fce", + "size compressed (bytes)": 10380891, + "total_terms": 296967034, + "documents": 37637, + "unique_terms": 22034, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-mathematica encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "5b9d594270ff7417aabf1e9ca0a5bdf5", + "size compressed (bytes)": 4823160, + "total_terms": 132796971, + "documents": 16705, + "unique_terms": 19765, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-physics encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "a520cde380062b58f52c90e15d05e445", + "size compressed (bytes)": 11011175, + "total_terms": 284896455, + "documents": 38316, + "unique_terms": 22985, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-programmers encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "a90bd4f1185184881cbeaae095eb9e6f", + "size compressed (bytes)": 10146685, + "total_terms": 258856106, + "documents": 32176, + "unique_terms": 22560, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-stats encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "33f8e2025e89fd637806fe3083b61e86", + "size compressed (bytes)": 12016946, + "total_terms": 333590386, + "documents": 42269, + "unique_terms": 23322, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-tex encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "c20a0543a3ed90cf0ac8a2f4f52a8f7a", + "size compressed (bytes)": 19883333, + "total_terms": 604604076, + "documents": 68184, + "unique_terms": 24669, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-unix encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "7fdc9d04b7a3ced70bdef10e1bf92a09", + "size compressed (bytes)": 12857043, + "total_terms": 369576280, + "documents": 47382, + "unique_terms": 21712, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-webmasters encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "71a8d47e53a7befd43d4e29827699bfd", + "size compressed (bytes)": 5044024, + "total_terms": 127823828, + "documents": 17405, + "unique_terms": 20286, + "downloaded": False + }, + "beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): CQADupStack-wordpress encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "370d0a704300987447a884bce28b0057", + "size compressed (bytes)": 12737602, + "total_terms": 362488001, + "documents": 48605, + "unique_terms": 21867, + "downloaded": False + }, + "beir-v1.0.0-quora-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): Quora encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "0fc0e726e877bfcc65f00d11e62d014a", + "size compressed (bytes)": 52687112, + "total_terms": 1322737004, + "documents": 522931, + "unique_terms": 27042, + "downloaded": False + }, + "beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): DBPedia encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "3e0979e02c97ee76ae30b1bf135ac2c8", + "size compressed (bytes)": 1230929506, + "total_terms": 30490098411, + "documents": 4635922, + "unique_terms": 28709, + "downloaded": False + }, + "beir-v1.0.0-scidocs-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): SCIDOCS encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "ac689f1bcf15d858fdbec70e692f9642", + "size compressed (bytes)": 11401355, + "total_terms": 273175826, + "documents": 25657, + "unique_terms": 24241, + "downloaded": False + }, + "beir-v1.0.0-fever-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): FEVER encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "99ac85688f3bee09a14334a02e0bc06c", + "size compressed (bytes)": 1504352314, + "total_terms": 38844967407, + "documents": 5416568, + "unique_terms": 28670, + "downloaded": False + }, + "beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): Climate-FEVER encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "60956badd9028ad18adfaf0a87e2c2d7", + "size compressed (bytes)": 1504855696, + "total_terms": 38845226073, + "documents": 5416593, + "unique_terms": 28670, + "downloaded": False + }, + "beir-v1.0.0-scifact-splade_distil_cocodenser_medium-lucene8": { + "description": "Lucene impact index of BEIR (v1.0.0): SciFact encoded by SPLADE-distill CoCodenser-medium. (Lucene 8; deprecated)", + "filename": "lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz", + "readme": "lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee.tar.gz" + ], + "md5": "bb0f30dad94daa06766da55ae615091d", + "size compressed (bytes)": 2184301, + "total_terms": 65836037, + "documents": 5183, + "unique_terms": 17486, + "downloaded": False + } + +} + +IMPACT_INDEX_INFO = {**IMPACT_INDEX_INFO_CURRENT, **IMPACT_INDEX_INFO_DEPRECATED} + +FAISS_INDEX_INFO = { + # BEIR (v1.0.0) contriever indexes + "beir-v1.0.0-trec-covid.contriever": { + "description": "Faiss index for BEIR v1.0.0 (TREC-COVID) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-trec-covid.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-trec-covid.contriever.20230124.tar.gz" + ], + "md5": "5b5baf557979e30e943180627fe31340", + "size compressed (bytes)": 488100317, + "documents": 171332, + "downloaded": False, + "texts": "beir-v1.0.0-trec-covid.flat" + }, + "beir-v1.0.0-bioasq.contriever": { + "description": "Faiss index for BEIR v1.0.0 (BioASQ) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-bioasq.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-bioasq.contriever.20230124.tar.gz" + ], + "md5": "c0cbca535d38c1f1f78ff1bd6d91af5d", + "size compressed (bytes)": 42417202460, + "documents": 14914603, + "downloaded": False, + "texts": "beir-v1.0.0-bioasq.flat" + }, + "beir-v1.0.0-nfcorpus.contriever": { + "description": "Faiss index for BEIR v1.0.0 (NFCorpus) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-nfcorpus.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-nfcorpus.contriever.20230124.tar.gz" + ], + "md5": "5eff0107f7953ebe7658c3a6400e7027", + "size compressed (bytes)": 10322409, + "documents": 3633, + "downloaded": False, + "texts": "beir-v1.0.0-nfcorpus.flat" + }, + "beir-v1.0.0-nq.contriever": { + "description": "Faiss index for BEIR v1.0.0 (NQ) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-nq.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-nq.contriever.20230124.tar.gz" + ], + "md5": "e1825fe0ce5c8000b63b1499374adb0e", + "size compressed (bytes)": 7617697503, + "documents": 2681468, + "downloaded": False, + "texts": "beir-v1.0.0-nq.flat" + }, + "beir-v1.0.0-hotpotqa.contriever": { + "description": "Faiss index for BEIR v1.0.0 (HotpotQA) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-hotpotqa.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-hotpotqa.contriever.20230124.tar.gz" + ], + "md5": "51445960e00a18264ae3947b3af2bc80", + "size compressed (bytes)": 14874721901, + "documents": 5233329, + "downloaded": False, + "texts": "beir-v1.0.0-hotpotqa.flat" + }, + "beir-v1.0.0-fiqa.contriever": { + "description": "Faiss index for BEIR v1.0.0 (FiQA-2018) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-fiqa.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-fiqa.contriever.20230124.tar.gz" + ], + "md5": "a03cc30459b1a1928b93ad1aa51a7849", + "size compressed (bytes)": 164024764, + "documents": 57638, + "downloaded": False, + "texts": "beir-v1.0.0-fiqa.flat" + }, + "beir-v1.0.0-signal1m.contriever": { + "description": "Faiss index for BEIR v1.0.0 (Signal-1M) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-signal1m.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-signal1m.contriever.20230124.tar.gz" + ], + "md5": "19e3e324b7b87e55fb9f6b6b1e72c464", + "size compressed (bytes)": 8142533760, + "documents": 2866316, + "downloaded": False, + "texts": "beir-v1.0.0-signal1m.flat" + }, + "beir-v1.0.0-trec-news.contriever": { + "description": "Faiss index for BEIR v1.0.0 (TREC-NEWS) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-trec-news.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-trec-news.contriever.20230124.tar.gz" + ], + "md5": "20db6299b57b3e78ea2f8b7a2b649770", + "size compressed (bytes)": 1629958623, + "documents": 594977, + "downloaded": False, + "texts": "beir-v1.0.0-trec-news.flat" + }, + "beir-v1.0.0-robust04.contriever": { + "description": "Faiss index for BEIR v1.0.0 (Robust04) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-robust04.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-robust04.contriever.20230124.tar.gz" + ], + "md5": "81c730b68e066baf18d5b46918b8c830", + "size compressed (bytes)": 1501110333, + "documents": 528155, + "downloaded": False, + "texts": "beir-v1.0.0-robust04.flat" + }, + "beir-v1.0.0-arguana.contriever": { + "description": "Faiss index for BEIR v1.0.0 (ArguAna) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-arguana.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-arguana.contriever.20230124.tar.gz" + ], + "md5": "03f701916d49dd86b9c8989796d2dcc4", + "size compressed (bytes)": 24710561, + "documents": 8674, + "downloaded": False, + "texts": "beir-v1.0.0-arguana.flat" + }, + "beir-v1.0.0-webis-touche2020.contriever": { + "description": "Faiss index for BEIR v1.0.0 (Webis-Touche2020) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-webis-touche2020.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-webis-touche2020.contriever.20230124.tar.gz" + ], + "md5": "dfff9bc58521f09542f0affa3069f9a7", + "size compressed (bytes)": 1091320704, + "documents": 382545, + "downloaded": False, + "texts": "beir-v1.0.0-webis-touche2020.flat" + }, + "beir-v1.0.0-cqadupstack-android.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-android) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-android.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-android.contriever.20230124.tar.gz" + ], + "md5": "4f03c0238f0e8f77e6365b61108042ed", + "size compressed (bytes)": 65447231, + "documents": 22998, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-android.flat" + }, + "beir-v1.0.0-cqadupstack-english.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-english) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-english.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-english.contriever.20230124.tar.gz" + ], + "md5": "319e3cba8f5f5d5175aad92c99c4b0fd", + "size compressed (bytes)": 114460495, + "documents": 40221, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-english.flat" + }, + "beir-v1.0.0-cqadupstack-gaming.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-gaming) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-gaming.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-gaming.contriever.20230124.tar.gz" + ], + "md5": "049f2cb22adfb5803a5f7f762f578bce", + "size compressed (bytes)": 128906099, + "documents": 45301, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-gaming.flat" + }, + "beir-v1.0.0-cqadupstack-gis.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-gis) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-gis.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-gis.contriever.20230124.tar.gz" + ], + "md5": "13fdfa5a13634c10c1e7e6179bb4c376", + "size compressed (bytes)": 107128974, + "documents": 37637, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-gis.flat" + }, + "beir-v1.0.0-cqadupstack-mathematica.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-mathematica) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-mathematica.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-mathematica.contriever.20230124.tar.gz" + ], + "md5": "e4f756eede3ae5f9228d32096c1bd5b4", + "size compressed (bytes)": 47544559, + "documents": 16705, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-mathematica.flat" + }, + "beir-v1.0.0-cqadupstack-physics.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-physics) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-physics.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-physics.contriever.20230124.tar.gz" + ], + "md5": "b92ec0c233a1112d6f8782fb0f2bc9c1", + "size compressed (bytes)": 109048286, + "documents": 38316, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-physics.flat" + }, + "beir-v1.0.0-cqadupstack-programmers.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-programmers) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-programmers.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-programmers.contriever.20230124.tar.gz" + ], + "md5": "f180240f35e2a3c27d39361a20533205", + "size compressed (bytes)": 91583135, + "documents": 32176, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-programmers.flat" + }, + "beir-v1.0.0-cqadupstack-stats.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-stats) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-stats.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-stats.contriever.20230124.tar.gz" + ], + "md5": "64737df62b4e03b93356ba234cefe0e6", + "size compressed (bytes)": 120288620, + "documents": 42269, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-stats.flat" + }, + "beir-v1.0.0-cqadupstack-tex.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-tex) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-tex.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-tex.contriever.20230124.tar.gz" + ], + "md5": "ef087faff49e5bae0799e8576e387c0d", + "size compressed (bytes)": 194080724, + "documents": 68184, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-tex.flat" + }, + "beir-v1.0.0-cqadupstack-unix.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-unix) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-unix.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-unix.contriever.20230124.tar.gz" + ], + "md5": "9279884bfc3a14c2896276b679a58dbf", + "size compressed (bytes)": 134860159, + "documents": 47382, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-unix.flat" + }, + "beir-v1.0.0-cqadupstack-webmasters.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-webmasters) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-webmasters.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-webmasters.contriever.20230124.tar.gz" + ], + "md5": "f1a46fc6f6586c716d2a6239753c9573", + "size compressed (bytes)": 49531545, + "documents": 17405, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-webmasters.flat" + }, + "beir-v1.0.0-cqadupstack-wordpress.contriever": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-wordpress) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-cqadupstack-wordpress.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-wordpress.contriever.20230124.tar.gz" + ], + "md5": "27480c7a4c8d437af30618bf98b10969", + "size compressed (bytes)": 138348184, + "documents": 48605, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-wordpress.flat" + }, + "beir-v1.0.0-quora.contriever": { + "description": "Faiss index for BEIR v1.0.0 (Quora) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-quora.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-quora.contriever.20230124.tar.gz" + ], + "md5": "4876145908b7af946593df6dbb8af600", + "size compressed (bytes)": 1485866217, + "documents": 522931, + "downloaded": False, + "texts": "beir-v1.0.0-quora.flat" + }, + "beir-v1.0.0-dbpedia-entity.contriever": { + "description": "Faiss index for BEIR v1.0.0 (DBPedia) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-dbpedia-entity.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-dbpedia-entity.contriever.20230124.tar.gz" + ], + "md5": "ee88a23de31d3faf403673c08ea0c844", + "size compressed (bytes)": 13214316305, + "documents": 4635922, + "downloaded": False, + "texts": "beir-v1.0.0-dbpedia-entity.flat" + }, + "beir-v1.0.0-scidocs.contriever": { + "description": "Faiss index for BEIR v1.0.0 (SCIDOCS) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-scidocs.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-scidocs.contriever.20230124.tar.gz" + ], + "md5": "dd1555b714c482a22cbb74d8c72599c9", + "size compressed (bytes)": 73532556, + "documents": 25657, + "downloaded": False, + "texts": "beir-v1.0.0-scidocs.flat" + }, + "beir-v1.0.0-fever.contriever": { + "description": "Faiss index for BEIR v1.0.0 (FEVER) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-fever.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-fever.contriever.20230124.tar.gz" + ], + "md5": "d5b738dc38e56857a987bdb1eb4ce5c1", + "size compressed (bytes)": 15437918827, + "documents": 5416568, + "downloaded": False, + "texts": "beir-v1.0.0-fever.flat" + }, + "beir-v1.0.0-climate-fever.contriever": { + "description": "Faiss index for BEIR v1.0.0 (Climate-FEVER) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-climate-fever.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-climate-fever.contriever.20230124.tar.gz" + ], + "md5": "1e169cf6a8baaa4909f6823e3c23a80f", + "size compressed (bytes)": 15437988868, + "documents": 5416593, + "downloaded": False, + "texts": "beir-v1.0.0-climate-fever.flat" + }, + "beir-v1.0.0-scifact.contriever": { + "description": "Faiss index for BEIR v1.0.0 (SciFact) corpus encoded by Contriever encoder.", + "filename": "faiss.beir-v1.0.0-scifact.contriever.20230124.tar.gz", + "readme": "faiss.beir-v1.0.0.contriever.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-scifact.contriever.20230124.tar.gz" + ], + "md5": "61eb253aa08c9c97fa2f82ef2a96ca7b", + "size compressed (bytes)": 14753553, + "documents": 5183, + "downloaded": False, + "texts": "beir-v1.0.0-scifact.flat" + }, + + # BEIR (v1.0.0) contriever ft MSMARCO indexes + "beir-v1.0.0-trec-covid.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (TREC-COVID) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-trec-covid.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-trec-covid.contriever-msmarco.20230124.tar.gz" + ], + "md5": "7dd33fbd77deba89174b6d1b2c34866c", + "size compressed (bytes)": 487986935, + "documents": 171332, + "downloaded": False, + "texts": "beir-v1.0.0-trec-covid.flat", + }, + "beir-v1.0.0-bioasq.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (BioASQ) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-bioasq.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-bioasq.contriever-msmarco.20230124.tar.gz" + ], + "md5": "e51924bb78555942f0a9465959a6f6f2", + "size compressed (bytes)": 42438279267, + "documents": 14914603, + "downloaded": False, + "texts": "beir-v1.0.0-bioasq.flat", + }, + "beir-v1.0.0-nfcorpus.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (NFCorpus) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-nfcorpus.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-nfcorpus.contriever-msmarco.20230124.tar.gz" + ], + "md5": "657649d19fafd06cb031c6b11868d7f9", + "size compressed (bytes)": 10327231, + "documents": 3633, + "downloaded": False, + "texts": "beir-v1.0.0-nfcorpus.flat", + }, + "beir-v1.0.0-nq.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (NQ) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-nq.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-nq.contriever-msmarco.20230124.tar.gz" + ], + "md5": "8d7ff2e5e285b1549bb8af27a7cf6e30", + "size compressed (bytes)": 7619790303, + "documents": 2681468, + "downloaded": False, + "texts": "beir-v1.0.0-nq.flat", + }, + "beir-v1.0.0-hotpotqa.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (HotpotQA) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-hotpotqa.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-hotpotqa.contriever-msmarco.20230124.tar.gz" + ], + "md5": "bef5b2fba77859c778f121ae2f17c9f1", + "size compressed (bytes)": 14889518902, + "documents": 5233329, + "downloaded": False, + "texts": "beir-v1.0.0-hotpotqa.flat", + }, + "beir-v1.0.0-fiqa.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (FiQA-2018) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-fiqa.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-fiqa.contriever-msmarco.20230124.tar.gz" + ], + "md5": "3dd16db861dbef4da545ccbea127198a", + "size compressed (bytes)": 163998627, + "documents": 57638, + "downloaded": False, + "texts": "beir-v1.0.0-fiqa.flat", + }, + "beir-v1.0.0-signal1m.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (Signal-1M) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-signal1m.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-signal1m.contriever-msmarco.20230124.tar.gz" + ], + "md5": "c4e25dc99c27a9d1931ad129d4091da0", + "size compressed (bytes)": 8146484698, + "documents": 2866316, + "downloaded": False, + "texts": "beir-v1.0.0-signal1m.flat", + }, + "beir-v1.0.0-trec-news.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (TREC-NEWS) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-trec-news.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-trec-news.contriever-msmarco.20230124.tar.gz" + ], + "md5": "22272011f0e0dea7f66b624de196b6b3", + "size compressed (bytes)": 1629437319, + "documents": 594977, + "downloaded": False, + "texts": "beir-v1.0.0-trec-news.flat", + }, + "beir-v1.0.0-robust04.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (Robust04) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-robust04.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-robust04.contriever-msmarco.20230124.tar.gz" + ], + "md5": "a2a0603fae866e1e92abcdfc46de6fe5", + "size compressed (bytes)": 1501089289, + "documents": 528155, + "downloaded": False, + "texts": "beir-v1.0.0-robust04.flat", + }, + "beir-v1.0.0-arguana.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (ArguAna) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-arguana.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-arguana.contriever-msmarco.20230124.tar.gz" + ], + "md5": "dcc0408ab033433d47363f5902fbde3d", + "size compressed (bytes)": 24705859, + "documents": 8674, + "downloaded": False, + "texts": "beir-v1.0.0-arguana.flat", + }, + "beir-v1.0.0-webis-touche2020.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (Webis-Touche2020) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-webis-touche2020.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-webis-touche2020.contriever-msmarco.20230124.tar.gz" + ], + "md5": "60072a3b32855067fea0f8e21ce0d905", + "size compressed (bytes)": 1090748271, + "documents": 382545, + "downloaded": False, + "texts": "beir-v1.0.0-webis-touche2020.flat", + }, + "beir-v1.0.0-cqadupstack-android.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-android) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-android.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-android.contriever-msmarco.20230124.tar.gz" + ], + "md5": "f9b02c2410fc8ddf63e96ea6ebbd8447", + "size compressed (bytes)": 65438882, + "documents": 22998, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-android.flat", + }, + "beir-v1.0.0-cqadupstack-english.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-english) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-english.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-english.contriever-msmarco.20230124.tar.gz" + ], + "md5": "7c50f04a61a08f16dfb1d28010b4e222", + "size compressed (bytes)": 114462161, + "documents": 40221, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-english.flat", + }, + "beir-v1.0.0-cqadupstack-gaming.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-gaming) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-gaming.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-gaming.contriever-msmarco.20230124.tar.gz" + ], + "md5": "d97fafe933ae40fc12a9df0afc6a8e78", + "size compressed (bytes)": 128896840, + "documents": 45301, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-gaming.flat", + }, + "beir-v1.0.0-cqadupstack-gis.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-gis) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-gis.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-gis.contriever-msmarco.20230124.tar.gz" + ], + "md5": "f536d8feda0069a1769ad71010fab0e3", + "size compressed (bytes)": 107086862, + "documents": 37637, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-gis.flat", + }, + "beir-v1.0.0-cqadupstack-mathematica.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-mathematica) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-mathematica.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-mathematica.contriever-msmarco.20230124.tar.gz" + ], + "md5": "987fb7ac275baf344828cdda0013703d", + "size compressed (bytes)": 47526982, + "documents": 16705, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-mathematica.flat", + }, + "beir-v1.0.0-cqadupstack-physics.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-physics) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-physics.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-physics.contriever-msmarco.20230124.tar.gz" + ], + "md5": "e252b1c4dcb06d2183109dc4bc820176", + "size compressed (bytes)": 109024692, + "documents": 38316, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-physics.flat", + }, + "beir-v1.0.0-cqadupstack-programmers.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-programmers) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-programmers.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-programmers.contriever-msmarco.20230124.tar.gz" + ], + "md5": "09bd10b2b06c7b0c7611e7811958f4b3", + "size compressed (bytes)": 91567840, + "documents": 32176, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-programmers.flat", + }, + "beir-v1.0.0-cqadupstack-stats.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-stats) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-stats.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-stats.contriever-msmarco.20230124.tar.gz" + ], + "md5": "c4586c11a2bc90f9ea5a3355fc6e6c53", + "size compressed (bytes)": 120271253, + "documents": 42269, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-stats.flat", + }, + "beir-v1.0.0-cqadupstack-tex.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-tex) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-tex.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-tex.contriever-msmarco.20230124.tar.gz" + ], + "md5": "c3c5ec87aeb33a7320c0d61146c03fc0", + "size compressed (bytes)": 194009234, + "documents": 68184, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-tex.flat", + }, + "beir-v1.0.0-cqadupstack-unix.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-unix) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-unix.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-unix.contriever-msmarco.20230124.tar.gz" + ], + "md5": "3220f3eb0e9f0095cf13dcc8eb3ae1e0", + "size compressed (bytes)": 134821535, + "documents": 47382, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-unix.flat", + }, + "beir-v1.0.0-cqadupstack-webmasters.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-webmasters) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-webmasters.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-webmasters.contriever-msmarco.20230124.tar.gz" + ], + "md5": "f696855c02090833a6ca695f8efa3006", + "size compressed (bytes)": 49530869, + "documents": 17405, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-webmasters.flat", + }, + "beir-v1.0.0-cqadupstack-wordpress.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (CQADupStack-wordpress) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-cqadupstack-wordpress.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-cqadupstack-wordpress.contriever-msmarco.20230124.tar.gz" + ], + "md5": "e92063c046803a76010b57e0ef1ace9e", + "size compressed (bytes)": 138328541, + "documents": 48605, + "downloaded": False, + "texts": "beir-v1.0.0-cqadupstack-wordpress.flat", + }, + "beir-v1.0.0-quora.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (Quora) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-quora.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-quora.contriever-msmarco.20230124.tar.gz" + ], + "md5": "82481f11087ebf63156da1f3dda00d5e", + "size compressed (bytes)": 1487402659, + "documents": 522931, + "downloaded": False, + "texts": "beir-v1.0.0-quora.flat", + }, + "beir-v1.0.0-dbpedia-entity.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (DBPedia) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-dbpedia-entity.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-dbpedia-entity.contriever-msmarco.20230124.tar.gz" + ], + "md5": "5b9249745aa548776a8f22269bd55dbe", + "size compressed (bytes)": 13226846024, + "documents": 4635922, + "downloaded": False, + "texts": "beir-v1.0.0-dbpedia-entity.flat", + }, + "beir-v1.0.0-scidocs.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (SCIDOCS) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-scidocs.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-scidocs.contriever-msmarco.20230124.tar.gz" + ], + "md5": "091d751629ae22d843ce741f05f00b81", + "size compressed (bytes)": 73530332, + "documents": 25657, + "downloaded": False, + "texts": "beir-v1.0.0-scidocs.flat", + }, + "beir-v1.0.0-fever.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (FEVER) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-fever.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-fever.contriever-msmarco.20230124.tar.gz" + ], + "md5": "c1e9851e23c9f46e7210aedd613e4a1b", + "size compressed (bytes)": 15444001312, + "documents": 5416568, + "downloaded": False, + "texts": "beir-v1.0.0-fever.flat", + }, + "beir-v1.0.0-climate-fever.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (Climate-FEVER) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-climate-fever.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-climate-fever.contriever-msmarco.20230124.tar.gz" + ], + "md5": "1ec289569b80edb25d885100feba83aa", + "size compressed (bytes)": 15444073223, + "documents": 5416593, + "downloaded": False, + "texts": "beir-v1.0.0-climate-fever.flat", + }, + "beir-v1.0.0-scifact.contriever-msmarco": { + "description": "Faiss index for BEIR v1.0.0 (SciFact) corpus encoded by Contriever encoder that has been fine-tuned with MS MARCO passage.", + "filename": "faiss.beir-v1.0.0-scifact.contriever-msmarco.20230124.tar.gz", + "readme": "faiss.contriever-msmarco.20230124.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-scifact.contriever-msmarco.20230124.tar.gz" + ], + "md5": "e560d5de0ccb65f66853540cb6917369", + "size compressed (bytes)": 14758747, + "documents": 5183, + "downloaded": False, + "texts": "beir-v1.0.0-scifact.flat", + }, + + "msmarco-passage-tct_colbert-hnsw": { + "description": "Faiss HNSW index of the MS MARCO passage corpus encoded by TCT-ColBERT", + "filename": "dindex-msmarco-passage-tct_colbert-hnsw-20210112-be7119.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-tct_colbert-hnsw-20210112-be7119.tar.gz", + "https://vault.cs.uwaterloo.ca/s/F6MjyjmCi6yHFTa/download" + ], + "md5": "7e12ae728ea5f2ae6d1cfb88a8775ba8", + "size compressed (bytes)": 33359100887, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-passage-tct_colbert-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by TCT-ColBERT", + "filename": "dindex-msmarco-passage-tct_colbert-bf-20210112-be7119.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-tct_colbert-bf-20210112-be7119.tar.gz", + "https://vault.cs.uwaterloo.ca/s/mHxezzSAkrWbXZC/download" + ], + "md5": "7312e0e7acec2a686e994902ca064fc5", + "size compressed (bytes)": 25204514289, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-doc-tct_colbert-bf": { + "description": "Faiss FlatIP index of the MS MARCO document corpus encoded by TCT-ColBERT", + "filename": "dindex-msmarco-doc-tct_colbert-bf-20210112-be7119.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-doc-tct_colbert-bf-20210112-be7119.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Ti5JxdCgjdw3noq/download" + ], + "md5": "f0b4c3bff3bb685be5c475511004c3b0", + "size compressed (bytes)": 58514325936, + "documents": 20544550, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-doc-tct_colbert-v2-hnp-bf": { + "description": "Faiss FlatIP index of the MS MARCO document corpus encoded by TCT-ColBERT-V2-HNP", + "filename": "faiss-flat.msmarco-doc-per-passage.tct_colbert-v2-hnp.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss-flat.msmarco-doc-per-passage.tct_colbert-v2-hnp.tar.gz", + "https://vault.cs.uwaterloo.ca/s/XjkKAWMz2fwSeJB/download", + ], + "md5": "c6a7d295cfe711ef84dffe9ba6a702e5", + "size compressed (bytes)": 58586765624, + "documents": 20544550, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "wikipedia-dpr-multi-bf": { + "description": "Faiss FlatIP index of Wikipedia encoded by the DPR doc encoder trained on multiple QA datasets", + "filename": "dindex-wikipedia-dpr_multi-bf-20200127-f403c3.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-wikipedia-dpr_multi-bf-20200127-f403c3.tar.gz", + "https://vault.cs.uwaterloo.ca/s/xN44ZSC9tFFtp3F/download" + ], + "md5": "29eb39fe0b00a03c36c0eeae4c24f775", + "size compressed (bytes)": 59836766981, + "documents": 21015320, + "downloaded": False, + "texts": "wikipedia-dpr" + }, + "wikipedia-dpr-single-nq-bf": { + "description": "Faiss FlatIP index of Wikipedia encoded by the DPR doc encoder trained on NQ", + "filename": "dindex-wikipedia-dpr_single_nq-bf-20200115-cd5034.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-wikipedia-dpr_single_nq-bf-20200115-cd5034.tar.gz", + "https://vault.cs.uwaterloo.ca/s/W4k44aLZWcbcJXe/download" + ], + "md5": "d1ef9286ddb38633cd052171963c62cb", + "size compressed (bytes)": 59836863670, + "documents": 21015320, + "downloaded": False, + "texts": "wikipedia-dpr" + }, + "wikipedia-bpr-single-nq-hash": { + "description": "Faiss binary index of Wikipedia encoded by the BPR doc encoder trained on NQ", + "filename": "dindex-wikipedia_bpr_single_nq-hash-20210827-8a8f75.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-wikipedia_bpr_single_nq-hash-20210827-8a8f75.tar.gz", + "https://vault.cs.uwaterloo.ca/s/qKFrptGP4pSp987/download" + ], + "md5": "e60e5ed1d7fab924bfa9149ed169d082", + "size compressed (bytes)": 1887382350, + "documents": 21015320, + "downloaded": False, + "texts": "wikipedia-dpr" + }, + "msmarco-passage-ance-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by the ANCE MS MARCO passage encoder", + "filename": "dindex-msmarco-passage-ance-bf-20210224-060cef.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-ance-bf-20210224-060cef.tar.gz", + "https://vault.cs.uwaterloo.ca/s/mntwDQtXc9WbZSM/download" + ], + "md5": "f6332edb8f06ba796850388cf975b414", + "size compressed (bytes)": 25102344985, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-doc-ance-maxp-bf": { + "description": "Faiss FlatIP index of the MS MARCO document corpus encoded by the ANCE MaxP encoder", + "filename": "dindex-msmarco-doc-ance_maxp-bf-20210304-b2a1b0.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-doc-ance_maxp-bf-20210304-b2a1b0.tar.gz", + "https://vault.cs.uwaterloo.ca/s/ifXbHmgTz27SYCC/download" + ], + "md5": "a9f8d77ea0cef7c6acdba881c45b7d99", + "size compressed (bytes)": 58312805496, + "documents": 20544550, + "downloaded": False, + "texts": "msmarco-v1-doc" + }, + "wikipedia-ance-multi-bf": { + "description": "Faiss FlatIP index of Wikipedia encoded by the ANCE-multi encoder", + "filename": "dindex-wikipedia-ance_multi-bf-20210224-060cef.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-wikipedia-ance_multi-bf-20210224-060cef.tar.gz", + "https://vault.cs.uwaterloo.ca/s/XRGYFBN6d6WZRNw/download" + ], + "md5": "715605b56dc393b8f939e12682dfd467", + "size compressed (bytes)": 59890492088, + "documents": 21015320, + "downloaded": False, + "texts": "wikipedia-dpr" + }, + "msmarco-passage-sbert-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by the SBERT MS MARCO passage encoder", + "filename": "dindex-msmarco-passage-sbert-bf-20210313-a0fbb3.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-sbert-bf-20210313-a0fbb3.tar.gz", + "https://vault.cs.uwaterloo.ca/s/8xiZK5cx4ffExoz/download" + ], + "md5": "3f98b9564cd3a33e45bfeca4d4fec623", + "size compressed (bytes)": 25214193901, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-passage-distilbert-dot-margin_mse-T2-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by the distilbert-dot-margin_mse-T2-msmarco passage encoder", + "filename": "dindex-msmarco-passage-distilbert-dot-margin_mse-T2-20210316-d44c3a.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-distilbert-dot-margin_mse-T2-20210316-d44c3a.tar.gz", + "https://vault.cs.uwaterloo.ca/s/DSHYNJJRZLqckLA/download" + ], + "md5": "83a8081d6020910058164978b095615f", + "size compressed (bytes)": 25162770962, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-passage-distilbert-dot-tas_b-b256-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by msmarco-passage-distilbert-dot-tas_b-b256 passage encoder", + "filename": "dindex-msmarco-passage-distilbert-dot-tas_b-b256-bf-20210527-63276f.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-distilbert-dot-tas_b-b256-bf-20210527-63276f.tar.gz", + "https://vault.cs.uwaterloo.ca/s/89fr56FNeGFbyrG/download", + ], + "md5": "cc947bf66d9552a2a7c6fe060466e490", + "size compressed (bytes)": 25162328596, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-passage-tct_colbert-v2-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by the tct_colbert-v2 passage encoder", + "filename": "dindex-msmarco-passage-tct_colbert-v2-bf-20210608-5f341b.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-tct_colbert-v2-bf-20210608-5f341b.tar.gz", + "https://vault.cs.uwaterloo.ca/s/2EZ2feACyL8cnw5/download", + ], + "md5": "479591e265347ceff954ae05f6d3462b", + "size compressed (bytes)": 25211079381, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-passage-tct_colbert-v2-hn-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by the tct_colbert-v2-hn passage encoder", + "filename": "dindex-msmarco-passage-tct_colbert-v2-hn-bf-20210608-5f341b.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-tct_colbert-v2-hn-bf-20210608-5f341b.tar.gz", + "https://vault.cs.uwaterloo.ca/s/2dP6EJz7QgywM4b/download", + ], + "md5": "61d38e4935b3ca36c99e0cda2b27fba2", + "size compressed (bytes)": 25205729786, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "msmarco-passage-tct_colbert-v2-hnp-bf": { + "description": "Faiss FlatIP index of the MS MARCO passage corpus encoded by the tct_colbert-v2-hnp passage encoder", + "filename": "dindex-msmarco-passage-tct_colbert-v2-hnp-bf-20210608-5f341b.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/dindex-msmarco-passage-tct_colbert-v2-hnp-bf-20210608-5f341b.tar.gz", + "https://vault.cs.uwaterloo.ca/s/od63ZXNadCZymwj/download", + ], + "md5": "c3c3fc3a288bcdf61708d4bba4bc79ff", + "size compressed (bytes)": 25225528775, + "documents": 8841823, + "downloaded": False, + "texts": "msmarco-v1-passage" + }, + "cast2019-tct_colbert-v2-hnsw": { + "description": "Faiss HNSW index of the CAsT2019 passage corpus encoded by the tct_colbert-v2 passage encoder", + "filename": "faiss-hnsw.cast2019.tct_colbert-v2.tar.gz", + "readme": "faiss-hnsw.cast2019.tct_colbert-v2-readme.txt", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss-hnsw.cast2019.tct_colbert-v2.tar.gz", + "https://vault.cs.uwaterloo.ca/s/ncrZdE67BCKxPwc/download" + ], + "md5": "fa7673509b34d978e1b931d5705369ee", + "size compressed (bytes)": 112121366773, + "documents": 38429835, + "downloaded": False, + "texts": "cast2019" + }, + "mrtydi-v1.1-arabic-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-arabic.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-arabic.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-arabic.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/Jgj3rYjbyRrmJs8/download" # Note, this is Crystina's account. + ], + "md5": "de86c1ce43854bbeea4e3af5d95d6ffb", + "size compressed (bytes)": 5997943791, + "documents": 2106586, + "downloaded": False, + "texts": "mrtydi-v1.1-arabic" + }, + "mrtydi-v1.1-bengali-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-bengali.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-bengali.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-bengali.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/4PpkzXAQtXFFJHR/download" # Note, this is Crystina's account. + ], + "md5": "e60cb6f1f7139cf0551f0ba4e4e83bf6", + "size compressed (bytes)": 865716848, + "documents": 304059, + "downloaded": False, + "texts": "mrtydi-v1.1-bengali" + }, + "mrtydi-v1.1-english-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-english.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-english.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-english.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/A7pjbwYeoT4Krnj/download" # Note, this is Crystina's account. + ], + "md5": "a0a8cc39e8af782ec82188a18c4c97c3", + "size compressed (bytes)": 93585951488, + "documents": 32907100, + "downloaded": False, + "texts": "mrtydi-v1.1-english" + }, + "mrtydi-v1.1-finnish-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-finnish.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-finnish.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-finnish.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/erNYkrYzRZxpecz/download" # Note, this is Crystina's account. + ], + "md5": "3e4e18aacf07ca551b474315f267ead6", + "size compressed (bytes)": 5435516778, + "documents": 1908757, + "downloaded": False, + "texts": "mrtydi-v1.1-finnish" + }, + "mrtydi-v1.1-indonesian-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-indonesian.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-indonesian.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-indonesian.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/BpR3MzT7KJ6edx7/download" # Note, this is Crystina's account. + ], + "md5": "0bf693e4046d9a565ae18b9f5939d193", + "size compressed (bytes)": 865716848, + "documents": 4179177829, + "downloaded": False, + "texts": "mrtydi-v1.1-indonesian" + }, + "mrtydi-v1.1-japanese-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-japanese.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-japanese.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-japanese.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/k7bptHT8GwMJpnF/download" # Note, this is Crystina's account. + ], + "md5": "4ba566e27bc0158108259b18a153e2fc", + "size compressed (bytes)": 19920816424, + "documents": 7000027, + "downloaded": False, + "texts": "mrtydi-v1.1-japanese" + }, + "mrtydi-v1.1-korean-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-korean.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-korean.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-korean.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/TigfYMde94YWAoE/download" # Note, this is Crystina's account. + ], + "md5": "44212e5722632d5bcb14f0680741638c", + "size compressed (bytes)": 4257414237, + "documents": 1496126, + "downloaded": False, + "texts": "mrtydi-v1.1-korean" + }, + "mrtydi-v1.1-russian-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-russian.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-russian.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-russian.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/eN7demnmnspqxjk/download" # Note, this is Crystina's account. + ], + "md5": "e7634093f2a3362928e9699441ce8a3b", + "size compressed (bytes)": 27317759143, + "documents": 9597504, + "downloaded": False, + "texts": "mrtydi-v1.1-russian" + }, + "mrtydi-v1.1-swahili-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-swahili.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-swahili.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-swahili.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/JgiX8PRftnqcPwy/download" # Note, this is Crystina's account. + ], + "md5": "5061bdd1d81bc32490bbb3682096acdd", + "size compressed (bytes)": 389658394, + "documents": 136689, + "downloaded": False, + "texts": "mrtydi-v1.1-swahili" + }, + "mrtydi-v1.1-telugu-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-telugu.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-telugu.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-telugu.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/dkm6RGdgRbnwiX2/download" # Note, this is Crystina's account. + ], + "md5": "4952dacaeae89185d3757f9f26af4e88", + "size compressed (bytes)": 1561173721, + "documents": 548224, + "downloaded": False, + "texts": "mrtydi-v1.1-telugu" + }, + "mrtydi-v1.1-thai-mdpr-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-thai.20220207.5df364.tar.gz", + "readme": "faiss.mrtydi-v1.1-thai.20220207.5df364.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-thai.20220207.5df364.tar.gz", + "https://vault.cs.uwaterloo.ca/s/fFrRYefd3nWFR3J/download" # Note, this is Crystina's account. + ], + "md5": "2458f704b277fa8ffe2509b6296892a0", + "size compressed (bytes)": 1616059846, + "documents": 568855, + "downloaded": False, + "texts": "mrtydi-v1.1-thai" + }, + "wikipedia-dpr-dkrr-nq": { + "description": "Faiss FlatIP index of Wikipedia DPR encoded by the retriever model from 'Distilling Knowledge from Reader to Retriever for Question Answering' trained on NQ", + "filename": "faiss-flat.wikipedia.dkrr-dpr-nq-retriever.20220217.25ed1f.cc91b2.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss-flat.wikipedia.dkrr-dpr-nq-retriever.20220217.25ed1f.cc91b2.tar.gz", + ], + "md5": "e58886fd5485b84f2c44963ce644561b", + "size compressed (bytes)": 37812137819, + "documents": 21015324, + "downloaded": False, + "texts": "wikipedia-dpr" + }, + "wikipedia-dpr-dkrr-tqa": { + "description": "Faiss FlatIP index of Wikipedia DPR encoded by the retriever model from 'Distilling Knowledge from Reader to Retriever for Question Answering' trained on TriviaQA", + "filename": "faiss-flat.wikipedia.dkrr-dpr-tqa-retriever.20220217.25ed1f.cc91b2.tar.gz", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss-flat.wikipedia.dkrr-dpr-tqa-retriever.20220217.25ed1f.cc91b2.tar.gz", + ], + "md5": "a6b02d33c9c0376ad1bf6550212ecdcb", + "size compressed (bytes)": 37802648060, + "documents": 21015324, + "downloaded": False, + "texts": "wikipedia-dpr" + }, + "mrtydi-v1.1-arabic-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-arabic.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-arabic.20220413.aa1c0e9.tar.gz", + ], + "md5": "bafb6fb2c530567dec26aa4597c6ee25", + "size compressed (bytes)": 5997943791, + "documents": 2106586, + "downloaded": False, + "texts": "mrtydi-v1.1-arabic", + }, + "mrtydi-v1.1-bengali-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-bengali.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-bengali.20220413.aa1c0e9.tar.gz", + ], + "md5": "d04bb6e634fb4f7df23dbff7481a8f9b", + "size compressed (bytes)": 865733058, + "documents": 304059, + "downloaded": False, + "texts": "mrtydi-v1.1-bengali", + }, + "mrtydi-v1.1-english-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-english.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-english.20220413.aa1c0e9.tar.gz", + ], + "md5": "4a93a2211199f7359cc99486a9f93d02", + "size compressed (bytes)": 93594561391, + "documents": 32907100, + "downloaded": False, + "texts": "mrtydi-v1.1-english" + }, + "mrtydi-v1.1-finnish-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-finnish.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-finnish.20220413.aa1c0e9.tar.gz", + ], + "md5": "6cbe2d52225fb15a494857b9df593113", + "size compressed (bytes)": 5436419399, + "documents": 1908757, + "downloaded": False, + "texts": "mrtydi-v1.1-finnish" + }, + "mrtydi-v1.1-indonesian-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-indonesian.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-indonesian.20220413.aa1c0e9.tar.gz", + ], + "md5": "26108a7ee1fc5ac15e0b7fcecf4d39ad", + "size compressed (bytes)": 4178791300, + "documents": 1469399, + "downloaded": False, + "texts": "mrtydi-v1.1-indonesian" + }, + "mrtydi-v1.1-japanese-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-japanese.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-japanese.20220413.aa1c0e9.tar.gz", + ], + "md5": "2ef2b5e3f5778d99e65aafc48450508a", + "size compressed (bytes)": 19918319452, + "documents": 7000027, + "downloaded": False, + "texts": "mrtydi-v1.1-japanese" + }, + "mrtydi-v1.1-korean-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-korean.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-korean.20220413.aa1c0e9.tar.gz", + ], + "md5": "26ed9be031603019304b66f985ce154c", + "size compressed (bytes)": 4256863335, + "documents": 1496126, + "downloaded": False, + "texts": "mrtydi-v1.1-korean" + }, + "mrtydi-v1.1-russian-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-russian.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-russian.20220413.aa1c0e9.tar.gz", + ], + "md5": "b1be7a45a702be4021f38425c0001f39", + "size compressed (bytes)": 27318555548, + "documents": 9597504, + "downloaded": False, + "texts": "mrtydi-v1.1-russian" + }, + "mrtydi-v1.1-swahili-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-swahili.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-swahili.20220413.aa1c0e9.tar.gz", + ], + "md5": "14edb5f677820b5a5a3858555e900591", + "size compressed (bytes)": 389600527, + "documents": 136689, + "downloaded": False, + "texts": "mrtydi-v1.1-swahili" + }, + "mrtydi-v1.1-telugu-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-telugu.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-telugu.20220413.aa1c0e9.tar.gz", + ], + "md5": "25b37f5d7a035a17b447f1732e241b85", + "size compressed (bytes)": 1561419958, + "documents": 548224, + "downloaded": False, + "texts": "mrtydi-v1.1-telugu" + }, + "mrtydi-v1.1-thai-mdpr-tied-pft-msmarco": { + "description": "Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.mrtydi-v1.1-thai.20220413.aa1c0e9.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-thai.20220413.aa1c0e9.tar.gz", + ], + "md5": "0544ce677fa31b633a29a079c0cdfc82", + "size compressed (bytes)": 1616716166, + "documents": 568855, + "downloaded": False, + "texts": "mrtydi-v1.1-thai" + }, + "mrtydi-v1.1-arabic-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-arabic.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-arabic.20220523.7b099d5.tar.gz", + ], + "md5": "3d764e7936bb6beb5308ccfd6717b38e", + "size compressed (bytes)": 5988743258, + "documents": 2106586, + "downloaded": False, + "texts": "mrtydi-v1.1-arabic" + }, + "mrtydi-v1.1-bengali-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-bengali.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-bengali.20220523.7b099d5.tar.gz", + ], + "md5": "2ee8e550245f7eb5184c27fe3369d818", + "size compressed (bytes)": 864358280, + "documents": 304059, + "downloaded": False, + "texts": "mrtydi-v1.1-bengali" + }, + "mrtydi-v1.1-english-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-english.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-english.20220523.7b099d5.tar.gz", + ], + "md5": "a1be61486c209bf2545d63f950274a99", + "size compressed (bytes)": 93435965796, + "documents": 32907100, + "downloaded": False, + "texts": "mrtydi-v1.1-english" + }, + "mrtydi-v1.1-finnish-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-finnish.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-finnish.20220523.7b099d5.tar.gz", + ], + "md5": "0dbd873fa8bf8c87052940bdf4097ba2", + "size compressed (bytes)": 5427976705, + "documents": 1908757, + "downloaded": False, + "texts": "mrtydi-v1.1-finnish" + }, + "mrtydi-v1.1-indonesian-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-indonesian.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-indonesian.20220523.7b099d5.tar.gz", + ], + "md5": "937f7c03e2386166e34ef81b25d7959f", + "size compressed (bytes)": 4172976570, + "documents": 4179177829, + "downloaded": False, + "texts": "mrtydi-v1.1-indonesian" + }, + "mrtydi-v1.1-japanese-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-japanese.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-japanese.20220523.7b099d5.tar.gz", + ], + "md5": "21a64d1a012a854d4bf42fa24c8712fd", + "size compressed (bytes)": 19890571158, + "documents": 7000027, + "downloaded": False, + "texts": "mrtydi-v1.1-japanese" + }, + "mrtydi-v1.1-korean-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-korean.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-korean.20220523.7b099d5.tar.gz", + ], + "md5": "ed3216fb5bc431ac52931b58cc4c4d0f", + "size compressed (bytes)": 4250320804, + "documents": 1496126, + "downloaded": False, + "texts": "mrtydi-v1.1-korean" + }, + "mrtydi-v1.1-russian-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-russian.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-russian.20220523.7b099d5.tar.gz", + ], + "md5": "c3c4db1397c7125f8e411cf637054148", + "size compressed (bytes)": 27278520787, + "documents": 9597504, + "downloaded": False, + "texts": "mrtydi-v1.1-russian" + }, + "mrtydi-v1.1-swahili-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-swahili.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-swahili.20220523.7b099d5.tar.gz", + ], + "md5": "20235115c0a877e11c91cb662d5a6fdb", + "size compressed (bytes)": 389244265, + "documents": 136689, + "downloaded": False, + "texts": "mrtydi-v1.1-swahili" + }, + "mrtydi-v1.1-telugu-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-telugu.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-telugu.20220523.7b099d5.tar.gz", + ], + "md5": "86cae6fe8f8c08489e49b6e6c28a09b0", + "size compressed (bytes)": 1558691592, + "documents": 548224, + "downloaded": False, + "texts": "mrtydi-v1.1-telugu" + }, + "mrtydi-v1.1-thai-mdpr-tied-pft-nq": { + "description": "Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-thai.20220523.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-thai.20220523.7b099d5.tar.gz", + ], + "md5": "3ba9c64a9f7479bd2e3a84a816ee0f6f", + "size compressed (bytes)": 1613563144, + "documents": 568855, + "downloaded": False, + "texts": "mrtydi-v1.1-thai" + }, + "mrtydi-v1.1-arabic-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-arabic.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-arabic.20220524.7b099d5.tar.gz", + ], + "md5": "9ea47ae7425fd3376f015ca7c6ba5134", + "size compressed (bytes)": 5988743258, + "documents": 2106586, + "downloaded": False, + "texts": "mrtydi-v1.1-arabic" + }, + "mrtydi-v1.1-bengali-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-bengali.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-bengali.20220524.7b099d5.tar.gz", + ], + "md5": "d1e75f4960a723b068bb778a972ffb54", + "size compressed (bytes)": 864358280, + "documents": 304059, + "downloaded": False, + "texts": "mrtydi-v1.1-bengali" + }, + "mrtydi-v1.1-english-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-english.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-english.20220524.7b099d5.tar.gz", + ], + "md5": "1fce43e549ff57bbac432a579961f34b", + "size compressed (bytes)": 93435965796, + "documents": 32907100, + "downloaded": False, + "texts": "mrtydi-v1.1-english" + }, + "mrtydi-v1.1-finnish-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-finnish.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-finnish.20220524.7b099d5.tar.gz", + ], + "md5": "6faa7b2fe8ad4b9ca284bd7e8f69b727", + "size compressed (bytes)": 5427976705, + "documents": 1908757, + "downloaded": False, + "texts": "mrtydi-v1.1-finnish" + }, + "mrtydi-v1.1-indonesian-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-indonesian.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-indonesian.20220524.7b099d5.tar.gz", + ], + "md5": "659b1e0a1bea46f62a842b55385085b7", + "size compressed (bytes)": 4172976570, + "documents": 4179177829, + "downloaded": False, + "texts": "mrtydi-v1.1-indonesian" + }, + "mrtydi-v1.1-japanese-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-japanese.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-japanese.20220524.7b099d5.tar.gz", + ], + "md5": "126c82da9e0e0e1fd290cf62d7fe4dfa", + "size compressed (bytes)": 19890571158, + "documents": 7000027, + "downloaded": False, + "texts": "mrtydi-v1.1-japanese" + }, + "mrtydi-v1.1-korean-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-korean.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-korean.20220524.7b099d5.tar.gz", + ], + "md5": "cf07b71aaefba58bbe150265f6696503", + "size compressed (bytes)": 4250320804, + "documents": 1496126, + "downloaded": False, + "texts": "mrtydi-v1.1-korean" + }, + "mrtydi-v1.1-russian-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-russian.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-russian.20220524.7b099d5.tar.gz", + ], + "md5": "c0a53fa6428cb9b1399a90e3a9a805d5", + "size compressed (bytes)": 27278520787, + "documents": 9597504, + "downloaded": False, + "texts": "mrtydi-v1.1-russian" + }, + "mrtydi-v1.1-swahili-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-swahili.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-swahili.20220524.7b099d5.tar.gz", + ], + "md5": "93dc3f3453815c92f3bccf4f41c5f2d4", + "size compressed (bytes)": 389244265, + "documents": 136689, + "downloaded": False, + "texts": "mrtydi-v1.1-swahili" + }, + "mrtydi-v1.1-telugu-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-telugu.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-telugu.20220524.7b099d5.tar.gz", + ], + "md5": "7aba1b7ee36e572bd982b3f62f41c380", + "size compressed (bytes)": 1558691592, + "documents": 548224, + "downloaded": False, + "texts": "mrtydi-v1.1-telugu" + }, + "mrtydi-v1.1-thai-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.", + "filename": "faiss.mrtydi-v1.1-thai.20220524.7b099d5.tar.gz", + "readme": "faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.mrtydi-v1.1-thai.20220524.7b099d5.tar.gz", + ], + "md5": "57151073a4c0d90b64242e4536a3af75", + "size compressed (bytes)": 1613563144, + "documents": 568855, + "downloaded": False, + "texts": "mrtydi-v1.1-thai" + }, + "miracl-v1.0-ar-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ar.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-ar.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "177d47e9a802c87abca52380ad1ce83b", + "size compressed (bytes)": 5997943791, + "documents": 2061414, + "downloaded": False, + "texts": "miracl-v1.0-ar", + }, + "miracl-v1.0-bn-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-bn.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-bn.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "156e8ba8cd369b1c4a606e28ea025b2e", + "size compressed (bytes)": 846825710, + "documents": 297265, + "downloaded": False, + "texts": "miracl-v1.0-bn", + }, + "miracl-v1.0-en-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-en.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-en.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "ce00518f54b130a157112c2a1b2d0980", + "size compressed (bytes)": 93554329467, + "documents": 32893221, + "downloaded": False, + "texts": "miracl-v1.0-en" + }, + "miracl-v1.0-es-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Spanish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-es.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-es.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "d7a9627bb60e901386f455ba6c9063ac", + "size compressed (bytes)": 29553300598, + "documents": 10373953, + "downloaded": False, + "texts": "miracl-v1.0-es" + }, + "miracl-v1.0-fa-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Persian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-fa.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-fa.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "e8b59e3eb2e08f61f81569c6d4c85350", + "size compressed (bytes)": 6286832343, + "documents": 2207172, + "downloaded": False, + "texts": "miracl-v1.0-fa" + }, + "miracl-v1.0-fi-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-fi.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-fi.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "a82d6e6cf964d2e4cfac99cf14cbcc35", + "size compressed (bytes)": 5366190875, + "documents": 1883509, + "downloaded": False, + "texts": "miracl-v1.0-fi" + }, + "miracl-v1.0-fr-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (French) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-fr.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-fr.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "a952d944aa63dcee604c8357f1be18db", + "size compressed (bytes)": 41648462587, + "documents": 14636953, + "downloaded": False, + "texts": "miracl-v1.0-fr" + }, + "miracl-v1.0-hi-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Hindi) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-hi.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-hi.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "9d1dc4b948edf3df263977d82c9fcc3f", + "size compressed (bytes)": 1440625097, + "documents": 506264, + "downloaded": False, + "texts": "miracl-v1.0-hi" + }, + "miracl-v1.0-id-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-id.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-id.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "19815233f5cc3a198b88cdb990459637", + "size compressed (bytes)": 4115281873, + "documents": 1446315, + "downloaded": False, + "texts": "miracl-v1.0-id" + }, + "miracl-v1.0-ja-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ja.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-ja.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "6e9b6e304b2b1a192a3d81e55880f971", + "size compressed (bytes)": 19791965448, + "documents": 6953614, + "downloaded": False, + "texts": "miracl-v1.0-ja" + }, + "miracl-v1.0-ko-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ko.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-ko.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "ea1fa34341fc5d5ea88e5b633025d2d5", + "size compressed (bytes)": 4231563116, + "documents": 1486752, + "downloaded": False, + "texts": "miracl-v1.0-korean" + }, + "miracl-v1.0-ru-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ru.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-ru.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "4325e716ee6af5ea2b73d4b25f1ad76c", + "size compressed (bytes)": 27173379698, + "documents": 9543918, + "downloaded": False, + "texts": "miracl-v1.0-ru" + }, + "miracl-v1.0-sw-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-sw.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-sw.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "2b879dac6823077ae497ba8ebfce523b", + "size compressed (bytes)": 376181791, + "documents": 131924, + "downloaded": False, + "texts": "miracl-v1.0-sw" + }, + "miracl-v1.0-te-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-te.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-te.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "a3dfb8ba31f316c93d1fd147f88fbbfd", + "size compressed (bytes)": 1476021181, + "documents": 518079, + "downloaded": False, + "texts": "miracl-v1.0-te" + }, + "miracl-v1.0-th-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-th.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-th.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "cb0c9b84a80ff338372b32857c58368d", + "size compressed (bytes)": 1541590044, + "documents": 542166, + "downloaded": False, + "texts": "miracl-v1.0-th" + }, + "miracl-v1.0-zh-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-zh.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-zh.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "2743dfaa794b7abbef1d3c912c5cc4b5", + "size compressed (bytes)": 14046912361, + "documents": 4934368, + "downloaded": False, + "texts": "miracl-v1.0-zh", + }, + "miracl-v1.0-de-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (German) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-de.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-de.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "1abcf3aac78e30ebe7a75163412f1c84", + "size compressed (bytes)": 45154018897, + "documents": 15866222, + "downloaded": False, + "texts": "miracl-v1.0-de", + }, + "miracl-v1.0-yo-mdpr-tied-pft-msmarco": { + "description": "Faiss index for MIRACL v1.0 (Yoruba) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-yo.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-yo.mdpr-tied-pft-msmarco.20221004.2b2856.tar.gz" + ], + "md5": "2ad15ea0576ae3284082ae661e001faa", + "size compressed (bytes)": 139412730, + "documents": 49043, + "downloaded": False, + "texts": "miracl-v1.0-yo", + }, + + "miracl-v1.0-ar-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-arabic.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-ar.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "428fbde84d2c18e48f0821298947a9d1", + "size compressed (bytes)": 5866199790, + "documents": 2061414, + "downloaded": False, + "texts": "miracl-v1.0-ar", + }, + "miracl-v1.0-bn-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-bn.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-bn.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "4394a09e043be9be5b820814a82fc8ac", + "size compressed (bytes)": 846476050, + "documents": 297265, + "downloaded": False, + "texts": "miracl-v1.0-bn", + }, + "miracl-v1.0-en-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-en.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-en.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "5bd57f5e4daf93294fd2cbd969c05bb3", + "size compressed (bytes)": 93527497283, + "documents": 32893221, + "downloaded": False, + "texts": "miracl-v1.0-en" + }, + "miracl-v1.0-es-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Spanish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-es.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-es.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "b6db16c1ab0ae95fec0465299c660d2a", + "size compressed (bytes)": 29544413180, + "documents": 10373953, + "downloaded": False, + "texts": "miracl-v1.0-es" + }, + "miracl-v1.0-fa-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Persian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-fa.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-fa.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "2a2825706211eb96bd3dbb616463c661", + "size compressed (bytes)": 6283957262, + "documents": 2207172, + "downloaded": False, + "texts": "miracl-v1.0-fa" + }, + "miracl-v1.0-fi-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-fi.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-fi.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "65719de730cda3fa5f6a8a75611db6eb", + "size compressed (bytes)": 5363289277, + "documents": 1883509, + "downloaded": False, + "texts": "miracl-v1.0-fi" + }, + "miracl-v1.0-fr-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (French) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-fr.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-fr.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "24eb2f63f78aa1e39b1ea61e20661424", + "size compressed (bytes)": 41635104326, + "documents": 14636953, + "downloaded": False, + "texts": "miracl-v1.0-fr" + }, + "miracl-v1.0-hi-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Hindi) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-hi.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-hi.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "d08aad08a8592aa40355fb7d50afd170", + "size compressed (bytes)": 1439798033, + "documents": 506264, + "downloaded": False, + "texts": "miracl-v1.0-hi" + }, + "miracl-v1.0-id-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-id.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-id.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "b02c20d4fc27e390ec5b1e9ca732dc5a", + "size compressed (bytes)": 4113737773, + "documents": 1446315, + "downloaded": False, + "texts": "miracl-v1.0-id" + }, + "miracl-v1.0-ja-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ja.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-ja.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "a5f219c7f46a36c5c7a2555fbdaa0479", + "size compressed (bytes)": 19790154560, + "documents": 6953614, + "downloaded": False, + "texts": "miracl-v1.0-ja" + }, + "miracl-v1.0-ko-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ko.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-ko.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "67b2a803eab3491a057d4ac6b81974f1", + "size compressed (bytes)": 4230830690, + "documents": 1486752, + "downloaded": False, + "texts": "miracl-v1.0-korean" + }, + "miracl-v1.0-ru-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-ru.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-ru.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "edad6d5cb508de61ba84173d0ad2aa31", + "size compressed (bytes)": 27169921407, + "documents": 9543918, + "downloaded": False, + "texts": "miracl-v1.0-ru" + }, + "miracl-v1.0-sw-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-sw.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-sw.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "0b039d766b55f678102a59a6e050d0bc", + "size compressed (bytes)": 375865677, + "documents": 131924, + "downloaded": False, + "texts": "miracl-v1.0-sw" + }, + "miracl-v1.0-te-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-te.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-te.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "ea21915c69f70f41acadee4b6b83d129", + "size compressed (bytes)": 1474866678, + "documents": 518079, + "downloaded": False, + "texts": "miracl-v1.0-te" + }, + "miracl-v1.0-th-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-th.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-th.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "a5875b473109310789710e2f3df91b0f", + "size compressed (bytes)": 1540180247, + "documents": 542166, + "downloaded": False, + "texts": "miracl-v1.0-th" + }, + "miracl-v1.0-zh-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-zh.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.miracl-v1.0-zh.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "a2d233e792d46c20c912d10afff033f5", + "size compressed (bytes)": 14043150097, + "documents": 4934368, + "downloaded": False, + "texts": "miracl-v1.0-zh", + }, + "miracl-v1.0-de-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-de.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-de.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "d53da12ae6119ed54ef968e968f8520a", + "size compressed (bytes)": 45139752128, + "documents": 15866222, + "downloaded": False, + "texts": "miracl-v1.0-de", + }, + "miracl-v1.0-yo-mdpr-tied-pft-msmarco-ft-all": { + "description": "Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.", + "filename": "faiss.miracl-v1.0-yo.20221004.2b2856.tar.gz", + "readme": "faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.miracl-v1.0-yo.mdpr-tied-pft-msmarco-ft-all.20221004.2b2856.tar.gz" + ], + "md5": "0a1b0f48108508724a3892dfc04eb756", + "size compressed (bytes)": 139286213, + "documents": 49043, + "downloaded": False, + "texts": "miracl-v1.0-yo", + }, + "wiki-all-6-3-dpr2-multi": { + "description": "Faiss FlatIP index of wiki-all-6-3-tamber encoded by a 2nd iteration DPR model trained on multiple QA datasets", + "filename": "faiss-flat.wiki-all-6-3.dpr2-multi-retriever.20230103.186fa7.tar.gz", + "readme": "faiss-flat.wiki-all-6-3.dpr2-multi-retriever.20230103.186fa7.README.md", + "urls": [ + "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss-flat.wiki-all-6-3.dpr2-multi-retriever.20230103.186fa7.tar.gz", + ], + "md5": "b77b8e296c339b6d76988ee5c2d3e96a", + "size compressed (bytes)": 218257913793, + "documents": 76680040, + "downloaded": False, + "texts": "wiki-all-6-3-tamber" + }, +} diff --git a/pyserini/pyclass.py b/pyserini/pyclass.py new file mode 100644 index 0000000000000000000000000000000000000000..599f3cfc0ac9da42464caa4b9cb9b1cc148525e6 --- /dev/null +++ b/pyserini/pyclass.py @@ -0,0 +1,36 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +Module for hiding Python-Java calls via Pyjnius +""" + +from .setup import configure_classpath, os + +# If the environment variable isn't defined, look in the current directory. +configure_classpath(os.environ['ANSERINI_CLASSPATH'] if 'ANSERINI_CLASSPATH' in os.environ else + os.path.join(os.path.split(__file__)[0], 'resources/jars/')) + +from jnius import autoclass, cast + +# Base Java classes +JString = autoclass('java.lang.String') +JFloat = autoclass('java.lang.Float') +JPath = autoclass('java.nio.file.Path') +JPaths = autoclass('java.nio.file.Paths') +JList = autoclass('java.util.List') +JArrayList = autoclass('java.util.ArrayList') +JHashMap = autoclass('java.util.HashMap') diff --git a/pyserini/query_iterator.py b/pyserini/query_iterator.py new file mode 100644 index 0000000000000000000000000000000000000000..52e837a260bcfdd39c652378aa698880c530e9f6 --- /dev/null +++ b/pyserini/query_iterator.py @@ -0,0 +1,159 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import json +from abc import ABC, abstractmethod +from enum import Enum, unique +from pathlib import Path + +from pyserini.search import get_topics, get_topics_with_reader +from pyserini.util import download_url, get_cache_home +from pyserini.external_query_info import KILT_QUERY_INFO +from urllib.error import HTTPError, URLError + + +@unique +class TopicsFormat(Enum): + DEFAULT = 'default' + KILT = 'kilt' + + +class QueryIterator(ABC): + + PREDEFINED_ORDER = {'msmarco-doc-dev', + 'msmarco-doc-test', + 'msmarco-passage-dev-subset', + 'msmarco-passage-test-subset'} + + def __init__(self, topics: dict, order: list = None): + self.order = order if order else sorted(topics.keys()) + self.topics = topics + + @abstractmethod + def get_query(self, id_): + raise NotImplementedError() + + @classmethod + @abstractmethod + def from_topics(cls, topics_path: str): + raise NotImplementedError() + + def __iter__(self): + for id_ in self.order: + yield id_, self.get_query(id_) + + def __len__(self): + return len(self.topics.keys()) + + @staticmethod + def get_predefined_order(topics_path: str): + order = None + normalized_path = Path(topics_path).stem # get filename w/o extension + normalized_path = normalized_path.replace('_', '-') + + if normalized_path in QueryIterator.PREDEFINED_ORDER: + print(f'Using pre-defined topic order for {normalized_path}') + # Lazy import: + from pyserini.query_iterator_order_info import QUERY_IDS + order = QUERY_IDS[topics_path] + return order + + +class DefaultQueryIterator(QueryIterator): + + def get_query(self, id_): + return self.topics[id_].get('title') + + @classmethod + def from_topics(cls, topics_path: str): + if os.path.exists(topics_path): + if topics_path.endswith('.json'): + with open(topics_path, 'r') as f: + topics = json.load(f) + elif "beir" in topics_path: + topics = get_topics_with_reader('io.anserini.search.topicreader.TsvStringTopicReader', topics_path) + elif topics_path.endswith('.tsv') or topics_path.endswith('.tsv.gz'): + try: + topics = get_topics_with_reader('io.anserini.search.topicreader.TsvIntTopicReader', topics_path) + except ValueError as e: + topics = get_topics_with_reader('io.anserini.search.topicreader.TsvStringTopicReader', topics_path) + elif topics_path.endswith('.trec'): + topics = get_topics_with_reader('io.anserini.search.topicreader.TrecTopicReader', topics_path) + elif 'cacm' in topics_path: + topics = get_topics_with_reader('io.anserini.search.topicreader.CacmTopicReader', topics_path) + else: + raise NotImplementedError(f"Not sure how to parse {topics_path}. Please specify the file extension.") + else: + topics = get_topics(topics_path) + if not topics: + raise FileNotFoundError(f'Topic {topics_path} Not Found') + order = QueryIterator.get_predefined_order(topics_path) + return cls(topics, order) + + +class KiltQueryIterator(QueryIterator): + + ENT_START_TOKEN = "[START_ENT]" + ENT_END_TOKEN = "[END_ENT]" + + def get_query(self, id_): + datapoint = self.topics[id_] + query = ( + datapoint["input"] + .replace(KiltQueryIterator.ENT_START_TOKEN, "") + .replace(KiltQueryIterator.ENT_END_TOKEN, "") + .strip() + ) + return query + + @classmethod + def from_topics(cls, topics_path: str): + topics = {} + order = [] + if not os.path.exists(topics_path): + # Download if necessary: + topics_path = cls.download_kilt_topics(topics_path) + with open(topics_path, 'r') as f: + for line in f: + datapoint = json.loads(line) + topics[datapoint["id"]] = datapoint + order.append(datapoint["id"]) + return cls(topics, order) + + @classmethod + def download_kilt_topics(cls, task: str, force=False): + if task not in KILT_QUERY_INFO: + raise ValueError(f'Unrecognized query name {task}') + task = KILT_QUERY_INFO[task] + md5 = task['md5'] + save_dir = os.path.join(get_cache_home(), 'queries') + if not os.path.exists(save_dir): + os.makedirs(save_dir) + for url in task['urls']: + try: + return download_url(url, save_dir, force=force, md5=md5) + except (HTTPError, URLError) as e: + print(f'Unable to download encoded query at {url}, trying next URL...') + raise ValueError(f'Unable to download encoded query at any known URLs.') + + +def get_query_iterator(topics_path: str, topics_format: TopicsFormat): + mapping = { + TopicsFormat.DEFAULT: DefaultQueryIterator, + TopicsFormat.KILT: KiltQueryIterator, + } + return mapping[topics_format].from_topics(topics_path) diff --git a/pyserini/query_iterator_order_info.py b/pyserini/query_iterator_order_info.py new file mode 100644 index 0000000000000000000000000000000000000000..8ddffdc8235b952e084e270a13da297765e7f497 --- /dev/null +++ b/pyserini/query_iterator_order_info.py @@ -0,0 +1,22 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +QUERY_IDS = { + 'msmarco-doc-dev': [174249, 320792, 1090270, 1101279, 201376, 54544, 118457, 178627, 1101278, 68095, 87892, 257309, 1090242, 211691, 165002, 1101276, 264827, 342285, 372586, 89786, 118448, 92542, 206117, 141472, 196232, 352818, 208145, 79891, 208494, 319564, 155234, 14151, 67802, 1090184, 323382, 323998, 289812, 333486, 1090171, 73257, 1090170, 127876, 1090165, 259417, 1101271, 205107, 307118, 335710, 127984, 1090151, 1090146, 1090132, 1090115, 1090110, 1090107, 1090086, 1090077, 1090072, 1090054, 1101259, 1089983, 1089966, 1089964, 1089940, 1089925, 1089896, 1101236, 1089868, 1089846, 1089832, 1089810, 1101228, 1089804, 1089787, 1089776, 1089763, 1089760, 1089719, 1089706, 1089693, 1089691, 1089688, 1089683, 1089674, 1101214, 1089645, 1101211, 1089619, 1089597, 1089576, 1089560, 1089541, 1089511, 1089501, 1089469, 1089443, 1089438, 1089434, 1089414, 1089408, 1089401, 1089355, 1089325, 1089312, 1089293, 1089286, 1089273, 1101173, 1101172, 1101171, 1089177, 1089167, 1089158, 1089156, 1089143, 1089121, 1089093, 1089085, 1089071, 1089051, 1089044, 1089043, 1089036, 1089027, 1089026, 1089022, 1089021, 1089002, 1089001, 1088993, 1088987, 1088973, 1088960, 1088958, 1088947, 1088938, 1088928, 1088903, 1088889, 1088884, 1088869, 1088856, 1088845, 1088832, 1088800, 1101131, 1102300, 1088758, 1088734, 1088718, 1088693, 1101121, 1088685, 1088628, 1088606, 1088541, 1088539, 1088475, 1088453, 1101090, 1088437, 1101088, 1088379, 1088358, 1088349, 1088302, 1088164, 1088153, 1088138, 1088043, 1087999, 1087959, 1101048, 1087915, 1087911, 1087869, 1087858, 1087848, 1087803, 1087795, 1087774, 1087766, 1087736, 1087729, 1087727, 1087722, 1087687, 1087680, 1087675, 1087634, 1101018, 1087589, 1087581, 1087566, 1087556, 1087532, 1087514, 1087492, 1087487, 1087486, 1087484, 1087425, 1087375, 1087361, 1087351, 1087327, 1087317, 1087309, 1087238, 1087226, 1087215, 1100986, 1087204, 1087185, 1087173, 1087171, 1100980, 1087129, 1087122, 1087114, 1087105, 1087077, 1087076, 1087074, 1087066, 1087061, 1087047, 1087046, 1087042, 1087018, 1087014, 1087001, 1086974, 1086933, 1086928, 1086927, 1086917, 1086915, 1086893, 1086886, 1086883, 1086874, 1086860, 1086855, 1086836, 1086834, 1086765, 1086760, 1086715, 1086713, 1100937, 1086708, 1086701, 1086681, 1086679, 1100933, 1086628, 1100930, 1086595, 1086581, 1086565, 1086555, 1086532, 1086477, 1100919, 1086468, 1086439, 1086430, 1086424, 1086391, 1086385, 1086384, 1086326, 1086309, 1086288, 1086281, 1086271, 1086266, 1086248, 1086241, 1086224, 1086200, 1086174, 1086120, 1086075, 1086046, 1086022, 1086014, 1085980, 1085967, 1100875, 1085943, 1085918, 1085889, 1085845, 1085842, 1085812, 1085804, 1085796, 1085780, 1085779, 1085764, 1085762, 1085760, 1085733, 1085697, 1085674, 1100852, 1085658, 1085630, 1085613, 1085586, 1085584, 1085572, 1085550, 1085533, 1085532, 1085521, 1085517, 1100839, 1085510, 1085457, 1085456, 1085454, 1085441, 1085422, 1085421, 1085393, 1085356, 1085348, 1085341, 1085339, 1085327, 1085319, 1085288, 1085279, 1085245, 1085229, 1100816, 1085197, 1085141, 1085048, 1085035, 1085013, 1085008, 1084986, 1084982, 1084971, 1084910, 1084906, 1084898, 1084889, 1084887, 1100783, 1084848, 1084838, 1084814, 1084769, 1084755, 1084722, 1084713, 1084712, 1084686, 1084603, 1084582, 1084518, 1084516, 1084512, 1084478, 1084475, 1084469, 1084408, 1084403, 1084389, 1084383, 1084354, 1084336, 1084330, 1084326, 1084324, 1084308, 1084301, 1100732, 1084276, 1084273, 1084233, 1084230, 1084197, 1100724, 1084192, 1084086, 1084076, 1084075, 1084038, 1083997, 1083948, 1083945, 1083933, 1083926, 1083909, 1083832, 1083831, 1083822, 1083800, 1083797, 1100687, 1083783, 1083727, 1083721, 1083704, 1083690, 1083686, 1083641, 1083627, 1083597, 1083584, 1083535, 1083517, 1083502, 1083500, 1083499, 1083472, 1083443, 1083430, 1083428, 1083410, 1083362, 1083345, 1083341, 1083340, 1083332, 1083307, 1083293, 1100639, 1083285, 1083278, 1083268, 1083267, 1100634, 1083161, 1083158, 1083152, 1083127, 1083125, 1083108, 1083095, 1083092, 1083085, 1083017, 1083010, 1083000, 1082948, 1082947, 1082924, 1082893, 1082870, 1082840, 1082835, 1082807, 1082792, 1082779, 1082759, 1082751, 1082750, 1082730, 1082668, 1082653, 1082622, 1082607, 1100581, 1082536, 1082531, 1082502, 1082455, 1082445, 1082427, 1082384, 1082377, 1082351, 1082341, 1082339, 1082332, 1082281, 1082265, 1082263, 1082242, 1082117, 1100544, 1081946, 1100541, 1081730, 1081609, 1081595, 1081338, 1100537, 1081091, 1081086, 1080970, 1080950, 1100533, 1080555, 1080406, 1080253, 1080031, 1080010, 1102240, 1079535, 1079340, 1079086, 1079050, 1078906, 1078765, 1077844, 1077019, 1077006, 1077002, 1100499, 1076269, 1075980, 1100492, 1075919, 1075741, 1075656, 1100488, 1075608, 1075591, 1075348, 1075313, 1075262, 1074997, 1074995, 1074989, 1074949, 1074883, 1074807, 1074804, 1074001, 1073640, 1073569, 1073365, 1073358, 1072874, 1072750, 1072603, 1072513, 1100458, 1072500, 1100457, 1100455, 1072188, 1100454, 1071992, 1071598, 1071545, 1071534, 1071389, 1071198, 1070546, 1070452, 1070324, 1070131, 1100438, 1069981, 1069717, 1069521, 1069405, 1069344, 1069222, 1069128, 1068952, 1068715, 1068584, 1068290, 1068276, 1067826, 1067772, 1067764, 1067724, 1067659, 1100415, 1067640, 1067587, 1067284, 1067276, 1066971, 1066966, 1066958, 1066916, 1066709, 1100403, 1066161, 1065971, 1065712, 1065650, 1065558, 1065551, 1065494, 1065160, 1064961, 1064808, 1064687, 1064206, 1064195, 1063974, 1063892, 1063777, 1063758, 1063702, 1063644, 1063607, 1063478, 1063349, 1100370, 1062961, 1062928, 1062784, 1062744, 1062687, 1062589, 1062511, 1062350, 1062332, 1062223, 1061762, 1061472, 1061324, 1061237, 1061210, 1061167, 1060881, 1060868, 1060795, 1060623, 1060566, 1060496, 1060462, 1060391, 1060040, 1060039, 1059698, 1059601, 1059421, 1059420, 1059287, 1059077, 1059045, 1100319, 1058952, 1058885, 1058604, 1100308, 1058601, 1058515, 1058470, 1058442, 1058325, 1058271, 1058182, 1058141, 1100299, 1058036, 1057996, 1057937, 1057708, 1057656, 1057539, 1057334, 1057139, 1057112, 1057015, 1056758, 1056742, 1056726, 1056644, 1056580, 1056437, 1056211, 1056163, 1056159, 1056060, 1056057, 1055940, 1055889, 1055717, 1055505, 1055197, 1055125, 1054999, 1054969, 1054958, 1054923, 1054707, 1054468, 1054451, 1054450, 1054440, 1054438, 1054189, 1054023, 1053931, 1053901, 1053896, 1053716, 1100229, 1102206, 1100224, 1053253, 1053219, 1052985, 1052965, 1100218, 1052640, 1052115, 1052089, 1051942, 1051902, 1051808, 1051571, 1051530, 1051520, 1051475, 1051422, 1051372, 1051352, 1051339, 1051307, 1100190, 1051285, 1051229, 1051223, 1051214, 1051211, 1100188, 1051112, 1100187, 1051108, 1050923, 1050778, 1050695, 1050231, 1049955, 1100173, 1049791, 1049774, 1049456, 1100168, 1049329, 1100167, 1049085, 1048917, 1048642, 1048381, 1048359, 1048303, 1048282, 1048281, 1100151, 1048185, 1047917, 1047913, 1047854, 1047843, 1047833, 1047794, 1047738, 1047708, 1047702, 1047700, 1047662, 1047642, 1047629, 1047599, 1100137, 1047548, 1047386, 1047365, 1047160, 1047138, 1047010, 1046969, 1046931, 1046736, 1100119, 1046569, 1046520, 1046475, 1046463, 1046161, 1100106, 1046047, 1046042, 1100105, 1045855, 1045826, 1045717, 1045709, 1045567, 1100094, 1045554, 1045540, 1045527, 1045494, 1045374, 1045347, 1045229, 1045227, 1045208, 1045135, 1045071, 1100077, 1100070, 1043914, 1043815, 1043658, 1043568, 1043545, 1043337, 1043064, 1042978, 1042800, 1042752, 1042626, 1042426, 1042364, 1042158, 1042099, 1041951, 1041948, 1041924, 1100035, 1041520, 1041226, 1041146, 1041043, 1040959, 1040848, 1040703, 1040532, 1040409, 1040312, 1040099, 1040088, 1040082, 1040064, 1100010, 1040038, 1040030, 1039728, 1039521, 1039298, 1099998, 1039002, 1038879, 1038859, 1038830, 1038724, 1038527, 1099985, 1038184, 1099981, 1099980, 1037872, 1037817, 1037689, 1037250, 1036784, 1036782, 1036627, 1102177, 1036385, 1036380, 1036244, 1036214, 1036005, 1035931, 1035874, 1035805, 1035719, 1035535, 1035383, 1035379, 1035367, 1035321, 1035278, 1035247, 1035006, 1034845, 1034761, 1034703, 1034680, 1034666, 1034595, 1034587, 1034446, 1034409, 1034204, 1034136, 1099914, 1033962, 1033927, 1099911, 1033725, 1033718, 1033652, 1033534, 1033398, 1033250, 1033249, 1033205, 1033092, 1032822, 1032758, 1032341, 1032281, 1099888, 1032198, 1032182, 1032019, 1031976, 1031861, 1031684, 1031682, 1031054, 1031033, 1031032, 1030924, 1030823, 1030722, 1030623, 1099859, 1030381, 1099855, 1030378, 1030324, 1030176, 1029909, 1029908, 1029772, 1029617, 1029552, 1029544, 1029492, 1099836, 1099834, 1029124, 1029058, 1029031, 1029030, 1029003, 1028796, 1028755, 1028753, 1099823, 1028711, 1028608, 1028598, 1028538, 1099816, 1028179, 1028098, 1027919, 1027817, 1027812, 1102163, 1027373, 1099806, 1099805, 1027178, 1026991, 1026799, 1026768, 1026148, 1025991, 1025801, 1025624, 1025483, 1025290, 1025270, 1025259, 1024904, 1024893, 1024727, 1024672, 1024667, 1024592, 1024591, 1024528, 1024288, 1024221, 1024166, 1024069, 1099756, 1023025, 1022907, 1022832, 1022782, 1022712, 1022621, 1022442, 1022410, 1022370, 1022359, 1022198, 1022178, 1022124, 1021971, 1099729, 1021931, 1021900, 1099726, 1021797, 1021695, 1021605, 1021327, 1021324, 1021170, 1021065, 1021053, 1020907, 1020724, 1020500, 1099706, 1020244, 1099700, 1019783, 1019724, 1019649, 1019414, 1019262, 1018918, 1018807, 1018658, 1018359, 1099670, 1018056, 1018032, 1017971, 1017952, 1017773, 1017706, 1017692, 1017687, 1017605, 1017529, 1017524, 1017476, 1017276, 1017204, 1016915, 1016879, 1099653, 1016676, 1016611, 1016583, 1016281, 1016154, 1016015, 1016013, 1015641, 1099636, 1015347, 1015307, 1099632, 1014885, 1014264, 1099626, 1014210, 1014132, 1013965, 1013797, 1013615, 1013592, 1013579, 1013570, 1013492, 1013424, 1013304, 1013267, 1013229, 1013114, 1012866, 1012865, 1099595, 1012547, 1012431, 1012026, 1011925, 1011713, 1011618, 1011512, 1011381, 1011328, 1011248, 1011166, 1011140, 1011120, 1011044, 1011021, 1011018, 1010615, 1010527, 1010524, 1010287, 1010057, 1010048, 1009994, 1009961, 1009749, 1009742, 1009724, 1009695, 1009610, 1009527, 1009388, 1009237, 1009183, 1009023, 1008979, 1008977, 1008968, 1008951, 1008947, 1008911, 1099495, 1008515, 1099482, 1007972, 1007959, 1007934, 1007696, 1007691, 1007673, 1007628, 1007606, 1007550, 1007473, 1007242, 1006911, 1006791, 1006751, 1006578, 1006459, 1006199, 1005798, 1099452, 1099451, 1005586, 1005131, 1005113, 1004949, 1004921, 1004258, 1004254, 1004243, 1004240, 1004233, 1004228, 1004167, 1003849, 1003831, 1003590, 1003482, 1003351, 1003319, 1003277, 1003239, 1003003, 1002940, 1002938, 1002889, 1002716, 1099391, 1002585, 1002584, 1002554, 1002482, 1002426, 1002330, 1002274, 1002252, 1002238, 1002197, 1002148, 1002058, 1001999, 1099368, 1001926, 1001903, 1001810, 1001454, 1000864, 1000798, 1000681, 1000574, 1000519, 1000459, 1000319, 1000272, 1102121, 1000083, 1000030, 1000017, 1000006, 1000004, 1000000, 999942, 999836, 999791, 999691, 999685, 999567, 999552, 999550, 999517, 999469, 999439, 999416, 999385, 999356, 1099321, 999192, 999110, 999089, 999086, 998965, 998905, 998891, 998802, 998735, 998681, 998680, 998675, 998658, 998646, 998641, 998591, 998493, 998417, 998309, 998247, 998246, 998174, 998101, 1099290, 998013, 997935, 997932, 1099288, 997878, 997860, 1099284, 997744, 997713, 997649, 997648, 997542, 997481, 997449, 997351, 997086, 997044, 996922, 996835, 996825, 996805, 996623, 996414, 996328, 996272, 996181, 996119, 995806, 995805, 995787, 995756, 995380, 995280, 995221, 995141, 994867, 994830, 1099226, 994792, 994688, 994533, 994479, 994397, 1099219, 994338, 1099217, 994228, 994133, 994085, 994005, 993996, 993987, 993834, 993821, 993795, 993748, 993627, 993320, 993255, 993178, 993153, 993041, 992950, 992949, 992946, 992840, 992839, 992677, 992660, 992659, 992605, 992559, 992535, 992531, 1099178, 992433, 992407, 992367, 992365, 992363, 992257, 992224, 992193, 992191, 992132, 992120, 991854, 991832, 991782, 991762, 991685, 991471, 991342, 991324, 991210, 991207, 991171, 991111, 991044, 991032, 990995, 990938, 990852, 990841, 990763, 990649, 990414, 990375, 990345, 990026, 989894, 989870, 989831, 989573, 989530, 1099105, 989296, 989213, 989042, 988954, 988915, 1102400, 988787, 988745, 988743, 988710, 988653, 988636, 988540, 988504, 1099072, 988253, 988124, 988122, 988121, 988119, 1099065, 987845, 987823, 987822, 987809, 987671, 987573, 987567, 987502, 987309, 987237, 987230, 1099050, 987192, 987183, 987066, 986936, 986852, 986793, 986791, 986733, 986494, 986484, 986427, 986411, 986316, 986210, 986162, 986068, 985461, 985433, 985431, 985372, 985360, 985275, 985259, 985173, 985167, 985165, 985158, 984992, 984948, 984856, 984774, 129837, 241405, 61452, 173001, 197024, 81993, 186446, 86624, 98817, 246626, 373121, 240504, 112035, 141353, 11006, 235832, 96379, 1098967, 298565, 86094, 141694, 320117, 281002, 353623, 1098953, 60357, 58583, 262974, 334754, 36214, 96749, 181394, 296993, 75608, 83448, 270603, 1098927, 183046, 362845, 164528, 244821, 95409, 293401, 1098909, 176015, 323798, 10157, 137919, 8854, 1098905, 89777, 97895, 149447, 239516, 299350, 323535, 1098895, 1098874, 253678, 160562, 282530, 166043, 357162, 328629, 1098860, 122440, 53813, 10312, 88577, 1098846, 109276, 15382, 29097, 185009, 98682, 230082, 194531, 168069, 1098809, 1098806, 1098804, 168238, 242219, 127315, 203688, 176994, 160255, 47864, 292676, 222954, 36965, 272500, 2962, 125545, 1098765, 11133, 1098763, 118365, 172981, 96310, 276338, 80590, 131665, 125996, 27618, 210690, 334916, 136209, 92437, 24979, 277785, 227591, 249321, 136098, 307521, 1098698, 264594, 169778, 158887, 135516, 15607, 237945, 164912, 125627, 20597, 339888, 276298, 234651, 129565, 12903, 145821, 180592, 1098646, 176677, 9926, 1098641, 265960, 172787, 94865, 135386, 234998, 100616, 1098608, 305361, 61882, 338713, 1098600, 102506, 128113, 44072, 128200, 334433, 329901, 153027, 90941, 197964, 49802, 184452, 229325, 231292, 273481, 30188, 244808, 101451, 191971, 108622, 150087, 182393, 181222, 144491, 258485, 292094, 1098523, 277632, 1098520, 97295, 188908, 1098510, 107812, 310853, 208339, 1098497, 149790, 132263, 106508, 314907, 371695, 1098481, 12741, 305333, 28216, 20671, 320320, 86264, 220151, 316803, 70340, 223468, 59217, 276329, 236580, 130932, 139239, 206549, 234821, 93308, 174273, 278863, 199572, 285656, 31432, 347491, 207251, 54531, 56033, 300312, 107077, 160885, 209651, 1098355, 143464, 1098354, 183201, 1098338, 222158, 159667, 61180, 1098322, 99183, 85954, 153794, 239189, 195693, 209764, 190307, 343976, 29169, 86701, 24115, 123975, 167436, 160339, 267644, 119534, 10276, 21765, 119975, 165807, 195582, 114037, 282397, 1102028, 165480, 279718, 1098222, 103125, 181144, 55691, 212236, 359499, 119168, 19457, 162351, 371204, 190212, 183874, 357664, 259128, 1098180, 249792, 232703, 1098169, 133037, 226461, 318073, 277701, 183723, 228474, 62648, 72613, 53814, 17848, 139897, 328611, 154633, 259239, 137411, 22882, 309402, 114638, 324645, 280927, 311067, 1098111, 118702, 1098110, 76770, 201366, 195440, 1098102, 142411, 234165, 1098090, 337073, 167156, 18101, 75342, 267012, 193742, 36473, 15039, 264410, 161224, 286160, 132359, 191632, 1098057, 170788, 1098048, 136700, 242713, 186390, 1102390, 324159, 196111, 78730, 40056, 9454, 295406, 184436, 78076, 265729, 212195, 152519, 126491, 57402, 139929, 131873, 185276, 27932, 160787, 323154, 377805, 1098013, 57882, 1098010, 334904, 20356, 303777, 367290, 284072, 1097999, 236949, 288884, 58801, 200296, 142039, 260762, 253965, 46579, 85904, 92260, 167566, 146244, 338040, 123710, 306105, 299094, 178468, 337209, 1097939, 74759, 202797, 1097937, 47741, 277799, 308687, 58571, 1102001, 323555, 259885, 1097909, 1097906, 255027, 1097905, 132104, 126525, 1097894, 142382, 1097885, 185299, 264150, 39577, 289556, 290499, 107283, 57614, 74356, 310948, 211621, 1101995, 294518, 329958, 157149, 149853, 204924, 144857, 227637, 207595, 337190, 113664, 181301, 237561, 62439, 362076, 1097796, 88284, 139767, 13397, 239511, 214040, 226509, 1097786, 202073, 250367, 313940, 326509, 236427, 32642, 267187, 51276, 145877, 256052, 10205, 112718, 342115, 244902, 212634, 323096, 46095, 1097723, 65583, 1097721, 64179, 139090, 299939, 184235, 196596, 154301, 82293, 267341, 1097674, 17635, 262232, 93649, 285537, 51090, 34039, 1215, 335711, 66154, 276208, 144694, 21861, 250636, 299110, 302337, 163602, 31595, 146598, 70852, 271038, 30956, 193866, 249802, 116939, 69506, 328474, 189466, 1097602, 1101977, 140804, 325292, 203390, 298550, 30860, 143293, 192894, 283154, 551309, 65038, 448630, 459280, 757275, 116820, 128772, 432653, 550565, 573954, 37952, 706950, 492853, 451406, 571103, 699510, 418353, 441409, 438286, 533105, 689851, 694561, 405660, 163860, 559507, 464860, 583234, 392393, 431602, 298940, 560673, 709342, 409854, 398447, 633399, 193581, 559198, 613852, 390484, 656250, 407131, 742822, 606944, 1097508, 433691, 701335, 217246, 455776, 723144, 409143, 444790, 408765, 515335, 758074, 483795, 591898, 468762, 462301, 580411, 1097469, 450921, 632394, 1097461, 557157, 406576, 543849, 60677, 1097448, 663006, 129229, 539957, 615383, 152598, 1097438, 448976, 756949, 719411, 562827, 70709, 575616, 387848, 539601, 463373, 724872, 483521, 257885, 566335, 523621, 466640, 704236, 619087, 1097386, 184105, 1097373, 180902, 675320, 643572, 709560, 1097359, 593732, 453220, 696404, 463443, 591940, 577813, 558263, 442525, 610940, 167229, 433220, 704072, 1097317, 732631, 340712, 755040, 454018, 1097314, 569674, 172062, 587524, 372070, 419692, 1097304, 1097298, 471705, 503381, 400696, 731759, 666694, 456016, 701390, 559959, 699873, 704398, 743046, 717845, 499904, 463133, 455659, 610056, 398258, 669979, 487279, 736347, 653041, 459948, 417040, 400692, 740762, 738165, 556489, 571954, 167994, 648877, 592495, 735387, 1097242, 703268, 480932, 1097236, 6217, 741392, 602957, 528760, 1097223, 412352, 709936, 616045, 437914, 732618, 715189, 189115, 1097213, 446834, 392936, 515317, 710297, 426442, 718444, 565696, 1097195, 587674, 495680, 510867, 679390, 588829, 432874, 470611, 424092, 753479, 412597, 406181, 632825, 417404, 674702, 15063, 496276, 1097154, 687632, 147542, 511101, 523952, 489513, 685091, 565868, 594930, 1097135, 735895, 548254, 748997, 627085, 695238, 1097119, 422624, 1097118, 519145, 395038, 592192, 1097100, 608557, 1097093, 611152, 742667, 1097087, 423608, 448975, 514767, 727551, 1097066, 678176, 432602, 606117, 27743, 694063, 1097040, 485287, 610898, 637208, 517245, 648119, 1097027, 39360, 537526, 1097023, 707670, 1097014, 261098, 517117, 604673, 19940, 1096998, 479284, 646354, 691141, 73788, 601624, 330560, 568841, 594831, 1096964, 442673, 703211, 138640, 457622, 1096958, 750487, 459481, 558448, 189312, 755465, 733422, 404713, 663820, 1096947, 1096945, 418063, 507381, 1096944, 688739, 436844, 605169, 428113, 48417, 745559, 716641, 469873, 509907, 263889, 727837, 54843, 407102, 420304, 634583, 1096911, 416846, 655057, 512405, 568649, 478359, 653187, 445494, 559018, 91345, 690010, 754191, 476807, 112318, 708904, 1096887, 1096886, 467597, 592601, 585344, 679360, 757644, 415500, 635058, 474873, 622100, 685177, 299023, 333700, 427086, 1096870, 580313, 256783, 733186, 747345, 1096866, 684977, 387864, 488676, 575268, 613318, 570068, 147166, 1096850, 747720, 711682, 643561, 1096840, 497132, 1096830, 290779, 1096827, 256192, 635237, 691507, 1096823, 402417, 636853, 469535, 639163, 581521, 751778, 386653, 424509, 454258, 554511, 453270, 586916, 478827, 1096787, 656371, 477648, 649640, 1096776, 365044, 585680, 524722, 685591, 497360, 489374, 568895, 682105, 476483, 634126, 413040, 735343, 433549, 1288, 494730, 659929, 1096742, 696217, 417362, 739599, 710755, 669444, 117683, 633350, 131768, 337864, 495082, 1096712, 686290, 590861, 477380, 415165, 521402, 541135, 389258, 711803, 589564, 497596, 759503, 480064, 461491, 596088, 466774, 406974, 714672, 1096667, 680514, 635125, 1096658, 1096656, 589777, 424449, 645024, 456305, 399364, 1096644, 724947, 1096641, 494086, 626232, 277977, 372378, 1096628, 550331, 303045, 288702, 645604, 539648, 1096620, 503674, 1096610, 1096607, 641156, 505107, 505810, 626462, 397090, 464484, 484551, 617611, 587326, 670142, 243244, 208265, 455862, 666792, 665972, 670022, 660534, 753168, 517386, 470982, 745944, 590945, 422501, 1096557, 642352, 477639, 1096551, 669046, 412982, 399617, 534941, 497470, 1096543, 576822, 745746, 635647, 1096533, 1096532, 647949, 417080, 582146, 1096527, 613233, 524332, 615457, 637234, 567159, 576851, 547301, 456551, 156215, 148761, 168787, 693152, 142782, 1096509, 245921, 75717, 573157, 560245, 718112, 2, 649763, 555850, 18840, 627513, 1101871, 607374, 753517, 54040, 1096479, 1101870, 1096476, 1096475, 84778, 440098, 42361, 567714, 435794, 453869, 482808, 473492, 1101868, 1096457, 464440, 1096454, 453705, 65584, 620992, 556976, 694560, 407869, 484454, 1096431, 1096429, 667373, 527568, 595577, 461601, 693736, 231482, 443081, 282214, 747937, 467683, 551119, 450093, 696918, 540906, 575492, 588888, 687375, 479570, 708781, 578100, 198581, 441128, 748054, 329515, 560059, 1101861, 686469, 731886, 227968, 405867, 1096376, 1096375, 406205, 507086, 97766, 539278, 511367, 1096368, 490505, 458885, 1096360, 273014, 482412, 613694, 660999, 342450, 413079, 420934, 682025, 627323, 82100, 371420, 592672, 493508, 626701, 640232, 638503, 724579, 437165, 352236, 719488, 274981, 547018, 433680, 731902, 412340, 358150, 510858, 505171, 544060, 453451, 632625, 405090, 409207, 477309, 749955, 504306, 436249, 1096268, 448035, 530572, 1096262, 573899, 97972, 185397, 506985, 1096258, 1096257, 1096256, 610716, 19552, 436475, 1096252, 648049, 662436, 652556, 536480, 414714, 1101845, 687615, 505541, 651187, 759062, 754786, 443489, 249821, 506438, 1096207, 499568, 663679, 428773, 421145, 600350, 690606, 657204, 697780, 556248, 427323, 574944, 220761, 408563, 526331, 555558, 440362, 497757, 391481, 1096180, 601684, 585165, 586268, 368229, 734979, 466335, 667535, 504335, 677460, 509730, 115365, 418926, 693469, 427730, 375291, 649200, 614598, 478295, 674914, 659230, 88160, 722413, 261521, 1096126, 738525, 142579, 393881, 574317, 408739, 481961, 397592, 614409, 525660, 463635, 171776, 632536, 630905, 573452, 473319, 605363, 746055, 697983, 403361, 406525, 510444, 755459, 1096087, 669800, 739671, 534305, 695993, 496175, 722981, 288200, 1096065, 744764, 680951, 548099, 588122, 409887, 433685, 593541, 464663, 569939, 434369, 1096049, 758901, 669288, 59204, 1096045, 650076, 1096044, 513061, 66161, 116517, 663950, 384985, 658498, 1096025, 596716, 231109, 561448, 649110, 745402, 743696, 76283, 570979, 544123, 646179, 434462, 160735, 735384, 442593, 225499, 722515, 656859, 566946, 413905, 724121, 1101822, 682365, 1095994, 77424, 714678, 221664, 93234, 1095988, 625022, 652912, 97612, 609104, 1095982, 478220, 575096, 417902, 458110, 1095971, 692955, 422600, 583766, 639560, 624876, 425688, 523062, 1095955, 718782, 456734, 597384, 578783, 460162, 750946, 308032, 671692, 1095942, 556476, 409557, 273449, 358240, 418423, 485558, 392501, 486370, 75698, 738162, 586740, 1095928, 676454, 641284, 123859, 601629, 646623, 1095921, 758720, 548673, 641618, 29416, 528841, 277556, 467612, 437671, 739913, 530611, 503401, 290830, 749267, 1095881, 151547, 547089, 192502, 1095876, 1095874, 540432, 607338, 739743, 1095868, 699872, 599550, 687245, 438455, 1095864, 472448, 543813, 570905, 619159, 282411, 595568, 1095857, 445094, 582557, 595236, 148777, 681264, 1095845, 1101806, 242107, 289276, 732448, 423178, 508316, 483178, 481297, 156889, 525534, 40337, 159078, 153981, 425505, 481387, 266920, 1095807, 1095806, 173391, 451609, 574547, 1095798, 392195, 544319, 742988, 552868, 435412, 163038, 447340, 585378, 272815, 172608, 740624, 129205, 436602, 733510, 507087, 508855, 1095749, 299732, 108037, 662524, 730278, 405036, 59392, 717563, 117113, 1095725, 649893, 522076, 420400, 1095716, 393268, 1095711, 426214, 1095704, 418165, 662016, 1095699, 510229, 575146, 758909, 249618, 645252, 1095687, 249866, 408427, 470001, 77323, 624176, 472359, 75266, 633916, 556166, 551819, 754509, 679658, 625205, 574051, 586790, 1095654, 505152, 537410, 636949, 1095650, 524447, 546956, 444350, 593135, 630318, 688644, 1095641, 581975, 681791, 682626, 1095631, 436924, 683045, 639412, 164282, 149801, 70720, 510158, 108507, 744109, 754166, 389385, 458771, 192579, 583916, 665009, 440802, 422955, 608197, 461078, 393462, 47716, 506579, 576312, 431481, 748771, 711710, 1095571, 1095566, 449244, 426504, 420980, 641293, 1095560, 94953, 1095558, 436100, 727707, 1095555, 148424, 321239, 664138, 647876, 280223, 1095542, 658372, 1095537, 717751, 4947, 399527, 605467, 555590, 581801, 237936, 1095495, 535142, 448123, 634113, 593275, 119761, 177221, 547820, 420867, 1095478, 404202, 415962, 1095469, 384845, 458774, 663131, 459707, 569689, 412532, 437752, 744092, 660479, 8714, 663890, 736713, 153037, 414799, 1095437, 451070, 760367, 556307, 275997, 453175, 22670, 415815, 632106, 138793, 443027, 660803, 124787, 407662, 536995, 670476, 32176, 755907, 474234, 706342, 438058, 511330, 583369, 508104, 682190, 638928, 199776, 403793, 663388, 423878, 413404, 662282, 652961, 451484, 414155, 275528, 734198, 263670, 635079, 604153, 667136, 1095377, 743868, 567759, 1095371, 470385, 728060, 577511, 476977, 568585, 1095360, 1095357, 1095354, 625458, 138127, 507434, 637459, 607599, 758519, 698719, 635626, 450854, 1095335, 704223, 1095332, 428819, 436847, 685717, 682205, 644023, 496717, 686260, 754113, 750421, 647687, 630391, 14963, 436091, 275137, 594793, 1101761, 673984, 1095306, 83621, 659182, 401287, 466738, 1095278, 115930, 455782, 562821, 741977, 660957, 701345, 450851, 635044, 611199, 588627, 302435, 488825, 278542, 476947, 741274, 530602, 737940, 584500, 1095233, 591993, 520627, 43781, 437324, 540306, 700835, 653054, 584727, 146812, 619675, 670829, 604628, 701663, 478054, 490883, 327750, 203458, 700641, 661398, 571237, 592220, 680490, 497536, 2235, 703270, 741970, 37685, 1095165, 194750, 521801, 392488, 749752, 1095155, 584905, 388950, 274175, 730229, 334558, 752473, 746065, 532142, 578607, 522953, 422609, 130825, 471007, 469819, 711811, 449235, 607855, 733591, 302878, 1095126, 1095121, 510018, 570725, 129517, 1095108, 624644, 563652, 677212, 729697, 155086, 466162, 691055, 127098, 77878, 425330, 710914, 690801, 562594, 1101739, 1095066, 418552, 478981, 728460, 430142, 1095055, 604229, 117036, 450681, 731723, 572517, 677672, 321363, 432680, 733692, 667932, 418977, 672429, 726076, 1095012, 278429, 438324, 188134, 387662, 570070, 136157, 1094999, 461281, 1094996, 402427, 391125, 589903, 703383, 633986, 708739, 61623, 1094982, 549738, 587853, 703765, 516029, 759038, 686541, 705681, 1094962, 392350, 329369, 450788, 640103, 430229, 245120, 563347, 597395, 617795, 727224, 748672, 752700, 707513, 672109, 624503, 734426, 612471, 657264, 526984, 543251, 459291, 563943, 728823, 753299, 433579, 583798, 449442, 647503, 622725, 503580, 743675, 580450, 745469, 656376, 589586, 388588, 525868, 174592, 526671, 614047, 393203, 1101723, 1094869, 672433, 276979, 693101, 738484, 535599, 507934, 592235, 466252, 420365, 514851, 742022, 691004, 760512, 212796, 1094840, 748321, 577131, 689885, 617968, 490802, 1094825, 455743, 632726, 603031, 541425, 453856, 661076, 604113, 702792, 722352, 547139, 704080, 694678, 603773, 138266, 582641, 1101714, 584569, 455456, 559009, 711840, 565231, 528117, 729672, 129792, 684459, 626005, 689700, 632923, 1094759, 560419, 574569, 112477, 549135, 1094755, 208610, 421813, 688218, 466202, 714709, 345350, 458235, 724571, 608323, 1094724, 633635, 430985, 559709, 398335, 574002, 712832, 750821, 681514, 607292, 467274, 1101706, 639545, 1094691, 521018, 659247, 1094689, 632055, 516413, 338696, 334867, 518940, 495018, 472024, 261683, 559607, 422893, 622658, 178859, 320051, 743708, 496244, 740876, 421437, 211468, 503390, 612846, 153048, 124128, 1094634, 455273, 92509, 612670, 478691, 576195, 93823, 737512, 243712, 453851, 439375, 728150, 1094612, 73853, 611271, 1094605, 624143, 726098, 567452, 541948, 698445, 671219, 740416, 94782, 250228, 1094578, 210442, 601128, 462979, 411953, 6791, 471983, 1094566, 475402, 231717, 642032, 657091, 679167, 102695, 645343, 1094536, 175251, 498478, 677936, 537825, 549235, 396391, 1094519, 711759, 488345, 549219, 1094501, 721885, 555750, 456443, 568526, 1094477, 708517, 25603, 709559, 191792, 1094469, 391101, 1576, 170982, 753214, 1094460, 341317, 1094453, 693636, 481341, 504044, 489858, 556217, 406923, 430989, 413858, 402318, 633153, 231298, 538333, 618408, 249118, 567630, 393954, 628056, 645892, 1102351, 647260, 1094395, 1094394, 1094389, 537761, 331352, 419326, 425375, 598802, 506181, 248086, 559771, 638849, 744891, 560357, 1094370, 445714, 1094369, 571696, 425072, 473935, 1094364, 602352, 1094361, 635497, 563995, 21741, 419333, 693162, 730626, 593792, 482666, 1101674, 96250, 733892, 409071, 1094316, 223165, 387603, 26207, 680373, 452200, 644658, 384406, 468907, 137440, 540983, 494346, 412319, 171527, 635150, 438316, 623857, 402075, 614069, 285729, 634412, 1101670, 669427, 616447, 65000, 609799, 266760, 146212, 161418, 1101668, 1094271, 454872, 714636, 99556, 631724, 21948, 515813, 409694, 88375, 563359, 602652, 574730, 281704, 543951, 242019, 743693, 445908, 584592, 621419, 24441, 403388, 551860, 124534, 486274, 138223, 524166, 673143, 1094220, 715508, 1094215, 522151, 404051, 394021, 416228, 393420, 563771, 670600, 1094197, 1101661, 1094191, 281702, 649451, 583611, 473394, 408945, 470459, 1094175, 414276, 705279, 623281, 489931, 545450, 694845, 531142, 564707, 753480, 628085, 1094141, 448183, 568709, 614186, 230891, 725047, 700224, 521851, 707721, 715588, 524699, 517516, 543644, 1094110, 702790, 447551, 647872, 760070, 525467, 473886, 1094085, 1094081, 674595, 649294, 591026, 537301, 261650, 509111, 405985, 1094062, 1094056, 427340, 457809, 34015, 639084, 455853, 680250, 544308, 424898, 572286, 426347, 199442, 144254, 82161, 565915, 1094027, 449750, 683193, 728110, 576452, 525779, 610425, 605651, 720013, 582848, 503607, 690508, 1093971, 155056, 483241, 64528, 541969, 1093966, 536791, 86203, 1093962, 527769, 1093959, 609956, 549342, 577167, 731736, 700618, 1093941, 284313, 22479, 507221, 405310, 1093927, 1093926, 571474, 100013, 609628, 690705, 713134, 712545, 604954, 499413, 541274, 479525, 106125, 480504, 400311, 50891, 610190, 1093881, 599524, 457714, 605648, 535421, 487569, 591310, 555458, 4696, 525047, 1093855, 744261, 54199, 536654, 653092, 558548, 961921, 978802, 982481, 775343, 138629, 841165, 841020, 846513, 786021, 1066043, 1093791, 939473, 1058978, 858421, 1093786, 345453, 330450, 821372, 855968, 160671, 1093781, 1036002, 783963, 1093773, 1003445, 315131, 841961, 912898, 771694, 961950, 772928, 776465, 991240, 772055, 917334, 1093750, 853057, 787784, 1041473, 1093732, 783277, 792900, 1093723, 65488, 148564, 792742, 29612, 1093717, 212977, 989855, 936273, 987486, 1019470, 884870, 1005191, 998941, 952378, 95286, 258337, 783433, 1020915, 931905, 808716, 1053111, 1093698, 900924, 1057251, 875787, 907997, 976829, 234114, 888100, 865616, 58130, 789439, 1093682, 763878, 790059, 338637, 810242, 808362, 925571, 944700, 170770, 1011860, 815015, 25025, 930326, 1028131, 1093650, 778890, 978057, 1005520, 900731, 1093637, 960397, 862742, 25534, 1093621, 831601, 900076, 981400, 995176, 852037, 1036542, 971233, 914321, 921173, 942221, 944181, 983708, 804197, 988269, 791629, 804905, 831560, 849561, 913509, 1093570, 230725, 831315, 1037407, 837181, 1011811, 1076078, 303934, 959228, 1093556, 869827, 1093552, 783602, 849337, 1011721, 976941, 950799, 863623, 1031240, 1024034, 812734, 1093540, 1078198, 1093534, 773155, 898714, 1023850, 227317, 825954, 1093507, 956993, 202081, 49435, 884878, 1078731, 780336, 893681, 868598, 1038755, 357340, 1093487, 1093481, 968560, 934235, 1051886, 376537, 906901, 860266, 778139, 831474, 853344, 1093443, 241246, 1093438, 822859, 53897, 884722, 140161, 66908, 992618, 762111, 991138, 64960, 981006, 830040, 944231, 948397, 925951, 835478, 1073972, 147337, 1093419, 800792, 790536, 1093410, 800318, 899869, 1093406, 1081569, 244092, 1093399, 831030, 877810, 798284, 837375, 166748, 1016406, 270140, 893271, 148851, 171370, 897476, 1027669, 848478, 329114, 1093359, 959083, 865426, 947678, 1003114, 856171, 779553, 773998, 1093349, 988988, 939104, 927553, 881695, 1035228, 954455, 778948, 881582, 1093322, 1003329, 904295, 373209, 971633, 132639, 1093312, 952388, 1093305, 767745, 845888, 869035, 1004940, 1017734, 931147, 989994, 792463, 789332, 850919, 950139, 1101576, 942651, 779475, 1004199, 934223, 1093255, 1011529, 1033703, 804103, 827791, 903811, 813675, 1009109, 1093238, 776122, 1093235, 176744, 1101566, 1093231, 894610, 873250, 1026098, 948452, 224314, 1039195, 891082, 917489, 321918, 859274, 972699, 944245, 983438, 109647, 1093202, 1046952, 1093200, 1093196, 793475, 844390, 1093181, 1093179, 1057476, 129228, 1093172, 960265, 254652, 80712, 809933, 971213, 803306, 1048565, 839878, 946428, 766769, 910818, 339934, 1093142, 1022577, 1093128, 831962, 788851, 872347, 796056, 130034, 1093112, 971653, 788702, 803599, 1093104, 827801, 786857, 777297, 206806, 989108, 1093096, 74328, 1101552, 1093094, 42568, 866101, 820267, 362016, 262280, 1046648, 155041, 841521, 1093064, 840061, 965578, 1093042, 1061994, 983499, 810680, 1093038, 879869, 1093031, 839528, 861169, 818819, 914637, 975775, 1101535, 958311, 957607, 1093006, 28352, 1070412, 870348, 338917, 800987, 895263, 1092996, 977770, 820973, 61531, 134239, 855546, 892454, 57270, 890532, 875796, 979133, 1010537, 994112, 1092984, 778857, 1101531, 941865, 1029016, 1092978, 824000, 22231, 1037104, 924895, 368728, 1092952, 908154, 762652, 862345, 920717, 943190, 862856, 10264, 978605, 242863, 1092930, 872081, 853882, 1010277, 1092919, 778095, 1092911, 822937, 91722, 837681, 161828, 987660, 837202, 810324, 283344, 889104, 25294, 839128, 782549, 1056548, 794469, 779674, 903479, 934964, 1092865, 1005163, 919913, 1092863, 761096, 1018525, 991894, 1021907, 944194, 1092858, 1037826, 109819, 993234, 1059820, 819618, 1024312, 1092832, 1092822, 2798, 166403, 893275, 766272, 809556, 359040, 801907, 348136, 1092796, 776080, 878959, 1092792, 991590, 1092791, 874914, 993107, 839137, 809798, 904007, 948797, 795991, 999555, 817349, 96602, 979054, 70504, 980633, 960437, 783687, 782696, 809909, 1092759, 1092757, 786009, 1092756, 341736, 930483, 783098, 1040684, 855050, 956403, 881723, 856568, 1033912, 994918, 1092738, 823203, 1072506, 1075156, 929046, 953351, 1092724, 1003006, 69871, 111377, 968608, 791223, 865518, 1092715, 789037, 866251, 1079868, 897789, 922398, 844211, 846082, 952452, 922335, 869348, 992652, 967106, 926019, 985644, 902657, 880527, 1092665, 766804, 950355, 1063177, 1101503, 190601, 924398, 1078920, 1092643, 300246, 762558, 999028, 885153, 924567, 837467, 850957, 913579, 272605, 891565, 935358, 63548, 884533, 1092605, 144285, 278606, 1078187, 260853, 1060616, 1038592, 780613, 1026372, 941219, 969750, 913568, 1052717, 887395, 1023363, 1092557, 1092551, 354222, 320025, 807880, 869759, 1092543, 960302, 1043702, 1092528, 943170, 72485, 888988, 1092522, 1092517, 944451, 1043413, 908069, 1040353, 320970, 823549, 1003875, 885081, 796812, 1092484, 937427, 984499, 196720, 915769, 1092482, 974808, 998381, 1050007, 792688, 1102335, 333579, 1092474, 885308, 842223, 1092470, 322345, 999637, 865476, 135464, 1031456, 896931, 914707, 915762, 1044041, 1092450, 167371, 820161, 1028742, 1078491, 1092441, 766238, 894161, 885986, 859669, 1069556, 862640, 962731, 370316, 897981, 1050747, 1092422, 914406, 1092417, 860655, 1092416, 970152, 1005678, 339501, 882002, 1028652, 1092394, 891498, 909048, 1092391, 255633, 1017348, 782426, 782079, 865971, 160808, 767248, 910150, 875986, 999261, 945535, 990197, 1092348, 1039361, 952658, 1050253, 78418, 991064, 914368, 1038685, 900450, 990481, 1025348, 914771, 814282, 850820, 905707, 1092327, 840532, 212303, 823596, 762761, 1058165, 999610, 1092311, 1040507, 877453, 998093, 979787, 872632, 975997, 789292, 1039346, 1079785, 886332, 116431, 303790, 984434, 1071722, 928753, 796383, 860942, 940386, 1064518, 1092263, 170581, 1092258, 267566, 1092257, 73106, 909547, 1000097, 952445, 854085, 995825, 951820, 882141, 1028555, 1092238, 297019, 69789, 1092237, 1092236, 1024599, 1065448, 1057270, 953274, 801059, 814699, 1025188, 1033580, 1080419, 128178, 760817, 1101466, 995443, 863187, 902919, 877845, 1092203, 770167, 1049200, 879747, 912961, 808528, 991241, 935952, 1092176, 916901, 930293, 83458, 1092168, 1073721, 878840, 1092165, 776609, 1092161, 855725, 798945, 1058425, 1092143, 1031999, 1062457, 761388, 846806, 72809, 922389, 948351, 1056950, 1039495, 1003334, 990010, 908316, 889289, 47270, 777519, 1070728, 1092120, 917536, 1057446, 849596, 997533, 805900, 822649, 840445, 996653, 1071270, 931940, 828596, 1092095, 889046, 1092093, 937578, 1014911, 975495, 813953, 828779, 908237, 156723, 887392, 1101448, 926980, 947974, 868487, 911605, 900696, 1007875, 900062, 831784, 259763, 801478, 54307, 783781, 1040461, 1092042, 760908, 838453, 977952, 1052948, 849245, 820899, 1019830, 1101443, 887398, 1042399, 1092029, 788431, 992340, 839488, 1092023, 26079, 845790, 73119, 187818, 224548, 1102330, 1092007, 786937, 907127, 930621, 776517, 847726, 17586, 1021554, 792847, 776700, 907538, 806688, 798883, 786375, 1091983, 1001108, 899212, 1091973, 143849, 942354, 842272, 935707, 1001381, 813899, 874876, 257018, 1043587, 989647, 157580, 155700, 1091941, 848432, 893789, 890890, 119089, 775355, 114573, 880766, 924047, 860573, 102627, 825147, 989099, 1011003, 1075713, 782381, 824542, 960566, 990784, 1076030, 860078, 874299, 810660, 1057488, 1059646, 1091850, 1014115, 794625, 780993, 1059619, 854862, 1091833, 931772, 1066116, 200062, 922024, 974670, 885433, 825583, 962443, 870544, 769630, 800652, 900599, 803237, 846291, 815243, 244011, 1079141, 829425, 936182, 98847, 927989, 189174, 785176, 1065118, 841919, 906126, 775457, 1091765, 1006922, 991419, 1046750, 1048876, 351820, 947466, 287912, 963788, 830551, 766301, 986325, 1091749, 1006987, 771314, 842070, 1052421, 994941, 842596, 837740, 115833, 963564, 982348, 830531, 1062603, 1056482, 1005500, 773858, 1021241, 59084, 1091719, 822585, 765147, 802634, 987657, 1042676, 1091692, 868410, 1091690, 214771, 1091688, 810210, 849142, 1091681, 803861, 874691, 888777, 1048995, 372674, 842221, 1091667, 909273, 1091665, 913286, 761032, 1056850, 1091661, 1091659, 1091654, 898686, 1065032, 938066, 985653, 896383, 1091643, 928567, 837372, 1091633, 824920, 1091630, 824938, 1031118, 873914, 987720, 935364, 1037341, 1044755, 1004493, 800243, 1091595, 859229, 771170, 1091576, 770604, 1091569, 897240, 58234, 891719, 955117, 918324, 1024950, 905479, 196963, 864507, 933946, 964577, 852179, 128633, 842333, 989644, 1014697, 161117, 834848, 1091529, 7968, 1015766, 257335, 1029681, 145569, 1091522, 818842, 1091520, 831302, 1091513, 900164, 1010700, 900077, 245416, 1032011, 908489, 850555, 810270, 948532, 832508, 868184, 813605, 939020, 964152, 911056, 251172, 920885, 995029, 991598, 988149, 1051095, 1049368, 1074499, 1091471, 764139, 970242, 831871, 1091467, 770233, 1091461, 873886, 1047088, 1063709, 955093, 784549, 902855, 1091450, 970824, 940916, 912899, 780297, 991383, 988294, 792977, 998482, 860071, 984930, 77391, 75335, 866428, 1091421, 853646, 1015556, 772129, 47588, 1021446, 932878, 859376, 980789, 1102325, 937947, 143025, 872869, 1080968, 968004, 1091384, 765583, 1042488, 806574, 886382, 921348, 836832, 808235, 882982, 1073980, 853471, 180693, 1091360, 1038871, 960003, 1049221, 1033759, 903097, 1010607, 1091340, 785721, 1091337, 957688, 1040694, 194724, 1009959, 1091330, 788035, 46081, 1058100, 301061, 973917, 1038849, 969264, 953355, 860542, 175625, 802794, 194870, 888911, 1057168, 1101374, 995526, 1016869, 1047592, 298444, 1051990, 985905, 1091269, 830649, 850450, 870875, 357519, 1091264, 1023838, 855031, 958993, 1091255, 795951, 939744, 954711, 200600, 851490, 1063659, 932495, 994582, 1091246, 236708, 1091234, 238886, 804687, 149670, 897401, 812190, 842108, 1045203, 868919, 1041714, 1060305, 968310, 1009668, 1036800, 860462, 1091206, 164946, 769085, 904727, 844128, 1059442, 1091194, 155119, 864905, 1091189, 97964, 798469, 761963, 326410, 1016703, 1059801, 1091177, 970830, 786674, 16860, 1091173, 1091163, 888796, 909506, 1091158, 991938, 905766, 794319, 795540, 829025, 952520, 909176, 872655, 783843, 1003997, 1050670, 1016790, 1080495, 956624, 1017892, 815320, 1013367, 1091115, 1091112, 811852, 1091108, 913137, 1057757, 831380, 929473, 921812, 1079434, 1021679, 822642, 248385, 946747, 1091082, 51054, 909886, 996042, 869891, 879150, 1091068, 883861, 925059, 1058822, 790178, 781877, 1091059, 1081321, 1049867, 993876, 91790, 131925, 855029, 907173, 1058717, 828093, 1091048, 898631, 829050, 59190, 760930, 865660, 979713, 36388, 1068408, 1036999, 984075, 1022762, 918424, 969974, 843140, 768133, 941749, 879155, 798253, 980726, 832188, 1091015, 999897, 878367, 1032074, 783822, 845719, 764691, 904389, 926064, 910375, 70787, 1090987, 792187, 863817, 1070867, 980168, 909221, 203274, 885184, 763084, 994311, 25036, 1101341, 1090965, 84520, 952047, 854785, 863738, 808200, 818612, 935362, 980811, 919712, 1027785, 999641, 846438, 772864, 948829, 989543, 1090924, 888559, 804996, 995654, 993544, 969066, 220495, 1090910, 992729, 787255, 1015055, 938773, 286915, 942915, 1067990, 1090887, 1090886, 917022, 826518, 847415, 874455, 193422, 804523, 1090877, 780850, 958142, 953332, 988960, 885505, 969023, 1053997, 1068924, 1090869, 946825, 993419, 788484, 1090861, 972064, 829087, 1080537, 786477, 1065985, 773924, 1090842, 1090841, 1077000, 1090838, 1090833, 1001981, 865384, 810394, 355458, 311540, 867947, 93311, 858391, 1090808, 917015, 1025895, 885301, 791140, 1071061, 1090796, 822218, 820027, 1090791, 833507, 995789, 1090789, 153739, 156052, 1049767, 1090758, 789997, 792789, 857943, 49943, 1027865, 905604, 931726, 278658, 1090742, 784961, 993501, 818421, 851813, 1090730, 135079, 775297, 1090727, 995212, 888934, 815891, 961048, 818798, 97652, 1078752, 878817, 833268, 1090701, 1090700, 867490, 898318, 323592, 938359, 843409, 875417, 1064155, 996317, 816483, 348994, 823421, 798967, 149767, 240489, 28442, 205741, 240584, 62411, 264284, 138492, 186727, 38608, 144028, 275534, 54235, 135633, 236582, 348594, 58409, 1090624, 358455, 42555, 1090613, 26485, 55848, 113826, 126821, 60339, 375891, 1090596, 184916, 247717, 50833, 168175, 340006, 326190, 99461, 84473, 166625, 38098, 128158, 197542, 108287, 153588, 156688, 1090558, 227992, 75801, 1090550, 326637, 194430, 1090542, 1090540, 1090537, 1090530, 59426, 1101300, 165335, 176065, 166784, 53109, 49234, 1090513, 174344, 370979, 1101298, 166111, 72435, 260172, 59030, 243139, 79763, 156251, 291396, 186265, 169305, 307504, 355484, 137508, 186063, 1101296, 289586, 277737, 249176, 344955, 1090458, 81649, 203039, 56188, 35996, 36703, 44686, 25344, 121017, 72398, 129491, 30039, 148016, 1090413, 57411, 54819, 57258, 199837, 300306, 1090400, 1090399, 149161, 215603, 165135, 59654, 296441, 160312, 149221, 1090377, 100661, 196250, 206762, 283141, 111995, 55682, 1090358, 1090352, 1090350, 81945, 188714, 291248, 205251, 305650, 100250, 1090329, 82842, 288139, 180887, 88831, 171906, 1090311, 290091, 1101282, 326719, 147073, 243761, 162662, 247194, 195199], + 'msmarco-doc-test': [355339, 1035339, 943613, 1051868, 876108, 770613, 84901, 928755, 895787, 920435, 1009016, 923221, 1126106, 988661, 975821, 154441, 802079, 184355, 938754, 1008125, 794144, 51577, 1126090, 1073795, 767703, 937603, 876154, 853437, 275951, 773040, 813841, 1135894, 117487, 927093, 1126069, 804764, 832389, 1126064, 808540, 963267, 909560, 334918, 1010426, 955087, 886048, 767404, 898402, 849376, 970577, 7869, 1126035, 889718, 82412, 809339, 68610, 891083, 346202, 835783, 1024923, 973416, 67937, 1019366, 857232, 989398, 787957, 889757, 907576, 1037969, 957990, 1037871, 1073093, 848496, 147746, 960571, 932412, 993677, 997024, 800980, 927899, 1053885, 1018475, 943566, 929863, 1079280, 943913, 839899, 128604, 1061763, 809683, 1036759, 798642, 57068, 977156, 1125956, 913435, 1125954, 60634, 276099, 913041, 993117, 789981, 941780, 1125930, 904849, 1125924, 1024250, 128322, 1125920, 1125919, 845751, 943412, 1056425, 978017, 796563, 53330, 1054994, 794701, 990049, 305251, 1074350, 773878, 1135875, 855288, 952866, 792115, 848431, 996851, 1056576, 1031850, 1035354, 1125864, 271481, 936261, 789305, 1416, 842609, 900690, 793245, 983196, 816456, 851318, 899008, 811001, 903976, 1125841, 902410, 931576, 959564, 955763, 1125829, 1013640, 65752, 828649, 992308, 105367, 1054386, 1125820, 58374, 763534, 957181, 823034, 858790, 28453, 984702, 8234, 871720, 778062, 1079501, 1008523, 188803, 761705, 1006025, 991361, 803911, 1125782, 982127, 812148, 34925, 965627, 1001465, 168906, 1125763, 1070541, 203578, 788201, 1032694, 903643, 822527, 810947, 323665, 909052, 912272, 902935, 1125745, 980205, 880930, 950222, 1011337, 803862, 1046316, 1056710, 816915, 996237, 968847, 1135859, 912165, 1125706, 1074076, 944345, 301180, 966925, 784039, 1125694, 971998, 76945, 1125690, 1125688, 779295, 905638, 875806, 1125684, 54659, 1125680, 1008285, 1135856, 898753, 20530, 1003074, 875793, 341529, 841979, 1056910, 857280, 792006, 23822, 842753, 1043433, 128291, 1125651, 1026391, 869721, 1074859, 997654, 1125645, 972896, 839707, 318781, 1050274, 1019841, 1125633, 855922, 886682, 1033989, 1125628, 275173, 765070, 1125626, 230103, 796808, 280245, 851807, 790280, 1077110, 1019506, 1048410, 1029806, 1125599, 124943, 824765, 906203, 1125596, 198905, 166606, 1125592, 1125591, 1125590, 1010376, 1125587, 965313, 1125583, 803296, 1000865, 1135848, 1019720, 928128, 991278, 991583, 128365, 788278, 863720, 769008, 1018290, 1125559, 760825, 122724, 261830, 1125556, 1125555, 842923, 775366, 900867, 989196, 1030770, 767991, 882803, 1005440, 841671, 943638, 1060768, 864153, 806779, 819755, 799323, 1003747, 253837, 893530, 859732, 921193, 1066463, 1125519, 902014, 939096, 946406, 1125510, 24480, 798003, 1135841, 1125495, 368106, 853522, 204701, 928453, 924975, 854766, 814340, 886243, 1059906, 1125481, 1078827, 989869, 1073638, 837433, 962187, 1036844, 983787, 861435, 18793, 311494, 1125459, 1125455, 1064450, 947416, 809209, 972396, 306216, 1125443, 931357, 790199, 132469, 1044869, 836655, 881324, 885159, 949501, 1058138, 340540, 1076490, 909115, 919673, 1125409, 1125406, 1023476, 971528, 1076183, 840845, 994762, 1125395, 980406, 1125394, 204957, 354123, 775487, 762865, 808343, 788151, 964554, 1067743, 836007, 840770, 825151, 871767, 222861, 299781, 153374, 1125352, 219844, 208394, 261661, 355519, 146170, 1125347, 180979, 220352, 153239, 323874, 175228, 61240, 49429, 121109, 165037, 282280, 336011, 121113, 171824, 116659, 9904, 9975, 282050, 233856, 78181, 1135818, 199508, 57774, 224261, 206738, 228769, 1125306, 21227, 141078, 1125292, 190377, 184333, 297682, 130610, 1125273, 1125272, 68896, 96597, 202664, 128757, 307758, 278239, 1125260, 334263, 303070, 1125251, 145104, 208344, 236824, 1125245, 77398, 84713, 24841, 110736, 1125238, 148515, 319235, 50800, 1125227, 300375, 310642, 281106, 307403, 190070, 161474, 136578, 189365, 20440, 14448, 249267, 28862, 1125194, 60902, 204851, 17077, 336236, 161434, 112638, 282352, 21075, 341207, 156479, 1125153, 329704, 261295, 114048, 213365, 374724, 340145, 122049, 92622, 314064, 247025, 168854, 11304, 233178, 76591, 157744, 31548, 1125111, 150926, 92713, 276665, 150029, 178677, 194563, 237689, 378218, 1125086, 324242, 235280, 105183, 1125079, 1135796, 24280, 1125075, 79457, 88200, 174034, 130306, 139285, 111573, 102366, 198015, 158054, 205433, 91055, 343439, 275968, 254923, 23367, 12166, 1125041, 115254, 28653, 300384, 184640, 219898, 50782, 84257, 1136966, 281922, 319757, 313747, 81842, 37122, 23986, 1125015, 231134, 1125013, 179395, 158569, 176276, 275413, 120398, 55454, 253834, 118372, 1124998, 323294, 305205, 85798, 143889, 230878, 1124990, 1124989, 121025, 49984, 118151, 1124982, 276525, 180091, 307344, 186484, 82578, 246327, 53422, 96443, 255889, 1124958, 87592, 1124957, 144952, 1124953, 144498, 1135780, 52199, 285049, 198444, 302038, 122795, 122298, 235309, 360650, 60301, 59722, 25398, 202245, 1124926, 130951, 1124915, 1124882, 1124872, 1124863, 1124803, 1124767, 1124753, 1124703, 1124699, 1124663, 1124621, 1124573, 1124569, 1124549, 1124542, 1124534, 1136837, 1135738, 1124531, 1124522, 1124504, 1124501, 1124480, 1135727, 1124472, 1124469, 1124462, 1124451, 1135722, 1124391, 1124388, 1124373, 1124369, 1124335, 1124324, 1124306, 1124300, 1124276, 1124251, 1124226, 1124221, 1124198, 1124194, 1124171, 1124170, 1124160, 1124159, 1124122, 1124114, 1124093, 1124090, 1124087, 1124067, 1124059, 1123997, 1136830, 1123971, 1123969, 1123968, 1123953, 1123930, 1123917, 1123915, 1123888, 1123840, 1123837, 1123822, 1123776, 1123765, 1123761, 1123721, 1123709, 1123636, 1123626, 1135625, 1123603, 1123584, 1123544, 1123492, 1123488, 1123469, 1123465, 1135606, 1135605, 1123435, 1123397, 1123383, 1123337, 1123298, 1123211, 1123209, 1123191, 1123168, 1123112, 1123103, 1123090, 1123074, 1123057, 1123055, 1123052, 1135570, 1123034, 1123028, 1135568, 1135563, 1122957, 1122936, 1122915, 1122908, 1122892, 1122859, 1135553, 1122853, 1136818, 1122792, 1122785, 1122776, 1122772, 1122760, 1122745, 1122706, 1122695, 1122690, 1122686, 1122662, 1122658, 1122652, 1122648, 1122643, 1135533, 1122610, 1122606, 1122601, 1122594, 1122593, 1122591, 1122586, 1122584, 1122569, 1135525, 1122504, 1135522, 1122501, 1122488, 1122476, 1122471, 1122446, 1122442, 1122409, 1122352, 1122348, 1122343, 1122342, 1122341, 1122336, 1122334, 1135498, 1122316, 1122306, 1122305, 1122283, 1122271, 1122267, 1122255, 1122247, 1122242, 1122237, 1122234, 1122233, 1122222, 1122220, 1122212, 1122168, 1122155, 1122087, 1122082, 1122064, 1136811, 1121993, 1121967, 1121963, 1121941, 1121931, 1121922, 1135448, 1121892, 1121875, 1121861, 1121860, 1135438, 1121830, 1121817, 1121814, 1121799, 1121794, 1121759, 1121748, 1121673, 1121667, 1121642, 1121641, 1121631, 1121618, 1121576, 1121566, 1121532, 1121523, 1121474, 1121466, 1121459, 1135397, 1135395, 1121426, 1121424, 1121412, 1121380, 1121374, 1121369, 1121333, 1121327, 1121309, 1121268, 1121260, 1121251, 1121249, 1121191, 1121167, 1121162, 1121156, 1121118, 1135362, 1121083, 1121082, 1121068, 1121050, 1121044, 1121022, 1121000, 1120994, 1120986, 1120982, 1120963, 1120945, 1120926, 1120919, 1120904, 1120891, 1120887, 1120867, 1120842, 1120835, 1120834, 1120776, 1120775, 1120773, 1120744, 1120726, 1120706, 1120689, 1120685, 1120678, 1120676, 1120672, 1120668, 1135301, 1120633, 1120621, 1120619, 1120606, 1120599, 1120576, 1120574, 1120564, 1120563, 1120559, 1120541, 1120537, 1120519, 1120515, 1120466, 1120462, 1120453, 1135280, 1120399, 1120395, 1135274, 1120391, 1120375, 1120361, 1120348, 1120328, 1120316, 1120268, 1120261, 1135262, 1120253, 1120248, 1120236, 1120189, 1120187, 1120180, 1120167, 1120089, 1120084, 1120049, 1120041, 1120019, 1120006, 1135238, 1135234, 1119953, 1119943, 1119904, 1119884, 1119872, 1119862, 1119828, 1119764, 1119744, 1119740, 1119695, 1119627, 1119620, 1119603, 1119597, 1119593, 1119531, 1119529, 1119514, 1119501, 1135190, 1119444, 1119384, 1119374, 1119355, 1119347, 1119338, 1119316, 1119307, 1119305, 1119280, 1119271, 1119259, 1119230, 1135165, 1119189, 1119179, 1119169, 1119168, 1119167, 1119132, 1119128, 1119112, 1119110, 1119097, 1119076, 1135150, 1119040, 1119038, 1119021, 1119015, 1119013, 1119006, 1135142, 1118976, 1118974, 1118954, 1118953, 1118941, 1118927, 1118926, 1118921, 1118889, 1118884, 1118879, 1118871, 1118869, 1118868, 1118820, 1118806, 1118799, 1118797, 1118793, 1118792, 1135121, 1118768, 1118759, 1118734, 1118677, 1118676, 1118671, 1118659, 1118651, 1118641, 1118627, 1135106, 1118595, 1118585, 1136771, 1135094, 1118456, 1118455, 1118435, 1118434, 1118429, 1118416, 1118388, 1135081, 1118310, 1118294, 1118293, 1118286, 1118259, 1118230, 1118229, 1118227, 1118226, 1118209, 1118199, 1135052, 1118176, 1118172, 1118169, 1118145, 1118140, 1135042, 1135039, 1118042, 1118014, 1118012, 1135028, 1117935, 1117925, 1117901, 1117875, 1117872, 1117858, 1117826, 1117798, 1117787, 1117771, 1117767, 1117765, 1136763, 1134998, 1117740, 1117725, 1117709, 1117708, 1117700, 1117691, 1117689, 1117672, 1134987, 1117650, 1117623, 1117616, 1117589, 1117584, 1117581, 1117579, 1134978, 1117566, 1117542, 1117505, 1117495, 1134967, 1117451, 1117450, 1117446, 1117405, 1117402, 1117398, 1117394, 1117375, 1117361, 1117357, 1117350, 1117343, 1117337, 1117331, 1117313, 1117307, 1117299, 1117295, 1117294, 1134949, 1117271, 1117263, 1117261, 1134945, 1117235, 1117206, 1117183, 1117182, 1117178, 1117154, 1117150, 1117148, 1134931, 1117066, 1117062, 1117055, 1117033, 1134926, 1116996, 1136756, 1116903, 1116896, 1116877, 1116871, 1116867, 1116864, 1116862, 1116846, 1116845, 1116821, 1116816, 1116776, 1116775, 1116763, 1116728, 1116706, 1116702, 1116695, 1116694, 1116663, 1116657, 1116643, 1116633, 1116612, 1116606, 1116592, 1116554, 1116553, 1116537, 1116531, 1116467, 1116452, 1116433, 1116429, 1116419, 1116402, 1134871, 1116369, 1116368, 1116353, 1116324, 1116304, 1134862, 1116301, 1116273, 1116265, 1116264, 1116260, 1116242, 1116234, 1116228, 1116221, 1134853, 1116211, 1116201, 1134850, 1116180, 1116169, 1116168, 1116164, 1116162, 1116161, 1134846, 1116139, 1116134, 1116121, 1116112, 1116103, 1116096, 1116092, 1116090, 1134839, 1134838, 1116037, 1116028, 1116025, 1116021, 1116019, 1116016, 1116015, 1134835, 1115983, 1115970, 1115961, 1115949, 1115933, 1115929, 1115881, 1115870, 1115819, 1115784, 1115783, 1115760, 1115748, 1115716, 1134807, 1134806, 1115693, 1115677, 1115660, 1115656, 1115651, 1115650, 1115649, 1115617, 1115599, 1115595, 1115586, 1115585, 1115584, 1115539, 1115526, 1115511, 1115485, 1134784, 1115462, 1115432, 1115425, 1115423, 1115388, 1115372, 1115339, 1115334, 1115332, 1115325, 1134769, 1115281, 1115255, 1115248, 1115206, 1115197, 1115191, 1115172, 1134752, 1115154, 1115118, 1115109, 1115106, 1115100, 1115097, 1115086, 1115072, 1115030, 1115021, 1115004, 1114979, 1114974, 1114962, 1114947, 1114905, 1114901, 1114882, 1114870, 1134723, 1114838, 1114828, 1114805, 1114782, 1114757, 1114753, 1114743, 1114739, 1114700, 1114690, 1114669, 1114660, 1114655, 1114654, 1114650, 1114634, 1114589, 1114588, 1114585, 1114584, 1114542, 1114524, 1114510, 1114502, 1114498, 1114495, 1114488, 1114476, 1114471, 1114460, 1134676, 1114428, 1114423, 1114420, 1114402, 1114383, 1114358, 1134666, 1114290, 1114275, 1134656, 1114236, 1114206, 1114200, 1114198, 1114188, 1114185, 1114164, 1114149, 1114131, 1114125, 1114108, 1114099, 1114093, 1114092, 1134639, 1114078, 1114066, 1136728, 1114055, 1114047, 1114044, 1113970, 1113959, 1113944, 1113877, 1113870, 1113861, 1113847, 1113840, 1136726, 1134614, 1113808, 1113802, 1113796, 1113792, 1113767, 1113756, 1113751, 1113724, 1113709, 1113699, 1113683, 1113654, 1113622, 1113608, 1136724, 1113597, 1113545, 1113528, 1113526, 1113520, 1134583, 1113506, 1113498, 1113496, 1113461, 1113439, 1113429, 1113425, 1113416, 1113398, 1134572, 1113381, 1113380, 1113353, 1113352, 1113347, 1113318, 1113307, 1113304, 1113269, 1113258, 1134560, 1134558, 1113231, 1134557, 1113201, 1113175, 1113170, 1113163, 1113158, 1113148, 1113147, 1134552, 1113125, 1113092, 1113090, 1134539, 1113073, 1113041, 1112954, 1112947, 1112944, 1112939, 1112928, 1112908, 1112897, 1112847, 1112838, 1112827, 1112819, 1134500, 1134499, 1112770, 1112709, 1112705, 1112663, 1112658, 1112656, 1112614, 1112606, 1112596, 1112568, 1112514, 1112506, 1112487, 1112486, 1112442, 1112396, 1112390, 1112384, 1112382, 1112375, 1112366, 1112327, 1112324, 1112313, 1134449, 1112302, 1112297, 1112291, 1134444, 1112250, 1112240, 1112234, 1112210, 1134436, 1112203, 1112154, 1112152, 1112141, 1112107, 1112105, 1112100, 1112089, 1112061, 1134422, 1134420, 1112044, 1112018, 1112014, 1111987, 1111969, 1111957, 1111908, 1111902, 1111898, 1111892, 1111890, 1134405, 1111874, 1111813, 1111802, 1111791, 1111790, 1134394, 1111760, 1111710, 1111705, 1111702, 1111678, 1111668, 1111662, 1111650, 1111605, 1111581, 1111580, 1111576, 1111564, 1111504, 1111502, 1111472, 1111470, 1111460, 1111439, 1111417, 1111400, 1111396, 1111392, 1111377, 1111345, 1111338, 1111316, 1111313, 1111306, 1134343, 1111275, 1111241, 1111214, 1111188, 1111156, 1111132, 1111119, 1111099, 1111071, 1111049, 1111030, 1111024, 1111023, 1110997, 1134309, 1110964, 1134306, 1110929, 1110927, 1110905, 1110903, 1110874, 1110868, 1110849, 1110836, 1110794, 1110776, 1110730, 1134281, 1110698, 1134277, 1110643, 1110605, 1134272, 1110576, 1134266, 1110531, 1110512, 1134263, 1110498, 1110470, 1110468, 1110426, 1110423, 1110410, 1110401, 1134251, 1110392, 1110391, 1110357, 1110353, 1110344, 1110337, 1110326, 1110322, 1110321, 1110314, 1110295, 1110284, 1110275, 1110264, 1110246, 1110234, 1110217, 1110215, 1110213, 1110196, 1110190, 1134221, 1110189, 1110163, 1110129, 1134212, 1110081, 1134203, 1110001, 1109974, 1109969, 1109917, 1134188, 1109872, 1109853, 1134184, 1109822, 1109805, 1109794, 1109788, 1109784, 1109768, 1109722, 1109701, 1109694, 1109658, 1109657, 1109628, 1109615, 1109599, 1109579, 1109571, 1134157, 1109546, 1109542, 1109540, 1109537, 1109525, 1109496, 1109487, 1109477, 1109474, 1109473, 1109471, 1109464, 1109463, 1109462, 1134140, 1109436, 1109413, 1109408, 1109407, 1109397, 1109396, 1134135, 1109381, 1109379, 1109365, 1109319, 1109311, 1109288, 1109238, 1109215, 1109201, 1109190, 1109171, 1109110, 1134109, 1109050, 1109048, 1109040, 1109022, 1109002, 1108993, 1108985, 1108975, 1108961, 1108959, 1108953, 1108935, 1108922, 1108914, 1108911, 1108875, 1108874, 1108867, 1108847, 1108821, 1108811, 1108809, 1108799, 1108789, 1136676, 1108763, 1108735, 1108658, 1108645, 1108637, 1108636, 1108632, 1108629, 1108607, 1134057, 1108564, 1108526, 1108523, 1108516, 1108510, 1134049, 1108492, 1108487, 1108481, 1108478, 1108472, 1108462, 1108406, 1108400, 1108332, 1134030, 1108268, 1134028, 1108241, 1108227, 1134024, 1108216, 1108203, 1108199, 1108147, 1108131, 1108121, 1108099, 1108075, 1108071, 1134001, 1108011, 1108009, 1107991, 1107982, 1107970, 1107953, 1107919, 1107915, 1107898, 1107885, 1133988, 1107845, 1133986, 1107834, 1133983, 1107749, 1107748, 1107745, 1107702, 1107677, 1107646, 1107618, 1107602, 1107593, 1107568, 1107563, 1107450, 1107401, 1107399, 1107381, 1107364, 1107344, 1107336, 1107308, 1107299, 1133931, 1107245, 1107210, 1107207, 1107193, 1107192, 1107189, 1107171, 1107141, 1107132, 1107123, 1107117, 1107112, 1107108, 1107092, 1107091, 1107085, 1107057, 1133907, 1107033, 1107015, 1133902, 1106978, 1106920, 1106912, 1106873, 1106858, 1106850, 1106840, 1106834, 1106797, 1106764, 1106756, 1106686, 1106680, 1106676, 1106672, 1106658, 1106652, 1106642, 1106607, 1106589, 1133854, 1106543, 1106539, 1106537, 1106535, 1106533, 1106521, 1106516, 1106508, 1106502, 1106450, 1106421, 1106414, 1106408, 1106389, 1106381, 1106377, 1106348, 1106343, 1106335, 1106306, 1106291, 1106290, 1133827, 1106234, 1106230, 1106216, 1106200, 1106196, 1106159, 1106126, 1106125, 1106099, 1106089, 1133812, 1106079, 1133809, 1106027, 1106011, 1133799, 1133798, 1105989, 1105982, 1105978, 1133792, 1105897, 1105882, 1105853, 1105850, 1105831, 1105817, 1105816, 1133780, 1105805, 1105798, 1105797, 1105766, 1105761, 1105753, 1105700, 1105689, 1105666, 1105625, 1105617, 1105614, 1105594, 1105593, 1105582, 1105571, 1105565, 1133757, 1105526, 1105506, 1105498, 1105489, 1105485, 1105441, 1105432, 1105431, 1105427, 1105422, 1133744, 1105381, 1105364, 1105358, 1105337, 1105298, 1105287, 1105276, 1105275, 1105253, 1105248, 1105239, 1105202, 1105190, 1105169, 1105163, 1133721, 1105148, 1105146, 1105144, 1105142, 1105110, 1105108, 1105100, 1105086, 1105073, 1105046, 1105042, 1133710, 1105021, 1105017, 1105013, 1104984, 1136634, 1104957, 1104950, 1104949, 1104942, 1104915, 1104781, 1104773, 1104763, 1104725, 1104720, 1104712, 1104704, 1104699, 1104698, 1104685, 1104640, 1104633, 1104630, 1104557, 1104513, 1104509, 1104506, 1104497, 1104468, 1104458, 1104454, 1133658, 1104406, 1104403, 1104339, 1133644, 1104279, 1104252, 1104250, 1104235, 1104223, 1104221, 1104198, 1104175, 1104124, 1104118, 1104105, 1104099, 1104087, 1133620, 1104071, 1104064, 1104036, 1104022, 1104020, 1104005, 1133611, 1103987, 1103974, 1103969, 1103966, 1103921, 1103911, 1103910, 1103888, 1103879, 1103828, 1103826, 1103816, 1103798, 1103793, 1103787, 1103776, 1103766, 1103759, 1103690, 1103687, 1103684, 1103679, 1103651, 1103601, 1103579, 1103561, 1103555, 1103553, 1103537, 1103535, 1133558, 1103511, 1133557, 1103468, 1103467, 1103446, 1103416, 1103387, 1103355, 1103322, 1103314, 1103303, 1103290, 1103289, 1133535, 1103260, 1103257, 1133533, 1103250, 1103182, 1103136, 1103121, 1103093, 1103091, 1103089, 1103084, 1103076, 1103019, 1103009, 1102998, 1102989, 1102979, 1102895, 1102892, 1102869, 1102862, 1102854, 1102849, 1102839, 1102827, 1102811, 1102803, 1102768, 1133474, 1102714, 1102704, 1102693, 1102667, 1102617, 1102590, 1102589, 1102579, 1102578, 1102498, 1102488, 1102477, 1102474, 1102456, 1133442, 138157, 2610, 1133431, 149979, 377304, 1133428, 216736, 359286, 62525, 2663, 272951, 306421, 42476, 139000, 201194, 204951, 209797, 1937, 1133376, 285032, 1133374, 236763, 121746, 246076, 176953, 147537, 1133366, 360488, 175123, 160276, 159922, 131617, 318841, 80372, 63246, 146783, 349622, 288566, 1133349, 326787, 65809, 356260, 100154, 132133, 74274, 228670, 134903, 260302, 108391, 103402, 103595, 49439, 242042, 339286, 233529, 40228, 19684, 59230, 262686, 90139, 213353, 32202, 56678, 144051, 1133288, 48170, 137662, 49381, 346023, 180370, 132575, 49810, 24093, 1133258, 131405, 102330, 332859, 1133254, 266752, 252103, 1133252, 92176, 54747, 369873, 78332, 76140, 170498, 236254, 160010, 285797, 1133231, 370985, 201444, 239147, 95448, 48846, 122011, 274306, 209497, 173661, 1133202, 1136591, 132938, 1133194, 295928, 1133190, 212146, 318302, 107701, 1133187, 178610, 21792, 23963, 271748, 291553, 137712, 127150, 152627, 1133171, 187371, 130467, 148898, 103328, 347583, 120219, 345861, 126866, 237441, 162657, 323393, 62845, 54246, 333489, 150595, 180956, 1133122, 119400, 183919, 1136584, 100777, 198536, 142148, 1133113, 134628, 117174, 137468, 125791, 38087, 334251, 1133092, 272071, 57674, 28684, 78497, 129183, 31825, 1425, 284067, 243874, 161766, 278827, 266488, 89633, 94173, 194893, 257783, 354466, 187317, 139175, 67222, 1133057, 236776, 195958, 165977, 347294, 262636, 128874, 1133036, 308617, 331343, 30163, 43707, 30649, 27310, 2045, 330504, 83320, 271835, 315683, 178575, 135634, 200918, 1132996, 34366, 1132991, 33137, 20892, 135821, 131850, 1132977, 207703, 340377, 185119, 83959, 378632, 328464, 32278, 1132965, 1132959, 271881, 1132952, 287159, 275737, 274797, 1132945, 309926, 268574, 289499, 1132925, 248362, 1132921, 100932, 204904, 56894, 91565, 280019, 1132913, 106320, 1132903, 182350, 355540, 132495, 323018, 62577, 1132890, 37185, 1136559, 65052, 205954, 225986, 161346, 159992, 1132847, 239971, 113269, 43476, 134905, 326921, 158752, 68626, 334222, 75286, 1132834, 96857, 225703, 134469, 232008, 140770, 50797, 59725, 172940, 130168, 1132815, 183696, 121488, 245833, 87730, 216731, 224688, 1132796, 68618, 38122, 64384, 1132790, 190054, 191625, 202250, 310488, 222133, 247819, 1136550, 247506, 54958, 229260, 200144, 163053, 95594, 175258, 80718, 219809, 320340, 1132754, 85348, 293041, 72577, 334716, 41184, 186086, 50626, 29725, 1132735, 239245, 1132734, 75799, 124895, 1132717, 261101, 91157, 44340, 67422, 92143, 31192, 276343, 49482, 124291, 227104, 57710, 143012, 74057, 94039, 272269, 299381, 143955, 268235, 261207, 124798, 260080, 242796, 117115, 299709, 165393, 1214, 157565, 1132651, 245620, 55727, 313766, 25026, 57218, 344937, 67147, 313491, 114725, 50189, 70108, 303874, 160801, 1132592, 24041, 88882, 289943, 1132583, 22364, 112541, 226572, 200782, 1132564, 63290, 156302, 63795, 184833, 156548, 268010, 227516, 90708, 1132549, 208493, 82973, 147064, 56808, 1132529, 357336, 160313, 278403, 176124, 188784, 37547, 30359, 347113, 293516, 233185, 64430, 127812, 364094, 12761, 72904, 271435, 277093, 166683, 167974, 160574, 301352, 207754, 181479, 117965, 169257, 1132444, 259070, 135347, 153663, 296378, 60870, 184223, 23531, 27528, 98675, 125929, 1132409, 326797, 225419, 359463, 112864, 259437, 340815, 71908, 88808, 1132399, 43167, 42055, 187763, 115594, 95449, 40124, 196233, 202384, 81184, 213758, 138933, 1132360, 343640, 293069, 289801, 273773, 176499, 333375, 1132352, 1132347, 309040, 297010, 295730, 320086, 166508, 1132312, 148209, 13101, 25465, 129457, 109587, 277868, 199407, 36299, 13912, 294614, 160309, 65904, 59911, 200228, 267705, 191894, 76102, 174722, 71138, 321703, 11863, 64535, 123648, 1132255, 188166, 92670, 22836, 137674, 62078, 83401, 373795, 76154, 166325, 274555, 36951, 164940, 266150, 153592, 200695, 239250, 207572, 181305, 303706, 97834, 195677, 201381, 153123, 159867, 189529, 174157, 203720, 320700, 39325, 1136491, 134127, 256066, 39660, 335114, 209769, 1132162, 312826, 455425, 538026, 67225, 162696, 1132147, 689120, 508870, 394040, 404889, 490071, 495618, 549190, 49387, 673689, 735360, 208702, 487934, 131247, 563898, 513591, 502104, 752441, 150443, 485594, 586761, 57, 4776, 214625, 1136482, 493900, 609252, 1132087, 732756, 654897, 179955, 461950, 660426, 685004, 734466, 368900, 156776, 628564, 344155, 473182, 386934, 692151, 706780, 482382, 666238, 720868, 146574, 162946, 728829, 466657, 580605, 129695, 1132047, 398127, 473495, 675920, 506768, 415155, 736117, 525069, 466400, 671117, 653909, 643328, 383847, 517763, 713301, 220290, 181644, 389541, 1132006, 699218, 537744, 745784, 369105, 723486, 1131983, 642800, 452336, 756790, 734758, 334219, 255251, 702598, 450543, 613422, 626761, 89634, 596136, 167533, 727181, 429906, 608124, 713357, 573701, 655939, 684502, 538143, 662108, 265494, 120593, 722220, 445502, 597686, 544220, 537188, 718364, 653077, 624210, 710887, 691798, 169584, 705174, 1131909, 209531, 452924, 451826, 647597, 463021, 709056, 490982, 643870, 144842, 466338, 1131892, 91778, 203783, 756681, 433786, 756829, 366342, 728735, 1131884, 538878, 508254, 575461, 504751, 229045, 628808, 108500, 703554, 599137, 671829, 720949, 696201, 554585, 389908, 745278, 1131840, 464930, 674566, 700756, 486173, 1131830, 21838, 353333, 1131821, 731129, 1131818, 680613, 1131813, 730149, 556637, 430755, 727943, 20616, 599673, 455256, 548054, 539566, 501894, 585888, 443964, 644356, 611442, 521254, 713278, 1136443, 547374, 741173, 1131777, 606672, 483253, 588308, 725726, 244472, 238804, 490000, 478255, 708144, 236269, 650476, 1131754, 465990, 647887, 435864, 714849, 660983, 415438, 543638, 1131738, 1131735, 534684, 733956, 643361, 463180, 671027, 1131724, 618695, 396098, 190164, 84797, 477552, 1131713, 399730, 1131703, 1131699, 642647, 192397, 370635, 466536, 549327, 658273, 522054, 707645, 386213, 463137, 562352, 440144, 169166, 595808, 508476, 450426, 588762, 680190, 636417, 618349, 629913, 422890, 277177, 642252, 447697, 515005, 503164, 259924, 584017, 558978, 694851, 672262, 78640, 537267, 581447, 1131613, 636093, 417895, 1131609, 180593, 739636, 625256, 731251, 188053, 449539, 475394, 738829, 419729, 1131593, 121843, 4383, 582098, 489238, 722550, 704182, 431159, 473020, 615000, 65692, 535699, 533613, 589875, 635379, 1131559, 1136425, 1131557, 464864, 746963, 563962, 1131554, 409031, 743777, 582128, 496927, 617223, 1131543, 677292, 540318, 243941, 747597, 578356, 1131533, 576964, 734678, 707689, 501442, 561499, 692815, 100940, 1131512, 473028, 1131510, 497632, 1131507, 383831, 566937, 290290, 49850, 637080, 614540, 689461, 747285, 614620, 694270, 633073, 391077, 603796, 676426, 1131478, 415661, 402595, 515273, 1131467, 737266, 526352, 460855, 485891, 726929, 96565, 582339, 1131446, 586754, 505992, 251774, 588712, 677133, 455371, 710756, 342150, 604332, 679482, 17199, 451643, 755461, 259312, 1131415, 1131411, 725828, 564310, 608244, 327855, 675569, 706373, 724657, 283924, 702722, 220398, 598348, 150347, 1131396, 413054, 516429, 730062, 710329, 479687, 1131383, 737913, 469566, 591326, 429876, 405298, 21744, 551851, 507424, 630264, 499666, 561538, 316436, 623112, 494786, 515775, 641164, 1131343, 574337, 614338, 562030, 455513, 562904, 753220, 562697, 738248, 230808, 1131320, 484350, 198610, 718133, 685661, 402991, 607582, 500775, 134875, 747566, 429205, 707853, 1131307, 1136401, 1131301, 521329, 392124, 393611, 1131295, 622262, 527745, 227967, 399503, 441204, 1131278, 580227, 592329, 693494, 618024, 664540, 697374, 1131260, 1136397, 43548, 632020, 750167, 410387, 187330, 685998, 743021, 613923, 446160, 528174, 1131240, 707577, 567878, 240102, 619013, 458674, 1131227, 1131222, 412136, 515123, 571215, 429182, 1131216, 674956, 1131209, 438344, 403520, 632935, 112928, 651821, 696173, 1131192, 674691, 633998, 1131182, 565366, 533428, 273443, 1131173, 464548, 681173, 451150, 737112, 389501, 579601, 387851, 593455, 534021, 452761, 643223, 456807, 566216, 83666, 1131155, 454824, 634650, 242583, 488073, 47269, 522358, 430258, 711802, 455957, 538373, 577234, 714881, 535009, 716082, 521367, 486431, 490752, 1131104, 442307, 709522, 694739, 703736, 1131092, 692238, 708094, 405684, 1131075, 736703, 632755, 144050, 463660, 534279, 493020, 692201, 723457, 527398, 557952, 1131049, 1131048, 699817, 241937, 1131046, 390313, 540655, 494111, 457426, 479475, 709726, 701898, 430704, 613827, 754589, 688208, 352420, 508510, 150505, 418883, 595641, 153809, 427372, 1131013, 589844, 1131008, 517135, 1131005, 1131004, 540951, 661717, 671630, 28661, 1130996, 406838, 629420, 1130994, 719438, 1130988, 671720, 702952, 644204, 563542, 437910, 716995, 673666, 604500, 575378, 573622, 484886, 676791, 515531, 708693, 370750, 644678, 1130937, 753089, 724623, 219723, 1130935, 590560, 1130933, 571087, 515785, 555353, 684994, 603617, 503963, 397564, 226012, 262542, 405974, 603714, 177610, 389739, 682567, 1130897, 674513, 567881, 531311, 544191, 455561, 426367, 380561, 245295, 663156, 431674, 493829, 129347, 686392, 718295, 74000, 514264, 678466, 503613, 127437, 739166, 583772, 722441, 188318, 719371, 626218, 258390, 717111, 1130849, 418725, 595910, 513838, 674571, 1130837, 533312, 29811, 466878, 459503, 623603, 1130830, 694106, 593611, 569902, 725715, 668648, 402832, 530079, 534250, 327062, 1136350, 204088, 457951, 416646, 511466, 576357, 72015, 1130806, 568405, 1130805, 742695, 538393, 412073, 637960, 598934, 561834, 747004, 200289, 562002, 524438, 682859, 360822, 394208, 1130772, 78501, 628136, 445026, 689657, 486716, 576292, 682902, 435130, 721273, 563938, 446290, 128543, 699279, 529769, 721661, 717849, 626517, 475408, 493845, 587923, 639288, 1130732, 674504, 599504, 1130728, 543290, 1130726, 444598, 439766, 621550, 417717, 552319, 706900, 468021, 412410, 455359, 161162, 414393, 1130684, 527633, 720395, 576305, 484467, 619408, 515064, 452385, 686422, 567899, 1130672, 715765, 663755, 709494, 55079, 727291, 669130, 1130667, 428479, 706985, 570789, 262878, 616705, 83712, 612831, 319218, 619655, 396122, 522212, 729058, 745317, 438891, 1130640, 1130635, 740366, 452155, 734746, 409853, 624662, 403035, 593489, 420872, 436325, 557806, 1130608, 488887, 596699, 344368, 416672, 614567, 554792, 575621, 456383, 547426, 547711, 521791, 672626, 148977, 514360, 25802, 456029, 510645, 506278, 642473, 73619, 552459, 1130575, 433683, 391829, 642144, 509654, 408986, 755381, 1130558, 546404, 561461, 665022, 1130548, 493826, 406237, 1130536, 680480, 1130524, 662687, 731691, 748843, 1130511, 414899, 491017, 569409, 560815, 412865, 712140, 388319, 491200, 297146, 695196, 499188, 115952, 524469, 14244, 130858, 593986, 489013, 541229, 29667, 126582, 458638, 497813, 418389, 123525, 675245, 592333, 640857, 1130449, 464240, 502221, 409003, 700345, 695697, 661986, 1130435, 578560, 1130431, 382254, 586049, 554435, 461052, 410169, 502453, 554031, 159535, 695737, 426684, 473062, 646245, 402135, 573471, 557944, 691188, 523197, 481998, 94642, 135936, 397550, 511215, 234583, 643749, 490936, 499385, 1130383, 644600, 1130378, 625691, 675823, 232508, 512536, 642301, 574114, 717873, 235560, 485567, 739828, 416823, 567870, 521342, 271620, 1130345, 636141, 30677, 444485, 621989, 1130340, 558003, 1130335, 594086, 405780, 1130327, 323085, 487275, 747961, 59330, 399595, 510004, 1130312, 696381, 435223, 517928, 1130307, 684324, 729023, 179219, 638898, 1130296, 585585, 706401, 326176, 730832, 546217, 531470, 514029, 599538, 1130277, 663182, 453350, 358771, 413075, 197375, 542015, 179066, 323565, 439146, 749326, 1130240, 50863, 1130232, 556923, 70752, 537610, 571009, 750029, 616483, 639157, 760171, 552670, 392181, 579092, 497356, 744538, 1130193, 498576, 413335, 444318, 558963, 644392, 584499, 474468, 61526, 246118, 46683, 712006, 406640, 494285, 587145, 1130156, 216656, 695643, 647777, 529272, 591718, 151408, 148503, 663916, 429843, 526266, 696148, 408157, 234277, 645349, 402799, 1130123, 703298, 464465, 6113, 727572, 495159, 68164, 596533, 1130115, 648174, 529043, 278691, 354076, 415184, 396312, 493439, 617033, 703240, 427221, 631852, 147550, 144138, 1130095, 479495, 501645, 79438, 412750, 30282, 1130084, 375206, 407457, 582138, 581229, 649335, 498021, 728112, 656101, 403914, 633411, 110375, 159767, 557592, 622238, 630123, 513303, 739171, 631665, 1130023, 749976, 1130015, 1130013, 611400, 600638, 1130006, 486312, 538718, 323959, 699896, 466456, 696519, 489166, 509832, 683410, 443766, 582390, 558809, 242115, 437191, 1129981, 416692, 427311, 520202, 278034, 727154, 670360, 1129973, 620882, 705905, 549722, 709492, 744835, 1129959, 659901, 473029, 668190, 480320, 671862, 396967, 566618, 629337, 444688, 497659, 693353, 662982, 655097, 715661, 430114, 428503, 596837, 394148, 506577, 1129896, 418615, 677304, 547770, 1129888, 6055, 407007, 1129886, 724767, 634856, 581844, 1129878, 596613, 721708, 169442, 749813, 664034, 611049, 547771, 729755, 626823, 397579, 62517, 500646, 721882, 490612, 284910, 594476, 241399, 585220, 394980, 732794, 1129841, 474961, 1129838, 745872, 582183, 410391, 1129835, 414970, 389506, 412503, 559629, 511806, 504057, 601649, 12553, 1129822, 418501, 535288, 407383, 743489, 500680, 393238, 712468, 399701, 736364, 536101, 467932, 738788, 469356, 193676, 668999, 400681, 516185, 532352, 691956, 177167, 424318, 422938, 423807, 572976, 530295, 369311, 448042, 680004, 536822, 748434, 451642, 1129769, 177775, 614001, 477793, 513836, 408908, 482580, 463421, 108813, 466454, 540572, 436582, 601783, 470680, 670004, 497483, 410329, 484646, 1129733, 221987, 1129731, 535067, 516941, 725044, 656422, 1136245, 555674, 700590, 667607, 334662, 703134, 412395, 143721, 565173, 236793, 1129700, 691711, 641617, 567820, 651708, 637695, 664605, 625633, 658427, 62521, 61519, 636208, 593007, 722260, 89360, 488839, 325057, 684536, 553161, 600524, 411822, 516087, 542582, 1129650, 636814, 495608, 577746, 553571, 1129642, 662028, 431988, 650966, 500574, 230013, 1129630, 515217, 725969, 737654, 714335, 678724, 606791, 427033, 466865, 466968, 500832, 674396, 661623, 693880, 462794, 181329, 751571, 645149, 570875, 439879, 1136233, 460506, 514421, 602653, 544978, 594835, 686436, 111077, 534202, 631789, 583527, 706624, 675316, 404221, 549110, 388265, 549237, 633137, 716717, 661990, 132345, 600959, 726834, 642841, 249364, 645818, 752488, 705551, 368124, 458832, 418832, 1129518, 486839, 61075, 1129514, 463679, 680225, 739996, 1129508, 512264, 595689, 686229, 435526, 1129499, 734836, 237465, 617192, 89149, 596659, 620810, 188273, 547627, 548020, 402132, 426403, 204520, 508162, 536931, 745373, 624304, 1129483, 477474, 249814, 663878, 621190, 383220, 255025, 432162, 564558, 617318, 450640, 547661, 426435, 726971, 569053, 718490, 412407, 659825, 490358, 723295, 1136215, 1129452, 521026, 1129448, 448305, 733585, 1129444, 637187, 661763, 754567, 715756, 706501, 579403, 400491, 1129436, 581075, 416561, 1129433, 479358, 434008, 658865, 1136212, 630092, 524266, 533379, 35150, 552364, 430536, 1129422, 488571, 759514, 754609, 409736, 680230, 688646, 465156, 269425, 571432, 553530, 632671, 469121, 552458, 610414, 724606, 759101, 465920, 1129357, 1129356, 407302, 538850, 425694, 425438, 648925, 439929, 497477, 423254, 129008, 530174, 511841, 625685, 397803, 1129315, 756934, 603085, 645080, 512985, 552563, 628657, 388981, 18075, 321226, 758918, 213726, 453857, 567505, 598973, 684899, 412357, 643181, 617733, 92974, 686139, 657594, 653662, 571431, 510514, 626866, 591784, 595422, 594352, 613576, 1136198, 702508, 731662, 199831, 590445, 679625, 412182, 677485, 395326, 519027, 1129241, 723897, 599724, 442810, 1129232, 701050, 606110, 60900, 721942, 460002, 689019, 518796, 81017, 687671, 628109, 457609, 717538, 590726, 535449, 418157, 497919, 390770, 681047, 456674, 653450, 642760, 1129167, 541708, 738451, 599178, 36033, 452422, 703281, 733738, 687792, 202310, 752388, 432012, 1129145, 149491, 535668, 582756, 612251, 541429, 642328, 588848, 662167, 742808, 558303, 718489, 750114, 499364, 653517, 1129103, 400435, 533677, 648975, 1136890, 415479, 632456, 154904, 659458, 1136183, 580040, 1129085, 1129084, 521869, 516532, 691028, 755688, 726379, 713127, 432503, 593386, 1129067, 437986, 458616, 688815, 410946, 612158, 98415, 630845, 583249, 697861, 1129055, 611027, 1136180, 156707, 722996, 469976, 386091, 1129042, 396974, 747939, 675811, 172986, 749215, 468437, 173834, 264602, 566732, 643303, 556581, 664751, 57292, 461190, 461659, 124607, 89100, 734136, 92742, 635081, 14571, 518785, 196450, 675430, 613222, 1128995, 581535, 412, 598286, 403328, 653560, 474875, 602263, 416161, 1128981, 589171, 1128976, 742238, 404407, 750926, 544890, 511401, 448000, 608870, 637004, 1128958, 1128956, 503949, 208417, 1128954, 333182, 1128949, 419783, 591543, 637698, 402300, 1128939, 668300, 566407, 553988, 486939, 1128927, 537223, 176781, 748579, 1128917, 532494, 472232, 1128914, 647637, 1128903, 1128900, 79203, 271544, 96933, 1128888, 545791, 748018, 68360, 383029, 395660, 493218, 423863, 518578, 669798, 72298, 424280, 655607, 1128872, 561064, 1128860, 378866, 569527, 462111, 702919, 596645, 626166, 252887, 730156, 389192, 584757, 611785, 588563, 696261, 535610, 730541, 1128840, 399884, 389808, 470372, 294538, 411600, 487606, 428836, 609922, 64259, 1128821, 1128818, 427505, 495243, 576792, 631266, 202726, 582484, 395665, 693097, 714863, 567976, 392882, 450290, 357777, 583824, 573221, 335374, 525433, 604884, 622467, 524369, 609071, 613079, 622187, 569862, 269960, 187574, 460663, 1128760, 418801, 604102, 1128752, 142656, 69841, 572432, 581303, 744230, 637909, 1128738, 450498, 640885, 505647, 1136152, 1128726, 154164, 493723, 477176, 327812, 651679, 453305, 697773, 121431, 415021, 400908, 581377, 236105, 735502, 459153, 1128691, 1128689, 322610, 646814, 449717, 680854, 250927, 541155, 1128681, 197174, 403824, 512569, 526597, 1128676, 738859, 569047, 1128668, 97873, 549663, 596007, 678053, 688140, 653413, 620231, 197875, 734529, 416738, 509003, 164798, 567024, 413801, 366118, 520273, 557046, 424856, 566615, 122690, 572446, 1128624, 543631, 1128620, 634302, 610923, 755062, 608491, 561885, 575606, 555772, 1128567, 480646, 706291, 472957, 564382, 44537, 1128562, 740168, 274605, 653579, 407816, 634055, 651969, 280704, 1128549, 659297, 447912, 631766, 408905, 173181, 522821, 624426, 1128539, 407575, 409057, 409708, 644637, 395821, 21003, 413172, 404156, 1128524, 412817, 440973, 576361, 626536, 345102, 655332, 1128511, 552956, 1128508, 708745, 409157, 1128494, 1128492, 22256, 406582, 1128484, 156181, 700430, 481345, 690869, 759007, 587999, 677421, 514241, 408686, 561991, 572170, 604126, 741514, 1128450, 610645, 725355, 751255, 636603, 1128432, 417905, 1057246, 812967, 1128427, 771994, 337952, 64882, 779025, 1128417, 818265, 771555, 845740, 320499, 820021, 946751, 783583, 1013322, 975809, 70472, 1037917, 968788, 1022698, 373224, 875528, 1128385, 1128380, 964482, 245463, 873986, 1029871, 1032729, 1037279, 149975, 1128346, 881533, 795754, 901007, 970549, 1128337, 959256, 1068313, 289517, 89877, 836062, 777839, 961525, 1078498, 242603, 986960, 1128319, 985840, 1030163, 985900, 857963, 797562, 1012478, 1128297, 1037088, 796223, 977852, 832897, 1128291, 1128287, 936422, 881142, 876885, 918446, 769310, 165237, 1128280, 795757, 947066, 840136, 1128276, 95167, 875518, 868055, 893658, 1136113, 854924, 1128264, 995898, 892353, 1045190, 1053031, 327873, 1011812, 838440, 132007, 1041905, 248407, 878415, 1018792, 874523, 774158, 1008502, 997671, 1076615, 227230, 1020019, 827488, 810830, 165287, 866615, 899741, 1000993, 937626, 1057030, 1136108, 1057241, 1014933, 1008191, 1055448, 22817, 809594, 136476, 899268, 933594, 999612, 1019246, 1128198, 887883, 947119, 917298, 860972, 1050241, 968631, 229107, 812644, 1034759, 857520, 929366, 982144, 843768, 42541, 229677, 1128166, 835940, 1128164, 1128160, 984952, 1032680, 894139, 926094, 992867, 936255, 1074449, 186071, 90368, 72476, 802667, 795872, 859387, 188445, 820387, 1033642, 1128119, 761430, 236359, 800142, 1005146, 998479, 1034491, 800703, 1049419, 167873, 772409, 1046115, 828068, 1054959, 805998, 978459, 1128087, 980023, 1128080, 916768, 1044449, 925041, 962160, 1128071, 191143, 1056313, 826354, 781539, 304380, 203790, 1128064, 797200, 22372, 803115, 957479, 768114, 991332, 897222, 809570, 295077, 786761, 243076, 796050, 1064020, 1128040, 999644, 239143, 1013556, 1128028, 1032719, 956231, 887242, 879329, 907807, 1020489, 967278, 893358, 1078015, 861865, 81693, 784092, 205959, 768939, 65305, 1127990, 1057936, 1040752, 935962, 107205, 825453, 949738, 952722, 924092, 1012829, 943014, 258617, 774027, 912931, 1127969, 893657, 829295, 1064659, 1127959, 772836, 932294, 71557, 1037376, 802776, 1127938, 856861, 1036776, 1016732, 1127932, 815939, 1003514, 1031609, 161027, 254740, 1024432, 903268, 1127914, 1127912, 136726, 1058856, 1043229, 121484, 1013679, 859955, 987306, 864853, 893756, 1028701, 1127897, 1127896, 845232, 839841, 899014, 916107, 1063739, 1010069, 842886, 767589, 1064344, 905050, 811245, 880110, 1054797, 1070930, 252441, 841870, 763443, 849720, 1026733, 996146, 883176, 937486, 791397, 158817, 999522, 8718, 895721, 1034305, 824384, 877676, 1127822, 322709, 907310, 1127810, 24636, 833302, 811447, 858395, 1127802, 978096, 331648, 1034015, 27705, 56067, 148159, 925169, 834934, 1046166, 1078080, 771730, 1055227, 871301, 1030994, 67359, 958846, 1033381, 885018, 1127754, 892490, 788960, 1127753, 891987, 1127752, 174305, 78352, 1127741, 230824, 919556, 174039, 1127730, 112175, 885095, 71390, 839912, 990480, 901678, 1127718, 838709, 890075, 917100, 314262, 951320, 1034261, 1037159, 941866, 1001968, 673041, 869918, 978121, 1127697, 1127695, 20734, 779540, 830234, 960998, 916453, 931401, 972092, 854884, 233900, 226741, 253406, 1071255, 856393, 1066186, 171431, 809913, 1127674, 870172, 1127668, 859431, 763641, 1003630, 1032978, 767490, 766142, 1072559, 811974, 1036830, 252314, 821619, 168786, 770534, 67379, 844464, 8452, 954096, 815308, 1127621, 856978, 844433, 1010270, 761225, 803948, 867262, 968186, 988542, 1059674, 1063049, 792925, 1064595, 143062, 159842, 987894, 853267, 150207, 1127588, 994761, 975140, 352949, 1070417, 865909, 86290, 804916, 1127570, 1127567, 980996, 1127562, 1127561, 1065678, 1068306, 1127554, 935643, 883929, 1040730, 1127547, 946839, 941232, 968238, 836003, 860643, 1048716, 1073975, 847831, 870184, 797815, 890953, 920289, 925119, 979571, 841302, 8136, 1031152, 976102, 118484, 865206, 765659, 770356, 72956, 1136042, 793699, 864818, 932299, 949516, 1061852, 1068587, 981837, 827381, 859101, 979007, 902790, 871016, 779201, 918750, 1127498, 279176, 838421, 885663, 60764, 1127493, 1061326, 1127489, 1067801, 791513, 20010, 865218, 874196, 939698, 934193, 1127468, 790118, 923070, 1005149, 1021302, 1002690, 952938, 1059177, 1068025, 1127462, 864864, 911889, 1025104, 24462, 828518, 1127448, 1061590, 998480, 1127444, 54818, 903790, 988595, 180298, 894466, 1127434, 993838, 1127425, 1051206, 1015668, 764766, 890643, 919771, 1127411, 797565, 908897, 795460, 880092, 907635, 979086, 914186, 187585, 1040212, 1127398, 1013228, 192284, 991798, 916050, 907301, 872978, 1136028, 1080183, 831024, 789014, 1127378, 150873, 1127364, 925292, 1054749, 766379, 129435, 858696, 798239, 960142, 1127351, 1005502, 919760, 804755, 813370, 1049877, 919707, 1070083, 995599, 772833, 888413, 1127325, 947430, 843139, 761907, 1055761, 264434, 814908, 929714, 761014, 775430, 932859, 824644, 37706, 842042, 115718, 864762, 762072, 101478, 903661, 854655, 72228, 875937, 937168, 1050808, 869292, 783335, 976771, 761313, 979890, 868913, 981240, 1015949, 1037830, 1018202, 982019, 35370, 816794, 1008453, 982696, 129700, 838235, 1127195, 865638, 917436, 881246, 762434, 806450, 1030502, 1127188, 1127184, 65383, 904565, 1136013, 967706, 1053723, 1023767, 31169, 1043151, 976293, 1127177, 1014055, 297058, 1049092, 1127162, 834856, 858461, 1025444, 968552, 902969, 844140, 982810, 77565, 881067, 340541, 319123, 781808, 1136008, 977828, 266611, 899428, 800348, 1043976, 1127110, 316262, 295361, 791170, 995778, 1040530, 357297, 56962, 982229, 1072522, 1025072, 168655, 1127084, 1127081, 884436, 989526, 864694, 187675, 799293, 292227, 892584, 1127044, 1030954, 1011348, 942728, 861724, 966614, 966679, 18164, 1071370, 976827, 1127025, 226190, 782125, 937753, 971564, 955228, 955028, 1052076, 1009291, 960734, 952306, 1126994, 1017930, 896746, 1126981, 145391, 1049202, 902586, 1126971, 878401, 1049390, 1126963, 855667, 985913, 994564, 913285, 1126958, 888689, 891634, 1013904, 916214, 975875, 1126948, 981828, 1126945, 1014189, 283348, 1126935, 881738, 1046757, 1126932, 996236, 1126931, 1080843, 1126925, 1081591, 1075711, 860145, 830462, 1126914, 240792, 1126910, 266390, 986693, 1001492, 73882, 1126880, 941093, 979044, 810631, 1126875, 1042543, 1007481, 87762, 1065739, 292284, 980185, 796451, 909549, 812006, 304449, 116653, 905706, 788034, 1002287, 1126817, 982967, 1126815, 896446, 870582, 1126807, 1019607, 1060142, 917813, 95381, 1073430, 1041628, 197487, 903975, 1049177, 233881, 1005869, 1052835, 877076, 1068315, 1077039, 999829, 1060669, 931621, 1126761, 974727, 1135966, 869887, 888762, 1126750, 1051205, 1035340, 819279, 1126742, 136473, 1126736, 858242, 776547, 1126711, 800274, 852966, 1051326, 803633, 984476, 12954, 911480, 855901, 981948, 929693, 761941, 1078365, 770648, 767499, 253693, 203321, 836888, 1126691, 278684, 931678, 1078766, 12048, 1126673, 899891, 123919, 904461, 798979, 798354, 1126658, 1065534, 873607, 1126654, 825961, 1126651, 955453, 331284, 92008, 908665, 1030949, 316302, 777578, 1033997, 1027534, 956670, 897892, 999910, 1000893, 1046684, 1126609, 821676, 793432, 325310, 1126587, 1076289, 935870, 980263, 799784, 858159, 892768, 856417, 992595, 795622, 1065206, 276928, 1053061, 833797, 881070, 1126545, 772968, 949129, 41048, 1049736, 1126533, 855243, 773025, 1016486, 1126531, 992162, 830306, 963943, 990969, 761883, 952768, 865754, 826731, 833544, 794347, 1126517, 853533, 811650, 1049180, 158469, 1126507, 303585, 271672, 1126499, 910699, 1135935, 1126491, 1002572, 939521, 1136859, 1135933, 122010, 927216, 868111, 250673, 823415, 1004948, 993055, 814791, 1078745, 966542, 915433, 8356, 1037981, 836498, 803596, 931027, 837140, 1065923, 1126425, 1061433, 852842, 1126416, 1126414, 802817, 910246, 1126403, 772885, 968995, 789140, 905574, 1070533, 25179, 869486, 867346, 930833, 981606, 833432, 367519, 1126380, 51514, 1126377, 1126374, 1081455, 971331, 903073, 921267, 8008, 995529, 879076, 1004774, 1126361, 908077, 845321, 960803, 981207, 883184, 935437, 917606, 65416, 906238, 232919, 963471, 858085, 888024, 1009408, 1056764, 9082, 131573, 1126331, 1081930, 762035, 811758, 975774, 810958, 1126317, 887806, 976678, 849869, 304430, 893117, 831794, 783751, 67545, 88116, 834181, 836636, 1032658, 932447, 767549, 959723, 866276, 881767, 1041743, 1035658, 1043138, 1016027, 232609, 958435, 998270, 1043346, 1126267, 845725, 840782, 807974, 1028772, 11258, 876934, 831217, 870157, 906391, 1052164, 831882, 1068326, 299461, 781689, 1126245, 1126244, 972647, 983987, 968667, 783989, 119263, 847301, 856149, 272863, 939453, 1050794, 954363, 1126223, 996876, 814920, 1126215, 974485, 908101, 922237, 961305, 1126209, 992904, 971415, 786171, 1022554, 896672, 807223, 899876, 964608, 792143, 59381, 1126178, 13823, 904780, 1041217, 842703, 1126146, 952165, 332824, 9129, 1049881, 877556, 1108939, 1112389, 792752, 1119729, 1105095, 1105103, 1128373, 1127622, 1124979, 885490, 1119827, 190044, 500575, 883785, 264403, 1108100, 421756, 1108307, 966413, 1111546, 156493, 1124145, 1110199, 1056204, 199143, 835929, 1063750, 1104031, 398483, 432930, 478605, 1044797, 1124464, 1107988, 130510, 1127893, 1135377, 1126206, 645693, 1133328, 646207, 1012021, 489204, 1119075, 573724, 600573, 1120447, 574575, 1055865, 494835, 1126814, 168216, 100983, 194013, 1119092, 1133167, 1133418, 427578, 324211, 11096, 1134787, 89928, 499920, 527433, 40578, 694342, 1125225, 1136427, 1128856, 719381, 53175, 131651, 1037798, 915593, 264014, 1121402, 962179, 1117099, 744366, 277780, 1114563, 1014126, 1117346, 148538, 451602, 474735, 359349, 903469, 1115776, 1104492, 315637, 1112341, 588587, 706080, 117831, 1120868, 1111906, 523270, 133358, 67262, 1121166, 805321, 1129828, 131843, 104861, 833860, 207786, 691330, 1103528, 1132213, 335594, 1134138, 138632, 671071, 705609, 1114819, 855434, 1134463, 747511, 502261, 183378, 654723, 1117387, 479871, 541571, 1106007, 60235, 180442, 710347, 1124210, 287683, 490595, 291865, 794725, 1103812, 436600, 1047259, 964223, 564054, 87181, 1116052, 554515, 443396, 1123581, 714453, 972007, 929033, 433234, 1121709, 88073, 87452, 1005165, 1133249, 953067, 101169, 855410, 1121276, 1114646, 19335, 789700, 47923, 301524, 405717, 165633, 952774, 766511, 1106293, 452431, 1109818, 1047902, 306076, 551040, 1059231, 182539, 1115569, 351697, 904965, 292906, 662372, 364142, 20455, 1119058, 203318, 1126813, 240053, 1115392, 1113437, 1122461, 1116341, 1129237, 912070, 278813, 423273, 507445, 25129, 146187, 634428, 1121986, 321441, 532603, 1030303, 1037496, 1043135, 1045109, 1049519, 1051399, 1056416, 1064670, 1065636, 1071750, 1103153, 1103791, 1104501, 1105792, 1105860, 1106928, 1106979, 1107315, 1107440, 1108450, 1108466, 1108473, 1108651, 1108729, 1109699, 1109707, 1109850, 1110678, 1112142, 1113042, 1113256, 1114166, 1114286, 1114993, 1115210, 1116380, 1117817, 1117886, 1118370, 1118426, 1119118, 1119543, 1120588, 1121353, 1121879, 1122138, 1122767, 1122843, 1123657, 1124552, 1125632, 1125755, 1126523, 1126738, 1127004, 1127233, 1127540, 1128456, 1129081, 1130705, 1130734, 1130847, 1131069, 1132044, 1132247, 1132532, 1132842, 1132943, 1132950, 1133485, 1133579, 1134094, 1134207, 1134431, 1134680, 1134939, 1134988, 1135268, 1135283, 1135413, 1135626, 1136043, 1136047, 1136769, 1136962, 118440, 119821, 121171, 125659, 135802, 141630, 144862, 156498, 166046, 169208, 174463, 175920, 177604, 181626, 197312, 206106, 227873, 23849, 240158, 245052, 246883, 253749, 256942, 257119, 258062, 26703, 273695, 302846, 318362, 324585, 330501, 330975, 332593, 336901, 3505, 360721, 384356, 390360, 405163, 42255, 425632, 426175, 42752, 435548, 436707, 444389, 449367, 452915, 463271, 469589, 47210, 482726, 48792, 50122, 514096, 519025, 53233, 537060, 537817, 543273, 545355, 555530, 583468, 586148, 590019, 605127, 610265, 611953, 640502, 64647, 653399, 655526, 655914, 660198, 67316, 673670, 701453, 703782, 708979, 716113, 730539, 735482, 735922, 75198, 768208, 779302, 792635, 794223, 794429, 801118, 804066, 808400, 809525, 814183, 819983, 849550, 85020, 850358, 86606, 877809, 883915, 88495, 911232, 914916, 91576, 918162, 938400, 940547, 945835, 978031, 985594, 99005, 997622, 999466, 132622], + 'msmarco-passage-dev-subset': [1048585, 2, 524332, 1048642, 524447, 786674, 1048876, 1048917, 786786, 524699, 1048995, 786857, 524722, 873886, 524733, 786918, 786937, 1049085, 262232, 524835, 524848, 1049200, 1049221, 1049329, 1049368, 787255, 262974, 1049456, 1049774, 1049791, 525534, 1288, 1049894, 787784, 1049955, 1050007, 525779, 263670, 811852, 1576, 525868, 306105, 1050231, 1050253, 1050275, 526013, 263889, 788431, 264150, 526331, 788484, 1050670, 1050695, 264284, 1050747, 1050778, 2235, 264410, 788702, 1050857, 437291, 1050923, 526671, 788851, 264594, 830531, 1051095, 1051108, 1051112, 789037, 1051211, 1051214, 1051223, 1051229, 1051257, 264827, 526984, 1051279, 1051285, 1051307, 1051339, 1051352, 1051372, 2798, 1051422, 789292, 1051475, 789332, 1051520, 1051530, 2962, 1051571, 961705, 1038859, 1091234, 1051723, 1051755, 1051808, 527568, 1051886, 1051902, 527625, 1051942, 1051943, 527769, 1052115, 527853, 265729, 790059, 1052274, 790178, 265960, 528117, 1052421, 1052427, 838116, 1052563, 1052585, 1091264, 1052615, 1052640, 830812, 1052717, 1005595, 1052948, 568709, 1052965, 1052985, 528760, 1053111, 528841, 525047, 266760, 1053219, 1053253, 4696, 791140, 266920, 791223, 529090, 267012, 529230, 4947, 1053611, 830973, 1053716, 568841, 267341, 1053896, 1053901, 1053931, 1053992, 1053997, 267566, 791862, 1054023, 791916, 568895, 267644, 918424, 1054186, 1054189, 529918, 1054328, 792187, 1054339, 1093231, 1054438, 1054450, 1054451, 1054468, 5925, 44686, 1054593, 1054595, 1054610, 1091163, 1054707, 792595, 6217, 1091337, 792688, 530572, 792742, 530601, 1054923, 1054958, 1054969, 792847, 1054999, 1055125, 1055176, 1055197, 1055351, 531142, 1091360, 1055505, 793475, 831302, 242713, 1055717, 531490, 1215, 1055889, 1093487, 1055940, 531676, 1056057, 1056060, 831380, 1056163, 1056211, 1056265, 307118, 1056303, 166111, 1056420, 1056437, 1056446, 1056482, 7968, 1056548, 270140, 1056580, 794469, 1056644, 1056726, 1056758, 794625, 525660, 1100134, 1056850, 270422, 1056950, 270520, 270521, 1057015, 270603, 794893, 270642, 1057098, 1057112, 1057139, 1057168, 1057251, 1057270, 88831, 8714, 1057334, 1057367, 533105, 8854, 1057446, 1057476, 1057488, 1057539, 569473, 1057631, 1057656, 9083, 533398, 1057708, 569507, 1057757, 1057937, 1057996, 9454, 1058036, 1058100, 795991, 1058140, 1058141, 1058142, 1058165, 1058182, 794665, 1058271, 1058325, 1058415, 1058442, 1058470, 272075, 1058515, 796383, 831784, 534305, 1058601, 1058604, 569674, 220151, 10205, 1058792, 1058822, 10276, 1058885, 10312, 534617, 272500, 1058952, 1058978, 1059045, 1059077, 1094039, 534941, 272815, 1059253, 1059287, 1059420, 1059421, 535142, 1059442, 273014, 1059496, 1059504, 11006, 1059601, 1059619, 11050, 1059646, 1059698, 11133, 1059801, 273449, 535599, 273481, 535627, 273522, 1059970, 535743, 1060039, 1060040, 176677, 1094191, 812190, 1060305, 1060342, 1060391, 798253, 798284, 1060462, 1094249, 11913, 1060496, 274067, 1060566, 274175, 1060616, 1060623, 536480, 1060795, 1006922, 570023, 262280, 1060868, 1060881, 613727, 536654, 45757, 482666, 798883, 1091545, 536791, 798945, 570068, 1004258, 1061167, 1061210, 1061237, 536995, 1094389, 12741, 1061324, 1061382, 274981, 1061472, 12903, 275049, 275137, 537301, 537410, 308032, 1061762, 275355, 537505, 537526, 275528, 275534, 13397, 537706, 537761, 275629, 537825, 1062190, 1062223, 1062233, 537995, 1062332, 1062334, 1062350, 275997, 1062457, 800318, 1062511, 838453, 1062589, 538309, 1062603, 1094605, 1062609, 538333, 538340, 276208, 46040, 1062687, 14151, 276298, 1062744, 276329, 276338, 276348, 1062784, 832508, 1062928, 1062961, 471850, 576601, 800987, 1063177, 818798, 1063349, 1063371, 276979, 1063461, 1063478, 14947, 14963, 539278, 15039, 801478, 15063, 1063644, 1063659, 1063702, 1063758, 1063765, 1063777, 539601, 277459, 1063892, 539648, 15382, 1063974, 277556, 15441, 801907, 277623, 277632, 1007473, 277701, 1064140, 277737, 1019649, 15607, 1064195, 1064206, 277785, 277799, 539957, 277977, 1064473, 278074, 802372, 1064518, 1064529, 832790, 540306, 253678, 1064687, 540432, 540456, 802634, 1064808, 1064852, 278429, 1094996, 1064961, 278542, 1065032, 278606, 278658, 1065118, 16559, 1065160, 540906, 1065227, 540983, 278863, 1095059, 803237, 541135, 16860, 803306, 1065494, 1065551, 1065558, 541272, 541274, 1065650, 279229, 17110, 1095121, 1065712, 541425, 1065728, 1095126, 803599, 541557, 46579, 1065971, 1065985, 17430, 1066043, 1066116, 279718, 17635, 541948, 804103, 541969, 804197, 279987, 17848, 17884, 789439, 658372, 280223, 18101, 1066709, 1066716, 1066792, 804687, 1066916, 1066958, 1066966, 1066971, 542806, 323592, 804996, 1067276, 1067284, 18759, 280927, 543251, 134239, 1067587, 1067640, 1067659, 281270, 1067724, 1067764, 1067772, 1067826, 543644, 19457, 805900, 543813, 19552, 281702, 281704, 543849, 1095542, 543951, 1068276, 1068290, 544060, 281930, 1068408, 544123, 19940, 544277, 544308, 544319, 282214, 1068715, 806574, 1068726, 282397, 806688, 282411, 833507, 995787, 1068924, 20356, 1068952, 305650, 282530, 20432, 1069028, 544745, 1051990, 544811, 1069108, 1069128, 20597, 1069222, 20671, 544974, 1069313, 833579, 1069327, 1069344, 1069405, 1069474, 1069521, 1069556, 283141, 545359, 1052089, 1069717, 807585, 545450, 21185, 576822, 283344, 545575, 178325, 283548, 1069981, 1069983, 807880, 1070131, 545847, 808019, 21603, 1100581, 21741, 21765, 1095899, 1070412, 21861, 1070452, 284072, 808362, 21948, 1070546, 463373, 790110, 1095952, 284313, 546459, 22231, 808716, 1070867, 47419, 284565, 22479, 1071061, 546825, 1071198, 546956, 1071270, 547018, 547089, 1071389, 547139, 22882, 1071485, 1071534, 1071545, 547301, 285158, 1071598, 809556, 484454, 1071722, 166625, 285375, 831030, 23285, 809798, 47588, 285537, 1071992, 309745, 809933, 285656, 285729, 1072188, 548036, 810210, 810242, 548099, 1057007, 810270, 178741, 810324, 47674, 1072479, 1072513, 810394, 548254, 286160, 1072603, 1072750, 548475, 1052610, 810680, 1072874, 47741, 548673, 1072988, 24441, 790536, 1073358, 1073365, 24807, 549135, 24979, 1073569, 25025, 25036, 47864, 549342, 1073640, 1073721, 1073801, 1073805, 25294, 821372, 703268, 1073943, 1073972, 1073980, 1074001, 549731, 549738, 559507, 25534, 25603, 1096557, 287912, 1074499, 812387, 288139, 550331, 288200, 26079, 26207, 1074804, 1074807, 397592, 1096644, 550565, 812734, 1074883, 550609, 26334, 1074949, 1096667, 1074989, 1074995, 1074997, 934889, 288702, 26664, 1075244, 1075262, 1075313, 288884, 1075336, 1075348, 551119, 26847, 1075588, 1075591, 1075608, 1075636, 1075656, 551413, 289276, 1075713, 1075741, 786520, 572517, 1075919, 289556, 289586, 1076030, 813899, 1076078, 551819, 551860, 27618, 289812, 1076269, 27743, 1100783, 814282, 27932, 1074603, 28216, 814699, 290488, 834848, 290499, 48417, 1077000, 1077002, 1077006, 290585, 1077019, 290632, 814964, 814987, 552868, 815015, 290779, 1097040, 290830, 1077356, 1097066, 815243, 105709, 815420, 815421, 29097, 291248, 815580, 29169, 291396, 1077844, 922398, 291516, 29416, 1078187, 29612, 1078198, 1078222, 1097236, 816289, 1078446, 1078491, 292094, 1097259, 572978, 816483, 292225, 1078731, 1078752, 30188, 1078765, 554511, 1078906, 1078920, 554738, 816893, 1079050, 1079086, 292676, 1079231, 292813, 398335, 1079340, 1079434, 555179, 817349, 1079535, 227992, 817597, 555458, 791629, 31222, 1079815, 1079817, 1079831, 293401, 555558, 293421, 555590, 1079888, 1079959, 1079987, 31432, 1080010, 1080031, 555750, 555850, 31595, 952520, 1080253, 1080406, 1080419, 293992, 556144, 556166, 1080495, 556217, 556248, 1080537, 1080555, 556307, 879155, 1097619, 32176, 818612, 556476, 556587, 1080937, 1080939, 1080948, 1080950, 818819, 1080970, 818842, 1081086, 1081091, 32642, 556952, 556976, 1097723, 1081338, 557157, 1054071, 295135, 1081569, 1081595, 1081609, 557401, 557417, 1081730, 819618, 557492, 1081946, 1082002, 1082091, 1082117, 1082242, 1082263, 1082265, 1082281, 1082332, 1082336, 1082339, 1082341, 1082351, 1082384, 1100986, 1082427, 1082445, 1082448, 1082455, 1082501, 1082502, 1082531, 1082536, 1082547, 558263, 1082576, 34015, 1082603, 1082607, 34039, 1082622, 1082653, 1082668, 1082730, 558448, 1082750, 1082751, 1082759, 1082779, 1082792, 1082807, 1082835, 1082840, 1082870, 1082872, 1082877, 1082893, 1082924, 1082947, 1082948, 1082966, 1082978, 1083000, 1083010, 1083017, 1083021, 1083052, 1083085, 839137, 1083092, 1083095, 1083108, 820973, 1083125, 1083127, 1083150, 1083152, 1083157, 1083158, 1083161, 1083243, 1083267, 1083268, 1083278, 1083285, 1083296, 559009, 559018, 1083307, 1098057, 1083332, 1083340, 1083341, 1083342, 1083345, 1083361, 1083362, 1083401, 1083410, 296993, 1083428, 1083430, 1083443, 1083472, 559198, 1083493, 1083499, 1083500, 1083502, 1083508, 1083517, 1083535, 1083537, 1083584, 1083597, 1083598, 1083611, 1083627, 1083641, 1083663, 1083675, 1083690, 1083713, 1083721, 1083722, 1083727, 1083743, 1054440, 1083783, 1083791, 1083797, 1083800, 1083819, 1083822, 1083831, 1083832, 1083846, 1083852, 1083865, 559607, 1083909, 1083933, 1083945, 1083948, 1083967, 559709, 1084038, 1084041, 1084075, 1084076, 1084086, 297672, 1084192, 1084197, 1084230, 1084233, 559959, 1084273, 1084276, 1084289, 1084301, 1084308, 1084324, 1084326, 1084330, 1084336, 1084354, 1084383, 1084403, 1084408, 1084435, 1084441, 1084469, 1084475, 1084478, 1084512, 1084516, 1084518, 560245, 1084555, 1084582, 1084599, 1084602, 1084603, 1084624, 1084686, 36133, 1084712, 1084713, 1084722, 822585, 1084755, 1084769, 822649, 1084814, 1084838, 1084848, 298444, 1084887, 1084889, 1084898, 1084906, 1084910, 1084930, 1084942, 1084971, 1084982, 1084986, 822859, 1085008, 1085013, 1085048, 1085139, 1085141, 1085192, 1085197, 1085229, 1085245, 1085279, 1085288, 1085303, 1085319, 1085327, 1085339, 1085341, 823203, 1085348, 1085351, 1085356, 298940, 1085386, 1085393, 1085421, 1085422, 1085434, 1085441, 1085454, 299023, 1085456, 1085457, 1085510, 1085517, 1085521, 299094, 1085532, 1085533, 1085535, 299110, 1085545, 1085550, 823421, 1085572, 1085584, 1085586, 1085613, 1085630, 1085658, 1085674, 576360, 1085733, 1085741, 1085760, 1085762, 1085764, 1085775, 1085777, 1085779, 1085780, 299350, 1085796, 1085804, 1085812, 1085842, 1085845, 1085862, 1085889, 1085918, 1085924, 1085930, 1085936, 1085943, 1085967, 1085980, 1086008, 1086014, 1086022, 1086046, 1086075, 1086085, 1086120, 1086145, 299732, 1086174, 1086186, 1086200, 1086224, 1086241, 1086266, 1086271, 1086281, 1086288, 1086296, 1086305, 1086309, 1086326, 1086354, 299939, 1086384, 1086385, 1086424, 1086430, 1086439, 530602, 1086468, 1086491, 1086498, 530611, 1086532, 1086555, 1086565, 1086575, 1086581, 1086594, 1086595, 1086628, 1086637, 1086679, 1086681, 1086693, 1086701, 1086708, 1086713, 1086715, 300312, 1011248, 1086760, 1086765, 1086834, 1086836, 1086855, 1086860, 1086874, 1086883, 1086886, 1086893, 1086915, 1086917, 1086927, 1086928, 1086942, 1086974, 1086976, 1087014, 1087018, 1087042, 1087046, 1087047, 1087050, 1087061, 1087066, 1087074, 1087077, 1087105, 300674, 1087114, 562827, 1087122, 1087126, 1087129, 1087171, 1087173, 1087185, 1087186, 1087204, 1087215, 1087226, 1087238, 1087269, 1087309, 1087317, 1087327, 1087351, 1087361, 300933, 1087375, 792900, 563119, 1087425, 1087435, 1087455, 1087484, 1087486, 1087487, 1087492, 301061, 1087514, 1087544, 1087556, 1087566, 1087581, 1087603, 1087604, 1087609, 1087634, 1087675, 1087680, 1087687, 1087690, 1087722, 1087727, 1087728, 1087729, 1087736, 1087764, 1087766, 1087774, 1087795, 1087803, 1087835, 1087848, 1087858, 1087869, 1087870, 1087904, 1087911, 563652, 1087959, 1087967, 1087969, 1087999, 825948, 825954, 1088138, 39577, 1088164, 1088209, 1088210, 1088211, 1088221, 563943, 1088252, 1088254, 563995, 1088302, 1088309, 1088311, 1088332, 1088349, 1088358, 1088379, 1088434, 1088437, 1088444, 1088453, 1088475, 1088502, 1088510, 1088512, 1088515, 1088539, 1088541, 1088606, 1088628, 40056, 1088648, 1088653, 826513, 1088658, 1088685, 1088693, 1088715, 1088734, 1088742, 1088758, 302337, 564509, 1088800, 1088816, 1088832, 1088845, 1088856, 1088869, 1088875, 1088884, 1088889, 1088903, 40337, 1088915, 1088928, 1088938, 1088958, 1088960, 1088973, 1088987, 1088993, 1089001, 1089002, 1089021, 1089022, 1089026, 1089027, 1089036, 1089043, 1089044, 1089051, 1089071, 1089085, 1089093, 1089121, 1089143, 1089156, 1089158, 1089164, 1089167, 1089177, 1089214, 1089246, 1089273, 1089277, 1089286, 1089293, 1089312, 1089325, 1089355, 1089376, 1089401, 1089406, 1089408, 1089414, 1089434, 1089438, 1089443, 1089469, 560673, 1089498, 1089501, 1089511, 565231, 1089521, 1089541, 1011713, 1089558, 1089560, 1089576, 1089597, 1089619, 1089639, 1089645, 1089656, 1089674, 1089678, 1089683, 1089688, 1089691, 1089693, 1089696, 1089706, 1089719, 1089727, 1089750, 1089760, 1089763, 1089776, 1089787, 1089804, 1089805, 1089810, 1089832, 1089846, 1089868, 1089896, 1089906, 1089925, 1089940, 1089945, 1089964, 1089966, 1089983, 565696, 1090029, 1090043, 1090054, 1090063, 1090072, 1090077, 1090086, 1090100, 1090102, 1090107, 1090110, 1090115, 1090132, 1090146, 1090151, 565868, 1090165, 1090170, 1090171, 1090184, 303777, 303790, 1090242, 1090270, 1090350, 1090364, 303934, 1090374, 1090388, 813193, 1090395, 1090400, 1090456, 1090458, 566174, 1090472, 1090530, 1090540, 41969, 1090613, 566335, 1090624, 909221, 1090700, 1090701, 828596, 1090742, 1090758, 1090791, 1090808, 1011925, 1090833, 1090838, 1090839, 1090841, 1090842, 1090861, 1090869, 1090877, 1090886, 1090910, 828779, 1090924, 837181, 42361, 1090945, 1090965, 1090987, 1091015, 1091048, 1091059, 1091068, 1091108, 1091112, 1091115, 1091116, 42568, 400311, 1091153, 1091164, 829025, 1091173, 1091177, 1091194, 566946, 1091246, 829103, 1091255, 1091330, 1091340, 1091421, 567159, 1091450, 1091467, 1091471, 1091473, 1091479, 1091513, 1091520, 1091522, 1091529, 1091535, 829425, 1099433, 1091576, 1091595, 1091630, 1091643, 1091654, 1091659, 1091661, 1091665, 1091667, 1091681, 1091688, 1091715, 1091719, 567443, 567452, 1091749, 305333, 1091767, 1091786, 305361, 1091807, 1091811, 1091833, 1091865, 567630, 1091923, 1091941, 1091955, 1091983, 1092005, 1092007, 1092010, 1092013, 1092023, 1092042, 837375, 1092093, 1092095, 1092105, 1092108, 1092120, 1092143, 1092159, 1092161, 1092162, 1092165, 1092168, 1092176, 1092180, 567895, 1092203, 1092236, 1092237, 1092238, 1092257, 1092258, 1092259, 1092263, 1092297, 1092311, 1092327, 1092330, 1092342, 1092348, 43781, 1092391, 1092394, 1092416, 1092417, 1092470, 1092474, 1092482, 1092484, 1092522, 1092528, 1092543, 1092551, 1092557, 1092605, 924844, 1092643, 44072, 1092665, 830551, 1092715, 1092724, 1092738, 1092751, 1092756, 1092757, 1092759, 1092791, 1092792, 1092796, 568526, 1092822, 1092832, 1092858, 1092863, 1092865, 1092870, 568585, 1092910, 1092911, 1092919, 568649, 1092942, 1092952, 1092972, 1092978, 1092984, 568703, 1092996, 1093006, 1093031, 1093038, 1093042, 1093064, 1093094, 1093096, 1093104, 1093107, 1093112, 1093128, 1093172, 1093179, 1093181, 831052, 1093200, 1093202, 1093235, 1093238, 1093255, 1093256, 1093305, 1093312, 1093359, 1093399, 1093405, 1093406, 1093407, 1093410, 1093419, 307005, 1093438, 1093443, 1093444, 831315, 1093462, 1093481, 206762, 1093534, 1093540, 1093552, 1093556, 1093561, 1093564, 1093570, 1099767, 1093621, 1093637, 1093650, 1093682, 1093698, 45125, 831560, 1093717, 1093723, 1093732, 831601, 1093750, 1093757, 1093773, 1093781, 1093786, 1093791, 1093795, 569555, 1093845, 1012431, 1093855, 1093866, 1093875, 1093881, 1093901, 1093915, 1093920, 307492, 1093926, 1093927, 1093941, 307521, 1093959, 1093962, 1093966, 1093971, 569689, 1093998, 94953, 831871, 1094027, 1094056, 1094062, 1056159, 1094081, 1094085, 51276, 831962, 1094110, 1094141, 1094145, 45590, 1094175, 1094197, 1094204, 1094215, 1094220, 569939, 1094232, 1094241, 1094271, 1094275, 1094316, 832188, 570070, 1094364, 1094369, 1094370, 1094394, 1094406, 1094440, 1094451, 1094453, 1094460, 1094469, 1094477, 45924, 1094501, 1094509, 1094519, 1094536, 1094566, 1094578, 1094579, 1094612, 1094634, 46095, 1094689, 1094691, 1094693, 1094699, 1094724, 1094755, 1094759, 1094825, 1094840, 1094869, 1094943, 1094959, 1094962, 1094982, 1094991, 1094999, 1095012, 570725, 1095055, 1095058, 1095066, 1095085, 1095092, 1095108, 308687, 1095155, 570905, 1095233, 1095238, 570979, 1095278, 46711, 1095306, 1095308, 1095332, 1095335, 1095354, 1095357, 1095360, 1095371, 1095377, 571103, 1095437, 1095469, 1095478, 1095490, 1095495, 1095523, 1095537, 1056405, 1095555, 1095557, 1095558, 1095560, 1095566, 1095571, 1095631, 1095633, 1095641, 1095650, 1095654, 1095687, 1095699, 1095704, 1095705, 1095711, 1095716, 1095723, 1095725, 1095747, 1095749, 571474, 1095787, 1095798, 1095806, 1095807, 1095816, 1095845, 47270, 1095856, 1095857, 1095864, 1095868, 1095874, 1095876, 1095881, 1095921, 1095922, 1095928, 1095942, 1095955, 1095966, 1095971, 1095982, 571696, 1095988, 1095994, 95286, 1096006, 1096021, 1096025, 1096044, 1096045, 1096049, 1096065, 1096087, 1096118, 1096126, 1096180, 1096207, 1096211, 1096227, 571954, 1096252, 1096256, 1096258, 1096262, 1096268, 47716, 1096311, 1096347, 1096357, 1096360, 1096368, 1096371, 1096375, 1096376, 1096401, 1096425, 1096429, 1096431, 1096454, 1096457, 1096463, 1096475, 1096476, 1096479, 1096493, 1096498, 1096509, 1096516, 1096527, 1096532, 1096533, 1096541, 1096543, 1096551, 572286, 1096605, 1096607, 1096610, 1096619, 1096620, 1096628, 1096641, 1096656, 1096658, 1096694, 1096712, 1096739, 1096776, 1096787, 1096788, 1096794, 1096823, 1096827, 1096830, 1096840, 1096850, 1096855, 1096866, 1096870, 1096886, 1096887, 1096911, 1096932, 1096943, 1096944, 1096945, 1096947, 1096958, 1096964, 1096983, 1096998, 1097014, 1097023, 1097027, 1097069, 1097087, 1097093, 1097100, 1097118, 1097119, 1097135, 1097153, 1097154, 1097195, 1097198, 313940, 1097213, 1097223, 1097242, 310853, 1097294, 1097298, 1097304, 1097314, 1097317, 835206, 1097359, 1097373, 310948, 1097386, 1097438, 573157, 1097448, 1097449, 1097461, 1097469, 1097492, 311067, 1097508, 1097523, 1097537, 1056742, 48998, 1097585, 1097602, 835478, 1097674, 1097721, 573452, 1097746, 1097786, 1097796, 49234, 1005907, 1097894, 1097905, 1097906, 1097909, 1097937, 1097979, 1097995, 1097999, 1098010, 49435, 1098013, 1098044, 1098048, 1098071, 1098090, 1098101, 1098102, 1098110, 1098111, 1098169, 1098180, 1098182, 1098222, 1098226, 1098236, 573954, 1098249, 1098276, 1098284, 574002, 1098322, 1098338, 1098354, 1098355, 1098422, 1098440, 1098452, 1098481, 1098497, 1098510, 1098520, 1098523, 1098536, 1098556, 1098561, 1098570, 1098600, 1098608, 1098609, 1098641, 1098646, 1098698, 1098719, 1098725, 1098763, 1098765, 836640, 1098787, 312368, 1098802, 1098804, 1098809, 574547, 1098846, 574569, 1098860, 1098874, 1098895, 1098905, 1098909, 1098927, 1098967, 836832, 1099050, 1099065, 1099072, 1099084, 1099099, 1099108, 1099178, 1099189, 1099217, 1099219, 1099226, 574944, 1099244, 1099284, 1099288, 1099290, 1099321, 1099340, 1099342, 837202, 1099351, 1099368, 575096, 1099391, 575146, 1099451, 1099452, 1099456, 50891, 1099482, 1099488, 1099530, 575268, 1099595, 837476, 1099626, 1099632, 1099636, 1099653, 1099656, 1099670, 575407, 1099700, 1099706, 1099729, 1099733, 1099739, 1099756, 1099761, 575492, 1099805, 1099806, 1099816, 1099834, 1099836, 1099855, 1099859, 1099865, 1099880, 1099888, 1099903, 1099911, 1099914, 1099943, 1099947, 1099955, 1099980, 1099981, 1099985, 1099998, 1100010, 1100035, 1100051, 1100064, 1100070, 1100077, 1100094, 1100105, 1100106, 1100119, 1100137, 1100138, 1100143, 1100151, 1100167, 1100168, 1100173, 1100187, 1100188, 1100190, 1100192, 1100218, 1100224, 1100226, 1100229, 838101, 1100299, 1100308, 1100319, 1100357, 1100370, 1100403, 1100415, 1100438, 1100454, 1100455, 1100457, 1100458, 576195, 1100486, 1100488, 1100492, 1100496, 1100499, 1100505, 1100533, 1100537, 1100541, 1100544, 1100580, 576312, 1100634, 1100640, 1100661, 1100687, 1100724, 1100732, 314307, 576452, 1100765, 1100772, 1100816, 1100839, 1100852, 1100855, 1100875, 1100919, 1100930, 1100933, 1100980, 838845, 1101018, 1101044, 1101048, 1101055, 1101088, 1101090, 1101121, 1101171, 1101172, 1101173, 1101211, 1101214, 1101228, 1101236, 1101259, 1101276, 1101278, 1101279, 1101296, 1101300, 1101336, 1101341, 1101347, 8798, 1101374, 1101394, 577131, 445714, 1101434, 1101448, 577167, 1101466, 1101467, 1101503, 1101535, 1101552, 315131, 1101566, 1101567, 1101568, 1101576, 1101603, 1101661, 1101665, 1101668, 1101670, 1101674, 1101706, 1101714, 315291, 1101739, 1101761, 1101131, 53191, 1101784, 1101806, 576851, 1101822, 1101861, 1101869, 1101870, 1101902, 1101906, 1101961, 1101977, 1101995, 1102001, 839878, 1102028, 1102088, 577813, 1102121, 1102163, 840053, 1102206, 577930, 1102235, 1102240, 1102262, 1102300, 315884, 1102325, 1102330, 1102335, 53814, 1102393, 1102400, 53897, 708038, 53991, 840445, 1101271, 839128, 54040, 1092930, 578362, 1101282, 840532, 1101298, 54199, 1101303, 54235, 571237, 54307, 314907, 578735, 578783, 574730, 54531, 54544, 841020, 1101365, 54648, 795540, 316803, 841165, 54819, 54843, 579133, 882982, 1101443, 841521, 227637, 579479, 55223, 841665, 1014131, 841919, 841961, 841980, 489858, 842070, 842108, 55682, 55691, 140367, 842221, 842223, 842272, 55848, 842333, 318073, 580313, 56033, 580411, 580450, 842596, 56188, 580483, 988253, 839528, 53109, 1101698, 843140, 1101721, 1101723, 56740, 953355, 36388, 843409, 56993, 795951, 577511, 581521, 57258, 581552, 581666, 319564, 1101845, 319652, 581801, 1101868, 57614, 1101871, 581975, 844128, 796056, 970830, 604229, 582146, 792977, 320025, 57882, 320051, 844390, 320117, 58074, 58130, 844594, 320320, 1058284, 582557, 582641, 752473, 58409, 582705, 58551, 582848, 58571, 58583, 1093082, 320792, 58801, 320970, 1014697, 845304, 583234, 59030, 583325, 583369, 59084, 321239, 845529, 1086279, 59190, 59204, 59217, 845719, 583611, 845790, 59392, 583686, 59426, 845888, 845892, 1102177, 583766, 583798, 9926, 583916, 840061, 846082, 59654, 307504, 1084389, 321918, 321951, 846291, 1014885, 846438, 1049484, 322211, 846513, 322345, 584500, 584569, 584592, 60339, 60357, 846806, 584695, 1093142, 1102351, 584905, 60677, 141185, 578100, 53813, 1058717, 585165, 10157, 323096, 323154, 585344, 585378, 61180, 323382, 61277, 847722, 847726, 323535, 585680, 323555, 61452, 585743, 585806, 1005888, 61531, 61623, 1058853, 848100, 323815, 61836, 323998, 61882, 586268, 848432, 324159, 848478, 1093196, 62055, 62136, 62411, 62439, 586740, 586785, 324645, 586790, 62554, 586916, 62648, 849142, 272605, 849337, 927989, 587326, 849561, 325292, 63152, 587524, 199442, 587674, 403793, 97972, 63548, 587853, 176701, 578607, 325929, 850236, 185397, 588122, 51054, 850450, 326190, 850555, 850557, 64179, 971904, 326410, 326417, 588627, 326509, 850820, 753479, 447648, 326629, 588829, 851004, 326719, 64711, 64960, 851425, 65000, 65038, 851490, 589423, 489257, 65267, 589564, 851813, 65488, 589777, 327640, 65583, 65584, 852037, 327750, 589903, 65627, 852179, 65770, 1093322, 328072, 65957, 271038, 66161, 66281, 328474, 328527, 66389, 1058425, 328611, 328629, 328704, 590861, 1093349, 590945, 328814, 591026, 66771, 66908, 853344, 329114, 1091569, 591310, 853471, 203003, 67200, 853646, 329369, 853699, 1102099, 329515, 853882, 1059820, 853995, 591898, 591940, 854085, 591993, 28442, 329901, 67802, 329958, 592192, 592220, 592235, 672429, 68095, 220495, 592495, 330419, 330450, 592601, 854785, 1016281, 592672, 330560, 854862, 330640, 1049767, 987720, 855031, 613318, 330792, 68832, 593135, 593275, 331141, 855546, 331352, 593541, 855725, 855727, 593732, 593792, 69506, 855968, 856171, 230082, 69789, 69871, 594295, 856568, 70340, 332600, 70504, 594793, 594831, 70595, 594930, 332797, 70709, 70720, 70787, 70852, 1093491, 333327, 71238, 988754, 595568, 595577, 333434, 831474, 333486, 1093507, 333579, 1049867, 333700, 596088, 596130, 1016869, 878615, 596468, 334433, 72398, 334558, 596716, 72435, 99461, 72485, 334754, 72613, 788035, 334867, 334904, 334916, 859229, 859274, 859376, 73094, 597384, 73106, 597395, 73119, 46081, 859669, 73257, 859870, 335710, 335711, 597870, 860071, 335910, 99676, 73788, 860266, 73853, 860462, 860542, 796812, 860655, 74328, 74356, 860942, 598802, 74637, 861169, 74759, 337073, 861403, 857943, 861433, 337190, 337209, 798967, 449442, 599524, 599550, 75266, 709559, 75335, 75342, 337509, 599720, 667932, 875417, 75608, 75698, 75717, 337864, 56323, 75801, 338040, 405867, 862345, 600231, 1102390, 862448, 600350, 862640, 76283, 862856, 338637, 1050033, 338696, 338713, 143849, 863112, 76770, 338917, 1017687, 601128, 339009, 863387, 77034, 863623, 863738, 77323, 601624, 601629, 339501, 77391, 601684, 77424, 77491, 339888, 339934, 339981, 340006, 77878, 602352, 864507, 602413, 602652, 78418, 1017966, 340712, 602957, 78730, 603031, 603050, 755878, 341039, 865426, 865476, 865518, 341317, 603773, 865971, 341736, 866101, 79698, 866139, 866251, 604113, 604153, 79891, 362845, 342115, 866428, 342156, 342285, 342450, 604619, 604628, 604673, 1061994, 80590, 604954, 1018359, 80876, 605169, 867490, 81075, 81137, 605467, 605648, 867947, 821068, 81649, 974808, 868184, 606117, 343976, 868410, 81993, 868487, 868525, 82100, 82161, 868598, 344400, 57402, 82293, 57411, 82379, 868919, 995654, 869035, 606944, 712832, 82842, 869308, 869348, 82949, 607292, 607338, 259885, 975040, 607374, 869519, 345350, 345453, 607599, 869759, 869827, 83448, 83458, 869891, 83506, 607855, 83621, 450851, 188714, 1016611, 870348, 608323, 870544, 916306, 870693, 608557, 870861, 870875, 84473, 84520, 844211, 997932, 609024, 84778, 609104, 871376, 85053, 85095, 1091690, 609469, 800652, 609628, 954307, 347491, 609799, 872081, 609956, 610056, 975495, 610128, 610132, 610190, 85904, 872347, 482412, 85954, 348136, 86094, 348242, 1019236, 610425, 800792, 872632, 86203, 872655, 1019262, 86264, 872777, 872823, 931905, 872855, 610716, 872869, 348594, 872946, 610898, 86624, 669800, 610940, 348869, 873250, 348994, 611199, 611271, 87019, 611366, 611468, 58234, 611747, 873914, 975775, 189355, 87701, 874299, 87892, 87926, 874455, 88160, 612471, 874691, 1090542, 88284, 88375, 612670, 874827, 874876, 858391, 874914, 612846, 88577, 535421, 613179, 613214, 613233, 89143, 622734, 875787, 875796, 1019783, 613694, 757644, 89418, 613755, 875986, 613852, 613870, 89610, 351820, 614047, 89777, 614069, 888777, 89786, 614121, 614186, 614286, 352236, 614409, 90169, 90209, 614598, 876924, 352818, 877161, 1063709, 932639, 615219, 90941, 877453, 615383, 615457, 615624, 91345, 877810, 877845, 91422, 353623, 877938, 91711, 91722, 616045, 91790, 91881, 878367, 616331, 354222, 823596, 616447, 92260, 980726, 354515, 878817, 878840, 92437, 627085, 878959, 92542, 471983, 617167, 617246, 1085497, 321363, 879657, 93234, 93308, 93311, 355458, 879747, 617611, 355484, 998223, 1064155, 617795, 93649, 1020500, 93823, 618223, 452572, 880527, 618408, 618486, 880766, 618818, 356916, 94782, 619087, 94865, 619159, 540109, 357162, 881582, 357340, 881695, 881723, 619675, 95409, 619805, 38098, 882002, 95651, 882141, 358150, 358240, 147090, 96250, 96310, 358455, 96379, 96420, 1091765, 96602, 1020999, 620992, 96749, 883282, 359040, 1094361, 621419, 97295, 359499, 883861, 453175, 97612, 97652, 97766, 759038, 622100, 97895, 97964, 989644, 884533, 98151, 802794, 884722, 693736, 622658, 622725, 884870, 884878, 893642, 42555, 622893, 885081, 98682, 885153, 885184, 98817, 98847, 885301, 885308, 623281, 885433, 885505, 1024599, 99183, 247717, 99267, 234998, 361594, 361620, 885932, 885986, 99556, 623857, 99805, 624143, 362016, 624176, 886332, 624199, 362076, 886382, 100013, 100020, 100046, 822937, 624503, 100250, 100307, 624644, 100364, 584727, 624790, 605651, 497360, 624876, 100616, 100661, 625022, 1065388, 143025, 887392, 887395, 887398, 919913, 625458, 363332, 1065448, 101451, 887906, 363637, 625782, 888100, 626005, 626232, 626318, 888559, 626462, 888796, 978259, 626701, 888911, 888934, 102506, 191853, 888988, 889046, 102627, 626918, 889104, 102695, 483521, 889289, 365044, 627323, 103125, 627513, 1094575, 847415, 628056, 628085, 1022198, 890532, 824000, 628532, 104290, 890890, 978605, 803861, 891082, 891498, 891565, 367290, 517245, 891719, 1049926, 1066161, 17586, 105549, 300306, 760367, 892224, 892329, 892454, 368229, 630391, 106125, 106508, 368728, 630905, 893275, 107077, 893681, 1022762, 107283, 164946, 893789, 631724, 236362, 894161, 632055, 323798, 107812, 632106, 369981, 632192, 370068, 1094727, 108037, 632394, 1094731, 632455, 370316, 894610, 632536, 632625, 108507, 632825, 804523, 370734, 108622, 632923, 370979, 542431, 633153, 149221, 371204, 633350, 760930, 633617, 633635, 1023111, 1042399, 895932, 371695, 633916, 109647, 633986, 633994, 634038, 109819, 634113, 634126, 109841, 634174, 372070, 896383, 518675, 372137, 326637, 634412, 634489, 372378, 634583, 896931, 372792, 635044, 635058, 635079, 897240, 635125, 804905, 635150, 635237, 897401, 373121, 463133, 897476, 373209, 635497, 635626, 897789, 635647, 897910, 897953, 635823, 897981, 111723, 630318, 636188, 280796, 111995, 112035, 280825, 761425, 1094863, 636434, 636437, 898686, 898714, 112318, 149801, 112477, 374690, 636853, 636929, 374799, 636949, 112718, 717845, 899212, 637208, 637234, 899423, 18840, 375291, 929046, 637459, 899800, 899869, 900062, 900076, 900077, 113664, 113732, 375891, 900450, 900599, 638503, 900696, 900731, 376537, 638723, 900924, 638795, 114573, 114633, 114638, 638928, 849245, 639084, 313262, 639163, 901355, 639412, 639545, 639560, 115365, 674595, 1086248, 377805, 115704, 640103, 115833, 412532, 115930, 640232, 47513, 902657, 79763, 902855, 116431, 116455, 1067990, 902919, 902931, 116517, 1024312, 309402, 893271, 903235, 116820, 849596, 641156, 955359, 116939, 237945, 641284, 641293, 117036, 903479, 117113, 379337, 641583, 641618, 903811, 980789, 904007, 117683, 980811, 117728, 642032, 194430, 642352, 904542, 1100639, 904727, 118365, 118457, 380755, 905057, 905479, 119089, 119168, 905604, 643561, 905707, 643572, 905766, 119534, 119683, 906126, 644023, 119761, 194724, 544260, 119975, 1068584, 906692, 644658, 833268, 644746, 824542, 907046, 907127, 645024, 645252, 121017, 121023, 38946, 645343, 907538, 1095165, 645472, 645604, 850361, 907997, 645892, 908069, 908154, 646071, 908237, 908316, 646179, 908489, 646354, 384406, 646623, 564707, 122440, 831815, 122582, 719488, 122639, 909111, 384845, 909176, 122807, 384985, 647260, 909547, 20520, 647503, 647687, 680490, 909886, 385652, 123529, 647872, 647876, 647949, 123710, 910150, 648049, 648119, 123859, 798469, 910375, 123975, 124128, 910622, 910777, 910818, 910870, 386653, 124534, 545052, 648877, 911032, 911056, 588775, 124787, 649110, 649200, 492988, 649294, 562821, 64528, 257309, 649451, 911605, 108287, 588888, 387603, 649763, 387662, 125545, 649893, 125627, 865384, 387848, 125705, 387864, 650076, 912234, 125842, 125898, 125996, 650378, 650462, 850919, 388465, 388588, 912879, 912898, 126491, 126525, 912961, 912992, 913098, 913137, 913286, 651187, 913374, 913509, 127098, 389258, 913568, 913579, 1098953, 632726, 389385, 127315, 850957, 938773, 127682, 977467, 914321, 914368, 914406, 127984, 914545, 128158, 128166, 128178, 128200, 914637, 1026258, 652556, 914707, 914771, 390484, 1086675, 807845, 178859, 652912, 128633, 390813, 652961, 895263, 653041, 938963, 653054, 653092, 915305, 653187, 391101, 391125, 915544, 129205, 129228, 129229, 915762, 915769, 129491, 129517, 391662, 129641, 129684, 916186, 129792, 129837, 130034, 392195, 654459, 392350, 633375, 392393, 392488, 654633, 392501, 633399, 786477, 916901, 1070324, 917015, 917022, 808200, 1070361, 655046, 21793, 392905, 655057, 392936, 130825, 917283, 917334, 130932, 917489, 393203, 917536, 393268, 393420, 393462, 917789, 371420, 917825, 1026789, 393696, 131597, 131665, 153027, 393881, 131768, 393954, 824920, 131873, 394021, 918324, 131925, 394095, 656250, 656345, 656371, 656376, 132104, 132151, 240489, 132263, 656602, 132317, 132359, 918800, 132473, 656859, 808528, 983299, 132639, 657091, 919310, 395038, 1070728, 657204, 896479, 657264, 133037, 395382, 919712, 395538, 939744, 395786, 657974, 763878, 920218, 808746, 134014, 920458, 658498, 396391, 920717, 920753, 658667, 920885, 789997, 921173, 66154, 134861, 659182, 921348, 659230, 397090, 659247, 135079, 921621, 397417, 921812, 135386, 135464, 135465, 135516, 922024, 135633, 135635, 659929, 660046, 922335, 660220, 922389, 109276, 22670, 136098, 398258, 136157, 922593, 660479, 136209, 660534, 398447, 660672, 660803, 660957, 136700, 503381, 660999, 661028, 661076, 459707, 661398, 399364, 399414, 399527, 137411, 137440, 399617, 137508, 853057, 924047, 661945, 662016, 399970, 137889, 137919, 662282, 662334, 138127, 924567, 662436, 138223, 662524, 138266, 372586, 924895, 400631, 138492, 924978, 400692, 126821, 925059, 138629, 138640, 400803, 663006, 138793, 663131, 139090, 663388, 925571, 401287, 139239, 925766, 23223, 663679, 110614, 139405, 663771, 401640, 925951, 663820, 926019, 663890, 926064, 663950, 401878, 1028179, 139767, 664138, 139897, 664194, 139929, 402075, 926436, 140161, 402318, 140216, 140238, 926700, 402417, 402427, 926980, 140696, 1090961, 665009, 927196, 140804, 809909, 198246, 140921, 665231, 403095, 927553, 766272, 547820, 403361, 403388, 403454, 161828, 141353, 766301, 722615, 141472, 984774, 665972, 141694, 488021, 403954, 404051, 142039, 928478, 404202, 928567, 928572, 142153, 928753, 589586, 142382, 666694, 142411, 666792, 404713, 142579, 142782, 142831, 667136, 405036, 929372, 405090, 1090329, 929473, 667373, 405238, 405310, 405330, 1028752, 667535, 143293, 143424, 143464, 405660, 1072500, 1072506, 405737, 930124, 155041, 405985, 930293, 930326, 111377, 406140, 679360, 144028, 406181, 930483, 406205, 941515, 930534, 930549, 930621, 406351, 406386, 144254, 144285, 930721, 406525, 406576, 144491, 1034839, 144528, 406718, 746785, 144682, 24115, 144694, 931147, 240504, 669046, 406923, 406974, 144857, 407102, 407131, 669288, 407274, 669427, 669444, 931726, 931772, 810660, 931940, 407662, 669979, 407869, 670022, 145821, 670142, 145877, 408134, 408149, 932495, 417570, 408275, 670437, 670476, 146212, 146244, 146269, 408419, 408427, 932735, 670600, 1090352, 408563, 932878, 670829, 408696, 408739, 146598, 408765, 933132, 408945, 933236, 146812, 409071, 671219, 409143, 898318, 57270, 409207, 147073, 933551, 147166, 933652, 671579, 933742, 147337, 671692, 409557, 933861, 933946, 147542, 409694, 934134, 409854, 409887, 934223, 934235, 672109, 148016, 1052414, 672352, 672433, 792789, 942221, 934795, 148424, 672753, 934964, 148564, 286915, 148633, 243244, 148761, 148777, 148851, 673143, 898631, 935358, 935362, 935364, 811266, 149161, 935707, 680250, 149447, 800243, 411660, 935952, 935973, 855050, 549219, 149670, 549235, 673984, 936182, 149767, 149790, 411953, 936273, 301777, 149853, 936501, 150087, 412319, 412340, 412352, 674702, 412597, 674914, 986316, 412982, 413040, 413079, 820027, 937427, 151011, 156251, 937578, 413404, 675719, 937947, 151547, 938066, 938140, 413858, 413905, 200062, 938359, 676275, 414155, 25344, 414276, 676454, 768133, 152519, 414714, 939020, 414733, 152598, 414757, 414799, 939104, 1029291, 677212, 415165, 153037, 939473, 153048, 677460, 418752, 677519, 415474, 415500, 677672, 939866, 506181, 637254, 563771, 153588, 677936, 415815, 153739, 153794, 415962, 678176, 940386, 1096257, 153981, 768411, 416228, 154301, 416457, 154372, 940916, 940940, 678913, 154633, 416846, 165135, 154785, 941219, 679167, 417040, 417080, 200600, 155056, 808235, 155086, 679390, 155119, 417362, 155234, 417404, 941749, 679658, 941865, 637576, 417664, 679878, 155700, 417902, 417946, 680102, 418032, 418063, 942354, 418165, 680324, 418195, 156052, 680373, 418353, 156215, 942651, 680514, 418423, 156379, 418552, 755907, 942915, 418633, 680951, 92509, 943170, 943190, 594105, 418926, 418977, 156889, 681514, 681264, 157149, 419326, 419333, 681791, 419692, 157580, 681944, 1031173, 682025, 944181, 944194, 944245, 682105, 682205, 944451, 769085, 682365, 900164, 244808, 682425, 420304, 420365, 420400, 944700, 682626, 214771, 944949, 420673, 682910, 113826, 987644, 420867, 683045, 987657, 420934, 987660, 420980, 158887, 26485, 507086, 421145, 159078, 421437, 1075156, 267187, 159667, 421813, 1031502, 507221, 114037, 946428, 422152, 422268, 1031580, 684459, 422398, 160255, 160312, 946747, 160339, 422501, 944231, 946825, 422609, 422624, 684780, 160562, 422827, 684977, 160694, 160735, 685091, 160808, 422955, 990938, 685177, 682190, 423178, 565856, 161117, 947678, 685591, 947785, 161418, 423608, 423646, 947974, 616415, 423878, 424045, 424092, 948397, 686260, 686290, 948452, 948532, 551309, 1031910, 686469, 424408, 424449, 162351, 424509, 948829, 686739, 686746, 424753, 813536, 162662, 424898, 425072, 1100937, 687245, 163038, 813605, 638849, 687375, 1032074, 425330, 425375, 949686, 988412, 687615, 687632, 425505, 813675, 625205, 163570, 163602, 950139, 249866, 163860, 163912, 950355, 426214, 426347, 1079141, 164282, 426442, 688644, 901206, 426504, 950799, 688711, 1075980, 688739, 426622, 164528, 164912, 689223, 427086, 165002, 165007, 813953, 427340, 202306, 951820, 689700, 817309, 689851, 689885, 952047, 690010, 165807, 907173, 952378, 952388, 428113, 952445, 952452, 166043, 690508, 952658, 690565, 428424, 690606, 166403, 690705, 166468, 952926, 690801, 464663, 36025, 953020, 428773, 690956, 428819, 166680, 428847, 691004, 166748, 691055, 166784, 428941, 953274, 691141, 953332, 953351, 683193, 857956, 953445, 167156, 167204, 691507, 167229, 691709, 167436, 429664, 429675, 167566, 167620, 290091, 464860, 590433, 167994, 430142, 168000, 954455, 168069, 430229, 168175, 945535, 692494, 168238, 954711, 692577, 66707, 1096742, 989296, 955093, 692955, 955117, 168787, 955220, 693101, 814568, 430985, 430989, 693152, 693162, 693297, 693447, 693469, 431481, 693636, 693642, 169390, 955911, 508855, 302435, 956060, 694063, 169778, 858421, 596282, 956403, 432161, 28352, 1033249, 956624, 694560, 694561, 694678, 432602, 837372, 432653, 432680, 694845, 956993, 1090513, 170581, 432811, 432874, 170770, 170788, 695238, 695240, 170982, 433220, 957607, 957688, 433415, 171370, 433549, 433579, 171527, 433680, 433685, 433691, 171691, 695993, 958142, 171776, 241405, 958311, 1033534, 171906, 696217, 696242, 696312, 172062, 696404, 434369, 434462, 696738, 958993, 959034, 172608, 696918, 959083, 434835, 727837, 172787, 959228, 172981, 173001, 435412, 815320, 173391, 435541, 959854, 697780, 960003, 435794, 697972, 697983, 960265, 960302, 436091, 436100, 960397, 960437, 436249, 960566, 698445, 174273, 436475, 174344, 698719, 436586, 436602, 29089, 698828, 174592, 961048, 961097, 436844, 436847, 72809, 946631, 436924, 961255, 699243, 1010700, 437165, 815618, 961579, 437324, 175251, 990414, 961921, 961950, 437671, 699837, 699872, 699873, 437752, 175625, 903097, 437914, 509907, 438058, 700224, 962443, 176015, 176065, 438286, 438316, 438324, 962731, 422600, 438455, 772129, 700618, 700641, 700835, 700871, 176744, 815891, 439061, 176994, 439176, 701335, 701345, 701390, 963564, 177221, 439375, 177238, 145569, 963788, 1034446, 701663, 128113, 439731, 160671, 964054, 964152, 248086, 440098, 422893, 440269, 964577, 1034587, 440362, 1034595, 160787, 178468, 702790, 702792, 702855, 178612, 178627, 440802, 1034679, 1087076, 178825, 160885, 1034703, 699510, 703211, 703270, 441128, 703383, 965578, 292021, 441409, 703765, 510513, 29921, 441734, 860078, 996301, 259128, 947466, 704072, 704080, 826518, 704223, 704236, 991210, 704398, 442377, 30039, 991241, 442455, 442491, 442525, 442593, 564668, 442673, 180592, 967106, 180693, 772864, 443027, 180887, 311540, 180902, 161224, 443081, 204924, 705279, 181144, 181222, 1035098, 181301, 443489, 705681, 181394, 705687, 181476, 181531, 968071, 968206, 372674, 968310, 706167, 706215, 205086, 948797, 706342, 182081, 968560, 968608, 444350, 1035278, 182393, 969023, 969066, 444790, 706950, 760638, 860573, 729508, 969264, 445094, 183046, 538570, 85018, 183201, 707513, 969750, 445494, 707670, 445573, 707721, 904389, 969974, 707835, 117977, 970152, 183723, 729672, 445908, 970242, 183874, 183880, 1035535, 183988, 184105, 708438, 970605, 708517, 184235, 184249, 643359, 970824, 184436, 708739, 184452, 708781, 708904, 184621, 467683, 446834, 971213, 971233, 336648, 49802, 184916, 971378, 185009, 447169, 709342, 948351, 30860, 447340, 971633, 249321, 971653, 709560, 185276, 971729, 185299, 447540, 447551, 709802, 992132, 972064, 709936, 447797, 30956, 185879, 448035, 448123, 710297, 448183, 186063, 186265, 972699, 205809, 186390, 186446, 710755, 448630, 448745, 710914, 773858, 186727, 448975, 448976, 948653, 973362, 686541, 449235, 449244, 187186, 1079785, 481341, 992407, 973731, 711682, 711710, 711759, 973917, 711803, 711811, 711840, 879150, 449750, 1079868, 974201, 974220, 187818, 118702, 450093, 1036214, 249802, 188134, 974670, 712545, 450681, 992618, 450788, 712944, 450854, 450921, 713134, 992677, 188908, 451070, 1101110, 713360, 189115, 49943, 713448, 189174, 975688, 451406, 189312, 451484, 451609, 189466, 975997, 1088718, 452200, 190078, 190212, 190307, 714636, 714672, 714678, 976829, 714709, 976941, 190601, 381321, 715189, 453220, 453270, 715508, 715588, 453451, 977770, 977952, 191536, 453705, 978057, 191632, 453851, 453856, 453869, 191792, 454018, 191971, 454258, 716641, 978802, 192502, 192579, 979054, 979133, 454872, 192894, 993353, 455273, 556489, 717563, 979713, 455456, 993419, 979787, 512825, 762455, 193422, 717751, 717763, 455659, 455743, 455776, 455782, 455793, 455853, 455862, 980168, 193742, 718112, 193866, 456016, 306806, 193968, 718444, 456305, 980633, 294518, 456443, 456551, 718782, 194531, 981006, 456734, 133977, 194750, 194870, 981400, 1092422, 719411, 195199, 195440, 272047, 719749, 457622, 573899, 382119, 457714, 195582, 457809, 195693, 457842, 862742, 720013, 982348, 458064, 458110, 720261, 982481, 458235, 196111, 1091384, 196232, 196250, 775457, 196453, 1081321, 196596, 458771, 458774, 196720, 458885, 513397, 993996, 1080229, 196949, 196963, 983438, 983451, 197024, 983499, 983543, 721409, 459280, 459291, 128772, 983708, 459481, 197542, 721885, 984075, 1037826, 984178, 459948, 197945, 197964, 984434, 460162, 722352, 984499, 722413, 722515, 460403, 984770, 984856, 984930, 984948, 906901, 984992, 198581, 722981, 985158, 985165, 985167, 985173, 985207, 198807, 985259, 985275, 723144, 985304, 985360, 461078, 985371, 985431, 985433, 985461, 1036656, 461281, 199177, 985644, 985653, 985736, 985752, 461491, 298113, 461601, 985905, 723781, 199572, 295406, 986068, 986162, 986197, 199776, 986210, 724121, 199837, 986325, 986411, 724275, 986427, 986472, 200042, 986484, 986494, 724410, 462301, 724571, 776122, 724579, 200296, 986733, 844658, 994582, 986791, 986793, 724680, 855029, 986852, 724733, 986932, 986935, 986936, 986972, 724872, 724887, 462765, 987066, 724947, 987100, 1010524, 987183, 725047, 987192, 987230, 987237, 462979, 987309, 425688, 987486, 987502, 463230, 907334, 987567, 987573, 201154, 987671, 463443, 987791, 201366, 201376, 987809, 987822, 987823, 987845, 987914, 732631, 463635, 987978, 725867, 725951, 988119, 988121, 988122, 988124, 801059, 988142, 988149, 988169, 988211, 726076, 726098, 988269, 1038527, 988294, 988306, 988416, 202006, 988504, 202073, 988512, 202081, 988540, 988636, 988653, 988710, 464440, 156723, 988742, 988743, 988745, 726614, 464484, 988787, 820161, 988911, 988915, 988954, 988960, 988988, 989042, 989099, 989108, 989213, 202797, 1097885, 727224, 202954, 989396, 995029, 776576, 203039, 1005500, 252295, 989530, 989543, 989573, 776609, 989647, 989676, 727551, 203274, 203317, 203390, 989831, 727699, 727707, 989855, 989866, 989870, 203458, 989894, 727765, 989912, 727779, 989963, 989994, 990010, 990026, 203646, 990093, 203688, 990176, 990197, 728060, 990223, 728110, 728150, 990307, 990345, 1038871, 990375, 1038879, 466162, 990459, 990481, 466202, 990526, 466252, 1045554, 728460, 466335, 990649, 990763, 990784, 990841, 990852, 1097939, 466640, 728823, 728836, 990995, 466738, 991032, 991044, 466774, 991064, 991079, 991111, 991138, 991171, 1082701, 991207, 991240, 729173, 991324, 991342, 991364, 685717, 991383, 991419, 991471, 205107, 467274, 991590, 991598, 991662, 205251, 991685, 991748, 991761, 991762, 991782, 991832, 729697, 991854, 467597, 991894, 467612, 991938, 514851, 165335, 992120, 792463, 205741, 992184, 992191, 992193, 992224, 50498, 992257, 992340, 992363, 992365, 992367, 730229, 992383, 730278, 992433, 992531, 992535, 206117, 992559, 992605, 992652, 992659, 992660, 992729, 78076, 992757, 730626, 992802, 992839, 992840, 992869, 165480, 992946, 992949, 992950, 206549, 993041, 468762, 993107, 993153, 993174, 993178, 468907, 993234, 820899, 206806, 206819, 993255, 993320, 993492, 993501, 427730, 993544, 993606, 993627, 993651, 1010173, 207251, 731545, 993748, 993795, 993821, 469535, 993834, 731723, 993876, 731736, 993883, 993987, 994005, 994012, 207595, 731886, 731902, 994070, 994085, 994087, 469819, 994112, 994133, 994228, 470001, 994311, 994338, 994397, 732288, 994449, 994478, 994479, 994533, 574317, 208145, 732448, 208198, 470385, 994688, 208265, 1083293, 470459, 515317, 732618, 208339, 994792, 994830, 208411, 818421, 470611, 994918, 208494, 994947, 932223, 208610, 995125, 864905, 995141, 995176, 995212, 995221, 1045709, 208822, 470982, 995280, 471007, 733186, 995380, 995443, 995526, 733422, 995576, 995595, 995598, 879869, 733510, 297019, 733591, 995756, 995789, 995805, 995806, 995825, 733692, 471705, 996011, 733892, 996042, 996054, 209651, 996119, 775138, 996181, 209764, 209730, 996272, 472024, 996328, 734198, 996414, 1092450, 734426, 559318, 996634, 472359, 472448, 1083642, 996835, 210442, 296441, 996922, 997044, 997086, 1083686, 997122, 1083704, 997227, 997351, 914845, 997449, 997481, 735343, 735384, 735387, 997533, 997542, 473319, 251445, 997648, 997649, 473394, 997713, 997744, 473492, 909048, 997860, 997872, 997878, 211468, 997913, 997935, 1083839, 998013, 735895, 998062, 998101, 211691, 473886, 998192, 473935, 998246, 998247, 998248, 736125, 998309, 998381, 998417, 998482, 998493, 474234, 1083926, 1040238, 998569, 998591, 998609, 212195, 998646, 998658, 212236, 998675, 998680, 998681, 1083952, 474419, 998735, 998834, 736713, 212435, 998891, 998903, 212477, 998941, 474659, 996623, 999028, 999086, 999089, 999110, 696677, 474873, 996653, 909273, 999192, 212796, 999261, 559771, 999356, 999385, 999391, 865616, 999416, 999439, 999517, 999518, 999550, 999552, 999555, 999567, 999610, 999637, 737512, 865660, 999685, 475402, 999756, 999791, 999836, 999897, 999921, 999942, 1000000, 1000004, 1000006, 1000017, 1000030, 1000083, 737940, 996805, 1000097, 1000170, 996825, 1000232, 1000272, 738162, 738165, 1000459, 214040, 1000509, 1000585, 909506, 1000619, 738484, 1000678, 1000681, 476483, 1000798, 1000864, 1000906, 1000951, 560059, 738931, 476807, 1001108, 574051, 822218, 476947, 476977, 1001279, 1040703, 997017, 1001381, 477100, 1001397, 1001454, 477286, 477309, 477380, 739599, 1001810, 739671, 739743, 1001903, 1001926, 477639, 1001981, 210690, 1001999, 215603, 1002058, 487279, 1002145, 1002148, 1002197, 1002238, 1002252, 1002274, 50833, 1002330, 478054, 478063, 740263, 35996, 1002426, 1002482, 1002554, 740416, 1002584, 1002585, 1002596, 478359, 1002716, 1002737, 740624, 1002887, 1002889, 740762, 1002938, 1002940, 478691, 740852, 1002997, 1003003, 1003006, 1003015, 675320, 478827, 1003210, 1003213, 560419, 1003239, 478981, 1003277, 1003299, 1003329, 1003334, 1003351, 1003359, 1041043, 741274, 1003445, 1003481, 1003482, 1003507, 741392, 1003557, 1003561, 479284, 1003590, 1003603, 479379, 217246, 469873, 822642, 36214, 479525, 1003831, 1003849, 479570, 1003875, 1003880, 1003884, 1003973, 1003997, 741970, 741977, 731759, 742022, 1004191, 1004199, 1004228, 1004233, 1004240, 1004243, 1004254, 862701, 1004322, 480064, 565915, 1084905, 218000, 1004493, 827791, 742446, 480504, 742667, 480536, 298550, 1004921, 1004940, 1004949, 298565, 742822, 1005113, 1005131, 742988, 473361, 1005163, 1085035, 743046, 1005191, 480932, 36473, 1046047, 1005475, 1005476, 1005520, 1080968, 517117, 481297, 1005586, 1005653, 481387, 1005678, 1005798, 743668, 743675, 743693, 743696, 1005949, 1006000, 743868, 997808, 1006199, 744092, 481961, 744109, 954144, 744261, 1006459, 1006489, 1006509, 220087, 1006578, 1006580, 36703, 1006751, 482496, 1006791, 1006852, 744764, 1006911, 1006987, 744891, 482808, 517386, 220761, 1007242, 688218, 483028, 1007382, 129565, 483178, 483241, 745402, 1007550, 211621, 1007606, 745469, 1007628, 1007673, 1007691, 1007696, 745559, 998093, 1007875, 745746, 1007934, 745794, 1007959, 1007972, 745830, 483795, 745944, 221664, 746055, 1008208, 746065, 998174, 1063607, 1008515, 1008516, 80712, 746438, 222158, 118448, 1041951, 1008830, 484551, 1008911, 1008947, 1008951, 1008968, 1008977, 1008979, 1009023, 1009109, 823549, 1085697, 1009183, 1009237, 222954, 1009388, 561448, 747345, 1009527, 485287, 223165, 1009610, 1009668, 1009695, 1009724, 1009742, 1009749, 485558, 747720, 223468, 1009959, 1009961, 1009994, 51090, 1010048, 1010057, 1010059, 1042158, 747937, 747985, 1010151, 998485, 748054, 736347, 1010277, 1010287, 1085888, 748321, 1010527, 1010537, 486274, 1010607, 1010615, 486370, 1010670, 996317, 307008, 605363, 224314, 486512, 748672, 486623, 748771, 224548, 1011003, 1011018, 1011021, 1011044, 224626, 748935, 998641, 1011120, 1011140, 748997, 1011166, 1011328, 212251, 1011381, 1011382, 749244, 749267, 1011512, 1011529, 749399, 1011618, 1011663, 212303, 1011721, 487569, 1011860, 749752, 94798, 225499, 1012026, 998802, 749955, 225752, 837740, 750111, 824080, 1012329, 1012464, 488198, 839488, 37685, 1012547, 226132, 750421, 750487, 998905, 488416, 226335, 1012780, 1012865, 1012866, 226461, 488676, 750821, 488711, 998965, 750946, 488825, 1013114, 1013229, 1013267, 1013304, 1086391, 1013367, 1013424, 1013492, 824282, 1013579, 1013592, 1013615, 212634, 489374, 227317, 1013797, 489513, 1086477, 751778, 751797, 1013965, 227591, 824371, 1014115, 1014132, 37952, 1014210, 489931, 1014242, 649640, 1014264, 36965, 227968, 167371, 490505, 752700, 1014884, 228474, 1014911, 300246, 1015055, 780850, 490802, 228738, 490883, 753040, 490903, 753071, 1015307, 753168, 1015347, 753214, 753299, 1015556, 753480, 1094395, 1015641, 261650, 753517, 212977, 229325, 1015766, 169305, 491585, 81945, 1016013, 1016015, 999469, 999481, 1016154, 1016254, 754113, 562594, 754166, 754191, 1016406, 1092441, 1016460, 1016547, 1016565, 1086933, 1016583, 230179, 754509, 1016676, 1016703, 431602, 1016790, 1016879, 1016915, 754786, 1087589, 1016943, 10264, 1098806, 492681, 1087001, 999641, 492853, 1043337, 230725, 755040, 1017204, 755093, 1017276, 230891, 1017348, 1090915, 999691, 755275, 824938, 1017476, 1017498, 1017524, 1017529, 1017537, 231109, 755459, 1017605, 755465, 1017692, 1017706, 231292, 231298, 1017734, 1017773, 1017775, 1045527, 493508, 1017830, 493543, 1017892, 231482, 1017952, 1017971, 1018032, 1018056, 38608, 231717, 193581, 985372, 231877, 494086, 1043545, 1018525, 494346, 1018658, 825147, 1018807, 863187, 1018918, 494730, 1013570, 756949, 232703, 1019179, 1019200, 495018, 1019356, 495082, 1019405, 1019414, 868953, 757275, 1019433, 1019470, 1019602, 757511, 836044, 1019705, 1019724, 6791, 495483, 1019787, 1019830, 495680, 1087532, 1020198, 758074, 1020244, 233904, 1020376, 496175, 496244, 234114, 496276, 234165, 758519, 1020710, 1020724, 563347, 234388, 563359, 758720, 1020907, 1020915, 912899, 968004, 496717, 758901, 758909, 1021065, 234644, 234651, 1040312, 344955, 759021, 1021170, 1000319, 759062, 1021241, 234821, 1021277, 1021318, 1021324, 1021327, 825583, 1087735, 497107, 497132, 1021446, 235027, 235089, 1021532, 1021554, 1021605, 1021639, 759503, 759515, 1021679, 1021682, 1021695, 497470, 1021797, 497536, 497596, 1021900, 1021907, 1021931, 235534, 1021971, 1022022, 497757, 1000472, 1022124, 1022132, 924398, 1022178, 760070, 235832, 257772, 1022359, 1022370, 1000519, 1022410, 1022442, 1087915, 1022577, 39360, 1044249, 1022620, 1022621, 694726, 1022630, 760512, 738422, 498398, 1000574, 1022712, 1022735, 498478, 1022769, 1022782, 1022832, 236427, 1022907, 1022911, 760817, 388950, 236580, 236582, 1023025, 760908, 236708, 761032, 236801, 1088043, 761096, 738525, 499068, 400696, 1023363, 236949, 499126, 761388, 499413, 761627, 1023782, 237370, 237373, 1023838, 1023850, 499568, 1088153, 237561, 1024034, 1024069, 499818, 761963, 1024166, 1024176, 499904, 762059, 1024221, 1055921, 762111, 1024288, 1024300, 1024305, 313438, 237936, 762296, 870422, 1024528, 1024591, 1024592, 1024667, 1024669, 1024672, 762558, 1024727, 826153, 762652, 1024835, 1024893, 1024904, 762761, 1024950, 1000959, 1088347, 618979, 1099077, 1025188, 763084, 1025259, 1025270, 1025290, 238886, 476724, 1025348, 1090358, 1025483, 239189, 1025624, 1090558, 1044755, 1025714, 763619, 1025801, 1011811, 39908, 1025895, 1099105, 239511, 239516, 1025991, 239648, 1026098, 1026148, 239830, 764139, 1026372, 165116, 258485, 1026711, 1026768, 1026775, 1003114, 1026799, 764691, 1026991, 240584, 1083997, 1027178, 1027209, 765147, 1027373, 741267, 1027650, 765512, 1027669, 503390, 503401, 8701, 765583, 608197, 1027785, 1027812, 1027817, 1027865, 503580, 503607, 1027919, 503674, 1028098, 503833, 1028131, 863499, 504044, 766202, 766238, 242019, 242061, 242103, 1028538, 242107, 1028555, 504306, 1028598, 1028608, 504335, 242219, 1028652, 1088947, 1028670, 1028711, 1028742, 1028753, 1028755, 1028796, 766769, 84106, 766804, 766808, 1029003, 1029016, 1029030, 1029031, 1029058, 1029124, 1029181, 1045347, 242863, 767248, 505107, 127876, 1029402, 505152, 505171, 1029492, 1029544, 1029552, 243139, 1029617, 1029681, 1029694, 1029772, 1029791, 767671, 505541, 243416, 767745, 1029908, 1029909, 1045494, 505810, 243712, 1030176, 558046, 243761, 1030215, 1030230, 1030271, 506025, 1030324, 1030378, 1030381, 1030388, 1030446, 1030451, 244092, 1030617, 1030623, 1030722, 506438, 1030823, 302878, 506579, 477648, 1030924, 1031032, 1031033, 1031047, 1031054, 1031118, 1031240, 244821, 506985, 244902, 241246, 244929, 507087, 1031456, 245120, 739913, 507381, 1031679, 1031682, 1031684, 507434, 769630, 303045, 245416, 1031861, 156566, 1031909, 1031976, 1031999, 1032011, 1032019, 1032156, 1032182, 507901, 1032198, 507934, 1032281, 770167, 1032341, 245921, 770233, 508104, 508316, 783781, 1099746, 770604, 1032758, 1032822, 837467, 1089670, 1033007, 770894, 246626, 1033092, 1033205, 1033250, 1033296, 771170, 771239, 1033398, 509111, 509114, 1033443, 771314, 575616, 1033580, 247194, 1033652, 1046093, 1033703, 1033718, 1033725, 1033759, 776392, 771694, 771734, 1033912, 1033927, 1033962, 509730, 1034039, 1034050, 488345, 1034136, 1034172, 772055, 1034204, 510018, 478220, 1034409, 510152, 510158, 510229, 827801, 1034666, 1034680, 510444, 1034761, 478295, 248385, 1034845, 1035006, 772928, 1035078, 510858, 510867, 510893, 226509, 1035228, 1035247, 773155, 1035321, 1035367, 1035379, 1035383, 511101, 1035410, 249118, 249176, 511330, 511367, 511417, 1035719, 1035805, 1035861, 1035874, 1035931, 1036002, 1036005, 249618, 828036, 773924, 511837, 773998, 511861, 249792, 774087, 1046520, 1036244, 249821, 512087, 1036380, 1036385, 828093, 595236, 244011, 1036542, 512278, 427323, 1036627, 250228, 1036675, 512405, 1090291, 1036782, 1036784, 250367, 1036800, 1090311, 512564, 512685, 1036999, 774866, 1037033, 250636, 512807, 1037104, 1037116, 1037188, 1090377, 1037250, 863817, 1037302, 1037341, 513061, 1090399, 1037373, 740876, 1037407, 357519, 775297, 1090413, 775343, 775355, 776517, 251172, 1099495, 1037662, 1037686, 1037689, 1037722, 1037781, 1037817, 1037872, 1037881, 281002, 283154, 513779, 1038161, 391481, 156688, 1038184, 1090537, 776080, 1090550, 1090789, 1090796, 1090596, 1101531, 1038592, 776465, 174249, 1038678, 1038685, 532142, 523413, 1038719, 1038724, 1038755, 1038830, 776700, 1038849, 1046969, 959589, 1039002, 1039052, 514767, 252632, 1003319, 1039195, 1039298, 1090727, 1039346, 1090730, 1039361, 837681, 828588, 777235, 777297, 515185, 1039495, 1039521, 1039586, 515335, 777519, 1039728, 1039746, 515573, 777792, 1040022, 1040030, 1047152, 1040038, 1040064, 1040082, 1040088, 1040099, 515813, 778095, 778139, 1090887, 516029, 1040353, 253965, 253966, 1040409, 1040461, 1040507, 1040532, 1040684, 820267, 1040694, 516413, 1040793, 1040848, 1040959, 778857, 778890, 1041050, 254652, 778948, 1041146, 1041159, 1041226, 1021053, 994867, 1012328, 517085, 1003695, 1091080, 255027, 1091082, 1041473, 1041520, 779475, 779553, 1041703, 1041714, 1041753, 357664, 517516, 779674, 255469, 1041924, 1091158, 1041948, 617968, 560357, 255633, 1042099, 1091189, 829050, 1091206, 780215, 1042364, 1042426, 780297, 780336, 256052, 1042488, 1042507, 1091269, 256192, 1042626, 1042676, 1042752, 780613, 1042800, 427532, 1042978, 1043064, 794160, 780993, 256783, 781074, 518940, 1043413, 829087, 519145, 471197, 257018, 994941, 1043568, 1043587, 1043658, 1043702, 1091461, 257335, 1043815, 1043914, 1043955, 1043969, 1043995, 781877, 1044041, 782079, 1044244, 1004167, 257885, 782253, 904295, 520184, 86701, 782381, 782417, 782426, 1099726, 782549, 258337, 1091633, 1044809, 782696, 520627, 520636, 1047365, 1045071, 1045072, 520816, 1091692, 1045135, 1045203, 1045208, 1091706, 1045227, 1045229, 783098, 558548, 521018, 1045374, 783277, 611152, 1045540, 1045567, 783433, 783843, 259239, 521402, 1045717, 783602, 1045826, 783687, 259417, 1045853, 1045855, 525467, 783822, 1046042, 1091850, 521801, 783963, 783981, 521851, 1046161, 259763, 259781, 1048185, 522076, 1046384, 1046387, 522151, 1046463, 1046475, 1046567, 1046569, 260172, 1046648, 784549, 1046736, 1046750, 1092517, 1048282, 1091973, 784700, 1099803, 1046931, 784805, 1046952, 567714, 1047010, 1047012, 1047088, 784961, 1047138, 1092029, 1047160, 1047162, 260762, 522953, 567759, 1047269, 260853, 785176, 523062, 1047386, 1099823, 261098, 524116, 1047548, 1047556, 1047592, 1047599, 1047625, 1047629, 1047642, 1047662, 743708, 1047700, 1047702, 1047708, 1099831, 1047738, 1047794, 1047833, 1047843, 1047854, 1082377, 785721, 794319, 523621, 830649, 1047913, 785772, 1047917, 261521, 1047987, 830040, 261652, 261683, 786009, 786021, 523952, 1048281, 786157, 1048303, 43649, 1048359, 1048361, 1048363, 1048377, 1048381, 734979, 524166, 968921, 786375, 1048565], + 'msmarco-passage-test-subset': [57, 524369, 43707, 1048716, 524438, 524469, 786761, 262542, 412, 262636, 524790, 1049088, 1049092, 1049096, 262686, 349622, 1049177, 1049180, 1049202, 611785, 262878, 262883, 525069, 1049390, 1049419, 1049537, 787526, 525433, 1214, 1049881, 1416, 1425, 787957, 1005146, 788034, 1050225, 1050241, 1050274, 788151, 263874, 1050405, 1937, 526266, 2045, 526352, 175123, 1050794, 1050808, 87762, 264434, 526597, 264602, 2610, 612105, 1051206, 2663, 789140, 1051326, 527126, 789305, 1136443, 1051570, 265198, 527398, 340540, 3243, 1051868, 3297, 1136507, 265494, 527647, 527745, 655939, 1052076, 306421, 789981, 1052164, 790111, 790118, 1073795, 1005502, 1136591, 265976, 790280, 3867, 528174, 266150, 1052743, 1052835, 266488, 4383, 656101, 1053031, 266611, 1053061, 481345, 266752, 791170, 656150, 529043, 4776, 838148, 1053411, 1126209, 88200, 791397, 529272, 5000, 1136818, 1053809, 1053885, 1126223, 529769, 267705, 792006, 792143, 1126077, 530079, 1054386, 268010, 530174, 1005869, 962187, 1054576, 530295, 6055, 268235, 6113, 1054733, 1054749, 1054797, 1054959, 268574, 792925, 793003, 1055227, 1055343, 793245, 1006025, 1055448, 1049736, 793432, 531296, 531311, 531334, 531470, 1055761, 793699, 269425, 576361, 525514, 831384, 794144, 908077, 1056313, 1113870, 1049877, 269960, 1056425, 7869, 794347, 1056576, 532352, 229260, 8136, 270297, 532494, 270378, 794701, 1056910, 8452, 1057030, 1057038, 1057241, 1057246, 8718, 533268, 533312, 795460, 307344, 87592, 9082, 533379, 533428, 795622, 271435, 533613, 271481, 1057936, 533677, 271544, 795872, 271620, 271672, 1058138, 271748, 533953, 271835, 534021, 271881, 796223, 534202, 272071, 534250, 534279, 796451, 831794, 272269, 796563, 10141, 1058856, 796808, 534684, 1059138, 1059177, 1059186, 272863, 535009, 797200, 535067, 272951, 10941, 1108953, 1059643, 797562, 797565, 535431, 535449, 11172, 11258, 927093, 273443, 11304, 535610, 1059906, 535668, 797815, 535699, 797862, 307758, 1060142, 798003, 273773, 798239, 536101, 11863, 798354, 875806, 9129, 536330, 12048, 1060669, 274306, 12166, 1060768, 798642, 1060897, 274522, 274555, 274605, 1050658, 536822, 798979, 12553, 274731, 274771, 536931, 274873, 799171, 1061326, 12761, 190377, 1061434, 799293, 799323, 537188, 537223, 12954, 537267, 1061590, 275173, 13101, 1061763, 537545, 275413, 1061852, 537610, 799784, 537744, 799932, 537821, 275722, 275737, 800142, 538026, 538078, 275951, 13823, 800274, 538143, 13912, 800348, 276099, 614001, 538373, 538393, 857280, 276343, 14244, 800703, 855922, 538654, 276525, 14448, 1063049, 657776, 276665, 800980, 538850, 14571, 538878, 538943, 276928, 277093, 733738, 277177, 795754, 1063665, 1063739, 788960, 745278, 539535, 539566, 539595, 395821, 802079, 277868, 1064344, 1051205, 278034, 1064595, 540318, 1064659, 278239, 540436, 802584, 802667, 278403, 540572, 802776, 540655, 802817, 278684, 278691, 655097, 1065206, 540951, 803115, 803296, 541155, 541229, 541238, 1065534, 279176, 17077, 803596, 17199, 803633, 1065923, 541708, 803911, 803948, 1117901, 1066186, 804098, 585434, 1066264, 542015, 280019, 1066463, 804329, 1066501, 18075, 920524, 18164, 542582, 804764, 804916, 280704, 18711, 18793, 543290, 805501, 1067743, 1067801, 543631, 543638, 1008125, 543772, 805998, 19684, 1068313, 1068315, 281922, 806258, 833432, 544191, 282055, 544220, 864839, 1126711, 282125, 20010, 1068587, 806450, 1119189, 527633, 282280, 806602, 544540, 544560, 943412, 456029, 544623, 806779, 544722, 20440, 20530, 20616, 20734, 323665, 20892, 1069557, 21003, 21075, 545410, 283348, 21227, 807811, 807866, 21444, 545791, 1070083, 807974, 283924, 21792, 546081, 1008523, 21838, 1070417, 808343, 284067, 546217, 1070511, 1070533, 808540, 546404, 22197, 22256, 546597, 1070941, 22372, 808898, 546758, 921267, 790199, 1071255, 284910, 1071370, 22817, 547140, 285032, 285049, 809339, 547374, 547405, 809570, 809594, 547515, 809683, 341207, 547627, 23367, 547661, 547711, 809913, 547770, 23531, 285797, 548020, 548054, 23822, 23910, 1072522, 548237, 23963, 1072559, 23986, 810496, 24093, 810631, 834181, 810830, 286573, 24462, 1073093, 810958, 811001, 24636, 965313, 811245, 549110, 286980, 24841, 549190, 943566, 549213, 549237, 811447, 811457, 25026, 549327, 1073638, 91565, 572170, 811650, 811758, 549663, 703281, 549722, 25465, 266390, 811974, 812006, 1074152, 812148, 484886, 1074350, 25802, 1074449, 397579, 812644, 288566, 1124469, 222861, 812967, 572446, 48170, 813370, 551271, 1075711, 27310, 813770, 289499, 289517, 551683, 813841, 922089, 27528, 551851, 1076183, 289801, 814107, 27705, 1076289, 289943, 814248, 814340, 1076490, 552319, 1076615, 552364, 290290, 552458, 552459, 552563, 290429, 814791, 552670, 814827, 28453, 814908, 814920, 1077110, 552834, 28661, 552956, 552959, 28684, 28862, 553161, 553530, 553571, 291553, 1078015, 1078080, 815939, 354466, 29667, 553988, 29725, 29785, 1078365, 29811, 1078498, 816456, 292227, 292284, 554435, 30163, 1078745, 1078766, 554529, 1078827, 30282, 554585, 30359, 816794, 227967, 816915, 554792, 816994, 30649, 30677, 1079280, 1053723, 293041, 293069, 555353, 31169, 31192, 136287, 747961, 293516, 555674, 31504, 1080183, 743021, 31825, 818265, 583532, 32202, 1080843, 32278, 556581, 32330, 1080912, 556637, 294538, 294614, 556923, 556935, 557046, 1081348, 1081455, 966679, 295077, 1081591, 33137, 1081774, 295361, 557592, 819755, 1081930, 923070, 557806, 295730, 295732, 820021, 620882, 557944, 557952, 558003, 996237, 617318, 820387, 311494, 558303, 792115, 296378, 34322, 341578, 558809, 558963, 558978, 297010, 297058, 34925, 297146, 35150, 821619, 821676, 9904, 559629, 35370, 442810, 297682, 822224, 560231, 36033, 822527, 560709, 560815, 823034, 561064, 70230, 823415, 823541, 561398, 37122, 561461, 37185, 561499, 299381, 561538, 299461, 9975, 561834, 37547, 299709, 299781, 561991, 37706, 562002, 562030, 824384, 562352, 562373, 38087, 38122, 574337, 824644, 300375, 300384, 312219, 824765, 300537, 562697, 1054994, 562904, 825151, 874196, 825453, 301352, 563542, 39325, 603617, 825961, 563898, 39660, 563962, 302038, 826354, 564283, 399884, 564310, 564382, 40124, 564558, 826731, 40648, 827155, 94173, 40892, 827381, 41048, 827488, 565366, 41184, 793327, 827847, 402915, 303637, 303706, 828068, 303874, 566216, 487606, 42055, 828518, 566407, 618695, 304358, 304380, 304430, 828723, 304449, 828744, 566615, 566618, 1107117, 566732, 42476, 42541, 50782, 566937, 829107, 567024, 829295, 305205, 567416, 43167, 567505, 43476, 567820, 567870, 567878, 567881, 567899, 830234, 830306, 830462, 306216, 568405, 568511, 830709, 44340, 1019841, 44537, 831024, 968631, 44621, 44659, 44678, 306873, 569047, 569053, 831217, 569196, 569409, 569527, 307403, 45301, 542712, 831882, 1012478, 569862, 569902, 307826, 45895, 832389, 925169, 832897, 308617, 570789, 570875, 46683, 571009, 571014, 571087, 833302, 309040, 1118879, 571215, 46941, 309117, 833544, 47125, 571431, 571432, 47269, 833797, 571671, 1110643, 182697, 47714, 47729, 309926, 619655, 572364, 572432, 310488, 834856, 310642, 834934, 1136837, 572884, 572957, 572976, 1136401, 48846, 573221, 1056764, 1056770, 573471, 573622, 835783, 49381, 49387, 8234, 573701, 49429, 49439, 49482, 835940, 836003, 836007, 836062, 574068, 49810, 574114, 49850, 49984, 848382, 836498, 857520, 50189, 836636, 836655, 312378, 836888, 50626, 312826, 837140, 1119006, 50797, 50800, 708745, 837287, 50863, 837383, 575259, 837433, 575378, 663878, 575461, 796050, 575606, 575621, 313491, 51360, 51514, 838000, 445502, 51577, 313747, 313766, 838235, 314064, 838377, 838421, 576292, 838440, 576305, 576357, 314262, 52199, 838709, 576792, 52604, 576964, 980518, 577234, 839463, 577546, 839707, 53330, 839841, 53422, 1119097, 577746, 839899, 839912, 315683, 857232, 840136, 1102456, 1102474, 1102477, 1102488, 1102498, 1102578, 1102579, 1102589, 1102590, 1102617, 1102645, 1102657, 1102667, 1102682, 316262, 1102704, 1102714, 316302, 1102744, 1102755, 1102768, 1102803, 1102811, 1102827, 1102839, 1102854, 1102862, 1102869, 1102892, 1102895, 1102970, 1102979, 1102989, 1103007, 1103009, 1103019, 1103076, 1103084, 1103089, 1103091, 1103093, 1103121, 1103136, 1103156, 1103166, 1103182, 1103192, 1103198, 1103250, 1103257, 1103260, 1103289, 1103290, 1103314, 1103322, 54747, 1103350, 1103355, 579092, 1103387, 1103416, 1103418, 841302, 1103467, 1103468, 1103502, 1103506, 1103511, 54958, 1103535, 1103537, 1103553, 1103555, 1103561, 1103579, 1103581, 1103601, 1103630, 1103645, 1103651, 1103654, 55079, 1103669, 1103679, 1103684, 1103687, 1103690, 1103759, 1103787, 1103793, 1103798, 1103816, 1103826, 1103828, 1103879, 1103888, 1103906, 1103910, 1103911, 1103921, 1103966, 1103969, 1103974, 1104005, 1104020, 1104022, 55454, 1104036, 1104064, 1104071, 1104077, 1104087, 1104099, 1104105, 1104118, 1104124, 1104175, 842042, 1104198, 1104215, 1104221, 1104223, 1104235, 1104252, 1104258, 1104279, 1104339, 1104403, 1104406, 580130, 1104454, 1104458, 1104468, 1104497, 1104506, 1104509, 1104513, 795757, 1104537, 1104557, 1104624, 1104630, 1104633, 1104640, 1104685, 1104698, 1104699, 1104704, 1104712, 1104720, 1104725, 1104740, 1104745, 1104763, 1104773, 1104781, 1104805, 580605, 842753, 1104915, 1104920, 1104942, 1104949, 1104950, 1104957, 1104984, 1105013, 1105017, 842886, 1105042, 1105073, 1105086, 1105087, 1105100, 1105108, 1105110, 1105142, 1105144, 1105146, 1105147, 1105148, 1105163, 1105169, 1105183, 1105190, 1105202, 318781, 1105216, 1105239, 1105248, 1105253, 1105263, 1105275, 1105280, 1105285, 1105287, 1105298, 1105337, 1105358, 1105364, 1105381, 1105425, 1105427, 1105429, 1105431, 1105432, 1105435, 1105441, 1105445, 56894, 1105485, 1105489, 1105498, 1105506, 1105515, 1105526, 1105551, 1105565, 1105567, 1105571, 1105585, 1105593, 1105594, 1105614, 1105617, 1105625, 581377, 1105666, 1105686, 1105689, 1105700, 581447, 1105753, 1105761, 1105766, 57218, 1105798, 1105805, 1105816, 1105817, 581535, 1105831, 1105853, 57292, 1105870, 1105871, 1105886, 1105900, 581663, 1105953, 1105978, 1105989, 1106011, 1106027, 1106029, 1106088, 1106089, 1106099, 1106125, 1106126, 581844, 1106141, 1106144, 1106159, 1106162, 319742, 1106180, 319757, 1106200, 1106201, 1106212, 1106216, 1106231, 1106234, 1106241, 57674, 844113, 1106273, 844140, 57710, 1106290, 1106291, 1106306, 1106327, 1106343, 1106348, 57774, 1106377, 1106381, 1106389, 1106408, 1106414, 582128, 1106421, 708693, 1106440, 1106450, 1106482, 1106491, 1106502, 1106508, 1106516, 1106521, 1106533, 1106535, 1106539, 1106543, 844433, 1106589, 1106597, 1106607, 1106617, 582339, 1106642, 1106652, 1106658, 1106672, 1106676, 582390, 1106680, 1106686, 1106709, 1106756, 1106764, 582484, 1106797, 1106821, 1106829, 1106834, 1106840, 1106850, 1106858, 1106862, 1106873, 1106912, 1106920, 320499, 1106988, 1107000, 1107015, 1107023, 1107033, 1107046, 1107082, 1107085, 1107091, 1107103, 1107108, 1107112, 320700, 1107141, 1107147, 1107149, 1107151, 1107153, 1107171, 582884, 1107189, 1107192, 1107193, 1107207, 1107210, 1107245, 1107299, 1107308, 1107336, 1107344, 1107353, 1107362, 1107364, 1107373, 845232, 1107381, 1107399, 1107401, 1107450, 1107455, 845321, 1107494, 1107525, 583249, 255251, 1107563, 1107565, 1107593, 1107602, 1107618, 1107640, 1107646, 1107677, 1107685, 1107702, 583443, 1107748, 1107749, 1107794, 59230, 583527, 1107834, 1107845, 845740, 1107885, 845751, 1107898, 1107915, 321504, 1107953, 1107960, 1107970, 1107982, 1107991, 1108009, 1108011, 845894, 1108071, 1108099, 1108121, 1108131, 321703, 1108147, 1108202, 1108203, 1108216, 1108227, 1108241, 1108268, 1108271, 59722, 59725, 584017, 1108332, 1108400, 1108406, 846308, 1108462, 1108472, 1108478, 1108481, 59911, 1108492, 1108510, 1108516, 1108521, 1108523, 1108526, 1108564, 1108607, 1108626, 1108629, 1108636, 1108637, 1108645, 1108658, 1108699, 1108718, 1108735, 1108738, 1108754, 1108763, 1108789, 1108799, 1108833, 1108847, 1108874, 1108875, 60301, 1108897, 1108911, 1108914, 1108922, 1108935, 1108950, 1108959, 1108975, 1108983, 1108984, 1108985, 1109002, 1109022, 1109040, 322609, 322610, 1109048, 1109110, 1109114, 1109188, 1109190, 1109195, 1109201, 1109214, 1109215, 1109238, 403328, 1109261, 1109311, 1109319, 60764, 1109379, 1109397, 60831, 1109408, 1109413, 1109436, 847301, 60870, 323018, 1109462, 1109463, 1109464, 1109471, 1109473, 1109474, 1109477, 1109487, 1109496, 585220, 1109525, 1109537, 1109540, 1109542, 1109546, 1109563, 1109571, 1109579, 1109599, 1109615, 1109616, 1109628, 1109655, 1109657, 1109658, 1109694, 1109701, 323294, 1109768, 1109784, 1109788, 1109794, 1058779, 1109805, 1109822, 323393, 1109853, 1109872, 585585, 323461, 1109901, 1109917, 1109974, 323565, 1110081, 1110087, 61526, 1110163, 1110169, 585888, 1110189, 1110196, 1110203, 1110213, 1110215, 1110217, 1110234, 1110246, 1110264, 1110275, 1110284, 1110294, 1110295, 1110314, 1110321, 1110322, 1110326, 1110337, 1110344, 1110353, 1110357, 1110388, 323959, 1110392, 1110401, 1110410, 1110423, 1110426, 1110468, 1110470, 1110498, 1110512, 1110523, 1110576, 1110605, 62078, 62097, 1110687, 1110698, 1110730, 848623, 1110776, 1110836, 578356, 1110849, 1110858, 1110868, 1110874, 1110903, 1110905, 1110929, 1110936, 1110964, 1110997, 1111023, 1111024, 586754, 586761, 1111057, 1111071, 1111099, 62525, 1111119, 1111132, 1102693, 62577, 1111156, 1111168, 1111205, 1111241, 1111292, 1111306, 1111313, 1111316, 1111338, 1111345, 1111377, 1111392, 1111396, 1111400, 62845, 587145, 1111470, 1111472, 1111502, 1111504, 1111564, 1111566, 1111576, 1111580, 1111581, 1111605, 1111650, 1111662, 1111668, 1111678, 1111702, 1111705, 1111710, 1111749, 1111760, 1111790, 1111791, 1111802, 1111810, 1111813, 63246, 849720, 63290, 1111890, 1111892, 1111898, 1111902, 1111908, 54246, 1111957, 1111969, 1111987, 1112014, 1112018, 1112044, 1112061, 1102849, 1112089, 1112100, 1112105, 1112107, 1112141, 1112154, 316436, 1112195, 1112210, 1112234, 1112240, 1112250, 1112262, 1112291, 1112297, 1112302, 1112306, 1112313, 1112324, 1112327, 850214, 1112366, 63795, 1112375, 1112377, 1112382, 1112384, 1112390, 1112394, 1112396, 1112406, 1112442, 1112452, 1112479, 1112487, 1112494, 1112501, 1112506, 1112514, 1112517, 588308, 1112606, 1112614, 1112625, 1102942, 1112656, 1112663, 588408, 1112702, 1102959, 1112755, 1112770, 1112819, 1112827, 1112834, 1112838, 1112847, 1112893, 1112897, 1112908, 1112928, 1112939, 1112944, 1112947, 1112954, 64384, 1102998, 1112968, 1112985, 588712, 64430, 1113041, 1113073, 1113090, 1113092, 1113109, 64535, 1113125, 1113147, 1113148, 1113158, 1113163, 1113170, 1113201, 1113216, 326787, 326797, 1113231, 1113258, 1113269, 1113304, 1113307, 1113318, 1113347, 1113352, 326921, 1113380, 1113381, 1113393, 1113398, 1113416, 1113422, 1113429, 1113439, 64882, 589171, 1113461, 1113490, 1113496, 1113498, 1113506, 1113520, 1113525, 1113526, 1113528, 1113545, 1113597, 1113608, 1113622, 65052, 1113654, 1113683, 1113699, 1113710, 327292, 1113728, 1113756, 1113767, 1113792, 1113796, 1113802, 1113808, 1113831, 1113840, 1113861, 1113877, 1113944, 1113959, 1113970, 1114019, 1114026, 1114047, 1114055, 1114066, 1114078, 1114092, 1114093, 1114099, 1114108, 1114125, 1114131, 589844, 1114149, 1114153, 589875, 1114164, 1114181, 1114185, 1114188, 1114198, 1114200, 1114206, 1114215, 404156, 327812, 65692, 1114275, 327855, 1114292, 65752, 1114358, 1114383, 65809, 1114428, 1114460, 1114471, 1114476, 65904, 1114483, 1114488, 1114495, 1114498, 1114502, 1114510, 1114512, 1114521, 1114523, 1114539, 65965, 328110, 1114549, 535288, 1114584, 1114585, 1114588, 1114589, 1114634, 1114635, 1114650, 590365, 1114654, 1114655, 1114664, 1114669, 1114686, 1114700, 590445, 1114743, 1114750, 1114753, 1114757, 1114782, 1103303, 1114805, 1114817, 1114828, 1114838, 590560, 1114856, 1114870, 328464, 1114901, 1114905, 1114946, 1114947, 1114948, 1114979, 852842, 1115004, 590726, 1115021, 1115030, 1115032, 1115072, 1115075, 1115086, 1115092, 1115097, 1115100, 1115106, 1115109, 1115118, 1115154, 1115172, 1115181, 1115191, 1115197, 1115206, 1115255, 1115281, 66745, 1115325, 1115332, 1115355, 1115372, 1115388, 1115423, 1115425, 1115432, 1115462, 1115463, 1115485, 1115511, 853376, 1115526, 1115539, 1115544, 1115584, 1115585, 1115586, 1115595, 1115599, 591326, 1115617, 1115649, 1115650, 1115651, 1103446, 1115660, 1115667, 853533, 1115708, 1115716, 67147, 1115748, 1115783, 1115784, 1115796, 67222, 67225, 1115819, 591543, 1115870, 1115877, 1115881, 1115887, 1115898, 1115929, 1115933, 1115949, 1115961, 1115970, 1115976, 1115983, 67422, 591718, 1116013, 1116015, 1116019, 1116021, 1116025, 1116028, 1116037, 591784, 1116090, 1116103, 1116112, 1116121, 1116139, 1116161, 1116162, 1116164, 1116168, 1116169, 1116185, 1116201, 1116211, 1116228, 1116234, 1116236, 1116264, 1116265, 1116268, 1116273, 1116301, 1116304, 1116324, 1116353, 1116361, 1116368, 1116369, 1116395, 1116419, 1116429, 1116433, 1116440, 1116450, 1116452, 1116467, 186086, 1116531, 1116537, 1116548, 330117, 1116553, 1116554, 1116592, 1116606, 1116607, 592329, 1116657, 1116663, 1116694, 1116695, 1116702, 1116706, 1116728, 1116775, 1116776, 1116799, 1116821, 1116846, 1116862, 1116864, 1116867, 1116871, 1116877, 1116896, 1116902, 854766, 330504, 1116964, 1116996, 854884, 1117033, 1117055, 1117062, 1117066, 1117104, 1117148, 1117150, 1117154, 1117178, 68618, 54659, 68626, 1117206, 1117261, 1117263, 1117271, 1117294, 593007, 1117299, 1117307, 1117313, 1117331, 1117337, 68764, 1117350, 1117357, 1117361, 1117375, 68811, 1117402, 1117446, 1117450, 1117505, 317325, 1117566, 1117579, 1117581, 1117584, 1117589, 1117616, 1117623, 1103776, 69075, 1117672, 593386, 1117689, 1117691, 1117700, 1117708, 1117709, 331284, 1117725, 1117732, 1117740, 593455, 1117748, 1117757, 1117765, 593489, 1117787, 1117798, 855667, 1117826, 1117858, 1117875, 1117883, 1117892, 1117911, 1117925, 331496, 1117935, 1117951, 1117978, 1117979, 1118012, 1118014, 1118042, 855901, 1118055, 331648, 1118140, 1118145, 1118169, 1118172, 1118176, 1118187, 1118199, 1118209, 1118227, 1118229, 1118230, 1118232, 1118240, 1118248, 1118251, 1118259, 593986, 1118293, 1118294, 1118310, 1118326, 1118333, 1118388, 1118389, 1118394, 1118416, 69841, 1118423, 1118429, 1118434, 1118455, 1118456, 1118457, 1118522, 856393, 1118585, 1118595, 1118627, 594352, 1118641, 1118651, 1118659, 1118671, 1118676, 1118677, 1118683, 70108, 70145, 1118737, 1118759, 594476, 1118768, 1118771, 1118792, 1118793, 1118797, 1118799, 1118869, 1118871, 1118883, 1118884, 1118889, 1118892, 1118926, 1118927, 1118953, 1118954, 1118976, 1119004, 1119013, 1119015, 1119021, 1119038, 1119040, 70472, 1119060, 1119076, 856951, 1119110, 1119112, 1119115, 1119121, 856978, 594835, 1119128, 70555, 1119132, 1119150, 1119168, 1119169, 1119179, 594910, 1119207, 1119225, 332824, 1119264, 1119271, 1119280, 70714, 332859, 1119305, 1119307, 595026, 1119316, 70752, 1119330, 1119338, 1119347, 1119374, 1119392, 1119440, 1119444, 1119496, 1119501, 1119528, 1119529, 1119592, 1119593, 1119597, 1119603, 333182, 1119617, 1119620, 1119627, 857537, 595422, 71138, 1119744, 1119755, 1119758, 1119764, 1119774, 857643, 1119828, 1119862, 1119884, 333454, 1119904, 333489, 595641, 1119943, 1119953, 71390, 595689, 1120006, 1120010, 1120019, 1120041, 1120044, 1120049, 1120084, 1120089, 595808, 1120119, 1120128, 71557, 1120162, 1120167, 1120180, 1120187, 1120189, 595910, 1120248, 1120253, 1120261, 1120268, 596007, 858159, 1120316, 1120328, 1120361, 858242, 1120391, 1120395, 1120399, 1120418, 1120453, 1120462, 858328, 1104250, 71908, 1120515, 1120519, 1120541, 1120559, 1120564, 1120574, 1120576, 72015, 858461, 1120606, 1120619, 1120633, 334219, 334222, 1120667, 1120668, 1120672, 1120676, 334251, 1120703, 1120704, 1120706, 1120736, 1120744, 1120773, 1120775, 1120776, 1120781, 55727, 858675, 596533, 1120834, 1120835, 858696, 1120842, 1120867, 1120877, 1120887, 1120891, 1120904, 1120919, 1120924, 1120926, 596645, 596659, 1120963, 1114962, 1120982, 1120986, 596699, 1120988, 1120994, 1121000, 1121017, 1121022, 1121044, 1121050, 72476, 1121057, 334633, 1121068, 1121082, 1121083, 1121104, 1121118, 596837, 334716, 72577, 1121156, 1121162, 72587, 1121167, 859072, 859101, 1121249, 1121260, 1121268, 1121269, 1121309, 597025, 1121327, 1121366, 1121380, 1121397, 1121412, 1121424, 1121426, 1121459, 1121466, 1121474, 72904, 1121501, 1121523, 859387, 1121532, 335114, 1121551, 1121559, 1121566, 859431, 1121576, 1121618, 1121624, 1121631, 1121641, 1121642, 597377, 1121667, 1121673, 335288, 1121736, 1121748, 1121759, 1121799, 335374, 1121814, 1121817, 1121830, 1121861, 1121875, 73328, 1121922, 1121931, 1121937, 1121940, 1121963, 1121967, 597686, 73415, 1121993, 1122033, 1122064, 580227, 1122082, 1122084, 1122087, 859955, 1122155, 1122168, 73619, 1122212, 1122220, 1122221, 1122222, 1122233, 1122234, 1122237, 1122242, 1122247, 1122255, 1122283, 1122286, 860145, 1122305, 1122306, 1122308, 1122325, 1122334, 1122336, 1122341, 1122342, 1122343, 1122348, 598116, 1122409, 1122442, 336011, 1122446, 73882, 1122467, 1122471, 1122476, 1122488, 1122501, 1122504, 1122510, 1122557, 598286, 74000, 1122584, 1122586, 1122593, 1122594, 1122606, 1122619, 74057, 598348, 1122648, 1122652, 1122658, 1122686, 1122690, 1122695, 1122706, 929863, 1122734, 1122745, 1122760, 1122772, 1122776, 1122785, 860643, 1122792, 1122811, 1122826, 1122846, 74274, 1122853, 1122859, 1122892, 336462, 1122908, 1122915, 1122936, 1122966, 1122997, 1123028, 1123052, 1123055, 1123074, 1123090, 1123103, 1123112, 860972, 1123133, 1123134, 1123136, 1123168, 1123184, 1123209, 1123211, 1123220, 598934, 1123227, 1123257, 598973, 1123298, 1123307, 1123350, 318302, 1123383, 1123397, 1123405, 1123408, 1123412, 599137, 1123465, 599178, 1123492, 1123499, 1123518, 1123520, 1123544, 1123586, 1123603, 1123626, 1123627, 1123629, 1123636, 1123649, 1123660, 1123709, 599432, 1123721, 1123755, 1123761, 1123765, 1123776, 599504, 599538, 1123840, 75286, 861724, 1123888, 1123927, 1123930, 1123952, 1123953, 599673, 1123968, 1123969, 1123971, 1123997, 599724, 1124030, 1124040, 1124067, 1124087, 1124093, 1124114, 1124122, 1056710, 1124150, 1124152, 1124159, 1124160, 1124170, 1124171, 1124194, 1124218, 1124226, 1124251, 1124276, 1124300, 600013, 1124306, 1124324, 1124335, 75799, 337952, 1124388, 1124391, 1124451, 1124462, 613923, 1124472, 274797, 1124501, 1124504, 1124522, 1124530, 1124531, 1124534, 1124542, 1124549, 1124569, 1124573, 1124601, 1124621, 1124660, 1124663, 76102, 1124695, 1124699, 1124703, 76140, 76154, 76171, 1124753, 1124767, 1124796, 1124802, 1124803, 1124820, 1124822, 1124831, 1124834, 1124844, 1124866, 1124872, 580697, 1124915, 1124925, 1124926, 1124953, 1124958, 1124982, 1124989, 1124990, 1124998, 1125015, 1125036, 1125041, 859732, 1125079, 1125111, 1125116, 1125132, 1125138, 1125153, 1125194, 1125238, 1125245, 600959, 1125251, 1105046, 1125272, 1125273, 1125292, 1119872, 1125342, 1125352, 842923, 1125394, 1125395, 1125409, 1125443, 1125455, 1125459, 596136, 76945, 1125550, 1125555, 1125559, 1125583, 1125587, 1125590, 1125591, 1125592, 1125596, 1125599, 1125626, 1125628, 1125633, 1125644, 1125645, 1125667, 1125680, 1125684, 1125688, 1125694, 1125699, 339286, 1061433, 1125743, 1125745, 1125750, 1125782, 1125820, 1125829, 1125841, 1125864, 1125920, 1125924, 1125930, 601649, 1125945, 1125947, 1125956, 1125959, 601682, 1125975, 1125979, 1126018, 1126028, 1126035, 1126069, 601783, 1126090, 1126106, 77565, 1126144, 1126146, 1126149, 1126156, 1126178, 77619, 1126215, 1126244, 1126245, 1126267, 339841, 788201, 77725, 1126317, 1126331, 1126361, 1126374, 1126377, 1126380, 1126414, 1126416, 1126425, 1126490, 1126491, 1126494, 1126499, 56678, 1126507, 1126517, 77947, 1126525, 1126531, 1126533, 1126545, 1126578, 1126587, 1126609, 1126651, 1126654, 1126658, 1126673, 843139, 1126691, 1126742, 1126750, 1126761, 1126807, 340377, 1126815, 843163, 864694, 602575, 1126875, 1126880, 864762, 78332, 1126909, 1126910, 1126914, 1126925, 1126931, 1126932, 1126935, 1126945, 1126948, 1126958, 1126963, 1126971, 340541, 1126994, 1127025, 1127044, 1127064, 1127081, 1127084, 1127097, 1127110, 1127117, 1127131, 1127132, 581075, 1127162, 1127177, 1127184, 1127188, 1127195, 78640, 1127228, 1127246, 1127280, 1127325, 1127331, 1127351, 1127359, 1127364, 1127367, 603085, 1127378, 1127398, 1119942, 1127411, 1127425, 1127434, 1127444, 1127448, 1127454, 1127462, 1127468, 1127474, 1127475, 1127489, 1127493, 1127498, 1127525, 1127547, 1127554, 1127561, 1127562, 1127567, 1127570, 1127588, 1127621, 1127668, 1127674, 1127684, 1127695, 1127697, 1127730, 1127741, 1127752, 1127753, 1127754, 79203, 865638, 1127790, 1127810, 1127822, 1127866, 1127895, 1127896, 1127897, 865754, 1127914, 1127932, 1127938, 1127959, 1127969, 79438, 1128028, 1128040, 865909, 1128064, 1128071, 581229, 1128080, 603796, 1128087, 1128119, 1128152, 1128160, 1128164, 1128166, 1128185, 56962, 1128212, 1128264, 1128276, 1128280, 1128283, 1128287, 1128297, 1128319, 1128337, 1128342, 1128346, 1128362, 1128380, 1128381, 1128385, 604102, 604126, 1128417, 1128432, 1128434, 1128450, 1105582, 1128484, 1128492, 1128494, 1128508, 1128511, 581303, 1128524, 1128539, 1128549, 1128567, 342150, 342159, 1128620, 604334, 1128624, 1128668, 80098, 1128676, 1128681, 1128689, 1128691, 1102527, 1128726, 1128738, 1128752, 1128760, 1128801, 1128818, 1128821, 1128840, 1128860, 1128872, 319218, 1128888, 1128889, 1128900, 1128903, 604621, 1128914, 1128916, 1128917, 1128927, 1128958, 1128976, 1128979, 1128981, 1128986, 1128995, 1129055, 1129067, 1129084, 1129085, 1129103, 1129145, 1129167, 1129226, 1129227, 1129232, 1129274, 1129315, 1129356, 1129357, 605098, 867262, 1129422, 1129433, 1129444, 1129448, 1129499, 1129514, 1129537, 1102556, 1129589, 81017, 81030, 1129630, 1129642, 1129644, 1129650, 1129700, 1129731, 1129733, 1129743, 1129748, 1105797, 81184, 1129769, 1129770, 1117767, 81225, 605516, 1129822, 1129838, 1129841, 1129878, 1129888, 1129896, 1129905, 1129959, 1129973, 1129981, 1130006, 1130013, 1130015, 1130023, 1130051, 343640, 1105850, 1130084, 1130091, 1130115, 1130123, 1130156, 1130193, 868055, 1130214, 1130232, 1130240, 1130254, 1105882, 1130277, 1130307, 1130312, 1130327, 1130332, 1130335, 1130340, 1105897, 1130431, 1130435, 1130511, 1130524, 1130536, 1130548, 1130575, 1130608, 1130640, 1130667, 1130670, 1130672, 1130684, 1130708, 1130726, 1130728, 1130732, 1130744, 1130772, 1130805, 1130806, 1130830, 1130837, 1130849, 1105982, 1130874, 1130885, 1130897, 1130916, 1130935, 1130937, 1130946, 82408, 1130988, 1130994, 1130996, 1131004, 1131005, 1131008, 1131013, 1131042, 1131048, 1131049, 868913, 1131062, 1131075, 606791, 1131092, 1131104, 1131106, 868965, 82578, 1131155, 1131173, 1131182, 1131192, 669130, 1131209, 1131216, 1131222, 1131227, 1131240, 1131260, 1131278, 1131279, 1131295, 1131300, 1131301, 1131307, 1131320, 1131343, 1131358, 344937, 82810, 1131396, 1131411, 1131415, 1131417, 607143, 869292, 1131446, 1106079, 1131467, 1131478, 1131510, 1131512, 1131533, 345102, 1131543, 82973, 1131554, 1131557, 1131559, 1131562, 1131588, 1131593, 1131596, 1131609, 1131650, 931357, 1131699, 1131703, 1131724, 1131729, 1131735, 1131738, 1131754, 1131777, 1131786, 1131813, 1131818, 1131821, 1131830, 1131840, 317018, 1131884, 1131892, 83320, 1131961, 83401, 1131983, 1132006, 1132047, 1132059, 869918, 1132147, 1106196, 1132162, 1106199, 1132255, 1132268, 345861, 1132309, 1132312, 870172, 1132336, 1132347, 1132352, 1106230, 608084, 1132399, 1132409, 608124, 1132444, 346023, 1132513, 1132529, 83959, 1132541, 1132549, 1132564, 1132574, 1132583, 1132588, 1132592, 1132613, 346202, 1132647, 1132651, 1132717, 870582, 1132734, 1132735, 1132737, 1132754, 608491, 625704, 1132790, 608508, 1132815, 1132829, 1132834, 1132890, 232508, 1132913, 1132921, 1132945, 1132952, 1132959, 1132960, 1132965, 1132977, 1106335, 1132996, 1133036, 1133057, 1133092, 756829, 1133113, 1133122, 1133153, 608870, 871016, 1133171, 1133173, 1133187, 1133190, 1133202, 1133231, 1133252, 1133254, 1133258, 1133288, 582098, 407339, 1133349, 1133366, 1133374, 1133376, 1133380, 1133405, 1133428, 1133431, 1133442, 1133444, 871301, 1133474, 1133527, 582138, 609252, 1133557, 1133558, 1133611, 1133620, 1133644, 1133646, 1133652, 1133658, 1133710, 1133715, 1133721, 1133744, 1133757, 1133780, 1133792, 1133798, 1133799, 582183, 871720, 1133809, 1133810, 1133812, 1133854, 1133902, 1133907, 85348, 1133931, 1133983, 1133986, 1133988, 1133989, 1133990, 1134001, 347583, 1134024, 1134028, 1134030, 1134057, 1134064, 1134071, 713301, 320086, 1134135, 1134140, 1134184, 85610, 1134188, 1106537, 1134203, 1134212, 1134221, 1134263, 1134266, 1134281, 1134306, 1134309, 1134313, 1134343, 1134357, 85798, 1134394, 1134405, 713357, 1134420, 1134422, 1134429, 1134436, 1134444, 1134449, 1134499, 1134500, 1134539, 1134552, 1134557, 1134558, 1134560, 1106598, 1134572, 1134583, 1134614, 844464, 1134639, 1134656, 1134658, 1134666, 1134676, 610414, 1134723, 1134728, 407575, 1134752, 1134784, 14371, 1134806, 1134807, 1134835, 1134838, 1134839, 1134846, 1134850, 1134853, 1134862, 1134871, 1134920, 1134926, 1134931, 1134945, 1134949, 1134952, 1134967, 1134978, 1134987, 1134998, 1135028, 1135039, 1135042, 1135052, 1135081, 1135094, 1135098, 1135106, 1135121, 1135142, 1135150, 538718, 1135165, 1135190, 669798, 1135234, 1135238, 1135249, 1135262, 1135274, 1135280, 1135301, 611027, 611049, 1135362, 1135395, 1135397, 1135438, 1135448, 1135498, 1135522, 1135525, 1135533, 1135553, 1135563, 1135568, 1135570, 1135605, 1135606, 320340, 1135625, 1135650, 1135684, 611400, 1135722, 1135727, 1135738, 873607, 1135780, 1135818, 1135841, 1135848, 1135856, 1135859, 1135875, 1135894, 1135903, 1128954, 1135933, 1135935, 1135966, 1136008, 1136013, 1136014, 1136028, 1136042, 1136073, 1136108, 1136113, 873986, 1136152, 1136180, 1136183, 1136188, 1136198, 1136212, 1136215, 1136233, 1136245, 1136283, 87730, 1136350, 1136384, 1136388, 1136397, 1136424, 1136425, 1136429, 612158, 1136482, 1136491, 612251, 612252, 1136550, 1136559, 1136584, 1136634, 874523, 1136676, 1136686, 1136724, 1136726, 1136728, 1136756, 1136763, 1136771, 1136793, 1136811, 1136824, 1136830, 1106978, 1136859, 1136890, 1136918, 1136948, 1136966, 612831, 858395, 55325, 582756, 613079, 88808, 88882, 613222, 1107092, 875518, 875528, 89100, 613422, 1107123, 89149, 1107132, 613576, 351473, 613642, 89360, 875793, 976102, 89480, 351625, 875937, 613827, 408145, 876017, 613911, 89633, 89634, 932447, 876108, 102330, 876154, 89877, 320832, 614338, 90139, 1110927, 614540, 352420, 614567, 614620, 1102868, 90368, 876885, 876934, 877076, 90708, 615000, 352949, 1114423, 615149, 91055, 877546, 877556, 353282, 91157, 353333, 877676, 615543, 714335, 91778, 1107568, 1120375, 616142, 796695, 91913, 354076, 878401, 354123, 878415, 92008, 92143, 92176, 616483, 963267, 971998, 845517, 616705, 92622, 879076, 1064020, 92670, 464999, 92713, 92742, 617033, 1107731, 617125, 1107745, 879329, 617192, 617223, 92974, 355339, 355519, 355540, 617733, 617742, 1107851, 880092, 15612, 880110, 618024, 59330, 880353, 94039, 618349, 356260, 59381, 880839, 2375, 230103, 881067, 881070, 94642, 881142, 409003, 619013, 583772, 881246, 1108075, 94866, 881324, 583824, 881533, 619408, 357297, 95167, 357336, 1108138, 1064450, 881738, 881767, 95381, 889718, 95448, 882005, 95594, 1108199, 619994, 95764, 357934, 620231, 88116, 882803, 96443, 620788, 620810, 334918, 96565, 96597, 358771, 883176, 883184, 96857, 671507, 561885, 621190, 359283, 359286, 621550, 359463, 1108487, 864818, 97466, 883929, 72228, 884131, 621989, 622023, 97834, 97873, 1108579, 622187, 622238, 622262, 884436, 622467, 1108632, 846492, 360488, 710329, 98415, 360650, 81842, 885018, 628109, 885095, 98675, 360822, 579403, 623112, 584499, 885663, 1108809, 1108811, 623603, 1108821, 55690, 1108867, 886048, 886243, 624210, 624304, 278827, 624426, 1108961, 886682, 409934, 1108993, 624662, 624689, 1109050, 195393, 100777, 887242, 1109070, 1109072, 100932, 100940, 625256, 1068306, 1077039, 1120685, 322709, 497477, 625633, 887806, 625685, 625691, 887840, 1109171, 887883, 101478, 888024, 578343, 60634, 101850, 626166, 626218, 364094, 888413, 847124, 143062, 789014, 1109288, 626517, 626536, 888689, 1129452, 888762, 102366, 497659, 626761, 626823, 626866, 1109365, 1065678, 1109381, 889197, 1109396, 191894, 410350, 1109407, 1065739, 365139, 675569, 103128, 60902, 889757, 103328, 103402, 323085, 103595, 890075, 628039, 628136, 366118, 247876, 366342, 890643, 628564, 61075, 628657, 1109680, 628808, 890953, 498021, 579601, 891083, 148515, 1109722, 104758, 54818, 891432, 629337, 629420, 105183, 891634, 1109806, 61240, 578560, 105367, 891987, 105574, 105604, 629913, 1111030, 630092, 630123, 885159, 892353, 368106, 368124, 892490, 892584, 1109969, 847829, 847831, 106320, 892768, 1110001, 630845, 893117, 368900, 893211, 631108, 631214, 369105, 61519, 631266, 893530, 369311, 1110129, 107205, 893657, 893658, 893756, 701898, 631665, 631789, 631852, 107701, 894139, 61659, 367519, 632456, 72298, 108391, 586049, 1111049, 370635, 108500, 370750, 632935, 1110391, 633073, 633124, 633137, 108965, 633411, 895721, 895787, 895931, 1110531, 633998, 634055, 848431, 544859, 542609, 804755, 896446, 491017, 848496, 896746, 634650, 110375, 324242, 634856, 841671, 1110710, 110736, 935962, 897222, 635081, 56067, 761250, 111077, 373224, 457609, 635379, 1110794, 326685, 635729, 897878, 897891, 897892, 1023476, 630264, 111704, 636093, 1110904, 972647, 636141, 111894, 636208, 334263, 898402, 636348, 636417, 334194, 112175, 636603, 898753, 936255, 636814, 898971, 899008, 374724, 899014, 112638, 899076, 637004, 637005, 637080, 899268, 112864, 637187, 112928, 62517, 62521, 899428, 375219, 899511, 1023767, 899741, 637695, 637698, 899876, 544978, 899891, 1111188, 637909, 113645, 637960, 1111214, 281106, 761705, 638163, 845725, 1111275, 674396, 638532, 900690, 900867, 900870, 901007, 638898, 901412, 639288, 1111439, 377304, 1111460, 639500, 901678, 115254, 639618, 325057, 377534, 237689, 115594, 82412, 115718, 412503, 377887, 237772, 115952, 902410, 378218, 902586, 325213, 902790, 378632, 902969, 640857, 841870, 640885, 116653, 116659, 1068025, 378866, 903268, 325310, 641164, 641193, 117115, 841979, 903643, 903661, 893358, 641617, 1103766, 903790, 903975, 588762, 500204, 1111874, 379846, 580040, 117829, 187234, 642144, 117862, 117910, 642252, 117965, 904461, 642328, 904565, 868111, 642587, 904780, 642647, 118372, 859388, 642741, 642760, 849869, 118484, 1068326, 642800, 642841, 905050, 150873, 643181, 544108, 643223, 1112097, 643303, 643328, 905574, 905638, 119263, 675245, 1112152, 119400, 282050, 643749, 803862, 1103838, 1112568, 119531, 643870, 769008, 1112203, 587923, 850078, 413172, 906203, 906238, 644204, 906391, 544294, 906491, 644356, 644392, 382254, 587999, 644416, 382407, 644637, 644678, 120398, 644699, 117487, 631766, 120593, 1121333, 645080, 907301, 907310, 383029, 907322, 121025, 645349, 500775, 383220, 121113, 907576, 1112486, 907807, 121431, 121484, 121488, 645818, 850384, 1130095, 68896, 383847, 121746, 121843, 719371, 646245, 1112596, 122011, 326176, 369873, 632020, 122298, 1079717, 1112658, 908897, 981606, 646814, 909052, 1112705, 122644, 1112709, 122690, 122724, 122795, 282652, 123090, 909549, 909560, 894466, 909736, 647597, 632223, 647637, 64259, 588563, 123525, 647887, 544890, 123648, 56494, 981828, 910246, 648174, 123919, 386091, 1103987, 123980, 648296, 386213, 239143, 100154, 124244, 910690, 910699, 124291, 648638, 124607, 648925, 648975, 807223, 386934, 124798, 649104, 124895, 124938, 1043073, 125037, 649335, 911480, 588848, 1113175, 676274, 632671, 912165, 125791, 912272, 604884, 125929, 388130, 388265, 388319, 650476, 650559, 912931, 1113353, 912970, 126582, 650966, 388981, 126848, 913285, 126866, 326988, 1113425, 913435, 389192, 414393, 913574, 127150, 851318, 853864, 389501, 389506, 327062, 651679, 389541, 651708, 938754, 651821, 389739, 389808, 651969, 914186, 389908, 127812, 632755, 390313, 128174, 652495, 128291, 128365, 128521, 1113692, 108813, 128604, 390770, 652917, 1113724, 653077, 653090, 128874, 391077, 915433, 129008, 1026391, 239971, 653413, 653450, 653517, 653560, 653579, 129347, 653662, 129435, 129457, 1113847, 916050, 916107, 391829, 65305, 129695, 129700, 916214, 392124, 916453, 392181, 851807, 65383, 130306, 916768, 65416, 458638, 21744, 392610, 1114021, 654897, 1114044, 917100, 130694, 392882, 917233, 917252, 130858, 917298, 130951, 917436, 655332, 655373, 393238, 370985, 917567, 917606, 1114132, 131247, 393411, 655607, 917813, 131405, 655728, 393611, 415141, 131573, 131617, 1070541, 131850, 394040, 656267, 394148, 132007, 918446, 64421, 1114277, 394208, 1114279, 132133, 656422, 918605, 918750, 132345, 132423, 132469, 132495, 132575, 656994, 677485, 1114402, 394980, 657161, 132938, 919556, 56808, 395326, 109587, 919673, 919707, 657594, 919760, 919771, 133385, 22247, 1008285, 395660, 395665, 1114524, 1114547, 133747, 920289, 396098, 396122, 658273, 920435, 328169, 396197, 134127, 658427, 396312, 22364, 1114643, 1114660, 1121794, 134469, 1114690, 658865, 134628, 396870, 921193, 396967, 396974, 1114739, 396995, 134875, 921322, 134903, 134905, 659297, 659385, 153592, 659458, 1114804, 921716, 921746, 135347, 503164, 397550, 323874, 397564, 659825, 659901, 135634, 397803, 1114882, 135702, 1114887, 634302, 922237, 135821, 135936, 398127, 660426, 136168, 983896, 1114974, 398438, 660681, 1027626, 136473, 136476, 136578, 809209, 660983, 136726, 983987, 923189, 923221, 399035, 22836, 896672, 923726, 923757, 661623, 399503, 661717, 399595, 137468, 661763, 137554, 399701, 399730, 137662, 137674, 661986, 661990, 137712, 662028, 280245, 662108, 662167, 1115248, 849376, 318841, 138157, 400354, 138263, 940548, 400435, 400491, 662687, 1115334, 924854, 1115339, 400681, 924975, 925041, 925119, 662982, 788278, 400908, 842609, 547426, 925292, 663156, 663182, 138933, 139000, 139175, 401335, 139340, 401572, 663755, 198015, 663891, 139619, 663916, 926094, 664034, 926191, 853437, 402132, 402135, 402300, 664497, 664537, 664540, 664605, 1115656, 118151, 402532, 402595, 664751, 664775, 1115693, 402732, 402799, 402832, 927126, 665022, 140770, 927216, 402991, 403035, 547771, 403145, 141078, 1115798, 403399, 403520, 1028448, 927899, 141475, 853707, 665875, 842703, 403824, 928128, 403914, 666238, 67359, 928453, 772885, 404221, 198444, 142148, 404407, 928755, 666615, 1116016, 1114768, 142656, 404889, 404968, 929366, 1116092, 1116096, 143012, 405183, 897659, 67545, 405298, 405322, 1116134, 929693, 929714, 667607, 1116180, 405684, 405761, 405780, 143680, 143721, 1116221, 405974, 1116242, 143889, 668190, 143955, 1116260, 668300, 406187, 144050, 144051, 406237, 144138, 24041, 668648, 930833, 345241, 406582, 406640, 144498, 931027, 406838, 668999, 406920, 1116402, 144842, 407007, 144872, 144952, 931401, 931576, 111573, 407302, 931621, 407383, 931678, 407457, 145391, 67937, 373795, 145662, 854417, 932294, 932299, 932340, 932412, 408157, 408210, 670360, 1116612, 592333, 146170, 1116633, 68088, 932859, 319123, 408686, 146574, 903976, 671027, 408905, 408908, 146783, 671117, 68164, 408986, 24480, 409031, 409057, 1116763, 409157, 147064, 327873, 933594, 854655, 1116816, 671630, 409515, 1116829, 671720, 1116845, 147537, 671829, 147550, 409708, 409736, 409754, 409853, 147746, 934193, 458832, 1116903, 680004, 1116927, 672262, 68360, 410169, 148159, 410329, 148209, 410387, 410391, 148322, 672626, 68432, 410635, 148503, 982127, 673041, 410946, 854924, 673175, 148898, 673223, 148977, 57068, 935437, 66067, 1073430, 935643, 411392, 411421, 673666, 673689, 935870, 411600, 149491, 1117182, 1117183, 68610, 810947, 411822, 1117235, 936261, 319235, 412073, 636661, 149975, 149979, 936422, 412136, 418216, 150029, 412182, 287159, 493826, 1117295, 150207, 412357, 674504, 674513, 412395, 412407, 412410, 674566, 674571, 936777, 150347, 674691, 150443, 1117343, 150505, 674867, 150595, 412750, 1029987, 674956, 412817, 858085, 412865, 937168, 1117394, 1117398, 1117405, 413054, 150926, 413075, 112541, 855288, 675316, 937486, 1117451, 675430, 937603, 413335, 937626, 767957, 937753, 1117495, 151408, 675811, 675823, 675920, 1117542, 413801, 676113, 676426, 414315, 505980, 1117650, 25398, 1073975, 676791, 939007, 152627, 939096, 414899, 414970, 677133, 415021, 677269, 1074076, 677292, 415155, 677304, 939453, 1117771, 415184, 939521, 153123, 677421, 153239, 939698, 415438, 153374, 415526, 415661, 415776, 1117872, 1117874, 153663, 678053, 1113709, 593611, 153809, 860569, 153868, 416161, 375206, 154164, 678466, 154285, 375244, 154316, 678672, 416561, 678724, 154441, 416646, 117174, 416672, 416692, 416705, 416738, 1118040, 941093, 416823, 941232, 681173, 154904, 941346, 1105021, 1113751, 679438, 1118127, 679482, 331716, 113269, 679625, 941780, 417717, 417895, 1118226, 417905, 1122505, 680190, 680225, 680230, 418157, 942491, 1118286, 856149, 156181, 680480, 418389, 942728, 156302, 680613, 942763, 418501, 840770, 418615, 156479, 156548, 680854, 418725, 943014, 415479, 680890, 594086, 418801, 418832, 156707, 418883, 681047, 156776, 418952, 200918, 1118435, 681317, 419192, 943613, 943638, 943913, 157565, 419729, 258390, 1074859, 157744, 856417, 944345, 944428, 420169, 158026, 158054, 840782, 682567, 1118647, 944730, 158469, 158569, 682859, 682902, 158714, 420872, 158752, 1118734, 945385, 1121860, 1118369, 683410, 159127, 1118806, 1118820, 683641, 419783, 869486, 159535, 1118868, 159767, 159842, 159867, 159922, 1118921, 946406, 159992, 114048, 160010, 684324, 1118941, 422217, 684502, 1118974, 684536, 1131383, 160276, 160309, 160313, 946751, 856861, 946910, 160574, 684899, 947066, 947119, 684994, 685004, 422890, 422938, 160801, 947416, 947430, 31548, 161027, 423205, 161162, 275968, 161346, 685661, 1119167, 161434, 161474, 947981, 423807, 685998, 423863, 948176, 161766, 1119230, 948232, 686139, 686229, 1119259, 245463, 686392, 686422, 424280, 686436, 424318, 96933, 1119355, 162657, 1105276, 162696, 949129, 1119384, 424856, 687020, 1119390, 162946, 949501, 949516, 425438, 949738, 145104, 425588, 1119514, 687792, 425694, 1119531, 687991, 1111417, 950222, 988508, 688208, 950390, 114725, 426403, 688646, 950862, 426666, 688815, 1119695, 71120, 164798, 689120, 1119740, 427033, 639157, 164940, 1119760, 188803, 165037, 427220, 427221, 951558, 427311, 689461, 427372, 165237, 333375, 165287, 427505, 689657, 165393, 952165, 165977, 71383, 952722, 952749, 166325, 428479, 952768, 428494, 166356, 428503, 952866, 158817, 952938, 166508, 690869, 428744, 166683, 428836, 428928, 953258, 691188, 429119, 974485, 429182, 857963, 429205, 1105422, 429228, 726929, 691711, 691798, 167533, 954096, 691956, 429843, 840845, 429876, 1120236, 692151, 167873, 692201, 954363, 692238, 430114, 167974, 145260, 430258, 1120322, 430536, 168445, 692815, 430704, 955028, 430755, 168655, 168786, 955228, 693097, 1120404, 168854, 693157, 168906, 168959, 431159, 693353, 169166, 1120466, 693494, 169257, 955763, 955888, 431669, 169584, 693880, 1114236, 1120537, 956142, 1120563, 694087, 694106, 431988, 432012, 169964, 694270, 1120599, 432162, 1120621, 432315, 1131713, 956670, 1120651, 432503, 334232, 694683, 694739, 904767, 1120678, 170498, 1120689, 694851, 957181, 1120726, 695196, 957479, 84257, 1114290, 957686, 695697, 171431, 695737, 957990, 858717, 902411, 374178, 433786, 1123034, 596613, 171824, 696148, 434008, 696173, 696201, 28653, 958390, 696261, 958435, 858790, 1120945, 696375, 696381, 434295, 696519, 696533, 958846, 904849, 172940, 334662, 435130, 116221, 697374, 959564, 173181, 815308, 959723, 435526, 697773, 1121191, 697861, 843768, 173661, 960142, 435864, 173834, 1121251, 174034, 960571, 436285, 174157, 436325, 960734, 174305, 541429, 174351, 960803, 698703, 436582, 465990, 960998, 1121369, 1121374, 174722, 902935, 961305, 75656, 699218, 699279, 437191, 961525, 1114420, 175228, 175258, 509832, 699726, 961879, 699817, 903073, 72956, 699896, 962160, 437910, 291448, 437986, 946839, 700345, 176124, 700430, 1125466, 438344, 481998, 176276, 700590, 700756, 176499, 438891, 701050, 176781, 176953, 439146, 963471, 177167, 791513, 597520, 963943, 177610, 439766, 701919, 902014, 116991, 439879, 1121892, 177775, 439929, 440144, 702298, 1121941, 964482, 964554, 964608, 702508, 861865, 702598, 608244, 1125481, 702722, 554031, 178575, 178610, 702919, 702952, 728829, 178677, 1114542, 440973, 703134, 703145, 703240, 703298, 441204, 179066, 965627, 179219, 703554, 179309, 179395, 703736, 884569, 870157, 1070930, 861435, 179876, 704182, 179955, 1122267, 1122271, 180091, 442307, 442313, 966614, 58374, 423254, 1122316, 180298, 180370, 966925, 1122352, 180593, 705131, 967278, 705174, 180956, 180979, 967419, 1122458, 181213, 705551, 967706, 181305, 181329, 181479, 443694, 705905, 443766, 181644, 968186, 968238, 1122569, 443964, 1122591, 706291, 1122601, 1122610, 706373, 444233, 706401, 968552, 444318, 1024250, 706501, 968667, 1122643, 706624, 444485, 182350, 968788, 1122662, 336236, 968847, 444598, 706780, 968932, 444688, 968995, 706900, 706985, 445026, 707431, 336379, 707577, 707645, 707689, 969984, 707853, 183696, 1122894, 642301, 708094, 708144, 183919, 1122920, 708271, 446160, 970549, 1122957, 970577, 446290, 184221, 184223, 446448, 184333, 184355, 708671, 184497, 1123046, 1123057, 84713, 709056, 1123069, 642473, 184833, 971331, 971415, 971528, 185119, 971564, 971626, 709492, 709494, 709522, 709726, 1123191, 1079501, 447697, 972092, 447912, 448000, 448042, 448059, 972396, 186071, 448305, 380561, 1123337, 972896, 710756, 186484, 710887, 710970, 973336, 973416, 449154, 1123435, 449252, 973614, 1123469, 187317, 1123488, 187330, 187371, 449539, 711802, 973951, 449717, 187574, 187585, 852966, 187675, 712006, 187763, 712140, 188053, 450290, 188166, 712468, 1123584, 188273, 450426, 974727, 188318, 450493, 450498, 450543, 188445, 67379, 974906, 450640, 975031, 407816, 975140, 188784, 713127, 555772, 713278, 451150, 1123822, 975774, 189365, 975809, 975821, 1123837, 975865, 975875, 451642, 451643, 189529, 976015, 451826, 976293, 1123915, 1114148, 1123917, 452155, 190070, 643361, 452298, 190164, 1123961, 452336, 452385, 976678, 452422, 976771, 976827, 714849, 714863, 714881, 966542, 977156, 1124059, 452924, 190845, 715140, 1124090, 191143, 453305, 191189, 453350, 137306, 905706, 715661, 977828, 977852, 715756, 715765, 993117, 978017, 1124198, 191625, 978096, 978121, 453857, 1124221, 716082, 163053, 978422, 978459, 282352, 192284, 192397, 716717, 978995, 979007, 979044, 1124369, 643775, 1124373, 979086, 454824, 716995, 717111, 192846, 1124418, 455256, 979571, 731251, 455359, 455371, 717538, 455425, 979749, 455513, 455561, 979890, 862380, 717849, 717873, 980023, 193676, 1124550, 980185, 980205, 455957, 980263, 718133, 456002, 980406, 718295, 1120348, 718364, 980533, 718489, 718490, 456383, 194320, 1037279, 456674, 194563, 980996, 722260, 731483, 456807, 163517, 981207, 981240, 1123804, 1037361, 194893, 207250, 457118, 719438, 195189, 981696, 457426, 195312, 981837, 981948, 1124863, 982019, 982104, 195677, 1124882, 982144, 982229, 457951, 982377, 600638, 195958, 720395, 1124957, 196233, 982696, 982810, 196450, 458616, 1125013, 458674, 982967, 458688, 720868, 196599, 983068, 720949, 688140, 853267, 983196, 1125075, 1125081, 721273, 459153, 197069, 819279, 197174, 459398, 983787, 459503, 721661, 197375, 76591, 721708, 197487, 1125183, 644600, 721882, 721942, 1125227, 984245, 460002, 197875, 722189, 722220, 1125260, 197965, 984476, 1115187, 984620, 1125306, 984702, 460506, 722676, 460663, 984952, 198536, 198610, 985070, 198698, 722996, 460855, 198894, 198905, 426367, 461052, 723295, 461190, 723457, 723486, 1125483, 426435, 1125495, 723688, 199407, 985840, 77398, 1125510, 985900, 985913, 199508, 461659, 723897, 986094, 723975, 601268, 461950, 199831, 251774, 462111, 722441, 724400, 200144, 1029607, 862111, 994564, 200228, 986693, 1125651, 724606, 724623, 724657, 1125670, 724767, 986927, 986960, 1125690, 1125706, 462794, 200695, 725044, 200782, 426684, 987306, 463021, 645149, 1125763, 463137, 463180, 725355, 463295, 201194, 463421, 463507, 201381, 725715, 725726, 201444, 987894, 463660, 463679, 725828, 863720, 725969, 725996, 988153, 689019, 726379, 464240, 329704, 988542, 1125954, 988595, 464354, 988661, 732756, 202245, 202250, 202310, 464465, 121109, 202384, 464548, 120219, 190054, 726834, 989078, 989086, 202664, 726971, 295928, 1132796, 464864, 202726, 464904, 989196, 1126064, 464930, 727154, 727181, 951320, 989398, 727291, 465156, 989526, 989622, 609071, 722550, 727572, 203321, 989795, 989850, 989869, 203578, 990049, 990059, 727943, 203720, 465920, 203783, 203790, 728112, 990480, 204088, 466338, 990628, 466400, 466454, 466456, 466536, 687671, 728735, 466657, 204520, 990969, 991000, 204701, 466865, 466878, 729023, 729058, 670004, 1126403, 466968, 991278, 204851, 24280, 991332, 204904, 991361, 204951, 204957, 78181, 991583, 991798, 205433, 729755, 602263, 908101, 992162, 730062, 467932, 383831, 730149, 340145, 730156, 992308, 468021, 205954, 205959, 992595, 34366, 730541, 468437, 468465, 992867, 252864, 992904, 730832, 468730, 993055, 1126709, 206738, 1126736, 731129, 469121, 469236, 733585, 469356, 993677, 233856, 1126817, 731662, 731691, 993838, 469566, 995778, 427801, 207572, 207703, 207754, 469976, 207879, 78352, 122049, 602653, 602654, 470372, 1126981, 994761, 994762, 1019506, 208344, 331343, 864853, 208394, 208417, 864864, 208493, 732794, 470680, 208657, 600524, 208702, 470933, 952306, 995250, 78497, 78501, 471017, 995529, 908665, 995599, 995721, 995898, 209497, 209531, 515531, 321226, 733956, 996146, 209769, 209797, 996236, 340815, 472232, 996592, 734466, 734529, 603021, 996730, 472445, 734678, 996851, 996876, 734746, 734758, 865206, 734136, 734836, 865218, 997024, 865253, 210808, 472957, 997278, 473020, 473028, 473029, 473062, 997437, 473182, 515785, 735469, 735502, 997654, 997671, 473495, 253693, 909115, 736117, 736234, 998480, 736364, 212146, 862515, 474468, 736703, 212559, 736936, 216579, 1127718, 474875, 474961, 737112, 1115677, 737266, 999522, 999612, 166606, 999644, 1127802, 251513, 475394, 475408, 184640, 213353, 213365, 737654, 999829, 999910, 737913, 213726, 213758, 1127912, 738248, 691028, 214041, 738451, 341529, 79390, 172986, 1127990, 603714, 1000865, 1000893, 738788, 111891, 738829, 1000993, 738859, 79457, 214625, 909587, 739143, 739166, 739171, 477176, 1001465, 1001492, 1124480, 477474, 739636, 1115760, 477552, 862621, 1001961, 1001968, 739828, 1128198, 477793, 739954, 739996, 215744, 341802, 1002287, 740168, 1128270, 740366, 478255, 1002572, 1128291, 1107057, 1002690, 775366, 647777, 216656, 216731, 216736, 1128402, 866276, 1128427, 1003514, 1003630, 479358, 741514, 1003747, 479475, 479495, 479527, 1003909, 1003917, 479687, 1128562, 36299, 735360, 1004330, 480056, 742238, 217999, 604332, 480320, 1004774, 866523, 742695, 480646, 742800, 1004948, 742808, 1005149, 1005174, 779201, 480917, 866615, 1005440, 604500, 743489, 779295, 219453, 743777, 219723, 219797, 219809, 219844, 219898, 744230, 482144, 1128939, 80372, 1128949, 1128956, 429906, 482382, 744538, 220290, 220352, 220398, 482580, 744835, 1129042, 745060, 745317, 1007481, 745373, 483253, 692258, 745784, 745863, 745872, 671862, 36951, 1008191, 1129241, 221987, 1008453, 1008502, 1041905, 222132, 222133, 80718, 484350, 484467, 867190, 484556, 998270, 484646, 1008938, 1009016, 746963, 747004, 484881, 1009291, 1009408, 747285, 1129436, 941435, 223160, 747566, 1129483, 747597, 867346, 485567, 1009859, 1129508, 485594, 1010069, 747939, 998479, 748018, 485891, 1010270, 1010376, 1010426, 486173, 748434, 486312, 1129633, 224261, 486431, 748579, 748843, 486716, 486814, 224688, 1011124, 486839, 486939, 1011337, 1011348, 749215, 749326, 487275, 897859, 867648, 124943, 1011812, 1129835, 225419, 955087, 749813, 343439, 256066, 749976, 225703, 1129886, 750029, 487934, 750114, 750167, 1012318, 488073, 225986, 226012, 226190, 488426, 1012829, 488571, 924092, 226572, 750926, 488839, 226741, 488887, 1013228, 1013231, 489013, 1013322, 751255, 751289, 489166, 1130105, 489238, 227104, 1013556, 1013640, 227230, 1013679, 751571, 751621, 227362, 1013904, 227516, 1130199, 1014055, 452761, 955453, 1014167, 1014189, 490000, 490071, 605977, 1014437, 81693, 752388, 752441, 1130296, 752488, 868157, 490358, 752686, 911889, 490612, 1130345, 1014933, 490752, 752914, 1130378, 228670, 1130383, 228769, 606110, 490936, 753089, 490982, 1015289, 753220, 229045, 491200, 868300, 1130449, 229107, 1106615, 1015668, 229254, 1015949, 753921, 1130541, 229677, 1130558, 344155, 387851, 230013, 1016486, 868477, 1016577, 1130635, 169442, 754567, 1016732, 754589, 754609, 230365, 431674, 755062, 230808, 230824, 493020, 230878, 1017442, 493218, 1017519, 755381, 493262, 231134, 755461, 344368, 493439, 755688, 1017930, 493723, 493829, 493845, 493900, 1018202, 606609, 257085, 1018290, 25179, 494111, 1130933, 232008, 1018475, 494285, 606672, 1018792, 956231, 756681, 904125, 756790, 338487, 232609, 494786, 756934, 1131046, 1019246, 232919, 1019366, 495159, 495243, 1019607, 233178, 233185, 1019720, 1019740, 1125086, 495570, 495608, 495618, 233529, 1020019, 233881, 233900, 869124, 1020489, 758422, 496334, 301180, 234277, 234583, 758918, 1131379, 759007, 496927, 759101, 759125, 1021302, 1021505, 497356, 759514, 235280, 235309, 497483, 913041, 1131507, 497632, 235560, 1022004, 869395, 497813, 497919, 760171, 941866, 1131613, 760387, 236105, 1022554, 853522, 236254, 1022698, 236269, 236359, 1107730, 498576, 760825, 761014, 236763, 236776, 236793, 236824, 761225, 761313, 499188, 761430, 1044414, 499364, 499385, 237335, 237441, 83266, 237465, 499666, 869721, 761883, 761907, 607582, 761941, 762035, 762072, 1131909, 563938, 1024432, 762434, 741173, 500447, 1024775, 500574, 1024923, 500646, 762803, 500680, 762865, 869887, 1025072, 500794, 1025104, 500832, 763063, 238804, 1132087, 1025444, 239147, 763443, 239245, 763534, 239250, 501442, 763641, 763748, 501645, 239589, 501878, 501894, 83666, 502000, 502104, 502221, 240102, 83712, 764533, 1026733, 502453, 127437, 870184, 1026842, 764766, 8008, 1132360, 765070, 240792, 240865, 880930, 1027534, 1132452, 1125347, 1027591, 346031, 846022, 503482, 1027793, 40228, 765659, 241399, 503613, 1110190, 695643, 503949, 503963, 766142, 1116643, 504057, 241937, 242042, 1107919, 766379, 242115, 1132628, 1028701, 1028772, 242583, 242603, 504751, 242796, 433683, 1125406, 243076, 767404, 767490, 767499, 243224, 767549, 767589, 243365, 1029816, 767678, 767703, 652242, 1029871, 1132847, 505647, 767991, 1030163, 1132903, 768114, 505992, 243874, 1132917, 243941, 1132925, 243972, 1030502, 506278, 768557, 1030770, 1132991, 506577, 244472, 1030949, 1030954, 1030994, 506768, 768916, 768939, 1031152, 608785, 507093, 1031384, 507139, 95449, 769310, 259312, 769449, 1031609, 507424, 245295, 565173, 1031850, 507583, 1031935, 303070, 1133194, 245620, 128322, 1032101, 245833, 958484, 508162, 1032499, 770356, 246076, 508254, 246118, 770472, 1032658, 783779, 770534, 1032680, 1032694, 1032719, 1032729, 1125519, 770613, 246327, 508476, 770648, 508510, 1032978, 84797, 508821, 246724, 508870, 509003, 1033381, 128543, 247025, 1033544, 1033642, 84901, 771555, 1125556, 771730, 783989, 247506, 509654, 1033989, 1033997, 1034015, 1133533, 1133535, 347113, 771994, 1034154, 200289, 247819, 247821, 1034261, 510004, 1034305, 1034337, 248028, 1034491, 772409, 772507, 128757, 1034724, 1034759, 248362, 510514, 248407, 510645, 772833, 772836, 303585, 772968, 1035153, 773025, 773040, 347294, 1035339, 1035340, 1035354, 511215, 1035658, 511401, 249267, 511466, 1133827, 249364, 773878, 609580, 1078819, 511806, 511841, 774027, 249814, 871767, 774158, 512069, 512146, 1036468, 512264, 774472, 512378, 512423, 1036759, 1036776, 512536, 1036830, 1036844, 512569, 512621, 959256, 1037088, 250673, 1134049, 1037159, 139285, 129183, 250836, 512985, 250927, 1037376, 8356, 1134109, 513232, 775430, 513303, 775459, 775487, 1003074, 1134157, 1037830, 1037871, 513591, 1037917, 1037969, 1037981, 609922, 513836, 513838, 514029, 1134251, 1046889, 1134272, 435223, 1134277, 514241, 252103, 514264, 514360, 776547, 514421, 252314, 252441, 872213, 776859, 776865, 1039098, 515005, 252887, 515064, 1129518, 515112, 515123, 515217, 515273, 1039636, 777578, 828649, 1039787, 253406, 653909, 777839, 777906, 515775, 253711, 129672, 778062, 1040212, 253834, 253837, 516087, 516185, 872463, 1040530, 1040637, 516429, 1040730, 1040752, 778620, 516532, 1040890, 254576, 86135, 779025, 254740, 1041217, 516941, 741537, 254923, 779256, 517135, 1134769, 255016, 255025, 1041478, 87055, 1041628, 779540, 1041743, 1029806, 86290, 517763, 517928, 255889, 610645, 60900, 855243, 518220, 1042543, 256245, 122010, 518578, 907635, 518785, 518796, 256692, 1043138, 1043151, 130168, 1043229, 519027, 1043346, 1043433, 872978, 741803, 781539, 781689, 820372, 506130, 781808, 1043976, 602152, 610923, 781987, 257783, 174039, 782125, 782208, 1044449, 258032, 520202, 520273, 1016027, 1125919, 1044869, 1059674, 782783, 130467, 258617, 305251, 357777, 1045190, 521026, 130543, 521147, 783335, 259070, 521254, 1045593, 521329, 521342, 521367, 783583, 1045742, 130610, 259437, 783751, 584757, 521791, 1046115, 521869, 1046166, 784039, 784092, 796068, 1046316, 522054, 259924, 522212, 260080, 1135619, 522358, 1046684, 261830, 260302, 1046757, 130776, 1046881, 522821, 611442, 1047406, 523197, 261101, 1048410, 1135796, 261207, 43548, 261295, 864153, 261661, 218384, 786171, 524266, 567976], +} diff --git a/pyserini/resources/beir.yaml b/pyserini/resources/beir.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e488ec92f37da2eb4afb9999304704ec3db45938 --- /dev/null +++ b/pyserini/resources/beir.yaml @@ -0,0 +1,741 @@ +conditions: + - name: bm25-flat + command: python -m pyserini.search.lucene --index beir-v1.0.0-${dataset}.flat --topics beir-v1.0.0-${dataset}-test --output $output --output-format trec --batch 36 --threads 12 --hits 1000 --bm25 --remove-query + datasets: + - dataset: trec-covid + scores: + - nDCG@10: 0.5947 + R@100: 0.1091 + R@1000: 0.3955 + - dataset: bioasq + scores: + - nDCG@10: 0.5225 + R@100: 0.7687 + R@1000: 0.9030 + - dataset: nfcorpus + scores: + - nDCG@10: 0.3218 + R@100: 0.2457 + R@1000: 0.3704 + - dataset: nq + scores: + - nDCG@10: 0.3055 + R@100: 0.7513 + R@1000: 0.8958 + - dataset: hotpotqa + scores: + - nDCG@10: 0.6330 + R@100: 0.7957 + R@1000: 0.8820 + - dataset: fiqa + scores: + - nDCG@10: 0.2361 + R@100: 0.5395 + R@1000: 0.7393 + - dataset: signal1m + scores: + - nDCG@10: 0.3304 + R@100: 0.3703 + R@1000: 0.5642 + - dataset: trec-news + scores: + - nDCG@10: 0.3952 + R@100: 0.4469 + R@1000: 0.7051 + - dataset: robust04 + scores: + - nDCG@10: 0.4070 + R@100: 0.3746 + R@1000: 0.6345 + - dataset: arguana + scores: + - nDCG@10: 0.3970 + R@100: 0.9324 + R@1000: 0.9872 + - dataset: webis-touche2020 + scores: + - nDCG@10: 0.4422 + R@100: 0.5822 + R@1000: 0.8621 + - dataset: cqadupstack-android + scores: + - nDCG@10: 0.3801 + R@100: 0.6829 + R@1000: 0.8632 + - dataset: cqadupstack-english + scores: + - nDCG@10: 0.3453 + R@100: 0.5757 + R@1000: 0.7323 + - dataset: cqadupstack-gaming + scores: + - nDCG@10: 0.4822 + R@100: 0.7651 + R@1000: 0.8945 + - dataset: cqadupstack-gis + scores: + - nDCG@10: 0.2901 + R@100: 0.6119 + R@1000: 0.8174 + - dataset: cqadupstack-mathematica + scores: + - nDCG@10: 0.2015 + R@100: 0.4877 + R@1000: 0.7221 + - dataset: cqadupstack-physics + scores: + - nDCG@10: 0.3214 + R@100: 0.6326 + R@1000: 0.8340 + - dataset: cqadupstack-programmers + scores: + - nDCG@10: 0.2802 + R@100: 0.5588 + R@1000: 0.7734 + - dataset: cqadupstack-stats + scores: + - nDCG@10: 0.2711 + R@100: 0.5338 + R@1000: 0.7310 + - dataset: cqadupstack-tex + scores: + - nDCG@10: 0.2244 + R@100: 0.4686 + R@1000: 0.6907 + - dataset: cqadupstack-unix + scores: + - nDCG@10: 0.2749 + R@100: 0.5417 + R@1000: 0.7616 + - dataset: cqadupstack-webmasters + scores: + - nDCG@10: 0.3059 + R@100: 0.5820 + R@1000: 0.8066 + - dataset: cqadupstack-wordpress + scores: + - nDCG@10: 0.2483 + R@100: 0.5152 + R@1000: 0.7552 + - dataset: quora + scores: + - nDCG@10: 0.7886 + R@100: 0.9733 + R@1000: 0.9950 + - dataset: dbpedia-entity + scores: + - nDCG@10: 0.3180 + R@100: 0.4682 + R@1000: 0.6760 + - dataset: scidocs + scores: + - nDCG@10: 0.1490 + R@100: 0.3477 + R@1000: 0.5638 + - dataset: fever + scores: + - nDCG@10: 0.6513 + R@100: 0.9185 + R@1000: 0.9589 + - dataset: climate-fever + scores: + - nDCG@10: 0.1651 + R@100: 0.4249 + R@1000: 0.6324 + - dataset: scifact + scores: + - nDCG@10: 0.6789 + R@100: 0.9253 + R@1000: 0.9767 + - name: bm25-multifield + command: python -m pyserini.search.lucene --index beir-v1.0.0-${dataset}.multifield --topics beir-v1.0.0-${dataset}-test --output $output --output-format trec --batch 36 --threads 12 --hits 1000 --bm25 --remove-query --fields contents=1.0 title=1.0 + datasets: + - dataset: trec-covid + scores: + - nDCG@10: 0.6559 + R@100: 0.1141 + R@1000: 0.3891 + - dataset: bioasq + scores: + - nDCG@10: 0.4646 + R@100: 0.7145 + R@1000: 0.8428 + - dataset: nfcorpus + scores: + - nDCG@10: 0.3254 + R@100: 0.2500 + R@1000: 0.3718 + - dataset: nq + scores: + - nDCG@10: 0.3285 + R@100: 0.7597 + R@1000: 0.9019 + - dataset: hotpotqa + scores: + - nDCG@10: 0.6027 + R@100: 0.7400 + R@1000: 0.8405 + - dataset: fiqa + scores: + - nDCG@10: 0.2361 + R@100: 0.5395 + R@1000: 0.7393 + - dataset: signal1m + scores: + - nDCG@10: 0.3304 + R@100: 0.3703 + R@1000: 0.5642 + - dataset: trec-news + scores: + - nDCG@10: 0.3977 + R@100: 0.4216 + R@1000: 0.6993 + - dataset: robust04 + scores: + - nDCG@10: 0.4070 + R@100: 0.3746 + R@1000: 0.6345 + - dataset: arguana + scores: + - nDCG@10: 0.4142 + R@100: 0.9431 + R@1000: 0.9893 + - dataset: webis-touche2020 + scores: + - nDCG@10: 0.3673 + R@100: 0.5376 + R@1000: 0.8668 + - dataset: cqadupstack-android + scores: + - nDCG@10: 0.3709 + R@100: 0.6889 + R@1000: 0.8712 + - dataset: cqadupstack-english + scores: + - nDCG@10: 0.3321 + R@100: 0.5842 + R@1000: 0.7574 + - dataset: cqadupstack-gaming + scores: + - nDCG@10: 0.4418 + R@100: 0.7571 + R@1000: 0.8882 + - dataset: cqadupstack-gis + scores: + - nDCG@10: 0.2904 + R@100: 0.6458 + R@1000: 0.8248 + - dataset: cqadupstack-mathematica + scores: + - nDCG@10: 0.2046 + R@100: 0.5215 + R@1000: 0.7559 + - dataset: cqadupstack-physics + scores: + - nDCG@10: 0.3248 + R@100: 0.6486 + R@1000: 0.8506 + - dataset: cqadupstack-programmers + scores: + - nDCG@10: 0.2963 + R@100: 0.6194 + R@1000: 0.8096 + - dataset: cqadupstack-stats + scores: + - nDCG@10: 0.2790 + R@100: 0.5719 + R@1000: 0.7619 + - dataset: cqadupstack-tex + scores: + - nDCG@10: 0.2086 + R@100: 0.4954 + R@1000: 0.7222 + - dataset: cqadupstack-unix + scores: + - nDCG@10: 0.2788 + R@100: 0.5721 + R@1000: 0.7783 + - dataset: cqadupstack-webmasters + scores: + - nDCG@10: 0.3008 + R@100: 0.6100 + R@1000: 0.8226 + - dataset: cqadupstack-wordpress + scores: + - nDCG@10: 0.2562 + R@100: 0.5526 + R@1000: 0.7848 + - dataset: quora + scores: + - nDCG@10: 0.7886 + R@100: 0.9733 + R@1000: 0.9950 + - dataset: dbpedia-entity + scores: + - nDCG@10: 0.3128 + R@100: 0.3981 + R@1000: 0.5848 + - dataset: scidocs + scores: + - nDCG@10: 0.1581 + R@100: 0.3561 + R@1000: 0.5599 + - dataset: fever + scores: + - nDCG@10: 0.7530 + R@100: 0.9309 + R@1000: 0.9599 + - dataset: climate-fever + scores: + - nDCG@10: 0.2129 + R@100: 0.4357 + R@1000: 0.6099 + - dataset: scifact + scores: + - nDCG@10: 0.6647 + R@100: 0.9076 + R@1000: 0.9800 + - name: splade-distil-cocodenser-medium + command: python -m pyserini.search.lucene --index beir-v1.0.0-${dataset}-splade_distil_cocodenser_medium --topics beir-v1.0.0-${dataset}-test-splade_distil_cocodenser_medium --output $output --output-format trec --batch 36 --threads 12 --hits 1000 --impact --remove-query + datasets: + - dataset: trec-covid + scores: + - nDCG@10: 0.7109 + R@100: 0.1308 + R@1000: 0.4433 + - dataset: bioasq + scores: + - nDCG@10: 0.5035 + R@100: 0.7422 + R@1000: 0.8904 + - dataset: nfcorpus + scores: + - nDCG@10: 0.3454 + R@100: 0.2891 + R@1000: 0.5694 + - dataset: nq + scores: + - nDCG@10: 0.5442 + R@100: 0.9285 + R@1000: 0.9812 + - dataset: hotpotqa + scores: + - nDCG@10: 0.6860 + R@100: 0.8144 + R@1000: 0.8945 + - dataset: fiqa + scores: + - nDCG@10: 0.3514 + R@100: 0.6298 + R@1000: 0.8323 + - dataset: signal1m + scores: + - nDCG@10: 0.2957 + R@100: 0.3311 + R@1000: 0.5514 + - dataset: trec-news + scores: + - nDCG@10: 0.3936 + R@100: 0.4323 + R@1000: 0.6977 + - dataset: robust04 + scores: + - nDCG@10: 0.4581 + R@100: 0.3773 + R@1000: 0.6099 + - dataset: arguana + scores: + - nDCG@10: 0.5210 + R@100: 0.9822 + R@1000: 0.9950 + - dataset: webis-touche2020 + scores: + - nDCG@10: 0.2435 + R@100: 0.4723 + R@1000: 0.8116 + - dataset: cqadupstack-android + scores: + - nDCG@10: 0.3954 + R@100: 0.7405 + R@1000: 0.9035 + - dataset: cqadupstack-english + scores: + - nDCG@10: 0.4026 + R@100: 0.6768 + R@1000: 0.8346 + - dataset: cqadupstack-gaming + scores: + - nDCG@10: 0.5061 + R@100: 0.8138 + R@1000: 0.9253 + - dataset: cqadupstack-gis + scores: + - nDCG@10: 0.3223 + R@100: 0.6419 + R@1000: 0.8385 + - dataset: cqadupstack-mathematica + scores: + - nDCG@10: 0.2423 + R@100: 0.5732 + R@1000: 0.7848 + - dataset: cqadupstack-physics + scores: + - nDCG@10: 0.3668 + R@100: 0.7286 + R@1000: 0.8931 + - dataset: cqadupstack-programmers + scores: + - nDCG@10: 0.3412 + R@100: 0.6653 + R@1000: 0.8451 + - dataset: cqadupstack-stats + scores: + - nDCG@10: 0.3142 + R@100: 0.5889 + R@1000: 0.7823 + - dataset: cqadupstack-tex + scores: + - nDCG@10: 0.2575 + R@100: 0.5231 + R@1000: 0.7372 + - dataset: cqadupstack-unix + scores: + - nDCG@10: 0.3292 + R@100: 0.6192 + R@1000: 0.8225 + - dataset: cqadupstack-webmasters + scores: + - nDCG@10: 0.3343 + R@100: 0.6404 + R@1000: 0.8767 + - dataset: cqadupstack-wordpress + scores: + - nDCG@10: 0.2839 + R@100: 0.5974 + R@1000: 0.8036 + - dataset: quora + scores: + - nDCG@10: 0.8136 + R@100: 0.9817 + R@1000: 0.9979 + - dataset: dbpedia-entity + scores: + - nDCG@10: 0.4416 + R@100: 0.5636 + R@1000: 0.7774 + - dataset: scidocs + scores: + - nDCG@10: 0.1590 + R@100: 0.3671 + R@1000: 0.5891 + - dataset: fever + scores: + - nDCG@10: 0.7962 + R@100: 0.9550 + R@1000: 0.9751 + - dataset: climate-fever + scores: + - nDCG@10: 0.2276 + R@100: 0.5140 + R@1000: 0.7084 + - dataset: scifact + scores: + - nDCG@10: 0.6992 + R@100: 0.9270 + R@1000: 0.9767 + - name: contriever + command: python -m pyserini.search.faiss --encoder-class contriever --encoder facebook/contriever --index beir-v1.0.0-${dataset}.contriever --topics beir-v1.0.0-${dataset}-test --output $output --batch 128 --threads 16 --hits 1000 --remove-query + datasets: + - dataset: trec-covid + scores: + - nDCG@10: 0.2732 + R@100: 0.0368 + R@1000: 0.1675 + - dataset: bioasq + scores: + - nDCG@10: 0.3016 + R@100: 0.5412 + R@1000: 0.7396 + - dataset: nfcorpus + scores: + - nDCG@10: 0.3173 + R@100: 0.2943 + R@1000: 0.6232 + - dataset: nq + scores: + - nDCG@10: 0.2536 + R@100: 0.7712 + R@1000: 0.9286 + - dataset: hotpotqa + scores: + - nDCG@10: 0.4807 + R@100: 0.7046 + R@1000: 0.8294 + - dataset: fiqa + scores: + - nDCG@10: 0.2449 + R@100: 0.5619 + R@1000: 0.8215 + - dataset: signal1m + scores: + - nDCG@10: 0.2338 + R@100: 0.2568 + R@1000: 0.4757 + - dataset: trec-news + scores: + - nDCG@10: 0.3484 + R@100: 0.4234 + R@1000: 0.7389 + - dataset: robust04 + scores: + - nDCG@10: 0.3155 + R@100: 0.2757 + R@1000: 0.5097 + - dataset: arguana + scores: + - nDCG@10: 0.3791 + R@100: 0.9011 + R@1000: 0.9851 + - dataset: webis-touche2020 + scores: + - nDCG@10: 0.1668 + R@100: 0.3736 + R@1000: 0.7144 + - dataset: cqadupstack-android + scores: + - nDCG@10: 0.3771 + R@100: 0.7436 + R@1000: 0.9173 + - dataset: cqadupstack-english + scores: + - nDCG@10: 0.3571 + R@100: 0.6442 + R@1000: 0.8042 + - dataset: cqadupstack-gaming + scores: + - nDCG@10: 0.4597 + R@100: 0.8092 + R@1000: 0.9354 + - dataset: cqadupstack-gis + scores: + - nDCG@10: 0.2411 + R@100: 0.5792 + R@1000: 0.8018 + - dataset: cqadupstack-mathematica + scores: + - nDCG@10: 0.1841 + R@100: 0.5127 + R@1000: 0.7757 + - dataset: cqadupstack-physics + scores: + - nDCG@10: 0.3430 + R@100: 0.7013 + R@1000: 0.8980 + - dataset: cqadupstack-programmers + scores: + - nDCG@10: 0.3029 + R@100: 0.6402 + R@1000: 0.8434 + - dataset: cqadupstack-stats + scores: + - nDCG@10: 0.2483 + R@100: 0.5269 + R@1000: 0.7417 + - dataset: cqadupstack-tex + scores: + - nDCG@10: 0.1540 + R@100: 0.4333 + R@1000: 0.6870 + - dataset: cqadupstack-unix + scores: + - nDCG@10: 0.2636 + R@100: 0.5879 + R@1000: 0.8212 + - dataset: cqadupstack-webmasters + scores: + - nDCG@10: 0.2878 + R@100: 0.6485 + R@1000: 0.8800 + - dataset: cqadupstack-wordpress + scores: + - nDCG@10: 0.1914 + R@100: 0.5364 + R@1000: 0.7551 + - dataset: quora + scores: + - nDCG@10: 0.8349 + R@100: 0.9871 + R@1000: 0.9981 + - dataset: dbpedia-entity + scores: + - nDCG@10: 0.2916 + R@100: 0.4529 + R@1000: 0.7142 + - dataset: scidocs + scores: + - nDCG@10: 0.1491 + R@100: 0.3601 + R@1000: 0.6105 + - dataset: fever + scores: + - nDCG@10: 0.6821 + R@100: 0.9356 + R@1000: 0.9655 + - dataset: climate-fever + scores: + - nDCG@10: 0.1550 + R@100: 0.4422 + R@1000: 0.7232 + - dataset: scifact + scores: + - nDCG@10: 0.6493 + R@100: 0.9260 + R@1000: 0.9967 + - name: contriever-msmarco + command: python -m pyserini.search.faiss --encoder-class contriever --encoder facebook/contriever-msmarco --index beir-v1.0.0-${dataset}.contriever-msmarco --topics beir-v1.0.0-${dataset}-test --output $output --batch 128 --threads 16 --hits 1000 --remove-query + datasets: + - dataset: trec-covid + scores: + - nDCG@10: 0.5964 + R@100: 0.0907 + R@1000: 0.3351 + - dataset: bioasq + scores: + - nDCG@10: 0.3829 + R@100: 0.6072 + R@1000: 0.7666 + - dataset: nfcorpus + scores: + - nDCG@10: 0.3281 + R@100: 0.3008 + R@1000: 0.6305 + - dataset: nq + scores: + - nDCG@10: 0.4977 + R@100: 0.9252 + R@1000: 0.986 + - dataset: hotpotqa + scores: + - nDCG@10: 0.6376 + R@100: 0.7772 + R@1000: 0.8718 + - dataset: fiqa + scores: + - nDCG@10: 0.3293 + R@100: 0.6558 + R@1000: 0.8695 + - dataset: signal1m + scores: + - nDCG@10: 0.2783 + R@100: 0.322 + R@1000: 0.5419 + - dataset: trec-news + scores: + - nDCG@10: 0.4283 + R@100: 0.4924 + R@1000: 0.7752 + - dataset: robust04 + scores: + - nDCG@10: 0.4729 + R@100: 0.3917 + R@1000: 0.6552 + - dataset: arguana + scores: + - nDCG@10: 0.4461 + R@100: 0.9765 + R@1000: 0.9964 + - dataset: webis-touche2020 + scores: + - nDCG@10: 0.204 + R@100: 0.442 + R@1000: 0.829 + - dataset: cqadupstack-android + scores: + - nDCG@10: 0.4255 + R@100: 0.7503 + R@1000: 0.9304 + - dataset: cqadupstack-english + scores: + - nDCG@10: 0.4326 + R@100: 0.6935 + R@1000: 0.8435 + - dataset: cqadupstack-gaming + scores: + - nDCG@10: 0.5276 + R@100: 0.8481 + R@1000: 0.9427 + - dataset: cqadupstack-gis + scores: + - nDCG@10: 0.3022 + R@100: 0.6272 + R@1000: 0.8417 + - dataset: cqadupstack-mathematica + scores: + - nDCG@10: 0.2355 + R@100: 0.5726 + R@1000: 0.7995 + - dataset: cqadupstack-physics + scores: + - nDCG@10: 0.4159 + R@100: 0.7619 + R@1000: 0.9162 + - dataset: cqadupstack-programmers + scores: + - nDCG@10: 0.3574 + R@100: 0.7191 + R@1000: 0.8878 + - dataset: cqadupstack-stats + scores: + - nDCG@10: 0.3095 + R@100: 0.586 + R@1000: 0.7805 + - dataset: cqadupstack-tex + scores: + - nDCG@10: 0.2209 + R@100: 0.4985 + R@1000: 0.7348 + - dataset: cqadupstack-unix + scores: + - nDCG@10: 0.3257 + R@100: 0.6161 + R@1000: 0.8373 + - dataset: cqadupstack-webmasters + scores: + - nDCG@10: 0.3392 + R@100: 0.7032 + R@1000: 0.8956 + - dataset: cqadupstack-wordpress + scores: + - nDCG@10: 0.2532 + R@100: 0.5769 + R@1000: 0.7929 + - dataset: quora + scores: + - nDCG@10: 0.8648 + R@100: 0.9935 + R@1000: 0.9994 + - dataset: dbpedia-entity + scores: + - nDCG@10: 0.4128 + R@100: 0.5414 + R@1000: 0.7751 + - dataset: scidocs + scores: + - nDCG@10: 0.1652 + R@100: 0.3783 + R@1000: 0.6216 + - dataset: fever + scores: + - nDCG@10: 0.7583 + R@100: 0.9494 + R@1000: 0.9705 + - dataset: climate-fever + scores: + - nDCG@10: 0.2371 + R@100: 0.5746 + R@1000: 0.8019 + - dataset: scifact + scores: + - nDCG@10: 0.6768 + R@100: 0.947 + R@1000: 0.9833 diff --git a/pyserini/resources/index-metadata/faiss-flat.wiki-all-6-3.dpr2-multi-retriever.20230103.186fa7.README.md b/pyserini/resources/index-metadata/faiss-flat.wiki-all-6-3.dpr2-multi-retriever.20230103.186fa7.README.md new file mode 100644 index 0000000000000000000000000000000000000000..549d7c4e804f57ed27cc6eb795040ba57940bf7b --- /dev/null +++ b/pyserini/resources/index-metadata/faiss-flat.wiki-all-6-3.dpr2-multi-retriever.20230103.186fa7.README.md @@ -0,0 +1,19 @@ +# wiki-all-6-3-dpr2-multi + +Faiss FlatIP index of wiki-all-6-3 (https://huggingface.co/datasets/castorini/odqa-wiki-corpora) encoded by a 2nd iteration DPR model trained on multiple QA datasets (castorini/wiki-all-6-3-multi-dpr2-passage-encoder). +This index was generated on 2023/01/03 on `narval` at commits: + ++ Pyserini commit ['186fa7'](https://github.com/castorini/pyserini/commit/186fa793867f7572d62dc323322ba92926f12ce4) (2023/01/03) ++ [Tevatron](https://github.com/texttron/tevatron) commit [`7a5afe`](https://github.com/texttron/tevatron/commit/7a5afedb5893009154a0e915a2597e1a95e9d2a8) (2023/01/03) + +with the following command to generate the embeddings (from Tevatron repo): + +```bash +python -m tevatron.driver.jax_encode \ + --output_dir=temp \ + --model_name_or_path wiki-all-6-3-multi-dpr2-passage-encoder \ + --per_device_eval_batch_size 1248 \ + --dataset_name wiki_all_6_3.jsonl \ + --encoded_save_path corpus_emb.pkl \ + --p_max_len 256 +``` diff --git a/pyserini/resources/index-metadata/faiss-flat.wikipedia.dkrr-dpr-nq-retriever.20220217.25ed1f.cc91b2.README.md b/pyserini/resources/index-metadata/faiss-flat.wikipedia.dkrr-dpr-nq-retriever.20220217.25ed1f.cc91b2.README.md new file mode 100644 index 0000000000000000000000000000000000000000..faa97b4a33f5dd414332071bd635e9885f3a6cd6 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss-flat.wikipedia.dkrr-dpr-nq-retriever.20220217.25ed1f.cc91b2.README.md @@ -0,0 +1,27 @@ +# wikipedia-dpr-dkrr-nq + +Faiss FlatIP index of Wikipedia DPR encoded by the retriever model from [Distilling Knowledge from Reader to Retriever for Question Answering](https://arxiv.org/abs/2012.04584) trained on NQ. +This index was generated on 2022/02/17 on `orca` at commits: + ++ Pyserini commit [`cc91b2`](https://github.com/castorini/pyserini/commit/cc91b22f549702068cea1283f91b31d28d127b2f) (2022/02/17) ++ [FiD](https://github.com/facebookresearch/FiD) commit [`25ed1f`](https://github.com/facebookresearch/FiD/commit/25ed1ff0fe0288b80fb5e9e5de8d6346b94b8d48) (2022/02/17) + +with the following command to generate the embeddings (from FiD repo): + +```bash +python generate_passage_embeddings.py \ + --model_path nq_retriever \ + --passages passages.tsv \ + --output_path wikipedia_embeddings_nq \ + --shard_id 0 \ + --num_shards 1 \ + --per_gpu_batch_size 500 +``` + +and the following command to convert the embeddings to faiss IndexFlatIP form: + +```bash +python convert_dkrr_embeddings_to_faiss.py \ + --embeddings wikipedia_embeddings_nq \ + --output faiss-flat.wikipedia.dkrr-dpr-nq-retriever +``` diff --git a/pyserini/resources/index-metadata/faiss-flat.wikipedia.dkrr-dpr-tqa-retriever.20220217.25ed1f.cc91b2.README.md b/pyserini/resources/index-metadata/faiss-flat.wikipedia.dkrr-dpr-tqa-retriever.20220217.25ed1f.cc91b2.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2c1cc89fab10436c8e8266dffb1f1dc3a0d2e305 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss-flat.wikipedia.dkrr-dpr-tqa-retriever.20220217.25ed1f.cc91b2.README.md @@ -0,0 +1,27 @@ +# wikipedia-dpr-dkrr-tqa + +Faiss FlatIP index of Wikipedia DPR encoded by the retriever model from [Distilling Knowledge from Reader to Retriever for Question Answering](https://arxiv.org/abs/2012.04584) trained on TriviaQA. +This index was generated on 2022/02/17 on `orca` at commits: + ++ Pyserini commit [`cc91b2`](https://github.com/castorini/pyserini/commit/cc91b22f549702068cea1283f91b31d28d127b2f) (2022/02/17) ++ [FiD](https://github.com/facebookresearch/FiD) commit [`25ed1f`](https://github.com/facebookresearch/FiD/commit/25ed1ff0fe0288b80fb5e9e5de8d6346b94b8d48) (2022/02/17) + +with the following command to generate the embeddings (from FiD repo): + +```bash +python generate_passage_embeddings.py \ + --model_path tqa_retriever \ + --passages passages.tsv \ + --output_path wikipedia_embeddings_tqa \ + --shard_id 0 \ + --num_shards 1 \ + --per_gpu_batch_size 500 +``` + +and the following command to convert the embeddings to faiss IndexFlatIP form: + +```bash +python convert_dkrr_embeddings_to_faiss.py \ + --embeddings wikipedia_embeddings_tqa \ + --output faiss-flat.wikipedia.dkrr-dpr-tqa-retriever +``` diff --git a/pyserini/resources/index-metadata/faiss-hnsw.cast2019.tct_colbert-v2-readme.txt b/pyserini/resources/index-metadata/faiss-hnsw.cast2019.tct_colbert-v2-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..1fb3cd09f7c5b26b29a839d3f3c4bf5fdbe2cfdc --- /dev/null +++ b/pyserini/resources/index-metadata/faiss-hnsw.cast2019.tct_colbert-v2-readme.txt @@ -0,0 +1,5 @@ +This faiss hnsw index was generated on 2021/10/23 using the repo https://github.com/castorini/CQE (see command Inference section) on Orca (Passage encoding on graham). + +Both the hyperparameter M and efConstruction are set to 256. +Note that in the future the index name should be renamed as faiss-hnsw.cast2019.tct_colbert-v2 + diff --git a/pyserini/resources/index-metadata/faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md b/pyserini/resources/index-metadata/faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md new file mode 100644 index 0000000000000000000000000000000000000000..31b70df5f4ee3a9dc5353a096b50b0be142e9a25 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco-ft-all.README.md @@ -0,0 +1,24 @@ +# miracl-v1.0-mdpr-tied-pft-msmarco-ft-all + +This index was generated on 2022/10/04 at Pyserini commit [`2b2856`](https://github.com/castorini/pyserini/commit/2b2856a9037c11061470cbf3d0961c7d041f1342) on `basilisk` with the following command: + +``` +corpus=./corpus/miracl-corpus-v1.0-${lang} + +encoder=castorini/mdpr-tied-pft-msmarco-ft-all +shard_id=0 +shard_num=1 + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + --shard-id $shard_id \ + --shard-num $shard_num \ + output --embeddings $index_dir-$shard_id \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --encoder-class 'auto' \ + --fp16 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md b/pyserini/resources/index-metadata/faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md new file mode 100644 index 0000000000000000000000000000000000000000..90686de22d6609ea339163a2020cef3956249e13 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.miracl-v1.0.20221004.2b2856.mdpr-tied-pft-msmarco.README.md @@ -0,0 +1,24 @@ +# miracl-v1.0-mdpr-tied-pft-msmarco + +This index was generated on 2022/10/04 at Pyserini commit [`2b2856`](https://github.com/castorini/pyserini/commit/2b2856a9037c11061470cbf3d0961c7d041f1342) on `basilisk` with the following command: + +``` +corpus=./corpus/miracl-corpus-v1.0-${lang} + +encoder=castorini/mdpr-tied-pft-msmarco +shard_id=0 +shard_num=1 + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + --shard-id $shard_id \ + --shard-num $shard_num \ + output --embeddings $index_dir-$shard_id \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --encoder-class 'auto' \ + --fp16 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-arabic.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-arabic.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9d9fecd2e88ac3edbeb8c25b9c7383e0433075ff --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-arabic.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-arabic + +Faiss flat index for Mr.TyDi v1.1 (Arabic), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=arabic + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-bengali.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-bengali.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f585aa07dcf732f7404565caa611e14fd58b724f --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-bengali.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-bengali + +Faiss flat index for Mr.TyDi v1.1 (Bengali), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=bengali + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-english.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-english.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6190b570e61dc90e76d9209c8ac9fb0004972fc1 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-english.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-english + +Faiss flat index for Mr.TyDi v1.1 (English), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=english + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-finnish.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-finnish.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f04b2d99985cd6583c0b17ece6185a9500b6f541 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-finnish.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-finnish + +Faiss flat index for Mr.TyDi v1.1 (Finnish), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=finnish + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-indonesian.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-indonesian.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6745b03862b707ce500493da118fade400fed8f0 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-indonesian.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-indonesian + +Faiss flat index for Mr.TyDi v1.1 (Indonesian), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=indonesian + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-japanese.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-japanese.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..c7b0e58a79e5909dbf09a77f7936a339de58df78 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-japanese.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-japanese + +Faiss flat index for Mr.TyDi v1.1 (Japanese), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=japanese + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-korean.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-korean.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..87451ed03cd7fc1bd7591f36718b87c4a44991d1 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-korean.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-korean + +Faiss flat index for Mr.TyDi v1.1 (Korean), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=korean + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-russian.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-russian.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..d804cba8f71bece12840497fdb5a8a3eb0e6609e --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-russian.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-russian + +Faiss flat index for Mr.TyDi v1.1 (Russian), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=russian + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-swahili.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-swahili.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3324357be037f2ffaf70852c44abe1aa9cbbbc63 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-swahili.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-swahili + +Faiss flat index for Mr.TyDi v1.1 (Swahili), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=swahili + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-telugu.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-telugu.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3607478d0b00d2bd6fe6926f5ecd45e00d4a67a2 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-telugu.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-telugu + +Faiss flat index for Mr.TyDi v1.1 (Telugu), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=telugu + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-thai.20220207.5df364.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-thai.20220207.5df364.README.md new file mode 100644 index 0000000000000000000000000000000000000000..233d6f7e2ae2e0a98121289f2d5f84265b855951 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1-thai.20220207.5df364.README.md @@ -0,0 +1,46 @@ +# mrtydi-v1.1-thai + +Faiss flat index for Mr.TyDi v1.1 (Thai), using mDPR fine-tuned on NQ. + +This index was generated on 2022/02/07 at commit [5df364](https://github.com/castorini/pyserini/commit/5df3649b128ece125ce8a9171ed4001ce3a6ef23) on `narval` with the following command: + +```bash +lang=thai + +tarfn=mrtydi-v1.1-$lang.tar.gz +encoder=models/mdpr-context-encoder +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +mkdir -p $index_dir + +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +``` + +Note that the delimiter was manually changed from "`\n`" into "`\n\n`" in `pyserini.encode`. +This was later generalized into a command-line option in [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-question-nq \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt + --batch-size 36 \ + --threads 12 +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md new file mode 100644 index 0000000000000000000000000000000000000000..bd327099d367d59521e436ff833b27396f2f5710 --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220413.aa1c0e9.mdpr-tied-pft-msmarco.README.md @@ -0,0 +1,71 @@ +# mrtydi-v1.1-arabic (trained on MS MARCO) + +Faiss flat index for Mr.TyDi v1.1 (Arabic), using mDPR fine-tuned on MS MARCO. + +This index was generated on 2022/03/27 at commit [aa1c0e9](https://github.com/castorini/pyserini/commit/aa1c0e9a5bbfab406f8c73d23c91a009307096c6) on `cedar` with the following command: + +```bash +lang=arabic + +tarfn=mrtydi-v1.1-$lang.tar.gz +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex-msmarco/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +shard_num=1 +encoder=mdpr-mrtydi-0shot-msmarco-tied-encoder-converted + +for shard_id in $(seq 0 `$shard_num - 1`) ; do + index_dir=mdpr-dindex/$lang-$shard_id + mkdir -p $index_dir + python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + --shard-id $shard_id \ + --shard-num $shard_num \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --fp16 +done +``` + +Note that the delimiter are only supported after [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + +The index can be later reproduced on commit [7b099d5](https://github.com/crystina-z/pyserini/commit/7b099d534901d1f0161982605cd40d039ddb701d) using +``` +encoder=castorini/mdpr-tied-pft-msmarco +index_dir=mdpr-dindex/$lang-$shard_id +mkdir -p $index_dir +python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + --shard-id $shard_id \ + --shard-num $shard_num \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --encoder-class 'auto' \ + --fp16 +``` + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.dsearch \ + --encoder castorini/mdpr-tied-pft-msmarco \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt \ + --batch-size 36 \ + --threads 12 \ + --encoder-class 'auto' +``` diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3fc67edad6ee47b0d468b0b6337f36c9c5560ceb --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220523.7b099d5.mdpr-tied-pft-nq.README.md @@ -0,0 +1,54 @@ +# mrtydi-v1.1-arabic (trained on NQ) + +Faiss flat index for Mr.TyDi v1.1 (Arabic), using mDPR fine-tuned on NQ. + +This index was generated on 2022/05/23 at commit [7b099d5](https://github.com/crystina-z/pyserini/commit/7b099d534901d1f0161982605cd40d039ddb701d) on `basilisk` with the following command: + +```bash +lang=arabic # any language in Mr. TyDi + +tarfn=mrtydi-v1.1-$lang.tar.gz +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex-msmarco/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +shard_num=1 +encoder=castorini/mdpr-tied-pft-nq + +for shard_id in $(seq 0 `$shard_num - 1`) ; do + index_dir=mdpr-dindex/$lang-$shard_id + mkdir -p $index_dir + python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + --shard-id $shard_id \ + --shard-num $shard_num \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --encoder-class 'auto' \ + --fp16 +done +``` + +Note that the delimiter are only supported after [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.search.faiss \ + --encoder castorini/mdpr-tied-pft-msmarco \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt \ + --batch-size 36 \ + --threads 12 \ + --encoder-class 'auto' +``` diff --git a/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3ae5b26c5aa9df37841358aab566e38b55f98eca --- /dev/null +++ b/pyserini/resources/index-metadata/faiss.mrtydi-v1.1.20220524.7b099d5.mdpr-tied-pft-msmarco-ft-all.README.md @@ -0,0 +1,54 @@ +# mrtydi-v1.1-arabic (pre--fine-tuned on MS MARCO then fine-tuned on all Mr. TyDi languages) + +Faiss flat index for Mr.TyDi v1.1 (Arabic), using mDPR fine-tuned on NQ. + +This index was generated on 2022/05/24 at commit [7b099d5](https://github.com/crystina-z/pyserini/commit/7b099d534901d1f0161982605cd40d039ddb701d) on `basilisk` with the following command: + +```bash +lang=arabic # any language in Mr. TyDi + +tarfn=mrtydi-v1.1-$lang.tar.gz +corpus=mrtydi-v1.1-$lang/collection/docs.jsonl +index_dir=mrtydi-mdpr-dindex-msmarco/$lang + +wget https://git.uwaterloo.ca/jimmylin/mr.tydi/-/raw/master/data/$tarfn +tar –xvf $tarfn +gzip -cvf $corpus.gz > $corpus + +shard_num=1 +encoder=castorini/mdpr-tied-pft-msmarco-ft-all + +for shard_id in $(seq 0 `$shard_num - 1`) ; do + index_dir=mdpr-dindex/$lang-$shard_id + mkdir -p $index_dir + python -m pyserini.encode input --corpus $corpus \ + --fields title text \ + --delimiter "\n\n" \ + --shard-id $shard_id \ + --shard-num $shard_num \ + output --embeddings $index_dir \ + --to-faiss \ + encoder --encoder $encoder \ + --fields title text \ + --batch 128 \ + --encoder-class 'auto' \ + --fp16 +done +``` + +Note that the delimiter are only supported after [Pyserini #1000](https://github.com/castorini/pyserini/pull/1000/commits/5021e12d1d2e1bc3d4015955bcf77076c5798ce6#diff-45356c3f5e9cd223bb23d7efea3f7ed834abbcd32f604eb7fdd138e364273241L104). + + +Here's a sample retrieval command (on the test set): + +```bash +set_name=test +python -m pyserini.search.faiss \ + --encoder castorini/mdpr-tied-pft-msmarco \ + --topics mrtydi-v1.1-${lang}-${set_name} \ + --index ${index_dir} \ + --output runs/run.mrtydi-v1.1-$lang.${set_name}.txt \ + --batch-size 36 \ + --threads 12 \ + --encoder-class 'auto' +``` diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-20201117-f87c94-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-20201117-f87c94-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd7fe0374595aaced509bb1fcaf66c6602910c0d --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-20201117-f87c94-readme.txt @@ -0,0 +1,15 @@ +This index was generated on 2020/11/17 at commit f87c945fd1c1e4174468194c72e3c05688dc45dd Mon Nov 16 16:17:20 2020 -0500 +with the following command: + +sh target/appassembler/bin/IndexCollection -collection CleanTrecCollection \ + -generator DefaultLuceneDocumentGenerator -input collections/msmarco-doc \ + -index index-msmarco-doc-20201117-f87c94 -threads 1 -storeRaw -optimize + +Note that to reduce index size: + ++ positions are not indexed (so no phrase queries) ++ document vectors are not stored (so no query expansion) + +However, the raw documents are stored, so they can be fetched and fed to further downstream reranking components. + +index-msmarco-doc-20201117-f87c94.tar.gz MD5 checksum = ac747860e7a37aed37cc30ed3990f273 diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-expanded-per-doc-20201126-1b4d0a-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-expanded-per-doc-20201126-1b4d0a-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..db57732f8afbf3f3e88b5b1d33eec15bb8c406ad --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-expanded-per-doc-20201126-1b4d0a-readme.txt @@ -0,0 +1,14 @@ +This index was generated on 2020/11/26 at + ++ docTTTTTquery commit d2704c025c2bf6db652b4b27f49c4e59714ba898 (2020/11/24). ++ anserini commit 1b4d0a29879a867ca5d1f003f924acc3279455ba (2020/11/25). + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input msmarco-doc-expanded -index index-msmarco-doc-expanded-per-doc-20201126-1b4d0a -optimize + +Note that this index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-msmarco-doc-expanded-per-doc-20201126-1b4d0a.tar.gz MD5 checksum = f7056191842ab77a01829cff68004782 diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-expanded-per-passage-20201126-1b4d0a-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-expanded-per-passage-20201126-1b4d0a-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..29362ba57057b07c9facdece128d8b1ab8540cb1 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-expanded-per-passage-20201126-1b4d0a-readme.txt @@ -0,0 +1,14 @@ +This index was generated on 2020/11/26 at + ++ docTTTTTquery commit d2704c025c2bf6db652b4b27f49c4e59714ba898 (2020/11/24). ++ anserini commit 1b4d0a29879a867ca5d1f003f924acc3279455ba (2020/11/25). + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input msmarco-doc-expanded-passage -index index-msmarco-doc-expanded-per-passage-20201126-1b4d0a -optimize + +Note that this index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-msmarco-doc-expanded-per-passage-20201126-1b4d0a.tar.gz MD5 checksum = 54ea30c64515edf3c3741291b785be53 diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-20201204-f50dcc-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-20201204-f50dcc-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..6f250a5de3139b1ead215a7dee37c80dc94aee43 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-20201204-f50dcc-readme.txt @@ -0,0 +1,19 @@ +This index was generated on 2020/12/04 at + ++ docTTTTTquery commit 5be1af130b4657ea117781f761c4e5d15c77cb42 (2020/12/01). ++ anserini commit f50dcceb6cd0ec3403c1e77066aa51bb3275d24e (2020/12/04). + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input msmarco-doc-passage -index index-msmarco-doc-per-passage-20201204-f50dcc -storeRaw -optimize + +Note that to reduce index size: + ++ positions are not indexed (so no phrase queries) ++ document vectors are not stored (so no query expansion) + +However, the raw documents are stored, so they can be fetched and fed to further downstream reranking components. + +index-msmarco-doc-per-passage-20201204-f50dcc.tar.gz MD5 checksum = 797367406a7542b649cefa6b41cf4c33 diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-ltr-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-ltr-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..65aec72512cdb11473d59a693a10cef00486145d --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-ltr-readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/31 at commit 33e4151e6d58f5b8ea0ef0768dc5308ec48b1aae 2021-10-31 16:53:36 +0800 +with the following command: + +sh target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -input collections/msmarco-ltr-document/ltr_msmarco_pass_doc_jsonl \ + -index index-msmarco-doc-per-passage-ltr-20211031-33e4151 -threads 21 -storeRaw -optimize -storePositions -storeDocvectors -pretokenizdd + +Note, pretokenized option is used to keep preprocessed tokenization. +This is built with spacy 3.0.6. +The max length is 3 and stride is 1. + +index-msmarco-passage-ltr-20210519-e25e33f MD5 checksum = bd60e89041b4ebbabc4bf0cfac608a87 diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-slim-20201204-f50dcc-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-slim-20201204-f50dcc-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..565915c8b7b71a5484a920e1fd7d61fa6ed86b60 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-per-passage-slim-20201204-f50dcc-readme.txt @@ -0,0 +1,14 @@ +This index was generated on 2020/12/04 at + ++ docTTTTTquery commit 5be1af130b4657ea117781f761c4e5d15c77cb42 (2020/12/01). ++ anserini commit f50dcceb6cd0ec3403c1e77066aa51bb3275d24e (2020/12/04). + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input msmarco-doc-passage -index index-msmarco-doc-per-passage-slim-20201204-f50dcc -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-msmarco-doc-per-passage-slim-20201204-f50dcc.tar.gz MD5 checksum = 77c2409943a8c9faffabf57cb6adca69 diff --git a/pyserini/resources/index-metadata/index-msmarco-doc-slim-20201202-ab6e28-readme.txt b/pyserini/resources/index-metadata/index-msmarco-doc-slim-20201202-ab6e28-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e79f60ca78240b3cc07d0e0fe0cfcfab76fb1db --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-doc-slim-20201202-ab6e28-readme.txt @@ -0,0 +1,10 @@ +This index was generated on 2020/12/02 at commit ab6e280b06a7a6476d001a5eb2319c191010c0e1 (2020/12/01) +with the following command: + +sh target/appassembler/bin/IndexCollection -collection CleanTrecCollection \ + -generator DefaultLuceneDocumentGenerator -input collections/msmarco-doc \ + -index index-msmarco-doc-slim-20201202-ab6e28 -threads 1 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-msmarco-doc-slim-20201202-ab6e28.tar.gz MD5 checksum = c56e752f7992bf6149761097641d515a diff --git a/pyserini/resources/index-metadata/index-msmarco-passage-20201117-f87c94-readme.txt b/pyserini/resources/index-metadata/index-msmarco-passage-20201117-f87c94-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3a08f586af6a12e26bf35ca643b8df471402313 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-passage-20201117-f87c94-readme.txt @@ -0,0 +1,15 @@ +This index was generated on 2020/11/17 at commit f87c945fd1c1e4174468194c72e3c05688dc45dd Mon Nov 16 16:17:20 2020 -0500 +with the following command: + +sh target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -input collections/msmarco-passage/collection_jsonl \ + -index index-msmarco-passage-20201117-f87c94 -threads 9 -storeRaw -optimize + +Note that to reduce index size: + ++ positions are not indexed (so no phrase queries) ++ document vectors are not stored (so no query expansion) + +However, the raw passages are stored, so they can be fetched and fed to further downstream reranking components. + +index-msmarco-passage-20201117-f87c94.tar.gz MD5 checksum = 1efad4f1ae6a77e235042eff4be1612d diff --git a/pyserini/resources/index-metadata/index-msmarco-passage-expanded-20201121-e127fb-readme.txt b/pyserini/resources/index-metadata/index-msmarco-passage-expanded-20201121-e127fb-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..23fa65442855f366c02dd94532e38cba6d0ea215 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-passage-expanded-20201121-e127fb-readme.txt @@ -0,0 +1,14 @@ +This index was generated on 2020/11/21 at + ++ docTTTTTquery commit 701ea0a72beeb8db46aa409352a72ba52cd2c36b Tue Nov 17 07:13:27 2020 -0500 ++ anserini commit e127fbea6f5515d60eb7c325cd866657dbf13cc6 Sat Nov 21 07:58:03 2020 -0500 + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection \ + -collection JsonCollection -generator DefaultLuceneDocumentGenerator \ + -input msmarco-passage-expanded -index index-msmarco-passage-expanded-20201121-e127fb -threads 9 -optimize + +Note that this index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-msmarco-passage-expanded-20201121-e127fb.tar.gz MD5 checksum = e5762e9e065b6fe5000f9c18da778565 diff --git a/pyserini/resources/index-metadata/index-msmarco-passage-ltr-20210519-e25e33f-readme.txt b/pyserini/resources/index-metadata/index-msmarco-passage-ltr-20210519-e25e33f-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a5e758a89f7c02bce46111805426255c1da8a88 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-passage-ltr-20210519-e25e33f-readme.txt @@ -0,0 +1,11 @@ +This index was generated on 2021/05/19 at commit e25e33f4a06e9c1ab4d795908cae4474fa019643 2021-05-17 21:48:48 -0400 +with the following command: + +sh target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -input collections/msmarco-ltr-passage/ltr_collection_jsonl \ + -index index-msmarco-passage-ltr-20210519-e25e33f -threads 9 -storeRaw -optimize -storePositions -storeDocvectors -pretokenizdd + +Note, pretokenized option is used to keep preprocessed tokenization. +This is built with spacy 3.0.6. + +index-msmarco-passage-ltr-20210519-e25e33f MD5 checksum = a5de642c268ac1ed5892c069bdc29ae3 diff --git a/pyserini/resources/index-metadata/index-msmarco-passage-slim-20201202-ab6e28-readme.txt b/pyserini/resources/index-metadata/index-msmarco-passage-slim-20201202-ab6e28-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..010eaab227bbd2a50082bd31623658015fad7a93 --- /dev/null +++ b/pyserini/resources/index-metadata/index-msmarco-passage-slim-20201202-ab6e28-readme.txt @@ -0,0 +1,10 @@ +This index was generated on 2020/12/02 at commit ab6e280b06a7a6476d001a5eb2319c191010c0e1 (2020/12/01) +with the following command: + +sh target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -input collections/msmarco-passage/collection_jsonl \ + -index index-msmarco-passage-slim-20201202-ab6e28 -threads 9 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-msmarco-passage-slim-20201202-ab6e28.tar.gz MD5 checksum = 5e11da4cebd2e8dda2e73c589ffb0b4c diff --git a/pyserini/resources/index-metadata/index-robust04-20191213-readme.txt b/pyserini/resources/index-metadata/index-robust04-20191213-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc45b21c72c06257c3556cb88f87ae4a2ceb5350 --- /dev/null +++ b/pyserini/resources/index-metadata/index-robust04-20191213-readme.txt @@ -0,0 +1,7 @@ +This index was generated on 12/13/2019 with Anserini v0.7.0, with the following command: + +sh target/appassembler/bin/IndexCollection -collection TrecCollection \ + -input /tuna1/collections/newswire/disk45/ -index index-robust04-20191213 \ + -generator JsoupGenerator -threads 16 -storePositions -storeDocvectors -storeRawDocs -optimize + +index-robust04-20191213.tar.gz MD5 checksum = 15f3d001489c97849a010b0a4734d018 diff --git a/pyserini/resources/index-metadata/index-wikipedia-dpr-20210120-d1b9e6-readme.txt b/pyserini/resources/index-metadata/index-wikipedia-dpr-20210120-d1b9e6-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..e449ad1048c18696b1638916a1011f0f7da255f7 --- /dev/null +++ b/pyserini/resources/index-metadata/index-wikipedia-dpr-20210120-d1b9e6-readme.txt @@ -0,0 +1,18 @@ +This index was generated on 2021/01/20 at + ++ anserini commit d1b9e67928aa60fa557113ace5d209b0c58e994c (2021/01/19). + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 22 \ + -input wikipedia-dpr-jsonl -index index-wikipedia-dpr-20210120-d1b9e6 -storeRaw -optimize + +Note that to reduce index size: + ++ positions are not indexed (so no phrase queries) ++ document vectors are not stored (so no query expansion) + +However, the raw documents are stored, so they can be fetched and fed to further downstream reranking components. + +index-wikipedia-dpr-20210120-d1b9e6.tar.gz MD5 checksum = c28f3a56b2dfcef25bf3bf755c264d04 diff --git a/pyserini/resources/index-metadata/index-wikipedia-dpr-slim-20210120-d1b9e6-readme.txt b/pyserini/resources/index-metadata/index-wikipedia-dpr-slim-20210120-d1b9e6-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff6af6e28a5b08851f3b1e747a8d0024102c3a4 --- /dev/null +++ b/pyserini/resources/index-metadata/index-wikipedia-dpr-slim-20210120-d1b9e6-readme.txt @@ -0,0 +1,13 @@ +This index was generated on 2021/01/20 at + ++ anserini commit d1b9e67928aa60fa557113ace5d209b0c58e994c (2021/01/19). + +with the following command: + +sh anserini/target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 22 \ + -input wikipedia-dpr-jsonl -index index-wikipedia-dpr-slim-20210120-d1b9e6 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +index-wikipedia-dpr-slim-20210120-d1b9e6.tar.gz MD5 checksum = 7d40604a824b5df37a1ae9d25ea38071 diff --git a/pyserini/resources/index-metadata/index-wikipedia-kilt-doc-20210421-f29307-readme.txt b/pyserini/resources/index-metadata/index-wikipedia-kilt-doc-20210421-f29307-readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..8449100a55f1206cedcc1ba0ba32d44b070cef9d --- /dev/null +++ b/pyserini/resources/index-metadata/index-wikipedia-kilt-doc-20210421-f29307-readme.txt @@ -0,0 +1,18 @@ +This index was generated on 2021/04/22 at + ++ anserini commit f29307a9fb162ec7bef4919a164929a673d2304e (2021/04/21). + +with the following command: + +python -m pyserini.index -collection JsonCollection -generator DefaultLuceneDocumentGenerator \ + -threads 40 -input collections/wikipedia-kilt-doc \ + -index indexes/index-wikipedia-kilt-doc-20210421-f29307 -storeRaw -optimize + +Note that to reduce index size: + ++ positions are not indexed (so no phrase queries) ++ document vectors are not stored (so no query expansion) + +However, the raw documents are stored, so they can be fetched and fed to further downstream reranking components. + +index-wikipedia-kilt-doc-20210421-f29307.tar.gz MD5 checksum = b8ec8feb654f7aaa86f9901dc6c804a8 diff --git a/pyserini/resources/index-metadata/lucene-index-wiki-all-6-3-tamber-20230111-40277a.README.md b/pyserini/resources/index-metadata/lucene-index-wiki-all-6-3-tamber-20230111-40277a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6e04c56f067c243bce43282d67b6734cde21adb7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index-wiki-all-6-3-tamber-20230111-40277a.README.md @@ -0,0 +1,24 @@ +# wiki-all-6-3-tamber lucene index + +This Lucene index was generated on 2023/01/11 at Pyserini commit ['40277a'](https://github.com/castorini/pyserini/commit/40277ae007e4d28882af19d6ce1e899a0af04a68) +with the following commands: + +First make sure you have git lfs installed to clone the huggingface repository. +```bash +git lfs install +``` + +```bash +git clone https://huggingface.co/datasets/castorini/odqa-wiki-corpora + +python -m pyserini.index.lucene \ + --collection MrTyDiCollection \ + --input odqa-wiki-corpora/wiki-all-6-3-tamber \ + --index indexes/index-wiki-all-6-3-tamber-20230111-40277a \ + --generator DefaultLuceneDocumentGenerator \ + --threads 12 \ + --optimize \ + --storeRaw + ``` + +lucene-index-wiki-all-6-3-tamber-20230111-40277a.tar.gz MD5 checksum = 018b45ee8c6278a879caa3145b2dc05d diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8b0d21d867892fee7e630177e58a6ab528e0522a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — ArguAna + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/arguana \ + -index indexes/lucene-index.beir-v1.0.0-arguana-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-arguana-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..123ac08eeda746598b3acf4563e96b27df14abd3 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — ArguAna + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/arguana \ + -index indexes/lucene-index.beir-v1.0.0-arguana-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-arguana-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e92ae63bb34cebb3e63795c0b9fcd9f89da487bd --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — ArguAna + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/arguana \ + -index indexes/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..796c53d4264bebb6cfc87339adb5e943d49d10da --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — BioASQ + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/bioasq \ + -index indexes/lucene-index.beir-v1.0.0-bioasq-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-bioasq-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8de237d9da139a3d5e225adc913f2af905e62880 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — BioASQ + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/bioasq \ + -index indexes/lucene-index.beir-v1.0.0-bioasq-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-bioasq-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..cdcdecfe13c0f62dc8a7b4b653cd5574839d94ff --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — BioASQ + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/bioasq \ + -index indexes/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..bc2750c1060a248d5574db3ba281841273bcfc48 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Climate-FEVER + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/climate-fever \ + -index indexes/lucene-index.beir-v1.0.0-climate-fever-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-climate-fever-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3e7ae58fcf77cd215c9c319e0bca6e0a23e2f824 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Climate-FEVER + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/climate-fever \ + -index indexes/lucene-index.beir-v1.0.0-climate-fever-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-climate-fever-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b383b388fb4f10cd703b8659e62cdfc455b22c6c --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Climate-FEVER + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/climate-fever \ + -index indexes/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..33fd2fd9c1fcdd376c5534c44492ffe190aee380 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-android + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-android \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-android-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6e9c81607f3b1d2fe5103779992a90ea0ad405b7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-android + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-android \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-android-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4eb1eaf22339ae6d4e91e0922cf84517f8cf6ad2 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-android + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-android \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b496abd0624fd55991fac16cd27fb12dc586e36a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-english + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-english \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-english-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e95065cf28a3351c2b241a970e9638e05290201b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-english + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-english \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-english-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..ea16f8f847e1e82b89f76c7ff2052a0c58ed4f0d --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-english + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-english \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..cfa3dd88b05e728c70f1f188c7cf231ffc0ed775 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-gaming + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-gaming \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gaming-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..53c76ac330a398541b04c629244230f09157edff --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-gaming + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-gaming \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gaming-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..64ea65499106fee22d08a8b3d48b789e39bcfb2a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-gaming + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-gaming \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0140cef81d5b3c722859f6abb9db8ccb7fdb41cf --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-gis + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-gis \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gis-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2c4e31ca24247dd0af11217feb1eacc16fedfe26 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-gis + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-gis \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gis-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e1562022c60ce60cb8be99bd0a3f98281533b5b2 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-gis + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-gis \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..ff959813ba669c27e1e750b1be340738414f21f1 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-mathematica + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-mathematica \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-mathematica-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..55970173077f57c2897050b926d2ae1f0430a952 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-mathematica + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-mathematica \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-mathematica-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..7a0e2e1791aa4c096dfbd05cffb4b12b085239a9 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-mathematica + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-mathematica \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..75b8b30df7adc47c8b56b7bb1124ce29e38f8047 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-physics + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-physics \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-physics-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..c263e8ceb36832605b7bb1e4f989bbbe71386cd1 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-physics + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-physics \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-physics-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9ec68d8b7c8267e2e05ad6d01947a2265dc9adc3 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-physics + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-physics \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2509f4e1cb1ea9d64b1a1cf5fc6cf10a529eaf59 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-programmers + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-programmers \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-programmers-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..562532f768b8fc20e31519a8a96746ddd35856e3 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-programmers + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-programmers \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-programmers-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9ec2b5b53070039d1229bc30e273e9dfb95428d4 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-programmers + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-programmers \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..c963fbb48612b78abe21071b62e01463e9360557 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-stats + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-stats \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-stats-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..c6e93c3d4b290fc040655e0605ad56a9d84bfefe --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-stats + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-stats \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-stats-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..77dee0ceaec027d3b0f06946fd82f04d630c5cb7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-stats + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-stats \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4bc3e0ab4aea74b6a27380ebe3413992a677a18e --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-tex + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-tex \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-tex-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f694890541777ca0b8ac764fc116d5f9b7909cf5 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-tex + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-tex \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-tex-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..273df443a41cdf3389ba023ca78776374439a61d --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-tex + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-tex \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f08109e6de338dbbacb4cd858c231d57ce22caf7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-unix + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-unix \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-unix-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..668c33bb4295b14f80e9bc92efa64b8424dbdc8b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-unix + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-unix \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-unix-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a80d04351790505fb9bbdbaf78d16ec502f886f6 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-unix + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-unix \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0c6705fd1c1e66846bfc3f8e5190d1ac43ff77f0 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-webmasters + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-webmasters \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-webmasters-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2ee07650500a4391f9e45fa0f51de62cdc974b36 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-webmasters + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-webmasters \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-webmasters-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..fda3f5eb88b5b175946267b0c983463e159c62c0 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-webmasters + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-webmasters \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..347a80a05cef0dd570d36978f6d596ef096dee32 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-wordpress + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-wordpress \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-wordpress-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..7ef78bd5e8091cb483fb03459b4640913a6fe4f5 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-wordpress + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/cqadupstack-wordpress \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-wordpress-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e76790fdbd1a2a14238ec5d630d97601d36612af --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — CQADupStack-wordpress + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-wordpress \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f0d7073698c7f446391141928a374931273c20af --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — DBPedia + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/dbpedia-entity \ + -index indexes/lucene-index.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-dbpedia-entity-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..69fb579b7718d752a18744beab6c742245806d81 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — DBPedia + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/dbpedia-entity \ + -index indexes/lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-dbpedia-entity-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f88b9e113cc0fc868c94a05d9c77de4e02c72bf2 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — DBPedia + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/dbpedia-entity \ + -index indexes/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4458baccb3f24ab4b325e33a7838cab68322ff79 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — FEVER + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/fever \ + -index indexes/lucene-index.beir-v1.0.0-fever-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fever-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9369c49b0a87854afb0cc56bc405a1b7fe89e671 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — FEVER + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/fever \ + -index indexes/lucene-index.beir-v1.0.0-fever-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fever-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1948f7920f98a29611ca1052172cf8300dfca9a1 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — FEVER + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/fever \ + -index indexes/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..831fdea1d0dcf110b6f3893a85bdf9ff18710b54 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — FiQA-2018 + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/fiqa \ + -index indexes/lucene-index.beir-v1.0.0-fiqa-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fiqa-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..d94a2598d60129af7dfef0873a028242a589b21e --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — FiQA-2018 + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/fiqa \ + -index indexes/lucene-index.beir-v1.0.0-fiqa-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fiqa-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..7a30a31cf4debf5ab817e4e63e46d3f2a2c63614 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — FiQA-2018 + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/fiqa \ + -index indexes/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-flat.20221116.505594.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-flat.20221116.505594.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2ef11bbf6f7bdb6899b98be579388cbcf6528a43 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-flat.20221116.505594.README.md @@ -0,0 +1,237 @@ +# BEIR (v1.0.0): "flat" Lucene indexes + +These "flat" Lucene indexes were generated on 2022/11/16 at Anserini commit [`505594`](https://github.com/castorini/anserini/commit/505594b6573294a9a4c72a8feee3416f8a9bd2d9) on `tuna` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/trec-covid \ + -index indexes/lucene-index.beir-v1.0.0-trec-covid-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-covid-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/bioasq \ + -index indexes/lucene-index.beir-v1.0.0-bioasq-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-bioasq-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/nfcorpus \ + -index indexes/lucene-index.beir-v1.0.0-nfcorpus-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nfcorpus-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/nq \ + -index indexes/lucene-index.beir-v1.0.0-nq-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nq-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/hotpotqa \ + -index indexes/lucene-index.beir-v1.0.0-hotpotqa-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-hotpotqa-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/fiqa \ + -index indexes/lucene-index.beir-v1.0.0-fiqa-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fiqa-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/signal1m \ + -index indexes/lucene-index.beir-v1.0.0-signal1m-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-signal1m-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/trec-news \ + -index indexes/lucene-index.beir-v1.0.0-trec-news-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-news-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/robust04 \ + -index indexes/lucene-index.beir-v1.0.0-robust04-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-robust04-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/arguana \ + -index indexes/lucene-index.beir-v1.0.0-arguana-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-arguana-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/webis-touche2020 \ + -index indexes/lucene-index.beir-v1.0.0-webis-touche2020-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-webis-touche2020-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-android \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-android-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-android-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-english \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-english-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-english-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-gaming \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gaming-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-gis \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gis-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-mathematica \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-mathematica-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-physics \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-physics-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-programmers \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-programmers-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-stats \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-stats-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-tex \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-tex-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-unix \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-unix-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-webmasters \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-webmasters-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-wordpress \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-wordpress-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/quora \ + -index indexes/lucene-index.beir-v1.0.0-quora-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-quora-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/dbpedia-entity \ + -index indexes/lucene-index.beir-v1.0.0-dbpedia-entity-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-dbpedia-entity-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/scidocs \ + -index indexes/lucene-index.beir-v1.0.0-scidocs-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scidocs-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/fever \ + -index indexes/lucene-index.beir-v1.0.0-fever-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fever-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/climate-fever \ + -index indexes/lucene-index.beir-v1.0.0-climate-fever-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-climate-fever-flat.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/scifact \ + -index indexes/lucene-index.beir-v1.0.0-scifact-flat.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scifact-flat.20221116.505594 & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..7e07a916b987ba92da71e0e5a31d84fbd83b433a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — HotpotQA + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/hotpotqa \ + -index indexes/lucene-index.beir-v1.0.0-hotpotqa-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-hotpotqa-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e97acc460d9725c3acafb92433b61963e13a5f70 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — HotpotQA + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/hotpotqa \ + -index indexes/lucene-index.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-hotpotqa-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3567ef64b53c7135e1914533f09fdabf841bfcef --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — HotpotQA + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/hotpotqa \ + -index indexes/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-multifield.20221116.505594.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-multifield.20221116.505594.README.md new file mode 100644 index 0000000000000000000000000000000000000000..453718050415aec6b30aa1f3899580667e599d2f --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-multifield.20221116.505594.README.md @@ -0,0 +1,237 @@ +# BEIR (v1.0.0): "multifield" Lucene indexes + +These "multifield" Lucene indexes were generated on 2022/11/16 at Anserini commit [`505594`](https://github.com/castorini/anserini/commit/505594b6573294a9a4c72a8feee3416f8a9bd2d9) on `tuna` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/trec-covid \ + -index indexes/lucene-index.beir-v1.0.0-trec-covid-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-covid-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/bioasq \ + -index indexes/lucene-index.beir-v1.0.0-bioasq-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-bioasq-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/nfcorpus \ + -index indexes/lucene-index.beir-v1.0.0-nfcorpus-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nfcorpus-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/nq \ + -index indexes/lucene-index.beir-v1.0.0-nq-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nq-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/hotpotqa \ + -index indexes/lucene-index.beir-v1.0.0-hotpotqa-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-hotpotqa-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/fiqa \ + -index indexes/lucene-index.beir-v1.0.0-fiqa-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fiqa-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/signal1m \ + -index indexes/lucene-index.beir-v1.0.0-signal1m-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-signal1m-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/trec-news \ + -index indexes/lucene-index.beir-v1.0.0-trec-news-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-news-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/robust04 \ + -index indexes/lucene-index.beir-v1.0.0-robust04-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-robust04-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/arguana \ + -index indexes/lucene-index.beir-v1.0.0-arguana-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-arguana-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/webis-touche2020 \ + -index indexes/lucene-index.beir-v1.0.0-webis-touche2020-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-webis-touche2020-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-android \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-android-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-android-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-english \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-english-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-english-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-gaming \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gaming-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-gis \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gis-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-mathematica \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-mathematica-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-physics \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-physics-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-programmers \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-programmers-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-stats \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-stats-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-tex \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-tex-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-unix \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-unix-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-webmasters \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-webmasters-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/cqadupstack-wordpress \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-wordpress-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/quora \ + -index indexes/lucene-index.beir-v1.0.0-quora-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-quora-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/dbpedia-entity \ + -index indexes/lucene-index.beir-v1.0.0-dbpedia-entity-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-dbpedia-entity-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/scidocs \ + -index indexes/lucene-index.beir-v1.0.0-scidocs-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scidocs-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/fever \ + -index indexes/lucene-index.beir-v1.0.0-fever-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-fever-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/climate-fever \ + -index indexes/lucene-index.beir-v1.0.0-climate-fever-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-climate-fever-multifield.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /tuna1/collections/beir-v1.0.0/corpus/scifact \ + -index indexes/lucene-index.beir-v1.0.0-scifact-multifield.20221116.505594/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scifact-multifield.20221116.505594 & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f6b0c4dd2aa20282e8bf8a28e3b2c112d5b77dbd --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — NFCorpus + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/nfcorpus \ + -index indexes/lucene-index.beir-v1.0.0-nfcorpus-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nfcorpus-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b66c5a2a377bc2bf7b5a148b38066163694cb5e4 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — NFCorpus + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/nfcorpus \ + -index indexes/lucene-index.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nfcorpus-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0705766a3a68097d058e9cb8e5ae2dc4f65dd5b6 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — NFCorpus + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/nfcorpus \ + -index indexes/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4b9bcd6b966a9212d408730f21bfe80148ecfd32 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — NQ + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/nq \ + -index indexes/lucene-index.beir-v1.0.0-nq-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nq-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b256ea81d29b920138c965ba34822d35c27816a6 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — NQ + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/nq \ + -index indexes/lucene-index.beir-v1.0.0-nq-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-nq-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..77352d39f3f1bbdc6bffcacf7358fb55b2d69ddc --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — NQ + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/nq \ + -index indexes/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1a06f63dfd59b1a5cee92c5e40dedcc4fe2586a6 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Quora + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/quora \ + -index indexes/lucene-index.beir-v1.0.0-quora-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-quora-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f4a8507dde1f2716bf665f6fb3a93db06749cf31 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Quora + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/quora \ + -index indexes/lucene-index.beir-v1.0.0-quora-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-quora-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..04cdccf3318e6e12943d8418a07aa6dc2a10264c --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Quora + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/quora \ + -index indexes/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..25f2f0a4fb1e228eadb9f827321bea28a86ec3df --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Robust04 + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/robust04 \ + -index indexes/lucene-index.beir-v1.0.0-robust04-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-robust04-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0b9e79e25327c76b754ea0af611099579024788a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Robust04 + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/robust04 \ + -index indexes/lucene-index.beir-v1.0.0-robust04-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-robust04-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0d44304deb5afb9413d8f80163d5a9ceb3b11f7b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Robust04 + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/robust04 \ + -index indexes/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2bf9d2ad8a723c03c0da71804f30144aa46cc9f3 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — SCIDOCS + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/scidocs \ + -index indexes/lucene-index.beir-v1.0.0-scidocs-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scidocs-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a3cbd51c3b345bcfa97d1ea06d5e917059ed4dda --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — SCIDOCS + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/scidocs \ + -index indexes/lucene-index.beir-v1.0.0-scidocs-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scidocs-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1ba59c9233ad0e3b15650b6ae1b409575397eec9 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — SCIDOCS + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/scidocs \ + -index indexes/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4151b71c3bf7ef0bc321af236cbfa87b6ea04c33 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — SciFact + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/scifact \ + -index indexes/lucene-index.beir-v1.0.0-scifact-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scifact-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b6f0d29faff8db6ced0211bacd137ede06dea6f4 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — SciFact + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/scifact \ + -index indexes/lucene-index.beir-v1.0.0-scifact-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-scifact-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f78d4f52b0824193dcf65db562068bea4cc04df8 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — SciFact + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/scifact \ + -index indexes/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3a7e897c398b8311c06098306d311bdc86a94558 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Signal-1M + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/signal1m \ + -index indexes/lucene-index.beir-v1.0.0-signal1m-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-signal1m-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..05b73aa4d025f815116432ab5a199df1d6a17cdc --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Signal-1M + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/signal1m \ + -index indexes/lucene-index.beir-v1.0.0-signal1m-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-signal1m-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..98c672c1dd524b7c1212fdef5823c7af5bcda879 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Signal-1M + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/signal1m \ + -index indexes/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md new file mode 100644 index 0000000000000000000000000000000000000000..21cc0eafa438acf841b8e750ce7da72cabc19b95 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-splade_distil_cocodenser_medium.20221116.505594.README.md @@ -0,0 +1,237 @@ +# BEIR (v1.0.0): SPLADE-distill CoCodenser-medium + +These Lucene impact indexes for SPLADE-distill CoCodenser-medium were generated on 2022/11/16 at Anserini commit [`505594`](https://github.com/castorini/anserini/commit/505594b6573294a9a4c72a8feee3416f8a9bd2d9) on `tuna` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/trec-covid \ + -index indexes/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/bioasq \ + -index indexes/lucene-index.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-bioasq-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/nfcorpus \ + -index indexes/lucene-index.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-nfcorpus-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/nq \ + -index indexes/lucene-index.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-nq-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/hotpotqa \ + -index indexes/lucene-index.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-hotpotqa-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/fiqa \ + -index indexes/lucene-index.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-fiqa-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/signal1m \ + -index indexes/lucene-index.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-signal1m-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/trec-news \ + -index indexes/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/robust04 \ + -index indexes/lucene-index.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-robust04-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/arguana \ + -index indexes/lucene-index.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-arguana-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/webis-touche2020 \ + -index indexes/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-android \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-android-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-english \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-english-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-gaming \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gaming-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-gis \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-gis-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-mathematica \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-mathematica-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-physics \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-physics-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-programmers \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-programmers-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-stats \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-stats-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-tex \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-tex-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-unix \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-unix-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-webmasters \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-webmasters-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/cqadupstack-wordpress \ + -index indexes/lucene-index.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-cqadupstack-wordpress-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/quora \ + -index indexes/lucene-index.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-quora-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/dbpedia-entity \ + -index indexes/lucene-index.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-dbpedia-entity-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/scidocs \ + -index indexes/lucene-index.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-scidocs-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/fever \ + -index indexes/lucene-index.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-fever-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/climate-fever \ + -index indexes/lucene-index.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-climate-fever-splade_distil_cocodenser_medium.20221116.505594 & + +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /tuna1/collections/beir-v1.0.0/splade_distil_cocodenser_medium/scifact \ + -index indexes/lucene-index.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20221116.505594/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-scifact-splade_distil_cocodenser_medium.20221116.505594 & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..d3a2822ccf6b9a26c9fd2e4d10c556b6fcb8e978 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — TREC-COVID + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/trec-covid \ + -index indexes/lucene-index.beir-v1.0.0-trec-covid-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-covid-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..dc2e127f38b4c90a6a3a5fe9ca97b798092a14f2 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — TREC-COVID + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/trec-covid \ + -index indexes/lucene-index.beir-v1.0.0-trec-covid-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-covid-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..641d2fcdb39d83e2fc042b746f05d9890eac8248 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — TREC-COVID + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/trec-covid \ + -index indexes/lucene-index.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-trec-covid-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4af25537673536c1311813c06815a7bd54b3b696 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — TREC-NEWS + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/trec-news \ + -index indexes/lucene-index.beir-v1.0.0-trec-news-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-news-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..29296fa8c0a92974921b0e0cce7d5b2ac59911a5 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — TREC-NEWS + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/trec-news \ + -index indexes/lucene-index.beir-v1.0.0-trec-news-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-trec-news-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..62e905c208a5854b9f960da4ea4db12d7d217826 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — TREC-NEWS + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/trec-news \ + -index indexes/lucene-index.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-trec-news-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9888c1109b4834f90282f16fa1c8ae4ec132cad7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Webis-Touche2020 + +This **"flat" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirFlatCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/webis-touche2020 \ + -index indexes/lucene-index.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-webis-touche2020-flat.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3d0098ce7c725f493438c2e55ceff423932b6a8b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Webis-Touche2020 + +This **"multifield" Lucene index** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection BeirMultifieldCollection \ + -input /scratch2/collections/beir-v1.0.0/corpus/webis-touche2020 \ + -index indexes/lucene-index.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -fields title -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.beir-v1.0.0-webis-touche2020-multifield.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee.README.md b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee.README.md new file mode 100644 index 0000000000000000000000000000000000000000..880814b874258e217d572dc65967e760d7ba1e4e --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee.README.md @@ -0,0 +1,13 @@ +# BEIR (v1.0.0) — Webis-Touche2020 + +This Lucene impact index for **SPLADE-distill CoCodenser-medium** was generated on 2022/05/01 at Anserini commit [`1842ee`](https://github.com/castorini/anserini/commit/1842eeffcbf4d18698d401b1c5a4b1c868f32fc6) on `damiano` with the following command: + +``` +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -generator DefaultLuceneDocumentGenerator \ + -input /scratch2/collections/beir-v1.0.0/splade_distil_cocodenser_medium/webis-touche2020 \ + -index indexes/lucene-index.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee/ \ + -threads 16 -impact -pretokenized -optimize \ + >& logs/log.beir-v1.0.0-webis-touche2020-splade_distil_cocodenser_medium.20220501.1842ee & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-fa.20220719.71c120.README.md b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-fa.20220719.71c120.README.md new file mode 100644 index 0000000000000000000000000000000000000000..68d9e2c13c484da162d7c85d6dd216ad3572729b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-fa.20220719.71c120.README.md @@ -0,0 +1,14 @@ +# hc4-v1.0-fa + +Lucene index for HC4 v1.0 (Persian). + +This index was generated on 2022/07/19 at Anserini commit [`71c120`](https://github.com/castorini/anserini/commit/71c1200d36ce17615cf4da510ac4ef2d2f0121f6) on `orca` with the following command: + + +``` +target/appassembler/bin/IndexCollection -collection NeuClirCollection \ + -generator DefaultLuceneDocumentGenerator -threads 8 \ + -input /store/collections/multilingual/hc4-v1.0-fa \ + -index indexes/lucene-index.hc4-v1.0-fa.20220719.71c120 \ + -storePositions -storeDocvectors -storeRaw -optimize -language fa +``` diff --git a/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-ru.20220719.71c120.README.md b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-ru.20220719.71c120.README.md new file mode 100644 index 0000000000000000000000000000000000000000..5ed6c49f50bb420616b448cf9b7bde90a13f45e2 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-ru.20220719.71c120.README.md @@ -0,0 +1,13 @@ +# hc4-v1.0-ru + +Lucene index for HC4 v1.0 (Russian). + +This index was generated on 2022/07/19 at Anserini commit [`71c120`](https://github.com/castorini/anserini/commit/71c1200d36ce17615cf4da510ac4ef2d2f0121f6) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection NeuClirCollection \ + -generator DefaultLuceneDocumentGenerator -threads 8 \ + -input /store/collections/multilingual/hc4-v1.0-ru \ + -index indexes/lucene-index.hc4-v1.0-ru.20220719.71c120 \ + -storePositions -storeDocvectors -storeRaw -optimize -language ru +``` diff --git a/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-zh.20220719.71c120.README.md b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-zh.20220719.71c120.README.md new file mode 100644 index 0000000000000000000000000000000000000000..33b6541762a722bbf498f66c6b9dec75f2818071 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0-zh.20220719.71c120.README.md @@ -0,0 +1,13 @@ +# hc4-v1.0-zh + +Lucene index for HC4 v1.0 (Chinese). + +This index was generated on 2022/07/19 at Anserini commit [`71c120`](https://github.com/castorini/anserini/commit/71c1200d36ce17615cf4da510ac4ef2d2f0121f6) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection NeuClirCollection \ + -generator DefaultLuceneDocumentGenerator -threads 8 \ + -input /store/collections/multilingual/hc4-v1.0-zh \ + -index indexes/lucene-index.hc4-v1.0-zh.20220719.71c120 \ + -storePositions -storeDocvectors -storeRaw -optimize -language zh +``` diff --git a/pyserini/resources/index-metadata/lucene-index.hc4-v1.0.20221025.c4a8d0.README.md b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0.20221025.c4a8d0.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4ead6ffe5131727e51b38a08ddcf328583cb4bfc --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.hc4-v1.0.20221025.c4a8d0.README.md @@ -0,0 +1,34 @@ +# HC4 v1.0 Indexes + +Lucene indexes for HC4 v1.0 (Persian, Russian, and Chinese). + +These indexes was generated on 2022/10/25 at Anserini commit [`c4a8d0`](https://github.com/castorini/anserini/commit/c4a8d00e3c218ed89dca8a4e51c3b2c7d577db00) on `tuna` with the following commands: + +```bash +# HC4 fa +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/hc4-v1.0-fa \ + -index indexes/lucene-index.hc4-v1.0-fa.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -language fa -optimize \ + >& logs/log.hc4-v1.0-fa.20221025.c4a8d0 & + +# HC4 ru +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/hc4-v1.0-ru \ + -index indexes/lucene-index.hc4-v1.0-ru.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -language ru -optimize \ + >& logs/log.hc4-v1.0-ru.20221025.c4a8d0 & + +# HC4 zh +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/hc4-v1.0-zh \ + -index indexes/lucene-index.hc4-v1.0-zh.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -language zh -optimize \ + >& logs/log.hc4-v1.0-zh.20221025.c4a8d0 & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.miracl-v1.0.20221004.2b2856.README.md b/pyserini/resources/index-metadata/lucene-index.miracl-v1.0.20221004.2b2856.README.md new file mode 100644 index 0000000000000000000000000000000000000000..d95eed6ae4b69864fb050ca49124ea3bdd5e5aeb --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.miracl-v1.0.20221004.2b2856.README.md @@ -0,0 +1,14 @@ +# miracl-v1.0 + +Lucene index for MIRACL v1.0 (All languages) + +This index was generated on 2022/10/04 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: +``` +lang=ar # or: bn en fi fr hi id ja ko fa ru es sw te th zh +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MIRACL/miracl-corpus-v1.0-$lang \ + -index lucene-index.miracl-v1.0-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $lang +``` diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0b3e01f260ce45f107e06ee6bea61a4fb4b08d2c --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-arabic + +Lucene index for Mr.TyDi v1.1 (Arabic). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-arabic/ \ + -index indexes/lucene-index.mrtydi-v1.1-arabic.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language ar +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-arabic.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-arabic.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..451c03a78332f4ff0daa99d62cc9eb3038ad243d --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-arabic.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-arabic + +Lucene index for Mr.TyDi v1.1 (Arabic). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=arabic +abbr=ar + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8d6565e9dcc57e1b5eabcb7ad1e590997f662f94 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-bengali + +Lucene index for Mr.TyDi v1.1 (Bengali). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-bengali/ \ + -index indexes/lucene-index.mrtydi-v1.1-bengali.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language bn +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-bengali.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-bengali.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a7a1e252af11910e9e31c33ab9682086daf43ead --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-bengali.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-bengali + +Lucene index for Mr.TyDi v1.1 (Bengali). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=bengali +abbr=bn + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-english.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-english.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8c4f02f197373f57ab0765a0b639a7951f02a877 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-english.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-english + +Lucene index for Mr.TyDi v1.1 (English). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-english/ \ + -index indexes/lucene-index.mrtydi-v1.1-english.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language en +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-english.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-english.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b664d41a371476a3f6ef3799b9503837502fe40a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-english.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-english + +Lucene index for Mr.TyDi v1.1 (English). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=english +abbr=en + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..10b161844fb9084bea40b96332f77087ffe34db7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-finnish + +Lucene index for Mr.TyDi v1.1 (Finnish). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-finnish/ \ + -index indexes/lucene-index.mrtydi-v1.1-finnish.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language fi +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-finnish.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-finnish.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..156c594906efc4a3d50d1454167a5696c011258b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-finnish.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-finnish + +Lucene index for Mr.TyDi v1.1 (Finnish). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=finnish +abbr=fi + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..13570f2745912620cf6efd5149777186861e05bb --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-indonesian + +Lucene index for Mr.TyDi v1.1 (Indonesian). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-indonesian/ \ + -index indexes/lucene-index.mrtydi-v1.1-indonesian.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language id +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-indonesian.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-indonesian.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0a8b36fe6c6533daeca301e86fdc12151401278a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-indonesian.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-indonesian + +Lucene index for Mr.TyDi v1.1 (Indonesian). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=indonesian +abbr=id + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a78a572a06d616d4ebf1cbdb79487575ae1a7935 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-japanese + +Lucene index for Mr.TyDi v1.1 (Japanese). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-japanese/ \ + -index indexes/lucene-index.mrtydi-v1.1-japanese.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language ja +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-japanese.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-japanese.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3fc37ed50ebb6ca33fb135da4161dea5eff86c1d --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-japanese.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-japanese + +Lucene index for Mr.TyDi v1.1 (Japanese). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=japanese +abbr=ja + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-korean.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-korean.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3810f62615e23573b17b54309851945d66afdd92 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-korean.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-korean + +Lucene index for Mr.TyDi v1.1 (Korean). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-korean/ \ + -index indexes/lucene-index.mrtydi-v1.1-korean.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language ko +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-korean.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-korean.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..ed106fd28b6c8223033beaec93b69186d2f8437b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-korean.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-korean + +Lucene index for Mr.TyDi v1.1 (Korean). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=korean +abbr=ko + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-russian.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-russian.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..7df1ccbf99d852cd2d5482d774e672c5dae2174a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-russian.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-russian + +Lucene index for Mr.TyDi v1.1 (Russian). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-russian/ \ + -index indexes/lucene-index.mrtydi-v1.1-russian.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language ru +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-russian.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-russian.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3ee7340f3405e871dfe181c0e6e6c4addeaeff22 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-russian.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-russian + +Lucene index for Mr.TyDi v1.1 (Russian). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=russian +abbr=ru + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..5d7fd59cf679b0135f08f59f58dd21ef97380531 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89.README.md @@ -0,0 +1,16 @@ +# mrtydi-v1.1-swahili + +Lucene index for Mr.TyDi v1.1 (Swahili). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-swahili/ \ + -index indexes/lucene-index.mrtydi-v1.1-swahili.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -pretokenized +``` + +Note that `-language sw` gives identical results (and is more semantically accurate) but since we do not have a language-specific tokenizer here, we just use the whitespace tokenizer, which is what `-pretokenized` uses. +This index was built based on Anserini regressions at the time; see [Anserini #1727](https://github.com/castorini/anserini/pull/1727). \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-swahili.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-swahili.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..02e7bb87583e06f3ee9db6aeff24548106322360 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-swahili.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-swahili + +Lucene index for Mr.TyDi v1.1 (Swahili). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=swahili +abbr=sw + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..eedd6e194610efd46b781998f78a8091124c682d --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89.README.md @@ -0,0 +1,16 @@ +# mrtydi-v1.1-telugu + +Lucene index for Mr.TyDi v1.1 (Telugu). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-telugu/ \ + -index indexes/lucene-index.mrtydi-v1.1-telugu.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -pretokenized +``` + +Note that `-language te` gives identical results (and is more semantically accurate) but since we do not have a language-specific tokenizer here, we just use the whitespace tokenizer, which is what `-pretokenized` uses. +This index was built based on Anserini regressions at the time; see [Anserini #1727](https://github.com/castorini/anserini/pull/1727). \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-telugu.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-telugu.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2f4bcd9b05c9cbd5ad145521c89111476a1ac104 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-telugu.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-telugu + +Lucene index for Mr.TyDi v1.1 (Telugu). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=telugu +abbr=te + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-thai.20220108.6fcb89.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-thai.20220108.6fcb89.README.md new file mode 100644 index 0000000000000000000000000000000000000000..296e30f8aacfddbe7166db1f51a93c8806b59b5b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-thai.20220108.6fcb89.README.md @@ -0,0 +1,13 @@ +# mrtydi-v1.1-thai + +Lucene index for Mr.TyDi v1.1 (Thai). + +This index was generated on 2022/01/08 at Anserini commit [`6fcb89`](https://github.com/castorini/anserini/commit/6fcb896c61e2b8cf2f235def3e95dda5fe4cd2fc) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator -threads 1 \ + -input /store/collections/mr-tydi-corpus/mrtydi-v1.1-thai/ \ + -index indexes/lucene-index.mrtydi-v1.1-thai.20220108.6fcb89/ \ + -storePositions -storeDocvectors -storeRaw -optimize -language th +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-thai.20220928.b5ecc5.README.md b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-thai.20220928.b5ecc5.README.md new file mode 100644 index 0000000000000000000000000000000000000000..5a23bafff699f7d3c0272d116c06691ba8b515db --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.mrtydi-v1.1-thai.20220928.b5ecc5.README.md @@ -0,0 +1,17 @@ +# mrtydi-v1.1-thai + +Lucene index for Mr.TyDi v1.1 (Thai). + +This index was generated on 2022/09/28 at Anserini commit [`b5ecc5`](https://github.com/castorini/anserini/commit/b5ecc5aff79ddfc82b175f6bd3048f5039f0480f) on `orca` with the following command: + +``` +lang=thai +abbr=th + +target/appassembler/bin/IndexCollection \ + -collection MrTyDiCollection \ + -input MrTyDi/miracl-corpus-v1.0-$lang \ + -index indexes-miracl/lucene-index.mrtydi-v1.1-$lang \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -storePositions -storeDocvectors -storeRaw -language $abbr +``` \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8d2cc17fac6d057f46e43119cf1cb88ec3ede1c --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-doc-per-passage-expansion-unicoil-d2q-b8/ \ + -index indexes/lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-doc-per-passage-expansion.unicoil-d2q.20211012.58d286.tar.gz MD5 checksum = 44bfc848f9a77302b10a59c5b136eb95 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-passage.deepimpact.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.deepimpact.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..e356525181b2355570566101d29e3286697a7709 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.deepimpact.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-passage-deepimpact-b8/ \ + -index indexes/lucene-index.msmarco-passage.deepimpact.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-passage.deepimpact.20211012.58d286.tar.gz MD5 checksum = 9938f5529fee5cdb405b8587746c9e93 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-passage.distill-splade-max.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.distill-splade-max.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a3b451a3d3300eeb9ee0be65ab818e2616851be --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.distill-splade-max.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-passage-distill-splade-max \ + -index indexes/lucene-index.msmarco-passage.distill-splade-max.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-passage.distill-splade-max.20211012.58d286.tar.gz MD5 checksum = 957c0dd1b78b61aeddc8685150fd8360 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9b427dc795ba581282d4226d4d43d877ff38f25 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-passage-unicoil-b8/ \ + -index indexes/lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-passage.unicoil-d2q.20211012.58d286.tar.gz MD5 checksum = 4a8cb3b86a0d9085a0860c7f7bb7fe99 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-passage.unicoil-tilde.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.unicoil-tilde.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..817abea4cbd7e2f91faeae7c40a6e7018d97ad96 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-passage.unicoil-tilde.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-passage-unicoil-tilde-expansion-b8/ \ + -index indexes/lucene-index.msmarco-passage.unicoil-tilde.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-passage.unicoil-tilde.20211012.58d286.tar.gz MD5 checksum = cc19cfe241053f5a303f7f05a7ac40a5 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..d8b7721fe6cebe272126681a8a86d75a53344226 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v1-doc-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V1 document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /scratch2/collections/msmarco/msmarco-doc-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..225bce6f8217691346370fc9c8f80ff92b876c9b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v1-doc-d2q-t5 + +Lucene index of the MS MARCO V1 document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /store/collections/msmarco/msmarco-doc-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.README.md new file mode 100644 index 0000000000000000000000000000000000000000..34aaad4377167adca0a4b22d273ad501143edb67 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e.README.md @@ -0,0 +1,24 @@ +# msmarco-v1-doc-d2q-t5 + +Lucene index of the MS MARCO V1 document corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v1-doc-d2q-t5` (2.1G uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v1-doc-d2q-t5-docvectors` (12G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/10/04 at Anserini commit [`252b5e`](https://github.com/castorini/anserini/commit/252b5e2087dd7b3b994d41a444d4ae0044519819) on `tuna` with the following commands: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /tuna1/collections/msmarco/msmarco-doc-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-d2q-t5.20221004.252b5e/ \ + -optimize >& logs/log.msmarco-v1-doc-d2q-t5.20221004.252b5e & + +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /tuna1/collections/msmarco/msmarco-doc-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-d2q-t5-docvectors.20221004.252b5e/ \ + -storeDocvectors -optimize >& logs/log.msmarco-v1-doc-d2q-t5-docvectors.20221004.252b5e & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-full.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-full.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1d6038a93f3d84bb9ee22a63b1a177ef1d091325 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-full.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-doc-full + +Lucene index of the MS MARCO V1 document corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /store/collections/msmarco/msmarco-doc/ \ + -index indexes/lucene-index.msmarco-v1-doc-full.20220131.9ea315/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-doc` (16G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-slim` (2.0G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-full` (28G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9c269aa53d6c226e98956a84252959adb66cee6b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v1-doc-segmented-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V1 segmented document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 32 \ + -input /scratch2/collections/msmarco/msmarco-doc-segmented-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0cd6c61f11f03bf01a4644b5fa4cc09e7aeca52c --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v1-doc-segmented-d2q-t5 + +Lucene index of the MS MARCO V1 segmented document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /store/collections/msmarco/msmarco-doc-segmented-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.README.md new file mode 100644 index 0000000000000000000000000000000000000000..00fa81f125c2bcd58af7b5abb9c4e5a90cfbbd24 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e.README.md @@ -0,0 +1,24 @@ +# msmarco-v1-doc-segmented-d2q-t5 + +Lucene index of the MS MARCO V1 segmented document corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v1-doc-segmented-d2q-t5` (4.1G uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v1-doc-segmented-d2q-t5-docvectors` (19G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/10/04 at Anserini commit [`252b5e`](https://github.com/castorini/anserini/commit/252b5e2087dd7b3b994d41a444d4ae0044519819) on `tuna` with the following commands: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /tuna1/collections/msmarco/msmarco-doc-segmented-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e/ \ + -optimize >& logs/log.msmarco-v1-doc-segmented-d2q-t5.20221004.252b5e & + +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 32 \ + -input /tuna1/collections/msmarco/msmarco-doc-segmented-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-d2q-t5-docvectors.20221004.252b5e/ \ + -storeDocvectors -optimize >& logs/log.msmarco-v1-doc-segmented-d2q-t5-docvectors.20221004.252b5e & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4a178b038aed81b22e410b0d047e0f9ea3215a7f --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-doc-segmented-full + +Lucene index of the MS MARCO V1 segmented document corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /store/collections/msmarco/msmarco-doc-segmented/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-full.20220131.9ea315/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-doc-segmented` (20G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-segmented-slim` (3.9G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-segmented-full` (35G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..649cbb587fd3506f7cede3e382a87ae73ef04229 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-doc-segmented-slim + +Lucene index of the MS MARCO V1 segmented document corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /store/collections/msmarco/msmarco-doc-segmented/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-slim.20220131.9ea315/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-doc-segmented` (20G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-segmented-slim` (3.9G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-segmented-full` (35G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-unicoil-noexp.20220419.c47993.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-unicoil-noexp.20220419.c47993.README.md new file mode 100644 index 0000000000000000000000000000000000000000..35a6015224d48861db6c242b0277170381674a32 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-unicoil-noexp.20220419.c47993.README.md @@ -0,0 +1,15 @@ +# msmarco-v1-doc-segmented-unicoil-noexp + +Lucene impact index of the MS MARCO V1 segmented document corpus for uniCOIL (noexp) with title prepended. + +This index was generated on 2022/04/19 at Pyserini commit [`c47993`](https://github.com/castorini/pyserini/commit/c47993aa2bebb8ab0a418214cfd299c0d0351c81) on `orca` with the following command: + +``` +python -m pyserini.index.lucene \ + --collection JsonVectorCollection \ + --input embeddings_msmarco-v1-doc-segmented-unicoil-noexp \ + --index indexes/lucene-index.msmarco-v1-doc-segmented-unicoil-noexp \ + --generator DefaultLuceneDocumentGenerator \ + --threads 12 \ + --impact --pretokenized --optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-unicoil.20220219.6a7080.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-unicoil.20220219.6a7080.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1a13ac701612a01ecf6fe489d75ab62a5d3bbd12 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented-unicoil.20220219.6a7080.README.md @@ -0,0 +1,14 @@ +# msmarco-v1-doc-segmented-unicoil + +Lucene impact index of the MS MARCO V1 segmented document corpus for uniCOIL. + +This index was generated on 2022/02/19 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/6a708047f71528f7d516c0dd45485204a36e6b1d) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco-doc-segmented-unicoil \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-unicoil.20220219.6a7080/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8e257c9861c34b545ec73a977cfdcdf0b7fc9f34 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-doc-segmented + +Lucene index of the MS MARCO V1 segmented document corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /store/collections/msmarco/msmarco-doc-segmented/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented.20220131.9ea315/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-doc-segmented` (20G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-segmented-slim` (3.9G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-segmented-full` (35G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.README.md new file mode 100644 index 0000000000000000000000000000000000000000..5766d69d57134ee7646f36fa920d001c9e0897d7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-segmented.20221004.252b5e.README.md @@ -0,0 +1,31 @@ +# msmarco-v1-doc-segmented + +Lucene index of the MS MARCO V1 segmented document corpus. + +Note that there are three variants: + ++ `msmarco-v1-doc-segmented` (19G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-segmented-slim` (3.9G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-segmented-full` (33G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/10/04 at Anserini commit [`252b5e`](https://github.com/castorini/anserini/commit/252b5e2087dd7b3b994d41a444d4ae0044519819) on `tuna` with the following commands: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /tuna1/collections/msmarco/msmarco-doc-segmented/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented.20221004.252b5e/ \ + -storeRaw -optimize >& logs/log.msmarco-v1-doc-segmented.20221004.252b5e & + +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /tuna1/collections/msmarco/msmarco-doc-segmented/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-slim.20221004.252b5e/ \ + -optimize >& logs/log.msmarco-v1-doc-segmented-slim.20221004.252b5e & + +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 16 \ + -input /tuna1/collections/msmarco/msmarco-doc-segmented/ \ + -index indexes/lucene-index.msmarco-v1-doc-segmented-full.20221004.252b5e/ \ + -storePositions -storeDocvectors -storeRaw -optimize >& logs/log.msmarco-v1-doc-segmented-full.20221004.252b5e & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-slim.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-slim.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..114aedff6734473458913da8030ec5dc44227b49 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc-slim.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-doc-slim + +Lucene index of the MS MARCO V1 document corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /store/collections/msmarco/msmarco-doc/ \ + -index indexes/lucene-index.msmarco-v1-doc-slim.20220131.9ea315/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-doc` (16G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-slim` (2.0G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-full` (28G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..ef63fc70345d5e84bcd5b423e841d6ea189f6397 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-doc + +Lucene index of the MS MARCO V1 document corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /store/collections/msmarco/msmarco-doc/ \ + -index indexes/lucene-index.msmarco-v1-doc.20220131.9ea315/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-doc` (16G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-slim` (2.0G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-full` (28G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc.20221004.252b5e.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc.20221004.252b5e.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1719bab44f55c1b437fad8e7034c16acc8f86319 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-doc.20221004.252b5e.README.md @@ -0,0 +1,31 @@ +# msmarco-v1-doc + +Lucene index of the MS MARCO V1 document corpus. + +Note that there are three variants: + ++ `msmarco-v1-doc` (16G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-doc-slim` (2.0G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-doc-full` (28G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/10/04 at Anserini commit [`252b5e`](https://github.com/castorini/anserini/commit/252b5e2087dd7b3b994d41a444d4ae0044519819) on `tuna` with the following commands: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /tuna1/collections/msmarco/msmarco-doc/ \ + -index indexes/lucene-index.msmarco-v1-doc.20221004.252b5e/ \ + -storeRaw -optimize >& logs/log.msmarco-v1-doc.20221004.252b5e & + +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /tuna1/collections/msmarco/msmarco-doc/ \ + -index indexes/lucene-index.msmarco-v1-doc-slim.20221004.252b5e/ \ + -optimize >& logs/log.msmarco-v1-doc-slim.20221004.252b5e & + +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 7 \ + -input /tuna1/collections/msmarco/msmarco-doc/ \ + -index indexes/lucene-index.msmarco-v1-doc-full.20221004.252b5e/ \ + -storePositions -storeDocvectors -storeRaw -optimize >& logs/log.msmarco-v1-doc-full.20221004.252b5e & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b04b8f9e5f217d6f83a7ca5858fa8ff395724436 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v1-passage-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V1 passage corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco-passage-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0d6a6e2c1849d231a2e6a911115e53d9a0b17627 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v1-passage-d2q-t5 + +Lucene index of the MS MARCO V1 passage corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco-passage-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-passage-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.README.md new file mode 100644 index 0000000000000000000000000000000000000000..013ec39c0aa10da5c60bc2463c55197abe3af735 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e.README.md @@ -0,0 +1,24 @@ +# msmarco-v1-passage-d2q-t5 + +Lucene index of the MS MARCO V1 passage corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v1-passage-d2q-t5` (972M uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v1-passage-d2q-t5-docvectors` (5.0G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/10/04 at Anserini commit [`252b5e`](https://github.com/castorini/anserini/commit/252b5e2087dd7b3b994d41a444d4ae0044519819) on `tuna` with the following commands: + +``` +nohup target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /tuna1/collections/msmarco/msmarco-passage-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-passage-d2q-t5.20221004.252b5e/ \ + -optimize >& logs/log.msmarco-v1-passage-d2q-t5.20221004.252b5e & + +nohup target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /tuna1/collections/msmarco/msmarco-passage-docTTTTTquery/ \ + -index indexes/lucene-index.msmarco-v1-passage-d2q-t5-docvectors.20221004.252b5e/ \ + -storeDocvectors -optimize >& logs/log.msmarco-v1-passage-d2q-t5-docvectors.20221004.252b5e & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-full.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-full.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..f508b2f9acd1f1d6911ef91a118f1a3665162ed1 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-full.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-passage-full + +Lucene index of the MS MARCO V1 passage corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 9 \ + -input /store/collections/msmarco/passage/ \ + -index indexes/lucene-index.msmarco-v1-passage-full.20220131.9ea315/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-passage` (2.5G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-passage-slim` (616M uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-passage-full` (4.3G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slim.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slim.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..808d3b06fb3d29c553c337ab4bde4a5768dcf11f --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slim.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-passage-slim + +Lucene index of the MS MARCO V1 passage corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 9 \ + -input /store/collections/msmarco/passage/ \ + -index indexes/lucene-index.msmarco-v1-passage-slim.20220131.9ea315/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-passage` (2.5G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-passage-slim` (616M uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-passage-full` (4.3G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slimr-pp.20230220.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slimr-pp.20230220.md new file mode 100644 index 0000000000000000000000000000000000000000..f0889b95214a708f78a383caf93a3d11af4a1274 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slimr-pp.20230220.md @@ -0,0 +1,11 @@ +This index was generated on 2023/02/20 with the following command: + +python -m pyserini.index.lucene \ + --collection JsonVectorCollection \ + --input collections/slimr_qtopk20_ptopk20_hardneg7_nobalanced_hardneg_distilled \ + --index lucene-index.msmarco-v1-passage-slimr-pp.20230220 \ + --generator DefaultLuceneDocumentGenerator \ + --threads 48 \ + --impact --pretokenized + +lucene-index.msmarco-v1-passage-slimr-pp.20230220.tar.gz MD5 checksum = 17b2edd909bcda4980a93fb0ab87e72b diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slimr.20230220.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slimr.20230220.md new file mode 100644 index 0000000000000000000000000000000000000000..db8cf12b250edd8ca68856ecbfc065dca0e088de --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-slimr.20230220.md @@ -0,0 +1,11 @@ +This index was generated on 2023/02/20 with the following command: + +python -m pyserini.index.lucene \ + --collection JsonVectorCollection \ + --input collections/slimr_qtopk20_ptopk20_hardneg7_nobalanced \ + --index lucene-index.msmarco-v1-passage-slimr.20230220 \ + --generator DefaultLuceneDocumentGenerator \ + --threads 48 \ + --impact --pretokenized + +lucene-index.msmarco-v1-passage-slimr.20230220.tar.gz MD5 checksum = 79e566fee4f376096e12a33cf67c8012 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-unicoil-noexp.20220322.2f4058.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-unicoil-noexp.20220322.2f4058.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8b6c372cb9f64cd556ec13942f4c99dc9726f8a8 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-unicoil-noexp.20220322.2f4058.README.md @@ -0,0 +1,15 @@ +# msmarco-v1-passage-unicoil-noexp + +Lucene impact index of the MS MARCO V1 passage corpus for uniCOIL (noexp). + +This index was generated on 2022/03/22 at Anserini commit [`2f4058`](https://github.com/castorini/anserini/commit/2f4058fbac852ec483c43e9e43ce9864db5a0027) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco-passage-unicoil-noexp/ \ + -index indexes/lucene-index.msmarco-v1-passage-unicoil-noexp.20220322.2f4058/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 \ + -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-unicoil.20220219.6a7080.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-unicoil.20220219.6a7080.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4e1481ccbe6fcf32d5f7bee7ad044b983d098a82 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage-unicoil.20220219.6a7080.README.md @@ -0,0 +1,14 @@ +# msmarco-v1-passage-unicoil + +Lucene impact index of the MS MARCO V1 passage corpus for uniCOIL. + +This index was generated on 2022/02/19 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/6a708047f71528f7d516c0dd45485204a36e6b1d) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco-passage-unicoil \ + -index indexes/lucene-index.msmarco-v1-passage-unicoil.20220219.6a7080/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 16 -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage.20220131.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage.20220131.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..d1ce4b1f20940432f5e6cf49b9269619efa7a158 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage.20220131.9ea315.README.md @@ -0,0 +1,21 @@ +# msmarco-v1-passage + +Lucene index of the MS MARCO V1 passage corpus. + +This index was generated on 2022/01/31 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 9 \ + -input /store/collections/msmarco/passage/ \ + -index indexes/lucene-index.msmarco-v1-passage.20220131.9ea315/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v1-passage` (2.5G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-passage-slim` (616M uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-passage-full` (4.3G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage.20221004.252b5e.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage.20221004.252b5e.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6de41d6e0dca0ed64655f99ea5062cc33c5fca25 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v1-passage.20221004.252b5e.README.md @@ -0,0 +1,31 @@ +# msmarco-v1-passage + +Lucene index of the MS MARCO V1 passage corpus. + +Note that there are three variants: + ++ `msmarco-v1-passage` (2.6G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v1-passage-slim` (627M uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v1-passage-full` (4.3G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/10/04 at Anserini commit [`252b5e`](https://github.com/castorini/anserini/commit/252b5e2087dd7b3b994d41a444d4ae0044519819) on `tuna` with the following commands: + +``` +nohup target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 9 \ + -input /tuna1/collections/msmarco/passage/ \ + -index indexes/lucene-index.msmarco-v1-passage.20221004.252b5e/ \ + -storeRaw -optimize >& logs/log.msmarco-v1-passage.20221004.252b5e & + +nohup target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 9 \ + -input /tuna1/collections/msmarco/passage/ \ + -index indexes/lucene-index.msmarco-v1-passage-slim.20221004.252b5e/ \ + -optimize >& logs/log.msmarco-v1-passage-slim.20221004.252b5e & + +nohup target/appassembler/bin/IndexCollection -collection JsonCollection \ + -generator DefaultLuceneDocumentGenerator -threads 9 \ + -input /tuna1/collections/msmarco/passage/ \ + -index indexes/lucene-index.msmarco-v1-passage-full.20221004.252b5e/ \ + -storePositions -storeDocvectors -storeRaw -optimize >& logs/log.msmarco-v1-passage-full.20221004.252b5e & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..405a8aedf99d5083b24755d54458482466419262 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v2-doc-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V2 document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a4f532dcacf819c565fdae2f5379637e7e541e03 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-doc-d2q-t5 + +Lucene index of the MS MARCO V2 document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /store/collections/msmarco/msmarco_v2_doc_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9a12701b0254659aeb4fc93da3e9b6fb58c3d1d3 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.README.md @@ -0,0 +1,26 @@ +# msmarco-v2-doc-d2q-t5 + +Lucene index of the MS MARCO V2 document corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v2-doc-d2q-t5` (9.0G uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v2-doc-d2q-t5-docvectors` (59G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-d2q-t5.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-doc-d2q-t5.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-d2q-t5-docvectors.20220808.4d6d2a/ \ + -storeDocvectors -optimize \ + >& logs/log.msmarco-v2-doc-d2q-t5-docvectors.20220808.4d6d2a.txt & + ``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-full.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-full.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..b5d513b58d95ef5981b3933183e0294838d1802e --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-full.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-doc-full + +Lucene index of the MS MARCO V2 document corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_doc/ \ + -index indexes/lucene-index.msmarco-v2-doc-full.20220111.06fb4f/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-doc` (73G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-slim` (8.2G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-full` (132G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..5813b9669b1b2b3dfd0cfa2e701a1b3f60e0aab1 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-v2-doc-seg-unicoil-noexp-0shot-b8 \ + -index indexes/lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-v2-doc-per-passage.unicoil-noexp-0shot.20211012.58d286.tar.gz MD5 checksum = 1980db886d969c3393e4da20190eaa8f diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9cab351b491ac339bed7677f9f47c07e0be02978 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v2-doc-segmented-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V2 segmented document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4bb89c4eaf41fd72e6066e9dedfc380ef8aa8fab --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-doc-segmented-d2q-t5 + +Lucene index of the MS MARCO V2 segmented document corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /store/collections/msmarco/msmarco_v2_doc_segmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..631e85c8242dafbaa0fbd8a22a6978e5dae3c4dc --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.README.md @@ -0,0 +1,26 @@ +# msmarco-v2-doc-segmented-d2q-t5 + +Lucene index of the MS MARCO V2 segmented document corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v2-doc-segmented-d2q-t5` (29G uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v2-doc-segmented-d2q-t5-docvectors` (130G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-doc-segmented-d2q-t5.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 24 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220808.4d6d2a/ \ + -storeDocvectors -optimize \ + >& logs/log.msmarco-v2-doc-segmented-d2q-t5-docvectors.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..ed75605287e1398147ed1b8d42b854caa10e3485 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-doc-segmented-full + +Lucene index of the MS MARCO V2 segmented document corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_doc_segmented/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-full.20220111.06fb4f/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-doc-segmented` (128G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-segmented-slim` (25G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-segmented-full` (217G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..0f7ea6da2cf22048d1069bc4ca1389a5b422e0ff --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-doc-segmented-slim + +Lucene index of the MS MARCO V2 segmented document corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_doc_segmented/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-slim.20220111.06fb4f/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-doc-segmented` (128G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-segmented-slim` (25G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-segmented-full` (217G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2.20220419.c47993.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2.20220419.c47993.README.md new file mode 100644 index 0000000000000000000000000000000000000000..04e16e185b0020c4eabef825e1148862db3bd0d1 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2.20220419.c47993.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-doc-segmented-unicoil-0shot-v2 + +Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL with title prepended. + +This index was generated on 2022/04/19 at Pyserini commit [`c47993`](https://github.com/castorini/pyserini/commit/c47993aa2bebb8ab0a418214cfd299c0d0351c81) on `orca` with the following command: + +``` +python -m pyserini.index.lucene \ + --collection JsonVectorCollection \ + --input embeddings_msmarco-v2-doc-segmented-unicoil-0shot-v2 \ + --index indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot-v2 \ + --generator DefaultLuceneDocumentGenerator \ + --threads 12 \ + --impact --pretokenized --optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080.README.md new file mode 100644 index 0000000000000000000000000000000000000000..89cee4cbb9dfbc875f6f3c2c45b91e2ce4d8640b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080.README.md @@ -0,0 +1,14 @@ +# msmarco-v2-doc-segmented-unicoil-0shot + +Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL. + +This index was generated on 2022/02/19 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/6a708047f71528f7d516c0dd45485204a36e6b1d) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco_v2_doc_segmented_unicoil_0shot \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220219.6a7080/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..09d20888e080e26390914aaf5a0e68887b03e8dc --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-doc-segmented-unicoil-0shot + +Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL with title prepended. + +This index was generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following command: + +```bahs +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented_unicoil_0shot_v2 \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize \ + >& logs/log.msmarco-v2-doc-segmented-unicoil-0shot.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2.20220419.c47993.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2.20220419.c47993.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e3f573d32dd2da65a5a242508224d683ec55d23b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2.20220419.c47993.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2 + +Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp) with title prepended. + +This index was generated on 2022/04/19 at Pyserini commit [`c47993`](https://github.com/castorini/pyserini/commit/c47993aa2bebb8ab0a418214cfd299c0d0351c81) on `orca` with the following command: + +``` +python -m pyserini.index.lucene \ + --collection JsonVectorCollection \ + --input embeddings_msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2 \ + --index indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot-v2 \ + --generator DefaultLuceneDocumentGenerator \ + --threads 12 \ + --impact --pretokenized --optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6253e9ef7149a992183319541be25414ff9773d7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080.README.md @@ -0,0 +1,14 @@ +# msmarco-v2-doc-segmented-unicoil-noexp-0shot + +Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp). + +This index was generated on 2022/02/19 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/6a708047f71528f7d516c0dd45485204a36e6b1d) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco_v2_doc_segmented_unicoil_noexp_0shot \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220219.6a7080/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..2727c93143c25c327efb3bacb9ee4caf004bb249 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-doc-segmented-unicoil-noexp-0shot + +Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp) with title prepended. + +This index was generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following command: + +```bash +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented_unicoil_noexp_0shot_v2 \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize \ + >& logs/log.msmarco-v2-doc-segmented-unicoil-noexp-0shot.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..04835ddbbe6e2b9d0f9c0db6ca312a3c9bec434e --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-doc-segmented + +Lucene index of the MS MARCO V2 segmented document corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_doc_segmented/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented.20220111.06fb4f/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-doc-segmented` (128G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-segmented-slim` (25G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-segmented-full` (217G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..c64d860b9985c8073afc34258e313cf51ce1ad94 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a.README.md @@ -0,0 +1,34 @@ +# msmarco-v2-doc-segmented + +Lucene index of the MS MARCO V2 segmented document corpus. + +Note that there are three variants of this index: + ++ `msmarco-v2-doc-segmented` (132G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-segmented-slim` (26G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-segmented-full` (233G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented.20220808.4d6d2a/ \ + -storeRaw -optimize \ + >& logs/log.msmarco-v2-doc-segmented.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-slim.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-doc-segmented-slim.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc_segmented/ \ + -index indexes/lucene-index.msmarco-v2-doc-segmented-full.20220808.4d6d2a/ \ + -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.msmarco-v2-doc-segmented-full.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-slim.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-slim.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a99f257ebf45f311c2df6a7358674a1c4104f180 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc-slim.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-doc-slim + +Lucene index of the MS MARCO V2 document corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_doc/ \ + -index indexes/lucene-index.msmarco-v2-doc-slim.20220111.06fb4f/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-doc` (73G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-slim` (8.2G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-full` (132G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4e9164f02d5386adeffe75b7a42bfb09d10069a7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-doc + +Lucene index of the MS MARCO V2 document corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_doc/ \ + -index indexes/lucene-index.msmarco-v2-doc.20220111.06fb4f/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-doc` (73G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-slim` (8.2G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-full` (132G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..77c05dcafb1799f362d9753b9ce9d642ee70f19d --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-doc.20220808.4d6d2a.README.md @@ -0,0 +1,34 @@ +# msmarco-v2-doc + +Lucene index of the MS MARCO V2 document corpus. + +Note that there are three variants of this index: + ++ `msmarco-v2-doc` (73G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-doc-slim` (8.0G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-doc-full` (132G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc/ \ + -index indexes/lucene-index.msmarco-v2-doc.20220808.4d6d2a/ \ + -storeRaw -optimize \ + >& logs/log.msmarco-v2-doc.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc/ \ + -index indexes/lucene-index.msmarco-v2-doc-slim.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-doc-slim.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2DocCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_doc/ \ + -index indexes/lucene-index.msmarco-v2-doc-full.20220808.4d6d2a/ \ + -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.msmarco-v2-doc-full.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..19538faf1e93bc36b0d066bbc4be3502707efac7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v2-passage-augmented-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V2 augmented passage corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_augmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..27fe35125aa6ecf3bf206f8b5ffcfd9164c9adbd --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-passage-augmented-d2q-t5 + +Lucene index of the MS MARCO V2 augmented passage corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage_augmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..782e3fe140660d83ae5ed7e7b084d48c83db8b20 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.README.md @@ -0,0 +1,26 @@ +# msmarco-v2-passage-augmented-d2q-t5 + +Lucene index of the MS MARCO V2 augmented passage corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v2-passage-augmented-d2q-t5` (26G uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v2-passage-augmented-d2q-t5-docvectors` (111G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_augmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-passage-augmented-d2q-t5.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_augmented_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220808.4d6d2a/ \ + -storeDocvectors -optimize \ + >& logs/log.msmarco-v2-passage-augmented-d2q-t5-docvectors.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..ee627583a0691de7dd70ebeac6d0488d1b7e36cc --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-passage-augmented-full + +Lucene index of the MS MARCO V2 augmented passage corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage_augmented/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-full.20220111.06fb4f/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-passage-augmented` (82G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-augmented-slim` (18G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-augmented-full` (142G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..61e5d0090e304f689c7418c30f6407aa033077cf --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-passage-augmented-slim + +Lucene index of the MS MARCO V2 augmented passage corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage_augmented/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-slim.20220111.06fb4f/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-passage-augmented` (82G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-augmented-slim` (18G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-augmented-full` (142G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..3aff53355dc5a138a0012515d3bc516f398ff5af --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-passage-augmented + +Lucene index of the MS MARCO V2 augmented passage corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage_augmented/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented.20220111.06fb4f/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-passage-augmented` (82G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-augmented-slim` (18G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-augmented-full` (142G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6be4bee58b5d5d4ae0a459d634584d035c2ed94b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a.README.md @@ -0,0 +1,34 @@ +# msmarco-v2-passage-augmented + +Lucene index of the MS MARCO V2 augmented passage corpus. + +Note that there are three variants of this index: + ++ `msmarco-v2-passage-augmented` (93G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-augmented-slim` (20G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-augmented-full` (157G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_augmented/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented.20220808.4d6d2a/ \ + -storeRaw -optimize \ + >& logs/log.msmarco-v2-passage-augmented.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_augmented/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-slim.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-passage-augmented-slim.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_augmented/ \ + -index indexes/lucene-index.msmarco-v2-passage-augmented-full.20220808.4d6d2a/ \ + -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.msmarco-v2-passage-augmented-full.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997.README.md new file mode 100644 index 0000000000000000000000000000000000000000..59fd7e47baf841cf1dc6ccbd5eb93634630c8740 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997.README.md @@ -0,0 +1,16 @@ +# msmarco-v2-passage-d2q-t5-docvectors + +Lucene index (+docvectors) of the MS MARCO V2 passage corpus, with doc2query-T5 expansions. + +This index was generated on 2022/05/25 at Anserini commit [`30c997`](https://github.com/castorini/anserini/commit/30c9974f495a06c94d576d0e9c2c5861515e0e19) on `damiano` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220525.30c997/ \ + -storeDocvectors -optimize +``` + +Note that this index stores term frequencies along with the docvectors: bag-of-words queries and relevance feedback are supported, but not phrase queries. +The raw text is not stored. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315.README.md new file mode 100644 index 0000000000000000000000000000000000000000..37f9b289a37cbc346067860dcee02a3fe919e2c5 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-passage-d2q-t5 + +Lucene index of the MS MARCO V2 passage corpus, with doc2query-T5 expansions. + +This index was generated on 2022/02/01 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/9ea3159adeeffd84e10e197af4c36febb5b74c7b) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-d2q-t5.20220201.9ea315/ \ + -optimize +``` + +Note that this index stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. In addition, there is no way to fetch the raw text. diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..23c350f0b81ca6776ce77551c437b6bc40a94c08 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.README.md @@ -0,0 +1,26 @@ +# msmarco-v2-passage-d2q-t5 + +Lucene index of the MS MARCO V2 passage corpus, with doc2query-T5 expansions. + +Note that there are two variants: + ++ `msmarco-v2-passage-d2q-t5` (19G uncompressed): stores term frequencies only, which supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text. ++ `msmarco-v2-passage-d2q-t5-docvectors` (71G uncompressed): stores term frequencies and the docvectors, which enables pseudo-relevance feedabck. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-d2q-t5.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-passage-d2q-t5.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_d2q-t5/ \ + -index indexes/lucene-index.msmarco-v2-passage-d2q-t5-docvectors.20220808.4d6d2a/ \ + -storeDocvectors -optimize \ + >& logs/log.msmarco-v2-passage-d2q-t5-docvectors.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-full.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-full.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8fd87fdff81a9f0dc3326e890790f514906092c4 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-full.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-passage-full + +Lucene index of the MS MARCO V2 passage corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage/ \ + -index indexes/lucene-index.msmarco-v2-passage-full.20220111.06fb4f/ \ + -storePositions -storeDocvectors -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-passage` (45G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-slim` (11G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-full` (69G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "full" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-slim.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-slim.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..e3f5e1b578987061a5547305f4aae5f2ac34ef83 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-slim.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-passage-slim + +Lucene index of the MS MARCO V2 passage corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage/ \ + -index indexes/lucene-index.msmarco-v2-passage-slim.20220111.06fb4f/ \ + -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-passage` (45G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-slim` (11G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-full` (69G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "slim" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080.README.md new file mode 100644 index 0000000000000000000000000000000000000000..af3c94f3796f4c7c9dd34bb26ec39db9323caf7c --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080.README.md @@ -0,0 +1,14 @@ +# msmarco-v2-passage-unicoil-0shot + +Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL. + +This index was generated on 2022/02/19 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/6a708047f71528f7d516c0dd45485204a36e6b1d) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco_v2_passage_unicoil_0shot \ + -index indexes/lucene-index.msmarco-v2-passage-unicoil-0shot.20220219.6a7080/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..6c837f8a06cf7f9f431c0d08b98d8752f8551ed4 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-passage-unicoil-0shot + +Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL. + +This index was generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following command: + +```bash +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_unicoil_0shot \ + -index indexes/lucene-index.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize \ + >& logs/log.msmarco-v2-passage-unicoil-0shot.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080.README.md new file mode 100644 index 0000000000000000000000000000000000000000..a7959c822e1b3db3f60c818c54fc2f518fa598fa --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080.README.md @@ -0,0 +1,14 @@ +# msmarco-v2-passage-unicoil-noexp-0shot + +Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL (noexp). + +This index was generated on 2022/02/19 at Anserini commit [`9ea315`](https://github.com/castorini/anserini/commit/6a708047f71528f7d516c0dd45485204a36e6b1d) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /store/collections/msmarco/msmarco_v2_passage_unicoil_noexp_0shot \ + -index indexes/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220219.6a7080/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..97dd1db97231532bcb9aff56ede3f73789bd381b --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.README.md @@ -0,0 +1,15 @@ +# msmarco-v2-passage-unicoil-noexp-0shot + +Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL (noexp). + +This index was generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following command: + +```bash +nohup target/appassembler/bin/IndexCollection \ + -collection JsonVectorCollection \ + -input /scratch2/collections/msmarco/msmarco_v2_passage_unicoil_noexp_0shot \ + -index indexes/lucene-index.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a/ \ + -generator DefaultLuceneDocumentGenerator \ + -threads 18 -impact -pretokenized -optimize \ + >& logs/log.msmarco-v2-passage-unicoil-noexp-0shot.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.20220111.06fb4f.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.20220111.06fb4f.README.md new file mode 100644 index 0000000000000000000000000000000000000000..9cbb2e23e868f75a140cb60dda4cf12fdc9236d8 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.20220111.06fb4f.README.md @@ -0,0 +1,21 @@ +# msmarco-v2-passage + +Lucene index of the MS MARCO V2 passage corpus. + +This index was generated on 2022/01/11 at Anserini commit [`06fb4f`](https://github.com/castorini/anserini/commit/06fb4f9947ff2167c276d8893287453af7680786) on `orca` with the following command: + +``` +target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /store/collections/msmarco/msmarco_v2_passage/ \ + -index indexes/lucene-index.msmarco-v2-passage.20220111.06fb4f/ \ + -storeRaw -optimize +``` + +Note that there are three variants of this index: + ++ `msmarco-v2-passage` (45G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-slim` (11G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-full` (69G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +This is the "default" version. \ No newline at end of file diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.20220808.4d6d2a.README.md b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.20220808.4d6d2a.README.md new file mode 100644 index 0000000000000000000000000000000000000000..4ea429f61c9a94bd5cd7cbeb325455e7b9ffc214 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.20220808.4d6d2a.README.md @@ -0,0 +1,34 @@ +# msmarco-v2-passage + +Lucene index of the MS MARCO V2 passage corpus. + +Note that there are three variants of this index: + ++ `msmarco-v2-passage` (48G uncompressed): the "default" version, which stores term frequencies and the raw text. This supports bag-of-words queries, but no phrase queries and no relevance feedback. ++ `msmarco-v2-passage-slim` (13G uncompressed): the "slim" version, which stores term frequencies only. This supports bag-of-words queries, but no phrase queries and no relevance feedback. There is no way to fetch the raw text from this index. ++ `msmarco-v2-passage-full` (72G uncompressed): the "full" version, which stores term frequencies, term positions, document vectors, and the raw text. This supports bag-of-words queries, phrase queries, and relevance feedback. + +These indexes were generated on 2022/08/08 at Anserini commit [`fbe35e`](https://github.com/castorini/anserini/commit/4d6d2a5a367424131331df2a8e9e00e6a9c68856) on `damiano` with the following commands: + +```bash +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage/ \ + -index indexes/lucene-index.msmarco-v2-passage.20220808.4d6d2a/ \ + -storeRaw -optimize \ + >& logs/log.msmarco-v2-passage.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage/ \ + -index indexes/lucene-index.msmarco-v2-passage-slim.20220808.4d6d2a/ \ + -optimize \ + >& logs/log.msmarco-v2-passage-slim.20220808.4d6d2a.txt & + +nohup target/appassembler/bin/IndexCollection -collection MsMarcoV2PassageCollection \ + -generator DefaultLuceneDocumentGenerator -threads 18 \ + -input /scratch2/collections/msmarco/msmarco_v2_passage/ \ + -index indexes/lucene-index.msmarco-v2-passage-full.20220808.4d6d2a/ \ + -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.msmarco-v2-passage-full.20220808.4d6d2a.txt & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..fea735fec452f7c8f1edea2ebb9ce79b5699aaa7 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-v2-passage-unicoil-noexp-0shot-b8 \ + -index indexes/lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-v2-passage.unicoil-noexp-0shot.20211012.58d286.tar.gz MD5 checksum = 8886a8d9599838bc6d8d61464da61086 diff --git a/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.readme.txt b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..5e772713ce6ff6135182ca0984bf05b7ef67bb53 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.readme.txt @@ -0,0 +1,12 @@ +This index was generated on 2021/10/12 at commit 58d286c3f9fe845e261c271f2a0f514462844d97 (2021/10/05) +with the following command: + +python -m pyserini.index -collection JsonVectorCollection \ + -input collections/msmarco-v2-passage-unicoil-tilde-expansion-b8/ \ + -index indexes/lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286 \ + -generator DefaultLuceneDocumentGenerator -impact -pretokenized \ + -threads 36 -optimize + +This minimal index does not store any "extras" (positions, document vectors, raw documents, etc.). + +lucene-index.msmarco-v2-passage.unicoil-tilde.20211012.58d286.tar.gz MD5 checksum = 562f9534eefe04ab8c07beb304074d41 diff --git a/pyserini/resources/index-metadata/lucene-index.neuclir22-en.20221025.c4a8d0.README.md b/pyserini/resources/index-metadata/lucene-index.neuclir22-en.20221025.c4a8d0.README.md new file mode 100644 index 0000000000000000000000000000000000000000..1936a3fc7cb1fbe552525e0d4a4ff572e801bf54 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.neuclir22-en.20221025.c4a8d0.README.md @@ -0,0 +1,34 @@ +# NeuCLIR 2022 Indexes (English) + +Lucene indexes for the NeuCLIR 2022 corpora (official English translations from Persian, Russian, and Chinese). + +These indexes was generated on 2022/10/25 at Anserini commit [`c4a8d0`](https://github.com/castorini/anserini/commit/c4a8d00e3c218ed89dca8a4e51c3b2c7d577db00) on `tuna` with the following commands: + +```bash +# NeuCLIR22 fa -> en +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/neuclir22-fa-en \ + -index indexes/lucene-index.neuclir22-fa-en.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.neuclir22-fa-en.20221025.c4a8d0 & + +# NeuCLIR22 ru -> en +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/neuclir22-ru-en \ + -index indexes/lucene-index.neuclir22-ru-en.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.neuclir22-ru-en.20221025.c4a8d0 & + +# NeuCLIR22 zh -> en +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/neuclir22-zh-en \ + -index indexes/lucene-index.neuclir22-zh-en.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -optimize \ + >& logs/log.neuclir22-zh-en.20221025.c4a8d0 & +``` diff --git a/pyserini/resources/index-metadata/lucene-index.neuclir22-fa.20220719.71c120.README.md b/pyserini/resources/index-metadata/lucene-index.neuclir22-fa.20220719.71c120.README.md new file mode 100644 index 0000000000000000000000000000000000000000..8811a43297f7a06ddebb610d2463ae60f265b93a --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.neuclir22-fa.20220719.71c120.README.md @@ -0,0 +1,14 @@ +# neuclir22-fa + +Lucene index for Neuclir22 (Persian). + +This index was generated on 2022/07/19 at Anserini commit [`71c120`](https://github.com/castorini/anserini/commit/71c1200d36ce17615cf4da510ac4ef2d2f0121f6) on `orca` with the following command: + + +``` +target/appassembler/bin/IndexCollection -collection NeuClirCollection \ + -generator DefaultLuceneDocumentGenerator -threads 8 \ + -input /store/collections/multilingual/neuclir22-fa \ + -index indexes/lucene-index.neuclir22-fa.20220719.71c120 \ + -storePositions -storeDocvectors -storeRaw -optimize -language fa +``` diff --git a/pyserini/resources/index-metadata/lucene-index.neuclir22-ru.20220719.71c120.README.md b/pyserini/resources/index-metadata/lucene-index.neuclir22-ru.20220719.71c120.README.md new file mode 100644 index 0000000000000000000000000000000000000000..81445ff3336a7629ce702e5cda912c19031f5eb5 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.neuclir22-ru.20220719.71c120.README.md @@ -0,0 +1,14 @@ +# neuclir22-ru + +Lucene index for Neuclir22 (Russian). + +This index was generated on 2022/07/19 at Anserini commit [`71c120`](https://github.com/castorini/anserini/commit/71c1200d36ce17615cf4da510ac4ef2d2f0121f6) on `orca` with the following command: + + +``` +target/appassembler/bin/IndexCollection -collection NeuClirCollection \ + -generator DefaultLuceneDocumentGenerator -threads 8 \ + -input /store/collections/multilingual/neuclir22-ru \ + -index indexes/lucene-index.neuclir22-ru.20220719.71c120 \ + -storePositions -storeDocvectors -storeRaw -optimize -language ru +``` diff --git a/pyserini/resources/index-metadata/lucene-index.neuclir22-zh.20220719.71c120.README.md b/pyserini/resources/index-metadata/lucene-index.neuclir22-zh.20220719.71c120.README.md new file mode 100644 index 0000000000000000000000000000000000000000..908ec4242bc70a2933e0aba9dceb85514abc0520 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.neuclir22-zh.20220719.71c120.README.md @@ -0,0 +1,14 @@ +# neuclir22-zh + +Lucene index for Neuclir22 (Chinese). + +This index was generated on 2022/07/19 at Anserini commit [`71c120`](https://github.com/castorini/anserini/commit/71c1200d36ce17615cf4da510ac4ef2d2f0121f6) on `orca` with the following command: + + +``` +target/appassembler/bin/IndexCollection -collection NeuClirCollection \ + -generator DefaultLuceneDocumentGenerator -threads 8 \ + -input /store/collections/multilingual/neuclir22-zh \ + -index indexes/lucene-index.neuclir22-zh.20220719.71c120 \ + -storePositions -storeDocvectors -storeRaw -optimize -language zh +``` diff --git a/pyserini/resources/index-metadata/lucene-index.neuclir22.20221025.c4a8d0.README.md b/pyserini/resources/index-metadata/lucene-index.neuclir22.20221025.c4a8d0.README.md new file mode 100644 index 0000000000000000000000000000000000000000..892efb9d39ea3e48b10876170f355c87cad30423 --- /dev/null +++ b/pyserini/resources/index-metadata/lucene-index.neuclir22.20221025.c4a8d0.README.md @@ -0,0 +1,34 @@ +# NeuCLIR 2022 Indexes + +Lucene indexes for the NeuCLIR 2022 corpora (Persian, Russian, and Chinese). + +These indexes was generated on 2022/10/25 at Anserini commit [`c4a8d0`](https://github.com/castorini/anserini/commit/c4a8d00e3c218ed89dca8a4e51c3b2c7d577db00) on `tuna` with the following commands: + +```bash +# NeuCLIR22 fa +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/neuclir22-fa \ + -index indexes/lucene-index.neuclir22-fa.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -language fa -optimize \ + >& logs/log.neuclir22-fa.20221025.c4a8d0 & + +# NeuCLIR22 ru +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/neuclir22-ru \ + -index indexes/lucene-index.neuclir22-ru.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -language ru -optimize \ + >& logs/log.neuclir22-ru.20221025.c4a8d0 & + +# NeuCLIR22 zh +nohup target/appassembler/bin/IndexCollection \ + -collection NeuClirCollection \ + -input /tuna1/collections/multilingual/neuclir22-zh \ + -index indexes/lucene-index.neuclir22-zh.20221025.c4a8d0 \ + -generator DefaultLuceneDocumentGenerator \ + -threads 8 -storePositions -storeDocvectors -storeRaw -language zh -optimize \ + >& logs/log.neuclir22-zh.20221025.c4a8d0 & +``` diff --git a/pyserini/resources/jars/.placeholder b/pyserini/resources/jars/.placeholder new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/pyserini/resources/jars/anserini-0.21.1-SNAPSHOT-fatjar.jar b/pyserini/resources/jars/anserini-0.21.1-SNAPSHOT-fatjar.jar new file mode 100644 index 0000000000000000000000000000000000000000..af18cc2127da4ce5fb9f060d2f5e58df6a28c72a --- /dev/null +++ b/pyserini/resources/jars/anserini-0.21.1-SNAPSHOT-fatjar.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab38c20fbaece91df0a0a504badf1f13b998dd89928a43326bbebe16e552ec8 +size 145472474 diff --git a/pyserini/resources/miracl.yaml b/pyserini/resources/miracl.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a076862ce0a00d31264b748a0cd1d34b722bb6f8 --- /dev/null +++ b/pyserini/resources/miracl.yaml @@ -0,0 +1,840 @@ +conditions: + # BM25 + - name: bm25.ar + eval_key: miracl-v1.0-ar + command: python -m pyserini.search.lucene --language ar --topics miracl-v1.0-ar-${split} --index miracl-v1.0-ar --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4434 + R@100: 0.8562 + - split: dev + scores: + - nDCG@10: 0.4809 + R@100: 0.8885 + - name: bm25.bn + eval_key: miracl-v1.0-bn + command: python -m pyserini.search.lucene --language bn --topics miracl-v1.0-bn-${split} --index miracl-v1.0-bn --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5122 + R@100: 0.8934 + - split: dev + scores: + - nDCG@10: 0.5079 + R@100: 0.9088 + - name: bm25.en + eval_key: miracl-v1.0-en + command: python -m pyserini.search.lucene --language en --topics miracl-v1.0-en-${split} --index miracl-v1.0-en --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3415 + R@100: 0.7928 + - split: dev + scores: + - nDCG@10: 0.3506 + R@100: 0.8190 + - name: bm25.es + eval_key: miracl-v1.0-es + command: python -m pyserini.search.lucene --language es --topics miracl-v1.0-es-${split} --index miracl-v1.0-es --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3030 + R@100: 0.7020 + - split: dev + scores: + - nDCG@10: 0.3193 + R@100: 0.7018 + - name: bm25.fa + eval_key: miracl-v1.0-fa + command: python -m pyserini.search.lucene --language fa --topics miracl-v1.0-fa-${split} --index miracl-v1.0-fa --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3270 + R@100: 0.7139 + - split: dev + scores: + - nDCG@10: 0.3334 + R@100: 0.7306 + - name: bm25.fi + eval_key: miracl-v1.0-fi + command: python -m pyserini.search.lucene --language fi --topics miracl-v1.0-fi-${split} --index miracl-v1.0-fi --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5106 + R@100: 0.8471 + - split: dev + scores: + - nDCG@10: 0.5513 + R@100: 0.8910 + - name: bm25.fr + eval_key: miracl-v1.0-fr + command: python -m pyserini.search.lucene --language fr --topics miracl-v1.0-fr-${split} --index miracl-v1.0-fr --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.2152 + R@100: 0.6601 + - split: dev + scores: + - nDCG@10: 0.1832 + R@100: 0.6528 + - name: bm25.hi + eval_key: miracl-v1.0-hi + command: python -m pyserini.search.lucene --language hi --topics miracl-v1.0-hi-${split} --index miracl-v1.0-hi --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4745 + R@100: 0.9016 + - split: dev + scores: + - nDCG@10: 0.4578 + R@100: 0.8679 + - name: bm25.id + eval_key: miracl-v1.0-id + command: python -m pyserini.search.lucene --language id --topics miracl-v1.0-id-${split} --index miracl-v1.0-id --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4844 + R@100: 0.9234 + - split: dev + scores: + - nDCG@10: 0.4486 + R@100: 0.9041 + - name: bm25.ja + eval_key: miracl-v1.0-ja + command: python -m pyserini.search.lucene --language ja --topics miracl-v1.0-ja-${split} --index miracl-v1.0-ja --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3796 + R@100: 0.8225 + - split: dev + scores: + - nDCG@10: 0.3689 + R@100: 0.8048 + - name: bm25.ko + eval_key: miracl-v1.0-ko + command: python -m pyserini.search.lucene --language ko --topics miracl-v1.0-ko-${split} --index miracl-v1.0-ko --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4279 + R@100: 0.7572 + - split: dev + scores: + - nDCG@10: 0.4190 + R@100: 0.7831 + - name: bm25.ru + eval_key: miracl-v1.0-ru + command: python -m pyserini.search.lucene --language ru --topics miracl-v1.0-ru-${split} --index miracl-v1.0-ru --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3153 + R@100: 0.6464 + - split: dev + scores: + - nDCG@10: 0.3342 + R@100: 0.6614 + - name: bm25.sw + eval_key: miracl-v1.0-sw + command: python -m pyserini.search.lucene --language sw --topics miracl-v1.0-sw-${split} --index miracl-v1.0-sw --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3356 + R@100: 0.6499 + - split: dev + scores: + - nDCG@10: 0.3826 + R@100: 0.7008 + - name: bm25.te + eval_key: miracl-v1.0-te + command: python -m pyserini.search.lucene --language te --topics miracl-v1.0-te-${split} --index miracl-v1.0-te --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4814 + R@100: 0.8077 + - split: dev + scores: + - nDCG@10: 0.4942 + R@100: 0.8307 + - name: bm25.th + eval_key: miracl-v1.0-th + command: python -m pyserini.search.lucene --language th --topics miracl-v1.0-th-${split} --index miracl-v1.0-th --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4629 + R@100: 0.8768 + - split: dev + scores: + - nDCG@10: 0.4838 + R@100: 0.8874 + - name: bm25.zh + eval_key: miracl-v1.0-zh + command: python -m pyserini.search.lucene --language zh --topics miracl-v1.0-zh-${split} --index miracl-v1.0-zh --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.2018 + R@100: 0.5541 + - split: dev + scores: + - nDCG@10: 0.1801 + R@100: 0.5599 + - name: bm25.de + eval_key: miracl-v1.0-de + command: python -m pyserini.search.lucene --language de --topics miracl-v1.0-de-${split} --index miracl-v1.0-de --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.2262 + R@100: 0.5724 + - name: bm25.yo + eval_key: miracl-v1.0-yo + command: python -m pyserini.search.lucene --pretokenized --topics miracl-v1.0-yo-${split} --index miracl-v1.0-yo --output $output --batch 128 --threads 16 --bm25 --hits 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.4059 + R@100: 0.7325 + + # mdpr-tied-pft-msmarco + - name: mdpr-tied-pft-msmarco.ar + eval_key: miracl-v1.0-ar + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-ar-${split} --index miracl-v1.0-ar-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4653 + R@100: 0.8293 + - split: dev + scores: + - nDCG@10: 0.4993 + R@100: 0.8407 + - name: mdpr-tied-pft-msmarco.bn + eval_key: miracl-v1.0-bn + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-bn-${split} --index miracl-v1.0-bn-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4362 + R@100: 0.8045 + - split: dev + scores: + - nDCG@10: 0.4427 + R@100: 0.8193 + - name: mdpr-tied-pft-msmarco.en + eval_key: miracl-v1.0-en + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-en-${split} --index miracl-v1.0-en-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3986 + R@100: 0.7779 + - split: dev + scores: + - nDCG@10: 0.3938 + R@100: 0.7675 + - name: mdpr-tied-pft-msmarco.es + eval_key: miracl-v1.0-es + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-es-${split} --index miracl-v1.0-es-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4637 + R@100: 0.8654 + - split: dev + scores: + - nDCG@10: 0.4777 + R@100: 0.8643 + - name: mdpr-tied-pft-msmarco.fa + eval_key: miracl-v1.0-fa + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-fa-${split} --index miracl-v1.0-fa-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4882 + R@100: 0.9092 + - split: dev + scores: + - nDCG@10: 0.4800 + R@100: 0.8980 + - name: mdpr-tied-pft-msmarco.fi + eval_key: miracl-v1.0-fi + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-fi-${split} --index miracl-v1.0-fi-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4426 + R@100: 0.7611 + - split: dev + scores: + - nDCG@10: 0.4721 + R@100: 0.7877 + - name: mdpr-tied-pft-msmarco.fr + eval_key: miracl-v1.0-fr + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-fr-${split} --index miracl-v1.0-fr-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4372 + R@100: 0.9268 + - split: dev + scores: + - nDCG@10: 0.4352 + R@100: 0.9154 + - name: mdpr-tied-pft-msmarco.hi + eval_key: miracl-v1.0-hi + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-hi-${split} --index miracl-v1.0-hi-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3685 + R@100: 0.7780 + - split: dev + scores: + - nDCG@10: 0.3830 + R@100: 0.7755 + - name: mdpr-tied-pft-msmarco.id + eval_key: miracl-v1.0-id + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-id-${split} --index miracl-v1.0-id-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.2549 + R@100: 0.5610 + - split: dev + scores: + - nDCG@10: 0.2719 + R@100: 0.5734 + - name: mdpr-tied-pft-msmarco.ja + eval_key: miracl-v1.0-ja + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-ja-${split} --index miracl-v1.0-ja-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4342 + R@100: 0.8211 + - split: dev + scores: + - nDCG@10: 0.4390 + R@100: 0.8254 + - name: mdpr-tied-pft-msmarco.ko + eval_key: miracl-v1.0-ko + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-ko-${split} --index miracl-v1.0-ko-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4147 + R@100: 0.7699 + - split: dev + scores: + - nDCG@10: 0.4189 + R@100: 0.7369 + - name: mdpr-tied-pft-msmarco.ru + eval_key: miracl-v1.0-ru + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-ru-${split} --index miracl-v1.0-ru-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3812 + R@100: 0.7854 + - split: dev + scores: + - nDCG@10: 0.4073 + R@100: 0.7972 + - name: mdpr-tied-pft-msmarco.sw + eval_key: miracl-v1.0-sw + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-sw-${split} --index miracl-v1.0-sw-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.2973 + R@100: 0.5761 + - split: dev + scores: + - nDCG@10: 0.2990 + R@100: 0.6158 + - name: mdpr-tied-pft-msmarco.te + eval_key: miracl-v1.0-te + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-te-${split} --index miracl-v1.0-te-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3723 + R@100: 0.7698 + - split: dev + scores: + - nDCG@10: 0.3557 + R@100: 0.7619 + - name: mdpr-tied-pft-msmarco.th + eval_key: miracl-v1.0-th + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-th-${split} --index miracl-v1.0-th-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3451 + R@100: 0.6728 + - split: dev + scores: + - nDCG@10: 0.3578 + R@100: 0.6783 + - name: mdpr-tied-pft-msmarco.zh + eval_key: miracl-v1.0-zh + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-zh-${split} --index miracl-v1.0-zh-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5040 + R@100: 0.9355 + - split: dev + scores: + - nDCG@10: 0.5116 + R@100: 0.9436 + - name: mdpr-tied-pft-msmarco.de + eval_key: miracl-v1.0-de + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-de-${split} --index miracl-v1.0-de-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.4895 + R@100: 0.8983 + - name: mdpr-tied-pft-msmarco.yo + eval_key: miracl-v1.0-yo + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics miracl-v1.0-yo-${split} --index miracl-v1.0-yo-mdpr-tied-pft-msmarco --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.4439 + R@100: 0.8403 + + # mdpr-tied-pft-msmarco-ft-all + - name: mdpr-tied-pft-msmarco-ft-all.ar + eval_key: miracl-v1.0-ar + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-ar-${split} --index miracl-v1.0-ar-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6954 + R@100: 0.8542 + - split: dev + scores: + - nDCG@10: 0.5782 + R@100: 0.7953 + - name: mdpr-tied-pft-msmarco-ft-all.bn + eval_key: miracl-v1.0-bn + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-bn-${split} --index miracl-v1.0-bn-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6823 + R@100: 0.8646 + - split: dev + scores: + - nDCG@10: 0.5804 + R@100: 0.8480 + - name: mdpr-tied-pft-msmarco-ft-all.en + eval_key: miracl-v1.0-en + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-en-${split} --index miracl-v1.0-en-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3491 + R@100: 0.5678 + - split: dev + scores: + - nDCG@10: 0.2813 + R@100: 0.5083 + - name: mdpr-tied-pft-msmarco-ft-all.es + eval_key: miracl-v1.0-es + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-es-${split} --index miracl-v1.0-es-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.2488 + R@100: 0.4799 + - split: dev + scores: + - nDCG@10: 0.2509 + R@100: 0.4706 + - name: mdpr-tied-pft-msmarco-ft-all.fa + eval_key: miracl-v1.0-fa + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-fa-${split} --index miracl-v1.0-fa-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3809 + R@100: 0.6899 + - split: dev + scores: + - nDCG@10: 0.3836 + R@100: 0.6863 + - name: mdpr-tied-pft-msmarco-ft-all.fi + eval_key: miracl-v1.0-fi + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-fi-${split} --index miracl-v1.0-fi-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.7738 + R@100: 0.9081 + - split: dev + scores: + - nDCG@10: 0.5694 + R@100: 0.7984 + - name: mdpr-tied-pft-msmarco-ft-all.fr + eval_key: miracl-v1.0-fr + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-fr-${split} --index miracl-v1.0-fr-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.2989 + R@100: 0.6197 + - split: dev + scores: + - nDCG@10: 0.3010 + R@100: 0.6005 + - name: mdpr-tied-pft-msmarco-ft-all.hi + eval_key: miracl-v1.0-hi + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-hi-${split} --index miracl-v1.0-hi-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3336 + R@100: 0.6388 + - split: dev + scores: + - nDCG@10: 0.3286 + R@100: 0.6371 + - name: mdpr-tied-pft-msmarco-ft-all.id + eval_key: miracl-v1.0-id + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-id-${split} --index miracl-v1.0-id-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3321 + R@100: 0.5492 + - split: dev + scores: + - nDCG@10: 0.3462 + R@100: 0.5841 + - name: mdpr-tied-pft-msmarco-ft-all.ja + eval_key: miracl-v1.0-ja + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-ja-${split} --index miracl-v1.0-ja-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6378 + R@100: 0.7950 + - split: dev + scores: + - nDCG@10: 0.4999 + R@100: 0.7451 + - name: mdpr-tied-pft-msmarco-ft-all.ko + eval_key: miracl-v1.0-ko + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-ko-${split} --index miracl-v1.0-ko-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5795 + R@100: 0.7850 + - split: dev + scores: + - nDCG@10: 0.4864 + R@100: 0.7183 + - name: mdpr-tied-pft-msmarco-ft-all.ru + eval_key: miracl-v1.0-ru + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-ru-${split} --index miracl-v1.0-ru-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6011 + R@100: 0.8188 + - split: dev + scores: + - nDCG@10: 0.3933 + R@100: 0.6707 + - name: mdpr-tied-pft-msmarco-ft-all.sw + eval_key: miracl-v1.0-sw + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-sw-${split} --index miracl-v1.0-sw-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.8882 + R@100: 0.9710 + - split: dev + scores: + - nDCG@10: 0.6575 + R@100: 0.8883 + - name: mdpr-tied-pft-msmarco-ft-all.te + eval_key: miracl-v1.0-te + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-te-${split} --index miracl-v1.0-te-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.8757 + R@100: 0.9725 + - split: dev + scores: + - nDCG@10: 0.7783 + R@100: 0.9513 + - name: mdpr-tied-pft-msmarco-ft-all.th + eval_key: miracl-v1.0-th + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-th-${split} --index miracl-v1.0-th-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.7761 + R@100: 0.9241 + - split: dev + scores: + - nDCG@10: 0.5975 + R@100: 0.8360 + - name: mdpr-tied-pft-msmarco-ft-all.zh + eval_key: miracl-v1.0-zh + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-zh-${split} --index miracl-v1.0-zh-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: train + scores: + - nDCG@10: 0.3446 + R@100: 0.6608 + - split: dev + scores: + - nDCG@10: 0.3575 + R@100: 0.6725 + - name: mdpr-tied-pft-msmarco-ft-all.de + eval_key: miracl-v1.0-de + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-de-${split} --index miracl-v1.0-de-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.3219 + R@100: 0.5990 + - name: mdpr-tied-pft-msmarco-ft-all.yo + eval_key: miracl-v1.0-yo + command: python -m pyserini.search.faiss --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics miracl-v1.0-yo-${split} --index miracl-v1.0-yo-mdpr-tied-pft-msmarco-ft-all --output $output --batch 128 --threads 16 --hits 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.5983 + R@100: 0.8908 + + - name: bm25-mdpr-tied-pft-msmarco-hybrid.ar + eval_key: miracl-v1.0-ar + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6259 + R@100: 0.9173 + - split: dev + scores: + - nDCG@10: 0.6729 + R@100: 0.9405 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.bn + eval_key: miracl-v1.0-bn + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6587 + R@100: 0.9297 + - split: dev + scores: + - nDCG@10: 0.6540 + R@100: 0.9321 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.en + eval_key: miracl-v1.0-en + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5347 + R@100: 0.8772 + - split: dev + scores: + - nDCG@10: 0.5488 + R@100: 0.8815 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.es + eval_key: miracl-v1.0-es + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6234 + R@100: 0.9425 + - split: dev + scores: + - nDCG@10: 0.6413 + R@100: 0.9479 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.fa + eval_key: miracl-v1.0-fa + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5890 + R@100: 0.9433 + - split: dev + scores: + - nDCG@10: 0.5935 + R@100: 0.9374 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.fi + eval_key: miracl-v1.0-fi + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + scores: + - nDCG@10: 0.6164 + R@100: 0.8506 + - split: dev + scores: + - nDCG@10: 0.6716 + R@100: 0.8949 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.fr + eval_key: miracl-v1.0-fr + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5299 + R@100: 0.9709 + - split: dev + scores: + - nDCG@10: 0.5233 + R@100: 0.9647 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.hi + eval_key: miracl-v1.0-hi + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6217 + R@100: 0.9059 + - split: dev + scores: + - nDCG@10: 0.6157 + R@100: 0.9115 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.id + eval_key: miracl-v1.0-id + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4442 + R@100: 0.7595 + - split: dev + scores: + - nDCG@10: 0.4433 + R@100: 0.7683 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.ja + eval_key: miracl-v1.0-ja + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5795 + R@100: 0.9082 + - split: dev + scores: + - nDCG@10: 0.5757 + R@100: 0.9036 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.ko + eval_key: miracl-v1.0-ko + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5758 + R@100: 0.8744 + - split: dev + scores: + - nDCG@10: 0.6086 + R@100: 0.8997 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.ru + eval_key: miracl-v1.0-ru + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4921 + R@100: 0.8494 + - split: dev + scores: + - nDCG@10: 0.5323 + R@100: 0.8738 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.sw + eval_key: miracl-v1.0-sw + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.4100 + R@100: 0.6987 + - split: dev + scores: + - nDCG@10: 0.4457 + R@100: 0.7254 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.te + eval_key: miracl-v1.0-te + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.6000 + R@100: 0.8717 + - split: dev + scores: + - nDCG@10: 0.6021 + R@100: 0.8569 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.th + eval_key: miracl-v1.0-th + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5669 + R@100: 0.8195 + - split: dev + scores: + - nDCG@10: 0.5990 + R@100: 0.8228 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.zh + eval_key: miracl-v1.0-zh + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: train + scores: + - nDCG@10: 0.5209 + R@100: 0.9576 + - split: dev + scores: + - nDCG@10: 0.5254 + R@100: 0.9587 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.de + eval_key: miracl-v1.0-de + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.5643 + R@100: 0.9482 + - name: bm25-mdpr-tied-pft-msmarco-hybrid.yo + eval_key: miracl-v1.0-yo + command: python -m pyserini.fusion --runs ${bm25_output} ${mdpr_output} --output ${output} --method interpolation --alpha 0.5 --depth 1000 --k 1000 + splits: + - split: dev + scores: + - nDCG@10: 0.6114 + R@100: 0.9496 diff --git a/pyserini/resources/mrtydi.yaml b/pyserini/resources/mrtydi.yaml new file mode 100644 index 0000000000000000000000000000000000000000..333e9509e46c8265a0b72747ffa76742e49e3fdf --- /dev/null +++ b/pyserini/resources/mrtydi.yaml @@ -0,0 +1,890 @@ +conditions: + # mDPR, tied encoders, pFT w/ MS MARCO, FT all + - name: mdpr-tied-pft-msmarco-ft-all.ar + eval_key: mrtydi-v1.1-arabic + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-arabic-${split} --index mrtydi-v1.1-arabic-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9505 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.6913 + R@100: 0.9165 + - split: test + scores: + - MRR@100: 0.6949 + R@100: 0.9004 + - name: mdpr-tied-pft-msmarco-ft-all.bn + eval_key: mrtydi-v1.1-bengali + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-bengali-${split} --index mrtydi-v1.1-bengali-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9620 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.5897 + R@100: 0.8977 + - split: test + scores: + - MRR@100: 0.6228 + R@100: 0.9550 + - name: mdpr-tied-pft-msmarco-ft-all.en + eval_key: mrtydi-v1.1-english + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-english-${split} --index mrtydi-v1.1-english-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.8278 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.5357 + R@100: 0.8884 + - split: test + scores: + - MRR@100: 0.4916 + R@100: 0.8414 + - name: mdpr-tied-pft-msmarco-ft-all.fi + eval_key: mrtydi-v1.1-finnish + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-finnish-${split} --index mrtydi-v1.1-finnish-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9577 + R@100: 0.9997 + - split: dev + scores: + - MRR@100: 0.6626 + R@100: 0.9171 + - split: test + scores: + - MRR@100: 0.5595 + R@100: 0.8563 + - name: mdpr-tied-pft-msmarco-ft-all.id + eval_key: mrtydi-v1.1-indonesian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-indonesian-${split} --index mrtydi-v1.1-indonesian-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9469 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.6294 + R@100: 0.9150 + - split: test + scores: + - MRR@100: 0.5783 + R@100: 0.8609 + - name: mdpr-tied-pft-msmarco-ft-all.ja + eval_key: mrtydi-v1.1-japanese + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-japanese-${split} --index mrtydi-v1.1-japanese-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.8802 + R@100: 0.9997 + - split: dev + scores: + - MRR@100: 0.5505 + R@100: 0.8696 + - split: test + scores: + - MRR@100: 0.5007 + R@100: 0.8130 + - name: mdpr-tied-pft-msmarco-ft-all.ko + eval_key: mrtydi-v1.1-korean + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-korean-${split} --index mrtydi-v1.1-korean-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9195 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.5645 + R@100: 0.8663 + - split: test + scores: + - MRR@100: 0.4861 + R@100: 0.7854 + - name: mdpr-tied-pft-msmarco-ft-all.ru + eval_key: mrtydi-v1.1-russian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-russian-${split} --index mrtydi-v1.1-russian-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.8473 + R@100: 0.9994 + - split: dev + scores: + - MRR@100: 0.5104 + R@100: 0.8720 + - split: test + scores: + - MRR@100: 0.5161 + R@100: 0.8432 + - name: mdpr-tied-pft-msmarco-ft-all.sw + eval_key: mrtydi-v1.1-swahili + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-swahili-${split} --index mrtydi-v1.1-swahili-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9515 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.6404 + R@100: 0.9018 + - split: test + scores: + - MRR@100: 0.6438 + R@100: 0.8756 + - name: mdpr-tied-pft-msmarco-ft-all.te + eval_key: mrtydi-v1.1-telugu + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-telugu-${split} --index mrtydi-v1.1-telugu-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9679 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.7962 + R@100: 0.9593 + - split: test + scores: + - MRR@100: 0.8908 + R@100: 0.9659 + - name: mdpr-tied-pft-msmarco-ft-all.th + eval_key: mrtydi-v1.1-thai + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco-ft-all --topics mrtydi-v1.1-thai-${split} --index mrtydi-v1.1-thai-mdpr-tied-pft-msmarco-ft-all --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.9504 + R@100: 1.0000 + - split: dev + scores: + - MRR@100: 0.6670 + R@100: 0.9114 + - split: test + scores: + - MRR@100: 0.6175 + R@100: 0.8826 + + # mDPR, tied encoders, pFT w/ MS MARCO + - name: mdpr-tied-pft-msmarco.ar + eval_key: mrtydi-v1.1-arabic + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-arabic-${split} --index mrtydi-v1.1-arabic-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3957 + R@100: 0.7818 + - split: dev + scores: + - MRR@100: 0.3978 + R@100: 0.7778 + - split: test + scores: + - MRR@100: 0.4414 + R@100: 0.7971 + - name: mdpr-tied-pft-msmarco.bn + eval_key: mrtydi-v1.1-bengali + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-bengali-${split} --index mrtydi-v1.1-bengali-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2920 + R@100: 0.7323 + - split: dev + scores: + - MRR@100: 0.2993 + R@100: 0.7318 + - split: test + scores: + - MRR@100: 0.3969 + R@100: 0.7838 + - name: mdpr-tied-pft-msmarco.en + eval_key: mrtydi-v1.1-english + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-english-${split} --index mrtydi-v1.1-english-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3374 + R@100: 0.8111 + - split: dev + scores: + - MRR@100: 0.3451 + R@100: 0.7995 + - split: test + scores: + - MRR@100: 0.3270 + R@100: 0.7536 + - name: mdpr-tied-pft-msmarco.fi + eval_key: mrtydi-v1.1-finnish + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-finnish-${split} --index mrtydi-v1.1-finnish-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3668 + R@100: 0.7337 + - split: dev + scores: + - MRR@100: 0.3636 + R@100: 0.7371 + - split: test + scores: + - MRR@100: 0.2750 + R@100: 0.6471 + - name: mdpr-tied-pft-msmarco.id + eval_key: mrtydi-v1.1-indonesian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-indonesian-${split} --index mrtydi-v1.1-indonesian-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2794 + R@100: 0.7044 + - split: dev + scores: + - MRR@100: 0.2853 + R@100: 0.7198 + - split: test + scores: + - MRR@100: 0.3520 + R@100: 0.7356 + - name: mdpr-tied-pft-msmarco.ja + eval_key: mrtydi-v1.1-japanese + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-japanese-${split} --index mrtydi-v1.1-japanese-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3089 + R@100: 0.7603 + - split: dev + scores: + - MRR@100: 0.3108 + R@100: 0.7597 + - split: test + scores: + - MRR@100: 0.3107 + R@100: 0.7317 + - name: mdpr-tied-pft-msmarco.ko + eval_key: mrtydi-v1.1-korean + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-korean-${split} --index mrtydi-v1.1-korean-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3003 + R@100: 0.6907 + - split: dev + scores: + - MRR@100: 0.3017 + R@100: 0.7046 + - split: test + scores: + - MRR@100: 0.2820 + R@100: 0.6172 + - name: mdpr-tied-pft-msmarco.ru + eval_key: mrtydi-v1.1-russian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-russian-${split} --index mrtydi-v1.1-russian-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2856 + R@100: 0.7305 + - split: dev + scores: + - MRR@100: 0.2943 + R@100: 0.7404 + - split: test + scores: + - MRR@100: 0.3561 + R@100: 0.7432 + - name: mdpr-tied-pft-msmarco.sw + eval_key: mrtydi-v1.1-swahili + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-swahili-${split} --index mrtydi-v1.1-swahili-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2491 + R@100: 0.5195 + - split: dev + scores: + - MRR@100: 0.2447 + R@100: 0.5266 + - split: test + scores: + - MRR@100: 0.3418 + R@100: 0.6343 + - name: mdpr-tied-pft-msmarco.te + eval_key: mrtydi-v1.1-telugu + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-telugu-${split} --index mrtydi-v1.1-telugu-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3059 + R@100: 0.7510 + - split: dev + scores: + - MRR@100: 0.2995 + R@100: 0.7355 + - split: test + scores: + - MRR@100: 0.3102 + R@100: 0.7817 + - name: mdpr-tied-pft-msmarco.th + eval_key: mrtydi-v1.1-thai + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-msmarco --topics mrtydi-v1.1-thai-${split} --index mrtydi-v1.1-thai-mdpr-tied-pft-msmarco --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2334 + R@100: 0.5851 + - split: dev + scores: + - MRR@100: 0.2407 + R@100: 0.5795 + - split: test + scores: + - MRR@100: 0.2693 + R@100: 0.5945 + + # mDPR, tied encoders, pFT w/ NQ + - name: mdpr-tied-pft-nq.ar + eval_key: mrtydi-v1.1-arabic + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-arabic-${split} --index mrtydi-v1.1-arabic-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2087 + R@100: 0.5854 + - split: dev + scores: + - MRR@100: 0.2132 + R@100: 0.5868 + - split: test + scores: + - MRR@100: 0.2214 + R@100: 0.6001 + - name: mdpr-tied-pft-nq.bn + eval_key: mrtydi-v1.1-bengali + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-bengali-${split} --index mrtydi-v1.1-bengali-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2371 + R@100: 0.6281 + - split: dev + scores: + - MRR@100: 0.2414 + R@100: 0.6409 + - split: test + scores: + - MRR@100: 0.2535 + R@100: 0.7072 + - name: mdpr-tied-pft-nq.en + eval_key: mrtydi-v1.1-english + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-english-${split} --index mrtydi-v1.1-english-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2441 + R@100: 0.7217 + - split: dev + scores: + - MRR@100: 0.2359 + R@100: 0.7187 + - split: test + scores: + - MRR@100: 0.2433 + R@100: 0.6893 + - name: mdpr-tied-pft-nq.fi + eval_key: mrtydi-v1.1-finnish + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-finnish-${split} --index mrtydi-v1.1-finnish-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2996 + R@100: 0.6787 + - split: dev + scores: + - MRR@100: 0.3252 + R@100: 0.7037 + - split: test + scores: + - MRR@100: 0.2444 + R@100: 0.6401 + - name: mdpr-tied-pft-nq.id + eval_key: mrtydi-v1.1-indonesian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-indonesian-${split} --index mrtydi-v1.1-indonesian-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2706 + R@100: 0.7322 + - split: dev + scores: + - MRR@100: 0.2719 + R@100: 0.7394 + - split: test + scores: + - MRR@100: 0.2815 + R@100: 0.6914 + - name: mdpr-tied-pft-nq.ja + eval_key: mrtydi-v1.1-japanese + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-japanese-${split} --index mrtydi-v1.1-japanese-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2165 + R@100: 0.6043 + - split: dev + scores: + - MRR@100: 0.2299 + R@100: 0.6239 + - split: test + scores: + - MRR@100: 0.2058 + R@100: 0.5734 + - name: mdpr-tied-pft-nq.ko + eval_key: mrtydi-v1.1-korean + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-korean-${split} --index mrtydi-v1.1-korean-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2527 + R@100: 0.6556 + - split: dev + scores: + - MRR@100: 0.2680 + R@100: 0.6271 + - split: test + scores: + - MRR@100: 0.2234 + R@100: 0.5499 + - name: mdpr-tied-pft-nq.ru + eval_key: mrtydi-v1.1-russian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-russian-${split} --index mrtydi-v1.1-russian-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2160 + R@100: 0.6262 + - split: dev + scores: + - MRR@100: 0.2263 + R@100: 0.6444 + - split: test + scores: + - MRR@100: 0.2501 + R@100: 0.6181 + - name: mdpr-tied-pft-nq.sw + eval_key: mrtydi-v1.1-swahili + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-swahili-${split} --index mrtydi-v1.1-swahili-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2383 + R@100: 0.5707 + - split: dev + scores: + - MRR@100: 0.2543 + R@100: 0.6138 + - split: test + scores: + - MRR@100: 0.2621 + R@100: 0.5965 + - name: mdpr-tied-pft-nq.te + eval_key: mrtydi-v1.1-telugu + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-telugu-${split} --index mrtydi-v1.1-telugu-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1483 + R@100: 0.4162 + - split: dev + scores: + - MRR@100: 0.1494 + R@100: 0.3967 + - split: test + scores: + - MRR@100: 0.0970 + R@100: 0.2454 + - name: mdpr-tied-pft-nq.th + eval_key: mrtydi-v1.1-thai + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder-class auto --encoder castorini/mdpr-tied-pft-nq --topics mrtydi-v1.1-thai-${split} --index mrtydi-v1.1-thai-mdpr-tied-pft-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1426 + R@100: 0.4717 + - split: dev + scores: + - MRR@100: 0.1618 + R@100: 0.4637 + - split: test + scores: + - MRR@100: 0.1575 + R@100: 0.4550 + + # mDPR, split encoders, pFT w/ NQ + - name: mdpr-split-pft-nq.ar + eval_key: mrtydi-v1.1-arabic + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-arabic-${split} --index mrtydi-v1.1-arabic-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2510 + R@100: 0.6384 + - split: dev + scores: + - MRR@100: 0.2449 + R@100: 0.6334 + - split: test + scores: + - MRR@100: 0.2907 + R@100: 0.6502 + - name: mdpr-split-pft-nq.bn + eval_key: mrtydi-v1.1-bengali + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-bengali-${split} --index mrtydi-v1.1-bengali-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2293 + R@100: 0.6454 + - split: dev + scores: + - MRR@100: 0.2367 + R@100: 0.6511 + - split: test + scores: + - MRR@100: 0.2911 + R@100: 0.7793 + - name: mdpr-split-pft-nq.en + eval_key: mrtydi-v1.1-english + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-english-${split} --index mrtydi-v1.1-english-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2862 + R@100: 0.7372 + - split: dev + scores: + - MRR@100: 0.2821 + R@100: 0.7437 + - split: test + scores: + - MRR@100: 0.2907 + R@100: 0.6779 + - name: mdpr-split-pft-nq.fi + eval_key: mrtydi-v1.1-finnish + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-finnish-${split} --index mrtydi-v1.1-finnish-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2473 + R@100: 0.6289 + - split: dev + scores: + - MRR@100: 0.2466 + R@100: 0.6283 + - split: test + scores: + - MRR@100: 0.2050 + R@100: 0.5680 + - name: mdpr-split-pft-nq.id + eval_key: mrtydi-v1.1-indonesian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-indonesian-${split} --index mrtydi-v1.1-indonesian-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2351 + R@100: 0.6952 + - split: dev + scores: + - MRR@100: 0.2475 + R@100: 0.7181 + - split: test + scores: + - MRR@100: 0.2705 + R@100: 0.6848 + - name: mdpr-split-pft-nq.ja + eval_key: mrtydi-v1.1-japanese + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-japanese-${split} --index mrtydi-v1.1-japanese-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1967 + R@100: 0.5983 + - split: dev + scores: + - MRR@100: 0.2055 + R@100: 0.6142 + - split: test + scores: + - MRR@100: 0.2119 + R@100: 0.5840 + - name: mdpr-split-pft-nq.ko + eval_key: mrtydi-v1.1-korean + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-korean-${split} --index mrtydi-v1.1-korean-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2383 + R@100: 0.6180 + - split: dev + scores: + - MRR@100: 0.2343 + R@100: 0.6238 + - split: test + scores: + - MRR@100: 0.2345 + R@100: 0.5325 + - name: mdpr-split-pft-nq.ru + eval_key: mrtydi-v1.1-russian + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-russian-${split} --index mrtydi-v1.1-russian-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2317 + R@100: 0.6534 + - split: dev + scores: + - MRR@100: 0.2490 + R@100: 0.6553 + - split: test + scores: + - MRR@100: 0.2820 + R@100: 0.6474 + - name: mdpr-split-pft-nq.sw + eval_key: mrtydi-v1.1-swahili + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-swahili-${split} --index mrtydi-v1.1-swahili-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1457 + R@100: 0.4481 + - split: dev + scores: + - MRR@100: 0.1547 + R@100: 0.4724 + - split: test + scores: + - MRR@100: 0.1883 + R@100: 0.5281 + - name: mdpr-split-pft-nq.te + eval_key: mrtydi-v1.1-telugu + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-telugu-${split} --index mrtydi-v1.1-telugu-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1489 + R@100: 0.4905 + - split: dev + scores: + - MRR@100: 0.1503 + R@100: 0.4934 + - split: test + scores: + - MRR@100: 0.1099 + R@100: 0.3661 + - name: mdpr-split-pft-nq.th + eval_key: mrtydi-v1.1-thai + command: python -m pyserini.search.faiss --threads 16 --batch-size 512 --encoder castorini/mdpr-question-nq --topics mrtydi-v1.1-thai-${split} --index mrtydi-v1.1-thai-mdpr-nq --output $output --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1603 + R@100: 0.4983 + - split: dev + scores: + - MRR@100: 0.1584 + R@100: 0.5083 + - split: test + scores: + - MRR@100: 0.1709 + R@100: 0.5146 + + # BM25 + - name: bm25.ar + eval_key: mrtydi-v1.1-arabic + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language ar --topics mrtydi-v1.1-arabic-${split} --index mrtydi-v1.1-arabic --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3356 + R@100: 0.7944 + - split: dev + scores: + - MRR@100: 0.3462 + R@100: 0.7872 + - split: test + scores: + - MRR@100: 0.3682 + R@100: 0.7928 + - name: bm25.bn + eval_key: mrtydi-v1.1-bengali + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language bn --topics mrtydi-v1.1-bengali-${split} --index mrtydi-v1.1-bengali --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3566 + - R@100: 0.8336 + - split: dev + scores: + - MRR@100: 0.3385 + - R@100: 0.8432 + - split: test + scores: + - MRR@100: 0.4182 + - R@100: 0.8694 + - name: bm25.en + eval_key: mrtydi-v1.1-english + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language en --topics mrtydi-v1.1-english-${split} --index mrtydi-v1.1-english --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.1592 + - R@100: 0.5785 + - split: dev + scores: + - MRR@100: 0.1685 + - R@100: 0.6196 + - split: test + scores: + - MRR@100: 0.1404 + - R@100: 0.5365 + - name: bm25.fi + eval_key: mrtydi-v1.1-finnish + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language fi --topics mrtydi-v1.1-finnish-${split} --index mrtydi-v1.1-finnish --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.4101 + - R@100: 0.8198 + - split: dev + scores: + - MRR@100: 0.4136 + - R@100: 0.8285 + - split: test + scores: + - MRR@100: 0.2836 + - R@100: 0.7196 + - name: bm25.id + eval_key: mrtydi-v1.1-indonesian + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language id --topics mrtydi-v1.1-indonesian-${split} --index mrtydi-v1.1-indonesian --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2972 + - R@100: 0.7948 + - split: dev + scores: + - MRR@100: 0.2937 + - R@100: 0.7827 + - split: test + scores: + - MRR@100: 0.3762 + - R@100: 0.8426 + - name: bm25.ja + eval_key: mrtydi-v1.1-japanese + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language ja --topics mrtydi-v1.1-japanese-${split} --index mrtydi-v1.1-japanese --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2262 + - R@100: 0.7290 + - split: dev + scores: + - MRR@100: 0.2250 + - R@100: 0.7252 + - split: test + scores: + - MRR@100: 0.2125 + - R@100: 0.6431 + - name: bm25.ko + eval_key: mrtydi-v1.1-korean + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language ko --topics mrtydi-v1.1-korean-${split} --index mrtydi-v1.1-korean --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2596 + - R@100: 0.6178 + - split: dev + scores: + - MRR@100: 0.2888 + - R@100: 0.6733 + - split: test + scores: + - MRR@100: 0.2848 + - R@100: 0.6188 + - name: bm25.ru + eval_key: mrtydi-v1.1-russian + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language ru --topics mrtydi-v1.1-russian-${split} --index mrtydi-v1.1-russian --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2229 + - R@100: 0.5779 + - split: dev + scores: + - MRR@100: 0.2202 + - R@100: 0.5760 + - split: test + scores: + - MRR@100: 0.3163 + - R@100: 0.6541 + - name: bm25.sw + eval_key: mrtydi-v1.1-swahili + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language sw --topics mrtydi-v1.1-swahili-${split} --index mrtydi-v1.1-swahili --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.2610 + - R@100: 0.5903 + - split: dev + scores: + - MRR@100: 0.2693 + - R@100: 0.5789 + - split: test + scores: + - MRR@100: 0.3893 + - R@100: 0.7642 + - name: bm25.te + eval_key: mrtydi-v1.1-telugu + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language te --topics mrtydi-v1.1-telugu-${split} --index mrtydi-v1.1-telugu --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.4204 + - R@100: 0.8229 + - split: dev + scores: + - MRR@100: 0.4269 + - R@100: 0.8362 + - split: test + scores: + - MRR@100: 0.5283 + - R@100: 0.8971 + - name: bm25.th + eval_key: mrtydi-v1.1-thai + command: python -m pyserini.search.lucene --threads 16 --batch-size 128 --language th --topics mrtydi-v1.1-thai-${split} --index mrtydi-v1.1-thai --output $output --bm25 --hits 100 + splits: + - split: train + scores: + - MRR@100: 0.3543 + - R@100: 0.8349 + - split: dev + scores: + - MRR@100: 0.3586 + - R@100: 0.8536 + - split: test + scores: + - MRR@100: 0.4012 + - R@100: 0.8529 diff --git a/pyserini/resources/naturalquestion.yaml b/pyserini/resources/naturalquestion.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9d01240c99876e5e324f1fa39218ac64213c58f7 --- /dev/null +++ b/pyserini/resources/naturalquestion.yaml @@ -0,0 +1,66 @@ +conditions: + - model_name: BM25-k1_0.9_b_0.4 + command: + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics nq-test --output $output --bm25 --k1 0.9 --b 0.4 + scores: + - Top5: 44.82 + Top20: 64.02 + Top100: 79.20 + Top500: 86.59 + Top1000: 88.95 + - model_name: BM25-k1_0.9_b_0.4_dpr-topics + command: + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics dpr-nq-test --output $output --bm25 --k1 0.9 --b 0.4 + scores: + - Top5: 43.77 + Top20: 62.99 + Top100: 78.23 + Top500: 85.60 + Top1000: 88.01 + - model_name: GarT5-RRF + command: + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics nq-test-gar-t5-answers --output $output --bm25 --k1 0.9 --b 0.4 + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics nq-test-gar-t5-titles --output $output --bm25 --k1 0.9 --b 0.4 + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics nq-test-gar-t5-sentences --output $output --bm25 --k1 0.9 --b 0.4 + scores: + - Top5: 64.62 + Top20: 77.17 + Top100: 86.90 + Top500: 91.63 + Top1000: 92.91 + - model_name: DPR + command: + - python -m pyserini.search.faiss --threads 72 --batch-size 128 --index wikipedia-dpr-single-nq-bf --encoder facebook/dpr-question_encoder-single-nq-base --topics nq-test --output $output + scores: + - Top5: 68.61 + Top20: 80.58 + Top100: 86.68 + Top500: 90.91 + Top1000: 91.83 + - model_name: DPR-DKRR + command: + - 'python -m pyserini.search.faiss --threads 72 --batch-size 128 --index wikipedia-dpr-dkrr-nq --encoder castorini/dkrr-dpr-nq-retriever --topics nq-test --output $output --query-prefix question: ' + scores: + - Top5: 73.80 + Top20: 84.27 + Top100: 89.34 + Top500: 92.24 + Top1000: 93.43 + - model_name: DPR-Hybrid + command: + - python -m pyserini.search.hybrid dense --index wikipedia-dpr-single-nq-bf --encoder facebook/dpr-question_encoder-single-nq-base sparse --index wikipedia-dpr fusion --alpha 1.2 run --topics nq-test --output $output --threads 72 --batch-size 128 + scores: + - Top5: 72.52 + Top20: 83.43 + Top100: 89.03 + Top500: 92.16 + Top1000: 93.19 + - model_name: GarT5RRF-DKRR-RRF + command: + - '' + scores: + - Top5: 74.57 + Top20: 84.90 + Top100: 90.86 + Top500: 93.35 + Top1000: 94.18 diff --git a/pyserini/resources/triviaqa.yaml b/pyserini/resources/triviaqa.yaml new file mode 100644 index 0000000000000000000000000000000000000000..76ad966d00cadcc67d0e9a30c4f6130922c58937 --- /dev/null +++ b/pyserini/resources/triviaqa.yaml @@ -0,0 +1,66 @@ +conditions: + - model_name: BM25-k1_0.9_b_0.4 + command: + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics dpr-trivia-test --output $output --bm25 --k1 0.9 --b 0.4 + scores: + - Top5: 66.29 + Top20: 76.41 + Top100: 83.14 + Top500: 87.35 + Top1000: 88.50 + - model_name: BM25-k1_0.9_b_0.4_dpr-topics + command: + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics dpr-trivia-test --output $output --bm25 --k1 0.9 --b 0.4 + scores: + - Top5: 66.29 + Top20: 76.41 + Top100: 83.14 + Top500: 87.35 + Top1000: 88.50 + - model_name: GarT5-RRF + command: + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics dpr-trivia-test-gar-t5-answers --output $output --bm25 --k1 0.9 --b 0.4 + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics dpr-trivia-test-gar-t5-titles --output $output --bm25 --k1 0.9 --b 0.4 + - python -m pyserini.search.lucene --threads 72 --batch-size 128 --index wikipedia-dpr --topics dpr-trivia-test-gar-t5-sentences --output $output --bm25 --k1 0.9 --b 0.4 + scores: + - Top5: 72.82 + Top20: 80.66 + Top100: 85.95 + Top500: 89.07 + Top1000: 90.06 + - model_name: DPR + command: + - python -m pyserini.search.faiss --threads 72 --batch-size 128 --index wikipedia-dpr-multi-bf --encoder facebook/dpr-question_encoder-multiset-base --topics dpr-trivia-test --output $output + scores: + - Top5: 69.80 + Top20: 78.87 + Top100: 84.79 + Top500: 88.19 + Top1000: 89.30 + - model_name: DPR-DKRR + command: + - 'python -m pyserini.search.faiss --threads 72 --batch-size 128 --index wikipedia-dpr-dkrr-tqa --encoder castorini/dkrr-dpr-tqa-retriever --topics dpr-trivia-test --output $output --query-prefix question: ' + scores: + - Top5: 77.23 + Top20: 83.74 + Top100: 87.78 + Top500: 89.87 + Top1000: 90.63 + - model_name: DPR-Hybrid + command: + - python -m pyserini.search.hybrid dense --index wikipedia-dpr-multi-bf --encoder facebook/dpr-question_encoder-multiset-base sparse --index wikipedia-dpr fusion --alpha 0.95 run --topics dpr-trivia-test --output $output --threads 72 --batch-size 128 + scores: + - Top5: 76.01 + Top20: 82.64 + Top100: 86.55 + Top500: 89.12 + Top1000: 89.90 + - model_name: GarT5RRF-DKRR-RRF + command: + - '' + scores: + - Top5: 78.63 + Top20: 85.02 + Top100: 88.41 + Top500: 90.29 + Top1000: 90.83 \ No newline at end of file diff --git a/pyserini/search/__init__.py b/pyserini/search/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..beb12d643572a89e531d1d12d686c044c2872348 --- /dev/null +++ b/pyserini/search/__init__.py @@ -0,0 +1,60 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import JQuery, JQueryGenerator, JDisjunctionMaxQueryGenerator, get_topics,\ + get_topics_with_reader, get_qrels_file, get_qrels +from .lucene import JLuceneSearcherResult, LuceneSimilarities, LuceneFusionSearcher, LuceneSearcher +from .lucene import JImpactSearcherResult, LuceneImpactSearcher +from ._deprecated import SimpleSearcher, ImpactSearcher, SimpleFusionSearcher + +from .faiss import DenseSearchResult, PRFDenseSearchResult, FaissSearcher, BinaryDenseSearcher, QueryEncoder, \ + DprQueryEncoder, BprQueryEncoder, DkrrDprQueryEncoder, TctColBertQueryEncoder, AnceQueryEncoder, AutoQueryEncoder +from .faiss import AnceEncoder +from .faiss import DenseVectorAveragePrf, DenseVectorRocchioPrf, DenseVectorAncePrf + + +__all__ = ['JQuery', + 'LuceneSimilarities', + 'LuceneFusionSearcher', + 'LuceneSearcher', + 'JLuceneSearcherResult', + 'LuceneImpactSearcher', + 'JImpactSearcherResult', + 'JDisjunctionMaxQueryGenerator', + 'JQueryGenerator', + 'get_topics', + 'get_topics_with_reader', + 'get_qrels_file', + 'get_qrels', + 'SimpleSearcher', + 'ImpactSearcher', + 'SimpleFusionSearcher', + 'DenseSearchResult', + 'PRFDenseSearchResult', + 'FaissSearcher', + 'BinaryDenseSearcher', + 'QueryEncoder', + 'DprQueryEncoder', + 'BprQueryEncoder', + 'DkrrDprQueryEncoder', + 'TctColBertQueryEncoder', + 'AnceEncoder', + 'AnceQueryEncoder', + 'AutoQueryEncoder', + 'DenseVectorAveragePrf', + 'DenseVectorRocchioPrf', + 'DenseVectorAncePrf'] + diff --git a/pyserini/search/__main__.py b/pyserini/search/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..57e4826ce2700d8cdee229f50e02fc0fbdc57507 --- /dev/null +++ b/pyserini/search/__main__.py @@ -0,0 +1,25 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import sys +import os + +print('WARNING: directly calling pyserini.search is deprecated, please use pyserini.search.lucene instead') +args = " ".join(sys.argv[1:]) +os.system(f'python -m pyserini.search.lucene {args}') + + + diff --git a/pyserini/search/__pycache__/__init__.cpython-38.pyc b/pyserini/search/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d205dbbaefafb484913fc7ecf71c08e4c5ad21db Binary files /dev/null and b/pyserini/search/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/__pycache__/__main__.cpython-38.pyc b/pyserini/search/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6c9d05e0eda966277ac077cf21be3101038f64d Binary files /dev/null and b/pyserini/search/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/search/__pycache__/_base.cpython-38.pyc b/pyserini/search/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..036589d2c7cb0a41272b35121acf45f9d4a66b9d Binary files /dev/null and b/pyserini/search/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/search/__pycache__/_deprecated.cpython-38.pyc b/pyserini/search/__pycache__/_deprecated.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed1d18c56c5506922178b4b0f3496adfb9641043 Binary files /dev/null and b/pyserini/search/__pycache__/_deprecated.cpython-38.pyc differ diff --git a/pyserini/search/_base.py b/pyserini/search/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..e8e8741d04e0626e7e498526c391570a985ce36d --- /dev/null +++ b/pyserini/search/_base.py @@ -0,0 +1,559 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's Python search interface to Anserini. The main entry point is the ``LuceneSearcher`` +class, which wraps the Java class with the same name in Anserini. +""" + +import logging +import os + +from pyserini.util import get_cache_home +from pyserini.pyclass import autoclass + +logger = logging.getLogger(__name__) + +# Wrappers around Lucene classes +JQuery = autoclass('org.apache.lucene.search.Query') + +# Wrappers around Anserini classes +JQrels = autoclass('io.anserini.eval.Qrels') +JRelevanceJudgments = autoclass('io.anserini.eval.RelevanceJudgments') +JTopicReader = autoclass('io.anserini.search.topicreader.TopicReader') +JTopics = autoclass('io.anserini.search.topicreader.Topics') +JQueryGenerator = autoclass('io.anserini.search.query.QueryGenerator') +JBagOfWordsQueryGenerator = autoclass('io.anserini.search.query.BagOfWordsQueryGenerator') +JDisjunctionMaxQueryGenerator = autoclass('io.anserini.search.query.DisjunctionMaxQueryGenerator') +JCovid19QueryGenerator = autoclass('io.anserini.search.query.Covid19QueryGenerator') + +topics_mapping = { + 'trec1-adhoc': JTopics.TREC1_ADHOC, + 'trec2-adhoc': JTopics.TREC2_ADHOC, + 'trec3-adhoc': JTopics.TREC3_ADHOC, + 'robust04': JTopics.ROBUST04, + 'robust05': JTopics.ROBUST05, + 'core17': JTopics.CORE17, + 'core18': JTopics.CORE18, + 'wt10g': JTopics.WT10G, + 'trec2004-terabyte': JTopics.TREC2004_TERABYTE, + 'trec2005-terabyte': JTopics.TREC2005_TERABYTE, + 'trec2006-terabyte': JTopics.TREC2006_TERABYTE, + 'trec2007-million-query': JTopics.TREC2007_MILLION_QUERY, + 'trec2008-million-query': JTopics.TREC2008_MILLION_QUERY, + 'trec2009-million-query': JTopics.TREC2009_MILLION_QUERY, + 'trec2010-web': JTopics.TREC2010_WEB, + 'trec2011-web': JTopics.TREC2011_WEB, + 'trec2012-web': JTopics.TREC2012_WEB, + 'trec2013-web': JTopics.TREC2013_WEB, + 'trec2014-web': JTopics.TREC2014_WEB, + 'mb11': JTopics.MB11, + 'mb12': JTopics.MB12, + 'mb13': JTopics.MB13, + 'mb14': JTopics.MB14, + 'car17v1.5-benchmarkY1test': JTopics.CAR17V15_BENCHMARK_Y1_TEST, + 'car17v2.0-benchmarkY1test': JTopics.CAR17V20_BENCHMARK_Y1_TEST, + 'dl19-doc': JTopics.TREC2019_DL_DOC, + 'dl19-doc-unicoil': JTopics.TREC2019_DL_DOC_UNICOIL, + 'dl19-doc-unicoil-noexp': JTopics.TREC2019_DL_DOC_UNICOIL_NOEXP, + 'dl19-passage': JTopics.TREC2019_DL_PASSAGE, + 'dl19-passage-unicoil': JTopics.TREC2019_DL_PASSAGE_UNICOIL, + 'dl19-passage-unicoil-noexp': JTopics.TREC2019_DL_PASSAGE_UNICOIL_NOEXP, + 'dl20': JTopics.TREC2020_DL, + 'dl20-unicoil': JTopics.TREC2020_DL_UNICOIL, + 'dl20-unicoil-noexp': JTopics.TREC2020_DL_UNICOIL_NOEXP, + 'dl21': JTopics.TREC2021_DL, + 'dl21-unicoil': JTopics.TREC2021_DL_UNICOIL, + 'dl21-unicoil-noexp': JTopics.TREC2021_DL_UNICOIL_NOEXP, + 'msmarco-doc-dev': JTopics.MSMARCO_DOC_DEV, + 'msmarco-doc-dev-unicoil': JTopics.MSMARCO_DOC_DEV_UNICOIL, + 'msmarco-doc-dev-unicoil-noexp': JTopics.MSMARCO_DOC_DEV_UNICOIL_NOEXP, + 'msmarco-doc-test': JTopics.MSMARCO_DOC_TEST, + 'msmarco-passage-dev-subset': JTopics.MSMARCO_PASSAGE_DEV_SUBSET, + 'msmarco-passage-dev-subset-deepimpact': JTopics.MSMARCO_PASSAGE_DEV_SUBSET_DEEPIMPACT, + 'msmarco-passage-dev-subset-unicoil': JTopics.MSMARCO_PASSAGE_DEV_SUBSET_UNICOIL, + 'msmarco-passage-dev-subset-unicoil-noexp': JTopics.MSMARCO_PASSAGE_DEV_SUBSET_UNICOIL_NOEXP, + 'msmarco-passage-dev-subset-unicoil-tilde': JTopics.MSMARCO_PASSAGE_DEV_SUBSET_UNICOIL_TILDE, + 'msmarco-passage-dev-subset-distill-splade-max': JTopics.MSMARCO_PASSAGE_DEV_SUBSET_DISTILL_SPLADE_MAX, + 'msmarco-passage-test-subset': JTopics.MSMARCO_PASSAGE_TEST_SUBSET, + 'msmarco-v2-doc-dev': JTopics.MSMARCO_V2_DOC_DEV, + 'msmarco-v2-doc-dev-unicoil': JTopics.MSMARCO_V2_DOC_DEV_UNICOIL, + 'msmarco-v2-doc-dev-unicoil-noexp': JTopics.MSMARCO_V2_DOC_DEV_UNICOIL_NOEXP, + 'msmarco-v2-doc-dev2': JTopics.MSMARCO_V2_DOC_DEV2, + 'msmarco-v2-doc-dev2-unicoil': JTopics.MSMARCO_V2_DOC_DEV2_UNICOIL, + 'msmarco-v2-doc-dev2-unicoil-noexp': JTopics.MSMARCO_V2_DOC_DEV2_UNICOIL_NOEXP, + 'msmarco-v2-passage-dev': JTopics.MSMARCO_V2_PASSAGE_DEV, + 'msmarco-v2-passage-dev-unicoil': JTopics.MSMARCO_V2_PASSAGE_DEV_UNICOIL, + 'msmarco-v2-passage-dev-unicoil-noexp': JTopics.MSMARCO_V2_PASSAGE_DEV_UNICOIL_NOEXP, + 'msmarco-v2-passage-dev2': JTopics.MSMARCO_V2_PASSAGE_DEV2, + 'msmarco-v2-passage-dev2-unicoil': JTopics.MSMARCO_V2_PASSAGE_DEV2_UNICOIL, + 'msmarco-v2-passage-dev2-unicoil-noexp': JTopics.MSMARCO_V2_PASSAGE_DEV2_UNICOIL_NOEXP, + 'ntcir8-zh': JTopics.NTCIR8_ZH, + 'clef2006-fr': JTopics.CLEF2006_FR, + 'trec2002-ar': JTopics.TREC2002_AR, + 'fire2012-bn': JTopics.FIRE2012_BN, + 'fire2012-hi': JTopics.FIRE2012_HI, + 'fire2012-en': JTopics.FIRE2012_EN, + 'covid-round1': JTopics.COVID_ROUND1, + 'covid-round1-udel': JTopics.COVID_ROUND1_UDEL, + 'covid-round2': JTopics.COVID_ROUND2, + 'covid-round2-udel': JTopics.COVID_ROUND2_UDEL, + 'covid-round3': JTopics.COVID_ROUND3, + 'covid-round3-udel': JTopics.COVID_ROUND3_UDEL, + 'covid-round4': JTopics.COVID_ROUND4, + 'covid-round4-udel': JTopics.COVID_ROUND4_UDEL, + 'covid-round5': JTopics.COVID_ROUND5, + 'covid-round5-udel': JTopics.COVID_ROUND5_UDEL, + 'trec2018-bl': JTopics.TREC2018_BL, + 'trec2019-bl': JTopics.TREC2019_BL, + 'trec2020-bl': JTopics.TREC2020_BL, + 'epidemic-qa-expert-prelim': JTopics.EPIDEMIC_QA_EXPERT_PRELIM, + 'epidemic-qa-consumer-prelim': JTopics.EPIDEMIC_QA_CONSUMER_PRELIM, + 'dpr-nq-dev': JTopics.DPR_NQ_DEV, + 'dpr-nq-test': JTopics.DPR_NQ_TEST, + 'dpr-trivia-dev': JTopics.DPR_TRIVIA_DEV, + 'dpr-trivia-test': JTopics.DPR_TRIVIA_TEST, + 'dpr-wq-test': JTopics.DPR_WQ_TEST, + 'dpr-squad-test': JTopics.DPR_SQUAD_TEST, + 'dpr-curated-test': JTopics.DPR_CURATED_TEST, + 'dpr-trivia-test-gar-t5-answers': JTopics.DPR_TRIVIA_TEST_GART5_ANSWERS, + 'dpr-trivia-test-gar-t5-titles': JTopics.DPR_TRIVIA_TEST_GART5_TITLES, + 'dpr-trivia-test-gar-t5-sentences': JTopics.DPR_TRIVIA_TEST_GART5_SENTENCES, + 'dpr-trivia-test-gar-t5-all': JTopics.DPR_TRIVIA_TEST_GART5_ALL, + 'nq-test-gar-t5-answers': JTopics.NQ_TEST_GART5_ANSWERS, + 'nq-test-gar-t5-titles': JTopics.NQ_TEST_GART5_TITLES, + 'nq-test-gar-t5-sentences': JTopics.NQ_TEST_GART5_SENTENCES, + 'nq-test-gar-t5-all': JTopics.NQ_TEST_GART5_ALL, + 'nq-dev': JTopics.NQ_DEV, + 'nq-test': JTopics.NQ_TEST, + 'mrtydi-v1.1-arabic-train': JTopics.MRTYDI_V11_AR_TRAIN, + 'mrtydi-v1.1-arabic-dev': JTopics.MRTYDI_V11_AR_DEV, + 'mrtydi-v1.1-arabic-test': JTopics.MRTYDI_V11_AR_TEST, + 'mrtydi-v1.1-bengali-train': JTopics.MRTYDI_V11_BN_TRAIN, + 'mrtydi-v1.1-bengali-dev': JTopics.MRTYDI_V11_BN_DEV, + 'mrtydi-v1.1-bengali-test': JTopics.MRTYDI_V11_BN_TEST, + 'mrtydi-v1.1-english-train': JTopics.MRTYDI_V11_EN_TRAIN, + 'mrtydi-v1.1-english-dev': JTopics.MRTYDI_V11_EN_DEV, + 'mrtydi-v1.1-english-test': JTopics.MRTYDI_V11_EN_TEST, + 'mrtydi-v1.1-finnish-train': JTopics.MRTYDI_V11_FI_TRAIN, + 'mrtydi-v1.1-finnish-dev': JTopics.MRTYDI_V11_FI_DEV, + 'mrtydi-v1.1-finnish-test': JTopics.MRTYDI_V11_FI_TEST, + 'mrtydi-v1.1-indonesian-train': JTopics.MRTYDI_V11_ID_TRAIN, + 'mrtydi-v1.1-indonesian-dev': JTopics.MRTYDI_V11_ID_DEV, + 'mrtydi-v1.1-indonesian-test': JTopics.MRTYDI_V11_ID_TEST, + 'mrtydi-v1.1-japanese-train': JTopics.MRTYDI_V11_JA_TRAIN, + 'mrtydi-v1.1-japanese-dev': JTopics.MRTYDI_V11_JA_DEV, + 'mrtydi-v1.1-japanese-test': JTopics.MRTYDI_V11_JA_TEST, + 'mrtydi-v1.1-korean-train': JTopics.MRTYDI_V11_KO_TRAIN, + 'mrtydi-v1.1-korean-dev': JTopics.MRTYDI_V11_KO_DEV, + 'mrtydi-v1.1-korean-test': JTopics.MRTYDI_V11_KO_TEST, + 'mrtydi-v1.1-russian-train': JTopics.MRTYDI_V11_RU_TRAIN, + 'mrtydi-v1.1-russian-dev': JTopics.MRTYDI_V11_RU_DEV, + 'mrtydi-v1.1-russian-test': JTopics.MRTYDI_V11_RU_TEST, + 'mrtydi-v1.1-swahili-train': JTopics.MRTYDI_V11_SW_TRAIN, + 'mrtydi-v1.1-swahili-dev': JTopics.MRTYDI_V11_SW_DEV, + 'mrtydi-v1.1-swahili-test': JTopics.MRTYDI_V11_SW_TEST, + 'mrtydi-v1.1-telugu-train': JTopics.MRTYDI_V11_TE_TRAIN, + 'mrtydi-v1.1-telugu-dev': JTopics.MRTYDI_V11_TE_DEV, + 'mrtydi-v1.1-telugu-test': JTopics.MRTYDI_V11_TE_TEST, + 'mrtydi-v1.1-thai-train': JTopics.MRTYDI_V11_TH_TRAIN, + 'mrtydi-v1.1-thai-dev': JTopics.MRTYDI_V11_TH_DEV, + 'mrtydi-v1.1-thai-test': JTopics.MRTYDI_V11_TH_TEST, + 'beir-v1.0.0-trec-covid-test': JTopics.BEIR_V1_0_0_TREC_COVID_TEST, + 'beir-v1.0.0-bioasq-test': JTopics.BEIR_V1_0_0_BIOASQ_TEST, + 'beir-v1.0.0-nfcorpus-test': JTopics.BEIR_V1_0_0_NFCORPUS_TEST, + 'beir-v1.0.0-nq-test': JTopics.BEIR_V1_0_0_NQ_TEST, + 'beir-v1.0.0-hotpotqa-test': JTopics.BEIR_V1_0_0_HOTPOTQA_TEST, + 'beir-v1.0.0-fiqa-test': JTopics.BEIR_V1_0_0_FIQA_TEST, + 'beir-v1.0.0-signal1m-test': JTopics.BEIR_V1_0_0_SIGNAL1M_TEST, + 'beir-v1.0.0-trec-news-test': JTopics.BEIR_V1_0_0_TREC_NEWS_TEST, + 'beir-v1.0.0-robust04-test': JTopics.BEIR_V1_0_0_ROBUST04_TEST, + 'beir-v1.0.0-arguana-test': JTopics.BEIR_V1_0_0_ARGUANA_TEST, + 'beir-v1.0.0-webis-touche2020-test': JTopics.BEIR_V1_0_0_WEBIS_TOUCHE2020_TEST, + 'beir-v1.0.0-cqadupstack-android-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_ANDROID_TEST, + 'beir-v1.0.0-cqadupstack-english-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_ENGLISH_TEST, + 'beir-v1.0.0-cqadupstack-gaming-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_GAMING_TEST, + 'beir-v1.0.0-cqadupstack-gis-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_GIS_TEST, + 'beir-v1.0.0-cqadupstack-mathematica-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_MATHEMATICA_TEST, + 'beir-v1.0.0-cqadupstack-physics-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_PHYSICS_TEST, + 'beir-v1.0.0-cqadupstack-programmers-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_PROGRAMMERS_TEST, + 'beir-v1.0.0-cqadupstack-stats-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_STATS_TEST, + 'beir-v1.0.0-cqadupstack-tex-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_TEX_TEST, + 'beir-v1.0.0-cqadupstack-unix-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_UNIX_TEST, + 'beir-v1.0.0-cqadupstack-webmasters-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_WEBMASTERS_TEST, + 'beir-v1.0.0-cqadupstack-wordpress-test': JTopics.BEIR_V1_0_0_CQADUPSTACK_WORDPRESS_TEST, + 'beir-v1.0.0-quora-test': JTopics.BEIR_V1_0_0_QUORA_TEST, + 'beir-v1.0.0-dbpedia-entity-test': JTopics.BEIR_V1_0_0_DBPEDIA_ENTITY_TEST, + 'beir-v1.0.0-scidocs-test': JTopics.BEIR_V1_0_0_SCIDOCS_TEST, + 'beir-v1.0.0-fever-test': JTopics.BEIR_V1_0_0_FEVER_TEST, + 'beir-v1.0.0-climate-fever-test': JTopics.BEIR_V1_0_0_CLIMATE_FEVER_TEST, + 'beir-v1.0.0-scifact-test': JTopics.BEIR_V1_0_0_SCIFACT_TEST, + 'beir-v1.0.0-trec-covid-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_TREC_COVID_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-bioasq-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_BIOASQ_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-nfcorpus-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_NFCORPUS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-nq-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_NQ_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-hotpotqa-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_HOTPOTQA_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-fiqa-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_FIQA_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-signal1m-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_SIGNAL1M_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-trec-news-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_TREC_NEWS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-robust04-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_ROBUST04_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-arguana-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_ARGUANA_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-webis-touche2020-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_WEBIS_TOUCHE2020_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-android-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_ANDROID_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-english-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_ENGLISH_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-gaming-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_GAMING_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-gis-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_GIS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-mathematica-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_MATHEMATICA_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-physics-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_PHYSICS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-programmers-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_PROGRAMMERS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-stats-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_STATS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-tex-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_TEX_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-unix-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_UNIX_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-webmasters-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_WEBMASTERS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-cqadupstack-wordpress-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CQADUPSTACK_WORDPRESS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-quora-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_QUORA_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-dbpedia-entity-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_DBPEDIA_ENTITY_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-scidocs-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_SCIDOCS_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-fever-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_FEVER_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-climate-fever-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_CLIMATE_FEVER_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'beir-v1.0.0-scifact-test-splade_distil_cocodenser_medium': JTopics.BEIR_V1_0_0_SCIFACT_TEST_SPLADE_DISTILL_COCODENSER_MEDIUM, + 'hc4-v1.0-fa-dev-title': JTopics.HC4_V1_0_FA_DEV_TITLE, + 'hc4-v1.0-fa-dev-desc': JTopics.HC4_V1_0_FA_DEV_DESC, + 'hc4-v1.0-fa-dev-desc-title': JTopics.HC4_V1_0_FA_DEV_DESC_TITLE, + 'hc4-v1.0-fa-test-title': JTopics.HC4_V1_0_FA_TEST_TITLE, + 'hc4-v1.0-fa-test-desc': JTopics.HC4_V1_0_FA_TEST_DESC, + 'hc4-v1.0-fa-test-desc-title': JTopics.HC4_V1_0_FA_TEST_DESC_TITLE, + 'hc4-v1.0-fa-en-test-title': JTopics.HC4_V1_0_FA_EN_TEST_TITLE, + 'hc4-v1.0-fa-en-test-desc': JTopics.HC4_V1_0_FA_EN_TEST_DESC, + 'hc4-v1.0-fa-en-test-desc-title': JTopics.HC4_V1_0_FA_EN_TEST_DESC_TITLE, + 'hc4-v1.0-ru-dev-title': JTopics.HC4_V1_0_RU_DEV_TITLE, + 'hc4-v1.0-ru-dev-desc': JTopics.HC4_V1_0_RU_DEV_DESC, + 'hc4-v1.0-ru-dev-desc-title': JTopics.HC4_V1_0_RU_DEV_DESC_TITLE, + 'hc4-v1.0-ru-test-title': JTopics.HC4_V1_0_RU_TEST_TITLE, + 'hc4-v1.0-ru-test-desc': JTopics.HC4_V1_0_RU_TEST_DESC, + 'hc4-v1.0-ru-test-desc-title': JTopics.HC4_V1_0_RU_TEST_DESC_TITLE, + 'hc4-v1.0-ru-en-test-title': JTopics.HC4_V1_0_RU_EN_TEST_TITLE, + 'hc4-v1.0-ru-en-test-desc': JTopics.HC4_V1_0_RU_EN_TEST_DESC, + 'hc4-v1.0-ru-en-test-desc-title': JTopics.HC4_V1_0_RU_EN_TEST_DESC_TITLE, + 'hc4-v1.0-zh-dev-title': JTopics.HC4_V1_0_ZH_DEV_TITLE, + 'hc4-v1.0-zh-dev-desc': JTopics.HC4_V1_0_ZH_DEV_DESC, + 'hc4-v1.0-zh-dev-desc-title': JTopics.HC4_V1_0_ZH_DEV_DESC_TITLE, + 'hc4-v1.0-zh-test-title': JTopics.HC4_V1_0_ZH_TEST_TITLE, + 'hc4-v1.0-zh-test-desc': JTopics.HC4_V1_0_ZH_TEST_DESC, + 'hc4-v1.0-zh-test-desc-title': JTopics.HC4_V1_0_ZH_TEST_DESC_TITLE, + 'hc4-v1.0-zh-en-test-title': JTopics.HC4_V1_0_ZH_EN_TEST_TITLE, + 'hc4-v1.0-zh-en-test-desc': JTopics.HC4_V1_0_ZH_EN_TEST_DESC, + 'hc4-v1.0-zh-en-test-desc-title': JTopics.HC4_V1_0_ZH_EN_TEST_DESC_TITLE, + # NeuCLIR 2022 topics + 'neuclir22-en-title': JTopics.NEUCLIR22_EN_TITLE, + 'neuclir22-en-desc': JTopics.NEUCLIR22_EN_DESC, + 'neuclir22-en-desc-title': JTopics.NEUCLIR22_EN_DESC_TITLE, + 'neuclir22-fa-ht-title': JTopics.NEUCLIR22_FA_HT_TITLE, + 'neuclir22-fa-ht-desc': JTopics.NEUCLIR22_FA_HT_DESC, + 'neuclir22-fa-ht-desc-title': JTopics.NEUCLIR22_FA_HT_DESC_TITLE, + 'neuclir22-fa-mt-title': JTopics.NEUCLIR22_FA_MT_TITLE, + 'neuclir22-fa-mt-desc': JTopics.NEUCLIR22_FA_MT_DESC, + 'neuclir22-fa-mt-desc-title': JTopics.NEUCLIR22_FA_MT_DESC_TITLE, + 'neuclir22-ru-ht-title': JTopics.NEUCLIR22_RU_HT_TITLE, + 'neuclir22-ru-ht-desc': JTopics.NEUCLIR22_RU_HT_DESC, + 'neuclir22-ru-ht-desc-title': JTopics.NEUCLIR22_RU_HT_DESC_TITLE, + 'neuclir22-ru-mt-title': JTopics.NEUCLIR22_RU_MT_TITLE, + 'neuclir22-ru-mt-desc': JTopics.NEUCLIR22_RU_MT_DESC, + 'neuclir22-ru-mt-desc-title': JTopics.NEUCLIR22_RU_MT_DESC_TITLE, + 'neuclir22-zh-ht-title': JTopics.NEUCLIR22_ZH_HT_TITLE, + 'neuclir22-zh-ht-desc': JTopics.NEUCLIR22_ZH_HT_DESC, + 'neuclir22-zh-ht-desc-title': JTopics.NEUCLIR22_ZH_HT_DESC_TITLE, + 'neuclir22-zh-mt-title': JTopics.NEUCLIR22_ZH_MT_TITLE, + 'neuclir22-zh-mt-desc': JTopics.NEUCLIR22_ZH_MT_DESC, + 'neuclir22-zh-mt-desc-title': JTopics.NEUCLIR22_ZH_MT_DESC_TITLE, + # MIRACL topics + 'miracl-v1.0-ar-dev': JTopics.MIRACL_V10_AR_DEV, + 'miracl-v1.0-bn-dev': JTopics.MIRACL_V10_BN_DEV, + 'miracl-v1.0-en-dev': JTopics.MIRACL_V10_EN_DEV, + 'miracl-v1.0-es-dev': JTopics.MIRACL_V10_ES_DEV, + 'miracl-v1.0-fa-dev': JTopics.MIRACL_V10_FA_DEV, + 'miracl-v1.0-fi-dev': JTopics.MIRACL_V10_FI_DEV, + 'miracl-v1.0-fr-dev': JTopics.MIRACL_V10_FR_DEV, + 'miracl-v1.0-hi-dev': JTopics.MIRACL_V10_HI_DEV, + 'miracl-v1.0-id-dev': JTopics.MIRACL_V10_ID_DEV, + 'miracl-v1.0-ja-dev': JTopics.MIRACL_V10_JA_DEV, + 'miracl-v1.0-ko-dev': JTopics.MIRACL_V10_KO_DEV, + 'miracl-v1.0-ru-dev': JTopics.MIRACL_V10_RU_DEV, + 'miracl-v1.0-sw-dev': JTopics.MIRACL_V10_SW_DEV, + 'miracl-v1.0-te-dev': JTopics.MIRACL_V10_TE_DEV, + 'miracl-v1.0-th-dev': JTopics.MIRACL_V10_TH_DEV, + 'miracl-v1.0-zh-dev': JTopics.MIRACL_V10_ZH_DEV, + 'miracl-v1.0-de-dev': JTopics.MIRACL_V10_DE_DEV, + 'miracl-v1.0-yo-dev': JTopics.MIRACL_V10_YO_DEV, +} + +qrels_mapping = { + 'trec1-adhoc': JQrels.TREC1_ADHOC, + 'trec2-adhoc': JQrels.TREC2_ADHOC, + 'trec3-adhoc': JQrels.TREC3_ADHOC, + 'robust04': JQrels.ROBUST04, + 'robust05': JQrels.ROBUST05, + 'core17': JQrels.CORE17, + 'core18': JQrels.CORE18, + 'wt10g': JQrels.WT10G, + 'trec2004-terabyte': JQrels.TREC2004_TERABYTE, + 'trec2005-terabyte': JQrels.TREC2005_TERABYTE, + 'trec2006-terabyte': JQrels.TREC2006_TERABYTE, + 'trec2011-web': JQrels.TREC2011_WEB, + 'trec2012-web': JQrels.TREC2012_WEB, + 'trec2013-web': JQrels.TREC2013_WEB, + 'trec2014-web': JQrels.TREC2014_WEB, + 'mb11': JQrels.MB11, + 'mb12': JQrels.MB12, + 'mb13': JQrels.MB13, + 'mb14': JQrels.MB14, + 'car17v1.5-benchmarkY1test': JQrels.CAR17V15_BENCHMARK_Y1_TEST, + 'car17v2.0-benchmarkY1test': JQrels.CAR17V20_BENCHMARK_Y1_TEST, + 'dl19-doc': JQrels.TREC2019_DL_DOC, + 'dl19-passage': JQrels.TREC2019_DL_PASSAGE, + 'dl20-doc': JQrels.TREC2020_DL_DOC, + 'dl20-passage': JQrels.TREC2020_DL_PASSAGE, + 'dl21-doc': JQrels.TREC2021_DL_DOC, + 'dl21-passage': JQrels.TREC2021_DL_PASSAGE, + 'msmarco-doc-dev': JQrels.MSMARCO_DOC_DEV, + 'msmarco-passage-dev-subset': JQrels.MSMARCO_PASSAGE_DEV_SUBSET, + 'msmarco-v2-doc-dev': JQrels.MSMARCO_V2_DOC_DEV, + 'msmarco-v2-doc-dev2': JQrels.MSMARCO_V2_DOC_DEV2, + 'msmarco-v2-passage-dev': JQrels.MSMARCO_V2_PASSAGE_DEV, + 'msmarco-v2-passage-dev2': JQrels.MSMARCO_V2_PASSAGE_DEV2, + 'ntcir8-zh': JQrels.NTCIR8_ZH, + 'clef2006-fr': JQrels.CLEF2006_FR, + 'trec2002-ar': JQrels.TREC2002_AR, + 'fire2012-bn': JQrels.FIRE2012_BN, + 'fire2012-hi': JQrels.FIRE2012_HI, + 'fire2012-en': JQrels.FIRE2012_EN, + 'covid-complete': JQrels.COVID_COMPLETE, + 'covid-round1': JQrels.COVID_ROUND1, + 'covid-round2': JQrels.COVID_ROUND2, + 'covid-round3': JQrels.COVID_ROUND3, + 'covid-round3-cumulative': JQrels.COVID_ROUND3_CUMULATIVE, + 'covid-round4': JQrels.COVID_ROUND4, + 'covid-round4-cumulative': JQrels.COVID_ROUND4_CUMULATIVE, + 'covid-round5': JQrels.COVID_ROUND5, + 'trec2018-bl': JQrels.TREC2018_BL, + 'trec2019-bl': JQrels.TREC2019_BL, + 'trec2020-bl': JQrels.TREC2020_BL, + 'mrtydi-v1.1-arabic-train': JQrels.MRTYDI_V11_AR_TRAIN, + 'mrtydi-v1.1-arabic-dev': JQrels.MRTYDI_V11_AR_DEV, + 'mrtydi-v1.1-arabic-test': JQrels.MRTYDI_V11_AR_TEST, + 'mrtydi-v1.1-bengali-train': JQrels.MRTYDI_V11_BN_TRAIN, + 'mrtydi-v1.1-bengali-dev': JQrels.MRTYDI_V11_BN_DEV, + 'mrtydi-v1.1-bengali-test': JQrels.MRTYDI_V11_BN_TEST, + 'mrtydi-v1.1-english-train': JQrels.MRTYDI_V11_EN_TRAIN, + 'mrtydi-v1.1-english-dev': JQrels.MRTYDI_V11_EN_DEV, + 'mrtydi-v1.1-english-test': JQrels.MRTYDI_V11_EN_TEST, + 'mrtydi-v1.1-finnish-train': JQrels.MRTYDI_V11_FI_TRAIN, + 'mrtydi-v1.1-finnish-dev': JQrels.MRTYDI_V11_FI_DEV, + 'mrtydi-v1.1-finnish-test': JQrels.MRTYDI_V11_FI_TEST, + 'mrtydi-v1.1-indonesian-train': JQrels.MRTYDI_V11_ID_TRAIN, + 'mrtydi-v1.1-indonesian-dev': JQrels.MRTYDI_V11_ID_DEV, + 'mrtydi-v1.1-indonesian-test': JQrels.MRTYDI_V11_ID_TEST, + 'mrtydi-v1.1-japanese-train': JQrels.MRTYDI_V11_JA_TRAIN, + 'mrtydi-v1.1-japanese-dev': JQrels.MRTYDI_V11_JA_DEV, + 'mrtydi-v1.1-japanese-test': JQrels.MRTYDI_V11_JA_TEST, + 'mrtydi-v1.1-korean-train': JQrels.MRTYDI_V11_KO_TRAIN, + 'mrtydi-v1.1-korean-dev': JQrels.MRTYDI_V11_KO_DEV, + 'mrtydi-v1.1-korean-test': JQrels.MRTYDI_V11_KO_TEST, + 'mrtydi-v1.1-russian-train': JQrels.MRTYDI_V11_RU_TRAIN, + 'mrtydi-v1.1-russian-dev': JQrels.MRTYDI_V11_RU_DEV, + 'mrtydi-v1.1-russian-test': JQrels.MRTYDI_V11_RU_TEST, + 'mrtydi-v1.1-swahili-train': JQrels.MRTYDI_V11_SW_TRAIN, + 'mrtydi-v1.1-swahili-dev': JQrels.MRTYDI_V11_SW_DEV, + 'mrtydi-v1.1-swahili-test': JQrels.MRTYDI_V11_SW_TEST, + 'mrtydi-v1.1-telugu-train': JQrels.MRTYDI_V11_TE_TRAIN, + 'mrtydi-v1.1-telugu-dev': JQrels.MRTYDI_V11_TE_DEV, + 'mrtydi-v1.1-telugu-test': JQrels.MRTYDI_V11_TE_TEST, + 'mrtydi-v1.1-thai-train': JQrels.MRTYDI_V11_TH_TRAIN, + 'mrtydi-v1.1-thai-dev': JQrels.MRTYDI_V11_TH_DEV, + 'mrtydi-v1.1-thai-test': JQrels.MRTYDI_V11_TH_TEST, + 'beir-v1.0.0-trec-covid-test': JQrels.BEIR_V1_0_0_TREC_COVID_TEST, + 'beir-v1.0.0-bioasq-test': JQrels.BEIR_V1_0_0_BIOASQ_TEST, + 'beir-v1.0.0-nfcorpus-test': JQrels.BEIR_V1_0_0_NFCORPUS_TEST, + 'beir-v1.0.0-nq-test': JQrels.BEIR_V1_0_0_NQ_TEST, + 'beir-v1.0.0-hotpotqa-test': JQrels.BEIR_V1_0_0_HOTPOTQA_TEST, + 'beir-v1.0.0-fiqa-test': JQrels.BEIR_V1_0_0_FIQA_TEST, + 'beir-v1.0.0-signal1m-test': JQrels.BEIR_V1_0_0_SIGNAL1M_TEST, + 'beir-v1.0.0-trec-news-test': JQrels.BEIR_V1_0_0_TREC_NEWS_TEST, + 'beir-v1.0.0-robust04-test': JQrels.BEIR_V1_0_0_ROBUST04_TEST, + 'beir-v1.0.0-arguana-test': JQrels.BEIR_V1_0_0_ARGUANA_TEST, + 'beir-v1.0.0-webis-touche2020-test': JQrels.BEIR_V1_0_0_WEBIS_TOUCHE2020_TEST, + 'beir-v1.0.0-cqadupstack-android-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_ANDROID_TEST, + 'beir-v1.0.0-cqadupstack-english-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_ENGLISH_TEST, + 'beir-v1.0.0-cqadupstack-gaming-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_GAMING_TEST, + 'beir-v1.0.0-cqadupstack-gis-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_GIS_TEST, + 'beir-v1.0.0-cqadupstack-mathematica-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_MATHEMATICA_TEST, + 'beir-v1.0.0-cqadupstack-physics-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_PHYSICS_TEST, + 'beir-v1.0.0-cqadupstack-programmers-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_PROGRAMMERS_TEST, + 'beir-v1.0.0-cqadupstack-stats-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_STATS_TEST, + 'beir-v1.0.0-cqadupstack-tex-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_TEX_TEST, + 'beir-v1.0.0-cqadupstack-unix-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_UNIX_TEST, + 'beir-v1.0.0-cqadupstack-webmasters-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_WEBMASTERS_TEST, + 'beir-v1.0.0-cqadupstack-wordpress-test': JQrels.BEIR_V1_0_0_CQADUPSTACK_WORDPRESS_TEST, + 'beir-v1.0.0-quora-test': JQrels.BEIR_V1_0_0_QUORA_TEST, + 'beir-v1.0.0-dbpedia-entity-test': JQrels.BEIR_V1_0_0_DBPEDIA_ENTITY_TEST, + 'beir-v1.0.0-scidocs-test': JQrels.BEIR_V1_0_0_SCIDOCS_TEST, + 'beir-v1.0.0-fever-test': JQrels.BEIR_V1_0_0_FEVER_TEST, + 'beir-v1.0.0-climate-fever-test': JQrels.BEIR_V1_0_0_CLIMATE_FEVER_TEST, + 'beir-v1.0.0-scifact-test': JQrels.BEIR_V1_0_0_SCIFACT_TEST, + 'hc4-v1.0-fa-dev': JQrels.HC4_V1_0_FA_DEV, + 'hc4-v1.0-fa-test': JQrels.HC4_V1_0_FA_TEST, + 'hc4-v1.0-ru-dev': JQrels.HC4_V1_0_RU_DEV, + 'hc4-v1.0-ru-test': JQrels.HC4_V1_0_RU_TEST, + 'hc4-v1.0-zh-dev': JQrels.HC4_V1_0_ZH_DEV, + 'hc4-v1.0-zh-test': JQrels.HC4_V1_0_ZH_TEST, + 'hc4-neuclir22-fa-test': JQrels.HC4_NEUCLIR22_FA_TEST, + 'hc4-neuclir22-ru-test': JQrels.HC4_NEUCLIR22_RU_TEST, + 'hc4-neuclir22-zh-test': JQrels.HC4_NEUCLIR22_ZH_TEST, + 'miracl-v1.0-ar-dev': JQrels.MIRACL_V10_AR_DEV, + 'miracl-v1.0-bn-dev': JQrels.MIRACL_V10_BN_DEV, + 'miracl-v1.0-en-dev': JQrels.MIRACL_V10_EN_DEV, + 'miracl-v1.0-es-dev': JQrels.MIRACL_V10_ES_DEV, + 'miracl-v1.0-fa-dev': JQrels.MIRACL_V10_FA_DEV, + 'miracl-v1.0-fi-dev': JQrels.MIRACL_V10_FI_DEV, + 'miracl-v1.0-fr-dev': JQrels.MIRACL_V10_FR_DEV, + 'miracl-v1.0-hi-dev': JQrels.MIRACL_V10_HI_DEV, + 'miracl-v1.0-id-dev': JQrels.MIRACL_V10_ID_DEV, + 'miracl-v1.0-ja-dev': JQrels.MIRACL_V10_JA_DEV, + 'miracl-v1.0-ko-dev': JQrels.MIRACL_V10_KO_DEV, + 'miracl-v1.0-ru-dev': JQrels.MIRACL_V10_RU_DEV, + 'miracl-v1.0-sw-dev': JQrels.MIRACL_V10_SW_DEV, + 'miracl-v1.0-te-dev': JQrels.MIRACL_V10_TE_DEV, + 'miracl-v1.0-th-dev': JQrels.MIRACL_V10_TH_DEV, + 'miracl-v1.0-zh-dev': JQrels.MIRACL_V10_ZH_DEV, + 'miracl-v1.0-de-dev': JQrels.MIRACL_V10_DE_DEV, + 'miracl-v1.0-yo-dev': JQrels.MIRACL_V10_YO_DEV, +} + + +def get_topics(collection_name): + """ + Parameters + ---------- + collection_name : str + collection_name + + Returns + ------- + result : dictionary + Topics as a dictionary + """ + if collection_name not in topics_mapping: + raise ValueError(f'Topic {collection_name} Not Found') + + topics = JTopicReader.getTopicsWithStringIds(topics_mapping[collection_name]) + + t = {} + for topic in topics.keySet().toArray(): + + if topic.isdigit(): + # parse the keys into integers + topic_key = int(topic) + else: + topic_key = topic + + t[topic_key] = {} + for key in topics.get(topic).keySet().toArray(): + t[topic_key][key] = topics.get(topic).get(key) + return t + + +def get_topics_with_reader(reader_class, file): + # Yes, this is an insanely ridiculous method name. + topics = JTopicReader.getTopicsWithStringIdsFromFileWithTopicReaderClass(reader_class, file) + if topics is None: + raise ValueError(f'Unable to initialize TopicReader {reader_class} with file {file}!') + + t = {} + for topic in topics.keySet().toArray(): + + if topic.isdigit(): + # parse the keys into integers + topic_key = int(topic) + else: + topic_key = topic + + t[topic_key] = {} + for key in topics.get(topic).keySet().toArray(): + t[topic_key][key] = topics.get(topic).get(key) + return t + + +def get_qrels_file(collection_name): + """ + Parameters + ---------- + collection_name : str + collection_name + + Returns + ------- + path : str + path of the qrels file + """ + if collection_name in qrels_mapping: + qrels = qrels_mapping[collection_name] + target_path = os.path.join(get_cache_home(), qrels.path) + if os.path.exists(target_path): + return target_path + target_dir = os.path.split(target_path)[0] + if not os.path.exists(target_dir): + os.makedirs(target_dir) + with open(target_path, 'w') as file: + qrels_content = JRelevanceJudgments.getQrelsResource(qrels) + file.write(qrels_content) + return target_path + + raise FileNotFoundError(f'no qrels file for {collection_name}') + + +def get_qrels(collection_name): + """ + Parameters + ---------- + collection_name : str + collection_name + + Returns + ------- + result : dictionary + qrels as a dictionary + """ + file_path = get_qrels_file(collection_name) + qrels = {} + with open(file_path, 'r') as f: + for line in f: + qid, _, docid, judgement = line.rstrip().split() + + if qid.isdigit(): + qrels_key = int(qid) + else: + qrels_key = qid + + if docid.isdigit(): + doc_key = int(docid) + else: + doc_key = docid + + if qrels_key in qrels: + qrels[qrels_key][doc_key] = judgement + else: + qrels[qrels_key] = {doc_key: judgement} + return qrels diff --git a/pyserini/search/_deprecated.py b/pyserini/search/_deprecated.py new file mode 100644 index 0000000000000000000000000000000000000000..0d877b086659df95c4e6d493765ec5d9ed2cd0c7 --- /dev/null +++ b/pyserini/search/_deprecated.py @@ -0,0 +1,38 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from pyserini.search.lucene import LuceneImpactSearcher, LuceneSearcher, LuceneFusionSearcher + + +class SimpleSearcher(LuceneSearcher): + def __new__(cls, *args, **kwargs): + print('SimpleSearcher class has been deprecated, ' + 'please use LuceneSearcher from pyserini.search.lucene instead') + return super().__new__(cls) + + +class ImpactSearcher(LuceneImpactSearcher): + def __new__(cls, *args, **kwargs): + print('ImpactSearcher class has been deprecated, ' + 'please use LuceneImpactSearcher from pyserini.search.lucene instead') + return super().__new__(cls) + + +class SimpleFusionSearcher(LuceneFusionSearcher): + def __new__(cls, *args, **kwargs): + print('SimpleFusionSearcher class has been deprecated, ' + 'please use LuceneFusionSearcher from pyserini.search.lucene instead') + return super().__new__(cls) diff --git a/pyserini/search/faiss/__init__.py b/pyserini/search/faiss/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7562e4da4b98b202ff236dce18fa2041bd40f097 --- /dev/null +++ b/pyserini/search/faiss/__init__.py @@ -0,0 +1,24 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._searcher import DenseSearchResult, PRFDenseSearchResult, FaissSearcher, BinaryDenseSearcher, QueryEncoder, \ + DprQueryEncoder, BprQueryEncoder, DkrrDprQueryEncoder, TctColBertQueryEncoder, AnceQueryEncoder, AutoQueryEncoder +from ._model import AnceEncoder +from._prf import DenseVectorAveragePrf, DenseVectorRocchioPrf, DenseVectorAncePrf + +__all__ = ['DenseSearchResult', 'PRFDenseSearchResult', 'FaissSearcher', 'BinaryDenseSearcher', 'QueryEncoder', + 'DprQueryEncoder', 'BprQueryEncoder', 'DkrrDprQueryEncoder', 'TctColBertQueryEncoder', 'AnceEncoder', + 'AnceQueryEncoder', 'AutoQueryEncoder', 'DenseVectorAveragePrf', 'DenseVectorRocchioPrf', 'DenseVectorAncePrf'] diff --git a/pyserini/search/faiss/__main__.py b/pyserini/search/faiss/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..3e7e471ede1f8e0ad54f1666227cd5be686c8426 --- /dev/null +++ b/pyserini/search/faiss/__main__.py @@ -0,0 +1,293 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os +from typing import OrderedDict + +from tqdm import tqdm + +from pyserini.search import FaissSearcher, BinaryDenseSearcher, TctColBertQueryEncoder, QueryEncoder, \ + DprQueryEncoder, BprQueryEncoder, DkrrDprQueryEncoder, AnceQueryEncoder, AutoQueryEncoder, DenseVectorAveragePrf, \ + DenseVectorRocchioPrf, DenseVectorAncePrf +from pyserini.encode import PcaEncoder +from pyserini.query_iterator import get_query_iterator, TopicsFormat +from pyserini.output_writer import get_output_writer, OutputFormat +from pyserini.search.lucene import LuceneSearcher + +# from ._prf import DenseVectorAveragePrf, DenseVectorRocchioPrf + +# Fixes this error: "OMP: Error #15: Initializing libomp.a, but found libomp.dylib already initialized." +# https://stackoverflow.com/questions/53014306/error-15-initializing-libiomp5-dylib-but-found-libiomp5-dylib-already-initial +os.environ['KMP_DUPLICATE_LIB_OK'] = 'True' + + +def define_dsearch_args(parser): + parser.add_argument('--index', type=str, metavar='path to index or index name', required=True, + help="Path to Faiss index or name of prebuilt index.") + parser.add_argument('--encoder-class', type=str, metavar='which query encoder class to use. `default` would infer from the args.encoder', + required=False, + choices=["dkrr", "dpr", "bpr", "tct_colbert", "ance", "sentence", "contriever", "auto"], + default=None, + help='which query encoder class to use. `default` would infer from the args.encoder') + parser.add_argument('--encoder', type=str, metavar='path to query encoder checkpoint or encoder name', + required=False, + help="Path to query encoder pytorch checkpoint or hgf encoder model name") + parser.add_argument('--tokenizer', type=str, metavar='name or path', + required=False, + help="Path to a hgf tokenizer name or path") + parser.add_argument('--encoded-queries', type=str, metavar='path to query encoded queries dir or queries name', + required=False, + help="Path to query encoder pytorch checkpoint or hgf encoder model name") + parser.add_argument('--pca-model', type=str, metavar='path', required=False, + default=None, help="Path to a faiss pca model") + parser.add_argument('--device', type=str, metavar='device to run query encoder', required=False, default='cpu', + help="Device to run query encoder, cpu or [cuda:0, cuda:1, ...]") + parser.add_argument('--query-prefix', type=str, metavar='str', required=False, default=None, + help="Query prefix if exists.") + parser.add_argument('--searcher', type=str, metavar='str', required=False, default='simple', + help="dense searcher type") + parser.add_argument('--prf-depth', type=int, metavar='num of passages used for PRF', required=False, default=0, + help="Specify how many passages are used for PRF, 0: Simple retrieval with no PRF, > 0: perform PRF") + parser.add_argument('--prf-method', type=str, metavar='avg or rocchio', required=False, default='avg', + help="Choose PRF methods, avg or rocchio") + parser.add_argument('--rocchio-alpha', type=float, metavar='alpha parameter for rocchio', required=False, + default=0.9, + help="The alpha parameter to control the contribution from the query vector") + parser.add_argument('--rocchio-beta', type=float, metavar='beta parameter for rocchio', required=False, default=0.1, + help="The beta parameter to control the contribution from the average vector of the positive PRF passages") + parser.add_argument('--rocchio-gamma', type=float, metavar='gamma parameter for rocchio', required=False, default=0.1, + help="The gamma parameter to control the contribution from the average vector of the negative PRF passages") + parser.add_argument('--rocchio-topk', type=int, metavar='topk passages as positive for rocchio', required=False, default=3, + help="Set topk passages as positive PRF passages for rocchio") + parser.add_argument('--rocchio-bottomk', type=int, metavar='bottomk passages as negative for rocchio', required=False, default=0, + help="Set bottomk passages as negative PRF passages for rocchio, 0: do not use negatives prf passages.") + parser.add_argument('--sparse-index', type=str, metavar='sparse lucene index containing contents', required=False, + help='The path to sparse index containing the passage contents') + parser.add_argument('--ance-prf-encoder', type=str, metavar='query encoder path for ANCE-PRF', required=False, + help='The path or name to ANCE-PRF model checkpoint') + parser.add_argument('--ef-search', type=int, metavar='efSearch for HNSW index', required=False, default=None, + help="Set efSearch for HNSW index") + + +def init_query_encoder(encoder, encoder_class, tokenizer_name, topics_name, encoded_queries, device, prefix): + encoded_queries_map = { + 'msmarco-passage-dev-subset': 'tct_colbert-msmarco-passage-dev-subset', + 'dpr-nq-dev': 'dpr_multi-nq-dev', + 'dpr-nq-test': 'dpr_multi-nq-test', + 'dpr-trivia-dev': 'dpr_multi-trivia-dev', + 'dpr-trivia-test': 'dpr_multi-trivia-test', + 'dpr-wq-test': 'dpr_multi-wq-test', + 'dpr-squad-test': 'dpr_multi-squad-test', + 'dpr-curated-test': 'dpr_multi-curated-test' + } + encoder_class_map = { + "dkrr": DkrrDprQueryEncoder, + "dpr": DprQueryEncoder, + "bpr": BprQueryEncoder, + "tct_colbert": TctColBertQueryEncoder, + "ance": AnceQueryEncoder, + "sentence": AutoQueryEncoder, + "contriever": AutoQueryEncoder, + "auto": AutoQueryEncoder, + } + + if encoder: + _encoder_class = encoder_class + + # determine encoder_class + if encoder_class is not None: + encoder_class = encoder_class_map[encoder_class] + else: + # if any class keyword was matched in the given encoder name, + # use that encoder class + for class_keyword in encoder_class_map: + if class_keyword in encoder.lower(): + encoder_class = encoder_class_map[class_keyword] + break + + # if none of the class keyword was matched, + # use the AutoQueryEncoder + if encoder_class is None: + encoder_class = AutoQueryEncoder + + # prepare arguments to encoder class + kwargs = dict(encoder_dir=encoder, tokenizer_name=tokenizer_name, device=device, prefix=prefix) + if (_encoder_class == "sentence") or ("sentence" in encoder): + kwargs.update(dict(pooling='mean', l2_norm=True)) + if (_encoder_class == "contriever") or ("contriever" in encoder): + kwargs.update(dict(pooling='mean', l2_norm=False)) + return encoder_class(**kwargs) + + if encoded_queries: + if os.path.exists(encoded_queries): + if 'bpr' in encoded_queries: + return BprQueryEncoder(encoded_query_dir=encoded_queries) + else: + return QueryEncoder(encoded_queries) + else: + if 'bpr' in encoded_queries: + return BprQueryEncoder.load_encoded_queries(encoded_queries) + else: + return QueryEncoder.load_encoded_queries(encoded_queries) + + if topics_name in encoded_queries_map: + return QueryEncoder.load_encoded_queries(encoded_queries_map[topics_name]) + raise ValueError(f'No encoded queries for topic {topics_name}') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Search a Faiss index.') + parser.add_argument('--topics', type=str, metavar='topic_name', required=True, + help="Name of topics. Available: msmarco-passage-dev-subset.") + parser.add_argument('--hits', type=int, metavar='num', required=False, default=1000, help="Number of hits.") + parser.add_argument('--binary-hits', type=int, metavar='num', required=False, default=1000, + help="Number of binary hits.") + parser.add_argument("--rerank", action="store_true", help='whethere rerank bpr sparse results.') + parser.add_argument('--topics-format', type=str, metavar='format', default=TopicsFormat.DEFAULT.value, + help=f"Format of topics. Available: {[x.value for x in list(TopicsFormat)]}") + parser.add_argument('--output-format', type=str, metavar='format', default=OutputFormat.TREC.value, + help=f"Format of output. Available: {[x.value for x in list(OutputFormat)]}") + parser.add_argument('--output', type=str, metavar='path', required=True, help="Path to output file.") + parser.add_argument('--max-passage', action='store_true', + default=False, help="Select only max passage from document.") + parser.add_argument('--max-passage-hits', type=int, metavar='num', required=False, default=100, + help="Final number of hits when selecting only max passage.") + parser.add_argument('--max-passage-delimiter', type=str, metavar='str', required=False, default='#', + help="Delimiter between docid and passage id.") + parser.add_argument('--batch-size', type=int, metavar='num', required=False, default=1, + help="search batch of queries in parallel") + parser.add_argument('--threads', type=int, metavar='num', required=False, default=1, + help="maximum threads to use during search") + # For some test collections, a query is doc from the corpus (e.g., arguana in BEIR). + # We want to remove the query from the results. This is equivalent to -removeQuery in Java. + parser.add_argument('--remove-query', action='store_true', default=False, help="Remove query from results list.") + define_dsearch_args(parser) + args = parser.parse_args() + + query_iterator = get_query_iterator(args.topics, TopicsFormat(args.topics_format)) + topics = query_iterator.topics + + query_encoder = init_query_encoder( + args.encoder, args.encoder_class, args.tokenizer, args.topics, args.encoded_queries, args.device, args.query_prefix) + if args.pca_model: + query_encoder = PcaEncoder(query_encoder, args.pca_model) + kwargs = {} + if os.path.exists(args.index): + # create searcher from index directory + if args.searcher.lower() == 'bpr': + kwargs = dict(binary_k=args.binary_hits, rerank=args.rerank) + searcher = BinaryDenseSearcher(args.index, query_encoder) + else: + searcher = FaissSearcher(args.index, query_encoder) + else: + # create searcher from prebuilt index name + if args.searcher.lower() == 'bpr': + kwargs = dict(binary_k=args.binary_hits, rerank=args.rerank) + searcher = BinaryDenseSearcher.from_prebuilt_index(args.index, query_encoder) + else: + searcher = FaissSearcher.from_prebuilt_index(args.index, query_encoder) + + if args.ef_search: + searcher.set_hnsw_ef_search(args.ef_search) + + if not searcher: + exit() + + # Check PRF Flag + if args.prf_depth > 0 and type(searcher) == FaissSearcher: + PRF_FLAG = True + if args.prf_method.lower() == 'avg': + prfRule = DenseVectorAveragePrf() + elif args.prf_method.lower() == 'rocchio': + prfRule = DenseVectorRocchioPrf(args.rocchio_alpha, args.rocchio_beta, args.rocchio_gamma, + args.rocchio_topk, args.rocchio_bottomk) + # ANCE-PRF is using a new query encoder, so the input to DenseVectorAncePrf is different + elif args.prf_method.lower() == 'ance-prf' and type(query_encoder) == AnceQueryEncoder: + if os.path.exists(args.sparse_index): + sparse_searcher = LuceneSearcher(args.sparse_index) + else: + sparse_searcher = LuceneSearcher.from_prebuilt_index(args.sparse_index) + prf_query_encoder = AnceQueryEncoder(encoder_dir=args.ance_prf_encoder, tokenizer_name=args.tokenizer, + device=args.device) + prfRule = DenseVectorAncePrf(prf_query_encoder, sparse_searcher) + print(f'Running FaissSearcher with {args.prf_method.upper()} PRF...') + else: + PRF_FLAG = False + + # build output path + output_path = args.output + + print(f'Running {args.topics} topics, saving to {output_path}...') + tag = 'Faiss' + + output_writer = get_output_writer(output_path, OutputFormat(args.output_format), 'w', + max_hits=args.hits, tag=tag, topics=topics, + use_max_passage=args.max_passage, + max_passage_delimiter=args.max_passage_delimiter, + max_passage_hits=args.max_passage_hits) + + with output_writer: + batch_topics = list() + batch_topic_ids = list() + for index, (topic_id, text) in enumerate(tqdm(query_iterator, total=len(topics.keys()))): + if args.batch_size <= 1 and args.threads <= 1: + if PRF_FLAG: + emb_q, prf_candidates = searcher.search(text, k=args.prf_depth, return_vector=True, **kwargs) + # ANCE-PRF input is different, do not need query embeddings + if args.prf_method.lower() == 'ance-prf': + prf_emb_q = prfRule.get_prf_q_emb(text, prf_candidates) + else: + prf_emb_q = prfRule.get_prf_q_emb(emb_q[0], prf_candidates) + prf_emb_q = np.expand_dims(prf_emb_q, axis=0).astype('float32') + hits = searcher.search(prf_emb_q, k=args.hits, **kwargs) + else: + hits = searcher.search(text, args.hits, **kwargs) + results = [(topic_id, hits)] + else: + batch_topic_ids.append(str(topic_id)) + batch_topics.append(text) + if (index + 1) % args.batch_size == 0 or \ + index == len(topics.keys()) - 1: + if PRF_FLAG: + q_embs, prf_candidates = searcher.batch_search(batch_topics, batch_topic_ids, + k=args.prf_depth, return_vector=True, **kwargs) + # ANCE-PRF input is different, do not need query embeddings + if args.prf_method.lower() == 'ance-prf': + prf_embs_q = prfRule.get_batch_prf_q_emb(batch_topics, batch_topic_ids, prf_candidates) + else: + prf_embs_q = prfRule.get_batch_prf_q_emb(batch_topic_ids, q_embs, prf_candidates) + results = searcher.batch_search(prf_embs_q, batch_topic_ids, k=args.hits, threads=args.threads, + **kwargs) + results = [(id_, results[id_]) for id_ in batch_topic_ids] + else: + results = searcher.batch_search(batch_topics, batch_topic_ids, args.hits, threads=args.threads, + **kwargs) + results = [(id_, results[id_]) for id_ in batch_topic_ids] + batch_topic_ids.clear() + batch_topics.clear() + else: + continue + + for topic, hits in results: + # For some test collections, a query is doc from the corpus (e.g., arguana in BEIR). + # We want to remove the query from the results. + if args.remove_query: + hits = [hit for hit in hits if hit.docid != topic] + + output_writer.write(topic, hits) + + results.clear() diff --git a/pyserini/search/faiss/__pycache__/__init__.cpython-38.pyc b/pyserini/search/faiss/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e94c3f3f155e8db406e1aeee924e73e5c7e1f2c Binary files /dev/null and b/pyserini/search/faiss/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/faiss/__pycache__/__main__.cpython-38.pyc b/pyserini/search/faiss/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00e06407d159f0ffab5ffd9574310d33ce874555 Binary files /dev/null and b/pyserini/search/faiss/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/search/faiss/__pycache__/_model.cpython-38.pyc b/pyserini/search/faiss/__pycache__/_model.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b7e6eb0d1af95ace2ac76bc9178c8c5158afe78 Binary files /dev/null and b/pyserini/search/faiss/__pycache__/_model.cpython-38.pyc differ diff --git a/pyserini/search/faiss/__pycache__/_prf.cpython-38.pyc b/pyserini/search/faiss/__pycache__/_prf.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19369407dd5a74832f35e7c9883cde0da254f33b Binary files /dev/null and b/pyserini/search/faiss/__pycache__/_prf.cpython-38.pyc differ diff --git a/pyserini/search/faiss/__pycache__/_searcher.cpython-38.pyc b/pyserini/search/faiss/__pycache__/_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42ad8b1ee8fcf4f01c568ed97b35bcbc47b27804 Binary files /dev/null and b/pyserini/search/faiss/__pycache__/_searcher.cpython-38.pyc differ diff --git a/pyserini/search/faiss/_model.py b/pyserini/search/faiss/_model.py new file mode 100644 index 0000000000000000000000000000000000000000..3c6e3e5fc15aab9d11d5cdfa2a1678dd040443d7 --- /dev/null +++ b/pyserini/search/faiss/_model.py @@ -0,0 +1,77 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from typing import Optional + +from transformers import PreTrainedModel, RobertaConfig, RobertaModel +from transformers.file_utils import is_torch_available, requires_backends + +if is_torch_available(): + import torch + + +class AnceEncoder(PreTrainedModel): + config_class = RobertaConfig + base_model_prefix = 'ance_encoder' + load_tf_weights = None + _keys_to_ignore_on_load_missing = [r'position_ids'] + _keys_to_ignore_on_load_unexpected = [r'pooler', r'classifier'] + + def __init__(self, config: RobertaConfig): + requires_backends(self, 'torch') + super().__init__(config) + self.config = config + self.roberta = RobertaModel(config) + self.embeddingHead = torch.nn.Linear(config.hidden_size, 768) + self.norm = torch.nn.LayerNorm(768) + self.init_weights() + + # Copied from transformers.models.bert.modeling_bert.BertPreTrainedModel._init_weights + def _init_weights(self, module): + """ Initialize the weights """ + if isinstance(module, (torch.nn.Linear, torch.nn.Embedding)): + # Slightly different from the TF version which uses truncated_normal for initialization + # cf https://github.com/pytorch/pytorch/pull/5617 + module.weight.data.normal_(mean=0.0, std=self.config.initializer_range) + elif isinstance(module, torch.nn.LayerNorm): + module.bias.data.zero_() + module.weight.data.fill_(1.0) + if isinstance(module, torch.nn.Linear) and module.bias is not None: + module.bias.data.zero_() + + def init_weights(self): + self.roberta.init_weights() + self.embeddingHead.apply(self._init_weights) + self.norm.apply(self._init_weights) + + def forward( + self, + input_ids: torch.Tensor, + attention_mask: Optional[torch.Tensor] = None, + ): + input_shape = input_ids.size() + device = input_ids.device + if attention_mask is None: + attention_mask = ( + torch.ones(input_shape, device=device) + if input_ids is None + else (input_ids != self.roberta.config.pad_token_id) + ) + outputs = self.roberta(input_ids=input_ids, attention_mask=attention_mask) + sequence_output = outputs.last_hidden_state + pooled_output = sequence_output[:, 0, :] + pooled_output = self.norm(self.embeddingHead(pooled_output)) + return pooled_output diff --git a/pyserini/search/faiss/_prf.py b/pyserini/search/faiss/_prf.py new file mode 100644 index 0000000000000000000000000000000000000000..68167318d6ae252568b9423ab3cc84b9b72346e6 --- /dev/null +++ b/pyserini/search/faiss/_prf.py @@ -0,0 +1,209 @@ +import numpy as np +from typing import List, Dict +from pyserini.search.faiss import PRFDenseSearchResult, AnceQueryEncoder +from pyserini.search.lucene import LuceneSearcher +import json + + +class DenseVectorPrf: + def __init__(self): + pass + + def get_prf_q_emb(self, **kwargs): + pass + + def get_batch_prf_q_emb(self, **kwargs): + pass + + +class DenseVectorAveragePrf(DenseVectorPrf): + + def get_prf_q_emb(self, emb_qs: np.ndarray = None, prf_candidates: List[PRFDenseSearchResult] = None): + """Perform Average PRF with Dense Vectors + + Parameters + ---------- + emb_qs : np.ndarray + Query embedding + prf_candidates : List[PRFDenseSearchResult] + List of PRFDenseSearchResult, contains document embeddings. + + Returns + ------- + np.ndarray + return new query embeddings + """ + all_candidate_embs = [item.vectors for item in prf_candidates] + new_emb_qs = np.mean(np.vstack((emb_qs, all_candidate_embs)), axis=0) + return new_emb_qs + + def get_batch_prf_q_emb(self, topic_ids: List[str] = None, emb_qs: np.ndarray = None, + prf_candidates: Dict[str, List[PRFDenseSearchResult]] = None): + """Perform Average PRF with Dense Vectors + + Parameters + ---------- + topic_ids : List[str] + List of topic ids. + emb_qs : np.ndarray + Query embeddings + prf_candidates : List[PRFDenseSearchResult] + List of PRFDenseSearchResult, contains document embeddings. + + Returns + ------- + np.ndarray + return new query embeddings + """ + + qids = list() + new_emb_qs = list() + for index, topic_id in enumerate(topic_ids): + qids.append(topic_id) + new_emb_qs.append(self.get_prf_q_emb(emb_qs[index], prf_candidates[topic_id])) + new_emb_qs = np.array(new_emb_qs).astype('float32') + return new_emb_qs + + +class DenseVectorRocchioPrf(DenseVectorPrf): + def __init__(self, alpha: float, beta: float, gamma: float, topk: int, bottomk: int): + """ + Parameters + ---------- + alpha : float + Rocchio parameter, controls the weight assigned to the original query embedding. + beta : float + Rocchio parameter, controls the weight assigned to the positive document embeddings. + gamma : float + Rocchio parameter, controls the weight assigned to the negative document embeddings. + topk : int + Rocchio parameter, set topk documents as positive document feedbacks. + bottomk : int + Rocchio parameter, set bottomk documents as negative document feedbacks. + """ + DenseVectorPrf.__init__(self) + self.alpha = alpha + self.beta = beta + self.gamma = gamma + self.topk = topk + self.bottomk = bottomk + + def get_prf_q_emb(self, emb_qs: np.ndarray = None, prf_candidates: List[PRFDenseSearchResult] = None): + """Perform Rocchio PRF with Dense Vectors + + Parameters + ---------- + emb_qs : np.ndarray + query embedding + prf_candidates : List[PRFDenseSearchResult] + List of PRFDenseSearchResult, contains document embeddings. + + Returns + ------- + np.ndarray + return new query embeddings + """ + + all_candidate_embs = [item.vectors for item in prf_candidates] + weighted_query_embs = self.alpha * emb_qs + weighted_mean_pos_doc_embs = self.beta * np.mean(all_candidate_embs[:self.topk], axis=0) + new_emb_q = weighted_query_embs + weighted_mean_pos_doc_embs + if self.bottomk > 0: + weighted_mean_neg_doc_embs = self.gamma * np.mean(all_candidate_embs[-self.bottomk:], axis=0) + new_emb_q -= weighted_mean_neg_doc_embs + return new_emb_q + + def get_batch_prf_q_emb(self, topic_ids: List[str] = None, emb_qs: np.ndarray = None, + prf_candidates: Dict[str, List[PRFDenseSearchResult]] = None): + """Perform Rocchio PRF with Dense Vectors + + Parameters + ---------- + topic_ids : List[str] + List of topic ids. + emb_qs : np.ndarray + Query embeddings + prf_candidates : List[PRFDenseSearchResult] + List of PRFDenseSearchResult, contains document embeddings. + + Returns + ------- + np.ndarray + return new query embeddings + """ + qids = list() + new_emb_qs = list() + for index, topic_id in enumerate(topic_ids): + qids.append(topic_id) + new_emb_qs.append(self.get_prf_q_emb(emb_qs[index], prf_candidates[topic_id])) + new_emb_qs = np.array(new_emb_qs).astype('float32') + return new_emb_qs + + +class DenseVectorAncePrf(DenseVectorPrf): + def __init__(self, encoder: AnceQueryEncoder, sparse_searcher: LuceneSearcher): + """ + Parameters + ---------- + encoder : AnceQueryEncoder + The new ANCE query encoder for ANCE-PRF. + sparse_searcher : LuceneSearcher + The sparse searcher using lucene index, for retrieving doc contents. + """ + DenseVectorPrf.__init__(self) + self.encoder = encoder + self.sparse_searcher = sparse_searcher + + def get_prf_q_emb(self, query: str = None, prf_candidates: List[PRFDenseSearchResult] = None): + """Perform single ANCE-PRF with Dense Vectors + + Parameters + ---------- + query : str + query text + prf_candidates : List[PRFDenseSearchResult] + List of PRFDenseSearchResult, contains document embeddings. + + Returns + ------- + np.ndarray + return new query embeddings + """ + passage_texts = [query] + for item in prf_candidates: + raw_text = json.loads(self.sparse_searcher.doc(item.docid).raw()) + passage_texts.append(raw_text['contents']) + full_text = f'{self.encoder.tokenizer.cls_token}{self.encoder.tokenizer.sep_token.join(passage_texts)}{self.encoder.tokenizer.sep_token}' + emb_q = self.encoder.prf_encode(full_text) + emb_q = emb_q.reshape((1, len(emb_q))) + return emb_q + + def get_batch_prf_q_emb(self, topics: List[str], topic_ids: List[str], + prf_candidates: Dict[str, List[PRFDenseSearchResult]]) -> np.ndarray: + """Perform batch ANCE-PRF with Dense Vectors + + Parameters + ---------- + topics : List[str] + List of query texts. + topic_ids: List[str] + List of topic ids. + prf_candidates : List[PRFDenseSearchResult] + List of PRFDenseSearchResult, contains document embeddings. + + Returns + ------- + np.ndarray + return new query embeddings + """ + prf_passage_texts = list() + for index, query in enumerate(topics): + passage_texts = [query] + prf_candidate = prf_candidates[topic_ids[index]] + for item in prf_candidate: + raw_text = json.loads(self.sparse_searcher.doc(item.docid).raw()) + passage_texts.append(raw_text['contents']) + full_text = f'{self.encoder.tokenizer.cls_token}{self.encoder.tokenizer.sep_token.join(passage_texts)}{self.encoder.tokenizer.sep_token}' + prf_passage_texts.append(full_text) + emb_q = self.encoder.prf_batch_encode(prf_passage_texts) + return emb_q diff --git a/pyserini/search/faiss/_searcher.py b/pyserini/search/faiss/_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..3d5293c5d34bcfa9e160710476423d46360e57f1 --- /dev/null +++ b/pyserini/search/faiss/_searcher.py @@ -0,0 +1,680 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's dense search interface to FAISS index. +The main entry point is the ``FaissSearcher`` class. +""" + +import os +import time +from dataclasses import dataclass +from typing import Dict, List, Union, Optional, Tuple + +import numpy as np +import pandas as pd + +from transformers import (AutoModel, AutoTokenizer, BertModel, BertTokenizer, BertTokenizerFast, + DPRQuestionEncoder, DPRQuestionEncoderTokenizer, RobertaTokenizer) +from transformers.file_utils import is_faiss_available, requires_backends + +from pyserini.util import (download_encoded_queries, download_prebuilt_index, + get_dense_indexes_info, get_sparse_index) +from pyserini.search.lucene import LuceneSearcher +from pyserini.index import Document + +from ._model import AnceEncoder +import torch + +from ...encode import PcaEncoder + +if is_faiss_available(): + import faiss + +class QueryEncoder: + def __init__(self, encoded_query_dir: str = None): + self.has_model = False + self.has_encoded_query = False + if encoded_query_dir: + self.embedding = self._load_embeddings(encoded_query_dir) + self.has_encoded_query = True + + def encode(self, query: str): + return self.embedding[query] + + @classmethod + def load_encoded_queries(cls, encoded_query_name: str): + """Build a query encoder from a pre-encoded query; download the encoded queries if necessary. + + Parameters + ---------- + encoded_query_name : str + pre encoded query name. + + Returns + ------- + QueryEncoder + Encoder built from the pre encoded queries. + """ + print(f'Attempting to initialize pre-encoded queries {encoded_query_name}.') + try: + query_dir = download_encoded_queries(encoded_query_name) + except ValueError as e: + print(str(e)) + return None + + print(f'Initializing {encoded_query_name}...') + return cls(encoded_query_dir=query_dir) + + @staticmethod + def _load_embeddings(encoded_query_dir): + df = pd.read_pickle(os.path.join(encoded_query_dir, 'embedding.pkl')) + return dict(zip(df['text'].tolist(), df['embedding'].tolist())) + + +class TctColBertQueryEncoder(QueryEncoder): + + def __init__(self, encoder_dir: str = None, tokenizer_name: str = None, + encoded_query_dir: str = None, device: str = 'cpu', **kwargs): + super().__init__(encoded_query_dir) + if encoder_dir: + self.device = device + self.model = BertModel.from_pretrained(encoder_dir) + self.model.to(self.device) + self.tokenizer = BertTokenizer.from_pretrained(tokenizer_name or encoder_dir) + self.has_model = True + if (not self.has_model) and (not self.has_encoded_query): + raise Exception('Neither query encoder model nor encoded queries provided. Please provide at least one') + + def encode(self, query: str): + if self.has_model: + max_length = 36 # hardcode for now + inputs = self.tokenizer( + '[CLS] [Q] ' + query + '[MASK]' * max_length, + max_length=max_length, + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(self.device) + outputs = self.model(**inputs) + embeddings = outputs.last_hidden_state.detach().cpu().numpy() + return np.average(embeddings[:, 4:, :], axis=-2).flatten() + else: + return super().encode(query) + + +class DprQueryEncoder(QueryEncoder): + + def __init__(self, encoder_dir: str = None, tokenizer_name: str = None, + encoded_query_dir: str = None, device: str = 'cpu', **kwargs): + super().__init__(encoded_query_dir) + if encoder_dir: + self.device = device + self.model = DPRQuestionEncoder.from_pretrained(encoder_dir) + self.model.to(self.device) + self.tokenizer = DPRQuestionEncoderTokenizer.from_pretrained(tokenizer_name or encoder_dir) + self.has_model = True + if (not self.has_model) and (not self.has_encoded_query): + raise Exception('Neither query encoder model nor encoded queries provided. Please provide at least one') + + def encode(self, query: str): + if self.has_model: + input_ids = self.tokenizer(query, return_tensors='pt') + input_ids.to(self.device) + embeddings = self.model(input_ids["input_ids"]).pooler_output.detach().cpu().numpy() + return embeddings.flatten() + else: + return super().encode(query) + + +class BprQueryEncoder(QueryEncoder): + + def __init__(self, encoder_dir: str = None, tokenizer_name: str = None, + encoded_query_dir: str = None, device: str = 'cpu', **kwargs): + self.has_model = False + self.has_encoded_query = False + if encoded_query_dir: + self.embedding = self._load_embeddings(encoded_query_dir) + self.has_encoded_query = True + + if encoder_dir: + self.device = device + self.model = DPRQuestionEncoder.from_pretrained(encoder_dir) + self.model.to(self.device) + self.tokenizer = DPRQuestionEncoderTokenizer.from_pretrained(tokenizer_name or encoder_dir) + self.has_model = True + if (not self.has_model) and (not self.has_encoded_query): + raise Exception('Neither query encoder model nor encoded queries provided. Please provide at least one') + + def encode(self, query: str): + if self.has_model: + input_ids = self.tokenizer(query, return_tensors='pt') + input_ids.to(self.device) + embeddings = self.model(input_ids["input_ids"]).pooler_output.detach().cpu() + dense_embeddings = embeddings.numpy() + sparse_embeddings = self.convert_to_binary_code(embeddings).numpy() + return {'dense': dense_embeddings.flatten(), 'sparse': sparse_embeddings.flatten()} + else: + return super().encode(query) + + def convert_to_binary_code(self, input_repr: torch.Tensor): + return input_repr.new_ones(input_repr.size()).masked_fill_(input_repr < 0, -1.0) + + @staticmethod + def _load_embeddings(encoded_query_dir): + df = pd.read_pickle(os.path.join(encoded_query_dir, 'embedding.pkl')) + ret = {} + for text, dense, sparse in zip(df['text'].tolist(), df['dense_embedding'].tolist(), + df['sparse_embedding'].tolist()): + ret[text] = {'dense': dense, 'sparse': sparse} + return ret + + +class DkrrDprQueryEncoder(QueryEncoder): + + def __init__(self, encoder_dir: str = None, encoded_query_dir: str = None, device: str = 'cpu', + prefix: str = "question:", **kwargs): + super().__init__(encoded_query_dir) + self.device = device + self.model = BertModel.from_pretrained(encoder_dir) + self.model.to(self.device) + self.tokenizer = BertTokenizerFast.from_pretrained("bert-base-uncased") + self.has_model = True + self.prefix = prefix + + @staticmethod + def _mean_pooling(model_output, attention_mask): + model_output = model_output[0].masked_fill(1 - attention_mask[:, :, None], 0.) + model_output = torch.sum(model_output, dim=1) / torch.clamp(torch.sum(attention_mask, dim=1), min=1e-9)[:, None] + return model_output.flatten() + + def encode(self, query: str): + if self.has_model: + if self.prefix: + query = f'{self.prefix} {query}' + inputs = self.tokenizer(query, return_tensors='pt', max_length=40, padding="max_length") + inputs.to(self.device) + outputs = self.model(input_ids=inputs["input_ids"], + attention_mask=inputs["attention_mask"]) + embeddings = self._mean_pooling(outputs, inputs['attention_mask']).detach().cpu().numpy() + return embeddings.flatten() + else: + return super().encode(query) + + +class AnceQueryEncoder(QueryEncoder): + + def __init__(self, encoder_dir: str = None, tokenizer_name: str = None, + encoded_query_dir: str = None, device: str = 'cpu', **kwargs): + super().__init__(encoded_query_dir) + if encoder_dir: + self.device = device + self.model = AnceEncoder.from_pretrained(encoder_dir) + self.model.to(self.device) + self.tokenizer = RobertaTokenizer.from_pretrained(tokenizer_name or encoder_dir) + self.has_model = True + self.tokenizer.do_lower_case = True + if (not self.has_model) and (not self.has_encoded_query): + raise Exception('Neither query encoder model nor encoded queries provided. Please provide at least one') + + def encode(self, query: str): + if self.has_model: + inputs = self.tokenizer( + [query], + max_length=64, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(self.device) + embeddings = self.model(inputs["input_ids"]).detach().cpu().numpy() + return embeddings.flatten() + else: + return super().encode(query) + + def prf_encode(self, query: str): + if self.has_model: + inputs = self.tokenizer( + [query], + max_length=512, + padding='longest', + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(self.device) + embeddings = self.model(inputs["input_ids"]).detach().cpu().numpy() + return embeddings.flatten() + else: + return super().encode(query) + + def prf_batch_encode(self, query: List[str]): + inputs = self.tokenizer( + query, + max_length=512, + padding='longest', + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(self.device) + embeddings = self.model(inputs["input_ids"]).detach().cpu().numpy() + return embeddings + + +class AutoQueryEncoder(QueryEncoder): + + def __init__(self, encoder_dir: str = None, tokenizer_name: str = None, + encoded_query_dir: str = None, device: str = 'cpu', + pooling: str = 'cls', l2_norm: bool = False, **kwargs): + super().__init__(encoded_query_dir) + if encoder_dir: + self.device = device + self.model = AutoModel.from_pretrained(encoder_dir) + self.model.to(self.device) + try: + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or encoder_dir) + except: + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name or encoder_dir, use_fast=False) + self.has_model = True + self.pooling = pooling + self.l2_norm = l2_norm + if (not self.has_model) and (not self.has_encoded_query): + raise Exception('Neither query encoder model nor encoded queries provided. Please provide at least one') + + @staticmethod + def _mean_pooling(model_output, attention_mask): + token_embeddings = model_output[0] # First element of model_output contains all token embeddings + input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() + sum_embeddings = torch.sum(token_embeddings * input_mask_expanded, 1) + sum_mask = torch.clamp(input_mask_expanded.sum(1), min=1e-9) + return sum_embeddings / sum_mask + + def encode(self, query: str): + if self.has_model: + inputs = self.tokenizer( + query, + add_special_tokens=True, + return_tensors='pt', + truncation='only_first', + padding='longest', + return_token_type_ids=False, + ) + + inputs.to(self.device) + outputs = self.model(**inputs) + if self.pooling == "mean": + embeddings = self._mean_pooling(outputs, inputs['attention_mask']).detach().cpu().numpy() + else: + embeddings = outputs[0][:, 0, :].detach().cpu().numpy() + if self.l2_norm: + faiss.normalize_L2(embeddings) + return embeddings.flatten() + else: + return super().encode(query) + + +@dataclass +class DenseSearchResult: + docid: str + score: float + + +@dataclass +class PRFDenseSearchResult: + docid: str + score: float + vectors: [float] + + +class FaissSearcher: + """Simple Searcher for dense representation + + Parameters + ---------- + index_dir : str + Path to faiss index directory. + """ + + def __init__(self, index_dir: str, query_encoder: Union[QueryEncoder, str], + prebuilt_index_name: Optional[str] = None): + requires_backends(self, "faiss") + if isinstance(query_encoder, QueryEncoder) or isinstance(query_encoder, PcaEncoder): + self.query_encoder = query_encoder + else: + self.query_encoder = self._init_encoder_from_str(query_encoder) + self.index, self.docids = self.load_index(index_dir) + self.dimension = self.index.d + self.num_docs = self.index.ntotal + + assert self.docids is None or self.num_docs == len(self.docids) + if prebuilt_index_name: + sparse_index = get_sparse_index(prebuilt_index_name) + self.ssearcher = LuceneSearcher.from_prebuilt_index(sparse_index) + + @classmethod + def from_prebuilt_index(cls, prebuilt_index_name: str, query_encoder: QueryEncoder): + """Build a searcher from a pre-built index; download the index if necessary. + + Parameters + ---------- + query_encoder: QueryEncoder + the query encoder, which has `encode` method that convert query text to embedding + prebuilt_index_name : str + Prebuilt index name. + + Returns + ------- + FaissSearcher + Searcher built from the prebuilt faiss index. + """ + print(f'Attempting to initialize pre-built index {prebuilt_index_name}.') + try: + index_dir = download_prebuilt_index(prebuilt_index_name) + except ValueError as e: + print(str(e)) + return None + + print(f'Initializing {prebuilt_index_name}...') + return cls(index_dir, query_encoder, prebuilt_index_name) + + @staticmethod + def list_prebuilt_indexes(): + """Display information about available prebuilt indexes.""" + get_dense_indexes_info() + + def search(self, query: Union[str, np.ndarray], k: int = 10, threads: int = 1, return_vector: bool = False) \ + -> Union[List[DenseSearchResult], Tuple[np.ndarray, List[PRFDenseSearchResult]]]: + """Search the collection. + + Parameters + ---------- + query : Union[str, np.ndarray] + query text or query embeddings + k : int + Number of hits to return. + threads : int + Maximum number of threads to use for intra-query search. + return_vector : bool + Return the results with vectors + Returns + ------- + Union[List[DenseSearchResult], Tuple[np.ndarray, List[PRFDenseSearchResult]]] + Either returns a list of search results. + Or returns the query vector with the list of PRF dense search results with vectors. + """ + + def encode_query(): + if isinstance(query, str): + emb_q = self.query_encoder.encode(query) + assert len(emb_q) == self.dimension + emb_q = emb_q.reshape((1, len(emb_q))) + else: + emb_q = query + return emb_q + emb_q = encode_query() + + def retrieve(): + faiss.omp_set_num_threads(threads) + if return_vector: + distances, indexes, vectors = self.index.search_and_reconstruct(emb_q, k) + vectors = vectors[0] + distances = distances.flat + indexes = indexes.flat + return emb_q, [PRFDenseSearchResult(self.docids[idx], score, vector) + for score, idx, vector in zip(distances, indexes, vectors) if idx != -1] + else: + distances, indexes = self.index.search(emb_q, k) + distances = distances.flat + indexes = indexes.flat + return [DenseSearchResult(self.docids[idx], score) + for score, idx in zip(distances, indexes) if idx != -1] + output = retrieve() + return output + + def batch_search(self, queries: Union[List[str], np.ndarray], q_ids: List[str], k: int = 10, + threads: int = 1, return_vector: bool = False) \ + -> Union[Dict[str, List[DenseSearchResult]], Tuple[np.ndarray, Dict[str, List[PRFDenseSearchResult]]]]: + """ + + Parameters + ---------- + queries : Union[List[str], np.ndarray] + List of query texts or list of query embeddings + q_ids : List[str] + List of corresponding query ids. + k : int + Number of hits to return. + threads : int + Maximum number of threads to use. + return_vector : bool + Return the results with vectors + + Returns + ------- + Union[Dict[str, List[DenseSearchResult]], Tuple[np.ndarray, Dict[str, List[PRFDenseSearchResult]]]] + Either returns a dictionary holding the search results, with the query ids as keys and the + corresponding lists of search results as the values. + Or returns a tuple with ndarray of query vectors and a dictionary of PRF Dense Search Results with vectors + """ + + def encode_query_batch(): + if isinstance(queries, np.ndarray): + q_embs = queries + else: + q_embs = np.array([self.query_encoder.encode(q) for q in queries]) + n, m = q_embs.shape + assert m == self.dimension + return q_embs + q_embs = encode_query_batch() + + def retrieve_batch(): + faiss.omp_set_num_threads(threads) + if return_vector: + D, I, V = self.index.search_and_reconstruct(q_embs, k) + return q_embs, {key: [PRFDenseSearchResult(self.docids[idx], score, vector) + for score, idx, vector in zip(distances, indexes, vectors) if idx != -1] + for key, distances, indexes, vectors in zip(q_ids, D, I, V)} + else: + D, I = self.index.search(q_embs, k) + return {key: [DenseSearchResult(self.docids[idx], score) + for score, idx in zip(distances, indexes) if idx != -1] + for key, distances, indexes in zip(q_ids, D, I)} + output = retrieve_batch() + return output + + def load_index(self, index_dir: str): + index_path = os.path.join(index_dir, 'index') + docid_path = os.path.join(index_dir, 'docid') + index = faiss.read_index(index_path) + docids = self.load_docids(docid_path) + return index, docids + + def doc(self, docid: Union[str, int]) -> Optional[Document]: + """Return the :class:`Document` corresponding to ``docid``. Since dense indexes don't store documents + but sparse indexes do, route over to corresponding sparse index (according to prebuilt_index_info.py) + and use its doc API + + Parameters + ---------- + docid : Union[str, int] + Overloaded ``docid``: either an external collection ``docid`` (``str``) or an internal Lucene ``docid`` + (``int``). + + Returns + ------- + Document + :class:`Document` corresponding to the ``docid``. + """ + return self.ssearcher.doc(docid) if self.ssearcher else None + + @staticmethod + def _init_encoder_from_str(encoder): + encoder_lower = encoder.lower() + if 'dpr' in encoder_lower: + return DprQueryEncoder(encoder_dir=encoder) + elif 'tct_colbert' in encoder_lower: + return TctColBertQueryEncoder(encoder_dir=encoder) + elif 'ance' in encoder_lower: + return AnceQueryEncoder(encoder_dir=encoder) + elif 'sentence' in encoder_lower: + return AutoQueryEncoder(encoder_dir=encoder, pooling='mean', l2_norm=True) + else: + return AutoQueryEncoder(encoder_dir=encoder) + + @staticmethod + def load_docids(docid_path: str) -> List[str]: + id_f = open(docid_path, 'r') + docids = [line.rstrip() for line in id_f.readlines()] + id_f.close() + return docids + + def set_hnsw_ef_search(self, ef_search: int): + self.index.hnsw.efSearch = ef_search + + +class BinaryDenseSearcher(FaissSearcher): + """Simple Searcher for binary-dense representation + + Parameters + ---------- + index_dir : str + Path to faiss index directory. + """ + + def __init__(self, index_dir: str, query_encoder: Union[QueryEncoder, str], + prebuilt_index_name: Optional[str] = None): + super().__init__(index_dir, query_encoder, prebuilt_index_name) + + def search(self, query: str, k: int = 10, binary_k: int = 100, rerank: bool = True, threads: int = 1) \ + -> List[DenseSearchResult]: + """Search the collection. + + Parameters + ---------- + query : str + query text + k : int + Number of hits to return at second stage. + binary_k : int + Number of hits to return at first stage. + rerank: bool + Whether to use dense repr to rerank the binary ranking results. + threads : int + Maximum number of threads to use for intra-query search. + Returns + ------- + List[DenseSearchResult] + List of search results. + """ + + + ret = self.query_encoder.encode(query) + dense_emb_q = ret['dense'] + sparse_emb_q = ret['sparse'] + assert len(dense_emb_q) == self.dimension + assert len(sparse_emb_q) == self.dimension + + dense_emb_q = dense_emb_q.reshape((1, len(dense_emb_q))) + sparse_emb_q = sparse_emb_q.reshape((1, len(sparse_emb_q))) + faiss.omp_set_num_threads(threads) + distances, indexes = self.binary_dense_search(k, binary_k, rerank, dense_emb_q, sparse_emb_q) + distances = distances.flat + indexes = indexes.flat + return [DenseSearchResult(str(idx), score) + for score, idx in zip(distances, indexes) if idx != -1] + + def batch_search(self, queries: List[str], q_ids: List[str], k: int = 10, binary_k: int = 100, + rerank: bool = True, threads: int = 1) -> Dict[str, List[DenseSearchResult]]: + """ + + Parameters + ---------- + queries : List[str] + List of query texts + q_ids : List[str] + List of corresponding query ids. + k : int + Number of hits to return. + binary_k : int + Number of hits to return at first stage. + rerank: bool + Whether to use dense repr to rerank the binary ranking results. + threads : int + Maximum number of threads to use. + + Returns + ------- + Dict[str, List[DenseSearchResult]] + Dictionary holding the search results, with the query ids as keys and the corresponding lists of search + results as the values. + """ + dense_q_embs = [] + sparse_q_embs = [] + for q in queries: + ret = self.query_encoder.encode(q) + dense_q_embs.append(ret['dense']) + sparse_q_embs.append(ret['sparse']) + dense_q_embs = np.array(dense_q_embs) + sparse_q_embs = np.array(sparse_q_embs) + n, m = dense_q_embs.shape + assert m == self.dimension + faiss.omp_set_num_threads(threads) + D, I = self.binary_dense_search(k, binary_k, rerank, dense_q_embs, sparse_q_embs) + return {key: [DenseSearchResult(str(idx), score) + for score, idx in zip(distances, indexes) if idx != -1] + for key, distances, indexes in zip(q_ids, D, I)} + + def binary_dense_search(self, k, binary_k, rerank, dense_emb_q, sparse_emb_q): + num_queries = dense_emb_q.shape[0] + sparse_emb_q = np.packbits(np.where(sparse_emb_q > 0, 1, 0)).reshape(num_queries, -1) + + if not rerank: + distances, indexes = self.index.search(sparse_emb_q, k) + else: + raw_index = self.index.index + _, indexes = raw_index.search(sparse_emb_q, binary_k) + sparse_emb_p = np.vstack( + [np.unpackbits(raw_index.reconstruct(int(id_))) for id_ in indexes.reshape(-1)] + ) + sparse_emb_p = sparse_emb_p.reshape( + dense_emb_q.shape[0], binary_k, dense_emb_q.shape[1] + ) + sparse_emb_p = sparse_emb_p.astype(np.float32) + sparse_emb_p = sparse_emb_p * 2 - 1 + distances = np.einsum("ijk,ik->ij", sparse_emb_p, dense_emb_q) + sorted_indices = np.argsort(-distances, axis=1) + + indexes = indexes[np.arange(num_queries)[:, None], sorted_indices] + indexes = np.array([self.index.id_map.at(int(id_)) for id_ in indexes.reshape(-1)], dtype=np.int) + indexes = indexes.reshape(num_queries, -1)[:, :k] + distances = distances[np.arange(num_queries)[:, None], sorted_indices][:, :k] + return distances, indexes + + def load_index(self, index_dir: str): + index_path = os.path.join(index_dir, 'index') + index = faiss.read_index_binary(index_path) + return index, None + + @staticmethod + def _init_encoder_from_str(encoder): + encoder = encoder.lower() + if 'bpr' in encoder: + return BprQueryEncoder(encoder_dir=encoder) + else: + raise NotImplementedError diff --git a/pyserini/search/hybrid/__init__.py b/pyserini/search/hybrid/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..61ca8b0c8ed5d15cf1189c6468158999d869bdf5 --- /dev/null +++ b/pyserini/search/hybrid/__init__.py @@ -0,0 +1,19 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._searcher import HybridSearcher + +__all__ = ['HybridSearcher'] \ No newline at end of file diff --git a/pyserini/search/hybrid/__main__.py b/pyserini/search/hybrid/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..4d19a0c3c2afefdc286a5aa4d775d80bcac8bf4a --- /dev/null +++ b/pyserini/search/hybrid/__main__.py @@ -0,0 +1,185 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +import sys + +from tqdm import tqdm + +from pyserini.search.faiss import FaissSearcher +from pyserini.query_iterator import get_query_iterator, TopicsFormat +from pyserini.output_writer import get_output_writer, OutputFormat +from pyserini.search.lucene import LuceneImpactSearcher, LuceneSearcher +from pyserini.search.hybrid import HybridSearcher + +from pyserini.search.faiss.__main__ import define_dsearch_args, init_query_encoder +from pyserini.search.lucene.__main__ import define_search_args, set_bm25_parameters + +# Fixes this error: "OMP: Error #15: Initializing libomp.a, but found libomp.dylib already initialized." +# https://stackoverflow.com/questions/53014306/error-15-initializing-libiomp5-dylib-but-found-libiomp5-dylib-already-initial +os.environ['KMP_DUPLICATE_LIB_OK'] = 'True' + + +def define_fusion_args(parser): + parser.add_argument('--alpha', type=float, metavar='num', required=False, default=0.1, + help="alpha for hybrid search") + parser.add_argument('--hits', type=int, required=False, default=1000, help='number of hits from dense and sparse') + parser.add_argument('--normalization', action='store_true', required=False, help='hybrid score with normalization') + parser.add_argument('--weight-on-dense', action='store_true', required=False, help='weight on dense part') + + +def parse_args(parser, commands): + # Divide argv by commands + split_argv = [[]] + for c in sys.argv[1:]: + if c in commands.choices: + split_argv.append([c]) + else: + split_argv[-1].append(c) + # Initialize namespace + args = argparse.Namespace() + for c in commands.choices: + setattr(args, c, None) + # Parse each command + parser.parse_args(split_argv[0], namespace=args) # Without command + for argv in split_argv[1:]: # Commands + n = argparse.Namespace() + setattr(args, argv[0], n) + parser.parse_args(argv, namespace=n) + return args + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Conduct a hybrid search on dense+sparse indexes.') + + commands = parser.add_subparsers(title='sub-commands') + + dense_parser = commands.add_parser('dense') + define_dsearch_args(dense_parser) + + sparse_parser = commands.add_parser('sparse') + define_search_args(sparse_parser) + + fusion_parser = commands.add_parser('fusion') + define_fusion_args(fusion_parser) + + run_parser = commands.add_parser('run') + run_parser.add_argument('--topics', type=str, metavar='topic_name', required=False, + help="Name of topics. Available: msmarco-passage-dev-subset.") + run_parser.add_argument('--hits', type=int, metavar='num', required=False, default=1000, help="Number of hits.") + run_parser.add_argument('--topics-format', type=str, metavar='format', default=TopicsFormat.DEFAULT.value, + help=f"Format of topics. Available: {[x.value for x in list(TopicsFormat)]}") + run_parser.add_argument('--output-format', type=str, metavar='format', default=OutputFormat.TREC.value, + help=f"Format of output. Available: {[x.value for x in list(OutputFormat)]}") + run_parser.add_argument('--output', type=str, metavar='path', required=False, help="Path to output file.") + run_parser.add_argument('--max-passage', action='store_true', + default=False, help="Select only max passage from document.") + run_parser.add_argument('--max-passage-hits', type=int, metavar='num', required=False, default=100, + help="Final number of hits when selecting only max passage.") + run_parser.add_argument('--max-passage-delimiter', type=str, metavar='str', required=False, default='#', + help="Delimiter between docid and passage id.") + run_parser.add_argument('--batch-size', type=int, metavar='num', required=False, + default=1, help="Specify batch size to search the collection concurrently.") + run_parser.add_argument('--threads', type=int, metavar='num', required=False, + default=1, help="Maximum number of threads to use.") + + args = parse_args(parser, commands) + + query_iterator = get_query_iterator(args.run.topics, TopicsFormat(args.run.topics_format)) + topics = query_iterator.topics + + query_encoder = init_query_encoder(args.dense.encoder, + args.dense.encoder_class, + args.dense.tokenizer, + args.run.topics, + args.dense.encoded_queries, + args.dense.device, + args.dense.query_prefix) + + if os.path.exists(args.dense.index): + # create searcher from index directory + dsearcher = FaissSearcher(args.dense.index, query_encoder) + else: + # create searcher from prebuilt index name + dsearcher = FaissSearcher.from_prebuilt_index(args.dense.index, query_encoder) + + if not dsearcher: + exit() + + if os.path.exists(args.sparse.index): + # create searcher from index directory + if args.sparse.impact: + ssearcher = LuceneImpactSearcher(args.sparse.index, args.sparse.encoder, args.sparse.min_idf) + else: + ssearcher = LuceneSearcher(args.sparse.index) + else: + # create searcher from prebuilt index name + if args.sparse.impact: + ssearcher = LuceneImpactSearcher.from_prebuilt_index(args.sparse.index, args.sparse.encoder, args.sparse.min_idf) + else: + ssearcher = LuceneSearcher.from_prebuilt_index(args.sparse.index) + + if not ssearcher: + exit() + + set_bm25_parameters(ssearcher, args.sparse.index, args.sparse.k1, args.sparse.b) + + if args.sparse.language != 'en': + ssearcher.set_language(args.sparse.language) + + hsearcher = HybridSearcher(dsearcher, ssearcher) + if not hsearcher: + exit() + + # build output path + output_path = args.run.output + + print(f'Running {args.run.topics} topics, saving to {output_path}...') + tag = 'hybrid' + + output_writer = get_output_writer(output_path, OutputFormat(args.run.output_format), 'w', + max_hits=args.run.hits, tag=tag, topics=topics, + use_max_passage=args.run.max_passage, + max_passage_delimiter=args.run.max_passage_delimiter, + max_passage_hits=args.run.max_passage_hits) + + with output_writer: + batch_topics = list() + batch_topic_ids = list() + for index, (topic_id, text) in enumerate(tqdm(query_iterator, total=len(topics.keys()))): + if args.run.batch_size <= 1 and args.run.threads <= 1: + hits = hsearcher.search(text, args.fusion.hits, args.run.hits, args.fusion.alpha, args.fusion.normalization, args.fusion.weight_on_dense) + results = [(topic_id, hits)] + else: + batch_topic_ids.append(str(topic_id)) + batch_topics.append(text) + if (index + 1) % args.run.batch_size == 0 or \ + index == len(topics.keys()) - 1: + results = hsearcher.batch_search( + batch_topics, batch_topic_ids, args.fusion.hits, args.run.hits, args.run.threads, + args.fusion.alpha, args.fusion.normalization, args.fusion.weight_on_dense) + results = [(id_, results[id_]) for id_ in batch_topic_ids] + batch_topic_ids.clear() + batch_topics.clear() + else: + continue + + for topic, hits in results: + output_writer.write(topic, hits) + + results.clear() diff --git a/pyserini/search/hybrid/__pycache__/__init__.cpython-38.pyc b/pyserini/search/hybrid/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..51015711b58561c6955f0df08d65c47ce75ca3d8 Binary files /dev/null and b/pyserini/search/hybrid/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/hybrid/__pycache__/__main__.cpython-38.pyc b/pyserini/search/hybrid/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8814d5497c40ea9661770101b51bb39bfc11d21 Binary files /dev/null and b/pyserini/search/hybrid/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/search/hybrid/__pycache__/_searcher.cpython-38.pyc b/pyserini/search/hybrid/__pycache__/_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b615aac086765e918cbaedad6f4ba4edea434483 Binary files /dev/null and b/pyserini/search/hybrid/__pycache__/_searcher.cpython-38.pyc differ diff --git a/pyserini/search/hybrid/_searcher.py b/pyserini/search/hybrid/_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..45f3be3aebae0151994ceabd20de6a7f0aa7c2cd --- /dev/null +++ b/pyserini/search/hybrid/_searcher.py @@ -0,0 +1,82 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's hybrid searcher by Dense + Sparse +""" + +from typing import List, Dict +from pyserini.search.lucene import LuceneSearcher +from pyserini.search.faiss import FaissSearcher, DenseSearchResult + + +class HybridSearcher: + """Hybrid Searcher for dense + sparse + + Parameters + ---------- + dense_searcher : FaissSearcher + sparse_searcher : LuceneSearcher + """ + + def __init__(self, dense_searcher, sparse_searcher): + self.dense_searcher = dense_searcher + self.sparse_searcher = sparse_searcher + + def search(self, query: str, k0: int = 10, k: int = 10, alpha: float = 0.1, normalization: bool = False, weight_on_dense: bool = False) -> List[DenseSearchResult]: + dense_hits = self.dense_searcher.search(query, k0) + sparse_hits = self.sparse_searcher.search(query, k0) + return self._hybrid_results(dense_hits, sparse_hits, alpha, k, normalization, weight_on_dense) + + def batch_search(self, queries: List[str], q_ids: List[str], k0: int = 10, k: int = 10, threads: int = 1, + alpha: float = 0.1, normalization: bool = False, weight_on_dense: bool = False) \ + -> Dict[str, List[DenseSearchResult]]: + dense_result = self.dense_searcher.batch_search(queries, q_ids, k0, threads) + sparse_result = self.sparse_searcher.batch_search(queries, q_ids, k0, threads) + hybrid_result = { + key: self._hybrid_results(dense_result[key], sparse_result[key], alpha, k, normalization, weight_on_dense) + for key in dense_result + } + return hybrid_result + + @staticmethod + def _hybrid_results(dense_results, sparse_results, alpha, k, normalization=False, weight_on_dense=False): + dense_hits = {hit.docid: hit.score for hit in dense_results} + sparse_hits = {hit.docid: hit.score for hit in sparse_results} + hybrid_result = [] + min_dense_score = min(dense_hits.values()) if len(dense_hits) > 0 else 0 + max_dense_score = max(dense_hits.values()) if len(dense_hits) > 0 else 1 + min_sparse_score = min(sparse_hits.values()) if len(sparse_hits) > 0 else 0 + max_sparse_score = max(sparse_hits.values()) if len(sparse_hits) > 0 else 1 + for doc in set(dense_hits.keys()) | set(sparse_hits.keys()): + if doc not in dense_hits: + sparse_score = sparse_hits[doc] + dense_score = min_dense_score + elif doc not in sparse_hits: + sparse_score = min_sparse_score + dense_score = dense_hits[doc] + else: + sparse_score = sparse_hits[doc] + dense_score = dense_hits[doc] + if normalization: + sparse_score = (sparse_score - (min_sparse_score + max_sparse_score) / 2) \ + / (max_sparse_score - min_sparse_score) + dense_score = (dense_score - (min_dense_score + max_dense_score) / 2) \ + / (max_dense_score - min_dense_score) + + score = alpha * sparse_score + dense_score if not weight_on_dense else sparse_score + alpha * dense_score + hybrid_result.append(DenseSearchResult(doc, score)) + return sorted(hybrid_result, key=lambda x: x.score, reverse=True)[:k] diff --git a/pyserini/search/lucene/__init__.py b/pyserini/search/lucene/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..22063fc37248c5cfc310c5fc4bd74c020b02c264 --- /dev/null +++ b/pyserini/search/lucene/__init__.py @@ -0,0 +1,29 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._geo_searcher import LuceneGeoSearcher +from ._impact_searcher import JImpactSearcherResult, LuceneImpactSearcher, SlimSearcher +from ._searcher import JLuceneSearcherResult, LuceneSimilarities, \ + LuceneFusionSearcher, LuceneSearcher + +__all__ = ['JImpactSearcherResult', + 'JLuceneSearcherResult', + 'LuceneFusionSearcher', + 'LuceneGeoSearcher', + 'LuceneImpactSearcher', + 'LuceneSearcher', + 'SlimSearcher', + 'LuceneSimilarities'] diff --git a/pyserini/search/lucene/__main__.py b/pyserini/search/lucene/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..dc50dcb7afc7c4607857504dceaebc5147edac67 --- /dev/null +++ b/pyserini/search/lucene/__main__.py @@ -0,0 +1,326 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os + +from tqdm import tqdm +from transformers import AutoTokenizer + +from pyserini.analysis import JDefaultEnglishAnalyzer, JWhiteSpaceAnalyzer +from pyserini.output_writer import OutputFormat, get_output_writer +from pyserini.pyclass import autoclass +from pyserini.query_iterator import get_query_iterator, TopicsFormat +from pyserini.search import JDisjunctionMaxQueryGenerator +from . import LuceneImpactSearcher, LuceneSearcher, SlimSearcher +from .reranker import ClassifierType, PseudoRelevanceClassifierReranker + + +def set_bm25_parameters(searcher, index, k1=None, b=None): + if k1 is not None or b is not None: + if k1 is None or b is None: + print('Must set *both* k1 and b for BM25!') + exit() + print(f'Setting BM25 parameters: k1={k1}, b={b}') + searcher.set_bm25(k1, b) + else: + # Automatically set bm25 parameters based on known index... + if index == 'msmarco-passage' or index == 'msmarco-passage-slim' or index == 'msmarco-v1-passage' or \ + index == 'msmarco-v1-passage-slim' or index == 'msmarco-v1-passage-full': + # See https://github.com/castorini/anserini/blob/master/docs/regressions-msmarco-passage.md + print('MS MARCO passage: setting k1=0.82, b=0.68') + searcher.set_bm25(0.82, 0.68) + elif index == 'msmarco-passage-expanded' or \ + index == 'msmarco-v1-passage-d2q-t5' or \ + index == 'msmarco-v1-passage-d2q-t5-docvectors': + # See https://github.com/castorini/anserini/blob/master/docs/regressions-msmarco-passage-docTTTTTquery.md + print('MS MARCO passage w/ doc2query-T5 expansion: setting k1=2.18, b=0.86') + searcher.set_bm25(2.18, 0.86) + elif index == 'msmarco-doc' or index == 'msmarco-doc-slim' or index == 'msmarco-v1-doc' or \ + index == 'msmarco-v1-doc-slim' or index == 'msmarco-v1-doc-full': + # See https://github.com/castorini/anserini/blob/master/docs/regressions-msmarco-doc.md + print('MS MARCO doc: setting k1=4.46, b=0.82') + searcher.set_bm25(4.46, 0.82) + elif index == 'msmarco-doc-per-passage' or index == 'msmarco-doc-per-passage-slim' or \ + index == 'msmarco-v1-doc-segmented' or index == 'msmarco-v1-doc-segmented-slim' or \ + index == 'msmarco-v1-doc-segmented-full': + # See https://github.com/castorini/anserini/blob/master/docs/regressions-msmarco-doc-segmented.md + print('MS MARCO doc, per passage: setting k1=2.16, b=0.61') + searcher.set_bm25(2.16, 0.61) + elif index == 'msmarco-doc-expanded-per-doc' or \ + index == 'msmarco-v1-doc-d2q-t5' or \ + index == 'msmarco-v1-doc-d2q-t5-docvectors': + # See https://github.com/castorini/anserini/blob/master/docs/regressions-msmarco-doc-docTTTTTquery.md + print('MS MARCO doc w/ doc2query-T5 (per doc) expansion: setting k1=4.68, b=0.87') + searcher.set_bm25(4.68, 0.87) + elif index == 'msmarco-doc-expanded-per-passage' or \ + index == 'msmarco-v1-doc-segmented-d2q-t5' or \ + index == 'msmarco-v1-doc-segmented-d2q-t5-docvectors': + # See https://github.com/castorini/anserini/blob/master/docs/regressions-msmarco-doc-segmented-docTTTTTquery.md + print('MS MARCO doc w/ doc2query-T5 (per passage) expansion: setting k1=2.56, b=0.59') + searcher.set_bm25(2.56, 0.59) + + +def define_search_args(parser): + parser.add_argument('--index', type=str, metavar='path to index or index name', required=True, + help="Path to Lucene index or name of prebuilt index.") + parser.add_argument('--encoded-corpus', type=str, default=None, help="path to stored sparse vectors") + + parser.add_argument('--impact', action='store_true', help="Use Impact.") + parser.add_argument('--encoder', type=str, default=None, help="encoder name") + parser.add_argument('--min-idf', type=int, default=0, help="minimum idf") + + parser.add_argument('--bm25', action='store_true', default=True, help="Use BM25 (default).") + parser.add_argument('--k1', type=float, help='BM25 k1 parameter.') + parser.add_argument('--b', type=float, help='BM25 b parameter.') + + parser.add_argument('--rm3', action='store_true', help="Use RM3") + parser.add_argument('--rocchio', action='store_true', help="Use Rocchio") + parser.add_argument('--rocchio-use-negative', action='store_true', help="Use nonrelevant labels in Rocchio") + parser.add_argument('--qld', action='store_true', help="Use QLD") + + parser.add_argument('--language', type=str, help='language code for BM25, e.g. zh for Chinese', default='en') + parser.add_argument('--pretokenized', action='store_true', help="Boolean switch to accept pre-tokenized topics") + + parser.add_argument('--prcl', type=ClassifierType, nargs='+', default=[], + help='Specify the classifier PseudoRelevanceClassifierReranker uses.') + parser.add_argument('--prcl.vectorizer', dest='vectorizer', type=str, + help='Type of vectorizer. Available: TfidfVectorizer, BM25Vectorizer.') + parser.add_argument('--prcl.r', dest='r', type=int, default=10, + help='Number of positive labels in pseudo relevance feedback.') + parser.add_argument('--prcl.n', dest='n', type=int, default=100, + help='Number of negative labels in pseudo relevance feedback.') + parser.add_argument('--prcl.alpha', dest='alpha', type=float, default=0.5, + help='Alpha value for interpolation in pseudo relevance feedback.') + + parser.add_argument('--fields', metavar="key=value", nargs='+', + help='Fields to search with assigned float weights.') + parser.add_argument('--dismax', action='store_true', default=False, + help='Use disjunction max queries when searching multiple fields.') + parser.add_argument('--dismax.tiebreaker', dest='tiebreaker', type=float, default=0.0, + help='The tiebreaker weight to use in disjunction max queries.') + + parser.add_argument('--stopwords', type=str, help='Path to file with customstopwords.') + + +if __name__ == "__main__": + JLuceneSearcher = autoclass('io.anserini.search.SimpleSearcher') + parser = argparse.ArgumentParser(description='Search a Lucene index.') + define_search_args(parser) + parser.add_argument('--topics', type=str, metavar='topic_name', required=True, + help="Name of topics. Available: robust04, robust05, core17, core18.") + parser.add_argument('--hits', type=int, metavar='num', + required=False, default=1000, help="Number of hits.") + parser.add_argument('--topics-format', type=str, metavar='format', default=TopicsFormat.DEFAULT.value, + help=f"Format of topics. Available: {[x.value for x in list(TopicsFormat)]}") + parser.add_argument('--output-format', type=str, metavar='format', default=OutputFormat.TREC.value, + help=f"Format of output. Available: {[x.value for x in list(OutputFormat)]}") + parser.add_argument('--output', type=str, metavar='path', + help="Path to output file.") + parser.add_argument('--max-passage', action='store_true', + default=False, help="Select only max passage from document.") + parser.add_argument('--max-passage-hits', type=int, metavar='num', required=False, default=100, + help="Final number of hits when selecting only max passage.") + parser.add_argument('--max-passage-delimiter', type=str, metavar='str', required=False, default='#', + help="Delimiter between docid and passage id.") + parser.add_argument('--batch-size', type=int, metavar='num', required=False, + default=1, help="Specify batch size to search the collection concurrently.") + parser.add_argument('--threads', type=int, metavar='num', required=False, + default=1, help="Maximum number of threads to use.") + parser.add_argument('--tokenizer', type=str, help='tokenizer used to preprocess topics') + parser.add_argument('--remove-duplicates', action='store_true', default=False, help="Remove duplicate docs.") + # For some test collections, a query is doc from the corpus (e.g., arguana in BEIR). + # We want to remove the query from the results. This is equivalent to -removeQuery in Java. + parser.add_argument('--remove-query', action='store_true', default=False, help="Remove query from results list.") + + args = parser.parse_args() + + query_iterator = get_query_iterator(args.topics, TopicsFormat(args.topics_format)) + topics = query_iterator.topics + + if not args.impact: + if os.path.exists(args.index): + # create searcher from index directory + searcher = LuceneSearcher(args.index) + else: + # create searcher from prebuilt index name + searcher = LuceneSearcher.from_prebuilt_index(args.index) + elif args.impact: + if os.path.exists(args.index): + if args.encoded_corpus is not None: + searcher = SlimSearcher(args.encoded_corpus, args.index, args.encoder, args.min_idf) + else: + searcher = LuceneImpactSearcher(args.index, args.encoder, args.min_idf) + else: + if args.encoded_corpus is not None: + searcher = SlimSearcher.from_prebuilt_index(args.encoded_corpus, args.index, args.encoder, args.min_idf) + else: + searcher = LuceneImpactSearcher.from_prebuilt_index(args.index, args.encoder, args.min_idf) + + if args.language != 'en': + searcher.set_language(args.language) + + if not searcher: + exit() + + search_rankers = [] + + if args.qld: + search_rankers.append('qld') + searcher.set_qld() + elif args.bm25: + search_rankers.append('bm25') + set_bm25_parameters(searcher, args.index, args.k1, args.b) + + if args.rm3: + search_rankers.append('rm3') + searcher.set_rm3() + + if args.rocchio: + search_rankers.append('rocchio') + if args.rocchio_use_negative: + searcher.set_rocchio(gamma=0.15, use_negative=True) + else: + searcher.set_rocchio() + + fields = dict() + if args.fields: + fields = dict([pair.split('=') for pair in args.fields]) + print(f'Searching over fields: {fields}') + + query_generator = None + if args.dismax: + query_generator = JDisjunctionMaxQueryGenerator(args.tiebreaker) + print(f'Using dismax query generator with tiebreaker={args.tiebreaker}') + + if args.pretokenized: + analyzer = JWhiteSpaceAnalyzer() + searcher.set_analyzer(analyzer) + if args.tokenizer is not None: + raise ValueError(f"--tokenizer is not supported with when setting --pretokenized.") + + if args.tokenizer != None: + analyzer = JWhiteSpaceAnalyzer() + searcher.set_analyzer(analyzer) + print(f'Using whitespace analyzer because of pretokenized topics') + tokenizer = AutoTokenizer.from_pretrained(args.tokenizer) + print(f'Using {args.tokenizer} to preprocess topics') + + if args.stopwords: + analyzer = JDefaultEnglishAnalyzer.fromArguments('porter', False, args.stopwords) + searcher.set_analyzer(analyzer) + print(f'Using custom stopwords={args.stopwords}') + + # get re-ranker + use_prcl = args.prcl and len(args.prcl) > 0 and args.alpha > 0 + if use_prcl is True: + ranker = PseudoRelevanceClassifierReranker( + searcher.index_dir, args.vectorizer, args.prcl, r=args.r, n=args.n, alpha=args.alpha) + + # build output path + output_path = args.output + if output_path is None: + if use_prcl is True: + clf_rankers = [] + for t in args.prcl: + if t == ClassifierType.LR: + clf_rankers.append('lr') + elif t == ClassifierType.SVM: + clf_rankers.append('svm') + + r_str = f'prcl.r_{args.r}' + n_str = f'prcl.n_{args.n}' + a_str = f'prcl.alpha_{args.alpha}' + clf_str = 'prcl_' + '+'.join(clf_rankers) + tokens1 = ['run', args.topics, '+'.join(search_rankers)] + tokens2 = [args.vectorizer, clf_str, r_str, n_str, a_str] + output_path = '.'.join(tokens1) + '-' + '-'.join(tokens2) + ".txt" + else: + tokens = ['run', args.topics, '+'.join(search_rankers), 'txt'] + output_path = '.'.join(tokens) + + print(f'Running {args.topics} topics, saving to {output_path}...') + tag = output_path[:-4] if args.output is None else 'Anserini' + + output_writer = get_output_writer(output_path, OutputFormat(args.output_format), 'w', + max_hits=args.hits, tag=tag, topics=topics, + use_max_passage=args.max_passage, + max_passage_delimiter=args.max_passage_delimiter, + max_passage_hits=args.max_passage_hits) + + with output_writer: + batch_topics = list() + batch_topic_ids = list() + for index, (topic_id, text) in enumerate(tqdm(query_iterator, total=len(topics.keys()))): + if (args.tokenizer != None): + toks = tokenizer.tokenize(text) + text = ' ' + text = text.join(toks) + if args.batch_size <= 1 and args.threads <= 1: + if args.impact: + hits = searcher.search(text, args.hits, fields=fields) + else: + hits = searcher.search(text, args.hits, query_generator=query_generator, fields=fields) + results = [(topic_id, hits)] + else: + batch_topic_ids.append(str(topic_id)) + batch_topics.append(text) + if (index + 1) % args.batch_size == 0 or \ + index == len(topics.keys()) - 1: + if args.impact: + results = searcher.batch_search( + batch_topics, batch_topic_ids, args.hits, args.threads, fields=fields + ) + else: + results = searcher.batch_search( + batch_topics, batch_topic_ids, args.hits, args.threads, + query_generator=query_generator, fields=fields + ) + results = [(id_, results[id_]) for id_ in batch_topic_ids] + batch_topic_ids.clear() + batch_topics.clear() + else: + continue + + for topic, hits in results: + # do rerank + if use_prcl and len(hits) > (args.r + args.n): + docids = [hit.docid.strip() for hit in hits] + scores = [hit.score for hit in hits] + scores, docids = ranker.rerank(docids, scores) + docid_score_map = dict(zip(docids, scores)) + for hit in hits: + hit.score = docid_score_map[hit.docid.strip()] + + if args.remove_duplicates: + seen_docids = set() + dedup_hits = [] + for hit in hits: + if hit.docid.strip() in seen_docids: + continue + seen_docids.add(hit.docid.strip()) + dedup_hits.append(hit) + hits = dedup_hits + + # For some test collections, a query is doc from the corpus (e.g., arguana in BEIR). + # We want to remove the query from the results. + if args.remove_query: + hits = [hit for hit in hits if hit.docid != topic] + + # write results + output_writer.write(topic, hits) + + results.clear() diff --git a/pyserini/search/lucene/__pycache__/__init__.cpython-38.pyc b/pyserini/search/lucene/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17bd575ee60d9c84cda71042b727c48562d47c4d Binary files /dev/null and b/pyserini/search/lucene/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/lucene/__pycache__/__main__.cpython-38.pyc b/pyserini/search/lucene/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8261f9a6c9f38bb5198ae337c14bf09b9734f2af Binary files /dev/null and b/pyserini/search/lucene/__pycache__/__main__.cpython-38.pyc differ diff --git a/pyserini/search/lucene/__pycache__/_geo_searcher.cpython-38.pyc b/pyserini/search/lucene/__pycache__/_geo_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebbdc1ad263475e51fd3d01f941a9d2887f10899 Binary files /dev/null and b/pyserini/search/lucene/__pycache__/_geo_searcher.cpython-38.pyc differ diff --git a/pyserini/search/lucene/__pycache__/_impact_searcher.cpython-38.pyc b/pyserini/search/lucene/__pycache__/_impact_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86163fdf107f2677440253527f92995c1977886b Binary files /dev/null and b/pyserini/search/lucene/__pycache__/_impact_searcher.cpython-38.pyc differ diff --git a/pyserini/search/lucene/__pycache__/_searcher.cpython-38.pyc b/pyserini/search/lucene/__pycache__/_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbf6362cb02eb048219faeaabdb19901acac7e98 Binary files /dev/null and b/pyserini/search/lucene/__pycache__/_searcher.cpython-38.pyc differ diff --git a/pyserini/search/lucene/__pycache__/querybuilder.cpython-38.pyc b/pyserini/search/lucene/__pycache__/querybuilder.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63da635d7cc858f9a232159dae4978d2d6456303 Binary files /dev/null and b/pyserini/search/lucene/__pycache__/querybuilder.cpython-38.pyc differ diff --git a/pyserini/search/lucene/__pycache__/reranker.cpython-38.pyc b/pyserini/search/lucene/__pycache__/reranker.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..489cde424253bc053e5bbcef1b0f3e9ffc76cdfa Binary files /dev/null and b/pyserini/search/lucene/__pycache__/reranker.cpython-38.pyc differ diff --git a/pyserini/search/lucene/_geo_searcher.py b/pyserini/search/lucene/_geo_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..24c1f7e467bc7068e36a849db030410ea0b01d86 --- /dev/null +++ b/pyserini/search/lucene/_geo_searcher.py @@ -0,0 +1,82 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's Python search interface to Anserini. The main entry point is the ``LuceneGeoSearcher`` +class, which wraps the Java class ``SimpleGeoSearcher`` in Anserini. +""" + +import logging +from typing import List + +from pyserini.pyclass import autoclass +from pyserini.search import JQuery + + +logger = logging.getLogger(__name__) + + +# Wrappers around Lucene classes +JSort = autoclass('org.apache.lucene.search.Sort') +JLatLonDocValuesField = autoclass('org.apache.lucene.document.LatLonDocValuesField') +JLatLonShape = autoclass('org.apache.lucene.document.LatLonShape') +JQueryRelation = autoclass('org.apache.lucene.document.ShapeField$QueryRelation') +JLongPoint = autoclass('org.apache.lucene.document.LongPoint') + +# Wrappers around Anserini classes +JGeoSearcher = autoclass('io.anserini.search.SimpleGeoSearcher') +JGeoSearcherResult = autoclass('io.anserini.search.SimpleSearcher$Result') + + +class LuceneGeoSearcher: + """Wrapper class for ``SimpleGeoSearcher`` in Anserini. + + Parameters + ---------- + index_dir : str + Path to Lucene index directory. + """ + + def __init__(self, index_dir: str): + self.index_dir = index_dir + self.object = JGeoSearcher(index_dir) + + def search(self, q: JQuery, k: int = 10, sort: JSort = None) -> List[JGeoSearcherResult]: + """Search the collection. + + Parameters + ---------- + q : JQuery + Lucene query. + k : int + Number of hits to return. + sort : JSort + Optional distance sort that allows searcher to return results based on distance to a point. + + Returns + ------- + List[JGeoSearcherResult] + List of search results. + """ + if sort: + hits = self.object.searchGeo(q, k, sort) + else: + hits = self.object.searchGeo(q, k) + return hits + + def close(self): + """Close the searcher.""" + self.object.close() diff --git a/pyserini/search/lucene/_impact_searcher.py b/pyserini/search/lucene/_impact_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..56f499f90a77dc2859e927e6e62e1e096d6046f5 --- /dev/null +++ b/pyserini/search/lucene/_impact_searcher.py @@ -0,0 +1,378 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's Python search interface to Anserini. The main entry point is the ``LuceneImpactSearcher`` +class, which wraps the Java class with the same name in Anserini. +""" + +import logging +import os +import pickle +from tqdm import tqdm +from typing import Dict, List, Optional, Union +from collections import namedtuple + +import numpy as np +import scipy + +from pyserini.encode import QueryEncoder, TokFreqQueryEncoder, UniCoilQueryEncoder, \ + CachedDataQueryEncoder, SpladeQueryEncoder, SlimQueryEncoder +from pyserini.index import Document +from pyserini.pyclass import autoclass, JFloat, JArrayList, JHashMap +from pyserini.util import download_prebuilt_index, download_encoded_corpus + +logger = logging.getLogger(__name__) + +# Wrappers around Anserini classes +JImpactSearcher = autoclass('io.anserini.search.SimpleImpactSearcher') +JImpactSearcherResult = autoclass('io.anserini.search.SimpleImpactSearcher$Result') + + +class LuceneImpactSearcher: + """Wrapper class for ``ImpactSearcher`` in Anserini. + + Parameters + ---------- + index_dir : str + Path to Lucene index directory. + query_encoder: QueryEncoder or str + QueryEncoder to encode query text + """ + + def __init__(self, index_dir: str, query_encoder: Union[QueryEncoder, str], min_idf=0): + self.index_dir = index_dir + self.idf = self._compute_idf(index_dir) + self.min_idf = min_idf + self.object = JImpactSearcher(index_dir) + self.num_docs = self.object.get_total_num_docs() + if isinstance(query_encoder, str) or query_encoder is None: + self.query_encoder = self._init_query_encoder_from_str(query_encoder) + else: + self.query_encoder = query_encoder + + @classmethod + def from_prebuilt_index(cls, prebuilt_index_name: str, query_encoder: Union[QueryEncoder, str], min_idf=0): + """Build a searcher from a pre-built index; download the index if necessary. + + Parameters + ---------- + prebuilt_index_name : str + Prebuilt index name. + + Returns + ------- + LuceneSearcher + Searcher built from the prebuilt index. + """ + print(f'Attempting to initialize pre-built index {prebuilt_index_name}.') + try: + index_dir = download_prebuilt_index(prebuilt_index_name) + except ValueError as e: + print(str(e)) + return None + + print(f'Initializing {prebuilt_index_name}...') + return cls(index_dir, query_encoder, min_idf) + + @staticmethod + def list_prebuilt_indexes(): + """Display information about available prebuilt indexes.""" + print("Not Implemented") + + def search(self, q: str, k: int = 10, fields=dict()) -> List[JImpactSearcherResult]: + """Search the collection. + + Parameters + ---------- + q : str + Query string. + k : int + Number of hits to return. + min_idf : int + Minimum idf for query tokens + fields : dict + Optional map of fields to search with associated boosts. + + Returns + ------- + List[JImpactSearcherResult] + List of search results. + """ + + jfields = JHashMap() + for (field, boost) in fields.items(): + jfields.put(field, JFloat(boost)) + + encoded_query = self.query_encoder.encode(q) + jquery = JHashMap() + for (token, weight) in encoded_query.items(): + if token in self.idf and self.idf[token] > self.min_idf: + jquery.put(token, JFloat(weight)) + + if not fields: + hits = self.object.search(jquery, k) + else: + hits = self.object.searchFields(jquery, jfields, k) + + return hits + + def batch_search(self, queries: List[str], qids: List[str], + k: int = 10, threads: int = 1, fields=dict()) -> Dict[str, List[JImpactSearcherResult]]: + """Search the collection concurrently for multiple queries, using multiple threads. + + Parameters + ---------- + queries : List[str] + List of query string. + qids : List[str] + List of corresponding query ids. + k : int + Number of hits to return. + threads : int + Maximum number of threads to use. + min_idf : int + Minimum idf for query tokens + fields : dict + Optional map of fields to search with associated boosts. + + Returns + ------- + Dict[str, List[JImpactSearcherResult]] + Dictionary holding the search results, with the query ids as keys and the corresponding lists of search + results as the values. + """ + query_lst = JArrayList() + qid_lst = JArrayList() + for q in queries: + encoded_query = self.query_encoder.encode(q) + jquery = JHashMap() + for (token, weight) in encoded_query.items(): + if token in self.idf and self.idf[token] > self.min_idf: + jquery.put(token, JFloat(weight)) + query_lst.add(jquery) + + for qid in qids: + jqid = qid + qid_lst.add(jqid) + + jfields = JHashMap() + for (field, boost) in fields.items(): + jfields.put(field, JFloat(boost)) + + if not fields: + results = self.object.batch_search(query_lst, qid_lst, int(k), int(threads)) + else: + results = self.object.batch_search_fields(query_lst, qid_lst, int(k), int(threads), jfields) + return {r.getKey(): r.getValue() for r in results.entrySet().toArray()} + + def doc(self, docid: Union[str, int]) -> Optional[Document]: + """Return the :class:`Document` corresponding to ``docid``. The ``docid`` is overloaded: if it is of type + ``str``, it is treated as an external collection ``docid``; if it is of type ``int``, it is treated as an + internal Lucene ``docid``. Method returns ``None`` if the ``docid`` does not exist in the index. + + Parameters + ---------- + docid : Union[str, int] + Overloaded ``docid``: either an external collection ``docid`` (``str``) or an internal Lucene ``docid`` + (``int``). + + Returns + ------- + Document + :class:`Document` corresponding to the ``docid``. + """ + lucene_document = self.object.document(docid) + if lucene_document is None: + return None + return Document(lucene_document) + + def doc_by_field(self, field: str, q: str) -> Optional[Document]: + """Return the :class:`Document` based on a ``field`` with ``id``. For example, this method can be used to fetch + document based on alternative primary keys that have been indexed, such as an article's DOI. Method returns + ``None`` if no such document exists. + + Parameters + ---------- + field : str + Field to look up. + q : str + Unique id of document. + + Returns + ------- + Document + :class:`Document` whose ``field`` is ``id``. + """ + lucene_document = self.object.documentByField(field, q) + if lucene_document is None: + return None + return Document(lucene_document) + + def close(self): + """Close the searcher.""" + self.object.close() + + @staticmethod + def _init_query_encoder_from_str(query_encoder): + if query_encoder is None: + return TokFreqQueryEncoder() + elif os.path.isfile(query_encoder) and (query_encoder.endswith('jsonl') or query_encoder.encode('json')): + return CachedDataQueryEncoder(query_encoder) + elif 'unicoil' in query_encoder.lower(): + return UniCoilQueryEncoder(query_encoder) + elif 'splade' in query_encoder.lower(): + return SpladeQueryEncoder(query_encoder) + elif 'slim' in query_encoder.lower(): + return SlimQueryEncoder(query_encoder) + + @staticmethod + def _compute_idf(index_path): + from pyserini.index.lucene import IndexReader + index_reader = IndexReader(index_path) + tokens = [] + dfs = [] + for term in index_reader.terms(): + dfs.append(term.df) + tokens.append(term.term) + idfs = np.log((index_reader.stats()['documents'] / (np.array(dfs)))) + return dict(zip(tokens, idfs)) + + +SlimResult = namedtuple("SlimResult", "docid score") + +def maxsim(entry): + q_embed, d_embeds, d_lens, qid, scores, docids = entry + if len(d_embeds) == 0: + return qid, scores, docids + d_embeds = scipy.sparse.vstack(d_embeds).transpose() # (LD x 1000) x D + max_scores = (q_embed@d_embeds).todense() # LQ x (LD x 1000) + scores = [] + start = 0 + for d_len in d_lens: + scores.append(max_scores[:, start:start+d_len].max(1).sum()) + start += d_len + scores, docids = list(zip(*sorted(list(zip(scores, docids)), key=lambda x: -x[0]))) + return qid, scores, docids + +class SlimSearcher(LuceneImpactSearcher): + def __init__(self, encoded_corpus, *args, **kwargs): + super().__init__(*args, **kwargs) + print("Loading sparse corpus vectors for fast reranking...") + with open(os.path.join(encoded_corpus, "sparse_range.pkl"), "rb") as f: + self.sparse_ranges = pickle.load(f) + sparse_vecs = scipy.sparse.load_npz(os.path.join(encoded_corpus, "sparse_vec.npz")) + self.sparse_vecs = [sparse_vecs[start:end] for start, end in tqdm(self.sparse_ranges)] + + @classmethod + def from_prebuilt_index(cls, encoded_corpus:str, prebuilt_index_name: str, query_encoder: Union[QueryEncoder, str], min_idf=0): + print(f'Attempting to initialize pre-built index {prebuilt_index_name}.') + try: + index_dir = download_prebuilt_index(prebuilt_index_name) + encoded_corpus = download_encoded_corpus(encoded_corpus) + except ValueError as e: + print(str(e)) + return None + + print(f'Initializing {prebuilt_index_name}...') + return cls(encoded_corpus, index_dir, query_encoder, min_idf) + + def search(self, q: str, k: int = 10, fields=dict()) -> List[JImpactSearcherResult]: + jfields = JHashMap() + for (field, boost) in fields.items(): + jfields.put(field, JFloat(boost)) + + fusion_encoded_query, sparse_encoded_query = self.query_encoder.encode(q, return_sparse=True) + jquery = JHashMap() + for (token, weight) in fusion_encoded_query.items(): + if token in self.idf and self.idf[token] > self.min_idf: + jquery.put(token, JFloat(weight)) + + if self.sparse_vecs is not None: + search_k = k * (self.min_idf + 1) + if not fields: + hits = self.object.search(jquery, search_k) + else: + hits = self.object.searchFields(jquery, jfields, search_k) + hits = self.fast_rerank([sparse_encoded_query], {0: hits}, k)[0] + return hits + + def batch_search(self, queries: List[str], qids: List[str], + k: int = 10, threads: int = 1, fields=dict()) -> Dict[str, List[JImpactSearcherResult]]: + query_lst = JArrayList() + qid_lst = JArrayList() + sparse_encoded_queries = {} + for qid, q in zip(qids, queries): + fusion_encoded_query, sparse_encoded_query = self.query_encoder.encode(q, return_sparse=True) + jquery = JHashMap() + for (token, weight) in fusion_encoded_query.items(): + if token in self.idf and self.idf[token] > self.min_idf: + jquery.put(token, JFloat(weight)) + query_lst.add(jquery) + sparse_encoded_queries[qid] = sparse_encoded_query + + for qid in qids: + jqid = qid + qid_lst.add(jqid) + + jfields = JHashMap() + for (field, boost) in fields.items(): + jfields.put(field, JFloat(boost)) + + if not fields: + results = self.object.batch_search(query_lst, qid_lst, k * (self.min_idf + 1), threads) + else: + results = self.object.batch_search_fields(query_lst, qid_lst, k * (self.min_idf + 1), threads, jfields) + + results = {r.getKey(): r.getValue() for r in results.entrySet().toArray()} + results = self.fast_rerank(sparse_encoded_queries, results, k) + return results + + def fast_rerank(self, q_embeds, results, k): + all_scores = [] + all_docids = [] + all_q_embeds = [] + all_d_embeds = [] + all_d_lens = [] + qids = [] + for qid in results.keys(): + all_q_embeds.append(q_embeds[qid]) + qids.append(qid) + hits = results[qid] + docids = [] + scores = [] + d_embeds = [] + d_lens = [] + for hit in hits: + docids.append(hit.docid) + scores.append(hit.score) + start, end = self.sparse_ranges[int(hit.docid)] + d_embeds.append(self.sparse_vecs[int(hit.docid)]) + d_lens.append(end-start) + all_scores.append(scores) + all_docids.append(docids) + all_d_embeds.append(d_embeds) + all_d_lens.append(d_lens) + + entries = list(zip(all_q_embeds, all_d_embeds, all_d_lens, qids, all_scores, all_docids)) + results = [maxsim(entry) for entry in entries] + anserini_results = {} + for qid, scores, docids in results: + hits = [] + for score, docid in list(zip(scores, docids))[:k]: + hits.append(SlimResult(docid, score)) + anserini_results[qid] = hits + return anserini_results diff --git a/pyserini/search/lucene/_searcher.py b/pyserini/search/lucene/_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..b659200a690e0976d82d7bd99c6854c7e46c0009 --- /dev/null +++ b/pyserini/search/lucene/_searcher.py @@ -0,0 +1,464 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's Python search interface to Anserini. The main entry point is the ``LuceneSearcher`` +class, which wraps the Java class with the same name in Anserini. +""" + +import logging +import time +from typing import Dict, List, Optional, Union + +from pyserini.fusion import FusionMethod, reciprocal_rank_fusion +from pyserini.index import Document, IndexReader +from pyserini.pyclass import autoclass, JFloat, JArrayList, JHashMap +from pyserini.search import JQuery, JQueryGenerator +from pyserini.trectools import TrecRun +from pyserini.util import download_prebuilt_index, get_sparse_indexes_info + +logger = logging.getLogger(__name__) + + +# Wrappers around Anserini classes +JLuceneSearcher = autoclass('io.anserini.search.SimpleSearcher') +JLuceneSearcherResult = autoclass('io.anserini.search.SimpleSearcher$Result') + +class LuceneSearcher: + """Wrapper class for ``SimpleSearcher`` in Anserini. + + Parameters + ---------- + index_dir : str + Path to Lucene index directory. + """ + + def __init__(self, index_dir: str): + self.index_dir = index_dir + self.object = JLuceneSearcher(index_dir) + self.num_docs = self.object.get_total_num_docs() + + @classmethod + def from_prebuilt_index(cls, prebuilt_index_name: str, verbose=False): + """Build a searcher from a pre-built index; download the index if necessary. + + Parameters + ---------- + prebuilt_index_name : str + Prebuilt index name. + verbose : bool + Print status information. + + Returns + ------- + LuceneSearcher + Searcher built from the prebuilt index. + """ + if verbose: + print(f'Attempting to initialize pre-built index {prebuilt_index_name}.') + + try: + index_dir = download_prebuilt_index(prebuilt_index_name, verbose=verbose) + except ValueError as e: + print(str(e)) + return None + + # Currently, the only way to validate stats is to create a separate IndexReader, because there is no method + # to obtain the underlying reader of a SimpleSearcher; see https://github.com/castorini/anserini/issues/2013 + index_reader = IndexReader(index_dir) + # This is janky as we're created a separate IndexReader for the sole purpose of validating index stats. + index_reader.validate(prebuilt_index_name, verbose=verbose) + + if verbose: + print(f'Initializing {prebuilt_index_name}...') + + return cls(index_dir) + + @staticmethod + def list_prebuilt_indexes(): + """Display information about available prebuilt indexes.""" + get_sparse_indexes_info() + + def search(self, q: Union[str, JQuery], k: int = 10, query_generator: JQueryGenerator = None, + fields=dict(), strip_segment_id=False, remove_dups=False) -> List[JLuceneSearcherResult]: + """Search the collection. + + Parameters + ---------- + q : Union[str, JQuery] + Query string or the ``JQuery`` objected. + k : int + Number of hits to return. + query_generator : JQueryGenerator + Generator to build queries. Set to ``None`` by default to use Anserini default. + fields : dict + Optional map of fields to search with associated boosts. + strip_segment_id : bool + Remove the .XXXXX suffix used to denote different segments from an document. + remove_dups : bool + Remove duplicate docids when writing final run output. + + Returns + ------- + List[JLuceneSearcherResult] + List of search results. + """ + + jfields = JHashMap() + for (field, boost) in fields.items(): + jfields.put(field, JFloat(boost)) + + hits = None + if query_generator: + if not fields: + hits = self.object.search(query_generator, q, k) + else: + hits = self.object.searchFields(query_generator, q, jfields, k) + elif isinstance(q, JQuery): + # Note that RM3 requires the notion of a query (string) to estimate the appropriate models. If we're just + # given a Lucene query, it's unclear what the "query" is for this estimation. One possibility is to extract + # all the query terms from the Lucene query, although this might yield unexpected behavior from the user's + # perspective. Until we think through what exactly is the "right thing to do", we'll raise an exception + # here explicitly. + if self.is_using_rm3(): + raise NotImplementedError('RM3 incompatible with search using a Lucene query.') + if fields: + raise NotImplementedError('Cannot specify fields to search when using a Lucene query.') + hits = self.object.search(q, k) + else: + if not fields: + hits = self.object.search(q, k) + else: + hits = self.object.search_fields(q, jfields, k) + + docids = set() + filtered_hits = [] + + for hit in hits: + if strip_segment_id is True: + hit.docid = hit.docid.split('.')[0] + + if hit.docid in docids: + continue + + filtered_hits.append(hit) + + if remove_dups is True: + docids.add(hit.docid) + + return filtered_hits + + def batch_search(self, queries: List[str], qids: List[str], k: int = 10, threads: int = 1, + query_generator: JQueryGenerator = None, fields = dict()) -> Dict[str, List[JLuceneSearcherResult]]: + """Search the collection concurrently for multiple queries, using multiple threads. + + Parameters + ---------- + queries : List[str] + List of query strings. + qids : List[str] + List of corresponding query ids. + k : int + Number of hits to return. + threads : int + Maximum number of threads to use. + query_generator : JQueryGenerator + Generator to build queries. Set to ``None`` by default to use Anserini default. + fields : dict + Optional map of fields to search with associated boosts. + + Returns + ------- + Dict[str, List[JLuceneSearcherResult]] + Dictionary holding the search results, with the query ids as keys and the corresponding lists of search + results as the values. + """ + query_strings = JArrayList() + qid_strings = JArrayList() + for query in queries: + query_strings.add(query) + + for qid in qids: + qid_strings.add(qid) + + jfields = JHashMap() + for (field, boost) in fields.items(): + jfields.put(field, JFloat(boost)) + + if query_generator: + if not fields: + results = self.object.batch_search(query_generator, query_strings, qid_strings, int(k), int(threads)) + else: + results = self.object.batch_search_fields(query_generator, query_strings, qid_strings, int(k), int(threads), jfields) + else: + if not fields: + results = self.object.batch_search(query_strings, qid_strings, int(k), int(threads)) + else: + results = self.object.batch_search_fields(query_strings, qid_strings, int(k), int(threads), jfields) + return {r.getKey(): r.getValue() for r in results.entrySet().toArray()} + + def get_feedback_terms(self, q: str) -> Dict[str, float]: + """Returns feedback terms and their weights. + + Parameters + ---------- + q : str + Query string or the ``JQuery`` objected. + + Returns + ------- + Dict[str, float] + Feedback terms and their weights. + """ + + terms_map = self.object.get_feedback_terms(q) + if terms_map: + return {r.getKey(): r.getValue() for r in terms_map.entrySet().toArray()} + else: + return None + + def set_analyzer(self, analyzer): + """Set the Java ``Analyzer`` to use. + + Parameters + ---------- + analyzer : JAnalyzer + Java ``Analyzer`` object. + """ + self.object.set_analyzer(analyzer) + + def set_language(self, language): + """Set language of LuceneSearcher""" + self.object.set_language(language) + + def set_rm3(self, fb_terms=10, fb_docs=10, original_query_weight=float(0.5), debug=False, filter_terms=True): + """Configure RM3 pseudo-relevance feedback. + + Parameters + ---------- + fb_terms : int + RM3 parameter for number of expansion terms. + fb_docs : int + RM3 parameter for number of expansion documents. + original_query_weight : float + RM3 parameter for weight to assign to the original query. + debug : bool + Print the original and expanded queries as debug output. + filter_terms: bool + Whether to remove non-English terms. + """ + if self.object.reader.getTermVectors(0): + self.object.set_rm3(fb_terms, fb_docs, original_query_weight, debug, filter_terms) + else: + raise TypeError("RM3 is not supported for indexes without document vectors.") + + def unset_rm3(self): + """Disable RM3 pseudo-relevance feedback.""" + self.object.unset_rm3() + + def is_using_rm3(self) -> bool: + """Check if RM3 pseudo-relevance feedback is being performed.""" + return self.object.use_rm3() + + def set_rocchio(self, top_fb_terms=10, top_fb_docs=10, bottom_fb_terms=10, bottom_fb_docs=10, + alpha=1, beta=0.75, gamma=0, debug=False, use_negative=False): + """Configure Rocchio pseudo-relevance feedback. + + Parameters + ---------- + top_fb_terms : int + Rocchio parameter for number of relevant expansion terms. + top_fb_docs : int + Rocchio parameter for number of relevant expansion documents. + bottom_fb_terms : int + Rocchio parameter for number of nonrelevant expansion terms. + bottom_fb_docs : int + Rocchio parameter for number of nonrelevant expansion documents. + alpha : float + Rocchio parameter for weight to assign to the original query. + beta: float + Rocchio parameter for weight to assign to the relevant document vector. + gamma: float + Rocchio parameter for weight to assign to the nonrelevant document vector. + debug : bool + Print the original and expanded queries as debug output. + use_negative : bool + Rocchio parameter to use negative labels. + """ + if self.object.reader.getTermVectors(0): + self.object.set_rocchio(top_fb_terms, top_fb_docs, bottom_fb_terms, bottom_fb_docs, + alpha, beta, gamma, debug, use_negative) + else: + raise TypeError("Rocchio is not supported for indexes without document vectors.") + + def unset_rocchio(self): + """Disable Rocchio pseudo-relevance feedback.""" + self.object.unset_rocchio() + + def is_using_rocchio(self) -> bool: + """Check if Rocchio pseudo-relevance feedback is being performed.""" + return self.object.use_rocchio() + + def set_qld(self, mu=float(1000)): + """Configure query likelihood with Dirichlet smoothing as the scoring function. + + Parameters + ---------- + mu : float + Dirichlet smoothing parameter mu. + """ + self.object.set_qld(float(mu)) + + def set_bm25(self, k1=float(0.9), b=float(0.4)): + """Configure BM25 as the scoring function. + + Parameters + ---------- + k1 : float + BM25 k1 parameter. + b : float + BM25 b parameter. + """ + self.object.set_bm25(float(k1), float(b)) + + def get_similarity(self): + """Return the Lucene ``Similarity`` used as the scoring function.""" + return self.object.get_similarity() + + def doc(self, docid: Union[str, int]) -> Optional[Document]: + """Return the :class:`Document` corresponding to ``docid``. The ``docid`` is overloaded: if it is of type + ``str``, it is treated as an external collection ``docid``; if it is of type ``int``, it is treated as an + internal Lucene ``docid``. Method returns ``None`` if the ``docid`` does not exist in the index. + + Parameters + ---------- + docid : Union[str, int] + Overloaded ``docid``: either an external collection ``docid`` (``str``) or an internal Lucene ``docid`` + (``int``). + + Returns + ------- + Document + :class:`Document` corresponding to the ``docid``. + """ + lucene_document = self.object.doc(docid) + if lucene_document is None: + return None + return Document(lucene_document) + + def batch_doc(self, docids: List[str], threads: int) -> Dict[str, Document]: + """Concurrently fetching documents for multiple document ids. + Return dictionary that maps ``docid`` to :class:`Document`. Returned dictionary does not + contain ``docid`` if a corresponding :class:`Document` does not exist in the index. + + Parameters + ---------- + docids : List[str] + An external collection ``docid`` (``str``). + threads : int + Maximum number of threads to use. + + Returns + ------- + Dict[str, Document] + Dictionary mapping the ``docid`` to the corresponding :class:`Document`. + """ + docid_strings = JArrayList() + for docid in docids: + docid_strings.add(docid) + + results = self.object.batch_get_docs(docid_strings, threads) + batch_document = {r.getKey(): Document(r.getValue()) + for r in results.entrySet().toArray()} + return batch_document + + def doc_by_field(self, field: str, q: str) -> Optional[Document]: + """Return the :class:`Document` based on a ``field`` with ``id``. For example, this method can be used to fetch + document based on alternative primary keys that have been indexed, such as an article's DOI. Method returns + ``None`` if no such document exists. + + Parameters + ---------- + field : str + Field to look up. + q : str + Unique id of document. + + Returns + ------- + Document + :class:`Document` whose ``field`` is ``id``. + """ + lucene_document = self.object.doc_by_field(field, q) + if lucene_document is None: + return None + return Document(lucene_document) + + def close(self): + """Close the searcher.""" + self.object.close() + + +class LuceneSimilarities: + @staticmethod + def bm25(k1=0.9, b=0.4): + return autoclass('org.apache.lucene.search.similarities.BM25Similarity')(k1, b) + + @staticmethod + def qld(mu=1000): + return autoclass('org.apache.lucene.search.similarities.LMDirichletSimilarity')(mu) + + +class LuceneFusionSearcher: + def __init__(self, index_dirs: List[str], method: FusionMethod): + self.method = method + self.searchers = [LuceneSearcher(index_dir) for index_dir in index_dirs] + + def get_searchers(self) -> List[LuceneSearcher]: + return self.searchers + + def search(self, q: Union[str, JQuery], k: int = 10, query_generator: JQueryGenerator = None, strip_segment_id=False, remove_dups=False) -> List[JLuceneSearcherResult]: + trec_runs, docid_to_search_result = list(), dict() + + for searcher in self.searchers: + docid_score_pair = list() + hits = searcher.search(q, k=k, query_generator=query_generator, + strip_segment_id=strip_segment_id, remove_dups=remove_dups) + + for hit in hits: + docid_to_search_result[hit.docid] = hit + docid_score_pair.append((hit.docid, hit.score)) + + run = TrecRun.from_search_results(docid_score_pair) + trec_runs.append(run) + + if self.method == FusionMethod.RRF: + fused_run = reciprocal_rank_fusion(trec_runs, rrf_k=60, depth=1000, k=1000) + else: + raise NotImplementedError() + + return self.convert_to_search_result(fused_run, docid_to_search_result) + + @staticmethod + def convert_to_search_result(run: TrecRun, docid_to_search_result: Dict[str, JLuceneSearcherResult]) -> List[JLuceneSearcherResult]: + search_results = [] + + for _, _, docid, _, score, _ in run.to_numpy(): + search_result = docid_to_search_result[docid] + search_result.score = score + search_results.append(search_result) + + return search_results diff --git a/pyserini/search/lucene/irst/__init__.py b/pyserini/search/lucene/irst/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..463ef3d6224259ae0c5e01f4f16a2a1e81da61ba --- /dev/null +++ b/pyserini/search/lucene/irst/__init__.py @@ -0,0 +1,18 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._searcher import LuceneIrstSearcher +__all__ = ['LuceneIrstSearcher'] diff --git a/pyserini/search/lucene/irst/__main__.py b/pyserini/search/lucene/irst/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..27ed16b4a7933279081d4aa6756ddd3151e24312 --- /dev/null +++ b/pyserini/search/lucene/irst/__main__.py @@ -0,0 +1,162 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import argparse +from typing import List +from tqdm import tqdm +from transformers import AutoTokenizer +from pyserini.search import get_topics +from pyserini.search.lucene.irst import LuceneIrstSearcher + + +def normalize(scores: List[float]): + low = min(scores) + high = max(scores) + width = high - low + if width != 0: + return [(s-low)/width for s in scores] + return scores + + +def query_loader(topic: str): + queries = {} + bert_tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") + topics_dic = get_topics(topic) + line_num = 0 + for topic_id in topics_dic: + line_num += 1 + query_text = topics_dic[topic_id]['title'] + text_bert_tok = bert_tokenizer.tokenize(query_text.lower()) + if len(text_bert_tok) >= 0: + query = {"raw": query_text, + "contents": ' '.join(text_bert_tok)} + queries[topic_id] = query + if line_num % 10000 == 0: + print(f"Processed {line_num} queries") + print(f"Processed {line_num} queries") + return queries + + +def baseline_loader(base_path: str): + result_dic = {} + with open(base_path, 'r') as f: + for line in f: + tokens = line.strip().split() + topic = tokens[0] + doc_id = tokens[2] + score = float(tokens[-2]) + if topic in result_dic.keys(): + result_dic[topic][0].append(doc_id) + result_dic[topic][1].append(score) + else: + result_dic[topic] = [[doc_id], [score]] + + return result_dic + + +def generate_maxP(preds: List[float], docs: List[str]): + scores = {} + for index, (score, doc_id) in enumerate(zip(preds, docs)): + docid = doc_id.split('#')[0] + if (docid not in scores or score > scores[docid]): + scores[docid] = score + docid_scores = sorted(scores.items(), key=lambda kv: kv[1], reverse=True) + return docid_scores + + +def sort_dual_list(pred: List[float], docs: List[str]): + zipped_lists = zip(pred, docs) + sorted_pairs = sorted(zipped_lists) + + tuples = zip(*sorted_pairs) + pred, docs = [list(tuple) for tuple in tuples] + + pred.reverse() + docs.reverse() + return pred, docs + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description='use ibm model 1 feature to rerank the base run file') + parser.add_argument('--tag', type=str, default="ibm", + metavar="tag_name", help='tag name for resulting Qrun') + parser.add_argument('--base-path', type=str, required=False, + metavar="path_to_base_run", help='path to base run') + parser.add_argument('--topics', type=str, required=True, + help='existing topics name or path to query topics') + parser.add_argument('--index', type=str, required=True, + metavar="path_to_lucene_index", help='path to lucene index folder') + parser.add_argument('--output', type=str, required=True, + metavar="path_to_reranked_run", help='the path to store reranked run file') + parser.add_argument('--alpha', type=float, default="0.3", + metavar="type of field", help='interpolation weight') + parser.add_argument('--num-threads', type=int, default="24", + metavar="num_of_threads", help='number of threads to use') + parser.add_argument('--max-sim', default=False, action="store_true", + help='whether we use max sim operator or avg instead') + parser.add_argument('--segments', default=False, action="store_true", + help='whether we use segmented index or not') + parser.add_argument('--k1', type=float, default="0.81", + metavar="bm25_k1_parameter", help='k1 parameter for bm25 search') + parser.add_argument('--b', type=float, default="0.68", + metavar="bm25_b_parameter", help='b parameter for bm25 search') + parser.add_argument('--hits', type=int, metavar='number of hits generated in runfile', + required=False, default=1000, help="Number of hits.") + args = parser.parse_args() + + print('Using max sim operator or not:', args.max_sim) + + f = open(args.output, 'w') + + reranker = LuceneIrstSearcher(args.index, args.k1, args.b, args.num_threads) + queries = query_loader(args.topics) + query_text_lst = [queries[topic]['raw'] for topic in queries.keys()] + qid_lst = [str(topic) for topic in queries.keys()] + i = 0 + for topic in queries: + if i % 100 == 0: + print(f'Reranking {i} topic') + query_text_field = queries[topic]['contents'] + query_text = queries[topic]['raw'] + bm25_results = reranker.bm25search.search(query_text, args.hits) + if args.base_path: + baseline_dic = baseline_loader(args.base_path) + docids, rank_scores, base_scores = reranker.rerank( + query_text, query_text_field, baseline_dic[topic], args.max_sim, bm25_results) + else: + docids, rank_scores, base_scores = reranker.search( + query_text, query_text_field, args.max_sim, bm25_results) + ibm_scores = normalize([p for p in rank_scores]) + base_scores = normalize([p for p in base_scores]) + + interpolated_scores = [ + a * args.alpha + b * (1-args.alpha) for a, b in zip(base_scores, ibm_scores)] + + preds, docs = sort_dual_list(interpolated_scores, docids) + i = i+1 + if args.segments: + docid_scores = generate_maxP(preds, docs) + rank = 1 + for doc_id, score in docid_scores: + if rank > 1000: + break + f.write(f'{topic} Q0 {doc_id} {rank} {score} {args.tag}\n') + rank = rank + 1 + else: + for index, (score, doc_id) in enumerate(zip(preds, docs)): + rank = index + 1 + f.write(f'{topic} Q0 {doc_id} {rank} {score} {args.tag}\n') + f.close() diff --git a/pyserini/search/lucene/irst/__pycache__/__init__.cpython-38.pyc b/pyserini/search/lucene/irst/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1baf240d4945e95d3eb8e56d8f6a6797808e6c47 Binary files /dev/null and b/pyserini/search/lucene/irst/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/lucene/irst/__pycache__/_searcher.cpython-38.pyc b/pyserini/search/lucene/irst/__pycache__/_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8781dbbd3d00c115cc4a6e1b687d4e8ca9f430fb Binary files /dev/null and b/pyserini/search/lucene/irst/__pycache__/_searcher.cpython-38.pyc differ diff --git a/pyserini/search/lucene/irst/_searcher.py b/pyserini/search/lucene/irst/_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..c6ed472d0cfdc678ae79d6515eb73ca8b69a547c --- /dev/null +++ b/pyserini/search/lucene/irst/_searcher.py @@ -0,0 +1,288 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +""" +This module provides Pyserini's Python translation probability search +interface on MS MARCO dataset. The main entry point is the +``TranslationProbabilitySearcher`` class. +""" + +import json +import math +import os +import pickle +import struct +from multiprocessing.pool import ThreadPool +from typing import Dict + +from transformers import AutoTokenizer + +from pyserini.pyclass import autoclass +from pyserini.search.lucene import LuceneSearcher +from pyserini.util import download_prebuilt_index, get_cache_home, download_url, download_and_unpack_index +from pyserini.prebuilt_index_info import TF_INDEX_INFO_CURRENT + +# Wrappers around Anserini classes +JQuery = autoclass('org.apache.lucene.search.Query') +JLuceneSearcher = autoclass('io.anserini.search.SimpleSearcher') +JIndexReader = autoclass('io.anserini.index.IndexReaderUtils') +JTerm = autoclass('org.apache.lucene.index.Term') + + +class LuceneIrstSearcher(object): + SELF_TRAN = 0.35 + MIN_PROB = 0.0025 + LAMBDA_VALUE = 0.3 + MIN_COLLECT_PROB = 1e-9 + + def __init__(self, index: str, k1: int, b: int, num_threads: int): + translation_url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-models/ibm_model_1_bert_tok_20211117.tar.gz' + translation_directory = os.path.join(get_cache_home(), 'models') + self.termfreq_dic = self.download_and_load_wp_stats(index) + # This is used to download and unpack translation model instead of index, we use the function (download_and_unpack_index) for convenience. + self.translation_model = download_and_unpack_index(translation_url, translation_directory) + self.bm25search = LuceneSearcher.from_prebuilt_index(index) + self.bm25search.set_bm25(k1, b) + index_directory = os.path.join(get_cache_home(), 'indexes') + if index == 'msmarco-v1-passage': + index_path = os.path.join(index_directory, + TF_INDEX_INFO_CURRENT['msmarco-v1-passage']['filename'][:-6] + + TF_INDEX_INFO_CURRENT['msmarco-v1-passage']['md5']) + elif index == 'msmarco-v1-doc': + index_path = os.path.join(index_directory, + TF_INDEX_INFO_CURRENT['msmarco-v1-doc']['filename'][:-6] + + TF_INDEX_INFO_CURRENT['msmarco-v1-doc']['md5']) + elif index == 'msmarco-v1-doc-segmented': + index_path = os.path.join(index_directory, + TF_INDEX_INFO_CURRENT['msmarco-v1-doc-segmented']['filename'][:-6] + + TF_INDEX_INFO_CURRENT['msmarco-v1-doc-segmented']['md5']) + else: + print("We currently only support three indexes: msmarco-passage, msmarco-v1-doc and msmarco-v1-doc-segmented but the index you inserted is not one of those") + self.object = JLuceneSearcher(index_path) + self.source_lookup, self.target_lookup, self.tran = self.load_tranprobs_table() + self.bert_tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") + self.pool = ThreadPool(num_threads) + + + @classmethod + def from_prebuilt_index(cls, prebuilt_index_name: str): + """Build a searcher from a pre-built index; download the index if necessary. + + Parameters + ---------- + prebuilt_index_name : str + Prebuilt index name. + + Returns + ------- + LuceneSearcher + Searcher built from the prebuilt index. + """ + print(f'Attempting to initialize pre-built index {prebuilt_index_name}.') + try: + index_dir = download_prebuilt_index(prebuilt_index_name) + except ValueError as e: + print(str(e)) + return None + + print(f'Initializing {prebuilt_index_name}...') + return cls(index_dir) + + def download_and_load_wp_stats(self, index: str): + translation_directory = os.path.join(get_cache_home(), 'models') + if not os.path.exists(translation_directory): + os.makedirs(translation_directory) + if (index == 'msmarco-v1-passage'): + local_filename = 'bert_wp_term_freq.msmarco-passage.20220411.pickle' + wp_stats_path = os.path.join(translation_directory, local_filename) + url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/data/bert_wp_term_freq.msmarco-passage.20220411.pickle' + elif (index == 'msmarco-v1-doc'): + local_filename = 'bert_wp_term_freq.msmarco-doc.20220411.pickle' + wp_stats_path = os.path.join(translation_directory, local_filename) + url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/data/bert_wp_term_freq.msmarco-doc.20220411.pickle' + elif (index == 'msmarco-v1-doc-segmented'): + local_filename = 'bert_wp_term_freq.msmarco-doc-segmented.20220411.pickle' + wp_stats_path = os.path.join(translation_directory, local_filename) + url = 'https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/data/bert_wp_term_freq.msmarco-doc-segmented.20220411.pickle' + + if os.path.exists(wp_stats_path): + print(f'{wp_stats_path} already exists, skipping download.') + else: + download_url(url, translation_directory, local_filename) + with open(wp_stats_path, 'rb') as fin: + termfreq_dic = pickle.load(fin) + return termfreq_dic + + @staticmethod + def intbits_to_float(b: bytes): + s = struct.pack('>l', b) + return struct.unpack('>f', s)[0] + + def rescale( + self, source_lookup: Dict[str, int], target_lookup: Dict[str, int], + tran_lookup: Dict[str, Dict[str, float]], + target_voc: Dict[int, str], source_voc: Dict[int, str] + ): + + for target_id in tran_lookup: + if target_id > 0: + adjust_mult = (1 - self.SELF_TRAN) + else: + adjust_mult = 1 + # adjust the prob with adjust_mult + # add SELF_TRAN prob to self-translation pair + for source_id in tran_lookup[target_id].keys(): + tran_prob = tran_lookup[target_id][source_id] + if source_id > 0: + source_word = source_voc[source_id] + target_word = target_voc[target_id] + tran_prob *= adjust_mult + if (source_word == target_word): + tran_prob += self.SELF_TRAN + tran_lookup[target_id][source_id] = tran_prob + # in case if self-translation pair was not included in TransTable + if target_id not in tran_lookup[target_id].keys(): + target_word = target_voc[target_id] + source_id = source_lookup[target_word] + tran_lookup[target_id][source_id] = self.SELF_TRAN + return source_lookup, target_lookup, tran_lookup + + def load_tranprobs_table(self): + dir_path = self.translation_model + source_path = dir_path + "/source.vcb" + source_lookup = {} + source_voc = {} + with open(source_path) as f: + lines = f.readlines() + for line in lines: + id, voc, freq = line.split(" ") + source_voc[int(id)] = voc + source_lookup[voc] = int(id) + + target_path = dir_path + "/target.vcb" + target_lookup = {} + target_voc = {} + with open(target_path) as f: + lines = f.readlines() + for line in lines: + id, voc, freq = line.split(" ") + target_voc[int(id)] = voc + target_lookup[voc] = int(id) + tran_path = dir_path + "/output.t1.5.bin" + tran_lookup = {} + with open(tran_path, "rb") as file: + byte = file.read(4) + while byte: + source_id = int.from_bytes(byte, "big") + assert(source_id == 0 or source_id in source_voc.keys()) + byte = file.read(4) + target_id = int.from_bytes(byte, "big") + assert(target_id in target_voc.keys()) + byte = file.read(4) + tran_prob = self.intbits_to_float(int.from_bytes(byte, "big")) + if (target_id in tran_lookup.keys()) and (tran_prob > self.MIN_PROB): + tran_lookup[target_id][source_id] = tran_prob + elif tran_prob > self.MIN_PROB: + tran_lookup[target_id] = {} + tran_lookup[target_id][source_id] = tran_prob + byte = file.read(4) + return self.rescale( + source_lookup, target_lookup, + tran_lookup, target_voc, source_voc) + + def get_ibm_score(self, arguments): + (query_text_lst, test_doc, searcher, source_lookup, + target_lookup, tran, collect_probs, max_sim) = arguments + + if searcher.doc_raw(test_doc) is None: + print(f"{test_doc} is not found in searcher") + contents = json.loads(self.object.doc_raw(test_doc))['contents'] + doc_token_lst = self.bert_tokenizer.tokenize(contents.lower(), truncation=True) + total_query_prob = 0 + doc_size = len(doc_token_lst) + query_size = len(query_text_lst) + for querytoken in query_text_lst: + target_map = {} + total_tran_prob = 0 + collect_prob = collect_probs[querytoken] + max_sim_score = 0 + if querytoken in target_lookup.keys(): + query_word_id = target_lookup[querytoken] + if query_word_id in tran.keys(): + target_map = tran[query_word_id] + for doctoken in doc_token_lst: + tran_prob = 0 + doc_word_id = 0 + if doctoken in source_lookup.keys(): + doc_word_id = source_lookup[doctoken] + if doc_word_id in target_map.keys(): + tran_prob = max(target_map[doc_word_id], tran_prob) + max_sim_score = max(tran_prob, max_sim_score) + total_tran_prob += (tran_prob/doc_size) + if max_sim: + query_word_prob = math.log( + (1 - self.LAMBDA_VALUE) * max_sim_score + self.LAMBDA_VALUE * collect_prob) + else: + query_word_prob = math.log( + (1 - self.LAMBDA_VALUE) * total_tran_prob + self.LAMBDA_VALUE * collect_prob) + + total_query_prob += query_word_prob + return total_query_prob / query_size + + def search(self, query_text, query_field_text, max_sim, bm25_results): + origin_scores = [bm25_result.score for bm25_result in bm25_results] + test_docs = [bm25_result.docid for bm25_result in bm25_results] + if (test_docs == []): + print(query_text) + + query_field_text_lst = query_field_text.split(' ') + total_term_freq = self.termfreq_dic['TOTAL'] + collect_probs = {} + for querytoken in query_field_text_lst: + if querytoken in self.termfreq_dic: + collect_probs[querytoken] = max(self.termfreq_dic[querytoken] / total_term_freq, self.MIN_COLLECT_PROB) + else: + collect_probs[querytoken] = self.MIN_COLLECT_PROB + arguments = [( + query_field_text_lst, test_doc, self.object, + self.source_lookup, self.target_lookup, + self.tran, collect_probs, max_sim) + for test_doc in test_docs] + + rank_scores = self.pool.map(self.get_ibm_score, arguments) + return test_docs, rank_scores, origin_scores + + def rerank(self, query_text, query_field_text, baseline, max_sim, tf_table): + test_docs, origin_scores = baseline + if (test_docs == []): + print(query_text) + + query_field_text_lst = query_field_text.split(' ') + total_term_freq = self.termfreq_dic['TOTAL'] + collect_probs = {} + for querytoken in query_field_text_lst: + if querytoken in self.termfreq_dic: + collect_probs[querytoken] = max(self.termfreq_dic[querytoken] / total_term_freq, self.MIN_COLLECT_PROB) + else: + collect_probs[querytoken] = self.MIN_COLLECT_PROB + arguments = [( + query_field_text_lst, test_doc, self.object, + self.source_lookup, self.target_lookup, + self.tran, collect_probs, max_sim) + for test_doc in test_docs] + + rank_scores = self.pool.map(self.get_ibm_score, arguments) + return test_docs, rank_scores, origin_scores diff --git a/pyserini/search/lucene/ltr/__init__.py b/pyserini/search/lucene/ltr/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ad82edd5febc24513b48efd4de59aba900660b02 --- /dev/null +++ b/pyserini/search/lucene/ltr/__init__.py @@ -0,0 +1,30 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import FeatureExtractor, BM25Stat, LmDirStat, DfrGl2Stat, DfrInExpB2Stat, DphStat, Proximity, TpScore, TpDist,\ + DocSize, MatchingTermCount, QueryLength, SCS, SumMatchingTF, UniqueTermCount, QueryCoverageRatio, \ + UnorderedSequentialPairs, OrderedSequentialPairs, UnorderedQueryPairs, OrderedQueryPairs, \ + AvgPooler, SumPooler, MedianPooler, MinPooler, MaxPooler, VarPooler, TfStat, TfIdfStat, NormalizedTfStat, \ + IdfStat, IcTfStat, ConfidencePooler, MaxMinRatioPooler, \ + NormalizedTfIdf, ProbalitySum, RunList, IbmModel1, SpacyTextParser +from ._search_msmarco import MsmarcoLtrSearcher + +__all__ = ['FeatureExtractor', 'BM25Stat', 'LmDirStat', 'DfrGl2Stat', 'DfrInExpB2Stat', 'DphStat', 'Proximity', 'TpScore', 'TpDist', + 'DocSize', 'MatchingTermCount', 'QueryLength', 'SCS', 'SumMatchingTF', 'UniqueTermCount', 'QueryCoverageRatio', + 'UnorderedSequentialPairs', 'OrderedSequentialPairs', 'UnorderedQueryPairs', 'OrderedQueryPairs', + 'AvgPooler', 'SumPooler', 'MedianPooler', 'MinPooler', 'MaxPooler', 'VarPooler', 'TfStat', 'TfIdfStat', + 'NormalizedTfStat','IdfStat', 'IcTfStat', 'ConfidencePooler', 'MaxMinRatioPooler','NormalizedTfIdf', + 'ProbalitySum', 'RunList', 'IbmModel1', 'MsmarcoLtrSearcher','SpacyTextParser'] \ No newline at end of file diff --git a/pyserini/search/lucene/ltr/__main__.py b/pyserini/search/lucene/ltr/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..1278487c38acb283db70f4d285fa9d06566957a1 --- /dev/null +++ b/pyserini/search/lucene/ltr/__main__.py @@ -0,0 +1,297 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import sys + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') + +import argparse +import numpy as np +import pandas as pd +from tqdm import tqdm +from collections import defaultdict +from transformers import AutoTokenizer +from pyserini.search.lucene.ltr._search_msmarco import MsmarcoLtrSearcher +from pyserini.search.lucene.ltr import * +from pyserini.search.lucene import LuceneSearcher +from pyserini.analysis import Analyzer, get_lucene_analyzer + +""" +Running prediction on candidates +""" +def dev_data_loader(file, format, topic, rerank, prebuilt, qrel, granularity, top=1000): + if rerank: + if format == 'tsv': + dev = pd.read_csv(file, sep="\t", + names=['qid', 'pid', 'rank'], + dtype={'qid': 'S','pid': 'S', 'rank':'i',}) + elif format == 'trec': + dev = pd.read_csv(file, sep="\s+", + names=['qid', 'q0', 'pid', 'rank', 'score', 'tag'], + usecols=['qid', 'pid', 'rank'], + dtype={'qid': 'S','pid': 'S', 'rank':'i',}) + else: + raise Exception('unknown parameters') + assert dev['qid'].dtype == object + assert dev['pid'].dtype == object + assert dev['rank'].dtype == np.int32 + dev = dev[dev['rank']<=top] + else: + if prebuilt: + bm25search = LuceneSearcher.from_prebuilt_index(args.index) + else: + bm25search = LuceneSearcher(args.index) + bm25search.set_bm25(0.82, 0.68) + dev_dic = {"qid":[], "pid":[], "rank":[]} + for topic in tqdm(queries.keys()): + query_text = queries[topic]['raw'] + bm25_dev = bm25search.search(query_text, args.hits) + doc_ids = [bm25_result.docid for bm25_result in bm25_dev] + qid = [topic for _ in range(len(doc_ids))] + rank = [i for i in range(1, len(doc_ids)+1)] + dev_dic['qid'].extend(qid) + dev_dic['pid'].extend(doc_ids) + dev_dic['rank'].extend(rank) + dev = pd.DataFrame(dev_dic) + dev['rank'].astype(np.int32) + if granularity == 'document': + seperation = "\t" + else: + seperation = " " + dev_qrel = pd.read_csv(qrel, sep=seperation, + names=["qid", "q0", "pid", "rel"], usecols=['qid', 'pid', 'rel'], + dtype={'qid': 'S','pid': 'S', 'rel':'i'}) + dev = dev.merge(dev_qrel, left_on=['qid', 'pid'], right_on=['qid', 'pid'], how='left') + dev['rel'] = dev['rel'].fillna(0).astype(np.int32) + dev = dev.sort_values(['qid', 'pid']).set_index(['qid', 'pid']) + + print(dev.shape) + print(dev.index.get_level_values('qid').drop_duplicates().shape) + print(dev.groupby('qid').count().mean()) + print(dev.head(10)) + print(dev.info()) + + dev_rel_num = dev_qrel[dev_qrel['rel'] > 0].groupby('qid').count()['rel'] + + recall_point = [10, 20, 50, 100, 200, 500, 1000, 2000, 5000, 10000] + recall_curve = {k: [] for k in recall_point} + for qid, group in tqdm(dev.groupby('qid')): + group = group.reset_index() + assert len(group['pid'].tolist()) == len(set(group['pid'].tolist())) + total_rel = dev_rel_num.loc[qid] + query_recall = [0 for k in recall_point] + for t in group.sort_values('rank').itertuples(): + if t.rel > 0: + for i, p in enumerate(recall_point): + if t.rank <= p: + query_recall[i] += 1 + for i, p in enumerate(recall_point): + if total_rel > 0: + recall_curve[p].append(query_recall[i] / total_rel) + else: + recall_curve[p].append(0.) + + for k, v in recall_curve.items(): + avg = np.mean(v) + print(f'recall@{k}:{avg}') + + return dev, dev_qrel + + +def query_loader(topic): + queries = {} + nlp = SpacyTextParser('en_core_web_sm', keep_only_alpha_num=True, lower_case=True) + analyzer = Analyzer(get_lucene_analyzer()) + bert_tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") + inp_file = open(topic) + ln = 0 + for line in tqdm(inp_file): + ln += 1 + line = line.strip() + if not line: + continue + fields = line.split('\t') + if len(fields) != 2: + print('Misformated line %d ignoring:' % ln) + print(line.replace('\t', '')) + continue + did, query = fields + query_lemmas, query_unlemm = nlp.proc_text(query) + analyzed = analyzer.analyze(query) + for token in analyzed: + if ' ' in token: + print(analyzed) + query_toks = query_lemmas.split() + if len(query_toks) >= 0: + query = {"raw" : query, + "text": query_lemmas.split(' '), + "text_unlemm": query_unlemm.split(' '), + "analyzed": analyzed, + "text_bert_tok": bert_tokenizer.tokenize(query.lower())} + queries[did] = query + + if ln % 10000 == 0: + print('Processed %d queries' % ln) + + print('Processed %d queries' % ln) + return queries + + +def eval_mrr(dev_data): + score_tie_counter = 0 + score_tie_query = set() + MRR = [] + for qid, group in tqdm(dev_data.groupby('qid')): + group = group.reset_index() + rank = 0 + prev_score = None + assert len(group['pid'].tolist()) == len(set(group['pid'].tolist())) + # stable sort is also used in LightGBM + + for t in group.sort_values('score', ascending=False, kind='mergesort').itertuples(): + if prev_score is not None and abs(t.score - prev_score) < 1e-8: + score_tie_counter += 1 + score_tie_query.add(qid) + prev_score = t.score + rank += 1 + if t.rel > 0: + MRR.append(1.0 / rank) + break + elif rank == 10 or rank == len(group): + MRR.append(0.) + break + + score_tie = f'score_tie occurs {score_tie_counter} times in {len(score_tie_query)} queries' + print(score_tie) + mrr_10 = np.mean(MRR).item() + print(f'MRR@10:{mrr_10} with {len(MRR)} queries') + return {'score_tie': score_tie, 'mrr_10': mrr_10} + + +def eval_recall(dev_qrel, dev_data): + dev_rel_num = dev_qrel[dev_qrel['rel'] > 0].groupby('qid').count()['rel'] + + score_tie_counter = 0 + score_tie_query = set() + + recall_point = [10,20,50,100,200,250,300,333,400,500,1000] + recall_curve = {k: [] for k in recall_point} + for qid, group in tqdm(dev_data.groupby('qid')): + group = group.reset_index() + rank = 0 + prev_score = None + assert len(group['pid'].tolist()) == len(set(group['pid'].tolist())) + # stable sort is also used in LightGBM + total_rel = dev_rel_num.loc[qid] + query_recall = [0 for k in recall_point] + for t in group.sort_values('score', ascending=False, kind='mergesort').itertuples(): + if prev_score is not None and abs(t.score - prev_score) < 1e-8: + score_tie_counter += 1 + score_tie_query.add(qid) + prev_score = t.score + rank += 1 + if t.rel > 0: + for i, p in enumerate(recall_point): + if rank <= p: + query_recall[i] += 1 + for i, p in enumerate(recall_point): + if total_rel > 0: + recall_curve[p].append(query_recall[i] / total_rel) + else: + recall_curve[p].append(0.) + + score_tie = f'score_tie occurs {score_tie_counter} times in {len(score_tie_query)} queries' + print(score_tie) + res = {'score_tie': score_tie} + + for k, v in recall_curve.items(): + avg = np.mean(v) + print(f'recall@{k}:{avg}') + res[f'recall@{k}'] = avg + + return res + + +def output(file, dev_data, format, maxp): + score_tie_counter = 0 + score_tie_query = set() + output_file = open(file,'w') + results = defaultdict(dict) + idx = 0 + for qid, group in tqdm(dev_data.groupby('qid')): + group = group.reset_index() + rank = 0 + prev_score = None + assert len(group['pid'].tolist()) == len(set(group['pid'].tolist())) + # stable sort is also used in LightGBM + for t in group.sort_values('score', ascending=False, kind='mergesort').itertuples(): + if prev_score is not None and abs(t.score - prev_score) < 1e-8: + score_tie_counter += 1 + score_tie_query.add(qid) + prev_score = t.score + if maxp: + docid = t.pid.split('#')[0] + if qid not in results or docid not in results[qid] or t.score > results[qid][docid]: + results[qid][docid] = t.score + else: + results[qid][t.pid] = t.score + + + for qid in tqdm(results.keys()): + rank = 1 + docid_score = results[qid] + docid_score = sorted(docid_score.items(),key=lambda kv: kv[1], reverse=True) + for docid, score in docid_score: + if format=='trec': + output_file.write(f"{qid}\tQ0\t{docid}\t{rank}\t{score}\tltr\n") + else: + output_file.write(f"{qid}\t{docid}\t{rank}\n") + rank += 1 + score_tie = f'score_tie occurs {score_tie_counter} times in {len(score_tie_query)} queries' + print(score_tie) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Learning to rank reranking') + parser.add_argument('--input', default='') + parser.add_argument('--hits', type=int, default=1000) + parser.add_argument('--input-format', default = 'trec') + parser.add_argument('--model', required=True) + parser.add_argument('--index', required=True) + parser.add_argument('--output', required=True) + parser.add_argument('--ibm-model', required=True) + parser.add_argument('--topic', required=True) + parser.add_argument('--output-format', default='tsv') + parser.add_argument('--max-passage', action='store_true') + parser.add_argument('--rerank', action='store_true') + parser.add_argument('--qrel', required=True) + parser.add_argument('--granularity', default='passage') + + args = parser.parse_args() + queries = query_loader(args.topic) + print("---------------------loading dev----------------------------------------") + prebuilt = args.index == 'msmarco-passage-ltr' or args.index == 'msmarco-doc-per-passage-ltr' + dev, dev_qrel = dev_data_loader(args.input, args.input_format, args.topic, args.rerank, prebuilt, args.qrel, args.granularity, args.hits) + searcher = MsmarcoLtrSearcher(args.model, args.ibm_model, args.index, args.granularity, prebuilt, args.topic) + searcher.add_fe() + batch_info = searcher.search(dev, queries) + del dev, queries + + eval_res = eval_mrr(batch_info) + eval_recall(dev_qrel, batch_info) + output(args.output, batch_info,args.output_format, args.max_passage) + print('Done!') \ No newline at end of file diff --git a/pyserini/search/lucene/ltr/__pycache__/__init__.cpython-38.pyc b/pyserini/search/lucene/ltr/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..13f1a9367fb0450aa0bae50555969fd7f11bd2c9 Binary files /dev/null and b/pyserini/search/lucene/ltr/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/lucene/ltr/__pycache__/_base.cpython-38.pyc b/pyserini/search/lucene/ltr/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21c607463c92ccc1fd18a32d97a5b9f567cef0d0 Binary files /dev/null and b/pyserini/search/lucene/ltr/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/search/lucene/ltr/__pycache__/_search_msmarco.cpython-38.pyc b/pyserini/search/lucene/ltr/__pycache__/_search_msmarco.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1e8f6c3d755a5134033de5b2793f41fabef1c8d Binary files /dev/null and b/pyserini/search/lucene/ltr/__pycache__/_search_msmarco.cpython-38.pyc differ diff --git a/pyserini/search/lucene/ltr/_base.py b/pyserini/search/lucene/ltr/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..879b897ec7d7afeba989fc37744d578033e17c82 --- /dev/null +++ b/pyserini/search/lucene/ltr/_base.py @@ -0,0 +1,369 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from pyserini.pyclass import autoclass +import json +import numpy as np +import pandas as pd +import spacy +import re + +class Feature: + def name(self): + return self.extractor.getName() + +class NormalizedTfIdf(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.NormalizedTfIdf') + self.extractor = Jclass(field, qfield) + +class ProbalitySum(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.ProbalitySum') + self.extractor = Jclass(field, qfield) + +class IbmModel1(Feature): + def __init__(self, path, field, tag, qfield): + Jclass = autoclass('io.anserini.ltr.feature.IbmModel1') + self.extractor = Jclass(path, field, tag, qfield) + +class Proximity(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.Proximity') + self.extractor = Jclass(field, qfield) + +class TpScore(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.TpScore') + self.extractor = Jclass(field, qfield) + +class TpDist(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.TpDist') + self.extractor = Jclass(field, qfield) + +class DocSize(Feature): + def __init__(self, field='contents'): + Jclass = autoclass('io.anserini.ltr.feature.DocSize') + self.extractor = Jclass(field) + +class MatchingTermCount(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.MatchingTermCount') + self.extractor = Jclass(field, qfield) + +class QueryLength(Feature): + def __init__(self, qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.QueryLength') + self.extractor = Jclass(qfield) + +class SCS(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.SCS') + self.extractor = Jclass(field, qfield) + +class SumMatchingTF(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.SumMatchingTF') + self.extractor = Jclass(field, qfield) + +class QueryCoverageRatio(Feature): + def __init__(self, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.QueryCoverageRatio') + self.extractor = Jclass(field, qfield) + +class RunList(Feature): + def __init__(self,filename,tag): + Jclass = autoclass('io.anserini.ltr.feature.RunList') + self.extractor = Jclass(filename,tag) + +class UniqueTermCount(Feature): + def __init__(self, qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.UniqueTermCount') + self.extractor = Jclass(qfield) + +class UnorderedSequentialPairs(Feature): + def __init__(self, gap=8, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.UnorderedSequentialPairs') + self.extractor = Jclass(gap, field, qfield) + +class OrderedSequentialPairs(Feature): + def __init__(self, gap=8, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.OrderedSequentialPairs') + self.extractor = Jclass(gap, field, qfield) + +class UnorderedQueryPairs(Feature): + def __init__(self, gap=8, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.UnorderedQueryPairs') + self.extractor = Jclass(gap, field, qfield) + +class OrderedQueryPairs(Feature): + def __init__(self, gap=8, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.OrderedQueryPairs') + self.extractor = Jclass(gap, field, qfield) + +class AvgPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.AvgPooler') + self.extractor = Jclass() + +class SumPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.SumPooler') + self.extractor = Jclass() + +class MedianPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.MedianPooler') + self.extractor = Jclass() + +class MinPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.MinPooler') + self.extractor = Jclass() + +class MaxPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.MaxPooler') + self.extractor = Jclass() + +class VarPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.VarPooler') + self.extractor = Jclass() + +class ConfidencePooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.ConfidencePooler') + self.extractor = Jclass() + +class MaxMinRatioPooler(Feature): + def __init__(self): + Jclass = autoclass('io.anserini.ltr.MaxMinRatioPooler') + self.extractor = Jclass() + +class TfStat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.TfStat') + self.extractor = Jclass(pooler.extractor, field, qfield) + +class TfIdfStat(Feature): + def __init__(self, sublinear, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.TfIdfStat') + JBoolean = autoclass('java.lang.Boolean') + self.extractor = Jclass(JBoolean(sublinear), pooler.extractor, field, qfield) + +class NormalizedTfStat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.NormalizedTfStat') + self.extractor = Jclass(pooler.extractor, field, qfield) + +class IdfStat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.IdfStat') + self.extractor = Jclass(pooler.extractor, field, qfield) + +class IcTfStat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.IcTfStat') + self.extractor = Jclass(pooler.extractor, field, qfield) + +class BM25Stat(Feature): + def __init__(self, pooler, k1=0.9, b=0.4, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.BM25Stat') + self.extractor = Jclass(pooler.extractor, k1, b, field, qfield) + +class DfrInExpB2Stat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.DfrInExpB2Stat') + self.extractor = Jclass(pooler.extractor, field, qfield) + +class DphStat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.DphStat') + self.extractor = Jclass(pooler.extractor, field, qfield) + +class LmDirStat(Feature): + def __init__(self, pooler, mu=1000, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.LmDirStat') + self.extractor = Jclass(pooler.extractor, mu, field, qfield) + +class DfrGl2Stat(Feature): + def __init__(self, pooler, field='contents', qfield='analyzed'): + Jclass = autoclass('io.anserini.ltr.feature.DfrGl2Stat') + self.extractor = Jclass(pooler.extractor, field, qfield) + + +class FeatureExtractor: + def __init__(self, index_dir, worker_num=1): + JFeatureExtractorUtils = autoclass('io.anserini.ltr.FeatureExtractorUtils') + self.utils = JFeatureExtractorUtils(index_dir, worker_num) + self.feature_name = [] + + def add(self, pyclass): + """ + add feature extractor; cannot add feature extractors in the middle of extraction + Parameters + ---------- + pyclass: Feature + an initialized feature extractor + """ + self.utils.add(pyclass.extractor) + self.feature_name.append(pyclass.name()) + + def feature_names(self): + """ + get all feature names + Returns + ------- + List[str] all the feature names in order + """ + return self.feature_name + + def lazy_extract(self, qid, doc_ids, query_dict): + input = {'qid': qid, 'docIds': doc_ids} + input.update(query_dict) + self.utils.lazyExtract(json.dumps(input)) + + def batch_extract(self, tasks): + need_rows = 0 + for task in tasks: + self.lazy_extract(task['qid'], task['docIds'], task['query_dict']) + need_rows += len(task['docIds']) + feature_name = self.feature_names() + feature = np.zeros(shape=(need_rows, len(feature_name)), dtype=np.float32) + idx = 0 + for task in tasks: + flattened = self.get_result(task['qid']) + feature[idx:idx+len(task['docIds']),:] = flattened.reshape(len(task['docIds']), len(feature_name)) + idx += len(task['docIds']) + return pd.DataFrame(feature, columns=feature_name) + + + def get_result(self, qid): + res = self.utils.getResult(qid).tostring() + dt = np.dtype(np.float32) + dt = dt.newbyteorder('>') + return np.frombuffer(res, dt) + +class SpacyTextParser: + def __init__(self, model_name, + remove_punct=True, + sent_split=False, + keep_only_alpha_num=False, + lower_case=True, + enable_POS=True): + + disable_list = ['ner', 'parser'] + if not enable_POS: + disable_list.append('tagger') + print('Disabled Spacy components: ', disable_list) + + self._nlp = spacy.load(model_name, disable=disable_list) + if sent_split: + sentencizer = self._nlp.create_pipe("sentencizer") + self._nlp.add_pipe(sentencizer) + + self._remove_punct = remove_punct + sw = ['a', 'about', 'above', 'according', 'across', 'after', + 'afterwards', 'again', 'against', 'albeit', 'all', 'almost', + 'alone', 'along', 'already', 'also', 'although', 'always', 'am', + 'among', 'amongst', 'an', 'and', 'another', 'any', 'anybody', 'anyhow', + 'anyone', 'anything', 'anyway', 'anywhere', 'apart', 'are', 'around', + 'as', 'at', 'av', 'be', 'became', 'because', 'become', 'becomes', + 'becoming', 'been', 'before', 'beforehand', 'behind', 'being', 'below', + 'beside', 'besides', 'between', 'beyond', 'both', 'but', 'by', 'can', + 'cannot', 'canst', 'certain', 'cf', 'choose', 'contrariwise', 'cos', + 'could', 'cu', 'day', 'do', 'does', "doesn't", 'doing', 'dost', 'doth', + 'double', 'down', 'dual', 'during', 'each', 'either', 'else', 'elsewhere', + 'enough', 'et', 'etc', 'even', 'ever', 'every', 'everybody', 'everyone', + 'everything', 'everywhere', 'except', 'excepted', 'excepting', 'exception', + 'exclude', 'excluding', 'exclusive', 'far', 'farther', 'farthest', 'few', + 'ff', 'first', 'for', 'formerly', 'forth', 'forward', 'from', 'front', + 'further', 'furthermore', 'furthest', 'get', 'go', 'had', 'halves', 'hardly', + 'has', 'hast', 'hath', 'have', 'he', 'hence', 'henceforth', 'her', 'here', + 'hereabouts', 'hereafter', 'hereby', 'herein', 'hereto', 'hereupon', 'hers', + 'herself', 'him', 'himself', 'hindmost', 'his', 'hither', 'hitherto', 'how', + 'however', 'howsoever', 'i', 'ie', 'if', 'in', 'inasmuch', 'inc', 'include', + 'included', 'including', 'indeed', 'indoors', 'inside', 'insomuch', 'instead', + 'into', 'inward', 'inwards', 'is', 'it', 'its', 'itself', 'just', 'kind', 'kg', + 'km', 'last', 'latter', 'latterly', 'less', 'lest', 'let', 'like', 'little', 'ltd', + 'many', 'may', 'maybe', 'me', 'meantime', 'meanwhile', 'might', 'moreover', 'most', + 'mostly', 'more', 'mr', 'mrs', 'ms', 'much', 'must', 'my', 'myself', 'namely', 'need', + 'neither', 'never', 'nevertheless', 'next', 'no', 'nobody', 'none', 'nonetheless', + 'noone', 'nope', 'nor', 'not', 'nothing', 'notwithstanding', 'now', 'nowadays', + 'nowhere', 'of', 'off', 'often', 'ok', 'on', 'once', 'one', 'only', 'onto', 'or', + 'other', 'others', 'otherwise', 'ought', 'our', 'ours', 'ourselves', 'out', 'outside', + 'over', 'own', 'per', 'perhaps', 'plenty', 'provide', 'quite', 'rather', 'really', + 'round', 'said', 'sake', 'same', 'sang', 'save', 'saw', 'see', 'seeing', 'seem', 'seemed', + 'seeming', 'seems', 'seen', 'seldom', 'selves', 'sent', 'several', 'shalt', 'she', 'should', + 'shown', 'sideways', 'since', 'slept', 'slew', 'slung', 'slunk', 'smote', 'so', 'some', + 'somebody', 'somehow', 'someone', 'something', 'sometime', 'sometimes', 'somewhat', 'somewhere', + 'spake', 'spat', 'spoke', 'spoken', 'sprang', 'sprung', 'stave', 'staves', 'still', 'such', + 'supposing', 'than', 'that', 'the', 'thee', 'their', 'them', 'themselves', 'then', 'thence', + 'thenceforth', 'there', 'thereabout', 'thereabouts', 'thereafter', 'thereby', 'therefore', + 'therein', 'thereof', 'thereon', 'thereto', 'thereupon', 'these', 'they', 'this', 'those', + 'thou', 'though', 'thrice', 'through', 'throughout', 'thru', 'thus', 'thy', 'thyself', 'till', + 'to', 'together', 'too', 'toward', 'towards', 'ugh', 'unable', 'under', 'underneath', 'unless', + 'unlike', 'until', 'up', 'upon', 'upward', 'upwards', 'us', 'use', 'used', 'using', 'very', 'via', + 'vs', 'want', 'was', 'we', 'week', 'well', 'were', 'what', 'whatever', 'whatsoever', 'when', + 'whence', 'whenever', 'whensoever', 'where', 'whereabouts', 'whereafter', 'whereas', 'whereat', + 'whereby', 'wherefore', 'wherefrom', 'wherein', 'whereinto', 'whereof', 'whereon', 'wheresoever', + 'whereto', 'whereunto', 'whereupon', 'wherever', 'wherewith', 'whether', 'whew', 'which', + 'whichever', 'whichsoever', 'while', 'whilst', 'whither', 'who', 'whoa', 'whoever', 'whole', + 'whom', 'whomever', 'whomsoever', 'whose', 'whosoever', 'why', 'will', 'wilt', 'with', 'within', + 'without', 'worse', 'worst', 'would', 'wow', 'ye', 'yet', 'year', 'yippee', 'you', 'your', 'yours', + 'yourself', 'yourselves', "n't", "'d", "'ll", "'m", "'re", "'s", "'ves"] + stopwords = set(sw) + self._stopwords = frozenset([w.lower() for w in stopwords]) + self._keep_only_alpha_num = keep_only_alpha_num + self._lower_case = lower_case + + @staticmethod + def _basic_clean(text): + return text.replace("’", "'") + + def __call__(self, text): + return self._nlp(SpacyTextParser._basic_clean(text)) + + def is_alpha_num(self, s): + return s and (re.match("^[a-zA-Z-_.0-9]+$", s) is not None) + + def proc_text(self, text): + lemmas = [] + tokens = [] + doc = self(text) + for tokObj in doc: + if self._remove_punct and tokObj.is_punct: + continue + lemma = tokObj.lemma_ + text = tokObj.text + if self._keep_only_alpha_num and not self.is_alpha_num(text): + continue + tok1 = text.lower() + tok2 = lemma.lower() + if tok1 in self._stopwords or tok2 in self._stopwords: + continue + + if self._lower_case: + text = text.lower() + lemma = lemma.lower() + + lemmas.append(lemma) + tokens.append(text) + + return ' '.join(lemmas), ' '.join(tokens) + \ No newline at end of file diff --git a/pyserini/search/lucene/ltr/_search_msmarco.py b/pyserini/search/lucene/ltr/_search_msmarco.py new file mode 100644 index 0000000000000000000000000000000000000000..bc6ced6ae12343cb89b318bbd5d99d061d536005 --- /dev/null +++ b/pyserini/search/lucene/ltr/_search_msmarco.py @@ -0,0 +1,255 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +""" +This module provides Pyserini's Python ltr search interface on MS MARCO passage. The main entry point is the ``MsmarcoPassageLtrSearcher`` +class. +""" + +import logging +import multiprocessing +import time +import os +from tqdm import tqdm +import pickle +from pyserini.index.lucene import IndexReader +from pyserini.search.lucene import LuceneSearcher +from pyserini.util import get_cache_home + +from pyserini.search.lucene.ltr._base import * + + +logger = logging.getLogger(__name__) + +class MsmarcoLtrSearcher: + def __init__(self, model: str, ibm_model:str, index:str, data: str, prebuilt: bool, topic: str): + #msmarco-ltr-passage + self.model = model + self.ibm_model = ibm_model + if prebuilt: + self.lucene_searcher = LuceneSearcher.from_prebuilt_index(index) + index_directory = os.path.join(get_cache_home(), 'indexes') + if data == 'passage': + index_path = os.path.join(index_directory, 'index-msmarco-passage-ltr-20210519-e25e33f.a5de642c268ac1ed5892c069bdc29ae3') + else: + index_path = os.path.join(index_directory, 'index-msmarco-doc-per-passage-ltr-20211031-33e4151.bd60e89041b4ebbabc4bf0cfac608a87') + self.index_reader = IndexReader.from_prebuilt_index(index) + else: + index_path = index + self.index_reader = IndexReader(index) + self.fe = FeatureExtractor(index_path, max(multiprocessing.cpu_count()//2, 1)) + self.data = data + + + def add_fe(self): + #self.fe.add(RunList('collections/msmarco-ltr-passage/run.monot5.run_list.whole.trec','t5')) + #self.fe.add(RunList('../bert.whole.doc.trec','bert')) + for qfield, ifield in [('analyzed', 'contents'), + ('text_unlemm', 'text_unlemm'), + ('text_bert_tok', 'text_bert_tok')]: + print(qfield, ifield) + self.fe.add(BM25Stat(SumPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + self.fe.add(BM25Stat(AvgPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + self.fe.add(BM25Stat(MedianPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + self.fe.add(BM25Stat(MaxPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + self.fe.add(BM25Stat(MinPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + self.fe.add(BM25Stat(MaxMinRatioPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + + self.fe.add(LmDirStat(SumPooler(), mu=1000, field=ifield, qfield=qfield)) + self.fe.add(LmDirStat(AvgPooler(), mu=1000, field=ifield, qfield=qfield)) + self.fe.add(LmDirStat(MedianPooler(), mu=1000, field=ifield, qfield=qfield)) + self.fe.add(LmDirStat(MaxPooler(), mu=1000, field=ifield, qfield=qfield)) + self.fe.add(LmDirStat(MinPooler(), mu=1000, field=ifield, qfield=qfield)) + self.fe.add(LmDirStat(MaxMinRatioPooler(), mu=1000, field=ifield, qfield=qfield)) + + self.fe.add(NormalizedTfIdf(field=ifield, qfield=qfield)) + self.fe.add(ProbalitySum(field=ifield, qfield=qfield)) + + self.fe.add(DfrGl2Stat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrGl2Stat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrGl2Stat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrGl2Stat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrGl2Stat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrGl2Stat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(DfrInExpB2Stat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrInExpB2Stat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrInExpB2Stat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrInExpB2Stat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrInExpB2Stat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(DfrInExpB2Stat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(DphStat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(DphStat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(DphStat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(DphStat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(DphStat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(DphStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(Proximity(field=ifield, qfield=qfield)) + self.fe.add(TpScore(field=ifield, qfield=qfield)) + self.fe.add(TpDist(field=ifield, qfield=qfield)) + + self.fe.add(DocSize(field=ifield)) + + self.fe.add(QueryLength(qfield=qfield)) + self.fe.add(QueryCoverageRatio(qfield=qfield)) + self.fe.add(UniqueTermCount(qfield=qfield)) + self.fe.add(MatchingTermCount(field=ifield, qfield=qfield)) + self.fe.add(SCS(field=ifield, qfield=qfield)) + + self.fe.add(TfStat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfStat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfStat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfStat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfStat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(TfIdfStat(True, AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfIdfStat(True, MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfIdfStat(True, SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfIdfStat(True, MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfIdfStat(True, MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(TfIdfStat(True, MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(NormalizedTfStat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(NormalizedTfStat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(NormalizedTfStat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(NormalizedTfStat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(NormalizedTfStat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(NormalizedTfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(IdfStat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(IdfStat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(IdfStat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(IdfStat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(IdfStat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(IdfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(IcTfStat(AvgPooler(), field=ifield, qfield=qfield)) + self.fe.add(IcTfStat(MedianPooler(), field=ifield, qfield=qfield)) + self.fe.add(IcTfStat(SumPooler(), field=ifield, qfield=qfield)) + self.fe.add(IcTfStat(MinPooler(), field=ifield, qfield=qfield)) + self.fe.add(IcTfStat(MaxPooler(), field=ifield, qfield=qfield)) + self.fe.add(IcTfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + self.fe.add(UnorderedSequentialPairs(3, field=ifield, qfield=qfield)) + self.fe.add(UnorderedSequentialPairs(8, field=ifield, qfield=qfield)) + self.fe.add(UnorderedSequentialPairs(15, field=ifield, qfield=qfield)) + self.fe.add(OrderedSequentialPairs(3, field=ifield, qfield=qfield)) + self.fe.add(OrderedSequentialPairs(8, field=ifield, qfield=qfield)) + self.fe.add(OrderedSequentialPairs(15, field=ifield, qfield=qfield)) + self.fe.add(UnorderedQueryPairs(3, field=ifield, qfield=qfield)) + self.fe.add(UnorderedQueryPairs(8, field=ifield, qfield=qfield)) + self.fe.add(UnorderedQueryPairs(15, field=ifield, qfield=qfield)) + self.fe.add(OrderedQueryPairs(3, field=ifield, qfield=qfield)) + self.fe.add(OrderedQueryPairs(8, field=ifield, qfield=qfield)) + self.fe.add(OrderedQueryPairs(15, field=ifield, qfield=qfield)) + + start = time.time() + self.fe.add(IbmModel1(f"{self.ibm_model}/title_unlemm", "text_unlemm", "title_unlemm", "text_unlemm")) + end = time.time() + print('IBM model Load takes %.2f seconds' % (end - start)) + start = end + self.fe.add(IbmModel1(f"{self.ibm_model}url_unlemm", "text_unlemm", "url_unlemm", "text_unlemm")) + end = time.time() + print('IBM model Load takes %.2f seconds' % (end - start)) + start = end + self.fe.add(IbmModel1(f"{self.ibm_model}body", "text_unlemm", "body", "text_unlemm")) + end = time.time() + print('IBM model Load takes %.2f seconds' % (end - start)) + start = end + self.fe.add(IbmModel1(f"{self.ibm_model}text_bert_tok", "text_bert_tok", "text_bert_tok", "text_bert_tok")) + end = time.time() + print('IBM model Load takes %.2f seconds' % (end - start)) + start = end + + def batch_extract(self, df, queries, fe): + tasks = [] + task_infos = [] + group_lst = [] + + for qid, group in tqdm(df.groupby('qid')): + task = { + "qid": qid, + "docIds": [], + "rels": [], + "query_dict": queries[qid] + } + for t in group.reset_index().itertuples(): + if self.data == 'document': + if self.index_reader.doc(t.pid) != None: + task["docIds"].append(t.pid) + task_infos.append((qid, t.pid, t.rel)) + else: + task["docIds"].append(t.pid) + task_infos.append((qid, t.pid, t.rel)) + tasks.append(task) + group_lst.append((qid, len(task['docIds']))) + if len(tasks) == 1000: + features = fe.batch_extract(tasks) + task_infos = pd.DataFrame(task_infos, columns=['qid', 'pid', 'rel']) + group = pd.DataFrame(group_lst, columns=['qid', 'count']) + print(features.shape) + print(task_infos.qid.drop_duplicates().shape) + print(group.mean()) + print(features.head(10)) + print(features.info()) + yield task_infos, features, group + tasks = [] + task_infos = [] + group_lst = [] + # deal with rest + if len(tasks) > 0: + features = fe.batch_extract(tasks) + task_infos = pd.DataFrame(task_infos, columns=['qid', 'pid', 'rel']) + group = pd.DataFrame(group_lst, columns=['qid', 'count']) + print(features.shape) + print(task_infos.qid.drop_duplicates().shape) + print(group.mean()) + print(features.head(10)) + print(features.info()) + yield task_infos, features, group + + return + + def batch_predict(self, models, dev_extracted, feature_name): + task_infos, features, group = dev_extracted + dev_X = features.loc[:, feature_name] + + task_infos['score'] = 0. + for gbm in models: + task_infos['score'] += gbm.predict(dev_X) + + def search(self, dev, queries): + batch_info = [] + start_extract = time.time() + models = pickle.load(open(self.model+'/model.pkl', 'rb')) + metadata = json.load(open(self.model+'/metadata.json', 'r')) + feature_used = metadata['feature_names'] + for dev_extracted in self.batch_extract(dev, queries, self.fe): + end_extract = time.time() + print(f'extract 1000 queries take {end_extract - start_extract}s') + task_infos, features, group = dev_extracted + start_predict = time.time() + self.batch_predict(models, dev_extracted, feature_used) + end_predict = time.time() + print(f'predict 1000 queries take {end_predict - start_predict}s') + batch_info.append(task_infos) + start_extract = time.time() + batch_info = pd.concat(batch_info, axis=0, ignore_index=True) + return batch_info + diff --git a/pyserini/search/lucene/querybuilder.py b/pyserini/search/lucene/querybuilder.py new file mode 100644 index 0000000000000000000000000000000000000000..7627121c2bd79f616a2a5854f1670454acfc6e4e --- /dev/null +++ b/pyserini/search/lucene/querybuilder.py @@ -0,0 +1,90 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +This module provides Pyserini's Python interface query building for Anserini. +""" +import logging +from enum import Enum + +from pyserini.analysis import get_lucene_analyzer, Analyzer +from pyserini.pyclass import autoclass + +logger = logging.getLogger(__name__) + + +# Wrapper around Lucene clases +JTerm = autoclass('org.apache.lucene.index.Term') +JBooleanClause = autoclass('org.apache.lucene.search.BooleanClause') +JBoostQuery = autoclass('org.apache.lucene.search.BoostQuery') +JTermQuery = autoclass('org.apache.lucene.search.TermQuery') + +# Wrappers around Anserini classes +JQueryGeneratorUtils = autoclass('io.anserini.search.query.QueryGeneratorUtils') + + +class JBooleanClauseOccur(Enum): + should = JQueryGeneratorUtils.getBooleanClauseShould() + must = JQueryGeneratorUtils.getBooleanClauseMust() + must_not = JQueryGeneratorUtils.getBooleanClauseMustNot() + filter = JQueryGeneratorUtils.getBooleanClauseFilter() + + +def get_boolean_query_builder(): + """Get a BooleanQueryBuilder object. + + Returns + ------- + JBooleanQueryBuilder + """ + return JQueryGeneratorUtils.getBooleanQueryBuilder() + + +def get_term_query(term, field="contents", analyzer=get_lucene_analyzer()): + """Searches the collection. + + Parameters + ---------- + term : str + The query term string. + field : str + Field to search. + analyzer : Analyzer + Analyzer to use for tokenizing the query term. + + Returns + ------- + JTermQuery + """ + analyzer = Analyzer(analyzer) + return JTermQuery(JTerm(field, analyzer.analyze(term)[0])) + + +def get_boost_query(query, boost): + """Get boost query. + + Parameters + ---------- + query : str + The query object to boost. + boost : float + Score multiplier. + + Returns + ------- + JBoostQuery + """ + return JBoostQuery(query, boost) diff --git a/pyserini/search/lucene/reranker.py b/pyserini/search/lucene/reranker.py new file mode 100644 index 0000000000000000000000000000000000000000..e5fa177593b01189059621b5cccba5861c430425 --- /dev/null +++ b/pyserini/search/lucene/reranker.py @@ -0,0 +1,123 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import enum +import importlib +import os +import uuid +from sklearn.linear_model import LogisticRegression +from sklearn.svm import SVC +from typing import List + + +class ClassifierType(enum.Enum): + LR = 'lr' + SVM = 'svm' + + +class FusionMethod(enum.Enum): + AVG = 'avg' + + +class PseudoRelevanceClassifierReranker: + def __init__(self, lucene_index: str, vectorizer_class: str, clf_type: List[ClassifierType], r=10, n=100, alpha=0.5): + self.r = r + self.n = n + self.alpha = alpha + self.clf_type = clf_type + + # get vectorizer + module = importlib.import_module("pyserini.vectorizer") + VectorizerClass = getattr(module, vectorizer_class) + self.vectorizer = VectorizerClass(lucene_index, min_df=5) + + if len(clf_type) > 2: + raise Exception('Re-ranker takes at most two classifiers') + + def _set_classifier(self, clf_type: ClassifierType): + if clf_type == ClassifierType.LR: + self.clf = LogisticRegression(random_state=42) + elif clf_type == ClassifierType.SVM: + self.clf = SVC(kernel='linear', probability=True, random_state=42) + else: + raise Exception("Invalid classifier type") + + def _get_prf_vectors(self, doc_ids: List[str]): + train_docs = doc_ids[:self.r] + doc_ids[-self.n:] + train_labels = [1] * self.r + [0] * self.n + + train_vecs = self.vectorizer.get_vectors(train_docs) + test_vecs = self.vectorizer.get_vectors(doc_ids) + + return train_vecs, train_labels, test_vecs + + def _rerank_with_classifier(self, doc_ids: List[str], search_scores: List[float]): + train_vecs, train_labels, test_vecs = self._get_prf_vectors(doc_ids) + + # classification + self.clf.fit(train_vecs, train_labels) + pred = self.clf.predict_proba(test_vecs) + classifier_scores = self._normalize([p[1] for p in pred]) + search_scores = self._normalize(search_scores) + + # interpolation + interpolated_scores = [a * self.alpha + b * (1-self.alpha) for a, b in zip(classifier_scores, search_scores)] + + return self._sort_dual_list(interpolated_scores, doc_ids) + + def rerank(self, doc_ids: List[str], search_scores: List[float]): + # one classifier + if len(self.clf_type) == 1: + self._set_classifier(self.clf_type[0]) + return self._rerank_with_classifier(doc_ids, search_scores) + + # two classifier with FusionMethod.AVG + doc_score_dict = {} + for i in range(2): + self._set_classifier(self.clf_type[i]) + i_scores, i_doc_ids = self._rerank_with_classifier(doc_ids, search_scores) + + for score, doc_id in zip(i_scores, i_doc_ids): + if doc_id not in doc_score_dict: + doc_score_dict[doc_id] = set() + doc_score_dict[doc_id].add(score) + + r_scores, r_doc_ids = [], [] + for doc_id, score in doc_score_dict.items(): + avg = sum(score) / len(score) + r_doc_ids.append(doc_id) + r_scores.append(avg) + + return r_scores, r_doc_ids + + def _normalize(self, scores: List[float]): + low = min(scores) + high = max(scores) + width = high - low + + return [(s-low)/width for s in scores] + + # sort both list in decreasing order by using the list1 to compare + def _sort_dual_list(self, list1, list2): + zipped_lists = zip(list1, list2) + sorted_pairs = sorted(zipped_lists) + + tuples = zip(*sorted_pairs) + list1, list2 = [list(tuple) for tuple in tuples] + + list1.reverse() + list2.reverse() + return list1, list2 diff --git a/pyserini/search/nmslib/__init__.py b/pyserini/search/nmslib/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e3188206e5cf2f8ce6d91dddf748fcd8bac193ff --- /dev/null +++ b/pyserini/search/nmslib/__init__.py @@ -0,0 +1,19 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +from ._searcher import SearchResult, NmslibSearcher + +__all__ = ['SearchResult', 'NmslibSearcher'] diff --git a/pyserini/search/nmslib/__main__.py b/pyserini/search/nmslib/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..581fafa916a1c3e586308b7491688802b382d0b2 --- /dev/null +++ b/pyserini/search/nmslib/__main__.py @@ -0,0 +1,94 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import argparse +import json +import time +from tqdm import tqdm + +from ._searcher import NmslibSearcher +from pyserini.output_writer import get_output_writer, OutputFormat, tie_breaker + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Search a nmslib index.') + parser.add_argument('--index', type=str, metavar='path to index or index name', required=True, + help="Path to nmslib index.") + parser.add_argument('--topics', type=str, required=True, help="path to topics") + parser.add_argument('--hits', type=int, metavar='num', required=False, default=1000, help="Number of hits.") + parser.add_argument('--output-format', type=str, metavar='format', default=OutputFormat.TREC.value, + help=f"Format of output. Available: {[x.value for x in list(OutputFormat)]}") + parser.add_argument('--output', type=str, metavar='path', required=True, help="Path to output file.") + parser.add_argument('--ef', type=int, required=False, default=256, help="hnsw ef_search") + parser.add_argument('--threads', type=int, metavar='num', required=False, default=1, + help="maximum threads to use during search") + parser.add_argument('--batch-size', type=int, metavar='num', required=False, default=1, + help="search batch of queries in parallel") + parser.add_argument('--is-sparse', action='store_true', required=False) + args = parser.parse_args() + + searcher = NmslibSearcher(args.index, ef_search=args.ef, is_sparse=args.is_sparse) + + topic_ids = [] + topic_vectors = [] + with open(args.topics) as topic_f: + for line in topic_f: + info = json.loads(line) + topic_ids.append(info['id']) + topic_vectors.append(info['vector']) + + if not searcher: + exit() + + # build output path + output_path = args.output + + print(f'Running {args.topics} topics, saving to {output_path}...') + tag = 'HNSW' + + # support trec and msmarco format only for now + output_writer = get_output_writer(output_path, OutputFormat(args.output_format), max_hits=args.hits, tag=tag) + + search_time = 0 + with output_writer: + batch_topic_vectors = list() + batch_topic_ids = list() + for index, (topic_id, vec) in enumerate(tqdm(zip(topic_ids, topic_vectors))): + if args.batch_size <= 1 and args.threads <= 1: + start = time.time() + hits = searcher.search(vec, args.hits) + search_time += time.time() - start + results = [(topic_id, hits)] + else: + batch_topic_ids.append(str(topic_id)) + batch_topic_vectors.append(vec) + if (index + 1) % args.batch_size == 0 or \ + index == len(topic_ids) - 1: + start = time.time() + results = searcher.batch_search( + batch_topic_vectors, batch_topic_ids, args.hits, args.threads) + search_time += time.time() - start + results = [(id_, results[id_]) for id_ in batch_topic_ids] + batch_topic_ids.clear() + batch_topic_vectors.clear() + else: + continue + + for topic, hits in results: + output_writer.write(topic, tie_breaker(hits)) + + results.clear() + + print(f'Search {len(topic_ids)} topics in {search_time} seconds') diff --git a/pyserini/search/nmslib/__pycache__/__init__.cpython-38.pyc b/pyserini/search/nmslib/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66daaeb0c8884ff08a801d3e9bde2292dad413c4 Binary files /dev/null and b/pyserini/search/nmslib/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/search/nmslib/__pycache__/_searcher.cpython-38.pyc b/pyserini/search/nmslib/__pycache__/_searcher.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97e3cc9c730d311cc895ec5710e0f1eb1d3f6160 Binary files /dev/null and b/pyserini/search/nmslib/__pycache__/_searcher.cpython-38.pyc differ diff --git a/pyserini/search/nmslib/_searcher.py b/pyserini/search/nmslib/_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..e0db6a24743c5e479d221f906c1bcc3bc107dc87 --- /dev/null +++ b/pyserini/search/nmslib/_searcher.py @@ -0,0 +1,142 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# +import json +import os +from dataclasses import dataclass +from typing import Dict, List + +import nmslib +import numpy as np +from scipy.sparse import csr_matrix, vstack + + +@dataclass +class SearchResult: + docid: str + score: float + + +class NmslibSearcher: + """Simple Searcher for vector representation + """ + + def __init__(self, index_dir: str, ef_search: int = 1000, is_sparse=False): + self.is_sparse = is_sparse + self.index, self.docids, self.token2id, self.metadata = self._load_index(index_dir, self.is_sparse) + self.index.setQueryTimeParams({'efSearch': ef_search}) + self.dimension = len(self.token2id) if self.is_sparse else None + + def search(self, query, k: int = 10) -> List[SearchResult]: + """Search the collection. + + Parameters + ---------- + query : query vector + k : int + Number of hits to return. + threads : int + Maximum number of threads to use for intra-query search. + Returns + ------- + List[SearchResult] + List of search results. + """ + if self.is_sparse: + query = self._token_dict_to_sparse_vector(query) + else: + query = np.array([query]) + indexes, scores = self.index.knnQueryBatch(query, k=k, num_threads=1)[0] + return [SearchResult(self.docids[idx], -score) + for score, idx in zip(scores, indexes) if idx != -1] + + def batch_search(self, queries, q_ids: List[str], k: int = 10, threads: int = 1) \ + -> Dict[str, List[SearchResult]]: + """ + + Parameters + ---------- + queries : vectors + q_ids : List[str] + List of corresponding query ids. + k : int + Number of hits to return. + threads : int + Maximum number of threads to use. + + Returns + ------- + Dict[str, List[SearchResult]] + Dictionary holding the search results, with the query ids as keys and the corresponding lists of search + results as the values. + """ + if self.is_sparse: + queries = [self._token_dict_to_sparse_vector(query) for query in queries] + queries = vstack(queries) + else: + queries = np.array(queries) + I, D = zip(*self.index.knnQueryBatch(queries, k=k, num_threads=threads)) + return {key: [SearchResult(self.docids[idx], -score) + for score, idx in zip(distances, indexes) if idx != -1] + for key, distances, indexes in zip(q_ids, D, I)} + + def _load_index(self, index_dir: str, is_sparse: bool): + if is_sparse: + index = nmslib.init(method='hnsw', space='negdotprod_sparse', data_type=nmslib.DataType.SPARSE_VECTOR) + else: + index = nmslib.init(method='hnsw', space='negdotprod', data_type=nmslib.DataType.DENSE_VECTOR) + index_path = os.path.join(index_dir, 'index.bin') + docid_path = os.path.join(index_dir, 'docid') + tokens_path = os.path.join(index_dir, 'tokens') + metadata_path = os.path.join(index_dir, 'meta') + index.loadIndex(index_path, load_data=True) + docids = self._load_docids(docid_path) + token2id = self._load_tokens(tokens_path) + metadata = self._load_metadata(metadata_path) + return index, docids, token2id, metadata + + def _token_dict_to_sparse_vector(self, token_dict): + matrix_row, matrix_col, matrix_data = [], [], [] + tokens = token_dict.keys() + col = [] + data = [] + for tok in tokens: + if tok in self.token2id: + col.append(self.token2id[tok]) + data.append(token_dict[tok]) + matrix_row.extend([0] * len(col)) + matrix_col.extend(col) + matrix_data.extend(data) + vector = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(1, self.dimension)) + return vector + + @staticmethod + def _load_docids(docid_path: str) -> List[str]: + docids = [line.rstrip() for line in open(docid_path, 'r').readlines()] + return docids + + @staticmethod + def _load_tokens(tokens_path: str): + if not os.path.exists(tokens_path): + return None + tokens = [line.rstrip() for line in open(tokens_path, 'r').readlines()] + return dict(zip(tokens, range(len(tokens)))) + + @staticmethod + def _load_metadata(metadata_path): + if not os.path.exists(metadata_path): + return None + meta = json.load(open(metadata_path)) + return meta diff --git a/pyserini/setup.py b/pyserini/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..1cc1560c24235a5242bad80c9735a52fa29c2ef5 --- /dev/null +++ b/pyserini/setup.py @@ -0,0 +1,40 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +""" +Module for adding Anserini jar to classpath for pyjnius usage +""" + +import glob +import os + +import jnius_config + + +def configure_classpath(anserini_root="."): + """ + Parameters + ---------- + anserini_root : str + (Optional) path to root anserini directory. + + """ + paths = glob.glob(os.path.join(anserini_root, 'anserini-*-fatjar.jar')) + if not paths: + raise Exception('No matching jar file found in {}'.format(os.path.abspath(anserini_root))) + + latest = max(paths, key=os.path.getctime) + jnius_config.add_classpath(latest) diff --git a/pyserini/tokenize_json_collection.py b/pyserini/tokenize_json_collection.py new file mode 100644 index 0000000000000000000000000000000000000000..b5ae47d6e6f6b7793bca32965c1946db1ffcb4fc --- /dev/null +++ b/pyserini/tokenize_json_collection.py @@ -0,0 +1,62 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os + +from transformers import BertTokenizer, T5Tokenizer + + +def write_to_file(tokenizer, input, output): + with open(input, encoding='utf-8') as f: + out_f = open(output, 'w') + for i, line in enumerate(f): + fdict = json.loads(line) + contents = fdict['contents'] + tok = tokenizer.tokenize(contents) + tokcont = ' ' + fdict['contents'] = tokcont.join(tok) + out_f.write(json.dumps(fdict) + '\n') + if i % 10000 == 0: + print(f'Converted {i:,} docs, writing into file {output}') + out_f.close() + + +def main(args): + if ('bert' in args.tokenizer): + tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') + else: + tokenizer = T5Tokenizer.from_pretrained('castorini/doc2query-t5-base-msmarco') + if (os.path.isdir(args.input)): + for i, inf in enumerate(sorted(os.listdir(args.input))): + if not os.path.isdir(args.output): + os.mkdir(args.output) + outf = os.path.join(args.output, 'docs{:02d}.json'.format(i)) + write_to_file(tokenizer,os.path.join(args.input, inf), outf) + else: + write_to_file(tokenizer,args.input, args.output) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("--input", type=str, help='Input file/dir', required=True) + parser.add_argument("--output", type=str, help='Output file/dir', required=True) + parser.add_argument("--tokenizer", type=str, help='full name of tokenizer', default='bert-base-uncased') + + args = parser.parse_args() + + main(parser.parse_args()) \ No newline at end of file diff --git a/pyserini/trectools/__init__.py b/pyserini/trectools/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c5faca29258764830765c3a4709f81c4fded322f --- /dev/null +++ b/pyserini/trectools/__init__.py @@ -0,0 +1,19 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import AggregationMethod, RescoreMethod, TrecRun, Qrels + +__all__ = ['AggregationMethod', 'RescoreMethod', 'TrecRun', 'Qrels'] diff --git a/pyserini/trectools/__pycache__/__init__.cpython-38.pyc b/pyserini/trectools/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b1312448358bb07d44256c6366ac13e0b91518b Binary files /dev/null and b/pyserini/trectools/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/trectools/__pycache__/_base.cpython-38.pyc b/pyserini/trectools/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04c788b55f7ebe884d5686b9d69087485fa2962f Binary files /dev/null and b/pyserini/trectools/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/trectools/_base.py b/pyserini/trectools/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..e75a13a8b11cc57c5b5f777f84b7f9be7935fc42 --- /dev/null +++ b/pyserini/trectools/_base.py @@ -0,0 +1,351 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import itertools +import numpy as np +import pandas as pd + +from concurrent.futures import ThreadPoolExecutor +from copy import deepcopy +from enum import Enum +from typing import List, Set, Tuple + + +class AggregationMethod(Enum): + SUM = 'sum' + + +class RescoreMethod(Enum): + RRF = 'rrf' + SCALE = 'scale' + NORMALIZE = 'normalize' + + +class Qrels: + """Wrapper class for TREC Qrels. + + Parameters + ---------- + filepath : str + File path of a given TREC Qrels. + """ + + columns = ['topic', 'q0', 'docid', 'relevance_grade'] + + def __init__(self, filepath: str = None): + self.filepath = filepath + self.qrels_data = pd.DataFrame(columns=Qrels.columns) + + if filepath is not None: + self.read_run(self.filepath) + + def read_run(self, filepath: str): + self.qrels_data = pd.read_csv(filepath, sep='\s+', names=Qrels.columns) + + def get_relevance_grades(self) -> Set[str]: + """Return a set with all relevance grades.""" + + return set(sorted(self.qrels_data["relevance_grade"].unique())) + + def topics(self) -> Set[str]: + """Return a set with all topics.""" + + return set(sorted(self.qrels_data["topic"].unique())) + + def get_docids(self, topic, relevance_grades=None) -> List[str]: + """"Return a list of docids for a given topic and a list relevance grades. + + Parameters: + ---------- + relevance : List[int] + E.g. [0, 1, 2]. If not provided, then all relevance will be returned. + topic : int + """ + + if relevance_grades is None: + relevance_grades = self.get_relevance_grades() + + filtered_df = self.qrels_data[self.qrels_data['topic'] == topic] + filtered_df = filtered_df[filtered_df['relevance_grade'].isin(relevance_grades)] + + return filtered_df['docid'].tolist() + + +class TrecRun: + """Wrapper class for a TREC run. + + Parameters + ---------- + filepath : str + File path of a given TREC Run. + """ + + columns = ['topic', 'q0', 'docid', 'rank', 'score', 'tag'] + + def __init__(self, filepath: str = None, resort: bool = False): + self.reset_data() + self.filepath = filepath + self.resort = resort + + if filepath is not None: + self.read_run(self.filepath,self.resort) + + def reset_data(self): + self.run_data = pd.DataFrame(columns=TrecRun.columns) + + def read_run(self, filepath: str, resort: bool = False) -> None: + self.run_data = pd.read_csv(filepath, sep='\s+', names=TrecRun.columns, dtype={'docid': 'str'}) + if resort: + self.run_data.sort_values(["topic", "score"], inplace=True, ascending=[True, False]) + self.run_data["rank"] = self.run_data.groupby("topic")["score"].rank(ascending=False,method='first') + + def topics(self) -> Set[str]: + """Return a set with all topics.""" + return set(sorted(self.run_data["topic"].unique())) + + def clone(self): + """Return a deep copy of the current instance.""" + return deepcopy(self) + + def save_to_txt(self, output_path: str, tag: str = None) -> None: + if len(self.run_data) == 0: + raise Exception('Nothing to save. TrecRun is empty') + + if tag is not None: + self.run_data['tag'] = tag + + self.run_data = self.run_data.sort_values(by=['topic', 'score'], ascending=[True, False]) + self.run_data.to_csv(output_path, sep=' ', header=False, index=False) + + def get_docs_by_topic(self, topic: str, max_docs: int = None): + docs = self.run_data[self.run_data['topic'] == topic] + + if max_docs is not None: + docs = docs.head(max_docs) + + return docs + + def rescore(self, method: RescoreMethod, rrf_k: int = None, scale: float = None): + # Refer to this guide on how to efficiently manipulate dataframes: https://engineering.upside.com/a-beginners-guide-to-optimizing-pandas-code-for-speed-c09ef2c6a4d6 + if method == RescoreMethod.RRF: + assert rrf_k is not None, 'Parameter "rrf_k" must be a valid integer.' + self.run_data['score'] = 1 / (rrf_k + self.run_data['rank'].values) + elif method == RescoreMethod.SCALE: + assert scale is not None, 'Parameter "scale" must not be none.' + self.run_data['score'] = self.run_data['score'].values * scale + elif method == RescoreMethod.NORMALIZE: + for topic in self.topics(): + scores = self.run_data[self.run_data['topic'] == topic]['score'].copy().values + low = np.min(scores) + high = np.max(scores) + + if high - low == 0: + self.run_data.loc[self.run_data['topic'] == topic, 'score'] = 1 + else: + scores = (scores - low) / (high - low) + scores = [float(score) for score in scores] + self.run_data.loc[self.run_data['topic'] == topic, 'score'] = scores + else: + raise NotImplementedError() + + return self + + def to_numpy(self) -> np.ndarray: + return self.run_data.to_numpy(copy=True) + + def discard_qrels(self, qrels: Qrels, clone=True): + """Discard each docid in self if docid is also in the given qrels. + This operation is performed on each topic separately. + + Parameters: + ---------- + qrels : Qrels + Qrels with docids to remove from TrecRun. + clone : Bool + Return a new TrecRun object if True, else self will be modified and returned. + """ + + return self._filter_from_qrels(qrels, False, clone=clone) + + def retain_qrels(self, qrels: Qrels, clone=True): + """Retain each docid in self if docid is also in the given qrels. + This operation is performed on each topic separately. + After this operation, judged@x based on the given qrels should be 1. + + Parameters: + ---------- + qrels : Qrels + Qrels with docids to keep in TrecRun. + clone : Bool + Return a new TrecRun object if True, else self will be modified and returned. + """ + + return self._filter_from_qrels(qrels, True, clone=clone) + + def _filter_from_qrels(self, qrels: Qrels, keep: bool, clone=True): + """Private helper function to remove/keep each docid in self if docid is also in the given Qrels object. + This operation is performed on each topic separately. + + Parameters: + ---------- + qrels : Qrels + Qrels with docids to remove from or keep in TrecRun. + clone : Bool + Return a new TrecRun object if True, else self will be modified and returned. + """ + + df_list = [] + for topic in self.topics(): + if topic not in qrels.topics(): + continue + + qrels_docids = qrels.get_docids(topic) + topic_df = self.run_data[self.run_data['topic'] == topic] + if keep is True: + topic_df = topic_df[topic_df['docid'].isin(qrels_docids)] + else: + topic_df = topic_df[~topic_df['docid'].isin(qrels_docids)] + df_list.append(topic_df) + + run = TrecRun() if clone is True else self + return TrecRun.from_dataframes(df_list, run) + + @staticmethod + def get_all_topics_from_runs(runs) -> Set[str]: + all_topics = set() + for run in runs: + all_topics = all_topics.union(run.topics()) + + return all_topics + + @staticmethod + def merge(runs, aggregation: AggregationMethod, depth: int = None, k: int = None): + """Return a TrecRun by aggregating docid in various ways such as summing scores + + Parameters + ---------- + runs : List[TrecRun] + List of ``TrecRun`` objects. + aggregation : AggregationMethod + The aggregation method to use. + depth : int + Maximum number of results from each input run to consider. Set to ``None`` by default, which indicates that + the complete list of results is considered. + k : int + Length of final results list. Set to ``None`` by default, which indicates that the union of all input documents + are ranked. + """ + + if len(runs) < 2: + raise Exception('Merge requires at least 2 runs.') + + rows = [] + + if aggregation == AggregationMethod.SUM: + topics = list(TrecRun.get_all_topics_from_runs(runs)) + + def merge_topic(topic): + doc_scores = dict() + + for run in runs: + for docid, score in run.get_docs_by_topic(topic, depth)[['docid', 'score']].values: + doc_scores[docid] = doc_scores.get(docid, 0.0) + score + + sorted_doc_scores = sorted(iter(doc_scores.items()), key=lambda x: (-x[1], x[0])) + sorted_doc_scores = sorted_doc_scores if k is None else sorted_doc_scores[:k] + + return [ + (topic, 'Q0', docid, rank, score, 'merge_sum') + for rank, (docid, score) in enumerate(sorted_doc_scores, start=1) + ] + + max_workers = max(len(topics)/10, 1) + with ThreadPoolExecutor(max_workers=int(max_workers)) as exec: + results = list(exec.map(merge_topic, topics)) + + rows = list(itertools.chain.from_iterable(results)) + else: + raise NotImplementedError() + + return TrecRun.from_list(rows) + + @staticmethod + def from_dataframes(dfs, run=None): + """Return a TrecRun by populating dataframe with the provided list of dataframes. + + Parameters + ---------- + dfs: List[Dataframe] + A list of Dataframes conforming to TrecRun.columns + + run: TrecRun + Set to ``None`` by default. If None, then a new instance of TrecRun will be created. + Else, the given TrecRun will be modified. + """ + + res = TrecRun() if run is None else run + res.reset_data() + res.run_data = pd.concat([df for df in dfs]) + + return res + + @staticmethod + def from_list(rows, run=None): + """Return a TrecRun by populating dataframe with the provided list of tuples. + For performance reasons, df.to_numpy() is faster than df.iterrows(). + When manipulating dataframes, we first dump to np.ndarray and construct a list of tuples with new values. + Then use this function to convert the list of tuples to a TrecRun object. + + Parameters + ---------- + rows: List[tuples] + List of tuples in the following format: (topic, 'Q0', docid, rank, score, tag) + + run: TrecRun + Set to ``None`` by default. If None, then a new instance of TrecRun will be created. + Else, the given TrecRun will be modified. + """ + + res = TrecRun() if run is None else run + + df = pd.DataFrame(rows) + df.columns = TrecRun.columns + res.run_data = df.copy() + + return res + + @staticmethod + def from_search_results(docid_score_pair: Tuple[str, float], topic=1): + rows = [] + + for rank, (docid, score) in enumerate(docid_score_pair, start=1): + rows.append((topic, 'Q0', docid, rank, score, 'searcher')) + + return TrecRun.from_list(rows) + + @staticmethod + def concat(runs): + """Return a new TrecRun by concatenating a list of TrecRuns + + Parameters + ---------- + runs : List[TrecRun] + List of ``TrecRun`` objects. + """ + + run = TrecRun() + run.run_data = pd.concat([run.run_data for run in runs]) + return run diff --git a/pyserini/util.py b/pyserini/util.py new file mode 100644 index 0000000000000000000000000000000000000000..92b57091cf0ffa16684ddf544e4dce72aacf16c7 --- /dev/null +++ b/pyserini/util.py @@ -0,0 +1,283 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import hashlib +import os +import re +import shutil +import tarfile +import logging +from urllib.error import HTTPError, URLError +from urllib.request import urlretrieve + +import pandas as pd +from tqdm import tqdm + +from pyserini.encoded_query_info import QUERY_INFO +from pyserini.encoded_corpus_info import CORPUS_INFO +from pyserini.evaluate_script_info import EVALUATION_INFO +from pyserini.prebuilt_index_info import TF_INDEX_INFO, FAISS_INDEX_INFO, IMPACT_INDEX_INFO + + +logger = logging.getLogger(__name__) + + +# https://gist.github.com/leimao/37ff6e990b3226c2c9670a2cd1e4a6f5 +class TqdmUpTo(tqdm): + def update_to(self, b=1, bsize=1, tsize=None): + """ + b : int, optional + Number of blocks transferred so far [default: 1]. + bsize : int, optional + Size of each block (in tqdm units) [default: 1]. + tsize : int, optional + Total size (in tqdm units). If [default: None] remains unchanged. + """ + if tsize is not None: + self.total = tsize + self.update(b * bsize - self.n) # will also set self.n = b * bsize + + +# For large files, we need to compute MD5 block by block. See: +# https://stackoverflow.com/questions/1131220/get-md5-hash-of-big-files-in-python +def compute_md5(file, block_size=2**20): + m = hashlib.md5() + with open(file, 'rb') as f: + while True: + buf = f.read(block_size) + if not buf: + break + m.update(buf) + return m.hexdigest() + + +def download_url(url, save_dir, local_filename=None, md5=None, force=False, verbose=True): + # If caller does not specify local filename, figure it out from the download URL: + if not local_filename: + filename = url.split('/')[-1] + filename = re.sub('\\?dl=1$', '', filename) # Remove the Dropbox 'force download' parameter + else: + # Otherwise, use the specified local_filename: + filename = local_filename + + destination_path = os.path.join(save_dir, filename) + + if verbose: + print(f'Downloading {url} to {destination_path}...') + + # Check to see if file already exists, if so, simply return (quietly) unless force=True, in which case we remove + # destination file and download fresh copy. + if os.path.exists(destination_path): + if verbose: + print(f'{destination_path} already exists!') + if not force: + if verbose: + print(f'Skipping download.') + return destination_path + if verbose: + print(f'force=True, removing {destination_path}; fetching fresh copy...') + os.remove(destination_path) + + with TqdmUpTo(unit='B', unit_scale=True, unit_divisor=1024, miniters=1, desc=filename) as t: + urlretrieve(url, filename=destination_path, reporthook=t.update_to) + + if md5: + md5_computed = compute_md5(destination_path) + assert md5_computed == md5, f'{destination_path} does not match checksum! Expecting {md5} got {md5_computed}.' + + return destination_path + + +def get_cache_home(): + custom_dir = os.environ.get("PYSERINI_CACHE") + if custom_dir is not None and custom_dir != '': + return custom_dir + return os.path.expanduser(os.path.join(f'~{os.path.sep}.cache', "pyserini")) + +def download_and_unpack_index(url, index_directory='indexes', local_filename=False, + force=False, verbose=True, prebuilt=False, md5=None): + # If caller does not specify local filename, figure it out from the download URL: + if not local_filename: + index_name = url.split('/')[-1] + else: + # Otherwise, use the specified local_filename: + index_name = local_filename + # Remove the suffix: + index_name = re.sub('''.tar.gz.*$''', '', index_name) + + if prebuilt: + index_directory = os.path.join(get_cache_home(), index_directory) + index_path = os.path.join(index_directory, f'{index_name}.{md5}') + + if not os.path.exists(index_directory): + os.makedirs(index_directory) + + local_tarball = os.path.join(index_directory, f'{index_name}.tar.gz') + # If there's a local tarball, it's likely corrupted, because we remove the local tarball on success (below). + # So, we want to remove. + if os.path.exists(local_tarball): + os.remove(local_tarball) + else: + local_tarball = os.path.join(index_directory, f'{index_name}.tar.gz') + index_path = os.path.join(index_directory, f'{index_name}') + + # Check to see if index already exists, if so, simply return (quietly) unless force=True, in which case we remove + # index and download fresh copy. + if os.path.exists(index_path): + if not force: + if verbose: + print(f'{index_path} already exists, skipping download.') + return index_path + if verbose: + print(f'{index_path} already exists, but force=True, removing {index_path} and fetching fresh copy...') + shutil.rmtree(index_path) + + print(f'Downloading index at {url}...') + download_url(url, index_directory, local_filename=local_filename, verbose=False, md5=md5) + + if verbose: + print(f'Extracting {local_tarball} into {index_path}...') + try: + tarball = tarfile.open(local_tarball) + except: + local_tarball = os.path.join(index_directory, f'{index_name}') + tarball = tarfile.open(local_tarball) + dirs_in_tarball = [member.name for member in tarball if member.isdir()] + assert len(dirs_in_tarball), f"Detect multiple members ({', '.join(dirs_in_tarball)}) under the tarball {local_tarball}." + tarball.extractall(index_directory) + tarball.close() + os.remove(local_tarball) + + if prebuilt: + dir_in_tarball = dirs_in_tarball[0] + if dir_in_tarball != index_name: + logger.info(f"Renaming {index_directory}/{dir_in_tarball} into {index_directory}/{index_name}.") + index_name = dir_in_tarball + os.rename(os.path.join(index_directory, f'{index_name}'), index_path) + + return index_path + + +def check_downloaded(index_name): + if index_name in TF_INDEX_INFO: + target_index = TF_INDEX_INFO[index_name] + elif index_name in IMPACT_INDEX_INFO: + target_index = IMPACT_INDEX_INFO[index_name] + else: + target_index = FAISS_INDEX_INFO[index_name] + index_url = target_index['urls'][0] + index_md5 = target_index['md5'] + index_name = index_url.split('/')[-1] + index_name = re.sub('''.tar.gz.*$''', '', index_name) + index_directory = os.path.join(get_cache_home(), 'indexes') + index_path = os.path.join(index_directory, f'{index_name}.{index_md5}') + + return os.path.exists(index_path) + + +def get_sparse_indexes_info(): + df = pd.DataFrame.from_dict({**TF_INDEX_INFO, **IMPACT_INDEX_INFO}) + for index in df.keys(): + df[index]['downloaded'] = check_downloaded(index) + + with pd.option_context('display.max_rows', None, 'display.max_columns', + None, 'display.max_colwidth', -1, 'display.colheader_justify', 'left'): + print(df) + + +def get_impact_indexes_info(): + df = pd.DataFrame.from_dict(IMPACT_INDEX_INFO) + for index in df.keys(): + df[index]['downloaded'] = check_downloaded(index) + + with pd.option_context('display.max_rows', None, 'display.max_columns', + None, 'display.max_colwidth', -1, 'display.colheader_justify', 'left'): + print(df) + + +def get_dense_indexes_info(): + df = pd.DataFrame.from_dict(FAISS_INDEX_INFO) + for index in df.keys(): + df[index]['downloaded'] = check_downloaded(index) + + with pd.option_context('display.max_rows', None, 'display.max_columns', + None, 'display.max_colwidth', -1, 'display.colheader_justify', 'left'): + print(df) + + +def download_prebuilt_index(index_name, force=False, verbose=True, mirror=None): + if index_name not in TF_INDEX_INFO and index_name not in FAISS_INDEX_INFO and index_name not in IMPACT_INDEX_INFO: + raise ValueError(f'Unrecognized index name {index_name}') + if index_name in TF_INDEX_INFO: + target_index = TF_INDEX_INFO[index_name] + elif index_name in IMPACT_INDEX_INFO: + target_index = IMPACT_INDEX_INFO[index_name] + else: + target_index = FAISS_INDEX_INFO[index_name] + index_md5 = target_index['md5'] + for url in target_index['urls']: + local_filename = target_index['filename'] if 'filename' in target_index else None + try: + return download_and_unpack_index(url, local_filename=local_filename, + prebuilt=True, md5=index_md5, verbose=verbose) + except (HTTPError, URLError) as e: + print(f'Unable to download pre-built index at {url}, trying next URL...') + raise ValueError(f'Unable to download pre-built index at any known URLs.') + + +def download_encoded_queries(query_name, force=False, verbose=True, mirror=None): + if query_name not in QUERY_INFO: + raise ValueError(f'Unrecognized query name {query_name}') + query_md5 = QUERY_INFO[query_name]['md5'] + for url in QUERY_INFO[query_name]['urls']: + try: + return download_and_unpack_index(url, index_directory='queries', prebuilt=True, md5=query_md5) + except (HTTPError, URLError) as e: + print(f'Unable to download encoded query at {url}, trying next URL...') + raise ValueError(f'Unable to download encoded query at any known URLs.') + + +def download_encoded_corpus(corpus_name, force=False, verbose=True, mirror=None): + if corpus_name not in CORPUS_INFO: + raise ValueError(f'Unrecognized corpus name {corpus_name}') + corpus_md5 = CORPUS_INFO[corpus_name]['md5'] + for url in CORPUS_INFO[corpus_name]['urls']: + local_filename = CORPUS_INFO[corpus_name]['filename'] if 'filename' in CORPUS_INFO[corpus_name] else None + try: + return download_and_unpack_index(url, local_filename=local_filename, index_directory='corpus', prebuilt=True, md5=corpus_md5) + except (HTTPError, URLError) as e: + print(f'Unable to download encoded corpus at {url}, trying next URL...') + raise ValueError(f'Unable to download encoded corpus at any known URLs.') + + +def download_evaluation_script(evaluation_name, force=False, verbose=True, mirror=None): + if evaluation_name not in EVALUATION_INFO: + raise ValueError(f'Unrecognized evaluation name {evaluation_name}') + for url in EVALUATION_INFO[evaluation_name]['urls']: + try: + save_dir = os.path.join(get_cache_home(), 'eval') + if not os.path.exists(save_dir): + os.makedirs(save_dir) + return download_url(url, save_dir=save_dir) + except HTTPError: + print(f'Unable to download evaluation script at {url}, trying next URL...') + raise ValueError(f'Unable to download evaluation script at any known URLs.') + + +def get_sparse_index(index_name): + if index_name not in FAISS_INDEX_INFO: + raise ValueError(f'Unrecognized index name {index_name}') + return FAISS_INDEX_INFO[index_name]["texts"] diff --git a/pyserini/vectorizer/__init__.py b/pyserini/vectorizer/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..dafc6252140de2bc22696d1d19d5df7da82ccc67 --- /dev/null +++ b/pyserini/vectorizer/__init__.py @@ -0,0 +1,19 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from ._base import BM25Vectorizer, TfidfVectorizer + +__all__ = ['BM25Vectorizer', 'TfidfVectorizer'] diff --git a/pyserini/vectorizer/__pycache__/__init__.cpython-38.pyc b/pyserini/vectorizer/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..489e1530e39cabbf05777caa2dcc9ff0abeda41b Binary files /dev/null and b/pyserini/vectorizer/__pycache__/__init__.cpython-38.pyc differ diff --git a/pyserini/vectorizer/__pycache__/_base.cpython-38.pyc b/pyserini/vectorizer/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6eed44eaa4577d039268c36f9710158d6ae4d8f4 Binary files /dev/null and b/pyserini/vectorizer/__pycache__/_base.cpython-38.pyc differ diff --git a/pyserini/vectorizer/_base.py b/pyserini/vectorizer/_base.py new file mode 100644 index 0000000000000000000000000000000000000000..255656c3848cfc3b6e436c2775cefc6ab05b05d1 --- /dev/null +++ b/pyserini/vectorizer/_base.py @@ -0,0 +1,194 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import math +from typing import List, Optional +from sklearn.preprocessing import normalize + +from scipy.sparse import csr_matrix + +from pyserini import index, search +from pyserini.analysis import Analyzer, get_lucene_analyzer +from tqdm import tqdm + + +class Vectorizer: + """Base class for vectorizer implemented on top of Pyserini. + + Parameters + ---------- + lucene_index_path : str + Path to lucene index folder + min_df : int + Minimum acceptable document frequency + verbose : bool + Whether to print out debugging information + """ + + def __init__(self, lucene_index_path: str, min_df: int = 1, verbose: bool = False): + self.min_df: int = min_df + self.verbose: bool = verbose + self.index_reader = index.IndexReader(lucene_index_path) + self.searcher = search.LuceneSearcher(lucene_index_path) + self.num_docs: int = self.searcher.num_docs + self.stats = self.index_reader.stats() + self.analyzer = Analyzer(get_lucene_analyzer()) + + # build vocabulary + self.vocabulary_ = set() + for term in self.index_reader.terms(): + if term.df > self.min_df: + self.vocabulary_.add(term.term) + self.vocabulary_ = sorted(self.vocabulary_) + + # build term to index mapping + self.term_to_index = {} + for i, term in enumerate(self.vocabulary_): + self.term_to_index[term] = i + self.vocabulary_size = len(self.vocabulary_) + + if self.verbose: + print(f'Found {self.vocabulary_size} terms with min_df={self.min_df}') + + def get_query_vector(self, query: str): + matrix_row, matrix_col, matrix_data = [], [], [] + tokens = self.analyzer.analyze(query) + for term in tokens: + if term in self.vocabulary_: + matrix_row.append(0) + matrix_col.append(self.term_to_index[term]) + matrix_data.append(1) + vectors = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(1, self.vocabulary_size)) + return vectors + + +class TfidfVectorizer(Vectorizer): + """Wrapper class for tf-idf vectorizer implemented on top of Pyserini. + + Parameters + ---------- + lucene_index_path : str + Path to lucene index folder + min_df : int + Minimum acceptable document frequency + verbose : bool + Whether to print out debugging information + """ + + def __init__(self, lucene_index_path: str, min_df: int = 1, verbose: bool = False): + super().__init__(lucene_index_path, min_df, verbose) + + self.idf_ = {} + for term in self.index_reader.terms(): + self.idf_[term.term] = math.log(self.num_docs / term.df) + + def get_vectors(self, docids: List[str], norm: Optional[str] = 'l2'): + """Get the tf-idf vectors given a list of docids + + Parameters + ---------- + norm : str + Normalize the sparse matrix + docids : List[str] + The piece of text to analyze. + + Returns + ------- + csr_matrix + Sparse matrix representation of tf-idf vectors + """ + matrix_row, matrix_col, matrix_data = [], [], [] + num_docs = len(docids) + + for index, doc_id in enumerate(tqdm(docids)): + # Term Frequency + tf = self.index_reader.get_document_vector(doc_id) + if tf is None: + continue + + # Filter out in-eligible terms + tf = {t: tf[t] for t in tf if t in self.term_to_index} + + # Convert from dict to sparse matrix + for term in tf: + tfidf = tf[term] * self.idf_[term] + matrix_row.append(index) + matrix_col.append(self.term_to_index[term]) + matrix_data.append(tfidf) + + vectors = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(num_docs, self.vocabulary_size)) + + if norm: + return normalize(vectors, norm=norm) + return vectors + + +class BM25Vectorizer(Vectorizer): + """Wrapper class for BM25 vectorizer implemented on top of Pyserini. + + Parameters + ---------- + lucene_index_path : str + Path to lucene index folder + min_df : int + Minimum acceptable document frequency + verbose : bool + Whether to print out debugging information + """ + + def __init__(self, lucene_index_path: str, min_df: int = 1, verbose: bool = False): + super().__init__(lucene_index_path, min_df, verbose) + + def get_vectors(self, docids: List[str], norm: Optional[str] = 'l2'): + """Get the BM25 vectors given a list of docids + + Parameters + ---------- + norm : str + Normalize the sparse matrix + docids : List[str] + The piece of text to analyze. + + Returns + ------- + csr_matrix + Sparse matrix representation of BM25 vectors + """ + matrix_row, matrix_col, matrix_data = [], [], [] + num_docs = len(docids) + + for index, doc_id in enumerate(tqdm(docids)): + + # Term Frequency + tf = self.index_reader.get_document_vector(doc_id) + if tf is None: + continue + + # Filter out in-eligible terms + tf = {t: tf[t] for t in tf if t in self.term_to_index} + + # Convert from dict to sparse matrix + for term in tf: + bm25_weight = self.index_reader.compute_bm25_term_weight(doc_id, term, analyzer=None) + matrix_row.append(index) + matrix_col.append(self.term_to_index[term]) + matrix_data.append(bm25_weight) + + vectors = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(num_docs, self.vocabulary_size)) + + if norm: + return normalize(vectors, norm=norm) + return vectors diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..92d9116a3c2dbdbecdd98042af861ff72411217b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,15 @@ +Cython>=0.29.21 +numpy>=1.18.1 +pandas>=1.4.0 +pyjnius>=1.4.0 +scikit-learn>=0.22.1 +scipy>=1.4.1 +tqdm +transformers>=4.6.0 +sentencepiece>=0.1.95 +nmslib>=2.1.1 +onnxruntime>=1.8.1 +lightgbm>=3.3.2 +spacy>=3.2.1 +pyyaml +psutil \ No newline at end of file diff --git a/run_gradio_mrtydi_hybrid.py b/run_gradio_mrtydi_hybrid.py new file mode 100644 index 0000000000000000000000000000000000000000..4fad1bce63e2f9776a308175ac00deecb6599e41 --- /dev/null +++ b/run_gradio_mrtydi_hybrid.py @@ -0,0 +1,53 @@ +import argparse + +import gradio as gr +from search_online import OnlineSearcher + +K = 10 + +# default input +DEFAULT_QUERY_MRTYDI="""사용자 질의와 관련된 문단들을 Wikipedia 한국어 코퍼스에서 반환합니다.\n +예를들어\n +- 최초로 전기 자동차를 개발한 기업은 어디야? +- 스쿠버 다이빙 잠수 가능 깊이는 최대 몇미터인가요? +- 독점규제법 상의 기업결합심사기준은 기업결합을 어떻게 구분하여 경쟁제한성을 판단하나요? +""" + + +# manual arguments (FIXME) +args = argparse.Namespace +args.index_type='hybrid' +args.index="/root/indexes/mrtydi-korean/sparse,/root/indexes/mrtydi-korean/dense" +args.encoder="castorini/mdpr-question-nq" +args.device="cuda:0" +args.alpha=1000000 +args.normalization=True +args.lang_abbr='ko' + +# initialize qabot +print("initialize Mr.tydi retrieval bot") +searcher = OnlineSearcher(args) + +def Retrieve(query): + hits = searcher.search(query, K) + + result = searcher.print_result(hits, K) + + return result + +gr.Interface( + fn=Retrieve, + inputs=[ + gr.inputs.Textbox( + default=DEFAULT_QUERY_MRTYDI, + label="질의"), + ], + outputs=[ + gr.inputs.Textbox( + default="검색된 문단들과 점수를 출력합니다", + label="검색 결과") + ], + title="Hybrid (term + neural) 검색", + theme='dark-grass', + description=f"특정 지식베이스에 대해 학습한 검색 시스템을 테스트합니다.\n지식베이스에 맞추어 재학습이 가능하며, 현재 데모에서는 Wikipedia 한국어 코퍼스 (2020 dump, mr.Tydi ver, #문단=1496126)에 대해 학습한 모델을 사용합니다. \n\n neural: castorini/mdpr-[passage,question]-nq, term: BM25" +).launch(share=True) \ No newline at end of file diff --git a/run_indexing_mrtydi_sp_ds.sh b/run_indexing_mrtydi_sp_ds.sh new file mode 100644 index 0000000000000000000000000000000000000000..a74547465203d8f1bc5b80921adb20e2468088cb --- /dev/null +++ b/run_indexing_mrtydi_sp_ds.sh @@ -0,0 +1,64 @@ +#!/bin/bash + +# path setting +CORPUS_DIR=/root/Corpus/mrtydi-korean/collection +CORPUS_PATH=${CORPUS_DIR}/docs.jsonl + +INDEX_DIR=indexes/mrtydi-korean +mkdir -p $INDEX_DIR + +# sparse indexing +lang=korean +abbr=ko +NUM_THREADS=16 + +# `target` directory not found +#echo "sparse (anserini version)" +#target/appassembler/bin/IndexCollection \ + #-collection MrTyDiCollection \ + #-input $CORPUS_DIR \ + #-index $INDEX_DIR/sparse_anserini \ + #-generator DefaultLuceneDocumentGenerator \ + #-threads $NUM_THREADS -storePositions -storeDocvectors -storeRaw -language $abbr + +echo "sparse (pyserini version) ========================> SKIP ====================> " +#python -m pyserini.index.lucene \ + #--collection JsonCollection \ + #--input $CORPUS_DIR \ + #--index $INDEX_DIR/sparse_pyserini \ + #--generator DefaultLuceneDocumentGenerator \ + #--language $abbr \ + #--threads $NUM_THREADS \ + #--storePositions --storeDocvectors --storeRaw + + +# dense indexing +echo "dense" +export CUDA_VISIBLE_DEVICES=1 +BATCH_SIZE=8 +MAXLEN=512 +ENCODER=castorini/mdpr-passage-nq +python -m pyserini.encode input --corpus $CORPUS_PATH \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $INDEX_DIR/dense_maxlen$MAXLEN \ + --to-faiss \ + encoder --encoder $ENCODER \ + --fields title text \ + --max-length $MAXLEN \ + --batch $BATCH_SIZE \ + --fp16 + +BATCH_SIZE=32 +MAXLEN=256 # default +ENCODER=castorini/mdpr-passage-nq +python -m pyserini.encode input --corpus $CORPUS_PATH \ + --fields title text \ + --delimiter "\n\n" \ + output --embeddings $INDEX_DIR/dense_maxlen$MAXLEN \ + --to-faiss \ + encoder --encoder $ENCODER \ + --fields title text \ + --max-length $MAXLEN \ + --batch $BATCH_SIZE \ + --fp16 \ No newline at end of file diff --git a/run_ralm_netspresso_doc.py b/run_ralm_netspresso_doc.py new file mode 100644 index 0000000000000000000000000000000000000000..f5eb4da7a06ac9b5e5244a2b3b80e3af66f2b137 --- /dev/null +++ b/run_ralm_netspresso_doc.py @@ -0,0 +1,247 @@ +"""Ask a question to the netspresso database.""" + +import json +import sys +import argparse +from typing import List + +from langchain.chat_models import ChatOpenAI # for `gpt-3.5-turbo` & `gpt-4` +from langchain.chains import RetrievalQAWithSourcesChain +from langchain.prompts import ( + ChatPromptTemplate, + SystemMessagePromptTemplate, + HumanMessagePromptTemplate, +) +from langchain.schema import BaseRetriever, Document +import gradio as gr + +from search_online import OnlineSearcher + +# DEFAULT_QUESTION = "모델 경량화 및 최적화와 관련하여 Netspresso bot에게 물어보세요.\n예를들어 \n\n- Why do I need to use Netspresso?\n- Summarize how to compress the model with netspresso.\n- Tell me what the pruning is.\n- What kinds of hardware can I use with this toolkit?\n- Can I use YOLOv8 with this tool? If so, tell me the examples." +DEFAULT_QUESTION = "Ask the Netspresso bot about model lightweighting and optimization.\nFor example \n\n- Why do I need to use Netspresso?\n- Summarize how to compress the model with netspresso.\n- Tell me what the pruning is.\n- What kinds of hardware can I use with this toolkit?\n- Can I use YOLOv8 with this tool? If so, tell me the examples." +TEMPERATURE = 0 + +# manual arguments (FIXME) +args = argparse.Namespace +args.index_type = "hybrid" +args.index = ( + "/root/indexes/docs-netspresso-ai/sparse,/root/indexes/docs-netspresso-ai/dense" +) +if isinstance( + args.index, tuple +): # black extension automatically convert long str to tuple + assert len(args.index) == 1 + args.index = args.index[0] +args.encoder = "castorini/mdpr-question-nq" +args.device = "cuda:0" +args.alpha = 0.5 +args.normalization = True +args.lang_abbr = "en" +args.K = 10 + + +# initialize qabot +print("initialize NP doc retrieval bot") +RETRIEVER = OnlineSearcher(args) + + +class LangChainCustomRetrieverWrapper(BaseRetriever): + def __init__(self, args): + super().__init__() + # self.retriever = RETRIEVER # TODO. should be initialize from args + # self.args = args + print("Initialize LangChainCustomRetrieverWrapper, TODO: fix minor bug") + + def get_relevant_documents(self, query: str) -> List[Document]: + """Get texts relevant for a query. + + Args: + query: string to find relevant texts for + + Returns: + List of relevant documents + """ + + print(f"query = {query}") + + # retrieve + # hits = self.retriever.search(query, self.args.K) + hits = RETRIEVER.search( + query, args.K + ) # TODO: fix bug that BaseRetriever object cannot have extra field + + # extract docs + results = [ + { + "contents": json.loads( + # self.retriever.searcher.sparse_searcher.doc(hits[i].docid).raw() # TODO: fix bug that BaseRetriever object cannot have extra field + RETRIEVER.searcher.sparse_searcher.doc(hits[i].docid).raw() + )["contents"], + "docid": hits[i].docid, + } + for i in range(len(hits)) + ] + + # make result list of Document object + return [ + Document( + page_content=result["contents"], metadata={"source": result["docid"]} + ) + for result in results + ] + + async def aget_relevant_documents( + self, query: str + ) -> List[Document]: # abstractmethod + raise NotImplementedError + + +class RaLM: + def __init__(self, args): + self.args = args + self.initialize_ralm() + + def initialize_ralm(self): + # initialize custom retriever + self.retriever = LangChainCustomRetrieverWrapper(self.args) + + # prompt for RaLM + system_template = """Use the following pieces of context to answer the users question. + Take note of the sources and include them in the answer in the format: "SOURCES: source1 source2", use "SOURCES" in capital letters regardless of the number of sources. + Always try to generate answer from source. + ---------------- + {summaries}""" + messages = [ + SystemMessagePromptTemplate.from_template(system_template), + HumanMessagePromptTemplate.from_template("{question}"), + ] + prompt = ChatPromptTemplate.from_messages(messages) + chain_type_kwargs = {"prompt": prompt} + llm = ChatOpenAI(model_name=self.args.model_name, temperature=TEMPERATURE) + self.chain = RetrievalQAWithSourcesChain.from_chain_type( + llm=llm, + chain_type="stuff", + retriever=self.retriever, + return_source_documents=True, + reduce_k_below_max_tokens=True, + chain_type_kwargs=chain_type_kwargs, + ) + + def run_chain(self, question, force_korean=False): + if force_korean: + question = f"{question} 본문을 참고해서 한글로 대답해줘" + result = self.chain({"question": question}) + + # postprocess + result["answer"] = self.postprocess(result["answer"]) + if isinstance(result["sources"], str): + result["sources"] = self.postprocess(result["sources"]) + result["sources"] = result["sources"].split(", ") + result["sources"] = [src.strip() for src in result["sources"]] + + # print result + self.print_result(result) + + return result + + def print_result( + self, result + ): # print result of RetrievalQAWithSourcesChain of langchain + print(f"Answer: {result['answer']}") + + print(f"Sources: ") + print(result["sources"]) + assert isinstance(result["sources"], list) + nSource = len(result["sources"]) + + for i in range(nSource): + source_title = result["sources"][i] + print(f"{source_title}: ") + if "source_documents" in result: + for j in range(len(result["source_documents"])): + if result["source_documents"][j].metadata["source"] == source_title: + print(result["source_documents"][j].page_content) + break + + def postprocess(self, text): + # remove final parenthesis (bug with unknown cause) + if ( + text.endswith(")") + or text.endswith("(") + or text.endswith("[") + or text.endswith("]") + ): + text = text[:-1] + + return text.strip() + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Ask a question to the netspresso docs." + ) + + # General + # parser.add_argument( + # "--question", + # type=str, + # default=None, + # required=True, + # help="The question to ask for database", + # ) + parser.add_argument( + "--model_name", + type=str, + default="gpt-3.5-turbo-16k-0613", + help="model name for openai api", + ) + + # Retriever: fixed arg for now + """ + parser.add_argument( + "--query_encoder_name_or_dir", + type=str, + default="princeton-nlp/densephrases-multi-query-multi", + help="query encoder name registered in huggingface model hub OR custom query encoder checkpoint directory", + ) + parser.add_argument( + "--index_name", + type=str, + default="1048576_flat_OPQ96", + help="index name appended to index directory prefix", + ) + """ + + args = parser.parse_args() + + # to prevent collision with DensePhrase native argparser + sys.argv = [sys.argv[0]] + + # initialize class + app = RaLM(args) + + def question_answer(question): + result = app.run_chain(question=question, force_korean=False) + + return result[ + "answer" + ], "\n######################################################\n\n".join( + [ + f"Source {idx}\n{doc.page_content}" + for idx, doc in enumerate(result["source_documents"]) + ] + ) + + # launch gradio + gr.Interface( + fn=question_answer, + inputs=gr.inputs.Textbox(default=DEFAULT_QUESTION, label="Question"), + outputs=[ + gr.inputs.Textbox(default="", label="Bot response"), + gr.inputs.Textbox(default="", label="Search result used by bot"), + ], + title="Netspresso Q&A bot", + theme="dark-grass", + description="Ask the Netspresso bot about model lightweighting and optimization.", # simplified version, hide detail version + # description="모델 경량화 및 최적화와 관련하여 Netspresso bot에게 물어보세요.\n\n retriever: BM25&mdpr-question-nq, generator: gpt-3.5-turbo-16k-0613 (API)", + ).launch(share=True) diff --git a/runs/dense.txt b/runs/dense.txt new file mode 100644 index 0000000000000000000000000000000000000000..53c70d64b13fe787730c7b855c4aed3ced711cd8 --- /dev/null +++ b/runs/dense.txt @@ -0,0 +1,20500 @@ +132_1-1 Q0 KILT_15421310-48 1 0.499997 hybrid +132_1-1 Q0 KILT_19303381-1 2 0.458877 hybrid +132_1-1 Q0 KILT_3314050-2 3 0.445783 hybrid +132_1-1 Q0 KILT_40136741-1 4 0.413116 hybrid +132_1-1 Q0 KILT_2458522-10 5 0.378040 hybrid +132_1-1 Q0 KILT_2458522-9 6 0.341492 hybrid +132_1-1 Q0 KILT_13053979-2 7 0.335603 hybrid +132_1-1 Q0 KILT_22807088-1 8 0.284189 hybrid +132_1-1 Q0 KILT_15421310-50 9 0.271715 hybrid +132_1-1 Q0 KILT_15421310-49 10 0.259643 hybrid +132_1-1 Q0 KILT_30203400-1 11 0.244364 hybrid +132_1-1 Q0 KILT_22977392-8 12 0.235322 hybrid +132_1-1 Q0 KILT_847880-3 13 0.231698 hybrid +132_1-1 Q0 MARCO_16_1635573462-6 14 0.226650 hybrid +132_1-1 Q0 KILT_3314050-3 15 0.217591 hybrid +132_1-1 Q0 KILT_38186365-2 16 0.202891 hybrid +132_1-1 Q0 KILT_16200976-2 17 0.193801 hybrid +132_1-1 Q0 KILT_1412241-34 18 0.179491 hybrid +132_1-1 Q0 KILT_49198040-1 19 0.175374 hybrid +132_1-1 Q0 KILT_15421310-47 20 0.165952 hybrid +132_1-1 Q0 KILT_25048872-1 21 0.156980 hybrid +132_1-1 Q0 KILT_3314050-5 22 0.141722 hybrid +132_1-1 Q0 MARCO_17_4116009428-7 23 0.135903 hybrid +132_1-1 Q0 MARCO_17_4116009428-9 24 0.135903 hybrid +132_1-1 Q0 MARCO_17_4116009428-5 25 0.135903 hybrid +132_1-1 Q0 KILT_35323878-1 26 0.135148 hybrid +132_1-1 Q0 KILT_3814666-1 27 0.126743 hybrid +132_1-1 Q0 KILT_3314050-1 28 0.126492 hybrid +132_1-1 Q0 MARCO_53_1470809951-2 29 0.117685 hybrid +132_1-1 Q0 KILT_16200976-1 30 0.116716 hybrid +132_1-1 Q0 KILT_15421310-46 31 0.116652 hybrid +132_1-1 Q0 KILT_11920075-1 32 0.116181 hybrid +132_1-1 Q0 KILT_13196219-1 33 0.115148 hybrid +132_1-1 Q0 KILT_23982012-2 34 0.106855 hybrid +132_1-1 Q0 KILT_22807088-2 35 0.104457 hybrid +132_1-1 Q0 KILT_7774682-2 36 0.102064 hybrid +132_1-1 Q0 KILT_36241600-4 37 0.100179 hybrid +132_1-1 Q0 KILT_2458522-4 38 0.091046 hybrid +132_1-1 Q0 KILT_40484296-1 39 0.063080 hybrid +132_1-1 Q0 KILT_472412-2 40 0.057764 hybrid +132_1-1 Q0 KILT_7506634-6 41 0.053133 hybrid +132_1-1 Q0 KILT_9063580-3 42 0.034701 hybrid +132_1-1 Q0 KILT_464847-10 43 0.034380 hybrid +132_1-1 Q0 KILT_39363681-4 44 0.026805 hybrid +132_1-1 Q0 KILT_43415517-1 45 0.025857 hybrid +132_1-1 Q0 KILT_16204724-1 46 0.025648 hybrid +132_1-1 Q0 KILT_3314050-4 47 0.024701 hybrid +132_1-1 Q0 KILT_3137483-1 48 0.024267 hybrid +132_1-1 Q0 KILT_1753646-23 49 0.018978 hybrid +132_1-1 Q0 KILT_947570-4 50 0.017479 hybrid +132_1-1 Q0 MARCO_53_1038795391-1 51 0.015841 hybrid +132_1-1 Q0 MARCO_35_1719309081-36 52 0.008180 hybrid +132_1-1 Q0 KILT_610171-2 53 0.005487 hybrid +132_1-1 Q0 KILT_44931434-4 54 0.002789 hybrid +132_1-1 Q0 KILT_17913216-3 55 0.002575 hybrid +132_1-1 Q0 KILT_2998069-1 56 0.001076 hybrid +132_1-1 Q0 KILT_2998069-6 57 -0.001697 hybrid +132_1-1 Q0 KILT_21931784-4 58 -0.004331 hybrid +132_1-1 Q0 KILT_2338146-2 59 -0.005214 hybrid +132_1-1 Q0 KILT_1801215-1 60 -0.011687 hybrid +132_1-1 Q0 KILT_955962-3 61 -0.013314 hybrid +132_1-1 Q0 MARCO_10_266906113-3 62 -0.015782 hybrid +132_1-1 Q0 KILT_23944943-4 63 -0.018823 hybrid +132_1-1 Q0 KILT_2081636-2 64 -0.023619 hybrid +132_1-1 Q0 KILT_26521678-3 65 -0.025413 hybrid +132_1-1 Q0 MARCO_29_1328890399-3 66 -0.028662 hybrid +132_1-1 Q0 KILT_9376574-6 67 -0.033036 hybrid +132_1-1 Q0 KILT_464836-2 68 -0.038250 hybrid +132_1-1 Q0 KILT_2998069-4 69 -0.038962 hybrid +132_1-1 Q0 KILT_2111892-10 70 -0.040595 hybrid +132_1-1 Q0 MARCO_16_2987067896-18 71 -0.040692 hybrid +132_1-1 Q0 KILT_1933663-2 72 -0.041447 hybrid +132_1-1 Q0 KILT_44446707-1 73 -0.042399 hybrid +132_1-1 Q0 KILT_13840139-1 74 -0.043036 hybrid +132_1-1 Q0 KILT_4068372-3 75 -0.045065 hybrid +132_1-1 Q0 KILT_2458522-8 76 -0.045772 hybrid +132_1-1 Q0 KILT_52789775-1 77 -0.049311 hybrid +132_1-1 Q0 KILT_40688666-2 78 -0.050274 hybrid +132_1-1 Q0 MARCO_16_4109776167-13 79 -0.051602 hybrid +132_1-1 Q0 KILT_42582633-3 80 -0.054568 hybrid +132_1-1 Q0 KILT_48675588-1 81 -0.054611 hybrid +132_1-1 Q0 KILT_5481528-2 82 -0.055141 hybrid +132_1-1 Q0 KILT_1840352-7 83 -0.055264 hybrid +132_1-1 Q0 KILT_2111892-1 84 -0.055317 hybrid +132_1-1 Q0 KILT_3137483-3 85 -0.055639 hybrid +132_1-1 Q0 KILT_36521018-1 86 -0.055708 hybrid +132_1-1 Q0 KILT_2421366-8 87 -0.059627 hybrid +132_1-1 Q0 KILT_41226911-1 88 -0.060414 hybrid +132_1-1 Q0 KILT_2731755-1 89 -0.062057 hybrid +132_1-1 Q0 KILT_16076835-1 90 -0.062271 hybrid +132_1-1 Q0 KILT_37659118-1 91 -0.063353 hybrid +132_1-1 Q0 KILT_1753646-24 92 -0.065591 hybrid +132_1-1 Q0 MARCO_16_1636454939-5 93 -0.066570 hybrid +132_1-1 Q0 KILT_22977392-9 94 -0.067256 hybrid +132_1-1 Q0 KILT_13000505-1 95 -0.074681 hybrid +132_1-1 Q0 MARCO_04_1212901998-4 96 -0.075698 hybrid +132_1-1 Q0 KILT_8517686-23 97 -0.078075 hybrid +132_1-1 Q0 MARCO_55_248915295-6 98 -0.078808 hybrid +132_1-1 Q0 KILT_10448665-1 99 -0.078819 hybrid +132_1-1 Q0 KILT_3013747-1 100 -0.079900 hybrid +132_1-3 Q0 MARCO_58_1506442456-5 1 0.500002 hybrid +132_1-3 Q0 MARCO_07_1588133905-8 2 0.446066 hybrid +132_1-3 Q0 MARCO_18_918960049-9 3 0.433224 hybrid +132_1-3 Q0 MARCO_06_231302327-9 4 0.410734 hybrid +132_1-3 Q0 MARCO_06_231302327-5 5 0.365159 hybrid +132_1-3 Q0 KILT_59182557-2 6 0.363201 hybrid +132_1-3 Q0 MARCO_18_1298916707-9 7 0.335824 hybrid +132_1-3 Q0 MARCO_02_1543368057-11 8 0.313113 hybrid +132_1-3 Q0 MARCO_18_925604372-44 9 0.307699 hybrid +132_1-3 Q0 MARCO_32_261254719-2 10 0.273761 hybrid +132_1-3 Q0 MARCO_34_890099330-6 11 0.263518 hybrid +132_1-3 Q0 MARCO_10_828766205-3 12 0.250328 hybrid +132_1-3 Q0 MARCO_03_1616118076-2 13 0.238321 hybrid +132_1-3 Q0 MARCO_48_242336517-2 14 0.237924 hybrid +132_1-3 Q0 MARCO_18_2866145270-4 15 0.231236 hybrid +132_1-3 Q0 MARCO_26_816952468-4 16 0.214658 hybrid +132_1-3 Q0 MARCO_15_1986073531-10 17 0.212429 hybrid +132_1-3 Q0 MARCO_26_1845078719-3 18 0.199199 hybrid +132_1-3 Q0 MARCO_00_1103558259-10 19 0.196884 hybrid +132_1-3 Q0 MARCO_03_254326605-5 20 0.191397 hybrid +132_1-3 Q0 KILT_3720257-10 21 0.179362 hybrid +132_1-3 Q0 MARCO_27_1333359271-2 22 0.179028 hybrid +132_1-3 Q0 MARCO_04_1490023419-26 23 0.176452 hybrid +132_1-3 Q0 MARCO_10_804225852-2 24 0.175752 hybrid +132_1-3 Q0 MARCO_50_928058946-4 25 0.171583 hybrid +132_1-3 Q0 MARCO_06_231302327-4 26 0.168772 hybrid +132_1-3 Q0 MARCO_36_997109766-6 27 0.161534 hybrid +132_1-3 Q0 MARCO_19_604576804-42 28 0.149702 hybrid +132_1-3 Q0 MARCO_26_816952468-5 29 0.147216 hybrid +132_1-3 Q0 MARCO_39_609949550-4 30 0.141391 hybrid +132_1-3 Q0 MARCO_51_2002129775-19 31 0.140669 hybrid +132_1-3 Q0 MARCO_11_1452404406-4 32 0.136883 hybrid +132_1-3 Q0 MARCO_18_925604372-5 33 0.132673 hybrid +132_1-3 Q0 KILT_598434-12 34 0.132506 hybrid +132_1-3 Q0 MARCO_37_1183902612-5 35 0.128354 hybrid +132_1-3 Q0 MARCO_50_1524010470-3 36 0.126373 hybrid +132_1-3 Q0 MARCO_45_1326000842-4 37 0.125286 hybrid +132_1-3 Q0 MARCO_28_437000097-15 38 0.123467 hybrid +132_1-3 Q0 MARCO_57_910685675-2 39 0.121658 hybrid +132_1-3 Q0 MARCO_50_1523886747-14 40 0.117782 hybrid +132_1-3 Q0 MARCO_31_899439621-5 41 0.112002 hybrid +132_1-3 Q0 MARCO_17_4142257896-34 42 0.108130 hybrid +132_1-3 Q0 KILT_12388149-2 43 0.107634 hybrid +132_1-3 Q0 MARCO_36_997109766-5 44 0.099597 hybrid +132_1-3 Q0 MARCO_10_804332965-2 45 0.098149 hybrid +132_1-3 Q0 MARCO_57_912859654-9 46 0.080857 hybrid +132_1-3 Q0 MARCO_45_976708614-7 47 0.070980 hybrid +132_1-3 Q0 MARCO_27_917274460-2 48 0.070172 hybrid +132_1-3 Q0 MARCO_31_899439621-6 49 0.062384 hybrid +132_1-3 Q0 MARCO_23_1082902069-12 50 0.057334 hybrid +132_1-3 Q0 MARCO_54_316032144-6 51 0.050295 hybrid +132_1-3 Q0 MARCO_51_2002129775-28 52 0.048901 hybrid +132_1-3 Q0 MARCO_50_2147642174-88 53 0.045006 hybrid +132_1-3 Q0 MARCO_25_1768567979-3 54 0.042759 hybrid +132_1-3 Q0 MARCO_17_4142257896-51 55 0.042574 hybrid +132_1-3 Q0 MARCO_10_828766205-2 56 0.040016 hybrid +132_1-3 Q0 MARCO_51_2008589623-21 57 0.035061 hybrid +132_1-3 Q0 MARCO_50_2149491569-26 58 0.035002 hybrid +132_1-3 Q0 MARCO_45_1323998215-5 59 0.034470 hybrid +132_1-3 Q0 MARCO_50_2149436416-41 60 0.033694 hybrid +132_1-3 Q0 MARCO_00_1102877206-2 61 0.031993 hybrid +132_1-3 Q0 MARCO_00_1103558259-11 62 0.028419 hybrid +132_1-3 Q0 MARCO_39_609949550-8 63 0.027047 hybrid +132_1-3 Q0 KILT_10304194-4 64 0.018198 hybrid +132_1-3 Q0 MARCO_17_1686012448-8 65 0.017386 hybrid +132_1-3 Q0 MARCO_51_1632970605-2 66 0.017142 hybrid +132_1-3 Q0 MARCO_20_1691482493-2 67 0.014079 hybrid +132_1-3 Q0 MARCO_45_533555071-2 68 0.013650 hybrid +132_1-3 Q0 MARCO_51_1632970605-7 69 0.008650 hybrid +132_1-3 Q0 MARCO_47_1515337872-8 70 0.007369 hybrid +132_1-3 Q0 MARCO_50_1422320383-17 71 0.006078 hybrid +132_1-3 Q0 MARCO_02_441612572-4 72 0.005194 hybrid +132_1-3 Q0 MARCO_18_925604372-43 73 0.004932 hybrid +132_1-3 Q0 MARCO_39_609949550-15 74 0.004598 hybrid +132_1-3 Q0 MARCO_39_609949550-12 75 0.004178 hybrid +132_1-3 Q0 MARCO_15_132365987-11 76 -0.003163 hybrid +132_1-3 Q0 MARCO_50_1941075938-16 77 -0.004021 hybrid +132_1-3 Q0 MARCO_28_445566701-2 78 -0.005807 hybrid +132_1-3 Q0 MARCO_00_1103399945-24 79 -0.011308 hybrid +132_1-3 Q0 MARCO_50_2149706293-102 80 -0.012025 hybrid +132_1-3 Q0 MARCO_37_706820400-4 81 -0.012540 hybrid +132_1-3 Q0 MARCO_31_644387214-3 82 -0.012978 hybrid +132_1-3 Q0 KILT_13294262-1 83 -0.013081 hybrid +132_1-3 Q0 MARCO_36_823378330-3 84 -0.013794 hybrid +132_1-3 Q0 MARCO_30_1655476893-8 85 -0.017842 hybrid +132_1-3 Q0 KILT_2240837-4 86 -0.019823 hybrid +132_1-3 Q0 MARCO_31_1436616854-32 87 -0.022837 hybrid +132_1-3 Q0 MARCO_41_876236706-4 88 -0.023464 hybrid +132_1-3 Q0 MARCO_13_436497401-6 89 -0.026609 hybrid +132_1-3 Q0 MARCO_31_1436668743-16 90 -0.027557 hybrid +132_1-3 Q0 MARCO_50_1425968040-32 91 -0.028148 hybrid +132_1-3 Q0 MARCO_00_1103718103-2 92 -0.029389 hybrid +132_1-3 Q0 MARCO_00_1103778565-30 93 -0.031492 hybrid +132_1-3 Q0 MARCO_50_2149859495-12 94 -0.031510 hybrid +132_1-3 Q0 MARCO_50_2149491569-24 95 -0.032309 hybrid +132_1-3 Q0 MARCO_15_863846221-2 96 -0.032575 hybrid +132_1-3 Q0 MARCO_51_2012158191-3 97 -0.033229 hybrid +132_1-3 Q0 MARCO_10_236651653-3 98 -0.037168 hybrid +132_1-3 Q0 MARCO_45_1323998215-4 99 -0.037665 hybrid +132_1-3 Q0 MARCO_10_236406528-1 100 -0.037936 hybrid +132_1-5 Q0 MARCO_58_1506420919-3 1 0.500000 hybrid +132_1-5 Q0 MARCO_10_236394391-7 2 0.378242 hybrid +132_1-5 Q0 MARCO_10_828766205-3 3 0.309366 hybrid +132_1-5 Q0 MARCO_03_254326605-5 4 0.297917 hybrid +132_1-5 Q0 MARCO_31_645942736-2 5 0.265802 hybrid +132_1-5 Q0 MARCO_10_236406528-1 6 0.252570 hybrid +132_1-5 Q0 MARCO_30_1655476893-8 7 0.235462 hybrid +132_1-5 Q0 MARCO_13_436830247-3 8 0.231034 hybrid +132_1-5 Q0 MARCO_00_1103829918-5 9 0.214278 hybrid +132_1-5 Q0 MARCO_30_1129690938-4 10 0.207295 hybrid +132_1-5 Q0 MARCO_50_2149706293-102 11 0.200108 hybrid +132_1-5 Q0 MARCO_39_1570912715-7 12 0.194741 hybrid +132_1-5 Q0 MARCO_02_486636638-2 13 0.159342 hybrid +132_1-5 Q0 MARCO_15_132412308-6 14 0.151800 hybrid +132_1-5 Q0 MARCO_19_603398757-17 15 0.141736 hybrid +132_1-5 Q0 MARCO_42_165920228-2 16 0.140984 hybrid +132_1-5 Q0 MARCO_20_1691148513-11 17 0.140279 hybrid +132_1-5 Q0 MARCO_20_1124184139-3 18 0.129833 hybrid +132_1-5 Q0 MARCO_19_607425738-12 19 0.122544 hybrid +132_1-5 Q0 MARCO_19_609601020-29 20 0.120898 hybrid +132_1-5 Q0 MARCO_39_609949550-9 21 0.115053 hybrid +132_1-5 Q0 KILT_59338634-30 22 0.094458 hybrid +132_1-5 Q0 MARCO_11_760134771-26 23 0.089294 hybrid +132_1-5 Q0 MARCO_24_1718905825-4 24 0.087434 hybrid +132_1-5 Q0 MARCO_17_694749195-6 25 0.085340 hybrid +132_1-5 Q0 MARCO_04_1490023419-26 26 0.081470 hybrid +132_1-5 Q0 MARCO_57_909001994-3 27 0.079041 hybrid +132_1-5 Q0 MARCO_50_2147642174-79 28 0.078536 hybrid +132_1-5 Q0 MARCO_00_1103829918-3 29 0.077919 hybrid +132_1-5 Q0 MARCO_45_976708614-8 30 0.071248 hybrid +132_1-5 Q0 MARCO_11_760134771-28 31 0.063386 hybrid +132_1-5 Q0 MARCO_45_1320884032-3 32 0.062600 hybrid +132_1-5 Q0 MARCO_58_1506442456-5 33 0.059239 hybrid +132_1-5 Q0 MARCO_54_1594732331-23 34 0.054953 hybrid +132_1-5 Q0 MARCO_19_603398757-16 35 0.049162 hybrid +132_1-5 Q0 MARCO_56_1007915785-11 36 0.045255 hybrid +132_1-5 Q0 MARCO_19_2045096479-6 37 0.033633 hybrid +132_1-5 Q0 MARCO_51_694229016-5 38 0.032396 hybrid +132_1-5 Q0 KILT_60571674-5 39 0.028778 hybrid +132_1-5 Q0 MARCO_23_1771952224-9 40 0.028340 hybrid +132_1-5 Q0 MARCO_19_604576804-41 41 0.014905 hybrid +132_1-5 Q0 MARCO_13_436876254-5 42 0.013909 hybrid +132_1-5 Q0 MARCO_58_285511344-11 43 0.013120 hybrid +132_1-5 Q0 MARCO_15_132940390-6 44 0.011317 hybrid +132_1-5 Q0 MARCO_58_1733551372-2 45 0.009874 hybrid +132_1-5 Q0 MARCO_37_708108386-4 46 0.008478 hybrid +132_1-5 Q0 MARCO_09_353413172-2 47 0.007817 hybrid +132_1-5 Q0 MARCO_37_708108386-3 48 0.007526 hybrid +132_1-5 Q0 MARCO_00_1102954422-6 49 0.002419 hybrid +132_1-5 Q0 MARCO_05_426664012-7 50 0.002385 hybrid +132_1-5 Q0 MARCO_50_2147642174-87 51 -0.002080 hybrid +132_1-5 Q0 MARCO_39_609799842-9 52 -0.002589 hybrid +132_1-5 Q0 MARCO_22_1650774646-3 53 -0.006475 hybrid +132_1-5 Q0 MARCO_47_1515239096-7 54 -0.007427 hybrid +132_1-5 Q0 MARCO_10_236418972-2 55 -0.009521 hybrid +132_1-5 Q0 MARCO_04_1490023419-25 56 -0.010246 hybrid +132_1-5 Q0 MARCO_51_1903558454-24 57 -0.022878 hybrid +132_1-5 Q0 MARCO_15_1986073531-10 58 -0.022977 hybrid +132_1-5 Q0 MARCO_10_236646090-2 59 -0.023214 hybrid +132_1-5 Q0 KILT_59338634-57 60 -0.023905 hybrid +132_1-5 Q0 MARCO_25_518489685-24 61 -0.024301 hybrid +132_1-5 Q0 KILT_59338634-8 62 -0.025342 hybrid +132_1-5 Q0 MARCO_17_368601977-28 63 -0.025992 hybrid +132_1-5 Q0 MARCO_45_846405189-3 64 -0.031370 hybrid +132_1-5 Q0 MARCO_58_1506600440-2 65 -0.032813 hybrid +132_1-5 Q0 MARCO_17_368601977-10 66 -0.036025 hybrid +132_1-5 Q0 MARCO_47_417315831-6 67 -0.036157 hybrid +132_1-5 Q0 MARCO_23_31278898-28 68 -0.036550 hybrid +132_1-5 Q0 MARCO_20_1691148513-2 69 -0.038007 hybrid +132_1-5 Q0 MARCO_20_1691433948-5 70 -0.041362 hybrid +132_1-5 Q0 MARCO_47_1509828693-4 71 -0.045530 hybrid +132_1-5 Q0 MARCO_22_1644883624-40 72 -0.045736 hybrid +132_1-5 Q0 MARCO_20_1691148513-18 73 -0.048474 hybrid +132_1-5 Q0 MARCO_27_917274460-2 74 -0.051876 hybrid +132_1-5 Q0 MARCO_48_242356551-2 75 -0.052096 hybrid +132_1-5 Q0 MARCO_13_453504391-34 76 -0.055841 hybrid +132_1-5 Q0 MARCO_25_518489685-31 77 -0.055844 hybrid +132_1-5 Q0 MARCO_31_1436406151-1 78 -0.056616 hybrid +132_1-5 Q0 MARCO_28_437000097-15 79 -0.058402 hybrid +132_1-5 Q0 MARCO_58_1505243037-3 80 -0.058778 hybrid +132_1-5 Q0 MARCO_19_1473440804-7 81 -0.059303 hybrid +132_1-5 Q0 KILT_59338634-66 82 -0.059785 hybrid +132_1-5 Q0 MARCO_20_1691148513-21 83 -0.060886 hybrid +132_1-5 Q0 MARCO_29_1205014654-7 84 -0.062566 hybrid +132_1-5 Q0 MARCO_13_436467379-6 85 -0.064295 hybrid +132_1-5 Q0 MARCO_51_1318862416-2 86 -0.064972 hybrid +132_1-5 Q0 MARCO_36_823378330-3 87 -0.067015 hybrid +132_1-5 Q0 MARCO_19_607425738-13 88 -0.068445 hybrid +132_1-5 Q0 MARCO_48_242061072-3 89 -0.069164 hybrid +132_1-5 Q0 MARCO_05_426664012-11 90 -0.069611 hybrid +132_1-5 Q0 MARCO_06_1867900076-7 91 -0.072681 hybrid +132_1-5 Q0 MARCO_05_807840948-8 92 -0.076042 hybrid +132_1-5 Q0 MARCO_13_436806846-5 93 -0.077062 hybrid +132_1-5 Q0 MARCO_51_2003533718-9 94 -0.077821 hybrid +132_1-5 Q0 MARCO_13_453504391-35 95 -0.078543 hybrid +132_1-5 Q0 MARCO_15_134505259-2 96 -0.078831 hybrid +132_1-5 Q0 MARCO_20_1691433948-4 97 -0.079783 hybrid +132_1-5 Q0 MARCO_17_368601977-8 98 -0.080999 hybrid +132_1-5 Q0 MARCO_18_4362319692-22 99 -0.082595 hybrid +132_1-5 Q0 MARCO_28_445624259-26 100 -0.084218 hybrid +132_1-7 Q0 MARCO_44_608301288-3 1 0.500000 hybrid +132_1-7 Q0 MARCO_20_1080149910-3 2 0.442665 hybrid +132_1-7 Q0 MARCO_20_1080149910-1 3 0.382339 hybrid +132_1-7 Q0 MARCO_41_1403431690-48 4 0.189549 hybrid +132_1-7 Q0 KILT_9633122-2 5 0.151501 hybrid +132_1-7 Q0 MARCO_14_1096592687-6 6 0.142547 hybrid +132_1-7 Q0 MARCO_41_1188921370-50 7 0.097819 hybrid +132_1-7 Q0 MARCO_12_1726299580-22 8 0.079176 hybrid +132_1-7 Q0 MARCO_57_1272692344-7 9 0.074642 hybrid +132_1-7 Q0 MARCO_44_99453452-6 10 0.070061 hybrid +132_1-7 Q0 MARCO_10_553286744-9 11 0.067354 hybrid +132_1-7 Q0 MARCO_20_1078320872-3 12 0.048621 hybrid +132_1-7 Q0 MARCO_41_1195782895-40 13 0.038708 hybrid +132_1-7 Q0 MARCO_24_1436660303-8 14 0.032064 hybrid +132_1-7 Q0 MARCO_50_1401708149-14 15 0.027023 hybrid +132_1-7 Q0 MARCO_50_482784560-7 16 0.010310 hybrid +132_1-7 Q0 MARCO_16_441015391-39 17 0.006722 hybrid +132_1-7 Q0 MARCO_41_1359798319-2 18 0.005748 hybrid +132_1-7 Q0 MARCO_20_793251151-2 19 0.005041 hybrid +132_1-7 Q0 MARCO_41_1113672845-5 20 0.001560 hybrid +132_1-7 Q0 MARCO_41_1120557748-61 21 -0.002291 hybrid +132_1-7 Q0 MARCO_54_1854586839-3 22 -0.008094 hybrid +132_1-7 Q0 MARCO_29_1140061185-1 23 -0.008726 hybrid +132_1-7 Q0 MARCO_48_1746426869-14 24 -0.009795 hybrid +132_1-7 Q0 MARCO_50_1618621781-84 25 -0.020757 hybrid +132_1-7 Q0 MARCO_07_1581564066-7 26 -0.021609 hybrid +132_1-7 Q0 MARCO_50_2393043686-44 27 -0.022619 hybrid +132_1-7 Q0 MARCO_01_1873912776-19 28 -0.028634 hybrid +132_1-7 Q0 MARCO_20_1103845017-5 29 -0.033263 hybrid +132_1-7 Q0 MARCO_41_1395334552-12 30 -0.034579 hybrid +132_1-7 Q0 KILT_39846214-3 31 -0.063952 hybrid +132_1-7 Q0 MARCO_23_296547047-1 32 -0.064914 hybrid +132_1-7 Q0 MARCO_50_2384128295-13 33 -0.064950 hybrid +132_1-7 Q0 MARCO_50_1677568946-8 34 -0.079774 hybrid +132_1-7 Q0 MARCO_21_1434808992-4 35 -0.082661 hybrid +132_1-7 Q0 MARCO_20_1078193273-2 36 -0.085070 hybrid +132_1-7 Q0 MARCO_41_1223745193-34 37 -0.085420 hybrid +132_1-7 Q0 MARCO_54_1855035210-2 38 -0.089647 hybrid +132_1-7 Q0 MARCO_54_1568868146-1 39 -0.090692 hybrid +132_1-7 Q0 MARCO_41_1399839309-5 40 -0.094653 hybrid +132_1-7 Q0 MARCO_20_1084020319-2 41 -0.096766 hybrid +132_1-7 Q0 MARCO_50_1434223397-6 42 -0.098802 hybrid +132_1-7 Q0 MARCO_50_1421508053-6 43 -0.101709 hybrid +132_1-7 Q0 MARCO_41_1191084465-7 44 -0.102998 hybrid +132_1-7 Q0 MARCO_44_1858592779-1 45 -0.104636 hybrid +132_1-7 Q0 MARCO_44_1488052634-1 46 -0.106121 hybrid +132_1-7 Q0 MARCO_50_1618621781-16 47 -0.107143 hybrid +132_1-7 Q0 MARCO_20_1086585043-3 48 -0.108612 hybrid +132_1-7 Q0 MARCO_06_1225876216-165 49 -0.109705 hybrid +132_1-7 Q0 MARCO_23_295989710-1 50 -0.112526 hybrid +132_1-7 Q0 MARCO_23_295989710-5 51 -0.114683 hybrid +132_1-7 Q0 MARCO_41_1402217732-36 52 -0.117028 hybrid +132_1-7 Q0 MARCO_09_385403783-1 53 -0.117075 hybrid +132_1-7 Q0 MARCO_30_825719336-17 54 -0.119260 hybrid +132_1-7 Q0 MARCO_50_1618621781-78 55 -0.120497 hybrid +132_1-7 Q0 MARCO_10_1386504938-4 56 -0.120737 hybrid +132_1-7 Q0 KILT_8241411-8 57 -0.127892 hybrid +132_1-7 Q0 MARCO_54_1852503102-1 58 -0.132465 hybrid +132_1-7 Q0 MARCO_05_1141647725-4 59 -0.134437 hybrid +132_1-7 Q0 MARCO_09_707794158-2 60 -0.134445 hybrid +132_1-7 Q0 MARCO_19_1129340574-20 61 -0.134999 hybrid +132_1-7 Q0 MARCO_43_331143486-2 62 -0.135620 hybrid +132_1-7 Q0 MARCO_41_1241497501-4 63 -0.137372 hybrid +132_1-7 Q0 MARCO_10_1386314100-3 64 -0.137970 hybrid +132_1-7 Q0 MARCO_41_2130302612-10 65 -0.140449 hybrid +132_1-7 Q0 MARCO_14_1518437536-1 66 -0.142390 hybrid +132_1-7 Q0 MARCO_20_1084020319-1 67 -0.143478 hybrid +132_1-7 Q0 MARCO_21_1038151731-2 68 -0.145325 hybrid +132_1-7 Q0 MARCO_52_364601199-5 69 -0.146295 hybrid +132_1-7 Q0 MARCO_20_1080859332-3 70 -0.146711 hybrid +132_1-7 Q0 MARCO_50_2384128295-49 71 -0.147458 hybrid +132_1-7 Q0 MARCO_59_887119492-13 72 -0.153689 hybrid +132_1-7 Q0 MARCO_59_887102746-9 73 -0.153689 hybrid +132_1-7 Q0 MARCO_59_887141422-13 74 -0.153689 hybrid +132_1-7 Q0 MARCO_59_887178216-17 75 -0.153689 hybrid +132_1-7 Q0 MARCO_40_1189255130-23 76 -0.154059 hybrid +132_1-7 Q0 MARCO_28_479386793-14 77 -0.157292 hybrid +132_1-7 Q0 MARCO_11_119826493-2 78 -0.158490 hybrid +132_1-7 Q0 MARCO_41_1241497501-17 79 -0.160113 hybrid +132_1-7 Q0 MARCO_05_597542423-1 80 -0.161681 hybrid +132_1-7 Q0 KILT_58057983-1 81 -0.161700 hybrid +132_1-7 Q0 KILT_2742821-1 82 -0.166895 hybrid +132_1-7 Q0 MARCO_55_112565539-5 83 -0.169362 hybrid +132_1-7 Q0 MARCO_55_99545181-3 84 -0.169362 hybrid +132_1-7 Q0 MARCO_09_542637690-7 85 -0.169362 hybrid +132_1-7 Q0 MARCO_55_99140446-3 86 -0.169362 hybrid +132_1-7 Q0 MARCO_55_102203104-6 87 -0.169362 hybrid +132_1-7 Q0 MARCO_09_541583823-3 88 -0.169362 hybrid +132_1-7 Q0 MARCO_09_542345118-5 89 -0.169362 hybrid +132_1-7 Q0 MARCO_55_98415181-4 90 -0.169362 hybrid +132_1-7 Q0 MARCO_55_101411483-4 91 -0.169362 hybrid +132_1-7 Q0 MARCO_55_96613317-5 92 -0.169362 hybrid +132_1-7 Q0 MARCO_55_112554050-7 93 -0.169362 hybrid +132_1-7 Q0 MARCO_55_102930164-4 94 -0.169362 hybrid +132_1-7 Q0 MARCO_09_541895044-5 95 -0.169362 hybrid +132_1-7 Q0 MARCO_09_542113478-5 96 -0.169362 hybrid +132_1-7 Q0 MARCO_55_75421816-3 97 -0.169370 hybrid +132_1-7 Q0 MARCO_09_541580933-3 98 -0.169370 hybrid +132_1-7 Q0 MARCO_29_1138450540-22 99 -0.171154 hybrid +132_1-7 Q0 MARCO_50_1660575900-17 100 -0.172458 hybrid +132_2-1 Q0 MARCO_28_424288304-4 1 0.500000 hybrid +132_2-1 Q0 MARCO_10_828766205-3 2 0.445348 hybrid +132_2-1 Q0 MARCO_00_1103829918-5 3 0.402068 hybrid +132_2-1 Q0 MARCO_31_644228898-2 4 0.385504 hybrid +132_2-1 Q0 MARCO_03_254326605-5 5 0.359000 hybrid +132_2-1 Q0 MARCO_11_760134771-28 6 0.354087 hybrid +132_2-1 Q0 MARCO_10_236394391-7 7 0.352375 hybrid +132_2-1 Q0 MARCO_11_760134771-26 8 0.334534 hybrid +132_2-1 Q0 KILT_35226965-1 9 0.330947 hybrid +132_2-1 Q0 MARCO_19_603398757-29 10 0.308062 hybrid +132_2-1 Q0 MARCO_19_607425738-12 11 0.290193 hybrid +132_2-1 Q0 MARCO_51_1903558454-38 12 0.288793 hybrid +132_2-1 Q0 MARCO_19_607425738-13 13 0.262137 hybrid +132_2-1 Q0 MARCO_19_606923468-24 14 0.259395 hybrid +132_2-1 Q0 MARCO_27_917687231-39 15 0.243087 hybrid +132_2-1 Q0 MARCO_20_1691148513-13 16 0.240840 hybrid +132_2-1 Q0 MARCO_14_126935813-3 17 0.216148 hybrid +132_2-1 Q0 MARCO_15_132940390-6 18 0.195685 hybrid +132_2-1 Q0 MARCO_51_1632226513-8 19 0.194432 hybrid +132_2-1 Q0 MARCO_19_603398757-16 20 0.191343 hybrid +132_2-1 Q0 MARCO_23_53863428-7 21 0.185952 hybrid +132_2-1 Q0 MARCO_30_1655476893-8 22 0.175521 hybrid +132_2-1 Q0 MARCO_59_882821778-2 23 0.167098 hybrid +132_2-1 Q0 MARCO_09_346768588-10 24 0.166064 hybrid +132_2-1 Q0 MARCO_51_1318862416-2 25 0.157585 hybrid +132_2-1 Q0 MARCO_20_1116793352-5 26 0.151196 hybrid +132_2-1 Q0 MARCO_31_1436406151-1 27 0.148893 hybrid +132_2-1 Q0 MARCO_50_1412547863-29 28 0.141982 hybrid +132_2-1 Q0 MARCO_19_603398757-17 29 0.137944 hybrid +132_2-1 Q0 MARCO_46_1380912906-4 30 0.135119 hybrid +132_2-1 Q0 KILT_35614913-9 31 0.133080 hybrid +132_2-1 Q0 MARCO_25_1032729440-11 32 0.128080 hybrid +132_2-1 Q0 MARCO_19_603200455-4 33 0.126815 hybrid +132_2-1 Q0 MARCO_50_2386444010-48 34 0.125777 hybrid +132_2-1 Q0 MARCO_51_1903558454-24 35 0.125147 hybrid +132_2-1 Q0 MARCO_10_236646090-2 36 0.123151 hybrid +132_2-1 Q0 MARCO_57_1273989673-2 37 0.116348 hybrid +132_2-1 Q0 MARCO_57_1273085015-2 38 0.104572 hybrid +132_2-1 Q0 MARCO_43_329828458-6 39 0.103319 hybrid +132_2-1 Q0 MARCO_20_1691148513-11 40 0.100338 hybrid +132_2-1 Q0 MARCO_36_1434053815-6 41 0.099756 hybrid +132_2-1 Q0 MARCO_58_1506420919-3 42 0.095985 hybrid +132_2-1 Q0 MARCO_03_1031661350-2 43 0.093431 hybrid +132_2-1 Q0 MARCO_37_708108386-4 44 0.093152 hybrid +132_2-1 Q0 MARCO_13_436830247-3 45 0.082230 hybrid +132_2-1 Q0 MARCO_19_607425738-23 46 0.081815 hybrid +132_2-1 Q0 MARCO_19_604822460-1 47 0.080370 hybrid +132_2-1 Q0 MARCO_19_604822460-2 48 0.079772 hybrid +132_2-1 Q0 MARCO_19_607425738-11 49 0.072537 hybrid +132_2-1 Q0 MARCO_19_607425738-10 50 0.071344 hybrid +132_2-1 Q0 MARCO_50_2149706293-102 51 0.065658 hybrid +132_2-1 Q0 MARCO_46_1380870490-8 52 0.064960 hybrid +132_2-1 Q0 MARCO_31_645942736-2 53 0.063511 hybrid +132_2-1 Q0 MARCO_19_603246174-24 54 0.061991 hybrid +132_2-1 Q0 MARCO_04_1490023419-25 55 0.059301 hybrid +132_2-1 Q0 MARCO_24_1718905825-4 56 0.059269 hybrid +132_2-1 Q0 MARCO_19_603398757-28 57 0.058475 hybrid +132_2-1 Q0 MARCO_46_1380912906-9 58 0.054832 hybrid +132_2-1 Q0 MARCO_28_436713620-14 59 0.053403 hybrid +132_2-1 Q0 MARCO_10_828766205-5 60 0.052873 hybrid +132_2-1 Q0 MARCO_46_1380912906-11 61 0.049996 hybrid +132_2-1 Q0 MARCO_26_110830341-26 62 0.041440 hybrid +132_2-1 Q0 MARCO_15_132365987-5 63 0.040319 hybrid +132_2-1 Q0 MARCO_05_807840948-8 64 0.036915 hybrid +132_2-1 Q0 MARCO_10_236406528-1 65 0.036911 hybrid +132_2-1 Q0 MARCO_15_132412308-6 66 0.033723 hybrid +132_2-1 Q0 MARCO_20_1691433948-5 67 0.030714 hybrid +132_2-1 Q0 MARCO_20_1692407345-3 68 0.023172 hybrid +132_2-1 Q0 MARCO_25_518489685-24 69 0.022342 hybrid +132_2-1 Q0 MARCO_43_777920951-6 70 0.021452 hybrid +132_2-1 Q0 MARCO_05_319993906-4 71 0.020738 hybrid +132_2-1 Q0 MARCO_38_616897910-3 72 0.018188 hybrid +132_2-1 Q0 MARCO_20_1691148513-21 73 0.015954 hybrid +132_2-1 Q0 MARCO_27_917687231-41 74 0.015938 hybrid +132_2-1 Q0 MARCO_19_609601020-29 75 0.004146 hybrid +132_2-1 Q0 MARCO_58_1590848865-3 76 0.003208 hybrid +132_2-1 Q0 KILT_8713214-24 77 0.003148 hybrid +132_2-1 Q0 MARCO_00_1102954422-6 78 0.003021 hybrid +132_2-1 Q0 MARCO_10_236418972-2 79 0.001484 hybrid +132_2-1 Q0 MARCO_06_1867900076-7 80 0.000487 hybrid +132_2-1 Q0 MARCO_26_107663067-2 81 -0.001385 hybrid +132_2-1 Q0 MARCO_11_16241769-5 82 -0.002753 hybrid +132_2-1 Q0 MARCO_20_1691148513-12 83 -0.005279 hybrid +132_2-1 Q0 MARCO_39_609949550-9 84 -0.005930 hybrid +132_2-1 Q0 MARCO_50_1409873441-6 85 -0.006975 hybrid +132_2-1 Q0 MARCO_19_609714360-11 86 -0.007466 hybrid +132_2-1 Q0 MARCO_28_555556942-3 87 -0.009002 hybrid +132_2-1 Q0 MARCO_50_1400953187-41 88 -0.015231 hybrid +132_2-1 Q0 MARCO_58_1506557259-4 89 -0.017821 hybrid +132_2-1 Q0 MARCO_37_708108386-3 90 -0.019992 hybrid +132_2-1 Q0 MARCO_20_1691148513-2 91 -0.020104 hybrid +132_2-1 Q0 MARCO_48_592632236-4 92 -0.023420 hybrid +132_2-1 Q0 MARCO_19_2045096479-6 93 -0.024641 hybrid +132_2-1 Q0 MARCO_19_603398757-20 94 -0.029864 hybrid +132_2-1 Q0 MARCO_57_1273383884-2 95 -0.032330 hybrid +132_2-1 Q0 MARCO_56_504950681-1 96 -0.036388 hybrid +132_2-1 Q0 MARCO_18_937585706-13 97 -0.037729 hybrid +132_2-1 Q0 MARCO_04_220440546-2 98 -0.038248 hybrid +132_2-1 Q0 MARCO_02_824114915-6 99 -0.045171 hybrid +132_2-1 Q0 MARCO_13_436684399-4 100 -0.046257 hybrid +132_2-11 Q0 MARCO_17_4116009428-7 1 0.499998 hybrid +132_2-11 Q0 MARCO_17_4116009428-9 2 0.499998 hybrid +132_2-11 Q0 MARCO_17_4116009428-5 3 0.499998 hybrid +132_2-11 Q0 MARCO_10_262751953-14 4 0.202489 hybrid +132_2-11 Q0 MARCO_39_1740604538-5 5 0.192016 hybrid +132_2-11 Q0 MARCO_15_137349888-17 6 0.185045 hybrid +132_2-11 Q0 MARCO_15_137349888-16 7 0.157448 hybrid +132_2-11 Q0 KILT_57401251-1 8 0.108636 hybrid +132_2-11 Q0 MARCO_14_310245762-4 9 0.103158 hybrid +132_2-11 Q0 MARCO_18_2387930429-41 10 0.002506 hybrid +132_2-11 Q0 MARCO_15_137349888-7 11 -0.011679 hybrid +132_2-11 Q0 KILT_55224799-3 12 -0.014473 hybrid +132_2-11 Q0 KILT_59629380-1 13 -0.028840 hybrid +132_2-11 Q0 MARCO_15_137349888-18 14 -0.042124 hybrid +132_2-11 Q0 MARCO_56_1008073699-11 15 -0.044232 hybrid +132_2-11 Q0 MARCO_18_2399142415-3 16 -0.076140 hybrid +132_2-11 Q0 KILT_28098423-8 17 -0.081546 hybrid +132_2-11 Q0 MARCO_43_761821671-18 18 -0.082165 hybrid +132_2-11 Q0 MARCO_15_137349888-19 19 -0.085472 hybrid +132_2-11 Q0 MARCO_45_1252968544-2 20 -0.100298 hybrid +132_2-11 Q0 MARCO_15_928569559-3 21 -0.101306 hybrid +132_2-11 Q0 MARCO_48_1380268854-156 22 -0.105630 hybrid +132_2-11 Q0 MARCO_34_473328558-5 23 -0.110855 hybrid +132_2-11 Q0 KILT_142135-7 24 -0.111230 hybrid +132_2-11 Q0 KILT_50916719-1 25 -0.117658 hybrid +132_2-11 Q0 MARCO_29_588048249-4 26 -0.124890 hybrid +132_2-11 Q0 KILT_61355160-1 27 -0.131092 hybrid +132_2-11 Q0 MARCO_10_262751953-5 28 -0.133771 hybrid +132_2-11 Q0 MARCO_52_1181882354-11 29 -0.136870 hybrid +132_2-11 Q0 KILT_38910419-1 30 -0.137639 hybrid +132_2-11 Q0 KILT_48530645-1 31 -0.147497 hybrid +132_2-11 Q0 MARCO_31_644392863-6 32 -0.154791 hybrid +132_2-11 Q0 KILT_44881142-1 33 -0.156541 hybrid +132_2-11 Q0 MARCO_48_1380268854-161 34 -0.159340 hybrid +132_2-11 Q0 KILT_11905449-10 35 -0.163468 hybrid +132_2-11 Q0 KILT_39902915-6 36 -0.175727 hybrid +132_2-11 Q0 MARCO_17_433644800-9 37 -0.175850 hybrid +132_2-11 Q0 MARCO_17_3729682401-8 38 -0.180947 hybrid +132_2-11 Q0 MARCO_34_473320083-4 39 -0.187092 hybrid +132_2-11 Q0 MARCO_18_2399825708-3 40 -0.189554 hybrid +132_2-11 Q0 MARCO_13_1761053118-2 41 -0.190531 hybrid +132_2-11 Q0 MARCO_22_1479066750-4 42 -0.196044 hybrid +132_2-11 Q0 KILT_22214347-1 43 -0.199142 hybrid +132_2-11 Q0 MARCO_10_262743620-5 44 -0.199231 hybrid +132_2-11 Q0 MARCO_09_550758429-1 45 -0.200862 hybrid +132_2-11 Q0 MARCO_29_867562507-2 46 -0.201521 hybrid +132_2-11 Q0 MARCO_17_656864599-23 47 -0.202215 hybrid +132_2-11 Q0 MARCO_16_4109776167-1 48 -0.203077 hybrid +132_2-11 Q0 MARCO_18_2399644705-3 49 -0.203497 hybrid +132_2-11 Q0 MARCO_06_1901320319-1 50 -0.206052 hybrid +132_2-11 Q0 KILT_39363681-4 51 -0.207705 hybrid +132_2-11 Q0 MARCO_36_948936826-2 52 -0.209836 hybrid +132_2-11 Q0 KILT_57969866-1 53 -0.211555 hybrid +132_2-11 Q0 KILT_25805637-1 54 -0.212148 hybrid +132_2-11 Q0 MARCO_15_137349888-5 55 -0.212753 hybrid +132_2-11 Q0 MARCO_15_137349888-12 56 -0.214765 hybrid +132_2-11 Q0 MARCO_29_1211404641-2 57 -0.215322 hybrid +132_2-11 Q0 MARCO_59_334728958-2 58 -0.219645 hybrid +132_2-11 Q0 MARCO_20_55801011-4 59 -0.222651 hybrid +132_2-11 Q0 MARCO_17_458535356-23 60 -0.224539 hybrid +132_2-11 Q0 MARCO_04_1494781292-3 61 -0.226833 hybrid +132_2-11 Q0 KILT_3549274-1 62 -0.230679 hybrid +132_2-11 Q0 KILT_46717581-1 63 -0.231055 hybrid +132_2-11 Q0 KILT_57401251-4 64 -0.232142 hybrid +132_2-11 Q0 MARCO_18_2399792468-3 65 -0.236470 hybrid +132_2-11 Q0 MARCO_33_1243127815-5 66 -0.237013 hybrid +132_2-11 Q0 MARCO_13_20078104-8 67 -0.237822 hybrid +132_2-11 Q0 KILT_4932171-2 68 -0.242685 hybrid +132_2-11 Q0 MARCO_06_316415399-1 69 -0.248843 hybrid +132_2-11 Q0 MARCO_37_74888318-3 70 -0.249771 hybrid +132_2-11 Q0 MARCO_16_448548344-9 71 -0.249855 hybrid +132_2-11 Q0 MARCO_57_105744181-3 72 -0.250841 hybrid +132_2-11 Q0 MARCO_14_595148022-5 73 -0.251619 hybrid +132_2-11 Q0 MARCO_22_1217134399-35 74 -0.252941 hybrid +132_2-11 Q0 MARCO_22_1217134399-26 75 -0.252941 hybrid +132_2-11 Q0 MARCO_22_1217134399-16 76 -0.252945 hybrid +132_2-11 Q0 MARCO_22_1217134399-6 77 -0.252945 hybrid +132_2-11 Q0 KILT_13751149-1 78 -0.253113 hybrid +132_2-11 Q0 KILT_28174384-1 79 -0.254293 hybrid +132_2-11 Q0 KILT_5953060-1 80 -0.259943 hybrid +132_2-11 Q0 MARCO_18_2399093060-3 81 -0.260849 hybrid +132_2-11 Q0 MARCO_54_1477819990-7 82 -0.261159 hybrid +132_2-11 Q0 MARCO_02_824932380-2 83 -0.262078 hybrid +132_2-11 Q0 KILT_37528956-3 84 -0.264085 hybrid +132_2-11 Q0 MARCO_28_536664666-3 85 -0.265725 hybrid +132_2-11 Q0 MARCO_21_1194786324-2 86 -0.269814 hybrid +132_2-11 Q0 MARCO_15_137349888-10 87 -0.269929 hybrid +132_2-11 Q0 KILT_48530645-11 88 -0.270411 hybrid +132_2-11 Q0 MARCO_59_336716189-3 89 -0.273107 hybrid +132_2-11 Q0 MARCO_56_455459535-5 90 -0.273987 hybrid +132_2-11 Q0 MARCO_29_31047482-2 91 -0.274283 hybrid +132_2-11 Q0 KILT_41688512-1 92 -0.276405 hybrid +132_2-11 Q0 MARCO_53_365202097-21 93 -0.278434 hybrid +132_2-11 Q0 KILT_27662385-3 94 -0.279318 hybrid +132_2-11 Q0 MARCO_15_137349888-20 95 -0.279336 hybrid +132_2-11 Q0 MARCO_16_3304332306-3 96 -0.280180 hybrid +132_2-11 Q0 MARCO_25_1161437721-3 97 -0.280596 hybrid +132_2-11 Q0 MARCO_05_1748993656-2 98 -0.280636 hybrid +132_2-11 Q0 KILT_1728363-2 99 -0.281020 hybrid +132_2-11 Q0 KILT_27236967-8 100 -0.282983 hybrid +132_2-13 Q0 MARCO_10_262743620-6 1 0.500002 hybrid +132_2-13 Q0 MARCO_10_262751953-9 2 0.284544 hybrid +132_2-13 Q0 MARCO_50_1929336451-6 3 0.225273 hybrid +132_2-13 Q0 MARCO_10_260560518-7 4 0.130220 hybrid +132_2-13 Q0 MARCO_19_266473698-49 5 0.091712 hybrid +132_2-13 Q0 MARCO_31_644392863-2 6 0.082623 hybrid +132_2-13 Q0 MARCO_10_262743620-5 7 0.074877 hybrid +132_2-13 Q0 MARCO_01_1034490048-24 8 0.069822 hybrid +132_2-13 Q0 MARCO_10_262736749-1 9 0.069159 hybrid +132_2-13 Q0 MARCO_31_644392863-5 10 0.065316 hybrid +132_2-13 Q0 KILT_56387329-1 11 0.050998 hybrid +132_2-13 Q0 MARCO_10_262743620-2 12 0.048631 hybrid +132_2-13 Q0 MARCO_29_1175326324-10 13 0.044915 hybrid +132_2-13 Q0 MARCO_25_519333782-21 14 0.016122 hybrid +132_2-13 Q0 KILT_1601418-6 15 0.011134 hybrid +132_2-13 Q0 MARCO_57_1273322266-3 16 0.002558 hybrid +132_2-13 Q0 MARCO_10_262743620-4 17 0.000121 hybrid +132_2-13 Q0 KILT_669964-1 18 -0.002213 hybrid +132_2-13 Q0 MARCO_19_266473698-5 19 -0.003977 hybrid +132_2-13 Q0 MARCO_18_1303761340-19 20 -0.013468 hybrid +132_2-13 Q0 MARCO_48_1188743878-2 21 -0.015931 hybrid +132_2-13 Q0 MARCO_18_4372209380-6 22 -0.022921 hybrid +132_2-13 Q0 MARCO_37_1226477362-7 23 -0.029814 hybrid +132_2-13 Q0 MARCO_22_1185276262-3 24 -0.031090 hybrid +132_2-13 Q0 MARCO_17_431954845-18 25 -0.051363 hybrid +132_2-13 Q0 MARCO_41_2085147140-5 26 -0.052662 hybrid +132_2-13 Q0 MARCO_10_260560518-1 27 -0.062993 hybrid +132_2-13 Q0 MARCO_01_1034490048-100 28 -0.067894 hybrid +132_2-13 Q0 MARCO_39_823975034-3 29 -0.069785 hybrid +132_2-13 Q0 MARCO_27_1150117203-33 30 -0.071061 hybrid +132_2-13 Q0 MARCO_17_434176964-9 31 -0.071610 hybrid +132_2-13 Q0 MARCO_04_858408112-36 32 -0.077746 hybrid +132_2-13 Q0 KILT_25502652-1 33 -0.086681 hybrid +132_2-13 Q0 KILT_22024384-15 34 -0.090273 hybrid +132_2-13 Q0 KILT_1601418-5 35 -0.097812 hybrid +132_2-13 Q0 MARCO_48_1188743878-7 36 -0.108953 hybrid +132_2-13 Q0 MARCO_40_661991828-50 37 -0.113890 hybrid +132_2-13 Q0 MARCO_17_434362059-8 38 -0.114168 hybrid +132_2-13 Q0 MARCO_10_260560518-2 39 -0.117345 hybrid +132_2-13 Q0 MARCO_39_677462947-4 40 -0.124369 hybrid +132_2-13 Q0 KILT_8459263-19 41 -0.126799 hybrid +132_2-13 Q0 MARCO_17_434362059-2 42 -0.127438 hybrid +132_2-13 Q0 KILT_58620732-3 43 -0.127619 hybrid +132_2-13 Q0 KILT_25502652-4 44 -0.128694 hybrid +132_2-13 Q0 MARCO_32_467032398-5 45 -0.131830 hybrid +132_2-13 Q0 KILT_52520313-7 46 -0.138224 hybrid +132_2-13 Q0 MARCO_54_784039639-23 47 -0.140732 hybrid +132_2-13 Q0 KILT_1711151-22 48 -0.143494 hybrid +132_2-13 Q0 MARCO_57_1274235847-5 49 -0.146999 hybrid +132_2-13 Q0 MARCO_17_434362059-21 50 -0.148130 hybrid +132_2-13 Q0 MARCO_37_131656792-9 51 -0.148274 hybrid +132_2-13 Q0 MARCO_19_266473698-47 52 -0.148401 hybrid +132_2-13 Q0 MARCO_18_922972680-97 53 -0.149091 hybrid +132_2-13 Q0 MARCO_19_266473698-48 54 -0.151243 hybrid +132_2-13 Q0 KILT_1358946-8 55 -0.152593 hybrid +132_2-13 Q0 KILT_57641-18 56 -0.153018 hybrid +132_2-13 Q0 MARCO_18_922972680-24 57 -0.154129 hybrid +132_2-13 Q0 MARCO_01_1034490048-90 58 -0.155006 hybrid +132_2-13 Q0 MARCO_55_576390157-2 59 -0.160701 hybrid +132_2-13 Q0 MARCO_31_1555491939-5 60 -0.161839 hybrid +132_2-13 Q0 KILT_12605813-1 61 -0.162860 hybrid +132_2-13 Q0 KILT_60334410-15 62 -0.165384 hybrid +132_2-13 Q0 KILT_60301232-4 63 -0.167162 hybrid +132_2-13 Q0 KILT_46904103-3 64 -0.167603 hybrid +132_2-13 Q0 MARCO_17_2944541684-45 65 -0.168219 hybrid +132_2-13 Q0 MARCO_20_1602405300-11 66 -0.168651 hybrid +132_2-13 Q0 KILT_40062551-1 67 -0.173217 hybrid +132_2-13 Q0 MARCO_01_1034490048-43 68 -0.175377 hybrid +132_2-13 Q0 KILT_3310645-1 69 -0.177476 hybrid +132_2-13 Q0 MARCO_03_1470952664-3 70 -0.178249 hybrid +132_2-13 Q0 MARCO_19_266473698-8 71 -0.178888 hybrid +132_2-13 Q0 MARCO_06_1290292865-478 72 -0.179822 hybrid +132_2-13 Q0 MARCO_19_266412467-16 73 -0.183016 hybrid +132_2-13 Q0 MARCO_18_4370208319-3 74 -0.183602 hybrid +132_2-13 Q0 KILT_23120306-1 75 -0.184767 hybrid +132_2-13 Q0 MARCO_44_1172912767-4 76 -0.190726 hybrid +132_2-13 Q0 KILT_24483226-1 77 -0.191696 hybrid +132_2-13 Q0 MARCO_22_1644883624-30 78 -0.193625 hybrid +132_2-13 Q0 KILT_60301241-4 79 -0.194435 hybrid +132_2-13 Q0 MARCO_17_434176964-17 80 -0.196500 hybrid +132_2-13 Q0 KILT_489119-13 81 -0.198613 hybrid +132_2-13 Q0 KILT_53704-1 82 -0.200387 hybrid +132_2-13 Q0 MARCO_12_133246365-30 83 -0.200437 hybrid +132_2-13 Q0 KILT_40062551-2 84 -0.202088 hybrid +132_2-13 Q0 MARCO_19_266473698-51 85 -0.202774 hybrid +132_2-13 Q0 MARCO_50_1929336451-1 86 -0.203276 hybrid +132_2-13 Q0 MARCO_04_1090717851-1 87 -0.203812 hybrid +132_2-13 Q0 MARCO_17_434362059-15 88 -0.206506 hybrid +132_2-13 Q0 MARCO_10_262751953-15 89 -0.207206 hybrid +132_2-13 Q0 MARCO_14_1191455815-4 90 -0.208733 hybrid +132_2-13 Q0 MARCO_19_266412467-4 91 -0.211582 hybrid +132_2-13 Q0 KILT_26083237-1 92 -0.211896 hybrid +132_2-13 Q0 MARCO_28_436713620-13 93 -0.212385 hybrid +132_2-13 Q0 KILT_60301228-16 94 -0.212683 hybrid +132_2-13 Q0 MARCO_43_711973574-5 95 -0.214802 hybrid +132_2-13 Q0 KILT_29772268-5 96 -0.215395 hybrid +132_2-13 Q0 MARCO_54_317219313-5 97 -0.215923 hybrid +132_2-13 Q0 MARCO_19_2040255855-9 98 -0.217996 hybrid +132_2-13 Q0 MARCO_19_266412467-6 99 -0.219900 hybrid +132_2-13 Q0 KILT_60301241-11 100 -0.220480 hybrid +132_2-3 Q0 MARCO_56_505348785-6 1 0.500003 hybrid +132_2-3 Q0 MARCO_21_749822518-27 2 0.352328 hybrid +132_2-3 Q0 KILT_1374927-8 3 0.328052 hybrid +132_2-3 Q0 MARCO_20_1577360890-37 4 0.319378 hybrid +132_2-3 Q0 MARCO_03_581040387-5 5 0.313649 hybrid +132_2-3 Q0 KILT_2435914-14 6 0.306920 hybrid +132_2-3 Q0 MARCO_56_1312772055-11 7 0.297749 hybrid +132_2-3 Q0 MARCO_51_1727411905-46 8 0.295903 hybrid +132_2-3 Q0 MARCO_43_777920951-5 9 0.294394 hybrid +132_2-3 Q0 MARCO_43_777920951-1 10 0.276996 hybrid +132_2-3 Q0 MARCO_34_37630493-6 11 0.274647 hybrid +132_2-3 Q0 MARCO_01_1644989167-3 12 0.267713 hybrid +132_2-3 Q0 KILT_4638069-8 13 0.256877 hybrid +132_2-3 Q0 MARCO_22_1645284806-32 14 0.241231 hybrid +132_2-3 Q0 MARCO_17_443322661-26 15 0.230053 hybrid +132_2-3 Q0 MARCO_24_1719126464-2 16 0.219602 hybrid +132_2-3 Q0 MARCO_10_260560518-3 17 0.203832 hybrid +132_2-3 Q0 MARCO_10_262788007-29 18 0.203161 hybrid +132_2-3 Q0 KILT_40454374-5 19 0.201999 hybrid +132_2-3 Q0 MARCO_56_505348785-3 20 0.180501 hybrid +132_2-3 Q0 KILT_36674117-6 21 0.173498 hybrid +132_2-3 Q0 MARCO_10_260631258-2 22 0.165955 hybrid +132_2-3 Q0 MARCO_43_777920951-2 23 0.155392 hybrid +132_2-3 Q0 MARCO_10_262478173-3 24 0.152752 hybrid +132_2-3 Q0 MARCO_32_599836721-14 25 0.136895 hybrid +132_2-3 Q0 MARCO_10_829043418-5 26 0.127842 hybrid +132_2-3 Q0 MARCO_10_260864487-34 27 0.126307 hybrid +132_2-3 Q0 MARCO_46_1380968784-4 28 0.118919 hybrid +132_2-3 Q0 MARCO_10_262407105-4 29 0.118857 hybrid +132_2-3 Q0 KILT_21331420-9 30 0.108835 hybrid +132_2-3 Q0 MARCO_36_1364913965-5 31 0.101590 hybrid +132_2-3 Q0 KILT_1035767-3 32 0.101310 hybrid +132_2-3 Q0 MARCO_10_262788007-6 33 0.099751 hybrid +132_2-3 Q0 MARCO_10_262217751-84 34 0.099496 hybrid +132_2-3 Q0 MARCO_09_353378540-1 35 0.097458 hybrid +132_2-3 Q0 KILT_2435914-8 36 0.091729 hybrid +132_2-3 Q0 KILT_2435914-12 37 0.088821 hybrid +132_2-3 Q0 MARCO_18_2143470921-19 38 0.086460 hybrid +132_2-3 Q0 KILT_2435914-4 39 0.084919 hybrid +132_2-3 Q0 MARCO_43_777920951-6 40 0.083310 hybrid +132_2-3 Q0 KILT_8462155-3 41 0.074866 hybrid +132_2-3 Q0 MARCO_07_261478233-21 42 0.072374 hybrid +132_2-3 Q0 MARCO_43_777920951-3 43 0.071399 hybrid +132_2-3 Q0 MARCO_35_18087846-2 44 0.069025 hybrid +132_2-3 Q0 MARCO_10_826638119-2 45 0.066993 hybrid +132_2-3 Q0 MARCO_32_1796808472-7 46 0.060438 hybrid +132_2-3 Q0 MARCO_32_599983057-6 47 0.058295 hybrid +132_2-3 Q0 MARCO_03_254456784-2 48 0.058102 hybrid +132_2-3 Q0 MARCO_35_308498687-2 49 0.053044 hybrid +132_2-3 Q0 MARCO_37_1260318296-2 50 0.051901 hybrid +132_2-3 Q0 MARCO_46_1380968784-5 51 0.038144 hybrid +132_2-3 Q0 MARCO_17_4116009428-7 52 0.036982 hybrid +132_2-3 Q0 MARCO_17_4116009428-9 53 0.036982 hybrid +132_2-3 Q0 MARCO_17_4116009428-5 54 0.036982 hybrid +132_2-3 Q0 MARCO_36_1364597645-1 55 0.031614 hybrid +132_2-3 Q0 MARCO_16_3303410427-12 56 0.029700 hybrid +132_2-3 Q0 MARCO_10_261408438-21 57 0.027190 hybrid +132_2-3 Q0 KILT_42747203-8 58 0.019274 hybrid +132_2-3 Q0 MARCO_38_1453822755-12 59 0.015434 hybrid +132_2-3 Q0 MARCO_39_1740604538-5 60 0.015310 hybrid +132_2-3 Q0 MARCO_13_1559734926-6 61 0.010992 hybrid +132_2-3 Q0 KILT_1411925-21 62 0.006586 hybrid +132_2-3 Q0 MARCO_37_376330985-7 63 0.006021 hybrid +132_2-3 Q0 MARCO_19_1118220864-14 64 0.000174 hybrid +132_2-3 Q0 MARCO_03_580354882-8 65 -0.000149 hybrid +132_2-3 Q0 MARCO_10_262407105-5 66 -0.001715 hybrid +132_2-3 Q0 KILT_1044143-2 67 -0.004567 hybrid +132_2-3 Q0 MARCO_24_1555491375-2 68 -0.010408 hybrid +132_2-3 Q0 MARCO_32_599017501-4 69 -0.011340 hybrid +132_2-3 Q0 MARCO_56_505348785-2 70 -0.015111 hybrid +132_2-3 Q0 MARCO_15_1733026280-10 71 -0.015459 hybrid +132_2-3 Q0 MARCO_19_1112386376-34 72 -0.016758 hybrid +132_2-3 Q0 MARCO_27_588863416-43 73 -0.021238 hybrid +132_2-3 Q0 MARCO_46_1380870490-8 74 -0.027134 hybrid +132_2-3 Q0 MARCO_19_962589557-14 75 -0.029856 hybrid +132_2-3 Q0 KILT_53606991-14 76 -0.030875 hybrid +132_2-3 Q0 MARCO_36_842154962-3 77 -0.031397 hybrid +132_2-3 Q0 MARCO_10_262743620-5 78 -0.032608 hybrid +132_2-3 Q0 KILT_3151160-1 79 -0.036697 hybrid +132_2-3 Q0 MARCO_17_681550578-66 80 -0.037268 hybrid +132_2-3 Q0 MARCO_10_262751953-14 81 -0.038182 hybrid +132_2-3 Q0 MARCO_57_1274205894-3 82 -0.038213 hybrid +132_2-3 Q0 MARCO_39_1045462196-6 83 -0.038474 hybrid +132_2-3 Q0 MARCO_17_2527315372-71 84 -0.042301 hybrid +132_2-3 Q0 MARCO_39_668522763-49 85 -0.043861 hybrid +132_2-3 Q0 MARCO_36_999187403-5 86 -0.044234 hybrid +132_2-3 Q0 MARCO_10_828215272-4 87 -0.045955 hybrid +132_2-3 Q0 MARCO_10_829225168-6 88 -0.051534 hybrid +132_2-3 Q0 MARCO_43_296836300-12 89 -0.052162 hybrid +132_2-3 Q0 MARCO_50_2746119779-4 90 -0.053647 hybrid +132_2-3 Q0 KILT_3045799-17 91 -0.055921 hybrid +132_2-3 Q0 MARCO_46_1380870490-7 92 -0.059854 hybrid +132_2-3 Q0 MARCO_32_599983057-1 93 -0.063980 hybrid +132_2-3 Q0 KILT_40454374-6 94 -0.065558 hybrid +132_2-3 Q0 MARCO_56_505348785-4 95 -0.065577 hybrid +132_2-3 Q0 MARCO_30_1098599698-1 96 -0.068976 hybrid +132_2-3 Q0 MARCO_18_4364824213-52 97 -0.072194 hybrid +132_2-3 Q0 MARCO_26_164255046-222 98 -0.072343 hybrid +132_2-3 Q0 MARCO_11_16241769-5 99 -0.076606 hybrid +132_2-3 Q0 KILT_1411925-15 100 -0.077538 hybrid +132_2-5 Q0 MARCO_48_1188743878-4 1 0.499998 hybrid +132_2-5 Q0 MARCO_11_760134771-29 2 0.455097 hybrid +132_2-5 Q0 MARCO_20_1115184668-9 3 0.346002 hybrid +132_2-5 Q0 MARCO_18_468435703-18 4 0.334558 hybrid +132_2-5 Q0 KILT_56324501-4 5 0.324827 hybrid +132_2-5 Q0 MARCO_20_1691433948-13 6 0.303712 hybrid +132_2-5 Q0 MARCO_19_607425738-12 7 0.245322 hybrid +132_2-5 Q0 MARCO_22_1644883624-37 8 0.245281 hybrid +132_2-5 Q0 KILT_2649947-23 9 0.241681 hybrid +132_2-5 Q0 MARCO_43_329828458-5 10 0.234794 hybrid +132_2-5 Q0 MARCO_19_603398757-16 11 0.227381 hybrid +132_2-5 Q0 MARCO_57_1273705428-4 12 0.224991 hybrid +132_2-5 Q0 MARCO_10_262845096-2 13 0.222194 hybrid +132_2-5 Q0 MARCO_51_1903558454-38 14 0.221513 hybrid +132_2-5 Q0 MARCO_28_436713620-14 15 0.187367 hybrid +132_2-5 Q0 MARCO_19_603398757-15 16 0.174998 hybrid +132_2-5 Q0 MARCO_13_436684399-12 17 0.173194 hybrid +132_2-5 Q0 KILT_24961082-4 18 0.172953 hybrid +132_2-5 Q0 MARCO_56_507043549-53 19 0.169154 hybrid +132_2-5 Q0 MARCO_22_1190025974-51 20 0.168428 hybrid +132_2-5 Q0 MARCO_00_1103829918-5 21 0.162733 hybrid +132_2-5 Q0 MARCO_19_606923468-24 22 0.154264 hybrid +132_2-5 Q0 MARCO_51_1998635833-15 23 0.153280 hybrid +132_2-5 Q0 MARCO_11_16241769-5 24 0.152219 hybrid +132_2-5 Q0 MARCO_10_262751953-11 25 0.147639 hybrid +132_2-5 Q0 MARCO_43_777920951-2 26 0.142493 hybrid +132_2-5 Q0 MARCO_08_690858028-124 27 0.117850 hybrid +132_2-5 Q0 MARCO_28_436713620-15 28 0.117347 hybrid +132_2-5 Q0 MARCO_04_1490023419-25 29 0.116250 hybrid +132_2-5 Q0 KILT_2649947-28 30 0.115542 hybrid +132_2-5 Q0 MARCO_03_1382496644-2 31 0.103686 hybrid +132_2-5 Q0 MARCO_13_1559734926-9 32 0.099832 hybrid +132_2-5 Q0 MARCO_26_164255046-222 33 0.098444 hybrid +132_2-5 Q0 KILT_17803348-4 34 0.091348 hybrid +132_2-5 Q0 MARCO_43_777920951-1 35 0.088075 hybrid +132_2-5 Q0 MARCO_51_1632226513-10 36 0.086012 hybrid +132_2-5 Q0 MARCO_47_417315831-6 37 0.083854 hybrid +132_2-5 Q0 MARCO_56_507043549-52 38 0.074708 hybrid +132_2-5 Q0 MARCO_17_694807794-20 39 0.065685 hybrid +132_2-5 Q0 MARCO_05_1744098618-2 40 0.065513 hybrid +132_2-5 Q0 MARCO_36_1434157933-3 41 0.057043 hybrid +132_2-5 Q0 MARCO_03_1382133972-2 42 0.054990 hybrid +132_2-5 Q0 MARCO_28_445261347-8 43 0.048261 hybrid +132_2-5 Q0 KILT_27447324-8 44 0.047572 hybrid +132_2-5 Q0 MARCO_57_1273814302-6 45 0.042747 hybrid +132_2-5 Q0 MARCO_37_708382826-6 46 0.041419 hybrid +132_2-5 Q0 MARCO_19_604822460-2 47 0.036595 hybrid +132_2-5 Q0 MARCO_13_436467379-8 48 0.035915 hybrid +132_2-5 Q0 MARCO_41_1817040778-8 49 0.030310 hybrid +132_2-5 Q0 MARCO_13_436830247-3 50 0.028801 hybrid +132_2-5 Q0 KILT_35614913-12 51 0.024176 hybrid +132_2-5 Q0 KILT_1411925-32 52 0.023532 hybrid +132_2-5 Q0 MARCO_12_453459275-5 53 0.020830 hybrid +132_2-5 Q0 MARCO_27_917687231-44 54 0.020784 hybrid +132_2-5 Q0 MARCO_37_708108386-3 55 0.016649 hybrid +132_2-5 Q0 MARCO_56_505366738-3 56 0.006806 hybrid +132_2-5 Q0 MARCO_10_261126523-23 57 0.001891 hybrid +132_2-5 Q0 MARCO_13_1560316639-3 58 0.001260 hybrid +132_2-5 Q0 KILT_26772201-7 59 -0.000472 hybrid +132_2-5 Q0 KILT_3462-27 60 -0.000816 hybrid +132_2-5 Q0 MARCO_17_1846828993-10 61 -0.002838 hybrid +132_2-5 Q0 KILT_27447324-2 62 -0.003627 hybrid +132_2-5 Q0 MARCO_23_53863428-7 63 -0.005006 hybrid +132_2-5 Q0 MARCO_36_1434066442-5 64 -0.005554 hybrid +132_2-5 Q0 MARCO_00_1102877206-9 65 -0.006012 hybrid +132_2-5 Q0 MARCO_50_2149491569-49 66 -0.006407 hybrid +132_2-5 Q0 MARCO_24_1718174753-2 67 -0.008955 hybrid +132_2-5 Q0 MARCO_00_1103829918-3 68 -0.013530 hybrid +132_2-5 Q0 MARCO_06_1905214190-6 69 -0.017180 hybrid +132_2-5 Q0 MARCO_08_743120872-9 70 -0.017289 hybrid +132_2-5 Q0 MARCO_01_2060913028-4 71 -0.020227 hybrid +132_2-5 Q0 MARCO_23_53863428-10 72 -0.024248 hybrid +132_2-5 Q0 KILT_2649947-25 73 -0.026561 hybrid +132_2-5 Q0 MARCO_38_1453822755-13 74 -0.027830 hybrid +132_2-5 Q0 MARCO_04_1293867946-2 75 -0.029762 hybrid +132_2-5 Q0 MARCO_28_328737690-5 76 -0.034627 hybrid +132_2-5 Q0 MARCO_04_1490023419-16 77 -0.039542 hybrid +132_2-5 Q0 KILT_35614913-9 78 -0.040118 hybrid +132_2-5 Q0 MARCO_43_777920951-6 79 -0.040281 hybrid +132_2-5 Q0 MARCO_48_588887493-5 80 -0.042027 hybrid +132_2-5 Q0 MARCO_09_353378540-1 81 -0.043763 hybrid +132_2-5 Q0 MARCO_06_691700236-3 82 -0.049449 hybrid +132_2-5 Q0 MARCO_10_828766205-3 83 -0.051204 hybrid +132_2-5 Q0 KILT_35226965-1 84 -0.055452 hybrid +132_2-5 Q0 KILT_27447324-3 85 -0.055479 hybrid +132_2-5 Q0 KILT_30863822-14 86 -0.056948 hybrid +132_2-5 Q0 MARCO_19_607425738-13 87 -0.059415 hybrid +132_2-5 Q0 MARCO_03_580846587-58 88 -0.060535 hybrid +132_2-5 Q0 MARCO_13_436684399-2 89 -0.061714 hybrid +132_2-5 Q0 MARCO_51_1704792198-4 90 -0.065119 hybrid +132_2-5 Q0 KILT_52107996-2 91 -0.065454 hybrid +132_2-5 Q0 MARCO_10_828766205-5 92 -0.066674 hybrid +132_2-5 Q0 MARCO_43_777920951-4 93 -0.067404 hybrid +132_2-5 Q0 MARCO_27_917687231-39 94 -0.069866 hybrid +132_2-5 Q0 MARCO_03_581040387-12 95 -0.072047 hybrid +132_2-5 Q0 MARCO_39_609949550-13 96 -0.075865 hybrid +132_2-5 Q0 MARCO_19_603398757-28 97 -0.084089 hybrid +132_2-5 Q0 MARCO_13_436467379-7 98 -0.084275 hybrid +132_2-5 Q0 MARCO_11_760134771-45 99 -0.084411 hybrid +132_2-5 Q0 MARCO_43_777920951-5 100 -0.087780 hybrid +132_2-7 Q0 MARCO_03_580354882-8 1 0.500000 hybrid +132_2-7 Q0 MARCO_10_260560518-2 2 0.421853 hybrid +132_2-7 Q0 KILT_38740911-6 3 0.400062 hybrid +132_2-7 Q0 MARCO_10_262743620-2 4 0.365018 hybrid +132_2-7 Q0 KILT_40454374-5 5 0.326993 hybrid +132_2-7 Q0 MARCO_28_436713620-13 6 0.324545 hybrid +132_2-7 Q0 MARCO_10_260560518-7 7 0.309330 hybrid +132_2-7 Q0 MARCO_10_262736749-1 8 0.306845 hybrid +132_2-7 Q0 MARCO_29_1330386075-24 9 0.304596 hybrid +132_2-7 Q0 MARCO_17_434176964-58 10 0.262493 hybrid +132_2-7 Q0 MARCO_10_262751953-7 11 0.237731 hybrid +132_2-7 Q0 MARCO_56_506900502-5 12 0.222639 hybrid +132_2-7 Q0 MARCO_17_434176964-114 13 0.205673 hybrid +132_2-7 Q0 MARCO_10_262743620-6 14 0.192493 hybrid +132_2-7 Q0 MARCO_41_2085147140-5 15 0.180716 hybrid +132_2-7 Q0 MARCO_01_1034490048-43 16 0.167674 hybrid +132_2-7 Q0 MARCO_17_434176964-57 17 0.160413 hybrid +132_2-7 Q0 MARCO_31_644392863-2 18 0.153374 hybrid +132_2-7 Q0 MARCO_11_760134771-6 19 0.126221 hybrid +132_2-7 Q0 MARCO_43_711973574-5 20 0.125186 hybrid +132_2-7 Q0 MARCO_23_703568121-5 21 0.122048 hybrid +132_2-7 Q0 MARCO_26_164255046-252 22 0.113135 hybrid +132_2-7 Q0 MARCO_10_262643240-18 23 0.102745 hybrid +132_2-7 Q0 MARCO_43_777920951-5 24 0.100108 hybrid +132_2-7 Q0 MARCO_10_262643240-51 25 0.089968 hybrid +132_2-7 Q0 MARCO_10_262643240-33 26 0.080213 hybrid +132_2-7 Q0 MARCO_36_998866032-5 27 0.077324 hybrid +132_2-7 Q0 KILT_37100252-3 28 0.063128 hybrid +132_2-7 Q0 MARCO_04_858408112-36 29 0.062115 hybrid +132_2-7 Q0 KILT_41296425-2 30 0.044279 hybrid +132_2-7 Q0 MARCO_43_711973574-9 31 0.043078 hybrid +132_2-7 Q0 MARCO_10_262743620-4 32 0.016590 hybrid +132_2-7 Q0 MARCO_16_4106443718-6 33 0.013742 hybrid +132_2-7 Q0 MARCO_16_4106443718-8 34 0.013742 hybrid +132_2-7 Q0 KILT_463942-2 35 0.013588 hybrid +132_2-7 Q0 MARCO_48_1188743878-7 36 0.007491 hybrid +132_2-7 Q0 MARCO_03_1382133972-4 37 -0.001836 hybrid +132_2-7 Q0 MARCO_18_944509476-39 38 -0.003100 hybrid +132_2-7 Q0 MARCO_36_998866032-4 39 -0.010989 hybrid +132_2-7 Q0 KILT_22158-14 40 -0.017776 hybrid +132_2-7 Q0 MARCO_38_1453822755-12 41 -0.025759 hybrid +132_2-7 Q0 MARCO_17_434591980-3 42 -0.027333 hybrid +132_2-7 Q0 MARCO_26_164255046-17 43 -0.030026 hybrid +132_2-7 Q0 MARCO_10_262751953-9 44 -0.033281 hybrid +132_2-7 Q0 MARCO_17_1786410343-7 45 -0.036076 hybrid +132_2-7 Q0 KILT_30820783-4 46 -0.036527 hybrid +132_2-7 Q0 MARCO_26_164255046-256 47 -0.042784 hybrid +132_2-7 Q0 MARCO_18_4372209380-6 48 -0.044040 hybrid +132_2-7 Q0 KILT_6832027-3 49 -0.047796 hybrid +132_2-7 Q0 MARCO_10_260560518-1 50 -0.051105 hybrid +132_2-7 Q0 KILT_24280281-2 51 -0.056362 hybrid +132_2-7 Q0 KILT_149422-20 52 -0.061355 hybrid +132_2-7 Q0 MARCO_48_1188743878-4 53 -0.067206 hybrid +132_2-7 Q0 MARCO_39_605368516-2 54 -0.067710 hybrid +132_2-7 Q0 MARCO_17_1786410343-5 55 -0.067915 hybrid +132_2-7 Q0 KILT_28023698-1 56 -0.069483 hybrid +132_2-7 Q0 MARCO_17_4115996533-2 57 -0.069634 hybrid +132_2-7 Q0 KILT_1044143-3 58 -0.072060 hybrid +132_2-7 Q0 MARCO_19_242912952-25 59 -0.076879 hybrid +132_2-7 Q0 MARCO_30_1099460801-2 60 -0.081247 hybrid +132_2-7 Q0 MARCO_43_711973574-4 61 -0.089051 hybrid +132_2-7 Q0 MARCO_54_1591016686-6 62 -0.096901 hybrid +132_2-7 Q0 KILT_27522414-6 63 -0.099077 hybrid +132_2-7 Q0 KILT_53042476-7 64 -0.100156 hybrid +132_2-7 Q0 KILT_42747203-2 65 -0.103855 hybrid +132_2-7 Q0 MARCO_19_266473698-5 66 -0.104953 hybrid +132_2-7 Q0 MARCO_10_262643240-7 67 -0.106612 hybrid +132_2-7 Q0 KILT_13469651-4 68 -0.107489 hybrid +132_2-7 Q0 KILT_17794972-7 69 -0.108959 hybrid +132_2-7 Q0 MARCO_03_1382133972-6 70 -0.109712 hybrid +132_2-7 Q0 MARCO_54_1566083646-2 71 -0.112280 hybrid +132_2-7 Q0 MARCO_10_262743620-5 72 -0.114869 hybrid +132_2-7 Q0 KILT_792022-5 73 -0.115093 hybrid +132_2-7 Q0 MARCO_22_1644883624-29 74 -0.115469 hybrid +132_2-7 Q0 KILT_4638069-8 75 -0.115910 hybrid +132_2-7 Q0 MARCO_39_669283184-68 76 -0.117828 hybrid +132_2-7 Q0 MARCO_17_431954845-18 77 -0.118553 hybrid +132_2-7 Q0 MARCO_37_1260318296-2 78 -0.124199 hybrid +132_2-7 Q0 KILT_12975612-5 79 -0.125322 hybrid +132_2-7 Q0 KILT_489119-11 80 -0.125558 hybrid +132_2-7 Q0 KILT_31956-30 81 -0.125877 hybrid +132_2-7 Q0 MARCO_10_262407105-4 82 -0.127700 hybrid +132_2-7 Q0 MARCO_17_682979621-14 83 -0.128331 hybrid +132_2-7 Q0 MARCO_26_164255046-222 84 -0.128782 hybrid +132_2-7 Q0 MARCO_31_644392863-1 85 -0.130917 hybrid +132_2-7 Q0 KILT_337082-4 86 -0.132630 hybrid +132_2-7 Q0 MARCO_19_2554181832-2 87 -0.132648 hybrid +132_2-7 Q0 KILT_42747203-8 88 -0.134443 hybrid +132_2-7 Q0 KILT_13469651-3 89 -0.134519 hybrid +132_2-7 Q0 KILT_35740340-8 90 -0.136077 hybrid +132_2-7 Q0 MARCO_39_1045143156-7 91 -0.142155 hybrid +132_2-7 Q0 MARCO_10_262478173-3 92 -0.142625 hybrid +132_2-7 Q0 MARCO_10_260431490-78 93 -0.144252 hybrid +132_2-7 Q0 KILT_12320795-11 94 -0.145447 hybrid +132_2-7 Q0 KILT_489119-9 95 -0.146309 hybrid +132_2-7 Q0 MARCO_18_944509476-8 96 -0.146845 hybrid +132_2-7 Q0 MARCO_54_1591052919-6 97 -0.148652 hybrid +132_2-7 Q0 MARCO_48_588887493-5 98 -0.149768 hybrid +132_2-7 Q0 MARCO_10_260431490-19 99 -0.150156 hybrid +132_2-7 Q0 KILT_393817-9 100 -0.152276 hybrid +132_2-9 Q0 MARCO_17_4116009428-7 1 0.500000 hybrid +132_2-9 Q0 MARCO_17_4116009428-9 2 0.500000 hybrid +132_2-9 Q0 MARCO_17_4116009428-5 3 0.500000 hybrid +132_2-9 Q0 MARCO_13_1761053118-2 4 0.151414 hybrid +132_2-9 Q0 MARCO_10_262751953-5 5 0.139724 hybrid +132_2-9 Q0 MARCO_39_1740604538-5 6 0.133481 hybrid +132_2-9 Q0 MARCO_14_310245762-4 7 0.089576 hybrid +132_2-9 Q0 MARCO_10_262751953-14 8 0.013734 hybrid +132_2-9 Q0 MARCO_15_137349888-7 9 -0.049879 hybrid +132_2-9 Q0 KILT_7723713-2 10 -0.075959 hybrid +132_2-9 Q0 MARCO_17_694926414-13 11 -0.114105 hybrid +132_2-9 Q0 KILT_1165576-4 12 -0.116705 hybrid +132_2-9 Q0 KILT_27188332-5 13 -0.118936 hybrid +132_2-9 Q0 MARCO_20_659268363-15 14 -0.126517 hybrid +132_2-9 Q0 MARCO_36_841379281-2 15 -0.127708 hybrid +132_2-9 Q0 MARCO_14_310245762-3 16 -0.131408 hybrid +132_2-9 Q0 MARCO_16_1914383754-14 17 -0.135886 hybrid +132_2-9 Q0 MARCO_58_294356185-13 18 -0.141811 hybrid +132_2-9 Q0 KILT_4147183-6 19 -0.142473 hybrid +132_2-9 Q0 MARCO_06_316415399-1 20 -0.147093 hybrid +132_2-9 Q0 MARCO_01_793667752-5 21 -0.150754 hybrid +132_2-9 Q0 KILT_41297571-1 22 -0.157955 hybrid +132_2-9 Q0 KILT_14000930-3 23 -0.162659 hybrid +132_2-9 Q0 MARCO_49_1694579701-2 24 -0.164173 hybrid +132_2-9 Q0 KILT_1047960-2 25 -0.166459 hybrid +132_2-9 Q0 MARCO_31_1856625830-11 26 -0.167897 hybrid +132_2-9 Q0 KILT_2901475-2 27 -0.171480 hybrid +132_2-9 Q0 KILT_18356374-2 28 -0.176941 hybrid +132_2-9 Q0 MARCO_48_239881706-6 29 -0.179875 hybrid +132_2-9 Q0 MARCO_58_294356185-8 30 -0.180944 hybrid +132_2-9 Q0 KILT_27678891-2 31 -0.182491 hybrid +132_2-9 Q0 KILT_12870001-2 32 -0.183216 hybrid +132_2-9 Q0 MARCO_10_546905519-3 33 -0.183710 hybrid +132_2-9 Q0 MARCO_58_294356185-11 34 -0.184237 hybrid +132_2-9 Q0 MARCO_54_78931008-1 35 -0.185341 hybrid +132_2-9 Q0 MARCO_32_155004600-1 36 -0.199042 hybrid +132_2-9 Q0 MARCO_27_1203108866-3 37 -0.200218 hybrid +132_2-9 Q0 KILT_16754475-2 38 -0.202215 hybrid +132_2-9 Q0 MARCO_17_446410713-5 39 -0.203513 hybrid +132_2-9 Q0 KILT_37133262-10 40 -0.204930 hybrid +132_2-9 Q0 KILT_17567633-7 41 -0.205266 hybrid +132_2-9 Q0 MARCO_02_474894059-33 42 -0.205548 hybrid +132_2-9 Q0 KILT_55224799-3 43 -0.205757 hybrid +132_2-9 Q0 MARCO_58_294356185-16 44 -0.205828 hybrid +132_2-9 Q0 MARCO_10_262751953-15 45 -0.207893 hybrid +132_2-9 Q0 KILT_48876331-1 46 -0.208366 hybrid +132_2-9 Q0 KILT_30820783-1 47 -0.215968 hybrid +132_2-9 Q0 MARCO_19_594530483-33 48 -0.220949 hybrid +132_2-9 Q0 KILT_39758073-2 49 -0.225660 hybrid +132_2-9 Q0 MARCO_28_423118151-2 50 -0.226724 hybrid +132_2-9 Q0 MARCO_36_392601192-4 51 -0.228117 hybrid +132_2-9 Q0 MARCO_17_1692277228-40 52 -0.229884 hybrid +132_2-9 Q0 MARCO_48_92604212-10 53 -0.232964 hybrid +132_2-9 Q0 MARCO_11_1450644397-3 54 -0.233065 hybrid +132_2-9 Q0 MARCO_15_1845561077-1 55 -0.233347 hybrid +132_2-9 Q0 KILT_325856-29 56 -0.236463 hybrid +132_2-9 Q0 MARCO_39_1281933287-12 57 -0.236734 hybrid +132_2-9 Q0 KILT_24557732-4 58 -0.237258 hybrid +132_2-9 Q0 KILT_33282267-6 59 -0.238100 hybrid +132_2-9 Q0 MARCO_58_1181805502-3 60 -0.238105 hybrid +132_2-9 Q0 KILT_39756891-8 61 -0.239419 hybrid +132_2-9 Q0 MARCO_30_1779257487-2 62 -0.240369 hybrid +132_2-9 Q0 MARCO_28_41375124-1 63 -0.240388 hybrid +132_2-9 Q0 MARCO_16_4113364885-4 64 -0.243042 hybrid +132_2-9 Q0 KILT_39758073-1 65 -0.243637 hybrid +132_2-9 Q0 MARCO_10_353212050-1 66 -0.244310 hybrid +132_2-9 Q0 MARCO_43_776070866-1 67 -0.245550 hybrid +132_2-9 Q0 MARCO_15_137349888-5 68 -0.245678 hybrid +132_2-9 Q0 MARCO_45_652745241-2 69 -0.245729 hybrid +132_2-9 Q0 MARCO_12_316181179-3 70 -0.246625 hybrid +132_2-9 Q0 KILT_46469839-2 71 -0.247048 hybrid +132_2-9 Q0 MARCO_06_1901320319-1 72 -0.247512 hybrid +132_2-9 Q0 MARCO_56_1050014901-3 73 -0.248628 hybrid +132_2-9 Q0 MARCO_36_841379281-3 74 -0.249391 hybrid +132_2-9 Q0 MARCO_43_776018717-1 75 -0.254032 hybrid +132_2-9 Q0 MARCO_05_459616104-1 76 -0.254170 hybrid +132_2-9 Q0 MARCO_10_262743620-5 77 -0.254686 hybrid +132_2-9 Q0 MARCO_13_20573962-2 78 -0.256586 hybrid +132_2-9 Q0 MARCO_15_137349888-17 79 -0.258394 hybrid +132_2-9 Q0 KILT_4147183-1 80 -0.259363 hybrid +132_2-9 Q0 KILT_4147183-3 81 -0.259363 hybrid +132_2-9 Q0 MARCO_32_154998540-1 82 -0.260356 hybrid +132_2-9 Q0 KILT_1364342-14 83 -0.262207 hybrid +132_2-9 Q0 MARCO_15_1133582623-6 84 -0.262272 hybrid +132_2-9 Q0 KILT_15207554-1 85 -0.262405 hybrid +132_2-9 Q0 MARCO_22_1021773540-3 86 -0.263268 hybrid +132_2-9 Q0 KILT_33325603-1 87 -0.264522 hybrid +132_2-9 Q0 MARCO_49_225449392-4 88 -0.264704 hybrid +132_2-9 Q0 KILT_6372451-1 89 -0.264951 hybrid +132_2-9 Q0 MARCO_33_1317467841-20 90 -0.265768 hybrid +132_2-9 Q0 MARCO_44_1145527368-21 91 -0.265936 hybrid +132_2-9 Q0 MARCO_10_1413316386-6 92 -0.266107 hybrid +132_2-9 Q0 MARCO_15_934115820-4 93 -0.266702 hybrid +132_2-9 Q0 MARCO_22_1021773540-4 94 -0.266832 hybrid +132_2-9 Q0 MARCO_17_458087160-20 95 -0.267177 hybrid +132_2-9 Q0 MARCO_15_592511509-1 96 -0.269264 hybrid +132_2-9 Q0 MARCO_48_241882511-1 97 -0.269902 hybrid +132_2-9 Q0 MARCO_49_927661370-1 98 -0.271085 hybrid +132_2-9 Q0 MARCO_56_1050014901-1 99 -0.272309 hybrid +132_2-9 Q0 MARCO_19_144487026-51 100 -0.273056 hybrid +132_3-1 Q0 MARCO_19_266473698-35 1 0.500000 hybrid +132_3-1 Q0 MARCO_19_266473698-48 2 0.489092 hybrid +132_3-1 Q0 MARCO_19_266473698-20 3 0.448667 hybrid +132_3-1 Q0 KILT_947442-14 4 0.363297 hybrid +132_3-1 Q0 MARCO_19_266473698-6 5 0.328895 hybrid +132_3-1 Q0 MARCO_19_266473698-37 6 0.327584 hybrid +132_3-1 Q0 MARCO_19_266473698-56 7 0.310660 hybrid +132_3-1 Q0 MARCO_19_266473698-9 8 0.307586 hybrid +132_3-1 Q0 MARCO_19_266473698-2 9 0.281116 hybrid +132_3-1 Q0 MARCO_19_266473698-49 10 0.272700 hybrid +132_3-1 Q0 MARCO_19_266473698-7 11 0.268783 hybrid +132_3-1 Q0 MARCO_19_266473698-65 12 0.268246 hybrid +132_3-1 Q0 MARCO_18_4370096812-13 13 0.258500 hybrid +132_3-1 Q0 MARCO_19_266412467-6 14 0.255550 hybrid +132_3-1 Q0 MARCO_19_266473698-62 15 0.255018 hybrid +132_3-1 Q0 MARCO_04_858408112-36 16 0.246916 hybrid +132_3-1 Q0 MARCO_19_266473698-53 17 0.244410 hybrid +132_3-1 Q0 KILT_52233911-41 18 0.205404 hybrid +132_3-1 Q0 MARCO_19_266473698-70 19 0.201435 hybrid +132_3-1 Q0 MARCO_19_266473698-29 20 0.200654 hybrid +132_3-1 Q0 MARCO_19_266412467-24 21 0.187528 hybrid +132_3-1 Q0 MARCO_19_266412467-10 22 0.187418 hybrid +132_3-1 Q0 MARCO_19_266473698-39 23 0.180905 hybrid +132_3-1 Q0 MARCO_19_266473698-31 24 0.176786 hybrid +132_3-1 Q0 MARCO_19_266412467-11 25 0.167442 hybrid +132_3-1 Q0 MARCO_19_266473698-42 26 0.166197 hybrid +132_3-1 Q0 MARCO_19_266473698-22 27 0.164501 hybrid +132_3-1 Q0 MARCO_19_266412467-30 28 0.162038 hybrid +132_3-1 Q0 MARCO_19_266473698-75 29 0.161720 hybrid +132_3-1 Q0 MARCO_19_266473698-8 30 0.151197 hybrid +132_3-1 Q0 KILT_52992307-3 31 0.147427 hybrid +132_3-1 Q0 MARCO_19_266473698-1 32 0.147271 hybrid +132_3-1 Q0 MARCO_19_266473698-10 33 0.144959 hybrid +132_3-1 Q0 MARCO_19_2040255855-9 34 0.142126 hybrid +132_3-1 Q0 MARCO_44_1109568676-52 35 0.141346 hybrid +132_3-1 Q0 MARCO_19_266473698-74 36 0.137843 hybrid +132_3-1 Q0 MARCO_12_587015892-10 37 0.129496 hybrid +132_3-1 Q0 MARCO_19_266473698-27 38 0.111885 hybrid +132_3-1 Q0 MARCO_48_623275405-4 39 0.109298 hybrid +132_3-1 Q0 MARCO_19_266473698-3 40 0.102023 hybrid +132_3-1 Q0 MARCO_04_858408112-35 41 0.100412 hybrid +132_3-1 Q0 MARCO_19_266473698-50 42 0.098944 hybrid +132_3-1 Q0 MARCO_19_266473698-25 43 0.094360 hybrid +132_3-1 Q0 MARCO_36_995538963-8 44 0.091647 hybrid +132_3-1 Q0 MARCO_19_266412467-26 45 0.082274 hybrid +132_3-1 Q0 MARCO_19_266473698-67 46 0.076500 hybrid +132_3-1 Q0 MARCO_37_74546248-2 47 0.072666 hybrid +132_3-1 Q0 MARCO_29_1175326324-10 48 0.064084 hybrid +132_3-1 Q0 MARCO_19_266473698-41 49 0.061493 hybrid +132_3-1 Q0 MARCO_19_266473698-40 50 0.055884 hybrid +132_3-1 Q0 MARCO_19_266473698-24 51 0.054808 hybrid +132_3-1 Q0 MARCO_19_266473698-34 52 0.053749 hybrid +132_3-1 Q0 MARCO_19_266473698-32 53 0.052542 hybrid +132_3-1 Q0 MARCO_19_266473698-76 54 0.050927 hybrid +132_3-1 Q0 MARCO_19_266473698-63 55 0.050093 hybrid +132_3-1 Q0 MARCO_19_266412467-9 56 0.032953 hybrid +132_3-1 Q0 MARCO_19_266412467-7 57 0.032829 hybrid +132_3-1 Q0 MARCO_19_266473698-30 58 0.027081 hybrid +132_3-1 Q0 MARCO_19_266473698-61 59 0.020019 hybrid +132_3-1 Q0 MARCO_19_266473698-36 60 0.017326 hybrid +132_3-1 Q0 MARCO_19_266473698-23 61 0.011318 hybrid +132_3-1 Q0 MARCO_36_1001161022-8 62 0.004701 hybrid +132_3-1 Q0 MARCO_19_266473698-59 63 0.003530 hybrid +132_3-1 Q0 MARCO_19_266473698-11 64 -0.003537 hybrid +132_3-1 Q0 MARCO_19_266473698-58 65 -0.007860 hybrid +132_3-1 Q0 MARCO_16_2847445832-30 66 -0.008136 hybrid +132_3-1 Q0 MARCO_28_283614502-17 67 -0.011166 hybrid +132_3-1 Q0 MARCO_19_266412467-20 68 -0.015803 hybrid +132_3-1 Q0 MARCO_19_266473698-77 69 -0.018851 hybrid +132_3-1 Q0 MARCO_50_2148855606-22 70 -0.022205 hybrid +132_3-1 Q0 MARCO_19_266473698-52 71 -0.031476 hybrid +132_3-1 Q0 MARCO_17_2379624412-18 72 -0.035497 hybrid +132_3-1 Q0 KILT_52233943-52 73 -0.039735 hybrid +132_3-1 Q0 MARCO_19_266412467-39 74 -0.043098 hybrid +132_3-1 Q0 KILT_52233943-65 75 -0.050635 hybrid +132_3-1 Q0 MARCO_19_262736003-17 76 -0.051326 hybrid +132_3-1 Q0 MARCO_35_315705941-11 77 -0.052433 hybrid +132_3-1 Q0 MARCO_19_266473698-73 78 -0.052777 hybrid +132_3-1 Q0 MARCO_37_74546248-3 79 -0.053082 hybrid +132_3-1 Q0 MARCO_42_1366117883-9 80 -0.054241 hybrid +132_3-1 Q0 MARCO_20_655141777-243 81 -0.057471 hybrid +132_3-1 Q0 MARCO_22_1644883624-30 82 -0.070611 hybrid +132_3-1 Q0 MARCO_50_2146436541-112 83 -0.072514 hybrid +132_3-1 Q0 MARCO_19_266412467-34 84 -0.081030 hybrid +132_3-1 Q0 MARCO_19_266412467-5 85 -0.084567 hybrid +132_3-1 Q0 MARCO_14_308237251-3 86 -0.087968 hybrid +132_3-1 Q0 MARCO_19_266473698-68 87 -0.089334 hybrid +132_3-1 Q0 MARCO_44_51055476-3 88 -0.091025 hybrid +132_3-1 Q0 MARCO_20_655141777-242 89 -0.094163 hybrid +132_3-1 Q0 MARCO_19_266412467-28 90 -0.094778 hybrid +132_3-1 Q0 MARCO_19_266473698-66 91 -0.095823 hybrid +132_3-1 Q0 MARCO_19_266412467-23 92 -0.097182 hybrid +132_3-1 Q0 MARCO_09_1199187401-8 93 -0.099776 hybrid +132_3-1 Q0 MARCO_42_1359508711-8 94 -0.100548 hybrid +132_3-1 Q0 MARCO_19_266473698-12 95 -0.102498 hybrid +132_3-1 Q0 MARCO_17_2379624412-37 96 -0.108764 hybrid +132_3-1 Q0 MARCO_48_624646140-3 97 -0.110783 hybrid +132_3-1 Q0 MARCO_04_859919078-44 98 -0.113182 hybrid +132_3-1 Q0 KILT_11914121-23 99 -0.114318 hybrid +132_3-1 Q0 MARCO_36_1001622732-7 100 -0.116942 hybrid +132_3-3 Q0 MARCO_19_266473698-47 1 0.500002 hybrid +132_3-3 Q0 MARCO_19_266473698-48 2 0.472283 hybrid +132_3-3 Q0 KILT_52233943-32 3 0.414790 hybrid +132_3-3 Q0 MARCO_19_266473698-7 4 0.403267 hybrid +132_3-3 Q0 MARCO_19_266473698-73 5 0.396479 hybrid +132_3-3 Q0 KILT_52233943-22 6 0.385807 hybrid +132_3-3 Q0 MARCO_04_858408112-34 7 0.380266 hybrid +132_3-3 Q0 MARCO_04_858408112-36 8 0.355527 hybrid +132_3-3 Q0 MARCO_19_266473698-8 9 0.326993 hybrid +132_3-3 Q0 MARCO_19_266473698-9 10 0.309479 hybrid +132_3-3 Q0 MARCO_19_266473698-41 11 0.286952 hybrid +132_3-3 Q0 MARCO_48_624646140-3 12 0.285663 hybrid +132_3-3 Q0 MARCO_19_266473698-3 13 0.285529 hybrid +132_3-3 Q0 MARCO_48_623051802-2 14 0.284202 hybrid +132_3-3 Q0 MARCO_19_2040255855-9 15 0.282532 hybrid +132_3-3 Q0 MARCO_19_266473698-62 16 0.272868 hybrid +132_3-3 Q0 MARCO_19_266473698-20 17 0.253515 hybrid +132_3-3 Q0 MARCO_19_266473698-6 18 0.247453 hybrid +132_3-3 Q0 KILT_52233911-53 19 0.240090 hybrid +132_3-3 Q0 KILT_52233943-31 20 0.226685 hybrid +132_3-3 Q0 KILT_57487479-46 21 0.218264 hybrid +132_3-3 Q0 MARCO_19_266473698-35 22 0.207920 hybrid +132_3-3 Q0 MARCO_19_266473698-4 23 0.207576 hybrid +132_3-3 Q0 KILT_52992307-3 24 0.177325 hybrid +132_3-3 Q0 KILT_57487479-49 25 0.169105 hybrid +132_3-3 Q0 MARCO_19_266473698-60 26 0.166825 hybrid +132_3-3 Q0 MARCO_42_1366117883-9 27 0.164332 hybrid +132_3-3 Q0 MARCO_19_223539634-31 28 0.158001 hybrid +132_3-3 Q0 MARCO_19_2506731168-6 29 0.154626 hybrid +132_3-3 Q0 MARCO_14_308237251-3 30 0.151545 hybrid +132_3-3 Q0 KILT_52233943-45 31 0.151007 hybrid +132_3-3 Q0 KILT_52233911-52 32 0.149819 hybrid +132_3-3 Q0 MARCO_47_1312054708-2 33 0.149076 hybrid +132_3-3 Q0 MARCO_37_1226477362-26 34 0.140391 hybrid +132_3-3 Q0 MARCO_09_1199187401-8 35 0.139631 hybrid +132_3-3 Q0 KILT_52233943-42 36 0.135181 hybrid +132_3-3 Q0 MARCO_04_859919078-48 37 0.128640 hybrid +132_3-3 Q0 MARCO_19_266473698-40 38 0.126390 hybrid +132_3-3 Q0 MARCO_19_266473698-76 39 0.111147 hybrid +132_3-3 Q0 MARCO_48_589683267-10 40 0.110614 hybrid +132_3-3 Q0 MARCO_36_994431676-3 41 0.108767 hybrid +132_3-3 Q0 MARCO_19_266473698-32 42 0.105224 hybrid +132_3-3 Q0 MARCO_22_1644883624-30 43 0.100874 hybrid +132_3-3 Q0 MARCO_04_859919078-53 44 0.100602 hybrid +132_3-3 Q0 MARCO_44_605704533-7 45 0.098792 hybrid +132_3-3 Q0 MARCO_19_266473698-26 46 0.097025 hybrid +132_3-3 Q0 MARCO_47_1312054708-3 47 0.094120 hybrid +132_3-3 Q0 MARCO_20_655141777-17 48 0.090119 hybrid +132_3-3 Q0 MARCO_29_1688601908-6 49 0.088499 hybrid +132_3-3 Q0 KILT_52233943-24 50 0.082819 hybrid +132_3-3 Q0 MARCO_09_1199187401-5 51 0.078121 hybrid +132_3-3 Q0 KILT_1478689-6 52 0.075506 hybrid +132_3-3 Q0 MARCO_04_859919078-51 53 0.072618 hybrid +132_3-3 Q0 MARCO_55_719783796-4 54 0.067807 hybrid +132_3-3 Q0 MARCO_19_266473698-1 55 0.067437 hybrid +132_3-3 Q0 KILT_5587334-30 56 0.063231 hybrid +132_3-3 Q0 MARCO_58_1734734538-3 57 0.063185 hybrid +132_3-3 Q0 MARCO_12_587015892-10 58 0.062761 hybrid +132_3-3 Q0 MARCO_56_1316619191-31 59 0.060447 hybrid +132_3-3 Q0 MARCO_17_2955585401-8 60 0.059406 hybrid +132_3-3 Q0 MARCO_19_266473698-25 61 0.054616 hybrid +132_3-3 Q0 MARCO_37_74546248-2 62 0.053651 hybrid +132_3-3 Q0 MARCO_19_266473698-56 63 0.052660 hybrid +132_3-3 Q0 MARCO_19_266473698-70 64 0.052564 hybrid +132_3-3 Q0 MARCO_04_858408112-35 65 0.045612 hybrid +132_3-3 Q0 MARCO_19_154849445-25 66 0.041926 hybrid +132_3-3 Q0 MARCO_19_266473698-51 67 0.041661 hybrid +132_3-3 Q0 MARCO_19_266473698-57 68 0.041027 hybrid +132_3-3 Q0 MARCO_19_266473698-65 69 0.040330 hybrid +132_3-3 Q0 MARCO_04_859919078-44 70 0.034432 hybrid +132_3-3 Q0 MARCO_04_859919078-43 71 0.034361 hybrid +132_3-3 Q0 MARCO_35_315705941-11 72 0.021842 hybrid +132_3-3 Q0 MARCO_19_266473698-52 73 0.019135 hybrid +132_3-3 Q0 MARCO_19_266473698-39 74 0.018891 hybrid +132_3-3 Q0 MARCO_04_859919078-47 75 0.018236 hybrid +132_3-3 Q0 KILT_57487479-78 76 0.009349 hybrid +132_3-3 Q0 MARCO_25_531865791-3 77 0.008728 hybrid +132_3-3 Q0 MARCO_05_809828754-7 78 0.004698 hybrid +132_3-3 Q0 MARCO_23_948069353-7 79 0.000693 hybrid +132_3-3 Q0 MARCO_19_253763509-3 80 -0.000084 hybrid +132_3-3 Q0 MARCO_19_266473698-75 81 -0.001994 hybrid +132_3-3 Q0 MARCO_19_266473698-67 82 -0.002725 hybrid +132_3-3 Q0 KILT_52233943-23 83 -0.005537 hybrid +132_3-3 Q0 KILT_59181558-13 84 -0.006742 hybrid +132_3-3 Q0 MARCO_13_1255654456-17 85 -0.008396 hybrid +132_3-3 Q0 MARCO_25_533316937-2 86 -0.016943 hybrid +132_3-3 Q0 MARCO_48_625690122-2 87 -0.021653 hybrid +132_3-3 Q0 MARCO_19_266473698-30 88 -0.026292 hybrid +132_3-3 Q0 MARCO_17_2959596967-17 89 -0.032841 hybrid +132_3-3 Q0 MARCO_19_266473698-29 90 -0.033584 hybrid +132_3-3 Q0 MARCO_44_605704533-1 91 -0.034768 hybrid +132_3-3 Q0 MARCO_28_283614502-17 92 -0.037875 hybrid +132_3-3 Q0 MARCO_33_1314203620-2 93 -0.040121 hybrid +132_3-3 Q0 MARCO_50_2146436541-112 94 -0.040629 hybrid +132_3-3 Q0 MARCO_55_719783796-3 95 -0.040969 hybrid +132_3-3 Q0 MARCO_31_1605905488-19 96 -0.044650 hybrid +132_3-3 Q0 MARCO_04_1291856037-2 97 -0.047131 hybrid +132_3-3 Q0 MARCO_29_1688629356-3 98 -0.047853 hybrid +132_3-3 Q0 MARCO_44_605704533-2 99 -0.049415 hybrid +132_3-3 Q0 MARCO_19_262736003-17 100 -0.051808 hybrid +132_3-5 Q0 MARCO_58_1733155476-4 1 0.499998 hybrid +132_3-5 Q0 MARCO_22_1645608644-6 2 0.329391 hybrid +132_3-5 Q0 MARCO_42_1367375275-8 3 0.308267 hybrid +132_3-5 Q0 MARCO_44_606901877-4 4 0.292996 hybrid +132_3-5 Q0 MARCO_01_1869259579-1 5 0.251989 hybrid +132_3-5 Q0 MARCO_30_382362150-20 6 0.234085 hybrid +132_3-5 Q0 MARCO_33_1314178076-6 7 0.232992 hybrid +132_3-5 Q0 MARCO_36_995115743-2 8 0.226207 hybrid +132_3-5 Q0 MARCO_22_1645284806-35 9 0.220182 hybrid +132_3-5 Q0 MARCO_19_249161710-1 10 0.177820 hybrid +132_3-5 Q0 MARCO_22_1645342034-2 11 0.177205 hybrid +132_3-5 Q0 MARCO_36_995115743-45 12 0.176335 hybrid +132_3-5 Q0 MARCO_04_862623938-23 13 0.167124 hybrid +132_3-5 Q0 MARCO_35_309105238-5 14 0.166259 hybrid +132_3-5 Q0 MARCO_46_524486377-3 15 0.151943 hybrid +132_3-5 Q0 MARCO_04_862623938-3 16 0.147230 hybrid +132_3-5 Q0 MARCO_17_2912903846-4 17 0.140747 hybrid +132_3-5 Q0 MARCO_36_995115743-7 18 0.139826 hybrid +132_3-5 Q0 MARCO_58_1733733283-2 19 0.130192 hybrid +132_3-5 Q0 MARCO_24_141300538-3 20 0.126827 hybrid +132_3-5 Q0 MARCO_36_995115743-4 21 0.120422 hybrid +132_3-5 Q0 MARCO_58_1733867517-24 22 0.115290 hybrid +132_3-5 Q0 MARCO_36_1002180196-5 23 0.113781 hybrid +132_3-5 Q0 MARCO_25_519606829-3 24 0.107113 hybrid +132_3-5 Q0 MARCO_04_1293091136-9 25 0.102302 hybrid +132_3-5 Q0 MARCO_44_53572356-2 26 0.101918 hybrid +132_3-5 Q0 MARCO_06_7291931-2 27 0.097938 hybrid +132_3-5 Q0 MARCO_06_736731836-2 28 0.097256 hybrid +132_3-5 Q0 MARCO_19_235908656-48 29 0.094118 hybrid +132_3-5 Q0 MARCO_04_862623938-9 30 0.093950 hybrid +132_3-5 Q0 MARCO_06_736731836-3 31 0.092257 hybrid +132_3-5 Q0 MARCO_22_1644865728-3 32 0.072414 hybrid +132_3-5 Q0 MARCO_00_718156149-21 33 0.069214 hybrid +132_3-5 Q0 MARCO_04_862623938-21 34 0.065625 hybrid +132_3-5 Q0 MARCO_58_1733918604-6 35 0.062201 hybrid +132_3-5 Q0 MARCO_36_997696094-4 36 0.056403 hybrid +132_3-5 Q0 MARCO_17_2913009924-1 37 0.053794 hybrid +132_3-5 Q0 MARCO_20_655141777-18 38 0.050236 hybrid +132_3-5 Q0 MARCO_22_1644865728-5 39 0.041230 hybrid +132_3-5 Q0 MARCO_08_685927547-7 40 0.034147 hybrid +132_3-5 Q0 MARCO_37_1186075611-2 41 0.031815 hybrid +132_3-5 Q0 MARCO_19_261444221-9 42 0.030867 hybrid +132_3-5 Q0 MARCO_19_261444221-7 43 0.030860 hybrid +132_3-5 Q0 MARCO_40_1269133418-2 44 0.029531 hybrid +132_3-5 Q0 MARCO_36_993774736-4 45 0.026828 hybrid +132_3-5 Q0 MARCO_19_235908656-33 46 0.026679 hybrid +132_3-5 Q0 MARCO_23_693358952-2 47 0.026045 hybrid +132_3-5 Q0 MARCO_22_1644865728-8 48 0.023103 hybrid +132_3-5 Q0 MARCO_22_1645163968-34 49 0.022452 hybrid +132_3-5 Q0 MARCO_05_1022364763-3 50 0.021680 hybrid +132_3-5 Q0 MARCO_19_235908656-2 51 0.017919 hybrid +132_3-5 Q0 MARCO_22_1645562641-6 52 0.017763 hybrid +132_3-5 Q0 MARCO_08_685942340-4 53 0.013571 hybrid +132_3-5 Q0 MARCO_36_995115743-18 54 0.012623 hybrid +132_3-5 Q0 MARCO_36_995115743-28 55 0.009892 hybrid +132_3-5 Q0 MARCO_42_1367404998-10 56 0.008023 hybrid +132_3-5 Q0 MARCO_19_2040255855-11 57 0.004795 hybrid +132_3-5 Q0 MARCO_48_1185113271-2 58 0.000153 hybrid +132_3-5 Q0 KILT_12112193-21 59 -0.000666 hybrid +132_3-5 Q0 MARCO_31_1434065718-3 60 -0.005081 hybrid +132_3-5 Q0 MARCO_22_1644865728-10 61 -0.006895 hybrid +132_3-5 Q0 MARCO_19_258362801-11 62 -0.009931 hybrid +132_3-5 Q0 MARCO_19_235908656-32 63 -0.022045 hybrid +132_3-5 Q0 MARCO_36_995115743-29 64 -0.023201 hybrid +132_3-5 Q0 MARCO_36_993509859-2 65 -0.026029 hybrid +132_3-5 Q0 MARCO_36_995115743-11 66 -0.030221 hybrid +132_3-5 Q0 MARCO_51_122069718-5 67 -0.030625 hybrid +132_3-5 Q0 MARCO_36_995115743-5 68 -0.033312 hybrid +132_3-5 Q0 MARCO_19_581423406-100 69 -0.034139 hybrid +132_3-5 Q0 MARCO_17_2897650503-154 70 -0.034139 hybrid +132_3-5 Q0 MARCO_19_165054484-163 71 -0.034139 hybrid +132_3-5 Q0 MARCO_04_1293091136-6 72 -0.035267 hybrid +132_3-5 Q0 MARCO_22_1645660001-2 73 -0.041680 hybrid +132_3-5 Q0 MARCO_22_1645562641-4 74 -0.046272 hybrid +132_3-5 Q0 MARCO_36_994246585-5 75 -0.047541 hybrid +132_3-5 Q0 MARCO_04_862623938-11 76 -0.048748 hybrid +132_3-5 Q0 MARCO_36_995115743-14 77 -0.050671 hybrid +132_3-5 Q0 MARCO_36_958814344-6 78 -0.050777 hybrid +132_3-5 Q0 MARCO_25_519526378-6 79 -0.050828 hybrid +132_3-5 Q0 MARCO_17_2913217784-4 80 -0.054793 hybrid +132_3-5 Q0 MARCO_40_1267172266-3 81 -0.054914 hybrid +132_3-5 Q0 MARCO_50_1609646744-4 82 -0.054981 hybrid +132_3-5 Q0 MARCO_17_2913009924-25 83 -0.056705 hybrid +132_3-5 Q0 MARCO_19_258035767-45 84 -0.057476 hybrid +132_3-5 Q0 MARCO_25_519526378-7 85 -0.062800 hybrid +132_3-5 Q0 MARCO_22_1522263958-11 86 -0.062969 hybrid +132_3-5 Q0 MARCO_36_842481400-2 87 -0.065574 hybrid +132_3-5 Q0 MARCO_04_1293091136-5 88 -0.066761 hybrid +132_3-5 Q0 MARCO_36_1002193231-10 89 -0.068724 hybrid +132_3-5 Q0 MARCO_19_2487007325-25 90 -0.071513 hybrid +132_3-5 Q0 MARCO_01_830147397-24 91 -0.071513 hybrid +132_3-5 Q0 MARCO_14_466351807-30 92 -0.071772 hybrid +132_3-5 Q0 MARCO_50_1609646744-5 93 -0.071858 hybrid +132_3-5 Q0 MARCO_50_1431175904-35 94 -0.071897 hybrid +132_3-5 Q0 MARCO_17_2913217784-29 95 -0.071983 hybrid +132_3-5 Q0 MARCO_38_845070181-10 96 -0.074640 hybrid +132_3-5 Q0 MARCO_15_137532783-2 97 -0.076920 hybrid +132_3-5 Q0 MARCO_18_930678979-14 98 -0.077923 hybrid +132_3-5 Q0 MARCO_44_1566253965-20 99 -0.078166 hybrid +132_3-5 Q0 MARCO_49_929567211-7 100 -0.078260 hybrid +132_3-7 Q0 MARCO_19_266473698-49 1 0.500001 hybrid +132_3-7 Q0 MARCO_19_266473698-35 2 0.450094 hybrid +132_3-7 Q0 MARCO_04_858408112-36 3 0.414686 hybrid +132_3-7 Q0 MARCO_19_266412467-1 4 0.327162 hybrid +132_3-7 Q0 MARCO_19_266580491-8 5 0.322960 hybrid +132_3-7 Q0 MARCO_19_266473698-39 6 0.320905 hybrid +132_3-7 Q0 MARCO_19_266473698-10 7 0.316123 hybrid +132_3-7 Q0 MARCO_19_266412467-20 8 0.278362 hybrid +132_3-7 Q0 MARCO_19_266412467-30 9 0.272134 hybrid +132_3-7 Q0 MARCO_19_266473698-20 10 0.237758 hybrid +132_3-7 Q0 MARCO_19_266473698-2 11 0.231095 hybrid +132_3-7 Q0 MARCO_19_266473698-43 12 0.229844 hybrid +132_3-7 Q0 MARCO_19_266412467-3 13 0.196953 hybrid +132_3-7 Q0 MARCO_29_1175326324-10 14 0.168966 hybrid +132_3-7 Q0 MARCO_19_266412467-10 15 0.161052 hybrid +132_3-7 Q0 MARCO_17_2379624412-18 16 0.159231 hybrid +132_3-7 Q0 MARCO_19_266412467-6 17 0.151086 hybrid +132_3-7 Q0 MARCO_19_266412467-11 18 0.133831 hybrid +132_3-7 Q0 MARCO_50_1177638426-16 19 0.131785 hybrid +132_3-7 Q0 MARCO_05_319131414-2 20 0.116899 hybrid +132_3-7 Q0 MARCO_19_266473698-1 21 0.104968 hybrid +132_3-7 Q0 MARCO_19_266473698-7 22 0.102493 hybrid +132_3-7 Q0 MARCO_19_266473698-65 23 0.087437 hybrid +132_3-7 Q0 MARCO_19_266473698-42 24 0.083423 hybrid +132_3-7 Q0 MARCO_19_266473698-27 25 0.080939 hybrid +132_3-7 Q0 MARCO_19_266412467-9 26 0.076829 hybrid +132_3-7 Q0 MARCO_19_266412467-34 27 0.070619 hybrid +132_3-7 Q0 MARCO_36_995538963-8 28 0.056807 hybrid +132_3-7 Q0 MARCO_19_266473698-3 29 0.053513 hybrid +132_3-7 Q0 KILT_21786641-33 30 0.047711 hybrid +132_3-7 Q0 MARCO_48_1188236562-5 31 0.043328 hybrid +132_3-7 Q0 MARCO_19_266473698-63 32 0.040976 hybrid +132_3-7 Q0 MARCO_19_266473698-58 33 0.033923 hybrid +132_3-7 Q0 MARCO_20_655049226-10 34 0.030728 hybrid +132_3-7 Q0 MARCO_50_1429130906-33 35 0.021981 hybrid +132_3-7 Q0 MARCO_19_2040255855-9 36 0.021606 hybrid +132_3-7 Q0 MARCO_19_266473698-48 37 0.014301 hybrid +132_3-7 Q0 MARCO_04_858408112-35 38 0.014151 hybrid +132_3-7 Q0 MARCO_19_266412467-32 39 0.010185 hybrid +132_3-7 Q0 MARCO_21_1375915326-4 40 0.008292 hybrid +132_3-7 Q0 MARCO_19_266412467-19 41 -0.000420 hybrid +132_3-7 Q0 MARCO_19_266412467-18 42 -0.008748 hybrid +132_3-7 Q0 MARCO_21_1376285318-3 43 -0.011109 hybrid +132_3-7 Q0 MARCO_19_266473698-32 44 -0.013650 hybrid +132_3-7 Q0 MARCO_01_1034490048-90 45 -0.014898 hybrid +132_3-7 Q0 KILT_947442-14 46 -0.014961 hybrid +132_3-7 Q0 MARCO_18_4370096812-6 47 -0.015123 hybrid +132_3-7 Q0 MARCO_19_266580491-1 48 -0.019062 hybrid +132_3-7 Q0 MARCO_01_1034490048-12 49 -0.020154 hybrid +132_3-7 Q0 MARCO_48_626081662-7 50 -0.023445 hybrid +132_3-7 Q0 MARCO_19_266473698-56 51 -0.023763 hybrid +132_3-7 Q0 MARCO_21_1376020448-6 52 -0.028221 hybrid +132_3-7 Q0 MARCO_19_266473698-68 53 -0.040562 hybrid +132_3-7 Q0 MARCO_19_266473698-37 54 -0.046373 hybrid +132_3-7 Q0 MARCO_19_266473698-70 55 -0.046634 hybrid +132_3-7 Q0 MARCO_19_266473698-50 56 -0.046841 hybrid +132_3-7 Q0 MARCO_16_4105786320-13 57 -0.049850 hybrid +132_3-7 Q0 MARCO_31_644392863-5 58 -0.052916 hybrid +132_3-7 Q0 MARCO_21_1376020448-7 59 -0.052958 hybrid +132_3-7 Q0 MARCO_19_266412467-14 60 -0.053660 hybrid +132_3-7 Q0 MARCO_19_266473698-22 61 -0.057047 hybrid +132_3-7 Q0 MARCO_37_695078536-7 62 -0.060134 hybrid +132_3-7 Q0 MARCO_19_266473698-23 63 -0.067859 hybrid +132_3-7 Q0 MARCO_19_266412467-26 64 -0.068924 hybrid +132_3-7 Q0 MARCO_19_266473698-29 65 -0.069047 hybrid +132_3-7 Q0 MARCO_19_266473698-30 66 -0.069416 hybrid +132_3-7 Q0 KILT_669964-1 67 -0.069584 hybrid +132_3-7 Q0 MARCO_19_266473698-40 68 -0.071651 hybrid +132_3-7 Q0 KILT_2163412-24 69 -0.075320 hybrid +132_3-7 Q0 KILT_3345627-2 70 -0.076127 hybrid +132_3-7 Q0 KILT_58620732-3 71 -0.076235 hybrid +132_3-7 Q0 MARCO_19_266412467-24 72 -0.087356 hybrid +132_3-7 Q0 MARCO_19_266412467-39 73 -0.092230 hybrid +132_3-7 Q0 MARCO_19_266473698-19 74 -0.092647 hybrid +132_3-7 Q0 MARCO_19_266473698-13 75 -0.094792 hybrid +132_3-7 Q0 MARCO_04_202749965-3 76 -0.095698 hybrid +132_3-7 Q0 MARCO_42_1365864590-8 77 -0.099433 hybrid +132_3-7 Q0 MARCO_19_266412467-35 78 -0.100957 hybrid +132_3-7 Q0 MARCO_19_266412467-23 79 -0.109729 hybrid +132_3-7 Q0 MARCO_19_266412467-13 80 -0.112381 hybrid +132_3-7 Q0 MARCO_19_266412467-15 81 -0.114784 hybrid +132_3-7 Q0 MARCO_21_1376714782-33 82 -0.117241 hybrid +132_3-7 Q0 MARCO_19_266473698-62 83 -0.118603 hybrid +132_3-7 Q0 MARCO_19_266473698-53 84 -0.119638 hybrid +132_3-7 Q0 MARCO_17_2379624412-23 85 -0.120274 hybrid +132_3-7 Q0 MARCO_19_266580491-2 86 -0.122650 hybrid +132_3-7 Q0 MARCO_48_1188236562-7 87 -0.126841 hybrid +132_3-7 Q0 KILT_669964-11 88 -0.129994 hybrid +132_3-7 Q0 MARCO_19_266412467-38 89 -0.131050 hybrid +132_3-7 Q0 MARCO_19_266473698-12 90 -0.131050 hybrid +132_3-7 Q0 MARCO_19_266473698-31 91 -0.131155 hybrid +132_3-7 Q0 MARCO_18_3113401067-10 92 -0.131233 hybrid +132_3-7 Q0 MARCO_44_1109568676-52 93 -0.134692 hybrid +132_3-7 Q0 MARCO_19_266473698-9 94 -0.143071 hybrid +132_3-7 Q0 MARCO_00_1154001671-88 95 -0.143476 hybrid +132_3-7 Q0 MARCO_19_266473698-25 96 -0.148824 hybrid +132_3-7 Q0 MARCO_19_595830748-4 97 -0.152958 hybrid +132_3-7 Q0 MARCO_42_169548456-2 98 -0.154566 hybrid +132_3-7 Q0 MARCO_19_266412467-7 99 -0.157533 hybrid +132_3-7 Q0 MARCO_22_1645284806-35 100 -0.160095 hybrid +133_1-1 Q0 MARCO_49_408044686-10 1 0.499998 hybrid +133_1-1 Q0 MARCO_49_408044686-9 2 0.404633 hybrid +133_1-1 Q0 MARCO_51_817305147-9 3 0.208408 hybrid +133_1-1 Q0 MARCO_00_252389472-2 4 0.192108 hybrid +133_1-1 Q0 MARCO_21_1436396754-6 5 0.175779 hybrid +133_1-1 Q0 MARCO_30_604425193-12 6 0.158931 hybrid +133_1-1 Q0 MARCO_49_408110023-3 7 0.154807 hybrid +133_1-1 Q0 MARCO_49_408044686-2 8 0.150301 hybrid +133_1-1 Q0 MARCO_49_407767275-10 9 0.143242 hybrid +133_1-1 Q0 MARCO_40_172971301-4 10 0.126524 hybrid +133_1-1 Q0 MARCO_49_407254110-8 11 0.122600 hybrid +133_1-1 Q0 MARCO_52_1207612281-3 12 0.110225 hybrid +133_1-1 Q0 MARCO_49_407866897-10 13 0.091640 hybrid +133_1-1 Q0 MARCO_30_1649787634-4 14 0.089681 hybrid +133_1-1 Q0 MARCO_31_885817404-7 15 0.089181 hybrid +133_1-1 Q0 MARCO_20_481854988-4 16 0.075709 hybrid +133_1-1 Q0 MARCO_49_1694178165-7 17 0.074494 hybrid +133_1-1 Q0 MARCO_20_481854988-5 18 0.069224 hybrid +133_1-1 Q0 MARCO_21_960890277-34 19 0.068643 hybrid +133_1-1 Q0 MARCO_42_257610962-2 20 0.067686 hybrid +133_1-1 Q0 MARCO_47_286039850-4 21 0.066583 hybrid +133_1-1 Q0 MARCO_49_408044686-3 22 0.056435 hybrid +133_1-1 Q0 MARCO_01_801549683-6 23 0.016496 hybrid +133_1-1 Q0 MARCO_52_1207612281-4 24 0.012630 hybrid +133_1-1 Q0 MARCO_49_408044686-22 25 0.003615 hybrid +133_1-1 Q0 MARCO_49_408018463-18 26 0.001809 hybrid +133_1-1 Q0 MARCO_40_170587793-4 27 0.001678 hybrid +133_1-1 Q0 MARCO_30_1649987246-6 28 0.001499 hybrid +133_1-1 Q0 MARCO_28_648185183-4 29 -0.001642 hybrid +133_1-1 Q0 MARCO_38_584727843-5 30 -0.003742 hybrid +133_1-1 Q0 MARCO_54_556986521-21 31 -0.006520 hybrid +133_1-1 Q0 MARCO_49_408110023-4 32 -0.006723 hybrid +133_1-1 Q0 MARCO_49_408018463-5 33 -0.009985 hybrid +133_1-1 Q0 MARCO_38_584727843-6 34 -0.016757 hybrid +133_1-1 Q0 MARCO_30_604405806-3 35 -0.017021 hybrid +133_1-1 Q0 MARCO_30_1650070482-11 36 -0.017700 hybrid +133_1-1 Q0 MARCO_49_408018463-7 37 -0.021919 hybrid +133_1-1 Q0 MARCO_31_885817404-6 38 -0.026232 hybrid +133_1-1 Q0 MARCO_14_129523741-9 39 -0.026265 hybrid +133_1-1 Q0 MARCO_30_1649787634-8 40 -0.029928 hybrid +133_1-1 Q0 MARCO_52_1378433154-6 41 -0.036978 hybrid +133_1-1 Q0 MARCO_49_408110023-6 42 -0.037311 hybrid +133_1-1 Q0 MARCO_21_959969754-7 43 -0.042284 hybrid +133_1-1 Q0 MARCO_40_170872468-7 44 -0.042757 hybrid +133_1-1 Q0 MARCO_49_578545621-3 45 -0.044249 hybrid +133_1-1 Q0 MARCO_49_408018463-2 46 -0.045033 hybrid +133_1-1 Q0 MARCO_28_434237199-3 47 -0.053232 hybrid +133_1-1 Q0 MARCO_21_963020852-13 48 -0.059550 hybrid +133_1-1 Q0 MARCO_41_1847614301-3 49 -0.061398 hybrid +133_1-1 Q0 MARCO_49_407212670-4 50 -0.061597 hybrid +133_1-1 Q0 MARCO_54_1595657427-18 51 -0.062932 hybrid +133_1-1 Q0 MARCO_00_1584661169-34 52 -0.063491 hybrid +133_1-1 Q0 MARCO_40_171636629-5 53 -0.063523 hybrid +133_1-1 Q0 MARCO_43_747853505-8 54 -0.064157 hybrid +133_1-1 Q0 MARCO_49_408018463-8 55 -0.066103 hybrid +133_1-1 Q0 MARCO_00_1041612032-1 56 -0.067053 hybrid +133_1-1 Q0 MARCO_47_286039850-6 57 -0.067255 hybrid +133_1-1 Q0 MARCO_49_1694178165-5 58 -0.067288 hybrid +133_1-1 Q0 MARCO_30_1649787634-5 59 -0.068375 hybrid +133_1-1 Q0 MARCO_48_288189352-2 60 -0.069512 hybrid +133_1-1 Q0 MARCO_20_1587212315-5 61 -0.072199 hybrid +133_1-1 Q0 MARCO_28_647962770-24 62 -0.073368 hybrid +133_1-1 Q0 MARCO_21_963020852-32 63 -0.076065 hybrid +133_1-1 Q0 MARCO_28_647962770-11 64 -0.076143 hybrid +133_1-1 Q0 MARCO_20_481854988-2 65 -0.079865 hybrid +133_1-1 Q0 MARCO_30_1649987246-8 66 -0.079934 hybrid +133_1-1 Q0 MARCO_49_407381005-1 67 -0.081684 hybrid +133_1-1 Q0 MARCO_00_1584661169-39 68 -0.081821 hybrid +133_1-1 Q0 MARCO_00_1584661169-37 69 -0.086517 hybrid +133_1-1 Q0 MARCO_49_408044686-15 70 -0.090487 hybrid +133_1-1 Q0 MARCO_49_407717175-12 71 -0.090637 hybrid +133_1-1 Q0 MARCO_32_1011749359-4 72 -0.091953 hybrid +133_1-1 Q0 MARCO_30_1649987246-3 73 -0.092214 hybrid +133_1-1 Q0 MARCO_49_408044686-21 74 -0.093037 hybrid +133_1-1 Q0 MARCO_49_407354142-6 75 -0.093132 hybrid +133_1-1 Q0 MARCO_49_407717175-17 76 -0.096952 hybrid +133_1-1 Q0 MARCO_49_408018463-14 77 -0.103440 hybrid +133_1-1 Q0 MARCO_49_407717175-3 78 -0.103646 hybrid +133_1-1 Q0 MARCO_49_408044686-11 79 -0.105474 hybrid +133_1-1 Q0 MARCO_49_407254110-2 80 -0.105840 hybrid +133_1-1 Q0 MARCO_30_1649787634-6 81 -0.107309 hybrid +133_1-1 Q0 MARCO_38_615148680-7 82 -0.107962 hybrid +133_1-1 Q0 MARCO_47_286039850-5 83 -0.108680 hybrid +133_1-1 Q0 MARCO_06_1653480130-9 84 -0.110117 hybrid +133_1-1 Q0 MARCO_49_407767275-15 85 -0.110362 hybrid +133_1-1 Q0 MARCO_49_408342255-6 86 -0.112576 hybrid +133_1-1 Q0 MARCO_00_1584661169-44 87 -0.114140 hybrid +133_1-1 Q0 MARCO_38_584751021-1 88 -0.116445 hybrid +133_1-1 Q0 MARCO_54_557088861-7 89 -0.116598 hybrid +133_1-1 Q0 MARCO_44_37582617-2 90 -0.118466 hybrid +133_1-1 Q0 MARCO_49_408044686-6 91 -0.120291 hybrid +133_1-1 Q0 MARCO_49_407212670-8 92 -0.124582 hybrid +133_1-1 Q0 MARCO_49_408018463-1 93 -0.124934 hybrid +133_1-1 Q0 MARCO_49_407212670-2 94 -0.125153 hybrid +133_1-1 Q0 MARCO_25_521112171-7 95 -0.126773 hybrid +133_1-1 Q0 MARCO_55_70900785-4 96 -0.127419 hybrid +133_1-1 Q0 MARCO_47_976691866-19 97 -0.128242 hybrid +133_1-1 Q0 MARCO_52_1207612281-2 98 -0.129708 hybrid +133_1-1 Q0 MARCO_49_408018463-20 99 -0.129858 hybrid +133_1-1 Q0 MARCO_49_408044686-18 100 -0.131641 hybrid +133_1-3 Q0 MARCO_41_1847614301-2 1 0.499999 hybrid +133_1-3 Q0 MARCO_41_2129778814-11 2 0.285316 hybrid +133_1-3 Q0 MARCO_29_31280170-2 3 0.238186 hybrid +133_1-3 Q0 MARCO_13_141730204-4 4 0.220088 hybrid +133_1-3 Q0 MARCO_23_895409741-1 5 0.216160 hybrid +133_1-3 Q0 MARCO_21_963020852-33 6 0.212759 hybrid +133_1-3 Q0 MARCO_25_1167948093-1 7 0.178388 hybrid +133_1-3 Q0 MARCO_31_903812770-6 8 0.157541 hybrid +133_1-3 Q0 MARCO_52_361046997-2 9 0.126135 hybrid +133_1-3 Q0 MARCO_42_257610962-2 10 0.116144 hybrid +133_1-3 Q0 MARCO_41_1847614301-3 11 0.109224 hybrid +133_1-3 Q0 MARCO_31_903812770-5 12 0.091890 hybrid +133_1-3 Q0 MARCO_14_1422461002-1 13 0.086076 hybrid +133_1-3 Q0 MARCO_41_2129778814-10 14 0.069444 hybrid +133_1-3 Q0 MARCO_51_817072979-2 15 0.068792 hybrid +133_1-3 Q0 MARCO_24_1307660-1 16 0.063739 hybrid +133_1-3 Q0 MARCO_11_777295771-3 17 0.055159 hybrid +133_1-3 Q0 MARCO_42_1675940449-1 18 0.049012 hybrid +133_1-3 Q0 MARCO_43_747853505-7 19 0.033850 hybrid +133_1-3 Q0 MARCO_41_2129778814-12 20 0.030676 hybrid +133_1-3 Q0 MARCO_51_817080609-5 21 0.019713 hybrid +133_1-3 Q0 MARCO_41_1847614301-1 22 0.019355 hybrid +133_1-3 Q0 MARCO_41_2129778814-3 23 0.017401 hybrid +133_1-3 Q0 MARCO_32_1018872214-1 24 0.015990 hybrid +133_1-3 Q0 MARCO_40_617356949-13 25 0.007779 hybrid +133_1-3 Q0 MARCO_41_2129778814-5 26 0.005061 hybrid +133_1-3 Q0 MARCO_55_676401627-5 27 -0.006576 hybrid +133_1-3 Q0 MARCO_14_1422461002-4 28 -0.007290 hybrid +133_1-3 Q0 MARCO_29_798386633-6 29 -0.022501 hybrid +133_1-3 Q0 MARCO_36_1000989002-5 30 -0.024881 hybrid +133_1-3 Q0 MARCO_47_1281866164-5 31 -0.027571 hybrid +133_1-3 Q0 MARCO_37_838144198-7 32 -0.031101 hybrid +133_1-3 Q0 MARCO_36_1000970916-1 33 -0.035908 hybrid +133_1-3 Q0 MARCO_56_1317921108-1 34 -0.037587 hybrid +133_1-3 Q0 MARCO_28_172819740-4 35 -0.040362 hybrid +133_1-3 Q0 MARCO_46_12563667-3 36 -0.047228 hybrid +133_1-3 Q0 MARCO_41_2129778814-9 37 -0.049227 hybrid +133_1-3 Q0 MARCO_51_817080609-8 38 -0.050451 hybrid +133_1-3 Q0 MARCO_41_2128564310-1 39 -0.053107 hybrid +133_1-3 Q0 MARCO_41_2128254790-6 40 -0.060136 hybrid +133_1-3 Q0 MARCO_52_1378433154-6 41 -0.060240 hybrid +133_1-3 Q0 MARCO_14_1422461002-2 42 -0.061186 hybrid +133_1-3 Q0 MARCO_47_1281866164-7 43 -0.061662 hybrid +133_1-3 Q0 MARCO_47_1281866164-9 44 -0.061668 hybrid +133_1-3 Q0 MARCO_07_622353478-3 45 -0.069198 hybrid +133_1-3 Q0 MARCO_40_172971301-4 46 -0.069310 hybrid +133_1-3 Q0 MARCO_40_1270581781-2 47 -0.069915 hybrid +133_1-3 Q0 MARCO_51_817072979-4 48 -0.070329 hybrid +133_1-3 Q0 MARCO_46_12087807-2 49 -0.071438 hybrid +133_1-3 Q0 MARCO_42_1090416617-1 50 -0.072255 hybrid +133_1-3 Q0 MARCO_40_617356949-11 51 -0.076323 hybrid +133_1-3 Q0 MARCO_55_676401627-4 52 -0.083481 hybrid +133_1-3 Q0 MARCO_41_1847663807-5 53 -0.084200 hybrid +133_1-3 Q0 MARCO_52_361046997-1 54 -0.088822 hybrid +133_1-3 Q0 MARCO_37_838144198-1 55 -0.090252 hybrid +133_1-3 Q0 MARCO_31_903812770-9 56 -0.091915 hybrid +133_1-3 Q0 MARCO_42_1090416617-3 57 -0.095409 hybrid +133_1-3 Q0 MARCO_12_1861101487-4 58 -0.095619 hybrid +133_1-3 Q0 MARCO_36_1000800760-1 59 -0.096064 hybrid +133_1-3 Q0 MARCO_12_1861101487-3 60 -0.100324 hybrid +133_1-3 Q0 MARCO_14_1143562278-4 61 -0.101108 hybrid +133_1-3 Q0 MARCO_31_300004760-1 62 -0.104795 hybrid +133_1-3 Q0 MARCO_29_28269851-1 63 -0.105240 hybrid +133_1-3 Q0 MARCO_31_903812770-2 64 -0.106785 hybrid +133_1-3 Q0 MARCO_25_1430323980-2 65 -0.107692 hybrid +133_1-3 Q0 MARCO_23_893813683-13 66 -0.107737 hybrid +133_1-3 Q0 MARCO_47_1281866164-3 67 -0.111362 hybrid +133_1-3 Q0 MARCO_50_2156264634-26 68 -0.116065 hybrid +133_1-3 Q0 MARCO_23_895409741-4 69 -0.117513 hybrid +133_1-3 Q0 MARCO_41_2128355521-1 70 -0.119987 hybrid +133_1-3 Q0 MARCO_40_172971301-7 71 -0.124472 hybrid +133_1-3 Q0 MARCO_31_941424721-8 72 -0.125152 hybrid +133_1-3 Q0 MARCO_24_1723652218-4 73 -0.125561 hybrid +133_1-3 Q0 MARCO_47_1281866164-4 74 -0.127523 hybrid +133_1-3 Q0 MARCO_51_817305147-8 75 -0.127901 hybrid +133_1-3 Q0 MARCO_36_1000842521-1 76 -0.127904 hybrid +133_1-3 Q0 MARCO_47_975313921-1 77 -0.130939 hybrid +133_1-3 Q0 MARCO_52_1378433154-7 78 -0.131997 hybrid +133_1-3 Q0 MARCO_36_1000989002-1 79 -0.136700 hybrid +133_1-3 Q0 MARCO_34_1326906757-6 80 -0.138251 hybrid +133_1-3 Q0 MARCO_27_1108903667-5 81 -0.139866 hybrid +133_1-3 Q0 MARCO_53_570266047-3 82 -0.142276 hybrid +133_1-3 Q0 MARCO_40_172971301-5 83 -0.142380 hybrid +133_1-3 Q0 MARCO_42_257610962-4 84 -0.142668 hybrid +133_1-3 Q0 MARCO_47_978613974-15 85 -0.143603 hybrid +133_1-3 Q0 MARCO_33_176858642-30 86 -0.145893 hybrid +133_1-3 Q0 MARCO_32_464927823-7 87 -0.146086 hybrid +133_1-3 Q0 MARCO_32_374570223-2 88 -0.146808 hybrid +133_1-3 Q0 MARCO_45_654124161-26 89 -0.149616 hybrid +133_1-3 Q0 MARCO_55_99117985-9 90 -0.149806 hybrid +133_1-3 Q0 MARCO_23_893879807-13 91 -0.149848 hybrid +133_1-3 Q0 MARCO_06_1653480130-12 92 -0.150352 hybrid +133_1-3 Q0 MARCO_00_764802191-1 93 -0.150856 hybrid +133_1-3 Q0 MARCO_52_1378433154-1 94 -0.153852 hybrid +133_1-3 Q0 MARCO_31_903812770-8 95 -0.154557 hybrid +133_1-3 Q0 MARCO_11_777295771-10 96 -0.156029 hybrid +133_1-3 Q0 MARCO_12_1861739069-7 97 -0.156161 hybrid +133_1-3 Q0 MARCO_25_1429639756-2 98 -0.158577 hybrid +133_1-3 Q0 MARCO_52_1186887800-4 99 -0.160917 hybrid +133_1-3 Q0 MARCO_25_1167948093-2 100 -0.161525 hybrid +133_1-5 Q0 MARCO_49_408018463-5 1 0.500000 hybrid +133_1-5 Q0 MARCO_49_408044686-9 2 0.414146 hybrid +133_1-5 Q0 MARCO_49_408044686-10 3 0.320674 hybrid +133_1-5 Q0 MARCO_24_1132484407-4 4 0.290553 hybrid +133_1-5 Q0 MARCO_01_801549683-6 5 0.284211 hybrid +133_1-5 Q0 MARCO_30_604425193-12 6 0.276523 hybrid +133_1-5 Q0 MARCO_40_814477356-7 7 0.273879 hybrid +133_1-5 Q0 MARCO_49_1694178165-5 8 0.257134 hybrid +133_1-5 Q0 MARCO_49_408044686-3 9 0.240135 hybrid +133_1-5 Q0 MARCO_49_407767275-10 10 0.238394 hybrid +133_1-5 Q0 MARCO_49_408044686-19 11 0.214832 hybrid +133_1-5 Q0 MARCO_42_1654409183-7 12 0.196973 hybrid +133_1-5 Q0 MARCO_30_1649787634-4 13 0.184803 hybrid +133_1-5 Q0 MARCO_39_421991508-3 14 0.179596 hybrid +133_1-5 Q0 MARCO_31_1609380767-2 15 0.163965 hybrid +133_1-5 Q0 MARCO_23_895825640-4 16 0.161473 hybrid +133_1-5 Q0 MARCO_49_1694178165-7 17 0.159515 hybrid +133_1-5 Q0 MARCO_49_408018463-1 18 0.147464 hybrid +133_1-5 Q0 MARCO_43_706720352-23 19 0.142084 hybrid +133_1-5 Q0 MARCO_49_408044686-11 20 0.126545 hybrid +133_1-5 Q0 MARCO_30_1805421348-24 21 0.111179 hybrid +133_1-5 Q0 MARCO_49_407717175-3 22 0.101631 hybrid +133_1-5 Q0 MARCO_42_1758500388-13 23 0.101577 hybrid +133_1-5 Q0 MARCO_30_454995687-4 24 0.101063 hybrid +133_1-5 Q0 MARCO_49_408018463-13 25 0.096424 hybrid +133_1-5 Q0 MARCO_41_2111521935-5 26 0.094937 hybrid +133_1-5 Q0 MARCO_49_408018463-7 27 0.079079 hybrid +133_1-5 Q0 MARCO_14_1432458050-1 28 0.077614 hybrid +133_1-5 Q0 MARCO_49_407381005-1 29 0.076825 hybrid +133_1-5 Q0 MARCO_49_408110023-3 30 0.059458 hybrid +133_1-5 Q0 MARCO_40_735069019-16 31 0.058047 hybrid +133_1-5 Q0 MARCO_32_620829963-8 32 0.039194 hybrid +133_1-5 Q0 MARCO_49_408044686-4 33 0.036187 hybrid +133_1-5 Q0 MARCO_49_407767275-8 34 0.033884 hybrid +133_1-5 Q0 MARCO_21_1045774775-3 35 0.028034 hybrid +133_1-5 Q0 MARCO_01_801549683-3 36 0.027391 hybrid +133_1-5 Q0 MARCO_49_224255508-9 37 0.013679 hybrid +133_1-5 Q0 MARCO_49_407372305-1 38 0.012879 hybrid +133_1-5 Q0 MARCO_49_408044686-1 39 0.008316 hybrid +133_1-5 Q0 MARCO_49_408044686-2 40 0.008051 hybrid +133_1-5 Q0 MARCO_49_408044686-15 41 0.006580 hybrid +133_1-5 Q0 MARCO_49_408342255-6 42 0.005693 hybrid +133_1-5 Q0 MARCO_49_1853476734-7 43 0.001536 hybrid +133_1-5 Q0 MARCO_28_907052256-7 44 -0.001525 hybrid +133_1-5 Q0 MARCO_13_594871201-7 45 -0.002514 hybrid +133_1-5 Q0 MARCO_30_1649787634-2 46 -0.014166 hybrid +133_1-5 Q0 MARCO_32_1519829898-14 47 -0.026417 hybrid +133_1-5 Q0 MARCO_38_614331107-5 48 -0.031446 hybrid +133_1-5 Q0 MARCO_49_407866897-10 49 -0.031873 hybrid +133_1-5 Q0 MARCO_28_538338869-4 50 -0.032322 hybrid +133_1-5 Q0 MARCO_41_324559335-14 51 -0.032343 hybrid +133_1-5 Q0 MARCO_06_1899277084-15 52 -0.034057 hybrid +133_1-5 Q0 MARCO_49_407254110-8 53 -0.036917 hybrid +133_1-5 Q0 MARCO_14_1623333751-7 54 -0.043232 hybrid +133_1-5 Q0 MARCO_28_338361249-4 55 -0.044016 hybrid +133_1-5 Q0 MARCO_49_408044686-21 56 -0.044135 hybrid +133_1-5 Q0 MARCO_49_408018463-2 57 -0.047509 hybrid +133_1-5 Q0 MARCO_49_407767275-15 58 -0.048688 hybrid +133_1-5 Q0 MARCO_38_614331107-7 59 -0.051618 hybrid +133_1-5 Q0 MARCO_40_814515359-21 60 -0.053603 hybrid +133_1-5 Q0 MARCO_28_647962770-11 61 -0.055133 hybrid +133_1-5 Q0 MARCO_57_1225982488-2 62 -0.058355 hybrid +133_1-5 Q0 MARCO_01_801549683-8 63 -0.058723 hybrid +133_1-5 Q0 MARCO_41_324559335-2 64 -0.059680 hybrid +133_1-5 Q0 MARCO_30_604405806-3 65 -0.065497 hybrid +133_1-5 Q0 MARCO_59_1027367495-2 66 -0.066649 hybrid +133_1-5 Q0 MARCO_00_1584725078-43 67 -0.067449 hybrid +133_1-5 Q0 MARCO_40_814951402-8 68 -0.069417 hybrid +133_1-5 Q0 MARCO_49_407767275-12 69 -0.069671 hybrid +133_1-5 Q0 MARCO_30_1649787634-5 70 -0.070266 hybrid +133_1-5 Q0 MARCO_38_613843009-15 71 -0.070904 hybrid +133_1-5 Q0 MARCO_10_1128108917-14 72 -0.074040 hybrid +133_1-5 Q0 MARCO_48_374373740-4 73 -0.074943 hybrid +133_1-5 Q0 MARCO_49_408519984-2 74 -0.078052 hybrid +133_1-5 Q0 MARCO_21_1436396754-6 75 -0.078284 hybrid +133_1-5 Q0 MARCO_43_187656979-3 76 -0.079550 hybrid +133_1-5 Q0 MARCO_38_615269605-6 77 -0.085459 hybrid +133_1-5 Q0 MARCO_32_463976368-10 78 -0.086735 hybrid +133_1-5 Q0 MARCO_32_117454797-2 79 -0.087903 hybrid +133_1-5 Q0 MARCO_41_2112549672-4 80 -0.090590 hybrid +133_1-5 Q0 MARCO_49_407767275-9 81 -0.095386 hybrid +133_1-5 Q0 MARCO_49_1694178165-16 82 -0.095808 hybrid +133_1-5 Q0 MARCO_30_454766626-1 83 -0.097203 hybrid +133_1-5 Q0 MARCO_40_170872468-2 84 -0.101560 hybrid +133_1-5 Q0 MARCO_00_762815105-7 85 -0.102463 hybrid +133_1-5 Q0 MARCO_28_647962770-24 86 -0.106308 hybrid +133_1-5 Q0 MARCO_49_407866897-19 87 -0.107508 hybrid +133_1-5 Q0 MARCO_32_49581245-9 88 -0.109481 hybrid +133_1-5 Q0 MARCO_31_1321802643-13 89 -0.114542 hybrid +133_1-5 Q0 MARCO_14_1425091873-2 90 -0.115558 hybrid +133_1-5 Q0 MARCO_21_1045997737-6 91 -0.115602 hybrid +133_1-5 Q0 MARCO_49_407767275-5 92 -0.118213 hybrid +133_1-5 Q0 MARCO_01_1019206492-19 93 -0.119154 hybrid +133_1-5 Q0 MARCO_37_170415933-3 94 -0.121771 hybrid +133_1-5 Q0 MARCO_01_1019206492-16 95 -0.121857 hybrid +133_1-5 Q0 MARCO_07_478565985-3 96 -0.122014 hybrid +133_1-5 Q0 MARCO_05_518090124-10 97 -0.124615 hybrid +133_1-5 Q0 MARCO_12_1451397436-2 98 -0.125128 hybrid +133_1-5 Q0 MARCO_58_879279096-2 99 -0.125642 hybrid +133_1-5 Q0 MARCO_44_37744056-2 100 -0.131995 hybrid +133_1-7 Q0 MARCO_07_1052430134-12 1 0.500001 hybrid +133_1-7 Q0 MARCO_54_1473906903-8 2 0.399003 hybrid +133_1-7 Q0 MARCO_11_875587401-8 3 0.388198 hybrid +133_1-7 Q0 MARCO_25_521623020-10 4 0.334098 hybrid +133_1-7 Q0 MARCO_33_176858642-8 5 0.319449 hybrid +133_1-7 Q0 MARCO_25_521623020-7 6 0.305958 hybrid +133_1-7 Q0 MARCO_32_1494712084-2 7 0.295821 hybrid +133_1-7 Q0 MARCO_40_170855066-3 8 0.277734 hybrid +133_1-7 Q0 MARCO_30_458048779-4 9 0.268937 hybrid +133_1-7 Q0 MARCO_25_521623020-6 10 0.263952 hybrid +133_1-7 Q0 MARCO_39_421991508-2 11 0.251196 hybrid +133_1-7 Q0 MARCO_32_1494757487-9 12 0.242483 hybrid +133_1-7 Q0 MARCO_32_1494757487-7 13 0.242483 hybrid +133_1-7 Q0 MARCO_57_478571488-17 14 0.233480 hybrid +133_1-7 Q0 MARCO_32_1494712084-1 15 0.212983 hybrid +133_1-7 Q0 MARCO_24_1189965-7 16 0.196541 hybrid +133_1-7 Q0 MARCO_40_170855066-5 17 0.177700 hybrid +133_1-7 Q0 MARCO_25_521623020-2 18 0.177099 hybrid +133_1-7 Q0 MARCO_20_626826480-1 19 0.169703 hybrid +133_1-7 Q0 MARCO_57_478571488-20 20 0.164636 hybrid +133_1-7 Q0 MARCO_47_975896139-8 21 0.159084 hybrid +133_1-7 Q0 MARCO_04_181834998-3 22 0.157688 hybrid +133_1-7 Q0 MARCO_39_421991508-3 23 0.154217 hybrid +133_1-7 Q0 MARCO_59_404372885-3 24 0.143368 hybrid +133_1-7 Q0 MARCO_30_458048779-5 25 0.142421 hybrid +133_1-7 Q0 MARCO_37_1293703047-6 26 0.142214 hybrid +133_1-7 Q0 MARCO_32_1494731102-12 27 0.131389 hybrid +133_1-7 Q0 MARCO_05_1760249661-5 28 0.125400 hybrid +133_1-7 Q0 MARCO_47_975896139-9 29 0.106347 hybrid +133_1-7 Q0 MARCO_57_486961949-16 30 0.099594 hybrid +133_1-7 Q0 MARCO_25_521623020-3 31 0.093810 hybrid +133_1-7 Q0 MARCO_50_637650336-8 32 0.093362 hybrid +133_1-7 Q0 MARCO_30_457814917-3 33 0.091429 hybrid +133_1-7 Q0 MARCO_28_334658990-36 34 0.086870 hybrid +133_1-7 Q0 MARCO_47_975864664-3 35 0.085795 hybrid +133_1-7 Q0 MARCO_05_1020488490-8 36 0.081740 hybrid +133_1-7 Q0 MARCO_54_1473098183-5 37 0.078896 hybrid +133_1-7 Q0 MARCO_32_1524225579-9 38 0.074646 hybrid +133_1-7 Q0 MARCO_36_568307564-1 39 0.071431 hybrid +133_1-7 Q0 MARCO_57_478571488-24 40 0.060556 hybrid +133_1-7 Q0 MARCO_40_170855066-4 41 0.058326 hybrid +133_1-7 Q0 MARCO_28_431187829-7 42 0.048850 hybrid +133_1-7 Q0 MARCO_35_402951314-23 43 0.045320 hybrid +133_1-7 Q0 MARCO_42_940922469-4 44 0.033721 hybrid +133_1-7 Q0 MARCO_28_334658990-34 45 0.026637 hybrid +133_1-7 Q0 MARCO_32_1494731102-2 46 0.022657 hybrid +133_1-7 Q0 MARCO_01_1871370715-3 47 0.020169 hybrid +133_1-7 Q0 MARCO_50_637650336-6 48 0.013643 hybrid +133_1-7 Q0 MARCO_20_626813883-1 49 0.010980 hybrid +133_1-7 Q0 MARCO_47_975896139-11 50 0.009282 hybrid +133_1-7 Q0 MARCO_47_975896139-12 51 0.008209 hybrid +133_1-7 Q0 MARCO_21_1040240025-5 52 0.008183 hybrid +133_1-7 Q0 MARCO_32_1494731102-5 53 0.006802 hybrid +133_1-7 Q0 MARCO_57_486961949-15 54 -0.001073 hybrid +133_1-7 Q0 MARCO_32_1524225579-5 55 -0.014628 hybrid +133_1-7 Q0 MARCO_20_626768385-1 56 -0.017073 hybrid +133_1-7 Q0 MARCO_44_1111274332-4 57 -0.019867 hybrid +133_1-7 Q0 MARCO_32_1285610141-2 58 -0.022901 hybrid +133_1-7 Q0 MARCO_32_1524225579-7 59 -0.028027 hybrid +133_1-7 Q0 MARCO_25_521623020-9 60 -0.032782 hybrid +133_1-7 Q0 MARCO_40_148056017-8 61 -0.044004 hybrid +133_1-7 Q0 MARCO_20_626838020-1 62 -0.046969 hybrid +133_1-7 Q0 MARCO_32_1524225579-4 63 -0.048094 hybrid +133_1-7 Q0 MARCO_32_1524225579-6 64 -0.048094 hybrid +133_1-7 Q0 MARCO_32_1524225579-8 65 -0.048094 hybrid +133_1-7 Q0 MARCO_47_968825733-1 66 -0.050300 hybrid +133_1-7 Q0 MARCO_25_521623020-4 67 -0.059193 hybrid +133_1-7 Q0 MARCO_20_626780943-1 68 -0.059969 hybrid +133_1-7 Q0 MARCO_54_177645165-1 69 -0.063030 hybrid +133_1-7 Q0 MARCO_32_115742717-4 70 -0.064498 hybrid +133_1-7 Q0 MARCO_35_402637505-3 71 -0.068385 hybrid +133_1-7 Q0 MARCO_39_417226231-5 72 -0.070867 hybrid +133_1-7 Q0 MARCO_05_1020488490-2 73 -0.078920 hybrid +133_1-7 Q0 MARCO_57_478571488-11 74 -0.079673 hybrid +133_1-7 Q0 MARCO_24_1250100-2 75 -0.084170 hybrid +133_1-7 Q0 MARCO_40_171206797-3 76 -0.085251 hybrid +133_1-7 Q0 MARCO_44_312200205-1 77 -0.085542 hybrid +133_1-7 Q0 MARCO_28_334658990-14 78 -0.086333 hybrid +133_1-7 Q0 MARCO_56_813849526-2 79 -0.089821 hybrid +133_1-7 Q0 MARCO_30_458048779-3 80 -0.093115 hybrid +133_1-7 Q0 MARCO_23_900581520-2 81 -0.093330 hybrid +133_1-7 Q0 MARCO_28_334658990-39 82 -0.098336 hybrid +133_1-7 Q0 MARCO_35_402637505-4 83 -0.098670 hybrid +133_1-7 Q0 MARCO_09_350126129-20 84 -0.103629 hybrid +133_1-7 Q0 MARCO_09_350126129-45 85 -0.110711 hybrid +133_1-7 Q0 MARCO_54_1473906903-19 86 -0.111478 hybrid +133_1-7 Q0 MARCO_41_2110669088-10 87 -0.112394 hybrid +133_1-7 Q0 MARCO_32_1285610141-1 88 -0.113720 hybrid +133_1-7 Q0 MARCO_28_334658990-35 89 -0.114964 hybrid +133_1-7 Q0 MARCO_50_637650336-9 90 -0.115946 hybrid +133_1-7 Q0 MARCO_28_334658990-2 91 -0.120545 hybrid +133_1-7 Q0 MARCO_32_1494731102-10 92 -0.121691 hybrid +133_1-7 Q0 MARCO_04_324736871-8 93 -0.123932 hybrid +133_1-7 Q0 MARCO_37_171995323-2 94 -0.127357 hybrid +133_1-7 Q0 MARCO_46_1272194519-2 95 -0.128322 hybrid +133_1-7 Q0 MARCO_32_1493629558-3 96 -0.129423 hybrid +133_1-7 Q0 MARCO_51_118328558-5 97 -0.130307 hybrid +133_1-7 Q0 MARCO_19_2651491237-4 98 -0.133205 hybrid +133_1-7 Q0 MARCO_57_478571488-1 99 -0.135737 hybrid +133_1-7 Q0 MARCO_57_478571488-3 100 -0.135743 hybrid +133_2-1 Q0 MARCO_23_938105672-34 1 0.500003 hybrid +133_2-1 Q0 MARCO_45_202277106-10 2 0.455180 hybrid +133_2-1 Q0 MARCO_57_868760995-3 3 0.412367 hybrid +133_2-1 Q0 MARCO_21_1045645298-6 4 0.397906 hybrid +133_2-1 Q0 MARCO_28_342063026-2 5 0.333924 hybrid +133_2-1 Q0 MARCO_14_1426172211-6 6 0.332553 hybrid +133_2-1 Q0 MARCO_42_1889393375-14 7 0.319997 hybrid +133_2-1 Q0 MARCO_29_789520551-19 8 0.314364 hybrid +133_2-1 Q0 MARCO_27_216298804-4 9 0.288027 hybrid +133_2-1 Q0 MARCO_37_836630788-17 10 0.284635 hybrid +133_2-1 Q0 MARCO_53_731621760-3 11 0.279803 hybrid +133_2-1 Q0 MARCO_56_501029797-5 12 0.255347 hybrid +133_2-1 Q0 MARCO_47_1281188468-14 13 0.254482 hybrid +133_2-1 Q0 MARCO_29_240960645-2 14 0.247176 hybrid +133_2-1 Q0 MARCO_29_240879615-2 15 0.247176 hybrid +133_2-1 Q0 MARCO_29_240865401-2 16 0.247176 hybrid +133_2-1 Q0 MARCO_29_240893868-2 17 0.247176 hybrid +133_2-1 Q0 MARCO_29_240885325-2 18 0.247176 hybrid +133_2-1 Q0 MARCO_29_240994830-2 19 0.247176 hybrid +133_2-1 Q0 MARCO_29_241002311-2 20 0.247147 hybrid +133_2-1 Q0 MARCO_21_1435489700-2 21 0.217581 hybrid +133_2-1 Q0 MARCO_44_605664172-12 22 0.174343 hybrid +133_2-1 Q0 MARCO_29_776878896-1 23 0.164290 hybrid +133_2-1 Q0 MARCO_11_711490150-8 24 0.149586 hybrid +133_2-1 Q0 MARCO_43_977048460-4 25 0.140799 hybrid +133_2-1 Q0 MARCO_22_1121298839-2 26 0.120571 hybrid +133_2-1 Q0 MARCO_14_1423713789-1 27 0.108828 hybrid +133_2-1 Q0 MARCO_21_1435489700-7 28 0.105582 hybrid +133_2-1 Q0 MARCO_57_868356477-2 29 0.078303 hybrid +133_2-1 Q0 MARCO_45_1248075941-2 30 0.077758 hybrid +133_2-1 Q0 MARCO_37_833369189-3 31 0.074604 hybrid +133_2-1 Q0 MARCO_36_383149371-3 32 0.068280 hybrid +133_2-1 Q0 MARCO_45_1263586549-2 33 0.066125 hybrid +133_2-1 Q0 MARCO_55_73834164-1 34 0.065364 hybrid +133_2-1 Q0 MARCO_13_432922664-3 35 0.065184 hybrid +133_2-1 Q0 MARCO_06_1264305390-189 36 0.055236 hybrid +133_2-1 Q0 MARCO_25_1408794284-4 37 0.040014 hybrid +133_2-1 Q0 MARCO_06_1166203891-55 38 0.039137 hybrid +133_2-1 Q0 MARCO_28_539216453-4 39 0.029688 hybrid +133_2-1 Q0 MARCO_57_870538321-5 40 0.025211 hybrid +133_2-1 Q0 MARCO_44_477659878-3 41 0.017074 hybrid +133_2-1 Q0 MARCO_37_169574387-3 42 0.015088 hybrid +133_2-1 Q0 MARCO_59_772291725-8 43 0.011586 hybrid +133_2-1 Q0 MARCO_44_310683367-2 44 0.003473 hybrid +133_2-1 Q0 MARCO_35_424222087-1 45 0.001324 hybrid +133_2-1 Q0 MARCO_44_605664172-5 46 -0.001928 hybrid +133_2-1 Q0 MARCO_28_987132090-1 47 -0.005558 hybrid +133_2-1 Q0 MARCO_37_172636373-13 48 -0.008624 hybrid +133_2-1 Q0 MARCO_52_1182367217-3 49 -0.009153 hybrid +133_2-1 Q0 MARCO_12_1861263060-5 50 -0.010001 hybrid +133_2-1 Q0 MARCO_40_738609004-8 51 -0.010837 hybrid +133_2-1 Q0 MARCO_23_29612823-7 52 -0.012556 hybrid +133_2-1 Q0 MARCO_44_1856983307-4 53 -0.016470 hybrid +133_2-1 Q0 MARCO_37_172467697-5 54 -0.020112 hybrid +133_2-1 Q0 MARCO_40_174836733-4 55 -0.022063 hybrid +133_2-1 Q0 MARCO_44_309372740-2 56 -0.027760 hybrid +133_2-1 Q0 MARCO_27_1206600074-6 57 -0.027911 hybrid +133_2-1 Q0 MARCO_38_1581665959-6 58 -0.029607 hybrid +133_2-1 Q0 MARCO_43_243574726-3 59 -0.031477 hybrid +133_2-1 Q0 MARCO_47_1281188468-13 60 -0.032546 hybrid +133_2-1 Q0 MARCO_29_240922707-8 61 -0.035943 hybrid +133_2-1 Q0 MARCO_57_1975754607-13 62 -0.036251 hybrid +133_2-1 Q0 MARCO_46_119413157-1 63 -0.040821 hybrid +133_2-1 Q0 MARCO_53_731621760-2 64 -0.046501 hybrid +133_2-1 Q0 MARCO_57_867952469-3 65 -0.048151 hybrid +133_2-1 Q0 MARCO_23_900165168-1 66 -0.052460 hybrid +133_2-1 Q0 MARCO_27_552235782-2 67 -0.052977 hybrid +133_2-1 Q0 MARCO_02_361151865-6 68 -0.055346 hybrid +133_2-1 Q0 MARCO_47_1281259245-17 69 -0.059156 hybrid +133_2-1 Q0 MARCO_50_179933945-15 70 -0.059417 hybrid +133_2-1 Q0 MARCO_46_437161609-5 71 -0.062972 hybrid +133_2-1 Q0 MARCO_29_240966576-1 72 -0.066421 hybrid +133_2-1 Q0 MARCO_31_1324698321-5 73 -0.069522 hybrid +133_2-1 Q0 MARCO_06_1264305390-98 74 -0.072107 hybrid +133_2-1 Q0 MARCO_35_136212939-1 75 -0.072368 hybrid +133_2-1 Q0 MARCO_50_2766717726-15 76 -0.072473 hybrid +133_2-1 Q0 MARCO_13_544899660-1 77 -0.077125 hybrid +133_2-1 Q0 MARCO_44_2035792359-2 78 -0.078141 hybrid +133_2-1 Q0 MARCO_47_1308426119-6 79 -0.079488 hybrid +133_2-1 Q0 MARCO_39_260610569-3 80 -0.081219 hybrid +133_2-1 Q0 MARCO_52_1145875348-2 81 -0.085075 hybrid +133_2-1 Q0 MARCO_24_77518361-3 82 -0.085592 hybrid +133_2-1 Q0 MARCO_10_989466899-11 83 -0.085888 hybrid +133_2-1 Q0 MARCO_06_1264305390-212 84 -0.087253 hybrid +133_2-1 Q0 MARCO_29_240800254-11 85 -0.089245 hybrid +133_2-1 Q0 MARCO_44_469461981-18 86 -0.089326 hybrid +133_2-1 Q0 MARCO_31_939118462-2 87 -0.094193 hybrid +133_2-1 Q0 MARCO_10_1134465384-20 88 -0.095558 hybrid +133_2-1 Q0 MARCO_10_893405124-7 89 -0.100059 hybrid +133_2-1 Q0 MARCO_54_1645150241-23 90 -0.101876 hybrid +133_2-1 Q0 MARCO_57_867933316-13 91 -0.103595 hybrid +133_2-1 Q0 MARCO_57_1963506226-9 92 -0.104321 hybrid +133_2-1 Q0 MARCO_29_796785959-6 93 -0.105553 hybrid +133_2-1 Q0 MARCO_32_1284814576-10 94 -0.108468 hybrid +133_2-1 Q0 MARCO_32_1518650942-8 95 -0.108468 hybrid +133_2-1 Q0 MARCO_37_373781237-12 96 -0.110234 hybrid +133_2-1 Q0 MARCO_24_1915933350-4 97 -0.115664 hybrid +133_2-1 Q0 MARCO_10_969218481-26 98 -0.119584 hybrid +133_2-1 Q0 MARCO_44_303893968-5 99 -0.121616 hybrid +133_2-1 Q0 MARCO_44_466695521-4 100 -0.121889 hybrid +133_2-3 Q0 MARCO_20_1380187541-18 1 0.500001 hybrid +133_2-3 Q0 MARCO_31_1320467209-1 2 0.198506 hybrid +133_2-3 Q0 MARCO_21_963848449-2 3 0.140410 hybrid +133_2-3 Q0 MARCO_20_1380187541-15 4 0.113255 hybrid +133_2-3 Q0 MARCO_31_941330245-3 5 0.035474 hybrid +133_2-3 Q0 MARCO_28_531575972-7 6 0.025123 hybrid +133_2-3 Q0 MARCO_27_1565221723-1 7 0.024493 hybrid +133_2-3 Q0 MARCO_23_897890331-5 8 -0.003215 hybrid +133_2-3 Q0 MARCO_12_358195860-11 9 -0.003291 hybrid +133_2-3 Q0 MARCO_25_1158848107-2 10 -0.007172 hybrid +133_2-3 Q0 MARCO_24_952535196-7 11 -0.008717 hybrid +133_2-3 Q0 MARCO_54_177638627-1 12 -0.017791 hybrid +133_2-3 Q0 MARCO_45_636152506-1 13 -0.022105 hybrid +133_2-3 Q0 MARCO_25_1158848107-4 14 -0.033977 hybrid +133_2-3 Q0 MARCO_27_913315458-10 15 -0.037688 hybrid +133_2-3 Q0 MARCO_28_531575972-3 16 -0.040954 hybrid +133_2-3 Q0 MARCO_20_1380187541-2 17 -0.053692 hybrid +133_2-3 Q0 MARCO_28_531575972-1 18 -0.055655 hybrid +133_2-3 Q0 MARCO_54_178778406-5 19 -0.058054 hybrid +133_2-3 Q0 MARCO_32_1495924450-1 20 -0.070050 hybrid +133_2-3 Q0 MARCO_20_1380187541-5 21 -0.073522 hybrid +133_2-3 Q0 MARCO_21_1042469229-4 22 -0.075664 hybrid +133_2-3 Q0 MARCO_54_178778406-7 23 -0.084180 hybrid +133_2-3 Q0 MARCO_21_1042469229-3 24 -0.087530 hybrid +133_2-3 Q0 MARCO_53_613248557-9 25 -0.087594 hybrid +133_2-3 Q0 MARCO_20_1380187541-4 26 -0.088637 hybrid +133_2-3 Q0 MARCO_20_1380187541-8 27 -0.090087 hybrid +133_2-3 Q0 MARCO_49_221275597-7 28 -0.090173 hybrid +133_2-3 Q0 MARCO_21_960742503-36 29 -0.102373 hybrid +133_2-3 Q0 MARCO_20_1378929674-16 30 -0.102435 hybrid +133_2-3 Q0 MARCO_27_913315458-5 31 -0.109727 hybrid +133_2-3 Q0 MARCO_21_1040454850-11 32 -0.111944 hybrid +133_2-3 Q0 MARCO_53_613248557-1 33 -0.119655 hybrid +133_2-3 Q0 MARCO_21_1041886807-3 34 -0.120343 hybrid +133_2-3 Q0 MARCO_49_221089932-5 35 -0.120608 hybrid +133_2-3 Q0 MARCO_54_177386244-3 36 -0.120703 hybrid +133_2-3 Q0 MARCO_27_913315458-7 37 -0.126961 hybrid +133_2-3 Q0 MARCO_28_340211372-1 38 -0.133832 hybrid +133_2-3 Q0 MARCO_49_407193791-2 39 -0.141816 hybrid +133_2-3 Q0 MARCO_32_1491255820-12 40 -0.142474 hybrid +133_2-3 Q0 MARCO_32_1491275150-9 41 -0.143796 hybrid +133_2-3 Q0 MARCO_52_1377663003-5 42 -0.143977 hybrid +133_2-3 Q0 MARCO_52_1377663003-4 43 -0.144197 hybrid +133_2-3 Q0 MARCO_28_531575972-2 44 -0.148999 hybrid +133_2-3 Q0 MARCO_21_1039299162-1 45 -0.151029 hybrid +133_2-3 Q0 MARCO_00_588384791-4 46 -0.151403 hybrid +133_2-3 Q0 MARCO_31_299764766-6 47 -0.152047 hybrid +133_2-3 Q0 MARCO_10_977241368-8 48 -0.152650 hybrid +133_2-3 Q0 MARCO_41_341807104-10 49 -0.154102 hybrid +133_2-3 Q0 MARCO_28_531575972-4 50 -0.156855 hybrid +133_2-3 Q0 MARCO_51_1234133322-6 51 -0.157764 hybrid +133_2-3 Q0 MARCO_21_1039299162-5 52 -0.161395 hybrid +133_2-3 Q0 MARCO_33_175590067-1 53 -0.162058 hybrid +133_2-3 Q0 MARCO_31_941330245-4 54 -0.162220 hybrid +133_2-3 Q0 MARCO_47_286199195-1 55 -0.162942 hybrid +133_2-3 Q0 MARCO_44_52685693-7 56 -0.164301 hybrid +133_2-3 Q0 MARCO_24_952535196-12 57 -0.164579 hybrid +133_2-3 Q0 MARCO_20_1380187541-9 58 -0.168932 hybrid +133_2-3 Q0 MARCO_21_958706637-39 59 -0.175394 hybrid +133_2-3 Q0 MARCO_21_1040095444-18 60 -0.178829 hybrid +133_2-3 Q0 MARCO_35_405067887-24 61 -0.179167 hybrid +133_2-3 Q0 MARCO_28_340211372-3 62 -0.183244 hybrid +133_2-3 Q0 MARCO_48_548757298-1 63 -0.184602 hybrid +133_2-3 Q0 MARCO_31_1320467209-3 64 -0.185204 hybrid +133_2-3 Q0 MARCO_33_175590067-6 65 -0.185943 hybrid +133_2-3 Q0 MARCO_21_1041919516-1 66 -0.186492 hybrid +133_2-3 Q0 MARCO_45_626496198-2 67 -0.192276 hybrid +133_2-3 Q0 MARCO_27_913315458-12 68 -0.192477 hybrid +133_2-3 Q0 MARCO_00_768241594-15 69 -0.194897 hybrid +133_2-3 Q0 MARCO_12_358105485-4 70 -0.198447 hybrid +133_2-3 Q0 MARCO_57_486842187-20 71 -0.210826 hybrid +133_2-3 Q0 MARCO_44_306829719-7 72 -0.210918 hybrid +133_2-3 Q0 MARCO_20_1380187541-14 73 -0.214027 hybrid +133_2-3 Q0 MARCO_04_1043910897-1 74 -0.214105 hybrid +133_2-3 Q0 MARCO_00_1584607239-13 75 -0.214959 hybrid +133_2-3 Q0 MARCO_12_358195860-7 76 -0.215444 hybrid +133_2-3 Q0 MARCO_29_26461661-3 77 -0.216769 hybrid +133_2-3 Q0 MARCO_54_179201693-7 78 -0.217976 hybrid +133_2-3 Q0 MARCO_31_941534070-1 79 -0.219197 hybrid +133_2-3 Q0 MARCO_30_1128699323-6 80 -0.219711 hybrid +133_2-3 Q0 MARCO_28_1147867664-4 81 -0.220015 hybrid +133_2-3 Q0 MARCO_53_613248557-5 82 -0.220146 hybrid +133_2-3 Q0 MARCO_07_997140642-1 83 -0.222998 hybrid +133_2-3 Q0 MARCO_21_1040901140-1 84 -0.223737 hybrid +133_2-3 Q0 MARCO_54_1522902143-3 85 -0.227505 hybrid +133_2-3 Q0 MARCO_44_52685693-13 86 -0.227848 hybrid +133_2-3 Q0 MARCO_18_2861322257-5 87 -0.229234 hybrid +133_2-3 Q0 MARCO_53_613269735-1 88 -0.230126 hybrid +133_2-3 Q0 MARCO_28_1150246379-9 89 -0.230151 hybrid +133_2-3 Q0 MARCO_54_177638627-4 90 -0.230335 hybrid +133_2-3 Q0 MARCO_53_613248557-8 91 -0.230913 hybrid +133_2-3 Q0 MARCO_20_1383319559-8 92 -0.231838 hybrid +133_2-3 Q0 MARCO_20_1380187541-3 93 -0.232056 hybrid +133_2-3 Q0 MARCO_46_436965044-3 94 -0.232644 hybrid +133_2-3 Q0 MARCO_32_1287747664-6 95 -0.233935 hybrid +133_2-3 Q0 MARCO_52_363326565-7 96 -0.235899 hybrid +133_2-3 Q0 MARCO_53_613248557-6 97 -0.241219 hybrid +133_2-3 Q0 MARCO_46_1391213662-3 98 -0.242042 hybrid +133_2-3 Q0 MARCO_06_1405220022-6 99 -0.244376 hybrid +133_2-3 Q0 MARCO_43_191374287-2 100 -0.247059 hybrid +133_3-2 Q0 MARCO_42_257610962-2 1 0.500000 hybrid +133_3-2 Q0 MARCO_21_963020852-33 2 0.329212 hybrid +133_3-2 Q0 MARCO_25_1167948093-1 3 0.230562 hybrid +133_3-2 Q0 MARCO_07_622353478-3 4 0.214350 hybrid +133_3-2 Q0 MARCO_51_817080609-8 5 0.198713 hybrid +133_3-2 Q0 MARCO_37_839481202-3 6 0.193833 hybrid +133_3-2 Q0 MARCO_52_1207612281-3 7 0.185685 hybrid +133_3-2 Q0 MARCO_41_1847614301-3 8 0.181967 hybrid +133_3-2 Q0 MARCO_41_1847614301-2 9 0.155118 hybrid +133_3-2 Q0 MARCO_52_1379647498-2 10 0.150571 hybrid +133_3-2 Q0 MARCO_29_31280170-2 11 0.147905 hybrid +133_3-2 Q0 MARCO_00_1584661169-47 12 0.102118 hybrid +133_3-2 Q0 MARCO_52_1378630980-1 13 0.089871 hybrid +133_3-2 Q0 MARCO_56_1317921108-1 14 0.083256 hybrid +133_3-2 Q0 MARCO_52_1186887800-4 15 0.076714 hybrid +133_3-2 Q0 MARCO_48_1593873982-1 16 0.075427 hybrid +133_3-2 Q0 MARCO_52_1186887800-6 17 0.071296 hybrid +133_3-2 Q0 MARCO_21_958386119-13 18 0.070378 hybrid +133_3-2 Q0 MARCO_21_962638497-23 19 0.068820 hybrid +133_3-2 Q0 MARCO_46_12087807-2 20 0.042599 hybrid +133_3-2 Q0 MARCO_52_1186887800-7 21 0.041798 hybrid +133_3-2 Q0 MARCO_51_817072979-2 22 0.039670 hybrid +133_3-2 Q0 MARCO_06_1653480130-12 23 0.038820 hybrid +133_3-2 Q0 MARCO_33_176858642-30 24 0.038707 hybrid +133_3-2 Q0 MARCO_43_747853505-5 25 0.037368 hybrid +133_3-2 Q0 MARCO_43_747853505-7 26 0.035636 hybrid +133_3-2 Q0 MARCO_33_175521909-14 27 0.025987 hybrid +133_3-2 Q0 MARCO_43_747853505-8 28 0.023090 hybrid +133_3-2 Q0 MARCO_46_12563667-3 29 0.019457 hybrid +133_3-2 Q0 MARCO_54_95841051-8 30 0.012113 hybrid +133_3-2 Q0 MARCO_50_2156264634-26 31 0.007590 hybrid +133_3-2 Q0 MARCO_00_1584661169-44 32 0.006684 hybrid +133_3-2 Q0 MARCO_12_1861101487-3 33 0.001825 hybrid +133_3-2 Q0 MARCO_37_839481202-2 34 -0.001602 hybrid +133_3-2 Q0 MARCO_20_1587212315-6 35 -0.004276 hybrid +133_3-2 Q0 MARCO_43_747853505-6 36 -0.006813 hybrid +133_3-2 Q0 MARCO_52_1378433154-6 37 -0.008974 hybrid +133_3-2 Q0 MARCO_52_1207612281-2 38 -0.009338 hybrid +133_3-2 Q0 MARCO_20_17897970-3 39 -0.011248 hybrid +133_3-2 Q0 MARCO_00_1584661169-37 40 -0.020233 hybrid +133_3-2 Q0 MARCO_43_747853505-2 41 -0.028718 hybrid +133_3-2 Q0 MARCO_27_1108903667-5 42 -0.036886 hybrid +133_3-2 Q0 MARCO_12_1861101487-4 43 -0.037728 hybrid +133_3-2 Q0 MARCO_52_1378433154-1 44 -0.047260 hybrid +133_3-2 Q0 MARCO_00_1584661169-7 45 -0.052050 hybrid +133_3-2 Q0 MARCO_21_963020852-25 46 -0.054623 hybrid +133_3-2 Q0 MARCO_42_1749404525-8 47 -0.055942 hybrid +133_3-2 Q0 MARCO_20_17897970-14 48 -0.056921 hybrid +133_3-2 Q0 MARCO_14_1430404313-7 49 -0.061331 hybrid +133_3-2 Q0 MARCO_21_957502933-50 50 -0.061457 hybrid +133_3-2 Q0 MARCO_21_963020852-13 51 -0.061671 hybrid +133_3-2 Q0 MARCO_23_895409741-1 52 -0.061792 hybrid +133_3-2 Q0 MARCO_21_959831036-7 53 -0.070062 hybrid +133_3-2 Q0 MARCO_52_1186887800-8 54 -0.071401 hybrid +133_3-2 Q0 MARCO_05_1760789526-4 55 -0.074881 hybrid +133_3-2 Q0 MARCO_52_361046997-2 56 -0.075136 hybrid +133_3-2 Q0 MARCO_48_1593873982-7 57 -0.076216 hybrid +133_3-2 Q0 MARCO_48_1592782932-5 58 -0.076370 hybrid +133_3-2 Q0 MARCO_12_1860846453-4 59 -0.077717 hybrid +133_3-2 Q0 MARCO_55_812473590-11 60 -0.079032 hybrid +133_3-2 Q0 MARCO_14_129523741-9 61 -0.079368 hybrid +133_3-2 Q0 MARCO_40_623301223-8 62 -0.087925 hybrid +133_3-2 Q0 MARCO_44_103353802-16 63 -0.088159 hybrid +133_3-2 Q0 MARCO_12_1863122013-5 64 -0.089648 hybrid +133_3-2 Q0 MARCO_27_915250077-7 65 -0.090142 hybrid +133_3-2 Q0 MARCO_21_963020852-17 66 -0.094491 hybrid +133_3-2 Q0 MARCO_12_1862455994-6 67 -0.095636 hybrid +133_3-2 Q0 MARCO_12_1863122013-7 68 -0.096931 hybrid +133_3-2 Q0 MARCO_27_711832489-5 69 -0.100358 hybrid +133_3-2 Q0 MARCO_40_623301223-3 70 -0.102611 hybrid +133_3-2 Q0 MARCO_53_620160515-2 71 -0.105302 hybrid +133_3-2 Q0 MARCO_36_567097680-5 72 -0.111844 hybrid +133_3-2 Q0 MARCO_34_1327324913-6 73 -0.112455 hybrid +133_3-2 Q0 MARCO_02_1742344367-10 74 -0.116630 hybrid +133_3-2 Q0 MARCO_55_812473590-10 75 -0.116938 hybrid +133_3-2 Q0 MARCO_36_567097680-7 76 -0.118455 hybrid +133_3-2 Q0 MARCO_51_817080609-7 77 -0.120781 hybrid +133_3-2 Q0 MARCO_24_645255123-10 78 -0.121865 hybrid +133_3-2 Q0 MARCO_20_17897970-1 79 -0.121918 hybrid +133_3-2 Q0 MARCO_52_1186887800-3 80 -0.124337 hybrid +133_3-2 Q0 MARCO_00_1584661169-41 81 -0.124694 hybrid +133_3-2 Q0 MARCO_41_2129778814-3 82 -0.126595 hybrid +133_3-2 Q0 MARCO_20_19564405-11 83 -0.126801 hybrid +133_3-2 Q0 MARCO_21_957772551-35 84 -0.128610 hybrid +133_3-2 Q0 MARCO_51_817080609-5 85 -0.129625 hybrid +133_3-2 Q0 MARCO_24_1723652218-4 86 -0.132045 hybrid +133_3-2 Q0 MARCO_40_172971301-5 87 -0.132174 hybrid +133_3-2 Q0 MARCO_40_172971301-4 88 -0.133344 hybrid +133_3-2 Q0 MARCO_47_978613974-15 89 -0.133983 hybrid +133_3-2 Q0 MARCO_24_1721478417-4 90 -0.134193 hybrid +133_3-2 Q0 MARCO_24_979997814-23 91 -0.134517 hybrid +133_3-2 Q0 MARCO_38_621902139-4 92 -0.135561 hybrid +133_3-2 Q0 MARCO_31_885963547-6 93 -0.137147 hybrid +133_3-2 Q0 MARCO_42_257610962-4 94 -0.137697 hybrid +133_3-2 Q0 MARCO_24_807756634-2 95 -0.142427 hybrid +133_3-2 Q0 MARCO_27_915250077-4 96 -0.143009 hybrid +133_3-2 Q0 MARCO_51_817305147-9 97 -0.143159 hybrid +133_3-2 Q0 MARCO_29_1203251996-4 98 -0.143551 hybrid +133_3-2 Q0 MARCO_36_567097680-4 99 -0.146501 hybrid +133_3-2 Q0 MARCO_41_1847614301-1 100 -0.150065 hybrid +133_3-4 Q0 MARCO_45_635806329-2 1 0.500000 hybrid +133_3-4 Q0 MARCO_22_1577793079-3 2 0.435412 hybrid +133_3-4 Q0 MARCO_37_1248361486-16 3 0.424378 hybrid +133_3-4 Q0 MARCO_27_1770345942-2 4 0.402273 hybrid +133_3-4 Q0 MARCO_11_1540230888-8 5 0.381927 hybrid +133_3-4 Q0 MARCO_44_306123956-5 6 0.366252 hybrid +133_3-4 Q0 MARCO_44_302607124-3 7 0.344434 hybrid +133_3-4 Q0 MARCO_14_1423925025-22 8 0.313228 hybrid +133_3-4 Q0 MARCO_45_636947768-2 9 0.290886 hybrid +133_3-4 Q0 MARCO_14_1424153250-6 10 0.283962 hybrid +133_3-4 Q0 MARCO_38_610711564-6 11 0.258333 hybrid +133_3-4 Q0 MARCO_25_1126697-3 12 0.257840 hybrid +133_3-4 Q0 MARCO_12_358209854-5 13 0.254310 hybrid +133_3-4 Q0 MARCO_39_263247941-2 14 0.247511 hybrid +133_3-4 Q0 MARCO_55_678333132-5 15 0.226254 hybrid +133_3-4 Q0 MARCO_55_70389104-3 16 0.224221 hybrid +133_3-4 Q0 MARCO_50_2486108188-55 17 0.192360 hybrid +133_3-4 Q0 MARCO_21_1045723064-6 18 0.166351 hybrid +133_3-4 Q0 MARCO_33_512371363-4 19 0.157818 hybrid +133_3-4 Q0 MARCO_49_221061456-4 20 0.157631 hybrid +133_3-4 Q0 MARCO_57_869489227-2 21 0.153626 hybrid +133_3-4 Q0 MARCO_13_320946250-6 22 0.142206 hybrid +133_3-4 Q0 MARCO_13_320946250-4 23 0.142206 hybrid +133_3-4 Q0 MARCO_37_135241965-5 24 0.138245 hybrid +133_3-4 Q0 MARCO_27_533008955-21 25 0.133168 hybrid +133_3-4 Q0 MARCO_51_947700465-5 26 0.132413 hybrid +133_3-4 Q0 MARCO_30_815667789-7 27 0.124747 hybrid +133_3-4 Q0 MARCO_54_179087980-3 28 0.121591 hybrid +133_3-4 Q0 MARCO_11_714430020-11 29 0.121198 hybrid +133_3-4 Q0 MARCO_21_1530668931-2 30 0.103534 hybrid +133_3-4 Q0 MARCO_36_567014926-4 31 0.099598 hybrid +133_3-4 Q0 MARCO_20_1384644143-16 32 0.082595 hybrid +133_3-4 Q0 MARCO_10_891763997-12 33 0.077075 hybrid +133_3-4 Q0 MARCO_27_1209857543-5 34 0.069902 hybrid +133_3-4 Q0 MARCO_50_1609967635-13 35 0.067638 hybrid +133_3-4 Q0 MARCO_22_1000023865-4 36 0.057877 hybrid +133_3-4 Q0 MARCO_54_557103535-3 37 0.057353 hybrid +133_3-4 Q0 MARCO_21_148226254-5 38 0.056947 hybrid +133_3-4 Q0 MARCO_21_1530668931-1 39 0.041634 hybrid +133_3-4 Q0 MARCO_39_259861426-2 40 0.035740 hybrid +133_3-4 Q0 MARCO_45_982263250-2 41 0.034505 hybrid +133_3-4 Q0 MARCO_56_286233411-3 42 0.028180 hybrid +133_3-4 Q0 MARCO_44_307649603-2 43 0.026790 hybrid +133_3-4 Q0 MARCO_21_1040699672-5 44 0.024139 hybrid +133_3-4 Q0 MARCO_56_507656023-9 45 0.023502 hybrid +133_3-4 Q0 MARCO_24_1907335507-4 46 0.014533 hybrid +133_3-4 Q0 MARCO_11_696702604-4 47 0.011901 hybrid +133_3-4 Q0 MARCO_42_1749243386-3 48 0.006262 hybrid +133_3-4 Q0 MARCO_42_1749243386-5 49 0.006262 hybrid +133_3-4 Q0 MARCO_14_1427118681-2 50 0.004167 hybrid +133_3-4 Q0 MARCO_51_944387154-6 51 0.004004 hybrid +133_3-4 Q0 MARCO_12_1162407871-4 52 0.000225 hybrid +133_3-4 Q0 MARCO_20_1384644143-17 53 -0.003275 hybrid +133_3-4 Q0 MARCO_31_940077927-4 54 -0.005520 hybrid +133_3-4 Q0 MARCO_26_470566854-2 55 -0.007086 hybrid +133_3-4 Q0 MARCO_28_340128332-12 56 -0.008389 hybrid +133_3-4 Q0 MARCO_29_1335729230-3 57 -0.012144 hybrid +133_3-4 Q0 MARCO_27_533008955-7 58 -0.017490 hybrid +133_3-4 Q0 MARCO_49_221322888-6 59 -0.017739 hybrid +133_3-4 Q0 MARCO_41_2032569317-3 60 -0.018824 hybrid +133_3-4 Q0 MARCO_49_221254160-5 61 -0.021681 hybrid +133_3-4 Q0 MARCO_06_1533182716-3 62 -0.024189 hybrid +133_3-4 Q0 MARCO_22_1000023865-2 63 -0.025211 hybrid +133_3-4 Q0 MARCO_56_46854037-4 64 -0.028361 hybrid +133_3-4 Q0 MARCO_37_1255198346-50 65 -0.029646 hybrid +133_3-4 Q0 MARCO_42_1749243386-2 66 -0.030276 hybrid +133_3-4 Q0 MARCO_39_260463809-3 67 -0.035715 hybrid +133_3-4 Q0 MARCO_14_126163501-3 68 -0.041441 hybrid +133_3-4 Q0 MARCO_20_1384047002-7 69 -0.042314 hybrid +133_3-4 Q0 MARCO_02_474025151-4 70 -0.042327 hybrid +133_3-4 Q0 MARCO_39_262913721-2 71 -0.046082 hybrid +133_3-4 Q0 MARCO_08_84973183-19 72 -0.046468 hybrid +133_3-4 Q0 MARCO_10_1190200031-6 73 -0.047254 hybrid +133_3-4 Q0 MARCO_10_1189253615-5 74 -0.047915 hybrid +133_3-4 Q0 MARCO_36_567014926-9 75 -0.054041 hybrid +133_3-4 Q0 MARCO_15_266826778-2 76 -0.054926 hybrid +133_3-4 Q0 MARCO_19_1990743935-2 77 -0.058232 hybrid +133_3-4 Q0 MARCO_38_527453497-2 78 -0.059554 hybrid +133_3-4 Q0 MARCO_54_179087980-2 79 -0.060390 hybrid +133_3-4 Q0 MARCO_28_431937036-2 80 -0.061819 hybrid +133_3-4 Q0 MARCO_52_1201524910-7 81 -0.062143 hybrid +133_3-4 Q0 MARCO_46_125094126-21 82 -0.067788 hybrid +133_3-4 Q0 MARCO_51_455241404-4 83 -0.069784 hybrid +133_3-4 Q0 MARCO_12_314843730-5 84 -0.071724 hybrid +133_3-4 Q0 MARCO_21_1045723064-7 85 -0.072104 hybrid +133_3-4 Q0 MARCO_42_1058467731-3 86 -0.073738 hybrid +133_3-4 Q0 MARCO_46_437095475-4 87 -0.074543 hybrid +133_3-4 Q0 MARCO_23_1591678685-3 88 -0.075110 hybrid +133_3-4 Q0 MARCO_24_1436872895-2 89 -0.075167 hybrid +133_3-4 Q0 MARCO_22_1577793079-6 90 -0.075279 hybrid +133_3-4 Q0 MARCO_55_70042824-2 91 -0.079389 hybrid +133_3-4 Q0 MARCO_51_455417443-3 92 -0.079739 hybrid +133_3-4 Q0 MARCO_56_46950116-6 93 -0.081890 hybrid +133_3-4 Q0 MARCO_54_319769946-3 94 -0.082470 hybrid +133_3-4 Q0 MARCO_35_420972240-2 95 -0.083712 hybrid +133_3-4 Q0 MARCO_42_1058467731-4 96 -0.085390 hybrid +133_3-4 Q0 MARCO_15_1395045612-4 97 -0.087860 hybrid +133_3-4 Q0 MARCO_59_441793496-5 98 -0.089107 hybrid +133_3-4 Q0 MARCO_21_148226254-6 99 -0.091783 hybrid +133_3-4 Q0 MARCO_49_1479764213-4 100 -0.092120 hybrid +133_3-6 Q0 MARCO_37_1248361486-16 1 0.499997 hybrid +133_3-6 Q0 MARCO_01_1679207279-5 2 0.464073 hybrid +133_3-6 Q0 MARCO_12_75363274-6 3 0.412883 hybrid +133_3-6 Q0 MARCO_28_1760094890-2 4 0.373155 hybrid +133_3-6 Q0 MARCO_41_2128774528-1 5 0.359548 hybrid +133_3-6 Q0 MARCO_12_358533636-9 6 0.304923 hybrid +133_3-6 Q0 MARCO_21_1040569144-4 7 0.277837 hybrid +133_3-6 Q0 MARCO_14_1423748073-9 8 0.261157 hybrid +133_3-6 Q0 MARCO_07_1053171941-2 9 0.252559 hybrid +133_3-6 Q0 MARCO_03_581529838-2 10 0.238349 hybrid +133_3-6 Q0 MARCO_37_1293608822-5 11 0.231399 hybrid +133_3-6 Q0 MARCO_00_1284561358-10 12 0.223014 hybrid +133_3-6 Q0 MARCO_22_1214824629-6 13 0.207775 hybrid +133_3-6 Q0 MARCO_12_358209854-8 14 0.203113 hybrid +133_3-6 Q0 MARCO_12_358164665-5 15 0.180411 hybrid +133_3-6 Q0 MARCO_49_221159351-4 16 0.175520 hybrid +133_3-6 Q0 MARCO_49_221330702-6 17 0.174837 hybrid +133_3-6 Q0 MARCO_21_1040699672-5 18 0.171402 hybrid +133_3-6 Q0 MARCO_21_1041354626-6 19 0.170906 hybrid +133_3-6 Q0 MARCO_14_1138344035-19 20 0.170506 hybrid +133_3-6 Q0 MARCO_21_1041354626-7 21 0.164127 hybrid +133_3-6 Q0 MARCO_12_358429915-9 22 0.160452 hybrid +133_3-6 Q0 MARCO_27_533102350-67 23 0.150600 hybrid +133_3-6 Q0 MARCO_12_358209854-4 24 0.142508 hybrid +133_3-6 Q0 MARCO_31_939690637-3 25 0.140209 hybrid +133_3-6 Q0 MARCO_19_2583546095-2 26 0.138977 hybrid +133_3-6 Q0 MARCO_12_358209854-7 27 0.137702 hybrid +133_3-6 Q0 MARCO_08_84973183-19 28 0.136406 hybrid +133_3-6 Q0 MARCO_12_358152181-1 29 0.129765 hybrid +133_3-6 Q0 MARCO_32_1516532264-5 30 0.129653 hybrid +133_3-6 Q0 MARCO_45_626959382-3 31 0.126538 hybrid +133_3-6 Q0 MARCO_27_533008955-21 32 0.126095 hybrid +133_3-6 Q0 MARCO_12_358209854-9 33 0.124106 hybrid +133_3-6 Q0 MARCO_34_1262191675-3 34 0.121956 hybrid +133_3-6 Q0 MARCO_54_1474079817-1 35 0.115897 hybrid +133_3-6 Q0 MARCO_14_1424049302-3 36 0.112078 hybrid +133_3-6 Q0 MARCO_33_1243354686-13 37 0.101538 hybrid +133_3-6 Q0 MARCO_21_1044708807-2 38 0.089254 hybrid +133_3-6 Q0 MARCO_12_1850147072-2 39 0.077279 hybrid +133_3-6 Q0 MARCO_26_816110858-12 40 0.074793 hybrid +133_3-6 Q0 MARCO_54_1474079817-2 41 0.072180 hybrid +133_3-6 Q0 MARCO_00_1284561358-2 42 0.071758 hybrid +133_3-6 Q0 MARCO_21_1041279300-2 43 0.068222 hybrid +133_3-6 Q0 MARCO_00_1284561358-9 44 0.065443 hybrid +133_3-6 Q0 MARCO_20_481786852-3 45 0.058498 hybrid +133_3-6 Q0 MARCO_49_1479888350-6 46 0.058268 hybrid +133_3-6 Q0 MARCO_30_1128838062-13 47 0.055826 hybrid +133_3-6 Q0 MARCO_13_655398278-32 48 0.055169 hybrid +133_3-6 Q0 MARCO_42_1848513221-4 49 0.055068 hybrid +133_3-6 Q0 MARCO_06_1533182716-3 50 0.051009 hybrid +133_3-6 Q0 MARCO_53_729003673-23 51 0.048022 hybrid +133_3-6 Q0 MARCO_12_358429915-8 52 0.045494 hybrid +133_3-6 Q0 MARCO_12_358209854-5 53 0.041216 hybrid +133_3-6 Q0 MARCO_02_486333988-10 54 0.039941 hybrid +133_3-6 Q0 MARCO_12_358521836-4 55 0.037418 hybrid +133_3-6 Q0 MARCO_53_202120043-3 56 0.037178 hybrid +133_3-6 Q0 MARCO_20_1690677897-21 57 0.036853 hybrid +133_3-6 Q0 MARCO_21_959831036-23 58 0.035802 hybrid +133_3-6 Q0 MARCO_41_2130825753-6 59 0.035300 hybrid +133_3-6 Q0 MARCO_28_1149208465-1 60 0.033444 hybrid +133_3-6 Q0 MARCO_48_1150213760-2 61 0.032569 hybrid +133_3-6 Q0 MARCO_32_47599540-5 62 0.032153 hybrid +133_3-6 Q0 KILT_25611728-4 63 0.028809 hybrid +133_3-6 Q0 MARCO_02_1741426940-3 64 0.028798 hybrid +133_3-6 Q0 MARCO_33_177483341-5 65 0.025833 hybrid +133_3-6 Q0 MARCO_12_358385620-1 66 0.025598 hybrid +133_3-6 Q0 MARCO_06_1528773187-28 67 0.023166 hybrid +133_3-6 Q0 MARCO_32_1528229326-4 68 0.021907 hybrid +133_3-6 Q0 MARCO_28_336319661-5 69 0.021688 hybrid +133_3-6 Q0 MARCO_04_1047545497-10 70 0.019389 hybrid +133_3-6 Q0 MARCO_56_1510163906-4 71 0.016722 hybrid +133_3-6 Q0 MARCO_27_533277848-2 72 0.010423 hybrid +133_3-6 Q0 MARCO_07_1053171941-9 73 0.009921 hybrid +133_3-6 Q0 MARCO_01_1679207279-4 74 0.009623 hybrid +133_3-6 Q0 MARCO_00_1284561358-5 75 0.006150 hybrid +133_3-6 Q0 MARCO_49_221159351-5 76 0.004305 hybrid +133_3-6 Q0 MARCO_21_1040095444-42 77 -0.000667 hybrid +133_3-6 Q0 MARCO_27_533102350-21 78 -0.000933 hybrid +133_3-6 Q0 MARCO_30_128880640-2 79 -0.002710 hybrid +133_3-6 Q0 MARCO_01_1874370151-131 80 -0.003387 hybrid +133_3-6 Q0 MARCO_30_98765097-4 81 -0.009329 hybrid +133_3-6 Q0 MARCO_01_1874370151-83 82 -0.009959 hybrid +133_3-6 Q0 MARCO_13_1695573027-10 83 -0.011201 hybrid +133_3-6 Q0 MARCO_07_999457786-2 84 -0.013084 hybrid +133_3-6 Q0 MARCO_54_1645289032-4 85 -0.014738 hybrid +133_3-6 Q0 MARCO_45_1323300726-1 86 -0.016183 hybrid +133_3-6 Q0 MARCO_14_336863560-19 87 -0.019597 hybrid +133_3-6 Q0 MARCO_12_358449259-3 88 -0.026755 hybrid +133_3-6 Q0 MARCO_48_1150218843-2 89 -0.029246 hybrid +133_3-6 Q0 MARCO_37_1248361486-8 90 -0.031054 hybrid +133_3-6 Q0 MARCO_35_420972240-2 91 -0.031791 hybrid +133_3-6 Q0 MARCO_20_481786852-2 92 -0.033177 hybrid +133_3-6 Q0 MARCO_27_532853836-1 93 -0.033833 hybrid +133_3-6 Q0 MARCO_31_941192793-7 94 -0.034895 hybrid +133_3-6 Q0 MARCO_06_329224330-1 95 -0.038837 hybrid +133_3-6 Q0 MARCO_03_581469797-1 96 -0.038885 hybrid +133_3-6 Q0 MARCO_27_1147815870-13 97 -0.039119 hybrid +133_3-6 Q0 MARCO_12_522955325-7 98 -0.040272 hybrid +133_3-6 Q0 MARCO_14_1424049302-4 99 -0.040757 hybrid +133_3-6 Q0 MARCO_56_46854037-3 100 -0.044187 hybrid +133_3-8 Q0 MARCO_47_294648972-8 1 0.499998 hybrid +133_3-8 Q0 MARCO_48_1150369278-3 2 0.444446 hybrid +133_3-8 Q0 MARCO_48_515139000-5 3 0.374619 hybrid +133_3-8 Q0 MARCO_37_1248361486-16 4 0.350954 hybrid +133_3-8 Q0 MARCO_27_532853836-2 5 0.320720 hybrid +133_3-8 Q0 MARCO_49_221200478-4 6 0.311527 hybrid +133_3-8 Q0 MARCO_21_1041386698-2 7 0.308341 hybrid +133_3-8 Q0 MARCO_22_1000023865-1 8 0.274176 hybrid +133_3-8 Q0 MARCO_21_1041386698-14 9 0.270623 hybrid +133_3-8 Q0 MARCO_22_1000023865-6 10 0.269970 hybrid +133_3-8 Q0 MARCO_21_1041386698-8 11 0.263256 hybrid +133_3-8 Q0 MARCO_54_1474079817-1 12 0.255568 hybrid +133_3-8 Q0 MARCO_33_174143347-5 13 0.237486 hybrid +133_3-8 Q0 MARCO_22_1000016457-5 14 0.237042 hybrid +133_3-8 Q0 MARCO_30_98872743-2 15 0.225214 hybrid +133_3-8 Q0 MARCO_21_1041279300-6 16 0.224860 hybrid +133_3-8 Q0 MARCO_30_98872743-1 17 0.224425 hybrid +133_3-8 Q0 MARCO_12_358164665-14 18 0.206191 hybrid +133_3-8 Q0 MARCO_54_179087980-9 19 0.201048 hybrid +133_3-8 Q0 MARCO_12_358164665-5 20 0.196940 hybrid +133_3-8 Q0 MARCO_54_179087980-2 21 0.196040 hybrid +133_3-8 Q0 MARCO_42_256962339-2 22 0.187760 hybrid +133_3-8 Q0 MARCO_12_358209854-5 23 0.185992 hybrid +133_3-8 Q0 MARCO_54_1645150241-6 24 0.181136 hybrid +133_3-8 Q0 MARCO_06_1865534075-2 25 0.179994 hybrid +133_3-8 Q0 MARCO_26_75566714-9 26 0.169913 hybrid +133_3-8 Q0 MARCO_21_1040579258-3 27 0.168478 hybrid +133_3-8 Q0 MARCO_57_2142498402-18 28 0.163240 hybrid +133_3-8 Q0 MARCO_21_1044839871-17 29 0.154298 hybrid +133_3-8 Q0 MARCO_33_1243354686-13 30 0.141413 hybrid +133_3-8 Q0 MARCO_21_1041040930-3 31 0.139949 hybrid +133_3-8 Q0 MARCO_49_968080162-5 32 0.139123 hybrid +133_3-8 Q0 MARCO_58_280644784-8 33 0.132500 hybrid +133_3-8 Q0 MARCO_08_84973183-19 34 0.130037 hybrid +133_3-8 Q0 MARCO_21_1040662018-4 35 0.126341 hybrid +133_3-8 Q0 MARCO_41_2130724642-2 36 0.125091 hybrid +133_3-8 Q0 MARCO_49_221222154-6 37 0.122328 hybrid +133_3-8 Q0 MARCO_25_1428842474-3 38 0.121481 hybrid +133_3-8 Q0 MARCO_37_135241965-5 39 0.120556 hybrid +133_3-8 Q0 MARCO_12_358429915-11 40 0.116605 hybrid +133_3-8 Q0 MARCO_21_1039451095-7 41 0.112535 hybrid +133_3-8 Q0 MARCO_26_72560852-6 42 0.109213 hybrid +133_3-8 Q0 MARCO_12_1850137591-2 43 0.107293 hybrid +133_3-8 Q0 MARCO_12_1850147072-5 44 0.100583 hybrid +133_3-8 Q0 MARCO_13_591665383-4 45 0.098281 hybrid +133_3-8 Q0 MARCO_36_1104647182-3 46 0.097915 hybrid +133_3-8 Q0 MARCO_49_221246923-5 47 0.091765 hybrid +133_3-8 Q0 MARCO_12_358128448-5 48 0.086909 hybrid +133_3-8 Q0 MARCO_19_2583546095-2 49 0.085643 hybrid +133_3-8 Q0 MARCO_22_1486583586-7 50 0.081404 hybrid +133_3-8 Q0 MARCO_30_98878482-2 51 0.078123 hybrid +133_3-8 Q0 MARCO_22_1000023865-7 52 0.074427 hybrid +133_3-8 Q0 MARCO_28_336454008-5 53 0.072080 hybrid +133_3-8 Q0 MARCO_21_1042062397-1 54 0.070320 hybrid +133_3-8 Q0 MARCO_49_221184312-7 55 0.066122 hybrid +133_3-8 Q0 MARCO_14_1138753614-17 56 0.060839 hybrid +133_3-8 Q0 MARCO_53_202103300-5 57 0.054886 hybrid +133_3-8 Q0 MARCO_37_1248361486-19 58 0.054845 hybrid +133_3-8 Q0 MARCO_27_532853836-5 59 0.054672 hybrid +133_3-8 Q0 MARCO_27_533008955-21 60 0.052814 hybrid +133_3-8 Q0 MARCO_22_1214824629-6 61 0.051486 hybrid +133_3-8 Q0 MARCO_30_98878482-1 62 0.049846 hybrid +133_3-8 Q0 MARCO_53_1056236376-4 63 0.048592 hybrid +133_3-8 Q0 MARCO_37_1248361486-17 64 0.041952 hybrid +133_3-8 Q0 MARCO_11_714430020-8 65 0.040118 hybrid +133_3-8 Q0 MARCO_21_1040569144-4 66 0.034083 hybrid +133_3-8 Q0 MARCO_49_968080162-1 67 0.032932 hybrid +133_3-8 Q0 MARCO_49_220985369-5 68 0.031345 hybrid +133_3-8 Q0 MARCO_49_221152335-6 69 0.029314 hybrid +133_3-8 Q0 MARCO_11_714430020-11 70 0.026707 hybrid +133_3-8 Q0 MARCO_11_774780059-7 71 0.023110 hybrid +133_3-8 Q0 MARCO_28_1760094890-4 72 0.021153 hybrid +133_3-8 Q0 MARCO_06_329224330-2 73 0.018883 hybrid +133_3-8 Q0 MARCO_21_1044708807-1 74 0.017864 hybrid +133_3-8 Q0 MARCO_21_1039442008-4 75 0.017058 hybrid +133_3-8 Q0 MARCO_27_532853836-7 76 0.015915 hybrid +133_3-8 Q0 MARCO_53_729593117-22 77 0.012671 hybrid +133_3-8 Q0 MARCO_45_651323012-6 78 0.012326 hybrid +133_3-8 Q0 MARCO_45_633637409-3 79 0.012264 hybrid +133_3-8 Q0 MARCO_12_358209854-6 80 0.010282 hybrid +133_3-8 Q0 MARCO_31_939740757-6 81 0.009287 hybrid +133_3-8 Q0 MARCO_48_628640461-6 82 0.005320 hybrid +133_3-8 Q0 MARCO_21_756158085-12 83 0.002849 hybrid +133_3-8 Q0 MARCO_24_1915711016-4 84 0.001595 hybrid +133_3-8 Q0 MARCO_21_1040699672-5 85 -0.001961 hybrid +133_3-8 Q0 MARCO_14_1138344035-14 86 -0.003248 hybrid +133_3-8 Q0 MARCO_21_1040579258-1 87 -0.004329 hybrid +133_3-8 Q0 MARCO_56_46854037-4 88 -0.005468 hybrid +133_3-8 Q0 MARCO_14_462357473-7 89 -0.009246 hybrid +133_3-8 Q0 MARCO_37_1248389631-21 90 -0.011076 hybrid +133_3-8 Q0 MARCO_36_567014926-7 91 -0.015385 hybrid +133_3-8 Q0 MARCO_12_1850137591-1 92 -0.019611 hybrid +133_3-8 Q0 MARCO_37_1248361486-20 93 -0.020047 hybrid +133_3-8 Q0 MARCO_32_1516067228-5 94 -0.021342 hybrid +133_3-8 Q0 MARCO_27_532853836-4 95 -0.022287 hybrid +133_3-8 Q0 MARCO_21_1042062397-4 96 -0.023258 hybrid +133_3-8 Q0 MARCO_12_358533636-9 97 -0.023406 hybrid +133_3-8 Q0 MARCO_21_1040699672-2 98 -0.026946 hybrid +133_3-8 Q0 MARCO_38_610711564-6 99 -0.030934 hybrid +133_3-8 Q0 MARCO_33_176142698-5 100 -0.033655 hybrid +134_1-1 Q0 MARCO_55_681131262-6 1 0.500003 hybrid +134_1-1 Q0 MARCO_58_1006573867-2 2 0.493979 hybrid +134_1-1 Q0 MARCO_42_324634806-29 3 0.460601 hybrid +134_1-1 Q0 MARCO_55_681195067-7 4 0.420186 hybrid +134_1-1 Q0 MARCO_14_482895059-3 5 0.391216 hybrid +134_1-1 Q0 MARCO_06_692273477-4 6 0.388775 hybrid +134_1-1 Q0 MARCO_55_681195067-6 7 0.385276 hybrid +134_1-1 Q0 MARCO_45_141802555-2 8 0.331916 hybrid +134_1-1 Q0 MARCO_06_692273477-5 9 0.329542 hybrid +134_1-1 Q0 MARCO_55_681172170-7 10 0.323658 hybrid +134_1-1 Q0 MARCO_40_559279113-10 11 0.321279 hybrid +134_1-1 Q0 MARCO_55_681131262-2 12 0.310992 hybrid +134_1-1 Q0 MARCO_55_681109595-6 13 0.267267 hybrid +134_1-1 Q0 MARCO_28_655536110-9 14 0.262414 hybrid +134_1-1 Q0 MARCO_59_883887243-7 15 0.261483 hybrid +134_1-1 Q0 MARCO_35_331546391-3 16 0.253732 hybrid +134_1-1 Q0 MARCO_55_681172170-10 17 0.251347 hybrid +134_1-1 Q0 MARCO_58_1008698955-8 18 0.229437 hybrid +134_1-1 Q0 MARCO_27_1755745313-4 19 0.225787 hybrid +134_1-1 Q0 MARCO_53_1514052628-4 20 0.208892 hybrid +134_1-1 Q0 MARCO_56_456809557-4 21 0.204735 hybrid +134_1-1 Q0 MARCO_50_1676044543-12 22 0.201080 hybrid +134_1-1 Q0 MARCO_42_1097508216-11 23 0.195558 hybrid +134_1-1 Q0 MARCO_58_1008057483-13 24 0.177348 hybrid +134_1-1 Q0 MARCO_58_1008057483-10 25 0.169608 hybrid +134_1-1 Q0 MARCO_55_681131262-4 26 0.151353 hybrid +134_1-1 Q0 MARCO_55_681360829-8 27 0.144850 hybrid +134_1-1 Q0 MARCO_45_1019718891-21 28 0.111907 hybrid +134_1-1 Q0 MARCO_58_1008057483-12 29 0.111367 hybrid +134_1-1 Q0 MARCO_40_817051784-2 30 0.107071 hybrid +134_1-1 Q0 MARCO_35_809670314-16 31 0.094193 hybrid +134_1-1 Q0 MARCO_28_655467320-2 32 0.092611 hybrid +134_1-1 Q0 MARCO_50_1419718645-79 33 0.091435 hybrid +134_1-1 Q0 MARCO_55_681052557-9 34 0.087612 hybrid +134_1-1 Q0 MARCO_58_1007447817-8 35 0.087518 hybrid +134_1-1 Q0 MARCO_54_99903925-14 36 0.087295 hybrid +134_1-1 Q0 MARCO_46_7779561-7 37 0.080441 hybrid +134_1-1 Q0 MARCO_58_1007241860-2 38 0.072840 hybrid +134_1-1 Q0 MARCO_40_817051784-4 39 0.070823 hybrid +134_1-1 Q0 MARCO_28_655910406-2 40 0.062058 hybrid +134_1-1 Q0 MARCO_11_696887760-6 41 0.059790 hybrid +134_1-1 Q0 MARCO_55_681360829-4 42 0.056848 hybrid +134_1-1 Q0 MARCO_45_1021789810-8 43 0.056146 hybrid +134_1-1 Q0 MARCO_29_1139491873-3 44 0.055416 hybrid +134_1-1 Q0 MARCO_05_482108671-1 45 0.049950 hybrid +134_1-1 Q0 MARCO_55_681076363-6 46 0.049677 hybrid +134_1-1 Q0 MARCO_11_152628394-5 47 0.044478 hybrid +134_1-1 Q0 MARCO_49_794626777-4 48 0.042739 hybrid +134_1-1 Q0 MARCO_55_681360829-9 49 0.039084 hybrid +134_1-1 Q0 MARCO_58_1008057483-11 50 0.038493 hybrid +134_1-1 Q0 MARCO_58_1007299838-5 51 0.036977 hybrid +134_1-1 Q0 MARCO_33_822117870-15 52 0.032860 hybrid +134_1-1 Q0 MARCO_12_123636749-6 53 0.031539 hybrid +134_1-1 Q0 MARCO_55_681083428-4 54 0.030502 hybrid +134_1-1 Q0 MARCO_41_288753895-10 55 0.019024 hybrid +134_1-1 Q0 MARCO_26_109159712-6 56 0.016873 hybrid +134_1-1 Q0 MARCO_58_1007016082-6 57 0.011496 hybrid +134_1-1 Q0 MARCO_52_884868117-8 58 0.009902 hybrid +134_1-1 Q0 MARCO_13_980391904-12 59 0.008230 hybrid +134_1-1 Q0 MARCO_48_1537638145-18 60 0.006748 hybrid +134_1-1 Q0 MARCO_49_795876784-5 61 -0.000602 hybrid +134_1-1 Q0 MARCO_29_972974962-22 62 -0.003198 hybrid +134_1-1 Q0 MARCO_55_681109595-8 63 -0.004313 hybrid +134_1-1 Q0 MARCO_21_1149322219-5 64 -0.005082 hybrid +134_1-1 Q0 MARCO_37_833358429-4 65 -0.005271 hybrid +134_1-1 Q0 MARCO_52_1383131915-13 66 -0.007517 hybrid +134_1-1 Q0 MARCO_34_322279509-9 67 -0.007556 hybrid +134_1-1 Q0 MARCO_45_1019718891-33 68 -0.008693 hybrid +134_1-1 Q0 MARCO_55_855402956-2 69 -0.013178 hybrid +134_1-1 Q0 MARCO_28_655671628-3 70 -0.013802 hybrid +134_1-1 Q0 MARCO_55_681172170-9 71 -0.014042 hybrid +134_1-1 Q0 MARCO_55_681131262-7 72 -0.017686 hybrid +134_1-1 Q0 MARCO_45_1028844881-1 73 -0.021659 hybrid +134_1-1 Q0 MARCO_55_681083428-8 74 -0.029260 hybrid +134_1-1 Q0 MARCO_55_681131262-9 75 -0.035350 hybrid +134_1-1 Q0 MARCO_48_761671630-2 76 -0.037707 hybrid +134_1-1 Q0 MARCO_50_1419718645-44 77 -0.037997 hybrid +134_1-1 Q0 MARCO_35_809364331-2 78 -0.039680 hybrid +134_1-1 Q0 MARCO_20_694886831-2 79 -0.040650 hybrid +134_1-1 Q0 MARCO_53_1514271870-2 80 -0.040895 hybrid +134_1-1 Q0 MARCO_58_1006713197-26 81 -0.041446 hybrid +134_1-1 Q0 MARCO_13_1761251367-31 82 -0.042215 hybrid +134_1-1 Q0 MARCO_44_1487773945-5 83 -0.045007 hybrid +134_1-1 Q0 MARCO_58_1008935356-5 84 -0.045336 hybrid +134_1-1 Q0 MARCO_55_681360829-11 85 -0.052178 hybrid +134_1-1 Q0 MARCO_58_1007386097-7 86 -0.052424 hybrid +134_1-1 Q0 MARCO_20_694886831-5 87 -0.053499 hybrid +134_1-1 Q0 MARCO_35_809241108-6 88 -0.057093 hybrid +134_1-1 Q0 MARCO_14_482895059-2 89 -0.058013 hybrid +134_1-1 Q0 MARCO_28_655583201-1 90 -0.059071 hybrid +134_1-1 Q0 MARCO_26_1548920763-3 91 -0.062604 hybrid +134_1-1 Q0 MARCO_55_681195067-8 92 -0.063251 hybrid +134_1-1 Q0 MARCO_21_403181703-10 93 -0.064036 hybrid +134_1-1 Q0 MARCO_45_1019718891-25 94 -0.065669 hybrid +134_1-1 Q0 MARCO_35_809432927-2 95 -0.067474 hybrid +134_1-1 Q0 MARCO_28_655841975-10 96 -0.068355 hybrid +134_1-1 Q0 MARCO_30_741491479-2 97 -0.068678 hybrid +134_1-1 Q0 MARCO_54_644876345-36 98 -0.071358 hybrid +134_1-1 Q0 MARCO_22_166006390-12 99 -0.072016 hybrid +134_1-1 Q0 MARCO_24_1009226818-2 100 -0.072567 hybrid +134_1-11 Q0 MARCO_58_1008308703-5 1 0.500000 hybrid +134_1-11 Q0 MARCO_58_1006877495-6 2 0.476445 hybrid +134_1-11 Q0 MARCO_30_88692581-25 3 0.419887 hybrid +134_1-11 Q0 MARCO_58_1007582050-10 4 0.388945 hybrid +134_1-11 Q0 MARCO_30_88725475-31 5 0.385159 hybrid +134_1-11 Q0 MARCO_30_88725475-38 6 0.377889 hybrid +134_1-11 Q0 MARCO_14_37624184-4 7 0.374114 hybrid +134_1-11 Q0 MARCO_30_88692581-21 8 0.370371 hybrid +134_1-11 Q0 MARCO_58_1006877495-7 9 0.353142 hybrid +134_1-11 Q0 MARCO_30_88725475-39 10 0.343357 hybrid +134_1-11 Q0 MARCO_30_88725475-37 11 0.340017 hybrid +134_1-11 Q0 MARCO_36_944454916-5 12 0.328218 hybrid +134_1-11 Q0 MARCO_30_88725475-35 13 0.327368 hybrid +134_1-11 Q0 MARCO_24_1717721932-7 14 0.322837 hybrid +134_1-11 Q0 MARCO_58_1006976171-9 15 0.321107 hybrid +134_1-11 Q0 MARCO_36_945711051-3 16 0.312151 hybrid +134_1-11 Q0 MARCO_36_944454916-3 17 0.306009 hybrid +134_1-11 Q0 MARCO_24_1953269607-3 18 0.301015 hybrid +134_1-11 Q0 MARCO_30_88725475-32 19 0.300580 hybrid +134_1-11 Q0 MARCO_55_860174844-8 20 0.299908 hybrid +134_1-11 Q0 MARCO_45_1025014902-4 21 0.289150 hybrid +134_1-11 Q0 MARCO_58_1008308703-6 22 0.285967 hybrid +134_1-11 Q0 MARCO_30_88692581-22 23 0.272254 hybrid +134_1-11 Q0 MARCO_55_860157065-13 24 0.268707 hybrid +134_1-11 Q0 MARCO_30_88692581-20 25 0.268290 hybrid +134_1-11 Q0 MARCO_34_333151546-22 26 0.266645 hybrid +134_1-11 Q0 MARCO_21_957688307-28 27 0.262829 hybrid +134_1-11 Q0 MARCO_36_944454916-1 28 0.261380 hybrid +134_1-11 Q0 MARCO_41_2178240120-1 29 0.246628 hybrid +134_1-11 Q0 MARCO_58_1006877495-5 30 0.236583 hybrid +134_1-11 Q0 MARCO_36_944406970-2 31 0.224939 hybrid +134_1-11 Q0 MARCO_24_1959498029-2 32 0.224012 hybrid +134_1-11 Q0 MARCO_30_88692581-26 33 0.208371 hybrid +134_1-11 Q0 MARCO_30_88692581-7 34 0.206282 hybrid +134_1-11 Q0 MARCO_45_140244363-6 35 0.201263 hybrid +134_1-11 Q0 MARCO_30_88725475-15 36 0.200258 hybrid +134_1-11 Q0 MARCO_41_631148127-3 37 0.199281 hybrid +134_1-11 Q0 MARCO_30_88692581-12 38 0.195166 hybrid +134_1-11 Q0 MARCO_14_37624184-6 39 0.191273 hybrid +134_1-11 Q0 MARCO_58_1006426191-6 40 0.187268 hybrid +134_1-11 Q0 MARCO_58_1008340919-4 41 0.185545 hybrid +134_1-11 Q0 MARCO_55_860157065-12 42 0.181492 hybrid +134_1-11 Q0 MARCO_30_88725475-23 43 0.176473 hybrid +134_1-11 Q0 MARCO_36_898362483-4 44 0.175906 hybrid +134_1-11 Q0 MARCO_34_333151546-21 45 0.173890 hybrid +134_1-11 Q0 MARCO_30_88725475-19 46 0.172652 hybrid +134_1-11 Q0 MARCO_55_860183325-4 47 0.170370 hybrid +134_1-11 Q0 MARCO_30_88769099-15 48 0.168025 hybrid +134_1-11 Q0 MARCO_55_681083428-18 49 0.167340 hybrid +134_1-11 Q0 MARCO_41_2178283454-1 50 0.165754 hybrid +134_1-11 Q0 MARCO_30_88692581-10 51 0.164412 hybrid +134_1-11 Q0 MARCO_41_2178267959-3 52 0.161601 hybrid +134_1-11 Q0 MARCO_36_944441128-1 53 0.160213 hybrid +134_1-11 Q0 MARCO_30_88725475-40 54 0.158434 hybrid +134_1-11 Q0 MARCO_58_1007467822-6 55 0.157149 hybrid +134_1-11 Q0 MARCO_36_1067712779-3 56 0.156814 hybrid +134_1-11 Q0 MARCO_41_2178267959-1 57 0.155559 hybrid +134_1-11 Q0 MARCO_36_944270115-7 58 0.147407 hybrid +134_1-11 Q0 MARCO_30_88725475-11 59 0.141946 hybrid +134_1-11 Q0 MARCO_30_88333542-24 60 0.141258 hybrid +134_1-11 Q0 MARCO_55_860157065-3 61 0.137007 hybrid +134_1-11 Q0 MARCO_34_335269979-14 62 0.133904 hybrid +134_1-11 Q0 MARCO_24_1717721932-8 63 0.132653 hybrid +134_1-11 Q0 MARCO_45_141200182-3 64 0.130158 hybrid +134_1-11 Q0 MARCO_30_88769099-9 65 0.121785 hybrid +134_1-11 Q0 MARCO_55_860183325-13 66 0.121505 hybrid +134_1-11 Q0 MARCO_30_88725475-9 67 0.113830 hybrid +134_1-11 Q0 MARCO_55_860199747-3 68 0.113688 hybrid +134_1-11 Q0 MARCO_36_944454916-6 69 0.113358 hybrid +134_1-11 Q0 MARCO_30_88769099-7 70 0.107961 hybrid +134_1-11 Q0 MARCO_30_88769099-14 71 0.107234 hybrid +134_1-11 Q0 MARCO_30_88725475-12 72 0.101705 hybrid +134_1-11 Q0 MARCO_05_1513258648-5 73 0.099331 hybrid +134_1-11 Q0 MARCO_36_1067712779-2 74 0.098390 hybrid +134_1-11 Q0 MARCO_55_860183325-1 75 0.098335 hybrid +134_1-11 Q0 MARCO_58_1006877495-11 76 0.096034 hybrid +134_1-11 Q0 MARCO_41_2178277400-2 77 0.095391 hybrid +134_1-11 Q0 MARCO_41_2178255484-4 78 0.095123 hybrid +134_1-11 Q0 MARCO_03_253065550-3 79 0.090295 hybrid +134_1-11 Q0 MARCO_58_1008371076-7 80 0.089340 hybrid +134_1-11 Q0 MARCO_30_88692581-13 81 0.089015 hybrid +134_1-11 Q0 MARCO_34_328002561-25 82 0.087338 hybrid +134_1-11 Q0 MARCO_14_37624184-5 83 0.086429 hybrid +134_1-11 Q0 MARCO_55_860183325-12 84 0.084540 hybrid +134_1-11 Q0 MARCO_41_632303003-3 85 0.079737 hybrid +134_1-11 Q0 MARCO_41_2178277400-4 86 0.078828 hybrid +134_1-11 Q0 MARCO_36_944454916-2 87 0.074926 hybrid +134_1-11 Q0 MARCO_55_860157065-6 88 0.073632 hybrid +134_1-11 Q0 MARCO_41_632303003-1 89 0.070836 hybrid +134_1-11 Q0 MARCO_41_2178255484-1 90 0.068102 hybrid +134_1-11 Q0 MARCO_58_1008175801-5 91 0.068043 hybrid +134_1-11 Q0 MARCO_55_860157065-2 92 0.067458 hybrid +134_1-11 Q0 MARCO_41_2178240120-12 93 0.066161 hybrid +134_1-11 Q0 MARCO_30_88725475-16 94 0.065583 hybrid +134_1-11 Q0 MARCO_30_88725475-30 95 0.064393 hybrid +134_1-11 Q0 MARCO_34_328002561-24 96 0.062400 hybrid +134_1-11 Q0 MARCO_41_2178272362-1 97 0.060800 hybrid +134_1-11 Q0 MARCO_36_944386227-3 98 0.060203 hybrid +134_1-11 Q0 MARCO_41_2178235610-3 99 0.059602 hybrid +134_1-11 Q0 MARCO_41_2178235610-1 100 0.059602 hybrid +134_1-13 Q0 MARCO_36_945711051-3 1 0.500001 hybrid +134_1-13 Q0 MARCO_41_2178255484-3 2 0.450810 hybrid +134_1-13 Q0 MARCO_36_945711051-5 3 0.428524 hybrid +134_1-13 Q0 MARCO_36_945717607-2 4 0.393819 hybrid +134_1-13 Q0 MARCO_36_945711051-4 5 0.372849 hybrid +134_1-13 Q0 MARCO_36_945717607-4 6 0.348363 hybrid +134_1-13 Q0 MARCO_58_1008788878-6 7 0.346033 hybrid +134_1-13 Q0 MARCO_36_945717607-6 8 0.333464 hybrid +134_1-13 Q0 MARCO_36_945717607-5 9 0.306632 hybrid +134_1-13 Q0 MARCO_36_945698074-3 10 0.215589 hybrid +134_1-13 Q0 MARCO_41_2178240120-2 11 0.197545 hybrid +134_1-13 Q0 MARCO_41_2178240120-6 12 0.197538 hybrid +134_1-13 Q0 MARCO_41_2178240120-4 13 0.197538 hybrid +134_1-13 Q0 MARCO_45_1026166001-9 14 0.191991 hybrid +134_1-13 Q0 MARCO_41_2178240120-9 15 0.184994 hybrid +134_1-13 Q0 MARCO_29_972974962-17 16 0.183196 hybrid +134_1-13 Q0 MARCO_55_860157065-8 17 0.180492 hybrid +134_1-13 Q0 MARCO_55_848420280-12 18 0.174115 hybrid +134_1-13 Q0 MARCO_36_889087433-3 19 0.170172 hybrid +134_1-13 Q0 MARCO_45_140244363-6 20 0.164663 hybrid +134_1-13 Q0 MARCO_28_1146135173-6 21 0.161261 hybrid +134_1-13 Q0 MARCO_36_945698074-10 22 0.144336 hybrid +134_1-13 Q0 MARCO_36_945698074-8 23 0.144336 hybrid +134_1-13 Q0 MARCO_45_1026316263-9 24 0.143737 hybrid +134_1-13 Q0 MARCO_45_1026166001-17 25 0.133051 hybrid +134_1-13 Q0 MARCO_40_1266702458-5 26 0.116805 hybrid +134_1-13 Q0 MARCO_52_1210856843-5 27 0.116087 hybrid +134_1-13 Q0 MARCO_51_1378457972-4 28 0.106282 hybrid +134_1-13 Q0 MARCO_45_141066600-6 29 0.105268 hybrid +134_1-13 Q0 MARCO_41_2178947233-5 30 0.103368 hybrid +134_1-13 Q0 MARCO_34_328037387-12 31 0.094692 hybrid +134_1-13 Q0 MARCO_47_1313747784-10 32 0.092948 hybrid +134_1-13 Q0 MARCO_36_945698074-7 33 0.088889 hybrid +134_1-13 Q0 MARCO_58_1008111120-6 34 0.086324 hybrid +134_1-13 Q0 MARCO_41_2178891625-4 35 0.055533 hybrid +134_1-13 Q0 MARCO_41_2178255484-4 36 0.054151 hybrid +134_1-13 Q0 MARCO_48_1154614360-6 37 0.052610 hybrid +134_1-13 Q0 MARCO_36_945711051-6 38 0.052115 hybrid +134_1-13 Q0 MARCO_51_1381917671-4 39 0.050982 hybrid +134_1-13 Q0 MARCO_47_1313747784-5 40 0.050833 hybrid +134_1-13 Q0 MARCO_26_92686020-20 41 0.049809 hybrid +134_1-13 Q0 MARCO_45_140884409-8 42 0.040677 hybrid +134_1-13 Q0 MARCO_30_88864151-29 43 0.040364 hybrid +134_1-13 Q0 MARCO_21_957688307-28 44 0.037995 hybrid +134_1-13 Q0 MARCO_58_1008308703-5 45 0.032556 hybrid +134_1-13 Q0 MARCO_41_2178753291-6 46 0.032381 hybrid +134_1-13 Q0 MARCO_26_92686020-14 47 0.031131 hybrid +134_1-13 Q0 MARCO_41_2178240120-7 48 0.030604 hybrid +134_1-13 Q0 MARCO_24_1717721932-7 49 0.027338 hybrid +134_1-13 Q0 MARCO_41_2178753291-7 50 0.021460 hybrid +134_1-13 Q0 MARCO_27_1107201309-9 51 0.020294 hybrid +134_1-13 Q0 MARCO_36_944454916-6 52 0.015955 hybrid +134_1-13 Q0 MARCO_30_88692581-25 53 0.012143 hybrid +134_1-13 Q0 MARCO_20_686271921-2 54 0.006703 hybrid +134_1-13 Q0 MARCO_51_1383377686-16 55 0.001045 hybrid +134_1-13 Q0 MARCO_45_1021573417-12 56 -0.000121 hybrid +134_1-13 Q0 MARCO_45_140884409-9 57 -0.000359 hybrid +134_1-13 Q0 MARCO_48_371637991-3 58 -0.001744 hybrid +134_1-13 Q0 MARCO_47_1313747784-8 59 -0.004637 hybrid +134_1-13 Q0 MARCO_51_1379618300-4 60 -0.009317 hybrid +134_1-13 Q0 MARCO_26_92643165-22 61 -0.020238 hybrid +134_1-13 Q0 MARCO_58_1008308703-6 62 -0.024036 hybrid +134_1-13 Q0 MARCO_36_898362483-4 63 -0.025946 hybrid +134_1-13 Q0 MARCO_26_92643165-20 64 -0.027177 hybrid +134_1-13 Q0 MARCO_40_1266702458-11 65 -0.031406 hybrid +134_1-13 Q0 MARCO_29_972974962-16 66 -0.032868 hybrid +134_1-13 Q0 MARCO_50_1679353614-13 67 -0.034605 hybrid +134_1-13 Q0 MARCO_55_860199747-3 68 -0.037282 hybrid +134_1-13 Q0 MARCO_45_1026166001-8 69 -0.040308 hybrid +134_1-13 Q0 MARCO_48_1154620275-6 70 -0.043876 hybrid +134_1-13 Q0 MARCO_51_1383377686-3 71 -0.045645 hybrid +134_1-13 Q0 MARCO_10_793487780-11 72 -0.046249 hybrid +134_1-13 Q0 MARCO_41_2178760893-3 73 -0.047858 hybrid +134_1-13 Q0 MARCO_30_88725475-39 74 -0.050136 hybrid +134_1-13 Q0 MARCO_51_1381933399-8 75 -0.051871 hybrid +134_1-13 Q0 MARCO_14_37662480-12 76 -0.052174 hybrid +134_1-13 Q0 MARCO_45_1025014902-4 77 -0.056520 hybrid +134_1-13 Q0 MARCO_48_1154620275-5 78 -0.061404 hybrid +134_1-13 Q0 MARCO_24_1012123575-5 79 -0.061675 hybrid +134_1-13 Q0 MARCO_41_2178846675-2 80 -0.064002 hybrid +134_1-13 Q0 MARCO_14_37624184-5 81 -0.067639 hybrid +134_1-13 Q0 MARCO_30_88725475-35 82 -0.067688 hybrid +134_1-13 Q0 MARCO_55_856560512-5 83 -0.068933 hybrid +134_1-13 Q0 MARCO_36_901008585-2 84 -0.070404 hybrid +134_1-13 Q0 MARCO_26_92686020-15 85 -0.070446 hybrid +134_1-13 Q0 MARCO_45_140884409-6 86 -0.070822 hybrid +134_1-13 Q0 MARCO_26_92686020-19 87 -0.073664 hybrid +134_1-13 Q0 MARCO_45_1026166001-2 88 -0.075893 hybrid +134_1-13 Q0 MARCO_55_860174844-8 89 -0.075965 hybrid +134_1-13 Q0 MARCO_29_972974962-25 90 -0.076811 hybrid +134_1-13 Q0 MARCO_45_1021573417-13 91 -0.077231 hybrid +134_1-13 Q0 MARCO_41_2178876102-3 92 -0.079101 hybrid +134_1-13 Q0 MARCO_58_1007582050-10 93 -0.082859 hybrid +134_1-13 Q0 MARCO_48_1154620275-4 94 -0.086571 hybrid +134_1-13 Q0 MARCO_51_1381413026-24 95 -0.086625 hybrid +134_1-13 Q0 MARCO_58_1007467822-6 96 -0.087975 hybrid +134_1-13 Q0 MARCO_45_141200182-2 97 -0.088558 hybrid +134_1-13 Q0 MARCO_24_1012123575-4 98 -0.090833 hybrid +134_1-13 Q0 MARCO_36_901072687-3 99 -0.101193 hybrid +134_1-13 Q0 MARCO_58_1006713197-7 100 -0.106294 hybrid +134_1-3 Q0 MARCO_30_737995027-8 1 0.500000 hybrid +134_1-3 Q0 MARCO_30_738288722-11 2 0.386274 hybrid +134_1-3 Q0 MARCO_20_692808383-1 3 0.354323 hybrid +134_1-3 Q0 MARCO_50_2145508318-16 4 0.307979 hybrid +134_1-3 Q0 MARCO_49_1696999085-7 5 0.301581 hybrid +134_1-3 Q0 MARCO_32_1014217001-9 6 0.293765 hybrid +134_1-3 Q0 MARCO_13_1664335635-8 7 0.291323 hybrid +134_1-3 Q0 MARCO_32_1014217001-1 8 0.259040 hybrid +134_1-3 Q0 MARCO_49_1697473398-10 9 0.248521 hybrid +134_1-3 Q0 MARCO_24_4623022-2 10 0.223769 hybrid +134_1-3 Q0 MARCO_50_2145508318-10 11 0.159383 hybrid +134_1-3 Q0 MARCO_32_1014217001-8 12 0.155344 hybrid +134_1-3 Q0 MARCO_41_333152781-2 13 0.148584 hybrid +134_1-3 Q0 MARCO_49_964845870-1 14 0.148240 hybrid +134_1-3 Q0 MARCO_25_520745167-1 15 0.143884 hybrid +134_1-3 Q0 MARCO_29_803087810-2 16 0.138262 hybrid +134_1-3 Q0 MARCO_21_1523767850-1 17 0.126967 hybrid +134_1-3 Q0 MARCO_24_79216037-19 18 0.125618 hybrid +134_1-3 Q0 MARCO_49_964744584-13 19 0.122725 hybrid +134_1-3 Q0 MARCO_29_803062556-2 20 0.120969 hybrid +134_1-3 Q0 MARCO_46_1273503868-2 21 0.115487 hybrid +134_1-3 Q0 MARCO_54_1644376757-8 22 0.115169 hybrid +134_1-3 Q0 MARCO_50_2145508318-9 23 0.105871 hybrid +134_1-3 Q0 MARCO_49_964845870-18 24 0.091555 hybrid +134_1-3 Q0 MARCO_45_1023805152-3 25 0.089800 hybrid +134_1-3 Q0 MARCO_25_1166838247-3 26 0.087104 hybrid +134_1-3 Q0 MARCO_34_1257731272-1 27 0.067961 hybrid +134_1-3 Q0 MARCO_25_520743549-1 28 0.066434 hybrid +134_1-3 Q0 MARCO_20_1106648205-8 29 0.052220 hybrid +134_1-3 Q0 MARCO_05_1023583590-3 30 0.048913 hybrid +134_1-3 Q0 MARCO_41_338878950-2 31 0.047584 hybrid +134_1-3 Q0 MARCO_11_714445878-1 32 0.042045 hybrid +134_1-3 Q0 MARCO_53_1041630128-10 33 0.038273 hybrid +134_1-3 Q0 MARCO_41_914827209-5 34 0.033751 hybrid +134_1-3 Q0 MARCO_49_964820320-4 35 0.033192 hybrid +134_1-3 Q0 MARCO_40_733845009-2 36 0.026012 hybrid +134_1-3 Q0 MARCO_20_1382571884-6 37 0.024949 hybrid +134_1-3 Q0 MARCO_20_692615591-6 38 0.024848 hybrid +134_1-3 Q0 MARCO_49_1855039547-13 39 0.021248 hybrid +134_1-3 Q0 MARCO_21_225542551-23 40 0.013273 hybrid +134_1-3 Q0 MARCO_20_692615591-2 41 0.012815 hybrid +134_1-3 Q0 MARCO_29_803087810-8 42 0.006551 hybrid +134_1-3 Q0 MARCO_49_964769834-21 43 0.003790 hybrid +134_1-3 Q0 MARCO_32_1014217001-2 44 0.003167 hybrid +134_1-3 Q0 MARCO_42_1753278459-7 45 0.002633 hybrid +134_1-3 Q0 MARCO_14_1096117407-1 46 0.002385 hybrid +134_1-3 Q0 MARCO_29_830412788-11 47 -0.004077 hybrid +134_1-3 Q0 MARCO_43_744862185-1 48 -0.007428 hybrid +134_1-3 Q0 MARCO_11_154308528-1 49 -0.007613 hybrid +134_1-3 Q0 MARCO_47_977369795-1 50 -0.009247 hybrid +134_1-3 Q0 MARCO_45_1583601885-18 51 -0.010570 hybrid +134_1-3 Q0 MARCO_20_1379518704-1 52 -0.011931 hybrid +134_1-3 Q0 MARCO_49_401996522-21 53 -0.014628 hybrid +134_1-3 Q0 MARCO_51_948171333-10 54 -0.019232 hybrid +134_1-3 Q0 MARCO_30_738605676-9 55 -0.019773 hybrid +134_1-3 Q0 MARCO_43_744862185-10 56 -0.034413 hybrid +134_1-3 Q0 MARCO_45_1583124704-6 57 -0.037688 hybrid +134_1-3 Q0 MARCO_14_1096106027-1 58 -0.038381 hybrid +134_1-3 Q0 MARCO_36_398031272-1 59 -0.040423 hybrid +134_1-3 Q0 MARCO_51_741472353-27 60 -0.042878 hybrid +134_1-3 Q0 MARCO_15_140380330-21 61 -0.043202 hybrid +134_1-3 Q0 MARCO_15_140380330-19 62 -0.043202 hybrid +134_1-3 Q0 MARCO_49_964795670-19 63 -0.051864 hybrid +134_1-3 Q0 MARCO_22_156235222-30 64 -0.052576 hybrid +134_1-3 Q0 MARCO_14_1138718075-6 65 -0.052653 hybrid +134_1-3 Q0 MARCO_49_958338420-21 66 -0.054866 hybrid +134_1-3 Q0 MARCO_55_76812968-8 67 -0.055724 hybrid +134_1-3 Q0 MARCO_12_523058317-1 68 -0.057556 hybrid +134_1-3 Q0 MARCO_12_1142198635-1 69 -0.058262 hybrid +134_1-3 Q0 MARCO_27_1111356564-18 70 -0.059489 hybrid +134_1-3 Q0 MARCO_29_1690533469-9 71 -0.060583 hybrid +134_1-3 Q0 MARCO_49_1855804818-13 72 -0.060755 hybrid +134_1-3 Q0 MARCO_49_964845870-19 73 -0.065849 hybrid +134_1-3 Q0 MARCO_51_1318644815-9 74 -0.067293 hybrid +134_1-3 Q0 MARCO_48_375885560-22 75 -0.068069 hybrid +134_1-3 Q0 MARCO_11_714337058-20 76 -0.068737 hybrid +134_1-3 Q0 MARCO_50_2145508318-25 77 -0.070549 hybrid +134_1-3 Q0 MARCO_29_970950452-6 78 -0.079198 hybrid +134_1-3 Q0 MARCO_14_1136234388-12 79 -0.079287 hybrid +134_1-3 Q0 MARCO_45_163608706-53 80 -0.079892 hybrid +134_1-3 Q0 MARCO_11_714303118-9 81 -0.080114 hybrid +134_1-3 Q0 MARCO_54_1644376757-4 82 -0.080203 hybrid +134_1-3 Q0 MARCO_41_332176130-18 83 -0.080871 hybrid +134_1-3 Q0 MARCO_14_1140695957-15 84 -0.082149 hybrid +134_1-3 Q0 MARCO_37_1259060465-17 85 -0.082932 hybrid +134_1-3 Q0 MARCO_21_960547910-56 86 -0.084611 hybrid +134_1-3 Q0 MARCO_46_1272997269-4 87 -0.085380 hybrid +134_1-3 Q0 MARCO_57_2139933131-20 88 -0.085552 hybrid +134_1-3 Q0 MARCO_30_836007775-5 89 -0.087892 hybrid +134_1-3 Q0 MARCO_21_952603944-1 90 -0.093641 hybrid +134_1-3 Q0 MARCO_50_1452314483-18 91 -0.093762 hybrid +134_1-3 Q0 MARCO_43_239599823-24 92 -0.097108 hybrid +134_1-3 Q0 MARCO_10_791683310-51 93 -0.098990 hybrid +134_1-3 Q0 MARCO_11_154308528-9 94 -0.099346 hybrid +134_1-3 Q0 MARCO_42_205585075-2 95 -0.099747 hybrid +134_1-3 Q0 MARCO_20_692789576-1 96 -0.101896 hybrid +134_1-3 Q0 MARCO_34_1260714751-2 97 -0.106794 hybrid +134_1-3 Q0 MARCO_49_1697958238-1 98 -0.107398 hybrid +134_1-3 Q0 MARCO_20_18861615-3 99 -0.108053 hybrid +134_1-3 Q0 MARCO_49_1700192051-24 100 -0.108161 hybrid +134_1-5 Q0 MARCO_58_1008687294-8 1 0.499999 hybrid +134_1-5 Q0 MARCO_45_1025706014-7 2 0.476718 hybrid +134_1-5 Q0 MARCO_34_333625792-19 3 0.398291 hybrid +134_1-5 Q0 MARCO_34_333151546-14 4 0.392549 hybrid +134_1-5 Q0 MARCO_34_333151546-9 5 0.336102 hybrid +134_1-5 Q0 MARCO_58_1008111120-4 6 0.327600 hybrid +134_1-5 Q0 MARCO_36_1067726977-3 7 0.320948 hybrid +134_1-5 Q0 MARCO_30_1134286947-4 8 0.275674 hybrid +134_1-5 Q0 MARCO_36_901008585-3 9 0.273453 hybrid +134_1-5 Q0 MARCO_42_325647616-7 10 0.263816 hybrid +134_1-5 Q0 MARCO_41_633731309-3 11 0.228433 hybrid +134_1-5 Q0 MARCO_34_333151546-15 12 0.224294 hybrid +134_1-5 Q0 MARCO_34_335269979-8 13 0.220256 hybrid +134_1-5 Q0 MARCO_58_1007656339-10 14 0.216487 hybrid +134_1-5 Q0 MARCO_24_1011834155-7 15 0.176032 hybrid +134_1-5 Q0 MARCO_41_2178616931-1 16 0.146921 hybrid +134_1-5 Q0 MARCO_27_1109750285-4 17 0.141031 hybrid +134_1-5 Q0 MARCO_34_323363322-1 18 0.137934 hybrid +134_1-5 Q0 MARCO_41_2178612900-1 19 0.132771 hybrid +134_1-5 Q0 MARCO_30_1134286947-2 20 0.131151 hybrid +134_1-5 Q0 MARCO_34_333625792-4 21 0.129168 hybrid +134_1-5 Q0 MARCO_26_92686020-14 22 0.128675 hybrid +134_1-5 Q0 MARCO_21_248924460-5 23 0.124428 hybrid +134_1-5 Q0 MARCO_45_1025706014-6 24 0.124051 hybrid +134_1-5 Q0 MARCO_51_1378932820-4 25 0.116475 hybrid +134_1-5 Q0 MARCO_34_323379213-8 26 0.115539 hybrid +134_1-5 Q0 MARCO_24_1012032122-2 27 0.113232 hybrid +134_1-5 Q0 MARCO_58_1007494560-6 28 0.104662 hybrid +134_1-5 Q0 MARCO_24_1012032122-1 29 0.103369 hybrid +134_1-5 Q0 MARCO_41_633731309-4 30 0.101306 hybrid +134_1-5 Q0 MARCO_24_1012024291-6 31 0.099300 hybrid +134_1-5 Q0 MARCO_27_1107224030-2 32 0.095712 hybrid +134_1-5 Q0 MARCO_40_1266702458-5 33 0.092837 hybrid +134_1-5 Q0 MARCO_14_332757574-3 34 0.091523 hybrid +134_1-5 Q0 MARCO_41_631991925-1 35 0.089259 hybrid +134_1-5 Q0 MARCO_30_1134286947-3 36 0.083701 hybrid +134_1-5 Q0 MARCO_41_631991925-2 37 0.082944 hybrid +134_1-5 Q0 MARCO_51_1381358101-4 38 0.079562 hybrid +134_1-5 Q0 MARCO_24_1012032122-5 39 0.071430 hybrid +134_1-5 Q0 MARCO_41_2178620998-1 40 0.069226 hybrid +134_1-5 Q0 MARCO_24_1012072495-2 41 0.062742 hybrid +134_1-5 Q0 MARCO_41_632739458-1 42 0.059348 hybrid +134_1-5 Q0 MARCO_30_88917573-7 43 0.053647 hybrid +134_1-5 Q0 MARCO_51_1381358101-3 44 0.047311 hybrid +134_1-5 Q0 MARCO_27_1109745040-4 45 0.045110 hybrid +134_1-5 Q0 MARCO_41_2178947233-5 46 0.043447 hybrid +134_1-5 Q0 MARCO_24_1958769364-1 47 0.043062 hybrid +134_1-5 Q0 MARCO_41_2178947233-4 48 0.041359 hybrid +134_1-5 Q0 MARCO_34_328092494-23 49 0.032326 hybrid +134_1-5 Q0 MARCO_34_328092494-22 50 0.027830 hybrid +134_1-5 Q0 MARCO_58_1007821114-3 51 0.024811 hybrid +134_1-5 Q0 MARCO_27_1107214433-8 52 0.015423 hybrid +134_1-5 Q0 MARCO_34_335269979-4 53 0.011111 hybrid +134_1-5 Q0 MARCO_41_2178616931-4 54 0.009626 hybrid +134_1-5 Q0 MARCO_24_1012052780-6 55 0.006919 hybrid +134_1-5 Q0 MARCO_51_1383377686-3 56 0.004217 hybrid +134_1-5 Q0 MARCO_58_1008111120-5 57 0.003696 hybrid +134_1-5 Q0 MARCO_41_2178876102-3 58 0.000860 hybrid +134_1-5 Q0 MARCO_43_295478875-2 59 -0.003457 hybrid +134_1-5 Q0 MARCO_34_328092494-21 60 -0.007800 hybrid +134_1-5 Q0 MARCO_20_686205010-2 61 -0.008210 hybrid +134_1-5 Q0 MARCO_48_1154802696-4 62 -0.016457 hybrid +134_1-5 Q0 MARCO_58_1006820502-13 63 -0.016837 hybrid +134_1-5 Q0 MARCO_34_324782533-2 64 -0.017144 hybrid +134_1-5 Q0 MARCO_14_332757574-2 65 -0.021087 hybrid +134_1-5 Q0 MARCO_51_1383377686-18 66 -0.022853 hybrid +134_1-5 Q0 MARCO_28_1146135173-6 67 -0.024250 hybrid +134_1-5 Q0 MARCO_41_2178633291-2 68 -0.026386 hybrid +134_1-5 Q0 MARCO_58_1008111120-6 69 -0.028132 hybrid +134_1-5 Q0 MARCO_51_1383377686-16 70 -0.040674 hybrid +134_1-5 Q0 MARCO_41_2178629244-3 71 -0.041844 hybrid +134_1-5 Q0 MARCO_41_2178629244-1 72 -0.041852 hybrid +134_1-5 Q0 MARCO_34_333120683-12 73 -0.042657 hybrid +134_1-5 Q0 MARCO_34_328037387-11 74 -0.042657 hybrid +134_1-5 Q0 MARCO_41_2178605025-1 75 -0.043792 hybrid +134_1-5 Q0 MARCO_26_92686020-20 76 -0.044179 hybrid +134_1-5 Q0 MARCO_24_1958720520-4 77 -0.044461 hybrid +134_1-5 Q0 MARCO_48_1154620275-5 78 -0.050852 hybrid +134_1-5 Q0 MARCO_41_2178880778-3 79 -0.051410 hybrid +134_1-5 Q0 MARCO_24_1012072495-3 80 -0.051858 hybrid +134_1-5 Q0 MARCO_48_1154614360-5 81 -0.053149 hybrid +134_1-5 Q0 MARCO_41_2178624989-3 82 -0.055126 hybrid +134_1-5 Q0 MARCO_41_2178624989-1 83 -0.055126 hybrid +134_1-5 Q0 MARCO_51_1381449981-4 84 -0.055521 hybrid +134_1-5 Q0 MARCO_41_2178880778-9 85 -0.055929 hybrid +134_1-5 Q0 MARCO_26_94849520-4 86 -0.056432 hybrid +134_1-5 Q0 MARCO_51_1378932820-6 87 -0.059894 hybrid +134_1-5 Q0 MARCO_41_2178846675-3 88 -0.060742 hybrid +134_1-5 Q0 MARCO_01_1033254855-4 89 -0.061406 hybrid +134_1-5 Q0 MARCO_51_1378457972-4 90 -0.062164 hybrid +134_1-5 Q0 MARCO_43_295986306-9 91 -0.062946 hybrid +134_1-5 Q0 MARCO_41_632747712-1 92 -0.063676 hybrid +134_1-5 Q0 MARCO_42_326139906-6 93 -0.067173 hybrid +134_1-5 Q0 MARCO_24_1012052780-2 94 -0.068554 hybrid +134_1-5 Q0 MARCO_26_92643165-20 95 -0.073028 hybrid +134_1-5 Q0 MARCO_24_1012072495-1 96 -0.074112 hybrid +134_1-5 Q0 MARCO_34_333625792-3 97 -0.076319 hybrid +134_1-5 Q0 MARCO_41_2178937914-1 98 -0.076457 hybrid +134_1-5 Q0 MARCO_41_2178876102-2 99 -0.077089 hybrid +134_1-5 Q0 MARCO_24_1012039065-4 100 -0.077277 hybrid +134_1-7 Q0 MARCO_36_945711051-3 1 0.499999 hybrid +134_1-7 Q0 MARCO_58_1007582050-10 2 0.461222 hybrid +134_1-7 Q0 MARCO_30_88692581-25 3 0.447282 hybrid +134_1-7 Q0 MARCO_30_88725475-38 4 0.429397 hybrid +134_1-7 Q0 MARCO_36_889087433-3 5 0.414594 hybrid +134_1-7 Q0 MARCO_30_88725475-39 6 0.331401 hybrid +134_1-7 Q0 MARCO_43_295986306-9 7 0.305660 hybrid +134_1-7 Q0 MARCO_36_945698074-3 8 0.302474 hybrid +134_1-7 Q0 MARCO_30_88692581-22 9 0.296870 hybrid +134_1-7 Q0 MARCO_30_88725475-35 10 0.285922 hybrid +134_1-7 Q0 MARCO_30_88692581-20 11 0.282250 hybrid +134_1-7 Q0 MARCO_43_295327490-2 12 0.278237 hybrid +134_1-7 Q0 MARCO_55_860174844-8 13 0.277103 hybrid +134_1-7 Q0 MARCO_55_860183325-13 14 0.265303 hybrid +134_1-7 Q0 MARCO_36_898362483-4 15 0.253507 hybrid +134_1-7 Q0 MARCO_34_328037387-12 16 0.247873 hybrid +134_1-7 Q0 MARCO_21_957688307-28 17 0.238370 hybrid +134_1-7 Q0 MARCO_58_1008308703-5 18 0.231277 hybrid +134_1-7 Q0 MARCO_30_88692581-21 19 0.226363 hybrid +134_1-7 Q0 MARCO_41_2178240120-2 20 0.224407 hybrid +134_1-7 Q0 MARCO_41_2178240120-6 21 0.224402 hybrid +134_1-7 Q0 MARCO_41_2178240120-4 22 0.224402 hybrid +134_1-7 Q0 MARCO_45_141106379-6 23 0.214151 hybrid +134_1-7 Q0 MARCO_43_296384571-11 24 0.200420 hybrid +134_1-7 Q0 MARCO_30_88725475-37 25 0.191829 hybrid +134_1-7 Q0 MARCO_36_945698074-10 26 0.188975 hybrid +134_1-7 Q0 MARCO_36_945698074-8 27 0.188975 hybrid +134_1-7 Q0 MARCO_34_333151546-14 28 0.181088 hybrid +134_1-7 Q0 MARCO_34_325141658-2 29 0.171626 hybrid +134_1-7 Q0 MARCO_55_860199747-3 30 0.167066 hybrid +134_1-7 Q0 MARCO_30_88692581-26 31 0.154472 hybrid +134_1-7 Q0 MARCO_28_1146135173-6 32 0.152707 hybrid +134_1-7 Q0 MARCO_41_2178277400-1 33 0.152386 hybrid +134_1-7 Q0 MARCO_41_2178283454-6 34 0.150984 hybrid +134_1-7 Q0 MARCO_36_944454916-1 35 0.141714 hybrid +134_1-7 Q0 MARCO_58_1008308703-6 36 0.131905 hybrid +134_1-7 Q0 MARCO_30_88769099-15 37 0.127051 hybrid +134_1-7 Q0 MARCO_36_889087433-5 38 0.126694 hybrid +134_1-7 Q0 MARCO_30_88725475-40 39 0.126375 hybrid +134_1-7 Q0 MARCO_34_333151546-22 40 0.123474 hybrid +134_1-7 Q0 MARCO_34_333151546-15 41 0.120827 hybrid +134_1-7 Q0 MARCO_36_889143841-3 42 0.120487 hybrid +134_1-7 Q0 MARCO_55_860183325-4 43 0.119713 hybrid +134_1-7 Q0 MARCO_45_141200182-2 44 0.109925 hybrid +134_1-7 Q0 MARCO_41_2178220206-3 45 0.108161 hybrid +134_1-7 Q0 MARCO_41_2178616931-4 46 0.106463 hybrid +134_1-7 Q0 MARCO_58_1006877495-6 47 0.104908 hybrid +134_1-7 Q0 MARCO_36_944454916-3 48 0.103693 hybrid +134_1-7 Q0 MARCO_45_141200182-3 49 0.103670 hybrid +134_1-7 Q0 MARCO_45_1025014902-4 50 0.097284 hybrid +134_1-7 Q0 MARCO_36_944414648-6 51 0.093368 hybrid +134_1-7 Q0 MARCO_43_295317189-2 52 0.086319 hybrid +134_1-7 Q0 MARCO_34_333151546-20 53 0.080398 hybrid +134_1-7 Q0 MARCO_36_944414648-3 54 0.076384 hybrid +134_1-7 Q0 MARCO_30_88692581-24 55 0.067155 hybrid +134_1-7 Q0 MARCO_58_1008788878-6 56 0.065574 hybrid +134_1-7 Q0 MARCO_30_88725475-31 57 0.065485 hybrid +134_1-7 Q0 MARCO_55_860183325-1 58 0.063284 hybrid +134_1-7 Q0 MARCO_55_860174844-1 59 0.058998 hybrid +134_1-7 Q0 MARCO_24_1717721932-8 60 0.055533 hybrid +134_1-7 Q0 MARCO_30_88725475-19 61 0.050751 hybrid +134_1-7 Q0 MARCO_06_205326242-4 62 0.048537 hybrid +134_1-7 Q0 MARCO_43_295497892-1 63 0.043194 hybrid +134_1-7 Q0 MARCO_35_809268425-8 64 0.040539 hybrid +134_1-7 Q0 MARCO_41_2178240120-7 65 0.037934 hybrid +134_1-7 Q0 MARCO_14_37624184-4 66 0.031746 hybrid +134_1-7 Q0 MARCO_05_315458151-2 67 0.028784 hybrid +134_1-7 Q0 MARCO_34_335269979-14 68 0.024303 hybrid +134_1-7 Q0 MARCO_14_37624184-6 69 0.024216 hybrid +134_1-7 Q0 MARCO_45_140244363-6 70 0.023555 hybrid +134_1-7 Q0 MARCO_34_333625792-19 71 0.021091 hybrid +134_1-7 Q0 MARCO_36_889087433-4 72 0.020448 hybrid +134_1-7 Q0 MARCO_55_860183325-5 73 0.018140 hybrid +134_1-7 Q0 MARCO_36_944441128-3 74 0.017080 hybrid +134_1-7 Q0 MARCO_36_945717607-5 75 0.014612 hybrid +134_1-7 Q0 MARCO_55_681083428-18 76 0.010825 hybrid +134_1-7 Q0 MARCO_41_2177188071-6 77 0.007769 hybrid +134_1-7 Q0 MARCO_36_944414648-2 78 0.006516 hybrid +134_1-7 Q0 MARCO_30_88692581-12 79 0.002824 hybrid +134_1-7 Q0 MARCO_30_88725475-15 80 0.001468 hybrid +134_1-7 Q0 MARCO_55_860183325-8 81 0.000858 hybrid +134_1-7 Q0 MARCO_21_957688307-29 82 -0.000797 hybrid +134_1-7 Q0 MARCO_14_37624184-5 83 -0.001624 hybrid +134_1-7 Q0 MARCO_36_944454916-2 84 -0.002042 hybrid +134_1-7 Q0 MARCO_30_88725475-32 85 -0.002132 hybrid +134_1-7 Q0 MARCO_30_88725475-23 86 -0.003191 hybrid +134_1-7 Q0 MARCO_55_860183325-11 87 -0.009138 hybrid +134_1-7 Q0 MARCO_55_860174844-7 88 -0.011420 hybrid +134_1-7 Q0 MARCO_45_140347002-6 89 -0.014318 hybrid +134_1-7 Q0 MARCO_58_1006877495-5 90 -0.015094 hybrid +134_1-7 Q0 MARCO_41_2178267959-3 91 -0.015778 hybrid +134_1-7 Q0 MARCO_14_37624184-3 92 -0.016049 hybrid +134_1-7 Q0 MARCO_41_2178301972-1 93 -0.019238 hybrid +134_1-7 Q0 MARCO_43_295458862-2 94 -0.026504 hybrid +134_1-7 Q0 MARCO_40_562581457-13 95 -0.031636 hybrid +134_1-7 Q0 MARCO_41_2178272362-1 96 -0.034286 hybrid +134_1-7 Q0 MARCO_41_2178753291-7 97 -0.034332 hybrid +134_1-7 Q0 MARCO_35_312147600-3 98 -0.037033 hybrid +134_1-7 Q0 MARCO_41_2178392100-4 99 -0.037125 hybrid +134_1-7 Q0 MARCO_41_2178306328-4 100 -0.039272 hybrid +134_1-9 Q0 MARCO_34_333151546-14 1 0.499999 hybrid +134_1-9 Q0 MARCO_34_333151546-15 2 0.302443 hybrid +134_1-9 Q0 MARCO_34_333151546-9 3 0.298684 hybrid +134_1-9 Q0 MARCO_41_2178616931-4 4 0.231750 hybrid +134_1-9 Q0 MARCO_24_1958769364-1 5 0.222682 hybrid +134_1-9 Q0 MARCO_24_1011834155-7 6 0.221642 hybrid +134_1-9 Q0 MARCO_34_324782533-2 7 0.204617 hybrid +134_1-9 Q0 MARCO_45_1025706014-7 8 0.198662 hybrid +134_1-9 Q0 MARCO_34_333625792-19 9 0.178376 hybrid +134_1-9 Q0 MARCO_36_889087433-3 10 0.177383 hybrid +134_1-9 Q0 MARCO_48_1154614360-6 11 0.177054 hybrid +134_1-9 Q0 MARCO_34_335269979-8 12 0.167226 hybrid +134_1-9 Q0 MARCO_43_295986306-9 13 0.135221 hybrid +134_1-9 Q0 MARCO_24_1012072495-2 14 0.126394 hybrid +134_1-9 Q0 MARCO_24_1012039065-5 15 0.124851 hybrid +134_1-9 Q0 MARCO_36_901008585-2 16 0.123286 hybrid +134_1-9 Q0 MARCO_28_1146135173-6 17 0.121731 hybrid +134_1-9 Q0 MARCO_34_333625792-4 18 0.100076 hybrid +134_1-9 Q0 MARCO_28_651603893-4 19 0.093523 hybrid +134_1-9 Q0 MARCO_36_889205230-4 20 0.088742 hybrid +134_1-9 Q0 MARCO_58_1008687294-8 21 0.088288 hybrid +134_1-9 Q0 MARCO_34_335269979-4 22 0.086514 hybrid +134_1-9 Q0 MARCO_41_2178612900-4 23 0.085074 hybrid +134_1-9 Q0 MARCO_36_945698074-3 24 0.081173 hybrid +134_1-9 Q0 MARCO_36_891284331-2 25 0.071279 hybrid +134_1-9 Q0 MARCO_36_901008585-1 26 0.069005 hybrid +134_1-9 Q0 MARCO_41_2178865213-4 27 0.066280 hybrid +134_1-9 Q0 MARCO_01_1033254855-6 28 0.062180 hybrid +134_1-9 Q0 MARCO_34_328092494-21 29 0.061812 hybrid +134_1-9 Q0 MARCO_51_1378932820-4 30 0.057740 hybrid +134_1-9 Q0 MARCO_24_1012123575-5 31 0.056420 hybrid +134_1-9 Q0 MARCO_41_2178734009-1 32 0.055561 hybrid +134_1-9 Q0 MARCO_36_901008585-3 33 0.051641 hybrid +134_1-9 Q0 MARCO_24_1012024291-5 34 0.038565 hybrid +134_1-9 Q0 MARCO_41_2178633291-1 35 0.036428 hybrid +134_1-9 Q0 MARCO_24_1012107634-7 36 0.033389 hybrid +134_1-9 Q0 MARCO_34_328092494-24 37 0.032258 hybrid +134_1-9 Q0 MARCO_43_295478875-2 38 0.025924 hybrid +134_1-9 Q0 MARCO_36_945698074-2 39 0.021199 hybrid +134_1-9 Q0 MARCO_42_325647616-7 40 0.019675 hybrid +134_1-9 Q0 MARCO_58_1008111120-4 41 0.019454 hybrid +134_1-9 Q0 MARCO_34_333625792-3 42 0.017769 hybrid +134_1-9 Q0 MARCO_34_333151546-10 43 0.015483 hybrid +134_1-9 Q0 MARCO_24_1012032122-4 44 0.015063 hybrid +134_1-9 Q0 MARCO_34_328092494-23 45 0.013986 hybrid +134_1-9 Q0 MARCO_58_1007656339-10 46 0.010708 hybrid +134_1-9 Q0 MARCO_34_323379213-1 47 0.009801 hybrid +134_1-9 Q0 MARCO_41_2178597596-4 48 0.006852 hybrid +134_1-9 Q0 MARCO_34_335269979-3 49 0.002495 hybrid +134_1-9 Q0 MARCO_24_1012084495-6 50 0.001985 hybrid +134_1-9 Q0 MARCO_55_851912182-6 51 -0.003486 hybrid +134_1-9 Q0 MARCO_51_1383315875-8 52 -0.007119 hybrid +134_1-9 Q0 MARCO_55_856560512-4 53 -0.007306 hybrid +134_1-9 Q0 MARCO_05_479223142-4 54 -0.019874 hybrid +134_1-9 Q0 MARCO_48_1154620275-5 55 -0.021037 hybrid +134_1-9 Q0 MARCO_41_2178965964-1 56 -0.023946 hybrid +134_1-9 Q0 MARCO_41_632756771-1 57 -0.024972 hybrid +134_1-9 Q0 MARCO_58_1007821114-3 58 -0.031262 hybrid +134_1-9 Q0 MARCO_34_325198523-5 59 -0.036843 hybrid +134_1-9 Q0 MARCO_43_296384571-8 60 -0.036858 hybrid +134_1-9 Q0 MARCO_47_1313747784-10 61 -0.038708 hybrid +134_1-9 Q0 MARCO_51_1383377686-17 62 -0.041676 hybrid +134_1-9 Q0 MARCO_34_333120683-12 63 -0.045869 hybrid +134_1-9 Q0 MARCO_34_328037387-11 64 -0.045869 hybrid +134_1-9 Q0 MARCO_45_1025706014-6 65 -0.050086 hybrid +134_1-9 Q0 MARCO_41_2178671496-1 66 -0.054737 hybrid +134_1-9 Q0 MARCO_41_631991925-1 67 -0.058123 hybrid +134_1-9 Q0 MARCO_55_856579510-4 68 -0.059428 hybrid +134_1-9 Q0 MARCO_43_295488100-2 69 -0.061285 hybrid +134_1-9 Q0 MARCO_48_1154620275-6 70 -0.063282 hybrid +134_1-9 Q0 MARCO_36_945711051-2 71 -0.064521 hybrid +134_1-9 Q0 MARCO_36_897228409-7 72 -0.064690 hybrid +134_1-9 Q0 MARCO_41_2178918345-4 73 -0.064899 hybrid +134_1-9 Q0 MARCO_41_632747712-1 74 -0.065745 hybrid +134_1-9 Q0 MARCO_41_2178781848-1 75 -0.066734 hybrid +134_1-9 Q0 MARCO_41_2178870268-1 76 -0.071206 hybrid +134_1-9 Q0 MARCO_51_1381953965-7 77 -0.075183 hybrid +134_1-9 Q0 MARCO_26_92610241-21 78 -0.076066 hybrid +134_1-9 Q0 MARCO_48_371637991-4 79 -0.076387 hybrid +134_1-9 Q0 MARCO_41_2178961051-4 80 -0.076512 hybrid +134_1-9 Q0 MARCO_34_328092494-20 81 -0.076723 hybrid +134_1-9 Q0 MARCO_24_1012032122-1 82 -0.082491 hybrid +134_1-9 Q0 MARCO_41_2178616931-1 83 -0.083700 hybrid +134_1-9 Q0 MARCO_35_809268425-12 84 -0.088263 hybrid +134_1-9 Q0 MARCO_43_296333683-2 85 -0.088371 hybrid +134_1-9 Q0 MARCO_24_1012052780-4 86 -0.089630 hybrid +134_1-9 Q0 MARCO_41_2178633291-2 87 -0.091698 hybrid +134_1-9 Q0 MARCO_41_633731309-3 88 -0.092225 hybrid +134_1-9 Q0 MARCO_41_632739458-1 89 -0.094173 hybrid +134_1-9 Q0 MARCO_41_2178739212-4 90 -0.099028 hybrid +134_1-9 Q0 MARCO_34_546475621-1 91 -0.099632 hybrid +134_1-9 Q0 MARCO_10_799334674-9 92 -0.099978 hybrid +134_1-9 Q0 MARCO_24_1012024291-6 93 -0.101320 hybrid +134_1-9 Q0 MARCO_43_295888731-3 94 -0.103945 hybrid +134_1-9 Q0 MARCO_41_2178612900-1 95 -0.104067 hybrid +134_1-9 Q0 MARCO_51_1381358101-3 96 -0.105157 hybrid +134_1-9 Q0 MARCO_41_632785409-1 97 -0.105890 hybrid +134_1-9 Q0 MARCO_26_92610241-19 98 -0.107715 hybrid +134_1-9 Q0 MARCO_34_323421361-1 99 -0.108375 hybrid +134_1-9 Q0 MARCO_14_332757574-3 100 -0.109560 hybrid +134_2-1 Q0 MARCO_43_761449280-5 1 0.500000 hybrid +134_2-1 Q0 MARCO_41_1844228176-159 2 0.377379 hybrid +134_2-1 Q0 MARCO_41_1844228176-132 3 0.361230 hybrid +134_2-1 Q0 MARCO_41_1844228176-76 4 0.355664 hybrid +134_2-1 Q0 MARCO_41_1844228176-16 5 0.298152 hybrid +134_2-1 Q0 MARCO_20_696573438-12 6 0.293071 hybrid +134_2-1 Q0 MARCO_20_696604540-13 7 0.293071 hybrid +134_2-1 Q0 MARCO_20_696589491-12 8 0.293071 hybrid +134_2-1 Q0 MARCO_23_1830336853-11 9 0.269711 hybrid +134_2-1 Q0 MARCO_45_140776639-6 10 0.261703 hybrid +134_2-1 Q0 MARCO_46_9750301-5 11 0.239025 hybrid +134_2-1 Q0 MARCO_52_682982086-22 12 0.221861 hybrid +134_2-1 Q0 MARCO_42_326139906-13 13 0.214874 hybrid +134_2-1 Q0 MARCO_41_1844228176-78 14 0.208668 hybrid +134_2-1 Q0 MARCO_45_141118466-3 15 0.208424 hybrid +134_2-1 Q0 MARCO_50_2156613647-34 16 0.153915 hybrid +134_2-1 Q0 MARCO_41_1844228176-131 17 0.147433 hybrid +134_2-1 Q0 MARCO_00_624973167-2 18 0.141300 hybrid +134_2-1 Q0 MARCO_41_1844228176-15 19 0.135631 hybrid +134_2-1 Q0 MARCO_41_1844228176-28 20 0.128650 hybrid +134_2-1 Q0 MARCO_41_1844228176-157 21 0.119955 hybrid +134_2-1 Q0 MARCO_46_7012985-7 22 0.093206 hybrid +134_2-1 Q0 MARCO_20_696470166-8 23 0.088031 hybrid +134_2-1 Q0 MARCO_25_1116513032-7 24 0.084814 hybrid +134_2-1 Q0 MARCO_55_858850694-5 25 0.082414 hybrid +134_2-1 Q0 MARCO_23_1831766455-1 26 0.067784 hybrid +134_2-1 Q0 MARCO_45_1034575256-18 27 0.058804 hybrid +134_2-1 Q0 MARCO_46_6429321-2 28 0.055524 hybrid +134_2-1 Q0 MARCO_45_1034575256-3 29 0.050567 hybrid +134_2-1 Q0 MARCO_45_1026400396-7 30 0.038448 hybrid +134_2-1 Q0 MARCO_20_696651467-11 31 0.038343 hybrid +134_2-1 Q0 MARCO_45_141640711-3 32 0.036334 hybrid +134_2-1 Q0 MARCO_45_141118466-8 33 0.028259 hybrid +134_2-1 Q0 MARCO_45_141106379-3 34 0.023709 hybrid +134_2-1 Q0 MARCO_50_2156613647-23 35 0.019029 hybrid +134_2-1 Q0 MARCO_50_2156613647-33 36 0.011766 hybrid +134_2-1 Q0 MARCO_45_140765762-5 37 0.007882 hybrid +134_2-1 Q0 MARCO_50_2156613647-31 38 0.003827 hybrid +134_2-1 Q0 MARCO_33_1242935559-8 39 -0.001551 hybrid +134_2-1 Q0 MARCO_45_141131747-7 40 -0.004384 hybrid +134_2-1 Q0 MARCO_45_140559567-1 41 -0.006169 hybrid +134_2-1 Q0 MARCO_20_696783338-8 42 -0.006633 hybrid +134_2-1 Q0 MARCO_50_1421797340-8 43 -0.012760 hybrid +134_2-1 Q0 MARCO_45_141044143-1 44 -0.015015 hybrid +134_2-1 Q0 MARCO_20_696604540-14 45 -0.016878 hybrid +134_2-1 Q0 MARCO_20_696573438-13 46 -0.016878 hybrid +134_2-1 Q0 MARCO_20_696589491-13 47 -0.016878 hybrid +134_2-1 Q0 MARCO_45_1035006416-7 48 -0.020012 hybrid +134_2-1 Q0 MARCO_50_2156613647-20 49 -0.022553 hybrid +134_2-1 Q0 MARCO_43_766226005-2 50 -0.026005 hybrid +134_2-1 Q0 MARCO_42_326139906-14 51 -0.030649 hybrid +134_2-1 Q0 MARCO_25_1121894598-8 52 -0.031883 hybrid +134_2-1 Q0 MARCO_46_6429321-3 53 -0.032486 hybrid +134_2-1 Q0 MARCO_55_858850694-2 54 -0.038146 hybrid +134_2-1 Q0 MARCO_05_452936030-5 55 -0.042524 hybrid +134_2-1 Q0 MARCO_45_141106379-10 56 -0.042597 hybrid +134_2-1 Q0 MARCO_45_140347002-4 57 -0.042774 hybrid +134_2-1 Q0 MARCO_43_766434023-6 58 -0.045460 hybrid +134_2-1 Q0 MARCO_01_1033395166-6 59 -0.045939 hybrid +134_2-1 Q0 MARCO_41_1844228176-127 60 -0.048495 hybrid +134_2-1 Q0 MARCO_43_765969820-8 61 -0.048829 hybrid +134_2-1 Q0 MARCO_41_1845650597-3 62 -0.049261 hybrid +134_2-1 Q0 MARCO_50_2156613647-39 63 -0.050411 hybrid +134_2-1 Q0 MARCO_42_326139906-15 64 -0.051052 hybrid +134_2-1 Q0 MARCO_32_1527087147-15 65 -0.051322 hybrid +134_2-1 Q0 MARCO_50_2156613647-47 66 -0.052551 hybrid +134_2-1 Q0 MARCO_39_421692308-4 67 -0.052988 hybrid +134_2-1 Q0 MARCO_42_326139906-12 68 -0.053842 hybrid +134_2-1 Q0 MARCO_33_1242858838-9 69 -0.058450 hybrid +134_2-1 Q0 MARCO_41_2177907671-2 70 -0.060032 hybrid +134_2-1 Q0 MARCO_39_1521171638-15 71 -0.063047 hybrid +134_2-1 Q0 MARCO_39_1521949205-15 72 -0.063047 hybrid +134_2-1 Q0 MARCO_45_140600834-11 73 -0.063828 hybrid +134_2-1 Q0 MARCO_26_503353356-4 74 -0.064010 hybrid +134_2-1 Q0 MARCO_25_1119134737-4 75 -0.064442 hybrid +134_2-1 Q0 MARCO_36_892827898-6 76 -0.065363 hybrid +134_2-1 Q0 MARCO_20_74502139-10 77 -0.066576 hybrid +134_2-1 Q0 MARCO_45_141106379-1 78 -0.070429 hybrid +134_2-1 Q0 MARCO_46_8793828-19 79 -0.071392 hybrid +134_2-1 Q0 MARCO_23_1830325000-9 80 -0.072876 hybrid +134_2-1 Q0 MARCO_45_140776639-8 81 -0.076239 hybrid +134_2-1 Q0 MARCO_41_1844228176-80 82 -0.076791 hybrid +134_2-1 Q0 MARCO_20_696316050-14 83 -0.077921 hybrid +134_2-1 Q0 MARCO_20_696299228-13 84 -0.077921 hybrid +134_2-1 Q0 MARCO_41_337198690-14 85 -0.078327 hybrid +134_2-1 Q0 MARCO_41_1844228176-42 86 -0.079436 hybrid +134_2-1 Q0 MARCO_21_1433520323-4 87 -0.080451 hybrid +134_2-1 Q0 MARCO_20_696542242-6 88 -0.082783 hybrid +134_2-1 Q0 MARCO_20_696552158-6 89 -0.082783 hybrid +134_2-1 Q0 MARCO_41_1844228176-139 90 -0.083871 hybrid +134_2-1 Q0 MARCO_41_1844228176-24 91 -0.086813 hybrid +134_2-1 Q0 MARCO_17_2384950019-18 92 -0.089359 hybrid +134_2-1 Q0 MARCO_14_482882091-2 93 -0.089608 hybrid +134_2-1 Q0 MARCO_45_1022208653-5 94 -0.091399 hybrid +134_2-1 Q0 MARCO_22_834805999-9 95 -0.093164 hybrid +134_2-1 Q0 MARCO_45_141592868-6 96 -0.095773 hybrid +134_2-1 Q0 MARCO_41_1844228176-11 97 -0.096595 hybrid +134_2-1 Q0 MARCO_45_1021573417-8 98 -0.097012 hybrid +134_2-1 Q0 MARCO_45_140151900-2 99 -0.097454 hybrid +134_2-1 Q0 MARCO_10_75823671-1 100 -0.097647 hybrid +134_2-3 Q0 MARCO_26_156515181-16 1 0.500001 hybrid +134_2-3 Q0 MARCO_47_1589034627-14 2 0.017844 hybrid +134_2-3 Q0 MARCO_00_590373901-14 3 -0.145134 hybrid +134_2-3 Q0 MARCO_49_402206862-23 4 -0.159372 hybrid +134_2-3 Q0 MARCO_30_738605676-9 5 -0.163996 hybrid +134_2-3 Q0 MARCO_53_1041630128-10 6 -0.170493 hybrid +134_2-3 Q0 MARCO_55_1127900399-14 7 -0.173913 hybrid +134_2-3 Q0 MARCO_27_1111356564-18 8 -0.183231 hybrid +134_2-3 Q0 MARCO_37_1515282871-3 9 -0.184359 hybrid +134_2-3 Q0 MARCO_26_1551013371-6 10 -0.184606 hybrid +134_2-3 Q0 MARCO_49_1697473398-10 11 -0.211692 hybrid +134_2-3 Q0 MARCO_41_1197416817-15 12 -0.215589 hybrid +134_2-3 Q0 MARCO_29_32099060-2 13 -0.230484 hybrid +134_2-3 Q0 MARCO_37_1255561149-18 14 -0.231157 hybrid +134_2-3 Q0 MARCO_27_1208178303-3 15 -0.236075 hybrid +134_2-3 Q0 MARCO_24_1553824018-15 16 -0.236111 hybrid +134_2-3 Q0 MARCO_12_1451725123-23 17 -0.246846 hybrid +134_2-3 Q0 MARCO_27_1334112520-4 18 -0.260672 hybrid +134_2-3 Q0 MARCO_33_1243430503-1 19 -0.262058 hybrid +134_2-3 Q0 MARCO_00_1160217140-31 20 -0.265213 hybrid +134_2-3 Q0 MARCO_31_902968312-5 21 -0.265585 hybrid +134_2-3 Q0 MARCO_13_21179806-14 22 -0.270172 hybrid +134_2-3 Q0 MARCO_13_21179806-16 23 -0.270172 hybrid +134_2-3 Q0 MARCO_55_126048728-7 24 -0.276379 hybrid +134_2-3 Q0 MARCO_06_1716723295-4 25 -0.284179 hybrid +134_2-3 Q0 MARCO_28_40535134-5 26 -0.284843 hybrid +134_2-3 Q0 MARCO_37_1223731603-5 27 -0.285569 hybrid +134_2-3 Q0 MARCO_24_954107970-9 28 -0.288310 hybrid +134_2-3 Q0 MARCO_51_688646166-28 29 -0.289135 hybrid +134_2-3 Q0 MARCO_30_737679851-7 30 -0.291555 hybrid +134_2-3 Q0 MARCO_31_1656200838-14 31 -0.292391 hybrid +134_2-3 Q0 MARCO_20_22181678-15 32 -0.292595 hybrid +134_2-3 Q0 MARCO_50_2156613647-30 33 -0.295109 hybrid +134_2-3 Q0 MARCO_20_60360409-3 34 -0.298803 hybrid +134_2-3 Q0 MARCO_06_1718110484-1 35 -0.303259 hybrid +134_2-3 Q0 MARCO_25_233643081-28 36 -0.304465 hybrid +134_2-3 Q0 MARCO_40_821769764-3 37 -0.310518 hybrid +134_2-3 Q0 MARCO_50_1418025639-14 38 -0.317145 hybrid +134_2-3 Q0 MARCO_29_873227235-5 39 -0.318392 hybrid +134_2-3 Q0 MARCO_13_1664335635-8 40 -0.318717 hybrid +134_2-3 Q0 MARCO_45_162109460-5 41 -0.320233 hybrid +134_2-3 Q0 MARCO_21_1038412678-3 42 -0.324265 hybrid +134_2-3 Q0 MARCO_14_758032515-10 43 -0.324361 hybrid +134_2-3 Q0 MARCO_29_873576053-15 44 -0.327701 hybrid +134_2-3 Q0 MARCO_02_1569335028-5 45 -0.330672 hybrid +134_2-3 Q0 MARCO_46_383844485-3 46 -0.333836 hybrid +134_2-3 Q0 MARCO_22_502802513-10 47 -0.335835 hybrid +134_2-3 Q0 MARCO_50_2156613647-31 48 -0.335967 hybrid +134_2-3 Q0 MARCO_45_853752757-3 49 -0.336261 hybrid +134_2-3 Q0 MARCO_41_1844093907-2 50 -0.336371 hybrid +134_2-3 Q0 MARCO_53_1012374136-19 51 -0.338445 hybrid +134_2-3 Q0 MARCO_55_818003861-4 52 -0.340347 hybrid +134_2-3 Q0 MARCO_06_228099307-2 53 -0.340791 hybrid +134_2-3 Q0 MARCO_31_1440955351-13 54 -0.345361 hybrid +134_2-3 Q0 MARCO_57_1974509850-13 55 -0.346417 hybrid +134_2-3 Q0 MARCO_50_2156613647-39 56 -0.348483 hybrid +134_2-3 Q0 MARCO_22_1648858846-19 57 -0.348797 hybrid +134_2-3 Q0 MARCO_20_1106648205-8 58 -0.348987 hybrid +134_2-3 Q0 MARCO_40_739799637-36 59 -0.349831 hybrid +134_2-3 Q0 MARCO_42_1893888047-1 60 -0.352439 hybrid +134_2-3 Q0 MARCO_46_125793162-17 61 -0.352466 hybrid +134_2-3 Q0 MARCO_24_1833077-3 62 -0.355195 hybrid +134_2-3 Q0 MARCO_45_1583124704-6 63 -0.355892 hybrid +134_2-3 Q0 MARCO_59_942738593-14 64 -0.355919 hybrid +134_2-3 Q0 MARCO_42_264021260-44 65 -0.358357 hybrid +134_2-3 Q0 MARCO_10_653330942-4 66 -0.358713 hybrid +134_2-3 Q0 MARCO_50_1416666844-78 67 -0.359178 hybrid +134_2-3 Q0 MARCO_53_1044200540-2 68 -0.359900 hybrid +134_2-3 Q0 MARCO_21_1522889693-26 69 -0.360077 hybrid +134_2-3 Q0 MARCO_50_2394889593-12 70 -0.362970 hybrid +134_2-3 Q0 MARCO_49_1854990042-14 71 -0.363551 hybrid +134_2-3 Q0 MARCO_56_929086301-5 72 -0.364226 hybrid +134_2-3 Q0 MARCO_06_332035497-9 73 -0.365172 hybrid +134_2-3 Q0 MARCO_55_851938127-2 74 -0.365984 hybrid +134_2-3 Q0 MARCO_28_1323413327-2 75 -0.368251 hybrid +134_2-3 Q0 MARCO_33_1243288022-27 76 -0.368561 hybrid +134_2-3 Q0 MARCO_29_663237258-4 77 -0.369142 hybrid +134_2-3 Q0 MARCO_27_1208178303-1 78 -0.370027 hybrid +134_2-3 Q0 MARCO_50_2156613647-47 79 -0.370691 hybrid +134_2-3 Q0 MARCO_02_928674347-5 80 -0.370846 hybrid +134_2-3 Q0 MARCO_24_136849686-8 81 -0.371272 hybrid +134_2-3 Q0 MARCO_21_1039590847-9 82 -0.371629 hybrid +134_2-3 Q0 MARCO_30_1134054641-1 83 -0.371940 hybrid +134_2-3 Q0 MARCO_50_2156613647-35 84 -0.372337 hybrid +134_2-3 Q0 MARCO_26_154974859-3 85 -0.372669 hybrid +134_2-3 Q0 MARCO_50_1664874052-13 86 -0.373129 hybrid +134_2-3 Q0 MARCO_26_154974859-4 87 -0.374237 hybrid +134_2-3 Q0 MARCO_48_1597337759-7 88 -0.374351 hybrid +134_2-3 Q0 MARCO_20_362506271-10 89 -0.374959 hybrid +134_2-3 Q0 MARCO_37_1224769843-22 90 -0.375667 hybrid +134_2-3 Q0 MARCO_50_2156613647-45 91 -0.376647 hybrid +134_2-3 Q0 MARCO_19_2004469479-7 92 -0.376679 hybrid +134_2-3 Q0 MARCO_26_1552418654-15 93 -0.378437 hybrid +134_2-3 Q0 MARCO_50_1416946321-4 94 -0.378453 hybrid +134_2-3 Q0 MARCO_49_928296898-11 95 -0.379096 hybrid +134_2-3 Q0 MARCO_51_741472353-35 96 -0.379321 hybrid +134_2-3 Q0 MARCO_13_1696847436-11 97 -0.379825 hybrid +134_2-3 Q0 MARCO_01_1034100509-11 98 -0.380274 hybrid +134_2-3 Q0 MARCO_50_1416990440-3 99 -0.380585 hybrid +134_2-3 Q0 MARCO_12_1748101342-21 100 -0.380698 hybrid +134_3-1 Q0 MARCO_53_1516283572-1 1 0.500002 hybrid +134_3-1 Q0 MARCO_53_1515731808-1 2 0.377710 hybrid +134_3-1 Q0 MARCO_24_1011881229-6 3 0.321671 hybrid +134_3-1 Q0 MARCO_35_809589077-4 4 0.239475 hybrid +134_3-1 Q0 MARCO_26_503669016-8 5 0.232094 hybrid +134_3-1 Q0 MARCO_19_2499609270-6 6 0.205469 hybrid +134_3-1 Q0 MARCO_41_1844228176-80 7 0.190952 hybrid +134_3-1 Q0 MARCO_28_650117525-5 8 0.181226 hybrid +134_3-1 Q0 MARCO_36_897237880-5 9 0.171214 hybrid +134_3-1 Q0 MARCO_41_1844228176-90 10 0.168240 hybrid +134_3-1 Q0 MARCO_36_955877321-3 11 0.165391 hybrid +134_3-1 Q0 MARCO_14_482895059-4 12 0.129938 hybrid +134_3-1 Q0 MARCO_20_696250341-8 13 0.126363 hybrid +134_3-1 Q0 MARCO_28_396743788-2 14 0.118861 hybrid +134_3-1 Q0 MARCO_54_173805246-2 15 0.111494 hybrid +134_3-1 Q0 MARCO_50_1426285814-16 16 0.108090 hybrid +134_3-1 Q0 MARCO_53_1516283572-6 17 0.100293 hybrid +134_3-1 Q0 MARCO_36_888475839-7 18 0.086432 hybrid +134_3-1 Q0 MARCO_14_1778625662-11 19 0.072035 hybrid +134_3-1 Q0 MARCO_53_1516283572-2 20 0.059729 hybrid +134_3-1 Q0 MARCO_41_1844228176-110 21 0.050914 hybrid +134_3-1 Q0 MARCO_48_372143159-6 22 0.036637 hybrid +134_3-1 Q0 MARCO_36_893872123-3 23 0.034700 hybrid +134_3-1 Q0 MARCO_53_1527636898-4 24 0.034219 hybrid +134_3-1 Q0 MARCO_55_858822557-6 25 0.032646 hybrid +134_3-1 Q0 MARCO_55_856823106-6 26 0.031472 hybrid +134_3-1 Q0 MARCO_41_1844228176-148 27 0.021977 hybrid +134_3-1 Q0 MARCO_41_1844228176-58 28 0.020691 hybrid +134_3-1 Q0 MARCO_36_891097770-2 29 0.014753 hybrid +134_3-1 Q0 MARCO_53_1516283572-4 30 0.007141 hybrid +134_3-1 Q0 MARCO_36_994407273-17 31 -0.000698 hybrid +134_3-1 Q0 MARCO_36_946036367-6 32 -0.005499 hybrid +134_3-1 Q0 MARCO_32_436194150-2 33 -0.006017 hybrid +134_3-1 Q0 MARCO_26_503360971-6 34 -0.008940 hybrid +134_3-1 Q0 MARCO_46_8407155-23 35 -0.014994 hybrid +134_3-1 Q0 MARCO_11_753802296-9 36 -0.016312 hybrid +134_3-1 Q0 MARCO_26_503669016-10 37 -0.019961 hybrid +134_3-1 Q0 MARCO_44_609597381-1 38 -0.020613 hybrid +134_3-1 Q0 MARCO_46_383106750-2 39 -0.020654 hybrid +134_3-1 Q0 MARCO_41_2176909094-4 40 -0.033752 hybrid +134_3-1 Q0 MARCO_55_855892818-2 41 -0.034075 hybrid +134_3-1 Q0 MARCO_46_9276239-5 42 -0.034857 hybrid +134_3-1 Q0 MARCO_20_696573438-12 43 -0.045619 hybrid +134_3-1 Q0 MARCO_20_696604540-13 44 -0.045619 hybrid +134_3-1 Q0 MARCO_20_696589491-12 45 -0.045619 hybrid +134_3-1 Q0 MARCO_24_1139051671-7 46 -0.054619 hybrid +134_3-1 Q0 MARCO_53_1508745718-2 47 -0.054794 hybrid +134_3-1 Q0 MARCO_40_559238751-10 48 -0.055793 hybrid +134_3-1 Q0 MARCO_28_650117525-8 49 -0.056857 hybrid +134_3-1 Q0 MARCO_53_1527636898-5 50 -0.057463 hybrid +134_3-1 Q0 MARCO_45_141802555-3 51 -0.059956 hybrid +134_3-1 Q0 MARCO_10_75748456-32 52 -0.062194 hybrid +134_3-1 Q0 MARCO_10_75823671-1 53 -0.064603 hybrid +134_3-1 Q0 MARCO_20_696641716-4 54 -0.064701 hybrid +134_3-1 Q0 MARCO_20_696632913-3 55 -0.064701 hybrid +134_3-1 Q0 MARCO_45_140269524-8 56 -0.065843 hybrid +134_3-1 Q0 MARCO_20_696667996-4 57 -0.069903 hybrid +134_3-1 Q0 MARCO_20_696691054-4 58 -0.069903 hybrid +134_3-1 Q0 MARCO_01_1032438614-4 59 -0.069903 hybrid +134_3-1 Q0 MARCO_45_140503020-3 60 -0.075874 hybrid +134_3-1 Q0 MARCO_10_103102989-16 61 -0.084268 hybrid +134_3-1 Q0 MARCO_36_895125526-18 62 -0.084453 hybrid +134_3-1 Q0 MARCO_41_2177438830-8 63 -0.085678 hybrid +134_3-1 Q0 MARCO_35_809216061-6 64 -0.087797 hybrid +134_3-1 Q0 MARCO_23_693877969-7 65 -0.090941 hybrid +134_3-1 Q0 MARCO_41_1844228176-83 66 -0.092223 hybrid +134_3-1 Q0 MARCO_55_851572728-6 67 -0.093772 hybrid +134_3-1 Q0 MARCO_05_1701117175-3 68 -0.098036 hybrid +134_3-1 Q0 MARCO_41_1844228176-14 69 -0.099682 hybrid +134_3-1 Q0 MARCO_36_900251720-3 70 -0.103414 hybrid +134_3-1 Q0 MARCO_45_1019718891-3 71 -0.105403 hybrid +134_3-1 Q0 MARCO_20_696389192-5 72 -0.107443 hybrid +134_3-1 Q0 MARCO_20_696374747-5 73 -0.107443 hybrid +134_3-1 Q0 MARCO_20_696359076-7 74 -0.107443 hybrid +134_3-1 Q0 MARCO_41_1844228176-76 75 -0.111924 hybrid +134_3-1 Q0 MARCO_28_649706364-5 76 -0.117404 hybrid +134_3-1 Q0 MARCO_46_8407155-24 77 -0.119398 hybrid +134_3-1 Q0 MARCO_45_140503020-2 78 -0.119671 hybrid +134_3-1 Q0 MARCO_46_126828214-4 79 -0.121419 hybrid +134_3-1 Q0 MARCO_50_1447501450-2 80 -0.122598 hybrid +134_3-1 Q0 MARCO_50_1421797340-27 81 -0.122695 hybrid +134_3-1 Q0 MARCO_45_1019718891-26 82 -0.128046 hybrid +134_3-1 Q0 MARCO_43_766020805-3 83 -0.128578 hybrid +134_3-1 Q0 MARCO_53_1516283572-7 84 -0.130053 hybrid +134_3-1 Q0 MARCO_20_696316050-15 85 -0.130095 hybrid +134_3-1 Q0 MARCO_20_696299228-14 86 -0.130095 hybrid +134_3-1 Q0 MARCO_58_1008654421-8 87 -0.132315 hybrid +134_3-1 Q0 MARCO_26_503360971-1 88 -0.132578 hybrid +134_3-1 Q0 MARCO_50_1938204003-10 89 -0.133244 hybrid +134_3-1 Q0 MARCO_46_7522494-1 90 -0.137508 hybrid +134_3-1 Q0 MARCO_36_892337274-10 91 -0.138415 hybrid +134_3-1 Q0 MARCO_14_37422169-13 92 -0.139876 hybrid +134_3-1 Q0 MARCO_35_307226174-6 93 -0.140806 hybrid +134_3-1 Q0 MARCO_55_860157065-4 94 -0.142401 hybrid +134_3-1 Q0 MARCO_34_547192738-2 95 -0.146198 hybrid +134_3-1 Q0 MARCO_41_1844228176-75 96 -0.148057 hybrid +134_3-1 Q0 MARCO_35_314553455-11 97 -0.148908 hybrid +134_3-1 Q0 MARCO_41_631050263-5 98 -0.151521 hybrid +134_3-1 Q0 MARCO_55_849410512-8 99 -0.151706 hybrid +134_3-1 Q0 MARCO_59_890827513-4 100 -0.153316 hybrid +134_3-3 Q0 MARCO_41_1844228176-76 1 0.500000 hybrid +134_3-3 Q0 MARCO_41_1844228176-30 2 0.400170 hybrid +134_3-3 Q0 MARCO_20_696573438-12 3 0.341274 hybrid +134_3-3 Q0 MARCO_20_696604540-13 4 0.341274 hybrid +134_3-3 Q0 MARCO_20_696589491-12 5 0.341274 hybrid +134_3-3 Q0 MARCO_55_853878381-30 6 0.331850 hybrid +134_3-3 Q0 MARCO_41_1844228176-16 7 0.321896 hybrid +134_3-3 Q0 MARCO_36_955877321-3 8 0.302721 hybrid +134_3-3 Q0 MARCO_36_897237880-5 9 0.299506 hybrid +134_3-3 Q0 MARCO_17_2384950019-18 10 0.271307 hybrid +134_3-3 Q0 KILT_12629600-10 11 0.233887 hybrid +134_3-3 Q0 MARCO_36_889469913-8 12 0.223301 hybrid +134_3-3 Q0 MARCO_43_766448308-7 13 0.192136 hybrid +134_3-3 Q0 MARCO_41_1844228176-80 14 0.188746 hybrid +134_3-3 Q0 MARCO_36_900453075-2 15 0.170084 hybrid +134_3-3 Q0 MARCO_41_1844228176-90 16 0.165606 hybrid +134_3-3 Q0 MARCO_41_1844228176-81 17 0.163108 hybrid +134_3-3 Q0 MARCO_36_895648080-4 18 0.149967 hybrid +134_3-3 Q0 MARCO_41_1844228176-52 19 0.142230 hybrid +134_3-3 Q0 MARCO_36_994407273-17 20 0.117014 hybrid +134_3-3 Q0 MARCO_41_1844228176-29 21 0.114093 hybrid +134_3-3 Q0 MARCO_26_503669016-8 22 0.111820 hybrid +134_3-3 Q0 MARCO_41_1844228176-116 23 0.088764 hybrid +134_3-3 Q0 MARCO_10_75823671-1 24 0.087738 hybrid +134_3-3 Q0 MARCO_24_1011881229-6 25 0.083903 hybrid +134_3-3 Q0 MARCO_41_2177166206-4 26 0.082645 hybrid +134_3-3 Q0 MARCO_55_857028005-4 27 0.075652 hybrid +134_3-3 Q0 MARCO_40_559238751-10 28 0.069132 hybrid +134_3-3 Q0 MARCO_58_1007810614-6 29 0.062128 hybrid +134_3-3 Q0 MARCO_01_1033106565-8 30 0.062038 hybrid +134_3-3 Q0 MARCO_29_969406541-7 31 0.061716 hybrid +134_3-3 Q0 MARCO_41_2176883837-4 32 0.059364 hybrid +134_3-3 Q0 MARCO_41_1844228176-106 33 0.059263 hybrid +134_3-3 Q0 MARCO_41_1844228176-110 34 0.058242 hybrid +134_3-3 Q0 MARCO_20_696250341-8 35 0.050143 hybrid +134_3-3 Q0 MARCO_41_1844228176-10 36 0.049709 hybrid +134_3-3 Q0 MARCO_45_139958685-4 37 0.041909 hybrid +134_3-3 Q0 MARCO_45_1035006416-7 38 0.032790 hybrid +134_3-3 Q0 MARCO_01_943859152-2 39 0.032333 hybrid +134_3-3 Q0 MARCO_41_2177466346-1 40 0.031357 hybrid +134_3-3 Q0 MARCO_41_1844228176-142 41 0.025289 hybrid +134_3-3 Q0 MARCO_41_1844228176-37 42 0.024804 hybrid +134_3-3 Q0 MARCO_50_1447501450-2 43 0.019790 hybrid +134_3-3 Q0 MARCO_45_1021573417-8 44 0.018803 hybrid +134_3-3 Q0 MARCO_19_2499609270-6 45 0.016863 hybrid +134_3-3 Q0 MARCO_21_1206598467-2 46 0.016079 hybrid +134_3-3 Q0 MARCO_20_697575922-5 47 0.013265 hybrid +134_3-3 Q0 MARCO_41_1844228176-51 48 0.012379 hybrid +134_3-3 Q0 MARCO_05_452872743-4 49 0.010885 hybrid +134_3-3 Q0 MARCO_05_485701958-3 50 0.002628 hybrid +134_3-3 Q0 MARCO_41_1844228176-45 51 -0.003604 hybrid +134_3-3 Q0 MARCO_26_503360971-6 52 -0.007540 hybrid +134_3-3 Q0 MARCO_36_1430665354-3 53 -0.020636 hybrid +134_3-3 Q0 MARCO_41_2177438830-3 54 -0.020862 hybrid +134_3-3 Q0 MARCO_41_1844228176-58 55 -0.024330 hybrid +134_3-3 Q0 MARCO_52_820712028-2 56 -0.025035 hybrid +134_3-3 Q0 MARCO_55_849682161-4 57 -0.026834 hybrid +134_3-3 Q0 MARCO_41_1844228176-9 58 -0.030015 hybrid +134_3-3 Q0 MARCO_14_482895059-4 59 -0.030105 hybrid +134_3-3 Q0 MARCO_46_8793828-22 60 -0.030675 hybrid +134_3-3 Q0 MARCO_00_624816590-2 61 -0.032468 hybrid +134_3-3 Q0 MARCO_40_1376965248-1 62 -0.032479 hybrid +134_3-3 Q0 MARCO_41_1844228176-28 63 -0.038114 hybrid +134_3-3 Q0 MARCO_58_1007810614-5 64 -0.043178 hybrid +134_3-3 Q0 MARCO_45_140007453-13 65 -0.047222 hybrid +134_3-3 Q0 MARCO_06_1903074913-4 66 -0.047459 hybrid +134_3-3 Q0 MARCO_36_891018356-4 67 -0.050109 hybrid +134_3-3 Q0 MARCO_28_650117525-8 68 -0.052416 hybrid +134_3-3 Q0 MARCO_14_1778625662-11 69 -0.054666 hybrid +134_3-3 Q0 MARCO_43_766226005-2 70 -0.055738 hybrid +134_3-3 Q0 MARCO_51_117793086-4 71 -0.057813 hybrid +134_3-3 Q0 MARCO_46_9276239-5 72 -0.059094 hybrid +134_3-3 Q0 MARCO_41_2179085404-4 73 -0.060740 hybrid +134_3-3 Q0 MARCO_28_1146135173-1 74 -0.060972 hybrid +134_3-3 Q0 MARCO_45_1025014902-7 75 -0.061654 hybrid +134_3-3 Q0 MARCO_38_1375713442-3 76 -0.069956 hybrid +134_3-3 Q0 MARCO_42_326139906-12 77 -0.072804 hybrid +134_3-3 Q0 MARCO_40_841479864-6 78 -0.080068 hybrid +134_3-3 Q0 MARCO_24_2725073-4 79 -0.081608 hybrid +134_3-3 Q0 MARCO_41_1844228176-132 80 -0.081681 hybrid +134_3-3 Q0 MARCO_53_1515731808-1 81 -0.088584 hybrid +134_3-3 Q0 MARCO_41_1844228176-69 82 -0.090868 hybrid +134_3-3 Q0 MARCO_41_1844228176-72 83 -0.094365 hybrid +134_3-3 Q0 MARCO_41_1844228176-17 84 -0.097399 hybrid +134_3-3 Q0 MARCO_41_1844228176-83 85 -0.103022 hybrid +134_3-3 Q0 MARCO_42_326139906-14 86 -0.107178 hybrid +134_3-3 Q0 MARCO_19_152077095-9 87 -0.107883 hybrid +134_3-3 Q0 MARCO_36_888936245-20 88 -0.108989 hybrid +134_3-3 Q0 MARCO_41_1844228176-113 89 -0.109180 hybrid +134_3-3 Q0 MARCO_41_1170292318-26 90 -0.110929 hybrid +134_3-3 Q0 MARCO_32_1275662319-6 91 -0.112976 hybrid +134_3-3 Q0 MARCO_41_1844228176-53 92 -0.117138 hybrid +134_3-3 Q0 MARCO_36_897203131-7 93 -0.118988 hybrid +134_3-3 Q0 MARCO_53_1470578692-4 94 -0.119050 hybrid +134_3-3 Q0 MARCO_36_897377586-2 95 -0.124267 hybrid +134_3-3 Q0 MARCO_41_1844228176-82 96 -0.126686 hybrid +134_3-3 Q0 KILT_32001451-6 97 -0.127758 hybrid +134_3-3 Q0 MARCO_58_1007801669-3 98 -0.128750 hybrid +134_3-3 Q0 MARCO_58_1006713197-10 99 -0.133792 hybrid +134_3-3 Q0 MARCO_35_407405331-3 100 -0.134734 hybrid +134_3-5 Q0 MARCO_32_372752547-3 1 0.500003 hybrid +134_3-5 Q0 MARCO_10_802021811-1 2 0.439847 hybrid +134_3-5 Q0 MARCO_05_1701117175-3 3 0.424915 hybrid +134_3-5 Q0 MARCO_23_694183356-18 4 0.393100 hybrid +134_3-5 Q0 MARCO_53_1529987863-2 5 0.378770 hybrid +134_3-5 Q0 KILT_7842528-4 6 0.364918 hybrid +134_3-5 Q0 MARCO_28_655583201-4 7 0.349904 hybrid +134_3-5 Q0 MARCO_48_372143159-8 8 0.349073 hybrid +134_3-5 Q0 MARCO_28_342834928-2 9 0.346325 hybrid +134_3-5 Q0 MARCO_35_809268425-18 10 0.342727 hybrid +134_3-5 Q0 MARCO_19_478710235-16 11 0.318791 hybrid +134_3-5 Q0 MARCO_05_452627767-1 12 0.318083 hybrid +134_3-5 Q0 MARCO_19_2499609270-6 13 0.293882 hybrid +134_3-5 Q0 MARCO_26_503669016-15 14 0.278862 hybrid +134_3-5 Q0 MARCO_19_2499609270-5 15 0.273649 hybrid +134_3-5 Q0 MARCO_06_1902727127-2 16 0.269509 hybrid +134_3-5 Q0 MARCO_22_1606826381-4 17 0.263712 hybrid +134_3-5 Q0 MARCO_46_776511116-7 18 0.254849 hybrid +134_3-5 Q0 MARCO_07_1251994066-3 19 0.248604 hybrid +134_3-5 Q0 MARCO_25_1141294561-1 20 0.242701 hybrid +134_3-5 Q0 MARCO_22_1492816937-5 21 0.240743 hybrid +134_3-5 Q0 MARCO_45_1028844881-3 22 0.236261 hybrid +134_3-5 Q0 MARCO_50_526651767-6 23 0.233189 hybrid +134_3-5 Q0 MARCO_00_624415512-3 24 0.232452 hybrid +134_3-5 Q0 MARCO_49_225090692-4 25 0.227486 hybrid +134_3-5 Q0 MARCO_45_1028844881-1 26 0.219767 hybrid +134_3-5 Q0 MARCO_33_354489076-7 27 0.217774 hybrid +134_3-5 Q0 MARCO_53_1330928078-2 28 0.210255 hybrid +134_3-5 Q0 MARCO_28_655310264-3 29 0.197016 hybrid +134_3-5 Q0 MARCO_05_453313072-8 30 0.180852 hybrid +134_3-5 Q0 MARCO_45_847153758-9 31 0.179230 hybrid +134_3-5 Q0 MARCO_45_140269524-8 32 0.172349 hybrid +134_3-5 Q0 MARCO_50_696797049-3 33 0.168993 hybrid +134_3-5 Q0 MARCO_28_342834928-1 34 0.167979 hybrid +134_3-5 Q0 MARCO_23_693877969-8 35 0.162772 hybrid +134_3-5 Q0 MARCO_12_1144067591-6 36 0.161345 hybrid +134_3-5 Q0 MARCO_45_847153758-12 37 0.160584 hybrid +134_3-5 Q0 MARCO_50_1454753708-14 38 0.157618 hybrid +134_3-5 Q0 MARCO_25_1141294561-2 39 0.152440 hybrid +134_3-5 Q0 MARCO_44_1928230096-1 40 0.151815 hybrid +134_3-5 Q0 MARCO_17_2386805231-2 41 0.149102 hybrid +134_3-5 Q0 MARCO_36_897203131-1 42 0.145281 hybrid +134_3-5 Q0 MARCO_36_897237880-5 43 0.145057 hybrid +134_3-5 Q0 MARCO_36_955877321-3 44 0.142851 hybrid +134_3-5 Q0 MARCO_40_1191133240-4 45 0.138865 hybrid +134_3-5 Q0 MARCO_26_503360971-6 46 0.130178 hybrid +134_3-5 Q0 MARCO_45_847153758-11 47 0.126599 hybrid +134_3-5 Q0 KILT_19644137-1 48 0.113366 hybrid +134_3-5 Q0 MARCO_14_37550700-11 49 0.109314 hybrid +134_3-5 Q0 MARCO_26_503669016-8 50 0.109138 hybrid +134_3-5 Q0 MARCO_10_75823671-19 51 0.101984 hybrid +134_3-5 Q0 MARCO_45_1033982964-3 52 0.099201 hybrid +134_3-5 Q0 MARCO_35_809670314-1 53 0.095397 hybrid +134_3-5 Q0 MARCO_28_1321427814-5 54 0.094642 hybrid +134_3-5 Q0 MARCO_50_1407085410-15 55 0.092160 hybrid +134_3-5 Q0 MARCO_28_396743788-2 56 0.091452 hybrid +134_3-5 Q0 MARCO_53_1516283572-6 57 0.090992 hybrid +134_3-5 Q0 MARCO_14_1778194735-25 58 0.090727 hybrid +134_3-5 Q0 MARCO_50_1407085410-14 59 0.082884 hybrid +134_3-5 Q0 MARCO_49_795812139-2 60 0.077718 hybrid +134_3-5 Q0 MARCO_48_761675089-1 61 0.074044 hybrid +134_3-5 Q0 MARCO_28_342886080-4 62 0.073708 hybrid +134_3-5 Q0 MARCO_42_324695763-24 63 0.069792 hybrid +134_3-5 Q0 MARCO_45_847153758-10 64 0.068424 hybrid +134_3-5 Q0 MARCO_36_888475839-7 65 0.065210 hybrid +134_3-5 Q0 MARCO_46_526643564-7 66 0.056813 hybrid +134_3-5 Q0 MARCO_35_315397537-7 67 0.055250 hybrid +134_3-5 Q0 MARCO_10_802021811-2 68 0.055032 hybrid +134_3-5 Q0 MARCO_55_857221820-11 69 0.048663 hybrid +134_3-5 Q0 MARCO_28_528530551-3 70 0.043580 hybrid +134_3-5 Q0 MARCO_20_626296806-2 71 0.037671 hybrid +134_3-5 Q0 MARCO_41_1844228176-16 72 0.036810 hybrid +134_3-5 Q0 MARCO_41_1389405756-10 73 0.033991 hybrid +134_3-5 Q0 MARCO_20_696250341-8 74 0.032428 hybrid +134_3-5 Q0 MARCO_05_484037309-2 75 0.031520 hybrid +134_3-5 Q0 MARCO_39_1565309992-15 76 0.031396 hybrid +134_3-5 Q0 MARCO_50_1617597860-5 77 0.029167 hybrid +134_3-5 Q0 MARCO_17_2379760981-10 78 0.028601 hybrid +134_3-5 Q0 MARCO_50_1511237017-26 79 0.028483 hybrid +134_3-5 Q0 MARCO_30_1128637179-1 80 0.025753 hybrid +134_3-5 Q0 MARCO_19_2499609270-4 81 0.025576 hybrid +134_3-5 Q0 MARCO_46_526643564-6 82 0.024691 hybrid +134_3-5 Q0 MARCO_45_140269524-9 83 0.018287 hybrid +134_3-5 Q0 MARCO_55_765805199-12 84 0.013905 hybrid +134_3-5 Q0 MARCO_28_342886080-5 85 0.011659 hybrid +134_3-5 Q0 MARCO_06_1902246853-2 86 0.004499 hybrid +134_3-5 Q0 MARCO_45_847153758-7 87 -0.000372 hybrid +134_3-5 Q0 MARCO_35_809268425-2 88 -0.000896 hybrid +134_3-5 Q0 MARCO_52_821634475-1 89 -0.001462 hybrid +134_3-5 Q0 KILT_19644137-9 90 -0.002907 hybrid +134_3-5 Q0 MARCO_48_372143159-4 91 -0.004057 hybrid +134_3-5 Q0 MARCO_39_1567488621-16 92 -0.004393 hybrid +134_3-5 Q0 MARCO_22_247894220-8 93 -0.007855 hybrid +134_3-5 Q0 MARCO_48_372143159-7 94 -0.009435 hybrid +134_3-5 Q0 MARCO_53_1516373047-2 95 -0.010172 hybrid +134_3-5 Q0 MARCO_53_1513031902-2 96 -0.010296 hybrid +134_3-5 Q0 KILT_19644137-8 97 -0.012260 hybrid +134_3-5 Q0 MARCO_26_503669016-5 98 -0.018057 hybrid +134_3-5 Q0 MARCO_46_118887091-8 99 -0.018452 hybrid +134_3-5 Q0 MARCO_55_853944860-7 100 -0.019413 hybrid +134_4-2 Q0 MARCO_50_526620685-3 1 0.499998 hybrid +134_4-2 Q0 MARCO_37_1257839615-21 2 0.290701 hybrid +134_4-2 Q0 MARCO_12_146558722-138 3 0.180170 hybrid +134_4-2 Q0 MARCO_50_1619751682-31 4 0.091319 hybrid +134_4-2 Q0 MARCO_37_1250554887-3 5 0.087495 hybrid +134_4-2 Q0 MARCO_35_423466944-12 6 0.064780 hybrid +134_4-2 Q0 MARCO_35_423556126-15 7 0.064780 hybrid +134_4-2 Q0 MARCO_37_1259157473-3 8 0.025962 hybrid +134_4-2 Q0 MARCO_59_890373394-2 9 0.020172 hybrid +134_4-2 Q0 MARCO_50_495632349-10 10 0.014147 hybrid +134_4-2 Q0 MARCO_50_518336839-7 11 0.007764 hybrid +134_4-2 Q0 MARCO_39_1370292640-9 12 0.000992 hybrid +134_4-2 Q0 MARCO_14_481847784-7 13 -0.001591 hybrid +134_4-2 Q0 MARCO_53_360364865-6 14 -0.018656 hybrid +134_4-2 Q0 MARCO_37_1257347277-2 15 -0.025948 hybrid +134_4-2 Q0 MARCO_35_423875818-18 16 -0.032161 hybrid +134_4-2 Q0 MARCO_36_566978935-4 17 -0.033986 hybrid +134_4-2 Q0 MARCO_13_329915358-10 18 -0.037060 hybrid +134_4-2 Q0 MARCO_04_1212117439-3 19 -0.038110 hybrid +134_4-2 Q0 MARCO_45_977129581-6 20 -0.063264 hybrid +134_4-2 Q0 MARCO_51_740155734-2 21 -0.066695 hybrid +134_4-2 Q0 MARCO_37_1249816047-10 22 -0.070996 hybrid +134_4-2 Q0 MARCO_13_330127940-3 23 -0.076188 hybrid +134_4-2 Q0 MARCO_03_944003118-2 24 -0.091604 hybrid +134_4-2 Q0 MARCO_20_1107663447-1 25 -0.100653 hybrid +134_4-2 Q0 MARCO_37_1257556464-10 26 -0.108388 hybrid +134_4-2 Q0 MARCO_37_1252493819-16 27 -0.117346 hybrid +134_4-2 Q0 MARCO_59_883652403-3 28 -0.119219 hybrid +134_4-2 Q0 MARCO_50_1619751682-37 29 -0.130071 hybrid +134_4-2 Q0 MARCO_08_234567919-3 30 -0.131691 hybrid +134_4-2 Q0 MARCO_13_329674649-22 31 -0.137908 hybrid +134_4-2 Q0 MARCO_42_1102232941-13 32 -0.144077 hybrid +134_4-2 Q0 MARCO_41_2073818106-6 33 -0.146989 hybrid +134_4-2 Q0 MARCO_37_1248147116-6 34 -0.148396 hybrid +134_4-2 Q0 MARCO_42_1102370790-12 35 -0.153046 hybrid +134_4-2 Q0 MARCO_37_1251985644-10 36 -0.153346 hybrid +134_4-2 Q0 MARCO_37_1256573234-9 37 -0.156315 hybrid +134_4-2 Q0 MARCO_33_1316748866-5 38 -0.157365 hybrid +134_4-2 Q0 MARCO_53_781749984-5 39 -0.157982 hybrid +134_4-2 Q0 MARCO_41_1818984171-4 40 -0.164541 hybrid +134_4-2 Q0 MARCO_37_1251355289-7 41 -0.165760 hybrid +134_4-2 Q0 MARCO_37_1255807333-3 42 -0.168015 hybrid +134_4-2 Q0 MARCO_37_1255424093-2 43 -0.169805 hybrid +134_4-2 Q0 MARCO_50_1673934407-53 44 -0.170913 hybrid +134_4-2 Q0 MARCO_41_920444684-4 45 -0.172009 hybrid +134_4-2 Q0 MARCO_37_1252031931-8 46 -0.172482 hybrid +134_4-2 Q0 MARCO_37_1256074640-15 47 -0.173268 hybrid +134_4-2 Q0 MARCO_37_1256703840-2 48 -0.173384 hybrid +134_4-2 Q0 MARCO_37_1251779093-9 49 -0.174235 hybrid +134_4-2 Q0 MARCO_45_978056140-15 50 -0.175444 hybrid +134_4-2 Q0 MARCO_45_976945832-18 51 -0.175444 hybrid +134_4-2 Q0 MARCO_37_1253965233-2 52 -0.176061 hybrid +134_4-2 Q0 MARCO_00_334916364-3 53 -0.176111 hybrid +134_4-2 Q0 MARCO_20_1578300026-2 54 -0.178778 hybrid +134_4-2 Q0 MARCO_37_1254840991-6 55 -0.179153 hybrid +134_4-2 Q0 MARCO_50_1400295147-10 56 -0.180592 hybrid +134_4-2 Q0 MARCO_15_615368190-7 57 -0.183143 hybrid +134_4-2 Q0 MARCO_56_507761242-9 58 -0.187249 hybrid +134_4-2 Q0 MARCO_37_832879573-5 59 -0.187487 hybrid +134_4-2 Q0 MARCO_24_650939427-5 60 -0.188696 hybrid +134_4-2 Q0 MARCO_21_247798810-7 61 -0.188775 hybrid +134_4-2 Q0 MARCO_37_1250629869-12 62 -0.189244 hybrid +134_4-2 Q0 MARCO_20_1376789066-11 63 -0.193224 hybrid +134_4-2 Q0 MARCO_37_1255821693-13 64 -0.194945 hybrid +134_4-2 Q0 MARCO_21_1150177262-8 65 -0.195370 hybrid +134_4-2 Q0 MARCO_42_1100677022-6 66 -0.195540 hybrid +134_4-2 Q0 MARCO_14_308354847-5 67 -0.197275 hybrid +134_4-2 Q0 MARCO_36_1365573713-6 68 -0.200382 hybrid +134_4-2 Q0 MARCO_11_600202628-2 69 -0.203073 hybrid +134_4-2 Q0 MARCO_37_1255821693-2 70 -0.203539 hybrid +134_4-2 Q0 MARCO_10_794147460-6 71 -0.204661 hybrid +134_4-2 Q0 MARCO_00_1002843952-4 72 -0.204718 hybrid +134_4-2 Q0 MARCO_30_1650113156-12 73 -0.206104 hybrid +134_4-2 Q0 MARCO_26_1550847752-14 74 -0.206789 hybrid +134_4-2 Q0 MARCO_50_493833720-2 75 -0.211241 hybrid +134_4-2 Q0 MARCO_45_978348214-3 76 -0.211624 hybrid +134_4-2 Q0 MARCO_40_1270506276-2 77 -0.214568 hybrid +134_4-2 Q0 MARCO_13_329740058-7 78 -0.215708 hybrid +134_4-2 Q0 MARCO_34_1665249748-8 79 -0.215860 hybrid +134_4-2 Q0 MARCO_45_979680455-3 80 -0.216260 hybrid +134_4-2 Q0 MARCO_37_1252254946-9 81 -0.216725 hybrid +134_4-2 Q0 MARCO_37_1252942692-4 82 -0.218677 hybrid +134_4-2 Q0 MARCO_56_507632087-2 83 -0.219348 hybrid +134_4-2 Q0 MARCO_26_1550810998-24 84 -0.219716 hybrid +134_4-2 Q0 MARCO_40_1267224413-8 85 -0.221004 hybrid +134_4-2 Q0 MARCO_52_1376629405-2 86 -0.221069 hybrid +134_4-2 Q0 MARCO_35_984735588-3 87 -0.224313 hybrid +134_4-2 Q0 MARCO_37_1259157473-9 88 -0.224472 hybrid +134_4-2 Q0 MARCO_37_1250646593-18 89 -0.225146 hybrid +134_4-2 Q0 MARCO_26_1546739462-7 90 -0.225283 hybrid +134_4-2 Q0 MARCO_13_329722332-2 91 -0.225312 hybrid +134_4-2 Q0 MARCO_26_729899077-11 92 -0.227646 hybrid +134_4-2 Q0 MARCO_37_1249471702-32 93 -0.227780 hybrid +134_4-2 Q0 MARCO_26_1060298793-5 94 -0.228206 hybrid +134_4-2 Q0 MARCO_20_1107694110-3 95 -0.229930 hybrid +134_4-2 Q0 MARCO_26_1550865100-3 96 -0.233026 hybrid +134_4-2 Q0 MARCO_53_615337183-11 97 -0.234141 hybrid +134_4-2 Q0 MARCO_46_257358100-2 98 -0.234397 hybrid +134_4-2 Q0 MARCO_37_1249914585-6 99 -0.235371 hybrid +134_4-2 Q0 MARCO_13_330127940-5 100 -0.236659 hybrid +134_4-4 Q0 MARCO_41_1845354456-6 1 0.500000 hybrid +134_4-4 Q0 MARCO_22_1648495958-1 2 0.403708 hybrid +134_4-4 Q0 MARCO_22_1648495958-21 3 0.391806 hybrid +134_4-4 Q0 MARCO_24_2762318-2 4 0.335048 hybrid +134_4-4 Q0 MARCO_45_1021789810-8 5 0.301654 hybrid +134_4-4 Q0 MARCO_50_1419718645-58 6 0.251771 hybrid +134_4-4 Q0 MARCO_00_1611211087-8 7 0.184686 hybrid +134_4-4 Q0 MARCO_44_622079827-2 8 0.145518 hybrid +134_4-4 Q0 MARCO_36_897767456-3 9 0.122848 hybrid +134_4-4 Q0 MARCO_55_681195067-7 10 0.100044 hybrid +134_4-4 Q0 MARCO_21_407171165-1 11 0.089921 hybrid +134_4-4 Q0 MARCO_20_694886831-2 12 0.075358 hybrid +134_4-4 Q0 MARCO_50_1458441868-16 13 0.073262 hybrid +134_4-4 Q0 MARCO_58_1006746288-8 14 0.072230 hybrid +134_4-4 Q0 MARCO_01_942982864-6 15 0.070950 hybrid +134_4-4 Q0 MARCO_45_1025014902-8 16 0.054651 hybrid +134_4-4 Q0 MARCO_58_1007196985-8 17 0.053688 hybrid +134_4-4 Q0 MARCO_21_407171165-3 18 0.043609 hybrid +134_4-4 Q0 MARCO_41_327808466-5 19 0.038620 hybrid +134_4-4 Q0 MARCO_40_172045261-1 20 0.037432 hybrid +134_4-4 Q0 MARCO_30_742545702-1 21 0.032954 hybrid +134_4-4 Q0 MARCO_50_694256853-4 22 0.031298 hybrid +134_4-4 Q0 MARCO_22_1648495958-20 23 0.025514 hybrid +134_4-4 Q0 MARCO_58_1008143388-7 24 0.014870 hybrid +134_4-4 Q0 MARCO_41_331055548-10 25 0.010918 hybrid +134_4-4 Q0 MARCO_22_1648646376-13 26 0.010042 hybrid +134_4-4 Q0 MARCO_20_1691624100-10 27 0.008650 hybrid +134_4-4 Q0 MARCO_10_7478787-9 28 0.007833 hybrid +134_4-4 Q0 MARCO_52_821608683-5 29 0.002473 hybrid +134_4-4 Q0 MARCO_22_1648730785-10 30 -0.005360 hybrid +134_4-4 Q0 MARCO_13_980831104-15 31 -0.008859 hybrid +134_4-4 Q0 MARCO_10_7449675-15 32 -0.017267 hybrid +134_4-4 Q0 MARCO_22_166006390-16 33 -0.026723 hybrid +134_4-4 Q0 MARCO_05_1513209861-4 34 -0.028616 hybrid +134_4-4 Q0 MARCO_32_1516582370-11 35 -0.030045 hybrid +134_4-4 Q0 MARCO_55_681360829-4 36 -0.032271 hybrid +134_4-4 Q0 MARCO_20_689910917-31 37 -0.033465 hybrid +134_4-4 Q0 MARCO_58_1008493948-2 38 -0.038125 hybrid +134_4-4 Q0 MARCO_14_482024749-9 39 -0.039184 hybrid +134_4-4 Q0 MARCO_53_78896701-64 40 -0.041829 hybrid +134_4-4 Q0 MARCO_21_404029997-21 41 -0.048302 hybrid +134_4-4 Q0 MARCO_53_79802066-3 42 -0.050828 hybrid +134_4-4 Q0 MARCO_58_1007754642-7 43 -0.052688 hybrid +134_4-4 Q0 MARCO_21_404029997-2 44 -0.053124 hybrid +134_4-4 Q0 MARCO_55_857221820-18 45 -0.056973 hybrid +134_4-4 Q0 MARCO_06_693854726-3 46 -0.058580 hybrid +134_4-4 Q0 MARCO_41_331055548-7 47 -0.058709 hybrid +134_4-4 Q0 MARCO_12_1864007837-13 48 -0.062440 hybrid +134_4-4 Q0 MARCO_55_681109595-7 49 -0.065327 hybrid +134_4-4 Q0 MARCO_24_2762318-3 50 -0.074267 hybrid +134_4-4 Q0 MARCO_34_323617878-11 51 -0.075670 hybrid +134_4-4 Q0 MARCO_13_146675377-2 52 -0.078568 hybrid +134_4-4 Q0 MARCO_41_331055548-17 53 -0.079675 hybrid +134_4-4 Q0 MARCO_45_1021789810-12 54 -0.081514 hybrid +134_4-4 Q0 MARCO_21_404029997-26 55 -0.088970 hybrid +134_4-4 Q0 MARCO_44_1487773945-5 56 -0.090072 hybrid +134_4-4 Q0 MARCO_36_892815668-2 57 -0.093991 hybrid +134_4-4 Q0 MARCO_41_331055548-8 58 -0.094561 hybrid +134_4-4 Q0 MARCO_22_166006390-12 59 -0.099528 hybrid +134_4-4 Q0 MARCO_21_408461758-7 60 -0.100824 hybrid +134_4-4 Q0 MARCO_50_1419718645-40 61 -0.104425 hybrid +134_4-4 Q0 MARCO_28_649791011-4 62 -0.105909 hybrid +134_4-4 Q0 MARCO_55_681131262-7 63 -0.113494 hybrid +134_4-4 Q0 MARCO_22_1648646376-3 64 -0.113984 hybrid +134_4-4 Q0 MARCO_28_649615403-4 65 -0.118026 hybrid +134_4-4 Q0 MARCO_58_1007196985-18 66 -0.118768 hybrid +134_4-4 Q0 MARCO_47_974205108-7 67 -0.120284 hybrid +134_4-4 Q0 MARCO_21_404029997-4 68 -0.121601 hybrid +134_4-4 Q0 MARCO_55_848681938-1 69 -0.122182 hybrid +134_4-4 Q0 MARCO_22_1648590299-6 70 -0.122881 hybrid +134_4-4 Q0 MARCO_36_897767456-15 71 -0.124284 hybrid +134_4-4 Q0 MARCO_55_768282423-21 72 -0.127052 hybrid +134_4-4 Q0 MARCO_21_407171165-45 73 -0.127332 hybrid +134_4-4 Q0 MARCO_41_341393556-3 74 -0.132213 hybrid +134_4-4 Q0 MARCO_41_2116474088-4 75 -0.133659 hybrid +134_4-4 Q0 MARCO_34_333179489-11 76 -0.142900 hybrid +134_4-4 Q0 MARCO_45_1021789810-2 77 -0.143099 hybrid +134_4-4 Q0 MARCO_45_1021789810-3 78 -0.145798 hybrid +134_4-4 Q0 MARCO_05_452883380-6 79 -0.147781 hybrid +134_4-4 Q0 MARCO_45_141282123-3 80 -0.149227 hybrid +134_4-4 Q0 MARCO_00_254478811-1 81 -0.149679 hybrid +134_4-4 Q0 MARCO_53_1514271870-2 82 -0.153501 hybrid +134_4-4 Q0 MARCO_55_681045517-4 83 -0.154953 hybrid +134_4-4 Q0 MARCO_50_1419718645-59 84 -0.155415 hybrid +134_4-4 Q0 MARCO_45_1021789810-10 85 -0.156238 hybrid +134_4-4 Q0 MARCO_58_1007196985-1 86 -0.157189 hybrid +134_4-4 Q0 MARCO_58_1008493948-3 87 -0.157641 hybrid +134_4-4 Q0 MARCO_25_449532-9 88 -0.158700 hybrid +134_4-4 Q0 MARCO_13_1317641961-3 89 -0.159581 hybrid +134_4-4 Q0 MARCO_55_854624885-22 90 -0.162086 hybrid +134_4-4 Q0 MARCO_22_1648646376-11 91 -0.162904 hybrid +134_4-4 Q0 MARCO_55_848420280-16 92 -0.164532 hybrid +134_4-4 Q0 MARCO_53_79621448-2 93 -0.166059 hybrid +134_4-4 Q0 MARCO_55_859998832-6 94 -0.166672 hybrid +134_4-4 Q0 MARCO_55_853944860-7 95 -0.167833 hybrid +134_4-4 Q0 MARCO_00_1611164295-17 96 -0.168930 hybrid +134_4-4 Q0 MARCO_28_434026688-3 97 -0.169726 hybrid +134_4-4 Q0 MARCO_22_1648646376-1 98 -0.170118 hybrid +134_4-4 Q0 MARCO_55_768313485-14 99 -0.174263 hybrid +134_4-4 Q0 MARCO_10_7449675-20 100 -0.175736 hybrid +135_1-1 Q0 MARCO_45_977807331-13 1 0.500000 hybrid +135_1-1 Q0 MARCO_32_375198952-1 2 0.474390 hybrid +135_1-1 Q0 MARCO_51_959830917-2 3 0.446020 hybrid +135_1-1 Q0 MARCO_23_488318419-6 4 0.395215 hybrid +135_1-1 Q0 MARCO_50_1174238590-21 5 0.362783 hybrid +135_1-1 Q0 MARCO_37_1253773399-4 6 0.275148 hybrid +135_1-1 Q0 MARCO_56_1517576535-6 7 0.272689 hybrid +135_1-1 Q0 MARCO_45_979733751-14 8 0.225364 hybrid +135_1-1 Q0 MARCO_51_958889897-7 9 0.119928 hybrid +135_1-1 Q0 MARCO_51_957925605-7 10 0.118962 hybrid +135_1-1 Q0 MARCO_23_488318419-5 11 0.115004 hybrid +135_1-1 Q0 MARCO_32_375198952-2 12 0.113522 hybrid +135_1-1 Q0 MARCO_05_1512859755-3 13 0.112777 hybrid +135_1-1 Q0 MARCO_51_958551973-3 14 0.100132 hybrid +135_1-1 Q0 MARCO_32_373800772-3 15 0.091101 hybrid +135_1-1 Q0 MARCO_59_940285588-6 16 0.078465 hybrid +135_1-1 Q0 MARCO_46_1272863577-3 17 0.062544 hybrid +135_1-1 Q0 MARCO_10_1202153939-25 18 0.055937 hybrid +135_1-1 Q0 MARCO_28_1759440580-4 19 0.055054 hybrid +135_1-1 Q0 MARCO_51_959858915-4 20 0.043800 hybrid +135_1-1 Q0 MARCO_36_1366786807-5 21 0.025510 hybrid +135_1-1 Q0 MARCO_24_1614602955-2 22 0.018834 hybrid +135_1-1 Q0 MARCO_51_959656094-2 23 0.016559 hybrid +135_1-1 Q0 MARCO_51_959737658-6 24 0.010669 hybrid +135_1-1 Q0 MARCO_07_1048041834-8 25 0.009872 hybrid +135_1-1 Q0 MARCO_32_375214915-4 26 0.005011 hybrid +135_1-1 Q0 MARCO_56_1517576535-5 27 0.004100 hybrid +135_1-1 Q0 MARCO_45_980563328-1 28 0.003712 hybrid +135_1-1 Q0 MARCO_51_959962110-3 29 0.002732 hybrid +135_1-1 Q0 MARCO_31_1564623688-3 30 -0.017722 hybrid +135_1-1 Q0 MARCO_03_1219890737-3 31 -0.021098 hybrid +135_1-1 Q0 MARCO_10_1201883746-38 32 -0.023799 hybrid +135_1-1 Q0 MARCO_28_1759529807-9 33 -0.028024 hybrid +135_1-1 Q0 MARCO_48_376787404-6 34 -0.030008 hybrid +135_1-1 Q0 MARCO_05_1512859755-2 35 -0.032373 hybrid +135_1-1 Q0 MARCO_28_1759272265-4 36 -0.033488 hybrid +135_1-1 Q0 MARCO_51_958286148-6 37 -0.038031 hybrid +135_1-1 Q0 MARCO_46_1271288630-5 38 -0.042512 hybrid +135_1-1 Q0 MARCO_24_1614602955-1 39 -0.043173 hybrid +135_1-1 Q0 MARCO_50_1511565640-19 40 -0.044112 hybrid +135_1-1 Q0 MARCO_20_14325862-3 41 -0.048312 hybrid +135_1-1 Q0 MARCO_50_2143478118-17 42 -0.050410 hybrid +135_1-1 Q0 MARCO_20_14325862-2 43 -0.050615 hybrid +135_1-1 Q0 MARCO_51_957986101-5 44 -0.052173 hybrid +135_1-1 Q0 MARCO_51_959921488-6 45 -0.054992 hybrid +135_1-1 Q0 MARCO_36_1807024500-5 46 -0.058939 hybrid +135_1-1 Q0 MARCO_48_375447022-30 47 -0.059119 hybrid +135_1-1 Q0 MARCO_07_1048041834-15 48 -0.061387 hybrid +135_1-1 Q0 MARCO_50_2143478118-55 49 -0.068268 hybrid +135_1-1 Q0 MARCO_41_1172991073-67 50 -0.070414 hybrid +135_1-1 Q0 MARCO_20_1107682428-3 51 -0.074300 hybrid +135_1-1 Q0 MARCO_50_2144515267-25 52 -0.074947 hybrid +135_1-1 Q0 MARCO_40_1268767274-4 53 -0.085315 hybrid +135_1-1 Q0 MARCO_48_375697229-18 54 -0.093376 hybrid +135_1-1 Q0 MARCO_16_1102501846-16 55 -0.095640 hybrid +135_1-1 Q0 MARCO_45_980563328-7 56 -0.100371 hybrid +135_1-1 Q0 MARCO_58_1589694230-2 57 -0.100627 hybrid +135_1-1 Q0 MARCO_44_842242336-3 58 -0.101330 hybrid +135_1-1 Q0 MARCO_32_375024516-7 59 -0.102697 hybrid +135_1-1 Q0 MARCO_23_488318419-2 60 -0.105405 hybrid +135_1-1 Q0 MARCO_50_2393691806-16 61 -0.108788 hybrid +135_1-1 Q0 MARCO_20_14325862-6 62 -0.110108 hybrid +135_1-1 Q0 MARCO_56_1517576535-3 63 -0.114443 hybrid +135_1-1 Q0 MARCO_50_2143478118-70 64 -0.116444 hybrid +135_1-1 Q0 MARCO_10_1381972189-23 65 -0.117175 hybrid +135_1-1 Q0 MARCO_01_801810438-3 66 -0.120001 hybrid +135_1-1 Q0 MARCO_15_528739144-6 67 -0.120465 hybrid +135_1-1 Q0 MARCO_45_980875532-6 68 -0.122030 hybrid +135_1-1 Q0 MARCO_33_1316748866-5 69 -0.122902 hybrid +135_1-1 Q0 MARCO_47_1312231351-7 70 -0.123675 hybrid +135_1-1 Q0 MARCO_24_1614602955-3 71 -0.124094 hybrid +135_1-1 Q0 MARCO_51_959737658-7 72 -0.124468 hybrid +135_1-1 Q0 MARCO_48_375697229-12 73 -0.126756 hybrid +135_1-1 Q0 MARCO_49_1829174464-6 74 -0.128716 hybrid +135_1-1 Q0 MARCO_36_566978935-4 75 -0.132885 hybrid +135_1-1 Q0 MARCO_41_1818984171-6 76 -0.133069 hybrid +135_1-1 Q0 MARCO_51_959649684-2 77 -0.133862 hybrid +135_1-1 Q0 MARCO_37_1247625131-1 78 -0.137910 hybrid +135_1-1 Q0 MARCO_45_656729460-10 79 -0.139451 hybrid +135_1-1 Q0 MARCO_07_1048041834-14 80 -0.140829 hybrid +135_1-1 Q0 MARCO_09_543732364-10 81 -0.142294 hybrid +135_1-1 Q0 MARCO_31_293610959-10 82 -0.142304 hybrid +135_1-1 Q0 MARCO_45_980563328-6 83 -0.142550 hybrid +135_1-1 Q0 MARCO_10_1141820662-25 84 -0.143281 hybrid +135_1-1 Q0 MARCO_07_1412260826-6 85 -0.143616 hybrid +135_1-1 Q0 MARCO_42_205866048-11 86 -0.143824 hybrid +135_1-1 Q0 MARCO_42_205866048-9 87 -0.143824 hybrid +135_1-1 Q0 MARCO_44_842242336-1 88 -0.148371 hybrid +135_1-1 Q0 MARCO_50_2393691806-20 89 -0.148707 hybrid +135_1-1 Q0 MARCO_42_1051754758-1 90 -0.150282 hybrid +135_1-1 Q0 MARCO_28_1759529807-4 91 -0.150320 hybrid +135_1-1 Q0 MARCO_46_1272992424-1 92 -0.150691 hybrid +135_1-1 Q0 MARCO_50_518336839-7 93 -0.154482 hybrid +135_1-1 Q0 MARCO_24_1457951317-4 94 -0.155144 hybrid +135_1-1 Q0 MARCO_31_903732332-16 95 -0.163808 hybrid +135_1-1 Q0 MARCO_10_444507905-3 96 -0.165324 hybrid +135_1-1 Q0 MARCO_51_958551973-5 97 -0.169521 hybrid +135_1-1 Q0 MARCO_53_1601940-9 98 -0.169968 hybrid +135_1-1 Q0 MARCO_51_959535366-12 99 -0.171671 hybrid +135_1-1 Q0 MARCO_46_1271244443-8 100 -0.172811 hybrid +135_1-3 Q0 MARCO_22_1579930911-9 1 0.500000 hybrid +135_1-3 Q0 MARCO_25_1422733827-5 2 0.417894 hybrid +135_1-3 Q0 MARCO_40_741967650-6 3 0.415603 hybrid +135_1-3 Q0 MARCO_51_959921488-6 4 0.358770 hybrid +135_1-3 Q0 MARCO_22_1486281067-6 5 0.330062 hybrid +135_1-3 Q0 MARCO_20_19860105-1 6 0.322718 hybrid +135_1-3 Q0 MARCO_28_1759580014-2 7 0.314652 hybrid +135_1-3 Q0 MARCO_20_20299207-6 8 0.290699 hybrid +135_1-3 Q0 MARCO_48_376091625-9 9 0.278198 hybrid +135_1-3 Q0 MARCO_32_375091295-1 10 0.274937 hybrid +135_1-3 Q0 MARCO_33_723703063-2 11 0.272834 hybrid +135_1-3 Q0 MARCO_25_521695352-20 12 0.266158 hybrid +135_1-3 Q0 MARCO_25_1429975288-3 13 0.261427 hybrid +135_1-3 Q0 MARCO_54_1568618810-4 14 0.258947 hybrid +135_1-3 Q0 MARCO_48_1560403802-2 15 0.251509 hybrid +135_1-3 Q0 MARCO_26_727891250-11 16 0.243181 hybrid +135_1-3 Q0 MARCO_46_1272442255-4 17 0.239033 hybrid +135_1-3 Q0 MARCO_08_164041265-5 18 0.233278 hybrid +135_1-3 Q0 MARCO_45_1574835971-27 19 0.215472 hybrid +135_1-3 Q0 MARCO_51_957903931-7 20 0.213982 hybrid +135_1-3 Q0 MARCO_51_958834692-10 21 0.193212 hybrid +135_1-3 Q0 MARCO_50_1512751210-30 22 0.188021 hybrid +135_1-3 Q0 MARCO_54_557197480-6 23 0.174585 hybrid +135_1-3 Q0 MARCO_54_557164081-5 24 0.174585 hybrid +135_1-3 Q0 MARCO_54_557173206-16 25 0.174585 hybrid +135_1-3 Q0 MARCO_46_1271459492-4 26 0.168933 hybrid +135_1-3 Q0 MARCO_51_959962110-3 27 0.167350 hybrid +135_1-3 Q0 MARCO_21_870036782-2 28 0.167315 hybrid +135_1-3 Q0 MARCO_32_375184463-5 29 0.159253 hybrid +135_1-3 Q0 MARCO_51_955007724-10 30 0.157308 hybrid +135_1-3 Q0 MARCO_51_959265231-9 31 0.157299 hybrid +135_1-3 Q0 MARCO_40_1126947822-4 32 0.157175 hybrid +135_1-3 Q0 MARCO_07_1012854612-7 33 0.156299 hybrid +135_1-3 Q0 MARCO_51_958818114-10 34 0.150444 hybrid +135_1-3 Q0 MARCO_21_870356030-3 35 0.142333 hybrid +135_1-3 Q0 MARCO_59_435012914-1 36 0.131307 hybrid +135_1-3 Q0 MARCO_57_110680525-8 37 0.122498 hybrid +135_1-3 Q0 MARCO_21_870356030-1 38 0.122043 hybrid +135_1-3 Q0 MARCO_55_1347262418-3 39 0.121672 hybrid +135_1-3 Q0 MARCO_21_870036782-1 40 0.110661 hybrid +135_1-3 Q0 MARCO_51_958485566-8 41 0.104816 hybrid +135_1-3 Q0 MARCO_32_462141573-3 42 0.102243 hybrid +135_1-3 Q0 MARCO_07_1001553105-3 43 0.087911 hybrid +135_1-3 Q0 MARCO_46_257655158-3 44 0.079572 hybrid +135_1-3 Q0 MARCO_33_723703063-7 45 0.079062 hybrid +135_1-3 Q0 MARCO_53_907985-14 46 0.074133 hybrid +135_1-3 Q0 MARCO_13_141057854-2 47 0.072401 hybrid +135_1-3 Q0 MARCO_51_959190325-3 48 0.066928 hybrid +135_1-3 Q0 MARCO_28_1761232054-5 49 0.054907 hybrid +135_1-3 Q0 MARCO_56_1511815456-4 50 0.054437 hybrid +135_1-3 Q0 MARCO_51_959962110-2 51 0.054165 hybrid +135_1-3 Q0 MARCO_51_958834692-12 52 0.046054 hybrid +135_1-3 Q0 MARCO_51_957992620-3 53 0.042877 hybrid +135_1-3 Q0 MARCO_21_148996890-13 54 0.039739 hybrid +135_1-3 Q0 MARCO_32_375176627-1 55 0.039348 hybrid +135_1-3 Q0 MARCO_12_1452151583-12 56 0.038759 hybrid +135_1-3 Q0 MARCO_46_553907717-3 57 0.026016 hybrid +135_1-3 Q0 MARCO_50_1516160368-17 58 0.024868 hybrid +135_1-3 Q0 MARCO_46_1270917506-4 59 0.023383 hybrid +135_1-3 Q0 MARCO_28_1759651308-3 60 0.023091 hybrid +135_1-3 Q0 MARCO_10_698928506-2 61 0.016841 hybrid +135_1-3 Q0 MARCO_48_375697229-24 62 0.014258 hybrid +135_1-3 Q0 MARCO_48_377468525-7 63 0.013302 hybrid +135_1-3 Q0 MARCO_28_1759613190-2 64 0.007626 hybrid +135_1-3 Q0 MARCO_51_958528195-5 65 0.006612 hybrid +135_1-3 Q0 MARCO_28_1759540903-8 66 0.003816 hybrid +135_1-3 Q0 MARCO_51_958367033-1 67 0.000876 hybrid +135_1-3 Q0 MARCO_01_799431978-41 68 -0.003979 hybrid +135_1-3 Q0 MARCO_51_959214797-14 69 -0.018484 hybrid +135_1-3 Q0 MARCO_28_421367047-3 70 -0.020483 hybrid +135_1-3 Q0 MARCO_51_958003580-7 71 -0.021824 hybrid +135_1-3 Q0 MARCO_07_1048041834-13 72 -0.028015 hybrid +135_1-3 Q0 MARCO_51_959858915-4 73 -0.037077 hybrid +135_1-3 Q0 MARCO_28_1759580014-1 74 -0.037923 hybrid +135_1-3 Q0 MARCO_32_374073877-3 75 -0.038284 hybrid +135_1-3 Q0 MARCO_52_363657812-3 76 -0.046118 hybrid +135_1-3 Q0 MARCO_22_1020535994-2 77 -0.049884 hybrid +135_1-3 Q0 MARCO_52_363358715-2 78 -0.051483 hybrid +135_1-3 Q0 MARCO_51_958573476-3 79 -0.052156 hybrid +135_1-3 Q0 MARCO_46_1270871454-4 80 -0.053037 hybrid +135_1-3 Q0 MARCO_46_1271547408-1 81 -0.054442 hybrid +135_1-3 Q0 MARCO_50_2143478118-13 82 -0.055452 hybrid +135_1-3 Q0 MARCO_28_1759642279-3 83 -0.065527 hybrid +135_1-3 Q0 MARCO_46_1272305787-1 84 -0.067195 hybrid +135_1-3 Q0 MARCO_37_1248091279-5 85 -0.068274 hybrid +135_1-3 Q0 MARCO_32_462141573-1 86 -0.070367 hybrid +135_1-3 Q0 MARCO_28_1759557920-3 87 -0.070486 hybrid +135_1-3 Q0 MARCO_52_363146854-3 88 -0.070615 hybrid +135_1-3 Q0 MARCO_42_1100291157-5 89 -0.070828 hybrid +135_1-3 Q0 MARCO_46_1272942535-5 90 -0.073287 hybrid +135_1-3 Q0 MARCO_46_1272713488-2 91 -0.073480 hybrid +135_1-3 Q0 MARCO_28_1759683608-4 92 -0.073980 hybrid +135_1-3 Q0 MARCO_50_2160188362-3 93 -0.074371 hybrid +135_1-3 Q0 MARCO_51_958405187-7 94 -0.075885 hybrid +135_1-3 Q0 MARCO_00_567195721-130 95 -0.076652 hybrid +135_1-3 Q0 MARCO_32_462141573-4 96 -0.076821 hybrid +135_1-3 Q0 MARCO_41_1820447345-4 97 -0.077731 hybrid +135_1-3 Q0 MARCO_03_1220235132-4 98 -0.078132 hybrid +135_1-3 Q0 MARCO_28_1759642279-6 99 -0.079018 hybrid +135_1-3 Q0 MARCO_51_958511495-6 100 -0.079651 hybrid +135_1-5 Q0 MARCO_32_375091295-1 1 0.500002 hybrid +135_1-5 Q0 MARCO_51_958003580-7 2 0.446010 hybrid +135_1-5 Q0 MARCO_28_1759557920-4 3 0.385261 hybrid +135_1-5 Q0 MARCO_51_958834692-12 4 0.350869 hybrid +135_1-5 Q0 MARCO_51_957903931-7 5 0.343368 hybrid +135_1-5 Q0 MARCO_45_652286711-4 6 0.342116 hybrid +135_1-5 Q0 MARCO_52_363657812-2 7 0.315334 hybrid +135_1-5 Q0 MARCO_07_1048041834-13 8 0.310916 hybrid +135_1-5 Q0 MARCO_28_1759557920-1 9 0.295433 hybrid +135_1-5 Q0 MARCO_51_959190325-3 10 0.286849 hybrid +135_1-5 Q0 MARCO_51_958485566-8 11 0.257112 hybrid +135_1-5 Q0 MARCO_28_1759660200-1 12 0.240443 hybrid +135_1-5 Q0 MARCO_51_958834692-20 13 0.229205 hybrid +135_1-5 Q0 MARCO_40_741967650-6 14 0.223878 hybrid +135_1-5 Q0 MARCO_51_958627721-1 15 0.207788 hybrid +135_1-5 Q0 MARCO_51_958834692-4 16 0.202551 hybrid +135_1-5 Q0 MARCO_51_958834692-10 17 0.194696 hybrid +135_1-5 Q0 MARCO_25_1429975288-3 18 0.193826 hybrid +135_1-5 Q0 MARCO_28_1759683608-1 19 0.188089 hybrid +135_1-5 Q0 MARCO_51_958834692-2 20 0.186875 hybrid +135_1-5 Q0 MARCO_28_1759557920-2 21 0.182997 hybrid +135_1-5 Q0 MARCO_51_957992620-3 22 0.182461 hybrid +135_1-5 Q0 MARCO_52_363657812-3 23 0.174696 hybrid +135_1-5 Q0 MARCO_29_620814686-3 24 0.167307 hybrid +135_1-5 Q0 MARCO_51_959921488-6 25 0.161401 hybrid +135_1-5 Q0 MARCO_13_141057854-2 26 0.158286 hybrid +135_1-5 Q0 MARCO_28_1759580014-2 27 0.158272 hybrid +135_1-5 Q0 MARCO_51_959962110-3 28 0.156535 hybrid +135_1-5 Q0 MARCO_51_959858915-4 29 0.153227 hybrid +135_1-5 Q0 MARCO_46_1271968884-4 30 0.143905 hybrid +135_1-5 Q0 MARCO_46_1272828752-6 31 0.142408 hybrid +135_1-5 Q0 MARCO_28_1759557920-6 32 0.141876 hybrid +135_1-5 Q0 MARCO_32_375085135-1 33 0.138676 hybrid +135_1-5 Q0 MARCO_28_1759651308-5 34 0.135231 hybrid +135_1-5 Q0 MARCO_28_1759630967-8 35 0.129796 hybrid +135_1-5 Q0 MARCO_57_1269261512-3 36 0.129787 hybrid +135_1-5 Q0 MARCO_40_743997809-1 37 0.121881 hybrid +135_1-5 Q0 MARCO_52_363669660-2 38 0.117753 hybrid +135_1-5 Q0 MARCO_32_375317415-2 39 0.104148 hybrid +135_1-5 Q0 MARCO_10_698928506-2 40 0.101061 hybrid +135_1-5 Q0 MARCO_48_377468525-7 41 0.100134 hybrid +135_1-5 Q0 MARCO_33_723703063-7 42 0.088063 hybrid +135_1-5 Q0 MARCO_22_1579930911-9 43 0.086228 hybrid +135_1-5 Q0 MARCO_08_163876809-1 44 0.083823 hybrid +135_1-5 Q0 MARCO_32_375184463-5 45 0.083277 hybrid +135_1-5 Q0 MARCO_28_1759557920-7 46 0.069470 hybrid +135_1-5 Q0 MARCO_51_959962110-2 47 0.065559 hybrid +135_1-5 Q0 MARCO_51_958818114-9 48 0.057865 hybrid +135_1-5 Q0 MARCO_51_958834692-1 49 0.053027 hybrid +135_1-5 Q0 MARCO_23_488363167-3 50 0.051498 hybrid +135_1-5 Q0 MARCO_48_375697229-24 51 0.046688 hybrid +135_1-5 Q0 MARCO_20_14325862-6 52 0.044330 hybrid +135_1-5 Q0 MARCO_21_870356030-3 53 0.044227 hybrid +135_1-5 Q0 MARCO_51_958834692-6 54 0.043196 hybrid +135_1-5 Q0 MARCO_28_1759484761-10 55 0.037220 hybrid +135_1-5 Q0 MARCO_53_3184533-3 56 0.033248 hybrid +135_1-5 Q0 MARCO_28_1759683608-4 57 0.029958 hybrid +135_1-5 Q0 MARCO_48_1593401567-14 58 0.027699 hybrid +135_1-5 Q0 MARCO_28_1759683608-3 59 0.022363 hybrid +135_1-5 Q0 MARCO_29_1011910369-5 60 0.021803 hybrid +135_1-5 Q0 MARCO_42_205831854-3 61 0.018857 hybrid +135_1-5 Q0 MARCO_51_958405187-7 62 0.016302 hybrid +135_1-5 Q0 MARCO_54_1568127884-4 63 0.015934 hybrid +135_1-5 Q0 MARCO_51_958528195-5 64 0.013125 hybrid +135_1-5 Q0 MARCO_07_1048041834-12 65 0.011906 hybrid +135_1-5 Q0 MARCO_28_1759660200-6 66 0.007774 hybrid +135_1-5 Q0 MARCO_32_462141573-4 67 0.005181 hybrid +135_1-5 Q0 MARCO_52_363657812-1 68 0.001962 hybrid +135_1-5 Q0 MARCO_49_1324945055-3 69 0.000259 hybrid +135_1-5 Q0 MARCO_48_376995658-20 70 -0.001384 hybrid +135_1-5 Q0 MARCO_32_375176627-1 71 -0.002028 hybrid +135_1-5 Q0 MARCO_23_488363167-1 72 -0.006621 hybrid +135_1-5 Q0 MARCO_32_375317415-3 73 -0.007313 hybrid +135_1-5 Q0 MARCO_28_1759571450-3 74 -0.009803 hybrid +135_1-5 Q0 MARCO_52_363669660-1 75 -0.015633 hybrid +135_1-5 Q0 MARCO_10_704390742-4 76 -0.017210 hybrid +135_1-5 Q0 MARCO_28_1759484761-3 77 -0.017215 hybrid +135_1-5 Q0 MARCO_51_958495237-12 78 -0.023445 hybrid +135_1-5 Q0 MARCO_22_1020535994-2 79 -0.023582 hybrid +135_1-5 Q0 MARCO_49_1324775482-2 80 -0.023657 hybrid +135_1-5 Q0 MARCO_50_2488130410-50 81 -0.026259 hybrid +135_1-5 Q0 MARCO_28_1759683608-11 82 -0.028099 hybrid +135_1-5 Q0 MARCO_28_1759557920-3 83 -0.028951 hybrid +135_1-5 Q0 MARCO_40_1126947822-4 84 -0.033624 hybrid +135_1-5 Q0 MARCO_07_1001553105-2 85 -0.038904 hybrid +135_1-5 Q0 MARCO_51_957986101-3 86 -0.041634 hybrid +135_1-5 Q0 MARCO_53_3087634-3 87 -0.043775 hybrid +135_1-5 Q0 MARCO_51_958405187-3 88 -0.045968 hybrid +135_1-5 Q0 MARCO_11_20967872-123 89 -0.047018 hybrid +135_1-5 Q0 MARCO_46_1271547408-1 90 -0.049206 hybrid +135_1-5 Q0 MARCO_32_462141573-1 91 -0.050194 hybrid +135_1-5 Q0 MARCO_53_907985-14 92 -0.053305 hybrid +135_1-5 Q0 MARCO_51_958201190-14 93 -0.061074 hybrid +135_1-5 Q0 MARCO_28_1761122709-10 94 -0.061569 hybrid +135_1-5 Q0 MARCO_46_1271299821-1 95 -0.062053 hybrid +135_1-5 Q0 MARCO_32_377519117-5 96 -0.066849 hybrid +135_1-5 Q0 MARCO_28_1759557920-5 97 -0.068675 hybrid +135_1-5 Q0 MARCO_51_695338546-7 98 -0.068797 hybrid +135_1-5 Q0 MARCO_59_435012914-1 99 -0.069155 hybrid +135_1-5 Q0 MARCO_21_870036782-1 100 -0.073545 hybrid +135_1-7 Q0 MARCO_28_1801863104-8 1 0.499998 hybrid +135_1-7 Q0 MARCO_24_508222455-15 2 0.402453 hybrid +135_1-7 Q0 MARCO_20_16115426-3 3 0.346240 hybrid +135_1-7 Q0 MARCO_10_988820795-14 4 0.344906 hybrid +135_1-7 Q0 MARCO_50_1419100449-16 5 0.297142 hybrid +135_1-7 Q0 MARCO_51_958330308-2 6 0.271287 hybrid +135_1-7 Q0 MARCO_59_940757412-6 7 0.263956 hybrid +135_1-7 Q0 MARCO_20_18533069-12 8 0.262075 hybrid +135_1-7 Q0 MARCO_59_940757412-8 9 0.242425 hybrid +135_1-7 Q0 MARCO_21_149389328-4 10 0.232682 hybrid +135_1-7 Q0 MARCO_28_1801863104-7 11 0.232622 hybrid +135_1-7 Q0 MARCO_34_1328182024-6 12 0.218241 hybrid +135_1-7 Q0 MARCO_10_988820795-10 13 0.217365 hybrid +135_1-7 Q0 MARCO_40_741967650-6 14 0.212386 hybrid +135_1-7 Q0 MARCO_52_362918693-1 15 0.194922 hybrid +135_1-7 Q0 MARCO_50_1419100449-15 16 0.194058 hybrid +135_1-7 Q0 MARCO_59_940757412-2 17 0.184902 hybrid +135_1-7 Q0 MARCO_07_1046988585-2 18 0.181092 hybrid +135_1-7 Q0 MARCO_50_2143478118-75 19 0.178874 hybrid +135_1-7 Q0 MARCO_32_593983345-10 20 0.173311 hybrid +135_1-7 Q0 MARCO_10_988820795-8 21 0.169392 hybrid +135_1-7 Q0 MARCO_52_362918693-6 22 0.160297 hybrid +135_1-7 Q0 MARCO_50_1419100449-1 23 0.148046 hybrid +135_1-7 Q0 MARCO_28_1801863104-6 24 0.146117 hybrid +135_1-7 Q0 MARCO_27_712484347-9 25 0.137528 hybrid +135_1-7 Q0 MARCO_19_2631612001-12 26 0.107786 hybrid +135_1-7 Q0 MARCO_20_27580101-2 27 0.102304 hybrid +135_1-7 Q0 MARCO_10_988820795-1 28 0.092280 hybrid +135_1-7 Q0 MARCO_50_1988583450-10 29 0.086742 hybrid +135_1-7 Q0 MARCO_56_1513080404-3 30 0.084359 hybrid +135_1-7 Q0 MARCO_31_902123204-7 31 0.077273 hybrid +135_1-7 Q0 MARCO_08_163743160-3 32 0.072755 hybrid +135_1-7 Q0 MARCO_46_14148609-1 33 0.071863 hybrid +135_1-7 Q0 MARCO_28_1801863104-1 34 0.066779 hybrid +135_1-7 Q0 MARCO_51_958834692-10 35 0.066425 hybrid +135_1-7 Q0 MARCO_04_784496281-9 36 0.063483 hybrid +135_1-7 Q0 MARCO_46_1271069967-1 37 0.062446 hybrid +135_1-7 Q0 MARCO_52_362918693-5 38 0.059625 hybrid +135_1-7 Q0 MARCO_00_1280853048-7 39 0.053994 hybrid +135_1-7 Q0 MARCO_28_1801863104-3 40 0.042680 hybrid +135_1-7 Q0 MARCO_51_958330308-11 41 0.039886 hybrid +135_1-7 Q0 MARCO_02_1355954397-3 42 0.038046 hybrid +135_1-7 Q0 MARCO_12_1452175227-4 43 0.036940 hybrid +135_1-7 Q0 MARCO_46_14148609-2 44 0.028520 hybrid +135_1-7 Q0 MARCO_43_747183395-6 45 0.027174 hybrid +135_1-7 Q0 MARCO_01_701105177-23 46 0.025180 hybrid +135_1-7 Q0 MARCO_22_830623573-7 47 0.022475 hybrid +135_1-7 Q0 MARCO_46_1273335934-9 48 0.021515 hybrid +135_1-7 Q0 MARCO_48_376135113-4 49 0.013251 hybrid +135_1-7 Q0 MARCO_51_958540864-7 50 0.013187 hybrid +135_1-7 Q0 MARCO_46_1271069967-2 51 -0.001399 hybrid +135_1-7 Q0 MARCO_41_879478981-1 52 -0.005161 hybrid +135_1-7 Q0 MARCO_46_530339207-3 53 -0.005651 hybrid +135_1-7 Q0 MARCO_50_1410701877-22 54 -0.006338 hybrid +135_1-7 Q0 MARCO_27_1245274024-1 55 -0.006696 hybrid +135_1-7 Q0 MARCO_51_958405187-7 56 -0.019738 hybrid +135_1-7 Q0 MARCO_40_747094236-1 57 -0.021205 hybrid +135_1-7 Q0 MARCO_10_988820795-13 58 -0.022813 hybrid +135_1-7 Q0 MARCO_27_1245274024-3 59 -0.025164 hybrid +135_1-7 Q0 MARCO_46_1271069967-4 60 -0.027310 hybrid +135_1-7 Q0 MARCO_40_741863574-11 61 -0.028922 hybrid +135_1-7 Q0 MARCO_08_163470271-2 62 -0.031571 hybrid +135_1-7 Q0 MARCO_46_1272442255-4 63 -0.035610 hybrid +135_1-7 Q0 MARCO_10_988820795-9 64 -0.054504 hybrid +135_1-7 Q0 MARCO_10_990687023-10 65 -0.057731 hybrid +135_1-7 Q0 MARCO_28_1801863104-2 66 -0.060866 hybrid +135_1-7 Q0 MARCO_50_1419100449-3 67 -0.061212 hybrid +135_1-7 Q0 MARCO_59_940757412-5 68 -0.062571 hybrid +135_1-7 Q0 MARCO_54_557197480-6 69 -0.064488 hybrid +135_1-7 Q0 MARCO_54_557164081-5 70 -0.064488 hybrid +135_1-7 Q0 MARCO_54_557173206-16 71 -0.064488 hybrid +135_1-7 Q0 MARCO_21_150107672-3 72 -0.065372 hybrid +135_1-7 Q0 MARCO_59_940757412-1 73 -0.066196 hybrid +135_1-7 Q0 MARCO_51_959921488-5 74 -0.067092 hybrid +135_1-7 Q0 MARCO_46_1272866946-6 75 -0.067715 hybrid +135_1-7 Q0 MARCO_56_1513341825-2 76 -0.068925 hybrid +135_1-7 Q0 MARCO_50_1530670175-7 77 -0.073704 hybrid +135_1-7 Q0 MARCO_40_743835347-2 78 -0.074234 hybrid +135_1-7 Q0 MARCO_27_1757518417-10 79 -0.076385 hybrid +135_1-7 Q0 MARCO_52_362918693-3 80 -0.081364 hybrid +135_1-7 Q0 MARCO_35_421816635-3 81 -0.083265 hybrid +135_1-7 Q0 MARCO_27_1245274024-4 82 -0.086505 hybrid +135_1-7 Q0 MARCO_08_163470271-1 83 -0.087932 hybrid +135_1-7 Q0 MARCO_40_739668195-5 84 -0.088936 hybrid +135_1-7 Q0 MARCO_52_362918693-2 85 -0.091392 hybrid +135_1-7 Q0 MARCO_37_1253034443-13 86 -0.092530 hybrid +135_1-7 Q0 MARCO_10_988820795-5 87 -0.095106 hybrid +135_1-7 Q0 MARCO_44_842987699-3 88 -0.096251 hybrid +135_1-7 Q0 MARCO_46_1271411323-5 89 -0.096770 hybrid +135_1-7 Q0 MARCO_41_291563422-8 90 -0.097959 hybrid +135_1-7 Q0 MARCO_28_1759571450-2 91 -0.100672 hybrid +135_1-7 Q0 MARCO_23_946580246-16 92 -0.101356 hybrid +135_1-7 Q0 MARCO_40_743815939-1 93 -0.103940 hybrid +135_1-7 Q0 MARCO_27_712484347-10 94 -0.106251 hybrid +135_1-7 Q0 MARCO_48_376135113-2 95 -0.107437 hybrid +135_1-7 Q0 MARCO_27_920911855-5 96 -0.107911 hybrid +135_1-7 Q0 MARCO_21_149179407-10 97 -0.108325 hybrid +135_1-7 Q0 MARCO_10_1201883746-15 98 -0.111231 hybrid +135_1-7 Q0 MARCO_34_470445100-6 99 -0.116496 hybrid +135_1-7 Q0 MARCO_54_141261987-2 100 -0.117256 hybrid +135_2-1 Q0 MARCO_06_1406785097-4 1 0.500000 hybrid +135_2-1 Q0 MARCO_45_655712107-5 2 0.481694 hybrid +135_2-1 Q0 MARCO_57_2121896036-29 3 0.475123 hybrid +135_2-1 Q0 MARCO_50_942632346-93 4 0.429481 hybrid +135_2-1 Q0 MARCO_22_1311706234-12 5 0.416318 hybrid +135_2-1 Q0 MARCO_22_1311816083-9 6 0.416311 hybrid +135_2-1 Q0 MARCO_22_1311720716-12 7 0.416311 hybrid +135_2-1 Q0 MARCO_22_1311765867-5 8 0.416311 hybrid +135_2-1 Q0 MARCO_28_956783824-4 9 0.407021 hybrid +135_2-1 Q0 MARCO_40_746977716-10 10 0.391581 hybrid +135_2-1 Q0 MARCO_50_942500408-8 11 0.376792 hybrid +135_2-1 Q0 MARCO_22_1311746140-6 12 0.350170 hybrid +135_2-1 Q0 MARCO_50_1427540295-2 13 0.337560 hybrid +135_2-1 Q0 MARCO_42_637421417-36 14 0.315233 hybrid +135_2-1 Q0 MARCO_57_2118242861-15 15 0.289901 hybrid +135_2-1 Q0 MARCO_55_717746869-4 16 0.286195 hybrid +135_2-1 Q0 MARCO_57_2121896036-1 17 0.259041 hybrid +135_2-1 Q0 MARCO_56_1602966882-5 18 0.255944 hybrid +135_2-1 Q0 MARCO_11_1468526452-4 19 0.238038 hybrid +135_2-1 Q0 MARCO_41_1213835401-17 20 0.206835 hybrid +135_2-1 Q0 MARCO_48_376328719-4 21 0.196452 hybrid +135_2-1 Q0 MARCO_02_492403282-2 22 0.191710 hybrid +135_2-1 Q0 MARCO_30_820820417-8 23 0.186133 hybrid +135_2-1 Q0 MARCO_48_376624447-7 24 0.171982 hybrid +135_2-1 Q0 MARCO_21_1459093924-6 25 0.168451 hybrid +135_2-1 Q0 MARCO_30_820820417-7 26 0.161109 hybrid +135_2-1 Q0 MARCO_29_25348656-8 27 0.149031 hybrid +135_2-1 Q0 MARCO_55_678602859-6 28 0.144947 hybrid +135_2-1 Q0 MARCO_28_434840658-7 29 0.142509 hybrid +135_2-1 Q0 MARCO_44_38375515-1 30 0.141129 hybrid +135_2-1 Q0 MARCO_42_873710345-3 31 0.140498 hybrid +135_2-1 Q0 MARCO_26_111596749-10 32 0.139293 hybrid +135_2-1 Q0 MARCO_52_364389438-2 33 0.137976 hybrid +135_2-1 Q0 MARCO_42_1099176110-7 34 0.119762 hybrid +135_2-1 Q0 MARCO_00_255529558-10 35 0.119635 hybrid +135_2-1 Q0 MARCO_50_1171758861-8 36 0.118073 hybrid +135_2-1 Q0 MARCO_40_619969766-6 37 0.117898 hybrid +135_2-1 Q0 MARCO_41_1213835401-10 38 0.110997 hybrid +135_2-1 Q0 MARCO_00_255906017-7 39 0.098261 hybrid +135_2-1 Q0 MARCO_50_942868292-118 40 0.097848 hybrid +135_2-1 Q0 MARCO_40_746959875-14 41 0.094373 hybrid +135_2-1 Q0 MARCO_26_111929246-1 42 0.091193 hybrid +135_2-1 Q0 MARCO_29_169327116-5 43 0.091193 hybrid +135_2-1 Q0 MARCO_30_825553192-2 44 0.085119 hybrid +135_2-1 Q0 MARCO_40_747693097-2 45 0.079983 hybrid +135_2-1 Q0 MARCO_26_111596749-1 46 0.074232 hybrid +135_2-1 Q0 MARCO_41_1208481924-23 47 0.069230 hybrid +135_2-1 Q0 MARCO_50_1410903011-14 48 0.067177 hybrid +135_2-1 Q0 MARCO_50_942868292-54 49 0.060396 hybrid +135_2-1 Q0 MARCO_46_1268754227-1 50 0.059352 hybrid +135_2-1 Q0 MARCO_49_1829668945-10 51 0.057285 hybrid +135_2-1 Q0 MARCO_13_140611290-1 52 0.056781 hybrid +135_2-1 Q0 MARCO_49_1829658863-1 53 0.056662 hybrid +135_2-1 Q0 MARCO_26_111596749-6 54 0.053859 hybrid +135_2-1 Q0 MARCO_50_942632346-65 55 0.053551 hybrid +135_2-1 Q0 MARCO_50_942500408-10 56 0.052893 hybrid +135_2-1 Q0 MARCO_51_118380300-9 57 0.048766 hybrid +135_2-1 Q0 MARCO_50_942868292-126 58 0.048423 hybrid +135_2-1 Q0 MARCO_50_527166296-12 59 0.048220 hybrid +135_2-1 Q0 MARCO_50_942632346-19 60 0.047575 hybrid +135_2-1 Q0 MARCO_48_1560419894-2 61 0.044906 hybrid +135_2-1 Q0 MARCO_09_794234431-6 62 0.043337 hybrid +135_2-1 Q0 MARCO_56_1512765609-4 63 0.040247 hybrid +135_2-1 Q0 MARCO_40_746500310-18 64 0.038139 hybrid +135_2-1 Q0 MARCO_28_906299941-6 65 0.027462 hybrid +135_2-1 Q0 MARCO_50_516427711-2 66 0.024183 hybrid +135_2-1 Q0 MARCO_40_742867867-6 67 0.023616 hybrid +135_2-1 Q0 MARCO_22_1604829268-6 68 0.023364 hybrid +135_2-1 Q0 MARCO_50_942868292-154 69 0.023119 hybrid +135_2-1 Q0 MARCO_50_1410903011-5 70 0.022565 hybrid +135_2-1 Q0 MARCO_42_1864678319-6 71 0.022145 hybrid +135_2-1 Q0 MARCO_30_130263933-2 72 0.021844 hybrid +135_2-1 Q0 MARCO_21_595408461-3 73 0.019770 hybrid +135_2-1 Q0 MARCO_21_595408461-1 74 0.019770 hybrid +135_2-1 Q0 MARCO_48_375842976-5 75 0.016926 hybrid +135_2-1 Q0 MARCO_50_515596964-42 76 0.015630 hybrid +135_2-1 Q0 MARCO_30_825553192-1 77 0.013108 hybrid +135_2-1 Q0 MARCO_28_525867501-2 78 0.011720 hybrid +135_2-1 Q0 MARCO_09_794234431-3 79 0.011377 hybrid +135_2-1 Q0 MARCO_14_1776163950-1 80 0.010677 hybrid +135_2-1 Q0 MARCO_28_525867501-20 81 0.006950 hybrid +135_2-1 Q0 MARCO_40_739457070-1 82 0.005436 hybrid +135_2-1 Q0 MARCO_55_718454740-4 83 0.002900 hybrid +135_2-1 Q0 MARCO_42_637421417-38 84 0.000140 hybrid +135_2-1 Q0 MARCO_40_746806420-6 85 -0.000701 hybrid +135_2-1 Q0 MARCO_29_169327116-2 86 -0.002529 hybrid +135_2-1 Q0 MARCO_42_873191477-2 87 -0.004266 hybrid +135_2-1 Q0 MARCO_26_472606839-6 88 -0.004708 hybrid +135_2-1 Q0 MARCO_40_747603527-14 89 -0.005331 hybrid +135_2-1 Q0 MARCO_10_364951722-30 90 -0.006480 hybrid +135_2-1 Q0 MARCO_21_241068881-20 91 -0.008687 hybrid +135_2-1 Q0 MARCO_09_794634559-3 92 -0.011104 hybrid +135_2-1 Q0 MARCO_00_587140117-10 93 -0.011903 hybrid +135_2-1 Q0 MARCO_00_587154003-9 94 -0.011903 hybrid +135_2-1 Q0 MARCO_23_946168316-7 95 -0.013689 hybrid +135_2-1 Q0 MARCO_59_884108206-1 96 -0.018495 hybrid +135_2-1 Q0 MARCO_50_942868292-100 97 -0.020499 hybrid +135_2-1 Q0 MARCO_33_1435905034-9 98 -0.022775 hybrid +135_2-1 Q0 MARCO_32_52656996-8 99 -0.022943 hybrid +135_2-1 Q0 MARCO_50_942632346-88 100 -0.023651 hybrid +135_2-11 Q0 MARCO_51_958585730-5 1 0.499997 hybrid +135_2-11 Q0 MARCO_51_959300059-4 2 0.400698 hybrid +135_2-11 Q0 MARCO_07_1252086451-14 3 0.396646 hybrid +135_2-11 Q0 MARCO_44_116408113-3 4 0.393124 hybrid +135_2-11 Q0 MARCO_50_1610765686-32 5 0.366586 hybrid +135_2-11 Q0 MARCO_23_58591104-4 6 0.287851 hybrid +135_2-11 Q0 MARCO_51_959300059-5 7 0.266481 hybrid +135_2-11 Q0 MARCO_36_401149577-4 8 0.262347 hybrid +135_2-11 Q0 MARCO_51_957977239-3 9 0.261796 hybrid +135_2-11 Q0 MARCO_38_1386080218-3 10 0.247350 hybrid +135_2-11 Q0 MARCO_45_655694221-7 11 0.210377 hybrid +135_2-11 Q0 MARCO_50_636026845-8 12 0.203344 hybrid +135_2-11 Q0 MARCO_22_7715732-5 13 0.189515 hybrid +135_2-11 Q0 MARCO_41_2081404142-5 14 0.183142 hybrid +135_2-11 Q0 MARCO_50_942738183-29 15 0.176379 hybrid +135_2-11 Q0 MARCO_28_1757537175-7 16 0.175362 hybrid +135_2-11 Q0 MARCO_38_901425915-5 17 0.167858 hybrid +135_2-11 Q0 MARCO_46_773010518-13 18 0.162372 hybrid +135_2-11 Q0 MARCO_56_1513010351-11 19 0.158834 hybrid +135_2-11 Q0 MARCO_51_1068924601-15 20 0.157146 hybrid +135_2-11 Q0 MARCO_13_1762070377-7 21 0.152617 hybrid +135_2-11 Q0 MARCO_13_1763036598-8 22 0.132464 hybrid +135_2-11 Q0 MARCO_38_902652783-5 23 0.121070 hybrid +135_2-11 Q0 MARCO_10_1181563021-15 24 0.112976 hybrid +135_2-11 Q0 MARCO_45_1263230185-3 25 0.110315 hybrid +135_2-11 Q0 KILT_18613314-2 26 0.091005 hybrid +135_2-11 Q0 MARCO_38_901890613-5 27 0.084594 hybrid +135_2-11 Q0 MARCO_07_1050902196-10 28 0.078070 hybrid +135_2-11 Q0 MARCO_05_450073966-4 29 0.071675 hybrid +135_2-11 Q0 MARCO_38_901580327-6 30 0.070668 hybrid +135_2-11 Q0 MARCO_21_1669122945-6 31 0.065615 hybrid +135_2-11 Q0 MARCO_06_1413154596-2 32 0.061049 hybrid +135_2-11 Q0 MARCO_29_238234755-4 33 0.046739 hybrid +135_2-11 Q0 MARCO_50_1610765686-33 34 0.039213 hybrid +135_2-11 Q0 MARCO_38_902848229-5 35 0.037845 hybrid +135_2-11 Q0 MARCO_39_263205704-3 36 0.020521 hybrid +135_2-11 Q0 MARCO_39_259679721-2 37 0.020218 hybrid +135_2-11 Q0 MARCO_48_1742867695-2 38 0.019509 hybrid +135_2-11 Q0 MARCO_19_2654370538-2 39 0.017875 hybrid +135_2-11 Q0 MARCO_38_898360865-5 40 0.015506 hybrid +135_2-11 Q0 MARCO_47_915701381-5 41 0.010436 hybrid +135_2-11 Q0 MARCO_37_1255424093-12 42 -0.003728 hybrid +135_2-11 Q0 MARCO_59_332143153-4 43 -0.004117 hybrid +135_2-11 Q0 MARCO_08_163131777-11 44 -0.008256 hybrid +135_2-11 Q0 MARCO_38_901588272-6 45 -0.010637 hybrid +135_2-11 Q0 MARCO_00_357505133-10 46 -0.012200 hybrid +135_2-11 Q0 MARCO_40_388940781-15 47 -0.012930 hybrid +135_2-11 Q0 MARCO_31_1206975771-3 48 -0.016599 hybrid +135_2-11 Q0 MARCO_02_441545593-9 49 -0.024081 hybrid +135_2-11 Q0 MARCO_38_904012587-5 50 -0.037931 hybrid +135_2-11 Q0 MARCO_33_1241327772-16 51 -0.041010 hybrid +135_2-11 Q0 MARCO_24_490013454-2 52 -0.042919 hybrid +135_2-11 Q0 MARCO_47_916984074-5 53 -0.053345 hybrid +135_2-11 Q0 MARCO_38_899904414-7 54 -0.055650 hybrid +135_2-11 Q0 MARCO_50_942738183-23 55 -0.056537 hybrid +135_2-11 Q0 MARCO_43_241850791-3 56 -0.057311 hybrid +135_2-11 Q0 MARCO_47_1306068878-14 57 -0.058636 hybrid +135_2-11 Q0 MARCO_52_592967350-8 58 -0.061650 hybrid +135_2-11 Q0 MARCO_57_463533078-21 59 -0.074439 hybrid +135_2-11 Q0 MARCO_20_1197242388-3 60 -0.078697 hybrid +135_2-11 Q0 MARCO_45_655694221-8 61 -0.082566 hybrid +135_2-11 Q0 MARCO_50_1610765686-46 62 -0.085525 hybrid +135_2-11 Q0 MARCO_38_900807518-10 63 -0.085649 hybrid +135_2-11 Q0 MARCO_38_905904620-4 64 -0.086905 hybrid +135_2-11 Q0 MARCO_10_729915219-2 65 -0.087099 hybrid +135_2-11 Q0 MARCO_38_904507779-8 66 -0.087213 hybrid +135_2-11 Q0 MARCO_28_331106557-3 67 -0.091303 hybrid +135_2-11 Q0 MARCO_00_767008897-3 68 -0.091887 hybrid +135_2-11 Q0 MARCO_27_1106497605-1 69 -0.093272 hybrid +135_2-11 Q0 MARCO_59_332548905-2 70 -0.095166 hybrid +135_2-11 Q0 MARCO_38_901439378-4 71 -0.095393 hybrid +135_2-11 Q0 MARCO_50_2770521097-2 72 -0.095409 hybrid +135_2-11 Q0 MARCO_52_675919156-6 73 -0.096897 hybrid +135_2-11 Q0 MARCO_58_1733867517-4 74 -0.102145 hybrid +135_2-11 Q0 MARCO_59_333147543-2 75 -0.102995 hybrid +135_2-11 Q0 MARCO_41_1816460246-16 76 -0.103303 hybrid +135_2-11 Q0 MARCO_38_853886432-3 77 -0.103454 hybrid +135_2-11 Q0 MARCO_00_1400156272-10 78 -0.104369 hybrid +135_2-11 Q0 MARCO_51_1078074546-22 79 -0.105402 hybrid +135_2-11 Q0 MARCO_13_1762084239-5 80 -0.107160 hybrid +135_2-11 Q0 MARCO_38_901433116-4 81 -0.110883 hybrid +135_2-11 Q0 MARCO_40_817250994-4 82 -0.111126 hybrid +135_2-11 Q0 MARCO_45_655694221-5 83 -0.111315 hybrid +135_2-11 Q0 MARCO_38_900777953-12 84 -0.112051 hybrid +135_2-11 Q0 MARCO_50_1524915527-18 85 -0.112657 hybrid +135_2-11 Q0 MARCO_59_864333626-2 86 -0.115995 hybrid +135_2-11 Q0 MARCO_46_989140414-50 87 -0.116515 hybrid +135_2-11 Q0 MARCO_38_904331266-5 88 -0.117775 hybrid +135_2-11 Q0 MARCO_07_1409262483-3 89 -0.118852 hybrid +135_2-11 Q0 MARCO_38_905330581-6 90 -0.119198 hybrid +135_2-11 Q0 MARCO_06_1405530488-3 91 -0.119539 hybrid +135_2-11 Q0 MARCO_10_1198798292-2 92 -0.120443 hybrid +135_2-11 Q0 MARCO_42_1856888194-7 93 -0.123856 hybrid +135_2-11 Q0 MARCO_42_1856888194-9 94 -0.123862 hybrid +135_2-11 Q0 MARCO_46_1269106691-5 95 -0.127005 hybrid +135_2-11 Q0 MARCO_39_1367102489-8 96 -0.128536 hybrid +135_2-11 Q0 MARCO_47_915659507-7 97 -0.128688 hybrid +135_2-11 Q0 MARCO_29_1336521363-4 98 -0.132242 hybrid +135_2-11 Q0 MARCO_23_698706344-2 99 -0.144897 hybrid +135_2-11 Q0 MARCO_45_1559521846-3 100 -0.144913 hybrid +135_2-3 Q0 MARCO_33_483767651-116 1 0.500000 hybrid +135_2-3 Q0 MARCO_44_841990555-8 2 0.483029 hybrid +135_2-3 Q0 MARCO_30_88056508-22 3 0.437853 hybrid +135_2-3 Q0 MARCO_26_111596749-6 4 0.388068 hybrid +135_2-3 Q0 MARCO_10_715671323-6 5 0.287452 hybrid +135_2-3 Q0 MARCO_39_221813548-10 6 0.278229 hybrid +135_2-3 Q0 MARCO_07_543909954-2 7 0.273580 hybrid +135_2-3 Q0 MARCO_50_1410903011-13 8 0.264586 hybrid +135_2-3 Q0 MARCO_46_987762890-3 9 0.247302 hybrid +135_2-3 Q0 MARCO_48_376091625-22 10 0.228307 hybrid +135_2-3 Q0 MARCO_07_995973808-8 11 0.227349 hybrid +135_2-3 Q0 MARCO_50_942632346-65 12 0.197839 hybrid +135_2-3 Q0 MARCO_45_656776984-7 13 0.196598 hybrid +135_2-3 Q0 MARCO_12_353491396-135 14 0.180042 hybrid +135_2-3 Q0 MARCO_07_992472568-8 15 0.174822 hybrid +135_2-3 Q0 MARCO_07_992472568-10 16 0.174817 hybrid +135_2-3 Q0 MARCO_21_1459093924-6 17 0.173560 hybrid +135_2-3 Q0 MARCO_16_1102386653-2 18 0.166918 hybrid +135_2-3 Q0 MARCO_48_375062597-23 19 0.163002 hybrid +135_2-3 Q0 MARCO_29_542014923-5 20 0.161638 hybrid +135_2-3 Q0 MARCO_46_991070927-2 21 0.161604 hybrid +135_2-3 Q0 MARCO_23_898224248-7 22 0.160759 hybrid +135_2-3 Q0 MARCO_50_942632346-93 23 0.149501 hybrid +135_2-3 Q0 MARCO_40_744338693-3 24 0.146740 hybrid +135_2-3 Q0 MARCO_48_1560419894-2 25 0.141495 hybrid +135_2-3 Q0 MARCO_07_1013088575-7 26 0.135629 hybrid +135_2-3 Q0 MARCO_50_942500408-8 27 0.135179 hybrid +135_2-3 Q0 MARCO_34_474986520-23 28 0.131313 hybrid +135_2-3 Q0 MARCO_07_998987553-2 29 0.130022 hybrid +135_2-3 Q0 MARCO_42_945182259-5 30 0.115955 hybrid +135_2-3 Q0 MARCO_33_727762492-3 31 0.053871 hybrid +135_2-3 Q0 MARCO_42_1848803583-2 32 0.053686 hybrid +135_2-3 Q0 MARCO_50_942632346-26 33 0.051281 hybrid +135_2-3 Q0 MARCO_42_873592670-1 34 0.050347 hybrid +135_2-3 Q0 MARCO_38_996371841-3 35 0.043352 hybrid +135_2-3 Q0 MARCO_39_221813548-9 36 0.042956 hybrid +135_2-3 Q0 MARCO_42_873592670-3 37 0.040913 hybrid +135_2-3 Q0 MARCO_40_741982222-4 38 0.040884 hybrid +135_2-3 Q0 MARCO_24_1950227631-5 39 0.028928 hybrid +135_2-3 Q0 MARCO_21_754922578-8 40 0.025134 hybrid +135_2-3 Q0 MARCO_52_600093697-2 41 0.024861 hybrid +135_2-3 Q0 MARCO_42_877425973-3 42 0.023639 hybrid +135_2-3 Q0 MARCO_06_320259610-4 43 0.021644 hybrid +135_2-3 Q0 MARCO_50_1427561328-41 44 0.015837 hybrid +135_2-3 Q0 MARCO_42_874225434-7 45 0.014058 hybrid +135_2-3 Q0 MARCO_41_2086300486-2 46 0.002630 hybrid +135_2-3 Q0 MARCO_26_111258725-9 47 0.001325 hybrid +135_2-3 Q0 MARCO_50_942868292-54 48 0.000890 hybrid +135_2-3 Q0 MARCO_22_1521084911-11 49 -0.005831 hybrid +135_2-3 Q0 MARCO_50_1427540295-16 50 -0.006843 hybrid +135_2-3 Q0 MARCO_46_1272624854-2 51 -0.012992 hybrid +135_2-3 Q0 MARCO_56_1510065279-7 52 -0.015236 hybrid +135_2-3 Q0 MARCO_42_873748869-10 53 -0.018316 hybrid +135_2-3 Q0 MARCO_50_1427540295-17 54 -0.019743 hybrid +135_2-3 Q0 MARCO_50_1172115628-1 55 -0.021938 hybrid +135_2-3 Q0 MARCO_21_871480542-1 56 -0.022358 hybrid +135_2-3 Q0 MARCO_23_61177956-11 57 -0.022778 hybrid +135_2-3 Q0 MARCO_26_1060247035-5 58 -0.025374 hybrid +135_2-3 Q0 MARCO_50_942632346-88 59 -0.030110 hybrid +135_2-3 Q0 MARCO_40_746977716-10 60 -0.031176 hybrid +135_2-3 Q0 MARCO_24_1457902117-14 61 -0.036920 hybrid +135_2-3 Q0 MARCO_42_1099176110-12 62 -0.037037 hybrid +135_2-3 Q0 MARCO_25_239320013-2 63 -0.037887 hybrid +135_2-3 Q0 MARCO_42_1100291157-3 64 -0.039564 hybrid +135_2-3 Q0 MARCO_50_942868292-169 65 -0.041417 hybrid +135_2-3 Q0 MARCO_57_2121896036-29 66 -0.042028 hybrid +135_2-3 Q0 MARCO_07_999479265-1 67 -0.042125 hybrid +135_2-3 Q0 MARCO_53_613530310-14 68 -0.047732 hybrid +135_2-3 Q0 MARCO_50_1183196001-13 69 -0.050631 hybrid +135_2-3 Q0 MARCO_29_1169853961-2 70 -0.051672 hybrid +135_2-3 Q0 MARCO_40_747649628-6 71 -0.051784 hybrid +135_2-3 Q0 MARCO_42_874225434-1 72 -0.053339 hybrid +135_2-3 Q0 MARCO_50_942512262-48 73 -0.055225 hybrid +135_2-3 Q0 MARCO_48_1151006253-1 74 -0.055739 hybrid +135_2-3 Q0 MARCO_23_58181313-3 75 -0.056873 hybrid +135_2-3 Q0 MARCO_08_164896340-9 76 -0.060842 hybrid +135_2-3 Q0 MARCO_50_2160188362-9 77 -0.063281 hybrid +135_2-3 Q0 MARCO_50_942868292-86 78 -0.063887 hybrid +135_2-3 Q0 MARCO_46_1312823191-1 79 -0.064146 hybrid +135_2-3 Q0 MARCO_51_952724175-21 80 -0.064987 hybrid +135_2-3 Q0 MARCO_42_874214859-8 81 -0.066341 hybrid +135_2-3 Q0 MARCO_13_541663139-5 82 -0.069156 hybrid +135_2-3 Q0 MARCO_15_1721675128-21 83 -0.073179 hybrid +135_2-3 Q0 MARCO_40_747063556-5 84 -0.075002 hybrid +135_2-3 Q0 MARCO_50_1519442266-12 85 -0.079788 hybrid +135_2-3 Q0 MARCO_50_1410903011-5 86 -0.080081 hybrid +135_2-3 Q0 MARCO_56_1511245005-5 87 -0.080712 hybrid +135_2-3 Q0 MARCO_41_2024902041-7 88 -0.080883 hybrid +135_2-3 Q0 MARCO_50_942512262-47 89 -0.084080 hybrid +135_2-3 Q0 MARCO_43_747441218-9 90 -0.085209 hybrid +135_2-3 Q0 MARCO_21_870439901-3 91 -0.087882 hybrid +135_2-3 Q0 MARCO_07_1010671131-2 92 -0.093166 hybrid +135_2-3 Q0 MARCO_28_525905818-5 93 -0.093264 hybrid +135_2-3 Q0 MARCO_29_1335900520-7 94 -0.093660 hybrid +135_2-3 Q0 MARCO_14_749962236-13 95 -0.095048 hybrid +135_2-3 Q0 MARCO_33_727683177-2 96 -0.095611 hybrid +135_2-3 Q0 MARCO_42_1847258076-1 97 -0.096647 hybrid +135_2-3 Q0 MARCO_28_525892779-9 98 -0.100435 hybrid +135_2-3 Q0 MARCO_33_1433682272-24 99 -0.101290 hybrid +135_2-3 Q0 MARCO_22_1603851615-6 100 -0.101652 hybrid +135_2-5 Q0 MARCO_51_959902068-3 1 0.499999 hybrid +135_2-5 Q0 MARCO_50_1678865180-11 2 0.443233 hybrid +135_2-5 Q0 MARCO_51_958253040-21 3 0.425220 hybrid +135_2-5 Q0 MARCO_04_956999677-2 4 0.337850 hybrid +135_2-5 Q0 MARCO_21_870601055-2 5 0.333558 hybrid +135_2-5 Q0 MARCO_21_870601055-1 6 0.276561 hybrid +135_2-5 Q0 MARCO_56_1517301414-10 7 0.259055 hybrid +135_2-5 Q0 MARCO_37_840595800-2 8 0.257455 hybrid +135_2-5 Q0 MARCO_50_2380391824-3 9 0.232900 hybrid +135_2-5 Q0 MARCO_37_840595800-3 10 0.209600 hybrid +135_2-5 Q0 MARCO_22_1643905967-13 11 0.208499 hybrid +135_2-5 Q0 MARCO_56_1513010351-2 12 0.202868 hybrid +135_2-5 Q0 MARCO_37_840595800-1 13 0.202388 hybrid +135_2-5 Q0 MARCO_42_941690382-3 14 0.197932 hybrid +135_2-5 Q0 MARCO_06_1651294274-4 15 0.193373 hybrid +135_2-5 Q0 MARCO_06_1393825764-1 16 0.185401 hybrid +135_2-5 Q0 MARCO_07_1416169973-8 17 0.153989 hybrid +135_2-5 Q0 MARCO_50_1678865180-3 18 0.129125 hybrid +135_2-5 Q0 MARCO_50_1678865180-6 19 0.128736 hybrid +135_2-5 Q0 MARCO_08_163882593-6 20 0.120191 hybrid +135_2-5 Q0 MARCO_06_1397845375-6 21 0.118075 hybrid +135_2-5 Q0 MARCO_26_111711735-7 22 0.114362 hybrid +135_2-5 Q0 MARCO_51_958757759-1 23 0.105446 hybrid +135_2-5 Q0 MARCO_50_1417751395-5 24 0.103184 hybrid +135_2-5 Q0 MARCO_42_1097163798-6 25 0.094814 hybrid +135_2-5 Q0 MARCO_15_1396443797-5 26 0.089065 hybrid +135_2-5 Q0 MARCO_20_366825421-6 27 0.081208 hybrid +135_2-5 Q0 MARCO_50_1678865180-12 28 0.071879 hybrid +135_2-5 Q0 MARCO_50_1417147563-15 29 0.071003 hybrid +135_2-5 Q0 MARCO_06_1397845375-1 30 0.064058 hybrid +135_2-5 Q0 MARCO_48_756182980-4 31 0.054014 hybrid +135_2-5 Q0 MARCO_50_1183196001-5 32 0.053103 hybrid +135_2-5 Q0 MARCO_20_366825421-2 33 0.052482 hybrid +135_2-5 Q0 MARCO_42_617995734-1 34 0.047374 hybrid +135_2-5 Q0 MARCO_50_942738183-29 35 0.045436 hybrid +135_2-5 Q0 MARCO_56_1513010351-13 36 0.034258 hybrid +135_2-5 Q0 MARCO_07_595390964-4 37 0.028108 hybrid +135_2-5 Q0 MARCO_01_1638796365-1 38 0.018735 hybrid +135_2-5 Q0 MARCO_46_848652260-3 39 0.014057 hybrid +135_2-5 Q0 MARCO_06_1871184670-68 40 0.013781 hybrid +135_2-5 Q0 MARCO_01_1638796365-2 41 -0.007328 hybrid +135_2-5 Q0 MARCO_57_2122062711-11 42 -0.009172 hybrid +135_2-5 Q0 MARCO_10_1183275422-3 43 -0.010688 hybrid +135_2-5 Q0 MARCO_15_1722348984-1 44 -0.019192 hybrid +135_2-5 Q0 MARCO_50_942738183-30 45 -0.019245 hybrid +135_2-5 Q0 MARCO_31_883528667-23 46 -0.026547 hybrid +135_2-5 Q0 MARCO_39_422173655-4 47 -0.027325 hybrid +135_2-5 Q0 MARCO_50_942738183-47 48 -0.027678 hybrid +135_2-5 Q0 MARCO_53_358653507-3 49 -0.030788 hybrid +135_2-5 Q0 MARCO_24_1460729845-10 50 -0.037140 hybrid +135_2-5 Q0 MARCO_51_958081400-6 51 -0.038381 hybrid +135_2-5 Q0 MARCO_38_1389806888-2 52 -0.038838 hybrid +135_2-5 Q0 MARCO_06_1397845375-4 53 -0.040456 hybrid +135_2-5 Q0 MARCO_51_958244570-3 54 -0.043590 hybrid +135_2-5 Q0 MARCO_06_1395845897-2 55 -0.052049 hybrid +135_2-5 Q0 MARCO_28_447350531-1 56 -0.056041 hybrid +135_2-5 Q0 MARCO_31_883528667-14 57 -0.061621 hybrid +135_2-5 Q0 MARCO_50_1678865180-9 58 -0.064880 hybrid +135_2-5 Q0 MARCO_06_1397845375-3 59 -0.066768 hybrid +135_2-5 Q0 MARCO_42_946997076-1 60 -0.073161 hybrid +135_2-5 Q0 MARCO_55_717924858-2 61 -0.076637 hybrid +135_2-5 Q0 MARCO_51_957966634-2 62 -0.077257 hybrid +135_2-5 Q0 MARCO_20_366825421-1 63 -0.078100 hybrid +135_2-5 Q0 MARCO_51_958253040-1 64 -0.078353 hybrid +135_2-5 Q0 MARCO_10_1201802098-5 65 -0.082161 hybrid +135_2-5 Q0 MARCO_50_2393691806-9 66 -0.084336 hybrid +135_2-5 Q0 MARCO_50_2488130410-37 67 -0.085660 hybrid +135_2-5 Q0 MARCO_11_1510382207-3 68 -0.089584 hybrid +135_2-5 Q0 MARCO_50_1678865180-14 69 -0.089762 hybrid +135_2-5 Q0 MARCO_04_217572199-1 70 -0.091240 hybrid +135_2-5 Q0 MARCO_20_20312009-4 71 -0.093205 hybrid +135_2-5 Q0 MARCO_42_607373902-3 72 -0.097746 hybrid +135_2-5 Q0 MARCO_42_471021744-1 73 -0.100593 hybrid +135_2-5 Q0 MARCO_51_122589513-1 74 -0.101483 hybrid +135_2-5 Q0 MARCO_38_1389992310-2 75 -0.103585 hybrid +135_2-5 Q0 MARCO_07_1416108370-1 76 -0.104395 hybrid +135_2-5 Q0 MARCO_50_1416826848-21 77 -0.105739 hybrid +135_2-5 Q0 MARCO_31_883528667-21 78 -0.106642 hybrid +135_2-5 Q0 MARCO_01_1643580497-13 79 -0.107405 hybrid +135_2-5 Q0 MARCO_46_845391100-9 80 -0.108515 hybrid +135_2-5 Q0 MARCO_05_1512280189-4 81 -0.109711 hybrid +135_2-5 Q0 MARCO_54_142619105-4 82 -0.110693 hybrid +135_2-5 Q0 MARCO_42_892245414-1 83 -0.116027 hybrid +135_2-5 Q0 MARCO_42_891517845-8 84 -0.117309 hybrid +135_2-5 Q0 KILT_8459324-2 85 -0.119396 hybrid +135_2-5 Q0 MARCO_38_845771083-8 86 -0.121850 hybrid +135_2-5 Q0 MARCO_31_883528667-9 87 -0.123225 hybrid +135_2-5 Q0 MARCO_06_1403600206-12 88 -0.125495 hybrid +135_2-5 Q0 MARCO_42_943021699-1 89 -0.125840 hybrid +135_2-5 Q0 MARCO_46_1273347812-4 90 -0.127932 hybrid +135_2-5 Q0 MARCO_28_478232099-5 91 -0.130511 hybrid +135_2-5 Q0 MARCO_42_945929988-4 92 -0.131218 hybrid +135_2-5 Q0 MARCO_23_488344351-4 93 -0.132536 hybrid +135_2-5 Q0 MARCO_53_1061129752-1 94 -0.133993 hybrid +135_2-5 Q0 MARCO_20_366825421-5 95 -0.137688 hybrid +135_2-5 Q0 MARCO_00_1401489078-9 96 -0.139781 hybrid +135_2-5 Q0 MARCO_24_1554102428-14 97 -0.139870 hybrid +135_2-5 Q0 MARCO_06_1402821152-10 98 -0.140027 hybrid +135_2-5 Q0 MARCO_06_1871184670-8 99 -0.140683 hybrid +135_2-5 Q0 MARCO_10_1382606012-10 100 -0.143610 hybrid +135_2-7 Q0 MARCO_56_1517301414-10 1 0.499998 hybrid +135_2-7 Q0 MARCO_50_1678865180-12 2 0.447346 hybrid +135_2-7 Q0 MARCO_06_1397845375-1 3 0.438285 hybrid +135_2-7 Q0 MARCO_50_1678865180-11 4 0.430050 hybrid +135_2-7 Q0 MARCO_01_1638796365-2 5 0.354916 hybrid +135_2-7 Q0 MARCO_50_1417751395-5 6 0.317143 hybrid +135_2-7 Q0 MARCO_04_956999677-2 7 0.277601 hybrid +135_2-7 Q0 MARCO_50_942738183-30 8 0.276767 hybrid +135_2-7 Q0 MARCO_51_958253040-21 9 0.251875 hybrid +135_2-7 Q0 MARCO_20_366825421-11 10 0.249835 hybrid +135_2-7 Q0 MARCO_50_1416826848-21 11 0.239754 hybrid +135_2-7 Q0 MARCO_08_163882593-6 12 0.229811 hybrid +135_2-7 Q0 MARCO_50_2380391824-3 13 0.225419 hybrid +135_2-7 Q0 MARCO_51_959902068-3 14 0.218224 hybrid +135_2-7 Q0 MARCO_22_1643905967-13 15 0.205847 hybrid +135_2-7 Q0 MARCO_37_840595800-2 16 0.204534 hybrid +135_2-7 Q0 MARCO_06_1651294274-4 17 0.202562 hybrid +135_2-7 Q0 MARCO_42_1097163798-6 18 0.182619 hybrid +135_2-7 Q0 MARCO_50_1417147563-15 19 0.181153 hybrid +135_2-7 Q0 MARCO_50_1678865180-6 20 0.177372 hybrid +135_2-7 Q0 MARCO_42_607373902-3 21 0.140457 hybrid +135_2-7 Q0 MARCO_50_1678865180-9 22 0.136101 hybrid +135_2-7 Q0 MARCO_37_382111221-3 23 0.123785 hybrid +135_2-7 Q0 MARCO_01_1643580497-13 24 0.122337 hybrid +135_2-7 Q0 MARCO_15_135233194-11 25 0.112070 hybrid +135_2-7 Q0 MARCO_21_870601055-3 26 0.109875 hybrid +135_2-7 Q0 MARCO_10_1201802098-5 27 0.103740 hybrid +135_2-7 Q0 MARCO_57_2122062711-13 28 0.098956 hybrid +135_2-7 Q0 MARCO_06_1397845375-6 29 0.086849 hybrid +135_2-7 Q0 MARCO_21_870601055-2 30 0.085587 hybrid +135_2-7 Q0 MARCO_56_1513010351-2 31 0.085529 hybrid +135_2-7 Q0 MARCO_37_840595800-1 32 0.085263 hybrid +135_2-7 Q0 MARCO_50_2488130410-37 33 0.080401 hybrid +135_2-7 Q0 MARCO_50_1678865180-7 34 0.076910 hybrid +135_2-7 Q0 MARCO_21_870601055-1 35 0.071039 hybrid +135_2-7 Q0 MARCO_42_615332378-6 36 0.065340 hybrid +135_2-7 Q0 MARCO_50_942738183-29 37 0.062176 hybrid +135_2-7 Q0 MARCO_51_959902068-4 38 0.060613 hybrid +135_2-7 Q0 MARCO_26_111711735-7 39 0.053688 hybrid +135_2-7 Q0 MARCO_50_1678865180-3 40 0.052176 hybrid +135_2-7 Q0 MARCO_42_891517845-8 41 0.051946 hybrid +135_2-7 Q0 MARCO_28_525726252-5 42 0.049097 hybrid +135_2-7 Q0 MARCO_10_1183275422-3 43 0.046693 hybrid +135_2-7 Q0 MARCO_15_1722348984-1 44 0.045835 hybrid +135_2-7 Q0 MARCO_08_165172533-3 45 0.030659 hybrid +135_2-7 Q0 MARCO_24_1460729845-10 46 0.029542 hybrid +135_2-7 Q0 MARCO_23_488344351-4 47 0.028239 hybrid +135_2-7 Q0 MARCO_45_176717033-7 48 0.017641 hybrid +135_2-7 Q0 MARCO_37_69565447-1 49 0.015051 hybrid +135_2-7 Q0 MARCO_06_1402821152-10 50 0.010385 hybrid +135_2-7 Q0 MARCO_04_956999677-1 51 0.004112 hybrid +135_2-7 Q0 MARCO_37_840595800-3 52 0.003413 hybrid +135_2-7 Q0 MARCO_50_2488130410-73 53 -0.010979 hybrid +135_2-7 Q0 MARCO_20_366825421-6 54 -0.014481 hybrid +135_2-7 Q0 MARCO_15_1396443797-5 55 -0.015092 hybrid +135_2-7 Q0 MARCO_20_366825421-14 56 -0.015115 hybrid +135_2-7 Q0 MARCO_24_1554102428-14 57 -0.017067 hybrid +135_2-7 Q0 MARCO_46_848652260-3 58 -0.022394 hybrid +135_2-7 Q0 MARCO_42_945929988-4 59 -0.022712 hybrid +135_2-7 Q0 MARCO_42_941690382-3 60 -0.024599 hybrid +135_2-7 Q0 MARCO_09_535505861-1 61 -0.031517 hybrid +135_2-7 Q0 MARCO_32_1483868721-25 62 -0.036470 hybrid +135_2-7 Q0 MARCO_00_1585229255-71 63 -0.039387 hybrid +135_2-7 Q0 MARCO_50_2488130410-24 64 -0.039856 hybrid +135_2-7 Q0 MARCO_32_1495934270-6 65 -0.045764 hybrid +135_2-7 Q0 MARCO_56_1513010351-13 66 -0.047625 hybrid +135_2-7 Q0 MARCO_28_478232099-5 67 -0.047692 hybrid +135_2-7 Q0 MARCO_07_1003589292-4 68 -0.050376 hybrid +135_2-7 Q0 MARCO_50_1183196001-5 69 -0.050819 hybrid +135_2-7 Q0 MARCO_15_135233194-22 70 -0.052952 hybrid +135_2-7 Q0 MARCO_49_1170844987-6 71 -0.056666 hybrid +135_2-7 Q0 MARCO_50_2160188362-32 72 -0.059634 hybrid +135_2-7 Q0 MARCO_37_1254010287-3 73 -0.061687 hybrid +135_2-7 Q0 MARCO_07_1416169973-8 74 -0.063044 hybrid +135_2-7 Q0 MARCO_53_613802402-4 75 -0.064455 hybrid +135_2-7 Q0 MARCO_20_16259434-1 76 -0.066538 hybrid +135_2-7 Q0 MARCO_51_958757759-1 77 -0.066552 hybrid +135_2-7 Q0 MARCO_20_366825421-2 78 -0.067737 hybrid +135_2-7 Q0 MARCO_42_941690382-2 79 -0.073186 hybrid +135_2-7 Q0 MARCO_42_892245414-1 80 -0.078625 hybrid +135_2-7 Q0 MARCO_06_1396249501-4 81 -0.080593 hybrid +135_2-7 Q0 MARCO_51_958081400-6 82 -0.082660 hybrid +135_2-7 Q0 MARCO_42_1870518152-12 83 -0.085853 hybrid +135_2-7 Q0 MARCO_20_237272684-2 84 -0.087619 hybrid +135_2-7 Q0 MARCO_06_1393825764-1 85 -0.089398 hybrid +135_2-7 Q0 MARCO_20_366825421-10 86 -0.089726 hybrid +135_2-7 Q0 MARCO_15_1722348984-4 87 -0.090084 hybrid +135_2-7 Q0 MARCO_11_1495796135-4 88 -0.092035 hybrid +135_2-7 Q0 MARCO_50_942738183-47 89 -0.095783 hybrid +135_2-7 Q0 MARCO_57_2118611960-23 90 -0.096438 hybrid +135_2-7 Q0 MARCO_04_410537106-12 91 -0.097224 hybrid +135_2-7 Q0 MARCO_46_1273896896-4 92 -0.097376 hybrid +135_2-7 Q0 MARCO_20_20312009-4 93 -0.097933 hybrid +135_2-7 Q0 MARCO_06_1397845375-3 94 -0.098379 hybrid +135_2-7 Q0 MARCO_06_1395845897-2 95 -0.103443 hybrid +135_2-7 Q0 MARCO_47_1331204900-16 96 -0.105229 hybrid +135_2-7 Q0 MARCO_22_1648947069-14 97 -0.106742 hybrid +135_2-7 Q0 MARCO_51_958757759-5 98 -0.109835 hybrid +135_2-7 Q0 MARCO_27_1245693034-5 99 -0.110071 hybrid +135_2-7 Q0 MARCO_49_1478990613-7 100 -0.111428 hybrid +135_2-9 Q0 MARCO_21_870601055-1 1 0.500002 hybrid +135_2-9 Q0 MARCO_08_163882593-6 2 0.498917 hybrid +135_2-9 Q0 MARCO_04_956999677-2 3 0.474756 hybrid +135_2-9 Q0 MARCO_21_870601055-2 4 0.392727 hybrid +135_2-9 Q0 MARCO_56_1517301414-10 5 0.350917 hybrid +135_2-9 Q0 MARCO_50_1417147563-15 6 0.336186 hybrid +135_2-9 Q0 MARCO_41_270571342-4 7 0.277562 hybrid +135_2-9 Q0 MARCO_51_959902068-3 8 0.267033 hybrid +135_2-9 Q0 MARCO_56_1513010351-2 9 0.262253 hybrid +135_2-9 Q0 MARCO_50_1417751395-5 10 0.255427 hybrid +135_2-9 Q0 MARCO_50_1416826848-21 11 0.239204 hybrid +135_2-9 Q0 MARCO_21_870601055-3 12 0.238619 hybrid +135_2-9 Q0 MARCO_32_374642125-1 13 0.228512 hybrid +135_2-9 Q0 MARCO_50_1678865180-11 14 0.132760 hybrid +135_2-9 Q0 MARCO_50_2488130410-73 15 0.100510 hybrid +135_2-9 Q0 MARCO_06_1651294274-4 16 0.099643 hybrid +135_2-9 Q0 MARCO_50_2380391824-3 17 0.086287 hybrid +135_2-9 Q0 MARCO_32_375165062-2 18 0.076498 hybrid +135_2-9 Q0 MARCO_50_2393691806-16 19 0.071722 hybrid +135_2-9 Q0 MARCO_50_1183196001-5 20 0.071421 hybrid +135_2-9 Q0 MARCO_51_958253040-21 21 0.066692 hybrid +135_2-9 Q0 MARCO_51_122589513-1 22 0.061662 hybrid +135_2-9 Q0 MARCO_04_956999677-1 23 0.061546 hybrid +135_2-9 Q0 MARCO_46_1271288630-8 24 0.059219 hybrid +135_2-9 Q0 MARCO_52_363365539-2 25 0.058657 hybrid +135_2-9 Q0 MARCO_32_1487288639-12 26 0.055169 hybrid +135_2-9 Q0 MARCO_23_488370169-2 27 0.050876 hybrid +135_2-9 Q0 MARCO_09_794234431-20 28 0.049772 hybrid +135_2-9 Q0 MARCO_22_1643905967-13 29 0.038402 hybrid +135_2-9 Q0 MARCO_11_711636091-7 30 0.036540 hybrid +135_2-9 Q0 MARCO_42_941690382-3 31 0.027140 hybrid +135_2-9 Q0 MARCO_07_1250699350-3 32 0.024853 hybrid +135_2-9 Q0 MARCO_20_20312009-4 33 0.013000 hybrid +135_2-9 Q0 MARCO_56_1517362905-4 34 0.010271 hybrid +135_2-9 Q0 MARCO_27_1245788375-3 35 0.003451 hybrid +135_2-9 Q0 MARCO_05_1512280189-4 36 -0.010304 hybrid +135_2-9 Q0 MARCO_06_1397845375-6 37 -0.017145 hybrid +135_2-9 Q0 MARCO_06_1408469188-4 38 -0.017983 hybrid +135_2-9 Q0 MARCO_37_1254010287-3 39 -0.028621 hybrid +135_2-9 Q0 MARCO_20_20312009-6 40 -0.029728 hybrid +135_2-9 Q0 MARCO_10_1202031956-16 41 -0.029818 hybrid +135_2-9 Q0 MARCO_51_959168735-4 42 -0.030588 hybrid +135_2-9 Q0 MARCO_46_1273347812-4 43 -0.031582 hybrid +135_2-9 Q0 MARCO_28_1759587521-10 44 -0.034192 hybrid +135_2-9 Q0 MARCO_25_236568303-17 45 -0.040474 hybrid +135_2-9 Q0 MARCO_37_346233273-9 46 -0.043033 hybrid +135_2-9 Q0 MARCO_37_840595800-2 47 -0.043548 hybrid +135_2-9 Q0 MARCO_50_2488130410-20 48 -0.048292 hybrid +135_2-9 Q0 MARCO_43_747441218-5 49 -0.054588 hybrid +135_2-9 Q0 MARCO_50_2488130410-49 50 -0.062373 hybrid +135_2-9 Q0 MARCO_32_375515972-3 51 -0.062671 hybrid +135_2-9 Q0 MARCO_00_567195721-30 52 -0.065919 hybrid +135_2-9 Q0 MARCO_51_958244570-3 53 -0.069153 hybrid +135_2-9 Q0 MARCO_51_957977239-3 54 -0.069516 hybrid +135_2-9 Q0 MARCO_51_959590085-6 55 -0.072775 hybrid +135_2-9 Q0 MARCO_22_1648947069-14 56 -0.073871 hybrid +135_2-9 Q0 MARCO_51_960085625-13 57 -0.076477 hybrid +135_2-9 Q0 MARCO_01_1638796365-2 58 -0.083118 hybrid +135_2-9 Q0 MARCO_00_767743164-2 59 -0.093912 hybrid +135_2-9 Q0 MARCO_50_2160188362-32 60 -0.095331 hybrid +135_2-9 Q0 MARCO_32_594116784-2 61 -0.097835 hybrid +135_2-9 Q0 MARCO_06_1397845375-1 62 -0.100426 hybrid +135_2-9 Q0 MARCO_46_845391100-9 63 -0.100695 hybrid +135_2-9 Q0 MARCO_48_377038396-10 64 -0.103559 hybrid +135_2-9 Q0 MARCO_06_1402821152-10 65 -0.105645 hybrid +135_2-9 Q0 MARCO_32_50618325-3 66 -0.107485 hybrid +135_2-9 Q0 MARCO_23_944932744-3 67 -0.108342 hybrid +135_2-9 Q0 MARCO_40_1188861351-4 68 -0.108502 hybrid +135_2-9 Q0 MARCO_50_2393691806-9 69 -0.112657 hybrid +135_2-9 Q0 MARCO_50_942738183-30 70 -0.112937 hybrid +135_2-9 Q0 MARCO_02_1355864800-14 71 -0.113060 hybrid +135_2-9 Q0 MARCO_04_956999677-4 72 -0.114105 hybrid +135_2-9 Q0 MARCO_50_2488130410-24 73 -0.116051 hybrid +135_2-9 Q0 MARCO_03_1219968897-4 74 -0.117339 hybrid +135_2-9 Q0 MARCO_33_723693321-2 75 -0.119263 hybrid +135_2-9 Q0 MARCO_50_1511565640-19 76 -0.122003 hybrid +135_2-9 Q0 MARCO_48_375697229-12 77 -0.124703 hybrid +135_2-9 Q0 MARCO_51_958585730-29 78 -0.130332 hybrid +135_2-9 Q0 MARCO_03_1220283235-2 79 -0.131689 hybrid +135_2-9 Q0 MARCO_28_434750316-3 80 -0.134092 hybrid +135_2-9 Q0 MARCO_07_1416169973-8 81 -0.136930 hybrid +135_2-9 Q0 MARCO_51_955339474-78 82 -0.139184 hybrid +135_2-9 Q0 MARCO_56_1517301414-11 83 -0.144356 hybrid +135_2-9 Q0 MARCO_32_374931214-4 84 -0.146032 hybrid +135_2-9 Q0 MARCO_42_164141426-11 85 -0.146170 hybrid +135_2-9 Q0 MARCO_50_2397935887-38 86 -0.147517 hybrid +135_2-9 Q0 MARCO_50_1423699111-14 87 -0.147687 hybrid +135_2-9 Q0 MARCO_07_992393018-4 88 -0.149081 hybrid +135_2-9 Q0 MARCO_51_958511495-6 89 -0.150721 hybrid +135_2-9 Q0 MARCO_10_1382606012-10 90 -0.151317 hybrid +135_2-9 Q0 MARCO_04_956999677-3 91 -0.156641 hybrid +135_2-9 Q0 MARCO_28_422593013-7 92 -0.160183 hybrid +135_2-9 Q0 MARCO_49_970313000-4 93 -0.162560 hybrid +135_2-9 Q0 MARCO_29_1011874735-6 94 -0.164142 hybrid +135_2-9 Q0 MARCO_50_2380238556-10 95 -0.164836 hybrid +135_2-9 Q0 MARCO_32_374578812-4 96 -0.168443 hybrid +135_2-9 Q0 MARCO_32_374229391-1 97 -0.169906 hybrid +135_2-9 Q0 MARCO_55_717924858-2 98 -0.170236 hybrid +135_2-9 Q0 MARCO_31_1564623688-3 99 -0.170425 hybrid +135_2-9 Q0 MARCO_20_27429334-6 100 -0.171296 hybrid +135_3-1 Q0 MARCO_00_898730767-3 1 0.500000 hybrid +135_3-1 Q0 MARCO_59_356337724-5 2 0.277603 hybrid +135_3-1 Q0 MARCO_51_957764537-2 3 0.275127 hybrid +135_3-1 Q0 MARCO_15_137188383-4 4 0.271171 hybrid +135_3-1 Q0 MARCO_30_832200335-1 5 0.200733 hybrid +135_3-1 Q0 MARCO_15_526509543-3 6 0.182404 hybrid +135_3-1 Q0 MARCO_50_2488130410-24 7 0.160421 hybrid +135_3-1 Q0 MARCO_07_1000940097-3 8 0.146708 hybrid +135_3-1 Q0 MARCO_21_151919715-15 9 0.141368 hybrid +135_3-1 Q0 MARCO_20_59980201-3 10 0.136352 hybrid +135_3-1 Q0 MARCO_07_1012854612-2 11 0.129070 hybrid +135_3-1 Q0 MARCO_15_526524970-9 12 0.128000 hybrid +135_3-1 Q0 MARCO_46_1271288630-3 13 0.121266 hybrid +135_3-1 Q0 MARCO_53_617813365-5 14 0.119003 hybrid +135_3-1 Q0 MARCO_03_1220235132-1 15 0.114243 hybrid +135_3-1 Q0 MARCO_50_2488130410-22 16 0.111382 hybrid +135_3-1 Q0 MARCO_51_957764537-1 17 0.099756 hybrid +135_3-1 Q0 MARCO_54_175786723-3 18 0.099386 hybrid +135_3-1 Q0 MARCO_08_1484334854-1 19 0.091419 hybrid +135_3-1 Q0 MARCO_53_618734730-1 20 0.090645 hybrid +135_3-1 Q0 MARCO_30_832200335-2 21 0.082984 hybrid +135_3-1 Q0 MARCO_07_1012877652-4 22 0.080641 hybrid +135_3-1 Q0 MARCO_29_1211974105-2 23 0.073775 hybrid +135_3-1 Q0 MARCO_07_1012854612-4 24 0.071114 hybrid +135_3-1 Q0 MARCO_21_869538031-2 25 0.066807 hybrid +135_3-1 Q0 MARCO_50_2488130410-37 26 0.064270 hybrid +135_3-1 Q0 MARCO_00_898714629-11 27 0.054379 hybrid +135_3-1 Q0 MARCO_07_992255008-3 28 0.051231 hybrid +135_3-1 Q0 MARCO_48_377486088-3 29 0.048848 hybrid +135_3-1 Q0 MARCO_21_869909453-1 30 0.045370 hybrid +135_3-1 Q0 MARCO_42_873762756-8 31 0.040660 hybrid +135_3-1 Q0 MARCO_50_2488130410-31 32 0.038511 hybrid +135_3-1 Q0 MARCO_51_958229275-5 33 0.036883 hybrid +135_3-1 Q0 MARCO_51_958286148-2 34 0.032570 hybrid +135_3-1 Q0 MARCO_51_957867032-8 35 0.032301 hybrid +135_3-1 Q0 MARCO_42_163777617-18 36 0.031225 hybrid +135_3-1 Q0 MARCO_40_743492071-2 37 0.022605 hybrid +135_3-1 Q0 MARCO_11_1512638687-2 38 0.022454 hybrid +135_3-1 Q0 MARCO_05_1512212622-1 39 0.020623 hybrid +135_3-1 Q0 MARCO_41_343326630-3 40 0.014638 hybrid +135_3-1 Q0 MARCO_23_945375410-2 41 0.010362 hybrid +135_3-1 Q0 MARCO_51_944682700-3 42 0.009277 hybrid +135_3-1 Q0 MARCO_50_1183196001-9 43 -0.003447 hybrid +135_3-1 Q0 MARCO_51_957867032-6 44 -0.012511 hybrid +135_3-1 Q0 MARCO_50_942632346-11 45 -0.016975 hybrid +135_3-1 Q0 MARCO_21_152176844-21 46 -0.017894 hybrid +135_3-1 Q0 MARCO_00_255425337-3 47 -0.021264 hybrid +135_3-1 Q0 MARCO_21_871175996-1 48 -0.030085 hybrid +135_3-1 Q0 MARCO_00_898735786-7 49 -0.031124 hybrid +135_3-1 Q0 MARCO_40_743492071-1 50 -0.033340 hybrid +135_3-1 Q0 MARCO_37_1258820165-4 51 -0.033439 hybrid +135_3-1 Q0 MARCO_30_1096049691-1 52 -0.033646 hybrid +135_3-1 Q0 MARCO_40_743592721-2 53 -0.035474 hybrid +135_3-1 Q0 MARCO_06_1402239090-2 54 -0.035936 hybrid +135_3-1 Q0 MARCO_50_1171758861-16 55 -0.038551 hybrid +135_3-1 Q0 MARCO_25_1429975288-3 56 -0.039445 hybrid +135_3-1 Q0 MARCO_56_1517301414-10 57 -0.044510 hybrid +135_3-1 Q0 MARCO_12_1748615894-7 58 -0.046332 hybrid +135_3-1 Q0 MARCO_48_377531994-8 59 -0.046342 hybrid +135_3-1 Q0 MARCO_38_1389095510-3 60 -0.046829 hybrid +135_3-1 Q0 MARCO_32_374737087-4 61 -0.049129 hybrid +135_3-1 Q0 MARCO_54_1568582155-3 62 -0.053183 hybrid +135_3-1 Q0 MARCO_56_1517301414-6 63 -0.054546 hybrid +135_3-1 Q0 MARCO_10_714890637-1 64 -0.054700 hybrid +135_3-1 Q0 MARCO_10_1183275422-3 65 -0.055609 hybrid +135_3-1 Q0 MARCO_07_1012877652-6 66 -0.056701 hybrid +135_3-1 Q0 MARCO_03_582804021-4 67 -0.057447 hybrid +135_3-1 Q0 MARCO_50_942512262-5 68 -0.057928 hybrid +135_3-1 Q0 MARCO_53_618734730-5 69 -0.058125 hybrid +135_3-1 Q0 MARCO_00_898714629-13 70 -0.059494 hybrid +135_3-1 Q0 MARCO_11_1495796135-4 71 -0.061757 hybrid +135_3-1 Q0 MARCO_29_1211974105-3 72 -0.065706 hybrid +135_3-1 Q0 MARCO_56_1517301414-5 73 -0.066486 hybrid +135_3-1 Q0 MARCO_20_59992661-1 74 -0.067473 hybrid +135_3-1 Q0 MARCO_20_26754639-5 75 -0.067948 hybrid +135_3-1 Q0 MARCO_32_375291199-1 76 -0.070460 hybrid +135_3-1 Q0 MARCO_10_904399786-19 77 -0.071990 hybrid +135_3-1 Q0 MARCO_45_976216241-11 78 -0.072230 hybrid +135_3-1 Q0 MARCO_10_904428660-8 79 -0.076198 hybrid +135_3-1 Q0 MARCO_10_904399786-7 80 -0.078603 hybrid +135_3-1 Q0 MARCO_40_746806420-4 81 -0.079959 hybrid +135_3-1 Q0 MARCO_21_870356030-1 82 -0.081748 hybrid +135_3-1 Q0 MARCO_06_693854726-6 83 -0.081788 hybrid +135_3-1 Q0 MARCO_15_526509543-1 84 -0.085009 hybrid +135_3-1 Q0 MARCO_53_728000781-8 85 -0.086662 hybrid +135_3-1 Q0 MARCO_50_2488130410-28 86 -0.088006 hybrid +135_3-1 Q0 MARCO_46_1272892661-6 87 -0.089230 hybrid +135_3-1 Q0 MARCO_40_742457496-1 88 -0.089483 hybrid +135_3-1 Q0 MARCO_42_606423041-2 89 -0.094336 hybrid +135_3-1 Q0 MARCO_32_375291199-5 90 -0.094770 hybrid +135_3-1 Q0 MARCO_07_1046434444-4 91 -0.095914 hybrid +135_3-1 Q0 MARCO_20_26451631-3 92 -0.099204 hybrid +135_3-1 Q0 MARCO_19_2483188617-1 93 -0.099355 hybrid +135_3-1 Q0 MARCO_15_526509543-2 94 -0.103597 hybrid +135_3-1 Q0 MARCO_07_994596136-9 95 -0.106995 hybrid +135_3-1 Q0 MARCO_51_957867032-3 96 -0.108256 hybrid +135_3-1 Q0 MARCO_15_137188383-3 97 -0.108401 hybrid +135_3-1 Q0 MARCO_07_992255008-2 98 -0.108746 hybrid +135_3-1 Q0 MARCO_45_655712107-3 99 -0.110994 hybrid +135_3-1 Q0 MARCO_06_543617093-7 100 -0.111058 hybrid +135_3-3 Q0 MARCO_48_1593576924-13 1 0.500000 hybrid +135_3-3 Q0 MARCO_52_360541411-2 2 0.479070 hybrid +135_3-3 Q0 MARCO_20_19854465-5 3 0.347394 hybrid +135_3-3 Q0 MARCO_12_1746877573-1 4 0.292103 hybrid +135_3-3 Q0 MARCO_52_360541411-3 5 0.280326 hybrid +135_3-3 Q0 MARCO_07_259744883-7 6 0.247216 hybrid +135_3-3 Q0 MARCO_40_748339608-5 7 0.244135 hybrid +135_3-3 Q0 MARCO_20_26648209-26 8 0.209616 hybrid +135_3-3 Q0 MARCO_22_1020493230-1 9 0.170309 hybrid +135_3-3 Q0 MARCO_12_1744776449-5 10 0.145390 hybrid +135_3-3 Q0 MARCO_24_1619206228-3 11 0.140168 hybrid +135_3-3 Q0 MARCO_12_1748606616-3 12 0.127974 hybrid +135_3-3 Q0 MARCO_07_999990940-4 13 0.116790 hybrid +135_3-3 Q0 MARCO_51_959367968-5 14 0.112169 hybrid +135_3-3 Q0 MARCO_34_470547937-18 15 0.103613 hybrid +135_3-3 Q0 MARCO_12_1748527826-17 16 0.098062 hybrid +135_3-3 Q0 MARCO_20_26778100-21 17 0.097018 hybrid +135_3-3 Q0 MARCO_12_1748527826-22 18 0.085746 hybrid +135_3-3 Q0 MARCO_38_612094431-10 19 0.080138 hybrid +135_3-3 Q0 MARCO_23_1829249023-11 20 0.077025 hybrid +135_3-3 Q0 MARCO_48_1593576924-7 21 0.075953 hybrid +135_3-3 Q0 MARCO_48_1593576924-11 22 0.075642 hybrid +135_3-3 Q0 MARCO_13_652473763-16 23 0.060956 hybrid +135_3-3 Q0 MARCO_12_1746877573-4 24 0.048422 hybrid +135_3-3 Q0 MARCO_12_1747484813-1 25 0.029922 hybrid +135_3-3 Q0 MARCO_54_557197480-6 26 0.019579 hybrid +135_3-3 Q0 MARCO_54_557164081-5 27 0.019579 hybrid +135_3-3 Q0 MARCO_54_557173206-16 28 0.019579 hybrid +135_3-3 Q0 MARCO_13_406906602-4 29 0.019472 hybrid +135_3-3 Q0 MARCO_12_1746877573-7 30 0.016091 hybrid +135_3-3 Q0 MARCO_44_38020968-2 31 0.010275 hybrid +135_3-3 Q0 MARCO_27_843538425-4 32 0.008267 hybrid +135_3-3 Q0 MARCO_45_976232738-7 33 0.007895 hybrid +135_3-3 Q0 MARCO_53_4979078-3 34 0.003145 hybrid +135_3-3 Q0 MARCO_53_4979078-8 35 0.003145 hybrid +135_3-3 Q0 MARCO_23_945375410-5 36 -0.002052 hybrid +135_3-3 Q0 MARCO_50_2398382846-22 37 -0.003903 hybrid +135_3-3 Q0 MARCO_26_85398791-8 38 -0.005368 hybrid +135_3-3 Q0 MARCO_21_151919715-4 39 -0.015873 hybrid +135_3-3 Q0 MARCO_12_1749050770-9 40 -0.016369 hybrid +135_3-3 Q0 MARCO_20_19004849-30 41 -0.017016 hybrid +135_3-3 Q0 MARCO_24_1560097898-10 42 -0.022660 hybrid +135_3-3 Q0 MARCO_29_1168356752-6 43 -0.022867 hybrid +135_3-3 Q0 MARCO_11_146761267-7 44 -0.030826 hybrid +135_3-3 Q0 MARCO_12_1746877573-3 45 -0.031234 hybrid +135_3-3 Q0 MARCO_20_58087911-15 46 -0.032917 hybrid +135_3-3 Q0 MARCO_24_1614442741-11 47 -0.035827 hybrid +135_3-3 Q0 MARCO_12_1748131709-18 48 -0.038404 hybrid +135_3-3 Q0 MARCO_48_1593576924-1 49 -0.047496 hybrid +135_3-3 Q0 MARCO_07_259744883-1 50 -0.048400 hybrid +135_3-3 Q0 MARCO_23_939486284-15 51 -0.050262 hybrid +135_3-3 Q0 MARCO_42_606423041-6 52 -0.057364 hybrid +135_3-3 Q0 MARCO_23_939486284-28 53 -0.066721 hybrid +135_3-3 Q0 MARCO_52_890712024-1 54 -0.067078 hybrid +135_3-3 Q0 MARCO_29_663181418-14 55 -0.069509 hybrid +135_3-3 Q0 MARCO_46_1273467208-1 56 -0.075603 hybrid +135_3-3 Q0 MARCO_07_259744883-2 57 -0.076042 hybrid +135_3-3 Q0 MARCO_55_1344604004-16 58 -0.077704 hybrid +135_3-3 Q0 MARCO_18_438706474-2 59 -0.080585 hybrid +135_3-3 Q0 MARCO_46_1271948653-5 60 -0.087118 hybrid +135_3-3 Q0 MARCO_36_1430817970-8 61 -0.087411 hybrid +135_3-3 Q0 MARCO_44_38020968-1 62 -0.088519 hybrid +135_3-3 Q0 MARCO_40_743582683-2 63 -0.096014 hybrid +135_3-3 Q0 MARCO_20_18459747-17 64 -0.097190 hybrid +135_3-3 Q0 MARCO_25_520993524-1 65 -0.098116 hybrid +135_3-3 Q0 MARCO_25_1424666915-6 66 -0.099288 hybrid +135_3-3 Q0 MARCO_44_37969956-2 67 -0.100310 hybrid +135_3-3 Q0 MARCO_12_1748735394-16 68 -0.102798 hybrid +135_3-3 Q0 MARCO_20_57713615-5 69 -0.104638 hybrid +135_3-3 Q0 MARCO_34_1238100668-2 70 -0.104746 hybrid +135_3-3 Q0 MARCO_33_507273143-12 71 -0.110078 hybrid +135_3-3 Q0 MARCO_12_1748626937-6 72 -0.111747 hybrid +135_3-3 Q0 MARCO_20_26648209-4 73 -0.112419 hybrid +135_3-3 Q0 MARCO_25_1439013393-4 74 -0.113634 hybrid +135_3-3 Q0 MARCO_54_641742269-7 75 -0.115321 hybrid +135_3-3 Q0 MARCO_20_18459747-10 76 -0.118860 hybrid +135_3-3 Q0 MARCO_20_26359351-29 77 -0.123334 hybrid +135_3-3 Q0 MARCO_30_151678069-11 78 -0.129922 hybrid +135_3-3 Q0 MARCO_12_1746765138-1 79 -0.131880 hybrid +135_3-3 Q0 MARCO_20_26778100-20 80 -0.132867 hybrid +135_3-3 Q0 MARCO_51_690417572-8 81 -0.133882 hybrid +135_3-3 Q0 MARCO_31_1657464088-12 82 -0.136837 hybrid +135_3-3 Q0 MARCO_20_58087911-13 83 -0.137559 hybrid +135_3-3 Q0 MARCO_25_1694799786-6 84 -0.138746 hybrid +135_3-3 Q0 MARCO_25_521695352-20 85 -0.139804 hybrid +135_3-3 Q0 MARCO_12_1746627478-8 86 -0.140333 hybrid +135_3-3 Q0 MARCO_38_615257224-6 87 -0.142942 hybrid +135_3-3 Q0 MARCO_07_999990940-3 88 -0.147703 hybrid +135_3-3 Q0 MARCO_25_1424666915-1 89 -0.150766 hybrid +135_3-3 Q0 MARCO_23_939486284-30 90 -0.153039 hybrid +135_3-3 Q0 MARCO_48_1593576924-5 91 -0.155419 hybrid +135_3-3 Q0 MARCO_29_798855364-6 92 -0.155701 hybrid +135_3-3 Q0 MARCO_24_1688962-14 93 -0.156699 hybrid +135_3-3 Q0 MARCO_40_748010849-11 94 -0.159215 hybrid +135_3-3 Q0 MARCO_21_869655771-1 95 -0.160105 hybrid +135_3-3 Q0 MARCO_20_26778100-11 96 -0.160741 hybrid +135_3-3 Q0 MARCO_21_150638288-2 97 -0.162396 hybrid +135_3-3 Q0 MARCO_23_939486284-54 98 -0.163668 hybrid +135_3-3 Q0 MARCO_32_375673786-3 99 -0.165644 hybrid +135_3-3 Q0 MARCO_21_1186991410-5 100 -0.165905 hybrid +135_3-5 Q0 MARCO_37_346233273-2 1 0.500000 hybrid +135_3-5 Q0 MARCO_37_1255441378-2 2 0.462395 hybrid +135_3-5 Q0 MARCO_07_1012854612-6 3 0.431906 hybrid +135_3-5 Q0 MARCO_07_995026790-2 4 0.427827 hybrid +135_3-5 Q0 MARCO_30_130263933-14 5 0.393510 hybrid +135_3-5 Q0 MARCO_37_346050039-5 6 0.385643 hybrid +135_3-5 Q0 MARCO_30_89583066-5 7 0.373718 hybrid +135_3-5 Q0 MARCO_08_164068813-1 8 0.356602 hybrid +135_3-5 Q0 MARCO_41_2134331902-13 9 0.331138 hybrid +135_3-5 Q0 MARCO_52_362064717-4 10 0.315730 hybrid +135_3-5 Q0 MARCO_21_407960518-7 11 0.298703 hybrid +135_3-5 Q0 MARCO_47_1278812055-3 12 0.258499 hybrid +135_3-5 Q0 MARCO_42_255755193-12 13 0.255125 hybrid +135_3-5 Q0 MARCO_26_470494149-3 14 0.245091 hybrid +135_3-5 Q0 MARCO_37_1249866855-11 15 0.217550 hybrid +135_3-5 Q0 MARCO_14_1140895128-24 16 0.211773 hybrid +135_3-5 Q0 MARCO_14_1141495703-7 17 0.206620 hybrid +135_3-5 Q0 MARCO_37_346201442-3 18 0.206254 hybrid +135_3-5 Q0 MARCO_14_1140974147-12 19 0.184716 hybrid +135_3-5 Q0 MARCO_37_346233273-10 20 0.183599 hybrid +135_3-5 Q0 MARCO_15_1875621252-12 21 0.182035 hybrid +135_3-5 Q0 MARCO_53_811537013-5 22 0.177209 hybrid +135_3-5 Q0 MARCO_20_26261979-11 23 0.170574 hybrid +135_3-5 Q0 MARCO_50_637347493-11 24 0.164409 hybrid +135_3-5 Q0 MARCO_51_1631720949-3 25 0.158436 hybrid +135_3-5 Q0 MARCO_31_902519758-7 26 0.154307 hybrid +135_3-5 Q0 MARCO_37_346050039-2 27 0.153870 hybrid +135_3-5 Q0 MARCO_20_237121457-3 28 0.153712 hybrid +135_3-5 Q0 MARCO_20_26261979-35 29 0.150004 hybrid +135_3-5 Q0 MARCO_03_443068025-1 30 0.131027 hybrid +135_3-5 Q0 MARCO_37_346132850-26 31 0.128024 hybrid +135_3-5 Q0 MARCO_03_443068025-8 32 0.124969 hybrid +135_3-5 Q0 MARCO_37_346050039-6 33 0.118397 hybrid +135_3-5 Q0 MARCO_48_1215546889-1 34 0.113261 hybrid +135_3-5 Q0 MARCO_37_346050039-9 35 0.107815 hybrid +135_3-5 Q0 MARCO_37_346233273-9 36 0.103996 hybrid +135_3-5 Q0 MARCO_42_255755193-16 37 0.101761 hybrid +135_3-5 Q0 MARCO_30_1083682444-10 38 0.100907 hybrid +135_3-5 Q0 MARCO_14_1139811066-24 39 0.100623 hybrid +135_3-5 Q0 MARCO_54_1474060584-4 40 0.099506 hybrid +135_3-5 Q0 MARCO_53_736986031-5 41 0.099370 hybrid +135_3-5 Q0 MARCO_02_1355928254-5 42 0.097670 hybrid +135_3-5 Q0 MARCO_30_130372961-9 43 0.094505 hybrid +135_3-5 Q0 MARCO_48_376303509-13 44 0.092577 hybrid +135_3-5 Q0 MARCO_37_346050039-8 45 0.091952 hybrid +135_3-5 Q0 MARCO_47_1281991175-5 46 0.091799 hybrid +135_3-5 Q0 MARCO_50_637347493-14 47 0.068957 hybrid +135_3-5 Q0 MARCO_47_1278821470-3 48 0.060193 hybrid +135_3-5 Q0 MARCO_37_346132850-10 49 0.052686 hybrid +135_3-5 Q0 MARCO_14_1139685923-2 50 0.051225 hybrid +135_3-5 Q0 MARCO_14_1141386138-16 51 0.044827 hybrid +135_3-5 Q0 MARCO_37_346050039-4 52 0.039428 hybrid +135_3-5 Q0 MARCO_10_897439351-4 53 0.031908 hybrid +135_3-5 Q0 MARCO_00_1104033043-1 54 0.024325 hybrid +135_3-5 Q0 MARCO_00_1104004750-1 55 0.023021 hybrid +135_3-5 Q0 MARCO_20_26261979-26 56 0.020876 hybrid +135_3-5 Q0 MARCO_29_27091784-5 57 0.020557 hybrid +135_3-5 Q0 MARCO_48_1542527139-23 58 0.020272 hybrid +135_3-5 Q0 MARCO_37_1255441378-3 59 0.019457 hybrid +135_3-5 Q0 MARCO_47_1278812055-1 60 0.015361 hybrid +135_3-5 Q0 MARCO_52_362126977-10 61 0.011258 hybrid +135_3-5 Q0 MARCO_14_1618673674-42 62 0.005557 hybrid +135_3-5 Q0 MARCO_32_372359550-5 63 0.005293 hybrid +135_3-5 Q0 MARCO_37_346233273-7 64 0.001478 hybrid +135_3-5 Q0 MARCO_47_1278812055-4 65 -0.000378 hybrid +135_3-5 Q0 MARCO_12_1862095983-8 66 -0.001194 hybrid +135_3-5 Q0 MARCO_39_1519175279-18 67 -0.002082 hybrid +135_3-5 Q0 MARCO_20_237121457-13 68 -0.006750 hybrid +135_3-5 Q0 MARCO_48_376303509-12 69 -0.007243 hybrid +135_3-5 Q0 MARCO_07_995026790-4 70 -0.007668 hybrid +135_3-5 Q0 MARCO_14_1140895128-8 71 -0.008734 hybrid +135_3-5 Q0 MARCO_02_1355928254-4 72 -0.010425 hybrid +135_3-5 Q0 MARCO_20_26261979-6 73 -0.015948 hybrid +135_3-5 Q0 MARCO_28_1149100126-1 74 -0.017282 hybrid +135_3-5 Q0 MARCO_37_346132850-31 75 -0.021649 hybrid +135_3-5 Q0 MARCO_14_1141528588-9 76 -0.022758 hybrid +135_3-5 Q0 MARCO_20_26261979-27 77 -0.024618 hybrid +135_3-5 Q0 MARCO_37_346250766-6 78 -0.025485 hybrid +135_3-5 Q0 MARCO_37_346132850-16 79 -0.026411 hybrid +135_3-5 Q0 MARCO_39_1572295244-9 80 -0.028531 hybrid +135_3-5 Q0 MARCO_20_26261979-31 81 -0.028985 hybrid +135_3-5 Q0 MARCO_26_471012913-14 82 -0.030188 hybrid +135_3-5 Q0 MARCO_34_470445100-7 83 -0.032087 hybrid +135_3-5 Q0 MARCO_29_1010939897-7 84 -0.032652 hybrid +135_3-5 Q0 MARCO_33_507273143-12 85 -0.036811 hybrid +135_3-5 Q0 MARCO_50_637347493-6 86 -0.037631 hybrid +135_3-5 Q0 MARCO_35_131155613-2 87 -0.039810 hybrid +135_3-5 Q0 MARCO_39_1519175279-11 88 -0.040022 hybrid +135_3-5 Q0 MARCO_20_26261979-24 89 -0.040031 hybrid +135_3-5 Q0 MARCO_13_26160717-8 90 -0.040086 hybrid +135_3-5 Q0 MARCO_20_26261979-29 91 -0.040345 hybrid +135_3-5 Q0 MARCO_29_1687413549-1 92 -0.041055 hybrid +135_3-5 Q0 MARCO_02_1355928254-9 93 -0.041352 hybrid +135_3-5 Q0 MARCO_37_1258034833-5 94 -0.041658 hybrid +135_3-5 Q0 MARCO_53_731191764-4 95 -0.041713 hybrid +135_3-5 Q0 MARCO_21_407960518-4 96 -0.041828 hybrid +135_3-5 Q0 MARCO_37_346233273-13 97 -0.043514 hybrid +135_3-5 Q0 MARCO_49_1324766283-2 98 -0.044466 hybrid +135_3-5 Q0 MARCO_28_1149100126-3 99 -0.045519 hybrid +135_3-5 Q0 MARCO_39_1519175279-4 100 -0.049972 hybrid +135_4-1 Q0 MARCO_57_2138213254-10 1 0.500002 hybrid +135_4-1 Q0 MARCO_52_363071279-3 2 0.492568 hybrid +135_4-1 Q0 MARCO_46_1274376601-2 3 0.447632 hybrid +135_4-1 Q0 MARCO_42_162525279-7 4 0.387355 hybrid +135_4-1 Q0 MARCO_52_1377761263-2 5 0.342007 hybrid +135_4-1 Q0 MARCO_52_1377761263-4 6 0.321845 hybrid +135_4-1 Q0 MARCO_20_27580101-9 7 0.309278 hybrid +135_4-1 Q0 MARCO_40_172670674-4 8 0.292470 hybrid +135_4-1 Q0 MARCO_21_870421898-3 9 0.247385 hybrid +135_4-1 Q0 MARCO_00_723791909-3 10 0.220059 hybrid +135_4-1 Q0 MARCO_40_739920341-8 11 0.216931 hybrid +135_4-1 Q0 MARCO_08_1484380890-4 12 0.200991 hybrid +135_4-1 Q0 MARCO_52_363796560-2 13 0.149952 hybrid +135_4-1 Q0 MARCO_57_2139188855-11 14 0.146281 hybrid +135_4-1 Q0 MARCO_41_2025017468-12 15 0.136254 hybrid +135_4-1 Q0 MARCO_20_20844940-8 16 0.129739 hybrid +135_4-1 Q0 MARCO_41_291543269-8 17 0.125645 hybrid +135_4-1 Q0 MARCO_07_1004844203-3 18 0.111681 hybrid +135_4-1 Q0 MARCO_50_1982204942-12 19 0.108079 hybrid +135_4-1 Q0 MARCO_41_2024933693-9 20 0.104976 hybrid +135_4-1 Q0 MARCO_46_1273627867-9 21 0.097211 hybrid +135_4-1 Q0 MARCO_11_1465833397-4 22 0.091169 hybrid +135_4-1 Q0 MARCO_52_1377761263-3 23 0.084603 hybrid +135_4-1 Q0 MARCO_52_363099002-2 24 0.081384 hybrid +135_4-1 Q0 MARCO_02_1751367700-4 25 0.080862 hybrid +135_4-1 Q0 MARCO_25_1422733827-3 26 0.079251 hybrid +135_4-1 Q0 MARCO_07_995662392-2 27 0.077257 hybrid +135_4-1 Q0 MARCO_21_148924351-9 28 0.070052 hybrid +135_4-1 Q0 MARCO_40_172333049-4 29 0.067817 hybrid +135_4-1 Q0 MARCO_46_1271401812-7 30 0.066563 hybrid +135_4-1 Q0 MARCO_21_870787348-2 31 0.052512 hybrid +135_4-1 Q0 MARCO_07_1046434444-7 32 0.041005 hybrid +135_4-1 Q0 MARCO_22_1060515534-5 33 0.031107 hybrid +135_4-1 Q0 MARCO_52_363071279-2 34 0.024457 hybrid +135_4-1 Q0 MARCO_23_900206012-3 35 0.024012 hybrid +135_4-1 Q0 MARCO_36_999891978-2 36 0.023542 hybrid +135_4-1 Q0 MARCO_44_842166472-16 37 0.015615 hybrid +135_4-1 Q0 MARCO_08_162941433-5 38 0.006759 hybrid +135_4-1 Q0 MARCO_52_364000239-4 39 0.001116 hybrid +135_4-1 Q0 MARCO_08_163968395-5 40 -0.001313 hybrid +135_4-1 Q0 MARCO_15_139789254-9 41 -0.008962 hybrid +135_4-1 Q0 MARCO_45_979222941-2 42 -0.011379 hybrid +135_4-1 Q0 MARCO_10_901126083-6 43 -0.011382 hybrid +135_4-1 Q0 MARCO_20_20299207-4 44 -0.011619 hybrid +135_4-1 Q0 MARCO_21_869759017-2 45 -0.015765 hybrid +135_4-1 Q0 MARCO_36_999891978-5 46 -0.016592 hybrid +135_4-1 Q0 MARCO_41_291543269-5 47 -0.019177 hybrid +135_4-1 Q0 MARCO_41_291543269-3 48 -0.023983 hybrid +135_4-1 Q0 MARCO_21_870151851-2 49 -0.026721 hybrid +135_4-1 Q0 MARCO_21_149389328-9 50 -0.033910 hybrid +135_4-1 Q0 MARCO_46_1273551634-2 51 -0.036452 hybrid +135_4-1 Q0 MARCO_20_21847852-10 52 -0.037790 hybrid +135_4-1 Q0 MARCO_45_1248655843-7 53 -0.044724 hybrid +135_4-1 Q0 MARCO_40_739623650-5 54 -0.051867 hybrid +135_4-1 Q0 MARCO_46_1274315739-3 55 -0.052195 hybrid +135_4-1 Q0 MARCO_21_871559392-2 56 -0.054313 hybrid +135_4-1 Q0 MARCO_36_999891978-3 57 -0.057219 hybrid +135_4-1 Q0 MARCO_21_871572229-2 58 -0.066231 hybrid +135_4-1 Q0 MARCO_23_944932744-15 59 -0.068630 hybrid +135_4-1 Q0 MARCO_50_2381129650-6 60 -0.070344 hybrid +135_4-1 Q0 MARCO_40_746441647-12 61 -0.072765 hybrid +135_4-1 Q0 MARCO_04_956815082-17 62 -0.073600 hybrid +135_4-1 Q0 MARCO_41_877959294-2 63 -0.076174 hybrid +135_4-1 Q0 MARCO_56_1513090625-8 64 -0.076298 hybrid +135_4-1 Q0 MARCO_21_150922054-8 65 -0.082058 hybrid +135_4-1 Q0 MARCO_00_1585576391-4 66 -0.084315 hybrid +135_4-1 Q0 MARCO_28_331560880-4 67 -0.085562 hybrid +135_4-1 Q0 MARCO_32_375116849-2 68 -0.088271 hybrid +135_4-1 Q0 MARCO_22_1479996131-4 69 -0.090145 hybrid +135_4-1 Q0 MARCO_57_110600970-8 70 -0.101378 hybrid +135_4-1 Q0 MARCO_57_1966181811-8 71 -0.102373 hybrid +135_4-1 Q0 MARCO_27_1755778410-4 72 -0.102946 hybrid +135_4-1 Q0 MARCO_34_1327793375-4 73 -0.103507 hybrid +135_4-1 Q0 MARCO_07_998230326-3 74 -0.106690 hybrid +135_4-1 Q0 MARCO_21_871135668-3 75 -0.108115 hybrid +135_4-1 Q0 MARCO_21_151778145-3 76 -0.109224 hybrid +135_4-1 Q0 MARCO_07_992393018-3 77 -0.109253 hybrid +135_4-1 Q0 MARCO_49_968020483-4 78 -0.109909 hybrid +135_4-1 Q0 MARCO_55_680644304-7 79 -0.111054 hybrid +135_4-1 Q0 MARCO_10_900458745-15 80 -0.115192 hybrid +135_4-1 Q0 MARCO_57_110680525-7 81 -0.116439 hybrid +135_4-1 Q0 MARCO_22_1480112427-3 82 -0.116658 hybrid +135_4-1 Q0 MARCO_08_163131777-13 83 -0.122232 hybrid +135_4-1 Q0 MARCO_20_17261213-2 84 -0.122302 hybrid +135_4-1 Q0 MARCO_36_999891978-4 85 -0.123202 hybrid +135_4-1 Q0 MARCO_56_1514666098-12 86 -0.125280 hybrid +135_4-1 Q0 MARCO_50_2766437432-4 87 -0.126024 hybrid +135_4-1 Q0 MARCO_46_1272442255-2 88 -0.127147 hybrid +135_4-1 Q0 MARCO_56_1512582913-2 89 -0.127358 hybrid +135_4-1 Q0 MARCO_22_1597432905-19 90 -0.129469 hybrid +135_4-1 Q0 MARCO_39_1519217107-3 91 -0.129637 hybrid +135_4-1 Q0 MARCO_55_718313478-2 92 -0.131810 hybrid +135_4-1 Q0 MARCO_40_1126947822-6 93 -0.132058 hybrid +135_4-1 Q0 MARCO_42_1100291157-6 94 -0.135784 hybrid +135_4-1 Q0 MARCO_46_1272041984-3 95 -0.136149 hybrid +135_4-1 Q0 MARCO_20_22160644-10 96 -0.137567 hybrid +135_4-1 Q0 MARCO_46_1272401614-3 97 -0.140239 hybrid +135_4-1 Q0 MARCO_40_743616030-2 98 -0.140950 hybrid +135_4-1 Q0 MARCO_46_1273121987-9 99 -0.145741 hybrid +135_4-1 Q0 MARCO_46_1272401614-4 100 -0.146580 hybrid +136_1-1 Q0 MARCO_50_1984649934-8 1 0.500002 hybrid +136_1-1 Q0 MARCO_21_1378115203-28 2 0.446482 hybrid +136_1-1 Q0 MARCO_50_1984649934-7 3 0.422311 hybrid +136_1-1 Q0 MARCO_57_1227170091-2 4 0.399744 hybrid +136_1-1 Q0 KILT_453736-12 5 0.376170 hybrid +136_1-1 Q0 MARCO_06_1615593549-101 6 0.368476 hybrid +136_1-1 Q0 KILT_5530-9 7 0.361191 hybrid +136_1-1 Q0 MARCO_28_327932163-1 8 0.354733 hybrid +136_1-1 Q0 MARCO_00_1401261974-13 9 0.333884 hybrid +136_1-1 Q0 MARCO_42_1359229219-1 10 0.327807 hybrid +136_1-1 Q0 MARCO_16_4159902144-16 11 0.314268 hybrid +136_1-1 Q0 MARCO_06_1616419714-10 12 0.306711 hybrid +136_1-1 Q0 MARCO_50_1411564432-30 13 0.306061 hybrid +136_1-1 Q0 MARCO_42_1368592926-1 14 0.299699 hybrid +136_1-1 Q0 MARCO_50_1984649934-6 15 0.297791 hybrid +136_1-1 Q0 MARCO_06_1616419714-20 16 0.294443 hybrid +136_1-1 Q0 MARCO_05_424740033-34 17 0.275656 hybrid +136_1-1 Q0 MARCO_11_1511196274-1 18 0.268925 hybrid +136_1-1 Q0 KILT_80128-12 19 0.268199 hybrid +136_1-1 Q0 MARCO_14_1526002240-94 20 0.263259 hybrid +136_1-1 Q0 MARCO_00_944207367-2 21 0.257908 hybrid +136_1-1 Q0 MARCO_55_574781674-5 22 0.246772 hybrid +136_1-1 Q0 MARCO_19_235748733-4 23 0.242491 hybrid +136_1-1 Q0 MARCO_21_1378115203-23 24 0.237988 hybrid +136_1-1 Q0 MARCO_52_1329623511-4 25 0.236505 hybrid +136_1-1 Q0 MARCO_42_1359229219-2 26 0.233476 hybrid +136_1-1 Q0 MARCO_50_1984649934-1 27 0.228285 hybrid +136_1-1 Q0 MARCO_06_1616419714-8 28 0.217925 hybrid +136_1-1 Q0 MARCO_41_1361850806-44 29 0.215300 hybrid +136_1-1 Q0 MARCO_41_1361850806-13 30 0.205246 hybrid +136_1-1 Q0 MARCO_39_615043672-2 31 0.202464 hybrid +136_1-1 Q0 MARCO_19_265183945-4 32 0.196876 hybrid +136_1-1 Q0 MARCO_27_1510298108-4 33 0.195972 hybrid +136_1-1 Q0 MARCO_06_1615593549-87 34 0.194830 hybrid +136_1-1 Q0 MARCO_04_862540121-8 35 0.188913 hybrid +136_1-1 Q0 MARCO_42_1368592926-9 36 0.186944 hybrid +136_1-1 Q0 MARCO_06_1616419714-4 37 0.185640 hybrid +136_1-1 Q0 MARCO_05_424740033-1 38 0.180317 hybrid +136_1-1 Q0 MARCO_06_1615538550-22 39 0.180051 hybrid +136_1-1 Q0 MARCO_06_1615538550-23 40 0.179425 hybrid +136_1-1 Q0 KILT_453736-11 41 0.179275 hybrid +136_1-1 Q0 MARCO_28_327932163-2 42 0.177748 hybrid +136_1-1 Q0 MARCO_00_661672852-3 43 0.173136 hybrid +136_1-1 Q0 MARCO_06_1615593549-151 44 0.171271 hybrid +136_1-1 Q0 MARCO_42_1367290185-3 45 0.170667 hybrid +136_1-1 Q0 MARCO_41_1361850806-46 46 0.168746 hybrid +136_1-1 Q0 MARCO_41_1361850806-41 47 0.164509 hybrid +136_1-1 Q0 MARCO_05_424740033-45 48 0.159434 hybrid +136_1-1 Q0 MARCO_05_424740033-20 49 0.154543 hybrid +136_1-1 Q0 MARCO_48_624451421-3 50 0.151123 hybrid +136_1-1 Q0 MARCO_41_1361850806-14 51 0.142493 hybrid +136_1-1 Q0 MARCO_42_1359198610-2 52 0.138454 hybrid +136_1-1 Q0 MARCO_20_1591427430-6 53 0.134955 hybrid +136_1-1 Q0 MARCO_06_1616419714-9 54 0.134558 hybrid +136_1-1 Q0 MARCO_06_1615106047-20 55 0.130897 hybrid +136_1-1 Q0 MARCO_06_1615593549-74 56 0.130828 hybrid +136_1-1 Q0 MARCO_55_571956134-6 57 0.119251 hybrid +136_1-1 Q0 MARCO_41_1361850806-27 58 0.117777 hybrid +136_1-1 Q0 MARCO_06_1615106047-11 59 0.115896 hybrid +136_1-1 Q0 MARCO_16_2852307220-18 60 0.113709 hybrid +136_1-1 Q0 MARCO_41_1361850806-15 61 0.112329 hybrid +136_1-1 Q0 MARCO_06_545026672-1 62 0.106512 hybrid +136_1-1 Q0 KILT_453736-15 63 0.100195 hybrid +136_1-1 Q0 MARCO_50_1984649934-3 64 0.099604 hybrid +136_1-1 Q0 KILT_5530-7 65 0.093774 hybrid +136_1-1 Q0 MARCO_00_944207367-1 66 0.093737 hybrid +136_1-1 Q0 MARCO_10_371249796-4 67 0.092989 hybrid +136_1-1 Q0 MARCO_42_1367221250-7 68 0.089206 hybrid +136_1-1 Q0 MARCO_41_1361850806-38 69 0.087353 hybrid +136_1-1 Q0 MARCO_26_1835738965-180 70 0.086862 hybrid +136_1-1 Q0 MARCO_23_702973894-24 71 0.084174 hybrid +136_1-1 Q0 MARCO_13_737502139-2 72 0.083808 hybrid +136_1-1 Q0 MARCO_42_1368592926-3 73 0.081211 hybrid +136_1-1 Q0 MARCO_03_1770719375-2 74 0.080807 hybrid +136_1-1 Q0 MARCO_06_1615106047-8 75 0.080225 hybrid +136_1-1 Q0 MARCO_06_322904718-1 76 0.078736 hybrid +136_1-1 Q0 MARCO_17_2892192733-3 77 0.077403 hybrid +136_1-1 Q0 MARCO_50_1432093425-6 78 0.076273 hybrid +136_1-1 Q0 MARCO_19_235748733-8 79 0.069174 hybrid +136_1-1 Q0 MARCO_21_1378115203-25 80 0.068836 hybrid +136_1-1 Q0 MARCO_18_1300395573-11 81 0.067252 hybrid +136_1-1 Q0 MARCO_42_1368592926-5 82 0.065613 hybrid +136_1-1 Q0 MARCO_06_1616419714-13 83 0.063454 hybrid +136_1-1 Q0 MARCO_16_2852307220-7 84 0.062984 hybrid +136_1-1 Q0 MARCO_41_1361850806-39 85 0.061899 hybrid +136_1-1 Q0 KILT_57183612-3 86 0.061154 hybrid +136_1-1 Q0 MARCO_37_1186545077-11 87 0.055634 hybrid +136_1-1 Q0 MARCO_03_1476759938-7 88 0.053478 hybrid +136_1-1 Q0 MARCO_01_1174860585-4 89 0.051294 hybrid +136_1-1 Q0 MARCO_41_1361850806-7 90 0.050985 hybrid +136_1-1 Q0 KILT_453736-13 91 0.050230 hybrid +136_1-1 Q0 MARCO_19_265183945-8 92 0.048513 hybrid +136_1-1 Q0 MARCO_05_424740033-39 93 0.038177 hybrid +136_1-1 Q0 MARCO_51_116973976-5 94 0.035386 hybrid +136_1-1 Q0 MARCO_41_1361850806-42 95 0.035361 hybrid +136_1-1 Q0 MARCO_03_1770719375-4 96 0.026691 hybrid +136_1-1 Q0 MARCO_43_711535926-6 97 0.025204 hybrid +136_1-1 Q0 MARCO_06_1615538550-4 98 0.024050 hybrid +136_1-1 Q0 MARCO_06_1615538550-37 99 0.022495 hybrid +136_1-1 Q0 MARCO_06_1615593549-140 100 0.022492 hybrid +136_1-11 Q0 MARCO_21_1378115203-28 1 0.500002 hybrid +136_1-11 Q0 MARCO_57_1227170091-2 2 0.283400 hybrid +136_1-11 Q0 MARCO_41_1361850806-44 3 0.254865 hybrid +136_1-11 Q0 MARCO_50_1984649934-8 4 0.241660 hybrid +136_1-11 Q0 MARCO_50_1984649934-6 5 0.232110 hybrid +136_1-11 Q0 MARCO_00_1401261974-13 6 0.226685 hybrid +136_1-11 Q0 MARCO_31_1434204145-6 7 0.219553 hybrid +136_1-11 Q0 MARCO_50_1984649934-7 8 0.203954 hybrid +136_1-11 Q0 MARCO_10_371249796-4 9 0.198478 hybrid +136_1-11 Q0 MARCO_03_1476759938-9 10 0.198441 hybrid +136_1-11 Q0 MARCO_03_1770719375-4 11 0.191376 hybrid +136_1-11 Q0 MARCO_53_358902315-8 12 0.167579 hybrid +136_1-11 Q0 MARCO_27_40265189-5 13 0.163079 hybrid +136_1-11 Q0 MARCO_05_424740033-34 14 0.160890 hybrid +136_1-11 Q0 MARCO_42_1359229219-6 15 0.158680 hybrid +136_1-11 Q0 MARCO_28_327932163-1 16 0.154338 hybrid +136_1-11 Q0 MARCO_06_1616419714-13 17 0.144795 hybrid +136_1-11 Q0 MARCO_26_1835738965-180 18 0.141187 hybrid +136_1-11 Q0 MARCO_41_1361850806-13 19 0.140791 hybrid +136_1-11 Q0 MARCO_50_1984649934-1 20 0.139832 hybrid +136_1-11 Q0 KILT_453736-12 21 0.125253 hybrid +136_1-11 Q0 MARCO_01_1174860585-4 22 0.125035 hybrid +136_1-11 Q0 MARCO_42_1359198610-2 23 0.120347 hybrid +136_1-11 Q0 MARCO_33_178546655-41 24 0.118620 hybrid +136_1-11 Q0 MARCO_10_371249796-5 25 0.108775 hybrid +136_1-11 Q0 KILT_1270750-14 26 0.107106 hybrid +136_1-11 Q0 MARCO_42_1359229219-1 27 0.086605 hybrid +136_1-11 Q0 MARCO_50_2374302020-22 28 0.070660 hybrid +136_1-11 Q0 MARCO_56_1033634981-19 29 0.067609 hybrid +136_1-11 Q0 MARCO_06_1616419714-20 30 0.060085 hybrid +136_1-11 Q0 MARCO_41_1361850806-46 31 0.059575 hybrid +136_1-11 Q0 MARCO_27_1510298108-4 32 0.058442 hybrid +136_1-11 Q0 MARCO_13_737502139-2 33 0.052051 hybrid +136_1-11 Q0 MARCO_19_235748733-4 34 0.050827 hybrid +136_1-11 Q0 MARCO_42_1359229219-2 35 0.048054 hybrid +136_1-11 Q0 MARCO_37_1186545077-11 36 0.042115 hybrid +136_1-11 Q0 MARCO_50_1508368359-30 37 0.040177 hybrid +136_1-11 Q0 MARCO_39_615043672-2 38 0.037485 hybrid +136_1-11 Q0 MARCO_14_1526002240-94 39 0.036583 hybrid +136_1-11 Q0 MARCO_55_571956134-6 40 0.023794 hybrid +136_1-11 Q0 MARCO_55_574781674-5 41 0.022198 hybrid +136_1-11 Q0 MARCO_41_1199012835-33 42 0.020836 hybrid +136_1-11 Q0 MARCO_30_382247801-3 43 0.018342 hybrid +136_1-11 Q0 MARCO_50_1984649934-3 44 0.017651 hybrid +136_1-11 Q0 MARCO_19_235748733-3 45 0.016253 hybrid +136_1-11 Q0 MARCO_21_1376381125-19 46 0.013315 hybrid +136_1-11 Q0 MARCO_16_4159902144-16 47 0.013242 hybrid +136_1-11 Q0 MARCO_06_1616419714-19 48 0.012071 hybrid +136_1-11 Q0 MARCO_07_536012807-29 49 0.011411 hybrid +136_1-11 Q0 MARCO_03_1476759938-7 50 0.010643 hybrid +136_1-11 Q0 MARCO_28_327932163-2 51 0.002579 hybrid +136_1-11 Q0 KILT_80128-12 52 0.002126 hybrid +136_1-11 Q0 MARCO_16_1664628160-4 53 -0.000312 hybrid +136_1-11 Q0 MARCO_05_424740033-24 54 -0.001821 hybrid +136_1-11 Q0 MARCO_03_1770719375-3 55 -0.002548 hybrid +136_1-11 Q0 MARCO_57_1271472316-1 56 -0.006331 hybrid +136_1-11 Q0 MARCO_06_1616419714-9 57 -0.007397 hybrid +136_1-11 Q0 MARCO_23_1084651137-9 58 -0.008369 hybrid +136_1-11 Q0 MARCO_06_1615593549-74 59 -0.012668 hybrid +136_1-11 Q0 MARCO_04_865649090-20 60 -0.013848 hybrid +136_1-11 Q0 KILT_5530-9 61 -0.014643 hybrid +136_1-11 Q0 MARCO_06_1605036905-4 62 -0.028337 hybrid +136_1-11 Q0 MARCO_39_618236320-17 63 -0.030228 hybrid +136_1-11 Q0 MARCO_42_1368592926-1 64 -0.030239 hybrid +136_1-11 Q0 KILT_12075981-4 65 -0.032529 hybrid +136_1-11 Q0 MARCO_41_1361850806-14 66 -0.035510 hybrid +136_1-11 Q0 MARCO_48_624451421-3 67 -0.036730 hybrid +136_1-11 Q0 MARCO_06_1601700563-2 68 -0.037967 hybrid +136_1-11 Q0 MARCO_21_1378115203-23 69 -0.038477 hybrid +136_1-11 Q0 MARCO_42_1367221250-7 70 -0.040187 hybrid +136_1-11 Q0 MARCO_41_1361850806-15 71 -0.040308 hybrid +136_1-11 Q0 MARCO_42_1367674026-3 72 -0.041311 hybrid +136_1-11 Q0 MARCO_42_1367290185-3 73 -0.041445 hybrid +136_1-11 Q0 MARCO_04_321120052-6 74 -0.043537 hybrid +136_1-11 Q0 KILT_58528764-18 75 -0.046203 hybrid +136_1-11 Q0 MARCO_18_1300395573-11 76 -0.051273 hybrid +136_1-11 Q0 MARCO_11_1511196274-1 77 -0.061731 hybrid +136_1-11 Q0 MARCO_39_618236320-3 78 -0.062593 hybrid +136_1-11 Q0 MARCO_03_1476759938-4 79 -0.063585 hybrid +136_1-11 Q0 MARCO_52_1329623511-4 80 -0.065983 hybrid +136_1-11 Q0 MARCO_06_322904718-1 81 -0.068555 hybrid +136_1-11 Q0 MARCO_10_831411560-2 82 -0.068836 hybrid +136_1-11 Q0 MARCO_00_944207367-2 83 -0.071324 hybrid +136_1-11 Q0 MARCO_05_424740033-48 84 -0.072783 hybrid +136_1-11 Q0 MARCO_41_1361850806-19 85 -0.073933 hybrid +136_1-11 Q0 MARCO_21_1378115203-19 86 -0.074574 hybrid +136_1-11 Q0 MARCO_42_1368592926-10 87 -0.075294 hybrid +136_1-11 Q0 MARCO_05_424740033-1 88 -0.077779 hybrid +136_1-11 Q0 MARCO_05_424740033-20 89 -0.079134 hybrid +136_1-11 Q0 MARCO_04_862540121-8 90 -0.079536 hybrid +136_1-11 Q0 MARCO_41_1361850806-27 91 -0.079560 hybrid +136_1-11 Q0 KILT_7186858-1 92 -0.080639 hybrid +136_1-11 Q0 MARCO_22_993296992-8 93 -0.085310 hybrid +136_1-11 Q0 MARCO_42_1367674026-4 94 -0.086004 hybrid +136_1-11 Q0 MARCO_21_1378115203-25 95 -0.086189 hybrid +136_1-11 Q0 MARCO_06_1615106047-20 96 -0.086682 hybrid +136_1-11 Q0 MARCO_06_1902336129-1 97 -0.088402 hybrid +136_1-11 Q0 KILT_453736-11 98 -0.090518 hybrid +136_1-11 Q0 KILT_24067972-17 99 -0.092392 hybrid +136_1-11 Q0 MARCO_43_1280563415-23 100 -0.095782 hybrid +136_1-13 Q0 MARCO_06_1601700563-2 1 0.499999 hybrid +136_1-13 Q0 MARCO_48_624451421-3 2 0.408925 hybrid +136_1-13 Q0 MARCO_06_1605036905-4 3 0.336782 hybrid +136_1-13 Q0 MARCO_10_831411560-2 4 0.322046 hybrid +136_1-13 Q0 MARCO_06_1616419714-19 5 0.311339 hybrid +136_1-13 Q0 MARCO_42_1367967096-1 6 0.303497 hybrid +136_1-13 Q0 MARCO_00_661672852-8 7 0.246647 hybrid +136_1-13 Q0 MARCO_07_536012807-4 8 0.243081 hybrid +136_1-13 Q0 MARCO_06_1616419714-4 9 0.240140 hybrid +136_1-13 Q0 MARCO_50_1508368359-30 10 0.231163 hybrid +136_1-13 Q0 MARCO_39_615043672-2 11 0.224284 hybrid +136_1-13 Q0 MARCO_39_615043672-1 12 0.220166 hybrid +136_1-13 Q0 MARCO_42_1367967096-6 13 0.210008 hybrid +136_1-13 Q0 MARCO_37_1186529676-12 14 0.208542 hybrid +136_1-13 Q0 MARCO_18_1301359057-26 15 0.208146 hybrid +136_1-13 Q0 MARCO_21_1378115203-28 16 0.206344 hybrid +136_1-13 Q0 MARCO_21_1376381125-19 17 0.201806 hybrid +136_1-13 Q0 MARCO_50_1984649934-6 18 0.200382 hybrid +136_1-13 Q0 MARCO_42_1368592926-1 19 0.198013 hybrid +136_1-13 Q0 MARCO_37_1186545077-10 20 0.185653 hybrid +136_1-13 Q0 MARCO_50_1984649934-8 21 0.183034 hybrid +136_1-13 Q0 MARCO_26_1835738965-180 22 0.176598 hybrid +136_1-13 Q0 MARCO_50_1984649934-7 23 0.176182 hybrid +136_1-13 Q0 MARCO_06_1616419714-21 24 0.154494 hybrid +136_1-13 Q0 MARCO_39_618236320-17 25 0.149386 hybrid +136_1-13 Q0 MARCO_19_2552699673-3 26 0.149150 hybrid +136_1-13 Q0 MARCO_11_1511196274-1 27 0.149132 hybrid +136_1-13 Q0 MARCO_06_1902336129-1 28 0.148104 hybrid +136_1-13 Q0 MARCO_06_1604749305-2 29 0.139704 hybrid +136_1-13 Q0 MARCO_04_865649090-20 30 0.135343 hybrid +136_1-13 Q0 MARCO_07_544552818-85 31 0.132990 hybrid +136_1-13 Q0 MARCO_42_1359229219-2 32 0.132818 hybrid +136_1-13 Q0 MARCO_28_327932163-1 33 0.132122 hybrid +136_1-13 Q0 MARCO_28_327932163-2 34 0.132042 hybrid +136_1-13 Q0 MARCO_42_1367221250-7 35 0.131868 hybrid +136_1-13 Q0 MARCO_42_1359229219-5 36 0.131390 hybrid +136_1-13 Q0 MARCO_44_496588507-5 37 0.120914 hybrid +136_1-13 Q0 MARCO_06_1902336129-2 38 0.119441 hybrid +136_1-13 Q0 MARCO_21_1378115203-1 39 0.118783 hybrid +136_1-13 Q0 MARCO_03_1770719375-4 40 0.117984 hybrid +136_1-13 Q0 MARCO_42_1359229219-6 41 0.117363 hybrid +136_1-13 Q0 MARCO_42_1368592926-7 42 0.108033 hybrid +136_1-13 Q0 MARCO_33_1593442632-44 43 0.106467 hybrid +136_1-13 Q0 MARCO_06_1615593549-75 44 0.097070 hybrid +136_1-13 Q0 MARCO_06_1616419714-13 45 0.096115 hybrid +136_1-13 Q0 MARCO_48_624451421-1 46 0.092296 hybrid +136_1-13 Q0 MARCO_04_865649090-2 47 0.090075 hybrid +136_1-13 Q0 MARCO_39_678034715-11 48 0.087030 hybrid +136_1-13 Q0 MARCO_07_536012807-14 49 0.085575 hybrid +136_1-13 Q0 MARCO_42_1367290185-3 50 0.084204 hybrid +136_1-13 Q0 MARCO_50_1984649934-1 51 0.080970 hybrid +136_1-13 Q0 MARCO_06_1604175481-1 52 0.079306 hybrid +136_1-13 Q0 MARCO_00_944207367-1 53 0.079070 hybrid +136_1-13 Q0 MARCO_00_661672852-5 54 0.078803 hybrid +136_1-13 Q0 MARCO_06_1615593549-130 55 0.078629 hybrid +136_1-13 Q0 MARCO_06_1615538550-19 56 0.077864 hybrid +136_1-13 Q0 KILT_12075981-4 57 0.076425 hybrid +136_1-13 Q0 MARCO_06_1616419714-8 58 0.076198 hybrid +136_1-13 Q0 MARCO_06_1616419714-5 59 0.072082 hybrid +136_1-13 Q0 MARCO_06_1615538550-23 60 0.066487 hybrid +136_1-13 Q0 MARCO_43_1280563415-2 61 0.065811 hybrid +136_1-13 Q0 MARCO_06_1616419714-1 62 0.064832 hybrid +136_1-13 Q0 MARCO_06_1605036905-3 63 0.063586 hybrid +136_1-13 Q0 MARCO_26_1837852331-33 64 0.061506 hybrid +136_1-13 Q0 MARCO_42_1368592926-9 65 0.061330 hybrid +136_1-13 Q0 MARCO_42_1367967096-5 66 0.060552 hybrid +136_1-13 Q0 MARCO_05_424740033-50 67 0.059497 hybrid +136_1-13 Q0 MARCO_07_536012807-29 68 0.059288 hybrid +136_1-13 Q0 MARCO_11_1511196274-3 69 0.058614 hybrid +136_1-13 Q0 MARCO_33_1593442632-45 70 0.057813 hybrid +136_1-13 Q0 MARCO_33_1593442632-46 71 0.057813 hybrid +136_1-13 Q0 MARCO_16_1906878129-10 72 0.056794 hybrid +136_1-13 Q0 MARCO_16_1906893262-25 73 0.056792 hybrid +136_1-13 Q0 MARCO_19_573698239-88 74 0.056792 hybrid +136_1-13 Q0 MARCO_16_4105786320-22 75 0.056792 hybrid +136_1-13 Q0 MARCO_19_256712149-80 76 0.056792 hybrid +136_1-13 Q0 MARCO_19_235748733-9 77 0.056792 hybrid +136_1-13 Q0 MARCO_17_2364913107-14 78 0.056792 hybrid +136_1-13 Q0 MARCO_19_256449128-40 79 0.056792 hybrid +136_1-13 Q0 MARCO_18_2155014376-9 80 0.056792 hybrid +136_1-13 Q0 MARCO_18_3754851508-8 81 0.056792 hybrid +136_1-13 Q0 MARCO_18_1301359057-52 82 0.056792 hybrid +136_1-13 Q0 MARCO_19_256511183-26 83 0.056792 hybrid +136_1-13 Q0 MARCO_19_265183945-11 84 0.056790 hybrid +136_1-13 Q0 MARCO_42_1368592926-10 85 0.056394 hybrid +136_1-13 Q0 MARCO_25_1430736077-8 86 0.053490 hybrid +136_1-13 Q0 MARCO_34_1720669955-2 87 0.051757 hybrid +136_1-13 Q0 MARCO_06_1615593549-122 88 0.051733 hybrid +136_1-13 Q0 MARCO_06_1616419714-20 89 0.051057 hybrid +136_1-13 Q0 MARCO_26_1606598721-1 90 0.050111 hybrid +136_1-13 Q0 MARCO_06_1902336129-3 91 0.049646 hybrid +136_1-13 Q0 MARCO_37_1186529676-5 92 0.049577 hybrid +136_1-13 Q0 KILT_453736-12 93 0.046120 hybrid +136_1-13 Q0 MARCO_19_573659933-30 94 0.043651 hybrid +136_1-13 Q0 MARCO_41_1361850806-42 95 0.042222 hybrid +136_1-13 Q0 MARCO_06_1598753399-1 96 0.039419 hybrid +136_1-13 Q0 MARCO_06_1615106047-20 97 0.039361 hybrid +136_1-13 Q0 MARCO_41_1361850806-13 98 0.039219 hybrid +136_1-13 Q0 MARCO_42_1359201370-6 99 0.038124 hybrid +136_1-13 Q0 MARCO_06_1609998986-1 100 0.036632 hybrid +136_1-3 Q0 MARCO_31_1434204145-6 1 0.500000 hybrid +136_1-3 Q0 MARCO_57_1227170091-2 2 0.494259 hybrid +136_1-3 Q0 MARCO_42_1359229219-1 3 0.398861 hybrid +136_1-3 Q0 MARCO_42_1368592926-2 4 0.353303 hybrid +136_1-3 Q0 MARCO_06_1615593549-44 5 0.348480 hybrid +136_1-3 Q0 MARCO_21_1378115203-23 6 0.328172 hybrid +136_1-3 Q0 KILT_453736-5 7 0.318344 hybrid +136_1-3 Q0 MARCO_19_235748733-4 8 0.303247 hybrid +136_1-3 Q0 MARCO_51_116973976-2 9 0.276331 hybrid +136_1-3 Q0 MARCO_06_1615593549-45 10 0.248319 hybrid +136_1-3 Q0 MARCO_42_1368592926-4 11 0.236446 hybrid +136_1-3 Q0 MARCO_06_1615593549-27 12 0.236319 hybrid +136_1-3 Q0 MARCO_11_1511196274-4 13 0.201629 hybrid +136_1-3 Q0 MARCO_06_1615593549-25 14 0.192404 hybrid +136_1-3 Q0 MARCO_55_574781674-5 15 0.186612 hybrid +136_1-3 Q0 MARCO_11_1427639568-7 16 0.184006 hybrid +136_1-3 Q0 MARCO_11_1511196274-1 17 0.180366 hybrid +136_1-3 Q0 MARCO_34_1725136735-2 18 0.171880 hybrid +136_1-3 Q0 KILT_179342-6 19 0.170048 hybrid +136_1-3 Q0 KILT_53404298-5 20 0.168776 hybrid +136_1-3 Q0 MARCO_17_2892192733-3 21 0.155539 hybrid +136_1-3 Q0 MARCO_46_524806126-1 22 0.130217 hybrid +136_1-3 Q0 MARCO_06_1615593549-62 23 0.123195 hybrid +136_1-3 Q0 MARCO_06_1615593549-29 24 0.088441 hybrid +136_1-3 Q0 MARCO_19_235748733-3 25 0.087372 hybrid +136_1-3 Q0 MARCO_48_624451421-2 26 0.078555 hybrid +136_1-3 Q0 MARCO_06_1615593549-66 27 0.076714 hybrid +136_1-3 Q0 MARCO_06_1615593549-76 28 0.070222 hybrid +136_1-3 Q0 MARCO_28_327932163-2 29 0.068981 hybrid +136_1-3 Q0 MARCO_06_1615593549-35 30 0.068186 hybrid +136_1-3 Q0 MARCO_06_1615593549-26 31 0.063609 hybrid +136_1-3 Q0 MARCO_05_424740033-34 32 0.044596 hybrid +136_1-3 Q0 KILT_453736-9 33 0.036195 hybrid +136_1-3 Q0 MARCO_21_1388139780-6 34 0.035470 hybrid +136_1-3 Q0 MARCO_16_1906893262-2 35 0.030677 hybrid +136_1-3 Q0 MARCO_06_1615593549-56 36 0.023620 hybrid +136_1-3 Q0 MARCO_06_1615593549-74 37 0.020097 hybrid +136_1-3 Q0 MARCO_06_1615593549-28 38 0.013047 hybrid +136_1-3 Q0 MARCO_21_1378115203-19 39 0.006055 hybrid +136_1-3 Q0 MARCO_39_618236320-16 40 0.001446 hybrid +136_1-3 Q0 MARCO_06_1615593549-47 41 -0.001588 hybrid +136_1-3 Q0 KILT_453736-12 42 -0.002350 hybrid +136_1-3 Q0 MARCO_05_424740033-19 43 -0.005404 hybrid +136_1-3 Q0 MARCO_06_1615538550-39 44 -0.008047 hybrid +136_1-3 Q0 MARCO_06_1615593549-142 45 -0.008047 hybrid +136_1-3 Q0 MARCO_06_1615593549-42 46 -0.008407 hybrid +136_1-3 Q0 MARCO_06_1615593549-48 47 -0.011689 hybrid +136_1-3 Q0 MARCO_21_1378115203-13 48 -0.013698 hybrid +136_1-3 Q0 MARCO_06_1615538550-41 49 -0.017556 hybrid +136_1-3 Q0 MARCO_06_1615593549-144 50 -0.017556 hybrid +136_1-3 Q0 MARCO_06_1615593549-65 51 -0.018212 hybrid +136_1-3 Q0 MARCO_42_1368592926-3 52 -0.019769 hybrid +136_1-3 Q0 MARCO_42_1359229219-2 53 -0.020713 hybrid +136_1-3 Q0 MARCO_42_1368592926-1 54 -0.022135 hybrid +136_1-3 Q0 KILT_60387895-18 55 -0.028964 hybrid +136_1-3 Q0 MARCO_06_1615593549-67 56 -0.033625 hybrid +136_1-3 Q0 MARCO_06_1615593549-83 57 -0.035412 hybrid +136_1-3 Q0 MARCO_05_424740033-20 58 -0.038266 hybrid +136_1-3 Q0 KILT_453736-6 59 -0.040121 hybrid +136_1-3 Q0 KILT_57183612-3 60 -0.049228 hybrid +136_1-3 Q0 MARCO_06_1605969875-3 61 -0.052324 hybrid +136_1-3 Q0 MARCO_28_327932163-1 62 -0.055162 hybrid +136_1-3 Q0 MARCO_13_737502139-2 63 -0.060894 hybrid +136_1-3 Q0 MARCO_06_1616419714-10 64 -0.062108 hybrid +136_1-3 Q0 MARCO_42_1367674026-3 65 -0.063319 hybrid +136_1-3 Q0 KILT_453736-14 66 -0.065429 hybrid +136_1-3 Q0 MARCO_36_997229277-1 67 -0.067730 hybrid +136_1-3 Q0 MARCO_06_1615593549-111 68 -0.070717 hybrid +136_1-3 Q0 MARCO_50_1984649934-6 69 -0.070901 hybrid +136_1-3 Q0 MARCO_27_1510298108-3 70 -0.071707 hybrid +136_1-3 Q0 MARCO_06_1615538550-4 71 -0.073521 hybrid +136_1-3 Q0 MARCO_00_661672852-2 72 -0.075257 hybrid +136_1-3 Q0 MARCO_42_1359201370-6 73 -0.078388 hybrid +136_1-3 Q0 MARCO_43_41941507-4 74 -0.080043 hybrid +136_1-3 Q0 MARCO_05_424740033-3 75 -0.081468 hybrid +136_1-3 Q0 MARCO_17_2959044550-12 76 -0.082818 hybrid +136_1-3 Q0 MARCO_37_1186545077-11 77 -0.085043 hybrid +136_1-3 Q0 MARCO_04_865649090-20 78 -0.089180 hybrid +136_1-3 Q0 MARCO_06_1615593549-49 79 -0.094059 hybrid +136_1-3 Q0 MARCO_05_424740033-31 80 -0.095460 hybrid +136_1-3 Q0 MARCO_06_1615593549-51 81 -0.095584 hybrid +136_1-3 Q0 MARCO_05_424740033-48 82 -0.099540 hybrid +136_1-3 Q0 MARCO_05_424740033-33 83 -0.099965 hybrid +136_1-3 Q0 MARCO_05_424740033-2 84 -0.100867 hybrid +136_1-3 Q0 MARCO_21_1378115203-22 85 -0.107036 hybrid +136_1-3 Q0 MARCO_03_1770719375-2 86 -0.109116 hybrid +136_1-3 Q0 MARCO_06_1615593549-105 87 -0.112998 hybrid +136_1-3 Q0 MARCO_36_996974959-10 88 -0.118374 hybrid +136_1-3 Q0 MARCO_35_327349131-2 89 -0.131737 hybrid +136_1-3 Q0 MARCO_06_1615593549-100 90 -0.132453 hybrid +136_1-3 Q0 MARCO_06_1615538550-36 91 -0.137402 hybrid +136_1-3 Q0 MARCO_06_1616419714-20 92 -0.138336 hybrid +136_1-3 Q0 MARCO_06_322904718-1 93 -0.138799 hybrid +136_1-3 Q0 MARCO_50_1984649934-7 94 -0.139352 hybrid +136_1-3 Q0 MARCO_06_1615593549-139 95 -0.140482 hybrid +136_1-3 Q0 MARCO_06_1615593549-143 96 -0.140777 hybrid +136_1-3 Q0 MARCO_06_1615538550-40 97 -0.140777 hybrid +136_1-3 Q0 MARCO_39_677726246-27 98 -0.143882 hybrid +136_1-3 Q0 MARCO_06_1615538550-43 99 -0.145835 hybrid +136_1-3 Q0 KILT_453736-7 100 -0.149372 hybrid +136_1-5 Q0 MARCO_06_1616419714-10 1 0.500001 hybrid +136_1-5 Q0 MARCO_11_1511196274-4 2 0.473494 hybrid +136_1-5 Q0 MARCO_42_1368592926-4 3 0.453387 hybrid +136_1-5 Q0 MARCO_21_1378115203-25 4 0.424126 hybrid +136_1-5 Q0 MARCO_05_424740033-19 5 0.360475 hybrid +136_1-5 Q0 MARCO_05_424740033-46 6 0.354243 hybrid +136_1-5 Q0 MARCO_06_1615593549-116 7 0.343675 hybrid +136_1-5 Q0 MARCO_06_1615593549-127 8 0.340746 hybrid +136_1-5 Q0 MARCO_42_1359229219-1 9 0.336339 hybrid +136_1-5 Q0 MARCO_17_2959044550-12 10 0.276620 hybrid +136_1-5 Q0 MARCO_00_661672852-3 11 0.261293 hybrid +136_1-5 Q0 MARCO_21_1378115203-23 12 0.249240 hybrid +136_1-5 Q0 KILT_80128-12 13 0.232361 hybrid +136_1-5 Q0 MARCO_06_1615593549-35 14 0.223304 hybrid +136_1-5 Q0 MARCO_06_1615538550-41 15 0.204570 hybrid +136_1-5 Q0 MARCO_06_1615593549-144 16 0.204570 hybrid +136_1-5 Q0 KILT_453736-5 17 0.201404 hybrid +136_1-5 Q0 MARCO_25_529339517-2 18 0.195718 hybrid +136_1-5 Q0 MARCO_21_1378115203-26 19 0.194417 hybrid +136_1-5 Q0 MARCO_06_1615593549-132 20 0.184291 hybrid +136_1-5 Q0 KILT_53404298-5 21 0.175803 hybrid +136_1-5 Q0 MARCO_06_1615538550-11 22 0.173669 hybrid +136_1-5 Q0 MARCO_06_1615593549-16 23 0.173669 hybrid +136_1-5 Q0 MARCO_50_1411564432-30 24 0.151260 hybrid +136_1-5 Q0 MARCO_06_1615593549-48 25 0.149867 hybrid +136_1-5 Q0 MARCO_39_677953001-24 26 0.148423 hybrid +136_1-5 Q0 MARCO_06_1615593549-126 27 0.146651 hybrid +136_1-5 Q0 MARCO_20_485357459-4 28 0.142555 hybrid +136_1-5 Q0 MARCO_42_1359229219-5 29 0.140332 hybrid +136_1-5 Q0 MARCO_03_1770719375-2 30 0.134655 hybrid +136_1-5 Q0 MARCO_00_661672852-2 31 0.131534 hybrid +136_1-5 Q0 MARCO_06_1615593549-143 32 0.126636 hybrid +136_1-5 Q0 MARCO_06_1615538550-40 33 0.126636 hybrid +136_1-5 Q0 MARCO_39_615043672-2 34 0.120556 hybrid +136_1-5 Q0 MARCO_06_1615593549-98 35 0.120037 hybrid +136_1-5 Q0 MARCO_06_1615593549-133 36 0.112042 hybrid +136_1-5 Q0 MARCO_06_1615593549-67 37 0.111756 hybrid +136_1-5 Q0 MARCO_06_1615538550-30 38 0.102093 hybrid +136_1-5 Q0 MARCO_06_1615593549-106 39 0.099742 hybrid +136_1-5 Q0 MARCO_06_1615593549-119 40 0.095001 hybrid +136_1-5 Q0 MARCO_06_1615538550-15 41 0.090666 hybrid +136_1-5 Q0 MARCO_06_1615593549-140 42 0.083023 hybrid +136_1-5 Q0 MARCO_06_1615538550-37 43 0.083020 hybrid +136_1-5 Q0 MARCO_06_1615593549-118 44 0.082302 hybrid +136_1-5 Q0 MARCO_06_1615593549-112 45 0.080687 hybrid +136_1-5 Q0 MARCO_05_424740033-13 46 0.079413 hybrid +136_1-5 Q0 MARCO_06_1615593549-86 47 0.077962 hybrid +136_1-5 Q0 MARCO_16_4159902144-16 48 0.070070 hybrid +136_1-5 Q0 MARCO_06_1615106047-11 49 0.069556 hybrid +136_1-5 Q0 MARCO_06_1615593549-26 50 0.058024 hybrid +136_1-5 Q0 MARCO_06_1615593549-76 51 0.055506 hybrid +136_1-5 Q0 MARCO_06_1615538550-4 52 0.054085 hybrid +136_1-5 Q0 MARCO_57_1227170091-2 53 0.054013 hybrid +136_1-5 Q0 MARCO_21_1378115203-13 54 0.053761 hybrid +136_1-5 Q0 MARCO_37_1186545077-10 55 0.047165 hybrid +136_1-5 Q0 KILT_453736-14 56 0.042267 hybrid +136_1-5 Q0 MARCO_06_1615593549-65 57 0.041778 hybrid +136_1-5 Q0 MARCO_11_1511196274-1 58 0.037054 hybrid +136_1-5 Q0 MARCO_51_116973976-5 59 0.036872 hybrid +136_1-5 Q0 MARCO_42_1359229219-3 60 0.035454 hybrid +136_1-5 Q0 MARCO_06_1615538550-32 61 0.027908 hybrid +136_1-5 Q0 MARCO_06_1615593549-51 62 0.023780 hybrid +136_1-5 Q0 MARCO_06_1615593549-62 63 0.022561 hybrid +136_1-5 Q0 MARCO_06_545026672-3 64 0.020973 hybrid +136_1-5 Q0 MARCO_37_1186545077-12 65 0.019813 hybrid +136_1-5 Q0 MARCO_42_1368592926-2 66 0.015119 hybrid +136_1-5 Q0 MARCO_05_424740033-30 67 0.013419 hybrid +136_1-5 Q0 MARCO_06_545026672-5 68 0.012168 hybrid +136_1-5 Q0 MARCO_00_944207367-1 69 0.009146 hybrid +136_1-5 Q0 KILT_179342-6 70 -0.000160 hybrid +136_1-5 Q0 MARCO_06_1615593549-38 71 -0.007107 hybrid +136_1-5 Q0 MARCO_17_2959044550-2 72 -0.011931 hybrid +136_1-5 Q0 MARCO_06_1615538550-28 73 -0.012352 hybrid +136_1-5 Q0 MARCO_05_424740033-20 74 -0.014713 hybrid +136_1-5 Q0 MARCO_06_1615538550-31 75 -0.015551 hybrid +136_1-5 Q0 MARCO_37_1186545077-9 76 -0.016077 hybrid +136_1-5 Q0 MARCO_06_1615593549-89 77 -0.016214 hybrid +136_1-5 Q0 MARCO_44_101843601-59 78 -0.017001 hybrid +136_1-5 Q0 MARCO_48_624451421-2 79 -0.020594 hybrid +136_1-5 Q0 KILT_453736-12 80 -0.021237 hybrid +136_1-5 Q0 MARCO_06_1615593549-45 81 -0.023338 hybrid +136_1-5 Q0 MARCO_14_1526002240-92 82 -0.026362 hybrid +136_1-5 Q0 MARCO_19_235748733-4 83 -0.037747 hybrid +136_1-5 Q0 MARCO_21_1378115203-27 84 -0.044475 hybrid +136_1-5 Q0 MARCO_16_4159902144-14 85 -0.047641 hybrid +136_1-5 Q0 MARCO_21_1388139780-6 86 -0.047873 hybrid +136_1-5 Q0 MARCO_11_1427639568-7 87 -0.048260 hybrid +136_1-5 Q0 MARCO_06_1615593549-66 88 -0.053983 hybrid +136_1-5 Q0 KILT_453736-7 89 -0.054469 hybrid +136_1-5 Q0 MARCO_37_1186545077-11 90 -0.054689 hybrid +136_1-5 Q0 KILT_453736-9 91 -0.058169 hybrid +136_1-5 Q0 MARCO_42_1368592926-8 92 -0.059156 hybrid +136_1-5 Q0 MARCO_34_1725136735-2 93 -0.059979 hybrid +136_1-5 Q0 MARCO_16_1906893262-2 94 -0.060537 hybrid +136_1-5 Q0 MARCO_06_1615593549-92 95 -0.060714 hybrid +136_1-5 Q0 MARCO_06_1615593549-109 96 -0.062205 hybrid +136_1-5 Q0 MARCO_41_1361850806-24 97 -0.063167 hybrid +136_1-5 Q0 MARCO_06_1615593549-41 98 -0.064468 hybrid +136_1-5 Q0 MARCO_51_116973976-2 99 -0.067609 hybrid +136_1-5 Q0 MARCO_06_1605969875-3 100 -0.071189 hybrid +136_1-7 Q0 MARCO_06_1616419714-12 1 0.499999 hybrid +136_1-7 Q0 KILT_33393567-4 2 0.185986 hybrid +136_1-7 Q0 MARCO_42_1368592926-7 3 0.167997 hybrid +136_1-7 Q0 MARCO_42_1359229219-4 4 0.166188 hybrid +136_1-7 Q0 KILT_16321182-3 5 0.146739 hybrid +136_1-7 Q0 MARCO_05_424740033-49 6 0.141638 hybrid +136_1-7 Q0 MARCO_05_424740033-36 7 0.120395 hybrid +136_1-7 Q0 MARCO_18_1301359057-26 8 0.110320 hybrid +136_1-7 Q0 MARCO_04_865649090-21 9 0.107113 hybrid +136_1-7 Q0 MARCO_51_116973976-2 10 0.088358 hybrid +136_1-7 Q0 MARCO_16_4159902144-11 11 0.057261 hybrid +136_1-7 Q0 MARCO_06_1615593549-131 12 0.051725 hybrid +136_1-7 Q0 KILT_54071918-2 13 0.048244 hybrid +136_1-7 Q0 MARCO_18_3810895977-6 14 0.042463 hybrid +136_1-7 Q0 MARCO_06_1615593549-2 15 0.037211 hybrid +136_1-7 Q0 MARCO_48_624451421-3 16 0.033344 hybrid +136_1-7 Q0 MARCO_06_1616419714-7 17 0.026479 hybrid +136_1-7 Q0 MARCO_39_615043672-2 18 0.026039 hybrid +136_1-7 Q0 MARCO_21_1378115203-10 19 0.020971 hybrid +136_1-7 Q0 KILT_400686-24 20 0.001216 hybrid +136_1-7 Q0 MARCO_42_1359229219-3 21 -0.017864 hybrid +136_1-7 Q0 MARCO_06_1615538550-20 22 -0.018912 hybrid +136_1-7 Q0 MARCO_06_1615538550-5 23 -0.020337 hybrid +136_1-7 Q0 MARCO_06_1615593549-75 24 -0.022389 hybrid +136_1-7 Q0 MARCO_14_1526002240-92 25 -0.028153 hybrid +136_1-7 Q0 MARCO_03_1770719375-2 26 -0.034579 hybrid +136_1-7 Q0 MARCO_21_1384984860-11 27 -0.051704 hybrid +136_1-7 Q0 MARCO_06_1615538550-1 28 -0.069560 hybrid +136_1-7 Q0 MARCO_06_1615593549-12 29 -0.075376 hybrid +136_1-7 Q0 MARCO_04_865649090-22 30 -0.075664 hybrid +136_1-7 Q0 KILT_453736-7 31 -0.075723 hybrid +136_1-7 Q0 MARCO_51_116973976-4 32 -0.077491 hybrid +136_1-7 Q0 MARCO_06_545026672-4 33 -0.078716 hybrid +136_1-7 Q0 KILT_9056385-3 34 -0.080344 hybrid +136_1-7 Q0 MARCO_06_1615106047-10 35 -0.080505 hybrid +136_1-7 Q0 MARCO_21_1378115203-8 36 -0.083609 hybrid +136_1-7 Q0 MARCO_06_1615538550-17 37 -0.094972 hybrid +136_1-7 Q0 MARCO_06_1616419714-4 38 -0.102248 hybrid +136_1-7 Q0 MARCO_05_424740033-43 39 -0.106504 hybrid +136_1-7 Q0 MARCO_19_235748733-7 40 -0.107351 hybrid +136_1-7 Q0 MARCO_05_424740033-22 41 -0.108704 hybrid +136_1-7 Q0 KILT_80128-8 42 -0.109176 hybrid +136_1-7 Q0 KILT_669964-6 43 -0.111764 hybrid +136_1-7 Q0 MARCO_19_256712149-41 44 -0.114787 hybrid +136_1-7 Q0 MARCO_42_1368592926-9 45 -0.115189 hybrid +136_1-7 Q0 MARCO_06_545026672-3 46 -0.115811 hybrid +136_1-7 Q0 MARCO_21_1384984860-3 47 -0.117970 hybrid +136_1-7 Q0 MARCO_06_1616419714-2 48 -0.119092 hybrid +136_1-7 Q0 MARCO_19_256712149-66 49 -0.119174 hybrid +136_1-7 Q0 MARCO_34_892259339-7 50 -0.119439 hybrid +136_1-7 Q0 MARCO_06_1615593549-99 51 -0.120704 hybrid +136_1-7 Q0 MARCO_06_1616419714-5 52 -0.121327 hybrid +136_1-7 Q0 MARCO_11_1511196274-3 53 -0.124644 hybrid +136_1-7 Q0 MARCO_21_1384984860-6 54 -0.126135 hybrid +136_1-7 Q0 MARCO_42_1359229219-2 55 -0.127017 hybrid +136_1-7 Q0 MARCO_06_1615538550-24 56 -0.127715 hybrid +136_1-7 Q0 KILT_453736-10 57 -0.128883 hybrid +136_1-7 Q0 MARCO_06_1615593549-4 58 -0.139977 hybrid +136_1-7 Q0 MARCO_06_1615593549-123 59 -0.143288 hybrid +136_1-7 Q0 MARCO_42_1368592926-1 60 -0.145835 hybrid +136_1-7 Q0 MARCO_21_1384984860-9 61 -0.146332 hybrid +136_1-7 Q0 MARCO_05_424740033-48 62 -0.146337 hybrid +136_1-7 Q0 MARCO_21_1376132273-3 63 -0.147260 hybrid +136_1-7 Q0 MARCO_06_1615538550-21 64 -0.148264 hybrid +136_1-7 Q0 MARCO_39_677953001-24 65 -0.148325 hybrid +136_1-7 Q0 MARCO_04_865649090-5 66 -0.149035 hybrid +136_1-7 Q0 MARCO_06_1615593549-30 67 -0.153493 hybrid +136_1-7 Q0 MARCO_06_1615538550-26 68 -0.159384 hybrid +136_1-7 Q0 MARCO_19_256712149-65 69 -0.159768 hybrid +136_1-7 Q0 MARCO_21_1378115203-27 70 -0.159884 hybrid +136_1-7 Q0 MARCO_26_1788454416-1 71 -0.162551 hybrid +136_1-7 Q0 KILT_6589-14 72 -0.163125 hybrid +136_1-7 Q0 KILT_20647153-1 73 -0.163330 hybrid +136_1-7 Q0 MARCO_07_536012807-42 74 -0.165234 hybrid +136_1-7 Q0 MARCO_21_1378115203-11 75 -0.167331 hybrid +136_1-7 Q0 MARCO_06_1615593549-134 76 -0.171118 hybrid +136_1-7 Q0 MARCO_06_1615106047-21 77 -0.171675 hybrid +136_1-7 Q0 MARCO_06_1615538550-3 78 -0.172356 hybrid +136_1-7 Q0 MARCO_21_1384984860-2 79 -0.175271 hybrid +136_1-7 Q0 KILT_22612619-7 80 -0.176428 hybrid +136_1-7 Q0 MARCO_06_1616419714-20 81 -0.176734 hybrid +136_1-7 Q0 KILT_39841030-1 82 -0.178615 hybrid +136_1-7 Q0 MARCO_18_2733969235-30 83 -0.180117 hybrid +136_1-7 Q0 MARCO_07_536012807-19 84 -0.180453 hybrid +136_1-7 Q0 MARCO_06_1615593549-55 85 -0.180602 hybrid +136_1-7 Q0 MARCO_06_1615538550-19 86 -0.182321 hybrid +136_1-7 Q0 MARCO_06_1616419714-9 87 -0.182444 hybrid +136_1-7 Q0 MARCO_06_1903847110-2 88 -0.185104 hybrid +136_1-7 Q0 MARCO_06_1616419714-8 89 -0.185168 hybrid +136_1-7 Q0 MARCO_00_661672852-2 90 -0.188383 hybrid +136_1-7 Q0 MARCO_11_1511196274-4 91 -0.191766 hybrid +136_1-7 Q0 MARCO_39_658627578-5 92 -0.192268 hybrid +136_1-7 Q0 MARCO_06_1615593549-1 93 -0.192835 hybrid +136_1-7 Q0 MARCO_06_1615593549-80 94 -0.195351 hybrid +136_1-7 Q0 MARCO_06_1615538550-4 95 -0.195821 hybrid +136_1-7 Q0 MARCO_37_1186545077-9 96 -0.196070 hybrid +136_1-7 Q0 KILT_25610695-3 97 -0.201000 hybrid +136_1-7 Q0 MARCO_19_223605585-9 98 -0.201031 hybrid +136_1-7 Q0 MARCO_51_116973976-1 99 -0.201208 hybrid +136_1-7 Q0 MARCO_54_1563489235-14 100 -0.204027 hybrid +136_1-9 Q0 MARCO_48_624451421-3 1 0.500001 hybrid +136_1-9 Q0 MARCO_10_831411560-2 2 0.425409 hybrid +136_1-9 Q0 MARCO_39_615043672-2 3 0.423705 hybrid +136_1-9 Q0 MARCO_06_1615593549-75 4 0.419613 hybrid +136_1-9 Q0 MARCO_06_1605036905-4 5 0.412550 hybrid +136_1-9 Q0 MARCO_50_1984649934-7 6 0.385473 hybrid +136_1-9 Q0 MARCO_39_615043672-1 7 0.383213 hybrid +136_1-9 Q0 MARCO_28_327932163-1 8 0.379622 hybrid +136_1-9 Q0 MARCO_18_1301359057-26 9 0.343500 hybrid +136_1-9 Q0 MARCO_06_1601700563-2 10 0.339109 hybrid +136_1-9 Q0 MARCO_42_1359229219-5 11 0.338659 hybrid +136_1-9 Q0 MARCO_06_1616419714-4 12 0.334562 hybrid +136_1-9 Q0 MARCO_21_1378115203-23 13 0.332385 hybrid +136_1-9 Q0 MARCO_50_1984649934-6 14 0.325056 hybrid +136_1-9 Q0 MARCO_07_536012807-4 15 0.322806 hybrid +136_1-9 Q0 MARCO_03_1770719375-4 16 0.321206 hybrid +136_1-9 Q0 MARCO_50_1984649934-8 17 0.314399 hybrid +136_1-9 Q0 MARCO_11_1511196274-1 18 0.308937 hybrid +136_1-9 Q0 MARCO_06_1616419714-19 19 0.307515 hybrid +136_1-9 Q0 MARCO_42_1367290185-3 20 0.292884 hybrid +136_1-9 Q0 MARCO_50_1508368359-30 21 0.290410 hybrid +136_1-9 Q0 MARCO_42_1368592926-7 22 0.289281 hybrid +136_1-9 Q0 MARCO_42_1359229219-2 23 0.281114 hybrid +136_1-9 Q0 MARCO_37_1186545077-10 24 0.268285 hybrid +136_1-9 Q0 MARCO_34_1720669955-2 25 0.267887 hybrid +136_1-9 Q0 MARCO_42_1368592926-1 26 0.266873 hybrid +136_1-9 Q0 MARCO_26_1835738965-180 27 0.263063 hybrid +136_1-9 Q0 MARCO_05_424740033-50 28 0.262269 hybrid +136_1-9 Q0 MARCO_39_618236320-17 29 0.262180 hybrid +136_1-9 Q0 MARCO_04_865649090-20 30 0.261206 hybrid +136_1-9 Q0 MARCO_00_661672852-8 31 0.250276 hybrid +136_1-9 Q0 MARCO_33_1593442632-44 32 0.249986 hybrid +136_1-9 Q0 MARCO_06_1902336129-1 33 0.246920 hybrid +136_1-9 Q0 MARCO_21_1378115203-28 34 0.245713 hybrid +136_1-9 Q0 MARCO_42_1367967096-6 35 0.244981 hybrid +136_1-9 Q0 MARCO_06_1604175481-1 36 0.244114 hybrid +136_1-9 Q0 MARCO_42_1367221250-7 37 0.239777 hybrid +136_1-9 Q0 MARCO_48_624451421-1 38 0.239631 hybrid +136_1-9 Q0 MARCO_42_1368592926-9 39 0.233630 hybrid +136_1-9 Q0 MARCO_06_1616419714-13 40 0.232095 hybrid +136_1-9 Q0 MARCO_19_235748733-4 41 0.230796 hybrid +136_1-9 Q0 KILT_453736-12 42 0.230725 hybrid +136_1-9 Q0 MARCO_00_944207367-1 43 0.229332 hybrid +136_1-9 Q0 MARCO_42_1359229219-6 44 0.228546 hybrid +136_1-9 Q0 MARCO_42_1368592926-6 45 0.223681 hybrid +136_1-9 Q0 MARCO_06_1615593549-122 46 0.222133 hybrid +136_1-9 Q0 MARCO_33_1593442632-45 47 0.217689 hybrid +136_1-9 Q0 MARCO_33_1593442632-46 48 0.217689 hybrid +136_1-9 Q0 MARCO_41_1361850806-25 49 0.216531 hybrid +136_1-9 Q0 MARCO_41_1361850806-13 50 0.214319 hybrid +136_1-9 Q0 MARCO_42_1367967096-1 51 0.212756 hybrid +136_1-9 Q0 MARCO_00_661672852-5 52 0.212709 hybrid +136_1-9 Q0 MARCO_57_1227170091-2 53 0.212521 hybrid +136_1-9 Q0 MARCO_06_1616419714-21 54 0.206979 hybrid +136_1-9 Q0 MARCO_42_1359201370-6 55 0.206364 hybrid +136_1-9 Q0 MARCO_06_1604749305-2 56 0.205889 hybrid +136_1-9 Q0 MARCO_51_116973976-5 57 0.203914 hybrid +136_1-9 Q0 MARCO_14_1526002240-92 58 0.199742 hybrid +136_1-9 Q0 MARCO_42_1368592926-5 59 0.197049 hybrid +136_1-9 Q0 MARCO_05_424740033-39 60 0.195531 hybrid +136_1-9 Q0 MARCO_21_1378115203-25 61 0.194783 hybrid +136_1-9 Q0 MARCO_28_327932163-2 62 0.191629 hybrid +136_1-9 Q0 MARCO_06_1615593549-130 63 0.190923 hybrid +136_1-9 Q0 MARCO_19_2552699673-3 64 0.188174 hybrid +136_1-9 Q0 MARCO_06_1615538550-23 65 0.187988 hybrid +136_1-9 Q0 MARCO_27_40265189-5 66 0.186835 hybrid +136_1-9 Q0 MARCO_39_678034715-11 67 0.184604 hybrid +136_1-9 Q0 MARCO_06_1598753399-1 68 0.178346 hybrid +136_1-9 Q0 MARCO_43_711535926-6 69 0.177461 hybrid +136_1-9 Q0 MARCO_42_1368592926-8 70 0.177412 hybrid +136_1-9 Q0 MARCO_39_677953001-24 71 0.177353 hybrid +136_1-9 Q0 MARCO_42_1368592926-10 72 0.175637 hybrid +136_1-9 Q0 MARCO_03_1770719375-2 73 0.174660 hybrid +136_1-9 Q0 MARCO_42_1359229219-1 74 0.173413 hybrid +136_1-9 Q0 MARCO_06_1615593549-74 75 0.172752 hybrid +136_1-9 Q0 MARCO_21_1376381125-19 76 0.172566 hybrid +136_1-9 Q0 MARCO_06_1616419714-1 77 0.172297 hybrid +136_1-9 Q0 MARCO_11_1511196274-3 78 0.168252 hybrid +136_1-9 Q0 MARCO_07_536012807-29 79 0.166849 hybrid +136_1-9 Q0 MARCO_06_1616419714-8 80 0.166828 hybrid +136_1-9 Q0 MARCO_06_1902336129-2 81 0.165159 hybrid +136_1-9 Q0 MARCO_21_1378115203-1 82 0.163488 hybrid +136_1-9 Q0 MARCO_50_1984649934-1 83 0.159600 hybrid +136_1-9 Q0 MARCO_06_1615106047-8 84 0.157602 hybrid +136_1-9 Q0 MARCO_21_1378115203-27 85 0.156562 hybrid +136_1-9 Q0 MARCO_19_265183945-4 86 0.154020 hybrid +136_1-9 Q0 MARCO_06_1615593549-131 87 0.151135 hybrid +136_1-9 Q0 MARCO_05_424740033-34 88 0.145355 hybrid +136_1-9 Q0 MARCO_06_1616419714-10 89 0.143425 hybrid +136_1-9 Q0 MARCO_41_1361850806-42 90 0.143418 hybrid +136_1-9 Q0 MARCO_06_1616419714-20 91 0.142561 hybrid +136_1-9 Q0 MARCO_21_1378115203-26 92 0.142283 hybrid +136_1-9 Q0 MARCO_48_624451421-2 93 0.132427 hybrid +136_1-9 Q0 MARCO_06_1615538550-4 94 0.131869 hybrid +136_1-9 Q0 MARCO_37_1186545077-12 95 0.127967 hybrid +136_1-9 Q0 MARCO_43_1280563415-23 96 0.120998 hybrid +136_1-9 Q0 MARCO_37_1186529676-12 97 0.119960 hybrid +136_1-9 Q0 MARCO_06_1615538550-22 98 0.119831 hybrid +136_1-9 Q0 MARCO_14_1526002240-93 99 0.118746 hybrid +136_1-9 Q0 MARCO_06_1615593549-90 100 0.116214 hybrid +136_2-1 Q0 MARCO_57_1227170091-2 1 0.500001 hybrid +136_2-1 Q0 MARCO_50_1984649934-8 2 0.399075 hybrid +136_2-1 Q0 MARCO_21_1378115203-28 3 0.386249 hybrid +136_2-1 Q0 MARCO_42_1359229219-1 4 0.337188 hybrid +136_2-1 Q0 MARCO_27_1510298108-4 5 0.328350 hybrid +136_2-1 Q0 MARCO_41_1361850806-44 6 0.318796 hybrid +136_2-1 Q0 MARCO_41_1361850806-14 7 0.313266 hybrid +136_2-1 Q0 MARCO_41_1361850806-46 8 0.287958 hybrid +136_2-1 Q0 MARCO_28_327932163-1 9 0.286709 hybrid +136_2-1 Q0 MARCO_41_1361850806-39 10 0.268954 hybrid +136_2-1 Q0 MARCO_42_1368592926-1 11 0.261041 hybrid +136_2-1 Q0 MARCO_06_545026672-1 12 0.255643 hybrid +136_2-1 Q0 MARCO_41_1361850806-27 13 0.252981 hybrid +136_2-1 Q0 MARCO_00_1401261974-13 14 0.249556 hybrid +136_2-1 Q0 MARCO_41_1361850806-38 15 0.242671 hybrid +136_2-1 Q0 MARCO_21_1378115203-23 16 0.242283 hybrid +136_2-1 Q0 KILT_453736-12 17 0.240978 hybrid +136_2-1 Q0 MARCO_41_1361850806-41 18 0.234478 hybrid +136_2-1 Q0 MARCO_06_322904718-1 19 0.233533 hybrid +136_2-1 Q0 MARCO_50_1984649934-7 20 0.226274 hybrid +136_2-1 Q0 MARCO_11_1511196274-1 21 0.223436 hybrid +136_2-1 Q0 MARCO_41_1361850806-19 22 0.221871 hybrid +136_2-1 Q0 MARCO_05_424740033-1 23 0.218862 hybrid +136_2-1 Q0 MARCO_41_1361850806-16 24 0.212894 hybrid +136_2-1 Q0 MARCO_41_1361850806-13 25 0.206618 hybrid +136_2-1 Q0 KILT_453736-15 26 0.206607 hybrid +136_2-1 Q0 MARCO_28_327932163-2 27 0.192601 hybrid +136_2-1 Q0 MARCO_41_1361850806-15 28 0.182613 hybrid +136_2-1 Q0 MARCO_06_1616419714-10 29 0.167332 hybrid +136_2-1 Q0 MARCO_42_1359229219-2 30 0.163256 hybrid +136_2-1 Q0 MARCO_13_737502139-2 31 0.163204 hybrid +136_2-1 Q0 MARCO_05_424740033-19 32 0.162916 hybrid +136_2-1 Q0 MARCO_05_424740033-20 33 0.149381 hybrid +136_2-1 Q0 MARCO_55_574781674-5 34 0.147588 hybrid +136_2-1 Q0 MARCO_42_1359198610-2 35 0.140185 hybrid +136_2-1 Q0 MARCO_19_235748733-4 36 0.139082 hybrid +136_2-1 Q0 MARCO_43_1280563415-23 37 0.137638 hybrid +136_2-1 Q0 MARCO_48_624451421-3 38 0.136635 hybrid +136_2-1 Q0 MARCO_16_4159902144-16 39 0.134707 hybrid +136_2-1 Q0 MARCO_05_424740033-34 40 0.129415 hybrid +136_2-1 Q0 KILT_80128-12 41 0.126195 hybrid +136_2-1 Q0 MARCO_05_424740033-39 42 0.125533 hybrid +136_2-1 Q0 MARCO_06_1616419714-20 43 0.120363 hybrid +136_2-1 Q0 MARCO_41_1361850806-42 44 0.116426 hybrid +136_2-1 Q0 MARCO_41_1361850806-26 45 0.116132 hybrid +136_2-1 Q0 MARCO_41_1361850806-21 46 0.115946 hybrid +136_2-1 Q0 MARCO_50_1984649934-1 47 0.115606 hybrid +136_2-1 Q0 MARCO_16_2852307220-6 48 0.112006 hybrid +136_2-1 Q0 MARCO_05_424740033-45 49 0.106653 hybrid +136_2-1 Q0 MARCO_43_1004698907-6 50 0.097582 hybrid +136_2-1 Q0 MARCO_06_1616419714-9 51 0.089076 hybrid +136_2-1 Q0 MARCO_17_2892192733-3 52 0.086264 hybrid +136_2-1 Q0 KILT_5530-9 53 0.085668 hybrid +136_2-1 Q0 MARCO_16_2852307220-18 54 0.084025 hybrid +136_2-1 Q0 MARCO_21_1378115203-19 55 0.077976 hybrid +136_2-1 Q0 MARCO_06_1615538550-22 56 0.076619 hybrid +136_2-1 Q0 MARCO_00_661672852-8 57 0.074779 hybrid +136_2-1 Q0 MARCO_06_1615593549-87 58 0.071812 hybrid +136_2-1 Q0 MARCO_41_1361850806-2 59 0.069789 hybrid +136_2-1 Q0 MARCO_27_1510298108-3 60 0.069689 hybrid +136_2-1 Q0 MARCO_42_1368592926-3 61 0.066276 hybrid +136_2-1 Q0 MARCO_41_1361850806-20 62 0.065866 hybrid +136_2-1 Q0 MARCO_50_1984649934-6 63 0.064810 hybrid +136_2-1 Q0 MARCO_41_1361850806-7 64 0.060416 hybrid +136_2-1 Q0 MARCO_05_424740033-13 65 0.058462 hybrid +136_2-1 Q0 MARCO_41_1361850806-4 66 0.058326 hybrid +136_2-1 Q0 MARCO_11_1511196274-4 67 0.057581 hybrid +136_2-1 Q0 MARCO_06_1615538550-23 68 0.055384 hybrid +136_2-1 Q0 MARCO_43_989351631-49 69 0.054132 hybrid +136_2-1 Q0 MARCO_06_1615538550-4 70 0.052849 hybrid +136_2-1 Q0 MARCO_41_1361850806-23 71 0.052511 hybrid +136_2-1 Q0 KILT_24067972-17 72 0.051081 hybrid +136_2-1 Q0 MARCO_17_2941607169-88 73 0.050693 hybrid +136_2-1 Q0 MARCO_05_424740033-24 74 0.049427 hybrid +136_2-1 Q0 MARCO_01_1174860585-4 75 0.049352 hybrid +136_2-1 Q0 MARCO_41_1361850806-24 76 0.047335 hybrid +136_2-1 Q0 MARCO_06_1615593549-74 77 0.047077 hybrid +136_2-1 Q0 MARCO_14_1526002240-94 78 0.045601 hybrid +136_2-1 Q0 MARCO_37_1186545077-11 79 0.044900 hybrid +136_2-1 Q0 MARCO_16_2852307220-7 80 0.036931 hybrid +136_2-1 Q0 MARCO_19_235748733-3 81 0.032340 hybrid +136_2-1 Q0 MARCO_41_1361850806-12 82 0.032232 hybrid +136_2-1 Q0 KILT_58528764-18 83 0.029891 hybrid +136_2-1 Q0 MARCO_41_1361850806-35 84 0.028364 hybrid +136_2-1 Q0 KILT_7186858-1 85 0.025507 hybrid +136_2-1 Q0 MARCO_06_1615106047-20 86 0.025371 hybrid +136_2-1 Q0 MARCO_00_661672852-3 87 0.024876 hybrid +136_2-1 Q0 MARCO_41_1361850806-29 88 0.023903 hybrid +136_2-1 Q0 MARCO_55_571956134-6 89 0.022720 hybrid +136_2-1 Q0 MARCO_19_235748733-6 90 0.021625 hybrid +136_2-1 Q0 KILT_316118-3 91 0.021517 hybrid +136_2-1 Q0 MARCO_06_545026672-6 92 0.020836 hybrid +136_2-1 Q0 MARCO_50_1984649934-3 93 0.018453 hybrid +136_2-1 Q0 MARCO_00_661672852-4 94 0.016200 hybrid +136_2-1 Q0 MARCO_37_1517872522-3 95 0.011418 hybrid +136_2-1 Q0 MARCO_50_1432093425-9 96 0.010648 hybrid +136_2-1 Q0 MARCO_42_1368592926-5 97 0.007631 hybrid +136_2-1 Q0 MARCO_41_1361850806-40 98 0.007132 hybrid +136_2-1 Q0 MARCO_26_1835738965-180 99 0.006772 hybrid +136_2-1 Q0 MARCO_06_1615106047-8 100 0.006104 hybrid +136_2-3 Q0 MARCO_37_1517872522-3 1 0.500001 hybrid +136_2-3 Q0 MARCO_16_2852307220-19 2 0.472855 hybrid +136_2-3 Q0 MARCO_37_1517872522-2 3 0.356744 hybrid +136_2-3 Q0 MARCO_05_424740033-28 4 0.347334 hybrid +136_2-3 Q0 MARCO_34_1725136735-1 5 0.319916 hybrid +136_2-3 Q0 KILT_29167504-4 6 0.304930 hybrid +136_2-3 Q0 MARCO_16_1906878129-8 7 0.269031 hybrid +136_2-3 Q0 MARCO_17_4188093557-67 8 0.260917 hybrid +136_2-3 Q0 KILT_471074-4 9 0.224491 hybrid +136_2-3 Q0 KILT_4278305-1 10 0.181082 hybrid +136_2-3 Q0 KILT_23749226-5 11 0.174383 hybrid +136_2-3 Q0 MARCO_37_1517872522-1 12 0.170007 hybrid +136_2-3 Q0 MARCO_36_958901421-2 13 0.147674 hybrid +136_2-3 Q0 MARCO_16_1906893262-3 14 0.142731 hybrid +136_2-3 Q0 MARCO_43_995242498-33 15 0.135346 hybrid +136_2-3 Q0 MARCO_23_702973894-24 16 0.103949 hybrid +136_2-3 Q0 MARCO_43_1004347964-41 17 0.070094 hybrid +136_2-3 Q0 MARCO_05_424740033-29 18 0.060087 hybrid +136_2-3 Q0 KILT_453736-15 19 0.053692 hybrid +136_2-3 Q0 KILT_1165780-3 20 0.043763 hybrid +136_2-3 Q0 MARCO_05_424740033-30 21 0.037463 hybrid +136_2-3 Q0 MARCO_41_1406440000-2 22 0.016487 hybrid +136_2-3 Q0 MARCO_37_1517872522-4 23 0.000430 hybrid +136_2-3 Q0 MARCO_43_1011782134-16 24 -0.024894 hybrid +136_2-3 Q0 KILT_56221810-2 25 -0.027404 hybrid +136_2-3 Q0 MARCO_06_1615593549-96 26 -0.030126 hybrid +136_2-3 Q0 MARCO_16_1906893262-4 27 -0.036412 hybrid +136_2-3 Q0 MARCO_06_1615538550-5 28 -0.043560 hybrid +136_2-3 Q0 KILT_56002328-1 29 -0.051010 hybrid +136_2-3 Q0 KILT_2660363-2 30 -0.054574 hybrid +136_2-3 Q0 MARCO_17_2892192733-3 31 -0.078062 hybrid +136_2-3 Q0 MARCO_17_4188093557-36 32 -0.082034 hybrid +136_2-3 Q0 MARCO_16_2852307220-6 33 -0.087583 hybrid +136_2-3 Q0 MARCO_19_253165797-21 34 -0.100194 hybrid +136_2-3 Q0 MARCO_29_1421049811-5 35 -0.112545 hybrid +136_2-3 Q0 KILT_1165780-2 36 -0.119649 hybrid +136_2-3 Q0 MARCO_14_1486493683-5 37 -0.121463 hybrid +136_2-3 Q0 MARCO_06_1615593549-92 38 -0.121747 hybrid +136_2-3 Q0 MARCO_15_626025681-12 39 -0.121764 hybrid +136_2-3 Q0 MARCO_06_1102753317-262 40 -0.126168 hybrid +136_2-3 Q0 MARCO_17_2947898522-19 41 -0.127539 hybrid +136_2-3 Q0 MARCO_04_1393608563-8 42 -0.135408 hybrid +136_2-3 Q0 MARCO_29_667739233-1 43 -0.156559 hybrid +136_2-3 Q0 MARCO_48_1186270879-6 44 -0.159976 hybrid +136_2-3 Q0 MARCO_06_1615593549-3 45 -0.164900 hybrid +136_2-3 Q0 MARCO_50_931305410-9 46 -0.167053 hybrid +136_2-3 Q0 MARCO_06_1274956321-119 47 -0.170822 hybrid +136_2-3 Q0 MARCO_11_15007552-4 48 -0.173069 hybrid +136_2-3 Q0 MARCO_41_633178534-4 49 -0.176196 hybrid +136_2-3 Q0 MARCO_48_962602379-13 50 -0.176422 hybrid +136_2-3 Q0 MARCO_23_892918206-31 51 -0.178792 hybrid +136_2-3 Q0 MARCO_46_850266308-5 52 -0.181151 hybrid +136_2-3 Q0 KILT_2857349-11 53 -0.181434 hybrid +136_2-3 Q0 MARCO_05_424740033-11 54 -0.193490 hybrid +136_2-3 Q0 MARCO_16_2852307220-35 55 -0.195650 hybrid +136_2-3 Q0 MARCO_41_1406440000-22 56 -0.199051 hybrid +136_2-3 Q0 MARCO_06_1615593549-113 57 -0.202647 hybrid +136_2-3 Q0 MARCO_42_1368592926-3 58 -0.204597 hybrid +136_2-3 Q0 MARCO_25_1423307201-22 59 -0.206239 hybrid +136_2-3 Q0 MARCO_05_600324799-2 60 -0.215377 hybrid +136_2-3 Q0 MARCO_11_1511716643-5 61 -0.215960 hybrid +136_2-3 Q0 MARCO_06_1102753317-305 62 -0.220859 hybrid +136_2-3 Q0 KILT_29995317-1 63 -0.223831 hybrid +136_2-3 Q0 MARCO_18_484664230-10 64 -0.226476 hybrid +136_2-3 Q0 MARCO_37_1515489121-2 65 -0.230670 hybrid +136_2-3 Q0 KILT_454403-2 66 -0.233515 hybrid +136_2-3 Q0 MARCO_06_1242439116-190 67 -0.234881 hybrid +136_2-3 Q0 MARCO_31_883410930-4 68 -0.235517 hybrid +136_2-3 Q0 MARCO_11_1466470106-2 69 -0.239385 hybrid +136_2-3 Q0 MARCO_06_1175614040-71 70 -0.239848 hybrid +136_2-3 Q0 MARCO_58_1178287401-2 71 -0.240689 hybrid +136_2-3 Q0 MARCO_14_129720299-3 72 -0.242327 hybrid +136_2-3 Q0 KILT_23749226-4 73 -0.242572 hybrid +136_2-3 Q0 MARCO_50_1663830001-19 74 -0.242969 hybrid +136_2-3 Q0 MARCO_17_2947953929-18 75 -0.244066 hybrid +136_2-3 Q0 MARCO_19_600636789-5 76 -0.244328 hybrid +136_2-3 Q0 MARCO_02_870026143-10 77 -0.244541 hybrid +136_2-3 Q0 MARCO_50_931305410-7 78 -0.249309 hybrid +136_2-3 Q0 MARCO_42_1359229219-2 79 -0.251576 hybrid +136_2-3 Q0 MARCO_36_839388651-3 80 -0.254567 hybrid +136_2-3 Q0 MARCO_18_3811526194-8 81 -0.255720 hybrid +136_2-3 Q0 MARCO_22_534279812-1 82 -0.256630 hybrid +136_2-3 Q0 MARCO_45_1251137674-1 83 -0.258492 hybrid +136_2-3 Q0 MARCO_22_1440101776-6 84 -0.265713 hybrid +136_2-3 Q0 MARCO_54_1851877865-3 85 -0.268469 hybrid +136_2-3 Q0 MARCO_50_2491412542-17 86 -0.270510 hybrid +136_2-3 Q0 MARCO_50_482485009-3 87 -0.270602 hybrid +136_2-3 Q0 MARCO_51_692380166-7 88 -0.271612 hybrid +136_2-3 Q0 MARCO_44_96730024-2 89 -0.272550 hybrid +136_2-3 Q0 MARCO_22_833544194-3 90 -0.273469 hybrid +136_2-3 Q0 MARCO_33_1024691024-8 91 -0.273715 hybrid +136_2-3 Q0 MARCO_49_1591524761-258 92 -0.275090 hybrid +136_2-3 Q0 MARCO_18_1311615326-8 93 -0.276312 hybrid +136_2-3 Q0 MARCO_41_1405162130-2 94 -0.279150 hybrid +136_2-3 Q0 MARCO_10_550538432-2 95 -0.280452 hybrid +136_2-3 Q0 MARCO_41_1405162130-31 96 -0.281026 hybrid +136_2-3 Q0 MARCO_10_267494549-14 97 -0.285686 hybrid +136_2-3 Q0 MARCO_18_3779704306-6 98 -0.290357 hybrid +136_2-3 Q0 MARCO_41_1234503594-8 99 -0.290960 hybrid +136_2-3 Q0 MARCO_10_831955040-7 100 -0.292890 hybrid +136_2-5 Q0 MARCO_16_2852307220-19 1 0.500000 hybrid +136_2-5 Q0 MARCO_37_1517872522-3 2 0.454493 hybrid +136_2-5 Q0 MARCO_05_424740033-28 3 0.375902 hybrid +136_2-5 Q0 MARCO_37_1517872522-2 4 0.332128 hybrid +136_2-5 Q0 KILT_29167504-4 5 0.324374 hybrid +136_2-5 Q0 MARCO_34_1725136735-1 6 0.276477 hybrid +136_2-5 Q0 KILT_471074-4 7 0.230030 hybrid +136_2-5 Q0 KILT_4278305-1 8 0.202270 hybrid +136_2-5 Q0 MARCO_16_1906878129-8 9 0.191565 hybrid +136_2-5 Q0 MARCO_37_1517872522-1 10 0.189070 hybrid +136_2-5 Q0 MARCO_23_702973894-24 11 0.176647 hybrid +136_2-5 Q0 KILT_23749226-5 12 0.162482 hybrid +136_2-5 Q0 MARCO_16_1906893262-3 13 0.134491 hybrid +136_2-5 Q0 MARCO_05_424740033-29 14 0.114803 hybrid +136_2-5 Q0 MARCO_36_958901421-2 15 0.113593 hybrid +136_2-5 Q0 MARCO_43_995242498-33 16 0.107778 hybrid +136_2-5 Q0 MARCO_17_4188093557-67 17 0.102289 hybrid +136_2-5 Q0 MARCO_06_1615538550-5 18 0.063354 hybrid +136_2-5 Q0 KILT_453736-15 19 0.042247 hybrid +136_2-5 Q0 MARCO_05_424740033-30 20 0.025261 hybrid +136_2-5 Q0 MARCO_43_1004347964-41 21 0.020496 hybrid +136_2-5 Q0 KILT_56002328-1 22 -0.006436 hybrid +136_2-5 Q0 MARCO_14_1486493683-5 23 -0.010649 hybrid +136_2-5 Q0 KILT_1165780-3 24 -0.022893 hybrid +136_2-5 Q0 MARCO_41_1406440000-2 25 -0.029331 hybrid +136_2-5 Q0 MARCO_16_1906893262-4 26 -0.032312 hybrid +136_2-5 Q0 KILT_56221810-2 27 -0.034915 hybrid +136_2-5 Q0 MARCO_06_1615593549-96 28 -0.044668 hybrid +136_2-5 Q0 MARCO_19_253165797-21 29 -0.073294 hybrid +136_2-5 Q0 MARCO_37_1517872522-4 30 -0.078275 hybrid +136_2-5 Q0 KILT_1165780-2 31 -0.083119 hybrid +136_2-5 Q0 MARCO_04_1393608563-8 32 -0.087769 hybrid +136_2-5 Q0 MARCO_43_1011782134-16 33 -0.088687 hybrid +136_2-5 Q0 MARCO_16_2852307220-6 34 -0.092759 hybrid +136_2-5 Q0 MARCO_23_892918206-31 35 -0.101757 hybrid +136_2-5 Q0 MARCO_17_4188093557-36 36 -0.104681 hybrid +136_2-5 Q0 MARCO_17_2892192733-3 37 -0.108130 hybrid +136_2-5 Q0 MARCO_06_1615593549-3 38 -0.110575 hybrid +136_2-5 Q0 MARCO_17_2947898522-19 39 -0.124002 hybrid +136_2-5 Q0 MARCO_54_1851877865-3 40 -0.127811 hybrid +136_2-5 Q0 MARCO_29_1421049811-5 41 -0.136653 hybrid +136_2-5 Q0 MARCO_46_850266308-5 42 -0.147278 hybrid +136_2-5 Q0 MARCO_11_1511716643-5 43 -0.147458 hybrid +136_2-5 Q0 MARCO_50_931305410-9 44 -0.154929 hybrid +136_2-5 Q0 MARCO_06_1102753317-262 45 -0.157710 hybrid +136_2-5 Q0 MARCO_48_1186270879-6 46 -0.157805 hybrid +136_2-5 Q0 MARCO_41_633178534-4 47 -0.159656 hybrid +136_2-5 Q0 MARCO_06_1615593549-92 48 -0.163309 hybrid +136_2-5 Q0 MARCO_11_15007552-4 49 -0.166760 hybrid +136_2-5 Q0 KILT_2660363-2 50 -0.170164 hybrid +136_2-5 Q0 MARCO_58_1178287401-2 51 -0.179710 hybrid +136_2-5 Q0 MARCO_15_626025681-12 52 -0.183164 hybrid +136_2-5 Q0 MARCO_06_1175614040-71 53 -0.192234 hybrid +136_2-5 Q0 MARCO_37_1515489121-2 54 -0.192625 hybrid +136_2-5 Q0 MARCO_42_1368592926-3 55 -0.193066 hybrid +136_2-5 Q0 MARCO_14_129720299-3 56 -0.194756 hybrid +136_2-5 Q0 MARCO_31_883410930-4 57 -0.199288 hybrid +136_2-5 Q0 MARCO_05_600324799-2 58 -0.201755 hybrid +136_2-5 Q0 MARCO_50_931305410-7 59 -0.204832 hybrid +136_2-5 Q0 MARCO_06_1274956321-119 60 -0.211639 hybrid +136_2-5 Q0 MARCO_06_1242439116-190 61 -0.213180 hybrid +136_2-5 Q0 MARCO_41_1814867049-3 62 -0.214480 hybrid +136_2-5 Q0 KILT_2857349-11 63 -0.215026 hybrid +136_2-5 Q0 MARCO_44_96730024-2 64 -0.215345 hybrid +136_2-5 Q0 MARCO_50_1663830001-19 65 -0.217397 hybrid +136_2-5 Q0 KILT_29995317-1 66 -0.221869 hybrid +136_2-5 Q0 MARCO_42_1359229219-2 67 -0.222056 hybrid +136_2-5 Q0 MARCO_33_1024691024-8 68 -0.222188 hybrid +136_2-5 Q0 MARCO_41_1406440000-22 69 -0.222996 hybrid +136_2-5 Q0 MARCO_06_1615593549-113 70 -0.230498 hybrid +136_2-5 Q0 MARCO_37_1515489121-1 71 -0.232729 hybrid +136_2-5 Q0 MARCO_41_1405162130-2 72 -0.233412 hybrid +136_2-5 Q0 MARCO_29_667739233-1 73 -0.235546 hybrid +136_2-5 Q0 MARCO_50_482485009-3 74 -0.235788 hybrid +136_2-5 Q0 KILT_23749226-4 75 -0.239448 hybrid +136_2-5 Q0 MARCO_28_693568638-23 76 -0.239721 hybrid +136_2-5 Q0 MARCO_22_833544194-3 77 -0.243657 hybrid +136_2-5 Q0 MARCO_48_962602379-13 78 -0.246502 hybrid +136_2-5 Q0 MARCO_31_883410930-7 79 -0.246682 hybrid +136_2-5 Q0 MARCO_16_2852307220-35 80 -0.249011 hybrid +136_2-5 Q0 KILT_454403-2 81 -0.250452 hybrid +136_2-5 Q0 MARCO_22_1312593088-6 82 -0.250469 hybrid +136_2-5 Q0 MARCO_50_1671284236-16 83 -0.251830 hybrid +136_2-5 Q0 MARCO_19_600636789-5 84 -0.253028 hybrid +136_2-5 Q0 MARCO_17_4234524194-2 85 -0.253292 hybrid +136_2-5 Q0 KILT_25236328-2 86 -0.254407 hybrid +136_2-5 Q0 MARCO_50_2491412542-17 87 -0.257046 hybrid +136_2-5 Q0 MARCO_17_2947953929-18 88 -0.261808 hybrid +136_2-5 Q0 MARCO_05_424740033-11 89 -0.262822 hybrid +136_2-5 Q0 MARCO_23_892589778-28 90 -0.263498 hybrid +136_2-5 Q0 MARCO_50_2396051421-7 91 -0.264867 hybrid +136_2-5 Q0 MARCO_25_1423307201-22 92 -0.264989 hybrid +136_2-5 Q0 MARCO_55_251016122-4 93 -0.265303 hybrid +136_2-5 Q0 MARCO_18_3779704306-6 94 -0.269243 hybrid +136_2-5 Q0 MARCO_06_1102753317-305 95 -0.269751 hybrid +136_2-5 Q0 MARCO_11_1466470106-2 96 -0.270617 hybrid +136_2-5 Q0 MARCO_37_1185229085-9 97 -0.272271 hybrid +136_2-5 Q0 MARCO_22_833544194-4 98 -0.275485 hybrid +136_2-5 Q0 MARCO_44_96730024-3 99 -0.275573 hybrid +136_2-5 Q0 MARCO_18_1311615326-8 100 -0.278725 hybrid +137_1-1 Q0 KILT_9912495-3 1 0.499999 hybrid +137_1-1 Q0 KILT_9912495-4 2 0.369208 hybrid +137_1-1 Q0 KILT_9912495-5 3 0.363647 hybrid +137_1-1 Q0 MARCO_26_397313239-44 4 0.352875 hybrid +137_1-1 Q0 KILT_9912495-6 5 0.299874 hybrid +137_1-1 Q0 MARCO_35_313211833-3 6 0.168157 hybrid +137_1-1 Q0 KILT_9912495-1 7 0.157487 hybrid +137_1-1 Q0 MARCO_26_396165785-34 8 -0.021681 hybrid +137_1-1 Q0 MARCO_26_397313239-45 9 -0.028796 hybrid +137_1-1 Q0 MARCO_26_404008777-38 10 -0.044142 hybrid +137_1-1 Q0 MARCO_26_404008777-34 11 -0.057551 hybrid +137_1-1 Q0 MARCO_26_370915100-36 12 -0.064806 hybrid +137_1-1 Q0 MARCO_35_313211833-7 13 -0.065055 hybrid +137_1-1 Q0 MARCO_26_368007630-56 14 -0.085555 hybrid +137_1-1 Q0 MARCO_26_396024234-50 15 -0.098642 hybrid +137_1-1 Q0 MARCO_26_365290625-46 16 -0.108480 hybrid +137_1-1 Q0 MARCO_26_379963375-42 17 -0.121639 hybrid +137_1-1 Q0 MARCO_26_404008777-47 18 -0.122030 hybrid +137_1-1 Q0 MARCO_26_385981715-15 19 -0.130172 hybrid +137_1-1 Q0 MARCO_26_404008777-46 20 -0.133195 hybrid +137_1-1 Q0 MARCO_26_396024234-42 21 -0.140898 hybrid +137_1-1 Q0 MARCO_26_404008777-36 22 -0.141448 hybrid +137_1-1 Q0 MARCO_26_396165785-45 23 -0.142350 hybrid +137_1-1 Q0 MARCO_26_385981715-33 24 -0.143289 hybrid +137_1-1 Q0 MARCO_26_396165785-41 25 -0.145891 hybrid +137_1-1 Q0 KILT_31167886-1 26 -0.149061 hybrid +137_1-1 Q0 MARCO_26_396024234-43 27 -0.153125 hybrid +137_1-1 Q0 MARCO_26_396165785-32 28 -0.158296 hybrid +137_1-1 Q0 MARCO_26_396165785-44 29 -0.164418 hybrid +137_1-1 Q0 MARCO_26_396024234-44 30 -0.167018 hybrid +137_1-1 Q0 MARCO_26_347456926-46 31 -0.168029 hybrid +137_1-1 Q0 KILT_277664-6 32 -0.168070 hybrid +137_1-1 Q0 KILT_277664-5 33 -0.168874 hybrid +137_1-1 Q0 KILT_277664-4 34 -0.170346 hybrid +137_1-1 Q0 MARCO_26_404008777-28 35 -0.173460 hybrid +137_1-1 Q0 MARCO_26_404008777-31 36 -0.174954 hybrid +137_1-1 Q0 MARCO_26_344035246-58 37 -0.175071 hybrid +137_1-1 Q0 MARCO_26_396165785-33 38 -0.175380 hybrid +137_1-1 Q0 MARCO_50_1667708224-3 39 -0.176344 hybrid +137_1-1 Q0 MARCO_28_325330682-17 40 -0.178217 hybrid +137_1-1 Q0 MARCO_26_411775176-97 41 -0.179593 hybrid +137_1-1 Q0 MARCO_26_347456926-47 42 -0.181810 hybrid +137_1-1 Q0 MARCO_26_396024234-48 43 -0.184604 hybrid +137_1-1 Q0 MARCO_26_396165785-35 44 -0.199624 hybrid +137_1-1 Q0 MARCO_26_396024234-40 45 -0.203094 hybrid +137_1-1 Q0 MARCO_26_395917108-51 46 -0.203937 hybrid +137_1-1 Q0 MARCO_26_372198263-53 47 -0.205603 hybrid +137_1-1 Q0 MARCO_26_395736684-47 48 -0.207354 hybrid +137_1-1 Q0 MARCO_26_395917108-60 49 -0.209221 hybrid +137_1-1 Q0 MARCO_50_2388271596-12 50 -0.212433 hybrid +137_1-1 Q0 MARCO_50_2384746901-10 51 -0.212433 hybrid +137_1-1 Q0 MARCO_26_396165785-47 52 -0.213752 hybrid +137_1-1 Q0 MARCO_26_396107592-29 53 -0.214027 hybrid +137_1-1 Q0 MARCO_17_430832366-8 54 -0.215441 hybrid +137_1-1 Q0 MARCO_44_605193844-11 55 -0.215601 hybrid +137_1-1 Q0 MARCO_28_803265979-2 56 -0.217958 hybrid +137_1-1 Q0 KILT_33276396-2 57 -0.220968 hybrid +137_1-1 Q0 KILT_33426-14 58 -0.221231 hybrid +137_1-1 Q0 MARCO_26_396024234-41 59 -0.223626 hybrid +137_1-1 Q0 MARCO_50_2388304098-6 60 -0.228050 hybrid +137_1-1 Q0 MARCO_16_3040984498-49 61 -0.231472 hybrid +137_1-1 Q0 MARCO_17_430832366-9 62 -0.235002 hybrid +137_1-1 Q0 MARCO_26_404008777-54 63 -0.235130 hybrid +137_1-1 Q0 MARCO_26_376882717-98 64 -0.235149 hybrid +137_1-1 Q0 MARCO_26_395736684-48 65 -0.235664 hybrid +137_1-1 Q0 MARCO_01_1172449589-125 66 -0.235885 hybrid +137_1-1 Q0 MARCO_26_376804511-43 67 -0.239356 hybrid +137_1-1 Q0 MARCO_26_409616108-30 68 -0.239437 hybrid +137_1-1 Q0 MARCO_26_404008777-50 69 -0.239501 hybrid +137_1-1 Q0 MARCO_41_1238980438-54 70 -0.239685 hybrid +137_1-1 Q0 MARCO_35_313211833-6 71 -0.243134 hybrid +137_1-1 Q0 MARCO_26_396165785-42 72 -0.243230 hybrid +137_1-1 Q0 KILT_570922-9 73 -0.244700 hybrid +137_1-1 Q0 MARCO_26_407379693-15 74 -0.246477 hybrid +137_1-1 Q0 MARCO_26_404008777-45 75 -0.246628 hybrid +137_1-1 Q0 MARCO_26_396024234-57 76 -0.250585 hybrid +137_1-1 Q0 MARCO_26_396024234-36 77 -0.254743 hybrid +137_1-1 Q0 MARCO_16_2870497705-2 78 -0.255449 hybrid +137_1-1 Q0 MARCO_26_379963375-26 79 -0.256144 hybrid +137_1-1 Q0 MARCO_26_404008777-44 80 -0.256637 hybrid +137_1-1 Q0 MARCO_16_2870497705-33 81 -0.258678 hybrid +137_1-1 Q0 MARCO_26_404008777-26 82 -0.259815 hybrid +137_1-1 Q0 KILT_52183913-13 83 -0.262002 hybrid +137_1-1 Q0 MARCO_26_376882717-67 84 -0.263036 hybrid +137_1-1 Q0 MARCO_26_396165785-48 85 -0.264278 hybrid +137_1-1 Q0 MARCO_26_360014365-70 86 -0.265265 hybrid +137_1-1 Q0 MARCO_26_397313239-67 87 -0.265293 hybrid +137_1-1 Q0 MARCO_26_404008777-49 88 -0.266639 hybrid +137_1-1 Q0 MARCO_16_2870497705-32 89 -0.270039 hybrid +137_1-1 Q0 MARCO_26_404008777-25 90 -0.270142 hybrid +137_1-1 Q0 MARCO_11_1427165601-1 91 -0.270564 hybrid +137_1-1 Q0 MARCO_16_2870455258-25 92 -0.272642 hybrid +137_1-1 Q0 MARCO_26_357876766-39 93 -0.273930 hybrid +137_1-1 Q0 MARCO_16_2870455258-10 94 -0.273990 hybrid +137_1-1 Q0 KILT_277664-16 95 -0.276531 hybrid +137_1-1 Q0 MARCO_26_392163329-95 96 -0.279180 hybrid +137_1-1 Q0 MARCO_26_385276802-69 97 -0.280631 hybrid +137_1-1 Q0 MARCO_26_379913117-24 98 -0.282333 hybrid +137_1-1 Q0 MARCO_16_2870497705-7 99 -0.284334 hybrid +137_1-1 Q0 MARCO_26_408882664-61 100 -0.285405 hybrid +137_1-11 Q0 MARCO_41_1241564357-51 1 0.500002 hybrid +137_1-11 Q0 MARCO_52_1652554245-2 2 0.309390 hybrid +137_1-11 Q0 MARCO_50_1506711576-37 3 0.305435 hybrid +137_1-11 Q0 KILT_12403253-14 4 0.304597 hybrid +137_1-11 Q0 KILT_47069739-30 5 0.302418 hybrid +137_1-11 Q0 MARCO_50_1442251387-40 6 0.209870 hybrid +137_1-11 Q0 MARCO_52_1649129340-3 7 0.198125 hybrid +137_1-11 Q0 MARCO_42_1104714867-61 8 0.181703 hybrid +137_1-11 Q0 MARCO_05_600532054-1 9 0.167800 hybrid +137_1-11 Q0 MARCO_12_1866611257-14 10 0.154503 hybrid +137_1-11 Q0 MARCO_23_1085604106-1 11 0.128017 hybrid +137_1-11 Q0 MARCO_27_716467557-3 12 0.116136 hybrid +137_1-11 Q0 MARCO_10_551602548-25 13 0.091545 hybrid +137_1-11 Q0 MARCO_07_1580559307-11 14 0.089465 hybrid +137_1-11 Q0 MARCO_41_1166922735-16 15 0.087797 hybrid +137_1-11 Q0 KILT_36860986-46 16 0.060427 hybrid +137_1-11 Q0 MARCO_40_175150328-11 17 0.056840 hybrid +137_1-11 Q0 MARCO_46_629689633-3 18 0.050091 hybrid +137_1-11 Q0 MARCO_41_1189572104-25 19 0.048926 hybrid +137_1-11 Q0 MARCO_18_2419479428-32 20 0.021276 hybrid +137_1-11 Q0 MARCO_35_1382138495-1 21 0.015959 hybrid +137_1-11 Q0 MARCO_41_1189572104-15 22 0.015381 hybrid +137_1-11 Q0 MARCO_41_1363908538-8 23 0.012620 hybrid +137_1-11 Q0 MARCO_35_1383547965-11 24 0.003980 hybrid +137_1-11 Q0 MARCO_35_314644994-4 25 -0.005672 hybrid +137_1-11 Q0 MARCO_36_888487863-6 26 -0.010283 hybrid +137_1-11 Q0 MARCO_40_175150328-2 27 -0.011344 hybrid +137_1-11 Q0 MARCO_41_1192539676-47 28 -0.013866 hybrid +137_1-11 Q0 MARCO_41_1406937528-42 29 -0.025446 hybrid +137_1-11 Q0 MARCO_18_1803225057-26 30 -0.027469 hybrid +137_1-11 Q0 MARCO_18_3776644102-16 31 -0.035052 hybrid +137_1-11 Q0 MARCO_43_1019422237-4 32 -0.036212 hybrid +137_1-11 Q0 MARCO_50_485442108-7 33 -0.038532 hybrid +137_1-11 Q0 MARCO_36_896744753-16 34 -0.044125 hybrid +137_1-11 Q0 KILT_47069739-32 35 -0.044138 hybrid +137_1-11 Q0 MARCO_10_79619100-2 36 -0.045835 hybrid +137_1-11 Q0 MARCO_10_79499431-17 37 -0.053026 hybrid +137_1-11 Q0 KILT_54062262-17 38 -0.055437 hybrid +137_1-11 Q0 MARCO_27_209363489-18 39 -0.055858 hybrid +137_1-11 Q0 MARCO_42_1105109712-3 40 -0.058685 hybrid +137_1-11 Q0 MARCO_50_1515133112-2 41 -0.065559 hybrid +137_1-11 Q0 MARCO_52_1652568213-7 42 -0.068155 hybrid +137_1-11 Q0 MARCO_41_1189572104-29 43 -0.068535 hybrid +137_1-11 Q0 MARCO_41_1189572104-13 44 -0.071210 hybrid +137_1-11 Q0 MARCO_41_1188303552-26 45 -0.074158 hybrid +137_1-11 Q0 MARCO_41_1186082292-28 46 -0.074975 hybrid +137_1-11 Q0 MARCO_41_1142990402-97 47 -0.077200 hybrid +137_1-11 Q0 MARCO_41_1208002734-34 48 -0.080787 hybrid +137_1-11 Q0 MARCO_42_1103878703-3 49 -0.085043 hybrid +137_1-11 Q0 MARCO_17_3085857032-7 50 -0.085766 hybrid +137_1-11 Q0 MARCO_17_3085857032-5 51 -0.085766 hybrid +137_1-11 Q0 MARCO_41_1366942214-5 52 -0.086596 hybrid +137_1-11 Q0 MARCO_41_1241564357-30 53 -0.087702 hybrid +137_1-11 Q0 MARCO_42_1105176521-45 54 -0.090852 hybrid +137_1-11 Q0 MARCO_50_2501547903-5 55 -0.091425 hybrid +137_1-11 Q0 MARCO_00_1161868671-4 56 -0.094047 hybrid +137_1-11 Q0 MARCO_35_1383547965-8 57 -0.094117 hybrid +137_1-11 Q0 MARCO_15_107455358-32 58 -0.094637 hybrid +137_1-11 Q0 MARCO_18_1803225057-15 59 -0.096255 hybrid +137_1-11 Q0 MARCO_43_1019176089-17 60 -0.096709 hybrid +137_1-11 Q0 MARCO_00_336979131-3 61 -0.097234 hybrid +137_1-11 Q0 MARCO_41_1368079002-10 62 -0.098542 hybrid +137_1-11 Q0 MARCO_42_1104714867-9 63 -0.102002 hybrid +137_1-11 Q0 MARCO_27_1431814765-11 64 -0.105234 hybrid +137_1-11 Q0 MARCO_44_608944968-2 65 -0.108995 hybrid +137_1-11 Q0 MARCO_18_3756735521-55 66 -0.110254 hybrid +137_1-11 Q0 MARCO_24_818625-2 67 -0.110658 hybrid +137_1-11 Q0 MARCO_24_652996254-4 68 -0.111331 hybrid +137_1-11 Q0 MARCO_36_896744753-9 69 -0.112310 hybrid +137_1-11 Q0 MARCO_42_263700033-2 70 -0.115059 hybrid +137_1-11 Q0 KILT_45359871-21 71 -0.116363 hybrid +137_1-11 Q0 MARCO_41_1142356573-6 72 -0.116508 hybrid +137_1-11 Q0 MARCO_41_1122465642-34 73 -0.116958 hybrid +137_1-11 Q0 MARCO_41_1141970661-51 74 -0.118494 hybrid +137_1-11 Q0 MARCO_44_610655812-1 75 -0.120471 hybrid +137_1-11 Q0 MARCO_52_1651010509-2 76 -0.126940 hybrid +137_1-11 Q0 MARCO_07_1580559307-4 77 -0.127641 hybrid +137_1-11 Q0 MARCO_00_1161106414-2 78 -0.127943 hybrid +137_1-11 Q0 MARCO_42_1104714867-66 79 -0.129301 hybrid +137_1-11 Q0 MARCO_18_3756735521-19 80 -0.129891 hybrid +137_1-11 Q0 MARCO_19_562425557-59 81 -0.132397 hybrid +137_1-11 Q0 MARCO_50_1507139950-17 82 -0.136001 hybrid +137_1-11 Q0 MARCO_41_1373529505-64 83 -0.137198 hybrid +137_1-11 Q0 MARCO_07_1580559307-8 84 -0.140889 hybrid +137_1-11 Q0 KILT_23310072-11 85 -0.144847 hybrid +137_1-11 Q0 MARCO_00_1161555318-1 86 -0.145198 hybrid +137_1-11 Q0 KILT_36484005-46 87 -0.148394 hybrid +137_1-11 Q0 MARCO_10_551602548-31 88 -0.154383 hybrid +137_1-11 Q0 MARCO_10_551602548-13 89 -0.156386 hybrid +137_1-11 Q0 MARCO_40_175150328-8 90 -0.156443 hybrid +137_1-11 Q0 MARCO_17_2942368905-19 91 -0.159123 hybrid +137_1-11 Q0 MARCO_50_1507875110-6 92 -0.160671 hybrid +137_1-11 Q0 MARCO_35_1382443355-1 93 -0.162549 hybrid +137_1-11 Q0 MARCO_41_1232791912-26 94 -0.163474 hybrid +137_1-11 Q0 KILT_36484005-23 95 -0.168646 hybrid +137_1-11 Q0 MARCO_00_1161868671-2 96 -0.168650 hybrid +137_1-11 Q0 MARCO_35_1382087783-2 97 -0.169220 hybrid +137_1-11 Q0 MARCO_35_1383505365-1 98 -0.171325 hybrid +137_1-11 Q0 MARCO_07_1580559307-12 99 -0.175065 hybrid +137_1-11 Q0 MARCO_16_3025547777-7 100 -0.175858 hybrid +137_1-3 Q0 KILT_9912495-3 1 0.500000 hybrid +137_1-3 Q0 MARCO_26_397313239-44 2 0.341445 hybrid +137_1-3 Q0 KILT_9912495-4 3 0.317926 hybrid +137_1-3 Q0 KILT_9912495-6 4 0.271348 hybrid +137_1-3 Q0 KILT_9912495-5 5 0.219636 hybrid +137_1-3 Q0 KILT_9912495-1 6 0.115581 hybrid +137_1-3 Q0 MARCO_35_313211833-3 7 0.107985 hybrid +137_1-3 Q0 MARCO_35_313211833-7 8 0.055198 hybrid +137_1-3 Q0 MARCO_26_397313239-45 9 -0.009356 hybrid +137_1-3 Q0 MARCO_26_404008777-34 10 -0.030176 hybrid +137_1-3 Q0 MARCO_26_370915100-36 11 -0.058251 hybrid +137_1-3 Q0 MARCO_26_396165785-34 12 -0.067326 hybrid +137_1-3 Q0 MARCO_26_404008777-38 13 -0.076814 hybrid +137_1-3 Q0 MARCO_26_404008777-46 14 -0.112129 hybrid +137_1-3 Q0 MARCO_26_404008777-28 15 -0.119648 hybrid +137_1-3 Q0 MARCO_26_396165785-32 16 -0.155276 hybrid +137_1-3 Q0 MARCO_26_385981715-33 17 -0.155565 hybrid +137_1-3 Q0 MARCO_26_404008777-36 18 -0.159937 hybrid +137_1-3 Q0 MARCO_26_368007630-56 19 -0.162079 hybrid +137_1-3 Q0 MARCO_26_404008777-31 20 -0.164422 hybrid +137_1-3 Q0 MARCO_26_344035246-58 21 -0.165260 hybrid +137_1-3 Q0 MARCO_26_407379693-15 22 -0.167988 hybrid +137_1-3 Q0 MARCO_26_404008777-47 23 -0.170311 hybrid +137_1-3 Q0 MARCO_26_365290625-46 24 -0.172492 hybrid +137_1-3 Q0 MARCO_26_396165785-45 25 -0.186533 hybrid +137_1-3 Q0 MARCO_26_396024234-43 26 -0.186665 hybrid +137_1-3 Q0 MARCO_26_404008777-50 27 -0.191199 hybrid +137_1-3 Q0 MARCO_26_396024234-50 28 -0.199928 hybrid +137_1-3 Q0 MARCO_26_411775176-97 29 -0.205777 hybrid +137_1-3 Q0 MARCO_11_1427165601-1 30 -0.211526 hybrid +137_1-3 Q0 MARCO_26_352172018-92 31 -0.212889 hybrid +137_1-3 Q0 MARCO_50_1667708224-3 32 -0.215661 hybrid +137_1-3 Q0 MARCO_26_396165785-33 33 -0.218389 hybrid +137_1-3 Q0 MARCO_28_325330682-17 34 -0.220094 hybrid +137_1-3 Q0 MARCO_26_396024234-44 35 -0.221486 hybrid +137_1-3 Q0 MARCO_26_352172018-87 36 -0.226010 hybrid +137_1-3 Q0 MARCO_26_396024234-40 37 -0.226223 hybrid +137_1-3 Q0 MARCO_26_396165785-44 38 -0.235496 hybrid +137_1-3 Q0 MARCO_26_365389421-75 39 -0.238126 hybrid +137_1-3 Q0 MARCO_26_379963375-42 40 -0.239945 hybrid +137_1-3 Q0 MARCO_41_1238980438-54 41 -0.240553 hybrid +137_1-3 Q0 MARCO_26_376804511-43 42 -0.241889 hybrid +137_1-3 Q0 MARCO_26_396165785-47 43 -0.245490 hybrid +137_1-3 Q0 MARCO_28_803265979-2 44 -0.248543 hybrid +137_1-3 Q0 MARCO_26_408882664-61 45 -0.248674 hybrid +137_1-3 Q0 MARCO_26_396024234-42 46 -0.249296 hybrid +137_1-3 Q0 MARCO_26_404008777-44 47 -0.255167 hybrid +137_1-3 Q0 MARCO_15_104587312-25 48 -0.255641 hybrid +137_1-3 Q0 MARCO_26_376882717-98 49 -0.255684 hybrid +137_1-3 Q0 MARCO_26_404008777-61 50 -0.256168 hybrid +137_1-3 Q0 MARCO_26_396107592-29 51 -0.256921 hybrid +137_1-3 Q0 MARCO_26_372198263-53 52 -0.256996 hybrid +137_1-3 Q0 MARCO_26_377868967-51 53 -0.257590 hybrid +137_1-3 Q0 MARCO_26_397313239-67 54 -0.258654 hybrid +137_1-3 Q0 MARCO_26_396165785-35 55 -0.258723 hybrid +137_1-3 Q0 MARCO_26_404008777-33 56 -0.259288 hybrid +137_1-3 Q0 MARCO_50_2388304098-6 57 -0.262157 hybrid +137_1-3 Q0 MARCO_26_392163329-95 58 -0.262549 hybrid +137_1-3 Q0 MARCO_28_446475145-9 59 -0.262684 hybrid +137_1-3 Q0 KILT_277664-4 60 -0.263227 hybrid +137_1-3 Q0 MARCO_26_409921561-62 61 -0.263923 hybrid +137_1-3 Q0 MARCO_26_385981715-15 62 -0.264061 hybrid +137_1-3 Q0 MARCO_26_410722285-87 63 -0.267133 hybrid +137_1-3 Q0 MARCO_50_2388271596-12 64 -0.267664 hybrid +137_1-3 Q0 MARCO_50_2384746901-10 65 -0.267664 hybrid +137_1-3 Q0 MARCO_44_1568576535-22 66 -0.268172 hybrid +137_1-3 Q0 MARCO_26_407379693-9 67 -0.269025 hybrid +137_1-3 Q0 MARCO_26_395917108-60 68 -0.270674 hybrid +137_1-3 Q0 MARCO_26_404008777-54 69 -0.272080 hybrid +137_1-3 Q0 MARCO_26_396165785-41 70 -0.272469 hybrid +137_1-3 Q0 KILT_277664-6 71 -0.273014 hybrid +137_1-3 Q0 MARCO_26_404008777-45 72 -0.274098 hybrid +137_1-3 Q0 MARCO_26_405790892-164 73 -0.274283 hybrid +137_1-3 Q0 MARCO_26_409616108-30 74 -0.275402 hybrid +137_1-3 Q0 MARCO_26_404008777-25 75 -0.276405 hybrid +137_1-3 Q0 MARCO_19_1098899390-13 76 -0.276875 hybrid +137_1-3 Q0 MARCO_26_388367147-14 77 -0.277448 hybrid +137_1-3 Q0 MARCO_26_347456926-47 78 -0.277916 hybrid +137_1-3 Q0 MARCO_26_404008777-26 79 -0.279031 hybrid +137_1-3 Q0 MARCO_26_402162316-86 80 -0.280632 hybrid +137_1-3 Q0 MARCO_26_347456926-46 81 -0.281554 hybrid +137_1-3 Q0 KILT_277664-5 82 -0.282577 hybrid +137_1-3 Q0 MARCO_26_344035246-59 83 -0.284536 hybrid +137_1-3 Q0 MARCO_26_345703540-42 84 -0.284992 hybrid +137_1-3 Q0 MARCO_26_378206685-90 85 -0.285396 hybrid +137_1-3 Q0 MARCO_26_404489469-38 86 -0.285689 hybrid +137_1-3 Q0 MARCO_26_396024234-48 87 -0.286121 hybrid +137_1-3 Q0 MARCO_16_2870455258-10 88 -0.287418 hybrid +137_1-3 Q0 MARCO_26_396165785-71 89 -0.288191 hybrid +137_1-3 Q0 MARCO_26_402384878-57 90 -0.288269 hybrid +137_1-3 Q0 MARCO_26_379963375-26 91 -0.289369 hybrid +137_1-3 Q0 MARCO_26_378206685-91 92 -0.289892 hybrid +137_1-3 Q0 MARCO_26_396165785-42 93 -0.290285 hybrid +137_1-3 Q0 MARCO_26_404008777-49 94 -0.291713 hybrid +137_1-3 Q0 MARCO_35_313211833-6 95 -0.291794 hybrid +137_1-3 Q0 MARCO_17_430832366-8 96 -0.293853 hybrid +137_1-3 Q0 MARCO_26_389684685-51 97 -0.293989 hybrid +137_1-3 Q0 MARCO_26_379963375-61 98 -0.295214 hybrid +137_1-3 Q0 MARCO_26_376882717-60 99 -0.297073 hybrid +137_1-3 Q0 MARCO_16_2870455258-25 100 -0.297156 hybrid +137_1-5 Q0 KILT_9912495-4 1 0.500001 hybrid +137_1-5 Q0 MARCO_26_397313239-44 2 0.334394 hybrid +137_1-5 Q0 KILT_9912495-5 3 0.306448 hybrid +137_1-5 Q0 KILT_9912495-3 4 0.224871 hybrid +137_1-5 Q0 MARCO_35_313211833-3 5 0.052503 hybrid +137_1-5 Q0 KILT_9912495-6 6 0.043983 hybrid +137_1-5 Q0 KILT_9912495-1 7 -0.050616 hybrid +137_1-5 Q0 MARCO_15_104587312-71 8 -0.131577 hybrid +137_1-5 Q0 MARCO_35_313211833-6 9 -0.205891 hybrid +137_1-5 Q0 MARCO_35_313211833-7 10 -0.211813 hybrid +137_1-5 Q0 KILT_9912495-7 11 -0.232637 hybrid +137_1-5 Q0 MARCO_26_377868967-54 12 -0.234560 hybrid +137_1-5 Q0 MARCO_26_347456926-47 13 -0.234732 hybrid +137_1-5 Q0 KILT_9912495-2 14 -0.244372 hybrid +137_1-5 Q0 MARCO_26_353078894-31 15 -0.273649 hybrid +137_1-5 Q0 MARCO_19_1098899390-13 16 -0.275593 hybrid +137_1-5 Q0 MARCO_26_379963375-42 17 -0.282976 hybrid +137_1-5 Q0 MARCO_26_376804511-43 18 -0.283629 hybrid +137_1-5 Q0 MARCO_26_385848624-19 19 -0.285168 hybrid +137_1-5 Q0 MARCO_17_2520435101-75 20 -0.289296 hybrid +137_1-5 Q0 MARCO_44_1568576535-22 21 -0.292358 hybrid +137_1-5 Q0 MARCO_50_2388304098-6 22 -0.296586 hybrid +137_1-5 Q0 KILT_183290-10 23 -0.298213 hybrid +137_1-5 Q0 MARCO_26_397313239-45 24 -0.301372 hybrid +137_1-5 Q0 MARCO_46_1381637356-33 25 -0.313860 hybrid +137_1-5 Q0 MARCO_26_376804511-42 26 -0.315502 hybrid +137_1-5 Q0 MARCO_26_377868967-48 27 -0.317852 hybrid +137_1-5 Q0 MARCO_26_377868967-51 28 -0.319219 hybrid +137_1-5 Q0 MARCO_26_365290625-46 29 -0.323566 hybrid +137_1-5 Q0 MARCO_41_1371154070-21 30 -0.326086 hybrid +137_1-5 Q0 MARCO_26_404008777-46 31 -0.326217 hybrid +137_1-5 Q0 MARCO_35_313211833-4 32 -0.326734 hybrid +137_1-5 Q0 MARCO_26_408882664-22 33 -0.331429 hybrid +137_1-5 Q0 MARCO_06_1214366569-89 34 -0.331431 hybrid +137_1-5 Q0 MARCO_26_357876766-39 35 -0.332636 hybrid +137_1-5 Q0 MARCO_26_404008777-38 36 -0.332757 hybrid +137_1-5 Q0 MARCO_26_377868967-50 37 -0.333649 hybrid +137_1-5 Q0 MARCO_26_408882664-61 38 -0.335772 hybrid +137_1-5 Q0 KILT_93070-17 39 -0.337705 hybrid +137_1-5 Q0 MARCO_26_378206685-96 40 -0.338404 hybrid +137_1-5 Q0 KILT_40686725-1 41 -0.339279 hybrid +137_1-5 Q0 MARCO_26_395736684-48 42 -0.339501 hybrid +137_1-5 Q0 MARCO_26_397313239-43 43 -0.339655 hybrid +137_1-5 Q0 MARCO_26_386596055-52 44 -0.340896 hybrid +137_1-5 Q0 MARCO_50_2400049336-47 45 -0.343485 hybrid +137_1-5 Q0 MARCO_26_404008777-54 46 -0.344626 hybrid +137_1-5 Q0 MARCO_41_1238980438-54 47 -0.344871 hybrid +137_1-5 Q0 MARCO_54_1109926822-10 48 -0.345808 hybrid +137_1-5 Q0 KILT_31167886-1 49 -0.346089 hybrid +137_1-5 Q0 MARCO_35_313211833-5 50 -0.346890 hybrid +137_1-5 Q0 MARCO_50_1616036438-2 51 -0.350205 hybrid +137_1-5 Q0 MARCO_41_1184140562-57 52 -0.352506 hybrid +137_1-5 Q0 MARCO_07_545692170-20 53 -0.352744 hybrid +137_1-5 Q0 MARCO_26_394547933-23 54 -0.353048 hybrid +137_1-5 Q0 MARCO_02_491378805-4 55 -0.353629 hybrid +137_1-5 Q0 MARCO_26_365389421-75 56 -0.354853 hybrid +137_1-5 Q0 MARCO_26_396107592-29 57 -0.355058 hybrid +137_1-5 Q0 KILT_7850102-15 58 -0.356415 hybrid +137_1-5 Q0 MARCO_28_325330682-17 59 -0.356939 hybrid +137_1-5 Q0 MARCO_50_2388271596-12 60 -0.357915 hybrid +137_1-5 Q0 MARCO_50_2384746901-10 61 -0.357915 hybrid +137_1-5 Q0 KILT_2070192-1 62 -0.358268 hybrid +137_1-5 Q0 MARCO_50_1667708224-3 63 -0.359180 hybrid +137_1-5 Q0 MARCO_16_3040984498-49 64 -0.360087 hybrid +137_1-5 Q0 MARCO_26_368007630-56 65 -0.360268 hybrid +137_1-5 Q0 MARCO_05_598923490-12 66 -0.360324 hybrid +137_1-5 Q0 KILT_1608493-5 67 -0.360881 hybrid +137_1-5 Q0 MARCO_45_1320538418-7 68 -0.362861 hybrid +137_1-5 Q0 MARCO_26_404008777-47 69 -0.363200 hybrid +137_1-5 Q0 MARCO_50_2388470957-26 70 -0.364238 hybrid +137_1-5 Q0 KILT_1148880-9 71 -0.365236 hybrid +137_1-5 Q0 MARCO_26_347456926-46 72 -0.365956 hybrid +137_1-5 Q0 KILT_7850102-26 73 -0.366707 hybrid +137_1-5 Q0 KILT_1839837-3 74 -0.368238 hybrid +137_1-5 Q0 MARCO_44_95289352-16 75 -0.369130 hybrid +137_1-5 Q0 KILT_93070-16 76 -0.369187 hybrid +137_1-5 Q0 MARCO_26_351164203-13 77 -0.369626 hybrid +137_1-5 Q0 MARCO_26_404008777-34 78 -0.370941 hybrid +137_1-5 Q0 KILT_9912495-9 79 -0.372533 hybrid +137_1-5 Q0 MARCO_26_404008777-31 80 -0.373793 hybrid +137_1-5 Q0 MARCO_45_1320538418-1 81 -0.374224 hybrid +137_1-5 Q0 MARCO_26_411775176-97 82 -0.375740 hybrid +137_1-5 Q0 MARCO_26_349422046-43 83 -0.376329 hybrid +137_1-5 Q0 MARCO_26_814345146-3 84 -0.378964 hybrid +137_1-5 Q0 MARCO_26_345480050-11 85 -0.379409 hybrid +137_1-5 Q0 MARCO_17_2520435101-77 86 -0.380333 hybrid +137_1-5 Q0 MARCO_16_1112340320-2 87 -0.381427 hybrid +137_1-5 Q0 MARCO_24_956160156-4 88 -0.381634 hybrid +137_1-5 Q0 MARCO_26_397313239-67 89 -0.381899 hybrid +137_1-5 Q0 MARCO_41_1404175379-16 90 -0.382095 hybrid +137_1-5 Q0 MARCO_26_372198263-53 91 -0.382441 hybrid +137_1-5 Q0 MARCO_26_377868967-49 92 -0.382755 hybrid +137_1-5 Q0 MARCO_28_325330682-23 93 -0.382793 hybrid +137_1-5 Q0 KILT_796928-5 94 -0.382962 hybrid +137_1-5 Q0 KILT_39797155-2 95 -0.383002 hybrid +137_1-5 Q0 KILT_6427405-18 96 -0.383588 hybrid +137_1-5 Q0 MARCO_26_409616108-30 97 -0.384648 hybrid +137_1-5 Q0 MARCO_26_345480050-70 98 -0.384788 hybrid +137_1-5 Q0 MARCO_26_377868967-52 99 -0.385281 hybrid +137_1-5 Q0 MARCO_26_386596055-51 100 -0.385743 hybrid +137_1-7 Q0 KILT_9912495-4 1 0.500000 hybrid +137_1-7 Q0 MARCO_35_313211833-6 2 0.280926 hybrid +137_1-7 Q0 MARCO_35_313211833-3 3 0.279255 hybrid +137_1-7 Q0 KILT_9912495-13 4 0.170692 hybrid +137_1-7 Q0 MARCO_15_104587312-71 5 0.161463 hybrid +137_1-7 Q0 KILT_9912495-7 6 0.160801 hybrid +137_1-7 Q0 MARCO_44_39582049-6 7 0.153306 hybrid +137_1-7 Q0 KILT_9912495-9 8 0.144415 hybrid +137_1-7 Q0 MARCO_26_397313239-44 9 0.142648 hybrid +137_1-7 Q0 MARCO_52_1205136674-6 10 0.099856 hybrid +137_1-7 Q0 MARCO_41_1173544761-32 11 0.075788 hybrid +137_1-7 Q0 MARCO_01_796399095-2 12 0.044436 hybrid +137_1-7 Q0 MARCO_01_796399095-62 13 0.042425 hybrid +137_1-7 Q0 MARCO_35_313211833-7 14 0.019821 hybrid +137_1-7 Q0 MARCO_28_448617516-4 15 0.017252 hybrid +137_1-7 Q0 MARCO_12_278460211-19 16 0.013204 hybrid +137_1-7 Q0 MARCO_26_378206685-98 17 0.000642 hybrid +137_1-7 Q0 MARCO_07_545692170-37 18 -0.000322 hybrid +137_1-7 Q0 MARCO_50_2486569954-17 19 -0.010703 hybrid +137_1-7 Q0 MARCO_35_313211833-5 20 -0.030969 hybrid +137_1-7 Q0 MARCO_01_796399095-95 21 -0.033005 hybrid +137_1-7 Q0 MARCO_41_1173544761-50 22 -0.037718 hybrid +137_1-7 Q0 MARCO_02_1357127227-9 23 -0.063046 hybrid +137_1-7 Q0 MARCO_50_1668238923-36 24 -0.063959 hybrid +137_1-7 Q0 MARCO_26_408882664-61 25 -0.074477 hybrid +137_1-7 Q0 MARCO_50_1663146146-45 26 -0.077548 hybrid +137_1-7 Q0 KILT_9912495-6 27 -0.090075 hybrid +137_1-7 Q0 MARCO_24_537810-25 28 -0.097916 hybrid +137_1-7 Q0 KILT_9912495-3 29 -0.108339 hybrid +137_1-7 Q0 MARCO_58_1178297016-1 30 -0.108458 hybrid +137_1-7 Q0 MARCO_50_1603056025-3 31 -0.108479 hybrid +137_1-7 Q0 MARCO_35_313211833-4 32 -0.113314 hybrid +137_1-7 Q0 MARCO_50_1603056025-17 33 -0.113986 hybrid +137_1-7 Q0 MARCO_26_376804511-43 34 -0.116914 hybrid +137_1-7 Q0 MARCO_12_278460211-22 35 -0.118302 hybrid +137_1-7 Q0 MARCO_26_404008777-41 36 -0.119764 hybrid +137_1-7 Q0 MARCO_26_406817309-41 37 -0.125865 hybrid +137_1-7 Q0 MARCO_26_397313239-67 38 -0.126724 hybrid +137_1-7 Q0 MARCO_26_377868967-54 39 -0.126918 hybrid +137_1-7 Q0 MARCO_12_278460211-30 40 -0.133971 hybrid +137_1-7 Q0 MARCO_41_1173544761-6 41 -0.136353 hybrid +137_1-7 Q0 MARCO_07_545692170-20 42 -0.144083 hybrid +137_1-7 Q0 KILT_9912495-2 43 -0.144224 hybrid +137_1-7 Q0 MARCO_26_357680895-20 44 -0.148722 hybrid +137_1-7 Q0 MARCO_26_376804511-42 45 -0.150751 hybrid +137_1-7 Q0 MARCO_48_588995135-6 46 -0.151321 hybrid +137_1-7 Q0 MARCO_41_1173544761-20 47 -0.156992 hybrid +137_1-7 Q0 MARCO_12_278460211-20 48 -0.157455 hybrid +137_1-7 Q0 MARCO_50_1603056025-12 49 -0.159595 hybrid +137_1-7 Q0 MARCO_16_107310546-3 50 -0.170235 hybrid +137_1-7 Q0 MARCO_44_39582049-2 51 -0.170286 hybrid +137_1-7 Q0 MARCO_50_1446002716-116 52 -0.174336 hybrid +137_1-7 Q0 KILT_9912495-5 53 -0.178954 hybrid +137_1-7 Q0 MARCO_25_1442871446-4 54 -0.183547 hybrid +137_1-7 Q0 MARCO_26_410531635-59 55 -0.183858 hybrid +137_1-7 Q0 MARCO_28_1150599737-6 56 -0.187233 hybrid +137_1-7 Q0 MARCO_26_397313239-43 57 -0.189391 hybrid +137_1-7 Q0 MARCO_50_1616036438-2 58 -0.195781 hybrid +137_1-7 Q0 MARCO_41_1173544761-18 59 -0.199891 hybrid +137_1-7 Q0 MARCO_11_777787513-29 60 -0.200193 hybrid +137_1-7 Q0 MARCO_26_386596055-52 61 -0.200882 hybrid +137_1-7 Q0 MARCO_11_777787513-23 62 -0.200969 hybrid +137_1-7 Q0 MARCO_50_1675172049-12 63 -0.202443 hybrid +137_1-7 Q0 MARCO_26_404008777-25 64 -0.204022 hybrid +137_1-7 Q0 MARCO_50_2381036949-29 65 -0.204834 hybrid +137_1-7 Q0 MARCO_50_1668405848-8 66 -0.204983 hybrid +137_1-7 Q0 MARCO_26_404008777-45 67 -0.207076 hybrid +137_1-7 Q0 MARCO_50_496818212-13 68 -0.207267 hybrid +137_1-7 Q0 MARCO_01_796399095-8 69 -0.207869 hybrid +137_1-7 Q0 MARCO_50_1179543637-8 70 -0.208938 hybrid +137_1-7 Q0 MARCO_26_410531635-86 71 -0.209051 hybrid +137_1-7 Q0 MARCO_07_545692170-36 72 -0.210392 hybrid +137_1-7 Q0 MARCO_00_758210120-19 73 -0.211177 hybrid +137_1-7 Q0 MARCO_50_2380164792-47 74 -0.211484 hybrid +137_1-7 Q0 MARCO_26_404008777-27 75 -0.212421 hybrid +137_1-7 Q0 MARCO_50_1526008746-14 76 -0.215830 hybrid +137_1-7 Q0 MARCO_39_597130705-13 77 -0.218919 hybrid +137_1-7 Q0 MARCO_01_796399095-7 78 -0.219259 hybrid +137_1-7 Q0 MARCO_50_1661308381-8 79 -0.219283 hybrid +137_1-7 Q0 MARCO_26_412880506-85 80 -0.219847 hybrid +137_1-7 Q0 MARCO_50_1526008746-15 81 -0.220674 hybrid +137_1-7 Q0 MARCO_09_1198478033-11 82 -0.224793 hybrid +137_1-7 Q0 MARCO_25_1442871446-7 83 -0.225243 hybrid +137_1-7 Q0 MARCO_50_2389389055-10 84 -0.225536 hybrid +137_1-7 Q0 MARCO_26_402068535-46 85 -0.226572 hybrid +137_1-7 Q0 MARCO_44_39582049-1 86 -0.227180 hybrid +137_1-7 Q0 MARCO_05_842162679-4 87 -0.227315 hybrid +137_1-7 Q0 MARCO_51_1998392730-2 88 -0.230702 hybrid +137_1-7 Q0 MARCO_15_616620462-3 89 -0.230714 hybrid +137_1-7 Q0 MARCO_00_1111085949-12 90 -0.231189 hybrid +137_1-7 Q0 MARCO_49_1591524761-721 91 -0.231598 hybrid +137_1-7 Q0 MARCO_11_777787513-2 92 -0.231977 hybrid +137_1-7 Q0 MARCO_26_404008777-66 93 -0.232162 hybrid +137_1-7 Q0 MARCO_11_777787513-13 94 -0.233562 hybrid +137_1-7 Q0 MARCO_50_1661201397-3 95 -0.234111 hybrid +137_1-7 Q0 MARCO_50_1619085432-39 96 -0.235000 hybrid +137_1-7 Q0 MARCO_26_404008777-56 97 -0.235311 hybrid +137_1-7 Q0 MARCO_41_1150616965-78 98 -0.235451 hybrid +137_1-7 Q0 KILT_38602386-2 99 -0.237000 hybrid +137_1-7 Q0 MARCO_00_758210120-23 100 -0.237457 hybrid +137_1-9 Q0 MARCO_25_1770430570-5 1 0.500002 hybrid +137_1-9 Q0 MARCO_10_552964251-1 2 0.331575 hybrid +137_1-9 Q0 MARCO_01_693813107-1 3 0.265347 hybrid +137_1-9 Q0 MARCO_01_693146435-5 4 0.221718 hybrid +137_1-9 Q0 MARCO_46_1520580759-5 5 0.192023 hybrid +137_1-9 Q0 MARCO_16_1685676070-13 6 0.191445 hybrid +137_1-9 Q0 MARCO_25_1428379061-1 7 0.165114 hybrid +137_1-9 Q0 MARCO_46_1482981851-2 8 0.164628 hybrid +137_1-9 Q0 MARCO_56_1314117781-14 9 0.159994 hybrid +137_1-9 Q0 MARCO_46_1495548279-4 10 0.153630 hybrid +137_1-9 Q0 MARCO_37_1184628030-5 11 0.143429 hybrid +137_1-9 Q0 MARCO_36_996899171-3 12 0.131384 hybrid +137_1-9 Q0 MARCO_37_1184628030-3 13 0.116601 hybrid +137_1-9 Q0 MARCO_34_894073251-5 14 0.114350 hybrid +137_1-9 Q0 MARCO_35_421238327-1 15 0.103933 hybrid +137_1-9 Q0 MARCO_35_421238327-4 16 0.103736 hybrid +137_1-9 Q0 MARCO_21_1454970738-1 17 0.092819 hybrid +137_1-9 Q0 MARCO_15_109509717-1 18 0.090722 hybrid +137_1-9 Q0 MARCO_37_1184628030-1 19 0.085013 hybrid +137_1-9 Q0 MARCO_46_1493192350-2 20 0.080351 hybrid +137_1-9 Q0 MARCO_54_2036200848-16 21 0.076722 hybrid +137_1-9 Q0 MARCO_37_1515146581-12 22 0.076715 hybrid +137_1-9 Q0 MARCO_00_719251836-12 23 0.076715 hybrid +137_1-9 Q0 MARCO_29_28020443-4 24 0.070481 hybrid +137_1-9 Q0 MARCO_25_1428433430-1 25 0.058877 hybrid +137_1-9 Q0 MARCO_54_1861230181-2 26 0.056791 hybrid +137_1-9 Q0 MARCO_16_1684497283-34 27 0.020960 hybrid +137_1-9 Q0 MARCO_25_1428379061-2 28 0.018976 hybrid +137_1-9 Q0 MARCO_52_1377174011-8 29 0.017746 hybrid +137_1-9 Q0 MARCO_21_1454832992-7 30 0.015738 hybrid +137_1-9 Q0 MARCO_37_719484606-14 31 0.010931 hybrid +137_1-9 Q0 MARCO_25_1428379061-4 32 0.003200 hybrid +137_1-9 Q0 MARCO_07_619012573-9 33 -0.006540 hybrid +137_1-9 Q0 MARCO_43_1241999230-5 34 -0.010787 hybrid +137_1-9 Q0 MARCO_55_717500246-1 35 -0.024949 hybrid +137_1-9 Q0 MARCO_16_1684497283-36 36 -0.027310 hybrid +137_1-9 Q0 MARCO_37_1516943259-5 37 -0.029075 hybrid +137_1-9 Q0 MARCO_07_258528921-2 38 -0.029953 hybrid +137_1-9 Q0 MARCO_43_1273083537-1 39 -0.032268 hybrid +137_1-9 Q0 MARCO_56_1314990292-1 40 -0.038481 hybrid +137_1-9 Q0 MARCO_00_719191069-16 41 -0.042794 hybrid +137_1-9 Q0 MARCO_37_1516657940-14 42 -0.042794 hybrid +137_1-9 Q0 MARCO_00_719092455-15 43 -0.042794 hybrid +137_1-9 Q0 MARCO_37_1514563964-16 44 -0.042794 hybrid +137_1-9 Q0 MARCO_37_1513929449-16 45 -0.042794 hybrid +137_1-9 Q0 MARCO_00_718646688-13 46 -0.042794 hybrid +137_1-9 Q0 MARCO_37_1515184339-17 47 -0.042794 hybrid +137_1-9 Q0 MARCO_37_1514410565-13 48 -0.042801 hybrid +137_1-9 Q0 MARCO_56_1314990292-2 49 -0.047572 hybrid +137_1-9 Q0 MARCO_15_109509717-6 50 -0.052562 hybrid +137_1-9 Q0 MARCO_01_693146435-3 51 -0.053330 hybrid +137_1-9 Q0 MARCO_29_663445075-10 52 -0.060248 hybrid +137_1-9 Q0 MARCO_54_1564457194-4 53 -0.064994 hybrid +137_1-9 Q0 MARCO_10_377583604-1 54 -0.067084 hybrid +137_1-9 Q0 MARCO_19_2430945104-2 55 -0.068028 hybrid +137_1-9 Q0 MARCO_00_719041658-13 56 -0.069011 hybrid +137_1-9 Q0 MARCO_37_1517087951-16 57 -0.069018 hybrid +137_1-9 Q0 MARCO_25_529396751-1 58 -0.070026 hybrid +137_1-9 Q0 MARCO_54_1564718358-2 59 -0.078448 hybrid +137_1-9 Q0 MARCO_17_3105101738-70 60 -0.079393 hybrid +137_1-9 Q0 MARCO_10_9591135-1 61 -0.082719 hybrid +137_1-9 Q0 MARCO_47_12338566-5 62 -0.086550 hybrid +137_1-9 Q0 MARCO_56_1315019440-7 63 -0.092928 hybrid +137_1-9 Q0 MARCO_37_715328708-5 64 -0.093087 hybrid +137_1-9 Q0 MARCO_39_421215551-1 65 -0.094390 hybrid +137_1-9 Q0 MARCO_54_1564745261-2 66 -0.095863 hybrid +137_1-9 Q0 MARCO_46_1439176350-4 67 -0.097424 hybrid +137_1-9 Q0 MARCO_46_1391297356-5 68 -0.098725 hybrid +137_1-9 Q0 MARCO_05_488432989-14 69 -0.104032 hybrid +137_1-9 Q0 KILT_32818732-3 70 -0.104159 hybrid +137_1-9 Q0 MARCO_23_293448858-2 71 -0.104331 hybrid +137_1-9 Q0 MARCO_24_118787-4 72 -0.105716 hybrid +137_1-9 Q0 MARCO_46_1391747265-3 73 -0.106061 hybrid +137_1-9 Q0 MARCO_11_775697956-8 74 -0.106160 hybrid +137_1-9 Q0 MARCO_48_1895824261-4 75 -0.109867 hybrid +137_1-9 Q0 MARCO_16_1684454089-32 76 -0.110202 hybrid +137_1-9 Q0 MARCO_46_1524394101-6 77 -0.111647 hybrid +137_1-9 Q0 KILT_219358-5 78 -0.113743 hybrid +137_1-9 Q0 MARCO_01_693813107-2 79 -0.116157 hybrid +137_1-9 Q0 MARCO_24_138783480-6 80 -0.116950 hybrid +137_1-9 Q0 MARCO_48_830564436-4 81 -0.119216 hybrid +137_1-9 Q0 MARCO_43_1248151085-9 82 -0.120432 hybrid +137_1-9 Q0 MARCO_01_693129166-2 83 -0.121693 hybrid +137_1-9 Q0 MARCO_54_1564734005-1 84 -0.124431 hybrid +137_1-9 Q0 MARCO_07_1581127088-14 85 -0.126835 hybrid +137_1-9 Q0 MARCO_17_2909080088-30 86 -0.129883 hybrid +137_1-9 Q0 MARCO_47_13975024-3 87 -0.130753 hybrid +137_1-9 Q0 MARCO_37_714986268-3 88 -0.130806 hybrid +137_1-9 Q0 MARCO_32_43063415-43 89 -0.131257 hybrid +137_1-9 Q0 MARCO_47_420531451-11 90 -0.133259 hybrid +137_1-9 Q0 MARCO_44_34026219-11 91 -0.133375 hybrid +137_1-9 Q0 MARCO_17_1677620653-26 92 -0.133960 hybrid +137_1-9 Q0 MARCO_46_1512601102-4 93 -0.134531 hybrid +137_1-9 Q0 MARCO_37_698202220-1 94 -0.137702 hybrid +137_1-9 Q0 MARCO_17_2985319702-44 95 -0.138157 hybrid +137_1-9 Q0 MARCO_43_1238091132-9 96 -0.138294 hybrid +137_1-9 Q0 MARCO_25_1428379061-11 97 -0.140032 hybrid +137_1-9 Q0 MARCO_54_1564493638-2 98 -0.140853 hybrid +137_1-9 Q0 MARCO_25_1425575306-1 99 -0.141064 hybrid +137_1-9 Q0 MARCO_16_1685676070-7 100 -0.141173 hybrid +138_1-1 Q0 MARCO_56_500511523-4 1 0.500000 hybrid +138_1-1 Q0 MARCO_41_2135663326-2 2 0.471369 hybrid +138_1-1 Q0 MARCO_14_43917945-3 3 0.439340 hybrid +138_1-1 Q0 MARCO_29_778684157-1 4 0.439316 hybrid +138_1-1 Q0 MARCO_14_43917945-5 5 0.433116 hybrid +138_1-1 Q0 MARCO_32_1011596696-4 6 0.416635 hybrid +138_1-1 Q0 MARCO_59_441044989-4 7 0.373795 hybrid +138_1-1 Q0 MARCO_31_942788861-12 8 0.365894 hybrid +138_1-1 Q0 MARCO_14_43649755-2 9 0.363358 hybrid +138_1-1 Q0 MARCO_47_1308048954-6 10 0.252932 hybrid +138_1-1 Q0 MARCO_14_43917945-14 11 0.237059 hybrid +138_1-1 Q0 MARCO_56_500511523-2 12 0.216954 hybrid +138_1-1 Q0 MARCO_12_1728719434-11 13 0.207599 hybrid +138_1-1 Q0 MARCO_50_1662318356-8 14 0.206326 hybrid +138_1-1 Q0 MARCO_32_884498271-10 15 0.194944 hybrid +138_1-1 Q0 MARCO_50_517985630-11 16 0.192151 hybrid +138_1-1 Q0 MARCO_08_1119902178-11 17 0.191613 hybrid +138_1-1 Q0 MARCO_37_376061342-30 18 0.190975 hybrid +138_1-1 Q0 MARCO_46_1312513063-5 19 0.183364 hybrid +138_1-1 Q0 MARCO_56_500511523-5 20 0.177471 hybrid +138_1-1 Q0 MARCO_13_454744502-1 21 0.168267 hybrid +138_1-1 Q0 MARCO_56_500502618-3 22 0.159033 hybrid +138_1-1 Q0 MARCO_14_43917945-4 23 0.158294 hybrid +138_1-1 Q0 MARCO_52_1204662779-4 24 0.155822 hybrid +138_1-1 Q0 MARCO_00_1007620636-34 25 0.148920 hybrid +138_1-1 Q0 MARCO_46_1312509993-2 26 0.144901 hybrid +138_1-1 Q0 MARCO_02_1124710190-13 27 0.136121 hybrid +138_1-1 Q0 MARCO_38_1389712959-2 28 0.125714 hybrid +138_1-1 Q0 MARCO_56_500502618-2 29 0.125641 hybrid +138_1-1 Q0 MARCO_14_43917945-7 30 0.119123 hybrid +138_1-1 Q0 MARCO_26_729899077-1 31 0.107262 hybrid +138_1-1 Q0 MARCO_56_500469135-6 32 0.105772 hybrid +138_1-1 Q0 MARCO_42_607843446-7 33 0.096511 hybrid +138_1-1 Q0 MARCO_56_500511523-1 34 0.092349 hybrid +138_1-1 Q0 MARCO_50_496596490-6 35 0.087431 hybrid +138_1-1 Q0 MARCO_29_778684157-5 36 0.085456 hybrid +138_1-1 Q0 MARCO_40_173310558-11 37 0.084641 hybrid +138_1-1 Q0 MARCO_11_711052295-6 38 0.070469 hybrid +138_1-1 Q0 MARCO_50_493672960-1 39 0.058178 hybrid +138_1-1 Q0 MARCO_14_43917945-1 40 0.053755 hybrid +138_1-1 Q0 MARCO_14_43917945-9 41 0.050267 hybrid +138_1-1 Q0 MARCO_45_978515060-9 42 0.042633 hybrid +138_1-1 Q0 MARCO_26_729899077-10 43 0.040478 hybrid +138_1-1 Q0 MARCO_30_1778737021-3 44 0.035022 hybrid +138_1-1 Q0 MARCO_13_454744502-2 45 0.034708 hybrid +138_1-1 Q0 MARCO_29_777369619-213 46 0.031130 hybrid +138_1-1 Q0 MARCO_00_896694712-2 47 0.028327 hybrid +138_1-1 Q0 MARCO_36_566975496-3 48 0.027656 hybrid +138_1-1 Q0 MARCO_12_1728719434-10 49 0.026837 hybrid +138_1-1 Q0 MARCO_31_942788861-59 50 0.024843 hybrid +138_1-1 Q0 MARCO_31_942788861-9 51 0.013911 hybrid +138_1-1 Q0 MARCO_49_1828062049-3 52 0.012608 hybrid +138_1-1 Q0 MARCO_37_376061342-29 53 0.007611 hybrid +138_1-1 Q0 MARCO_06_744173091-2 54 0.007601 hybrid +138_1-1 Q0 MARCO_11_598124821-2 55 0.006414 hybrid +138_1-1 Q0 MARCO_50_515798832-1 56 0.004260 hybrid +138_1-1 Q0 MARCO_12_1728941334-8 57 0.001166 hybrid +138_1-1 Q0 MARCO_11_711608682-11 58 -0.005085 hybrid +138_1-1 Q0 MARCO_25_1408335167-6 59 -0.007223 hybrid +138_1-1 Q0 MARCO_00_1007620636-33 60 -0.007898 hybrid +138_1-1 Q0 MARCO_59_441044989-1 61 -0.009007 hybrid +138_1-1 Q0 MARCO_32_884446280-7 62 -0.010183 hybrid +138_1-1 Q0 MARCO_06_1525186170-6 63 -0.015091 hybrid +138_1-1 Q0 MARCO_40_176235281-3 64 -0.016357 hybrid +138_1-1 Q0 MARCO_40_173382525-4 65 -0.016648 hybrid +138_1-1 Q0 MARCO_50_1662318356-7 66 -0.020069 hybrid +138_1-1 Q0 MARCO_52_359397936-1 67 -0.023045 hybrid +138_1-1 Q0 MARCO_38_1389705754-2 68 -0.025267 hybrid +138_1-1 Q0 MARCO_46_1312513063-2 69 -0.027048 hybrid +138_1-1 Q0 MARCO_26_108424847-4 70 -0.028511 hybrid +138_1-1 Q0 MARCO_02_1741589316-1 71 -0.034191 hybrid +138_1-1 Q0 MARCO_14_43917945-11 72 -0.036262 hybrid +138_1-1 Q0 MARCO_26_1061110328-3 73 -0.037000 hybrid +138_1-1 Q0 MARCO_31_942788861-46 74 -0.038317 hybrid +138_1-1 Q0 MARCO_31_942788861-47 75 -0.044785 hybrid +138_1-1 Q0 MARCO_04_824635141-11 76 -0.047173 hybrid +138_1-1 Q0 MARCO_50_1672459338-16 77 -0.048152 hybrid +138_1-1 Q0 MARCO_49_579650135-21 78 -0.051309 hybrid +138_1-1 Q0 MARCO_31_942788861-60 79 -0.053097 hybrid +138_1-1 Q0 MARCO_32_598519088-4 80 -0.054029 hybrid +138_1-1 Q0 MARCO_45_979353361-14 81 -0.054430 hybrid +138_1-1 Q0 MARCO_29_661253184-3 82 -0.054597 hybrid +138_1-1 Q0 MARCO_30_1778349604-2 83 -0.059474 hybrid +138_1-1 Q0 MARCO_29_661253184-2 84 -0.061689 hybrid +138_1-1 Q0 MARCO_25_1408335167-7 85 -0.063069 hybrid +138_1-1 Q0 MARCO_22_1579067158-1 86 -0.063096 hybrid +138_1-1 Q0 MARCO_59_441044989-6 87 -0.071071 hybrid +138_1-1 Q0 MARCO_46_383308271-3 88 -0.072788 hybrid +138_1-1 Q0 MARCO_50_1407488405-13 89 -0.076142 hybrid +138_1-1 Q0 MARCO_41_1819551405-3 90 -0.081778 hybrid +138_1-1 Q0 MARCO_13_454156686-2 91 -0.086382 hybrid +138_1-1 Q0 MARCO_26_729899077-5 92 -0.087314 hybrid +138_1-1 Q0 MARCO_40_176217149-12 93 -0.090438 hybrid +138_1-1 Q0 MARCO_25_1161421149-2 94 -0.090638 hybrid +138_1-1 Q0 MARCO_45_979680455-25 95 -0.091343 hybrid +138_1-1 Q0 MARCO_40_173214939-9 96 -0.093191 hybrid +138_1-1 Q0 MARCO_29_777090133-2 97 -0.094093 hybrid +138_1-1 Q0 MARCO_46_380252387-4 98 -0.095619 hybrid +138_1-1 Q0 MARCO_59_881735959-3 99 -0.098068 hybrid +138_1-1 Q0 MARCO_00_896694712-3 100 -0.099294 hybrid +138_1-11 Q0 MARCO_27_209201400-12 1 0.500000 hybrid +138_1-11 Q0 MARCO_23_941472041-2 2 0.277741 hybrid +138_1-11 Q0 MARCO_28_654158755-5 3 0.274921 hybrid +138_1-11 Q0 MARCO_32_1011502166-3 4 0.264579 hybrid +138_1-11 Q0 MARCO_28_654637213-2 5 0.244405 hybrid +138_1-11 Q0 MARCO_28_1800800953-3 6 0.233381 hybrid +138_1-11 Q0 MARCO_29_1012156509-3 7 0.199046 hybrid +138_1-11 Q0 MARCO_28_654440355-4 8 0.198452 hybrid +138_1-11 Q0 MARCO_50_482140980-8 9 0.183302 hybrid +138_1-11 Q0 MARCO_41_1139497713-15 10 0.182765 hybrid +138_1-11 Q0 MARCO_28_654440355-2 11 0.173784 hybrid +138_1-11 Q0 MARCO_14_477904447-8 12 0.128886 hybrid +138_1-11 Q0 MARCO_23_941472041-3 13 0.128026 hybrid +138_1-11 Q0 MARCO_14_41589459-3 14 0.120348 hybrid +138_1-11 Q0 MARCO_32_1011502166-2 15 0.114633 hybrid +138_1-11 Q0 MARCO_32_105822800-3 16 0.096775 hybrid +138_1-11 Q0 MARCO_29_1330563196-10 17 0.094474 hybrid +138_1-11 Q0 MARCO_28_654637213-9 18 0.083391 hybrid +138_1-11 Q0 MARCO_29_667707520-4 19 0.082053 hybrid +138_1-11 Q0 MARCO_24_1556105613-11 20 0.076598 hybrid +138_1-11 Q0 MARCO_28_654409296-9 21 0.072718 hybrid +138_1-11 Q0 MARCO_28_654332491-1 22 0.067854 hybrid +138_1-11 Q0 MARCO_41_2116155704-56 23 0.066587 hybrid +138_1-11 Q0 MARCO_00_766909659-3 24 0.050769 hybrid +138_1-11 Q0 MARCO_28_654499542-3 25 0.046443 hybrid +138_1-11 Q0 MARCO_32_154714576-3 26 0.042057 hybrid +138_1-11 Q0 MARCO_42_1100840203-5 27 0.036588 hybrid +138_1-11 Q0 MARCO_43_328307775-3 28 0.028398 hybrid +138_1-11 Q0 MARCO_14_41589459-2 29 0.023514 hybrid +138_1-11 Q0 MARCO_39_806877993-3 30 0.013585 hybrid +138_1-11 Q0 MARCO_42_1100840203-16 31 0.006541 hybrid +138_1-11 Q0 MARCO_28_654158755-12 32 0.006314 hybrid +138_1-11 Q0 MARCO_28_654144345-11 33 0.005399 hybrid +138_1-11 Q0 MARCO_54_1567013267-9 34 0.003757 hybrid +138_1-11 Q0 MARCO_31_1848573926-2 35 0.003269 hybrid +138_1-11 Q0 MARCO_25_1437816000-8 36 -0.003325 hybrid +138_1-11 Q0 MARCO_28_1800800953-2 37 -0.011958 hybrid +138_1-11 Q0 MARCO_45_1019140464-5 38 -0.012664 hybrid +138_1-11 Q0 MARCO_28_654637213-6 39 -0.013136 hybrid +138_1-11 Q0 MARCO_23_244603153-6 40 -0.013857 hybrid +138_1-11 Q0 MARCO_51_1236418175-2 41 -0.021429 hybrid +138_1-11 Q0 MARCO_28_654553967-1 42 -0.026154 hybrid +138_1-11 Q0 MARCO_34_1354468568-6 43 -0.031653 hybrid +138_1-11 Q0 MARCO_28_654409296-5 44 -0.032173 hybrid +138_1-11 Q0 MARCO_39_806877993-5 45 -0.033460 hybrid +138_1-11 Q0 MARCO_52_1377875525-3 46 -0.033971 hybrid +138_1-11 Q0 MARCO_28_1800800953-4 47 -0.034727 hybrid +138_1-11 Q0 MARCO_37_1256124435-9 48 -0.040146 hybrid +138_1-11 Q0 MARCO_53_1046779314-2 49 -0.041812 hybrid +138_1-11 Q0 MARCO_24_1555235069-4 50 -0.044251 hybrid +138_1-11 Q0 MARCO_28_478576778-3 51 -0.049225 hybrid +138_1-11 Q0 MARCO_53_87717652-3 52 -0.050028 hybrid +138_1-11 Q0 MARCO_28_654533181-16 53 -0.053658 hybrid +138_1-11 Q0 MARCO_29_1330563196-4 54 -0.056451 hybrid +138_1-11 Q0 MARCO_42_1100840203-6 55 -0.059992 hybrid +138_1-11 Q0 MARCO_28_964979199-3 56 -0.061354 hybrid +138_1-11 Q0 MARCO_50_526120377-7 57 -0.062488 hybrid +138_1-11 Q0 MARCO_31_903613291-6 58 -0.064103 hybrid +138_1-11 Q0 MARCO_38_851563418-25 59 -0.068450 hybrid +138_1-11 Q0 MARCO_56_1048981772-5 60 -0.068920 hybrid +138_1-11 Q0 MARCO_28_654332491-6 61 -0.070302 hybrid +138_1-11 Q0 MARCO_25_1437816000-7 62 -0.089628 hybrid +138_1-11 Q0 MARCO_10_714838350-8 63 -0.096317 hybrid +138_1-11 Q0 MARCO_42_331919034-8 64 -0.105593 hybrid +138_1-11 Q0 MARCO_25_1437859874-6 65 -0.106984 hybrid +138_1-11 Q0 MARCO_29_1018377497-7 66 -0.112271 hybrid +138_1-11 Q0 MARCO_28_654637213-1 67 -0.113756 hybrid +138_1-11 Q0 MARCO_50_527085264-6 68 -0.115000 hybrid +138_1-11 Q0 MARCO_28_654637213-20 69 -0.115971 hybrid +138_1-11 Q0 MARCO_50_515023464-5 70 -0.116089 hybrid +138_1-11 Q0 MARCO_32_1012576074-3 71 -0.116128 hybrid +138_1-11 Q0 MARCO_50_527085264-5 72 -0.118304 hybrid +138_1-11 Q0 MARCO_32_154714576-4 73 -0.118930 hybrid +138_1-11 Q0 MARCO_24_1442226927-2 74 -0.119979 hybrid +138_1-11 Q0 MARCO_43_330810268-3 75 -0.122489 hybrid +138_1-11 Q0 MARCO_50_514632613-7 76 -0.122997 hybrid +138_1-11 Q0 MARCO_31_903613291-8 77 -0.123254 hybrid +138_1-11 Q0 MARCO_14_477904447-5 78 -0.126375 hybrid +138_1-11 Q0 MARCO_50_525797022-24 79 -0.129081 hybrid +138_1-11 Q0 MARCO_42_332101266-10 80 -0.132704 hybrid +138_1-11 Q0 MARCO_22_1642775983-9 81 -0.136236 hybrid +138_1-11 Q0 MARCO_11_604888406-10 82 -0.138537 hybrid +138_1-11 Q0 MARCO_29_1011370294-7 83 -0.139541 hybrid +138_1-11 Q0 MARCO_22_392396914-4 84 -0.140330 hybrid +138_1-11 Q0 MARCO_20_658782296-8 85 -0.141189 hybrid +138_1-11 Q0 MARCO_32_105822800-2 86 -0.142214 hybrid +138_1-11 Q0 MARCO_23_244603153-2 87 -0.143336 hybrid +138_1-11 Q0 MARCO_28_654210116-12 88 -0.143433 hybrid +138_1-11 Q0 MARCO_44_1489332844-3 89 -0.145350 hybrid +138_1-11 Q0 MARCO_50_527085264-4 90 -0.147447 hybrid +138_1-11 Q0 MARCO_50_496533800-3 91 -0.148103 hybrid +138_1-11 Q0 MARCO_51_1636971484-5 92 -0.149567 hybrid +138_1-11 Q0 MARCO_29_667707520-3 93 -0.151957 hybrid +138_1-11 Q0 MARCO_28_964979199-2 94 -0.154083 hybrid +138_1-11 Q0 MARCO_12_1170150869-3 95 -0.154160 hybrid +138_1-11 Q0 MARCO_28_654440355-5 96 -0.157807 hybrid +138_1-11 Q0 MARCO_32_154714576-5 97 -0.159567 hybrid +138_1-11 Q0 MARCO_21_1459182292-10 98 -0.159679 hybrid +138_1-11 Q0 MARCO_22_1642724734-9 99 -0.161008 hybrid +138_1-11 Q0 MARCO_15_1981497824-6 100 -0.162296 hybrid +138_1-3 Q0 MARCO_31_887761133-9 1 0.499997 hybrid +138_1-3 Q0 MARCO_07_830779952-37 2 0.407946 hybrid +138_1-3 Q0 MARCO_37_1260056150-12 3 0.377874 hybrid +138_1-3 Q0 MARCO_55_1282987500-8 4 0.371335 hybrid +138_1-3 Q0 MARCO_50_483311372-3 5 0.353020 hybrid +138_1-3 Q0 MARCO_31_887761133-8 6 0.336024 hybrid +138_1-3 Q0 MARCO_10_1148119513-17 7 0.334026 hybrid +138_1-3 Q0 MARCO_50_495124295-17 8 0.279304 hybrid +138_1-3 Q0 MARCO_50_483311372-2 9 0.274819 hybrid +138_1-3 Q0 MARCO_50_489093872-5 10 0.232644 hybrid +138_1-3 Q0 MARCO_57_1974826042-7 11 0.223180 hybrid +138_1-3 Q0 MARCO_30_1654855553-6 12 0.204518 hybrid +138_1-3 Q0 MARCO_14_41589459-3 13 0.199091 hybrid +138_1-3 Q0 MARCO_56_500511523-3 14 0.197057 hybrid +138_1-3 Q0 MARCO_50_517864336-8 15 0.183823 hybrid +138_1-3 Q0 MARCO_50_496161916-7 16 0.180357 hybrid +138_1-3 Q0 MARCO_40_174176965-3 17 0.179782 hybrid +138_1-3 Q0 MARCO_27_209201400-12 18 0.177677 hybrid +138_1-3 Q0 MARCO_50_515023464-5 19 0.175812 hybrid +138_1-3 Q0 MARCO_50_483311372-1 20 0.165176 hybrid +138_1-3 Q0 MARCO_14_43888258-8 21 0.161130 hybrid +138_1-3 Q0 MARCO_05_1351999581-1 22 0.130176 hybrid +138_1-3 Q0 MARCO_05_426242666-81 23 0.125610 hybrid +138_1-3 Q0 KILT_36087839-42 24 0.124330 hybrid +138_1-3 Q0 MARCO_49_1827657692-6 25 0.115677 hybrid +138_1-3 Q0 MARCO_43_331335225-3 26 0.114311 hybrid +138_1-3 Q0 MARCO_41_915540927-4 27 0.113827 hybrid +138_1-3 Q0 MARCO_10_974283083-23 28 0.111203 hybrid +138_1-3 Q0 MARCO_26_1061184609-4 29 0.108099 hybrid +138_1-3 Q0 MARCO_29_1012343485-4 30 0.102045 hybrid +138_1-3 Q0 MARCO_55_1130753370-2 31 0.100786 hybrid +138_1-3 Q0 KILT_36087839-13 32 0.100644 hybrid +138_1-3 Q0 MARCO_21_1459182292-10 33 0.093901 hybrid +138_1-3 Q0 MARCO_41_1139497713-15 34 0.088612 hybrid +138_1-3 Q0 MARCO_12_1728999818-8 35 0.078639 hybrid +138_1-3 Q0 MARCO_50_1451252251-6 36 0.076809 hybrid +138_1-3 Q0 MARCO_37_1260056150-13 37 0.075566 hybrid +138_1-3 Q0 MARCO_50_527166296-1 38 0.074113 hybrid +138_1-3 Q0 MARCO_12_1728921831-10 39 0.072350 hybrid +138_1-3 Q0 MARCO_10_974283083-20 40 0.070979 hybrid +138_1-3 Q0 MARCO_50_520891789-10 41 0.068839 hybrid +138_1-3 Q0 MARCO_21_1145896799-2 42 0.065755 hybrid +138_1-3 Q0 MARCO_24_1556015782-7 43 0.061877 hybrid +138_1-3 Q0 MARCO_59_361566758-2 44 0.054182 hybrid +138_1-3 Q0 MARCO_31_1849144541-9 45 0.047532 hybrid +138_1-3 Q0 MARCO_55_1130759472-2 46 0.047216 hybrid +138_1-3 Q0 MARCO_39_1739960758-5 47 0.044377 hybrid +138_1-3 Q0 MARCO_32_1012536769-6 48 0.043913 hybrid +138_1-3 Q0 MARCO_40_174176965-4 49 0.040020 hybrid +138_1-3 Q0 MARCO_30_95001091-313 50 0.039765 hybrid +138_1-3 Q0 MARCO_10_974283083-24 51 0.039026 hybrid +138_1-3 Q0 MARCO_10_974283083-7 52 0.038364 hybrid +138_1-3 Q0 MARCO_54_1567013267-9 53 0.037553 hybrid +138_1-3 Q0 MARCO_14_41589459-2 54 0.037029 hybrid +138_1-3 Q0 MARCO_20_1592987465-2 55 0.031683 hybrid +138_1-3 Q0 MARCO_12_1728705765-4 56 0.030149 hybrid +138_1-3 Q0 KILT_36087839-18 57 0.027117 hybrid +138_1-3 Q0 MARCO_50_2490897344-22 58 0.024059 hybrid +138_1-3 Q0 MARCO_50_487999475-8 59 0.021918 hybrid +138_1-3 Q0 MARCO_41_1235327904-20 60 0.020339 hybrid +138_1-3 Q0 MARCO_50_517564079-13 61 0.018866 hybrid +138_1-3 Q0 MARCO_55_816954379-8 62 0.012108 hybrid +138_1-3 Q0 MARCO_41_1143131472-75 63 0.006141 hybrid +138_1-3 Q0 MARCO_20_1580770283-3 64 0.005040 hybrid +138_1-3 Q0 MARCO_31_887761133-12 65 -0.000036 hybrid +138_1-3 Q0 MARCO_29_1330591149-4 66 -0.000076 hybrid +138_1-3 Q0 MARCO_22_1311966398-2 67 -0.000586 hybrid +138_1-3 Q0 MARCO_50_525797022-22 68 -0.004423 hybrid +138_1-3 Q0 MARCO_29_1011370294-9 69 -0.006019 hybrid +138_1-3 Q0 MARCO_50_493199442-4 70 -0.008220 hybrid +138_1-3 Q0 MARCO_00_1007328358-2 71 -0.009270 hybrid +138_1-3 Q0 MARCO_13_454795828-3 72 -0.009300 hybrid +138_1-3 Q0 MARCO_08_823707739-11 73 -0.009438 hybrid +138_1-3 Q0 MARCO_39_654663506-27 74 -0.010967 hybrid +138_1-3 Q0 MARCO_14_43917945-14 75 -0.011227 hybrid +138_1-3 Q0 MARCO_50_517366289-2 76 -0.016129 hybrid +138_1-3 Q0 MARCO_30_1654876425-6 77 -0.016807 hybrid +138_1-3 Q0 MARCO_18_2722026935-13 78 -0.017021 hybrid +138_1-3 Q0 MARCO_50_526133332-3 79 -0.019340 hybrid +138_1-3 Q0 KILT_2466490-12 80 -0.022938 hybrid +138_1-3 Q0 MARCO_32_884498271-10 81 -0.025231 hybrid +138_1-3 Q0 MARCO_04_1047958822-39 82 -0.026541 hybrid +138_1-3 Q0 MARCO_40_172573076-8 83 -0.029700 hybrid +138_1-3 Q0 MARCO_50_1672932858-17 84 -0.030286 hybrid +138_1-3 Q0 MARCO_50_1668364819-13 85 -0.030286 hybrid +138_1-3 Q0 MARCO_31_942644332-23 86 -0.032926 hybrid +138_1-3 Q0 MARCO_50_519025636-14 87 -0.034236 hybrid +138_1-3 Q0 MARCO_10_985835381-36 88 -0.041982 hybrid +138_1-3 Q0 MARCO_50_517564079-7 89 -0.050085 hybrid +138_1-3 Q0 MARCO_41_2033456140-2 90 -0.050559 hybrid +138_1-3 Q0 MARCO_50_525899611-7 91 -0.056226 hybrid +138_1-3 Q0 MARCO_50_483311372-6 92 -0.057490 hybrid +138_1-3 Q0 MARCO_50_494919994-6 93 -0.058218 hybrid +138_1-3 Q0 MARCO_57_1974826042-14 94 -0.059660 hybrid +138_1-3 Q0 MARCO_50_493199442-5 95 -0.062840 hybrid +138_1-3 Q0 MARCO_04_1288066023-4 96 -0.062927 hybrid +138_1-3 Q0 MARCO_40_172885198-4 97 -0.064196 hybrid +138_1-3 Q0 MARCO_51_1707123404-44 98 -0.065113 hybrid +138_1-3 Q0 MARCO_18_2722026935-4 99 -0.070979 hybrid +138_1-3 Q0 MARCO_10_974283083-6 100 -0.071728 hybrid +138_1-5 Q0 MARCO_44_2039394143-2 1 0.500000 hybrid +138_1-5 Q0 MARCO_29_667707520-4 2 0.493287 hybrid +138_1-5 Q0 MARCO_31_942738837-21 3 0.360052 hybrid +138_1-5 Q0 MARCO_29_661208277-1 4 0.296379 hybrid +138_1-5 Q0 MARCO_29_1011577571-1 5 0.274578 hybrid +138_1-5 Q0 MARCO_44_2039387097-2 6 0.228842 hybrid +138_1-5 Q0 MARCO_37_1257999305-12 7 0.215525 hybrid +138_1-5 Q0 MARCO_32_884498271-7 8 0.186197 hybrid +138_1-5 Q0 MARCO_31_942738837-4 9 0.173994 hybrid +138_1-5 Q0 MARCO_29_661208277-5 10 0.170119 hybrid +138_1-5 Q0 MARCO_31_942738837-9 11 0.163695 hybrid +138_1-5 Q0 MARCO_50_527133953-5 12 0.159311 hybrid +138_1-5 Q0 MARCO_31_942738837-3 13 0.157796 hybrid +138_1-5 Q0 MARCO_31_942689190-16 14 0.153884 hybrid +138_1-5 Q0 MARCO_44_2039332419-2 15 0.138227 hybrid +138_1-5 Q0 MARCO_31_942738837-24 16 0.127141 hybrid +138_1-5 Q0 MARCO_31_942738837-16 17 0.126045 hybrid +138_1-5 Q0 MARCO_56_500542568-6 18 0.122423 hybrid +138_1-5 Q0 MARCO_36_816020769-13 19 0.116936 hybrid +138_1-5 Q0 MARCO_12_1728705765-4 20 0.115893 hybrid +138_1-5 Q0 MARCO_44_2039394143-1 21 0.115027 hybrid +138_1-5 Q0 MARCO_57_868274246-2 22 0.106086 hybrid +138_1-5 Q0 MARCO_56_502095733-4 23 0.101409 hybrid +138_1-5 Q0 MARCO_31_942738837-20 24 0.098120 hybrid +138_1-5 Q0 KILT_232495-26 25 0.091568 hybrid +138_1-5 Q0 MARCO_21_1459182292-10 26 0.091238 hybrid +138_1-5 Q0 MARCO_20_1576403404-7 27 0.069910 hybrid +138_1-5 Q0 MARCO_23_938301032-3 28 0.069276 hybrid +138_1-5 Q0 MARCO_25_1161441026-2 29 0.066576 hybrid +138_1-5 Q0 MARCO_41_2026616452-4 30 0.065612 hybrid +138_1-5 Q0 MARCO_56_502095733-1 31 0.065102 hybrid +138_1-5 Q0 MARCO_49_926269199-4 32 0.064937 hybrid +138_1-5 Q0 MARCO_29_661208277-3 33 0.063812 hybrid +138_1-5 Q0 MARCO_56_504074886-3 34 0.060786 hybrid +138_1-5 Q0 MARCO_29_778035964-16 35 0.055456 hybrid +138_1-5 Q0 MARCO_56_502589189-2 36 0.048725 hybrid +138_1-5 Q0 MARCO_15_102310480-3 37 0.048597 hybrid +138_1-5 Q0 MARCO_31_942644332-6 38 0.045870 hybrid +138_1-5 Q0 MARCO_56_502328967-3 39 0.043538 hybrid +138_1-5 Q0 MARCO_31_942644332-4 40 0.035276 hybrid +138_1-5 Q0 MARCO_29_661208277-4 41 0.033963 hybrid +138_1-5 Q0 MARCO_31_942689190-24 42 0.026534 hybrid +138_1-5 Q0 MARCO_50_1672271127-16 43 0.025221 hybrid +138_1-5 Q0 MARCO_56_502484882-7 44 0.023413 hybrid +138_1-5 Q0 MARCO_47_1305953651-9 45 0.019821 hybrid +138_1-5 Q0 MARCO_46_1381431573-3 46 0.014199 hybrid +138_1-5 Q0 MARCO_42_1848880569-4 47 0.003514 hybrid +138_1-5 Q0 MARCO_15_1533111311-2 48 0.000608 hybrid +138_1-5 Q0 MARCO_32_884498271-5 49 -0.007051 hybrid +138_1-5 Q0 MARCO_50_2746525611-6 50 -0.011814 hybrid +138_1-5 Q0 MARCO_50_517441389-2 51 -0.014428 hybrid +138_1-5 Q0 MARCO_35_803008467-2 52 -0.017012 hybrid +138_1-5 Q0 MARCO_33_352527427-4 53 -0.019116 hybrid +138_1-5 Q0 MARCO_13_25041682-1 54 -0.022517 hybrid +138_1-5 Q0 MARCO_50_2490897344-19 55 -0.024193 hybrid +138_1-5 Q0 MARCO_33_352527427-2 56 -0.027625 hybrid +138_1-5 Q0 MARCO_44_114654264-3 57 -0.032459 hybrid +138_1-5 Q0 MARCO_44_2039394143-4 58 -0.034451 hybrid +138_1-5 Q0 MARCO_41_913055597-2 59 -0.034582 hybrid +138_1-5 Q0 MARCO_03_1219107992-6 60 -0.035760 hybrid +138_1-5 Q0 MARCO_06_337844782-3 61 -0.035812 hybrid +138_1-5 Q0 MARCO_29_662261763-3 62 -0.040234 hybrid +138_1-5 Q0 MARCO_20_1107533342-3 63 -0.040988 hybrid +138_1-5 Q0 MARCO_29_777318224-3 64 -0.045057 hybrid +138_1-5 Q0 MARCO_39_654663506-8 65 -0.045139 hybrid +138_1-5 Q0 MARCO_35_803008467-3 66 -0.047993 hybrid +138_1-5 Q0 MARCO_44_2039394143-3 67 -0.048004 hybrid +138_1-5 Q0 MARCO_14_43558464-12 68 -0.048875 hybrid +138_1-5 Q0 MARCO_44_1689308501-2 69 -0.048961 hybrid +138_1-5 Q0 MARCO_59_361577314-4 70 -0.052621 hybrid +138_1-5 Q0 MARCO_52_1143887618-6 71 -0.055186 hybrid +138_1-5 Q0 MARCO_23_895759533-3 72 -0.056585 hybrid +138_1-5 Q0 MARCO_31_942689190-9 73 -0.057358 hybrid +138_1-5 Q0 MARCO_13_453761208-1 74 -0.061431 hybrid +138_1-5 Q0 MARCO_44_114654264-1 75 -0.063400 hybrid +138_1-5 Q0 MARCO_28_654176775-7 76 -0.066242 hybrid +138_1-5 Q0 MARCO_37_1260056150-8 77 -0.070765 hybrid +138_1-5 Q0 MARCO_51_1238079113-41 78 -0.076541 hybrid +138_1-5 Q0 MARCO_32_451315846-3 79 -0.082508 hybrid +138_1-5 Q0 MARCO_16_1737617777-20 80 -0.083291 hybrid +138_1-5 Q0 MARCO_42_609226284-3 81 -0.085958 hybrid +138_1-5 Q0 MARCO_31_942738837-17 82 -0.088088 hybrid +138_1-5 Q0 MARCO_56_501083196-5 83 -0.089277 hybrid +138_1-5 Q0 MARCO_50_489093872-5 84 -0.089438 hybrid +138_1-5 Q0 MARCO_56_500362543-1 85 -0.092094 hybrid +138_1-5 Q0 MARCO_31_903613291-4 86 -0.092581 hybrid +138_1-5 Q0 MARCO_46_1312473550-1 87 -0.097273 hybrid +138_1-5 Q0 MARCO_31_942414313-27 88 -0.098582 hybrid +138_1-5 Q0 MARCO_31_942644332-11 89 -0.101533 hybrid +138_1-5 Q0 MARCO_44_2039342184-5 90 -0.102039 hybrid +138_1-5 Q0 MARCO_42_331919034-13 91 -0.103776 hybrid +138_1-5 Q0 MARCO_55_682057717-2 92 -0.105223 hybrid +138_1-5 Q0 MARCO_10_715550279-5 93 -0.106686 hybrid +138_1-5 Q0 MARCO_14_41589459-2 94 -0.107699 hybrid +138_1-5 Q0 MARCO_25_1166994610-2 95 -0.108006 hybrid +138_1-5 Q0 MARCO_56_502946645-1 96 -0.109705 hybrid +138_1-5 Q0 MARCO_00_922679753-2 97 -0.111127 hybrid +138_1-5 Q0 MARCO_24_1726006065-9 98 -0.111472 hybrid +138_1-5 Q0 MARCO_50_518027633-6 99 -0.113827 hybrid +138_1-5 Q0 MARCO_36_816020769-12 100 -0.116437 hybrid +138_1-7 Q0 MARCO_32_262190801-3 1 0.500002 hybrid +138_1-7 Q0 MARCO_21_1206903334-2 2 0.332469 hybrid +138_1-7 Q0 MARCO_28_527557572-9 3 0.325760 hybrid +138_1-7 Q0 MARCO_00_801665392-4 4 0.322976 hybrid +138_1-7 Q0 MARCO_29_663589805-3 5 0.311815 hybrid +138_1-7 Q0 MARCO_41_1178130635-11 6 0.254917 hybrid +138_1-7 Q0 MARCO_50_2398856032-12 7 0.252365 hybrid +138_1-7 Q0 MARCO_42_607879806-2 8 0.182354 hybrid +138_1-7 Q0 MARCO_41_1382413540-47 9 0.138254 hybrid +138_1-7 Q0 MARCO_58_282083931-32 10 0.129523 hybrid +138_1-7 Q0 MARCO_43_328307775-3 11 0.122162 hybrid +138_1-7 Q0 MARCO_07_798318781-4 12 0.118409 hybrid +138_1-7 Q0 MARCO_50_2398856032-41 13 0.116464 hybrid +138_1-7 Q0 MARCO_46_1309517252-3 14 0.115690 hybrid +138_1-7 Q0 MARCO_10_715405810-4 15 0.114353 hybrid +138_1-7 Q0 MARCO_22_1579067158-15 16 0.113357 hybrid +138_1-7 Q0 MARCO_21_1216763189-15 17 0.105591 hybrid +138_1-7 Q0 MARCO_50_2398856032-56 18 0.103075 hybrid +138_1-7 Q0 MARCO_50_1414049353-22 19 0.078948 hybrid +138_1-7 Q0 MARCO_50_1419345210-25 20 0.074554 hybrid +138_1-7 Q0 MARCO_50_1171731936-9 21 0.056937 hybrid +138_1-7 Q0 MARCO_45_1251107320-3 22 0.056253 hybrid +138_1-7 Q0 MARCO_25_1166028659-3 23 0.049136 hybrid +138_1-7 Q0 MARCO_50_525797022-34 24 0.044077 hybrid +138_1-7 Q0 MARCO_22_1472278623-9 25 0.043190 hybrid +138_1-7 Q0 MARCO_04_1288055811-3 26 0.029676 hybrid +138_1-7 Q0 MARCO_50_493199442-3 27 0.029598 hybrid +138_1-7 Q0 MARCO_42_1678032914-7 28 0.021642 hybrid +138_1-7 Q0 MARCO_31_903613291-1 29 0.000206 hybrid +138_1-7 Q0 MARCO_21_1206903334-11 30 -0.004262 hybrid +138_1-7 Q0 MARCO_50_2490897344-22 31 -0.017974 hybrid +138_1-7 Q0 MARCO_45_1264343358-4 32 -0.018651 hybrid +138_1-7 Q0 MARCO_50_2490897344-32 33 -0.019359 hybrid +138_1-7 Q0 MARCO_50_2512639632-3 34 -0.020837 hybrid +138_1-7 Q0 MARCO_21_1216763189-14 35 -0.021591 hybrid +138_1-7 Q0 MARCO_50_2398856032-54 36 -0.029851 hybrid +138_1-7 Q0 MARCO_14_41589459-3 37 -0.032974 hybrid +138_1-7 Q0 MARCO_50_1414049353-23 38 -0.041981 hybrid +138_1-7 Q0 MARCO_41_1135859717-55 39 -0.043933 hybrid +138_1-7 Q0 MARCO_10_715405810-2 40 -0.048957 hybrid +138_1-7 Q0 MARCO_32_1011502166-3 41 -0.050843 hybrid +138_1-7 Q0 MARCO_50_1619601961-13 42 -0.057237 hybrid +138_1-7 Q0 MARCO_54_1567013267-9 43 -0.068001 hybrid +138_1-7 Q0 MARCO_29_1138521488-2 44 -0.068927 hybrid +138_1-7 Q0 MARCO_50_2398856032-77 45 -0.071101 hybrid +138_1-7 Q0 MARCO_20_653661460-2 46 -0.074461 hybrid +138_1-7 Q0 MARCO_00_801665392-1 47 -0.075759 hybrid +138_1-7 Q0 MARCO_50_1419345210-2 48 -0.076036 hybrid +138_1-7 Q0 MARCO_58_287727129-18 49 -0.078816 hybrid +138_1-7 Q0 MARCO_50_517407812-8 50 -0.079854 hybrid +138_1-7 Q0 MARCO_54_1472340040-15 51 -0.081146 hybrid +138_1-7 Q0 MARCO_50_1608210602-12 52 -0.089273 hybrid +138_1-7 Q0 MARCO_14_41589459-2 53 -0.089374 hybrid +138_1-7 Q0 MARCO_10_715405810-3 54 -0.091544 hybrid +138_1-7 Q0 MARCO_50_517407812-4 55 -0.091653 hybrid +138_1-7 Q0 MARCO_10_714838350-8 56 -0.094391 hybrid +138_1-7 Q0 MARCO_00_801665392-5 57 -0.095939 hybrid +138_1-7 Q0 MARCO_29_1011178136-4 58 -0.100065 hybrid +138_1-7 Q0 MARCO_19_2430745421-9 59 -0.102834 hybrid +138_1-7 Q0 MARCO_28_527777467-5 60 -0.106532 hybrid +138_1-7 Q0 MARCO_20_630730188-15 61 -0.106843 hybrid +138_1-7 Q0 MARCO_21_1215918371-18 62 -0.112070 hybrid +138_1-7 Q0 MARCO_31_293674191-5 63 -0.112459 hybrid +138_1-7 Q0 MARCO_50_1445951923-12 64 -0.113396 hybrid +138_1-7 Q0 MARCO_26_1553028811-4 65 -0.114329 hybrid +138_1-7 Q0 MARCO_50_1443762223-34 66 -0.117670 hybrid +138_1-7 Q0 MARCO_45_1251208083-2 67 -0.118988 hybrid +138_1-7 Q0 MARCO_50_2398856032-29 68 -0.121287 hybrid +138_1-7 Q0 MARCO_12_1728811441-3 69 -0.121357 hybrid +138_1-7 Q0 MARCO_21_222455459-1 70 -0.122057 hybrid +138_1-7 Q0 MARCO_26_1553028811-3 71 -0.122224 hybrid +138_1-7 Q0 MARCO_23_941472041-3 72 -0.122955 hybrid +138_1-7 Q0 MARCO_57_1957826799-17 73 -0.124207 hybrid +138_1-7 Q0 MARCO_50_1419345210-24 74 -0.125382 hybrid +138_1-7 Q0 MARCO_40_843172469-16 75 -0.125759 hybrid +138_1-7 Q0 MARCO_21_219104975-1 76 -0.127132 hybrid +138_1-7 Q0 MARCO_21_1206903334-5 77 -0.127695 hybrid +138_1-7 Q0 MARCO_50_1670792720-19 78 -0.129313 hybrid +138_1-7 Q0 MARCO_10_982613293-17 79 -0.132347 hybrid +138_1-7 Q0 MARCO_23_692812077-4 80 -0.135780 hybrid +138_1-7 Q0 MARCO_32_1011502166-2 81 -0.135854 hybrid +138_1-7 Q0 MARCO_59_942855580-9 82 -0.135920 hybrid +138_1-7 Q0 MARCO_41_1120557748-10 83 -0.139638 hybrid +138_1-7 Q0 MARCO_21_1216623949-5 84 -0.140556 hybrid +138_1-7 Q0 MARCO_29_1012122096-6 85 -0.141886 hybrid +138_1-7 Q0 MARCO_22_1055759611-19 86 -0.143698 hybrid +138_1-7 Q0 MARCO_57_864005390-38 87 -0.143842 hybrid +138_1-7 Q0 MARCO_21_755098915-4 88 -0.144713 hybrid +138_1-7 Q0 MARCO_49_1696381352-5 89 -0.145180 hybrid +138_1-7 Q0 MARCO_50_2490897344-11 90 -0.146681 hybrid +138_1-7 Q0 MARCO_31_903446696-13 91 -0.148839 hybrid +138_1-7 Q0 MARCO_49_225588795-6 92 -0.151317 hybrid +138_1-7 Q0 MARCO_21_1206903334-1 93 -0.151371 hybrid +138_1-7 Q0 MARCO_43_745182209-11 94 -0.152623 hybrid +138_1-7 Q0 MARCO_23_941472041-2 95 -0.154362 hybrid +138_1-7 Q0 MARCO_42_1678032914-2 96 -0.155470 hybrid +138_1-7 Q0 MARCO_21_1432844091-25 97 -0.156139 hybrid +138_1-7 Q0 MARCO_08_1482841231-2 98 -0.157162 hybrid +138_1-7 Q0 MARCO_22_1472345324-24 99 -0.160296 hybrid +138_1-7 Q0 MARCO_29_1169613679-7 100 -0.163045 hybrid +138_1-9 Q0 MARCO_32_154714576-9 1 0.500000 hybrid +138_1-9 Q0 MARCO_23_244603153-4 2 0.348390 hybrid +138_1-9 Q0 MARCO_23_941472041-2 3 0.338519 hybrid +138_1-9 Q0 MARCO_50_1419345210-25 4 0.268353 hybrid +138_1-9 Q0 MARCO_14_41589459-2 5 0.252585 hybrid +138_1-9 Q0 MARCO_28_654158755-5 6 0.232116 hybrid +138_1-9 Q0 MARCO_32_105822800-2 7 0.231597 hybrid +138_1-9 Q0 MARCO_42_1100840203-1 8 0.230328 hybrid +138_1-9 Q0 MARCO_32_154714576-1 9 0.218036 hybrid +138_1-9 Q0 MARCO_32_154714576-3 10 0.207494 hybrid +138_1-9 Q0 MARCO_12_1728705765-10 11 0.202790 hybrid +138_1-9 Q0 MARCO_14_41589459-1 12 0.191194 hybrid +138_1-9 Q0 MARCO_28_654144345-11 13 0.190697 hybrid +138_1-9 Q0 MARCO_23_244603153-2 14 0.178033 hybrid +138_1-9 Q0 MARCO_41_2173508032-3 15 0.177923 hybrid +138_1-9 Q0 MARCO_14_41589459-3 16 0.177161 hybrid +138_1-9 Q0 MARCO_29_667707520-4 17 0.172942 hybrid +138_1-9 Q0 MARCO_43_330810268-3 18 0.170590 hybrid +138_1-9 Q0 MARCO_32_154714576-7 19 0.162268 hybrid +138_1-9 Q0 MARCO_51_1236418175-2 20 0.159220 hybrid +138_1-9 Q0 MARCO_28_654332491-2 21 0.157936 hybrid +138_1-9 Q0 MARCO_28_654440355-2 22 0.139101 hybrid +138_1-9 Q0 MARCO_25_1437816000-3 23 0.138858 hybrid +138_1-9 Q0 MARCO_23_941472041-4 24 0.135326 hybrid +138_1-9 Q0 MARCO_12_1728705765-8 25 0.130175 hybrid +138_1-9 Q0 MARCO_28_654332491-6 26 0.127133 hybrid +138_1-9 Q0 MARCO_28_654440355-6 27 0.122791 hybrid +138_1-9 Q0 MARCO_46_551281605-4 28 0.120679 hybrid +138_1-9 Q0 MARCO_28_1800800953-2 29 0.119029 hybrid +138_1-9 Q0 MARCO_23_941472041-3 30 0.115779 hybrid +138_1-9 Q0 MARCO_29_667707520-5 31 0.109803 hybrid +138_1-9 Q0 MARCO_27_209201400-12 32 0.104775 hybrid +138_1-9 Q0 MARCO_12_590645462-9 33 0.100569 hybrid +138_1-9 Q0 MARCO_28_654440355-4 34 0.098446 hybrid +138_1-9 Q0 MARCO_32_1013311386-2 35 0.098289 hybrid +138_1-9 Q0 MARCO_23_244603153-3 36 0.095887 hybrid +138_1-9 Q0 MARCO_23_244603153-6 37 0.091866 hybrid +138_1-9 Q0 MARCO_25_1394073-8 38 0.090411 hybrid +138_1-9 Q0 MARCO_42_1100840203-5 39 0.087228 hybrid +138_1-9 Q0 MARCO_50_2490897344-22 40 0.082968 hybrid +138_1-9 Q0 MARCO_31_942788861-47 41 0.081085 hybrid +138_1-9 Q0 MARCO_41_2173508032-4 42 0.080657 hybrid +138_1-9 Q0 MARCO_12_1728705765-1 43 0.079627 hybrid +138_1-9 Q0 MARCO_28_654440355-12 44 0.077817 hybrid +138_1-9 Q0 MARCO_45_977053014-3 45 0.066381 hybrid +138_1-9 Q0 MARCO_28_964979199-2 46 0.059817 hybrid +138_1-9 Q0 MARCO_31_942738837-20 47 0.053009 hybrid +138_1-9 Q0 MARCO_23_941472041-1 48 0.049754 hybrid +138_1-9 Q0 MARCO_50_2490897344-18 49 0.046139 hybrid +138_1-9 Q0 MARCO_54_1567013267-5 50 0.044606 hybrid +138_1-9 Q0 MARCO_12_1728705765-5 51 0.040783 hybrid +138_1-9 Q0 MARCO_37_1260056150-7 52 0.030012 hybrid +138_1-9 Q0 MARCO_22_1021785513-4 53 0.028441 hybrid +138_1-9 Q0 MARCO_28_654637213-7 54 0.027660 hybrid +138_1-9 Q0 MARCO_37_348327812-5 55 0.025390 hybrid +138_1-9 Q0 MARCO_31_942788861-9 56 0.020812 hybrid +138_1-9 Q0 KILT_38076-61 57 0.020160 hybrid +138_1-9 Q0 MARCO_50_526405721-5 58 0.018300 hybrid +138_1-9 Q0 MARCO_28_1800800953-4 59 0.018221 hybrid +138_1-9 Q0 MARCO_28_654440355-11 60 0.016952 hybrid +138_1-9 Q0 MARCO_14_477904447-8 61 0.016820 hybrid +138_1-9 Q0 MARCO_42_331919034-13 62 0.015365 hybrid +138_1-9 Q0 MARCO_28_654332491-5 63 0.014487 hybrid +138_1-9 Q0 MARCO_42_331919034-8 64 0.012333 hybrid +138_1-9 Q0 MARCO_31_942644332-18 65 0.011432 hybrid +138_1-9 Q0 MARCO_10_900691610-13 66 0.007047 hybrid +138_1-9 Q0 MARCO_25_1437859874-6 67 0.004880 hybrid +138_1-9 Q0 MARCO_28_422127303-1 68 -0.000532 hybrid +138_1-9 Q0 MARCO_41_286599626-8 69 -0.004030 hybrid +138_1-9 Q0 MARCO_32_105822800-3 70 -0.005157 hybrid +138_1-9 Q0 MARCO_42_1100840203-16 71 -0.010312 hybrid +138_1-9 Q0 MARCO_46_384402411-5 72 -0.011883 hybrid +138_1-9 Q0 MARCO_43_328307775-5 73 -0.018803 hybrid +138_1-9 Q0 MARCO_28_964979199-3 74 -0.021653 hybrid +138_1-9 Q0 MARCO_51_1636971484-5 75 -0.022701 hybrid +138_1-9 Q0 MARCO_28_1800800953-3 76 -0.022881 hybrid +138_1-9 Q0 MARCO_32_884498271-10 77 -0.023570 hybrid +138_1-9 Q0 MARCO_31_1848573926-1 78 -0.023850 hybrid +138_1-9 Q0 MARCO_37_1257999305-11 79 -0.027330 hybrid +138_1-9 Q0 MARCO_43_328307775-6 80 -0.029323 hybrid +138_1-9 Q0 MARCO_31_942788861-16 81 -0.034178 hybrid +138_1-9 Q0 MARCO_54_1567013267-9 82 -0.034770 hybrid +138_1-9 Q0 MARCO_37_1260056150-4 83 -0.036599 hybrid +138_1-9 Q0 MARCO_45_1323327407-1 84 -0.039310 hybrid +138_1-9 Q0 MARCO_29_1330563196-4 85 -0.041385 hybrid +138_1-9 Q0 MARCO_48_1551537-3 86 -0.042232 hybrid +138_1-9 Q0 MARCO_22_392396914-4 87 -0.043176 hybrid +138_1-9 Q0 MARCO_46_1311116878-7 88 -0.043198 hybrid +138_1-9 Q0 MARCO_46_992977014-2 89 -0.045015 hybrid +138_1-9 Q0 MARCO_52_1148727167-4 90 -0.045254 hybrid +138_1-9 Q0 MARCO_37_175810652-5 91 -0.052525 hybrid +138_1-9 Q0 MARCO_28_654440355-16 92 -0.052893 hybrid +138_1-9 Q0 MARCO_28_1800800953-1 93 -0.058875 hybrid +138_1-9 Q0 MARCO_51_1236418175-1 94 -0.059262 hybrid +138_1-9 Q0 MARCO_45_1323327407-2 95 -0.061816 hybrid +138_1-9 Q0 MARCO_27_209201400-16 96 -0.062940 hybrid +138_1-9 Q0 MARCO_53_567903811-3 97 -0.063469 hybrid +138_1-9 Q0 MARCO_43_328307775-3 98 -0.064240 hybrid +138_1-9 Q0 MARCO_45_1322687306-3 99 -0.069215 hybrid +138_1-9 Q0 MARCO_28_654499542-3 100 -0.070317 hybrid +139_1-1 Q0 MARCO_30_153432119-23 1 0.500002 hybrid +139_1-1 Q0 KILT_48621266-1 2 0.413325 hybrid +139_1-1 Q0 MARCO_50_2502286195-117 3 0.377470 hybrid +139_1-1 Q0 MARCO_30_151678069-1 4 0.373455 hybrid +139_1-1 Q0 MARCO_45_1436893275-2 5 0.288492 hybrid +139_1-1 Q0 MARCO_47_921555391-19 6 0.275108 hybrid +139_1-1 Q0 MARCO_41_1186872894-16 7 0.178732 hybrid +139_1-1 Q0 MARCO_30_1087879020-45 8 0.170005 hybrid +139_1-1 Q0 MARCO_37_1259043197-4 9 0.132449 hybrid +139_1-1 Q0 MARCO_37_1258512098-2 10 0.124402 hybrid +139_1-1 Q0 MARCO_29_1213003697-15 11 0.115667 hybrid +139_1-1 Q0 MARCO_57_868094889-4 12 0.093183 hybrid +139_1-1 Q0 MARCO_31_1319602620-7 13 0.091002 hybrid +139_1-1 Q0 MARCO_24_807844416-10 14 0.088569 hybrid +139_1-1 Q0 MARCO_31_1319602620-1 15 0.074962 hybrid +139_1-1 Q0 MARCO_29_1213003697-14 16 0.073039 hybrid +139_1-1 Q0 MARCO_24_807844416-9 17 0.068549 hybrid +139_1-1 Q0 MARCO_04_218457542-1 18 0.063091 hybrid +139_1-1 Q0 MARCO_21_1435322247-4 19 0.061653 hybrid +139_1-1 Q0 MARCO_18_3813574221-2 20 0.053015 hybrid +139_1-1 Q0 MARCO_42_1361250839-1 21 0.052313 hybrid +139_1-1 Q0 MARCO_23_689484004-61 22 0.046900 hybrid +139_1-1 Q0 MARCO_50_2144695167-90 23 0.044640 hybrid +139_1-1 Q0 MARCO_50_1662983146-39 24 0.029501 hybrid +139_1-1 Q0 MARCO_24_642128896-13 25 0.027858 hybrid +139_1-1 Q0 MARCO_50_1511900248-4 26 0.026001 hybrid +139_1-1 Q0 MARCO_50_929705916-9 27 0.020446 hybrid +139_1-1 Q0 MARCO_59_368753372-1 28 0.013016 hybrid +139_1-1 Q0 MARCO_34_1665617392-1 29 0.008344 hybrid +139_1-1 Q0 MARCO_30_152603588-2 30 0.007034 hybrid +139_1-1 Q0 MARCO_35_1141061275-5 31 -0.005764 hybrid +139_1-1 Q0 MARCO_44_1859085547-2 32 -0.006879 hybrid +139_1-1 Q0 MARCO_28_527577831-6 33 -0.009188 hybrid +139_1-1 Q0 MARCO_36_567044616-4 34 -0.014340 hybrid +139_1-1 Q0 MARCO_41_1385229682-31 35 -0.023585 hybrid +139_1-1 Q0 MARCO_25_1443189557-6 36 -0.027791 hybrid +139_1-1 Q0 MARCO_35_1141061275-4 37 -0.027915 hybrid +139_1-1 Q0 MARCO_50_1984856936-7 38 -0.040168 hybrid +139_1-1 Q0 MARCO_37_1250898603-20 39 -0.040852 hybrid +139_1-1 Q0 MARCO_24_1902104975-11 40 -0.042246 hybrid +139_1-1 Q0 MARCO_06_1292976322-201 41 -0.043720 hybrid +139_1-1 Q0 MARCO_50_1617251475-44 42 -0.045279 hybrid +139_1-1 Q0 MARCO_22_244232988-20 43 -0.051265 hybrid +139_1-1 Q0 MARCO_50_1511900248-3 44 -0.056883 hybrid +139_1-1 Q0 MARCO_34_1665617392-15 45 -0.058526 hybrid +139_1-1 Q0 MARCO_06_1180050500-32 46 -0.058726 hybrid +139_1-1 Q0 MARCO_22_244232988-11 47 -0.064717 hybrid +139_1-1 Q0 MARCO_29_596240042-4 48 -0.066991 hybrid +139_1-1 Q0 MARCO_28_654389176-9 49 -0.067248 hybrid +139_1-1 Q0 KILT_42725077-4 50 -0.069535 hybrid +139_1-1 Q0 MARCO_47_1281055709-3 51 -0.075202 hybrid +139_1-1 Q0 MARCO_00_763624706-5 52 -0.081859 hybrid +139_1-1 Q0 MARCO_50_1459970904-2 53 -0.091047 hybrid +139_1-1 Q0 MARCO_50_1461081507-12 54 -0.091216 hybrid +139_1-1 Q0 MARCO_34_1225631468-3 55 -0.092281 hybrid +139_1-1 Q0 MARCO_09_427897160-27 56 -0.093560 hybrid +139_1-1 Q0 MARCO_05_811761166-1 57 -0.093711 hybrid +139_1-1 Q0 MARCO_55_248699225-1 58 -0.098214 hybrid +139_1-1 Q0 MARCO_03_583240442-12 59 -0.099493 hybrid +139_1-1 Q0 MARCO_12_1862204645-13 60 -0.099547 hybrid +139_1-1 Q0 MARCO_55_1708077747-1 61 -0.099946 hybrid +139_1-1 Q0 MARCO_11_712446199-1 62 -0.101798 hybrid +139_1-1 Q0 KILT_747041-5 63 -0.103250 hybrid +139_1-1 Q0 MARCO_37_1219459516-16 64 -0.105266 hybrid +139_1-1 Q0 MARCO_14_1555956623-4 65 -0.106048 hybrid +139_1-1 Q0 MARCO_02_1741520836-6 66 -0.108735 hybrid +139_1-1 Q0 MARCO_00_768021301-25 67 -0.109956 hybrid +139_1-1 Q0 MARCO_22_536859309-17 68 -0.113975 hybrid +139_1-1 Q0 MARCO_57_867594672-4 69 -0.117377 hybrid +139_1-1 Q0 MARCO_41_1241453862-8 70 -0.117670 hybrid +139_1-1 Q0 MARCO_03_248311669-1 71 -0.118078 hybrid +139_1-1 Q0 MARCO_31_1557816803-4 72 -0.119473 hybrid +139_1-1 Q0 MARCO_28_647638500-18 73 -0.121005 hybrid +139_1-1 Q0 MARCO_28_647660119-5 74 -0.121005 hybrid +139_1-1 Q0 MARCO_07_1107480416-9 75 -0.121689 hybrid +139_1-1 Q0 MARCO_50_1511900248-42 76 -0.122288 hybrid +139_1-1 Q0 MARCO_45_979617558-5 77 -0.122537 hybrid +139_1-1 Q0 MARCO_34_1226763518-5 78 -0.122826 hybrid +139_1-1 Q0 MARCO_58_1588611162-2 79 -0.123532 hybrid +139_1-1 Q0 MARCO_12_1668228467-32 80 -0.127395 hybrid +139_1-1 Q0 MARCO_31_1585558335-34 81 -0.127795 hybrid +139_1-1 Q0 MARCO_41_1209317676-31 82 -0.129696 hybrid +139_1-1 Q0 MARCO_41_1106779026-10 83 -0.130411 hybrid +139_1-1 Q0 MARCO_50_1971162602-9 84 -0.130730 hybrid +139_1-1 Q0 MARCO_28_411745833-9 85 -0.134860 hybrid +139_1-1 Q0 MARCO_21_1441403032-5 86 -0.137196 hybrid +139_1-1 Q0 MARCO_06_1166471076-551 87 -0.138093 hybrid +139_1-1 Q0 MARCO_14_748255107-6 88 -0.138742 hybrid +139_1-1 Q0 MARCO_47_1281055709-8 89 -0.141477 hybrid +139_1-1 Q0 MARCO_50_1666409400-13 90 -0.143160 hybrid +139_1-1 Q0 MARCO_24_807844416-5 91 -0.146540 hybrid +139_1-1 Q0 MARCO_30_89268699-19 92 -0.146713 hybrid +139_1-1 Q0 MARCO_24_1618765815-8 93 -0.147011 hybrid +139_1-1 Q0 MARCO_10_790302336-6 94 -0.149178 hybrid +139_1-1 Q0 MARCO_50_496893670-8 95 -0.151989 hybrid +139_1-1 Q0 MARCO_20_64030834-10 96 -0.152015 hybrid +139_1-1 Q0 MARCO_00_567386081-8 97 -0.152468 hybrid +139_1-1 Q0 MARCO_24_807844416-13 98 -0.154787 hybrid +139_1-1 Q0 MARCO_09_705280068-1 99 -0.157997 hybrid +139_1-1 Q0 MARCO_21_1082589808-2 100 -0.159263 hybrid +139_1-3 Q0 KILT_29452329-2 1 0.500000 hybrid +139_1-3 Q0 MARCO_04_863676975-17 2 0.439799 hybrid +139_1-3 Q0 MARCO_37_345226218-6 3 0.336518 hybrid +139_1-3 Q0 KILT_3315140-1 4 0.304145 hybrid +139_1-3 Q0 MARCO_17_2976896802-5 5 0.291878 hybrid +139_1-3 Q0 MARCO_57_1271042029-3 6 0.255596 hybrid +139_1-3 Q0 MARCO_04_203163594-3 7 0.193060 hybrid +139_1-3 Q0 KILT_33743824-5 8 0.158242 hybrid +139_1-3 Q0 KILT_3315140-7 9 0.157594 hybrid +139_1-3 Q0 MARCO_09_701792280-1 10 0.141215 hybrid +139_1-3 Q0 MARCO_04_863676975-2 11 0.057889 hybrid +139_1-3 Q0 MARCO_04_863676975-18 12 0.056869 hybrid +139_1-3 Q0 MARCO_04_203163594-1 13 0.054536 hybrid +139_1-3 Q0 KILT_3315140-4 14 0.051270 hybrid +139_1-3 Q0 MARCO_09_709457960-11 15 0.043177 hybrid +139_1-3 Q0 MARCO_12_462074888-2 16 0.036402 hybrid +139_1-3 Q0 KILT_29416092-1 17 0.031353 hybrid +139_1-3 Q0 KILT_5287794-1 18 0.028002 hybrid +139_1-3 Q0 MARCO_57_870405779-4 19 0.015392 hybrid +139_1-3 Q0 KILT_4134234-3 20 -0.006069 hybrid +139_1-3 Q0 KILT_51985039-1 21 -0.009466 hybrid +139_1-3 Q0 KILT_11003095-68 22 -0.037051 hybrid +139_1-3 Q0 KILT_170452-10 23 -0.037217 hybrid +139_1-3 Q0 KILT_3046294-8 24 -0.041520 hybrid +139_1-3 Q0 KILT_28699348-2 25 -0.044568 hybrid +139_1-3 Q0 MARCO_42_1376626219-1 26 -0.048423 hybrid +139_1-3 Q0 KILT_1437380-29 27 -0.068614 hybrid +139_1-3 Q0 MARCO_12_1807681032-5 28 -0.071583 hybrid +139_1-3 Q0 MARCO_26_164617814-157 29 -0.072842 hybrid +139_1-3 Q0 KILT_2727995-3 30 -0.077543 hybrid +139_1-3 Q0 KILT_10356587-4 31 -0.090423 hybrid +139_1-3 Q0 MARCO_16_446902408-19 32 -0.093104 hybrid +139_1-3 Q0 MARCO_19_579071638-35 33 -0.094239 hybrid +139_1-3 Q0 KILT_11003095-12 34 -0.097498 hybrid +139_1-3 Q0 MARCO_43_1007129996-21 35 -0.098207 hybrid +139_1-3 Q0 MARCO_43_328196734-3 36 -0.098513 hybrid +139_1-3 Q0 MARCO_05_1018316918-1 37 -0.101810 hybrid +139_1-3 Q0 MARCO_17_2976977435-14 38 -0.103230 hybrid +139_1-3 Q0 MARCO_43_328196734-4 39 -0.105880 hybrid +139_1-3 Q0 MARCO_17_2976857050-11 40 -0.113931 hybrid +139_1-3 Q0 MARCO_04_203721970-1 41 -0.115456 hybrid +139_1-3 Q0 MARCO_23_938516218-5 42 -0.120218 hybrid +139_1-3 Q0 MARCO_36_960875193-2 43 -0.120433 hybrid +139_1-3 Q0 MARCO_34_1720816200-2 44 -0.122114 hybrid +139_1-3 Q0 MARCO_47_130106289-1 45 -0.128408 hybrid +139_1-3 Q0 MARCO_45_1254751892-4 46 -0.128743 hybrid +139_1-3 Q0 MARCO_18_3789976808-4 47 -0.132104 hybrid +139_1-3 Q0 MARCO_25_38930340-2 48 -0.133421 hybrid +139_1-3 Q0 KILT_54072870-2 49 -0.133708 hybrid +139_1-3 Q0 MARCO_19_579071638-76 50 -0.133910 hybrid +139_1-3 Q0 MARCO_18_3752530006-5 51 -0.139215 hybrid +139_1-3 Q0 KILT_9911289-3 52 -0.148701 hybrid +139_1-3 Q0 KILT_3315140-5 53 -0.151215 hybrid +139_1-3 Q0 KILT_1038547-9 54 -0.156062 hybrid +139_1-3 Q0 KILT_25006668-1 55 -0.158398 hybrid +139_1-3 Q0 MARCO_02_441461153-24 56 -0.161068 hybrid +139_1-3 Q0 MARCO_09_544352892-2 57 -0.166002 hybrid +139_1-3 Q0 MARCO_19_579071638-31 58 -0.166636 hybrid +139_1-3 Q0 MARCO_45_1254751892-3 59 -0.170005 hybrid +139_1-3 Q0 MARCO_16_2852499331-26 60 -0.170278 hybrid +139_1-3 Q0 MARCO_09_482285697-26 61 -0.171580 hybrid +139_1-3 Q0 MARCO_04_203163594-5 62 -0.174028 hybrid +139_1-3 Q0 MARCO_19_579071638-58 63 -0.175685 hybrid +139_1-3 Q0 KILT_392957-25 64 -0.176995 hybrid +139_1-3 Q0 MARCO_17_3137774519-3 65 -0.181947 hybrid +139_1-3 Q0 MARCO_17_1938191323-4 66 -0.183606 hybrid +139_1-3 Q0 KILT_8917663-1 67 -0.184223 hybrid +139_1-3 Q0 KILT_11003095-36 68 -0.185008 hybrid +139_1-3 Q0 MARCO_09_709420192-8 69 -0.186855 hybrid +139_1-3 Q0 MARCO_54_1851350254-2 70 -0.188075 hybrid +139_1-3 Q0 MARCO_17_2367220987-7 71 -0.188369 hybrid +139_1-3 Q0 MARCO_43_1206773897-2 72 -0.190551 hybrid +139_1-3 Q0 MARCO_25_37714343-3 73 -0.194323 hybrid +139_1-3 Q0 KILT_41274919-1 74 -0.194930 hybrid +139_1-3 Q0 MARCO_48_624464512-3 75 -0.198738 hybrid +139_1-3 Q0 KILT_1670696-3 76 -0.203383 hybrid +139_1-3 Q0 MARCO_18_3765904246-5 77 -0.204951 hybrid +139_1-3 Q0 MARCO_19_557474332-14 78 -0.205639 hybrid +139_1-3 Q0 MARCO_05_313396179-5 79 -0.207501 hybrid +139_1-3 Q0 KILT_8721956-1 80 -0.208030 hybrid +139_1-3 Q0 MARCO_25_36518956-6 81 -0.210281 hybrid +139_1-3 Q0 MARCO_16_2852499331-14 82 -0.211256 hybrid +139_1-3 Q0 KILT_1038547-2 83 -0.212337 hybrid +139_1-3 Q0 KILT_53925682-1 84 -0.214430 hybrid +139_1-3 Q0 KILT_13052761-1 85 -0.215212 hybrid +139_1-3 Q0 KILT_40861563-2 86 -0.215258 hybrid +139_1-3 Q0 MARCO_17_2976857050-8 87 -0.216504 hybrid +139_1-3 Q0 KILT_965429-4 88 -0.217893 hybrid +139_1-3 Q0 KILT_2517457-5 89 -0.217985 hybrid +139_1-3 Q0 KILT_50270955-1 90 -0.218213 hybrid +139_1-3 Q0 KILT_105862-10 91 -0.218980 hybrid +139_1-3 Q0 MARCO_44_1142491853-2 92 -0.219724 hybrid +139_1-3 Q0 MARCO_01_695581289-4 93 -0.219921 hybrid +139_1-3 Q0 MARCO_25_1430630144-6 94 -0.221837 hybrid +139_1-3 Q0 KILT_11278420-2 95 -0.224540 hybrid +139_1-3 Q0 MARCO_00_567888462-2 96 -0.229797 hybrid +139_1-3 Q0 MARCO_57_1271042029-15 97 -0.232249 hybrid +139_1-3 Q0 KILT_599992-3 98 -0.233147 hybrid +139_1-3 Q0 MARCO_19_557474332-30 99 -0.237559 hybrid +139_1-3 Q0 MARCO_39_661629464-7 100 -0.240984 hybrid +139_1-5 Q0 KILT_3315140-7 1 0.500000 hybrid +139_1-5 Q0 KILT_32718827-5 2 0.448674 hybrid +139_1-5 Q0 MARCO_37_345226218-6 3 0.439233 hybrid +139_1-5 Q0 MARCO_16_4158688040-7 4 0.419407 hybrid +139_1-5 Q0 MARCO_04_863676975-17 5 0.356892 hybrid +139_1-5 Q0 KILT_187562-12 6 0.302677 hybrid +139_1-5 Q0 KILT_36500957-1 7 0.300549 hybrid +139_1-5 Q0 KILT_11026043-13 8 0.277173 hybrid +139_1-5 Q0 KILT_1843094-8 9 0.275247 hybrid +139_1-5 Q0 KILT_5491303-14 10 0.235039 hybrid +139_1-5 Q0 KILT_56887108-2 11 0.221213 hybrid +139_1-5 Q0 KILT_56887108-4 12 0.221213 hybrid +139_1-5 Q0 MARCO_17_1938128860-11 13 0.219751 hybrid +139_1-5 Q0 MARCO_17_2363946503-5 14 0.205224 hybrid +139_1-5 Q0 MARCO_17_2363946503-7 15 0.205224 hybrid +139_1-5 Q0 KILT_35325296-7 16 0.186991 hybrid +139_1-5 Q0 KILT_29416092-1 17 0.185352 hybrid +139_1-5 Q0 MARCO_00_585059148-16 18 0.148046 hybrid +139_1-5 Q0 KILT_22169295-8 19 0.140563 hybrid +139_1-5 Q0 MARCO_16_1904905320-13 20 0.130606 hybrid +139_1-5 Q0 KILT_27684741-4 21 0.113088 hybrid +139_1-5 Q0 KILT_14161862-2 22 0.108058 hybrid +139_1-5 Q0 KILT_4776779-2 23 0.107378 hybrid +139_1-5 Q0 KILT_3315140-1 24 0.098904 hybrid +139_1-5 Q0 KILT_51418188-3 25 0.097580 hybrid +139_1-5 Q0 MARCO_16_2608660059-6 26 0.077708 hybrid +139_1-5 Q0 KILT_3315140-4 27 0.068367 hybrid +139_1-5 Q0 MARCO_17_1938191323-4 28 0.062501 hybrid +139_1-5 Q0 KILT_28271831-4 29 0.058328 hybrid +139_1-5 Q0 KILT_59014358-3 30 0.057772 hybrid +139_1-5 Q0 KILT_45171151-2 31 0.056601 hybrid +139_1-5 Q0 KILT_41295421-3 32 0.034463 hybrid +139_1-5 Q0 MARCO_18_3770119105-3 33 0.030098 hybrid +139_1-5 Q0 KILT_40175173-2 34 0.029589 hybrid +139_1-5 Q0 KILT_11026043-15 35 0.026268 hybrid +139_1-5 Q0 KILT_29452329-2 36 0.018962 hybrid +139_1-5 Q0 KILT_11026043-11 37 0.009186 hybrid +139_1-5 Q0 KILT_41196107-3 38 0.009101 hybrid +139_1-5 Q0 KILT_51854146-2 39 0.004910 hybrid +139_1-5 Q0 MARCO_18_3780893261-9 40 0.000177 hybrid +139_1-5 Q0 KILT_28346616-11 41 -0.005979 hybrid +139_1-5 Q0 MARCO_18_3769937725-5 42 -0.006888 hybrid +139_1-5 Q0 KILT_25694136-4 43 -0.009731 hybrid +139_1-5 Q0 KILT_25598697-3 44 -0.015904 hybrid +139_1-5 Q0 KILT_1996695-6 45 -0.018594 hybrid +139_1-5 Q0 MARCO_09_709457960-11 46 -0.020056 hybrid +139_1-5 Q0 MARCO_17_2976896802-6 47 -0.023925 hybrid +139_1-5 Q0 KILT_5654539-4 48 -0.027143 hybrid +139_1-5 Q0 KILT_5566884-2 49 -0.027645 hybrid +139_1-5 Q0 KILT_28346616-12 50 -0.033256 hybrid +139_1-5 Q0 KILT_24793358-5 51 -0.035762 hybrid +139_1-5 Q0 KILT_44878113-27 52 -0.038930 hybrid +139_1-5 Q0 KILT_105862-10 53 -0.039206 hybrid +139_1-5 Q0 KILT_170490-2 54 -0.041015 hybrid +139_1-5 Q0 KILT_6872603-6 55 -0.042134 hybrid +139_1-5 Q0 KILT_8721956-1 56 -0.042473 hybrid +139_1-5 Q0 KILT_41170737-7 57 -0.042785 hybrid +139_1-5 Q0 KILT_855742-11 58 -0.046587 hybrid +139_1-5 Q0 KILT_1428049-8 59 -0.049571 hybrid +139_1-5 Q0 KILT_4369239-2 60 -0.049624 hybrid +139_1-5 Q0 KILT_33327459-4 61 -0.050487 hybrid +139_1-5 Q0 MARCO_17_1732660948-29 62 -0.053525 hybrid +139_1-5 Q0 KILT_41052220-6 63 -0.059043 hybrid +139_1-5 Q0 KILT_10193216-2 64 -0.059284 hybrid +139_1-5 Q0 MARCO_19_475582572-12 65 -0.060827 hybrid +139_1-5 Q0 MARCO_16_1902087917-34 66 -0.066625 hybrid +139_1-5 Q0 KILT_25296954-9 67 -0.069266 hybrid +139_1-5 Q0 KILT_61288017-2 68 -0.069754 hybrid +139_1-5 Q0 KILT_11500067-2 69 -0.070816 hybrid +139_1-5 Q0 MARCO_16_2608729888-10 70 -0.078989 hybrid +139_1-5 Q0 KILT_8462534-3 71 -0.079478 hybrid +139_1-5 Q0 KILT_27407621-2 72 -0.083081 hybrid +139_1-5 Q0 KILT_6694360-5 73 -0.084158 hybrid +139_1-5 Q0 KILT_51985039-1 74 -0.084749 hybrid +139_1-5 Q0 MARCO_18_930113310-21 75 -0.086324 hybrid +139_1-5 Q0 KILT_2095229-2 76 -0.087432 hybrid +139_1-5 Q0 KILT_991767-3 77 -0.087460 hybrid +139_1-5 Q0 KILT_26612827-2 78 -0.090522 hybrid +139_1-5 Q0 MARCO_17_648461192-19 79 -0.091425 hybrid +139_1-5 Q0 KILT_41052220-4 80 -0.094079 hybrid +139_1-5 Q0 KILT_2235303-10 81 -0.094571 hybrid +139_1-5 Q0 KILT_5994479-2 82 -0.095340 hybrid +139_1-5 Q0 KILT_43413745-2 83 -0.096405 hybrid +139_1-5 Q0 KILT_1996695-1 84 -0.096479 hybrid +139_1-5 Q0 KILT_42068-29 85 -0.097205 hybrid +139_1-5 Q0 KILT_317555-13 86 -0.101301 hybrid +139_1-5 Q0 KILT_41170737-11 87 -0.104989 hybrid +139_1-5 Q0 MARCO_19_579071638-60 88 -0.105460 hybrid +139_1-5 Q0 KILT_13680702-28 89 -0.106019 hybrid +139_1-5 Q0 MARCO_18_945659341-55 90 -0.107024 hybrid +139_1-5 Q0 KILT_28996012-26 91 -0.108437 hybrid +139_1-5 Q0 MARCO_19_579071638-65 92 -0.109045 hybrid +139_1-5 Q0 MARCO_58_1731301372-4 93 -0.110001 hybrid +139_1-5 Q0 KILT_35203893-2 94 -0.111718 hybrid +139_1-5 Q0 KILT_13243397-6 95 -0.116960 hybrid +139_1-5 Q0 MARCO_00_585059148-2 96 -0.119197 hybrid +139_1-5 Q0 KILT_11026043-1 97 -0.119658 hybrid +139_1-5 Q0 KILT_33090550-1 98 -0.121895 hybrid +139_1-5 Q0 KILT_12998062-8 99 -0.122698 hybrid +139_1-5 Q0 KILT_42234167-5 100 -0.122776 hybrid +139_1-7 Q0 MARCO_31_295074061-4 1 0.499998 hybrid +139_1-7 Q0 MARCO_10_317288872-1 2 0.443557 hybrid +139_1-7 Q0 MARCO_10_78568995-3 3 0.435232 hybrid +139_1-7 Q0 MARCO_41_1360499217-10 4 0.396743 hybrid +139_1-7 Q0 MARCO_49_219598061-3 5 0.385166 hybrid +139_1-7 Q0 MARCO_45_1024470034-8 6 0.382805 hybrid +139_1-7 Q0 MARCO_42_1374843583-13 7 0.289167 hybrid +139_1-7 Q0 MARCO_54_732596430-4 8 0.285166 hybrid +139_1-7 Q0 MARCO_54_728923297-5 9 0.255747 hybrid +139_1-7 Q0 MARCO_10_551069841-11 10 0.250673 hybrid +139_1-7 Q0 KILT_44530995-1 11 0.179863 hybrid +139_1-7 Q0 MARCO_58_1588737049-10 12 0.148862 hybrid +139_1-7 Q0 MARCO_03_1478466963-1 13 0.118432 hybrid +139_1-7 Q0 MARCO_43_1010749308-7 14 0.109481 hybrid +139_1-7 Q0 MARCO_09_700724773-2 15 0.103858 hybrid +139_1-7 Q0 MARCO_24_978037240-10 16 0.102570 hybrid +139_1-7 Q0 MARCO_50_1413275575-20 17 0.095578 hybrid +139_1-7 Q0 MARCO_43_1017023674-36 18 0.091035 hybrid +139_1-7 Q0 MARCO_25_529923745-6 19 0.086016 hybrid +139_1-7 Q0 MARCO_45_167028191-4 20 0.079230 hybrid +139_1-7 Q0 MARCO_10_317288872-2 21 0.066440 hybrid +139_1-7 Q0 MARCO_21_1387127213-3 22 0.041316 hybrid +139_1-7 Q0 MARCO_52_1328955597-5 23 0.036528 hybrid +139_1-7 Q0 MARCO_35_315696109-4 24 0.035853 hybrid +139_1-7 Q0 MARCO_49_1827767458-7 25 -0.024690 hybrid +139_1-7 Q0 MARCO_42_1372445495-3 26 -0.037311 hybrid +139_1-7 Q0 MARCO_10_35215777-1 27 -0.038951 hybrid +139_1-7 Q0 MARCO_28_396725641-5 28 -0.039193 hybrid +139_1-7 Q0 KILT_12232585-36 29 -0.045986 hybrid +139_1-7 Q0 MARCO_41_1370065999-36 30 -0.046882 hybrid +139_1-7 Q0 MARCO_21_1387127213-2 31 -0.051745 hybrid +139_1-7 Q0 MARCO_07_833162818-239 32 -0.059464 hybrid +139_1-7 Q0 MARCO_41_1372564229-6 33 -0.060064 hybrid +139_1-7 Q0 MARCO_42_1359062506-7 34 -0.074831 hybrid +139_1-7 Q0 MARCO_16_3038787278-16 35 -0.075026 hybrid +139_1-7 Q0 KILT_42692298-1 36 -0.086307 hybrid +139_1-7 Q0 MARCO_12_148192882-76 37 -0.089679 hybrid +139_1-7 Q0 KILT_5287207-9 38 -0.096410 hybrid +139_1-7 Q0 MARCO_19_134488766-10 39 -0.098826 hybrid +139_1-7 Q0 MARCO_37_1259499462-2 40 -0.103865 hybrid +139_1-7 Q0 MARCO_37_1259257421-8 41 -0.112168 hybrid +139_1-7 Q0 KILT_1271047-22 42 -0.112445 hybrid +139_1-7 Q0 MARCO_04_1292568396-3 43 -0.113117 hybrid +139_1-7 Q0 MARCO_01_1545334188-2 44 -0.114118 hybrid +139_1-7 Q0 KILT_12520359-5 45 -0.119554 hybrid +139_1-7 Q0 MARCO_19_558575861-22 46 -0.125920 hybrid +139_1-7 Q0 MARCO_28_813848535-6 47 -0.128389 hybrid +139_1-7 Q0 MARCO_48_1186223323-5 48 -0.130218 hybrid +139_1-7 Q0 MARCO_01_1062610003-12 49 -0.136692 hybrid +139_1-7 Q0 MARCO_42_1372445495-43 50 -0.142024 hybrid +139_1-7 Q0 KILT_9376425-2 51 -0.142829 hybrid +139_1-7 Q0 MARCO_50_2374302020-49 52 -0.143700 hybrid +139_1-7 Q0 KILT_33654794-4 53 -0.157227 hybrid +139_1-7 Q0 MARCO_59_354812277-15 54 -0.159784 hybrid +139_1-7 Q0 MARCO_21_1387127213-4 55 -0.161989 hybrid +139_1-7 Q0 MARCO_48_625280922-9 56 -0.163332 hybrid +139_1-7 Q0 MARCO_10_1386497328-2 57 -0.164920 hybrid +139_1-7 Q0 MARCO_50_1449297047-21 58 -0.165752 hybrid +139_1-7 Q0 KILT_55397285-2 59 -0.166570 hybrid +139_1-7 Q0 MARCO_37_724314530-1 60 -0.167014 hybrid +139_1-7 Q0 KILT_47301853-5 61 -0.168690 hybrid +139_1-7 Q0 KILT_149135-34 62 -0.172923 hybrid +139_1-7 Q0 MARCO_41_1372564229-19 63 -0.173096 hybrid +139_1-7 Q0 MARCO_42_1372445495-50 64 -0.178441 hybrid +139_1-7 Q0 MARCO_12_458167294-11 65 -0.180858 hybrid +139_1-7 Q0 MARCO_05_1349800146-81 66 -0.181523 hybrid +139_1-7 Q0 KILT_527703-9 67 -0.183297 hybrid +139_1-7 Q0 KILT_5287207-12 68 -0.184976 hybrid +139_1-7 Q0 KILT_14234601-5 69 -0.188016 hybrid +139_1-7 Q0 MARCO_47_1512730164-6 70 -0.189552 hybrid +139_1-7 Q0 KILT_12232585-23 71 -0.192118 hybrid +139_1-7 Q0 MARCO_13_777921411-4 72 -0.194404 hybrid +139_1-7 Q0 MARCO_06_1598187434-5 73 -0.196912 hybrid +139_1-7 Q0 MARCO_18_3753030254-8 74 -0.197904 hybrid +139_1-7 Q0 KILT_1271047-24 75 -0.198282 hybrid +139_1-7 Q0 MARCO_50_1606422852-1 76 -0.198778 hybrid +139_1-7 Q0 MARCO_03_1389380794-5 77 -0.199179 hybrid +139_1-7 Q0 KILT_25234819-10 78 -0.202463 hybrid +139_1-7 Q0 KILT_1271047-2 79 -0.206458 hybrid +139_1-7 Q0 MARCO_03_1469471093-8 80 -0.207743 hybrid +139_1-7 Q0 MARCO_42_1368444196-3 81 -0.207824 hybrid +139_1-7 Q0 MARCO_38_1499885248-2 82 -0.207837 hybrid +139_1-7 Q0 MARCO_41_1370065999-27 83 -0.207870 hybrid +139_1-7 Q0 MARCO_19_135944611-6 84 -0.207870 hybrid +139_1-7 Q0 KILT_38468711-2 85 -0.210097 hybrid +139_1-7 Q0 MARCO_17_3702746585-11 86 -0.211151 hybrid +139_1-7 Q0 MARCO_31_294910668-2 87 -0.212791 hybrid +139_1-7 Q0 MARCO_41_1944142155-13 88 -0.213029 hybrid +139_1-7 Q0 MARCO_01_1545334188-3 89 -0.214500 hybrid +139_1-7 Q0 KILT_13477970-21 90 -0.216551 hybrid +139_1-7 Q0 KILT_5287207-10 91 -0.216593 hybrid +139_1-7 Q0 MARCO_37_1252207536-20 92 -0.222075 hybrid +139_1-7 Q0 MARCO_49_220507970-5 93 -0.224574 hybrid +139_1-7 Q0 KILT_6542282-3 94 -0.224635 hybrid +139_1-7 Q0 MARCO_21_1387127213-11 95 -0.225500 hybrid +139_1-7 Q0 KILT_2810660-6 96 -0.226289 hybrid +139_1-7 Q0 KILT_68292-21 97 -0.226413 hybrid +139_1-7 Q0 MARCO_10_374632227-12 98 -0.226612 hybrid +139_1-7 Q0 MARCO_28_987639383-12 99 -0.227430 hybrid +139_1-7 Q0 MARCO_41_1390322379-2 100 -0.228976 hybrid +139_2-1 Q0 MARCO_50_1976647136-20 1 0.500000 hybrid +139_2-1 Q0 MARCO_50_1986696809-18 2 0.359895 hybrid +139_2-1 Q0 MARCO_50_1986696809-15 3 0.198670 hybrid +139_2-1 Q0 MARCO_50_1986696809-13 4 0.184365 hybrid +139_2-1 Q0 MARCO_50_1986696809-19 5 0.138226 hybrid +139_2-1 Q0 MARCO_51_900710726-1 6 0.102077 hybrid +139_2-1 Q0 MARCO_50_1976647136-19 7 0.094660 hybrid +139_2-1 Q0 MARCO_23_1590380056-9 8 0.075569 hybrid +139_2-1 Q0 MARCO_03_1387379625-207 9 0.072852 hybrid +139_2-1 Q0 MARCO_50_1976647136-9 10 0.063150 hybrid +139_2-1 Q0 MARCO_50_1986696809-16 11 0.056276 hybrid +139_2-1 Q0 MARCO_29_1213003697-16 12 0.043336 hybrid +139_2-1 Q0 MARCO_14_332204452-1 13 0.019940 hybrid +139_2-1 Q0 MARCO_55_248491559-1 14 -0.019656 hybrid +139_2-1 Q0 MARCO_29_1213003697-13 15 -0.030402 hybrid +139_2-1 Q0 MARCO_29_1213003697-15 16 -0.033018 hybrid +139_2-1 Q0 MARCO_50_1976647136-16 17 -0.044376 hybrid +139_2-1 Q0 MARCO_36_1590019633-1 18 -0.051285 hybrid +139_2-1 Q0 MARCO_52_1143313614-7 19 -0.054193 hybrid +139_2-1 Q0 MARCO_17_689271714-62 20 -0.055942 hybrid +139_2-1 Q0 MARCO_27_1751103262-3 21 -0.078552 hybrid +139_2-1 Q0 MARCO_10_127136602-1 22 -0.084130 hybrid +139_2-1 Q0 MARCO_06_236869994-4 23 -0.084893 hybrid +139_2-1 Q0 MARCO_29_1385092638-6 24 -0.088085 hybrid +139_2-1 Q0 MARCO_43_777882589-9 25 -0.091763 hybrid +139_2-1 Q0 MARCO_29_1213003697-12 26 -0.093134 hybrid +139_2-1 Q0 MARCO_41_1392976032-10 27 -0.094038 hybrid +139_2-1 Q0 MARCO_10_126299628-1 28 -0.099601 hybrid +139_2-1 Q0 MARCO_23_1082598780-1 29 -0.099623 hybrid +139_2-1 Q0 MARCO_42_1675748937-1 30 -0.108076 hybrid +139_2-1 Q0 MARCO_50_1986696809-6 31 -0.110084 hybrid +139_2-1 Q0 MARCO_03_583240442-12 32 -0.113539 hybrid +139_2-1 Q0 MARCO_53_81580608-3 33 -0.118153 hybrid +139_2-1 Q0 MARCO_53_81591972-3 34 -0.118160 hybrid +139_2-1 Q0 MARCO_05_812510161-16 35 -0.119070 hybrid +139_2-1 Q0 MARCO_40_809594468-1 36 -0.128247 hybrid +139_2-1 Q0 MARCO_39_1567532709-1 37 -0.128499 hybrid +139_2-1 Q0 MARCO_35_1141061275-16 38 -0.129748 hybrid +139_2-1 Q0 MARCO_01_1697650827-1 39 -0.131115 hybrid +139_2-1 Q0 MARCO_51_176140475-1 40 -0.132396 hybrid +139_2-1 Q0 MARCO_44_34763274-7 41 -0.133098 hybrid +139_2-1 Q0 MARCO_39_1574908171-2 42 -0.139698 hybrid +139_2-1 Q0 MARCO_26_353691974-63 43 -0.142656 hybrid +139_2-1 Q0 KILT_8917663-2 44 -0.143502 hybrid +139_2-1 Q0 MARCO_43_777882589-8 45 -0.143689 hybrid +139_2-1 Q0 MARCO_09_858456084-8 46 -0.144128 hybrid +139_2-1 Q0 MARCO_36_1004502370-1 47 -0.146820 hybrid +139_2-1 Q0 MARCO_13_795464652-1 48 -0.146820 hybrid +139_2-1 Q0 MARCO_50_1976647136-21 49 -0.147396 hybrid +139_2-1 Q0 MARCO_41_1169226399-50 50 -0.155180 hybrid +139_2-1 Q0 MARCO_01_1028375658-61 51 -0.156015 hybrid +139_2-1 Q0 KILT_3013843-4 52 -0.156684 hybrid +139_2-1 Q0 MARCO_06_1137125711-200 53 -0.158224 hybrid +139_2-1 Q0 MARCO_41_1209317676-15 54 -0.158980 hybrid +139_2-1 Q0 MARCO_05_811761166-1 55 -0.162971 hybrid +139_2-1 Q0 MARCO_54_101689823-4 56 -0.164284 hybrid +139_2-1 Q0 MARCO_12_1164834192-11 57 -0.168560 hybrid +139_2-1 Q0 MARCO_30_151772794-1 58 -0.169161 hybrid +139_2-1 Q0 MARCO_29_1213003697-14 59 -0.169985 hybrid +139_2-1 Q0 KILT_31501462-3 60 -0.173011 hybrid +139_2-1 Q0 MARCO_01_766529309-4 61 -0.173976 hybrid +139_2-1 Q0 MARCO_00_763584951-23 62 -0.174605 hybrid +139_2-1 Q0 MARCO_23_1081888893-1 63 -0.175415 hybrid +139_2-1 Q0 MARCO_06_1199792673-311 64 -0.177387 hybrid +139_2-1 Q0 MARCO_13_738696526-1 65 -0.179104 hybrid +139_2-1 Q0 MARCO_50_1986696809-14 66 -0.179946 hybrid +139_2-1 Q0 MARCO_39_1567532709-21 67 -0.180997 hybrid +139_2-1 Q0 MARCO_51_1634012455-1 68 -0.181936 hybrid +139_2-1 Q0 MARCO_17_3114677702-42 69 -0.184451 hybrid +139_2-1 Q0 MARCO_11_1245999089-6 70 -0.187219 hybrid +139_2-1 Q0 MARCO_43_1390481327-7 71 -0.187791 hybrid +139_2-1 Q0 MARCO_55_251598823-1 72 -0.190220 hybrid +139_2-1 Q0 MARCO_50_1976647136-8 73 -0.192027 hybrid +139_2-1 Q0 MARCO_03_442514811-2 74 -0.192513 hybrid +139_2-1 Q0 MARCO_06_1116141815-80 75 -0.194647 hybrid +139_2-1 Q0 MARCO_19_599268439-3 76 -0.195661 hybrid +139_2-1 Q0 MARCO_50_1986696809-1 77 -0.196932 hybrid +139_2-1 Q0 MARCO_50_1986696809-20 78 -0.197997 hybrid +139_2-1 Q0 MARCO_50_2400934087-9 79 -0.201945 hybrid +139_2-1 Q0 MARCO_25_1443121688-3 80 -0.203722 hybrid +139_2-1 Q0 MARCO_37_1259043197-4 81 -0.203726 hybrid +139_2-1 Q0 MARCO_35_1141061275-15 82 -0.206976 hybrid +139_2-1 Q0 MARCO_13_661274091-4 83 -0.206990 hybrid +139_2-1 Q0 MARCO_30_92466635-1 84 -0.207163 hybrid +139_2-1 Q0 MARCO_10_790302336-6 85 -0.209786 hybrid +139_2-1 Q0 MARCO_37_1275336444-5 86 -0.213309 hybrid +139_2-1 Q0 MARCO_05_812781374-15 87 -0.214547 hybrid +139_2-1 Q0 MARCO_28_309032834-1 88 -0.214565 hybrid +139_2-1 Q0 MARCO_18_3121656022-5 89 -0.216192 hybrid +139_2-1 Q0 MARCO_25_1430899678-3 90 -0.216232 hybrid +139_2-1 Q0 MARCO_51_176140475-3 91 -0.216491 hybrid +139_2-1 Q0 MARCO_50_1986696809-3 92 -0.217995 hybrid +139_2-1 Q0 MARCO_51_1634012455-7 93 -0.218715 hybrid +139_2-1 Q0 MARCO_51_2017340525-2 94 -0.220370 hybrid +139_2-1 Q0 MARCO_06_1295753154-103 95 -0.220399 hybrid +139_2-1 Q0 MARCO_57_1269560709-3 96 -0.221097 hybrid +139_2-1 Q0 MARCO_01_796399095-20 97 -0.221273 hybrid +139_2-1 Q0 MARCO_44_606686500-3 98 -0.228996 hybrid +139_2-1 Q0 MARCO_31_1319602620-1 99 -0.230695 hybrid +139_2-1 Q0 MARCO_50_1424129020-47 100 -0.231684 hybrid +139_2-11 Q0 MARCO_51_1747069511-18 1 0.499998 hybrid +139_2-11 Q0 MARCO_55_1288243942-28 2 0.495793 hybrid +139_2-11 Q0 MARCO_50_1411637407-3 3 0.446750 hybrid +139_2-11 Q0 MARCO_24_76911461-24 4 0.431599 hybrid +139_2-11 Q0 MARCO_15_598590406-4 5 0.423599 hybrid +139_2-11 Q0 MARCO_27_1332275192-2 6 0.414429 hybrid +139_2-11 Q0 MARCO_03_1766701606-4 7 0.389810 hybrid +139_2-11 Q0 MARCO_27_1332275192-3 8 0.373995 hybrid +139_2-11 Q0 MARCO_41_1164212236-16 9 0.373082 hybrid +139_2-11 Q0 MARCO_06_337865995-7 10 0.353304 hybrid +139_2-11 Q0 MARCO_50_1417615577-60 11 0.347371 hybrid +139_2-11 Q0 MARCO_30_1082693382-1 12 0.323782 hybrid +139_2-11 Q0 MARCO_20_1123120394-4 13 0.312528 hybrid +139_2-11 Q0 MARCO_59_882253710-2 14 0.305767 hybrid +139_2-11 Q0 MARCO_09_1236796284-2 15 0.303563 hybrid +139_2-11 Q0 MARCO_52_357414544-13 16 0.281148 hybrid +139_2-11 Q0 MARCO_41_1109029954-10 17 0.274387 hybrid +139_2-11 Q0 MARCO_06_1203813551-34 18 0.272630 hybrid +139_2-11 Q0 MARCO_50_1506898909-4 19 0.268758 hybrid +139_2-11 Q0 MARCO_06_1219181201-90 20 0.258391 hybrid +139_2-11 Q0 MARCO_50_1986371879-5 21 0.249602 hybrid +139_2-11 Q0 MARCO_50_1522869547-14 22 0.249341 hybrid +139_2-11 Q0 MARCO_06_1254349356-241 23 0.249284 hybrid +139_2-11 Q0 MARCO_50_1506898909-7 24 0.240319 hybrid +139_2-11 Q0 MARCO_50_1411637407-25 25 0.237635 hybrid +139_2-11 Q0 MARCO_24_807685158-21 26 0.224413 hybrid +139_2-11 Q0 MARCO_44_1689960116-44 27 0.221277 hybrid +139_2-11 Q0 MARCO_27_1332326310-2 28 0.207866 hybrid +139_2-11 Q0 MARCO_03_1767270779-1 29 0.199067 hybrid +139_2-11 Q0 MARCO_52_357464040-14 30 0.197509 hybrid +139_2-11 Q0 MARCO_52_357482509-14 31 0.197509 hybrid +139_2-11 Q0 MARCO_03_1766754957-1 32 0.192069 hybrid +139_2-11 Q0 MARCO_17_3703719656-2 33 0.190463 hybrid +139_2-11 Q0 MARCO_29_1210571599-1 34 0.182781 hybrid +139_2-11 Q0 MARCO_32_473811803-72 35 0.172110 hybrid +139_2-11 Q0 MARCO_03_1220536791-84 36 0.170167 hybrid +139_2-11 Q0 MARCO_55_819668455-1 37 0.163744 hybrid +139_2-11 Q0 MARCO_29_1210571599-3 38 0.153292 hybrid +139_2-11 Q0 MARCO_44_1689960116-35 39 0.151173 hybrid +139_2-11 Q0 MARCO_03_1220536791-90 40 0.146470 hybrid +139_2-11 Q0 MARCO_41_1111957631-15 41 0.145615 hybrid +139_2-11 Q0 MARCO_45_1435694871-2 42 0.145220 hybrid +139_2-11 Q0 MARCO_23_1083334073-4 43 0.144066 hybrid +139_2-11 Q0 MARCO_06_1196219817-11 44 0.138370 hybrid +139_2-11 Q0 MARCO_50_1170968973-1 45 0.133747 hybrid +139_2-11 Q0 MARCO_24_1905514303-13 46 0.129134 hybrid +139_2-11 Q0 MARCO_29_1329207410-2 47 0.127846 hybrid +139_2-11 Q0 MARCO_08_688605731-8 48 0.125376 hybrid +139_2-11 Q0 MARCO_50_1411637407-23 49 0.125096 hybrid +139_2-11 Q0 MARCO_50_1411637407-1 50 0.123015 hybrid +139_2-11 Q0 MARCO_57_914510789-3 51 0.116929 hybrid +139_2-11 Q0 MARCO_41_1240150123-13 52 0.108677 hybrid +139_2-11 Q0 MARCO_29_1210571599-2 53 0.106182 hybrid +139_2-11 Q0 MARCO_06_1090202352-16 54 0.106064 hybrid +139_2-11 Q0 MARCO_01_1642640753-35 55 0.101816 hybrid +139_2-11 Q0 MARCO_45_1437051649-1 56 0.096785 hybrid +139_2-11 Q0 MARCO_44_1689960116-42 57 0.096305 hybrid +139_2-11 Q0 MARCO_23_700064365-1 58 0.095160 hybrid +139_2-11 Q0 MARCO_00_626077716-12 59 0.093992 hybrid +139_2-11 Q0 MARCO_17_4190371631-1 60 0.093821 hybrid +139_2-11 Q0 MARCO_15_1878992703-4 61 0.091421 hybrid +139_2-11 Q0 MARCO_17_4190371631-3 62 0.088661 hybrid +139_2-11 Q0 MARCO_55_1707167164-1 63 0.084799 hybrid +139_2-11 Q0 MARCO_57_914503651-5 64 0.077986 hybrid +139_2-11 Q0 MARCO_10_614580684-5 65 0.074304 hybrid +139_2-11 Q0 MARCO_28_986496394-5 66 0.074128 hybrid +139_2-11 Q0 MARCO_20_1123114568-2 67 0.070375 hybrid +139_2-11 Q0 MARCO_11_119909427-4 68 0.067952 hybrid +139_2-11 Q0 MARCO_41_1164212236-17 69 0.063776 hybrid +139_2-11 Q0 MARCO_11_119909427-8 70 0.062636 hybrid +139_2-11 Q0 MARCO_24_807685158-24 71 0.060479 hybrid +139_2-11 Q0 MARCO_24_807685158-25 72 0.048777 hybrid +139_2-11 Q0 MARCO_56_459057530-4 73 0.048611 hybrid +139_2-11 Q0 MARCO_14_1772521971-9 74 0.048554 hybrid +139_2-11 Q0 MARCO_58_1507641423-2 75 0.048136 hybrid +139_2-11 Q0 MARCO_20_1123120394-3 76 0.041604 hybrid +139_2-11 Q0 MARCO_43_42225407-10 77 0.038648 hybrid +139_2-11 Q0 MARCO_03_1474882189-2 78 0.031028 hybrid +139_2-11 Q0 MARCO_56_459078349-2 79 0.030458 hybrid +139_2-11 Q0 MARCO_23_1594511349-2 80 0.029398 hybrid +139_2-11 Q0 KILT_47338990-1 81 0.027669 hybrid +139_2-11 Q0 MARCO_48_1536042557-21 82 0.025527 hybrid +139_2-11 Q0 MARCO_22_244218885-6 83 0.020191 hybrid +139_2-11 Q0 MARCO_06_233932637-1 84 0.017735 hybrid +139_2-11 Q0 MARCO_55_247175318-4 85 0.016828 hybrid +139_2-11 Q0 MARCO_50_1524631404-8 86 0.016215 hybrid +139_2-11 Q0 MARCO_04_1057217507-11 87 0.014961 hybrid +139_2-11 Q0 MARCO_10_795447522-13 88 0.013768 hybrid +139_2-11 Q0 MARCO_24_1015267251-1 89 0.012979 hybrid +139_2-11 Q0 MARCO_14_752099999-10 90 0.012333 hybrid +139_2-11 Q0 MARCO_40_820662661-4 91 0.009084 hybrid +139_2-11 Q0 MARCO_50_1986371879-2 92 0.000941 hybrid +139_2-11 Q0 MARCO_14_748076656-11 93 0.000713 hybrid +139_2-11 Q0 MARCO_13_1167939316-2 94 0.000352 hybrid +139_2-11 Q0 MARCO_57_914510789-5 95 0.000119 hybrid +139_2-11 Q0 MARCO_10_613432017-5 96 -0.001668 hybrid +139_2-11 Q0 MARCO_50_2502286195-41 97 -0.006832 hybrid +139_2-11 Q0 MARCO_52_357414544-7 98 -0.011412 hybrid +139_2-11 Q0 MARCO_14_51775561-1 99 -0.011687 hybrid +139_2-11 Q0 MARCO_50_1420106422-12 100 -0.014272 hybrid +139_2-13 Q0 MARCO_28_413735177-362 1 0.500000 hybrid +139_2-13 Q0 MARCO_00_767771741-2 2 0.485077 hybrid +139_2-13 Q0 MARCO_31_1319602620-2 3 0.436181 hybrid +139_2-13 Q0 MARCO_00_767771741-4 4 0.423148 hybrid +139_2-13 Q0 MARCO_28_447968862-4 5 0.408127 hybrid +139_2-13 Q0 KILT_20579666-1 6 0.382369 hybrid +139_2-13 Q0 MARCO_24_1139297902-14 7 0.377344 hybrid +139_2-13 Q0 MARCO_42_1360921322-9 8 0.371578 hybrid +139_2-13 Q0 MARCO_30_92573188-9 9 0.348084 hybrid +139_2-13 Q0 MARCO_29_662582548-11 10 0.336293 hybrid +139_2-13 Q0 MARCO_44_1488298674-2 11 0.327954 hybrid +139_2-13 Q0 MARCO_55_134814551-1 12 0.324885 hybrid +139_2-13 Q0 KILT_897775-20 13 0.321945 hybrid +139_2-13 Q0 MARCO_42_1360921322-8 14 0.316008 hybrid +139_2-13 Q0 MARCO_42_1364593057-5 15 0.315270 hybrid +139_2-13 Q0 MARCO_00_767771741-3 16 0.314044 hybrid +139_2-13 Q0 MARCO_55_1701438850-1 17 0.311636 hybrid +139_2-13 Q0 MARCO_50_2141096457-10 18 0.303226 hybrid +139_2-13 Q0 MARCO_10_125884503-3 19 0.302371 hybrid +139_2-13 Q0 MARCO_23_894236714-1 20 0.291978 hybrid +139_2-13 Q0 MARCO_10_125884503-4 21 0.291378 hybrid +139_2-13 Q0 KILT_20579666-2 22 0.286377 hybrid +139_2-13 Q0 MARCO_45_1438641590-1 23 0.277839 hybrid +139_2-13 Q0 MARCO_00_767771741-1 24 0.274485 hybrid +139_2-13 Q0 MARCO_43_777882589-10 25 0.266375 hybrid +139_2-13 Q0 MARCO_55_1706805628-2 26 0.261283 hybrid +139_2-13 Q0 MARCO_55_1701438850-2 27 0.261262 hybrid +139_2-13 Q0 MARCO_55_134814551-4 28 0.256018 hybrid +139_2-13 Q0 MARCO_41_324917941-5 29 0.255705 hybrid +139_2-13 Q0 MARCO_44_1488298674-7 30 0.248218 hybrid +139_2-13 Q0 MARCO_10_125884503-1 31 0.243264 hybrid +139_2-13 Q0 MARCO_45_1438540505-1 32 0.224603 hybrid +139_2-13 Q0 MARCO_50_1976647136-18 33 0.223724 hybrid +139_2-13 Q0 MARCO_36_1008196284-11 34 0.216934 hybrid +139_2-13 Q0 MARCO_55_1281693293-3 35 0.212286 hybrid +139_2-13 Q0 MARCO_23_244000007-6 36 0.210734 hybrid +139_2-13 Q0 MARCO_36_1003085916-10 37 0.205789 hybrid +139_2-13 Q0 MARCO_06_1267389422-427 38 0.205126 hybrid +139_2-13 Q0 MARCO_44_1488298674-3 39 0.205072 hybrid +139_2-13 Q0 MARCO_28_413735177-361 40 0.202856 hybrid +139_2-13 Q0 MARCO_18_461374169-10 41 0.192618 hybrid +139_2-13 Q0 MARCO_50_1178652254-14 42 0.190240 hybrid +139_2-13 Q0 MARCO_23_243972315-5 43 0.186879 hybrid +139_2-13 Q0 MARCO_00_767771741-16 44 0.185949 hybrid +139_2-13 Q0 MARCO_55_1281693293-2 45 0.184393 hybrid +139_2-13 Q0 MARCO_23_243990978-4 46 0.183285 hybrid +139_2-13 Q0 MARCO_42_1364593057-1 47 0.176465 hybrid +139_2-13 Q0 MARCO_55_247910917-7 48 0.169147 hybrid +139_2-13 Q0 MARCO_55_1707991016-2 49 0.159652 hybrid +139_2-13 Q0 MARCO_10_77686443-6 50 0.156992 hybrid +139_2-13 Q0 MARCO_23_894236714-2 51 0.151664 hybrid +139_2-13 Q0 MARCO_00_767771741-8 52 0.146790 hybrid +139_2-13 Q0 MARCO_55_1701438850-5 53 0.143352 hybrid +139_2-13 Q0 MARCO_30_1092538935-5 54 0.141728 hybrid +139_2-13 Q0 MARCO_57_1267949532-4 55 0.140556 hybrid +139_2-13 Q0 MARCO_18_477374892-20 56 0.140024 hybrid +139_2-13 Q0 MARCO_55_1281693293-4 57 0.137892 hybrid +139_2-13 Q0 MARCO_30_92494994-5 58 0.137370 hybrid +139_2-13 Q0 MARCO_17_658305980-16 59 0.133241 hybrid +139_2-13 Q0 MARCO_42_1364593057-3 60 0.125569 hybrid +139_2-13 Q0 MARCO_30_92395788-7 61 0.124155 hybrid +139_2-13 Q0 MARCO_59_1032322888-3 62 0.123683 hybrid +139_2-13 Q0 MARCO_30_1086003880-1 63 0.122033 hybrid +139_2-13 Q0 MARCO_29_662582548-5 64 0.121895 hybrid +139_2-13 Q0 KILT_6389709-2 65 0.121696 hybrid +139_2-13 Q0 KILT_20579666-3 66 0.121083 hybrid +139_2-13 Q0 MARCO_10_125884503-5 67 0.119507 hybrid +139_2-13 Q0 MARCO_30_1084424410-2 68 0.118220 hybrid +139_2-13 Q0 MARCO_55_1706805628-1 69 0.111666 hybrid +139_2-13 Q0 MARCO_30_92395788-6 70 0.106887 hybrid +139_2-13 Q0 MARCO_18_461374169-9 71 0.104567 hybrid +139_2-13 Q0 KILT_32506906-1 72 0.102051 hybrid +139_2-13 Q0 KILT_54663095-1 73 0.100714 hybrid +139_2-13 Q0 MARCO_13_402956366-3 74 0.098070 hybrid +139_2-13 Q0 MARCO_18_477374892-21 75 0.095541 hybrid +139_2-13 Q0 MARCO_29_662582548-7 76 0.094830 hybrid +139_2-13 Q0 MARCO_28_447968862-2 77 0.090307 hybrid +139_2-13 Q0 MARCO_55_1281712551-3 78 0.089613 hybrid +139_2-13 Q0 MARCO_29_662582548-6 79 0.085939 hybrid +139_2-13 Q0 MARCO_29_662582548-12 80 0.080443 hybrid +139_2-13 Q0 MARCO_00_767771741-7 81 0.078590 hybrid +139_2-13 Q0 MARCO_04_786828265-1 82 0.078553 hybrid +139_2-13 Q0 MARCO_50_2141096457-25 83 0.067961 hybrid +139_2-13 Q0 MARCO_30_91487108-8 84 0.067052 hybrid +139_2-13 Q0 MARCO_04_786828265-2 85 0.065196 hybrid +139_2-13 Q0 MARCO_00_767771741-17 86 0.061646 hybrid +139_2-13 Q0 KILT_279293-18 87 0.054819 hybrid +139_2-13 Q0 MARCO_44_1488298674-1 88 0.053843 hybrid +139_2-13 Q0 MARCO_06_1104148657-241 89 0.053789 hybrid +139_2-13 Q0 MARCO_21_1383187790-13 90 0.052779 hybrid +139_2-13 Q0 MARCO_10_125884503-6 91 0.052065 hybrid +139_2-13 Q0 MARCO_00_767771741-9 92 0.051856 hybrid +139_2-13 Q0 MARCO_40_817653402-1 93 0.051586 hybrid +139_2-13 Q0 MARCO_28_447968862-1 94 0.051169 hybrid +139_2-13 Q0 MARCO_00_767771741-21 95 0.047400 hybrid +139_2-13 Q0 MARCO_55_1281712551-4 96 0.040425 hybrid +139_2-13 Q0 MARCO_15_138791254-3 97 0.038118 hybrid +139_2-13 Q0 MARCO_45_1438641590-5 98 0.036771 hybrid +139_2-13 Q0 MARCO_00_767771741-5 99 0.034774 hybrid +139_2-13 Q0 MARCO_50_1460428770-38 100 0.030267 hybrid +139_2-15 Q0 MARCO_03_442514811-4 1 0.500000 hybrid +139_2-15 Q0 MARCO_29_1213003697-13 2 0.444280 hybrid +139_2-15 Q0 MARCO_05_811761166-1 3 0.378056 hybrid +139_2-15 Q0 MARCO_29_1213003697-15 4 0.340634 hybrid +139_2-15 Q0 MARCO_05_812510161-16 5 0.336710 hybrid +139_2-15 Q0 MARCO_30_1081756789-12 6 0.312243 hybrid +139_2-15 Q0 MARCO_22_1581780845-10 7 0.274964 hybrid +139_2-15 Q0 MARCO_30_92466635-5 8 0.264851 hybrid +139_2-15 Q0 MARCO_50_636768984-3 9 0.264203 hybrid +139_2-15 Q0 MARCO_36_1005338413-6 10 0.257239 hybrid +139_2-15 Q0 MARCO_30_151874420-2 11 0.256983 hybrid +139_2-15 Q0 MARCO_02_1576426441-2 12 0.241444 hybrid +139_2-15 Q0 MARCO_00_885435574-3 13 0.219637 hybrid +139_2-15 Q0 MARCO_55_251598823-12 14 0.215606 hybrid +139_2-15 Q0 MARCO_01_1679006693-12 15 0.179262 hybrid +139_2-15 Q0 MARCO_59_604123824-4 16 0.178209 hybrid +139_2-15 Q0 MARCO_41_291717801-3 17 0.159374 hybrid +139_2-15 Q0 MARCO_27_1105973472-5 18 0.139365 hybrid +139_2-15 Q0 MARCO_36_1004519590-1 19 0.135481 hybrid +139_2-15 Q0 MARCO_45_1437052426-4 20 0.128989 hybrid +139_2-15 Q0 MARCO_15_132265984-1 21 0.116432 hybrid +139_2-15 Q0 MARCO_00_885435574-4 22 0.106699 hybrid +139_2-15 Q0 MARCO_51_1632374115-5 23 0.106087 hybrid +139_2-15 Q0 MARCO_41_291717801-4 24 0.103182 hybrid +139_2-15 Q0 MARCO_30_1004298367-11 25 0.098508 hybrid +139_2-15 Q0 MARCO_41_291717801-2 26 0.080392 hybrid +139_2-15 Q0 MARCO_15_134149668-7 27 0.077530 hybrid +139_2-15 Q0 MARCO_30_129576355-2 28 0.072577 hybrid +139_2-15 Q0 MARCO_01_1679006693-13 29 0.069083 hybrid +139_2-15 Q0 MARCO_30_1004298367-3 30 0.067035 hybrid +139_2-15 Q0 MARCO_45_1436807476-2 31 0.066889 hybrid +139_2-15 Q0 MARCO_30_1004298367-1 32 0.061344 hybrid +139_2-15 Q0 MARCO_41_1153928301-38 33 0.059513 hybrid +139_2-15 Q0 MARCO_30_1004298367-5 34 0.057861 hybrid +139_2-15 Q0 MARCO_55_249562011-2 35 0.052844 hybrid +139_2-15 Q0 MARCO_21_1442314510-6 36 0.051046 hybrid +139_2-15 Q0 MARCO_55_251758340-10 37 0.042358 hybrid +139_2-15 Q0 MARCO_30_1004298367-4 38 0.041271 hybrid +139_2-15 Q0 MARCO_41_291703845-5 39 0.032841 hybrid +139_2-15 Q0 MARCO_41_291703845-4 40 0.032020 hybrid +139_2-15 Q0 MARCO_15_134315224-2 41 0.017613 hybrid +139_2-15 Q0 MARCO_29_1213003697-12 42 0.011023 hybrid +139_2-15 Q0 MARCO_50_2500659909-19 43 0.007486 hybrid +139_2-15 Q0 MARCO_27_1105973472-4 44 0.005419 hybrid +139_2-15 Q0 MARCO_10_80732500-7 45 0.005385 hybrid +139_2-15 Q0 MARCO_38_1493960108-3 46 0.004770 hybrid +139_2-15 Q0 MARCO_06_227410351-2 47 -0.021006 hybrid +139_2-15 Q0 MARCO_35_1140896639-5 48 -0.021374 hybrid +139_2-15 Q0 MARCO_30_151772794-18 49 -0.022537 hybrid +139_2-15 Q0 MARCO_41_291703845-3 50 -0.025169 hybrid +139_2-15 Q0 MARCO_20_1690800266-3 51 -0.033220 hybrid +139_2-15 Q0 MARCO_15_133965036-1 52 -0.033740 hybrid +139_2-15 Q0 MARCO_30_1004298367-7 53 -0.036829 hybrid +139_2-15 Q0 MARCO_30_91898173-4 54 -0.038127 hybrid +139_2-15 Q0 MARCO_44_35321293-7 55 -0.039658 hybrid +139_2-15 Q0 MARCO_15_133602246-1 56 -0.046774 hybrid +139_2-15 Q0 MARCO_08_1479620216-1 57 -0.047866 hybrid +139_2-15 Q0 MARCO_05_812566090-15 58 -0.051026 hybrid +139_2-15 Q0 MARCO_07_1115987161-2 59 -0.061431 hybrid +139_2-15 Q0 MARCO_45_1436893275-2 60 -0.076336 hybrid +139_2-15 Q0 MARCO_30_1004336912-1 61 -0.076985 hybrid +139_2-15 Q0 MARCO_23_1830774907-5 62 -0.078985 hybrid +139_2-15 Q0 MARCO_41_1116835327-21 63 -0.080086 hybrid +139_2-15 Q0 MARCO_22_1583169163-6 64 -0.087336 hybrid +139_2-15 Q0 MARCO_30_1081715671-8 65 -0.091477 hybrid +139_2-15 Q0 MARCO_20_1116057043-6 66 -0.095769 hybrid +139_2-15 Q0 MARCO_29_1203090286-8 67 -0.098401 hybrid +139_2-15 Q0 KILT_1195166-19 68 -0.106177 hybrid +139_2-15 Q0 MARCO_29_1213003697-16 69 -0.107244 hybrid +139_2-15 Q0 MARCO_19_2045838605-10 70 -0.110008 hybrid +139_2-15 Q0 MARCO_29_1419134113-4 71 -0.110157 hybrid +139_2-15 Q0 MARCO_29_1213003697-14 72 -0.111969 hybrid +139_2-15 Q0 MARCO_55_252307447-2 73 -0.114705 hybrid +139_2-15 Q0 MARCO_31_644943902-1 74 -0.116615 hybrid +139_2-15 Q0 MARCO_50_636768984-4 75 -0.117320 hybrid +139_2-15 Q0 MARCO_14_335989648-1 76 -0.117511 hybrid +139_2-15 Q0 MARCO_59_603880583-4 77 -0.117618 hybrid +139_2-15 Q0 MARCO_30_1004033801-4 78 -0.118129 hybrid +139_2-15 Q0 MARCO_22_1583169163-7 79 -0.121185 hybrid +139_2-15 Q0 KILT_43678518-2 80 -0.123772 hybrid +139_2-15 Q0 MARCO_15_133864085-11 81 -0.125910 hybrid +139_2-15 Q0 MARCO_44_1689960116-17 82 -0.127579 hybrid +139_2-15 Q0 MARCO_59_603880583-1 83 -0.132582 hybrid +139_2-15 Q0 MARCO_30_151772794-2 84 -0.132938 hybrid +139_2-15 Q0 MARCO_41_291717801-1 85 -0.133489 hybrid +139_2-15 Q0 MARCO_24_1015058943-7 86 -0.134795 hybrid +139_2-15 Q0 MARCO_41_291703845-1 87 -0.135790 hybrid +139_2-15 Q0 MARCO_14_335992199-3 88 -0.136413 hybrid +139_2-15 Q0 MARCO_56_504630953-1 89 -0.138486 hybrid +139_2-15 Q0 MARCO_53_202802158-6 90 -0.142189 hybrid +139_2-15 Q0 MARCO_30_1004298367-8 91 -0.142703 hybrid +139_2-15 Q0 MARCO_30_1004336912-6 92 -0.144514 hybrid +139_2-15 Q0 MARCO_15_134149668-1 93 -0.150273 hybrid +139_2-15 Q0 MARCO_57_1435926667-9 94 -0.151324 hybrid +139_2-15 Q0 MARCO_55_1708077747-1 95 -0.155928 hybrid +139_2-15 Q0 MARCO_06_1084360090-147 96 -0.156633 hybrid +139_2-15 Q0 MARCO_32_597664805-7 97 -0.157916 hybrid +139_2-15 Q0 MARCO_51_1632374115-4 98 -0.161546 hybrid +139_2-15 Q0 MARCO_21_1038592258-1 99 -0.166372 hybrid +139_2-15 Q0 MARCO_51_1632374115-1 100 -0.168633 hybrid +139_2-17 Q0 MARCO_20_1605863250-2 1 0.499998 hybrid +139_2-17 Q0 MARCO_03_1672793416-4 2 0.466502 hybrid +139_2-17 Q0 MARCO_34_1720678160-8 3 0.464108 hybrid +139_2-17 Q0 MARCO_50_927157772-10 4 0.448262 hybrid +139_2-17 Q0 MARCO_20_1605863250-3 5 0.425761 hybrid +139_2-17 Q0 MARCO_55_248101630-14 6 0.362663 hybrid +139_2-17 Q0 MARCO_21_1441777873-2 7 0.326799 hybrid +139_2-17 Q0 MARCO_27_1333781267-8 8 0.316761 hybrid +139_2-17 Q0 MARCO_00_800359058-1 9 0.313212 hybrid +139_2-17 Q0 MARCO_42_1365055656-5 10 0.292785 hybrid +139_2-17 Q0 MARCO_20_1606288135-1 11 0.288176 hybrid +139_2-17 Q0 MARCO_00_800389515-1 12 0.265632 hybrid +139_2-17 Q0 MARCO_20_17205373-8 13 0.250519 hybrid +139_2-17 Q0 MARCO_38_522517305-2 14 0.249531 hybrid +139_2-17 Q0 MARCO_06_1061559786-4 15 0.249380 hybrid +139_2-17 Q0 MARCO_24_1139334213-9 16 0.227859 hybrid +139_2-17 Q0 MARCO_20_1118084501-3 17 0.206854 hybrid +139_2-17 Q0 MARCO_20_1118084501-1 18 0.203806 hybrid +139_2-17 Q0 MARCO_47_1588560149-4 19 0.201145 hybrid +139_2-17 Q0 MARCO_01_1542381894-9 20 0.201016 hybrid +139_2-17 Q0 MARCO_00_800359058-2 21 0.199015 hybrid +139_2-17 Q0 MARCO_10_99721631-2 22 0.197635 hybrid +139_2-17 Q0 MARCO_10_234067446-15 23 0.194651 hybrid +139_2-17 Q0 MARCO_47_1588560149-1 24 0.194125 hybrid +139_2-17 Q0 MARCO_02_1541391721-4 25 0.192944 hybrid +139_2-17 Q0 MARCO_12_1448670747-7 26 0.178296 hybrid +139_2-17 Q0 MARCO_06_1089492850-58 27 0.170538 hybrid +139_2-17 Q0 MARCO_21_1441777873-3 28 0.170137 hybrid +139_2-17 Q0 MARCO_20_1606158803-1 29 0.165390 hybrid +139_2-17 Q0 MARCO_20_1606065216-1 30 0.162595 hybrid +139_2-17 Q0 MARCO_00_800411757-4 31 0.160551 hybrid +139_2-17 Q0 MARCO_52_598638637-3 32 0.159361 hybrid +139_2-17 Q0 MARCO_06_1089492850-62 33 0.155321 hybrid +139_2-17 Q0 MARCO_06_1061559786-220 34 0.148404 hybrid +139_2-17 Q0 MARCO_22_506709161-2 35 0.139095 hybrid +139_2-17 Q0 MARCO_21_1441777873-5 36 0.138008 hybrid +139_2-17 Q0 MARCO_38_522517305-5 37 0.134162 hybrid +139_2-17 Q0 MARCO_30_1046698867-2 38 0.131247 hybrid +139_2-17 Q0 MARCO_20_1605863250-1 39 0.128521 hybrid +139_2-17 Q0 MARCO_42_1365055656-2 40 0.122980 hybrid +139_2-17 Q0 MARCO_20_1605764720-3 41 0.120152 hybrid +139_2-17 Q0 MARCO_03_1672793416-1 42 0.114813 hybrid +139_2-17 Q0 MARCO_03_440557034-3 43 0.111062 hybrid +139_2-17 Q0 MARCO_58_1509985667-1 44 0.095461 hybrid +139_2-17 Q0 MARCO_03_1615114603-3 45 0.094340 hybrid +139_2-17 Q0 MARCO_20_1117949437-1 46 0.090105 hybrid +139_2-17 Q0 MARCO_16_2977700818-5 47 0.088160 hybrid +139_2-17 Q0 MARCO_05_811770907-3 48 0.083745 hybrid +139_2-17 Q0 MARCO_00_800411757-1 49 0.081636 hybrid +139_2-17 Q0 MARCO_33_269468433-4 50 0.073840 hybrid +139_2-17 Q0 MARCO_03_1475429148-2 51 0.071063 hybrid +139_2-17 Q0 MARCO_20_1605842545-2 52 0.066846 hybrid +139_2-17 Q0 MARCO_58_1504956994-1 53 0.066695 hybrid +139_2-17 Q0 MARCO_12_1448670747-6 54 0.062184 hybrid +139_2-17 Q0 MARCO_38_522616054-3 55 0.059274 hybrid +139_2-17 Q0 MARCO_30_1005913594-2 56 0.054953 hybrid +139_2-17 Q0 MARCO_25_1438100120-6 57 0.053116 hybrid +139_2-17 Q0 MARCO_11_759107555-10 58 0.052478 hybrid +139_2-17 Q0 MARCO_06_1177322031-249 59 0.052098 hybrid +139_2-17 Q0 MARCO_06_1061559786-5 60 0.051534 hybrid +139_2-17 Q0 MARCO_03_1696313556-1 61 0.047713 hybrid +139_2-17 Q0 MARCO_00_800379615-8 62 0.044031 hybrid +139_2-17 Q0 MARCO_01_695684696-4 63 0.041443 hybrid +139_2-17 Q0 MARCO_38_1499591957-12 64 0.041210 hybrid +139_2-17 Q0 MARCO_20_1605778030-1 65 0.039887 hybrid +139_2-17 Q0 MARCO_06_1295496154-26 66 0.038929 hybrid +139_2-17 Q0 MARCO_47_1588867018-2 67 0.038697 hybrid +139_2-17 Q0 MARCO_47_1588867018-1 68 0.038610 hybrid +139_2-17 Q0 MARCO_57_1435347084-9 69 0.034548 hybrid +139_2-17 Q0 MARCO_57_1435347084-7 70 0.034548 hybrid +139_2-17 Q0 MARCO_10_1552317412-2 71 0.034186 hybrid +139_2-17 Q0 MARCO_57_1435357985-10 72 0.031681 hybrid +139_2-17 Q0 MARCO_20_1606236294-7 73 0.030254 hybrid +139_2-17 Q0 MARCO_03_1672793416-3 74 0.028934 hybrid +139_2-17 Q0 MARCO_02_1541391721-7 75 0.026709 hybrid +139_2-17 Q0 MARCO_20_1606158803-2 76 0.026295 hybrid +139_2-17 Q0 MARCO_03_1218353262-4 77 0.026019 hybrid +139_2-17 Q0 MARCO_06_1089492850-155 78 0.023557 hybrid +139_2-17 Q0 MARCO_01_1542381894-8 79 0.021414 hybrid +139_2-17 Q0 MARCO_20_1109189048-6 80 0.020827 hybrid +139_2-17 Q0 MARCO_25_1438100120-1 81 0.018098 hybrid +139_2-17 Q0 MARCO_28_414927379-3 82 0.017477 hybrid +139_2-17 Q0 MARCO_32_517723958-5 83 0.016761 hybrid +139_2-17 Q0 MARCO_56_813580445-5 84 0.014118 hybrid +139_2-17 Q0 MARCO_24_1411729717-5 85 0.012971 hybrid +139_2-17 Q0 MARCO_02_452339507-27 86 0.012505 hybrid +139_2-17 Q0 MARCO_13_737836018-4 87 0.009810 hybrid +139_2-17 Q0 MARCO_39_672205264-21 88 0.008521 hybrid +139_2-17 Q0 MARCO_20_1606212630-1 89 0.002566 hybrid +139_2-17 Q0 MARCO_57_1435347084-10 90 0.002518 hybrid +139_2-17 Q0 MARCO_38_522517305-7 91 0.001867 hybrid +139_2-17 Q0 MARCO_06_1089492850-61 92 0.001617 hybrid +139_2-17 Q0 MARCO_30_1046698867-4 93 -0.007063 hybrid +139_2-17 Q0 MARCO_20_1606212630-2 94 -0.010392 hybrid +139_2-17 Q0 MARCO_48_1155543495-1 95 -0.012328 hybrid +139_2-17 Q0 MARCO_00_800359058-3 96 -0.013570 hybrid +139_2-17 Q0 MARCO_54_1856020519-3 97 -0.016778 hybrid +139_2-17 Q0 MARCO_20_1109189048-4 98 -0.021871 hybrid +139_2-17 Q0 KILT_50070454-1 99 -0.022371 hybrid +139_2-17 Q0 MARCO_17_2367515364-19 100 -0.023302 hybrid +139_2-19 Q0 MARCO_43_777882589-10 1 0.500000 hybrid +139_2-19 Q0 MARCO_06_1616915949-3 2 0.475248 hybrid +139_2-19 Q0 KILT_1661158-6 3 0.456285 hybrid +139_2-19 Q0 MARCO_06_1616813287-26 4 0.397530 hybrid +139_2-19 Q0 MARCO_17_1745780583-9 5 0.369595 hybrid +139_2-19 Q0 MARCO_18_461374169-9 6 0.356652 hybrid +139_2-19 Q0 KILT_16205018-8 7 0.284871 hybrid +139_2-19 Q0 MARCO_17_351829036-17 8 0.269950 hybrid +139_2-19 Q0 MARCO_15_1844440335-13 9 0.265956 hybrid +139_2-19 Q0 MARCO_35_20837600-5 10 0.256280 hybrid +139_2-19 Q0 KILT_3021133-2 11 0.244948 hybrid +139_2-19 Q0 MARCO_11_757966359-3 12 0.243475 hybrid +139_2-19 Q0 MARCO_21_1393994110-2 13 0.240501 hybrid +139_2-19 Q0 KILT_3919625-6 14 0.229967 hybrid +139_2-19 Q0 MARCO_10_127299484-35 15 0.224154 hybrid +139_2-19 Q0 MARCO_39_602834599-24 16 0.212828 hybrid +139_2-19 Q0 MARCO_48_373355835-4 17 0.211081 hybrid +139_2-19 Q0 KILT_36480039-3 18 0.199892 hybrid +139_2-19 Q0 MARCO_16_1655418715-5 19 0.197573 hybrid +139_2-19 Q0 MARCO_06_1261488820-222 20 0.193662 hybrid +139_2-19 Q0 MARCO_52_1380512475-15 21 0.180839 hybrid +139_2-19 Q0 KILT_2436129-7 22 0.171921 hybrid +139_2-19 Q0 MARCO_18_3244529140-23 23 0.164278 hybrid +139_2-19 Q0 MARCO_16_1715727283-4 24 0.147324 hybrid +139_2-19 Q0 MARCO_22_833981189-5 25 0.146322 hybrid +139_2-19 Q0 MARCO_15_1844440335-4 26 0.137482 hybrid +139_2-19 Q0 MARCO_39_609022944-9 27 0.118125 hybrid +139_2-19 Q0 KILT_2111232-2 28 0.111693 hybrid +139_2-19 Q0 MARCO_16_3042791707-2 29 0.103442 hybrid +139_2-19 Q0 KILT_16205018-3 30 0.099734 hybrid +139_2-19 Q0 MARCO_29_662582548-3 31 0.094768 hybrid +139_2-19 Q0 MARCO_50_1451349787-2 32 0.094357 hybrid +139_2-19 Q0 MARCO_18_461469975-10 33 0.092569 hybrid +139_2-19 Q0 KILT_4488360-5 34 0.092187 hybrid +139_2-19 Q0 MARCO_48_373355835-3 35 0.091108 hybrid +139_2-19 Q0 MARCO_16_3042631360-1 36 0.078601 hybrid +139_2-19 Q0 KILT_3389161-51 37 0.070470 hybrid +139_2-19 Q0 MARCO_16_2860520634-2 38 0.069438 hybrid +139_2-19 Q0 MARCO_17_2502230988-2 39 0.068544 hybrid +139_2-19 Q0 KILT_39841829-2 40 0.068532 hybrid +139_2-19 Q0 MARCO_10_125884503-5 41 0.056287 hybrid +139_2-19 Q0 MARCO_18_461469975-8 42 0.051351 hybrid +139_2-19 Q0 MARCO_39_609022944-26 43 0.051012 hybrid +139_2-19 Q0 MARCO_21_1386201033-1 44 0.039602 hybrid +139_2-19 Q0 MARCO_06_1222523195-36 45 0.038010 hybrid +139_2-19 Q0 MARCO_38_588898472-11 46 0.037765 hybrid +139_2-19 Q0 MARCO_17_3109358644-17 47 0.037122 hybrid +139_2-19 Q0 KILT_3684625-17 48 0.035995 hybrid +139_2-19 Q0 MARCO_59_294314446-3 49 0.031428 hybrid +139_2-19 Q0 MARCO_12_458195538-2 50 0.026689 hybrid +139_2-19 Q0 MARCO_00_767771741-15 51 0.024525 hybrid +139_2-19 Q0 MARCO_12_458195538-5 52 0.024489 hybrid +139_2-19 Q0 KILT_991577-9 53 0.012912 hybrid +139_2-19 Q0 MARCO_17_1745428315-23 54 0.009669 hybrid +139_2-19 Q0 MARCO_10_125884503-4 55 0.009485 hybrid +139_2-19 Q0 MARCO_38_588898472-12 56 0.008537 hybrid +139_2-19 Q0 KILT_35952999-16 57 0.003929 hybrid +139_2-19 Q0 MARCO_13_1225521447-6 58 0.001067 hybrid +139_2-19 Q0 KILT_3919625-3 59 -0.005794 hybrid +139_2-19 Q0 MARCO_41_1944972544-7 60 -0.007869 hybrid +139_2-19 Q0 KILT_3684625-18 61 -0.008459 hybrid +139_2-19 Q0 KILT_10301109-8 62 -0.010122 hybrid +139_2-19 Q0 MARCO_17_1745780583-10 63 -0.010403 hybrid +139_2-19 Q0 MARCO_17_2502230988-16 64 -0.011541 hybrid +139_2-19 Q0 KILT_2810118-8 65 -0.020102 hybrid +139_2-19 Q0 MARCO_06_1261488820-76 66 -0.022123 hybrid +139_2-19 Q0 MARCO_39_607306895-25 67 -0.023816 hybrid +139_2-19 Q0 MARCO_20_1115968476-10 68 -0.024001 hybrid +139_2-19 Q0 MARCO_12_458195538-7 69 -0.029473 hybrid +139_2-19 Q0 KILT_8137350-4 70 -0.034773 hybrid +139_2-19 Q0 MARCO_06_1104148657-478 71 -0.035947 hybrid +139_2-19 Q0 MARCO_17_2502230988-9 72 -0.037294 hybrid +139_2-19 Q0 KILT_3919625-4 73 -0.038099 hybrid +139_2-19 Q0 MARCO_21_1393994110-4 74 -0.041646 hybrid +139_2-19 Q0 KILT_44716370-2 75 -0.042481 hybrid +139_2-19 Q0 MARCO_54_1522279287-3 76 -0.043643 hybrid +139_2-19 Q0 MARCO_01_1693384867-2 77 -0.043983 hybrid +139_2-19 Q0 MARCO_16_1110424479-10 78 -0.045420 hybrid +139_2-19 Q0 MARCO_27_1751531703-3 79 -0.045813 hybrid +139_2-19 Q0 MARCO_05_424891530-20 80 -0.046010 hybrid +139_2-19 Q0 KILT_16205018-2 81 -0.049241 hybrid +139_2-19 Q0 MARCO_54_1522279287-4 82 -0.053819 hybrid +139_2-19 Q0 MARCO_00_767771741-20 83 -0.055071 hybrid +139_2-19 Q0 MARCO_06_1267389422-147 84 -0.056442 hybrid +139_2-19 Q0 KILT_36250587-6 85 -0.057474 hybrid +139_2-19 Q0 KILT_17727750-2 86 -0.061390 hybrid +139_2-19 Q0 KILT_68640-24 87 -0.062583 hybrid +139_2-19 Q0 MARCO_18_461469975-5 88 -0.065915 hybrid +139_2-19 Q0 KILT_7506737-3 89 -0.067435 hybrid +139_2-19 Q0 MARCO_52_1381573969-2 90 -0.070362 hybrid +139_2-19 Q0 MARCO_17_1745428315-24 91 -0.071108 hybrid +139_2-19 Q0 MARCO_06_1267389422-138 92 -0.072377 hybrid +139_2-19 Q0 MARCO_06_1314652620-300 93 -0.074184 hybrid +139_2-19 Q0 MARCO_44_1487706247-3 94 -0.075692 hybrid +139_2-19 Q0 MARCO_21_1393994110-8 95 -0.075948 hybrid +139_2-19 Q0 KILT_16205018-4 96 -0.076574 hybrid +139_2-19 Q0 MARCO_27_1748936781-60 97 -0.076669 hybrid +139_2-19 Q0 MARCO_18_2863537914-8 98 -0.079006 hybrid +139_2-19 Q0 MARCO_35_21994052-7 99 -0.080258 hybrid +139_2-19 Q0 KILT_25534283-3 100 -0.081683 hybrid +139_2-3 Q0 MARCO_29_1213003697-15 1 0.500000 hybrid +139_2-3 Q0 MARCO_05_811761166-1 2 0.242838 hybrid +139_2-3 Q0 MARCO_29_1213003697-14 3 0.221398 hybrid +139_2-3 Q0 MARCO_05_812510161-16 4 0.180221 hybrid +139_2-3 Q0 MARCO_45_1436893275-2 5 0.156506 hybrid +139_2-3 Q0 MARCO_31_1319602620-1 6 0.151799 hybrid +139_2-3 Q0 MARCO_47_921555391-19 7 0.113223 hybrid +139_2-3 Q0 MARCO_29_1213003697-13 8 0.100253 hybrid +139_2-3 Q0 MARCO_55_1708077747-1 9 0.042352 hybrid +139_2-3 Q0 MARCO_42_1361250839-1 10 0.037067 hybrid +139_2-3 Q0 MARCO_10_790302336-6 11 0.030079 hybrid +139_2-3 Q0 MARCO_55_248699225-1 12 0.027397 hybrid +139_2-3 Q0 KILT_2071938-1 13 0.026897 hybrid +139_2-3 Q0 MARCO_50_2502286195-117 14 -0.005691 hybrid +139_2-3 Q0 MARCO_03_442514811-4 15 -0.059710 hybrid +139_2-3 Q0 MARCO_29_1213003697-16 16 -0.067780 hybrid +139_2-3 Q0 MARCO_03_583240442-12 17 -0.078050 hybrid +139_2-3 Q0 MARCO_05_1353648283-1 18 -0.080941 hybrid +139_2-3 Q0 MARCO_24_1015058943-7 19 -0.097515 hybrid +139_2-3 Q0 MARCO_58_1588611162-2 20 -0.100515 hybrid +139_2-3 Q0 KILT_42725077-4 21 -0.100728 hybrid +139_2-3 Q0 MARCO_41_1128842538-2 22 -0.102500 hybrid +139_2-3 Q0 MARCO_30_91898173-1 23 -0.106191 hybrid +139_2-3 Q0 MARCO_30_92489099-1 24 -0.106769 hybrid +139_2-3 Q0 MARCO_45_1436872912-1 25 -0.117680 hybrid +139_2-3 Q0 KILT_49921015-2 26 -0.118639 hybrid +139_2-3 Q0 MARCO_35_1140876542-4 27 -0.120327 hybrid +139_2-3 Q0 MARCO_49_221963583-2 28 -0.130462 hybrid +139_2-3 Q0 KILT_48621266-1 29 -0.134341 hybrid +139_2-3 Q0 MARCO_00_1583631650-1 30 -0.137238 hybrid +139_2-3 Q0 MARCO_30_1087879020-45 31 -0.144352 hybrid +139_2-3 Q0 MARCO_25_1430899678-3 32 -0.148414 hybrid +139_2-3 Q0 MARCO_35_1141061275-16 33 -0.149530 hybrid +139_2-3 Q0 MARCO_58_1586390400-4 34 -0.150268 hybrid +139_2-3 Q0 MARCO_06_1118768745-52 35 -0.150487 hybrid +139_2-3 Q0 MARCO_54_1856020519-1 36 -0.155778 hybrid +139_2-3 Q0 MARCO_24_1015058943-6 37 -0.164357 hybrid +139_2-3 Q0 MARCO_19_977014903-12 38 -0.170161 hybrid +139_2-3 Q0 MARCO_42_1361250839-10 39 -0.172692 hybrid +139_2-3 Q0 MARCO_30_1083631665-8 40 -0.174805 hybrid +139_2-3 Q0 MARCO_05_811761166-4 41 -0.180412 hybrid +139_2-3 Q0 KILT_18294021-1 42 -0.186613 hybrid +139_2-3 Q0 MARCO_24_807844416-14 43 -0.189507 hybrid +139_2-3 Q0 MARCO_34_891588041-1 44 -0.196964 hybrid +139_2-3 Q0 MARCO_04_185938976-3 45 -0.197573 hybrid +139_2-3 Q0 MARCO_53_567871083-7 46 -0.202299 hybrid +139_2-3 Q0 MARCO_06_1067718722-448 47 -0.202546 hybrid +139_2-3 Q0 MARCO_08_1122245524-1 48 -0.204749 hybrid +139_2-3 Q0 MARCO_08_886180613-10 49 -0.221032 hybrid +139_2-3 Q0 MARCO_20_1692219283-1 50 -0.221408 hybrid +139_2-3 Q0 MARCO_04_823630524-6 51 -0.221570 hybrid +139_2-3 Q0 MARCO_06_1048856047-2 52 -0.223214 hybrid +139_2-3 Q0 MARCO_42_1376021116-7 53 -0.224714 hybrid +139_2-3 Q0 MARCO_40_175634242-12 54 -0.228283 hybrid +139_2-3 Q0 MARCO_55_1708070924-1 55 -0.228996 hybrid +139_2-3 Q0 MARCO_02_1576461610-7 56 -0.229562 hybrid +139_2-3 Q0 MARCO_30_1086552966-2 57 -0.231196 hybrid +139_2-3 Q0 MARCO_52_1205121010-3 58 -0.231924 hybrid +139_2-3 Q0 MARCO_20_1120646266-6 59 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1118209470-4 60 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1118342292-17 61 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1120761108-6 62 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1119845417-11 63 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1119573609-9 64 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1119098020-20 65 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1119831335-5 66 -0.235562 hybrid +139_2-3 Q0 MARCO_20_1118614528-11 67 -0.235562 hybrid +139_2-3 Q0 MARCO_47_1588565229-7 68 -0.241313 hybrid +139_2-3 Q0 MARCO_30_1006002195-8 69 -0.248383 hybrid +139_2-3 Q0 MARCO_24_807844416-9 70 -0.249555 hybrid +139_2-3 Q0 MARCO_01_696645674-6 71 -0.249683 hybrid +139_2-3 Q0 MARCO_11_718292918-4 72 -0.250636 hybrid +139_2-3 Q0 MARCO_36_1004101160-7 73 -0.252305 hybrid +139_2-3 Q0 MARCO_49_221959578-1 74 -0.255468 hybrid +139_2-3 Q0 MARCO_45_1435825218-8 75 -0.257706 hybrid +139_2-3 Q0 MARCO_45_1435834290-8 76 -0.257706 hybrid +139_2-3 Q0 MARCO_18_2157026710-21 77 -0.259653 hybrid +139_2-3 Q0 MARCO_55_1728732443-3 78 -0.259693 hybrid +139_2-3 Q0 MARCO_34_1235607540-5 79 -0.261406 hybrid +139_2-3 Q0 MARCO_30_153432119-23 80 -0.262303 hybrid +139_2-3 Q0 MARCO_30_1084362330-1 81 -0.263012 hybrid +139_2-3 Q0 MARCO_00_332585058-1 82 -0.265091 hybrid +139_2-3 Q0 MARCO_20_1692247042-1 83 -0.267319 hybrid +139_2-3 Q0 MARCO_11_866542750-1 84 -0.270066 hybrid +139_2-3 Q0 MARCO_03_442514811-1 85 -0.270607 hybrid +139_2-3 Q0 MARCO_20_1692664087-6 86 -0.270842 hybrid +139_2-3 Q0 MARCO_36_389851438-14 87 -0.271260 hybrid +139_2-3 Q0 MARCO_55_1289557559-1 88 -0.275126 hybrid +139_2-3 Q0 MARCO_55_250563385-3 89 -0.275214 hybrid +139_2-3 Q0 MARCO_53_1038819270-12 90 -0.275898 hybrid +139_2-3 Q0 MARCO_44_34763274-7 91 -0.278549 hybrid +139_2-3 Q0 MARCO_29_1423059765-1 92 -0.281593 hybrid +139_2-3 Q0 MARCO_03_1217637238-1 93 -0.281602 hybrid +139_2-3 Q0 MARCO_15_767015492-2 94 -0.282887 hybrid +139_2-3 Q0 MARCO_55_251758340-10 95 -0.284343 hybrid +139_2-3 Q0 MARCO_30_151678069-1 96 -0.285875 hybrid +139_2-3 Q0 MARCO_54_101729291-4 97 -0.289219 hybrid +139_2-3 Q0 MARCO_30_1048911033-4 98 -0.290872 hybrid +139_2-3 Q0 MARCO_36_1004502370-1 99 -0.291897 hybrid +139_2-3 Q0 MARCO_55_249249293-7 100 -0.292003 hybrid +139_2-5 Q0 MARCO_23_1083697909-9 1 0.500002 hybrid +139_2-5 Q0 MARCO_59_1031719785-37 2 0.491478 hybrid +139_2-5 Q0 MARCO_21_1394706798-5 3 0.477244 hybrid +139_2-5 Q0 MARCO_00_625037583-10 4 0.437862 hybrid +139_2-5 Q0 MARCO_36_1006722039-8 5 0.433623 hybrid +139_2-5 Q0 MARCO_00_625037583-13 6 0.420450 hybrid +139_2-5 Q0 MARCO_00_625037583-2 7 0.404761 hybrid +139_2-5 Q0 MARCO_19_2046601719-7 8 0.403758 hybrid +139_2-5 Q0 MARCO_00_625037583-5 9 0.392773 hybrid +139_2-5 Q0 KILT_34476548-54 10 0.357999 hybrid +139_2-5 Q0 MARCO_28_424276497-4 11 0.331880 hybrid +139_2-5 Q0 MARCO_36_1006722039-10 12 0.317074 hybrid +139_2-5 Q0 MARCO_00_625037583-8 13 0.313987 hybrid +139_2-5 Q0 MARCO_50_2141242685-9 14 0.313138 hybrid +139_2-5 Q0 MARCO_28_413735177-359 15 0.307623 hybrid +139_2-5 Q0 MARCO_59_1031719785-36 16 0.298088 hybrid +139_2-5 Q0 KILT_31143292-12 17 0.296923 hybrid +139_2-5 Q0 MARCO_00_625037583-14 18 0.294130 hybrid +139_2-5 Q0 MARCO_50_2141242685-7 19 0.291868 hybrid +139_2-5 Q0 MARCO_00_625037583-7 20 0.283949 hybrid +139_2-5 Q0 MARCO_00_625037583-3 21 0.267573 hybrid +139_2-5 Q0 MARCO_39_1572411714-12 22 0.261017 hybrid +139_2-5 Q0 MARCO_50_1988414295-3 23 0.258017 hybrid +139_2-5 Q0 MARCO_00_625037583-18 24 0.243808 hybrid +139_2-5 Q0 MARCO_47_292093638-3 25 0.239772 hybrid +139_2-5 Q0 MARCO_21_1387590590-4 26 0.236826 hybrid +139_2-5 Q0 MARCO_28_413735177-360 27 0.232578 hybrid +139_2-5 Q0 KILT_34476548-1 28 0.222356 hybrid +139_2-5 Q0 MARCO_06_1610069920-1 29 0.220222 hybrid +139_2-5 Q0 MARCO_20_1691433948-15 30 0.203497 hybrid +139_2-5 Q0 MARCO_00_625037583-12 31 0.200535 hybrid +139_2-5 Q0 MARCO_23_1083697909-1 32 0.199064 hybrid +139_2-5 Q0 MARCO_50_2141242685-31 33 0.185157 hybrid +139_2-5 Q0 MARCO_00_625037583-9 34 0.180603 hybrid +139_2-5 Q0 MARCO_30_92395788-11 35 0.180259 hybrid +139_2-5 Q0 MARCO_50_2141242685-36 36 0.178829 hybrid +139_2-5 Q0 KILT_3243119-4 37 0.176144 hybrid +139_2-5 Q0 MARCO_50_2141242685-37 38 0.165068 hybrid +139_2-5 Q0 MARCO_50_2141242685-38 39 0.162524 hybrid +139_2-5 Q0 MARCO_50_2141242685-11 40 0.162146 hybrid +139_2-5 Q0 MARCO_41_1106549820-42 41 0.160497 hybrid +139_2-5 Q0 MARCO_42_1360846126-3 42 0.160419 hybrid +139_2-5 Q0 MARCO_39_1572411714-11 43 0.155976 hybrid +139_2-5 Q0 MARCO_19_2046601719-1 44 0.155889 hybrid +139_2-5 Q0 MARCO_42_1360846126-6 45 0.147776 hybrid +139_2-5 Q0 MARCO_50_1988414295-1 46 0.144825 hybrid +139_2-5 Q0 MARCO_23_1083697909-10 47 0.142024 hybrid +139_2-5 Q0 MARCO_21_1394706798-2 48 0.141278 hybrid +139_2-5 Q0 MARCO_42_1376021116-6 49 0.136385 hybrid +139_2-5 Q0 MARCO_00_625037583-6 50 0.132063 hybrid +139_2-5 Q0 MARCO_50_2141242685-34 51 0.131884 hybrid +139_2-5 Q0 KILT_34476548-52 52 0.128694 hybrid +139_2-5 Q0 MARCO_19_2046601719-3 53 0.126953 hybrid +139_2-5 Q0 MARCO_30_92494994-7 54 0.123680 hybrid +139_2-5 Q0 MARCO_00_625037583-17 55 0.123278 hybrid +139_2-5 Q0 MARCO_30_1004128211-3 56 0.122702 hybrid +139_2-5 Q0 MARCO_48_1381587833-7 57 0.122441 hybrid +139_2-5 Q0 MARCO_19_2046601719-2 58 0.121504 hybrid +139_2-5 Q0 MARCO_50_2141242685-39 59 0.120228 hybrid +139_2-5 Q0 KILT_34476548-53 60 0.116316 hybrid +139_2-5 Q0 MARCO_39_657018618-11 61 0.116279 hybrid +139_2-5 Q0 MARCO_00_625037583-16 62 0.107958 hybrid +139_2-5 Q0 MARCO_48_1563495074-8 63 0.107312 hybrid +139_2-5 Q0 MARCO_36_1006722039-3 64 0.105969 hybrid +139_2-5 Q0 MARCO_00_625037583-11 65 0.101001 hybrid +139_2-5 Q0 MARCO_56_1469799650-3 66 0.091897 hybrid +139_2-5 Q0 MARCO_19_2045932910-9 67 0.090339 hybrid +139_2-5 Q0 KILT_11953685-6 68 0.087596 hybrid +139_2-5 Q0 MARCO_19_2056386164-7 69 0.082287 hybrid +139_2-5 Q0 MARCO_28_424276497-2 70 0.080166 hybrid +139_2-5 Q0 MARCO_36_1006722039-5 71 0.080054 hybrid +139_2-5 Q0 KILT_10191060-1 72 0.070407 hybrid +139_2-5 Q0 MARCO_25_1032864974-3 73 0.067457 hybrid +139_2-5 Q0 MARCO_19_2511462250-32 74 0.066301 hybrid +139_2-5 Q0 MARCO_19_2508822376-36 75 0.066301 hybrid +139_2-5 Q0 MARCO_50_1988414295-4 76 0.064038 hybrid +139_2-5 Q0 MARCO_43_777882589-2 77 0.062405 hybrid +139_2-5 Q0 MARCO_00_763890424-1 78 0.058282 hybrid +139_2-5 Q0 MARCO_19_2046601719-5 79 0.043104 hybrid +139_2-5 Q0 KILT_43456-10 80 0.024842 hybrid +139_2-5 Q0 MARCO_02_489907067-8 81 0.022650 hybrid +139_2-5 Q0 MARCO_49_522078792-10 82 0.020441 hybrid +139_2-5 Q0 MARCO_19_2046601719-6 83 0.019654 hybrid +139_2-5 Q0 MARCO_29_1381025251-1 84 0.019521 hybrid +139_2-5 Q0 MARCO_23_1083697909-2 85 0.019501 hybrid +139_2-5 Q0 MARCO_44_32366577-2 86 0.018776 hybrid +139_2-5 Q0 KILT_3243119-1 87 0.018175 hybrid +139_2-5 Q0 MARCO_28_412175224-11 88 0.016443 hybrid +139_2-5 Q0 KILT_1768422-1 89 0.016244 hybrid +139_2-5 Q0 MARCO_17_2901679750-20 90 0.010790 hybrid +139_2-5 Q0 MARCO_50_1988414295-2 91 0.004252 hybrid +139_2-5 Q0 MARCO_00_625037583-15 92 0.001384 hybrid +139_2-5 Q0 MARCO_53_82331049-23 93 -0.001119 hybrid +139_2-5 Q0 KILT_34476548-2 94 -0.002573 hybrid +139_2-5 Q0 MARCO_24_1317331494-109 95 -0.002851 hybrid +139_2-5 Q0 MARCO_50_2141242685-14 96 -0.003609 hybrid +139_2-5 Q0 MARCO_19_2046601719-12 97 -0.004326 hybrid +139_2-5 Q0 MARCO_42_1360846126-1 98 -0.004757 hybrid +139_2-5 Q0 MARCO_50_2141242685-30 99 -0.007160 hybrid +139_2-5 Q0 MARCO_50_2141242685-33 100 -0.010774 hybrid +139_2-7 Q0 MARCO_28_424276497-4 1 0.500000 hybrid +139_2-7 Q0 KILT_8636267-12 2 0.441878 hybrid +139_2-7 Q0 KILT_34476548-50 3 0.414256 hybrid +139_2-7 Q0 MARCO_39_1572411714-12 4 0.365246 hybrid +139_2-7 Q0 MARCO_39_1572411714-11 5 0.363907 hybrid +139_2-7 Q0 MARCO_19_2045932910-9 6 0.357392 hybrid +139_2-7 Q0 MARCO_31_1319602620-4 7 0.356737 hybrid +139_2-7 Q0 MARCO_47_292093638-4 8 0.345329 hybrid +139_2-7 Q0 MARCO_50_2141242685-41 9 0.339936 hybrid +139_2-7 Q0 MARCO_56_1469799650-2 10 0.339840 hybrid +139_2-7 Q0 MARCO_51_1634012455-2 11 0.334809 hybrid +139_2-7 Q0 MARCO_50_2141242685-36 12 0.305736 hybrid +139_2-7 Q0 MARCO_55_1730615337-6 13 0.305402 hybrid +139_2-7 Q0 MARCO_41_1199374521-41 14 0.299909 hybrid +139_2-7 Q0 MARCO_19_2046601719-2 15 0.298417 hybrid +139_2-7 Q0 MARCO_50_1986696809-17 16 0.295357 hybrid +139_2-7 Q0 MARCO_30_1004128211-3 17 0.290672 hybrid +139_2-7 Q0 MARCO_00_625037583-15 18 0.280997 hybrid +139_2-7 Q0 MARCO_50_2141242685-9 19 0.280780 hybrid +139_2-7 Q0 MARCO_30_1047651255-5 20 0.279799 hybrid +139_2-7 Q0 MARCO_30_92494994-7 21 0.278878 hybrid +139_2-7 Q0 MARCO_47_292093638-3 22 0.278118 hybrid +139_2-7 Q0 MARCO_19_2046601719-7 23 0.273365 hybrid +139_2-7 Q0 MARCO_23_1083697909-2 24 0.271306 hybrid +139_2-7 Q0 MARCO_23_1083697909-1 25 0.270325 hybrid +139_2-7 Q0 MARCO_39_1572411714-1 26 0.264233 hybrid +139_2-7 Q0 MARCO_30_1047651255-4 27 0.260417 hybrid +139_2-7 Q0 MARCO_42_1360846126-6 28 0.252777 hybrid +139_2-7 Q0 MARCO_54_548247608-2 29 0.252133 hybrid +139_2-7 Q0 MARCO_28_424276497-1 30 0.243069 hybrid +139_2-7 Q0 MARCO_19_2046601719-10 31 0.241151 hybrid +139_2-7 Q0 MARCO_55_251598823-1 32 0.237182 hybrid +139_2-7 Q0 KILT_7774160-2 33 0.226140 hybrid +139_2-7 Q0 MARCO_30_152717065-2 34 0.217137 hybrid +139_2-7 Q0 MARCO_50_2141242685-38 35 0.210815 hybrid +139_2-7 Q0 MARCO_28_413735177-359 36 0.207522 hybrid +139_2-7 Q0 MARCO_19_2046601719-6 37 0.207317 hybrid +139_2-7 Q0 MARCO_50_2141242685-7 38 0.207080 hybrid +139_2-7 Q0 MARCO_50_2141242685-31 39 0.205761 hybrid +139_2-7 Q0 MARCO_55_1731089221-1 40 0.202492 hybrid +139_2-7 Q0 MARCO_45_1437030427-2 41 0.189857 hybrid +139_2-7 Q0 MARCO_28_424276497-2 42 0.180339 hybrid +139_2-7 Q0 MARCO_23_1083697909-4 43 0.179490 hybrid +139_2-7 Q0 MARCO_19_2045932910-12 44 0.172003 hybrid +139_2-7 Q0 MARCO_19_2056386164-7 45 0.171524 hybrid +139_2-7 Q0 MARCO_28_413735177-360 46 0.169148 hybrid +139_2-7 Q0 MARCO_36_1006722039-3 47 0.168163 hybrid +139_2-7 Q0 KILT_34476548-54 48 0.167668 hybrid +139_2-7 Q0 MARCO_23_1083697909-10 49 0.166687 hybrid +139_2-7 Q0 MARCO_50_2141242685-34 50 0.166618 hybrid +139_2-7 Q0 MARCO_29_1381025251-1 51 0.165110 hybrid +139_2-7 Q0 MARCO_00_625037583-13 52 0.158226 hybrid +139_2-7 Q0 MARCO_19_2046601719-3 53 0.157535 hybrid +139_2-7 Q0 MARCO_19_2046601719-1 54 0.148885 hybrid +139_2-7 Q0 MARCO_29_1213003697-12 55 0.147284 hybrid +139_2-7 Q0 MARCO_50_1988414295-2 56 0.142326 hybrid +139_2-7 Q0 KILT_34476548-47 57 0.141494 hybrid +139_2-7 Q0 MARCO_47_1513152112-5 58 0.135965 hybrid +139_2-7 Q0 KILT_55748809-1 59 0.135157 hybrid +139_2-7 Q0 MARCO_00_625037583-11 60 0.133669 hybrid +139_2-7 Q0 MARCO_06_1610069920-1 61 0.128015 hybrid +139_2-7 Q0 KILT_34476548-1 62 0.127581 hybrid +139_2-7 Q0 MARCO_42_1376021116-6 63 0.127130 hybrid +139_2-7 Q0 MARCO_51_1634012455-1 64 0.127066 hybrid +139_2-7 Q0 MARCO_55_1278800307-3 65 0.126045 hybrid +139_2-7 Q0 MARCO_36_1005668060-17 66 0.121557 hybrid +139_2-7 Q0 MARCO_50_1433019997-36 67 0.111701 hybrid +139_2-7 Q0 MARCO_50_1451496117-18 68 0.111379 hybrid +139_2-7 Q0 MARCO_50_2141242685-14 69 0.111045 hybrid +139_2-7 Q0 MARCO_56_1469799650-4 70 0.107338 hybrid +139_2-7 Q0 MARCO_30_151744481-6 71 0.106694 hybrid +139_2-7 Q0 MARCO_36_1006722039-5 72 0.102356 hybrid +139_2-7 Q0 MARCO_00_625037583-14 73 0.102006 hybrid +139_2-7 Q0 MARCO_19_2046601719-5 74 0.101250 hybrid +139_2-7 Q0 MARCO_50_1978446476-6 75 0.100968 hybrid +139_2-7 Q0 MARCO_21_81355531-1 76 0.099424 hybrid +139_2-7 Q0 MARCO_30_1004128211-4 77 0.099143 hybrid +139_2-7 Q0 MARCO_19_2056386164-2 78 0.098716 hybrid +139_2-7 Q0 MARCO_30_92395788-11 79 0.096939 hybrid +139_2-7 Q0 KILT_34476548-55 80 0.093167 hybrid +139_2-7 Q0 MARCO_00_625037583-2 81 0.089504 hybrid +139_2-7 Q0 MARCO_50_1602288132-8 82 0.086701 hybrid +139_2-7 Q0 MARCO_50_2141242685-33 83 0.082008 hybrid +139_2-7 Q0 MARCO_50_1988414295-3 84 0.078482 hybrid +139_2-7 Q0 MARCO_00_625037583-10 85 0.074440 hybrid +139_2-7 Q0 KILT_34476548-15 86 0.074095 hybrid +139_2-7 Q0 MARCO_30_92290751-5 87 0.072591 hybrid +139_2-7 Q0 MARCO_03_583240442-12 88 0.069482 hybrid +139_2-7 Q0 MARCO_45_1436893275-2 89 0.066860 hybrid +139_2-7 Q0 MARCO_07_1112199034-2 90 0.065722 hybrid +139_2-7 Q0 MARCO_19_2056386164-1 91 0.063897 hybrid +139_2-7 Q0 MARCO_03_1672798894-4 92 0.063483 hybrid +139_2-7 Q0 MARCO_17_2901679750-20 93 0.059148 hybrid +139_2-7 Q0 MARCO_06_1128852897-97 94 0.057077 hybrid +139_2-7 Q0 MARCO_42_1360882062-4 95 0.055380 hybrid +139_2-7 Q0 MARCO_19_2046601719-4 96 0.054548 hybrid +139_2-7 Q0 MARCO_50_1988414295-1 97 0.053072 hybrid +139_2-7 Q0 MARCO_42_1360846126-3 98 0.051113 hybrid +139_2-7 Q0 MARCO_50_2140679057-12 99 0.045765 hybrid +139_2-7 Q0 MARCO_50_2141242685-39 100 0.045592 hybrid +139_2-9 Q0 MARCO_10_77686443-6 1 0.499999 hybrid +139_2-9 Q0 MARCO_55_1281693293-3 2 0.479604 hybrid +139_2-9 Q0 MARCO_42_1364593057-3 3 0.469463 hybrid +139_2-9 Q0 MARCO_00_767771741-2 4 0.443216 hybrid +139_2-9 Q0 MARCO_24_1139297902-14 5 0.435802 hybrid +139_2-9 Q0 MARCO_42_1360921322-8 6 0.432459 hybrid +139_2-9 Q0 MARCO_30_1092538935-5 7 0.424367 hybrid +139_2-9 Q0 MARCO_44_1488298674-2 8 0.396930 hybrid +139_2-9 Q0 MARCO_55_1701438850-2 9 0.372988 hybrid +139_2-9 Q0 MARCO_59_1032322888-3 10 0.363935 hybrid +139_2-9 Q0 MARCO_18_461374169-10 11 0.346413 hybrid +139_2-9 Q0 MARCO_06_1267389422-427 12 0.345631 hybrid +139_2-9 Q0 MARCO_00_767771741-19 13 0.327514 hybrid +139_2-9 Q0 MARCO_31_1319602620-2 14 0.324413 hybrid +139_2-9 Q0 MARCO_29_662582548-7 15 0.321234 hybrid +139_2-9 Q0 MARCO_23_894236714-1 16 0.307869 hybrid +139_2-9 Q0 MARCO_28_413735177-361 17 0.307622 hybrid +139_2-9 Q0 MARCO_55_1281693293-2 18 0.300762 hybrid +139_2-9 Q0 MARCO_30_92573188-9 19 0.300690 hybrid +139_2-9 Q0 MARCO_29_662582548-3 20 0.294424 hybrid +139_2-9 Q0 MARCO_00_767771741-1 21 0.291638 hybrid +139_2-9 Q0 MARCO_03_1672660320-1 22 0.287287 hybrid +139_2-9 Q0 MARCO_55_1701438850-4 23 0.278044 hybrid +139_2-9 Q0 KILT_20579666-1 24 0.276513 hybrid +139_2-9 Q0 MARCO_41_324917941-5 25 0.270303 hybrid +139_2-9 Q0 MARCO_30_92395788-6 26 0.265622 hybrid +139_2-9 Q0 MARCO_10_125884503-4 27 0.265251 hybrid +139_2-9 Q0 MARCO_28_413735177-362 28 0.260472 hybrid +139_2-9 Q0 MARCO_29_662582548-5 29 0.253653 hybrid +139_2-9 Q0 MARCO_30_1084424410-2 30 0.248448 hybrid +139_2-9 Q0 MARCO_42_1364593057-1 31 0.243530 hybrid +139_2-9 Q0 MARCO_30_91487108-8 32 0.242132 hybrid +139_2-9 Q0 MARCO_10_125884503-3 33 0.241933 hybrid +139_2-9 Q0 MARCO_28_447968862-1 34 0.241531 hybrid +139_2-9 Q0 KILT_1661158-7 35 0.240782 hybrid +139_2-9 Q0 MARCO_44_1488298674-3 36 0.228714 hybrid +139_2-9 Q0 MARCO_50_1178652254-14 37 0.227298 hybrid +139_2-9 Q0 MARCO_50_1976647136-18 38 0.225514 hybrid +139_2-9 Q0 MARCO_28_447968862-4 39 0.223557 hybrid +139_2-9 Q0 KILT_279293-18 40 0.223521 hybrid +139_2-9 Q0 MARCO_55_1701438850-3 41 0.212033 hybrid +139_2-9 Q0 MARCO_10_125884503-1 42 0.206020 hybrid +139_2-9 Q0 MARCO_29_662582548-10 43 0.200105 hybrid +139_2-9 Q0 MARCO_30_92494994-5 44 0.197741 hybrid +139_2-9 Q0 MARCO_36_1003085916-10 45 0.196566 hybrid +139_2-9 Q0 KILT_54663095-1 46 0.191731 hybrid +139_2-9 Q0 MARCO_55_1281693293-4 47 0.184308 hybrid +139_2-9 Q0 MARCO_29_662582548-2 48 0.183690 hybrid +139_2-9 Q0 KILT_20579666-2 49 0.182872 hybrid +139_2-9 Q0 KILT_18077026-1 50 0.178949 hybrid +139_2-9 Q0 MARCO_10_125884503-5 51 0.178664 hybrid +139_2-9 Q0 MARCO_23_243972315-5 52 0.177858 hybrid +139_2-9 Q0 MARCO_29_662582548-4 53 0.174827 hybrid +139_2-9 Q0 MARCO_29_662582548-12 54 0.173822 hybrid +139_2-9 Q0 MARCO_21_1383187790-13 55 0.171113 hybrid +139_2-9 Q0 MARCO_50_2141096457-25 56 0.170848 hybrid +139_2-9 Q0 MARCO_51_1634693693-2 57 0.167009 hybrid +139_2-9 Q0 MARCO_00_767771741-4 58 0.161502 hybrid +139_2-9 Q0 MARCO_55_1281712551-3 59 0.158816 hybrid +139_2-9 Q0 MARCO_44_1488298674-1 60 0.157344 hybrid +139_2-9 Q0 MARCO_30_92395788-7 61 0.155717 hybrid +139_2-9 Q0 MARCO_23_894236714-2 62 0.153526 hybrid +139_2-9 Q0 MARCO_00_767771741-3 63 0.152116 hybrid +139_2-9 Q0 MARCO_00_767771741-15 64 0.151495 hybrid +139_2-9 Q0 MARCO_28_447968862-2 65 0.146924 hybrid +139_2-9 Q0 MARCO_43_777882589-10 66 0.143462 hybrid +139_2-9 Q0 MARCO_42_1360921322-9 67 0.143379 hybrid +139_2-9 Q0 MARCO_00_767771741-9 68 0.139480 hybrid +139_2-9 Q0 MARCO_00_767771741-10 69 0.136708 hybrid +139_2-9 Q0 MARCO_50_2141096457-10 70 0.132260 hybrid +139_2-9 Q0 MARCO_00_767771741-6 71 0.132016 hybrid +139_2-9 Q0 MARCO_23_244000007-6 72 0.131891 hybrid +139_2-9 Q0 MARCO_50_1178652254-13 73 0.117135 hybrid +139_2-9 Q0 MARCO_57_1267949532-4 74 0.114509 hybrid +139_2-9 Q0 MARCO_16_1733227854-3 75 0.110446 hybrid +139_2-9 Q0 MARCO_28_447968862-3 76 0.104582 hybrid +139_2-9 Q0 KILT_6389709-2 77 0.098476 hybrid +139_2-9 Q0 MARCO_00_767771741-5 78 0.098399 hybrid +139_2-9 Q0 MARCO_44_1488298674-7 79 0.097299 hybrid +139_2-9 Q0 MARCO_18_461374169-9 80 0.090007 hybrid +139_2-9 Q0 MARCO_10_125884503-6 81 0.083289 hybrid +139_2-9 Q0 MARCO_03_1672660320-2 82 0.077880 hybrid +139_2-9 Q0 MARCO_04_786828265-1 83 0.077555 hybrid +139_2-9 Q0 MARCO_55_134814551-4 84 0.076702 hybrid +139_2-9 Q0 MARCO_42_1364593057-5 85 0.076003 hybrid +139_2-9 Q0 MARCO_00_767771741-7 86 0.074700 hybrid +139_2-9 Q0 MARCO_29_662582548-6 87 0.071911 hybrid +139_2-9 Q0 MARCO_29_662582548-8 88 0.068711 hybrid +139_2-9 Q0 MARCO_40_817653402-2 89 0.066305 hybrid +139_2-9 Q0 MARCO_55_1281712551-2 90 0.061163 hybrid +139_2-9 Q0 MARCO_23_243990978-4 91 0.053836 hybrid +139_2-9 Q0 MARCO_42_1364593057-4 92 0.052831 hybrid +139_2-9 Q0 MARCO_18_477374892-20 93 0.051159 hybrid +139_2-9 Q0 MARCO_40_817653402-1 94 0.048530 hybrid +139_2-9 Q0 MARCO_15_138791254-3 95 0.047035 hybrid +139_2-9 Q0 MARCO_21_1386201033-2 96 0.042907 hybrid +139_2-9 Q0 MARCO_04_786830584-1 97 0.032457 hybrid +139_2-9 Q0 MARCO_29_662582548-11 98 0.028689 hybrid +139_2-9 Q0 KILT_1661158-6 99 0.026146 hybrid +139_2-9 Q0 MARCO_29_662582548-1 100 0.024481 hybrid +140_1-1 Q0 MARCO_24_1721129865-5 1 0.499999 hybrid +140_1-1 Q0 MARCO_43_777079008-6 2 0.124772 hybrid +140_1-1 Q0 MARCO_50_1609616194-23 3 0.104931 hybrid +140_1-1 Q0 MARCO_24_1717477741-4 4 0.090651 hybrid +140_1-1 Q0 MARCO_30_1029169387-20 5 0.090508 hybrid +140_1-1 Q0 MARCO_41_1243447347-8 6 0.056058 hybrid +140_1-1 Q0 MARCO_41_1243447347-18 7 0.045978 hybrid +140_1-1 Q0 MARCO_24_1717477741-3 8 0.037299 hybrid +140_1-1 Q0 MARCO_30_823506076-2 9 -0.006022 hybrid +140_1-1 Q0 KILT_9475339-2 10 -0.012239 hybrid +140_1-1 Q0 MARCO_54_1592040185-1 11 -0.015516 hybrid +140_1-1 Q0 KILT_558393-6 12 -0.029640 hybrid +140_1-1 Q0 MARCO_50_1675783459-28 13 -0.031390 hybrid +140_1-1 Q0 KILT_41758870-4 14 -0.033786 hybrid +140_1-1 Q0 MARCO_48_1290962979-6 15 -0.041038 hybrid +140_1-1 Q0 KILT_41758870-1 16 -0.050492 hybrid +140_1-1 Q0 MARCO_24_1717477741-6 17 -0.050978 hybrid +140_1-1 Q0 MARCO_50_1609616194-9 18 -0.052640 hybrid +140_1-1 Q0 MARCO_20_1740315606-132 19 -0.053706 hybrid +140_1-1 Q0 MARCO_48_1290962979-5 20 -0.057961 hybrid +140_1-1 Q0 MARCO_52_1181039218-18 21 -0.060151 hybrid +140_1-1 Q0 MARCO_50_1619454619-7 22 -0.066849 hybrid +140_1-1 Q0 KILT_11053216-5 23 -0.069994 hybrid +140_1-1 Q0 MARCO_41_1243447347-64 24 -0.080398 hybrid +140_1-1 Q0 MARCO_56_1312702703-7 25 -0.081994 hybrid +140_1-1 Q0 MARCO_24_1717477741-2 26 -0.086266 hybrid +140_1-1 Q0 KILT_14021789-3 27 -0.089860 hybrid +140_1-1 Q0 MARCO_41_1243447347-13 28 -0.091478 hybrid +140_1-1 Q0 MARCO_24_1717477741-11 29 -0.092220 hybrid +140_1-1 Q0 MARCO_24_1717297314-3 30 -0.092665 hybrid +140_1-1 Q0 MARCO_39_600507896-35 31 -0.093132 hybrid +140_1-1 Q0 MARCO_20_1740315606-45 32 -0.095467 hybrid +140_1-1 Q0 MARCO_24_1717477741-5 33 -0.098494 hybrid +140_1-1 Q0 MARCO_41_1243447347-43 34 -0.101390 hybrid +140_1-1 Q0 MARCO_54_1592040185-2 35 -0.106915 hybrid +140_1-1 Q0 MARCO_19_2058367822-16 36 -0.107329 hybrid +140_1-1 Q0 MARCO_50_1609616194-22 37 -0.108217 hybrid +140_1-1 Q0 MARCO_41_1403988265-21 38 -0.110739 hybrid +140_1-1 Q0 MARCO_41_1243447347-4 39 -0.114865 hybrid +140_1-1 Q0 KILT_41758870-3 40 -0.115412 hybrid +140_1-1 Q0 MARCO_57_1265761781-2 41 -0.115612 hybrid +140_1-1 Q0 MARCO_22_1491474537-18 42 -0.118827 hybrid +140_1-1 Q0 MARCO_41_1243447347-29 43 -0.119706 hybrid +140_1-1 Q0 KILT_56379988-2 44 -0.120923 hybrid +140_1-1 Q0 MARCO_21_1434270021-9 45 -0.123269 hybrid +140_1-1 Q0 MARCO_41_1361259717-45 46 -0.123920 hybrid +140_1-1 Q0 MARCO_20_1740315606-89 47 -0.125090 hybrid +140_1-1 Q0 MARCO_11_717062360-2 48 -0.128956 hybrid +140_1-1 Q0 MARCO_40_1275346793-7 49 -0.134096 hybrid +140_1-1 Q0 KILT_9463403-2 50 -0.136750 hybrid +140_1-1 Q0 MARCO_50_1609616194-1 51 -0.136956 hybrid +140_1-1 Q0 MARCO_14_1775537560-5 52 -0.139079 hybrid +140_1-1 Q0 KILT_50607385-2 53 -0.143956 hybrid +140_1-1 Q0 MARCO_50_938334509-10 54 -0.148673 hybrid +140_1-1 Q0 MARCO_54_1471741241-4 55 -0.151024 hybrid +140_1-1 Q0 KILT_9425856-2 56 -0.154876 hybrid +140_1-1 Q0 KILT_12232249-1 57 -0.156480 hybrid +140_1-1 Q0 MARCO_49_1858156120-8 58 -0.158313 hybrid +140_1-1 Q0 MARCO_41_1243447347-47 59 -0.158884 hybrid +140_1-1 Q0 MARCO_20_1740315606-128 60 -0.161093 hybrid +140_1-1 Q0 MARCO_20_1740315606-106 61 -0.161972 hybrid +140_1-1 Q0 MARCO_39_600507896-24 62 -0.162730 hybrid +140_1-1 Q0 KILT_42725077-5 63 -0.163156 hybrid +140_1-1 Q0 MARCO_39_851633839-2 64 -0.165071 hybrid +140_1-1 Q0 MARCO_39_1697103382-34 65 -0.165313 hybrid +140_1-1 Q0 MARCO_24_1718985423-3 66 -0.167285 hybrid +140_1-1 Q0 KILT_60079923-3 67 -0.171060 hybrid +140_1-1 Q0 MARCO_50_1607111916-118 68 -0.171357 hybrid +140_1-1 Q0 MARCO_56_1026371295-91 69 -0.171673 hybrid +140_1-1 Q0 MARCO_19_2058367822-15 70 -0.173131 hybrid +140_1-1 Q0 MARCO_41_1243447347-57 71 -0.175217 hybrid +140_1-1 Q0 MARCO_30_823506076-5 72 -0.178137 hybrid +140_1-1 Q0 MARCO_41_1403988265-29 73 -0.178733 hybrid +140_1-1 Q0 MARCO_20_1740315606-74 74 -0.178920 hybrid +140_1-1 Q0 MARCO_54_1471741241-1 75 -0.179098 hybrid +140_1-1 Q0 KILT_24482056-2 76 -0.181936 hybrid +140_1-1 Q0 MARCO_41_1944414472-5 77 -0.182123 hybrid +140_1-1 Q0 MARCO_39_1697103382-11 78 -0.183222 hybrid +140_1-1 Q0 MARCO_50_1608026995-28 79 -0.184651 hybrid +140_1-1 Q0 MARCO_24_1717116209-8 80 -0.184678 hybrid +140_1-1 Q0 KILT_24837021-7 81 -0.186612 hybrid +140_1-1 Q0 MARCO_01_1176264230-7 82 -0.188063 hybrid +140_1-1 Q0 MARCO_41_1945440498-2 83 -0.188123 hybrid +140_1-1 Q0 MARCO_56_1312611314-4 84 -0.191398 hybrid +140_1-1 Q0 MARCO_20_1740315606-123 85 -0.191695 hybrid +140_1-1 Q0 MARCO_23_52978072-14 86 -0.192815 hybrid +140_1-1 Q0 MARCO_56_1312621479-2 87 -0.192821 hybrid +140_1-1 Q0 MARCO_41_1105427554-19 88 -0.194851 hybrid +140_1-1 Q0 MARCO_37_175915625-8 89 -0.195365 hybrid +140_1-1 Q0 MARCO_39_600507896-32 90 -0.197346 hybrid +140_1-1 Q0 KILT_56524758-1 91 -0.199258 hybrid +140_1-1 Q0 MARCO_22_1022044336-9 92 -0.200233 hybrid +140_1-1 Q0 MARCO_24_1717127738-9 93 -0.201420 hybrid +140_1-1 Q0 MARCO_20_1740315606-19 94 -0.201733 hybrid +140_1-1 Q0 MARCO_41_1243447347-74 95 -0.202137 hybrid +140_1-1 Q0 MARCO_41_1243447347-17 96 -0.202851 hybrid +140_1-1 Q0 MARCO_47_1601343000-3 97 -0.205664 hybrid +140_1-1 Q0 MARCO_18_3786917629-5 98 -0.207052 hybrid +140_1-1 Q0 MARCO_39_600507896-13 99 -0.207384 hybrid +140_1-1 Q0 MARCO_41_1243447347-24 100 -0.211818 hybrid +140_1-11 Q0 MARCO_09_675512804-64 1 0.500000 hybrid +140_1-11 Q0 KILT_69310-3 2 0.308040 hybrid +140_1-11 Q0 KILT_24834021-1 3 0.293076 hybrid +140_1-11 Q0 KILT_743397-6 4 0.292043 hybrid +140_1-11 Q0 MARCO_24_1718716761-3 5 0.268457 hybrid +140_1-11 Q0 KILT_24833975-1 6 0.199657 hybrid +140_1-11 Q0 MARCO_06_1128173535-141 7 0.193342 hybrid +140_1-11 Q0 MARCO_45_1439590880-1 8 0.190864 hybrid +140_1-11 Q0 KILT_102930-15 9 0.160480 hybrid +140_1-11 Q0 KILT_528218-2 10 0.156120 hybrid +140_1-11 Q0 MARCO_06_1074440562-316 11 0.149063 hybrid +140_1-11 Q0 KILT_7567521-3 12 0.141746 hybrid +140_1-11 Q0 KILT_369124-2 13 0.139805 hybrid +140_1-11 Q0 MARCO_06_1313842738-342 14 0.110964 hybrid +140_1-11 Q0 MARCO_19_978117499-20 15 0.101877 hybrid +140_1-11 Q0 MARCO_50_2375283801-26 16 0.099296 hybrid +140_1-11 Q0 KILT_2098301-3 17 0.092252 hybrid +140_1-11 Q0 MARCO_18_475874259-7 18 0.091215 hybrid +140_1-11 Q0 MARCO_05_813893950-4 19 0.080804 hybrid +140_1-11 Q0 MARCO_49_1582867461-3 20 0.078013 hybrid +140_1-11 Q0 MARCO_49_1595233115-4 21 0.078013 hybrid +140_1-11 Q0 MARCO_30_1079495440-5 22 0.064959 hybrid +140_1-11 Q0 MARCO_51_1248038688-5 23 0.051202 hybrid +140_1-11 Q0 MARCO_50_2499766905-15 24 0.041274 hybrid +140_1-11 Q0 MARCO_17_3701772983-13 25 0.036524 hybrid +140_1-11 Q0 KILT_27838734-46 26 0.028157 hybrid +140_1-11 Q0 MARCO_42_1363348138-5 27 0.021189 hybrid +140_1-11 Q0 MARCO_06_1282718199-277 28 0.009562 hybrid +140_1-11 Q0 KILT_102930-17 29 0.008265 hybrid +140_1-11 Q0 KILT_18958752-3 30 0.004275 hybrid +140_1-11 Q0 KILT_4155329-7 31 0.003453 hybrid +140_1-11 Q0 MARCO_17_3086138214-23 32 0.000206 hybrid +140_1-11 Q0 MARCO_50_2499766905-3 33 -0.005241 hybrid +140_1-11 Q0 MARCO_22_1120524286-2 34 -0.006252 hybrid +140_1-11 Q0 MARCO_18_3135720325-7 35 -0.007513 hybrid +140_1-11 Q0 MARCO_13_1113266432-20 36 -0.011234 hybrid +140_1-11 Q0 MARCO_32_596506926-9 37 -0.012187 hybrid +140_1-11 Q0 MARCO_06_1128360718-38 38 -0.012938 hybrid +140_1-11 Q0 MARCO_50_2499766905-14 39 -0.036439 hybrid +140_1-11 Q0 MARCO_06_1194455837-21 40 -0.052378 hybrid +140_1-11 Q0 KILT_10062924-1 41 -0.057803 hybrid +140_1-11 Q0 MARCO_19_978117499-23 42 -0.061430 hybrid +140_1-11 Q0 KILT_27838734-26 43 -0.069440 hybrid +140_1-11 Q0 MARCO_16_3035341936-2 44 -0.072848 hybrid +140_1-11 Q0 MARCO_18_1302442111-25 45 -0.074511 hybrid +140_1-11 Q0 MARCO_17_4120148769-100 46 -0.075025 hybrid +140_1-11 Q0 KILT_11249942-21 47 -0.078554 hybrid +140_1-11 Q0 MARCO_33_1313755245-2 48 -0.080039 hybrid +140_1-11 Q0 MARCO_27_1208864078-6 49 -0.081506 hybrid +140_1-11 Q0 MARCO_27_1208639225-8 50 -0.081506 hybrid +140_1-11 Q0 MARCO_50_2499766905-5 51 -0.089770 hybrid +140_1-11 Q0 MARCO_52_1329353275-11 52 -0.091072 hybrid +140_1-11 Q0 KILT_16919834-2 53 -0.092995 hybrid +140_1-11 Q0 KILT_10525469-1 54 -0.098169 hybrid +140_1-11 Q0 MARCO_51_1248038688-6 55 -0.100275 hybrid +140_1-11 Q0 KILT_37157102-2 56 -0.100987 hybrid +140_1-11 Q0 MARCO_06_1169909711-341 57 -0.101367 hybrid +140_1-11 Q0 MARCO_09_1825283769-2 58 -0.106264 hybrid +140_1-11 Q0 MARCO_51_1248038688-7 59 -0.107981 hybrid +140_1-11 Q0 MARCO_06_1281578791-14 60 -0.109944 hybrid +140_1-11 Q0 KILT_14946698-2 61 -0.112167 hybrid +140_1-11 Q0 KILT_15581268-9 62 -0.119108 hybrid +140_1-11 Q0 MARCO_06_1252257675-203 63 -0.121433 hybrid +140_1-11 Q0 KILT_3814520-7 64 -0.121943 hybrid +140_1-11 Q0 MARCO_17_3086119765-2 65 -0.122851 hybrid +140_1-11 Q0 KILT_18839068-48 66 -0.127659 hybrid +140_1-11 Q0 MARCO_51_1248038688-11 67 -0.128915 hybrid +140_1-11 Q0 MARCO_18_1302436306-3 68 -0.131236 hybrid +140_1-11 Q0 MARCO_04_1051168865-2 69 -0.131456 hybrid +140_1-11 Q0 KILT_27838734-35 70 -0.132909 hybrid +140_1-11 Q0 MARCO_06_1306201670-21 71 -0.134063 hybrid +140_1-11 Q0 MARCO_17_4120148769-24 72 -0.134555 hybrid +140_1-11 Q0 MARCO_32_596506926-7 73 -0.135910 hybrid +140_1-11 Q0 MARCO_07_1117840991-91 74 -0.137305 hybrid +140_1-11 Q0 KILT_27838734-45 75 -0.137878 hybrid +140_1-11 Q0 KILT_2912891-2 76 -0.148316 hybrid +140_1-11 Q0 KILT_1646987-2 77 -0.150292 hybrid +140_1-11 Q0 MARCO_09_1826382890-2 78 -0.151317 hybrid +140_1-11 Q0 KILT_28288511-1 79 -0.155418 hybrid +140_1-11 Q0 MARCO_19_978577694-5 80 -0.155565 hybrid +140_1-11 Q0 MARCO_17_4120148769-89 81 -0.157582 hybrid +140_1-11 Q0 MARCO_28_309785448-3 82 -0.158262 hybrid +140_1-11 Q0 MARCO_06_1216584447-135 83 -0.160386 hybrid +140_1-11 Q0 MARCO_06_1212726193-222 84 -0.161759 hybrid +140_1-11 Q0 KILT_413559-3 85 -0.162148 hybrid +140_1-11 Q0 KILT_27838734-39 86 -0.162716 hybrid +140_1-11 Q0 KILT_1694645-5 87 -0.165458 hybrid +140_1-11 Q0 KILT_27838734-25 88 -0.167050 hybrid +140_1-11 Q0 MARCO_16_3035341936-4 89 -0.171424 hybrid +140_1-11 Q0 KILT_540204-8 90 -0.174840 hybrid +140_1-11 Q0 KILT_27662703-19 91 -0.178579 hybrid +140_1-11 Q0 MARCO_51_1248038688-4 92 -0.181817 hybrid +140_1-11 Q0 MARCO_17_2509959814-7 93 -0.183973 hybrid +140_1-11 Q0 MARCO_09_1825131786-2 94 -0.185158 hybrid +140_1-11 Q0 KILT_7236130-2 95 -0.186151 hybrid +140_1-11 Q0 KILT_18895838-3 96 -0.189290 hybrid +140_1-11 Q0 MARCO_18_1643644756-3 97 -0.189675 hybrid +140_1-11 Q0 MARCO_40_841104946-2 98 -0.190359 hybrid +140_1-11 Q0 KILT_3687892-1 99 -0.190363 hybrid +140_1-11 Q0 KILT_22999381-1 100 -0.192130 hybrid +140_1-3 Q0 MARCO_30_1079495440-4 1 0.500001 hybrid +140_1-3 Q0 MARCO_50_1409583712-4 2 0.349962 hybrid +140_1-3 Q0 MARCO_30_1029169387-1 3 0.313347 hybrid +140_1-3 Q0 MARCO_24_1718716761-3 4 0.301170 hybrid +140_1-3 Q0 MARCO_55_1285550962-1 5 0.280785 hybrid +140_1-3 Q0 MARCO_22_1022149739-1 6 0.249423 hybrid +140_1-3 Q0 MARCO_22_1022149739-13 7 0.232443 hybrid +140_1-3 Q0 MARCO_30_1029169387-18 8 0.224214 hybrid +140_1-3 Q0 MARCO_30_1029169387-21 9 0.216070 hybrid +140_1-3 Q0 MARCO_30_1029169387-2 10 0.207749 hybrid +140_1-3 Q0 MARCO_30_1085040171-1 11 0.191187 hybrid +140_1-3 Q0 MARCO_24_1718716761-2 12 0.187996 hybrid +140_1-3 Q0 MARCO_44_1923788785-5 13 0.171046 hybrid +140_1-3 Q0 MARCO_24_1718256148-8 14 0.158513 hybrid +140_1-3 Q0 KILT_5706211-4 15 0.120851 hybrid +140_1-3 Q0 MARCO_24_1718716761-1 16 0.116198 hybrid +140_1-3 Q0 MARCO_55_1285550962-5 17 0.100213 hybrid +140_1-3 Q0 MARCO_24_1718256148-1 18 0.099792 hybrid +140_1-3 Q0 MARCO_24_1718716761-4 19 0.092339 hybrid +140_1-3 Q0 MARCO_22_1189094383-3 20 0.079889 hybrid +140_1-3 Q0 MARCO_22_1022149739-6 21 0.064139 hybrid +140_1-3 Q0 KILT_42725077-5 22 0.056442 hybrid +140_1-3 Q0 MARCO_24_1718256148-3 23 0.047915 hybrid +140_1-3 Q0 MARCO_24_1718716761-8 24 0.041044 hybrid +140_1-3 Q0 MARCO_44_52304687-52 25 0.029130 hybrid +140_1-3 Q0 MARCO_24_1719317684-11 26 0.026968 hybrid +140_1-3 Q0 MARCO_30_1092694148-1 27 0.026238 hybrid +140_1-3 Q0 MARCO_30_1085040171-6 28 0.025694 hybrid +140_1-3 Q0 MARCO_30_1082964817-27 29 0.023080 hybrid +140_1-3 Q0 MARCO_30_1029169387-20 30 0.021806 hybrid +140_1-3 Q0 MARCO_30_1092694148-2 31 0.011303 hybrid +140_1-3 Q0 MARCO_22_1186715244-11 32 0.007415 hybrid +140_1-3 Q0 MARCO_55_1285559246-4 33 0.006015 hybrid +140_1-3 Q0 MARCO_24_1720740630-1 34 -0.002450 hybrid +140_1-3 Q0 MARCO_24_1718256148-7 35 -0.004591 hybrid +140_1-3 Q0 MARCO_24_1718716761-5 36 -0.005268 hybrid +140_1-3 Q0 MARCO_30_1085040171-8 37 -0.009291 hybrid +140_1-3 Q0 MARCO_24_1129449019-5 38 -0.015850 hybrid +140_1-3 Q0 KILT_9064673-1 39 -0.023515 hybrid +140_1-3 Q0 MARCO_55_1285559246-1 40 -0.023638 hybrid +140_1-3 Q0 MARCO_24_1718621756-4 41 -0.026856 hybrid +140_1-3 Q0 MARCO_22_1189094383-1 42 -0.028041 hybrid +140_1-3 Q0 KILT_42725077-4 43 -0.032444 hybrid +140_1-3 Q0 MARCO_30_1029169387-6 44 -0.032824 hybrid +140_1-3 Q0 MARCO_24_1720330846-3 45 -0.035924 hybrid +140_1-3 Q0 MARCO_24_1720740630-3 46 -0.036874 hybrid +140_1-3 Q0 MARCO_30_1029169387-17 47 -0.041703 hybrid +140_1-3 Q0 MARCO_22_1022149739-2 48 -0.042565 hybrid +140_1-3 Q0 MARCO_50_1409583712-3 49 -0.044777 hybrid +140_1-3 Q0 MARCO_31_903377975-16 50 -0.050250 hybrid +140_1-3 Q0 MARCO_30_1029169387-9 51 -0.050659 hybrid +140_1-3 Q0 MARCO_30_1090377412-31 52 -0.051371 hybrid +140_1-3 Q0 MARCO_30_1029169387-13 53 -0.052956 hybrid +140_1-3 Q0 MARCO_30_1087383993-1 54 -0.053942 hybrid +140_1-3 Q0 MARCO_56_504916707-15 55 -0.058012 hybrid +140_1-3 Q0 MARCO_47_1604463871-10 56 -0.058030 hybrid +140_1-3 Q0 MARCO_30_1002352025-1 57 -0.062056 hybrid +140_1-3 Q0 MARCO_22_1022149739-12 58 -0.064712 hybrid +140_1-3 Q0 MARCO_45_1439590880-1 59 -0.069677 hybrid +140_1-3 Q0 MARCO_24_1718716761-7 60 -0.071001 hybrid +140_1-3 Q0 MARCO_30_1083067757-24 61 -0.073971 hybrid +140_1-3 Q0 MARCO_24_1720330846-4 62 -0.077754 hybrid +140_1-3 Q0 MARCO_24_1718256148-4 63 -0.079660 hybrid +140_1-3 Q0 KILT_43767091-1 64 -0.079768 hybrid +140_1-3 Q0 MARCO_47_1601343000-3 65 -0.083763 hybrid +140_1-3 Q0 MARCO_22_1189094383-4 66 -0.083860 hybrid +140_1-3 Q0 MARCO_30_1029169387-15 67 -0.086292 hybrid +140_1-3 Q0 MARCO_24_1718256148-2 68 -0.088851 hybrid +140_1-3 Q0 MARCO_30_1029169387-10 69 -0.090201 hybrid +140_1-3 Q0 MARCO_30_1087383993-3 70 -0.091504 hybrid +140_1-3 Q0 MARCO_50_1409583712-9 71 -0.091877 hybrid +140_1-3 Q0 MARCO_49_522173046-10 72 -0.093630 hybrid +140_1-3 Q0 MARCO_36_1004101160-1 73 -0.094827 hybrid +140_1-3 Q0 MARCO_22_1186632304-3 74 -0.095360 hybrid +140_1-3 Q0 MARCO_05_1363328058-4 75 -0.097974 hybrid +140_1-3 Q0 MARCO_08_823639828-1 76 -0.104757 hybrid +140_1-3 Q0 MARCO_30_1029169387-7 77 -0.106127 hybrid +140_1-3 Q0 MARCO_08_823639828-2 78 -0.108016 hybrid +140_1-3 Q0 MARCO_22_1022149739-5 79 -0.108572 hybrid +140_1-3 Q0 KILT_5706211-3 80 -0.113692 hybrid +140_1-3 Q0 MARCO_44_52304687-36 81 -0.118366 hybrid +140_1-3 Q0 MARCO_30_1029239516-3 82 -0.118436 hybrid +140_1-3 Q0 MARCO_30_1088024666-3 83 -0.119507 hybrid +140_1-3 Q0 MARCO_30_1002352025-7 84 -0.120901 hybrid +140_1-3 Q0 MARCO_55_1706922785-1 85 -0.123622 hybrid +140_1-3 Q0 MARCO_24_1720832649-13 86 -0.123922 hybrid +140_1-3 Q0 MARCO_30_1029169387-22 87 -0.126783 hybrid +140_1-3 Q0 MARCO_24_1718256148-6 88 -0.128131 hybrid +140_1-3 Q0 MARCO_31_902002927-5 89 -0.128901 hybrid +140_1-3 Q0 MARCO_30_1088024666-1 90 -0.131119 hybrid +140_1-3 Q0 MARCO_30_1029239516-5 91 -0.132072 hybrid +140_1-3 Q0 MARCO_55_1285550962-4 92 -0.134169 hybrid +140_1-3 Q0 MARCO_46_122758951-4 93 -0.135095 hybrid +140_1-3 Q0 MARCO_30_1029169387-12 94 -0.135219 hybrid +140_1-3 Q0 MARCO_30_1082303880-95 95 -0.138584 hybrid +140_1-3 Q0 MARCO_30_1085187389-9 96 -0.139592 hybrid +140_1-3 Q0 KILT_28024638-11 97 -0.141692 hybrid +140_1-3 Q0 MARCO_30_1087383993-10 98 -0.141992 hybrid +140_1-3 Q0 MARCO_30_1085563840-42 99 -0.142363 hybrid +140_1-3 Q0 MARCO_24_1720713401-12 100 -0.142563 hybrid +140_1-5 Q0 MARCO_16_1655162222-7 1 0.499998 hybrid +140_1-5 Q0 KILT_4414093-7 2 0.451343 hybrid +140_1-5 Q0 MARCO_16_1655162222-8 3 0.394268 hybrid +140_1-5 Q0 KILT_5618791-1 4 0.386517 hybrid +140_1-5 Q0 MARCO_01_1064363562-2 5 0.376135 hybrid +140_1-5 Q0 MARCO_22_1016658646-9 6 0.368879 hybrid +140_1-5 Q0 KILT_4414044-3 7 0.340110 hybrid +140_1-5 Q0 MARCO_43_981567595-2 8 0.315397 hybrid +140_1-5 Q0 KILT_70348-54 9 0.290355 hybrid +140_1-5 Q0 MARCO_27_527989993-3 10 0.289306 hybrid +140_1-5 Q0 KILT_46224264-11 11 0.267853 hybrid +140_1-5 Q0 MARCO_31_1435531071-7 12 0.257530 hybrid +140_1-5 Q0 KILT_4175490-1 13 0.242780 hybrid +140_1-5 Q0 MARCO_27_527989993-5 14 0.235393 hybrid +140_1-5 Q0 KILT_59210145-18 15 0.228880 hybrid +140_1-5 Q0 MARCO_39_608961831-13 16 0.220564 hybrid +140_1-5 Q0 KILT_40602928-1 17 0.207206 hybrid +140_1-5 Q0 KILT_7576135-1 18 0.204397 hybrid +140_1-5 Q0 MARCO_06_1297416555-45 19 0.201690 hybrid +140_1-5 Q0 MARCO_23_52915797-6 20 0.200084 hybrid +140_1-5 Q0 KILT_4414093-13 21 0.183917 hybrid +140_1-5 Q0 KILT_24977059-2 22 0.179015 hybrid +140_1-5 Q0 MARCO_06_1078907555-29 23 0.170274 hybrid +140_1-5 Q0 KILT_35652421-3 24 0.170081 hybrid +140_1-5 Q0 MARCO_39_1573918942-17 25 0.168996 hybrid +140_1-5 Q0 KILT_46223380-13 26 0.166642 hybrid +140_1-5 Q0 KILT_43665522-3 27 0.162951 hybrid +140_1-5 Q0 KILT_53975621-2 28 0.153957 hybrid +140_1-5 Q0 KILT_35230467-2 29 0.136216 hybrid +140_1-5 Q0 KILT_57135645-1 30 0.125121 hybrid +140_1-5 Q0 KILT_60119927-5 31 0.123266 hybrid +140_1-5 Q0 KILT_47211160-1 32 0.123008 hybrid +140_1-5 Q0 KILT_28717844-1 33 0.122799 hybrid +140_1-5 Q0 KILT_27763688-1 34 0.114814 hybrid +140_1-5 Q0 KILT_28717859-1 35 0.114066 hybrid +140_1-5 Q0 KILT_1867614-11 36 0.111285 hybrid +140_1-5 Q0 KILT_1327945-11 37 0.108851 hybrid +140_1-5 Q0 MARCO_30_823512109-2 38 0.104752 hybrid +140_1-5 Q0 KILT_12253874-1 39 0.100602 hybrid +140_1-5 Q0 MARCO_17_1782936879-8 40 0.095533 hybrid +140_1-5 Q0 KILT_27437444-1 41 0.087893 hybrid +140_1-5 Q0 KILT_46224264-7 42 0.085705 hybrid +140_1-5 Q0 KILT_17071545-2 43 0.085305 hybrid +140_1-5 Q0 KILT_4414093-9 44 0.084320 hybrid +140_1-5 Q0 KILT_57726569-2 45 0.081808 hybrid +140_1-5 Q0 MARCO_39_666438927-14 46 0.075093 hybrid +140_1-5 Q0 KILT_46333505-2 47 0.066401 hybrid +140_1-5 Q0 KILT_31746027-1 48 0.057106 hybrid +140_1-5 Q0 KILT_31331723-4 49 0.055634 hybrid +140_1-5 Q0 KILT_27764118-1 50 0.049153 hybrid +140_1-5 Q0 KILT_51759756-7 51 0.046324 hybrid +140_1-5 Q0 KILT_3137278-4 52 0.046119 hybrid +140_1-5 Q0 KILT_51759756-3 53 0.036825 hybrid +140_1-5 Q0 MARCO_36_379134137-2 54 0.029881 hybrid +140_1-5 Q0 KILT_4414093-12 55 0.027487 hybrid +140_1-5 Q0 KILT_6032624-15 56 0.023036 hybrid +140_1-5 Q0 KILT_17840084-2 57 0.022375 hybrid +140_1-5 Q0 KILT_5150131-8 58 0.021631 hybrid +140_1-5 Q0 KILT_2742621-2 59 0.020590 hybrid +140_1-5 Q0 KILT_28718618-1 60 0.017397 hybrid +140_1-5 Q0 KILT_10086736-2 61 0.015965 hybrid +140_1-5 Q0 KILT_4414044-4 62 0.015383 hybrid +140_1-5 Q0 MARCO_15_591308734-181 63 0.008008 hybrid +140_1-5 Q0 KILT_46364526-9 64 0.007185 hybrid +140_1-5 Q0 KILT_24101231-1 65 0.006987 hybrid +140_1-5 Q0 KILT_46333505-1 66 0.006623 hybrid +140_1-5 Q0 KILT_6032624-10 67 -0.000158 hybrid +140_1-5 Q0 KILT_43665522-2 68 -0.000558 hybrid +140_1-5 Q0 KILT_48756448-1 69 -0.002010 hybrid +140_1-5 Q0 KILT_4414093-8 70 -0.005037 hybrid +140_1-5 Q0 KILT_26519658-1 71 -0.006627 hybrid +140_1-5 Q0 MARCO_31_1435531071-6 72 -0.016942 hybrid +140_1-5 Q0 KILT_28718038-1 73 -0.017991 hybrid +140_1-5 Q0 MARCO_16_4122695792-65 74 -0.019261 hybrid +140_1-5 Q0 KILT_42748465-2 75 -0.020052 hybrid +140_1-5 Q0 KILT_45683381-1 76 -0.021655 hybrid +140_1-5 Q0 KILT_11074571-1 77 -0.023047 hybrid +140_1-5 Q0 MARCO_27_527989993-2 78 -0.024298 hybrid +140_1-5 Q0 MARCO_48_1215421451-1 79 -0.026628 hybrid +140_1-5 Q0 KILT_27436608-1 80 -0.031523 hybrid +140_1-5 Q0 MARCO_07_484342461-74 81 -0.033133 hybrid +140_1-5 Q0 KILT_48756448-2 82 -0.033208 hybrid +140_1-5 Q0 KILT_8881481-2 83 -0.039610 hybrid +140_1-5 Q0 KILT_14745738-2 84 -0.040571 hybrid +140_1-5 Q0 KILT_42085081-2 85 -0.040734 hybrid +140_1-5 Q0 KILT_15676396-1 86 -0.043519 hybrid +140_1-5 Q0 KILT_39090263-1 87 -0.043662 hybrid +140_1-5 Q0 KILT_4414044-2 88 -0.045600 hybrid +140_1-5 Q0 KILT_5618791-5 89 -0.045810 hybrid +140_1-5 Q0 KILT_38744598-1 90 -0.047765 hybrid +140_1-5 Q0 KILT_5696092-1 91 -0.047832 hybrid +140_1-5 Q0 KILT_24821085-17 92 -0.050926 hybrid +140_1-5 Q0 KILT_570934-1 93 -0.051385 hybrid +140_1-5 Q0 KILT_7334113-2 94 -0.056070 hybrid +140_1-5 Q0 KILT_6018857-1 95 -0.059259 hybrid +140_1-5 Q0 KILT_30969746-4 96 -0.060980 hybrid +140_1-5 Q0 MARCO_47_1588424836-11 97 -0.065075 hybrid +140_1-5 Q0 KILT_32594779-1 98 -0.067770 hybrid +140_1-5 Q0 MARCO_04_1059257054-4 99 -0.068035 hybrid +140_1-5 Q0 KILT_39068292-1 100 -0.070017 hybrid +140_1-7 Q0 MARCO_24_1720060243-4 1 0.499998 hybrid +140_1-7 Q0 MARCO_08_823639828-4 2 0.471484 hybrid +140_1-7 Q0 MARCO_03_445438352-4 3 0.458821 hybrid +140_1-7 Q0 KILT_52786719-2 4 0.363116 hybrid +140_1-7 Q0 MARCO_03_445438352-6 5 0.340541 hybrid +140_1-7 Q0 MARCO_03_446024727-6 6 0.340541 hybrid +140_1-7 Q0 MARCO_03_446178016-4 7 0.335810 hybrid +140_1-7 Q0 MARCO_03_446024727-4 8 0.310406 hybrid +140_1-7 Q0 MARCO_09_1233413749-20 9 0.299277 hybrid +140_1-7 Q0 MARCO_32_620327157-5 10 0.289684 hybrid +140_1-7 Q0 MARCO_19_2058367822-15 11 0.269216 hybrid +140_1-7 Q0 MARCO_07_1108772374-35 12 0.268688 hybrid +140_1-7 Q0 MARCO_15_1329384568-60 13 0.261716 hybrid +140_1-7 Q0 KILT_59342503-2 14 0.194873 hybrid +140_1-7 Q0 MARCO_41_1945492466-10 15 0.119370 hybrid +140_1-7 Q0 MARCO_25_1766316056-16 16 0.113584 hybrid +140_1-7 Q0 MARCO_03_445438352-5 17 0.097545 hybrid +140_1-7 Q0 MARCO_03_446024727-5 18 0.097537 hybrid +140_1-7 Q0 MARCO_16_1665554144-5 19 0.091894 hybrid +140_1-7 Q0 KILT_7234509-1 20 0.086317 hybrid +140_1-7 Q0 KILT_4700891-6 21 0.073000 hybrid +140_1-7 Q0 KILT_21036373-1 22 0.068055 hybrid +140_1-7 Q0 KILT_3376800-8 23 0.067048 hybrid +140_1-7 Q0 MARCO_24_1313905521-26 24 0.063817 hybrid +140_1-7 Q0 MARCO_28_330275034-72 25 0.061253 hybrid +140_1-7 Q0 MARCO_08_78456732-102 26 0.053543 hybrid +140_1-7 Q0 MARCO_41_1945492466-8 27 0.047622 hybrid +140_1-7 Q0 MARCO_03_446048207-4 28 0.031483 hybrid +140_1-7 Q0 MARCO_19_163316987-27 29 0.024035 hybrid +140_1-7 Q0 KILT_47324245-1 30 0.017503 hybrid +140_1-7 Q0 MARCO_32_620327157-1 31 0.013383 hybrid +140_1-7 Q0 KILT_60301067-1 32 0.009436 hybrid +140_1-7 Q0 MARCO_18_478113381-10 33 -0.002298 hybrid +140_1-7 Q0 MARCO_03_446048207-5 34 -0.009541 hybrid +140_1-7 Q0 MARCO_13_707082514-262 35 -0.013138 hybrid +140_1-7 Q0 MARCO_13_707082514-63 36 -0.013138 hybrid +140_1-7 Q0 KILT_32240997-3 37 -0.013775 hybrid +140_1-7 Q0 MARCO_03_446048207-3 38 -0.020346 hybrid +140_1-7 Q0 MARCO_07_1108562588-4 39 -0.022566 hybrid +140_1-7 Q0 MARCO_05_856186864-4 40 -0.025758 hybrid +140_1-7 Q0 MARCO_32_620321003-5 41 -0.027249 hybrid +140_1-7 Q0 KILT_32240997-1 42 -0.034073 hybrid +140_1-7 Q0 KILT_7472199-1 43 -0.039829 hybrid +140_1-7 Q0 MARCO_06_1089492850-56 44 -0.041726 hybrid +140_1-7 Q0 MARCO_06_1174651975-49 45 -0.049723 hybrid +140_1-7 Q0 MARCO_55_1285550962-1 46 -0.049806 hybrid +140_1-7 Q0 KILT_28024638-3 47 -0.058963 hybrid +140_1-7 Q0 MARCO_41_1945476110-6 48 -0.059260 hybrid +140_1-7 Q0 MARCO_31_1435519855-3 49 -0.059369 hybrid +140_1-7 Q0 MARCO_17_1796766689-5 50 -0.060812 hybrid +140_1-7 Q0 MARCO_23_52978072-4 51 -0.065931 hybrid +140_1-7 Q0 KILT_12529923-2 52 -0.071775 hybrid +140_1-7 Q0 KILT_46769717-1 53 -0.080047 hybrid +140_1-7 Q0 MARCO_16_1729844266-5 54 -0.080509 hybrid +140_1-7 Q0 KILT_2001834-2 55 -0.080552 hybrid +140_1-7 Q0 MARCO_28_1144807501-1 56 -0.085624 hybrid +140_1-7 Q0 KILT_3459253-3 57 -0.087019 hybrid +140_1-7 Q0 MARCO_28_418864433-2 58 -0.087521 hybrid +140_1-7 Q0 MARCO_28_418883757-14 59 -0.091999 hybrid +140_1-7 Q0 KILT_11498019-6 60 -0.092226 hybrid +140_1-7 Q0 KILT_29471696-1 61 -0.092832 hybrid +140_1-7 Q0 MARCO_14_760306623-4 62 -0.095858 hybrid +140_1-7 Q0 MARCO_19_978165107-6 63 -0.098378 hybrid +140_1-7 Q0 KILT_237554-1 64 -0.104601 hybrid +140_1-7 Q0 MARCO_13_1564793756-5 65 -0.106092 hybrid +140_1-7 Q0 MARCO_16_1665554144-4 66 -0.107828 hybrid +140_1-7 Q0 MARCO_17_3719565417-25 67 -0.112057 hybrid +140_1-7 Q0 KILT_13735673-1 68 -0.113283 hybrid +140_1-7 Q0 MARCO_42_1748156758-8 69 -0.115084 hybrid +140_1-7 Q0 MARCO_39_608961831-5 70 -0.115184 hybrid +140_1-7 Q0 MARCO_19_982431141-10 71 -0.115463 hybrid +140_1-7 Q0 KILT_2471151-3 72 -0.117844 hybrid +140_1-7 Q0 KILT_47833360-4 73 -0.118616 hybrid +140_1-7 Q0 KILT_298966-12 74 -0.118838 hybrid +140_1-7 Q0 KILT_46767961-1 75 -0.119435 hybrid +140_1-7 Q0 KILT_38987037-1 76 -0.124768 hybrid +140_1-7 Q0 MARCO_28_418864433-4 77 -0.126866 hybrid +140_1-7 Q0 MARCO_28_418864433-3 78 -0.127167 hybrid +140_1-7 Q0 MARCO_50_927498849-15 79 -0.127925 hybrid +140_1-7 Q0 MARCO_32_620327157-2 80 -0.127969 hybrid +140_1-7 Q0 MARCO_28_418883757-17 81 -0.129805 hybrid +140_1-7 Q0 KILT_596834-21 82 -0.130843 hybrid +140_1-7 Q0 MARCO_07_1110244199-155 83 -0.132639 hybrid +140_1-7 Q0 MARCO_14_785504474-18 84 -0.134614 hybrid +140_1-7 Q0 MARCO_34_1361287530-1 85 -0.135835 hybrid +140_1-7 Q0 MARCO_00_1609316991-143 86 -0.135931 hybrid +140_1-7 Q0 KILT_27013239-3 87 -0.137715 hybrid +140_1-7 Q0 MARCO_13_707082514-95 88 -0.138203 hybrid +140_1-7 Q0 MARCO_10_1202076834-1 89 -0.139363 hybrid +140_1-7 Q0 MARCO_42_1872882619-1 90 -0.139577 hybrid +140_1-7 Q0 KILT_55815352-1 91 -0.140331 hybrid +140_1-7 Q0 KILT_5696159-3 92 -0.140584 hybrid +140_1-7 Q0 MARCO_51_1247973662-5 93 -0.141508 hybrid +140_1-7 Q0 KILT_40602900-4 94 -0.142699 hybrid +140_1-7 Q0 KILT_19642102-1 95 -0.143475 hybrid +140_1-7 Q0 KILT_3632163-1 96 -0.147086 hybrid +140_1-7 Q0 MARCO_17_692443080-8 97 -0.147814 hybrid +140_1-7 Q0 MARCO_11_719867213-3 98 -0.149994 hybrid +140_1-7 Q0 MARCO_09_347901734-2 99 -0.150919 hybrid +140_1-7 Q0 KILT_47833360-3 100 -0.152767 hybrid +140_1-9 Q0 MARCO_16_1655162222-7 1 0.500000 hybrid +140_1-9 Q0 KILT_5618791-1 2 0.444135 hybrid +140_1-9 Q0 KILT_4414044-3 3 0.433071 hybrid +140_1-9 Q0 KILT_4414093-7 4 0.399917 hybrid +140_1-9 Q0 MARCO_01_1064363562-2 5 0.383678 hybrid +140_1-9 Q0 MARCO_16_1655162222-8 6 0.382091 hybrid +140_1-9 Q0 MARCO_22_1016658646-9 7 0.364958 hybrid +140_1-9 Q0 MARCO_06_1297416555-45 8 0.298524 hybrid +140_1-9 Q0 KILT_70348-54 9 0.292363 hybrid +140_1-9 Q0 MARCO_31_1435531071-7 10 0.263964 hybrid +140_1-9 Q0 KILT_7576135-1 11 0.263347 hybrid +140_1-9 Q0 KILT_4175490-1 12 0.259137 hybrid +140_1-9 Q0 KILT_28717859-1 13 0.255683 hybrid +140_1-9 Q0 KILT_47211160-1 14 0.254390 hybrid +140_1-9 Q0 KILT_35230467-2 15 0.246453 hybrid +140_1-9 Q0 KILT_46224264-11 16 0.246063 hybrid +140_1-9 Q0 MARCO_27_527989993-5 17 0.241089 hybrid +140_1-9 Q0 KILT_4414093-13 18 0.239700 hybrid +140_1-9 Q0 MARCO_39_608961831-13 19 0.233245 hybrid +140_1-9 Q0 KILT_46223380-13 20 0.229685 hybrid +140_1-9 Q0 MARCO_43_981567595-2 21 0.228216 hybrid +140_1-9 Q0 MARCO_23_52915797-6 22 0.225249 hybrid +140_1-9 Q0 KILT_28717844-1 23 0.225140 hybrid +140_1-9 Q0 KILT_40602928-1 24 0.216128 hybrid +140_1-9 Q0 KILT_3137278-4 25 0.208359 hybrid +140_1-9 Q0 KILT_5150131-8 26 0.200334 hybrid +140_1-9 Q0 MARCO_36_379134137-2 27 0.195637 hybrid +140_1-9 Q0 MARCO_07_484342461-74 28 0.188187 hybrid +140_1-9 Q0 MARCO_39_1573918942-17 29 0.187982 hybrid +140_1-9 Q0 KILT_35652421-3 30 0.155919 hybrid +140_1-9 Q0 KILT_59210145-18 31 0.155168 hybrid +140_1-9 Q0 KILT_4414093-12 32 0.150656 hybrid +140_1-9 Q0 KILT_10086736-2 33 0.148737 hybrid +140_1-9 Q0 KILT_57135645-1 34 0.145556 hybrid +140_1-9 Q0 KILT_24977059-2 35 0.137275 hybrid +140_1-9 Q0 KILT_17071545-2 36 0.134660 hybrid +140_1-9 Q0 MARCO_06_1078907555-29 37 0.129308 hybrid +140_1-9 Q0 KILT_43665522-3 38 0.117258 hybrid +140_1-9 Q0 KILT_1327945-11 39 0.111970 hybrid +140_1-9 Q0 MARCO_30_823512109-2 40 0.110094 hybrid +140_1-9 Q0 MARCO_47_1588424836-11 41 0.109812 hybrid +140_1-9 Q0 KILT_6032624-10 42 0.105355 hybrid +140_1-9 Q0 KILT_31331723-4 43 0.099693 hybrid +140_1-9 Q0 MARCO_27_527989993-3 44 0.097989 hybrid +140_1-9 Q0 KILT_12253874-1 45 0.092562 hybrid +140_1-9 Q0 MARCO_39_666438927-14 46 0.089326 hybrid +140_1-9 Q0 KILT_60119927-5 47 0.081985 hybrid +140_1-9 Q0 MARCO_39_862000400-1 48 0.079051 hybrid +140_1-9 Q0 KILT_1867614-11 49 0.072805 hybrid +140_1-9 Q0 KILT_24821085-17 50 0.072222 hybrid +140_1-9 Q0 MARCO_27_527989993-2 51 0.068814 hybrid +140_1-9 Q0 KILT_28718618-1 52 0.064801 hybrid +140_1-9 Q0 KILT_42748465-2 53 0.058980 hybrid +140_1-9 Q0 KILT_27763688-1 54 0.055580 hybrid +140_1-9 Q0 KILT_4414044-4 55 0.053884 hybrid +140_1-9 Q0 KILT_5618791-5 56 0.052919 hybrid +140_1-9 Q0 MARCO_17_1782936879-8 57 0.052457 hybrid +140_1-9 Q0 KILT_51759756-7 58 0.050455 hybrid +140_1-9 Q0 KILT_29771777-3 59 0.047790 hybrid +140_1-9 Q0 KILT_46224264-7 60 0.044969 hybrid +140_1-9 Q0 KILT_2742621-2 61 0.037024 hybrid +140_1-9 Q0 KILT_51759756-3 62 0.026010 hybrid +140_1-9 Q0 KILT_4414093-9 63 0.023261 hybrid +140_1-9 Q0 KILT_46333505-2 64 0.011945 hybrid +140_1-9 Q0 KILT_24101231-1 65 0.007761 hybrid +140_1-9 Q0 MARCO_28_957727341-18 66 0.006321 hybrid +140_1-9 Q0 KILT_11074571-1 67 0.006044 hybrid +140_1-9 Q0 MARCO_31_1435531071-6 68 0.004877 hybrid +140_1-9 Q0 KILT_17840084-2 69 0.002552 hybrid +140_1-9 Q0 KILT_4414044-2 70 -0.000785 hybrid +140_1-9 Q0 KILT_7334113-2 71 -0.002401 hybrid +140_1-9 Q0 KILT_43665522-2 72 -0.003551 hybrid +140_1-9 Q0 KILT_44470243-1 73 -0.004831 hybrid +140_1-9 Q0 KILT_41068483-1 74 -0.008084 hybrid +140_1-9 Q0 KILT_15676396-1 75 -0.011660 hybrid +140_1-9 Q0 KILT_24365570-1 76 -0.013544 hybrid +140_1-9 Q0 KILT_27764118-1 77 -0.014556 hybrid +140_1-9 Q0 KILT_28817295-1 78 -0.015026 hybrid +140_1-9 Q0 MARCO_09_352381855-7 79 -0.016063 hybrid +140_1-9 Q0 KILT_31746027-1 80 -0.020155 hybrid +140_1-9 Q0 KILT_28718038-1 81 -0.020310 hybrid +140_1-9 Q0 KILT_22676150-4 82 -0.021549 hybrid +140_1-9 Q0 KILT_53975621-2 83 -0.022145 hybrid +140_1-9 Q0 KILT_48621634-1 84 -0.022896 hybrid +140_1-9 Q0 KILT_5696092-1 85 -0.025532 hybrid +140_1-9 Q0 MARCO_16_4122695792-65 86 -0.025838 hybrid +140_1-9 Q0 MARCO_21_1389621870-11 87 -0.025855 hybrid +140_1-9 Q0 MARCO_24_1717841304-1 88 -0.029670 hybrid +140_1-9 Q0 KILT_27436608-1 89 -0.039269 hybrid +140_1-9 Q0 MARCO_48_1215421451-1 90 -0.040079 hybrid +140_1-9 Q0 KILT_57726569-2 91 -0.041133 hybrid +140_1-9 Q0 KILT_26519658-1 92 -0.042463 hybrid +140_1-9 Q0 KILT_4414093-8 93 -0.045758 hybrid +140_1-9 Q0 KILT_15676396-3 94 -0.046073 hybrid +140_1-9 Q0 MARCO_11_715781674-7 95 -0.046346 hybrid +140_1-9 Q0 KILT_26519893-1 96 -0.046447 hybrid +140_1-9 Q0 KILT_570934-1 97 -0.046510 hybrid +140_1-9 Q0 KILT_19951823-2 98 -0.049318 hybrid +140_1-9 Q0 KILT_46364526-9 99 -0.050740 hybrid +140_1-9 Q0 KILT_17084066-2 100 -0.050980 hybrid +140_2-1 Q0 KILT_42725077-5 1 0.500000 hybrid +140_2-1 Q0 MARCO_58_1505770958-4 2 0.455765 hybrid +140_2-1 Q0 MARCO_55_1285550962-5 3 0.323384 hybrid +140_2-1 Q0 KILT_42725077-2 4 0.274855 hybrid +140_2-1 Q0 MARCO_11_715977820-3 5 0.242139 hybrid +140_2-1 Q0 MARCO_30_1092694148-2 6 0.234622 hybrid +140_2-1 Q0 MARCO_17_692375270-43 7 0.182087 hybrid +140_2-1 Q0 MARCO_30_1092694148-1 8 0.159161 hybrid +140_2-1 Q0 MARCO_55_1285550962-1 9 0.157538 hybrid +140_2-1 Q0 KILT_42725077-4 10 0.144196 hybrid +140_2-1 Q0 MARCO_30_1092667965-1 11 0.129768 hybrid +140_2-1 Q0 MARCO_11_715977820-14 12 0.119163 hybrid +140_2-1 Q0 MARCO_11_716304225-13 13 0.098620 hybrid +140_2-1 Q0 MARCO_55_1281217641-1 14 0.097039 hybrid +140_2-1 Q0 KILT_42725077-3 15 0.087359 hybrid +140_2-1 Q0 MARCO_55_1285559246-4 16 0.068855 hybrid +140_2-1 Q0 MARCO_24_1720740630-3 17 0.068016 hybrid +140_2-1 Q0 KILT_42725077-6 18 0.063110 hybrid +140_2-1 Q0 KILT_44973671-1 19 0.054334 hybrid +140_2-1 Q0 KILT_52289180-4 20 0.051838 hybrid +140_2-1 Q0 MARCO_49_522173046-10 21 0.051023 hybrid +140_2-1 Q0 KILT_5706211-3 22 0.049376 hybrid +140_2-1 Q0 MARCO_30_1092694148-8 23 0.043929 hybrid +140_2-1 Q0 MARCO_24_1718716761-2 24 0.043743 hybrid +140_2-1 Q0 MARCO_30_1029169387-20 25 0.041841 hybrid +140_2-1 Q0 MARCO_28_309794017-3 26 0.035752 hybrid +140_2-1 Q0 MARCO_19_2047202465-3 27 0.034022 hybrid +140_2-1 Q0 KILT_53265757-1 28 0.033843 hybrid +140_2-1 Q0 KILT_41758870-1 29 0.024504 hybrid +140_2-1 Q0 MARCO_27_588776995-4 30 0.022633 hybrid +140_2-1 Q0 MARCO_30_1029169387-2 31 0.021261 hybrid +140_2-1 Q0 MARCO_55_1285550962-2 32 0.018015 hybrid +140_2-1 Q0 MARCO_11_716590866-16 33 0.010901 hybrid +140_2-1 Q0 KILT_47833907-1 34 0.006877 hybrid +140_2-1 Q0 KILT_34665811-3 35 0.005853 hybrid +140_2-1 Q0 MARCO_19_2047188347-1 36 0.005818 hybrid +140_2-1 Q0 MARCO_44_1923788785-5 37 0.005175 hybrid +140_2-1 Q0 MARCO_19_2047188347-6 38 0.004388 hybrid +140_2-1 Q0 KILT_44973671-2 39 0.001575 hybrid +140_2-1 Q0 MARCO_30_1092694148-4 40 -0.004340 hybrid +140_2-1 Q0 KILT_42725077-7 41 -0.009597 hybrid +140_2-1 Q0 KILT_42725077-1 42 -0.028754 hybrid +140_2-1 Q0 KILT_17237382-7 43 -0.028806 hybrid +140_2-1 Q0 KILT_47610149-6 44 -0.029356 hybrid +140_2-1 Q0 KILT_38186977-1 45 -0.030996 hybrid +140_2-1 Q0 MARCO_22_1016851450-7 46 -0.036972 hybrid +140_2-1 Q0 MARCO_49_522173046-11 47 -0.037419 hybrid +140_2-1 Q0 MARCO_47_1601337723-1 48 -0.037423 hybrid +140_2-1 Q0 MARCO_24_1718716761-3 49 -0.037708 hybrid +140_2-1 Q0 MARCO_08_823639828-2 50 -0.037818 hybrid +140_2-1 Q0 MARCO_56_1312611314-6 51 -0.042220 hybrid +140_2-1 Q0 MARCO_19_470062276-1 52 -0.046931 hybrid +140_2-1 Q0 KILT_5706211-4 53 -0.049224 hybrid +140_2-1 Q0 KILT_44905552-1 54 -0.049922 hybrid +140_2-1 Q0 MARCO_19_2047188347-5 55 -0.052701 hybrid +140_2-1 Q0 MARCO_50_1409583712-6 56 -0.053970 hybrid +140_2-1 Q0 MARCO_22_1016658646-13 57 -0.056765 hybrid +140_2-1 Q0 KILT_54453536-2 58 -0.057312 hybrid +140_2-1 Q0 KILT_12311661-1 59 -0.058825 hybrid +140_2-1 Q0 KILT_47610149-2 60 -0.059753 hybrid +140_2-1 Q0 MARCO_51_903670425-7 61 -0.061308 hybrid +140_2-1 Q0 MARCO_56_1312611314-8 62 -0.064794 hybrid +140_2-1 Q0 MARCO_19_962618007-15 63 -0.072267 hybrid +140_2-1 Q0 KILT_17911390-2 64 -0.073673 hybrid +140_2-1 Q0 KILT_23873212-2 65 -0.073821 hybrid +140_2-1 Q0 MARCO_30_1092694148-7 66 -0.081028 hybrid +140_2-1 Q0 KILT_46755470-1 67 -0.081272 hybrid +140_2-1 Q0 MARCO_50_1409583712-4 68 -0.085474 hybrid +140_2-1 Q0 MARCO_11_715977820-4 69 -0.086018 hybrid +140_2-1 Q0 MARCO_08_823623956-9 70 -0.086936 hybrid +140_2-1 Q0 MARCO_30_1092667965-10 71 -0.087166 hybrid +140_2-1 Q0 MARCO_30_1092694148-5 72 -0.088927 hybrid +140_2-1 Q0 MARCO_30_823492726-3 73 -0.088999 hybrid +140_2-1 Q0 MARCO_30_1092694148-3 74 -0.094776 hybrid +140_2-1 Q0 MARCO_27_588863416-42 75 -0.100522 hybrid +140_2-1 Q0 MARCO_47_1601337723-2 76 -0.105597 hybrid +140_2-1 Q0 MARCO_08_823639828-1 77 -0.110649 hybrid +140_2-1 Q0 MARCO_47_1601343000-1 78 -0.111089 hybrid +140_2-1 Q0 MARCO_55_1288516685-6 79 -0.113788 hybrid +140_2-1 Q0 KILT_28024638-10 80 -0.114184 hybrid +140_2-1 Q0 MARCO_24_1718716761-5 81 -0.114373 hybrid +140_2-1 Q0 MARCO_55_1285559246-1 82 -0.115735 hybrid +140_2-1 Q0 MARCO_24_1718256148-8 83 -0.116501 hybrid +140_2-1 Q0 KILT_17237382-1 84 -0.118847 hybrid +140_2-1 Q0 MARCO_02_611379847-3 85 -0.120562 hybrid +140_2-1 Q0 MARCO_10_261910952-119 86 -0.123489 hybrid +140_2-1 Q0 MARCO_55_1285550962-3 87 -0.125968 hybrid +140_2-1 Q0 KILT_24837021-10 88 -0.131965 hybrid +140_2-1 Q0 MARCO_30_1029169387-6 89 -0.138065 hybrid +140_2-1 Q0 MARCO_56_1312611314-5 90 -0.138254 hybrid +140_2-1 Q0 MARCO_25_230846545-3 91 -0.139234 hybrid +140_2-1 Q0 KILT_1842316-1 92 -0.141965 hybrid +140_2-1 Q0 KILT_5938324-1 93 -0.142546 hybrid +140_2-1 Q0 MARCO_30_1079495440-4 94 -0.143206 hybrid +140_2-1 Q0 MARCO_30_1092667965-3 95 -0.143361 hybrid +140_2-1 Q0 MARCO_24_1719360047-8 96 -0.144303 hybrid +140_2-1 Q0 MARCO_11_715977820-1 97 -0.145510 hybrid +140_2-1 Q0 MARCO_47_1604463871-2 98 -0.147215 hybrid +140_2-1 Q0 KILT_47612088-2 99 -0.149368 hybrid +140_2-1 Q0 MARCO_24_1720009771-3 100 -0.151414 hybrid +140_2-3 Q0 MARCO_58_1505770958-4 1 0.500002 hybrid +140_2-3 Q0 KILT_42725077-5 2 0.245689 hybrid +140_2-3 Q0 MARCO_27_588863416-42 3 0.237684 hybrid +140_2-3 Q0 MARCO_11_716590866-16 4 0.226412 hybrid +140_2-3 Q0 MARCO_56_1312601736-2 5 0.217208 hybrid +140_2-3 Q0 MARCO_11_716304225-12 6 0.208145 hybrid +140_2-3 Q0 KILT_34665811-3 7 0.123530 hybrid +140_2-3 Q0 MARCO_11_715977820-3 8 0.108443 hybrid +140_2-3 Q0 KILT_3385208-5 9 0.105224 hybrid +140_2-3 Q0 KILT_44905552-1 10 0.101025 hybrid +140_2-3 Q0 MARCO_39_1522232617-19 11 0.075626 hybrid +140_2-3 Q0 KILT_60029310-2 12 0.068299 hybrid +140_2-3 Q0 MARCO_10_261910952-119 13 0.061614 hybrid +140_2-3 Q0 MARCO_22_1016696041-6 14 0.052765 hybrid +140_2-3 Q0 MARCO_11_716304225-13 15 0.047676 hybrid +140_2-3 Q0 MARCO_11_758826070-4 16 0.047621 hybrid +140_2-3 Q0 KILT_34665811-2 17 0.036446 hybrid +140_2-3 Q0 KILT_18895226-2 18 0.035146 hybrid +140_2-3 Q0 MARCO_10_261910952-115 19 0.011031 hybrid +140_2-3 Q0 KILT_39957256-1 20 0.006920 hybrid +140_2-3 Q0 MARCO_22_1016798109-7 21 0.004441 hybrid +140_2-3 Q0 KILT_47197913-1 22 -0.001124 hybrid +140_2-3 Q0 MARCO_47_1601337723-1 23 -0.002421 hybrid +140_2-3 Q0 KILT_39957256-2 24 -0.009813 hybrid +140_2-3 Q0 KILT_39957256-3 25 -0.012331 hybrid +140_2-3 Q0 MARCO_22_1016829979-5 26 -0.012380 hybrid +140_2-3 Q0 MARCO_55_1285550962-5 27 -0.013393 hybrid +140_2-3 Q0 KILT_34665811-1 28 -0.016573 hybrid +140_2-3 Q0 MARCO_30_1092694148-2 29 -0.018241 hybrid +140_2-3 Q0 MARCO_30_1092694148-8 30 -0.018987 hybrid +140_2-3 Q0 KILT_44973671-2 31 -0.021942 hybrid +140_2-3 Q0 MARCO_22_1016798109-6 32 -0.023297 hybrid +140_2-3 Q0 KILT_61403766-1 33 -0.023473 hybrid +140_2-3 Q0 MARCO_08_823623956-9 34 -0.024027 hybrid +140_2-3 Q0 MARCO_06_697327108-4 35 -0.027770 hybrid +140_2-3 Q0 MARCO_24_1719431511-2 36 -0.028318 hybrid +140_2-3 Q0 MARCO_24_1718582318-1 37 -0.031524 hybrid +140_2-3 Q0 MARCO_27_588776995-4 38 -0.039131 hybrid +140_2-3 Q0 MARCO_24_1719591370-4 39 -0.040424 hybrid +140_2-3 Q0 MARCO_27_587939214-7 40 -0.043650 hybrid +140_2-3 Q0 KILT_60446505-1 41 -0.043650 hybrid +140_2-3 Q0 MARCO_24_1719507901-1 42 -0.048406 hybrid +140_2-3 Q0 MARCO_24_1723577496-1 43 -0.048507 hybrid +140_2-3 Q0 KILT_17911390-2 44 -0.049263 hybrid +140_2-3 Q0 KILT_42725077-2 45 -0.049615 hybrid +140_2-3 Q0 KILT_44973671-1 46 -0.053716 hybrid +140_2-3 Q0 MARCO_11_716565973-5 47 -0.055811 hybrid +140_2-3 Q0 MARCO_19_962618007-8 48 -0.056251 hybrid +140_2-3 Q0 MARCO_19_962618007-2 49 -0.056502 hybrid +140_2-3 Q0 KILT_61023409-2 50 -0.058939 hybrid +140_2-3 Q0 MARCO_58_1505770958-1 51 -0.066194 hybrid +140_2-3 Q0 MARCO_27_587939214-4 52 -0.070120 hybrid +140_2-3 Q0 MARCO_56_1312653403-4 53 -0.070632 hybrid +140_2-3 Q0 KILT_5938324-1 54 -0.071400 hybrid +140_2-3 Q0 MARCO_11_758826070-6 55 -0.071756 hybrid +140_2-3 Q0 MARCO_27_587939214-9 56 -0.072160 hybrid +140_2-3 Q0 KILT_42725077-3 57 -0.074121 hybrid +140_2-3 Q0 MARCO_24_1719431511-3 58 -0.074453 hybrid +140_2-3 Q0 MARCO_11_716520125-9 59 -0.078249 hybrid +140_2-3 Q0 MARCO_04_1288938965-6 60 -0.078874 hybrid +140_2-3 Q0 MARCO_39_1522232617-17 61 -0.082083 hybrid +140_2-3 Q0 KILT_45241465-1 62 -0.083631 hybrid +140_2-3 Q0 KILT_42725077-8 63 -0.083751 hybrid +140_2-3 Q0 KILT_12311661-1 64 -0.083904 hybrid +140_2-3 Q0 MARCO_12_70107065-2 65 -0.087912 hybrid +140_2-3 Q0 KILT_596882-2 66 -0.089065 hybrid +140_2-3 Q0 KILT_39904398-1 67 -0.089130 hybrid +140_2-3 Q0 KILT_61403766-7 68 -0.089521 hybrid +140_2-3 Q0 MARCO_10_261910952-118 69 -0.091485 hybrid +140_2-3 Q0 MARCO_22_1016763847-3 70 -0.092319 hybrid +140_2-3 Q0 MARCO_58_1508359055-3 71 -0.097477 hybrid +140_2-3 Q0 KILT_52221686-1 72 -0.098640 hybrid +140_2-3 Q0 KILT_41051723-2 73 -0.100481 hybrid +140_2-3 Q0 MARCO_32_598155108-2 74 -0.101370 hybrid +140_2-3 Q0 KILT_54453536-2 75 -0.102644 hybrid +140_2-3 Q0 MARCO_17_692375270-43 76 -0.104902 hybrid +140_2-3 Q0 MARCO_30_823492726-3 77 -0.106615 hybrid +140_2-3 Q0 MARCO_22_1016829979-4 78 -0.111098 hybrid +140_2-3 Q0 MARCO_06_338280924-2 79 -0.111714 hybrid +140_2-3 Q0 MARCO_11_758826070-3 80 -0.114209 hybrid +140_2-3 Q0 MARCO_19_962618007-9 81 -0.115483 hybrid +140_2-3 Q0 MARCO_56_1312611314-6 82 -0.116184 hybrid +140_2-3 Q0 KILT_44612598-2 83 -0.116259 hybrid +140_2-3 Q0 MARCO_24_1720009771-3 84 -0.117549 hybrid +140_2-3 Q0 MARCO_50_1409583712-3 85 -0.117881 hybrid +140_2-3 Q0 MARCO_22_1016763847-1 86 -0.118301 hybrid +140_2-3 Q0 MARCO_56_1312601736-3 87 -0.120285 hybrid +140_2-3 Q0 MARCO_27_587939214-2 88 -0.120986 hybrid +140_2-3 Q0 KILT_34665811-5 89 -0.121677 hybrid +140_2-3 Q0 MARCO_24_1720740630-3 90 -0.122028 hybrid +140_2-3 Q0 MARCO_24_1719137544-12 91 -0.122791 hybrid +140_2-3 Q0 KILT_47610149-2 92 -0.123579 hybrid +140_2-3 Q0 KILT_58638608-2 93 -0.123726 hybrid +140_2-3 Q0 KILT_24837021-8 94 -0.124912 hybrid +140_2-3 Q0 MARCO_30_1081232959-7 95 -0.126000 hybrid +140_2-3 Q0 KILT_59974715-8 96 -0.126423 hybrid +140_2-3 Q0 MARCO_55_1281217641-1 97 -0.126928 hybrid +140_2-3 Q0 MARCO_24_1719848341-8 98 -0.127909 hybrid +140_2-3 Q0 MARCO_27_587939214-1 99 -0.128323 hybrid +140_2-3 Q0 KILT_25524889-1 100 -0.130320 hybrid +140_2-5 Q0 KILT_43561772-1 1 0.500000 hybrid +140_2-5 Q0 MARCO_56_1312772055-16 2 0.389353 hybrid +140_2-5 Q0 MARCO_10_261910952-35 3 0.385396 hybrid +140_2-5 Q0 KILT_34665811-5 4 0.356530 hybrid +140_2-5 Q0 KILT_49259076-1 5 0.351179 hybrid +140_2-5 Q0 KILT_34665811-1 6 0.321211 hybrid +140_2-5 Q0 MARCO_51_1503907356-3 7 0.303988 hybrid +140_2-5 Q0 KILT_5844410-1 8 0.242466 hybrid +140_2-5 Q0 KILT_8262517-2 9 0.175460 hybrid +140_2-5 Q0 MARCO_24_1719591370-2 10 0.163070 hybrid +140_2-5 Q0 KILT_42725077-4 11 0.149629 hybrid +140_2-5 Q0 KILT_6748189-1 12 0.126609 hybrid +140_2-5 Q0 MARCO_48_551661713-9 13 0.126282 hybrid +140_2-5 Q0 MARCO_11_719397837-7 14 0.109021 hybrid +140_2-5 Q0 KILT_44905552-1 15 0.105787 hybrid +140_2-5 Q0 MARCO_04_1288938965-3 16 0.101876 hybrid +140_2-5 Q0 MARCO_24_1719063965-4 17 0.078750 hybrid +140_2-5 Q0 MARCO_24_1719591370-5 18 0.078646 hybrid +140_2-5 Q0 MARCO_56_1312601736-3 19 0.077421 hybrid +140_2-5 Q0 KILT_37696851-1 20 0.054540 hybrid +140_2-5 Q0 KILT_61403766-1 21 0.054115 hybrid +140_2-5 Q0 KILT_9911345-5 22 0.046353 hybrid +140_2-5 Q0 MARCO_19_962618007-13 23 0.046086 hybrid +140_2-5 Q0 KILT_55860831-4 24 0.043460 hybrid +140_2-5 Q0 KILT_55860831-2 25 0.043460 hybrid +140_2-5 Q0 KILT_44612598-2 26 0.037975 hybrid +140_2-5 Q0 KILT_58506952-3 27 0.037639 hybrid +140_2-5 Q0 KILT_42725077-3 28 0.031425 hybrid +140_2-5 Q0 KILT_52289180-1 29 0.024139 hybrid +140_2-5 Q0 MARCO_18_464104505-27 30 0.022359 hybrid +140_2-5 Q0 MARCO_24_1719591370-1 31 0.017332 hybrid +140_2-5 Q0 KILT_40192700-3 32 0.005060 hybrid +140_2-5 Q0 KILT_30820858-5 33 0.003275 hybrid +140_2-5 Q0 MARCO_10_261910952-115 34 -0.007117 hybrid +140_2-5 Q0 KILT_5844410-2 35 -0.014595 hybrid +140_2-5 Q0 MARCO_06_338280924-2 36 -0.014879 hybrid +140_2-5 Q0 KILT_22745248-1 37 -0.016737 hybrid +140_2-5 Q0 MARCO_25_238252721-4 38 -0.036002 hybrid +140_2-5 Q0 KILT_26424848-2 39 -0.036992 hybrid +140_2-5 Q0 MARCO_24_1719591370-3 40 -0.041596 hybrid +140_2-5 Q0 KILT_47400007-4 41 -0.042232 hybrid +140_2-5 Q0 MARCO_04_1028600535-4 42 -0.048302 hybrid +140_2-5 Q0 KILT_33417880-4 43 -0.052652 hybrid +140_2-5 Q0 MARCO_19_604502745-15 44 -0.055029 hybrid +140_2-5 Q0 MARCO_24_1717106305-2 45 -0.058369 hybrid +140_2-5 Q0 KILT_30820858-4 46 -0.058691 hybrid +140_2-5 Q0 KILT_25344064-2 47 -0.063202 hybrid +140_2-5 Q0 KILT_42725077-5 48 -0.063672 hybrid +140_2-5 Q0 MARCO_11_719360104-16 49 -0.063961 hybrid +140_2-5 Q0 MARCO_10_261910952-113 50 -0.074370 hybrid +140_2-5 Q0 MARCO_24_1719591370-4 51 -0.074386 hybrid +140_2-5 Q0 KILT_43741212-1 52 -0.079064 hybrid +140_2-5 Q0 KILT_28896318-6 53 -0.081937 hybrid +140_2-5 Q0 MARCO_40_1579003107-3 54 -0.095875 hybrid +140_2-5 Q0 KILT_61403766-2 55 -0.097340 hybrid +140_2-5 Q0 MARCO_10_262081235-36 56 -0.101578 hybrid +140_2-5 Q0 MARCO_43_326243607-53 57 -0.102067 hybrid +140_2-5 Q0 MARCO_19_609025200-19 58 -0.105044 hybrid +140_2-5 Q0 MARCO_19_962618007-14 59 -0.106941 hybrid +140_2-5 Q0 KILT_31332398-5 60 -0.107293 hybrid +140_2-5 Q0 KILT_37445789-15 61 -0.119143 hybrid +140_2-5 Q0 MARCO_08_823623956-9 62 -0.119339 hybrid +140_2-5 Q0 MARCO_25_1034559946-3 63 -0.120595 hybrid +140_2-5 Q0 MARCO_16_2842662700-9 64 -0.122150 hybrid +140_2-5 Q0 MARCO_06_7956176-3 65 -0.124142 hybrid +140_2-5 Q0 MARCO_54_556100414-6 66 -0.124211 hybrid +140_2-5 Q0 MARCO_24_1721020711-5 67 -0.125062 hybrid +140_2-5 Q0 KILT_42725077-6 68 -0.125122 hybrid +140_2-5 Q0 MARCO_18_464104505-38 69 -0.125671 hybrid +140_2-5 Q0 KILT_19541115-1 70 -0.126429 hybrid +140_2-5 Q0 KILT_2369217-1 71 -0.127963 hybrid +140_2-5 Q0 KILT_9911345-7 72 -0.128776 hybrid +140_2-5 Q0 MARCO_56_1312601736-2 73 -0.128782 hybrid +140_2-5 Q0 MARCO_24_1717106305-4 74 -0.130403 hybrid +140_2-5 Q0 MARCO_24_1723640659-2 75 -0.132057 hybrid +140_2-5 Q0 MARCO_11_716520125-9 76 -0.132100 hybrid +140_2-5 Q0 MARCO_17_375168661-9 77 -0.133579 hybrid +140_2-5 Q0 MARCO_37_1276615258-14 78 -0.133820 hybrid +140_2-5 Q0 MARCO_19_962618007-16 79 -0.133904 hybrid +140_2-5 Q0 KILT_4922821-5 80 -0.134458 hybrid +140_2-5 Q0 MARCO_51_1888464926-19 81 -0.135888 hybrid +140_2-5 Q0 MARCO_56_1312424712-3 82 -0.136314 hybrid +140_2-5 Q0 MARCO_32_883608326-2 83 -0.138481 hybrid +140_2-5 Q0 MARCO_58_1505770958-4 84 -0.139439 hybrid +140_2-5 Q0 MARCO_04_1288938965-6 85 -0.142250 hybrid +140_2-5 Q0 MARCO_27_588863416-16 86 -0.143298 hybrid +140_2-5 Q0 MARCO_43_772024634-1 87 -0.148458 hybrid +140_2-5 Q0 KILT_5844410-4 88 -0.150268 hybrid +140_2-5 Q0 KILT_40111345-5 89 -0.150270 hybrid +140_2-5 Q0 MARCO_10_261910952-112 90 -0.150816 hybrid +140_2-5 Q0 MARCO_17_2374067149-15 91 -0.152077 hybrid +140_2-5 Q0 MARCO_16_4122695792-126 92 -0.152366 hybrid +140_2-5 Q0 MARCO_16_4122695792-124 93 -0.152375 hybrid +140_2-5 Q0 KILT_16076835-8 94 -0.155887 hybrid +140_2-5 Q0 MARCO_32_598155108-2 95 -0.156345 hybrid +140_2-5 Q0 MARCO_06_202794208-28 96 -0.157541 hybrid +140_2-5 Q0 MARCO_56_507043549-74 97 -0.160177 hybrid +140_2-5 Q0 MARCO_22_1016798109-8 98 -0.162483 hybrid +140_2-5 Q0 MARCO_22_1016829979-8 99 -0.162764 hybrid +140_2-5 Q0 MARCO_10_261869211-6 100 -0.170646 hybrid +140_3-1 Q0 MARCO_45_1439590880-1 1 0.500001 hybrid +140_3-1 Q0 MARCO_24_1718716761-3 2 0.416826 hybrid +140_3-1 Q0 KILT_42725077-7 3 0.215301 hybrid +140_3-1 Q0 MARCO_06_1128173535-141 4 0.167436 hybrid +140_3-1 Q0 MARCO_24_1718716761-2 5 0.123194 hybrid +140_3-1 Q0 KILT_36378064-7 6 0.108293 hybrid +140_3-1 Q0 KILT_24833975-1 7 0.095125 hybrid +140_3-1 Q0 MARCO_24_1718716761-4 8 0.072106 hybrid +140_3-1 Q0 KILT_4414093-9 9 0.069433 hybrid +140_3-1 Q0 KILT_24834021-1 10 0.032244 hybrid +140_3-1 Q0 MARCO_47_1604463871-10 11 0.025692 hybrid +140_3-1 Q0 MARCO_30_1079495440-5 12 0.009983 hybrid +140_3-1 Q0 KILT_9064673-1 13 0.006413 hybrid +140_3-1 Q0 MARCO_30_1029169387-5 14 -0.015096 hybrid +140_3-1 Q0 KILT_4414093-7 15 -0.026635 hybrid +140_3-1 Q0 KILT_57135645-1 16 -0.042065 hybrid +140_3-1 Q0 MARCO_16_1680442149-19 17 -0.049368 hybrid +140_3-1 Q0 KILT_2001834-2 18 -0.050580 hybrid +140_3-1 Q0 MARCO_31_1435531071-7 19 -0.057872 hybrid +140_3-1 Q0 KILT_42725077-6 20 -0.072895 hybrid +140_3-1 Q0 KILT_45683381-1 21 -0.083764 hybrid +140_3-1 Q0 MARCO_08_823639828-1 22 -0.086889 hybrid +140_3-1 Q0 KILT_46333505-2 23 -0.086989 hybrid +140_3-1 Q0 KILT_15459789-6 24 -0.103060 hybrid +140_3-1 Q0 MARCO_19_582415817-11 25 -0.104765 hybrid +140_3-1 Q0 MARCO_22_1022149739-7 26 -0.109832 hybrid +140_3-1 Q0 MARCO_11_716556603-5 27 -0.109847 hybrid +140_3-1 Q0 KILT_32594779-1 28 -0.126213 hybrid +140_3-1 Q0 KILT_5928552-3 29 -0.130792 hybrid +140_3-1 Q0 KILT_42085081-2 30 -0.133941 hybrid +140_3-1 Q0 MARCO_50_1675783459-25 31 -0.135270 hybrid +140_3-1 Q0 MARCO_24_1718716761-5 32 -0.135504 hybrid +140_3-1 Q0 MARCO_01_1176264230-7 33 -0.138590 hybrid +140_3-1 Q0 MARCO_45_1438342779-1 34 -0.139132 hybrid +140_3-1 Q0 MARCO_22_1016658646-9 35 -0.140965 hybrid +140_3-1 Q0 MARCO_01_1064363562-2 36 -0.141827 hybrid +140_3-1 Q0 KILT_8881481-1 37 -0.147576 hybrid +140_3-1 Q0 MARCO_30_1029169387-17 38 -0.153769 hybrid +140_3-1 Q0 MARCO_08_823639828-2 39 -0.154495 hybrid +140_3-1 Q0 KILT_28024638-10 40 -0.154702 hybrid +140_3-1 Q0 MARCO_16_1680442149-17 41 -0.158196 hybrid +140_3-1 Q0 KILT_35652421-6 42 -0.161670 hybrid +140_3-1 Q0 MARCO_31_1435531071-5 43 -0.165699 hybrid +140_3-1 Q0 KILT_24258140-2 44 -0.166200 hybrid +140_3-1 Q0 MARCO_43_981567595-2 45 -0.167421 hybrid +140_3-1 Q0 MARCO_11_716921887-5 46 -0.167534 hybrid +140_3-1 Q0 KILT_57138163-2 47 -0.169170 hybrid +140_3-1 Q0 MARCO_30_1029169387-12 48 -0.171653 hybrid +140_3-1 Q0 KILT_2677773-3 49 -0.175891 hybrid +140_3-1 Q0 MARCO_11_715499610-7 50 -0.178442 hybrid +140_3-1 Q0 MARCO_14_306510209-19 51 -0.179497 hybrid +140_3-1 Q0 MARCO_08_232490160-18 52 -0.184105 hybrid +140_3-1 Q0 MARCO_39_608961831-13 53 -0.184513 hybrid +140_3-1 Q0 KILT_28896318-3 54 -0.187056 hybrid +140_3-1 Q0 MARCO_24_1719317684-11 55 -0.190091 hybrid +140_3-1 Q0 MARCO_11_715499610-5 56 -0.191461 hybrid +140_3-1 Q0 KILT_5599457-7 57 -0.191918 hybrid +140_3-1 Q0 MARCO_56_504916707-2 58 -0.192783 hybrid +140_3-1 Q0 KILT_9292595-8 59 -0.194195 hybrid +140_3-1 Q0 MARCO_01_1176264230-6 60 -0.194860 hybrid +140_3-1 Q0 MARCO_49_1589455621-223 61 -0.198600 hybrid +140_3-1 Q0 KILT_27437444-1 62 -0.203628 hybrid +140_3-1 Q0 MARCO_55_1285550962-1 63 -0.203858 hybrid +140_3-1 Q0 MARCO_30_1049355101-5 64 -0.204427 hybrid +140_3-1 Q0 MARCO_27_527989993-3 65 -0.206860 hybrid +140_3-1 Q0 KILT_30078014-6 66 -0.207928 hybrid +140_3-1 Q0 KILT_20549820-9 67 -0.215118 hybrid +140_3-1 Q0 KILT_2677773-1 68 -0.217524 hybrid +140_3-1 Q0 KILT_4414093-13 69 -0.222288 hybrid +140_3-1 Q0 KILT_36481627-1 70 -0.224859 hybrid +140_3-1 Q0 KILT_378054-8 71 -0.225215 hybrid +140_3-1 Q0 KILT_44973671-2 72 -0.225389 hybrid +140_3-1 Q0 KILT_7567100-3 73 -0.226745 hybrid +140_3-1 Q0 MARCO_24_1718303986-2 74 -0.228357 hybrid +140_3-1 Q0 MARCO_30_1029169387-4 75 -0.228909 hybrid +140_3-1 Q0 KILT_43665522-2 76 -0.232171 hybrid +140_3-1 Q0 KILT_52518164-1 77 -0.233378 hybrid +140_3-1 Q0 MARCO_18_2138235441-11 78 -0.235085 hybrid +140_3-1 Q0 MARCO_30_1049355101-6 79 -0.235635 hybrid +140_3-1 Q0 KILT_4414044-3 80 -0.235655 hybrid +140_3-1 Q0 MARCO_16_1725539004-20 81 -0.237658 hybrid +140_3-1 Q0 MARCO_16_1108971963-11 82 -0.237961 hybrid +140_3-1 Q0 MARCO_00_772118302-10 83 -0.238315 hybrid +140_3-1 Q0 MARCO_31_1436154089-9 84 -0.238452 hybrid +140_3-1 Q0 MARCO_30_1049345493-2 85 -0.239544 hybrid +140_3-1 Q0 MARCO_00_772118302-6 86 -0.241792 hybrid +140_3-1 Q0 KILT_4414044-4 87 -0.243363 hybrid +140_3-1 Q0 KILT_27437444-2 88 -0.243553 hybrid +140_3-1 Q0 KILT_48756448-1 89 -0.244882 hybrid +140_3-1 Q0 MARCO_11_712646033-5 90 -0.244985 hybrid +140_3-1 Q0 KILT_4414093-17 91 -0.247108 hybrid +140_3-1 Q0 MARCO_30_1087383993-2 92 -0.249563 hybrid +140_3-1 Q0 KILT_32266136-3 93 -0.250135 hybrid +140_3-1 Q0 KILT_26414151-2 94 -0.250501 hybrid +140_3-1 Q0 MARCO_03_1381877959-3 95 -0.250621 hybrid +140_3-1 Q0 MARCO_14_309575811-1 96 -0.250736 hybrid +140_3-1 Q0 MARCO_22_1022149739-6 97 -0.251774 hybrid +140_3-1 Q0 MARCO_08_823623956-9 98 -0.253150 hybrid +140_3-1 Q0 MARCO_11_716921887-4 99 -0.254142 hybrid +140_3-1 Q0 MARCO_30_1029169387-7 100 -0.254562 hybrid +140_3-3 Q0 MARCO_24_1718716761-4 1 0.500000 hybrid +140_3-3 Q0 MARCO_24_1718716761-3 2 0.496266 hybrid +140_3-3 Q0 MARCO_16_1680442149-32 3 0.277756 hybrid +140_3-3 Q0 MARCO_30_1079495440-5 4 0.273307 hybrid +140_3-3 Q0 MARCO_45_1439590880-1 5 0.262889 hybrid +140_3-3 Q0 MARCO_16_1680442149-5 6 0.184284 hybrid +140_3-3 Q0 MARCO_59_379371313-1 7 0.182994 hybrid +140_3-3 Q0 MARCO_16_1680442149-8 8 0.168445 hybrid +140_3-3 Q0 MARCO_13_129196314-28 9 0.168291 hybrid +140_3-3 Q0 MARCO_59_379371313-3 10 0.163986 hybrid +140_3-3 Q0 MARCO_16_1680442149-30 11 0.154573 hybrid +140_3-3 Q0 MARCO_24_1718716761-2 12 0.151530 hybrid +140_3-3 Q0 KILT_42725077-7 13 0.140514 hybrid +140_3-3 Q0 KILT_41758870-4 14 0.136186 hybrid +140_3-3 Q0 MARCO_16_1680442149-7 15 0.117976 hybrid +140_3-3 Q0 MARCO_39_600507896-5 16 0.109621 hybrid +140_3-3 Q0 MARCO_30_1044368084-2 17 0.091891 hybrid +140_3-3 Q0 MARCO_16_1680442149-3 18 0.081882 hybrid +140_3-3 Q0 MARCO_30_1044368084-1 19 0.080955 hybrid +140_3-3 Q0 MARCO_58_1735306367-1 20 0.059023 hybrid +140_3-3 Q0 MARCO_50_1409583712-5 21 0.058253 hybrid +140_3-3 Q0 KILT_23852998-4 22 0.044608 hybrid +140_3-3 Q0 KILT_53847802-3 23 0.038690 hybrid +140_3-3 Q0 MARCO_20_1740315606-132 24 0.036857 hybrid +140_3-3 Q0 MARCO_50_1668506736-18 25 0.035910 hybrid +140_3-3 Q0 MARCO_16_1680442149-37 26 0.032489 hybrid +140_3-3 Q0 MARCO_24_1717116209-8 27 0.020841 hybrid +140_3-3 Q0 KILT_37157102-2 28 0.008191 hybrid +140_3-3 Q0 MARCO_16_2872672276-28 29 0.006517 hybrid +140_3-3 Q0 MARCO_16_1680442149-31 30 -0.003237 hybrid +140_3-3 Q0 MARCO_32_598533958-6 31 -0.018841 hybrid +140_3-3 Q0 MARCO_52_1181039218-18 32 -0.025691 hybrid +140_3-3 Q0 KILT_24833975-1 33 -0.029638 hybrid +140_3-3 Q0 MARCO_17_1797243571-4 34 -0.030451 hybrid +140_3-3 Q0 MARCO_55_1285550962-4 35 -0.038347 hybrid +140_3-3 Q0 MARCO_04_783332913-21 36 -0.040344 hybrid +140_3-3 Q0 MARCO_17_1797216899-3 37 -0.047825 hybrid +140_3-3 Q0 MARCO_06_1128173535-141 38 -0.049424 hybrid +140_3-3 Q0 MARCO_56_1312424712-3 39 -0.057486 hybrid +140_3-3 Q0 MARCO_17_429991603-52 40 -0.066805 hybrid +140_3-3 Q0 MARCO_06_1203287517-321 41 -0.067722 hybrid +140_3-3 Q0 MARCO_04_783332913-12 42 -0.069530 hybrid +140_3-3 Q0 MARCO_17_429991603-47 43 -0.073133 hybrid +140_3-3 Q0 KILT_46790468-3 44 -0.074085 hybrid +140_3-3 Q0 MARCO_16_1680442149-16 45 -0.079223 hybrid +140_3-3 Q0 MARCO_16_1680442149-27 46 -0.079743 hybrid +140_3-3 Q0 MARCO_20_1740315606-9 47 -0.080299 hybrid +140_3-3 Q0 MARCO_54_1590033423-1 48 -0.085902 hybrid +140_3-3 Q0 MARCO_39_600507896-10 49 -0.089997 hybrid +140_3-3 Q0 MARCO_56_1312660992-3 50 -0.091421 hybrid +140_3-3 Q0 KILT_24834021-1 51 -0.097196 hybrid +140_3-3 Q0 MARCO_56_1312265321-9 52 -0.097761 hybrid +140_3-3 Q0 MARCO_24_1723583054-2 53 -0.105056 hybrid +140_3-3 Q0 MARCO_17_3085832251-10 54 -0.114489 hybrid +140_3-3 Q0 MARCO_20_1740315606-5 55 -0.117201 hybrid +140_3-3 Q0 MARCO_04_783332913-17 56 -0.117880 hybrid +140_3-3 Q0 MARCO_16_1680442149-2 57 -0.118961 hybrid +140_3-3 Q0 MARCO_16_1680442149-26 58 -0.119628 hybrid +140_3-3 Q0 MARCO_24_1615746149-5 59 -0.121236 hybrid +140_3-3 Q0 MARCO_00_359005009-11 60 -0.122857 hybrid +140_3-3 Q0 MARCO_18_2140260412-8 61 -0.126266 hybrid +140_3-3 Q0 MARCO_16_1680442149-12 62 -0.129977 hybrid +140_3-3 Q0 MARCO_16_1680442149-4 63 -0.132262 hybrid +140_3-3 Q0 KILT_44973671-2 64 -0.133017 hybrid +140_3-3 Q0 MARCO_16_2872672276-80 65 -0.138830 hybrid +140_3-3 Q0 KILT_27221055-2 66 -0.142819 hybrid +140_3-3 Q0 MARCO_50_1423203287-12 67 -0.144460 hybrid +140_3-3 Q0 MARCO_52_1642957318-6 68 -0.146703 hybrid +140_3-3 Q0 MARCO_16_1680442149-25 69 -0.146849 hybrid +140_3-3 Q0 MARCO_40_823838762-6 70 -0.150076 hybrid +140_3-3 Q0 MARCO_16_1680442149-21 71 -0.154856 hybrid +140_3-3 Q0 MARCO_04_783332913-39 72 -0.155462 hybrid +140_3-3 Q0 MARCO_17_429991603-48 73 -0.159090 hybrid +140_3-3 Q0 KILT_42725077-6 74 -0.160810 hybrid +140_3-3 Q0 MARCO_04_783332913-25 75 -0.162926 hybrid +140_3-3 Q0 MARCO_20_1740315606-115 76 -0.165630 hybrid +140_3-3 Q0 MARCO_16_1680442149-6 77 -0.165842 hybrid +140_3-3 Q0 MARCO_16_2872672276-25 78 -0.166056 hybrid +140_3-3 Q0 KILT_37157102-3 79 -0.166412 hybrid +140_3-3 Q0 KILT_25690143-2 80 -0.166789 hybrid +140_3-3 Q0 KILT_42725077-5 81 -0.168738 hybrid +140_3-3 Q0 MARCO_17_1797216899-2 82 -0.173114 hybrid +140_3-3 Q0 MARCO_16_2872672276-24 83 -0.177866 hybrid +140_3-3 Q0 MARCO_56_1312513926-4 84 -0.180045 hybrid +140_3-3 Q0 KILT_24894019-3 85 -0.180658 hybrid +140_3-3 Q0 MARCO_41_1243447347-8 86 -0.182032 hybrid +140_3-3 Q0 MARCO_41_1243447347-7 87 -0.184261 hybrid +140_3-3 Q0 KILT_60079923-9 88 -0.185749 hybrid +140_3-3 Q0 KILT_58825598-2 89 -0.189410 hybrid +140_3-3 Q0 KILT_43753720-3 90 -0.189417 hybrid +140_3-3 Q0 MARCO_17_2509340321-4 91 -0.189612 hybrid +140_3-3 Q0 MARCO_54_790507005-2 92 -0.193604 hybrid +140_3-3 Q0 KILT_3385208-14 93 -0.194818 hybrid +140_3-3 Q0 MARCO_17_2509340321-7 94 -0.195361 hybrid +140_3-3 Q0 MARCO_05_812589193-7 95 -0.200588 hybrid +140_3-3 Q0 MARCO_56_1312469785-8 96 -0.200997 hybrid +140_3-3 Q0 KILT_38186977-2 97 -0.202880 hybrid +140_3-3 Q0 MARCO_16_1680442149-20 98 -0.205380 hybrid +140_3-3 Q0 MARCO_18_464104505-35 99 -0.206842 hybrid +140_3-3 Q0 MARCO_29_1415957452-4 100 -0.206862 hybrid +140_4-10 Q0 MARCO_20_1605557843-5 1 0.500000 hybrid +140_4-10 Q0 MARCO_17_2985927323-9 2 0.492420 hybrid +140_4-10 Q0 MARCO_17_2985927323-7 3 0.492420 hybrid +140_4-10 Q0 MARCO_17_2985927323-3 4 0.368818 hybrid +140_4-10 Q0 MARCO_17_2985927323-4 5 0.368082 hybrid +140_4-10 Q0 MARCO_20_1605557843-6 6 0.349520 hybrid +140_4-10 Q0 MARCO_30_1025297153-2 7 0.337148 hybrid +140_4-10 Q0 MARCO_17_2985927323-5 8 0.311001 hybrid +140_4-10 Q0 MARCO_20_1605557843-3 9 0.259423 hybrid +140_4-10 Q0 MARCO_17_2985927323-1 10 0.258139 hybrid +140_4-10 Q0 MARCO_05_1762379500-340 11 0.233835 hybrid +140_4-10 Q0 MARCO_20_1605557843-4 12 0.198610 hybrid +140_4-10 Q0 MARCO_20_1605557843-1 13 0.189020 hybrid +140_4-10 Q0 MARCO_17_2985927323-6 14 0.180028 hybrid +140_4-10 Q0 MARCO_30_1048979554-4 15 0.177227 hybrid +140_4-10 Q0 MARCO_32_598293543-8 16 0.135197 hybrid +140_4-10 Q0 KILT_13583474-1 17 0.108218 hybrid +140_4-10 Q0 KILT_52867-6 18 0.104986 hybrid +140_4-10 Q0 MARCO_17_2985927323-2 19 0.082674 hybrid +140_4-10 Q0 MARCO_22_1016597411-4 20 0.022782 hybrid +140_4-10 Q0 MARCO_32_597834653-4 21 0.017583 hybrid +140_4-10 Q0 MARCO_06_1196219817-386 22 -0.011443 hybrid +140_4-10 Q0 MARCO_17_1736077149-13 23 -0.024040 hybrid +140_4-10 Q0 MARCO_05_1762379500-80 24 -0.032409 hybrid +140_4-10 Q0 MARCO_32_597809340-4 25 -0.073314 hybrid +140_4-10 Q0 MARCO_03_1381877959-8 26 -0.082502 hybrid +140_4-10 Q0 MARCO_22_1124107271-4 27 -0.102381 hybrid +140_4-10 Q0 KILT_13583474-8 28 -0.102592 hybrid +140_4-10 Q0 MARCO_00_359005009-2 29 -0.113916 hybrid +140_4-10 Q0 KILT_1842316-6 30 -0.115443 hybrid +140_4-10 Q0 MARCO_50_1449497274-3 31 -0.140689 hybrid +140_4-10 Q0 MARCO_36_346990231-3 32 -0.141835 hybrid +140_4-10 Q0 MARCO_17_2985630803-6 33 -0.148569 hybrid +140_4-10 Q0 KILT_33457122-1 34 -0.163860 hybrid +140_4-10 Q0 MARCO_41_1187644165-41 35 -0.164583 hybrid +140_4-10 Q0 MARCO_36_1585191833-11 36 -0.164844 hybrid +140_4-10 Q0 KILT_2487817-3 37 -0.167266 hybrid +140_4-10 Q0 MARCO_41_1187644165-74 38 -0.174157 hybrid +140_4-10 Q0 MARCO_30_1025297153-7 39 -0.179516 hybrid +140_4-10 Q0 MARCO_32_597809340-7 40 -0.180015 hybrid +140_4-10 Q0 MARCO_00_248676682-2 41 -0.181910 hybrid +140_4-10 Q0 MARCO_56_1312543811-11 42 -0.182176 hybrid +140_4-10 Q0 MARCO_36_1001217102-29 43 -0.183110 hybrid +140_4-10 Q0 KILT_29165924-1 44 -0.188597 hybrid +140_4-10 Q0 MARCO_17_1733454757-14 45 -0.190281 hybrid +140_4-10 Q0 MARCO_37_171411833-13 46 -0.191027 hybrid +140_4-10 Q0 MARCO_17_2502653640-3 47 -0.197855 hybrid +140_4-10 Q0 MARCO_36_1585133865-7 48 -0.199824 hybrid +140_4-10 Q0 MARCO_24_1719707759-5 49 -0.210852 hybrid +140_4-10 Q0 MARCO_17_2985630803-5 50 -0.218761 hybrid +140_4-10 Q0 MARCO_36_1585191833-5 51 -0.221825 hybrid +140_4-10 Q0 MARCO_02_601055711-3 52 -0.222264 hybrid +140_4-10 Q0 MARCO_16_2872672276-10 53 -0.224655 hybrid +140_4-10 Q0 MARCO_32_596179161-6 54 -0.225333 hybrid +140_4-10 Q0 MARCO_20_1605557843-2 55 -0.226283 hybrid +140_4-10 Q0 KILT_25514581-3 56 -0.227685 hybrid +140_4-10 Q0 KILT_5488-27 57 -0.228612 hybrid +140_4-10 Q0 MARCO_05_858027276-3 58 -0.228985 hybrid +140_4-10 Q0 KILT_1842316-5 59 -0.231525 hybrid +140_4-10 Q0 KILT_2582022-3 60 -0.231590 hybrid +140_4-10 Q0 KILT_36953898-1 61 -0.237567 hybrid +140_4-10 Q0 MARCO_20_1740315606-74 62 -0.239455 hybrid +140_4-10 Q0 MARCO_41_1945476110-10 63 -0.239546 hybrid +140_4-10 Q0 MARCO_17_2985927323-8 64 -0.239718 hybrid +140_4-10 Q0 MARCO_24_1717513197-8 65 -0.241206 hybrid +140_4-10 Q0 KILT_29662850-5 66 -0.242206 hybrid +140_4-10 Q0 KILT_22073970-3 67 -0.245829 hybrid +140_4-10 Q0 KILT_33516231-1 68 -0.248363 hybrid +140_4-10 Q0 MARCO_30_1025297153-4 69 -0.251180 hybrid +140_4-10 Q0 MARCO_30_1029169387-9 70 -0.253613 hybrid +140_4-10 Q0 MARCO_20_1376241263-6 71 -0.255886 hybrid +140_4-10 Q0 KILT_11838962-1 72 -0.255925 hybrid +140_4-10 Q0 MARCO_36_1004130531-13 73 -0.259290 hybrid +140_4-10 Q0 MARCO_32_597834653-3 74 -0.259731 hybrid +140_4-10 Q0 MARCO_41_1187644165-15 75 -0.262440 hybrid +140_4-10 Q0 KILT_2612608-1 76 -0.262928 hybrid +140_4-10 Q0 MARCO_22_1016597411-3 77 -0.267671 hybrid +140_4-10 Q0 MARCO_11_10819812-10 78 -0.268008 hybrid +140_4-10 Q0 MARCO_19_1113405633-4 79 -0.269645 hybrid +140_4-10 Q0 MARCO_17_1736077149-15 80 -0.274450 hybrid +140_4-10 Q0 MARCO_32_597834653-2 81 -0.275319 hybrid +140_4-10 Q0 KILT_388121-10 82 -0.275724 hybrid +140_4-10 Q0 MARCO_16_2872672276-47 83 -0.276509 hybrid +140_4-10 Q0 MARCO_41_1187644165-68 84 -0.276624 hybrid +140_4-10 Q0 MARCO_22_1016597411-2 85 -0.276713 hybrid +140_4-10 Q0 KILT_3168-3 86 -0.276995 hybrid +140_4-10 Q0 MARCO_11_716304225-15 87 -0.277204 hybrid +140_4-10 Q0 MARCO_17_1733454757-15 88 -0.277718 hybrid +140_4-10 Q0 KILT_41731623-1 89 -0.278120 hybrid +140_4-10 Q0 KILT_33726944-5 90 -0.278483 hybrid +140_4-10 Q0 MARCO_14_1100594918-2 91 -0.280772 hybrid +140_4-10 Q0 MARCO_16_1731140724-7 92 -0.281954 hybrid +140_4-10 Q0 KILT_43680209-1 93 -0.282633 hybrid +140_4-10 Q0 KILT_28552509-1 94 -0.282696 hybrid +140_4-10 Q0 MARCO_39_220826092-2 95 -0.283677 hybrid +140_4-10 Q0 KILT_13583474-7 96 -0.284035 hybrid +140_4-10 Q0 MARCO_17_3084209891-8 97 -0.284745 hybrid +140_4-10 Q0 MARCO_31_1436154089-3 98 -0.285640 hybrid +140_4-10 Q0 MARCO_22_1016597411-1 99 -0.285664 hybrid +140_4-10 Q0 MARCO_01_1869847445-3 100 -0.286032 hybrid +140_4-12 Q0 KILT_1551465-4 1 0.500000 hybrid +140_4-12 Q0 KILT_393776-1 2 0.410996 hybrid +140_4-12 Q0 MARCO_18_2882285757-76 3 0.357040 hybrid +140_4-12 Q0 KILT_33516231-1 4 0.355894 hybrid +140_4-12 Q0 MARCO_20_1605557843-4 5 0.307281 hybrid +140_4-12 Q0 KILT_1169818-9 6 0.258306 hybrid +140_4-12 Q0 KILT_682978-3 7 0.253370 hybrid +140_4-12 Q0 KILT_9293703-5 8 0.232889 hybrid +140_4-12 Q0 MARCO_00_359005009-2 9 0.226211 hybrid +140_4-12 Q0 MARCO_17_2985927323-2 10 0.213960 hybrid +140_4-12 Q0 MARCO_17_2985630803-11 11 0.204687 hybrid +140_4-12 Q0 KILT_344458-6 12 0.172493 hybrid +140_4-12 Q0 MARCO_24_1717513197-2 13 0.166867 hybrid +140_4-12 Q0 MARCO_20_1605557843-3 14 0.145507 hybrid +140_4-12 Q0 MARCO_39_607508911-19 15 0.139026 hybrid +140_4-12 Q0 MARCO_20_1605557843-5 16 0.126619 hybrid +140_4-12 Q0 KILT_60119709-3 17 0.123818 hybrid +140_4-12 Q0 MARCO_17_2985927323-3 18 0.120939 hybrid +140_4-12 Q0 KILT_33726944-3 19 0.104877 hybrid +140_4-12 Q0 MARCO_17_2985927323-1 20 0.103399 hybrid +140_4-12 Q0 KILT_25499399-2 21 0.095703 hybrid +140_4-12 Q0 MARCO_17_2985927323-9 22 0.093115 hybrid +140_4-12 Q0 MARCO_17_2985927323-7 23 0.093115 hybrid +140_4-12 Q0 KILT_3768519-11 24 0.077250 hybrid +140_4-12 Q0 KILT_11838962-1 25 0.074667 hybrid +140_4-12 Q0 MARCO_24_1719137544-7 26 0.066149 hybrid +140_4-12 Q0 KILT_36953425-19 27 0.062737 hybrid +140_4-12 Q0 MARCO_07_1108721943-3 28 0.062544 hybrid +140_4-12 Q0 MARCO_16_2872672276-10 29 0.058564 hybrid +140_4-12 Q0 MARCO_17_2985630803-10 30 0.058346 hybrid +140_4-12 Q0 MARCO_36_1585191833-11 31 0.055739 hybrid +140_4-12 Q0 KILT_33605176-1 32 0.054609 hybrid +140_4-12 Q0 MARCO_16_3308805274-25 33 0.051036 hybrid +140_4-12 Q0 KILT_531906-5 34 0.034186 hybrid +140_4-12 Q0 MARCO_20_1605557843-2 35 0.027984 hybrid +140_4-12 Q0 MARCO_24_1717345315-2 36 0.023771 hybrid +140_4-12 Q0 KILT_53327427-2 37 0.023643 hybrid +140_4-12 Q0 MARCO_17_1736077149-4 38 0.012284 hybrid +140_4-12 Q0 MARCO_24_1717217394-2 39 0.000694 hybrid +140_4-12 Q0 MARCO_50_1435234543-29 40 0.000435 hybrid +140_4-12 Q0 MARCO_16_2872672276-15 41 -0.001170 hybrid +140_4-12 Q0 KILT_4414093-6 42 -0.007988 hybrid +140_4-12 Q0 KILT_29996272-4 43 -0.013766 hybrid +140_4-12 Q0 MARCO_16_2612348976-22 44 -0.014095 hybrid +140_4-12 Q0 MARCO_24_1717543059-3 45 -0.014600 hybrid +140_4-12 Q0 MARCO_17_2985630803-17 46 -0.019454 hybrid +140_4-12 Q0 MARCO_17_2985630803-19 47 -0.019454 hybrid +140_4-12 Q0 KILT_1842316-3 48 -0.021081 hybrid +140_4-12 Q0 MARCO_17_2985630803-6 49 -0.024362 hybrid +140_4-12 Q0 KILT_33516231-3 50 -0.025266 hybrid +140_4-12 Q0 MARCO_18_2133549441-8 51 -0.029048 hybrid +140_4-12 Q0 KILT_52379828-10 52 -0.039151 hybrid +140_4-12 Q0 MARCO_06_587840374-4 53 -0.039681 hybrid +140_4-12 Q0 MARCO_18_2882611869-8 54 -0.051706 hybrid +140_4-12 Q0 MARCO_02_846597908-11 55 -0.060100 hybrid +140_4-12 Q0 MARCO_16_2872830431-42 56 -0.060199 hybrid +140_4-12 Q0 KILT_52159164-2 57 -0.060815 hybrid +140_4-12 Q0 KILT_1346496-4 58 -0.062404 hybrid +140_4-12 Q0 KILT_298966-2 59 -0.063119 hybrid +140_4-12 Q0 MARCO_32_596258389-4 60 -0.065238 hybrid +140_4-12 Q0 KILT_27278-4 61 -0.065369 hybrid +140_4-12 Q0 MARCO_30_90865311-23 62 -0.068646 hybrid +140_4-12 Q0 KILT_24894540-1 63 -0.069168 hybrid +140_4-12 Q0 KILT_5706211-2 64 -0.070297 hybrid +140_4-12 Q0 MARCO_23_52978072-2 65 -0.072581 hybrid +140_4-12 Q0 KILT_33516231-7 66 -0.074470 hybrid +140_4-12 Q0 MARCO_17_2985927323-4 67 -0.080507 hybrid +140_4-12 Q0 MARCO_06_587820240-6 68 -0.086068 hybrid +140_4-12 Q0 KILT_6232818-2 69 -0.086232 hybrid +140_4-12 Q0 KILT_1622922-2 70 -0.092199 hybrid +140_4-12 Q0 MARCO_18_2882285757-74 71 -0.092294 hybrid +140_4-12 Q0 KILT_7934013-2 72 -0.093460 hybrid +140_4-12 Q0 KILT_47612087-2 73 -0.095768 hybrid +140_4-12 Q0 KILT_21077671-6 74 -0.101218 hybrid +140_4-12 Q0 MARCO_17_2985927323-5 75 -0.102775 hybrid +140_4-12 Q0 KILT_52867-6 76 -0.102779 hybrid +140_4-12 Q0 MARCO_17_1835855390-4 77 -0.103218 hybrid +140_4-12 Q0 MARCO_06_1282718199-309 78 -0.103801 hybrid +140_4-12 Q0 MARCO_17_3105026561-4 79 -0.104955 hybrid +140_4-12 Q0 KILT_42132-42 80 -0.108179 hybrid +140_4-12 Q0 MARCO_27_587888359-4 81 -0.109637 hybrid +140_4-12 Q0 KILT_2771856-3 82 -0.110389 hybrid +140_4-12 Q0 KILT_2280554-1 83 -0.111900 hybrid +140_4-12 Q0 MARCO_54_1590033423-5 84 -0.114073 hybrid +140_4-12 Q0 MARCO_31_1436154089-3 85 -0.115005 hybrid +140_4-12 Q0 KILT_5479-2 86 -0.116980 hybrid +140_4-12 Q0 MARCO_02_611395089-3 87 -0.120989 hybrid +140_4-12 Q0 KILT_9293703-4 88 -0.122590 hybrid +140_4-12 Q0 KILT_9593154-1 89 -0.124570 hybrid +140_4-12 Q0 MARCO_20_1605557843-6 90 -0.124812 hybrid +140_4-12 Q0 KILT_21421613-1 91 -0.125510 hybrid +140_4-12 Q0 KILT_33726944-5 92 -0.125909 hybrid +140_4-12 Q0 KILT_2435657-25 93 -0.126562 hybrid +140_4-12 Q0 KILT_13494359-11 94 -0.129087 hybrid +140_4-12 Q0 MARCO_58_1505138451-3 95 -0.130439 hybrid +140_4-12 Q0 MARCO_22_1016605651-7 96 -0.132796 hybrid +140_4-12 Q0 KILT_27279-7 97 -0.133285 hybrid +140_4-12 Q0 KILT_6015943-22 98 -0.134784 hybrid +140_4-12 Q0 KILT_35613842-6 99 -0.134792 hybrid +140_4-12 Q0 KILT_33827299-2 100 -0.134882 hybrid +140_4-14 Q0 KILT_1787035-1 1 0.500002 hybrid +140_4-14 Q0 MARCO_20_1605557843-1 2 0.451514 hybrid +140_4-14 Q0 MARCO_20_1605557843-5 3 0.421887 hybrid +140_4-14 Q0 MARCO_20_1605557843-6 4 0.289549 hybrid +140_4-14 Q0 MARCO_32_598293543-8 5 0.266683 hybrid +140_4-14 Q0 KILT_56498414-1 6 0.189576 hybrid +140_4-14 Q0 MARCO_20_1605557843-4 7 0.184690 hybrid +140_4-14 Q0 MARCO_30_1025297153-2 8 0.183832 hybrid +140_4-14 Q0 MARCO_17_2985927323-1 9 0.171160 hybrid +140_4-14 Q0 MARCO_29_1416026564-4 10 0.168267 hybrid +140_4-14 Q0 MARCO_17_2985927323-9 11 0.162383 hybrid +140_4-14 Q0 MARCO_17_2985927323-7 12 0.162383 hybrid +140_4-14 Q0 KILT_35630022-1 13 0.145388 hybrid +140_4-14 Q0 MARCO_22_1649531162-7 14 0.141909 hybrid +140_4-14 Q0 MARCO_20_1605557843-3 15 0.138994 hybrid +140_4-14 Q0 KILT_8664179-1 16 0.095487 hybrid +140_4-14 Q0 MARCO_50_2509666208-24 17 0.093244 hybrid +140_4-14 Q0 KILT_4358025-1 18 0.090565 hybrid +140_4-14 Q0 KILT_636122-2 19 0.058191 hybrid +140_4-14 Q0 KILT_20596907-1 20 0.032714 hybrid +140_4-14 Q0 MARCO_17_2904231476-30 21 0.030008 hybrid +140_4-14 Q0 MARCO_06_1292976322-307 22 0.014829 hybrid +140_4-14 Q0 MARCO_14_759511167-2 23 0.004995 hybrid +140_4-14 Q0 KILT_33635030-4 24 0.001022 hybrid +140_4-14 Q0 MARCO_17_2904231476-31 25 0.000059 hybrid +140_4-14 Q0 MARCO_50_1393777851-20 26 -0.008713 hybrid +140_4-14 Q0 MARCO_17_2985927323-3 27 -0.011102 hybrid +140_4-14 Q0 MARCO_17_2904525997-19 28 -0.011247 hybrid +140_4-14 Q0 KILT_488027-1 29 -0.014988 hybrid +140_4-14 Q0 MARCO_17_1861554391-2 30 -0.015470 hybrid +140_4-14 Q0 MARCO_17_2985927323-5 31 -0.017940 hybrid +140_4-14 Q0 MARCO_24_1612611095-36 32 -0.017990 hybrid +140_4-14 Q0 MARCO_53_1059405604-3 33 -0.031775 hybrid +140_4-14 Q0 MARCO_53_1059405604-5 34 -0.031775 hybrid +140_4-14 Q0 MARCO_41_1360382018-23 35 -0.042981 hybrid +140_4-14 Q0 MARCO_08_684636613-3 36 -0.057987 hybrid +140_4-14 Q0 MARCO_17_2985927323-4 37 -0.066369 hybrid +140_4-14 Q0 MARCO_06_1085265262-116 38 -0.068171 hybrid +140_4-14 Q0 MARCO_53_1059405604-1 39 -0.069043 hybrid +140_4-14 Q0 MARCO_10_236893276-4 40 -0.069574 hybrid +140_4-14 Q0 MARCO_12_144690654-108 41 -0.071209 hybrid +140_4-14 Q0 KILT_25387276-3 42 -0.077343 hybrid +140_4-14 Q0 KILT_58389053-1 43 -0.077584 hybrid +140_4-14 Q0 MARCO_06_1085265262-115 44 -0.077797 hybrid +140_4-14 Q0 MARCO_10_840265085-23 45 -0.079786 hybrid +140_4-14 Q0 MARCO_44_1569285448-6 46 -0.081625 hybrid +140_4-14 Q0 MARCO_50_2497807304-41 47 -0.082252 hybrid +140_4-14 Q0 MARCO_26_374111754-3 48 -0.084000 hybrid +140_4-14 Q0 MARCO_06_1074962336-225 49 -0.090048 hybrid +140_4-14 Q0 MARCO_57_2131429950-14 50 -0.092754 hybrid +140_4-14 Q0 KILT_32309246-1 51 -0.094443 hybrid +140_4-14 Q0 KILT_7548205-3 52 -0.098175 hybrid +140_4-14 Q0 KILT_1036175-12 53 -0.099269 hybrid +140_4-14 Q0 MARCO_17_2904525997-20 54 -0.102243 hybrid +140_4-14 Q0 MARCO_41_1360382018-7 55 -0.104595 hybrid +140_4-14 Q0 MARCO_27_842250816-1 56 -0.113699 hybrid +140_4-14 Q0 MARCO_17_2904231476-14 57 -0.114185 hybrid +140_4-14 Q0 KILT_26748455-1 58 -0.117740 hybrid +140_4-14 Q0 KILT_26550439-1 59 -0.122081 hybrid +140_4-14 Q0 MARCO_02_1126821826-72 60 -0.123098 hybrid +140_4-14 Q0 MARCO_20_1601814167-7 61 -0.125582 hybrid +140_4-14 Q0 KILT_4358025-2 62 -0.128960 hybrid +140_4-14 Q0 KILT_8139154-1 63 -0.129078 hybrid +140_4-14 Q0 MARCO_14_759490622-3 64 -0.131512 hybrid +140_4-14 Q0 MARCO_14_759487194-3 65 -0.131512 hybrid +140_4-14 Q0 KILT_58952984-1 66 -0.133128 hybrid +140_4-14 Q0 MARCO_25_1421855953-1 67 -0.133437 hybrid +140_4-14 Q0 MARCO_09_857944853-3 68 -0.137160 hybrid +140_4-14 Q0 MARCO_16_2615657599-15 69 -0.137923 hybrid +140_4-14 Q0 KILT_38567893-1 70 -0.144829 hybrid +140_4-14 Q0 MARCO_20_1603352026-2 71 -0.148416 hybrid +140_4-14 Q0 MARCO_41_1242697460-36 72 -0.148811 hybrid +140_4-14 Q0 KILT_61128833-2 73 -0.149306 hybrid +140_4-14 Q0 KILT_39218500-1 74 -0.149551 hybrid +140_4-14 Q0 MARCO_20_769971781-4 75 -0.150473 hybrid +140_4-14 Q0 MARCO_16_2875040042-18 76 -0.152080 hybrid +140_4-14 Q0 MARCO_56_295648966-4 77 -0.153025 hybrid +140_4-14 Q0 KILT_25387276-1 78 -0.153188 hybrid +140_4-14 Q0 MARCO_05_1762379500-80 79 -0.153901 hybrid +140_4-14 Q0 KILT_15211530-2 80 -0.154627 hybrid +140_4-14 Q0 MARCO_45_627750124-3 81 -0.156194 hybrid +140_4-14 Q0 MARCO_56_1314230798-8 82 -0.158600 hybrid +140_4-14 Q0 MARCO_17_2985927323-6 83 -0.162006 hybrid +140_4-14 Q0 KILT_46365032-1 84 -0.162342 hybrid +140_4-14 Q0 MARCO_15_1458788650-2 85 -0.165043 hybrid +140_4-14 Q0 MARCO_24_1953567225-40 86 -0.165793 hybrid +140_4-14 Q0 MARCO_54_1477642769-6 87 -0.170792 hybrid +140_4-14 Q0 MARCO_07_486129109-1 88 -0.172367 hybrid +140_4-14 Q0 MARCO_15_1458788650-1 89 -0.172967 hybrid +140_4-14 Q0 KILT_13752801-2 90 -0.177593 hybrid +140_4-14 Q0 MARCO_06_1074962336-222 91 -0.178293 hybrid +140_4-14 Q0 MARCO_41_1242697460-31 92 -0.180272 hybrid +140_4-14 Q0 KILT_1453793-6 93 -0.180617 hybrid +140_4-14 Q0 KILT_4909761-1 94 -0.182493 hybrid +140_4-14 Q0 MARCO_39_664948620-73 95 -0.182860 hybrid +140_4-14 Q0 KILT_49325-3 96 -0.184677 hybrid +140_4-14 Q0 MARCO_17_2911355920-4 97 -0.186370 hybrid +140_4-14 Q0 MARCO_24_1908977960-17 98 -0.186747 hybrid +140_4-14 Q0 KILT_1453793-2 99 -0.186874 hybrid +140_4-14 Q0 MARCO_35_1383421591-7 100 -0.187015 hybrid +140_4-16 Q0 MARCO_20_1605557843-5 1 0.500001 hybrid +140_4-16 Q0 MARCO_30_1025297153-2 2 0.481192 hybrid +140_4-16 Q0 MARCO_20_1605557843-6 3 0.479500 hybrid +140_4-16 Q0 MARCO_17_2985927323-4 4 0.317087 hybrid +140_4-16 Q0 MARCO_20_1605557843-3 5 0.220170 hybrid +140_4-16 Q0 MARCO_20_1605557843-1 6 0.168042 hybrid +140_4-16 Q0 MARCO_17_2985927323-3 7 0.155443 hybrid +140_4-16 Q0 MARCO_05_1762379500-340 8 0.135621 hybrid +140_4-16 Q0 MARCO_17_2985927323-1 9 0.107027 hybrid +140_4-16 Q0 MARCO_17_2985927323-5 10 0.087633 hybrid +140_4-16 Q0 MARCO_05_1762379500-80 11 0.071018 hybrid +140_4-16 Q0 MARCO_06_1059528231-41 12 0.016105 hybrid +140_4-16 Q0 MARCO_29_796093340-4 13 0.014313 hybrid +140_4-16 Q0 MARCO_32_597088109-3 14 -0.015386 hybrid +140_4-16 Q0 KILT_317450-4 15 -0.033061 hybrid +140_4-16 Q0 MARCO_06_1115036832-126 16 -0.052294 hybrid +140_4-16 Q0 MARCO_10_802223254-13 17 -0.068533 hybrid +140_4-16 Q0 KILT_54116161-1 18 -0.090672 hybrid +140_4-16 Q0 MARCO_00_248676682-2 19 -0.102826 hybrid +140_4-16 Q0 MARCO_32_1078107602-1 20 -0.111452 hybrid +140_4-16 Q0 MARCO_30_815591824-9 21 -0.111950 hybrid +140_4-16 Q0 MARCO_30_1048979554-4 22 -0.120584 hybrid +140_4-16 Q0 MARCO_17_2985927323-9 23 -0.124139 hybrid +140_4-16 Q0 MARCO_17_2985927323-7 24 -0.124139 hybrid +140_4-16 Q0 MARCO_02_490003235-3 25 -0.125167 hybrid +140_4-16 Q0 MARCO_52_361644556-3 26 -0.128434 hybrid +140_4-16 Q0 MARCO_17_1736077149-13 27 -0.134738 hybrid +140_4-16 Q0 MARCO_41_1848531894-2 28 -0.135336 hybrid +140_4-16 Q0 MARCO_50_1449497274-18 29 -0.138515 hybrid +140_4-16 Q0 MARCO_31_1320165783-7 30 -0.145452 hybrid +140_4-16 Q0 MARCO_00_249628743-5 31 -0.152114 hybrid +140_4-16 Q0 MARCO_10_846236681-2 32 -0.157650 hybrid +140_4-16 Q0 MARCO_20_1605557843-4 33 -0.157763 hybrid +140_4-16 Q0 MARCO_00_248805684-3 34 -0.161285 hybrid +140_4-16 Q0 MARCO_15_530439189-2 35 -0.161670 hybrid +140_4-16 Q0 MARCO_22_1059756238-5 36 -0.166146 hybrid +140_4-16 Q0 MARCO_15_1458788650-2 37 -0.167802 hybrid +140_4-16 Q0 MARCO_00_250113393-1 38 -0.176128 hybrid +140_4-16 Q0 MARCO_52_362985386-3 39 -0.178371 hybrid +140_4-16 Q0 MARCO_32_598293543-8 40 -0.179393 hybrid +140_4-16 Q0 MARCO_50_635394862-4 41 -0.181490 hybrid +140_4-16 Q0 MARCO_41_1848011796-1 42 -0.186173 hybrid +140_4-16 Q0 MARCO_06_1059528231-34 43 -0.194067 hybrid +140_4-16 Q0 MARCO_33_176580101-8 44 -0.195294 hybrid +140_4-16 Q0 MARCO_22_1059307822-7 45 -0.197213 hybrid +140_4-16 Q0 MARCO_15_106080441-6 46 -0.198493 hybrid +140_4-16 Q0 MARCO_51_952331299-10 47 -0.199340 hybrid +140_4-16 Q0 MARCO_23_484049913-6 48 -0.199559 hybrid +140_4-16 Q0 MARCO_52_362022081-4 49 -0.203671 hybrid +140_4-16 Q0 MARCO_47_136276154-4 50 -0.206710 hybrid +140_4-16 Q0 MARCO_10_447030536-2 51 -0.210342 hybrid +140_4-16 Q0 MARCO_05_1762379500-39 52 -0.212140 hybrid +140_4-16 Q0 MARCO_23_688404889-5 53 -0.212335 hybrid +140_4-16 Q0 MARCO_42_1711949780-3 54 -0.212468 hybrid +140_4-16 Q0 MARCO_50_1410976211-12 55 -0.214489 hybrid +140_4-16 Q0 MARCO_32_1070403830-6 56 -0.219353 hybrid +140_4-16 Q0 MARCO_52_453398700-3 57 -0.219388 hybrid +140_4-16 Q0 KILT_317450-5 58 -0.219661 hybrid +140_4-16 Q0 MARCO_05_1763861392-2 59 -0.220683 hybrid +140_4-16 Q0 MARCO_28_1757844980-9 60 -0.221548 hybrid +140_4-16 Q0 MARCO_29_30311043-2 61 -0.221782 hybrid +140_4-16 Q0 MARCO_42_257086203-5 62 -0.224468 hybrid +140_4-16 Q0 MARCO_32_1065534633-3 63 -0.226083 hybrid +140_4-16 Q0 MARCO_52_362993341-5 64 -0.226225 hybrid +140_4-16 Q0 MARCO_22_1059937754-2 65 -0.228443 hybrid +140_4-16 Q0 MARCO_05_1759245897-2 66 -0.230760 hybrid +140_4-16 Q0 MARCO_50_635155721-13 67 -0.232644 hybrid +140_4-16 Q0 MARCO_06_329487373-3 68 -0.234990 hybrid +140_4-16 Q0 KILT_317450-3 69 -0.236749 hybrid +140_4-16 Q0 MARCO_09_542673162-5 70 -0.239338 hybrid +140_4-16 Q0 MARCO_25_1404256933-3 71 -0.241024 hybrid +140_4-16 Q0 MARCO_25_1434320634-10 72 -0.243429 hybrid +140_4-16 Q0 MARCO_32_763693737-10 73 -0.246021 hybrid +140_4-16 Q0 MARCO_57_1225137256-26 74 -0.246409 hybrid +140_4-16 Q0 MARCO_06_1128173535-33 75 -0.253474 hybrid +140_4-16 Q0 MARCO_10_802223254-5 76 -0.253841 hybrid +140_4-16 Q0 MARCO_05_516121492-7 77 -0.255014 hybrid +140_4-16 Q0 MARCO_31_883686915-5 78 -0.256954 hybrid +140_4-16 Q0 MARCO_23_483998227-5 79 -0.257422 hybrid +140_4-16 Q0 MARCO_55_102982259-5 80 -0.258370 hybrid +140_4-16 Q0 MARCO_57_1350356164-2 81 -0.260325 hybrid +140_4-16 Q0 MARCO_25_1434320634-8 82 -0.261220 hybrid +140_4-16 Q0 MARCO_09_542673162-2 83 -0.261789 hybrid +140_4-16 Q0 MARCO_07_478082445-3 84 -0.261958 hybrid +140_4-16 Q0 MARCO_31_883860827-6 85 -0.264970 hybrid +140_4-16 Q0 MARCO_22_1059700976-2 86 -0.267583 hybrid +140_4-16 Q0 MARCO_55_102481667-8 87 -0.269185 hybrid +140_4-16 Q0 MARCO_27_1205618821-3 88 -0.270341 hybrid +140_4-16 Q0 MARCO_50_634450227-5 89 -0.270708 hybrid +140_4-16 Q0 MARCO_55_101982645-11 90 -0.273226 hybrid +140_4-16 Q0 MARCO_06_1135753204-167 91 -0.275116 hybrid +140_4-16 Q0 MARCO_41_2133892052-2 92 -0.275646 hybrid +140_4-16 Q0 MARCO_32_1026703218-21 93 -0.277408 hybrid +140_4-16 Q0 MARCO_28_1757844980-14 94 -0.277793 hybrid +140_4-16 Q0 MARCO_53_1141177180-1 95 -0.277939 hybrid +140_4-16 Q0 MARCO_06_482825454-1 96 -0.278528 hybrid +140_4-16 Q0 MARCO_40_277494805-6 97 -0.282936 hybrid +140_4-16 Q0 MARCO_23_51685582-1 98 -0.283546 hybrid +140_4-16 Q0 MARCO_10_447030536-1 99 -0.284639 hybrid +140_4-16 Q0 MARCO_52_363113122-3 100 -0.286268 hybrid +140_4-2 Q0 MARCO_48_1535513660-18 1 0.500001 hybrid +140_4-2 Q0 MARCO_30_1029169387-9 2 0.412981 hybrid +140_4-2 Q0 MARCO_32_597834653-1 3 0.404026 hybrid +140_4-2 Q0 KILT_1842316-5 4 0.350146 hybrid +140_4-2 Q0 MARCO_32_597834653-4 5 0.336095 hybrid +140_4-2 Q0 KILT_13583474-1 6 0.293508 hybrid +140_4-2 Q0 MARCO_30_1025297153-4 7 0.243131 hybrid +140_4-2 Q0 MARCO_24_1719707759-5 8 0.242137 hybrid +140_4-2 Q0 MARCO_30_1025297153-1 9 0.211065 hybrid +140_4-2 Q0 MARCO_36_1004130531-4 10 0.201124 hybrid +140_4-2 Q0 MARCO_32_597809340-7 11 0.182862 hybrid +140_4-2 Q0 MARCO_24_1719707759-2 12 0.176882 hybrid +140_4-2 Q0 MARCO_24_1719707759-8 13 0.158523 hybrid +140_4-2 Q0 MARCO_24_1719707759-3 14 0.124024 hybrid +140_4-2 Q0 MARCO_24_1719707759-1 15 0.119919 hybrid +140_4-2 Q0 MARCO_00_358922652-6 16 0.108524 hybrid +140_4-2 Q0 MARCO_22_1016597411-1 17 0.103527 hybrid +140_4-2 Q0 MARCO_11_715682058-4 18 0.100751 hybrid +140_4-2 Q0 MARCO_30_1025297153-7 19 0.099725 hybrid +140_4-2 Q0 MARCO_11_758826070-8 20 0.099427 hybrid +140_4-2 Q0 MARCO_11_715682058-1 21 0.099203 hybrid +140_4-2 Q0 MARCO_05_594613048-47 22 0.095433 hybrid +140_4-2 Q0 MARCO_24_1717513197-7 23 0.088935 hybrid +140_4-2 Q0 KILT_29662850-5 24 0.083046 hybrid +140_4-2 Q0 MARCO_32_597834653-2 25 0.076989 hybrid +140_4-2 Q0 MARCO_03_446448156-1 26 0.066429 hybrid +140_4-2 Q0 MARCO_17_3100161904-5 27 0.060241 hybrid +140_4-2 Q0 MARCO_36_1004130531-1 28 0.058056 hybrid +140_4-2 Q0 KILT_1842316-6 29 0.052780 hybrid +140_4-2 Q0 KILT_44268939-1 30 0.040411 hybrid +140_4-2 Q0 MARCO_19_153356567-11 31 0.039967 hybrid +140_4-2 Q0 MARCO_52_1181039218-4 32 0.024916 hybrid +140_4-2 Q0 MARCO_51_903670425-2 33 0.019469 hybrid +140_4-2 Q0 MARCO_30_1048259710-5 34 0.017069 hybrid +140_4-2 Q0 MARCO_11_715682058-3 35 0.016089 hybrid +140_4-2 Q0 MARCO_28_813949376-3 36 0.012378 hybrid +140_4-2 Q0 MARCO_03_448409881-6 37 0.012287 hybrid +140_4-2 Q0 MARCO_11_758826070-9 38 0.010080 hybrid +140_4-2 Q0 MARCO_17_3134021343-38 39 0.009412 hybrid +140_4-2 Q0 MARCO_28_987485845-2 40 0.007540 hybrid +140_4-2 Q0 MARCO_51_903670425-7 41 -0.017211 hybrid +140_4-2 Q0 KILT_12683744-5 42 -0.023808 hybrid +140_4-2 Q0 MARCO_24_1717513197-8 43 -0.023890 hybrid +140_4-2 Q0 MARCO_19_153356567-9 44 -0.023936 hybrid +140_4-2 Q0 MARCO_39_620476129-24 45 -0.024748 hybrid +140_4-2 Q0 MARCO_00_358922652-1 46 -0.027271 hybrid +140_4-2 Q0 KILT_1870519-4 47 -0.027737 hybrid +140_4-2 Q0 MARCO_32_597809340-1 48 -0.028947 hybrid +140_4-2 Q0 MARCO_19_1470024508-8 49 -0.031311 hybrid +140_4-2 Q0 KILT_40602423-5 50 -0.033328 hybrid +140_4-2 Q0 MARCO_11_758826070-10 51 -0.036084 hybrid +140_4-2 Q0 MARCO_19_153961264-3 52 -0.040581 hybrid +140_4-2 Q0 MARCO_32_597809340-6 53 -0.045013 hybrid +140_4-2 Q0 MARCO_32_597809340-2 54 -0.045763 hybrid +140_4-2 Q0 MARCO_11_715869510-1 55 -0.052709 hybrid +140_4-2 Q0 MARCO_19_153356567-8 56 -0.053726 hybrid +140_4-2 Q0 MARCO_22_1016597411-2 57 -0.054306 hybrid +140_4-2 Q0 MARCO_32_597809340-4 58 -0.054735 hybrid +140_4-2 Q0 MARCO_30_1048979554-3 59 -0.055019 hybrid +140_4-2 Q0 MARCO_28_309794017-7 60 -0.056619 hybrid +140_4-2 Q0 MARCO_52_1181039218-13 61 -0.059653 hybrid +140_4-2 Q0 MARCO_19_153961264-1 62 -0.065443 hybrid +140_4-2 Q0 MARCO_11_716304225-15 63 -0.065670 hybrid +140_4-2 Q0 MARCO_11_758826070-12 64 -0.067735 hybrid +140_4-2 Q0 MARCO_11_716547883-1 65 -0.070511 hybrid +140_4-2 Q0 MARCO_03_446448156-4 66 -0.083534 hybrid +140_4-2 Q0 MARCO_52_1181039218-7 67 -0.086676 hybrid +140_4-2 Q0 MARCO_02_611379847-3 68 -0.087858 hybrid +140_4-2 Q0 MARCO_05_1705103959-1 69 -0.088503 hybrid +140_4-2 Q0 MARCO_30_823498884-2 70 -0.088918 hybrid +140_4-2 Q0 KILT_44973671-2 71 -0.095100 hybrid +140_4-2 Q0 MARCO_00_358953289-1 72 -0.095839 hybrid +140_4-2 Q0 MARCO_19_153356567-2 73 -0.098728 hybrid +140_4-2 Q0 KILT_13583474-4 74 -0.099407 hybrid +140_4-2 Q0 MARCO_52_1181039218-2 75 -0.101572 hybrid +140_4-2 Q0 MARCO_03_446448156-3 76 -0.101728 hybrid +140_4-2 Q0 KILT_13583474-3 77 -0.104671 hybrid +140_4-2 Q0 MARCO_32_597834653-3 78 -0.107419 hybrid +140_4-2 Q0 KILT_43767543-1 79 -0.111373 hybrid +140_4-2 Q0 MARCO_24_1719717118-8 80 -0.112348 hybrid +140_4-2 Q0 MARCO_30_823482957-3 81 -0.113658 hybrid +140_4-2 Q0 MARCO_17_2985927323-6 82 -0.115689 hybrid +140_4-2 Q0 MARCO_30_1092694148-2 83 -0.116376 hybrid +140_4-2 Q0 MARCO_32_596179161-5 84 -0.118675 hybrid +140_4-2 Q0 KILT_22527511-24 85 -0.120200 hybrid +140_4-2 Q0 KILT_57448-16 86 -0.120641 hybrid +140_4-2 Q0 MARCO_55_74209748-1 87 -0.123630 hybrid +140_4-2 Q0 MARCO_56_1312215006-4 88 -0.123905 hybrid +140_4-2 Q0 MARCO_55_96319014-1 89 -0.125388 hybrid +140_4-2 Q0 KILT_40602423-2 90 -0.125632 hybrid +140_4-2 Q0 MARCO_17_2985927323-9 91 -0.126417 hybrid +140_4-2 Q0 MARCO_17_2985927323-7 92 -0.126417 hybrid +140_4-2 Q0 MARCO_11_758826070-3 93 -0.131403 hybrid +140_4-2 Q0 KILT_36376570-4 94 -0.131570 hybrid +140_4-2 Q0 MARCO_32_598428385-2 95 -0.134815 hybrid +140_4-2 Q0 MARCO_32_597809340-3 96 -0.136042 hybrid +140_4-2 Q0 MARCO_11_715342331-1 97 -0.137045 hybrid +140_4-2 Q0 MARCO_19_153356567-7 98 -0.138954 hybrid +140_4-2 Q0 MARCO_30_1029169387-17 99 -0.139005 hybrid +140_4-2 Q0 MARCO_22_1016597411-7 100 -0.139022 hybrid +140_4-4 Q0 MARCO_55_1285550962-1 1 0.499998 hybrid +140_4-4 Q0 MARCO_30_1025297153-4 2 0.243003 hybrid +140_4-4 Q0 MARCO_55_1285550962-3 3 0.218300 hybrid +140_4-4 Q0 MARCO_56_874320135-2 4 0.197913 hybrid +140_4-4 Q0 MARCO_55_1285550962-4 5 0.185119 hybrid +140_4-4 Q0 MARCO_18_464104505-33 6 0.175824 hybrid +140_4-4 Q0 MARCO_54_1591694851-3 7 0.097034 hybrid +140_4-4 Q0 MARCO_17_2509340321-7 8 0.082061 hybrid +140_4-4 Q0 MARCO_55_112707963-2 9 0.079342 hybrid +140_4-4 Q0 MARCO_30_1025211734-1 10 0.078439 hybrid +140_4-4 Q0 KILT_47340267-5 11 0.071530 hybrid +140_4-4 Q0 MARCO_49_522173046-5 12 0.068187 hybrid +140_4-4 Q0 MARCO_24_1717373539-12 13 0.067121 hybrid +140_4-4 Q0 MARCO_28_813949376-1 14 0.040621 hybrid +140_4-4 Q0 MARCO_30_1025211734-2 15 0.028826 hybrid +140_4-4 Q0 KILT_732389-21 16 0.016437 hybrid +140_4-4 Q0 MARCO_55_1285559246-1 17 0.010353 hybrid +140_4-4 Q0 MARCO_55_1285550962-2 18 0.004877 hybrid +140_4-4 Q0 MARCO_22_1016565026-10 19 -0.001560 hybrid +140_4-4 Q0 MARCO_24_1718716761-4 20 -0.013229 hybrid +140_4-4 Q0 KILT_58254093-4 21 -0.016158 hybrid +140_4-4 Q0 MARCO_03_448409881-2 22 -0.022511 hybrid +140_4-4 Q0 MARCO_56_1312772055-7 23 -0.028278 hybrid +140_4-4 Q0 MARCO_32_598442233-1 24 -0.034319 hybrid +140_4-4 Q0 KILT_28273296-1 25 -0.037203 hybrid +140_4-4 Q0 MARCO_41_1243447347-38 26 -0.043884 hybrid +140_4-4 Q0 MARCO_29_867843994-12 27 -0.045503 hybrid +140_4-4 Q0 MARCO_49_522173046-3 28 -0.055081 hybrid +140_4-4 Q0 KILT_596834-15 29 -0.055709 hybrid +140_4-4 Q0 KILT_28024638-10 30 -0.058542 hybrid +140_4-4 Q0 KILT_61023409-2 31 -0.063086 hybrid +140_4-4 Q0 MARCO_56_1312254404-8 32 -0.063208 hybrid +140_4-4 Q0 KILT_52286150-2 33 -0.064570 hybrid +140_4-4 Q0 MARCO_39_600507896-7 34 -0.068773 hybrid +140_4-4 Q0 MARCO_16_2872672276-28 35 -0.070000 hybrid +140_4-4 Q0 MARCO_16_2872830431-22 36 -0.074949 hybrid +140_4-4 Q0 KILT_25690143-2 37 -0.081964 hybrid +140_4-4 Q0 KILT_17118362-1 38 -0.085656 hybrid +140_4-4 Q0 MARCO_19_609025200-8 39 -0.089914 hybrid +140_4-4 Q0 KILT_44973671-2 40 -0.090821 hybrid +140_4-4 Q0 MARCO_24_1717373539-9 41 -0.107278 hybrid +140_4-4 Q0 MARCO_39_660751016-18 42 -0.108488 hybrid +140_4-4 Q0 MARCO_48_1535513660-18 43 -0.108636 hybrid +140_4-4 Q0 MARCO_51_903670425-7 44 -0.112645 hybrid +140_4-4 Q0 MARCO_11_717055875-4 45 -0.117880 hybrid +140_4-4 Q0 KILT_4931941-1 46 -0.120557 hybrid +140_4-4 Q0 MARCO_16_2872830431-15 47 -0.121392 hybrid +140_4-4 Q0 MARCO_55_1285559246-2 48 -0.121809 hybrid +140_4-4 Q0 KILT_378791-13 49 -0.122134 hybrid +140_4-4 Q0 MARCO_51_903670425-5 50 -0.124322 hybrid +140_4-4 Q0 MARCO_17_429991603-17 51 -0.126244 hybrid +140_4-4 Q0 KILT_52786719-2 52 -0.129128 hybrid +140_4-4 Q0 MARCO_56_1312461471-4 53 -0.130063 hybrid +140_4-4 Q0 MARCO_29_831680729-5 54 -0.132197 hybrid +140_4-4 Q0 MARCO_55_1285559246-3 55 -0.134338 hybrid +140_4-4 Q0 MARCO_56_1312653403-2 56 -0.135974 hybrid +140_4-4 Q0 KILT_46376610-2 57 -0.139806 hybrid +140_4-4 Q0 MARCO_56_1312237687-4 58 -0.142154 hybrid +140_4-4 Q0 KILT_3385208-7 59 -0.144502 hybrid +140_4-4 Q0 MARCO_56_1312772055-12 60 -0.144734 hybrid +140_4-4 Q0 MARCO_56_1312629787-3 61 -0.145463 hybrid +140_4-4 Q0 KILT_36378064-5 62 -0.146466 hybrid +140_4-4 Q0 KILT_28273296-2 63 -0.146867 hybrid +140_4-4 Q0 KILT_56973128-3 64 -0.146981 hybrid +140_4-4 Q0 KILT_46754936-1 65 -0.150867 hybrid +140_4-4 Q0 KILT_54964174-2 66 -0.153013 hybrid +140_4-4 Q0 KILT_25514581-3 67 -0.153371 hybrid +140_4-4 Q0 MARCO_17_2959693144-21 68 -0.153418 hybrid +140_4-4 Q0 MARCO_16_2872672276-51 69 -0.153759 hybrid +140_4-4 Q0 KILT_24820359-2 70 -0.156209 hybrid +140_4-4 Q0 KILT_34578081-3 71 -0.156634 hybrid +140_4-4 Q0 KILT_55857023-2 72 -0.158371 hybrid +140_4-4 Q0 KILT_44981410-11 73 -0.158371 hybrid +140_4-4 Q0 KILT_59974715-8 74 -0.158510 hybrid +140_4-4 Q0 KILT_732389-23 75 -0.160926 hybrid +140_4-4 Q0 MARCO_17_692375270-50 76 -0.160964 hybrid +140_4-4 Q0 KILT_732389-17 77 -0.161027 hybrid +140_4-4 Q0 MARCO_50_1409583712-8 78 -0.163620 hybrid +140_4-4 Q0 MARCO_30_1079495440-5 79 -0.164657 hybrid +140_4-4 Q0 KILT_46578629-5 80 -0.164939 hybrid +140_4-4 Q0 MARCO_16_2872830431-81 81 -0.165866 hybrid +140_4-4 Q0 MARCO_30_1025297153-7 82 -0.166806 hybrid +140_4-4 Q0 MARCO_54_1565997075-2 83 -0.167000 hybrid +140_4-4 Q0 MARCO_56_1312543811-11 84 -0.168535 hybrid +140_4-4 Q0 MARCO_14_44487321-1 85 -0.168986 hybrid +140_4-4 Q0 MARCO_22_1016798109-8 86 -0.171735 hybrid +140_4-4 Q0 MARCO_16_2872830431-75 87 -0.171861 hybrid +140_4-4 Q0 MARCO_56_1312739461-3 88 -0.172388 hybrid +140_4-4 Q0 KILT_59980247-2 89 -0.172759 hybrid +140_4-4 Q0 MARCO_36_1434121357-6 90 -0.173556 hybrid +140_4-4 Q0 MARCO_06_748956648-11 91 -0.173674 hybrid +140_4-4 Q0 MARCO_16_2872672276-54 92 -0.174664 hybrid +140_4-4 Q0 KILT_53265757-1 93 -0.174719 hybrid +140_4-4 Q0 MARCO_02_165941519-2 94 -0.177982 hybrid +140_4-4 Q0 MARCO_18_464104505-41 95 -0.178770 hybrid +140_4-4 Q0 MARCO_40_1579003107-3 96 -0.181338 hybrid +140_4-4 Q0 KILT_42512141-1 97 -0.181721 hybrid +140_4-4 Q0 MARCO_22_1487771191-2 98 -0.182425 hybrid +140_4-4 Q0 MARCO_13_1159309374-8 99 -0.182539 hybrid +140_4-4 Q0 MARCO_23_52933941-13 100 -0.183053 hybrid +140_4-6 Q0 MARCO_30_1025297153-4 1 0.500000 hybrid +140_4-6 Q0 MARCO_32_598442233-1 2 0.262687 hybrid +140_4-6 Q0 MARCO_30_1025211734-2 3 0.257825 hybrid +140_4-6 Q0 MARCO_54_1589172188-3 4 0.248881 hybrid +140_4-6 Q0 MARCO_30_1025297153-7 5 0.184757 hybrid +140_4-6 Q0 MARCO_30_1048259710-5 6 0.140801 hybrid +140_4-6 Q0 MARCO_30_1029169387-9 7 0.133876 hybrid +140_4-6 Q0 MARCO_30_1025297153-6 8 0.128403 hybrid +140_4-6 Q0 MARCO_55_112707963-2 9 0.123119 hybrid +140_4-6 Q0 MARCO_03_448409881-2 10 0.113343 hybrid +140_4-6 Q0 MARCO_32_597828000-3 11 0.110917 hybrid +140_4-6 Q0 MARCO_30_1025297153-3 12 0.105812 hybrid +140_4-6 Q0 MARCO_30_1025211734-1 13 0.090998 hybrid +140_4-6 Q0 MARCO_16_3306273242-23 14 0.088082 hybrid +140_4-6 Q0 KILT_4214891-2 15 0.072047 hybrid +140_4-6 Q0 MARCO_30_1025297153-8 16 0.059219 hybrid +140_4-6 Q0 MARCO_32_598442233-5 17 0.048723 hybrid +140_4-6 Q0 MARCO_00_358922652-5 18 0.035530 hybrid +140_4-6 Q0 MARCO_36_1004130531-4 19 0.021990 hybrid +140_4-6 Q0 MARCO_48_1535513660-18 20 0.016158 hybrid +140_4-6 Q0 MARCO_30_1048979554-4 21 0.016053 hybrid +140_4-6 Q0 MARCO_56_874320135-2 22 0.010297 hybrid +140_4-6 Q0 MARCO_32_598442233-2 23 -0.006351 hybrid +140_4-6 Q0 MARCO_29_1206221196-5 24 -0.013121 hybrid +140_4-6 Q0 MARCO_53_85713767-3 25 -0.017314 hybrid +140_4-6 Q0 MARCO_03_446448156-1 26 -0.031792 hybrid +140_4-6 Q0 MARCO_24_1719707759-3 27 -0.034603 hybrid +140_4-6 Q0 MARCO_11_715682058-4 28 -0.044793 hybrid +140_4-6 Q0 MARCO_54_1589172188-1 29 -0.048034 hybrid +140_4-6 Q0 MARCO_55_112707963-5 30 -0.066771 hybrid +140_4-6 Q0 KILT_22527511-23 31 -0.075060 hybrid +140_4-6 Q0 MARCO_45_165449753-8 32 -0.076557 hybrid +140_4-6 Q0 MARCO_32_597834653-4 33 -0.079179 hybrid +140_4-6 Q0 KILT_13583474-8 34 -0.083748 hybrid +140_4-6 Q0 MARCO_05_858027276-3 35 -0.093940 hybrid +140_4-6 Q0 MARCO_36_1006326993-5 36 -0.096596 hybrid +140_4-6 Q0 MARCO_32_597834653-3 37 -0.099428 hybrid +140_4-6 Q0 MARCO_05_1762303156-2 38 -0.100978 hybrid +140_4-6 Q0 MARCO_00_358922652-4 39 -0.104413 hybrid +140_4-6 Q0 MARCO_17_454697618-6 40 -0.106114 hybrid +140_4-6 Q0 KILT_1842316-6 41 -0.109781 hybrid +140_4-6 Q0 MARCO_54_1569270125-3 42 -0.111786 hybrid +140_4-6 Q0 MARCO_32_597809340-7 43 -0.112662 hybrid +140_4-6 Q0 MARCO_01_1552861456-1 44 -0.119289 hybrid +140_4-6 Q0 MARCO_32_597820772-2 45 -0.120057 hybrid +140_4-6 Q0 MARCO_32_600296378-1 46 -0.123329 hybrid +140_4-6 Q0 MARCO_10_443318674-4 47 -0.124095 hybrid +140_4-6 Q0 MARCO_00_254678577-3 48 -0.125773 hybrid +140_4-6 Q0 MARCO_19_153356567-7 49 -0.127491 hybrid +140_4-6 Q0 MARCO_30_1025297153-1 50 -0.127971 hybrid +140_4-6 Q0 MARCO_19_153356567-9 51 -0.147679 hybrid +140_4-6 Q0 MARCO_30_1029169387-17 52 -0.149482 hybrid +140_4-6 Q0 KILT_40602423-5 53 -0.149717 hybrid +140_4-6 Q0 MARCO_24_1719707759-5 54 -0.156446 hybrid +140_4-6 Q0 MARCO_00_358922652-6 55 -0.158660 hybrid +140_4-6 Q0 MARCO_32_596920845-22 56 -0.164567 hybrid +140_4-6 Q0 MARCO_30_1025211734-3 57 -0.170877 hybrid +140_4-6 Q0 KILT_13583474-1 58 -0.172057 hybrid +140_4-6 Q0 KILT_1505891-5 59 -0.175898 hybrid +140_4-6 Q0 MARCO_55_112707963-1 60 -0.176743 hybrid +140_4-6 Q0 MARCO_45_165402123-3 61 -0.186856 hybrid +140_4-6 Q0 KILT_22527511-22 62 -0.191197 hybrid +140_4-6 Q0 MARCO_28_813949376-1 63 -0.204073 hybrid +140_4-6 Q0 MARCO_32_598442233-3 64 -0.204847 hybrid +140_4-6 Q0 MARCO_10_237839586-9 65 -0.205641 hybrid +140_4-6 Q0 MARCO_19_153356567-8 66 -0.206535 hybrid +140_4-6 Q0 MARCO_32_597809340-5 67 -0.209268 hybrid +140_4-6 Q0 MARCO_11_715682058-3 68 -0.211535 hybrid +140_4-6 Q0 MARCO_00_254678577-2 69 -0.213045 hybrid +140_4-6 Q0 KILT_57448-16 70 -0.213813 hybrid +140_4-6 Q0 MARCO_45_174049565-1 71 -0.214161 hybrid +140_4-6 Q0 MARCO_18_475809633-7 72 -0.216002 hybrid +140_4-6 Q0 MARCO_36_1004130531-11 73 -0.216324 hybrid +140_4-6 Q0 MARCO_19_2582932327-1 74 -0.219878 hybrid +140_4-6 Q0 MARCO_04_783991408-2 75 -0.220405 hybrid +140_4-6 Q0 MARCO_55_74209748-1 76 -0.220665 hybrid +140_4-6 Q0 MARCO_23_1730275061-4 77 -0.220719 hybrid +140_4-6 Q0 MARCO_39_670607657-53 78 -0.223686 hybrid +140_4-6 Q0 MARCO_06_484901704-1 79 -0.223911 hybrid +140_4-6 Q0 KILT_4214891-4 80 -0.225236 hybrid +140_4-6 Q0 KILT_13583474-3 81 -0.232788 hybrid +140_4-6 Q0 MARCO_25_1403800879-2 82 -0.233955 hybrid +140_4-6 Q0 KILT_1130380-4 83 -0.234575 hybrid +140_4-6 Q0 MARCO_32_597809340-4 84 -0.236411 hybrid +140_4-6 Q0 KILT_22527511-24 85 -0.236782 hybrid +140_4-6 Q0 MARCO_32_597828000-2 86 -0.236994 hybrid +140_4-6 Q0 MARCO_00_945682241-2 87 -0.237155 hybrid +140_4-6 Q0 MARCO_36_1008221886-6 88 -0.245526 hybrid +140_4-6 Q0 MARCO_11_10819812-8 89 -0.245697 hybrid +140_4-6 Q0 MARCO_03_1042228076-2 90 -0.247204 hybrid +140_4-6 Q0 MARCO_32_596920845-3 91 -0.250064 hybrid +140_4-6 Q0 MARCO_24_1615319549-5 92 -0.255674 hybrid +140_4-6 Q0 MARCO_16_3306273242-22 93 -0.255989 hybrid +140_4-6 Q0 MARCO_24_1615319549-7 94 -0.256589 hybrid +140_4-6 Q0 KILT_1842316-5 95 -0.258389 hybrid +140_4-6 Q0 MARCO_55_1703554996-8 96 -0.258928 hybrid +140_4-6 Q0 MARCO_32_597820772-5 97 -0.259748 hybrid +140_4-6 Q0 MARCO_32_1066649046-4 98 -0.260016 hybrid +140_4-6 Q0 MARCO_10_802434734-1 99 -0.263264 hybrid +140_4-6 Q0 MARCO_24_1615050157-6 100 -0.263908 hybrid +140_4-8 Q0 MARCO_17_2985927323-9 1 0.500001 hybrid +140_4-8 Q0 MARCO_17_2985927323-7 2 0.500001 hybrid +140_4-8 Q0 MARCO_20_1605557843-5 3 0.439351 hybrid +140_4-8 Q0 MARCO_20_1605557843-6 4 0.379234 hybrid +140_4-8 Q0 MARCO_17_2985927323-6 5 0.350458 hybrid +140_4-8 Q0 MARCO_05_1762379500-340 6 0.313994 hybrid +140_4-8 Q0 MARCO_17_2985927323-4 7 0.306494 hybrid +140_4-8 Q0 MARCO_17_2985927323-3 8 0.296600 hybrid +140_4-8 Q0 MARCO_17_2985927323-5 9 0.288762 hybrid +140_4-8 Q0 MARCO_20_1605557843-3 10 0.257341 hybrid +140_4-8 Q0 MARCO_20_1605557843-1 11 0.249633 hybrid +140_4-8 Q0 MARCO_17_2985927323-1 12 0.227137 hybrid +140_4-8 Q0 MARCO_20_1605557843-4 13 0.209197 hybrid +140_4-8 Q0 MARCO_30_1025297153-2 14 0.157129 hybrid +140_4-8 Q0 MARCO_30_1048979554-4 15 0.130277 hybrid +140_4-8 Q0 MARCO_32_597834653-4 16 0.123039 hybrid +140_4-8 Q0 MARCO_05_1762379500-80 17 0.105084 hybrid +140_4-8 Q0 MARCO_30_1029169387-9 18 0.061667 hybrid +140_4-8 Q0 MARCO_32_598293543-8 19 0.022910 hybrid +140_4-8 Q0 MARCO_32_597809340-4 20 -0.001652 hybrid +140_4-8 Q0 KILT_13583474-1 21 -0.026493 hybrid +140_4-8 Q0 MARCO_24_1719707759-5 22 -0.045457 hybrid +140_4-8 Q0 MARCO_17_2985927323-2 23 -0.075247 hybrid +140_4-8 Q0 MARCO_22_1016597411-4 24 -0.120525 hybrid +140_4-8 Q0 KILT_40602423-5 25 -0.132450 hybrid +140_4-8 Q0 KILT_26115267-1 26 -0.143934 hybrid +140_4-8 Q0 MARCO_36_1004130531-4 27 -0.149613 hybrid +140_4-8 Q0 MARCO_00_248676682-2 28 -0.153887 hybrid +140_4-8 Q0 MARCO_22_1487771191-2 29 -0.164268 hybrid +140_4-8 Q0 MARCO_30_1025297153-7 30 -0.187007 hybrid +140_4-8 Q0 MARCO_11_715682058-3 31 -0.195930 hybrid +140_4-8 Q0 MARCO_11_715682058-4 32 -0.198274 hybrid +140_4-8 Q0 MARCO_30_1025297153-8 33 -0.204001 hybrid +140_4-8 Q0 MARCO_15_1458788650-1 34 -0.205076 hybrid +140_4-8 Q0 MARCO_15_1458788650-2 35 -0.205168 hybrid +140_4-8 Q0 MARCO_30_1025297153-4 36 -0.206391 hybrid +140_4-8 Q0 KILT_1842316-5 37 -0.216570 hybrid +140_4-8 Q0 MARCO_22_1016597411-1 38 -0.225259 hybrid +140_4-8 Q0 MARCO_22_1016597411-2 39 -0.231520 hybrid +140_4-8 Q0 MARCO_32_597809340-7 40 -0.234499 hybrid +140_4-8 Q0 MARCO_30_1029169387-17 41 -0.236493 hybrid +140_4-8 Q0 KILT_53850588-1 42 -0.239093 hybrid +140_4-8 Q0 MARCO_22_1016868225-2 43 -0.247970 hybrid +140_4-8 Q0 KILT_36953898-1 44 -0.250018 hybrid +140_4-8 Q0 MARCO_41_1392276672-32 45 -0.251121 hybrid +140_4-8 Q0 MARCO_11_716614842-6 46 -0.252406 hybrid +140_4-8 Q0 MARCO_05_858027276-3 47 -0.258501 hybrid +140_4-8 Q0 KILT_13583474-4 48 -0.262749 hybrid +140_4-8 Q0 MARCO_32_597834653-2 49 -0.269757 hybrid +140_4-8 Q0 MARCO_17_1736077149-13 50 -0.270715 hybrid +140_4-8 Q0 MARCO_00_358922652-6 51 -0.278338 hybrid +140_4-8 Q0 KILT_1842316-6 52 -0.279187 hybrid +140_4-8 Q0 MARCO_30_1025297153-1 53 -0.279993 hybrid +140_4-8 Q0 MARCO_28_813949376-3 54 -0.281720 hybrid +140_4-8 Q0 MARCO_46_1513597679-2 55 -0.281952 hybrid +140_4-8 Q0 MARCO_32_596011790-1 56 -0.285968 hybrid +140_4-8 Q0 MARCO_48_1535513660-18 57 -0.287392 hybrid +140_4-8 Q0 KILT_54923736-1 58 -0.289303 hybrid +140_4-8 Q0 KILT_46719030-2 59 -0.289802 hybrid +140_4-8 Q0 MARCO_22_1124107271-4 60 -0.291564 hybrid +140_4-8 Q0 MARCO_11_10819812-10 61 -0.291822 hybrid +140_4-8 Q0 KILT_41572627-2 62 -0.293371 hybrid +140_4-8 Q0 MARCO_32_597834653-3 63 -0.296214 hybrid +140_4-8 Q0 KILT_15211530-2 64 -0.298370 hybrid +140_4-8 Q0 KILT_9463403-2 65 -0.298565 hybrid +140_4-8 Q0 KILT_2677773-5 66 -0.300025 hybrid +140_4-8 Q0 MARCO_32_598442233-5 67 -0.300797 hybrid +140_4-8 Q0 MARCO_29_1416026564-4 68 -0.302279 hybrid +140_4-8 Q0 MARCO_11_758826070-8 69 -0.302734 hybrid +140_4-8 Q0 MARCO_32_1066649046-4 70 -0.307932 hybrid +140_4-8 Q0 MARCO_19_153356567-11 71 -0.310838 hybrid +140_4-8 Q0 MARCO_00_249628743-1 72 -0.311519 hybrid +140_4-8 Q0 MARCO_24_1717996688-3 73 -0.311705 hybrid +140_4-8 Q0 MARCO_24_1717996688-1 74 -0.311705 hybrid +140_4-8 Q0 MARCO_27_1144430677-6 75 -0.312101 hybrid +140_4-8 Q0 KILT_28552509-1 76 -0.313913 hybrid +140_4-8 Q0 MARCO_10_802223254-13 77 -0.314406 hybrid +140_4-8 Q0 MARCO_55_1701887807-2 78 -0.315535 hybrid +140_4-8 Q0 MARCO_29_831680729-1 79 -0.315813 hybrid +140_4-8 Q0 MARCO_31_1436154089-3 80 -0.317139 hybrid +140_4-8 Q0 MARCO_11_715682058-5 81 -0.318363 hybrid +140_4-8 Q0 MARCO_24_1717297314-1 82 -0.319148 hybrid +140_4-8 Q0 KILT_25296353-1 83 -0.319383 hybrid +140_4-8 Q0 MARCO_24_1615339466-1 84 -0.322992 hybrid +140_4-8 Q0 MARCO_30_1025297153-5 85 -0.323044 hybrid +140_4-8 Q0 MARCO_24_1717513197-8 86 -0.323081 hybrid +140_4-8 Q0 KILT_43689982-4 87 -0.323154 hybrid +140_4-8 Q0 MARCO_11_715770389-2 88 -0.323504 hybrid +140_4-8 Q0 MARCO_31_940204054-13 89 -0.324841 hybrid +140_4-8 Q0 KILT_56709009-1 90 -0.325220 hybrid +140_4-8 Q0 MARCO_16_2872830431-82 91 -0.326036 hybrid +140_4-8 Q0 KILT_26115267-4 92 -0.326134 hybrid +140_4-8 Q0 MARCO_31_884196398-1 93 -0.326358 hybrid +140_4-8 Q0 MARCO_57_1225469868-64 94 -0.327073 hybrid +140_4-8 Q0 KILT_44268939-1 95 -0.327754 hybrid +140_4-8 Q0 KILT_13583474-8 96 -0.328176 hybrid +140_4-8 Q0 KILT_26078564-1 97 -0.328570 hybrid +140_4-8 Q0 MARCO_16_2872672276-10 98 -0.329039 hybrid +140_4-8 Q0 MARCO_14_1100594918-2 99 -0.331516 hybrid +140_4-8 Q0 MARCO_28_1757844980-11 100 -0.331691 hybrid +141_1-1 Q0 MARCO_30_744759371-208 1 0.499998 hybrid +141_1-1 Q0 MARCO_10_909467982-11 2 0.464690 hybrid +141_1-1 Q0 MARCO_28_338626275-4 3 0.412197 hybrid +141_1-1 Q0 MARCO_15_481036841-8 4 0.384658 hybrid +141_1-1 Q0 MARCO_48_978698970-6 5 0.308287 hybrid +141_1-1 Q0 MARCO_04_480632713-2 6 0.286897 hybrid +141_1-1 Q0 MARCO_40_560927337-23 7 0.270612 hybrid +141_1-1 Q0 MARCO_10_897295825-15 8 0.257238 hybrid +141_1-1 Q0 MARCO_13_1256080035-7 9 0.253448 hybrid +141_1-1 Q0 MARCO_06_327278198-2 10 0.237301 hybrid +141_1-1 Q0 MARCO_02_1197792450-4 11 0.214139 hybrid +141_1-1 Q0 MARCO_12_1447109277-6 12 0.196626 hybrid +141_1-1 Q0 MARCO_12_1454407232-7 13 0.182254 hybrid +141_1-1 Q0 MARCO_50_1513874056-124 14 0.161875 hybrid +141_1-1 Q0 MARCO_06_327278198-3 15 0.156266 hybrid +141_1-1 Q0 MARCO_56_814238486-4 16 0.154671 hybrid +141_1-1 Q0 MARCO_39_1694042320-9 17 0.143281 hybrid +141_1-1 Q0 MARCO_37_834258682-4 18 0.137079 hybrid +141_1-1 Q0 MARCO_41_917933342-13 19 0.125923 hybrid +141_1-1 Q0 MARCO_40_264626786-11 20 0.119165 hybrid +141_1-1 Q0 MARCO_29_268011741-2 21 0.118816 hybrid +141_1-1 Q0 MARCO_30_1807188622-4 22 0.118401 hybrid +141_1-1 Q0 MARCO_15_103944462-8 23 0.115945 hybrid +141_1-1 Q0 MARCO_15_103977589-11 24 0.115945 hybrid +141_1-1 Q0 MARCO_27_1208038305-2 25 0.112191 hybrid +141_1-1 Q0 MARCO_15_104393568-2 26 0.099559 hybrid +141_1-1 Q0 MARCO_40_561251023-27 27 0.098190 hybrid +141_1-1 Q0 MARCO_10_911962282-15 28 0.093817 hybrid +141_1-1 Q0 MARCO_53_808919352-1 29 0.093243 hybrid +141_1-1 Q0 MARCO_30_1806644682-2 30 0.089762 hybrid +141_1-1 Q0 MARCO_57_1348084641-2 31 0.087929 hybrid +141_1-1 Q0 MARCO_02_1197789364-2 32 0.083230 hybrid +141_1-1 Q0 MARCO_30_1592646405-4 33 0.082037 hybrid +141_1-1 Q0 MARCO_14_1774891860-2 34 0.081856 hybrid +141_1-1 Q0 MARCO_50_1456411426-10 35 0.074723 hybrid +141_1-1 Q0 MARCO_46_263053540-3 36 0.067617 hybrid +141_1-1 Q0 MARCO_50_2502667678-11 37 0.064860 hybrid +141_1-1 Q0 MARCO_06_540511745-4 38 0.063999 hybrid +141_1-1 Q0 MARCO_20_69758426-6 39 0.054017 hybrid +141_1-1 Q0 MARCO_10_911693913-7 40 0.049548 hybrid +141_1-1 Q0 MARCO_08_1093197680-18 41 0.049150 hybrid +141_1-1 Q0 MARCO_19_2552220119-2 42 0.049026 hybrid +141_1-1 Q0 MARCO_54_316927266-4 43 0.048695 hybrid +141_1-1 Q0 MARCO_15_141371408-79 44 0.046314 hybrid +141_1-1 Q0 MARCO_04_1159460662-15 45 0.041858 hybrid +141_1-1 Q0 MARCO_38_616138088-6 46 0.039376 hybrid +141_1-1 Q0 MARCO_12_1161319161-5 47 0.033841 hybrid +141_1-1 Q0 MARCO_10_912360563-4 48 0.031165 hybrid +141_1-1 Q0 MARCO_38_585177824-2 49 0.029791 hybrid +141_1-1 Q0 MARCO_12_1454407232-12 50 0.026752 hybrid +141_1-1 Q0 MARCO_36_21091353-7 51 0.026677 hybrid +141_1-1 Q0 MARCO_59_883230728-8 52 0.025971 hybrid +141_1-1 Q0 MARCO_40_561857355-2 53 0.025171 hybrid +141_1-1 Q0 MARCO_09_536285044-33 54 0.021236 hybrid +141_1-1 Q0 MARCO_30_744759371-167 55 0.015317 hybrid +141_1-1 Q0 MARCO_15_103830369-3 56 0.014399 hybrid +141_1-1 Q0 MARCO_44_623487611-6 57 0.013250 hybrid +141_1-1 Q0 MARCO_12_1454407232-13 58 0.012831 hybrid +141_1-1 Q0 MARCO_23_1199471928-7 59 0.007120 hybrid +141_1-1 Q0 MARCO_48_1744657452-3 60 0.006868 hybrid +141_1-1 Q0 MARCO_44_625042394-3 61 0.004421 hybrid +141_1-1 Q0 MARCO_59_883230728-7 62 0.003896 hybrid +141_1-1 Q0 MARCO_48_1748453685-2 63 0.001935 hybrid +141_1-1 Q0 MARCO_24_1557455768-11 64 -0.001851 hybrid +141_1-1 Q0 MARCO_20_1741342622-2 65 -0.003021 hybrid +141_1-1 Q0 MARCO_30_158552019-3 66 -0.003383 hybrid +141_1-1 Q0 MARCO_37_258173671-5 67 -0.004894 hybrid +141_1-1 Q0 MARCO_51_953513556-5 68 -0.007129 hybrid +141_1-1 Q0 MARCO_39_1400213695-3 69 -0.007933 hybrid +141_1-1 Q0 MARCO_02_1197789364-3 70 -0.009280 hybrid +141_1-1 Q0 MARCO_56_1473907624-24 71 -0.009355 hybrid +141_1-1 Q0 MARCO_23_1727144571-14 72 -0.010326 hybrid +141_1-1 Q0 MARCO_52_1146223254-19 73 -0.011855 hybrid +141_1-1 Q0 MARCO_36_21148788-9 74 -0.012698 hybrid +141_1-1 Q0 MARCO_53_810687779-7 75 -0.015114 hybrid +141_1-1 Q0 MARCO_30_1511007408-6 76 -0.015512 hybrid +141_1-1 Q0 MARCO_48_1744657452-5 77 -0.016784 hybrid +141_1-1 Q0 MARCO_40_309370561-27 78 -0.017689 hybrid +141_1-1 Q0 MARCO_30_826115762-5 79 -0.019469 hybrid +141_1-1 Q0 MARCO_14_1549971571-21 80 -0.023824 hybrid +141_1-1 Q0 MARCO_40_264626786-19 81 -0.027547 hybrid +141_1-1 Q0 MARCO_19_2552148940-17 82 -0.029478 hybrid +141_1-1 Q0 MARCO_37_257639593-3 83 -0.033113 hybrid +141_1-1 Q0 MARCO_09_1195180204-3 84 -0.033757 hybrid +141_1-1 Q0 MARCO_04_1159615199-2 85 -0.036385 hybrid +141_1-1 Q0 MARCO_44_624912225-6 86 -0.043885 hybrid +141_1-1 Q0 MARCO_10_912339687-10 87 -0.046200 hybrid +141_1-1 Q0 MARCO_11_696209400-6 88 -0.047374 hybrid +141_1-1 Q0 KILT_3046012-21 89 -0.047595 hybrid +141_1-1 Q0 MARCO_30_158585360-4 90 -0.047701 hybrid +141_1-1 Q0 MARCO_41_921515314-14 91 -0.051447 hybrid +141_1-1 Q0 MARCO_47_609110281-10 92 -0.052215 hybrid +141_1-1 Q0 MARCO_10_915092098-8 93 -0.053580 hybrid +141_1-1 Q0 MARCO_30_1080949952-90 94 -0.056433 hybrid +141_1-1 Q0 MARCO_22_1219793257-3 95 -0.056972 hybrid +141_1-1 Q0 MARCO_38_773279631-2 96 -0.058010 hybrid +141_1-1 Q0 MARCO_15_103830369-5 97 -0.059203 hybrid +141_1-1 Q0 MARCO_15_104306912-5 98 -0.061066 hybrid +141_1-1 Q0 MARCO_14_1549971571-4 99 -0.061672 hybrid +141_1-1 Q0 MARCO_40_264626786-5 100 -0.062997 hybrid +141_1-3 Q0 MARCO_33_1025499395-11 1 0.499998 hybrid +141_1-3 Q0 MARCO_33_1025499395-14 2 0.397540 hybrid +141_1-3 Q0 MARCO_44_1167684774-3 3 0.326507 hybrid +141_1-3 Q0 MARCO_28_541508338-4 4 0.297109 hybrid +141_1-3 Q0 MARCO_52_1335028396-2 5 0.284918 hybrid +141_1-3 Q0 MARCO_27_1202500253-10 6 0.271991 hybrid +141_1-3 Q0 MARCO_44_1167684774-2 7 0.267585 hybrid +141_1-3 Q0 MARCO_04_905994734-4 8 0.224271 hybrid +141_1-3 Q0 MARCO_11_754119908-7 9 0.167167 hybrid +141_1-3 Q0 MARCO_27_1238037725-2 10 0.165107 hybrid +141_1-3 Q0 MARCO_12_72016736-6 11 0.162111 hybrid +141_1-3 Q0 MARCO_36_821807421-11 12 0.148991 hybrid +141_1-3 Q0 MARCO_10_905931627-10 13 0.145865 hybrid +141_1-3 Q0 MARCO_27_1202500253-2 14 0.145094 hybrid +141_1-3 Q0 MARCO_45_201127978-2 15 0.127285 hybrid +141_1-3 Q0 MARCO_12_72016736-12 16 0.122528 hybrid +141_1-3 Q0 MARCO_32_1660327970-3 17 0.118946 hybrid +141_1-3 Q0 MARCO_33_1025468118-5 18 0.104885 hybrid +141_1-3 Q0 MARCO_41_630788576-17 19 0.103003 hybrid +141_1-3 Q0 MARCO_41_630788576-15 20 0.093473 hybrid +141_1-3 Q0 MARCO_02_874749495-2 21 0.093384 hybrid +141_1-3 Q0 MARCO_47_133438989-7 22 0.088542 hybrid +141_1-3 Q0 MARCO_44_1764161541-7 23 0.087840 hybrid +141_1-3 Q0 MARCO_53_811018085-40 24 0.081076 hybrid +141_1-3 Q0 MARCO_31_935104390-3 25 0.072648 hybrid +141_1-3 Q0 MARCO_27_1237635519-4 26 0.070463 hybrid +141_1-3 Q0 MARCO_53_810665322-7 27 0.069094 hybrid +141_1-3 Q0 MARCO_21_1145129455-8 28 0.058441 hybrid +141_1-3 Q0 MARCO_43_769019832-2 29 0.050599 hybrid +141_1-3 Q0 MARCO_44_1764161541-10 30 0.050260 hybrid +141_1-3 Q0 MARCO_10_76747706-18 31 0.049137 hybrid +141_1-3 Q0 MARCO_32_468684332-5 32 0.045689 hybrid +141_1-3 Q0 MARCO_33_1427662472-7 33 0.036804 hybrid +141_1-3 Q0 MARCO_55_1730024849-3 34 0.036788 hybrid +141_1-3 Q0 MARCO_19_2650496233-8 35 0.033986 hybrid +141_1-3 Q0 MARCO_42_1088121638-1 36 0.029948 hybrid +141_1-3 Q0 MARCO_28_434950348-8 37 0.029677 hybrid +141_1-3 Q0 MARCO_27_1202500253-4 38 0.026370 hybrid +141_1-3 Q0 MARCO_27_1765683857-20 39 0.019820 hybrid +141_1-3 Q0 MARCO_28_434950348-10 40 0.018019 hybrid +141_1-3 Q0 MARCO_12_72016736-11 41 0.015164 hybrid +141_1-3 Q0 MARCO_33_1025499395-13 42 0.009369 hybrid +141_1-3 Q0 MARCO_29_267155433-2 43 0.007608 hybrid +141_1-3 Q0 MARCO_03_1043666726-11 44 -0.011864 hybrid +141_1-3 Q0 MARCO_14_1550215043-20 45 -0.014719 hybrid +141_1-3 Q0 MARCO_27_1767492725-4 46 -0.016020 hybrid +141_1-3 Q0 MARCO_26_1549806884-11 47 -0.017760 hybrid +141_1-3 Q0 MARCO_13_408459975-1 48 -0.018378 hybrid +141_1-3 Q0 MARCO_27_1237635519-5 49 -0.026301 hybrid +141_1-3 Q0 MARCO_45_1575222122-4 50 -0.026349 hybrid +141_1-3 Q0 MARCO_51_633099329-3 51 -0.026406 hybrid +141_1-3 Q0 MARCO_54_360144484-2 52 -0.027407 hybrid +141_1-3 Q0 MARCO_15_104330011-6 53 -0.027642 hybrid +141_1-3 Q0 MARCO_01_1539497153-12 54 -0.028082 hybrid +141_1-3 Q0 MARCO_28_434950348-11 55 -0.029750 hybrid +141_1-3 Q0 MARCO_33_271153555-2 56 -0.035238 hybrid +141_1-3 Q0 MARCO_33_275356616-2 57 -0.035238 hybrid +141_1-3 Q0 MARCO_33_263025456-2 58 -0.035238 hybrid +141_1-3 Q0 MARCO_02_490050015-2 59 -0.038606 hybrid +141_1-3 Q0 MARCO_50_1399491563-33 60 -0.042636 hybrid +141_1-3 Q0 MARCO_40_821828838-10 61 -0.043492 hybrid +141_1-3 Q0 MARCO_55_1730024849-7 62 -0.048685 hybrid +141_1-3 Q0 MARCO_54_360144484-3 63 -0.049416 hybrid +141_1-3 Q0 MARCO_21_1189945053-4 64 -0.051714 hybrid +141_1-3 Q0 MARCO_32_617027353-5 65 -0.055057 hybrid +141_1-3 Q0 MARCO_50_2154952455-18 66 -0.057028 hybrid +141_1-3 Q0 MARCO_26_1549806884-4 67 -0.057872 hybrid +141_1-3 Q0 MARCO_27_1237652512-1 68 -0.058369 hybrid +141_1-3 Q0 MARCO_50_2399125391-27 69 -0.060141 hybrid +141_1-3 Q0 MARCO_33_1025499395-12 70 -0.060485 hybrid +141_1-3 Q0 MARCO_11_754119908-9 71 -0.061167 hybrid +141_1-3 Q0 MARCO_55_1285701390-4 72 -0.065133 hybrid +141_1-3 Q0 MARCO_11_1399812362-2 73 -0.067576 hybrid +141_1-3 Q0 MARCO_27_1202500253-1 74 -0.069708 hybrid +141_1-3 Q0 MARCO_47_605622198-5 75 -0.069942 hybrid +141_1-3 Q0 MARCO_12_279618761-19 76 -0.071763 hybrid +141_1-3 Q0 MARCO_11_696984801-5 77 -0.073245 hybrid +141_1-3 Q0 MARCO_36_838963053-7 78 -0.076533 hybrid +141_1-3 Q0 MARCO_32_616994810-4 79 -0.076928 hybrid +141_1-3 Q0 MARCO_20_625572594-4 80 -0.081588 hybrid +141_1-3 Q0 MARCO_12_1146546934-9 81 -0.082360 hybrid +141_1-3 Q0 MARCO_28_569164888-2 82 -0.083805 hybrid +141_1-3 Q0 MARCO_03_1043666726-2 83 -0.084011 hybrid +141_1-3 Q0 MARCO_13_708358792-2 84 -0.085768 hybrid +141_1-3 Q0 MARCO_44_1764161541-9 85 -0.085926 hybrid +141_1-3 Q0 MARCO_31_879603192-7 86 -0.090190 hybrid +141_1-3 Q0 MARCO_11_696793562-6 87 -0.091720 hybrid +141_1-3 Q0 MARCO_27_1237522251-6 88 -0.091926 hybrid +141_1-3 Q0 MARCO_28_1757062711-6 89 -0.092621 hybrid +141_1-3 Q0 MARCO_55_1730024849-1 90 -0.092677 hybrid +141_1-3 Q0 MARCO_03_1043666726-5 91 -0.094983 hybrid +141_1-3 Q0 MARCO_42_1105496215-2 92 -0.097616 hybrid +141_1-3 Q0 MARCO_49_225633020-21 93 -0.098468 hybrid +141_1-3 Q0 MARCO_11_696901977-8 94 -0.102660 hybrid +141_1-3 Q0 MARCO_30_124815498-6 95 -0.103399 hybrid +141_1-3 Q0 MARCO_30_1192843404-22 96 -0.105858 hybrid +141_1-3 Q0 MARCO_14_1486807206-1 97 -0.108588 hybrid +141_1-3 Q0 MARCO_30_894591892-12 98 -0.109590 hybrid +141_1-3 Q0 MARCO_28_542066556-6 99 -0.111508 hybrid +141_1-3 Q0 MARCO_02_490050015-1 100 -0.111528 hybrid +141_1-5 Q0 MARCO_21_1216284242-19 1 0.500002 hybrid +141_1-5 Q0 MARCO_50_1662117411-6 2 0.344684 hybrid +141_1-5 Q0 MARCO_34_1324045633-3 3 0.310321 hybrid +141_1-5 Q0 MARCO_28_527606323-6 4 0.293871 hybrid +141_1-5 Q0 MARCO_50_1672849818-33 5 0.210652 hybrid +141_1-5 Q0 MARCO_29_30691709-2 6 0.209673 hybrid +141_1-5 Q0 MARCO_21_1216877318-2 7 0.207463 hybrid +141_1-5 Q0 MARCO_34_1324039858-4 8 0.194425 hybrid +141_1-5 Q0 MARCO_01_1063164384-23 9 0.185267 hybrid +141_1-5 Q0 MARCO_21_1216438538-2 10 0.131464 hybrid +141_1-5 Q0 MARCO_28_527655725-2 11 0.118533 hybrid +141_1-5 Q0 MARCO_50_1613328405-18 12 0.106828 hybrid +141_1-5 Q0 MARCO_34_1324045633-4 13 0.063658 hybrid +141_1-5 Q0 MARCO_21_1216403308-13 14 0.060879 hybrid +141_1-5 Q0 MARCO_49_1828882203-2 15 0.048444 hybrid +141_1-5 Q0 MARCO_21_1215533417-4 16 0.048260 hybrid +141_1-5 Q0 MARCO_21_1216284242-18 17 0.044240 hybrid +141_1-5 Q0 MARCO_50_1613328405-19 18 0.043562 hybrid +141_1-5 Q0 MARCO_28_527486278-5 19 0.042431 hybrid +141_1-5 Q0 MARCO_39_221474899-4 20 0.038505 hybrid +141_1-5 Q0 MARCO_10_1179217323-25 21 0.034406 hybrid +141_1-5 Q0 MARCO_21_1215945659-4 22 0.031520 hybrid +141_1-5 Q0 MARCO_43_241948488-2 23 0.027308 hybrid +141_1-5 Q0 MARCO_57_2129393244-3 24 0.024804 hybrid +141_1-5 Q0 MARCO_21_1214943619-10 25 0.024547 hybrid +141_1-5 Q0 MARCO_43_241952999-4 26 0.023098 hybrid +141_1-5 Q0 MARCO_34_1324187533-3 27 0.021411 hybrid +141_1-5 Q0 MARCO_03_1608228985-14 28 0.021059 hybrid +141_1-5 Q0 MARCO_11_20535053-38 29 0.015380 hybrid +141_1-5 Q0 MARCO_57_2130759412-19 30 0.014429 hybrid +141_1-5 Q0 MARCO_21_1215811358-13 31 0.014077 hybrid +141_1-5 Q0 MARCO_21_1215596926-13 32 0.011020 hybrid +141_1-5 Q0 MARCO_23_1773948224-5 33 0.010901 hybrid +141_1-5 Q0 MARCO_21_1215945659-12 34 0.006465 hybrid +141_1-5 Q0 MARCO_57_2130809178-11 35 -0.004292 hybrid +141_1-5 Q0 MARCO_21_1216877318-7 36 -0.007089 hybrid +141_1-5 Q0 MARCO_35_422525523-6 37 -0.009556 hybrid +141_1-5 Q0 MARCO_43_241935261-5 38 -0.010568 hybrid +141_1-5 Q0 MARCO_21_1215533417-5 39 -0.013062 hybrid +141_1-5 Q0 MARCO_02_1574900723-4 40 -0.020197 hybrid +141_1-5 Q0 MARCO_11_601582654-4 41 -0.023749 hybrid +141_1-5 Q0 MARCO_34_1354682080-3 42 -0.029399 hybrid +141_1-5 Q0 MARCO_34_1354339662-9 43 -0.034758 hybrid +141_1-5 Q0 MARCO_21_1216135398-7 44 -0.037420 hybrid +141_1-5 Q0 MARCO_57_2130759412-11 45 -0.038891 hybrid +141_1-5 Q0 MARCO_21_1215831650-8 46 -0.039429 hybrid +141_1-5 Q0 MARCO_21_1216438538-4 47 -0.045454 hybrid +141_1-5 Q0 MARCO_44_52757815-6 48 -0.048572 hybrid +141_1-5 Q0 MARCO_50_523925683-11 49 -0.051094 hybrid +141_1-5 Q0 MARCO_34_1324063765-3 50 -0.051109 hybrid +141_1-5 Q0 MARCO_21_1216284242-2 51 -0.051397 hybrid +141_1-5 Q0 MARCO_24_1556056887-9 52 -0.059589 hybrid +141_1-5 Q0 MARCO_43_241948488-1 53 -0.061277 hybrid +141_1-5 Q0 MARCO_40_843200860-6 54 -0.061643 hybrid +141_1-5 Q0 MARCO_50_1660601460-14 55 -0.062215 hybrid +141_1-5 Q0 MARCO_40_843200860-3 56 -0.063630 hybrid +141_1-5 Q0 MARCO_31_293193263-2 57 -0.064046 hybrid +141_1-5 Q0 MARCO_34_1354426044-11 58 -0.064434 hybrid +141_1-5 Q0 MARCO_04_204888142-2 59 -0.066409 hybrid +141_1-5 Q0 MARCO_50_2398291995-3 60 -0.067192 hybrid +141_1-5 Q0 MARCO_21_1216311013-2 61 -0.068696 hybrid +141_1-5 Q0 MARCO_44_52757815-7 62 -0.076023 hybrid +141_1-5 Q0 MARCO_50_1669554628-16 63 -0.077751 hybrid +141_1-5 Q0 MARCO_24_1318360624-2 64 -0.078594 hybrid +141_1-5 Q0 MARCO_10_976859845-14 65 -0.081862 hybrid +141_1-5 Q0 MARCO_21_1214943619-8 66 -0.082467 hybrid +141_1-5 Q0 MARCO_21_1215945659-8 67 -0.084586 hybrid +141_1-5 Q0 MARCO_10_1132270721-20 68 -0.084720 hybrid +141_1-5 Q0 MARCO_10_1205294341-17 69 -0.087013 hybrid +141_1-5 Q0 MARCO_54_1859745424-3 70 -0.088795 hybrid +141_1-5 Q0 MARCO_21_1038268655-4 71 -0.090654 hybrid +141_1-5 Q0 MARCO_10_793759922-3 72 -0.092516 hybrid +141_1-5 Q0 MARCO_28_527632705-2 73 -0.093057 hybrid +141_1-5 Q0 MARCO_02_1574900723-5 74 -0.098929 hybrid +141_1-5 Q0 MARCO_21_1215533417-14 75 -0.101038 hybrid +141_1-5 Q0 MARCO_28_527486278-3 76 -0.102166 hybrid +141_1-5 Q0 MARCO_21_1216311013-9 77 -0.102243 hybrid +141_1-5 Q0 MARCO_31_293150131-6 78 -0.103050 hybrid +141_1-5 Q0 MARCO_28_527655725-4 79 -0.107146 hybrid +141_1-5 Q0 MARCO_29_1138480806-3 80 -0.108828 hybrid +141_1-5 Q0 MARCO_28_527785065-5 81 -0.110102 hybrid +141_1-5 Q0 MARCO_34_1324118892-4 82 -0.110839 hybrid +141_1-5 Q0 MARCO_21_1215331636-5 83 -0.111102 hybrid +141_1-5 Q0 MARCO_05_424635426-36 84 -0.111181 hybrid +141_1-5 Q0 MARCO_35_982879909-8 85 -0.111784 hybrid +141_1-5 Q0 MARCO_50_1604367997-30 86 -0.117512 hybrid +141_1-5 Q0 MARCO_21_1214887741-9 87 -0.117980 hybrid +141_1-5 Q0 MARCO_21_1215674654-2 88 -0.119169 hybrid +141_1-5 Q0 MARCO_03_1613254923-1 89 -0.119564 hybrid +141_1-5 Q0 MARCO_21_1216877318-3 90 -0.119790 hybrid +141_1-5 Q0 MARCO_23_1595035699-10 91 -0.121630 hybrid +141_1-5 Q0 MARCO_28_527777467-6 92 -0.122128 hybrid +141_1-5 Q0 MARCO_21_1216403308-4 93 -0.123895 hybrid +141_1-5 Q0 MARCO_21_1216284242-3 94 -0.124974 hybrid +141_1-5 Q0 MARCO_23_244566577-3 95 -0.127188 hybrid +141_1-5 Q0 MARCO_21_1215097577-10 96 -0.129468 hybrid +141_1-5 Q0 MARCO_21_1215865628-6 97 -0.135793 hybrid +141_1-5 Q0 MARCO_50_481900175-30 98 -0.138566 hybrid +141_1-5 Q0 MARCO_21_1216623949-7 99 -0.139241 hybrid +141_1-5 Q0 MARCO_34_1324017070-3 100 -0.139953 hybrid +141_2-1 Q0 MARCO_30_744759371-208 1 0.500000 hybrid +141_2-1 Q0 MARCO_09_536285044-33 2 0.281356 hybrid +141_2-1 Q0 MARCO_40_557668553-6 3 0.217850 hybrid +141_2-1 Q0 MARCO_40_557532912-3 4 0.213157 hybrid +141_2-1 Q0 MARCO_04_1159615199-2 5 0.153253 hybrid +141_2-1 Q0 MARCO_28_338626275-4 6 0.151197 hybrid +141_2-1 Q0 KILT_48458854-8 7 0.126561 hybrid +141_2-1 Q0 MARCO_30_158585360-4 8 0.123345 hybrid +141_2-1 Q0 MARCO_10_911962282-15 9 0.105367 hybrid +141_2-1 Q0 MARCO_57_1348063588-3 10 0.087345 hybrid +141_2-1 Q0 MARCO_40_560927337-23 11 0.078087 hybrid +141_2-1 Q0 MARCO_40_561044944-4 12 0.075714 hybrid +141_2-1 Q0 MARCO_48_978698970-6 13 0.066957 hybrid +141_2-1 Q0 MARCO_36_21091353-7 14 0.059789 hybrid +141_2-1 Q0 MARCO_30_1807188622-4 15 0.051131 hybrid +141_2-1 Q0 MARCO_57_1348084641-2 16 0.049511 hybrid +141_2-1 Q0 MARCO_10_911778428-12 17 0.049408 hybrid +141_2-1 Q0 MARCO_09_1195740437-3 18 0.040726 hybrid +141_2-1 Q0 MARCO_46_263053540-3 19 0.039422 hybrid +141_2-1 Q0 MARCO_40_562350218-4 20 0.026623 hybrid +141_2-1 Q0 MARCO_48_1744657452-3 21 0.024743 hybrid +141_2-1 Q0 MARCO_36_21148788-9 22 0.021045 hybrid +141_2-1 Q0 MARCO_40_264626786-11 23 0.017130 hybrid +141_2-1 Q0 MARCO_40_169727779-5 24 0.013614 hybrid +141_2-1 Q0 MARCO_10_897295825-15 25 0.011434 hybrid +141_2-1 Q0 MARCO_30_1806644682-2 26 0.004668 hybrid +141_2-1 Q0 MARCO_40_561063979-6 27 0.002406 hybrid +141_2-1 Q0 MARCO_40_560899459-3 28 -0.000255 hybrid +141_2-1 Q0 MARCO_40_557623992-7 29 -0.002390 hybrid +141_2-1 Q0 MARCO_15_481036841-8 30 -0.002476 hybrid +141_2-1 Q0 MARCO_59_883230728-8 31 -0.003307 hybrid +141_2-1 Q0 MARCO_13_1256080035-7 32 -0.010011 hybrid +141_2-1 Q0 MARCO_47_986193392-11 33 -0.010085 hybrid +141_2-1 Q0 MARCO_40_557623992-5 34 -0.010883 hybrid +141_2-1 Q0 MARCO_40_561085457-6 35 -0.012910 hybrid +141_2-1 Q0 MARCO_40_562350218-7 36 -0.012910 hybrid +141_2-1 Q0 MARCO_54_1855914133-2 37 -0.014329 hybrid +141_2-1 Q0 MARCO_02_1197789364-2 38 -0.014712 hybrid +141_2-1 Q0 MARCO_40_560886098-6 39 -0.015070 hybrid +141_2-1 Q0 MARCO_15_103944462-8 40 -0.023016 hybrid +141_2-1 Q0 MARCO_15_103977589-11 41 -0.023016 hybrid +141_2-1 Q0 MARCO_10_915092098-8 42 -0.035350 hybrid +141_2-1 Q0 MARCO_10_909467982-11 43 -0.036991 hybrid +141_2-1 Q0 MARCO_40_561292367-2 44 -0.038558 hybrid +141_2-1 Q0 MARCO_04_1214226221-3 45 -0.038739 hybrid +141_2-1 Q0 MARCO_38_616138088-6 46 -0.042079 hybrid +141_2-1 Q0 MARCO_47_606070454-5 47 -0.042087 hybrid +141_2-1 Q0 MARCO_23_1199471928-7 48 -0.044637 hybrid +141_2-1 Q0 MARCO_14_1550215043-35 49 -0.044682 hybrid +141_2-1 Q0 MARCO_47_609020251-13 50 -0.046039 hybrid +141_2-1 Q0 MARCO_02_1568552218-4 51 -0.048984 hybrid +141_2-1 Q0 MARCO_30_744759371-148 52 -0.052431 hybrid +141_2-1 Q0 MARCO_04_480632713-2 53 -0.058230 hybrid +141_2-1 Q0 MARCO_27_1562847163-6 54 -0.062351 hybrid +141_2-1 Q0 MARCO_50_1456411426-10 55 -0.064045 hybrid +141_2-1 Q0 MARCO_12_1454407232-7 56 -0.068035 hybrid +141_2-1 Q0 MARCO_24_1142751479-13 57 -0.073661 hybrid +141_2-1 Q0 MARCO_09_1195472748-3 58 -0.077486 hybrid +141_2-1 Q0 MARCO_14_1549971571-4 59 -0.081369 hybrid +141_2-1 Q0 MARCO_40_558842460-10 60 -0.084470 hybrid +141_2-1 Q0 MARCO_01_1029009611-33 61 -0.085165 hybrid +141_2-1 Q0 MARCO_59_883230728-7 62 -0.085354 hybrid +141_2-1 Q0 MARCO_50_2502667678-11 63 -0.091161 hybrid +141_2-1 Q0 MARCO_10_913302127-13 64 -0.091412 hybrid +141_2-1 Q0 MARCO_40_264626786-21 65 -0.092227 hybrid +141_2-1 Q0 MARCO_04_1159615199-4 66 -0.094197 hybrid +141_2-1 Q0 MARCO_24_1557455768-11 67 -0.094279 hybrid +141_2-1 Q0 MARCO_40_309370561-27 68 -0.095529 hybrid +141_2-1 Q0 MARCO_30_744759371-48 69 -0.101287 hybrid +141_2-1 Q0 MARCO_41_917933342-13 70 -0.107461 hybrid +141_2-1 Q0 MARCO_33_1427519249-7 71 -0.108851 hybrid +141_2-1 Q0 MARCO_50_1679873863-2 72 -0.109451 hybrid +141_2-1 Q0 MARCO_20_1741342622-2 73 -0.110837 hybrid +141_2-1 Q0 MARCO_40_559200981-3 74 -0.112199 hybrid +141_2-1 Q0 MARCO_47_605389282-2 75 -0.112437 hybrid +141_2-1 Q0 MARCO_07_597316768-3 76 -0.112960 hybrid +141_2-1 Q0 MARCO_30_744759371-188 77 -0.113408 hybrid +141_2-1 Q0 MARCO_54_316927266-4 78 -0.116295 hybrid +141_2-1 Q0 MARCO_40_560031725-4 79 -0.117253 hybrid +141_2-1 Q0 MARCO_08_1093197680-18 80 -0.120622 hybrid +141_2-1 Q0 MARCO_02_1197789364-3 81 -0.120663 hybrid +141_2-1 Q0 MARCO_40_561085457-3 82 -0.121420 hybrid +141_2-1 Q0 MARCO_20_1740049679-94 83 -0.123834 hybrid +141_2-1 Q0 MARCO_11_1425186721-2 84 -0.124081 hybrid +141_2-1 Q0 MARCO_56_1473907624-24 85 -0.125993 hybrid +141_2-1 Q0 MARCO_03_1771134958-2 86 -0.126890 hybrid +141_2-1 Q0 MARCO_27_580975359-4 87 -0.127433 hybrid +141_2-1 Q0 MARCO_36_391951133-12 88 -0.129045 hybrid +141_2-1 Q0 MARCO_33_1427917497-5 89 -0.130151 hybrid +141_2-1 Q0 MARCO_40_561292367-12 90 -0.133121 hybrid +141_2-1 Q0 MARCO_24_804527208-7 91 -0.134346 hybrid +141_2-1 Q0 MARCO_13_980477087-17 92 -0.134375 hybrid +141_2-1 Q0 MARCO_51_161754977-1 93 -0.137509 hybrid +141_2-1 Q0 MARCO_50_1679873863-16 94 -0.138110 hybrid +141_2-1 Q0 MARCO_27_1562847163-14 95 -0.139784 hybrid +141_2-1 Q0 MARCO_14_1549971571-10 96 -0.140121 hybrid +141_2-1 Q0 MARCO_19_2507997830-24 97 -0.141268 hybrid +141_2-1 Q0 MARCO_19_2505618603-29 98 -0.141268 hybrid +141_2-1 Q0 MARCO_19_2501224884-27 99 -0.141281 hybrid +141_2-1 Q0 MARCO_40_558870079-5 100 -0.141293 hybrid +141_2-11 Q0 MARCO_36_840746247-2 1 0.500001 hybrid +141_2-11 Q0 MARCO_12_1869314530-5 2 0.489619 hybrid +141_2-11 Q0 MARCO_28_313753082-1 3 0.477558 hybrid +141_2-11 Q0 MARCO_28_313753082-2 4 0.459840 hybrid +141_2-11 Q0 MARCO_18_1642035430-1 5 0.457035 hybrid +141_2-11 Q0 MARCO_28_313753082-4 6 0.411234 hybrid +141_2-11 Q0 MARCO_18_1642035430-8 7 0.378221 hybrid +141_2-11 Q0 MARCO_18_1642035430-6 8 0.361477 hybrid +141_2-11 Q0 MARCO_48_290493236-2 9 0.324487 hybrid +141_2-11 Q0 MARCO_32_152519263-54 10 0.311784 hybrid +141_2-11 Q0 MARCO_44_623879817-4 11 0.278815 hybrid +141_2-11 Q0 MARCO_18_1642035430-2 12 0.275005 hybrid +141_2-11 Q0 MARCO_18_1642035430-3 13 0.257708 hybrid +141_2-11 Q0 MARCO_43_1278352692-1 14 0.257495 hybrid +141_2-11 Q0 MARCO_57_614712155-2 15 0.256292 hybrid +141_2-11 Q0 MARCO_18_1642035430-4 16 0.239321 hybrid +141_2-11 Q0 MARCO_36_840746247-1 17 0.235548 hybrid +141_2-11 Q0 KILT_613433-17 18 0.231836 hybrid +141_2-11 Q0 MARCO_04_859221613-3 19 0.225662 hybrid +141_2-11 Q0 MARCO_15_600646838-2 20 0.210570 hybrid +141_2-11 Q0 MARCO_18_1642035430-7 21 0.203070 hybrid +141_2-11 Q0 MARCO_11_697159170-6 22 0.195397 hybrid +141_2-11 Q0 MARCO_28_313753082-6 23 0.178177 hybrid +141_2-11 Q0 MARCO_48_978771114-5 24 0.169301 hybrid +141_2-11 Q0 MARCO_18_1642035430-16 25 0.163104 hybrid +141_2-11 Q0 MARCO_18_1642035430-13 26 0.161741 hybrid +141_2-11 Q0 MARCO_18_1642035430-14 27 0.161618 hybrid +141_2-11 Q0 MARCO_18_1642035430-9 28 0.157932 hybrid +141_2-11 Q0 MARCO_25_518866882-5 29 0.152739 hybrid +141_2-11 Q0 MARCO_12_1869158091-17 30 0.129299 hybrid +141_2-11 Q0 MARCO_12_1166767672-8 31 0.128980 hybrid +141_2-11 Q0 MARCO_27_1202500253-6 32 0.124230 hybrid +141_2-11 Q0 MARCO_56_282980903-6 33 0.123387 hybrid +141_2-11 Q0 MARCO_46_1389837794-1 34 0.121325 hybrid +141_2-11 Q0 MARCO_18_1642035430-12 35 0.116616 hybrid +141_2-11 Q0 MARCO_01_1029009611-33 36 0.111187 hybrid +141_2-11 Q0 MARCO_57_614712155-5 37 0.107501 hybrid +141_2-11 Q0 MARCO_41_634610701-10 38 0.096785 hybrid +141_2-11 Q0 MARCO_14_1486751720-2 39 0.088721 hybrid +141_2-11 Q0 MARCO_19_2555634512-2 40 0.051243 hybrid +141_2-11 Q0 MARCO_56_282974175-1 41 0.032548 hybrid +141_2-11 Q0 KILT_40772740-2 42 0.032098 hybrid +141_2-11 Q0 MARCO_50_1399491563-8 43 0.028515 hybrid +141_2-11 Q0 KILT_48458854-8 44 0.016433 hybrid +141_2-11 Q0 MARCO_18_1642035430-5 45 0.015739 hybrid +141_2-11 Q0 MARCO_09_1357168570-3 46 0.011081 hybrid +141_2-11 Q0 MARCO_09_1357168570-2 47 0.007210 hybrid +141_2-11 Q0 MARCO_36_840746247-4 48 0.005493 hybrid +141_2-11 Q0 MARCO_09_1357168570-1 49 0.003982 hybrid +141_2-11 Q0 MARCO_18_445345307-8 50 -0.002869 hybrid +141_2-11 Q0 MARCO_18_3130458339-6 51 -0.021595 hybrid +141_2-11 Q0 KILT_48458854-4 52 -0.022500 hybrid +141_2-11 Q0 MARCO_03_1217251115-5 53 -0.022883 hybrid +141_2-11 Q0 MARCO_43_710569550-6 54 -0.026777 hybrid +141_2-11 Q0 MARCO_44_629465929-5 55 -0.027157 hybrid +141_2-11 Q0 MARCO_20_1692064734-4 56 -0.040272 hybrid +141_2-11 Q0 MARCO_03_1771134958-2 57 -0.044156 hybrid +141_2-11 Q0 MARCO_14_1486751720-3 58 -0.045151 hybrid +141_2-11 Q0 MARCO_27_1237980931-9 59 -0.046400 hybrid +141_2-11 Q0 MARCO_28_313753082-5 60 -0.048110 hybrid +141_2-11 Q0 MARCO_18_1642035430-10 61 -0.054284 hybrid +141_2-11 Q0 MARCO_18_1642035430-17 62 -0.064455 hybrid +141_2-11 Q0 MARCO_18_1642035430-15 63 -0.064455 hybrid +141_2-11 Q0 MARCO_18_1642035430-11 64 -0.069722 hybrid +141_2-11 Q0 KILT_53556985-1 65 -0.071786 hybrid +141_2-11 Q0 KILT_743475-2 66 -0.072005 hybrid +141_2-11 Q0 MARCO_14_1550321504-4 67 -0.072115 hybrid +141_2-11 Q0 MARCO_48_978771114-1 68 -0.075156 hybrid +141_2-11 Q0 MARCO_27_1106847284-10 69 -0.075434 hybrid +141_2-11 Q0 MARCO_56_282980903-11 70 -0.076334 hybrid +141_2-11 Q0 MARCO_15_600673732-9 71 -0.081410 hybrid +141_2-11 Q0 MARCO_50_1399491563-1 72 -0.086590 hybrid +141_2-11 Q0 MARCO_48_978771114-6 73 -0.087695 hybrid +141_2-11 Q0 MARCO_04_859221613-4 74 -0.092153 hybrid +141_2-11 Q0 MARCO_14_1487099954-2 75 -0.093510 hybrid +141_2-11 Q0 KILT_41754003-15 76 -0.093664 hybrid +141_2-11 Q0 MARCO_59_884854714-2 77 -0.100268 hybrid +141_2-11 Q0 MARCO_57_614712155-4 78 -0.108506 hybrid +141_2-11 Q0 MARCO_25_1032058133-6 79 -0.114624 hybrid +141_2-11 Q0 MARCO_41_2084044692-3 80 -0.117050 hybrid +141_2-11 Q0 MARCO_22_759495780-4 81 -0.117120 hybrid +141_2-11 Q0 MARCO_25_518866882-8 82 -0.119140 hybrid +141_2-11 Q0 MARCO_30_1192843404-22 83 -0.125479 hybrid +141_2-11 Q0 MARCO_50_1399491563-10 84 -0.126592 hybrid +141_2-11 Q0 MARCO_28_41657031-10 85 -0.127014 hybrid +141_2-11 Q0 KILT_400753-6 86 -0.129309 hybrid +141_2-11 Q0 MARCO_47_1600662821-15 87 -0.134209 hybrid +141_2-11 Q0 MARCO_40_274248920-143 88 -0.134298 hybrid +141_2-11 Q0 MARCO_57_614712155-3 89 -0.136645 hybrid +141_2-11 Q0 MARCO_24_1137884337-13 90 -0.143277 hybrid +141_2-11 Q0 MARCO_01_826080711-10 91 -0.145930 hybrid +141_2-11 Q0 MARCO_08_158872786-45 92 -0.149961 hybrid +141_2-11 Q0 MARCO_50_1603293761-4 93 -0.159091 hybrid +141_2-11 Q0 MARCO_14_1550321504-18 94 -0.159250 hybrid +141_2-11 Q0 KILT_43457623-2 95 -0.161435 hybrid +141_2-11 Q0 MARCO_48_593687068-2 96 -0.161631 hybrid +141_2-11 Q0 MARCO_30_826115762-1 97 -0.162610 hybrid +141_2-11 Q0 KILT_729878-2 98 -0.165988 hybrid +141_2-11 Q0 MARCO_28_536773832-2 99 -0.168854 hybrid +141_2-11 Q0 MARCO_28_417328365-215 100 -0.169358 hybrid +141_2-13 Q0 MARCO_50_2155141197-19 1 0.500000 hybrid +141_2-13 Q0 MARCO_01_830855712-13 2 0.334573 hybrid +141_2-13 Q0 MARCO_01_829924766-18 3 0.232124 hybrid +141_2-13 Q0 MARCO_01_831982137-19 4 0.186182 hybrid +141_2-13 Q0 MARCO_19_2489928640-11 5 0.186182 hybrid +141_2-13 Q0 MARCO_19_2513676244-13 6 0.186174 hybrid +141_2-13 Q0 MARCO_13_139103428-2 7 0.147048 hybrid +141_2-13 Q0 MARCO_14_1554596026-6 8 0.123260 hybrid +141_2-13 Q0 MARCO_16_449364321-1 9 0.118920 hybrid +141_2-13 Q0 MARCO_36_1101870115-12 10 0.056611 hybrid +141_2-13 Q0 MARCO_36_1101942727-8 11 0.056611 hybrid +141_2-13 Q0 MARCO_29_1334919388-38 12 0.054478 hybrid +141_2-13 Q0 MARCO_01_831982137-21 13 0.032974 hybrid +141_2-13 Q0 MARCO_19_2513676244-15 14 0.032974 hybrid +141_2-13 Q0 MARCO_19_2489928640-13 15 0.032974 hybrid +141_2-13 Q0 MARCO_23_1832243809-1 16 0.023401 hybrid +141_2-13 Q0 MARCO_50_1673836905-46 17 0.016618 hybrid +141_2-13 Q0 MARCO_11_1376174179-7 18 0.011385 hybrid +141_2-13 Q0 MARCO_30_899507472-24 19 0.006971 hybrid +141_2-13 Q0 MARCO_19_2496958346-45 20 0.002867 hybrid +141_2-13 Q0 MARCO_01_829924766-40 21 0.002867 hybrid +141_2-13 Q0 MARCO_19_2512092029-31 22 0.002867 hybrid +141_2-13 Q0 MARCO_01_829478272-38 23 0.002867 hybrid +141_2-13 Q0 MARCO_30_898878792-31 24 0.001055 hybrid +141_2-13 Q0 MARCO_50_1673836905-30 25 -0.001487 hybrid +141_2-13 Q0 MARCO_14_1549450269-18 26 -0.003432 hybrid +141_2-13 Q0 MARCO_19_2495732249-30 27 -0.004639 hybrid +141_2-13 Q0 MARCO_16_449364321-3 28 -0.008396 hybrid +141_2-13 Q0 MARCO_14_1552800610-6 29 -0.008410 hybrid +141_2-13 Q0 MARCO_44_608217445-3 30 -0.009418 hybrid +141_2-13 Q0 MARCO_16_449364321-10 31 -0.014540 hybrid +141_2-13 Q0 MARCO_31_295248992-6 32 -0.027571 hybrid +141_2-13 Q0 MARCO_12_1168148020-6 33 -0.029822 hybrid +141_2-13 Q0 MARCO_44_608217445-1 34 -0.033431 hybrid +141_2-13 Q0 MARCO_30_892920448-1 35 -0.037849 hybrid +141_2-13 Q0 MARCO_30_826115762-13 36 -0.055836 hybrid +141_2-13 Q0 MARCO_23_291723829-5 37 -0.059667 hybrid +141_2-13 Q0 MARCO_14_1549236903-14 38 -0.070454 hybrid +141_2-13 Q0 MARCO_12_1167762674-3 39 -0.079695 hybrid +141_2-13 Q0 MARCO_14_1554347889-5 40 -0.082200 hybrid +141_2-13 Q0 MARCO_30_900052011-2 41 -0.084094 hybrid +141_2-13 Q0 KILT_52214944-3 42 -0.087031 hybrid +141_2-13 Q0 MARCO_17_1666483567-3 43 -0.096165 hybrid +141_2-13 Q0 MARCO_36_952122842-2 44 -0.099852 hybrid +141_2-13 Q0 MARCO_13_1763260734-6 45 -0.101147 hybrid +141_2-13 Q0 MARCO_19_2501106498-49 46 -0.106908 hybrid +141_2-13 Q0 MARCO_36_1000728839-2 47 -0.110986 hybrid +141_2-13 Q0 MARCO_14_1551639497-5 48 -0.115650 hybrid +141_2-13 Q0 MARCO_40_1187574595-3 49 -0.116702 hybrid +141_2-13 Q0 MARCO_27_1710242554-3 50 -0.119614 hybrid +141_2-13 Q0 MARCO_30_899562481-18 51 -0.120212 hybrid +141_2-13 Q0 MARCO_19_2501168671-38 52 -0.123053 hybrid +141_2-13 Q0 MARCO_26_110906995-28 53 -0.125301 hybrid +141_2-13 Q0 MARCO_34_476172808-4 54 -0.125611 hybrid +141_2-13 Q0 MARCO_50_1417341413-35 55 -0.126072 hybrid +141_2-13 Q0 MARCO_14_1550023599-12 56 -0.128810 hybrid +141_2-13 Q0 MARCO_01_830855712-15 57 -0.132593 hybrid +141_2-13 Q0 MARCO_14_1549836128-11 58 -0.133058 hybrid +141_2-13 Q0 MARCO_13_1153626125-13 59 -0.135472 hybrid +141_2-13 Q0 MARCO_36_902089210-6 60 -0.138357 hybrid +141_2-13 Q0 MARCO_19_2482062737-48 61 -0.138472 hybrid +141_2-13 Q0 MARCO_14_1550321504-4 62 -0.141033 hybrid +141_2-13 Q0 MARCO_12_1168258005-15 63 -0.141450 hybrid +141_2-13 Q0 MARCO_12_1168071285-10 64 -0.141450 hybrid +141_2-13 Q0 MARCO_14_1550361835-7 65 -0.142679 hybrid +141_2-13 Q0 MARCO_19_2493609746-23 66 -0.143388 hybrid +141_2-13 Q0 MARCO_19_2512376372-37 67 -0.143391 hybrid +141_2-13 Q0 MARCO_14_1551384788-1 68 -0.145218 hybrid +141_2-13 Q0 MARCO_16_3034197558-1 69 -0.146329 hybrid +141_2-13 Q0 MARCO_16_3034197558-3 70 -0.146332 hybrid +141_2-13 Q0 MARCO_14_1553646776-14 71 -0.146853 hybrid +141_2-13 Q0 MARCO_16_449364321-11 72 -0.147561 hybrid +141_2-13 Q0 MARCO_12_1168319701-4 73 -0.150403 hybrid +141_2-13 Q0 MARCO_48_624987364-2 74 -0.155296 hybrid +141_2-13 Q0 MARCO_29_863926715-9 75 -0.157223 hybrid +141_2-13 Q0 MARCO_19_480028492-9 76 -0.157869 hybrid +141_2-13 Q0 MARCO_33_1240247873-15 77 -0.158179 hybrid +141_2-13 Q0 MARCO_12_1167871651-4 78 -0.160847 hybrid +141_2-13 Q0 MARCO_14_1549593433-5 79 -0.161426 hybrid +141_2-13 Q0 MARCO_14_1550023599-16 80 -0.170863 hybrid +141_2-13 Q0 MARCO_28_281839725-4 81 -0.172077 hybrid +141_2-13 Q0 MARCO_30_900016222-21 82 -0.172409 hybrid +141_2-13 Q0 MARCO_55_133270830-4 83 -0.173380 hybrid +141_2-13 Q0 MARCO_12_1168302644-3 84 -0.179096 hybrid +141_2-13 Q0 MARCO_14_1550215043-9 85 -0.179284 hybrid +141_2-13 Q0 MARCO_35_305221230-3 86 -0.180314 hybrid +141_2-13 Q0 MARCO_57_615778094-4 87 -0.180668 hybrid +141_2-13 Q0 MARCO_40_1188267466-1 88 -0.180823 hybrid +141_2-13 Q0 MARCO_27_1643809758-6 89 -0.180823 hybrid +141_2-13 Q0 MARCO_31_295268769-5 90 -0.181967 hybrid +141_2-13 Q0 MARCO_27_1114167292-6 91 -0.182860 hybrid +141_2-13 Q0 MARCO_55_133270830-1 92 -0.183226 hybrid +141_2-13 Q0 MARCO_22_833511260-1 93 -0.183930 hybrid +141_2-13 Q0 MARCO_56_1317023844-5 94 -0.186071 hybrid +141_2-13 Q0 MARCO_01_826870997-54 95 -0.186399 hybrid +141_2-13 Q0 MARCO_16_3034197558-5 96 -0.187923 hybrid +141_2-13 Q0 MARCO_19_2491897808-34 97 -0.190355 hybrid +141_2-13 Q0 MARCO_19_2508528923-37 98 -0.190355 hybrid +141_2-13 Q0 MARCO_01_830855712-29 99 -0.190355 hybrid +141_2-13 Q0 MARCO_19_2513676244-40 100 -0.190359 hybrid +141_2-3 Q0 MARCO_36_840746247-2 1 0.500001 hybrid +141_2-3 Q0 MARCO_48_290493236-2 2 0.388590 hybrid +141_2-3 Q0 MARCO_18_1642035430-6 3 0.383740 hybrid +141_2-3 Q0 MARCO_44_623879817-4 4 0.348381 hybrid +141_2-3 Q0 MARCO_28_313753082-2 5 0.342735 hybrid +141_2-3 Q0 MARCO_18_1642035430-1 6 0.333594 hybrid +141_2-3 Q0 MARCO_12_1869314530-5 7 0.285619 hybrid +141_2-3 Q0 MARCO_32_152519263-54 8 0.254524 hybrid +141_2-3 Q0 MARCO_18_1642035430-8 9 0.239739 hybrid +141_2-3 Q0 MARCO_18_1642035430-2 10 0.223376 hybrid +141_2-3 Q0 MARCO_28_313753082-1 11 0.188953 hybrid +141_2-3 Q0 MARCO_18_1642035430-4 12 0.188032 hybrid +141_2-3 Q0 MARCO_18_1642035430-3 13 0.183791 hybrid +141_2-3 Q0 MARCO_18_1642035430-7 14 0.115280 hybrid +141_2-3 Q0 MARCO_28_313753082-4 15 0.115258 hybrid +141_2-3 Q0 MARCO_46_1389837794-1 16 0.113365 hybrid +141_2-3 Q0 MARCO_36_840746247-1 17 0.112617 hybrid +141_2-3 Q0 MARCO_18_1642035430-14 18 0.104344 hybrid +141_2-3 Q0 MARCO_41_2084044692-3 19 0.082445 hybrid +141_2-3 Q0 KILT_613433-17 20 0.066062 hybrid +141_2-3 Q0 MARCO_18_1642035430-12 21 0.060346 hybrid +141_2-3 Q0 KILT_29441521-2 22 0.048961 hybrid +141_2-3 Q0 MARCO_57_614712155-2 23 0.032611 hybrid +141_2-3 Q0 MARCO_48_978771114-5 24 0.032274 hybrid +141_2-3 Q0 MARCO_57_614712155-5 25 0.021542 hybrid +141_2-3 Q0 MARCO_14_1486751720-2 26 0.017571 hybrid +141_2-3 Q0 MARCO_25_518866882-5 27 0.013807 hybrid +141_2-3 Q0 MARCO_12_1869158091-17 28 0.001887 hybrid +141_2-3 Q0 MARCO_11_697159170-6 29 -0.002848 hybrid +141_2-3 Q0 MARCO_09_1357168570-1 30 -0.007184 hybrid +141_2-3 Q0 MARCO_18_1642035430-9 31 -0.009174 hybrid +141_2-3 Q0 MARCO_18_1642035430-5 32 -0.015095 hybrid +141_2-3 Q0 MARCO_12_1166767672-8 33 -0.023864 hybrid +141_2-3 Q0 KILT_48458854-8 34 -0.024907 hybrid +141_2-3 Q0 MARCO_01_1029009611-33 35 -0.047288 hybrid +141_2-3 Q0 MARCO_46_1450320711-3 36 -0.051177 hybrid +141_2-3 Q0 MARCO_15_600646838-2 37 -0.055728 hybrid +141_2-3 Q0 MARCO_17_679331183-5 38 -0.061112 hybrid +141_2-3 Q0 MARCO_03_1771134958-2 39 -0.065039 hybrid +141_2-3 Q0 MARCO_14_1487099954-3 40 -0.066507 hybrid +141_2-3 Q0 MARCO_18_1642035430-13 41 -0.069819 hybrid +141_2-3 Q0 MARCO_28_313753082-6 42 -0.073781 hybrid +141_2-3 Q0 MARCO_09_1357168570-2 43 -0.076711 hybrid +141_2-3 Q0 MARCO_28_313753082-5 44 -0.081676 hybrid +141_2-3 Q0 MARCO_56_282974175-1 45 -0.093980 hybrid +141_2-3 Q0 MARCO_43_1278352692-1 46 -0.105982 hybrid +141_2-3 Q0 MARCO_25_1032058133-6 47 -0.107789 hybrid +141_2-3 Q0 MARCO_04_859221613-3 48 -0.111224 hybrid +141_2-3 Q0 MARCO_41_1373664965-44 49 -0.111735 hybrid +141_2-3 Q0 MARCO_28_344529823-1 50 -0.119341 hybrid +141_2-3 Q0 MARCO_14_1491677448-6 51 -0.120941 hybrid +141_2-3 Q0 MARCO_19_2555634512-2 52 -0.126538 hybrid +141_2-3 Q0 MARCO_14_1487099954-2 53 -0.127846 hybrid +141_2-3 Q0 MARCO_18_1642035430-17 54 -0.137107 hybrid +141_2-3 Q0 MARCO_18_1642035430-15 55 -0.137107 hybrid +141_2-3 Q0 MARCO_14_1550167088-23 56 -0.147911 hybrid +141_2-3 Q0 MARCO_43_710569550-6 57 -0.148677 hybrid +141_2-3 Q0 MARCO_14_1550321504-4 58 -0.152748 hybrid +141_2-3 Q0 MARCO_27_1202500253-6 59 -0.154935 hybrid +141_2-3 Q0 MARCO_03_1217251115-5 60 -0.155636 hybrid +141_2-3 Q0 MARCO_41_634610701-10 61 -0.157124 hybrid +141_2-3 Q0 MARCO_56_282980903-6 62 -0.157865 hybrid +141_2-3 Q0 MARCO_18_1642035430-16 63 -0.158437 hybrid +141_2-3 Q0 MARCO_16_1911734420-15 64 -0.160137 hybrid +141_2-3 Q0 MARCO_50_1399491563-8 65 -0.161834 hybrid +141_2-3 Q0 MARCO_14_1486751720-3 66 -0.161954 hybrid +141_2-3 Q0 MARCO_18_1642035430-11 67 -0.163437 hybrid +141_2-3 Q0 MARCO_14_1549971571-20 68 -0.165192 hybrid +141_2-3 Q0 KILT_22649391-5 69 -0.168662 hybrid +141_2-3 Q0 MARCO_25_514561245-2 70 -0.171103 hybrid +141_2-3 Q0 KILT_41754003-15 71 -0.174535 hybrid +141_2-3 Q0 MARCO_14_1550321504-18 72 -0.184016 hybrid +141_2-3 Q0 MARCO_44_629465929-5 73 -0.185264 hybrid +141_2-3 Q0 MARCO_14_1483157854-3 74 -0.187608 hybrid +141_2-3 Q0 KILT_48458854-4 75 -0.191764 hybrid +141_2-3 Q0 MARCO_20_1191045343-1 76 -0.193776 hybrid +141_2-3 Q0 MARCO_01_2064144064-8 77 -0.204899 hybrid +141_2-3 Q0 MARCO_30_826115762-1 78 -0.205343 hybrid +141_2-3 Q0 MARCO_50_1937139933-12 79 -0.207488 hybrid +141_2-3 Q0 MARCO_44_1094083543-2 80 -0.214757 hybrid +141_2-3 Q0 MARCO_24_1137884337-9 81 -0.216941 hybrid +141_2-3 Q0 MARCO_34_37275169-1 82 -0.218156 hybrid +141_2-3 Q0 MARCO_13_796383454-3 83 -0.218476 hybrid +141_2-3 Q0 KILT_40772740-2 84 -0.222977 hybrid +141_2-3 Q0 MARCO_09_1357168570-3 85 -0.225840 hybrid +141_2-3 Q0 MARCO_40_382427830-11 86 -0.227432 hybrid +141_2-3 Q0 MARCO_27_1651432979-6 87 -0.229082 hybrid +141_2-3 Q0 MARCO_40_274248920-143 88 -0.229115 hybrid +141_2-3 Q0 MARCO_09_1199035307-4 89 -0.231606 hybrid +141_2-3 Q0 MARCO_48_593687068-2 90 -0.237829 hybrid +141_2-3 Q0 MARCO_46_527041136-2 91 -0.237854 hybrid +141_2-3 Q0 MARCO_28_813425076-6 92 -0.237896 hybrid +141_2-3 Q0 MARCO_27_1237980931-9 93 -0.240488 hybrid +141_2-3 Q0 MARCO_36_840746247-4 94 -0.248044 hybrid +141_2-3 Q0 KILT_14703713-4 95 -0.248877 hybrid +141_2-3 Q0 MARCO_50_1458734401-13 96 -0.253278 hybrid +141_2-3 Q0 MARCO_04_859221613-4 97 -0.255665 hybrid +141_2-3 Q0 MARCO_02_478557726-23 98 -0.258767 hybrid +141_2-3 Q0 MARCO_53_1408816608-2 99 -0.264683 hybrid +141_2-3 Q0 MARCO_33_1024691024-2 100 -0.266286 hybrid +141_2-5 Q0 MARCO_30_382651380-30 1 0.500000 hybrid +141_2-5 Q0 KILT_26136751-1 2 0.190740 hybrid +141_2-5 Q0 KILT_22352983-1 3 0.179054 hybrid +141_2-5 Q0 MARCO_20_1580416194-2 4 0.142954 hybrid +141_2-5 Q0 MARCO_18_482698154-5 5 0.117611 hybrid +141_2-5 Q0 MARCO_19_474670237-4 6 0.108519 hybrid +141_2-5 Q0 KILT_59361293-1 7 0.104211 hybrid +141_2-5 Q0 KILT_58618294-1 8 0.094412 hybrid +141_2-5 Q0 KILT_56997315-1 9 0.083935 hybrid +141_2-5 Q0 MARCO_44_1765146634-3 10 0.012776 hybrid +141_2-5 Q0 MARCO_18_1808054019-3 11 0.008866 hybrid +141_2-5 Q0 MARCO_37_715260675-33 12 0.000798 hybrid +141_2-5 Q0 KILT_58618294-3 13 -0.007160 hybrid +141_2-5 Q0 MARCO_01_693943921-5 14 -0.011520 hybrid +141_2-5 Q0 MARCO_18_482698154-2 15 -0.018033 hybrid +141_2-5 Q0 MARCO_39_808072023-3 16 -0.043758 hybrid +141_2-5 Q0 MARCO_37_707469021-13 17 -0.044852 hybrid +141_2-5 Q0 MARCO_37_700305022-12 18 -0.044852 hybrid +141_2-5 Q0 MARCO_37_711923183-13 19 -0.044852 hybrid +141_2-5 Q0 MARCO_37_698241464-14 20 -0.044852 hybrid +141_2-5 Q0 MARCO_37_699628426-12 21 -0.044852 hybrid +141_2-5 Q0 KILT_34925499-7 22 -0.063951 hybrid +141_2-5 Q0 MARCO_06_1172887863-505 23 -0.064346 hybrid +141_2-5 Q0 MARCO_32_1282340524-33 24 -0.070254 hybrid +141_2-5 Q0 MARCO_06_1172887863-527 25 -0.083062 hybrid +141_2-5 Q0 MARCO_21_1381201737-3 26 -0.085570 hybrid +141_2-5 Q0 KILT_9938967-4 27 -0.086336 hybrid +141_2-5 Q0 KILT_39364088-1 28 -0.088098 hybrid +141_2-5 Q0 MARCO_19_960114018-5 29 -0.094673 hybrid +141_2-5 Q0 MARCO_07_617570681-2 30 -0.103678 hybrid +141_2-5 Q0 MARCO_52_1329997417-2 31 -0.111904 hybrid +141_2-5 Q0 MARCO_44_608860165-4 32 -0.112868 hybrid +141_2-5 Q0 KILT_58618294-5 33 -0.118010 hybrid +141_2-5 Q0 KILT_32717614-2 34 -0.118247 hybrid +141_2-5 Q0 KILT_10062774-1 35 -0.118306 hybrid +141_2-5 Q0 KILT_1642704-9 36 -0.122239 hybrid +141_2-5 Q0 KILT_24463353-1 37 -0.126098 hybrid +141_2-5 Q0 KILT_42547009-2 38 -0.126927 hybrid +141_2-5 Q0 MARCO_17_3085633210-4 39 -0.130888 hybrid +141_2-5 Q0 KILT_15400133-3 40 -0.131663 hybrid +141_2-5 Q0 MARCO_30_2027444173-5 41 -0.137223 hybrid +141_2-5 Q0 MARCO_20_1732329969-11 42 -0.137302 hybrid +141_2-5 Q0 MARCO_07_619872937-5 43 -0.146753 hybrid +141_2-5 Q0 KILT_6020291-10 44 -0.152242 hybrid +141_2-5 Q0 MARCO_27_1432652372-4 45 -0.152550 hybrid +141_2-5 Q0 MARCO_52_1651412823-1 46 -0.156251 hybrid +141_2-5 Q0 KILT_9660652-4 47 -0.156946 hybrid +141_2-5 Q0 KILT_494457-3 48 -0.158692 hybrid +141_2-5 Q0 MARCO_18_3772717280-16 49 -0.162463 hybrid +141_2-5 Q0 MARCO_17_357624338-4 50 -0.163225 hybrid +141_2-5 Q0 MARCO_50_2713003475-4 51 -0.163277 hybrid +141_2-5 Q0 KILT_2001577-18 52 -0.166231 hybrid +141_2-5 Q0 MARCO_31_937107678-3 53 -0.168012 hybrid +141_2-5 Q0 KILT_47742974-1 54 -0.168849 hybrid +141_2-5 Q0 MARCO_15_107050948-10 55 -0.172080 hybrid +141_2-5 Q0 MARCO_02_938428602-3 56 -0.173833 hybrid +141_2-5 Q0 MARCO_29_1173372222-10 57 -0.179509 hybrid +141_2-5 Q0 MARCO_18_3246781778-7 58 -0.181005 hybrid +141_2-5 Q0 MARCO_06_1129855015-95 59 -0.183967 hybrid +141_2-5 Q0 KILT_49548409-2 60 -0.184315 hybrid +141_2-5 Q0 MARCO_25_35003439-12 61 -0.184469 hybrid +141_2-5 Q0 MARCO_30_2023461965-4 62 -0.187297 hybrid +141_2-5 Q0 MARCO_43_1002143372-13 63 -0.192194 hybrid +141_2-5 Q0 MARCO_52_1651507877-3 64 -0.195796 hybrid +141_2-5 Q0 MARCO_12_1809002904-4 65 -0.196502 hybrid +141_2-5 Q0 MARCO_17_4138751961-45 66 -0.198031 hybrid +141_2-5 Q0 MARCO_48_1557756303-4 67 -0.199480 hybrid +141_2-5 Q0 KILT_11768-3 68 -0.201198 hybrid +141_2-5 Q0 KILT_14013248-4 69 -0.201364 hybrid +141_2-5 Q0 KILT_51110374-4 70 -0.201684 hybrid +141_2-5 Q0 MARCO_43_983526925-17 71 -0.202991 hybrid +141_2-5 Q0 KILT_963586-3 72 -0.204370 hybrid +141_2-5 Q0 KILT_2866352-5 73 -0.204591 hybrid +141_2-5 Q0 MARCO_16_1627812464-3 74 -0.206715 hybrid +141_2-5 Q0 MARCO_30_2027444173-229 75 -0.209425 hybrid +141_2-5 Q0 MARCO_52_1651471415-8 76 -0.209598 hybrid +141_2-5 Q0 MARCO_24_956118104-4 77 -0.209804 hybrid +141_2-5 Q0 MARCO_54_2034678451-2 78 -0.212880 hybrid +141_2-5 Q0 KILT_430840-10 79 -0.214456 hybrid +141_2-5 Q0 KILT_30716870-5 80 -0.215807 hybrid +141_2-5 Q0 KILT_40192339-1 81 -0.220123 hybrid +141_2-5 Q0 KILT_160071-2 82 -0.221202 hybrid +141_2-5 Q0 MARCO_37_702915793-14 83 -0.222011 hybrid +141_2-5 Q0 MARCO_37_702915793-10 84 -0.222011 hybrid +141_2-5 Q0 MARCO_37_702915793-12 85 -0.222011 hybrid +141_2-5 Q0 MARCO_23_1081459172-3 86 -0.222118 hybrid +141_2-5 Q0 MARCO_52_1651410372-1 87 -0.222406 hybrid +141_2-5 Q0 KILT_22148899-1 88 -0.224985 hybrid +141_2-5 Q0 MARCO_43_1014838406-25 89 -0.225305 hybrid +141_2-5 Q0 KILT_1164072-16 90 -0.226731 hybrid +141_2-5 Q0 MARCO_18_3268009234-41 91 -0.227777 hybrid +141_2-5 Q0 KILT_8758-14 92 -0.228030 hybrid +141_2-5 Q0 MARCO_25_1437283483-34 93 -0.228500 hybrid +141_2-5 Q0 KILT_40002992-1 94 -0.229685 hybrid +141_2-5 Q0 MARCO_14_1484056390-16 95 -0.231367 hybrid +141_2-5 Q0 MARCO_18_3826886407-9 96 -0.233409 hybrid +141_2-5 Q0 MARCO_41_1239101818-17 97 -0.233409 hybrid +141_2-5 Q0 MARCO_39_1698156465-5 98 -0.236726 hybrid +141_2-5 Q0 KILT_58618294-2 99 -0.236888 hybrid +141_2-5 Q0 MARCO_43_999397475-7 100 -0.237441 hybrid +141_2-7 Q0 MARCO_28_313753082-1 1 0.500001 hybrid +141_2-7 Q0 MARCO_18_1642035430-6 2 0.459775 hybrid +141_2-7 Q0 MARCO_18_1642035430-8 3 0.448535 hybrid +141_2-7 Q0 MARCO_48_978771114-5 4 0.445217 hybrid +141_2-7 Q0 MARCO_18_1642035430-7 5 0.400279 hybrid +141_2-7 Q0 KILT_613433-17 6 0.380583 hybrid +141_2-7 Q0 MARCO_12_1166767672-8 7 0.367996 hybrid +141_2-7 Q0 MARCO_44_623879817-4 8 0.366621 hybrid +141_2-7 Q0 MARCO_36_840746247-2 9 0.348360 hybrid +141_2-7 Q0 MARCO_36_840746247-1 10 0.337663 hybrid +141_2-7 Q0 MARCO_28_313753082-2 11 0.313270 hybrid +141_2-7 Q0 MARCO_18_1642035430-1 12 0.285868 hybrid +141_2-7 Q0 MARCO_18_1642035430-10 13 0.280829 hybrid +141_2-7 Q0 MARCO_18_1642035430-2 14 0.266682 hybrid +141_2-7 Q0 MARCO_28_313753082-4 15 0.256202 hybrid +141_2-7 Q0 MARCO_12_1869314530-5 16 0.240946 hybrid +141_2-7 Q0 MARCO_18_1642035430-3 17 0.230689 hybrid +141_2-7 Q0 MARCO_25_518866882-5 18 0.228322 hybrid +141_2-7 Q0 MARCO_01_1029009611-33 19 0.223186 hybrid +141_2-7 Q0 MARCO_03_1771134958-2 20 0.221531 hybrid +141_2-7 Q0 MARCO_18_1642035430-4 21 0.170682 hybrid +141_2-7 Q0 MARCO_57_614712155-5 22 0.154624 hybrid +141_2-7 Q0 MARCO_48_290493236-2 23 0.154363 hybrid +141_2-7 Q0 MARCO_18_1642035430-12 24 0.151810 hybrid +141_2-7 Q0 MARCO_04_859221613-3 25 0.150608 hybrid +141_2-7 Q0 MARCO_14_1486751720-2 26 0.145509 hybrid +141_2-7 Q0 MARCO_18_1642035430-14 27 0.142415 hybrid +141_2-7 Q0 MARCO_18_1642035430-13 28 0.138093 hybrid +141_2-7 Q0 MARCO_57_614712155-2 29 0.102539 hybrid +141_2-7 Q0 MARCO_27_1237980931-9 30 0.101772 hybrid +141_2-7 Q0 MARCO_56_282974175-1 31 0.094889 hybrid +141_2-7 Q0 MARCO_18_1642035430-16 32 0.089294 hybrid +141_2-7 Q0 KILT_53556985-1 33 0.086630 hybrid +141_2-7 Q0 MARCO_43_1278352692-1 34 0.076425 hybrid +141_2-7 Q0 MARCO_44_629465929-5 35 0.075806 hybrid +141_2-7 Q0 MARCO_28_313753082-6 36 0.056534 hybrid +141_2-7 Q0 MARCO_15_600646838-2 37 0.054154 hybrid +141_2-7 Q0 MARCO_16_1911734420-15 38 0.043225 hybrid +141_2-7 Q0 MARCO_11_697159170-6 39 0.042013 hybrid +141_2-7 Q0 MARCO_18_1642035430-11 40 0.019581 hybrid +141_2-7 Q0 MARCO_46_1389837794-1 41 0.015293 hybrid +141_2-7 Q0 MARCO_18_1642035430-17 42 0.015193 hybrid +141_2-7 Q0 MARCO_18_1642035430-15 43 0.015193 hybrid +141_2-7 Q0 MARCO_14_1486751720-3 44 0.013591 hybrid +141_2-7 Q0 MARCO_28_447655912-10 45 0.013195 hybrid +141_2-7 Q0 MARCO_09_1357168570-2 46 0.008475 hybrid +141_2-7 Q0 MARCO_46_1450320711-3 47 0.006641 hybrid +141_2-7 Q0 MARCO_57_614712155-4 48 0.005943 hybrid +141_2-7 Q0 MARCO_36_840746247-4 49 0.001175 hybrid +141_2-7 Q0 MARCO_04_859221613-4 50 -0.000351 hybrid +141_2-7 Q0 MARCO_56_282980903-6 51 -0.016621 hybrid +141_2-7 Q0 MARCO_36_822101182-2 52 -0.019035 hybrid +141_2-7 Q0 MARCO_28_313753082-5 53 -0.029213 hybrid +141_2-7 Q0 MARCO_30_826115762-1 54 -0.029527 hybrid +141_2-7 Q0 MARCO_50_1399491563-8 55 -0.029577 hybrid +141_2-7 Q0 MARCO_12_1869158091-17 56 -0.030673 hybrid +141_2-7 Q0 MARCO_30_127331614-3 57 -0.034365 hybrid +141_2-7 Q0 MARCO_32_152519263-54 58 -0.034673 hybrid +141_2-7 Q0 MARCO_04_859221613-2 59 -0.037332 hybrid +141_2-7 Q0 MARCO_12_1166767672-15 60 -0.050125 hybrid +141_2-7 Q0 MARCO_31_295543353-7 61 -0.054209 hybrid +141_2-7 Q0 MARCO_01_828039823-24 62 -0.060279 hybrid +141_2-7 Q0 MARCO_12_1166865653-7 63 -0.061797 hybrid +141_2-7 Q0 KILT_48458854-4 64 -0.063109 hybrid +141_2-7 Q0 MARCO_19_2555634512-2 65 -0.064487 hybrid +141_2-7 Q0 MARCO_43_710569550-6 66 -0.066485 hybrid +141_2-7 Q0 MARCO_59_884854714-2 67 -0.081069 hybrid +141_2-7 Q0 MARCO_46_1450320711-2 68 -0.084471 hybrid +141_2-7 Q0 MARCO_25_1032058133-6 69 -0.085293 hybrid +141_2-7 Q0 MARCO_18_1642035430-5 70 -0.092720 hybrid +141_2-7 Q0 MARCO_44_623453459-12 71 -0.095060 hybrid +141_2-7 Q0 MARCO_48_978771114-7 72 -0.106374 hybrid +141_2-7 Q0 MARCO_09_1541907932-3 73 -0.111196 hybrid +141_2-7 Q0 MARCO_09_1357168570-1 74 -0.111913 hybrid +141_2-7 Q0 MARCO_56_282980903-11 75 -0.127003 hybrid +141_2-7 Q0 MARCO_27_1202500253-6 76 -0.128268 hybrid +141_2-7 Q0 MARCO_14_1550321504-4 77 -0.130332 hybrid +141_2-7 Q0 MARCO_18_1642035430-9 78 -0.132092 hybrid +141_2-7 Q0 MARCO_24_1137884337-13 79 -0.132838 hybrid +141_2-7 Q0 KILT_40772740-2 80 -0.133344 hybrid +141_2-7 Q0 MARCO_30_826115762-18 81 -0.136361 hybrid +141_2-7 Q0 MARCO_47_605098510-6 82 -0.136409 hybrid +141_2-7 Q0 MARCO_48_593687068-2 83 -0.136680 hybrid +141_2-7 Q0 MARCO_48_978771114-1 84 -0.141566 hybrid +141_2-7 Q0 KILT_5008268-3 85 -0.147488 hybrid +141_2-7 Q0 MARCO_53_811437017-52 86 -0.148047 hybrid +141_2-7 Q0 MARCO_04_859221613-1 87 -0.151251 hybrid +141_2-7 Q0 MARCO_43_1004720431-16 88 -0.151762 hybrid +141_2-7 Q0 MARCO_12_1166767672-33 89 -0.152545 hybrid +141_2-7 Q0 MARCO_04_906085455-3 90 -0.153496 hybrid +141_2-7 Q0 MARCO_22_1190478833-8 91 -0.154920 hybrid +141_2-7 Q0 MARCO_28_314922931-3 92 -0.155344 hybrid +141_2-7 Q0 MARCO_17_679331183-5 93 -0.155531 hybrid +141_2-7 Q0 KILT_22576683-15 94 -0.156590 hybrid +141_2-7 Q0 MARCO_50_1399491563-10 95 -0.157724 hybrid +141_2-7 Q0 MARCO_11_697159170-3 96 -0.163814 hybrid +141_2-7 Q0 MARCO_25_533347177-2 97 -0.168987 hybrid +141_2-7 Q0 MARCO_06_741217822-3 98 -0.169693 hybrid +141_2-7 Q0 MARCO_06_741217822-5 99 -0.169693 hybrid +141_2-7 Q0 MARCO_12_1166874951-11 100 -0.171657 hybrid +141_2-9 Q0 MARCO_13_137542827-1 1 0.499998 hybrid +141_2-9 Q0 MARCO_24_1312795837-37 2 0.232337 hybrid +141_2-9 Q0 MARCO_26_348005168-23 3 0.210403 hybrid +141_2-9 Q0 MARCO_38_1382956772-1 4 0.186513 hybrid +141_2-9 Q0 MARCO_25_1409432772-5 5 0.183881 hybrid +141_2-9 Q0 MARCO_13_137542827-2 6 0.155071 hybrid +141_2-9 Q0 MARCO_50_672079985-10 7 0.146936 hybrid +141_2-9 Q0 MARCO_26_397516086-51 8 0.140328 hybrid +141_2-9 Q0 MARCO_01_697452749-1 9 0.139938 hybrid +141_2-9 Q0 MARCO_15_1285498767-26 10 0.139120 hybrid +141_2-9 Q0 MARCO_25_1123642780-2 11 0.136808 hybrid +141_2-9 Q0 MARCO_39_1598155334-2 12 0.134890 hybrid +141_2-9 Q0 MARCO_15_1285288468-38 13 0.132272 hybrid +141_2-9 Q0 MARCO_24_1312795837-20 14 0.125914 hybrid +141_2-9 Q0 MARCO_24_1312795837-6 15 0.120297 hybrid +141_2-9 Q0 MARCO_32_108714028-8 16 0.113435 hybrid +141_2-9 Q0 MARCO_55_679434366-1 17 0.100219 hybrid +141_2-9 Q0 MARCO_24_1312795837-54 18 0.096657 hybrid +141_2-9 Q0 KILT_1441528-4 19 0.089744 hybrid +141_2-9 Q0 MARCO_28_348219696-1 20 0.089283 hybrid +141_2-9 Q0 MARCO_32_108714028-13 21 0.086153 hybrid +141_2-9 Q0 MARCO_20_1586510531-1 22 0.081011 hybrid +141_2-9 Q0 MARCO_30_452476192-10 23 0.070173 hybrid +141_2-9 Q0 MARCO_24_1312795837-11 24 0.065953 hybrid +141_2-9 Q0 MARCO_28_1803939956-2 25 0.064021 hybrid +141_2-9 Q0 KILT_53759-2 26 0.043051 hybrid +141_2-9 Q0 MARCO_24_1312795837-57 27 0.035860 hybrid +141_2-9 Q0 MARCO_00_1153776691-2 28 0.031122 hybrid +141_2-9 Q0 MARCO_46_378699270-3 29 0.027076 hybrid +141_2-9 Q0 MARCO_50_1969248373-75 30 0.026554 hybrid +141_2-9 Q0 MARCO_43_69531679-3 31 0.025389 hybrid +141_2-9 Q0 MARCO_24_1312795837-23 32 0.023213 hybrid +141_2-9 Q0 MARCO_30_452476192-35 33 0.023175 hybrid +141_2-9 Q0 MARCO_15_1280956306-41 34 0.018654 hybrid +141_2-9 Q0 KILT_22649391-5 35 0.018376 hybrid +141_2-9 Q0 MARCO_32_111455112-2 36 0.016656 hybrid +141_2-9 Q0 MARCO_24_1312795837-56 37 0.014245 hybrid +141_2-9 Q0 MARCO_01_700435785-1 38 0.013366 hybrid +141_2-9 Q0 MARCO_50_670069550-5 39 0.012708 hybrid +141_2-9 Q0 MARCO_29_776732349-1 40 0.010852 hybrid +141_2-9 Q0 MARCO_44_1690527796-9 41 0.002655 hybrid +141_2-9 Q0 MARCO_10_35480414-2 42 -0.002308 hybrid +141_2-9 Q0 MARCO_00_1005682670-1 43 -0.004267 hybrid +141_2-9 Q0 MARCO_56_456112245-4 44 -0.004911 hybrid +141_2-9 Q0 MARCO_32_109113067-6 45 -0.005931 hybrid +141_2-9 Q0 MARCO_50_1514555830-5 46 -0.007430 hybrid +141_2-9 Q0 MARCO_36_1069539418-1 47 -0.011674 hybrid +141_2-9 Q0 MARCO_36_562140163-1 48 -0.011975 hybrid +141_2-9 Q0 MARCO_32_440737021-4 49 -0.012929 hybrid +141_2-9 Q0 MARCO_24_1312795837-24 50 -0.014504 hybrid +141_2-9 Q0 MARCO_56_456112245-10 51 -0.015397 hybrid +141_2-9 Q0 MARCO_52_775373601-4 52 -0.015961 hybrid +141_2-9 Q0 MARCO_22_1492477361-2 53 -0.018696 hybrid +141_2-9 Q0 MARCO_15_1985263478-9 54 -0.021511 hybrid +141_2-9 Q0 KILT_28299520-5 55 -0.025398 hybrid +141_2-9 Q0 MARCO_28_1237445071-3 56 -0.032988 hybrid +141_2-9 Q0 MARCO_26_374768995-30 57 -0.033797 hybrid +141_2-9 Q0 MARCO_26_402384878-39 58 -0.036828 hybrid +141_2-9 Q0 MARCO_37_1253361813-12 59 -0.037195 hybrid +141_2-9 Q0 MARCO_28_346648744-1 60 -0.041020 hybrid +141_2-9 Q0 MARCO_20_1195020102-2 61 -0.042783 hybrid +141_2-9 Q0 MARCO_50_1514555830-20 62 -0.043920 hybrid +141_2-9 Q0 MARCO_53_1417384023-1 63 -0.044385 hybrid +141_2-9 Q0 MARCO_10_1147113023-3 64 -0.045231 hybrid +141_2-9 Q0 MARCO_15_936086994-3 65 -0.051144 hybrid +141_2-9 Q0 MARCO_26_386074350-32 66 -0.051304 hybrid +141_2-9 Q0 MARCO_28_324526884-4 67 -0.052826 hybrid +141_2-9 Q0 MARCO_15_1985263478-8 68 -0.053578 hybrid +141_2-9 Q0 MARCO_50_1969914330-28 69 -0.054462 hybrid +141_2-9 Q0 MARCO_45_981557368-3 70 -0.056558 hybrid +141_2-9 Q0 MARCO_39_1594406302-9 71 -0.058400 hybrid +141_2-9 Q0 MARCO_39_1401579961-1 72 -0.064505 hybrid +141_2-9 Q0 MARCO_00_1110768291-3 73 -0.067513 hybrid +141_2-9 Q0 MARCO_29_874258053-5 74 -0.070892 hybrid +141_2-9 Q0 MARCO_50_1679010211-11 75 -0.075644 hybrid +141_2-9 Q0 MARCO_30_452476192-36 76 -0.076170 hybrid +141_2-9 Q0 MARCO_50_2499335601-4 77 -0.078633 hybrid +141_2-9 Q0 MARCO_38_1382959616-1 78 -0.080809 hybrid +141_2-9 Q0 MARCO_32_108714028-11 79 -0.084546 hybrid +141_2-9 Q0 MARCO_32_109113067-20 80 -0.084564 hybrid +141_2-9 Q0 MARCO_39_1606282309-34 81 -0.085189 hybrid +141_2-9 Q0 MARCO_45_1579249758-5 82 -0.086153 hybrid +141_2-9 Q0 MARCO_39_1595338411-2 83 -0.086519 hybrid +141_2-9 Q0 MARCO_24_1312795837-48 84 -0.090091 hybrid +141_2-9 Q0 MARCO_14_337985404-2 85 -0.097475 hybrid +141_2-9 Q0 MARCO_27_582967102-13 86 -0.099811 hybrid +141_2-9 Q0 MARCO_10_365359144-7 87 -0.100586 hybrid +141_2-9 Q0 MARCO_10_99553000-2 88 -0.109224 hybrid +141_2-9 Q0 MARCO_39_1606282309-19 89 -0.112378 hybrid +141_2-9 Q0 MARCO_53_1468060109-3 90 -0.112980 hybrid +141_2-9 Q0 MARCO_51_1236766792-1 91 -0.114521 hybrid +141_2-9 Q0 MARCO_36_1063357712-5 92 -0.115047 hybrid +141_2-9 Q0 MARCO_59_773527069-4 93 -0.115118 hybrid +141_2-9 Q0 MARCO_06_204928155-1 94 -0.115931 hybrid +141_2-9 Q0 MARCO_45_1575687361-55 95 -0.116175 hybrid +141_2-9 Q0 MARCO_05_590296968-8 96 -0.116660 hybrid +141_2-9 Q0 MARCO_32_109113067-10 97 -0.117661 hybrid +141_2-9 Q0 MARCO_30_452476192-1 98 -0.118469 hybrid +141_2-9 Q0 MARCO_17_1941485335-21 99 -0.118915 hybrid +141_2-9 Q0 MARCO_32_109797933-3 100 -0.119724 hybrid +142_1-1 Q0 MARCO_10_790344909-3 1 0.499998 hybrid +142_1-1 Q0 MARCO_58_1508113613-2 2 0.434075 hybrid +142_1-1 Q0 MARCO_58_1508113613-1 3 0.433046 hybrid +142_1-1 Q0 MARCO_43_742228802-80 4 0.417559 hybrid +142_1-1 Q0 MARCO_58_1506642595-3 5 0.371454 hybrid +142_1-1 Q0 MARCO_22_1186906798-3 6 0.365560 hybrid +142_1-1 Q0 MARCO_22_1186915282-3 7 0.363498 hybrid +142_1-1 Q0 MARCO_58_1506642595-1 8 0.357969 hybrid +142_1-1 Q0 MARCO_58_1509104985-3 9 0.342505 hybrid +142_1-1 Q0 MARCO_37_173589964-2 10 0.341089 hybrid +142_1-1 Q0 MARCO_06_1240614560-48 11 0.337427 hybrid +142_1-1 Q0 MARCO_51_694777636-27 12 0.325607 hybrid +142_1-1 Q0 MARCO_08_1091419182-31 13 0.323444 hybrid +142_1-1 Q0 MARCO_41_1117115865-63 14 0.276642 hybrid +142_1-1 Q0 MARCO_19_2045799633-26 15 0.274659 hybrid +142_1-1 Q0 KILT_1839572-1 16 0.265633 hybrid +142_1-1 Q0 MARCO_30_2012987975-4 17 0.264886 hybrid +142_1-1 Q0 MARCO_35_128151915-14 18 0.264503 hybrid +142_1-1 Q0 MARCO_50_1441723234-16 19 0.244386 hybrid +142_1-1 Q0 KILT_14672486-3 20 0.241743 hybrid +142_1-1 Q0 MARCO_58_1508113613-3 21 0.231085 hybrid +142_1-1 Q0 MARCO_55_1284276756-1 22 0.228996 hybrid +142_1-1 Q0 MARCO_28_986460254-19 23 0.224998 hybrid +142_1-1 Q0 MARCO_47_1601362260-4 24 0.224057 hybrid +142_1-1 Q0 MARCO_50_1458626850-11 25 0.223600 hybrid +142_1-1 Q0 MARCO_30_2012975151-5 26 0.209354 hybrid +142_1-1 Q0 MARCO_30_2013034285-5 27 0.209354 hybrid +142_1-1 Q0 MARCO_30_2012997627-4 28 0.209354 hybrid +142_1-1 Q0 MARCO_30_2012956600-5 29 0.209354 hybrid +142_1-1 Q0 KILT_68259-7 30 0.204687 hybrid +142_1-1 Q0 MARCO_11_1448564973-7 31 0.204285 hybrid +142_1-1 Q0 MARCO_10_120187103-9 32 0.199973 hybrid +142_1-1 Q0 MARCO_47_1601362260-1 33 0.197515 hybrid +142_1-1 Q0 MARCO_47_1602505698-3 34 0.180437 hybrid +142_1-1 Q0 MARCO_10_790353427-1 35 0.175355 hybrid +142_1-1 Q0 KILT_8076950-1 36 0.173330 hybrid +142_1-1 Q0 MARCO_28_984047122-4 37 0.172929 hybrid +142_1-1 Q0 MARCO_28_986492477-1 38 0.170282 hybrid +142_1-1 Q0 MARCO_55_249733632-4 39 0.162695 hybrid +142_1-1 Q0 MARCO_22_1186915282-1 40 0.162451 hybrid +142_1-1 Q0 MARCO_47_1285299013-4 41 0.161067 hybrid +142_1-1 Q0 MARCO_51_694777636-29 42 0.158424 hybrid +142_1-1 Q0 MARCO_08_1091419182-26 43 0.158346 hybrid +142_1-1 Q0 MARCO_55_1284276756-5 44 0.156391 hybrid +142_1-1 Q0 MARCO_22_1186915282-5 45 0.144492 hybrid +142_1-1 Q0 MARCO_58_1509104985-4 46 0.143496 hybrid +142_1-1 Q0 MARCO_47_1602505698-2 47 0.142177 hybrid +142_1-1 Q0 MARCO_35_128533405-3 48 0.141328 hybrid +142_1-1 Q0 MARCO_24_1139351957-10 49 0.135369 hybrid +142_1-1 Q0 KILT_41582495-1 50 0.128156 hybrid +142_1-1 Q0 MARCO_22_1186906798-1 51 0.124485 hybrid +142_1-1 Q0 MARCO_10_448253860-6 52 0.124411 hybrid +142_1-1 Q0 MARCO_17_693365828-5 53 0.123853 hybrid +142_1-1 Q0 MARCO_55_1284276756-4 54 0.119089 hybrid +142_1-1 Q0 MARCO_22_1186888239-1 55 0.118674 hybrid +142_1-1 Q0 MARCO_30_1022384297-23 56 0.118287 hybrid +142_1-1 Q0 MARCO_54_676656745-2 57 0.117590 hybrid +142_1-1 Q0 MARCO_54_676656745-4 58 0.117590 hybrid +142_1-1 Q0 MARCO_47_1604104921-1 59 0.116354 hybrid +142_1-1 Q0 MARCO_55_247577966-6 60 0.114496 hybrid +142_1-1 Q0 MARCO_30_1022384297-77 61 0.110391 hybrid +142_1-1 Q0 MARCO_47_1602505698-4 62 0.110091 hybrid +142_1-1 Q0 KILT_5983605-2 63 0.108657 hybrid +142_1-1 Q0 KILT_28820502-2 64 0.099120 hybrid +142_1-1 Q0 MARCO_54_676656745-1 65 0.097648 hybrid +142_1-1 Q0 MARCO_30_1022384297-72 66 0.096495 hybrid +142_1-1 Q0 MARCO_22_1186867646-3 67 0.089670 hybrid +142_1-1 Q0 MARCO_19_2045799633-5 68 0.088425 hybrid +142_1-1 Q0 KILT_34879285-1 69 0.082383 hybrid +142_1-1 Q0 MARCO_03_583636368-68 70 0.079108 hybrid +142_1-1 Q0 MARCO_03_444110329-1 71 0.078592 hybrid +142_1-1 Q0 KILT_35894206-10 72 0.071646 hybrid +142_1-1 Q0 MARCO_32_884765978-2 73 0.069465 hybrid +142_1-1 Q0 MARCO_30_901392960-1 74 0.063967 hybrid +142_1-1 Q0 MARCO_22_1186877744-7 75 0.061030 hybrid +142_1-1 Q0 MARCO_06_1255673525-375 76 0.060827 hybrid +142_1-1 Q0 MARCO_22_1186915282-6 77 0.058096 hybrid +142_1-1 Q0 MARCO_08_1091419182-28 78 0.056307 hybrid +142_1-1 Q0 MARCO_22_1186915282-2 79 0.055920 hybrid +142_1-1 Q0 MARCO_47_1285299013-5 80 0.054928 hybrid +142_1-1 Q0 MARCO_58_1509104985-2 81 0.048836 hybrid +142_1-1 Q0 MARCO_10_120187103-6 82 0.047549 hybrid +142_1-1 Q0 MARCO_10_790347853-1 83 0.045792 hybrid +142_1-1 Q0 MARCO_50_1458626850-10 84 0.043887 hybrid +142_1-1 Q0 MARCO_36_816068485-6 85 0.043514 hybrid +142_1-1 Q0 MARCO_48_1542395416-10 86 0.043477 hybrid +142_1-1 Q0 MARCO_22_1186906798-4 87 0.042254 hybrid +142_1-1 Q0 MARCO_58_1505463998-3 88 0.035134 hybrid +142_1-1 Q0 MARCO_19_2045799633-17 89 0.032731 hybrid +142_1-1 Q0 MARCO_22_1186897393-6 90 0.027865 hybrid +142_1-1 Q0 MARCO_35_128151915-13 91 0.027861 hybrid +142_1-1 Q0 MARCO_11_1448564973-8 92 0.027524 hybrid +142_1-1 Q0 MARCO_36_1003753285-1 93 0.027446 hybrid +142_1-1 Q0 MARCO_24_1139403731-4 94 0.024457 hybrid +142_1-1 Q0 KILT_392708-1 95 0.023032 hybrid +142_1-1 Q0 MARCO_47_1604104921-2 96 0.021718 hybrid +142_1-1 Q0 MARCO_16_442874124-2 97 0.020832 hybrid +142_1-1 Q0 KILT_68259-13 98 0.019877 hybrid +142_1-1 Q0 MARCO_50_1458626850-9 99 0.019744 hybrid +142_1-1 Q0 MARCO_30_1090824205-3 100 0.014302 hybrid +142_1-3 Q0 MARCO_11_1448564973-7 1 0.499999 hybrid +142_1-3 Q0 MARCO_27_1334580338-2 2 0.439252 hybrid +142_1-3 Q0 MARCO_06_1149196799-139 3 0.308098 hybrid +142_1-3 Q0 MARCO_16_3046749093-38 4 0.291372 hybrid +142_1-3 Q0 MARCO_16_3046749093-37 5 0.275045 hybrid +142_1-3 Q0 MARCO_47_1604104921-3 6 0.240052 hybrid +142_1-3 Q0 KILT_8985102-1 7 0.210771 hybrid +142_1-3 Q0 KILT_6275053-1 8 0.209594 hybrid +142_1-3 Q0 MARCO_16_3046749093-13 9 0.207405 hybrid +142_1-3 Q0 MARCO_47_1604104921-16 10 0.199598 hybrid +142_1-3 Q0 MARCO_16_3046749093-3 11 0.195292 hybrid +142_1-3 Q0 MARCO_16_3046749093-45 12 0.170532 hybrid +142_1-3 Q0 MARCO_58_1508113613-1 13 0.162706 hybrid +142_1-3 Q0 MARCO_58_1508113613-2 14 0.143378 hybrid +142_1-3 Q0 MARCO_16_3046749093-46 15 0.134827 hybrid +142_1-3 Q0 MARCO_58_1506642595-1 16 0.129527 hybrid +142_1-3 Q0 MARCO_16_3046749093-127 17 0.119982 hybrid +142_1-3 Q0 MARCO_16_3046749093-4 18 0.114745 hybrid +142_1-3 Q0 MARCO_16_3046944575-20 19 0.111060 hybrid +142_1-3 Q0 MARCO_16_3046749093-87 20 0.103496 hybrid +142_1-3 Q0 MARCO_47_1604104921-2 21 0.102796 hybrid +142_1-3 Q0 MARCO_16_3046749093-25 22 0.090609 hybrid +142_1-3 Q0 MARCO_24_1126171266-11 23 0.089946 hybrid +142_1-3 Q0 MARCO_16_3046749093-8 24 0.086696 hybrid +142_1-3 Q0 MARCO_16_3046749093-26 25 0.085692 hybrid +142_1-3 Q0 MARCO_16_3046749093-29 26 0.084381 hybrid +142_1-3 Q0 MARCO_58_1509104985-3 27 0.083505 hybrid +142_1-3 Q0 MARCO_29_789772576-15 28 0.064417 hybrid +142_1-3 Q0 MARCO_16_3046944575-3 29 0.059695 hybrid +142_1-3 Q0 MARCO_16_3046749093-1 30 0.056856 hybrid +142_1-3 Q0 MARCO_16_2607069492-21 31 0.056648 hybrid +142_1-3 Q0 MARCO_40_1583135483-1 32 0.055438 hybrid +142_1-3 Q0 MARCO_16_3046944575-2 33 0.054085 hybrid +142_1-3 Q0 MARCO_16_3046749093-65 34 0.052510 hybrid +142_1-3 Q0 KILT_59860143-1 35 0.050642 hybrid +142_1-3 Q0 MARCO_16_3046749093-18 36 0.049675 hybrid +142_1-3 Q0 MARCO_19_2045799633-15 37 0.046643 hybrid +142_1-3 Q0 MARCO_10_120187103-6 38 0.043061 hybrid +142_1-3 Q0 MARCO_16_3046749093-62 39 0.042811 hybrid +142_1-3 Q0 MARCO_16_3046928162-2 40 0.042420 hybrid +142_1-3 Q0 KILT_592844-2 41 0.041550 hybrid +142_1-3 Q0 KILT_40111264-1 42 0.039764 hybrid +142_1-3 Q0 MARCO_10_120187103-1 43 0.036402 hybrid +142_1-3 Q0 KILT_11904555-3 44 0.035052 hybrid +142_1-3 Q0 MARCO_27_1334580338-1 45 0.034025 hybrid +142_1-3 Q0 MARCO_16_3046749093-15 46 0.028116 hybrid +142_1-3 Q0 MARCO_28_439210340-43 47 0.014863 hybrid +142_1-3 Q0 MARCO_16_3046749093-34 48 0.013199 hybrid +142_1-3 Q0 MARCO_16_3046749093-108 49 0.006110 hybrid +142_1-3 Q0 MARCO_10_120187103-9 50 0.005471 hybrid +142_1-3 Q0 KILT_23714282-3 51 0.001645 hybrid +142_1-3 Q0 MARCO_11_1448564973-8 52 -0.003836 hybrid +142_1-3 Q0 MARCO_16_3046749093-63 53 -0.003851 hybrid +142_1-3 Q0 MARCO_22_1186915282-3 54 -0.005798 hybrid +142_1-3 Q0 MARCO_16_3301586502-7 55 -0.007040 hybrid +142_1-3 Q0 MARCO_16_3046749093-39 56 -0.012165 hybrid +142_1-3 Q0 MARCO_22_1186906798-2 57 -0.013540 hybrid +142_1-3 Q0 MARCO_16_3046749093-47 58 -0.016122 hybrid +142_1-3 Q0 MARCO_16_3046944575-8 59 -0.021203 hybrid +142_1-3 Q0 MARCO_47_1602505698-2 60 -0.021418 hybrid +142_1-3 Q0 MARCO_22_1186906798-3 61 -0.023511 hybrid +142_1-3 Q0 MARCO_16_3046749093-24 62 -0.026550 hybrid +142_1-3 Q0 MARCO_16_3046944575-9 63 -0.026793 hybrid +142_1-3 Q0 MARCO_24_1139403731-4 64 -0.027582 hybrid +142_1-3 Q0 MARCO_16_3046749093-55 65 -0.028203 hybrid +142_1-3 Q0 MARCO_47_1602505698-4 66 -0.030013 hybrid +142_1-3 Q0 MARCO_16_3046749093-56 67 -0.035739 hybrid +142_1-3 Q0 MARCO_16_3046749093-36 68 -0.037080 hybrid +142_1-3 Q0 KILT_18611346-3 69 -0.039761 hybrid +142_1-3 Q0 MARCO_22_1186915282-6 70 -0.040236 hybrid +142_1-3 Q0 MARCO_16_3046944575-15 71 -0.049890 hybrid +142_1-3 Q0 KILT_21534151-2 72 -0.052317 hybrid +142_1-3 Q0 MARCO_16_3046749093-2 73 -0.052327 hybrid +142_1-3 Q0 KILT_4566278-3 74 -0.052366 hybrid +142_1-3 Q0 KILT_35894206-11 75 -0.056311 hybrid +142_1-3 Q0 MARCO_16_3046749093-72 76 -0.060289 hybrid +142_1-3 Q0 MARCO_55_248583746-10 77 -0.060549 hybrid +142_1-3 Q0 KILT_35894206-3 78 -0.063861 hybrid +142_1-3 Q0 MARCO_16_3046944575-16 79 -0.063937 hybrid +142_1-3 Q0 MARCO_47_1604104921-11 80 -0.065107 hybrid +142_1-3 Q0 MARCO_16_3046749093-85 81 -0.068019 hybrid +142_1-3 Q0 MARCO_17_2524961420-4 82 -0.068202 hybrid +142_1-3 Q0 MARCO_29_789772576-14 83 -0.068805 hybrid +142_1-3 Q0 MARCO_47_1602505698-6 84 -0.069295 hybrid +142_1-3 Q0 KILT_1839572-1 85 -0.071716 hybrid +142_1-3 Q0 MARCO_47_1604104921-5 86 -0.079629 hybrid +142_1-3 Q0 MARCO_16_3046944575-5 87 -0.082850 hybrid +142_1-3 Q0 MARCO_16_3046749093-54 88 -0.085340 hybrid +142_1-3 Q0 MARCO_16_3046749093-61 89 -0.086829 hybrid +142_1-3 Q0 KILT_26507946-2 90 -0.087883 hybrid +142_1-3 Q0 MARCO_03_1387185114-2 91 -0.088501 hybrid +142_1-3 Q0 MARCO_16_3046749093-100 92 -0.090337 hybrid +142_1-3 Q0 MARCO_16_3046749093-84 93 -0.090713 hybrid +142_1-3 Q0 MARCO_16_3046944575-17 94 -0.095343 hybrid +142_1-3 Q0 KILT_35894206-13 95 -0.096298 hybrid +142_1-3 Q0 MARCO_58_1508113613-3 96 -0.096582 hybrid +142_1-3 Q0 KILT_6275053-2 97 -0.097134 hybrid +142_1-3 Q0 MARCO_08_1480326385-12 98 -0.097797 hybrid +142_1-3 Q0 MARCO_16_3046944575-12 99 -0.098341 hybrid +142_1-3 Q0 MARCO_47_1601362260-4 100 -0.099024 hybrid +142_1-5 Q0 MARCO_10_120187103-9 1 0.499999 hybrid +142_1-5 Q0 MARCO_16_3046749093-45 2 0.489883 hybrid +142_1-5 Q0 MARCO_16_3046749093-38 3 0.368557 hybrid +142_1-5 Q0 MARCO_16_3046749093-4 4 0.362181 hybrid +142_1-5 Q0 MARCO_16_3046749093-39 5 0.326060 hybrid +142_1-5 Q0 MARCO_10_120187103-8 6 0.301115 hybrid +142_1-5 Q0 MARCO_22_1186906798-3 7 0.285758 hybrid +142_1-5 Q0 MARCO_16_3046749093-42 8 0.282173 hybrid +142_1-5 Q0 MARCO_16_3046749093-47 9 0.246123 hybrid +142_1-5 Q0 MARCO_10_120187103-6 10 0.237546 hybrid +142_1-5 Q0 MARCO_16_3046749093-43 11 0.237508 hybrid +142_1-5 Q0 MARCO_16_3046749093-107 12 0.229052 hybrid +142_1-5 Q0 MARCO_24_1139351957-10 13 0.214164 hybrid +142_1-5 Q0 MARCO_10_120187103-1 14 0.207063 hybrid +142_1-5 Q0 MARCO_16_3046749093-46 15 0.198845 hybrid +142_1-5 Q0 MARCO_35_131732716-2 16 0.198233 hybrid +142_1-5 Q0 MARCO_16_3046749093-41 17 0.193407 hybrid +142_1-5 Q0 MARCO_16_3046749093-62 18 0.189115 hybrid +142_1-5 Q0 MARCO_16_3046749093-54 19 0.157595 hybrid +142_1-5 Q0 MARCO_11_1448564973-4 20 0.156475 hybrid +142_1-5 Q0 MARCO_35_131732716-1 21 0.151527 hybrid +142_1-5 Q0 MARCO_22_1186906798-2 22 0.146502 hybrid +142_1-5 Q0 MARCO_27_1334580338-2 23 0.136737 hybrid +142_1-5 Q0 MARCO_11_1448564973-8 24 0.124014 hybrid +142_1-5 Q0 MARCO_16_3046749093-49 25 0.121626 hybrid +142_1-5 Q0 MARCO_11_1448564973-9 26 0.120999 hybrid +142_1-5 Q0 MARCO_41_1362852419-27 27 0.119398 hybrid +142_1-5 Q0 MARCO_05_848957007-14 28 0.118703 hybrid +142_1-5 Q0 MARCO_30_1004054024-7 29 0.114747 hybrid +142_1-5 Q0 MARCO_10_790347853-1 30 0.108092 hybrid +142_1-5 Q0 MARCO_16_3046749093-105 31 0.107979 hybrid +142_1-5 Q0 MARCO_16_3046749093-55 32 0.105252 hybrid +142_1-5 Q0 MARCO_30_2012975151-5 33 0.104676 hybrid +142_1-5 Q0 MARCO_30_2013034285-5 34 0.104676 hybrid +142_1-5 Q0 MARCO_30_2012997627-4 35 0.104676 hybrid +142_1-5 Q0 MARCO_30_2012956600-5 36 0.104676 hybrid +142_1-5 Q0 MARCO_16_3046749093-40 37 0.102974 hybrid +142_1-5 Q0 MARCO_47_1602505698-8 38 0.101861 hybrid +142_1-5 Q0 MARCO_24_1139403731-4 39 0.096449 hybrid +142_1-5 Q0 MARCO_11_1448564973-1 40 0.093165 hybrid +142_1-5 Q0 MARCO_10_120187103-2 41 0.092306 hybrid +142_1-5 Q0 MARCO_24_82231277-2 42 0.068695 hybrid +142_1-5 Q0 MARCO_05_848957007-9 43 0.062405 hybrid +142_1-5 Q0 MARCO_16_3046749093-13 44 0.057492 hybrid +142_1-5 Q0 MARCO_24_1126171266-11 45 0.055280 hybrid +142_1-5 Q0 MARCO_30_2012993435-3 46 0.053884 hybrid +142_1-5 Q0 MARCO_30_2012980419-6 47 0.053884 hybrid +142_1-5 Q0 MARCO_16_3046749093-34 48 0.053551 hybrid +142_1-5 Q0 KILT_27235520-2 49 0.051915 hybrid +142_1-5 Q0 MARCO_30_2013028110-1 50 0.045954 hybrid +142_1-5 Q0 KILT_58109079-3 51 0.042467 hybrid +142_1-5 Q0 MARCO_05_848957007-1 52 0.041113 hybrid +142_1-5 Q0 MARCO_16_3046749093-50 53 0.035393 hybrid +142_1-5 Q0 MARCO_16_3046749093-44 54 0.035182 hybrid +142_1-5 Q0 KILT_23378955-9 55 0.034894 hybrid +142_1-5 Q0 MARCO_16_3046749093-56 56 0.033911 hybrid +142_1-5 Q0 KILT_2810466-9 57 0.029994 hybrid +142_1-5 Q0 MARCO_16_3046749093-15 58 0.025061 hybrid +142_1-5 Q0 MARCO_30_2012938093-10 59 0.021324 hybrid +142_1-5 Q0 MARCO_16_3046749093-114 60 0.020612 hybrid +142_1-5 Q0 MARCO_16_3046749093-29 61 0.009658 hybrid +142_1-5 Q0 MARCO_16_3046749093-51 62 0.009349 hybrid +142_1-5 Q0 MARCO_16_2607069492-21 63 0.007155 hybrid +142_1-5 Q0 MARCO_10_120187103-5 64 0.005085 hybrid +142_1-5 Q0 MARCO_11_1448564973-7 65 0.000431 hybrid +142_1-5 Q0 MARCO_16_3046944575-12 66 -0.003009 hybrid +142_1-5 Q0 MARCO_16_3046749093-28 67 -0.004179 hybrid +142_1-5 Q0 KILT_8985102-1 68 -0.008643 hybrid +142_1-5 Q0 MARCO_16_3046749093-106 69 -0.013163 hybrid +142_1-5 Q0 MARCO_22_1186915282-3 70 -0.017048 hybrid +142_1-5 Q0 MARCO_10_120187103-10 71 -0.018066 hybrid +142_1-5 Q0 MARCO_16_3046749093-33 72 -0.022848 hybrid +142_1-5 Q0 MARCO_47_1285299013-4 73 -0.025058 hybrid +142_1-5 Q0 KILT_45415172-8 74 -0.028924 hybrid +142_1-5 Q0 MARCO_55_248583746-10 75 -0.030888 hybrid +142_1-5 Q0 MARCO_22_1186906798-1 76 -0.031627 hybrid +142_1-5 Q0 MARCO_22_1189428320-5 77 -0.031710 hybrid +142_1-5 Q0 KILT_18611346-3 78 -0.032785 hybrid +142_1-5 Q0 MARCO_18_3127967367-5 79 -0.033587 hybrid +142_1-5 Q0 MARCO_16_3046749093-63 80 -0.036682 hybrid +142_1-5 Q0 MARCO_16_3046749093-61 81 -0.041092 hybrid +142_1-5 Q0 MARCO_57_1435834480-4 82 -0.043195 hybrid +142_1-5 Q0 MARCO_30_2013002157-3 83 -0.045075 hybrid +142_1-5 Q0 MARCO_27_912003150-1 84 -0.048642 hybrid +142_1-5 Q0 MARCO_05_848986452-3 85 -0.052111 hybrid +142_1-5 Q0 MARCO_55_1728784830-2 86 -0.052907 hybrid +142_1-5 Q0 MARCO_16_3046749093-37 87 -0.055529 hybrid +142_1-5 Q0 MARCO_16_3046749093-66 88 -0.058764 hybrid +142_1-5 Q0 MARCO_49_1585013178-7 89 -0.059358 hybrid +142_1-5 Q0 MARCO_22_1186906798-5 90 -0.059666 hybrid +142_1-5 Q0 MARCO_45_1248533362-1 91 -0.060418 hybrid +142_1-5 Q0 KILT_3416784-2 92 -0.061288 hybrid +142_1-5 Q0 MARCO_08_454689269-10 93 -0.061517 hybrid +142_1-5 Q0 MARCO_30_2012938093-7 94 -0.061843 hybrid +142_1-5 Q0 MARCO_55_248583746-11 95 -0.064309 hybrid +142_1-5 Q0 MARCO_05_849004482-4 96 -0.068713 hybrid +142_1-5 Q0 KILT_1796942-1 97 -0.069328 hybrid +142_1-5 Q0 MARCO_55_1704796583-6 98 -0.072366 hybrid +142_1-5 Q0 MARCO_50_1458626850-10 99 -0.072660 hybrid +142_1-5 Q0 MARCO_28_439210340-43 100 -0.072960 hybrid +142_2-2 Q0 KILT_2810466-9 1 0.500002 hybrid +142_2-2 Q0 MARCO_18_3127967367-5 2 0.285377 hybrid +142_2-2 Q0 MARCO_05_848957007-1 3 0.258828 hybrid +142_2-2 Q0 MARCO_18_3127967367-2 4 0.254331 hybrid +142_2-2 Q0 MARCO_50_1458626850-10 5 0.249255 hybrid +142_2-2 Q0 MARCO_16_3046749093-49 6 0.240349 hybrid +142_2-2 Q0 MARCO_05_848957007-4 7 0.229208 hybrid +142_2-2 Q0 MARCO_05_848957007-14 8 0.187030 hybrid +142_2-2 Q0 MARCO_22_393668005-3 9 0.183516 hybrid +142_2-2 Q0 MARCO_45_1248533362-1 10 0.182840 hybrid +142_2-2 Q0 MARCO_06_1240614560-37 11 0.175684 hybrid +142_2-2 Q0 MARCO_05_848957007-12 12 0.175270 hybrid +142_2-2 Q0 MARCO_05_849036905-6 13 0.149231 hybrid +142_2-2 Q0 MARCO_05_848957007-10 14 0.149136 hybrid +142_2-2 Q0 MARCO_16_3046749093-38 15 0.149041 hybrid +142_2-2 Q0 MARCO_05_848986452-3 16 0.147369 hybrid +142_2-2 Q0 KILT_8076950-4 17 0.139879 hybrid +142_2-2 Q0 KILT_2810466-10 18 0.125666 hybrid +142_2-2 Q0 MARCO_16_3046749093-41 19 0.118216 hybrid +142_2-2 Q0 MARCO_50_1441723234-18 20 0.101835 hybrid +142_2-2 Q0 MARCO_50_1458626850-15 21 0.095432 hybrid +142_2-2 Q0 MARCO_10_790347853-1 22 0.087455 hybrid +142_2-2 Q0 MARCO_16_3046749093-45 23 0.085359 hybrid +142_2-2 Q0 MARCO_08_1480326385-15 24 0.071399 hybrid +142_2-2 Q0 MARCO_10_790353427-4 25 0.054219 hybrid +142_2-2 Q0 MARCO_54_676656745-1 26 0.047465 hybrid +142_2-2 Q0 MARCO_10_120187103-9 27 0.046580 hybrid +142_2-2 Q0 MARCO_05_848986452-2 28 0.035641 hybrid +142_2-2 Q0 MARCO_58_1506642595-1 29 0.024921 hybrid +142_2-2 Q0 MARCO_06_1240614560-46 30 0.022086 hybrid +142_2-2 Q0 MARCO_05_848957007-9 31 0.021871 hybrid +142_2-2 Q0 MARCO_06_1240614560-44 32 0.009039 hybrid +142_2-2 Q0 MARCO_16_3046749093-43 33 0.008290 hybrid +142_2-2 Q0 MARCO_47_1601362260-3 34 0.007500 hybrid +142_2-2 Q0 MARCO_58_1508113613-1 35 0.005357 hybrid +142_2-2 Q0 MARCO_06_1240614560-33 36 0.000032 hybrid +142_2-2 Q0 MARCO_16_3046749093-40 37 -0.000727 hybrid +142_2-2 Q0 MARCO_05_848957007-2 38 -0.001030 hybrid +142_2-2 Q0 MARCO_05_848986452-4 39 -0.004636 hybrid +142_2-2 Q0 MARCO_18_469824557-17 40 -0.005085 hybrid +142_2-2 Q0 MARCO_05_848975837-1 41 -0.005092 hybrid +142_2-2 Q0 MARCO_47_1604104921-11 42 -0.006590 hybrid +142_2-2 Q0 KILT_18706892-1 43 -0.008483 hybrid +142_2-2 Q0 MARCO_05_848986452-1 44 -0.008932 hybrid +142_2-2 Q0 MARCO_16_3046749093-56 45 -0.011248 hybrid +142_2-2 Q0 KILT_44501940-2 46 -0.014864 hybrid +142_2-2 Q0 MARCO_17_2510087016-4 47 -0.017225 hybrid +142_2-2 Q0 MARCO_47_1602505698-4 48 -0.021046 hybrid +142_2-2 Q0 MARCO_05_849015218-10 49 -0.022604 hybrid +142_2-2 Q0 KILT_28820502-1 50 -0.024712 hybrid +142_2-2 Q0 MARCO_18_3127967367-3 51 -0.025913 hybrid +142_2-2 Q0 MARCO_16_3046749093-47 52 -0.034785 hybrid +142_2-2 Q0 MARCO_05_849004482-4 53 -0.034993 hybrid +142_2-2 Q0 KILT_8076950-6 54 -0.035575 hybrid +142_2-2 Q0 MARCO_16_3046749093-39 55 -0.038091 hybrid +142_2-2 Q0 MARCO_10_790347853-2 56 -0.039472 hybrid +142_2-2 Q0 MARCO_06_1149196799-139 57 -0.043407 hybrid +142_2-2 Q0 MARCO_18_928497466-12 58 -0.045733 hybrid +142_2-2 Q0 MARCO_05_848957007-13 59 -0.049352 hybrid +142_2-2 Q0 MARCO_50_1441723234-14 60 -0.050056 hybrid +142_2-2 Q0 MARCO_50_1936673617-24 61 -0.055960 hybrid +142_2-2 Q0 MARCO_22_1186915282-3 62 -0.056883 hybrid +142_2-2 Q0 KILT_15581858-2 63 -0.057702 hybrid +142_2-2 Q0 MARCO_50_1446209665-18 64 -0.058264 hybrid +142_2-2 Q0 MARCO_17_674008977-20 65 -0.058577 hybrid +142_2-2 Q0 MARCO_38_608948918-1 66 -0.060426 hybrid +142_2-2 Q0 MARCO_10_448253860-1 67 -0.061731 hybrid +142_2-2 Q0 MARCO_16_3046944575-20 68 -0.063027 hybrid +142_2-2 Q0 MARCO_08_454689269-10 69 -0.063644 hybrid +142_2-2 Q0 MARCO_03_1387185114-2 70 -0.065246 hybrid +142_2-2 Q0 KILT_68519-11 71 -0.066409 hybrid +142_2-2 Q0 MARCO_08_1480326385-19 72 -0.069974 hybrid +142_2-2 Q0 MARCO_16_3046944575-5 73 -0.070417 hybrid +142_2-2 Q0 MARCO_16_3046749093-62 74 -0.071586 hybrid +142_2-2 Q0 MARCO_22_393668005-2 75 -0.072572 hybrid +142_2-2 Q0 MARCO_05_848957007-8 76 -0.074854 hybrid +142_2-2 Q0 MARCO_17_674008977-1 77 -0.074863 hybrid +142_2-2 Q0 MARCO_41_1117115865-63 78 -0.074892 hybrid +142_2-2 Q0 MARCO_47_1604104921-6 79 -0.075227 hybrid +142_2-2 Q0 MARCO_44_1695065420-2 80 -0.076428 hybrid +142_2-2 Q0 MARCO_22_1186906798-5 81 -0.076908 hybrid +142_2-2 Q0 MARCO_47_1604104921-3 82 -0.083735 hybrid +142_2-2 Q0 MARCO_16_3046749093-4 83 -0.086175 hybrid +142_2-2 Q0 MARCO_10_448253860-5 84 -0.087057 hybrid +142_2-2 Q0 MARCO_24_1949677245-5 85 -0.087136 hybrid +142_2-2 Q0 MARCO_10_790347853-3 86 -0.088770 hybrid +142_2-2 Q0 MARCO_05_848957007-3 87 -0.091602 hybrid +142_2-2 Q0 MARCO_22_1186906798-1 88 -0.091927 hybrid +142_2-2 Q0 MARCO_18_469824557-16 89 -0.092989 hybrid +142_2-2 Q0 KILT_1833378-6 90 -0.093403 hybrid +142_2-2 Q0 KILT_1437724-14 91 -0.095028 hybrid +142_2-2 Q0 MARCO_34_1720948467-7 92 -0.095770 hybrid +142_2-2 Q0 MARCO_17_677302622-29 93 -0.097249 hybrid +142_2-2 Q0 KILT_14672486-3 94 -0.097948 hybrid +142_2-2 Q0 MARCO_16_3046749093-50 95 -0.098229 hybrid +142_2-2 Q0 KILT_45415172-8 96 -0.098684 hybrid +142_2-2 Q0 MARCO_50_2159262849-22 97 -0.099851 hybrid +142_2-2 Q0 MARCO_18_3132971540-8 98 -0.104351 hybrid +142_2-2 Q0 MARCO_29_789772576-14 99 -0.105167 hybrid +142_2-2 Q0 MARCO_04_906111145-1 100 -0.105988 hybrid +142_2-4 Q0 KILT_7060542-1 1 0.500002 hybrid +142_2-4 Q0 MARCO_06_1240614560-49 2 0.249247 hybrid +142_2-4 Q0 KILT_2678089-3 3 0.179785 hybrid +142_2-4 Q0 KILT_7717615-1 4 0.170896 hybrid +142_2-4 Q0 KILT_32239668-1 5 0.129560 hybrid +142_2-4 Q0 MARCO_05_848975837-2 6 0.122118 hybrid +142_2-4 Q0 MARCO_50_1395471412-11 7 0.117944 hybrid +142_2-4 Q0 MARCO_15_106982860-3 8 0.111396 hybrid +142_2-4 Q0 MARCO_10_448253860-6 9 0.107219 hybrid +142_2-4 Q0 KILT_57086836-1 10 0.103487 hybrid +142_2-4 Q0 MARCO_06_1149196799-139 11 0.085940 hybrid +142_2-4 Q0 KILT_48619690-2 12 0.075401 hybrid +142_2-4 Q0 KILT_35325571-1 13 0.074339 hybrid +142_2-4 Q0 KILT_14024031-1 14 0.060401 hybrid +142_2-4 Q0 KILT_22352829-1 15 0.051654 hybrid +142_2-4 Q0 KILT_15130185-1 16 0.040715 hybrid +142_2-4 Q0 MARCO_22_1189445202-15 17 0.039170 hybrid +142_2-4 Q0 KILT_5114137-1 18 0.038998 hybrid +142_2-4 Q0 KILT_3424950-1 19 0.038333 hybrid +142_2-4 Q0 KILT_59860269-1 20 0.035352 hybrid +142_2-4 Q0 KILT_2527950-1 21 0.023396 hybrid +142_2-4 Q0 KILT_6147532-1 22 0.013796 hybrid +142_2-4 Q0 KILT_42498840-1 23 0.006739 hybrid +142_2-4 Q0 MARCO_30_2013034285-3 24 0.005520 hybrid +142_2-4 Q0 KILT_3947279-1 25 0.005064 hybrid +142_2-4 Q0 KILT_46268541-2 26 -0.016582 hybrid +142_2-4 Q0 KILT_5733951-3 27 -0.027884 hybrid +142_2-4 Q0 KILT_59860174-1 28 -0.030831 hybrid +142_2-4 Q0 KILT_32179195-1 29 -0.034069 hybrid +142_2-4 Q0 KILT_21068023-1 30 -0.034522 hybrid +142_2-4 Q0 MARCO_47_1602505698-12 31 -0.044148 hybrid +142_2-4 Q0 MARCO_17_655943116-5 32 -0.045920 hybrid +142_2-4 Q0 KILT_28105896-1 33 -0.048258 hybrid +142_2-4 Q0 MARCO_58_1508113613-2 34 -0.051826 hybrid +142_2-4 Q0 MARCO_28_983417792-1 35 -0.055019 hybrid +142_2-4 Q0 MARCO_10_448253860-4 36 -0.060292 hybrid +142_2-4 Q0 KILT_48730417-1 37 -0.060707 hybrid +142_2-4 Q0 KILT_51940655-41 38 -0.067847 hybrid +142_2-4 Q0 KILT_13159127-1 39 -0.070678 hybrid +142_2-4 Q0 MARCO_08_1480326385-15 40 -0.070726 hybrid +142_2-4 Q0 MARCO_58_1506642595-3 41 -0.073494 hybrid +142_2-4 Q0 KILT_12650075-7 42 -0.077589 hybrid +142_2-4 Q0 KILT_4093361-1 43 -0.077884 hybrid +142_2-4 Q0 KILT_1839572-1 44 -0.081085 hybrid +142_2-4 Q0 KILT_9912418-1 45 -0.081583 hybrid +142_2-4 Q0 KILT_44717594-1 46 -0.083554 hybrid +142_2-4 Q0 KILT_12047969-1 47 -0.084152 hybrid +142_2-4 Q0 KILT_1727788-1 48 -0.086067 hybrid +142_2-4 Q0 KILT_58526100-2 49 -0.092926 hybrid +142_2-4 Q0 KILT_6690423-1 50 -0.094294 hybrid +142_2-4 Q0 MARCO_08_454689269-10 51 -0.097914 hybrid +142_2-4 Q0 KILT_466071-1 52 -0.099474 hybrid +142_2-4 Q0 KILT_15138390-1 53 -0.101994 hybrid +142_2-4 Q0 KILT_44091678-1 54 -0.102324 hybrid +142_2-4 Q0 MARCO_58_1509104985-3 55 -0.104762 hybrid +142_2-4 Q0 MARCO_47_293706177-9 56 -0.106422 hybrid +142_2-4 Q0 KILT_31089766-1 57 -0.107181 hybrid +142_2-4 Q0 KILT_18830585-7 58 -0.107656 hybrid +142_2-4 Q0 MARCO_47_1604104921-5 59 -0.108722 hybrid +142_2-4 Q0 MARCO_55_568585324-5 60 -0.110996 hybrid +142_2-4 Q0 KILT_47069367-1 61 -0.113094 hybrid +142_2-4 Q0 KILT_5959458-1 62 -0.119339 hybrid +142_2-4 Q0 KILT_25746627-1 63 -0.119747 hybrid +142_2-4 Q0 KILT_13969711-8 64 -0.124994 hybrid +142_2-4 Q0 KILT_1437724-12 65 -0.127148 hybrid +142_2-4 Q0 KILT_68259-7 66 -0.128206 hybrid +142_2-4 Q0 MARCO_47_1602505698-5 67 -0.128367 hybrid +142_2-4 Q0 KILT_13159974-1 68 -0.129631 hybrid +142_2-4 Q0 MARCO_47_1604104921-3 69 -0.132070 hybrid +142_2-4 Q0 MARCO_17_4192251160-21 70 -0.133364 hybrid +142_2-4 Q0 KILT_9912098-1 71 -0.135435 hybrid +142_2-4 Q0 KILT_6274865-2 72 -0.136864 hybrid +142_2-4 Q0 MARCO_17_1780397369-12 73 -0.141909 hybrid +142_2-4 Q0 KILT_27235520-3 74 -0.142208 hybrid +142_2-4 Q0 KILT_41582495-54 75 -0.143143 hybrid +142_2-4 Q0 KILT_15581922-4 76 -0.146423 hybrid +142_2-4 Q0 KILT_44713925-1 77 -0.146741 hybrid +142_2-4 Q0 MARCO_18_4362463788-25 78 -0.149351 hybrid +142_2-4 Q0 MARCO_10_448253860-1 79 -0.150832 hybrid +142_2-4 Q0 KILT_242379-5 80 -0.151879 hybrid +142_2-4 Q0 KILT_11905029-1 81 -0.152605 hybrid +142_2-4 Q0 KILT_43442689-1 82 -0.157376 hybrid +142_2-4 Q0 KILT_35953014-1 83 -0.157661 hybrid +142_2-4 Q0 KILT_8076950-1 84 -0.160148 hybrid +142_2-4 Q0 KILT_3021414-1 85 -0.160473 hybrid +142_2-4 Q0 MARCO_19_2045799633-23 86 -0.164355 hybrid +142_2-4 Q0 KILT_44507655-1 87 -0.165974 hybrid +142_2-4 Q0 KILT_3050373-1 88 -0.167369 hybrid +142_2-4 Q0 MARCO_58_1508113613-1 89 -0.168772 hybrid +142_2-4 Q0 KILT_21372106-1 90 -0.171790 hybrid +142_2-4 Q0 KILT_47921431-1 91 -0.171846 hybrid +142_2-4 Q0 MARCO_47_1604104921-7 92 -0.172070 hybrid +142_2-4 Q0 KILT_4566251-1 93 -0.172728 hybrid +142_2-4 Q0 MARCO_16_3046749093-14 94 -0.172844 hybrid +142_2-4 Q0 KILT_12685175-1 95 -0.174445 hybrid +142_2-4 Q0 MARCO_10_790353427-2 96 -0.174456 hybrid +142_2-4 Q0 KILT_9858014-1 97 -0.175290 hybrid +142_2-4 Q0 KILT_2527950-8 98 -0.176502 hybrid +142_2-4 Q0 KILT_11975238-6 99 -0.177354 hybrid +142_2-4 Q0 MARCO_47_1601362260-3 100 -0.179239 hybrid +142_3-1 Q0 MARCO_16_3046749093-39 1 0.500000 hybrid +142_3-1 Q0 MARCO_16_3046749093-45 2 0.445742 hybrid +142_3-1 Q0 MARCO_10_120187103-9 3 0.423618 hybrid +142_3-1 Q0 MARCO_16_3046749093-42 4 0.407607 hybrid +142_3-1 Q0 MARCO_16_3046749093-41 5 0.402939 hybrid +142_3-1 Q0 MARCO_16_3046749093-4 6 0.400582 hybrid +142_3-1 Q0 MARCO_30_1004054024-7 7 0.388637 hybrid +142_3-1 Q0 MARCO_16_3046749093-62 8 0.374311 hybrid +142_3-1 Q0 MARCO_05_848957007-14 9 0.354918 hybrid +142_3-1 Q0 MARCO_16_3046749093-43 10 0.353145 hybrid +142_3-1 Q0 MARCO_22_1186906798-3 11 0.316558 hybrid +142_3-1 Q0 MARCO_16_3046749093-50 12 0.307399 hybrid +142_3-1 Q0 MARCO_05_848986452-3 13 0.275289 hybrid +142_3-1 Q0 MARCO_16_3046749093-34 14 0.266904 hybrid +142_3-1 Q0 MARCO_10_120187103-8 15 0.245229 hybrid +142_3-1 Q0 MARCO_10_120187103-1 16 0.241171 hybrid +142_3-1 Q0 MARCO_16_3046749093-49 17 0.237976 hybrid +142_3-1 Q0 MARCO_05_848957007-2 18 0.228186 hybrid +142_3-1 Q0 MARCO_05_848957007-9 19 0.222927 hybrid +142_3-1 Q0 MARCO_10_790347853-1 20 0.215613 hybrid +142_3-1 Q0 MARCO_22_1186915282-2 21 0.214528 hybrid +142_3-1 Q0 KILT_2810466-9 22 0.214501 hybrid +142_3-1 Q0 MARCO_05_849004482-4 23 0.212250 hybrid +142_3-1 Q0 MARCO_11_1448564973-4 24 0.211091 hybrid +142_3-1 Q0 MARCO_16_3046749093-55 25 0.209914 hybrid +142_3-1 Q0 MARCO_16_3046749093-46 26 0.192646 hybrid +142_3-1 Q0 MARCO_47_1602505698-8 27 0.186324 hybrid +142_3-1 Q0 MARCO_47_1604104921-16 28 0.172840 hybrid +142_3-1 Q0 MARCO_16_3046944575-15 29 0.170013 hybrid +142_3-1 Q0 MARCO_16_3046749093-31 30 0.169123 hybrid +142_3-1 Q0 MARCO_16_3046749093-38 31 0.161924 hybrid +142_3-1 Q0 MARCO_22_1189428320-5 32 0.157590 hybrid +142_3-1 Q0 MARCO_54_676656745-1 33 0.145733 hybrid +142_3-1 Q0 MARCO_16_3046749093-51 34 0.142293 hybrid +142_3-1 Q0 MARCO_05_848957007-1 35 0.134173 hybrid +142_3-1 Q0 MARCO_10_120187103-6 36 0.133515 hybrid +142_3-1 Q0 MARCO_16_3046749093-29 37 0.126545 hybrid +142_3-1 Q0 MARCO_45_1248533362-1 38 0.120103 hybrid +142_3-1 Q0 MARCO_10_120187103-2 39 0.119905 hybrid +142_3-1 Q0 MARCO_16_3046749093-33 40 0.116372 hybrid +142_3-1 Q0 MARCO_05_848957007-12 41 0.110603 hybrid +142_3-1 Q0 MARCO_22_1186906798-5 42 0.109017 hybrid +142_3-1 Q0 MARCO_24_1139403731-4 43 0.103135 hybrid +142_3-1 Q0 MARCO_30_2012938093-10 44 0.096376 hybrid +142_3-1 Q0 MARCO_05_849015218-3 45 0.093692 hybrid +142_3-1 Q0 MARCO_16_3046749093-56 46 0.092962 hybrid +142_3-1 Q0 KILT_2810466-6 47 0.090991 hybrid +142_3-1 Q0 MARCO_35_131732716-2 48 0.086868 hybrid +142_3-1 Q0 MARCO_05_849015218-2 49 0.080989 hybrid +142_3-1 Q0 MARCO_22_1186906798-2 50 0.070548 hybrid +142_3-1 Q0 MARCO_05_848957007-4 51 0.068314 hybrid +142_3-1 Q0 MARCO_16_3046749093-54 52 0.067097 hybrid +142_3-1 Q0 MARCO_10_120187103-5 53 0.063523 hybrid +142_3-1 Q0 KILT_35894206-3 54 0.059898 hybrid +142_3-1 Q0 MARCO_50_1458626850-10 55 0.055175 hybrid +142_3-1 Q0 MARCO_19_2045799633-3 56 0.055124 hybrid +142_3-1 Q0 MARCO_05_848957007-5 57 0.054728 hybrid +142_3-1 Q0 MARCO_16_3046749093-40 58 0.053862 hybrid +142_3-1 Q0 MARCO_05_849015218-10 59 0.053351 hybrid +142_3-1 Q0 MARCO_11_1448564973-9 60 0.052256 hybrid +142_3-1 Q0 MARCO_05_848986452-4 61 0.047537 hybrid +142_3-1 Q0 MARCO_16_3046749093-15 62 0.043451 hybrid +142_3-1 Q0 MARCO_17_2510087016-7 63 0.040703 hybrid +142_3-1 Q0 MARCO_24_1139351957-10 64 0.039479 hybrid +142_3-1 Q0 MARCO_16_3046749093-114 65 0.038667 hybrid +142_3-1 Q0 MARCO_16_3046944575-17 66 0.037166 hybrid +142_3-1 Q0 MARCO_05_849036905-4 67 0.035571 hybrid +142_3-1 Q0 MARCO_05_849004482-5 68 0.032634 hybrid +142_3-1 Q0 MARCO_27_1334580338-2 69 0.032553 hybrid +142_3-1 Q0 KILT_23378955-9 70 0.031298 hybrid +142_3-1 Q0 MARCO_05_848986452-1 71 0.030176 hybrid +142_3-1 Q0 MARCO_16_3046749093-63 72 0.023032 hybrid +142_3-1 Q0 MARCO_22_1186906798-1 73 0.022684 hybrid +142_3-1 Q0 KILT_44501940-2 74 0.017153 hybrid +142_3-1 Q0 MARCO_05_849036905-3 75 0.014953 hybrid +142_3-1 Q0 MARCO_08_1480326385-15 76 0.014414 hybrid +142_3-1 Q0 MARCO_16_3046749093-47 77 0.013893 hybrid +142_3-1 Q0 KILT_592815-8 78 0.011451 hybrid +142_3-1 Q0 MARCO_03_1387185114-1 79 0.009576 hybrid +142_3-1 Q0 MARCO_05_849036905-5 80 0.008232 hybrid +142_3-1 Q0 MARCO_05_848975837-1 81 0.005320 hybrid +142_3-1 Q0 KILT_28820502-7 82 0.004931 hybrid +142_3-1 Q0 MARCO_16_3046749093-66 83 -0.001101 hybrid +142_3-1 Q0 MARCO_12_1731808931-3 84 -0.001378 hybrid +142_3-1 Q0 MARCO_24_1126171266-11 85 -0.003369 hybrid +142_3-1 Q0 MARCO_22_1186915282-3 86 -0.003850 hybrid +142_3-1 Q0 MARCO_39_620476129-12 87 -0.005238 hybrid +142_3-1 Q0 MARCO_16_3046749093-28 88 -0.006373 hybrid +142_3-1 Q0 KILT_1140859-18 89 -0.009773 hybrid +142_3-1 Q0 MARCO_36_1008692847-9 90 -0.011209 hybrid +142_3-1 Q0 MARCO_55_248583746-11 91 -0.012597 hybrid +142_3-1 Q0 MARCO_24_82231277-2 92 -0.013149 hybrid +142_3-1 Q0 MARCO_16_3046749093-127 93 -0.013425 hybrid +142_3-1 Q0 MARCO_18_3127967367-2 94 -0.013494 hybrid +142_3-1 Q0 MARCO_45_1322803117-11 95 -0.019400 hybrid +142_3-1 Q0 MARCO_05_848957007-6 96 -0.020829 hybrid +142_3-1 Q0 MARCO_55_251439026-5 97 -0.022087 hybrid +142_3-1 Q0 MARCO_10_120187103-10 98 -0.025091 hybrid +142_3-1 Q0 MARCO_22_1186915282-6 99 -0.026810 hybrid +142_3-1 Q0 MARCO_05_848986452-5 100 -0.028774 hybrid +142_3-3 Q0 MARCO_05_848986452-3 1 0.499999 hybrid +142_3-3 Q0 MARCO_05_849015218-3 2 0.482330 hybrid +142_3-3 Q0 MARCO_05_849004482-2 3 0.294776 hybrid +142_3-3 Q0 MARCO_05_849036905-3 4 0.261258 hybrid +142_3-3 Q0 MARCO_05_849004482-4 5 0.253626 hybrid +142_3-3 Q0 MARCO_05_849015218-4 6 0.224638 hybrid +142_3-3 Q0 MARCO_05_849004482-3 7 0.153914 hybrid +142_3-3 Q0 MARCO_05_849004482-1 8 0.148894 hybrid +142_3-3 Q0 MARCO_04_181543666-3 9 0.123042 hybrid +142_3-3 Q0 MARCO_05_849036905-5 10 0.108661 hybrid +142_3-3 Q0 MARCO_04_181543666-2 11 0.103696 hybrid +142_3-3 Q0 MARCO_22_1186906798-5 12 0.101175 hybrid +142_3-3 Q0 MARCO_05_849015218-10 13 0.100149 hybrid +142_3-3 Q0 MARCO_05_849036905-4 14 0.097354 hybrid +142_3-3 Q0 MARCO_05_849004482-7 15 0.095932 hybrid +142_3-3 Q0 MARCO_05_849004482-6 16 0.092187 hybrid +142_3-3 Q0 MARCO_11_17181996-4 17 0.090476 hybrid +142_3-3 Q0 MARCO_04_181543666-1 18 0.075374 hybrid +142_3-3 Q0 MARCO_05_848957007-5 19 0.069876 hybrid +142_3-3 Q0 MARCO_05_849029985-1 20 0.064805 hybrid +142_3-3 Q0 KILT_21355134-3 21 0.058857 hybrid +142_3-3 Q0 MARCO_05_848957007-6 22 0.054745 hybrid +142_3-3 Q0 MARCO_05_848986452-1 23 0.045113 hybrid +142_3-3 Q0 MARCO_11_17181996-2 24 0.030663 hybrid +142_3-3 Q0 KILT_37504643-2 25 0.025260 hybrid +142_3-3 Q0 KILT_35739075-2 26 0.024489 hybrid +142_3-3 Q0 MARCO_05_849015218-7 27 0.023410 hybrid +142_3-3 Q0 KILT_35739075-1 28 0.019055 hybrid +142_3-3 Q0 MARCO_05_848975837-6 29 0.005753 hybrid +142_3-3 Q0 MARCO_05_849015218-8 30 -0.004535 hybrid +142_3-3 Q0 MARCO_05_849015218-6 31 -0.006090 hybrid +142_3-3 Q0 MARCO_05_849029985-2 32 -0.007359 hybrid +142_3-3 Q0 MARCO_11_17181996-1 33 -0.010440 hybrid +142_3-3 Q0 KILT_21355134-1 34 -0.012276 hybrid +142_3-3 Q0 MARCO_05_849004482-9 35 -0.012278 hybrid +142_3-3 Q0 KILT_37503166-2 36 -0.012403 hybrid +142_3-3 Q0 MARCO_05_849015218-2 37 -0.013525 hybrid +142_3-3 Q0 KILT_508795-7 38 -0.015337 hybrid +142_3-3 Q0 MARCO_10_120187103-2 39 -0.021208 hybrid +142_3-3 Q0 MARCO_05_849015218-9 40 -0.021648 hybrid +142_3-3 Q0 KILT_2810466-9 41 -0.035044 hybrid +142_3-3 Q0 MARCO_22_1186915282-2 42 -0.035786 hybrid +142_3-3 Q0 MARCO_45_1264854305-4 43 -0.036284 hybrid +142_3-3 Q0 MARCO_05_849015218-5 44 -0.043450 hybrid +142_3-3 Q0 MARCO_05_849015218-1 45 -0.044053 hybrid +142_3-3 Q0 MARCO_45_1265329830-4 46 -0.045505 hybrid +142_3-3 Q0 MARCO_05_849004482-8 47 -0.052789 hybrid +142_3-3 Q0 MARCO_05_849004482-5 48 -0.055260 hybrid +142_3-3 Q0 MARCO_05_848986452-4 49 -0.055341 hybrid +142_3-3 Q0 MARCO_36_816068485-1 50 -0.055721 hybrid +142_3-3 Q0 KILT_34415953-2 51 -0.059946 hybrid +142_3-3 Q0 KILT_35739075-3 52 -0.064209 hybrid +142_3-3 Q0 MARCO_11_17181996-3 53 -0.067987 hybrid +142_3-3 Q0 MARCO_05_848975837-2 54 -0.075240 hybrid +142_3-3 Q0 MARCO_45_1264854305-3 55 -0.076804 hybrid +142_3-3 Q0 MARCO_10_120187103-8 56 -0.084980 hybrid +142_3-3 Q0 MARCO_05_849036905-8 57 -0.088369 hybrid +142_3-3 Q0 KILT_35739075-4 58 -0.090008 hybrid +142_3-3 Q0 MARCO_50_1670843783-22 59 -0.092132 hybrid +142_3-3 Q0 MARCO_05_848986452-5 60 -0.094319 hybrid +142_3-3 Q0 MARCO_45_1265329830-1 61 -0.095453 hybrid +142_3-3 Q0 MARCO_05_848986452-6 62 -0.097837 hybrid +142_3-3 Q0 MARCO_05_848927550-2 63 -0.099414 hybrid +142_3-3 Q0 MARCO_05_848957007-7 64 -0.103021 hybrid +142_3-3 Q0 KILT_433171-5 65 -0.112860 hybrid +142_3-3 Q0 MARCO_10_790347853-4 66 -0.119635 hybrid +142_3-3 Q0 KILT_14914953-1 67 -0.121158 hybrid +142_3-3 Q0 MARCO_22_1189547051-4 68 -0.124129 hybrid +142_3-3 Q0 MARCO_05_849036905-2 69 -0.127875 hybrid +142_3-3 Q0 MARCO_30_1004054024-7 70 -0.130293 hybrid +142_3-3 Q0 MARCO_05_849036905-1 71 -0.133415 hybrid +142_3-3 Q0 MARCO_05_848986452-7 72 -0.141102 hybrid +142_3-3 Q0 MARCO_05_849036905-10 73 -0.147233 hybrid +142_3-3 Q0 KILT_613089-1 74 -0.150074 hybrid +142_3-3 Q0 MARCO_59_947834789-12 75 -0.152900 hybrid +142_3-3 Q0 MARCO_34_1699093267-3 76 -0.156123 hybrid +142_3-3 Q0 MARCO_26_164617814-31 77 -0.159614 hybrid +142_3-3 Q0 MARCO_05_849036905-12 78 -0.164041 hybrid +142_3-3 Q0 MARCO_26_164617814-21 79 -0.168259 hybrid +142_3-3 Q0 KILT_37503166-4 80 -0.172522 hybrid +142_3-3 Q0 MARCO_05_849346313-4 81 -0.175730 hybrid +142_3-3 Q0 MARCO_10_120187103-9 82 -0.177737 hybrid +142_3-3 Q0 KILT_34415953-1 83 -0.185999 hybrid +142_3-3 Q0 KILT_35203994-1 84 -0.187460 hybrid +142_3-3 Q0 MARCO_05_848483518-4 85 -0.188984 hybrid +142_3-3 Q0 MARCO_30_2012938093-7 86 -0.193139 hybrid +142_3-3 Q0 MARCO_05_849029985-3 87 -0.197073 hybrid +142_3-3 Q0 MARCO_05_849015218-11 88 -0.197821 hybrid +142_3-3 Q0 MARCO_16_4150258076-20 89 -0.199659 hybrid +142_3-3 Q0 KILT_10086955-1 90 -0.200411 hybrid +142_3-3 Q0 MARCO_05_848957007-8 91 -0.201241 hybrid +142_3-3 Q0 MARCO_41_1124532524-26 92 -0.204802 hybrid +142_3-3 Q0 MARCO_19_561609736-2 93 -0.206773 hybrid +142_3-3 Q0 MARCO_39_600748453-20 94 -0.208578 hybrid +142_3-3 Q0 KILT_9661181-1 95 -0.210373 hybrid +142_3-3 Q0 MARCO_10_1419858694-18 96 -0.211091 hybrid +142_3-3 Q0 MARCO_51_1241521275-103 97 -0.211476 hybrid +142_3-3 Q0 KILT_37503166-1 98 -0.211827 hybrid +142_3-3 Q0 MARCO_45_1264854305-2 99 -0.212942 hybrid +142_3-3 Q0 MARCO_16_3046749093-41 100 -0.213829 hybrid +142_3-5 Q0 MARCO_30_2013006327-1 1 0.500002 hybrid +142_3-5 Q0 MARCO_06_1240614560-40 2 0.264574 hybrid +142_3-5 Q0 MARCO_58_1505463998-2 3 0.246257 hybrid +142_3-5 Q0 MARCO_58_1506642595-1 4 0.217799 hybrid +142_3-5 Q0 MARCO_30_2013006327-6 5 0.216449 hybrid +142_3-5 Q0 MARCO_31_900217158-4 6 0.193591 hybrid +142_3-5 Q0 MARCO_28_986492477-1 7 0.184538 hybrid +142_3-5 Q0 MARCO_04_217203515-3 8 0.169810 hybrid +142_3-5 Q0 KILT_34344673-2 9 0.167707 hybrid +142_3-5 Q0 MARCO_17_2524961420-1 10 0.149277 hybrid +142_3-5 Q0 MARCO_17_357433963-7 11 0.135949 hybrid +142_3-5 Q0 MARCO_06_1240614560-37 12 0.107723 hybrid +142_3-5 Q0 MARCO_39_610593945-2 13 0.097876 hybrid +142_3-5 Q0 MARCO_45_201834591-3 14 0.093206 hybrid +142_3-5 Q0 KILT_26507946-2 15 0.088070 hybrid +142_3-5 Q0 MARCO_30_2013006327-3 16 0.073515 hybrid +142_3-5 Q0 MARCO_19_2045907716-12 17 0.065270 hybrid +142_3-5 Q0 MARCO_18_2404733400-7 18 0.059298 hybrid +142_3-5 Q0 KILT_44973915-20 19 0.055211 hybrid +142_3-5 Q0 MARCO_16_3046944575-20 20 0.044198 hybrid +142_3-5 Q0 MARCO_17_2524961420-3 21 0.036969 hybrid +142_3-5 Q0 KILT_2527950-1 22 0.021314 hybrid +142_3-5 Q0 MARCO_04_217203515-4 23 0.021211 hybrid +142_3-5 Q0 MARCO_16_3046749093-37 24 0.010539 hybrid +142_3-5 Q0 MARCO_06_1240614560-33 25 0.007666 hybrid +142_3-5 Q0 MARCO_58_1505463998-1 26 0.006289 hybrid +142_3-5 Q0 MARCO_47_1601362260-9 27 0.005750 hybrid +142_3-5 Q0 MARCO_21_1396071932-2 28 0.005215 hybrid +142_3-5 Q0 MARCO_05_1348759273-2 29 -0.002754 hybrid +142_3-5 Q0 MARCO_00_1103228103-3 30 -0.008078 hybrid +142_3-5 Q0 MARCO_50_1441723234-18 31 -0.009506 hybrid +142_3-5 Q0 KILT_37217735-9 32 -0.013903 hybrid +142_3-5 Q0 MARCO_05_848975837-1 33 -0.016422 hybrid +142_3-5 Q0 MARCO_05_1348759273-1 34 -0.017864 hybrid +142_3-5 Q0 MARCO_11_1510388642-2 35 -0.022196 hybrid +142_3-5 Q0 MARCO_30_2013006327-4 36 -0.023505 hybrid +142_3-5 Q0 KILT_34879285-1 37 -0.024279 hybrid +142_3-5 Q0 MARCO_21_1396056938-3 38 -0.032633 hybrid +142_3-5 Q0 MARCO_39_670955540-31 39 -0.037013 hybrid +142_3-5 Q0 MARCO_21_1394671480-5 40 -0.038476 hybrid +142_3-5 Q0 MARCO_31_900217158-2 41 -0.039474 hybrid +142_3-5 Q0 KILT_27644194-19 42 -0.041335 hybrid +142_3-5 Q0 KILT_59613337-5 43 -0.043490 hybrid +142_3-5 Q0 MARCO_31_900217158-3 44 -0.049240 hybrid +142_3-5 Q0 MARCO_04_217203515-5 45 -0.052676 hybrid +142_3-5 Q0 MARCO_38_608944854-1 46 -0.054097 hybrid +142_3-5 Q0 MARCO_39_617979123-62 47 -0.071095 hybrid +142_3-5 Q0 MARCO_47_1601362260-6 48 -0.071293 hybrid +142_3-5 Q0 KILT_23461817-3 49 -0.077214 hybrid +142_3-5 Q0 MARCO_39_617979123-64 50 -0.079126 hybrid +142_3-5 Q0 MARCO_39_610806867-15 51 -0.083219 hybrid +142_3-5 Q0 MARCO_06_1240614560-32 52 -0.084886 hybrid +142_3-5 Q0 MARCO_21_1396071932-1 53 -0.085735 hybrid +142_3-5 Q0 KILT_23461817-2 54 -0.087593 hybrid +142_3-5 Q0 KILT_13920022-1 55 -0.090033 hybrid +142_3-5 Q0 MARCO_21_1396056938-2 56 -0.101983 hybrid +142_3-5 Q0 MARCO_06_1240614560-42 57 -0.102222 hybrid +142_3-5 Q0 KILT_25513466-4 58 -0.102392 hybrid +142_3-5 Q0 MARCO_28_415993444-1 59 -0.102733 hybrid +142_3-5 Q0 MARCO_58_1506642595-2 60 -0.113821 hybrid +142_3-5 Q0 MARCO_16_3046749093-13 61 -0.114479 hybrid +142_3-5 Q0 KILT_2810466-9 62 -0.116408 hybrid +142_3-5 Q0 KILT_13920022-16 63 -0.124071 hybrid +142_3-5 Q0 MARCO_06_1149196799-140 64 -0.125693 hybrid +142_3-5 Q0 MARCO_31_1651583997-5 65 -0.127445 hybrid +142_3-5 Q0 MARCO_19_573053305-51 66 -0.129770 hybrid +142_3-5 Q0 MARCO_30_1004488553-11 67 -0.132599 hybrid +142_3-5 Q0 MARCO_30_2013006327-2 68 -0.134879 hybrid +142_3-5 Q0 MARCO_29_789818223-2 69 -0.136969 hybrid +142_3-5 Q0 MARCO_38_609183005-1 70 -0.140415 hybrid +142_3-5 Q0 MARCO_16_3046749093-14 71 -0.140936 hybrid +142_3-5 Q0 MARCO_54_676656745-1 72 -0.143162 hybrid +142_3-5 Q0 MARCO_43_782625791-2 73 -0.144720 hybrid +142_3-5 Q0 MARCO_21_1392937063-7 74 -0.145977 hybrid +142_3-5 Q0 KILT_2014815-2 75 -0.146922 hybrid +142_3-5 Q0 MARCO_18_2404733400-4 76 -0.147695 hybrid +142_3-5 Q0 KILT_412827-31 77 -0.148919 hybrid +142_3-5 Q0 MARCO_18_1299865625-4 78 -0.152852 hybrid +142_3-5 Q0 MARCO_06_1240614560-48 79 -0.155596 hybrid +142_3-5 Q0 MARCO_17_2524961420-2 80 -0.156609 hybrid +142_3-5 Q0 MARCO_04_217203515-6 81 -0.157744 hybrid +142_3-5 Q0 MARCO_16_3046749093-49 82 -0.158078 hybrid +142_3-5 Q0 KILT_13920022-8 83 -0.166197 hybrid +142_3-5 Q0 MARCO_19_2045799633-18 84 -0.170464 hybrid +142_3-5 Q0 MARCO_06_1149196799-139 85 -0.170788 hybrid +142_3-5 Q0 MARCO_18_3127967367-2 86 -0.170839 hybrid +142_3-5 Q0 MARCO_22_1186906798-2 87 -0.171119 hybrid +142_3-5 Q0 MARCO_16_3046749093-45 88 -0.173225 hybrid +142_3-5 Q0 MARCO_56_1050316601-133 89 -0.175748 hybrid +142_3-5 Q0 MARCO_51_694777636-29 90 -0.176327 hybrid +142_3-5 Q0 MARCO_47_1601362260-8 91 -0.178127 hybrid +142_3-5 Q0 KILT_13920022-14 92 -0.179146 hybrid +142_3-5 Q0 KILT_851037-4 93 -0.179364 hybrid +142_3-5 Q0 MARCO_16_443631165-1 94 -0.181532 hybrid +142_3-5 Q0 MARCO_19_2045799633-5 95 -0.182871 hybrid +142_3-5 Q0 MARCO_06_1240614560-23 96 -0.183908 hybrid +142_3-5 Q0 MARCO_05_849029985-4 97 -0.184201 hybrid +142_3-5 Q0 MARCO_06_1240614560-34 98 -0.184681 hybrid +142_3-5 Q0 MARCO_39_610683366-23 99 -0.186883 hybrid +142_3-5 Q0 KILT_15961583-2 100 -0.187078 hybrid +142_4-1 Q0 MARCO_14_52176501-3 1 0.500000 hybrid +142_4-1 Q0 MARCO_30_1004054024-7 2 0.492803 hybrid +142_4-1 Q0 MARCO_10_120187103-8 3 0.380444 hybrid +142_4-1 Q0 MARCO_22_1186906798-5 4 0.369488 hybrid +142_4-1 Q0 MARCO_17_674008977-6 5 0.340727 hybrid +142_4-1 Q0 MARCO_16_3046749093-65 6 0.295726 hybrid +142_4-1 Q0 KILT_8773374-3 7 0.291563 hybrid +142_4-1 Q0 KILT_1140859-18 8 0.243992 hybrid +142_4-1 Q0 MARCO_31_1646897069-2 9 0.224094 hybrid +142_4-1 Q0 MARCO_05_812071402-4 10 0.219122 hybrid +142_4-1 Q0 MARCO_16_3046749093-46 11 0.202672 hybrid +142_4-1 Q0 MARCO_11_1448564973-4 12 0.200535 hybrid +142_4-1 Q0 MARCO_14_52176501-2 13 0.191140 hybrid +142_4-1 Q0 MARCO_11_1448564973-9 14 0.168401 hybrid +142_4-1 Q0 MARCO_17_674008977-4 15 0.167571 hybrid +142_4-1 Q0 KILT_8773374-4 16 0.158179 hybrid +142_4-1 Q0 KILT_34415953-3 17 0.158027 hybrid +142_4-1 Q0 MARCO_16_3046749093-45 18 0.145160 hybrid +142_4-1 Q0 KILT_18618358-2 19 0.142488 hybrid +142_4-1 Q0 MARCO_10_120187103-9 20 0.129323 hybrid +142_4-1 Q0 KILT_50665371-9 21 0.120023 hybrid +142_4-1 Q0 MARCO_16_3046749093-34 22 0.116169 hybrid +142_4-1 Q0 KILT_25515537-1 23 0.097385 hybrid +142_4-1 Q0 KILT_29192048-1 24 0.081548 hybrid +142_4-1 Q0 MARCO_16_3046749093-42 25 0.081030 hybrid +142_4-1 Q0 KILT_9390071-1 26 0.080353 hybrid +142_4-1 Q0 KILT_47499851-1 27 0.076411 hybrid +142_4-1 Q0 MARCO_55_1728784830-2 28 0.073996 hybrid +142_4-1 Q0 KILT_6001027-6 29 0.072939 hybrid +142_4-1 Q0 MARCO_22_1189445202-25 30 0.072932 hybrid +142_4-1 Q0 KILT_7717615-1 31 0.071920 hybrid +142_4-1 Q0 KILT_48876466-1 32 0.070961 hybrid +142_4-1 Q0 KILT_58941729-1 33 0.058989 hybrid +142_4-1 Q0 KILT_1761434-13 34 0.049966 hybrid +142_4-1 Q0 MARCO_36_1008828234-11 35 0.046623 hybrid +142_4-1 Q0 MARCO_16_3046749093-55 36 0.045218 hybrid +142_4-1 Q0 MARCO_16_3046749093-50 37 0.043426 hybrid +142_4-1 Q0 KILT_1162854-20 38 0.042248 hybrid +142_4-1 Q0 MARCO_24_1126171266-11 39 0.039839 hybrid +142_4-1 Q0 KILT_7478387-1 40 0.036700 hybrid +142_4-1 Q0 MARCO_16_3046749093-39 41 0.032273 hybrid +142_4-1 Q0 KILT_7478131-1 42 0.031261 hybrid +142_4-1 Q0 MARCO_36_1008692847-9 43 0.023024 hybrid +142_4-1 Q0 KILT_39905364-2 44 0.021141 hybrid +142_4-1 Q0 MARCO_16_1109184094-5 45 0.015031 hybrid +142_4-1 Q0 KILT_44175543-3 46 0.012602 hybrid +142_4-1 Q0 MARCO_55_1705436495-5 47 0.011583 hybrid +142_4-1 Q0 MARCO_05_848957007-14 48 0.011177 hybrid +142_4-1 Q0 MARCO_19_2045799633-16 49 0.007526 hybrid +142_4-1 Q0 MARCO_05_849036905-4 50 0.003224 hybrid +142_4-1 Q0 MARCO_16_3046749093-62 51 0.003136 hybrid +142_4-1 Q0 KILT_5302486-3 52 -0.000274 hybrid +142_4-1 Q0 KILT_6293388-1 53 -0.001013 hybrid +142_4-1 Q0 KILT_37504643-2 54 -0.002405 hybrid +142_4-1 Q0 MARCO_16_3046749093-54 55 -0.004186 hybrid +142_4-1 Q0 MARCO_35_131732716-2 56 -0.007810 hybrid +142_4-1 Q0 MARCO_16_3046749093-41 57 -0.008037 hybrid +142_4-1 Q0 KILT_11904555-3 58 -0.012403 hybrid +142_4-1 Q0 KILT_23378955-9 59 -0.013768 hybrid +142_4-1 Q0 MARCO_39_620476129-12 60 -0.015945 hybrid +142_4-1 Q0 MARCO_22_1186906798-2 61 -0.018736 hybrid +142_4-1 Q0 MARCO_24_1719466074-10 62 -0.020318 hybrid +142_4-1 Q0 MARCO_16_3046749093-83 63 -0.023291 hybrid +142_4-1 Q0 MARCO_16_3046749093-4 64 -0.024182 hybrid +142_4-1 Q0 KILT_59974594-1 65 -0.025364 hybrid +142_4-1 Q0 MARCO_51_809486097-53 66 -0.027427 hybrid +142_4-1 Q0 MARCO_16_3046749093-66 67 -0.029056 hybrid +142_4-1 Q0 KILT_12996819-1 68 -0.031105 hybrid +142_4-1 Q0 MARCO_55_248583746-11 69 -0.034312 hybrid +142_4-1 Q0 KILT_43532125-2 70 -0.034373 hybrid +142_4-1 Q0 MARCO_31_1648686016-11 71 -0.036426 hybrid +142_4-1 Q0 MARCO_05_849036905-6 72 -0.042969 hybrid +142_4-1 Q0 MARCO_10_120187103-2 73 -0.044723 hybrid +142_4-1 Q0 MARCO_16_3046749093-84 74 -0.047456 hybrid +142_4-1 Q0 MARCO_12_1981260820-6 75 -0.048063 hybrid +142_4-1 Q0 KILT_5245019-1 76 -0.049509 hybrid +142_4-1 Q0 KILT_16076744-2 77 -0.051331 hybrid +142_4-1 Q0 MARCO_16_3046749093-51 78 -0.052113 hybrid +142_4-1 Q0 MARCO_05_849036905-3 79 -0.053634 hybrid +142_4-1 Q0 KILT_8985102-1 80 -0.056445 hybrid +142_4-1 Q0 MARCO_16_3046749093-43 81 -0.058328 hybrid +142_4-1 Q0 MARCO_59_136156672-3 82 -0.059575 hybrid +142_4-1 Q0 MARCO_16_3046749093-44 83 -0.060394 hybrid +142_4-1 Q0 MARCO_31_1647412063-3 84 -0.062884 hybrid +142_4-1 Q0 MARCO_27_912003150-1 85 -0.070186 hybrid +142_4-1 Q0 MARCO_05_849036905-9 86 -0.070389 hybrid +142_4-1 Q0 KILT_59360592-1 87 -0.070606 hybrid +142_4-1 Q0 KILT_3541854-4 88 -0.070924 hybrid +142_4-1 Q0 KILT_3711078-1 89 -0.071821 hybrid +142_4-1 Q0 MARCO_11_1448564973-11 90 -0.072404 hybrid +142_4-1 Q0 MARCO_16_3046749093-15 91 -0.074920 hybrid +142_4-1 Q0 MARCO_16_3046749093-29 92 -0.075608 hybrid +142_4-1 Q0 MARCO_16_3046944575-17 93 -0.077081 hybrid +142_4-1 Q0 MARCO_30_1782765125-6 94 -0.080194 hybrid +142_4-1 Q0 MARCO_05_849004482-4 95 -0.080942 hybrid +142_4-1 Q0 MARCO_16_2857881845-3 96 -0.082138 hybrid +142_4-1 Q0 KILT_22073421-1 97 -0.082500 hybrid +142_4-1 Q0 KILT_1892350-2 98 -0.082697 hybrid +142_4-1 Q0 MARCO_39_421963608-3 99 -0.083628 hybrid +142_4-1 Q0 MARCO_16_3046749093-82 100 -0.085193 hybrid +142_5-1 Q0 MARCO_53_812385688-10 1 0.499998 hybrid +142_5-1 Q0 MARCO_30_2013002157-2 2 0.465876 hybrid +142_5-1 Q0 MARCO_36_1003753285-4 3 0.334085 hybrid +142_5-1 Q0 MARCO_50_1936673617-24 4 0.262710 hybrid +142_5-1 Q0 MARCO_12_275444885-4 5 0.197834 hybrid +142_5-1 Q0 MARCO_02_928843665-6 6 0.195370 hybrid +142_5-1 Q0 MARCO_13_1563872418-5 7 0.193765 hybrid +142_5-1 Q0 MARCO_22_1186906798-4 8 0.187460 hybrid +142_5-1 Q0 MARCO_39_670955540-32 9 0.160182 hybrid +142_5-1 Q0 MARCO_35_131726592-1 10 0.151203 hybrid +142_5-1 Q0 MARCO_23_61073379-44 11 0.144573 hybrid +142_5-1 Q0 MARCO_10_719894755-1 12 0.139127 hybrid +142_5-1 Q0 MARCO_32_1026784471-1 13 0.123193 hybrid +142_5-1 Q0 MARCO_46_1315539867-8 14 0.083156 hybrid +142_5-1 Q0 MARCO_55_74023026-3 15 0.059040 hybrid +142_5-1 Q0 MARCO_51_694777636-51 16 0.048306 hybrid +142_5-1 Q0 MARCO_12_275444885-3 17 0.046452 hybrid +142_5-1 Q0 MARCO_36_1005507397-5 18 0.039945 hybrid +142_5-1 Q0 MARCO_30_2013002157-1 19 0.028417 hybrid +142_5-1 Q0 MARCO_00_248867572-4 20 0.028058 hybrid +142_5-1 Q0 MARCO_00_249798197-8 21 0.023029 hybrid +142_5-1 Q0 MARCO_45_256347161-1 22 0.020670 hybrid +142_5-1 Q0 MARCO_12_275444885-6 23 0.017280 hybrid +142_5-1 Q0 MARCO_35_131726592-2 24 0.016899 hybrid +142_5-1 Q0 MARCO_48_1187027653-7 25 0.011076 hybrid +142_5-1 Q0 MARCO_36_1003753285-1 26 0.009410 hybrid +142_5-1 Q0 MARCO_22_1186906798-3 27 0.003218 hybrid +142_5-1 Q0 MARCO_10_444484315-3 28 -0.002447 hybrid +142_5-1 Q0 MARCO_10_790344909-1 29 -0.004209 hybrid +142_5-1 Q0 MARCO_08_738461454-4 30 -0.005012 hybrid +142_5-1 Q0 MARCO_12_278047340-2 31 -0.006011 hybrid +142_5-1 Q0 MARCO_10_790344909-2 32 -0.007612 hybrid +142_5-1 Q0 MARCO_28_984794031-10 33 -0.020911 hybrid +142_5-1 Q0 MARCO_43_40663531-3 34 -0.031820 hybrid +142_5-1 Q0 MARCO_51_694777636-52 35 -0.040800 hybrid +142_5-1 Q0 MARCO_09_436931274-20 36 -0.049648 hybrid +142_5-1 Q0 MARCO_12_278047340-3 37 -0.060421 hybrid +142_5-1 Q0 MARCO_53_737955432-1 38 -0.075154 hybrid +142_5-1 Q0 MARCO_23_489708504-2 39 -0.078311 hybrid +142_5-1 Q0 MARCO_28_986308993-4 40 -0.078982 hybrid +142_5-1 Q0 MARCO_53_205486420-11 41 -0.086063 hybrid +142_5-1 Q0 MARCO_09_437217577-2 42 -0.089163 hybrid +142_5-1 Q0 MARCO_50_516427711-18 43 -0.090308 hybrid +142_5-1 Q0 MARCO_30_2013034285-2 44 -0.095267 hybrid +142_5-1 Q0 MARCO_32_1067299127-4 45 -0.098411 hybrid +142_5-1 Q0 MARCO_50_1517177834-14 46 -0.100384 hybrid +142_5-1 Q0 MARCO_09_435587056-11 47 -0.100423 hybrid +142_5-1 Q0 MARCO_50_1936673617-17 48 -0.101958 hybrid +142_5-1 Q0 MARCO_43_40663531-1 49 -0.104795 hybrid +142_5-1 Q0 MARCO_05_516432914-5 50 -0.105479 hybrid +142_5-1 Q0 MARCO_15_620756514-8 51 -0.108662 hybrid +142_5-1 Q0 MARCO_55_249830363-9 52 -0.113362 hybrid +142_5-1 Q0 MARCO_32_1019318086-5 53 -0.113998 hybrid +142_5-1 Q0 MARCO_10_81227006-4 54 -0.114410 hybrid +142_5-1 Q0 MARCO_46_1315539867-7 55 -0.115055 hybrid +142_5-1 Q0 MARCO_06_477944537-1 56 -0.116502 hybrid +142_5-1 Q0 MARCO_32_1025245460-11 57 -0.125828 hybrid +142_5-1 Q0 MARCO_09_435639644-1 58 -0.126188 hybrid +142_5-1 Q0 MARCO_19_2045799633-5 59 -0.126328 hybrid +142_5-1 Q0 MARCO_40_748535745-6 60 -0.126692 hybrid +142_5-1 Q0 MARCO_06_1210631437-164 61 -0.128753 hybrid +142_5-1 Q0 MARCO_09_435573983-1 62 -0.129086 hybrid +142_5-1 Q0 MARCO_32_1069019226-4 63 -0.131774 hybrid +142_5-1 Q0 MARCO_06_484716332-1 64 -0.133918 hybrid +142_5-1 Q0 MARCO_28_986261704-8 65 -0.136693 hybrid +142_5-1 Q0 MARCO_32_1020747089-5 66 -0.137641 hybrid +142_5-1 Q0 MARCO_19_2045799633-26 67 -0.139482 hybrid +142_5-1 Q0 MARCO_32_1025763757-4 68 -0.141354 hybrid +142_5-1 Q0 MARCO_20_232780208-3 69 -0.144818 hybrid +142_5-1 Q0 MARCO_35_131726592-3 70 -0.146283 hybrid +142_5-1 Q0 MARCO_10_790344909-3 71 -0.155061 hybrid +142_5-1 Q0 MARCO_10_704036313-7 72 -0.158047 hybrid +142_5-1 Q0 KILT_27838123-1 73 -0.158284 hybrid +142_5-1 Q0 MARCO_11_1448564973-9 74 -0.158398 hybrid +142_5-1 Q0 MARCO_09_436448609-7 75 -0.160989 hybrid +142_5-1 Q0 MARCO_22_1186888239-2 76 -0.161125 hybrid +142_5-1 Q0 MARCO_31_1649764182-12 77 -0.170877 hybrid +142_5-1 Q0 MARCO_39_620476129-12 78 -0.172267 hybrid +142_5-1 Q0 MARCO_57_1430039617-19 79 -0.172718 hybrid +142_5-1 Q0 MARCO_12_275444885-2 80 -0.175652 hybrid +142_5-1 Q0 MARCO_52_362567787-10 81 -0.179107 hybrid +142_5-1 Q0 MARCO_49_954539890-3 82 -0.180291 hybrid +142_5-1 Q0 MARCO_07_1010043246-2 83 -0.183136 hybrid +142_5-1 Q0 MARCO_08_163077814-6 84 -0.183895 hybrid +142_5-1 Q0 MARCO_32_596914657-2 85 -0.185259 hybrid +142_5-1 Q0 MARCO_10_719894755-4 86 -0.185969 hybrid +142_5-1 Q0 MARCO_23_489532061-7 87 -0.187319 hybrid +142_5-1 Q0 MARCO_32_1077049339-4 88 -0.192748 hybrid +142_5-1 Q0 MARCO_12_459417305-2 89 -0.193918 hybrid +142_5-1 Q0 MARCO_10_653917159-3 90 -0.194287 hybrid +142_5-1 Q0 MARCO_30_2013034285-3 91 -0.196768 hybrid +142_5-1 Q0 MARCO_50_2488130410-72 92 -0.197654 hybrid +142_5-1 Q0 MARCO_52_364101701-2 93 -0.198189 hybrid +142_5-1 Q0 MARCO_50_1971402562-30 94 -0.199728 hybrid +142_5-1 Q0 MARCO_24_1439142311-2 95 -0.203701 hybrid +142_5-1 Q0 MARCO_53_1141119569-2 96 -0.204512 hybrid +142_5-1 Q0 MARCO_24_1439142311-6 97 -0.205652 hybrid +142_5-1 Q0 MARCO_47_135974546-3 98 -0.205652 hybrid +142_5-1 Q0 MARCO_57_1268585523-2 99 -0.205972 hybrid +142_5-1 Q0 MARCO_06_1255673525-414 100 -0.209046 hybrid +142_5-3 Q0 MARCO_36_1003753285-1 1 0.500000 hybrid +142_5-3 Q0 MARCO_50_1936673617-24 2 0.457349 hybrid +142_5-3 Q0 MARCO_10_790344909-2 3 0.427369 hybrid +142_5-3 Q0 MARCO_10_790344909-1 4 0.421008 hybrid +142_5-3 Q0 MARCO_39_670955540-32 5 0.355883 hybrid +142_5-3 Q0 MARCO_07_259262889-3 6 0.352605 hybrid +142_5-3 Q0 MARCO_30_2013034285-2 7 0.293957 hybrid +142_5-3 Q0 MARCO_12_278047340-2 8 0.245864 hybrid +142_5-3 Q0 MARCO_12_278047340-3 9 0.214440 hybrid +142_5-3 Q0 MARCO_22_1186906798-4 10 0.185391 hybrid +142_5-3 Q0 MARCO_30_2013034285-3 11 0.139347 hybrid +142_5-3 Q0 MARCO_43_40663531-2 12 0.113323 hybrid +142_5-3 Q0 MARCO_28_986308993-4 13 0.084380 hybrid +142_5-3 Q0 MARCO_45_256347161-1 14 0.076992 hybrid +142_5-3 Q0 MARCO_36_1005507397-5 15 0.075103 hybrid +142_5-3 Q0 MARCO_55_96389579-3 16 0.064222 hybrid +142_5-3 Q0 MARCO_02_485820717-2 17 0.059919 hybrid +142_5-3 Q0 MARCO_20_232780208-7 18 0.057393 hybrid +142_5-3 Q0 KILT_30224834-1 19 0.039431 hybrid +142_5-3 Q0 MARCO_30_2013002157-1 20 0.037775 hybrid +142_5-3 Q0 MARCO_20_232780208-1 21 0.037647 hybrid +142_5-3 Q0 MARCO_39_620476129-12 22 0.036732 hybrid +142_5-3 Q0 KILT_30224834-2 23 0.036325 hybrid +142_5-3 Q0 MARCO_12_275444885-3 24 0.033412 hybrid +142_5-3 Q0 MARCO_10_790344909-3 25 0.028687 hybrid +142_5-3 Q0 MARCO_55_74023026-3 26 0.025422 hybrid +142_5-3 Q0 MARCO_19_2045799633-5 27 0.024765 hybrid +142_5-3 Q0 MARCO_20_232780208-3 28 0.021161 hybrid +142_5-3 Q0 MARCO_35_131726592-2 29 0.018193 hybrid +142_5-3 Q0 MARCO_05_1742002206-2 30 0.014214 hybrid +142_5-3 Q0 MARCO_43_40663531-1 31 0.012341 hybrid +142_5-3 Q0 KILT_44501940-2 32 0.010542 hybrid +142_5-3 Q0 MARCO_03_448461486-5 33 0.004367 hybrid +142_5-3 Q0 MARCO_43_40663531-3 34 0.001668 hybrid +142_5-3 Q0 MARCO_06_477944537-1 35 -0.002058 hybrid +142_5-3 Q0 MARCO_05_1742002206-3 36 -0.004738 hybrid +142_5-3 Q0 MARCO_39_620476129-13 37 -0.008195 hybrid +142_5-3 Q0 MARCO_17_4124999099-16 38 -0.012895 hybrid +142_5-3 Q0 MARCO_55_100575562-3 39 -0.021004 hybrid +142_5-3 Q0 MARCO_30_2013002157-2 40 -0.021263 hybrid +142_5-3 Q0 MARCO_16_2614557965-35 41 -0.027627 hybrid +142_5-3 Q0 MARCO_12_275444885-4 42 -0.030217 hybrid +142_5-3 Q0 MARCO_12_275444885-2 43 -0.030412 hybrid +142_5-3 Q0 MARCO_19_2045799633-26 44 -0.033687 hybrid +142_5-3 Q0 MARCO_55_74023026-2 45 -0.034846 hybrid +142_5-3 Q0 MARCO_05_1742002206-10 46 -0.035647 hybrid +142_5-3 Q0 MARCO_24_509111941-1 47 -0.037078 hybrid +142_5-3 Q0 MARCO_05_848975837-1 48 -0.039338 hybrid +142_5-3 Q0 MARCO_51_694777636-52 49 -0.041793 hybrid +142_5-3 Q0 MARCO_38_609022441-2 50 -0.043544 hybrid +142_5-3 Q0 MARCO_03_446463952-5 51 -0.043980 hybrid +142_5-3 Q0 KILT_170019-6 52 -0.045129 hybrid +142_5-3 Q0 MARCO_28_984794031-10 53 -0.050392 hybrid +142_5-3 Q0 KILT_509059-2 54 -0.050411 hybrid +142_5-3 Q0 MARCO_39_670955540-31 55 -0.052694 hybrid +142_5-3 Q0 MARCO_03_447715492-6 56 -0.052764 hybrid +142_5-3 Q0 MARCO_50_1936673617-17 57 -0.056948 hybrid +142_5-3 Q0 MARCO_36_1003753285-4 58 -0.057496 hybrid +142_5-3 Q0 MARCO_17_3696994539-1 59 -0.058514 hybrid +142_5-3 Q0 MARCO_50_1516888163-5 60 -0.063825 hybrid +142_5-3 Q0 MARCO_55_97351136-4 61 -0.076018 hybrid +142_5-3 Q0 KILT_340197-51 62 -0.084118 hybrid +142_5-3 Q0 MARCO_39_670955540-29 63 -0.084598 hybrid +142_5-3 Q0 MARCO_20_232780208-4 64 -0.084681 hybrid +142_5-3 Q0 MARCO_55_100591457-3 65 -0.086858 hybrid +142_5-3 Q0 MARCO_19_965535394-23 66 -0.087207 hybrid +142_5-3 Q0 MARCO_36_1003753285-5 67 -0.096353 hybrid +142_5-3 Q0 KILT_509059-4 68 -0.098850 hybrid +142_5-3 Q0 MARCO_17_3696994539-2 69 -0.105137 hybrid +142_5-3 Q0 MARCO_55_101950932-1 70 -0.105266 hybrid +142_5-3 Q0 MARCO_28_986413979-5 71 -0.109504 hybrid +142_5-3 Q0 KILT_2948436-4 72 -0.111303 hybrid +142_5-3 Q0 MARCO_20_232780208-11 73 -0.115292 hybrid +142_5-3 Q0 MARCO_20_232780208-10 74 -0.115356 hybrid +142_5-3 Q0 MARCO_17_4124999099-15 75 -0.116480 hybrid +142_5-3 Q0 MARCO_30_1005023705-3 76 -0.119428 hybrid +142_5-3 Q0 MARCO_17_4124999099-17 77 -0.119956 hybrid +142_5-3 Q0 MARCO_17_4132936794-24 78 -0.120078 hybrid +142_5-3 Q0 KILT_12389744-2 79 -0.122991 hybrid +142_5-3 Q0 MARCO_39_1029613910-1 80 -0.127095 hybrid +142_5-3 Q0 MARCO_50_1936673617-23 81 -0.127319 hybrid +142_5-3 Q0 MARCO_17_4124999099-14 82 -0.127342 hybrid +142_5-3 Q0 MARCO_30_1025358979-3 83 -0.127992 hybrid +142_5-3 Q0 MARCO_30_1025312089-6 84 -0.129483 hybrid +142_5-3 Q0 MARCO_03_447715492-2 85 -0.131478 hybrid +142_5-3 Q0 MARCO_07_623527565-2 86 -0.131683 hybrid +142_5-3 Q0 MARCO_03_446473238-4 87 -0.131724 hybrid +142_5-3 Q0 MARCO_12_275444885-1 88 -0.132489 hybrid +142_5-3 Q0 MARCO_39_670955540-26 89 -0.134132 hybrid +142_5-3 Q0 MARCO_39_670955540-27 90 -0.134205 hybrid +142_5-3 Q0 MARCO_03_448391620-6 91 -0.137295 hybrid +142_5-3 Q0 MARCO_17_4124999099-13 92 -0.137541 hybrid +142_5-3 Q0 MARCO_20_232744322-15 93 -0.142772 hybrid +142_5-3 Q0 MARCO_20_232780208-5 94 -0.143697 hybrid +142_5-3 Q0 MARCO_14_1616520163-9 95 -0.144430 hybrid +142_5-3 Q0 MARCO_30_1045055379-5 96 -0.145410 hybrid +142_5-3 Q0 MARCO_30_813098540-3 97 -0.146764 hybrid +142_5-3 Q0 MARCO_32_1026784471-1 98 -0.147993 hybrid +142_5-3 Q0 MARCO_12_278047340-1 99 -0.148243 hybrid +142_5-3 Q0 MARCO_00_248867572-4 100 -0.148903 hybrid +142_5-5 Q0 KILT_28820502-5 1 0.499998 hybrid +142_5-5 Q0 KILT_28820502-3 2 0.478303 hybrid +142_5-5 Q0 MARCO_47_1601362260-3 3 0.451146 hybrid +142_5-5 Q0 KILT_28820502-2 4 0.418333 hybrid +142_5-5 Q0 MARCO_08_1480326385-15 5 0.407539 hybrid +142_5-5 Q0 MARCO_47_1602505698-5 6 0.375489 hybrid +142_5-5 Q0 KILT_28820502-1 7 0.334985 hybrid +142_5-5 Q0 KILT_28820502-4 8 0.320269 hybrid +142_5-5 Q0 MARCO_50_1458626850-15 9 0.312328 hybrid +142_5-5 Q0 KILT_2402376-36 10 0.291500 hybrid +142_5-5 Q0 KILT_2810466-5 11 0.288199 hybrid +142_5-5 Q0 KILT_28820502-6 12 0.276345 hybrid +142_5-5 Q0 KILT_18706892-1 13 0.271051 hybrid +142_5-5 Q0 MARCO_47_1601007145-1 14 0.264717 hybrid +142_5-5 Q0 KILT_44030741-1 15 0.258565 hybrid +142_5-5 Q0 KILT_10210353-1 16 0.258431 hybrid +142_5-5 Q0 MARCO_47_1602505698-4 17 0.257993 hybrid +142_5-5 Q0 MARCO_58_1508113613-1 18 0.257613 hybrid +142_5-5 Q0 KILT_637348-4 19 0.255334 hybrid +142_5-5 Q0 KILT_43492755-1 20 0.255209 hybrid +142_5-5 Q0 MARCO_18_3127967367-2 21 0.252389 hybrid +142_5-5 Q0 KILT_2810466-7 22 0.249730 hybrid +142_5-5 Q0 MARCO_08_1480326385-18 23 0.243968 hybrid +142_5-5 Q0 KILT_8076950-6 24 0.231932 hybrid +142_5-5 Q0 MARCO_54_676656745-1 25 0.231512 hybrid +142_5-5 Q0 MARCO_50_1441723234-18 26 0.225378 hybrid +142_5-5 Q0 KILT_28820502-7 27 0.208858 hybrid +142_5-5 Q0 KILT_28820502-8 28 0.202052 hybrid +142_5-5 Q0 MARCO_17_674008977-1 29 0.200470 hybrid +142_5-5 Q0 MARCO_18_2378994128-2 30 0.183499 hybrid +142_5-5 Q0 MARCO_47_1602505698-2 31 0.174956 hybrid +142_5-5 Q0 KILT_2810466-9 32 0.170328 hybrid +142_5-5 Q0 KILT_28820502-10 33 0.149068 hybrid +142_5-5 Q0 MARCO_18_3132971540-8 34 0.143807 hybrid +142_5-5 Q0 KILT_42233667-1 35 0.140625 hybrid +142_5-5 Q0 KILT_28820502-9 36 0.138042 hybrid +142_5-5 Q0 MARCO_18_469824557-17 37 0.128373 hybrid +142_5-5 Q0 MARCO_44_1695065420-2 38 0.125279 hybrid +142_5-5 Q0 KILT_24910579-1 39 0.120791 hybrid +142_5-5 Q0 KILT_9384580-1 40 0.117986 hybrid +142_5-5 Q0 MARCO_47_1601007145-2 41 0.110255 hybrid +142_5-5 Q0 MARCO_17_2510087016-6 42 0.108530 hybrid +142_5-5 Q0 MARCO_47_1602505698-3 43 0.098840 hybrid +142_5-5 Q0 MARCO_50_1458626850-10 44 0.094431 hybrid +142_5-5 Q0 KILT_2810466-10 45 0.093476 hybrid +142_5-5 Q0 KILT_44030741-2 46 0.089734 hybrid +142_5-5 Q0 MARCO_18_3127967367-1 47 0.085447 hybrid +142_5-5 Q0 MARCO_17_2510087016-9 48 0.085164 hybrid +142_5-5 Q0 KILT_5302486-4 49 0.083065 hybrid +142_5-5 Q0 KILT_8076950-1 50 0.082216 hybrid +142_5-5 Q0 KILT_36883279-1 51 0.078824 hybrid +142_5-5 Q0 MARCO_50_1441723234-19 52 0.076764 hybrid +142_5-5 Q0 MARCO_18_2378850780-3 53 0.073332 hybrid +142_5-5 Q0 MARCO_18_3127967367-8 54 0.070071 hybrid +142_5-5 Q0 MARCO_17_1668659449-2 55 0.065358 hybrid +142_5-5 Q0 MARCO_17_2510087016-7 56 0.063910 hybrid +142_5-5 Q0 KILT_8076950-4 57 0.063024 hybrid +142_5-5 Q0 KILT_44501940-2 58 0.058433 hybrid +142_5-5 Q0 MARCO_47_1601362260-4 59 0.057788 hybrid +142_5-5 Q0 MARCO_43_714092140-5 60 0.052869 hybrid +142_5-5 Q0 MARCO_17_2510087016-1 61 0.047523 hybrid +142_5-5 Q0 MARCO_17_2510087016-17 62 0.041672 hybrid +142_5-5 Q0 MARCO_10_448253860-6 63 0.036944 hybrid +142_5-5 Q0 KILT_1833378-6 64 0.035158 hybrid +142_5-5 Q0 MARCO_16_3046749093-31 65 0.031468 hybrid +142_5-5 Q0 KILT_19931201-1 66 0.028289 hybrid +142_5-5 Q0 MARCO_19_2045799633-5 67 0.027595 hybrid +142_5-5 Q0 KILT_2810466-1 68 0.024939 hybrid +142_5-5 Q0 KILT_2810466-11 69 0.023515 hybrid +142_5-5 Q0 MARCO_18_3127967367-4 70 0.020056 hybrid +142_5-5 Q0 KILT_5302486-1 71 0.018839 hybrid +142_5-5 Q0 MARCO_18_3127967367-7 72 0.015571 hybrid +142_5-5 Q0 MARCO_18_3127967367-9 73 0.015571 hybrid +142_5-5 Q0 MARCO_47_1604568742-14 74 0.013886 hybrid +142_5-5 Q0 KILT_2810466-12 75 0.007545 hybrid +142_5-5 Q0 MARCO_10_448253860-1 76 0.005720 hybrid +142_5-5 Q0 KILT_28820502-11 77 -0.002513 hybrid +142_5-5 Q0 MARCO_08_448448881-22 78 -0.003730 hybrid +142_5-5 Q0 MARCO_17_674008977-2 79 -0.006952 hybrid +142_5-5 Q0 MARCO_18_3127967367-5 80 -0.011406 hybrid +142_5-5 Q0 MARCO_19_2045799633-2 81 -0.021973 hybrid +142_5-5 Q0 MARCO_08_1480326385-19 82 -0.023570 hybrid +142_5-5 Q0 MARCO_17_674008977-20 83 -0.024057 hybrid +142_5-5 Q0 KILT_24910579-2 84 -0.025009 hybrid +142_5-5 Q0 MARCO_50_1441723234-17 85 -0.030485 hybrid +142_5-5 Q0 MARCO_18_3132971540-4 86 -0.033847 hybrid +142_5-5 Q0 KILT_39748847-3 87 -0.036044 hybrid +142_5-5 Q0 KILT_2810466-6 88 -0.036783 hybrid +142_5-5 Q0 KILT_39748847-1 89 -0.037577 hybrid +142_5-5 Q0 MARCO_50_1458626850-14 90 -0.040093 hybrid +142_5-5 Q0 KILT_1437724-3 91 -0.040452 hybrid +142_5-5 Q0 MARCO_11_1496366192-1 92 -0.043501 hybrid +142_5-5 Q0 MARCO_22_1186877744-7 93 -0.046120 hybrid +142_5-5 Q0 MARCO_08_1091419182-25 94 -0.048381 hybrid +142_5-5 Q0 MARCO_19_2045799633-26 95 -0.057855 hybrid +142_5-5 Q0 MARCO_50_1441723234-16 96 -0.059492 hybrid +142_5-5 Q0 MARCO_16_3046749093-34 97 -0.068202 hybrid +142_5-5 Q0 MARCO_17_2510087016-5 98 -0.069228 hybrid +142_5-5 Q0 MARCO_17_2510087016-8 99 -0.069511 hybrid +142_5-5 Q0 KILT_80366-13 100 -0.073238 hybrid +142_5-7 Q0 MARCO_30_2013034285-2 1 0.499998 hybrid +142_5-7 Q0 MARCO_58_1506642595-1 2 0.452374 hybrid +142_5-7 Q0 MARCO_19_2045799633-26 3 0.353637 hybrid +142_5-7 Q0 MARCO_54_676656745-1 4 0.348676 hybrid +142_5-7 Q0 MARCO_50_1936673617-24 5 0.325741 hybrid +142_5-7 Q0 KILT_26507946-2 6 0.324989 hybrid +142_5-7 Q0 MARCO_47_1602505698-3 7 0.317115 hybrid +142_5-7 Q0 MARCO_07_259262889-3 8 0.309754 hybrid +142_5-7 Q0 MARCO_30_2013034285-3 9 0.305023 hybrid +142_5-7 Q0 MARCO_58_1508113613-1 10 0.301382 hybrid +142_5-7 Q0 MARCO_10_790353427-4 11 0.298638 hybrid +142_5-7 Q0 MARCO_43_742228802-80 12 0.294165 hybrid +142_5-7 Q0 MARCO_06_1149196799-179 13 0.278925 hybrid +142_5-7 Q0 MARCO_58_1509104985-3 14 0.272670 hybrid +142_5-7 Q0 MARCO_58_1506642595-3 15 0.269751 hybrid +142_5-7 Q0 MARCO_37_173589964-2 16 0.269114 hybrid +142_5-7 Q0 KILT_23117867-1 17 0.259641 hybrid +142_5-7 Q0 MARCO_58_1508113613-2 18 0.256219 hybrid +142_5-7 Q0 MARCO_10_790344909-3 19 0.253804 hybrid +142_5-7 Q0 MARCO_54_676656745-2 20 0.251229 hybrid +142_5-7 Q0 MARCO_54_676656745-4 21 0.251229 hybrid +142_5-7 Q0 KILT_34879285-1 22 0.237219 hybrid +142_5-7 Q0 MARCO_58_1509591433-5 23 0.214897 hybrid +142_5-7 Q0 MARCO_19_2045799633-5 24 0.202600 hybrid +142_5-7 Q0 MARCO_58_1509104985-4 25 0.193784 hybrid +142_5-7 Q0 MARCO_28_984794031-10 26 0.193560 hybrid +142_5-7 Q0 KILT_35894206-10 27 0.192509 hybrid +142_5-7 Q0 MARCO_47_1601362260-6 28 0.185885 hybrid +142_5-7 Q0 MARCO_31_899564358-3 29 0.181194 hybrid +142_5-7 Q0 MARCO_07_259262889-2 30 0.166317 hybrid +142_5-7 Q0 KILT_2810466-10 31 0.159429 hybrid +142_5-7 Q0 MARCO_06_1240614560-37 32 0.156665 hybrid +142_5-7 Q0 KILT_42408767-1 33 0.152750 hybrid +142_5-7 Q0 MARCO_22_1186915282-2 34 0.147546 hybrid +142_5-7 Q0 KILT_48730417-1 35 0.146644 hybrid +142_5-7 Q0 MARCO_05_848975837-1 36 0.140827 hybrid +142_5-7 Q0 MARCO_22_1186906798-5 37 0.139592 hybrid +142_5-7 Q0 KILT_6283124-5 38 0.139164 hybrid +142_5-7 Q0 MARCO_39_670955540-32 39 0.132983 hybrid +142_5-7 Q0 MARCO_58_1508113613-3 40 0.129412 hybrid +142_5-7 Q0 MARCO_32_884765978-2 41 0.129298 hybrid +142_5-7 Q0 MARCO_47_1601362260-9 42 0.121403 hybrid +142_5-7 Q0 MARCO_07_259262889-1 43 0.113504 hybrid +142_5-7 Q0 MARCO_30_2012938093-5 44 0.101731 hybrid +142_5-7 Q0 MARCO_19_2045799633-19 45 0.101273 hybrid +142_5-7 Q0 MARCO_22_1186906798-1 46 0.097861 hybrid +142_5-7 Q0 MARCO_22_1186906798-4 47 0.094683 hybrid +142_5-7 Q0 MARCO_22_1186867646-3 48 0.093672 hybrid +142_5-7 Q0 MARCO_47_1601351898-8 49 0.093453 hybrid +142_5-7 Q0 MARCO_12_278047340-3 50 0.091849 hybrid +142_5-7 Q0 KILT_592808-3 51 0.085898 hybrid +142_5-7 Q0 MARCO_22_1186915282-3 52 0.085758 hybrid +142_5-7 Q0 MARCO_47_1601362260-10 53 0.084160 hybrid +142_5-7 Q0 MARCO_45_256347161-1 54 0.082511 hybrid +142_5-7 Q0 MARCO_58_1505463998-3 55 0.082207 hybrid +142_5-7 Q0 MARCO_16_3046944575-20 56 0.080036 hybrid +142_5-7 Q0 MARCO_17_2524961420-3 57 0.076584 hybrid +142_5-7 Q0 MARCO_51_694777636-27 58 0.076096 hybrid +142_5-7 Q0 KILT_14672486-3 59 0.071355 hybrid +142_5-7 Q0 MARCO_50_1441723234-18 60 0.069532 hybrid +142_5-7 Q0 MARCO_35_128533405-3 61 0.068561 hybrid +142_5-7 Q0 MARCO_07_259262889-4 62 0.066056 hybrid +142_5-7 Q0 KILT_1899324-1 63 0.063187 hybrid +142_5-7 Q0 MARCO_12_275444885-2 64 0.060941 hybrid +142_5-7 Q0 MARCO_22_1186877744-7 65 0.055149 hybrid +142_5-7 Q0 MARCO_58_1505463998-1 66 0.053266 hybrid +142_5-7 Q0 MARCO_36_1003753285-1 67 0.050960 hybrid +142_5-7 Q0 KILT_30224834-2 68 0.050950 hybrid +142_5-7 Q0 MARCO_47_1602505698-4 69 0.048485 hybrid +142_5-7 Q0 MARCO_19_2045799633-18 70 0.045103 hybrid +142_5-7 Q0 KILT_939599-6 71 0.041378 hybrid +142_5-7 Q0 MARCO_41_1117115865-63 72 0.040496 hybrid +142_5-7 Q0 MARCO_05_848957007-4 73 0.039854 hybrid +142_5-7 Q0 MARCO_43_714092140-5 74 0.036542 hybrid +142_5-7 Q0 KILT_939599-5 75 0.036437 hybrid +142_5-7 Q0 KILT_2527950-1 76 0.033832 hybrid +142_5-7 Q0 MARCO_19_2045799633-2 77 0.032233 hybrid +142_5-7 Q0 MARCO_05_848957007-1 78 0.028742 hybrid +142_5-7 Q0 KILT_392708-9 79 0.023373 hybrid +142_5-7 Q0 MARCO_22_1186906798-3 80 0.022576 hybrid +142_5-7 Q0 KILT_28820502-2 81 0.022093 hybrid +142_5-7 Q0 MARCO_10_790353427-1 82 0.021177 hybrid +142_5-7 Q0 MARCO_37_173589964-3 83 0.021008 hybrid +142_5-7 Q0 MARCO_10_790344909-1 84 0.018204 hybrid +142_5-7 Q0 MARCO_55_1284276756-5 85 0.018059 hybrid +142_5-7 Q0 KILT_35634940-1 86 0.016286 hybrid +142_5-7 Q0 MARCO_16_3046749093-49 87 0.014239 hybrid +142_5-7 Q0 KILT_2810466-12 88 0.014005 hybrid +142_5-7 Q0 MARCO_08_1480326385-12 89 0.013890 hybrid +142_5-7 Q0 MARCO_47_1604104921-3 90 0.012008 hybrid +142_5-7 Q0 KILT_3680589-1 91 0.006290 hybrid +142_5-7 Q0 MARCO_35_128151915-16 92 0.000767 hybrid +142_5-7 Q0 MARCO_29_789818223-2 93 -0.009533 hybrid +142_5-7 Q0 MARCO_22_1186915282-1 94 -0.013123 hybrid +142_5-7 Q0 MARCO_47_1601351898-7 95 -0.015405 hybrid +142_5-7 Q0 MARCO_05_848986452-2 96 -0.016241 hybrid +142_5-7 Q0 MARCO_20_232780208-7 97 -0.016530 hybrid +142_5-7 Q0 MARCO_20_232780208-11 98 -0.016978 hybrid +142_5-7 Q0 KILT_2527950-2 99 -0.017855 hybrid +142_5-7 Q0 KILT_15961583-7 100 -0.021286 hybrid +142_5-9 Q0 MARCO_22_1186906798-4 1 0.500000 hybrid +142_5-9 Q0 MARCO_53_812385688-10 2 0.370435 hybrid +142_5-9 Q0 MARCO_18_1299865625-4 3 0.201387 hybrid +142_5-9 Q0 MARCO_30_742746465-5 4 0.189003 hybrid +142_5-9 Q0 KILT_237715-9 5 0.179942 hybrid +142_5-9 Q0 MARCO_47_1601362260-6 6 0.157778 hybrid +142_5-9 Q0 MARCO_39_670955540-32 7 0.144121 hybrid +142_5-9 Q0 MARCO_20_479647412-5 8 0.141088 hybrid +142_5-9 Q0 MARCO_47_1601362260-5 9 0.126375 hybrid +142_5-9 Q0 MARCO_29_1418682367-4 10 0.112222 hybrid +142_5-9 Q0 MARCO_30_2013002157-2 11 0.108308 hybrid +142_5-9 Q0 MARCO_51_1897548310-17 12 0.101172 hybrid +142_5-9 Q0 MARCO_36_1003753285-4 13 0.080364 hybrid +142_5-9 Q0 MARCO_32_1020747089-5 14 0.078240 hybrid +142_5-9 Q0 MARCO_03_444110329-2 15 0.053953 hybrid +142_5-9 Q0 MARCO_48_1186845028-4 16 0.036060 hybrid +142_5-9 Q0 MARCO_08_454689269-3 17 0.015690 hybrid +142_5-9 Q0 MARCO_10_444484315-3 18 0.011829 hybrid +142_5-9 Q0 MARCO_55_1708317826-6 19 0.006073 hybrid +142_5-9 Q0 MARCO_19_2045799633-26 20 0.002241 hybrid +142_5-9 Q0 MARCO_55_74023026-2 21 0.000328 hybrid +142_5-9 Q0 MARCO_24_1138157550-2 22 -0.002891 hybrid +142_5-9 Q0 MARCO_39_670955540-31 23 -0.006596 hybrid +142_5-9 Q0 MARCO_30_2013034285-2 24 -0.023456 hybrid +142_5-9 Q0 MARCO_16_442874124-2 25 -0.025615 hybrid +142_5-9 Q0 MARCO_10_1419034273-3 26 -0.027473 hybrid +142_5-9 Q0 MARCO_39_620476129-12 27 -0.033904 hybrid +142_5-9 Q0 MARCO_22_1186906798-3 28 -0.035024 hybrid +142_5-9 Q0 MARCO_17_2510087016-8 29 -0.036561 hybrid +142_5-9 Q0 MARCO_00_1155394036-3 30 -0.036652 hybrid +142_5-9 Q0 MARCO_41_2134956530-2 31 -0.042858 hybrid +142_5-9 Q0 MARCO_22_1186867646-1 32 -0.042904 hybrid +142_5-9 Q0 MARCO_36_1003753285-1 33 -0.042907 hybrid +142_5-9 Q0 MARCO_20_232780208-7 34 -0.044566 hybrid +142_5-9 Q0 MARCO_57_620123090-4 35 -0.056837 hybrid +142_5-9 Q0 MARCO_12_275444885-2 36 -0.060516 hybrid +142_5-9 Q0 MARCO_10_790344909-2 37 -0.061929 hybrid +142_5-9 Q0 MARCO_50_1936673617-24 38 -0.066047 hybrid +142_5-9 Q0 MARCO_43_714092140-1 39 -0.067938 hybrid +142_5-9 Q0 MARCO_32_1026784471-1 40 -0.068262 hybrid +142_5-9 Q0 MARCO_16_442874124-6 41 -0.070581 hybrid +142_5-9 Q0 MARCO_19_2045799633-17 42 -0.074976 hybrid +142_5-9 Q0 MARCO_47_1601010927-2 43 -0.080783 hybrid +142_5-9 Q0 MARCO_55_74023026-3 44 -0.083709 hybrid +142_5-9 Q0 MARCO_37_173589964-3 45 -0.090292 hybrid +142_5-9 Q0 MARCO_17_693365828-1 46 -0.093715 hybrid +142_5-9 Q0 MARCO_16_2614238123-4 47 -0.095719 hybrid +142_5-9 Q0 MARCO_51_1895312251-10 48 -0.099042 hybrid +142_5-9 Q0 MARCO_17_2510087016-4 49 -0.100494 hybrid +142_5-9 Q0 MARCO_16_2614238123-3 50 -0.113693 hybrid +142_5-9 Q0 MARCO_47_134954814-3 51 -0.114375 hybrid +142_5-9 Q0 MARCO_54_676656745-1 52 -0.119691 hybrid +142_5-9 Q0 MARCO_14_930923856-16 53 -0.121949 hybrid +142_5-9 Q0 MARCO_16_2614238123-33 54 -0.122491 hybrid +142_5-9 Q0 MARCO_22_1186915282-2 55 -0.124031 hybrid +142_5-9 Q0 MARCO_36_1003753285-5 56 -0.125690 hybrid +142_5-9 Q0 MARCO_35_131726592-1 57 -0.126161 hybrid +142_5-9 Q0 KILT_12389744-2 58 -0.126385 hybrid +142_5-9 Q0 MARCO_17_2968257209-4 59 -0.126937 hybrid +142_5-9 Q0 MARCO_20_232780208-3 60 -0.127525 hybrid +142_5-9 Q0 MARCO_18_1299865625-3 61 -0.131228 hybrid +142_5-9 Q0 MARCO_39_620476129-13 62 -0.132036 hybrid +142_5-9 Q0 MARCO_22_1583085106-3 63 -0.133079 hybrid +142_5-9 Q0 MARCO_43_714092140-5 64 -0.133884 hybrid +142_5-9 Q0 MARCO_12_275444885-4 65 -0.141176 hybrid +142_5-9 Q0 MARCO_18_1302442111-38 66 -0.141215 hybrid +142_5-9 Q0 MARCO_36_1005507397-5 67 -0.146349 hybrid +142_5-9 Q0 MARCO_39_672901826-5 68 -0.150435 hybrid +142_5-9 Q0 MARCO_12_275444885-3 69 -0.155200 hybrid +142_5-9 Q0 MARCO_24_1136457662-5 70 -0.155599 hybrid +142_5-9 Q0 MARCO_06_484716332-1 71 -0.156564 hybrid +142_5-9 Q0 KILT_2527950-7 72 -0.157655 hybrid +142_5-9 Q0 MARCO_37_173589964-1 73 -0.160932 hybrid +142_5-9 Q0 MARCO_37_173589964-6 74 -0.164963 hybrid +142_5-9 Q0 MARCO_03_583636368-68 75 -0.165294 hybrid +142_5-9 Q0 MARCO_35_131726592-2 76 -0.165810 hybrid +142_5-9 Q0 MARCO_00_944211795-17 77 -0.166385 hybrid +142_5-9 Q0 MARCO_06_477944537-1 78 -0.168175 hybrid +142_5-9 Q0 MARCO_22_1186888239-2 79 -0.169081 hybrid +142_5-9 Q0 MARCO_51_1897548310-20 80 -0.169363 hybrid +142_5-9 Q0 MARCO_08_1480326385-13 81 -0.169961 hybrid +142_5-9 Q0 MARCO_19_2045799633-5 82 -0.171699 hybrid +142_5-9 Q0 KILT_30224834-2 83 -0.172692 hybrid +142_5-9 Q0 KILT_424234-8 84 -0.174726 hybrid +142_5-9 Q0 MARCO_58_1506642595-1 85 -0.175882 hybrid +142_5-9 Q0 MARCO_02_928843665-6 86 -0.177626 hybrid +142_5-9 Q0 MARCO_43_714092140-2 87 -0.177782 hybrid +142_5-9 Q0 MARCO_16_2614238123-32 88 -0.179198 hybrid +142_5-9 Q0 MARCO_47_134954814-4 89 -0.179311 hybrid +142_5-9 Q0 MARCO_06_328937321-44 90 -0.180598 hybrid +142_5-9 Q0 MARCO_12_278047340-3 91 -0.180822 hybrid +142_5-9 Q0 MARCO_32_1025757214-6 92 -0.181293 hybrid +142_5-9 Q0 MARCO_12_275444885-6 93 -0.183323 hybrid +142_5-9 Q0 MARCO_06_1255673525-414 94 -0.183361 hybrid +142_5-9 Q0 MARCO_12_1149638769-5 95 -0.183829 hybrid +142_5-9 Q0 MARCO_18_1302442111-35 96 -0.187161 hybrid +142_5-9 Q0 MARCO_16_2614422105-7 97 -0.194196 hybrid +142_5-9 Q0 MARCO_47_1601362260-9 98 -0.195349 hybrid +142_5-9 Q0 MARCO_47_1601362260-7 99 -0.196950 hybrid +142_5-9 Q0 KILT_2569276-2 100 -0.197382 hybrid +142_6-1 Q0 MARCO_30_2013034285-3 1 0.499998 hybrid +142_6-1 Q0 MARCO_22_1189445202-15 2 0.268571 hybrid +142_6-1 Q0 MARCO_30_2013034285-2 3 0.250806 hybrid +142_6-1 Q0 MARCO_32_1026784471-5 4 0.190415 hybrid +142_6-1 Q0 MARCO_26_817625721-23 5 0.174984 hybrid +142_6-1 Q0 MARCO_09_1233575192-4 6 0.141921 hybrid +142_6-1 Q0 MARCO_23_483994226-2 7 0.140182 hybrid +142_6-1 Q0 MARCO_28_329136270-3 8 0.131482 hybrid +142_6-1 Q0 MARCO_31_1644786467-10 9 0.109829 hybrid +142_6-1 Q0 MARCO_18_3132830515-10 10 0.107103 hybrid +142_6-1 Q0 MARCO_20_232780208-11 11 0.100001 hybrid +142_6-1 Q0 MARCO_45_177344718-5 12 0.097128 hybrid +142_6-1 Q0 MARCO_41_1816072373-2 13 0.090130 hybrid +142_6-1 Q0 KILT_54534592-18 14 0.082333 hybrid +142_6-1 Q0 MARCO_09_1233575192-5 15 0.076486 hybrid +142_6-1 Q0 MARCO_28_984794031-12 16 0.070727 hybrid +142_6-1 Q0 MARCO_28_984794031-10 17 0.068868 hybrid +142_6-1 Q0 MARCO_12_278047340-3 18 0.053538 hybrid +142_6-1 Q0 KILT_30224834-2 19 0.038175 hybrid +142_6-1 Q0 MARCO_47_1285054282-2 20 0.036428 hybrid +142_6-1 Q0 MARCO_30_130794419-6 21 0.034674 hybrid +142_6-1 Q0 MARCO_30_130794419-5 22 0.020662 hybrid +142_6-1 Q0 MARCO_24_1439151207-5 23 0.017241 hybrid +142_6-1 Q0 MARCO_23_484857783-4 24 0.013860 hybrid +142_6-1 Q0 MARCO_22_1186888239-2 25 0.006738 hybrid +142_6-1 Q0 MARCO_20_232780208-3 26 -0.001758 hybrid +142_6-1 Q0 KILT_2240648-7 27 -0.008149 hybrid +142_6-1 Q0 MARCO_25_1403614112-3 28 -0.010287 hybrid +142_6-1 Q0 MARCO_10_802917812-3 29 -0.010519 hybrid +142_6-1 Q0 KILT_32239668-1 30 -0.021781 hybrid +142_6-1 Q0 MARCO_36_1003753285-1 31 -0.023368 hybrid +142_6-1 Q0 MARCO_45_260984989-1 32 -0.024886 hybrid +142_6-1 Q0 MARCO_28_986108984-5 33 -0.025726 hybrid +142_6-1 Q0 MARCO_02_848265302-2 34 -0.026065 hybrid +142_6-1 Q0 MARCO_06_477944537-1 35 -0.032200 hybrid +142_6-1 Q0 MARCO_06_482075263-3 36 -0.043306 hybrid +142_6-1 Q0 MARCO_45_260982046-1 37 -0.044973 hybrid +142_6-1 Q0 MARCO_58_1734352472-2 38 -0.045860 hybrid +142_6-1 Q0 MARCO_05_1742002206-2 39 -0.052387 hybrid +142_6-1 Q0 MARCO_51_952348343-5 40 -0.071030 hybrid +142_6-1 Q0 MARCO_50_1516866816-9 41 -0.071218 hybrid +142_6-1 Q0 MARCO_39_670955540-32 42 -0.072913 hybrid +142_6-1 Q0 MARCO_35_561141423-1 43 -0.077533 hybrid +142_6-1 Q0 MARCO_29_1418815554-3 44 -0.079703 hybrid +142_6-1 Q0 MARCO_32_1498008047-12 45 -0.087420 hybrid +142_6-1 Q0 MARCO_30_1022384297-23 46 -0.088012 hybrid +142_6-1 Q0 MARCO_30_130794419-3 47 -0.090114 hybrid +142_6-1 Q0 MARCO_28_984794031-13 48 -0.092016 hybrid +142_6-1 Q0 MARCO_25_1403896768-2 49 -0.094826 hybrid +142_6-1 Q0 MARCO_29_1417537059-6 50 -0.097799 hybrid +142_6-1 Q0 MARCO_05_1742691684-1 51 -0.098203 hybrid +142_6-1 Q0 MARCO_09_1233575192-3 52 -0.100169 hybrid +142_6-1 Q0 MARCO_14_305732002-10 53 -0.102183 hybrid +142_6-1 Q0 MARCO_32_1026784471-1 54 -0.102871 hybrid +142_6-1 Q0 MARCO_47_1285257665-2 55 -0.106687 hybrid +142_6-1 Q0 MARCO_45_636493565-3 56 -0.106827 hybrid +142_6-1 Q0 MARCO_23_484044282-2 57 -0.110852 hybrid +142_6-1 Q0 MARCO_47_136133583-7 58 -0.112602 hybrid +142_6-1 Q0 MARCO_48_551761899-13 59 -0.113146 hybrid +142_6-1 Q0 MARCO_55_101930133-5 60 -0.114469 hybrid +142_6-1 Q0 MARCO_45_1439678929-5 61 -0.114565 hybrid +142_6-1 Q0 MARCO_45_1439678929-3 62 -0.114565 hybrid +142_6-1 Q0 MARCO_55_99117985-6 63 -0.114840 hybrid +142_6-1 Q0 MARCO_06_485134946-2 64 -0.117686 hybrid +142_6-1 Q0 MARCO_25_1404294145-7 65 -0.119992 hybrid +142_6-1 Q0 KILT_509059-2 66 -0.120547 hybrid +142_6-1 Q0 MARCO_20_1742671684-4 67 -0.127897 hybrid +142_6-1 Q0 MARCO_22_1188438230-9 68 -0.132689 hybrid +142_6-1 Q0 MARCO_09_541843262-6 69 -0.133488 hybrid +142_6-1 Q0 MARCO_55_676979672-1 70 -0.133676 hybrid +142_6-1 Q0 MARCO_54_1567789358-13 71 -0.133756 hybrid +142_6-1 Q0 MARCO_10_793440444-3 72 -0.137585 hybrid +142_6-1 Q0 MARCO_25_1404207248-4 73 -0.140758 hybrid +142_6-1 Q0 MARCO_05_1742694134-6 74 -0.141149 hybrid +142_6-1 Q0 MARCO_28_986389852-10 75 -0.141197 hybrid +142_6-1 Q0 MARCO_28_986574953-4 76 -0.144670 hybrid +142_6-1 Q0 MARCO_47_136205606-4 77 -0.145638 hybrid +142_6-1 Q0 MARCO_25_1403896768-4 78 -0.145877 hybrid +142_6-1 Q0 MARCO_47_135722350-4 79 -0.146649 hybrid +142_6-1 Q0 MARCO_47_1285222579-7 80 -0.147760 hybrid +142_6-1 Q0 MARCO_47_1601362260-8 81 -0.150517 hybrid +142_6-1 Q0 MARCO_02_928857366-4 82 -0.150953 hybrid +142_6-1 Q0 MARCO_06_482071113-3 83 -0.151101 hybrid +142_6-1 Q0 MARCO_29_1015332812-6 84 -0.151716 hybrid +142_6-1 Q0 MARCO_48_551852706-14 85 -0.154518 hybrid +142_6-1 Q0 MARCO_51_694777636-52 86 -0.158918 hybrid +142_6-1 Q0 MARCO_00_886067813-10 87 -0.160705 hybrid +142_6-1 Q0 MARCO_47_136013783-1 88 -0.161899 hybrid +142_6-1 Q0 MARCO_09_436439819-2 89 -0.161975 hybrid +142_6-1 Q0 MARCO_30_1022384297-77 90 -0.163730 hybrid +142_6-1 Q0 MARCO_02_668419277-4 91 -0.164725 hybrid +142_6-1 Q0 MARCO_08_1480050003-2 92 -0.165404 hybrid +142_6-1 Q0 MARCO_09_437271584-9 93 -0.165888 hybrid +142_6-1 Q0 MARCO_28_984794031-5 94 -0.166479 hybrid +142_6-1 Q0 MARCO_50_1516866816-5 95 -0.167571 hybrid +142_6-1 Q0 MARCO_36_1009255108-3 96 -0.170764 hybrid +142_6-1 Q0 MARCO_00_699529303-5 97 -0.170936 hybrid +142_6-1 Q0 MARCO_22_1583085106-4 98 -0.171587 hybrid +142_6-1 Q0 MARCO_24_1439180304-4 99 -0.175787 hybrid +142_6-1 Q0 MARCO_04_1396160485-10 100 -0.176243 hybrid +142_6-3 Q0 MARCO_30_2013034285-3 1 0.499998 hybrid +142_6-3 Q0 MARCO_22_1189445202-15 2 0.363986 hybrid +142_6-3 Q0 MARCO_41_1816072373-2 3 0.334765 hybrid +142_6-3 Q0 MARCO_18_3132830515-10 4 0.319394 hybrid +142_6-3 Q0 MARCO_30_2013034285-2 5 0.278015 hybrid +142_6-3 Q0 KILT_32239668-1 6 0.274611 hybrid +142_6-3 Q0 MARCO_32_1026784471-5 7 0.268600 hybrid +142_6-3 Q0 KILT_30224834-2 8 0.241610 hybrid +142_6-3 Q0 MARCO_12_278047340-3 9 0.239300 hybrid +142_6-3 Q0 MARCO_06_477944537-1 10 0.232670 hybrid +142_6-3 Q0 MARCO_22_1186888239-2 11 0.211878 hybrid +142_6-3 Q0 MARCO_28_329136270-3 12 0.206393 hybrid +142_6-3 Q0 MARCO_26_817625721-23 13 0.188688 hybrid +142_6-3 Q0 MARCO_36_1003753285-1 14 0.169643 hybrid +142_6-3 Q0 MARCO_10_802917812-3 15 0.129973 hybrid +142_6-3 Q0 MARCO_32_1026784471-1 16 0.117141 hybrid +142_6-3 Q0 MARCO_39_670955540-32 17 0.111027 hybrid +142_6-3 Q0 MARCO_50_1936673617-24 18 0.104314 hybrid +142_6-3 Q0 MARCO_45_177344718-5 19 0.087699 hybrid +142_6-3 Q0 MARCO_29_1418815554-3 20 0.076559 hybrid +142_6-3 Q0 MARCO_28_984794031-10 21 0.075311 hybrid +142_6-3 Q0 MARCO_20_232780208-11 22 0.070885 hybrid +142_6-3 Q0 MARCO_20_232780208-3 23 0.034408 hybrid +142_6-3 Q0 MARCO_45_1435686894-5 24 0.033406 hybrid +142_6-3 Q0 MARCO_45_256347161-1 25 0.028694 hybrid +142_6-3 Q0 MARCO_30_130794419-6 26 0.028583 hybrid +142_6-3 Q0 MARCO_31_1644786467-10 27 0.006122 hybrid +142_6-3 Q0 KILT_7717615-1 28 0.001470 hybrid +142_6-3 Q0 MARCO_05_848975837-2 29 0.001339 hybrid +142_6-3 Q0 MARCO_23_484857783-4 30 -0.005572 hybrid +142_6-3 Q0 KILT_42498840-1 31 -0.010893 hybrid +142_6-3 Q0 MARCO_07_259262889-3 32 -0.026411 hybrid +142_6-3 Q0 KILT_466071-1 33 -0.035260 hybrid +142_6-3 Q0 MARCO_10_790353427-2 34 -0.036076 hybrid +142_6-3 Q0 MARCO_05_1742002206-2 35 -0.036726 hybrid +142_6-3 Q0 MARCO_30_1079720281-5 36 -0.046617 hybrid +142_6-3 Q0 MARCO_31_1651583997-8 37 -0.048135 hybrid +142_6-3 Q0 MARCO_30_1025312089-5 38 -0.050659 hybrid +142_6-3 Q0 MARCO_28_984794031-5 39 -0.053603 hybrid +142_6-3 Q0 KILT_1437724-12 40 -0.055466 hybrid +142_6-3 Q0 MARCO_50_1516888163-5 41 -0.059092 hybrid +142_6-3 Q0 MARCO_15_106982860-3 42 -0.060384 hybrid +142_6-3 Q0 MARCO_30_130794419-5 43 -0.065163 hybrid +142_6-3 Q0 MARCO_32_1489108436-19 44 -0.067425 hybrid +142_6-3 Q0 MARCO_47_1601362260-8 45 -0.070687 hybrid +142_6-3 Q0 MARCO_22_1186915282-3 46 -0.072343 hybrid +142_6-3 Q0 MARCO_10_790344909-1 47 -0.072561 hybrid +142_6-3 Q0 MARCO_55_676979672-1 48 -0.073096 hybrid +142_6-3 Q0 MARCO_22_1186915282-2 49 -0.074848 hybrid +142_6-3 Q0 MARCO_30_1025312089-6 50 -0.074855 hybrid +142_6-3 Q0 KILT_9912418-1 51 -0.076615 hybrid +142_6-3 Q0 KILT_509059-2 52 -0.077031 hybrid +142_6-3 Q0 KILT_23378955-5 53 -0.078580 hybrid +142_6-3 Q0 KILT_2240648-7 54 -0.079793 hybrid +142_6-3 Q0 MARCO_29_1418924300-4 55 -0.085606 hybrid +142_6-3 Q0 MARCO_55_100583624-2 56 -0.086605 hybrid +142_6-3 Q0 KILT_7060542-1 57 -0.091051 hybrid +142_6-3 Q0 MARCO_45_1439678929-5 58 -0.093314 hybrid +142_6-3 Q0 MARCO_45_1439678929-3 59 -0.093314 hybrid +142_6-3 Q0 MARCO_29_1417537059-6 60 -0.094713 hybrid +142_6-3 Q0 MARCO_46_439620046-3 61 -0.101314 hybrid +142_6-3 Q0 MARCO_10_790344909-2 62 -0.111047 hybrid +142_6-3 Q0 KILT_12685175-1 63 -0.112668 hybrid +142_6-3 Q0 MARCO_20_232780208-1 64 -0.114586 hybrid +142_6-3 Q0 MARCO_22_1186906798-4 65 -0.126684 hybrid +142_6-3 Q0 MARCO_58_1734352472-2 66 -0.126961 hybrid +142_6-3 Q0 MARCO_28_986108984-5 67 -0.129374 hybrid +142_6-3 Q0 KILT_1727788-1 68 -0.129707 hybrid +142_6-3 Q0 MARCO_30_2013034285-1 69 -0.137320 hybrid +142_6-3 Q0 MARCO_22_1186915282-5 70 -0.137898 hybrid +142_6-3 Q0 MARCO_05_849036905-6 71 -0.142099 hybrid +142_6-3 Q0 MARCO_24_509111941-9 72 -0.142360 hybrid +142_6-3 Q0 MARCO_23_1186752642-11 73 -0.142883 hybrid +142_6-3 Q0 KILT_44507655-1 74 -0.143363 hybrid +142_6-3 Q0 MARCO_30_2012975151-4 75 -0.149247 hybrid +142_6-3 Q0 MARCO_30_1005023705-3 76 -0.150472 hybrid +142_6-3 Q0 MARCO_49_223042133-5 77 -0.150587 hybrid +142_6-3 Q0 MARCO_51_694777636-52 78 -0.150927 hybrid +142_6-3 Q0 KILT_6147532-1 79 -0.151989 hybrid +142_6-3 Q0 KILT_57997215-2 80 -0.154110 hybrid +142_6-3 Q0 MARCO_43_40663531-2 81 -0.154343 hybrid +142_6-3 Q0 MARCO_22_1583085106-4 82 -0.154938 hybrid +142_6-3 Q0 MARCO_30_2013002157-1 83 -0.160454 hybrid +142_6-3 Q0 KILT_6274865-7 84 -0.162407 hybrid +142_6-3 Q0 MARCO_35_128151915-16 85 -0.162855 hybrid +142_6-3 Q0 MARCO_09_437271584-3 86 -0.164401 hybrid +142_6-3 Q0 MARCO_09_437271584-9 87 -0.166077 hybrid +142_6-3 Q0 MARCO_35_131726592-3 88 -0.166160 hybrid +142_6-3 Q0 KILT_57086836-1 89 -0.169663 hybrid +142_6-3 Q0 MARCO_30_2013028110-2 90 -0.173479 hybrid +142_6-3 Q0 MARCO_28_986023168-5 91 -0.173768 hybrid +142_6-3 Q0 MARCO_35_128533405-3 92 -0.176546 hybrid +142_6-3 Q0 KILT_3021414-1 93 -0.177323 hybrid +142_6-3 Q0 MARCO_12_278047340-4 94 -0.178282 hybrid +142_6-3 Q0 KILT_5959458-1 95 -0.179717 hybrid +142_6-3 Q0 MARCO_29_1418510404-2 96 -0.181040 hybrid +142_6-3 Q0 KILT_30224834-1 97 -0.182142 hybrid +142_6-3 Q0 MARCO_06_484716332-1 98 -0.183921 hybrid +142_6-3 Q0 MARCO_12_278047340-2 99 -0.186227 hybrid +142_6-3 Q0 MARCO_35_128151915-13 100 -0.187353 hybrid +142_7-1 Q0 MARCO_30_152664236-9 1 0.500001 hybrid +142_7-1 Q0 MARCO_30_1078961907-4 2 0.441818 hybrid +142_7-1 Q0 MARCO_49_223385723-4 3 0.434028 hybrid +142_7-1 Q0 MARCO_30_1024441304-3 4 0.396878 hybrid +142_7-1 Q0 MARCO_30_152664236-2 5 0.297808 hybrid +142_7-1 Q0 MARCO_50_636961426-8 6 0.288464 hybrid +142_7-1 Q0 MARCO_36_1008296269-20 7 0.287390 hybrid +142_7-1 Q0 MARCO_38_608962355-3 8 0.282838 hybrid +142_7-1 Q0 MARCO_30_1078961907-3 9 0.282051 hybrid +142_7-1 Q0 MARCO_49_223385723-3 10 0.281335 hybrid +142_7-1 Q0 MARCO_30_152664236-7 11 0.263555 hybrid +142_7-1 Q0 MARCO_30_152664236-3 12 0.259693 hybrid +142_7-1 Q0 MARCO_05_1351112908-3 13 0.252630 hybrid +142_7-1 Q0 MARCO_30_1024441304-2 14 0.249727 hybrid +142_7-1 Q0 MARCO_05_1351112908-1 15 0.242507 hybrid +142_7-1 Q0 MARCO_30_1004083203-11 16 0.219963 hybrid +142_7-1 Q0 MARCO_55_1283960750-2 17 0.215411 hybrid +142_7-1 Q0 MARCO_30_1078961907-1 18 0.196746 hybrid +142_7-1 Q0 MARCO_30_1078961907-5 19 0.193024 hybrid +142_7-1 Q0 MARCO_30_1078961907-2 20 0.189603 hybrid +142_7-1 Q0 MARCO_55_1727451898-3 21 0.185964 hybrid +142_7-1 Q0 MARCO_19_2045799633-20 22 0.180368 hybrid +142_7-1 Q0 MARCO_36_1007618295-3 23 0.171204 hybrid +142_7-1 Q0 MARCO_30_152664236-1 24 0.145573 hybrid +142_7-1 Q0 MARCO_30_1083589263-4 25 0.142029 hybrid +142_7-1 Q0 MARCO_45_1439727349-6 26 0.140689 hybrid +142_7-1 Q0 MARCO_07_257786795-14 27 0.136973 hybrid +142_7-1 Q0 MARCO_30_151772794-9 28 0.135708 hybrid +142_7-1 Q0 MARCO_31_642282366-4 29 0.132207 hybrid +142_7-1 Q0 MARCO_30_1092501447-2 30 0.124265 hybrid +142_7-1 Q0 MARCO_55_1288546127-2 31 0.120352 hybrid +142_7-1 Q0 MARCO_55_1708317826-2 32 0.100919 hybrid +142_7-1 Q0 MARCO_30_152664236-8 33 0.085288 hybrid +142_7-1 Q0 MARCO_30_1004054024-8 34 0.081487 hybrid +142_7-1 Q0 MARCO_43_782572363-2 35 0.080759 hybrid +142_7-1 Q0 MARCO_45_1439705889-5 36 0.060588 hybrid +142_7-1 Q0 MARCO_55_248291775-14 37 0.053457 hybrid +142_7-1 Q0 MARCO_05_1351112908-4 38 0.053274 hybrid +142_7-1 Q0 MARCO_21_1442314510-7 39 0.045206 hybrid +142_7-1 Q0 MARCO_55_1704783769-7 40 0.035049 hybrid +142_7-1 Q0 MARCO_45_1437729237-5 41 0.030191 hybrid +142_7-1 Q0 MARCO_05_1351112908-2 42 0.027886 hybrid +142_7-1 Q0 MARCO_30_1024441304-1 43 0.024766 hybrid +142_7-1 Q0 KILT_10015857-2 44 0.021583 hybrid +142_7-1 Q0 MARCO_43_782572363-1 45 0.018912 hybrid +142_7-1 Q0 MARCO_30_152664236-5 46 0.017429 hybrid +142_7-1 Q0 MARCO_49_223385723-1 47 0.016378 hybrid +142_7-1 Q0 MARCO_45_1439575992-7 48 0.013512 hybrid +142_7-1 Q0 MARCO_30_1083672332-6 49 0.010272 hybrid +142_7-1 Q0 MARCO_30_151678069-13 50 0.009751 hybrid +142_7-1 Q0 MARCO_30_92584521-5 51 0.009135 hybrid +142_7-1 Q0 MARCO_35_128337429-3 52 0.004094 hybrid +142_7-1 Q0 KILT_1368154-4 53 0.003776 hybrid +142_7-1 Q0 MARCO_29_1418275757-2 54 -0.000807 hybrid +142_7-1 Q0 MARCO_35_128151915-16 55 -0.008148 hybrid +142_7-1 Q0 MARCO_30_151678069-14 56 -0.017022 hybrid +142_7-1 Q0 MARCO_30_1004788738-2 57 -0.019667 hybrid +142_7-1 Q0 MARCO_08_1122345282-3 58 -0.021763 hybrid +142_7-1 Q0 MARCO_35_128320398-1 59 -0.023996 hybrid +142_7-1 Q0 MARCO_45_1436807476-6 60 -0.027042 hybrid +142_7-1 Q0 MARCO_30_1078961907-7 61 -0.028468 hybrid +142_7-1 Q0 MARCO_45_1438053231-2 62 -0.030414 hybrid +142_7-1 Q0 MARCO_49_223385723-2 63 -0.035816 hybrid +142_7-1 Q0 KILT_18400644-2 64 -0.037938 hybrid +142_7-1 Q0 MARCO_03_444110329-1 65 -0.045931 hybrid +142_7-1 Q0 MARCO_55_1728776510-1 66 -0.060665 hybrid +142_7-1 Q0 MARCO_36_1010460626-9 67 -0.064696 hybrid +142_7-1 Q0 MARCO_07_257786795-11 68 -0.067611 hybrid +142_7-1 Q0 MARCO_51_633692586-4 69 -0.072947 hybrid +142_7-1 Q0 MARCO_05_812510161-15 70 -0.079574 hybrid +142_7-1 Q0 MARCO_47_1601820628-8 71 -0.083574 hybrid +142_7-1 Q0 MARCO_35_128533405-3 72 -0.088575 hybrid +142_7-1 Q0 MARCO_55_1703873592-3 73 -0.093685 hybrid +142_7-1 Q0 MARCO_45_1437902823-5 74 -0.097120 hybrid +142_7-1 Q0 MARCO_51_810027140-11 75 -0.102935 hybrid +142_7-1 Q0 MARCO_47_1601820628-7 76 -0.105030 hybrid +142_7-1 Q0 MARCO_45_1436564747-3 77 -0.108534 hybrid +142_7-1 Q0 MARCO_30_1094137114-5 78 -0.108981 hybrid +142_7-1 Q0 MARCO_43_48710186-5 79 -0.115711 hybrid +142_7-1 Q0 MARCO_30_152664236-4 80 -0.120423 hybrid +142_7-1 Q0 MARCO_26_725548530-3 81 -0.122502 hybrid +142_7-1 Q0 MARCO_55_1706886501-6 82 -0.123684 hybrid +142_7-1 Q0 MARCO_24_1139351957-5 83 -0.125877 hybrid +142_7-1 Q0 MARCO_30_1004488553-6 84 -0.128030 hybrid +142_7-1 Q0 MARCO_30_152664236-10 85 -0.130681 hybrid +142_7-1 Q0 MARCO_22_1579409830-7 86 -0.131577 hybrid +142_7-1 Q0 KILT_41802821-7 87 -0.132238 hybrid +142_7-1 Q0 MARCO_30_1090553577-5 88 -0.135791 hybrid +142_7-1 Q0 MARCO_30_1042850292-7 89 -0.136862 hybrid +142_7-1 Q0 MARCO_30_1094121838-13 90 -0.139160 hybrid +142_7-1 Q0 MARCO_29_1418821179-3 91 -0.144399 hybrid +142_7-1 Q0 MARCO_45_1439727349-5 92 -0.148439 hybrid +142_7-1 Q0 MARCO_30_1041273125-4 93 -0.149713 hybrid +142_7-1 Q0 KILT_59860173-1 94 -0.152364 hybrid +142_7-1 Q0 MARCO_30_1002466312-5 95 -0.153056 hybrid +142_7-1 Q0 MARCO_42_1751933752-16 96 -0.157107 hybrid +142_7-1 Q0 MARCO_48_1597074173-7 97 -0.159953 hybrid +142_7-1 Q0 MARCO_36_1008296269-7 98 -0.160474 hybrid +142_7-1 Q0 MARCO_29_1418594516-4 99 -0.163056 hybrid +142_7-1 Q0 MARCO_42_1365484837-8 100 -0.163483 hybrid +142_8-1 Q0 MARCO_22_1187170512-2 1 0.500002 hybrid +142_8-1 Q0 MARCO_22_1187170512-5 2 0.495327 hybrid +142_8-1 Q0 MARCO_55_1284512637-4 3 0.462405 hybrid +142_8-1 Q0 MARCO_35_128289220-13 4 0.454218 hybrid +142_8-1 Q0 MARCO_22_1187181374-4 5 0.390269 hybrid +142_8-1 Q0 MARCO_00_1042400454-3 6 0.388946 hybrid +142_8-1 Q0 MARCO_55_1284502929-6 7 0.376534 hybrid +142_8-1 Q0 MARCO_22_1187181374-3 8 0.374504 hybrid +142_8-1 Q0 MARCO_45_1437526383-2 9 0.368806 hybrid +142_8-1 Q0 MARCO_50_1525328921-20 10 0.362851 hybrid +142_8-1 Q0 MARCO_50_1446258360-2 11 0.347902 hybrid +142_8-1 Q0 MARCO_55_1284502929-4 12 0.328350 hybrid +142_8-1 Q0 MARCO_22_1187181374-5 13 0.315414 hybrid +142_8-1 Q0 MARCO_36_1581532185-2 14 0.309820 hybrid +142_8-1 Q0 MARCO_22_1187170512-1 15 0.293016 hybrid +142_8-1 Q0 KILT_5489-53 16 0.292939 hybrid +142_8-1 Q0 KILT_5494-1 17 0.292372 hybrid +142_8-1 Q0 MARCO_22_1187170512-6 18 0.271936 hybrid +142_8-1 Q0 MARCO_24_1126171266-13 19 0.264667 hybrid +142_8-1 Q0 MARCO_58_1505550141-6 20 0.264199 hybrid +142_8-1 Q0 MARCO_33_1239673349-1 21 0.263731 hybrid +142_8-1 Q0 MARCO_22_1187170512-7 22 0.251461 hybrid +142_8-1 Q0 MARCO_43_782020638-7 23 0.245502 hybrid +142_8-1 Q0 MARCO_24_1136457662-6 24 0.232665 hybrid +142_8-1 Q0 MARCO_05_486423848-1 25 0.214499 hybrid +142_8-1 Q0 KILT_10873028-8 26 0.213134 hybrid +142_8-1 Q0 MARCO_58_1508678720-1 27 0.210957 hybrid +142_8-1 Q0 MARCO_58_1505550141-1 28 0.204608 hybrid +142_8-1 Q0 MARCO_19_2483609053-12 29 0.200400 hybrid +142_8-1 Q0 MARCO_58_1508163333-1 30 0.191758 hybrid +142_8-1 Q0 MARCO_00_1042413828-4 31 0.191427 hybrid +142_8-1 Q0 KILT_299550-1 32 0.185039 hybrid +142_8-1 Q0 MARCO_10_126605894-7 33 0.177637 hybrid +142_8-1 Q0 KILT_5489-28 34 0.172476 hybrid +142_8-1 Q0 KILT_12585491-5 35 0.170257 hybrid +142_8-1 Q0 KILT_5529992-3 36 0.169754 hybrid +142_8-1 Q0 MARCO_22_1187181374-1 37 0.168376 hybrid +142_8-1 Q0 MARCO_00_1042370166-3 38 0.164607 hybrid +142_8-1 Q0 MARCO_22_1187170512-3 39 0.153006 hybrid +142_8-1 Q0 MARCO_00_1042337820-1 40 0.146759 hybrid +142_8-1 Q0 KILT_5489-54 41 0.144771 hybrid +142_8-1 Q0 MARCO_05_486427109-3 42 0.143440 hybrid +142_8-1 Q0 KILT_5489-52 43 0.142685 hybrid +142_8-1 Q0 KILT_5489-1 44 0.138301 hybrid +142_8-1 Q0 MARCO_36_1806742080-1 45 0.136807 hybrid +142_8-1 Q0 MARCO_22_1187170512-4 46 0.135807 hybrid +142_8-1 Q0 MARCO_10_799166704-2 47 0.133106 hybrid +142_8-1 Q0 MARCO_58_1508163333-3 48 0.128689 hybrid +142_8-1 Q0 MARCO_58_1506784632-3 49 0.126602 hybrid +142_8-1 Q0 MARCO_35_128374913-1 50 0.126396 hybrid +142_8-1 Q0 MARCO_13_661344710-1 51 0.124953 hybrid +142_8-1 Q0 MARCO_03_446463952-4 52 0.123107 hybrid +142_8-1 Q0 MARCO_57_1435853555-9 53 0.122291 hybrid +142_8-1 Q0 KILT_5489-37 54 0.120711 hybrid +142_8-1 Q0 MARCO_55_1284502929-1 55 0.106887 hybrid +142_8-1 Q0 MARCO_22_1190417156-1 56 0.101774 hybrid +142_8-1 Q0 MARCO_30_1082827875-25 57 0.100219 hybrid +142_8-1 Q0 MARCO_22_1187170512-9 58 0.097978 hybrid +142_8-1 Q0 MARCO_36_1008590407-3 59 0.097669 hybrid +142_8-1 Q0 MARCO_25_1694780894-4 60 0.096969 hybrid +142_8-1 Q0 KILT_16181756-5 61 0.089714 hybrid +142_8-1 Q0 MARCO_55_248583746-7 62 0.088662 hybrid +142_8-1 Q0 MARCO_27_913333413-1 63 0.087807 hybrid +142_8-1 Q0 MARCO_19_2483609053-11 64 0.087588 hybrid +142_8-1 Q0 MARCO_50_1525328921-10 65 0.085571 hybrid +142_8-1 Q0 MARCO_35_128289220-12 66 0.085463 hybrid +142_8-1 Q0 MARCO_58_1508573003-2 67 0.084278 hybrid +142_8-1 Q0 MARCO_23_489520494-1 68 0.082647 hybrid +142_8-1 Q0 KILT_5494-9 69 0.082054 hybrid +142_8-1 Q0 KILT_5494-8 70 0.071527 hybrid +142_8-1 Q0 KILT_299550-3 71 0.067719 hybrid +142_8-1 Q0 MARCO_50_1446258360-1 72 0.065765 hybrid +142_8-1 Q0 KILT_44716276-1 73 0.059480 hybrid +142_8-1 Q0 MARCO_39_910717939-1 74 0.058368 hybrid +142_8-1 Q0 MARCO_39_910717939-3 75 0.058364 hybrid +142_8-1 Q0 MARCO_30_1079478959-2 76 0.053521 hybrid +142_8-1 Q0 MARCO_03_447715492-6 77 0.044535 hybrid +142_8-1 Q0 MARCO_50_2164037813-2 78 0.041130 hybrid +142_8-1 Q0 KILT_180051-3 79 0.041023 hybrid +142_8-1 Q0 KILT_5494-5 80 0.034776 hybrid +142_8-1 Q0 MARCO_03_447715492-1 81 0.032303 hybrid +142_8-1 Q0 MARCO_55_251439026-6 82 0.031595 hybrid +142_8-1 Q0 MARCO_35_128289220-14 83 0.031277 hybrid +142_8-1 Q0 MARCO_04_1213656629-1 84 0.029740 hybrid +142_8-1 Q0 MARCO_47_1601021495-2 85 0.028800 hybrid +142_8-1 Q0 KILT_5489-62 86 0.027078 hybrid +142_8-1 Q0 MARCO_00_1042337820-2 87 0.026417 hybrid +142_8-1 Q0 KILT_30601611-4 88 0.025202 hybrid +142_8-1 Q0 MARCO_35_128374913-10 89 0.023798 hybrid +142_8-1 Q0 MARCO_58_1505550141-5 90 0.022570 hybrid +142_8-1 Q0 KILT_1548253-4 91 0.020990 hybrid +142_8-1 Q0 MARCO_30_901834353-3 92 0.020247 hybrid +142_8-1 Q0 KILT_12585491-1 93 0.019865 hybrid +142_8-1 Q0 KILT_5489-61 94 0.019470 hybrid +142_8-1 Q0 MARCO_00_1042400454-1 95 0.019140 hybrid +142_8-1 Q0 MARCO_50_1446258360-9 96 0.015280 hybrid +142_8-1 Q0 KILT_5489-46 97 0.014447 hybrid +142_8-1 Q0 KILT_5489-19 98 0.013142 hybrid +142_8-1 Q0 MARCO_47_1601411016-6 99 0.009548 hybrid +142_8-1 Q0 MARCO_00_1042370166-5 100 0.009158 hybrid +142_9-1 Q0 MARCO_58_1508113613-1 1 0.500000 hybrid +142_9-1 Q0 MARCO_58_1506642595-1 2 0.482309 hybrid +142_9-1 Q0 MARCO_47_1602505698-3 3 0.441933 hybrid +142_9-1 Q0 MARCO_06_1240614560-37 4 0.413389 hybrid +142_9-1 Q0 MARCO_58_1509104985-4 5 0.378844 hybrid +142_9-1 Q0 MARCO_54_676656745-2 6 0.344571 hybrid +142_9-1 Q0 MARCO_54_676656745-4 7 0.344571 hybrid +142_9-1 Q0 MARCO_54_676656745-1 8 0.304990 hybrid +142_9-1 Q0 MARCO_31_899564358-3 9 0.262600 hybrid +142_9-1 Q0 MARCO_22_1186915282-3 10 0.244119 hybrid +142_9-1 Q0 KILT_14672486-3 11 0.228723 hybrid +142_9-1 Q0 MARCO_58_1509104985-3 12 0.216394 hybrid +142_9-1 Q0 MARCO_22_1186906798-1 13 0.215848 hybrid +142_9-1 Q0 MARCO_50_1441723234-18 14 0.211155 hybrid +142_9-1 Q0 MARCO_19_2045799633-26 15 0.198178 hybrid +142_9-1 Q0 MARCO_47_1604104921-3 16 0.190174 hybrid +142_9-1 Q0 MARCO_22_1186915282-2 17 0.175399 hybrid +142_9-1 Q0 MARCO_16_3046749093-49 18 0.173315 hybrid +142_9-1 Q0 MARCO_10_790353427-4 19 0.170779 hybrid +142_9-1 Q0 MARCO_16_442874124-1 20 0.169181 hybrid +142_9-1 Q0 MARCO_37_173589964-2 21 0.163893 hybrid +142_9-1 Q0 MARCO_58_1508113613-3 22 0.162132 hybrid +142_9-1 Q0 KILT_26507946-2 23 0.159673 hybrid +142_9-1 Q0 MARCO_58_1508113613-2 24 0.156305 hybrid +142_9-1 Q0 KILT_28820502-2 25 0.150557 hybrid +142_9-1 Q0 MARCO_41_1117115865-63 26 0.149048 hybrid +142_9-1 Q0 MARCO_58_1506642595-3 27 0.143801 hybrid +142_9-1 Q0 MARCO_17_693365828-1 28 0.142366 hybrid +142_9-1 Q0 MARCO_05_848975837-1 29 0.135826 hybrid +142_9-1 Q0 MARCO_19_2045799633-19 30 0.132882 hybrid +142_9-1 Q0 KILT_34879285-1 31 0.132279 hybrid +142_9-1 Q0 KILT_1839572-1 32 0.130950 hybrid +142_9-1 Q0 MARCO_47_1601362260-4 33 0.129959 hybrid +142_9-1 Q0 MARCO_06_1149196799-179 34 0.128067 hybrid +142_9-1 Q0 MARCO_43_742228802-80 35 0.121866 hybrid +142_9-1 Q0 MARCO_06_1240614560-44 36 0.121792 hybrid +142_9-1 Q0 MARCO_58_1505463998-1 37 0.120198 hybrid +142_9-1 Q0 MARCO_50_1936673617-24 38 0.120157 hybrid +142_9-1 Q0 MARCO_05_848957007-1 39 0.117006 hybrid +142_9-1 Q0 MARCO_47_1601362260-10 40 0.115518 hybrid +142_9-1 Q0 MARCO_16_442874124-2 41 0.110560 hybrid +142_9-1 Q0 MARCO_47_1601010927-2 42 0.109015 hybrid +142_9-1 Q0 MARCO_06_1240614560-32 43 0.107490 hybrid +142_9-1 Q0 MARCO_22_1186906798-5 44 0.106638 hybrid +142_9-1 Q0 MARCO_10_790353427-1 45 0.102324 hybrid +142_9-1 Q0 MARCO_35_128533405-3 46 0.093685 hybrid +142_9-1 Q0 MARCO_47_1602505698-4 47 0.092828 hybrid +142_9-1 Q0 MARCO_58_1505463998-3 48 0.090035 hybrid +142_9-1 Q0 KILT_35894206-10 49 0.089236 hybrid +142_9-1 Q0 MARCO_47_1602505698-2 50 0.085416 hybrid +142_9-1 Q0 MARCO_58_1509104985-2 51 0.083973 hybrid +142_9-1 Q0 MARCO_27_1334580338-2 52 0.078310 hybrid +142_9-1 Q0 MARCO_05_848986452-2 53 0.075309 hybrid +142_9-1 Q0 MARCO_18_3127967367-2 54 0.068679 hybrid +142_9-1 Q0 MARCO_10_790347853-1 55 0.065813 hybrid +142_9-1 Q0 MARCO_05_848957007-4 56 0.063701 hybrid +142_9-1 Q0 MARCO_16_3046944575-20 57 0.056823 hybrid +142_9-1 Q0 MARCO_47_1604104921-11 58 0.055478 hybrid +142_9-1 Q0 KILT_592808-3 59 0.053431 hybrid +142_9-1 Q0 MARCO_50_1458626850-10 60 0.053186 hybrid +142_9-1 Q0 MARCO_22_1186915282-1 61 0.051584 hybrid +142_9-1 Q0 MARCO_16_3046749093-4 62 0.046736 hybrid +142_9-1 Q0 MARCO_22_1186906798-2 63 0.043931 hybrid +142_9-1 Q0 MARCO_08_1480326385-15 64 0.043833 hybrid +142_9-1 Q0 KILT_35894206-5 65 0.039475 hybrid +142_9-1 Q0 KILT_8076950-1 66 0.036935 hybrid +142_9-1 Q0 MARCO_03_1387185114-2 67 0.034150 hybrid +142_9-1 Q0 MARCO_22_1186906798-3 68 0.029461 hybrid +142_9-1 Q0 MARCO_37_173589964-3 69 0.029274 hybrid +142_9-1 Q0 KILT_6283124-5 70 0.021968 hybrid +142_9-1 Q0 MARCO_19_2045799633-18 71 0.016998 hybrid +142_9-1 Q0 MARCO_10_120187103-9 72 0.013940 hybrid +142_9-1 Q0 MARCO_19_2045799633-5 73 0.012688 hybrid +142_9-1 Q0 MARCO_30_1004488553-6 74 0.011958 hybrid +142_9-1 Q0 MARCO_50_1458626850-15 75 0.011094 hybrid +142_9-1 Q0 MARCO_16_3046749093-40 76 0.009222 hybrid +142_9-1 Q0 MARCO_06_1240614560-40 77 0.007037 hybrid +142_9-1 Q0 KILT_2810466-10 78 0.006784 hybrid +142_9-1 Q0 MARCO_30_1078961907-5 79 0.006128 hybrid +142_9-1 Q0 MARCO_40_1583135483-1 80 0.005300 hybrid +142_9-1 Q0 MARCO_05_848957007-12 81 0.004159 hybrid +142_9-1 Q0 MARCO_16_3046749093-66 82 0.003914 hybrid +142_9-1 Q0 MARCO_47_1602505698-5 83 0.003837 hybrid +142_9-1 Q0 KILT_8076950-6 84 -0.000041 hybrid +142_9-1 Q0 MARCO_06_1149196799-139 85 -0.004632 hybrid +142_9-1 Q0 MARCO_19_2045799633-6 86 -0.006148 hybrid +142_9-1 Q0 KILT_35894206-11 87 -0.006336 hybrid +142_9-1 Q0 MARCO_32_884765978-2 88 -0.007632 hybrid +142_9-1 Q0 MARCO_58_1505463998-2 89 -0.007897 hybrid +142_9-1 Q0 MARCO_47_1601362260-9 90 -0.009080 hybrid +142_9-1 Q0 MARCO_08_454689269-10 91 -0.009785 hybrid +142_9-1 Q0 MARCO_47_1604104921-6 92 -0.015477 hybrid +142_9-1 Q0 MARCO_55_247577966-6 93 -0.021429 hybrid +142_9-1 Q0 MARCO_30_1004488553-3 94 -0.023052 hybrid +142_9-1 Q0 MARCO_45_1248533362-1 95 -0.024830 hybrid +142_9-1 Q0 KILT_8076950-4 96 -0.025902 hybrid +142_9-1 Q0 MARCO_17_693365828-5 97 -0.026958 hybrid +142_9-1 Q0 MARCO_22_1186877744-7 98 -0.027517 hybrid +142_9-1 Q0 MARCO_55_1269857714-2 99 -0.029641 hybrid +142_9-1 Q0 KILT_48730417-1 100 -0.030277 hybrid +143_1-1 Q0 MARCO_14_1190072833-1 1 0.499998 hybrid +143_1-1 Q0 KILT_2964862-7 2 0.477042 hybrid +143_1-1 Q0 MARCO_40_667182643-1 3 0.474081 hybrid +143_1-1 Q0 MARCO_36_839237348-5 4 0.472819 hybrid +143_1-1 Q0 MARCO_36_839237348-4 5 0.444846 hybrid +143_1-1 Q0 MARCO_14_1190072833-2 6 0.295988 hybrid +143_1-1 Q0 MARCO_44_623736186-5 7 0.291604 hybrid +143_1-1 Q0 MARCO_29_1331485035-6 8 0.244332 hybrid +143_1-1 Q0 MARCO_13_697608169-2 9 0.239490 hybrid +143_1-1 Q0 MARCO_40_266486787-50 10 0.228505 hybrid +143_1-1 Q0 MARCO_04_185169155-4 11 0.223690 hybrid +143_1-1 Q0 MARCO_36_839920756-4 12 0.219289 hybrid +143_1-1 Q0 MARCO_35_22431210-5 13 0.185751 hybrid +143_1-1 Q0 MARCO_36_28162569-5 14 0.182686 hybrid +143_1-1 Q0 MARCO_36_28162569-4 15 0.169366 hybrid +143_1-1 Q0 MARCO_13_1224118800-1 16 0.136511 hybrid +143_1-1 Q0 MARCO_27_586060148-22 17 0.100113 hybrid +143_1-1 Q0 MARCO_35_22431210-4 18 0.085652 hybrid +143_1-1 Q0 MARCO_27_586060148-26 19 0.063392 hybrid +143_1-1 Q0 KILT_2964862-1 20 0.062763 hybrid +143_1-1 Q0 MARCO_14_1190072833-3 21 0.061911 hybrid +143_1-1 Q0 MARCO_36_28162569-2 22 0.059321 hybrid +143_1-1 Q0 KILT_3073096-1 23 0.052733 hybrid +143_1-1 Q0 MARCO_14_1189603229-6 24 0.023347 hybrid +143_1-1 Q0 MARCO_35_1469847018-2 25 0.020911 hybrid +143_1-1 Q0 KILT_1437154-1 26 0.011816 hybrid +143_1-1 Q0 MARCO_14_1190072833-6 27 0.009155 hybrid +143_1-1 Q0 KILT_42371251-1 28 0.007809 hybrid +143_1-1 Q0 MARCO_45_532277027-1 29 0.003711 hybrid +143_1-1 Q0 MARCO_13_697608169-3 30 0.003338 hybrid +143_1-1 Q0 KILT_8385046-1 31 0.001904 hybrid +143_1-1 Q0 MARCO_45_535496133-1 32 0.001013 hybrid +143_1-1 Q0 MARCO_13_1224118800-2 33 -0.000121 hybrid +143_1-1 Q0 KILT_3049649-2 34 -0.001023 hybrid +143_1-1 Q0 MARCO_40_274248920-88 35 -0.005663 hybrid +143_1-1 Q0 MARCO_45_532260364-1 36 -0.007611 hybrid +143_1-1 Q0 MARCO_00_1107294789-1 37 -0.008613 hybrid +143_1-1 Q0 MARCO_36_28162569-3 38 -0.008936 hybrid +143_1-1 Q0 MARCO_54_319242251-7 39 -0.014690 hybrid +143_1-1 Q0 MARCO_35_336625773-8 40 -0.018478 hybrid +143_1-1 Q0 MARCO_49_1518490588-10 41 -0.021173 hybrid +143_1-1 Q0 MARCO_14_1190072833-4 42 -0.025150 hybrid +143_1-1 Q0 KILT_378204-1 43 -0.028781 hybrid +143_1-1 Q0 MARCO_13_1224118800-3 44 -0.047053 hybrid +143_1-1 Q0 MARCO_45_532291240-1 45 -0.047336 hybrid +143_1-1 Q0 KILT_3049649-1 46 -0.049826 hybrid +143_1-1 Q0 MARCO_29_1332813355-3 47 -0.051313 hybrid +143_1-1 Q0 MARCO_29_1332813355-1 48 -0.053392 hybrid +143_1-1 Q0 MARCO_29_1332813355-6 49 -0.059146 hybrid +143_1-1 Q0 KILT_1297457-4 50 -0.060996 hybrid +143_1-1 Q0 MARCO_32_1796230465-4 51 -0.077960 hybrid +143_1-1 Q0 MARCO_35_305195648-5 52 -0.085231 hybrid +143_1-1 Q0 MARCO_51_1999574201-19 53 -0.086331 hybrid +143_1-1 Q0 MARCO_19_2556756670-1 54 -0.090695 hybrid +143_1-1 Q0 MARCO_50_1933847318-6 55 -0.092731 hybrid +143_1-1 Q0 KILT_3479210-1 56 -0.094756 hybrid +143_1-1 Q0 MARCO_27_1643809758-3 57 -0.095823 hybrid +143_1-1 Q0 KILT_3156313-1 58 -0.101782 hybrid +143_1-1 Q0 MARCO_54_322640260-3 59 -0.103699 hybrid +143_1-1 Q0 KILT_921278-10 60 -0.103945 hybrid +143_1-1 Q0 MARCO_13_798486522-1 61 -0.106640 hybrid +143_1-1 Q0 KILT_39905985-1 62 -0.106694 hybrid +143_1-1 Q0 MARCO_15_1108520612-3 63 -0.107219 hybrid +143_1-1 Q0 MARCO_54_322090285-2 64 -0.112642 hybrid +143_1-1 Q0 MARCO_39_610949138-1 65 -0.112763 hybrid +143_1-1 Q0 MARCO_26_1061461405-2 66 -0.113517 hybrid +143_1-1 Q0 KILT_242556-1 67 -0.114883 hybrid +143_1-1 Q0 MARCO_23_1279898335-64 68 -0.117073 hybrid +143_1-1 Q0 MARCO_30_898932082-16 69 -0.117746 hybrid +143_1-1 Q0 MARCO_43_772414784-2 70 -0.119893 hybrid +143_1-1 Q0 MARCO_35_305195648-4 71 -0.122699 hybrid +143_1-1 Q0 MARCO_40_266323569-17 72 -0.123978 hybrid +143_1-1 Q0 MARCO_44_624050066-7 73 -0.124018 hybrid +143_1-1 Q0 MARCO_12_1869120660-1 74 -0.128355 hybrid +143_1-1 Q0 MARCO_15_102106212-1 75 -0.128762 hybrid +143_1-1 Q0 MARCO_50_1666175963-11 76 -0.128984 hybrid +143_1-1 Q0 MARCO_14_1550501220-11 77 -0.129166 hybrid +143_1-1 Q0 MARCO_12_1868962042-1 78 -0.133452 hybrid +143_1-1 Q0 MARCO_00_1107294789-2 79 -0.133503 hybrid +143_1-1 Q0 MARCO_40_339551778-60 80 -0.134314 hybrid +143_1-1 Q0 MARCO_21_1148245773-7 81 -0.135952 hybrid +143_1-1 Q0 MARCO_14_1190072833-5 82 -0.137315 hybrid +143_1-1 Q0 MARCO_30_900180283-25 83 -0.137358 hybrid +143_1-1 Q0 MARCO_54_1473144022-2 84 -0.139293 hybrid +143_1-1 Q0 MARCO_45_532247236-1 85 -0.143310 hybrid +143_1-1 Q0 MARCO_22_992740285-2 86 -0.143310 hybrid +143_1-1 Q0 MARCO_14_1191611578-3 87 -0.145097 hybrid +143_1-1 Q0 MARCO_27_1566172206-61 88 -0.149861 hybrid +143_1-1 Q0 MARCO_14_1551133905-3 89 -0.150423 hybrid +143_1-1 Q0 MARCO_40_311823724-177 90 -0.150544 hybrid +143_1-1 Q0 MARCO_13_992636996-1 91 -0.151291 hybrid +143_1-1 Q0 MARCO_44_628258168-3 92 -0.155904 hybrid +143_1-1 Q0 KILT_27250860-1 93 -0.159430 hybrid +143_1-1 Q0 MARCO_30_899028894-12 94 -0.159491 hybrid +143_1-1 Q0 KILT_19607864-1 95 -0.162549 hybrid +143_1-1 Q0 MARCO_15_102108771-2 96 -0.162727 hybrid +143_1-1 Q0 MARCO_13_696581433-7 97 -0.162785 hybrid +143_1-1 Q0 MARCO_41_915204227-6 98 -0.163548 hybrid +143_1-1 Q0 MARCO_45_535403383-1 99 -0.163888 hybrid +143_1-1 Q0 MARCO_10_1691988841-3 100 -0.164487 hybrid +143_1-11 Q0 MARCO_14_944389547-91 1 0.499997 hybrid +143_1-11 Q0 MARCO_56_1319363153-3 2 0.471680 hybrid +143_1-11 Q0 MARCO_30_1095084847-6 3 0.467031 hybrid +143_1-11 Q0 MARCO_27_1745346050-81 4 0.430959 hybrid +143_1-11 Q0 MARCO_19_2550444305-16 5 0.395227 hybrid +143_1-11 Q0 MARCO_15_936995072-29 6 0.386361 hybrid +143_1-11 Q0 MARCO_30_1095084847-9 7 0.372973 hybrid +143_1-11 Q0 MARCO_15_1085607141-2 8 0.369096 hybrid +143_1-11 Q0 MARCO_19_2550544750-18 9 0.354379 hybrid +143_1-11 Q0 MARCO_15_945504928-9 10 0.330461 hybrid +143_1-11 Q0 MARCO_15_310854948-1 11 0.318114 hybrid +143_1-11 Q0 MARCO_49_29682614-3 12 0.313293 hybrid +143_1-11 Q0 MARCO_41_1130431634-45 13 0.312059 hybrid +143_1-11 Q0 MARCO_28_536389283-7 14 0.302463 hybrid +143_1-11 Q0 MARCO_15_935748243-16 15 0.299332 hybrid +143_1-11 Q0 MARCO_36_1582385607-4 16 0.292993 hybrid +143_1-11 Q0 MARCO_09_158614691-11 17 0.289217 hybrid +143_1-11 Q0 MARCO_50_182489321-1 18 0.266309 hybrid +143_1-11 Q0 MARCO_14_1525627718-4 19 0.264457 hybrid +143_1-11 Q0 MARCO_15_936932957-28 20 0.264269 hybrid +143_1-11 Q0 KILT_20287616-8 21 0.262554 hybrid +143_1-11 Q0 MARCO_15_936932957-27 22 0.252516 hybrid +143_1-11 Q0 MARCO_14_1482196329-82 23 0.244533 hybrid +143_1-11 Q0 MARCO_23_1594743536-4 24 0.235109 hybrid +143_1-11 Q0 MARCO_13_404945687-1 25 0.234627 hybrid +143_1-11 Q0 MARCO_28_1236471318-6 26 0.231186 hybrid +143_1-11 Q0 MARCO_48_371436668-2 27 0.227370 hybrid +143_1-11 Q0 MARCO_49_34603773-11 28 0.217509 hybrid +143_1-11 Q0 MARCO_17_688868302-10 29 0.217048 hybrid +143_1-11 Q0 MARCO_04_322329232-5 30 0.210120 hybrid +143_1-11 Q0 MARCO_04_322329232-3 31 0.210120 hybrid +143_1-11 Q0 MARCO_23_32136638-16 32 0.208847 hybrid +143_1-11 Q0 MARCO_18_2387411650-5 33 0.201782 hybrid +143_1-11 Q0 KILT_6232856-2 34 0.195525 hybrid +143_1-11 Q0 MARCO_55_814960335-16 35 0.191572 hybrid +143_1-11 Q0 MARCO_45_1031850468-4 36 0.187517 hybrid +143_1-11 Q0 MARCO_26_1065461509-6 37 0.185482 hybrid +143_1-11 Q0 MARCO_28_542448379-9 38 0.181630 hybrid +143_1-11 Q0 MARCO_55_683017276-7 39 0.171622 hybrid +143_1-11 Q0 MARCO_09_158614691-12 40 0.165553 hybrid +143_1-11 Q0 MARCO_44_1166547650-8 41 0.158554 hybrid +143_1-11 Q0 MARCO_26_729489835-1 42 0.157687 hybrid +143_1-11 Q0 MARCO_45_1578904267-6 43 0.151993 hybrid +143_1-11 Q0 MARCO_15_1466758061-5 44 0.147603 hybrid +143_1-11 Q0 MARCO_28_173335343-7 45 0.146512 hybrid +143_1-11 Q0 MARCO_15_941475508-21 46 0.137514 hybrid +143_1-11 Q0 MARCO_28_1308417846-2 47 0.135271 hybrid +143_1-11 Q0 MARCO_15_1051974412-8 48 0.128998 hybrid +143_1-11 Q0 MARCO_59_432667656-2 49 0.121097 hybrid +143_1-11 Q0 MARCO_12_130093151-21 50 0.120559 hybrid +143_1-11 Q0 MARCO_14_602961200-6 51 0.118742 hybrid +143_1-11 Q0 MARCO_17_689119586-2 52 0.116458 hybrid +143_1-11 Q0 MARCO_15_936995072-6 53 0.108440 hybrid +143_1-11 Q0 MARCO_27_1148578981-7 54 0.108425 hybrid +143_1-11 Q0 KILT_32729903-1 55 0.101366 hybrid +143_1-11 Q0 MARCO_55_1730102788-3 56 0.101071 hybrid +143_1-11 Q0 MARCO_52_685027658-12 57 0.100249 hybrid +143_1-11 Q0 MARCO_14_548247347-6 58 0.098894 hybrid +143_1-11 Q0 MARCO_17_1840463678-7 59 0.098554 hybrid +143_1-11 Q0 MARCO_02_1121518626-1 60 0.097138 hybrid +143_1-11 Q0 MARCO_15_941749332-68 61 0.090673 hybrid +143_1-11 Q0 MARCO_50_1679177489-10 62 0.087958 hybrid +143_1-11 Q0 MARCO_24_722865819-1 63 0.084268 hybrid +143_1-11 Q0 MARCO_22_242457730-4 64 0.080528 hybrid +143_1-11 Q0 MARCO_14_1525750651-6 65 0.071596 hybrid +143_1-11 Q0 MARCO_15_592317826-6 66 0.070104 hybrid +143_1-11 Q0 MARCO_35_331876054-2 67 0.069835 hybrid +143_1-11 Q0 MARCO_53_1490802196-2 68 0.062198 hybrid +143_1-11 Q0 MARCO_15_936995072-7 69 0.059153 hybrid +143_1-11 Q0 MARCO_05_451767265-4 70 0.058021 hybrid +143_1-11 Q0 MARCO_12_1166244414-23 71 0.057300 hybrid +143_1-11 Q0 MARCO_51_1233514659-170 72 0.051698 hybrid +143_1-11 Q0 MARCO_23_1279531059-2 73 0.046400 hybrid +143_1-11 Q0 MARCO_15_1162683812-15 74 0.042000 hybrid +143_1-11 Q0 MARCO_14_126731283-3 75 0.037316 hybrid +143_1-11 Q0 MARCO_15_1054457602-2 76 0.037123 hybrid +143_1-11 Q0 MARCO_11_783743250-3 77 0.034910 hybrid +143_1-11 Q0 KILT_2185874-1 78 0.029353 hybrid +143_1-11 Q0 MARCO_48_1555048877-12 79 0.025379 hybrid +143_1-11 Q0 MARCO_32_1774610635-8 80 0.023740 hybrid +143_1-11 Q0 MARCO_32_1774600332-8 81 0.023740 hybrid +143_1-11 Q0 MARCO_48_291199131-16 82 0.020188 hybrid +143_1-11 Q0 MARCO_28_1236360977-15 83 0.003852 hybrid +143_1-11 Q0 MARCO_14_540975694-4 84 0.003598 hybrid +143_1-11 Q0 MARCO_32_1774620906-9 85 0.002400 hybrid +143_1-11 Q0 MARCO_32_1774650102-7 86 0.002400 hybrid +143_1-11 Q0 MARCO_32_1774589159-9 87 0.002400 hybrid +143_1-11 Q0 MARCO_32_1774577561-9 88 0.002400 hybrid +143_1-11 Q0 MARCO_15_941639701-8 89 0.000868 hybrid +143_1-11 Q0 MARCO_50_1935553876-15 90 -0.000213 hybrid +143_1-11 Q0 MARCO_14_1525627718-5 91 -0.000584 hybrid +143_1-11 Q0 MARCO_51_2017340525-7 92 -0.004938 hybrid +143_1-11 Q0 KILT_4460501-6 93 -0.005288 hybrid +143_1-11 Q0 MARCO_49_28994171-7 94 -0.008830 hybrid +143_1-11 Q0 MARCO_15_1055307012-3 95 -0.011885 hybrid +143_1-11 Q0 MARCO_13_589675130-2 96 -0.015367 hybrid +143_1-11 Q0 MARCO_55_766724926-2 97 -0.016148 hybrid +143_1-11 Q0 MARCO_49_436332924-11 98 -0.020726 hybrid +143_1-11 Q0 MARCO_41_273990286-2 99 -0.022365 hybrid +143_1-11 Q0 MARCO_48_1555048877-13 100 -0.023141 hybrid +143_1-13 Q0 MARCO_29_863232769-6 1 0.500000 hybrid +143_1-13 Q0 MARCO_29_866218601-13 2 0.500000 hybrid +143_1-13 Q0 MARCO_02_485786500-4 3 0.476438 hybrid +143_1-13 Q0 MARCO_29_868329575-2 4 0.370790 hybrid +143_1-13 Q0 MARCO_24_1138702817-1 5 0.357850 hybrid +143_1-13 Q0 MARCO_50_1983727946-1 6 0.283715 hybrid +143_1-13 Q0 MARCO_17_367384120-37 7 0.242583 hybrid +143_1-13 Q0 MARCO_54_1524829628-1 8 0.238821 hybrid +143_1-13 Q0 MARCO_37_1250042811-1 9 0.237801 hybrid +143_1-13 Q0 MARCO_14_746487374-1 10 0.232970 hybrid +143_1-13 Q0 MARCO_13_655398278-1 11 0.225357 hybrid +143_1-13 Q0 MARCO_28_43678078-1 12 0.179321 hybrid +143_1-13 Q0 MARCO_41_387566683-1 13 0.152020 hybrid +143_1-13 Q0 MARCO_22_244971473-3 14 0.151953 hybrid +143_1-13 Q0 MARCO_40_151752092-1 15 0.145600 hybrid +143_1-13 Q0 MARCO_23_1830177216-1 16 0.130843 hybrid +143_1-13 Q0 MARCO_41_922078754-1 17 0.128675 hybrid +143_1-13 Q0 MARCO_41_1169513590-39 18 0.118533 hybrid +143_1-13 Q0 MARCO_45_1024358508-12 19 0.116761 hybrid +143_1-13 Q0 MARCO_28_393689398-2 20 0.105153 hybrid +143_1-13 Q0 MARCO_17_367384120-23 21 0.100237 hybrid +143_1-13 Q0 MARCO_41_387566683-3 22 0.076954 hybrid +143_1-13 Q0 MARCO_31_1560464192-1 23 0.076297 hybrid +143_1-13 Q0 MARCO_52_680689559-1 24 0.068918 hybrid +143_1-13 Q0 MARCO_50_2713725927-1 25 0.065513 hybrid +143_1-13 Q0 MARCO_50_2713725927-3 26 0.065513 hybrid +143_1-13 Q0 MARCO_50_2713725927-5 27 0.065513 hybrid +143_1-13 Q0 MARCO_40_1192022744-1 28 0.064644 hybrid +143_1-13 Q0 MARCO_40_1265771977-2 29 0.060548 hybrid +143_1-13 Q0 MARCO_40_1276808168-1 30 0.058687 hybrid +143_1-13 Q0 KILT_54064152-2 31 0.055466 hybrid +143_1-13 Q0 MARCO_40_1192048546-1 32 0.046544 hybrid +143_1-13 Q0 MARCO_22_997448110-20 33 0.043674 hybrid +143_1-13 Q0 MARCO_00_624962639-4 34 0.042966 hybrid +143_1-13 Q0 MARCO_00_624816590-4 35 0.042966 hybrid +143_1-13 Q0 MARCO_00_624541009-3 36 0.039316 hybrid +143_1-13 Q0 MARCO_48_550797568-1 37 0.037003 hybrid +143_1-13 Q0 MARCO_29_863580623-5 38 0.034729 hybrid +143_1-13 Q0 MARCO_29_867562507-8 39 0.034724 hybrid +143_1-13 Q0 MARCO_20_626306361-7 40 0.015108 hybrid +143_1-13 Q0 MARCO_31_18137720-3 41 0.011625 hybrid +143_1-13 Q0 MARCO_01_767011868-62 42 0.004559 hybrid +143_1-13 Q0 MARCO_23_1830336853-1 43 0.002764 hybrid +143_1-13 Q0 MARCO_56_1026935802-148 44 -0.001399 hybrid +143_1-13 Q0 MARCO_45_1023964382-1 45 -0.003739 hybrid +143_1-13 Q0 MARCO_22_997332287-2 46 -0.005489 hybrid +143_1-13 Q0 MARCO_14_746886594-1 47 -0.007479 hybrid +143_1-13 Q0 MARCO_28_474562382-6 48 -0.007601 hybrid +143_1-13 Q0 MARCO_35_311112813-2 49 -0.010845 hybrid +143_1-13 Q0 MARCO_45_1024564899-1 50 -0.012912 hybrid +143_1-13 Q0 MARCO_47_601661126-1 51 -0.017577 hybrid +143_1-13 Q0 MARCO_13_130507434-1 52 -0.025830 hybrid +143_1-13 Q0 MARCO_45_1024576531-1 53 -0.026900 hybrid +143_1-13 Q0 MARCO_36_891311373-3 54 -0.032211 hybrid +143_1-13 Q0 MARCO_49_521110394-5 55 -0.042570 hybrid +143_1-13 Q0 MARCO_22_244971473-28 56 -0.043774 hybrid +143_1-13 Q0 MARCO_10_75823671-1 57 -0.049013 hybrid +143_1-13 Q0 MARCO_11_1494500151-5 58 -0.051175 hybrid +143_1-13 Q0 MARCO_23_899779061-1 59 -0.054474 hybrid +143_1-13 Q0 MARCO_53_1331002760-1 60 -0.056803 hybrid +143_1-13 Q0 MARCO_50_1516996110-27 61 -0.057255 hybrid +143_1-13 Q0 MARCO_25_1407096261-3 62 -0.063925 hybrid +143_1-13 Q0 MARCO_41_342159062-1 63 -0.064544 hybrid +143_1-13 Q0 MARCO_41_324341845-1 64 -0.064561 hybrid +143_1-13 Q0 MARCO_53_1470658461-1 65 -0.065876 hybrid +143_1-13 Q0 MARCO_45_1023805152-1 66 -0.070250 hybrid +143_1-13 Q0 MARCO_13_130507434-2 67 -0.072881 hybrid +143_1-13 Q0 MARCO_24_1136034984-11 68 -0.074374 hybrid +143_1-13 Q0 MARCO_45_1027350719-1 69 -0.075918 hybrid +143_1-13 Q0 MARCO_59_948813687-1 70 -0.076336 hybrid +143_1-13 Q0 MARCO_45_1319232189-6 71 -0.077684 hybrid +143_1-13 Q0 MARCO_49_304317245-14 72 -0.078041 hybrid +143_1-13 Q0 MARCO_41_387400230-1 73 -0.078180 hybrid +143_1-13 Q0 MARCO_36_839041939-1 74 -0.080348 hybrid +143_1-13 Q0 MARCO_07_260982436-2 75 -0.080755 hybrid +143_1-13 Q0 MARCO_35_313434538-14 76 -0.081073 hybrid +143_1-13 Q0 MARCO_23_1829770920-10 77 -0.082070 hybrid +143_1-13 Q0 MARCO_45_654354657-4 78 -0.082917 hybrid +143_1-13 Q0 MARCO_23_694143262-1 79 -0.088362 hybrid +143_1-13 Q0 MARCO_45_1024358508-1 80 -0.092842 hybrid +143_1-13 Q0 MARCO_28_537076416-1 81 -0.093171 hybrid +143_1-13 Q0 MARCO_19_2547970426-2 82 -0.094988 hybrid +143_1-13 Q0 MARCO_40_382943557-1 83 -0.096297 hybrid +143_1-13 Q0 MARCO_40_382970438-1 84 -0.097412 hybrid +143_1-13 Q0 MARCO_49_965811772-1 85 -0.106568 hybrid +143_1-13 Q0 MARCO_28_1149445080-4 86 -0.107605 hybrid +143_1-13 Q0 MARCO_17_4189538972-44 87 -0.111879 hybrid +143_1-13 Q0 MARCO_07_1254954996-7 88 -0.114738 hybrid +143_1-13 Q0 MARCO_29_868760514-1 89 -0.115797 hybrid +143_1-13 Q0 MARCO_53_1469134268-1 90 -0.115914 hybrid +143_1-13 Q0 MARCO_50_1457136264-37 91 -0.116019 hybrid +143_1-13 Q0 MARCO_23_693901910-14 92 -0.118338 hybrid +143_1-13 Q0 MARCO_24_1723780301-1 93 -0.119826 hybrid +143_1-13 Q0 MARCO_53_1331986137-1 94 -0.122763 hybrid +143_1-13 Q0 MARCO_28_339910044-6 95 -0.125543 hybrid +143_1-13 Q0 MARCO_36_838622581-1 96 -0.128581 hybrid +143_1-13 Q0 MARCO_46_380296756-1 97 -0.131428 hybrid +143_1-13 Q0 MARCO_50_2488759946-14 98 -0.132225 hybrid +143_1-13 Q0 MARCO_29_865673772-11 99 -0.134125 hybrid +143_1-13 Q0 MARCO_29_867491792-14 100 -0.134125 hybrid +143_1-15 Q0 MARCO_30_899087538-15 1 0.500002 hybrid +143_1-15 Q0 MARCO_30_899017371-9 2 0.378083 hybrid +143_1-15 Q0 MARCO_19_2513676244-16 3 0.352617 hybrid +143_1-15 Q0 MARCO_01_829924766-21 4 0.352617 hybrid +143_1-15 Q0 MARCO_01_831982137-22 5 0.352617 hybrid +143_1-15 Q0 MARCO_19_2489928640-14 6 0.352617 hybrid +143_1-15 Q0 MARCO_01_830855712-16 7 0.290953 hybrid +143_1-15 Q0 MARCO_12_1167771301-10 8 0.242347 hybrid +143_1-15 Q0 MARCO_50_1673836905-46 9 0.241258 hybrid +143_1-15 Q0 MARCO_19_2498800878-11 10 0.220554 hybrid +143_1-15 Q0 MARCO_01_831105559-28 11 0.220554 hybrid +143_1-15 Q0 MARCO_01_833156633-12 12 0.220554 hybrid +143_1-15 Q0 MARCO_19_2512475672-14 13 0.220554 hybrid +143_1-15 Q0 MARCO_14_1554596026-2 14 0.197789 hybrid +143_1-15 Q0 MARCO_14_1554140859-2 15 0.195181 hybrid +143_1-15 Q0 MARCO_44_1092483565-2 16 0.195026 hybrid +143_1-15 Q0 MARCO_14_1552278539-8 17 0.168986 hybrid +143_1-15 Q0 MARCO_12_1168182871-6 18 0.149117 hybrid +143_1-15 Q0 MARCO_14_1553417208-5 19 0.147514 hybrid +143_1-15 Q0 MARCO_01_830196248-33 20 0.132488 hybrid +143_1-15 Q0 MARCO_01_833253499-9 21 0.132488 hybrid +143_1-15 Q0 MARCO_19_2488220035-29 22 0.132488 hybrid +143_1-15 Q0 MARCO_19_2480603792-40 23 0.132488 hybrid +143_1-15 Q0 MARCO_01_827962921-33 24 0.132488 hybrid +143_1-15 Q0 MARCO_01_829478272-26 25 0.132488 hybrid +143_1-15 Q0 MARCO_19_2508528923-33 26 0.132488 hybrid +143_1-15 Q0 MARCO_01_828261466-14 27 0.132488 hybrid +143_1-15 Q0 MARCO_19_2496958346-29 28 0.132488 hybrid +143_1-15 Q0 MARCO_01_829868993-11 29 0.132488 hybrid +143_1-15 Q0 MARCO_30_899848881-14 30 0.132232 hybrid +143_1-15 Q0 MARCO_19_2510046993-2 31 0.130126 hybrid +143_1-15 Q0 MARCO_25_1440064272-10 32 0.128299 hybrid +143_1-15 Q0 MARCO_33_1026664670-5 33 0.125958 hybrid +143_1-15 Q0 MARCO_19_2504744976-42 34 0.119492 hybrid +143_1-15 Q0 MARCO_36_1101816955-7 35 0.116289 hybrid +143_1-15 Q0 MARCO_01_831982137-21 36 0.110853 hybrid +143_1-15 Q0 MARCO_19_2513676244-15 37 0.110853 hybrid +143_1-15 Q0 MARCO_19_2489928640-13 38 0.110853 hybrid +143_1-15 Q0 MARCO_30_899974867-7 39 0.087749 hybrid +143_1-15 Q0 MARCO_30_900016222-21 40 0.080966 hybrid +143_1-15 Q0 MARCO_50_2155141197-18 41 0.072337 hybrid +143_1-15 Q0 MARCO_57_615778094-4 42 0.063212 hybrid +143_1-15 Q0 MARCO_30_899959321-12 43 0.061638 hybrid +143_1-15 Q0 MARCO_19_2512092029-15 44 0.048969 hybrid +143_1-15 Q0 MARCO_01_829287594-15 45 0.048969 hybrid +143_1-15 Q0 MARCO_01_832475593-35 46 0.048969 hybrid +143_1-15 Q0 MARCO_19_2480551115-34 47 0.048969 hybrid +143_1-15 Q0 MARCO_30_899449670-11 48 0.030497 hybrid +143_1-15 Q0 MARCO_01_830147397-20 49 0.024067 hybrid +143_1-15 Q0 MARCO_29_831158258-4 50 0.018389 hybrid +143_1-15 Q0 MARCO_24_1913340153-2 51 0.018295 hybrid +143_1-15 Q0 MARCO_12_1167937824-8 52 0.008775 hybrid +143_1-15 Q0 MARCO_30_900016222-2 53 0.008555 hybrid +143_1-15 Q0 MARCO_12_70212833-3 54 0.007197 hybrid +143_1-15 Q0 MARCO_14_1554596026-5 55 -0.002151 hybrid +143_1-15 Q0 MARCO_14_1551711934-5 56 -0.002287 hybrid +143_1-15 Q0 MARCO_30_899449670-20 57 -0.005513 hybrid +143_1-15 Q0 MARCO_14_1552278539-7 58 -0.005759 hybrid +143_1-15 Q0 MARCO_14_1551333378-4 59 -0.006164 hybrid +143_1-15 Q0 MARCO_50_1673836905-47 60 -0.007408 hybrid +143_1-15 Q0 MARCO_01_829924766-20 61 -0.008341 hybrid +143_1-15 Q0 MARCO_07_1253770347-2 62 -0.010087 hybrid +143_1-15 Q0 MARCO_30_899651186-3 63 -0.010903 hybrid +143_1-15 Q0 MARCO_56_1317023844-5 64 -0.012315 hybrid +143_1-15 Q0 MARCO_30_898676845-8 65 -0.019279 hybrid +143_1-15 Q0 MARCO_28_1762039604-16 66 -0.021660 hybrid +143_1-15 Q0 MARCO_30_899811894-27 67 -0.022998 hybrid +143_1-15 Q0 MARCO_30_818973623-78 68 -0.023753 hybrid +143_1-15 Q0 MARCO_09_353220401-6 69 -0.028696 hybrid +143_1-15 Q0 MARCO_01_830855712-15 70 -0.029904 hybrid +143_1-15 Q0 MARCO_50_1975747916-5 71 -0.030037 hybrid +143_1-15 Q0 MARCO_29_831158258-2 72 -0.036483 hybrid +143_1-15 Q0 MARCO_14_1549918625-4 73 -0.041885 hybrid +143_1-15 Q0 MARCO_01_830855712-17 74 -0.044244 hybrid +143_1-15 Q0 MARCO_44_621136353-8 75 -0.049705 hybrid +143_1-15 Q0 MARCO_30_900212772-9 76 -0.052050 hybrid +143_1-15 Q0 MARCO_14_1550414574-25 77 -0.056818 hybrid +143_1-15 Q0 MARCO_19_2510157290-27 78 -0.060070 hybrid +143_1-15 Q0 MARCO_14_1552859918-15 79 -0.060575 hybrid +143_1-15 Q0 MARCO_19_2496262515-18 80 -0.060728 hybrid +143_1-15 Q0 MARCO_14_1551568342-1 81 -0.065304 hybrid +143_1-15 Q0 MARCO_01_832212458-34 82 -0.067277 hybrid +143_1-15 Q0 MARCO_19_2512376372-37 83 -0.067332 hybrid +143_1-15 Q0 MARCO_19_2493609746-23 84 -0.067335 hybrid +143_1-15 Q0 MARCO_30_899783865-2 85 -0.067569 hybrid +143_1-15 Q0 MARCO_22_1372298679-1 86 -0.071805 hybrid +143_1-15 Q0 MARCO_12_1167937824-9 87 -0.073172 hybrid +143_1-15 Q0 MARCO_12_1168011786-5 88 -0.077701 hybrid +143_1-15 Q0 MARCO_12_1167871651-3 89 -0.080056 hybrid +143_1-15 Q0 MARCO_48_623927621-2 90 -0.082540 hybrid +143_1-15 Q0 MARCO_12_1168156194-5 91 -0.086203 hybrid +143_1-15 Q0 MARCO_19_2505456729-23 92 -0.086213 hybrid +143_1-15 Q0 MARCO_14_1552247642-11 93 -0.086641 hybrid +143_1-15 Q0 MARCO_13_29088482-10 94 -0.089903 hybrid +143_1-15 Q0 MARCO_50_1417341413-35 95 -0.092257 hybrid +143_1-15 Q0 MARCO_44_608147575-2 96 -0.096773 hybrid +143_1-15 Q0 MARCO_14_1550361835-5 97 -0.098201 hybrid +143_1-15 Q0 MARCO_30_899848881-6 98 -0.098483 hybrid +143_1-15 Q0 MARCO_19_2502047812-43 99 -0.103115 hybrid +143_1-15 Q0 MARCO_19_2485769523-42 100 -0.103115 hybrid +143_1-17 Q0 MARCO_10_260431490-19 1 0.500003 hybrid +143_1-17 Q0 MARCO_43_1244550245-16 2 0.471146 hybrid +143_1-17 Q0 MARCO_09_1337153585-7 3 0.436715 hybrid +143_1-17 Q0 MARCO_37_835780776-18 4 0.421091 hybrid +143_1-17 Q0 MARCO_27_1335956273-4 5 0.381860 hybrid +143_1-17 Q0 MARCO_27_1337283708-6 6 0.366398 hybrid +143_1-17 Q0 MARCO_55_1287485776-3 7 0.365972 hybrid +143_1-17 Q0 MARCO_09_1337153585-5 8 0.352419 hybrid +143_1-17 Q0 MARCO_09_1337153585-3 9 0.352419 hybrid +143_1-17 Q0 MARCO_15_1874813588-13 10 0.350527 hybrid +143_1-17 Q0 MARCO_04_219119614-7 11 0.345649 hybrid +143_1-17 Q0 MARCO_55_1278906673-12 12 0.338154 hybrid +143_1-17 Q0 MARCO_30_894043860-3 13 0.329621 hybrid +143_1-17 Q0 MARCO_28_315959874-8 14 0.311201 hybrid +143_1-17 Q0 MARCO_06_1071286545-61 15 0.307697 hybrid +143_1-17 Q0 MARCO_28_286276433-1 16 0.303027 hybrid +143_1-17 Q0 MARCO_17_4118145988-5 17 0.275242 hybrid +143_1-17 Q0 MARCO_05_596117696-5 18 0.274400 hybrid +143_1-17 Q0 MARCO_20_1123210514-3 19 0.267910 hybrid +143_1-17 Q0 MARCO_50_2164186291-151 20 0.243904 hybrid +143_1-17 Q0 MARCO_10_790196439-10 21 0.241737 hybrid +143_1-17 Q0 MARCO_58_1508432866-3 22 0.236769 hybrid +143_1-17 Q0 MARCO_19_249632023-7 23 0.234972 hybrid +143_1-17 Q0 MARCO_51_113466954-6 24 0.233429 hybrid +143_1-17 Q0 MARCO_10_120457537-5 25 0.230217 hybrid +143_1-17 Q0 MARCO_58_1508436871-3 26 0.225356 hybrid +143_1-17 Q0 MARCO_24_1015430307-2 27 0.224070 hybrid +143_1-17 Q0 MARCO_06_1905214190-6 28 0.223318 hybrid +143_1-17 Q0 MARCO_30_1006002195-9 29 0.217827 hybrid +143_1-17 Q0 MARCO_14_1191455815-2 30 0.211809 hybrid +143_1-17 Q0 MARCO_30_1091150572-37 31 0.191446 hybrid +143_1-17 Q0 MARCO_47_1603000615-2 32 0.190846 hybrid +143_1-17 Q0 MARCO_19_2046519096-1 33 0.186680 hybrid +143_1-17 Q0 MARCO_55_1278906673-10 34 0.186276 hybrid +143_1-17 Q0 MARCO_11_119909427-1 35 0.185490 hybrid +143_1-17 Q0 MARCO_11_1468726849-2 36 0.177114 hybrid +143_1-17 Q0 MARCO_03_1784737014-3 37 0.176984 hybrid +143_1-17 Q0 MARCO_03_1787230806-3 38 0.176984 hybrid +143_1-17 Q0 MARCO_40_453444519-2 39 0.168597 hybrid +143_1-17 Q0 MARCO_45_537951926-1 40 0.167210 hybrid +143_1-17 Q0 MARCO_22_1189602563-2 41 0.163690 hybrid +143_1-17 Q0 MARCO_24_1015430307-3 42 0.160552 hybrid +143_1-17 Q0 MARCO_40_1187865557-2 43 0.160389 hybrid +143_1-17 Q0 MARCO_20_1123210514-1 44 0.157885 hybrid +143_1-17 Q0 MARCO_14_127340878-1 45 0.155859 hybrid +143_1-17 Q0 MARCO_47_292639442-4 46 0.153579 hybrid +143_1-17 Q0 MARCO_28_315975032-7 47 0.152249 hybrid +143_1-17 Q0 MARCO_28_315984618-7 48 0.152249 hybrid +143_1-17 Q0 MARCO_28_309385335-17 49 0.152249 hybrid +143_1-17 Q0 MARCO_27_1335956273-5 50 0.151176 hybrid +143_1-17 Q0 MARCO_57_1269990821-3 51 0.151165 hybrid +143_1-17 Q0 MARCO_13_321381752-1 52 0.146949 hybrid +143_1-17 Q0 MARCO_27_1332721658-5 53 0.146932 hybrid +143_1-17 Q0 MARCO_10_790295123-3 54 0.145736 hybrid +143_1-17 Q0 MARCO_47_1603000615-6 55 0.139308 hybrid +143_1-17 Q0 MARCO_10_120256054-2 56 0.139151 hybrid +143_1-17 Q0 MARCO_27_1336323682-6 57 0.135648 hybrid +143_1-17 Q0 MARCO_27_1238733637-4 58 0.132622 hybrid +143_1-17 Q0 MARCO_57_1274690822-2 59 0.132240 hybrid +143_1-17 Q0 MARCO_17_2510783820-53 60 0.120479 hybrid +143_1-17 Q0 MARCO_50_1440908477-6 61 0.115678 hybrid +143_1-17 Q0 MARCO_35_127793957-1 62 0.115454 hybrid +143_1-17 Q0 MARCO_28_286276433-4 63 0.113837 hybrid +143_1-17 Q0 MARCO_39_617517093-8 64 0.107791 hybrid +143_1-17 Q0 MARCO_50_2392281395-12 65 0.106606 hybrid +143_1-17 Q0 MARCO_51_634919600-1 66 0.104276 hybrid +143_1-17 Q0 MARCO_47_1602683698-2 67 0.099285 hybrid +143_1-17 Q0 MARCO_30_1084201401-18 68 0.097090 hybrid +143_1-17 Q0 MARCO_29_795107192-2 69 0.095170 hybrid +143_1-17 Q0 MARCO_55_246915017-2 70 0.085997 hybrid +143_1-17 Q0 MARCO_18_3124953992-148 71 0.084773 hybrid +143_1-17 Q0 KILT_2802175-4 72 0.077390 hybrid +143_1-17 Q0 MARCO_03_1786621820-2 73 0.070743 hybrid +143_1-17 Q0 MARCO_03_1787782681-4 74 0.070743 hybrid +143_1-17 Q0 MARCO_19_2046519096-3 75 0.064613 hybrid +143_1-17 Q0 MARCO_30_1006002195-1 76 0.060571 hybrid +143_1-17 Q0 MARCO_50_1452511370-4 77 0.060312 hybrid +143_1-17 Q0 MARCO_41_2085351244-13 78 0.058016 hybrid +143_1-17 Q0 MARCO_58_1508486791-2 79 0.057516 hybrid +143_1-17 Q0 MARCO_17_3703353004-1 80 0.056775 hybrid +143_1-17 Q0 MARCO_17_431954845-2 81 0.053446 hybrid +143_1-17 Q0 MARCO_51_119267475-6 82 0.049056 hybrid +143_1-17 Q0 MARCO_57_1436318624-4 83 0.047574 hybrid +143_1-17 Q0 MARCO_55_1287485776-2 84 0.046176 hybrid +143_1-17 Q0 MARCO_17_3703678333-1 85 0.044565 hybrid +143_1-17 Q0 MARCO_40_550347645-1 86 0.035644 hybrid +143_1-17 Q0 MARCO_28_330069875-3 87 0.035099 hybrid +143_1-17 Q0 MARCO_19_2046519096-9 88 0.033292 hybrid +143_1-17 Q0 KILT_59012195-25 89 0.031063 hybrid +143_1-17 Q0 MARCO_30_1082648100-1 90 0.026925 hybrid +143_1-17 Q0 MARCO_45_1436207481-14 91 0.026639 hybrid +143_1-17 Q0 MARCO_03_1767653065-5 92 0.024781 hybrid +143_1-17 Q0 MARCO_57_1274506455-2 93 0.024309 hybrid +143_1-17 Q0 KILT_53326349-3 94 0.020604 hybrid +143_1-17 Q0 MARCO_57_914510789-3 95 0.003166 hybrid +143_1-17 Q0 MARCO_22_1189602563-4 96 0.002678 hybrid +143_1-17 Q0 MARCO_17_3703678333-8 97 0.002358 hybrid +143_1-17 Q0 MARCO_50_1421354218-15 98 0.002122 hybrid +143_1-17 Q0 MARCO_39_824677086-2 99 0.001639 hybrid +143_1-17 Q0 MARCO_08_235438137-4 100 -0.000909 hybrid +143_1-19 Q0 MARCO_29_1334919388-38 1 0.500000 hybrid +143_1-19 Q0 MARCO_19_2484129627-21 2 0.432797 hybrid +143_1-19 Q0 MARCO_19_2498800878-11 3 0.351299 hybrid +143_1-19 Q0 MARCO_01_831105559-28 4 0.351299 hybrid +143_1-19 Q0 MARCO_01_833156633-12 5 0.351299 hybrid +143_1-19 Q0 MARCO_19_2512475672-14 6 0.351299 hybrid +143_1-19 Q0 MARCO_30_898878792-31 7 0.343628 hybrid +143_1-19 Q0 MARCO_30_899942587-12 8 0.306915 hybrid +143_1-19 Q0 MARCO_01_829924766-18 9 0.301398 hybrid +143_1-19 Q0 MARCO_01_830196248-33 10 0.298195 hybrid +143_1-19 Q0 MARCO_01_833253499-9 11 0.298195 hybrid +143_1-19 Q0 MARCO_19_2488220035-29 12 0.298195 hybrid +143_1-19 Q0 MARCO_19_2480603792-40 13 0.298195 hybrid +143_1-19 Q0 MARCO_01_827962921-33 14 0.298195 hybrid +143_1-19 Q0 MARCO_01_829478272-26 15 0.298195 hybrid +143_1-19 Q0 MARCO_19_2508528923-33 16 0.298195 hybrid +143_1-19 Q0 MARCO_01_828261466-14 17 0.298195 hybrid +143_1-19 Q0 MARCO_19_2496958346-29 18 0.298195 hybrid +143_1-19 Q0 MARCO_01_829868993-11 19 0.298195 hybrid +143_1-19 Q0 MARCO_24_1140025590-4 20 0.267896 hybrid +143_1-19 Q0 MARCO_12_1167871651-3 21 0.266032 hybrid +143_1-19 Q0 MARCO_14_1549450269-18 22 0.256511 hybrid +143_1-19 Q0 MARCO_48_763385209-1 23 0.254207 hybrid +143_1-19 Q0 MARCO_36_1101932240-9 24 0.251893 hybrid +143_1-19 Q0 MARCO_37_251647739-7 25 0.237322 hybrid +143_1-19 Q0 MARCO_19_2501168671-38 26 0.200577 hybrid +143_1-19 Q0 MARCO_19_2495281943-21 27 0.194505 hybrid +143_1-19 Q0 MARCO_01_830855712-13 28 0.189388 hybrid +143_1-19 Q0 MARCO_30_900212772-9 29 0.186696 hybrid +143_1-19 Q0 MARCO_01_831982137-19 30 0.183764 hybrid +143_1-19 Q0 MARCO_19_2489928640-11 31 0.183764 hybrid +143_1-19 Q0 MARCO_19_2513676244-13 32 0.183764 hybrid +143_1-19 Q0 MARCO_14_1550215043-13 33 0.181727 hybrid +143_1-19 Q0 MARCO_19_2499051986-30 34 0.179222 hybrid +143_1-19 Q0 MARCO_07_795635402-6 35 0.179177 hybrid +143_1-19 Q0 MARCO_19_2486322268-16 36 0.167076 hybrid +143_1-19 Q0 MARCO_19_2501049434-28 37 0.167076 hybrid +143_1-19 Q0 MARCO_12_1168148020-6 38 0.162080 hybrid +143_1-19 Q0 MARCO_47_921857188-3 39 0.159192 hybrid +143_1-19 Q0 MARCO_31_295248992-6 40 0.146953 hybrid +143_1-19 Q0 MARCO_12_1167831191-1 41 0.144613 hybrid +143_1-19 Q0 MARCO_13_1763260734-6 42 0.142406 hybrid +143_1-19 Q0 MARCO_28_647765232-9 43 0.123044 hybrid +143_1-19 Q0 MARCO_26_110906995-4 44 0.111369 hybrid +143_1-19 Q0 MARCO_15_310936140-1 45 0.106431 hybrid +143_1-19 Q0 MARCO_30_899942587-10 46 0.106026 hybrid +143_1-19 Q0 MARCO_30_900052011-23 47 0.103703 hybrid +143_1-19 Q0 MARCO_17_4124901567-6 48 0.103356 hybrid +143_1-19 Q0 MARCO_01_826870997-54 49 0.102720 hybrid +143_1-19 Q0 MARCO_01_828039823-24 50 0.102502 hybrid +143_1-19 Q0 MARCO_57_615778094-5 51 0.095700 hybrid +143_1-19 Q0 MARCO_19_2482062737-48 52 0.092336 hybrid +143_1-19 Q0 MARCO_17_2381812120-15 53 0.080034 hybrid +143_1-19 Q0 MARCO_50_2146684733-22 54 0.073338 hybrid +143_1-19 Q0 MARCO_12_1168314748-2 55 0.065259 hybrid +143_1-19 Q0 MARCO_24_1142591424-3 56 0.064948 hybrid +143_1-19 Q0 MARCO_36_1101870115-12 57 0.062247 hybrid +143_1-19 Q0 MARCO_36_1101942727-8 58 0.062247 hybrid +143_1-19 Q0 MARCO_12_1168353023-12 59 0.062136 hybrid +143_1-19 Q0 MARCO_13_139103428-2 60 0.061709 hybrid +143_1-19 Q0 MARCO_17_4189538972-43 61 0.051845 hybrid +143_1-19 Q0 MARCO_19_2505970459-19 62 0.046244 hybrid +143_1-19 Q0 MARCO_50_1673836905-46 63 0.041149 hybrid +143_1-19 Q0 MARCO_19_2484749825-48 64 0.033417 hybrid +143_1-19 Q0 MARCO_10_365166925-88 65 0.031628 hybrid +143_1-19 Q0 MARCO_56_1317023844-5 66 0.030743 hybrid +143_1-19 Q0 MARCO_14_1549593433-5 67 0.028861 hybrid +143_1-19 Q0 MARCO_14_1554596026-6 68 0.028572 hybrid +143_1-19 Q0 MARCO_20_360543043-12 69 0.028349 hybrid +143_1-19 Q0 MARCO_12_1167746272-1 70 0.025845 hybrid +143_1-19 Q0 MARCO_14_1550215043-32 71 0.017641 hybrid +143_1-19 Q0 MARCO_19_2510046993-2 72 0.017009 hybrid +143_1-19 Q0 MARCO_50_938168189-30 73 0.006785 hybrid +143_1-19 Q0 MARCO_30_898630401-9 74 0.003444 hybrid +143_1-19 Q0 MARCO_01_830147397-20 75 0.000783 hybrid +143_1-19 Q0 MARCO_30_899315002-13 76 -0.000485 hybrid +143_1-19 Q0 MARCO_40_1187552052-3 77 -0.001232 hybrid +143_1-19 Q0 MARCO_19_2499309473-44 78 -0.001397 hybrid +143_1-19 Q0 MARCO_30_826115762-20 79 -0.003154 hybrid +143_1-19 Q0 MARCO_35_305984262-6 80 -0.007127 hybrid +143_1-19 Q0 MARCO_30_826115762-19 81 -0.008391 hybrid +143_1-19 Q0 MARCO_01_830855712-16 82 -0.013022 hybrid +143_1-19 Q0 MARCO_19_2514020162-35 83 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2511043467-25 84 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2500684415-29 85 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2507832241-26 86 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2513795897-41 87 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2502484972-27 88 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2495106325-33 89 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2508482543-35 90 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2480755460-21 91 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2497429189-23 92 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2496532638-50 93 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2485886584-20 94 -0.014700 hybrid +143_1-19 Q0 MARCO_19_2492452608-93 95 -0.014704 hybrid +143_1-19 Q0 MARCO_19_2480972520-28 96 -0.014704 hybrid +143_1-19 Q0 MARCO_19_2491025829-69 97 -0.014922 hybrid +143_1-19 Q0 MARCO_30_900016222-20 98 -0.018815 hybrid +143_1-19 Q0 MARCO_30_900052011-2 99 -0.019398 hybrid +143_1-19 Q0 MARCO_22_833511260-6 100 -0.020644 hybrid +143_1-3 Q0 MARCO_36_839237348-5 1 0.500000 hybrid +143_1-3 Q0 MARCO_36_839237348-4 2 0.318156 hybrid +143_1-3 Q0 MARCO_36_839920756-4 3 0.011627 hybrid +143_1-3 Q0 MARCO_01_1029544932-21 4 0.001962 hybrid +143_1-3 Q0 MARCO_35_305195648-4 5 -0.040513 hybrid +143_1-3 Q0 MARCO_57_1274444085-4 6 -0.074347 hybrid +143_1-3 Q0 MARCO_18_4361109773-21 7 -0.081024 hybrid +143_1-3 Q0 MARCO_57_1273579679-8 8 -0.086473 hybrid +143_1-3 Q0 MARCO_14_127408603-2 9 -0.088936 hybrid +143_1-3 Q0 MARCO_35_22431210-5 10 -0.100277 hybrid +143_1-3 Q0 KILT_18566274-22 11 -0.101356 hybrid +143_1-3 Q0 MARCO_19_249547082-24 12 -0.114704 hybrid +143_1-3 Q0 MARCO_09_545398862-2 13 -0.125605 hybrid +143_1-3 Q0 MARCO_18_4359208287-10 14 -0.125981 hybrid +143_1-3 Q0 MARCO_19_2504515851-25 15 -0.126718 hybrid +143_1-3 Q0 MARCO_19_2506613429-12 16 -0.126718 hybrid +143_1-3 Q0 MARCO_19_2494602307-8 17 -0.126718 hybrid +143_1-3 Q0 MARCO_13_697608169-2 18 -0.144197 hybrid +143_1-3 Q0 MARCO_41_291470521-5 19 -0.146971 hybrid +143_1-3 Q0 MARCO_01_1029544932-18 20 -0.150582 hybrid +143_1-3 Q0 MARCO_17_1928557765-13 21 -0.156482 hybrid +143_1-3 Q0 KILT_3049649-2 22 -0.160499 hybrid +143_1-3 Q0 MARCO_19_2507420365-13 23 -0.166444 hybrid +143_1-3 Q0 MARCO_19_2507420365-11 24 -0.166444 hybrid +143_1-3 Q0 KILT_21422806-19 25 -0.167955 hybrid +143_1-3 Q0 KILT_45526962-7 26 -0.169636 hybrid +143_1-3 Q0 MARCO_06_1142913471-94 27 -0.170803 hybrid +143_1-3 Q0 MARCO_28_563409084-3 28 -0.171681 hybrid +143_1-3 Q0 MARCO_17_1928557765-7 29 -0.174420 hybrid +143_1-3 Q0 MARCO_19_2493277139-14 30 -0.178257 hybrid +143_1-3 Q0 MARCO_19_2497021198-33 31 -0.185021 hybrid +143_1-3 Q0 MARCO_14_127408603-3 32 -0.185954 hybrid +143_1-3 Q0 MARCO_19_2552076513-4 33 -0.186156 hybrid +143_1-3 Q0 MARCO_19_2491325369-32 34 -0.186315 hybrid +143_1-3 Q0 MARCO_13_697608169-3 35 -0.187017 hybrid +143_1-3 Q0 KILT_2964862-7 36 -0.198112 hybrid +143_1-3 Q0 MARCO_44_623736186-5 37 -0.200723 hybrid +143_1-3 Q0 MARCO_44_624428239-4 38 -0.204367 hybrid +143_1-3 Q0 MARCO_19_2491950523-13 39 -0.205756 hybrid +143_1-3 Q0 MARCO_19_2510724116-14 40 -0.205756 hybrid +143_1-3 Q0 MARCO_37_71324474-89 41 -0.206236 hybrid +143_1-3 Q0 KILT_7235622-24 42 -0.206538 hybrid +143_1-3 Q0 KILT_1297457-4 43 -0.209556 hybrid +143_1-3 Q0 MARCO_19_2485043099-38 44 -0.210258 hybrid +143_1-3 Q0 MARCO_17_434176964-64 45 -0.214448 hybrid +143_1-3 Q0 MARCO_19_2503436333-17 46 -0.215116 hybrid +143_1-3 Q0 MARCO_01_829618755-29 47 -0.215127 hybrid +143_1-3 Q0 MARCO_50_2496250285-7 48 -0.215145 hybrid +143_1-3 Q0 MARCO_57_1273579679-2 49 -0.216222 hybrid +143_1-3 Q0 MARCO_12_964310749-8 50 -0.216938 hybrid +143_1-3 Q0 MARCO_12_962892115-8 51 -0.216938 hybrid +143_1-3 Q0 MARCO_12_962977832-8 52 -0.216938 hybrid +143_1-3 Q0 MARCO_12_962939308-8 53 -0.216938 hybrid +143_1-3 Q0 MARCO_12_962768282-8 54 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962596888-8 55 -0.216943 hybrid +143_1-3 Q0 MARCO_12_965080414-8 56 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964626357-8 57 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964900162-8 58 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964119291-8 59 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964272860-8 60 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964394800-8 61 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964081079-8 62 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963842073-8 63 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963728317-8 64 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964862143-8 65 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962635022-8 66 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963747654-8 67 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962433572-8 68 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962796871-8 69 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962109776-8 70 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964128792-8 71 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964157357-8 72 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962177045-8 73 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964348115-8 74 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964282357-8 75 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962749025-8 76 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963995090-8 77 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963947175-8 78 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963471041-8 79 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964320072-8 80 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963176930-8 81 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962196239-8 82 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963157995-8 83 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964919283-8 84 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964548534-8 85 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964947649-8 86 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963861565-8 87 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962318736-8 88 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964214606-8 89 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962700832-8 90 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962529251-8 91 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963794937-8 92 -0.216943 hybrid +143_1-3 Q0 MARCO_12_963766540-8 93 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962653889-8 94 -0.216943 hybrid +143_1-3 Q0 MARCO_12_965004014-8 95 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964558201-8 96 -0.216943 hybrid +143_1-3 Q0 MARCO_12_962519691-8 97 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964481974-8 98 -0.216943 hybrid +143_1-3 Q0 MARCO_12_964957179-8 99 -0.216943 hybrid +143_1-3 Q0 MARCO_12_965061412-8 100 -0.216943 hybrid +143_1-5 Q0 MARCO_36_839237348-4 1 0.500000 hybrid +143_1-5 Q0 MARCO_37_257551387-2 2 0.372604 hybrid +143_1-5 Q0 MARCO_36_839920756-4 3 0.329386 hybrid +143_1-5 Q0 MARCO_40_274248920-110 4 0.259169 hybrid +143_1-5 Q0 MARCO_54_319242251-7 5 0.208713 hybrid +143_1-5 Q0 MARCO_36_839237348-5 6 0.166527 hybrid +143_1-5 Q0 MARCO_32_762138222-3 7 0.153518 hybrid +143_1-5 Q0 MARCO_24_1911131524-3 8 0.150906 hybrid +143_1-5 Q0 MARCO_26_1061461405-2 9 0.144157 hybrid +143_1-5 Q0 MARCO_28_338550826-12 10 0.089265 hybrid +143_1-5 Q0 MARCO_48_1598628471-6 11 0.078011 hybrid +143_1-5 Q0 MARCO_37_71324474-89 12 0.076443 hybrid +143_1-5 Q0 MARCO_40_316139621-192 13 0.060158 hybrid +143_1-5 Q0 MARCO_27_586060148-22 14 0.036609 hybrid +143_1-5 Q0 KILT_2964862-4 15 0.031521 hybrid +143_1-5 Q0 MARCO_48_1598615957-4 16 0.030842 hybrid +143_1-5 Q0 MARCO_34_1720030514-4 17 0.020495 hybrid +143_1-5 Q0 MARCO_56_904869923-3 18 0.010257 hybrid +143_1-5 Q0 MARCO_13_795880999-1 19 0.008856 hybrid +143_1-5 Q0 MARCO_47_980370782-4 20 -0.001646 hybrid +143_1-5 Q0 MARCO_22_992740285-2 21 -0.003788 hybrid +143_1-5 Q0 MARCO_13_798486522-1 22 -0.006147 hybrid +143_1-5 Q0 MARCO_15_624338736-35 23 -0.014705 hybrid +143_1-5 Q0 MARCO_35_1469847018-2 24 -0.016967 hybrid +143_1-5 Q0 MARCO_01_1034490048-173 25 -0.019979 hybrid +143_1-5 Q0 MARCO_24_1910877220-2 26 -0.025482 hybrid +143_1-5 Q0 MARCO_23_1277930196-1 27 -0.027260 hybrid +143_1-5 Q0 MARCO_27_207237073-2 28 -0.029627 hybrid +143_1-5 Q0 MARCO_14_1772314504-10 29 -0.031614 hybrid +143_1-5 Q0 MARCO_18_1313902892-12 30 -0.036411 hybrid +143_1-5 Q0 KILT_2964862-7 31 -0.040385 hybrid +143_1-5 Q0 MARCO_48_1293665084-2 32 -0.049835 hybrid +143_1-5 Q0 MARCO_48_1598029286-8 33 -0.050006 hybrid +143_1-5 Q0 MARCO_27_1643809758-5 34 -0.053126 hybrid +143_1-5 Q0 MARCO_10_1145633468-3 35 -0.060616 hybrid +143_1-5 Q0 MARCO_48_1597910815-5 36 -0.060923 hybrid +143_1-5 Q0 MARCO_40_272761218-201 37 -0.067016 hybrid +143_1-5 Q0 MARCO_47_987353377-4 38 -0.071557 hybrid +143_1-5 Q0 MARCO_30_1781494900-1 39 -0.073551 hybrid +143_1-5 Q0 MARCO_53_740831554-4 40 -0.077277 hybrid +143_1-5 Q0 MARCO_28_655637251-3 41 -0.082862 hybrid +143_1-5 Q0 MARCO_36_28162569-4 42 -0.084697 hybrid +143_1-5 Q0 MARCO_50_1442581649-1 43 -0.085994 hybrid +143_1-5 Q0 MARCO_57_1274444085-4 44 -0.088380 hybrid +143_1-5 Q0 MARCO_35_305195648-4 45 -0.089879 hybrid +143_1-5 Q0 MARCO_23_1278383414-1 46 -0.092898 hybrid +143_1-5 Q0 MARCO_40_316139621-218 47 -0.093201 hybrid +143_1-5 Q0 MARCO_40_667182643-1 48 -0.094462 hybrid +143_1-5 Q0 KILT_52905301-7 49 -0.095871 hybrid +143_1-5 Q0 MARCO_24_1911131524-2 50 -0.100741 hybrid +143_1-5 Q0 MARCO_27_586060148-26 51 -0.100893 hybrid +143_1-5 Q0 KILT_42371251-1 52 -0.101661 hybrid +143_1-5 Q0 MARCO_19_2654373147-9 53 -0.103516 hybrid +143_1-5 Q0 MARCO_19_2553644825-3 54 -0.104750 hybrid +143_1-5 Q0 MARCO_53_740156631-6 55 -0.107579 hybrid +143_1-5 Q0 MARCO_07_1253796222-18 56 -0.110176 hybrid +143_1-5 Q0 MARCO_19_2063237119-3 57 -0.111654 hybrid +143_1-5 Q0 MARCO_36_841623594-2 58 -0.112206 hybrid +143_1-5 Q0 MARCO_39_610901714-2 59 -0.113828 hybrid +143_1-5 Q0 KILT_52906318-6 60 -0.115881 hybrid +143_1-5 Q0 MARCO_00_1070335325-23 61 -0.117899 hybrid +143_1-5 Q0 MARCO_01_1034490048-171 62 -0.121559 hybrid +143_1-5 Q0 MARCO_40_316139621-233 63 -0.122696 hybrid +143_1-5 Q0 MARCO_27_911805114-2 64 -0.123592 hybrid +143_1-5 Q0 MARCO_40_272761218-203 65 -0.124842 hybrid +143_1-5 Q0 MARCO_12_277139193-1 66 -0.129840 hybrid +143_1-5 Q0 MARCO_36_842143841-6 67 -0.129879 hybrid +143_1-5 Q0 MARCO_00_559066306-2 68 -0.132639 hybrid +143_1-5 Q0 MARCO_00_558234718-2 69 -0.132639 hybrid +143_1-5 Q0 MARCO_00_558872344-2 70 -0.132639 hybrid +143_1-5 Q0 MARCO_00_558811786-2 71 -0.132639 hybrid +143_1-5 Q0 MARCO_00_559039464-2 72 -0.132639 hybrid +143_1-5 Q0 MARCO_00_558968878-2 73 -0.132639 hybrid +143_1-5 Q0 MARCO_00_558943825-2 74 -0.132639 hybrid +143_1-5 Q0 MARCO_00_559196233-4 75 -0.132639 hybrid +143_1-5 Q0 MARCO_37_254400242-7 76 -0.133908 hybrid +143_1-5 Q0 MARCO_41_1167435714-40 77 -0.136702 hybrid +143_1-5 Q0 MARCO_48_1598615957-3 78 -0.140249 hybrid +143_1-5 Q0 MARCO_00_557015679-3 79 -0.142620 hybrid +143_1-5 Q0 MARCO_35_336625773-8 80 -0.144638 hybrid +143_1-5 Q0 MARCO_48_1383139946-8 81 -0.146882 hybrid +143_1-5 Q0 MARCO_40_264734827-102 82 -0.149202 hybrid +143_1-5 Q0 MARCO_07_640648224-3 83 -0.150212 hybrid +143_1-5 Q0 MARCO_09_673203336-4 84 -0.150475 hybrid +143_1-5 Q0 MARCO_47_980864637-2 85 -0.151007 hybrid +143_1-5 Q0 MARCO_47_606816804-15 86 -0.153642 hybrid +143_1-5 Q0 MARCO_22_1190425212-7 87 -0.154244 hybrid +143_1-5 Q0 MARCO_14_1550501220-11 88 -0.154647 hybrid +143_1-5 Q0 MARCO_52_805775456-40 89 -0.156557 hybrid +143_1-5 Q0 MARCO_52_805775456-46 90 -0.156557 hybrid +143_1-5 Q0 MARCO_52_805775456-44 91 -0.156557 hybrid +143_1-5 Q0 MARCO_52_805775456-42 92 -0.156561 hybrid +143_1-5 Q0 MARCO_02_601189717-5 93 -0.157267 hybrid +143_1-5 Q0 MARCO_24_1915849134-11 94 -0.159417 hybrid +143_1-5 Q0 MARCO_37_71324474-65 95 -0.161629 hybrid +143_1-5 Q0 MARCO_19_2555167830-3 96 -0.162006 hybrid +143_1-5 Q0 MARCO_19_2654373147-6 97 -0.163046 hybrid +143_1-5 Q0 MARCO_44_628258168-3 98 -0.164462 hybrid +143_1-5 Q0 MARCO_19_2507420365-13 99 -0.164652 hybrid +143_1-5 Q0 MARCO_19_2507420365-11 100 -0.164652 hybrid +143_1-7 Q0 MARCO_36_839920756-4 1 0.500000 hybrid +143_1-7 Q0 KILT_2964862-7 2 0.375372 hybrid +143_1-7 Q0 MARCO_36_839237348-5 3 0.255750 hybrid +143_1-7 Q0 MARCO_36_839237348-4 4 0.180459 hybrid +143_1-7 Q0 MARCO_35_305195648-4 5 0.162236 hybrid +143_1-7 Q0 MARCO_35_22431210-5 6 0.149277 hybrid +143_1-7 Q0 MARCO_27_586060148-22 7 0.070464 hybrid +143_1-7 Q0 MARCO_36_28162569-4 8 0.058904 hybrid +143_1-7 Q0 MARCO_40_333010660-10 9 0.056629 hybrid +143_1-7 Q0 MARCO_49_27352257-2 10 0.015956 hybrid +143_1-7 Q0 MARCO_40_274248920-110 11 -0.014968 hybrid +143_1-7 Q0 MARCO_35_22431210-4 12 -0.022482 hybrid +143_1-7 Q0 MARCO_19_2555167830-3 13 -0.023129 hybrid +143_1-7 Q0 MARCO_59_777494467-3 14 -0.036113 hybrid +143_1-7 Q0 MARCO_26_164255046-217 15 -0.036350 hybrid +143_1-7 Q0 MARCO_19_2480702022-42 16 -0.037356 hybrid +143_1-7 Q0 MARCO_35_305195648-2 17 -0.050286 hybrid +143_1-7 Q0 MARCO_36_842143841-6 18 -0.052550 hybrid +143_1-7 Q0 MARCO_33_505962289-2 19 -0.057628 hybrid +143_1-7 Q0 MARCO_22_992740285-2 20 -0.058034 hybrid +143_1-7 Q0 MARCO_13_697608169-2 21 -0.058149 hybrid +143_1-7 Q0 MARCO_05_452612308-1 22 -0.079262 hybrid +143_1-7 Q0 MARCO_57_1274444085-4 23 -0.079905 hybrid +143_1-7 Q0 MARCO_27_586060148-18 24 -0.081127 hybrid +143_1-7 Q0 MARCO_01_832262097-27 25 -0.083657 hybrid +143_1-7 Q0 MARCO_54_319242251-7 26 -0.084207 hybrid +143_1-7 Q0 MARCO_13_400868314-6 27 -0.089461 hybrid +143_1-7 Q0 MARCO_40_293608302-80 28 -0.091232 hybrid +143_1-7 Q0 MARCO_05_316530055-3 29 -0.096084 hybrid +143_1-7 Q0 MARCO_57_1274452224-4 30 -0.098452 hybrid +143_1-7 Q0 MARCO_37_257551387-2 31 -0.102455 hybrid +143_1-7 Q0 MARCO_19_2553644825-3 32 -0.117818 hybrid +143_1-7 Q0 MARCO_19_2496032583-27 33 -0.121103 hybrid +143_1-7 Q0 MARCO_44_624428239-4 34 -0.125322 hybrid +143_1-7 Q0 MARCO_22_992740285-1 35 -0.128204 hybrid +143_1-7 Q0 MARCO_26_164255046-218 36 -0.134895 hybrid +143_1-7 Q0 MARCO_05_316530055-2 37 -0.137953 hybrid +143_1-7 Q0 MARCO_13_697608169-3 38 -0.138187 hybrid +143_1-7 Q0 MARCO_19_2504261568-5 39 -0.147027 hybrid +143_1-7 Q0 MARCO_04_185169155-4 40 -0.147757 hybrid +143_1-7 Q0 MARCO_05_452612308-6 41 -0.151620 hybrid +143_1-7 Q0 KILT_3049649-2 42 -0.155286 hybrid +143_1-7 Q0 MARCO_27_43207314-3 43 -0.163986 hybrid +143_1-7 Q0 MARCO_46_706556582-2 44 -0.165621 hybrid +143_1-7 Q0 MARCO_48_1598628471-6 45 -0.167774 hybrid +143_1-7 Q0 MARCO_59_777494467-2 46 -0.171421 hybrid +143_1-7 Q0 MARCO_37_71324474-89 47 -0.175978 hybrid +143_1-7 Q0 MARCO_36_28162569-3 48 -0.177609 hybrid +143_1-7 Q0 MARCO_05_317113249-4 49 -0.181584 hybrid +143_1-7 Q0 MARCO_07_1253796222-18 50 -0.183284 hybrid +143_1-7 Q0 MARCO_13_1224118800-1 51 -0.184218 hybrid +143_1-7 Q0 MARCO_56_1007023628-1 52 -0.185656 hybrid +143_1-7 Q0 MARCO_13_1224118800-2 53 -0.185932 hybrid +143_1-7 Q0 MARCO_25_237575203-3 54 -0.189206 hybrid +143_1-7 Q0 MARCO_26_1061461405-2 55 -0.189537 hybrid +143_1-7 Q0 MARCO_19_2509735274-9 56 -0.196189 hybrid +143_1-7 Q0 MARCO_04_1216762029-3 57 -0.197367 hybrid +143_1-7 Q0 MARCO_53_741263541-6 58 -0.198618 hybrid +143_1-7 Q0 MARCO_53_741263541-8 59 -0.198618 hybrid +143_1-7 Q0 MARCO_43_712001097-6 60 -0.199998 hybrid +143_1-7 Q0 MARCO_19_2506900055-15 61 -0.202657 hybrid +143_1-7 Q0 MARCO_40_339551778-60 62 -0.203922 hybrid +143_1-7 Q0 MARCO_36_28162569-5 63 -0.208080 hybrid +143_1-7 Q0 MARCO_19_2063237119-3 64 -0.208461 hybrid +143_1-7 Q0 MARCO_36_28162569-2 65 -0.212378 hybrid +143_1-7 Q0 MARCO_19_2511919727-32 66 -0.212996 hybrid +143_1-7 Q0 MARCO_14_1772436879-23 67 -0.213266 hybrid +143_1-7 Q0 MARCO_34_884125981-4 68 -0.214599 hybrid +143_1-7 Q0 MARCO_01_828216109-17 69 -0.215106 hybrid +143_1-7 Q0 MARCO_15_1845442848-6 70 -0.215404 hybrid +143_1-7 Q0 MARCO_14_1772314504-10 71 -0.217014 hybrid +143_1-7 Q0 MARCO_40_311823724-109 72 -0.219127 hybrid +143_1-7 Q0 MARCO_40_666680883-2 73 -0.221459 hybrid +143_1-7 Q0 MARCO_19_2510157290-7 74 -0.223824 hybrid +143_1-7 Q0 MARCO_48_291643780-11 75 -0.226289 hybrid +143_1-7 Q0 MARCO_14_1550501220-11 76 -0.227849 hybrid +143_1-7 Q0 KILT_2964862-4 77 -0.229035 hybrid +143_1-7 Q0 MARCO_27_586060148-7 78 -0.230350 hybrid +143_1-7 Q0 MARCO_19_2485043099-38 79 -0.232664 hybrid +143_1-7 Q0 MARCO_19_2495558564-19 80 -0.232826 hybrid +143_1-7 Q0 MARCO_53_740545030-2 81 -0.238134 hybrid +143_1-7 Q0 MARCO_39_1740617149-17 82 -0.238605 hybrid +143_1-7 Q0 MARCO_35_305195648-5 83 -0.239823 hybrid +143_1-7 Q0 MARCO_36_28162569-1 84 -0.239877 hybrid +143_1-7 Q0 MARCO_46_706556582-3 85 -0.240240 hybrid +143_1-7 Q0 MARCO_30_899417262-15 86 -0.241886 hybrid +143_1-7 Q0 MARCO_29_1332813355-12 87 -0.243531 hybrid +143_1-7 Q0 MARCO_14_1192811111-2 88 -0.244789 hybrid +143_1-7 Q0 MARCO_03_248030105-7 89 -0.245655 hybrid +143_1-7 Q0 MARCO_15_1845416670-1 90 -0.246173 hybrid +143_1-7 Q0 MARCO_54_1644946904-1 91 -0.247064 hybrid +143_1-7 Q0 MARCO_19_2496032583-35 92 -0.247495 hybrid +143_1-7 Q0 MARCO_19_2501647851-31 93 -0.247495 hybrid +143_1-7 Q0 MARCO_03_248030105-4 94 -0.248854 hybrid +143_1-7 Q0 MARCO_08_815656170-1 95 -0.249051 hybrid +143_1-7 Q0 MARCO_29_831147049-3 96 -0.249213 hybrid +143_1-7 Q0 KILT_3073096-12 97 -0.249874 hybrid +143_1-7 Q0 MARCO_27_586060148-26 98 -0.252551 hybrid +143_1-7 Q0 MARCO_05_452612308-4 99 -0.252965 hybrid +143_1-7 Q0 MARCO_51_1236688154-2 100 -0.253058 hybrid +143_1-9 Q0 MARCO_11_1466052621-4 1 0.499998 hybrid +143_1-9 Q0 MARCO_12_1868552613-1 2 0.497680 hybrid +143_1-9 Q0 MARCO_50_1170105749-17 3 0.465383 hybrid +143_1-9 Q0 MARCO_11_1466052621-2 4 0.462353 hybrid +143_1-9 Q0 MARCO_11_1466052621-1 5 0.397689 hybrid +143_1-9 Q0 MARCO_49_1322549329-36 6 0.350334 hybrid +143_1-9 Q0 MARCO_49_1322549329-13 7 0.346111 hybrid +143_1-9 Q0 MARCO_16_2992801238-4 8 0.341117 hybrid +143_1-9 Q0 MARCO_16_2992801238-36 9 0.286697 hybrid +143_1-9 Q0 MARCO_03_1767519069-1 10 0.270928 hybrid +143_1-9 Q0 MARCO_16_2992735066-38 11 0.251547 hybrid +143_1-9 Q0 MARCO_16_2992801238-35 12 0.250829 hybrid +143_1-9 Q0 MARCO_50_1170153005-11 13 0.246720 hybrid +143_1-9 Q0 MARCO_05_425622441-155 14 0.234407 hybrid +143_1-9 Q0 MARCO_20_1123152510-3 15 0.223729 hybrid +143_1-9 Q0 MARCO_50_1447842128-24 16 0.174539 hybrid +143_1-9 Q0 MARCO_50_1664099152-17 17 0.174518 hybrid +143_1-9 Q0 MARCO_50_1170105749-16 18 0.174074 hybrid +143_1-9 Q0 MARCO_16_2992801238-43 19 0.135520 hybrid +143_1-9 Q0 MARCO_50_1170105749-13 20 0.127927 hybrid +143_1-9 Q0 MARCO_25_1444907799-11 21 0.117825 hybrid +143_1-9 Q0 MARCO_49_1322549329-5 22 0.113744 hybrid +143_1-9 Q0 MARCO_22_1314742990-2 23 0.113029 hybrid +143_1-9 Q0 MARCO_50_1664099152-16 24 0.112158 hybrid +143_1-9 Q0 MARCO_11_1466052621-3 25 0.105683 hybrid +143_1-9 Q0 MARCO_09_1337153585-5 26 0.095536 hybrid +143_1-9 Q0 MARCO_09_1337153585-3 27 0.095536 hybrid +143_1-9 Q0 MARCO_49_1322549329-1 28 0.094828 hybrid +143_1-9 Q0 MARCO_49_1322549329-16 29 0.093745 hybrid +143_1-9 Q0 MARCO_05_425622441-156 30 0.088161 hybrid +143_1-9 Q0 MARCO_09_1369257847-1 31 0.087960 hybrid +143_1-9 Q0 MARCO_16_2992801238-3 32 0.081533 hybrid +143_1-9 Q0 MARCO_16_2992801238-8 33 0.079527 hybrid +143_1-9 Q0 MARCO_58_1508989598-3 34 0.072733 hybrid +143_1-9 Q0 MARCO_50_1170105749-32 35 0.071796 hybrid +143_1-9 Q0 MARCO_16_2987728684-7 36 0.069967 hybrid +143_1-9 Q0 MARCO_50_1170153005-7 37 0.063831 hybrid +143_1-9 Q0 MARCO_30_1595305934-3 38 0.061788 hybrid +143_1-9 Q0 MARCO_00_885198634-16 39 0.060757 hybrid +143_1-9 Q0 MARCO_35_17834778-3 40 0.060045 hybrid +143_1-9 Q0 MARCO_50_1442936026-4 41 0.059074 hybrid +143_1-9 Q0 MARCO_44_54717487-6 42 0.055558 hybrid +143_1-9 Q0 MARCO_49_1322549329-2 43 0.051981 hybrid +143_1-9 Q0 MARCO_48_1743267438-5 44 0.048802 hybrid +143_1-9 Q0 MARCO_50_1931110882-10 45 0.047966 hybrid +143_1-9 Q0 MARCO_49_1322549329-25 46 0.045214 hybrid +143_1-9 Q0 MARCO_49_1322549329-10 47 0.041400 hybrid +143_1-9 Q0 MARCO_09_1337153585-7 48 0.037905 hybrid +143_1-9 Q0 MARCO_49_1322549329-4 49 0.032901 hybrid +143_1-9 Q0 MARCO_50_2493123400-28 50 0.030954 hybrid +143_1-9 Q0 MARCO_16_2992801238-15 51 0.030684 hybrid +143_1-9 Q0 MARCO_05_425622441-159 52 0.026447 hybrid +143_1-9 Q0 MARCO_49_1322549329-27 53 0.014464 hybrid +143_1-9 Q0 MARCO_49_1322549329-11 54 0.005840 hybrid +143_1-9 Q0 MARCO_55_1703733697-1 55 0.004612 hybrid +143_1-9 Q0 MARCO_30_894043860-3 56 0.002356 hybrid +143_1-9 Q0 MARCO_11_1468726849-2 57 0.002176 hybrid +143_1-9 Q0 MARCO_03_1767358800-1 58 -0.004196 hybrid +143_1-9 Q0 KILT_2980180-14 59 -0.011556 hybrid +143_1-9 Q0 MARCO_16_2992801238-7 60 -0.014637 hybrid +143_1-9 Q0 MARCO_50_1433240437-82 61 -0.015942 hybrid +143_1-9 Q0 MARCO_09_1369257847-2 62 -0.020596 hybrid +143_1-9 Q0 MARCO_09_1369257847-4 63 -0.020596 hybrid +143_1-9 Q0 MARCO_50_1447842128-18 64 -0.024989 hybrid +143_1-9 Q0 KILT_27784417-5 65 -0.025648 hybrid +143_1-9 Q0 MARCO_16_2992801238-51 66 -0.027956 hybrid +143_1-9 Q0 MARCO_50_1447842128-16 67 -0.032388 hybrid +143_1-9 Q0 MARCO_16_2992801238-31 68 -0.034775 hybrid +143_1-9 Q0 MARCO_57_1266958154-2 69 -0.037617 hybrid +143_1-9 Q0 MARCO_47_292639442-4 70 -0.038134 hybrid +143_1-9 Q0 MARCO_49_1322549329-30 71 -0.043121 hybrid +143_1-9 Q0 MARCO_50_2153910656-19 72 -0.046151 hybrid +143_1-9 Q0 MARCO_16_2994499293-10 73 -0.049416 hybrid +143_1-9 Q0 MARCO_24_1719660578-6 74 -0.049819 hybrid +143_1-9 Q0 MARCO_50_1447842128-11 75 -0.051682 hybrid +143_1-9 Q0 MARCO_20_654641845-65 76 -0.053261 hybrid +143_1-9 Q0 MARCO_50_1170105749-8 77 -0.055874 hybrid +143_1-9 Q0 MARCO_21_1144339253-9 78 -0.056284 hybrid +143_1-9 Q0 MARCO_50_2494276134-31 79 -0.057811 hybrid +143_1-9 Q0 MARCO_50_1170105749-23 80 -0.064793 hybrid +143_1-9 Q0 MARCO_20_1123152510-4 81 -0.065199 hybrid +143_1-9 Q0 MARCO_28_286276433-8 82 -0.065542 hybrid +143_1-9 Q0 MARCO_22_1314742990-1 83 -0.065702 hybrid +143_1-9 Q0 MARCO_58_1508486791-2 84 -0.066719 hybrid +143_1-9 Q0 MARCO_58_1508486791-1 85 -0.067177 hybrid +143_1-9 Q0 MARCO_48_625503247-3 86 -0.067715 hybrid +143_1-9 Q0 MARCO_56_1033267861-40 87 -0.071292 hybrid +143_1-9 Q0 MARCO_28_315975032-8 88 -0.074461 hybrid +143_1-9 Q0 MARCO_20_1123152510-5 89 -0.076744 hybrid +143_1-9 Q0 MARCO_16_2987728684-9 90 -0.077528 hybrid +143_1-9 Q0 MARCO_50_1447842128-25 91 -0.082168 hybrid +143_1-9 Q0 MARCO_16_2992735066-25 92 -0.083057 hybrid +143_1-9 Q0 MARCO_05_425622441-161 93 -0.084872 hybrid +143_1-9 Q0 MARCO_50_2392281395-12 94 -0.087224 hybrid +143_1-9 Q0 MARCO_37_712852706-5 95 -0.089372 hybrid +143_1-9 Q0 MARCO_16_1734371813-12 96 -0.090129 hybrid +143_1-9 Q0 MARCO_50_1170153005-12 97 -0.091278 hybrid +143_1-9 Q0 MARCO_50_1411449949-19 98 -0.091486 hybrid +143_1-9 Q0 MARCO_59_292829860-3 99 -0.091666 hybrid +143_1-9 Q0 MARCO_50_1170105749-24 100 -0.092072 hybrid +144_1-1 Q0 MARCO_49_32079945-5 1 0.500000 hybrid +144_1-1 Q0 MARCO_13_1122427952-5 2 0.241293 hybrid +144_1-1 Q0 MARCO_55_764944624-7 3 0.184475 hybrid +144_1-1 Q0 MARCO_40_263496997-20 4 0.146865 hybrid +144_1-1 Q0 MARCO_20_1583730402-17 5 0.137891 hybrid +144_1-1 Q0 MARCO_08_80931565-6 6 0.129856 hybrid +144_1-1 Q0 MARCO_37_1183291072-90 7 0.122636 hybrid +144_1-1 Q0 MARCO_04_1054743032-20 8 0.115981 hybrid +144_1-1 Q0 MARCO_36_1065159467-7 9 0.110466 hybrid +144_1-1 Q0 MARCO_26_368423509-13 10 0.100856 hybrid +144_1-1 Q0 MARCO_54_179437686-7 11 0.098937 hybrid +144_1-1 Q0 MARCO_12_325986257-20 12 0.091592 hybrid +144_1-1 Q0 MARCO_04_1054470175-23 13 0.080459 hybrid +144_1-1 Q0 MARCO_53_1408176924-2 14 0.078323 hybrid +144_1-1 Q0 KILT_1088143-13 15 0.077548 hybrid +144_1-1 Q0 MARCO_49_966540582-4 16 0.075233 hybrid +144_1-1 Q0 MARCO_26_368423509-57 17 0.073951 hybrid +144_1-1 Q0 MARCO_41_1819246096-4 18 0.072140 hybrid +144_1-1 Q0 MARCO_29_776727850-4 19 0.069424 hybrid +144_1-1 Q0 MARCO_06_1868057202-22 20 0.044545 hybrid +144_1-1 Q0 MARCO_53_1514931852-2 21 0.030777 hybrid +144_1-1 Q0 MARCO_35_306070714-1 22 0.029335 hybrid +144_1-1 Q0 MARCO_29_776682642-5 23 0.023401 hybrid +144_1-1 Q0 MARCO_43_70712485-8 24 0.019818 hybrid +144_1-1 Q0 MARCO_45_548797813-8 25 0.019043 hybrid +144_1-1 Q0 MARCO_07_477563596-15 26 0.009459 hybrid +144_1-1 Q0 MARCO_32_113746098-13 27 -0.001264 hybrid +144_1-1 Q0 MARCO_02_1357388163-9 28 -0.001554 hybrid +144_1-1 Q0 MARCO_33_1314185920-3 29 -0.010612 hybrid +144_1-1 Q0 MARCO_45_548782946-1 30 -0.012308 hybrid +144_1-1 Q0 MARCO_02_1357388163-10 31 -0.020174 hybrid +144_1-1 Q0 MARCO_50_1414536119-6 32 -0.026415 hybrid +144_1-1 Q0 MARCO_23_942400411-4 33 -0.029272 hybrid +144_1-1 Q0 MARCO_46_707059343-3 34 -0.029762 hybrid +144_1-1 Q0 MARCO_41_913531454-29 35 -0.030434 hybrid +144_1-1 Q0 MARCO_49_1167411084-11 36 -0.032153 hybrid +144_1-1 Q0 MARCO_18_1801844598-8 37 -0.036729 hybrid +144_1-1 Q0 MARCO_50_1931189531-2 38 -0.040183 hybrid +144_1-1 Q0 MARCO_39_1364807673-5 39 -0.048707 hybrid +144_1-1 Q0 MARCO_26_397996534-44 40 -0.050145 hybrid +144_1-1 Q0 MARCO_26_371972620-48 41 -0.050937 hybrid +144_1-1 Q0 KILT_1638840-26 42 -0.058492 hybrid +144_1-1 Q0 MARCO_31_1554787666-4 43 -0.068939 hybrid +144_1-1 Q0 MARCO_40_324843366-40 44 -0.071832 hybrid +144_1-1 Q0 MARCO_18_2141034807-2 45 -0.072536 hybrid +144_1-1 Q0 MARCO_36_1065159467-8 46 -0.075033 hybrid +144_1-1 Q0 MARCO_32_764394676-40 47 -0.078380 hybrid +144_1-1 Q0 MARCO_59_360948560-2 48 -0.083290 hybrid +144_1-1 Q0 MARCO_24_1444760579-1 49 -0.089028 hybrid +144_1-1 Q0 KILT_5938818-6 50 -0.091214 hybrid +144_1-1 Q0 MARCO_31_1320758696-6 51 -0.091877 hybrid +144_1-1 Q0 MARCO_25_1770661801-5 52 -0.094147 hybrid +144_1-1 Q0 MARCO_51_2010764077-9 53 -0.097722 hybrid +144_1-1 Q0 MARCO_03_1386201546-9 54 -0.097935 hybrid +144_1-1 Q0 MARCO_47_1330723515-4 55 -0.103063 hybrid +144_1-1 Q0 MARCO_47_980813985-7 56 -0.105489 hybrid +144_1-1 Q0 MARCO_39_611108465-4 57 -0.105703 hybrid +144_1-1 Q0 MARCO_49_219929648-3 58 -0.109536 hybrid +144_1-1 Q0 MARCO_36_563025184-5 59 -0.110101 hybrid +144_1-1 Q0 MARCO_26_357935851-67 60 -0.111259 hybrid +144_1-1 Q0 MARCO_30_131556382-16 61 -0.114143 hybrid +144_1-1 Q0 MARCO_59_305116599-1 62 -0.114392 hybrid +144_1-1 Q0 MARCO_46_701427559-6 63 -0.116689 hybrid +144_1-1 Q0 KILT_13479680-2 64 -0.119480 hybrid +144_1-1 Q0 MARCO_20_1690585064-13 65 -0.119979 hybrid +144_1-1 Q0 MARCO_20_1583730402-14 66 -0.120869 hybrid +144_1-1 Q0 MARCO_02_1750639863-3 67 -0.122529 hybrid +144_1-1 Q0 MARCO_13_1314065004-2 68 -0.125138 hybrid +144_1-1 Q0 MARCO_26_409340402-27 69 -0.126736 hybrid +144_1-1 Q0 KILT_23611048-1 70 -0.127422 hybrid +144_1-1 Q0 MARCO_12_347274775-15 71 -0.130302 hybrid +144_1-1 Q0 MARCO_47_980813985-6 72 -0.138011 hybrid +144_1-1 Q0 MARCO_45_548787374-5 73 -0.139138 hybrid +144_1-1 Q0 KILT_5149747-5 74 -0.139320 hybrid +144_1-1 Q0 MARCO_41_1819246096-1 75 -0.141457 hybrid +144_1-1 Q0 MARCO_12_1450623783-5 76 -0.144119 hybrid +144_1-1 Q0 MARCO_12_351738001-74 77 -0.144867 hybrid +144_1-1 Q0 MARCO_00_1006618323-3 78 -0.146465 hybrid +144_1-1 Q0 MARCO_53_1514931852-3 79 -0.148245 hybrid +144_1-1 Q0 MARCO_38_1494305685-10 80 -0.148584 hybrid +144_1-1 Q0 MARCO_13_400485672-6 81 -0.149527 hybrid +144_1-1 Q0 MARCO_56_502479796-2 82 -0.150400 hybrid +144_1-1 Q0 MARCO_04_900108267-21 83 -0.150698 hybrid +144_1-1 Q0 MARCO_40_313638043-60 84 -0.151165 hybrid +144_1-1 Q0 MARCO_51_701899859-51 85 -0.151909 hybrid +144_1-1 Q0 MARCO_21_1150077376-2 86 -0.152594 hybrid +144_1-1 Q0 MARCO_49_966540582-3 87 -0.153053 hybrid +144_1-1 Q0 MARCO_12_526443989-21 88 -0.159583 hybrid +144_1-1 Q0 MARCO_26_399009792-49 89 -0.160398 hybrid +144_1-1 Q0 MARCO_55_818169595-5 90 -0.161684 hybrid +144_1-1 Q0 MARCO_38_850875581-21 91 -0.162307 hybrid +144_1-1 Q0 MARCO_18_3116878569-42 92 -0.162766 hybrid +144_1-1 Q0 MARCO_24_1445078535-14 93 -0.162939 hybrid +144_1-1 Q0 MARCO_21_1148442210-6 94 -0.163629 hybrid +144_1-1 Q0 MARCO_21_960066647-63 95 -0.167088 hybrid +144_1-1 Q0 MARCO_12_325986257-179 96 -0.168584 hybrid +144_1-1 Q0 MARCO_14_545860671-2 97 -0.169888 hybrid +144_1-1 Q0 MARCO_48_1544119999-13 98 -0.171793 hybrid +144_1-1 Q0 MARCO_22_761266353-7 99 -0.171940 hybrid +144_1-1 Q0 MARCO_15_1537187707-27 100 -0.172635 hybrid +144_1-3 Q0 MARCO_41_1178403892-18 1 0.500002 hybrid +144_1-3 Q0 MARCO_47_1512692415-7 2 0.394708 hybrid +144_1-3 Q0 MARCO_47_1514525232-2 3 0.364744 hybrid +144_1-3 Q0 MARCO_47_1514525232-11 4 0.339966 hybrid +144_1-3 Q0 MARCO_50_2384676790-6 5 0.331219 hybrid +144_1-3 Q0 MARCO_24_1139122304-6 6 0.330589 hybrid +144_1-3 Q0 MARCO_18_3116878569-9 7 0.283110 hybrid +144_1-3 Q0 MARCO_18_3116878569-3 8 0.258983 hybrid +144_1-3 Q0 MARCO_20_661275528-10 9 0.246196 hybrid +144_1-3 Q0 MARCO_50_1171002766-12 10 0.246182 hybrid +144_1-3 Q0 MARCO_50_1612876458-9 11 0.230459 hybrid +144_1-3 Q0 MARCO_18_3116878569-42 12 0.229772 hybrid +144_1-3 Q0 MARCO_52_1611218176-12 13 0.225238 hybrid +144_1-3 Q0 MARCO_50_2384676790-5 14 0.222918 hybrid +144_1-3 Q0 MARCO_47_1514525232-16 15 0.222817 hybrid +144_1-3 Q0 MARCO_52_1612771994-5 16 0.221831 hybrid +144_1-3 Q0 MARCO_47_1512692415-8 17 0.219538 hybrid +144_1-3 Q0 MARCO_39_682572531-35 18 0.217191 hybrid +144_1-3 Q0 MARCO_11_1538432070-4 19 0.204487 hybrid +144_1-3 Q0 MARCO_18_3122089436-4 20 0.202159 hybrid +144_1-3 Q0 MARCO_39_682572531-36 21 0.199390 hybrid +144_1-3 Q0 MARCO_29_1334919388-29 22 0.197858 hybrid +144_1-3 Q0 MARCO_20_64092302-9 23 0.174519 hybrid +144_1-3 Q0 MARCO_47_1512692415-6 24 0.171262 hybrid +144_1-3 Q0 MARCO_42_1370357152-101 25 0.165046 hybrid +144_1-3 Q0 MARCO_06_1613077797-43 26 0.156352 hybrid +144_1-3 Q0 MARCO_18_1814240358-6 27 0.142209 hybrid +144_1-3 Q0 MARCO_06_1613239254-22 28 0.140514 hybrid +144_1-3 Q0 MARCO_42_1370257667-30 29 0.136293 hybrid +144_1-3 Q0 MARCO_40_1275785480-2 30 0.131090 hybrid +144_1-3 Q0 MARCO_52_1612763192-8 31 0.128299 hybrid +144_1-3 Q0 MARCO_47_1513152112-1 32 0.122462 hybrid +144_1-3 Q0 MARCO_18_3116878569-8 33 0.120719 hybrid +144_1-3 Q0 MARCO_43_713100005-5 34 0.119772 hybrid +144_1-3 Q0 MARCO_39_682572531-3 35 0.110233 hybrid +144_1-3 Q0 MARCO_06_1613077797-5 36 0.108103 hybrid +144_1-3 Q0 MARCO_41_1213966507-10 37 0.106390 hybrid +144_1-3 Q0 MARCO_47_1513792309-1 38 0.100219 hybrid +144_1-3 Q0 MARCO_42_1370257667-100 39 0.095179 hybrid +144_1-3 Q0 MARCO_39_682572531-78 40 0.094932 hybrid +144_1-3 Q0 MARCO_47_1512692415-9 41 0.094928 hybrid +144_1-3 Q0 MARCO_18_469169095-4 42 0.088879 hybrid +144_1-3 Q0 MARCO_45_1324778070-9 43 0.087576 hybrid +144_1-3 Q0 MARCO_52_1611971891-7 44 0.084689 hybrid +144_1-3 Q0 MARCO_52_1611218176-7 45 0.083822 hybrid +144_1-3 Q0 MARCO_40_656343761-2 46 0.079807 hybrid +144_1-3 Q0 MARCO_04_1031544060-4 47 0.075621 hybrid +144_1-3 Q0 MARCO_39_682678243-5 48 0.072944 hybrid +144_1-3 Q0 MARCO_48_1188605093-6 49 0.069731 hybrid +144_1-3 Q0 MARCO_18_3117429455-2 50 0.055209 hybrid +144_1-3 Q0 MARCO_22_1478753745-74 51 0.054725 hybrid +144_1-3 Q0 MARCO_52_1606156518-7 52 0.053611 hybrid +144_1-3 Q0 MARCO_04_1031404822-7 53 0.052731 hybrid +144_1-3 Q0 MARCO_47_1512775494-9 54 0.045045 hybrid +144_1-3 Q0 MARCO_18_3119373597-8 55 0.039248 hybrid +144_1-3 Q0 MARCO_13_449191725-39 56 0.029145 hybrid +144_1-3 Q0 MARCO_18_3116878569-47 57 0.026583 hybrid +144_1-3 Q0 MARCO_42_1370233238-3 58 0.025817 hybrid +144_1-3 Q0 MARCO_18_3121289624-5 59 0.025575 hybrid +144_1-3 Q0 MARCO_18_3119373597-9 60 0.024167 hybrid +144_1-3 Q0 MARCO_41_1177778210-35 61 0.023427 hybrid +144_1-3 Q0 MARCO_06_227782337-1 62 0.023022 hybrid +144_1-3 Q0 MARCO_41_1941401951-5 63 0.019681 hybrid +144_1-3 Q0 KILT_25236027-17 64 0.018792 hybrid +144_1-3 Q0 MARCO_39_682572531-58 65 0.018576 hybrid +144_1-3 Q0 MARCO_52_1611292037-3 66 0.016679 hybrid +144_1-3 Q0 MARCO_50_2384676790-4 67 0.015112 hybrid +144_1-3 Q0 MARCO_06_1613239254-15 68 0.011850 hybrid +144_1-3 Q0 MARCO_47_1516406453-3 69 0.011511 hybrid +144_1-3 Q0 MARCO_50_2384676790-3 70 0.009882 hybrid +144_1-3 Q0 MARCO_02_831445558-6 71 0.006581 hybrid +144_1-3 Q0 MARCO_42_1370357152-122 72 0.006136 hybrid +144_1-3 Q0 MARCO_42_1370257667-43 73 0.003240 hybrid +144_1-3 Q0 MARCO_44_609514382-1 74 0.003209 hybrid +144_1-3 Q0 MARCO_20_661275528-9 75 -0.000577 hybrid +144_1-3 Q0 MARCO_50_2384676790-2 76 -0.003350 hybrid +144_1-3 Q0 MARCO_20_661275528-13 77 -0.008593 hybrid +144_1-3 Q0 MARCO_39_682678243-6 78 -0.009372 hybrid +144_1-3 Q0 MARCO_52_1604536464-8 79 -0.009473 hybrid +144_1-3 Q0 MARCO_50_1171002766-13 80 -0.013809 hybrid +144_1-3 Q0 MARCO_31_1564388443-14 81 -0.016384 hybrid +144_1-3 Q0 MARCO_39_682572531-57 82 -0.016516 hybrid +144_1-3 Q0 MARCO_18_3270644462-15 83 -0.019941 hybrid +144_1-3 Q0 KILT_40846962-8 84 -0.022934 hybrid +144_1-3 Q0 MARCO_52_1605889585-11 85 -0.025271 hybrid +144_1-3 Q0 MARCO_22_1478753745-52 86 -0.026209 hybrid +144_1-3 Q0 MARCO_47_1509779480-2 87 -0.026354 hybrid +144_1-3 Q0 MARCO_50_1171002766-14 88 -0.027943 hybrid +144_1-3 Q0 MARCO_41_1222306692-16 89 -0.029585 hybrid +144_1-3 Q0 MARCO_40_1188126979-8 90 -0.032116 hybrid +144_1-3 Q0 MARCO_52_1605932689-3 91 -0.032552 hybrid +144_1-3 Q0 MARCO_42_1370357152-112 92 -0.032790 hybrid +144_1-3 Q0 MARCO_18_3116878569-54 93 -0.032887 hybrid +144_1-3 Q0 MARCO_18_3122089436-12 94 -0.033890 hybrid +144_1-3 Q0 KILT_454300-20 95 -0.035075 hybrid +144_1-3 Q0 MARCO_47_1514525232-75 96 -0.036127 hybrid +144_1-3 Q0 MARCO_41_1233738266-27 97 -0.036822 hybrid +144_1-3 Q0 MARCO_04_416494758-70 98 -0.037047 hybrid +144_1-3 Q0 MARCO_39_682572531-25 99 -0.038451 hybrid +144_1-3 Q0 MARCO_18_3119373597-7 100 -0.042395 hybrid +144_1-5 Q0 MARCO_18_3123761348-4 1 0.500000 hybrid +144_1-5 Q0 MARCO_18_3119373597-49 2 0.423218 hybrid +144_1-5 Q0 KILT_984769-3 3 0.337939 hybrid +144_1-5 Q0 MARCO_18_3122089436-12 4 0.296050 hybrid +144_1-5 Q0 MARCO_18_3120209234-18 5 0.274423 hybrid +144_1-5 Q0 MARCO_18_3122089436-20 6 0.268924 hybrid +144_1-5 Q0 MARCO_52_1612771994-5 7 0.257686 hybrid +144_1-5 Q0 MARCO_50_2377117734-5 8 0.238116 hybrid +144_1-5 Q0 MARCO_18_3116878569-3 9 0.234578 hybrid +144_1-5 Q0 KILT_38458-14 10 0.230943 hybrid +144_1-5 Q0 MARCO_18_3120209234-16 11 0.205056 hybrid +144_1-5 Q0 MARCO_42_1370357152-81 12 0.204048 hybrid +144_1-5 Q0 MARCO_18_3120209234-30 13 0.197294 hybrid +144_1-5 Q0 MARCO_18_3120274746-2 14 0.183906 hybrid +144_1-5 Q0 MARCO_18_3119373597-50 15 0.178036 hybrid +144_1-5 Q0 MARCO_40_1275785480-2 16 0.172040 hybrid +144_1-5 Q0 MARCO_06_751858276-11 17 0.164762 hybrid +144_1-5 Q0 MARCO_18_3123205338-9 18 0.161995 hybrid +144_1-5 Q0 MARCO_18_3116878569-42 19 0.152199 hybrid +144_1-5 Q0 MARCO_18_3120321510-18 20 0.149370 hybrid +144_1-5 Q0 MARCO_39_682572531-60 21 0.143190 hybrid +144_1-5 Q0 KILT_38458-25 22 0.141525 hybrid +144_1-5 Q0 MARCO_52_1609377641-2 23 0.137026 hybrid +144_1-5 Q0 MARCO_15_599583395-40 24 0.134982 hybrid +144_1-5 Q0 MARCO_18_3119373597-23 25 0.112851 hybrid +144_1-5 Q0 MARCO_52_1610313472-2 26 0.106413 hybrid +144_1-5 Q0 MARCO_47_1310407186-6 27 0.105440 hybrid +144_1-5 Q0 MARCO_50_2377117734-6 28 0.104572 hybrid +144_1-5 Q0 KILT_38458-15 29 0.090075 hybrid +144_1-5 Q0 MARCO_47_1513229348-2 30 0.083813 hybrid +144_1-5 Q0 MARCO_52_1604550369-1 31 0.083333 hybrid +144_1-5 Q0 MARCO_18_3119937986-25 32 0.082684 hybrid +144_1-5 Q0 MARCO_06_227782337-1 33 0.081769 hybrid +144_1-5 Q0 MARCO_18_3119373597-8 34 0.078638 hybrid +144_1-5 Q0 MARCO_50_2377117734-7 35 0.076012 hybrid +144_1-5 Q0 MARCO_39_682572531-17 36 0.068945 hybrid +144_1-5 Q0 MARCO_18_3120274746-8 37 0.068390 hybrid +144_1-5 Q0 MARCO_18_3119373597-46 38 0.068390 hybrid +144_1-5 Q0 KILT_38458-5 39 0.066416 hybrid +144_1-5 Q0 MARCO_47_1512775494-8 40 0.064274 hybrid +144_1-5 Q0 KILT_3947476-7 41 0.063840 hybrid +144_1-5 Q0 MARCO_06_1613239254-18 42 0.061413 hybrid +144_1-5 Q0 KILT_471187-3 43 0.055100 hybrid +144_1-5 Q0 MARCO_07_1107151936-9 44 0.051067 hybrid +144_1-5 Q0 KILT_407982-5 45 0.048499 hybrid +144_1-5 Q0 MARCO_18_3115949394-6 46 0.048499 hybrid +144_1-5 Q0 MARCO_39_682572531-72 47 0.039255 hybrid +144_1-5 Q0 MARCO_18_2157329059-4 48 0.038668 hybrid +144_1-5 Q0 MARCO_18_3117429455-2 49 0.034576 hybrid +144_1-5 Q0 MARCO_18_3119373597-10 50 0.025875 hybrid +144_1-5 Q0 MARCO_17_4196899459-12 51 0.022709 hybrid +144_1-5 Q0 MARCO_39_682572531-80 52 0.020501 hybrid +144_1-5 Q0 MARCO_52_1604550369-11 53 0.020485 hybrid +144_1-5 Q0 MARCO_18_3119723423-2 54 0.020227 hybrid +144_1-5 Q0 MARCO_18_3116878569-9 55 0.016776 hybrid +144_1-5 Q0 MARCO_48_626188579-4 56 0.015138 hybrid +144_1-5 Q0 MARCO_48_626188579-3 57 0.013239 hybrid +144_1-5 Q0 MARCO_52_1612363767-2 58 0.011366 hybrid +144_1-5 Q0 MARCO_18_3120209234-3 59 0.009377 hybrid +144_1-5 Q0 MARCO_18_3116102468-2 60 0.008040 hybrid +144_1-5 Q0 MARCO_18_3119723423-3 61 -0.001051 hybrid +144_1-5 Q0 MARCO_52_1611819383-4 62 -0.005605 hybrid +144_1-5 Q0 MARCO_52_1609381918-3 63 -0.005750 hybrid +144_1-5 Q0 MARCO_29_1176947740-15 64 -0.006457 hybrid +144_1-5 Q0 MARCO_18_3123761348-7 65 -0.008677 hybrid +144_1-5 Q0 MARCO_39_682572531-50 66 -0.008681 hybrid +144_1-5 Q0 MARCO_52_1612363767-4 67 -0.012410 hybrid +144_1-5 Q0 MARCO_39_682572531-29 68 -0.013469 hybrid +144_1-5 Q0 MARCO_47_1510886015-7 69 -0.015701 hybrid +144_1-5 Q0 MARCO_50_1438815936-10 70 -0.018656 hybrid +144_1-5 Q0 MARCO_05_846902478-2 71 -0.021439 hybrid +144_1-5 Q0 MARCO_18_3119723423-36 72 -0.022791 hybrid +144_1-5 Q0 KILT_38458-1 73 -0.023780 hybrid +144_1-5 Q0 MARCO_18_3120158992-3 74 -0.027963 hybrid +144_1-5 Q0 MARCO_47_1515060083-8 75 -0.028666 hybrid +144_1-5 Q0 MARCO_18_3119937986-3 76 -0.028756 hybrid +144_1-5 Q0 MARCO_20_64092302-2 77 -0.029163 hybrid +144_1-5 Q0 MARCO_47_1509913992-7 78 -0.037296 hybrid +144_1-5 Q0 MARCO_18_3119937986-26 79 -0.040220 hybrid +144_1-5 Q0 MARCO_47_1510007983-5 80 -0.041170 hybrid +144_1-5 Q0 MARCO_50_2377117734-1 81 -0.043855 hybrid +144_1-5 Q0 MARCO_18_3119373597-3 82 -0.044832 hybrid +144_1-5 Q0 MARCO_50_1612876458-9 83 -0.045012 hybrid +144_1-5 Q0 MARCO_18_3120321510-14 84 -0.045380 hybrid +144_1-5 Q0 MARCO_18_3120274746-1 85 -0.048163 hybrid +144_1-5 Q0 MARCO_47_1512584517-5 86 -0.053080 hybrid +144_1-5 Q0 MARCO_44_838702016-6 87 -0.053576 hybrid +144_1-5 Q0 MARCO_18_3120321510-17 88 -0.053971 hybrid +144_1-5 Q0 MARCO_11_1494209175-2 89 -0.055014 hybrid +144_1-5 Q0 MARCO_04_215578790-1 90 -0.058970 hybrid +144_1-5 Q0 MARCO_17_4196899459-11 91 -0.061679 hybrid +144_1-5 Q0 MARCO_49_1591524761-399 92 -0.063324 hybrid +144_1-5 Q0 MARCO_40_1275832723-24 93 -0.063563 hybrid +144_1-5 Q0 MARCO_52_1611819383-1 94 -0.064974 hybrid +144_1-5 Q0 MARCO_18_3121989165-17 95 -0.068488 hybrid +144_1-5 Q0 MARCO_18_3119937986-32 96 -0.069594 hybrid +144_1-5 Q0 MARCO_18_3120004089-26 97 -0.073420 hybrid +144_1-5 Q0 MARCO_13_1315258021-2 98 -0.077063 hybrid +144_1-5 Q0 MARCO_18_3119473480-5 99 -0.077884 hybrid +144_1-5 Q0 MARCO_52_1604550369-6 100 -0.077958 hybrid +144_2-1 Q0 MARCO_18_3116878569-42 1 0.500002 hybrid +144_2-1 Q0 MARCO_18_3116878569-9 2 0.452896 hybrid +144_2-1 Q0 MARCO_18_3116878569-2 3 0.443791 hybrid +144_2-1 Q0 MARCO_18_3116878569-3 4 0.435575 hybrid +144_2-1 Q0 MARCO_05_809884773-15 5 0.273179 hybrid +144_2-1 Q0 MARCO_24_1139122304-6 6 0.246612 hybrid +144_2-1 Q0 MARCO_18_3270644462-15 7 0.241771 hybrid +144_2-1 Q0 MARCO_18_3116756863-26 8 0.232781 hybrid +144_2-1 Q0 MARCO_18_3116878569-54 9 0.194845 hybrid +144_2-1 Q0 MARCO_18_3116878569-21 10 0.194693 hybrid +144_2-1 Q0 MARCO_18_3116878569-47 11 0.192727 hybrid +144_2-1 Q0 MARCO_52_1611218176-12 12 0.183083 hybrid +144_2-1 Q0 MARCO_18_3116878569-5 13 0.144511 hybrid +144_2-1 Q0 MARCO_18_3270644462-62 14 0.141589 hybrid +144_2-1 Q0 MARCO_18_3116878569-16 15 0.140759 hybrid +144_2-1 Q0 MARCO_18_3270644462-2 16 0.131976 hybrid +144_2-1 Q0 MARCO_18_3116123834-6 17 0.120159 hybrid +144_2-1 Q0 MARCO_18_3116878569-15 18 0.120135 hybrid +144_2-1 Q0 MARCO_52_1606022427-7 19 0.111818 hybrid +144_2-1 Q0 KILT_59118602-12 20 0.086061 hybrid +144_2-1 Q0 MARCO_18_3270644462-105 21 0.070687 hybrid +144_2-1 Q0 MARCO_29_1334919388-29 22 0.067394 hybrid +144_2-1 Q0 MARCO_29_865121557-2 23 0.065434 hybrid +144_2-1 Q0 MARCO_44_607583871-6 24 0.060051 hybrid +144_2-1 Q0 KILT_2647515-22 25 0.050504 hybrid +144_2-1 Q0 MARCO_29_866977072-4 26 0.047534 hybrid +144_2-1 Q0 MARCO_15_599583395-40 27 0.046594 hybrid +144_2-1 Q0 MARCO_18_452398676-5 28 0.040462 hybrid +144_2-1 Q0 MARCO_18_3116878569-8 29 0.036116 hybrid +144_2-1 Q0 MARCO_18_3116064758-9 30 0.033730 hybrid +144_2-1 Q0 MARCO_19_604906265-18 31 0.031180 hybrid +144_2-1 Q0 MARCO_44_608838647-4 32 0.030912 hybrid +144_2-1 Q0 MARCO_18_3116878569-10 33 0.019498 hybrid +144_2-1 Q0 MARCO_15_599583395-14 34 0.019202 hybrid +144_2-1 Q0 MARCO_18_3118367795-27 35 0.015675 hybrid +144_2-1 Q0 MARCO_18_3116510005-26 36 0.014857 hybrid +144_2-1 Q0 MARCO_18_3116878569-7 37 0.010103 hybrid +144_2-1 Q0 MARCO_18_3121862264-22 38 -0.001515 hybrid +144_2-1 Q0 MARCO_36_838613568-7 39 -0.003138 hybrid +144_2-1 Q0 MARCO_18_3116878569-52 40 -0.006025 hybrid +144_2-1 Q0 MARCO_18_3116878569-6 41 -0.008134 hybrid +144_2-1 Q0 KILT_4453559-12 42 -0.011759 hybrid +144_2-1 Q0 MARCO_29_868665183-6 43 -0.013360 hybrid +144_2-1 Q0 MARCO_18_3116664840-29 44 -0.014017 hybrid +144_2-1 Q0 MARCO_19_604906265-19 45 -0.017757 hybrid +144_2-1 Q0 MARCO_18_3121862264-40 46 -0.021941 hybrid +144_2-1 Q0 MARCO_18_3116878569-61 47 -0.022060 hybrid +144_2-1 Q0 MARCO_18_3270644462-22 48 -0.022772 hybrid +144_2-1 Q0 KILT_2647515-27 49 -0.027315 hybrid +144_2-1 Q0 MARCO_18_3116878569-4 50 -0.027468 hybrid +144_2-1 Q0 MARCO_18_3121862264-49 51 -0.028995 hybrid +144_2-1 Q0 MARCO_52_1609989698-4 52 -0.029449 hybrid +144_2-1 Q0 MARCO_18_3116878569-63 53 -0.032604 hybrid +144_2-1 Q0 KILT_2647515-23 54 -0.036235 hybrid +144_2-1 Q0 MARCO_18_3116878569-23 55 -0.040218 hybrid +144_2-1 Q0 MARCO_15_599583395-56 56 -0.043469 hybrid +144_2-1 Q0 MARCO_18_3116235467-40 57 -0.044643 hybrid +144_2-1 Q0 MARCO_18_3116171216-8 58 -0.047787 hybrid +144_2-1 Q0 KILT_2647515-17 59 -0.053210 hybrid +144_2-1 Q0 MARCO_18_3121388572-4 60 -0.056886 hybrid +144_2-1 Q0 MARCO_31_882254318-3 61 -0.058091 hybrid +144_2-1 Q0 MARCO_18_3121862264-54 62 -0.062674 hybrid +144_2-1 Q0 KILT_56984039-3 63 -0.066600 hybrid +144_2-1 Q0 MARCO_18_3270644462-19 64 -0.079387 hybrid +144_2-1 Q0 MARCO_44_608838647-5 65 -0.079408 hybrid +144_2-1 Q0 MARCO_18_3116556761-8 66 -0.079746 hybrid +144_2-1 Q0 MARCO_18_3116878569-79 67 -0.083082 hybrid +144_2-1 Q0 MARCO_18_3121862264-60 68 -0.087868 hybrid +144_2-1 Q0 MARCO_18_3116878569-30 69 -0.090482 hybrid +144_2-1 Q0 KILT_2647515-21 70 -0.091639 hybrid +144_2-1 Q0 MARCO_47_1511451791-5 71 -0.096940 hybrid +144_2-1 Q0 MARCO_52_1611201508-6 72 -0.100711 hybrid +144_2-1 Q0 MARCO_17_4196899459-24 73 -0.100790 hybrid +144_2-1 Q0 MARCO_18_3116878569-17 74 -0.100851 hybrid +144_2-1 Q0 MARCO_18_3116878569-57 75 -0.105546 hybrid +144_2-1 Q0 MARCO_40_1188099226-10 76 -0.108312 hybrid +144_2-1 Q0 KILT_59118602-8 77 -0.109061 hybrid +144_2-1 Q0 MARCO_18_3116878569-53 78 -0.110318 hybrid +144_2-1 Q0 MARCO_40_1275832723-17 79 -0.111709 hybrid +144_2-1 Q0 MARCO_18_3121862264-35 80 -0.111982 hybrid +144_2-1 Q0 MARCO_40_1266037720-5 81 -0.112631 hybrid +144_2-1 Q0 MARCO_37_711221842-5 82 -0.113957 hybrid +144_2-1 Q0 KILT_2647515-16 83 -0.119088 hybrid +144_2-1 Q0 MARCO_44_40209535-2 84 -0.119295 hybrid +144_2-1 Q0 MARCO_18_3121862264-25 85 -0.121173 hybrid +144_2-1 Q0 MARCO_18_3116317508-21 86 -0.122755 hybrid +144_2-1 Q0 MARCO_15_599583395-25 87 -0.127965 hybrid +144_2-1 Q0 MARCO_29_865505331-8 88 -0.128394 hybrid +144_2-1 Q0 KILT_59118602-2 89 -0.129663 hybrid +144_2-1 Q0 MARCO_36_890477892-13 90 -0.132853 hybrid +144_2-1 Q0 MARCO_36_838613568-6 91 -0.133592 hybrid +144_2-1 Q0 MARCO_18_3121862264-3 92 -0.133769 hybrid +144_2-1 Q0 MARCO_18_3116878569-65 93 -0.136961 hybrid +144_2-1 Q0 MARCO_17_3707709305-48 94 -0.140177 hybrid +144_2-1 Q0 MARCO_18_3116878569-39 95 -0.141446 hybrid +144_2-1 Q0 MARCO_18_3123761348-20 96 -0.143431 hybrid +144_2-1 Q0 MARCO_17_3707460653-169 97 -0.146647 hybrid +144_2-1 Q0 MARCO_52_1606179012-4 98 -0.148154 hybrid +144_2-1 Q0 MARCO_18_3119373597-8 99 -0.148421 hybrid +144_2-1 Q0 MARCO_18_3116878569-69 100 -0.148853 hybrid +144_2-11 Q0 MARCO_07_1118258898-1 1 0.500000 hybrid +144_2-11 Q0 MARCO_18_3123329102-14 2 0.494728 hybrid +144_2-11 Q0 MARCO_18_1823217371-5 3 0.416076 hybrid +144_2-11 Q0 MARCO_18_3116977530-2 4 0.372183 hybrid +144_2-11 Q0 KILT_28506-21 5 0.364650 hybrid +144_2-11 Q0 MARCO_18_3116977530-1 6 0.347294 hybrid +144_2-11 Q0 KILT_15944-11 7 0.304257 hybrid +144_2-11 Q0 KILT_28506-20 8 0.290305 hybrid +144_2-11 Q0 KILT_4707045-1 9 0.275778 hybrid +144_2-11 Q0 MARCO_39_1568280691-11 10 0.271475 hybrid +144_2-11 Q0 KILT_4707045-2 11 0.260754 hybrid +144_2-11 Q0 MARCO_03_1605448829-5 12 0.255590 hybrid +144_2-11 Q0 MARCO_39_1568280691-12 13 0.255227 hybrid +144_2-11 Q0 MARCO_18_3116444373-29 14 0.245171 hybrid +144_2-11 Q0 KILT_4707019-11 15 0.234498 hybrid +144_2-11 Q0 KILT_22739594-3 16 0.211559 hybrid +144_2-11 Q0 MARCO_59_605592475-8 17 0.206922 hybrid +144_2-11 Q0 KILT_47105558-1 18 0.204120 hybrid +144_2-11 Q0 KILT_15944-8 19 0.204012 hybrid +144_2-11 Q0 KILT_15944-9 20 0.165023 hybrid +144_2-11 Q0 MARCO_18_1823046962-7 21 0.163959 hybrid +144_2-11 Q0 KILT_1424917-6 22 0.146816 hybrid +144_2-11 Q0 MARCO_51_2011530188-37 23 0.145847 hybrid +144_2-11 Q0 MARCO_18_3123329102-15 24 0.141323 hybrid +144_2-11 Q0 MARCO_59_605592475-1 25 0.134762 hybrid +144_2-11 Q0 MARCO_34_1325428574-1 26 0.132284 hybrid +144_2-11 Q0 MARCO_51_1637467816-3 27 0.117619 hybrid +144_2-11 Q0 KILT_316824-4 28 0.112909 hybrid +144_2-11 Q0 MARCO_39_1568280691-7 29 0.111192 hybrid +144_2-11 Q0 KILT_60323001-5 30 0.107070 hybrid +144_2-11 Q0 MARCO_18_3119937986-21 31 0.105375 hybrid +144_2-11 Q0 MARCO_03_1671085973-1 32 0.105345 hybrid +144_2-11 Q0 MARCO_28_285675710-3 33 0.099372 hybrid +144_2-11 Q0 KILT_15944-10 34 0.098641 hybrid +144_2-11 Q0 KILT_146924-17 35 0.094325 hybrid +144_2-11 Q0 MARCO_39_1568280691-16 36 0.093486 hybrid +144_2-11 Q0 MARCO_22_505649722-2 37 0.091916 hybrid +144_2-11 Q0 MARCO_06_1271709591-201 38 0.085822 hybrid +144_2-11 Q0 MARCO_50_1929870268-37 39 0.083984 hybrid +144_2-11 Q0 MARCO_18_3123329102-30 40 0.083902 hybrid +144_2-11 Q0 MARCO_18_3116444373-57 41 0.080745 hybrid +144_2-11 Q0 KILT_3813298-1 42 0.075443 hybrid +144_2-11 Q0 MARCO_39_1569621978-13 43 0.074210 hybrid +144_2-11 Q0 MARCO_50_1527888210-2 44 0.060807 hybrid +144_2-11 Q0 MARCO_18_3112781714-23 45 0.051911 hybrid +144_2-11 Q0 MARCO_13_449270319-5 46 0.047206 hybrid +144_2-11 Q0 KILT_26396278-1 47 0.043754 hybrid +144_2-11 Q0 MARCO_07_1118258898-7 48 0.039127 hybrid +144_2-11 Q0 MARCO_39_1566281569-5 49 0.031788 hybrid +144_2-11 Q0 MARCO_12_586299903-22 50 0.030274 hybrid +144_2-11 Q0 KILT_4551386-23 51 0.028025 hybrid +144_2-11 Q0 MARCO_59_605592475-6 52 0.027649 hybrid +144_2-11 Q0 KILT_41228673-45 53 0.027026 hybrid +144_2-11 Q0 MARCO_50_1929870268-12 54 0.025936 hybrid +144_2-11 Q0 KILT_407982-8 55 0.024665 hybrid +144_2-11 Q0 MARCO_18_924403543-3 56 0.022398 hybrid +144_2-11 Q0 MARCO_17_670460678-2 57 0.020275 hybrid +144_2-11 Q0 KILT_22739594-1 58 0.013109 hybrid +144_2-11 Q0 MARCO_06_1271709591-202 59 0.012642 hybrid +144_2-11 Q0 KILT_15944-12 60 0.012456 hybrid +144_2-11 Q0 KILT_15944-1 61 0.005661 hybrid +144_2-11 Q0 MARCO_51_1999142238-14 62 0.005497 hybrid +144_2-11 Q0 MARCO_01_1544663324-2 63 0.001077 hybrid +144_2-11 Q0 MARCO_10_1132480802-28 64 0.000843 hybrid +144_2-11 Q0 KILT_146924-14 65 -0.000424 hybrid +144_2-11 Q0 KILT_28506-28 66 -0.003538 hybrid +144_2-11 Q0 KILT_11083753-4 67 -0.005134 hybrid +144_2-11 Q0 MARCO_18_1823046962-8 68 -0.010155 hybrid +144_2-11 Q0 KILT_146924-1 69 -0.014869 hybrid +144_2-11 Q0 KILT_4707045-5 70 -0.015993 hybrid +144_2-11 Q0 MARCO_18_924403543-10 71 -0.022956 hybrid +144_2-11 Q0 MARCO_18_2383048956-12 72 -0.029271 hybrid +144_2-11 Q0 MARCO_50_1428457502-7 73 -0.030101 hybrid +144_2-11 Q0 MARCO_33_1052307042-14 74 -0.031346 hybrid +144_2-11 Q0 MARCO_39_1568280691-5 75 -0.035645 hybrid +144_2-11 Q0 MARCO_18_2718586974-13 76 -0.037605 hybrid +144_2-11 Q0 MARCO_39_1567281351-2 77 -0.040446 hybrid +144_2-11 Q0 MARCO_51_2011530188-34 78 -0.041099 hybrid +144_2-11 Q0 MARCO_17_670460678-4 79 -0.044516 hybrid +144_2-11 Q0 KILT_15944-7 80 -0.045160 hybrid +144_2-11 Q0 MARCO_31_1022106243-3 81 -0.046358 hybrid +144_2-11 Q0 MARCO_50_1527888210-15 82 -0.046531 hybrid +144_2-11 Q0 KILT_23821416-2 83 -0.047513 hybrid +144_2-11 Q0 MARCO_24_719939137-3 84 -0.048058 hybrid +144_2-11 Q0 MARCO_18_3115949394-9 85 -0.049757 hybrid +144_2-11 Q0 MARCO_18_3123329102-4 86 -0.051760 hybrid +144_2-11 Q0 MARCO_39_1568280691-13 87 -0.052750 hybrid +144_2-11 Q0 MARCO_33_1052307042-16 88 -0.056249 hybrid +144_2-11 Q0 KILT_22739594-2 89 -0.058541 hybrid +144_2-11 Q0 KILT_859284-3 90 -0.063545 hybrid +144_2-11 Q0 MARCO_18_3116977530-11 91 -0.064708 hybrid +144_2-11 Q0 MARCO_03_249412985-12 92 -0.065716 hybrid +144_2-11 Q0 MARCO_28_285675710-4 93 -0.070603 hybrid +144_2-11 Q0 MARCO_03_1605448829-3 94 -0.071745 hybrid +144_2-11 Q0 MARCO_18_919757789-1 95 -0.075352 hybrid +144_2-11 Q0 MARCO_18_3112781714-22 96 -0.076398 hybrid +144_2-11 Q0 MARCO_39_1568280691-23 97 -0.076718 hybrid +144_2-11 Q0 MARCO_48_1379383833-2 98 -0.076749 hybrid +144_2-11 Q0 MARCO_39_1569621978-14 99 -0.077852 hybrid +144_2-11 Q0 MARCO_33_1052307042-15 100 -0.078699 hybrid +144_2-13 Q0 KILT_4707019-11 1 0.500000 hybrid +144_2-13 Q0 MARCO_12_135618726-52 2 0.438682 hybrid +144_2-13 Q0 KILT_28506-21 3 0.415542 hybrid +144_2-13 Q0 KILT_28506-20 4 0.413772 hybrid +144_2-13 Q0 MARCO_18_3123329102-14 5 0.336662 hybrid +144_2-13 Q0 MARCO_50_1447966974-15 6 0.305715 hybrid +144_2-13 Q0 MARCO_24_719939137-3 7 0.301834 hybrid +144_2-13 Q0 MARCO_28_285675710-3 8 0.270053 hybrid +144_2-13 Q0 KILT_15944-12 9 0.263291 hybrid +144_2-13 Q0 MARCO_18_3116444373-29 10 0.251250 hybrid +144_2-13 Q0 MARCO_18_3123329102-15 11 0.238328 hybrid +144_2-13 Q0 MARCO_18_924403543-10 12 0.237521 hybrid +144_2-13 Q0 MARCO_03_1605448829-5 13 0.232825 hybrid +144_2-13 Q0 MARCO_39_1568280691-7 14 0.223566 hybrid +144_2-13 Q0 KILT_41228673-45 15 0.223124 hybrid +144_2-13 Q0 MARCO_18_1823217371-5 16 0.218158 hybrid +144_2-13 Q0 MARCO_07_1118258898-2 17 0.215424 hybrid +144_2-13 Q0 KILT_15944-11 18 0.211235 hybrid +144_2-13 Q0 MARCO_18_919757789-4 19 0.209026 hybrid +144_2-13 Q0 MARCO_18_3123329102-4 20 0.197766 hybrid +144_2-13 Q0 MARCO_18_3116444373-5 21 0.188721 hybrid +144_2-13 Q0 MARCO_51_2011530188-36 22 0.172739 hybrid +144_2-13 Q0 MARCO_18_3116977530-2 23 0.165412 hybrid +144_2-13 Q0 MARCO_51_1999142238-14 24 0.163828 hybrid +144_2-13 Q0 MARCO_07_1118258898-1 25 0.162951 hybrid +144_2-13 Q0 MARCO_59_605592475-8 26 0.155503 hybrid +144_2-13 Q0 KILT_41228673-33 27 0.152794 hybrid +144_2-13 Q0 MARCO_18_924403543-11 28 0.151471 hybrid +144_2-13 Q0 KILT_407982-8 29 0.138115 hybrid +144_2-13 Q0 MARCO_47_1515370785-2 30 0.136010 hybrid +144_2-13 Q0 MARCO_22_505649722-2 31 0.125293 hybrid +144_2-13 Q0 KILT_22739594-2 32 0.119711 hybrid +144_2-13 Q0 MARCO_18_474780560-21 33 0.119234 hybrid +144_2-13 Q0 KILT_41228673-43 34 0.118018 hybrid +144_2-13 Q0 KILT_41228673-36 35 0.113200 hybrid +144_2-13 Q0 KILT_3459152-2 36 0.112883 hybrid +144_2-13 Q0 MARCO_51_2022548062-7 37 0.112732 hybrid +144_2-13 Q0 MARCO_18_3115949394-5 38 0.111026 hybrid +144_2-13 Q0 KILT_3813298-4 39 0.110883 hybrid +144_2-13 Q0 MARCO_59_605592475-1 40 0.109988 hybrid +144_2-13 Q0 MARCO_31_1022106243-3 41 0.108955 hybrid +144_2-13 Q0 MARCO_18_3136897509-2 42 0.101620 hybrid +144_2-13 Q0 MARCO_07_1118258898-7 43 0.094697 hybrid +144_2-13 Q0 KILT_4707045-1 44 0.089071 hybrid +144_2-13 Q0 KILT_15944-20 45 0.075763 hybrid +144_2-13 Q0 MARCO_24_1724917299-2 46 0.075516 hybrid +144_2-13 Q0 MARCO_50_2746669517-6 47 0.070342 hybrid +144_2-13 Q0 MARCO_51_2011530188-37 48 0.068445 hybrid +144_2-13 Q0 MARCO_59_605592475-6 49 0.066271 hybrid +144_2-13 Q0 MARCO_31_882214560-3 50 0.060342 hybrid +144_2-13 Q0 KILT_407982-4 51 0.060081 hybrid +144_2-13 Q0 MARCO_31_1022707199-2 52 0.053032 hybrid +144_2-13 Q0 MARCO_18_3123329102-30 53 0.052125 hybrid +144_2-13 Q0 KILT_316824-4 54 0.045332 hybrid +144_2-13 Q0 MARCO_51_2018625900-18 55 0.043800 hybrid +144_2-13 Q0 KILT_1551099-5 56 0.041660 hybrid +144_2-13 Q0 KILT_41228673-34 57 0.040540 hybrid +144_2-13 Q0 KILT_60323001-5 58 0.039711 hybrid +144_2-13 Q0 MARCO_18_924403543-33 59 0.039659 hybrid +144_2-13 Q0 MARCO_51_2029514103-10 60 0.038722 hybrid +144_2-13 Q0 KILT_68498-12 61 0.038253 hybrid +144_2-13 Q0 MARCO_39_1568280691-11 62 0.029364 hybrid +144_2-13 Q0 MARCO_51_1637467816-3 63 0.022510 hybrid +144_2-13 Q0 MARCO_50_1929870268-37 64 0.016767 hybrid +144_2-13 Q0 MARCO_50_1929870268-12 65 0.016598 hybrid +144_2-13 Q0 KILT_1424917-6 66 0.011116 hybrid +144_2-13 Q0 KILT_28506-8 67 0.009597 hybrid +144_2-13 Q0 MARCO_18_3116977530-1 68 0.006545 hybrid +144_2-13 Q0 MARCO_18_3115949394-9 69 -0.002774 hybrid +144_2-13 Q0 MARCO_51_2012025791-44 70 -0.003355 hybrid +144_2-13 Q0 MARCO_18_2380449995-2 71 -0.008963 hybrid +144_2-13 Q0 MARCO_18_3119373597-27 72 -0.011502 hybrid +144_2-13 Q0 MARCO_18_923431213-19 73 -0.014259 hybrid +144_2-13 Q0 MARCO_19_1463107877-1 74 -0.014710 hybrid +144_2-13 Q0 MARCO_19_1463107877-9 75 -0.019623 hybrid +144_2-13 Q0 MARCO_18_920522412-2 76 -0.021099 hybrid +144_2-13 Q0 MARCO_18_2383048956-4 77 -0.030548 hybrid +144_2-13 Q0 KILT_3813298-1 78 -0.034038 hybrid +144_2-13 Q0 KILT_11734700-2 79 -0.034581 hybrid +144_2-13 Q0 KILT_41228673-35 80 -0.034607 hybrid +144_2-13 Q0 MARCO_51_908959968-1 81 -0.034941 hybrid +144_2-13 Q0 MARCO_18_3116977530-7 82 -0.035149 hybrid +144_2-13 Q0 KILT_3549306-35 83 -0.035675 hybrid +144_2-13 Q0 MARCO_24_1015606447-2 84 -0.035931 hybrid +144_2-13 Q0 MARCO_32_113900488-11 85 -0.036747 hybrid +144_2-13 Q0 MARCO_19_564053863-2 86 -0.036899 hybrid +144_2-13 Q0 MARCO_06_1232309151-162 87 -0.039216 hybrid +144_2-13 Q0 MARCO_18_3119937986-21 88 -0.039308 hybrid +144_2-13 Q0 KILT_28506-4 89 -0.045085 hybrid +144_2-13 Q0 MARCO_19_1463107877-10 90 -0.045280 hybrid +144_2-13 Q0 KILT_146924-2 91 -0.045458 hybrid +144_2-13 Q0 KILT_4707045-2 92 -0.045627 hybrid +144_2-13 Q0 MARCO_39_348669861-2 93 -0.049968 hybrid +144_2-13 Q0 KILT_28506-28 94 -0.052728 hybrid +144_2-13 Q0 MARCO_18_924403543-9 95 -0.054087 hybrid +144_2-13 Q0 KILT_47105558-1 96 -0.054842 hybrid +144_2-13 Q0 MARCO_39_1569671484-12 97 -0.056166 hybrid +144_2-13 Q0 MARCO_18_3119937986-35 98 -0.056283 hybrid +144_2-13 Q0 KILT_1179352-1 99 -0.056531 hybrid +144_2-13 Q0 KILT_41228673-6 100 -0.057568 hybrid +144_2-15 Q0 MARCO_24_1139122304-6 1 0.500002 hybrid +144_2-15 Q0 MARCO_18_3116878569-16 2 0.456502 hybrid +144_2-15 Q0 MARCO_18_3116878569-64 3 0.363004 hybrid +144_2-15 Q0 MARCO_18_469169095-4 4 0.315947 hybrid +144_2-15 Q0 MARCO_18_3116878569-20 5 0.300869 hybrid +144_2-15 Q0 MARCO_18_3116878569-54 6 0.284724 hybrid +144_2-15 Q0 MARCO_18_3121862264-54 7 0.281486 hybrid +144_2-15 Q0 MARCO_18_3116878569-9 8 0.251769 hybrid +144_2-15 Q0 MARCO_51_607329168-1 9 0.241709 hybrid +144_2-15 Q0 MARCO_18_3116878569-15 10 0.234581 hybrid +144_2-15 Q0 MARCO_18_3116878569-17 11 0.233751 hybrid +144_2-15 Q0 MARCO_18_3120100172-4 12 0.226283 hybrid +144_2-15 Q0 MARCO_18_3116878569-19 13 0.214853 hybrid +144_2-15 Q0 MARCO_29_1334919388-29 14 0.201899 hybrid +144_2-15 Q0 MARCO_18_3270644462-15 15 0.148620 hybrid +144_2-15 Q0 MARCO_52_1611218176-12 16 0.137138 hybrid +144_2-15 Q0 MARCO_31_644711912-2 17 0.116452 hybrid +144_2-15 Q0 MARCO_20_1743515718-7 18 0.093898 hybrid +144_2-15 Q0 MARCO_18_3116878569-21 19 0.068624 hybrid +144_2-15 Q0 MARCO_18_3121862264-49 20 0.052896 hybrid +144_2-15 Q0 MARCO_36_842697445-4 21 0.049828 hybrid +144_2-15 Q0 MARCO_18_3116878569-3 22 0.030516 hybrid +144_2-15 Q0 MARCO_18_3116878569-61 23 0.021712 hybrid +144_2-15 Q0 MARCO_40_1275832723-31 24 0.009358 hybrid +144_2-15 Q0 KILT_23441092-6 25 -0.018431 hybrid +144_2-15 Q0 MARCO_18_3116878569-42 26 -0.020916 hybrid +144_2-15 Q0 MARCO_18_3116878569-62 27 -0.021737 hybrid +144_2-15 Q0 MARCO_18_3116878569-4 28 -0.034125 hybrid +144_2-15 Q0 MARCO_18_3121862264-31 29 -0.041798 hybrid +144_2-15 Q0 MARCO_40_1275832723-32 30 -0.041896 hybrid +144_2-15 Q0 MARCO_50_495945508-4 31 -0.054841 hybrid +144_2-15 Q0 MARCO_37_1248516398-21 32 -0.058411 hybrid +144_2-15 Q0 MARCO_40_1275785480-2 33 -0.060862 hybrid +144_2-15 Q0 MARCO_18_3116878569-14 34 -0.065569 hybrid +144_2-15 Q0 MARCO_39_24590426-8 35 -0.072008 hybrid +144_2-15 Q0 MARCO_18_3116878569-6 36 -0.076842 hybrid +144_2-15 Q0 MARCO_37_1257178148-7 37 -0.088642 hybrid +144_2-15 Q0 KILT_1542802-5 38 -0.117159 hybrid +144_2-15 Q0 MARCO_18_3121862264-60 39 -0.119767 hybrid +144_2-15 Q0 MARCO_18_3116878569-52 40 -0.123040 hybrid +144_2-15 Q0 MARCO_24_1960030363-4 41 -0.123304 hybrid +144_2-15 Q0 MARCO_18_3116878569-8 42 -0.123414 hybrid +144_2-15 Q0 MARCO_04_483486798-16 43 -0.129338 hybrid +144_2-15 Q0 MARCO_18_3270644462-11 44 -0.140092 hybrid +144_2-15 Q0 KILT_23441092-1 45 -0.141317 hybrid +144_2-15 Q0 MARCO_06_1613239254-40 46 -0.147986 hybrid +144_2-15 Q0 MARCO_29_1695893577-11 47 -0.147990 hybrid +144_2-15 Q0 MARCO_14_463880638-6 48 -0.149041 hybrid +144_2-15 Q0 MARCO_18_3119373597-9 49 -0.150147 hybrid +144_2-15 Q0 MARCO_00_916733687-12 50 -0.151505 hybrid +144_2-15 Q0 MARCO_18_3116878569-23 51 -0.151603 hybrid +144_2-15 Q0 MARCO_50_1612876458-9 52 -0.156407 hybrid +144_2-15 Q0 MARCO_53_1467085270-10 53 -0.156850 hybrid +144_2-15 Q0 MARCO_32_117113375-5 54 -0.172153 hybrid +144_2-15 Q0 MARCO_51_607329168-2 55 -0.173217 hybrid +144_2-15 Q0 MARCO_37_1257178148-8 56 -0.174340 hybrid +144_2-15 Q0 MARCO_37_372663766-5 57 -0.180694 hybrid +144_2-15 Q0 MARCO_17_3707709305-51 58 -0.181055 hybrid +144_2-15 Q0 MARCO_50_2384627985-27 59 -0.185724 hybrid +144_2-15 Q0 MARCO_18_3122089436-12 60 -0.185945 hybrid +144_2-15 Q0 MARCO_32_1769799659-10 61 -0.187860 hybrid +144_2-15 Q0 MARCO_12_74208753-7 62 -0.188332 hybrid +144_2-15 Q0 KILT_23441092-5 63 -0.189843 hybrid +144_2-15 Q0 MARCO_22_1489720193-3 64 -0.196039 hybrid +144_2-15 Q0 MARCO_39_33764062-5 65 -0.198843 hybrid +144_2-15 Q0 MARCO_44_37876427-7 66 -0.206154 hybrid +144_2-15 Q0 KILT_27623318-3 67 -0.207635 hybrid +144_2-15 Q0 MARCO_54_644582024-21 68 -0.208857 hybrid +144_2-15 Q0 MARCO_42_1894580482-7 69 -0.209154 hybrid +144_2-15 Q0 MARCO_39_32495652-21 70 -0.209308 hybrid +144_2-15 Q0 MARCO_10_1203493866-12 71 -0.211333 hybrid +144_2-15 Q0 MARCO_11_1451599519-6 72 -0.212231 hybrid +144_2-15 Q0 MARCO_18_3270644462-9 73 -0.215316 hybrid +144_2-15 Q0 MARCO_36_946600531-1 74 -0.215785 hybrid +144_2-15 Q0 MARCO_57_473465520-13 75 -0.215840 hybrid +144_2-15 Q0 MARCO_52_1611292037-3 76 -0.218832 hybrid +144_2-15 Q0 MARCO_24_1264646783-2 77 -0.223134 hybrid +144_2-15 Q0 MARCO_18_3116444373-40 78 -0.223793 hybrid +144_2-15 Q0 MARCO_16_2867492614-25 79 -0.225508 hybrid +144_2-15 Q0 MARCO_13_542577168-4 80 -0.225679 hybrid +144_2-15 Q0 MARCO_32_114192359-5 81 -0.226023 hybrid +144_2-15 Q0 MARCO_19_2045479331-7 82 -0.227883 hybrid +144_2-15 Q0 MARCO_31_882254318-6 83 -0.230364 hybrid +144_2-15 Q0 MARCO_39_19813442-15 84 -0.230458 hybrid +144_2-15 Q0 MARCO_36_999121882-3 85 -0.231296 hybrid +144_2-15 Q0 MARCO_44_1852880206-15 86 -0.231526 hybrid +144_2-15 Q0 MARCO_07_1118258898-3 87 -0.231538 hybrid +144_2-15 Q0 MARCO_44_1852880206-13 88 -0.231538 hybrid +144_2-15 Q0 MARCO_13_703882816-4 89 -0.233045 hybrid +144_2-15 Q0 MARCO_29_1144433392-2 90 -0.234173 hybrid +144_2-15 Q0 MARCO_18_3123761348-28 91 -0.235032 hybrid +144_2-15 Q0 MARCO_54_644582024-8 92 -0.235177 hybrid +144_2-15 Q0 MARCO_52_1611885043-4 93 -0.237394 hybrid +144_2-15 Q0 MARCO_40_1275832723-10 94 -0.238237 hybrid +144_2-15 Q0 MARCO_53_811593553-8 95 -0.240203 hybrid +144_2-15 Q0 MARCO_54_172468268-6 96 -0.240215 hybrid +144_2-15 Q0 MARCO_29_1144338920-23 97 -0.240407 hybrid +144_2-15 Q0 KILT_2647515-22 98 -0.243079 hybrid +144_2-15 Q0 MARCO_10_76043593-6 99 -0.243135 hybrid +144_2-15 Q0 MARCO_40_152077387-5 100 -0.243216 hybrid +144_2-17 Q0 MARCO_18_3112781714-23 1 0.499999 hybrid +144_2-17 Q0 KILT_27437311-4 2 0.229443 hybrid +144_2-17 Q0 MARCO_18_3116444373-25 3 0.189949 hybrid +144_2-17 Q0 MARCO_42_1894560592-2 4 0.189878 hybrid +144_2-17 Q0 MARCO_27_1146612109-6 5 0.172515 hybrid +144_2-17 Q0 MARCO_52_1610238832-2 6 0.154231 hybrid +144_2-17 Q0 MARCO_18_3112781714-22 7 0.139107 hybrid +144_2-17 Q0 MARCO_18_3116444373-15 8 0.136165 hybrid +144_2-17 Q0 KILT_47105558-1 9 0.135937 hybrid +144_2-17 Q0 MARCO_18_3270644462-18 10 0.123856 hybrid +144_2-17 Q0 MARCO_18_3116444373-5 11 0.123099 hybrid +144_2-17 Q0 KILT_47105558-2 12 0.119621 hybrid +144_2-17 Q0 MARCO_18_3116444373-19 13 0.113610 hybrid +144_2-17 Q0 MARCO_18_3116444373-27 14 0.092612 hybrid +144_2-17 Q0 MARCO_18_3116664840-55 15 0.080230 hybrid +144_2-17 Q0 MARCO_18_1824491436-16 16 0.071897 hybrid +144_2-17 Q0 MARCO_18_3112781714-6 17 0.071051 hybrid +144_2-17 Q0 KILT_7201833-2 18 0.065353 hybrid +144_2-17 Q0 MARCO_18_1824491436-15 19 0.062798 hybrid +144_2-17 Q0 MARCO_18_3112781714-25 20 0.061636 hybrid +144_2-17 Q0 MARCO_50_1171002766-17 21 0.059147 hybrid +144_2-17 Q0 KILT_3813298-3 22 0.049530 hybrid +144_2-17 Q0 MARCO_18_3116977530-6 23 0.043532 hybrid +144_2-17 Q0 KILT_3813298-1 24 0.043330 hybrid +144_2-17 Q0 KILT_86655-7 25 0.042029 hybrid +144_2-17 Q0 MARCO_18_3116444373-11 26 0.029649 hybrid +144_2-17 Q0 MARCO_27_1146612109-4 27 0.029350 hybrid +144_2-17 Q0 KILT_869316-4 28 0.025152 hybrid +144_2-17 Q0 MARCO_27_1146612109-3 29 0.014142 hybrid +144_2-17 Q0 MARCO_18_3116444373-2 30 0.011340 hybrid +144_2-17 Q0 MARCO_18_922563224-2 31 0.009896 hybrid +144_2-17 Q0 MARCO_18_3119937986-20 32 0.006573 hybrid +144_2-17 Q0 MARCO_37_710297867-13 33 0.002540 hybrid +144_2-17 Q0 MARCO_37_710297867-15 34 0.001413 hybrid +144_2-17 Q0 MARCO_27_1146612109-1 35 -0.000732 hybrid +144_2-17 Q0 MARCO_18_3114962854-3 36 -0.003190 hybrid +144_2-17 Q0 KILT_723059-5 37 -0.008458 hybrid +144_2-17 Q0 MARCO_18_3116444373-42 38 -0.010215 hybrid +144_2-17 Q0 MARCO_18_3116444373-18 39 -0.010762 hybrid +144_2-17 Q0 MARCO_18_3116444373-26 40 -0.022968 hybrid +144_2-17 Q0 MARCO_52_1610969932-2 41 -0.024315 hybrid +144_2-17 Q0 MARCO_27_1146612109-5 42 -0.024728 hybrid +144_2-17 Q0 MARCO_18_3116444373-24 43 -0.025947 hybrid +144_2-17 Q0 MARCO_18_3112781714-8 44 -0.027038 hybrid +144_2-17 Q0 MARCO_18_3116444373-8 45 -0.030241 hybrid +144_2-17 Q0 KILT_12930143-1 46 -0.031796 hybrid +144_2-17 Q0 MARCO_18_3116444373-34 47 -0.032628 hybrid +144_2-17 Q0 KILT_86655-13 48 -0.036510 hybrid +144_2-17 Q0 MARCO_18_3112781714-16 49 -0.036860 hybrid +144_2-17 Q0 MARCO_31_1022658942-4 50 -0.040280 hybrid +144_2-17 Q0 MARCO_18_3116444373-22 51 -0.046574 hybrid +144_2-17 Q0 MARCO_18_3112781714-9 52 -0.060201 hybrid +144_2-17 Q0 MARCO_50_1406856964-67 53 -0.061836 hybrid +144_2-17 Q0 KILT_3136551-2 54 -0.063376 hybrid +144_2-17 Q0 MARCO_05_809423293-2 55 -0.066677 hybrid +144_2-17 Q0 MARCO_50_2153076262-6 56 -0.069710 hybrid +144_2-17 Q0 MARCO_18_3112781714-7 57 -0.070106 hybrid +144_2-17 Q0 MARCO_18_3116977530-5 58 -0.071231 hybrid +144_2-17 Q0 MARCO_18_3116977530-11 59 -0.073882 hybrid +144_2-17 Q0 KILT_3813298-7 60 -0.074924 hybrid +144_2-17 Q0 MARCO_18_3116664840-54 61 -0.075249 hybrid +144_2-17 Q0 KILT_3813298-4 62 -0.077952 hybrid +144_2-17 Q0 KILT_59118602-8 63 -0.079005 hybrid +144_2-17 Q0 MARCO_18_3116444373-45 64 -0.081546 hybrid +144_2-17 Q0 KILT_59118602-2 65 -0.085091 hybrid +144_2-17 Q0 MARCO_12_586299903-22 66 -0.087352 hybrid +144_2-17 Q0 MARCO_18_3116510005-17 67 -0.090106 hybrid +144_2-17 Q0 MARCO_18_3116664840-7 68 -0.090579 hybrid +144_2-17 Q0 MARCO_50_1527977836-13 69 -0.090727 hybrid +144_2-17 Q0 KILT_4708753-3 70 -0.098499 hybrid +144_2-17 Q0 MARCO_18_3116664840-62 71 -0.099971 hybrid +144_2-17 Q0 MARCO_18_3116444373-35 72 -0.100902 hybrid +144_2-17 Q0 KILT_35972324-1 73 -0.105220 hybrid +144_2-17 Q0 MARCO_18_3116444373-23 74 -0.107470 hybrid +144_2-17 Q0 MARCO_18_3116977530-2 75 -0.108449 hybrid +144_2-17 Q0 MARCO_18_3112781714-24 76 -0.118457 hybrid +144_2-17 Q0 MARCO_18_3112884343-16 77 -0.118835 hybrid +144_2-17 Q0 MARCO_18_3270644462-31 78 -0.119781 hybrid +144_2-17 Q0 MARCO_18_3270644462-22 79 -0.127089 hybrid +144_2-17 Q0 MARCO_18_3109539890-20 80 -0.130056 hybrid +144_2-17 Q0 KILT_4343785-4 81 -0.132910 hybrid +144_2-17 Q0 KILT_7132786-1 82 -0.133143 hybrid +144_2-17 Q0 MARCO_04_416494758-18 83 -0.136028 hybrid +144_2-17 Q0 MARCO_24_803841253-18 84 -0.136592 hybrid +144_2-17 Q0 MARCO_18_3116444373-6 85 -0.139930 hybrid +144_2-17 Q0 KILT_59118602-10 86 -0.141305 hybrid +144_2-17 Q0 MARCO_50_1527977836-7 87 -0.141989 hybrid +144_2-17 Q0 MARCO_18_3116977530-7 88 -0.142937 hybrid +144_2-17 Q0 KILT_11083352-1 89 -0.144361 hybrid +144_2-17 Q0 MARCO_18_3116444373-3 90 -0.144529 hybrid +144_2-17 Q0 KILT_24365702-2 91 -0.146482 hybrid +144_2-17 Q0 KILT_5006565-1 92 -0.148302 hybrid +144_2-17 Q0 MARCO_50_1406856964-47 93 -0.148516 hybrid +144_2-17 Q0 MARCO_24_803649332-2 94 -0.149253 hybrid +144_2-17 Q0 MARCO_18_3116444373-12 95 -0.150239 hybrid +144_2-17 Q0 MARCO_18_3114990886-3 96 -0.150441 hybrid +144_2-17 Q0 MARCO_18_3116444373-7 97 -0.154599 hybrid +144_2-17 Q0 MARCO_18_3116977530-1 98 -0.156615 hybrid +144_2-17 Q0 MARCO_18_3116444373-28 99 -0.157364 hybrid +144_2-17 Q0 MARCO_18_3116444373-30 100 -0.157364 hybrid +144_2-3 Q0 MARCO_18_3116977530-11 1 0.500000 hybrid +144_2-3 Q0 MARCO_18_3270644462-18 2 0.436378 hybrid +144_2-3 Q0 MARCO_18_3116977530-6 3 0.433714 hybrid +144_2-3 Q0 MARCO_18_3116444373-35 4 0.377510 hybrid +144_2-3 Q0 MARCO_18_3116444373-42 5 0.368461 hybrid +144_2-3 Q0 MARCO_18_3116977530-2 6 0.348749 hybrid +144_2-3 Q0 MARCO_18_3116444373-8 7 0.341221 hybrid +144_2-3 Q0 MARCO_18_3116977530-1 8 0.326455 hybrid +144_2-3 Q0 KILT_59118602-2 9 0.263633 hybrid +144_2-3 Q0 MARCO_12_586299903-22 10 0.261050 hybrid +144_2-3 Q0 MARCO_18_3116977530-10 11 0.252621 hybrid +144_2-3 Q0 MARCO_18_3116444373-11 12 0.229062 hybrid +144_2-3 Q0 MARCO_18_3116977530-5 13 0.226157 hybrid +144_2-3 Q0 MARCO_18_3116977530-14 14 0.215892 hybrid +144_2-3 Q0 MARCO_18_3116444373-39 15 0.206624 hybrid +144_2-3 Q0 MARCO_18_3116444373-7 16 0.188614 hybrid +144_2-3 Q0 MARCO_18_3116444373-22 17 0.159451 hybrid +144_2-3 Q0 MARCO_37_710297867-13 18 0.152074 hybrid +144_2-3 Q0 MARCO_18_3116444373-41 19 0.145369 hybrid +144_2-3 Q0 MARCO_18_3116444373-12 20 0.140937 hybrid +144_2-3 Q0 MARCO_18_3116444373-19 21 0.128298 hybrid +144_2-3 Q0 MARCO_29_865121557-2 22 0.120767 hybrid +144_2-3 Q0 MARCO_18_3116664840-62 23 0.113445 hybrid +144_2-3 Q0 MARCO_44_608424211-4 24 0.108773 hybrid +144_2-3 Q0 MARCO_18_3116664840-54 25 0.104605 hybrid +144_2-3 Q0 MARCO_18_3116977530-8 26 0.101599 hybrid +144_2-3 Q0 MARCO_18_3116444373-10 27 0.100484 hybrid +144_2-3 Q0 KILT_59118602-8 28 0.100379 hybrid +144_2-3 Q0 MARCO_18_3270644462-22 29 0.093894 hybrid +144_2-3 Q0 MARCO_18_3116444373-27 30 0.090590 hybrid +144_2-3 Q0 KILT_59118602-12 31 0.083549 hybrid +144_2-3 Q0 MARCO_18_3116444373-14 32 0.060027 hybrid +144_2-3 Q0 MARCO_18_3119937986-21 33 0.059210 hybrid +144_2-3 Q0 MARCO_18_3116444373-25 34 0.058640 hybrid +144_2-3 Q0 MARCO_37_710297867-15 35 0.052754 hybrid +144_2-3 Q0 MARCO_18_3116444373-3 36 0.048711 hybrid +144_2-3 Q0 MARCO_18_3116444373-2 37 0.044477 hybrid +144_2-3 Q0 MARCO_27_1146612109-6 38 0.043306 hybrid +144_2-3 Q0 MARCO_31_882254318-6 39 0.042029 hybrid +144_2-3 Q0 MARCO_47_1516406453-8 40 0.037818 hybrid +144_2-3 Q0 MARCO_18_3116664840-30 41 0.036746 hybrid +144_2-3 Q0 MARCO_18_3116444373-6 42 0.035761 hybrid +144_2-3 Q0 MARCO_52_1606022427-4 43 0.030085 hybrid +144_2-3 Q0 MARCO_18_3116664840-60 44 0.028300 hybrid +144_2-3 Q0 MARCO_18_3116444373-43 45 0.022618 hybrid +144_2-3 Q0 KILT_42907493-5 46 0.019884 hybrid +144_2-3 Q0 MARCO_18_3116444373-45 47 0.017540 hybrid +144_2-3 Q0 MARCO_18_3116444373-5 48 0.007901 hybrid +144_2-3 Q0 MARCO_18_3116444373-34 49 0.002728 hybrid +144_2-3 Q0 MARCO_47_1516406453-9 50 0.001825 hybrid +144_2-3 Q0 MARCO_27_1146612109-1 51 0.001639 hybrid +144_2-3 Q0 MARCO_18_3116664840-55 52 0.001051 hybrid +144_2-3 Q0 MARCO_18_3116878569-3 53 -0.002662 hybrid +144_2-3 Q0 MARCO_14_466458461-3 54 -0.008191 hybrid +144_2-3 Q0 KILT_42907493-4 55 -0.008234 hybrid +144_2-3 Q0 KILT_42907493-3 56 -0.023151 hybrid +144_2-3 Q0 MARCO_15_599583395-56 57 -0.023776 hybrid +144_2-3 Q0 MARCO_01_1544663324-2 58 -0.026244 hybrid +144_2-3 Q0 MARCO_18_3116664840-29 59 -0.026314 hybrid +144_2-3 Q0 MARCO_18_2718586974-13 60 -0.027107 hybrid +144_2-3 Q0 MARCO_27_1146612109-2 61 -0.031017 hybrid +144_2-3 Q0 MARCO_18_3116317508-43 62 -0.035260 hybrid +144_2-3 Q0 MARCO_18_3116664840-7 63 -0.040900 hybrid +144_2-3 Q0 MARCO_18_3116444373-15 64 -0.041241 hybrid +144_2-3 Q0 MARCO_18_3116444373-9 65 -0.047500 hybrid +144_2-3 Q0 MARCO_18_3270644462-5 66 -0.048482 hybrid +144_2-3 Q0 MARCO_18_3116510005-17 67 -0.048497 hybrid +144_2-3 Q0 MARCO_18_3116878569-22 68 -0.048508 hybrid +144_2-3 Q0 MARCO_47_1515370785-2 69 -0.050617 hybrid +144_2-3 Q0 MARCO_18_3116317508-4 70 -0.052549 hybrid +144_2-3 Q0 MARCO_18_3116444373-37 71 -0.053421 hybrid +144_2-3 Q0 MARCO_52_1610238832-2 72 -0.057707 hybrid +144_2-3 Q0 MARCO_50_929652381-2 73 -0.063173 hybrid +144_2-3 Q0 MARCO_16_2834617917-24 74 -0.063821 hybrid +144_2-3 Q0 MARCO_18_3116444373-13 75 -0.067199 hybrid +144_2-3 Q0 MARCO_15_599583395-13 76 -0.067564 hybrid +144_2-3 Q0 MARCO_19_604906265-19 77 -0.071569 hybrid +144_2-3 Q0 MARCO_37_711221842-5 78 -0.079505 hybrid +144_2-3 Q0 MARCO_16_2834617917-49 79 -0.081654 hybrid +144_2-3 Q0 MARCO_16_2834617917-34 80 -0.082796 hybrid +144_2-3 Q0 MARCO_52_1610253652-4 81 -0.084360 hybrid +144_2-3 Q0 MARCO_52_1606022427-7 82 -0.088519 hybrid +144_2-3 Q0 MARCO_44_40209535-2 83 -0.092365 hybrid +144_2-3 Q0 MARCO_18_3116444373-44 84 -0.092721 hybrid +144_2-3 Q0 MARCO_18_3116756863-28 85 -0.093535 hybrid +144_2-3 Q0 MARCO_47_1514283738-2 86 -0.094297 hybrid +144_2-3 Q0 MARCO_18_3116444373-26 87 -0.097975 hybrid +144_2-3 Q0 MARCO_33_167139586-7 88 -0.099334 hybrid +144_2-3 Q0 MARCO_18_3116756863-33 89 -0.099487 hybrid +144_2-3 Q0 MARCO_18_3116664840-20 90 -0.099629 hybrid +144_2-3 Q0 MARCO_27_1146612109-4 91 -0.100663 hybrid +144_2-3 Q0 MARCO_05_808302660-6 92 -0.103815 hybrid +144_2-3 Q0 MARCO_18_3116664840-64 93 -0.109161 hybrid +144_2-3 Q0 MARCO_18_3116878569-5 94 -0.109975 hybrid +144_2-3 Q0 KILT_42907493-2 95 -0.110789 hybrid +144_2-3 Q0 MARCO_18_3116444373-48 96 -0.114803 hybrid +144_2-3 Q0 MARCO_18_3119937986-20 97 -0.116666 hybrid +144_2-3 Q0 MARCO_16_2834617917-50 98 -0.117679 hybrid +144_2-3 Q0 MARCO_18_3116797241-1 99 -0.121607 hybrid +144_2-3 Q0 KILT_42907493-6 100 -0.122366 hybrid +144_2-5 Q0 MARCO_27_551517218-2 1 0.500000 hybrid +144_2-5 Q0 MARCO_51_2027300957-15 2 0.499200 hybrid +144_2-5 Q0 KILT_13048565-2 3 0.424435 hybrid +144_2-5 Q0 MARCO_01_1701257605-8 4 0.336676 hybrid +144_2-5 Q0 MARCO_27_551491409-8 5 0.328001 hybrid +144_2-5 Q0 MARCO_27_551517218-4 6 0.288594 hybrid +144_2-5 Q0 MARCO_51_2029072262-6 7 0.273377 hybrid +144_2-5 Q0 MARCO_27_551504842-3 8 0.261981 hybrid +144_2-5 Q0 MARCO_07_1056397395-1 9 0.261782 hybrid +144_2-5 Q0 MARCO_51_2018044144-24 10 0.260021 hybrid +144_2-5 Q0 MARCO_51_2027300957-16 11 0.241632 hybrid +144_2-5 Q0 KILT_1038887-2 12 0.237626 hybrid +144_2-5 Q0 MARCO_27_551586395-7 13 0.220847 hybrid +144_2-5 Q0 MARCO_27_551477296-10 14 0.218541 hybrid +144_2-5 Q0 MARCO_27_551504842-1 15 0.201853 hybrid +144_2-5 Q0 MARCO_51_1877683529-57 16 0.179540 hybrid +144_2-5 Q0 MARCO_27_1338595031-5 17 0.169247 hybrid +144_2-5 Q0 MARCO_06_1164666234-42 18 0.157258 hybrid +144_2-5 Q0 MARCO_47_1509695086-2 19 0.146739 hybrid +144_2-5 Q0 MARCO_18_3116444373-12 20 0.126802 hybrid +144_2-5 Q0 MARCO_39_1565125922-11 21 0.119979 hybrid +144_2-5 Q0 MARCO_14_464992549-9 22 0.107375 hybrid +144_2-5 Q0 MARCO_36_21857713-20 23 0.081493 hybrid +144_2-5 Q0 MARCO_27_551530415-4 24 0.077971 hybrid +144_2-5 Q0 MARCO_51_1877683529-47 25 0.074389 hybrid +144_2-5 Q0 MARCO_27_551638398-12 26 0.069534 hybrid +144_2-5 Q0 MARCO_52_804886908-2 27 0.066618 hybrid +144_2-5 Q0 MARCO_44_1856510715-2 28 0.063503 hybrid +144_2-5 Q0 MARCO_50_1929182353-31 29 0.062464 hybrid +144_2-5 Q0 MARCO_27_551586395-11 30 0.052621 hybrid +144_2-5 Q0 MARCO_49_580361697-1 31 0.050748 hybrid +144_2-5 Q0 MARCO_51_175748075-3 32 0.047572 hybrid +144_2-5 Q0 MARCO_50_1447966974-6 33 0.042549 hybrid +144_2-5 Q0 MARCO_45_1025271660-18 34 0.040156 hybrid +144_2-5 Q0 MARCO_27_551504842-5 35 0.030404 hybrid +144_2-5 Q0 MARCO_27_551586395-3 36 0.025566 hybrid +144_2-5 Q0 MARCO_40_1276685943-4 37 0.022577 hybrid +144_2-5 Q0 MARCO_50_1935898634-8 38 0.014979 hybrid +144_2-5 Q0 MARCO_50_1929182353-11 39 0.014127 hybrid +144_2-5 Q0 MARCO_11_692340223-3 40 0.008476 hybrid +144_2-5 Q0 MARCO_01_1701257605-9 41 0.008229 hybrid +144_2-5 Q0 MARCO_07_1056349172-31 42 0.007801 hybrid +144_2-5 Q0 MARCO_39_1565125922-7 43 0.007143 hybrid +144_2-5 Q0 MARCO_40_817135082-6 44 0.005361 hybrid +144_2-5 Q0 MARCO_36_23511169-8 45 0.000420 hybrid +144_2-5 Q0 MARCO_27_551504842-9 46 -0.000493 hybrid +144_2-5 Q0 MARCO_27_551586395-6 47 -0.007221 hybrid +144_2-5 Q0 MARCO_51_1877683529-5 48 -0.009558 hybrid +144_2-5 Q0 MARCO_04_482142610-18 49 -0.013075 hybrid +144_2-5 Q0 MARCO_42_1191190492-2 50 -0.014949 hybrid +144_2-5 Q0 MARCO_27_551572325-9 51 -0.015758 hybrid +144_2-5 Q0 KILT_41228673-23 52 -0.016675 hybrid +144_2-5 Q0 MARCO_51_1877683529-1 53 -0.016952 hybrid +144_2-5 Q0 MARCO_33_168517404-1 54 -0.017441 hybrid +144_2-5 Q0 MARCO_51_1877683529-52 55 -0.017722 hybrid +144_2-5 Q0 MARCO_51_1250074580-5 56 -0.022732 hybrid +144_2-5 Q0 MARCO_17_670564467-11 57 -0.024195 hybrid +144_2-5 Q0 MARCO_49_1853221413-3 58 -0.030724 hybrid +144_2-5 Q0 KILT_1038887-17 59 -0.030724 hybrid +144_2-5 Q0 MARCO_51_2022548062-11 60 -0.033908 hybrid +144_2-5 Q0 MARCO_50_1935898634-6 61 -0.035505 hybrid +144_2-5 Q0 MARCO_17_1684009152-7 62 -0.038503 hybrid +144_2-5 Q0 MARCO_27_551572325-7 63 -0.039243 hybrid +144_2-5 Q0 MARCO_30_1199079139-10 64 -0.039966 hybrid +144_2-5 Q0 MARCO_27_551530415-5 65 -0.040017 hybrid +144_2-5 Q0 MARCO_04_479769927-2 66 -0.042678 hybrid +144_2-5 Q0 MARCO_51_1877683529-10 67 -0.044033 hybrid +144_2-5 Q0 MARCO_14_464397309-19 68 -0.046668 hybrid +144_2-5 Q0 MARCO_27_551491409-9 69 -0.047221 hybrid +144_2-5 Q0 KILT_22131-23 70 -0.049856 hybrid +144_2-5 Q0 MARCO_18_4366662615-7 71 -0.054365 hybrid +144_2-5 Q0 MARCO_20_625957680-8 72 -0.054620 hybrid +144_2-5 Q0 MARCO_39_1565125922-10 73 -0.056809 hybrid +144_2-5 Q0 MARCO_36_22378426-24 74 -0.056909 hybrid +144_2-5 Q0 MARCO_06_7596877-11 75 -0.061686 hybrid +144_2-5 Q0 MARCO_14_465466264-6 76 -0.062862 hybrid +144_2-5 Q0 MARCO_20_626117258-1 77 -0.063096 hybrid +144_2-5 Q0 MARCO_27_551517218-9 78 -0.064956 hybrid +144_2-5 Q0 MARCO_16_2367820982-47 79 -0.066618 hybrid +144_2-5 Q0 MARCO_30_1655204265-7 80 -0.069166 hybrid +144_2-5 Q0 MARCO_24_977065656-23 81 -0.072139 hybrid +144_2-5 Q0 MARCO_18_3116977530-6 82 -0.072610 hybrid +144_2-5 Q0 MARCO_36_26062731-2 83 -0.074107 hybrid +144_2-5 Q0 MARCO_43_771700093-18 84 -0.075323 hybrid +144_2-5 Q0 MARCO_07_1056397395-6 85 -0.076163 hybrid +144_2-5 Q0 MARCO_06_1154970755-59 86 -0.077430 hybrid +144_2-5 Q0 MARCO_51_1877683529-54 87 -0.080225 hybrid +144_2-5 Q0 MARCO_27_551586395-1 88 -0.082467 hybrid +144_2-5 Q0 MARCO_51_693717393-56 89 -0.084665 hybrid +144_2-5 Q0 MARCO_14_464992549-10 90 -0.084665 hybrid +144_2-5 Q0 MARCO_24_1273906929-2 91 -0.087979 hybrid +144_2-5 Q0 MARCO_54_1942019282-2 92 -0.089588 hybrid +144_2-5 Q0 MARCO_07_1056397395-14 93 -0.090865 hybrid +144_2-5 Q0 MARCO_50_1974952638-30 94 -0.093218 hybrid +144_2-5 Q0 MARCO_19_564053863-40 95 -0.095010 hybrid +144_2-5 Q0 MARCO_27_41622320-7 96 -0.099159 hybrid +144_2-5 Q0 MARCO_20_661442775-2 97 -0.099358 hybrid +144_2-5 Q0 MARCO_33_168517404-3 98 -0.100431 hybrid +144_2-5 Q0 MARCO_20_652615205-9 99 -0.101664 hybrid +144_2-5 Q0 MARCO_27_551542643-11 100 -0.101790 hybrid +144_2-7 Q0 MARCO_31_882254318-6 1 0.500001 hybrid +144_2-7 Q0 MARCO_47_1515569461-2 2 0.277591 hybrid +144_2-7 Q0 MARCO_14_466458461-2 3 0.271199 hybrid +144_2-7 Q0 MARCO_27_1146612109-1 4 0.243170 hybrid +144_2-7 Q0 MARCO_36_951494101-2 5 0.220204 hybrid +144_2-7 Q0 MARCO_18_3116444373-35 6 0.190280 hybrid +144_2-7 Q0 MARCO_18_3116444373-12 7 0.182995 hybrid +144_2-7 Q0 MARCO_14_466458461-3 8 0.176243 hybrid +144_2-7 Q0 MARCO_18_3116977530-6 9 0.175239 hybrid +144_2-7 Q0 MARCO_46_1493599846-2 10 0.172868 hybrid +144_2-7 Q0 MARCO_18_3116444373-8 11 0.169506 hybrid +144_2-7 Q0 MARCO_18_3116878569-3 12 0.168460 hybrid +144_2-7 Q0 MARCO_18_3116444373-41 13 0.158563 hybrid +144_2-7 Q0 MARCO_18_3116444373-42 14 0.133452 hybrid +144_2-7 Q0 MARCO_27_1146612109-2 15 0.105161 hybrid +144_2-7 Q0 MARCO_31_1022658942-4 16 0.092973 hybrid +144_2-7 Q0 MARCO_18_3123761348-4 17 0.092640 hybrid +144_2-7 Q0 MARCO_18_3116444373-9 18 0.087609 hybrid +144_2-7 Q0 MARCO_18_3116444373-40 19 0.087153 hybrid +144_2-7 Q0 KILT_59118602-8 20 0.085673 hybrid +144_2-7 Q0 MARCO_18_924403543-6 21 0.084395 hybrid +144_2-7 Q0 MARCO_18_3116977530-14 22 0.082733 hybrid +144_2-7 Q0 MARCO_42_1370357152-122 23 0.071407 hybrid +144_2-7 Q0 KILT_3682299-3 24 0.071139 hybrid +144_2-7 Q0 MARCO_18_3116878569-21 25 0.070629 hybrid +144_2-7 Q0 MARCO_20_870069371-3 26 0.070528 hybrid +144_2-7 Q0 MARCO_18_3116878569-9 27 0.067681 hybrid +144_2-7 Q0 MARCO_18_3116977530-10 28 0.066055 hybrid +144_2-7 Q0 MARCO_18_1815195164-30 29 0.065864 hybrid +144_2-7 Q0 MARCO_24_1139122304-6 30 0.064372 hybrid +144_2-7 Q0 MARCO_40_1275785480-2 31 0.063002 hybrid +144_2-7 Q0 MARCO_35_308844340-6 32 0.057140 hybrid +144_2-7 Q0 KILT_2647515-21 33 0.050189 hybrid +144_2-7 Q0 MARCO_18_3116977530-8 34 0.048976 hybrid +144_2-7 Q0 MARCO_18_3270644462-62 35 0.046686 hybrid +144_2-7 Q0 MARCO_18_3116878569-42 36 0.042165 hybrid +144_2-7 Q0 MARCO_18_3116664840-55 37 0.037825 hybrid +144_2-7 Q0 MARCO_18_3270644462-37 38 0.036869 hybrid +144_2-7 Q0 MARCO_18_3119937986-21 39 0.030713 hybrid +144_2-7 Q0 MARCO_39_1569621978-13 40 0.026990 hybrid +144_2-7 Q0 MARCO_15_599583395-56 41 0.025909 hybrid +144_2-7 Q0 MARCO_18_3116444373-39 42 0.024348 hybrid +144_2-7 Q0 MARCO_18_3116664840-60 43 0.015800 hybrid +144_2-7 Q0 MARCO_13_449259655-1 44 0.012977 hybrid +144_2-7 Q0 MARCO_18_3119373597-27 45 0.010207 hybrid +144_2-7 Q0 KILT_42907493-5 46 0.003246 hybrid +144_2-7 Q0 MARCO_18_3270644462-38 47 -0.004345 hybrid +144_2-7 Q0 MARCO_47_1512775494-8 48 -0.006564 hybrid +144_2-7 Q0 MARCO_18_3116878569-23 49 -0.015217 hybrid +144_2-7 Q0 MARCO_52_1611218176-12 50 -0.022186 hybrid +144_2-7 Q0 MARCO_47_1515569461-1 51 -0.027133 hybrid +144_2-7 Q0 MARCO_29_1334919388-29 52 -0.033623 hybrid +144_2-7 Q0 MARCO_18_3118367795-27 53 -0.035988 hybrid +144_2-7 Q0 MARCO_18_3116444373-43 54 -0.040953 hybrid +144_2-7 Q0 MARCO_18_3270644462-9 55 -0.043032 hybrid +144_2-7 Q0 MARCO_18_3116444373-10 56 -0.044420 hybrid +144_2-7 Q0 MARCO_13_449259655-3 57 -0.056131 hybrid +144_2-7 Q0 MARCO_13_449254264-3 58 -0.056131 hybrid +144_2-7 Q0 MARCO_13_449264993-3 59 -0.056131 hybrid +144_2-7 Q0 MARCO_13_449306936-19 60 -0.056131 hybrid +144_2-7 Q0 MARCO_32_114770462-24 61 -0.057697 hybrid +144_2-7 Q0 KILT_2647515-7 62 -0.059300 hybrid +144_2-7 Q0 MARCO_18_3116035578-11 63 -0.066329 hybrid +144_2-7 Q0 MARCO_15_599583395-40 64 -0.067943 hybrid +144_2-7 Q0 MARCO_13_449270319-6 65 -0.070445 hybrid +144_2-7 Q0 MARCO_18_3119373597-38 66 -0.071606 hybrid +144_2-7 Q0 MARCO_18_3116444373-44 67 -0.071830 hybrid +144_2-7 Q0 MARCO_44_608424211-4 68 -0.073551 hybrid +144_2-7 Q0 MARCO_18_3116317508-10 69 -0.073718 hybrid +144_2-7 Q0 MARCO_18_3116444373-19 70 -0.074585 hybrid +144_2-7 Q0 MARCO_18_3116235467-15 71 -0.076145 hybrid +144_2-7 Q0 MARCO_50_1423219237-20 72 -0.081402 hybrid +144_2-7 Q0 MARCO_50_1437146908-9 73 -0.083880 hybrid +144_2-7 Q0 KILT_2647515-22 74 -0.085313 hybrid +144_2-7 Q0 MARCO_18_3116977530-2 75 -0.088124 hybrid +144_2-7 Q0 MARCO_16_2867492614-11 76 -0.088607 hybrid +144_2-7 Q0 MARCO_05_809884773-15 77 -0.089962 hybrid +144_2-7 Q0 MARCO_18_3119937986-2 78 -0.090987 hybrid +144_2-7 Q0 MARCO_51_2018823501-12 79 -0.092166 hybrid +144_2-7 Q0 MARCO_35_308844340-4 80 -0.093319 hybrid +144_2-7 Q0 MARCO_18_3121862264-31 81 -0.095237 hybrid +144_2-7 Q0 MARCO_18_3116444373-27 82 -0.099394 hybrid +144_2-7 Q0 MARCO_18_3116664840-43 83 -0.102951 hybrid +144_2-7 Q0 MARCO_16_2834617917-34 84 -0.105244 hybrid +144_2-7 Q0 MARCO_18_3116878569-8 85 -0.106418 hybrid +144_2-7 Q0 MARCO_18_3116444373-5 86 -0.106671 hybrid +144_2-7 Q0 MARCO_18_3116878569-6 87 -0.108949 hybrid +144_2-7 Q0 MARCO_18_3116878569-2 88 -0.111409 hybrid +144_2-7 Q0 MARCO_47_1515569461-3 89 -0.111606 hybrid +144_2-7 Q0 MARCO_04_417228189-4 90 -0.113831 hybrid +144_2-7 Q0 MARCO_01_1544663324-2 91 -0.116779 hybrid +144_2-7 Q0 MARCO_36_1001092492-2 92 -0.117458 hybrid +144_2-7 Q0 MARCO_18_3270644462-15 93 -0.117694 hybrid +144_2-7 Q0 MARCO_31_1022658942-5 94 -0.118677 hybrid +144_2-7 Q0 MARCO_18_3119937986-19 95 -0.119424 hybrid +144_2-7 Q0 MARCO_29_865121557-2 96 -0.120747 hybrid +144_2-7 Q0 KILT_42907493-2 97 -0.122411 hybrid +144_2-7 Q0 MARCO_37_711221842-2 98 -0.124574 hybrid +144_2-7 Q0 MARCO_47_1512648386-6 99 -0.124988 hybrid +144_2-7 Q0 MARCO_18_3116878569-7 100 -0.125560 hybrid +144_2-9 Q0 MARCO_55_133784928-2 1 0.500000 hybrid +144_2-9 Q0 KILT_1038887-2 2 0.450394 hybrid +144_2-9 Q0 MARCO_39_1565905913-14 3 0.439493 hybrid +144_2-9 Q0 MARCO_41_2084998181-5 4 0.412427 hybrid +144_2-9 Q0 MARCO_51_2025171882-11 5 0.384488 hybrid +144_2-9 Q0 MARCO_14_464759366-19 6 0.330460 hybrid +144_2-9 Q0 MARCO_39_1565701236-10 7 0.327872 hybrid +144_2-9 Q0 MARCO_42_1191198866-1 8 0.325700 hybrid +144_2-9 Q0 MARCO_27_1332853232-8 9 0.296011 hybrid +144_2-9 Q0 MARCO_39_1565905913-13 10 0.288133 hybrid +144_2-9 Q0 MARCO_14_465466264-19 11 0.274577 hybrid +144_2-9 Q0 MARCO_36_951637961-7 12 0.255045 hybrid +144_2-9 Q0 KILT_41228673-41 13 0.242528 hybrid +144_2-9 Q0 MARCO_14_465466264-18 14 0.233186 hybrid +144_2-9 Q0 MARCO_23_646576475-14 15 0.226738 hybrid +144_2-9 Q0 MARCO_39_1565905913-15 16 0.207149 hybrid +144_2-9 Q0 MARCO_20_870069371-2 17 0.201059 hybrid +144_2-9 Q0 MARCO_50_1510199927-30 18 0.199562 hybrid +144_2-9 Q0 MARCO_19_564053863-26 19 0.190984 hybrid +144_2-9 Q0 MARCO_36_951494101-2 20 0.189898 hybrid +144_2-9 Q0 MARCO_51_2025171882-12 21 0.189046 hybrid +144_2-9 Q0 MARCO_19_564053863-38 22 0.186458 hybrid +144_2-9 Q0 MARCO_41_2085507859-27 23 0.181179 hybrid +144_2-9 Q0 MARCO_54_172568623-9 24 0.166391 hybrid +144_2-9 Q0 MARCO_07_263923330-4 25 0.162822 hybrid +144_2-9 Q0 MARCO_42_1191194144-3 26 0.157548 hybrid +144_2-9 Q0 MARCO_14_467442369-12 27 0.147727 hybrid +144_2-9 Q0 MARCO_11_116535980-93 28 0.141186 hybrid +144_2-9 Q0 MARCO_28_332908071-3 29 0.134129 hybrid +144_2-9 Q0 MARCO_40_1271109547-2 30 0.124974 hybrid +144_2-9 Q0 MARCO_14_467442369-47 31 0.123306 hybrid +144_2-9 Q0 MARCO_11_692240180-3 32 0.108134 hybrid +144_2-9 Q0 MARCO_40_1268041629-8 33 0.107879 hybrid +144_2-9 Q0 MARCO_36_951494101-4 34 0.101862 hybrid +144_2-9 Q0 MARCO_14_467442369-5 35 0.096479 hybrid +144_2-9 Q0 MARCO_36_951494101-5 36 0.096251 hybrid +144_2-9 Q0 MARCO_11_692246100-5 37 0.091922 hybrid +144_2-9 Q0 MARCO_18_924403543-6 38 0.082123 hybrid +144_2-9 Q0 MARCO_14_465466264-12 39 0.081484 hybrid +144_2-9 Q0 MARCO_41_2085507859-9 40 0.076802 hybrid +144_2-9 Q0 MARCO_19_564053863-83 41 0.072869 hybrid +144_2-9 Q0 MARCO_40_1268041629-6 42 0.070208 hybrid +144_2-9 Q0 MARCO_39_35494754-9 43 0.069372 hybrid +144_2-9 Q0 MARCO_23_646576475-13 44 0.067023 hybrid +144_2-9 Q0 KILT_5006565-6 45 0.063459 hybrid +144_2-9 Q0 KILT_60323001-6 46 0.060492 hybrid +144_2-9 Q0 MARCO_14_465466264-8 47 0.058320 hybrid +144_2-9 Q0 MARCO_36_951494101-6 48 0.054906 hybrid +144_2-9 Q0 KILT_40725467-2 49 0.054677 hybrid +144_2-9 Q0 KILT_40725467-5 50 0.053093 hybrid +144_2-9 Q0 MARCO_39_35494754-5 51 0.046031 hybrid +144_2-9 Q0 MARCO_20_658746463-1 52 0.045127 hybrid +144_2-9 Q0 MARCO_14_467442369-6 53 0.045106 hybrid +144_2-9 Q0 MARCO_51_2022482964-9 54 0.042644 hybrid +144_2-9 Q0 MARCO_41_2082014339-2 55 0.042633 hybrid +144_2-9 Q0 MARCO_14_465397073-17 56 0.035774 hybrid +144_2-9 Q0 MARCO_14_467577582-10 57 0.032802 hybrid +144_2-9 Q0 MARCO_51_2022482964-11 58 0.029674 hybrid +144_2-9 Q0 MARCO_14_465466264-1 59 0.025445 hybrid +144_2-9 Q0 MARCO_19_606473338-3 60 0.025279 hybrid +144_2-9 Q0 KILT_41228673-38 61 0.023761 hybrid +144_2-9 Q0 MARCO_41_2082014339-5 62 0.013593 hybrid +144_2-9 Q0 MARCO_11_692232042-2 63 0.010969 hybrid +144_2-9 Q0 MARCO_14_465466264-28 64 0.007124 hybrid +144_2-9 Q0 MARCO_51_2013595197-4 65 0.006105 hybrid +144_2-9 Q0 MARCO_14_465466264-6 66 0.004302 hybrid +144_2-9 Q0 MARCO_50_2495383872-7 67 0.002941 hybrid +144_2-9 Q0 MARCO_41_2085507859-19 68 0.001211 hybrid +144_2-9 Q0 KILT_11729-33 69 -0.003731 hybrid +144_2-9 Q0 MARCO_21_153774515-3 70 -0.005513 hybrid +144_2-9 Q0 MARCO_51_2022482964-8 71 -0.008454 hybrid +144_2-9 Q0 KILT_41228673-40 72 -0.010163 hybrid +144_2-9 Q0 MARCO_06_1232309151-186 73 -0.010335 hybrid +144_2-9 Q0 MARCO_33_1042244952-9 74 -0.010366 hybrid +144_2-9 Q0 MARCO_35_312963343-7 75 -0.013733 hybrid +144_2-9 Q0 MARCO_47_1515569461-2 76 -0.017297 hybrid +144_2-9 Q0 MARCO_43_771656978-2 77 -0.027851 hybrid +144_2-9 Q0 MARCO_40_1268041629-5 78 -0.030287 hybrid +144_2-9 Q0 MARCO_39_1565125922-10 79 -0.030350 hybrid +144_2-9 Q0 MARCO_43_771750459-6 80 -0.030817 hybrid +144_2-9 Q0 MARCO_41_2081616344-5 81 -0.036045 hybrid +144_2-9 Q0 MARCO_40_1271109547-5 82 -0.040924 hybrid +144_2-9 Q0 KILT_8166749-44 83 -0.041194 hybrid +144_2-9 Q0 MARCO_40_1276162129-2 84 -0.041464 hybrid +144_2-9 Q0 MARCO_20_658746463-4 85 -0.043127 hybrid +144_2-9 Q0 MARCO_51_2011530188-19 86 -0.043142 hybrid +144_2-9 Q0 MARCO_33_722936606-55 87 -0.044072 hybrid +144_2-9 Q0 MARCO_20_870069371-3 88 -0.044613 hybrid +144_2-9 Q0 MARCO_35_1473690667-7 89 -0.046878 hybrid +144_2-9 Q0 MARCO_45_1321453358-5 90 -0.047211 hybrid +144_2-9 Q0 MARCO_43_771302710-3 91 -0.047507 hybrid +144_2-9 Q0 KILT_13048565-1 92 -0.048816 hybrid +144_2-9 Q0 KILT_23821416-8 93 -0.050661 hybrid +144_2-9 Q0 MARCO_40_1268041629-4 94 -0.051357 hybrid +144_2-9 Q0 MARCO_20_625957680-7 95 -0.051773 hybrid +144_2-9 Q0 MARCO_14_464397309-21 96 -0.052438 hybrid +144_2-9 Q0 MARCO_42_1191198866-2 97 -0.053212 hybrid +144_2-9 Q0 MARCO_39_1565905913-11 98 -0.053498 hybrid +144_2-9 Q0 MARCO_51_2029072262-6 99 -0.055696 hybrid +144_2-9 Q0 MARCO_20_625931975-6 100 -0.064659 hybrid +144_3-1 Q0 MARCO_39_27772509-11 1 0.499998 hybrid +144_3-1 Q0 MARCO_01_1056439620-288 2 0.420030 hybrid +144_3-1 Q0 KILT_1424999-8 3 0.419488 hybrid +144_3-1 Q0 MARCO_30_455675595-3 4 0.406783 hybrid +144_3-1 Q0 MARCO_54_172263646-19 5 0.383083 hybrid +144_3-1 Q0 MARCO_22_1492491069-1 6 0.337823 hybrid +144_3-1 Q0 MARCO_50_1412083651-15 7 0.241537 hybrid +144_3-1 Q0 MARCO_50_1931411621-10 8 0.227075 hybrid +144_3-1 Q0 MARCO_39_27721594-12 9 0.208932 hybrid +144_3-1 Q0 MARCO_49_515254021-9 10 0.207870 hybrid +144_3-1 Q0 MARCO_50_1970611268-21 11 0.204168 hybrid +144_3-1 Q0 MARCO_50_1412083651-7 12 0.200662 hybrid +144_3-1 Q0 MARCO_50_929616868-28 13 0.177166 hybrid +144_3-1 Q0 KILT_5728124-3 14 0.173895 hybrid +144_3-1 Q0 MARCO_50_929616868-4 15 0.168786 hybrid +144_3-1 Q0 KILT_1424999-5 16 0.160081 hybrid +144_3-1 Q0 KILT_1424999-7 17 0.123743 hybrid +144_3-1 Q0 KILT_1424999-6 18 0.123189 hybrid +144_3-1 Q0 MARCO_50_1937354188-16 19 0.115214 hybrid +144_3-1 Q0 MARCO_01_1055971344-10 20 0.110437 hybrid +144_3-1 Q0 MARCO_50_2154158921-21 21 0.107984 hybrid +144_3-1 Q0 MARCO_50_1931411621-3 22 0.103476 hybrid +144_3-1 Q0 MARCO_50_929616868-7 23 0.090110 hybrid +144_3-1 Q0 MARCO_50_1931411621-7 24 0.055479 hybrid +144_3-1 Q0 MARCO_50_1970611268-20 25 0.052126 hybrid +144_3-1 Q0 MARCO_50_1928168365-2 26 0.043861 hybrid +144_3-1 Q0 MARCO_50_1928168365-7 27 0.040568 hybrid +144_3-1 Q0 MARCO_42_1893358564-6 28 0.032798 hybrid +144_3-1 Q0 MARCO_03_249412985-13 29 0.026950 hybrid +144_3-1 Q0 MARCO_50_1935898634-26 30 0.024029 hybrid +144_3-1 Q0 MARCO_50_2165446805-12 31 0.022050 hybrid +144_3-1 Q0 MARCO_16_2981819985-10 32 0.012778 hybrid +144_3-1 Q0 MARCO_24_1312795837-30 33 0.007604 hybrid +144_3-1 Q0 MARCO_51_2018625900-14 34 0.007088 hybrid +144_3-1 Q0 MARCO_17_670396810-13 35 0.004585 hybrid +144_3-1 Q0 MARCO_50_1928168365-8 36 0.003723 hybrid +144_3-1 Q0 MARCO_50_1928168365-6 37 0.002359 hybrid +144_3-1 Q0 MARCO_50_1529335468-3 38 -0.000989 hybrid +144_3-1 Q0 MARCO_50_1928168365-9 39 -0.002218 hybrid +144_3-1 Q0 MARCO_05_483098342-4 40 -0.003433 hybrid +144_3-1 Q0 MARCO_50_1935898634-46 41 -0.003693 hybrid +144_3-1 Q0 MARCO_50_2165446805-1 42 -0.003732 hybrid +144_3-1 Q0 MARCO_47_1285344033-4 43 -0.008513 hybrid +144_3-1 Q0 MARCO_50_1935898634-21 44 -0.012607 hybrid +144_3-1 Q0 MARCO_50_1937354188-10 45 -0.014219 hybrid +144_3-1 Q0 MARCO_24_1312795837-57 46 -0.017721 hybrid +144_3-1 Q0 MARCO_50_1935898634-27 47 -0.020446 hybrid +144_3-1 Q0 MARCO_50_1529335468-9 48 -0.020898 hybrid +144_3-1 Q0 MARCO_50_1929182353-22 49 -0.022732 hybrid +144_3-1 Q0 MARCO_50_1935898634-25 50 -0.025411 hybrid +144_3-1 Q0 MARCO_50_1934855698-37 51 -0.026020 hybrid +144_3-1 Q0 MARCO_50_1937354188-7 52 -0.026498 hybrid +144_3-1 Q0 KILT_1424999-3 53 -0.027390 hybrid +144_3-1 Q0 MARCO_22_1421670473-2 54 -0.028712 hybrid +144_3-1 Q0 MARCO_50_1937354188-30 55 -0.039724 hybrid +144_3-1 Q0 KILT_24559146-10 56 -0.039929 hybrid +144_3-1 Q0 MARCO_24_1553048345-9 57 -0.046603 hybrid +144_3-1 Q0 MARCO_50_1450987939-16 58 -0.047277 hybrid +144_3-1 Q0 MARCO_04_482422635-12 59 -0.054195 hybrid +144_3-1 Q0 MARCO_50_1937392218-20 60 -0.054353 hybrid +144_3-1 Q0 MARCO_50_1935898634-9 61 -0.055658 hybrid +144_3-1 Q0 MARCO_56_1470514308-2 62 -0.055696 hybrid +144_3-1 Q0 MARCO_50_1412083651-14 63 -0.055995 hybrid +144_3-1 Q0 MARCO_27_551586395-11 64 -0.058084 hybrid +144_3-1 Q0 MARCO_50_1970611268-19 65 -0.059398 hybrid +144_3-1 Q0 MARCO_29_1144408994-10 66 -0.061722 hybrid +144_3-1 Q0 MARCO_24_1717097559-2 67 -0.062093 hybrid +144_3-1 Q0 MARCO_01_1055971344-5 68 -0.062341 hybrid +144_3-1 Q0 MARCO_10_553867410-5 69 -0.065655 hybrid +144_3-1 Q0 MARCO_20_365393733-27 70 -0.070790 hybrid +144_3-1 Q0 MARCO_45_1322416775-5 71 -0.077831 hybrid +144_3-1 Q0 MARCO_36_954567488-2 72 -0.081073 hybrid +144_3-1 Q0 MARCO_50_1935898634-8 73 -0.082254 hybrid +144_3-1 Q0 MARCO_50_1181580700-12 74 -0.085286 hybrid +144_3-1 Q0 MARCO_17_1844172150-3 75 -0.087393 hybrid +144_3-1 Q0 MARCO_07_636368507-2 76 -0.088370 hybrid +144_3-1 Q0 MARCO_50_2554862409-10 77 -0.089312 hybrid +144_3-1 Q0 MARCO_50_1931411621-1 78 -0.090421 hybrid +144_3-1 Q0 MARCO_42_1893358564-7 79 -0.090562 hybrid +144_3-1 Q0 MARCO_50_1931411621-6 80 -0.091389 hybrid +144_3-1 Q0 MARCO_42_1893377737-11 81 -0.092707 hybrid +144_3-1 Q0 MARCO_27_551542643-8 82 -0.093577 hybrid +144_3-1 Q0 MARCO_49_200213655-5 83 -0.095083 hybrid +144_3-1 Q0 MARCO_12_1454607150-5 84 -0.095096 hybrid +144_3-1 Q0 MARCO_54_1936568944-9 85 -0.096298 hybrid +144_3-1 Q0 MARCO_50_1970611268-3 86 -0.098742 hybrid +144_3-1 Q0 MARCO_39_31981138-18 87 -0.100768 hybrid +144_3-1 Q0 MARCO_24_1312795837-23 88 -0.101033 hybrid +144_3-1 Q0 MARCO_50_1529335468-7 89 -0.101988 hybrid +144_3-1 Q0 MARCO_50_1447966974-9 90 -0.103323 hybrid +144_3-1 Q0 MARCO_50_1937392218-26 91 -0.110676 hybrid +144_3-1 Q0 MARCO_17_3719989891-21 92 -0.110889 hybrid +144_3-1 Q0 MARCO_50_1970611268-25 93 -0.110961 hybrid +144_3-1 Q0 MARCO_54_172315678-10 94 -0.112369 hybrid +144_3-1 Q0 MARCO_12_79002084-3 95 -0.113209 hybrid +144_3-1 Q0 MARCO_36_1600282538-35 96 -0.116719 hybrid +144_3-1 Q0 MARCO_36_1366715598-2 97 -0.122037 hybrid +144_3-1 Q0 MARCO_34_1234825285-1 98 -0.122302 hybrid +144_3-1 Q0 MARCO_11_116535980-35 99 -0.123731 hybrid +144_3-1 Q0 MARCO_54_1936568944-10 100 -0.124993 hybrid +145_1-1 Q0 KILT_34167677-2 1 0.499998 hybrid +145_1-1 Q0 MARCO_44_35321293-3 2 0.460779 hybrid +145_1-1 Q0 KILT_43174445-2 3 0.449974 hybrid +145_1-1 Q0 KILT_25005518-2 4 0.448826 hybrid +145_1-1 Q0 KILT_47700-1 5 0.405890 hybrid +145_1-1 Q0 MARCO_44_35321293-2 6 0.405137 hybrid +145_1-1 Q0 MARCO_08_743063601-5 7 0.364092 hybrid +145_1-1 Q0 MARCO_58_1506018316-2 8 0.351054 hybrid +145_1-1 Q0 MARCO_44_2037703296-5 9 0.319864 hybrid +145_1-1 Q0 MARCO_15_133803271-3 10 0.318298 hybrid +145_1-1 Q0 KILT_2801560-17 11 0.285692 hybrid +145_1-1 Q0 MARCO_45_976543044-2 12 0.280620 hybrid +145_1-1 Q0 MARCO_08_743306876-1 13 0.263973 hybrid +145_1-1 Q0 KILT_43174313-2 14 0.243605 hybrid +145_1-1 Q0 KILT_47700-15 15 0.237880 hybrid +145_1-1 Q0 KILT_43174405-2 16 0.232112 hybrid +145_1-1 Q0 KILT_43174342-2 17 0.217698 hybrid +145_1-1 Q0 MARCO_08_743306876-4 18 0.217181 hybrid +145_1-1 Q0 KILT_1278066-2 19 0.215422 hybrid +145_1-1 Q0 MARCO_51_1886540985-13 20 0.214573 hybrid +145_1-1 Q0 MARCO_51_1886540985-17 21 0.210307 hybrid +145_1-1 Q0 MARCO_01_1869948757-15 22 0.208784 hybrid +145_1-1 Q0 KILT_33900980-2 23 0.205024 hybrid +145_1-1 Q0 KILT_55489348-1 24 0.205014 hybrid +145_1-1 Q0 MARCO_08_743306876-3 25 0.191274 hybrid +145_1-1 Q0 KILT_1728672-31 26 0.190774 hybrid +145_1-1 Q0 MARCO_51_1719403071-54 27 0.175697 hybrid +145_1-1 Q0 MARCO_50_1510141711-6 28 0.173032 hybrid +145_1-1 Q0 MARCO_15_132431578-3 29 0.171487 hybrid +145_1-1 Q0 MARCO_15_133648640-12 30 0.169376 hybrid +145_1-1 Q0 MARCO_51_1886540985-18 31 0.157120 hybrid +145_1-1 Q0 MARCO_15_132547451-3 32 0.154437 hybrid +145_1-1 Q0 KILT_47319898-2 33 0.153146 hybrid +145_1-1 Q0 MARCO_10_831948175-6 34 0.152850 hybrid +145_1-1 Q0 MARCO_15_131999270-7 35 0.150446 hybrid +145_1-1 Q0 KILT_38740898-3 36 0.150035 hybrid +145_1-1 Q0 MARCO_24_1015353510-2 37 0.147364 hybrid +145_1-1 Q0 MARCO_08_743306876-5 38 0.146101 hybrid +145_1-1 Q0 MARCO_38_1493960108-4 39 0.142748 hybrid +145_1-1 Q0 MARCO_50_2386869195-2 40 0.142441 hybrid +145_1-1 Q0 MARCO_51_2005757213-25 41 0.133856 hybrid +145_1-1 Q0 MARCO_44_35321293-8 42 0.124182 hybrid +145_1-1 Q0 MARCO_15_132547451-6 43 0.123265 hybrid +145_1-1 Q0 MARCO_58_1506018316-7 44 0.123080 hybrid +145_1-1 Q0 MARCO_57_1273336329-1 45 0.119702 hybrid +145_1-1 Q0 MARCO_28_528320265-7 46 0.117854 hybrid +145_1-1 Q0 MARCO_03_1217470245-2 47 0.115974 hybrid +145_1-1 Q0 MARCO_15_133505529-7 48 0.115289 hybrid +145_1-1 Q0 MARCO_11_1245999089-4 49 0.113021 hybrid +145_1-1 Q0 MARCO_20_1691602430-3 50 0.112664 hybrid +145_1-1 Q0 MARCO_08_743063601-2 51 0.106482 hybrid +145_1-1 Q0 KILT_55489348-2 52 0.105690 hybrid +145_1-1 Q0 MARCO_28_281425850-2 53 0.105387 hybrid +145_1-1 Q0 MARCO_16_1110546491-3 54 0.104413 hybrid +145_1-1 Q0 KILT_44533183-2 55 0.100411 hybrid +145_1-1 Q0 MARCO_41_291709766-2 56 0.099987 hybrid +145_1-1 Q0 MARCO_11_1449875005-2 57 0.097608 hybrid +145_1-1 Q0 MARCO_58_1506018316-3 58 0.095285 hybrid +145_1-1 Q0 MARCO_24_1015353510-3 59 0.090588 hybrid +145_1-1 Q0 MARCO_15_132390467-9 60 0.088176 hybrid +145_1-1 Q0 MARCO_15_133803271-2 61 0.083768 hybrid +145_1-1 Q0 MARCO_50_2386869195-10 62 0.079213 hybrid +145_1-1 Q0 MARCO_24_722482029-13 63 0.079180 hybrid +145_1-1 Q0 MARCO_16_1686411094-4 64 0.076516 hybrid +145_1-1 Q0 MARCO_15_131999270-1 65 0.075999 hybrid +145_1-1 Q0 MARCO_58_1506018316-5 66 0.075628 hybrid +145_1-1 Q0 KILT_2801560-15 67 0.074921 hybrid +145_1-1 Q0 MARCO_50_2386869195-11 68 0.064163 hybrid +145_1-1 Q0 MARCO_01_1679006693-3 69 0.063025 hybrid +145_1-1 Q0 MARCO_20_1109717538-14 70 0.056897 hybrid +145_1-1 Q0 MARCO_30_1004298367-6 71 0.053805 hybrid +145_1-1 Q0 MARCO_50_2386869195-8 72 0.050495 hybrid +145_1-1 Q0 MARCO_58_1508046553-7 73 0.045647 hybrid +145_1-1 Q0 MARCO_49_577156447-15 74 0.045569 hybrid +145_1-1 Q0 MARCO_18_3779704306-12 75 0.044613 hybrid +145_1-1 Q0 MARCO_41_291709766-3 76 0.042269 hybrid +145_1-1 Q0 MARCO_58_1506018316-4 77 0.039847 hybrid +145_1-1 Q0 MARCO_15_132547451-2 78 0.039194 hybrid +145_1-1 Q0 MARCO_48_1216050186-10 79 0.038574 hybrid +145_1-1 Q0 MARCO_41_291713694-1 80 0.038492 hybrid +145_1-1 Q0 MARCO_48_1216050186-2 81 0.037493 hybrid +145_1-1 Q0 KILT_54792823-3 82 0.036690 hybrid +145_1-1 Q0 MARCO_20_1109137848-9 83 0.036098 hybrid +145_1-1 Q0 KILT_22732127-1 84 0.034454 hybrid +145_1-1 Q0 MARCO_15_133450036-2 85 0.034101 hybrid +145_1-1 Q0 KILT_47700-19 86 0.034079 hybrid +145_1-1 Q0 MARCO_03_447802610-1 87 0.033805 hybrid +145_1-1 Q0 MARCO_20_10299743-3 88 0.030662 hybrid +145_1-1 Q0 MARCO_00_1103658282-2 89 0.030462 hybrid +145_1-1 Q0 MARCO_02_873546189-4 90 0.029774 hybrid +145_1-1 Q0 MARCO_51_1632190518-9 91 0.028461 hybrid +145_1-1 Q0 KILT_58527573-2 92 0.028401 hybrid +145_1-1 Q0 MARCO_15_133803271-1 93 0.028283 hybrid +145_1-1 Q0 KILT_24901960-2 94 0.026792 hybrid +145_1-1 Q0 MARCO_15_132527855-6 95 0.026335 hybrid +145_1-1 Q0 MARCO_48_1188978655-2 96 0.025861 hybrid +145_1-1 Q0 MARCO_03_1218299721-3 97 0.025379 hybrid +145_1-1 Q0 MARCO_50_2386869195-1 98 0.024388 hybrid +145_1-1 Q0 MARCO_26_89032825-2 99 0.023011 hybrid +145_1-1 Q0 MARCO_08_743120872-4 100 0.022287 hybrid +145_1-3 Q0 MARCO_44_35321293-8 1 0.499999 hybrid +145_1-3 Q0 MARCO_44_35321293-2 2 0.451541 hybrid +145_1-3 Q0 MARCO_15_133803271-2 3 0.296126 hybrid +145_1-3 Q0 MARCO_44_35321293-1 4 0.275292 hybrid +145_1-3 Q0 KILT_47700-15 5 0.247910 hybrid +145_1-3 Q0 MARCO_27_1336752185-6 6 0.236703 hybrid +145_1-3 Q0 MARCO_15_132327400-8 7 0.208930 hybrid +145_1-3 Q0 MARCO_01_1679006693-3 8 0.193622 hybrid +145_1-3 Q0 MARCO_16_1110546491-3 9 0.179993 hybrid +145_1-3 Q0 KILT_1728672-31 10 0.147108 hybrid +145_1-3 Q0 MARCO_15_131999270-1 11 0.127517 hybrid +145_1-3 Q0 MARCO_28_528320265-4 12 0.127127 hybrid +145_1-3 Q0 MARCO_01_1679006693-13 13 0.115868 hybrid +145_1-3 Q0 MARCO_50_2386869195-10 14 0.108897 hybrid +145_1-3 Q0 KILT_2801560-17 15 0.091351 hybrid +145_1-3 Q0 MARCO_15_133803271-3 16 0.086099 hybrid +145_1-3 Q0 KILT_34167677-2 17 0.081864 hybrid +145_1-3 Q0 MARCO_50_1409906055-35 18 0.078491 hybrid +145_1-3 Q0 MARCO_28_528320265-2 19 0.056190 hybrid +145_1-3 Q0 MARCO_59_603880583-2 20 0.045418 hybrid +145_1-3 Q0 MARCO_28_528320265-7 21 0.039103 hybrid +145_1-3 Q0 MARCO_08_743306876-4 22 0.036722 hybrid +145_1-3 Q0 MARCO_00_1103658282-4 23 0.035993 hybrid +145_1-3 Q0 MARCO_15_132547451-6 24 0.023719 hybrid +145_1-3 Q0 MARCO_50_2149016428-17 25 0.014709 hybrid +145_1-3 Q0 MARCO_50_2386869195-11 26 0.011745 hybrid +145_1-3 Q0 MARCO_15_132547451-2 27 0.008480 hybrid +145_1-3 Q0 MARCO_15_132431578-3 28 0.008023 hybrid +145_1-3 Q0 MARCO_58_1506018316-6 29 0.007397 hybrid +145_1-3 Q0 MARCO_08_743063601-5 30 0.006803 hybrid +145_1-3 Q0 MARCO_44_2037703296-5 31 -0.002283 hybrid +145_1-3 Q0 MARCO_08_743306876-1 32 -0.004585 hybrid +145_1-3 Q0 MARCO_20_1109717538-15 33 -0.025950 hybrid +145_1-3 Q0 MARCO_23_1830774907-7 34 -0.027921 hybrid +145_1-3 Q0 MARCO_28_528320265-8 35 -0.030515 hybrid +145_1-3 Q0 MARCO_58_1510071633-3 36 -0.031417 hybrid +145_1-3 Q0 MARCO_15_132547451-4 37 -0.036309 hybrid +145_1-3 Q0 MARCO_28_528320265-3 38 -0.037823 hybrid +145_1-3 Q0 KILT_54792823-3 39 -0.040863 hybrid +145_1-3 Q0 MARCO_15_132390467-3 40 -0.041415 hybrid +145_1-3 Q0 MARCO_15_132390467-1 41 -0.049254 hybrid +145_1-3 Q0 KILT_13746446-17 42 -0.049629 hybrid +145_1-3 Q0 MARCO_15_133648640-12 43 -0.051806 hybrid +145_1-3 Q0 MARCO_08_743306876-5 44 -0.053245 hybrid +145_1-3 Q0 MARCO_58_1508046553-7 45 -0.056959 hybrid +145_1-3 Q0 MARCO_50_1409906055-36 46 -0.059831 hybrid +145_1-3 Q0 MARCO_30_1045383696-2 47 -0.062762 hybrid +145_1-3 Q0 MARCO_15_133803271-6 48 -0.063439 hybrid +145_1-3 Q0 MARCO_50_2148823955-21 49 -0.064022 hybrid +145_1-3 Q0 KILT_1278066-2 50 -0.064383 hybrid +145_1-3 Q0 KILT_54792823-2 51 -0.065804 hybrid +145_1-3 Q0 MARCO_00_1103730034-3 52 -0.066825 hybrid +145_1-3 Q0 MARCO_58_1506018316-3 53 -0.068392 hybrid +145_1-3 Q0 MARCO_41_334325214-13 54 -0.070915 hybrid +145_1-3 Q0 MARCO_00_1103658282-2 55 -0.073583 hybrid +145_1-3 Q0 MARCO_26_74668745-1 56 -0.075704 hybrid +145_1-3 Q0 MARCO_15_132547451-5 57 -0.077695 hybrid +145_1-3 Q0 MARCO_50_1519091796-3 58 -0.081146 hybrid +145_1-3 Q0 MARCO_50_2148823955-3 59 -0.085682 hybrid +145_1-3 Q0 MARCO_27_1567992001-3 60 -0.086016 hybrid +145_1-3 Q0 MARCO_15_133062110-6 61 -0.087030 hybrid +145_1-3 Q0 MARCO_15_132547451-1 62 -0.089712 hybrid +145_1-3 Q0 MARCO_08_743063601-2 63 -0.092568 hybrid +145_1-3 Q0 MARCO_15_131999270-2 64 -0.093701 hybrid +145_1-3 Q0 MARCO_15_132382047-6 65 -0.094376 hybrid +145_1-3 Q0 MARCO_51_1719403071-66 66 -0.096699 hybrid +145_1-3 Q0 MARCO_15_134385068-2 67 -0.096887 hybrid +145_1-3 Q0 MARCO_42_200525481-4 68 -0.100042 hybrid +145_1-3 Q0 MARCO_58_1506018316-2 69 -0.101304 hybrid +145_1-3 Q0 MARCO_15_133505529-7 70 -0.102269 hybrid +145_1-3 Q0 MARCO_27_1567992001-4 71 -0.102412 hybrid +145_1-3 Q0 MARCO_20_1691602430-1 72 -0.102690 hybrid +145_1-3 Q0 MARCO_15_131999270-4 73 -0.105527 hybrid +145_1-3 Q0 MARCO_44_1107116722-2 74 -0.107352 hybrid +145_1-3 Q0 MARCO_48_1188978655-1 75 -0.110130 hybrid +145_1-3 Q0 KILT_39096777-3 76 -0.114047 hybrid +145_1-3 Q0 MARCO_15_132527855-6 77 -0.114106 hybrid +145_1-3 Q0 MARCO_15_132249263-3 78 -0.114260 hybrid +145_1-3 Q0 MARCO_28_424288304-2 79 -0.115052 hybrid +145_1-3 Q0 MARCO_28_528320265-6 80 -0.116787 hybrid +145_1-3 Q0 MARCO_15_133803271-5 81 -0.117758 hybrid +145_1-3 Q0 MARCO_14_335992199-2 82 -0.118101 hybrid +145_1-3 Q0 MARCO_26_1835631313-6 83 -0.118514 hybrid +145_1-3 Q0 MARCO_15_131999270-7 84 -0.122483 hybrid +145_1-3 Q0 MARCO_55_127051615-2 85 -0.122933 hybrid +145_1-3 Q0 MARCO_50_2149016428-18 86 -0.124068 hybrid +145_1-3 Q0 MARCO_15_132547451-8 87 -0.124878 hybrid +145_1-3 Q0 MARCO_15_132327400-3 88 -0.125752 hybrid +145_1-3 Q0 MARCO_51_1886540985-18 89 -0.127144 hybrid +145_1-3 Q0 MARCO_28_281425850-2 90 -0.129373 hybrid +145_1-3 Q0 MARCO_33_176164078-7 91 -0.129813 hybrid +145_1-3 Q0 MARCO_09_387951572-19 92 -0.131293 hybrid +145_1-3 Q0 MARCO_59_603880583-3 93 -0.131932 hybrid +145_1-3 Q0 MARCO_48_1188978655-2 94 -0.133212 hybrid +145_1-3 Q0 MARCO_25_4729599-2 95 -0.135423 hybrid +145_1-3 Q0 MARCO_20_1691602430-3 96 -0.136643 hybrid +145_1-3 Q0 MARCO_15_133811572-4 97 -0.141224 hybrid +145_1-3 Q0 KILT_44533183-2 98 -0.141441 hybrid +145_1-3 Q0 MARCO_41_291713694-1 99 -0.150359 hybrid +145_1-3 Q0 MARCO_15_132390467-8 100 -0.152267 hybrid +145_1-5 Q0 MARCO_28_445624259-20 1 0.500003 hybrid +145_1-5 Q0 MARCO_17_1779424748-17 2 0.425231 hybrid +145_1-5 Q0 KILT_1707053-13 3 0.397252 hybrid +145_1-5 Q0 KILT_25079-10 4 0.375426 hybrid +145_1-5 Q0 MARCO_00_944211795-4 5 0.374808 hybrid +145_1-5 Q0 MARCO_50_2550999003-8 6 0.330726 hybrid +145_1-5 Q0 MARCO_39_1279508284-4 7 0.319898 hybrid +145_1-5 Q0 MARCO_51_1738288252-31 8 0.283720 hybrid +145_1-5 Q0 MARCO_31_1608684018-15 9 0.280192 hybrid +145_1-5 Q0 MARCO_41_1817040778-1 10 0.263976 hybrid +145_1-5 Q0 MARCO_40_616376008-11 11 0.249078 hybrid +145_1-5 Q0 MARCO_14_751038313-6 12 0.246120 hybrid +145_1-5 Q0 MARCO_50_483707024-6 13 0.242779 hybrid +145_1-5 Q0 MARCO_40_151627255-8 14 0.241932 hybrid +145_1-5 Q0 MARCO_41_1369064505-34 15 0.229534 hybrid +145_1-5 Q0 MARCO_43_777702374-4 16 0.219312 hybrid +145_1-5 Q0 MARCO_09_1200348772-1 17 0.218400 hybrid +145_1-5 Q0 MARCO_35_399865134-1 18 0.218165 hybrid +145_1-5 Q0 MARCO_15_134025424-7 19 0.201914 hybrid +145_1-5 Q0 MARCO_20_1692168491-3 20 0.180176 hybrid +145_1-5 Q0 MARCO_02_824114915-24 21 0.173606 hybrid +145_1-5 Q0 MARCO_00_944211795-19 22 0.167471 hybrid +145_1-5 Q0 MARCO_37_174896978-1 23 0.156838 hybrid +145_1-5 Q0 MARCO_51_454697942-25 24 0.153938 hybrid +145_1-5 Q0 KILT_12390747-2 25 0.152438 hybrid +145_1-5 Q0 MARCO_20_658709187-8 26 0.138240 hybrid +145_1-5 Q0 MARCO_21_599968506-14 27 0.131370 hybrid +145_1-5 Q0 MARCO_17_690625526-18 28 0.125430 hybrid +145_1-5 Q0 MARCO_50_483550699-8 29 0.124960 hybrid +145_1-5 Q0 MARCO_20_1690924657-3 30 0.113396 hybrid +145_1-5 Q0 KILT_1728672-4 31 0.106786 hybrid +145_1-5 Q0 MARCO_59_603861620-5 32 0.104227 hybrid +145_1-5 Q0 MARCO_17_695737952-4 33 0.103598 hybrid +145_1-5 Q0 MARCO_51_176207146-1 34 0.099292 hybrid +145_1-5 Q0 MARCO_33_352197220-5 35 0.095511 hybrid +145_1-5 Q0 MARCO_50_2148823955-13 36 0.094470 hybrid +145_1-5 Q0 MARCO_37_174896978-9 37 0.093146 hybrid +145_1-5 Q0 MARCO_28_446165919-18 38 0.089494 hybrid +145_1-5 Q0 MARCO_41_341953509-6 39 0.076019 hybrid +145_1-5 Q0 MARCO_26_411490717-10 40 0.068579 hybrid +145_1-5 Q0 MARCO_41_1369064505-51 41 0.068285 hybrid +145_1-5 Q0 MARCO_57_1273189188-1 42 0.065685 hybrid +145_1-5 Q0 MARCO_01_1697679628-13 43 0.055516 hybrid +145_1-5 Q0 MARCO_04_185518198-4 44 0.050264 hybrid +145_1-5 Q0 MARCO_00_944211795-18 45 0.047652 hybrid +145_1-5 Q0 MARCO_06_699499609-7 46 0.042206 hybrid +145_1-5 Q0 MARCO_51_1738182487-47 47 0.035672 hybrid +145_1-5 Q0 MARCO_29_867005795-6 48 0.033337 hybrid +145_1-5 Q0 MARCO_51_1889273517-29 49 0.026691 hybrid +145_1-5 Q0 MARCO_41_1369064505-33 50 0.022985 hybrid +145_1-5 Q0 MARCO_35_135386651-5 51 0.021274 hybrid +145_1-5 Q0 MARCO_40_1275513552-1 52 0.021062 hybrid +145_1-5 Q0 KILT_16534351-9 53 0.017715 hybrid +145_1-5 Q0 MARCO_17_690625526-2 54 0.008405 hybrid +145_1-5 Q0 MARCO_05_1347096786-6 55 -0.002635 hybrid +145_1-5 Q0 MARCO_44_35262660-1 56 -0.002641 hybrid +145_1-5 Q0 KILT_1728672-14 57 -0.003276 hybrid +145_1-5 Q0 MARCO_07_1581585195-14 58 -0.007764 hybrid +145_1-5 Q0 MARCO_10_845606362-3 59 -0.010763 hybrid +145_1-5 Q0 MARCO_00_944211795-3 60 -0.012539 hybrid +145_1-5 Q0 MARCO_17_696210527-2 61 -0.013845 hybrid +145_1-5 Q0 MARCO_41_1369064505-44 62 -0.015445 hybrid +145_1-5 Q0 MARCO_10_545553088-1 63 -0.016339 hybrid +145_1-5 Q0 MARCO_09_348391407-4 64 -0.017556 hybrid +145_1-5 Q0 KILT_25079-5 65 -0.019456 hybrid +145_1-5 Q0 MARCO_26_821065335-1 66 -0.019915 hybrid +145_1-5 Q0 MARCO_51_1634281644-5 67 -0.021427 hybrid +145_1-5 Q0 MARCO_51_1632226513-11 68 -0.026273 hybrid +145_1-5 Q0 MARCO_17_696527547-12 69 -0.027961 hybrid +145_1-5 Q0 MARCO_50_1519629905-21 70 -0.029196 hybrid +145_1-5 Q0 MARCO_35_135386651-3 71 -0.033742 hybrid +145_1-5 Q0 MARCO_48_592686805-2 72 -0.036060 hybrid +145_1-5 Q0 MARCO_50_483707024-7 73 -0.038707 hybrid +145_1-5 Q0 MARCO_06_1401165973-9 74 -0.042953 hybrid +145_1-5 Q0 MARCO_17_695968391-1 75 -0.044382 hybrid +145_1-5 Q0 MARCO_20_1691516621-5 76 -0.044965 hybrid +145_1-5 Q0 MARCO_41_1227009949-7 77 -0.046458 hybrid +145_1-5 Q0 MARCO_51_1880549942-9 78 -0.047017 hybrid +145_1-5 Q0 MARCO_04_784229713-68 79 -0.047417 hybrid +145_1-5 Q0 MARCO_20_1691926452-1 80 -0.047976 hybrid +145_1-5 Q0 MARCO_00_944211795-10 81 -0.048070 hybrid +145_1-5 Q0 MARCO_29_1416083142-5 82 -0.048288 hybrid +145_1-5 Q0 MARCO_50_2550999003-1 83 -0.051893 hybrid +145_1-5 Q0 MARCO_39_610156582-13 84 -0.058592 hybrid +145_1-5 Q0 MARCO_51_1880441021-15 85 -0.065338 hybrid +145_1-5 Q0 MARCO_22_1490472175-1 86 -0.067926 hybrid +145_1-5 Q0 MARCO_28_422134932-3 87 -0.068755 hybrid +145_1-5 Q0 MARCO_33_1314004594-5 88 -0.070532 hybrid +145_1-5 Q0 MARCO_27_715984010-6 89 -0.070679 hybrid +145_1-5 Q0 MARCO_15_615271022-2 90 -0.072684 hybrid +145_1-5 Q0 MARCO_53_726624360-3 91 -0.074584 hybrid +145_1-5 Q0 MARCO_26_411490717-59 92 -0.075307 hybrid +145_1-5 Q0 KILT_49417-23 93 -0.078554 hybrid +145_1-5 Q0 MARCO_20_1691516621-6 94 -0.079430 hybrid +145_1-5 Q0 MARCO_54_1853512694-3 95 -0.080842 hybrid +145_1-5 Q0 MARCO_00_944211795-24 96 -0.081689 hybrid +145_1-5 Q0 KILT_1728672-3 97 -0.083042 hybrid +145_1-5 Q0 MARCO_50_1983539666-18 98 -0.083177 hybrid +145_1-5 Q0 MARCO_58_1509843755-1 99 -0.087465 hybrid +145_1-5 Q0 MARCO_50_483728881-4 100 -0.088647 hybrid +145_1-7 Q0 MARCO_51_1890227767-22 1 0.500000 hybrid +145_1-7 Q0 MARCO_15_133176883-4 2 0.207791 hybrid +145_1-7 Q0 MARCO_05_1518564160-4 3 0.161064 hybrid +145_1-7 Q0 MARCO_22_1646884039-11 4 0.158792 hybrid +145_1-7 Q0 MARCO_22_1646884039-2 5 0.157853 hybrid +145_1-7 Q0 MARCO_50_2386869195-2 6 0.133988 hybrid +145_1-7 Q0 MARCO_40_736948483-21 7 0.116877 hybrid +145_1-7 Q0 MARCO_51_1886540985-17 8 0.106174 hybrid +145_1-7 Q0 MARCO_08_743306876-5 9 0.089965 hybrid +145_1-7 Q0 MARCO_50_1519091796-3 10 0.084047 hybrid +145_1-7 Q0 MARCO_22_1646884039-12 11 0.077466 hybrid +145_1-7 Q0 MARCO_20_9146021-13 12 0.068001 hybrid +145_1-7 Q0 MARCO_40_737232283-14 13 0.065290 hybrid +145_1-7 Q0 MARCO_55_130601227-5 14 0.060627 hybrid +145_1-7 Q0 MARCO_55_130601227-3 15 0.056468 hybrid +145_1-7 Q0 MARCO_45_976543044-6 16 0.040204 hybrid +145_1-7 Q0 MARCO_51_2007527708-13 17 0.037986 hybrid +145_1-7 Q0 MARCO_20_9146021-7 18 0.033300 hybrid +145_1-7 Q0 MARCO_48_1216050186-10 19 0.033120 hybrid +145_1-7 Q0 MARCO_15_133069767-3 20 0.029667 hybrid +145_1-7 Q0 MARCO_58_1510378795-8 21 0.017784 hybrid +145_1-7 Q0 MARCO_39_683618524-34 22 0.012183 hybrid +145_1-7 Q0 MARCO_55_124386945-5 23 0.009941 hybrid +145_1-7 Q0 MARCO_44_35321293-2 24 0.005602 hybrid +145_1-7 Q0 MARCO_51_1890227767-21 25 -0.007564 hybrid +145_1-7 Q0 MARCO_22_1646884039-1 26 -0.010999 hybrid +145_1-7 Q0 MARCO_55_130601227-2 27 -0.016050 hybrid +145_1-7 Q0 MARCO_05_1518564160-6 28 -0.017230 hybrid +145_1-7 Q0 MARCO_55_130999384-3 29 -0.023175 hybrid +145_1-7 Q0 MARCO_40_733826157-5 30 -0.024943 hybrid +145_1-7 Q0 MARCO_16_2831646695-8 31 -0.029460 hybrid +145_1-7 Q0 KILT_59013230-17 32 -0.031674 hybrid +145_1-7 Q0 MARCO_44_35321293-3 33 -0.033946 hybrid +145_1-7 Q0 MARCO_20_5374941-309 34 -0.037844 hybrid +145_1-7 Q0 MARCO_24_1015353510-3 35 -0.039517 hybrid +145_1-7 Q0 MARCO_20_9146021-8 36 -0.042149 hybrid +145_1-7 Q0 MARCO_51_2012726134-9 37 -0.042721 hybrid +145_1-7 Q0 MARCO_16_2831646695-2 38 -0.043027 hybrid +145_1-7 Q0 MARCO_38_1493960108-7 39 -0.045632 hybrid +145_1-7 Q0 MARCO_38_1493960108-5 40 -0.053199 hybrid +145_1-7 Q0 MARCO_51_1890227767-27 41 -0.060954 hybrid +145_1-7 Q0 MARCO_51_2007226613-16 42 -0.066685 hybrid +145_1-7 Q0 MARCO_55_118775135-2 43 -0.068644 hybrid +145_1-7 Q0 MARCO_03_1217470245-2 44 -0.068769 hybrid +145_1-7 Q0 KILT_54792823-2 45 -0.069875 hybrid +145_1-7 Q0 MARCO_50_1402128600-3 46 -0.072398 hybrid +145_1-7 Q0 MARCO_51_1886540985-1 47 -0.075126 hybrid +145_1-7 Q0 MARCO_51_2007527708-18 48 -0.079901 hybrid +145_1-7 Q0 MARCO_20_9146021-12 49 -0.082187 hybrid +145_1-7 Q0 MARCO_01_1679006693-14 50 -0.084163 hybrid +145_1-7 Q0 MARCO_20_9146021-10 51 -0.085190 hybrid +145_1-7 Q0 MARCO_40_733826157-7 52 -0.091264 hybrid +145_1-7 Q0 MARCO_51_1886540985-12 53 -0.092046 hybrid +145_1-7 Q0 MARCO_15_132390467-4 54 -0.095253 hybrid +145_1-7 Q0 MARCO_55_130969204-1 55 -0.106004 hybrid +145_1-7 Q0 MARCO_51_1634830590-6 56 -0.114874 hybrid +145_1-7 Q0 MARCO_15_133069767-5 57 -0.116915 hybrid +145_1-7 Q0 MARCO_02_873546189-5 58 -0.119955 hybrid +145_1-7 Q0 MARCO_55_120519020-3 59 -0.120224 hybrid +145_1-7 Q0 MARCO_50_1519091796-5 60 -0.121105 hybrid +145_1-7 Q0 MARCO_20_9786524-11 61 -0.121476 hybrid +145_1-7 Q0 MARCO_05_1518564160-2 62 -0.123193 hybrid +145_1-7 Q0 MARCO_26_74668745-5 63 -0.129699 hybrid +145_1-7 Q0 MARCO_15_133095469-4 64 -0.130087 hybrid +145_1-7 Q0 MARCO_51_1900336866-13 65 -0.132073 hybrid +145_1-7 Q0 MARCO_12_1449757515-19 66 -0.133890 hybrid +145_1-7 Q0 MARCO_49_1098748008-5 67 -0.134386 hybrid +145_1-7 Q0 MARCO_04_1488425205-8 68 -0.136389 hybrid +145_1-7 Q0 MARCO_00_1103677594-3 69 -0.138593 hybrid +145_1-7 Q0 MARCO_58_1509990523-5 70 -0.138634 hybrid +145_1-7 Q0 MARCO_15_133251511-4 71 -0.139063 hybrid +145_1-7 Q0 MARCO_05_1704993748-2 72 -0.139069 hybrid +145_1-7 Q0 MARCO_16_2831646695-13 73 -0.140423 hybrid +145_1-7 Q0 MARCO_55_130973334-1 74 -0.140974 hybrid +145_1-7 Q0 MARCO_00_1103730034-3 75 -0.147337 hybrid +145_1-7 Q0 MARCO_20_1112325414-3 76 -0.147681 hybrid +145_1-7 Q0 MARCO_20_1692726236-12 77 -0.147963 hybrid +145_1-7 Q0 MARCO_16_2831646695-18 78 -0.150218 hybrid +145_1-7 Q0 MARCO_16_2376597796-4 79 -0.151915 hybrid +145_1-7 Q0 MARCO_20_9146021-9 80 -0.151959 hybrid +145_1-7 Q0 MARCO_22_1646884039-5 81 -0.152395 hybrid +145_1-7 Q0 MARCO_39_1566027875-11 82 -0.152806 hybrid +145_1-7 Q0 MARCO_45_976543044-2 83 -0.157721 hybrid +145_1-7 Q0 MARCO_51_1997847687-19 84 -0.161207 hybrid +145_1-7 Q0 MARCO_50_2386869195-1 85 -0.163826 hybrid +145_1-7 Q0 MARCO_40_731223293-10 86 -0.166353 hybrid +145_1-7 Q0 MARCO_53_1044779084-3 87 -0.166468 hybrid +145_1-7 Q0 MARCO_26_74668745-11 88 -0.167427 hybrid +145_1-7 Q0 MARCO_50_1609250695-11 89 -0.168818 hybrid +145_1-7 Q0 MARCO_20_10299743-10 90 -0.171451 hybrid +145_1-7 Q0 MARCO_39_1570895295-5 91 -0.178018 hybrid +145_1-7 Q0 MARCO_55_130999384-4 92 -0.181936 hybrid +145_1-7 Q0 MARCO_02_829900177-1 93 -0.182324 hybrid +145_1-7 Q0 MARCO_15_133095469-3 94 -0.182899 hybrid +145_1-7 Q0 MARCO_22_1646884039-10 95 -0.183810 hybrid +145_1-7 Q0 MARCO_14_311189901-9 96 -0.184402 hybrid +145_1-7 Q0 MARCO_14_470224758-6 97 -0.185548 hybrid +145_1-7 Q0 KILT_59013230-14 98 -0.188201 hybrid +145_1-7 Q0 MARCO_50_1445010684-2 99 -0.189218 hybrid +145_1-7 Q0 MARCO_51_1997847687-11 100 -0.190487 hybrid +145_2-1 Q0 MARCO_15_133803271-2 1 0.500000 hybrid +145_2-1 Q0 MARCO_44_35321293-8 2 0.343156 hybrid +145_2-1 Q0 MARCO_50_1409906055-35 3 0.336769 hybrid +145_2-1 Q0 MARCO_44_35321293-2 4 0.312826 hybrid +145_2-1 Q0 MARCO_15_133803271-3 5 0.274564 hybrid +145_2-1 Q0 MARCO_00_1103730034-3 6 0.272136 hybrid +145_2-1 Q0 MARCO_08_743306876-5 7 0.242541 hybrid +145_2-1 Q0 MARCO_50_2149987757-29 8 0.231833 hybrid +145_2-1 Q0 MARCO_27_1336752185-6 9 0.197267 hybrid +145_2-1 Q0 MARCO_50_1409906055-39 10 0.196644 hybrid +145_2-1 Q0 MARCO_58_1506018316-3 11 0.192830 hybrid +145_2-1 Q0 KILT_47700-15 12 0.187273 hybrid +145_2-1 Q0 MARCO_00_1103658282-4 13 0.145293 hybrid +145_2-1 Q0 MARCO_20_1692530770-3 14 0.138125 hybrid +145_2-1 Q0 KILT_54792823-2 15 0.134446 hybrid +145_2-1 Q0 MARCO_08_743063601-5 16 0.118267 hybrid +145_2-1 Q0 MARCO_20_1109717538-15 17 0.115842 hybrid +145_2-1 Q0 MARCO_44_35321293-3 18 0.106527 hybrid +145_2-1 Q0 MARCO_11_1449875005-2 19 0.103968 hybrid +145_2-1 Q0 MARCO_15_132382047-6 20 0.102265 hybrid +145_2-1 Q0 KILT_2801560-17 21 0.089271 hybrid +145_2-1 Q0 MARCO_15_132327400-8 22 0.085440 hybrid +145_2-1 Q0 MARCO_51_1634830590-6 23 0.079155 hybrid +145_2-1 Q0 MARCO_15_132547451-5 24 0.068312 hybrid +145_2-1 Q0 MARCO_51_1890227767-22 25 0.060716 hybrid +145_2-1 Q0 MARCO_04_218037606-2 26 0.056770 hybrid +145_2-1 Q0 MARCO_50_1409906055-22 27 0.052504 hybrid +145_2-1 Q0 MARCO_58_1509990523-5 28 0.047201 hybrid +145_2-1 Q0 MARCO_56_456754768-8 29 0.036967 hybrid +145_2-1 Q0 MARCO_01_1679006693-3 30 0.032329 hybrid +145_2-1 Q0 MARCO_58_1508046553-4 31 0.028446 hybrid +145_2-1 Q0 MARCO_39_683618524-12 32 0.027102 hybrid +145_2-1 Q0 MARCO_50_1409906055-36 33 0.024085 hybrid +145_2-1 Q0 MARCO_58_882430285-2 34 0.022108 hybrid +145_2-1 Q0 MARCO_50_1519091796-3 35 0.018274 hybrid +145_2-1 Q0 MARCO_56_506929459-6 36 0.018166 hybrid +145_2-1 Q0 MARCO_15_132390467-4 37 0.014467 hybrid +145_2-1 Q0 MARCO_28_528320265-7 38 0.011739 hybrid +145_2-1 Q0 MARCO_58_1506018316-6 39 0.011104 hybrid +145_2-1 Q0 MARCO_58_1508046553-7 40 0.005422 hybrid +145_2-1 Q0 MARCO_23_1830774907-7 41 0.005145 hybrid +145_2-1 Q0 MARCO_13_1212328197-3 42 0.004203 hybrid +145_2-1 Q0 MARCO_20_1109741303-6 43 0.003551 hybrid +145_2-1 Q0 MARCO_48_1216050186-10 44 0.000692 hybrid +145_2-1 Q0 MARCO_25_518489685-28 45 -0.001387 hybrid +145_2-1 Q0 MARCO_00_1103658282-2 46 -0.004424 hybrid +145_2-1 Q0 MARCO_20_1692726236-12 47 -0.006538 hybrid +145_2-1 Q0 MARCO_50_1409906055-23 48 -0.007118 hybrid +145_2-1 Q0 MARCO_19_606872439-13 49 -0.007945 hybrid +145_2-1 Q0 MARCO_50_1409906055-21 50 -0.011015 hybrid +145_2-1 Q0 MARCO_15_133842840-9 51 -0.012201 hybrid +145_2-1 Q0 MARCO_00_1103724260-3 52 -0.012616 hybrid +145_2-1 Q0 MARCO_15_132327400-3 53 -0.013034 hybrid +145_2-1 Q0 MARCO_28_528320265-4 54 -0.016163 hybrid +145_2-1 Q0 MARCO_56_2580915-3 55 -0.019128 hybrid +145_2-1 Q0 MARCO_15_132527855-6 56 -0.024045 hybrid +145_2-1 Q0 MARCO_45_976543044-4 57 -0.025485 hybrid +145_2-1 Q0 KILT_13746446-17 58 -0.028357 hybrid +145_2-1 Q0 MARCO_50_1409906055-33 59 -0.029539 hybrid +145_2-1 Q0 MARCO_27_1151549200-3 60 -0.031414 hybrid +145_2-1 Q0 MARCO_50_2144197963-3 61 -0.037297 hybrid +145_2-1 Q0 MARCO_19_2430063731-3 62 -0.038192 hybrid +145_2-1 Q0 MARCO_38_1493960108-7 63 -0.039484 hybrid +145_2-1 Q0 KILT_59013230-17 64 -0.039816 hybrid +145_2-1 Q0 MARCO_15_132390467-3 65 -0.040380 hybrid +145_2-1 Q0 MARCO_42_200525481-4 66 -0.044945 hybrid +145_2-1 Q0 MARCO_39_683618524-34 67 -0.047343 hybrid +145_2-1 Q0 MARCO_13_736789482-1 68 -0.048818 hybrid +145_2-1 Q0 MARCO_15_133831051-3 69 -0.050482 hybrid +145_2-1 Q0 MARCO_39_675272543-8 70 -0.052643 hybrid +145_2-1 Q0 MARCO_50_1409906055-38 71 -0.056358 hybrid +145_2-1 Q0 MARCO_51_1632190518-9 72 -0.056816 hybrid +145_2-1 Q0 MARCO_44_2037703296-5 73 -0.058358 hybrid +145_2-1 Q0 MARCO_59_603880583-3 74 -0.059056 hybrid +145_2-1 Q0 MARCO_58_1506018316-5 75 -0.059421 hybrid +145_2-1 Q0 KILT_44533183-2 76 -0.059603 hybrid +145_2-1 Q0 MARCO_20_1691602430-3 77 -0.059797 hybrid +145_2-1 Q0 MARCO_39_674117843-2 78 -0.062116 hybrid +145_2-1 Q0 MARCO_51_1886540985-13 79 -0.064310 hybrid +145_2-1 Q0 MARCO_15_132547451-6 80 -0.064451 hybrid +145_2-1 Q0 MARCO_27_1563017977-3 81 -0.066615 hybrid +145_2-1 Q0 MARCO_44_35321293-1 82 -0.066731 hybrid +145_2-1 Q0 MARCO_50_2386869195-10 83 -0.068908 hybrid +145_2-1 Q0 MARCO_01_1679006693-11 84 -0.070703 hybrid +145_2-1 Q0 MARCO_14_336789855-6 85 -0.077228 hybrid +145_2-1 Q0 MARCO_58_1506018316-2 86 -0.079228 hybrid +145_2-1 Q0 MARCO_26_89475147-2 87 -0.082436 hybrid +145_2-1 Q0 MARCO_50_1409906055-15 88 -0.087489 hybrid +145_2-1 Q0 KILT_1728672-31 89 -0.088533 hybrid +145_2-1 Q0 MARCO_51_1890227767-21 90 -0.088898 hybrid +145_2-1 Q0 MARCO_51_1634830590-4 91 -0.090769 hybrid +145_2-1 Q0 MARCO_52_1187174028-5 92 -0.091892 hybrid +145_2-1 Q0 MARCO_15_133842840-8 93 -0.092357 hybrid +145_2-1 Q0 MARCO_50_2386869195-8 94 -0.093170 hybrid +145_2-1 Q0 MARCO_13_738422701-2 95 -0.093968 hybrid +145_2-1 Q0 MARCO_39_685381880-11 96 -0.096023 hybrid +145_2-1 Q0 KILT_47700-19 97 -0.098961 hybrid +145_2-1 Q0 MARCO_13_1212142212-3 98 -0.100055 hybrid +145_2-1 Q0 KILT_59013230-22 99 -0.104564 hybrid +145_2-1 Q0 MARCO_20_1109717538-11 100 -0.105506 hybrid +145_2-3 Q0 KILT_47700-15 1 0.499998 hybrid +145_2-3 Q0 MARCO_44_35321293-3 2 0.473501 hybrid +145_2-3 Q0 MARCO_15_133648640-13 3 0.468109 hybrid +145_2-3 Q0 MARCO_59_603880583-3 4 0.454530 hybrid +145_2-3 Q0 MARCO_58_1506018316-3 5 0.434786 hybrid +145_2-3 Q0 MARCO_01_1869948757-15 6 0.420619 hybrid +145_2-3 Q0 MARCO_19_149451038-8 7 0.415918 hybrid +145_2-3 Q0 MARCO_01_1679006693-2 8 0.410964 hybrid +145_2-3 Q0 MARCO_59_603880583-2 9 0.348517 hybrid +145_2-3 Q0 KILT_3821214-13 10 0.345814 hybrid +145_2-3 Q0 MARCO_58_1506018316-2 11 0.332549 hybrid +145_2-3 Q0 MARCO_27_1567992001-3 12 0.327004 hybrid +145_2-3 Q0 MARCO_27_1567992001-4 13 0.326816 hybrid +145_2-3 Q0 MARCO_08_743306876-4 14 0.319192 hybrid +145_2-3 Q0 MARCO_01_1679006693-3 15 0.317118 hybrid +145_2-3 Q0 MARCO_44_2037703296-5 16 0.311360 hybrid +145_2-3 Q0 MARCO_15_132390467-4 17 0.297673 hybrid +145_2-3 Q0 KILT_13746446-17 18 0.296995 hybrid +145_2-3 Q0 MARCO_01_1679006693-8 19 0.296452 hybrid +145_2-3 Q0 MARCO_44_35321293-5 20 0.293327 hybrid +145_2-3 Q0 MARCO_08_743063601-4 21 0.284365 hybrid +145_2-3 Q0 MARCO_08_743120872-4 22 0.270463 hybrid +145_2-3 Q0 MARCO_02_162391697-4 23 0.270158 hybrid +145_2-3 Q0 MARCO_55_127314872-1 24 0.260371 hybrid +145_2-3 Q0 MARCO_51_1886540985-13 25 0.245953 hybrid +145_2-3 Q0 MARCO_03_1218066139-3 26 0.242513 hybrid +145_2-3 Q0 MARCO_26_723799539-23 27 0.232264 hybrid +145_2-3 Q0 MARCO_15_132547451-7 28 0.230337 hybrid +145_2-3 Q0 MARCO_41_334325214-13 29 0.228438 hybrid +145_2-3 Q0 KILT_2801560-17 30 0.225618 hybrid +145_2-3 Q0 MARCO_38_1493960108-7 31 0.220238 hybrid +145_2-3 Q0 MARCO_08_743306876-3 32 0.212190 hybrid +145_2-3 Q0 MARCO_01_1679006693-6 33 0.200066 hybrid +145_2-3 Q0 MARCO_15_133831051-6 34 0.195824 hybrid +145_2-3 Q0 MARCO_44_35321293-2 35 0.194505 hybrid +145_2-3 Q0 MARCO_15_133078716-5 36 0.188611 hybrid +145_2-3 Q0 MARCO_08_743306876-5 37 0.188331 hybrid +145_2-3 Q0 MARCO_15_131999270-2 38 0.185886 hybrid +145_2-3 Q0 MARCO_16_1110546491-3 39 0.185377 hybrid +145_2-3 Q0 MARCO_48_1188978655-4 40 0.181706 hybrid +145_2-3 Q0 MARCO_01_1679006693-5 41 0.179443 hybrid +145_2-3 Q0 MARCO_31_899429219-9 42 0.175153 hybrid +145_2-3 Q0 MARCO_20_1109717538-14 43 0.174456 hybrid +145_2-3 Q0 MARCO_15_134473869-6 44 0.167107 hybrid +145_2-3 Q0 MARCO_08_743063601-6 45 0.164441 hybrid +145_2-3 Q0 MARCO_28_528320265-10 46 0.161275 hybrid +145_2-3 Q0 MARCO_28_528320265-2 47 0.161022 hybrid +145_2-3 Q0 MARCO_15_133803271-2 48 0.160846 hybrid +145_2-3 Q0 MARCO_01_1679006693-7 49 0.156321 hybrid +145_2-3 Q0 MARCO_01_1679006693-11 50 0.149619 hybrid +145_2-3 Q0 MARCO_28_528320265-3 51 0.145923 hybrid +145_2-3 Q0 MARCO_23_1830774907-7 52 0.128125 hybrid +145_2-3 Q0 MARCO_15_133505529-7 53 0.123966 hybrid +145_2-3 Q0 MARCO_20_5955535-8 54 0.112406 hybrid +145_2-3 Q0 MARCO_28_528320265-8 55 0.090061 hybrid +145_2-3 Q0 MARCO_00_1103658282-2 56 0.089124 hybrid +145_2-3 Q0 MARCO_15_132249263-2 57 0.082906 hybrid +145_2-3 Q0 MARCO_40_736910276-10 58 0.082718 hybrid +145_2-3 Q0 MARCO_59_603880583-6 59 0.081806 hybrid +145_2-3 Q0 MARCO_15_132249263-1 60 0.080597 hybrid +145_2-3 Q0 MARCO_45_976543044-4 61 0.079873 hybrid +145_2-3 Q0 MARCO_15_133877816-1 62 0.078976 hybrid +145_2-3 Q0 MARCO_20_11269334-7 63 0.076772 hybrid +145_2-3 Q0 MARCO_40_734107009-5 64 0.076599 hybrid +145_2-3 Q0 KILT_1278066-2 65 0.076380 hybrid +145_2-3 Q0 MARCO_15_131999270-1 66 0.074491 hybrid +145_2-3 Q0 MARCO_20_4372877-4 67 0.059704 hybrid +145_2-3 Q0 MARCO_44_35321293-8 68 0.052093 hybrid +145_2-3 Q0 MARCO_16_2629632909-4 69 0.051507 hybrid +145_2-3 Q0 MARCO_15_766740202-7 70 0.050194 hybrid +145_2-3 Q0 MARCO_30_1004298367-6 71 0.049833 hybrid +145_2-3 Q0 MARCO_50_2386869195-11 72 0.049768 hybrid +145_2-3 Q0 MARCO_39_1570912715-6 73 0.041572 hybrid +145_2-3 Q0 MARCO_59_603880583-4 74 0.031322 hybrid +145_2-3 Q0 MARCO_20_5229474-8 75 0.029214 hybrid +145_2-3 Q0 MARCO_00_1103730034-3 76 0.028761 hybrid +145_2-3 Q0 MARCO_16_2629632909-5 77 0.027497 hybrid +145_2-3 Q0 MARCO_50_2386869195-1 78 0.026257 hybrid +145_2-3 Q0 MARCO_15_133803271-6 79 0.025228 hybrid +145_2-3 Q0 MARCO_51_1886540985-8 80 0.024775 hybrid +145_2-3 Q0 MARCO_01_1679006693-14 81 0.022793 hybrid +145_2-3 Q0 MARCO_15_132327400-8 82 0.022753 hybrid +145_2-3 Q0 MARCO_20_1109717538-16 83 0.017386 hybrid +145_2-3 Q0 MARCO_15_131999270-7 84 0.015132 hybrid +145_2-3 Q0 MARCO_45_976543044-5 85 0.010638 hybrid +145_2-3 Q0 MARCO_58_1506018316-6 86 0.006520 hybrid +145_2-3 Q0 MARCO_20_1691602430-3 87 0.005425 hybrid +145_2-3 Q0 MARCO_15_133013878-4 88 0.004467 hybrid +145_2-3 Q0 MARCO_15_132351325-2 89 0.001748 hybrid +145_2-3 Q0 MARCO_57_1268444785-1 90 -0.002836 hybrid +145_2-3 Q0 MARCO_15_132403390-6 91 -0.003443 hybrid +145_2-3 Q0 KILT_54792823-2 92 -0.005780 hybrid +145_2-3 Q0 MARCO_50_2386869195-10 93 -0.007219 hybrid +145_2-3 Q0 MARCO_15_133450036-11 94 -0.011261 hybrid +145_2-3 Q0 MARCO_15_132988360-9 95 -0.011498 hybrid +145_2-3 Q0 MARCO_55_127685824-10 96 -0.023209 hybrid +145_2-3 Q0 MARCO_09_387951572-19 97 -0.024312 hybrid +145_2-3 Q0 MARCO_15_133381645-13 98 -0.025693 hybrid +145_2-3 Q0 MARCO_40_733643176-5 99 -0.033190 hybrid +145_2-3 Q0 MARCO_03_1218066139-2 100 -0.036544 hybrid +145_2-5 Q0 KILT_13746446-17 1 0.500000 hybrid +145_2-5 Q0 MARCO_31_899429219-9 2 0.299816 hybrid +145_2-5 Q0 MARCO_28_528320265-2 3 0.281433 hybrid +145_2-5 Q0 MARCO_28_528320265-3 4 0.240249 hybrid +145_2-5 Q0 MARCO_58_1506018316-2 5 0.238938 hybrid +145_2-5 Q0 KILT_47700-15 6 0.215092 hybrid +145_2-5 Q0 MARCO_59_603880583-3 7 0.199895 hybrid +145_2-5 Q0 MARCO_58_1506018316-3 8 0.157945 hybrid +145_2-5 Q0 MARCO_23_1830774907-7 9 0.149559 hybrid +145_2-5 Q0 MARCO_45_976543044-4 10 0.141094 hybrid +145_2-5 Q0 MARCO_50_2386869195-11 11 0.137213 hybrid +145_2-5 Q0 MARCO_44_35321293-5 12 0.124525 hybrid +145_2-5 Q0 MARCO_01_1869948757-15 13 0.111277 hybrid +145_2-5 Q0 MARCO_44_35321293-3 14 0.105487 hybrid +145_2-5 Q0 MARCO_44_35321293-2 15 0.104335 hybrid +145_2-5 Q0 MARCO_08_743306876-4 16 0.099367 hybrid +145_2-5 Q0 MARCO_44_35321293-4 17 0.091123 hybrid +145_2-5 Q0 MARCO_08_743063601-6 18 0.087729 hybrid +145_2-5 Q0 MARCO_08_743120872-4 19 0.082037 hybrid +145_2-5 Q0 MARCO_35_307932624-12 20 0.077449 hybrid +145_2-5 Q0 MARCO_01_1679006693-8 21 0.063369 hybrid +145_2-5 Q0 MARCO_30_1045383696-2 22 0.060141 hybrid +145_2-5 Q0 KILT_2801560-17 23 0.047664 hybrid +145_2-5 Q0 MARCO_44_35321293-8 24 0.019561 hybrid +145_2-5 Q0 MARCO_15_131999270-7 25 0.015836 hybrid +145_2-5 Q0 MARCO_08_743306876-1 26 0.010264 hybrid +145_2-5 Q0 MARCO_08_743063601-4 27 0.006165 hybrid +145_2-5 Q0 MARCO_15_133648640-13 28 0.005642 hybrid +145_2-5 Q0 MARCO_28_528320265-8 29 -0.003287 hybrid +145_2-5 Q0 MARCO_01_1679006693-13 30 -0.009739 hybrid +145_2-5 Q0 MARCO_48_1188978655-4 31 -0.011709 hybrid +145_2-5 Q0 MARCO_25_518489685-28 32 -0.015792 hybrid +145_2-5 Q0 MARCO_13_436616963-4 33 -0.028606 hybrid +145_2-5 Q0 MARCO_51_1886540985-8 34 -0.031431 hybrid +145_2-5 Q0 MARCO_19_149451038-8 35 -0.032777 hybrid +145_2-5 Q0 KILT_3821214-13 36 -0.034957 hybrid +145_2-5 Q0 KILT_54792823-2 37 -0.040190 hybrid +145_2-5 Q0 MARCO_15_133450036-2 38 -0.040755 hybrid +145_2-5 Q0 MARCO_59_603880583-2 39 -0.043298 hybrid +145_2-5 Q0 MARCO_28_446259438-16 40 -0.044293 hybrid +145_2-5 Q0 MARCO_50_2386869195-10 41 -0.050301 hybrid +145_2-5 Q0 MARCO_01_1679006693-3 42 -0.052859 hybrid +145_2-5 Q0 KILT_47700-19 43 -0.067803 hybrid +145_2-5 Q0 MARCO_28_528320265-4 44 -0.069453 hybrid +145_2-5 Q0 MARCO_15_132547451-6 45 -0.073020 hybrid +145_2-5 Q0 MARCO_44_35321293-1 46 -0.074823 hybrid +145_2-5 Q0 MARCO_16_2629632909-4 47 -0.077025 hybrid +145_2-5 Q0 MARCO_01_1679006693-5 48 -0.078761 hybrid +145_2-5 Q0 MARCO_30_1045363557-5 49 -0.079712 hybrid +145_2-5 Q0 MARCO_30_1045383696-5 50 -0.079713 hybrid +145_2-5 Q0 MARCO_01_1679006693-2 51 -0.082671 hybrid +145_2-5 Q0 MARCO_39_1570912715-6 52 -0.083626 hybrid +145_2-5 Q0 MARCO_41_334325214-13 53 -0.085919 hybrid +145_2-5 Q0 KILT_1278066-2 54 -0.087438 hybrid +145_2-5 Q0 MARCO_59_603880583-6 55 -0.093787 hybrid +145_2-5 Q0 MARCO_15_131999270-1 56 -0.101306 hybrid +145_2-5 Q0 MARCO_06_691625025-12 57 -0.102022 hybrid +145_2-5 Q0 MARCO_20_1109717538-14 58 -0.102212 hybrid +145_2-5 Q0 MARCO_15_133831051-6 59 -0.103005 hybrid +145_2-5 Q0 MARCO_44_2037703296-5 60 -0.110719 hybrid +145_2-5 Q0 MARCO_08_743306876-5 61 -0.116475 hybrid +145_2-5 Q0 MARCO_28_424288304-2 62 -0.128304 hybrid +145_2-5 Q0 MARCO_15_132249263-2 63 -0.135914 hybrid +145_2-5 Q0 MARCO_28_528320265-10 64 -0.141601 hybrid +145_2-5 Q0 MARCO_45_976543044-5 65 -0.145664 hybrid +145_2-5 Q0 KILT_47319898-2 66 -0.146068 hybrid +145_2-5 Q0 KILT_54792823-3 67 -0.147034 hybrid +145_2-5 Q0 MARCO_01_1679006693-6 68 -0.147646 hybrid +145_2-5 Q0 MARCO_18_3778728376-7 69 -0.149001 hybrid +145_2-5 Q0 MARCO_14_335992199-1 70 -0.150122 hybrid +145_2-5 Q0 MARCO_08_743120872-10 71 -0.153295 hybrid +145_2-5 Q0 KILT_1728672-31 72 -0.153391 hybrid +145_2-5 Q0 MARCO_08_443573391-5 73 -0.155374 hybrid +145_2-5 Q0 MARCO_02_162391697-4 74 -0.155722 hybrid +145_2-5 Q0 MARCO_03_1218299721-3 75 -0.155971 hybrid +145_2-5 Q0 MARCO_00_1103658282-4 76 -0.157963 hybrid +145_2-5 Q0 MARCO_01_1679006693-7 77 -0.158217 hybrid +145_2-5 Q0 MARCO_00_800638500-7 78 -0.161499 hybrid +145_2-5 Q0 MARCO_59_603835466-4 79 -0.162055 hybrid +145_2-5 Q0 KILT_19185859-3 80 -0.162115 hybrid +145_2-5 Q0 MARCO_51_1886540985-13 81 -0.162576 hybrid +145_2-5 Q0 MARCO_01_1679006693-12 82 -0.167269 hybrid +145_2-5 Q0 MARCO_03_447802610-2 83 -0.168660 hybrid +145_2-5 Q0 MARCO_20_1691367942-5 84 -0.173908 hybrid +145_2-5 Q0 MARCO_58_1508046553-7 85 -0.174928 hybrid +145_2-5 Q0 MARCO_52_1187174028-5 86 -0.180317 hybrid +145_2-5 Q0 MARCO_18_1298916707-19 87 -0.182908 hybrid +145_2-5 Q0 MARCO_15_133176883-4 88 -0.183157 hybrid +145_2-5 Q0 MARCO_15_132403390-6 89 -0.191517 hybrid +145_2-5 Q0 MARCO_15_131999270-2 90 -0.192402 hybrid +145_2-5 Q0 MARCO_28_528320265-6 91 -0.192460 hybrid +145_2-5 Q0 KILT_13746446-18 92 -0.195295 hybrid +145_2-5 Q0 MARCO_16_1110546491-3 93 -0.196457 hybrid +145_2-5 Q0 MARCO_15_133877816-1 94 -0.197037 hybrid +145_2-5 Q0 MARCO_17_1735390590-6 95 -0.200031 hybrid +145_2-5 Q0 MARCO_58_1506018316-4 96 -0.201132 hybrid +145_2-5 Q0 KILT_43174405-2 97 -0.201801 hybrid +145_2-5 Q0 MARCO_27_1567992001-3 98 -0.205894 hybrid +145_2-5 Q0 KILT_33900980-2 99 -0.207275 hybrid +145_2-5 Q0 MARCO_28_528320265-5 100 -0.208109 hybrid +146_1-1 Q0 MARCO_12_1743660916-2 1 0.500000 hybrid +146_1-1 Q0 MARCO_18_438706474-27 2 0.424936 hybrid +146_1-1 Q0 MARCO_12_1743660916-24 3 0.174654 hybrid +146_1-1 Q0 MARCO_03_442110904-3 4 0.141508 hybrid +146_1-1 Q0 MARCO_12_1743852582-1 5 0.136419 hybrid +146_1-1 Q0 MARCO_12_1743843608-1 6 0.091072 hybrid +146_1-1 Q0 MARCO_12_1749972286-4 7 0.085149 hybrid +146_1-1 Q0 KILT_5213622-1 8 0.067631 hybrid +146_1-1 Q0 MARCO_12_1743660916-4 9 0.050151 hybrid +146_1-1 Q0 MARCO_12_1742383385-2 10 0.037263 hybrid +146_1-1 Q0 MARCO_12_1749972286-17 11 0.008315 hybrid +146_1-1 Q0 MARCO_00_938352697-2 12 0.008241 hybrid +146_1-1 Q0 MARCO_12_1743660916-3 13 -0.004974 hybrid +146_1-1 Q0 MARCO_18_438706474-26 14 -0.005172 hybrid +146_1-1 Q0 MARCO_12_1749972286-18 15 -0.033509 hybrid +146_1-1 Q0 MARCO_12_1749972286-1 16 -0.045811 hybrid +146_1-1 Q0 MARCO_12_1749972286-2 17 -0.046156 hybrid +146_1-1 Q0 MARCO_30_1595095560-5 18 -0.054200 hybrid +146_1-1 Q0 MARCO_12_1748924052-1 19 -0.058720 hybrid +146_1-1 Q0 MARCO_37_835583122-2 20 -0.063202 hybrid +146_1-1 Q0 MARCO_12_1748988523-2 21 -0.067951 hybrid +146_1-1 Q0 MARCO_30_1595095560-2 22 -0.072560 hybrid +146_1-1 Q0 MARCO_30_1046901938-4 23 -0.078201 hybrid +146_1-1 Q0 MARCO_03_442110904-1 24 -0.079419 hybrid +146_1-1 Q0 MARCO_12_1749972286-19 25 -0.085806 hybrid +146_1-1 Q0 MARCO_12_1743843608-4 26 -0.087726 hybrid +146_1-1 Q0 MARCO_37_835583122-6 27 -0.093424 hybrid +146_1-1 Q0 MARCO_37_835583122-3 28 -0.096391 hybrid +146_1-1 Q0 MARCO_12_1742862651-3 29 -0.096988 hybrid +146_1-1 Q0 MARCO_12_1743241647-1 30 -0.098005 hybrid +146_1-1 Q0 MARCO_37_835572361-7 31 -0.098388 hybrid +146_1-1 Q0 MARCO_37_835583122-8 32 -0.108978 hybrid +146_1-1 Q0 MARCO_24_1272117402-6 33 -0.109856 hybrid +146_1-1 Q0 MARCO_12_1742928397-28 34 -0.113501 hybrid +146_1-1 Q0 MARCO_10_1139818584-3 35 -0.119837 hybrid +146_1-1 Q0 KILT_22920117-5 36 -0.121331 hybrid +146_1-1 Q0 MARCO_37_835572361-1 37 -0.122836 hybrid +146_1-1 Q0 MARCO_26_729371405-2 38 -0.128305 hybrid +146_1-1 Q0 MARCO_55_1727497448-7 39 -0.146244 hybrid +146_1-1 Q0 MARCO_12_1748735394-7 40 -0.155796 hybrid +146_1-1 Q0 MARCO_12_1743660916-6 41 -0.158604 hybrid +146_1-1 Q0 MARCO_37_835512353-8 42 -0.158792 hybrid +146_1-1 Q0 MARCO_28_474423482-2 43 -0.160119 hybrid +146_1-1 Q0 MARCO_37_835583122-5 44 -0.161349 hybrid +146_1-1 Q0 MARCO_15_1536998662-85 45 -0.163746 hybrid +146_1-1 Q0 MARCO_12_1743660916-5 46 -0.164588 hybrid +146_1-1 Q0 MARCO_42_1893321634-2 47 -0.169636 hybrid +146_1-1 Q0 MARCO_52_1188774245-88 48 -0.172787 hybrid +146_1-1 Q0 KILT_969450-1 49 -0.175369 hybrid +146_1-1 Q0 MARCO_59_946203164-4 50 -0.176627 hybrid +146_1-1 Q0 MARCO_12_1743852582-2 51 -0.182933 hybrid +146_1-1 Q0 MARCO_30_1595095560-3 52 -0.187509 hybrid +146_1-1 Q0 MARCO_59_946203164-10 53 -0.190406 hybrid +146_1-1 Q0 MARCO_49_195021032-1 54 -0.194774 hybrid +146_1-1 Q0 MARCO_49_445498041-2 55 -0.195378 hybrid +146_1-1 Q0 MARCO_24_1272103552-4 56 -0.197980 hybrid +146_1-1 Q0 KILT_22920117-4 57 -0.203459 hybrid +146_1-1 Q0 MARCO_24_1263129398-8 58 -0.203906 hybrid +146_1-1 Q0 MARCO_12_1743852582-3 59 -0.204806 hybrid +146_1-1 Q0 MARCO_03_442110904-2 60 -0.204915 hybrid +146_1-1 Q0 MARCO_37_835583122-7 61 -0.205986 hybrid +146_1-1 Q0 MARCO_24_1267849248-5 62 -0.206521 hybrid +146_1-1 Q0 MARCO_57_1433621787-7 63 -0.210707 hybrid +146_1-1 Q0 MARCO_15_1880743126-2 64 -0.210945 hybrid +146_1-1 Q0 MARCO_24_1269344514-8 65 -0.211419 hybrid +146_1-1 Q0 MARCO_12_1743660916-21 66 -0.213847 hybrid +146_1-1 Q0 MARCO_12_1743660916-9 67 -0.214803 hybrid +146_1-1 Q0 MARCO_24_1267824382-3 68 -0.216835 hybrid +146_1-1 Q0 MARCO_12_1748793707-23 69 -0.219750 hybrid +146_1-1 Q0 MARCO_12_1742418613-5 70 -0.221551 hybrid +146_1-1 Q0 MARCO_12_1160687657-5 71 -0.221601 hybrid +146_1-1 Q0 MARCO_12_1743660916-20 72 -0.224290 hybrid +146_1-1 Q0 MARCO_59_945897284-10 73 -0.224688 hybrid +146_1-1 Q0 MARCO_37_835486393-2 74 -0.230576 hybrid +146_1-1 Q0 MARCO_42_1893270592-5 75 -0.231436 hybrid +146_1-1 Q0 MARCO_51_957947561-10 76 -0.231492 hybrid +146_1-1 Q0 MARCO_12_1749931299-12 77 -0.234642 hybrid +146_1-1 Q0 MARCO_50_1940712153-18 78 -0.235888 hybrid +146_1-1 Q0 MARCO_12_1742862651-2 79 -0.236945 hybrid +146_1-1 Q0 MARCO_30_1079167306-2 80 -0.240301 hybrid +146_1-1 Q0 KILT_856557-19 81 -0.244220 hybrid +146_1-1 Q0 MARCO_12_1748626937-11 82 -0.245717 hybrid +146_1-1 Q0 MARCO_28_531086957-4 83 -0.246782 hybrid +146_1-1 Q0 MARCO_10_1139818584-12 84 -0.248647 hybrid +146_1-1 Q0 MARCO_41_342459735-7 85 -0.252086 hybrid +146_1-1 Q0 MARCO_39_1048421120-11 86 -0.252817 hybrid +146_1-1 Q0 MARCO_30_158949539-2 87 -0.252944 hybrid +146_1-1 Q0 MARCO_37_835486393-5 88 -0.254603 hybrid +146_1-1 Q0 MARCO_15_1880729445-10 89 -0.254778 hybrid +146_1-1 Q0 MARCO_12_1743865190-1 90 -0.257494 hybrid +146_1-1 Q0 MARCO_24_1272103552-6 91 -0.259782 hybrid +146_1-1 Q0 MARCO_39_1571105677-2 92 -0.259828 hybrid +146_1-1 Q0 MARCO_00_938352697-1 93 -0.263022 hybrid +146_1-1 Q0 MARCO_12_1747780698-17 94 -0.264110 hybrid +146_1-1 Q0 MARCO_24_1263129398-9 95 -0.264716 hybrid +146_1-1 Q0 MARCO_22_155033833-21 96 -0.265069 hybrid +146_1-1 Q0 MARCO_12_1743865190-2 97 -0.270236 hybrid +146_1-1 Q0 MARCO_12_1743660916-36 98 -0.272696 hybrid +146_1-1 Q0 MARCO_12_1742483946-6 99 -0.273589 hybrid +146_1-1 Q0 MARCO_12_1749972286-14 100 -0.273772 hybrid +146_1-11 Q0 MARCO_11_754522594-8 1 0.499998 hybrid +146_1-11 Q0 MARCO_41_113271484-1 2 0.275371 hybrid +146_1-11 Q0 MARCO_33_820389361-1 3 0.211117 hybrid +146_1-11 Q0 MARCO_44_104702281-5 4 0.185982 hybrid +146_1-11 Q0 MARCO_31_885963547-17 5 0.181282 hybrid +146_1-11 Q0 MARCO_30_1023512105-25 6 0.138951 hybrid +146_1-11 Q0 MARCO_30_1023256694-34 7 0.138322 hybrid +146_1-11 Q0 MARCO_13_1565289735-8 8 0.120902 hybrid +146_1-11 Q0 MARCO_22_167025448-1 9 0.115907 hybrid +146_1-11 Q0 MARCO_13_1696358562-1 10 0.111779 hybrid +146_1-11 Q0 MARCO_39_23819753-2 11 0.068452 hybrid +146_1-11 Q0 MARCO_12_1748283911-1 12 0.067797 hybrid +146_1-11 Q0 MARCO_20_364926941-20 13 0.065895 hybrid +146_1-11 Q0 MARCO_24_953037959-10 14 0.061479 hybrid +146_1-11 Q0 MARCO_55_1278846437-9 15 0.054764 hybrid +146_1-11 Q0 MARCO_36_953407022-2 16 0.038398 hybrid +146_1-11 Q0 MARCO_30_737679851-1 17 0.037925 hybrid +146_1-11 Q0 MARCO_11_755049057-1 18 0.037896 hybrid +146_1-11 Q0 MARCO_30_1023295234-17 19 0.027034 hybrid +146_1-11 Q0 MARCO_45_657231657-2 20 0.025459 hybrid +146_1-11 Q0 MARCO_12_1744392103-1 21 0.025063 hybrid +146_1-11 Q0 MARCO_24_1270881747-2 22 0.022131 hybrid +146_1-11 Q0 MARCO_02_485011177-1 23 0.007919 hybrid +146_1-11 Q0 MARCO_30_1023541593-1 24 0.007442 hybrid +146_1-11 Q0 MARCO_24_1268172536-1 25 -0.003430 hybrid +146_1-11 Q0 MARCO_42_325369363-30 26 -0.009047 hybrid +146_1-11 Q0 MARCO_30_1093753522-1 27 -0.010876 hybrid +146_1-11 Q0 MARCO_02_485011177-3 28 -0.018530 hybrid +146_1-11 Q0 MARCO_36_1433791408-4 29 -0.025467 hybrid +146_1-11 Q0 MARCO_11_754616783-11 30 -0.034841 hybrid +146_1-11 Q0 MARCO_19_2062629295-1 31 -0.037652 hybrid +146_1-11 Q0 MARCO_30_1023403401-1 32 -0.038893 hybrid +146_1-11 Q0 MARCO_22_167025448-6 33 -0.042469 hybrid +146_1-11 Q0 MARCO_36_955036188-4 34 -0.046248 hybrid +146_1-11 Q0 MARCO_41_113271484-2 35 -0.049707 hybrid +146_1-11 Q0 MARCO_22_156348200-3 36 -0.059762 hybrid +146_1-11 Q0 MARCO_22_156348200-1 37 -0.059762 hybrid +146_1-11 Q0 MARCO_56_450711294-8 38 -0.063181 hybrid +146_1-11 Q0 MARCO_45_657231657-1 39 -0.064865 hybrid +146_1-11 Q0 MARCO_13_1565289735-1 40 -0.065502 hybrid +146_1-11 Q0 MARCO_55_818099290-1 41 -0.066968 hybrid +146_1-11 Q0 MARCO_54_557942895-4 42 -0.067029 hybrid +146_1-11 Q0 MARCO_56_813820654-5 43 -0.070489 hybrid +146_1-11 Q0 MARCO_00_1003301494-1 44 -0.071464 hybrid +146_1-11 Q0 MARCO_32_1520324974-18 45 -0.074857 hybrid +146_1-11 Q0 MARCO_48_1593292798-1 46 -0.083322 hybrid +146_1-11 Q0 MARCO_54_557942895-2 47 -0.088120 hybrid +146_1-11 Q0 MARCO_55_1278846437-7 48 -0.088171 hybrid +146_1-11 Q0 MARCO_19_2062629295-2 49 -0.088742 hybrid +146_1-11 Q0 MARCO_52_599141495-9 50 -0.088771 hybrid +146_1-11 Q0 MARCO_31_1609170729-1 51 -0.088800 hybrid +146_1-11 Q0 MARCO_30_1023295234-1 52 -0.089288 hybrid +146_1-11 Q0 MARCO_30_1023256694-1 53 -0.091168 hybrid +146_1-11 Q0 MARCO_24_1127718815-1 54 -0.091303 hybrid +146_1-11 Q0 MARCO_50_2554813031-4 55 -0.095330 hybrid +146_1-11 Q0 MARCO_30_740017895-22 56 -0.096286 hybrid +146_1-11 Q0 MARCO_21_397258943-1 57 -0.097861 hybrid +146_1-11 Q0 MARCO_30_1023146362-2 58 -0.099357 hybrid +146_1-11 Q0 MARCO_25_520538614-1 59 -0.099957 hybrid +146_1-11 Q0 MARCO_30_1023219202-6 60 -0.103107 hybrid +146_1-11 Q0 MARCO_45_1581981666-5 61 -0.104165 hybrid +146_1-11 Q0 MARCO_45_657284769-6 62 -0.105198 hybrid +146_1-11 Q0 MARCO_45_657284769-1 63 -0.107265 hybrid +146_1-11 Q0 MARCO_45_657315801-8 64 -0.110069 hybrid +146_1-11 Q0 MARCO_30_818130848-12 65 -0.111328 hybrid +146_1-11 Q0 MARCO_12_1168581743-8 66 -0.111404 hybrid +146_1-11 Q0 MARCO_24_1268172536-20 67 -0.111499 hybrid +146_1-11 Q0 MARCO_55_818137430-1 68 -0.111913 hybrid +146_1-11 Q0 MARCO_31_1609170729-5 69 -0.111913 hybrid +146_1-11 Q0 MARCO_54_557942895-1 70 -0.112037 hybrid +146_1-11 Q0 MARCO_12_1744392103-2 71 -0.115387 hybrid +146_1-11 Q0 MARCO_49_408074028-1 72 -0.116439 hybrid +146_1-11 Q0 MARCO_59_942738593-8 73 -0.116860 hybrid +146_1-11 Q0 MARCO_30_1023181351-1 74 -0.117603 hybrid +146_1-11 Q0 MARCO_36_953550205-3 75 -0.117934 hybrid +146_1-11 Q0 MARCO_30_740017895-1 76 -0.118454 hybrid +146_1-11 Q0 MARCO_52_1200764674-1 77 -0.119905 hybrid +146_1-11 Q0 MARCO_24_1553899260-4 78 -0.127148 hybrid +146_1-11 Q0 MARCO_55_818079519-1 79 -0.129054 hybrid +146_1-11 Q0 MARCO_21_963867012-3 80 -0.129075 hybrid +146_1-11 Q0 MARCO_21_963867012-1 81 -0.129083 hybrid +146_1-11 Q0 MARCO_31_1655966712-1 82 -0.130763 hybrid +146_1-11 Q0 MARCO_43_744615889-1 83 -0.133324 hybrid +146_1-11 Q0 MARCO_30_1023219202-1 84 -0.136492 hybrid +146_1-11 Q0 MARCO_45_657315801-5 85 -0.136503 hybrid +146_1-11 Q0 MARCO_45_657284769-25 86 -0.137675 hybrid +146_1-11 Q0 MARCO_24_1270881747-1 87 -0.138188 hybrid +146_1-11 Q0 MARCO_22_398051387-3 88 -0.139923 hybrid +146_1-11 Q0 MARCO_44_1854517724-12 89 -0.140934 hybrid +146_1-11 Q0 MARCO_01_1176871118-4 90 -0.142262 hybrid +146_1-11 Q0 MARCO_36_954380266-3 91 -0.144917 hybrid +146_1-11 Q0 MARCO_25_521252296-1 92 -0.145004 hybrid +146_1-11 Q0 MARCO_45_657374819-13 93 -0.148114 hybrid +146_1-11 Q0 MARCO_36_894948724-2 94 -0.149897 hybrid +146_1-11 Q0 MARCO_46_626946175-3 95 -0.150064 hybrid +146_1-11 Q0 MARCO_24_1553824018-15 96 -0.151072 hybrid +146_1-11 Q0 MARCO_30_737642122-1 97 -0.153764 hybrid +146_1-11 Q0 MARCO_45_1581981666-15 98 -0.154429 hybrid +146_1-11 Q0 MARCO_30_1023295234-26 99 -0.157099 hybrid +146_1-11 Q0 MARCO_55_818079519-3 100 -0.159224 hybrid +146_1-3 Q0 MARCO_12_1743660916-4 1 0.500000 hybrid +146_1-3 Q0 MARCO_12_1743660916-9 2 0.429932 hybrid +146_1-3 Q0 MARCO_12_1743660916-24 3 0.352230 hybrid +146_1-3 Q0 MARCO_12_1742890120-13 4 0.189080 hybrid +146_1-3 Q0 MARCO_30_1079167306-2 5 0.183583 hybrid +146_1-3 Q0 MARCO_12_1742997671-2 6 0.168603 hybrid +146_1-3 Q0 MARCO_18_438706474-27 7 0.162900 hybrid +146_1-3 Q0 MARCO_24_1263187707-15 8 0.156563 hybrid +146_1-3 Q0 MARCO_12_1743241647-1 9 0.151874 hybrid +146_1-3 Q0 MARCO_03_442110904-1 10 0.140894 hybrid +146_1-3 Q0 MARCO_03_442110904-2 11 0.140081 hybrid +146_1-3 Q0 MARCO_12_1742997671-1 12 0.138616 hybrid +146_1-3 Q0 MARCO_12_1743660916-36 13 0.137514 hybrid +146_1-3 Q0 MARCO_12_1744179388-8 14 0.123629 hybrid +146_1-3 Q0 MARCO_12_1743660916-2 15 0.112941 hybrid +146_1-3 Q0 MARCO_12_1743660916-5 16 0.108282 hybrid +146_1-3 Q0 KILT_22920117-5 17 0.097818 hybrid +146_1-3 Q0 MARCO_12_1743843608-4 18 0.089408 hybrid +146_1-3 Q0 MARCO_24_1271381381-9 19 0.074660 hybrid +146_1-3 Q0 MARCO_12_1743660916-3 20 0.065162 hybrid +146_1-3 Q0 MARCO_03_442110904-3 21 0.055884 hybrid +146_1-3 Q0 MARCO_24_1263187707-5 22 0.049421 hybrid +146_1-3 Q0 MARCO_59_945897284-10 23 0.040215 hybrid +146_1-3 Q0 MARCO_59_946203164-10 24 0.030939 hybrid +146_1-3 Q0 MARCO_24_1263100353-23 25 0.010963 hybrid +146_1-3 Q0 MARCO_24_1263100353-17 26 0.009928 hybrid +146_1-3 Q0 MARCO_12_1743660916-21 27 0.006962 hybrid +146_1-3 Q0 MARCO_24_1263187707-8 28 -0.002214 hybrid +146_1-3 Q0 MARCO_42_1893270592-5 29 -0.003430 hybrid +146_1-3 Q0 MARCO_12_1745900270-1 30 -0.007364 hybrid +146_1-3 Q0 MARCO_24_1263100353-10 31 -0.011307 hybrid +146_1-3 Q0 MARCO_24_1263100353-2 32 -0.019187 hybrid +146_1-3 Q0 MARCO_12_1743660916-10 33 -0.020492 hybrid +146_1-3 Q0 MARCO_30_86858168-4 34 -0.020503 hybrid +146_1-3 Q0 MARCO_54_737332210-6 35 -0.027628 hybrid +146_1-3 Q0 MARCO_24_1263100353-8 36 -0.031577 hybrid +146_1-3 Q0 MARCO_45_1023789281-8 37 -0.032043 hybrid +146_1-3 Q0 MARCO_12_1742997671-58 38 -0.033039 hybrid +146_1-3 Q0 MARCO_51_1513126332-9 39 -0.034332 hybrid +146_1-3 Q0 MARCO_24_1263187707-7 40 -0.035592 hybrid +146_1-3 Q0 MARCO_12_1744179388-4 41 -0.040772 hybrid +146_1-3 Q0 MARCO_12_1742997671-27 42 -0.045753 hybrid +146_1-3 Q0 MARCO_12_1743660916-1 43 -0.047018 hybrid +146_1-3 Q0 MARCO_24_1263100353-9 44 -0.048736 hybrid +146_1-3 Q0 MARCO_12_1743660916-20 45 -0.049488 hybrid +146_1-3 Q0 MARCO_12_1743241647-2 46 -0.050273 hybrid +146_1-3 Q0 MARCO_24_1271381381-12 47 -0.057346 hybrid +146_1-3 Q0 MARCO_12_1744179388-6 48 -0.062712 hybrid +146_1-3 Q0 MARCO_12_1742771107-1 49 -0.067579 hybrid +146_1-3 Q0 MARCO_00_938352697-1 50 -0.070182 hybrid +146_1-3 Q0 KILT_22920117-6 51 -0.071869 hybrid +146_1-3 Q0 MARCO_00_938352697-2 52 -0.072374 hybrid +146_1-3 Q0 MARCO_12_1743660916-15 53 -0.075046 hybrid +146_1-3 Q0 MARCO_12_1743660916-6 54 -0.088604 hybrid +146_1-3 Q0 MARCO_12_1742890120-1 55 -0.090388 hybrid +146_1-3 Q0 MARCO_41_323307954-5 56 -0.090499 hybrid +146_1-3 Q0 MARCO_03_441428698-7 57 -0.090737 hybrid +146_1-3 Q0 MARCO_05_1347487814-5 58 -0.091661 hybrid +146_1-3 Q0 MARCO_12_1743852582-1 59 -0.099089 hybrid +146_1-3 Q0 MARCO_24_1271381381-3 60 -0.100810 hybrid +146_1-3 Q0 MARCO_03_442066020-2 61 -0.108812 hybrid +146_1-3 Q0 MARCO_30_86858168-6 62 -0.110621 hybrid +146_1-3 Q0 MARCO_24_1263187707-20 63 -0.111390 hybrid +146_1-3 Q0 MARCO_12_1743660916-7 64 -0.114328 hybrid +146_1-3 Q0 MARCO_12_1744179388-7 65 -0.116443 hybrid +146_1-3 Q0 MARCO_24_1263100353-19 66 -0.116634 hybrid +146_1-3 Q0 MARCO_12_1746050185-4 67 -0.121523 hybrid +146_1-3 Q0 MARCO_59_945897284-2 68 -0.122492 hybrid +146_1-3 Q0 MARCO_12_1455091765-7 69 -0.124978 hybrid +146_1-3 Q0 MARCO_36_1583826005-2 70 -0.126812 hybrid +146_1-3 Q0 MARCO_24_1271381381-6 71 -0.126859 hybrid +146_1-3 Q0 MARCO_12_1743241647-15 72 -0.127489 hybrid +146_1-3 Q0 MARCO_24_1263163606-16 73 -0.128041 hybrid +146_1-3 Q0 MARCO_30_1079167306-1 74 -0.128424 hybrid +146_1-3 Q0 MARCO_24_1263187707-14 75 -0.131634 hybrid +146_1-3 Q0 MARCO_59_945897284-5 76 -0.136640 hybrid +146_1-3 Q0 MARCO_24_1271381381-13 77 -0.137337 hybrid +146_1-3 Q0 MARCO_41_341226590-16 78 -0.137722 hybrid +146_1-3 Q0 MARCO_30_158949539-2 79 -0.138330 hybrid +146_1-3 Q0 MARCO_12_1744179388-9 80 -0.142742 hybrid +146_1-3 Q0 MARCO_12_1742997671-6 81 -0.144432 hybrid +146_1-3 Q0 MARCO_24_1263129398-10 82 -0.145181 hybrid +146_1-3 Q0 MARCO_15_841901053-38 83 -0.145483 hybrid +146_1-3 Q0 MARCO_59_945897284-4 84 -0.145961 hybrid +146_1-3 Q0 MARCO_34_1240237261-10 85 -0.147376 hybrid +146_1-3 Q0 MARCO_04_479082601-8 86 -0.148988 hybrid +146_1-3 Q0 MARCO_22_155033833-21 87 -0.149834 hybrid +146_1-3 Q0 MARCO_12_1455091765-5 88 -0.151982 hybrid +146_1-3 Q0 MARCO_24_4166896-9 89 -0.153586 hybrid +146_1-3 Q0 MARCO_59_945897284-7 90 -0.154654 hybrid +146_1-3 Q0 MARCO_24_1263100353-15 91 -0.157426 hybrid +146_1-3 Q0 MARCO_30_1079167306-4 92 -0.157964 hybrid +146_1-3 Q0 MARCO_15_1536998662-85 93 -0.159343 hybrid +146_1-3 Q0 MARCO_24_1263187707-3 94 -0.159401 hybrid +146_1-3 Q0 MARCO_42_1893321634-2 95 -0.161555 hybrid +146_1-3 Q0 MARCO_24_1272015878-9 96 -0.162992 hybrid +146_1-3 Q0 MARCO_40_170744467-6 97 -0.163935 hybrid +146_1-3 Q0 MARCO_24_1263100353-18 98 -0.167498 hybrid +146_1-3 Q0 MARCO_59_945897284-8 99 -0.168700 hybrid +146_1-3 Q0 MARCO_24_1263100353-1 100 -0.170958 hybrid +146_1-5 Q0 MARCO_03_442110904-3 1 0.500002 hybrid +146_1-5 Q0 MARCO_12_1743660916-24 2 0.417519 hybrid +146_1-5 Q0 MARCO_12_1743660916-4 3 0.346908 hybrid +146_1-5 Q0 MARCO_00_938352697-1 4 0.327484 hybrid +146_1-5 Q0 MARCO_12_1744179388-8 5 0.292746 hybrid +146_1-5 Q0 MARCO_03_442110904-1 6 0.273647 hybrid +146_1-5 Q0 MARCO_03_442110904-2 7 0.257067 hybrid +146_1-5 Q0 MARCO_59_945897284-10 8 0.213875 hybrid +146_1-5 Q0 MARCO_24_1263163606-4 9 0.202552 hybrid +146_1-5 Q0 MARCO_59_945897284-5 10 0.176357 hybrid +146_1-5 Q0 MARCO_24_1268476045-8 11 0.172062 hybrid +146_1-5 Q0 MARCO_12_1743660916-5 12 0.160587 hybrid +146_1-5 Q0 MARCO_12_1743843608-4 13 0.144047 hybrid +146_1-5 Q0 MARCO_03_442066020-2 14 0.142934 hybrid +146_1-5 Q0 MARCO_30_1079167306-2 15 0.137455 hybrid +146_1-5 Q0 MARCO_03_441428698-7 16 0.127399 hybrid +146_1-5 Q0 MARCO_12_1743193989-39 17 0.111419 hybrid +146_1-5 Q0 MARCO_12_1742801559-11 18 0.099830 hybrid +146_1-5 Q0 MARCO_24_1263187707-20 19 0.088995 hybrid +146_1-5 Q0 MARCO_12_1743660916-9 20 0.065883 hybrid +146_1-5 Q0 MARCO_59_946203164-10 21 0.063618 hybrid +146_1-5 Q0 MARCO_22_155033833-21 22 0.063118 hybrid +146_1-5 Q0 MARCO_24_1263187707-8 23 0.058850 hybrid +146_1-5 Q0 MARCO_02_822859511-4 24 0.053479 hybrid +146_1-5 Q0 MARCO_15_270085330-11 25 0.051619 hybrid +146_1-5 Q0 MARCO_24_1263187707-5 26 0.050185 hybrid +146_1-5 Q0 MARCO_34_323965995-6 27 0.049569 hybrid +146_1-5 Q0 MARCO_49_1856325404-12 28 0.049235 hybrid +146_1-5 Q0 MARCO_21_151002975-11 29 0.046975 hybrid +146_1-5 Q0 MARCO_59_945897284-4 30 0.045695 hybrid +146_1-5 Q0 MARCO_59_945897284-2 31 0.045143 hybrid +146_1-5 Q0 MARCO_12_1742418613-5 32 0.042028 hybrid +146_1-5 Q0 MARCO_49_445498041-2 33 0.039545 hybrid +146_1-5 Q0 MARCO_08_87485934-8 34 0.035433 hybrid +146_1-5 Q0 MARCO_30_1079167306-4 35 0.031825 hybrid +146_1-5 Q0 MARCO_12_1743660916-20 36 0.027848 hybrid +146_1-5 Q0 MARCO_12_1742604110-4 37 0.027268 hybrid +146_1-5 Q0 MARCO_12_1744150198-6 38 0.024828 hybrid +146_1-5 Q0 MARCO_12_1742862651-14 39 0.023235 hybrid +146_1-5 Q0 MARCO_12_1455091765-9 40 0.020219 hybrid +146_1-5 Q0 MARCO_42_1678757025-11 41 0.017796 hybrid +146_1-5 Q0 MARCO_42_1678757025-10 42 0.017557 hybrid +146_1-5 Q0 MARCO_12_1742862651-16 43 0.017287 hybrid +146_1-5 Q0 MARCO_24_1268476045-4 44 0.012968 hybrid +146_1-5 Q0 MARCO_50_1453179788-9 45 0.009194 hybrid +146_1-5 Q0 MARCO_49_445498041-3 46 0.009110 hybrid +146_1-5 Q0 MARCO_42_1893270592-5 47 0.008646 hybrid +146_1-5 Q0 MARCO_24_1263129398-10 48 0.007398 hybrid +146_1-5 Q0 MARCO_24_1268896634-15 49 0.004021 hybrid +146_1-5 Q0 MARCO_59_945897284-11 50 0.001577 hybrid +146_1-5 Q0 MARCO_12_1743660916-3 51 -0.003349 hybrid +146_1-5 Q0 MARCO_42_203894687-2 52 -0.005904 hybrid +146_1-5 Q0 MARCO_33_1315522594-21 53 -0.007938 hybrid +146_1-5 Q0 MARCO_12_1743241647-2 54 -0.008081 hybrid +146_1-5 Q0 MARCO_12_1743241647-35 55 -0.008908 hybrid +146_1-5 Q0 MARCO_12_1742862651-2 56 -0.011447 hybrid +146_1-5 Q0 MARCO_18_438706474-27 57 -0.018769 hybrid +146_1-5 Q0 KILT_22920117-5 58 -0.018940 hybrid +146_1-5 Q0 MARCO_12_1742801559-5 59 -0.020279 hybrid +146_1-5 Q0 MARCO_38_615257224-9 60 -0.025385 hybrid +146_1-5 Q0 MARCO_24_1267915622-2 61 -0.027081 hybrid +146_1-5 Q0 MARCO_24_1263187707-15 62 -0.028289 hybrid +146_1-5 Q0 MARCO_05_484369626-7 63 -0.030303 hybrid +146_1-5 Q0 MARCO_01_951262112-4 64 -0.033172 hybrid +146_1-5 Q0 MARCO_12_1742399053-7 65 -0.033398 hybrid +146_1-5 Q0 MARCO_12_1748924052-16 66 -0.034650 hybrid +146_1-5 Q0 MARCO_41_323685287-5 67 -0.034694 hybrid +146_1-5 Q0 MARCO_28_1146756527-5 68 -0.035123 hybrid +146_1-5 Q0 MARCO_12_1743852582-2 69 -0.036561 hybrid +146_1-5 Q0 MARCO_54_737332210-6 70 -0.037264 hybrid +146_1-5 Q0 MARCO_30_1079167306-1 71 -0.045656 hybrid +146_1-5 Q0 MARCO_22_155033833-19 72 -0.052410 hybrid +146_1-5 Q0 MARCO_12_1743241647-1 73 -0.053741 hybrid +146_1-5 Q0 MARCO_24_1614442741-11 74 -0.059832 hybrid +146_1-5 Q0 MARCO_59_945897284-8 75 -0.060440 hybrid +146_1-5 Q0 MARCO_24_1268476045-3 76 -0.063273 hybrid +146_1-5 Q0 MARCO_08_887707240-12 77 -0.063320 hybrid +146_1-5 Q0 MARCO_30_158949539-2 78 -0.067500 hybrid +146_1-5 Q0 MARCO_33_1315522594-16 79 -0.069689 hybrid +146_1-5 Q0 MARCO_30_86858168-4 80 -0.070623 hybrid +146_1-5 Q0 MARCO_24_1269008047-3 81 -0.076944 hybrid +146_1-5 Q0 MARCO_33_1315522594-3 82 -0.078788 hybrid +146_1-5 Q0 MARCO_24_1263100353-14 83 -0.079106 hybrid +146_1-5 Q0 MARCO_24_1271381381-9 84 -0.083555 hybrid +146_1-5 Q0 MARCO_12_1742997671-58 85 -0.084743 hybrid +146_1-5 Q0 MARCO_24_1268476045-2 86 -0.084978 hybrid +146_1-5 Q0 MARCO_12_1748924052-1 87 -0.084978 hybrid +146_1-5 Q0 MARCO_12_1746156878-37 88 -0.085924 hybrid +146_1-5 Q0 MARCO_31_1655357315-7 89 -0.090437 hybrid +146_1-5 Q0 MARCO_12_1743660916-13 90 -0.091923 hybrid +146_1-5 Q0 MARCO_12_1743660916-6 91 -0.095082 hybrid +146_1-5 Q0 MARCO_42_1758500388-22 92 -0.096961 hybrid +146_1-5 Q0 MARCO_24_1268476045-10 93 -0.097263 hybrid +146_1-5 Q0 MARCO_49_1856325404-9 94 -0.097410 hybrid +146_1-5 Q0 MARCO_12_1742838138-1 95 -0.097442 hybrid +146_1-5 Q0 MARCO_12_1742890120-5 96 -0.097509 hybrid +146_1-5 Q0 MARCO_25_1694941110-13 97 -0.097859 hybrid +146_1-5 Q0 MARCO_24_1129086151-5 98 -0.100429 hybrid +146_1-5 Q0 MARCO_42_1648703279-7 99 -0.100799 hybrid +146_1-5 Q0 MARCO_54_101080492-6 100 -0.102551 hybrid +146_1-7 Q0 MARCO_30_741929720-2 1 0.500000 hybrid +146_1-7 Q0 MARCO_02_822859511-3 2 0.421493 hybrid +146_1-7 Q0 MARCO_21_151215108-15 3 0.364582 hybrid +146_1-7 Q0 MARCO_12_1748441115-28 4 0.349646 hybrid +146_1-7 Q0 MARCO_07_1010222021-8 5 0.315982 hybrid +146_1-7 Q0 MARCO_25_1438986012-8 6 0.292900 hybrid +146_1-7 Q0 MARCO_12_1747375078-12 7 0.286549 hybrid +146_1-7 Q0 MARCO_12_1742679895-3 8 0.278716 hybrid +146_1-7 Q0 MARCO_12_1748441115-29 9 0.268064 hybrid +146_1-7 Q0 MARCO_12_1746627478-6 10 0.238743 hybrid +146_1-7 Q0 MARCO_20_25450151-8 11 0.231355 hybrid +146_1-7 Q0 MARCO_20_25450151-7 12 0.218973 hybrid +146_1-7 Q0 MARCO_20_21862058-8 13 0.217308 hybrid +146_1-7 Q0 MARCO_21_151059437-20 14 0.208125 hybrid +146_1-7 Q0 MARCO_24_1263071172-6 15 0.196092 hybrid +146_1-7 Q0 MARCO_15_1880443043-14 16 0.191044 hybrid +146_1-7 Q0 MARCO_24_1269618829-1 17 0.184634 hybrid +146_1-7 Q0 MARCO_21_151059437-6 18 0.183277 hybrid +146_1-7 Q0 MARCO_28_474423482-10 19 0.182418 hybrid +146_1-7 Q0 MARCO_32_374043744-2 20 0.181731 hybrid +146_1-7 Q0 MARCO_12_1748735394-23 21 0.180700 hybrid +146_1-7 Q0 MARCO_12_1168581743-13 22 0.171635 hybrid +146_1-7 Q0 MARCO_12_1748626937-25 23 0.166813 hybrid +146_1-7 Q0 MARCO_10_1200041593-20 24 0.160592 hybrid +146_1-7 Q0 MARCO_24_1263071172-4 25 0.156119 hybrid +146_1-7 Q0 MARCO_49_520512197-3 26 0.154105 hybrid +146_1-7 Q0 MARCO_12_1748563673-22 27 0.153009 hybrid +146_1-7 Q0 MARCO_30_741978665-2 28 0.148612 hybrid +146_1-7 Q0 MARCO_20_21862058-7 29 0.148281 hybrid +146_1-7 Q0 MARCO_24_1263071172-7 30 0.148204 hybrid +146_1-7 Q0 MARCO_33_1239956129-3 31 0.147321 hybrid +146_1-7 Q0 MARCO_21_151919715-9 32 0.141361 hybrid +146_1-7 Q0 MARCO_07_1002161466-2 33 0.140691 hybrid +146_1-7 Q0 MARCO_29_663198419-4 34 0.135288 hybrid +146_1-7 Q0 MARCO_02_1354556773-2 35 0.134210 hybrid +146_1-7 Q0 MARCO_21_151059437-5 36 0.131733 hybrid +146_1-7 Q0 MARCO_12_1748003490-3 37 0.131010 hybrid +146_1-7 Q0 MARCO_12_1748606616-3 38 0.128706 hybrid +146_1-7 Q0 MARCO_24_1263071172-22 39 0.125992 hybrid +146_1-7 Q0 MARCO_24_1269618829-9 40 0.122212 hybrid +146_1-7 Q0 MARCO_22_1421995912-2 41 0.121768 hybrid +146_1-7 Q0 MARCO_15_1880374433-4 42 0.119155 hybrid +146_1-7 Q0 MARCO_12_1748599322-4 43 0.114499 hybrid +146_1-7 Q0 MARCO_04_183817735-1 44 0.113326 hybrid +146_1-7 Q0 MARCO_20_26778100-8 45 0.112905 hybrid +146_1-7 Q0 MARCO_40_821222151-2 46 0.104528 hybrid +146_1-7 Q0 MARCO_47_1282262231-7 47 0.103840 hybrid +146_1-7 Q0 MARCO_12_1452501128-8 48 0.094651 hybrid +146_1-7 Q0 MARCO_56_1318806190-4 49 0.093490 hybrid +146_1-7 Q0 MARCO_20_25450151-10 50 0.085356 hybrid +146_1-7 Q0 MARCO_45_1264023980-5 51 0.077861 hybrid +146_1-7 Q0 MARCO_47_1331910150-12 52 0.077482 hybrid +146_1-7 Q0 MARCO_22_1055285088-12 53 0.073021 hybrid +146_1-7 Q0 MARCO_12_1748131709-18 54 0.070971 hybrid +146_1-7 Q0 MARCO_23_895996955-10 55 0.069229 hybrid +146_1-7 Q0 MARCO_29_1169408855-16 56 0.067671 hybrid +146_1-7 Q0 MARCO_12_1746627478-5 57 0.066942 hybrid +146_1-7 Q0 MARCO_25_1438998388-11 58 0.065591 hybrid +146_1-7 Q0 MARCO_12_1748626937-10 59 0.065585 hybrid +146_1-7 Q0 MARCO_24_1268686836-5 60 0.058257 hybrid +146_1-7 Q0 MARCO_21_151215108-56 61 0.057202 hybrid +146_1-7 Q0 MARCO_12_1749234006-13 62 0.055650 hybrid +146_1-7 Q0 MARCO_41_2032214545-5 63 0.049447 hybrid +146_1-7 Q0 MARCO_22_1421995912-1 64 0.048570 hybrid +146_1-7 Q0 MARCO_12_1748626937-22 65 0.048540 hybrid +146_1-7 Q0 MARCO_20_25450151-5 66 0.043706 hybrid +146_1-7 Q0 MARCO_12_1746627478-8 67 0.040791 hybrid +146_1-7 Q0 MARCO_00_1402658062-4 68 0.039375 hybrid +146_1-7 Q0 MARCO_22_1423765755-3 69 0.038391 hybrid +146_1-7 Q0 MARCO_12_1748626937-12 70 0.037206 hybrid +146_1-7 Q0 MARCO_32_374747917-2 71 0.033794 hybrid +146_1-7 Q0 MARCO_15_1880443043-3 72 0.030482 hybrid +146_1-7 Q0 MARCO_57_462584001-21 73 0.027911 hybrid +146_1-7 Q0 MARCO_12_1747365960-6 74 0.026507 hybrid +146_1-7 Q0 MARCO_33_1239943690-3 75 0.026465 hybrid +146_1-7 Q0 MARCO_21_599127390-2 76 0.026258 hybrid +146_1-7 Q0 MARCO_29_663256041-4 77 0.019113 hybrid +146_1-7 Q0 MARCO_12_1748626937-15 78 0.018923 hybrid +146_1-7 Q0 MARCO_12_1744324066-2 79 0.016251 hybrid +146_1-7 Q0 MARCO_25_1406868989-7 80 0.015262 hybrid +146_1-7 Q0 MARCO_33_1315258892-30 81 0.014989 hybrid +146_1-7 Q0 MARCO_15_1536998662-36 82 0.012465 hybrid +146_1-7 Q0 MARCO_12_1748283911-3 83 0.012335 hybrid +146_1-7 Q0 MARCO_12_1748441115-25 84 0.011766 hybrid +146_1-7 Q0 MARCO_37_834640896-31 85 0.009094 hybrid +146_1-7 Q0 MARCO_20_19860105-2 86 0.005717 hybrid +146_1-7 Q0 MARCO_12_1747375078-11 87 0.005617 hybrid +146_1-7 Q0 MARCO_05_594831902-5 88 0.000782 hybrid +146_1-7 Q0 MARCO_21_871445147-2 89 -0.004497 hybrid +146_1-7 Q0 MARCO_42_1893419560-2 90 -0.007400 hybrid +146_1-7 Q0 MARCO_22_1423765755-2 91 -0.007897 hybrid +146_1-7 Q0 MARCO_37_1251366856-16 92 -0.007980 hybrid +146_1-7 Q0 MARCO_12_1748599322-2 93 -0.008117 hybrid +146_1-7 Q0 MARCO_21_151852562-6 94 -0.008229 hybrid +146_1-7 Q0 MARCO_12_1160687657-7 95 -0.009586 hybrid +146_1-7 Q0 MARCO_15_1880443043-10 96 -0.012483 hybrid +146_1-7 Q0 MARCO_24_1269307600-6 97 -0.014243 hybrid +146_1-7 Q0 MARCO_55_127412441-4 98 -0.014906 hybrid +146_1-7 Q0 MARCO_32_374043744-3 99 -0.016192 hybrid +146_1-7 Q0 MARCO_48_1593576924-12 100 -0.016773 hybrid +146_1-9 Q0 MARCO_12_1744392103-6 1 0.500000 hybrid +146_1-9 Q0 MARCO_12_1168581743-8 2 0.479494 hybrid +146_1-9 Q0 MARCO_12_1744392103-2 3 0.477134 hybrid +146_1-9 Q0 MARCO_12_1744392103-1 4 0.459082 hybrid +146_1-9 Q0 MARCO_12_1748283911-1 5 0.433532 hybrid +146_1-9 Q0 MARCO_12_1748283911-3 6 0.399473 hybrid +146_1-9 Q0 MARCO_24_1263071172-22 7 0.397913 hybrid +146_1-9 Q0 MARCO_07_1002161466-2 8 0.390480 hybrid +146_1-9 Q0 MARCO_27_1110605614-1 9 0.350782 hybrid +146_1-9 Q0 MARCO_12_1168581743-4 10 0.349012 hybrid +146_1-9 Q0 MARCO_12_1748606616-3 11 0.301386 hybrid +146_1-9 Q0 MARCO_12_1748283911-19 12 0.290758 hybrid +146_1-9 Q0 MARCO_12_1748606616-2 13 0.287028 hybrid +146_1-9 Q0 MARCO_12_1168581743-13 14 0.273571 hybrid +146_1-9 Q0 MARCO_10_444731772-8 15 0.272431 hybrid +146_1-9 Q0 MARCO_33_1315090129-11 16 0.261478 hybrid +146_1-9 Q0 MARCO_12_1746730961-1 17 0.227414 hybrid +146_1-9 Q0 MARCO_24_1269440766-1 18 0.227359 hybrid +146_1-9 Q0 MARCO_24_1268172536-20 19 0.211087 hybrid +146_1-9 Q0 MARCO_50_1453179788-41 20 0.202289 hybrid +146_1-9 Q0 MARCO_24_1263071172-19 21 0.184007 hybrid +146_1-9 Q0 MARCO_12_1748283911-5 22 0.181732 hybrid +146_1-9 Q0 MARCO_12_1745140573-6 23 0.175733 hybrid +146_1-9 Q0 MARCO_29_663311583-11 24 0.175068 hybrid +146_1-9 Q0 MARCO_30_86811266-9 25 0.170624 hybrid +146_1-9 Q0 MARCO_15_1880443043-4 26 0.154282 hybrid +146_1-9 Q0 MARCO_12_1744392103-5 27 0.153312 hybrid +146_1-9 Q0 MARCO_15_1880443043-3 28 0.150203 hybrid +146_1-9 Q0 MARCO_20_26778100-1 29 0.135916 hybrid +146_1-9 Q0 MARCO_12_1746795079-10 30 0.128727 hybrid +146_1-9 Q0 MARCO_12_1168581743-2 31 0.126957 hybrid +146_1-9 Q0 MARCO_54_645339007-1 32 0.126362 hybrid +146_1-9 Q0 MARCO_12_1744532862-5 33 0.123508 hybrid +146_1-9 Q0 MARCO_47_1282262231-1 34 0.121888 hybrid +146_1-9 Q0 MARCO_12_1748441115-29 35 0.103371 hybrid +146_1-9 Q0 MARCO_12_1748485783-1 36 0.102687 hybrid +146_1-9 Q0 MARCO_11_754522594-8 37 0.099032 hybrid +146_1-9 Q0 MARCO_47_1282262231-5 38 0.098377 hybrid +146_1-9 Q0 MARCO_24_1267968743-2 39 0.097512 hybrid +146_1-9 Q0 MARCO_20_26778100-20 40 0.093148 hybrid +146_1-9 Q0 MARCO_12_1168581743-1 41 0.088619 hybrid +146_1-9 Q0 MARCO_47_1282262231-7 42 0.086249 hybrid +146_1-9 Q0 MARCO_24_1263071172-12 43 0.084265 hybrid +146_1-9 Q0 MARCO_27_913528998-15 44 0.084060 hybrid +146_1-9 Q0 MARCO_30_1376171482-23 45 0.082640 hybrid +146_1-9 Q0 MARCO_24_1269618829-9 46 0.079816 hybrid +146_1-9 Q0 MARCO_15_1880443043-14 47 0.063829 hybrid +146_1-9 Q0 MARCO_20_26778100-8 48 0.061539 hybrid +146_1-9 Q0 MARCO_12_1168581743-3 49 0.061264 hybrid +146_1-9 Q0 MARCO_12_1746795079-1 50 0.053730 hybrid +146_1-9 Q0 MARCO_20_26305446-40 51 0.050961 hybrid +146_1-9 Q0 MARCO_24_1272117402-5 52 0.047746 hybrid +146_1-9 Q0 MARCO_42_1893419560-10 53 0.044852 hybrid +146_1-9 Q0 MARCO_24_1267968743-1 54 0.044207 hybrid +146_1-9 Q0 MARCO_12_1168581743-5 55 0.042832 hybrid +146_1-9 Q0 MARCO_36_948845584-7 56 0.042637 hybrid +146_1-9 Q0 MARCO_24_1267968743-3 57 0.032479 hybrid +146_1-9 Q0 MARCO_12_1160687657-7 58 0.026490 hybrid +146_1-9 Q0 MARCO_30_741965646-3 59 0.022631 hybrid +146_1-9 Q0 MARCO_12_1747476691-2 60 0.015927 hybrid +146_1-9 Q0 MARCO_32_598957359-12 61 0.015392 hybrid +146_1-9 Q0 MARCO_12_1168581743-9 62 0.014862 hybrid +146_1-9 Q0 MARCO_12_1748283911-2 63 0.013158 hybrid +146_1-9 Q0 MARCO_25_520993524-1 64 0.009308 hybrid +146_1-9 Q0 MARCO_44_37969956-1 65 0.007744 hybrid +146_1-9 Q0 MARCO_24_1269440766-2 66 0.002560 hybrid +146_1-9 Q0 MARCO_12_1743580126-1 67 -0.002869 hybrid +146_1-9 Q0 MARCO_12_1748441115-17 68 -0.004154 hybrid +146_1-9 Q0 MARCO_12_1745794915-9 69 -0.006944 hybrid +146_1-9 Q0 MARCO_42_1893419560-2 70 -0.010048 hybrid +146_1-9 Q0 MARCO_24_1271409424-1 71 -0.013158 hybrid +146_1-9 Q0 MARCO_24_1270531156-13 72 -0.013343 hybrid +146_1-9 Q0 MARCO_12_1744392103-3 73 -0.013892 hybrid +146_1-9 Q0 MARCO_12_1745187825-6 74 -0.014207 hybrid +146_1-9 Q0 MARCO_12_1743986790-6 75 -0.016287 hybrid +146_1-9 Q0 MARCO_49_1856325404-7 76 -0.019471 hybrid +146_1-9 Q0 MARCO_09_354321730-4 77 -0.021786 hybrid +146_1-9 Q0 MARCO_12_1748412905-15 78 -0.021911 hybrid +146_1-9 Q0 MARCO_26_1058151032-1 79 -0.022191 hybrid +146_1-9 Q0 MARCO_33_1239943690-2 80 -0.026895 hybrid +146_1-9 Q0 MARCO_30_1505448144-1 81 -0.027125 hybrid +146_1-9 Q0 MARCO_20_26648209-4 82 -0.029280 hybrid +146_1-9 Q0 MARCO_15_1880443043-1 83 -0.032344 hybrid +146_1-9 Q0 MARCO_12_1744179388-8 84 -0.032864 hybrid +146_1-9 Q0 MARCO_13_704706311-7 85 -0.036728 hybrid +146_1-9 Q0 MARCO_11_875514638-1 86 -0.036823 hybrid +146_1-9 Q0 MARCO_29_663256041-2 87 -0.037303 hybrid +146_1-9 Q0 MARCO_25_1694846959-1 88 -0.039958 hybrid +146_1-9 Q0 MARCO_12_1748101342-18 89 -0.043102 hybrid +146_1-9 Q0 MARCO_07_259744883-1 90 -0.044147 hybrid +146_1-9 Q0 MARCO_12_1746730961-6 91 -0.044762 hybrid +146_1-9 Q0 MARCO_55_1347277040-3 92 -0.046977 hybrid +146_1-9 Q0 MARCO_30_86823108-1 93 -0.051186 hybrid +146_1-9 Q0 MARCO_28_474423482-4 94 -0.053375 hybrid +146_1-9 Q0 MARCO_37_835539785-1 95 -0.053715 hybrid +146_1-9 Q0 MARCO_12_1746627478-8 96 -0.055490 hybrid +146_1-9 Q0 MARCO_37_834622528-9 97 -0.055930 hybrid +146_1-9 Q0 MARCO_15_1880443043-9 98 -0.058315 hybrid +146_1-9 Q0 MARCO_21_151215108-15 99 -0.059529 hybrid +146_1-9 Q0 MARCO_12_1748283911-18 100 -0.064428 hybrid +147_1-1 Q0 MARCO_36_888487863-6 1 0.500000 hybrid +147_1-1 Q0 MARCO_44_33070735-12 2 0.369492 hybrid +147_1-1 Q0 MARCO_44_35079726-11 3 0.358175 hybrid +147_1-1 Q0 MARCO_44_35079726-8 4 0.334651 hybrid +147_1-1 Q0 MARCO_44_32790856-7 5 0.315130 hybrid +147_1-1 Q0 MARCO_44_32772068-7 6 0.315121 hybrid +147_1-1 Q0 MARCO_56_450306784-1 7 0.300783 hybrid +147_1-1 Q0 KILT_47069739-32 8 0.237191 hybrid +147_1-1 Q0 MARCO_44_32772068-12 9 0.230889 hybrid +147_1-1 Q0 MARCO_44_32790856-12 10 0.230889 hybrid +147_1-1 Q0 MARCO_44_32772068-3 11 0.224338 hybrid +147_1-1 Q0 MARCO_44_35079726-12 12 0.213252 hybrid +147_1-1 Q0 MARCO_44_32790856-3 13 0.201233 hybrid +147_1-1 Q0 MARCO_44_33070735-15 14 0.175632 hybrid +147_1-1 Q0 MARCO_44_33070735-17 15 0.160446 hybrid +147_1-1 Q0 MARCO_44_35079726-3 16 0.156151 hybrid +147_1-1 Q0 MARCO_44_32772068-14 17 0.151974 hybrid +147_1-1 Q0 MARCO_44_35079726-5 18 0.149838 hybrid +147_1-1 Q0 MARCO_44_32790856-13 19 0.142262 hybrid +147_1-1 Q0 MARCO_44_32772068-13 20 0.142262 hybrid +147_1-1 Q0 MARCO_07_258203158-7 21 0.136862 hybrid +147_1-1 Q0 MARCO_44_33070735-16 22 0.134820 hybrid +147_1-1 Q0 MARCO_44_33070735-9 23 0.129999 hybrid +147_1-1 Q0 MARCO_44_35079726-13 24 0.125119 hybrid +147_1-1 Q0 MARCO_35_1384648142-14 25 0.113091 hybrid +147_1-1 Q0 MARCO_07_1580559307-11 26 0.107115 hybrid +147_1-1 Q0 MARCO_44_33070735-10 27 0.095895 hybrid +147_1-1 Q0 MARCO_17_2942368905-19 28 0.092885 hybrid +147_1-1 Q0 MARCO_42_1105109712-3 29 0.081936 hybrid +147_1-1 Q0 MARCO_44_35079726-6 30 0.070180 hybrid +147_1-1 Q0 MARCO_00_1161106414-2 31 0.070026 hybrid +147_1-1 Q0 MARCO_44_610674293-1 32 0.068841 hybrid +147_1-1 Q0 MARCO_24_1950643919-18 33 0.067353 hybrid +147_1-1 Q0 MARCO_44_32790856-6 34 0.050724 hybrid +147_1-1 Q0 MARCO_44_32772068-6 35 0.050724 hybrid +147_1-1 Q0 MARCO_01_822270056-8 36 0.041498 hybrid +147_1-1 Q0 MARCO_34_1361534923-1 37 0.040273 hybrid +147_1-1 Q0 MARCO_17_4189131090-2 38 0.037429 hybrid +147_1-1 Q0 MARCO_44_32790856-14 39 0.026152 hybrid +147_1-1 Q0 MARCO_44_33070735-14 40 0.024784 hybrid +147_1-1 Q0 MARCO_12_1866611257-11 41 0.023622 hybrid +147_1-1 Q0 MARCO_40_174893863-1 42 0.022508 hybrid +147_1-1 Q0 MARCO_23_1085604106-1 43 0.021965 hybrid +147_1-1 Q0 MARCO_35_1382138495-1 44 0.021086 hybrid +147_1-1 Q0 MARCO_46_629689633-1 45 0.020549 hybrid +147_1-1 Q0 MARCO_44_32790856-9 46 0.017913 hybrid +147_1-1 Q0 MARCO_44_32772068-9 47 0.017913 hybrid +147_1-1 Q0 MARCO_56_1313781070-6 48 0.016240 hybrid +147_1-1 Q0 MARCO_43_1019176089-17 49 0.009752 hybrid +147_1-1 Q0 MARCO_25_1425970494-13 50 0.008698 hybrid +147_1-1 Q0 MARCO_44_32772068-4 51 0.006317 hybrid +147_1-1 Q0 MARCO_44_32790856-4 52 0.006317 hybrid +147_1-1 Q0 MARCO_40_175150328-8 53 0.005511 hybrid +147_1-1 Q0 MARCO_44_32790856-10 54 0.004977 hybrid +147_1-1 Q0 MARCO_44_32772068-10 55 0.004974 hybrid +147_1-1 Q0 MARCO_44_33070735-11 56 0.001968 hybrid +147_1-1 Q0 MARCO_18_3756735521-34 57 0.001559 hybrid +147_1-1 Q0 MARCO_17_1723309964-108 58 -0.003201 hybrid +147_1-1 Q0 KILT_41677925-58 59 -0.005034 hybrid +147_1-1 Q0 MARCO_44_35079726-4 60 -0.010434 hybrid +147_1-1 Q0 MARCO_40_175608980-6 61 -0.011371 hybrid +147_1-1 Q0 MARCO_44_32790856-8 62 -0.015872 hybrid +147_1-1 Q0 MARCO_44_32772068-8 63 -0.015872 hybrid +147_1-1 Q0 MARCO_46_629689633-3 64 -0.016497 hybrid +147_1-1 Q0 MARCO_56_450306784-18 65 -0.021611 hybrid +147_1-1 Q0 MARCO_44_610674293-9 66 -0.023319 hybrid +147_1-1 Q0 MARCO_41_116162463-2 67 -0.027528 hybrid +147_1-1 Q0 MARCO_44_33070735-3 68 -0.042295 hybrid +147_1-1 Q0 MARCO_44_33070735-7 69 -0.042300 hybrid +147_1-1 Q0 MARCO_25_1426460659-1 70 -0.053546 hybrid +147_1-1 Q0 MARCO_25_1425970494-1 71 -0.054742 hybrid +147_1-1 Q0 MARCO_44_608944968-2 72 -0.056561 hybrid +147_1-1 Q0 KILT_47069739-30 73 -0.060705 hybrid +147_1-1 Q0 MARCO_24_672550-2 74 -0.062718 hybrid +147_1-1 Q0 MARCO_00_624846471-2 75 -0.063184 hybrid +147_1-1 Q0 MARCO_44_33070735-8 76 -0.064457 hybrid +147_1-1 Q0 MARCO_52_1210895525-1 77 -0.065202 hybrid +147_1-1 Q0 MARCO_54_730553949-2 78 -0.066433 hybrid +147_1-1 Q0 MARCO_18_2419479428-32 79 -0.066742 hybrid +147_1-1 Q0 MARCO_00_1161868671-4 80 -0.071094 hybrid +147_1-1 Q0 MARCO_15_107130945-1 81 -0.072907 hybrid +147_1-1 Q0 MARCO_35_1383547965-1 82 -0.074572 hybrid +147_1-1 Q0 MARCO_50_2498449365-18 83 -0.077336 hybrid +147_1-1 Q0 MARCO_00_1161498748-4 84 -0.079446 hybrid +147_1-1 Q0 MARCO_07_1580559307-4 85 -0.079583 hybrid +147_1-1 Q0 MARCO_25_1425970494-21 86 -0.080426 hybrid +147_1-1 Q0 MARCO_50_1452263860-21 87 -0.083787 hybrid +147_1-1 Q0 MARCO_56_450306784-4 88 -0.084458 hybrid +147_1-1 Q0 MARCO_46_11178366-8 89 -0.085640 hybrid +147_1-1 Q0 MARCO_36_837245354-4 90 -0.087331 hybrid +147_1-1 Q0 MARCO_12_1866611257-14 91 -0.091117 hybrid +147_1-1 Q0 MARCO_44_609203686-2 92 -0.092511 hybrid +147_1-1 Q0 MARCO_44_35079726-7 93 -0.092588 hybrid +147_1-1 Q0 MARCO_00_570971400-7 94 -0.097274 hybrid +147_1-1 Q0 MARCO_41_118244129-5 95 -0.100829 hybrid +147_1-1 Q0 MARCO_44_35079726-10 96 -0.110755 hybrid +147_1-1 Q0 MARCO_36_896744753-9 97 -0.111241 hybrid +147_1-1 Q0 MARCO_01_694088226-9 98 -0.111595 hybrid +147_1-1 Q0 MARCO_57_1402930186-1 99 -0.118143 hybrid +147_1-1 Q0 MARCO_56_1313964447-23 100 -0.118514 hybrid +147_1-11 Q0 MARCO_44_610655812-1 1 0.500000 hybrid +147_1-11 Q0 MARCO_00_1161868671-2 2 0.467631 hybrid +147_1-11 Q0 MARCO_00_1161868671-1 3 0.413545 hybrid +147_1-11 Q0 MARCO_27_1434420878-4 4 0.371562 hybrid +147_1-11 Q0 MARCO_18_2419479428-32 5 0.344996 hybrid +147_1-11 Q0 KILT_36658495-4 6 0.344383 hybrid +147_1-11 Q0 MARCO_35_1383547965-11 7 0.329684 hybrid +147_1-11 Q0 MARCO_44_609706399-2 8 0.318207 hybrid +147_1-11 Q0 MARCO_18_1803225057-15 9 0.300113 hybrid +147_1-11 Q0 MARCO_18_3756735521-62 10 0.299722 hybrid +147_1-11 Q0 MARCO_18_3756735521-74 11 0.294058 hybrid +147_1-11 Q0 MARCO_41_114937070-5 12 0.257859 hybrid +147_1-11 Q0 MARCO_00_1161498748-4 13 0.250089 hybrid +147_1-11 Q0 MARCO_44_609464324-3 14 0.242982 hybrid +147_1-11 Q0 MARCO_44_610097902-1 15 0.237960 hybrid +147_1-11 Q0 MARCO_27_1431814765-11 16 0.237189 hybrid +147_1-11 Q0 MARCO_50_1506711576-37 17 0.221259 hybrid +147_1-11 Q0 KILT_11951081-5 18 0.221244 hybrid +147_1-11 Q0 MARCO_44_609464324-2 19 0.217265 hybrid +147_1-11 Q0 MARCO_35_1383539023-4 20 0.199190 hybrid +147_1-11 Q0 MARCO_24_818625-2 21 0.197441 hybrid +147_1-11 Q0 MARCO_35_1383547965-1 22 0.188015 hybrid +147_1-11 Q0 KILT_36658495-2 23 0.168141 hybrid +147_1-11 Q0 MARCO_57_1402930186-1 24 0.156037 hybrid +147_1-11 Q0 MARCO_14_791736021-10 25 0.150076 hybrid +147_1-11 Q0 MARCO_44_609706399-6 26 0.147209 hybrid +147_1-11 Q0 MARCO_41_115295208-1 27 0.138194 hybrid +147_1-11 Q0 MARCO_16_4111504380-1 28 0.137077 hybrid +147_1-11 Q0 MARCO_25_1426460659-1 29 0.136044 hybrid +147_1-11 Q0 MARCO_17_3113865338-31 30 0.130370 hybrid +147_1-11 Q0 MARCO_41_121006452-1 31 0.129199 hybrid +147_1-11 Q0 MARCO_24_652996254-1 32 0.113229 hybrid +147_1-11 Q0 KILT_5727147-5 33 0.107847 hybrid +147_1-11 Q0 MARCO_41_115182135-1 34 0.107199 hybrid +147_1-11 Q0 MARCO_41_114937070-6 35 0.104441 hybrid +147_1-11 Q0 MARCO_10_551602548-31 36 0.101219 hybrid +147_1-11 Q0 MARCO_10_551602548-25 37 0.097448 hybrid +147_1-11 Q0 MARCO_19_562425557-19 38 0.085828 hybrid +147_1-11 Q0 MARCO_00_1161106414-2 39 0.082234 hybrid +147_1-11 Q0 MARCO_50_1424129020-98 40 0.075038 hybrid +147_1-11 Q0 MARCO_17_3113865338-27 41 0.070501 hybrid +147_1-11 Q0 MARCO_16_4112300102-19 42 0.067234 hybrid +147_1-11 Q0 KILT_47080851-1 43 0.066117 hybrid +147_1-11 Q0 MARCO_00_1161868671-4 44 0.065746 hybrid +147_1-11 Q0 KILT_54114309-8 45 0.063626 hybrid +147_1-11 Q0 MARCO_16_1898607786-45 46 0.063374 hybrid +147_1-11 Q0 MARCO_00_1161518643-3 47 0.058510 hybrid +147_1-11 Q0 MARCO_00_624846471-4 48 0.054887 hybrid +147_1-11 Q0 MARCO_44_609433579-2 49 0.046702 hybrid +147_1-11 Q0 KILT_41677925-17 50 0.042719 hybrid +147_1-11 Q0 MARCO_15_108462915-1 51 0.033639 hybrid +147_1-11 Q0 MARCO_31_292399071-1 52 0.031682 hybrid +147_1-11 Q0 KILT_36658495-3 53 0.023522 hybrid +147_1-11 Q0 MARCO_35_1381752575-1 54 0.022256 hybrid +147_1-11 Q0 MARCO_14_790593007-26 55 0.017358 hybrid +147_1-11 Q0 MARCO_12_1866611257-9 56 0.015475 hybrid +147_1-11 Q0 MARCO_19_150522950-28 57 0.015080 hybrid +147_1-11 Q0 MARCO_19_150522950-26 58 0.015080 hybrid +147_1-11 Q0 MARCO_19_150522950-24 59 0.015070 hybrid +147_1-11 Q0 MARCO_19_160112057-4 60 0.011338 hybrid +147_1-11 Q0 KILT_36860986-46 61 0.009317 hybrid +147_1-11 Q0 MARCO_41_114937070-1 62 0.008284 hybrid +147_1-11 Q0 MARCO_44_610655812-4 63 0.006297 hybrid +147_1-11 Q0 MARCO_41_114937070-2 64 0.005847 hybrid +147_1-11 Q0 MARCO_35_1385396165-1 65 0.002896 hybrid +147_1-11 Q0 KILT_35351355-7 66 -0.000346 hybrid +147_1-11 Q0 MARCO_34_1361534923-1 67 -0.003139 hybrid +147_1-11 Q0 MARCO_41_121006452-2 68 -0.004789 hybrid +147_1-11 Q0 MARCO_41_121006452-4 69 -0.004789 hybrid +147_1-11 Q0 MARCO_41_114937070-4 70 -0.009534 hybrid +147_1-11 Q0 MARCO_14_785840311-7 71 -0.010093 hybrid +147_1-11 Q0 MARCO_19_160112057-3 72 -0.014833 hybrid +147_1-11 Q0 MARCO_27_1511572274-2 73 -0.015065 hybrid +147_1-11 Q0 MARCO_00_1161555318-7 74 -0.024703 hybrid +147_1-11 Q0 MARCO_10_545065829-12 75 -0.025341 hybrid +147_1-11 Q0 MARCO_16_4112078153-53 76 -0.025514 hybrid +147_1-11 Q0 MARCO_44_610495158-3 77 -0.026477 hybrid +147_1-11 Q0 KILT_1043595-1 78 -0.028410 hybrid +147_1-11 Q0 MARCO_44_610655812-15 79 -0.037573 hybrid +147_1-11 Q0 MARCO_44_32908000-9 80 -0.044592 hybrid +147_1-11 Q0 KILT_4744869-1 81 -0.051818 hybrid +147_1-11 Q0 MARCO_44_609452746-2 82 -0.053790 hybrid +147_1-11 Q0 MARCO_41_115465033-11 83 -0.054457 hybrid +147_1-11 Q0 MARCO_24_137345103-2 84 -0.054838 hybrid +147_1-11 Q0 MARCO_00_1161183399-4 85 -0.055288 hybrid +147_1-11 Q0 MARCO_19_160112057-7 86 -0.055910 hybrid +147_1-11 Q0 KILT_22918413-30 87 -0.056360 hybrid +147_1-11 Q0 KILT_36658495-1 88 -0.056662 hybrid +147_1-11 Q0 MARCO_10_551602548-1 89 -0.059588 hybrid +147_1-11 Q0 KILT_38382468-2 90 -0.059934 hybrid +147_1-11 Q0 MARCO_49_1323862759-1 91 -0.063028 hybrid +147_1-11 Q0 MARCO_15_108462915-2 92 -0.069992 hybrid +147_1-11 Q0 MARCO_06_1901926809-3 93 -0.071010 hybrid +147_1-11 Q0 MARCO_27_209363489-18 94 -0.072077 hybrid +147_1-11 Q0 MARCO_17_4126007407-1 95 -0.072389 hybrid +147_1-11 Q0 KILT_38382468-28 96 -0.072982 hybrid +147_1-11 Q0 MARCO_52_1611396857-7 97 -0.079061 hybrid +147_1-11 Q0 MARCO_44_609464324-7 98 -0.082294 hybrid +147_1-11 Q0 MARCO_15_107455358-32 99 -0.083678 hybrid +147_1-11 Q0 MARCO_43_863020743-4 100 -0.084226 hybrid +147_1-13 Q0 MARCO_23_244648306-4 1 0.500000 hybrid +147_1-13 Q0 MARCO_35_1381811664-1 2 0.478399 hybrid +147_1-13 Q0 MARCO_51_1242871660-69 3 0.457737 hybrid +147_1-13 Q0 MARCO_54_1522858487-10 4 0.430907 hybrid +147_1-13 Q0 MARCO_00_1006614948-3 5 0.417743 hybrid +147_1-13 Q0 MARCO_50_1607961702-5 6 0.417614 hybrid +147_1-13 Q0 KILT_12210793-2 7 0.395186 hybrid +147_1-13 Q0 KILT_12210793-7 8 0.384113 hybrid +147_1-13 Q0 MARCO_33_485936101-22 9 0.365841 hybrid +147_1-13 Q0 MARCO_55_820091751-7 10 0.357760 hybrid +147_1-13 Q0 MARCO_51_1242871660-39 11 0.305675 hybrid +147_1-13 Q0 MARCO_17_3094322423-9 12 0.292364 hybrid +147_1-13 Q0 MARCO_40_1277533248-6 13 0.288808 hybrid +147_1-13 Q0 MARCO_33_485936101-7 14 0.284179 hybrid +147_1-13 Q0 KILT_12210793-3 15 0.276502 hybrid +147_1-13 Q0 MARCO_18_2389435848-7 16 0.272241 hybrid +147_1-13 Q0 MARCO_35_1385623774-3 17 0.258434 hybrid +147_1-13 Q0 MARCO_12_147135613-134 18 0.251959 hybrid +147_1-13 Q0 MARCO_41_1231939664-79 19 0.232038 hybrid +147_1-13 Q0 MARCO_14_1615338299-3 20 0.212872 hybrid +147_1-13 Q0 MARCO_51_1242871660-58 21 0.211830 hybrid +147_1-13 Q0 MARCO_51_1242871660-49 22 0.204785 hybrid +147_1-13 Q0 KILT_36658495-4 23 0.202443 hybrid +147_1-13 Q0 MARCO_13_401512644-2 24 0.187501 hybrid +147_1-13 Q0 MARCO_13_23118636-13 25 0.184680 hybrid +147_1-13 Q0 MARCO_16_110104570-14 26 0.182755 hybrid +147_1-13 Q0 MARCO_33_485936101-2 27 0.172914 hybrid +147_1-13 Q0 MARCO_28_555051138-2 28 0.168990 hybrid +147_1-13 Q0 MARCO_17_3094322423-17 29 0.167347 hybrid +147_1-13 Q0 MARCO_58_1587094730-5 30 0.154312 hybrid +147_1-13 Q0 MARCO_00_719738480-3 31 0.151639 hybrid +147_1-13 Q0 MARCO_30_123359247-2 32 0.148040 hybrid +147_1-13 Q0 MARCO_17_3094322423-11 33 0.144269 hybrid +147_1-13 Q0 MARCO_04_324560370-4 34 0.140480 hybrid +147_1-13 Q0 MARCO_13_323346002-2 35 0.136415 hybrid +147_1-13 Q0 MARCO_16_110104570-15 36 0.132528 hybrid +147_1-13 Q0 MARCO_19_160112057-3 37 0.126954 hybrid +147_1-13 Q0 MARCO_51_1242871660-75 38 0.125182 hybrid +147_1-13 Q0 MARCO_50_1446542803-26 39 0.117573 hybrid +147_1-13 Q0 MARCO_50_1506561565-24 40 0.114747 hybrid +147_1-13 Q0 MARCO_33_742522995-3 41 0.114391 hybrid +147_1-13 Q0 MARCO_02_869268468-6 42 0.107003 hybrid +147_1-13 Q0 MARCO_28_422948117-4 43 0.101178 hybrid +147_1-13 Q0 MARCO_13_401503891-3 44 0.098254 hybrid +147_1-13 Q0 MARCO_51_1242871660-6 45 0.095752 hybrid +147_1-13 Q0 MARCO_33_485936101-23 46 0.095593 hybrid +147_1-13 Q0 MARCO_55_820091751-60 47 0.089216 hybrid +147_1-13 Q0 MARCO_51_1242871660-40 48 0.085004 hybrid +147_1-13 Q0 MARCO_41_2172210083-2 49 0.082012 hybrid +147_1-13 Q0 MARCO_15_311086668-2 50 0.080614 hybrid +147_1-13 Q0 MARCO_54_7592322-4 51 0.079946 hybrid +147_1-13 Q0 MARCO_04_324560370-5 52 0.077340 hybrid +147_1-13 Q0 MARCO_50_1446542803-6 53 0.074366 hybrid +147_1-13 Q0 MARCO_01_694088226-9 54 0.068854 hybrid +147_1-13 Q0 MARCO_29_801614408-3 55 0.068045 hybrid +147_1-13 Q0 MARCO_46_706965329-9 56 0.064004 hybrid +147_1-13 Q0 MARCO_33_485936101-36 57 0.062931 hybrid +147_1-13 Q0 MARCO_46_388273453-2 58 0.062472 hybrid +147_1-13 Q0 MARCO_20_658999981-5 59 0.062441 hybrid +147_1-13 Q0 MARCO_17_3094322423-18 60 0.061386 hybrid +147_1-13 Q0 KILT_56214450-23 61 0.060706 hybrid +147_1-13 Q0 MARCO_49_219905779-4 62 0.055482 hybrid +147_1-13 Q0 KILT_12210793-4 63 0.050804 hybrid +147_1-13 Q0 MARCO_54_1522858487-4 64 0.048180 hybrid +147_1-13 Q0 MARCO_33_485936101-6 65 0.047407 hybrid +147_1-13 Q0 MARCO_12_1866611257-9 66 0.046720 hybrid +147_1-13 Q0 MARCO_35_1382561099-4 67 0.046230 hybrid +147_1-13 Q0 MARCO_51_1242871660-38 68 0.044955 hybrid +147_1-13 Q0 MARCO_50_1607961702-20 69 0.044605 hybrid +147_1-13 Q0 KILT_12210793-5 70 0.039087 hybrid +147_1-13 Q0 MARCO_04_324560370-13 71 0.036542 hybrid +147_1-13 Q0 MARCO_40_1186633117-2 72 0.034065 hybrid +147_1-13 Q0 MARCO_30_123411998-2 73 0.033526 hybrid +147_1-13 Q0 MARCO_15_311086668-20 74 0.032612 hybrid +147_1-13 Q0 KILT_36658495-2 75 0.031736 hybrid +147_1-13 Q0 MARCO_13_323346002-1 76 0.027536 hybrid +147_1-13 Q0 MARCO_14_785387155-1 77 0.024317 hybrid +147_1-13 Q0 MARCO_33_485936101-17 78 0.024139 hybrid +147_1-13 Q0 MARCO_53_564162347-11 79 0.023299 hybrid +147_1-13 Q0 MARCO_50_1665743731-20 80 0.019602 hybrid +147_1-13 Q0 MARCO_04_1029349361-5 81 0.018737 hybrid +147_1-13 Q0 MARCO_17_3094322423-4 82 0.017045 hybrid +147_1-13 Q0 MARCO_13_401534225-1 83 0.012158 hybrid +147_1-13 Q0 MARCO_50_1446542803-7 84 0.011944 hybrid +147_1-13 Q0 MARCO_16_1898607786-3 85 0.008896 hybrid +147_1-13 Q0 MARCO_35_1382037145-1 86 0.003360 hybrid +147_1-13 Q0 MARCO_18_1803225057-15 87 0.003090 hybrid +147_1-13 Q0 MARCO_50_1607961702-11 88 0.002336 hybrid +147_1-13 Q0 MARCO_13_1155480592-7 89 0.000110 hybrid +147_1-13 Q0 MARCO_13_1158202425-3 90 -0.000515 hybrid +147_1-13 Q0 MARCO_37_1250415608-14 91 -0.000993 hybrid +147_1-13 Q0 MARCO_04_324560370-14 92 -0.003771 hybrid +147_1-13 Q0 MARCO_46_706800503-4 93 -0.009424 hybrid +147_1-13 Q0 KILT_28816423-2 94 -0.013158 hybrid +147_1-13 Q0 MARCO_14_783432639-18 95 -0.016113 hybrid +147_1-13 Q0 MARCO_12_340634773-119 96 -0.017217 hybrid +147_1-13 Q0 MARCO_53_1038745773-1 97 -0.017713 hybrid +147_1-13 Q0 KILT_38911166-2 98 -0.019013 hybrid +147_1-13 Q0 MARCO_35_340217599-18 99 -0.021502 hybrid +147_1-13 Q0 MARCO_13_402547902-4 100 -0.022637 hybrid +147_1-15 Q0 MARCO_43_193593489-47 1 0.500000 hybrid +147_1-15 Q0 MARCO_15_311086668-22 2 0.498207 hybrid +147_1-15 Q0 MARCO_15_311086668-18 3 0.464476 hybrid +147_1-15 Q0 MARCO_13_740305728-9 4 0.437508 hybrid +147_1-15 Q0 MARCO_29_660988135-7 5 0.380752 hybrid +147_1-15 Q0 MARCO_41_1147975002-13 6 0.350816 hybrid +147_1-15 Q0 KILT_38911166-2 7 0.343917 hybrid +147_1-15 Q0 MARCO_50_1969067492-23 8 0.337307 hybrid +147_1-15 Q0 MARCO_57_1974278187-26 9 0.317329 hybrid +147_1-15 Q0 MARCO_15_311086668-10 10 0.310696 hybrid +147_1-15 Q0 MARCO_41_1231939664-79 11 0.297788 hybrid +147_1-15 Q0 KILT_36827865-4 12 0.256488 hybrid +147_1-15 Q0 MARCO_27_1567206326-2 13 0.252840 hybrid +147_1-15 Q0 MARCO_57_1973376795-21 14 0.242638 hybrid +147_1-15 Q0 MARCO_00_1006614948-3 15 0.222825 hybrid +147_1-15 Q0 MARCO_33_742522995-3 16 0.210547 hybrid +147_1-15 Q0 MARCO_57_1949828322-19 17 0.209060 hybrid +147_1-15 Q0 MARCO_50_1411015309-18 18 0.207687 hybrid +147_1-15 Q0 MARCO_29_1175597810-15 19 0.192209 hybrid +147_1-15 Q0 MARCO_40_1277533248-6 20 0.186075 hybrid +147_1-15 Q0 MARCO_36_1433836339-9 21 0.178160 hybrid +147_1-15 Q0 MARCO_51_452060826-3 22 0.167646 hybrid +147_1-15 Q0 MARCO_57_1957090712-18 23 0.166353 hybrid +147_1-15 Q0 MARCO_43_193593489-46 24 0.164469 hybrid +147_1-15 Q0 MARCO_13_23118636-13 25 0.163232 hybrid +147_1-15 Q0 MARCO_24_1556939288-10 26 0.149393 hybrid +147_1-15 Q0 MARCO_57_1959760917-8 27 0.141013 hybrid +147_1-15 Q0 MARCO_15_311086668-20 28 0.136156 hybrid +147_1-15 Q0 MARCO_49_1688287934-9 29 0.130307 hybrid +147_1-15 Q0 MARCO_19_2551352885-14 30 0.123362 hybrid +147_1-15 Q0 MARCO_13_1164703834-3 31 0.115044 hybrid +147_1-15 Q0 MARCO_57_1974278187-28 32 0.099957 hybrid +147_1-15 Q0 MARCO_07_257647443-3 33 0.093891 hybrid +147_1-15 Q0 MARCO_07_257674564-8 34 0.093886 hybrid +147_1-15 Q0 MARCO_15_311086668-21 35 0.087820 hybrid +147_1-15 Q0 MARCO_57_1957718772-25 36 0.080575 hybrid +147_1-15 Q0 MARCO_28_442963099-2 37 0.074600 hybrid +147_1-15 Q0 MARCO_28_442964816-4 38 0.074600 hybrid +147_1-15 Q0 MARCO_07_257603041-4 39 0.074600 hybrid +147_1-15 Q0 MARCO_07_257694441-4 40 0.074600 hybrid +147_1-15 Q0 MARCO_13_323346002-3 41 0.073267 hybrid +147_1-15 Q0 MARCO_15_311086668-17 42 0.073142 hybrid +147_1-15 Q0 MARCO_22_999352316-9 43 0.071270 hybrid +147_1-15 Q0 MARCO_29_1688856398-6 44 0.057113 hybrid +147_1-15 Q0 MARCO_23_244603153-5 45 0.054906 hybrid +147_1-15 Q0 MARCO_36_1433836339-10 46 0.038390 hybrid +147_1-15 Q0 MARCO_20_1741959146-4 47 0.037357 hybrid +147_1-15 Q0 MARCO_13_324074840-5 48 0.036812 hybrid +147_1-15 Q0 MARCO_22_1577177686-5 49 0.035666 hybrid +147_1-15 Q0 MARCO_17_362492626-34 50 0.030446 hybrid +147_1-15 Q0 MARCO_53_7090072-3 51 0.024687 hybrid +147_1-15 Q0 MARCO_20_1741905807-23 52 0.022940 hybrid +147_1-15 Q0 MARCO_14_791056066-27 53 0.021788 hybrid +147_1-15 Q0 MARCO_52_802730551-8 54 0.021686 hybrid +147_1-15 Q0 MARCO_14_790766691-5 55 0.021016 hybrid +147_1-15 Q0 MARCO_30_123365525-3 56 0.018208 hybrid +147_1-15 Q0 MARCO_13_1166971201-12 57 0.008908 hybrid +147_1-15 Q0 MARCO_14_790698147-4 58 0.001197 hybrid +147_1-15 Q0 MARCO_37_1272477961-3 59 -0.000970 hybrid +147_1-15 Q0 MARCO_00_1161933894-8 60 -0.002525 hybrid +147_1-15 Q0 MARCO_41_1211301623-54 61 -0.002587 hybrid +147_1-15 Q0 MARCO_37_1260899213-8 62 -0.006536 hybrid +147_1-15 Q0 MARCO_15_311086668-24 63 -0.006565 hybrid +147_1-15 Q0 MARCO_23_1830796877-4 64 -0.006877 hybrid +147_1-15 Q0 MARCO_37_1261828343-29 65 -0.009952 hybrid +147_1-15 Q0 MARCO_51_906308626-5 66 -0.015229 hybrid +147_1-15 Q0 MARCO_14_791342204-7 67 -0.015700 hybrid +147_1-15 Q0 MARCO_14_788781430-5 68 -0.015700 hybrid +147_1-15 Q0 MARCO_14_790838995-4 69 -0.015700 hybrid +147_1-15 Q0 MARCO_14_791473462-19 70 -0.015700 hybrid +147_1-15 Q0 MARCO_14_783557191-6 71 -0.015700 hybrid +147_1-15 Q0 MARCO_14_789243724-31 72 -0.015700 hybrid +147_1-15 Q0 MARCO_14_791318218-6 73 -0.015700 hybrid +147_1-15 Q0 MARCO_13_326809774-3 74 -0.016551 hybrid +147_1-15 Q0 MARCO_15_311086668-16 75 -0.024165 hybrid +147_1-15 Q0 MARCO_37_1272106030-5 76 -0.024886 hybrid +147_1-15 Q0 MARCO_20_1741953937-4 77 -0.026480 hybrid +147_1-15 Q0 MARCO_35_982608758-4 78 -0.027178 hybrid +147_1-15 Q0 MARCO_20_1741976308-5 79 -0.027377 hybrid +147_1-15 Q0 MARCO_13_401349727-9 80 -0.030945 hybrid +147_1-15 Q0 MARCO_52_679562266-14 81 -0.033618 hybrid +147_1-15 Q0 MARCO_13_401292671-4 82 -0.044143 hybrid +147_1-15 Q0 MARCO_14_787486691-8 83 -0.047524 hybrid +147_1-15 Q0 MARCO_14_789585013-6 84 -0.047530 hybrid +147_1-15 Q0 MARCO_14_789840802-6 85 -0.047530 hybrid +147_1-15 Q0 MARCO_14_790195002-2 86 -0.047530 hybrid +147_1-15 Q0 MARCO_14_786830592-104 87 -0.047530 hybrid +147_1-15 Q0 MARCO_57_1962681432-17 88 -0.047672 hybrid +147_1-15 Q0 MARCO_15_311086668-5 89 -0.049431 hybrid +147_1-15 Q0 MARCO_22_1122198455-8 90 -0.049448 hybrid +147_1-15 Q0 MARCO_22_994368111-3 91 -0.053431 hybrid +147_1-15 Q0 MARCO_57_1969592429-11 92 -0.054254 hybrid +147_1-15 Q0 MARCO_41_1137645308-14 93 -0.054770 hybrid +147_1-15 Q0 MARCO_27_1508946895-17 94 -0.057023 hybrid +147_1-15 Q0 MARCO_50_1461081507-23 95 -0.057306 hybrid +147_1-15 Q0 MARCO_52_802730551-13 96 -0.060762 hybrid +147_1-15 Q0 MARCO_40_1191866162-7 97 -0.065953 hybrid +147_1-15 Q0 MARCO_20_1741992584-7 98 -0.066197 hybrid +147_1-15 Q0 MARCO_14_783738739-2 99 -0.067230 hybrid +147_1-15 Q0 MARCO_14_787651768-7 100 -0.067230 hybrid +147_1-3 Q0 KILT_36484005-10 1 0.500002 hybrid +147_1-3 Q0 MARCO_50_1452263860-14 2 0.450922 hybrid +147_1-3 Q0 MARCO_33_741177750-3 3 0.350709 hybrid +147_1-3 Q0 MARCO_25_1431566510-6 4 0.325237 hybrid +147_1-3 Q0 MARCO_35_1383472964-4 5 0.301892 hybrid +147_1-3 Q0 MARCO_43_1018436030-5 6 0.248022 hybrid +147_1-3 Q0 MARCO_27_1431128200-13 7 0.239956 hybrid +147_1-3 Q0 MARCO_35_1383472964-1 8 0.234149 hybrid +147_1-3 Q0 MARCO_24_1266739861-14 9 0.228650 hybrid +147_1-3 Q0 MARCO_43_1018992950-5 10 0.227042 hybrid +147_1-3 Q0 MARCO_40_175150328-2 11 0.216685 hybrid +147_1-3 Q0 MARCO_24_1950643919-10 12 0.211122 hybrid +147_1-3 Q0 MARCO_16_3038433296-7 13 0.211034 hybrid +147_1-3 Q0 MARCO_44_606539471-3 14 0.210609 hybrid +147_1-3 Q0 MARCO_05_486944589-5 15 0.209929 hybrid +147_1-3 Q0 MARCO_16_4158786912-16 16 0.199567 hybrid +147_1-3 Q0 MARCO_35_1383505365-4 17 0.197397 hybrid +147_1-3 Q0 MARCO_50_1180183382-16 18 0.197059 hybrid +147_1-3 Q0 MARCO_10_79499431-13 19 0.193193 hybrid +147_1-3 Q0 MARCO_31_292579249-5 20 0.192499 hybrid +147_1-3 Q0 MARCO_44_610231832-3 21 0.184439 hybrid +147_1-3 Q0 MARCO_50_1452263860-13 22 0.172624 hybrid +147_1-3 Q0 MARCO_07_618451949-1 23 0.171075 hybrid +147_1-3 Q0 KILT_36484005-32 24 0.170801 hybrid +147_1-3 Q0 MARCO_35_1382138495-3 25 0.158356 hybrid +147_1-3 Q0 MARCO_35_1383472964-2 26 0.148082 hybrid +147_1-3 Q0 MARCO_16_3038355385-3 27 0.138707 hybrid +147_1-3 Q0 KILT_1870260-3 28 0.121897 hybrid +147_1-3 Q0 MARCO_33_738965442-2 29 0.114110 hybrid +147_1-3 Q0 MARCO_50_1452516695-35 30 0.112419 hybrid +147_1-3 Q0 MARCO_27_1432833494-12 31 0.110258 hybrid +147_1-3 Q0 MARCO_46_629480232-3 32 0.107946 hybrid +147_1-3 Q0 MARCO_43_999216787-21 33 0.106245 hybrid +147_1-3 Q0 MARCO_41_115413917-5 34 0.096851 hybrid +147_1-3 Q0 MARCO_54_732994185-3 35 0.096733 hybrid +147_1-3 Q0 MARCO_33_741177750-5 36 0.094788 hybrid +147_1-3 Q0 MARCO_44_610231832-1 37 0.087065 hybrid +147_1-3 Q0 MARCO_18_3756735521-8 38 0.086835 hybrid +147_1-3 Q0 MARCO_44_32754161-5 39 0.072240 hybrid +147_1-3 Q0 MARCO_16_1632644170-11 40 0.068168 hybrid +147_1-3 Q0 MARCO_16_1632644170-13 41 0.068168 hybrid +147_1-3 Q0 MARCO_35_1383505365-3 42 0.064326 hybrid +147_1-3 Q0 MARCO_24_652996254-3 43 0.046157 hybrid +147_1-3 Q0 MARCO_43_1284311255-13 44 0.039485 hybrid +147_1-3 Q0 MARCO_05_487400231-2 45 0.028262 hybrid +147_1-3 Q0 MARCO_01_692482769-6 46 0.027920 hybrid +147_1-3 Q0 MARCO_56_1313781070-2 47 0.017998 hybrid +147_1-3 Q0 MARCO_19_160064927-8 48 0.011809 hybrid +147_1-3 Q0 MARCO_31_292579249-4 49 0.008652 hybrid +147_1-3 Q0 MARCO_17_2969490987-5 50 0.007855 hybrid +147_1-3 Q0 KILT_55024717-12 51 0.003676 hybrid +147_1-3 Q0 MARCO_18_3756735521-32 52 -0.000865 hybrid +147_1-3 Q0 MARCO_00_1161159168-3 53 -0.011614 hybrid +147_1-3 Q0 MARCO_56_1313781070-5 54 -0.013300 hybrid +147_1-3 Q0 MARCO_44_32491649-11 55 -0.015485 hybrid +147_1-3 Q0 MARCO_54_728401778-5 56 -0.017455 hybrid +147_1-3 Q0 MARCO_25_1425970494-11 57 -0.021273 hybrid +147_1-3 Q0 MARCO_22_1600720953-12 58 -0.025144 hybrid +147_1-3 Q0 MARCO_17_2969490987-4 59 -0.027558 hybrid +147_1-3 Q0 MARCO_54_1565053788-4 60 -0.029978 hybrid +147_1-3 Q0 MARCO_21_950101893-2 61 -0.035252 hybrid +147_1-3 Q0 MARCO_14_790593007-21 62 -0.035301 hybrid +147_1-3 Q0 MARCO_44_610231832-6 63 -0.040355 hybrid +147_1-3 Q0 MARCO_19_562425557-25 64 -0.040668 hybrid +147_1-3 Q0 KILT_45359871-31 65 -0.042917 hybrid +147_1-3 Q0 MARCO_40_145216430-4 66 -0.054447 hybrid +147_1-3 Q0 MARCO_42_1375725180-4 67 -0.055811 hybrid +147_1-3 Q0 MARCO_44_610231832-2 68 -0.056143 hybrid +147_1-3 Q0 MARCO_43_986390068-18 69 -0.057282 hybrid +147_1-3 Q0 MARCO_27_1431003855-6 70 -0.058025 hybrid +147_1-3 Q0 KILT_161190-43 71 -0.058407 hybrid +147_1-3 Q0 MARCO_27_1507935785-7 72 -0.060987 hybrid +147_1-3 Q0 MARCO_35_1383472964-6 73 -0.063823 hybrid +147_1-3 Q0 MARCO_44_32790856-10 74 -0.065587 hybrid +147_1-3 Q0 MARCO_44_32772068-10 75 -0.065597 hybrid +147_1-3 Q0 KILT_1870260-6 76 -0.066262 hybrid +147_1-3 Q0 MARCO_59_944636994-3 77 -0.068417 hybrid +147_1-3 Q0 MARCO_21_967407690-2 78 -0.073300 hybrid +147_1-3 Q0 MARCO_52_1613351760-11 79 -0.074004 hybrid +147_1-3 Q0 MARCO_16_3038433296-22 80 -0.075431 hybrid +147_1-3 Q0 MARCO_23_1829744723-8 81 -0.076047 hybrid +147_1-3 Q0 MARCO_00_1161106414-6 82 -0.076839 hybrid +147_1-3 Q0 MARCO_41_114394914-8 83 -0.080129 hybrid +147_1-3 Q0 MARCO_20_698310093-2 84 -0.081077 hybrid +147_1-3 Q0 MARCO_18_3263058647-29 85 -0.083179 hybrid +147_1-3 Q0 MARCO_04_899409978-3 86 -0.083663 hybrid +147_1-3 Q0 MARCO_12_360368407-3 87 -0.084675 hybrid +147_1-3 Q0 MARCO_14_787153171-35 88 -0.086048 hybrid +147_1-3 Q0 MARCO_25_1434853867-2 89 -0.087075 hybrid +147_1-3 Q0 MARCO_43_51134853-2 90 -0.087691 hybrid +147_1-3 Q0 KILT_35943142-1 91 -0.091058 hybrid +147_1-3 Q0 MARCO_40_175150328-4 92 -0.091073 hybrid +147_1-3 Q0 MARCO_44_610550421-3 93 -0.091210 hybrid +147_1-3 Q0 MARCO_16_3038433296-5 94 -0.092051 hybrid +147_1-3 Q0 MARCO_35_1383480701-4 95 -0.096772 hybrid +147_1-3 Q0 MARCO_35_1383480701-3 96 -0.097066 hybrid +147_1-3 Q0 MARCO_54_733289616-10 97 -0.097467 hybrid +147_1-3 Q0 MARCO_54_733289616-12 98 -0.097467 hybrid +147_1-3 Q0 KILT_18487696-13 99 -0.099407 hybrid +147_1-3 Q0 MARCO_19_160064927-19 100 -0.101509 hybrid +147_1-5 Q0 MARCO_42_1104714867-66 1 0.499998 hybrid +147_1-5 Q0 MARCO_35_1383575714-4 2 0.463500 hybrid +147_1-5 Q0 MARCO_43_986249535-5 3 0.427150 hybrid +147_1-5 Q0 MARCO_18_1803225057-18 4 0.409659 hybrid +147_1-5 Q0 MARCO_23_1085604106-9 5 0.398569 hybrid +147_1-5 Q0 MARCO_36_896744753-16 6 0.381337 hybrid +147_1-5 Q0 MARCO_44_32754161-2 7 0.335582 hybrid +147_1-5 Q0 MARCO_27_1431520153-3 8 0.303466 hybrid +147_1-5 Q0 MARCO_40_174400452-2 9 0.299195 hybrid +147_1-5 Q0 MARCO_25_1425970494-24 10 0.283735 hybrid +147_1-5 Q0 MARCO_27_1431520153-1 11 0.267909 hybrid +147_1-5 Q0 MARCO_31_292579249-4 12 0.257747 hybrid +147_1-5 Q0 MARCO_18_1803225057-10 13 0.255894 hybrid +147_1-5 Q0 MARCO_25_1769516182-4 14 0.238251 hybrid +147_1-5 Q0 MARCO_23_1830002330-7 15 0.232085 hybrid +147_1-5 Q0 MARCO_05_486755225-5 16 0.221188 hybrid +147_1-5 Q0 MARCO_16_3025547777-12 17 0.189824 hybrid +147_1-5 Q0 MARCO_17_4189131090-2 18 0.183049 hybrid +147_1-5 Q0 MARCO_34_1516508619-1 19 0.179782 hybrid +147_1-5 Q0 MARCO_34_1516508619-3 20 0.179782 hybrid +147_1-5 Q0 MARCO_18_3756735521-118 21 0.169698 hybrid +147_1-5 Q0 MARCO_18_3756735521-116 22 0.169698 hybrid +147_1-5 Q0 MARCO_44_32772068-7 23 0.154814 hybrid +147_1-5 Q0 MARCO_44_32790856-7 24 0.154810 hybrid +147_1-5 Q0 MARCO_50_930735572-9 25 0.154004 hybrid +147_1-5 Q0 MARCO_44_609452746-3 26 0.152582 hybrid +147_1-5 Q0 MARCO_29_620821575-3 27 0.134442 hybrid +147_1-5 Q0 MARCO_41_114937070-6 28 0.134363 hybrid +147_1-5 Q0 MARCO_31_292579249-5 29 0.132136 hybrid +147_1-5 Q0 MARCO_44_610323468-9 30 0.130327 hybrid +147_1-5 Q0 MARCO_43_1278539922-5 31 0.126130 hybrid +147_1-5 Q0 MARCO_40_174400452-1 32 0.123791 hybrid +147_1-5 Q0 MARCO_35_1383497290-6 33 0.123039 hybrid +147_1-5 Q0 MARCO_31_292579249-3 34 0.120975 hybrid +147_1-5 Q0 MARCO_44_609154232-3 35 0.107673 hybrid +147_1-5 Q0 MARCO_44_33070735-10 36 0.105454 hybrid +147_1-5 Q0 MARCO_43_1279557583-10 37 0.094190 hybrid +147_1-5 Q0 MARCO_44_609174027-5 38 0.091145 hybrid +147_1-5 Q0 MARCO_35_1383505365-3 39 0.085410 hybrid +147_1-5 Q0 MARCO_18_1803225057-97 40 0.082611 hybrid +147_1-5 Q0 MARCO_44_35079726-6 41 0.067587 hybrid +147_1-5 Q0 MARCO_43_1018992950-16 42 0.065322 hybrid +147_1-5 Q0 MARCO_42_1104163557-12 43 0.059061 hybrid +147_1-5 Q0 MARCO_44_32754161-15 44 0.056192 hybrid +147_1-5 Q0 MARCO_26_87263119-28 45 0.053722 hybrid +147_1-5 Q0 MARCO_22_1600679330-4 46 0.048711 hybrid +147_1-5 Q0 MARCO_43_1279823183-6 47 0.044160 hybrid +147_1-5 Q0 MARCO_35_1472928268-2 48 0.040650 hybrid +147_1-5 Q0 MARCO_35_1383575714-3 49 0.038426 hybrid +147_1-5 Q0 MARCO_43_1284311255-4 50 0.036642 hybrid +147_1-5 Q0 MARCO_50_1601742922-13 51 0.033037 hybrid +147_1-5 Q0 MARCO_44_33070735-15 52 0.030312 hybrid +147_1-5 Q0 MARCO_22_759546019-4 53 0.028659 hybrid +147_1-5 Q0 MARCO_44_33070735-18 54 0.018132 hybrid +147_1-5 Q0 MARCO_18_1803225057-3 55 0.017030 hybrid +147_1-5 Q0 MARCO_30_835825400-1 56 0.014642 hybrid +147_1-5 Q0 KILT_36484254-54 57 0.014399 hybrid +147_1-5 Q0 MARCO_40_175150328-2 58 0.014013 hybrid +147_1-5 Q0 MARCO_14_791867527-15 59 0.012595 hybrid +147_1-5 Q0 MARCO_44_609187571-4 60 0.011090 hybrid +147_1-5 Q0 MARCO_31_292399071-1 61 0.008197 hybrid +147_1-5 Q0 MARCO_19_475131147-23 62 0.007946 hybrid +147_1-5 Q0 MARCO_40_174400452-4 63 0.007670 hybrid +147_1-5 Q0 MARCO_18_1803225057-20 64 0.006059 hybrid +147_1-5 Q0 MARCO_25_1434853867-6 65 0.004513 hybrid +147_1-5 Q0 MARCO_41_115413917-5 66 0.003876 hybrid +147_1-5 Q0 MARCO_18_1803225057-46 67 0.001126 hybrid +147_1-5 Q0 MARCO_27_209363489-18 68 0.001118 hybrid +147_1-5 Q0 MARCO_44_608420265-1 69 0.001007 hybrid +147_1-5 Q0 MARCO_18_1803225057-15 70 0.000078 hybrid +147_1-5 Q0 MARCO_24_517059080-1 71 -0.003358 hybrid +147_1-5 Q0 MARCO_27_1434420878-3 72 -0.004049 hybrid +147_1-5 Q0 MARCO_18_3756735521-60 73 -0.012069 hybrid +147_1-5 Q0 MARCO_18_3756735521-114 74 -0.016981 hybrid +147_1-5 Q0 MARCO_44_35079726-11 75 -0.022152 hybrid +147_1-5 Q0 MARCO_50_1452263860-25 76 -0.024018 hybrid +147_1-5 Q0 MARCO_23_293632999-1 77 -0.024195 hybrid +147_1-5 Q0 MARCO_43_1012986489-6 78 -0.025387 hybrid +147_1-5 Q0 MARCO_44_609174027-4 79 -0.026316 hybrid +147_1-5 Q0 MARCO_35_1383497290-1 80 -0.027253 hybrid +147_1-5 Q0 MARCO_43_986390068-33 81 -0.029025 hybrid +147_1-5 Q0 MARCO_50_1452263860-23 82 -0.031064 hybrid +147_1-5 Q0 MARCO_10_545116164-9 83 -0.034015 hybrid +147_1-5 Q0 MARCO_43_1016345354-16 84 -0.034920 hybrid +147_1-5 Q0 MARCO_18_1803225057-45 85 -0.035828 hybrid +147_1-5 Q0 MARCO_44_609154232-5 86 -0.036856 hybrid +147_1-5 Q0 MARCO_33_740579363-2 87 -0.039766 hybrid +147_1-5 Q0 MARCO_27_209363489-1 88 -0.040111 hybrid +147_1-5 Q0 MARCO_43_983286873-6 89 -0.040707 hybrid +147_1-5 Q0 KILT_1892894-20 90 -0.041973 hybrid +147_1-5 Q0 MARCO_18_1803225057-48 91 -0.043581 hybrid +147_1-5 Q0 MARCO_14_789673094-131 92 -0.047321 hybrid +147_1-5 Q0 MARCO_10_79499431-13 93 -0.052764 hybrid +147_1-5 Q0 MARCO_41_114394914-3 94 -0.054667 hybrid +147_1-5 Q0 MARCO_17_1723309964-118 95 -0.057343 hybrid +147_1-5 Q0 MARCO_18_3756735521-119 96 -0.057343 hybrid +147_1-5 Q0 MARCO_41_1142356573-48 97 -0.058650 hybrid +147_1-5 Q0 MARCO_27_1247950365-1 98 -0.062078 hybrid +147_1-5 Q0 MARCO_20_67348820-5 99 -0.062728 hybrid +147_1-5 Q0 MARCO_43_1277022835-5 100 -0.062925 hybrid +147_1-7 Q0 MARCO_50_943289979-24 1 0.500000 hybrid +147_1-7 Q0 MARCO_14_1615499650-3 2 0.493708 hybrid +147_1-7 Q0 MARCO_00_1160843662-1 3 0.433628 hybrid +147_1-7 Q0 MARCO_44_610323468-1 4 0.432254 hybrid +147_1-7 Q0 MARCO_15_108899385-2 5 0.402953 hybrid +147_1-7 Q0 MARCO_27_1431003855-1 6 0.387996 hybrid +147_1-7 Q0 MARCO_40_175150328-1 7 0.386705 hybrid +147_1-7 Q0 MARCO_50_1176457493-32 8 0.384834 hybrid +147_1-7 Q0 MARCO_36_901434920-2 9 0.358104 hybrid +147_1-7 Q0 KILT_41677925-56 10 0.354441 hybrid +147_1-7 Q0 MARCO_50_1452516695-17 11 0.342851 hybrid +147_1-7 Q0 MARCO_35_1383497290-1 12 0.317939 hybrid +147_1-7 Q0 MARCO_35_1381688892-1 13 0.314997 hybrid +147_1-7 Q0 MARCO_44_610323468-9 14 0.304922 hybrid +147_1-7 Q0 MARCO_23_1828573047-3 15 0.297912 hybrid +147_1-7 Q0 MARCO_07_1580559307-12 16 0.295464 hybrid +147_1-7 Q0 MARCO_35_1383505365-2 17 0.276039 hybrid +147_1-7 Q0 MARCO_40_175150328-3 18 0.270238 hybrid +147_1-7 Q0 KILT_36484254-21 19 0.263351 hybrid +147_1-7 Q0 MARCO_15_107455358-33 20 0.254415 hybrid +147_1-7 Q0 MARCO_44_606424403-3 21 0.242112 hybrid +147_1-7 Q0 MARCO_35_1383547965-1 22 0.236859 hybrid +147_1-7 Q0 MARCO_35_310373996-4 23 0.231554 hybrid +147_1-7 Q0 MARCO_16_3025547777-53 24 0.229795 hybrid +147_1-7 Q0 MARCO_16_3025547777-55 25 0.229795 hybrid +147_1-7 Q0 MARCO_44_610323468-8 26 0.227267 hybrid +147_1-7 Q0 MARCO_35_1381526600-6 27 0.225929 hybrid +147_1-7 Q0 MARCO_44_607608337-1 28 0.222818 hybrid +147_1-7 Q0 MARCO_36_900179677-5 29 0.207846 hybrid +147_1-7 Q0 MARCO_27_1507935785-7 30 0.198857 hybrid +147_1-7 Q0 MARCO_30_835825400-2 31 0.191324 hybrid +147_1-7 Q0 MARCO_35_1383497290-5 32 0.186024 hybrid +147_1-7 Q0 KILT_45359871-18 33 0.182696 hybrid +147_1-7 Q0 MARCO_44_609297930-1 34 0.180983 hybrid +147_1-7 Q0 MARCO_15_107455358-15 35 0.180464 hybrid +147_1-7 Q0 MARCO_19_562425557-58 36 0.177244 hybrid +147_1-7 Q0 MARCO_35_1383547965-12 37 0.177017 hybrid +147_1-7 Q0 MARCO_35_1383505365-1 38 0.156298 hybrid +147_1-7 Q0 MARCO_35_310373996-5 39 0.143969 hybrid +147_1-7 Q0 MARCO_21_950095832-3 40 0.129615 hybrid +147_1-7 Q0 KILT_36860986-46 41 0.128154 hybrid +147_1-7 Q0 MARCO_42_1104163557-2 42 0.127721 hybrid +147_1-7 Q0 MARCO_53_733432913-8 43 0.122778 hybrid +147_1-7 Q0 MARCO_41_115465033-1 44 0.121011 hybrid +147_1-7 Q0 MARCO_43_1018992950-1 45 0.118638 hybrid +147_1-7 Q0 MARCO_17_1723309964-49 46 0.113414 hybrid +147_1-7 Q0 KILT_41677925-2 47 0.112822 hybrid +147_1-7 Q0 MARCO_51_120664146-3 48 0.102012 hybrid +147_1-7 Q0 MARCO_27_1512947347-2 49 0.099484 hybrid +147_1-7 Q0 MARCO_27_1431814765-11 50 0.088739 hybrid +147_1-7 Q0 MARCO_35_1381551311-7 51 0.082324 hybrid +147_1-7 Q0 MARCO_50_1452516695-18 52 0.077821 hybrid +147_1-7 Q0 MARCO_51_451864789-15 53 0.076227 hybrid +147_1-7 Q0 MARCO_44_609456213-7 54 0.074089 hybrid +147_1-7 Q0 MARCO_27_1513521687-1 55 0.071647 hybrid +147_1-7 Q0 MARCO_44_609464324-4 56 0.068662 hybrid +147_1-7 Q0 KILT_45359871-17 57 0.065485 hybrid +147_1-7 Q0 MARCO_18_3778517612-2 58 0.055735 hybrid +147_1-7 Q0 MARCO_27_1431003855-3 59 0.053539 hybrid +147_1-7 Q0 MARCO_42_1105109712-4 60 0.048401 hybrid +147_1-7 Q0 MARCO_00_1161447751-1 61 0.040890 hybrid +147_1-7 Q0 MARCO_25_1426460659-2 62 0.036581 hybrid +147_1-7 Q0 MARCO_18_1803225057-23 63 0.036372 hybrid +147_1-7 Q0 MARCO_48_1295283403-5 64 0.036329 hybrid +147_1-7 Q0 MARCO_50_1452263860-22 65 0.030094 hybrid +147_1-7 Q0 MARCO_35_1383639118-2 66 0.030018 hybrid +147_1-7 Q0 MARCO_35_1381953404-15 67 0.030004 hybrid +147_1-7 Q0 MARCO_27_1435241044-5 68 0.029752 hybrid +147_1-7 Q0 MARCO_35_1381829109-1 69 0.027346 hybrid +147_1-7 Q0 MARCO_27_1430688359-7 70 0.026063 hybrid +147_1-7 Q0 MARCO_27_1514127644-2 71 0.018011 hybrid +147_1-7 Q0 MARCO_14_791867527-18 72 0.012328 hybrid +147_1-7 Q0 MARCO_23_1830002330-6 73 0.012137 hybrid +147_1-7 Q0 KILT_41677925-35 74 0.011802 hybrid +147_1-7 Q0 MARCO_24_1950482772-1 75 0.011297 hybrid +147_1-7 Q0 MARCO_18_1803225057-81 76 0.009862 hybrid +147_1-7 Q0 MARCO_44_33070735-14 77 0.008932 hybrid +147_1-7 Q0 MARCO_27_1510632391-8 78 0.007046 hybrid +147_1-7 Q0 KILT_41677925-52 79 0.006959 hybrid +147_1-7 Q0 MARCO_50_1452263860-20 80 0.005611 hybrid +147_1-7 Q0 MARCO_44_32908000-8 81 0.004893 hybrid +147_1-7 Q0 MARCO_35_1382658056-1 82 0.003721 hybrid +147_1-7 Q0 MARCO_27_1515665851-5 83 0.002275 hybrid +147_1-7 Q0 MARCO_40_175150328-10 84 0.001486 hybrid +147_1-7 Q0 MARCO_27_1512947347-7 85 0.000714 hybrid +147_1-7 Q0 MARCO_35_1382480184-6 86 -0.001096 hybrid +147_1-7 Q0 MARCO_36_900179677-8 87 -0.002758 hybrid +147_1-7 Q0 MARCO_13_545332603-1 88 -0.004298 hybrid +147_1-7 Q0 MARCO_35_310373996-2 89 -0.008228 hybrid +147_1-7 Q0 MARCO_40_175150328-2 90 -0.008730 hybrid +147_1-7 Q0 MARCO_35_1382480184-2 91 -0.009570 hybrid +147_1-7 Q0 MARCO_24_1950810296-6 92 -0.009638 hybrid +147_1-7 Q0 MARCO_18_1803225057-67 93 -0.010814 hybrid +147_1-7 Q0 MARCO_35_1383639118-7 94 -0.010918 hybrid +147_1-7 Q0 MARCO_27_1431003855-7 95 -0.012198 hybrid +147_1-7 Q0 MARCO_44_607823441-1 96 -0.012674 hybrid +147_1-7 Q0 MARCO_44_32908000-10 97 -0.012743 hybrid +147_1-7 Q0 MARCO_15_107455358-6 98 -0.013067 hybrid +147_1-7 Q0 MARCO_39_418127773-2 99 -0.015325 hybrid +147_1-7 Q0 KILT_55755841-15 100 -0.015887 hybrid +147_1-9 Q0 MARCO_18_3756735521-22 1 0.500000 hybrid +147_1-9 Q0 KILT_36484254-6 2 0.228899 hybrid +147_1-9 Q0 MARCO_18_3756735521-34 3 0.213006 hybrid +147_1-9 Q0 MARCO_31_292579249-3 4 0.209901 hybrid +147_1-9 Q0 MARCO_43_1019176089-17 5 0.204700 hybrid +147_1-9 Q0 KILT_36484254-25 6 0.193792 hybrid +147_1-9 Q0 MARCO_40_175150328-5 7 0.189297 hybrid +147_1-9 Q0 MARCO_15_107455358-32 8 0.165039 hybrid +147_1-9 Q0 MARCO_14_791867527-8 9 0.159594 hybrid +147_1-9 Q0 MARCO_07_1580559307-7 10 0.152956 hybrid +147_1-9 Q0 MARCO_42_1104163557-2 11 0.142535 hybrid +147_1-9 Q0 MARCO_36_896744753-16 12 0.115823 hybrid +147_1-9 Q0 MARCO_10_545116164-9 13 0.110650 hybrid +147_1-9 Q0 MARCO_56_1313964447-23 14 0.107385 hybrid +147_1-9 Q0 MARCO_10_79589072-4 15 0.097679 hybrid +147_1-9 Q0 MARCO_35_1383575714-4 16 0.092499 hybrid +147_1-9 Q0 MARCO_43_1018992950-9 17 0.083713 hybrid +147_1-9 Q0 MARCO_50_1515133112-2 18 0.080506 hybrid +147_1-9 Q0 MARCO_50_1428181499-10 19 0.066422 hybrid +147_1-9 Q0 MARCO_18_3756735521-21 20 0.065442 hybrid +147_1-9 Q0 MARCO_44_32491649-13 21 0.059541 hybrid +147_1-9 Q0 MARCO_40_175150328-3 22 0.055471 hybrid +147_1-9 Q0 MARCO_27_1431003855-6 23 0.055425 hybrid +147_1-9 Q0 MARCO_44_33070735-7 24 0.055086 hybrid +147_1-9 Q0 MARCO_18_1803225057-20 25 0.053319 hybrid +147_1-9 Q0 MARCO_14_791867527-7 26 0.052166 hybrid +147_1-9 Q0 MARCO_44_608064125-3 27 0.044172 hybrid +147_1-9 Q0 KILT_36484254-19 28 0.040185 hybrid +147_1-9 Q0 MARCO_01_692444269-7 29 0.029512 hybrid +147_1-9 Q0 MARCO_16_3025547777-9 30 0.016729 hybrid +147_1-9 Q0 MARCO_25_33800156-55 31 0.013828 hybrid +147_1-9 Q0 MARCO_18_1803225057-26 32 0.008716 hybrid +147_1-9 Q0 MARCO_50_1452516695-31 33 0.007403 hybrid +147_1-9 Q0 MARCO_43_51134853-4 34 0.005269 hybrid +147_1-9 Q0 MARCO_27_209363489-8 35 0.000533 hybrid +147_1-9 Q0 MARCO_44_32491649-7 36 0.000185 hybrid +147_1-9 Q0 MARCO_35_1383505365-3 37 -0.001927 hybrid +147_1-9 Q0 MARCO_14_791867527-4 38 -0.001998 hybrid +147_1-9 Q0 MARCO_25_1431566510-6 39 -0.008041 hybrid +147_1-9 Q0 MARCO_41_115413917-5 40 -0.012545 hybrid +147_1-9 Q0 MARCO_35_1383620100-3 41 -0.015644 hybrid +147_1-9 Q0 MARCO_44_35079726-3 42 -0.016868 hybrid +147_1-9 Q0 MARCO_39_421344237-5 43 -0.017333 hybrid +147_1-9 Q0 MARCO_44_33070735-16 44 -0.017460 hybrid +147_1-9 Q0 MARCO_30_835825400-1 45 -0.020432 hybrid +147_1-9 Q0 MARCO_10_79499431-4 46 -0.025830 hybrid +147_1-9 Q0 MARCO_10_79619100-2 47 -0.026860 hybrid +147_1-9 Q0 MARCO_16_3025547777-36 48 -0.027665 hybrid +147_1-9 Q0 MARCO_44_32790856-3 49 -0.032373 hybrid +147_1-9 Q0 MARCO_10_79499431-1 50 -0.034867 hybrid +147_1-9 Q0 MARCO_01_692444269-5 51 -0.038385 hybrid +147_1-9 Q0 MARCO_01_692902633-5 52 -0.039303 hybrid +147_1-9 Q0 MARCO_10_79499431-12 53 -0.041221 hybrid +147_1-9 Q0 MARCO_10_79619100-7 54 -0.041881 hybrid +147_1-9 Q0 MARCO_44_33070735-3 55 -0.043469 hybrid +147_1-9 Q0 MARCO_06_1650265034-1 56 -0.044508 hybrid +147_1-9 Q0 MARCO_24_1950643919-16 57 -0.044680 hybrid +147_1-9 Q0 MARCO_40_175150328-9 58 -0.045479 hybrid +147_1-9 Q0 MARCO_05_487400231-2 59 -0.045988 hybrid +147_1-9 Q0 MARCO_31_292579249-4 60 -0.047178 hybrid +147_1-9 Q0 MARCO_14_791867527-15 61 -0.051192 hybrid +147_1-9 Q0 MARCO_44_35079726-8 62 -0.053520 hybrid +147_1-9 Q0 MARCO_06_1650149790-2 63 -0.053600 hybrid +147_1-9 Q0 MARCO_24_1556249239-7 64 -0.054130 hybrid +147_1-9 Q0 MARCO_54_727875745-2 65 -0.058305 hybrid +147_1-9 Q0 MARCO_44_32772068-3 66 -0.059424 hybrid +147_1-9 Q0 MARCO_44_33070735-12 67 -0.061166 hybrid +147_1-9 Q0 MARCO_20_67348820-5 68 -0.062106 hybrid +147_1-9 Q0 MARCO_44_32790856-9 69 -0.067714 hybrid +147_1-9 Q0 MARCO_44_32772068-9 70 -0.067714 hybrid +147_1-9 Q0 MARCO_50_1601742922-13 71 -0.073329 hybrid +147_1-9 Q0 MARCO_14_789673094-129 72 -0.078037 hybrid +147_1-9 Q0 MARCO_39_909160896-2 73 -0.078675 hybrid +147_1-9 Q0 MARCO_00_1161106414-3 74 -0.079877 hybrid +147_1-9 Q0 MARCO_44_35079726-12 75 -0.079914 hybrid +147_1-9 Q0 MARCO_14_789673094-127 76 -0.080392 hybrid +147_1-9 Q0 MARCO_14_791867527-5 77 -0.081113 hybrid +147_1-9 Q0 MARCO_43_1018992950-12 78 -0.082464 hybrid +147_1-9 Q0 MARCO_42_1104163557-3 79 -0.083219 hybrid +147_1-9 Q0 MARCO_18_1803225057-22 80 -0.084258 hybrid +147_1-9 Q0 MARCO_44_32754161-8 81 -0.087492 hybrid +147_1-9 Q0 MARCO_33_740579363-2 82 -0.088599 hybrid +147_1-9 Q0 MARCO_18_1803225057-14 83 -0.089031 hybrid +147_1-9 Q0 MARCO_27_1434420878-3 84 -0.089808 hybrid +147_1-9 Q0 MARCO_06_1650265034-2 85 -0.092765 hybrid +147_1-9 Q0 MARCO_49_1323816890-5 86 -0.094642 hybrid +147_1-9 Q0 MARCO_00_253715418-18 87 -0.095345 hybrid +147_1-9 Q0 MARCO_10_79499431-6 88 -0.096316 hybrid +147_1-9 Q0 MARCO_54_1565188623-5 89 -0.096961 hybrid +147_1-9 Q0 MARCO_10_79589072-2 90 -0.096982 hybrid +147_1-9 Q0 MARCO_01_692444269-8 91 -0.097395 hybrid +147_1-9 Q0 MARCO_00_253715418-16 92 -0.100950 hybrid +147_1-9 Q0 MARCO_31_292012678-3 93 -0.101181 hybrid +147_1-9 Q0 MARCO_42_1105109712-3 94 -0.102631 hybrid +147_1-9 Q0 MARCO_17_4189131090-2 95 -0.103719 hybrid +147_1-9 Q0 MARCO_36_888487863-6 96 -0.104126 hybrid +147_1-9 Q0 MARCO_16_1907122391-26 97 -0.104382 hybrid +147_1-9 Q0 MARCO_07_1580559307-8 98 -0.104903 hybrid +147_1-9 Q0 MARCO_44_608064125-4 99 -0.110163 hybrid +147_1-9 Q0 MARCO_27_1431520153-3 100 -0.112444 hybrid +147_2-1 Q0 MARCO_00_1161498748-4 1 0.500000 hybrid +147_2-1 Q0 MARCO_19_475158483-3 2 0.460735 hybrid +147_2-1 Q0 MARCO_14_785661863-1 3 0.454871 hybrid +147_2-1 Q0 MARCO_54_1565053788-4 4 0.405487 hybrid +147_2-1 Q0 MARCO_00_1161868671-4 5 0.385435 hybrid +147_2-1 Q0 MARCO_54_1564838481-2 6 0.344355 hybrid +147_2-1 Q0 MARCO_28_428427404-13 7 0.319159 hybrid +147_2-1 Q0 MARCO_00_1161868671-3 8 0.296011 hybrid +147_2-1 Q0 MARCO_15_107455358-1 9 0.273643 hybrid +147_2-1 Q0 MARCO_06_694770796-1 10 0.247417 hybrid +147_2-1 Q0 MARCO_50_2157873319-12 11 0.245853 hybrid +147_2-1 Q0 MARCO_19_2041249079-28 12 0.236819 hybrid +147_2-1 Q0 MARCO_19_980814039-50 13 0.228362 hybrid +147_2-1 Q0 MARCO_16_4110415223-11 14 0.222156 hybrid +147_2-1 Q0 MARCO_17_1723309964-120 15 0.220298 hybrid +147_2-1 Q0 MARCO_54_1564838481-6 16 0.215470 hybrid +147_2-1 Q0 MARCO_36_900179677-3 17 0.191510 hybrid +147_2-1 Q0 MARCO_44_33070735-2 18 0.173305 hybrid +147_2-1 Q0 MARCO_37_723384658-3 19 0.170619 hybrid +147_2-1 Q0 KILT_51208956-1 20 0.170287 hybrid +147_2-1 Q0 MARCO_00_1161555318-1 21 0.159509 hybrid +147_2-1 Q0 MARCO_40_1583170851-42 22 0.158332 hybrid +147_2-1 Q0 MARCO_40_175150328-8 23 0.157694 hybrid +147_2-1 Q0 KILT_45359871-25 24 0.149063 hybrid +147_2-1 Q0 MARCO_44_610097902-2 25 0.130460 hybrid +147_2-1 Q0 MARCO_00_1161509318-2 26 0.124395 hybrid +147_2-1 Q0 MARCO_14_760951458-1 27 0.118946 hybrid +147_2-1 Q0 MARCO_36_888487863-6 28 0.118439 hybrid +147_2-1 Q0 MARCO_16_1907122391-26 29 0.110408 hybrid +147_2-1 Q0 MARCO_07_258203158-7 30 0.108195 hybrid +147_2-1 Q0 MARCO_44_33070735-17 31 0.104343 hybrid +147_2-1 Q0 MARCO_15_107455358-15 32 0.097205 hybrid +147_2-1 Q0 MARCO_37_1185340221-2 33 0.093657 hybrid +147_2-1 Q0 MARCO_17_1679236136-2 34 0.092867 hybrid +147_2-1 Q0 MARCO_17_1723309964-30 35 0.089489 hybrid +147_2-1 Q0 KILT_41677925-58 36 0.076613 hybrid +147_2-1 Q0 MARCO_19_2041249079-16 37 0.070085 hybrid +147_2-1 Q0 MARCO_31_292203421-5 38 0.064026 hybrid +147_2-1 Q0 MARCO_50_2378586507-2 39 0.063786 hybrid +147_2-1 Q0 MARCO_31_292399071-1 40 0.063372 hybrid +147_2-1 Q0 MARCO_35_313631277-2 41 0.059492 hybrid +147_2-1 Q0 KILT_47069739-30 42 0.036209 hybrid +147_2-1 Q0 MARCO_44_32754161-8 43 0.032988 hybrid +147_2-1 Q0 MARCO_50_1506711576-37 44 0.032596 hybrid +147_2-1 Q0 MARCO_18_2865651939-18 45 0.032340 hybrid +147_2-1 Q0 MARCO_27_1435184494-4 46 0.029670 hybrid +147_2-1 Q0 MARCO_19_475131147-13 47 0.029060 hybrid +147_2-1 Q0 MARCO_18_1803225057-113 48 0.024984 hybrid +147_2-1 Q0 MARCO_11_756756978-1 49 0.022864 hybrid +147_2-1 Q0 MARCO_00_1161106414-11 50 0.022172 hybrid +147_2-1 Q0 MARCO_38_1501884524-2 51 0.016663 hybrid +147_2-1 Q0 KILT_47069739-32 52 0.009667 hybrid +147_2-1 Q0 KILT_57996832-2 53 0.008146 hybrid +147_2-1 Q0 MARCO_44_610557674-4 54 -0.000741 hybrid +147_2-1 Q0 MARCO_18_3823296338-37 55 -0.001368 hybrid +147_2-1 Q0 MARCO_16_3038433296-30 56 -0.004267 hybrid +147_2-1 Q0 MARCO_18_1803225057-15 57 -0.004539 hybrid +147_2-1 Q0 MARCO_18_1803225057-26 58 -0.005068 hybrid +147_2-1 Q0 MARCO_54_1565053788-2 59 -0.006146 hybrid +147_2-1 Q0 MARCO_07_257920950-1 60 -0.008713 hybrid +147_2-1 Q0 MARCO_10_545116164-5 61 -0.008985 hybrid +147_2-1 Q0 MARCO_35_310373996-2 62 -0.009323 hybrid +147_2-1 Q0 MARCO_36_901434920-2 63 -0.013110 hybrid +147_2-1 Q0 MARCO_27_1431128200-1 64 -0.013230 hybrid +147_2-1 Q0 MARCO_59_770323804-15 65 -0.015557 hybrid +147_2-1 Q0 MARCO_15_107455358-32 66 -0.017224 hybrid +147_2-1 Q0 MARCO_54_1564838481-1 67 -0.018254 hybrid +147_2-1 Q0 MARCO_16_4110415223-2 68 -0.021513 hybrid +147_2-1 Q0 MARCO_16_4110415223-146 69 -0.023294 hybrid +147_2-1 Q0 MARCO_53_732244920-3 70 -0.024477 hybrid +147_2-1 Q0 MARCO_23_1830557751-7 71 -0.026008 hybrid +147_2-1 Q0 MARCO_54_1564838481-5 72 -0.027289 hybrid +147_2-1 Q0 MARCO_59_769764572-3 73 -0.028667 hybrid +147_2-1 Q0 MARCO_16_2990178834-73 74 -0.029032 hybrid +147_2-1 Q0 MARCO_15_107455358-33 75 -0.029986 hybrid +147_2-1 Q0 MARCO_21_1454875428-1 76 -0.034241 hybrid +147_2-1 Q0 MARCO_01_694088226-9 77 -0.035015 hybrid +147_2-1 Q0 MARCO_17_2532490713-28 78 -0.037407 hybrid +147_2-1 Q0 MARCO_27_1513521687-4 79 -0.040650 hybrid +147_2-1 Q0 MARCO_17_1934688057-57 80 -0.043913 hybrid +147_2-1 Q0 MARCO_36_900179677-4 81 -0.044927 hybrid +147_2-1 Q0 MARCO_59_771485427-5 82 -0.046785 hybrid +147_2-1 Q0 MARCO_41_121006452-3 83 -0.048436 hybrid +147_2-1 Q0 MARCO_35_1383547965-11 84 -0.049455 hybrid +147_2-1 Q0 MARCO_50_1506509387-9 85 -0.049466 hybrid +147_2-1 Q0 MARCO_07_618172460-2 86 -0.051466 hybrid +147_2-1 Q0 MARCO_16_4112226995-4 87 -0.052125 hybrid +147_2-1 Q0 MARCO_14_760951458-2 88 -0.053852 hybrid +147_2-1 Q0 MARCO_54_1565053788-1 89 -0.054839 hybrid +147_2-1 Q0 MARCO_46_1513547835-3 90 -0.058626 hybrid +147_2-1 Q0 MARCO_01_693236628-7 91 -0.061367 hybrid +147_2-1 Q0 MARCO_35_1381763178-3 92 -0.064680 hybrid +147_2-1 Q0 MARCO_23_1830567156-7 93 -0.067219 hybrid +147_2-1 Q0 MARCO_41_114367320-2 94 -0.067731 hybrid +147_2-1 Q0 MARCO_45_136647607-2 95 -0.073540 hybrid +147_2-1 Q0 KILT_41677925-57 96 -0.074270 hybrid +147_2-1 Q0 KILT_47069739-23 97 -0.075131 hybrid +147_2-1 Q0 MARCO_17_1793535629-43 98 -0.075567 hybrid +147_2-1 Q0 MARCO_14_747523206-6 99 -0.079185 hybrid +147_2-1 Q0 MARCO_36_901634457-3 100 -0.081446 hybrid +147_2-3 Q0 KILT_36658495-2 1 0.500000 hybrid +147_2-3 Q0 MARCO_10_551602548-4 2 0.485881 hybrid +147_2-3 Q0 KILT_45502864-2 3 0.457696 hybrid +147_2-3 Q0 KILT_1181663-12 4 0.406240 hybrid +147_2-3 Q0 KILT_6751525-2 5 0.405290 hybrid +147_2-3 Q0 MARCO_29_660988135-7 6 0.316418 hybrid +147_2-3 Q0 MARCO_10_552229547-39 7 0.281522 hybrid +147_2-3 Q0 MARCO_20_658999981-9 8 0.278134 hybrid +147_2-3 Q0 MARCO_10_551602548-12 9 0.256346 hybrid +147_2-3 Q0 MARCO_19_581326099-6 10 0.252977 hybrid +147_2-3 Q0 MARCO_19_160112057-3 11 0.243202 hybrid +147_2-3 Q0 MARCO_28_555051138-2 12 0.241874 hybrid +147_2-3 Q0 MARCO_10_551602548-9 13 0.224307 hybrid +147_2-3 Q0 MARCO_16_4111528308-2 14 0.217285 hybrid +147_2-3 Q0 MARCO_12_1866611257-9 15 0.212956 hybrid +147_2-3 Q0 MARCO_17_3094322423-9 16 0.208847 hybrid +147_2-3 Q0 MARCO_18_2727569533-2 17 0.207356 hybrid +147_2-3 Q0 KILT_1607774-3 18 0.182734 hybrid +147_2-3 Q0 MARCO_59_360762919-2 19 0.176915 hybrid +147_2-3 Q0 MARCO_35_1381811664-1 20 0.175065 hybrid +147_2-3 Q0 MARCO_40_1277533248-5 21 0.168970 hybrid +147_2-3 Q0 MARCO_19_160112057-4 22 0.163975 hybrid +147_2-3 Q0 MARCO_18_475356665-5 23 0.154204 hybrid +147_2-3 Q0 MARCO_59_360762919-1 24 0.152988 hybrid +147_2-3 Q0 MARCO_16_4110877543-15 25 0.151753 hybrid +147_2-3 Q0 MARCO_00_1161183399-4 26 0.146161 hybrid +147_2-3 Q0 MARCO_10_551602548-5 27 0.137075 hybrid +147_2-3 Q0 MARCO_19_2041249079-45 28 0.131652 hybrid +147_2-3 Q0 MARCO_20_658999981-12 29 0.130370 hybrid +147_2-3 Q0 KILT_52111558-7 30 0.123665 hybrid +147_2-3 Q0 MARCO_50_1607961702-27 31 0.110026 hybrid +147_2-3 Q0 MARCO_12_1866611257-7 32 0.094184 hybrid +147_2-3 Q0 MARCO_09_1194722670-1 33 0.093918 hybrid +147_2-3 Q0 KILT_608684-5 34 0.092255 hybrid +147_2-3 Q0 MARCO_33_742522995-3 35 0.086239 hybrid +147_2-3 Q0 MARCO_04_1290664752-16 36 0.082740 hybrid +147_2-3 Q0 MARCO_10_551602548-7 37 0.059941 hybrid +147_2-3 Q0 MARCO_59_403208976-3 38 0.059107 hybrid +147_2-3 Q0 MARCO_39_1365906880-6 39 0.057448 hybrid +147_2-3 Q0 MARCO_34_1069196881-2 40 0.057001 hybrid +147_2-3 Q0 MARCO_10_552229547-22 41 0.056474 hybrid +147_2-3 Q0 MARCO_18_3819725636-13 42 0.042481 hybrid +147_2-3 Q0 MARCO_20_658999981-14 43 0.042272 hybrid +147_2-3 Q0 MARCO_50_1607961702-12 44 0.040529 hybrid +147_2-3 Q0 MARCO_17_3094322423-11 45 0.034774 hybrid +147_2-3 Q0 MARCO_46_706800503-4 46 0.031252 hybrid +147_2-3 Q0 MARCO_19_557638477-31 47 0.030874 hybrid +147_2-3 Q0 MARCO_16_110104570-15 48 0.026154 hybrid +147_2-3 Q0 KILT_1163698-2 49 0.024439 hybrid +147_2-3 Q0 MARCO_14_760787026-1 50 0.023680 hybrid +147_2-3 Q0 MARCO_57_1273305380-5 51 0.023480 hybrid +147_2-3 Q0 MARCO_17_2893124013-35 52 0.022711 hybrid +147_2-3 Q0 MARCO_13_1158202425-1 53 0.017469 hybrid +147_2-3 Q0 KILT_50439417-4 54 0.016756 hybrid +147_2-3 Q0 MARCO_18_3823296338-8 55 0.014981 hybrid +147_2-3 Q0 MARCO_18_469691007-3 56 0.013154 hybrid +147_2-3 Q0 MARCO_14_1615338299-3 57 0.005848 hybrid +147_2-3 Q0 MARCO_23_485983512-8 58 0.005065 hybrid +147_2-3 Q0 MARCO_20_658999981-5 59 0.002707 hybrid +147_2-3 Q0 KILT_44542304-48 60 -0.001920 hybrid +147_2-3 Q0 MARCO_14_791770756-8 61 -0.008373 hybrid +147_2-3 Q0 MARCO_24_1132743974-3 62 -0.010060 hybrid +147_2-3 Q0 KILT_898609-12 63 -0.010903 hybrid +147_2-3 Q0 KILT_1843273-4 64 -0.013475 hybrid +147_2-3 Q0 MARCO_14_791736021-10 65 -0.013564 hybrid +147_2-3 Q0 MARCO_17_2895155589-17 66 -0.013746 hybrid +147_2-3 Q0 KILT_53971068-2 67 -0.014626 hybrid +147_2-3 Q0 MARCO_14_791752182-10 68 -0.017464 hybrid +147_2-3 Q0 KILT_1181663-9 69 -0.022506 hybrid +147_2-3 Q0 MARCO_14_760787026-11 70 -0.023153 hybrid +147_2-3 Q0 MARCO_13_1159988156-6 71 -0.023438 hybrid +147_2-3 Q0 MARCO_17_3094322423-19 72 -0.023671 hybrid +147_2-3 Q0 MARCO_17_3094322423-20 73 -0.026490 hybrid +147_2-3 Q0 KILT_619539-3 74 -0.029220 hybrid +147_2-3 Q0 MARCO_28_555028281-1 75 -0.030157 hybrid +147_2-3 Q0 MARCO_50_1446542803-24 76 -0.032426 hybrid +147_2-3 Q0 MARCO_10_551602548-25 77 -0.035133 hybrid +147_2-3 Q0 MARCO_13_1159988156-8 78 -0.039732 hybrid +147_2-3 Q0 MARCO_19_160112057-5 79 -0.040608 hybrid +147_2-3 Q0 MARCO_35_1382816485-7 80 -0.041125 hybrid +147_2-3 Q0 MARCO_01_692902633-5 81 -0.041694 hybrid +147_2-3 Q0 MARCO_32_1773320149-3 82 -0.043972 hybrid +147_2-3 Q0 KILT_12210793-1 83 -0.045589 hybrid +147_2-3 Q0 MARCO_41_1205142198-10 84 -0.046530 hybrid +147_2-3 Q0 MARCO_00_570971400-5 85 -0.048203 hybrid +147_2-3 Q0 MARCO_44_1926845274-10 86 -0.050151 hybrid +147_2-3 Q0 MARCO_18_469691007-4 87 -0.052816 hybrid +147_2-3 Q0 MARCO_44_1926845274-8 88 -0.054680 hybrid +147_2-3 Q0 MARCO_20_733115101-6 89 -0.056059 hybrid +147_2-3 Q0 MARCO_16_4110877543-31 90 -0.060481 hybrid +147_2-3 Q0 MARCO_41_115845881-6 91 -0.066879 hybrid +147_2-3 Q0 KILT_4706922-10 92 -0.066897 hybrid +147_2-3 Q0 MARCO_14_1615313039-5 93 -0.068864 hybrid +147_2-3 Q0 KILT_47080851-2 94 -0.073272 hybrid +147_2-3 Q0 MARCO_16_1719920656-5 95 -0.073286 hybrid +147_2-3 Q0 MARCO_59_360762919-6 96 -0.074371 hybrid +147_2-3 Q0 MARCO_10_551602548-19 97 -0.077060 hybrid +147_2-3 Q0 KILT_907480-34 98 -0.077861 hybrid +147_2-3 Q0 KILT_30253259-2 99 -0.077894 hybrid +147_2-3 Q0 MARCO_50_1424129020-98 100 -0.077941 hybrid +147_2-5 Q0 MARCO_07_258203158-7 1 0.500000 hybrid +147_2-5 Q0 MARCO_24_818625-7 2 0.318063 hybrid +147_2-5 Q0 MARCO_01_822270056-8 3 0.299798 hybrid +147_2-5 Q0 MARCO_16_4110415223-7 4 0.297855 hybrid +147_2-5 Q0 MARCO_06_694770796-1 5 0.259467 hybrid +147_2-5 Q0 MARCO_44_32790856-7 6 0.240483 hybrid +147_2-5 Q0 MARCO_44_32772068-7 7 0.240472 hybrid +147_2-5 Q0 MARCO_46_629689633-1 8 0.233231 hybrid +147_2-5 Q0 MARCO_27_1431814765-11 9 0.217225 hybrid +147_2-5 Q0 KILT_42681558-8 10 0.209486 hybrid +147_2-5 Q0 MARCO_44_610674293-1 11 0.204786 hybrid +147_2-5 Q0 MARCO_35_1383547965-11 12 0.203778 hybrid +147_2-5 Q0 MARCO_23_1085604106-1 13 0.199460 hybrid +147_2-5 Q0 MARCO_46_1471532707-4 14 0.180686 hybrid +147_2-5 Q0 MARCO_44_33070735-17 15 0.179042 hybrid +147_2-5 Q0 MARCO_31_292399071-1 16 0.178987 hybrid +147_2-5 Q0 MARCO_17_4189131090-22 17 0.175726 hybrid +147_2-5 Q0 MARCO_14_785661863-1 18 0.173910 hybrid +147_2-5 Q0 KILT_45079755-17 19 0.133717 hybrid +147_2-5 Q0 MARCO_00_1161555318-1 20 0.132012 hybrid +147_2-5 Q0 MARCO_05_316414893-5 21 0.130478 hybrid +147_2-5 Q0 MARCO_44_35079726-8 22 0.121742 hybrid +147_2-5 Q0 MARCO_12_1866611257-9 23 0.121349 hybrid +147_2-5 Q0 KILT_54114309-8 24 0.117136 hybrid +147_2-5 Q0 MARCO_36_888487863-6 25 0.114290 hybrid +147_2-5 Q0 MARCO_16_1901227596-7 26 0.111478 hybrid +147_2-5 Q0 MARCO_50_1184598166-17 27 0.109701 hybrid +147_2-5 Q0 MARCO_36_900179677-3 28 0.107071 hybrid +147_2-5 Q0 MARCO_15_107455358-32 29 0.100112 hybrid +147_2-5 Q0 MARCO_35_1383547965-1 30 0.090224 hybrid +147_2-5 Q0 MARCO_17_2532490713-28 31 0.088746 hybrid +147_2-5 Q0 MARCO_44_33187901-4 32 0.080502 hybrid +147_2-5 Q0 MARCO_44_33070735-10 33 0.078565 hybrid +147_2-5 Q0 KILT_45359871-39 34 0.076948 hybrid +147_2-5 Q0 MARCO_18_2158270291-19 35 0.065007 hybrid +147_2-5 Q0 MARCO_16_1907122391-26 36 0.058535 hybrid +147_2-5 Q0 MARCO_35_1381763178-3 37 0.034701 hybrid +147_2-5 Q0 MARCO_00_1161518643-3 38 0.030992 hybrid +147_2-5 Q0 MARCO_54_1564550144-1 39 0.028384 hybrid +147_2-5 Q0 MARCO_25_1033618547-4 40 0.019100 hybrid +147_2-5 Q0 MARCO_05_316414893-4 41 0.018175 hybrid +147_2-5 Q0 MARCO_01_694362831-8 42 0.017245 hybrid +147_2-5 Q0 MARCO_15_108217760-1 43 0.009544 hybrid +147_2-5 Q0 MARCO_53_733051109-6 44 0.007801 hybrid +147_2-5 Q0 MARCO_31_292203421-7 45 0.006859 hybrid +147_2-5 Q0 KILT_47069739-30 46 0.005531 hybrid +147_2-5 Q0 MARCO_57_1406582835-2 47 -0.002619 hybrid +147_2-5 Q0 MARCO_44_608064125-3 48 -0.006865 hybrid +147_2-5 Q0 MARCO_43_1275081467-1 49 -0.009528 hybrid +147_2-5 Q0 MARCO_35_1381811664-1 50 -0.014140 hybrid +147_2-5 Q0 MARCO_23_290279270-8 51 -0.019006 hybrid +147_2-5 Q0 KILT_56214450-11 52 -0.019919 hybrid +147_2-5 Q0 MARCO_10_552412371-2 53 -0.021525 hybrid +147_2-5 Q0 MARCO_17_686505820-2 54 -0.024514 hybrid +147_2-5 Q0 MARCO_18_1803225057-26 55 -0.024520 hybrid +147_2-5 Q0 MARCO_00_1161183399-4 56 -0.031623 hybrid +147_2-5 Q0 MARCO_16_1901227596-11 57 -0.033179 hybrid +147_2-5 Q0 MARCO_44_35079726-6 58 -0.038311 hybrid +147_2-5 Q0 MARCO_44_608618583-3 59 -0.039341 hybrid +147_2-5 Q0 MARCO_10_545116164-10 60 -0.040116 hybrid +147_2-5 Q0 KILT_51906520-2 61 -0.041417 hybrid +147_2-5 Q0 KILT_379018-38 62 -0.042402 hybrid +147_2-5 Q0 MARCO_44_35079726-13 63 -0.045358 hybrid +147_2-5 Q0 MARCO_27_1434420878-3 64 -0.046621 hybrid +147_2-5 Q0 MARCO_00_1161868671-5 65 -0.051332 hybrid +147_2-5 Q0 MARCO_43_1240223478-9 66 -0.052035 hybrid +147_2-5 Q0 MARCO_41_115465033-8 67 -0.053840 hybrid +147_2-5 Q0 MARCO_17_4188093557-2 68 -0.057516 hybrid +147_2-5 Q0 MARCO_40_175150328-8 69 -0.061137 hybrid +147_2-5 Q0 MARCO_54_1564838481-2 70 -0.064763 hybrid +147_2-5 Q0 MARCO_41_115845881-8 71 -0.065333 hybrid +147_2-5 Q0 MARCO_07_1580559307-7 72 -0.065588 hybrid +147_2-5 Q0 MARCO_18_1803225057-15 73 -0.067016 hybrid +147_2-5 Q0 MARCO_27_209363489-18 74 -0.069923 hybrid +147_2-5 Q0 KILT_898937-3 75 -0.073444 hybrid +147_2-5 Q0 MARCO_20_652500954-3 76 -0.076228 hybrid +147_2-5 Q0 MARCO_23_244603153-5 77 -0.076882 hybrid +147_2-5 Q0 MARCO_44_33070735-2 78 -0.086880 hybrid +147_2-5 Q0 MARCO_44_610655812-15 79 -0.088386 hybrid +147_2-5 Q0 MARCO_15_107130945-4 80 -0.090900 hybrid +147_2-5 Q0 MARCO_43_1240223478-7 81 -0.093164 hybrid +147_2-5 Q0 MARCO_54_1479573805-4 82 -0.095910 hybrid +147_2-5 Q0 MARCO_15_107455358-33 83 -0.096198 hybrid +147_2-5 Q0 MARCO_00_1161498748-4 84 -0.096635 hybrid +147_2-5 Q0 MARCO_44_33070735-12 85 -0.099077 hybrid +147_2-5 Q0 KILT_46536356-5 86 -0.100937 hybrid +147_2-5 Q0 MARCO_14_308518092-2 87 -0.102022 hybrid +147_2-5 Q0 MARCO_51_451864789-6 88 -0.102166 hybrid +147_2-5 Q0 MARCO_12_1866611257-13 89 -0.103079 hybrid +147_2-5 Q0 MARCO_57_1402108397-2 90 -0.103423 hybrid +147_2-5 Q0 MARCO_49_305055834-7 91 -0.105886 hybrid +147_2-5 Q0 MARCO_44_35079726-3 92 -0.107043 hybrid +147_2-5 Q0 MARCO_44_610097902-2 93 -0.107481 hybrid +147_2-5 Q0 MARCO_10_545116164-5 94 -0.111644 hybrid +147_2-5 Q0 MARCO_16_4112078153-15 95 -0.112640 hybrid +147_2-5 Q0 MARCO_30_98367754-3 96 -0.113144 hybrid +147_2-5 Q0 MARCO_16_4110415223-11 97 -0.114733 hybrid +147_2-5 Q0 MARCO_44_610655812-1 98 -0.116134 hybrid +147_2-5 Q0 KILT_36860986-46 99 -0.116150 hybrid +147_2-5 Q0 MARCO_18_3824494033-4 100 -0.117950 hybrid +148_1-1 Q0 MARCO_00_760279123-6 1 0.500002 hybrid +148_1-1 Q0 MARCO_35_983821953-4 2 0.327451 hybrid +148_1-1 Q0 MARCO_00_760291156-95 3 0.309355 hybrid +148_1-1 Q0 MARCO_50_1510921893-19 4 0.278588 hybrid +148_1-1 Q0 MARCO_00_760286197-4 5 0.276858 hybrid +148_1-1 Q0 MARCO_00_760400213-6 6 0.237803 hybrid +148_1-1 Q0 MARCO_54_359960603-5 7 0.221922 hybrid +148_1-1 Q0 MARCO_04_957171423-7 8 0.211190 hybrid +148_1-1 Q0 MARCO_46_705334403-11 9 0.193860 hybrid +148_1-1 Q0 MARCO_46_705334403-10 10 0.175158 hybrid +148_1-1 Q0 MARCO_02_361642399-20 11 0.109047 hybrid +148_1-1 Q0 MARCO_40_452049579-4 12 0.103963 hybrid +148_1-1 Q0 MARCO_28_329979304-2 13 0.083325 hybrid +148_1-1 Q0 MARCO_28_329941343-2 14 0.083196 hybrid +148_1-1 Q0 MARCO_32_146844336-8 15 0.078293 hybrid +148_1-1 Q0 MARCO_46_705334403-6 16 0.073260 hybrid +148_1-1 Q0 MARCO_46_705334403-7 17 0.073239 hybrid +148_1-1 Q0 MARCO_40_452377363-3 18 0.049074 hybrid +148_1-1 Q0 MARCO_00_760443343-4 19 0.045835 hybrid +148_1-1 Q0 MARCO_35_1137881726-5 20 0.036974 hybrid +148_1-1 Q0 MARCO_00_760438783-4 21 0.034183 hybrid +148_1-1 Q0 MARCO_41_2032961341-3 22 0.028767 hybrid +148_1-1 Q0 MARCO_47_288459855-2 23 0.026634 hybrid +148_1-1 Q0 MARCO_40_451879306-4 24 0.022143 hybrid +148_1-1 Q0 MARCO_40_822716980-4 25 0.019455 hybrid +148_1-1 Q0 MARCO_50_1410739461-18 26 0.017721 hybrid +148_1-1 Q0 MARCO_49_224679412-19 27 0.011063 hybrid +148_1-1 Q0 MARCO_28_330041165-2 28 0.005476 hybrid +148_1-1 Q0 MARCO_29_1689449011-4 29 0.000834 hybrid +148_1-1 Q0 MARCO_54_363553726-4 30 -0.013700 hybrid +148_1-1 Q0 MARCO_35_984199586-6 31 -0.030316 hybrid +148_1-1 Q0 MARCO_02_361642399-49 32 -0.031253 hybrid +148_1-1 Q0 MARCO_50_1187379621-19 33 -0.035899 hybrid +148_1-1 Q0 MARCO_28_329921102-2 34 -0.040626 hybrid +148_1-1 Q0 MARCO_40_452055797-3 35 -0.053435 hybrid +148_1-1 Q0 MARCO_28_329928655-2 36 -0.054369 hybrid +148_1-1 Q0 MARCO_04_957281288-7 37 -0.063328 hybrid +148_1-1 Q0 MARCO_50_1450911385-14 38 -0.065621 hybrid +148_1-1 Q0 MARCO_03_1689325357-2 39 -0.074103 hybrid +148_1-1 Q0 MARCO_50_938168189-47 40 -0.074563 hybrid +148_1-1 Q0 MARCO_00_721417266-47 41 -0.074641 hybrid +148_1-1 Q0 MARCO_57_1352949210-9 42 -0.074722 hybrid +148_1-1 Q0 MARCO_40_452110915-5 43 -0.076778 hybrid +148_1-1 Q0 MARCO_40_452143213-3 44 -0.077695 hybrid +148_1-1 Q0 MARCO_46_705334403-4 45 -0.082288 hybrid +148_1-1 Q0 MARCO_04_957171423-8 46 -0.082413 hybrid +148_1-1 Q0 MARCO_25_528818716-6 47 -0.083811 hybrid +148_1-1 Q0 MARCO_46_705334403-2 48 -0.085024 hybrid +148_1-1 Q0 MARCO_50_1187379621-18 49 -0.087213 hybrid +148_1-1 Q0 MARCO_28_339555653-6 50 -0.088994 hybrid +148_1-1 Q0 MARCO_28_330028249-2 51 -0.090095 hybrid +148_1-1 Q0 MARCO_35_1136386311-2 52 -0.092771 hybrid +148_1-1 Q0 MARCO_40_821541759-3 53 -0.093407 hybrid +148_1-1 Q0 MARCO_12_1727857020-9 54 -0.095343 hybrid +148_1-1 Q0 MARCO_00_760476630-6 55 -0.098461 hybrid +148_1-1 Q0 MARCO_54_359960603-6 56 -0.102711 hybrid +148_1-1 Q0 MARCO_00_760260163-4 57 -0.110019 hybrid +148_1-1 Q0 MARCO_28_329905786-2 58 -0.113163 hybrid +148_1-1 Q0 MARCO_54_1525994011-3 59 -0.114518 hybrid +148_1-1 Q0 MARCO_50_1186856656-19 60 -0.115439 hybrid +148_1-1 Q0 MARCO_29_1689873647-6 61 -0.120841 hybrid +148_1-1 Q0 MARCO_30_822243174-9 62 -0.121129 hybrid +148_1-1 Q0 MARCO_47_978858019-13 63 -0.121396 hybrid +148_1-1 Q0 MARCO_06_540798245-3 64 -0.121766 hybrid +148_1-1 Q0 MARCO_28_330048811-2 65 -0.123620 hybrid +148_1-1 Q0 MARCO_46_772110075-3 66 -0.125151 hybrid +148_1-1 Q0 MARCO_34_1144415398-10 67 -0.126003 hybrid +148_1-1 Q0 MARCO_22_1643560449-3 68 -0.127199 hybrid +148_1-1 Q0 MARCO_03_1032124989-1 69 -0.131822 hybrid +148_1-1 Q0 MARCO_59_533246010-7 70 -0.132184 hybrid +148_1-1 Q0 MARCO_22_1643560449-10 71 -0.134889 hybrid +148_1-1 Q0 MARCO_37_1249782536-2 72 -0.135466 hybrid +148_1-1 Q0 MARCO_35_982005027-2 73 -0.135496 hybrid +148_1-1 Q0 MARCO_56_824979844-3 74 -0.136408 hybrid +148_1-1 Q0 MARCO_56_459502743-4 75 -0.137423 hybrid +148_1-1 Q0 MARCO_50_2753871987-6 76 -0.139918 hybrid +148_1-1 Q0 MARCO_36_838622581-3 77 -0.140997 hybrid +148_1-1 Q0 MARCO_45_1578354847-2 78 -0.141105 hybrid +148_1-1 Q0 MARCO_24_1131796398-9 79 -0.141122 hybrid +148_1-1 Q0 MARCO_50_2753937838-2 80 -0.141539 hybrid +148_1-1 Q0 MARCO_40_822716980-5 81 -0.142606 hybrid +148_1-1 Q0 MARCO_56_459511186-7 82 -0.143685 hybrid +148_1-1 Q0 MARCO_56_314743633-10 83 -0.143862 hybrid +148_1-1 Q0 MARCO_03_1686114512-10 84 -0.144021 hybrid +148_1-1 Q0 MARCO_35_984169621-11 85 -0.146701 hybrid +148_1-1 Q0 MARCO_40_452154509-5 86 -0.149191 hybrid +148_1-1 Q0 MARCO_03_942317945-3 87 -0.149875 hybrid +148_1-1 Q0 MARCO_54_364011592-3 88 -0.151036 hybrid +148_1-1 Q0 MARCO_28_540619422-2 89 -0.151914 hybrid +148_1-1 Q0 MARCO_54_364011592-2 90 -0.153540 hybrid +148_1-1 Q0 MARCO_40_1270159446-2 91 -0.153884 hybrid +148_1-1 Q0 MARCO_50_1188416805-3 92 -0.158482 hybrid +148_1-1 Q0 MARCO_28_330041165-4 93 -0.159858 hybrid +148_1-1 Q0 MARCO_40_452487686-4 94 -0.159863 hybrid +148_1-1 Q0 MARCO_59_537579688-7 95 -0.159996 hybrid +148_1-1 Q0 MARCO_51_1286200752-4 96 -0.160121 hybrid +148_1-1 Q0 MARCO_13_401452905-3 97 -0.164689 hybrid +148_1-1 Q0 MARCO_27_1706217605-2 98 -0.166999 hybrid +148_1-1 Q0 MARCO_09_674475622-6 99 -0.169601 hybrid +148_1-1 Q0 MARCO_35_1136386311-4 100 -0.172444 hybrid +148_1-3 Q0 MARCO_32_151639311-9 1 0.500000 hybrid +148_1-3 Q0 MARCO_28_1800432706-4 2 0.424822 hybrid +148_1-3 Q0 MARCO_04_1212974143-4 3 0.400965 hybrid +148_1-3 Q0 MARCO_50_723135453-3 4 0.332605 hybrid +148_1-3 Q0 MARCO_56_825003119-4 5 0.323450 hybrid +148_1-3 Q0 MARCO_21_1148914035-4 6 0.321488 hybrid +148_1-3 Q0 MARCO_29_789658183-7 7 0.316174 hybrid +148_1-3 Q0 MARCO_36_837159568-4 8 0.292623 hybrid +148_1-3 Q0 MARCO_29_1690865094-6 9 0.284605 hybrid +148_1-3 Q0 MARCO_04_1031974828-3 10 0.280815 hybrid +148_1-3 Q0 MARCO_50_1416666844-64 11 0.268952 hybrid +148_1-3 Q0 MARCO_38_1460766708-16 12 0.259248 hybrid +148_1-3 Q0 MARCO_13_1765703453-60 13 0.233676 hybrid +148_1-3 Q0 MARCO_45_174341378-9 14 0.233483 hybrid +148_1-3 Q0 MARCO_37_1250963311-18 15 0.233214 hybrid +148_1-3 Q0 MARCO_10_72839680-5 16 0.226345 hybrid +148_1-3 Q0 MARCO_13_1790557331-6 17 0.223670 hybrid +148_1-3 Q0 MARCO_13_404022361-2 18 0.215144 hybrid +148_1-3 Q0 MARCO_21_1148922316-10 19 0.208944 hybrid +148_1-3 Q0 MARCO_35_984783361-4 20 0.191556 hybrid +148_1-3 Q0 MARCO_16_107813219-4 21 0.188195 hybrid +148_1-3 Q0 MARCO_21_1146237731-10 22 0.171869 hybrid +148_1-3 Q0 MARCO_29_1687545937-2 23 0.170466 hybrid +148_1-3 Q0 MARCO_00_762053020-4 24 0.169492 hybrid +148_1-3 Q0 MARCO_45_980460899-8 25 0.167097 hybrid +148_1-3 Q0 MARCO_38_1460766708-17 26 0.162554 hybrid +148_1-3 Q0 MARCO_54_4922130-5 27 0.154852 hybrid +148_1-3 Q0 MARCO_24_980569116-20 28 0.139533 hybrid +148_1-3 Q0 MARCO_23_648163434-148 29 0.139083 hybrid +148_1-3 Q0 MARCO_38_1460766708-14 30 0.138570 hybrid +148_1-3 Q0 MARCO_27_1206866864-3 31 0.137538 hybrid +148_1-3 Q0 MARCO_54_8545664-5 32 0.137469 hybrid +148_1-3 Q0 MARCO_13_1790455662-2 33 0.129099 hybrid +148_1-3 Q0 MARCO_37_1250593537-19 34 0.121953 hybrid +148_1-3 Q0 MARCO_45_977374470-13 35 0.119380 hybrid +148_1-3 Q0 MARCO_50_492269370-16 36 0.115851 hybrid +148_1-3 Q0 MARCO_00_1002197385-26 37 0.109142 hybrid +148_1-3 Q0 MARCO_13_1258043404-6 38 0.103549 hybrid +148_1-3 Q0 MARCO_43_748166267-2 39 0.098497 hybrid +148_1-3 Q0 MARCO_31_942598680-7 40 0.089076 hybrid +148_1-3 Q0 MARCO_35_984783361-5 41 0.078667 hybrid +148_1-3 Q0 MARCO_39_825312643-3 42 0.074237 hybrid +148_1-3 Q0 MARCO_33_358302468-3 43 0.073986 hybrid +148_1-3 Q0 MARCO_16_106935364-4 44 0.071900 hybrid +148_1-3 Q0 MARCO_13_649354160-5 45 0.054607 hybrid +148_1-3 Q0 MARCO_13_649341550-5 46 0.054607 hybrid +148_1-3 Q0 MARCO_45_1578782511-7 47 0.053455 hybrid +148_1-3 Q0 MARCO_59_357844842-3 48 0.049632 hybrid +148_1-3 Q0 MARCO_16_109043476-3 49 0.047905 hybrid +148_1-3 Q0 MARCO_45_977374470-6 50 0.038198 hybrid +148_1-3 Q0 MARCO_40_1268435019-4 51 0.036762 hybrid +148_1-3 Q0 MARCO_57_1223711409-6 52 0.033506 hybrid +148_1-3 Q0 MARCO_13_649273695-5 53 0.027276 hybrid +148_1-3 Q0 MARCO_35_982257495-16 54 0.022330 hybrid +148_1-3 Q0 MARCO_56_503276605-7 55 0.019997 hybrid +148_1-3 Q0 MARCO_35_983536528-8 56 0.015508 hybrid +148_1-3 Q0 MARCO_00_1002197385-28 57 0.013200 hybrid +148_1-3 Q0 MARCO_02_1546233857-10 58 0.009424 hybrid +148_1-3 Q0 MARCO_43_777039476-10 59 0.006295 hybrid +148_1-3 Q0 MARCO_15_1987081222-7 60 0.003355 hybrid +148_1-3 Q0 MARCO_14_1616747718-3 61 0.002980 hybrid +148_1-3 Q0 MARCO_54_1937852613-3 62 -0.005808 hybrid +148_1-3 Q0 MARCO_26_1060586399-2 63 -0.008134 hybrid +148_1-3 Q0 MARCO_39_611319802-2 64 -0.010605 hybrid +148_1-3 Q0 MARCO_44_1486719335-7 65 -0.013742 hybrid +148_1-3 Q0 MARCO_25_240160674-5 66 -0.016428 hybrid +148_1-3 Q0 MARCO_56_1023618975-54 67 -0.019404 hybrid +148_1-3 Q0 MARCO_56_1023618975-52 68 -0.019404 hybrid +148_1-3 Q0 MARCO_14_332107433-43 69 -0.020607 hybrid +148_1-3 Q0 MARCO_35_984720931-2 70 -0.023199 hybrid +148_1-3 Q0 MARCO_26_821712371-15 71 -0.024256 hybrid +148_1-3 Q0 MARCO_28_425789730-7 72 -0.025038 hybrid +148_1-3 Q0 MARCO_16_107511250-5 73 -0.026946 hybrid +148_1-3 Q0 MARCO_28_810936543-3 74 -0.029014 hybrid +148_1-3 Q0 MARCO_00_923518685-8 75 -0.032128 hybrid +148_1-3 Q0 MARCO_28_537618483-5 76 -0.037889 hybrid +148_1-3 Q0 MARCO_26_352348113-34 77 -0.039917 hybrid +148_1-3 Q0 MARCO_56_825003119-1 78 -0.040778 hybrid +148_1-3 Q0 MARCO_35_984707682-4 79 -0.042777 hybrid +148_1-3 Q0 MARCO_24_1915517779-4 80 -0.043511 hybrid +148_1-3 Q0 MARCO_35_984768700-2 81 -0.043577 hybrid +148_1-3 Q0 MARCO_50_1979586361-46 82 -0.045957 hybrid +148_1-3 Q0 MARCO_35_802195311-2 83 -0.046750 hybrid +148_1-3 Q0 MARCO_48_288616955-2 84 -0.049268 hybrid +148_1-3 Q0 MARCO_01_1556595910-18 85 -0.051020 hybrid +148_1-3 Q0 MARCO_08_895179009-10 86 -0.055342 hybrid +148_1-3 Q0 MARCO_43_742992721-2 87 -0.056868 hybrid +148_1-3 Q0 MARCO_32_262363586-5 88 -0.057362 hybrid +148_1-3 Q0 MARCO_28_1800432706-2 89 -0.059445 hybrid +148_1-3 Q0 MARCO_47_675498434-3 90 -0.064093 hybrid +148_1-3 Q0 MARCO_37_1256958496-8 91 -0.064177 hybrid +148_1-3 Q0 MARCO_37_1251282706-22 92 -0.065002 hybrid +148_1-3 Q0 MARCO_36_29477323-8 93 -0.065405 hybrid +148_1-3 Q0 MARCO_56_825003119-5 94 -0.067611 hybrid +148_1-3 Q0 MARCO_37_1252397727-13 95 -0.068495 hybrid +148_1-3 Q0 MARCO_36_1591981387-7 96 -0.069439 hybrid +148_1-3 Q0 MARCO_43_746664431-2 97 -0.070624 hybrid +148_1-3 Q0 MARCO_31_1555391965-17 98 -0.070792 hybrid +148_1-3 Q0 MARCO_37_1253662916-8 99 -0.072561 hybrid +148_1-3 Q0 MARCO_55_818199435-50 100 -0.075840 hybrid +148_1-5 Q0 MARCO_40_1277399291-1 1 0.500002 hybrid +148_1-5 Q0 MARCO_50_1944730728-4 2 0.472222 hybrid +148_1-5 Q0 MARCO_55_1345847584-9 3 0.391473 hybrid +148_1-5 Q0 MARCO_50_1942483960-5 4 0.386911 hybrid +148_1-5 Q0 MARCO_35_987020589-11 5 0.384287 hybrid +148_1-5 Q0 MARCO_46_705334403-1 6 0.366329 hybrid +148_1-5 Q0 MARCO_50_1186856656-17 7 0.324641 hybrid +148_1-5 Q0 MARCO_50_1416666844-73 8 0.308152 hybrid +148_1-5 Q0 MARCO_59_533246010-7 9 0.261005 hybrid +148_1-5 Q0 MARCO_50_1508999748-46 10 0.243154 hybrid +148_1-5 Q0 MARCO_50_1508999748-40 11 0.220841 hybrid +148_1-5 Q0 MARCO_51_118078577-3 12 0.211054 hybrid +148_1-5 Q0 MARCO_50_2386659125-36 13 0.186676 hybrid +148_1-5 Q0 MARCO_10_892334905-12 14 0.185906 hybrid +148_1-5 Q0 MARCO_13_21006101-7 15 0.169465 hybrid +148_1-5 Q0 MARCO_50_2386659125-22 16 0.169386 hybrid +148_1-5 Q0 MARCO_50_2386659125-23 17 0.169088 hybrid +148_1-5 Q0 MARCO_50_2375986043-34 18 0.167944 hybrid +148_1-5 Q0 MARCO_07_822425487-5 19 0.162716 hybrid +148_1-5 Q0 MARCO_50_2490343126-3 20 0.146997 hybrid +148_1-5 Q0 MARCO_50_1416666844-23 21 0.145941 hybrid +148_1-5 Q0 KILT_38321234-3 22 0.138917 hybrid +148_1-5 Q0 MARCO_46_705334403-7 23 0.126093 hybrid +148_1-5 Q0 MARCO_32_147051342-7 24 0.125966 hybrid +148_1-5 Q0 MARCO_46_705334403-2 25 0.118184 hybrid +148_1-5 Q0 MARCO_50_1933511130-17 26 0.106798 hybrid +148_1-5 Q0 MARCO_50_1508999748-41 27 0.102125 hybrid +148_1-5 Q0 MARCO_00_923493309-3 28 0.095760 hybrid +148_1-5 Q0 MARCO_46_705334403-11 29 0.093779 hybrid +148_1-5 Q0 MARCO_00_760400213-6 30 0.092913 hybrid +148_1-5 Q0 MARCO_50_1416666844-35 31 0.092751 hybrid +148_1-5 Q0 MARCO_50_1419689794-1 32 0.091607 hybrid +148_1-5 Q0 MARCO_50_928694011-5 33 0.087867 hybrid +148_1-5 Q0 MARCO_50_2386659125-10 34 0.082392 hybrid +148_1-5 Q0 MARCO_50_1416666844-36 35 0.080113 hybrid +148_1-5 Q0 MARCO_51_118128718-11 36 0.075932 hybrid +148_1-5 Q0 MARCO_20_1576446947-10 37 0.075460 hybrid +148_1-5 Q0 MARCO_50_1983407280-5 38 0.070652 hybrid +148_1-5 Q0 MARCO_08_817850973-110 39 0.070291 hybrid +148_1-5 Q0 MARCO_41_382343500-5 40 0.068575 hybrid +148_1-5 Q0 MARCO_29_1694834072-3 41 0.065276 hybrid +148_1-5 Q0 MARCO_10_891809968-18 42 0.061818 hybrid +148_1-5 Q0 MARCO_50_1410739461-20 43 0.059837 hybrid +148_1-5 Q0 MARCO_50_1188375591-7 44 0.057300 hybrid +148_1-5 Q0 MARCO_10_892223149-19 45 0.044503 hybrid +148_1-5 Q0 MARCO_50_1416666844-38 46 0.040962 hybrid +148_1-5 Q0 MARCO_50_1618621781-68 47 0.037460 hybrid +148_1-5 Q0 MARCO_43_777079008-35 48 0.032414 hybrid +148_1-5 Q0 MARCO_00_926893645-29 49 0.030071 hybrid +148_1-5 Q0 MARCO_06_1258791718-92 50 0.029162 hybrid +148_1-5 Q0 MARCO_40_1600250112-14 51 0.025819 hybrid +148_1-5 Q0 MARCO_50_1186856656-20 52 0.020884 hybrid +148_1-5 Q0 MARCO_20_1576514787-10 53 0.016028 hybrid +148_1-5 Q0 MARCO_50_1183736820-10 54 0.015830 hybrid +148_1-5 Q0 MARCO_50_1186856656-21 55 0.014361 hybrid +148_1-5 Q0 MARCO_07_821676801-24 56 0.013785 hybrid +148_1-5 Q0 MARCO_11_785678144-4 57 0.010089 hybrid +148_1-5 Q0 MARCO_11_785678144-2 58 0.006575 hybrid +148_1-5 Q0 MARCO_08_818063472-5 59 0.005316 hybrid +148_1-5 Q0 MARCO_39_807503302-3 60 0.002493 hybrid +148_1-5 Q0 MARCO_37_1275466593-23 61 -0.004705 hybrid +148_1-5 Q0 MARCO_36_1435099040-16 62 -0.010458 hybrid +148_1-5 Q0 MARCO_59_538086954-19 63 -0.016104 hybrid +148_1-5 Q0 MARCO_50_1516527274-35 64 -0.016731 hybrid +148_1-5 Q0 MARCO_50_1186856656-5 65 -0.018176 hybrid +148_1-5 Q0 MARCO_35_1138369545-6 66 -0.020844 hybrid +148_1-5 Q0 MARCO_49_437477088-7 67 -0.021841 hybrid +148_1-5 Q0 MARCO_50_1186856656-28 68 -0.022238 hybrid +148_1-5 Q0 MARCO_35_982404259-11 69 -0.023385 hybrid +148_1-5 Q0 KILT_5917624-4 70 -0.025620 hybrid +148_1-5 Q0 MARCO_50_2386659125-39 71 -0.028769 hybrid +148_1-5 Q0 MARCO_06_1258791718-279 72 -0.029297 hybrid +148_1-5 Q0 MARCO_50_1944713621-3 73 -0.030139 hybrid +148_1-5 Q0 MARCO_51_113322972-15 74 -0.031588 hybrid +148_1-5 Q0 MARCO_16_109057391-3 75 -0.032287 hybrid +148_1-5 Q0 MARCO_56_317635363-2 76 -0.033498 hybrid +148_1-5 Q0 MARCO_00_926893645-16 77 -0.035137 hybrid +148_1-5 Q0 MARCO_39_807503302-4 78 -0.037357 hybrid +148_1-5 Q0 KILT_43569468-3 79 -0.038075 hybrid +148_1-5 Q0 MARCO_00_1585128998-2 80 -0.040549 hybrid +148_1-5 Q0 MARCO_21_1146782211-4 81 -0.042737 hybrid +148_1-5 Q0 MARCO_05_452109998-3 82 -0.043808 hybrid +148_1-5 Q0 MARCO_50_1928022728-8 83 -0.046500 hybrid +148_1-5 Q0 MARCO_50_1416666844-7 84 -0.048053 hybrid +148_1-5 Q0 MARCO_04_409371526-4 85 -0.048501 hybrid +148_1-5 Q0 MARCO_50_940496772-4 86 -0.048613 hybrid +148_1-5 Q0 MARCO_50_1944713621-9 87 -0.050641 hybrid +148_1-5 Q0 MARCO_50_1397396001-12 88 -0.050745 hybrid +148_1-5 Q0 MARCO_50_940573435-102 89 -0.051606 hybrid +148_1-5 Q0 MARCO_50_2157457161-21 90 -0.055037 hybrid +148_1-5 Q0 MARCO_41_2033733602-5 91 -0.057097 hybrid +148_1-5 Q0 MARCO_50_1416666844-43 92 -0.057327 hybrid +148_1-5 Q0 MARCO_50_1186856656-18 93 -0.067853 hybrid +148_1-5 Q0 MARCO_50_1186856656-19 94 -0.070068 hybrid +148_1-5 Q0 MARCO_50_1984876872-18 95 -0.071378 hybrid +148_1-5 Q0 MARCO_46_705334403-12 96 -0.073165 hybrid +148_1-5 Q0 MARCO_16_108164915-4 97 -0.073201 hybrid +148_1-5 Q0 MARCO_50_1977914436-12 98 -0.074713 hybrid +148_1-5 Q0 MARCO_50_1451590394-15 99 -0.074995 hybrid +148_1-5 Q0 MARCO_24_1131796398-8 100 -0.075007 hybrid +148_1-7 Q0 MARCO_28_339555653-6 1 0.500002 hybrid +148_1-7 Q0 MARCO_54_363553726-4 2 0.369208 hybrid +148_1-7 Q0 MARCO_00_926893645-29 3 0.363446 hybrid +148_1-7 Q0 MARCO_50_2160027919-13 4 0.293682 hybrid +148_1-7 Q0 MARCO_46_705334403-11 5 0.284949 hybrid +148_1-7 Q0 MARCO_50_674811875-15 6 0.240601 hybrid +148_1-7 Q0 MARCO_46_705334403-12 7 0.228480 hybrid +148_1-7 Q0 MARCO_02_361642399-49 8 0.213462 hybrid +148_1-7 Q0 MARCO_19_2484886309-6 9 0.213375 hybrid +148_1-7 Q0 MARCO_57_1352949210-9 10 0.205004 hybrid +148_1-7 Q0 MARCO_05_320483468-6 11 0.195176 hybrid +148_1-7 Q0 MARCO_04_958083866-6 12 0.193988 hybrid +148_1-7 Q0 MARCO_50_2486569954-68 13 0.189564 hybrid +148_1-7 Q0 MARCO_55_1345847584-9 14 0.182665 hybrid +148_1-7 Q0 MARCO_17_669700504-1 15 0.171071 hybrid +148_1-7 Q0 MARCO_50_1524285459-3 16 0.163989 hybrid +148_1-7 Q0 MARCO_12_1727840069-10 17 0.156131 hybrid +148_1-7 Q0 MARCO_52_1142396638-4 18 0.124216 hybrid +148_1-7 Q0 MARCO_04_958083866-3 19 0.121442 hybrid +148_1-7 Q0 MARCO_15_106607322-7 20 0.114964 hybrid +148_1-7 Q0 MARCO_13_1664739127-6 21 0.105603 hybrid +148_1-7 Q0 MARCO_50_1514944322-26 22 0.097934 hybrid +148_1-7 Q0 MARCO_11_1449924548-3 23 0.092534 hybrid +148_1-7 Q0 MARCO_50_1186856656-5 24 0.091484 hybrid +148_1-7 Q0 MARCO_40_1189989336-11 25 0.089315 hybrid +148_1-7 Q0 MARCO_50_2401715259-21 26 0.082031 hybrid +148_1-7 Q0 MARCO_13_1253316922-3 27 0.081421 hybrid +148_1-7 Q0 MARCO_33_1236772326-11 28 0.075650 hybrid +148_1-7 Q0 MARCO_59_1034271336-28 29 0.075613 hybrid +148_1-7 Q0 MARCO_50_2386659125-39 30 0.074756 hybrid +148_1-7 Q0 MARCO_50_928694011-6 31 0.072198 hybrid +148_1-7 Q0 MARCO_40_1269226091-2 32 0.066921 hybrid +148_1-7 Q0 MARCO_46_705334403-1 33 0.066179 hybrid +148_1-7 Q0 MARCO_36_836905178-2 34 0.063492 hybrid +148_1-7 Q0 MARCO_50_1410739461-18 35 0.061947 hybrid +148_1-7 Q0 MARCO_24_1131796398-9 36 0.061388 hybrid +148_1-7 Q0 MARCO_04_958277495-10 37 0.058312 hybrid +148_1-7 Q0 MARCO_03_579711135-55 38 0.054892 hybrid +148_1-7 Q0 MARCO_10_892334905-12 39 0.047296 hybrid +148_1-7 Q0 MARCO_46_705334403-7 40 0.043803 hybrid +148_1-7 Q0 MARCO_35_983762278-3 41 0.043596 hybrid +148_1-7 Q0 MARCO_50_1455941233-15 42 0.043587 hybrid +148_1-7 Q0 MARCO_48_1537067061-2 43 0.042785 hybrid +148_1-7 Q0 MARCO_26_408038102-27 44 0.039448 hybrid +148_1-7 Q0 MARCO_50_1514944322-31 45 0.039333 hybrid +148_1-7 Q0 MARCO_37_1275466593-23 46 0.037302 hybrid +148_1-7 Q0 MARCO_54_319887768-6 47 0.036550 hybrid +148_1-7 Q0 MARCO_50_1186856656-20 48 0.034304 hybrid +148_1-7 Q0 MARCO_37_1259312669-55 49 0.033484 hybrid +148_1-7 Q0 MARCO_08_815315816-6 50 0.033291 hybrid +148_1-7 Q0 MARCO_11_1378602581-20 51 0.030728 hybrid +148_1-7 Q0 MARCO_50_1186856656-19 52 0.029789 hybrid +148_1-7 Q0 MARCO_27_1704762768-2 53 0.026295 hybrid +148_1-7 Q0 MARCO_50_1457136264-15 54 0.018979 hybrid +148_1-7 Q0 MARCO_04_958213226-3 55 0.016380 hybrid +148_1-7 Q0 MARCO_04_957918083-3 56 0.016380 hybrid +148_1-7 Q0 MARCO_04_958149359-3 57 0.016380 hybrid +148_1-7 Q0 MARCO_04_958149359-25 58 0.016380 hybrid +148_1-7 Q0 MARCO_50_938168189-41 59 0.012139 hybrid +148_1-7 Q0 MARCO_03_579711135-54 60 0.006913 hybrid +148_1-7 Q0 MARCO_31_1556267116-5 61 0.005254 hybrid +148_1-7 Q0 MARCO_00_760279123-6 62 0.005079 hybrid +148_1-7 Q0 MARCO_04_958083866-13 63 0.004218 hybrid +148_1-7 Q0 MARCO_04_958149359-16 64 0.004218 hybrid +148_1-7 Q0 MARCO_04_958083866-9 65 0.004218 hybrid +148_1-7 Q0 MARCO_04_958083866-39 66 0.004218 hybrid +148_1-7 Q0 MARCO_04_957918083-6 67 0.004218 hybrid +148_1-7 Q0 MARCO_04_957918083-18 68 0.004204 hybrid +148_1-7 Q0 MARCO_07_829349436-17 69 -0.001715 hybrid +148_1-7 Q0 MARCO_29_1689742490-14 70 -0.008669 hybrid +148_1-7 Q0 MARCO_04_958083866-20 71 -0.009737 hybrid +148_1-7 Q0 MARCO_04_958213226-16 72 -0.009737 hybrid +148_1-7 Q0 MARCO_04_958149359-19 73 -0.009737 hybrid +148_1-7 Q0 MARCO_04_957918083-21 74 -0.009737 hybrid +148_1-7 Q0 MARCO_23_1594868060-16 75 -0.011594 hybrid +148_1-7 Q0 MARCO_32_146801954-7 76 -0.012157 hybrid +148_1-7 Q0 MARCO_03_1672925419-6 77 -0.015082 hybrid +148_1-7 Q0 MARCO_50_1450911385-14 78 -0.018516 hybrid +148_1-7 Q0 MARCO_05_1747028697-3 79 -0.019502 hybrid +148_1-7 Q0 MARCO_04_958277495-3 80 -0.025910 hybrid +148_1-7 Q0 MARCO_04_958213226-20 81 -0.025910 hybrid +148_1-7 Q0 MARCO_25_73366537-2 82 -0.026474 hybrid +148_1-7 Q0 MARCO_29_1689449011-2 83 -0.029408 hybrid +148_1-7 Q0 MARCO_22_398307547-6 84 -0.034171 hybrid +148_1-7 Q0 MARCO_50_1519237905-15 85 -0.036193 hybrid +148_1-7 Q0 MARCO_12_75760548-2 86 -0.036578 hybrid +148_1-7 Q0 MARCO_04_958083866-36 87 -0.041181 hybrid +148_1-7 Q0 MARCO_04_958213226-29 88 -0.041190 hybrid +148_1-7 Q0 MARCO_04_958149359-29 89 -0.041190 hybrid +148_1-7 Q0 MARCO_04_957918083-47 90 -0.041190 hybrid +148_1-7 Q0 MARCO_04_957918083-31 91 -0.041190 hybrid +148_1-7 Q0 MARCO_03_1673457218-6 92 -0.041313 hybrid +148_1-7 Q0 MARCO_53_1468878625-3 93 -0.043074 hybrid +148_1-7 Q0 MARCO_34_107957813-9 94 -0.043794 hybrid +148_1-7 Q0 MARCO_20_1187749929-8 95 -0.047860 hybrid +148_1-7 Q0 MARCO_59_533246010-7 96 -0.048717 hybrid +148_1-7 Q0 MARCO_28_339638620-4 97 -0.049226 hybrid +148_1-7 Q0 MARCO_50_1983145593-7 98 -0.050124 hybrid +148_1-7 Q0 MARCO_00_721417266-18 99 -0.051037 hybrid +148_1-7 Q0 MARCO_57_1265619073-3 100 -0.051876 hybrid +148_1-9 Q0 MARCO_56_314743633-14 1 0.500002 hybrid +148_1-9 Q0 MARCO_04_958083866-6 2 0.426955 hybrid +148_1-9 Q0 MARCO_04_958083866-3 3 0.423659 hybrid +148_1-9 Q0 MARCO_05_450238694-5 4 0.359156 hybrid +148_1-9 Q0 MARCO_46_705334403-12 5 0.313864 hybrid +148_1-9 Q0 MARCO_48_1296352633-5 6 0.255696 hybrid +148_1-9 Q0 MARCO_37_1255198346-70 7 0.243226 hybrid +148_1-9 Q0 MARCO_28_330048811-4 8 0.243005 hybrid +148_1-9 Q0 MARCO_29_663090393-9 9 0.238486 hybrid +148_1-9 Q0 MARCO_50_1984876872-18 10 0.224437 hybrid +148_1-9 Q0 MARCO_00_922507913-2 11 0.222678 hybrid +148_1-9 Q0 MARCO_59_538271252-29 12 0.220392 hybrid +148_1-9 Q0 MARCO_54_363553726-4 13 0.208539 hybrid +148_1-9 Q0 MARCO_04_958277495-10 14 0.208461 hybrid +148_1-9 Q0 MARCO_40_451892794-4 15 0.205983 hybrid +148_1-9 Q0 MARCO_38_408760675-8 16 0.198396 hybrid +148_1-9 Q0 MARCO_04_958083866-13 17 0.195365 hybrid +148_1-9 Q0 MARCO_04_957918083-18 18 0.195365 hybrid +148_1-9 Q0 MARCO_04_958149359-16 19 0.195365 hybrid +148_1-9 Q0 MARCO_04_958083866-9 20 0.195365 hybrid +148_1-9 Q0 MARCO_04_958083866-39 21 0.195365 hybrid +148_1-9 Q0 MARCO_04_957918083-6 22 0.195365 hybrid +148_1-9 Q0 MARCO_41_1819399084-2 23 0.184281 hybrid +148_1-9 Q0 MARCO_35_332531962-2 24 0.178003 hybrid +148_1-9 Q0 MARCO_54_319925937-4 25 0.176228 hybrid +148_1-9 Q0 MARCO_04_958213226-3 26 0.176187 hybrid +148_1-9 Q0 MARCO_04_957918083-3 27 0.176187 hybrid +148_1-9 Q0 MARCO_04_958149359-3 28 0.176187 hybrid +148_1-9 Q0 MARCO_04_958149359-25 29 0.176187 hybrid +148_1-9 Q0 MARCO_00_922507913-4 30 0.175136 hybrid +148_1-9 Q0 KILT_52111558-3 31 0.165643 hybrid +148_1-9 Q0 MARCO_28_329979304-4 32 0.165631 hybrid +148_1-9 Q0 MARCO_40_452193451-6 33 0.159042 hybrid +148_1-9 Q0 MARCO_04_958083866-18 34 0.158965 hybrid +148_1-9 Q0 MARCO_04_958083866-25 35 0.158965 hybrid +148_1-9 Q0 MARCO_46_772110075-3 36 0.153856 hybrid +148_1-9 Q0 MARCO_05_450238694-12 37 0.152249 hybrid +148_1-9 Q0 MARCO_40_1277399291-1 38 0.151128 hybrid +148_1-9 Q0 MARCO_04_958213226-22 39 0.145791 hybrid +148_1-9 Q0 MARCO_04_958083866-24 40 0.145791 hybrid +148_1-9 Q0 MARCO_04_958083866-17 41 0.145791 hybrid +148_1-9 Q0 MARCO_35_982385348-11 42 0.143480 hybrid +148_1-9 Q0 MARCO_04_412398361-3 43 0.141308 hybrid +148_1-9 Q0 MARCO_46_380842855-4 44 0.127042 hybrid +148_1-9 Q0 MARCO_55_1345847584-9 45 0.126715 hybrid +148_1-9 Q0 MARCO_37_1253965233-9 46 0.118756 hybrid +148_1-9 Q0 MARCO_10_892334905-12 47 0.113161 hybrid +148_1-9 Q0 MARCO_46_705334403-8 48 0.109660 hybrid +148_1-9 Q0 MARCO_13_1688281863-13 49 0.107030 hybrid +148_1-9 Q0 MARCO_25_433201045-1 50 0.100973 hybrid +148_1-9 Q0 MARCO_05_450238694-3 51 0.098695 hybrid +148_1-9 Q0 MARCO_40_821604070-4 52 0.087239 hybrid +148_1-9 Q0 MARCO_29_1690034663-7 53 0.077897 hybrid +148_1-9 Q0 MARCO_04_957918083-34 54 0.077394 hybrid +148_1-9 Q0 MARCO_04_958149359-32 55 0.077394 hybrid +148_1-9 Q0 MARCO_04_958149359-44 56 0.077394 hybrid +148_1-9 Q0 MARCO_04_958213226-40 57 0.077394 hybrid +148_1-9 Q0 MARCO_04_957918083-10 58 0.077394 hybrid +148_1-9 Q0 MARCO_04_958213226-36 59 0.077394 hybrid +148_1-9 Q0 MARCO_04_957918083-50 60 0.077394 hybrid +148_1-9 Q0 MARCO_04_958277495-15 61 0.077394 hybrid +148_1-9 Q0 MARCO_04_958149359-12 62 0.077394 hybrid +148_1-9 Q0 MARCO_04_958213226-12 63 0.077394 hybrid +148_1-9 Q0 MARCO_04_958277495-6 64 0.077394 hybrid +148_1-9 Q0 MARCO_04_958213226-8 65 0.077394 hybrid +148_1-9 Q0 MARCO_04_957918083-14 66 0.077394 hybrid +148_1-9 Q0 MARCO_04_958277495-19 67 0.077394 hybrid +148_1-9 Q0 MARCO_04_958213226-44 68 0.077394 hybrid +148_1-9 Q0 MARCO_04_958149359-40 69 0.077394 hybrid +148_1-9 Q0 MARCO_04_958083866-43 70 0.077394 hybrid +148_1-9 Q0 MARCO_04_957918083-54 71 0.077394 hybrid +148_1-9 Q0 MARCO_04_958213226-32 72 0.077394 hybrid +148_1-9 Q0 MARCO_04_958149359-36 73 0.077394 hybrid +148_1-9 Q0 MARCO_04_957918083-42 74 0.077394 hybrid +148_1-9 Q0 MARCO_04_958083866-28 75 0.077394 hybrid +148_1-9 Q0 MARCO_04_957918083-58 76 0.077390 hybrid +148_1-9 Q0 MARCO_04_957918083-38 77 0.077390 hybrid +148_1-9 Q0 MARCO_04_958149359-8 78 0.077390 hybrid +148_1-9 Q0 MARCO_59_883652403-9 79 0.077100 hybrid +148_1-9 Q0 MARCO_40_452083580-3 80 0.073423 hybrid +148_1-9 Q0 MARCO_50_2750790827-7 81 0.070184 hybrid +148_1-9 Q0 MARCO_40_451570859-5 82 0.066458 hybrid +148_1-9 Q0 MARCO_51_1235007267-4 83 0.065341 hybrid +148_1-9 Q0 MARCO_07_479708519-3 84 0.064801 hybrid +148_1-9 Q0 MARCO_00_922507913-1 85 0.064208 hybrid +148_1-9 Q0 MARCO_04_958083866-20 86 0.064196 hybrid +148_1-9 Q0 MARCO_04_958213226-16 87 0.064196 hybrid +148_1-9 Q0 MARCO_04_958149359-19 88 0.064196 hybrid +148_1-9 Q0 MARCO_04_957918083-21 89 0.064196 hybrid +148_1-9 Q0 MARCO_00_922955791-10 90 0.063718 hybrid +148_1-9 Q0 MARCO_04_958083866-2 91 0.059578 hybrid +148_1-9 Q0 MARCO_04_958277495-9 92 0.059562 hybrid +148_1-9 Q0 MARCO_46_705334403-1 93 0.058147 hybrid +148_1-9 Q0 MARCO_02_830746727-1 94 0.055542 hybrid +148_1-9 Q0 MARCO_16_107192305-4 95 0.055464 hybrid +148_1-9 Q0 MARCO_40_452509992-4 96 0.050973 hybrid +148_1-9 Q0 MARCO_21_596248610-1 97 0.050016 hybrid +148_1-9 Q0 MARCO_46_705334403-7 98 0.047067 hybrid +148_1-9 Q0 MARCO_05_1747028697-3 99 0.044818 hybrid +148_1-9 Q0 MARCO_46_772110075-10 100 0.041959 hybrid +148_2-1 Q0 MARCO_00_926893645-29 1 0.500000 hybrid +148_2-1 Q0 MARCO_07_829349436-17 2 0.382356 hybrid +148_2-1 Q0 MARCO_25_73481090-7 3 0.363627 hybrid +148_2-1 Q0 MARCO_50_2488650692-4 4 0.361972 hybrid +148_2-1 Q0 MARCO_46_705334403-1 5 0.345373 hybrid +148_2-1 Q0 MARCO_46_705334403-12 6 0.293690 hybrid +148_2-1 Q0 MARCO_35_987188806-8 7 0.287718 hybrid +148_2-1 Q0 MARCO_46_772110075-3 8 0.276395 hybrid +148_2-1 Q0 MARCO_04_958083866-3 9 0.253557 hybrid +148_2-1 Q0 MARCO_36_22623658-2 10 0.235228 hybrid +148_2-1 Q0 MARCO_50_1519050037-19 11 0.231215 hybrid +148_2-1 Q0 MARCO_04_958277495-10 12 0.225679 hybrid +148_2-1 Q0 MARCO_40_1275215270-7 13 0.222122 hybrid +148_2-1 Q0 MARCO_04_958083866-6 14 0.215955 hybrid +148_2-1 Q0 MARCO_50_2753905797-9 15 0.199040 hybrid +148_2-1 Q0 MARCO_13_1253316922-3 16 0.158708 hybrid +148_2-1 Q0 MARCO_14_466396056-11 17 0.139243 hybrid +148_2-1 Q0 MARCO_28_339941586-7 18 0.124842 hybrid +148_2-1 Q0 MARCO_28_339555653-6 19 0.122652 hybrid +148_2-1 Q0 MARCO_50_1516527274-47 20 0.120446 hybrid +148_2-1 Q0 MARCO_29_1689742490-14 21 0.105170 hybrid +148_2-1 Q0 MARCO_50_1982673628-10 22 0.100529 hybrid +148_2-1 Q0 MARCO_00_925914093-2 23 0.091924 hybrid +148_2-1 Q0 MARCO_24_1134154218-9 24 0.090289 hybrid +148_2-1 Q0 MARCO_50_2486569954-68 25 0.084474 hybrid +148_2-1 Q0 MARCO_50_928694011-16 26 0.074949 hybrid +148_2-1 Q0 MARCO_50_928694011-9 27 0.069909 hybrid +148_2-1 Q0 MARCO_57_1352949210-7 28 0.063442 hybrid +148_2-1 Q0 MARCO_50_1983407280-5 29 0.057507 hybrid +148_2-1 Q0 MARCO_40_1274048209-12 30 0.046611 hybrid +148_2-1 Q0 MARCO_50_928694011-5 31 0.045596 hybrid +148_2-1 Q0 MARCO_23_644522987-6 32 0.045129 hybrid +148_2-1 Q0 MARCO_50_1929222803-9 33 0.036016 hybrid +148_2-1 Q0 MARCO_50_1457136264-26 34 0.032143 hybrid +148_2-1 Q0 MARCO_50_1519237905-14 35 0.032143 hybrid +148_2-1 Q0 MARCO_40_1277399291-1 36 0.029185 hybrid +148_2-1 Q0 MARCO_50_1522625191-11 37 0.026531 hybrid +148_2-1 Q0 MARCO_43_766554148-2 38 0.025456 hybrid +148_2-1 Q0 MARCO_13_1258515906-10 39 0.023765 hybrid +148_2-1 Q0 MARCO_50_1518541296-6 40 0.023362 hybrid +148_2-1 Q0 MARCO_46_705334403-11 41 0.022494 hybrid +148_2-1 Q0 MARCO_26_408038102-27 42 0.018074 hybrid +148_2-1 Q0 MARCO_47_599264390-3 43 0.012230 hybrid +148_2-1 Q0 MARCO_50_1984876872-18 44 0.011339 hybrid +148_2-1 Q0 MARCO_07_479708519-3 45 0.009808 hybrid +148_2-1 Q0 MARCO_40_1267336961-6 46 0.007738 hybrid +148_2-1 Q0 MARCO_41_1191765432-4 47 0.001367 hybrid +148_2-1 Q0 MARCO_46_705435328-9 48 -0.011531 hybrid +148_2-1 Q0 MARCO_25_73366537-2 49 -0.012678 hybrid +148_2-1 Q0 MARCO_50_1457136264-15 50 -0.013697 hybrid +148_2-1 Q0 MARCO_24_1131796398-8 51 -0.015804 hybrid +148_2-1 Q0 MARCO_50_1451590394-6 52 -0.017438 hybrid +148_2-1 Q0 MARCO_04_958083866-13 53 -0.019237 hybrid +148_2-1 Q0 MARCO_04_957918083-18 54 -0.019237 hybrid +148_2-1 Q0 MARCO_04_958149359-16 55 -0.019237 hybrid +148_2-1 Q0 MARCO_04_958083866-9 56 -0.019237 hybrid +148_2-1 Q0 MARCO_04_958083866-39 57 -0.019237 hybrid +148_2-1 Q0 MARCO_04_957918083-6 58 -0.019237 hybrid +148_2-1 Q0 MARCO_53_1021617649-8 59 -0.019253 hybrid +148_2-1 Q0 MARCO_50_1929222803-14 60 -0.020764 hybrid +148_2-1 Q0 MARCO_54_319887768-6 61 -0.026627 hybrid +148_2-1 Q0 MARCO_00_1039780658-4 62 -0.030076 hybrid +148_2-1 Q0 MARCO_50_1516527274-41 63 -0.031639 hybrid +148_2-1 Q0 MARCO_53_788223547-5 64 -0.032650 hybrid +148_2-1 Q0 MARCO_33_742522995-1 65 -0.036551 hybrid +148_2-1 Q0 MARCO_50_1516527274-46 66 -0.040001 hybrid +148_2-1 Q0 MARCO_51_113322972-2 67 -0.043362 hybrid +148_2-1 Q0 MARCO_56_317691855-3 68 -0.047159 hybrid +148_2-1 Q0 MARCO_05_1747028697-3 69 -0.047227 hybrid +148_2-1 Q0 MARCO_50_1416666844-73 70 -0.053118 hybrid +148_2-1 Q0 MARCO_56_1049087489-3 71 -0.053314 hybrid +148_2-1 Q0 MARCO_51_121940185-9 72 -0.055820 hybrid +148_2-1 Q0 MARCO_50_1516527274-4 73 -0.056452 hybrid +148_2-1 Q0 KILT_52111558-16 74 -0.059669 hybrid +148_2-1 Q0 MARCO_25_73465587-2 75 -0.061028 hybrid +148_2-1 Q0 MARCO_50_1450402399-1 76 -0.061688 hybrid +148_2-1 Q0 MARCO_50_2750207865-10 77 -0.064302 hybrid +148_2-1 Q0 MARCO_13_401452905-3 78 -0.065453 hybrid +148_2-1 Q0 MARCO_00_922433136-5 79 -0.076600 hybrid +148_2-1 Q0 MARCO_50_1186856656-19 80 -0.077148 hybrid +148_2-1 Q0 MARCO_07_821676801-27 81 -0.080125 hybrid +148_2-1 Q0 MARCO_54_363553726-4 82 -0.080701 hybrid +148_2-1 Q0 MARCO_50_1457136264-37 83 -0.081012 hybrid +148_2-1 Q0 MARCO_23_644522987-10 84 -0.081464 hybrid +148_2-1 Q0 MARCO_10_892334905-12 85 -0.084166 hybrid +148_2-1 Q0 MARCO_03_579711135-54 86 -0.088838 hybrid +148_2-1 Q0 MARCO_56_317635363-2 87 -0.089314 hybrid +148_2-1 Q0 MARCO_29_1689449011-2 88 -0.094522 hybrid +148_2-1 Q0 MARCO_04_958277495-7 89 -0.095065 hybrid +148_2-1 Q0 MARCO_50_1518541296-3 90 -0.097448 hybrid +148_2-1 Q0 MARCO_40_822716980-5 91 -0.097504 hybrid +148_2-1 Q0 MARCO_52_594477485-10 92 -0.097931 hybrid +148_2-1 Q0 MARCO_24_1555462925-2 93 -0.101149 hybrid +148_2-1 Q0 MARCO_04_958213226-22 94 -0.102516 hybrid +148_2-1 Q0 MARCO_04_958083866-24 95 -0.102516 hybrid +148_2-1 Q0 MARCO_04_958083866-17 96 -0.102528 hybrid +148_2-1 Q0 MARCO_43_777079008-35 97 -0.102612 hybrid +148_2-1 Q0 MARCO_33_1236772326-11 98 -0.106604 hybrid +148_2-1 Q0 MARCO_24_1555540457-9 99 -0.110429 hybrid +148_2-1 Q0 KILT_52111558-12 100 -0.113015 hybrid +148_2-3 Q0 MARCO_59_533393421-3 1 0.500000 hybrid +148_2-3 Q0 MARCO_47_288127950-2 2 0.277670 hybrid +148_2-3 Q0 MARCO_59_533436401-5 3 0.275963 hybrid +148_2-3 Q0 MARCO_16_107741948-2 4 0.258365 hybrid +148_2-3 Q0 MARCO_59_533329192-10 5 0.243309 hybrid +148_2-3 Q0 MARCO_59_533329192-24 6 0.214421 hybrid +148_2-3 Q0 MARCO_59_533393421-2 7 0.202545 hybrid +148_2-3 Q0 MARCO_59_533393421-1 8 0.142881 hybrid +148_2-3 Q0 MARCO_59_533246010-7 9 0.118088 hybrid +148_2-3 Q0 MARCO_37_1255198346-2 10 0.115568 hybrid +148_2-3 Q0 MARCO_37_1247915394-9 11 0.091042 hybrid +148_2-3 Q0 MARCO_59_533393421-5 12 0.075388 hybrid +148_2-3 Q0 MARCO_51_1241852601-5 13 0.065511 hybrid +148_2-3 Q0 MARCO_28_44557103-7 14 0.060265 hybrid +148_2-3 Q0 MARCO_28_339445931-7 15 0.049944 hybrid +148_2-3 Q0 MARCO_43_776904299-4 16 0.042121 hybrid +148_2-3 Q0 MARCO_46_382277930-5 17 0.036639 hybrid +148_2-3 Q0 MARCO_11_601832491-2 18 0.025238 hybrid +148_2-3 Q0 MARCO_29_1690477280-7 19 0.019241 hybrid +148_2-3 Q0 MARCO_28_44557103-11 20 0.012653 hybrid +148_2-3 Q0 MARCO_59_533393421-9 21 0.011464 hybrid +148_2-3 Q0 MARCO_13_1163204111-9 22 -0.005673 hybrid +148_2-3 Q0 MARCO_00_923414327-2 23 -0.008546 hybrid +148_2-3 Q0 MARCO_29_1689675997-18 24 -0.008920 hybrid +148_2-3 Q0 MARCO_35_980997142-2 25 -0.016859 hybrid +148_2-3 Q0 MARCO_54_357634490-13 26 -0.022461 hybrid +148_2-3 Q0 MARCO_35_980962005-2 27 -0.027276 hybrid +148_2-3 Q0 MARCO_54_360550472-2 28 -0.031659 hybrid +148_2-3 Q0 MARCO_54_365373030-4 29 -0.036884 hybrid +148_2-3 Q0 MARCO_11_601832491-1 30 -0.038005 hybrid +148_2-3 Q0 MARCO_08_1121809190-4 31 -0.040088 hybrid +148_2-3 Q0 MARCO_59_537093455-12 32 -0.054989 hybrid +148_2-3 Q0 MARCO_13_1164549158-9 33 -0.061891 hybrid +148_2-3 Q0 MARCO_32_617206189-6 34 -0.065532 hybrid +148_2-3 Q0 MARCO_54_319887768-6 35 -0.070372 hybrid +148_2-3 Q0 MARCO_28_554394337-2 36 -0.079256 hybrid +148_2-3 Q0 MARCO_29_789658183-7 37 -0.079728 hybrid +148_2-3 Q0 MARCO_54_360542762-2 38 -0.083964 hybrid +148_2-3 Q0 MARCO_37_1255298398-13 39 -0.091724 hybrid +148_2-3 Q0 MARCO_28_339941586-8 40 -0.093708 hybrid +148_2-3 Q0 MARCO_59_533393421-4 41 -0.093968 hybrid +148_2-3 Q0 MARCO_47_675884058-2 42 -0.095340 hybrid +148_2-3 Q0 MARCO_19_2061859640-2 43 -0.101107 hybrid +148_2-3 Q0 MARCO_46_1165582098-3 44 -0.101752 hybrid +148_2-3 Q0 MARCO_09_534573872-2 45 -0.101833 hybrid +148_2-3 Q0 MARCO_15_309858859-6 46 -0.102078 hybrid +148_2-3 Q0 MARCO_54_364946981-3 47 -0.102461 hybrid +148_2-3 Q0 MARCO_00_927454580-3 48 -0.102766 hybrid +148_2-3 Q0 MARCO_45_977374470-2 49 -0.104350 hybrid +148_2-3 Q0 MARCO_59_533393421-6 50 -0.104852 hybrid +148_2-3 Q0 MARCO_35_984232001-7 51 -0.109545 hybrid +148_2-3 Q0 MARCO_59_535822204-4 52 -0.113425 hybrid +148_2-3 Q0 MARCO_29_1690477280-9 53 -0.113727 hybrid +148_2-3 Q0 MARCO_46_1313555559-3 54 -0.115006 hybrid +148_2-3 Q0 MARCO_37_1253662916-8 55 -0.115494 hybrid +148_2-3 Q0 MARCO_47_288467523-6 56 -0.115918 hybrid +148_2-3 Q0 MARCO_31_885665827-2 57 -0.119499 hybrid +148_2-3 Q0 MARCO_46_383441339-6 58 -0.120638 hybrid +148_2-3 Q0 MARCO_29_1689631691-25 59 -0.121092 hybrid +148_2-3 Q0 MARCO_59_533210826-4 60 -0.123953 hybrid +148_2-3 Q0 MARCO_02_361833187-38 61 -0.125522 hybrid +148_2-3 Q0 MARCO_59_890347234-2 62 -0.127549 hybrid +148_2-3 Q0 MARCO_59_533393421-10 63 -0.130380 hybrid +148_2-3 Q0 MARCO_54_360542762-3 64 -0.132167 hybrid +148_2-3 Q0 MARCO_59_533393421-7 65 -0.134565 hybrid +148_2-3 Q0 MARCO_48_1536413778-8 66 -0.135707 hybrid +148_2-3 Q0 MARCO_46_380842855-1 67 -0.140728 hybrid +148_2-3 Q0 MARCO_40_821590150-6 68 -0.144662 hybrid +148_2-3 Q0 MARCO_10_1132346649-14 69 -0.146094 hybrid +148_2-3 Q0 MARCO_46_382277930-1 70 -0.147308 hybrid +148_2-3 Q0 MARCO_13_1164549158-7 71 -0.147511 hybrid +148_2-3 Q0 MARCO_35_981232229-5 72 -0.147630 hybrid +148_2-3 Q0 MARCO_59_533393421-8 73 -0.148805 hybrid +148_2-3 Q0 MARCO_09_859123509-2 74 -0.150159 hybrid +148_2-3 Q0 MARCO_29_1690477280-3 75 -0.151812 hybrid +148_2-3 Q0 MARCO_35_983279505-19 76 -0.153821 hybrid +148_2-3 Q0 MARCO_12_319415238-82 77 -0.154945 hybrid +148_2-3 Q0 MARCO_47_675613261-4 78 -0.155301 hybrid +148_2-3 Q0 MARCO_54_360525242-2 79 -0.156700 hybrid +148_2-3 Q0 MARCO_40_1186998084-3 80 -0.156873 hybrid +148_2-3 Q0 MARCO_40_1278806270-6 81 -0.157318 hybrid +148_2-3 Q0 MARCO_53_361664784-1 82 -0.158795 hybrid +148_2-3 Q0 MARCO_03_579711135-55 83 -0.162523 hybrid +148_2-3 Q0 MARCO_28_39703165-1 84 -0.163285 hybrid +148_2-3 Q0 MARCO_59_533329192-9 85 -0.164241 hybrid +148_2-3 Q0 MARCO_29_1690477280-4 86 -0.164663 hybrid +148_2-3 Q0 MARCO_44_480221151-4 87 -0.166719 hybrid +148_2-3 Q0 MARCO_26_495350833-2 88 -0.167428 hybrid +148_2-3 Q0 MARCO_32_146801954-7 89 -0.168139 hybrid +148_2-3 Q0 MARCO_59_360873087-5 90 -0.168809 hybrid +148_2-3 Q0 MARCO_59_532628200-3 91 -0.170567 hybrid +148_2-3 Q0 MARCO_19_2061859640-9 92 -0.172713 hybrid +148_2-3 Q0 MARCO_28_329971699-4 93 -0.175122 hybrid +148_2-3 Q0 MARCO_50_2753855855-2 94 -0.176121 hybrid +148_2-3 Q0 MARCO_26_1548972896-6 95 -0.176990 hybrid +148_2-3 Q0 MARCO_13_1167760688-3 96 -0.178963 hybrid +148_2-3 Q0 MARCO_50_1617690498-6 97 -0.179854 hybrid +148_2-3 Q0 MARCO_41_1819418071-2 98 -0.180371 hybrid +148_2-3 Q0 MARCO_52_1145283984-1 99 -0.180927 hybrid +148_2-3 Q0 MARCO_59_533317330-3 100 -0.182467 hybrid +148_2-5 Q0 MARCO_35_984279294-4 1 0.500000 hybrid +148_2-5 Q0 MARCO_50_2384555865-19 2 0.356975 hybrid +148_2-5 Q0 MARCO_59_537115662-3 3 0.303871 hybrid +148_2-5 Q0 MARCO_28_339463138-14 4 0.265326 hybrid +148_2-5 Q0 MARCO_44_1486988924-11 5 0.261961 hybrid +148_2-5 Q0 MARCO_35_982879909-8 6 0.247829 hybrid +148_2-5 Q0 MARCO_59_536793863-8 7 0.205526 hybrid +148_2-5 Q0 MARCO_59_534493172-14 8 0.202680 hybrid +148_2-5 Q0 MARCO_55_764089383-6 9 0.103099 hybrid +148_2-5 Q0 MARCO_29_1688895161-3 10 0.102016 hybrid +148_2-5 Q0 MARCO_47_675640658-4 11 0.093064 hybrid +148_2-5 Q0 MARCO_54_139606558-7 12 0.092377 hybrid +148_2-5 Q0 MARCO_40_656436198-6 13 0.078775 hybrid +148_2-5 Q0 MARCO_50_2157457161-17 14 0.072969 hybrid +148_2-5 Q0 MARCO_54_139606558-2 15 0.054675 hybrid +148_2-5 Q0 MARCO_37_833330438-6 16 0.053874 hybrid +148_2-5 Q0 MARCO_12_1727721624-8 17 0.052856 hybrid +148_2-5 Q0 MARCO_59_537115662-2 18 0.047900 hybrid +148_2-5 Q0 MARCO_53_1021420296-2 19 0.047148 hybrid +148_2-5 Q0 MARCO_59_537093455-12 20 0.046320 hybrid +148_2-5 Q0 MARCO_35_983491522-4 21 0.042027 hybrid +148_2-5 Q0 MARCO_35_984279294-3 22 0.028213 hybrid +148_2-5 Q0 MARCO_29_1690779254-7 23 0.026532 hybrid +148_2-5 Q0 MARCO_52_1142396638-4 24 0.025720 hybrid +148_2-5 Q0 MARCO_30_1776444813-5 25 0.024707 hybrid +148_2-5 Q0 MARCO_59_537124812-12 26 0.010253 hybrid +148_2-5 Q0 MARCO_26_495534144-4 27 0.009468 hybrid +148_2-5 Q0 MARCO_29_1690865094-2 28 0.007152 hybrid +148_2-5 Q0 MARCO_13_21582751-7 29 0.005502 hybrid +148_2-5 Q0 MARCO_39_808403241-3 30 -0.000393 hybrid +148_2-5 Q0 MARCO_32_623514016-40 31 -0.006204 hybrid +148_2-5 Q0 MARCO_13_24347013-4 32 -0.020858 hybrid +148_2-5 Q0 MARCO_29_1691007758-10 33 -0.022545 hybrid +148_2-5 Q0 MARCO_32_623459004-7 34 -0.024076 hybrid +148_2-5 Q0 MARCO_36_379585173-9 35 -0.025413 hybrid +148_2-5 Q0 MARCO_35_982257495-11 36 -0.028845 hybrid +148_2-5 Q0 MARCO_22_1641823232-9 37 -0.030228 hybrid +148_2-5 Q0 MARCO_44_1563207408-2 38 -0.033813 hybrid +148_2-5 Q0 MARCO_53_1021420296-5 39 -0.033982 hybrid +148_2-5 Q0 MARCO_29_1689703723-8 40 -0.043726 hybrid +148_2-5 Q0 MARCO_13_1153898834-6 41 -0.048820 hybrid +148_2-5 Q0 MARCO_54_358360113-2 42 -0.049019 hybrid +148_2-5 Q0 MARCO_19_2631048543-13 43 -0.051258 hybrid +148_2-5 Q0 MARCO_35_983508712-2 44 -0.052160 hybrid +148_2-5 Q0 MARCO_29_1689675997-13 45 -0.052650 hybrid +148_2-5 Q0 MARCO_29_1690657337-14 46 -0.053500 hybrid +148_2-5 Q0 MARCO_29_1689675997-20 47 -0.053840 hybrid +148_2-5 Q0 MARCO_59_535716852-4 48 -0.054343 hybrid +148_2-5 Q0 MARCO_50_2384555865-18 49 -0.057417 hybrid +148_2-5 Q0 MARCO_55_1345847584-3 50 -0.058426 hybrid +148_2-5 Q0 MARCO_50_1528479049-11 51 -0.060508 hybrid +148_2-5 Q0 MARCO_52_685589535-10 52 -0.061112 hybrid +148_2-5 Q0 MARCO_40_823069616-6 53 -0.065084 hybrid +148_2-5 Q0 MARCO_12_1728147392-2 54 -0.066617 hybrid +148_2-5 Q0 MARCO_29_594604563-1 55 -0.066648 hybrid +148_2-5 Q0 MARCO_00_723696053-1 56 -0.067044 hybrid +148_2-5 Q0 MARCO_13_1162383124-11 57 -0.068951 hybrid +148_2-5 Q0 MARCO_59_536827671-6 58 -0.070025 hybrid +148_2-5 Q0 MARCO_12_1728277993-11 59 -0.073003 hybrid +148_2-5 Q0 MARCO_12_1727840069-5 60 -0.073438 hybrid +148_2-5 Q0 MARCO_29_1690244783-8 61 -0.074739 hybrid +148_2-5 Q0 MARCO_52_1142396638-44 62 -0.075337 hybrid +148_2-5 Q0 MARCO_13_24347013-3 63 -0.076852 hybrid +148_2-5 Q0 MARCO_13_21582751-2 64 -0.077502 hybrid +148_2-5 Q0 MARCO_13_1164604069-10 65 -0.082326 hybrid +148_2-5 Q0 MARCO_00_761177399-11 66 -0.082845 hybrid +148_2-5 Q0 MARCO_29_1690680339-11 67 -0.083578 hybrid +148_2-5 Q0 MARCO_28_536888163-2 68 -0.088095 hybrid +148_2-5 Q0 MARCO_13_24347013-5 69 -0.090205 hybrid +148_2-5 Q0 MARCO_40_1192357637-5 70 -0.090656 hybrid +148_2-5 Q0 MARCO_59_534407682-10 71 -0.091635 hybrid +148_2-5 Q0 MARCO_54_359162584-6 72 -0.093404 hybrid +148_2-5 Q0 MARCO_29_1689675997-14 73 -0.093895 hybrid +148_2-5 Q0 MARCO_12_1727944068-4 74 -0.094539 hybrid +148_2-5 Q0 MARCO_51_118009298-3 75 -0.096026 hybrid +148_2-5 Q0 MARCO_59_535716852-5 76 -0.096922 hybrid +148_2-5 Q0 MARCO_35_983491522-3 77 -0.097535 hybrid +148_2-5 Q0 MARCO_35_982879909-7 78 -0.098327 hybrid +148_2-5 Q0 MARCO_29_1020363654-2 79 -0.100385 hybrid +148_2-5 Q0 MARCO_29_1689831630-20 80 -0.100651 hybrid +148_2-5 Q0 MARCO_59_537124812-15 81 -0.101759 hybrid +148_2-5 Q0 MARCO_47_289065229-5 82 -0.104666 hybrid +148_2-5 Q0 MARCO_35_984598244-4 83 -0.108892 hybrid +148_2-5 Q0 MARCO_22_1648304722-2 84 -0.109260 hybrid +148_2-5 Q0 MARCO_57_1967218371-4 85 -0.109914 hybrid +148_2-5 Q0 MARCO_29_1688909897-14 86 -0.111257 hybrid +148_2-5 Q0 MARCO_40_1187016279-3 87 -0.113030 hybrid +148_2-5 Q0 MARCO_35_982216764-3 88 -0.115413 hybrid +148_2-5 Q0 MARCO_29_1689409645-2 89 -0.120599 hybrid +148_2-5 Q0 MARCO_35_983491522-2 90 -0.121271 hybrid +148_2-5 Q0 MARCO_50_1187580849-12 91 -0.121547 hybrid +148_2-5 Q0 MARCO_45_980397428-6 92 -0.122206 hybrid +148_2-5 Q0 MARCO_22_1640890320-2 93 -0.122822 hybrid +148_2-5 Q0 MARCO_55_1345847584-7 94 -0.126132 hybrid +148_2-5 Q0 MARCO_54_358360113-3 95 -0.126190 hybrid +148_2-5 Q0 MARCO_29_1690050338-10 96 -0.126871 hybrid +148_2-5 Q0 MARCO_29_1690915066-6 97 -0.127610 hybrid +148_2-5 Q0 MARCO_30_1779934124-61 98 -0.128395 hybrid +148_2-5 Q0 MARCO_46_553702978-3 99 -0.128794 hybrid +148_2-5 Q0 MARCO_29_1690657337-2 100 -0.130692 hybrid +149_1-1 Q0 MARCO_29_266124390-1 1 0.500000 hybrid +149_1-1 Q0 MARCO_50_930260817-8 2 0.415102 hybrid +149_1-1 Q0 MARCO_50_2498479427-2 3 0.403077 hybrid +149_1-1 Q0 MARCO_23_244585903-1 4 0.395752 hybrid +149_1-1 Q0 MARCO_50_2506569724-109 5 0.384365 hybrid +149_1-1 Q0 MARCO_13_542473359-8 6 0.360217 hybrid +149_1-1 Q0 MARCO_40_1275474991-3 7 0.328239 hybrid +149_1-1 Q0 MARCO_41_633308289-3 8 0.324646 hybrid +149_1-1 Q0 MARCO_50_1969433273-2 9 0.302845 hybrid +149_1-1 Q0 MARCO_50_2503058169-35 10 0.290177 hybrid +149_1-1 Q0 KILT_59012195-9 11 0.289685 hybrid +149_1-1 Q0 MARCO_50_2503058169-27 12 0.283003 hybrid +149_1-1 Q0 MARCO_50_1399796977-10 13 0.273829 hybrid +149_1-1 Q0 MARCO_50_930260817-18 14 0.250881 hybrid +149_1-1 Q0 MARCO_46_387713679-4 15 0.249635 hybrid +149_1-1 Q0 MARCO_53_1417280823-1 16 0.247021 hybrid +149_1-1 Q0 MARCO_08_816090904-7 17 0.245393 hybrid +149_1-1 Q0 MARCO_50_1969433273-16 18 0.236057 hybrid +149_1-1 Q0 MARCO_34_543863470-3 19 0.221216 hybrid +149_1-1 Q0 MARCO_50_1448845239-7 20 0.217913 hybrid +149_1-1 Q0 MARCO_50_930260817-1 21 0.216574 hybrid +149_1-1 Q0 MARCO_50_1519010033-6 22 0.212801 hybrid +149_1-1 Q0 KILT_59012195-1 23 0.212552 hybrid +149_1-1 Q0 MARCO_52_598387767-2 24 0.207279 hybrid +149_1-1 Q0 MARCO_07_262601550-2 25 0.205604 hybrid +149_1-1 Q0 KILT_2111074-3 26 0.199392 hybrid +149_1-1 Q0 MARCO_20_363769433-4 27 0.193724 hybrid +149_1-1 Q0 MARCO_19_2056728389-2 28 0.191557 hybrid +149_1-1 Q0 MARCO_44_1770445893-37 29 0.188850 hybrid +149_1-1 Q0 MARCO_11_775099364-11 30 0.179306 hybrid +149_1-1 Q0 MARCO_50_2503058169-34 31 0.175684 hybrid +149_1-1 Q0 KILT_54113587-8 32 0.158658 hybrid +149_1-1 Q0 MARCO_22_838526827-2 33 0.158501 hybrid +149_1-1 Q0 MARCO_19_2056728389-3 34 0.157012 hybrid +149_1-1 Q0 KILT_59012195-3 35 0.156027 hybrid +149_1-1 Q0 MARCO_50_2506569724-15 36 0.148377 hybrid +149_1-1 Q0 MARCO_11_775487494-6 37 0.144645 hybrid +149_1-1 Q0 MARCO_22_838526827-3 38 0.139551 hybrid +149_1-1 Q0 MARCO_11_776170692-3 39 0.137257 hybrid +149_1-1 Q0 MARCO_52_598387767-3 40 0.130592 hybrid +149_1-1 Q0 MARCO_14_471576089-3 41 0.127075 hybrid +149_1-1 Q0 MARCO_41_2075074561-3 42 0.118081 hybrid +149_1-1 Q0 MARCO_50_930160608-27 43 0.117721 hybrid +149_1-1 Q0 MARCO_50_1618809057-20 44 0.113984 hybrid +149_1-1 Q0 MARCO_52_1185715701-6 45 0.109336 hybrid +149_1-1 Q0 MARCO_40_1191575982-1 46 0.108890 hybrid +149_1-1 Q0 MARCO_11_775904773-5 47 0.106931 hybrid +149_1-1 Q0 MARCO_50_2509171028-14 48 0.106583 hybrid +149_1-1 Q0 MARCO_27_583264304-4 49 0.104341 hybrid +149_1-1 Q0 MARCO_46_378699270-12 50 0.100968 hybrid +149_1-1 Q0 MARCO_11_776340316-3 51 0.097879 hybrid +149_1-1 Q0 MARCO_48_1537600726-1 52 0.091348 hybrid +149_1-1 Q0 MARCO_29_402220207-3 53 0.087790 hybrid +149_1-1 Q0 MARCO_50_2504117447-28 54 0.085837 hybrid +149_1-1 Q0 MARCO_07_637735790-9 55 0.083774 hybrid +149_1-1 Q0 KILT_665789-6 56 0.078825 hybrid +149_1-1 Q0 MARCO_50_930260817-23 57 0.076350 hybrid +149_1-1 Q0 MARCO_50_2497747935-8 58 0.073146 hybrid +149_1-1 Q0 MARCO_11_775099364-1 59 0.069622 hybrid +149_1-1 Q0 MARCO_51_1731582398-6 60 0.069193 hybrid +149_1-1 Q0 MARCO_28_564064045-3 61 0.069170 hybrid +149_1-1 Q0 MARCO_13_432527240-1 62 0.068602 hybrid +149_1-1 Q0 MARCO_49_400780533-13 63 0.068173 hybrid +149_1-1 Q0 MARCO_50_2506569724-60 64 0.064082 hybrid +149_1-1 Q0 MARCO_50_2497747935-23 65 0.062274 hybrid +149_1-1 Q0 KILT_2111074-11 66 0.060825 hybrid +149_1-1 Q0 MARCO_51_1731582398-7 67 0.056398 hybrid +149_1-1 Q0 MARCO_46_378633695-9 68 0.053315 hybrid +149_1-1 Q0 MARCO_11_775099364-8 69 0.048760 hybrid +149_1-1 Q0 MARCO_07_262601550-5 70 0.047381 hybrid +149_1-1 Q0 MARCO_23_1085295197-2 71 0.045549 hybrid +149_1-1 Q0 MARCO_53_86301228-13 72 0.043249 hybrid +149_1-1 Q0 MARCO_41_633308289-2 73 0.043057 hybrid +149_1-1 Q0 MARCO_11_776719134-3 74 0.039864 hybrid +149_1-1 Q0 MARCO_53_1516388441-3 75 0.035483 hybrid +149_1-1 Q0 MARCO_55_763593574-3 76 0.024878 hybrid +149_1-1 Q0 MARCO_11_775099364-10 77 0.024223 hybrid +149_1-1 Q0 MARCO_50_2506569724-77 78 0.019188 hybrid +149_1-1 Q0 MARCO_03_580110833-6 79 0.017478 hybrid +149_1-1 Q0 MARCO_22_246023626-1 80 0.015560 hybrid +149_1-1 Q0 MARCO_07_262601550-1 81 0.014117 hybrid +149_1-1 Q0 MARCO_50_2504117447-11 82 0.011295 hybrid +149_1-1 Q0 MARCO_52_681689004-13 83 0.007302 hybrid +149_1-1 Q0 MARCO_50_1969433273-3 84 0.003205 hybrid +149_1-1 Q0 KILT_2111074-7 85 0.001211 hybrid +149_1-1 Q0 MARCO_11_776635379-13 86 0.000765 hybrid +149_1-1 Q0 MARCO_50_1509696457-8 87 -0.000921 hybrid +149_1-1 Q0 MARCO_38_411820317-3 88 -0.001194 hybrid +149_1-1 Q0 MARCO_50_930260817-5 89 -0.001420 hybrid +149_1-1 Q0 MARCO_53_1465253531-3 90 -0.002944 hybrid +149_1-1 Q0 MARCO_00_884586614-33 91 -0.009035 hybrid +149_1-1 Q0 MARCO_50_1448845239-4 92 -0.011451 hybrid +149_1-1 Q0 MARCO_48_1537600726-2 93 -0.011903 hybrid +149_1-1 Q0 MARCO_40_1279055765-13 94 -0.012929 hybrid +149_1-1 Q0 MARCO_50_2503058169-30 95 -0.015647 hybrid +149_1-1 Q0 MARCO_50_1969433273-9 96 -0.017716 hybrid +149_1-1 Q0 MARCO_50_2497747935-1 97 -0.020178 hybrid +149_1-1 Q0 MARCO_50_1931425493-14 98 -0.025794 hybrid +149_1-1 Q0 MARCO_08_816090904-5 99 -0.026397 hybrid +149_1-1 Q0 MARCO_45_162123831-4 100 -0.031143 hybrid +149_1-3 Q0 MARCO_50_2498479427-2 1 0.499998 hybrid +149_1-3 Q0 MARCO_50_2506569724-109 2 0.411660 hybrid +149_1-3 Q0 KILT_59012195-9 3 0.334645 hybrid +149_1-3 Q0 MARCO_46_387713679-4 4 0.194174 hybrid +149_1-3 Q0 MARCO_51_1731582398-6 5 0.187631 hybrid +149_1-3 Q0 KILT_665789-6 6 0.161094 hybrid +149_1-3 Q0 MARCO_46_378699270-12 7 0.153367 hybrid +149_1-3 Q0 MARCO_29_266124390-1 8 0.141590 hybrid +149_1-3 Q0 MARCO_50_1399796977-10 9 0.140091 hybrid +149_1-3 Q0 MARCO_50_2497747935-1 10 0.139766 hybrid +149_1-3 Q0 MARCO_50_930260817-8 11 0.137797 hybrid +149_1-3 Q0 MARCO_53_1514777650-1 12 0.131109 hybrid +149_1-3 Q0 MARCO_50_2503058169-35 13 0.127130 hybrid +149_1-3 Q0 MARCO_46_378633695-9 14 0.117153 hybrid +149_1-3 Q0 MARCO_13_542473359-8 15 0.116003 hybrid +149_1-3 Q0 MARCO_53_1417280823-1 16 0.106446 hybrid +149_1-3 Q0 MARCO_43_713571227-2 17 0.083509 hybrid +149_1-3 Q0 MARCO_43_747917301-4 18 0.080510 hybrid +149_1-3 Q0 MARCO_19_2056728389-2 19 0.075031 hybrid +149_1-3 Q0 MARCO_27_583264304-4 20 0.073332 hybrid +149_1-3 Q0 MARCO_07_822177660-3 21 0.070123 hybrid +149_1-3 Q0 MARCO_27_209390284-2 22 0.068244 hybrid +149_1-3 Q0 MARCO_40_1191575982-1 23 0.067224 hybrid +149_1-3 Q0 MARCO_51_1731582398-7 24 0.062060 hybrid +149_1-3 Q0 MARCO_52_598387767-2 25 0.056832 hybrid +149_1-3 Q0 MARCO_50_930160608-16 26 0.052568 hybrid +149_1-3 Q0 MARCO_23_1773484121-5 27 0.049379 hybrid +149_1-3 Q0 MARCO_19_2056728389-3 28 0.047710 hybrid +149_1-3 Q0 MARCO_50_2497747935-23 29 0.042237 hybrid +149_1-3 Q0 MARCO_30_1131722693-17 30 0.041207 hybrid +149_1-3 Q0 MARCO_50_2503058169-34 31 0.038103 hybrid +149_1-3 Q0 MARCO_11_775487494-6 32 0.031545 hybrid +149_1-3 Q0 MARCO_50_1509696457-8 33 0.026242 hybrid +149_1-3 Q0 MARCO_52_681689004-13 34 0.024902 hybrid +149_1-3 Q0 MARCO_50_1448845239-7 35 0.024777 hybrid +149_1-3 Q0 MARCO_50_2503058169-27 36 0.023738 hybrid +149_1-3 Q0 MARCO_11_776719134-3 37 0.015410 hybrid +149_1-3 Q0 MARCO_50_1618809057-20 38 0.013606 hybrid +149_1-3 Q0 MARCO_55_763593574-3 39 0.009792 hybrid +149_1-3 Q0 MARCO_50_2504117447-28 40 0.008987 hybrid +149_1-3 Q0 MARCO_53_86301228-13 41 0.008712 hybrid +149_1-3 Q0 MARCO_42_1884689747-5 42 -0.003334 hybrid +149_1-3 Q0 MARCO_11_775556690-11 43 -0.003889 hybrid +149_1-3 Q0 MARCO_07_637735790-9 44 -0.010747 hybrid +149_1-3 Q0 MARCO_52_1185715701-6 45 -0.012361 hybrid +149_1-3 Q0 MARCO_22_997066902-9 46 -0.016345 hybrid +149_1-3 Q0 KILT_59012195-1 47 -0.019924 hybrid +149_1-3 Q0 MARCO_11_776170692-3 48 -0.022213 hybrid +149_1-3 Q0 MARCO_11_776635379-13 49 -0.022743 hybrid +149_1-3 Q0 MARCO_46_387713679-1 50 -0.023448 hybrid +149_1-3 Q0 MARCO_23_244585903-1 51 -0.027471 hybrid +149_1-3 Q0 MARCO_41_633308289-2 52 -0.034379 hybrid +149_1-3 Q0 MARCO_14_947909862-4 53 -0.034574 hybrid +149_1-3 Q0 MARCO_50_930260817-1 54 -0.039428 hybrid +149_1-3 Q0 KILT_59012195-13 55 -0.040072 hybrid +149_1-3 Q0 MARCO_40_1275474991-3 56 -0.040072 hybrid +149_1-3 Q0 MARCO_45_136959205-2 57 -0.044856 hybrid +149_1-3 Q0 MARCO_41_633308289-3 58 -0.046360 hybrid +149_1-3 Q0 MARCO_11_775904773-5 59 -0.050034 hybrid +149_1-3 Q0 MARCO_50_2503058169-30 60 -0.050714 hybrid +149_1-3 Q0 MARCO_50_1931425493-27 61 -0.050914 hybrid +149_1-3 Q0 KILT_6111052-2 62 -0.051169 hybrid +149_1-3 Q0 KILT_2111074-3 63 -0.055662 hybrid +149_1-3 Q0 MARCO_09_387689068-15 64 -0.058112 hybrid +149_1-3 Q0 MARCO_11_776080002-6 65 -0.058956 hybrid +149_1-3 Q0 MARCO_09_387689068-19 66 -0.061271 hybrid +149_1-3 Q0 MARCO_53_1516388441-3 67 -0.062520 hybrid +149_1-3 Q0 MARCO_41_2075074561-3 68 -0.069018 hybrid +149_1-3 Q0 MARCO_51_1731582398-2 69 -0.069038 hybrid +149_1-3 Q0 MARCO_11_776340316-3 70 -0.069598 hybrid +149_1-3 Q0 MARCO_50_1969433273-16 71 -0.069923 hybrid +149_1-3 Q0 MARCO_50_930260817-5 72 -0.070833 hybrid +149_1-3 Q0 MARCO_11_775774732-10 73 -0.072082 hybrid +149_1-3 Q0 MARCO_50_1509696457-10 74 -0.074327 hybrid +149_1-3 Q0 MARCO_34_543863470-3 75 -0.076601 hybrid +149_1-3 Q0 MARCO_50_1969433273-9 76 -0.079790 hybrid +149_1-3 Q0 MARCO_03_580110833-6 77 -0.080755 hybrid +149_1-3 Q0 MARCO_11_776340316-6 78 -0.081189 hybrid +149_1-3 Q0 MARCO_46_387713679-2 79 -0.081834 hybrid +149_1-3 Q0 MARCO_24_1015620193-3 80 -0.083269 hybrid +149_1-3 Q0 KILT_54113587-8 81 -0.088502 hybrid +149_1-3 Q0 MARCO_08_816090904-5 82 -0.090791 hybrid +149_1-3 Q0 MARCO_44_1770445893-37 83 -0.090791 hybrid +149_1-3 Q0 MARCO_10_969054202-15 84 -0.092356 hybrid +149_1-3 Q0 MARCO_22_838526827-3 85 -0.094980 hybrid +149_1-3 Q0 MARCO_50_1519010033-6 86 -0.095650 hybrid +149_1-3 Q0 MARCO_05_1745840444-10 87 -0.095745 hybrid +149_1-3 Q0 MARCO_27_583459329-7 88 -0.096485 hybrid +149_1-3 Q0 MARCO_13_21768197-13 89 -0.096580 hybrid +149_1-3 Q0 MARCO_05_1348554376-7 90 -0.098329 hybrid +149_1-3 Q0 MARCO_01_795318884-4 91 -0.102158 hybrid +149_1-3 Q0 MARCO_45_204247560-8 92 -0.104217 hybrid +149_1-3 Q0 MARCO_31_1556470851-5 93 -0.105472 hybrid +149_1-3 Q0 MARCO_50_2506569724-15 94 -0.108091 hybrid +149_1-3 Q0 MARCO_11_775099364-11 95 -0.109131 hybrid +149_1-3 Q0 MARCO_28_422103363-4 96 -0.110655 hybrid +149_1-3 Q0 MARCO_50_2487734241-25 97 -0.111745 hybrid +149_1-3 Q0 MARCO_11_776578264-14 98 -0.116353 hybrid +149_1-3 Q0 MARCO_50_1399796977-6 99 -0.117193 hybrid +149_1-3 Q0 KILT_2421086-2 100 -0.118563 hybrid +149_1-5 Q0 MARCO_13_542473359-8 1 0.499997 hybrid +149_1-5 Q0 MARCO_50_513855146-28 2 0.335139 hybrid +149_1-5 Q0 MARCO_50_2506569724-109 3 0.327241 hybrid +149_1-5 Q0 KILT_59012195-9 4 0.324714 hybrid +149_1-5 Q0 MARCO_27_583264304-4 5 0.288495 hybrid +149_1-5 Q0 MARCO_46_387713679-4 6 0.286645 hybrid +149_1-5 Q0 MARCO_59_361500488-5 7 0.263583 hybrid +149_1-5 Q0 MARCO_51_1731582398-6 8 0.244536 hybrid +149_1-5 Q0 KILT_59012195-1 9 0.229821 hybrid +149_1-5 Q0 MARCO_50_2503058169-35 10 0.226804 hybrid +149_1-5 Q0 MARCO_50_930260817-5 11 0.221398 hybrid +149_1-5 Q0 MARCO_46_387713679-1 12 0.186606 hybrid +149_1-5 Q0 MARCO_41_2075074561-3 13 0.185108 hybrid +149_1-5 Q0 MARCO_18_2718509899-24 14 0.167855 hybrid +149_1-5 Q0 MARCO_50_1519010033-6 15 0.159299 hybrid +149_1-5 Q0 MARCO_53_1465253531-3 16 0.143840 hybrid +149_1-5 Q0 MARCO_07_262601550-2 17 0.135065 hybrid +149_1-5 Q0 MARCO_51_1731582398-7 18 0.129496 hybrid +149_1-5 Q0 MARCO_20_363769433-4 19 0.123285 hybrid +149_1-5 Q0 MARCO_50_930260817-22 20 0.118062 hybrid +149_1-5 Q0 MARCO_53_359234373-2 21 0.117522 hybrid +149_1-5 Q0 MARCO_50_2497807304-18 22 0.108844 hybrid +149_1-5 Q0 MARCO_41_633308289-3 23 0.106888 hybrid +149_1-5 Q0 MARCO_23_244585903-1 24 0.105242 hybrid +149_1-5 Q0 MARCO_43_747917301-4 25 0.097843 hybrid +149_1-5 Q0 MARCO_50_2498479427-2 26 0.095311 hybrid +149_1-5 Q0 MARCO_08_816090904-7 27 0.078740 hybrid +149_1-5 Q0 KILT_6014851-42 28 0.060453 hybrid +149_1-5 Q0 MARCO_50_492302160-8 29 0.059332 hybrid +149_1-5 Q0 MARCO_50_2497807304-20 30 0.055311 hybrid +149_1-5 Q0 MARCO_50_930260817-3 31 0.054282 hybrid +149_1-5 Q0 MARCO_51_1731582398-2 32 0.051174 hybrid +149_1-5 Q0 MARCO_41_633308289-2 33 0.047551 hybrid +149_1-5 Q0 MARCO_34_543863470-8 34 0.040896 hybrid +149_1-5 Q0 MARCO_52_598387767-2 35 0.040218 hybrid +149_1-5 Q0 MARCO_31_1557771366-2 36 0.037712 hybrid +149_1-5 Q0 KILT_222034-7 37 0.037314 hybrid +149_1-5 Q0 MARCO_50_1399796977-10 38 0.027352 hybrid +149_1-5 Q0 KILT_2111074-3 39 0.018772 hybrid +149_1-5 Q0 MARCO_19_2056728389-3 40 0.015184 hybrid +149_1-5 Q0 MARCO_13_1664804551-4 41 0.013228 hybrid +149_1-5 Q0 MARCO_16_3025199239-3 42 0.011444 hybrid +149_1-5 Q0 MARCO_52_1185715701-6 43 0.003292 hybrid +149_1-5 Q0 MARCO_50_2497807304-21 44 0.001738 hybrid +149_1-5 Q0 MARCO_59_437144138-3 45 -0.003210 hybrid +149_1-5 Q0 MARCO_50_2509171028-14 46 -0.003852 hybrid +149_1-5 Q0 MARCO_50_2506569724-60 47 -0.004392 hybrid +149_1-5 Q0 MARCO_46_378633695-9 48 -0.005121 hybrid +149_1-5 Q0 MARCO_50_930260817-2 49 -0.005366 hybrid +149_1-5 Q0 MARCO_53_1417280823-1 50 -0.006120 hybrid +149_1-5 Q0 MARCO_05_1348554376-7 51 -0.006125 hybrid +149_1-5 Q0 MARCO_46_387713679-2 52 -0.006364 hybrid +149_1-5 Q0 MARCO_23_1085295197-7 53 -0.010736 hybrid +149_1-5 Q0 MARCO_34_543863470-5 54 -0.015118 hybrid +149_1-5 Q0 MARCO_55_763593574-3 55 -0.016326 hybrid +149_1-5 Q0 MARCO_52_680902651-21 56 -0.018853 hybrid +149_1-5 Q0 MARCO_11_775099364-8 57 -0.020825 hybrid +149_1-5 Q0 MARCO_46_378699270-12 58 -0.021396 hybrid +149_1-5 Q0 KILT_10448121-2 59 -0.022955 hybrid +149_1-5 Q0 MARCO_41_1383279793-5 60 -0.028158 hybrid +149_1-5 Q0 MARCO_22_994341299-8 61 -0.032234 hybrid +149_1-5 Q0 MARCO_19_2056728389-2 62 -0.035357 hybrid +149_1-5 Q0 MARCO_46_122997579-2 63 -0.036045 hybrid +149_1-5 Q0 MARCO_19_2056728389-1 64 -0.039062 hybrid +149_1-5 Q0 MARCO_27_583459329-7 65 -0.042664 hybrid +149_1-5 Q0 MARCO_02_839953384-13 66 -0.045472 hybrid +149_1-5 Q0 MARCO_50_930260817-23 67 -0.046048 hybrid +149_1-5 Q0 MARCO_50_2497807304-55 68 -0.047688 hybrid +149_1-5 Q0 MARCO_50_1660829735-1 69 -0.048106 hybrid +149_1-5 Q0 MARCO_50_2504117447-5 70 -0.050598 hybrid +149_1-5 Q0 MARCO_09_387689068-19 71 -0.055546 hybrid +149_1-5 Q0 MARCO_29_402220207-3 72 -0.059688 hybrid +149_1-5 Q0 MARCO_35_331699241-4 73 -0.060514 hybrid +149_1-5 Q0 KILT_30104163-3 74 -0.061461 hybrid +149_1-5 Q0 MARCO_11_776340316-3 75 -0.066786 hybrid +149_1-5 Q0 MARCO_50_930260817-8 76 -0.069951 hybrid +149_1-5 Q0 MARCO_30_1131722693-17 77 -0.071245 hybrid +149_1-5 Q0 MARCO_15_529028420-3 78 -0.071525 hybrid +149_1-5 Q0 MARCO_28_422103363-4 79 -0.073354 hybrid +149_1-5 Q0 MARCO_50_930260817-18 80 -0.074598 hybrid +149_1-5 Q0 MARCO_23_1727034332-2 81 -0.075224 hybrid +149_1-5 Q0 MARCO_50_930260817-27 82 -0.077125 hybrid +149_1-5 Q0 MARCO_52_681689004-13 83 -0.077573 hybrid +149_1-5 Q0 KILT_59012195-13 84 -0.078664 hybrid +149_1-5 Q0 MARCO_15_137154303-6 85 -0.079535 hybrid +149_1-5 Q0 MARCO_42_206248970-6 86 -0.081935 hybrid +149_1-5 Q0 MARCO_33_178546655-15 87 -0.088157 hybrid +149_1-5 Q0 MARCO_11_776340316-2 88 -0.089257 hybrid +149_1-5 Q0 MARCO_50_513855146-4 89 -0.090266 hybrid +149_1-5 Q0 MARCO_50_2504117447-55 90 -0.092095 hybrid +149_1-5 Q0 MARCO_11_775639637-9 91 -0.092941 hybrid +149_1-5 Q0 MARCO_56_1028157659-101 92 -0.093028 hybrid +149_1-5 Q0 MARCO_40_1275474991-3 93 -0.093425 hybrid +149_1-5 Q0 MARCO_50_2504117447-28 94 -0.094526 hybrid +149_1-5 Q0 MARCO_52_598387767-3 95 -0.095499 hybrid +149_1-5 Q0 MARCO_50_1674713088-5 96 -0.095550 hybrid +149_1-5 Q0 MARCO_53_809461603-5 97 -0.098205 hybrid +149_1-5 Q0 MARCO_24_958046853-3 98 -0.098398 hybrid +149_1-5 Q0 MARCO_40_1279055765-13 99 -0.098949 hybrid +149_1-5 Q0 MARCO_41_1143911324-20 100 -0.102648 hybrid +149_2-1 Q0 MARCO_13_542473359-8 1 0.499998 hybrid +149_2-1 Q0 KILT_59012195-9 2 0.398056 hybrid +149_2-1 Q0 MARCO_51_1731582398-2 3 0.311581 hybrid +149_2-1 Q0 MARCO_27_583264304-4 4 0.270421 hybrid +149_2-1 Q0 MARCO_31_1564796326-79 5 0.263260 hybrid +149_2-1 Q0 MARCO_50_2506569724-109 6 0.247520 hybrid +149_2-1 Q0 MARCO_13_542473359-5 7 0.243576 hybrid +149_2-1 Q0 MARCO_41_2075074561-3 8 0.224001 hybrid +149_2-1 Q0 MARCO_50_2498479427-2 9 0.218975 hybrid +149_2-1 Q0 MARCO_50_930260817-8 10 0.210632 hybrid +149_2-1 Q0 MARCO_50_930260817-23 11 0.203879 hybrid +149_2-1 Q0 MARCO_50_2497807304-18 12 0.196692 hybrid +149_2-1 Q0 MARCO_50_522692081-25 13 0.186356 hybrid +149_2-1 Q0 MARCO_20_1108553339-5 14 0.173980 hybrid +149_2-1 Q0 MARCO_33_178546655-126 15 0.172958 hybrid +149_2-1 Q0 MARCO_50_1677916118-12 16 0.148030 hybrid +149_2-1 Q0 MARCO_38_411820317-3 17 0.144296 hybrid +149_2-1 Q0 MARCO_19_2056728389-2 18 0.135511 hybrid +149_2-1 Q0 MARCO_44_99538423-4 19 0.130049 hybrid +149_2-1 Q0 MARCO_30_1131722693-17 20 0.125953 hybrid +149_2-1 Q0 MARCO_19_2056728389-3 21 0.122269 hybrid +149_2-1 Q0 MARCO_50_492302160-8 22 0.118527 hybrid +149_2-1 Q0 MARCO_50_930260817-3 23 0.117261 hybrid +149_2-1 Q0 MARCO_22_996415617-7 24 0.116340 hybrid +149_2-1 Q0 MARCO_50_930260817-5 25 0.114494 hybrid +149_2-1 Q0 MARCO_51_1731582398-6 26 0.111210 hybrid +149_2-1 Q0 MARCO_10_969054202-15 27 0.108022 hybrid +149_2-1 Q0 MARCO_20_1108553339-7 28 0.104898 hybrid +149_2-1 Q0 MARCO_50_1399796977-10 29 0.101534 hybrid +149_2-1 Q0 MARCO_22_994341299-8 30 0.099267 hybrid +149_2-1 Q0 MARCO_50_2497747935-1 31 0.098981 hybrid +149_2-1 Q0 MARCO_20_67992270-1 32 0.095154 hybrid +149_2-1 Q0 MARCO_26_1779094614-5 33 0.091723 hybrid +149_2-1 Q0 MARCO_50_2497807304-21 34 0.089894 hybrid +149_2-1 Q0 MARCO_50_930260817-18 35 0.089103 hybrid +149_2-1 Q0 KILT_59012195-8 36 0.085121 hybrid +149_2-1 Q0 MARCO_40_1277870246-6 37 0.084881 hybrid +149_2-1 Q0 MARCO_50_930260817-1 38 0.068965 hybrid +149_2-1 Q0 MARCO_18_2718509899-24 39 0.068275 hybrid +149_2-1 Q0 MARCO_50_2497747935-32 40 0.060790 hybrid +149_2-1 Q0 KILT_25745171-6 41 0.047169 hybrid +149_2-1 Q0 MARCO_50_2497807304-20 42 0.044444 hybrid +149_2-1 Q0 MARCO_50_930244658-6 43 0.041564 hybrid +149_2-1 Q0 MARCO_23_1085295197-7 44 0.018250 hybrid +149_2-1 Q0 MARCO_50_930260817-6 45 0.018116 hybrid +149_2-1 Q0 MARCO_51_1731582398-7 46 0.014117 hybrid +149_2-1 Q0 MARCO_50_930202238-23 47 0.012140 hybrid +149_2-1 Q0 MARCO_50_930160608-16 48 0.004344 hybrid +149_2-1 Q0 MARCO_50_513855146-4 49 0.001152 hybrid +149_2-1 Q0 MARCO_59_361500488-5 50 -0.000080 hybrid +149_2-1 Q0 MARCO_50_1611570195-2 51 -0.005433 hybrid +149_2-1 Q0 MARCO_20_1108553339-1 52 -0.014651 hybrid +149_2-1 Q0 MARCO_50_930244658-8 53 -0.016892 hybrid +149_2-1 Q0 MARCO_36_995471058-3 54 -0.018259 hybrid +149_2-1 Q0 MARCO_50_930244658-3 55 -0.020723 hybrid +149_2-1 Q0 KILT_6014851-38 56 -0.022186 hybrid +149_2-1 Q0 MARCO_18_3817510122-34 57 -0.025025 hybrid +149_2-1 Q0 MARCO_28_422103363-4 58 -0.027233 hybrid +149_2-1 Q0 MARCO_22_994017440-9 59 -0.028498 hybrid +149_2-1 Q0 MARCO_46_384234314-8 60 -0.033427 hybrid +149_2-1 Q0 MARCO_14_949127720-5 61 -0.034423 hybrid +149_2-1 Q0 MARCO_02_931565652-16 62 -0.035424 hybrid +149_2-1 Q0 MARCO_22_534279812-3 63 -0.036635 hybrid +149_2-1 Q0 KILT_6014851-43 64 -0.039377 hybrid +149_2-1 Q0 MARCO_13_329543671-3 65 -0.040727 hybrid +149_2-1 Q0 MARCO_44_1280158600-2 66 -0.041711 hybrid +149_2-1 Q0 MARCO_55_763593574-3 67 -0.048851 hybrid +149_2-1 Q0 MARCO_13_1664804551-4 68 -0.051896 hybrid +149_2-1 Q0 KILT_18618509-22 69 -0.054835 hybrid +149_2-1 Q0 KILT_47314368-4 70 -0.055016 hybrid +149_2-1 Q0 MARCO_50_2497747935-34 71 -0.057909 hybrid +149_2-1 Q0 MARCO_33_178546655-135 72 -0.058414 hybrid +149_2-1 Q0 MARCO_50_2503058169-35 73 -0.058683 hybrid +149_2-1 Q0 MARCO_46_387713679-4 74 -0.059911 hybrid +149_2-1 Q0 MARCO_13_321403865-4 75 -0.065933 hybrid +149_2-1 Q0 MARCO_52_1327961261-3 76 -0.066421 hybrid +149_2-1 Q0 MARCO_19_2056728389-1 77 -0.070949 hybrid +149_2-1 Q0 KILT_59012195-1 78 -0.072413 hybrid +149_2-1 Q0 MARCO_50_2375720993-2 79 -0.073271 hybrid +149_2-1 Q0 MARCO_50_2497747935-12 80 -0.075987 hybrid +149_2-1 Q0 MARCO_50_2497807304-28 81 -0.076084 hybrid +149_2-1 Q0 MARCO_50_513855146-28 82 -0.076101 hybrid +149_2-1 Q0 MARCO_50_930260817-2 83 -0.076155 hybrid +149_2-1 Q0 MARCO_50_930160608-10 84 -0.078485 hybrid +149_2-1 Q0 MARCO_50_2497807304-60 85 -0.084839 hybrid +149_2-1 Q0 MARCO_50_2497807304-55 86 -0.089057 hybrid +149_2-1 Q0 MARCO_53_1465253531-3 87 -0.089953 hybrid +149_2-1 Q0 MARCO_05_1141746875-3 88 -0.096942 hybrid +149_2-1 Q0 MARCO_50_2506569724-58 89 -0.101206 hybrid +149_2-1 Q0 MARCO_33_178546655-106 90 -0.102009 hybrid +149_2-1 Q0 KILT_30104163-3 91 -0.102198 hybrid +149_2-1 Q0 MARCO_50_519742996-7 92 -0.103439 hybrid +149_2-1 Q0 MARCO_50_2506569724-57 93 -0.104031 hybrid +149_2-1 Q0 MARCO_43_774872518-10 94 -0.105676 hybrid +149_2-1 Q0 MARCO_40_1191575982-1 95 -0.106142 hybrid +149_2-1 Q0 MARCO_50_930260817-22 96 -0.107173 hybrid +149_2-1 Q0 MARCO_50_930202238-9 97 -0.108468 hybrid +149_2-1 Q0 MARCO_05_1348554376-7 98 -0.108918 hybrid +149_2-1 Q0 MARCO_41_1130431634-15 99 -0.109826 hybrid +149_2-1 Q0 MARCO_50_1945445308-4 100 -0.110032 hybrid +149_2-3 Q0 MARCO_32_596666309-26 1 0.499998 hybrid +149_2-3 Q0 MARCO_50_637809973-9 2 0.303273 hybrid +149_2-3 Q0 MARCO_00_589049335-87 3 0.127090 hybrid +149_2-3 Q0 MARCO_24_1909947062-53 4 0.123078 hybrid +149_2-3 Q0 MARCO_25_72808695-10 5 0.117213 hybrid +149_2-3 Q0 MARCO_01_1179353498-14 6 0.102549 hybrid +149_2-3 Q0 MARCO_41_1194679390-47 7 0.096927 hybrid +149_2-3 Q0 MARCO_41_1235327904-11 8 0.083109 hybrid +149_2-3 Q0 MARCO_14_747523206-2 9 0.080332 hybrid +149_2-3 Q0 MARCO_14_747523206-4 10 0.078077 hybrid +149_2-3 Q0 MARCO_41_1137503296-9 11 0.077069 hybrid +149_2-3 Q0 MARCO_15_311086668-11 12 0.074210 hybrid +149_2-3 Q0 MARCO_50_2561265932-25 13 0.058431 hybrid +149_2-3 Q0 MARCO_41_1179472384-35 14 0.053024 hybrid +149_2-3 Q0 MARCO_41_1179472384-69 15 0.051413 hybrid +149_2-3 Q0 MARCO_41_1209134785-30 16 0.050570 hybrid +149_2-3 Q0 MARCO_51_1500746051-8 17 0.028828 hybrid +149_2-3 Q0 MARCO_10_355156454-38 18 0.028022 hybrid +149_2-3 Q0 MARCO_35_1722626728-5 19 0.024304 hybrid +149_2-3 Q0 MARCO_50_939080155-26 20 0.012000 hybrid +149_2-3 Q0 MARCO_10_375627158-2 21 -0.000576 hybrid +149_2-3 Q0 MARCO_48_1400603345-4 22 -0.002174 hybrid +149_2-3 Q0 MARCO_01_802276193-1 23 -0.003897 hybrid +149_2-3 Q0 MARCO_41_1137503296-20 24 -0.006469 hybrid +149_2-3 Q0 MARCO_41_1379972176-96 25 -0.013554 hybrid +149_2-3 Q0 MARCO_41_1235327904-15 26 -0.015499 hybrid +149_2-3 Q0 MARCO_37_176450512-6 27 -0.016824 hybrid +149_2-3 Q0 MARCO_25_1023032532-6 28 -0.025986 hybrid +149_2-3 Q0 MARCO_50_491523289-5 29 -0.026991 hybrid +149_2-3 Q0 MARCO_00_589049335-147 30 -0.028016 hybrid +149_2-3 Q0 MARCO_41_1220813784-42 31 -0.030379 hybrid +149_2-3 Q0 MARCO_41_1235327904-37 32 -0.033675 hybrid +149_2-3 Q0 MARCO_35_1722626728-1 33 -0.034956 hybrid +149_2-3 Q0 MARCO_41_1162390508-30 34 -0.035917 hybrid +149_2-3 Q0 MARCO_05_1167664590-3 35 -0.039345 hybrid +149_2-3 Q0 MARCO_32_596799711-41 36 -0.042665 hybrid +149_2-3 Q0 MARCO_34_1322249938-15 37 -0.047907 hybrid +149_2-3 Q0 MARCO_56_1010359903-38 38 -0.047991 hybrid +149_2-3 Q0 MARCO_41_1182270792-3 39 -0.049148 hybrid +149_2-3 Q0 MARCO_41_1403746677-19 40 -0.052815 hybrid +149_2-3 Q0 MARCO_41_1229932042-63 41 -0.054160 hybrid +149_2-3 Q0 MARCO_15_1275857024-7 42 -0.058903 hybrid +149_2-3 Q0 MARCO_41_1162390508-23 43 -0.061691 hybrid +149_2-3 Q0 MARCO_41_1123956444-27 44 -0.067162 hybrid +149_2-3 Q0 MARCO_41_1188921370-79 45 -0.069275 hybrid +149_2-3 Q0 MARCO_14_747523206-7 46 -0.070061 hybrid +149_2-3 Q0 MARCO_40_1191575982-2 47 -0.070455 hybrid +149_2-3 Q0 MARCO_32_1275595068-10 48 -0.071021 hybrid +149_2-3 Q0 MARCO_32_596799711-42 49 -0.071605 hybrid +149_2-3 Q0 MARCO_54_550248557-5 50 -0.072228 hybrid +149_2-3 Q0 MARCO_41_1194679390-17 51 -0.073924 hybrid +149_2-3 Q0 MARCO_37_1185835922-4 52 -0.075373 hybrid +149_2-3 Q0 MARCO_51_1238693587-67 53 -0.078313 hybrid +149_2-3 Q0 MARCO_54_1938314570-7 54 -0.082038 hybrid +149_2-3 Q0 MARCO_41_1179472384-29 55 -0.083045 hybrid +149_2-3 Q0 MARCO_50_2489311481-42 56 -0.084461 hybrid +149_2-3 Q0 MARCO_24_141027530-10 57 -0.084714 hybrid +149_2-3 Q0 MARCO_51_1238693587-63 58 -0.086696 hybrid +149_2-3 Q0 MARCO_24_1909947062-33 59 -0.089652 hybrid +149_2-3 Q0 MARCO_00_589049335-73 60 -0.092332 hybrid +149_2-3 Q0 MARCO_41_1169008544-69 61 -0.092781 hybrid +149_2-3 Q0 MARCO_35_804595736-4 62 -0.095299 hybrid +149_2-3 Q0 MARCO_51_454838175-11 63 -0.095922 hybrid +149_2-3 Q0 MARCO_03_1029808199-4 64 -0.096421 hybrid +149_2-3 Q0 MARCO_41_1169008544-50 65 -0.098083 hybrid +149_2-3 Q0 MARCO_24_1909947062-23 66 -0.098268 hybrid +149_2-3 Q0 MARCO_30_817030000-2 67 -0.101204 hybrid +149_2-3 Q0 MARCO_35_1730575540-68 68 -0.105121 hybrid +149_2-3 Q0 MARCO_23_1831393208-7 69 -0.107306 hybrid +149_2-3 Q0 KILT_41677521-7 70 -0.107393 hybrid +149_2-3 Q0 MARCO_41_1179472384-44 71 -0.108735 hybrid +149_2-3 Q0 MARCO_41_1137503296-42 72 -0.110168 hybrid +149_2-3 Q0 MARCO_39_1697713928-5 73 -0.112871 hybrid +149_2-3 Q0 MARCO_23_1281648178-3 74 -0.113815 hybrid +149_2-3 Q0 MARCO_26_348173034-32 75 -0.116367 hybrid +149_2-3 Q0 MARCO_11_719760350-9 76 -0.121234 hybrid +149_2-3 Q0 MARCO_41_1194679390-29 77 -0.122498 hybrid +149_2-3 Q0 MARCO_39_1366234933-6 78 -0.124797 hybrid +149_2-3 Q0 MARCO_41_1143444374-33 79 -0.125054 hybrid +149_2-3 Q0 KILT_1780163-28 80 -0.125205 hybrid +149_2-3 Q0 MARCO_41_1210168895-13 81 -0.125761 hybrid +149_2-3 Q0 MARCO_13_1766552008-1 82 -0.127794 hybrid +149_2-3 Q0 MARCO_30_1135728886-7 83 -0.128596 hybrid +149_2-3 Q0 MARCO_39_1696973953-3 84 -0.128782 hybrid +149_2-3 Q0 MARCO_50_1980337202-19 85 -0.131064 hybrid +149_2-3 Q0 MARCO_25_1031899298-14 86 -0.132399 hybrid +149_2-3 Q0 MARCO_23_1831217260-6 87 -0.134583 hybrid +149_2-3 Q0 MARCO_14_747523206-8 88 -0.135247 hybrid +149_2-3 Q0 MARCO_26_349144039-10 89 -0.136518 hybrid +149_2-3 Q0 MARCO_26_348173034-33 90 -0.137243 hybrid +149_2-3 Q0 KILT_61404596-7 91 -0.137445 hybrid +149_2-3 Q0 MARCO_50_2561265932-4 92 -0.138530 hybrid +149_2-3 Q0 MARCO_00_589049335-83 93 -0.139437 hybrid +149_2-3 Q0 MARCO_51_1237560567-14 94 -0.141739 hybrid +149_2-3 Q0 MARCO_41_1399599502-19 95 -0.142623 hybrid +149_2-3 Q0 MARCO_41_1403746677-16 96 -0.144183 hybrid +149_2-3 Q0 MARCO_18_445386357-7 97 -0.145832 hybrid +149_2-3 Q0 MARCO_41_1179472384-39 98 -0.146142 hybrid +149_2-3 Q0 MARCO_03_246430492-5 99 -0.146604 hybrid +149_2-3 Q0 MARCO_24_1909947062-84 100 -0.148562 hybrid +149_2-5 Q0 MARCO_40_1191575982-2 1 0.500000 hybrid +149_2-5 Q0 MARCO_24_571574-9 2 0.363322 hybrid +149_2-5 Q0 MARCO_10_969054202-15 3 0.116667 hybrid +149_2-5 Q0 MARCO_40_1191575982-7 4 0.089135 hybrid +149_2-5 Q0 MARCO_30_1131722693-17 5 0.074781 hybrid +149_2-5 Q0 MARCO_17_2957562845-7 6 0.067466 hybrid +149_2-5 Q0 MARCO_40_1191575982-8 7 0.032396 hybrid +149_2-5 Q0 MARCO_40_1191575982-6 8 0.026687 hybrid +149_2-5 Q0 MARCO_00_884186760-76 9 0.018088 hybrid +149_2-5 Q0 MARCO_40_1191575982-1 10 0.013378 hybrid +149_2-5 Q0 MARCO_40_1191575982-3 11 0.007675 hybrid +149_2-5 Q0 KILT_13478962-1 12 -0.002119 hybrid +149_2-5 Q0 MARCO_40_1191575982-9 13 -0.005287 hybrid +149_2-5 Q0 MARCO_50_938315076-9 14 -0.015327 hybrid +149_2-5 Q0 MARCO_27_583264304-5 15 -0.024247 hybrid +149_2-5 Q0 MARCO_27_583264304-3 16 -0.026448 hybrid +149_2-5 Q0 MARCO_50_485274499-4 17 -0.034260 hybrid +149_2-5 Q0 MARCO_49_794417000-1 18 -0.038113 hybrid +149_2-5 Q0 MARCO_27_583264304-4 19 -0.041319 hybrid +149_2-5 Q0 MARCO_50_2512736612-28 20 -0.041978 hybrid +149_2-5 Q0 MARCO_36_900874695-1 21 -0.056289 hybrid +149_2-5 Q0 MARCO_51_610160243-12 22 -0.059421 hybrid +149_2-5 Q0 MARCO_40_1274658127-3 23 -0.060784 hybrid +149_2-5 Q0 MARCO_11_786086041-8 24 -0.079540 hybrid +149_2-5 Q0 MARCO_01_1058412633-17 25 -0.083582 hybrid +149_2-5 Q0 MARCO_36_900874695-3 26 -0.091555 hybrid +149_2-5 Q0 MARCO_01_1058412633-13 27 -0.093783 hybrid +149_2-5 Q0 MARCO_40_172709008-4 28 -0.097455 hybrid +149_2-5 Q0 MARCO_51_1242222040-111 29 -0.100079 hybrid +149_2-5 Q0 MARCO_50_1459198655-28 30 -0.105490 hybrid +149_2-5 Q0 MARCO_18_1316254592-8 31 -0.106568 hybrid +149_2-5 Q0 MARCO_24_571574-8 32 -0.111039 hybrid +149_2-5 Q0 MARCO_50_492122785-3 33 -0.121223 hybrid +149_2-5 Q0 MARCO_50_1393823696-19 34 -0.122838 hybrid +149_2-5 Q0 MARCO_03_585488427-311 35 -0.127074 hybrid +149_2-5 Q0 MARCO_05_419817382-5 36 -0.127336 hybrid +149_2-5 Q0 MARCO_40_1191575982-4 37 -0.132419 hybrid +149_2-5 Q0 MARCO_50_491410726-26 38 -0.134195 hybrid +149_2-5 Q0 MARCO_50_1459198655-33 39 -0.134752 hybrid +149_2-5 Q0 MARCO_09_427897160-12 40 -0.145149 hybrid +149_2-5 Q0 MARCO_12_124818619-6 41 -0.148205 hybrid +149_2-5 Q0 MARCO_41_1190752049-11 42 -0.150269 hybrid +149_2-5 Q0 MARCO_50_491410726-7 43 -0.150275 hybrid +149_2-5 Q0 MARCO_03_585488427-165 44 -0.150550 hybrid +149_2-5 Q0 MARCO_50_2561159032-3 45 -0.155621 hybrid +149_2-5 Q0 MARCO_50_1931425493-27 46 -0.155634 hybrid +149_2-5 Q0 MARCO_30_1026589018-57 47 -0.159061 hybrid +149_2-5 Q0 MARCO_18_3768094743-26 48 -0.159074 hybrid +149_2-5 Q0 MARCO_52_1838965405-2 49 -0.162094 hybrid +149_2-5 Q0 MARCO_27_583264304-7 50 -0.163810 hybrid +149_2-5 Q0 MARCO_50_1526691015-12 51 -0.171066 hybrid +149_2-5 Q0 MARCO_01_764125262-2 52 -0.172320 hybrid +149_2-5 Q0 MARCO_09_427897160-21 53 -0.173008 hybrid +149_2-5 Q0 MARCO_52_1838965405-1 54 -0.173313 hybrid +149_2-5 Q0 MARCO_54_1004252023-2 55 -0.174758 hybrid +149_2-5 Q0 MARCO_17_2520146386-3 56 -0.182442 hybrid +149_2-5 Q0 MARCO_28_315369967-9 57 -0.183612 hybrid +149_2-5 Q0 MARCO_45_979033601-9 58 -0.184958 hybrid +149_2-5 Q0 MARCO_04_858682329-2 59 -0.188214 hybrid +149_2-5 Q0 MARCO_09_427897160-13 60 -0.189826 hybrid +149_2-5 Q0 MARCO_55_680041140-2 61 -0.191942 hybrid +149_2-5 Q0 MARCO_00_695900920-10 62 -0.199905 hybrid +149_2-5 Q0 MARCO_29_834171933-6 63 -0.200115 hybrid +149_2-5 Q0 MARCO_50_1447436167-18 64 -0.204403 hybrid +149_2-5 Q0 MARCO_52_1838965405-6 65 -0.209100 hybrid +149_2-5 Q0 KILT_24958527-5 66 -0.211675 hybrid +149_2-5 Q0 MARCO_50_1436538440-8 67 -0.212389 hybrid +149_2-5 Q0 MARCO_36_900874695-5 68 -0.213054 hybrid +149_2-5 Q0 MARCO_05_843121876-20 69 -0.215448 hybrid +149_2-5 Q0 MARCO_26_348494658-17 70 -0.217918 hybrid +149_2-5 Q0 MARCO_34_1322249938-26 71 -0.218537 hybrid +149_2-5 Q0 KILT_49392-5 72 -0.221020 hybrid +149_2-5 Q0 MARCO_21_755658954-4 73 -0.222776 hybrid +149_2-5 Q0 MARCO_41_1132375146-12 74 -0.224479 hybrid +149_2-5 Q0 MARCO_37_176450512-6 75 -0.225986 hybrid +149_2-5 Q0 MARCO_26_362810067-100 76 -0.226988 hybrid +149_2-5 Q0 MARCO_50_1514555830-18 77 -0.227303 hybrid +149_2-5 Q0 MARCO_49_794417000-4 78 -0.232203 hybrid +149_2-5 Q0 MARCO_45_1320492187-4 79 -0.233926 hybrid +149_2-5 Q0 MARCO_41_1202115699-52 80 -0.234129 hybrid +149_2-5 Q0 MARCO_26_104833674-5 81 -0.234997 hybrid +149_2-5 Q0 MARCO_29_1174109593-16 82 -0.236403 hybrid +149_2-5 Q0 MARCO_12_1454463467-7 83 -0.238709 hybrid +149_2-5 Q0 MARCO_50_1459198655-22 84 -0.241139 hybrid +149_2-5 Q0 MARCO_51_1731582398-2 85 -0.241152 hybrid +149_2-5 Q0 MARCO_30_129292587-3 86 -0.241519 hybrid +149_2-5 Q0 MARCO_18_1808611836-7 87 -0.242531 hybrid +149_2-5 Q0 MARCO_50_1969914330-37 88 -0.243452 hybrid +149_2-5 Q0 MARCO_50_2400196205-60 89 -0.243976 hybrid +149_2-5 Q0 MARCO_55_132943950-16 90 -0.245466 hybrid +149_2-5 Q0 MARCO_21_755658954-3 91 -0.248939 hybrid +149_2-5 Q0 MARCO_50_515121962-7 92 -0.249060 hybrid +149_2-5 Q0 MARCO_15_1984988784-15 93 -0.252889 hybrid +149_2-5 Q0 MARCO_50_1526691015-18 94 -0.253407 hybrid +149_2-5 Q0 MARCO_27_583459329-7 95 -0.254832 hybrid +149_2-5 Q0 MARCO_55_680041140-10 96 -0.256833 hybrid +149_2-5 Q0 MARCO_41_1369292452-63 97 -0.256872 hybrid +149_2-5 Q0 MARCO_51_1242871660-55 98 -0.256954 hybrid +149_2-5 Q0 MARCO_50_1393823696-12 99 -0.259025 hybrid +149_2-5 Q0 MARCO_50_1526691015-16 100 -0.259732 hybrid +149_2-7 Q0 MARCO_39_1521134860-6 1 0.500002 hybrid +149_2-7 Q0 MARCO_39_1521836617-6 2 0.500002 hybrid +149_2-7 Q0 MARCO_39_1520802711-6 3 0.500002 hybrid +149_2-7 Q0 MARCO_39_1520587445-7 4 0.500002 hybrid +149_2-7 Q0 MARCO_39_1519927722-6 5 0.484656 hybrid +149_2-7 Q0 MARCO_39_1520236225-7 6 0.463664 hybrid +149_2-7 Q0 MARCO_46_387713679-2 7 0.461545 hybrid +149_2-7 Q0 MARCO_39_1520624701-7 8 0.420807 hybrid +149_2-7 Q0 MARCO_39_1521984954-7 9 0.420807 hybrid +149_2-7 Q0 MARCO_39_1520950426-7 10 0.420807 hybrid +149_2-7 Q0 MARCO_39_1521761335-8 11 0.420807 hybrid +149_2-7 Q0 MARCO_39_1521419765-6 12 0.375100 hybrid +149_2-7 Q0 MARCO_39_1520198997-6 13 0.375100 hybrid +149_2-7 Q0 MARCO_11_775487494-1 14 0.358268 hybrid +149_2-7 Q0 MARCO_39_1522138753-6 15 0.298771 hybrid +149_2-7 Q0 MARCO_24_571574-4 16 0.274150 hybrid +149_2-7 Q0 MARCO_39_1521799786-6 17 0.272334 hybrid +149_2-7 Q0 MARCO_39_1521207538-6 18 0.272334 hybrid +149_2-7 Q0 MARCO_39_1521533349-6 19 0.272334 hybrid +149_2-7 Q0 MARCO_39_1519850876-6 20 0.271347 hybrid +149_2-7 Q0 MARCO_50_1510188904-2 21 0.242570 hybrid +149_2-7 Q0 MARCO_59_437144138-3 22 0.240545 hybrid +149_2-7 Q0 MARCO_13_655380145-2 23 0.237553 hybrid +149_2-7 Q0 MARCO_39_1520083217-7 24 0.236845 hybrid +149_2-7 Q0 MARCO_39_1520727366-7 25 0.236845 hybrid +149_2-7 Q0 MARCO_39_1521496261-7 26 0.236845 hybrid +149_2-7 Q0 MARCO_24_1015620193-2 27 0.226823 hybrid +149_2-7 Q0 MARCO_10_366981001-2 28 0.220013 hybrid +149_2-7 Q0 MARCO_15_267741118-1 29 0.206248 hybrid +149_2-7 Q0 KILT_27804-2 30 0.205426 hybrid +149_2-7 Q0 MARCO_09_387689068-15 31 0.201840 hybrid +149_2-7 Q0 MARCO_39_1520913204-6 32 0.162549 hybrid +149_2-7 Q0 MARCO_39_1521419765-7 33 0.142513 hybrid +149_2-7 Q0 MARCO_39_1520198997-7 34 0.142513 hybrid +149_2-7 Q0 MARCO_46_378699270-12 35 0.142120 hybrid +149_2-7 Q0 MARCO_11_775487494-3 36 0.133383 hybrid +149_2-7 Q0 MARCO_11_776340316-3 37 0.128830 hybrid +149_2-7 Q0 MARCO_24_1015620193-3 38 0.126923 hybrid +149_2-7 Q0 MARCO_53_1515717958-3 39 0.119060 hybrid +149_2-7 Q0 MARCO_11_775487494-6 40 0.118002 hybrid +149_2-7 Q0 MARCO_22_994896697-2 41 0.104740 hybrid +149_2-7 Q0 MARCO_11_776719134-3 42 0.097521 hybrid +149_2-7 Q0 MARCO_39_1521207538-7 43 0.090165 hybrid +149_2-7 Q0 MARCO_39_1521799786-7 44 0.090165 hybrid +149_2-7 Q0 MARCO_39_1519850876-7 45 0.090165 hybrid +149_2-7 Q0 MARCO_39_1521533349-7 46 0.090165 hybrid +149_2-7 Q0 MARCO_41_633308289-2 47 0.089359 hybrid +149_2-7 Q0 MARCO_14_948497031-5 48 0.084542 hybrid +149_2-7 Q0 MARCO_11_776340316-6 49 0.083335 hybrid +149_2-7 Q0 MARCO_53_1516388441-3 50 0.074107 hybrid +149_2-7 Q0 MARCO_14_948751297-1 51 0.061981 hybrid +149_2-7 Q0 MARCO_53_1515717958-2 52 0.050103 hybrid +149_2-7 Q0 MARCO_46_387713679-1 53 0.044827 hybrid +149_2-7 Q0 MARCO_39_1522138753-7 54 0.041937 hybrid +149_2-7 Q0 MARCO_39_1520913204-7 55 0.041937 hybrid +149_2-7 Q0 MARCO_39_1520587445-8 56 0.034234 hybrid +149_2-7 Q0 MARCO_39_1521836617-7 57 0.034234 hybrid +149_2-7 Q0 MARCO_39_1521134860-7 58 0.034234 hybrid +149_2-7 Q0 MARCO_39_1520802711-7 59 0.034234 hybrid +149_2-7 Q0 MARCO_31_1556470851-5 60 0.032465 hybrid +149_2-7 Q0 MARCO_15_1087231265-7 61 0.030763 hybrid +149_2-7 Q0 MARCO_11_776080002-6 62 0.027759 hybrid +149_2-7 Q0 MARCO_44_1166993001-2 63 0.022541 hybrid +149_2-7 Q0 MARCO_41_379832217-1 64 0.012865 hybrid +149_2-7 Q0 MARCO_08_816090904-7 65 0.009602 hybrid +149_2-7 Q0 MARCO_11_775904773-5 66 -0.006083 hybrid +149_2-7 Q0 MARCO_46_387713679-4 67 -0.006448 hybrid +149_2-7 Q0 MARCO_46_383412327-7 68 -0.014465 hybrid +149_2-7 Q0 MARCO_11_775487494-2 69 -0.026162 hybrid +149_2-7 Q0 MARCO_11_776635379-7 70 -0.027814 hybrid +149_2-7 Q0 MARCO_43_747917301-4 71 -0.031801 hybrid +149_2-7 Q0 MARCO_50_1451832179-23 72 -0.032843 hybrid +149_2-7 Q0 MARCO_39_1520040076-19 73 -0.033778 hybrid +149_2-7 Q0 MARCO_01_697793984-2 74 -0.034376 hybrid +149_2-7 Q0 MARCO_53_1417280823-1 75 -0.038107 hybrid +149_2-7 Q0 MARCO_39_1519927722-7 76 -0.039255 hybrid +149_2-7 Q0 MARCO_53_1515717958-1 77 -0.040879 hybrid +149_2-7 Q0 MARCO_01_1539475526-11 78 -0.048928 hybrid +149_2-7 Q0 MARCO_52_598387767-2 79 -0.052549 hybrid +149_2-7 Q0 MARCO_50_2504117447-28 80 -0.053669 hybrid +149_2-7 Q0 MARCO_13_448217502-5 81 -0.061741 hybrid +149_2-7 Q0 MARCO_50_1969433273-15 82 -0.063998 hybrid +149_2-7 Q0 KILT_19988623-5 83 -0.066601 hybrid +149_2-7 Q0 MARCO_07_832859266-12 84 -0.067301 hybrid +149_2-7 Q0 MARCO_15_267741118-2 85 -0.069039 hybrid +149_2-7 Q0 MARCO_14_947909862-1 86 -0.072927 hybrid +149_2-7 Q0 MARCO_43_49628398-5 87 -0.073498 hybrid +149_2-7 Q0 MARCO_50_2400647610-2 88 -0.074563 hybrid +149_2-7 Q0 MARCO_28_1307808046-2 89 -0.077457 hybrid +149_2-7 Q0 MARCO_50_1679765335-21 90 -0.079179 hybrid +149_2-7 Q0 MARCO_02_870645767-6 91 -0.080536 hybrid +149_2-7 Q0 KILT_19988623-2 92 -0.081731 hybrid +149_2-7 Q0 MARCO_16_4106383968-2 93 -0.096452 hybrid +149_2-7 Q0 MARCO_07_637735790-9 94 -0.096617 hybrid +149_2-7 Q0 MARCO_23_640791640-2 95 -0.098382 hybrid +149_2-7 Q0 MARCO_49_794417000-2 96 -0.098410 hybrid +149_2-7 Q0 MARCO_52_681689004-13 97 -0.106556 hybrid +149_2-7 Q0 MARCO_15_529028420-2 98 -0.106863 hybrid +149_2-7 Q0 MARCO_14_947909862-3 99 -0.109686 hybrid +149_2-7 Q0 MARCO_50_1969433273-19 100 -0.110036 hybrid +149_3-1 Q0 MARCO_15_1088254649-11 1 0.500000 hybrid +149_3-1 Q0 MARCO_44_1770445893-37 2 0.477813 hybrid +149_3-1 Q0 MARCO_52_681689004-13 3 0.462769 hybrid +149_3-1 Q0 MARCO_01_795318884-2 4 0.443849 hybrid +149_3-1 Q0 MARCO_11_776080002-6 5 0.442251 hybrid +149_3-1 Q0 MARCO_10_366981001-2 6 0.371468 hybrid +149_3-1 Q0 KILT_59012195-9 7 0.309146 hybrid +149_3-1 Q0 MARCO_11_775904773-5 8 0.286531 hybrid +149_3-1 Q0 MARCO_32_110669830-2 9 0.279838 hybrid +149_3-1 Q0 MARCO_12_148625680-15 10 0.275967 hybrid +149_3-1 Q0 MARCO_09_387689068-15 11 0.274007 hybrid +149_3-1 Q0 MARCO_50_2504117447-48 12 0.243508 hybrid +149_3-1 Q0 MARCO_53_1516388441-3 13 0.242371 hybrid +149_3-1 Q0 MARCO_37_1258185656-82 14 0.233433 hybrid +149_3-1 Q0 MARCO_07_637735790-9 15 0.233032 hybrid +149_3-1 Q0 MARCO_45_1034356730-5 16 0.232032 hybrid +149_3-1 Q0 MARCO_08_816090904-7 17 0.226619 hybrid +149_3-1 Q0 MARCO_50_2400647610-3 18 0.201484 hybrid +149_3-1 Q0 MARCO_50_2504117447-28 19 0.192419 hybrid +149_3-1 Q0 MARCO_13_1252555263-4 20 0.181992 hybrid +149_3-1 Q0 MARCO_11_775099364-9 21 0.181345 hybrid +149_3-1 Q0 MARCO_53_1417280823-1 22 0.176480 hybrid +149_3-1 Q0 MARCO_40_1279055765-13 23 0.167602 hybrid +149_3-1 Q0 MARCO_34_1511918298-11 24 0.163292 hybrid +149_3-1 Q0 MARCO_42_1883994587-4 25 0.146381 hybrid +149_3-1 Q0 KILT_2421086-2 26 0.140430 hybrid +149_3-1 Q0 MARCO_11_776719134-3 27 0.128131 hybrid +149_3-1 Q0 MARCO_46_387713679-2 28 0.116189 hybrid +149_3-1 Q0 MARCO_11_775487494-2 29 0.112977 hybrid +149_3-1 Q0 KILT_2421086-6 30 0.105137 hybrid +149_3-1 Q0 MARCO_11_775270435-2 31 0.103989 hybrid +149_3-1 Q0 MARCO_11_775443250-12 32 0.094568 hybrid +149_3-1 Q0 MARCO_50_2506569724-2 33 0.088418 hybrid +149_3-1 Q0 MARCO_42_1890727839-12 34 0.076603 hybrid +149_3-1 Q0 MARCO_43_747917301-4 35 0.067653 hybrid +149_3-1 Q0 MARCO_55_763593574-3 36 0.064293 hybrid +149_3-1 Q0 MARCO_22_997066902-9 37 0.064074 hybrid +149_3-1 Q0 MARCO_59_773282132-2 38 0.061021 hybrid +149_3-1 Q0 MARCO_59_437144138-3 39 0.056667 hybrid +149_3-1 Q0 MARCO_07_262601550-2 40 0.053719 hybrid +149_3-1 Q0 KILT_9133033-6 41 0.051775 hybrid +149_3-1 Q0 MARCO_11_775443250-11 42 0.049244 hybrid +149_3-1 Q0 MARCO_31_1556470851-5 43 0.047998 hybrid +149_3-1 Q0 MARCO_39_1520236225-7 44 0.047641 hybrid +149_3-1 Q0 KILT_27804-2 45 0.047613 hybrid +149_3-1 Q0 MARCO_15_1087231265-7 46 0.045939 hybrid +149_3-1 Q0 MARCO_59_864520937-2 47 0.041975 hybrid +149_3-1 Q0 MARCO_36_1587845198-10 48 0.041711 hybrid +149_3-1 Q0 MARCO_23_940126685-3 49 0.039334 hybrid +149_3-1 Q0 MARCO_50_721956266-8 50 0.030884 hybrid +149_3-1 Q0 MARCO_11_696580396-2 51 0.030703 hybrid +149_3-1 Q0 MARCO_39_1519927722-7 52 0.029802 hybrid +149_3-1 Q0 MARCO_53_1514777650-1 53 0.022291 hybrid +149_3-1 Q0 MARCO_39_1520587445-8 54 0.021923 hybrid +149_3-1 Q0 MARCO_39_1521836617-7 55 0.021923 hybrid +149_3-1 Q0 MARCO_39_1521134860-7 56 0.021923 hybrid +149_3-1 Q0 MARCO_39_1520802711-7 57 0.021923 hybrid +149_3-1 Q0 MARCO_11_775612189-7 58 0.018964 hybrid +149_3-1 Q0 MARCO_39_1520624701-7 59 0.015165 hybrid +149_3-1 Q0 MARCO_39_1521984954-7 60 0.015165 hybrid +149_3-1 Q0 MARCO_39_1520950426-7 61 0.015165 hybrid +149_3-1 Q0 MARCO_39_1521761335-8 62 0.015165 hybrid +149_3-1 Q0 MARCO_45_204406880-6 63 0.012095 hybrid +149_3-1 Q0 MARCO_19_2006314066-5 64 0.009438 hybrid +149_3-1 Q0 MARCO_24_956787242-16 65 0.007253 hybrid +149_3-1 Q0 MARCO_56_1469632197-4 66 0.007077 hybrid +149_3-1 Q0 MARCO_56_1469943770-8 67 0.007077 hybrid +149_3-1 Q0 MARCO_56_1469726287-5 68 0.007077 hybrid +149_3-1 Q0 MARCO_56_1470279776-5 69 0.007077 hybrid +149_3-1 Q0 MARCO_56_1470112333-6 70 0.007077 hybrid +149_3-1 Q0 MARCO_56_1469601238-5 71 0.007077 hybrid +149_3-1 Q0 MARCO_56_1470094489-9 72 0.007077 hybrid +149_3-1 Q0 MARCO_01_1539475526-11 73 0.003591 hybrid +149_3-1 Q0 MARCO_52_680237395-8 74 -0.002756 hybrid +149_3-1 Q0 MARCO_39_1519927722-6 75 -0.005507 hybrid +149_3-1 Q0 MARCO_50_1509696457-5 76 -0.006369 hybrid +149_3-1 Q0 MARCO_46_378633695-9 77 -0.007396 hybrid +149_3-1 Q0 MARCO_02_1353704855-10 78 -0.010207 hybrid +149_3-1 Q0 MARCO_15_1458779278-6 79 -0.010690 hybrid +149_3-1 Q0 MARCO_43_49483679-6 80 -0.011398 hybrid +149_3-1 Q0 MARCO_22_247241966-25 81 -0.017169 hybrid +149_3-1 Q0 MARCO_11_776561153-3 82 -0.017449 hybrid +149_3-1 Q0 MARCO_39_1521207538-7 83 -0.019255 hybrid +149_3-1 Q0 MARCO_39_1521799786-7 84 -0.019255 hybrid +149_3-1 Q0 MARCO_39_1519850876-7 85 -0.019255 hybrid +149_3-1 Q0 MARCO_39_1521533349-7 86 -0.019255 hybrid +149_3-1 Q0 MARCO_34_543863470-9 87 -0.019464 hybrid +149_3-1 Q0 MARCO_59_1027195116-3 88 -0.020672 hybrid +149_3-1 Q0 MARCO_50_1971010911-28 89 -0.029094 hybrid +149_3-1 Q0 MARCO_15_1080712135-7 90 -0.029819 hybrid +149_3-1 Q0 MARCO_46_387713679-1 91 -0.030571 hybrid +149_3-1 Q0 MARCO_22_247241966-23 92 -0.034403 hybrid +149_3-1 Q0 MARCO_22_1485991366-21 93 -0.034672 hybrid +149_3-1 Q0 MARCO_05_519638150-2 94 -0.036133 hybrid +149_3-1 Q0 MARCO_12_148625680-59 95 -0.040646 hybrid +149_3-1 Q0 MARCO_22_534279812-1 96 -0.042881 hybrid +149_3-1 Q0 MARCO_15_1133243725-3 97 -0.049870 hybrid +149_3-1 Q0 MARCO_39_1522663769-5 98 -0.049897 hybrid +149_3-1 Q0 MARCO_40_1267987684-2 99 -0.050523 hybrid +149_3-1 Q0 MARCO_34_1664235344-20 100 -0.056332 hybrid +149_3-3 Q0 KILT_59012195-1 1 0.500000 hybrid +149_3-3 Q0 KILT_54395096-13 2 0.109947 hybrid +149_3-3 Q0 MARCO_24_727820-2 3 0.085046 hybrid +149_3-3 Q0 KILT_16777474-33 4 0.001956 hybrid +149_3-3 Q0 KILT_296726-2 5 -0.011599 hybrid +149_3-3 Q0 MARCO_16_3025097082-1 6 -0.014302 hybrid +149_3-3 Q0 KILT_296726-1 7 -0.018897 hybrid +149_3-3 Q0 MARCO_27_709015401-18 8 -0.019363 hybrid +149_3-3 Q0 MARCO_50_1616646458-10 9 -0.037505 hybrid +149_3-3 Q0 MARCO_50_1670145590-13 10 -0.037505 hybrid +149_3-3 Q0 MARCO_27_843419262-2 11 -0.038677 hybrid +149_3-3 Q0 MARCO_50_1665044505-13 12 -0.045563 hybrid +149_3-3 Q0 MARCO_14_541572450-5 13 -0.055818 hybrid +149_3-3 Q0 MARCO_33_1038422592-3 14 -0.058606 hybrid +149_3-3 Q0 KILT_42396382-34 15 -0.061780 hybrid +149_3-3 Q0 MARCO_36_839939342-3 16 -0.099842 hybrid +149_3-3 Q0 MARCO_42_1885183621-8 17 -0.105025 hybrid +149_3-3 Q0 MARCO_19_2063342099-3 18 -0.105419 hybrid +149_3-3 Q0 MARCO_14_541467969-10 19 -0.105718 hybrid +149_3-3 Q0 MARCO_33_1025658631-7 20 -0.106230 hybrid +149_3-3 Q0 MARCO_14_541411251-42 21 -0.107601 hybrid +149_3-3 Q0 MARCO_09_674343712-6 22 -0.109765 hybrid +149_3-3 Q0 KILT_36891093-1 23 -0.114515 hybrid +149_3-3 Q0 MARCO_24_1126001105-3 24 -0.114823 hybrid +149_3-3 Q0 MARCO_40_1273981958-4 25 -0.114845 hybrid +149_3-3 Q0 MARCO_14_541273489-2 26 -0.114854 hybrid +149_3-3 Q0 MARCO_19_2063342099-4 27 -0.117530 hybrid +149_3-3 Q0 MARCO_37_722532841-7 28 -0.123012 hybrid +149_3-3 Q0 MARCO_36_900419354-2 29 -0.129568 hybrid +149_3-3 Q0 MARCO_56_782979676-12 30 -0.133760 hybrid +149_3-3 Q0 KILT_56380195-1 31 -0.135105 hybrid +149_3-3 Q0 MARCO_26_1549824709-5 32 -0.137586 hybrid +149_3-3 Q0 MARCO_13_329543671-2 33 -0.138980 hybrid +149_3-3 Q0 MARCO_07_1585032932-71 34 -0.141670 hybrid +149_3-3 Q0 MARCO_49_1513676706-1 35 -0.145631 hybrid +149_3-3 Q0 MARCO_52_1392641922-1 36 -0.148094 hybrid +149_3-3 Q0 MARCO_27_1748534443-10 37 -0.148959 hybrid +149_3-3 Q0 KILT_66505-1 38 -0.151037 hybrid +149_3-3 Q0 KILT_59012195-3 39 -0.151349 hybrid +149_3-3 Q0 MARCO_03_1029026308-5 40 -0.151978 hybrid +149_3-3 Q0 KILT_59012195-13 41 -0.154093 hybrid +149_3-3 Q0 KILT_35956026-3 42 -0.158063 hybrid +149_3-3 Q0 MARCO_14_541411251-39 43 -0.158385 hybrid +149_3-3 Q0 MARCO_14_541467969-7 44 -0.159580 hybrid +149_3-3 Q0 MARCO_32_372885425-3 45 -0.159811 hybrid +149_3-3 Q0 MARCO_24_6297618-3 46 -0.167516 hybrid +149_3-3 Q0 MARCO_27_1766216539-16 47 -0.171799 hybrid +149_3-3 Q0 KILT_5708700-29 48 -0.174307 hybrid +149_3-3 Q0 MARCO_16_3025097082-4 49 -0.175072 hybrid +149_3-3 Q0 MARCO_40_660695547-5 50 -0.175982 hybrid +149_3-3 Q0 MARCO_14_948287362-4 51 -0.178137 hybrid +149_3-3 Q0 MARCO_53_1407864519-3 52 -0.178789 hybrid +149_3-3 Q0 MARCO_49_794475346-4 53 -0.179093 hybrid +149_3-3 Q0 MARCO_45_1037542431-6 54 -0.179754 hybrid +149_3-3 Q0 MARCO_51_1240112162-21 55 -0.181682 hybrid +149_3-3 Q0 KILT_49583-1 56 -0.183063 hybrid +149_3-3 Q0 MARCO_37_174552969-7 57 -0.183932 hybrid +149_3-3 Q0 MARCO_33_1039923997-8 58 -0.186065 hybrid +149_3-3 Q0 KILT_19541813-1 59 -0.186432 hybrid +149_3-3 Q0 KILT_56380195-2 60 -0.188396 hybrid +149_3-3 Q0 MARCO_49_404427112-2 61 -0.189899 hybrid +149_3-3 Q0 MARCO_28_43267712-4 62 -0.190307 hybrid +149_3-3 Q0 MARCO_59_861662787-3 63 -0.190886 hybrid +149_3-3 Q0 KILT_237536-1 64 -0.192041 hybrid +149_3-3 Q0 MARCO_44_96730024-3 65 -0.196039 hybrid +149_3-3 Q0 MARCO_03_1029026308-1 66 -0.196202 hybrid +149_3-3 Q0 MARCO_35_401608487-11 67 -0.200955 hybrid +149_3-3 Q0 MARCO_41_2113679530-5 68 -0.203626 hybrid +149_3-3 Q0 KILT_59012195-2 69 -0.204088 hybrid +149_3-3 Q0 MARCO_58_1178837984-11 70 -0.204518 hybrid +149_3-3 Q0 KILT_13842515-1 71 -0.205772 hybrid +149_3-3 Q0 MARCO_16_1724243800-19 72 -0.206533 hybrid +149_3-3 Q0 MARCO_23_1732511559-5 73 -0.206651 hybrid +149_3-3 Q0 MARCO_29_241568149-1 74 -0.207348 hybrid +149_3-3 Q0 MARCO_49_960438422-2 75 -0.210902 hybrid +149_3-3 Q0 MARCO_53_1513827580-3 76 -0.211305 hybrid +149_3-3 Q0 MARCO_45_1025444194-2 77 -0.212844 hybrid +149_3-3 Q0 MARCO_14_541467969-24 78 -0.213564 hybrid +149_3-3 Q0 MARCO_28_42061767-13 79 -0.217435 hybrid +149_3-3 Q0 MARCO_03_1044032707-13 80 -0.217974 hybrid +149_3-3 Q0 MARCO_26_353153774-13 81 -0.218060 hybrid +149_3-3 Q0 MARCO_40_1268091613-1 82 -0.218123 hybrid +149_3-3 Q0 MARCO_50_1981923546-24 83 -0.219631 hybrid +149_3-3 Q0 MARCO_50_2380747783-9 84 -0.221337 hybrid +149_3-3 Q0 MARCO_23_1279531059-2 85 -0.222850 hybrid +149_3-3 Q0 MARCO_27_1769538382-20 86 -0.223447 hybrid +149_3-3 Q0 MARCO_28_1236949816-9 87 -0.224407 hybrid +149_3-3 Q0 MARCO_53_360472900-3 88 -0.227947 hybrid +149_3-3 Q0 MARCO_04_781882177-1 89 -0.229885 hybrid +149_3-3 Q0 MARCO_07_1110880965-13 90 -0.229944 hybrid +149_3-3 Q0 MARCO_33_1024882741-10 91 -0.230216 hybrid +149_3-3 Q0 MARCO_18_1652425092-1 92 -0.230999 hybrid +149_3-3 Q0 MARCO_49_793598635-1 93 -0.232792 hybrid +149_3-3 Q0 MARCO_25_1024152280-8 94 -0.233525 hybrid +149_3-3 Q0 MARCO_53_1468359964-5 95 -0.235562 hybrid +149_3-3 Q0 MARCO_55_132380734-13 96 -0.235752 hybrid +149_3-3 Q0 MARCO_29_971928851-1 97 -0.237536 hybrid +149_3-3 Q0 KILT_418364-1 98 -0.240705 hybrid +149_3-3 Q0 MARCO_25_1118787573-3 99 -0.240773 hybrid +149_3-3 Q0 MARCO_14_548893812-8 100 -0.241892 hybrid +149_3-5 Q0 MARCO_41_2131675329-6 1 0.500000 hybrid +149_3-5 Q0 MARCO_13_325525277-13 2 0.147673 hybrid +149_3-5 Q0 MARCO_24_648597782-2 3 0.050715 hybrid +149_3-5 Q0 MARCO_43_741769267-3 4 0.045538 hybrid +149_3-5 Q0 MARCO_50_1931425493-10 5 0.034611 hybrid +149_3-5 Q0 MARCO_54_1859725135-8 6 0.020933 hybrid +149_3-5 Q0 MARCO_54_1860409637-7 7 0.020933 hybrid +149_3-5 Q0 MARCO_54_1851845503-9 8 0.020933 hybrid +149_3-5 Q0 MARCO_54_1852598752-8 9 0.020933 hybrid +149_3-5 Q0 MARCO_54_1861724187-8 10 0.020933 hybrid +149_3-5 Q0 MARCO_54_1855341969-9 11 0.020933 hybrid +149_3-5 Q0 MARCO_54_1859766889-7 12 0.020933 hybrid +149_3-5 Q0 MARCO_54_1854811662-9 13 0.020933 hybrid +149_3-5 Q0 MARCO_54_1861944684-9 14 0.020933 hybrid +149_3-5 Q0 MARCO_50_1931425493-4 15 0.015568 hybrid +149_3-5 Q0 MARCO_53_810278604-5 16 0.003916 hybrid +149_3-5 Q0 MARCO_50_1931425493-11 17 -0.019422 hybrid +149_3-5 Q0 MARCO_51_1719073264-111 18 -0.029181 hybrid +149_3-5 Q0 MARCO_50_1931425493-13 19 -0.057260 hybrid +149_3-5 Q0 MARCO_50_721328931-5 20 -0.077785 hybrid +149_3-5 Q0 MARCO_27_1249163483-144 21 -0.086070 hybrid +149_3-5 Q0 MARCO_50_1931425493-20 22 -0.090649 hybrid +149_3-5 Q0 MARCO_50_930160608-27 23 -0.092277 hybrid +149_3-5 Q0 MARCO_50_1931425493-5 24 -0.094061 hybrid +149_3-5 Q0 MARCO_50_1399796977-17 25 -0.100798 hybrid +149_3-5 Q0 MARCO_19_1098251253-9 26 -0.103076 hybrid +149_3-5 Q0 MARCO_27_583264304-5 27 -0.111314 hybrid +149_3-5 Q0 MARCO_50_721822524-8 28 -0.114445 hybrid +149_3-5 Q0 MARCO_53_1470251080-10 29 -0.119706 hybrid +149_3-5 Q0 MARCO_50_930160608-16 30 -0.120179 hybrid +149_3-5 Q0 MARCO_50_1517453090-28 31 -0.129977 hybrid +149_3-5 Q0 KILT_956483-7 32 -0.137986 hybrid +149_3-5 Q0 MARCO_53_1470251080-11 33 -0.138124 hybrid +149_3-5 Q0 MARCO_14_480109671-3 34 -0.148549 hybrid +149_3-5 Q0 MARCO_50_1399796977-15 35 -0.149014 hybrid +149_3-5 Q0 MARCO_18_3243396927-14 36 -0.154595 hybrid +149_3-5 Q0 MARCO_56_1475992546-4 37 -0.154605 hybrid +149_3-5 Q0 MARCO_54_139405728-2 38 -0.156043 hybrid +149_3-5 Q0 MARCO_50_2498479427-4 39 -0.172982 hybrid +149_3-5 Q0 MARCO_14_1483234329-9 40 -0.173427 hybrid +149_3-5 Q0 MARCO_00_1583525601-4 41 -0.174956 hybrid +149_3-5 Q0 MARCO_01_764231886-4 42 -0.175806 hybrid +149_3-5 Q0 MARCO_33_1236586927-7 43 -0.177106 hybrid +149_3-5 Q0 MARCO_23_243516966-34 44 -0.178966 hybrid +149_3-5 Q0 MARCO_38_608590939-11 45 -0.181168 hybrid +149_3-5 Q0 MARCO_50_1931425493-9 46 -0.181964 hybrid +149_3-5 Q0 MARCO_59_1027195116-3 47 -0.190306 hybrid +149_3-5 Q0 MARCO_20_1194967451-3 48 -0.195657 hybrid +149_3-5 Q0 MARCO_43_49219771-10 49 -0.197184 hybrid +149_3-5 Q0 MARCO_27_709548376-3 50 -0.204044 hybrid +149_3-5 Q0 MARCO_50_1399796977-7 51 -0.207903 hybrid +149_3-5 Q0 MARCO_39_600935278-3 52 -0.209429 hybrid +149_3-5 Q0 MARCO_18_1808611836-5 53 -0.217490 hybrid +149_3-5 Q0 MARCO_56_1049653972-5 54 -0.217625 hybrid +149_3-5 Q0 MARCO_18_475115471-62 55 -0.219799 hybrid +149_3-5 Q0 MARCO_13_1167167495-8 56 -0.221739 hybrid +149_3-5 Q0 MARCO_52_680808770-17 57 -0.222662 hybrid +149_3-5 Q0 MARCO_17_1841823804-2 58 -0.226760 hybrid +149_3-5 Q0 MARCO_18_1808611836-6 59 -0.227343 hybrid +149_3-5 Q0 MARCO_38_1385865850-4 60 -0.227611 hybrid +149_3-5 Q0 MARCO_11_775556690-16 61 -0.229288 hybrid +149_3-5 Q0 MARCO_20_1584759163-7 62 -0.233056 hybrid +149_3-5 Q0 MARCO_47_1329631781-2 63 -0.233820 hybrid +149_3-5 Q0 MARCO_45_204247560-8 64 -0.234486 hybrid +149_3-5 Q0 MARCO_40_1121907405-4 65 -0.235568 hybrid +149_3-5 Q0 MARCO_01_1544267715-122 66 -0.235667 hybrid +149_3-5 Q0 MARCO_03_247875288-1 67 -0.236946 hybrid +149_3-5 Q0 MARCO_15_526912986-75 68 -0.239947 hybrid +149_3-5 Q0 MARCO_45_204247560-6 69 -0.239950 hybrid +149_3-5 Q0 MARCO_33_1239826571-2 70 -0.245982 hybrid +149_3-5 Q0 MARCO_47_1591844086-78 71 -0.247184 hybrid +149_3-5 Q0 MARCO_44_623225159-7 72 -0.248949 hybrid +149_3-5 Q0 MARCO_54_139588958-6 73 -0.252070 hybrid +149_3-5 Q0 MARCO_50_1399796977-10 74 -0.252515 hybrid +149_3-5 Q0 MARCO_08_1484420812-4 75 -0.252899 hybrid +149_3-5 Q0 MARCO_28_801740056-2 76 -0.253079 hybrid +149_3-5 Q0 MARCO_50_1399796977-13 77 -0.253175 hybrid +149_3-5 Q0 MARCO_52_358168113-19 78 -0.253997 hybrid +149_3-5 Q0 MARCO_50_717422291-6 79 -0.256634 hybrid +149_3-5 Q0 MARCO_46_545854132-12 80 -0.260643 hybrid +149_3-5 Q0 MARCO_50_1931425493-25 81 -0.261278 hybrid +149_3-5 Q0 MARCO_14_1099692705-6 82 -0.261590 hybrid +149_3-5 Q0 MARCO_23_1588571037-4 83 -0.265230 hybrid +149_3-5 Q0 MARCO_50_1399796977-2 84 -0.266156 hybrid +149_3-5 Q0 MARCO_53_809997967-7 85 -0.267438 hybrid +149_3-5 Q0 MARCO_40_314341717-60 86 -0.277187 hybrid +149_3-5 Q0 MARCO_23_1588571037-3 87 -0.277210 hybrid +149_3-5 Q0 MARCO_43_49609310-8 88 -0.281899 hybrid +149_3-5 Q0 MARCO_44_625668762-15 89 -0.282760 hybrid +149_3-5 Q0 MARCO_32_43338098-171 90 -0.287211 hybrid +149_3-5 Q0 MARCO_33_1242264210-4 91 -0.289162 hybrid +149_3-5 Q0 MARCO_33_1316748866-7 92 -0.289390 hybrid +149_3-5 Q0 MARCO_50_1931425493-26 93 -0.290558 hybrid +149_3-5 Q0 MARCO_54_1852624593-8 94 -0.293364 hybrid +149_3-5 Q0 MARCO_54_1858641210-12 95 -0.293364 hybrid +149_3-5 Q0 MARCO_54_1858500070-7 96 -0.293364 hybrid +149_3-5 Q0 MARCO_54_1854503941-9 97 -0.293364 hybrid +149_3-5 Q0 MARCO_54_1854840199-7 98 -0.293364 hybrid +149_3-5 Q0 MARCO_54_1860282093-10 99 -0.293364 hybrid +149_3-5 Q0 MARCO_54_1859823470-7 100 -0.293364 hybrid +149_3-7 Q0 MARCO_34_543863470-27 1 0.499998 hybrid +149_3-7 Q0 MARCO_29_402220207-3 2 0.436019 hybrid +149_3-7 Q0 MARCO_13_325525277-13 3 0.359884 hybrid +149_3-7 Q0 MARCO_34_543863470-18 4 0.327356 hybrid +149_3-7 Q0 MARCO_34_543863470-23 5 0.312023 hybrid +149_3-7 Q0 MARCO_34_543863470-30 6 0.287516 hybrid +149_3-7 Q0 MARCO_34_543863470-8 7 0.269424 hybrid +149_3-7 Q0 MARCO_22_247241966-24 8 0.262202 hybrid +149_3-7 Q0 MARCO_34_543863470-20 9 0.252696 hybrid +149_3-7 Q0 MARCO_34_1514907320-2 10 0.250657 hybrid +149_3-7 Q0 MARCO_53_1465253531-2 11 0.247070 hybrid +149_3-7 Q0 MARCO_50_2506569724-26 12 0.243996 hybrid +149_3-7 Q0 MARCO_22_1523404063-2 13 0.224803 hybrid +149_3-7 Q0 MARCO_34_543863470-5 14 0.221400 hybrid +149_3-7 Q0 MARCO_34_543863470-4 15 0.213441 hybrid +149_3-7 Q0 MARCO_27_1767716306-3 16 0.182987 hybrid +149_3-7 Q0 MARCO_12_1143811020-1 17 0.167121 hybrid +149_3-7 Q0 MARCO_37_1258185656-82 18 0.160277 hybrid +149_3-7 Q0 MARCO_34_543863470-15 19 0.158926 hybrid +149_3-7 Q0 MARCO_12_1143811020-15 20 0.143760 hybrid +149_3-7 Q0 MARCO_50_1399796977-10 21 0.119893 hybrid +149_3-7 Q0 MARCO_50_2506569724-111 22 0.103961 hybrid +149_3-7 Q0 MARCO_12_1147033803-11 23 0.099187 hybrid +149_3-7 Q0 MARCO_11_775099364-1 24 0.096037 hybrid +149_3-7 Q0 MARCO_53_1417384023-2 25 0.092416 hybrid +149_3-7 Q0 MARCO_07_637735790-3 26 0.088044 hybrid +149_3-7 Q0 MARCO_12_1162574099-10 27 0.087393 hybrid +149_3-7 Q0 MARCO_40_1126137332-7 28 0.077966 hybrid +149_3-7 Q0 MARCO_50_1510255938-11 29 0.068581 hybrid +149_3-7 Q0 MARCO_53_1332176041-6 30 0.068068 hybrid +149_3-7 Q0 MARCO_50_2504117447-47 31 0.066233 hybrid +149_3-7 Q0 MARCO_07_1453550075-14 32 0.059545 hybrid +149_3-7 Q0 MARCO_34_1664235344-40 33 0.059057 hybrid +149_3-7 Q0 MARCO_34_543863470-1 34 0.053269 hybrid +149_3-7 Q0 MARCO_22_1523404063-3 35 0.048100 hybrid +149_3-7 Q0 MARCO_12_1145052524-6 36 0.047262 hybrid +149_3-7 Q0 MARCO_13_432527240-1 37 0.042048 hybrid +149_3-7 Q0 MARCO_41_2131675329-6 38 0.040203 hybrid +149_3-7 Q0 MARCO_34_543863470-24 39 0.040165 hybrid +149_3-7 Q0 MARCO_24_140126809-3 40 0.034920 hybrid +149_3-7 Q0 MARCO_52_1392634476-1 41 0.031462 hybrid +149_3-7 Q0 MARCO_11_776719134-3 42 0.029554 hybrid +149_3-7 Q0 MARCO_22_534279812-1 43 0.029156 hybrid +149_3-7 Q0 MARCO_56_1048702887-6 44 0.026726 hybrid +149_3-7 Q0 MARCO_50_2400647610-3 45 0.009316 hybrid +149_3-7 Q0 MARCO_50_2506569724-55 46 0.003472 hybrid +149_3-7 Q0 MARCO_55_763593574-3 47 -0.002981 hybrid +149_3-7 Q0 MARCO_22_247241966-21 48 -0.007447 hybrid +149_3-7 Q0 MARCO_50_1516126301-4 49 -0.008693 hybrid +149_3-7 Q0 MARCO_34_543863470-28 50 -0.009655 hybrid +149_3-7 Q0 MARCO_22_994341299-8 51 -0.013148 hybrid +149_3-7 Q0 MARCO_34_543863470-22 52 -0.014021 hybrid +149_3-7 Q0 MARCO_50_2506569724-14 53 -0.014685 hybrid +149_3-7 Q0 MARCO_10_988610214-26 54 -0.019165 hybrid +149_3-7 Q0 MARCO_28_655796431-12 55 -0.020436 hybrid +149_3-7 Q0 MARCO_50_2506569724-57 56 -0.022790 hybrid +149_3-7 Q0 MARCO_10_1147046186-5 57 -0.023815 hybrid +149_3-7 Q0 MARCO_46_1313586774-9 58 -0.037403 hybrid +149_3-7 Q0 MARCO_22_838526827-3 59 -0.039708 hybrid +149_3-7 Q0 MARCO_12_1143883849-2 60 -0.040487 hybrid +149_3-7 Q0 MARCO_46_378699270-12 61 -0.040736 hybrid +149_3-7 Q0 MARCO_53_1467577338-8 62 -0.042817 hybrid +149_3-7 Q0 MARCO_34_543863470-11 63 -0.042969 hybrid +149_3-7 Q0 MARCO_50_2506569724-87 64 -0.047432 hybrid +149_3-7 Q0 MARCO_02_1538822484-17 65 -0.048110 hybrid +149_3-7 Q0 MARCO_53_1331879317-4 66 -0.051358 hybrid +149_3-7 Q0 MARCO_02_1752290410-4 67 -0.052233 hybrid +149_3-7 Q0 MARCO_12_1147033803-13 68 -0.052888 hybrid +149_3-7 Q0 MARCO_32_438147013-16 69 -0.053670 hybrid +149_3-7 Q0 MARCO_22_534279812-3 70 -0.054518 hybrid +149_3-7 Q0 MARCO_50_2506569724-77 71 -0.063242 hybrid +149_3-7 Q0 MARCO_07_637735790-9 72 -0.065361 hybrid +149_3-7 Q0 MARCO_50_2504117447-48 73 -0.066694 hybrid +149_3-7 Q0 MARCO_53_1465253531-3 74 -0.068757 hybrid +149_3-7 Q0 KILT_59012195-9 75 -0.074767 hybrid +149_3-7 Q0 MARCO_34_543863470-2 76 -0.079036 hybrid +149_3-7 Q0 MARCO_50_2504117447-32 77 -0.081265 hybrid +149_3-7 Q0 MARCO_32_437908629-7 78 -0.083155 hybrid +149_3-7 Q0 MARCO_24_953504640-2 79 -0.083550 hybrid +149_3-7 Q0 MARCO_12_1143811020-13 80 -0.086333 hybrid +149_3-7 Q0 MARCO_43_240339009-2 81 -0.086988 hybrid +149_3-7 Q0 MARCO_11_775556690-16 82 -0.088044 hybrid +149_3-7 Q0 MARCO_11_775556690-10 83 -0.089169 hybrid +149_3-7 Q0 MARCO_13_980477087-9 84 -0.090304 hybrid +149_3-7 Q0 MARCO_50_2504117447-56 85 -0.093482 hybrid +149_3-7 Q0 MARCO_22_245542279-4 86 -0.094510 hybrid +149_3-7 Q0 MARCO_34_543863470-17 87 -0.094746 hybrid +149_3-7 Q0 MARCO_40_1267987684-2 88 -0.095760 hybrid +149_3-7 Q0 MARCO_02_1538822484-10 89 -0.099056 hybrid +149_3-7 Q0 MARCO_29_868892299-9 90 -0.106620 hybrid +149_3-7 Q0 MARCO_12_1146759825-5 91 -0.110034 hybrid +149_3-7 Q0 MARCO_31_293452917-3 92 -0.113579 hybrid +149_3-7 Q0 MARCO_27_1748657406-20 93 -0.114333 hybrid +149_3-7 Q0 MARCO_12_1143927089-3 94 -0.117321 hybrid +149_3-7 Q0 MARCO_26_414009061-3 95 -0.117657 hybrid +149_3-7 Q0 MARCO_30_609525996-1 96 -0.122569 hybrid +149_3-7 Q0 MARCO_50_1969433273-16 97 -0.123795 hybrid +149_3-7 Q0 MARCO_43_49240422-26 98 -0.125000 hybrid +149_3-7 Q0 MARCO_12_1147168281-5 99 -0.126229 hybrid +149_3-7 Q0 MARCO_34_543863470-10 100 -0.131027 hybrid +149_3-9 Q0 MARCO_30_377762017-1 1 0.500000 hybrid +149_3-9 Q0 MARCO_30_377762017-2 2 0.496011 hybrid +149_3-9 Q0 MARCO_30_377762017-3 3 0.477657 hybrid +149_3-9 Q0 MARCO_12_1143811020-12 4 0.345816 hybrid +149_3-9 Q0 KILT_25686678-2 5 0.285668 hybrid +149_3-9 Q0 KILT_15636975-1 6 0.256608 hybrid +149_3-9 Q0 KILT_53609338-1 7 0.221207 hybrid +149_3-9 Q0 MARCO_30_377762017-4 8 0.217399 hybrid +149_3-9 Q0 KILT_14041641-1 9 0.207592 hybrid +149_3-9 Q0 MARCO_48_1536612134-12 10 0.199177 hybrid +149_3-9 Q0 KILT_24305647-1 11 0.182820 hybrid +149_3-9 Q0 MARCO_35_983730784-7 12 0.174350 hybrid +149_3-9 Q0 KILT_20128447-1 13 0.170268 hybrid +149_3-9 Q0 MARCO_30_377762017-6 14 0.170158 hybrid +149_3-9 Q0 MARCO_30_377762017-5 15 0.150750 hybrid +149_3-9 Q0 KILT_25686678-1 16 0.147622 hybrid +149_3-9 Q0 KILT_13053239-1 17 0.098744 hybrid +149_3-9 Q0 MARCO_16_3299844550-8 18 0.086182 hybrid +149_3-9 Q0 KILT_14192424-14 19 0.081343 hybrid +149_3-9 Q0 MARCO_25_71825921-32 20 0.076247 hybrid +149_3-9 Q0 MARCO_11_775099364-5 21 0.068508 hybrid +149_3-9 Q0 KILT_1966753-1 22 0.066033 hybrid +149_3-9 Q0 KILT_3661766-1 23 0.053304 hybrid +149_3-9 Q0 MARCO_04_907340961-8 24 0.050985 hybrid +149_3-9 Q0 MARCO_54_557237315-13 25 0.037224 hybrid +149_3-9 Q0 MARCO_28_284504848-1 26 0.030678 hybrid +149_3-9 Q0 MARCO_48_1536612134-11 27 0.026915 hybrid +149_3-9 Q0 KILT_48566-1 28 0.016908 hybrid +149_3-9 Q0 KILT_580067-1 29 -0.021141 hybrid +149_3-9 Q0 KILT_55755393-1 30 -0.027050 hybrid +149_3-9 Q0 MARCO_50_1937072557-8 31 -0.041542 hybrid +149_3-9 Q0 MARCO_50_1934036364-8 32 -0.053733 hybrid +149_3-9 Q0 MARCO_51_2012158191-26 33 -0.053968 hybrid +149_3-9 Q0 MARCO_50_1934036364-10 34 -0.053997 hybrid +149_3-9 Q0 MARCO_09_1335130792-7 35 -0.055392 hybrid +149_3-9 Q0 MARCO_09_1335130792-5 36 -0.055392 hybrid +149_3-9 Q0 MARCO_09_1335104454-7 37 -0.055392 hybrid +149_3-9 Q0 MARCO_09_1335104454-5 38 -0.055392 hybrid +149_3-9 Q0 MARCO_10_262081235-20 39 -0.056185 hybrid +149_3-9 Q0 KILT_1038038-1 40 -0.056223 hybrid +149_3-9 Q0 MARCO_23_1590380056-7 41 -0.057180 hybrid +149_3-9 Q0 MARCO_24_1315195668-2 42 -0.058507 hybrid +149_3-9 Q0 MARCO_09_1335130792-1 43 -0.060428 hybrid +149_3-9 Q0 KILT_28518791-7 44 -0.076659 hybrid +149_3-9 Q0 MARCO_56_871863009-1 45 -0.078044 hybrid +149_3-9 Q0 MARCO_01_1543050022-30 46 -0.078676 hybrid +149_3-9 Q0 KILT_25686678-3 47 -0.080322 hybrid +149_3-9 Q0 MARCO_34_1668889045-1 48 -0.083476 hybrid +149_3-9 Q0 KILT_50461739-4 49 -0.084237 hybrid +149_3-9 Q0 MARCO_35_983730784-2 50 -0.085748 hybrid +149_3-9 Q0 MARCO_25_71968081-2 51 -0.086585 hybrid +149_3-9 Q0 MARCO_35_985489179-6 52 -0.087172 hybrid +149_3-9 Q0 MARCO_20_236904717-5 53 -0.087838 hybrid +149_3-9 Q0 MARCO_46_386990709-7 54 -0.091102 hybrid +149_3-9 Q0 MARCO_50_1937072557-10 55 -0.093844 hybrid +149_3-9 Q0 MARCO_52_1379799154-3 56 -0.100693 hybrid +149_3-9 Q0 MARCO_50_1934036364-12 57 -0.103722 hybrid +149_3-9 Q0 KILT_32003-8 58 -0.104157 hybrid +149_3-9 Q0 KILT_6750836-1 59 -0.110990 hybrid +149_3-9 Q0 MARCO_13_1223557679-5 60 -0.113526 hybrid +149_3-9 Q0 KILT_14944982-8 61 -0.124418 hybrid +149_3-9 Q0 KILT_1966753-4 62 -0.126107 hybrid +149_3-9 Q0 MARCO_35_983730784-3 63 -0.126265 hybrid +149_3-9 Q0 KILT_1966753-3 64 -0.126906 hybrid +149_3-9 Q0 KILT_4103607-1 65 -0.133343 hybrid +149_3-9 Q0 MARCO_39_596838303-4 66 -0.133478 hybrid +149_3-9 Q0 KILT_53042265-1 67 -0.135360 hybrid +149_3-9 Q0 MARCO_46_1440832617-2 68 -0.136797 hybrid +149_3-9 Q0 MARCO_15_528031691-4 69 -0.137492 hybrid +149_3-9 Q0 MARCO_50_1506395410-10 70 -0.137818 hybrid +149_3-9 Q0 KILT_3114712-2 71 -0.142599 hybrid +149_3-9 Q0 KILT_48566-5 72 -0.145405 hybrid +149_3-9 Q0 MARCO_17_695652605-19 73 -0.145457 hybrid +149_3-9 Q0 MARCO_50_1937072557-1 74 -0.146852 hybrid +149_3-9 Q0 MARCO_23_1590380056-1 75 -0.148202 hybrid +149_3-9 Q0 KILT_1607622-10 76 -0.149545 hybrid +149_3-9 Q0 MARCO_40_1266407824-4 77 -0.151295 hybrid +149_3-9 Q0 KILT_1179072-2 78 -0.154893 hybrid +149_3-9 Q0 KILT_27684483-1 79 -0.157658 hybrid +149_3-9 Q0 KILT_32265916-2 80 -0.159674 hybrid +149_3-9 Q0 KILT_24624524-1 81 -0.161089 hybrid +149_3-9 Q0 MARCO_52_1381447400-4 82 -0.162806 hybrid +149_3-9 Q0 MARCO_51_454652771-8 83 -0.163689 hybrid +149_3-9 Q0 MARCO_50_1937072557-2 84 -0.163731 hybrid +149_3-9 Q0 KILT_47742028-1 85 -0.165564 hybrid +149_3-9 Q0 MARCO_59_541460826-8 86 -0.167964 hybrid +149_3-9 Q0 MARCO_50_1937072557-11 87 -0.171753 hybrid +149_3-9 Q0 MARCO_17_694552547-7 88 -0.172210 hybrid +149_3-9 Q0 KILT_482531-1 89 -0.172497 hybrid +149_3-9 Q0 MARCO_09_346940551-3 90 -0.172700 hybrid +149_3-9 Q0 MARCO_18_2151798816-47 91 -0.174765 hybrid +149_3-9 Q0 MARCO_51_1883040659-21 92 -0.176482 hybrid +149_3-9 Q0 KILT_180210-1 93 -0.177655 hybrid +149_3-9 Q0 MARCO_24_1315195668-1 94 -0.181354 hybrid +149_3-9 Q0 MARCO_51_1733331715-5 95 -0.181531 hybrid +149_3-9 Q0 MARCO_00_566820230-4 96 -0.181905 hybrid +149_3-9 Q0 MARCO_11_775099364-6 97 -0.182404 hybrid +149_3-9 Q0 MARCO_50_1934036364-9 98 -0.183944 hybrid +149_3-9 Q0 KILT_32003-9 99 -0.184327 hybrid +149_3-9 Q0 MARCO_23_1590380056-2 100 -0.185900 hybrid +149_4-1 Q0 MARCO_11_1511787388-3 1 0.500000 hybrid +149_4-1 Q0 MARCO_04_409501215-3 2 0.483056 hybrid +149_4-1 Q0 MARCO_53_86301228-13 3 0.474070 hybrid +149_4-1 Q0 MARCO_50_2504117447-30 4 0.434336 hybrid +149_4-1 Q0 MARCO_50_2498479427-2 5 0.428089 hybrid +149_4-1 Q0 MARCO_53_86338603-5 6 0.361798 hybrid +149_4-1 Q0 MARCO_24_1910494372-6 7 0.347914 hybrid +149_4-1 Q0 MARCO_50_1418995341-4 8 0.311788 hybrid +149_4-1 Q0 MARCO_08_816090904-5 9 0.303704 hybrid +149_4-1 Q0 MARCO_19_2056728389-2 10 0.294638 hybrid +149_4-1 Q0 MARCO_39_864658027-3 11 0.288057 hybrid +149_4-1 Q0 MARCO_29_1169564639-2 12 0.278950 hybrid +149_4-1 Q0 MARCO_50_2504117447-47 13 0.271828 hybrid +149_4-1 Q0 MARCO_30_456981311-12 14 0.263663 hybrid +149_4-1 Q0 MARCO_13_432527240-1 15 0.255552 hybrid +149_4-1 Q0 MARCO_50_1510188904-2 16 0.248290 hybrid +149_4-1 Q0 MARCO_11_775556690-11 17 0.240005 hybrid +149_4-1 Q0 MARCO_11_775639637-16 18 0.236718 hybrid +149_4-1 Q0 MARCO_21_1148385672-10 19 0.215632 hybrid +149_4-1 Q0 MARCO_50_1399796977-17 20 0.212137 hybrid +149_4-1 Q0 MARCO_14_947909862-4 21 0.207928 hybrid +149_4-1 Q0 MARCO_46_386545750-9 22 0.195193 hybrid +149_4-1 Q0 MARCO_02_1752290410-4 23 0.175377 hybrid +149_4-1 Q0 MARCO_34_1511918298-10 24 0.170740 hybrid +149_4-1 Q0 MARCO_15_1133243725-3 25 0.169517 hybrid +149_4-1 Q0 MARCO_22_1020253995-7 26 0.169137 hybrid +149_4-1 Q0 MARCO_31_1220265159-5 27 0.166945 hybrid +149_4-1 Q0 MARCO_11_1392173560-2 28 0.153790 hybrid +149_4-1 Q0 MARCO_13_138823025-20 29 0.151104 hybrid +149_4-1 Q0 MARCO_13_329878303-5 30 0.143901 hybrid +149_4-1 Q0 MARCO_30_1778229041-4 31 0.139679 hybrid +149_4-1 Q0 MARCO_30_817689001-8 32 0.137922 hybrid +149_4-1 Q0 MARCO_55_763593574-3 33 0.118887 hybrid +149_4-1 Q0 MARCO_15_1168881520-11 34 0.116341 hybrid +149_4-1 Q0 MARCO_50_2506569724-88 35 0.103239 hybrid +149_4-1 Q0 MARCO_00_1162020732-4 36 0.099130 hybrid +149_4-1 Q0 MARCO_52_889975175-22 37 0.096057 hybrid +149_4-1 Q0 MARCO_31_1556470851-5 38 0.092195 hybrid +149_4-1 Q0 MARCO_48_589077963-11 39 0.085246 hybrid +149_4-1 Q0 MARCO_11_776578264-14 40 0.084077 hybrid +149_4-1 Q0 MARCO_11_776599354-9 41 0.082667 hybrid +149_4-1 Q0 MARCO_42_1884689747-5 42 0.081679 hybrid +149_4-1 Q0 MARCO_45_1036574347-2 43 0.079434 hybrid +149_4-1 Q0 MARCO_50_930160608-16 44 0.078926 hybrid +149_4-1 Q0 MARCO_05_1745840444-10 45 0.077877 hybrid +149_4-1 Q0 MARCO_50_2506569724-15 46 0.070160 hybrid +149_4-1 Q0 MARCO_57_2139873473-6 47 0.068423 hybrid +149_4-1 Q0 MARCO_53_809997967-7 48 0.061515 hybrid +149_4-1 Q0 MARCO_50_1509696457-8 49 0.056958 hybrid +149_4-1 Q0 MARCO_46_383412327-5 50 0.052876 hybrid +149_4-1 Q0 MARCO_11_775599588-10 51 0.034382 hybrid +149_4-1 Q0 MARCO_15_1131963167-11 52 0.029979 hybrid +149_4-1 Q0 MARCO_43_713571227-2 53 0.027193 hybrid +149_4-1 Q0 MARCO_50_1606836355-19 54 0.020037 hybrid +149_4-1 Q0 MARCO_07_637735790-9 55 0.018601 hybrid +149_4-1 Q0 MARCO_31_1564796326-78 56 0.017872 hybrid +149_4-1 Q0 MARCO_50_938475827-9 57 0.012360 hybrid +149_4-1 Q0 MARCO_45_136959205-2 58 0.008806 hybrid +149_4-1 Q0 MARCO_29_970033792-19 59 0.008124 hybrid +149_4-1 Q0 MARCO_11_776320856-9 60 0.007864 hybrid +149_4-1 Q0 MARCO_21_1147373151-6 61 0.007289 hybrid +149_4-1 Q0 MARCO_11_775639637-4 62 0.003448 hybrid +149_4-1 Q0 MARCO_24_652598678-5 63 -0.002131 hybrid +149_4-1 Q0 MARCO_21_1141151649-1 64 -0.006120 hybrid +149_4-1 Q0 MARCO_22_1523404063-2 65 -0.009367 hybrid +149_4-1 Q0 MARCO_23_1593654599-5 66 -0.011833 hybrid +149_4-1 Q0 MARCO_11_776635379-13 67 -0.013062 hybrid +149_4-1 Q0 MARCO_31_1553998055-9 68 -0.014285 hybrid +149_4-1 Q0 MARCO_31_1557560349-5 69 -0.034115 hybrid +149_4-1 Q0 MARCO_50_2506569724-57 70 -0.036406 hybrid +149_4-1 Q0 MARCO_11_1378050004-7 71 -0.038464 hybrid +149_4-1 Q0 MARCO_22_247241966-24 72 -0.040602 hybrid +149_4-1 Q0 MARCO_11_776719134-3 73 -0.040742 hybrid +149_4-1 Q0 MARCO_53_86338603-6 74 -0.046876 hybrid +149_4-1 Q0 MARCO_11_776578264-3 75 -0.049335 hybrid +149_4-1 Q0 MARCO_28_655796431-14 76 -0.050377 hybrid +149_4-1 Q0 MARCO_49_796268253-2 77 -0.050591 hybrid +149_4-1 Q0 MARCO_23_243516966-34 78 -0.050664 hybrid +149_4-1 Q0 MARCO_29_1692137692-11 79 -0.056784 hybrid +149_4-1 Q0 MARCO_25_1410454799-3 80 -0.057619 hybrid +149_4-1 Q0 MARCO_13_1162447889-10 81 -0.059143 hybrid +149_4-1 Q0 MARCO_50_930260817-8 82 -0.060272 hybrid +149_4-1 Q0 MARCO_41_2131675329-1 83 -0.062944 hybrid +149_4-1 Q0 MARCO_29_266104444-2 84 -0.071323 hybrid +149_4-1 Q0 MARCO_44_1168812224-4 85 -0.072766 hybrid +149_4-1 Q0 MARCO_33_1431141789-7 86 -0.079166 hybrid +149_4-1 Q0 MARCO_50_2506569724-109 87 -0.079213 hybrid +149_4-1 Q0 MARCO_50_722366695-6 88 -0.079347 hybrid +149_4-1 Q0 MARCO_15_531575144-3 89 -0.083282 hybrid +149_4-1 Q0 MARCO_15_312268892-2 90 -0.085701 hybrid +149_4-1 Q0 MARCO_03_61944316-3 91 -0.086329 hybrid +149_4-1 Q0 MARCO_45_204247560-8 92 -0.087211 hybrid +149_4-1 Q0 MARCO_43_49551072-7 93 -0.087404 hybrid +149_4-1 Q0 MARCO_50_721216808-3 94 -0.090077 hybrid +149_4-1 Q0 MARCO_24_1910494372-5 95 -0.092302 hybrid +149_4-1 Q0 MARCO_11_775465029-9 96 -0.094259 hybrid +149_4-1 Q0 MARCO_50_1399796977-10 97 -0.094500 hybrid +149_4-1 Q0 MARCO_44_1926298016-4 98 -0.095382 hybrid +149_4-1 Q0 MARCO_50_1510255938-11 99 -0.098736 hybrid +149_4-1 Q0 KILT_34987468-5 100 -0.099651 hybrid diff --git a/runs/hybrid_0.5.txt b/runs/hybrid_0.5.txt new file mode 100644 index 0000000000000000000000000000000000000000..f85d6a00770ea7e4fa36f849a011a7699d662dd7 --- /dev/null +++ b/runs/hybrid_0.5.txt @@ -0,0 +1,20500 @@ +132_1-1 Q0 MARCO_33_1621342262-1 1 91.041500 hybrid +132_1-1 Q0 MARCO_30_1605964568-1 2 90.829000 hybrid +132_1-1 Q0 MARCO_33_1621342262-2 3 90.779350 hybrid +132_1-1 Q0 MARCO_33_1621342262-3 4 90.237700 hybrid +132_1-1 Q0 MARCO_30_1605964568-4 5 90.189100 hybrid +132_1-1 Q0 MARCO_30_1605964568-8 6 89.779700 hybrid +132_1-1 Q0 MARCO_30_1605964568-5 7 89.778150 hybrid +132_1-1 Q0 MARCO_30_1605964568-6 8 89.712350 hybrid +132_1-1 Q0 MARCO_30_1666412630-3 9 89.183050 hybrid +132_1-1 Q0 MARCO_30_1605964568-2 10 89.169750 hybrid +132_1-1 Q0 MARCO_07_1289912856-1 11 89.063200 hybrid +132_1-1 Q0 MARCO_57_1276848320-4 12 88.735700 hybrid +132_1-1 Q0 MARCO_16_3117875026-6 13 88.724700 hybrid +132_1-1 Q0 MARCO_57_1474727268-1 14 88.669250 hybrid +132_1-1 Q0 MARCO_16_3117875026-7 15 88.575600 hybrid +132_1-1 Q0 MARCO_16_3117875026-1 16 88.360050 hybrid +132_1-1 Q0 MARCO_27_1574256585-1 17 88.359050 hybrid +132_1-1 Q0 MARCO_30_1666412630-2 18 88.325250 hybrid +132_1-1 Q0 MARCO_06_763073632-16 19 88.221450 hybrid +132_1-1 Q0 MARCO_19_203198818-32 20 88.141900 hybrid +132_1-1 Q0 MARCO_55_296706312-6 21 88.092050 hybrid +132_1-1 Q0 MARCO_52_62728092-4 22 88.017800 hybrid +132_1-1 Q0 MARCO_32_233298730-8 23 87.883600 hybrid +132_1-1 Q0 MARCO_17_1512488010-120 24 87.774100 hybrid +132_1-1 Q0 MARCO_50_657490639-3 25 87.657000 hybrid +132_1-1 Q0 MARCO_16_3117875026-5 26 87.654950 hybrid +132_1-1 Q0 MARCO_55_296706312-8 27 87.622500 hybrid +132_1-1 Q0 MARCO_12_478606353-8 28 87.584850 hybrid +132_1-1 Q0 MARCO_53_112499981-3 29 87.584849 hybrid +132_1-1 Q0 MARCO_16_3130933251-9 30 87.568400 hybrid +132_1-1 Q0 MARCO_49_1661153621-14 31 87.568399 hybrid +132_1-1 Q0 MARCO_54_214915112-11 32 87.445250 hybrid +132_1-1 Q0 MARCO_30_1605964568-7 33 87.439100 hybrid +132_1-1 Q0 MARCO_39_8636-1 34 87.299100 hybrid +132_1-1 Q0 MARCO_02_1096783254-1 35 87.214100 hybrid +132_1-1 Q0 KILT_37081258-2 36 87.147450 hybrid +132_1-1 Q0 MARCO_36_998866032-5 37 87.105100 hybrid +132_1-1 Q0 KILT_3314050-1 38 87.041738 hybrid +132_1-1 Q0 MARCO_01_1245205933-5 39 87.029450 hybrid +132_1-1 Q0 KILT_2458522-9 40 87.002342 hybrid +132_1-1 Q0 MARCO_18_2151603028-33 41 86.948350 hybrid +132_1-1 Q0 KILT_2458522-10 42 86.886127 hybrid +132_1-1 Q0 MARCO_35_1328253675-3 43 86.884750 hybrid +132_1-1 Q0 MARCO_36_684950861-5 44 86.884749 hybrid +132_1-1 Q0 MARCO_30_1605964568-3 45 86.836650 hybrid +132_1-1 Q0 KILT_3314050-3 46 86.826666 hybrid +132_1-1 Q0 MARCO_16_2411634799-25 47 86.790000 hybrid +132_1-1 Q0 KILT_3314050-2 48 86.678320 hybrid +132_1-1 Q0 MARCO_16_3117875026-9 49 86.667500 hybrid +132_1-1 Q0 KILT_40136741-1 50 86.594714 hybrid +132_1-1 Q0 MARCO_16_1458944068-14 51 86.543800 hybrid +132_1-1 Q0 MARCO_19_203198818-34 52 86.543799 hybrid +132_1-1 Q0 MARCO_39_1675559276-1 53 86.543150 hybrid +132_1-1 Q0 MARCO_17_1512488010-57 54 86.513850 hybrid +132_1-1 Q0 KILT_2458522-8 55 86.503889 hybrid +132_1-1 Q0 MARCO_55_248915295-6 56 86.499058 hybrid +132_1-1 Q0 MARCO_14_1855504797-25 57 86.484050 hybrid +132_1-1 Q0 MARCO_19_2484932551-34 58 86.484049 hybrid +132_1-1 Q0 MARCO_19_2486544974-34 59 86.484049 hybrid +132_1-1 Q0 MARCO_19_2510994380-22 60 86.484048 hybrid +132_1-1 Q0 MARCO_32_233298730-7 61 86.484048 hybrid +132_1-1 Q0 MARCO_59_689662115-4 62 86.484047 hybrid +132_1-1 Q0 MARCO_54_1562379270-3 63 86.480650 hybrid +132_1-1 Q0 MARCO_06_763073632-30 64 86.457600 hybrid +132_1-1 Q0 MARCO_47_1576529973-5 65 86.431000 hybrid +132_1-1 Q0 MARCO_08_393301765-1 66 86.428450 hybrid +132_1-1 Q0 MARCO_19_2481922798-29 67 86.425550 hybrid +132_1-1 Q0 MARCO_19_2496718831-25 68 86.425550 hybrid +132_1-1 Q0 MARCO_19_2497924734-27 69 86.425549 hybrid +132_1-1 Q0 MARCO_19_2509836341-27 70 86.425549 hybrid +132_1-1 Q0 MARCO_52_1749976642-2 71 86.425548 hybrid +132_1-1 Q0 KILT_68736-46 72 86.418550 hybrid +132_1-1 Q0 MARCO_01_1746584207-1 73 86.413100 hybrid +132_1-1 Q0 MARCO_04_643170393-1 74 86.374900 hybrid +132_1-1 Q0 MARCO_43_354734750-13 75 86.373500 hybrid +132_1-1 Q0 MARCO_39_8636-2 76 86.332900 hybrid +132_1-1 Q0 KILT_22807088-1 77 86.314674 hybrid +132_1-1 Q0 KILT_44305780-1 78 86.314650 hybrid +132_1-1 Q0 MARCO_34_590471208-1 79 86.310950 hybrid +132_1-1 Q0 MARCO_41_713213597-10 80 86.282550 hybrid +132_1-1 Q0 MARCO_54_1562379270-2 81 86.282549 hybrid +132_1-1 Q0 MARCO_54_1562379270-4 82 86.282549 hybrid +132_1-1 Q0 MARCO_39_1692133770-1 83 86.276950 hybrid +132_1-1 Q0 MARCO_17_4116009428-5 84 86.263700 hybrid +132_1-1 Q0 MARCO_17_4116009428-7 85 86.263700 hybrid +132_1-1 Q0 MARCO_17_4116009428-9 86 86.263699 hybrid +132_1-1 Q0 MARCO_30_1508437232-4 87 86.257600 hybrid +132_1-1 Q0 MARCO_16_3117875026-2 88 86.249400 hybrid +132_1-1 Q0 MARCO_54_460949828-6 89 86.242550 hybrid +132_1-1 Q0 MARCO_43_580627738-2 90 86.242050 hybrid +132_1-1 Q0 KILT_15421310-46 91 86.240765 hybrid +132_1-1 Q0 MARCO_08_477154067-9 92 86.239700 hybrid +132_1-1 Q0 KILT_13053979-2 93 86.212449 hybrid +132_1-1 Q0 MARCO_10_266906113-3 94 86.188279 hybrid +132_1-1 Q0 KILT_2998069-5 95 86.163436 hybrid +132_1-1 Q0 KILT_15421310-48 96 86.131881 hybrid +132_1-1 Q0 KILT_49023347-1 97 86.127350 hybrid +132_1-1 Q0 MARCO_41_712781609-2 98 86.119400 hybrid +132_1-1 Q0 KILT_1753646-24 99 86.114845 hybrid +132_1-1 Q0 KILT_44789198-2 100 86.104150 hybrid +132_1-3 Q0 MARCO_59_724229737-1 1 96.048523 hybrid +132_1-3 Q0 MARCO_45_1313575685-6 2 94.768773 hybrid +132_1-3 Q0 MARCO_26_222804180-2 3 94.322124 hybrid +132_1-3 Q0 MARCO_51_1632960714-1 4 93.092300 hybrid +132_1-3 Q0 MARCO_03_1167355426-16 5 92.799273 hybrid +132_1-3 Q0 MARCO_10_1315447023-2 6 92.481624 hybrid +132_1-3 Q0 MARCO_40_1745996639-3 7 92.470873 hybrid +132_1-3 Q0 MARCO_47_1569657986-1 8 92.442924 hybrid +132_1-3 Q0 MARCO_39_961344741-1 9 92.385173 hybrid +132_1-3 Q0 MARCO_19_604576804-42 10 92.373869 hybrid +132_1-3 Q0 MARCO_23_1082902069-12 11 92.358295 hybrid +132_1-3 Q0 MARCO_11_94851275-2 12 92.329873 hybrid +132_1-3 Q0 MARCO_44_1555015488-4 13 92.302223 hybrid +132_1-3 Q0 MARCO_10_786565416-1 14 92.298873 hybrid +132_1-3 Q0 MARCO_26_1756726441-7 15 92.297923 hybrid +132_1-3 Q0 MARCO_40_1745996639-13 16 92.280923 hybrid +132_1-3 Q0 MARCO_54_316032144-6 17 92.253593 hybrid +132_1-3 Q0 MARCO_14_490950519-1 18 92.236473 hybrid +132_1-3 Q0 MARCO_37_139343961-3 19 92.218873 hybrid +132_1-3 Q0 MARCO_23_599477390-6 20 92.161823 hybrid +132_1-3 Q0 MARCO_04_963881130-2 21 92.119423 hybrid +132_1-3 Q0 MARCO_04_963896670-2 22 92.119422 hybrid +132_1-3 Q0 MARCO_04_963888901-2 23 92.119422 hybrid +132_1-3 Q0 MARCO_04_963904589-2 24 92.119421 hybrid +132_1-3 Q0 MARCO_04_963912457-2 25 92.119421 hybrid +132_1-3 Q0 MARCO_04_963920293-2 26 92.119420 hybrid +132_1-3 Q0 MARCO_04_963927991-2 27 92.119420 hybrid +132_1-3 Q0 MARCO_04_963950838-2 28 92.119419 hybrid +132_1-3 Q0 MARCO_04_963974144-2 29 92.119419 hybrid +132_1-3 Q0 MARCO_04_964005927-2 30 92.119418 hybrid +132_1-3 Q0 MARCO_04_963998073-2 31 92.119418 hybrid +132_1-3 Q0 MARCO_04_964036894-2 32 92.119417 hybrid +132_1-3 Q0 MARCO_00_1680318572-1 33 92.085174 hybrid +132_1-3 Q0 MARCO_50_2145826584-2 34 92.051173 hybrid +132_1-3 Q0 MARCO_04_963935731-2 35 92.045223 hybrid +132_1-3 Q0 MARCO_04_963943188-2 36 92.045222 hybrid +132_1-3 Q0 MARCO_04_963982118-2 37 92.045222 hybrid +132_1-3 Q0 MARCO_04_964013847-2 38 92.045221 hybrid +132_1-3 Q0 MARCO_04_964075436-6 39 92.009173 hybrid +132_1-3 Q0 MARCO_04_963958512-2 40 91.853173 hybrid +132_1-3 Q0 MARCO_04_963966486-2 41 91.853172 hybrid +132_1-3 Q0 MARCO_04_963989986-2 42 91.853172 hybrid +132_1-3 Q0 MARCO_04_964066555-6 43 91.853171 hybrid +132_1-3 Q0 MARCO_04_964058608-6 44 91.853171 hybrid +132_1-3 Q0 MARCO_04_964021896-2 45 91.819273 hybrid +132_1-3 Q0 MARCO_11_1248654770-1 46 91.785724 hybrid +132_1-3 Q0 MARCO_02_1581399620-21 47 91.755623 hybrid +132_1-3 Q0 MARCO_13_6031552-3 48 91.695474 hybrid +132_1-3 Q0 MARCO_47_1487078282-22 49 91.686374 hybrid +132_1-3 Q0 MARCO_48_944969543-4 50 91.664723 hybrid +132_1-3 Q0 MARCO_17_4578119250-18 51 91.659773 hybrid +132_1-3 Q0 MARCO_52_66443237-4 52 91.639023 hybrid +132_1-3 Q0 MARCO_02_401915634-1 53 91.613873 hybrid +132_1-3 Q0 MARCO_47_1565727471-2 54 91.611273 hybrid +132_1-3 Q0 MARCO_12_248883443-2 55 91.570673 hybrid +132_1-3 Q0 KILT_5178211-2 56 91.530273 hybrid +132_1-3 Q0 MARCO_25_404061067-1 57 91.513523 hybrid +132_1-3 Q0 MARCO_55_591255033-2 58 91.501423 hybrid +132_1-3 Q0 MARCO_04_963858592-1 59 91.496523 hybrid +132_1-3 Q0 MARCO_00_1102903870-3 60 91.489515 hybrid +132_1-3 Q0 KILT_32478026-2 61 91.488523 hybrid +132_1-3 Q0 MARCO_03_1587318080-3 62 91.481974 hybrid +132_1-3 Q0 MARCO_25_1317084896-4 63 91.474573 hybrid +132_1-3 Q0 MARCO_23_1682959200-4 64 91.468674 hybrid +132_1-3 Q0 MARCO_51_1653449826-7 65 91.428073 hybrid +132_1-3 Q0 MARCO_06_637996497-1 66 91.428022 hybrid +132_1-3 Q0 MARCO_50_2471791001-105 67 91.422773 hybrid +132_1-3 Q0 MARCO_50_1207207903-4 68 91.419824 hybrid +132_1-3 Q0 KILT_8991205-3 69 91.405573 hybrid +132_1-3 Q0 MARCO_24_1884247637-2 70 91.387874 hybrid +132_1-3 Q0 KILT_17773-6 71 91.380223 hybrid +132_1-3 Q0 MARCO_08_1156614044-1 72 91.378074 hybrid +132_1-3 Q0 MARCO_20_69273219-12 73 91.377724 hybrid +132_1-3 Q0 MARCO_00_1191031558-1 74 91.375373 hybrid +132_1-3 Q0 KILT_1971404-6 75 91.360373 hybrid +132_1-3 Q0 MARCO_18_883297872-7 76 91.360373 hybrid +132_1-3 Q0 KILT_24355-12 77 91.328524 hybrid +132_1-3 Q0 KILT_20220805-1 78 91.326424 hybrid +132_1-3 Q0 MARCO_39_1570912715-7 79 91.301724 hybrid +132_1-3 Q0 KILT_28867002-3 80 91.289824 hybrid +132_1-3 Q0 MARCO_07_1579162542-1 81 91.275723 hybrid +132_1-3 Q0 MARCO_39_960371317-4 82 91.265324 hybrid +132_1-3 Q0 KILT_19857-11 83 91.254673 hybrid +132_1-3 Q0 MARCO_31_899439621-5 84 91.252075 hybrid +132_1-3 Q0 MARCO_39_943894073-4 85 91.248973 hybrid +132_1-3 Q0 MARCO_44_132156977-6 86 91.248273 hybrid +132_1-3 Q0 MARCO_23_1687492353-1 87 91.230173 hybrid +132_1-3 Q0 MARCO_36_688012867-2 88 91.228973 hybrid +132_1-3 Q0 MARCO_00_1102709241-2 89 91.220352 hybrid +132_1-3 Q0 MARCO_03_1117972418-3 90 91.212173 hybrid +132_1-3 Q0 KILT_41560533-5 91 91.186073 hybrid +132_1-3 Q0 MARCO_06_1659209929-2 92 91.182774 hybrid +132_1-3 Q0 MARCO_36_1483794250-7 93 91.173573 hybrid +132_1-3 Q0 MARCO_58_1506442456-5 94 91.144396 hybrid +132_1-3 Q0 KILT_25447994-1 95 91.128023 hybrid +132_1-3 Q0 KILT_54374992-1 96 91.115573 hybrid +132_1-3 Q0 MARCO_36_1480292942-7 97 91.111473 hybrid +132_1-3 Q0 MARCO_01_638519173-1 98 91.090323 hybrid +132_1-3 Q0 MARCO_17_441117681-7 99 91.080673 hybrid +132_1-3 Q0 MARCO_03_1139166052-12 100 91.069023 hybrid +132_1-5 Q0 MARCO_02_1687136851-3 1 93.580638 hybrid +132_1-5 Q0 MARCO_33_1610789522-3 2 92.982888 hybrid +132_1-5 Q0 MARCO_03_254326605-5 3 92.557453 hybrid +132_1-5 Q0 MARCO_12_248887769-1 4 92.514538 hybrid +132_1-5 Q0 MARCO_55_1657136210-2 5 92.506438 hybrid +132_1-5 Q0 MARCO_01_1068692596-4 6 92.389138 hybrid +132_1-5 Q0 MARCO_16_3677976422-3 7 92.137038 hybrid +132_1-5 Q0 MARCO_54_353043955-5 8 92.090188 hybrid +132_1-5 Q0 MARCO_15_1835245082-24 9 91.904938 hybrid +132_1-5 Q0 MARCO_17_540104257-24 10 91.774888 hybrid +132_1-5 Q0 MARCO_19_928224339-9 11 91.707988 hybrid +132_1-5 Q0 MARCO_19_609601020-29 12 91.684471 hybrid +132_1-5 Q0 MARCO_33_1609514949-2 13 91.652637 hybrid +132_1-5 Q0 MARCO_08_1696774113-10 14 91.633287 hybrid +132_1-5 Q0 MARCO_24_1569592858-10 15 91.633286 hybrid +132_1-5 Q0 MARCO_00_1103701897-3 16 91.630466 hybrid +132_1-5 Q0 MARCO_50_2471791001-46 17 91.617537 hybrid +132_1-5 Q0 MARCO_02_1851769454-1 18 91.597738 hybrid +132_1-5 Q0 MARCO_47_1570433115-5 19 91.549238 hybrid +132_1-5 Q0 MARCO_31_1615209273-2 20 91.521338 hybrid +132_1-5 Q0 KILT_5042951-2 21 91.516687 hybrid +132_1-5 Q0 MARCO_05_1665728366-2 22 91.491188 hybrid +132_1-5 Q0 MARCO_07_673645771-7 23 91.487688 hybrid +132_1-5 Q0 KILT_1765998-4 24 91.482538 hybrid +132_1-5 Q0 MARCO_40_81925579-5 25 91.467988 hybrid +132_1-5 Q0 MARCO_48_1250962164-6 26 91.362038 hybrid +132_1-5 Q0 MARCO_00_1680318572-2 27 91.345938 hybrid +132_1-5 Q0 MARCO_58_1506420919-3 28 91.331571 hybrid +132_1-5 Q0 KILT_4243385-7 29 91.310038 hybrid +132_1-5 Q0 MARCO_11_94800771-3 30 91.285438 hybrid +132_1-5 Q0 MARCO_57_180589858-6 31 91.244537 hybrid +132_1-5 Q0 MARCO_47_1515177960-13 32 91.220691 hybrid +132_1-5 Q0 MARCO_05_1665723266-3 33 91.182088 hybrid +132_1-5 Q0 KILT_19258753-21 34 91.170238 hybrid +132_1-5 Q0 MARCO_24_1719287855-3 35 91.169838 hybrid +132_1-5 Q0 MARCO_08_1187531960-16 36 91.169188 hybrid +132_1-5 Q0 MARCO_10_1502523454-3 37 91.151338 hybrid +132_1-5 Q0 MARCO_17_799787776-44 38 91.134738 hybrid +132_1-5 Q0 MARCO_17_800023274-43 39 91.134737 hybrid +132_1-5 Q0 MARCO_11_94813769-18 40 91.131938 hybrid +132_1-5 Q0 MARCO_39_185924172-2 41 91.121638 hybrid +132_1-5 Q0 MARCO_41_2054050347-10 42 91.094638 hybrid +132_1-5 Q0 MARCO_00_1680318572-6 43 91.089588 hybrid +132_1-5 Q0 MARCO_10_236394391-7 44 91.057416 hybrid +132_1-5 Q0 MARCO_21_1594973900-2 45 91.048788 hybrid +132_1-5 Q0 MARCO_23_121498598-1 46 91.033438 hybrid +132_1-5 Q0 MARCO_39_971708395-2 47 91.024387 hybrid +132_1-5 Q0 MARCO_20_1124184139-3 48 91.005589 hybrid +132_1-5 Q0 MARCO_08_289798619-3 49 90.964787 hybrid +132_1-5 Q0 MARCO_41_2080437809-3 50 90.953888 hybrid +132_1-5 Q0 MARCO_51_1226941260-7 51 90.948538 hybrid +132_1-5 Q0 MARCO_05_1665685814-3 52 90.940488 hybrid +132_1-5 Q0 MARCO_51_1661949147-2 53 90.927788 hybrid +132_1-5 Q0 MARCO_53_1430174684-1 54 90.908638 hybrid +132_1-5 Q0 MARCO_10_828766205-3 55 90.902333 hybrid +132_1-5 Q0 MARCO_38_1727804927-3 56 90.895638 hybrid +132_1-5 Q0 MARCO_00_1354350192-9 57 90.842587 hybrid +132_1-5 Q0 MARCO_19_746909300-5 58 90.811388 hybrid +132_1-5 Q0 MARCO_11_816485080-1 59 90.809688 hybrid +132_1-5 Q0 MARCO_31_645942736-2 60 90.804242 hybrid +132_1-5 Q0 MARCO_54_321981229-2 61 90.777858 hybrid +132_1-5 Q0 MARCO_10_236406528-1 62 90.774449 hybrid +132_1-5 Q0 MARCO_25_951365682-46 63 90.773038 hybrid +132_1-5 Q0 KILT_185216-37 64 90.772188 hybrid +132_1-5 Q0 MARCO_35_526447998-2 65 90.764937 hybrid +132_1-5 Q0 MARCO_05_1126238249-4 66 90.746188 hybrid +132_1-5 Q0 MARCO_10_1471037713-11 67 90.743137 hybrid +132_1-5 Q0 MARCO_01_881150837-2 68 90.738388 hybrid +132_1-5 Q0 MARCO_30_1655476893-8 69 90.735929 hybrid +132_1-5 Q0 MARCO_14_1167832580-3 70 90.735588 hybrid +132_1-5 Q0 MARCO_46_1527293965-1 71 90.735087 hybrid +132_1-5 Q0 MARCO_13_436830247-3 72 90.725957 hybrid +132_1-5 Q0 MARCO_12_1541140214-3 73 90.708588 hybrid +132_1-5 Q0 MARCO_50_920682403-22 74 90.692538 hybrid +132_1-5 Q0 MARCO_00_1103829918-5 75 90.688230 hybrid +132_1-5 Q0 MARCO_47_1570433115-1 76 90.682338 hybrid +132_1-5 Q0 MARCO_27_208915017-9 77 90.675498 hybrid +132_1-5 Q0 MARCO_30_1129690938-4 78 90.672505 hybrid +132_1-5 Q0 MARCO_50_2149706293-102 79 90.656323 hybrid +132_1-5 Q0 MARCO_39_1338989635-3 80 90.651088 hybrid +132_1-5 Q0 MARCO_15_1986073531-10 81 90.646169 hybrid +132_1-5 Q0 MARCO_39_1570912715-7 82 90.644238 hybrid +132_1-5 Q0 MARCO_01_7777230-4 83 90.635588 hybrid +132_1-5 Q0 MARCO_27_1349125701-4 84 90.635587 hybrid +132_1-5 Q0 MARCO_57_183498669-15 85 90.619987 hybrid +132_1-5 Q0 MARCO_39_1015376504-1 86 90.614287 hybrid +132_1-5 Q0 MARCO_05_1651662681-2 87 90.613088 hybrid +132_1-5 Q0 MARCO_15_1887871279-1 88 90.607838 hybrid +132_1-5 Q0 MARCO_20_1691148513-26 89 90.606935 hybrid +132_1-5 Q0 MARCO_41_162846710-8 90 90.596738 hybrid +132_1-5 Q0 MARCO_00_1212667583-7 91 90.594188 hybrid +132_1-5 Q0 KILT_37063005-59 92 90.591788 hybrid +132_1-5 Q0 MARCO_36_1480730644-5 93 90.587188 hybrid +132_1-5 Q0 KILT_46646396-26 94 90.583037 hybrid +132_1-5 Q0 KILT_19258753-16 95 90.581338 hybrid +132_1-5 Q0 MARCO_20_89423971-2 96 90.573138 hybrid +132_1-5 Q0 MARCO_15_134409556-5 97 90.566949 hybrid +132_1-5 Q0 MARCO_02_486636638-2 98 90.564534 hybrid +132_1-5 Q0 MARCO_13_436684399-3 99 90.559355 hybrid +132_1-5 Q0 MARCO_56_1368481315-4 100 90.552988 hybrid +132_1-7 Q0 MARCO_20_1080149910-3 1 89.378370 hybrid +132_1-7 Q0 MARCO_20_1080149910-1 2 89.236928 hybrid +132_1-7 Q0 MARCO_20_1068143192-2 3 87.927872 hybrid +132_1-7 Q0 MARCO_24_1429122752-1 4 87.926822 hybrid +132_1-7 Q0 MARCO_20_1061396219-2 5 87.765522 hybrid +132_1-7 Q0 MARCO_20_1080149910-2 6 87.746141 hybrid +132_1-7 Q0 MARCO_30_204228925-275 7 87.609672 hybrid +132_1-7 Q0 MARCO_20_1048511521-2 8 87.561322 hybrid +132_1-7 Q0 MARCO_20_1039883746-1 9 87.508922 hybrid +132_1-7 Q0 MARCO_33_1122911489-1 10 87.425872 hybrid +132_1-7 Q0 MARCO_47_125442160-2 11 87.394022 hybrid +132_1-7 Q0 MARCO_33_1122144812-1 12 87.379222 hybrid +132_1-7 Q0 MARCO_20_1048511521-3 13 87.368522 hybrid +132_1-7 Q0 MARCO_33_1132393456-1 14 87.322522 hybrid +132_1-7 Q0 MARCO_06_833099672-26 15 87.288922 hybrid +132_1-7 Q0 MARCO_44_608301288-3 16 87.287405 hybrid +132_1-7 Q0 MARCO_31_92541914-10 17 87.217422 hybrid +132_1-7 Q0 MARCO_33_1132398009-1 18 87.211022 hybrid +132_1-7 Q0 MARCO_07_1592693514-4 19 87.106922 hybrid +132_1-7 Q0 MARCO_47_129342253-1 20 87.102522 hybrid +132_1-7 Q0 MARCO_07_711409109-3 21 87.083322 hybrid +132_1-7 Q0 MARCO_20_1045501279-3 22 87.078372 hybrid +132_1-7 Q0 MARCO_45_1636283350-15 23 87.038222 hybrid +132_1-7 Q0 MARCO_23_1549961384-6 24 86.997072 hybrid +132_1-7 Q0 MARCO_48_2110899124-5 25 86.990672 hybrid +132_1-7 Q0 MARCO_20_1049217908-1 26 86.990172 hybrid +132_1-7 Q0 MARCO_20_1067889150-2 27 86.983872 hybrid +132_1-7 Q0 MARCO_20_1073078385-3 28 86.978722 hybrid +132_1-7 Q0 MARCO_59_784731941-4 29 86.970472 hybrid +132_1-7 Q0 MARCO_50_1996470247-19 30 86.953822 hybrid +132_1-7 Q0 MARCO_39_435577081-4 31 86.952922 hybrid +132_1-7 Q0 MARCO_07_1590598339-1 32 86.924422 hybrid +132_1-7 Q0 MARCO_20_1042446638-3 33 86.919772 hybrid +132_1-7 Q0 MARCO_20_1049468685-2 34 86.914372 hybrid +132_1-7 Q0 MARCO_20_1058954508-4 35 86.910972 hybrid +132_1-7 Q0 MARCO_20_1091554644-2 36 86.908522 hybrid +132_1-7 Q0 MARCO_50_1996132144-20 37 86.903222 hybrid +132_1-7 Q0 MARCO_33_1138054433-1 38 86.899522 hybrid +132_1-7 Q0 MARCO_20_1091684857-2 39 86.856422 hybrid +132_1-7 Q0 MARCO_33_1136669906-2 40 86.850222 hybrid +132_1-7 Q0 MARCO_11_1506063492-4 41 86.834072 hybrid +132_1-7 Q0 MARCO_26_769518666-8 42 86.820872 hybrid +132_1-7 Q0 MARCO_20_1070473628-1 43 86.818222 hybrid +132_1-7 Q0 MARCO_57_816465259-3 44 86.804072 hybrid +132_1-7 Q0 MARCO_20_1038919473-2 45 86.798322 hybrid +132_1-7 Q0 MARCO_28_659728633-3 46 86.793422 hybrid +132_1-7 Q0 MARCO_05_1018251532-2 47 86.784522 hybrid +132_1-7 Q0 MARCO_20_1071347553-6 48 86.780322 hybrid +132_1-7 Q0 MARCO_02_1614569451-4 49 86.764772 hybrid +132_1-7 Q0 MARCO_02_1696536634-10 50 86.764771 hybrid +132_1-7 Q0 MARCO_02_1696536634-3 51 86.764771 hybrid +132_1-7 Q0 MARCO_11_1433487121-4 52 86.764771 hybrid +132_1-7 Q0 MARCO_20_1078193273-2 53 86.748447 hybrid +132_1-7 Q0 MARCO_33_1132393456-4 54 86.745622 hybrid +132_1-7 Q0 MARCO_30_400532908-5 55 86.732122 hybrid +132_1-7 Q0 MARCO_20_1047872002-2 56 86.717372 hybrid +132_1-7 Q0 MARCO_20_1070473628-4 57 86.712122 hybrid +132_1-7 Q0 MARCO_20_1061346679-1 58 86.695622 hybrid +132_1-7 Q0 MARCO_46_322808173-6 59 86.686022 hybrid +132_1-7 Q0 MARCO_41_1403431690-48 60 86.684560 hybrid +132_1-7 Q0 MARCO_20_1071341135-1 61 86.683422 hybrid +132_1-7 Q0 MARCO_20_1045501279-2 62 86.674172 hybrid +132_1-7 Q0 MARCO_23_823250290-6 63 86.670122 hybrid +132_1-7 Q0 MARCO_20_1083048235-1 64 86.666272 hybrid +132_1-7 Q0 MARCO_20_1039883746-2 65 86.654772 hybrid +132_1-7 Q0 MARCO_20_1067733829-2 66 86.639922 hybrid +132_1-7 Q0 MARCO_20_1067513128-6 67 86.632172 hybrid +132_1-7 Q0 MARCO_20_1086685544-1 68 86.632171 hybrid +132_1-7 Q0 MARCO_20_1089728379-2 69 86.630222 hybrid +132_1-7 Q0 MARCO_20_1049049594-2 70 86.630072 hybrid +132_1-7 Q0 MARCO_33_1132398009-4 71 86.629822 hybrid +132_1-7 Q0 MARCO_20_1067513128-4 72 86.624472 hybrid +132_1-7 Q0 KILT_9633122-2 73 86.610677 hybrid +132_1-7 Q0 MARCO_20_1090146664-4 74 86.604272 hybrid +132_1-7 Q0 MARCO_33_1122144812-2 75 86.604271 hybrid +132_1-7 Q0 MARCO_04_519638071-3 76 86.601772 hybrid +132_1-7 Q0 MARCO_30_935612208-12 77 86.601272 hybrid +132_1-7 Q0 MARCO_20_1091796581-3 78 86.599422 hybrid +132_1-7 Q0 MARCO_33_1134306198-1 79 86.597672 hybrid +132_1-7 Q0 MARCO_14_1096592687-6 80 86.593290 hybrid +132_1-7 Q0 MARCO_20_1068143192-1 81 86.575272 hybrid +132_1-7 Q0 MARCO_28_91995860-2 82 86.569572 hybrid +132_1-7 Q0 MARCO_29_1245218303-4 83 86.565072 hybrid +132_1-7 Q0 MARCO_30_1787653271-1 84 86.555622 hybrid +132_1-7 Q0 MARCO_55_626968910-2 85 86.549822 hybrid +132_1-7 Q0 MARCO_20_1045501279-1 86 86.548222 hybrid +132_1-7 Q0 MARCO_22_529289391-10 87 86.546172 hybrid +132_1-7 Q0 MARCO_20_1088046429-2 88 86.541222 hybrid +132_1-7 Q0 MARCO_20_1067816632-4 89 86.524272 hybrid +132_1-7 Q0 MARCO_23_1433323736-5 90 86.517772 hybrid +132_1-7 Q0 MARCO_33_1135087392-1 91 86.514572 hybrid +132_1-7 Q0 MARCO_20_1054364266-4 92 86.507372 hybrid +132_1-7 Q0 MARCO_41_1188921370-50 93 86.506437 hybrid +132_1-7 Q0 MARCO_47_126746417-1 94 86.501922 hybrid +132_1-7 Q0 MARCO_47_126746417-3 95 86.501921 hybrid +132_1-7 Q0 MARCO_20_1086650484-2 96 86.494222 hybrid +132_1-7 Q0 MARCO_20_1067513128-2 97 86.490772 hybrid +132_1-7 Q0 MARCO_20_1092927229-2 98 86.483972 hybrid +132_1-7 Q0 MARCO_20_1067715301-4 99 86.478572 hybrid +132_1-7 Q0 MARCO_03_1528595149-7 100 86.471172 hybrid +132_2-1 Q0 MARCO_02_1687136851-3 1 100.945801 hybrid +132_2-1 Q0 MARCO_33_1610789522-3 2 96.561951 hybrid +132_2-1 Q0 MARCO_19_928224339-9 3 95.284801 hybrid +132_2-1 Q0 MARCO_06_213300327-13 4 95.224200 hybrid +132_2-1 Q0 MARCO_10_828766205-3 5 95.064400 hybrid +132_2-1 Q0 MARCO_03_254326605-5 6 94.838807 hybrid +132_2-1 Q0 MARCO_01_1068692596-4 7 94.746301 hybrid +132_2-1 Q0 MARCO_46_1380912906-4 8 94.589860 hybrid +132_2-1 Q0 MARCO_31_899439621-2 9 94.581286 hybrid +132_2-1 Q0 MARCO_19_609601020-29 10 94.576748 hybrid +132_2-1 Q0 MARCO_45_5758374-4 11 94.529901 hybrid +132_2-1 Q0 MARCO_10_1471037713-11 12 94.469450 hybrid +132_2-1 Q0 MARCO_05_1581214602-10 13 94.400801 hybrid +132_2-1 Q0 MARCO_36_1480597812-5 14 94.365650 hybrid +132_2-1 Q0 MARCO_12_248887769-1 15 94.345000 hybrid +132_2-1 Q0 MARCO_17_540104257-24 16 94.327950 hybrid +132_2-1 Q0 KILT_46646396-26 17 94.306850 hybrid +132_2-1 Q0 MARCO_15_1887871279-2 18 94.257450 hybrid +132_2-1 Q0 MARCO_47_1535584499-4 19 94.137900 hybrid +132_2-1 Q0 MARCO_36_1481433107-10 20 94.115550 hybrid +132_2-1 Q0 MARCO_24_1719287855-3 21 94.038301 hybrid +132_2-1 Q0 MARCO_00_1212667583-7 22 94.022850 hybrid +132_2-1 Q0 MARCO_11_94813769-18 23 93.947850 hybrid +132_2-1 Q0 MARCO_20_1691148513-26 24 93.846404 hybrid +132_2-1 Q0 KILT_40980474-8 25 93.815001 hybrid +132_2-1 Q0 MARCO_43_1668526597-5 26 93.758850 hybrid +132_2-1 Q0 MARCO_36_683259887-2 27 93.744350 hybrid +132_2-1 Q0 MARCO_08_1187531960-16 28 93.736601 hybrid +132_2-1 Q0 MARCO_06_211514153-23 29 93.662201 hybrid +132_2-1 Q0 MARCO_54_336681975-5 30 93.659551 hybrid +132_2-1 Q0 MARCO_03_364431500-3 31 93.624451 hybrid +132_2-1 Q0 MARCO_05_1665723266-3 32 93.623550 hybrid +132_2-1 Q0 MARCO_36_684604970-1 33 93.623100 hybrid +132_2-1 Q0 MARCO_47_619426680-1 34 93.620851 hybrid +132_2-1 Q0 MARCO_50_2471791001-86 35 93.589351 hybrid +132_2-1 Q0 MARCO_26_1697981170-3 36 93.579250 hybrid +132_2-1 Q0 MARCO_02_694648736-46 37 93.558950 hybrid +132_2-1 Q0 MARCO_44_1147498861-1 38 93.546801 hybrid +132_2-1 Q0 MARCO_07_673645771-7 39 93.508651 hybrid +132_2-1 Q0 MARCO_51_1903558454-38 40 93.499825 hybrid +132_2-1 Q0 MARCO_09_135413271-1 41 93.488400 hybrid +132_2-1 Q0 MARCO_01_1089136472-1 42 93.477301 hybrid +132_2-1 Q0 MARCO_15_1835245082-24 43 93.477051 hybrid +132_2-1 Q0 MARCO_16_3677795743-5 44 93.473801 hybrid +132_2-1 Q0 MARCO_31_1615209273-2 45 93.468651 hybrid +132_2-1 Q0 MARCO_47_1570433115-5 46 93.458250 hybrid +132_2-1 Q0 KILT_9808909-9 47 93.414001 hybrid +132_2-1 Q0 MARCO_50_2471791001-46 48 93.399501 hybrid +132_2-1 Q0 MARCO_56_1072377115-2 49 93.381201 hybrid +132_2-1 Q0 MARCO_50_2471791001-74 50 93.381101 hybrid +132_2-1 Q0 MARCO_13_1213091716-3 51 93.373950 hybrid +132_2-1 Q0 MARCO_20_1670056934-3 52 93.373899 hybrid +132_2-1 Q0 MARCO_56_940669272-1 53 93.363400 hybrid +132_2-1 Q0 MARCO_11_94813769-17 54 93.352151 hybrid +132_2-1 Q0 MARCO_51_1318862416-1 55 93.331500 hybrid +132_2-1 Q0 MARCO_14_983008052-1 56 93.304851 hybrid +132_2-1 Q0 MARCO_47_211150865-2 57 93.299300 hybrid +132_2-1 Q0 MARCO_17_2684454601-2 58 93.291101 hybrid +132_2-1 Q0 MARCO_00_1699290414-7 59 93.290200 hybrid +132_2-1 Q0 MARCO_33_1609514949-2 60 93.287101 hybrid +132_2-1 Q0 MARCO_54_1561773755-30 61 93.283051 hybrid +132_2-1 Q0 MARCO_58_1574399558-4 62 93.277700 hybrid +132_2-1 Q0 MARCO_32_71650109-4 63 93.277101 hybrid +132_2-1 Q0 MARCO_08_1511470711-1 64 93.263451 hybrid +132_2-1 Q0 MARCO_28_424288304-4 65 93.248092 hybrid +132_2-1 Q0 MARCO_00_1680318572-2 66 93.242300 hybrid +132_2-1 Q0 MARCO_48_1250962164-6 67 93.237250 hybrid +132_2-1 Q0 MARCO_26_178079224-2 68 93.236851 hybrid +132_2-1 Q0 MARCO_57_1273989673-2 69 93.225322 hybrid +132_2-1 Q0 KILT_37063005-59 70 93.224200 hybrid +132_2-1 Q0 MARCO_03_1597279726-3 71 93.222700 hybrid +132_2-1 Q0 MARCO_47_1568665536-17 72 93.213651 hybrid +132_2-1 Q0 MARCO_06_770547898-30 73 93.213600 hybrid +132_2-1 Q0 MARCO_54_321981229-2 74 93.213112 hybrid +132_2-1 Q0 MARCO_06_770547898-2 75 93.212550 hybrid +132_2-1 Q0 MARCO_35_1428083107-2 76 93.187401 hybrid +132_2-1 Q0 MARCO_05_1661560165-3 77 93.177100 hybrid +132_2-1 Q0 MARCO_56_1368481315-4 78 93.175200 hybrid +132_2-1 Q0 MARCO_54_318992221-3 79 93.174650 hybrid +132_2-1 Q0 MARCO_51_1318862416-2 80 93.158514 hybrid +132_2-1 Q0 MARCO_15_1887871279-1 81 93.158350 hybrid +132_2-1 Q0 MARCO_39_185924172-2 82 93.152350 hybrid +132_2-1 Q0 MARCO_50_2817239172-4 83 93.145201 hybrid +132_2-1 Q0 MARCO_26_1570328160-4 84 93.144401 hybrid +132_2-1 Q0 MARCO_04_653699290-7 85 93.143650 hybrid +132_2-1 Q0 MARCO_48_1730558236-3 86 93.142600 hybrid +132_2-1 Q0 MARCO_06_771599222-9 87 93.139900 hybrid +132_2-1 Q0 MARCO_06_288733456-11 88 93.139450 hybrid +132_2-1 Q0 MARCO_13_663552473-1 89 93.139400 hybrid +132_2-1 Q0 MARCO_13_436368840-3 90 93.138992 hybrid +132_2-1 Q0 MARCO_13_662686378-2 91 93.138150 hybrid +132_2-1 Q0 MARCO_06_770547898-32 92 93.137800 hybrid +132_2-1 Q0 MARCO_54_353043955-5 93 93.134451 hybrid +132_2-1 Q0 MARCO_01_7777230-4 94 93.131750 hybrid +132_2-1 Q0 MARCO_27_1349125701-4 95 93.131749 hybrid +132_2-1 Q0 MARCO_16_3677976422-3 96 93.125951 hybrid +132_2-1 Q0 MARCO_39_782276005-5 97 93.083800 hybrid +132_2-1 Q0 MARCO_13_662508770-1 98 93.081950 hybrid +132_2-1 Q0 MARCO_33_1613853617-1 99 93.075750 hybrid +132_2-1 Q0 MARCO_40_1735427275-9 100 93.061650 hybrid +132_2-11 Q0 MARCO_33_1621342262-1 1 89.892869 hybrid +132_2-11 Q0 MARCO_33_1621342262-2 2 88.241419 hybrid +132_2-11 Q0 MARCO_30_1605964568-7 3 87.783419 hybrid +132_2-11 Q0 MARCO_30_1605964568-1 4 87.667769 hybrid +132_2-11 Q0 MARCO_16_3117875026-6 5 87.555319 hybrid +132_2-11 Q0 MARCO_30_1605964568-8 6 87.329619 hybrid +132_2-11 Q0 MARCO_06_609309883-1 7 87.289969 hybrid +132_2-11 Q0 MARCO_33_1621342262-3 8 87.166069 hybrid +132_2-11 Q0 MARCO_16_2411634799-25 9 87.080519 hybrid +132_2-11 Q0 MARCO_30_1605964568-5 10 86.915769 hybrid +132_2-11 Q0 MARCO_55_296706312-6 11 86.899119 hybrid +132_2-11 Q0 MARCO_30_1605964568-4 12 86.892619 hybrid +132_2-11 Q0 MARCO_30_1605964568-2 13 86.866369 hybrid +132_2-11 Q0 MARCO_30_1605964568-6 14 86.733569 hybrid +132_2-11 Q0 MARCO_39_8636-2 15 86.716669 hybrid +132_2-11 Q0 MARCO_16_3117875026-2 16 86.603269 hybrid +132_2-11 Q0 MARCO_55_296706312-8 17 86.562069 hybrid +132_2-11 Q0 MARCO_17_4116009428-5 18 86.560003 hybrid +132_2-11 Q0 MARCO_17_4116009428-7 19 86.560002 hybrid +132_2-11 Q0 MARCO_17_4116009428-9 20 86.560002 hybrid +132_2-11 Q0 MARCO_07_1289912856-1 21 86.528719 hybrid +132_2-11 Q0 MARCO_30_1605964568-3 22 86.313319 hybrid +132_2-11 Q0 MARCO_16_3117875026-7 23 86.252619 hybrid +132_2-11 Q0 MARCO_30_1666412630-3 24 86.085119 hybrid +132_2-11 Q0 MARCO_16_3117875026-1 25 86.069519 hybrid +132_2-11 Q0 MARCO_16_3117875026-5 26 86.042869 hybrid +132_2-11 Q0 MARCO_39_1675559276-1 27 86.019819 hybrid +132_2-11 Q0 MARCO_36_547706359-3 28 85.966369 hybrid +132_2-11 Q0 MARCO_06_763073632-16 29 85.944919 hybrid +132_2-11 Q0 MARCO_10_262751953-14 30 85.864386 hybrid +132_2-11 Q0 MARCO_39_1740604538-5 31 85.846312 hybrid +132_2-11 Q0 MARCO_15_137349888-17 32 85.834280 hybrid +132_2-11 Q0 MARCO_43_580627738-2 33 85.799919 hybrid +132_2-11 Q0 MARCO_15_137349888-16 34 85.786650 hybrid +132_2-11 Q0 MARCO_54_1585777016-1 35 85.777169 hybrid +132_2-11 Q0 MARCO_41_713213597-10 36 85.759219 hybrid +132_2-11 Q0 MARCO_54_1562379270-2 37 85.759219 hybrid +132_2-11 Q0 MARCO_54_1562379270-4 38 85.759218 hybrid +132_2-11 Q0 MARCO_39_1692133770-1 39 85.753619 hybrid +132_2-11 Q0 MARCO_57_1276848320-4 40 85.731219 hybrid +132_2-11 Q0 MARCO_08_477154067-9 41 85.716369 hybrid +132_2-11 Q0 KILT_57401251-1 42 85.702406 hybrid +132_2-11 Q0 MARCO_39_8636-1 43 85.698869 hybrid +132_2-11 Q0 MARCO_14_310245762-4 44 85.692954 hybrid +132_2-11 Q0 MARCO_28_80782241-29 45 85.692369 hybrid +132_2-11 Q0 MARCO_52_62728092-4 46 85.682469 hybrid +132_2-11 Q0 MARCO_30_1666412630-2 47 85.645269 hybrid +132_2-11 Q0 MARCO_02_1096783254-1 48 85.613869 hybrid +132_2-11 Q0 MARCO_50_1661854532-28 49 85.613819 hybrid +132_2-11 Q0 MARCO_27_1740946334-3 50 85.593419 hybrid +132_2-11 Q0 MARCO_34_494597532-3 51 85.539369 hybrid +132_2-11 Q0 MARCO_50_2171833519-2 52 85.531619 hybrid +132_2-11 Q0 MARCO_13_302834546-5 53 85.529369 hybrid +132_2-11 Q0 MARCO_18_2387930429-41 54 85.519240 hybrid +132_2-11 Q0 MARCO_39_1692133770-2 55 85.515519 hybrid +132_2-11 Q0 MARCO_15_137349888-7 56 85.494757 hybrid +132_2-11 Q0 MARCO_46_578904910-3 57 85.492669 hybrid +132_2-11 Q0 MARCO_54_156803138-5 58 85.492169 hybrid +132_2-11 Q0 KILT_55224799-3 59 85.489935 hybrid +132_2-11 Q0 MARCO_46_582440933-1 60 85.479519 hybrid +132_2-11 Q0 MARCO_03_572787050-4 61 85.476169 hybrid +132_2-11 Q0 MARCO_27_1574256585-1 62 85.471919 hybrid +132_2-11 Q0 KILT_59629380-1 63 85.465140 hybrid +132_2-11 Q0 MARCO_52_1301542113-24 64 85.454569 hybrid +132_2-11 Q0 MARCO_16_1458944068-6 65 85.452669 hybrid +132_2-11 Q0 MARCO_15_137349888-18 66 85.442214 hybrid +132_2-11 Q0 MARCO_35_1328253675-3 67 85.438969 hybrid +132_2-11 Q0 MARCO_56_1008073699-11 68 85.438574 hybrid +132_2-11 Q0 MARCO_50_2383699212-10 69 85.414569 hybrid +132_2-11 Q0 MARCO_30_133806116-2 70 85.406769 hybrid +132_2-11 Q0 MARCO_26_832703396-2 71 85.392819 hybrid +132_2-11 Q0 MARCO_08_1222491267-9 72 85.389969 hybrid +132_2-11 Q0 MARCO_41_712781609-2 73 85.386819 hybrid +132_2-11 Q0 MARCO_18_2399142415-3 74 85.383505 hybrid +132_2-11 Q0 MARCO_44_1985647329-19 75 85.382569 hybrid +132_2-11 Q0 MARCO_30_254220875-4 76 85.381169 hybrid +132_2-11 Q0 KILT_28098423-8 77 85.374175 hybrid +132_2-11 Q0 MARCO_54_7369733-9 78 85.373619 hybrid +132_2-11 Q0 MARCO_43_761821671-18 79 85.373106 hybrid +132_2-11 Q0 MARCO_15_137349888-19 80 85.367400 hybrid +132_2-11 Q0 MARCO_11_1471263956-1 81 85.367169 hybrid +132_2-11 Q0 MARCO_50_2078837388-50 82 85.365969 hybrid +132_2-11 Q0 MARCO_31_803440338-3 83 85.357469 hybrid +132_2-11 Q0 MARCO_28_836508334-7 84 85.345819 hybrid +132_2-11 Q0 KILT_10924480-2 85 85.343669 hybrid +132_2-11 Q0 MARCO_50_1436818158-15 86 85.343419 hybrid +132_2-11 Q0 MARCO_46_582450323-2 87 85.342369 hybrid +132_2-11 Q0 MARCO_45_1252968544-2 88 85.341811 hybrid +132_2-11 Q0 MARCO_15_928569559-3 89 85.340071 hybrid +132_2-11 Q0 MARCO_47_308529444-4 90 85.339219 hybrid +132_2-11 Q0 MARCO_41_1455886216-14 91 85.336119 hybrid +132_2-11 Q0 MARCO_23_867275032-2 92 85.335219 hybrid +132_2-11 Q0 MARCO_48_1380268854-156 93 85.332610 hybrid +132_2-11 Q0 MARCO_37_443072358-3 94 85.330919 hybrid +132_2-11 Q0 MARCO_47_1576529973-5 95 85.327819 hybrid +132_2-11 Q0 MARCO_25_239298258-5 96 85.324519 hybrid +132_2-11 Q0 MARCO_34_473328558-5 97 85.323592 hybrid +132_2-11 Q0 KILT_142135-7 98 85.322943 hybrid +132_2-11 Q0 MARCO_40_1526476233-7 99 85.314469 hybrid +132_2-11 Q0 MARCO_36_998866032-5 100 85.314369 hybrid +132_2-13 Q0 MARCO_10_262743620-5 1 91.684464 hybrid +132_2-13 Q0 KILT_59552393-2 2 90.403256 hybrid +132_2-13 Q0 KILT_48808018-7 3 90.286856 hybrid +132_2-13 Q0 MARCO_10_1485053201-13 4 90.083806 hybrid +132_2-13 Q0 KILT_44479376-12 5 89.517056 hybrid +132_2-13 Q0 MARCO_10_1485053201-16 6 89.286756 hybrid +132_2-13 Q0 MARCO_19_266473698-27 7 89.227118 hybrid +132_2-13 Q0 KILT_31898-7 8 88.931306 hybrid +132_2-13 Q0 MARCO_19_204123815-20 9 88.870956 hybrid +132_2-13 Q0 KILT_31898-17 10 88.803906 hybrid +132_2-13 Q0 KILT_54199706-24 11 88.797306 hybrid +132_2-13 Q0 MARCO_19_204123815-10 12 88.738106 hybrid +132_2-13 Q0 KILT_48808018-1 13 88.472806 hybrid +132_2-13 Q0 KILT_21463988-30 14 87.974006 hybrid +132_2-13 Q0 MARCO_10_262743620-6 15 87.864436 hybrid +132_2-13 Q0 KILT_48808018-9 16 87.823256 hybrid +132_2-13 Q0 KILT_51628478-11 17 87.751456 hybrid +132_2-13 Q0 KILT_55869832-8 18 87.680556 hybrid +132_2-13 Q0 MARCO_52_20566683-24 19 87.611206 hybrid +132_2-13 Q0 KILT_34927645-5 20 87.366406 hybrid +132_2-13 Q0 KILT_48808018-6 21 87.336556 hybrid +132_2-13 Q0 MARCO_10_1485053201-4 22 87.137956 hybrid +132_2-13 Q0 MARCO_16_1458944068-14 23 87.134756 hybrid +132_2-13 Q0 MARCO_19_203198818-34 24 87.134756 hybrid +132_2-13 Q0 KILT_59440711-2 25 87.090706 hybrid +132_2-13 Q0 KILT_30242372-4 26 87.020906 hybrid +132_2-13 Q0 KILT_58894732-2 27 87.008106 hybrid +132_2-13 Q0 MARCO_10_262751953-9 28 87.000850 hybrid +132_2-13 Q0 MARCO_10_262736749-1 29 86.991033 hybrid +132_2-13 Q0 MARCO_19_266473698-5 30 86.978953 hybrid +132_2-13 Q0 MARCO_50_1929336451-6 31 86.934222 hybrid +132_2-13 Q0 MARCO_54_276512227-6 32 86.923156 hybrid +132_2-13 Q0 KILT_21632898-10 33 86.917406 hybrid +132_2-13 Q0 KILT_48808018-8 34 86.877406 hybrid +132_2-13 Q0 KILT_48808018-10 35 86.874156 hybrid +132_2-13 Q0 KILT_55254540-4 36 86.867506 hybrid +132_2-13 Q0 MARCO_25_1173147974-3 37 86.825706 hybrid +132_2-13 Q0 MARCO_57_270547649-12 38 86.796206 hybrid +132_2-13 Q0 MARCO_19_266473698-49 39 86.794232 hybrid +132_2-13 Q0 MARCO_17_4793843818-65 40 86.771056 hybrid +132_2-13 Q0 KILT_58255078-1 41 86.729006 hybrid +132_2-13 Q0 MARCO_31_644392863-2 42 86.705516 hybrid +132_2-13 Q0 MARCO_00_1330634246-3 43 86.660556 hybrid +132_2-13 Q0 MARCO_16_3117875026-9 44 86.630506 hybrid +132_2-13 Q0 MARCO_04_858408112-35 45 86.614881 hybrid +132_2-13 Q0 MARCO_48_1188743878-2 46 86.613159 hybrid +132_2-13 Q0 MARCO_10_262743620-4 47 86.598441 hybrid +132_2-13 Q0 KILT_19258753-36 48 86.583456 hybrid +132_2-13 Q0 MARCO_19_1595431796-2 49 86.577956 hybrid +132_2-13 Q0 MARCO_37_1226477362-7 50 86.530219 hybrid +132_2-13 Q0 MARCO_19_266473698-10 51 86.505372 hybrid +132_2-13 Q0 MARCO_10_1485053201-1 52 86.501556 hybrid +132_2-13 Q0 MARCO_10_1485053201-3 53 86.501555 hybrid +132_2-13 Q0 MARCO_10_260560518-7 54 86.474643 hybrid +132_2-13 Q0 MARCO_47_1083167822-3 55 86.466556 hybrid +132_2-13 Q0 KILT_4000711-5 56 86.455206 hybrid +132_2-13 Q0 KILT_41873227-1 57 86.455205 hybrid +132_2-13 Q0 KILT_6862631-2 58 86.455205 hybrid +132_2-13 Q0 MARCO_10_262743620-2 59 86.431449 hybrid +132_2-13 Q0 MARCO_41_2085147140-5 60 86.423099 hybrid +132_2-13 Q0 MARCO_29_1175326324-10 61 86.422980 hybrid +132_2-13 Q0 KILT_30242372-8 62 86.398456 hybrid +132_2-13 Q0 KILT_932079-17 63 86.387406 hybrid +132_2-13 Q0 MARCO_10_1485053201-8 64 86.384006 hybrid +132_2-13 Q0 MARCO_18_1270178471-17 65 86.345356 hybrid +132_2-13 Q0 KILT_39151134-5 66 86.344806 hybrid +132_2-13 Q0 MARCO_41_2052529497-6 67 86.338206 hybrid +132_2-13 Q0 MARCO_01_1034490048-24 68 86.336993 hybrid +132_2-13 Q0 MARCO_31_644392863-5 69 86.326724 hybrid +132_2-13 Q0 KILT_1601418-5 70 86.310051 hybrid +132_2-13 Q0 MARCO_19_2045096479-10 71 86.305465 hybrid +132_2-13 Q0 KILT_56387329-1 72 86.294093 hybrid +132_2-13 Q0 MARCO_48_1251187189-25 73 86.290606 hybrid +132_2-13 Q0 MARCO_10_1485053201-15 74 86.290306 hybrid +132_2-13 Q0 KILT_669964-1 75 86.263423 hybrid +132_2-13 Q0 KILT_42176864-1 76 86.253056 hybrid +132_2-13 Q0 MARCO_03_1143822284-18 77 86.250056 hybrid +132_2-13 Q0 MARCO_25_519333782-21 78 86.214610 hybrid +132_2-13 Q0 MARCO_10_1485053201-10 79 86.214506 hybrid +132_2-13 Q0 MARCO_10_1485053201-6 80 86.207506 hybrid +132_2-13 Q0 KILT_1601418-6 81 86.203243 hybrid +132_2-13 Q0 MARCO_10_1485053201-7 82 86.201256 hybrid +132_2-13 Q0 MARCO_10_260560518-1 83 86.196704 hybrid +132_2-13 Q0 MARCO_01_1034490048-100 84 86.187585 hybrid +132_2-13 Q0 KILT_932079-2 85 86.186456 hybrid +132_2-13 Q0 MARCO_57_1273322266-3 86 86.183696 hybrid +132_2-13 Q0 MARCO_48_1251187189-20 87 86.175606 hybrid +132_2-13 Q0 MARCO_30_1666504494-2 88 86.172006 hybrid +132_2-13 Q0 MARCO_18_1303761340-19 89 86.169574 hybrid +132_2-13 Q0 MARCO_48_1251187189-4 90 86.167006 hybrid +132_2-13 Q0 MARCO_18_922972680-24 91 86.142351 hybrid +132_2-13 Q0 MARCO_18_4372209380-6 92 86.125629 hybrid +132_2-13 Q0 MARCO_22_1185276262-3 93 86.107013 hybrid +132_2-13 Q0 MARCO_16_3678296457-56 94 86.096006 hybrid +132_2-13 Q0 MARCO_03_414943714-1 95 86.086756 hybrid +132_2-13 Q0 MARCO_18_1270013948-14 96 86.073556 hybrid +132_2-13 Q0 MARCO_18_1270013948-13 97 86.072656 hybrid +132_2-13 Q0 MARCO_22_1644883624-30 98 86.069639 hybrid +132_2-13 Q0 MARCO_17_431954845-18 99 86.060809 hybrid +132_2-13 Q0 MARCO_48_1250278529-8 100 86.060756 hybrid +132_2-3 Q0 MARCO_30_1605964568-7 1 90.744622 hybrid +132_2-3 Q0 MARCO_33_1621342262-2 2 89.541372 hybrid +132_2-3 Q0 MARCO_33_1621342262-1 3 89.231522 hybrid +132_2-3 Q0 MARCO_33_1621342262-3 4 89.220422 hybrid +132_2-3 Q0 MARCO_30_1605964568-2 5 88.985822 hybrid +132_2-3 Q0 MARCO_30_1605964568-1 6 88.917322 hybrid +132_2-3 Q0 MARCO_30_1605964568-4 7 88.663672 hybrid +132_2-3 Q0 MARCO_30_1605964568-5 8 88.217222 hybrid +132_2-3 Q0 MARCO_30_1605964568-8 9 88.139422 hybrid +132_2-3 Q0 MARCO_30_1666412630-2 10 88.090272 hybrid +132_2-3 Q0 MARCO_30_1605964568-6 11 88.035022 hybrid +132_2-3 Q0 MARCO_49_1661153621-14 12 87.971722 hybrid +132_2-3 Q0 MARCO_30_1666412630-3 13 87.935272 hybrid +132_2-3 Q0 MARCO_36_998866032-5 14 87.786115 hybrid +132_2-3 Q0 MARCO_25_45997789-14 15 87.727072 hybrid +132_2-3 Q0 MARCO_30_779802445-3 16 87.724872 hybrid +132_2-3 Q0 MARCO_16_3117875026-6 17 87.703222 hybrid +132_2-3 Q0 MARCO_25_930663772-11 18 87.694522 hybrid +132_2-3 Q0 MARCO_06_609309883-1 19 87.664022 hybrid +132_2-3 Q0 MARCO_30_1605964568-3 20 87.614772 hybrid +132_2-3 Q0 MARCO_14_1855504797-24 21 87.600172 hybrid +132_2-3 Q0 MARCO_18_2668676154-15 22 87.597772 hybrid +132_2-3 Q0 MARCO_16_3117875026-7 23 87.554072 hybrid +132_2-3 Q0 MARCO_53_563960895-42 24 87.522822 hybrid +132_2-3 Q0 MARCO_06_763073632-16 25 87.513322 hybrid +132_2-3 Q0 MARCO_44_1395908402-11 26 87.472622 hybrid +132_2-3 Q0 MARCO_01_1149432350-29 27 87.416772 hybrid +132_2-3 Q0 MARCO_30_1666378518-18 28 87.407222 hybrid +132_2-3 Q0 MARCO_43_580627738-2 29 87.404872 hybrid +132_2-3 Q0 MARCO_30_1783142864-2 30 87.376872 hybrid +132_2-3 Q0 MARCO_16_1458944068-6 31 87.352872 hybrid +132_2-3 Q0 MARCO_16_3117875026-5 32 87.344322 hybrid +132_2-3 Q0 MARCO_47_1576529973-5 33 87.342272 hybrid +132_2-3 Q0 MARCO_22_328980077-1 34 87.340272 hybrid +132_2-3 Q0 MARCO_39_1675559276-1 35 87.321272 hybrid +132_2-3 Q0 MARCO_16_3117875026-1 36 87.320772 hybrid +132_2-3 Q0 MARCO_47_589780824-2 37 87.317972 hybrid +132_2-3 Q0 MARCO_53_563960895-33 38 87.317971 hybrid +132_2-3 Q0 MARCO_56_505348785-6 39 87.294004 hybrid +132_2-3 Q0 MARCO_57_1276848320-4 40 87.282922 hybrid +132_2-3 Q0 MARCO_02_1096783254-1 41 87.279122 hybrid +132_2-3 Q0 MARCO_55_296706312-6 42 87.253922 hybrid +132_2-3 Q0 MARCO_09_502073571-2 43 87.232872 hybrid +132_2-3 Q0 MARCO_39_824983034-1 44 87.210872 hybrid +132_2-3 Q0 MARCO_04_659842335-1 45 87.198122 hybrid +132_2-3 Q0 MARCO_03_1597279726-3 46 87.187272 hybrid +132_2-3 Q0 MARCO_27_1346500056-5 47 87.149072 hybrid +132_2-3 Q0 MARCO_22_170610519-4 48 87.144172 hybrid +132_2-3 Q0 MARCO_33_1173952067-7 49 87.135022 hybrid +132_2-3 Q0 MARCO_00_1699330259-624 50 87.128922 hybrid +132_2-3 Q0 MARCO_03_1615894972-1 51 87.126422 hybrid +132_2-3 Q0 MARCO_13_560938311-7 52 87.126272 hybrid +132_2-3 Q0 MARCO_21_749822518-27 53 87.112676 hybrid +132_2-3 Q0 MARCO_00_174504672-7 54 87.111072 hybrid +132_2-3 Q0 MARCO_39_8636-2 55 87.111022 hybrid +132_2-3 Q0 MARCO_03_1595515215-2 56 87.094572 hybrid +132_2-3 Q0 KILT_1374927-8 57 87.082868 hybrid +132_2-3 Q0 MARCO_01_1210361281-2 58 87.074772 hybrid +132_2-3 Q0 MARCO_20_1577360890-37 59 87.072217 hybrid +132_2-3 Q0 MARCO_03_1603438469-4 60 87.065672 hybrid +132_2-3 Q0 MARCO_03_581040387-5 61 87.065183 hybrid +132_2-3 Q0 KILT_2435914-14 62 87.056921 hybrid +132_2-3 Q0 MARCO_39_1692133770-1 63 87.055072 hybrid +132_2-3 Q0 MARCO_57_1418474294-5 64 87.051772 hybrid +132_2-3 Q0 MARCO_16_2842973389-68 65 87.049822 hybrid +132_2-3 Q0 MARCO_56_1312772055-11 66 87.045660 hybrid +132_2-3 Q0 MARCO_51_1727411905-46 67 87.043394 hybrid +132_2-3 Q0 MARCO_00_1001647173-3 68 87.043272 hybrid +132_2-3 Q0 MARCO_43_777920951-5 69 87.041540 hybrid +132_2-3 Q0 MARCO_51_146377827-1 70 87.041172 hybrid +132_2-3 Q0 MARCO_52_37032738-13 71 87.038772 hybrid +132_2-3 Q0 MARCO_25_92086404-1 72 87.037722 hybrid +132_2-3 Q0 MARCO_20_123501552-4 73 87.030172 hybrid +132_2-3 Q0 MARCO_16_3117875026-2 74 87.027522 hybrid +132_2-3 Q0 MARCO_43_777920951-1 75 87.020177 hybrid +132_2-3 Q0 MARCO_08_477154067-9 76 87.017822 hybrid +132_2-3 Q0 MARCO_34_37630493-6 77 87.017293 hybrid +132_2-3 Q0 MARCO_05_1294788900-1 78 87.009022 hybrid +132_2-3 Q0 MARCO_01_1644989167-3 79 87.008779 hybrid +132_2-3 Q0 MARCO_16_2411634799-25 80 87.006972 hybrid +132_2-3 Q0 MARCO_39_8636-1 81 87.000322 hybrid +132_2-3 Q0 KILT_4638069-8 82 86.995473 hybrid +132_2-3 Q0 MARCO_52_62728092-4 83 86.980122 hybrid +132_2-3 Q0 MARCO_22_1645284806-32 84 86.976263 hybrid +132_2-3 Q0 MARCO_44_1717482549-152 85 86.969122 hybrid +132_2-3 Q0 MARCO_16_17123436-19 86 86.968472 hybrid +132_2-3 Q0 MARCO_27_1256377180-148 87 86.962972 hybrid +132_2-3 Q0 MARCO_56_1459605074-4 88 86.962822 hybrid +132_2-3 Q0 MARCO_17_443322661-26 89 86.962537 hybrid +132_2-3 Q0 MARCO_19_1698929234-6 90 86.961872 hybrid +132_2-3 Q0 MARCO_30_779530381-3 91 86.953822 hybrid +132_2-3 Q0 MARCO_39_88420408-1 92 86.953122 hybrid +132_2-3 Q0 MARCO_24_1719126464-2 93 86.949705 hybrid +132_2-3 Q0 MARCO_56_58162772-18 94 86.943772 hybrid +132_2-3 Q0 MARCO_16_1554292396-5 95 86.937572 hybrid +132_2-3 Q0 MARCO_41_713213597-10 96 86.930722 hybrid +132_2-3 Q0 MARCO_10_260560518-3 97 86.930341 hybrid +132_2-3 Q0 MARCO_10_262788007-29 98 86.929517 hybrid +132_2-3 Q0 KILT_40454374-5 99 86.928091 hybrid +132_2-3 Q0 MARCO_56_399018867-21 100 86.922222 hybrid +132_2-5 Q0 MARCO_27_1304139795-1 1 90.770113 hybrid +132_2-5 Q0 MARCO_30_1098599698-1 2 90.664294 hybrid +132_2-5 Q0 MARCO_02_1888161351-4 3 90.660813 hybrid +132_2-5 Q0 MARCO_39_697672749-1 4 90.557163 hybrid +132_2-5 Q0 MARCO_27_1284698706-11 5 90.345363 hybrid +132_2-5 Q0 MARCO_03_1615262363-3 6 90.337313 hybrid +132_2-5 Q0 MARCO_06_280523478-1 7 90.277663 hybrid +132_2-5 Q0 MARCO_19_603398757-16 8 90.244509 hybrid +132_2-5 Q0 MARCO_57_1511490001-7 9 90.214463 hybrid +132_2-5 Q0 MARCO_27_1309190046-22 10 90.173913 hybrid +132_2-5 Q0 KILT_46646396-11 11 90.173163 hybrid +132_2-5 Q0 MARCO_09_1146952253-2 12 90.074163 hybrid +132_2-5 Q0 MARCO_48_1373838068-2 13 90.054863 hybrid +132_2-5 Q0 KILT_56324501-4 14 90.003080 hybrid +132_2-5 Q0 MARCO_08_942952751-41 15 89.903863 hybrid +132_2-5 Q0 MARCO_00_1449441144-4 16 89.865913 hybrid +132_2-5 Q0 MARCO_16_3712560183-31 17 89.850513 hybrid +132_2-5 Q0 MARCO_03_1749016496-3 18 89.848863 hybrid +132_2-5 Q0 MARCO_36_683586993-1 19 89.842463 hybrid +132_2-5 Q0 MARCO_11_94627509-9 20 89.805813 hybrid +132_2-5 Q0 MARCO_36_1694272853-49 21 89.754463 hybrid +132_2-5 Q0 MARCO_20_1557165798-3 22 89.724213 hybrid +132_2-5 Q0 MARCO_52_180804701-9 23 89.721963 hybrid +132_2-5 Q0 MARCO_16_3677605305-6 24 89.714113 hybrid +132_2-5 Q0 KILT_37789728-1 25 89.701963 hybrid +132_2-5 Q0 KILT_10865637-1 26 89.688563 hybrid +132_2-5 Q0 MARCO_20_1115125642-10 27 89.663829 hybrid +132_2-5 Q0 MARCO_48_1188743878-4 28 89.662684 hybrid +132_2-5 Q0 MARCO_36_684454813-1 29 89.597913 hybrid +132_2-5 Q0 MARCO_41_430042154-8 30 89.596263 hybrid +132_2-5 Q0 MARCO_11_760134771-29 31 89.587130 hybrid +132_2-5 Q0 MARCO_20_1557298483-6 32 89.553613 hybrid +132_2-5 Q0 MARCO_36_683727975-1 33 89.529013 hybrid +132_2-5 Q0 MARCO_53_562106675-2 34 89.515863 hybrid +132_2-5 Q0 MARCO_17_540926637-11 35 89.497613 hybrid +132_2-5 Q0 MARCO_23_441978206-2 36 89.494613 hybrid +132_2-5 Q0 MARCO_41_430457724-17 37 89.479313 hybrid +132_2-5 Q0 MARCO_20_1557165798-1 38 89.448763 hybrid +132_2-5 Q0 MARCO_49_394119859-3 39 89.446663 hybrid +132_2-5 Q0 MARCO_58_1510026052-2 40 89.436613 hybrid +132_2-5 Q0 MARCO_04_1490023419-25 41 89.434662 hybrid +132_2-5 Q0 MARCO_56_133605325-9 42 89.430163 hybrid +132_2-5 Q0 MARCO_20_1115184668-9 43 89.403559 hybrid +132_2-5 Q0 MARCO_36_685072360-5 44 89.401963 hybrid +132_2-5 Q0 MARCO_18_468435703-18 45 89.384303 hybrid +132_2-5 Q0 MARCO_02_1888161351-3 46 89.380413 hybrid +132_2-5 Q0 KILT_59469035-3 47 89.364813 hybrid +132_2-5 Q0 MARCO_50_1712782740-16 48 89.364413 hybrid +132_2-5 Q0 MARCO_39_1701351680-10 49 89.361663 hybrid +132_2-5 Q0 MARCO_47_1565625301-6 50 89.359113 hybrid +132_2-5 Q0 MARCO_03_254326605-5 51 89.357367 hybrid +132_2-5 Q0 MARCO_36_1075906546-17 52 89.351463 hybrid +132_2-5 Q0 MARCO_25_594269445-2 53 89.350163 hybrid +132_2-5 Q0 MARCO_20_1115463572-5 54 89.336163 hybrid +132_2-5 Q0 MARCO_20_1691433948-13 55 89.332400 hybrid +132_2-5 Q0 MARCO_57_906315590-6 56 89.331763 hybrid +132_2-5 Q0 MARCO_24_1882628648-16 57 89.326063 hybrid +132_2-5 Q0 MARCO_05_1973567197-3 58 89.303813 hybrid +132_2-5 Q0 MARCO_48_249024903-5 59 89.289563 hybrid +132_2-5 Q0 MARCO_36_1481110015-1 60 89.281813 hybrid +132_2-5 Q0 KILT_47658691-4 61 89.272613 hybrid +132_2-5 Q0 MARCO_11_94813769-1 62 89.261313 hybrid +132_2-5 Q0 MARCO_10_407401044-1 63 89.250963 hybrid +132_2-5 Q0 MARCO_39_963205301-3 64 89.242813 hybrid +132_2-5 Q0 MARCO_00_1007615247-2 65 89.240263 hybrid +132_2-5 Q0 MARCO_19_607425738-12 66 89.234149 hybrid +132_2-5 Q0 MARCO_22_1644883624-37 67 89.234080 hybrid +132_2-5 Q0 MARCO_47_1509828693-5 68 89.233413 hybrid +132_2-5 Q0 KILT_2649947-23 69 89.228022 hybrid +132_2-5 Q0 MARCO_03_1216674960-2 70 89.224313 hybrid +132_2-5 Q0 MARCO_43_329828458-5 71 89.216433 hybrid +132_2-5 Q0 MARCO_01_1196988925-2 72 89.214913 hybrid +132_2-5 Q0 MARCO_15_1835591157-5 73 89.211513 hybrid +132_2-5 Q0 MARCO_31_708382670-3 74 89.206113 hybrid +132_2-5 Q0 MARCO_08_1188635018-4 75 89.201413 hybrid +132_2-5 Q0 MARCO_48_1250740998-5 76 89.200213 hybrid +132_2-5 Q0 MARCO_57_1273705428-4 77 89.199938 hybrid +132_2-5 Q0 MARCO_26_1862745493-1 78 89.196113 hybrid +132_2-5 Q0 MARCO_10_262845096-2 79 89.195231 hybrid +132_2-5 Q0 MARCO_51_1903558454-38 80 89.194087 hybrid +132_2-5 Q0 MARCO_16_2206326968-16 81 89.192363 hybrid +132_2-5 Q0 MARCO_09_279622102-25 82 89.190513 hybrid +132_2-5 Q0 MARCO_02_835286854-8 83 89.186930 hybrid +132_2-5 Q0 MARCO_25_404067505-4 84 89.184813 hybrid +132_2-5 Q0 MARCO_21_1145909333-15 85 89.184413 hybrid +132_2-5 Q0 MARCO_40_1648684090-103 86 89.177313 hybrid +132_2-5 Q0 MARCO_28_16370355-6 87 89.174663 hybrid +132_2-5 Q0 MARCO_47_1568568990-15 88 89.164013 hybrid +132_2-5 Q0 MARCO_13_436616963-1 89 89.157292 hybrid +132_2-5 Q0 MARCO_26_889685738-1 90 89.152213 hybrid +132_2-5 Q0 KILT_12728109-17 91 89.151163 hybrid +132_2-5 Q0 MARCO_16_3677905910-1 92 89.142113 hybrid +132_2-5 Q0 MARCO_44_520721555-11 93 89.141913 hybrid +132_2-5 Q0 MARCO_55_586239888-2 94 89.139663 hybrid +132_2-5 Q0 MARCO_28_436713620-14 95 89.136630 hybrid +132_2-5 Q0 KILT_22418684-4 96 89.136063 hybrid +132_2-5 Q0 MARCO_41_430123399-4 97 89.133913 hybrid +132_2-5 Q0 MARCO_06_1659256944-4 98 89.123863 hybrid +132_2-5 Q0 MARCO_17_540697694-9 99 89.118413 hybrid +132_2-5 Q0 MARCO_19_603398757-15 100 89.115817 hybrid +132_2-7 Q0 MARCO_48_1250278529-4 1 92.270928 hybrid +132_2-7 Q0 MARCO_56_506900502-5 2 91.875253 hybrid +132_2-7 Q0 MARCO_28_436713620-13 3 91.863908 hybrid +132_2-7 Q0 MARCO_10_260560518-1 4 91.737732 hybrid +132_2-7 Q0 MARCO_29_1330386075-24 5 91.729602 hybrid +132_2-7 Q0 MARCO_48_1251187189-20 6 91.585479 hybrid +132_2-7 Q0 MARCO_31_644392863-2 7 91.574254 hybrid +132_2-7 Q0 MARCO_17_434176964-58 8 91.360608 hybrid +132_2-7 Q0 MARCO_25_570836921-8 9 91.337329 hybrid +132_2-7 Q0 MARCO_10_1485046460-4 10 91.314729 hybrid +132_2-7 Q0 KILT_5042951-28 11 91.258629 hybrid +132_2-7 Q0 MARCO_22_1644883624-32 12 91.150229 hybrid +132_2-7 Q0 MARCO_10_262743620-2 13 91.084609 hybrid +132_2-7 Q0 KILT_57395175-2 14 91.066078 hybrid +132_2-7 Q0 MARCO_10_260560518-2 15 91.046841 hybrid +132_2-7 Q0 MARCO_44_729349767-5 16 91.026129 hybrid +132_2-7 Q0 MARCO_40_512692206-2 17 91.021429 hybrid +132_2-7 Q0 MARCO_10_1485053201-8 18 90.933578 hybrid +132_2-7 Q0 MARCO_10_262736749-1 19 90.932792 hybrid +132_2-7 Q0 MARCO_48_1250203503-1 20 90.859828 hybrid +132_2-7 Q0 MARCO_58_1622002836-9 21 90.855029 hybrid +132_2-7 Q0 MARCO_04_858408112-35 22 90.843128 hybrid +132_2-7 Q0 MARCO_30_1666507691-5 23 90.836278 hybrid +132_2-7 Q0 MARCO_36_998866032-4 24 90.832271 hybrid +132_2-7 Q0 MARCO_48_1250272123-1 25 90.806729 hybrid +132_2-7 Q0 MARCO_10_262743620-5 26 90.771689 hybrid +132_2-7 Q0 MARCO_56_483182748-81 27 90.742979 hybrid +132_2-7 Q0 MARCO_30_1556961512-10 28 90.741929 hybrid +132_2-7 Q0 MARCO_35_679828792-4 29 90.738729 hybrid +132_2-7 Q0 MARCO_10_262751953-7 30 90.729209 hybrid +132_2-7 Q0 MARCO_10_1485046460-1 31 90.681329 hybrid +132_2-7 Q0 MARCO_48_1251187189-3 32 90.677879 hybrid +132_2-7 Q0 MARCO_44_1640998791-464 33 90.627429 hybrid +132_2-7 Q0 MARCO_54_1561992811-3 34 90.624729 hybrid +132_2-7 Q0 MARCO_10_262743620-6 35 90.612531 hybrid +132_2-7 Q0 MARCO_52_62556199-3 36 90.551129 hybrid +132_2-7 Q0 MARCO_10_262743620-4 37 90.548732 hybrid +132_2-7 Q0 MARCO_58_1530276786-3 38 90.543179 hybrid +132_2-7 Q0 MARCO_25_570836921-3 39 90.524029 hybrid +132_2-7 Q0 MARCO_48_1250292652-1 40 90.519679 hybrid +132_2-7 Q0 MARCO_03_580354882-8 41 90.519324 hybrid +132_2-7 Q0 MARCO_48_1250278529-1 42 90.505279 hybrid +132_2-7 Q0 MARCO_36_998866032-5 43 90.475294 hybrid +132_2-7 Q0 MARCO_25_568549484-3 44 90.452779 hybrid +132_2-7 Q0 MARCO_16_3676861391-42 45 90.448479 hybrid +132_2-7 Q0 MARCO_36_685402135-5 46 90.424929 hybrid +132_2-7 Q0 MARCO_19_1315433990-27 47 90.399429 hybrid +132_2-7 Q0 MARCO_19_266473698-5 48 90.396325 hybrid +132_2-7 Q0 KILT_30820783-7 49 90.379112 hybrid +132_2-7 Q0 MARCO_25_570836921-6 50 90.345028 hybrid +132_2-7 Q0 MARCO_48_1439242324-4 51 90.326529 hybrid +132_2-7 Q0 MARCO_48_1250203503-6 52 90.314779 hybrid +132_2-7 Q0 KILT_38740911-6 53 90.277579 hybrid +132_2-7 Q0 MARCO_39_196501676-20 54 90.237679 hybrid +132_2-7 Q0 MARCO_19_1315433990-6 55 90.234279 hybrid +132_2-7 Q0 KILT_16775-22 56 90.217928 hybrid +132_2-7 Q0 MARCO_17_2570244818-7 57 90.200679 hybrid +132_2-7 Q0 MARCO_35_907416300-8 58 90.178129 hybrid +132_2-7 Q0 MARCO_44_704159098-4 59 90.170228 hybrid +132_2-7 Q0 MARCO_48_1250278529-2 60 90.159829 hybrid +132_2-7 Q0 KILT_30242372-11 61 90.148029 hybrid +132_2-7 Q0 MARCO_48_1250278529-3 62 90.127179 hybrid +132_2-7 Q0 KILT_40454374-5 63 90.100829 hybrid +132_2-7 Q0 MARCO_45_1164371334-4 64 90.097979 hybrid +132_2-7 Q0 MARCO_55_1295078458-4 65 90.097978 hybrid +132_2-7 Q0 MARCO_19_204123815-9 66 90.097329 hybrid +132_2-7 Q0 MARCO_54_1716269004-87 67 90.096329 hybrid +132_2-7 Q0 MARCO_03_365124566-7 68 90.062329 hybrid +132_2-7 Q0 MARCO_10_260560518-7 69 90.058104 hybrid +132_2-7 Q0 KILT_8149492-16 70 90.053579 hybrid +132_2-7 Q0 MARCO_18_1270013948-16 71 90.049428 hybrid +132_2-7 Q0 MARCO_58_1481665100-3 72 90.047579 hybrid +132_2-7 Q0 MARCO_54_276512227-10 73 90.026479 hybrid +132_2-7 Q0 MARCO_54_1561920573-8 74 90.025779 hybrid +132_2-7 Q0 MARCO_36_1484861419-2 75 90.019529 hybrid +132_2-7 Q0 MARCO_48_1188743878-7 76 90.005071 hybrid +132_2-7 Q0 MARCO_01_1204383453-2 77 90.002929 hybrid +132_2-7 Q0 MARCO_16_2116262142-15 78 89.994328 hybrid +132_2-7 Q0 KILT_19258753-36 79 89.972878 hybrid +132_2-7 Q0 MARCO_19_266473698-30 80 89.966015 hybrid +132_2-7 Q0 KILT_32769825-44 81 89.954679 hybrid +132_2-7 Q0 MARCO_13_1455142607-13 82 89.952379 hybrid +132_2-7 Q0 KILT_31898-2 83 89.940329 hybrid +132_2-7 Q0 MARCO_48_1250203503-2 84 89.933479 hybrid +132_2-7 Q0 MARCO_34_276845054-80 85 89.927829 hybrid +132_2-7 Q0 MARCO_44_1640998791-461 86 89.923429 hybrid +132_2-7 Q0 KILT_41793940-2 87 89.917929 hybrid +132_2-7 Q0 MARCO_18_1270178471-4 88 89.900629 hybrid +132_2-7 Q0 MARCO_44_1640998791-66 89 89.894329 hybrid +132_2-7 Q0 MARCO_35_1781241146-17 90 89.891028 hybrid +132_2-7 Q0 KILT_16913583-9 91 89.884479 hybrid +132_2-7 Q0 MARCO_18_1270013948-20 92 89.879679 hybrid +132_2-7 Q0 MARCO_03_236978373-2 93 89.873528 hybrid +132_2-7 Q0 MARCO_48_1251187189-1 94 89.871929 hybrid +132_2-7 Q0 KILT_27179299-6 95 89.868928 hybrid +132_2-7 Q0 MARCO_19_266473698-26 96 89.864483 hybrid +132_2-7 Q0 KILT_30242372-12 97 89.863929 hybrid +132_2-7 Q0 MARCO_48_1251187189-10 98 89.858629 hybrid +132_2-7 Q0 KILT_54199706-18 99 89.853128 hybrid +132_2-7 Q0 MARCO_10_1485033393-2 100 89.851779 hybrid +132_2-9 Q0 MARCO_33_1621342262-1 1 89.703318 hybrid +132_2-9 Q0 MARCO_17_4116009428-5 2 89.419246 hybrid +132_2-9 Q0 MARCO_17_4116009428-7 3 89.419245 hybrid +132_2-9 Q0 MARCO_17_4116009428-9 4 89.419245 hybrid +132_2-9 Q0 MARCO_33_1621342262-2 5 88.803867 hybrid +132_2-9 Q0 MARCO_30_1605964568-1 6 88.698267 hybrid +132_2-9 Q0 MARCO_16_3117875026-6 7 88.493467 hybrid +132_2-9 Q0 MARCO_30_1605964568-2 8 88.366867 hybrid +132_2-9 Q0 MARCO_30_1605964568-8 9 88.366017 hybrid +132_2-9 Q0 MARCO_30_1605964568-5 10 88.349017 hybrid +132_2-9 Q0 MARCO_16_3117875026-5 11 88.321967 hybrid +132_2-9 Q0 MARCO_30_1605964568-6 12 88.247167 hybrid +132_2-9 Q0 MARCO_16_3117875026-1 13 88.072767 hybrid +132_2-9 Q0 MARCO_39_8636-1 14 87.901417 hybrid +132_2-9 Q0 MARCO_39_1740604538-5 15 87.850388 hybrid +132_2-9 Q0 MARCO_39_8636-2 16 87.834117 hybrid +132_2-9 Q0 MARCO_30_1605964568-7 17 87.646967 hybrid +132_2-9 Q0 MARCO_16_3130933251-9 18 87.487867 hybrid +132_2-9 Q0 MARCO_08_477154067-9 19 87.459667 hybrid +132_2-9 Q0 MARCO_55_296706312-6 20 87.405417 hybrid +132_2-9 Q0 MARCO_33_1621342262-3 21 87.346267 hybrid +132_2-9 Q0 MARCO_39_1692133770-1 22 87.281167 hybrid +132_2-9 Q0 MARCO_16_3117875026-2 23 87.239967 hybrid +132_2-9 Q0 MARCO_57_1474727268-1 24 87.211267 hybrid +132_2-9 Q0 MARCO_30_1605964568-4 25 87.175517 hybrid +132_2-9 Q0 MARCO_30_1666412630-2 26 87.119817 hybrid +132_2-9 Q0 KILT_37081258-2 27 87.094067 hybrid +132_2-9 Q0 MARCO_30_1666754153-2 28 87.061267 hybrid +132_2-9 Q0 MARCO_52_1749976642-2 29 87.053067 hybrid +132_2-9 Q0 MARCO_36_998866032-5 30 87.052467 hybrid +132_2-9 Q0 MARCO_27_1574256585-1 31 87.033817 hybrid +132_2-9 Q0 MARCO_06_1812531076-5 32 87.003867 hybrid +132_2-9 Q0 MARCO_16_3117875026-7 33 86.988767 hybrid +132_2-9 Q0 MARCO_41_713213597-10 34 86.817617 hybrid +132_2-9 Q0 MARCO_57_1276848320-4 35 86.800617 hybrid +132_2-9 Q0 MARCO_06_1812500138-7 36 86.777417 hybrid +132_2-9 Q0 MARCO_16_2411634799-25 37 86.753017 hybrid +132_2-9 Q0 MARCO_43_580627738-2 38 86.660167 hybrid +132_2-9 Q0 MARCO_30_1605964568-3 39 86.596217 hybrid +132_2-9 Q0 MARCO_06_763073632-16 40 86.570317 hybrid +132_2-9 Q0 MARCO_16_1458944068-14 41 86.569267 hybrid +132_2-9 Q0 MARCO_43_290697563-3 42 86.565767 hybrid +132_2-9 Q0 MARCO_50_657490639-3 43 86.462217 hybrid +132_2-9 Q0 MARCO_32_233298730-7 44 86.403467 hybrid +132_2-9 Q0 MARCO_30_1666412630-3 45 86.368017 hybrid +132_2-9 Q0 MARCO_12_478606353-8 46 86.338217 hybrid +132_2-9 Q0 MARCO_43_580627738-1 47 86.337017 hybrid +132_2-9 Q0 MARCO_39_1675559276-1 48 86.302717 hybrid +132_2-9 Q0 MARCO_08_393301765-1 49 86.298267 hybrid +132_2-9 Q0 MARCO_49_1661153621-14 50 86.243217 hybrid +132_2-9 Q0 MARCO_13_1761053118-2 51 86.227494 hybrid +132_2-9 Q0 MARCO_01_1245205933-5 52 86.212517 hybrid +132_2-9 Q0 MARCO_19_203198818-32 53 86.211667 hybrid +132_2-9 Q0 MARCO_10_262751953-5 54 86.194634 hybrid +132_2-9 Q0 MARCO_09_1647522016-5 55 86.164867 hybrid +132_2-9 Q0 MARCO_16_1458944068-11 56 86.158217 hybrid +132_2-9 Q0 MARCO_55_296706312-8 57 86.146767 hybrid +132_2-9 Q0 MARCO_10_175172278-1 58 86.099917 hybrid +132_2-9 Q0 MARCO_47_1576529973-5 59 86.084767 hybrid +132_2-9 Q0 MARCO_54_1562379270-1 60 86.073717 hybrid +132_2-9 Q0 MARCO_01_1245205933-3 61 86.071267 hybrid +132_2-9 Q0 MARCO_48_1471185837-12 62 86.069717 hybrid +132_2-9 Q0 MARCO_14_310245762-4 63 86.053674 hybrid +132_2-9 Q0 MARCO_06_1812460446-34 64 86.013767 hybrid +132_2-9 Q0 MARCO_35_1328253675-3 65 86.004317 hybrid +132_2-9 Q0 MARCO_28_80782241-29 66 85.966617 hybrid +132_2-9 Q0 MARCO_16_1458944068-6 67 85.955067 hybrid +132_2-9 Q0 MARCO_32_233298730-8 68 85.889317 hybrid +132_2-9 Q0 MARCO_10_262751953-14 69 85.840486 hybrid +132_2-9 Q0 MARCO_18_2151603028-61 70 85.832267 hybrid +132_2-9 Q0 MARCO_54_1562379270-3 71 85.829317 hybrid +132_2-9 Q0 MARCO_14_1855504797-25 72 85.822467 hybrid +132_2-9 Q0 MARCO_34_7237163-1 73 85.778267 hybrid +132_2-9 Q0 MARCO_41_718961219-4 74 85.742017 hybrid +132_2-9 Q0 MARCO_19_203198818-34 75 85.721917 hybrid +132_2-9 Q0 MARCO_18_2151603028-33 76 85.668617 hybrid +132_2-9 Q0 MARCO_39_1583926806-10 77 85.668617 hybrid +132_2-9 Q0 MARCO_43_354734750-13 78 85.668616 hybrid +132_2-9 Q0 MARCO_52_62728092-4 79 85.668616 hybrid +132_2-9 Q0 MARCO_53_112499981-3 80 85.668615 hybrid +132_2-9 Q0 MARCO_15_137349888-7 81 85.661675 hybrid +132_2-9 Q0 MARCO_16_1554292396-5 82 85.616467 hybrid +132_2-9 Q0 MARCO_57_1276435686-4 83 85.616467 hybrid +132_2-9 Q0 MARCO_19_2484932551-34 84 85.599917 hybrid +132_2-9 Q0 MARCO_19_2486544974-34 85 85.599917 hybrid +132_2-9 Q0 MARCO_19_2510994380-22 86 85.599916 hybrid +132_2-9 Q0 KILT_7723713-2 87 85.588365 hybrid +132_2-9 Q0 MARCO_09_502073571-2 88 85.576067 hybrid +132_2-9 Q0 MARCO_05_1108545519-2 89 85.565467 hybrid +132_2-9 Q0 MARCO_18_2668676154-15 90 85.565467 hybrid +132_2-9 Q0 MARCO_32_119318134-3 91 85.565466 hybrid +132_2-9 Q0 MARCO_36_547706359-3 92 85.565466 hybrid +132_2-9 Q0 MARCO_19_2481922798-29 93 85.548517 hybrid +132_2-9 Q0 MARCO_19_2496718831-25 94 85.548517 hybrid +132_2-9 Q0 MARCO_19_2497924734-27 95 85.548516 hybrid +132_2-9 Q0 MARCO_19_2509836341-27 96 85.548516 hybrid +132_2-9 Q0 MARCO_30_1508437232-4 97 85.545567 hybrid +132_2-9 Q0 MARCO_06_609309883-1 98 85.541967 hybrid +132_2-9 Q0 MARCO_54_214915112-11 99 85.515067 hybrid +132_2-9 Q0 MARCO_08_1018325778-1 100 85.498267 hybrid +132_3-1 Q0 MARCO_19_266473698-6 1 96.787719 hybrid +132_3-1 Q0 MARCO_19_266473698-67 2 95.966843 hybrid +132_3-1 Q0 MARCO_19_266473698-20 3 95.896466 hybrid +132_3-1 Q0 MARCO_19_266473698-1 4 95.801303 hybrid +132_3-1 Q0 KILT_52992307-3 5 95.567307 hybrid +132_3-1 Q0 MARCO_19_266473698-39 6 95.446034 hybrid +132_3-1 Q0 MARCO_19_266473698-29 7 95.057166 hybrid +132_3-1 Q0 MARCO_19_2040255855-9 8 94.940527 hybrid +132_3-1 Q0 MARCO_19_266473698-27 9 94.782798 hybrid +132_3-1 Q0 MARCO_19_266473698-56 10 94.734698 hybrid +132_3-1 Q0 MARCO_00_1330634246-2 11 94.449916 hybrid +132_3-1 Q0 MARCO_19_266473698-65 12 94.373117 hybrid +132_3-1 Q0 MARCO_18_1573315574-26 13 94.261716 hybrid +132_3-1 Q0 MARCO_19_266473698-28 14 94.229419 hybrid +132_3-1 Q0 MARCO_48_114247267-1 15 94.143516 hybrid +132_3-1 Q0 MARCO_42_1366117883-9 16 94.126813 hybrid +132_3-1 Q0 MARCO_04_644766581-1 17 94.108365 hybrid +132_3-1 Q0 MARCO_04_659842335-1 18 94.056465 hybrid +132_3-1 Q0 KILT_54199706-4 19 94.051466 hybrid +132_3-1 Q0 MARCO_19_266473698-62 20 94.009580 hybrid +132_3-1 Q0 MARCO_44_729349767-6 21 93.946066 hybrid +132_3-1 Q0 MARCO_25_1173147974-1 22 93.926266 hybrid +132_3-1 Q0 MARCO_36_967104724-2 23 93.873615 hybrid +132_3-1 Q0 MARCO_48_1251187189-4 24 93.837915 hybrid +132_3-1 Q0 MARCO_19_266473698-9 25 93.833674 hybrid +132_3-1 Q0 MARCO_19_266473698-37 26 93.817457 hybrid +132_3-1 Q0 KILT_11914121-23 27 93.815001 hybrid +132_3-1 Q0 MARCO_19_266473698-35 28 93.782995 hybrid +132_3-1 Q0 KILT_54199706-1 29 93.774566 hybrid +132_3-1 Q0 MARCO_19_266473698-52 30 93.739033 hybrid +132_3-1 Q0 MARCO_19_266473698-48 31 93.731511 hybrid +132_3-1 Q0 MARCO_12_587015892-10 32 93.693712 hybrid +132_3-1 Q0 MARCO_19_266473698-22 33 93.693646 hybrid +132_3-1 Q0 MARCO_19_266473698-23 34 93.646235 hybrid +132_3-1 Q0 MARCO_19_266473698-42 35 93.633944 hybrid +132_3-1 Q0 MARCO_19_266473698-8 36 93.597264 hybrid +132_3-1 Q0 MARCO_19_266473698-25 37 93.576757 hybrid +132_3-1 Q0 MARCO_19_266473698-21 38 93.508870 hybrid +132_3-1 Q0 MARCO_48_1251187189-1 39 93.506166 hybrid +132_3-1 Q0 MARCO_19_266473698-36 40 93.493079 hybrid +132_3-1 Q0 MARCO_19_266473698-31 41 93.490605 hybrid +132_3-1 Q0 KILT_50284451-4 42 93.489916 hybrid +132_3-1 Q0 MARCO_52_56044289-1 43 93.489615 hybrid +132_3-1 Q0 MARCO_19_217252192-2 44 93.468016 hybrid +132_3-1 Q0 KILT_54199706-25 45 93.450815 hybrid +132_3-1 Q0 MARCO_38_1434326681-9 46 93.436616 hybrid +132_3-1 Q0 MARCO_48_1251187189-25 47 93.427265 hybrid +132_3-1 Q0 MARCO_35_1435664725-3 48 93.421165 hybrid +132_3-1 Q0 MARCO_04_858408112-35 49 93.374948 hybrid +132_3-1 Q0 KILT_8149492-18 50 93.321872 hybrid +132_3-1 Q0 MARCO_44_1640998791-469 51 93.281566 hybrid +132_3-1 Q0 KILT_54199706-24 52 93.237266 hybrid +132_3-1 Q0 MARCO_23_146815887-8 53 93.213265 hybrid +132_3-1 Q0 MARCO_17_4282412444-6 54 93.204816 hybrid +132_3-1 Q0 MARCO_18_4370096812-13 55 93.190014 hybrid +132_3-1 Q0 MARCO_19_266473698-76 56 93.184104 hybrid +132_3-1 Q0 MARCO_19_266473698-3 57 93.183970 hybrid +132_3-1 Q0 MARCO_19_266473698-2 58 93.182854 hybrid +132_3-1 Q0 MARCO_19_266473698-34 59 93.077269 hybrid +132_3-1 Q0 KILT_54199706-18 60 93.044465 hybrid +132_3-1 Q0 KILT_10658546-3 61 93.043666 hybrid +132_3-1 Q0 MARCO_48_624646140-3 62 93.028453 hybrid +132_3-1 Q0 MARCO_19_266473698-7 63 93.019492 hybrid +132_3-1 Q0 MARCO_17_2540112783-13 64 92.996415 hybrid +132_3-1 Q0 MARCO_25_525980938-4 65 92.984715 hybrid +132_3-1 Q0 MARCO_19_723620082-16 66 92.937065 hybrid +132_3-1 Q0 KILT_947442-14 67 92.891516 hybrid +132_3-1 Q0 MARCO_17_1136196611-110 68 92.879815 hybrid +132_3-1 Q0 KILT_54904387-1 69 92.864615 hybrid +132_3-1 Q0 MARCO_19_266412467-24 70 92.853355 hybrid +132_3-1 Q0 MARCO_28_283614502-17 71 92.833764 hybrid +132_3-1 Q0 MARCO_18_2020502941-27 72 92.820565 hybrid +132_3-1 Q0 MARCO_57_180498497-1 73 92.809316 hybrid +132_3-1 Q0 MARCO_23_146815887-5 74 92.808215 hybrid +132_3-1 Q0 MARCO_19_266473698-30 75 92.798162 hybrid +132_3-1 Q0 MARCO_06_545235022-2 76 92.788865 hybrid +132_3-1 Q0 KILT_8164174-8 77 92.764866 hybrid +132_3-1 Q0 KILT_54146186-6 78 92.723366 hybrid +132_3-1 Q0 KILT_54592743-1 79 92.661865 hybrid +132_3-1 Q0 MARCO_43_336424836-1 80 92.618465 hybrid +132_3-1 Q0 MARCO_04_659842335-3 81 92.588666 hybrid +132_3-1 Q0 MARCO_35_1435664725-1 82 92.568815 hybrid +132_3-1 Q0 MARCO_48_1440485436-1 83 92.562466 hybrid +132_3-1 Q0 MARCO_19_208102285-9 84 92.550816 hybrid +132_3-1 Q0 MARCO_19_266473698-10 85 92.540830 hybrid +132_3-1 Q0 MARCO_19_266473698-32 86 92.511992 hybrid +132_3-1 Q0 MARCO_17_2892247435-19 87 92.510323 hybrid +132_3-1 Q0 MARCO_17_296744806-228 88 92.452765 hybrid +132_3-1 Q0 MARCO_50_2146436541-112 89 92.449220 hybrid +132_3-1 Q0 MARCO_16_1552729738-8 90 92.435116 hybrid +132_3-1 Q0 MARCO_19_266473698-49 91 92.414473 hybrid +132_3-1 Q0 MARCO_19_266473698-12 92 92.407165 hybrid +132_3-1 Q0 MARCO_17_4572861826-10 93 92.403066 hybrid +132_3-1 Q0 MARCO_19_266473698-26 94 92.386823 hybrid +132_3-1 Q0 MARCO_19_266473698-66 95 92.368103 hybrid +132_3-1 Q0 MARCO_19_266473698-77 96 92.363783 hybrid +132_3-1 Q0 MARCO_17_3384341227-11 97 92.349866 hybrid +132_3-1 Q0 MARCO_19_266412467-6 98 92.341089 hybrid +132_3-1 Q0 MARCO_04_858408112-36 99 92.313356 hybrid +132_3-1 Q0 MARCO_16_4207755409-6 100 92.306215 hybrid +132_3-3 Q0 MARCO_19_2040255855-9 1 94.238818 hybrid +132_3-3 Q0 MARCO_18_1573315574-26 2 93.110768 hybrid +132_3-3 Q0 MARCO_19_266473698-6 3 93.011617 hybrid +132_3-3 Q0 MARCO_57_648233286-4 4 92.905869 hybrid +132_3-3 Q0 MARCO_48_624646140-3 5 92.755759 hybrid +132_3-3 Q0 MARCO_04_644766581-1 6 92.498068 hybrid +132_3-3 Q0 MARCO_36_967104724-2 7 92.232818 hybrid +132_3-3 Q0 KILT_54199706-4 8 92.131269 hybrid +132_3-3 Q0 KILT_52233943-22 9 92.061558 hybrid +132_3-3 Q0 MARCO_48_1440485436-1 10 92.047118 hybrid +132_3-3 Q0 MARCO_19_266473698-51 11 91.967516 hybrid +132_3-3 Q0 MARCO_25_1173147974-1 12 91.943918 hybrid +132_3-3 Q0 MARCO_42_1366117883-9 13 91.888604 hybrid +132_3-3 Q0 MARCO_37_1226477362-26 14 91.886294 hybrid +132_3-3 Q0 KILT_47290767-25 15 91.881468 hybrid +132_3-3 Q0 MARCO_19_266473698-27 16 91.806966 hybrid +132_3-3 Q0 MARCO_19_2506731168-6 17 91.787166 hybrid +132_3-3 Q0 MARCO_19_266473698-20 18 91.761133 hybrid +132_3-3 Q0 MARCO_35_1435664725-3 19 91.750168 hybrid +132_3-3 Q0 MARCO_19_266473698-1 20 91.740110 hybrid +132_3-3 Q0 MARCO_38_1434326681-9 21 91.716568 hybrid +132_3-3 Q0 MARCO_04_858408112-34 22 91.708938 hybrid +132_3-3 Q0 MARCO_44_1640998791-470 23 91.694218 hybrid +132_3-3 Q0 MARCO_48_1251187189-4 24 91.630868 hybrid +132_3-3 Q0 MARCO_58_1481665100-4 25 91.621468 hybrid +132_3-3 Q0 MARCO_19_266473698-7 26 91.619189 hybrid +132_3-3 Q0 MARCO_19_266473698-8 27 91.617671 hybrid +132_3-3 Q0 MARCO_19_266473698-67 28 91.577750 hybrid +132_3-3 Q0 MARCO_18_1270013948-7 29 91.570768 hybrid +132_3-3 Q0 MARCO_17_699495021-69 30 91.535419 hybrid +132_3-3 Q0 KILT_11914121-23 31 91.533017 hybrid +132_3-3 Q0 MARCO_19_266473698-9 32 91.511940 hybrid +132_3-3 Q0 KILT_30242372-1 33 91.498068 hybrid +132_3-3 Q0 KILT_54199706-23 34 91.495268 hybrid +132_3-3 Q0 MARCO_04_659842335-1 35 91.439818 hybrid +132_3-3 Q0 MARCO_35_1435664725-1 36 91.429368 hybrid +132_3-3 Q0 MARCO_19_266473698-29 37 91.426517 hybrid +132_3-3 Q0 MARCO_57_659534166-1 38 91.401268 hybrid +132_3-3 Q0 MARCO_19_266473698-3 39 91.303515 hybrid +132_3-3 Q0 MARCO_17_3384341227-11 40 91.271418 hybrid +132_3-3 Q0 MARCO_19_266473698-25 41 91.261760 hybrid +132_3-3 Q0 KILT_55794633-1 42 91.244368 hybrid +132_3-3 Q0 MARCO_19_266473698-48 43 91.181467 hybrid +132_3-3 Q0 MARCO_54_301749291-10 44 91.163668 hybrid +132_3-3 Q0 MARCO_25_1173147974-4 45 91.153868 hybrid +132_3-3 Q0 MARCO_48_1440474473-1 46 91.153218 hybrid +132_3-3 Q0 MARCO_39_1639128180-99 47 91.113168 hybrid +132_3-3 Q0 MARCO_19_266473698-26 48 91.102283 hybrid +132_3-3 Q0 MARCO_16_3978389848-3 49 91.090268 hybrid +132_3-3 Q0 MARCO_48_1251187189-24 50 91.072518 hybrid +132_3-3 Q0 MARCO_07_270918508-95 51 91.058218 hybrid +132_3-3 Q0 MARCO_48_1188743878-1 52 91.031919 hybrid +132_3-3 Q0 KILT_52233911-46 53 91.016250 hybrid +132_3-3 Q0 MARCO_02_591973274-91 54 91.009168 hybrid +132_3-3 Q0 MARCO_18_1612225304-31 55 90.994668 hybrid +132_3-3 Q0 MARCO_04_858408112-36 56 90.989628 hybrid +132_3-3 Q0 MARCO_01_212731097-11 57 90.985018 hybrid +132_3-3 Q0 MARCO_19_266473698-30 58 90.971719 hybrid +132_3-3 Q0 MARCO_17_297531906-17 59 90.963068 hybrid +132_3-3 Q0 MARCO_16_1808665578-7 60 90.959668 hybrid +132_3-3 Q0 MARCO_19_266473698-41 61 90.957851 hybrid +132_3-3 Q0 MARCO_34_924337768-4 62 90.945418 hybrid +132_3-3 Q0 MARCO_18_1612225304-32 63 90.942668 hybrid +132_3-3 Q0 MARCO_22_1644883624-30 64 90.932329 hybrid +132_3-3 Q0 MARCO_48_1440485436-3 65 90.923418 hybrid +132_3-3 Q0 MARCO_19_266473698-65 66 90.912198 hybrid +132_3-3 Q0 MARCO_07_791410178-1 67 90.903068 hybrid +132_3-3 Q0 MARCO_48_1251187189-1 68 90.889518 hybrid +132_3-3 Q0 MARCO_25_1173147974-3 69 90.887368 hybrid +132_3-3 Q0 MARCO_16_464728146-3 70 90.882868 hybrid +132_3-3 Q0 MARCO_23_146815887-5 71 90.878018 hybrid +132_3-3 Q0 KILT_54199706-2 72 90.858118 hybrid +132_3-3 Q0 MARCO_42_1359508711-8 73 90.856540 hybrid +132_3-3 Q0 MARCO_04_859919078-20 74 90.855432 hybrid +132_3-3 Q0 MARCO_54_343432104-8 75 90.845568 hybrid +132_3-3 Q0 MARCO_17_2540112783-13 76 90.840768 hybrid +132_3-3 Q0 MARCO_19_266473698-42 77 90.834936 hybrid +132_3-3 Q0 MARCO_57_180498497-1 78 90.826968 hybrid +132_3-3 Q0 MARCO_04_659842335-3 79 90.801818 hybrid +132_3-3 Q0 MARCO_17_1190789284-46 80 90.788418 hybrid +132_3-3 Q0 KILT_52506620-86 81 90.786618 hybrid +132_3-3 Q0 KILT_54199706-1 82 90.784218 hybrid +132_3-3 Q0 MARCO_48_581883428-4 83 90.765218 hybrid +132_3-3 Q0 MARCO_17_2854875838-6 84 90.754918 hybrid +132_3-3 Q0 MARCO_48_612298670-2 85 90.743968 hybrid +132_3-3 Q0 MARCO_48_1440474473-3 86 90.716918 hybrid +132_3-3 Q0 MARCO_48_1251187189-2 87 90.709418 hybrid +132_3-3 Q0 MARCO_17_1136196611-110 88 90.697918 hybrid +132_3-3 Q0 MARCO_19_266473698-47 89 90.696393 hybrid +132_3-3 Q0 MARCO_18_1978806874-12 90 90.679268 hybrid +132_3-3 Q0 MARCO_03_574768496-1 91 90.668868 hybrid +132_3-3 Q0 MARCO_16_3677683636-40 92 90.656518 hybrid +132_3-3 Q0 MARCO_48_1440474473-7 93 90.653668 hybrid +132_3-3 Q0 MARCO_41_713327519-3 94 90.652518 hybrid +132_3-3 Q0 MARCO_50_1732807570-153 95 90.652168 hybrid +132_3-3 Q0 KILT_456252-20 96 90.645868 hybrid +132_3-3 Q0 MARCO_11_296903612-2 97 90.628968 hybrid +132_3-3 Q0 MARCO_50_2146436541-44 98 90.613691 hybrid +132_3-3 Q0 MARCO_17_298495255-43 99 90.608218 hybrid +132_3-3 Q0 MARCO_48_114247267-1 100 90.592818 hybrid +132_3-5 Q0 MARCO_29_633524644-1 1 90.622687 hybrid +132_3-5 Q0 MARCO_34_3414626-1 2 90.275287 hybrid +132_3-5 Q0 MARCO_29_1046750646-1 3 90.123888 hybrid +132_3-5 Q0 MARCO_45_185826758-1 4 90.046087 hybrid +132_3-5 Q0 MARCO_58_1733155476-4 5 90.020013 hybrid +132_3-5 Q0 MARCO_47_1021717824-2 6 90.007338 hybrid +132_3-5 Q0 MARCO_48_1475773959-1 7 89.972888 hybrid +132_3-5 Q0 MARCO_49_638131185-1 8 89.970387 hybrid +132_3-5 Q0 MARCO_56_1195231640-1 9 89.886737 hybrid +132_3-5 Q0 MARCO_11_1064378071-3 10 89.810688 hybrid +132_3-5 Q0 MARCO_59_409809526-2 11 89.763537 hybrid +132_3-5 Q0 MARCO_20_1108305580-6 12 89.758448 hybrid +132_3-5 Q0 MARCO_04_862623938-3 13 89.749475 hybrid +132_3-5 Q0 MARCO_39_432867375-1 14 89.732637 hybrid +132_3-5 Q0 MARCO_40_1304657098-1 15 89.716537 hybrid +132_3-5 Q0 MARCO_50_2525659877-48 16 89.690437 hybrid +132_3-5 Q0 MARCO_22_1645608644-6 17 89.687768 hybrid +132_3-5 Q0 MARCO_34_3389127-1 18 89.681687 hybrid +132_3-5 Q0 MARCO_11_290370866-4 19 89.657887 hybrid +132_3-5 Q0 MARCO_42_1367375275-8 20 89.646631 hybrid +132_3-5 Q0 MARCO_36_995115743-14 21 89.641776 hybrid +132_3-5 Q0 MARCO_36_1002193231-10 22 89.634519 hybrid +132_3-5 Q0 MARCO_22_984739871-1 23 89.624337 hybrid +132_3-5 Q0 MARCO_44_606901877-4 24 89.616891 hybrid +132_3-5 Q0 MARCO_08_1274922016-1 25 89.587388 hybrid +132_3-5 Q0 MARCO_35_1441178363-1 26 89.581987 hybrid +132_3-5 Q0 MARCO_29_736814135-1 27 89.550888 hybrid +132_3-5 Q0 MARCO_01_1869259579-1 28 89.537035 hybrid +132_3-5 Q0 MARCO_30_382362150-20 29 89.502168 hybrid +132_3-5 Q0 MARCO_33_1314178076-6 30 89.500040 hybrid +132_3-5 Q0 MARCO_36_995115743-2 31 89.486825 hybrid +132_3-5 Q0 MARCO_22_1645284806-35 32 89.475091 hybrid +132_3-5 Q0 MARCO_06_7291931-2 33 89.473732 hybrid +132_3-5 Q0 MARCO_18_1612539977-89 34 89.469137 hybrid +132_3-5 Q0 MARCO_36_995115743-32 35 89.460202 hybrid +132_3-5 Q0 MARCO_56_1150064710-3 36 89.452687 hybrid +132_3-5 Q0 MARCO_48_612825074-2 37 89.445587 hybrid +132_3-5 Q0 MARCO_58_1660394029-1 38 89.418337 hybrid +132_3-5 Q0 MARCO_45_430807428-9 39 89.407037 hybrid +132_3-5 Q0 MARCO_24_1822494201-1 40 89.398037 hybrid +132_3-5 Q0 MARCO_19_249161710-1 41 89.392595 hybrid +132_3-5 Q0 MARCO_22_1645342034-2 42 89.391397 hybrid +132_3-5 Q0 MARCO_36_995115743-45 43 89.389703 hybrid +132_3-5 Q0 MARCO_47_149797480-1 44 89.381837 hybrid +132_3-5 Q0 MARCO_04_862623938-23 45 89.371767 hybrid +132_3-5 Q0 MARCO_35_309105238-5 46 89.370080 hybrid +132_3-5 Q0 MARCO_49_1656991046-1 47 89.369587 hybrid +132_3-5 Q0 MARCO_57_1359350797-1 48 89.361537 hybrid +132_3-5 Q0 MARCO_58_1617148606-1 49 89.361537 hybrid +132_3-5 Q0 MARCO_46_524486377-3 50 89.342203 hybrid +132_3-5 Q0 MARCO_42_290764662-1 51 89.340837 hybrid +132_3-5 Q0 MARCO_17_2912903846-4 52 89.320398 hybrid +132_3-5 Q0 MARCO_36_995115743-7 53 89.318605 hybrid +132_3-5 Q0 MARCO_20_1108305580-5 54 89.303238 hybrid +132_3-5 Q0 MARCO_58_1733733283-2 55 89.299844 hybrid +132_3-5 Q0 MARCO_10_204380841-4 56 89.298837 hybrid +132_3-5 Q0 MARCO_24_141300538-3 57 89.293291 hybrid +132_3-5 Q0 MARCO_54_215450217-1 58 89.288437 hybrid +132_3-5 Q0 MARCO_40_1112373426-1 59 89.281487 hybrid +132_3-5 Q0 MARCO_36_995115743-4 60 89.280817 hybrid +132_3-5 Q0 MARCO_56_978889983-1 61 89.278237 hybrid +132_3-5 Q0 MARCO_58_1733867517-24 62 89.270822 hybrid +132_3-5 Q0 MARCO_36_1002180196-5 63 89.267885 hybrid +132_3-5 Q0 MARCO_48_1175129065-1 64 89.263737 hybrid +132_3-5 Q0 MARCO_25_519606829-3 65 89.254900 hybrid +132_3-5 Q0 MARCO_45_75168370-1 66 89.248137 hybrid +132_3-5 Q0 MARCO_04_1293091136-9 67 89.245531 hybrid +132_3-5 Q0 MARCO_44_53572356-2 68 89.244783 hybrid +132_3-5 Q0 MARCO_32_82837699-8 69 89.242137 hybrid +132_3-5 Q0 MARCO_06_736731836-2 70 89.235704 hybrid +132_3-5 Q0 MARCO_20_1108305580-4 71 89.230361 hybrid +132_3-5 Q0 MARCO_19_235908656-48 72 89.229593 hybrid +132_3-5 Q0 MARCO_04_862623938-9 73 89.229265 hybrid +132_3-5 Q0 MARCO_06_736731836-3 74 89.225969 hybrid +132_3-5 Q0 MARCO_22_1226706981-1 75 89.217288 hybrid +132_3-5 Q0 MARCO_48_1448768290-1 76 89.206237 hybrid +132_3-5 Q0 MARCO_05_1007031330-41 77 89.199237 hybrid +132_3-5 Q0 MARCO_47_1005587682-3 78 89.195637 hybrid +132_3-5 Q0 MARCO_08_497568833-2 79 89.192487 hybrid +132_3-5 Q0 MARCO_24_1090469440-10 80 89.190537 hybrid +132_3-5 Q0 MARCO_29_734696231-3 81 89.190537 hybrid +132_3-5 Q0 MARCO_22_1644865728-3 82 89.187326 hybrid +132_3-5 Q0 MARCO_18_1612539977-104 83 89.183337 hybrid +132_3-5 Q0 MARCO_00_718156149-21 84 89.181093 hybrid +132_3-5 Q0 MARCO_20_1549806449-24 85 89.176787 hybrid +132_3-5 Q0 MARCO_47_1390557568-2 86 89.176588 hybrid +132_3-5 Q0 MARCO_04_862623938-21 87 89.174104 hybrid +132_3-5 Q0 MARCO_24_1814731167-1 88 89.167987 hybrid +132_3-5 Q0 MARCO_58_1733918604-6 89 89.167436 hybrid +132_3-5 Q0 MARCO_41_818434333-4 90 89.165987 hybrid +132_3-5 Q0 MARCO_05_805347583-3 91 89.159787 hybrid +132_3-5 Q0 MARCO_20_1619152178-1 92 89.156687 hybrid +132_3-5 Q0 MARCO_36_997696094-4 93 89.156145 hybrid +132_3-5 Q0 MARCO_56_1156135406-4 94 89.151487 hybrid +132_3-5 Q0 MARCO_17_2913009924-1 95 89.151063 hybrid +132_3-5 Q0 MARCO_20_655141777-18 96 89.144136 hybrid +132_3-5 Q0 MARCO_35_260604298-3 97 89.144037 hybrid +132_3-5 Q0 MARCO_04_862623938-14 98 89.142016 hybrid +132_3-5 Q0 MARCO_32_372239590-2 99 89.141987 hybrid +132_3-5 Q0 MARCO_35_287430495-1 100 89.139437 hybrid +132_3-7 Q0 MARCO_19_266473698-39 1 92.824972 hybrid +132_3-7 Q0 MARCO_19_266473698-10 2 92.571911 hybrid +132_3-7 Q0 MARCO_19_266473698-2 3 92.390620 hybrid +132_3-7 Q0 KILT_30242372-20 4 91.951072 hybrid +132_3-7 Q0 MARCO_18_1270013948-7 5 91.688672 hybrid +132_3-7 Q0 MARCO_19_266473698-29 6 91.589558 hybrid +132_3-7 Q0 MARCO_04_858408112-36 7 91.571074 hybrid +132_3-7 Q0 MARCO_19_266473698-20 8 91.552516 hybrid +132_3-7 Q0 MARCO_19_266473698-6 9 91.467938 hybrid +132_3-7 Q0 MARCO_19_266473698-5 10 91.423820 hybrid +132_3-7 Q0 MARCO_19_266473698-1 11 91.359358 hybrid +132_3-7 Q0 KILT_54199706-1 12 91.295772 hybrid +132_3-7 Q0 MARCO_17_4282412444-5 13 91.294922 hybrid +132_3-7 Q0 MARCO_04_858408112-35 14 91.177994 hybrid +132_3-7 Q0 MARCO_17_1136196611-110 15 91.102622 hybrid +132_3-7 Q0 KILT_50284451-4 16 91.065072 hybrid +132_3-7 Q0 KILT_58255078-1 17 91.056122 hybrid +132_3-7 Q0 MARCO_29_1175326324-10 18 91.010166 hybrid +132_3-7 Q0 MARCO_19_266580491-8 19 90.993298 hybrid +132_3-7 Q0 MARCO_19_266473698-19 20 90.902737 hybrid +132_3-7 Q0 MARCO_17_4282412444-6 21 90.879172 hybrid +132_3-7 Q0 KILT_54199706-4 22 90.785322 hybrid +132_3-7 Q0 MARCO_48_1251187189-4 23 90.741772 hybrid +132_3-7 Q0 MARCO_26_1737334641-7 24 90.739522 hybrid +132_3-7 Q0 MARCO_44_1640998791-470 25 90.718872 hybrid +132_3-7 Q0 KILT_54199706-3 26 90.711122 hybrid +132_3-7 Q0 MARCO_19_266473698-49 27 90.692347 hybrid +132_3-7 Q0 KILT_947442-14 28 90.621658 hybrid +132_3-7 Q0 MARCO_19_266473698-27 29 90.601947 hybrid +132_3-7 Q0 KILT_52992307-3 30 90.589130 hybrid +132_3-7 Q0 MARCO_19_266473698-50 31 90.551380 hybrid +132_3-7 Q0 KILT_54199706-26 32 90.523972 hybrid +132_3-7 Q0 KILT_50284451-3 33 90.519372 hybrid +132_3-7 Q0 MARCO_19_266473698-68 34 90.486299 hybrid +132_3-7 Q0 MARCO_19_266473698-8 35 90.464972 hybrid +132_3-7 Q0 MARCO_19_266473698-9 36 90.408701 hybrid +132_3-7 Q0 MARCO_19_266473698-42 37 90.382714 hybrid +132_3-7 Q0 MARCO_19_2040255855-9 38 90.357802 hybrid +132_3-7 Q0 KILT_55794633-1 39 90.309672 hybrid +132_3-7 Q0 MARCO_18_1573315574-26 40 90.274072 hybrid +132_3-7 Q0 MARCO_28_283614502-17 41 90.246051 hybrid +132_3-7 Q0 MARCO_44_729349767-8 42 90.202822 hybrid +132_3-7 Q0 MARCO_19_266473698-22 43 90.195075 hybrid +132_3-7 Q0 MARCO_19_266473698-32 44 90.163542 hybrid +132_3-7 Q0 KILT_54203297-3 45 90.161172 hybrid +132_3-7 Q0 MARCO_19_217252192-2 46 90.145072 hybrid +132_3-7 Q0 MARCO_19_266473698-7 47 90.144014 hybrid +132_3-7 Q0 MARCO_31_644392863-5 48 90.093681 hybrid +132_3-7 Q0 KILT_54199706-8 49 90.088522 hybrid +132_3-7 Q0 MARCO_35_10757894-1 50 90.059822 hybrid +132_3-7 Q0 KILT_47290767-25 51 90.059722 hybrid +132_3-7 Q0 MARCO_18_1270013948-8 52 90.053572 hybrid +132_3-7 Q0 MARCO_19_266473698-3 53 90.034698 hybrid +132_3-7 Q0 MARCO_19_266473698-35 54 90.026274 hybrid +132_3-7 Q0 MARCO_19_266473698-58 55 90.012679 hybrid +132_3-7 Q0 MARCO_26_1606533812-6 56 89.990750 hybrid +132_3-7 Q0 MARCO_39_196501676-18 57 89.975672 hybrid +132_3-7 Q0 MARCO_00_1330634246-3 58 89.957872 hybrid +132_3-7 Q0 MARCO_18_1612225304-32 59 89.939272 hybrid +132_3-7 Q0 MARCO_48_1440485436-1 60 89.926422 hybrid +132_3-7 Q0 MARCO_26_1671674679-6 61 89.896272 hybrid +132_3-7 Q0 MARCO_04_644766581-2 62 89.893622 hybrid +132_3-7 Q0 MARCO_19_266473698-43 63 89.891039 hybrid +132_3-7 Q0 MARCO_05_319131414-2 64 89.866750 hybrid +132_3-7 Q0 KILT_52571341-5 65 89.866622 hybrid +132_3-7 Q0 MARCO_48_1439242324-4 66 89.857372 hybrid +132_3-7 Q0 MARCO_52_56044289-1 67 89.855522 hybrid +132_3-7 Q0 MARCO_54_214915112-11 68 89.832322 hybrid +132_3-7 Q0 MARCO_19_266473698-11 69 89.830344 hybrid +132_3-7 Q0 MARCO_54_544550120-2 70 89.821972 hybrid +132_3-7 Q0 MARCO_48_1433671672-2 71 89.796872 hybrid +132_3-7 Q0 KILT_54201665-1 72 89.794122 hybrid +132_3-7 Q0 MARCO_19_217252192-9 73 89.744722 hybrid +132_3-7 Q0 MARCO_25_1173147974-1 74 89.742022 hybrid +132_3-7 Q0 KILT_54199706-16 75 89.742022 hybrid +132_3-7 Q0 MARCO_17_2944541684-45 76 89.736911 hybrid +132_3-7 Q0 MARCO_57_659534166-3 77 89.729822 hybrid +132_3-7 Q0 MARCO_19_266412467-1 78 89.713637 hybrid +132_3-7 Q0 KILT_54199706-9 79 89.704622 hybrid +132_3-7 Q0 MARCO_08_1664468555-4 80 89.695922 hybrid +132_3-7 Q0 MARCO_44_729349767-6 81 89.692022 hybrid +132_3-7 Q0 KILT_8149492-18 82 89.685933 hybrid +132_3-7 Q0 KILT_30242372-2 83 89.679272 hybrid +132_3-7 Q0 MARCO_48_1251187189-25 84 89.648422 hybrid +132_3-7 Q0 MARCO_17_699495021-69 85 89.636022 hybrid +132_3-7 Q0 MARCO_42_1366117883-9 86 89.632751 hybrid +132_3-7 Q0 KILT_26506968-1 87 89.621805 hybrid +132_3-7 Q0 KILT_60065139-39 88 89.621372 hybrid +132_3-7 Q0 MARCO_18_1735869040-7 89 89.611322 hybrid +132_3-7 Q0 MARCO_19_266412467-20 90 89.589530 hybrid +132_3-7 Q0 MARCO_48_1484880135-47 91 89.584722 hybrid +132_3-7 Q0 MARCO_19_266473698-65 92 89.583022 hybrid +132_3-7 Q0 MARCO_19_266412467-30 93 89.573691 hybrid +132_3-7 Q0 MARCO_36_967104724-2 94 89.556622 hybrid +132_3-7 Q0 MARCO_19_266473698-21 95 89.522954 hybrid +132_3-7 Q0 KILT_54199706-18 96 89.509272 hybrid +132_3-7 Q0 MARCO_18_1612225304-31 97 89.504272 hybrid +132_3-7 Q0 KILT_54199706-7 98 89.500972 hybrid +132_3-7 Q0 MARCO_19_266473698-12 99 89.487423 hybrid +132_3-7 Q0 KILT_54199706-2 100 89.485172 hybrid +133_1-1 Q0 MARCO_30_1649987246-6 1 90.856143 hybrid +133_1-1 Q0 MARCO_30_1649987246-9 2 90.776701 hybrid +133_1-1 Q0 MARCO_30_1649987246-8 3 90.211016 hybrid +133_1-1 Q0 MARCO_51_1542142755-2 4 89.842479 hybrid +133_1-1 Q0 MARCO_47_587723733-24 5 89.836729 hybrid +133_1-1 Q0 MARCO_29_1259851436-1 6 89.755929 hybrid +133_1-1 Q0 MARCO_32_1011749359-4 7 89.730182 hybrid +133_1-1 Q0 MARCO_47_1374013015-7 8 89.656379 hybrid +133_1-1 Q0 MARCO_47_97926714-6 9 89.423329 hybrid +133_1-1 Q0 MARCO_49_408044686-10 10 89.404795 hybrid +133_1-1 Q0 MARCO_00_731332696-2 11 89.388179 hybrid +133_1-1 Q0 MARCO_41_1847614301-1 12 89.361422 hybrid +133_1-1 Q0 MARCO_49_408044686-9 13 89.181963 hybrid +133_1-1 Q0 MARCO_29_1246920216-8 14 89.179429 hybrid +133_1-1 Q0 MARCO_20_525756982-6 15 89.157429 hybrid +133_1-1 Q0 MARCO_50_620478106-1 16 89.151279 hybrid +133_1-1 Q0 MARCO_22_980780860-4 17 89.148329 hybrid +133_1-1 Q0 MARCO_28_684387256-7 18 89.124329 hybrid +133_1-1 Q0 MARCO_49_409052444-1 19 89.118679 hybrid +133_1-1 Q0 MARCO_29_1246920216-1 20 89.112079 hybrid +133_1-1 Q0 MARCO_26_219742166-1 21 89.106479 hybrid +133_1-1 Q0 MARCO_58_1094671039-2 22 89.085179 hybrid +133_1-1 Q0 MARCO_49_407993445-8 23 89.078070 hybrid +133_1-1 Q0 MARCO_22_1600387989-11 24 89.037679 hybrid +133_1-1 Q0 MARCO_53_473898328-2 25 89.035679 hybrid +133_1-1 Q0 MARCO_49_407254110-8 26 89.026460 hybrid +133_1-1 Q0 MARCO_36_709949869-6 27 89.008179 hybrid +133_1-1 Q0 MARCO_15_575327426-2 28 88.965579 hybrid +133_1-1 Q0 MARCO_30_1649987246-2 29 88.957679 hybrid +133_1-1 Q0 MARCO_41_943153706-5 30 88.950079 hybrid +133_1-1 Q0 MARCO_47_578333937-3 31 88.923929 hybrid +133_1-1 Q0 MARCO_54_1899505270-3 32 88.923429 hybrid +133_1-1 Q0 MARCO_19_1713670630-2 33 88.903879 hybrid +133_1-1 Q0 MARCO_27_1618713015-1 34 88.891229 hybrid +133_1-1 Q0 MARCO_49_407212670-1 35 88.885523 hybrid +133_1-1 Q0 MARCO_47_587723733-25 36 88.881829 hybrid +133_1-1 Q0 MARCO_24_1057883035-3 37 88.838679 hybrid +133_1-1 Q0 MARCO_23_1059368765-4 38 88.838279 hybrid +133_1-1 Q0 MARCO_28_506130609-7 39 88.817929 hybrid +133_1-1 Q0 MARCO_52_497322663-2 40 88.796629 hybrid +133_1-1 Q0 MARCO_39_411033103-2 41 88.766779 hybrid +133_1-1 Q0 MARCO_39_1328316960-3 42 88.763829 hybrid +133_1-1 Q0 MARCO_49_408110023-6 43 88.733860 hybrid +133_1-1 Q0 MARCO_51_817305147-9 44 88.723460 hybrid +133_1-1 Q0 MARCO_42_1139270073-6 45 88.719279 hybrid +133_1-1 Q0 MARCO_57_1416647975-6 46 88.707129 hybrid +133_1-1 Q0 MARCO_39_330494318-8 47 88.692629 hybrid +133_1-1 Q0 MARCO_00_252389472-2 48 88.685374 hybrid +133_1-1 Q0 MARCO_52_1186887800-2 49 88.673051 hybrid +133_1-1 Q0 MARCO_38_584727843-5 50 88.653448 hybrid +133_1-1 Q0 MARCO_21_1436396754-6 51 88.647219 hybrid +133_1-1 Q0 MARCO_39_414482061-2 52 88.636879 hybrid +133_1-1 Q0 MARCO_47_587723733-2 53 88.633379 hybrid +133_1-1 Q0 MARCO_46_175495362-15 54 88.625679 hybrid +133_1-1 Q0 MARCO_49_409825172-1 55 88.624629 hybrid +133_1-1 Q0 MARCO_49_407372305-1 56 88.612728 hybrid +133_1-1 Q0 MARCO_30_604425193-12 57 88.607852 hybrid +133_1-1 Q0 MARCO_49_408110023-3 58 88.598216 hybrid +133_1-1 Q0 MARCO_30_1821251242-4 59 88.593129 hybrid +133_1-1 Q0 MARCO_49_408018463-14 60 88.591342 hybrid +133_1-1 Q0 MARCO_49_408044686-2 61 88.587687 hybrid +133_1-1 Q0 MARCO_58_1098135374-1 62 88.578729 hybrid +133_1-1 Q0 MARCO_29_1480542871-2 63 88.571329 hybrid +133_1-1 Q0 MARCO_49_407767275-10 64 88.571192 hybrid +133_1-1 Q0 MARCO_51_832233330-7 65 88.566929 hybrid +133_1-1 Q0 MARCO_24_1083946425-4 66 88.558679 hybrid +133_1-1 Q0 MARCO_40_172971301-4 67 88.532130 hybrid +133_1-1 Q0 MARCO_49_408044686-3 68 88.521657 hybrid +133_1-1 Q0 MARCO_52_1207612281-3 69 88.494044 hybrid +133_1-1 Q0 MARCO_54_473908861-11 70 88.491529 hybrid +133_1-1 Q0 MARCO_04_525233474-15 71 88.481529 hybrid +133_1-1 Q0 MARCO_35_963526334-1 72 88.473279 hybrid +133_1-1 Q0 MARCO_30_1768248609-1 73 88.471529 hybrid +133_1-1 Q0 MARCO_25_268328667-3 74 88.462629 hybrid +133_1-1 Q0 MARCO_24_1071261465-11 75 88.452679 hybrid +133_1-1 Q0 MARCO_49_407866897-10 76 88.450617 hybrid +133_1-1 Q0 MARCO_47_1153654881-1 77 88.449229 hybrid +133_1-1 Q0 MARCO_33_107249545-2 78 88.448229 hybrid +133_1-1 Q0 MARCO_39_1212317744-4 79 88.447129 hybrid +133_1-1 Q0 MARCO_30_1649787634-4 80 88.446040 hybrid +133_1-1 Q0 MARCO_31_885817404-7 81 88.444872 hybrid +133_1-1 Q0 MARCO_29_1259627605-12 82 88.435779 hybrid +133_1-1 Q0 MARCO_52_1207726252-3 83 88.429513 hybrid +133_1-1 Q0 MARCO_30_583938226-1 84 88.425379 hybrid +133_1-1 Q0 MARCO_49_408625879-19 85 88.424229 hybrid +133_1-1 Q0 MARCO_48_1729406152-7 86 88.422429 hybrid +133_1-1 Q0 MARCO_50_2806046410-4 87 88.422429 hybrid +133_1-1 Q0 MARCO_30_1650070482-3 88 88.420729 hybrid +133_1-1 Q0 MARCO_22_1129515956-3 89 88.413529 hybrid +133_1-1 Q0 MARCO_20_481854988-4 90 88.413393 hybrid +133_1-1 Q0 MARCO_49_1694178165-7 91 88.410555 hybrid +133_1-1 Q0 MARCO_15_1349804938-3 92 88.409779 hybrid +133_1-1 Q0 MARCO_20_481854988-5 93 88.398242 hybrid +133_1-1 Q0 MARCO_21_960890277-34 94 88.396883 hybrid +133_1-1 Q0 MARCO_42_257610962-2 95 88.394648 hybrid +133_1-1 Q0 MARCO_47_286039850-4 96 88.392069 hybrid +133_1-1 Q0 MARCO_25_897715256-5 97 88.388679 hybrid +133_1-1 Q0 MARCO_30_1320718948-5 98 88.387529 hybrid +133_1-1 Q0 MARCO_11_1117830787-11 99 88.374779 hybrid +133_1-1 Q0 MARCO_25_1381427070-1 100 88.372829 hybrid +133_1-3 Q0 MARCO_41_1847614301-2 1 91.285092 hybrid +133_1-3 Q0 MARCO_23_895409741-1 2 90.951975 hybrid +133_1-3 Q0 MARCO_25_1167948093-1 3 89.748332 hybrid +133_1-3 Q0 MARCO_41_2129778814-11 4 89.675352 hybrid +133_1-3 Q0 MARCO_29_31280170-2 5 89.546903 hybrid +133_1-3 Q0 MARCO_13_141730204-4 6 89.497579 hybrid +133_1-3 Q0 MARCO_21_963020852-33 7 89.477605 hybrid +133_1-3 Q0 MARCO_31_903812770-6 8 89.327116 hybrid +133_1-3 Q0 MARCO_21_291233325-14 9 89.250862 hybrid +133_1-3 Q0 MARCO_52_361046997-2 10 89.241521 hybrid +133_1-3 Q0 MARCO_42_257610962-2 11 89.214292 hybrid +133_1-3 Q0 MARCO_13_684840871-2 12 89.196412 hybrid +133_1-3 Q0 MARCO_41_1847614301-3 13 89.195432 hybrid +133_1-3 Q0 MARCO_31_903812770-5 14 89.148191 hybrid +133_1-3 Q0 MARCO_14_1422461002-1 15 89.132345 hybrid +133_1-3 Q0 MARCO_42_258270495-16 16 89.116212 hybrid +133_1-3 Q0 MARCO_41_2129778814-3 17 89.103430 hybrid +133_1-3 Q0 MARCO_41_2129778814-10 18 89.087018 hybrid +133_1-3 Q0 MARCO_51_817072979-2 19 89.085241 hybrid +133_1-3 Q0 MARCO_24_1079440211-1 20 89.078812 hybrid +133_1-3 Q0 MARCO_24_1307660-1 21 89.071470 hybrid +133_1-3 Q0 MARCO_36_1802330173-1 22 89.054412 hybrid +133_1-3 Q0 MARCO_11_777295771-3 23 89.048086 hybrid +133_1-3 Q0 MARCO_31_817983190-2 24 89.035712 hybrid +133_1-3 Q0 MARCO_42_1675940449-1 25 89.031332 hybrid +133_1-3 Q0 MARCO_43_747853505-7 26 88.990011 hybrid +133_1-3 Q0 MARCO_30_609445025-1 27 88.989712 hybrid +133_1-3 Q0 MARCO_50_246817545-14 28 88.982812 hybrid +133_1-3 Q0 MARCO_41_2129778814-12 29 88.981359 hybrid +133_1-3 Q0 MARCO_02_616080436-1 30 88.974712 hybrid +133_1-3 Q0 MARCO_51_817080609-5 31 88.951482 hybrid +133_1-3 Q0 MARCO_41_1847614301-1 32 88.950506 hybrid +133_1-3 Q0 MARCO_32_1018872214-1 33 88.941335 hybrid +133_1-3 Q0 MARCO_36_1088009820-6 34 88.936262 hybrid +133_1-3 Q0 MARCO_53_1123534061-1 35 88.923662 hybrid +133_1-3 Q0 MARCO_40_617356949-13 36 88.918958 hybrid +133_1-3 Q0 MARCO_41_2129778814-5 37 88.911550 hybrid +133_1-3 Q0 MARCO_41_2129778814-9 38 88.898343 hybrid +133_1-3 Q0 MARCO_28_646725838-8 39 88.896562 hybrid +133_1-3 Q0 MARCO_55_676401627-5 40 88.879835 hybrid +133_1-3 Q0 MARCO_14_1422461002-4 41 88.877889 hybrid +133_1-3 Q0 MARCO_51_1542142755-2 42 88.850812 hybrid +133_1-3 Q0 MARCO_29_798386633-6 43 88.836431 hybrid +133_1-3 Q0 MARCO_40_880336472-3 44 88.835262 hybrid +133_1-3 Q0 MARCO_36_1000989002-5 45 88.829946 hybrid +133_1-3 Q0 MARCO_47_1281866164-5 46 88.822614 hybrid +133_1-3 Q0 MARCO_42_1090416617-3 47 88.818531 hybrid +133_1-3 Q0 MARCO_37_838144198-7 48 88.812994 hybrid +133_1-3 Q0 MARCO_36_1000970916-1 49 88.799894 hybrid +133_1-3 Q0 MARCO_20_14748038-1 50 88.796084 hybrid +133_1-3 Q0 MARCO_56_1317921108-1 51 88.795316 hybrid +133_1-3 Q0 MARCO_31_1633658842-5 52 88.790162 hybrid +133_1-3 Q0 MARCO_28_172819740-4 53 88.787755 hybrid +133_1-3 Q0 MARCO_47_597571919-1 54 88.785762 hybrid +133_1-3 Q0 MARCO_57_152792841-1 55 88.780962 hybrid +133_1-3 Q0 MARCO_04_961071946-6 56 88.779062 hybrid +133_1-3 Q0 MARCO_13_429571872-5 57 88.776462 hybrid +133_1-3 Q0 MARCO_38_1465377746-1 58 88.775562 hybrid +133_1-3 Q0 MARCO_47_597571919-3 59 88.773562 hybrid +133_1-3 Q0 MARCO_46_12563667-3 60 88.769041 hybrid +133_1-3 Q0 MARCO_13_419575271-5 61 88.765012 hybrid +133_1-3 Q0 MARCO_51_817080609-8 62 88.760259 hybrid +133_1-3 Q0 MARCO_08_12840639-1 63 88.759612 hybrid +133_1-3 Q0 MARCO_41_2128564310-1 64 88.753019 hybrid +133_1-3 Q0 MARCO_51_1577010259-7 65 88.749662 hybrid +133_1-3 Q0 MARCO_41_2128254790-6 66 88.733861 hybrid +133_1-3 Q0 MARCO_52_1378433154-6 67 88.733579 hybrid +133_1-3 Q0 MARCO_14_1422461002-2 68 88.731000 hybrid +133_1-3 Q0 MARCO_47_1281866164-7 69 88.729703 hybrid +133_1-3 Q0 MARCO_47_1281866164-9 70 88.729688 hybrid +133_1-3 Q0 MARCO_50_246854685-11 71 88.715912 hybrid +133_1-3 Q0 MARCO_01_2126535076-3 72 88.710912 hybrid +133_1-3 Q0 MARCO_07_622353478-3 73 88.709165 hybrid +133_1-3 Q0 MARCO_40_172971301-4 74 88.708860 hybrid +133_1-3 Q0 MARCO_40_1270581781-2 75 88.707212 hybrid +133_1-3 Q0 MARCO_51_817072979-4 76 88.706083 hybrid +133_1-3 Q0 MARCO_30_1504157269-11 77 88.703362 hybrid +133_1-3 Q0 MARCO_46_12087807-2 78 88.703062 hybrid +133_1-3 Q0 MARCO_42_1090416617-1 79 88.700834 hybrid +133_1-3 Q0 MARCO_40_617356949-11 80 88.689748 hybrid +133_1-3 Q0 MARCO_50_620478106-1 81 88.687512 hybrid +133_1-3 Q0 MARCO_37_173108103-1 82 88.686033 hybrid +133_1-3 Q0 MARCO_52_497322663-2 83 88.683712 hybrid +133_1-3 Q0 MARCO_47_762796054-1 84 88.680712 hybrid +133_1-3 Q0 MARCO_34_564001397-1 85 88.675812 hybrid +133_1-3 Q0 MARCO_27_1183858223-1 86 88.671962 hybrid +133_1-3 Q0 MARCO_55_676401627-4 87 88.670240 hybrid +133_1-3 Q0 MARCO_41_1847663807-5 88 88.668279 hybrid +133_1-3 Q0 MARCO_26_487737468-4 89 88.666562 hybrid +133_1-3 Q0 MARCO_49_437499080-7 90 88.659512 hybrid +133_1-3 Q0 MARCO_52_361046997-1 91 88.655683 hybrid +133_1-3 Q0 MARCO_37_838144198-1 92 88.651784 hybrid +133_1-3 Q0 MARCO_48_1547038553-6 93 88.648962 hybrid +133_1-3 Q0 MARCO_31_903812770-9 94 88.647253 hybrid +133_1-3 Q0 MARCO_12_1861101487-4 95 88.637159 hybrid +133_1-3 Q0 MARCO_36_1000800760-1 96 88.635946 hybrid +133_1-3 Q0 MARCO_23_895409741-2 97 88.635249 hybrid +133_1-3 Q0 MARCO_50_246834801-16 98 88.628412 hybrid +133_1-3 Q0 MARCO_12_1861101487-3 99 88.624334 hybrid +133_1-3 Q0 MARCO_14_1143562278-4 100 88.622198 hybrid +133_1-5 Q0 MARCO_29_1697483266-99 1 92.350269 hybrid +133_1-5 Q0 MARCO_13_906499826-4 2 91.643519 hybrid +133_1-5 Q0 MARCO_52_1278805789-1 3 91.509219 hybrid +133_1-5 Q0 MARCO_14_1784314806-75 4 91.390469 hybrid +133_1-5 Q0 MARCO_30_1762569147-14 5 91.333369 hybrid +133_1-5 Q0 MARCO_24_37590056-14 6 91.283669 hybrid +133_1-5 Q0 MARCO_53_900538557-93 7 91.279269 hybrid +133_1-5 Q0 MARCO_14_1784314806-136 8 91.253469 hybrid +133_1-5 Q0 MARCO_14_1784314806-138 9 91.230819 hybrid +133_1-5 Q0 MARCO_01_767428241-2 10 91.192669 hybrid +133_1-5 Q0 MARCO_51_611403672-9 11 91.187819 hybrid +133_1-5 Q0 MARCO_22_1760305010-3 12 91.183419 hybrid +133_1-5 Q0 MARCO_05_1578263893-511 13 91.060269 hybrid +133_1-5 Q0 MARCO_53_107081473-31 14 90.994069 hybrid +133_1-5 Q0 MARCO_01_663758152-85 15 90.955069 hybrid +133_1-5 Q0 MARCO_21_194358716-7 16 90.947719 hybrid +133_1-5 Q0 MARCO_20_289017455-2 17 90.935619 hybrid +133_1-5 Q0 MARCO_02_1559497566-13 18 90.918969 hybrid +133_1-5 Q0 MARCO_13_1206619767-5 19 90.914919 hybrid +133_1-5 Q0 MARCO_01_1579096285-3 20 90.831169 hybrid +133_1-5 Q0 MARCO_21_1273251781-14 21 90.822619 hybrid +133_1-5 Q0 MARCO_09_1105492302-2 22 90.795169 hybrid +133_1-5 Q0 MARCO_16_389157560-5 23 90.744219 hybrid +133_1-5 Q0 MARCO_14_1023234825-5 24 90.727269 hybrid +133_1-5 Q0 MARCO_50_1842735534-13 25 90.709419 hybrid +133_1-5 Q0 MARCO_28_733056334-5 26 90.687019 hybrid +133_1-5 Q0 MARCO_12_1212571743-57 27 90.678519 hybrid +133_1-5 Q0 MARCO_58_1627298406-3 28 90.671369 hybrid +133_1-5 Q0 MARCO_21_915586967-6 29 90.671368 hybrid +133_1-5 Q0 MARCO_20_1631932139-4 30 90.660969 hybrid +133_1-5 Q0 MARCO_49_408018463-5 31 90.654356 hybrid +133_1-5 Q0 MARCO_52_49512857-26 32 90.648219 hybrid +133_1-5 Q0 MARCO_00_700264067-15 33 90.646469 hybrid +133_1-5 Q0 MARCO_24_1057323680-5 34 90.641269 hybrid +133_1-5 Q0 MARCO_09_815499478-66 35 90.636819 hybrid +133_1-5 Q0 MARCO_52_1779721723-66 36 90.636818 hybrid +133_1-5 Q0 MARCO_47_569229605-7 37 90.620419 hybrid +133_1-5 Q0 MARCO_49_1696342047-20 38 90.615219 hybrid +133_1-5 Q0 MARCO_08_5046594-62 39 90.614919 hybrid +133_1-5 Q0 MARCO_12_1296941649-8 40 90.598819 hybrid +133_1-5 Q0 MARCO_30_598169540-10 41 90.597419 hybrid +133_1-5 Q0 MARCO_41_749540093-4 42 90.582019 hybrid +133_1-5 Q0 MARCO_41_76234712-4 43 90.571319 hybrid +133_1-5 Q0 MARCO_24_657866613-4 44 90.561919 hybrid +133_1-5 Q0 MARCO_14_1522921490-2 45 90.561369 hybrid +133_1-5 Q0 MARCO_12_873808971-132 46 90.556969 hybrid +133_1-5 Q0 MARCO_48_2040197943-2 47 90.554719 hybrid +133_1-5 Q0 MARCO_59_812883133-25 48 90.546369 hybrid +133_1-5 Q0 MARCO_49_408044686-9 49 90.533209 hybrid +133_1-5 Q0 MARCO_06_1484111130-6 50 90.531519 hybrid +133_1-5 Q0 MARCO_00_698687134-18 51 90.530569 hybrid +133_1-5 Q0 MARCO_20_1041271128-3 52 90.526569 hybrid +133_1-5 Q0 MARCO_45_955927431-48 53 90.519869 hybrid +133_1-5 Q0 MARCO_41_1210859764-37 54 90.519419 hybrid +133_1-5 Q0 MARCO_35_983491522-2 55 90.516469 hybrid +133_1-5 Q0 MARCO_06_1160160445-195 56 90.512069 hybrid +133_1-5 Q0 MARCO_50_1466627125-4 57 90.503919 hybrid +133_1-5 Q0 MARCO_41_1268132798-24 58 90.494319 hybrid +133_1-5 Q0 MARCO_06_171199603-3 59 90.484469 hybrid +133_1-5 Q0 MARCO_30_58192945-8 60 90.484019 hybrid +133_1-5 Q0 MARCO_32_1286634508-14 61 90.482969 hybrid +133_1-5 Q0 MARCO_08_264778890-10 62 90.465519 hybrid +133_1-5 Q0 MARCO_28_1373985091-17 63 90.462519 hybrid +133_1-5 Q0 MARCO_31_1599687902-4 64 90.456819 hybrid +133_1-5 Q0 MARCO_47_298456517-2 65 90.453319 hybrid +133_1-5 Q0 MARCO_41_1779241576-104 66 90.439269 hybrid +133_1-5 Q0 MARCO_25_239314277-4 67 90.429669 hybrid +133_1-5 Q0 MARCO_05_737863394-1 68 90.419669 hybrid +133_1-5 Q0 MARCO_06_1060129174-615 69 90.418269 hybrid +133_1-5 Q0 MARCO_37_350591812-3 70 90.416119 hybrid +133_1-5 Q0 MARCO_44_1872378565-3 71 90.403669 hybrid +133_1-5 Q0 MARCO_49_408044686-10 72 90.401312 hybrid +133_1-5 Q0 MARCO_39_1326739431-7 73 90.396069 hybrid +133_1-5 Q0 MARCO_00_1257672081-14 74 90.389819 hybrid +133_1-5 Q0 MARCO_19_2600736286-3 75 90.385569 hybrid +133_1-5 Q0 MARCO_12_202504279-22 76 90.384169 hybrid +133_1-5 Q0 MARCO_26_1555601750-2 77 90.381269 hybrid +133_1-5 Q0 MARCO_23_894325738-7 78 90.378769 hybrid +133_1-5 Q0 MARCO_50_2091324687-13 79 90.371269 hybrid +133_1-5 Q0 MARCO_03_1201389245-34 80 90.369069 hybrid +133_1-5 Q0 MARCO_07_1659578194-1 81 90.367719 hybrid +133_1-5 Q0 MARCO_33_778814581-1 82 90.362669 hybrid +133_1-5 Q0 MARCO_32_127829290-5 83 90.362269 hybrid +133_1-5 Q0 MARCO_26_1015232005-7 84 90.359019 hybrid +133_1-5 Q0 MARCO_24_1132484407-4 85 90.358809 hybrid +133_1-5 Q0 MARCO_01_801549683-6 86 90.349859 hybrid +133_1-5 Q0 MARCO_05_655435524-14 87 90.348469 hybrid +133_1-5 Q0 MARCO_50_1241826956-14 88 90.347119 hybrid +133_1-5 Q0 MARCO_53_1456543191-6 89 90.343019 hybrid +133_1-5 Q0 MARCO_49_1678105046-4 90 90.340419 hybrid +133_1-5 Q0 MARCO_08_1660956288-6 91 90.339519 hybrid +133_1-5 Q0 MARCO_30_604425193-12 92 90.339010 hybrid +133_1-5 Q0 MARCO_11_870961588-55 93 90.335919 hybrid +133_1-5 Q0 MARCO_40_814477356-7 94 90.335279 hybrid +133_1-5 Q0 MARCO_30_754839507-19 95 90.334519 hybrid +133_1-5 Q0 MARCO_46_566985631-9 96 90.333369 hybrid +133_1-5 Q0 MARCO_37_773015197-3 97 90.328969 hybrid +133_1-5 Q0 MARCO_06_1303194379-405 98 90.323919 hybrid +133_1-5 Q0 MARCO_31_1264339439-3 99 90.315469 hybrid +133_1-5 Q0 MARCO_49_1694178165-5 100 90.311651 hybrid +133_1-7 Q0 MARCO_07_1052430134-12 1 89.628713 hybrid +133_1-7 Q0 MARCO_30_194675946-1 2 89.387589 hybrid +133_1-7 Q0 MARCO_54_1473906903-8 3 89.363645 hybrid +133_1-7 Q0 MARCO_11_875587401-8 4 89.335287 hybrid +133_1-7 Q0 MARCO_49_221130362-1 5 89.255440 hybrid +133_1-7 Q0 MARCO_25_521623020-10 6 89.193304 hybrid +133_1-7 Q0 MARCO_33_176858642-8 7 89.154859 hybrid +133_1-7 Q0 MARCO_28_334658990-2 8 89.129055 hybrid +133_1-7 Q0 MARCO_25_521623020-7 9 89.119451 hybrid +133_1-7 Q0 MARCO_32_1494712084-2 10 89.092847 hybrid +133_1-7 Q0 MARCO_30_365649674-13 11 89.069489 hybrid +133_1-7 Q0 MARCO_40_170855066-3 12 89.045377 hybrid +133_1-7 Q0 MARCO_30_458048779-4 13 89.022291 hybrid +133_1-7 Q0 MARCO_25_521623020-6 14 89.009206 hybrid +133_1-7 Q0 MARCO_39_421991508-2 15 88.975729 hybrid +133_1-7 Q0 MARCO_32_1494757487-9 16 88.952863 hybrid +133_1-7 Q0 MARCO_32_1494757487-7 17 88.952863 hybrid +133_1-7 Q0 MARCO_38_288045906-1 18 88.949490 hybrid +133_1-7 Q0 MARCO_57_478571488-17 19 88.929235 hybrid +133_1-7 Q0 MARCO_29_1662389944-7 20 88.905839 hybrid +133_1-7 Q0 MARCO_11_81276089-9 21 88.898039 hybrid +133_1-7 Q0 MARCO_32_1494712084-1 22 88.875440 hybrid +133_1-7 Q0 MARCO_24_1189965-7 23 88.832288 hybrid +133_1-7 Q0 MARCO_28_431187829-7 24 88.824027 hybrid +133_1-7 Q0 MARCO_54_177645165-1 25 88.820652 hybrid +133_1-7 Q0 MARCO_30_311425679-4 26 88.818289 hybrid +133_1-7 Q0 MARCO_22_273153026-11 27 88.801040 hybrid +133_1-7 Q0 MARCO_40_170855066-5 28 88.782842 hybrid +133_1-7 Q0 MARCO_25_521623020-2 29 88.781263 hybrid +133_1-7 Q0 MARCO_20_626826480-1 30 88.761854 hybrid +133_1-7 Q0 MARCO_57_478571488-20 31 88.748556 hybrid +133_1-7 Q0 MARCO_47_975896139-8 32 88.733984 hybrid +133_1-7 Q0 MARCO_04_181834998-3 33 88.730321 hybrid +133_1-7 Q0 MARCO_39_421991508-3 34 88.721212 hybrid +133_1-7 Q0 MARCO_29_1662389944-1 35 88.709340 hybrid +133_1-7 Q0 MARCO_59_404372885-3 36 88.692739 hybrid +133_1-7 Q0 MARCO_30_458048779-5 37 88.690252 hybrid +133_1-7 Q0 MARCO_37_1293703047-6 38 88.689710 hybrid +133_1-7 Q0 MARCO_44_1111274332-4 39 88.680733 hybrid +133_1-7 Q0 MARCO_41_2088263834-4 40 88.669489 hybrid +133_1-7 Q0 MARCO_32_1494731102-12 41 88.661298 hybrid +133_1-7 Q0 MARCO_44_312200205-1 42 88.646220 hybrid +133_1-7 Q0 MARCO_05_1760249661-5 43 88.645582 hybrid +133_1-7 Q0 MARCO_47_975896139-9 44 88.595579 hybrid +133_1-7 Q0 MARCO_48_1729636742-2 45 88.590039 hybrid +133_1-7 Q0 MARCO_57_486961949-16 46 88.577856 hybrid +133_1-7 Q0 MARCO_25_521623020-3 47 88.562673 hybrid +133_1-7 Q0 MARCO_50_637650336-8 48 88.561498 hybrid +133_1-7 Q0 MARCO_30_457814917-3 49 88.556425 hybrid +133_1-7 Q0 MARCO_28_334658990-36 50 88.544462 hybrid +133_1-7 Q0 MARCO_47_975864664-3 51 88.541639 hybrid +133_1-7 Q0 MARCO_57_2028275346-7 52 88.533539 hybrid +133_1-7 Q0 MARCO_05_1020488490-8 53 88.530996 hybrid +133_1-7 Q0 MARCO_54_1473098183-5 54 88.523534 hybrid +133_1-7 Q0 MARCO_32_1524225579-9 55 88.512380 hybrid +133_1-7 Q0 MARCO_36_568307564-1 56 88.503942 hybrid +133_1-7 Q0 MARCO_20_17312957-4 57 88.496806 hybrid +133_1-7 Q0 MARCO_57_478571488-24 58 88.475400 hybrid +133_1-7 Q0 MARCO_52_1537871369-2 59 88.469840 hybrid +133_1-7 Q0 MARCO_40_170855066-4 60 88.469549 hybrid +133_1-7 Q0 MARCO_35_402951314-23 61 88.435415 hybrid +133_1-7 Q0 MARCO_42_940922469-4 62 88.404974 hybrid +133_1-7 Q0 MARCO_13_1539133723-5 63 88.398689 hybrid +133_1-7 Q0 MARCO_09_647077943-48 64 88.388690 hybrid +133_1-7 Q0 MARCO_28_334658990-34 65 88.386381 hybrid +133_1-7 Q0 MARCO_40_786620953-23 66 88.380839 hybrid +133_1-7 Q0 MARCO_47_408408009-1 67 88.379189 hybrid +133_1-7 Q0 MARCO_19_1900621734-27 68 88.378339 hybrid +133_1-7 Q0 MARCO_32_1494731102-2 69 88.375936 hybrid +133_1-7 Q0 MARCO_01_1871370715-3 70 88.369405 hybrid +133_1-7 Q0 MARCO_50_637650336-6 71 88.352277 hybrid +133_1-7 Q0 MARCO_20_1648644072-26 72 88.351840 hybrid +133_1-7 Q0 MARCO_42_759114754-5 73 88.351190 hybrid +133_1-7 Q0 MARCO_20_626813883-1 74 88.345289 hybrid +133_1-7 Q0 MARCO_29_1662490418-1 75 88.341439 hybrid +133_1-7 Q0 MARCO_47_975896139-11 76 88.340833 hybrid +133_1-7 Q0 MARCO_47_975896139-12 77 88.338018 hybrid +133_1-7 Q0 MARCO_31_815766870-5 78 88.337989 hybrid +133_1-7 Q0 MARCO_21_1040240025-5 79 88.337949 hybrid +133_1-7 Q0 MARCO_32_1494731102-5 80 88.334325 hybrid +133_1-7 Q0 MARCO_54_177645165-6 81 88.322819 hybrid +133_1-7 Q0 MARCO_46_175198216-3 82 88.316989 hybrid +133_1-7 Q0 MARCO_57_486961949-15 83 88.313657 hybrid +133_1-7 Q0 MARCO_15_1395353461-1 84 88.307489 hybrid +133_1-7 Q0 MARCO_32_1524225579-5 85 88.278081 hybrid +133_1-7 Q0 MARCO_49_221098185-1 86 88.275096 hybrid +133_1-7 Q0 MARCO_19_2191011684-7 87 88.273339 hybrid +133_1-7 Q0 MARCO_20_626768385-1 88 88.271665 hybrid +133_1-7 Q0 MARCO_46_175198216-14 89 88.265939 hybrid +133_1-7 Q0 MARCO_24_1073942976-23 90 88.261940 hybrid +133_1-7 Q0 MARCO_55_797456254-4 91 88.261389 hybrid +133_1-7 Q0 MARCO_12_1463327439-1 92 88.257440 hybrid +133_1-7 Q0 MARCO_32_1285610141-2 93 88.256368 hybrid +133_1-7 Q0 MARCO_38_637791013-1 94 88.253240 hybrid +133_1-7 Q0 MARCO_27_532862767-57 95 88.253113 hybrid +133_1-7 Q0 MARCO_53_825816512-17 96 88.247489 hybrid +133_1-7 Q0 MARCO_32_1524225579-7 97 88.242918 hybrid +133_1-7 Q0 MARCO_25_521623020-9 98 88.230436 hybrid +133_1-7 Q0 MARCO_40_148056017-8 99 88.200986 hybrid +133_1-7 Q0 MARCO_20_626838020-1 100 88.193204 hybrid +133_2-1 Q0 MARCO_23_938105672-34 1 87.925676 hybrid +133_2-1 Q0 MARCO_45_202277106-10 2 87.866793 hybrid +133_2-1 Q0 MARCO_47_127998938-1 3 87.833929 hybrid +133_2-1 Q0 MARCO_57_868760995-3 4 87.810549 hybrid +133_2-1 Q0 MARCO_03_673301350-3 5 87.809729 hybrid +133_2-1 Q0 MARCO_21_1045645298-6 6 87.791552 hybrid +133_2-1 Q0 MARCO_28_342063026-2 7 87.707499 hybrid +133_2-1 Q0 MARCO_14_1426172211-6 8 87.705698 hybrid +133_2-1 Q0 MARCO_42_1889393375-14 9 87.689203 hybrid +133_2-1 Q0 MARCO_29_789520551-19 10 87.681803 hybrid +133_2-1 Q0 MARCO_27_216298804-4 11 87.647203 hybrid +133_2-1 Q0 MARCO_37_836630788-17 12 87.642748 hybrid +133_2-1 Q0 MARCO_53_731621760-3 13 87.636400 hybrid +133_2-1 Q0 MARCO_24_558574702-9 14 87.611729 hybrid +133_2-1 Q0 MARCO_56_501029797-5 15 87.604273 hybrid +133_2-1 Q0 MARCO_47_1281188468-14 16 87.603136 hybrid +133_2-1 Q0 MARCO_11_1449148621-23 17 87.597429 hybrid +133_2-1 Q0 MARCO_29_240994830-2 18 87.593538 hybrid +133_2-1 Q0 MARCO_29_240879615-2 19 87.593538 hybrid +133_2-1 Q0 MARCO_29_240885325-2 20 87.593538 hybrid +133_2-1 Q0 MARCO_29_240865401-2 21 87.593538 hybrid +133_2-1 Q0 MARCO_29_240960645-2 22 87.593538 hybrid +133_2-1 Q0 MARCO_29_240893868-2 23 87.593538 hybrid +133_2-1 Q0 MARCO_29_241002311-2 24 87.593500 hybrid +133_2-1 Q0 MARCO_09_135812463-21 25 87.579628 hybrid +133_2-1 Q0 MARCO_21_1435489700-2 26 87.554659 hybrid +133_2-1 Q0 MARCO_58_846320297-1 27 87.554579 hybrid +133_2-1 Q0 MARCO_07_1128567916-3 28 87.548529 hybrid +133_2-1 Q0 MARCO_47_678340779-1 29 87.502829 hybrid +133_2-1 Q0 MARCO_44_605664172-12 30 87.497858 hybrid +133_2-1 Q0 MARCO_29_776878896-1 31 87.484652 hybrid +133_2-1 Q0 MARCO_33_1457053052-1 32 87.469879 hybrid +133_2-1 Q0 MARCO_33_1133729864-1 33 87.466079 hybrid +133_2-1 Q0 MARCO_11_711490150-8 34 87.465334 hybrid +133_2-1 Q0 MARCO_03_909259324-1 35 87.460228 hybrid +133_2-1 Q0 MARCO_43_977048460-4 36 87.453791 hybrid +133_2-1 Q0 MARCO_55_336556596-2 37 87.441329 hybrid +133_2-1 Q0 MARCO_21_211126644-1 38 87.436229 hybrid +133_2-1 Q0 MARCO_22_1121298839-2 39 87.427217 hybrid +133_2-1 Q0 MARCO_55_164773022-6 40 87.423429 hybrid +133_2-1 Q0 MARCO_14_1423713789-1 41 87.411791 hybrid +133_2-1 Q0 MARCO_21_1435489700-7 42 87.407526 hybrid +133_2-1 Q0 MARCO_21_1261023393-7 43 87.400729 hybrid +133_2-1 Q0 MARCO_47_128807292-1 44 87.399778 hybrid +133_2-1 Q0 MARCO_32_634315059-23 45 87.398829 hybrid +133_2-1 Q0 MARCO_29_563852884-19 46 87.385679 hybrid +133_2-1 Q0 MARCO_47_128448881-2 47 87.378229 hybrid +133_2-1 Q0 MARCO_24_546765656-1 48 87.372329 hybrid +133_2-1 Q0 MARCO_45_1643543469-2 49 87.371979 hybrid +133_2-1 Q0 MARCO_57_868356477-2 50 87.371691 hybrid +133_2-1 Q0 MARCO_45_1248075941-2 51 87.370974 hybrid +133_2-1 Q0 MARCO_51_480796629-1 52 87.369479 hybrid +133_2-1 Q0 MARCO_37_833369189-3 53 87.366831 hybrid +133_2-1 Q0 MARCO_21_281560079-2 54 87.359428 hybrid +133_2-1 Q0 MARCO_36_383149371-3 55 87.358522 hybrid +133_2-1 Q0 MARCO_06_1696189649-2 56 87.358179 hybrid +133_2-1 Q0 MARCO_45_1263586549-2 57 87.355692 hybrid +133_2-1 Q0 MARCO_55_73834164-1 58 87.354692 hybrid +133_2-1 Q0 MARCO_13_432922664-3 59 87.354456 hybrid +133_2-1 Q0 MARCO_31_780433059-17 60 87.350179 hybrid +133_2-1 Q0 MARCO_06_1264305390-189 61 87.341387 hybrid +133_2-1 Q0 MARCO_27_629831071-1 62 87.336479 hybrid +133_2-1 Q0 MARCO_07_551672159-1 63 87.331728 hybrid +133_2-1 Q0 MARCO_51_869119027-12 64 87.327679 hybrid +133_2-1 Q0 MARCO_25_1408794284-4 65 87.321390 hybrid +133_2-1 Q0 MARCO_58_237859030-22 66 87.320778 hybrid +133_2-1 Q0 MARCO_06_1166203891-55 67 87.320238 hybrid +133_2-1 Q0 MARCO_23_1608525395-1 68 87.315429 hybrid +133_2-1 Q0 MARCO_28_539216453-4 69 87.307825 hybrid +133_2-1 Q0 MARCO_12_873808971-11 70 87.307579 hybrid +133_2-1 Q0 MARCO_57_870538321-5 71 87.301943 hybrid +133_2-1 Q0 MARCO_26_67587950-56 72 87.296129 hybrid +133_2-1 Q0 MARCO_33_1124428677-2 73 87.295329 hybrid +133_2-1 Q0 MARCO_03_425357970-1 74 87.294679 hybrid +133_2-1 Q0 MARCO_01_1233002918-204 75 87.294079 hybrid +133_2-1 Q0 MARCO_06_1198450377-204 76 87.294078 hybrid +133_2-1 Q0 MARCO_55_164705146-7 77 87.293929 hybrid +133_2-1 Q0 MARCO_44_477659878-3 78 87.291254 hybrid +133_2-1 Q0 MARCO_37_169574387-3 79 87.288645 hybrid +133_2-1 Q0 MARCO_59_772291725-8 80 87.284044 hybrid +133_2-1 Q0 MARCO_58_1546792377-3 81 87.278229 hybrid +133_2-1 Q0 MARCO_33_1121697736-1 82 87.277678 hybrid +133_2-1 Q0 MARCO_44_310683367-2 83 87.273386 hybrid +133_2-1 Q0 MARCO_07_1130934713-2 84 87.271829 hybrid +133_2-1 Q0 MARCO_35_424222087-1 85 87.270563 hybrid +133_2-1 Q0 MARCO_24_1319827981-5 86 87.267379 hybrid +133_2-1 Q0 MARCO_44_605664172-5 87 87.266291 hybrid +133_2-1 Q0 MARCO_28_987132090-1 88 87.261522 hybrid +133_2-1 Q0 MARCO_37_172636373-13 89 87.257494 hybrid +133_2-1 Q0 MARCO_52_1182367217-3 90 87.256800 hybrid +133_2-1 Q0 MARCO_12_1861263060-5 91 87.255686 hybrid +133_2-1 Q0 MARCO_40_738609004-8 92 87.254587 hybrid +133_2-1 Q0 MARCO_23_29612823-7 93 87.252329 hybrid +133_2-1 Q0 MARCO_33_1137419020-4 94 87.249329 hybrid +133_2-1 Q0 MARCO_44_1856983307-4 95 87.247187 hybrid +133_2-1 Q0 MARCO_39_1146890282-1 96 87.246529 hybrid +133_2-1 Q0 MARCO_37_172467697-5 97 87.242403 hybrid +133_2-1 Q0 MARCO_40_174836733-4 98 87.239840 hybrid +133_2-1 Q0 MARCO_21_1023307685-9 99 87.237479 hybrid +133_2-1 Q0 MARCO_52_940507284-2 100 87.236479 hybrid +133_2-3 Q0 MARCO_31_1320467209-1 1 90.998007 hybrid +133_2-3 Q0 MARCO_20_1380187541-18 2 90.321567 hybrid +133_2-3 Q0 MARCO_45_636152506-1 3 89.935488 hybrid +133_2-3 Q0 MARCO_21_1039299162-1 4 89.888016 hybrid +133_2-3 Q0 MARCO_57_1553235055-1 5 89.885273 hybrid +133_2-3 Q0 MARCO_53_613269735-1 6 89.848166 hybrid +133_2-3 Q0 MARCO_09_485993912-2 7 89.795074 hybrid +133_2-3 Q0 MARCO_53_613248557-9 8 89.762169 hybrid +133_2-3 Q0 MARCO_29_1276940166-1 9 89.697674 hybrid +133_2-3 Q0 MARCO_04_686130362-5 10 89.687724 hybrid +133_2-3 Q0 MARCO_04_1043910897-1 11 89.581247 hybrid +133_2-3 Q0 MARCO_21_1040095444-1 12 89.580467 hybrid +133_2-3 Q0 MARCO_24_1842027267-1 13 89.540974 hybrid +133_2-3 Q0 MARCO_38_286379417-1 14 89.529624 hybrid +133_2-3 Q0 MARCO_31_941330245-4 15 89.527899 hybrid +133_2-3 Q0 MARCO_30_607381839-1 16 89.526754 hybrid +133_2-3 Q0 MARCO_25_1158848107-2 17 89.523594 hybrid +133_2-3 Q0 MARCO_24_620724330-2 18 89.519624 hybrid +133_2-3 Q0 MARCO_32_1165648680-9 19 89.517374 hybrid +133_2-3 Q0 MARCO_52_923089496-5 20 89.499373 hybrid +133_2-3 Q0 MARCO_34_78680335-1 21 89.485774 hybrid +133_2-3 Q0 MARCO_41_932084877-1 22 89.484674 hybrid +133_2-3 Q0 MARCO_58_854616617-1 23 89.481774 hybrid +133_2-3 Q0 MARCO_28_531575972-2 24 89.457470 hybrid +133_2-3 Q0 MARCO_22_116980262-1 25 89.450573 hybrid +133_2-3 Q0 MARCO_22_851655506-1 26 89.430573 hybrid +133_2-3 Q0 MARCO_28_340211372-3 27 89.407481 hybrid +133_2-3 Q0 MARCO_31_1156087527-5 28 89.380124 hybrid +133_2-3 Q0 MARCO_53_606754970-4 29 89.371974 hybrid +133_2-3 Q0 MARCO_25_783559615-4 30 89.368924 hybrid +133_2-3 Q0 MARCO_28_714818554-1 31 89.344874 hybrid +133_2-3 Q0 MARCO_31_1320467209-3 32 89.337968 hybrid +133_2-3 Q0 MARCO_32_1165648680-1 33 89.311924 hybrid +133_2-3 Q0 MARCO_58_846308228-2 34 89.306474 hybrid +133_2-3 Q0 MARCO_35_501435311-1 35 89.296574 hybrid +133_2-3 Q0 MARCO_38_1577666858-1 36 89.294474 hybrid +133_2-3 Q0 MARCO_30_140057120-1 37 89.285724 hybrid +133_2-3 Q0 MARCO_58_50181324-21 38 89.282574 hybrid +133_2-3 Q0 MARCO_28_265565874-1 39 89.281174 hybrid +133_2-3 Q0 MARCO_28_714818554-8 40 89.279124 hybrid +133_2-3 Q0 MARCO_03_935534459-1 41 89.256724 hybrid +133_2-3 Q0 MARCO_12_358195860-11 42 89.244814 hybrid +133_2-3 Q0 MARCO_49_1392374775-4 43 89.221774 hybrid +133_2-3 Q0 MARCO_52_631840442-2 44 89.204274 hybrid +133_2-3 Q0 MARCO_42_729601197-1 45 89.200324 hybrid +133_2-3 Q0 MARCO_42_1090077633-1 46 89.189551 hybrid +133_2-3 Q0 MARCO_03_935534459-2 47 89.142524 hybrid +133_2-3 Q0 MARCO_24_1219722929-3 48 89.116974 hybrid +133_2-3 Q0 MARCO_49_1392374775-1 49 89.086123 hybrid +133_2-3 Q0 MARCO_56_159920906-1 50 89.075774 hybrid +133_2-3 Q0 MARCO_49_1010572109-1 51 89.075374 hybrid +133_2-3 Q0 MARCO_23_1617440799-5 52 89.062223 hybrid +133_2-3 Q0 MARCO_00_397211596-1 53 89.061873 hybrid +133_2-3 Q0 MARCO_03_404055170-13 54 89.054324 hybrid +133_2-3 Q0 MARCO_42_1710298984-1 55 89.044673 hybrid +133_2-3 Q0 MARCO_24_1538440933-1 56 89.044474 hybrid +133_2-3 Q0 MARCO_40_1521346882-1 57 89.038774 hybrid +133_2-3 Q0 MARCO_24_1841901780-1 58 89.030074 hybrid +133_2-3 Q0 MARCO_20_1380187541-10 59 89.024794 hybrid +133_2-3 Q0 MARCO_58_675353474-28 60 89.019324 hybrid +133_2-3 Q0 MARCO_21_963848449-2 61 89.002414 hybrid +133_2-3 Q0 MARCO_41_2136142806-1 62 88.999373 hybrid +133_2-3 Q0 MARCO_07_997140642-1 63 88.989817 hybrid +133_2-3 Q0 MARCO_58_163346612-19 64 88.987874 hybrid +133_2-3 Q0 MARCO_53_575071251-1 65 88.979723 hybrid +133_2-3 Q0 MARCO_29_1520458058-2 66 88.957924 hybrid +133_2-3 Q0 MARCO_52_631840442-3 67 88.952124 hybrid +133_2-3 Q0 MARCO_15_1920642478-3 68 88.947724 hybrid +133_2-3 Q0 MARCO_21_856912396-2 69 88.945924 hybrid +133_2-3 Q0 MARCO_49_1359903726-4 70 88.933124 hybrid +133_2-3 Q0 MARCO_27_1184583210-5 71 88.932974 hybrid +133_2-3 Q0 MARCO_31_274484371-13 72 88.932274 hybrid +133_2-3 Q0 MARCO_20_1380187541-15 73 88.928119 hybrid +133_2-3 Q0 MARCO_23_1183830167-5 74 88.916224 hybrid +133_2-3 Q0 MARCO_41_2136142806-3 75 88.915224 hybrid +133_2-3 Q0 MARCO_49_1359903726-13 76 88.907773 hybrid +133_2-3 Q0 MARCO_45_1223914346-3 77 88.903824 hybrid +133_2-3 Q0 MARCO_26_836952161-1 78 88.890374 hybrid +133_2-3 Q0 MARCO_33_175590067-6 79 88.883696 hybrid +133_2-3 Q0 MARCO_23_1183648684-1 80 88.883374 hybrid +133_2-3 Q0 MARCO_02_616080436-6 81 88.877124 hybrid +133_2-3 Q0 MARCO_49_1392374775-2 82 88.874674 hybrid +133_2-3 Q0 MARCO_23_1360589767-3 83 88.874474 hybrid +133_2-3 Q0 MARCO_15_1920649376-1 84 88.864874 hybrid +133_2-3 Q0 MARCO_51_1234133322-6 85 88.853491 hybrid +133_2-3 Q0 MARCO_49_1359903726-6 86 88.852174 hybrid +133_2-3 Q0 MARCO_12_1183551060-3 87 88.851524 hybrid +133_2-3 Q0 MARCO_15_1920649376-2 88 88.850724 hybrid +133_2-3 Q0 MARCO_45_639747393-1 89 88.845424 hybrid +133_2-3 Q0 MARCO_28_265565874-2 90 88.844024 hybrid +133_2-3 Q0 MARCO_02_8956460-4 91 88.838524 hybrid +133_2-3 Q0 MARCO_23_1617842787-7 92 88.826024 hybrid +133_2-3 Q0 MARCO_30_500652419-3 93 88.821824 hybrid +133_2-3 Q0 MARCO_51_1495009927-1 94 88.820274 hybrid +133_2-3 Q0 MARCO_30_500652419-1 95 88.815924 hybrid +133_2-3 Q0 MARCO_13_166215815-7 96 88.815374 hybrid +133_2-3 Q0 MARCO_49_1369443200-10 97 88.813673 hybrid +133_2-3 Q0 MARCO_38_1707564475-19 98 88.809674 hybrid +133_2-3 Q0 MARCO_24_620724330-9 99 88.809524 hybrid +133_2-3 Q0 MARCO_08_801089296-4 100 88.807524 hybrid +133_3-2 Q0 MARCO_41_1847614301-2 1 89.424332 hybrid +133_3-2 Q0 MARCO_42_257610962-2 2 89.132834 hybrid +133_3-2 Q0 MARCO_13_429571872-5 3 89.098458 hybrid +133_3-2 Q0 MARCO_29_1587501579-1 4 88.872708 hybrid +133_3-2 Q0 MARCO_21_963020852-33 5 88.810775 hybrid +133_3-2 Q0 MARCO_42_1749404525-8 6 88.679980 hybrid +133_3-2 Q0 MARCO_22_710747250-8 7 88.674308 hybrid +133_3-2 Q0 MARCO_38_1465377746-1 8 88.641908 hybrid +133_3-2 Q0 MARCO_25_1167948093-1 9 88.624747 hybrid +133_3-2 Q0 MARCO_42_258270495-8 10 88.601408 hybrid +133_3-2 Q0 MARCO_07_622353478-3 11 88.594176 hybrid +133_3-2 Q0 MARCO_51_817080609-8 12 88.564689 hybrid +133_3-2 Q0 MARCO_37_839481202-3 13 88.555488 hybrid +133_3-2 Q0 MARCO_52_1207612281-3 14 88.540122 hybrid +133_3-2 Q0 MARCO_41_1847614301-3 15 88.533111 hybrid +133_3-2 Q0 MARCO_50_2836467817-4 16 88.525008 hybrid +133_3-2 Q0 MARCO_28_646688736-1 17 88.517358 hybrid +133_3-2 Q0 MARCO_13_141730204-4 18 88.509219 hybrid +133_3-2 Q0 MARCO_31_820609068-4 19 88.491508 hybrid +133_3-2 Q0 MARCO_12_1861101487-3 20 88.479062 hybrid +133_3-2 Q0 MARCO_52_1379647498-2 21 88.473907 hybrid +133_3-2 Q0 MARCO_12_1161299004-3 22 88.470925 hybrid +133_3-2 Q0 MARCO_29_31280170-2 23 88.468879 hybrid +133_3-2 Q0 MARCO_28_364409134-5 24 88.449358 hybrid +133_3-2 Q0 MARCO_48_1533246224-5 25 88.441508 hybrid +133_3-2 Q0 MARCO_11_233204509-2 26 88.425708 hybrid +133_3-2 Q0 MARCO_42_1090437973-5 27 88.406408 hybrid +133_3-2 Q0 MARCO_21_942199222-2 28 88.400558 hybrid +133_3-2 Q0 MARCO_30_1786500933-4 29 88.398708 hybrid +133_3-2 Q0 MARCO_00_1584661169-47 30 88.382537 hybrid +133_3-2 Q0 MARCO_58_1131456744-1 31 88.372858 hybrid +133_3-2 Q0 MARCO_50_254729862-17 32 88.369208 hybrid +133_3-2 Q0 MARCO_43_976875257-5 33 88.364258 hybrid +133_3-2 Q0 MARCO_52_1378630980-1 34 88.359443 hybrid +133_3-2 Q0 MARCO_26_274603977-1 35 88.356158 hybrid +133_3-2 Q0 MARCO_41_2091351272-2 36 88.352808 hybrid +133_3-2 Q0 MARCO_39_958124027-1 37 88.352058 hybrid +133_3-2 Q0 MARCO_02_831399706-3 38 88.350923 hybrid +133_3-2 Q0 MARCO_56_1317921108-1 39 88.346969 hybrid +133_3-2 Q0 MARCO_33_1202214293-14 40 88.345958 hybrid +133_3-2 Q0 MARCO_29_1370569511-5 41 88.344358 hybrid +133_3-2 Q0 MARCO_49_340350101-7 42 88.335808 hybrid +133_3-2 Q0 MARCO_52_1186887800-4 43 88.334632 hybrid +133_3-2 Q0 MARCO_48_1593873982-1 44 88.332206 hybrid +133_3-2 Q0 MARCO_41_2129778814-3 45 88.327948 hybrid +133_3-2 Q0 MARCO_52_1186887800-6 46 88.324416 hybrid +133_3-2 Q0 MARCO_21_958386119-13 47 88.322684 hybrid +133_3-2 Q0 MARCO_21_962638497-23 48 88.319747 hybrid +133_3-2 Q0 MARCO_47_541826574-12 49 88.314458 hybrid +133_3-2 Q0 MARCO_13_419575271-5 50 88.309658 hybrid +133_3-2 Q0 MARCO_41_1098695700-29 51 88.303858 hybrid +133_3-2 Q0 MARCO_31_816944903-2 52 88.302508 hybrid +133_3-2 Q0 MARCO_14_229813431-6 53 88.301558 hybrid +133_3-2 Q0 MARCO_33_1204802915-15 54 88.300108 hybrid +133_3-2 Q0 MARCO_28_1648046897-5 55 88.292908 hybrid +133_3-2 Q0 MARCO_51_542250465-10 56 88.291008 hybrid +133_3-2 Q0 MARCO_42_258270495-10 57 88.289658 hybrid +133_3-2 Q0 MARCO_46_12087807-2 58 88.270301 hybrid +133_3-2 Q0 MARCO_52_1186887800-7 59 88.268790 hybrid +133_3-2 Q0 MARCO_51_817072979-2 60 88.264777 hybrid +133_3-2 Q0 MARCO_06_1653480130-12 61 88.263175 hybrid +133_3-2 Q0 MARCO_33_176858642-30 62 88.262961 hybrid +133_3-2 Q0 MARCO_31_807253227-8 63 88.262608 hybrid +133_3-2 Q0 MARCO_43_747853505-5 64 88.260436 hybrid +133_3-2 Q0 MARCO_43_747853505-7 65 88.257171 hybrid +133_3-2 Q0 MARCO_37_191894298-2 66 88.253008 hybrid +133_3-2 Q0 MARCO_36_1287798402-9 67 88.252658 hybrid +133_3-2 Q0 MARCO_33_175521909-14 68 88.238975 hybrid +133_3-2 Q0 MARCO_43_747853505-8 69 88.233512 hybrid +133_3-2 Q0 MARCO_56_84164625-8 70 88.231108 hybrid +133_3-2 Q0 MARCO_23_961678317-19 71 88.227308 hybrid +133_3-2 Q0 MARCO_46_12563667-3 72 88.226661 hybrid +133_3-2 Q0 MARCO_27_1183858223-1 73 88.222958 hybrid +133_3-2 Q0 MARCO_54_95841051-8 74 88.212813 hybrid +133_3-2 Q0 MARCO_23_1415989434-7 75 88.212758 hybrid +133_3-2 Q0 MARCO_04_777443159-31 76 88.207058 hybrid +133_3-2 Q0 MARCO_50_2156264634-26 77 88.204284 hybrid +133_3-2 Q0 MARCO_00_1584661169-44 78 88.202575 hybrid +133_3-2 Q0 MARCO_29_165314127-9 79 88.200408 hybrid +133_3-2 Q0 MARCO_47_97926714-2 80 88.194458 hybrid +133_3-2 Q0 MARCO_37_839481202-2 81 88.186950 hybrid +133_3-2 Q0 MARCO_42_1025596866-8 82 88.186758 hybrid +133_3-2 Q0 MARCO_20_1587212315-6 83 88.181907 hybrid +133_3-2 Q0 MARCO_43_747853505-6 84 88.177123 hybrid +133_3-2 Q0 MARCO_52_1378433154-6 85 88.173049 hybrid +133_3-2 Q0 MARCO_52_1207612281-2 86 88.172362 hybrid +133_3-2 Q0 MARCO_20_17897970-3 87 88.168761 hybrid +133_3-2 Q0 MARCO_47_97926714-6 88 88.164958 hybrid +133_3-2 Q0 MARCO_46_1227487864-8 89 88.161908 hybrid +133_3-2 Q0 MARCO_42_259937908-10 90 88.154908 hybrid +133_3-2 Q0 MARCO_00_1584661169-37 91 88.151816 hybrid +133_3-2 Q0 MARCO_37_191257609-2 92 88.149908 hybrid +133_3-2 Q0 MARCO_31_422308754-14 93 88.149408 hybrid +133_3-2 Q0 MARCO_47_97926714-3 94 88.146208 hybrid +133_3-2 Q0 MARCO_06_1354095990-10 95 88.146058 hybrid +133_3-2 Q0 MARCO_12_1861739069-5 96 88.137877 hybrid +133_3-2 Q0 MARCO_43_747853505-2 97 88.135818 hybrid +133_3-2 Q0 MARCO_31_422308754-5 98 88.130208 hybrid +133_3-2 Q0 MARCO_27_1108903667-5 99 88.120414 hybrid +133_3-2 Q0 MARCO_12_1861101487-4 100 88.118827 hybrid +133_3-4 Q0 MARCO_09_647358937-8 1 90.906839 hybrid +133_3-4 Q0 MARCO_33_1249167428-3 2 90.802090 hybrid +133_3-4 Q0 MARCO_25_262671939-2 3 90.633240 hybrid +133_3-4 Q0 MARCO_47_521703086-1 4 90.444639 hybrid +133_3-4 Q0 MARCO_24_1861587724-1 5 90.386789 hybrid +133_3-4 Q0 MARCO_12_1183093643-2 6 90.319989 hybrid +133_3-4 Q0 MARCO_40_1422909687-32 7 90.072239 hybrid +133_3-4 Q0 MARCO_09_647348347-2 8 90.025339 hybrid +133_3-4 Q0 MARCO_40_1466793455-46 9 90.010139 hybrid +133_3-4 Q0 MARCO_09_647500476-2 10 89.956889 hybrid +133_3-4 Q0 MARCO_32_1308124451-15 11 89.954189 hybrid +133_3-4 Q0 MARCO_09_647422432-9 12 89.951189 hybrid +133_3-4 Q0 MARCO_43_383263971-3 13 89.933489 hybrid +133_3-4 Q0 MARCO_55_206603648-5 14 89.873439 hybrid +133_3-4 Q0 MARCO_50_2486108188-55 15 89.844817 hybrid +133_3-4 Q0 MARCO_20_445412957-3 16 89.799639 hybrid +133_3-4 Q0 MARCO_33_1249167428-5 17 89.771189 hybrid +133_3-4 Q0 MARCO_32_1476583679-9 18 89.647089 hybrid +133_3-4 Q0 MARCO_41_389190689-2 19 89.633339 hybrid +133_3-4 Q0 MARCO_32_1393588601-14 20 89.624339 hybrid +133_3-4 Q0 MARCO_22_533606299-4 21 89.619889 hybrid +133_3-4 Q0 MARCO_09_647486756-6 22 89.609739 hybrid +133_3-4 Q0 MARCO_41_2141321647-34 23 89.573939 hybrid +133_3-4 Q0 MARCO_52_1346393530-3 24 89.565989 hybrid +133_3-4 Q0 MARCO_09_647318725-3 25 89.543589 hybrid +133_3-4 Q0 MARCO_32_1598525218-11 26 89.539389 hybrid +133_3-4 Q0 MARCO_20_1410388206-4 27 89.535389 hybrid +133_3-4 Q0 MARCO_29_1528427220-1 28 89.529289 hybrid +133_3-4 Q0 MARCO_32_1491500570-7 29 89.529039 hybrid +133_3-4 Q0 MARCO_46_1244401254-1 30 89.516589 hybrid +133_3-4 Q0 MARCO_40_1488869611-50 31 89.511989 hybrid +133_3-4 Q0 MARCO_09_647468143-3 32 89.487439 hybrid +133_3-4 Q0 MARCO_49_111337307-2 33 89.483539 hybrid +133_3-4 Q0 MARCO_50_245815671-3 34 89.480739 hybrid +133_3-4 Q0 MARCO_48_63285570-2 35 89.469989 hybrid +133_3-4 Q0 MARCO_35_242765430-9 36 89.456689 hybrid +133_3-4 Q0 MARCO_58_68967561-3 37 89.445139 hybrid +133_3-4 Q0 MARCO_40_1417697939-74 38 89.444339 hybrid +133_3-4 Q0 MARCO_30_1600937428-2 39 89.442889 hybrid +133_3-4 Q0 MARCO_14_1430151672-5 40 89.428989 hybrid +133_3-4 Q0 MARCO_40_1443610107-67 41 89.423889 hybrid +133_3-4 Q0 MARCO_40_1412356360-5 42 89.416739 hybrid +133_3-4 Q0 MARCO_32_1376321448-12 43 89.401989 hybrid +133_3-4 Q0 MARCO_09_647574508-3 44 89.388889 hybrid +133_3-4 Q0 MARCO_40_1420789086-9 45 89.383239 hybrid +133_3-4 Q0 MARCO_33_1163477676-2 46 89.381189 hybrid +133_3-4 Q0 MARCO_09_647507223-4 47 89.368789 hybrid +133_3-4 Q0 MARCO_09_647442524-5 48 89.359739 hybrid +133_3-4 Q0 MARCO_09_647461262-3 49 89.359739 hybrid +133_3-4 Q0 MARCO_09_647536750-4 50 89.348489 hybrid +133_3-4 Q0 MARCO_09_647569303-3 51 89.348489 hybrid +133_3-4 Q0 MARCO_45_635806329-2 52 89.340564 hybrid +133_3-4 Q0 MARCO_13_947745675-11 53 89.339239 hybrid +133_3-4 Q0 MARCO_09_647562261-4 54 89.333939 hybrid +133_3-4 Q0 MARCO_44_354188337-1 55 89.330040 hybrid +133_3-4 Q0 MARCO_54_475483157-8 56 89.328189 hybrid +133_3-4 Q0 MARCO_40_1489056172-36 57 89.323889 hybrid +133_3-4 Q0 MARCO_32_1506797268-10 58 89.308189 hybrid +133_3-4 Q0 MARCO_01_685761764-1 59 89.304189 hybrid +133_3-4 Q0 MARCO_43_164977078-1 60 89.291489 hybrid +133_3-4 Q0 MARCO_44_338807215-3 61 89.282839 hybrid +133_3-4 Q0 MARCO_22_1577793079-3 62 89.261562 hybrid +133_3-4 Q0 MARCO_41_544261583-1 63 89.261239 hybrid +133_3-4 Q0 MARCO_28_1148044427-2 64 89.250749 hybrid +133_3-4 Q0 MARCO_40_1421620185-20 65 89.248389 hybrid +133_3-4 Q0 MARCO_37_1248361486-16 66 89.248065 hybrid +133_3-4 Q0 MARCO_44_104603967-4 67 89.245289 hybrid +133_3-4 Q0 MARCO_10_865816082-5 68 89.231639 hybrid +133_3-4 Q0 MARCO_40_1422428000-19 69 89.229139 hybrid +133_3-4 Q0 MARCO_47_521703086-2 70 89.228589 hybrid +133_3-4 Q0 MARCO_30_324850487-14 71 89.228589 hybrid +133_3-4 Q0 MARCO_24_1225244674-8 72 89.227739 hybrid +133_3-4 Q0 MARCO_32_1393652991-13 73 89.223739 hybrid +133_3-4 Q0 MARCO_27_1770345942-2 74 89.221027 hybrid +133_3-4 Q0 MARCO_25_262671939-1 75 89.218639 hybrid +133_3-4 Q0 MARCO_36_1749715151-4 76 89.217739 hybrid +133_3-4 Q0 MARCO_24_1222028986-8 77 89.215939 hybrid +133_3-4 Q0 MARCO_44_338807215-1 78 89.212989 hybrid +133_3-4 Q0 MARCO_32_1393609685-12 79 89.210739 hybrid +133_3-4 Q0 MARCO_52_1346558059-27 80 89.207039 hybrid +133_3-4 Q0 MARCO_48_63285570-9 81 89.205789 hybrid +133_3-4 Q0 MARCO_54_1784076239-1 82 89.205739 hybrid +133_3-4 Q0 MARCO_32_1393609685-16 83 89.200639 hybrid +133_3-4 Q0 MARCO_30_1189950163-6 84 89.196739 hybrid +133_3-4 Q0 MARCO_40_1521300842-3 85 89.196739 hybrid +133_3-4 Q0 MARCO_11_1540230888-8 86 89.196140 hybrid +133_3-4 Q0 MARCO_09_647296300-14 87 89.195239 hybrid +133_3-4 Q0 MARCO_32_1476583679-11 88 89.194839 hybrid +133_3-4 Q0 MARCO_31_232392622-4 89 89.191489 hybrid +133_3-4 Q0 MARCO_32_1514487227-8 90 89.188639 hybrid +133_3-4 Q0 MARCO_40_1422841727-21 91 89.186739 hybrid +133_3-4 Q0 MARCO_44_306123956-5 92 89.176967 hybrid +133_3-4 Q0 MARCO_55_657652197-6 93 89.164989 hybrid +133_3-4 Q0 MARCO_44_302607124-3 94 89.150280 hybrid +133_3-4 Q0 MARCO_41_117772799-5 95 89.147939 hybrid +133_3-4 Q0 MARCO_48_63285570-11 96 89.145939 hybrid +133_3-4 Q0 MARCO_02_616080436-6 97 89.138889 hybrid +133_3-4 Q0 MARCO_43_256909549-7 98 89.137589 hybrid +133_3-4 Q0 MARCO_13_320946250-4 99 89.134269 hybrid +133_3-4 Q0 MARCO_13_320946250-6 100 89.134269 hybrid +133_3-6 Q0 MARCO_54_1784076239-1 1 92.961514 hybrid +133_3-6 Q0 MARCO_38_614263928-4 2 92.890715 hybrid +133_3-6 Q0 MARCO_10_1112057649-17 3 92.681664 hybrid +133_3-6 Q0 MARCO_20_445412957-3 4 92.629464 hybrid +133_3-6 Q0 MARCO_12_1463113724-1 5 92.559014 hybrid +133_3-6 Q0 MARCO_05_1594891397-2 6 92.539115 hybrid +133_3-6 Q0 MARCO_28_340191593-5 7 92.508250 hybrid +133_3-6 Q0 MARCO_31_14559616-7 8 92.502654 hybrid +133_3-6 Q0 MARCO_12_1463113724-16 9 92.468864 hybrid +133_3-6 Q0 MARCO_20_445538889-4 10 92.464865 hybrid +133_3-6 Q0 MARCO_24_1074238301-4 11 92.433265 hybrid +133_3-6 Q0 MARCO_31_14559616-9 12 92.429918 hybrid +133_3-6 Q0 MARCO_12_1850147072-2 13 92.423221 hybrid +133_3-6 Q0 MARCO_34_1308415921-4 14 92.420864 hybrid +133_3-6 Q0 MARCO_31_819013609-1 15 92.413164 hybrid +133_3-6 Q0 MARCO_52_1346393530-3 16 92.385565 hybrid +133_3-6 Q0 MARCO_12_1463084501-2 17 92.338815 hybrid +133_3-6 Q0 MARCO_31_819013609-2 18 92.315914 hybrid +133_3-6 Q0 MARCO_12_1383302303-10 19 92.299765 hybrid +133_3-6 Q0 MARCO_23_1415106009-7 20 92.270214 hybrid +133_3-6 Q0 MARCO_03_212023070-12 21 92.204715 hybrid +133_3-6 Q0 MARCO_45_1223837152-3 22 92.144014 hybrid +133_3-6 Q0 MARCO_41_2141321647-34 23 92.139865 hybrid +133_3-6 Q0 MARCO_58_105794544-8 24 92.127014 hybrid +133_3-6 Q0 MARCO_50_1330953809-3 25 92.115214 hybrid +133_3-6 Q0 MARCO_29_1528427220-1 26 92.086615 hybrid +133_3-6 Q0 MARCO_41_2078271967-5 27 92.085514 hybrid +133_3-6 Q0 MARCO_23_1638240206-4 28 92.043864 hybrid +133_3-6 Q0 MARCO_58_846384298-14 29 92.017164 hybrid +133_3-6 Q0 MARCO_05_874163613-1 30 91.967264 hybrid +133_3-6 Q0 MARCO_20_481786852-3 31 91.964858 hybrid +133_3-6 Q0 MARCO_53_589486637-6 32 91.947564 hybrid +133_3-6 Q0 MARCO_06_1456087722-3 33 91.920315 hybrid +133_3-6 Q0 MARCO_49_1392740537-23 34 91.920065 hybrid +133_3-6 Q0 MARCO_49_221159351-4 35 91.910439 hybrid +133_3-6 Q0 MARCO_38_615042540-4 36 91.906714 hybrid +133_3-6 Q0 MARCO_12_1463084501-6 37 91.905364 hybrid +133_3-6 Q0 MARCO_56_1510139232-2 38 91.883505 hybrid +133_3-6 Q0 MARCO_33_1296663392-6 39 91.875315 hybrid +133_3-6 Q0 MARCO_57_1519426546-3 40 91.852115 hybrid +133_3-6 Q0 MARCO_34_1308471758-3 41 91.844415 hybrid +133_3-6 Q0 MARCO_03_150328208-20 42 91.822015 hybrid +133_3-6 Q0 MARCO_54_178224608-7 43 91.821164 hybrid +133_3-6 Q0 MARCO_49_221330702-6 44 91.815213 hybrid +133_3-6 Q0 MARCO_32_1369107949-6 45 91.814364 hybrid +133_3-6 Q0 MARCO_32_1567412894-7 46 91.811264 hybrid +133_3-6 Q0 MARCO_48_33132735-2 47 91.802514 hybrid +133_3-6 Q0 MARCO_33_1249167428-3 48 91.800565 hybrid +133_3-6 Q0 MARCO_43_164977078-1 49 91.798864 hybrid +133_3-6 Q0 MARCO_33_500264550-1 50 91.775564 hybrid +133_3-6 Q0 MARCO_09_820490219-10 51 91.774764 hybrid +133_3-6 Q0 MARCO_32_1348121947-14 52 91.760964 hybrid +133_3-6 Q0 MARCO_48_1133824500-3 53 91.756265 hybrid +133_3-6 Q0 MARCO_49_111337307-2 54 91.755164 hybrid +133_3-6 Q0 MARCO_21_822357894-6 55 91.742464 hybrid +133_3-6 Q0 MARCO_48_33132735-1 56 91.741764 hybrid +133_3-6 Q0 MARCO_48_63285570-8 57 91.730214 hybrid +133_3-6 Q0 MARCO_15_1872813287-3 58 91.726315 hybrid +133_3-6 Q0 MARCO_01_685761764-1 59 91.721564 hybrid +133_3-6 Q0 MARCO_12_1463084501-8 60 91.720015 hybrid +133_3-6 Q0 MARCO_38_305400173-6 61 91.705014 hybrid +133_3-6 Q0 MARCO_48_63285570-1 62 91.692965 hybrid +133_3-6 Q0 MARCO_43_394270543-5 63 91.682514 hybrid +133_3-6 Q0 MARCO_55_894772392-15 64 91.663264 hybrid +133_3-6 Q0 MARCO_33_1163477676-2 65 91.650015 hybrid +133_3-6 Q0 MARCO_38_614263928-3 66 91.646614 hybrid +133_3-6 Q0 MARCO_48_63285570-10 67 91.646515 hybrid +133_3-6 Q0 MARCO_28_370332679-5 68 91.636865 hybrid +133_3-6 Q0 MARCO_56_1773599878-5 69 91.636814 hybrid +133_3-6 Q0 MARCO_12_1463786556-14 70 91.634415 hybrid +133_3-6 Q0 MARCO_38_1529230263-3 71 91.632315 hybrid +133_3-6 Q0 MARCO_21_281535220-1 72 91.617214 hybrid +133_3-6 Q0 MARCO_38_287433918-4 73 91.617114 hybrid +133_3-6 Q0 MARCO_12_1463113724-10 74 91.615564 hybrid +133_3-6 Q0 MARCO_28_336042308-3 75 91.609512 hybrid +133_3-6 Q0 MARCO_37_1248361486-16 76 91.608500 hybrid +133_3-6 Q0 MARCO_12_1300924370-6 77 91.607664 hybrid +133_3-6 Q0 MARCO_03_150328208-8 78 91.597764 hybrid +133_3-6 Q0 MARCO_46_807680042-3 79 91.596814 hybrid +133_3-6 Q0 MARCO_39_1159132060-1 80 91.596114 hybrid +133_3-6 Q0 MARCO_29_1528427220-2 81 91.595064 hybrid +133_3-6 Q0 MARCO_53_840405462-3 82 91.587964 hybrid +133_3-6 Q0 MARCO_28_336460959-6 83 91.585264 hybrid +133_3-6 Q0 MARCO_33_1249167428-1 84 91.582615 hybrid +133_3-6 Q0 MARCO_05_1594845775-12 85 91.580814 hybrid +133_3-6 Q0 MARCO_58_68967561-16 86 91.578565 hybrid +133_3-6 Q0 MARCO_06_930126463-1 87 91.570664 hybrid +133_3-6 Q0 MARCO_49_111337307-1 88 91.567064 hybrid +133_3-6 Q0 MARCO_55_894772392-3 89 91.564414 hybrid +133_3-6 Q0 MARCO_30_1189950163-6 90 91.563114 hybrid +133_3-6 Q0 MARCO_58_1112571409-1 91 91.559864 hybrid +133_3-6 Q0 MARCO_01_1679207279-5 92 91.557117 hybrid +133_3-6 Q0 MARCO_48_495082889-17 93 91.556965 hybrid +133_3-6 Q0 MARCO_20_533084860-14 94 91.549865 hybrid +133_3-6 Q0 MARCO_30_465672706-10 95 91.548164 hybrid +133_3-6 Q0 MARCO_28_715126725-9 96 91.545765 hybrid +133_3-6 Q0 MARCO_48_63285570-6 97 91.526964 hybrid +133_3-6 Q0 MARCO_47_521703086-1 98 91.519065 hybrid +133_3-6 Q0 MARCO_52_1015556282-4 99 91.517665 hybrid +133_3-6 Q0 MARCO_12_1400225244-11 100 91.510015 hybrid +133_3-8 Q0 MARCO_41_2141321647-65 1 95.221531 hybrid +133_3-8 Q0 MARCO_25_1839354923-1 2 95.189731 hybrid +133_3-8 Q0 MARCO_59_252114185-5 3 94.993382 hybrid +133_3-8 Q0 MARCO_21_1041386698-14 4 94.967335 hybrid +133_3-8 Q0 MARCO_27_533277848-7 5 94.817680 hybrid +133_3-8 Q0 MARCO_22_1214874541-1 6 94.768534 hybrid +133_3-8 Q0 MARCO_15_811940538-3 7 94.756831 hybrid +133_3-8 Q0 MARCO_54_1641052472-4 8 94.692981 hybrid +133_3-8 Q0 MARCO_05_1594891397-1 9 94.642931 hybrid +133_3-8 Q0 MARCO_12_1850137591-1 10 94.536196 hybrid +133_3-8 Q0 MARCO_58_846384298-1 11 94.524531 hybrid +133_3-8 Q0 MARCO_22_533606299-7 12 94.311281 hybrid +133_3-8 Q0 MARCO_06_203465624-7 13 94.310181 hybrid +133_3-8 Q0 MARCO_47_1517993602-1 14 94.308381 hybrid +133_3-8 Q0 MARCO_15_800204751-3 15 94.247831 hybrid +133_3-8 Q0 MARCO_47_294648972-8 16 94.235436 hybrid +133_3-8 Q0 MARCO_58_846384298-2 17 94.185581 hybrid +133_3-8 Q0 MARCO_54_1784168347-2 18 94.170581 hybrid +133_3-8 Q0 MARCO_58_574441320-19 19 94.154681 hybrid +133_3-8 Q0 MARCO_30_248733071-4 20 94.143881 hybrid +133_3-8 Q0 MARCO_48_1150369278-3 21 94.132348 hybrid +133_3-8 Q0 MARCO_15_800204751-2 22 94.110381 hybrid +133_3-8 Q0 MARCO_39_1156345664-1 23 94.104031 hybrid +133_3-8 Q0 MARCO_59_252114185-10 24 94.089431 hybrid +133_3-8 Q0 MARCO_21_1040699672-2 25 94.084635 hybrid +133_3-8 Q0 MARCO_48_515139000-5 26 94.002770 hybrid +133_3-8 Q0 MARCO_00_44835598-3 27 93.997131 hybrid +133_3-8 Q0 MARCO_38_1530483363-4 28 93.965581 hybrid +133_3-8 Q0 MARCO_37_1248361486-16 29 93.958856 hybrid +133_3-8 Q0 MARCO_22_117511656-5 30 93.947481 hybrid +133_3-8 Q0 MARCO_41_2141321647-34 31 93.921231 hybrid +133_3-8 Q0 MARCO_23_1184191398-7 32 93.919631 hybrid +133_3-8 Q0 MARCO_27_532853836-2 33 93.902749 hybrid +133_3-8 Q0 MARCO_49_221200478-4 34 93.885690 hybrid +133_3-8 Q0 MARCO_21_1041386698-2 35 93.879777 hybrid +133_3-8 Q0 MARCO_22_1000023865-1 36 93.816377 hybrid +133_3-8 Q0 MARCO_22_1214824629-6 37 93.815681 hybrid +133_3-8 Q0 MARCO_09_915571544-4 38 93.809731 hybrid +133_3-8 Q0 MARCO_22_1000023865-6 39 93.808572 hybrid +133_3-8 Q0 MARCO_21_1041386698-8 40 93.796113 hybrid +133_3-8 Q0 MARCO_56_1503709689-10 41 93.794731 hybrid +133_3-8 Q0 MARCO_54_1474079817-1 42 93.781846 hybrid +133_3-8 Q0 MARCO_25_635390250-1 43 93.769081 hybrid +133_3-8 Q0 MARCO_41_2078271967-1 44 93.760331 hybrid +133_3-8 Q0 MARCO_47_516281976-2 45 93.752431 hybrid +133_3-8 Q0 MARCO_33_174143347-5 46 93.748292 hybrid +133_3-8 Q0 MARCO_55_1295547228-5 47 93.748081 hybrid +133_3-8 Q0 MARCO_22_1000016457-5 48 93.747468 hybrid +133_3-8 Q0 MARCO_12_203208468-3 49 93.736331 hybrid +133_3-8 Q0 MARCO_36_567014926-7 50 93.733038 hybrid +133_3-8 Q0 MARCO_37_520318622-3 51 93.725981 hybrid +133_3-8 Q0 MARCO_30_98872743-2 52 93.725518 hybrid +133_3-8 Q0 MARCO_21_1041279300-6 53 93.724862 hybrid +133_3-8 Q0 MARCO_30_98872743-1 54 93.724053 hybrid +133_3-8 Q0 MARCO_54_1782877080-1 55 93.705581 hybrid +133_3-8 Q0 MARCO_30_128962525-2 56 93.702690 hybrid +133_3-8 Q0 MARCO_27_533102350-14 57 93.696985 hybrid +133_3-8 Q0 MARCO_12_358164665-14 58 93.690217 hybrid +133_3-8 Q0 MARCO_57_1308038062-1 59 93.690181 hybrid +133_3-8 Q0 MARCO_21_1044839871-17 60 93.688219 hybrid +133_3-8 Q0 MARCO_50_1576239427-1 61 93.684631 hybrid +133_3-8 Q0 MARCO_54_179087980-9 62 93.680673 hybrid +133_3-8 Q0 MARCO_54_1782403778-2 63 93.678782 hybrid +133_3-8 Q0 MARCO_12_358164665-5 64 93.673051 hybrid +133_3-8 Q0 MARCO_54_179087980-2 65 93.671380 hybrid +133_3-8 Q0 MARCO_46_279276893-2 66 93.668282 hybrid +133_3-8 Q0 MARCO_59_837931325-2 67 93.664531 hybrid +133_3-8 Q0 MARCO_42_256962339-2 68 93.656014 hybrid +133_3-8 Q0 MARCO_25_657968517-17 69 93.655731 hybrid +133_3-8 Q0 MARCO_39_1156271407-2 70 93.654531 hybrid +133_3-8 Q0 MARCO_12_358209854-5 71 93.652734 hybrid +133_3-8 Q0 MARCO_10_1535307000-1 72 93.646681 hybrid +133_3-8 Q0 MARCO_54_1645150241-6 73 93.643723 hybrid +133_3-8 Q0 MARCO_06_1865534075-2 74 93.641603 hybrid +133_3-8 Q0 MARCO_59_252114185-12 75 93.624931 hybrid +133_3-8 Q0 MARCO_35_494736271-3 76 93.623281 hybrid +133_3-8 Q0 MARCO_26_75566714-9 77 93.622895 hybrid +133_3-8 Q0 MARCO_02_539378943-3 78 93.622781 hybrid +133_3-8 Q0 MARCO_21_1040579258-3 79 93.620233 hybrid +133_3-8 Q0 MARCO_59_39247210-2 80 93.617581 hybrid +133_3-8 Q0 MARCO_12_357889624-2 81 93.615982 hybrid +133_3-8 Q0 MARCO_57_2142498402-18 82 93.610513 hybrid +133_3-8 Q0 MARCO_01_1679282652-4 83 93.593681 hybrid +133_3-8 Q0 MARCO_00_682569184-29 84 93.585281 hybrid +133_3-8 Q0 MARCO_35_494682519-4 85 93.584131 hybrid +133_3-8 Q0 MARCO_23_352996215-2 86 93.582631 hybrid +133_3-8 Q0 MARCO_33_1243354686-13 87 93.570008 hybrid +133_3-8 Q0 MARCO_21_1041040930-3 88 93.567292 hybrid +133_3-8 Q0 MARCO_00_672075635-1 89 93.565931 hybrid +133_3-8 Q0 MARCO_49_968080162-5 90 93.565759 hybrid +133_3-8 Q0 MARCO_58_280644784-8 91 93.553468 hybrid +133_3-8 Q0 MARCO_13_1567016362-6 92 93.552881 hybrid +133_3-8 Q0 MARCO_08_84973183-19 93 93.548898 hybrid +133_3-8 Q0 MARCO_49_897670229-3 94 93.548081 hybrid +133_3-8 Q0 MARCO_23_652150045-7 95 93.547631 hybrid +133_3-8 Q0 MARCO_44_463963601-2 96 93.542960 hybrid +133_3-8 Q0 MARCO_21_1040662018-4 97 93.542039 hybrid +133_3-8 Q0 MARCO_41_2130724642-2 98 93.539720 hybrid +133_3-8 Q0 MARCO_13_1413175737-11 99 93.537131 hybrid +133_3-8 Q0 MARCO_49_221222154-6 100 93.534593 hybrid +134_1-1 Q0 MARCO_42_324634806-29 1 89.182968 hybrid +134_1-1 Q0 MARCO_43_1521332427-2 2 88.832036 hybrid +134_1-1 Q0 MARCO_58_1006573867-2 3 88.826268 hybrid +134_1-1 Q0 MARCO_43_1521332427-1 4 88.618337 hybrid +134_1-1 Q0 MARCO_35_809364331-1 5 88.532486 hybrid +134_1-1 Q0 MARCO_55_681131262-6 6 88.446315 hybrid +134_1-1 Q0 MARCO_33_98122006-3 7 88.216786 hybrid +134_1-1 Q0 MARCO_40_1646248045-10 8 88.215036 hybrid +134_1-1 Q0 MARCO_33_1577644476-1 9 88.162736 hybrid +134_1-1 Q0 MARCO_47_1302772421-2 10 88.151737 hybrid +134_1-1 Q0 MARCO_58_1008057483-12 11 88.127453 hybrid +134_1-1 Q0 MARCO_59_629018907-2 12 88.087936 hybrid +134_1-1 Q0 MARCO_55_681195067-7 13 88.078282 hybrid +134_1-1 Q0 MARCO_55_1597758959-8 14 88.060037 hybrid +134_1-1 Q0 MARCO_21_46886089-10 15 88.053687 hybrid +134_1-1 Q0 MARCO_14_482895059-3 16 88.038617 hybrid +134_1-1 Q0 MARCO_06_692273477-4 17 88.035275 hybrid +134_1-1 Q0 MARCO_55_681195067-6 18 88.030484 hybrid +134_1-1 Q0 MARCO_21_1318975980-1 19 88.023837 hybrid +134_1-1 Q0 MARCO_38_1661011384-6 20 88.004187 hybrid +134_1-1 Q0 MARCO_55_842795711-1 21 88.000687 hybrid +134_1-1 Q0 MARCO_48_1708398599-2 22 87.988687 hybrid +134_1-1 Q0 MARCO_31_1736624433-1 23 87.975737 hybrid +134_1-1 Q0 MARCO_45_141802555-2 24 87.957425 hybrid +134_1-1 Q0 MARCO_06_692273477-5 25 87.954175 hybrid +134_1-1 Q0 MARCO_56_456809557-4 26 87.949942 hybrid +134_1-1 Q0 MARCO_31_352755696-1 27 87.946587 hybrid +134_1-1 Q0 MARCO_55_681172170-7 28 87.946118 hybrid +134_1-1 Q0 MARCO_40_559279113-10 29 87.942860 hybrid +134_1-1 Q0 MARCO_55_681131262-2 30 87.928776 hybrid +134_1-1 Q0 MARCO_50_1676044543-12 31 87.922136 hybrid +134_1-1 Q0 MARCO_12_1404754546-9 32 87.921186 hybrid +134_1-1 Q0 MARCO_12_1142979423-16 33 87.915687 hybrid +134_1-1 Q0 MARCO_32_1369573051-15 34 87.891987 hybrid +134_1-1 Q0 MARCO_50_1419718645-70 35 87.888353 hybrid +134_1-1 Q0 MARCO_24_1520215941-43 36 87.874387 hybrid +134_1-1 Q0 MARCO_34_818893447-3 37 87.874337 hybrid +134_1-1 Q0 MARCO_36_900453075-2 38 87.870592 hybrid +134_1-1 Q0 MARCO_55_681109595-6 39 87.868908 hybrid +134_1-1 Q0 MARCO_35_809432927-1 40 87.868546 hybrid +134_1-1 Q0 MARCO_28_655536110-9 41 87.862263 hybrid +134_1-1 Q0 MARCO_59_883887243-7 42 87.860989 hybrid +134_1-1 Q0 MARCO_33_76786222-41 43 87.851487 hybrid +134_1-1 Q0 MARCO_35_331546391-3 44 87.850377 hybrid +134_1-1 Q0 MARCO_55_681172170-10 45 87.847111 hybrid +134_1-1 Q0 MARCO_58_1008698955-8 46 87.817112 hybrid +134_1-1 Q0 MARCO_23_905165121-2 47 87.817037 hybrid +134_1-1 Q0 MARCO_27_1755745313-4 48 87.812115 hybrid +134_1-1 Q0 MARCO_49_924142507-20 49 87.809937 hybrid +134_1-1 Q0 MARCO_21_46847415-11 50 87.799837 hybrid +134_1-1 Q0 MARCO_33_463873175-1 51 87.791487 hybrid +134_1-1 Q0 MARCO_53_1514052628-4 52 87.788983 hybrid +134_1-1 Q0 MARCO_36_884253134-6 53 87.787086 hybrid +134_1-1 Q0 MARCO_57_312809570-3 54 87.783687 hybrid +134_1-1 Q0 MARCO_47_650811545-10 55 87.779437 hybrid +134_1-1 Q0 MARCO_11_743650731-4 56 87.776886 hybrid +134_1-1 Q0 MARCO_42_1097508216-11 57 87.770726 hybrid +134_1-1 Q0 MARCO_38_1638752375-11 58 87.762937 hybrid +134_1-1 Q0 MARCO_33_933071673-5 59 87.758337 hybrid +134_1-1 Q0 MARCO_14_37749737-1 60 87.750186 hybrid +134_1-1 Q0 MARCO_58_1007251365-19 61 87.748248 hybrid +134_1-1 Q0 MARCO_58_1008057483-13 62 87.745793 hybrid +134_1-1 Q0 MARCO_58_1008057483-10 63 87.735196 hybrid +134_1-1 Q0 MARCO_22_1749690248-7 64 87.724236 hybrid +134_1-1 Q0 MARCO_40_566767975-9 65 87.723486 hybrid +134_1-1 Q0 MARCO_55_681131262-4 66 87.710202 hybrid +134_1-1 Q0 MARCO_14_35733680-10 67 87.706336 hybrid +134_1-1 Q0 MARCO_55_681360829-8 68 87.701298 hybrid +134_1-1 Q0 MARCO_09_613224803-1 69 87.694437 hybrid +134_1-1 Q0 MARCO_50_1407085410-38 70 87.688762 hybrid +134_1-1 Q0 MARCO_54_432596517-18 71 87.687387 hybrid +134_1-1 Q0 MARCO_49_1558784452-1 72 87.684886 hybrid +134_1-1 Q0 MARCO_38_1625210008-11 73 87.680537 hybrid +134_1-1 Q0 MARCO_29_812687339-3 74 87.678687 hybrid +134_1-1 Q0 MARCO_36_902206332-1 75 87.671536 hybrid +134_1-1 Q0 MARCO_39_1636706274-1 76 87.666936 hybrid +134_1-1 Q0 MARCO_22_1747948855-4 77 87.662337 hybrid +134_1-1 Q0 MARCO_45_1060410444-2 78 87.656737 hybrid +134_1-1 Q0 MARCO_45_1019718891-21 79 87.656193 hybrid +134_1-1 Q0 MARCO_11_1166150088-1 80 87.652936 hybrid +134_1-1 Q0 MARCO_36_411498022-7 81 87.651886 hybrid +134_1-1 Q0 MARCO_40_817051784-2 82 87.649571 hybrid +134_1-1 Q0 MARCO_12_664518662-2 83 87.649386 hybrid +134_1-1 Q0 MARCO_52_910971269-10 84 87.649237 hybrid +134_1-1 Q0 MARCO_30_741491479-2 85 87.643890 hybrid +134_1-1 Q0 MARCO_11_1166150088-3 86 87.635587 hybrid +134_1-1 Q0 MARCO_47_540763366-7 87 87.632037 hybrid +134_1-1 Q0 MARCO_35_809670314-16 88 87.631939 hybrid +134_1-1 Q0 MARCO_56_692617252-3 89 87.630987 hybrid +134_1-1 Q0 MARCO_28_655467320-2 90 87.629773 hybrid +134_1-1 Q0 MARCO_21_1073998452-1 91 87.628237 hybrid +134_1-1 Q0 MARCO_50_1419718645-79 92 87.628163 hybrid +134_1-1 Q0 MARCO_00_16611848-45 93 87.626337 hybrid +134_1-1 Q0 MARCO_55_681052557-9 94 87.622929 hybrid +134_1-1 Q0 MARCO_58_1007447817-8 95 87.622799 hybrid +134_1-1 Q0 MARCO_54_99903925-14 96 87.622494 hybrid +134_1-1 Q0 MARCO_45_1028301804-2 97 87.618806 hybrid +134_1-1 Q0 MARCO_46_7779561-7 98 87.613110 hybrid +134_1-1 Q0 MARCO_36_1037034250-1 99 87.612737 hybrid +134_1-1 Q0 MARCO_50_2156613647-36 100 87.607636 hybrid +134_1-11 Q0 MARCO_36_944454916-1 1 97.169652 hybrid +134_1-11 Q0 MARCO_30_88725475-31 2 96.815907 hybrid +134_1-11 Q0 MARCO_30_88725475-32 3 96.814573 hybrid +134_1-11 Q0 MARCO_58_1006877495-7 4 96.630241 hybrid +134_1-11 Q0 MARCO_34_335269979-14 5 96.543415 hybrid +134_1-11 Q0 MARCO_41_2178240120-1 6 96.512752 hybrid +134_1-11 Q0 MARCO_30_88692581-21 7 96.247785 hybrid +134_1-11 Q0 MARCO_24_1958402667-8 8 96.183957 hybrid +134_1-11 Q0 MARCO_58_1008308703-5 9 96.168128 hybrid +134_1-11 Q0 MARCO_30_88725475-37 10 96.146137 hybrid +134_1-11 Q0 MARCO_58_1006877495-6 11 96.089248 hybrid +134_1-11 Q0 MARCO_24_1958402667-4 12 96.087555 hybrid +134_1-11 Q0 MARCO_24_1958402667-6 13 96.087554 hybrid +134_1-11 Q0 MARCO_34_333151546-21 14 96.067369 hybrid +134_1-11 Q0 MARCO_55_860183325-13 15 96.050746 hybrid +134_1-11 Q0 MARCO_55_860183325-1 16 95.998905 hybrid +134_1-11 Q0 MARCO_30_88725475-23 17 95.959320 hybrid +134_1-11 Q0 MARCO_36_944454916-5 18 95.930126 hybrid +134_1-11 Q0 MARCO_45_141200182-3 19 95.902972 hybrid +134_1-11 Q0 MARCO_30_88692581-25 20 95.899848 hybrid +134_1-11 Q0 MARCO_22_321254206-3 21 95.891928 hybrid +134_1-11 Q0 MARCO_30_88692581-22 22 95.838516 hybrid +134_1-11 Q0 MARCO_41_631148127-3 23 95.801098 hybrid +134_1-11 Q0 MARCO_58_1007582050-10 24 95.796233 hybrid +134_1-11 Q0 MARCO_41_2178255484-1 25 95.795563 hybrid +134_1-11 Q0 MARCO_30_88725475-38 26 95.759208 hybrid +134_1-11 Q0 MARCO_14_37624184-4 27 95.746566 hybrid +134_1-11 Q0 MARCO_36_1067600535-1 28 95.735679 hybrid +134_1-11 Q0 MARCO_36_945711051-3 29 95.681873 hybrid +134_1-11 Q0 MARCO_36_944454916-3 30 95.679255 hybrid +134_1-11 Q0 MARCO_41_2178283454-4 31 95.656734 hybrid +134_1-11 Q0 MARCO_30_88725475-39 32 95.643569 hybrid +134_1-11 Q0 MARCO_29_831363978-3 33 95.643281 hybrid +134_1-11 Q0 MARCO_27_1109734239-1 34 95.623534 hybrid +134_1-11 Q0 MARCO_24_1958402667-2 35 95.619241 hybrid +134_1-11 Q0 MARCO_30_88725475-35 36 95.590026 hybrid +134_1-11 Q0 MARCO_24_1717721932-7 37 95.574851 hybrid +134_1-11 Q0 MARCO_58_1006976171-9 38 95.569060 hybrid +134_1-11 Q0 MARCO_36_1067712779-3 39 95.552285 hybrid +134_1-11 Q0 MARCO_24_1953269607-3 40 95.501777 hybrid +134_1-11 Q0 MARCO_55_860174844-8 41 95.498069 hybrid +134_1-11 Q0 MARCO_57_473675598-12 42 95.485488 hybrid +134_1-11 Q0 MARCO_45_1025014902-4 43 95.462043 hybrid +134_1-11 Q0 MARCO_58_1008308703-6 44 95.451385 hybrid +134_1-11 Q0 MARCO_36_944441128-1 45 95.441319 hybrid +134_1-11 Q0 MARCO_36_898362483-4 46 95.401820 hybrid +134_1-11 Q0 MARCO_55_860157065-13 47 95.393584 hybrid +134_1-11 Q0 MARCO_30_88692581-20 48 95.392188 hybrid +134_1-11 Q0 MARCO_34_333151546-22 49 95.386680 hybrid +134_1-11 Q0 MARCO_57_473675598-14 50 95.385206 hybrid +134_1-11 Q0 MARCO_21_957688307-28 51 95.373900 hybrid +134_1-11 Q0 MARCO_41_2178283454-1 52 95.326122 hybrid +134_1-11 Q0 MARCO_33_68766082-1 53 95.312428 hybrid +134_1-11 Q0 MARCO_58_1006877495-5 54 95.286010 hybrid +134_1-11 Q0 MARCO_41_2178255484-4 55 95.260397 hybrid +134_1-11 Q0 MARCO_24_1958402667-1 56 95.257689 hybrid +134_1-11 Q0 MARCO_36_944406970-2 57 95.247016 hybrid +134_1-11 Q0 MARCO_41_2178277400-1 58 95.244139 hybrid +134_1-11 Q0 MARCO_24_1959498029-2 59 95.243911 hybrid +134_1-11 Q0 MARCO_47_499667316-8 60 95.242127 hybrid +134_1-11 Q0 MARCO_34_328037387-13 61 95.242121 hybrid +134_1-11 Q0 MARCO_34_333120683-17 62 95.242120 hybrid +134_1-11 Q0 MARCO_13_709199646-1 63 95.214877 hybrid +134_1-11 Q0 MARCO_30_88692581-26 64 95.191535 hybrid +134_1-11 Q0 MARCO_30_88692581-7 65 95.184539 hybrid +134_1-11 Q0 MARCO_22_321467482-1 66 95.168427 hybrid +134_1-11 Q0 MARCO_45_140244363-6 67 95.167731 hybrid +134_1-11 Q0 MARCO_30_88725475-15 68 95.164367 hybrid +134_1-11 Q0 MARCO_41_2178277400-2 69 95.161198 hybrid +134_1-11 Q0 MARCO_49_1558476537-6 70 95.160928 hybrid +134_1-11 Q0 MARCO_30_88692581-12 71 95.147315 hybrid +134_1-11 Q0 MARCO_14_37624184-6 72 95.134276 hybrid +134_1-11 Q0 MARCO_58_1006426191-6 73 95.120864 hybrid +134_1-11 Q0 MARCO_36_889087433-5 74 95.120840 hybrid +134_1-11 Q0 MARCO_33_68766082-11 75 95.119727 hybrid +134_1-11 Q0 MARCO_58_1008340919-4 76 95.115096 hybrid +134_1-11 Q0 MARCO_55_860157065-12 77 95.101523 hybrid +134_1-11 Q0 MARCO_36_944454916-2 78 95.087362 hybrid +134_1-11 Q0 MARCO_30_88725475-19 79 95.071921 hybrid +134_1-11 Q0 MARCO_55_860183325-4 80 95.064277 hybrid +134_1-11 Q0 MARCO_30_88769099-15 81 95.056426 hybrid +134_1-11 Q0 MARCO_55_681083428-18 82 95.054130 hybrid +134_1-11 Q0 MARCO_30_88692581-10 83 95.044326 hybrid +134_1-11 Q0 MARCO_41_2178277400-5 84 95.040907 hybrid +134_1-11 Q0 MARCO_41_2178267959-3 85 95.034911 hybrid +134_1-11 Q0 MARCO_30_88725475-40 86 95.024306 hybrid +134_1-11 Q0 MARCO_58_1007467822-6 87 95.020003 hybrid +134_1-11 Q0 MARCO_33_91849315-1 88 95.015078 hybrid +134_1-11 Q0 MARCO_41_2178267959-1 89 95.014678 hybrid +134_1-11 Q0 MARCO_22_321254206-1 90 94.997377 hybrid +134_1-11 Q0 MARCO_22_321898329-1 91 94.989278 hybrid +134_1-11 Q0 MARCO_36_944270115-7 92 94.987380 hybrid +134_1-11 Q0 MARCO_30_88725475-11 93 94.969092 hybrid +134_1-11 Q0 MARCO_30_88333542-24 94 94.966788 hybrid +134_1-11 Q0 MARCO_22_322130305-1 95 94.966377 hybrid +134_1-11 Q0 MARCO_55_860157065-3 96 94.952552 hybrid +134_1-11 Q0 MARCO_24_1717721932-8 97 94.937972 hybrid +134_1-11 Q0 MARCO_55_860174844-1 98 94.931037 hybrid +134_1-11 Q0 MARCO_47_499667316-1 99 94.916627 hybrid +134_1-11 Q0 MARCO_31_1313070605-5 100 94.915728 hybrid +134_1-13 Q0 MARCO_36_945711051-4 1 100.487287 hybrid +134_1-13 Q0 MARCO_36_945711051-5 2 100.478169 hybrid +134_1-13 Q0 MARCO_36_945711051-3 3 100.111456 hybrid +134_1-13 Q0 MARCO_36_945717607-3 4 99.821089 hybrid +134_1-13 Q0 MARCO_36_945717607-2 5 99.755205 hybrid +134_1-13 Q0 MARCO_36_945717607-4 6 99.187263 hybrid +134_1-13 Q0 MARCO_36_944414648-6 7 99.156573 hybrid +134_1-13 Q0 MARCO_36_945717607-6 8 99.138510 hybrid +134_1-13 Q0 MARCO_36_944270115-8 9 99.054144 hybrid +134_1-13 Q0 MARCO_36_945717607-1 10 98.810887 hybrid +134_1-13 Q0 MARCO_36_945711051-6 11 98.099480 hybrid +134_1-13 Q0 MARCO_41_2178255484-3 12 97.248541 hybrid +134_1-13 Q0 MARCO_36_932523501-3 13 96.945597 hybrid +134_1-13 Q0 MARCO_41_2178753291-7 14 96.921418 hybrid +134_1-13 Q0 MARCO_58_1008788878-6 15 96.905691 hybrid +134_1-13 Q0 MARCO_30_881883471-4 16 96.782947 hybrid +134_1-13 Q0 MARCO_36_945717607-5 17 96.776762 hybrid +134_1-13 Q0 MARCO_31_53216636-3 18 96.683797 hybrid +134_1-13 Q0 MARCO_36_945698074-3 19 96.478849 hybrid +134_1-13 Q0 MARCO_41_2178240120-2 20 96.419806 hybrid +134_1-13 Q0 MARCO_41_2178240120-4 21 96.419783 hybrid +134_1-13 Q0 MARCO_41_2178240120-6 22 96.419783 hybrid +134_1-13 Q0 MARCO_45_1026166001-9 23 96.401632 hybrid +134_1-13 Q0 MARCO_41_2178240120-9 24 96.378736 hybrid +134_1-13 Q0 MARCO_29_972974962-17 25 96.372854 hybrid +134_1-13 Q0 MARCO_55_860157065-8 26 96.364004 hybrid +134_1-13 Q0 MARCO_55_848420280-12 27 96.343138 hybrid +134_1-13 Q0 MARCO_36_889087433-3 28 96.330236 hybrid +134_1-13 Q0 MARCO_45_140244363-6 29 96.312208 hybrid +134_1-13 Q0 MARCO_28_1146135173-6 30 96.301077 hybrid +134_1-13 Q0 MARCO_31_53236361-3 31 96.294046 hybrid +134_1-13 Q0 MARCO_31_53254925-2 32 96.246797 hybrid +134_1-13 Q0 MARCO_36_945698074-8 33 96.245695 hybrid +134_1-13 Q0 MARCO_36_945698074-10 34 96.245695 hybrid +134_1-13 Q0 MARCO_45_1026316263-9 35 96.243734 hybrid +134_1-13 Q0 MARCO_45_1026166001-17 36 96.208769 hybrid +134_1-13 Q0 MARCO_40_1266702458-5 37 96.155607 hybrid +134_1-13 Q0 MARCO_52_1210856843-5 38 96.153257 hybrid +134_1-13 Q0 MARCO_51_1378457972-4 39 96.121176 hybrid +134_1-13 Q0 MARCO_45_141066600-6 40 96.117857 hybrid +134_1-13 Q0 MARCO_41_2178947233-5 41 96.111639 hybrid +134_1-13 Q0 MARCO_34_328037387-12 42 96.083250 hybrid +134_1-13 Q0 MARCO_47_1313747784-10 43 96.077543 hybrid +134_1-13 Q0 MARCO_36_945698074-7 44 96.064260 hybrid +134_1-13 Q0 MARCO_31_53236361-1 45 96.061646 hybrid +134_1-13 Q0 MARCO_58_1008111120-6 46 96.055868 hybrid +134_1-13 Q0 MARCO_31_53254925-1 47 95.978847 hybrid +134_1-13 Q0 MARCO_41_2178891625-4 48 95.955114 hybrid +134_1-13 Q0 MARCO_41_2178255484-4 49 95.950590 hybrid +134_1-13 Q0 MARCO_48_1154614360-6 50 95.945547 hybrid +134_1-13 Q0 MARCO_51_1381917671-4 51 95.940222 hybrid +134_1-13 Q0 MARCO_47_1313747784-5 52 95.939734 hybrid +134_1-13 Q0 MARCO_26_92686020-20 53 95.936384 hybrid +134_1-13 Q0 MARCO_45_140884409-8 54 95.906500 hybrid +134_1-13 Q0 MARCO_30_88864151-29 55 95.905478 hybrid +134_1-13 Q0 MARCO_21_957688307-28 56 95.897726 hybrid +134_1-13 Q0 MARCO_57_1464938685-10 57 95.895797 hybrid +134_1-13 Q0 MARCO_57_1464938685-8 58 95.895796 hybrid +134_1-13 Q0 MARCO_58_1008308703-5 59 95.879927 hybrid +134_1-13 Q0 MARCO_41_2178753291-6 60 95.879354 hybrid +134_1-13 Q0 MARCO_26_92686020-14 61 95.875265 hybrid +134_1-13 Q0 MARCO_41_2178240120-7 62 95.873541 hybrid +134_1-13 Q0 MARCO_57_1457889444-4 63 95.868446 hybrid +134_1-13 Q0 MARCO_57_1458134270-4 64 95.868445 hybrid +134_1-13 Q0 MARCO_57_1458300641-4 65 95.868445 hybrid +134_1-13 Q0 MARCO_57_1458750250-4 66 95.868444 hybrid +134_1-13 Q0 MARCO_57_1458597931-6 67 95.868444 hybrid +134_1-13 Q0 MARCO_57_1458847385-5 68 95.868443 hybrid +134_1-13 Q0 MARCO_57_1459925334-25 69 95.868443 hybrid +134_1-13 Q0 MARCO_57_1460284983-17 70 95.868443 hybrid +134_1-13 Q0 MARCO_57_1461235744-7 71 95.868443 hybrid +134_1-13 Q0 MARCO_57_1461700179-15 72 95.868442 hybrid +134_1-13 Q0 MARCO_57_1461511820-12 73 95.868442 hybrid +134_1-13 Q0 MARCO_57_1461820561-8 74 95.868441 hybrid +134_1-13 Q0 MARCO_57_1462080969-10 75 95.868441 hybrid +134_1-13 Q0 MARCO_57_1462512355-17 76 95.868440 hybrid +134_1-13 Q0 MARCO_57_1463188556-18 77 95.868440 hybrid +134_1-13 Q0 MARCO_57_1463458257-20 78 95.868439 hybrid +134_1-13 Q0 MARCO_57_1463614320-11 79 95.868439 hybrid +134_1-13 Q0 MARCO_57_1463941792-13 80 95.868438 hybrid +134_1-13 Q0 MARCO_57_1464329520-10 81 95.868438 hybrid +134_1-13 Q0 MARCO_57_1464359543-10 82 95.868437 hybrid +134_1-13 Q0 MARCO_24_1717721932-7 83 95.862852 hybrid +134_1-13 Q0 MARCO_57_1458210108-6 84 95.854696 hybrid +134_1-13 Q0 MARCO_27_1107201309-9 85 95.839804 hybrid +134_1-13 Q0 MARCO_57_1458976154-18 86 95.838897 hybrid +134_1-13 Q0 MARCO_57_1464739160-6 87 95.838896 hybrid +134_1-13 Q0 MARCO_29_972974962-16 88 95.834446 hybrid +134_1-13 Q0 MARCO_57_1464200671-9 89 95.825796 hybrid +134_1-13 Q0 MARCO_36_944454916-6 90 95.825605 hybrid +134_1-13 Q0 MARCO_30_88692581-25 91 95.813131 hybrid +134_1-13 Q0 MARCO_20_686271921-2 92 95.795332 hybrid +134_1-13 Q0 MARCO_57_1461353406-11 93 95.792697 hybrid +134_1-13 Q0 MARCO_57_1461353406-9 94 95.792696 hybrid +134_1-13 Q0 MARCO_51_1383377686-16 95 95.776815 hybrid +134_1-13 Q0 MARCO_45_1021573417-12 96 95.773001 hybrid +134_1-13 Q0 MARCO_45_140884409-9 97 95.772223 hybrid +134_1-13 Q0 MARCO_48_371637991-3 98 95.767691 hybrid +134_1-13 Q0 MARCO_47_1313747784-8 99 95.758223 hybrid +134_1-13 Q0 MARCO_57_1458335095-4 100 95.750796 hybrid +134_1-3 Q0 MARCO_33_366099507-25 1 90.096595 hybrid +134_1-3 Q0 MARCO_25_338925475-4 2 89.837544 hybrid +134_1-3 Q0 MARCO_22_1217200733-7 3 89.803744 hybrid +134_1-3 Q0 MARCO_55_220246020-2 4 89.775044 hybrid +134_1-3 Q0 MARCO_58_958233549-2 5 89.760844 hybrid +134_1-3 Q0 MARCO_31_1159380630-8 6 89.732944 hybrid +134_1-3 Q0 MARCO_21_1516119663-1 7 89.695294 hybrid +134_1-3 Q0 MARCO_36_683115325-15 8 89.587695 hybrid +134_1-3 Q0 MARCO_41_1560176098-56 9 89.577894 hybrid +134_1-3 Q0 MARCO_56_1871553326-3 10 89.547394 hybrid +134_1-3 Q0 MARCO_45_408980140-29 11 89.539694 hybrid +134_1-3 Q0 MARCO_46_724642024-9 12 89.502844 hybrid +134_1-3 Q0 MARCO_21_1514328332-25 13 89.476544 hybrid +134_1-3 Q0 MARCO_30_737995027-8 14 89.476275 hybrid +134_1-3 Q0 MARCO_52_1346719828-16 15 89.473944 hybrid +134_1-3 Q0 MARCO_27_1173456584-72 16 89.456144 hybrid +134_1-3 Q0 MARCO_09_1297895436-5 17 89.448645 hybrid +134_1-3 Q0 MARCO_57_724773899-5 18 89.434144 hybrid +134_1-3 Q0 MARCO_35_487487427-4 19 89.425144 hybrid +134_1-3 Q0 MARCO_49_481305539-13 20 89.395094 hybrid +134_1-3 Q0 MARCO_50_1361113487-3 21 89.379944 hybrid +134_1-3 Q0 MARCO_50_2911430124-1 22 89.347445 hybrid +134_1-3 Q0 MARCO_30_738288722-11 23 89.339846 hybrid +134_1-3 Q0 MARCO_45_411627898-5 24 89.324894 hybrid +134_1-3 Q0 MARCO_20_692808383-1 25 89.301516 hybrid +134_1-3 Q0 MARCO_44_1837053557-6 26 89.289944 hybrid +134_1-3 Q0 MARCO_28_1848410261-6 27 89.289394 hybrid +134_1-3 Q0 MARCO_28_1848628602-6 28 89.289394 hybrid +134_1-3 Q0 MARCO_28_1848785123-6 29 89.289393 hybrid +134_1-3 Q0 MARCO_28_1848806383-6 30 89.289393 hybrid +134_1-3 Q0 MARCO_28_1848827790-6 31 89.289392 hybrid +134_1-3 Q0 MARCO_50_141738159-123 32 89.274795 hybrid +134_1-3 Q0 MARCO_14_1773758849-1 33 89.249244 hybrid +134_1-3 Q0 MARCO_55_341422719-11 34 89.248294 hybrid +134_1-3 Q0 MARCO_50_2145508318-16 35 89.245921 hybrid +134_1-3 Q0 MARCO_50_1673105746-2 36 89.244494 hybrid +134_1-3 Q0 MARCO_28_1669070371-36 37 89.241045 hybrid +134_1-3 Q0 MARCO_49_1696999085-7 38 89.238245 hybrid +134_1-3 Q0 MARCO_22_194776667-9 39 89.237895 hybrid +134_1-3 Q0 MARCO_32_1014217001-9 40 89.228869 hybrid +134_1-3 Q0 MARCO_13_1664335635-8 41 89.225939 hybrid +134_1-3 Q0 MARCO_36_270972748-6 42 89.215445 hybrid +134_1-3 Q0 MARCO_10_1409306573-4 43 89.207644 hybrid +134_1-3 Q0 MARCO_20_1664976460-23 44 89.204144 hybrid +134_1-3 Q0 MARCO_50_666544387-11 45 89.198295 hybrid +134_1-3 Q0 MARCO_28_1848550416-7 46 89.192494 hybrid +134_1-3 Q0 MARCO_32_1014217001-1 47 89.187212 hybrid +134_1-3 Q0 MARCO_34_296709656-23 48 89.187045 hybrid +134_1-3 Q0 MARCO_20_212777311-2 49 89.186995 hybrid +134_1-3 Q0 MARCO_11_735275981-4 50 89.179494 hybrid +134_1-3 Q0 MARCO_49_1697473398-10 51 89.174593 hybrid +134_1-3 Q0 MARCO_42_194897940-6 52 89.171394 hybrid +134_1-3 Q0 MARCO_50_145150309-47 53 89.166645 hybrid +134_1-3 Q0 MARCO_45_810488798-7 54 89.158794 hybrid +134_1-3 Q0 MARCO_41_1100692113-15 55 89.156044 hybrid +134_1-3 Q0 MARCO_29_1243120715-18 56 89.154994 hybrid +134_1-3 Q0 MARCO_45_812061526-5 57 89.154444 hybrid +134_1-3 Q0 MARCO_28_974720971-1 58 89.154045 hybrid +134_1-3 Q0 MARCO_24_4623022-2 59 89.144900 hybrid +134_1-3 Q0 MARCO_11_794335480-15 60 89.137694 hybrid +134_1-3 Q0 MARCO_37_1672733261-13 61 89.133144 hybrid +134_1-3 Q0 MARCO_12_81835330-10 62 89.128444 hybrid +134_1-3 Q0 MARCO_34_1046909091-20 63 89.115594 hybrid +134_1-3 Q0 MARCO_31_902786773-13 64 89.115494 hybrid +134_1-3 Q0 MARCO_02_1299494687-48 65 89.114844 hybrid +134_1-3 Q0 MARCO_35_1120980531-18 66 89.108094 hybrid +134_1-3 Q0 MARCO_20_1619902431-15 67 89.106945 hybrid +134_1-3 Q0 MARCO_30_814767830-10 68 89.102045 hybrid +134_1-3 Q0 MARCO_22_192475213-10 69 89.083844 hybrid +134_1-3 Q0 MARCO_27_373489046-3 70 89.079844 hybrid +134_1-3 Q0 MARCO_30_134328131-3 71 89.077394 hybrid +134_1-3 Q0 MARCO_52_1215654989-12 72 89.076294 hybrid +134_1-3 Q0 MARCO_50_2145508318-10 73 89.067660 hybrid +134_1-3 Q0 MARCO_32_1014217001-8 74 89.062815 hybrid +134_1-3 Q0 MARCO_42_392192491-3 75 89.057145 hybrid +134_1-3 Q0 MARCO_41_333152781-2 76 89.054705 hybrid +134_1-3 Q0 MARCO_49_964845870-1 77 89.054293 hybrid +134_1-3 Q0 MARCO_26_957876221-2 78 89.052744 hybrid +134_1-3 Q0 MARCO_25_520745167-1 79 89.049067 hybrid +134_1-3 Q0 MARCO_26_845484243-3 80 89.048544 hybrid +134_1-3 Q0 MARCO_29_803087810-2 81 89.042323 hybrid +134_1-3 Q0 MARCO_51_1381099174-12 82 89.038894 hybrid +134_1-3 Q0 MARCO_06_1728115125-5 83 89.031294 hybrid +134_1-3 Q0 MARCO_21_1523767850-1 84 89.028773 hybrid +134_1-3 Q0 MARCO_24_79216037-19 85 89.027155 hybrid +134_1-3 Q0 MARCO_49_964744584-13 86 89.023684 hybrid +134_1-3 Q0 MARCO_29_803062556-2 87 89.021578 hybrid +134_1-3 Q0 MARCO_46_1273503868-2 88 89.015002 hybrid +134_1-3 Q0 MARCO_54_1644376757-8 89 89.014620 hybrid +134_1-3 Q0 MARCO_24_1023164831-11 90 89.014295 hybrid +134_1-3 Q0 MARCO_23_240574852-1 91 89.010795 hybrid +134_1-3 Q0 MARCO_11_1499727470-8 92 89.005394 hybrid +134_1-3 Q0 MARCO_50_2145508318-9 93 89.003466 hybrid +134_1-3 Q0 MARCO_16_146699063-8 94 89.001444 hybrid +134_1-3 Q0 MARCO_11_798330823-3 95 89.001295 hybrid +134_1-3 Q0 MARCO_51_994257159-2 96 88.991795 hybrid +134_1-3 Q0 MARCO_49_964845870-18 97 88.986292 hybrid +134_1-3 Q0 MARCO_50_1205477628-13 98 88.986094 hybrid +134_1-3 Q0 MARCO_44_1837024115-9 99 88.985644 hybrid +134_1-3 Q0 MARCO_44_1837039904-8 100 88.985644 hybrid +134_1-5 Q0 MARCO_24_1012072495-1 1 95.050911 hybrid +134_1-5 Q0 MARCO_24_1012032122-1 2 95.000439 hybrid +134_1-5 Q0 MARCO_27_1109750285-1 3 94.785706 hybrid +134_1-5 Q0 MARCO_24_1645907032-1 4 94.604733 hybrid +134_1-5 Q0 MARCO_58_1008687294-8 5 94.503043 hybrid +134_1-5 Q0 MARCO_45_1025706014-7 6 94.487399 hybrid +134_1-5 Q0 MARCO_34_333151546-14 7 94.472273 hybrid +134_1-5 Q0 MARCO_14_332757574-3 8 94.464970 hybrid +134_1-5 Q0 MARCO_24_1012032122-4 9 94.448648 hybrid +134_1-5 Q0 MARCO_41_631991925-1 10 94.448353 hybrid +134_1-5 Q0 MARCO_34_333625792-19 11 94.403183 hybrid +134_1-5 Q0 MARCO_30_1698996763-2 12 94.402333 hybrid +134_1-5 Q0 MARCO_27_1109745040-1 13 94.360375 hybrid +134_1-5 Q0 MARCO_34_335269979-8 14 94.344777 hybrid +134_1-5 Q0 MARCO_24_1012072495-2 15 94.267346 hybrid +134_1-5 Q0 MARCO_24_1012032122-5 16 94.213941 hybrid +134_1-5 Q0 MARCO_24_1958769364-1 17 94.192920 hybrid +134_1-5 Q0 MARCO_34_333151546-9 18 94.006057 hybrid +134_1-5 Q0 MARCO_58_1008111120-4 19 93.980277 hybrid +134_1-5 Q0 MARCO_36_1067726977-3 20 93.960105 hybrid +134_1-5 Q0 MARCO_32_1367701068-4 21 93.896934 hybrid +134_1-5 Q0 MARCO_30_1134286947-4 22 93.822822 hybrid +134_1-5 Q0 MARCO_36_901008585-3 23 93.816085 hybrid +134_1-5 Q0 MARCO_42_325647616-7 24 93.786864 hybrid +134_1-5 Q0 MARCO_14_332757574-2 25 93.714150 hybrid +134_1-5 Q0 MARCO_53_1305804923-1 26 93.695033 hybrid +134_1-5 Q0 MARCO_27_1109750285-2 27 93.687827 hybrid +134_1-5 Q0 MARCO_57_149395939-1 28 93.681434 hybrid +134_1-5 Q0 MARCO_41_633731309-3 29 93.679572 hybrid +134_1-5 Q0 MARCO_24_1012072495-4 30 93.676682 hybrid +134_1-5 Q0 MARCO_41_633731309-1 31 93.673892 hybrid +134_1-5 Q0 MARCO_34_333151546-15 32 93.667022 hybrid +134_1-5 Q0 MARCO_58_1007656339-10 33 93.643348 hybrid +134_1-5 Q0 MARCO_36_1067726977-2 34 93.629012 hybrid +134_1-5 Q0 MARCO_43_161271225-2 35 93.618134 hybrid +134_1-5 Q0 MARCO_13_709244433-1 36 93.610733 hybrid +134_1-5 Q0 MARCO_30_1134286947-3 37 93.601950 hybrid +134_1-5 Q0 MARCO_53_992344250-2 38 93.586884 hybrid +134_1-5 Q0 MARCO_53_1305472506-10 39 93.579583 hybrid +134_1-5 Q0 MARCO_22_347769678-3 40 93.559283 hybrid +134_1-5 Q0 MARCO_42_274239680-14 41 93.537434 hybrid +134_1-5 Q0 MARCO_24_1011834155-7 42 93.520675 hybrid +134_1-5 Q0 MARCO_14_752773680-1 43 93.505589 hybrid +134_1-5 Q0 MARCO_52_1211461268-3 44 93.467433 hybrid +134_1-5 Q0 MARCO_53_1305472506-2 45 93.459633 hybrid +134_1-5 Q0 MARCO_24_1958720520-18 46 93.456604 hybrid +134_1-5 Q0 MARCO_30_1257398141-1 47 93.452733 hybrid +134_1-5 Q0 MARCO_39_1718421399-1 48 93.449634 hybrid +134_1-5 Q0 MARCO_29_887550815-1 49 93.443233 hybrid +134_1-5 Q0 MARCO_41_2178616931-1 50 93.432403 hybrid +134_1-5 Q0 MARCO_52_1211574383-3 51 93.425484 hybrid +134_1-5 Q0 MARCO_27_1109750285-4 52 93.414542 hybrid +134_1-5 Q0 MARCO_52_1211453359-3 53 93.405833 hybrid +134_1-5 Q0 MARCO_52_1211446480-3 54 93.405633 hybrid +134_1-5 Q0 MARCO_52_1211446480-5 55 93.405632 hybrid +134_1-5 Q0 MARCO_34_323363322-1 56 93.405150 hybrid +134_1-5 Q0 MARCO_06_1359167554-1 57 93.396133 hybrid +134_1-5 Q0 MARCO_41_2178612900-1 58 93.389495 hybrid +134_1-5 Q0 MARCO_30_1134286947-2 59 93.384582 hybrid +134_1-5 Q0 MARCO_34_333625792-4 60 93.378570 hybrid +134_1-5 Q0 MARCO_26_92686020-14 61 93.377074 hybrid +134_1-5 Q0 MARCO_21_248924460-5 62 93.364196 hybrid +134_1-5 Q0 MARCO_45_1025706014-6 63 93.363051 hybrid +134_1-5 Q0 MARCO_24_1012072495-3 64 93.362093 hybrid +134_1-5 Q0 MARCO_51_1378932820-4 65 93.340079 hybrid +134_1-5 Q0 MARCO_31_53883007-3 66 93.337633 hybrid +134_1-5 Q0 MARCO_34_323379213-8 67 93.337241 hybrid +134_1-5 Q0 MARCO_24_1012032122-2 68 93.330245 hybrid +134_1-5 Q0 MARCO_28_259515576-1 69 93.312783 hybrid +134_1-5 Q0 MARCO_58_1007494560-6 70 93.304259 hybrid +134_1-5 Q0 MARCO_15_1700224768-1 71 93.294283 hybrid +134_1-5 Q0 MARCO_41_633731309-4 72 93.294082 hybrid +134_1-5 Q0 MARCO_49_1235260263-1 73 93.292483 hybrid +134_1-5 Q0 MARCO_30_1134286947-1 74 93.288802 hybrid +134_1-5 Q0 MARCO_24_1012024291-6 75 93.288001 hybrid +134_1-5 Q0 MARCO_13_709224943-1 76 93.287483 hybrid +134_1-5 Q0 MARCO_27_1107224030-2 77 93.277122 hybrid +134_1-5 Q0 MARCO_52_1211446480-1 78 93.273383 hybrid +134_1-5 Q0 MARCO_41_2178616931-4 79 93.268882 hybrid +134_1-5 Q0 MARCO_40_1266702458-5 80 93.268401 hybrid +134_1-5 Q0 MARCO_31_53883007-1 81 93.266383 hybrid +134_1-5 Q0 MARCO_13_709224943-5 82 93.261333 hybrid +134_1-5 Q0 MARCO_44_123841049-1 83 93.257183 hybrid +134_1-5 Q0 MARCO_41_533705887-1 84 93.253483 hybrid +134_1-5 Q0 MARCO_22_345264832-1 85 93.248283 hybrid +134_1-5 Q0 MARCO_43_797381524-1 86 93.243584 hybrid +134_1-5 Q0 MARCO_35_1249226879-1 87 93.242033 hybrid +134_1-5 Q0 MARCO_41_631991925-2 88 93.238402 hybrid +134_1-5 Q0 MARCO_43_797390623-1 89 93.234983 hybrid +134_1-5 Q0 MARCO_29_976450025-1 90 93.234683 hybrid +134_1-5 Q0 MARCO_51_1381358101-4 91 93.228148 hybrid +134_1-5 Q0 MARCO_29_887550815-2 92 93.225683 hybrid +134_1-5 Q0 MARCO_26_146440763-3 93 93.223233 hybrid +134_1-5 Q0 MARCO_29_976450025-3 94 93.220583 hybrid +134_1-5 Q0 MARCO_32_1214850302-1 95 93.203234 hybrid +134_1-5 Q0 MARCO_41_2178620998-1 96 93.196807 hybrid +134_1-5 Q0 MARCO_22_345264832-3 97 93.196783 hybrid +134_1-5 Q0 MARCO_26_143756884-1 98 93.196782 hybrid +134_1-5 Q0 MARCO_27_1044935462-1 99 93.190733 hybrid +134_1-5 Q0 MARCO_44_124223613-1 100 93.175333 hybrid +134_1-7 Q0 MARCO_22_1749042451-6 1 99.997040 hybrid +134_1-7 Q0 MARCO_55_860183325-13 2 98.649566 hybrid +134_1-7 Q0 MARCO_31_50218972-8 3 98.394789 hybrid +134_1-7 Q0 MARCO_36_945711051-3 4 98.269988 hybrid +134_1-7 Q0 MARCO_58_1007582050-10 5 98.154113 hybrid +134_1-7 Q0 MARCO_30_88692581-25 6 98.112456 hybrid +134_1-7 Q0 MARCO_30_88725475-38 7 98.059012 hybrid +134_1-7 Q0 MARCO_36_889087433-3 8 98.014777 hybrid +134_1-7 Q0 MARCO_31_53254925-2 9 97.990589 hybrid +134_1-7 Q0 MARCO_49_1558476537-6 10 97.864789 hybrid +134_1-7 Q0 MARCO_30_88725475-39 11 97.766173 hybrid +134_1-7 Q0 MARCO_43_295986306-9 12 97.689254 hybrid +134_1-7 Q0 MARCO_36_945698074-3 13 97.679732 hybrid +134_1-7 Q0 MARCO_30_88692581-22 14 97.662986 hybrid +134_1-7 Q0 MARCO_30_88725475-35 15 97.630271 hybrid +134_1-7 Q0 MARCO_30_88692581-20 16 97.619300 hybrid +134_1-7 Q0 MARCO_43_295327490-2 17 97.607306 hybrid +134_1-7 Q0 MARCO_55_860174844-8 18 97.603919 hybrid +134_1-7 Q0 MARCO_28_186560699-4 19 97.595339 hybrid +134_1-7 Q0 MARCO_28_186478106-4 20 97.570439 hybrid +134_1-7 Q0 MARCO_28_186478106-6 21 97.570438 hybrid +134_1-7 Q0 MARCO_55_860183325-1 22 97.564132 hybrid +134_1-7 Q0 MARCO_41_2178277400-1 23 97.540840 hybrid +134_1-7 Q0 MARCO_36_898362483-4 24 97.533408 hybrid +134_1-7 Q0 MARCO_34_328037387-12 25 97.516570 hybrid +134_1-7 Q0 MARCO_48_371968142-1 26 97.507581 hybrid +134_1-7 Q0 MARCO_21_957688307-28 27 97.488173 hybrid +134_1-7 Q0 MARCO_58_1008308703-5 28 97.466979 hybrid +134_1-7 Q0 MARCO_30_88692581-21 29 97.452292 hybrid +134_1-7 Q0 MARCO_41_2178240120-2 30 97.446448 hybrid +134_1-7 Q0 MARCO_41_2178240120-4 31 97.446433 hybrid +134_1-7 Q0 MARCO_41_2178240120-6 32 97.446433 hybrid +134_1-7 Q0 MARCO_45_141106379-6 33 97.415801 hybrid +134_1-7 Q0 MARCO_57_1458220794-4 34 97.386039 hybrid +134_1-7 Q0 MARCO_43_296384571-11 35 97.374770 hybrid +134_1-7 Q0 MARCO_30_88725475-37 36 97.349097 hybrid +134_1-7 Q0 MARCO_36_945698074-8 37 97.340568 hybrid +134_1-7 Q0 MARCO_36_945698074-10 38 97.340568 hybrid +134_1-7 Q0 MARCO_34_333151546-14 39 97.317000 hybrid +134_1-7 Q0 MARCO_57_1464598561-8 40 97.314539 hybrid +134_1-7 Q0 MARCO_49_1231809948-6 41 97.314240 hybrid +134_1-7 Q0 MARCO_49_1231809948-8 42 97.314239 hybrid +134_1-7 Q0 MARCO_14_1606737813-9 43 97.297139 hybrid +134_1-7 Q0 MARCO_34_325141658-2 44 97.288726 hybrid +134_1-7 Q0 MARCO_55_860199747-3 45 97.275100 hybrid +134_1-7 Q0 MARCO_57_1464965738-3 46 97.272889 hybrid +134_1-7 Q0 MARCO_36_944454916-3 47 97.271832 hybrid +134_1-7 Q0 MARCO_57_1461262047-33 48 97.271739 hybrid +134_1-7 Q0 MARCO_57_1464290693-11 49 97.271738 hybrid +134_1-7 Q0 MARCO_30_88692581-26 50 97.237464 hybrid +134_1-7 Q0 MARCO_28_1146135173-6 51 97.232192 hybrid +134_1-7 Q0 MARCO_41_2178283454-6 52 97.227042 hybrid +134_1-7 Q0 MARCO_36_944454916-1 53 97.199340 hybrid +134_1-7 Q0 MARCO_36_944414648-6 54 97.186279 hybrid +134_1-7 Q0 MARCO_57_1458220794-6 55 97.179539 hybrid +134_1-7 Q0 MARCO_58_1008308703-6 56 97.170028 hybrid +134_1-7 Q0 MARCO_49_1235214536-1 57 97.168439 hybrid +134_1-7 Q0 MARCO_30_88769099-15 58 97.155524 hybrid +134_1-7 Q0 MARCO_36_889087433-5 59 97.154456 hybrid +134_1-7 Q0 MARCO_30_88725475-40 60 97.153502 hybrid +134_1-7 Q0 MARCO_34_333151546-22 61 97.144835 hybrid +134_1-7 Q0 MARCO_34_333151546-15 62 97.136924 hybrid +134_1-7 Q0 MARCO_36_889143841-3 63 97.135909 hybrid +134_1-7 Q0 MARCO_55_860183325-4 64 97.133597 hybrid +134_1-7 Q0 MARCO_45_141200182-2 65 97.104346 hybrid +134_1-7 Q0 MARCO_27_1109734239-1 66 97.099597 hybrid +134_1-7 Q0 MARCO_41_2178220206-3 67 97.099074 hybrid +134_1-7 Q0 MARCO_41_2178616931-4 68 97.094001 hybrid +134_1-7 Q0 MARCO_58_1006877495-6 69 97.089355 hybrid +134_1-7 Q0 MARCO_45_141200182-3 70 97.085654 hybrid +134_1-7 Q0 MARCO_55_860174844-1 71 97.079823 hybrid +134_1-7 Q0 MARCO_45_1025014902-4 72 97.066573 hybrid +134_1-7 Q0 MARCO_20_1548538550-13 73 97.050639 hybrid +134_1-7 Q0 MARCO_43_295317189-2 74 97.033805 hybrid +134_1-7 Q0 MARCO_34_333151546-20 75 97.016112 hybrid +134_1-7 Q0 MARCO_57_1458210108-6 76 97.007939 hybrid +134_1-7 Q0 MARCO_57_1458597931-6 77 97.007938 hybrid +134_1-7 Q0 MARCO_36_944414648-3 78 97.004119 hybrid +134_1-7 Q0 MARCO_57_1464598561-10 79 96.986389 hybrid +134_1-7 Q0 MARCO_30_88692581-24 80 96.976539 hybrid +134_1-7 Q0 MARCO_58_1008788878-6 81 96.971816 hybrid +134_1-7 Q0 MARCO_30_88725475-31 82 96.971549 hybrid +134_1-7 Q0 MARCO_24_1717721932-8 83 96.941810 hybrid +134_1-7 Q0 MARCO_57_1457889444-4 84 96.938139 hybrid +134_1-7 Q0 MARCO_57_1458134270-4 85 96.938138 hybrid +134_1-7 Q0 MARCO_57_1457907293-6 86 96.938138 hybrid +134_1-7 Q0 MARCO_57_1458142517-6 87 96.938137 hybrid +134_1-7 Q0 MARCO_57_1458142517-4 88 96.938137 hybrid +134_1-7 Q0 MARCO_57_1458750250-4 89 96.938136 hybrid +134_1-7 Q0 MARCO_57_1458300641-4 90 96.938136 hybrid +134_1-7 Q0 MARCO_57_1458847385-5 91 96.938135 hybrid +134_1-7 Q0 MARCO_57_1458976154-18 92 96.938135 hybrid +134_1-7 Q0 MARCO_57_1459401063-7 93 96.938134 hybrid +134_1-7 Q0 MARCO_57_1459401063-9 94 96.938134 hybrid +134_1-7 Q0 MARCO_57_1459852017-11 95 96.938133 hybrid +134_1-7 Q0 MARCO_57_1459852017-9 96 96.938133 hybrid +134_1-7 Q0 MARCO_57_1460284983-17 97 96.938132 hybrid +134_1-7 Q0 MARCO_57_1459925334-25 98 96.938132 hybrid +134_1-7 Q0 MARCO_57_1460310342-12 99 96.938131 hybrid +134_1-7 Q0 MARCO_57_1460310342-10 100 96.938131 hybrid +134_1-9 Q0 MARCO_24_1012072495-2 1 94.843060 hybrid +134_1-9 Q0 MARCO_34_333151546-14 2 94.798633 hybrid +134_1-9 Q0 MARCO_24_1958769364-1 3 94.604056 hybrid +134_1-9 Q0 MARCO_24_1012032122-4 4 94.595330 hybrid +134_1-9 Q0 MARCO_34_333151546-9 5 94.423815 hybrid +134_1-9 Q0 MARCO_24_1012032122-1 6 94.313148 hybrid +134_1-9 Q0 MARCO_57_1444172002-1 7 94.199982 hybrid +134_1-9 Q0 MARCO_29_818459952-1 8 94.146132 hybrid +134_1-9 Q0 MARCO_34_333151546-15 9 94.104195 hybrid +134_1-9 Q0 MARCO_48_667255635-1 10 94.075031 hybrid +134_1-9 Q0 MARCO_34_335269979-8 11 94.052541 hybrid +134_1-9 Q0 MARCO_35_1249226879-1 12 94.017132 hybrid +134_1-9 Q0 MARCO_45_1025706014-7 13 93.948207 hybrid +134_1-9 Q0 MARCO_41_2178616931-4 14 93.918454 hybrid +134_1-9 Q0 MARCO_41_631991925-1 15 93.857327 hybrid +134_1-9 Q0 MARCO_24_1011834155-7 16 93.852913 hybrid +134_1-9 Q0 MARCO_42_274239680-3 17 93.811932 hybrid +134_1-9 Q0 MARCO_34_324782533-2 18 93.799965 hybrid +134_1-9 Q0 MARCO_24_1012072495-1 19 93.745542 hybrid +134_1-9 Q0 MARCO_24_1012072495-3 20 93.735779 hybrid +134_1-9 Q0 MARCO_45_1025706014-6 21 93.726524 hybrid +134_1-9 Q0 MARCO_34_333625792-19 22 93.718361 hybrid +134_1-9 Q0 MARCO_36_889087433-3 23 93.715271 hybrid +134_1-9 Q0 MARCO_48_1154614360-6 24 93.714249 hybrid +134_1-9 Q0 MARCO_33_90560061-2 25 93.714231 hybrid +134_1-9 Q0 MARCO_30_882054039-6 26 93.707731 hybrid +134_1-9 Q0 MARCO_41_633731309-1 27 93.704097 hybrid +134_1-9 Q0 MARCO_33_90566792-2 28 93.666581 hybrid +134_1-9 Q0 MARCO_29_555756860-2 29 93.653831 hybrid +134_1-9 Q0 MARCO_30_882420744-3 30 93.632731 hybrid +134_1-9 Q0 MARCO_43_295986306-9 31 93.584152 hybrid +134_1-9 Q0 MARCO_53_992344250-2 32 93.571132 hybrid +134_1-9 Q0 MARCO_24_1012039065-5 33 93.551903 hybrid +134_1-9 Q0 MARCO_36_901008585-2 34 93.547035 hybrid +134_1-9 Q0 MARCO_28_1146135173-6 35 93.542198 hybrid +134_1-9 Q0 MARCO_29_555398545-7 36 93.502782 hybrid +134_1-9 Q0 MARCO_34_335269979-3 37 93.502694 hybrid +134_1-9 Q0 MARCO_24_1645946405-1 38 93.497782 hybrid +134_1-9 Q0 MARCO_34_333625792-4 39 93.474854 hybrid +134_1-9 Q0 MARCO_28_651603893-4 40 93.454475 hybrid +134_1-9 Q0 MARCO_24_1012032122-5 41 93.444958 hybrid +134_1-9 Q0 MARCO_36_1067723587-1 42 93.441132 hybrid +134_1-9 Q0 MARCO_36_889205230-4 43 93.439606 hybrid +134_1-9 Q0 MARCO_58_1008687294-8 44 93.438194 hybrid +134_1-9 Q0 MARCO_24_1012060786-6 45 93.435049 hybrid +134_1-9 Q0 MARCO_34_335269979-4 46 93.432678 hybrid +134_1-9 Q0 MARCO_41_2178612900-4 47 93.428200 hybrid +134_1-9 Q0 MARCO_30_882440604-7 48 93.423382 hybrid +134_1-9 Q0 MARCO_36_945698074-3 49 93.416069 hybrid +134_1-9 Q0 MARCO_36_891284331-2 50 93.385300 hybrid +134_1-9 Q0 MARCO_36_901008585-1 51 93.378227 hybrid +134_1-9 Q0 MARCO_41_2178865213-4 52 93.369751 hybrid +134_1-9 Q0 MARCO_01_1033254855-6 53 93.357002 hybrid +134_1-9 Q0 MARCO_34_328092494-21 54 93.355858 hybrid +134_1-9 Q0 MARCO_51_1378932820-4 55 93.343193 hybrid +134_1-9 Q0 MARCO_11_1159856792-1 56 93.340531 hybrid +134_1-9 Q0 MARCO_24_1012123575-5 57 93.339088 hybrid +134_1-9 Q0 MARCO_41_2178734009-1 58 93.336418 hybrid +134_1-9 Q0 MARCO_31_53883007-3 59 93.331032 hybrid +134_1-9 Q0 MARCO_36_901008585-3 60 93.324226 hybrid +134_1-9 Q0 MARCO_48_667255635-4 61 93.298382 hybrid +134_1-9 Q0 MARCO_20_703935175-5 62 93.296231 hybrid +134_1-9 Q0 MARCO_53_1305472506-2 63 93.294882 hybrid +134_1-9 Q0 MARCO_46_558759851-14 64 93.291131 hybrid +134_1-9 Q0 MARCO_46_558759851-6 65 93.291130 hybrid +134_1-9 Q0 MARCO_31_53883007-6 66 93.284182 hybrid +134_1-9 Q0 MARCO_24_1012024291-5 67 93.283562 hybrid +134_1-9 Q0 MARCO_48_1125751325-2 68 93.283381 hybrid +134_1-9 Q0 MARCO_30_1698996763-8 69 93.282282 hybrid +134_1-9 Q0 MARCO_20_703935175-9 70 93.281732 hybrid +134_1-9 Q0 MARCO_29_878601710-1 71 93.281331 hybrid +134_1-9 Q0 MARCO_41_2178633291-1 72 93.276917 hybrid +134_1-9 Q0 MARCO_24_1012107634-7 73 93.267464 hybrid +134_1-9 Q0 MARCO_34_328092494-24 74 93.263947 hybrid +134_1-9 Q0 MARCO_20_703918715-3 75 93.244982 hybrid +134_1-9 Q0 MARCO_43_295478875-2 76 93.244247 hybrid +134_1-9 Q0 MARCO_36_945698074-2 77 93.229553 hybrid +134_1-9 Q0 MARCO_15_1700224768-1 78 93.227632 hybrid +134_1-9 Q0 MARCO_49_1235260263-1 79 93.225882 hybrid +134_1-9 Q0 MARCO_42_325647616-7 80 93.224815 hybrid +134_1-9 Q0 MARCO_58_1008111120-4 81 93.224129 hybrid +134_1-9 Q0 MARCO_34_333625792-3 82 93.218887 hybrid +134_1-9 Q0 MARCO_34_333151546-10 83 93.211777 hybrid +134_1-9 Q0 MARCO_34_328092494-23 84 93.207123 hybrid +134_1-9 Q0 MARCO_58_1007656339-10 85 93.196930 hybrid +134_1-9 Q0 MARCO_51_838065602-4 86 93.195082 hybrid +134_1-9 Q0 MARCO_38_82412737-23 87 93.194482 hybrid +134_1-9 Q0 MARCO_34_323379213-1 88 93.194107 hybrid +134_1-9 Q0 MARCO_41_2178597596-4 89 93.184937 hybrid +134_1-9 Q0 MARCO_22_345264832-6 90 93.181731 hybrid +134_1-9 Q0 MARCO_11_1159856792-2 91 93.180832 hybrid +134_1-9 Q0 MARCO_52_1211446480-1 92 93.177281 hybrid +134_1-9 Q0 MARCO_14_752773680-1 93 93.172881 hybrid +134_1-9 Q0 MARCO_24_1012084495-6 94 93.169800 hybrid +134_1-9 Q0 MARCO_13_709204236-1 95 93.162682 hybrid +134_1-9 Q0 MARCO_51_45716804-1 96 93.158431 hybrid +134_1-9 Q0 MARCO_55_851912182-6 97 93.152786 hybrid +134_1-9 Q0 MARCO_28_591039173-4 98 93.141682 hybrid +134_1-9 Q0 MARCO_51_1383315875-8 99 93.141487 hybrid +134_1-9 Q0 MARCO_55_856560512-4 100 93.140907 hybrid +134_2-1 Q0 MARCO_11_119170152-4 1 91.476913 hybrid +134_2-1 Q0 MARCO_50_1012198764-6 2 91.252714 hybrid +134_2-1 Q0 MARCO_55_229545240-3 3 90.521964 hybrid +134_2-1 Q0 MARCO_33_1242858838-11 4 90.481614 hybrid +134_2-1 Q0 MARCO_40_1464386990-67 5 90.464264 hybrid +134_2-1 Q0 MARCO_41_1109768126-40 6 90.405814 hybrid +134_2-1 Q0 MARCO_36_905975776-1 7 90.385114 hybrid +134_2-1 Q0 MARCO_40_76037309-6 8 90.358514 hybrid +134_2-1 Q0 MARCO_02_1300367875-38 9 90.285213 hybrid +134_2-1 Q0 MARCO_27_1087098863-21 10 90.272514 hybrid +134_2-1 Q0 MARCO_43_761449280-5 11 90.243018 hybrid +134_2-1 Q0 MARCO_05_702532480-10 12 90.239064 hybrid +134_2-1 Q0 MARCO_22_1284614035-10 13 90.227464 hybrid +134_2-1 Q0 MARCO_45_1637240152-2 14 90.209664 hybrid +134_2-1 Q0 MARCO_55_214137423-5 15 90.147714 hybrid +134_2-1 Q0 MARCO_58_970269991-5 16 90.139564 hybrid +134_2-1 Q0 MARCO_28_474264632-12 17 90.130064 hybrid +134_2-1 Q0 MARCO_20_696299228-4 18 90.112926 hybrid +134_2-1 Q0 MARCO_20_696316050-5 19 90.112926 hybrid +134_2-1 Q0 MARCO_45_867413028-4 20 90.090964 hybrid +134_2-1 Q0 MARCO_52_300123075-274 21 90.073114 hybrid +134_2-1 Q0 MARCO_41_1844228176-159 22 90.063323 hybrid +134_2-1 Q0 MARCO_41_1844228176-132 23 90.039656 hybrid +134_2-1 Q0 MARCO_41_1844228176-76 24 90.031500 hybrid +134_2-1 Q0 MARCO_08_1642202575-7 25 90.019564 hybrid +134_2-1 Q0 MARCO_55_216644703-8 26 90.015164 hybrid +134_2-1 Q0 MARCO_28_252169846-20 27 89.993464 hybrid +134_2-1 Q0 MARCO_52_1171087868-18 28 89.988464 hybrid +134_2-1 Q0 MARCO_20_382075984-4 29 89.950714 hybrid +134_2-1 Q0 MARCO_41_1844228176-16 30 89.947218 hybrid +134_2-1 Q0 MARCO_20_696573438-12 31 89.939772 hybrid +134_2-1 Q0 MARCO_20_696589491-12 32 89.939772 hybrid +134_2-1 Q0 MARCO_20_696604540-13 33 89.939772 hybrid +134_2-1 Q0 MARCO_05_614277732-6 34 89.935914 hybrid +134_2-1 Q0 MARCO_23_1830336853-11 35 89.905539 hybrid +134_2-1 Q0 MARCO_45_140776639-6 36 89.893805 hybrid +134_2-1 Q0 MARCO_12_92202134-69 37 89.888064 hybrid +134_2-1 Q0 MARCO_33_1135783639-1 38 89.883064 hybrid +134_2-1 Q0 MARCO_50_2284373252-6 39 89.873564 hybrid +134_2-1 Q0 MARCO_02_1317223585-2 40 89.871914 hybrid +134_2-1 Q0 MARCO_06_897976870-22 41 89.863764 hybrid +134_2-1 Q0 MARCO_46_9750301-5 42 89.860571 hybrid +134_2-1 Q0 MARCO_50_2173365569-8 43 89.842914 hybrid +134_2-1 Q0 MARCO_50_510058971-13 44 89.839914 hybrid +134_2-1 Q0 MARCO_38_866629951-45 45 89.835864 hybrid +134_2-1 Q0 MARCO_52_682982086-22 46 89.835417 hybrid +134_2-1 Q0 MARCO_51_109567731-2 47 89.825914 hybrid +134_2-1 Q0 MARCO_42_326139906-13 48 89.825179 hybrid +134_2-1 Q0 MARCO_43_766434023-2 49 89.817585 hybrid +134_2-1 Q0 MARCO_41_1844228176-78 50 89.816084 hybrid +134_2-1 Q0 MARCO_45_141118466-3 51 89.815726 hybrid +134_2-1 Q0 MARCO_52_1169830604-16 52 89.804064 hybrid +134_2-1 Q0 MARCO_57_1884606343-13 53 89.796113 hybrid +134_2-1 Q0 MARCO_20_756907000-3 54 89.795063 hybrid +134_2-1 Q0 MARCO_36_939912639-3 55 89.786514 hybrid +134_2-1 Q0 MARCO_50_2330577004-48 56 89.779564 hybrid +134_2-1 Q0 MARCO_32_1253857810-11 57 89.771814 hybrid +134_2-1 Q0 MARCO_55_213761152-16 58 89.770914 hybrid +134_2-1 Q0 MARCO_13_1353952533-15 59 89.769514 hybrid +134_2-1 Q0 MARCO_55_209334100-9 60 89.767064 hybrid +134_2-1 Q0 MARCO_15_641358567-1 61 89.765563 hybrid +134_2-1 Q0 MARCO_26_430454398-4 62 89.764014 hybrid +134_2-1 Q0 MARCO_26_27585716-18 63 89.755464 hybrid +134_2-1 Q0 MARCO_14_1535537025-6 64 89.749264 hybrid +134_2-1 Q0 MARCO_41_1377037745-7 65 89.746064 hybrid +134_2-1 Q0 MARCO_57_559059433-19 66 89.737014 hybrid +134_2-1 Q0 MARCO_50_2156613647-34 67 89.735846 hybrid +134_2-1 Q0 MARCO_29_555976794-4 68 89.733914 hybrid +134_2-1 Q0 MARCO_48_692965795-5 69 89.733114 hybrid +134_2-1 Q0 MARCO_55_240061804-5 70 89.732014 hybrid +134_2-1 Q0 MARCO_41_1844228176-131 71 89.726347 hybrid +134_2-1 Q0 MARCO_04_1096237509-4 72 89.725664 hybrid +134_2-1 Q0 MARCO_55_858965503-4 73 89.724235 hybrid +134_2-1 Q0 MARCO_42_1016000274-10 74 89.717914 hybrid +134_2-1 Q0 MARCO_00_624973167-2 75 89.717360 hybrid +134_2-1 Q0 MARCO_41_1844228176-15 76 89.709052 hybrid +134_2-1 Q0 MARCO_44_808370307-6 77 89.702114 hybrid +134_2-1 Q0 MARCO_31_236742158-11 78 89.699614 hybrid +134_2-1 Q0 MARCO_41_1844228176-28 79 89.698821 hybrid +134_2-1 Q0 MARCO_01_2115901464-10 80 89.690614 hybrid +134_2-1 Q0 MARCO_41_1844228176-157 81 89.686080 hybrid +134_2-1 Q0 MARCO_05_1587598261-9 82 89.683564 hybrid +134_2-1 Q0 MARCO_07_1200732950-10 83 89.683464 hybrid +134_2-1 Q0 MARCO_05_1037156677-7 84 89.680864 hybrid +134_2-1 Q0 MARCO_34_323470021-11 85 89.680014 hybrid +134_2-1 Q0 MARCO_41_1270678948-24 86 89.674164 hybrid +134_2-1 Q0 MARCO_34_329105468-5 87 89.673864 hybrid +134_2-1 Q0 MARCO_33_1129645919-1 88 89.668714 hybrid +134_2-1 Q0 MARCO_34_135122534-2 89 89.660364 hybrid +134_2-1 Q0 MARCO_41_1097948720-49 90 89.658514 hybrid +134_2-1 Q0 MARCO_55_207962530-7 91 89.656114 hybrid +134_2-1 Q0 MARCO_41_1023348476-9 92 89.652664 hybrid +134_2-1 Q0 MARCO_46_7012985-7 93 89.646880 hybrid +134_2-1 Q0 MARCO_46_9830464-3 94 89.642939 hybrid +134_2-1 Q0 MARCO_20_696470166-8 95 89.639296 hybrid +134_2-1 Q0 MARCO_25_1116513032-7 96 89.634581 hybrid +134_2-1 Q0 MARCO_47_374849949-6 97 89.631764 hybrid +134_2-1 Q0 MARCO_55_858850694-5 98 89.631064 hybrid +134_2-1 Q0 MARCO_49_400153209-10 99 89.623264 hybrid +134_2-1 Q0 MARCO_34_329105468-6 100 89.621514 hybrid +134_2-3 Q0 MARCO_26_156515181-16 1 88.168283 hybrid +134_2-3 Q0 MARCO_47_1589034627-14 2 86.527964 hybrid +134_2-3 Q0 MARCO_00_590373901-14 3 85.973505 hybrid +134_2-3 Q0 MARCO_49_402206862-23 4 85.925066 hybrid +134_2-3 Q0 MARCO_30_738605676-9 5 85.909334 hybrid +134_2-3 Q0 MARCO_53_1041630128-10 6 85.887232 hybrid +134_2-3 Q0 MARCO_55_1127900399-14 7 85.875597 hybrid +134_2-3 Q0 MARCO_27_1111356564-18 8 85.843897 hybrid +134_2-3 Q0 MARCO_37_1515282871-3 9 85.840059 hybrid +134_2-3 Q0 MARCO_26_1551013371-6 10 85.839220 hybrid +134_2-3 Q0 MARCO_49_1697473398-10 11 85.747072 hybrid +134_2-3 Q0 MARCO_41_1197416817-15 12 85.733812 hybrid +134_2-3 Q0 MARCO_29_32099060-2 13 85.683138 hybrid +134_2-3 Q0 MARCO_37_1255561149-18 14 85.680849 hybrid +134_2-3 Q0 MARCO_27_1208178303-3 15 85.664118 hybrid +134_2-3 Q0 MARCO_24_1553824018-15 16 85.663996 hybrid +134_2-3 Q0 MARCO_12_1451725123-23 17 85.627474 hybrid +134_2-3 Q0 MARCO_27_1334112520-4 18 85.580439 hybrid +134_2-3 Q0 MARCO_33_1243430503-1 19 85.575724 hybrid +134_2-3 Q0 MARCO_00_1160217140-31 20 85.564989 hybrid +134_2-3 Q0 MARCO_31_902968312-5 21 85.563723 hybrid +134_2-3 Q0 MARCO_13_21179806-14 22 85.548120 hybrid +134_2-3 Q0 MARCO_13_21179806-16 23 85.548120 hybrid +134_2-3 Q0 MARCO_55_126048728-7 24 85.527002 hybrid +134_2-3 Q0 MARCO_06_1716723295-4 25 85.500467 hybrid +134_2-3 Q0 MARCO_28_40535134-5 26 85.498209 hybrid +134_2-3 Q0 MARCO_37_1223731603-5 27 85.495737 hybrid +134_2-3 Q0 MARCO_24_954107970-9 28 85.486414 hybrid +134_2-3 Q0 MARCO_51_688646166-28 29 85.483606 hybrid +134_2-3 Q0 MARCO_30_737679851-7 30 85.475374 hybrid +134_2-3 Q0 MARCO_31_1656200838-14 31 85.472528 hybrid +134_2-3 Q0 MARCO_20_22181678-15 32 85.471834 hybrid +134_2-3 Q0 MARCO_50_2156613647-30 33 85.463282 hybrid +134_2-3 Q0 MARCO_20_60360409-3 34 85.450716 hybrid +134_2-3 Q0 MARCO_06_1718110484-1 35 85.435556 hybrid +134_2-3 Q0 MARCO_25_233643081-28 36 85.431452 hybrid +134_2-3 Q0 MARCO_40_821769764-3 37 85.410860 hybrid +134_2-3 Q0 MARCO_50_1418025639-14 38 85.388315 hybrid +134_2-3 Q0 MARCO_29_873227235-5 39 85.384073 hybrid +134_2-3 Q0 MARCO_13_1664335635-8 40 85.382967 hybrid +134_2-3 Q0 MARCO_45_162109460-5 41 85.377810 hybrid +134_2-3 Q0 MARCO_21_1038412678-3 42 85.364092 hybrid +134_2-3 Q0 MARCO_14_758032515-10 43 85.363764 hybrid +134_2-3 Q0 MARCO_29_873576053-15 44 85.352404 hybrid +134_2-3 Q0 MARCO_47_951489647-1 45 85.351187 hybrid +134_2-3 Q0 MARCO_02_1569335028-5 46 85.342295 hybrid +134_2-3 Q0 MARCO_46_383844485-3 47 85.331530 hybrid +134_2-3 Q0 MARCO_22_502802513-10 48 85.324732 hybrid +134_2-3 Q0 MARCO_50_2156613647-31 49 85.324282 hybrid +134_2-3 Q0 MARCO_45_853752757-3 50 85.323282 hybrid +134_2-3 Q0 MARCO_41_1844093907-2 51 85.322908 hybrid +134_2-3 Q0 MARCO_53_1012374136-19 52 85.315851 hybrid +134_2-3 Q0 MARCO_55_818003861-4 53 85.309381 hybrid +134_2-3 Q0 MARCO_06_228099307-2 54 85.307871 hybrid +134_2-3 Q0 MARCO_31_1440955351-13 55 85.292322 hybrid +134_2-3 Q0 MARCO_57_1974509850-13 56 85.288729 hybrid +134_2-3 Q0 MARCO_50_2156613647-39 57 85.281702 hybrid +134_2-3 Q0 MARCO_22_1648858846-19 58 85.280634 hybrid +134_2-3 Q0 MARCO_20_1106648205-8 59 85.279985 hybrid +134_2-3 Q0 MARCO_40_739799637-36 60 85.277117 hybrid +134_2-3 Q0 MARCO_42_1893888047-1 61 85.268244 hybrid +134_2-3 Q0 MARCO_46_125793162-17 62 85.268152 hybrid +134_2-3 Q0 MARCO_24_1833077-3 63 85.258867 hybrid +134_2-3 Q0 MARCO_45_1583124704-6 64 85.256495 hybrid +134_2-3 Q0 MARCO_59_942738593-14 65 85.256403 hybrid +134_2-3 Q0 MARCO_42_264021260-44 66 85.248110 hybrid +134_2-3 Q0 MARCO_10_653330942-4 67 85.246897 hybrid +134_2-3 Q0 MARCO_50_1416666844-78 68 85.245317 hybrid +134_2-3 Q0 MARCO_53_1044200540-2 69 85.242861 hybrid +134_2-3 Q0 MARCO_21_1522889693-26 70 85.242258 hybrid +134_2-3 Q0 MARCO_50_2394889593-12 71 85.232416 hybrid +134_2-3 Q0 MARCO_58_1446037426-1 72 85.232337 hybrid +134_2-3 Q0 MARCO_49_1854990042-14 73 85.230440 hybrid +134_2-3 Q0 MARCO_56_929086301-5 74 85.228144 hybrid +134_2-3 Q0 MARCO_06_332035497-9 75 85.224924 hybrid +134_2-3 Q0 MARCO_55_851938127-2 76 85.222162 hybrid +134_2-3 Q0 MARCO_28_1323413327-2 77 85.214449 hybrid +134_2-3 Q0 MARCO_33_1243288022-27 78 85.213396 hybrid +134_2-3 Q0 MARCO_29_663237258-4 79 85.211420 hybrid +134_2-3 Q0 MARCO_27_1208178303-1 80 85.208406 hybrid +134_2-3 Q0 MARCO_30_131177147-1 81 85.206381 hybrid +134_2-3 Q0 MARCO_50_2156613647-47 82 85.206148 hybrid +134_2-3 Q0 MARCO_02_928674347-5 83 85.205622 hybrid +134_2-3 Q0 MARCO_24_136849686-8 84 85.204172 hybrid +134_2-3 Q0 MARCO_50_2033468525-12 85 85.203837 hybrid +134_2-3 Q0 MARCO_21_1039590847-9 86 85.202959 hybrid +134_2-3 Q0 MARCO_30_1134054641-1 87 85.201899 hybrid +134_2-3 Q0 MARCO_53_721787782-1 88 85.201137 hybrid +134_2-3 Q0 MARCO_50_2156613647-35 89 85.200548 hybrid +134_2-3 Q0 MARCO_26_154974859-3 90 85.199419 hybrid +134_2-3 Q0 MARCO_52_621018191-1 91 85.198887 hybrid +134_2-3 Q0 MARCO_50_1664874052-13 92 85.197855 hybrid +134_2-3 Q0 MARCO_26_154974859-4 93 85.194086 hybrid +134_2-3 Q0 MARCO_48_1597337759-7 94 85.193697 hybrid +134_2-3 Q0 MARCO_20_362506271-10 95 85.191629 hybrid +134_2-3 Q0 MARCO_37_1224769843-22 96 85.189219 hybrid +134_2-3 Q0 MARCO_09_946383723-8 97 85.186587 hybrid +134_2-3 Q0 MARCO_50_2156613647-45 98 85.185884 hybrid +134_2-3 Q0 MARCO_19_2004469479-7 99 85.185778 hybrid +134_2-3 Q0 MARCO_26_1552418654-15 100 85.179796 hybrid +134_3-1 Q0 MARCO_11_753802296-9 1 92.002645 hybrid +134_3-1 Q0 MARCO_43_1525559438-4 2 91.682318 hybrid +134_3-1 Q0 MARCO_53_1516283572-1 3 91.597399 hybrid +134_3-1 Q0 MARCO_04_62603617-3 4 91.583868 hybrid +134_3-1 Q0 MARCO_43_1527456020-2 5 91.547518 hybrid +134_3-1 Q0 MARCO_43_1526422030-1 6 91.428318 hybrid +134_3-1 Q0 MARCO_53_1320167529-13 7 91.305768 hybrid +134_3-1 Q0 MARCO_29_829755058-1 8 91.274818 hybrid +134_3-1 Q0 MARCO_33_50942814-1 9 91.246668 hybrid +134_3-1 Q0 MARCO_59_950531589-10 10 91.217618 hybrid +134_3-1 Q0 MARCO_15_1649018272-3 11 91.203268 hybrid +134_3-1 Q0 MARCO_53_1287779363-1 12 91.202518 hybrid +134_3-1 Q0 MARCO_49_1370575421-26 13 91.181169 hybrid +134_3-1 Q0 MARCO_43_1521300793-4 14 91.178568 hybrid +134_3-1 Q0 MARCO_32_1254395771-13 15 91.154068 hybrid +134_3-1 Q0 MARCO_24_1010552548-2 16 91.146668 hybrid +134_3-1 Q0 MARCO_25_571895886-1 17 91.131618 hybrid +134_3-1 Q0 MARCO_33_289132285-1 18 91.059868 hybrid +134_3-1 Q0 MARCO_15_1644813778-5 19 91.044368 hybrid +134_3-1 Q0 MARCO_44_1119894799-1 20 91.041268 hybrid +134_3-1 Q0 MARCO_53_1508745718-2 21 91.035162 hybrid +134_3-1 Q0 MARCO_53_1515731808-1 22 91.030555 hybrid +134_3-1 Q0 MARCO_30_694378169-2 23 91.006118 hybrid +134_3-1 Q0 MARCO_15_1649183483-3 24 90.998118 hybrid +134_3-1 Q0 MARCO_43_1526777570-5 25 90.974918 hybrid +134_3-1 Q0 MARCO_33_286511929-2 26 90.957718 hybrid +134_3-1 Q0 MARCO_33_288827928-2 27 90.939018 hybrid +134_3-1 Q0 MARCO_41_609072423-2 28 90.915118 hybrid +134_3-1 Q0 MARCO_02_387021475-9 29 90.894468 hybrid +134_3-1 Q0 MARCO_24_1011881229-6 30 90.892060 hybrid +134_3-1 Q0 MARCO_47_540763366-6 31 90.884368 hybrid +134_3-1 Q0 MARCO_41_308526096-3 32 90.864868 hybrid +134_3-1 Q0 MARCO_24_1086567813-1 33 90.862318 hybrid +134_3-1 Q0 MARCO_36_909104267-9 34 90.852718 hybrid +134_3-1 Q0 MARCO_33_219107191-3 35 90.849668 hybrid +134_3-1 Q0 MARCO_15_1644862177-3 36 90.847918 hybrid +134_3-1 Q0 MARCO_04_62603617-2 37 90.824968 hybrid +134_3-1 Q0 MARCO_44_1169169258-1 38 90.822868 hybrid +134_3-1 Q0 MARCO_43_1526422030-3 39 90.820318 hybrid +134_3-1 Q0 MARCO_43_1521332427-2 40 90.794268 hybrid +134_3-1 Q0 MARCO_43_1527177923-7 41 90.793468 hybrid +134_3-1 Q0 MARCO_50_1927465220-1 42 90.782718 hybrid +134_3-1 Q0 MARCO_43_1519480019-5 43 90.780168 hybrid +134_3-1 Q0 MARCO_43_1527163076-2 44 90.778118 hybrid +134_3-1 Q0 MARCO_43_1524180834-5 45 90.770268 hybrid +134_3-1 Q0 MARCO_35_809589077-4 46 90.756463 hybrid +134_3-1 Q0 MARCO_04_383230893-11 47 90.754218 hybrid +134_3-1 Q0 MARCO_26_144080684-5 48 90.748818 hybrid +134_3-1 Q0 MARCO_26_503669016-8 49 90.744286 hybrid +134_3-1 Q0 MARCO_28_966163488-4 50 90.741318 hybrid +134_3-1 Q0 MARCO_24_1010209054-2 51 90.737468 hybrid +134_3-1 Q0 MARCO_19_2499609270-6 52 90.700364 hybrid +134_3-1 Q0 MARCO_33_95654368-1 53 90.690968 hybrid +134_3-1 Q0 MARCO_36_1289354136-2 54 90.688318 hybrid +134_3-1 Q0 MARCO_41_1844228176-80 55 90.676415 hybrid +134_3-1 Q0 MARCO_41_1844228176-16 56 90.675598 hybrid +134_3-1 Q0 MARCO_27_1108452548-1 57 90.674618 hybrid +134_3-1 Q0 MARCO_28_650117525-5 58 90.660370 hybrid +134_3-1 Q0 MARCO_36_1661888719-3 59 90.651318 hybrid +134_3-1 Q0 MARCO_12_109046377-8 60 90.648268 hybrid +134_3-1 Q0 MARCO_36_897237880-5 61 90.643853 hybrid +134_3-1 Q0 MARCO_53_1320167529-10 62 90.641868 hybrid +134_3-1 Q0 MARCO_43_1521332427-4 63 90.638968 hybrid +134_3-1 Q0 MARCO_41_1844228176-90 64 90.638947 hybrid +134_3-1 Q0 MARCO_50_1426285814-16 65 90.635119 hybrid +134_3-1 Q0 MARCO_36_955877321-3 66 90.634247 hybrid +134_3-1 Q0 MARCO_24_1011006628-2 67 90.633018 hybrid +134_3-1 Q0 MARCO_53_908042501-1 68 90.632768 hybrid +134_3-1 Q0 MARCO_56_149902838-2 69 90.626718 hybrid +134_3-1 Q0 MARCO_51_642227128-1 70 90.622218 hybrid +134_3-1 Q0 MARCO_27_396002117-1 71 90.619268 hybrid +134_3-1 Q0 MARCO_14_900785922-1 72 90.614518 hybrid +134_3-1 Q0 MARCO_24_1645829668-2 73 90.612718 hybrid +134_3-1 Q0 MARCO_24_1955582603-1 74 90.611418 hybrid +134_3-1 Q0 MARCO_13_1194391138-4 75 90.604368 hybrid +134_3-1 Q0 MARCO_41_1844228176-75 76 90.594907 hybrid +134_3-1 Q0 MARCO_40_977060270-4 77 90.590868 hybrid +134_3-1 Q0 MARCO_38_1623748836-1 78 90.589918 hybrid +134_3-1 Q0 MARCO_41_2227222408-1 79 90.589518 hybrid +134_3-1 Q0 MARCO_14_482895059-4 80 90.575760 hybrid +134_3-1 Q0 MARCO_20_696250341-8 81 90.569863 hybrid +134_3-1 Q0 MARCO_12_1250763247-3 82 90.564668 hybrid +134_3-1 Q0 MARCO_28_396743788-2 83 90.557488 hybrid +134_3-1 Q0 MARCO_54_173805246-2 84 90.545334 hybrid +134_3-1 Q0 MARCO_33_66653761-1 85 90.539918 hybrid +134_3-1 Q0 MARCO_53_1516283572-6 86 90.526856 hybrid +134_3-1 Q0 MARCO_19_1910369657-2 87 90.523418 hybrid +134_3-1 Q0 MARCO_41_607835578-1 88 90.514668 hybrid +134_3-1 Q0 MARCO_50_2800018166-3 89 90.513168 hybrid +134_3-1 Q0 MARCO_36_888936245-24 90 90.513146 hybrid +134_3-1 Q0 MARCO_51_1375663603-5 91 90.509118 hybrid +134_3-1 Q0 MARCO_14_34745860-8 92 90.508068 hybrid +134_3-1 Q0 MARCO_57_1548216275-2 93 90.507968 hybrid +134_3-1 Q0 MARCO_36_888475839-7 94 90.503991 hybrid +134_3-1 Q0 MARCO_45_722866616-2 95 90.499168 hybrid +134_3-1 Q0 MARCO_43_1526686450-4 96 90.498768 hybrid +134_3-1 Q0 MARCO_33_289015346-11 97 90.488968 hybrid +134_3-1 Q0 MARCO_53_1320131019-17 98 90.486868 hybrid +134_3-1 Q0 MARCO_45_1042826087-2 99 90.485318 hybrid +134_3-1 Q0 MARCO_15_581015685-1 100 90.484518 hybrid +134_3-3 Q0 MARCO_41_1844228176-76 1 93.583828 hybrid +134_3-3 Q0 MARCO_49_593352354-1 2 93.143495 hybrid +134_3-3 Q0 MARCO_36_932740181-4 3 93.062545 hybrid +134_3-3 Q0 MARCO_36_111462192-15 4 92.969595 hybrid +134_3-3 Q0 MARCO_10_1605638999-9 5 92.772545 hybrid +134_3-3 Q0 MARCO_53_1287791133-2 6 92.749495 hybrid +134_3-3 Q0 MARCO_16_1133103028-5 7 92.738945 hybrid +134_3-3 Q0 MARCO_46_7779561-9 8 92.534595 hybrid +134_3-3 Q0 MARCO_50_2446574456-38 9 92.502745 hybrid +134_3-3 Q0 MARCO_30_444306054-2 10 92.487494 hybrid +134_3-3 Q0 MARCO_14_1433640270-2 11 92.409044 hybrid +134_3-3 Q0 MARCO_36_111462192-6 12 92.406495 hybrid +134_3-3 Q0 MARCO_29_1497444290-7 13 92.386744 hybrid +134_3-3 Q0 MARCO_50_223577893-1 14 92.316695 hybrid +134_3-3 Q0 MARCO_36_111462192-8 15 92.281445 hybrid +134_3-3 Q0 MARCO_31_556972943-10 16 92.195395 hybrid +134_3-3 Q0 MARCO_00_1260276391-2 17 92.189545 hybrid +134_3-3 Q0 MARCO_41_1844228176-45 18 92.139462 hybrid +134_3-3 Q0 MARCO_41_354325666-1 19 92.086945 hybrid +134_3-3 Q0 MARCO_41_2220753518-4 20 92.046494 hybrid +134_3-3 Q0 MARCO_58_1696290165-1 21 92.043845 hybrid +134_3-3 Q0 MARCO_57_1149416975-2 22 92.042645 hybrid +134_3-3 Q0 MARCO_36_111462192-1 23 92.036695 hybrid +134_3-3 Q0 MARCO_20_1548582213-11 24 92.023544 hybrid +134_3-3 Q0 MARCO_11_1166065695-1 25 91.997345 hybrid +134_3-3 Q0 MARCO_56_112216252-2 26 91.928945 hybrid +134_3-3 Q0 MARCO_29_1312788065-1 27 91.915745 hybrid +134_3-3 Q0 MARCO_50_2446574456-33 28 91.909945 hybrid +134_3-3 Q0 MARCO_43_1525657113-1 29 91.898245 hybrid +134_3-3 Q0 MARCO_29_556126463-5 30 91.884445 hybrid +134_3-3 Q0 MARCO_37_1637048600-4 31 91.884395 hybrid +134_3-3 Q0 MARCO_29_831752572-1 32 91.883423 hybrid +134_3-3 Q0 MARCO_36_111462192-9 33 91.831594 hybrid +134_3-3 Q0 MARCO_33_60742676-1 34 91.818745 hybrid +134_3-3 Q0 MARCO_38_32360979-1 35 91.805195 hybrid +134_3-3 Q0 MARCO_47_489790266-1 36 91.793244 hybrid +134_3-3 Q0 MARCO_11_1166032306-7 37 91.778395 hybrid +134_3-3 Q0 MARCO_41_1844228176-71 38 91.767495 hybrid +134_3-3 Q0 MARCO_16_1133715027-4 39 91.758895 hybrid +134_3-3 Q0 MARCO_12_1250770070-1 40 91.747595 hybrid +134_3-3 Q0 MARCO_29_999041215-1 41 91.736645 hybrid +134_3-3 Q0 MARCO_29_986268325-2 42 91.689244 hybrid +134_3-3 Q0 MARCO_01_1386463257-4 43 91.686395 hybrid +134_3-3 Q0 MARCO_50_1725621751-15 44 91.680745 hybrid +134_3-3 Q0 MARCO_00_1260276391-87 45 91.666445 hybrid +134_3-3 Q0 MARCO_15_1699747270-2 46 91.662745 hybrid +134_3-3 Q0 MARCO_12_376841438-1 47 91.662644 hybrid +134_3-3 Q0 MARCO_41_1844228176-30 48 91.653330 hybrid +134_3-3 Q0 MARCO_41_1844228176-41 49 91.639094 hybrid +134_3-3 Q0 MARCO_24_4970257-1 50 91.620856 hybrid +134_3-3 Q0 MARCO_38_66176751-1 51 91.619744 hybrid +134_3-3 Q0 MARCO_00_1260276391-110 52 91.614345 hybrid +134_3-3 Q0 MARCO_00_1268443533-6 53 91.612345 hybrid +134_3-3 Q0 MARCO_00_1260276391-6 54 91.608644 hybrid +134_3-3 Q0 MARCO_59_779788528-5 55 91.594495 hybrid +134_3-3 Q0 MARCO_50_223577893-3 56 91.591595 hybrid +134_3-3 Q0 MARCO_04_272468965-3 57 91.580845 hybrid +134_3-3 Q0 MARCO_33_97517538-1 58 91.578094 hybrid +134_3-3 Q0 MARCO_20_696573438-12 59 91.573656 hybrid +134_3-3 Q0 MARCO_20_696589491-12 60 91.573656 hybrid +134_3-3 Q0 MARCO_20_696604540-13 61 91.573656 hybrid +134_3-3 Q0 MARCO_50_2446574456-24 62 91.567995 hybrid +134_3-3 Q0 MARCO_29_831752572-3 63 91.564675 hybrid +134_3-3 Q0 MARCO_50_1206422828-15 64 91.564344 hybrid +134_3-3 Q0 MARCO_55_853878381-30 65 91.560907 hybrid +134_3-3 Q0 MARCO_41_1844228176-16 66 91.547441 hybrid +134_3-3 Q0 MARCO_08_1657446791-4 67 91.543145 hybrid +134_3-3 Q0 MARCO_00_1260276391-3 68 91.542495 hybrid +134_3-3 Q0 MARCO_15_1699747270-1 69 91.537845 hybrid +134_3-3 Q0 MARCO_41_1845166313-1 70 91.536913 hybrid +134_3-3 Q0 MARCO_13_1321371070-12 71 91.533344 hybrid +134_3-3 Q0 MARCO_58_833894645-4 72 91.529144 hybrid +134_3-3 Q0 MARCO_41_288676700-1 73 91.528194 hybrid +134_3-3 Q0 MARCO_35_406898141-2 74 91.521794 hybrid +134_3-3 Q0 MARCO_36_955877321-3 75 91.521502 hybrid +134_3-3 Q0 MARCO_36_897237880-5 76 91.517153 hybrid +134_3-3 Q0 MARCO_41_1844228176-43 77 91.515664 hybrid +134_3-3 Q0 MARCO_37_1668091923-15 78 91.513245 hybrid +134_3-3 Q0 MARCO_41_2220997535-1 79 91.509544 hybrid +134_3-3 Q0 MARCO_58_1699298423-3 80 91.506445 hybrid +134_3-3 Q0 MARCO_55_285696593-5 81 91.503995 hybrid +134_3-3 Q0 MARCO_14_1433640270-21 82 91.496844 hybrid +134_3-3 Q0 MARCO_32_1692397041-6 83 91.494844 hybrid +134_3-3 Q0 MARCO_29_592294875-5 84 91.483194 hybrid +134_3-3 Q0 MARCO_17_2384950019-18 85 91.479006 hybrid +134_3-3 Q0 MARCO_00_1260276391-38 86 91.474045 hybrid +134_3-3 Q0 MARCO_33_704628461-1 87 91.472195 hybrid +134_3-3 Q0 MARCO_40_1779718880-1 88 91.471994 hybrid +134_3-3 Q0 MARCO_00_1260276391-21 89 91.467145 hybrid +134_3-3 Q0 MARCO_53_1287779363-7 90 91.467144 hybrid +134_3-3 Q0 MARCO_51_737199831-2 91 91.465545 hybrid +134_3-3 Q0 MARCO_22_923946999-1 92 91.459245 hybrid +134_3-3 Q0 MARCO_24_1010160799-4 93 91.457345 hybrid +134_3-3 Q0 MARCO_29_986268325-6 94 91.456745 hybrid +134_3-3 Q0 MARCO_41_1844228176-32 95 91.456517 hybrid +134_3-3 Q0 MARCO_49_1558777981-1 96 91.451895 hybrid +134_3-3 Q0 MARCO_45_141710890-11 97 91.447545 hybrid +134_3-3 Q0 MARCO_43_1522683443-5 98 91.446945 hybrid +134_3-3 Q0 MARCO_41_1844228176-89 99 91.442138 hybrid +134_3-3 Q0 MARCO_54_93559213-2 100 91.438544 hybrid +134_3-5 Q0 MARCO_28_342834928-2 1 89.836784 hybrid +134_3-5 Q0 MARCO_45_140269524-8 2 89.305552 hybrid +134_3-5 Q0 MARCO_58_920132313-2 3 89.177202 hybrid +134_3-5 Q0 MARCO_29_858098854-4 4 89.160851 hybrid +134_3-5 Q0 MARCO_12_692462615-5 5 89.075752 hybrid +134_3-5 Q0 MARCO_28_1747520260-11 6 89.029451 hybrid +134_3-5 Q0 MARCO_58_920132313-5 7 89.028902 hybrid +134_3-5 Q0 MARCO_14_37386655-1 8 88.884755 hybrid +134_3-5 Q0 MARCO_50_1581169528-1 9 88.879752 hybrid +134_3-5 Q0 MARCO_32_372752547-3 10 88.871106 hybrid +134_3-5 Q0 MARCO_43_718709868-1 11 88.854752 hybrid +134_3-5 Q0 MARCO_55_656430583-4 12 88.853152 hybrid +134_3-5 Q0 MARCO_52_1731113659-2 13 88.827452 hybrid +134_3-5 Q0 MARCO_10_802021811-1 14 88.793279 hybrid +134_3-5 Q0 MARCO_22_1079808634-2 15 88.783952 hybrid +134_3-5 Q0 MARCO_05_1701117175-3 16 88.773961 hybrid +134_3-5 Q0 MARCO_16_1130916381-1 17 88.769202 hybrid +134_3-5 Q0 MARCO_36_920838991-1 18 88.738202 hybrid +134_3-5 Q0 MARCO_23_694183356-18 19 88.732800 hybrid +134_3-5 Q0 MARCO_33_65471687-4 20 88.720952 hybrid +134_3-5 Q0 MARCO_53_1529987863-2 21 88.714261 hybrid +134_3-5 Q0 KILT_7842528-4 22 88.696340 hybrid +134_3-5 Q0 MARCO_28_342834928-1 23 88.694899 hybrid +134_3-5 Q0 MARCO_10_175883351-2 24 88.689301 hybrid +134_3-5 Q0 MARCO_30_433509918-2 25 88.689301 hybrid +134_3-5 Q0 MARCO_22_1237929300-2 26 88.685652 hybrid +134_3-5 Q0 MARCO_08_822668977-2 27 88.682702 hybrid +134_3-5 Q0 MARCO_28_655583201-4 28 88.676915 hybrid +134_3-5 Q0 MARCO_48_372143159-8 29 88.675839 hybrid +134_3-5 Q0 MARCO_35_809268425-18 30 88.667630 hybrid +134_3-5 Q0 MARCO_33_72833203-5 31 88.667552 hybrid +134_3-5 Q0 KILT_37848383-1 32 88.654851 hybrid +134_3-5 Q0 MARCO_29_420603151-1 33 88.648752 hybrid +134_3-5 Q0 MARCO_57_1164317272-56 34 88.639602 hybrid +134_3-5 Q0 MARCO_19_478710235-16 35 88.636662 hybrid +134_3-5 Q0 MARCO_05_452627767-1 36 88.635747 hybrid +134_3-5 Q0 MARCO_19_2499609270-6 37 88.604436 hybrid +134_3-5 Q0 MARCO_55_285602292-8 38 88.593351 hybrid +134_3-5 Q0 MARCO_26_503669016-15 39 88.585004 hybrid +134_3-5 Q0 MARCO_29_963961855-2 40 88.584301 hybrid +134_3-5 Q0 MARCO_24_1010817940-4 41 88.582752 hybrid +134_3-5 Q0 MARCO_12_865112947-19 42 88.582201 hybrid +134_3-5 Q0 MARCO_19_2499609270-5 43 88.578259 hybrid +134_3-5 Q0 MARCO_06_1902727127-2 44 88.572904 hybrid +134_3-5 Q0 MARCO_31_1030579740-1 45 88.565802 hybrid +134_3-5 Q0 MARCO_22_1606826381-4 46 88.565404 hybrid +134_3-5 Q0 MARCO_46_776511116-7 47 88.553937 hybrid +134_3-5 Q0 MARCO_15_1770265464-9 48 88.552052 hybrid +134_3-5 Q0 MARCO_07_1251994066-3 49 88.545857 hybrid +134_3-5 Q0 MARCO_25_1141294561-1 50 88.538220 hybrid +134_3-5 Q0 MARCO_22_1492816937-5 51 88.535687 hybrid +134_3-5 Q0 MARCO_31_1423583880-2 52 88.533952 hybrid +134_3-5 Q0 MARCO_27_696024453-23 53 88.532701 hybrid +134_3-5 Q0 MARCO_45_1028844881-3 54 88.529889 hybrid +134_3-5 Q0 MARCO_50_526651767-6 55 88.525914 hybrid +134_3-5 Q0 MARCO_00_624415512-3 56 88.524961 hybrid +134_3-5 Q0 MARCO_49_225090692-4 57 88.518537 hybrid +134_3-5 Q0 MARCO_33_67647721-1 58 88.513301 hybrid +134_3-5 Q0 MARCO_45_1028844881-1 59 88.508550 hybrid +134_3-5 Q0 MARCO_05_323712534-1 60 88.508051 hybrid +134_3-5 Q0 MARCO_33_354489076-7 61 88.505971 hybrid +134_3-5 Q0 MARCO_07_701837540-4 62 88.496501 hybrid +134_3-5 Q0 MARCO_53_1330928078-2 63 88.496243 hybrid +134_3-5 Q0 MARCO_15_1770071574-19 64 88.492402 hybrid +134_3-5 Q0 MARCO_15_1808939076-4 65 88.491052 hybrid +134_3-5 Q0 MARCO_22_937889472-4 66 88.487252 hybrid +134_3-5 Q0 MARCO_21_189571862-3 67 88.481502 hybrid +134_3-5 Q0 MARCO_46_91189409-9 68 88.481452 hybrid +134_3-5 Q0 MARCO_28_655310264-3 69 88.479115 hybrid +134_3-5 Q0 MARCO_35_844191390-8 70 88.478601 hybrid +134_3-5 Q0 MARCO_57_1455458189-24 71 88.477702 hybrid +134_3-5 Q0 MARCO_00_621884290-2 72 88.465352 hybrid +134_3-5 Q0 MARCO_48_1880090160-2 73 88.464551 hybrid +134_3-5 Q0 MARCO_58_900486122-1 74 88.461552 hybrid +134_3-5 Q0 MARCO_36_920838991-5 75 88.460351 hybrid +134_3-5 Q0 MARCO_05_453313072-8 76 88.458203 hybrid +134_3-5 Q0 MARCO_45_847153758-9 77 88.456105 hybrid +134_3-5 Q0 MARCO_31_1746052345-5 78 88.447252 hybrid +134_3-5 Q0 MARCO_58_911016944-2 79 88.445951 hybrid +134_3-5 Q0 MARCO_50_696797049-3 80 88.442861 hybrid +134_3-5 Q0 MARCO_50_679607114-13 81 88.442002 hybrid +134_3-5 Q0 MARCO_23_693877969-8 82 88.434812 hybrid +134_3-5 Q0 MARCO_12_1144067591-6 83 88.432965 hybrid +134_3-5 Q0 MARCO_45_847153758-12 84 88.431981 hybrid +134_3-5 Q0 MARCO_50_1454753708-14 85 88.428144 hybrid +134_3-5 Q0 MARCO_52_387070614-2 86 88.426251 hybrid +134_3-5 Q0 MARCO_44_738875395-1 87 88.424252 hybrid +134_3-5 Q0 MARCO_27_846110671-21 88 88.422451 hybrid +134_3-5 Q0 MARCO_25_1141294561-2 89 88.421445 hybrid +134_3-5 Q0 MARCO_44_1928230096-1 90 88.420636 hybrid +134_3-5 Q0 MARCO_17_2386805231-2 91 88.417127 hybrid +134_3-5 Q0 MARCO_08_1152414318-15 92 88.415802 hybrid +134_3-5 Q0 MARCO_36_897203131-1 93 88.412183 hybrid +134_3-5 Q0 MARCO_36_897237880-5 94 88.411893 hybrid +134_3-5 Q0 MARCO_47_1066708545-7 95 88.411052 hybrid +134_3-5 Q0 MARCO_36_955877321-3 96 88.409039 hybrid +134_3-5 Q0 MARCO_40_1191133240-4 97 88.403882 hybrid +134_3-5 Q0 MARCO_37_229907442-1 98 88.403801 hybrid +134_3-5 Q0 MARCO_13_342603457-3 99 88.401902 hybrid +134_3-5 Q0 MARCO_47_1023773487-1 100 88.401202 hybrid +134_4-2 Q0 MARCO_50_526620685-3 1 88.781223 hybrid +134_4-2 Q0 MARCO_37_1257839615-21 2 88.338634 hybrid +134_4-2 Q0 MARCO_12_146558722-138 3 88.104900 hybrid +134_4-2 Q0 MARCO_27_1772437210-2 4 87.946028 hybrid +134_4-2 Q0 MARCO_50_1619751682-31 5 87.917011 hybrid +134_4-2 Q0 MARCO_37_1250554887-3 6 87.908924 hybrid +134_4-2 Q0 MARCO_37_1255807333-2 7 87.863232 hybrid +134_4-2 Q0 MARCO_35_423556126-15 8 87.860889 hybrid +134_4-2 Q0 MARCO_35_423466944-12 9 87.860889 hybrid +134_4-2 Q0 MARCO_34_1590894249-3 10 87.833228 hybrid +134_4-2 Q0 MARCO_37_1259157473-3 11 87.778804 hybrid +134_4-2 Q0 MARCO_59_890373394-2 12 87.766559 hybrid +134_4-2 Q0 MARCO_55_274882838-10 13 87.756728 hybrid +134_4-2 Q0 MARCO_55_274925457-11 14 87.756728 hybrid +134_4-2 Q0 MARCO_23_1728855958-8 15 87.756592 hybrid +134_4-2 Q0 MARCO_50_495632349-10 16 87.753818 hybrid +134_4-2 Q0 MARCO_50_1400482672-16 17 87.751928 hybrid +134_4-2 Q0 MARCO_53_650915793-10 18 87.749878 hybrid +134_4-2 Q0 MARCO_35_984735588-3 19 87.745063 hybrid +134_4-2 Q0 MARCO_50_518336839-7 20 87.740322 hybrid +134_4-2 Q0 MARCO_39_1370292640-9 21 87.726001 hybrid +134_4-2 Q0 MARCO_14_481847784-7 22 87.720539 hybrid +134_4-2 Q0 MARCO_50_2532213439-11 23 87.710928 hybrid +134_4-2 Q0 MARCO_53_360364865-6 24 87.684452 hybrid +134_4-2 Q0 MARCO_13_848901775-2 25 87.683328 hybrid +134_4-2 Q0 MARCO_37_1667887012-20 26 87.672378 hybrid +134_4-2 Q0 MARCO_37_1257347277-2 27 87.669033 hybrid +134_4-2 Q0 MARCO_11_116535980-46 28 87.658628 hybrid +134_4-2 Q0 MARCO_35_423875818-18 29 87.655895 hybrid +134_4-2 Q0 MARCO_36_566978935-4 30 87.652034 hybrid +134_4-2 Q0 MARCO_13_329915358-10 31 87.645534 hybrid +134_4-2 Q0 MARCO_04_1212117439-3 32 87.643314 hybrid +134_4-2 Q0 MARCO_13_229403072-1 33 87.642128 hybrid +134_4-2 Q0 MARCO_43_1625245214-4 34 87.630328 hybrid +134_4-2 Q0 MARCO_33_538241031-16 35 87.617878 hybrid +134_4-2 Q0 MARCO_45_977129581-6 36 87.590122 hybrid +134_4-2 Q0 MARCO_51_740155734-2 37 87.582866 hybrid +134_4-2 Q0 MARCO_42_258255574-1 38 87.574128 hybrid +134_4-2 Q0 MARCO_37_1249816047-10 39 87.573772 hybrid +134_4-2 Q0 MARCO_13_330127940-3 40 87.562793 hybrid +134_4-2 Q0 MARCO_48_822925434-3 41 87.561328 hybrid +134_4-2 Q0 MARCO_13_1351649531-4 42 87.534878 hybrid +134_4-2 Q0 MARCO_03_944003118-2 43 87.530193 hybrid +134_4-2 Q0 MARCO_06_1364440334-2 44 87.526578 hybrid +134_4-2 Q0 MARCO_09_1023389557-2 45 87.524978 hybrid +134_4-2 Q0 MARCO_12_1229287267-18 46 87.520778 hybrid +134_4-2 Q0 MARCO_20_1107663447-1 47 87.511058 hybrid +134_4-2 Q0 MARCO_27_115618266-4 48 87.504478 hybrid +134_4-2 Q0 MARCO_54_42936764-2 49 87.502528 hybrid +134_4-2 Q0 MARCO_41_995365685-10 50 87.501928 hybrid +134_4-2 Q0 MARCO_37_1257556464-10 51 87.494701 hybrid +134_4-2 Q0 MARCO_05_880477775-21 52 87.493628 hybrid +134_4-2 Q0 MARCO_29_998566824-2 53 87.493428 hybrid +134_4-2 Q0 MARCO_55_274946337-15 54 87.485878 hybrid +134_4-2 Q0 MARCO_37_1252493819-16 55 87.475757 hybrid +134_4-2 Q0 MARCO_59_883652403-3 56 87.471797 hybrid +134_4-2 Q0 MARCO_58_1048601450-2 57 87.471628 hybrid +134_4-2 Q0 MARCO_51_967618316-7 58 87.467278 hybrid +134_4-2 Q0 MARCO_19_2339421928-3 59 87.464278 hybrid +134_4-2 Q0 MARCO_55_274902286-14 60 87.457278 hybrid +134_4-2 Q0 MARCO_55_275003922-18 61 87.457278 hybrid +134_4-2 Q0 MARCO_23_475487155-4 62 87.455628 hybrid +134_4-2 Q0 MARCO_50_1619751682-37 63 87.448848 hybrid +134_4-2 Q0 MARCO_31_881347238-4 64 87.447178 hybrid +134_4-2 Q0 MARCO_42_257859314-7 65 87.446378 hybrid +134_4-2 Q0 MARCO_08_234567919-3 66 87.445423 hybrid +134_4-2 Q0 MARCO_57_814283816-2 67 87.445328 hybrid +134_4-2 Q0 MARCO_11_87157629-1 68 87.437528 hybrid +134_4-2 Q0 MARCO_26_1017241857-2 69 87.435328 hybrid +134_4-2 Q0 MARCO_13_329674649-22 70 87.432277 hybrid +134_4-2 Q0 MARCO_39_1357295596-6 71 87.421328 hybrid +134_4-2 Q0 MARCO_42_1102232941-13 72 87.419231 hybrid +134_4-2 Q0 MARCO_43_365838716-2 73 87.418728 hybrid +134_4-2 Q0 MARCO_55_696573678-3 74 87.413778 hybrid +134_4-2 Q0 MARCO_41_2073818106-6 75 87.413074 hybrid +134_4-2 Q0 MARCO_51_99430019-10 76 87.412078 hybrid +134_4-2 Q0 MARCO_34_988464228-17 77 87.411778 hybrid +134_4-2 Q0 MARCO_37_1248147116-6 78 87.410099 hybrid +134_4-2 Q0 MARCO_29_667716571-2 79 87.403378 hybrid +134_4-2 Q0 MARCO_42_1102370790-12 80 87.400264 hybrid +134_4-2 Q0 MARCO_37_1251985644-10 81 87.399631 hybrid +134_4-2 Q0 MARCO_41_1324182700-50 82 87.398678 hybrid +134_4-2 Q0 MARCO_48_1547511133-8 83 87.394578 hybrid +134_4-2 Q0 MARCO_37_1256573234-9 84 87.393352 hybrid +134_4-2 Q0 MARCO_33_1316748866-5 85 87.391132 hybrid +134_4-2 Q0 MARCO_53_781749984-5 86 87.389827 hybrid +134_4-2 Q0 MARCO_13_975882391-8 87 87.389128 hybrid +134_4-2 Q0 MARCO_41_1818984171-4 88 87.375957 hybrid +134_4-2 Q0 MARCO_37_1251355289-7 89 87.373378 hybrid +134_4-2 Q0 MARCO_37_1255807333-3 90 87.368610 hybrid +134_4-2 Q0 MARCO_37_1255424093-2 91 87.364826 hybrid +134_4-2 Q0 MARCO_23_475487155-3 92 87.364478 hybrid +134_4-2 Q0 MARCO_50_1673934407-53 93 87.362484 hybrid +134_4-2 Q0 MARCO_41_920444684-4 94 87.360164 hybrid +134_4-2 Q0 MARCO_41_1519415396-25 95 87.359928 hybrid +134_4-2 Q0 MARCO_37_1252031931-8 96 87.359165 hybrid +134_4-2 Q0 MARCO_37_1256074640-15 97 87.357502 hybrid +134_4-2 Q0 MARCO_37_1256703840-2 98 87.357257 hybrid +134_4-2 Q0 MARCO_50_846379263-10 99 87.355578 hybrid +134_4-2 Q0 MARCO_37_1251779093-9 100 87.355457 hybrid +134_4-4 Q0 MARCO_41_1845354456-6 1 88.458166 hybrid +134_4-4 Q0 MARCO_22_1648495958-1 2 88.321508 hybrid +134_4-4 Q0 MARCO_22_1648495958-21 3 88.304616 hybrid +134_4-4 Q0 MARCO_43_305944578-2 4 88.296311 hybrid +134_4-4 Q0 MARCO_43_306056917-1 5 88.257061 hybrid +134_4-4 Q0 MARCO_24_2762318-2 6 88.224065 hybrid +134_4-4 Q0 MARCO_50_1341313370-48 7 88.205661 hybrid +134_4-4 Q0 MARCO_04_394310400-3 8 88.192261 hybrid +134_4-4 Q0 MARCO_45_1021789810-8 9 88.176672 hybrid +134_4-4 Q0 MARCO_52_821634475-2 10 88.122611 hybrid +134_4-4 Q0 MARCO_50_1419718645-58 11 88.105878 hybrid +134_4-4 Q0 MARCO_08_1257083081-3 12 88.071461 hybrid +134_4-4 Q0 MARCO_50_1213175807-15 13 88.045661 hybrid +134_4-4 Q0 MARCO_29_480761651-2 14 88.039211 hybrid +134_4-4 Q0 MARCO_29_480756274-2 15 88.025111 hybrid +134_4-4 Q0 MARCO_00_1611211087-8 16 88.010671 hybrid +134_4-4 Q0 MARCO_09_613681301-20 17 87.974611 hybrid +134_4-4 Q0 MARCO_33_1464368404-2 18 87.966011 hybrid +134_4-4 Q0 MARCO_44_622079827-2 19 87.955083 hybrid +134_4-4 Q0 MARCO_50_2156613647-33 20 87.950861 hybrid +134_4-4 Q0 MARCO_43_305958405-2 21 87.950011 hybrid +134_4-4 Q0 MARCO_51_1253211780-10 22 87.949911 hybrid +134_4-4 Q0 MARCO_36_897767456-3 23 87.922910 hybrid +134_4-4 Q0 MARCO_53_1288967934-2 24 87.919661 hybrid +134_4-4 Q0 MARCO_07_586034686-14 25 87.908611 hybrid +134_4-4 Q0 MARCO_52_478587868-19 26 87.902461 hybrid +134_4-4 Q0 MARCO_55_681195067-7 27 87.890546 hybrid +134_4-4 Q0 MARCO_32_1552492365-8 28 87.882561 hybrid +134_4-4 Q0 MARCO_21_407171165-1 29 87.876180 hybrid +134_4-4 Q0 MARCO_45_271658878-44 30 87.873511 hybrid +134_4-4 Q0 MARCO_29_1504114733-3 31 87.871261 hybrid +134_4-4 Q0 MARCO_53_1417132226-1 32 87.865161 hybrid +134_4-4 Q0 MARCO_08_30326820-3 33 87.860061 hybrid +134_4-4 Q0 MARCO_10_176038038-2 34 87.858761 hybrid +134_4-4 Q0 MARCO_20_694886831-2 35 87.855512 hybrid +134_4-4 Q0 MARCO_04_387577324-16 36 87.852811 hybrid +134_4-4 Q0 MARCO_50_1458441868-16 37 87.852537 hybrid +134_4-4 Q0 MARCO_55_681360829-4 38 87.852314 hybrid +134_4-4 Q0 MARCO_58_1006746288-8 39 87.851072 hybrid +134_4-4 Q0 MARCO_01_942982864-6 40 87.849256 hybrid +134_4-4 Q0 MARCO_02_810627052-9 41 87.843411 hybrid +134_4-4 Q0 MARCO_00_1705183080-5 42 87.828861 hybrid +134_4-4 Q0 MARCO_00_1228393982-5 43 87.828461 hybrid +134_4-4 Q0 MARCO_45_1025014902-8 44 87.826124 hybrid +134_4-4 Q0 MARCO_02_1579575800-9 45 87.824911 hybrid +134_4-4 Q0 MARCO_58_1007196985-8 46 87.824758 hybrid +134_4-4 Q0 MARCO_04_377917065-17 47 87.819711 hybrid +134_4-4 Q0 MARCO_11_1456541715-2 48 87.813311 hybrid +134_4-4 Q0 MARCO_21_407171165-3 49 87.810453 hybrid +134_4-4 Q0 MARCO_41_327808466-5 50 87.803373 hybrid +134_4-4 Q0 MARCO_40_172045261-1 51 87.801687 hybrid +134_4-4 Q0 MARCO_09_613681301-57 52 87.798911 hybrid +134_4-4 Q0 MARCO_56_746059831-1 53 87.797011 hybrid +134_4-4 Q0 MARCO_30_742545702-1 54 87.795331 hybrid +134_4-4 Q0 MARCO_50_694256853-4 55 87.792982 hybrid +134_4-4 Q0 MARCO_11_115839899-51 56 87.787411 hybrid +134_4-4 Q0 MARCO_22_1648495958-20 57 87.784772 hybrid +134_4-4 Q0 MARCO_32_937425486-10 58 87.779361 hybrid +134_4-4 Q0 MARCO_50_2151006936-15 59 87.778761 hybrid +134_4-4 Q0 MARCO_10_25084592-39 60 87.777161 hybrid +134_4-4 Q0 MARCO_55_385516765-8 61 87.772811 hybrid +134_4-4 Q0 MARCO_58_1008143388-7 62 87.769666 hybrid +134_4-4 Q0 MARCO_41_331055548-10 63 87.764059 hybrid +134_4-4 Q0 MARCO_22_1648646376-13 64 87.762815 hybrid +134_4-4 Q0 MARCO_20_1691624100-10 65 87.760839 hybrid +134_4-4 Q0 MARCO_10_7478787-9 66 87.759679 hybrid +134_4-4 Q0 MARCO_06_693854726-3 67 87.753276 hybrid +134_4-4 Q0 MARCO_52_821608683-5 68 87.752073 hybrid +134_4-4 Q0 MARCO_50_1725621751-18 69 87.741811 hybrid +134_4-4 Q0 MARCO_36_1702672319-83 70 87.741061 hybrid +134_4-4 Q0 MARCO_22_1648730785-10 71 87.740957 hybrid +134_4-4 Q0 MARCO_29_441740155-2 72 87.736811 hybrid +134_4-4 Q0 MARCO_13_980831104-15 73 87.735990 hybrid +134_4-4 Q0 MARCO_41_853952670-2 74 87.726711 hybrid +134_4-4 Q0 MARCO_10_7449675-15 75 87.724058 hybrid +134_4-4 Q0 MARCO_09_613417163-8 76 87.722811 hybrid +134_4-4 Q0 MARCO_22_166006390-16 77 87.710638 hybrid +134_4-4 Q0 MARCO_29_1503807318-5 78 87.708811 hybrid +134_4-4 Q0 MARCO_05_1513209861-4 79 87.707952 hybrid +134_4-4 Q0 MARCO_32_1516582370-11 80 87.705923 hybrid +134_4-4 Q0 MARCO_43_305996735-2 81 87.704261 hybrid +134_4-4 Q0 MARCO_33_1464386016-6 82 87.703461 hybrid +134_4-4 Q0 MARCO_20_689910917-31 83 87.701070 hybrid +134_4-4 Q0 MARCO_55_681131262-6 84 87.698480 hybrid +134_4-4 Q0 MARCO_36_1716214261-15 85 87.698411 hybrid +134_4-4 Q0 MARCO_33_363583173-32 86 87.697711 hybrid +134_4-4 Q0 MARCO_58_1008493948-2 87 87.694456 hybrid +134_4-4 Q0 MARCO_20_1189276245-5 88 87.694011 hybrid +134_4-4 Q0 MARCO_45_141802555-1 89 87.693611 hybrid +134_4-4 Q0 MARCO_14_482024749-9 90 87.692953 hybrid +134_4-4 Q0 MARCO_43_306012022-2 91 87.690561 hybrid +134_4-4 Q0 MARCO_53_78896701-64 92 87.689199 hybrid +134_4-4 Q0 MARCO_03_1524232548-5 93 87.681861 hybrid +134_4-4 Q0 MARCO_33_61997149-2 94 87.681511 hybrid +134_4-4 Q0 MARCO_50_999258765-21 95 87.680961 hybrid +134_4-4 Q0 MARCO_21_404029997-21 96 87.680013 hybrid +134_4-4 Q0 MARCO_53_79802066-3 97 87.676427 hybrid +134_4-4 Q0 MARCO_58_1007754642-7 98 87.673788 hybrid +134_4-4 Q0 MARCO_47_1132263835-6 99 87.673361 hybrid +134_4-4 Q0 MARCO_21_404029997-2 100 87.673170 hybrid +135_1-1 Q0 MARCO_36_1379121647-13 1 92.635605 hybrid +135_1-1 Q0 MARCO_08_18599332-13 2 91.557855 hybrid +135_1-1 Q0 MARCO_44_842242336-1 3 91.469196 hybrid +135_1-1 Q0 MARCO_45_977807331-13 4 91.384048 hybrid +135_1-1 Q0 MARCO_32_375198952-1 5 91.327621 hybrid +135_1-1 Q0 MARCO_51_959830917-2 6 91.265113 hybrid +135_1-1 Q0 MARCO_39_1389641760-108 7 91.258254 hybrid +135_1-1 Q0 MARCO_50_2432111535-20 8 91.217005 hybrid +135_1-1 Q0 MARCO_04_379895487-14 9 91.187554 hybrid +135_1-1 Q0 MARCO_50_1220983703-16 10 91.161304 hybrid +135_1-1 Q0 MARCO_23_488318419-6 11 91.153174 hybrid +135_1-1 Q0 MARCO_45_980875532-6 12 91.146584 hybrid +135_1-1 Q0 MARCO_45_980886909-9 13 91.121655 hybrid +135_1-1 Q0 MARCO_50_1174238590-21 14 91.081717 hybrid +135_1-1 Q0 MARCO_05_898260757-29 15 91.070254 hybrid +135_1-1 Q0 MARCO_58_546166066-17 16 91.047705 hybrid +135_1-1 Q0 MARCO_04_389844596-14 17 91.009854 hybrid +135_1-1 Q0 MARCO_04_389844596-4 18 90.971205 hybrid +135_1-1 Q0 MARCO_36_1379121647-15 19 90.951755 hybrid +135_1-1 Q0 MARCO_10_1368555242-40 20 90.934805 hybrid +135_1-1 Q0 MARCO_58_39630207-19 21 90.897505 hybrid +135_1-1 Q0 MARCO_38_876049311-7 22 90.889404 hybrid +135_1-1 Q0 MARCO_37_1253773399-4 23 90.888633 hybrid +135_1-1 Q0 MARCO_56_1517576535-6 24 90.883216 hybrid +135_1-1 Q0 MARCO_08_434057454-1 25 90.864704 hybrid +135_1-1 Q0 MARCO_31_1748062419-5 26 90.831704 hybrid +135_1-1 Q0 MARCO_45_979733751-14 27 90.778945 hybrid +135_1-1 Q0 MARCO_07_1114502647-44 28 90.741705 hybrid +135_1-1 Q0 MARCO_05_1087960058-291 29 90.721404 hybrid +135_1-1 Q0 MARCO_50_1954938037-8 30 90.694505 hybrid +135_1-1 Q0 MARCO_09_1719420909-17 31 90.673904 hybrid +135_1-1 Q0 MARCO_50_897874724-3 32 90.659204 hybrid +135_1-1 Q0 MARCO_06_725982234-9 33 90.639504 hybrid +135_1-1 Q0 MARCO_25_1050491541-2 34 90.605454 hybrid +135_1-1 Q0 MARCO_49_1579691474-1 35 90.604304 hybrid +135_1-1 Q0 MARCO_51_91572935-6 36 90.586655 hybrid +135_1-1 Q0 MARCO_50_1180441098-9 37 90.575304 hybrid +135_1-1 Q0 MARCO_51_958889897-7 38 90.546638 hybrid +135_1-1 Q0 MARCO_51_957925605-7 39 90.544509 hybrid +135_1-1 Q0 MARCO_23_488318419-5 40 90.535789 hybrid +135_1-1 Q0 MARCO_32_375198952-2 41 90.532523 hybrid +135_1-1 Q0 MARCO_05_1512859755-3 42 90.530883 hybrid +135_1-1 Q0 MARCO_08_1662932765-120 43 90.528154 hybrid +135_1-1 Q0 MARCO_51_958551973-3 44 90.503020 hybrid +135_1-1 Q0 MARCO_23_815149850-14 45 90.485755 hybrid +135_1-1 Q0 MARCO_32_373800772-3 46 90.483123 hybrid +135_1-1 Q0 MARCO_51_101047023-2 47 90.477104 hybrid +135_1-1 Q0 MARCO_29_777029977-4 48 90.464455 hybrid +135_1-1 Q0 MARCO_25_1592704512-11 49 90.457555 hybrid +135_1-1 Q0 MARCO_59_940285588-6 50 90.455283 hybrid +135_1-1 Q0 MARCO_07_934801547-6 51 90.449254 hybrid +135_1-1 Q0 MARCO_07_934827493-4 52 90.449253 hybrid +135_1-1 Q0 MARCO_39_1389641760-27 53 90.442454 hybrid +135_1-1 Q0 MARCO_04_380168166-11 54 90.439654 hybrid +135_1-1 Q0 MARCO_28_125493215-42 55 90.429105 hybrid +135_1-1 Q0 MARCO_19_1705387193-108 56 90.424655 hybrid +135_1-1 Q0 MARCO_46_1272863577-3 57 90.420203 hybrid +135_1-1 Q0 MARCO_10_1202153939-25 58 90.405646 hybrid +135_1-1 Q0 MARCO_20_320828470-2 59 90.404755 hybrid +135_1-1 Q0 MARCO_28_1759440580-4 60 90.403701 hybrid +135_1-1 Q0 MARCO_58_1062320564-12 61 90.392605 hybrid +135_1-1 Q0 MARCO_05_820673124-2 62 90.379555 hybrid +135_1-1 Q0 MARCO_51_959858915-4 63 90.378905 hybrid +135_1-1 Q0 MARCO_44_329994642-10 64 90.369804 hybrid +135_1-1 Q0 MARCO_02_1831441321-1 65 90.368805 hybrid +135_1-1 Q0 MARCO_58_838606825-4 66 90.368304 hybrid +135_1-1 Q0 MARCO_20_1009669727-36 67 90.365805 hybrid +135_1-1 Q0 MARCO_10_254203929-30 68 90.361105 hybrid +135_1-1 Q0 MARCO_06_1752610726-1 69 90.357755 hybrid +135_1-1 Q0 MARCO_20_1716989706-56 70 90.350454 hybrid +135_1-1 Q0 MARCO_36_1366786807-5 71 90.338607 hybrid +135_1-1 Q0 MARCO_54_1858328826-5 72 90.337005 hybrid +135_1-1 Q0 MARCO_32_1248260011-8 73 90.325504 hybrid +135_1-1 Q0 MARCO_49_261188947-7 74 90.324405 hybrid +135_1-1 Q0 MARCO_24_1614602955-2 75 90.323897 hybrid +135_1-1 Q0 MARCO_51_959656094-2 76 90.318885 hybrid +135_1-1 Q0 MARCO_13_479383506-2 77 90.309105 hybrid +135_1-1 Q0 MARCO_38_147080083-20 78 90.307904 hybrid +135_1-1 Q0 MARCO_51_959737658-6 79 90.305907 hybrid +135_1-1 Q0 MARCO_07_1048041834-8 80 90.304152 hybrid +135_1-1 Q0 MARCO_32_375214915-4 81 90.293441 hybrid +135_1-1 Q0 MARCO_56_1517576535-5 82 90.291434 hybrid +135_1-1 Q0 MARCO_45_980563328-1 83 90.290580 hybrid +135_1-1 Q0 MARCO_51_959962110-3 84 90.288421 hybrid +135_1-1 Q0 MARCO_38_866907350-18 85 90.276654 hybrid +135_1-1 Q0 MARCO_04_380954370-26 86 90.275905 hybrid +135_1-1 Q0 MARCO_03_1642720939-3 87 90.273604 hybrid +135_1-1 Q0 MARCO_45_154996499-7 88 90.251004 hybrid +135_1-1 Q0 MARCO_53_171116042-4 89 90.246704 hybrid +135_1-1 Q0 MARCO_31_1564623688-3 90 90.243354 hybrid +135_1-1 Q0 MARCO_04_389844596-22 91 90.236904 hybrid +135_1-1 Q0 MARCO_03_1219890737-3 92 90.235915 hybrid +135_1-1 Q0 MARCO_10_1201883746-38 93 90.229964 hybrid +135_1-1 Q0 MARCO_39_412430229-5 94 90.223804 hybrid +135_1-1 Q0 MARCO_04_380913138-30 95 90.221455 hybrid +135_1-1 Q0 MARCO_28_1759529807-9 96 90.220656 hybrid +135_1-1 Q0 MARCO_48_376787404-6 97 90.216285 hybrid +135_1-1 Q0 MARCO_05_1512859755-2 98 90.211074 hybrid +135_1-1 Q0 MARCO_06_999034251-23 99 90.210754 hybrid +135_1-1 Q0 MARCO_28_722936869-8 100 90.210255 hybrid +135_1-3 Q0 MARCO_51_957992620-3 1 89.674605 hybrid +135_1-3 Q0 MARCO_59_435012914-1 2 88.952085 hybrid +135_1-3 Q0 MARCO_22_1579930911-9 3 88.830632 hybrid +135_1-3 Q0 MARCO_50_1516160368-17 4 88.811192 hybrid +135_1-3 Q0 MARCO_03_1539443481-9 5 88.766426 hybrid +135_1-3 Q0 MARCO_20_19860105-1 6 88.760425 hybrid +135_1-3 Q0 MARCO_25_1422733827-5 7 88.704053 hybrid +135_1-3 Q0 MARCO_40_741967650-6 8 88.700521 hybrid +135_1-3 Q0 MARCO_54_557164081-5 9 88.622204 hybrid +135_1-3 Q0 MARCO_54_557173206-16 10 88.622203 hybrid +135_1-3 Q0 MARCO_54_557197480-6 11 88.622203 hybrid +135_1-3 Q0 MARCO_51_959921488-6 12 88.612905 hybrid +135_1-3 Q0 MARCO_32_375091295-1 13 88.596863 hybrid +135_1-3 Q0 MARCO_47_314305068-3 14 88.586676 hybrid +135_1-3 Q0 MARCO_43_747441218-5 15 88.584526 hybrid +135_1-3 Q0 MARCO_22_1486281067-6 16 88.568646 hybrid +135_1-3 Q0 MARCO_28_1759580014-2 17 88.544888 hybrid +135_1-3 Q0 MARCO_20_20299207-6 18 88.507962 hybrid +135_1-3 Q0 MARCO_48_376091625-9 19 88.488690 hybrid +135_1-3 Q0 MARCO_33_723703063-2 20 88.480420 hybrid +135_1-3 Q0 MARCO_25_521695352-20 21 88.470128 hybrid +135_1-3 Q0 MARCO_25_1429975288-3 22 88.462834 hybrid +135_1-3 Q0 MARCO_54_1568618810-4 23 88.459012 hybrid +135_1-3 Q0 MARCO_48_1560403802-2 24 88.447545 hybrid +135_1-3 Q0 MARCO_26_727891250-11 25 88.434705 hybrid +135_1-3 Q0 MARCO_46_1272442255-4 26 88.428311 hybrid +135_1-3 Q0 MARCO_08_164041265-5 27 88.419438 hybrid +135_1-3 Q0 MARCO_45_1574835971-27 28 88.391988 hybrid +135_1-3 Q0 MARCO_51_957903931-7 29 88.389691 hybrid +135_1-3 Q0 MARCO_50_2503836713-29 30 88.381076 hybrid +135_1-3 Q0 MARCO_47_1261720351-8 31 88.366126 hybrid +135_1-3 Q0 MARCO_51_958834692-10 32 88.357671 hybrid +135_1-3 Q0 MARCO_28_1759557920-1 33 88.349794 hybrid +135_1-3 Q0 MARCO_50_1512751210-30 34 88.349668 hybrid +135_1-3 Q0 MARCO_51_966154746-2 35 88.325276 hybrid +135_1-3 Q0 MARCO_46_1271459492-4 36 88.320241 hybrid +135_1-3 Q0 MARCO_51_959962110-3 37 88.317800 hybrid +135_1-3 Q0 MARCO_21_870036782-2 38 88.317746 hybrid +135_1-3 Q0 MARCO_51_959858915-4 39 88.309895 hybrid +135_1-3 Q0 MARCO_32_375184463-5 40 88.305318 hybrid +135_1-3 Q0 MARCO_08_1268970816-7 41 88.304926 hybrid +135_1-3 Q0 MARCO_51_955007724-10 42 88.302320 hybrid +135_1-3 Q0 MARCO_51_959265231-9 43 88.302304 hybrid +135_1-3 Q0 MARCO_40_1126947822-4 44 88.302114 hybrid +135_1-3 Q0 MARCO_07_1012854612-7 45 88.300763 hybrid +135_1-3 Q0 MARCO_51_958818114-10 46 88.291738 hybrid +135_1-3 Q0 MARCO_21_870356030-3 47 88.279233 hybrid +135_1-3 Q0 MARCO_57_110680525-8 48 88.248654 hybrid +135_1-3 Q0 MARCO_21_870356030-1 49 88.247952 hybrid +135_1-3 Q0 MARCO_55_1347262418-3 50 88.247380 hybrid +135_1-3 Q0 MARCO_21_870036782-1 51 88.230405 hybrid +135_1-3 Q0 MARCO_51_958485566-8 52 88.221395 hybrid +135_1-3 Q0 MARCO_50_2380427332-19 53 88.221076 hybrid +135_1-3 Q0 MARCO_32_462141573-3 54 88.217427 hybrid +135_1-3 Q0 MARCO_49_1770625673-6 55 88.198426 hybrid +135_1-3 Q0 MARCO_07_1001553105-3 56 88.195333 hybrid +135_1-3 Q0 MARCO_32_1112556757-6 57 88.188676 hybrid +135_1-3 Q0 MARCO_46_257655158-3 58 88.182477 hybrid +135_1-3 Q0 MARCO_33_723703063-7 59 88.181691 hybrid +135_1-3 Q0 MARCO_24_432072998-6 60 88.178426 hybrid +135_1-3 Q0 MARCO_45_228378643-4 61 88.177476 hybrid +135_1-3 Q0 MARCO_11_1259120332-3 62 88.175876 hybrid +135_1-3 Q0 MARCO_53_907985-14 63 88.174092 hybrid +135_1-3 Q0 MARCO_13_141057854-2 64 88.171422 hybrid +135_1-3 Q0 MARCO_07_807475415-9 65 88.167926 hybrid +135_1-3 Q0 MARCO_52_363657812-2 66 88.163593 hybrid +135_1-3 Q0 MARCO_51_959190325-3 67 88.162984 hybrid +135_1-3 Q0 MARCO_24_1543882016-24 68 88.156726 hybrid +135_1-3 Q0 MARCO_06_1779191195-2 69 88.146076 hybrid +135_1-3 Q0 MARCO_06_1779191195-8 70 88.146076 hybrid +135_1-3 Q0 MARCO_28_1761232054-5 71 88.144452 hybrid +135_1-3 Q0 MARCO_56_1511815456-4 72 88.143727 hybrid +135_1-3 Q0 MARCO_51_959962110-2 73 88.143308 hybrid +135_1-3 Q0 MARCO_54_1706664393-14 74 88.141326 hybrid +135_1-3 Q0 MARCO_14_1627094206-1 75 88.135576 hybrid +135_1-3 Q0 MARCO_51_958834692-12 76 88.130803 hybrid +135_1-3 Q0 MARCO_59_45432129-9 77 88.127176 hybrid +135_1-3 Q0 MARCO_29_1625348283-8 78 88.126676 hybrid +135_1-3 Q0 MARCO_01_1605300916-3 79 88.122376 hybrid +135_1-3 Q0 MARCO_21_148996890-13 80 88.121068 hybrid +135_1-3 Q0 MARCO_32_375176627-1 81 88.120465 hybrid +135_1-3 Q0 MARCO_12_1452151583-12 82 88.119557 hybrid +135_1-3 Q0 MARCO_32_1101206980-4 83 88.114626 hybrid +135_1-3 Q0 MARCO_50_910674203-18 84 88.105426 hybrid +135_1-3 Q0 MARCO_23_901609732-11 85 88.104626 hybrid +135_1-3 Q0 MARCO_46_553907717-3 86 88.099912 hybrid +135_1-3 Q0 MARCO_46_1270917506-4 87 88.095853 hybrid +135_1-3 Q0 MARCO_28_1759651308-3 88 88.095403 hybrid +135_1-3 Q0 MARCO_52_1291510907-5 89 88.091376 hybrid +135_1-3 Q0 MARCO_10_698928506-2 90 88.085767 hybrid +135_1-3 Q0 MARCO_48_375697229-24 91 88.081784 hybrid +135_1-3 Q0 MARCO_40_762567563-18 92 88.081226 hybrid +135_1-3 Q0 MARCO_48_377468525-7 93 88.080312 hybrid +135_1-3 Q0 MARCO_04_343836785-2 94 88.077426 hybrid +135_1-3 Q0 MARCO_28_1759613190-2 95 88.071561 hybrid +135_1-3 Q0 MARCO_51_958528195-5 96 88.069997 hybrid +135_1-3 Q0 MARCO_28_1759540903-8 97 88.065686 hybrid +135_1-3 Q0 MARCO_51_958367033-1 98 88.061154 hybrid +135_1-3 Q0 MARCO_11_1258772877-2 99 88.057976 hybrid +135_1-3 Q0 MARCO_01_799431978-41 100 88.053670 hybrid +135_1-5 Q0 MARCO_28_1759557920-4 1 91.709739 hybrid +135_1-5 Q0 MARCO_51_958834692-1 2 91.369319 hybrid +135_1-5 Q0 MARCO_46_1272244650-2 3 91.291349 hybrid +135_1-5 Q0 MARCO_28_1759557920-1 4 91.278959 hybrid +135_1-5 Q0 MARCO_52_1291510907-5 5 90.911401 hybrid +135_1-5 Q0 MARCO_51_957903931-7 6 90.884172 hybrid +135_1-5 Q0 MARCO_52_363669660-2 7 90.813653 hybrid +135_1-5 Q0 MARCO_07_1012854612-8 8 90.788233 hybrid +135_1-5 Q0 MARCO_32_375091295-1 9 90.781209 hybrid +135_1-5 Q0 MARCO_51_958003580-7 10 90.693677 hybrid +135_1-5 Q0 MARCO_12_483641821-3 11 90.668701 hybrid +135_1-5 Q0 MARCO_07_1048041834-12 12 90.643803 hybrid +135_1-5 Q0 MARCO_20_239116832-28 13 90.630001 hybrid +135_1-5 Q0 MARCO_52_363657812-3 14 90.598019 hybrid +135_1-5 Q0 MARCO_29_1135035884-4 15 90.588251 hybrid +135_1-5 Q0 MARCO_55_1347240246-1 16 90.561735 hybrid +135_1-5 Q0 MARCO_51_958834692-12 17 90.539433 hybrid +135_1-5 Q0 MARCO_28_1759557920-7 18 90.538776 hybrid +135_1-5 Q0 MARCO_45_652286711-4 19 90.525243 hybrid +135_1-5 Q0 MARCO_51_958627721-1 20 90.516569 hybrid +135_1-5 Q0 MARCO_52_363657812-2 21 90.481824 hybrid +135_1-5 Q0 MARCO_07_1048041834-13 22 90.474660 hybrid +135_1-5 Q0 MARCO_32_462141573-2 23 90.451120 hybrid +135_1-5 Q0 MARCO_51_959190325-3 24 90.435643 hybrid +135_1-5 Q0 MARCO_28_1759557920-3 25 90.414415 hybrid +135_1-5 Q0 MARCO_28_1761122709-10 26 90.400486 hybrid +135_1-5 Q0 MARCO_21_876716175-1 27 90.396501 hybrid +135_1-5 Q0 MARCO_51_958485566-8 28 90.387433 hybrid +135_1-5 Q0 MARCO_28_1759557920-2 29 90.385377 hybrid +135_1-5 Q0 MARCO_40_741967650-6 30 90.383604 hybrid +135_1-5 Q0 MARCO_24_655925721-2 31 90.378051 hybrid +135_1-5 Q0 MARCO_20_91291233-5 32 90.377151 hybrid +135_1-5 Q0 MARCO_51_958973959-5 33 90.361250 hybrid +135_1-5 Q0 MARCO_28_1759660200-1 34 90.360410 hybrid +135_1-5 Q0 MARCO_21_885530106-2 35 90.354501 hybrid +135_1-5 Q0 MARCO_51_958834692-20 36 90.342191 hybrid +135_1-5 Q0 MARCO_32_462141573-1 37 90.336726 hybrid +135_1-5 Q0 MARCO_51_695338546-7 38 90.331217 hybrid +135_1-5 Q0 MARCO_44_224874707-8 39 90.319751 hybrid +135_1-5 Q0 MARCO_21_879831243-2 40 90.301200 hybrid +135_1-5 Q0 MARCO_51_958834692-4 41 90.298978 hybrid +135_1-5 Q0 MARCO_51_958834692-10 42 90.286244 hybrid +135_1-5 Q0 MARCO_25_1429975288-3 43 90.284833 hybrid +135_1-5 Q0 MARCO_28_1759683608-1 44 90.275533 hybrid +135_1-5 Q0 MARCO_52_541427554-3 45 90.274851 hybrid +135_1-5 Q0 MARCO_51_958834692-2 46 90.273564 hybrid +135_1-5 Q0 MARCO_51_957992620-3 47 90.266408 hybrid +135_1-5 Q0 MARCO_45_981669373-1 48 90.243645 hybrid +135_1-5 Q0 MARCO_29_620814686-3 49 90.241841 hybrid +135_1-5 Q0 MARCO_42_416975659-1 50 90.236801 hybrid +135_1-5 Q0 MARCO_51_959921488-6 51 90.232266 hybrid +135_1-5 Q0 MARCO_13_141057854-2 52 90.227216 hybrid +135_1-5 Q0 MARCO_28_1759580014-2 53 90.227193 hybrid +135_1-5 Q0 MARCO_51_959962110-3 54 90.224378 hybrid +135_1-5 Q0 MARCO_32_375085135-1 55 90.222273 hybrid +135_1-5 Q0 MARCO_45_120013408-8 56 90.220100 hybrid +135_1-5 Q0 MARCO_51_959858915-4 57 90.219014 hybrid +135_1-5 Q0 MARCO_21_570369913-7 58 90.215250 hybrid +135_1-5 Q0 MARCO_09_18346700-5 59 90.212701 hybrid +135_1-5 Q0 MARCO_21_879892092-3 60 90.208101 hybrid +135_1-5 Q0 MARCO_07_1001553105-3 61 90.206457 hybrid +135_1-5 Q0 MARCO_32_462141573-3 62 90.206264 hybrid +135_1-5 Q0 MARCO_55_1292828480-3 63 90.205201 hybrid +135_1-5 Q0 MARCO_46_1271968884-4 64 90.203900 hybrid +135_1-5 Q0 MARCO_42_706445972-4 65 90.201850 hybrid +135_1-5 Q0 MARCO_46_1272828752-6 66 90.201474 hybrid +135_1-5 Q0 MARCO_28_1759557920-6 67 90.200612 hybrid +135_1-5 Q0 MARCO_31_1300740495-2 68 90.190751 hybrid +135_1-5 Q0 MARCO_28_1759651308-5 69 90.189839 hybrid +135_1-5 Q0 MARCO_23_1679946541-3 70 90.189600 hybrid +135_1-5 Q0 MARCO_50_2244208415-25 71 90.186800 hybrid +135_1-5 Q0 MARCO_28_1759630967-8 72 90.181027 hybrid +135_1-5 Q0 MARCO_57_1269261512-3 73 90.181012 hybrid +135_1-5 Q0 MARCO_13_254419015-7 74 90.168451 hybrid +135_1-5 Q0 MARCO_40_743997809-1 75 90.168195 hybrid +135_1-5 Q0 MARCO_07_1401441779-2 76 90.168051 hybrid +135_1-5 Q0 MARCO_21_446186091-3 77 90.155301 hybrid +135_1-5 Q0 MARCO_48_2041982458-5 78 90.155051 hybrid +135_1-5 Q0 MARCO_56_1519242856-3 79 90.150351 hybrid +135_1-5 Q0 MARCO_27_1029671860-6 80 90.147251 hybrid +135_1-5 Q0 MARCO_32_375317415-2 81 90.139447 hybrid +135_1-5 Q0 MARCO_52_373300995-7 82 90.136151 hybrid +135_1-5 Q0 MARCO_40_741826331-7 83 90.135331 hybrid +135_1-5 Q0 MARCO_44_842166472-12 84 90.135150 hybrid +135_1-5 Q0 MARCO_10_698928506-2 85 90.134442 hybrid +135_1-5 Q0 MARCO_48_377468525-7 86 90.132939 hybrid +135_1-5 Q0 MARCO_27_1183994749-5 87 90.132801 hybrid +135_1-5 Q0 MARCO_00_1326001009-1 88 90.132601 hybrid +135_1-5 Q0 MARCO_27_1725175378-9 89 90.124451 hybrid +135_1-5 Q0 MARCO_57_2139017372-16 90 90.113501 hybrid +135_1-5 Q0 MARCO_33_723703063-7 91 90.113370 hybrid +135_1-5 Q0 MARCO_22_1579930911-9 92 90.110394 hybrid +135_1-5 Q0 MARCO_24_545332153-2 93 90.107651 hybrid +135_1-5 Q0 MARCO_08_163876809-1 94 90.106496 hybrid +135_1-5 Q0 MARCO_32_375184463-5 95 90.105611 hybrid +135_1-5 Q0 MARCO_10_634723854-7 96 90.101901 hybrid +135_1-5 Q0 MARCO_58_794223224-15 97 90.101100 hybrid +135_1-5 Q0 MARCO_06_403700197-4 98 90.096801 hybrid +135_1-5 Q0 MARCO_46_281243411-6 99 90.088100 hybrid +135_1-5 Q0 MARCO_24_1201350974-4 100 90.079451 hybrid +135_1-7 Q0 MARCO_21_583935744-4 1 90.153252 hybrid +135_1-7 Q0 MARCO_27_440715178-2 2 89.777152 hybrid +135_1-7 Q0 MARCO_21_237282101-4 3 89.625902 hybrid +135_1-7 Q0 MARCO_28_1801863104-8 4 89.582849 hybrid +135_1-7 Q0 MARCO_53_995786461-5 5 89.094002 hybrid +135_1-7 Q0 MARCO_30_192367960-10 6 89.066552 hybrid +135_1-7 Q0 MARCO_09_948565416-6 7 89.039302 hybrid +135_1-7 Q0 MARCO_50_2143478118-63 8 89.019991 hybrid +135_1-7 Q0 MARCO_24_508222455-15 9 88.764783 hybrid +135_1-7 Q0 MARCO_53_995786461-7 10 88.700802 hybrid +135_1-7 Q0 MARCO_09_948565416-8 11 88.664302 hybrid +135_1-7 Q0 MARCO_20_16115426-3 12 88.658079 hybrid +135_1-7 Q0 MARCO_10_988820795-14 13 88.655546 hybrid +135_1-7 Q0 MARCO_21_583935744-1 14 88.573252 hybrid +135_1-7 Q0 MARCO_50_1419100449-16 15 88.564878 hybrid +135_1-7 Q0 MARCO_21_583935744-5 16 88.523802 hybrid +135_1-7 Q0 MARCO_51_958330308-2 17 88.515798 hybrid +135_1-7 Q0 MARCO_44_1984942841-11 18 88.515102 hybrid +135_1-7 Q0 MARCO_59_940757412-6 19 88.501882 hybrid +135_1-7 Q0 MARCO_20_18533069-12 20 88.498312 hybrid +135_1-7 Q0 MARCO_27_84545825-7 21 88.487852 hybrid +135_1-7 Q0 MARCO_59_940757412-8 22 88.461011 hybrid +135_1-7 Q0 MARCO_21_149389328-4 23 88.442518 hybrid +135_1-7 Q0 MARCO_28_1801863104-7 24 88.442403 hybrid +135_1-7 Q0 MARCO_21_237282101-5 25 88.420802 hybrid +135_1-7 Q0 MARCO_34_1328182024-6 26 88.415105 hybrid +135_1-7 Q0 MARCO_10_988820795-10 27 88.413442 hybrid +135_1-7 Q0 MARCO_34_1590894249-4 28 88.407852 hybrid +135_1-7 Q0 MARCO_40_741967650-6 29 88.403989 hybrid +135_1-7 Q0 MARCO_24_1495248009-12 30 88.384252 hybrid +135_1-7 Q0 MARCO_52_362918693-1 31 88.370840 hybrid +135_1-7 Q0 MARCO_50_1419100449-15 32 88.369199 hybrid +135_1-7 Q0 MARCO_59_940757412-2 33 88.351820 hybrid +135_1-7 Q0 MARCO_30_931354089-38 34 88.344852 hybrid +135_1-7 Q0 MARCO_07_1046988585-2 35 88.344587 hybrid +135_1-7 Q0 MARCO_50_2143478118-75 36 88.340375 hybrid +135_1-7 Q0 MARCO_57_1966181811-26 37 88.337153 hybrid +135_1-7 Q0 MARCO_32_593983345-10 38 88.329816 hybrid +135_1-7 Q0 MARCO_21_583935744-3 39 88.323652 hybrid +135_1-7 Q0 MARCO_10_988820795-8 40 88.322378 hybrid +135_1-7 Q0 MARCO_55_881396183-31 41 88.317952 hybrid +135_1-7 Q0 MARCO_52_362918693-6 42 88.305112 hybrid +135_1-7 Q0 MARCO_50_1419100449-1 43 88.281858 hybrid +135_1-7 Q0 MARCO_28_1801863104-6 44 88.278196 hybrid +135_1-7 Q0 MARCO_31_25551789-2 45 88.274952 hybrid +135_1-7 Q0 MARCO_02_1831456118-7 46 88.270202 hybrid +135_1-7 Q0 MARCO_27_712484347-9 47 88.261892 hybrid +135_1-7 Q0 MARCO_44_1985483110-13 48 88.249602 hybrid +135_1-7 Q0 MARCO_27_1033511931-227 49 88.226352 hybrid +135_1-7 Q0 MARCO_52_1291510907-5 50 88.221852 hybrid +135_1-7 Q0 MARCO_27_1033511931-149 51 88.218402 hybrid +135_1-7 Q0 MARCO_19_2631612001-12 52 88.205434 hybrid +135_1-7 Q0 MARCO_21_583935744-2 53 88.200502 hybrid +135_1-7 Q0 MARCO_20_27580101-2 54 88.195028 hybrid +135_1-7 Q0 MARCO_10_988820795-1 55 88.179300 hybrid +135_1-7 Q0 MARCO_07_794319906-41 56 88.171867 hybrid +135_1-7 Q0 MARCO_37_1253034443-13 57 88.168435 hybrid +135_1-7 Q0 MARCO_50_1988583450-10 58 88.165487 hybrid +135_1-7 Q0 MARCO_27_1245274024-1 59 88.163319 hybrid +135_1-7 Q0 MARCO_51_1761952064-55 60 88.161152 hybrid +135_1-7 Q0 MARCO_56_1513080404-3 61 88.160963 hybrid +135_1-7 Q0 MARCO_46_701581995-13 62 88.158652 hybrid +135_1-7 Q0 MARCO_30_1748977942-23 63 88.153352 hybrid +135_1-7 Q0 MARCO_31_902123204-7 64 88.147512 hybrid +135_1-7 Q0 MARCO_08_163743160-3 65 88.138937 hybrid +135_1-7 Q0 MARCO_46_14148609-1 66 88.137243 hybrid +135_1-7 Q0 MARCO_28_1801863104-1 67 88.127592 hybrid +135_1-7 Q0 MARCO_51_958834692-10 68 88.126920 hybrid +135_1-7 Q0 MARCO_04_784496281-9 69 88.121336 hybrid +135_1-7 Q0 MARCO_46_1271069967-1 70 88.119367 hybrid +135_1-7 Q0 MARCO_52_362918693-5 71 88.114011 hybrid +135_1-7 Q0 MARCO_08_1617465729-55 72 88.112302 hybrid +135_1-7 Q0 MARCO_00_1280853048-7 73 88.103323 hybrid +135_1-7 Q0 MARCO_51_356834546-5 74 88.087302 hybrid +135_1-7 Q0 MARCO_43_744160165-7 75 88.085391 hybrid +135_1-7 Q0 MARCO_28_1801863104-3 76 88.081846 hybrid +135_1-7 Q0 MARCO_51_958330308-11 77 88.076543 hybrid +135_1-7 Q0 MARCO_02_1355954397-3 78 88.073049 hybrid +135_1-7 Q0 MARCO_47_313817461-4 79 88.072902 hybrid +135_1-7 Q0 MARCO_12_1452175227-4 80 88.070951 hybrid +135_1-7 Q0 MARCO_27_440340234-23 81 88.064552 hybrid +135_1-7 Q0 MARCO_03_1136137987-8 82 88.056952 hybrid +135_1-7 Q0 MARCO_53_321674432-1 83 88.055102 hybrid +135_1-7 Q0 MARCO_46_14148609-2 84 88.054967 hybrid +135_1-7 Q0 MARCO_43_747183395-6 85 88.052412 hybrid +135_1-7 Q0 MARCO_22_1168232426-4 86 88.052152 hybrid +135_1-7 Q0 MARCO_21_1197994992-6 87 88.052102 hybrid +135_1-7 Q0 MARCO_01_701105177-23 88 88.048627 hybrid +135_1-7 Q0 MARCO_07_794319906-45 89 88.045743 hybrid +135_1-7 Q0 MARCO_22_830623573-7 90 88.043493 hybrid +135_1-7 Q0 MARCO_46_1273335934-9 91 88.041669 hybrid +135_1-7 Q0 MARCO_42_743680699-7 92 88.039802 hybrid +135_1-7 Q0 MARCO_28_467398472-2 93 88.033552 hybrid +135_1-7 Q0 MARCO_48_376135113-4 94 88.025983 hybrid +135_1-7 Q0 MARCO_51_958540864-7 95 88.025861 hybrid +135_1-7 Q0 MARCO_28_1314344133-18 96 88.010052 hybrid +135_1-7 Q0 MARCO_46_1271069967-2 97 87.998174 hybrid +135_1-7 Q0 MARCO_23_1676717433-17 98 87.997602 hybrid +135_1-7 Q0 MARCO_55_881396183-24 99 87.995902 hybrid +135_1-7 Q0 MARCO_27_640460266-4 100 87.994202 hybrid +135_2-1 Q0 MARCO_52_364389438-2 1 90.196620 hybrid +135_2-1 Q0 MARCO_20_353592428-2 2 89.696542 hybrid +135_2-1 Q0 MARCO_20_17297398-5 3 89.419292 hybrid +135_2-1 Q0 MARCO_04_1103503251-4 4 89.143492 hybrid +135_2-1 Q0 MARCO_46_1268754227-1 5 89.137596 hybrid +135_2-1 Q0 MARCO_38_857467080-2 6 89.121142 hybrid +135_2-1 Q0 MARCO_55_717978637-1 7 89.119204 hybrid +135_2-1 Q0 MARCO_56_1378957481-1 8 89.105342 hybrid +135_2-1 Q0 MARCO_29_25348656-12 9 89.021142 hybrid +135_2-1 Q0 MARCO_50_1299613644-14 10 88.983492 hybrid +135_2-1 Q0 MARCO_50_986621897-2 11 88.963042 hybrid +135_2-1 Q0 MARCO_40_747901451-3 12 88.952542 hybrid +135_2-1 Q0 MARCO_20_17318628-7 13 88.925468 hybrid +135_2-1 Q0 MARCO_42_706764605-1 14 88.893292 hybrid +135_2-1 Q0 MARCO_20_353592428-3 15 88.889892 hybrid +135_2-1 Q0 MARCO_11_1521194532-7 16 88.882242 hybrid +135_2-1 Q0 MARCO_11_1470577126-4 17 88.877242 hybrid +135_2-1 Q0 MARCO_23_60227988-35 18 88.863642 hybrid +135_2-1 Q0 MARCO_40_747911270-4 19 88.794148 hybrid +135_2-1 Q0 MARCO_36_1542686764-6 20 88.791192 hybrid +135_2-1 Q0 MARCO_21_50846219-1 21 88.767192 hybrid +135_2-1 Q0 MARCO_06_1852091296-5 22 88.744042 hybrid +135_2-1 Q0 MARCO_43_185113490-20 23 88.722142 hybrid +135_2-1 Q0 MARCO_50_942868292-61 24 88.715646 hybrid +135_2-1 Q0 MARCO_29_25348656-1 25 88.701380 hybrid +135_2-1 Q0 MARCO_08_618716956-26 26 88.698342 hybrid +135_2-1 Q0 MARCO_58_101205284-29 27 88.697592 hybrid +135_2-1 Q0 MARCO_44_222064281-3 28 88.678892 hybrid +135_2-1 Q0 MARCO_51_120043056-12 29 88.678025 hybrid +135_2-1 Q0 MARCO_56_1391086735-129 30 88.664142 hybrid +135_2-1 Q0 MARCO_05_1824501796-1 31 88.654842 hybrid +135_2-1 Q0 MARCO_50_942632346-92 32 88.654313 hybrid +135_2-1 Q0 MARCO_06_1406785097-4 33 88.644477 hybrid +135_2-1 Q0 MARCO_50_844365983-11 34 88.636642 hybrid +135_2-1 Q0 MARCO_20_17334723-7 35 88.632039 hybrid +135_2-1 Q0 MARCO_45_655712107-5 36 88.624541 hybrid +135_2-1 Q0 MARCO_57_2121896036-29 37 88.617385 hybrid +135_2-1 Q0 MARCO_01_1887284477-28 38 88.602142 hybrid +135_2-1 Q0 MARCO_52_540460166-10 39 88.582942 hybrid +135_2-1 Q0 MARCO_23_1160138158-1 40 88.576642 hybrid +135_2-1 Q0 MARCO_22_441624381-5 41 88.568342 hybrid +135_2-1 Q0 MARCO_50_942632346-93 42 88.567679 hybrid +135_2-1 Q0 MARCO_06_40509451-2 43 88.564192 hybrid +135_2-1 Q0 MARCO_20_17290870-5 44 88.555540 hybrid +135_2-1 Q0 MARCO_22_1311706234-12 45 88.553344 hybrid +135_2-1 Q0 MARCO_22_1311765867-5 46 88.553336 hybrid +135_2-1 Q0 MARCO_22_1311816083-9 47 88.553336 hybrid +135_2-1 Q0 MARCO_22_1311720716-12 48 88.553336 hybrid +135_2-1 Q0 MARCO_28_466260418-3 49 88.551342 hybrid +135_2-1 Q0 MARCO_02_36949915-11 50 88.549242 hybrid +135_2-1 Q0 MARCO_28_956783824-4 51 88.543220 hybrid +135_2-1 Q0 MARCO_02_492403282-2 52 88.541488 hybrid +135_2-1 Q0 MARCO_20_17306835-5 53 88.533919 hybrid +135_2-1 Q0 MARCO_15_1322043236-3 54 88.529292 hybrid +135_2-1 Q0 MARCO_40_746977716-10 55 88.526404 hybrid +135_2-1 Q0 MARCO_20_17261213-14 56 88.523592 hybrid +135_2-1 Q0 MARCO_31_784283506-13 57 88.518892 hybrid +135_2-1 Q0 MARCO_50_844388880-24 58 88.514492 hybrid +135_2-1 Q0 MARCO_20_597371293-4 59 88.512142 hybrid +135_2-1 Q0 MARCO_31_353157446-7 60 88.511892 hybrid +135_2-1 Q0 MARCO_20_17254796-5 61 88.510492 hybrid +135_2-1 Q0 MARCO_50_942500408-8 62 88.510299 hybrid +135_2-1 Q0 MARCO_47_956373399-6 63 88.502942 hybrid +135_2-1 Q0 MARCO_50_844388880-26 64 88.490992 hybrid +135_2-1 Q0 MARCO_04_843885146-1 65 88.486592 hybrid +135_2-1 Q0 MARCO_22_1311746140-6 66 88.481307 hybrid +135_2-1 Q0 MARCO_42_368721343-3 67 88.469392 hybrid +135_2-1 Q0 MARCO_50_1427540295-2 68 88.467574 hybrid +135_2-1 Q0 MARCO_25_1420151040-5 69 88.464042 hybrid +135_2-1 Q0 MARCO_20_17327538-6 70 88.463542 hybrid +135_2-1 Q0 MARCO_50_1893048714-20 71 88.459042 hybrid +135_2-1 Q0 MARCO_38_857196729-13 72 88.457692 hybrid +135_2-1 Q0 MARCO_40_762920613-1 73 88.449092 hybrid +135_2-1 Q0 MARCO_56_1151406737-3 74 88.443792 hybrid +135_2-1 Q0 MARCO_42_637421417-36 75 88.443259 hybrid +135_2-1 Q0 MARCO_23_845443503-14 76 88.438442 hybrid +135_2-1 Q0 MARCO_15_523006617-1 77 88.436592 hybrid +135_2-1 Q0 MARCO_08_678274631-1 78 88.435392 hybrid +135_2-1 Q0 MARCO_50_2906772346-1 79 88.435142 hybrid +135_2-1 Q0 MARCO_20_17297398-8 80 88.432342 hybrid +135_2-1 Q0 MARCO_34_1335100605-6 81 88.424592 hybrid +135_2-1 Q0 MARCO_02_487245467-1 82 88.423942 hybrid +135_2-1 Q0 MARCO_40_744193902-1 83 88.421647 hybrid +135_2-1 Q0 MARCO_29_25348656-9 84 88.417663 hybrid +135_2-1 Q0 MARCO_57_2118242861-15 85 88.415671 hybrid +135_2-1 Q0 MARCO_14_485975470-10 86 88.415042 hybrid +135_2-1 Q0 MARCO_55_717746869-4 87 88.411635 hybrid +135_2-1 Q0 MARCO_05_1253127461-1 88 88.404992 hybrid +135_2-1 Q0 MARCO_01_2144016315-2 89 88.392292 hybrid +135_2-1 Q0 MARCO_52_952087073-19 90 88.388342 hybrid +135_2-1 Q0 MARCO_57_2121896036-1 91 88.382064 hybrid +135_2-1 Q0 MARCO_24_1037638245-7 92 88.381592 hybrid +135_2-1 Q0 MARCO_56_1602966882-5 93 88.378692 hybrid +135_2-1 Q0 MARCO_01_1576054866-7 94 88.376492 hybrid +135_2-1 Q0 MARCO_26_111929246-1 95 88.374122 hybrid +135_2-1 Q0 MARCO_28_719057733-1 96 88.372942 hybrid +135_2-1 Q0 MARCO_11_1468526452-4 97 88.359191 hybrid +135_2-1 Q0 MARCO_08_618877102-6 98 88.353092 hybrid +135_2-1 Q0 MARCO_20_17312957-4 99 88.343342 hybrid +135_2-1 Q0 MARCO_13_1699035897-1 100 88.341542 hybrid +135_2-11 Q0 MARCO_51_971491333-4 1 92.223267 hybrid +135_2-11 Q0 MARCO_50_942738183-29 2 91.104186 hybrid +135_2-11 Q0 MARCO_07_1237185290-1 3 90.578867 hybrid +135_2-11 Q0 MARCO_46_773010518-13 4 90.559284 hybrid +135_2-11 Q0 MARCO_08_163131777-11 5 90.166968 hybrid +135_2-11 Q0 MARCO_13_1699264415-4 6 90.102617 hybrid +135_2-11 Q0 MARCO_42_707092932-6 7 90.040517 hybrid +135_2-11 Q0 KILT_49132-28 8 89.938567 hybrid +135_2-11 Q0 MARCO_51_971137917-5 9 89.912367 hybrid +135_2-11 Q0 MARCO_51_958585730-5 10 89.864196 hybrid +135_2-11 Q0 MARCO_51_959300059-4 11 89.840466 hybrid +135_2-11 Q0 MARCO_33_752776293-4 12 89.767717 hybrid +135_2-11 Q0 MARCO_09_796007700-3 13 89.760267 hybrid +135_2-11 Q0 MARCO_42_161899714-2 14 89.757467 hybrid +135_2-11 Q0 MARCO_55_1192964320-2 15 89.746917 hybrid +135_2-11 Q0 MARCO_42_707092932-3 16 89.696767 hybrid +135_2-11 Q0 MARCO_23_488370169-3 17 89.693036 hybrid +135_2-11 Q0 MARCO_18_1491423692-12 18 89.681017 hybrid +135_2-11 Q0 MARCO_48_1682534625-2 19 89.635817 hybrid +135_2-11 Q0 MARCO_32_879868518-4 20 89.539267 hybrid +135_2-11 Q0 MARCO_56_1655505817-1 21 89.533517 hybrid +135_2-11 Q0 MARCO_23_65449010-6 22 89.504517 hybrid +135_2-11 Q0 MARCO_51_959300059-5 23 89.491696 hybrid +135_2-11 Q0 MARCO_45_519207963-9 24 89.469667 hybrid +135_2-11 Q0 MARCO_23_182916034-10 25 89.434667 hybrid +135_2-11 Q0 MARCO_50_942738183-28 26 89.421038 hybrid +135_2-11 Q0 MARCO_51_118282152-1 27 89.410440 hybrid +135_2-11 Q0 MARCO_33_1053951364-12 28 89.392067 hybrid +135_2-11 Q0 MARCO_13_1356776531-3 29 89.348867 hybrid +135_2-11 Q0 MARCO_21_646782726-2 30 89.339767 hybrid +135_2-11 Q0 KILT_57276769-13 31 89.319467 hybrid +135_2-11 Q0 MARCO_52_368432109-2 32 89.300917 hybrid +135_2-11 Q0 MARCO_06_1566587255-6 33 89.299867 hybrid +135_2-11 Q0 MARCO_07_1023905708-2 34 89.298517 hybrid +135_2-11 Q0 MARCO_34_1292956605-7 35 89.293667 hybrid +135_2-11 Q0 MARCO_13_1354044294-3 36 89.292217 hybrid +135_2-11 Q0 MARCO_42_972338296-18 37 89.274817 hybrid +135_2-11 Q0 MARCO_24_1849370235-5 38 89.265917 hybrid +135_2-11 Q0 MARCO_11_1507927425-2 39 89.261217 hybrid +135_2-11 Q0 MARCO_34_1285566989-5 40 89.222817 hybrid +135_2-11 Q0 MARCO_06_1566587255-3 41 89.205317 hybrid +135_2-11 Q0 MARCO_26_914468257-10 42 89.199817 hybrid +135_2-11 Q0 MARCO_50_2013533582-1 43 89.198217 hybrid +135_2-11 Q0 MARCO_56_1659415069-5 44 89.192817 hybrid +135_2-11 Q0 MARCO_37_512646156-1 45 89.174517 hybrid +135_2-11 Q0 MARCO_30_922759391-5 46 89.150267 hybrid +135_2-11 Q0 MARCO_56_1513010351-11 47 89.144744 hybrid +135_2-11 Q0 MARCO_51_962893349-2 48 89.137767 hybrid +135_2-11 Q0 MARCO_51_962960266-2 49 89.135867 hybrid +135_2-11 Q0 MARCO_17_2178073897-3 50 89.121267 hybrid +135_2-11 Q0 MARCO_52_876078364-1 51 89.101417 hybrid +135_2-11 Q0 MARCO_50_1348060197-17 52 89.076817 hybrid +135_2-11 Q0 MARCO_50_1210838297-12 53 89.073117 hybrid +135_2-11 Q0 MARCO_50_1348086331-59 54 89.072867 hybrid +135_2-11 Q0 MARCO_49_970300008-9 55 89.055148 hybrid +135_2-11 Q0 MARCO_56_1551411346-5 56 89.046367 hybrid +135_2-11 Q0 MARCO_10_1198798292-2 57 88.998314 hybrid +135_2-11 Q0 MARCO_09_1056110615-1 58 88.994067 hybrid +135_2-11 Q0 MARCO_41_2181471087-2 59 88.993617 hybrid +135_2-11 Q0 MARCO_26_898294424-6 60 88.943467 hybrid +135_2-11 Q0 MARCO_17_2358433671-24 61 88.926967 hybrid +135_2-11 Q0 MARCO_37_771784125-1 62 88.925567 hybrid +135_2-11 Q0 MARCO_51_107676220-4 63 88.917417 hybrid +135_2-11 Q0 MARCO_17_4736330206-37 64 88.914067 hybrid +135_2-11 Q0 MARCO_20_949105377-5 65 88.911317 hybrid +135_2-11 Q0 MARCO_56_1668422696-2 66 88.902517 hybrid +135_2-11 Q0 MARCO_45_655694221-5 67 88.897235 hybrid +135_2-11 Q0 MARCO_27_1028352385-3 68 88.890417 hybrid +135_2-11 Q0 MARCO_51_971491333-2 69 88.887516 hybrid +135_2-11 Q0 MARCO_11_214927063-8 70 88.887367 hybrid +135_2-11 Q0 MARCO_13_1699264415-3 71 88.883217 hybrid +135_2-11 Q0 MARCO_08_1080718189-34 72 88.882567 hybrid +135_2-11 Q0 MARCO_49_842465758-34 73 88.882566 hybrid +135_2-11 Q0 MARCO_20_100780411-7 74 88.875367 hybrid +135_2-11 Q0 MARCO_07_1252086451-14 75 88.875051 hybrid +135_2-11 Q0 MARCO_51_970775019-11 76 88.870167 hybrid +135_2-11 Q0 MARCO_44_116408113-3 77 88.870084 hybrid +135_2-11 Q0 MARCO_02_1441798650-3 78 88.865967 hybrid +135_2-11 Q0 MARCO_15_427685055-13 79 88.864567 hybrid +135_2-11 Q0 MARCO_34_1301022000-3 80 88.858817 hybrid +135_2-11 Q0 MARCO_42_707092932-1 81 88.853917 hybrid +135_2-11 Q0 MARCO_00_17238060-2 82 88.853317 hybrid +135_2-11 Q0 MARCO_15_440602455-1 83 88.850267 hybrid +135_2-11 Q0 MARCO_25_1807727932-13 84 88.849517 hybrid +135_2-11 Q0 MARCO_11_220923059-2 85 88.844817 hybrid +135_2-11 Q0 MARCO_51_118805833-5 86 88.840563 hybrid +135_2-11 Q0 MARCO_25_125699293-2 87 88.839617 hybrid +135_2-11 Q0 MARCO_25_1807535157-5 88 88.839217 hybrid +135_2-11 Q0 MARCO_51_964755384-2 89 88.837967 hybrid +135_2-11 Q0 MARCO_15_418873288-5 90 88.833667 hybrid +135_2-11 Q0 MARCO_50_1610765686-32 91 88.832662 hybrid +135_2-11 Q0 MARCO_15_436201372-4 92 88.829967 hybrid +135_2-11 Q0 MARCO_10_1407080741-2 93 88.829167 hybrid +135_2-11 Q0 MARCO_13_1356631724-6 94 88.828517 hybrid +135_2-11 Q0 MARCO_51_959300059-1 95 88.825107 hybrid +135_2-11 Q0 MARCO_45_655694221-2 96 88.823680 hybrid +135_2-11 Q0 MARCO_15_437014581-10 97 88.815817 hybrid +135_2-11 Q0 MARCO_34_1297983302-2 98 88.813417 hybrid +135_2-11 Q0 MARCO_51_959300059-2 99 88.810322 hybrid +135_2-11 Q0 MARCO_42_707048335-2 100 88.800267 hybrid +135_2-3 Q0 MARCO_40_761913368-1 1 90.765463 hybrid +135_2-3 Q0 MARCO_23_898224248-7 2 90.728290 hybrid +135_2-3 Q0 MARCO_10_661266732-1 3 90.503013 hybrid +135_2-3 Q0 MARCO_28_103127649-1 4 90.476863 hybrid +135_2-3 Q0 MARCO_08_808930129-1 5 90.445063 hybrid +135_2-3 Q0 MARCO_33_483767651-116 6 90.428335 hybrid +135_2-3 Q0 MARCO_44_841990555-8 7 90.401845 hybrid +135_2-3 Q0 MARCO_30_88056508-22 8 90.331335 hybrid +135_2-3 Q0 MARCO_29_52735100-6 9 90.313513 hybrid +135_2-3 Q0 MARCO_26_111596749-6 10 90.253629 hybrid +135_2-3 Q0 MARCO_05_1420945157-4 11 90.245863 hybrid +135_2-3 Q0 MARCO_23_898224248-1 12 90.238113 hybrid +135_2-3 Q0 MARCO_38_500120507-21 13 90.201663 hybrid +135_2-3 Q0 MARCO_08_808930129-7 14 90.187363 hybrid +135_2-3 Q0 MARCO_21_1098216156-8 15 90.160013 hybrid +135_2-3 Q0 MARCO_37_1293790867-13 16 90.153113 hybrid +135_2-3 Q0 MARCO_55_1353870280-1 17 90.118513 hybrid +135_2-3 Q0 MARCO_52_575070289-3 18 90.114614 hybrid +135_2-3 Q0 MARCO_10_715671323-6 19 90.096586 hybrid +135_2-3 Q0 MARCO_07_1021926574-1 20 90.095063 hybrid +135_2-3 Q0 MARCO_39_221813548-10 21 90.082189 hybrid +135_2-3 Q0 MARCO_52_582886704-1 22 90.081563 hybrid +135_2-3 Q0 MARCO_07_543909954-2 23 90.074934 hybrid +135_2-3 Q0 MARCO_21_858513307-1 24 90.074463 hybrid +135_2-3 Q0 MARCO_02_1097911749-1 25 90.073013 hybrid +135_2-3 Q0 MARCO_50_1410903011-13 26 90.060895 hybrid +135_2-3 Q0 MARCO_02_1271577886-2 27 90.051764 hybrid +135_2-3 Q0 MARCO_40_761913368-2 28 90.051663 hybrid +135_2-3 Q0 MARCO_25_1605943708-1 29 90.041463 hybrid +135_2-3 Q0 MARCO_46_987762890-3 30 90.033918 hybrid +135_2-3 Q0 MARCO_09_589622803-13 31 90.031613 hybrid +135_2-3 Q0 MARCO_31_1641084970-1 32 90.022513 hybrid +135_2-3 Q0 MARCO_09_859777870-1 33 90.015313 hybrid +135_2-3 Q0 MARCO_02_1271577886-3 34 90.013963 hybrid +135_2-3 Q0 MARCO_48_376091625-22 35 90.004270 hybrid +135_2-3 Q0 MARCO_07_995973808-8 36 90.002775 hybrid +135_2-3 Q0 MARCO_20_1650938743-1 37 90.000863 hybrid +135_2-3 Q0 MARCO_26_1060247035-1 38 89.983013 hybrid +135_2-3 Q0 MARCO_40_744397707-1 39 89.977833 hybrid +135_2-3 Q0 MARCO_20_1137665710-3 40 89.977563 hybrid +135_2-3 Q0 MARCO_24_1401952457-1 41 89.970913 hybrid +135_2-3 Q0 MARCO_50_942632346-65 42 89.956716 hybrid +135_2-3 Q0 MARCO_45_656776984-7 43 89.954778 hybrid +135_2-3 Q0 MARCO_01_1971592762-3 44 89.950363 hybrid +135_2-3 Q0 MARCO_20_1650956476-1 45 89.944013 hybrid +135_2-3 Q0 MARCO_20_641172821-1 46 89.939563 hybrid +135_2-3 Q0 MARCO_12_353491396-135 47 89.928937 hybrid +135_2-3 Q0 MARCO_07_992472568-8 48 89.920789 hybrid +135_2-3 Q0 MARCO_07_992472568-10 49 89.920782 hybrid +135_2-3 Q0 MARCO_21_1459093924-6 50 89.918821 hybrid +135_2-3 Q0 MARCO_16_1102386653-2 51 89.908453 hybrid +135_2-3 Q0 MARCO_48_375062597-23 52 89.902341 hybrid +135_2-3 Q0 MARCO_29_542014923-5 53 89.900213 hybrid +135_2-3 Q0 MARCO_46_991070927-2 54 89.900159 hybrid +135_2-3 Q0 MARCO_40_761744966-1 55 89.891863 hybrid +135_2-3 Q0 MARCO_00_1688871798-1 56 89.883663 hybrid +135_2-3 Q0 MARCO_50_942632346-93 57 89.881269 hybrid +135_2-3 Q0 MARCO_40_744338693-3 58 89.876958 hybrid +135_2-3 Q0 MARCO_42_697976022-1 59 89.872513 hybrid +135_2-3 Q0 MARCO_48_1560419894-2 60 89.868772 hybrid +135_2-3 Q0 MARCO_07_1013088575-7 61 89.859617 hybrid +135_2-3 Q0 MARCO_50_942500408-8 62 89.858915 hybrid +135_2-3 Q0 MARCO_34_474986520-23 63 89.852880 hybrid +135_2-3 Q0 MARCO_07_998987553-2 64 89.850866 hybrid +135_2-3 Q0 MARCO_02_59069710-4 65 89.848863 hybrid +135_2-3 Q0 MARCO_52_566547069-2 66 89.846863 hybrid +135_2-3 Q0 MARCO_55_881381019-2 67 89.840513 hybrid +135_2-3 Q0 MARCO_48_843681698-1 68 89.839513 hybrid +135_2-3 Q0 MARCO_29_43062166-8 69 89.836263 hybrid +135_2-3 Q0 MARCO_42_945182259-5 70 89.828908 hybrid +135_2-3 Q0 MARCO_47_602801421-10 71 89.826663 hybrid +135_2-3 Q0 MARCO_58_1128101591-3 72 89.826013 hybrid +135_2-3 Q0 MARCO_32_654127333-2 73 89.825713 hybrid +135_2-3 Q0 MARCO_13_706519604-1 74 89.808537 hybrid +135_2-3 Q0 MARCO_49_1724812044-3 75 89.801064 hybrid +135_2-3 Q0 MARCO_13_1302142198-8 76 89.799664 hybrid +135_2-3 Q0 MARCO_32_51958693-1 77 89.794213 hybrid +135_2-3 Q0 MARCO_01_1887629429-4 78 89.790413 hybrid +135_2-3 Q0 MARCO_01_1059091778-2 79 89.784813 hybrid +135_2-3 Q0 MARCO_53_604573585-6 80 89.783363 hybrid +135_2-3 Q0 MARCO_12_1461809640-1 81 89.781213 hybrid +135_2-3 Q0 MARCO_45_979087084-16 82 89.780763 hybrid +135_2-3 Q0 MARCO_45_980984007-9 83 89.780763 hybrid +135_2-3 Q0 MARCO_14_1823181054-1 84 89.778913 hybrid +135_2-3 Q0 MARCO_28_103608125-1 85 89.777913 hybrid +135_2-3 Q0 MARCO_39_1427675997-2 86 89.775513 hybrid +135_2-3 Q0 MARCO_48_1538908013-4 87 89.774613 hybrid +135_2-3 Q0 MARCO_47_602801421-2 88 89.766313 hybrid +135_2-3 Q0 MARCO_07_1039473315-1 89 89.750463 hybrid +135_2-3 Q0 MARCO_08_1054853294-4 90 89.750413 hybrid +135_2-3 Q0 MARCO_31_1309062589-1 91 89.738063 hybrid +135_2-3 Q0 MARCO_56_1548967988-1 92 89.737363 hybrid +135_2-3 Q0 MARCO_47_1200012822-1 93 89.736913 hybrid +135_2-3 Q0 MARCO_09_602109701-1 94 89.736263 hybrid +135_2-3 Q0 MARCO_56_1544664555-1 95 89.736063 hybrid +135_2-3 Q0 MARCO_20_122653631-3 96 89.732063 hybrid +135_2-3 Q0 MARCO_33_727762492-3 97 89.732008 hybrid +135_2-3 Q0 MARCO_42_1848803583-2 98 89.731718 hybrid +135_2-3 Q0 MARCO_03_109557421-4 99 89.731713 hybrid +135_2-3 Q0 MARCO_50_942632346-26 100 89.727964 hybrid +135_2-5 Q0 MARCO_21_870601055-1 1 90.959344 hybrid +135_2-5 Q0 MARCO_22_1643905967-13 2 90.232845 hybrid +135_2-5 Q0 MARCO_56_1517301414-10 3 90.087346 hybrid +135_2-5 Q0 MARCO_50_942738183-29 4 89.717251 hybrid +135_2-5 Q0 MARCO_51_959902068-3 5 89.700928 hybrid +135_2-5 Q0 MARCO_37_840595800-1 6 89.693436 hybrid +135_2-5 Q0 MARCO_06_1393825764-1 7 89.619023 hybrid +135_2-5 Q0 MARCO_50_1678865180-11 8 89.555016 hybrid +135_2-5 Q0 MARCO_51_958253040-21 9 89.508713 hybrid +135_2-5 Q0 MARCO_37_840595800-2 10 89.349834 hybrid +135_2-5 Q0 MARCO_04_956999677-2 11 89.334034 hybrid +135_2-5 Q0 MARCO_42_161899714-2 12 89.294985 hybrid +135_2-5 Q0 MARCO_42_941690382-3 13 89.292084 hybrid +135_2-5 Q0 MARCO_21_870601055-2 14 89.273102 hybrid +135_2-5 Q0 MARCO_37_840595800-3 15 89.235175 hybrid +135_2-5 Q0 MARCO_48_756182980-4 16 89.134050 hybrid +135_2-5 Q0 MARCO_20_366825421-6 17 89.125201 hybrid +135_2-5 Q0 MARCO_01_1638796365-2 18 89.120873 hybrid +135_2-5 Q0 MARCO_42_471021744-1 19 89.113092 hybrid +135_2-5 Q0 MARCO_42_892245414-1 20 89.091120 hybrid +135_2-5 Q0 MARCO_04_956999677-1 21 89.051942 hybrid +135_2-5 Q0 MARCO_50_2380391824-3 22 89.014366 hybrid +135_2-5 Q0 MARCO_51_638868918-2 23 89.003185 hybrid +135_2-5 Q0 MARCO_50_1417751395-5 24 88.968338 hybrid +135_2-5 Q0 MARCO_56_1513010351-2 25 88.937172 hybrid +135_2-5 Q0 MARCO_06_1651294274-4 26 88.912766 hybrid +135_2-5 Q0 MARCO_50_1678865180-3 27 88.901720 hybrid +135_2-5 Q0 MARCO_00_794012105-1 28 88.848035 hybrid +135_2-5 Q0 MARCO_01_1638796365-1 29 88.842517 hybrid +135_2-5 Q0 MARCO_42_943021699-1 30 88.831647 hybrid +135_2-5 Q0 MARCO_50_1417147563-15 31 88.824021 hybrid +135_2-5 Q0 MARCO_20_366825421-1 32 88.821458 hybrid +135_2-5 Q0 MARCO_01_1140054450-1 33 88.818235 hybrid +135_2-5 Q0 MARCO_07_1416169973-8 34 88.811531 hybrid +135_2-5 Q0 MARCO_06_1397845375-4 35 88.802922 hybrid +135_2-5 Q0 MARCO_50_1678865180-14 36 88.797432 hybrid +135_2-5 Q0 MARCO_50_899326001-8 37 88.791286 hybrid +135_2-5 Q0 MARCO_42_707092932-1 38 88.764685 hybrid +135_2-5 Q0 MARCO_38_1389806888-2 39 88.763980 hybrid +135_2-5 Q0 MARCO_50_1678865180-6 40 88.746620 hybrid +135_2-5 Q0 MARCO_08_163882593-6 41 88.724655 hybrid +135_2-5 Q0 MARCO_03_1634155294-3 42 88.719635 hybrid +135_2-5 Q0 MARCO_06_1397845375-6 43 88.719215 hybrid +135_2-5 Q0 MARCO_26_111711735-7 44 88.709671 hybrid +135_2-5 Q0 MARCO_07_595390964-4 45 88.705211 hybrid +135_2-5 Q0 MARCO_51_958757759-1 46 88.686752 hybrid +135_2-5 Q0 MARCO_50_2380452941-13 47 88.676117 hybrid +135_2-5 Q0 MARCO_50_1678865180-9 48 88.674439 hybrid +135_2-5 Q0 MARCO_03_1587233911-2 49 88.659485 hybrid +135_2-5 Q0 MARCO_42_1097163798-6 50 88.659424 hybrid +135_2-5 Q0 MARCO_15_1396443797-5 51 88.644646 hybrid +135_2-5 Q0 MARCO_03_1642744767-2 52 88.623985 hybrid +135_2-5 Q0 MARCO_50_1678865180-12 53 88.600471 hybrid +135_2-5 Q0 MARCO_06_1397845375-1 54 88.580368 hybrid +135_2-5 Q0 MARCO_50_942738183-30 55 88.562791 hybrid +135_2-5 Q0 MARCO_50_1183196001-5 56 88.552208 hybrid +135_2-5 Q0 MARCO_20_366825421-2 57 88.550613 hybrid +135_2-5 Q0 MARCO_46_1273347812-4 58 88.539768 hybrid +135_2-5 Q0 MARCO_42_617995734-1 59 88.537483 hybrid +135_2-5 Q0 MARCO_49_1768010641-1 60 88.523736 hybrid +135_2-5 Q0 MARCO_56_1513010351-13 61 88.503769 hybrid +135_2-5 Q0 MARCO_21_1197525938-14 62 88.471335 hybrid +135_2-5 Q0 MARCO_46_848652260-3 63 88.451843 hybrid +135_2-5 Q0 MARCO_06_1871184670-68 64 88.451134 hybrid +135_2-5 Q0 MARCO_09_1681598911-2 65 88.423736 hybrid +135_2-5 Q0 MARCO_07_1416285002-4 66 88.415052 hybrid +135_2-5 Q0 MARCO_51_970775019-10 67 88.412935 hybrid +135_2-5 Q0 MARCO_31_235095564-11 68 88.401886 hybrid +135_2-5 Q0 MARCO_57_2122062711-11 69 88.392136 hybrid +135_2-5 Q0 MARCO_50_1877527704-49 70 88.388635 hybrid +135_2-5 Q0 MARCO_10_1183275422-3 71 88.388237 hybrid +135_2-5 Q0 MARCO_51_971491333-3 72 88.383185 hybrid +135_2-5 Q0 MARCO_44_1804815788-1 73 88.375735 hybrid +135_2-5 Q0 MARCO_15_1722348984-1 74 88.366379 hybrid +135_2-5 Q0 MARCO_20_366825421-7 75 88.358816 hybrid +135_2-5 Q0 MARCO_31_883528667-23 76 88.347473 hybrid +135_2-5 Q0 MARCO_39_422173655-4 77 88.345474 hybrid +135_2-5 Q0 MARCO_50_942738183-47 78 88.344566 hybrid +135_2-5 Q0 MARCO_50_2479705830-4 79 88.344336 hybrid +135_2-5 Q0 MARCO_53_358653507-3 80 88.336571 hybrid +135_2-5 Q0 MARCO_56_1823012245-2 81 88.330889 hybrid +135_2-5 Q0 MARCO_08_1011355844-20 82 88.330336 hybrid +135_2-5 Q0 MARCO_24_375604309-10 83 88.320486 hybrid +135_2-5 Q0 MARCO_24_1460729845-10 84 88.320244 hybrid +135_2-5 Q0 MARCO_51_958081400-6 85 88.317055 hybrid +135_2-5 Q0 MARCO_51_958244570-3 86 88.303665 hybrid +135_2-5 Q0 MARCO_09_535505861-1 87 88.302065 hybrid +135_2-5 Q0 MARCO_36_1561530141-1 88 88.286585 hybrid +135_2-5 Q0 MARCO_44_1265462989-5 89 88.282936 hybrid +135_2-5 Q0 MARCO_06_1395845897-2 90 88.281921 hybrid +135_2-5 Q0 MARCO_28_447350531-1 91 88.271660 hybrid +135_2-5 Q0 MARCO_47_1331204900-16 92 88.265829 hybrid +135_2-5 Q0 MARCO_50_1678865180-7 93 88.265614 hybrid +135_2-5 Q0 MARCO_42_945929988-4 94 88.264672 hybrid +135_2-5 Q0 MARCO_31_883528667-14 95 88.257317 hybrid +135_2-5 Q0 MARCO_25_1028866180-17 96 88.257236 hybrid +135_2-5 Q0 MARCO_06_1397845375-3 97 88.244087 hybrid +135_2-5 Q0 MARCO_11_1461524211-2 98 88.236835 hybrid +135_2-5 Q0 MARCO_42_946997076-1 99 88.227654 hybrid +135_2-5 Q0 MARCO_53_318013039-1 100 88.219686 hybrid +135_2-7 Q0 MARCO_01_1638796365-2 1 89.375679 hybrid +135_2-7 Q0 MARCO_21_870601055-1 2 89.132235 hybrid +135_2-7 Q0 MARCO_06_1397845375-1 3 88.977122 hybrid +135_2-7 Q0 MARCO_50_942738183-29 4 88.973307 hybrid +135_2-7 Q0 MARCO_50_1417751395-5 5 88.927122 hybrid +135_2-7 Q0 MARCO_56_1517301414-10 6 88.848329 hybrid +135_2-7 Q0 MARCO_42_161899714-2 7 88.813722 hybrid +135_2-7 Q0 MARCO_50_1678865180-12 8 88.729349 hybrid +135_2-7 Q0 MARCO_50_1678865180-11 9 88.690263 hybrid +135_2-7 Q0 MARCO_04_956999677-2 10 88.609116 hybrid +135_2-7 Q0 MARCO_50_1678865180-3 11 88.577909 hybrid +135_2-7 Q0 MARCO_42_707092932-1 12 88.570672 hybrid +135_2-7 Q0 MARCO_07_1003589292-4 13 88.452916 hybrid +135_2-7 Q0 MARCO_51_971491333-4 14 88.439172 hybrid +135_2-7 Q0 MARCO_49_1073101946-6 15 88.432621 hybrid +135_2-7 Q0 MARCO_50_942738183-30 16 88.343881 hybrid +135_2-7 Q0 MARCO_37_840595800-2 17 88.327250 hybrid +135_2-7 Q0 MARCO_51_958253040-21 18 88.287630 hybrid +135_2-7 Q0 MARCO_20_366825421-11 19 88.283021 hybrid +135_2-7 Q0 MARCO_50_1416826848-21 20 88.260240 hybrid +135_2-7 Q0 MARCO_08_163882593-6 21 88.237772 hybrid +135_2-7 Q0 MARCO_50_2380391824-3 22 88.227846 hybrid +135_2-7 Q0 MARCO_51_959902068-3 23 88.211587 hybrid +135_2-7 Q0 MARCO_21_845826199-2 24 88.203822 hybrid +135_2-7 Q0 MARCO_22_1643905967-13 25 88.183618 hybrid +135_2-7 Q0 MARCO_06_1651294274-4 26 88.176195 hybrid +135_2-7 Q0 MARCO_37_840595800-3 27 88.172568 hybrid +135_2-7 Q0 MARCO_42_1097163798-6 28 88.131128 hybrid +135_2-7 Q0 MARCO_50_1417147563-15 29 88.127817 hybrid +135_2-7 Q0 MARCO_01_1643580497-13 30 88.126505 hybrid +135_2-7 Q0 MARCO_42_471021744-1 31 88.120922 hybrid +135_2-7 Q0 MARCO_50_1678865180-6 32 88.119272 hybrid +135_2-7 Q0 MARCO_57_74046534-11 33 88.085872 hybrid +135_2-7 Q0 MARCO_40_961837537-4 34 88.065321 hybrid +135_2-7 Q0 MARCO_42_607373902-3 35 88.035852 hybrid +135_2-7 Q0 MARCO_50_1678865180-9 36 88.026010 hybrid +135_2-7 Q0 MARCO_09_848582719-20 37 88.005465 hybrid +135_2-7 Q0 MARCO_37_382111221-3 38 87.998178 hybrid +135_2-7 Q0 MARCO_37_840595800-1 39 87.997677 hybrid +135_2-7 Q0 MARCO_15_135233194-11 40 87.971704 hybrid +135_2-7 Q0 MARCO_21_870601055-3 41 87.966745 hybrid +135_2-7 Q0 MARCO_06_1393825764-1 42 87.962036 hybrid +135_2-7 Q0 MARCO_10_1201802098-5 43 87.952882 hybrid +135_2-7 Q0 MARCO_57_2122062711-13 44 87.942071 hybrid +135_2-7 Q0 MARCO_30_242135164-3 45 87.938921 hybrid +135_2-7 Q0 MARCO_07_431734152-1 46 87.933222 hybrid +135_2-7 Q0 MARCO_41_1422111649-46 47 87.923771 hybrid +135_2-7 Q0 MARCO_24_375604309-19 48 87.921972 hybrid +135_2-7 Q0 MARCO_06_1397845375-6 49 87.914712 hybrid +135_2-7 Q0 MARCO_00_1336506202-3 50 87.914371 hybrid +135_2-7 Q0 MARCO_34_1178876430-4 51 87.913321 hybrid +135_2-7 Q0 MARCO_21_870601055-2 52 87.911859 hybrid +135_2-7 Q0 MARCO_56_1513010351-2 53 87.911729 hybrid +135_2-7 Q0 MARCO_50_2488130410-37 54 87.900140 hybrid +135_2-7 Q0 MARCO_15_1653793665-5 55 87.895572 hybrid +135_2-7 Q0 MARCO_50_1678865180-7 56 87.892251 hybrid +135_2-7 Q0 MARCO_42_615332378-6 57 87.866106 hybrid +135_2-7 Q0 MARCO_51_971491333-3 58 87.862472 hybrid +135_2-7 Q0 MARCO_51_959902068-4 59 87.855424 hybrid +135_2-7 Q0 MARCO_21_1444961832-3 60 87.848572 hybrid +135_2-7 Q0 MARCO_26_111711735-7 61 87.839777 hybrid +135_2-7 Q0 MARCO_04_956999677-1 62 87.838447 hybrid +135_2-7 Q0 MARCO_42_891517845-8 63 87.835840 hybrid +135_2-7 Q0 MARCO_23_488344351-5 64 87.829866 hybrid +135_2-7 Q0 MARCO_28_525726252-5 65 87.829401 hybrid +135_2-7 Q0 MARCO_10_1183275422-3 66 87.823968 hybrid +135_2-7 Q0 MARCO_15_1722348984-1 67 87.822031 hybrid +135_2-7 Q0 MARCO_08_165172533-3 68 87.787736 hybrid +135_2-7 Q0 MARCO_24_1460729845-10 69 87.785211 hybrid +135_2-7 Q0 MARCO_23_488344351-4 70 87.782266 hybrid +135_2-7 Q0 MARCO_03_1766279047-4 71 87.772372 hybrid +135_2-7 Q0 MARCO_42_941690382-1 72 87.770706 hybrid +135_2-7 Q0 MARCO_51_970775019-2 73 87.767772 hybrid +135_2-7 Q0 MARCO_45_176717033-7 74 87.758317 hybrid +135_2-7 Q0 MARCO_50_1678865180-1 75 87.756351 hybrid +135_2-7 Q0 MARCO_30_728197171-14 76 87.756122 hybrid +135_2-7 Q0 MARCO_37_69565447-1 77 87.752466 hybrid +135_2-7 Q0 MARCO_21_797905578-15 78 87.746972 hybrid +135_2-7 Q0 MARCO_24_117116783-4 79 87.743422 hybrid +135_2-7 Q0 MARCO_06_1402821152-10 80 87.741922 hybrid +135_2-7 Q0 MARCO_03_1634155294-3 81 87.735522 hybrid +135_2-7 Q0 MARCO_47_1243089310-1 82 87.735422 hybrid +135_2-7 Q0 MARCO_53_755145623-6 83 87.732821 hybrid +135_2-7 Q0 MARCO_28_1624351255-1 84 87.732522 hybrid +135_2-7 Q0 MARCO_37_1545516869-11 85 87.724622 hybrid +135_2-7 Q0 MARCO_10_998427319-14 86 87.722322 hybrid +135_2-7 Q0 MARCO_27_610090026-6 87 87.708672 hybrid +135_2-7 Q0 MARCO_25_1028866180-17 88 87.702624 hybrid +135_2-7 Q0 MARCO_50_2488130410-73 89 87.693643 hybrid +135_2-7 Q0 MARCO_49_1830241430-1 90 87.686603 hybrid +135_2-7 Q0 MARCO_20_366825421-6 91 87.685731 hybrid +135_2-7 Q0 MARCO_15_1396443797-5 92 87.684350 hybrid +135_2-7 Q0 MARCO_20_366825421-14 93 87.684297 hybrid +135_2-7 Q0 MARCO_38_1321151988-1 94 87.683971 hybrid +135_2-7 Q0 MARCO_24_1554102428-14 95 87.679887 hybrid +135_2-7 Q0 MARCO_05_1587718539-79 96 87.673771 hybrid +135_2-7 Q0 MARCO_29_804257258-4 97 87.672110 hybrid +135_2-7 Q0 MARCO_34_76281650-1 98 87.669921 hybrid +135_2-7 Q0 MARCO_46_848652260-3 99 87.667848 hybrid +135_2-7 Q0 MARCO_42_945929988-4 100 87.667131 hybrid +135_2-9 Q0 MARCO_51_971491333-3 1 92.293858 hybrid +135_2-9 Q0 MARCO_21_870601055-1 2 91.168272 hybrid +135_2-9 Q0 MARCO_34_1178876430-4 3 89.663057 hybrid +135_2-9 Q0 MARCO_46_1273347812-4 4 89.570595 hybrid +135_2-9 Q0 MARCO_32_374642125-1 5 89.359606 hybrid +135_2-9 Q0 MARCO_21_870601055-3 6 89.233853 hybrid +135_2-9 Q0 MARCO_50_1417147563-15 7 89.186755 hybrid +135_2-9 Q0 MARCO_22_932202796-1 8 89.065407 hybrid +135_2-9 Q0 MARCO_23_580938627-7 9 89.054057 hybrid +135_2-9 Q0 MARCO_07_1023905708-2 10 88.936407 hybrid +135_2-9 Q0 MARCO_08_163882593-6 11 88.929091 hybrid +135_2-9 Q0 MARCO_48_533439138-1 12 88.907957 hybrid +135_2-9 Q0 MARCO_04_956999677-2 13 88.878303 hybrid +135_2-9 Q0 MARCO_50_1417751395-5 14 88.821735 hybrid +135_2-9 Q0 MARCO_50_2479705830-1 15 88.769557 hybrid +135_2-9 Q0 MARCO_50_942738183-29 16 88.764029 hybrid +135_2-9 Q0 MARCO_10_469686495-1 17 88.735757 hybrid +135_2-9 Q0 MARCO_21_870601055-2 18 88.705863 hybrid +135_2-9 Q0 MARCO_38_276745843-4 19 88.705157 hybrid +135_2-9 Q0 MARCO_53_170416477-1 20 88.668057 hybrid +135_2-9 Q0 MARCO_50_1111820569-127 21 88.646707 hybrid +135_2-9 Q0 MARCO_57_1234821657-1 22 88.644907 hybrid +135_2-9 Q0 MARCO_51_959902068-3 23 88.644684 hybrid +135_2-9 Q0 MARCO_56_1517301414-10 24 88.617972 hybrid +135_2-9 Q0 MARCO_34_1297094954-1 25 88.606707 hybrid +135_2-9 Q0 MARCO_46_567135259-6 26 88.562857 hybrid +135_2-9 Q0 MARCO_50_28088782-9 27 88.553407 hybrid +135_2-9 Q0 MARCO_22_1643905967-13 28 88.542063 hybrid +135_2-9 Q0 MARCO_46_257335684-3 29 88.540315 hybrid +135_2-9 Q0 MARCO_26_997050396-1 30 88.534707 hybrid +135_2-9 Q0 MARCO_56_1517362905-4 31 88.532927 hybrid +135_2-9 Q0 MARCO_04_930782920-2 32 88.527557 hybrid +135_2-9 Q0 MARCO_27_332249691-1 33 88.467157 hybrid +135_2-9 Q0 MARCO_41_270571342-4 34 88.463767 hybrid +135_2-9 Q0 MARCO_42_707092932-3 35 88.444257 hybrid +135_2-9 Q0 MARCO_56_1513010351-2 36 88.431586 hybrid +135_2-9 Q0 MARCO_50_1111820569-29 37 88.383708 hybrid +135_2-9 Q0 MARCO_50_1416826848-21 38 88.383132 hybrid +135_2-9 Q0 MARCO_48_514866393-1 39 88.346557 hybrid +135_2-9 Q0 MARCO_59_813262971-1 40 88.342507 hybrid +135_2-9 Q0 MARCO_51_971491333-4 41 88.311307 hybrid +135_2-9 Q0 MARCO_01_1140054450-2 42 88.304307 hybrid +135_2-9 Q0 MARCO_28_1625293389-1 43 88.303657 hybrid +135_2-9 Q0 MARCO_56_1576663188-3 44 88.275957 hybrid +135_2-9 Q0 MARCO_24_389822841-2 45 88.250757 hybrid +135_2-9 Q0 MARCO_12_981069019-29 46 88.229208 hybrid +135_2-9 Q0 MARCO_09_918935707-10 47 88.225907 hybrid +135_2-9 Q0 MARCO_04_956999677-1 48 88.217715 hybrid +135_2-9 Q0 MARCO_32_594116784-2 49 88.198121 hybrid +135_2-9 Q0 MARCO_14_100143523-1 50 88.180507 hybrid +135_2-9 Q0 MARCO_01_1638796365-2 51 88.174308 hybrid +135_2-9 Q0 MARCO_40_410420314-3 52 88.166507 hybrid +135_2-9 Q0 MARCO_50_1121915878-3 53 88.164457 hybrid +135_2-9 Q0 MARCO_03_1634155294-3 54 88.163207 hybrid +135_2-9 Q0 MARCO_50_1678865180-11 55 88.159369 hybrid +135_2-9 Q0 MARCO_20_195561966-2 56 88.142407 hybrid +135_2-9 Q0 MARCO_12_1234096440-2 57 88.122407 hybrid +135_2-9 Q0 MARCO_42_941690382-3 58 88.120739 hybrid +135_2-9 Q0 MARCO_00_767743164-2 59 88.100368 hybrid +135_2-9 Q0 MARCO_50_2488130410-73 60 88.091575 hybrid +135_2-9 Q0 MARCO_06_1651294274-4 61 88.089751 hybrid +135_2-9 Q0 MARCO_32_1288966558-7 62 88.089657 hybrid +135_2-9 Q0 MARCO_30_583073289-1 63 88.078507 hybrid +135_2-9 Q0 MARCO_50_2380391824-3 64 88.061675 hybrid +135_2-9 Q0 MARCO_23_944932744-2 65 88.044207 hybrid +135_2-9 Q0 MARCO_32_375165062-2 66 88.041099 hybrid +135_2-9 Q0 MARCO_14_1675649281-8 67 88.038807 hybrid +135_2-9 Q0 MARCO_50_118574454-4 68 88.035857 hybrid +135_2-9 Q0 MARCO_50_1584546584-15 69 88.034557 hybrid +135_2-9 Q0 MARCO_55_1347017908-6 70 88.034247 hybrid +135_2-9 Q0 MARCO_33_615995413-2 71 88.031357 hybrid +135_2-9 Q0 MARCO_50_2393691806-16 72 88.031058 hybrid +135_2-9 Q0 MARCO_50_1183196001-5 73 88.030425 hybrid +135_2-9 Q0 MARCO_23_944932744-3 74 88.026484 hybrid +135_2-9 Q0 MARCO_27_1245788375-3 75 88.024992 hybrid +135_2-9 Q0 MARCO_51_958253040-21 76 88.020484 hybrid +135_2-9 Q0 MARCO_51_122589513-1 77 88.009910 hybrid +135_2-9 Q0 MARCO_46_1271288630-8 78 88.004775 hybrid +135_2-9 Q0 MARCO_52_363365539-2 79 88.003592 hybrid +135_2-9 Q0 MARCO_54_450888438-1 80 88.000557 hybrid +135_2-9 Q0 MARCO_50_825130220-3 81 88.000157 hybrid +135_2-9 Q0 MARCO_46_15043157-8 82 87.999457 hybrid +135_2-9 Q0 MARCO_52_896378808-1 83 87.996707 hybrid +135_2-9 Q0 MARCO_32_1487288639-12 84 87.996261 hybrid +135_2-9 Q0 MARCO_23_488370169-2 85 87.987235 hybrid +135_2-9 Q0 MARCO_28_1624351255-1 86 87.984957 hybrid +135_2-9 Q0 MARCO_09_794234431-20 87 87.984916 hybrid +135_2-9 Q0 MARCO_58_958296495-6 88 87.981257 hybrid +135_2-9 Q0 MARCO_19_1451261122-1 89 87.975107 hybrid +135_2-9 Q0 MARCO_49_1768010641-1 90 87.967357 hybrid +135_2-9 Q0 MARCO_11_711636091-7 91 87.957099 hybrid +135_2-9 Q0 MARCO_05_1443131556-2 92 87.948507 hybrid +135_2-9 Q0 MARCO_27_790273620-6 93 87.947507 hybrid +135_2-9 Q0 MARCO_44_217468706-3 94 87.937657 hybrid +135_2-9 Q0 MARCO_07_1250699350-3 95 87.932532 hybrid +135_2-9 Q0 MARCO_42_962020096-1 96 87.926757 hybrid +135_2-9 Q0 MARCO_57_695465214-7 97 87.913157 hybrid +135_2-9 Q0 MARCO_20_20312009-4 98 87.907615 hybrid +135_2-9 Q0 MARCO_25_1462443382-1 99 87.899957 hybrid +135_2-9 Q0 MARCO_42_907145402-1 100 87.898357 hybrid +135_3-1 Q0 MARCO_07_992255008-3 1 90.636354 hybrid +135_3-1 Q0 MARCO_48_530993744-4 2 90.477422 hybrid +135_3-1 Q0 MARCO_00_898730767-3 3 90.307332 hybrid +135_3-1 Q0 MARCO_59_356337724-5 4 90.162435 hybrid +135_3-1 Q0 MARCO_15_526524970-9 5 90.136926 hybrid +135_3-1 Q0 MARCO_38_1389095510-3 6 90.132844 hybrid +135_3-1 Q0 MARCO_20_26451631-3 7 90.098136 hybrid +135_3-1 Q0 MARCO_28_645990301-1 8 90.009972 hybrid +135_3-1 Q0 MARCO_51_944682700-3 9 89.947134 hybrid +135_3-1 Q0 MARCO_03_1220235132-1 10 89.902284 hybrid +135_3-1 Q0 MARCO_30_832200335-2 11 89.883180 hybrid +135_3-1 Q0 MARCO_54_175786723-3 12 89.845118 hybrid +135_3-1 Q0 MARCO_10_904399786-19 13 89.827480 hybrid +135_3-1 Q0 MARCO_42_804317424-3 14 89.799772 hybrid +135_3-1 Q0 MARCO_21_875122949-1 15 89.796522 hybrid +135_3-1 Q0 MARCO_07_1012854612-4 16 89.767956 hybrid +135_3-1 Q0 MARCO_51_957764537-2 17 89.750859 hybrid +135_3-1 Q0 MARCO_15_137188383-4 18 89.741070 hybrid +135_3-1 Q0 MARCO_21_678173848-1 19 89.722872 hybrid +135_3-1 Q0 MARCO_30_832200335-1 20 89.674711 hybrid +135_3-1 Q0 MARCO_50_2488130410-37 21 89.663569 hybrid +135_3-1 Q0 MARCO_31_1293626544-2 22 89.662272 hybrid +135_3-1 Q0 MARCO_50_1403314805-9 23 89.652211 hybrid +135_3-1 Q0 MARCO_45_655712107-3 24 89.598411 hybrid +135_3-1 Q0 MARCO_46_1001754017-2 25 89.571522 hybrid +135_3-1 Q0 MARCO_56_1517301414-6 26 89.551248 hybrid +135_3-1 Q0 MARCO_15_526509543-3 27 89.521405 hybrid +135_3-1 Q0 MARCO_05_1612795622-6 28 89.508672 hybrid +135_3-1 Q0 MARCO_07_1025136257-3 29 89.504772 hybrid +135_3-1 Q0 MARCO_34_853480584-8 30 89.499972 hybrid +135_3-1 Q0 MARCO_50_2488130410-24 31 89.467007 hybrid +135_3-1 Q0 MARCO_21_867486171-2 32 89.459922 hybrid +135_3-1 Q0 MARCO_07_1000940097-3 33 89.433072 hybrid +135_3-1 Q0 MARCO_21_151919715-15 34 89.419858 hybrid +135_3-1 Q0 MARCO_51_957867032-3 35 89.414386 hybrid +135_3-1 Q0 MARCO_12_522385574-1 36 89.411672 hybrid +135_3-1 Q0 MARCO_20_59980201-3 37 89.407444 hybrid +135_3-1 Q0 MARCO_09_795682330-1 38 89.390672 hybrid +135_3-1 Q0 MARCO_07_1012854612-2 39 89.389424 hybrid +135_3-1 Q0 MARCO_50_910736706-30 40 89.384572 hybrid +135_3-1 Q0 MARCO_20_1646818330-4 41 89.372372 hybrid +135_3-1 Q0 MARCO_46_1271288630-3 42 89.370114 hybrid +135_3-1 Q0 MARCO_23_1161025400-1 43 89.369972 hybrid +135_3-1 Q0 MARCO_09_1039188309-5 44 89.367122 hybrid +135_3-1 Q0 MARCO_07_1024848861-3 45 89.365872 hybrid +135_3-1 Q0 MARCO_53_617813365-5 46 89.364514 hybrid +135_3-1 Q0 MARCO_52_540445950-4 47 89.364122 hybrid +135_3-1 Q0 MARCO_50_2557612464-6 48 89.356321 hybrid +135_3-1 Q0 MARCO_33_1315161380-16 49 89.353722 hybrid +135_3-1 Q0 MARCO_50_2488130410-22 50 89.345654 hybrid +135_3-1 Q0 MARCO_45_1343190636-9 51 89.334772 hybrid +135_3-1 Q0 MARCO_51_957764537-1 52 89.316884 hybrid +135_3-1 Q0 MARCO_21_869909453-1 53 89.304951 hybrid +135_3-1 Q0 MARCO_08_1484334854-1 54 89.296254 hybrid +135_3-1 Q0 MARCO_53_618734730-1 55 89.294339 hybrid +135_3-1 Q0 MARCO_10_1183275422-3 56 89.294315 hybrid +135_3-1 Q0 MARCO_53_618728720-3 57 89.284983 hybrid +135_3-1 Q0 MARCO_07_1012877652-4 58 89.269581 hybrid +135_3-1 Q0 MARCO_29_1211974105-2 59 89.252591 hybrid +135_3-1 Q0 MARCO_48_513806187-5 60 89.238092 hybrid +135_3-1 Q0 MARCO_21_869538031-2 61 89.235348 hybrid +135_3-1 Q0 MARCO_03_921528360-2 62 89.232022 hybrid +135_3-1 Q0 MARCO_42_805507948-4 63 89.231822 hybrid +135_3-1 Q0 MARCO_06_1402239090-2 64 89.227599 hybrid +135_3-1 Q0 MARCO_12_1748615894-7 65 89.227522 hybrid +135_3-1 Q0 MARCO_20_1169331240-3 66 89.226122 hybrid +135_3-1 Q0 MARCO_52_1684965918-5 67 89.221972 hybrid +135_3-1 Q0 MARCO_21_875826069-1 68 89.219522 hybrid +135_3-1 Q0 MARCO_31_1293385072-2 69 89.214722 hybrid +135_3-1 Q0 MARCO_00_898714629-11 70 89.204594 hybrid +135_3-1 Q0 MARCO_08_1292330141-1 71 89.202672 hybrid +135_3-1 Q0 MARCO_06_1433849269-8 72 89.198372 hybrid +135_3-1 Q0 MARCO_32_374633696-2 73 89.194413 hybrid +135_3-1 Q0 MARCO_48_377486088-3 74 89.190907 hybrid +135_3-1 Q0 MARCO_20_59992661-3 75 89.186985 hybrid +135_3-1 Q0 MARCO_20_59992661-1 76 89.185957 hybrid +135_3-1 Q0 MARCO_35_439026276-3 77 89.185072 hybrid +135_3-1 Q0 MARCO_24_86433529-2 78 89.181522 hybrid +135_3-1 Q0 MARCO_53_29257599-2 79 89.180272 hybrid +135_3-1 Q0 MARCO_42_873762756-8 80 89.170643 hybrid +135_3-1 Q0 MARCO_50_2488130410-31 81 89.165326 hybrid +135_3-1 Q0 MARCO_51_958229275-5 82 89.161297 hybrid +135_3-1 Q0 MARCO_12_1748615894-4 83 89.159200 hybrid +135_3-1 Q0 MARCO_31_1300740495-2 84 89.152372 hybrid +135_3-1 Q0 MARCO_40_741982222-3 85 89.150650 hybrid +135_3-1 Q0 MARCO_51_958286148-2 86 89.150624 hybrid +135_3-1 Q0 MARCO_51_957867032-8 87 89.149960 hybrid +135_3-1 Q0 MARCO_42_163777617-18 88 89.147297 hybrid +135_3-1 Q0 MARCO_21_601243286-2 89 89.126472 hybrid +135_3-1 Q0 MARCO_40_743492071-2 90 89.125966 hybrid +135_3-1 Q0 MARCO_11_1512638687-2 91 89.125592 hybrid +135_3-1 Q0 MARCO_05_1512212622-1 92 89.121060 hybrid +135_3-1 Q0 MARCO_48_98929793-4 93 89.112822 hybrid +135_3-1 Q0 MARCO_30_269566336-25 94 89.109672 hybrid +135_3-1 Q0 MARCO_35_819427791-2 95 89.107272 hybrid +135_3-1 Q0 MARCO_41_343326630-3 96 89.106251 hybrid +135_3-1 Q0 MARCO_44_1581725263-3 97 89.103372 hybrid +135_3-1 Q0 MARCO_23_945375410-2 98 89.095669 hybrid +135_3-1 Q0 MARCO_37_633346189-7 99 89.093122 hybrid +135_3-1 Q0 MARCO_46_1272892661-6 100 89.085766 hybrid +135_3-3 Q0 MARCO_35_389752087-5 1 97.480029 hybrid +135_3-3 Q0 MARCO_29_404771415-4 2 96.880779 hybrid +135_3-3 Q0 MARCO_51_711815658-1 3 96.771780 hybrid +135_3-3 Q0 MARCO_24_1305859786-1 4 96.738429 hybrid +135_3-3 Q0 MARCO_17_4422212403-75 5 96.681330 hybrid +135_3-3 Q0 MARCO_19_873500202-10 6 96.681329 hybrid +135_3-3 Q0 MARCO_10_267564854-4 7 96.642179 hybrid +135_3-3 Q0 MARCO_30_1661277542-7 8 96.642179 hybrid +135_3-3 Q0 MARCO_16_4027265437-33 9 96.386230 hybrid +135_3-3 Q0 MARCO_10_68275442-4 10 96.364929 hybrid +135_3-3 Q0 MARCO_11_200410230-3 11 96.359679 hybrid +135_3-3 Q0 KILT_12137080-2 12 96.305030 hybrid +135_3-3 Q0 MARCO_19_108814423-6 13 96.117080 hybrid +135_3-3 Q0 MARCO_20_707083428-10 14 96.089729 hybrid +135_3-3 Q0 MARCO_55_950488029-1 15 96.077330 hybrid +135_3-3 Q0 MARCO_17_4422212403-73 16 96.047179 hybrid +135_3-3 Q0 KILT_36919877-3 17 96.027030 hybrid +135_3-3 Q0 MARCO_11_200308986-4 18 96.025530 hybrid +135_3-3 Q0 MARCO_19_873500202-8 19 96.009879 hybrid +135_3-3 Q0 MARCO_17_2182168865-16 20 95.948930 hybrid +135_3-3 Q0 MARCO_19_824328548-12 21 95.948929 hybrid +135_3-3 Q0 MARCO_14_1602202191-3 22 95.941130 hybrid +135_3-3 Q0 MARCO_28_471593118-3 23 95.742729 hybrid +135_3-3 Q0 MARCO_11_200321036-4 24 95.741879 hybrid +135_3-3 Q0 MARCO_24_1305848529-1 25 95.728729 hybrid +135_3-3 Q0 MARCO_20_1466440042-18 26 95.690430 hybrid +135_3-3 Q0 KILT_2554633-8 27 95.677730 hybrid +135_3-3 Q0 KILT_60088416-2 28 95.677729 hybrid +135_3-3 Q0 MARCO_18_2412119083-15 29 95.528629 hybrid +135_3-3 Q0 MARCO_19_824086128-19 30 95.528628 hybrid +135_3-3 Q0 MARCO_19_863159881-17 31 95.528628 hybrid +135_3-3 Q0 MARCO_51_246849357-2 32 95.490029 hybrid +135_3-3 Q0 MARCO_51_247095062-2 33 95.490028 hybrid +135_3-3 Q0 MARCO_51_247116646-2 34 95.490028 hybrid +135_3-3 Q0 MARCO_51_247204500-2 35 95.490027 hybrid +135_3-3 Q0 MARCO_51_247555214-2 36 95.490027 hybrid +135_3-3 Q0 MARCO_51_247976103-2 37 95.490026 hybrid +135_3-3 Q0 MARCO_51_247762269-2 38 95.490026 hybrid +135_3-3 Q0 MARCO_51_248064557-2 39 95.490026 hybrid +135_3-3 Q0 MARCO_51_248193301-2 40 95.490026 hybrid +135_3-3 Q0 MARCO_51_248293780-2 41 95.490025 hybrid +135_3-3 Q0 MARCO_51_248231987-2 42 95.490025 hybrid +135_3-3 Q0 MARCO_51_248390742-2 43 95.490024 hybrid +135_3-3 Q0 MARCO_51_248456411-2 44 95.490024 hybrid +135_3-3 Q0 MARCO_51_248590531-2 45 95.490023 hybrid +135_3-3 Q0 MARCO_51_249000846-2 46 95.490023 hybrid +135_3-3 Q0 MARCO_51_249106405-2 47 95.490022 hybrid +135_3-3 Q0 MARCO_51_249502247-2 48 95.490022 hybrid +135_3-3 Q0 MARCO_51_249695625-2 49 95.490021 hybrid +135_3-3 Q0 MARCO_51_249664621-2 50 95.490021 hybrid +135_3-3 Q0 MARCO_51_250073915-2 51 95.490020 hybrid +135_3-3 Q0 MARCO_51_250091533-2 52 95.490020 hybrid +135_3-3 Q0 MARCO_51_250253127-2 53 95.490019 hybrid +135_3-3 Q0 MARCO_51_250878562-2 54 95.490018 hybrid +135_3-3 Q0 MARCO_51_250913961-2 55 95.490018 hybrid +135_3-3 Q0 MARCO_51_251370982-2 56 95.490017 hybrid +135_3-3 Q0 MARCO_51_251480336-2 57 95.490017 hybrid +135_3-3 Q0 MARCO_16_4004650739-39 58 95.477229 hybrid +135_3-3 Q0 MARCO_17_860499465-11 59 95.477228 hybrid +135_3-3 Q0 MARCO_18_3000335834-67 60 95.477228 hybrid +135_3-3 Q0 MARCO_18_423199837-15 61 95.477227 hybrid +135_3-3 Q0 MARCO_17_861904720-21 62 95.450080 hybrid +135_3-3 Q0 MARCO_11_200342142-3 63 95.422830 hybrid +135_3-3 Q0 MARCO_24_1305946090-1 64 95.416129 hybrid +135_3-3 Q0 MARCO_17_329909081-24 65 95.377979 hybrid +135_3-3 Q0 MARCO_17_861983670-15 66 95.376430 hybrid +135_3-3 Q0 MARCO_52_368117471-4 67 95.373179 hybrid +135_3-3 Q0 MARCO_11_195769229-4 68 95.365129 hybrid +135_3-3 Q0 MARCO_27_1025089163-3 69 95.345779 hybrid +135_3-3 Q0 MARCO_18_4423206561-20 70 95.254880 hybrid +135_3-3 Q0 MARCO_19_184656190-19 71 95.254879 hybrid +135_3-3 Q0 MARCO_17_2376756487-15 72 95.239329 hybrid +135_3-3 Q0 MARCO_17_2377181457-16 73 95.239328 hybrid +135_3-3 Q0 MARCO_17_859726218-23 74 95.239328 hybrid +135_3-3 Q0 MARCO_17_862380314-18 75 95.239327 hybrid +135_3-3 Q0 MARCO_17_862334499-18 76 95.239327 hybrid +135_3-3 Q0 MARCO_19_824981652-16 77 95.239326 hybrid +135_3-3 Q0 MARCO_19_861520195-19 78 95.239326 hybrid +135_3-3 Q0 MARCO_19_864234500-22 79 95.239326 hybrid +135_3-3 Q0 MARCO_19_873156174-13 80 95.239326 hybrid +135_3-3 Q0 MARCO_19_876806883-14 81 95.239325 hybrid +135_3-3 Q0 MARCO_49_754637233-11 82 95.220530 hybrid +135_3-3 Q0 MARCO_50_2804175543-2 83 95.212279 hybrid +135_3-3 Q0 MARCO_17_861983670-13 84 95.196329 hybrid +135_3-3 Q0 MARCO_18_2412080775-27 85 95.191230 hybrid +135_3-3 Q0 MARCO_19_824911294-15 86 95.191229 hybrid +135_3-3 Q0 MARCO_16_2990644681-76 87 95.177546 hybrid +135_3-3 Q0 MARCO_19_108898672-4 88 95.174780 hybrid +135_3-3 Q0 MARCO_11_200332207-3 89 95.124029 hybrid +135_3-3 Q0 MARCO_16_3629296325-30 90 95.115279 hybrid +135_3-3 Q0 MARCO_19_108814423-8 91 95.115029 hybrid +135_3-3 Q0 MARCO_18_3606202302-18 92 95.072180 hybrid +135_3-3 Q0 MARCO_17_329944072-17 93 95.065780 hybrid +135_3-3 Q0 MARCO_17_2368005622-18 94 95.059079 hybrid +135_3-3 Q0 MARCO_01_1122808231-6 95 95.055130 hybrid +135_3-3 Q0 MARCO_01_1122916268-5 96 95.055129 hybrid +135_3-3 Q0 MARCO_01_1122961693-4 97 95.055129 hybrid +135_3-3 Q0 MARCO_01_1122971024-4 98 95.055128 hybrid +135_3-3 Q0 MARCO_20_1323573394-15 99 95.055128 hybrid +135_3-3 Q0 MARCO_20_1323685362-4 100 95.055127 hybrid +135_3-5 Q0 MARCO_52_371953164-8 1 92.800261 hybrid +135_3-5 Q0 MARCO_30_130263933-14 2 92.705679 hybrid +135_3-5 Q0 MARCO_39_1519175279-2 3 92.556293 hybrid +135_3-5 Q0 MARCO_06_412425592-1 4 92.497461 hybrid +135_3-5 Q0 MARCO_31_772556248-29 5 91.727361 hybrid +135_3-5 Q0 MARCO_48_1524676985-1 6 91.674111 hybrid +135_3-5 Q0 MARCO_22_1781560893-1 7 91.574711 hybrid +135_3-5 Q0 MARCO_50_637347493-11 8 91.499033 hybrid +135_3-5 Q0 MARCO_39_1519175279-9 9 91.478422 hybrid +135_3-5 Q0 MARCO_12_1855160157-19 10 91.459311 hybrid +135_3-5 Q0 MARCO_20_110963190-15 11 91.454561 hybrid +135_3-5 Q0 MARCO_22_1781670237-8 12 91.453861 hybrid +135_3-5 Q0 MARCO_57_2412651541-12 13 91.432111 hybrid +135_3-5 Q0 MARCO_31_772556248-30 14 91.424911 hybrid +135_3-5 Q0 MARCO_14_227407182-1 15 91.395811 hybrid +135_3-5 Q0 MARCO_44_222998642-7 16 91.387161 hybrid +135_3-5 Q0 MARCO_08_1752547483-1 17 91.378612 hybrid +135_3-5 Q0 MARCO_34_1297180278-14 18 91.355062 hybrid +135_3-5 Q0 MARCO_24_1225655197-2 19 91.318811 hybrid +135_3-5 Q0 MARCO_29_1687413549-1 20 91.283037 hybrid +135_3-5 Q0 MARCO_50_1573920112-41 21 91.225111 hybrid +135_3-5 Q0 MARCO_44_2007973012-13 22 91.220561 hybrid +135_3-5 Q0 MARCO_33_500617816-14 23 91.184112 hybrid +135_3-5 Q0 MARCO_34_1300146671-1 24 91.163611 hybrid +135_3-5 Q0 MARCO_52_366060656-11 25 91.160761 hybrid +135_3-5 Q0 MARCO_35_440689300-7 26 91.160111 hybrid +135_3-5 Q0 MARCO_31_772556248-26 27 91.118711 hybrid +135_3-5 Q0 MARCO_37_346250766-2 28 91.114101 hybrid +135_3-5 Q0 MARCO_03_793285207-2 29 91.099361 hybrid +135_3-5 Q0 MARCO_56_1633614390-4 30 91.086761 hybrid +135_3-5 Q0 MARCO_37_346201442-3 31 91.082183 hybrid +135_3-5 Q0 MARCO_26_473271913-3 32 91.076362 hybrid +135_3-5 Q0 MARCO_47_367786138-9 33 91.060561 hybrid +135_3-5 Q0 MARCO_24_1385663260-2 34 91.040061 hybrid +135_3-5 Q0 MARCO_50_1877959357-8 35 91.031411 hybrid +135_3-5 Q0 MARCO_50_2522958330-19 36 90.995411 hybrid +135_3-5 Q0 MARCO_22_1781670237-4 37 90.982862 hybrid +135_3-5 Q0 MARCO_04_1072754362-4 38 90.978911 hybrid +135_3-5 Q0 MARCO_20_237121457-3 39 90.964272 hybrid +135_3-5 Q0 MARCO_21_854495536-3 40 90.956262 hybrid +135_3-5 Q0 MARCO_24_1856310815-2 41 90.927711 hybrid +135_3-5 Q0 MARCO_58_962028278-7 42 90.916361 hybrid +135_3-5 Q0 MARCO_37_346233273-2 43 90.910525 hybrid +135_3-5 Q0 MARCO_06_541562863-4 44 90.897061 hybrid +135_3-5 Q0 MARCO_15_1653577440-1 45 90.870761 hybrid +135_3-5 Q0 MARCO_06_1078494775-18 46 90.868261 hybrid +135_3-5 Q0 MARCO_32_1502303439-11 47 90.858061 hybrid +135_3-5 Q0 MARCO_37_346201442-7 48 90.853465 hybrid +135_3-5 Q0 MARCO_31_772556248-11 49 90.849011 hybrid +135_3-5 Q0 MARCO_37_1255441378-2 50 90.842989 hybrid +135_3-5 Q0 MARCO_37_346272606-4 51 90.831074 hybrid +135_3-5 Q0 MARCO_50_1877959357-6 52 90.829361 hybrid +135_3-5 Q0 MARCO_50_1136410439-29 53 90.809311 hybrid +135_3-5 Q0 MARCO_27_127766239-3 54 90.794811 hybrid +135_3-5 Q0 MARCO_07_1012854612-6 55 90.788233 hybrid +135_3-5 Q0 MARCO_07_995026790-2 56 90.780909 hybrid +135_3-5 Q0 MARCO_20_1168709532-7 57 90.769011 hybrid +135_3-5 Q0 MARCO_58_1120006913-1 58 90.761561 hybrid +135_3-5 Q0 MARCO_51_104706229-3 59 90.761511 hybrid +135_3-5 Q0 MARCO_15_526524970-6 60 90.759489 hybrid +135_3-5 Q0 MARCO_31_772556248-24 61 90.749911 hybrid +135_3-5 Q0 MARCO_45_1352603357-9 62 90.749661 hybrid +135_3-5 Q0 MARCO_35_243601670-6 63 90.734661 hybrid +135_3-5 Q0 MARCO_37_346050039-5 64 90.705149 hybrid +135_3-5 Q0 MARCO_30_89583066-5 65 90.683733 hybrid +135_3-5 Q0 MARCO_08_164068813-1 66 90.652995 hybrid +135_3-5 Q0 MARCO_23_435478482-7 67 90.651311 hybrid +135_3-5 Q0 MARCO_00_467390227-28 68 90.647211 hybrid +135_3-5 Q0 MARCO_24_965439749-4 69 90.629961 hybrid +135_3-5 Q0 MARCO_37_346263914-5 70 90.616055 hybrid +135_3-5 Q0 MARCO_50_2523362898-27 71 90.613811 hybrid +135_3-5 Q0 MARCO_22_1781759803-4 72 90.610361 hybrid +135_3-5 Q0 MARCO_41_2134331902-13 73 90.607264 hybrid +135_3-5 Q0 MARCO_37_346132850-31 74 90.606638 hybrid +135_3-5 Q0 MARCO_37_346281506-5 75 90.591105 hybrid +135_3-5 Q0 MARCO_47_1281991175-5 76 90.588831 hybrid +135_3-5 Q0 MARCO_52_362064717-4 77 90.579592 hybrid +135_3-5 Q0 MARCO_37_346292776-5 78 90.563954 hybrid +135_3-5 Q0 MARCO_48_375141315-9 79 90.559921 hybrid +135_3-5 Q0 MARCO_36_866945259-3 80 90.558661 hybrid +135_3-5 Q0 MARCO_22_1781670237-5 81 90.558361 hybrid +135_3-5 Q0 MARCO_21_407960518-7 82 90.549014 hybrid +135_3-5 Q0 MARCO_32_1317345979-7 83 90.542811 hybrid +135_3-5 Q0 MARCO_50_637347493-14 84 90.534009 hybrid +135_3-5 Q0 MARCO_30_441074113-6 85 90.531012 hybrid +135_3-5 Q0 MARCO_25_1446976565-12 86 90.519861 hybrid +135_3-5 Q0 MARCO_32_1317345979-6 87 90.514711 hybrid +135_3-5 Q0 MARCO_12_883945794-3 88 90.512161 hybrid +135_3-5 Q0 MARCO_41_1131093613-4 89 90.506511 hybrid +135_3-5 Q0 MARCO_37_346132850-15 90 90.503202 hybrid +135_3-5 Q0 MARCO_48_13308724-1 91 90.502661 hybrid +135_3-5 Q0 MARCO_25_1381373184-13 92 90.495961 hybrid +135_3-5 Q0 MARCO_36_1755506925-1 93 90.483662 hybrid +135_3-5 Q0 MARCO_52_362126977-10 94 90.479786 hybrid +135_3-5 Q0 MARCO_03_443068025-8 95 90.478952 hybrid +135_3-5 Q0 MARCO_47_1278812055-3 96 90.476809 hybrid +135_3-5 Q0 MARCO_50_2523362898-11 97 90.472811 hybrid +135_3-5 Q0 MARCO_42_255755193-12 98 90.470751 hybrid +135_3-5 Q0 MARCO_29_1476328738-3 99 90.467311 hybrid +135_3-5 Q0 MARCO_19_1808348346-7 100 90.457261 hybrid +135_4-1 Q0 MARCO_13_347035492-6 1 91.858388 hybrid +135_4-1 Q0 MARCO_07_995662392-2 2 91.695000 hybrid +135_4-1 Q0 MARCO_20_27196571-4 3 91.671824 hybrid +135_4-1 Q0 MARCO_21_150922054-8 4 91.656868 hybrid +135_4-1 Q0 MARCO_46_980151156-1 5 91.645588 hybrid +135_4-1 Q0 MARCO_57_2138213254-10 6 91.634586 hybrid +135_4-1 Q0 MARCO_52_363071279-3 7 91.619030 hybrid +135_4-1 Q0 MARCO_20_1169579573-4 8 91.561038 hybrid +135_4-1 Q0 MARCO_06_410500018-4 9 91.556738 hybrid +135_4-1 Q0 MARCO_48_1134296071-3 10 91.554838 hybrid +135_4-1 Q0 MARCO_46_1274376601-2 11 91.524998 hybrid +135_4-1 Q0 MARCO_27_1029245984-1 12 91.464838 hybrid +135_4-1 Q0 MARCO_20_1169267221-4 13 91.457588 hybrid +135_4-1 Q0 MARCO_26_182237572-1 14 91.409888 hybrid +135_4-1 Q0 MARCO_42_162525279-7 15 91.398861 hybrid +135_4-1 Q0 MARCO_52_363796560-2 16 91.350123 hybrid +135_4-1 Q0 MARCO_26_761167713-13 17 91.329838 hybrid +135_4-1 Q0 MARCO_52_1377761263-2 18 91.303967 hybrid +135_4-1 Q0 MARCO_20_1169586367-4 19 91.284389 hybrid +135_4-1 Q0 MARCO_52_1377761263-4 20 91.261776 hybrid +135_4-1 Q0 MARCO_20_27580101-9 21 91.235477 hybrid +135_4-1 Q0 MARCO_58_791781533-6 22 91.226238 hybrid +135_4-1 Q0 MARCO_40_172670674-4 23 91.200306 hybrid +135_4-1 Q0 MARCO_52_540493516-1 24 91.155838 hybrid +135_4-1 Q0 MARCO_21_870421898-3 25 91.105961 hybrid +135_4-1 Q0 MARCO_20_14386868-9 26 91.096916 hybrid +135_4-1 Q0 MARCO_49_1763386157-26 27 91.078339 hybrid +135_4-1 Q0 MARCO_41_560343773-2 28 91.057988 hybrid +135_4-1 Q0 MARCO_00_723791909-3 29 91.048779 hybrid +135_4-1 Q0 MARCO_34_1290406610-3 30 91.046188 hybrid +135_4-1 Q0 MARCO_11_961408998-30 31 91.045088 hybrid +135_4-1 Q0 MARCO_50_2766437432-1 32 91.042838 hybrid +135_4-1 Q0 MARCO_40_739920341-8 33 91.042233 hybrid +135_4-1 Q0 MARCO_20_20299207-4 34 91.009219 hybrid +135_4-1 Q0 MARCO_08_1484380890-4 35 91.008877 hybrid +135_4-1 Q0 MARCO_47_355061654-1 36 91.002138 hybrid +135_4-1 Q0 MARCO_22_1597432905-19 37 90.973906 hybrid +135_4-1 Q0 MARCO_58_791781533-1 38 90.942238 hybrid +135_4-1 Q0 MARCO_40_753328481-4 39 90.937338 hybrid +135_4-1 Q0 MARCO_48_1134570771-3 40 90.934138 hybrid +135_4-1 Q0 MARCO_23_71282232-15 41 90.931889 hybrid +135_4-1 Q0 MARCO_58_791781533-20 42 90.926488 hybrid +135_4-1 Q0 MARCO_09_471550246-2 43 90.916288 hybrid +135_4-1 Q0 MARCO_09_1681136110-3 44 90.901789 hybrid +135_4-1 Q0 MARCO_57_2139188855-11 45 90.894390 hybrid +135_4-1 Q0 MARCO_41_2025017468-12 46 90.873409 hybrid +135_4-1 Q0 MARCO_26_1055585704-1 47 90.869038 hybrid +135_4-1 Q0 MARCO_31_1742094250-2 48 90.860438 hybrid +135_4-1 Q0 MARCO_20_91391445-1 49 90.860338 hybrid +135_4-1 Q0 MARCO_20_20844940-8 50 90.859776 hybrid +135_4-1 Q0 MARCO_41_291543269-8 51 90.851208 hybrid +135_4-1 Q0 MARCO_50_637347493-11 52 90.833088 hybrid +135_4-1 Q0 MARCO_23_944932744-14 53 90.828488 hybrid +135_4-1 Q0 MARCO_40_747906005-1 54 90.824638 hybrid +135_4-1 Q0 MARCO_07_1004844203-3 55 90.821987 hybrid +135_4-1 Q0 MARCO_11_961408998-42 56 90.818638 hybrid +135_4-1 Q0 MARCO_50_1982204942-12 57 90.814449 hybrid +135_4-1 Q0 MARCO_41_2024933693-9 58 90.807957 hybrid +135_4-1 Q0 MARCO_46_1273627867-9 59 90.791706 hybrid +135_4-1 Q0 MARCO_11_1465833397-4 60 90.779064 hybrid +135_4-1 Q0 MARCO_20_31582550-8 61 90.772788 hybrid +135_4-1 Q0 MARCO_39_1427819777-3 62 90.769288 hybrid +135_4-1 Q0 MARCO_52_1377761263-3 63 90.765324 hybrid +135_4-1 Q0 MARCO_52_363099002-2 64 90.758587 hybrid +135_4-1 Q0 MARCO_02_1751367700-4 65 90.757496 hybrid +135_4-1 Q0 MARCO_01_1375279388-1 66 90.754688 hybrid +135_4-1 Q0 MARCO_25_1422733827-3 67 90.754124 hybrid +135_4-1 Q0 MARCO_34_1291512982-16 68 90.752538 hybrid +135_4-1 Q0 MARCO_26_761399992-13 69 90.751538 hybrid +135_4-1 Q0 MARCO_57_1044009515-1 70 90.746488 hybrid +135_4-1 Q0 MARCO_21_148924351-9 71 90.734875 hybrid +135_4-1 Q0 MARCO_01_864961659-6 72 90.733188 hybrid +135_4-1 Q0 MARCO_31_1302201394-1 73 90.731288 hybrid +135_4-1 Q0 MARCO_40_172333049-4 74 90.730198 hybrid +135_4-1 Q0 MARCO_20_122653631-3 75 90.729188 hybrid +135_4-1 Q0 MARCO_46_1271401812-7 76 90.727573 hybrid +135_4-1 Q0 MARCO_52_559174988-5 77 90.726338 hybrid +135_4-1 Q0 MARCO_20_1169369859-6 78 90.724288 hybrid +135_4-1 Q0 MARCO_50_1944085309-13 79 90.721588 hybrid +135_4-1 Q0 MARCO_20_1169579573-3 80 90.720988 hybrid +135_4-1 Q0 MARCO_48_1134296071-6 81 90.719538 hybrid +135_4-1 Q0 MARCO_53_597310389-10 82 90.711288 hybrid +135_4-1 Q0 MARCO_11_961408998-14 83 90.708938 hybrid +135_4-1 Q0 MARCO_09_943027887-5 84 90.706188 hybrid +135_4-1 Q0 MARCO_48_2043815915-1 85 90.701838 hybrid +135_4-1 Q0 MARCO_49_1723427063-1 86 90.700588 hybrid +135_4-1 Q0 MARCO_21_870787348-2 87 90.698170 hybrid +135_4-1 Q0 MARCO_50_2766437432-4 88 90.688066 hybrid +135_4-1 Q0 MARCO_57_1044976195-9 89 90.680688 hybrid +135_4-1 Q0 MARCO_11_220500258-1 90 90.675638 hybrid +135_4-1 Q0 MARCO_07_1046434444-7 91 90.674091 hybrid +135_4-1 Q0 MARCO_11_961408998-2 92 90.665838 hybrid +135_4-1 Q0 MARCO_35_143106296-3 93 90.663288 hybrid +135_4-1 Q0 MARCO_10_1407922961-2 94 90.660888 hybrid +135_4-1 Q0 MARCO_19_1880587922-5 95 90.657688 hybrid +135_4-1 Q0 MARCO_22_1060515534-5 96 90.653378 hybrid +135_4-1 Q0 MARCO_26_295920806-1 97 90.648788 hybrid +135_4-1 Q0 MARCO_11_961408998-10 98 90.646288 hybrid +135_4-1 Q0 MARCO_52_363071279-2 99 90.639462 hybrid +135_4-1 Q0 MARCO_58_791781533-13 100 90.639438 hybrid +136_1-1 Q0 MARCO_11_1511196274-1 1 89.614796 hybrid +136_1-1 Q0 MARCO_42_1359229219-1 2 89.244066 hybrid +136_1-1 Q0 MARCO_04_143999592-1 3 89.211099 hybrid +136_1-1 Q0 MARCO_42_1359229219-2 4 89.198212 hybrid +136_1-1 Q0 MARCO_50_1984649934-1 5 88.982255 hybrid +136_1-1 Q0 MARCO_28_327932163-1 6 88.894366 hybrid +136_1-1 Q0 MARCO_04_148900856-2 7 88.734014 hybrid +136_1-1 Q0 MARCO_04_148900856-3 8 88.670013 hybrid +136_1-1 Q0 MARCO_55_574781674-5 9 88.448029 hybrid +136_1-1 Q0 MARCO_04_148900856-1 10 88.427814 hybrid +136_1-1 Q0 MARCO_03_1700874885-2 11 88.400963 hybrid +136_1-1 Q0 MARCO_50_1432093425-3 12 88.326738 hybrid +136_1-1 Q0 MARCO_50_1984649934-8 13 88.325769 hybrid +136_1-1 Q0 MARCO_00_1401261974-13 14 88.324082 hybrid +136_1-1 Q0 MARCO_50_2733152614-1 15 88.318113 hybrid +136_1-1 Q0 MARCO_06_545026672-1 16 88.318042 hybrid +136_1-1 Q0 MARCO_25_1326583303-30 17 88.299863 hybrid +136_1-1 Q0 MARCO_03_1735103357-1 18 88.285714 hybrid +136_1-1 Q0 MARCO_27_1510298108-4 19 88.277166 hybrid +136_1-1 Q0 MARCO_37_1186545077-11 20 88.272138 hybrid +136_1-1 Q0 MARCO_00_944207367-1 21 88.270041 hybrid +136_1-1 Q0 MARCO_42_1359198610-2 22 88.233923 hybrid +136_1-1 Q0 MARCO_42_1368592926-5 23 88.232468 hybrid +136_1-1 Q0 MARCO_11_1511196274-3 24 88.207492 hybrid +136_1-1 Q0 MARCO_21_1378115203-28 25 88.195276 hybrid +136_1-1 Q0 MARCO_03_1700874885-3 26 88.186714 hybrid +136_1-1 Q0 MARCO_06_322904718-1 27 88.174216 hybrid +136_1-1 Q0 MARCO_50_1984649934-7 28 88.136339 hybrid +136_1-1 Q0 MARCO_10_371249796-4 29 88.102518 hybrid +136_1-1 Q0 MARCO_03_1700874885-4 30 88.094714 hybrid +136_1-1 Q0 MARCO_57_1227170091-2 31 88.081316 hybrid +136_1-1 Q0 MARCO_42_1368592926-1 32 88.070879 hybrid +136_1-1 Q0 MARCO_06_1902336129-1 33 88.051254 hybrid +136_1-1 Q0 KILT_453736-12 34 88.023836 hybrid +136_1-1 Q0 MARCO_06_1615593549-101 35 88.005075 hybrid +136_1-1 Q0 KILT_5530-9 36 87.987314 hybrid +136_1-1 Q0 MARCO_55_584368262-5 37 87.976113 hybrid +136_1-1 Q0 MARCO_55_571956134-6 38 87.966895 hybrid +136_1-1 Q0 MARCO_34_1748142224-1 39 87.966864 hybrid +136_1-1 Q0 MARCO_04_862540121-8 40 87.930002 hybrid +136_1-1 Q0 MARCO_56_1033634981-19 41 87.911231 hybrid +136_1-1 Q0 MARCO_03_1735103357-2 42 87.889413 hybrid +136_1-1 Q0 MARCO_16_4159902144-16 43 87.872903 hybrid +136_1-1 Q0 MARCO_03_1463867408-17 44 87.871314 hybrid +136_1-1 Q0 MARCO_06_1616419714-10 45 87.854478 hybrid +136_1-1 Q0 MARCO_50_1411564432-30 46 87.852891 hybrid +136_1-1 Q0 MARCO_12_1247075937-1 47 87.834464 hybrid +136_1-1 Q0 MARCO_50_1984649934-6 48 87.832727 hybrid +136_1-1 Q0 MARCO_50_2128988370-45 49 87.831163 hybrid +136_1-1 Q0 MARCO_06_1616419714-20 50 87.824564 hybrid +136_1-1 Q0 MARCO_03_1716381201-3 51 87.805113 hybrid +136_1-1 Q0 MARCO_26_899502779-1 52 87.804564 hybrid +136_1-1 Q0 MARCO_03_1700874885-5 53 87.802214 hybrid +136_1-1 Q0 MARCO_05_424740033-34 54 87.778757 hybrid +136_1-1 Q0 KILT_80128-12 55 87.760576 hybrid +136_1-1 Q0 MARCO_03_1463867408-10 56 87.756814 hybrid +136_1-1 Q0 MARCO_14_1526002240-94 57 87.748529 hybrid +136_1-1 Q0 MARCO_09_970603565-11 58 87.735764 hybrid +136_1-1 Q0 MARCO_00_944207367-2 59 87.735483 hybrid +136_1-1 Q0 MARCO_21_1378115203-19 60 87.720036 hybrid +136_1-1 Q0 MARCO_27_1510298108-3 61 87.716133 hybrid +136_1-1 Q0 MARCO_41_1361850806-2 62 87.715501 hybrid +136_1-1 Q0 MARCO_03_1463867408-16 63 87.713414 hybrid +136_1-1 Q0 MARCO_26_899502779-3 64 87.708163 hybrid +136_1-1 Q0 MARCO_19_235748733-4 65 87.697893 hybrid +136_1-1 Q0 MARCO_03_1463867408-1 66 87.697864 hybrid +136_1-1 Q0 MARCO_21_1378115203-23 67 87.686914 hybrid +136_1-1 Q0 MARCO_52_1329623511-4 68 87.683298 hybrid +136_1-1 Q0 MARCO_08_724172429-1 69 87.682814 hybrid +136_1-1 Q0 MARCO_06_545026672-3 70 87.677414 hybrid +136_1-1 Q0 MARCO_21_1378115203-25 71 87.671873 hybrid +136_1-1 Q0 MARCO_02_1884606143-1 72 87.661213 hybrid +136_1-1 Q0 MARCO_38_1380005313-1 73 87.661213 hybrid +136_1-1 Q0 MARCO_46_456960792-1 74 87.653063 hybrid +136_1-1 Q0 MARCO_06_1616419714-8 75 87.637994 hybrid +136_1-1 Q0 MARCO_36_967030024-1 76 87.634764 hybrid +136_1-1 Q0 MARCO_43_1280563415-23 77 87.632070 hybrid +136_1-1 Q0 MARCO_41_1361850806-44 78 87.631593 hybrid +136_1-1 Q0 MARCO_27_47894695-8 79 87.625013 hybrid +136_1-1 Q0 MARCO_16_1664628160-4 80 87.617173 hybrid +136_1-1 Q0 MARCO_50_1984649934-3 81 87.610445 hybrid +136_1-1 Q0 MARCO_09_970603565-6 82 87.608213 hybrid +136_1-1 Q0 MARCO_41_1361850806-13 83 87.607080 hybrid +136_1-1 Q0 MARCO_03_1463867408-9 84 87.602314 hybrid +136_1-1 Q0 MARCO_39_615043672-2 85 87.600297 hybrid +136_1-1 Q0 MARCO_41_1361850806-29 86 87.591218 hybrid +136_1-1 Q0 MARCO_19_235748733-8 87 87.590000 hybrid +136_1-1 Q0 MARCO_14_1388732263-45 88 87.588664 hybrid +136_1-1 Q0 MARCO_19_265183945-4 89 87.586671 hybrid +136_1-1 Q0 MARCO_06_1615593549-87 90 87.581682 hybrid +136_1-1 Q0 MARCO_39_872301398-1 91 87.579363 hybrid +136_1-1 Q0 MARCO_19_235748733-6 92 87.578536 hybrid +136_1-1 Q0 MARCO_55_596564721-6 93 87.577613 hybrid +136_1-1 Q0 MARCO_39_1711990001-1 94 87.576764 hybrid +136_1-1 Q0 MARCO_03_1463867408-13 95 87.576663 hybrid +136_1-1 Q0 MARCO_50_1432093425-1 96 87.569532 hybrid +136_1-1 Q0 MARCO_42_1368592926-9 97 87.562456 hybrid +136_1-1 Q0 MARCO_06_1616419714-4 98 87.559274 hybrid +136_1-1 Q0 MARCO_09_970001729-9 99 87.557864 hybrid +136_1-1 Q0 MARCO_34_1720669955-2 100 87.546629 hybrid +136_1-11 Q0 MARCO_03_1735103357-1 1 91.475518 hybrid +136_1-11 Q0 MARCO_00_1377517146-1 2 91.384418 hybrid +136_1-11 Q0 MARCO_09_970603565-11 3 91.233719 hybrid +136_1-11 Q0 MARCO_26_899502779-3 4 91.004119 hybrid +136_1-11 Q0 MARCO_03_1700874885-2 5 90.891668 hybrid +136_1-11 Q0 MARCO_04_148900856-3 6 90.830368 hybrid +136_1-11 Q0 MARCO_00_4158519-1 7 90.579819 hybrid +136_1-11 Q0 MARCO_13_818635228-1 8 90.458468 hybrid +136_1-11 Q0 MARCO_12_1247075937-19 9 90.414868 hybrid +136_1-11 Q0 MARCO_08_724172429-1 10 90.309968 hybrid +136_1-11 Q0 MARCO_03_1700874885-1 11 90.278869 hybrid +136_1-11 Q0 MARCO_10_371249796-5 12 90.184166 hybrid +136_1-11 Q0 MARCO_06_1902336129-1 13 90.138427 hybrid +136_1-11 Q0 MARCO_56_1033634981-19 14 90.138350 hybrid +136_1-11 Q0 MARCO_04_148900856-1 15 90.058918 hybrid +136_1-11 Q0 MARCO_49_431849652-1 16 90.044318 hybrid +136_1-11 Q0 MARCO_42_1359229219-1 17 90.019270 hybrid +136_1-11 Q0 MARCO_03_1735103357-4 18 89.982018 hybrid +136_1-11 Q0 MARCO_06_322904718-1 19 89.964485 hybrid +136_1-11 Q0 MARCO_17_1218153622-5 20 89.896118 hybrid +136_1-11 Q0 MARCO_26_1765545586-1 21 89.886819 hybrid +136_1-11 Q0 MARCO_03_1700874885-6 22 89.867469 hybrid +136_1-11 Q0 MARCO_20_948625899-2 23 89.834568 hybrid +136_1-11 Q0 MARCO_12_1247075937-1 24 89.810318 hybrid +136_1-11 Q0 MARCO_50_2128988370-15 25 89.788918 hybrid +136_1-11 Q0 MARCO_50_963931292-37 26 89.771568 hybrid +136_1-11 Q0 MARCO_03_1700874885-5 27 89.757069 hybrid +136_1-11 Q0 MARCO_12_1247075937-6 28 89.742918 hybrid +136_1-11 Q0 KILT_41730508-1 29 89.695580 hybrid +136_1-11 Q0 MARCO_04_3998593-1 30 89.675069 hybrid +136_1-11 Q0 MARCO_46_456960792-1 31 89.671168 hybrid +136_1-11 Q0 MARCO_04_148900856-2 32 89.663218 hybrid +136_1-11 Q0 MARCO_34_1748142224-1 33 89.660769 hybrid +136_1-11 Q0 MARCO_26_899502779-4 34 89.647268 hybrid +136_1-11 Q0 MARCO_02_674006859-2 35 89.646519 hybrid +136_1-11 Q0 MARCO_27_55279422-14 36 89.635919 hybrid +136_1-11 Q0 MARCO_40_1700476514-1 37 89.622568 hybrid +136_1-11 Q0 MARCO_03_1700874885-4 38 89.563318 hybrid +136_1-11 Q0 MARCO_06_638445323-5 39 89.542169 hybrid +136_1-11 Q0 MARCO_39_872075643-1 40 89.531718 hybrid +136_1-11 Q0 MARCO_42_1359229219-6 41 89.525963 hybrid +136_1-11 Q0 MARCO_48_1187831782-8 42 89.522831 hybrid +136_1-11 Q0 MARCO_03_1735103357-2 43 89.466819 hybrid +136_1-11 Q0 MARCO_09_970603565-6 44 89.452218 hybrid +136_1-11 Q0 MARCO_33_178546655-41 45 89.439015 hybrid +136_1-11 Q0 MARCO_57_884445217-19 46 89.427519 hybrid +136_1-11 Q0 MARCO_09_970603565-4 47 89.401918 hybrid +136_1-11 Q0 MARCO_31_574448546-1 48 89.382118 hybrid +136_1-11 Q0 MARCO_38_1349998578-1 49 89.375918 hybrid +136_1-11 Q0 MARCO_02_627068903-10 50 89.367019 hybrid +136_1-11 Q0 MARCO_09_970603565-5 51 89.366069 hybrid +136_1-11 Q0 MARCO_08_1023669874-1 52 89.361568 hybrid +136_1-11 Q0 MARCO_12_1247075937-12 53 89.338868 hybrid +136_1-11 Q0 MARCO_03_1700874885-3 54 89.333868 hybrid +136_1-11 Q0 MARCO_21_1378115203-28 55 89.333075 hybrid +136_1-11 Q0 MARCO_26_1593056442-17 56 89.330668 hybrid +136_1-11 Q0 MARCO_36_967030024-1 57 89.328669 hybrid +136_1-11 Q0 MARCO_56_1150902301-11 58 89.302568 hybrid +136_1-11 Q0 MARCO_12_1247075937-11 59 89.276419 hybrid +136_1-11 Q0 MARCO_42_1359229219-2 60 89.263655 hybrid +136_1-11 Q0 MARCO_50_2128988370-63 61 89.210669 hybrid +136_1-11 Q0 MARCO_55_584368262-5 62 89.188568 hybrid +136_1-11 Q0 MARCO_04_232079116-1 63 89.187618 hybrid +136_1-11 Q0 MARCO_03_735734322-2 64 89.177618 hybrid +136_1-11 Q0 MARCO_11_1511196274-1 65 89.160711 hybrid +136_1-11 Q0 MARCO_33_471997422-1 66 89.155418 hybrid +136_1-11 Q0 MARCO_05_348175078-2 67 89.148768 hybrid +136_1-11 Q0 MARCO_14_1388732263-36 68 89.108019 hybrid +136_1-11 Q0 MARCO_27_47894695-8 69 89.097018 hybrid +136_1-11 Q0 MARCO_04_205773472-2 70 89.096918 hybrid +136_1-11 Q0 MARCO_09_970001729-7 71 89.075719 hybrid +136_1-11 Q0 MARCO_41_1361850806-19 72 89.075247 hybrid +136_1-11 Q0 MARCO_12_1247075937-4 73 89.075118 hybrid +136_1-11 Q0 MARCO_26_1892461340-4 74 89.066468 hybrid +136_1-11 Q0 MARCO_35_1736112880-1 75 89.040718 hybrid +136_1-11 Q0 MARCO_39_1711990001-1 76 89.026169 hybrid +136_1-11 Q0 MARCO_05_889833490-5 77 89.017569 hybrid +136_1-11 Q0 MARCO_11_1511196274-3 78 89.013272 hybrid +136_1-11 Q0 MARCO_21_1378115203-25 79 89.010112 hybrid +136_1-11 Q0 MARCO_14_1388732263-41 80 89.009668 hybrid +136_1-11 Q0 KILT_47279701-3 81 88.996819 hybrid +136_1-11 Q0 MARCO_50_2128988370-45 82 88.989569 hybrid +136_1-11 Q0 MARCO_03_1463867408-15 83 88.982119 hybrid +136_1-11 Q0 MARCO_10_1410354272-7 84 88.975968 hybrid +136_1-11 Q0 KILT_71908-39 85 88.974619 hybrid +136_1-11 Q0 MARCO_19_611783145-1 86 88.966619 hybrid +136_1-11 Q0 MARCO_03_1716381201-3 87 88.963569 hybrid +136_1-11 Q0 MARCO_48_1187831782-4 88 88.959568 hybrid +136_1-11 Q0 MARCO_50_2128988370-58 89 88.959517 hybrid +136_1-11 Q0 MARCO_07_372252911-24 90 88.957818 hybrid +136_1-11 Q0 MARCO_03_1769290929-2 91 88.955069 hybrid +136_1-11 Q0 MARCO_18_1822202480-12 92 88.954692 hybrid +136_1-11 Q0 MARCO_50_2366457832-36 93 88.950068 hybrid +136_1-11 Q0 MARCO_30_367328370-1 94 88.940819 hybrid +136_1-11 Q0 MARCO_03_1463867408-16 95 88.932419 hybrid +136_1-11 Q0 MARCO_17_2458045526-12 96 88.932118 hybrid +136_1-11 Q0 MARCO_13_737502139-2 97 88.928699 hybrid +136_1-11 Q0 MARCO_34_1750164296-1 98 88.927268 hybrid +136_1-11 Q0 KILT_243541-1 99 88.910419 hybrid +136_1-11 Q0 MARCO_18_828833700-59 100 88.906569 hybrid +136_1-13 Q0 MARCO_42_1367967096-1 1 95.434428 hybrid +136_1-13 Q0 MARCO_06_1601700563-2 2 95.033267 hybrid +136_1-13 Q0 MARCO_39_618236320-17 3 94.768817 hybrid +136_1-13 Q0 MARCO_06_1605036905-4 4 94.761129 hybrid +136_1-13 Q0 MARCO_11_1511196274-3 5 94.614573 hybrid +136_1-13 Q0 MARCO_11_1511196274-1 6 94.609897 hybrid +136_1-13 Q0 MARCO_06_1902336129-1 7 94.443072 hybrid +136_1-13 Q0 MARCO_14_1007513464-1 8 94.356397 hybrid +136_1-13 Q0 MARCO_03_1700874885-2 9 94.298697 hybrid +136_1-13 Q0 MARCO_04_143999592-1 10 94.274473 hybrid +136_1-13 Q0 MARCO_28_327932163-1 11 94.004562 hybrid +136_1-13 Q0 MARCO_06_545026672-1 12 93.973219 hybrid +136_1-13 Q0 MARCO_50_1984649934-1 13 93.964740 hybrid +136_1-13 Q0 MARCO_39_615043672-1 14 93.941454 hybrid +136_1-13 Q0 MARCO_42_1368592926-5 15 93.940990 hybrid +136_1-13 Q0 MARCO_04_148900856-3 16 93.855997 hybrid +136_1-13 Q0 MARCO_37_1186529676-5 17 93.768032 hybrid +136_1-13 Q0 MARCO_42_1359229219-1 18 93.763708 hybrid +136_1-13 Q0 MARCO_21_1378115203-25 19 93.613194 hybrid +136_1-13 Q0 MARCO_21_1376381125-19 20 93.595688 hybrid +136_1-13 Q0 MARCO_00_944207367-1 21 93.565724 hybrid +136_1-13 Q0 MARCO_04_148900856-2 22 93.522496 hybrid +136_1-13 Q0 MARCO_37_1186529676-12 23 93.460540 hybrid +136_1-13 Q0 MARCO_03_1700874885-4 24 93.455947 hybrid +136_1-13 Q0 KILT_52382-40 25 93.450646 hybrid +136_1-13 Q0 MARCO_14_1007513464-3 26 93.411047 hybrid +136_1-13 Q0 MARCO_06_1902336129-2 27 93.386576 hybrid +136_1-13 Q0 MARCO_19_611783145-47 28 93.380197 hybrid +136_1-13 Q0 MARCO_50_963931292-37 29 93.348396 hybrid +136_1-13 Q0 MARCO_10_831411560-2 30 93.337542 hybrid +136_1-13 Q0 MARCO_48_624451421-3 31 93.324034 hybrid +136_1-13 Q0 MARCO_05_348185786-1 32 93.310846 hybrid +136_1-13 Q0 MARCO_48_623265237-2 33 93.280513 hybrid +136_1-13 Q0 MARCO_42_1367221250-7 34 93.279593 hybrid +136_1-13 Q0 MARCO_44_496588507-5 35 93.242076 hybrid +136_1-13 Q0 MARCO_05_348175078-1 36 93.188447 hybrid +136_1-13 Q0 MARCO_06_322904718-1 37 93.113607 hybrid +136_1-13 Q0 MARCO_11_111437456-1 38 93.054947 hybrid +136_1-13 Q0 MARCO_04_865649090-20 39 93.050810 hybrid +136_1-13 Q0 MARCO_42_1359201370-6 40 92.994756 hybrid +136_1-13 Q0 MARCO_06_1616419714-19 41 92.989370 hybrid +136_1-13 Q0 MARCO_09_970603565-6 42 92.980547 hybrid +136_1-13 Q0 MARCO_42_1368592926-10 43 92.959808 hybrid +136_1-13 Q0 MARCO_21_1378115203-1 44 92.948217 hybrid +136_1-13 Q0 MARCO_03_1735103357-1 45 92.933097 hybrid +136_1-13 Q0 MARCO_34_1720669955-2 46 92.909059 hybrid +136_1-13 Q0 MARCO_05_629335936-12 47 92.908647 hybrid +136_1-13 Q0 MARCO_03_1463867408-16 48 92.883547 hybrid +136_1-13 Q0 MARCO_04_497201-1 49 92.866197 hybrid +136_1-13 Q0 MARCO_30_310002268-1 50 92.851747 hybrid +136_1-13 Q0 MARCO_43_1280563415-23 51 92.809187 hybrid +136_1-13 Q0 MARCO_06_545026672-3 52 92.799485 hybrid +136_1-13 Q0 MARCO_02_1884606143-1 53 92.791897 hybrid +136_1-13 Q0 MARCO_00_661672852-8 54 92.767515 hybrid +136_1-13 Q0 MARCO_03_1735103357-2 55 92.758146 hybrid +136_1-13 Q0 MARCO_07_536012807-4 56 92.755285 hybrid +136_1-13 Q0 MARCO_50_2128988370-45 57 92.754597 hybrid +136_1-13 Q0 MARCO_48_624451421-2 58 92.754289 hybrid +136_1-13 Q0 MARCO_06_1616419714-4 59 92.745199 hybrid +136_1-13 Q0 MARCO_03_1463867408-10 60 92.740497 hybrid +136_1-13 Q0 MARCO_42_1368592926-1 61 92.736230 hybrid +136_1-13 Q0 MARCO_50_1508368359-30 62 92.714415 hybrid +136_1-13 Q0 MARCO_06_1604749305-2 63 92.706364 hybrid +136_1-13 Q0 MARCO_39_1711990001-1 64 92.701946 hybrid +136_1-13 Q0 MARCO_17_2965797191-2 65 92.692930 hybrid +136_1-13 Q0 MARCO_39_615043672-2 66 92.690825 hybrid +136_1-13 Q0 MARCO_50_2128988370-70 67 92.690697 hybrid +136_1-13 Q0 MARCO_38_1380005313-1 68 92.687547 hybrid +136_1-13 Q0 MARCO_21_1378115203-19 69 92.674302 hybrid +136_1-13 Q0 MARCO_42_1367674026-3 70 92.671049 hybrid +136_1-13 Q0 MARCO_50_1481982535-85 71 92.670047 hybrid +136_1-13 Q0 MARCO_54_811879338-1 72 92.657347 hybrid +136_1-13 Q0 MARCO_12_1247075937-1 73 92.653996 hybrid +136_1-13 Q0 MARCO_42_1367967096-6 74 92.641867 hybrid +136_1-13 Q0 MARCO_18_1301359057-26 75 92.635481 hybrid +136_1-13 Q0 MARCO_06_1604749305-1 76 92.630277 hybrid +136_1-13 Q0 MARCO_21_1378115203-28 77 92.629301 hybrid +136_1-13 Q0 MARCO_21_1378115203-27 78 92.623075 hybrid +136_1-13 Q0 MARCO_04_865649090-2 79 92.613167 hybrid +136_1-13 Q0 MARCO_50_1984649934-6 80 92.608854 hybrid +136_1-13 Q0 MARCO_03_1700874885-3 81 92.590596 hybrid +136_1-13 Q0 MARCO_07_544552818-85 82 92.586437 hybrid +136_1-13 Q0 MARCO_50_1432093425-3 83 92.584842 hybrid +136_1-13 Q0 MARCO_09_970001729-1 84 92.584797 hybrid +136_1-13 Q0 MARCO_03_1463867408-9 85 92.573347 hybrid +136_1-13 Q0 MARCO_37_1186545077-10 86 92.558340 hybrid +136_1-13 Q0 MARCO_07_536012807-29 87 92.558134 hybrid +136_1-13 Q0 MARCO_03_1463867408-14 88 92.557696 hybrid +136_1-13 Q0 MARCO_34_1748142224-1 89 92.550797 hybrid +136_1-13 Q0 MARCO_58_1731712325-3 90 92.550121 hybrid +136_1-13 Q0 MARCO_50_1984649934-8 91 92.549360 hybrid +136_1-13 Q0 MARCO_26_1835738965-180 92 92.527288 hybrid +136_1-13 Q0 MARCO_50_1984649934-7 93 92.525862 hybrid +136_1-13 Q0 MARCO_00_60617304-1 94 92.521397 hybrid +136_1-13 Q0 MARCO_50_2733152614-2 95 92.516597 hybrid +136_1-13 Q0 MARCO_12_1247075937-6 96 92.515547 hybrid +136_1-13 Q0 MARCO_42_1359229219-6 97 92.509997 hybrid +136_1-13 Q0 MARCO_09_970603565-12 98 92.505897 hybrid +136_1-13 Q0 MARCO_17_45796309-1 99 92.498796 hybrid +136_1-13 Q0 MARCO_10_1410354272-7 100 92.496647 hybrid +136_1-3 Q0 MARCO_50_2128988370-50 1 94.321988 hybrid +136_1-3 Q0 MARCO_34_1748142224-2 2 93.656438 hybrid +136_1-3 Q0 MARCO_14_1388732263-5 3 93.625238 hybrid +136_1-3 Q0 MARCO_19_235748733-3 4 93.601328 hybrid +136_1-3 Q0 MARCO_42_1359229219-1 5 93.518936 hybrid +136_1-3 Q0 MARCO_04_473062102-4 6 93.445538 hybrid +136_1-3 Q0 MARCO_56_806901575-3 7 93.045838 hybrid +136_1-3 Q0 MARCO_03_1463867408-1 8 93.010038 hybrid +136_1-3 Q0 MARCO_42_1368592926-2 9 92.999200 hybrid +136_1-3 Q0 MARCO_17_1205403697-1 10 92.855688 hybrid +136_1-3 Q0 MARCO_02_1884620640-8 11 92.758438 hybrid +136_1-3 Q0 KILT_11585744-3 12 92.517038 hybrid +136_1-3 Q0 MARCO_37_1164698626-69 13 92.470438 hybrid +136_1-3 Q0 KILT_453736-5 14 92.452504 hybrid +136_1-3 Q0 MARCO_06_1615593549-25 15 92.436528 hybrid +136_1-3 Q0 MARCO_50_2128988370-45 16 92.416538 hybrid +136_1-3 Q0 KILT_568270-4 17 92.396838 hybrid +136_1-3 Q0 MARCO_05_629335936-2 18 92.360488 hybrid +136_1-3 Q0 KILT_24245304-18 19 92.312038 hybrid +136_1-3 Q0 MARCO_27_47894695-8 20 92.256188 hybrid +136_1-3 Q0 MARCO_06_1615593549-44 21 92.235469 hybrid +136_1-3 Q0 MARCO_17_2892192733-3 22 92.201175 hybrid +136_1-3 Q0 MARCO_09_970001729-4 23 92.138188 hybrid +136_1-3 Q0 MARCO_34_1748142224-4 24 92.125788 hybrid +136_1-3 Q0 MARCO_02_1884620640-4 25 92.118038 hybrid +136_1-3 Q0 MARCO_50_2128988370-46 26 92.107638 hybrid +136_1-3 Q0 MARCO_06_1615593549-27 27 92.028770 hybrid +136_1-3 Q0 MARCO_19_235748733-4 28 92.026350 hybrid +136_1-3 Q0 MARCO_09_970603565-12 29 92.014738 hybrid +136_1-3 Q0 MARCO_50_2311952398-34 30 91.877588 hybrid +136_1-3 Q0 MARCO_42_1368592926-4 31 91.848040 hybrid +136_1-3 Q0 KILT_710254-1 32 91.781088 hybrid +136_1-3 Q0 MARCO_09_970001729-5 33 91.768938 hybrid +136_1-3 Q0 MARCO_03_1700874885-3 34 91.753688 hybrid +136_1-3 Q0 MARCO_11_956172960-2 35 91.686838 hybrid +136_1-3 Q0 MARCO_18_8652746-20 36 91.673388 hybrid +136_1-3 Q0 MARCO_27_52816716-21 37 91.536088 hybrid +136_1-3 Q0 KILT_870611-1 38 91.521138 hybrid +136_1-3 Q0 MARCO_38_1349998578-1 39 91.465338 hybrid +136_1-3 Q0 MARCO_29_95113102-4 40 91.350188 hybrid +136_1-3 Q0 MARCO_26_1635027659-20 41 91.327888 hybrid +136_1-3 Q0 MARCO_36_1487174364-2 42 91.313788 hybrid +136_1-3 Q0 MARCO_56_806901575-2 43 91.273988 hybrid +136_1-3 Q0 MARCO_06_1615593549-62 44 91.243463 hybrid +136_1-3 Q0 MARCO_36_967030024-1 45 91.218788 hybrid +136_1-3 Q0 MARCO_34_1749575110-10 46 91.124238 hybrid +136_1-3 Q0 MARCO_39_618236320-16 47 91.113792 hybrid +136_1-3 Q0 MARCO_34_1748142224-1 48 91.063038 hybrid +136_1-3 Q0 KILT_52382-1 49 90.997238 hybrid +136_1-3 Q0 KILT_47279701-3 50 90.966188 hybrid +136_1-3 Q0 MARCO_00_1254173326-28 51 90.935238 hybrid +136_1-3 Q0 MARCO_10_1410354272-7 52 90.857188 hybrid +136_1-3 Q0 MARCO_26_890532852-3 53 90.842588 hybrid +136_1-3 Q0 MARCO_09_642893079-2 54 90.834988 hybrid +136_1-3 Q0 MARCO_04_148900856-2 55 90.785788 hybrid +136_1-3 Q0 MARCO_03_1735103357-2 56 90.775588 hybrid +136_1-3 Q0 MARCO_06_1605969875-3 57 90.749402 hybrid +136_1-3 Q0 MARCO_42_1356018583-1 58 90.744088 hybrid +136_1-3 Q0 MARCO_00_1254173326-1 59 90.740988 hybrid +136_1-3 Q0 MARCO_56_806901575-4 60 90.723438 hybrid +136_1-3 Q0 MARCO_48_1187831782-4 61 90.683488 hybrid +136_1-3 Q0 MARCO_11_1511196274-1 62 90.631365 hybrid +136_1-3 Q0 KILT_52382-4 63 90.627438 hybrid +136_1-3 Q0 MARCO_03_1735103357-1 64 90.622638 hybrid +136_1-3 Q0 MARCO_27_52816716-20 65 90.613088 hybrid +136_1-3 Q0 MARCO_51_116973976-2 66 90.598001 hybrid +136_1-3 Q0 MARCO_35_294734421-10 67 90.563188 hybrid +136_1-3 Q0 MARCO_06_1615593549-76 68 90.477639 hybrid +136_1-3 Q0 MARCO_42_1367674026-3 69 90.475364 hybrid +136_1-3 Q0 MARCO_57_173176140-2 70 90.469688 hybrid +136_1-3 Q0 MARCO_04_148900856-1 71 90.462888 hybrid +136_1-3 Q0 MARCO_00_944207367-1 72 90.434810 hybrid +136_1-3 Q0 MARCO_08_478922317-5 73 90.423988 hybrid +136_1-3 Q0 MARCO_17_2937676008-6 74 90.406888 hybrid +136_1-3 Q0 MARCO_04_1094368859-2 75 90.400838 hybrid +136_1-3 Q0 MARCO_06_322904718-1 76 90.384215 hybrid +136_1-3 Q0 MARCO_46_456960792-21 77 90.367238 hybrid +136_1-3 Q0 MARCO_14_1388732263-37 78 90.345238 hybrid +136_1-3 Q0 MARCO_39_872301398-1 79 90.339588 hybrid +136_1-3 Q0 KILT_40609-1 80 90.322338 hybrid +136_1-3 Q0 MARCO_18_2708092426-50 81 90.313438 hybrid +136_1-3 Q0 KILT_587880-2 82 90.308288 hybrid +136_1-3 Q0 MARCO_00_1201327383-3 83 90.289188 hybrid +136_1-3 Q0 MARCO_23_672010598-11 84 90.256188 hybrid +136_1-3 Q0 MARCO_09_970603565-1 85 90.245988 hybrid +136_1-3 Q0 MARCO_09_970001729-8 86 90.228138 hybrid +136_1-3 Q0 KILT_19283898-48 87 90.221838 hybrid +136_1-3 Q0 MARCO_27_1281136783-1 88 90.191688 hybrid +136_1-3 Q0 MARCO_31_1434204145-6 89 90.151805 hybrid +136_1-3 Q0 MARCO_57_1227170091-2 90 90.132961 hybrid +136_1-3 Q0 MARCO_42_1353177934-3 91 90.116638 hybrid +136_1-3 Q0 MARCO_03_1254859519-2 92 90.114588 hybrid +136_1-3 Q0 MARCO_57_59875912-1 93 90.104638 hybrid +136_1-3 Q0 MARCO_55_584368262-1 94 90.079288 hybrid +136_1-3 Q0 MARCO_42_1340957513-1 95 90.066338 hybrid +136_1-3 Q0 MARCO_01_458481901-57 96 90.063738 hybrid +136_1-3 Q0 MARCO_02_337202498-56 97 90.063737 hybrid +136_1-3 Q0 MARCO_09_970001729-1 98 90.052788 hybrid +136_1-3 Q0 KILT_19136337-3 99 90.049488 hybrid +136_1-3 Q0 MARCO_19_612130340-1 100 90.023588 hybrid +136_1-5 Q0 MARCO_02_1884606143-4 1 93.492602 hybrid +136_1-5 Q0 MARCO_06_1615593549-127 2 93.233584 hybrid +136_1-5 Q0 MARCO_17_2959044550-12 3 93.135076 hybrid +136_1-5 Q0 MARCO_42_1368592926-4 4 93.022319 hybrid +136_1-5 Q0 MARCO_05_424740033-13 5 92.355229 hybrid +136_1-5 Q0 KILT_453736-5 6 92.150782 hybrid +136_1-5 Q0 MARCO_06_1615593549-126 7 92.034210 hybrid +136_1-5 Q0 MARCO_05_629335936-5 8 91.939802 hybrid +136_1-5 Q0 MARCO_39_872301398-1 9 91.864153 hybrid +136_1-5 Q0 MARCO_04_473062102-11 10 91.807352 hybrid +136_1-5 Q0 MARCO_42_1359229219-1 11 91.698496 hybrid +136_1-5 Q0 MARCO_21_1378115203-26 12 91.562397 hybrid +136_1-5 Q0 MARCO_06_1615593549-26 13 91.535520 hybrid +136_1-5 Q0 MARCO_06_1615593549-112 14 91.510778 hybrid +136_1-5 Q0 MARCO_05_424740033-46 15 91.369890 hybrid +136_1-5 Q0 MARCO_38_1380005313-1 16 91.345053 hybrid +136_1-5 Q0 MARCO_00_944207367-1 17 91.331430 hybrid +136_1-5 Q0 MARCO_06_545026672-5 18 91.293827 hybrid +136_1-5 Q0 MARCO_06_1615593549-102 19 91.285338 hybrid +136_1-5 Q0 MARCO_56_806901575-7 20 91.218653 hybrid +136_1-5 Q0 MARCO_42_1368592926-5 21 91.205928 hybrid +136_1-5 Q0 MARCO_21_1378115203-25 22 91.064315 hybrid +136_1-5 Q0 MARCO_40_1318441471-1 23 91.001653 hybrid +136_1-5 Q0 MARCO_06_1615538550-11 24 91.000347 hybrid +136_1-5 Q0 MARCO_06_1615593549-16 25 91.000347 hybrid +136_1-5 Q0 MARCO_05_424740033-19 26 90.807464 hybrid +136_1-5 Q0 MARCO_42_1359229219-3 27 90.703243 hybrid +136_1-5 Q0 KILT_179342-6 28 90.638500 hybrid +136_1-5 Q0 MARCO_26_1632560028-2 29 90.576053 hybrid +136_1-5 Q0 MARCO_06_545026672-1 30 90.552601 hybrid +136_1-5 Q0 MARCO_04_473062102-4 31 90.513252 hybrid +136_1-5 Q0 MARCO_06_1615538550-25 32 90.508524 hybrid +136_1-5 Q0 MARCO_06_1615538550-14 33 90.475427 hybrid +136_1-5 Q0 KILT_14458938-48 34 90.460503 hybrid +136_1-5 Q0 MARCO_27_52816716-21 35 90.454602 hybrid +136_1-5 Q0 MARCO_34_1748142224-2 36 90.427853 hybrid +136_1-5 Q0 MARCO_06_1615538550-30 37 90.427792 hybrid +136_1-5 Q0 MARCO_48_624451421-2 38 90.396211 hybrid +136_1-5 Q0 MARCO_03_1700874885-4 39 90.348103 hybrid +136_1-5 Q0 MARCO_42_1368592926-2 40 90.330510 hybrid +136_1-5 Q0 MARCO_01_14497761-1 41 90.329352 hybrid +136_1-5 Q0 MARCO_45_1217815366-5 42 90.319653 hybrid +136_1-5 Q0 MARCO_05_336914225-5 43 90.311202 hybrid +136_1-5 Q0 MARCO_03_1463867408-6 44 90.306402 hybrid +136_1-5 Q0 MARCO_06_1615593549-118 45 90.302072 hybrid +136_1-5 Q0 MARCO_08_478922317-20 46 90.299152 hybrid +136_1-5 Q0 MARCO_50_2128988370-68 47 90.296203 hybrid +136_1-5 Q0 MARCO_50_2128988370-10 48 90.282103 hybrid +136_1-5 Q0 MARCO_11_1511196274-4 49 90.279557 hybrid +136_1-5 Q0 MARCO_50_2128988370-50 50 90.271052 hybrid +136_1-5 Q0 MARCO_42_1340949625-2 51 90.260853 hybrid +136_1-5 Q0 MARCO_27_52816716-9 52 90.256152 hybrid +136_1-5 Q0 MARCO_46_456960792-21 53 90.256053 hybrid +136_1-5 Q0 MARCO_06_1615593549-86 54 90.247940 hybrid +136_1-5 Q0 MARCO_31_574468761-1 55 90.189753 hybrid +136_1-5 Q0 MARCO_46_456960792-3 56 90.146253 hybrid +136_1-5 Q0 MARCO_03_1254859519-3 57 90.142202 hybrid +136_1-5 Q0 MARCO_37_1186545077-12 58 90.109876 hybrid +136_1-5 Q0 MARCO_37_1186545077-10 59 90.098236 hybrid +136_1-5 Q0 MARCO_06_1615538550-15 60 90.083369 hybrid +136_1-5 Q0 MARCO_51_116973976-2 61 90.081471 hybrid +136_1-5 Q0 MARCO_06_1615593549-109 62 90.080612 hybrid +136_1-5 Q0 MARCO_06_1605969875-3 63 90.068515 hybrid +136_1-5 Q0 MARCO_06_1615593549-39 64 90.045039 hybrid +136_1-5 Q0 MARCO_09_970001729-5 65 90.040153 hybrid +136_1-5 Q0 MARCO_06_1615593549-67 66 90.032864 hybrid +136_1-5 Q0 MARCO_06_1615593549-49 67 90.010883 hybrid +136_1-5 Q0 MARCO_40_1700476514-1 68 89.993253 hybrid +136_1-5 Q0 MARCO_00_661672852-3 69 89.992321 hybrid +136_1-5 Q0 MARCO_06_1615593549-77 70 89.991165 hybrid +136_1-5 Q0 MARCO_56_81919180-9 71 89.974603 hybrid +136_1-5 Q0 MARCO_19_2370304558-177 72 89.968903 hybrid +136_1-5 Q0 MARCO_57_173176140-2 73 89.959653 hybrid +136_1-5 Q0 MARCO_06_1615593549-65 74 89.959499 hybrid +136_1-5 Q0 MARCO_06_1615538550-41 75 89.941771 hybrid +136_1-5 Q0 MARCO_06_1615593549-144 76 89.941770 hybrid +136_1-5 Q0 MARCO_03_1463867408-7 77 89.927802 hybrid +136_1-5 Q0 MARCO_18_4247291090-5 78 89.922202 hybrid +136_1-5 Q0 MARCO_36_967030024-3 79 89.920753 hybrid +136_1-5 Q0 KILT_625197-30 80 89.920003 hybrid +136_1-5 Q0 MARCO_19_612130340-32 81 89.920002 hybrid +136_1-5 Q0 MARCO_06_1616419714-10 82 89.916181 hybrid +136_1-5 Q0 MARCO_39_677953001-23 83 89.905895 hybrid +136_1-5 Q0 MARCO_06_1615593549-132 84 89.863156 hybrid +136_1-5 Q0 MARCO_42_1340957513-3 85 89.860453 hybrid +136_1-5 Q0 MARCO_10_580495942-5 86 89.858502 hybrid +136_1-5 Q0 MARCO_11_111437456-1 87 89.838002 hybrid +136_1-5 Q0 MARCO_03_1700874885-5 88 89.835003 hybrid +136_1-5 Q0 MARCO_06_1615593549-92 89 89.829524 hybrid +136_1-5 Q0 MARCO_00_1254173326-28 90 89.827903 hybrid +136_1-5 Q0 MARCO_16_1906893262-6 91 89.790453 hybrid +136_1-5 Q0 MARCO_42_1340957513-2 92 89.774503 hybrid +136_1-5 Q0 MARCO_42_1359201370-6 93 89.771866 hybrid +136_1-5 Q0 MARCO_06_1615593549-42 94 89.731989 hybrid +136_1-5 Q0 KILT_568270-4 95 89.731652 hybrid +136_1-5 Q0 MARCO_37_1186545077-9 96 89.722686 hybrid +136_1-5 Q0 MARCO_09_1661332301-5 97 89.718102 hybrid +136_1-5 Q0 MARCO_36_1487174364-5 98 89.717752 hybrid +136_1-5 Q0 MARCO_18_8652746-20 99 89.695803 hybrid +136_1-5 Q0 MARCO_08_1273856048-1 100 89.691102 hybrid +136_1-7 Q0 MARCO_14_1526002240-92 1 94.959538 hybrid +136_1-7 Q0 MARCO_06_1605036905-4 2 94.675094 hybrid +136_1-7 Q0 MARCO_42_1359229219-4 3 94.327563 hybrid +136_1-7 Q0 MARCO_39_677953001-24 4 94.045066 hybrid +136_1-7 Q0 MARCO_01_458481901-58 5 93.595842 hybrid +136_1-7 Q0 MARCO_02_337202498-57 6 93.595841 hybrid +136_1-7 Q0 MARCO_57_884445217-23 7 93.562292 hybrid +136_1-7 Q0 MARCO_36_967030024-4 8 93.458992 hybrid +136_1-7 Q0 MARCO_55_494428548-9 9 93.323242 hybrid +136_1-7 Q0 MARCO_21_1378115203-2 10 93.183866 hybrid +136_1-7 Q0 MARCO_05_629335936-7 11 93.143192 hybrid +136_1-7 Q0 MARCO_06_1616419714-12 12 93.086434 hybrid +136_1-7 Q0 KILT_14458938-50 13 93.037092 hybrid +136_1-7 Q0 KILT_16321182-3 14 92.992665 hybrid +136_1-7 Q0 MARCO_07_536012807-42 15 92.841065 hybrid +136_1-7 Q0 MARCO_42_1340949625-5 16 92.813242 hybrid +136_1-7 Q0 MARCO_26_1933602319-9 17 92.809692 hybrid +136_1-7 Q0 MARCO_42_1368592926-9 18 92.784944 hybrid +136_1-7 Q0 MARCO_04_473062102-21 19 92.705292 hybrid +136_1-7 Q0 KILT_3188742-1 20 92.703692 hybrid +136_1-7 Q0 MARCO_38_1349998578-2 21 92.692342 hybrid +136_1-7 Q0 MARCO_39_615043672-2 22 92.561960 hybrid +136_1-7 Q0 MARCO_42_1368592926-7 23 92.556941 hybrid +136_1-7 Q0 MARCO_27_72181676-12 24 92.546792 hybrid +136_1-7 Q0 KILT_416227-1 25 92.541492 hybrid +136_1-7 Q0 MARCO_27_47894695-15 26 92.520092 hybrid +136_1-7 Q0 MARCO_27_40265189-3 27 92.469543 hybrid +136_1-7 Q0 MARCO_50_2128988370-53 28 92.469492 hybrid +136_1-7 Q0 MARCO_19_612317498-2 29 92.448292 hybrid +136_1-7 Q0 MARCO_19_612317498-3 30 92.409492 hybrid +136_1-7 Q0 MARCO_02_1884606143-5 31 92.404192 hybrid +136_1-7 Q0 MARCO_42_1341211865-2 32 92.386142 hybrid +136_1-7 Q0 MARCO_01_2026600344-7 33 92.330292 hybrid +136_1-7 Q0 MARCO_16_4159902144-11 34 92.311577 hybrid +136_1-7 Q0 MARCO_08_710538681-1 35 92.279142 hybrid +136_1-7 Q0 MARCO_09_1661332301-10 36 92.245642 hybrid +136_1-7 Q0 KILT_3188742-3 37 92.229292 hybrid +136_1-7 Q0 MARCO_19_612317498-4 38 92.229291 hybrid +136_1-7 Q0 KILT_33393567-4 39 92.161104 hybrid +136_1-7 Q0 MARCO_02_1079086282-1 40 92.153942 hybrid +136_1-7 Q0 MARCO_33_171833748-4 41 92.106025 hybrid +136_1-7 Q0 MARCO_03_1768684089-2 42 92.075292 hybrid +136_1-7 Q0 MARCO_52_654897371-1 43 92.054642 hybrid +136_1-7 Q0 MARCO_10_580069637-2 44 92.045942 hybrid +136_1-7 Q0 MARCO_42_1368592926-1 45 92.043757 hybrid +136_1-7 Q0 MARCO_16_1282904623-8 46 92.036442 hybrid +136_1-7 Q0 MARCO_03_735734322-3 47 92.029992 hybrid +136_1-7 Q0 MARCO_50_2128988370-17 48 92.011342 hybrid +136_1-7 Q0 MARCO_05_1029672944-7 49 92.004942 hybrid +136_1-7 Q0 MARCO_03_735745978-1 50 92.002642 hybrid +136_1-7 Q0 MARCO_31_574457820-1 51 91.995792 hybrid +136_1-7 Q0 MARCO_54_325976921-7 52 91.951992 hybrid +136_1-7 Q0 MARCO_18_828833700-64 53 91.936592 hybrid +136_1-7 Q0 MARCO_11_1502557247-7 54 91.898192 hybrid +136_1-7 Q0 MARCO_26_1761635823-8 55 91.882192 hybrid +136_1-7 Q0 MARCO_01_915966873-5 56 91.871592 hybrid +136_1-7 Q0 MARCO_02_346403764-5 57 91.871342 hybrid +136_1-7 Q0 MARCO_05_674315060-1 58 91.867642 hybrid +136_1-7 Q0 MARCO_18_2222386817-4 59 91.863292 hybrid +136_1-7 Q0 MARCO_08_697017286-3 60 91.855342 hybrid +136_1-7 Q0 MARCO_06_1601700563-2 61 91.854848 hybrid +136_1-7 Q0 MARCO_16_2736711786-32 62 91.851692 hybrid +136_1-7 Q0 KILT_40855058-2 63 91.848442 hybrid +136_1-7 Q0 MARCO_42_1340937711-5 64 91.844543 hybrid +136_1-7 Q0 MARCO_42_1334955667-9 65 91.821542 hybrid +136_1-7 Q0 MARCO_02_621959199-2 66 91.791392 hybrid +136_1-7 Q0 MARCO_26_1951166260-13 67 91.790642 hybrid +136_1-7 Q0 MARCO_04_1094368859-82 68 91.761592 hybrid +136_1-7 Q0 MARCO_04_473062102-23 69 91.728192 hybrid +136_1-7 Q0 MARCO_06_545026672-4 70 91.711716 hybrid +136_1-7 Q0 MARCO_02_1884620640-10 71 91.711642 hybrid +136_1-7 Q0 MARCO_06_24550212-2 72 91.706292 hybrid +136_1-7 Q0 MARCO_12_1334356634-16 73 91.701992 hybrid +136_1-7 Q0 MARCO_07_536012807-13 74 91.699128 hybrid +136_1-7 Q0 KILT_490153-12 75 91.675292 hybrid +136_1-7 Q0 MARCO_48_1440515497-2 76 91.669492 hybrid +136_1-7 Q0 MARCO_17_3486439294-7 77 91.669092 hybrid +136_1-7 Q0 MARCO_39_1700302430-1 78 91.652892 hybrid +136_1-7 Q0 MARCO_55_494428548-10 79 91.650592 hybrid +136_1-7 Q0 KILT_645101-8 80 91.639892 hybrid +136_1-7 Q0 KILT_645101-6 81 91.637042 hybrid +136_1-7 Q0 KILT_964982-2 82 91.608642 hybrid +136_1-7 Q0 MARCO_11_111437456-1 83 91.607142 hybrid +136_1-7 Q0 KILT_3188742-2 84 91.604342 hybrid +136_1-7 Q0 KILT_690865-31 85 91.565442 hybrid +136_1-7 Q0 MARCO_48_624451421-3 86 91.554107 hybrid +136_1-7 Q0 MARCO_37_1508036208-5 87 91.536192 hybrid +136_1-7 Q0 MARCO_19_611783145-25 88 91.482842 hybrid +136_1-7 Q0 MARCO_01_1445192363-4 89 91.475292 hybrid +136_1-7 Q0 MARCO_03_1700874885-2 90 91.474342 hybrid +136_1-7 Q0 MARCO_42_1340957513-11 91 91.439442 hybrid +136_1-7 Q0 MARCO_02_1727427896-38 92 91.436442 hybrid +136_1-7 Q0 MARCO_19_611783145-32 93 91.435493 hybrid +136_1-7 Q0 KILT_59459507-9 94 91.434540 hybrid +136_1-7 Q0 MARCO_07_536012807-4 95 91.426162 hybrid +136_1-7 Q0 MARCO_42_1327005698-3 96 91.424642 hybrid +136_1-7 Q0 MARCO_57_658975045-2 97 91.420392 hybrid +136_1-7 Q0 MARCO_03_1770719375-2 98 91.415573 hybrid +136_1-7 Q0 KILT_3659935-6 99 91.415042 hybrid +136_1-7 Q0 KILT_52382-18 100 91.400092 hybrid +136_1-9 Q0 MARCO_11_1511196274-3 1 96.352332 hybrid +136_1-9 Q0 MARCO_11_1511196274-1 2 96.314394 hybrid +136_1-9 Q0 MARCO_04_148900856-3 3 95.164349 hybrid +136_1-9 Q0 MARCO_28_327932163-1 4 94.758835 hybrid +136_1-9 Q0 MARCO_06_1902336129-1 5 94.712352 hybrid +136_1-9 Q0 MARCO_04_148900856-2 6 94.544749 hybrid +136_1-9 Q0 MARCO_04_143999592-1 7 94.411993 hybrid +136_1-9 Q0 MARCO_04_497201-1 8 94.093499 hybrid +136_1-9 Q0 MARCO_50_1984649934-1 9 94.078886 hybrid +136_1-9 Q0 MARCO_42_1359229219-1 10 94.072713 hybrid +136_1-9 Q0 MARCO_10_831411560-2 11 94.045665 hybrid +136_1-9 Q0 MARCO_42_1368592926-5 12 94.037785 hybrid +136_1-9 Q0 MARCO_00_944207367-1 13 94.014737 hybrid +136_1-9 Q0 MARCO_39_615043672-1 14 93.972528 hybrid +136_1-9 Q0 MARCO_11_111437456-1 15 93.795399 hybrid +136_1-9 Q0 MARCO_03_1700874885-2 16 93.736749 hybrid +136_1-9 Q0 MARCO_21_1378115203-25 17 93.717738 hybrid +136_1-9 Q0 MARCO_39_618236320-17 18 93.692621 hybrid +136_1-9 Q0 MARCO_06_545026672-1 19 93.672442 hybrid +136_1-9 Q0 MARCO_42_1367221250-7 20 93.581397 hybrid +136_1-9 Q0 MARCO_34_1720669955-2 21 93.576722 hybrid +136_1-9 Q0 MARCO_50_1432093425-3 22 93.523833 hybrid +136_1-9 Q0 MARCO_06_1605036905-4 23 93.514428 hybrid +136_1-9 Q0 MARCO_42_1359201370-6 24 93.509732 hybrid +136_1-9 Q0 MARCO_06_1902336129-2 25 93.489107 hybrid +136_1-9 Q0 MARCO_48_624451421-3 26 93.457821 hybrid +136_1-9 Q0 MARCO_06_24550212-2 27 93.424749 hybrid +136_1-9 Q0 MARCO_42_1368592926-10 28 93.312523 hybrid +136_1-9 Q0 MARCO_04_865649090-20 29 93.309912 hybrid +136_1-9 Q0 MARCO_42_1359229219-6 30 93.292039 hybrid +136_1-9 Q0 MARCO_06_322904718-1 31 93.290075 hybrid +136_1-9 Q0 MARCO_42_1359229219-2 32 93.278749 hybrid +136_1-9 Q0 MARCO_38_1380005313-1 33 93.276849 hybrid +136_1-9 Q0 MARCO_42_1367967096-1 34 93.246054 hybrid +136_1-9 Q0 MARCO_30_310002268-1 35 93.234399 hybrid +136_1-9 Q0 MARCO_39_615043672-2 36 93.210492 hybrid +136_1-9 Q0 MARCO_06_1615593549-75 37 93.197224 hybrid +136_1-9 Q0 MARCO_00_60617304-1 38 93.194899 hybrid +136_1-9 Q0 MARCO_07_536012807-29 39 93.184435 hybrid +136_1-9 Q0 MARCO_21_1378115203-19 40 93.148118 hybrid +136_1-9 Q0 MARCO_03_1735103357-2 41 93.147799 hybrid +136_1-9 Q0 MARCO_21_1378115203-27 42 93.120987 hybrid +136_1-9 Q0 MARCO_48_624451421-2 43 93.111947 hybrid +136_1-9 Q0 MARCO_03_1700874885-4 44 93.088799 hybrid +136_1-9 Q0 MARCO_50_1984649934-7 45 93.086552 hybrid +136_1-9 Q0 MARCO_09_970603565-6 46 93.051149 hybrid +136_1-9 Q0 MARCO_21_1378115203-1 47 93.047590 hybrid +136_1-9 Q0 MARCO_46_456960792-1 48 93.033849 hybrid +136_1-9 Q0 MARCO_50_1508368359-30 49 93.015285 hybrid +136_1-9 Q0 MARCO_03_1735103357-1 50 93.003699 hybrid +136_1-9 Q0 MARCO_21_1376381125-19 51 93.001966 hybrid +136_1-9 Q0 MARCO_06_545026672-3 52 92.981730 hybrid +136_1-9 Q0 MARCO_26_899502779-4 53 92.981049 hybrid +136_1-9 Q0 MARCO_37_1186545077-11 54 92.971423 hybrid +136_1-9 Q0 MARCO_18_1301359057-26 55 92.950490 hybrid +136_1-9 Q0 MARCO_04_190591391-2 56 92.944249 hybrid +136_1-9 Q0 MARCO_01_1448510883-1 57 92.942549 hybrid +136_1-9 Q0 MARCO_06_1601700563-2 58 92.936253 hybrid +136_1-9 Q0 MARCO_42_1359229219-5 59 92.934796 hybrid +136_1-9 Q0 MARCO_06_1616419714-4 60 92.921513 hybrid +136_1-9 Q0 MARCO_21_1378115203-23 61 92.914456 hybrid +136_1-9 Q0 MARCO_45_1217815366-1 62 92.913199 hybrid +136_1-9 Q0 MARCO_42_1368592926-1 63 92.899034 hybrid +136_1-9 Q0 MARCO_50_1984649934-6 64 92.890698 hybrid +136_1-9 Q0 MARCO_07_536012807-4 65 92.883404 hybrid +136_1-9 Q0 MARCO_03_1770719375-4 66 92.878216 hybrid +136_1-9 Q0 MARCO_03_1700874885-5 67 92.870499 hybrid +136_1-9 Q0 MARCO_50_1984649934-8 68 92.856152 hybrid +136_1-9 Q0 MARCO_06_1616419714-19 69 92.833836 hybrid +136_1-9 Q0 MARCO_19_235748733-4 70 92.832432 hybrid +136_1-9 Q0 MARCO_50_2128988370-45 71 92.825199 hybrid +136_1-9 Q0 MARCO_03_1463867408-10 72 92.811099 hybrid +136_1-9 Q0 MARCO_04_125469378-1 73 92.809649 hybrid +136_1-9 Q0 MARCO_42_1367290185-3 74 92.786404 hybrid +136_1-9 Q0 MARCO_04_207769330-1 75 92.781522 hybrid +136_1-9 Q0 MARCO_42_1368592926-7 76 92.774724 hybrid +136_1-9 Q0 MARCO_26_890532852-3 77 92.758499 hybrid +136_1-9 Q0 KILT_54005993-15 78 92.752234 hybrid +136_1-9 Q0 MARCO_36_1487174364-1 79 92.745149 hybrid +136_1-9 Q0 MARCO_37_1186545077-10 80 92.706662 hybrid +136_1-9 Q0 MARCO_26_1835738965-180 81 92.689732 hybrid +136_1-9 Q0 MARCO_05_424740033-50 82 92.687161 hybrid +136_1-9 Q0 MARCO_39_678034715-11 83 92.685441 hybrid +136_1-9 Q0 MARCO_43_1280563415-23 84 92.685048 hybrid +136_1-9 Q0 MARCO_48_619543422-1 85 92.677949 hybrid +136_1-9 Q0 MARCO_37_1186529676-12 86 92.673234 hybrid +136_1-9 Q0 MARCO_42_1367674026-4 87 92.672597 hybrid +136_1-9 Q0 MARCO_03_1700874885-3 88 92.661199 hybrid +136_1-9 Q0 MARCO_09_970001729-1 89 92.655399 hybrid +136_1-9 Q0 MARCO_03_1770719375-2 90 92.653056 hybrid +136_1-9 Q0 MARCO_00_661672852-8 91 92.648282 hybrid +136_1-9 Q0 MARCO_33_1593442632-44 92 92.647343 hybrid +136_1-9 Q0 MARCO_04_207769330-4 93 92.636330 hybrid +136_1-9 Q0 MARCO_21_1378115203-28 94 92.633488 hybrid +136_1-9 Q0 MARCO_42_1367967096-6 95 92.631115 hybrid +136_1-9 Q0 MARCO_42_1368592926-6 96 92.629568 hybrid +136_1-9 Q0 MARCO_06_1604175481-1 97 92.628308 hybrid +136_1-9 Q0 MARCO_03_1463867408-14 98 92.628299 hybrid +136_1-9 Q0 MARCO_34_1748142224-1 99 92.621399 hybrid +136_1-9 Q0 MARCO_48_624451421-1 100 92.613774 hybrid +136_2-1 Q0 MARCO_06_322904718-1 1 91.015574 hybrid +136_2-1 Q0 MARCO_36_967030024-1 2 89.772489 hybrid +136_2-1 Q0 MARCO_04_148900856-3 3 89.718389 hybrid +136_2-1 Q0 MARCO_12_1247075937-4 4 89.696939 hybrid +136_2-1 Q0 MARCO_11_1511196274-1 5 89.653423 hybrid +136_2-1 Q0 MARCO_42_1359229219-1 6 89.452348 hybrid +136_2-1 Q0 MARCO_09_970001729-9 7 89.412438 hybrid +136_2-1 Q0 MARCO_27_1510298108-3 8 89.395668 hybrid +136_2-1 Q0 MARCO_06_1902336129-1 9 89.084356 hybrid +136_2-1 Q0 MARCO_21_1378115203-19 10 89.053488 hybrid +136_2-1 Q0 MARCO_42_1368592926-1 11 88.994969 hybrid +136_2-1 Q0 MARCO_12_1247075937-10 12 88.960089 hybrid +136_2-1 Q0 MARCO_04_143999592-1 13 88.927506 hybrid +136_2-1 Q0 MARCO_34_1748142224-1 14 88.921938 hybrid +136_2-1 Q0 MARCO_28_327932163-1 15 88.897998 hybrid +136_2-1 Q0 MARCO_41_1361850806-19 16 88.887163 hybrid +136_2-1 Q0 MARCO_55_571956134-6 17 88.862935 hybrid +136_2-1 Q0 MARCO_06_545026672-1 18 88.841357 hybrid +136_2-1 Q0 MARCO_50_1984649934-1 19 88.823052 hybrid +136_2-1 Q0 MARCO_41_1361850806-2 20 88.813843 hybrid +136_2-1 Q0 MARCO_27_1510298108-4 21 88.782560 hybrid +136_2-1 Q0 MARCO_03_1700874885-5 22 88.780588 hybrid +136_2-1 Q0 MARCO_57_1227170091-2 23 88.774167 hybrid +136_2-1 Q0 MARCO_08_724172429-1 24 88.731189 hybrid +136_2-1 Q0 MARCO_03_1463867408-10 25 88.700639 hybrid +136_2-1 Q0 KILT_453736-15 26 88.666382 hybrid +136_2-1 Q0 MARCO_05_424740033-13 27 88.663804 hybrid +136_2-1 Q0 MARCO_04_148900856-2 28 88.655438 hybrid +136_2-1 Q0 MARCO_50_1984649934-4 29 88.653647 hybrid +136_2-1 Q0 MARCO_41_1361850806-39 30 88.631357 hybrid +136_2-1 Q0 MARCO_12_1247075937-1 31 88.612839 hybrid +136_2-1 Q0 MARCO_12_1247075937-2 32 88.597738 hybrid +136_2-1 Q0 MARCO_43_1280563415-14 33 88.596196 hybrid +136_2-1 Q0 MARCO_05_336914225-1 34 88.524338 hybrid +136_2-1 Q0 MARCO_18_3810895977-6 35 88.499416 hybrid +136_2-1 Q0 MARCO_50_1984649934-8 36 88.496258 hybrid +136_2-1 Q0 MARCO_11_1527112956-1 37 88.466888 hybrid +136_2-1 Q0 MARCO_21_1378115203-28 38 88.460942 hybrid +136_2-1 Q0 MARCO_58_1731712325-3 39 88.375652 hybrid +136_2-1 Q0 MARCO_27_55279422-14 40 88.362788 hybrid +136_2-1 Q0 MARCO_42_1359198610-2 41 88.361433 hybrid +136_2-1 Q0 MARCO_04_148900856-1 42 88.349238 hybrid +136_2-1 Q0 KILT_408127-7 43 88.339823 hybrid +136_2-1 Q0 MARCO_14_1388732263-45 44 88.339688 hybrid +136_2-1 Q0 MARCO_37_1186545077-11 45 88.339208 hybrid +136_2-1 Q0 MARCO_12_1247075937-7 46 88.332388 hybrid +136_2-1 Q0 MARCO_55_574781674-5 47 88.331818 hybrid +136_2-1 Q0 MARCO_09_970603565-1 48 88.328188 hybrid +136_2-1 Q0 MARCO_12_1247075937-14 49 88.325489 hybrid +136_2-1 Q0 MARCO_03_1700874885-2 50 88.322388 hybrid +136_2-1 Q0 MARCO_05_424740033-2 51 88.308172 hybrid +136_2-1 Q0 MARCO_12_1247075937-15 52 88.294288 hybrid +136_2-1 Q0 MARCO_50_1432093425-1 53 88.290756 hybrid +136_2-1 Q0 MARCO_00_1401261974-13 54 88.276246 hybrid +136_2-1 Q0 MARCO_41_1361850806-44 55 88.275204 hybrid +136_2-1 Q0 MARCO_50_1432093425-3 56 88.275087 hybrid +136_2-1 Q0 MARCO_48_1187831782-4 57 88.273252 hybrid +136_2-1 Q0 MARCO_41_1361850806-14 58 88.259976 hybrid +136_2-1 Q0 MARCO_16_1906893262-16 59 88.247488 hybrid +136_2-1 Q0 MARCO_50_2733152614-1 60 88.239538 hybrid +136_2-1 Q0 MARCO_03_1735103357-1 61 88.207139 hybrid +136_2-1 Q0 MARCO_12_1247075937-11 62 88.203588 hybrid +136_2-1 Q0 MARCO_31_35082547-4 63 88.199838 hybrid +136_2-1 Q0 MARCO_31_574471399-1 64 88.196438 hybrid +136_2-1 Q0 MARCO_41_1361850806-46 65 88.190289 hybrid +136_2-1 Q0 MARCO_31_574448546-1 66 88.184339 hybrid +136_2-1 Q0 MARCO_12_1247075937-13 67 88.178038 hybrid +136_2-1 Q0 MARCO_42_1368592926-5 68 88.172585 hybrid +136_2-1 Q0 MARCO_17_3121804383-7 69 88.172251 hybrid +136_2-1 Q0 MARCO_03_1463867408-8 70 88.130538 hybrid +136_2-1 Q0 MARCO_03_1700874885-3 71 88.108139 hybrid +136_2-1 Q0 MARCO_41_1361850806-27 72 88.093976 hybrid +136_2-1 Q0 MARCO_42_1368592926-3 73 88.073267 hybrid +136_2-1 Q0 MARCO_43_1280563415-23 74 88.071767 hybrid +136_2-1 Q0 MARCO_41_1361850806-38 75 88.065587 hybrid +136_2-1 Q0 MARCO_21_1378115203-23 76 88.064518 hybrid +136_2-1 Q0 KILT_453736-12 77 88.060925 hybrid +136_2-1 Q0 MARCO_41_1361850806-41 78 88.043026 hybrid +136_2-1 Q0 MARCO_50_1984649934-7 79 88.020436 hybrid +136_2-1 Q0 MARCO_03_1700874885-4 80 88.016139 hybrid +136_2-1 Q0 MARCO_14_1007513464-1 81 88.016038 hybrid +136_2-1 Q0 MARCO_06_1605036905-4 82 88.012097 hybrid +136_2-1 Q0 MARCO_12_1247075937-12 83 88.003088 hybrid +136_2-1 Q0 MARCO_05_424740033-1 84 88.000027 hybrid +136_2-1 Q0 MARCO_30_367328370-1 85 87.984788 hybrid +136_2-1 Q0 MARCO_41_1361850806-16 86 87.983593 hybrid +136_2-1 Q0 MARCO_42_1359229219-2 87 87.980762 hybrid +136_2-1 Q0 MARCO_37_792341070-1 88 87.973738 hybrid +136_2-1 Q0 MARCO_41_1361850806-13 89 87.966313 hybrid +136_2-1 Q0 MARCO_09_163336509-1 90 87.944338 hybrid +136_2-1 Q0 MARCO_27_1281136783-1 91 87.935638 hybrid +136_2-1 Q0 MARCO_28_327932163-2 92 87.927716 hybrid +136_2-1 Q0 MARCO_00_463823905-8 93 87.926239 hybrid +136_2-1 Q0 MARCO_09_970603565-5 94 87.920639 hybrid +136_2-1 Q0 MARCO_39_618236320-17 95 87.919360 hybrid +136_2-1 Q0 MARCO_41_1361850806-15 96 87.900212 hybrid +136_2-1 Q0 MARCO_54_1569975517-1 97 87.899224 hybrid +136_2-1 Q0 MARCO_55_584368262-5 98 87.897538 hybrid +136_2-1 Q0 MARCO_17_45796309-4 99 87.862488 hybrid +136_2-1 Q0 MARCO_57_173176140-1 100 87.858888 hybrid +136_2-3 Q0 MARCO_16_2852307220-19 1 89.411529 hybrid +136_2-3 Q0 MARCO_37_1517872522-3 2 88.697926 hybrid +136_2-3 Q0 MARCO_34_1725136735-1 3 88.312239 hybrid +136_2-3 Q0 MARCO_37_1517872522-2 4 88.172044 hybrid +136_2-3 Q0 MARCO_37_1517872522-1 5 88.062431 hybrid +136_2-3 Q0 KILT_29167504-4 6 87.929404 hybrid +136_2-3 Q0 MARCO_05_424740033-28 7 87.874564 hybrid +136_2-3 Q0 MARCO_05_424740033-29 8 87.840585 hybrid +136_2-3 Q0 KILT_1165780-3 9 87.671981 hybrid +136_2-3 Q0 MARCO_16_1906878129-8 10 87.621748 hybrid +136_2-3 Q0 MARCO_17_4188093557-67 11 87.595549 hybrid +136_2-3 Q0 KILT_471074-4 12 87.566742 hybrid +136_2-3 Q0 MARCO_10_1522477129-7 13 87.530350 hybrid +136_2-3 Q0 MARCO_17_45796309-10 14 87.526650 hybrid +136_2-3 Q0 MARCO_05_424740033-30 15 87.371741 hybrid +136_2-3 Q0 KILT_4278305-1 16 87.337790 hybrid +136_2-3 Q0 KILT_23749226-5 17 87.316161 hybrid +136_2-3 Q0 MARCO_17_45796309-11 18 87.271650 hybrid +136_2-3 Q0 MARCO_36_958901421-2 19 87.229926 hybrid +136_2-3 Q0 KILT_243545-16 20 87.223800 hybrid +136_2-3 Q0 MARCO_16_1906893262-3 21 87.213965 hybrid +136_2-3 Q0 MARCO_06_1615538550-5 22 87.191994 hybrid +136_2-3 Q0 MARCO_43_995242498-33 23 87.190123 hybrid +136_2-3 Q0 MARCO_23_702973894-24 24 87.088751 hybrid +136_2-3 Q0 MARCO_50_2312547038-5 25 87.029400 hybrid +136_2-3 Q0 MARCO_02_1721991996-21 26 86.992400 hybrid +136_2-3 Q0 MARCO_43_1004347964-41 27 86.979445 hybrid +136_2-3 Q0 MARCO_10_550584996-5 28 86.934650 hybrid +136_2-3 Q0 KILT_453736-15 29 86.926489 hybrid +136_2-3 Q0 MARCO_25_34345716-107 30 86.855150 hybrid +136_2-3 Q0 MARCO_23_389783021-2 31 86.830750 hybrid +136_2-3 Q0 KILT_461561-8 32 86.817450 hybrid +136_2-3 Q0 MARCO_41_1406440000-2 33 86.806365 hybrid +136_2-3 Q0 MARCO_17_4778953000-35 34 86.792200 hybrid +136_2-3 Q0 MARCO_09_453642400-4 35 86.768250 hybrid +136_2-3 Q0 MARCO_37_1517872522-4 36 86.754523 hybrid +136_2-3 Q0 KILT_461561-1 37 86.753550 hybrid +136_2-3 Q0 MARCO_17_45796309-27 38 86.739500 hybrid +136_2-3 Q0 KILT_56221810-2 39 86.709156 hybrid +136_2-3 Q0 MARCO_45_666130355-35 40 86.708350 hybrid +136_2-3 Q0 MARCO_11_1461859438-1 41 86.690950 hybrid +136_2-3 Q0 MARCO_43_1011782134-16 42 86.672759 hybrid +136_2-3 Q0 MARCO_06_1615593549-96 43 86.655867 hybrid +136_2-3 Q0 MARCO_16_1906893262-4 44 86.635573 hybrid +136_2-3 Q0 MARCO_17_45796309-12 45 86.633100 hybrid +136_2-3 Q0 MARCO_17_45838517-13 46 86.626400 hybrid +136_2-3 Q0 KILT_56002328-1 47 86.588439 hybrid +136_2-3 Q0 KILT_2660363-2 48 86.576933 hybrid +136_2-3 Q0 MARCO_09_165023690-13 49 86.564900 hybrid +136_2-3 Q0 MARCO_31_1177209948-1 50 86.516250 hybrid +136_2-3 Q0 MARCO_14_1706578219-4 51 86.510550 hybrid +136_2-3 Q0 MARCO_17_45867964-4 52 86.501700 hybrid +136_2-3 Q0 MARCO_17_2892192733-3 53 86.501097 hybrid +136_2-3 Q0 MARCO_54_1959865413-33 54 86.496150 hybrid +136_2-3 Q0 MARCO_17_4188093557-36 55 86.488272 hybrid +136_2-3 Q0 KILT_1967935-30 56 86.487900 hybrid +136_2-3 Q0 MARCO_07_1422341563-4 57 86.484150 hybrid +136_2-3 Q0 MARCO_16_2852307220-6 58 86.470358 hybrid +136_2-3 Q0 MARCO_02_578176031-26 59 86.466900 hybrid +136_2-3 Q0 MARCO_02_1721991996-20 60 86.442150 hybrid +136_2-3 Q0 MARCO_32_1332191767-4 61 86.440750 hybrid +136_2-3 Q0 MARCO_06_409720571-8 62 86.430900 hybrid +136_2-3 Q0 MARCO_19_253165797-21 63 86.429640 hybrid +136_2-3 Q0 MARCO_41_1009445128-59 64 86.421950 hybrid +136_2-3 Q0 MARCO_58_1126798034-8 65 86.416500 hybrid +136_2-3 Q0 MARCO_17_3561608068-4 66 86.401300 hybrid +136_2-3 Q0 MARCO_29_1421049811-5 67 86.389761 hybrid +136_2-3 Q0 MARCO_07_120387962-6 68 86.388750 hybrid +136_2-3 Q0 KILT_1967935-31 69 86.387700 hybrid +136_2-3 Q0 KILT_13574-22 70 86.385100 hybrid +136_2-3 Q0 MARCO_17_4778953000-33 71 86.374000 hybrid +136_2-3 Q0 KILT_1165780-2 72 86.366827 hybrid +136_2-3 Q0 MARCO_14_1486493683-5 73 86.360968 hybrid +136_2-3 Q0 MARCO_06_1615593549-92 74 86.360053 hybrid +136_2-3 Q0 MARCO_15_626025681-12 75 86.359999 hybrid +136_2-3 Q0 MARCO_07_504454818-43 76 86.355950 hybrid +136_2-3 Q0 MARCO_06_1102753317-262 77 86.345778 hybrid +136_2-3 Q0 MARCO_17_2947898522-19 78 86.341353 hybrid +136_2-3 Q0 MARCO_59_48583543-9 79 86.337100 hybrid +136_2-3 Q0 KILT_939789-3 80 86.333400 hybrid +136_2-3 Q0 MARCO_59_239478090-11 81 86.322000 hybrid +136_2-3 Q0 MARCO_04_1393608563-8 82 86.315947 hybrid +136_2-3 Q0 MARCO_18_511276332-5 83 86.311500 hybrid +136_2-3 Q0 KILT_22288303-4 84 86.303750 hybrid +136_2-3 Q0 MARCO_06_1239857289-58 85 86.286750 hybrid +136_2-3 Q0 KILT_6112615-1 86 86.285850 hybrid +136_2-3 Q0 KILT_5471615-18 87 86.270500 hybrid +136_2-3 Q0 MARCO_50_482485009-3 88 86.262697 hybrid +136_2-3 Q0 MARCO_18_4118915934-7 89 86.252950 hybrid +136_2-3 Q0 MARCO_18_3827205215-7 90 86.248641 hybrid +136_2-3 Q0 MARCO_29_667739233-1 91 86.247656 hybrid +136_2-3 Q0 MARCO_31_298717934-36 92 86.244900 hybrid +136_2-3 Q0 KILT_461561-18 93 86.239500 hybrid +136_2-3 Q0 MARCO_48_1186270879-6 94 86.236624 hybrid +136_2-3 Q0 KILT_939789-4 95 86.232650 hybrid +136_2-3 Q0 MARCO_06_1615593549-3 96 86.220725 hybrid +136_2-3 Q0 MARCO_50_931305410-9 97 86.213774 hybrid +136_2-3 Q0 MARCO_25_1282333788-3 98 86.213700 hybrid +136_2-3 Q0 MARCO_37_359273750-2 99 86.209900 hybrid +136_2-3 Q0 MARCO_22_362764317-4 100 86.203100 hybrid +136_2-5 Q0 MARCO_16_2852307220-19 1 89.455093 hybrid +136_2-5 Q0 MARCO_05_424740033-28 2 88.541232 hybrid +136_2-5 Q0 MARCO_37_1517872522-3 3 88.522992 hybrid +136_2-5 Q0 MARCO_17_45796309-10 4 88.320634 hybrid +136_2-5 Q0 MARCO_34_1725136735-1 5 88.138106 hybrid +136_2-5 Q0 MARCO_37_1517872522-2 6 88.133496 hybrid +136_2-5 Q0 KILT_29167504-4 7 88.108815 hybrid +136_2-5 Q0 MARCO_37_1517872522-1 8 88.094085 hybrid +136_2-5 Q0 MARCO_05_424740033-29 9 87.990739 hybrid +136_2-5 Q0 KILT_471074-4 10 87.808514 hybrid +136_2-5 Q0 KILT_4278305-1 11 87.720150 hybrid +136_2-5 Q0 MARCO_16_1906878129-8 12 87.686078 hybrid +136_2-5 Q0 MARCO_23_702973894-24 13 87.638592 hybrid +136_2-5 Q0 KILT_461561-8 14 87.611434 hybrid +136_2-5 Q0 KILT_23749226-5 15 87.593503 hybrid +136_2-5 Q0 MARCO_45_666130355-35 16 87.538834 hybrid +136_2-5 Q0 MARCO_10_1522477129-7 17 87.531884 hybrid +136_2-5 Q0 MARCO_06_1615538550-5 18 87.513024 hybrid +136_2-5 Q0 MARCO_16_1906893262-3 19 87.504406 hybrid +136_2-5 Q0 KILT_13574-22 20 87.459834 hybrid +136_2-5 Q0 MARCO_36_958901421-2 21 87.437886 hybrid +136_2-5 Q0 KILT_1165780-3 22 87.436545 hybrid +136_2-5 Q0 MARCO_43_995242498-33 23 87.419377 hybrid +136_2-5 Q0 MARCO_17_4188093557-67 24 87.401906 hybrid +136_2-5 Q0 MARCO_52_534191647-2 25 87.363934 hybrid +136_2-5 Q0 MARCO_05_424740033-30 26 87.309920 hybrid +136_2-5 Q0 MARCO_17_45796309-11 27 87.273184 hybrid +136_2-5 Q0 KILT_243545-16 28 87.225334 hybrid +136_2-5 Q0 KILT_453736-15 29 87.210789 hybrid +136_2-5 Q0 MARCO_11_1561677877-1 30 87.208384 hybrid +136_2-5 Q0 MARCO_41_1406440000-2 31 87.208053 hybrid +136_2-5 Q0 MARCO_43_1004347964-41 32 87.141552 hybrid +136_2-5 Q0 MARCO_21_693650626-1 33 87.130184 hybrid +136_2-5 Q0 KILT_56002328-1 34 87.055829 hybrid +136_2-5 Q0 MARCO_14_1486493683-5 35 87.042416 hybrid +136_2-5 Q0 MARCO_22_1764297962-3 36 87.031834 hybrid +136_2-5 Q0 MARCO_50_2312547038-5 37 87.030934 hybrid +136_2-5 Q0 MARCO_58_1677832172-16 38 86.999634 hybrid +136_2-5 Q0 MARCO_02_1721991996-21 39 86.993934 hybrid +136_2-5 Q0 MARCO_42_390780331-21 40 86.980534 hybrid +136_2-5 Q0 MARCO_16_1906893262-4 41 86.973462 hybrid +136_2-5 Q0 KILT_56221810-2 42 86.965176 hybrid +136_2-5 Q0 MARCO_10_550584996-5 43 86.936184 hybrid +136_2-5 Q0 MARCO_06_1615593549-96 44 86.934132 hybrid +136_2-5 Q0 MARCO_44_835504615-8 45 86.910734 hybrid +136_2-5 Q0 MARCO_48_1989660771-49 46 86.895934 hybrid +136_2-5 Q0 MARCO_54_625988626-8 47 86.887334 hybrid +136_2-5 Q0 MARCO_25_34345716-107 48 86.856684 hybrid +136_2-5 Q0 MARCO_19_253165797-21 49 86.843014 hybrid +136_2-5 Q0 MARCO_23_389783021-2 50 86.832283 hybrid +136_2-5 Q0 MARCO_37_1517872522-4 51 86.827160 hybrid +136_2-5 Q0 MARCO_17_45796309-30 52 86.815884 hybrid +136_2-5 Q0 MARCO_16_86148295-15 53 86.814334 hybrid +136_2-5 Q0 KILT_1165780-2 54 86.811741 hybrid +136_2-5 Q0 MARCO_04_1393608563-8 55 86.796940 hybrid +136_2-5 Q0 MARCO_43_1011782134-16 56 86.794018 hybrid +136_2-5 Q0 MARCO_40_1700434017-4 57 86.793884 hybrid +136_2-5 Q0 MARCO_17_4778953000-35 58 86.793734 hybrid +136_2-5 Q0 MARCO_23_102113852-2 59 86.783884 hybrid +136_2-5 Q0 MARCO_45_681567201-1 60 86.783734 hybrid +136_2-5 Q0 MARCO_16_2852307220-6 61 86.781056 hybrid +136_2-5 Q0 MARCO_33_213191673-1 62 86.772933 hybrid +136_2-5 Q0 MARCO_09_453642400-4 63 86.769783 hybrid +136_2-5 Q0 KILT_461561-1 64 86.755084 hybrid +136_2-5 Q0 MARCO_23_892918206-31 65 86.752415 hybrid +136_2-5 Q0 MARCO_12_265232941-8 66 86.746784 hybrid +136_2-5 Q0 MARCO_01_384143704-32 67 86.744634 hybrid +136_2-5 Q0 MARCO_17_4188093557-36 68 86.743107 hybrid +136_2-5 Q0 MARCO_17_45796309-27 69 86.741034 hybrid +136_2-5 Q0 MARCO_17_2892192733-3 70 86.732129 hybrid +136_2-5 Q0 MARCO_01_2198047216-20 71 86.726734 hybrid +136_2-5 Q0 MARCO_06_1615593549-3 72 86.724347 hybrid +136_2-5 Q0 MARCO_11_1461859438-1 73 86.692484 hybrid +136_2-5 Q0 MARCO_31_1814736667-5 74 86.687334 hybrid +136_2-5 Q0 MARCO_17_2947898522-19 75 86.681607 hybrid +136_2-5 Q0 MARCO_17_4778953000-39 76 86.680284 hybrid +136_2-5 Q0 MARCO_54_1851877865-3 77 86.669484 hybrid +136_2-5 Q0 MARCO_50_915361645-22 78 86.646734 hybrid +136_2-5 Q0 MARCO_29_1421049811-5 79 86.641339 hybrid +136_2-5 Q0 MARCO_17_45796309-12 80 86.634634 hybrid +136_2-5 Q0 MARCO_17_45838517-13 81 86.627934 hybrid +136_2-5 Q0 MARCO_46_850266308-5 82 86.607518 hybrid +136_2-5 Q0 MARCO_11_1511716643-5 83 86.606946 hybrid +136_2-5 Q0 MARCO_17_4778953000-36 84 86.595284 hybrid +136_2-5 Q0 MARCO_27_1402217841-5 85 86.584383 hybrid +136_2-5 Q0 MARCO_50_931305410-9 86 86.583165 hybrid +136_2-5 Q0 MARCO_06_1102753317-262 87 86.574315 hybrid +136_2-5 Q0 MARCO_48_1186270879-6 88 86.574009 hybrid +136_2-5 Q0 MARCO_41_633178534-4 89 86.568120 hybrid +136_2-5 Q0 MARCO_09_165023690-13 90 86.566434 hybrid +136_2-5 Q0 MARCO_00_792839559-1 91 86.559534 hybrid +136_2-5 Q0 MARCO_06_1615593549-92 92 86.556492 hybrid +136_2-5 Q0 MARCO_11_15007552-4 93 86.545506 hybrid +136_2-5 Q0 MARCO_55_641068757-3 94 86.543284 hybrid +136_2-5 Q0 KILT_2660363-2 95 86.534672 hybrid +136_2-5 Q0 MARCO_16_2887144109-77 96 86.527734 hybrid +136_2-5 Q0 MARCO_08_1717642655-1 97 86.525434 hybrid +136_2-5 Q0 MARCO_31_1177209948-1 98 86.517784 hybrid +136_2-5 Q0 MARCO_14_1706578219-4 99 86.512084 hybrid +136_2-5 Q0 MARCO_21_1215734981-8 100 86.505234 hybrid +137_1-1 Q0 KILT_9912495-4 1 95.446444 hybrid +137_1-1 Q0 KILT_9912495-3 2 94.942274 hybrid +137_1-1 Q0 KILT_9912495-1 3 93.372861 hybrid +137_1-1 Q0 MARCO_26_397313239-44 4 93.093675 hybrid +137_1-1 Q0 KILT_9912495-6 5 93.014115 hybrid +137_1-1 Q0 MARCO_31_719719292-1 6 92.628163 hybrid +137_1-1 Q0 MARCO_18_2910246170-6 7 91.713063 hybrid +137_1-1 Q0 KILT_9912495-5 8 91.573703 hybrid +137_1-1 Q0 MARCO_35_313211833-3 9 91.503723 hybrid +137_1-1 Q0 MARCO_55_1040397202-2 10 91.472863 hybrid +137_1-1 Q0 KILT_408292-13 11 91.312413 hybrid +137_1-1 Q0 MARCO_18_2910246170-4 12 91.264113 hybrid +137_1-1 Q0 MARCO_30_1549247804-2 13 91.252263 hybrid +137_1-1 Q0 MARCO_31_719719292-6 14 91.021713 hybrid +137_1-1 Q0 MARCO_31_719719292-3 15 90.865963 hybrid +137_1-1 Q0 MARCO_18_783618318-30 16 90.639914 hybrid +137_1-1 Q0 MARCO_18_2910246170-5 17 90.638363 hybrid +137_1-1 Q0 KILT_247365-2 18 90.618464 hybrid +137_1-1 Q0 MARCO_18_783618318-32 19 90.555413 hybrid +137_1-1 Q0 MARCO_04_654519061-15 20 90.511163 hybrid +137_1-1 Q0 KILT_247365-1 21 90.484513 hybrid +137_1-1 Q0 MARCO_31_719719292-2 22 90.455763 hybrid +137_1-1 Q0 MARCO_35_313211833-7 23 90.325324 hybrid +137_1-1 Q0 MARCO_18_2910246170-9 24 90.296164 hybrid +137_1-1 Q0 MARCO_49_1738263214-3 25 90.282213 hybrid +137_1-1 Q0 MARCO_13_1026447714-6 26 90.168364 hybrid +137_1-1 Q0 MARCO_18_2910246170-3 27 90.159213 hybrid +137_1-1 Q0 MARCO_18_2910049991-3 28 90.121813 hybrid +137_1-1 Q0 MARCO_26_397313239-45 29 90.002858 hybrid +137_1-1 Q0 MARCO_18_2910246170-22 30 89.934863 hybrid +137_1-1 Q0 MARCO_18_783618318-27 31 89.920313 hybrid +137_1-1 Q0 MARCO_48_1450710232-2 32 89.892464 hybrid +137_1-1 Q0 MARCO_49_646751923-2 33 89.881113 hybrid +137_1-1 Q0 MARCO_48_104435441-7 34 89.840513 hybrid +137_1-1 Q0 KILT_9912495-13 35 89.833014 hybrid +137_1-1 Q0 MARCO_06_1854467530-4 36 89.702813 hybrid +137_1-1 Q0 MARCO_31_719719292-9 37 89.656263 hybrid +137_1-1 Q0 MARCO_31_719719292-4 38 89.591063 hybrid +137_1-1 Q0 MARCO_48_104435441-2 39 89.582913 hybrid +137_1-1 Q0 MARCO_14_1571463715-3 40 89.576713 hybrid +137_1-1 Q0 MARCO_24_446293844-1 41 89.551613 hybrid +137_1-1 Q0 MARCO_48_1450710232-5 42 89.490413 hybrid +137_1-1 Q0 MARCO_18_2910049991-2 43 89.457963 hybrid +137_1-1 Q0 MARCO_49_1738263214-4 44 89.446313 hybrid +137_1-1 Q0 MARCO_26_331522881-121 45 89.423863 hybrid +137_1-1 Q0 MARCO_48_602048401-2 46 89.417763 hybrid +137_1-1 Q0 MARCO_18_2910246170-7 47 89.363663 hybrid +137_1-1 Q0 MARCO_50_1340018063-101 48 89.310663 hybrid +137_1-1 Q0 MARCO_13_1026447714-7 49 89.307413 hybrid +137_1-1 Q0 MARCO_55_191290238-2 50 89.298413 hybrid +137_1-1 Q0 MARCO_26_397313239-67 51 89.269010 hybrid +137_1-1 Q0 MARCO_43_846023892-3 52 89.214663 hybrid +137_1-1 Q0 MARCO_06_1854467530-1 53 89.185463 hybrid +137_1-1 Q0 MARCO_30_2053025072-11 54 89.183963 hybrid +137_1-1 Q0 MARCO_33_1476721706-2 55 89.178263 hybrid +137_1-1 Q0 MARCO_18_2910246170-2 56 89.174163 hybrid +137_1-1 Q0 MARCO_22_428501062-118 57 89.137513 hybrid +137_1-1 Q0 MARCO_18_2910049991-11 58 89.134563 hybrid +137_1-1 Q0 MARCO_18_783618318-20 59 89.122363 hybrid +137_1-1 Q0 KILT_247365-3 60 89.093263 hybrid +137_1-1 Q0 MARCO_03_293655812-300 61 89.087213 hybrid +137_1-1 Q0 MARCO_58_1153356040-7 62 89.038863 hybrid +137_1-1 Q0 MARCO_48_1564330825-4 63 88.988613 hybrid +137_1-1 Q0 MARCO_18_2910246170-30 64 88.931413 hybrid +137_1-1 Q0 MARCO_14_1571463715-2 65 88.893063 hybrid +137_1-1 Q0 MARCO_58_1722082970-1 66 88.877863 hybrid +137_1-1 Q0 MARCO_26_349288012-8 67 88.854013 hybrid +137_1-1 Q0 MARCO_18_2910246170-31 68 88.845263 hybrid +137_1-1 Q0 MARCO_43_846023892-2 69 88.831063 hybrid +137_1-1 Q0 MARCO_18_783618318-12 70 88.825163 hybrid +137_1-1 Q0 MARCO_49_1738263214-5 71 88.768013 hybrid +137_1-1 Q0 MARCO_14_1002277169-2 72 88.744363 hybrid +137_1-1 Q0 MARCO_26_353153774-59 73 88.707813 hybrid +137_1-1 Q0 KILT_247365-8 74 88.690063 hybrid +137_1-1 Q0 MARCO_18_2910049991-4 75 88.674513 hybrid +137_1-1 Q0 MARCO_35_313211833-4 76 88.635863 hybrid +137_1-1 Q0 MARCO_58_1471918465-3 77 88.629013 hybrid +137_1-1 Q0 MARCO_26_344035246-59 78 88.620247 hybrid +137_1-1 Q0 MARCO_25_216189390-62 79 88.614313 hybrid +137_1-1 Q0 MARCO_31_884593487-115 80 88.607263 hybrid +137_1-1 Q0 KILT_408292-10 81 88.603763 hybrid +137_1-1 Q0 KILT_8481853-4 82 88.581663 hybrid +137_1-1 Q0 MARCO_28_23289269-2 83 88.554563 hybrid +137_1-1 Q0 MARCO_30_1549247804-1 84 88.537563 hybrid +137_1-1 Q0 MARCO_26_344035246-58 85 88.531045 hybrid +137_1-1 Q0 MARCO_47_694619243-7 86 88.529063 hybrid +137_1-1 Q0 MARCO_54_1577290190-15 87 88.492813 hybrid +137_1-1 Q0 MARCO_17_1406390845-7 88 88.467313 hybrid +137_1-1 Q0 MARCO_52_53056813-1 89 88.462713 hybrid +137_1-1 Q0 MARCO_30_1549247804-3 90 88.461763 hybrid +137_1-1 Q0 MARCO_18_2910049991-9 91 88.445663 hybrid +137_1-1 Q0 MARCO_26_404008777-47 92 88.432600 hybrid +137_1-1 Q0 MARCO_14_1002277169-3 93 88.394363 hybrid +137_1-1 Q0 MARCO_50_1947007922-8 94 88.387913 hybrid +137_1-1 Q0 MARCO_50_1805313576-8 95 88.339413 hybrid +137_1-1 Q0 MARCO_25_216189390-63 96 88.333813 hybrid +137_1-1 Q0 MARCO_26_396165785-34 97 88.328002 hybrid +137_1-1 Q0 KILT_7230444-21 98 88.299163 hybrid +137_1-1 Q0 MARCO_49_1738263214-2 99 88.289163 hybrid +137_1-1 Q0 KILT_43294722-2 100 88.277913 hybrid +137_1-11 Q0 MARCO_44_609706399-6 1 90.940728 hybrid +137_1-11 Q0 MARCO_50_2240949679-56 2 90.915847 hybrid +137_1-11 Q0 MARCO_44_609297930-1 3 90.795047 hybrid +137_1-11 Q0 MARCO_30_558934876-12 4 90.681347 hybrid +137_1-11 Q0 MARCO_35_1356084938-2 5 90.579947 hybrid +137_1-11 Q0 MARCO_07_1580965634-5 6 90.271684 hybrid +137_1-11 Q0 MARCO_27_1554395827-1 7 90.197948 hybrid +137_1-11 Q0 MARCO_36_1385252696-8 8 90.186597 hybrid +137_1-11 Q0 MARCO_24_1290697822-2 9 90.169647 hybrid +137_1-11 Q0 MARCO_57_179961171-2 10 90.163297 hybrid +137_1-11 Q0 MARCO_30_562857078-9 11 90.093797 hybrid +137_1-11 Q0 MARCO_24_1291929822-10 12 89.928797 hybrid +137_1-11 Q0 MARCO_41_1241564357-51 13 89.861899 hybrid +137_1-11 Q0 MARCO_39_1130735262-4 14 89.830297 hybrid +137_1-11 Q0 MARCO_21_1014616977-34 15 89.829197 hybrid +137_1-11 Q0 MARCO_53_1361891562-2 16 89.824747 hybrid +137_1-11 Q0 MARCO_56_955861532-1 17 89.809447 hybrid +137_1-11 Q0 MARCO_44_609108777-2 18 89.792997 hybrid +137_1-11 Q0 MARCO_23_1813940565-1 19 89.776847 hybrid +137_1-11 Q0 MARCO_27_1552615991-4 20 89.740347 hybrid +137_1-11 Q0 MARCO_50_1362985060-7 21 89.729847 hybrid +137_1-11 Q0 MARCO_42_1104826988-12 22 89.715147 hybrid +137_1-11 Q0 MARCO_27_1427608066-2 23 89.702447 hybrid +137_1-11 Q0 MARCO_34_836152388-11 24 89.694297 hybrid +137_1-11 Q0 MARCO_40_175150328-10 25 89.690009 hybrid +137_1-11 Q0 MARCO_36_888487863-6 26 89.677015 hybrid +137_1-11 Q0 MARCO_32_1485465470-8 27 89.674747 hybrid +137_1-11 Q0 MARCO_32_1230545834-9 28 89.666147 hybrid +137_1-11 Q0 MARCO_50_485442108-7 29 89.665107 hybrid +137_1-11 Q0 MARCO_47_1058827486-2 30 89.664597 hybrid +137_1-11 Q0 MARCO_57_875386862-15 31 89.634747 hybrid +137_1-11 Q0 MARCO_35_231027854-16 32 89.628647 hybrid +137_1-11 Q0 MARCO_59_803259316-2 33 89.626847 hybrid +137_1-11 Q0 MARCO_50_1280687382-44 34 89.590397 hybrid +137_1-11 Q0 MARCO_17_903307348-53 35 89.560097 hybrid +137_1-11 Q0 MARCO_24_1292018524-2 36 89.557897 hybrid +137_1-11 Q0 MARCO_43_581408031-3 37 89.547497 hybrid +137_1-11 Q0 MARCO_44_609464324-2 38 89.533512 hybrid +137_1-11 Q0 MARCO_27_1553897305-5 39 89.511847 hybrid +137_1-11 Q0 MARCO_52_1652554245-2 40 89.509620 hybrid +137_1-11 Q0 MARCO_50_1506711576-37 41 89.502311 hybrid +137_1-11 Q0 KILT_12403253-14 42 89.500762 hybrid +137_1-11 Q0 MARCO_36_99529317-1 43 89.498147 hybrid +137_1-11 Q0 KILT_47069739-30 44 89.496734 hybrid +137_1-11 Q0 MARCO_04_1495812688-2 45 89.478697 hybrid +137_1-11 Q0 MARCO_27_1528155735-1 46 89.470797 hybrid +137_1-11 Q0 MARCO_41_101282651-1 47 89.470197 hybrid +137_1-11 Q0 MARCO_24_1292005910-2 48 89.450897 hybrid +137_1-11 Q0 MARCO_05_1326139057-2 49 89.444097 hybrid +137_1-11 Q0 MARCO_04_202171690-4 50 89.443047 hybrid +137_1-11 Q0 MARCO_14_729243887-1 51 89.438997 hybrid +137_1-11 Q0 MARCO_22_1795003517-3 52 89.402897 hybrid +137_1-11 Q0 MARCO_00_1161868671-3 53 89.399631 hybrid +137_1-11 Q0 MARCO_23_1795388474-1 54 89.383547 hybrid +137_1-11 Q0 MARCO_57_876525725-31 55 89.380697 hybrid +137_1-11 Q0 MARCO_50_2240949679-176 56 89.379547 hybrid +137_1-11 Q0 MARCO_51_185490121-3 57 89.365797 hybrid +137_1-11 Q0 MARCO_22_709713539-1 58 89.360797 hybrid +137_1-11 Q0 MARCO_35_1409874792-1 59 89.354097 hybrid +137_1-11 Q0 MARCO_54_1151025974-2 60 89.352197 hybrid +137_1-11 Q0 MARCO_27_1471073819-2 61 89.349947 hybrid +137_1-11 Q0 MARCO_55_349411182-18 62 89.345697 hybrid +137_1-11 Q0 MARCO_44_216057484-21 63 89.344947 hybrid +137_1-11 Q0 MARCO_43_1305680217-3 64 89.326497 hybrid +137_1-11 Q0 MARCO_50_1442251387-40 65 89.325690 hybrid +137_1-11 Q0 MARCO_50_1280687382-43 66 89.314297 hybrid +137_1-11 Q0 KILT_462387-1 67 89.308897 hybrid +137_1-11 Q0 MARCO_52_1649129340-3 68 89.303985 hybrid +137_1-11 Q0 MARCO_07_1580559307-11 69 89.293264 hybrid +137_1-11 Q0 MARCO_42_1104714867-61 70 89.273635 hybrid +137_1-11 Q0 MARCO_27_1471073819-1 71 89.268147 hybrid +137_1-11 Q0 MARCO_27_1518220177-9 72 89.261997 hybrid +137_1-11 Q0 MARCO_05_600532054-1 73 89.247939 hybrid +137_1-11 Q0 MARCO_44_611084419-1 74 89.242097 hybrid +137_1-11 Q0 MARCO_35_289780164-5 75 89.235997 hybrid +137_1-11 Q0 MARCO_11_40200448-48 76 89.226297 hybrid +137_1-11 Q0 MARCO_12_1866611257-14 77 89.223365 hybrid +137_1-11 Q0 MARCO_42_1439184466-15 78 89.219997 hybrid +137_1-11 Q0 MARCO_54_1963790818-6 79 89.215847 hybrid +137_1-11 Q0 MARCO_55_206408624-17 80 89.210097 hybrid +137_1-11 Q0 MARCO_12_1477167620-5 81 89.198097 hybrid +137_1-11 Q0 MARCO_29_130071069-2 82 89.197197 hybrid +137_1-11 Q0 MARCO_50_1313119222-2 83 89.191997 hybrid +137_1-11 Q0 MARCO_27_1522139341-10 84 89.189997 hybrid +137_1-11 Q0 MARCO_24_1291867734-4 85 89.185897 hybrid +137_1-11 Q0 MARCO_45_1459398455-6 86 89.183297 hybrid +137_1-11 Q0 MARCO_35_1607012-5 87 89.180047 hybrid +137_1-11 Q0 MARCO_23_1085604106-1 88 89.174415 hybrid +137_1-11 Q0 MARCO_07_146881531-7 89 89.167597 hybrid +137_1-11 Q0 MARCO_36_882633336-6 90 89.167197 hybrid +137_1-11 Q0 MARCO_27_716467557-3 91 89.152457 hybrid +137_1-11 Q0 MARCO_41_1909087560-9 92 89.152247 hybrid +137_1-11 Q0 MARCO_50_1126830836-18 93 89.151797 hybrid +137_1-11 Q0 MARCO_50_2240949679-17 94 89.146397 hybrid +137_1-11 Q0 MARCO_24_1291798482-3 95 89.137297 hybrid +137_1-11 Q0 MARCO_07_146881531-25 96 89.136447 hybrid +137_1-11 Q0 MARCO_24_1291916644-2 97 89.135647 hybrid +137_1-11 Q0 MARCO_30_562993379-3 98 89.132847 hybrid +137_1-11 Q0 MARCO_23_1788125778-13 99 89.132497 hybrid +137_1-11 Q0 MARCO_23_1788125778-15 100 89.132497 hybrid +137_1-3 Q0 KILT_9912495-3 1 94.713181 hybrid +137_1-3 Q0 KILT_9912495-6 2 94.486437 hybrid +137_1-3 Q0 KILT_9912495-1 3 94.367947 hybrid +137_1-3 Q0 KILT_9912495-4 4 93.992277 hybrid +137_1-3 Q0 MARCO_26_397313239-44 5 93.949330 hybrid +137_1-3 Q0 MARCO_55_1040397202-2 6 92.234553 hybrid +137_1-3 Q0 MARCO_31_719719292-1 7 91.962053 hybrid +137_1-3 Q0 MARCO_30_1549247804-2 8 91.550354 hybrid +137_1-3 Q0 KILT_408292-13 9 91.388654 hybrid +137_1-3 Q0 KILT_9912495-5 10 91.259998 hybrid +137_1-3 Q0 MARCO_31_719719292-6 11 91.097954 hybrid +137_1-3 Q0 MARCO_35_313211833-7 12 91.072783 hybrid +137_1-3 Q0 MARCO_18_2910246170-4 13 91.052403 hybrid +137_1-3 Q0 MARCO_31_719719292-3 14 90.942204 hybrid +137_1-3 Q0 KILT_247365-2 15 90.894653 hybrid +137_1-3 Q0 MARCO_18_2910246170-9 16 90.831154 hybrid +137_1-3 Q0 MARCO_18_783618318-30 17 90.716154 hybrid +137_1-3 Q0 MARCO_18_2910246170-5 18 90.714603 hybrid +137_1-3 Q0 MARCO_35_313211833-3 19 90.646708 hybrid +137_1-3 Q0 MARCO_18_783618318-32 20 90.631654 hybrid +137_1-3 Q0 MARCO_49_646751923-2 21 90.567304 hybrid +137_1-3 Q0 KILT_247365-1 22 90.560754 hybrid +137_1-3 Q0 MARCO_31_719719292-2 23 90.532003 hybrid +137_1-3 Q0 MARCO_48_1450710232-2 24 90.507954 hybrid +137_1-3 Q0 MARCO_18_2910246170-6 25 90.487003 hybrid +137_1-3 Q0 MARCO_26_397313239-45 26 90.233929 hybrid +137_1-3 Q0 MARCO_49_1738263214-3 27 90.163554 hybrid +137_1-3 Q0 MARCO_31_719719292-4 28 90.141904 hybrid +137_1-3 Q0 MARCO_18_2910049991-2 29 90.130904 hybrid +137_1-3 Q0 MARCO_18_2910049991-3 30 89.932504 hybrid +137_1-3 Q0 MARCO_04_654519061-15 31 89.763703 hybrid +137_1-3 Q0 MARCO_24_446293844-1 32 89.738753 hybrid +137_1-3 Q0 MARCO_18_783618318-27 33 89.731004 hybrid +137_1-3 Q0 MARCO_30_2053025072-11 34 89.706054 hybrid +137_1-3 Q0 MARCO_26_331522881-121 35 89.647954 hybrid +137_1-3 Q0 MARCO_52_53056813-1 36 89.632854 hybrid +137_1-3 Q0 MARCO_18_783618318-12 37 89.506854 hybrid +137_1-3 Q0 MARCO_31_719719292-9 38 89.466954 hybrid +137_1-3 Q0 MARCO_18_2910246170-22 39 89.427754 hybrid +137_1-3 Q0 KILT_8481853-4 40 89.331904 hybrid +137_1-3 Q0 KILT_408292-10 41 89.285504 hybrid +137_1-3 Q0 MARCO_13_1026447714-6 42 89.267104 hybrid +137_1-3 Q0 MARCO_18_2910246170-2 43 89.250404 hybrid +137_1-3 Q0 MARCO_43_846023892-2 44 89.244254 hybrid +137_1-3 Q0 MARCO_18_2910246170-3 45 89.237604 hybrid +137_1-3 Q0 MARCO_30_1549247804-3 46 89.215654 hybrid +137_1-3 Q0 MARCO_14_1571463715-2 47 89.180154 hybrid +137_1-3 Q0 KILT_247365-3 48 89.169504 hybrid +137_1-3 Q0 KILT_9912495-13 49 89.149804 hybrid +137_1-3 Q0 MARCO_26_397313239-67 50 89.133105 hybrid +137_1-3 Q0 MARCO_58_1153356040-7 51 89.104354 hybrid +137_1-3 Q0 MARCO_48_1564330825-4 52 89.101604 hybrid +137_1-3 Q0 MARCO_18_2910246170-30 53 89.007654 hybrid +137_1-3 Q0 MARCO_49_1738263214-4 54 88.958304 hybrid +137_1-3 Q0 MARCO_18_2910246170-31 55 88.921504 hybrid +137_1-3 Q0 MARCO_33_1476721706-2 56 88.909154 hybrid +137_1-3 Q0 MARCO_31_884593487-115 57 88.878954 hybrid +137_1-3 Q0 MARCO_26_344035246-59 58 88.838387 hybrid +137_1-3 Q0 MARCO_26_353153774-59 59 88.837078 hybrid +137_1-3 Q0 MARCO_28_23289269-2 60 88.821954 hybrid +137_1-3 Q0 MARCO_18_2910246170-7 61 88.821554 hybrid +137_1-3 Q0 MARCO_06_1854467530-4 62 88.817354 hybrid +137_1-3 Q0 KILT_4275935-4 63 88.809754 hybrid +137_1-3 Q0 MARCO_13_1026447714-7 64 88.785404 hybrid +137_1-3 Q0 KILT_247365-8 65 88.766304 hybrid +137_1-3 Q0 MARCO_18_2910049991-4 66 88.750754 hybrid +137_1-3 Q0 MARCO_18_2910049991-11 67 88.731604 hybrid +137_1-3 Q0 MARCO_04_654519061-7 68 88.731554 hybrid +137_1-3 Q0 MARCO_26_344035246-58 69 88.700571 hybrid +137_1-3 Q0 MARCO_25_216189390-62 70 88.680704 hybrid +137_1-3 Q0 MARCO_43_840301554-6 71 88.670954 hybrid +137_1-3 Q0 MARCO_17_2294260093-18 72 88.619454 hybrid +137_1-3 Q0 MARCO_43_846023892-1 73 88.618604 hybrid +137_1-3 Q0 MARCO_49_1738263214-2 74 88.618603 hybrid +137_1-3 Q0 MARCO_30_1549247804-1 75 88.603804 hybrid +137_1-3 Q0 MARCO_55_191290238-2 76 88.579254 hybrid +137_1-3 Q0 MARCO_26_349288012-8 77 88.576354 hybrid +137_1-3 Q0 MARCO_18_2910049991-9 78 88.521904 hybrid +137_1-3 Q0 MARCO_58_1722082970-1 79 88.480254 hybrid +137_1-3 Q0 MARCO_48_104435441-7 80 88.472454 hybrid +137_1-3 Q0 MARCO_14_1002277169-3 81 88.470604 hybrid +137_1-3 Q0 MARCO_18_260511749-7 82 88.467704 hybrid +137_1-3 Q0 MARCO_50_1947007922-8 83 88.449354 hybrid +137_1-3 Q0 MARCO_48_1450710232-5 84 88.436304 hybrid +137_1-3 Q0 MARCO_48_602048401-2 85 88.423704 hybrid +137_1-3 Q0 MARCO_25_216189390-63 86 88.410054 hybrid +137_1-3 Q0 MARCO_18_783618318-20 87 88.393804 hybrid +137_1-3 Q0 MARCO_06_1854467530-1 88 88.386954 hybrid +137_1-3 Q0 MARCO_14_1571463715-3 89 88.386404 hybrid +137_1-3 Q0 MARCO_03_1155658094-32 90 88.383754 hybrid +137_1-3 Q0 MARCO_56_88810689-9 91 88.382904 hybrid +137_1-3 Q0 KILT_7230444-21 92 88.375404 hybrid +137_1-3 Q0 MARCO_58_1471918465-3 93 88.363054 hybrid +137_1-3 Q0 MARCO_48_104435441-2 94 88.356854 hybrid +137_1-3 Q0 MARCO_26_331522881-122 95 88.331454 hybrid +137_1-3 Q0 MARCO_14_1002277169-2 96 88.319604 hybrid +137_1-3 Q0 KILT_726659-1 97 88.267154 hybrid +137_1-3 Q0 MARCO_36_824432747-3 98 88.267153 hybrid +137_1-3 Q0 MARCO_48_104435441-5 99 88.256354 hybrid +137_1-3 Q0 MARCO_18_783618318-1 100 88.244004 hybrid +137_1-5 Q0 KILT_9912495-4 1 117.781366 hybrid +137_1-5 Q0 MARCO_18_2910246170-6 2 111.018539 hybrid +137_1-5 Q0 KILT_9912495-3 3 108.585201 hybrid +137_1-5 Q0 KILT_9912495-1 4 106.831242 hybrid +137_1-5 Q0 MARCO_26_397313239-44 5 106.325085 hybrid +137_1-5 Q0 KILT_9912495-5 6 105.973211 hybrid +137_1-5 Q0 MARCO_18_2910246170-4 7 105.852640 hybrid +137_1-5 Q0 MARCO_18_2910246170-5 8 104.774439 hybrid +137_1-5 Q0 KILT_9912495-6 9 103.786652 hybrid +137_1-5 Q0 MARCO_18_2910246170-7 10 103.694738 hybrid +137_1-5 Q0 MARCO_43_846023892-2 11 103.601139 hybrid +137_1-5 Q0 MARCO_18_2910246170-9 12 103.455040 hybrid +137_1-5 Q0 MARCO_28_23289269-2 13 103.380339 hybrid +137_1-5 Q0 MARCO_31_719719292-9 14 103.349390 hybrid +137_1-5 Q0 KILT_9912495-2 15 103.223619 hybrid +137_1-5 Q0 MARCO_49_1738263214-2 16 103.222990 hybrid +137_1-5 Q0 MARCO_15_104587312-71 17 103.212572 hybrid +137_1-5 Q0 MARCO_48_1450710232-2 18 103.080589 hybrid +137_1-5 Q0 MARCO_35_313211833-3 19 102.714083 hybrid +137_1-5 Q0 MARCO_58_1153356040-7 20 102.632639 hybrid +137_1-5 Q0 MARCO_13_1026447714-6 21 102.613588 hybrid +137_1-5 Q0 MARCO_31_719719292-1 22 102.450939 hybrid +137_1-5 Q0 MARCO_31_719719292-4 23 101.505890 hybrid +137_1-5 Q0 MARCO_18_2910049991-2 24 101.472839 hybrid +137_1-5 Q0 MARCO_18_2910246170-3 25 100.942589 hybrid +137_1-5 Q0 MARCO_49_1738263214-3 26 100.870840 hybrid +137_1-5 Q0 MARCO_30_2053025072-11 27 100.706940 hybrid +137_1-5 Q0 MARCO_18_2910049991-3 28 100.471788 hybrid +137_1-5 Q0 MARCO_55_1040397202-2 29 100.365839 hybrid +137_1-5 Q0 KILT_247365-1 30 100.199690 hybrid +137_1-5 Q0 MARCO_24_446293844-1 31 100.197489 hybrid +137_1-5 Q0 MARCO_31_719719292-6 32 99.984739 hybrid +137_1-5 Q0 MARCO_48_104435441-2 33 99.625589 hybrid +137_1-5 Q0 KILT_247365-2 34 99.595139 hybrid +137_1-5 Q0 MARCO_24_446293844-3 35 99.562988 hybrid +137_1-5 Q0 MARCO_55_191290238-2 36 99.505190 hybrid +137_1-5 Q0 MARCO_58_1471918465-3 37 99.453039 hybrid +137_1-5 Q0 MARCO_30_1549247804-2 38 99.435989 hybrid +137_1-5 Q0 MARCO_33_1476721706-2 39 99.217039 hybrid +137_1-5 Q0 MARCO_04_654519061-15 40 99.134739 hybrid +137_1-5 Q0 MARCO_50_1340018063-101 41 99.126888 hybrid +137_1-5 Q0 MARCO_18_783618318-12 42 98.977440 hybrid +137_1-5 Q0 MARCO_35_313211833-4 43 98.821958 hybrid +137_1-5 Q0 MARCO_18_2910049991-11 44 98.754639 hybrid +137_1-5 Q0 MARCO_06_1854467530-3 45 98.695839 hybrid +137_1-5 Q0 MARCO_52_54527362-2 46 98.617039 hybrid +137_1-5 Q0 MARCO_18_2910246170-2 47 98.594740 hybrid +137_1-5 Q0 MARCO_30_1549247804-1 48 98.556089 hybrid +137_1-5 Q0 MARCO_31_719719292-2 49 98.536489 hybrid +137_1-5 Q0 MARCO_43_846023892-1 50 98.492088 hybrid +137_1-5 Q0 MARCO_48_104435441-5 51 98.462439 hybrid +137_1-5 Q0 MARCO_13_1026447714-1 52 98.213388 hybrid +137_1-5 Q0 MARCO_14_1002277169-2 53 98.164440 hybrid +137_1-5 Q0 MARCO_24_426258085-3 54 98.105389 hybrid +137_1-5 Q0 MARCO_25_365440623-2 55 98.078789 hybrid +137_1-5 Q0 MARCO_18_2910246170-22 56 98.056540 hybrid +137_1-5 Q0 MARCO_49_646751923-2 57 98.003590 hybrid +137_1-5 Q0 MARCO_18_2910049991-8 58 97.967239 hybrid +137_1-5 Q0 MARCO_18_2910246170-18 59 97.957489 hybrid +137_1-5 Q0 MARCO_48_602048401-1 60 97.900290 hybrid +137_1-5 Q0 MARCO_23_1068020442-8 61 97.826639 hybrid +137_1-5 Q0 MARCO_30_1549247804-3 62 97.740389 hybrid +137_1-5 Q0 MARCO_14_1571463715-2 63 97.696939 hybrid +137_1-5 Q0 MARCO_14_1002277169-3 64 97.694189 hybrid +137_1-5 Q0 MARCO_35_313211833-7 65 97.586010 hybrid +137_1-5 Q0 MARCO_35_313211833-6 66 97.564134 hybrid +137_1-5 Q0 MARCO_22_1258365156-9 67 97.493389 hybrid +137_1-5 Q0 MARCO_03_293655812-300 68 97.419689 hybrid +137_1-5 Q0 MARCO_43_846023892-3 69 97.398640 hybrid +137_1-5 Q0 MARCO_52_53056813-1 70 97.337639 hybrid +137_1-5 Q0 MARCO_26_397313239-45 71 97.313457 hybrid +137_1-5 Q0 MARCO_31_719719292-7 72 97.213140 hybrid +137_1-5 Q0 MARCO_56_88810689-10 73 97.202640 hybrid +137_1-5 Q0 MARCO_48_1564330825-4 74 97.161289 hybrid +137_1-5 Q0 KILT_247365-3 75 97.121940 hybrid +137_1-5 Q0 KILT_408292-10 76 97.059889 hybrid +137_1-5 Q0 MARCO_48_602048401-2 77 96.993589 hybrid +137_1-5 Q0 MARCO_48_104435441-7 78 96.959789 hybrid +137_1-5 Q0 MARCO_31_719719292-8 79 96.955839 hybrid +137_1-5 Q0 MARCO_43_840301554-6 80 96.936639 hybrid +137_1-5 Q0 MARCO_22_1256385126-3 81 96.933990 hybrid +137_1-5 Q0 MARCO_14_1571463715-3 82 96.908639 hybrid +137_1-5 Q0 MARCO_24_426258085-1 83 96.732089 hybrid +137_1-5 Q0 MARCO_18_2910049991-4 84 96.703189 hybrid +137_1-5 Q0 KILT_9912495-13 85 96.696760 hybrid +137_1-5 Q0 MARCO_58_1722082970-1 86 96.665790 hybrid +137_1-5 Q0 MARCO_31_719719292-3 87 96.534289 hybrid +137_1-5 Q0 MARCO_48_1450710232-3 88 96.428390 hybrid +137_1-5 Q0 MARCO_26_397313239-67 89 96.311225 hybrid +137_1-5 Q0 MARCO_18_2910246170-1 90 96.269340 hybrid +137_1-5 Q0 MARCO_13_1026447714-7 91 96.237289 hybrid +137_1-5 Q0 MARCO_04_654519061-7 92 96.152689 hybrid +137_1-5 Q0 MARCO_18_2910246170-8 93 96.093589 hybrid +137_1-5 Q0 MARCO_16_2942216326-6 94 96.073139 hybrid +137_1-5 Q0 KILT_9912495-9 95 96.051809 hybrid +137_1-5 Q0 MARCO_06_1854467530-2 96 96.021689 hybrid +137_1-5 Q0 MARCO_18_2910049991-9 97 95.989140 hybrid +137_1-5 Q0 MARCO_18_783618318-1 98 95.952939 hybrid +137_1-5 Q0 MARCO_20_666600404-2 99 95.936139 hybrid +137_1-5 Q0 MARCO_33_1476721706-1 100 95.918189 hybrid +137_1-7 Q0 MARCO_35_313211833-7 1 90.284810 hybrid +137_1-7 Q0 MARCO_35_313211833-6 2 90.037337 hybrid +137_1-7 Q0 MARCO_26_410531635-58 3 90.007089 hybrid +137_1-7 Q0 MARCO_26_410531635-59 4 89.279372 hybrid +137_1-7 Q0 KILT_9912495-4 5 89.239977 hybrid +137_1-7 Q0 MARCO_26_397313239-44 6 89.097425 hybrid +137_1-7 Q0 MARCO_35_313211833-3 7 88.675714 hybrid +137_1-7 Q0 MARCO_44_39582049-6 8 88.635269 hybrid +137_1-7 Q0 MARCO_42_91248100-252 9 88.632159 hybrid +137_1-7 Q0 KILT_9912495-13 10 88.607261 hybrid +137_1-7 Q0 MARCO_22_1168232426-1 11 88.459059 hybrid +137_1-7 Q0 MARCO_04_654519061-8 12 88.457909 hybrid +137_1-7 Q0 KILT_9912495-6 13 88.398345 hybrid +137_1-7 Q0 MARCO_51_1645613397-3 14 88.395409 hybrid +137_1-7 Q0 MARCO_15_104587312-71 15 88.374620 hybrid +137_1-7 Q0 KILT_9912495-7 16 88.372927 hybrid +137_1-7 Q0 MARCO_31_719719292-5 17 88.347359 hybrid +137_1-7 Q0 MARCO_31_430990620-9 18 88.335259 hybrid +137_1-7 Q0 KILT_9912495-9 19 88.331041 hybrid +137_1-7 Q0 MARCO_31_719719292-7 20 88.272059 hybrid +137_1-7 Q0 MARCO_18_2910049991-3 21 88.228759 hybrid +137_1-7 Q0 MARCO_52_1205136674-6 22 88.217142 hybrid +137_1-7 Q0 MARCO_00_831084902-5 23 88.196509 hybrid +137_1-7 Q0 MARCO_55_191290238-1 24 88.181309 hybrid +137_1-7 Q0 MARCO_41_1173544761-32 25 88.155619 hybrid +137_1-7 Q0 MARCO_23_1068020442-3 26 88.088109 hybrid +137_1-7 Q0 MARCO_01_796399095-2 27 88.075480 hybrid +137_1-7 Q0 MARCO_01_796399095-62 28 88.070337 hybrid +137_1-7 Q0 MARCO_14_1051986264-6 29 88.059659 hybrid +137_1-7 Q0 MARCO_32_151745117-4 30 88.047569 hybrid +137_1-7 Q0 MARCO_41_1179750603-35 31 88.023359 hybrid +137_1-7 Q0 MARCO_48_1450710232-3 32 88.006109 hybrid +137_1-7 Q0 MARCO_28_448617516-4 33 88.005991 hybrid +137_1-7 Q0 MARCO_31_430990620-11 34 88.002810 hybrid +137_1-7 Q0 MARCO_48_104435441-6 35 88.000659 hybrid +137_1-7 Q0 MARCO_12_278460211-19 36 87.995646 hybrid +137_1-7 Q0 MARCO_13_1026447714-10 37 87.967559 hybrid +137_1-7 Q0 MARCO_26_378206685-98 38 87.963533 hybrid +137_1-7 Q0 MARCO_07_545692170-37 39 87.961069 hybrid +137_1-7 Q0 MARCO_31_719719292-6 40 87.957059 hybrid +137_1-7 Q0 MARCO_30_2053025072-11 41 87.941360 hybrid +137_1-7 Q0 MARCO_50_2486569954-17 42 87.934534 hybrid +137_1-7 Q0 MARCO_50_835581512-26 43 87.933959 hybrid +137_1-7 Q0 MARCO_00_1049061660-2 44 87.911409 hybrid +137_1-7 Q0 MARCO_35_313211833-5 45 87.882730 hybrid +137_1-7 Q0 MARCO_01_796399095-95 46 87.877527 hybrid +137_1-7 Q0 KILT_9912495-2 47 87.868533 hybrid +137_1-7 Q0 MARCO_41_1173544761-50 48 87.865480 hybrid +137_1-7 Q0 MARCO_44_189399265-7 49 87.859560 hybrid +137_1-7 Q0 MARCO_20_161624623-22 50 87.858109 hybrid +137_1-7 Q0 MARCO_56_971891588-1 51 87.857659 hybrid +137_1-7 Q0 MARCO_50_1243427727-58 52 87.850060 hybrid +137_1-7 Q0 MARCO_02_953186328-4 53 87.840759 hybrid +137_1-7 Q0 MARCO_31_430990620-1 54 87.823859 hybrid +137_1-7 Q0 MARCO_02_1357127227-9 55 87.800737 hybrid +137_1-7 Q0 MARCO_50_1668238923-36 56 87.798403 hybrid +137_1-7 Q0 MARCO_26_408882664-61 57 87.771517 hybrid +137_1-7 Q0 MARCO_50_1663146146-45 58 87.763666 hybrid +137_1-7 Q0 MARCO_24_446293844-3 59 87.751109 hybrid +137_1-7 Q0 MARCO_20_161624623-42 60 87.741210 hybrid +137_1-7 Q0 MARCO_31_719719292-4 61 87.738859 hybrid +137_1-7 Q0 MARCO_24_537810-25 62 87.711603 hybrid +137_1-7 Q0 MARCO_20_879268420-1 63 87.700409 hybrid +137_1-7 Q0 KILT_41077350-5 64 87.692309 hybrid +137_1-7 Q0 KILT_9912495-3 65 87.684961 hybrid +137_1-7 Q0 MARCO_58_1178297016-1 66 87.684656 hybrid +137_1-7 Q0 MARCO_50_1603056025-3 67 87.684603 hybrid +137_1-7 Q0 MARCO_00_71049447-136 68 87.683459 hybrid +137_1-7 Q0 MARCO_20_1472173685-1 69 87.678559 hybrid +137_1-7 Q0 MARCO_04_654519061-2 70 87.672859 hybrid +137_1-7 Q0 MARCO_35_313211833-4 71 87.672243 hybrid +137_1-7 Q0 MARCO_40_1276838012-18 72 87.671809 hybrid +137_1-7 Q0 MARCO_50_1603056025-17 73 87.670527 hybrid +137_1-7 Q0 MARCO_50_521867189-1 74 87.670009 hybrid +137_1-7 Q0 MARCO_01_1971657126-4 75 87.669309 hybrid +137_1-7 Q0 MARCO_26_376804511-43 76 87.663042 hybrid +137_1-7 Q0 MARCO_50_1689089314-21 77 87.662159 hybrid +137_1-7 Q0 MARCO_14_113848999-4 78 87.660509 hybrid +137_1-7 Q0 MARCO_13_1026447714-15 79 87.660110 hybrid +137_1-7 Q0 MARCO_12_278460211-22 80 87.659494 hybrid +137_1-7 Q0 MARCO_58_1153356040-7 81 87.656809 hybrid +137_1-7 Q0 MARCO_26_404008777-41 82 87.655756 hybrid +137_1-7 Q0 MARCO_50_868338397-17 83 87.650759 hybrid +137_1-7 Q0 MARCO_32_305062564-5 84 87.644259 hybrid +137_1-7 Q0 MARCO_26_406817309-41 85 87.640162 hybrid +137_1-7 Q0 MARCO_26_397313239-67 86 87.637964 hybrid +137_1-7 Q0 MARCO_26_377868967-54 87 87.637468 hybrid +137_1-7 Q0 MARCO_36_1246328845-3 88 87.627810 hybrid +137_1-7 Q0 MARCO_48_1450710232-2 89 87.623659 hybrid +137_1-7 Q0 MARCO_19_2201897351-3 90 87.621209 hybrid +137_1-7 Q0 MARCO_12_278460211-30 91 87.619440 hybrid +137_1-7 Q0 MARCO_41_1173544761-6 92 87.613352 hybrid +137_1-7 Q0 MARCO_42_147415041-283 93 87.610659 hybrid +137_1-7 Q0 MARCO_26_1097183196-4 94 87.607309 hybrid +137_1-7 Q0 MARCO_24_446293844-4 95 87.606009 hybrid +137_1-7 Q0 MARCO_20_601772450-9 96 87.604310 hybrid +137_1-7 Q0 MARCO_35_384353340-3 97 87.595160 hybrid +137_1-7 Q0 MARCO_07_545692170-20 98 87.593592 hybrid +137_1-7 Q0 MARCO_23_1070091829-6 99 87.593109 hybrid +137_1-7 Q0 MARCO_26_357680895-20 100 87.581736 hybrid +137_1-9 Q0 MARCO_56_1314990292-1 1 88.443459 hybrid +137_1-9 Q0 MARCO_25_365440623-3 2 88.332595 hybrid +137_1-9 Q0 MARCO_07_780339649-4 3 88.314645 hybrid +137_1-9 Q0 MARCO_16_1582713770-41 4 88.008895 hybrid +137_1-9 Q0 MARCO_10_552964251-1 5 87.825552 hybrid +137_1-9 Q0 MARCO_25_1770430570-5 6 87.730207 hybrid +137_1-9 Q0 MARCO_46_1455096042-2 7 87.656995 hybrid +137_1-9 Q0 MARCO_08_756892048-28 8 87.612945 hybrid +137_1-9 Q0 MARCO_46_1413170949-2 9 87.600845 hybrid +137_1-9 Q0 MARCO_55_160398984-1 10 87.499945 hybrid +137_1-9 Q0 MARCO_26_1101159313-8 11 87.489395 hybrid +137_1-9 Q0 MARCO_27_763613530-1 12 87.474145 hybrid +137_1-9 Q0 MARCO_10_378336026-2 13 87.419195 hybrid +137_1-9 Q0 MARCO_05_487478111-12 14 87.372906 hybrid +137_1-9 Q0 MARCO_07_1209443233-1 15 87.287545 hybrid +137_1-9 Q0 MARCO_07_780339649-1 16 87.224895 hybrid +137_1-9 Q0 MARCO_01_693813107-1 17 87.222166 hybrid +137_1-9 Q0 MARCO_32_1619281421-15 18 87.192595 hybrid +137_1-9 Q0 MARCO_01_693146435-5 19 87.127706 hybrid +137_1-9 Q0 MARCO_46_1520580759-5 20 87.063413 hybrid +137_1-9 Q0 MARCO_16_1685676070-13 21 87.062162 hybrid +137_1-9 Q0 MARCO_05_802198248-1 22 87.032745 hybrid +137_1-9 Q0 MARCO_37_1322912604-1 23 87.031995 hybrid +137_1-9 Q0 MARCO_51_866428929-4 24 87.030845 hybrid +137_1-9 Q0 MARCO_20_1703526236-3 25 87.011295 hybrid +137_1-9 Q0 MARCO_25_1428379061-1 26 87.005155 hybrid +137_1-9 Q0 MARCO_46_1482981851-2 27 87.004102 hybrid +137_1-9 Q0 MARCO_56_1314117781-14 28 86.994070 hybrid +137_1-9 Q0 MARCO_46_1495548279-4 29 86.980291 hybrid +137_1-9 Q0 MARCO_37_1184628030-5 30 86.958204 hybrid +137_1-9 Q0 MARCO_36_996899171-3 31 86.932127 hybrid +137_1-9 Q0 MARCO_07_780339649-12 32 86.912195 hybrid +137_1-9 Q0 MARCO_37_1184628030-3 33 86.900121 hybrid +137_1-9 Q0 MARCO_34_894073251-5 34 86.895246 hybrid +137_1-9 Q0 MARCO_17_3317474959-26 35 86.880745 hybrid +137_1-9 Q0 MARCO_34_16228045-4 36 86.876395 hybrid +137_1-9 Q0 MARCO_35_421238327-1 37 86.872694 hybrid +137_1-9 Q0 MARCO_35_421238327-4 38 86.872266 hybrid +137_1-9 Q0 MARCO_31_166258844-6 39 86.870945 hybrid +137_1-9 Q0 MARCO_43_65941739-1 40 86.855345 hybrid +137_1-9 Q0 MARCO_21_1454970738-1 41 86.848630 hybrid +137_1-9 Q0 MARCO_15_109509717-1 42 86.844091 hybrid +137_1-9 Q0 MARCO_12_1178852231-15 43 86.834295 hybrid +137_1-9 Q0 MARCO_37_1184628030-1 44 86.831731 hybrid +137_1-9 Q0 MARCO_19_2179459214-2 45 86.828595 hybrid +137_1-9 Q0 MARCO_46_1493192350-2 46 86.821638 hybrid +137_1-9 Q0 MARCO_54_2036200848-16 47 86.813779 hybrid +137_1-9 Q0 MARCO_37_1515146581-12 48 86.813764 hybrid +137_1-9 Q0 MARCO_00_719251836-12 49 86.813764 hybrid +137_1-9 Q0 MARCO_29_28020443-4 50 86.800268 hybrid +137_1-9 Q0 MARCO_31_1353232098-6 51 86.790695 hybrid +137_1-9 Q0 MARCO_17_4337469976-13 52 86.787045 hybrid +137_1-9 Q0 MARCO_25_1428433430-1 53 86.775144 hybrid +137_1-9 Q0 MARCO_54_1861230181-2 54 86.770627 hybrid +137_1-9 Q0 MARCO_12_1958255118-6 55 86.751445 hybrid +137_1-9 Q0 MARCO_20_607257747-3 56 86.744445 hybrid +137_1-9 Q0 MARCO_49_1302911115-78 57 86.739445 hybrid +137_1-9 Q0 MARCO_29_1598174442-1 58 86.736895 hybrid +137_1-9 Q0 MARCO_50_2056350954-2 59 86.726895 hybrid +137_1-9 Q0 MARCO_52_1812230597-5 60 86.707945 hybrid +137_1-9 Q0 MARCO_16_1582713770-43 61 86.693295 hybrid +137_1-9 Q0 MARCO_16_1684497283-34 62 86.693052 hybrid +137_1-9 Q0 MARCO_41_966383574-27 63 86.692695 hybrid +137_1-9 Q0 MARCO_25_1428379061-2 64 86.688756 hybrid +137_1-9 Q0 MARCO_50_2056350954-1 65 86.686795 hybrid +137_1-9 Q0 MARCO_52_1377174011-8 66 86.686094 hybrid +137_1-9 Q0 MARCO_21_1454832992-7 67 86.681745 hybrid +137_1-9 Q0 MARCO_29_663445075-10 68 86.677432 hybrid +137_1-9 Q0 MARCO_47_87374758-5 69 86.673145 hybrid +137_1-9 Q0 MARCO_37_719484606-14 70 86.671339 hybrid +137_1-9 Q0 MARCO_25_1428379061-4 71 86.654600 hybrid +137_1-9 Q0 MARCO_00_1152880314-5 72 86.651695 hybrid +137_1-9 Q0 MARCO_56_1872666572-2 73 86.643345 hybrid +137_1-9 Q0 MARCO_07_619012573-9 74 86.633512 hybrid +137_1-9 Q0 MARCO_30_318386281-42 75 86.628245 hybrid +137_1-9 Q0 MARCO_43_1241999230-5 76 86.624319 hybrid +137_1-9 Q0 MARCO_24_1934570686-4 77 86.621145 hybrid +137_1-9 Q0 KILT_57069591-4 78 86.612845 hybrid +137_1-9 Q0 MARCO_11_1458143844-1 79 86.594195 hybrid +137_1-9 Q0 MARCO_55_717500246-1 80 86.593656 hybrid +137_1-9 Q0 MARCO_18_189200557-19 81 86.590795 hybrid +137_1-9 Q0 MARCO_16_1684497283-36 82 86.588544 hybrid +137_1-9 Q0 MARCO_37_1516943259-5 83 86.584722 hybrid +137_1-9 Q0 MARCO_59_222179673-2 84 86.583895 hybrid +137_1-9 Q0 MARCO_07_258528921-2 85 86.582822 hybrid +137_1-9 Q0 MARCO_41_1198512642-25 86 86.580645 hybrid +137_1-9 Q0 MARCO_43_1273083537-1 87 86.577810 hybrid +137_1-9 Q0 MARCO_48_831620250-9 88 86.575495 hybrid +137_1-9 Q0 MARCO_16_1551471086-38 89 86.571745 hybrid +137_1-9 Q0 MARCO_27_1554283608-8 90 86.566295 hybrid +137_1-9 Q0 KILT_1338275-11 91 86.563445 hybrid +137_1-9 Q0 MARCO_12_1958255118-19 92 86.558945 hybrid +137_1-9 Q0 MARCO_01_169769478-15 93 86.558645 hybrid +137_1-9 Q0 MARCO_37_1513929449-16 94 86.555021 hybrid +137_1-9 Q0 MARCO_00_719092455-15 95 86.555021 hybrid +137_1-9 Q0 MARCO_37_1514563964-16 96 86.555021 hybrid +137_1-9 Q0 MARCO_37_1515184339-17 97 86.555021 hybrid +137_1-9 Q0 MARCO_37_1516657940-14 98 86.555021 hybrid +137_1-9 Q0 MARCO_00_719191069-16 99 86.555021 hybrid +137_1-9 Q0 MARCO_00_718646688-13 100 86.555021 hybrid +138_1-1 Q0 MARCO_00_1673016414-87 1 92.967375 hybrid +138_1-1 Q0 MARCO_29_778684157-1 2 92.113841 hybrid +138_1-1 Q0 MARCO_56_500511523-4 3 92.021871 hybrid +138_1-1 Q0 MARCO_57_139128300-2 4 91.841775 hybrid +138_1-1 Q0 MARCO_29_778684157-5 5 91.819250 hybrid +138_1-1 Q0 MARCO_55_811430049-1 6 91.805326 hybrid +138_1-1 Q0 MARCO_32_1011596696-4 7 91.600695 hybrid +138_1-1 Q0 MARCO_22_1579067158-1 8 91.592059 hybrid +138_1-1 Q0 MARCO_44_1519625347-3 9 91.556425 hybrid +138_1-1 Q0 MARCO_45_979353361-14 10 91.450049 hybrid +138_1-1 Q0 MARCO_14_660217654-1 11 91.424726 hybrid +138_1-1 Q0 MARCO_00_1673016414-78 12 91.261225 hybrid +138_1-1 Q0 MARCO_26_729899077-1 13 91.157547 hybrid +138_1-1 Q0 MARCO_41_2135663326-2 14 91.134887 hybrid +138_1-1 Q0 MARCO_56_500511523-1 15 91.066890 hybrid +138_1-1 Q0 MARCO_14_43917945-3 16 91.061744 hybrid +138_1-1 Q0 MARCO_47_715185503-3 17 91.060425 hybrid +138_1-1 Q0 MARCO_47_715345133-3 18 91.059225 hybrid +138_1-1 Q0 MARCO_14_43917945-5 19 91.047530 hybrid +138_1-1 Q0 MARCO_14_43649755-2 20 91.017428 hybrid +138_1-1 Q0 MARCO_26_729899077-2 21 90.921800 hybrid +138_1-1 Q0 MARCO_59_441044989-4 22 90.912063 hybrid +138_1-1 Q0 MARCO_31_942788861-12 23 90.894019 hybrid +138_1-1 Q0 MARCO_14_1441937776-4 24 90.867375 hybrid +138_1-1 Q0 MARCO_44_1519625347-2 25 90.828475 hybrid +138_1-1 Q0 MARCO_56_500511523-2 26 90.813543 hybrid +138_1-1 Q0 MARCO_25_222988143-1 27 90.791525 hybrid +138_1-1 Q0 MARCO_56_500502618-2 28 90.738467 hybrid +138_1-1 Q0 MARCO_00_995991042-5 29 90.726525 hybrid +138_1-1 Q0 MARCO_25_1049627738-10 30 90.716375 hybrid +138_1-1 Q0 MARCO_46_1324369355-1 31 90.698475 hybrid +138_1-1 Q0 MARCO_50_468797757-20 32 90.686175 hybrid +138_1-1 Q0 MARCO_37_1247761256-2 33 90.674176 hybrid +138_1-1 Q0 MARCO_32_652045395-19 34 90.667925 hybrid +138_1-1 Q0 MARCO_29_661253184-2 35 90.665321 hybrid +138_1-1 Q0 MARCO_54_1859241767-3 36 90.662975 hybrid +138_1-1 Q0 MARCO_30_595028831-18 37 90.662975 hybrid +138_1-1 Q0 MARCO_50_502499950-13 38 90.657525 hybrid +138_1-1 Q0 MARCO_47_1308048954-6 39 90.636054 hybrid +138_1-1 Q0 MARCO_47_715185503-2 40 90.620775 hybrid +138_1-1 Q0 MARCO_14_43917945-14 41 90.599807 hybrid +138_1-1 Q0 MARCO_00_1163035772-1 42 90.598275 hybrid +138_1-1 Q0 MARCO_50_468941601-23 43 90.565325 hybrid +138_1-1 Q0 MARCO_49_1770518418-1 44 90.549925 hybrid +138_1-1 Q0 MARCO_32_652045395-51 45 90.535275 hybrid +138_1-1 Q0 MARCO_12_1728719434-11 46 90.532531 hybrid +138_1-1 Q0 MARCO_50_1662318356-8 47 90.529624 hybrid +138_1-1 Q0 MARCO_47_359906930-3 48 90.519475 hybrid +138_1-1 Q0 MARCO_32_652045395-30 49 90.514075 hybrid +138_1-1 Q0 MARCO_00_1673016414-70 50 90.508525 hybrid +138_1-1 Q0 MARCO_32_884498271-10 51 90.503631 hybrid +138_1-1 Q0 MARCO_50_517985630-11 52 90.497252 hybrid +138_1-1 Q0 MARCO_08_1119902178-11 53 90.496024 hybrid +138_1-1 Q0 MARCO_37_376061342-30 54 90.494567 hybrid +138_1-1 Q0 MARCO_16_1124712427-2 55 90.485775 hybrid +138_1-1 Q0 MARCO_46_1312513063-5 56 90.477187 hybrid +138_1-1 Q0 MARCO_14_660217654-6 57 90.476375 hybrid +138_1-1 Q0 MARCO_23_229332365-7 58 90.472375 hybrid +138_1-1 Q0 MARCO_06_1779944939-1 59 90.470175 hybrid +138_1-1 Q0 MARCO_56_500511523-5 60 90.463729 hybrid +138_1-1 Q0 MARCO_27_328268220-9 61 90.459075 hybrid +138_1-1 Q0 MARCO_13_454744502-1 62 90.442710 hybrid +138_1-1 Q0 MARCO_01_1119457269-1 63 90.441425 hybrid +138_1-1 Q0 MARCO_47_715300561-12 64 90.440825 hybrid +138_1-1 Q0 MARCO_07_934032591-11 65 90.432525 hybrid +138_1-1 Q0 MARCO_39_1148891765-8 66 90.426575 hybrid +138_1-1 Q0 MARCO_45_1000577752-5 67 90.421825 hybrid +138_1-1 Q0 MARCO_56_500502618-3 68 90.421622 hybrid +138_1-1 Q0 MARCO_14_43917945-4 69 90.419936 hybrid +138_1-1 Q0 MARCO_52_1204662779-4 70 90.414290 hybrid +138_1-1 Q0 MARCO_02_468660746-42 71 90.401425 hybrid +138_1-1 Q0 MARCO_25_1247145042-12 72 90.400725 hybrid +138_1-1 Q0 MARCO_00_1007620636-34 73 90.398528 hybrid +138_1-1 Q0 MARCO_52_376669422-1 74 90.397975 hybrid +138_1-1 Q0 MARCO_46_1312509993-2 75 90.389350 hybrid +138_1-1 Q0 MARCO_50_502499950-30 76 90.373875 hybrid +138_1-1 Q0 MARCO_02_1124710190-13 77 90.369300 hybrid +138_1-1 Q0 MARCO_47_715203808-6 78 90.357925 hybrid +138_1-1 Q0 MARCO_12_1178311517-6 79 90.354325 hybrid +138_1-1 Q0 MARCO_14_660217654-2 80 90.352275 hybrid +138_1-1 Q0 MARCO_38_1389712959-2 81 90.345534 hybrid +138_1-1 Q0 MARCO_14_43917945-7 82 90.330482 hybrid +138_1-1 Q0 MARCO_28_771196057-2 83 90.321525 hybrid +138_1-1 Q0 MARCO_06_843396173-107 84 90.303025 hybrid +138_1-1 Q0 MARCO_49_126413834-1 85 90.301825 hybrid +138_1-1 Q0 MARCO_56_500469135-6 86 90.299994 hybrid +138_1-1 Q0 MARCO_59_986127279-2 87 90.293175 hybrid +138_1-1 Q0 MARCO_42_607843446-7 88 90.278846 hybrid +138_1-1 Q0 MARCO_47_715279555-6 89 90.270575 hybrid +138_1-1 Q0 MARCO_54_534380097-3 90 90.260025 hybrid +138_1-1 Q0 MARCO_50_496596490-6 91 90.258109 hybrid +138_1-1 Q0 MARCO_49_1770518418-3 92 90.257125 hybrid +138_1-1 Q0 MARCO_40_173310558-11 93 90.251739 hybrid +138_1-1 Q0 MARCO_09_418969214-1 94 90.250675 hybrid +138_1-1 Q0 MARCO_47_715203808-1 95 90.232375 hybrid +138_1-1 Q0 MARCO_29_778684157-8 96 90.221225 hybrid +138_1-1 Q0 MARCO_11_711052295-6 97 90.219375 hybrid +138_1-1 Q0 MARCO_02_1741589316-1 98 90.216669 hybrid +138_1-1 Q0 MARCO_30_1654842567-1 99 90.198275 hybrid +138_1-1 Q0 MARCO_37_519897006-5 100 90.195875 hybrid +138_1-11 Q0 MARCO_23_941472041-2 1 97.739916 hybrid +138_1-11 Q0 MARCO_23_941472041-3 2 92.285443 hybrid +138_1-11 Q0 MARCO_19_1821842101-4 3 91.784408 hybrid +138_1-11 Q0 MARCO_23_244603153-6 4 91.747105 hybrid +138_1-11 Q0 MARCO_31_1355054571-1 5 91.581858 hybrid +138_1-11 Q0 MARCO_23_941472041-1 6 91.426083 hybrid +138_1-11 Q0 MARCO_27_209201400-12 7 91.384896 hybrid +138_1-11 Q0 MARCO_28_654158755-12 8 91.313913 hybrid +138_1-11 Q0 MARCO_50_1853099427-17 9 91.227257 hybrid +138_1-11 Q0 MARCO_50_1319935467-21 10 91.196557 hybrid +138_1-11 Q0 MARCO_50_495056206-11 11 91.080657 hybrid +138_1-11 Q0 MARCO_14_230457370-5 12 90.936407 hybrid +138_1-11 Q0 MARCO_28_654158755-5 13 90.919379 hybrid +138_1-11 Q0 MARCO_25_1475816447-2 14 90.867757 hybrid +138_1-11 Q0 MARCO_52_1362768233-5 15 90.832208 hybrid +138_1-11 Q0 MARCO_30_96486630-1 16 90.827208 hybrid +138_1-11 Q0 MARCO_43_1633302736-2 17 90.814807 hybrid +138_1-11 Q0 MARCO_50_1044614616-31 18 90.808007 hybrid +138_1-11 Q0 MARCO_44_576246312-4 19 90.788907 hybrid +138_1-11 Q0 MARCO_32_1011502166-3 20 90.776711 hybrid +138_1-11 Q0 MARCO_41_1570571245-48 21 90.762907 hybrid +138_1-11 Q0 MARCO_28_654637213-2 22 90.724595 hybrid +138_1-11 Q0 MARCO_41_1499767598-9 23 90.722557 hybrid +138_1-11 Q0 MARCO_28_654440355-5 24 90.697375 hybrid +138_1-11 Q0 MARCO_28_1800800953-3 25 90.696115 hybrid +138_1-11 Q0 MARCO_06_133052613-12 26 90.669908 hybrid +138_1-11 Q0 MARCO_46_746555502-1 27 90.657907 hybrid +138_1-11 Q0 MARCO_42_252696709-7 28 90.609557 hybrid +138_1-11 Q0 MARCO_29_1012156509-3 29 90.607415 hybrid +138_1-11 Q0 MARCO_28_654440355-4 30 90.605882 hybrid +138_1-11 Q0 MARCO_31_887607606-16 31 90.581644 hybrid +138_1-11 Q0 MARCO_50_482140980-8 32 90.566743 hybrid +138_1-11 Q0 MARCO_41_1139497713-15 33 90.565354 hybrid +138_1-11 Q0 MARCO_20_1596948690-1 34 90.557958 hybrid +138_1-11 Q0 MARCO_28_654332491-2 35 90.556705 hybrid +138_1-11 Q0 MARCO_12_558354470-2 36 90.543557 hybrid +138_1-11 Q0 MARCO_28_654440355-2 37 90.542153 hybrid +138_1-11 Q0 MARCO_42_642883913-4 38 90.537758 hybrid +138_1-11 Q0 MARCO_44_270628848-3 39 90.535007 hybrid +138_1-11 Q0 MARCO_02_52071629-2 40 90.520357 hybrid +138_1-11 Q0 MARCO_37_364064106-3 41 90.508957 hybrid +138_1-11 Q0 MARCO_50_801760395-3 42 90.492557 hybrid +138_1-11 Q0 MARCO_14_1778194735-87 43 90.488469 hybrid +138_1-11 Q0 MARCO_47_650283778-12 44 90.480207 hybrid +138_1-11 Q0 MARCO_04_1336608344-10 45 90.446257 hybrid +138_1-11 Q0 MARCO_14_477904447-8 46 90.426164 hybrid +138_1-11 Q0 MARCO_27_1421491646-79 47 90.419307 hybrid +138_1-11 Q0 MARCO_48_558452914-4 48 90.405057 hybrid +138_1-11 Q0 MARCO_14_41589459-3 49 90.404107 hybrid +138_1-11 Q0 MARCO_32_1011502166-2 50 90.389344 hybrid +138_1-11 Q0 MARCO_30_275672146-4 51 90.384057 hybrid +138_1-11 Q0 MARCO_23_244603153-4 52 90.373725 hybrid +138_1-11 Q0 MARCO_28_676672420-9 53 90.365057 hybrid +138_1-11 Q0 MARCO_50_1732036884-3 54 90.363057 hybrid +138_1-11 Q0 MARCO_10_1361551409-197 55 90.354807 hybrid +138_1-11 Q0 MARCO_32_105822800-3 56 90.343209 hybrid +138_1-11 Q0 MARCO_29_1330563196-10 57 90.337266 hybrid +138_1-11 Q0 MARCO_13_577696256-5 58 90.323057 hybrid +138_1-11 Q0 MARCO_41_1524863889-48 59 90.319557 hybrid +138_1-11 Q0 MARCO_50_1650363199-21 60 90.313957 hybrid +138_1-11 Q0 MARCO_47_829365541-1 61 90.309457 hybrid +138_1-11 Q0 MARCO_28_654637213-9 62 90.308633 hybrid +138_1-11 Q0 MARCO_29_667707520-4 63 90.305177 hybrid +138_1-11 Q0 MARCO_50_510424855-45 64 90.303157 hybrid +138_1-11 Q0 MARCO_50_1022404584-5 65 90.295007 hybrid +138_1-11 Q0 MARCO_45_1634336929-19 66 90.291507 hybrid +138_1-11 Q0 MARCO_24_1556105613-11 67 90.291085 hybrid +138_1-11 Q0 MARCO_28_654409296-9 68 90.281060 hybrid +138_1-11 Q0 MARCO_54_1570076030-2 69 90.276157 hybrid +138_1-11 Q0 MARCO_49_885664231-2 70 90.269857 hybrid +138_1-11 Q0 MARCO_28_654332491-1 71 90.268495 hybrid +138_1-11 Q0 MARCO_41_2116155704-56 72 90.265222 hybrid +138_1-11 Q0 MARCO_44_216880444-3 73 90.261657 hybrid +138_1-11 Q0 MARCO_40_1452300976-13 74 90.243857 hybrid +138_1-11 Q0 MARCO_29_90396270-3 75 90.239057 hybrid +138_1-11 Q0 MARCO_23_1061048013-5 76 90.229257 hybrid +138_1-11 Q0 MARCO_00_766909659-3 77 90.224359 hybrid +138_1-11 Q0 MARCO_50_1550928103-142 78 90.217107 hybrid +138_1-11 Q0 MARCO_28_654499542-3 79 90.213181 hybrid +138_1-11 Q0 MARCO_23_422523321-3 80 90.211607 hybrid +138_1-11 Q0 MARCO_27_331944009-8 81 90.205207 hybrid +138_1-11 Q0 MARCO_50_1512642266-18 82 90.201957 hybrid +138_1-11 Q0 MARCO_32_154714576-3 83 90.201852 hybrid +138_1-11 Q0 MARCO_29_90396270-1 84 90.194307 hybrid +138_1-11 Q0 MARCO_23_694208724-7 85 90.194136 hybrid +138_1-11 Q0 MARCO_50_2434544184-2 86 90.193607 hybrid +138_1-11 Q0 MARCO_53_1403196903-2 87 90.190107 hybrid +138_1-11 Q0 MARCO_32_653517888-44 88 90.188157 hybrid +138_1-11 Q0 MARCO_42_1100840203-5 89 90.187722 hybrid +138_1-11 Q0 MARCO_48_558153575-2 90 90.180707 hybrid +138_1-11 Q0 MARCO_50_256625566-13 91 90.170607 hybrid +138_1-11 Q0 MARCO_43_328307775-3 92 90.166566 hybrid +138_1-11 Q0 MARCO_24_831070345-18 93 90.160707 hybrid +138_1-11 Q0 MARCO_24_941509368-8 94 90.160007 hybrid +138_1-11 Q0 MARCO_27_203430866-2 95 90.159757 hybrid +138_1-11 Q0 MARCO_14_41589459-2 96 90.153947 hybrid +138_1-11 Q0 MARCO_50_1550928103-147 97 90.153607 hybrid +138_1-11 Q0 MARCO_09_577095316-5 98 90.140557 hybrid +138_1-11 Q0 MARCO_03_322600705-2 99 90.132157 hybrid +138_1-11 Q0 MARCO_39_806877993-3 100 90.128297 hybrid +138_1-3 Q0 MARCO_47_578522580-4 1 88.876472 hybrid +138_1-3 Q0 MARCO_34_510953277-6 2 88.189372 hybrid +138_1-3 Q0 MARCO_31_887761133-8 3 87.577281 hybrid +138_1-3 Q0 MARCO_57_2002673045-21 4 87.472972 hybrid +138_1-3 Q0 MARCO_40_174176965-1 5 87.465122 hybrid +138_1-3 Q0 MARCO_51_197971232-22 6 87.422722 hybrid +138_1-3 Q0 MARCO_02_397048557-9 7 87.367472 hybrid +138_1-3 Q0 MARCO_02_397048557-1 8 87.216622 hybrid +138_1-3 Q0 MARCO_54_1404318251-6 9 87.071822 hybrid +138_1-3 Q0 MARCO_31_887761133-9 10 87.061413 hybrid +138_1-3 Q0 MARCO_40_406786154-2 11 87.044322 hybrid +138_1-3 Q0 MARCO_54_1404294949-6 12 87.030872 hybrid +138_1-3 Q0 MARCO_25_1447541151-1 13 86.940672 hybrid +138_1-3 Q0 MARCO_07_830779952-37 14 86.923603 hybrid +138_1-3 Q0 KILT_2742821-9 15 86.919372 hybrid +138_1-3 Q0 MARCO_35_1406219944-4 16 86.892122 hybrid +138_1-3 Q0 MARCO_37_1260056150-12 17 86.878582 hybrid +138_1-3 Q0 MARCO_55_1282987500-8 18 86.868793 hybrid +138_1-3 Q0 MARCO_26_327442900-18 19 86.845072 hybrid +138_1-3 Q0 MARCO_50_483311372-3 20 86.841373 hybrid +138_1-3 Q0 MARCO_26_363063723-42 21 86.813972 hybrid +138_1-3 Q0 MARCO_10_1148119513-17 22 86.812939 hybrid +138_1-3 Q0 MARCO_16_2719689513-2 23 86.807872 hybrid +138_1-3 Q0 MARCO_15_129203638-3 24 86.732222 hybrid +138_1-3 Q0 MARCO_50_495124295-17 25 86.731014 hybrid +138_1-3 Q0 MARCO_50_483311372-2 26 86.724300 hybrid +138_1-3 Q0 MARCO_21_1345822618-2 27 86.724272 hybrid +138_1-3 Q0 MARCO_47_420185202-11 28 86.702572 hybrid +138_1-3 Q0 KILT_11304335-1 29 86.696322 hybrid +138_1-3 Q0 MARCO_54_1982969412-9 30 86.684972 hybrid +138_1-3 Q0 MARCO_08_1677790810-2 31 86.680122 hybrid +138_1-3 Q0 MARCO_58_597204381-21 32 86.676522 hybrid +138_1-3 Q0 MARCO_58_1338640177-6 33 86.668872 hybrid +138_1-3 Q0 MARCO_50_489093872-5 34 86.661160 hybrid +138_1-3 Q0 MARCO_57_1974826042-7 35 86.646992 hybrid +138_1-3 Q0 MARCO_58_305858656-14 36 86.637372 hybrid +138_1-3 Q0 MARCO_00_656949820-5 37 86.631972 hybrid +138_1-3 Q0 MARCO_30_1654855553-6 38 86.619053 hybrid +138_1-3 Q0 MARCO_14_41589459-3 39 86.610928 hybrid +138_1-3 Q0 MARCO_56_500511523-3 40 86.607883 hybrid +138_1-3 Q0 MARCO_45_415507496-2 41 86.604222 hybrid +138_1-3 Q0 MARCO_05_489398312-11 42 86.598322 hybrid +138_1-3 Q0 MARCO_50_517864336-8 43 86.588070 hybrid +138_1-3 Q0 MARCO_50_496161916-7 44 86.582882 hybrid +138_1-3 Q0 MARCO_40_174176965-3 45 86.582020 hybrid +138_1-3 Q0 MARCO_27_209201400-12 46 86.578869 hybrid +138_1-3 Q0 MARCO_50_515023464-5 47 86.576077 hybrid +138_1-3 Q0 MARCO_50_483311372-1 48 86.560154 hybrid +138_1-3 Q0 MARCO_14_43888258-8 49 86.554096 hybrid +138_1-3 Q0 MARCO_27_1429024811-3 50 86.537822 hybrid +138_1-3 Q0 MARCO_32_996398628-5 51 86.537821 hybrid +138_1-3 Q0 MARCO_48_558860364-2 52 86.537821 hybrid +138_1-3 Q0 MARCO_30_269186772-5 53 86.535172 hybrid +138_1-3 Q0 MARCO_49_1770441156-7 54 86.532722 hybrid +138_1-3 Q0 MARCO_02_1341044902-8 55 86.529672 hybrid +138_1-3 Q0 MARCO_08_1453154721-5 56 86.528672 hybrid +138_1-3 Q0 MARCO_38_370708947-4 57 86.526422 hybrid +138_1-3 Q0 MARCO_27_1233260635-6 58 86.520522 hybrid +138_1-3 Q0 MARCO_02_1226784544-1 59 86.517772 hybrid +138_1-3 Q0 MARCO_31_902935712-1 60 86.512122 hybrid +138_1-3 Q0 MARCO_05_1351999581-1 61 86.507755 hybrid +138_1-3 Q0 MARCO_02_422342405-5 62 86.503872 hybrid +138_1-3 Q0 MARCO_24_1080576358-1 63 86.502672 hybrid +138_1-3 Q0 MARCO_05_426242666-81 64 86.500919 hybrid +138_1-3 Q0 KILT_36087839-42 65 86.499004 hybrid +138_1-3 Q0 MARCO_49_1827657692-6 66 86.486050 hybrid +138_1-3 Q0 MARCO_43_331335225-3 67 86.484005 hybrid +138_1-3 Q0 MARCO_41_915540927-4 68 86.483280 hybrid +138_1-3 Q0 MARCO_38_1647653636-6 69 86.481572 hybrid +138_1-3 Q0 MARCO_32_571867541-6 70 86.480722 hybrid +138_1-3 Q0 MARCO_33_1459687374-2 71 86.480721 hybrid +138_1-3 Q0 MARCO_10_974283083-23 72 86.479351 hybrid +138_1-3 Q0 MARCO_26_1061184609-4 73 86.474705 hybrid +138_1-3 Q0 MARCO_47_814659773-6 74 86.473022 hybrid +138_1-3 Q0 MARCO_29_1012343485-4 75 86.465641 hybrid +138_1-3 Q0 MARCO_55_1130753370-2 76 86.463757 hybrid +138_1-3 Q0 KILT_36087839-13 77 86.463543 hybrid +138_1-3 Q0 MARCO_35_292915273-13 78 86.462872 hybrid +138_1-3 Q0 MARCO_21_1459182292-10 79 86.453449 hybrid +138_1-3 Q0 MARCO_22_813393447-37 80 86.447422 hybrid +138_1-3 Q0 MARCO_41_1139497713-15 81 86.445530 hybrid +138_1-3 Q0 MARCO_10_1147627542-12 82 86.431272 hybrid +138_1-3 Q0 MARCO_26_1459997121-4 83 86.430622 hybrid +138_1-3 Q0 MARCO_52_1008761703-6 84 86.430622 hybrid +138_1-3 Q0 MARCO_12_1728999818-8 85 86.430599 hybrid +138_1-3 Q0 MARCO_01_1348566523-6 86 86.429172 hybrid +138_1-3 Q0 MARCO_50_489093872-7 87 86.428963 hybrid +138_1-3 Q0 MARCO_50_1451252251-6 88 86.427860 hybrid +138_1-3 Q0 MARCO_37_1260056150-13 89 86.425999 hybrid +138_1-3 Q0 MARCO_24_1494002255-5 90 86.425022 hybrid +138_1-3 Q0 MARCO_50_527166296-1 91 86.423824 hybrid +138_1-3 Q0 MARCO_12_1728921831-10 92 86.421185 hybrid +138_1-3 Q0 MARCO_10_974283083-20 93 86.419132 hybrid +138_1-3 Q0 MARCO_04_649999127-2 94 86.419072 hybrid +138_1-3 Q0 MARCO_50_520891789-10 95 86.415928 hybrid +138_1-3 Q0 MARCO_21_1145896799-2 96 86.411312 hybrid +138_1-3 Q0 MARCO_13_678052899-3 97 86.408572 hybrid +138_1-3 Q0 MARCO_24_1556015782-7 98 86.405506 hybrid +138_1-3 Q0 MARCO_38_916837490-2 99 86.400722 hybrid +138_1-3 Q0 MARCO_59_361566758-2 100 86.393986 hybrid +138_1-5 Q0 MARCO_36_816020769-13 1 89.326170 hybrid +138_1-5 Q0 MARCO_27_202004899-3 2 89.269027 hybrid +138_1-5 Q0 MARCO_29_667707520-4 3 89.263187 hybrid +138_1-5 Q0 MARCO_25_1475802756-4 4 89.122877 hybrid +138_1-5 Q0 MARCO_29_661208277-1 5 89.084663 hybrid +138_1-5 Q0 MARCO_27_202004899-2 6 89.079577 hybrid +138_1-5 Q0 MARCO_29_1011577571-1 7 89.062614 hybrid +138_1-5 Q0 MARCO_27_202004899-1 8 89.060077 hybrid +138_1-5 Q0 MARCO_44_2039394143-2 9 88.958344 hybrid +138_1-5 Q0 MARCO_40_47473416-4 10 88.954577 hybrid +138_1-5 Q0 MARCO_58_814882529-10 11 88.932527 hybrid +138_1-5 Q0 MARCO_47_547910745-8 12 88.912927 hybrid +138_1-5 Q0 MARCO_11_8761336-15 13 88.725727 hybrid +138_1-5 Q0 MARCO_44_114654264-3 14 88.701653 hybrid +138_1-5 Q0 MARCO_56_1626970177-5 15 88.683577 hybrid +138_1-5 Q0 MARCO_31_942738837-21 16 88.673645 hybrid +138_1-5 Q0 MARCO_27_202004899-4 17 88.556877 hybrid +138_1-5 Q0 MARCO_27_204237318-2 18 88.544527 hybrid +138_1-5 Q0 MARCO_15_632998547-2 19 88.521577 hybrid +138_1-5 Q0 MARCO_32_884498271-7 20 88.514369 hybrid +138_1-5 Q0 MARCO_29_1011577571-4 21 88.513115 hybrid +138_1-5 Q0 MARCO_27_204237318-4 22 88.489527 hybrid +138_1-5 Q0 MARCO_27_202004899-5 23 88.482627 hybrid +138_1-5 Q0 MARCO_12_207364064-1 24 88.471677 hybrid +138_1-5 Q0 MARCO_50_256625566-15 25 88.447477 hybrid +138_1-5 Q0 MARCO_27_201971989-1 26 88.437527 hybrid +138_1-5 Q0 MARCO_30_290082041-9 27 88.432527 hybrid +138_1-5 Q0 MARCO_35_105736969-9 28 88.414227 hybrid +138_1-5 Q0 MARCO_44_2039387097-2 29 88.406723 hybrid +138_1-5 Q0 MARCO_50_558536627-1 30 88.389377 hybrid +138_1-5 Q0 MARCO_37_1257999305-12 31 88.379632 hybrid +138_1-5 Q0 MARCO_26_1638408369-19 32 88.357477 hybrid +138_1-5 Q0 MARCO_31_827484290-10 33 88.343627 hybrid +138_1-5 Q0 MARCO_27_509840862-3 34 88.335527 hybrid +138_1-5 Q0 MARCO_47_547910745-5 35 88.333477 hybrid +138_1-5 Q0 MARCO_59_892401454-1 36 88.323527 hybrid +138_1-5 Q0 MARCO_44_114654264-1 37 88.321060 hybrid +138_1-5 Q0 MARCO_27_202227482-6 38 88.317427 hybrid +138_1-5 Q0 MARCO_47_576529639-1 39 88.312577 hybrid +138_1-5 Q0 MARCO_13_775499855-1 40 88.298027 hybrid +138_1-5 Q0 MARCO_31_942738837-4 41 88.295144 hybrid +138_1-5 Q0 MARCO_29_661208277-5 42 88.287262 hybrid +138_1-5 Q0 MARCO_47_1305953651-9 43 88.285407 hybrid +138_1-5 Q0 MARCO_47_565313582-3 44 88.280677 hybrid +138_1-5 Q0 MARCO_31_942738837-9 45 88.274193 hybrid +138_1-5 Q0 MARCO_27_509840862-2 46 88.272027 hybrid +138_1-5 Q0 MARCO_50_527133953-5 47 88.265275 hybrid +138_1-5 Q0 MARCO_31_942738837-3 48 88.262192 hybrid +138_1-5 Q0 MARCO_13_453761208-1 49 88.255266 hybrid +138_1-5 Q0 MARCO_47_547910745-2 50 88.254327 hybrid +138_1-5 Q0 MARCO_31_942689190-16 51 88.254235 hybrid +138_1-5 Q0 MARCO_48_1447653557-4 52 88.244627 hybrid +138_1-5 Q0 MARCO_14_439750974-1 53 88.239377 hybrid +138_1-5 Q0 MARCO_40_47441614-5 54 88.228877 hybrid +138_1-5 Q0 MARCO_11_8761336-14 55 88.227177 hybrid +138_1-5 Q0 MARCO_44_2039332419-2 56 88.222382 hybrid +138_1-5 Q0 MARCO_57_950588460-15 57 88.204027 hybrid +138_1-5 Q0 MARCO_02_232304392-1 58 88.202977 hybrid +138_1-5 Q0 MARCO_31_942738837-24 59 88.199830 hybrid +138_1-5 Q0 MARCO_31_942738837-16 60 88.197602 hybrid +138_1-5 Q0 MARCO_56_500542568-6 61 88.190232 hybrid +138_1-5 Q0 MARCO_06_337844782-3 62 88.187882 hybrid +138_1-5 Q0 MARCO_27_918796134-1 63 88.186477 hybrid +138_1-5 Q0 MARCO_15_129203638-8 64 88.185977 hybrid +138_1-5 Q0 MARCO_12_1728705765-4 65 88.176949 hybrid +138_1-5 Q0 MARCO_29_661208277-3 66 88.176049 hybrid +138_1-5 Q0 MARCO_44_2039394143-1 67 88.175187 hybrid +138_1-5 Q0 MARCO_25_1161441026-2 68 88.166072 hybrid +138_1-5 Q0 MARCO_30_268424526-6 69 88.159727 hybrid +138_1-5 Q0 MARCO_57_868274246-2 70 88.156998 hybrid +138_1-5 Q0 MARCO_23_244603153-3 71 88.151103 hybrid +138_1-5 Q0 MARCO_29_1011671003-4 72 88.149237 hybrid +138_1-5 Q0 MARCO_27_204428291-3 73 88.147827 hybrid +138_1-5 Q0 MARCO_58_814882529-15 74 88.147727 hybrid +138_1-5 Q0 MARCO_56_502095733-4 75 88.147484 hybrid +138_1-5 Q0 MARCO_47_547910745-6 76 88.146377 hybrid +138_1-5 Q0 MARCO_31_942738837-20 77 88.140793 hybrid +138_1-5 Q0 MARCO_50_558829949-1 78 88.139677 hybrid +138_1-5 Q0 MARCO_50_519245639-3 79 88.134988 hybrid +138_1-5 Q0 MARCO_29_1011577571-7 80 88.130426 hybrid +138_1-5 Q0 KILT_232495-26 81 88.127465 hybrid +138_1-5 Q0 MARCO_21_1459182292-10 82 88.126793 hybrid +138_1-5 Q0 MARCO_27_202227482-4 83 88.100827 hybrid +138_1-5 Q0 MARCO_59_892467898-1 84 88.100727 hybrid +138_1-5 Q0 MARCO_27_204254024-2 85 88.096427 hybrid +138_1-5 Q0 MARCO_47_576529639-2 86 88.084627 hybrid +138_1-5 Q0 MARCO_20_1576403404-7 87 88.083405 hybrid +138_1-5 Q0 MARCO_23_938301032-3 88 88.082116 hybrid +138_1-5 Q0 MARCO_58_814882529-8 89 88.079977 hybrid +138_1-5 Q0 MARCO_27_326374718-4 90 88.079127 hybrid +138_1-5 Q0 MARCO_41_2026616452-4 91 88.074662 hybrid +138_1-5 Q0 MARCO_56_502095733-1 92 88.073624 hybrid +138_1-5 Q0 MARCO_49_926269199-4 93 88.073288 hybrid +138_1-5 Q0 MARCO_24_1434238204-23 94 88.065277 hybrid +138_1-5 Q0 MARCO_56_504074886-3 95 88.064843 hybrid +138_1-5 Q0 MARCO_19_1636059623-1 96 88.064177 hybrid +138_1-5 Q0 MARCO_29_778035964-16 97 88.054001 hybrid +138_1-5 Q0 MARCO_46_1219981039-5 98 88.053277 hybrid +138_1-5 Q0 MARCO_13_577696256-1 99 88.042077 hybrid +138_1-5 Q0 MARCO_56_502589189-2 100 88.040307 hybrid +138_1-7 Q0 MARCO_50_1441171657-12 1 91.630839 hybrid +138_1-7 Q0 MARCO_50_1181836085-5 2 91.390389 hybrid +138_1-7 Q0 MARCO_32_262190801-3 3 91.381585 hybrid +138_1-7 Q0 MARCO_31_1317992653-14 4 91.239039 hybrid +138_1-7 Q0 MARCO_11_1101901839-1 5 91.121089 hybrid +138_1-7 Q0 MARCO_21_1206903334-2 6 91.052910 hybrid +138_1-7 Q0 MARCO_28_527557572-9 7 91.039750 hybrid +138_1-7 Q0 MARCO_00_801665392-4 8 91.034287 hybrid +138_1-7 Q0 MARCO_29_663589805-3 9 91.012391 hybrid +138_1-7 Q0 MARCO_41_1178130635-11 10 90.900765 hybrid +138_1-7 Q0 MARCO_50_1276570100-11 11 90.896489 hybrid +138_1-7 Q0 MARCO_50_2398856032-12 12 90.895760 hybrid +138_1-7 Q0 MARCO_50_2490897344-7 13 90.869539 hybrid +138_1-7 Q0 MARCO_07_25977409-7 14 90.823939 hybrid +138_1-7 Q0 MARCO_19_2143868073-5 15 90.820239 hybrid +138_1-7 Q0 MARCO_35_378336812-1 16 90.812989 hybrid +138_1-7 Q0 MARCO_03_165348449-4 17 90.787490 hybrid +138_1-7 Q0 MARCO_11_811756776-1 18 90.780089 hybrid +138_1-7 Q0 MARCO_28_1331621467-9 19 90.763240 hybrid +138_1-7 Q0 MARCO_42_607879806-2 20 90.758408 hybrid +138_1-7 Q0 MARCO_05_1066668513-3 21 90.749539 hybrid +138_1-7 Q0 MARCO_41_1382413540-47 22 90.671891 hybrid +138_1-7 Q0 MARCO_50_2535182177-2 23 90.670340 hybrid +138_1-7 Q0 MARCO_13_1263960801-1 24 90.665589 hybrid +138_1-7 Q0 MARCO_58_282083931-32 25 90.654763 hybrid +138_1-7 Q0 MARCO_25_1375400046-10 26 90.649039 hybrid +138_1-7 Q0 MARCO_55_213300159-2 27 90.645089 hybrid +138_1-7 Q0 MARCO_43_328307775-3 28 90.640320 hybrid +138_1-7 Q0 MARCO_20_533213870-1 29 90.637139 hybrid +138_1-7 Q0 MARCO_07_798318781-4 30 90.632958 hybrid +138_1-7 Q0 MARCO_50_2398856032-41 31 90.629143 hybrid +138_1-7 Q0 MARCO_46_1309517252-3 32 90.627625 hybrid +138_1-7 Q0 MARCO_10_715405810-4 33 90.625000 hybrid +138_1-7 Q0 MARCO_12_1863218652-1 34 90.623989 hybrid +138_1-7 Q0 MARCO_22_1579067158-15 35 90.623047 hybrid +138_1-7 Q0 MARCO_05_894716410-3 36 90.614439 hybrid +138_1-7 Q0 MARCO_57_1675371988-25 37 90.608339 hybrid +138_1-7 Q0 MARCO_21_1216763189-15 38 90.607811 hybrid +138_1-7 Q0 MARCO_50_2398856032-56 39 90.602875 hybrid +138_1-7 Q0 MARCO_31_641289906-5 40 90.600240 hybrid +138_1-7 Q0 MARCO_42_283699714-66 41 90.583039 hybrid +138_1-7 Q0 MARCO_03_930100800-38 42 90.577689 hybrid +138_1-7 Q0 MARCO_45_409522354-31 43 90.555690 hybrid +138_1-7 Q0 MARCO_50_1414049353-22 44 90.555542 hybrid +138_1-7 Q0 MARCO_50_1419345210-25 45 90.546921 hybrid +138_1-7 Q0 MARCO_55_226423778-1 46 90.523489 hybrid +138_1-7 Q0 MARCO_19_2148051179-9 47 90.515240 hybrid +138_1-7 Q0 MARCO_50_1171731936-9 48 90.512360 hybrid +138_1-7 Q0 MARCO_45_1251107320-3 49 90.511017 hybrid +138_1-7 Q0 MARCO_25_1166028659-3 50 90.497056 hybrid +138_1-7 Q0 MARCO_50_525797022-34 51 90.487130 hybrid +138_1-7 Q0 MARCO_42_283699714-67 52 90.486540 hybrid +138_1-7 Q0 MARCO_22_1472278623-9 53 90.485390 hybrid +138_1-7 Q0 MARCO_53_348747335-4 54 90.473490 hybrid +138_1-7 Q0 MARCO_44_1978616340-12 55 90.471640 hybrid +138_1-7 Q0 MARCO_26_224120701-1 56 90.469839 hybrid +138_1-7 Q0 MARCO_26_118112649-3 57 90.469789 hybrid +138_1-7 Q0 MARCO_27_466729859-4 58 90.459089 hybrid +138_1-7 Q0 MARCO_04_1288055811-3 59 90.458878 hybrid +138_1-7 Q0 MARCO_50_493199442-3 60 90.458725 hybrid +138_1-7 Q0 MARCO_00_368621294-19 61 90.453789 hybrid +138_1-7 Q0 MARCO_27_1645230539-64 62 90.445940 hybrid +138_1-7 Q0 MARCO_00_20752792-8 63 90.445489 hybrid +138_1-7 Q0 MARCO_42_1678032914-7 64 90.443116 hybrid +138_1-7 Q0 MARCO_31_903613291-1 65 90.401062 hybrid +138_1-7 Q0 MARCO_19_1788725632-5 66 90.393789 hybrid +138_1-7 Q0 MARCO_21_1206903334-11 67 90.392296 hybrid +138_1-7 Q0 MARCO_13_14864014-4 68 90.382239 hybrid +138_1-7 Q0 MARCO_55_213501726-13 69 90.377239 hybrid +138_1-7 Q0 MARCO_34_59403630-5 70 90.369589 hybrid +138_1-7 Q0 MARCO_50_2490897344-22 71 90.365395 hybrid +138_1-7 Q0 MARCO_45_1264343358-4 72 90.364068 hybrid +138_1-7 Q0 MARCO_50_2490897344-32 73 90.362679 hybrid +138_1-7 Q0 MARCO_30_535749579-35 74 90.361189 hybrid +138_1-7 Q0 MARCO_50_2512639632-3 75 90.359780 hybrid +138_1-7 Q0 MARCO_21_1216763189-14 76 90.358300 hybrid +138_1-7 Q0 MARCO_01_1549951155-6 77 90.343440 hybrid +138_1-7 Q0 MARCO_50_2398856032-54 78 90.342095 hybrid +138_1-7 Q0 MARCO_22_201835848-38 79 90.339940 hybrid +138_1-7 Q0 MARCO_14_41589459-3 80 90.335968 hybrid +138_1-7 Q0 MARCO_42_1141338211-2 81 90.333739 hybrid +138_1-7 Q0 MARCO_24_1566977573-24 82 90.333640 hybrid +138_1-7 Q0 MARCO_35_956358458-5 83 90.329539 hybrid +138_1-7 Q0 MARCO_55_229757227-21 84 90.328990 hybrid +138_1-7 Q0 MARCO_50_1553097056-98 85 90.328839 hybrid +138_1-7 Q0 MARCO_31_622794480-2 86 90.326689 hybrid +138_1-7 Q0 MARCO_25_788881322-9 87 90.323589 hybrid +138_1-7 Q0 MARCO_52_1511831055-3 88 90.319839 hybrid +138_1-7 Q0 MARCO_50_1414049353-23 89 90.318299 hybrid +138_1-7 Q0 MARCO_50_1494362857-2 90 90.316390 hybrid +138_1-7 Q0 MARCO_49_456887452-1 91 90.316289 hybrid +138_1-7 Q0 MARCO_41_1135859717-55 92 90.314469 hybrid +138_1-7 Q0 MARCO_41_1031381655-26 93 90.313039 hybrid +138_1-7 Q0 MARCO_12_558794427-6 94 90.307539 hybrid +138_1-7 Q0 MARCO_10_715405810-2 95 90.304612 hybrid +138_1-7 Q0 MARCO_41_1277724319-80 96 90.301739 hybrid +138_1-7 Q0 MARCO_32_1011502166-3 97 90.300911 hybrid +138_1-7 Q0 MARCO_13_347305423-6 98 90.296189 hybrid +138_1-7 Q0 MARCO_50_1619601961-13 99 90.288369 hybrid +138_1-7 Q0 MARCO_57_863913027-55 100 90.287089 hybrid +138_1-9 Q0 MARCO_32_154714576-3 1 94.274759 hybrid +138_1-9 Q0 MARCO_23_244603153-4 2 93.381217 hybrid +138_1-9 Q0 MARCO_27_202004899-3 3 92.921862 hybrid +138_1-9 Q0 MARCO_47_578522580-1 4 92.644912 hybrid +138_1-9 Q0 MARCO_27_202004899-2 5 92.587062 hybrid +138_1-9 Q0 MARCO_27_202004899-1 6 92.575111 hybrid +138_1-9 Q0 MARCO_28_771528107-8 7 92.526462 hybrid +138_1-9 Q0 MARCO_25_16527695-6 8 92.488512 hybrid +138_1-9 Q0 MARCO_47_578522580-2 9 92.444362 hybrid +138_1-9 Q0 MARCO_35_619005595-3 10 92.149061 hybrid +138_1-9 Q0 MARCO_57_1677246923-24 11 91.940461 hybrid +138_1-9 Q0 MARCO_33_1510794933-4 12 91.907762 hybrid +138_1-9 Q0 MARCO_32_154714576-9 13 91.876588 hybrid +138_1-9 Q0 MARCO_13_670837324-7 14 91.802711 hybrid +138_1-9 Q0 MARCO_39_787261460-10 15 91.764912 hybrid +138_1-9 Q0 MARCO_00_801665392-4 16 91.710717 hybrid +138_1-9 Q0 MARCO_19_1636059623-1 17 91.698112 hybrid +138_1-9 Q0 MARCO_23_244603153-2 18 91.685421 hybrid +138_1-9 Q0 MARCO_52_1362768233-3 19 91.608612 hybrid +138_1-9 Q0 MARCO_56_1801368036-5 20 91.601461 hybrid +138_1-9 Q0 MARCO_11_1279721721-1 21 91.578412 hybrid +138_1-9 Q0 MARCO_14_230373185-1 22 91.569511 hybrid +138_1-9 Q0 MARCO_57_2354240363-13 23 91.561011 hybrid +138_1-9 Q0 MARCO_13_577696256-2 24 91.554912 hybrid +138_1-9 Q0 MARCO_28_654332491-2 25 91.540723 hybrid +138_1-9 Q0 MARCO_27_204237318-4 26 91.495611 hybrid +138_1-9 Q0 MARCO_23_941472041-2 27 91.485299 hybrid +138_1-9 Q0 MARCO_50_2838921024-4 28 91.451562 hybrid +138_1-9 Q0 MARCO_36_577431870-3 29 91.437861 hybrid +138_1-9 Q0 MARCO_27_201971989-1 30 91.425912 hybrid +138_1-9 Q0 MARCO_45_160342515-25 31 91.416411 hybrid +138_1-9 Q0 MARCO_48_558840391-6 32 91.414211 hybrid +138_1-9 Q0 MARCO_31_1360261780-1 33 91.412461 hybrid +138_1-9 Q0 MARCO_27_509840862-4 34 91.397212 hybrid +138_1-9 Q0 MARCO_50_1419345210-25 35 91.365728 hybrid +138_1-9 Q0 MARCO_31_274203118-5 36 91.342161 hybrid +138_1-9 Q0 MARCO_22_1037966551-5 37 91.336012 hybrid +138_1-9 Q0 MARCO_51_1236418175-1 38 91.330024 hybrid +138_1-9 Q0 MARCO_41_1674961350-14 39 91.309662 hybrid +138_1-9 Q0 MARCO_25_1475754737-2 40 91.306512 hybrid +138_1-9 Q0 MARCO_23_941472041-3 41 91.302973 hybrid +138_1-9 Q0 MARCO_14_230387492-4 42 91.299412 hybrid +138_1-9 Q0 MARCO_42_1001921215-3 43 91.278711 hybrid +138_1-9 Q0 MARCO_14_41589459-2 44 91.277070 hybrid +138_1-9 Q0 MARCO_28_768234333-5 45 91.257212 hybrid +138_1-9 Q0 MARCO_57_1996211760-6 46 91.256412 hybrid +138_1-9 Q0 MARCO_47_359780365-9 47 91.246761 hybrid +138_1-9 Q0 MARCO_28_654158755-5 48 91.227471 hybrid +138_1-9 Q0 MARCO_32_105822800-2 49 91.226213 hybrid +138_1-9 Q0 MARCO_42_1100840203-1 50 91.223138 hybrid +138_1-9 Q0 MARCO_35_648746496-1 51 91.207711 hybrid +138_1-9 Q0 MARCO_47_1325017806-3 52 91.196861 hybrid +138_1-9 Q0 MARCO_32_154714576-1 53 91.193353 hybrid +138_1-9 Q0 MARCO_46_685168129-2 54 91.178661 hybrid +138_1-9 Q0 MARCO_22_1454425800-16 55 91.173812 hybrid +138_1-9 Q0 MARCO_14_230387492-8 56 91.163562 hybrid +138_1-9 Q0 MARCO_12_1728705765-10 57 91.156411 hybrid +138_1-9 Q0 MARCO_14_41589459-1 58 91.128312 hybrid +138_1-9 Q0 MARCO_21_657257947-2 59 91.127162 hybrid +138_1-9 Q0 MARCO_28_654144345-11 60 91.127107 hybrid +138_1-9 Q0 MARCO_12_558354470-2 61 91.125112 hybrid +138_1-9 Q0 MARCO_21_143315182-7 62 91.125011 hybrid +138_1-9 Q0 MARCO_47_578522580-5 63 91.119061 hybrid +138_1-9 Q0 MARCO_14_968630529-6 64 91.115662 hybrid +138_1-9 Q0 MARCO_40_47441614-5 65 91.110561 hybrid +138_1-9 Q0 MARCO_50_2490897344-18 66 91.108876 hybrid +138_1-9 Q0 MARCO_41_2173508032-3 67 91.096154 hybrid +138_1-9 Q0 MARCO_14_41589459-3 68 91.094308 hybrid +138_1-9 Q0 MARCO_33_1486927464-5 69 91.086112 hybrid +138_1-9 Q0 MARCO_29_667707520-4 70 91.084085 hybrid +138_1-9 Q0 MARCO_43_330810268-3 71 91.078385 hybrid +138_1-9 Q0 MARCO_21_657257947-1 72 91.064662 hybrid +138_1-9 Q0 MARCO_32_154714576-7 73 91.058221 hybrid +138_1-9 Q0 MARCO_51_1236418175-2 74 91.050836 hybrid +138_1-9 Q0 MARCO_47_573626712-11 75 91.045812 hybrid +138_1-9 Q0 MARCO_27_204225268-4 76 91.005012 hybrid +138_1-9 Q0 MARCO_28_654440355-2 77 91.002084 hybrid +138_1-9 Q0 MARCO_48_1449460805-2 78 91.001911 hybrid +138_1-9 Q0 MARCO_25_1437816000-3 79 91.001496 hybrid +138_1-9 Q0 MARCO_28_423780452-8 80 90.997457 hybrid +138_1-9 Q0 MARCO_23_941472041-4 81 90.992936 hybrid +138_1-9 Q0 MARCO_54_1737601891-2 82 90.988862 hybrid +138_1-9 Q0 MARCO_57_828745262-2 83 90.982862 hybrid +138_1-9 Q0 MARCO_12_1728705765-8 84 90.980454 hybrid +138_1-9 Q0 MARCO_37_76877071-2 85 90.979712 hybrid +138_1-9 Q0 MARCO_47_578522580-6 86 90.979161 hybrid +138_1-9 Q0 MARCO_40_47473416-4 87 90.973612 hybrid +138_1-9 Q0 MARCO_28_654332491-6 88 90.973084 hybrid +138_1-9 Q0 MARCO_25_426717205-1 89 90.969961 hybrid +138_1-9 Q0 MARCO_26_740844680-22 90 90.965411 hybrid +138_1-9 Q0 MARCO_28_654440355-6 91 90.962564 hybrid +138_1-9 Q0 MARCO_46_551281605-4 92 90.957444 hybrid +138_1-9 Q0 MARCO_28_1800800953-2 93 90.953446 hybrid +138_1-9 Q0 MARCO_29_667707520-5 94 90.931092 hybrid +138_1-9 Q0 MARCO_30_1654842567-4 95 90.928807 hybrid +138_1-9 Q0 MARCO_47_356053163-9 96 90.922961 hybrid +138_1-9 Q0 MARCO_27_209201400-12 97 90.918908 hybrid +138_1-9 Q0 MARCO_20_1533908575-2 98 90.918712 hybrid +138_1-9 Q0 MARCO_57_1746290983-21 99 90.914262 hybrid +138_1-9 Q0 MARCO_12_590645462-9 100 90.908715 hybrid +139_1-1 Q0 MARCO_58_1144549338-26 1 89.441785 hybrid +139_1-1 Q0 MARCO_03_934832731-22 2 89.277785 hybrid +139_1-1 Q0 MARCO_01_1906239093-118 3 89.160535 hybrid +139_1-1 Q0 MARCO_23_151543073-118 4 89.160534 hybrid +139_1-1 Q0 MARCO_24_1721054939-47 5 89.134085 hybrid +139_1-1 Q0 MARCO_03_931631759-7 6 88.885785 hybrid +139_1-1 Q0 MARCO_03_931631759-8 7 88.813685 hybrid +139_1-1 Q0 MARCO_44_1454117865-6 8 88.797035 hybrid +139_1-1 Q0 MARCO_19_1889192680-7 9 88.776585 hybrid +139_1-1 Q0 MARCO_45_92221891-18 10 88.711385 hybrid +139_1-1 Q0 MARCO_58_1143938334-24 11 88.708535 hybrid +139_1-1 Q0 MARCO_03_933532735-17 12 88.689935 hybrid +139_1-1 Q0 MARCO_03_932784641-12 13 88.632035 hybrid +139_1-1 Q0 MARCO_03_934832731-18 14 88.611035 hybrid +139_1-1 Q0 MARCO_03_934832731-13 15 88.598985 hybrid +139_1-1 Q0 MARCO_30_153432119-23 16 88.581618 hybrid +139_1-1 Q0 MARCO_03_927337610-21 17 88.560435 hybrid +139_1-1 Q0 MARCO_15_656694627-1 18 88.545535 hybrid +139_1-1 Q0 MARCO_03_933579400-19 19 88.526235 hybrid +139_1-1 Q0 MARCO_03_932598157-15 20 88.524485 hybrid +139_1-1 Q0 MARCO_03_928407670-13 21 88.514235 hybrid +139_1-1 Q0 MARCO_58_1143807616-12 22 88.499335 hybrid +139_1-1 Q0 MARCO_03_928393097-6 23 88.488435 hybrid +139_1-1 Q0 MARCO_03_929664823-6 24 88.472685 hybrid +139_1-1 Q0 MARCO_48_102069672-8 25 88.462885 hybrid +139_1-1 Q0 MARCO_03_927427809-32 26 88.459635 hybrid +139_1-1 Q0 MARCO_03_927427809-23 27 88.439185 hybrid +139_1-1 Q0 MARCO_58_65090481-4 28 88.439035 hybrid +139_1-1 Q0 MARCO_37_1258512098-2 29 88.434651 hybrid +139_1-1 Q0 KILT_48621266-1 30 88.432707 hybrid +139_1-1 Q0 MARCO_58_1143468230-5 31 88.401035 hybrid +139_1-1 Q0 MARCO_03_929697718-13 32 88.380185 hybrid +139_1-1 Q0 MARCO_56_1028157659-29 33 88.375785 hybrid +139_1-1 Q0 MARCO_42_1160974766-1 34 88.372235 hybrid +139_1-1 Q0 MARCO_50_2502286195-117 35 88.371108 hybrid +139_1-1 Q0 MARCO_29_771503644-5 36 88.368185 hybrid +139_1-1 Q0 MARCO_03_928337241-6 37 88.364335 hybrid +139_1-1 Q0 MARCO_30_151678069-1 38 88.364211 hybrid +139_1-1 Q0 MARCO_58_1144397703-8 39 88.363085 hybrid +139_1-1 Q0 MARCO_03_932246191-11 40 88.362435 hybrid +139_1-1 Q0 MARCO_03_934967743-14 41 88.340485 hybrid +139_1-1 Q0 MARCO_03_932680319-22 42 88.336385 hybrid +139_1-1 Q0 MARCO_33_625451467-6 43 88.324735 hybrid +139_1-1 Q0 MARCO_07_1133253260-3 44 88.322135 hybrid +139_1-1 Q0 MARCO_58_1143525507-14 45 88.309435 hybrid +139_1-1 Q0 MARCO_21_1262910055-23 46 88.304735 hybrid +139_1-1 Q0 MARCO_03_933174148-20 47 88.301885 hybrid +139_1-1 Q0 MARCO_31_1318740121-21 48 88.301335 hybrid +139_1-1 Q0 MARCO_03_931240405-4 49 88.286485 hybrid +139_1-1 Q0 MARCO_56_1026371295-80 50 88.267285 hybrid +139_1-1 Q0 MARCO_23_220082938-7 51 88.264385 hybrid +139_1-1 Q0 MARCO_03_927984973-19 52 88.262585 hybrid +139_1-1 Q0 MARCO_39_1694233731-3 53 88.256185 hybrid +139_1-1 Q0 MARCO_03_934684758-16 54 88.253435 hybrid +139_1-1 Q0 MARCO_12_1214698497-82 55 88.239035 hybrid +139_1-1 Q0 MARCO_53_1457271283-3 56 88.231985 hybrid +139_1-1 Q0 MARCO_08_127348438-25 57 88.224885 hybrid +139_1-1 Q0 MARCO_58_1145557357-21 58 88.221685 hybrid +139_1-1 Q0 MARCO_45_1436893275-2 59 88.218245 hybrid +139_1-1 Q0 MARCO_31_1317992653-17 60 88.213335 hybrid +139_1-1 Q0 MARCO_58_1145217063-16 61 88.202585 hybrid +139_1-1 Q0 MARCO_31_1318362822-8 62 88.195435 hybrid +139_1-1 Q0 MARCO_47_921555391-19 63 88.195250 hybrid +139_1-1 Q0 MARCO_03_929508407-18 64 88.187285 hybrid +139_1-1 Q0 MARCO_03_931391568-28 65 88.179535 hybrid +139_1-1 Q0 MARCO_33_972001973-12 66 88.174035 hybrid +139_1-1 Q0 MARCO_58_1144437920-6 67 88.152835 hybrid +139_1-1 Q0 MARCO_03_927529769-19 68 88.132685 hybrid +139_1-1 Q0 MARCO_28_770918280-22 69 88.130885 hybrid +139_1-1 Q0 MARCO_03_929163407-8 70 88.128985 hybrid +139_1-1 Q0 MARCO_03_934616998-20 71 88.120635 hybrid +139_1-1 Q0 MARCO_13_1552590607-2 72 88.119235 hybrid +139_1-1 Q0 MARCO_14_979830960-28 73 88.097135 hybrid +139_1-1 Q0 MARCO_07_496702202-5 74 88.094435 hybrid +139_1-1 Q0 MARCO_58_1441098403-7 75 88.093785 hybrid +139_1-1 Q0 MARCO_03_931286771-8 76 88.092035 hybrid +139_1-1 Q0 MARCO_53_1068935928-16 77 88.089335 hybrid +139_1-1 Q0 MARCO_14_1508782618-14 78 88.083085 hybrid +139_1-1 Q0 MARCO_58_1143649453-32 79 88.077685 hybrid +139_1-1 Q0 MARCO_03_927936074-15 80 88.076985 hybrid +139_1-1 Q0 MARCO_03_928824836-16 81 88.068985 hybrid +139_1-1 Q0 MARCO_21_921696787-1 82 88.060785 hybrid +139_1-1 Q0 MARCO_03_933765330-7 83 88.057335 hybrid +139_1-1 Q0 MARCO_03_931862567-21 84 88.055235 hybrid +139_1-1 Q0 MARCO_30_1690441889-8 85 88.051935 hybrid +139_1-1 Q0 MARCO_03_931240405-22 86 88.050235 hybrid +139_1-1 Q0 MARCO_12_26680983-9 87 88.049385 hybrid +139_1-1 Q0 MARCO_47_707676438-5 88 88.048835 hybrid +139_1-1 Q0 MARCO_03_931050531-12 89 88.046485 hybrid +139_1-1 Q0 MARCO_23_913009646-6 90 88.043635 hybrid +139_1-1 Q0 MARCO_03_929333314-30 91 88.041335 hybrid +139_1-1 Q0 MARCO_03_932126682-19 92 88.036435 hybrid +139_1-1 Q0 MARCO_44_1504707334-10 93 88.030635 hybrid +139_1-1 Q0 MARCO_41_1186872894-16 94 88.029677 hybrid +139_1-1 Q0 MARCO_58_1143453800-13 95 88.015085 hybrid +139_1-1 Q0 MARCO_30_1087879020-45 96 88.014685 hybrid +139_1-1 Q0 MARCO_58_1144227645-14 97 88.011785 hybrid +139_1-1 Q0 MARCO_03_933950699-8 98 88.011085 hybrid +139_1-1 Q0 MARCO_15_1761881462-8 99 88.007135 hybrid +139_1-1 Q0 MARCO_03_930708679-45 100 88.002635 hybrid +139_1-3 Q0 MARCO_19_685468020-1 1 93.192904 hybrid +139_1-3 Q0 KILT_35509755-2 2 91.738804 hybrid +139_1-3 Q0 KILT_1273025-2 3 91.677154 hybrid +139_1-3 Q0 MARCO_19_685468020-3 4 91.585254 hybrid +139_1-3 Q0 MARCO_49_1710547978-9 5 90.646104 hybrid +139_1-3 Q0 KILT_932074-6 6 90.592154 hybrid +139_1-3 Q0 KILT_640722-4 7 90.522003 hybrid +139_1-3 Q0 KILT_35509755-3 8 90.214303 hybrid +139_1-3 Q0 KILT_35509755-1 9 90.080004 hybrid +139_1-3 Q0 KILT_1944095-2 10 90.065804 hybrid +139_1-3 Q0 MARCO_52_1285555904-3 11 89.787904 hybrid +139_1-3 Q0 KILT_30839593-2 12 89.711554 hybrid +139_1-3 Q0 MARCO_49_1710547978-7 13 89.424004 hybrid +139_1-3 Q0 MARCO_49_1710547978-6 14 89.411453 hybrid +139_1-3 Q0 MARCO_03_697067489-1 15 88.682003 hybrid +139_1-3 Q0 KILT_29452329-2 16 88.462933 hybrid +139_1-3 Q0 MARCO_04_863676975-17 17 88.283360 hybrid +139_1-3 Q0 MARCO_04_203163594-3 18 88.153617 hybrid +139_1-3 Q0 MARCO_37_345226218-6 19 87.975285 hybrid +139_1-3 Q0 KILT_3315140-1 20 87.878719 hybrid +139_1-3 Q0 KILT_1273025-3 21 87.870403 hybrid +139_1-3 Q0 MARCO_17_2976896802-5 22 87.842129 hybrid +139_1-3 Q0 MARCO_57_1271042029-3 23 87.733906 hybrid +139_1-3 Q0 KILT_932074-2 24 87.719153 hybrid +139_1-3 Q0 MARCO_03_928407670-1 25 87.670903 hybrid +139_1-3 Q0 MARCO_09_699402363-1 26 87.449703 hybrid +139_1-3 Q0 KILT_33743824-5 27 87.443508 hybrid +139_1-3 Q0 KILT_3315140-7 28 87.441578 hybrid +139_1-3 Q0 MARCO_06_1678836371-1 29 87.438354 hybrid +139_1-3 Q0 MARCO_03_1604933713-5 30 87.408504 hybrid +139_1-3 Q0 MARCO_09_701792280-1 31 87.392719 hybrid +139_1-3 Q0 MARCO_04_863676975-2 32 87.144169 hybrid +139_1-3 Q0 MARCO_04_863676975-18 33 87.141125 hybrid +139_1-3 Q0 MARCO_04_203163594-1 34 87.134167 hybrid +139_1-3 Q0 KILT_3315140-4 35 87.124424 hybrid +139_1-3 Q0 MARCO_39_1705558799-13 36 87.114753 hybrid +139_1-3 Q0 MARCO_16_3455649635-5 37 87.109203 hybrid +139_1-3 Q0 MARCO_09_709457960-11 38 87.100285 hybrid +139_1-3 Q0 MARCO_17_3383838218-3 39 87.090353 hybrid +139_1-3 Q0 MARCO_04_195491508-5 40 87.087453 hybrid +139_1-3 Q0 MARCO_12_462074888-2 41 87.080074 hybrid +139_1-3 Q0 KILT_29416092-1 42 87.065014 hybrid +139_1-3 Q0 MARCO_30_496815996-6 43 87.062903 hybrid +139_1-3 Q0 MARCO_48_1699945047-7 44 87.059753 hybrid +139_1-3 Q0 KILT_5287794-1 45 87.055019 hybrid +139_1-3 Q0 MARCO_49_1710547978-11 46 87.026603 hybrid +139_1-3 Q0 MARCO_57_870405779-4 47 87.017406 hybrid +139_1-3 Q0 MARCO_04_221269825-2 48 87.007753 hybrid +139_1-3 Q0 KILT_4134234-3 49 86.953388 hybrid +139_1-3 Q0 MARCO_58_1144437920-10 50 86.953303 hybrid +139_1-3 Q0 KILT_51985039-1 51 86.943256 hybrid +139_1-3 Q0 MARCO_16_1637484022-2 52 86.940953 hybrid +139_1-3 Q0 MARCO_32_1734806272-1 53 86.879603 hybrid +139_1-3 Q0 MARCO_52_1285555904-1 54 86.879103 hybrid +139_1-3 Q0 MARCO_03_1731659521-3 55 86.872103 hybrid +139_1-3 Q0 MARCO_19_685468020-4 56 86.862204 hybrid +139_1-3 Q0 KILT_11003095-68 57 86.860973 hybrid +139_1-3 Q0 KILT_170452-10 58 86.860477 hybrid +139_1-3 Q0 MARCO_04_221269825-4 59 86.858153 hybrid +139_1-3 Q0 KILT_3046294-8 60 86.847645 hybrid +139_1-3 Q0 KILT_28699348-2 61 86.838551 hybrid +139_1-3 Q0 MARCO_38_246524348-1 62 86.834353 hybrid +139_1-3 Q0 MARCO_42_1376626219-1 63 86.827053 hybrid +139_1-3 Q0 MARCO_03_1597932249-2 64 86.816603 hybrid +139_1-3 Q0 MARCO_05_612620960-4 65 86.810254 hybrid +139_1-3 Q0 MARCO_50_1459970904-2 66 86.806004 hybrid +139_1-3 Q0 MARCO_14_1009959490-1 67 86.802703 hybrid +139_1-3 Q0 MARCO_17_292406934-12 68 86.802303 hybrid +139_1-3 Q0 MARCO_18_3799168773-6 69 86.781303 hybrid +139_1-3 Q0 MARCO_04_169403333-2 70 86.776904 hybrid +139_1-3 Q0 KILT_1437380-29 71 86.766827 hybrid +139_1-3 Q0 MARCO_12_1807681032-5 72 86.757969 hybrid +139_1-3 Q0 MARCO_26_164617814-157 73 86.754215 hybrid +139_1-3 Q0 KILT_958383-3 74 86.748804 hybrid +139_1-3 Q0 MARCO_56_420712955-11 75 86.746503 hybrid +139_1-3 Q0 KILT_2727995-3 76 86.740192 hybrid +139_1-3 Q0 KILT_13622982-11 77 86.703953 hybrid +139_1-3 Q0 KILT_2236321-2 78 86.701853 hybrid +139_1-3 Q0 KILT_10356587-4 79 86.701771 hybrid +139_1-3 Q0 MARCO_04_185643441-1 80 86.698403 hybrid +139_1-3 Q0 MARCO_16_446902408-19 81 86.693775 hybrid +139_1-3 Q0 MARCO_19_579071638-35 82 86.690388 hybrid +139_1-3 Q0 MARCO_17_1313259671-26 83 86.686553 hybrid +139_1-3 Q0 MARCO_37_469351031-3 84 86.683154 hybrid +139_1-3 Q0 KILT_11003095-12 85 86.680668 hybrid +139_1-3 Q0 MARCO_43_1007129996-21 86 86.678555 hybrid +139_1-3 Q0 MARCO_43_328196734-3 87 86.677639 hybrid +139_1-3 Q0 MARCO_23_769768332-3 88 86.672703 hybrid +139_1-3 Q0 MARCO_05_1018316918-1 89 86.667805 hybrid +139_1-3 Q0 MARCO_22_696724720-5 90 86.666304 hybrid +139_1-3 Q0 MARCO_17_2976977435-14 91 86.663570 hybrid +139_1-3 Q0 MARCO_37_1115532080-15 92 86.660254 hybrid +139_1-3 Q0 MARCO_43_328196734-4 93 86.655666 hybrid +139_1-3 Q0 MARCO_07_896237703-3 94 86.651953 hybrid +139_1-3 Q0 MARCO_21_372569232-1 95 86.651603 hybrid +139_1-3 Q0 MARCO_08_1356106303-94 96 86.650703 hybrid +139_1-3 Q0 MARCO_15_1934961751-1 97 86.639053 hybrid +139_1-3 Q0 KILT_1178931-7 98 86.634354 hybrid +139_1-3 Q0 MARCO_17_2976857050-11 99 86.631649 hybrid +139_1-3 Q0 MARCO_04_203721970-1 100 86.627102 hybrid +139_1-5 Q0 KILT_3315140-7 1 87.351874 hybrid +139_1-5 Q0 KILT_32718827-5 2 87.241248 hybrid +139_1-5 Q0 MARCO_37_345226218-6 3 87.220901 hybrid +139_1-5 Q0 MARCO_16_4158688040-7 4 87.178168 hybrid +139_1-5 Q0 MARCO_04_863676975-17 5 87.043426 hybrid +139_1-5 Q0 KILT_187562-12 6 86.926574 hybrid +139_1-5 Q0 MARCO_02_779860540-3 7 86.926125 hybrid +139_1-5 Q0 KILT_36500957-1 8 86.921988 hybrid +139_1-5 Q0 KILT_11026043-13 9 86.871604 hybrid +139_1-5 Q0 KILT_1843094-8 10 86.867454 hybrid +139_1-5 Q0 MARCO_32_152981865-1 11 86.865574 hybrid +139_1-5 Q0 MARCO_51_271641142-1 12 86.790575 hybrid +139_1-5 Q0 MARCO_03_931938374-4 13 86.784625 hybrid +139_1-5 Q0 KILT_5491303-14 14 86.780791 hybrid +139_1-5 Q0 MARCO_46_1152746885-1 15 86.766725 hybrid +139_1-5 Q0 MARCO_34_478860268-1 16 86.760775 hybrid +139_1-5 Q0 KILT_56887108-4 17 86.750991 hybrid +139_1-5 Q0 KILT_56887108-2 18 86.750991 hybrid +139_1-5 Q0 MARCO_17_1938128860-11 19 86.747840 hybrid +139_1-5 Q0 MARCO_17_2363946503-5 20 86.716529 hybrid +139_1-5 Q0 MARCO_17_2363946503-7 21 86.716529 hybrid +139_1-5 Q0 KILT_35325296-7 22 86.677230 hybrid +139_1-5 Q0 KILT_29416092-1 23 86.673697 hybrid +139_1-5 Q0 MARCO_31_606859212-13 24 86.665625 hybrid +139_1-5 Q0 MARCO_00_585059148-16 25 86.593291 hybrid +139_1-5 Q0 KILT_22169295-8 26 86.577163 hybrid +139_1-5 Q0 MARCO_16_1904905320-13 27 86.555701 hybrid +139_1-5 Q0 MARCO_27_863094248-42 28 86.543025 hybrid +139_1-5 Q0 MARCO_04_203163594-3 29 86.532049 hybrid +139_1-5 Q0 KILT_27684741-4 30 86.517943 hybrid +139_1-5 Q0 KILT_14161862-2 31 86.507102 hybrid +139_1-5 Q0 KILT_4776779-2 32 86.505637 hybrid +139_1-5 Q0 KILT_3315140-1 33 86.487372 hybrid +139_1-5 Q0 KILT_51418188-3 34 86.484519 hybrid +139_1-5 Q0 MARCO_03_934285477-1 35 86.460474 hybrid +139_1-5 Q0 MARCO_16_2608660059-6 36 86.441688 hybrid +139_1-5 Q0 MARCO_03_932641282-1 37 86.438624 hybrid +139_1-5 Q0 KILT_3315140-4 38 86.421554 hybrid +139_1-5 Q0 MARCO_52_1170350630-31 39 86.421175 hybrid +139_1-5 Q0 MARCO_17_1938191323-4 40 86.408912 hybrid +139_1-5 Q0 KILT_28271831-4 41 86.399917 hybrid +139_1-5 Q0 KILT_59014358-3 42 86.398719 hybrid +139_1-5 Q0 KILT_45171151-2 43 86.396194 hybrid +139_1-5 Q0 KILT_41295421-3 44 86.348479 hybrid +139_1-5 Q0 MARCO_18_3770119105-3 45 86.339072 hybrid +139_1-5 Q0 KILT_40175173-2 46 86.337974 hybrid +139_1-5 Q0 KILT_11026043-15 47 86.330817 hybrid +139_1-5 Q0 KILT_29452329-2 48 86.315070 hybrid +139_1-5 Q0 MARCO_48_906536335-15 49 86.311174 hybrid +139_1-5 Q0 MARCO_13_609472026-1 50 86.307324 hybrid +139_1-5 Q0 KILT_11026043-11 51 86.293998 hybrid +139_1-5 Q0 KILT_41196107-3 52 86.293815 hybrid +139_1-5 Q0 KILT_51854146-2 53 86.284781 hybrid +139_1-5 Q0 MARCO_18_3780893261-9 54 86.274581 hybrid +139_1-5 Q0 MARCO_50_2456038409-24 55 86.262024 hybrid +139_1-5 Q0 KILT_28346616-11 56 86.261313 hybrid +139_1-5 Q0 MARCO_02_482629013-1 57 86.260525 hybrid +139_1-5 Q0 MARCO_18_3769937725-5 58 86.259353 hybrid +139_1-5 Q0 KILT_25694136-4 59 86.253226 hybrid +139_1-5 Q0 MARCO_41_798155142-8 60 86.247775 hybrid +139_1-5 Q0 KILT_25598697-3 61 86.239921 hybrid +139_1-5 Q0 KILT_1996695-6 62 86.234122 hybrid +139_1-5 Q0 MARCO_09_709457960-11 63 86.230971 hybrid +139_1-5 Q0 MARCO_52_1285555904-1 64 86.230525 hybrid +139_1-5 Q0 MARCO_17_2976896802-6 65 86.222632 hybrid +139_1-5 Q0 MARCO_00_545007325-7 66 86.215875 hybrid +139_1-5 Q0 KILT_5654539-4 67 86.215697 hybrid +139_1-5 Q0 KILT_5566884-2 68 86.214614 hybrid +139_1-5 Q0 MARCO_25_751605453-1 69 86.203024 hybrid +139_1-5 Q0 KILT_28346616-12 70 86.202521 hybrid +139_1-5 Q0 MARCO_26_433116529-3 71 86.201425 hybrid +139_1-5 Q0 KILT_24793358-5 72 86.197120 hybrid +139_1-5 Q0 MARCO_03_929078895-1 73 86.194924 hybrid +139_1-5 Q0 MARCO_02_404529608-1 74 86.194574 hybrid +139_1-5 Q0 MARCO_53_862318990-6 75 86.193274 hybrid +139_1-5 Q0 KILT_44878113-27 76 86.190291 hybrid +139_1-5 Q0 KILT_105862-10 77 86.189696 hybrid +139_1-5 Q0 MARCO_34_984767858-8 78 86.188825 hybrid +139_1-5 Q0 MARCO_03_928850259-3 79 86.187075 hybrid +139_1-5 Q0 KILT_170490-2 80 86.185798 hybrid +139_1-5 Q0 KILT_6872603-6 81 86.183387 hybrid +139_1-5 Q0 KILT_8721956-1 82 86.182654 hybrid +139_1-5 Q0 KILT_41170737-7 83 86.181983 hybrid +139_1-5 Q0 KILT_855742-11 84 86.173789 hybrid +139_1-5 Q0 KILT_1428049-8 85 86.167357 hybrid +139_1-5 Q0 KILT_4369239-2 86 86.167243 hybrid +139_1-5 Q0 KILT_33327459-4 87 86.165381 hybrid +139_1-5 Q0 MARCO_00_274747018-3 88 86.159874 hybrid +139_1-5 Q0 MARCO_17_1732660948-29 89 86.158835 hybrid +139_1-5 Q0 KILT_41052220-6 90 86.146941 hybrid +139_1-5 Q0 KILT_10193216-2 91 86.146422 hybrid +139_1-5 Q0 MARCO_22_1173992181-1 92 86.146325 hybrid +139_1-5 Q0 MARCO_19_475582572-12 93 86.143096 hybrid +139_1-5 Q0 MARCO_16_1902087917-34 94 86.130599 hybrid +139_1-5 Q0 MARCO_03_979872567-7 95 86.130075 hybrid +139_1-5 Q0 MARCO_22_1269664649-5 96 86.125225 hybrid +139_1-5 Q0 KILT_25296954-9 97 86.124907 hybrid +139_1-5 Q0 KILT_61288017-2 98 86.123855 hybrid +139_1-5 Q0 MARCO_27_762830124-47 99 86.121624 hybrid +139_1-5 Q0 KILT_11500067-2 100 86.121566 hybrid +139_1-7 Q0 MARCO_42_1374843583-13 1 89.499652 hybrid +139_1-7 Q0 MARCO_10_317288872-1 2 89.131693 hybrid +139_1-7 Q0 MARCO_45_1024470034-8 3 88.961365 hybrid +139_1-7 Q0 MARCO_31_295074061-4 4 88.436135 hybrid +139_1-7 Q0 KILT_44530995-1 5 88.053488 hybrid +139_1-7 Q0 MARCO_10_78568995-3 6 87.963516 hybrid +139_1-7 Q0 MARCO_49_219598061-3 7 87.904639 hybrid +139_1-7 Q0 MARCO_41_1217638368-7 8 87.879315 hybrid +139_1-7 Q0 MARCO_41_1360499217-10 9 87.873474 hybrid +139_1-7 Q0 MARCO_03_1478466963-1 10 87.819723 hybrid +139_1-7 Q0 MARCO_54_732596430-4 11 87.635341 hybrid +139_1-7 Q0 MARCO_26_898272393-1 12 87.618916 hybrid +139_1-7 Q0 MARCO_54_728923297-5 13 87.595315 hybrid +139_1-7 Q0 MARCO_50_2153767895-1 14 87.562577 hybrid +139_1-7 Q0 MARCO_10_551069841-11 15 87.531745 hybrid +139_1-7 Q0 MARCO_10_317288872-2 16 87.515488 hybrid +139_1-7 Q0 MARCO_50_2652041956-5 17 87.472116 hybrid +139_1-7 Q0 MARCO_20_1732101213-5 18 87.439565 hybrid +139_1-7 Q0 MARCO_04_155282561-3 19 87.362566 hybrid +139_1-7 Q0 MARCO_52_221354867-5 20 87.333866 hybrid +139_1-7 Q0 MARCO_58_1588737049-10 21 87.293563 hybrid +139_1-7 Q0 MARCO_25_1031200656-15 22 87.271616 hybrid +139_1-7 Q0 MARCO_02_1590783239-1 23 87.265065 hybrid +139_1-7 Q0 MARCO_43_1010749308-7 24 87.201431 hybrid +139_1-7 Q0 MARCO_20_314890755-37 25 87.190065 hybrid +139_1-7 Q0 MARCO_09_700724773-2 26 87.188278 hybrid +139_1-7 Q0 MARCO_09_370170308-35 27 87.186615 hybrid +139_1-7 Q0 MARCO_24_978037240-10 28 87.185264 hybrid +139_1-7 Q0 MARCO_04_380859839-9 29 87.169116 hybrid +139_1-7 Q0 MARCO_50_1413275575-20 30 87.168907 hybrid +139_1-7 Q0 MARCO_43_1017023674-36 31 87.158279 hybrid +139_1-7 Q0 MARCO_25_529923745-6 32 87.146537 hybrid +139_1-7 Q0 MARCO_27_108691393-24 33 87.132865 hybrid +139_1-7 Q0 MARCO_45_167028191-4 34 87.130661 hybrid +139_1-7 Q0 MARCO_25_1080094176-4 35 87.081716 hybrid +139_1-7 Q0 MARCO_17_1581688443-14 36 87.059665 hybrid +139_1-7 Q0 MARCO_21_1387127213-3 37 87.041961 hybrid +139_1-7 Q0 MARCO_52_1328955597-5 38 87.030761 hybrid +139_1-7 Q0 MARCO_35_315696109-4 39 87.029182 hybrid +139_1-7 Q0 MARCO_28_1344258427-26 40 87.017066 hybrid +139_1-7 Q0 MARCO_35_430586433-6 41 87.013515 hybrid +139_1-7 Q0 MARCO_02_449683614-66 42 87.007715 hybrid +139_1-7 Q0 MARCO_50_1562535838-8 43 86.989316 hybrid +139_1-7 Q0 MARCO_30_598056210-7 44 86.984165 hybrid +139_1-7 Q0 MARCO_00_439407346-1 45 86.967315 hybrid +139_1-7 Q0 MARCO_10_936331787-10 46 86.949765 hybrid +139_1-7 Q0 MARCO_03_796486565-1 47 86.932665 hybrid +139_1-7 Q0 MARCO_44_1774585519-9 48 86.928365 hybrid +139_1-7 Q0 MARCO_38_1687063377-1 49 86.925565 hybrid +139_1-7 Q0 MARCO_44_1519211156-2 50 86.923316 hybrid +139_1-7 Q0 MARCO_29_567510058-8 51 86.920916 hybrid +139_1-7 Q0 MARCO_19_1666010030-243 52 86.916865 hybrid +139_1-7 Q0 MARCO_52_204370134-244 53 86.916865 hybrid +139_1-7 Q0 MARCO_59_789375037-27 54 86.916065 hybrid +139_1-7 Q0 MARCO_26_1458053129-6 55 86.915565 hybrid +139_1-7 Q0 MARCO_49_1827767458-7 56 86.891342 hybrid +139_1-7 Q0 MARCO_44_1794579358-6 57 86.886816 hybrid +139_1-7 Q0 MARCO_10_484837672-1 58 86.879466 hybrid +139_1-7 Q0 MARCO_19_1664792180-227 59 86.865165 hybrid +139_1-7 Q0 MARCO_42_1372445495-3 60 86.858016 hybrid +139_1-7 Q0 MARCO_10_35215777-1 61 86.854179 hybrid +139_1-7 Q0 MARCO_28_396725641-5 62 86.853614 hybrid +139_1-7 Q0 MARCO_24_1254695203-4 63 86.852215 hybrid +139_1-7 Q0 KILT_12232585-36 64 86.837722 hybrid +139_1-7 Q0 MARCO_41_1370065999-36 65 86.835624 hybrid +139_1-7 Q0 MARCO_21_1387127213-2 66 86.824249 hybrid +139_1-7 Q0 MARCO_41_987473146-4 67 86.818766 hybrid +139_1-7 Q0 MARCO_41_1360499217-35 68 86.806865 hybrid +139_1-7 Q0 MARCO_59_789063845-21 69 86.806416 hybrid +139_1-7 Q0 MARCO_07_833162818-239 70 86.806190 hybrid +139_1-7 Q0 MARCO_41_1372564229-6 71 86.804786 hybrid +139_1-7 Q0 MARCO_49_1435175202-10 72 86.797966 hybrid +139_1-7 Q0 MARCO_20_1628240822-36 73 86.789515 hybrid +139_1-7 Q0 MARCO_20_1732101213-11 74 86.780265 hybrid +139_1-7 Q0 MARCO_19_1300168803-4 75 86.777015 hybrid +139_1-7 Q0 MARCO_41_1316556611-43 76 86.776015 hybrid +139_1-7 Q0 MARCO_00_781301235-5 77 86.774466 hybrid +139_1-7 Q0 MARCO_42_1359062506-7 78 86.770240 hybrid +139_1-7 Q0 MARCO_16_3038787278-16 79 86.769783 hybrid +139_1-7 Q0 MARCO_17_1581688443-12 80 86.767416 hybrid +139_1-7 Q0 MARCO_09_963471843-4 81 86.761715 hybrid +139_1-7 Q0 MARCO_22_1854808628-48 82 86.758565 hybrid +139_1-7 Q0 KILT_42485974-1 83 86.755365 hybrid +139_1-7 Q0 MARCO_00_1546966429-78 84 86.752065 hybrid +139_1-7 Q0 MARCO_27_108691393-1 85 86.747365 hybrid +139_1-7 Q0 KILT_42692298-1 86 86.743392 hybrid +139_1-7 Q0 MARCO_24_37872054-17 87 86.739815 hybrid +139_1-7 Q0 MARCO_12_148192882-76 88 86.735504 hybrid +139_1-7 Q0 MARCO_12_153836851-189 89 86.735065 hybrid +139_1-7 Q0 MARCO_16_1741811875-2 90 86.731815 hybrid +139_1-7 Q0 MARCO_57_895142033-11 91 86.729115 hybrid +139_1-7 Q0 MARCO_07_1423336088-4 92 86.724065 hybrid +139_1-7 Q0 KILT_5287207-9 93 86.719757 hybrid +139_1-7 Q0 MARCO_19_134488766-10 94 86.714103 hybrid +139_1-7 Q0 MARCO_05_1349800146-81 95 86.704587 hybrid +139_1-7 Q0 MARCO_37_1259499462-2 96 86.702316 hybrid +139_1-7 Q0 MARCO_09_963471843-1 97 86.688466 hybrid +139_1-7 Q0 MARCO_37_1259257421-8 98 86.682891 hybrid +139_1-7 Q0 KILT_1271047-22 99 86.682243 hybrid +139_1-7 Q0 MARCO_04_1292568396-3 100 86.680671 hybrid +139_2-1 Q0 MARCO_18_2773453818-1 1 89.467371 hybrid +139_2-1 Q0 MARCO_30_852084669-11 2 89.111171 hybrid +139_2-1 Q0 MARCO_51_900710726-1 3 88.724049 hybrid +139_2-1 Q0 MARCO_50_1976647136-20 4 88.721212 hybrid +139_2-1 Q0 MARCO_10_1411108473-1 5 88.661821 hybrid +139_2-1 Q0 MARCO_15_1831919782-6 6 88.540021 hybrid +139_2-1 Q0 KILT_7094395-3 7 88.508571 hybrid +139_2-1 Q0 MARCO_50_1986696809-18 8 88.424184 hybrid +139_2-1 Q0 MARCO_31_1812618181-1 9 88.389871 hybrid +139_2-1 Q0 MARCO_50_1168213625-3 10 88.359021 hybrid +139_2-1 Q0 MARCO_42_1680116628-2 11 88.343221 hybrid +139_2-1 Q0 MARCO_20_1089879677-5 12 88.286071 hybrid +139_2-1 Q0 MARCO_33_412290557-1 13 88.243771 hybrid +139_2-1 Q0 MARCO_42_1754346027-22 14 88.207521 hybrid +139_2-1 Q0 MARCO_23_1110545684-3 15 88.194171 hybrid +139_2-1 Q0 MARCO_58_1542204908-1 16 88.158371 hybrid +139_2-1 Q0 MARCO_57_1408478931-5 17 88.156621 hybrid +139_2-1 Q0 MARCO_21_6211373-12 18 88.150521 hybrid +139_2-1 Q0 MARCO_17_2701144436-3 19 88.128271 hybrid +139_2-1 Q0 MARCO_09_1802288203-1 20 88.111271 hybrid +139_2-1 Q0 MARCO_50_1986696809-15 21 88.082380 hybrid +139_2-1 Q0 MARCO_27_106958038-1 22 88.068321 hybrid +139_2-1 Q0 MARCO_30_287409438-3 23 88.066771 hybrid +139_2-1 Q0 MARCO_23_117804075-4 24 88.055371 hybrid +139_2-1 Q0 MARCO_55_1091231358-3 25 88.054471 hybrid +139_2-1 Q0 MARCO_50_1986696809-13 26 88.052053 hybrid +139_2-1 Q0 MARCO_42_1765382169-8 27 88.048171 hybrid +139_2-1 Q0 MARCO_19_1805641588-8 28 88.014521 hybrid +139_2-1 Q0 MARCO_51_513827094-6 29 88.000921 hybrid +139_2-1 Q0 MARCO_52_1377814776-1 30 87.980871 hybrid +139_2-1 Q0 KILT_32282725-1 31 87.980321 hybrid +139_2-1 Q0 MARCO_45_1001354697-9 32 87.973621 hybrid +139_2-1 Q0 MARCO_27_460368785-4 33 87.961921 hybrid +139_2-1 Q0 MARCO_03_1028000543-2 34 87.958121 hybrid +139_2-1 Q0 MARCO_50_1986696809-19 35 87.954237 hybrid +139_2-1 Q0 MARCO_58_1494932427-1 36 87.945671 hybrid +139_2-1 Q0 MARCO_54_523879479-2 37 87.942421 hybrid +139_2-1 Q0 MARCO_08_149604752-6 38 87.932421 hybrid +139_2-1 Q0 MARCO_55_1169666415-1 39 87.925621 hybrid +139_2-1 Q0 KILT_3282937-7 40 87.923171 hybrid +139_2-1 Q0 MARCO_18_803229601-43 41 87.915271 hybrid +139_2-1 Q0 MARCO_13_898780031-28 42 87.910071 hybrid +139_2-1 Q0 MARCO_41_1377156599-33 43 87.895521 hybrid +139_2-1 Q0 MARCO_30_21099410-1 44 87.882521 hybrid +139_2-1 Q0 MARCO_20_1050682748-10 45 87.872021 hybrid +139_2-1 Q0 KILT_11896247-2 46 87.871421 hybrid +139_2-1 Q0 MARCO_50_1976647136-19 47 87.861875 hybrid +139_2-1 Q0 MARCO_20_1052662580-3 48 87.850521 hybrid +139_2-1 Q0 MARCO_50_1562772054-30 49 87.850121 hybrid +139_2-1 Q0 MARCO_31_1547946125-27 50 87.849471 hybrid +139_2-1 Q0 MARCO_06_752339225-5 51 87.825771 hybrid +139_2-1 Q0 MARCO_23_1590380056-9 52 87.821401 hybrid +139_2-1 Q0 MARCO_03_1387379625-207 53 87.815641 hybrid +139_2-1 Q0 MARCO_50_1976647136-9 54 87.795072 hybrid +139_2-1 Q0 MARCO_50_1986696809-16 55 87.780500 hybrid +139_2-1 Q0 MARCO_13_1016897150-3 56 87.778871 hybrid +139_2-1 Q0 MARCO_45_1001669128-1 57 87.770171 hybrid +139_2-1 Q0 MARCO_29_1213003697-16 58 87.753065 hybrid +139_2-1 Q0 MARCO_55_942681424-5 59 87.752221 hybrid +139_2-1 Q0 MARCO_18_3968859993-2 60 87.750621 hybrid +139_2-1 Q0 MARCO_51_1645862026-1 61 87.747671 hybrid +139_2-1 Q0 MARCO_09_697627654-3 62 87.738921 hybrid +139_2-1 Q0 MARCO_57_1410537016-1 63 87.725021 hybrid +139_2-1 Q0 KILT_763394-7 64 87.724421 hybrid +139_2-1 Q0 MARCO_15_1833801735-2 65 87.724171 hybrid +139_2-1 Q0 MARCO_23_1081888893-1 66 87.711204 hybrid +139_2-1 Q0 MARCO_35_1623896835-2 67 87.709471 hybrid +139_2-1 Q0 MARCO_14_332204452-1 68 87.703466 hybrid +139_2-1 Q0 MARCO_07_1145749299-8 69 87.698371 hybrid +139_2-1 Q0 MARCO_00_864750744-24 70 87.695121 hybrid +139_2-1 Q0 MARCO_49_1465505436-7 71 87.689221 hybrid +139_2-1 Q0 MARCO_27_459565227-1 72 87.683871 hybrid +139_2-1 Q0 MARCO_45_1500112064-6 73 87.671821 hybrid +139_2-1 Q0 MARCO_06_977839154-122 74 87.657271 hybrid +139_2-1 Q0 MARCO_06_977839154-32 75 87.657270 hybrid +139_2-1 Q0 MARCO_06_977839154-77 76 87.657270 hybrid +139_2-1 Q0 MARCO_04_316503868-1 77 87.652221 hybrid +139_2-1 Q0 MARCO_31_296343080-2 78 87.651971 hybrid +139_2-1 Q0 MARCO_39_1330495787-6 79 87.651821 hybrid +139_2-1 Q0 MARCO_50_1297145603-27 80 87.646621 hybrid +139_2-1 Q0 MARCO_40_546550964-5 81 87.642871 hybrid +139_2-1 Q0 MARCO_07_677766167-11 82 87.640321 hybrid +139_2-1 Q0 MARCO_50_1422416858-37 83 87.640071 hybrid +139_2-1 Q0 MARCO_20_1061667015-5 84 87.631421 hybrid +139_2-1 Q0 MARCO_03_1068100937-3 85 87.619871 hybrid +139_2-1 Q0 MARCO_55_248491559-1 86 87.619520 hybrid +139_2-1 Q0 MARCO_50_1459424309-28 87 87.618221 hybrid +139_2-1 Q0 KILT_218575-1 88 87.612121 hybrid +139_2-1 Q0 KILT_57940889-1 89 87.607321 hybrid +139_2-1 Q0 MARCO_18_160591906-8 90 87.602321 hybrid +139_2-1 Q0 MARCO_29_1213003697-13 91 87.596738 hybrid +139_2-1 Q0 MARCO_29_1213003697-15 92 87.591192 hybrid +139_2-1 Q0 MARCO_44_775089654-4 93 87.586721 hybrid +139_2-1 Q0 KILT_20563917-2 94 87.577971 hybrid +139_2-1 Q0 MARCO_23_152842844-3 95 87.576471 hybrid +139_2-1 Q0 MARCO_03_852796594-3 96 87.575221 hybrid +139_2-1 Q0 MARCO_37_195409147-1 97 87.573621 hybrid +139_2-1 Q0 MARCO_47_789231772-5 98 87.571171 hybrid +139_2-1 Q0 KILT_10830516-1 99 87.568521 hybrid +139_2-1 Q0 MARCO_50_1976647136-16 100 87.567113 hybrid +139_2-11 Q0 MARCO_14_752099999-1 1 91.284055 hybrid +139_2-11 Q0 MARCO_03_1700171198-4 2 90.448504 hybrid +139_2-11 Q0 MARCO_11_735247024-1 3 90.412055 hybrid +139_2-11 Q0 MARCO_50_2105041912-34 4 90.383804 hybrid +139_2-11 Q0 MARCO_37_1225565708-1 5 90.368290 hybrid +139_2-11 Q0 MARCO_31_1481499278-1 6 90.304705 hybrid +139_2-11 Q0 MARCO_04_185630830-3 7 90.283205 hybrid +139_2-11 Q0 MARCO_54_451773707-1 8 90.164405 hybrid +139_2-11 Q0 MARCO_37_1225565708-2 9 90.118537 hybrid +139_2-11 Q0 MARCO_55_1288243942-23 10 90.069874 hybrid +139_2-11 Q0 MARCO_05_1214240044-1 11 89.977455 hybrid +139_2-11 Q0 MARCO_22_960848634-12 12 89.922005 hybrid +139_2-11 Q0 MARCO_50_2113671794-1 13 89.910655 hybrid +139_2-11 Q0 MARCO_16_419536940-1 14 89.901105 hybrid +139_2-11 Q0 MARCO_11_1438803312-1 15 89.887355 hybrid +139_2-11 Q0 MARCO_16_419645055-1 16 89.883955 hybrid +139_2-11 Q0 MARCO_19_1717698725-1 17 89.868005 hybrid +139_2-11 Q0 MARCO_03_1702632140-3 18 89.772205 hybrid +139_2-11 Q0 MARCO_03_1766599918-3 19 89.771255 hybrid +139_2-11 Q0 MARCO_52_357414544-13 20 89.761545 hybrid +139_2-11 Q0 MARCO_30_1030775139-1 21 89.743355 hybrid +139_2-11 Q0 MARCO_50_1594307184-19 22 89.700355 hybrid +139_2-11 Q0 MARCO_57_1573844171-1 23 89.687705 hybrid +139_2-11 Q0 KILT_34660438-6 24 89.687455 hybrid +139_2-11 Q0 MARCO_07_579423608-1 25 89.674105 hybrid +139_2-11 Q0 MARCO_12_8649142-1 26 89.644655 hybrid +139_2-11 Q0 MARCO_11_1456802242-1 27 89.640155 hybrid +139_2-11 Q0 MARCO_55_1288243942-25 28 89.624928 hybrid +139_2-11 Q0 MARCO_11_1556769736-1 29 89.602255 hybrid +139_2-11 Q0 MARCO_47_1098361834-1 30 89.592705 hybrid +139_2-11 Q0 MARCO_31_1481489554-7 31 89.589955 hybrid +139_2-11 Q0 MARCO_51_1747069511-18 32 89.571793 hybrid +139_2-11 Q0 MARCO_55_1288243942-28 33 89.565041 hybrid +139_2-11 Q0 MARCO_53_880160990-16 34 89.529555 hybrid +139_2-11 Q0 MARCO_10_853298218-1 35 89.523455 hybrid +139_2-11 Q0 MARCO_41_1111957631-15 36 89.512144 hybrid +139_2-11 Q0 MARCO_11_1039504833-6 37 89.500355 hybrid +139_2-11 Q0 MARCO_03_1766880088-2 38 89.497905 hybrid +139_2-11 Q0 MARCO_57_1573789934-1 39 89.491704 hybrid +139_2-11 Q0 MARCO_50_1411637407-3 40 89.486283 hybrid +139_2-11 Q0 MARCO_55_1596394259-2 41 89.484455 hybrid +139_2-11 Q0 MARCO_54_451773707-5 42 89.483905 hybrid +139_2-11 Q0 MARCO_20_1079120036-5 43 89.480226 hybrid +139_2-11 Q0 MARCO_20_488106648-9 44 89.479605 hybrid +139_2-11 Q0 MARCO_24_76911461-24 45 89.461953 hybrid +139_2-11 Q0 MARCO_22_960848634-13 46 89.458555 hybrid +139_2-11 Q0 MARCO_15_598590406-4 47 89.449105 hybrid +139_2-11 Q0 MARCO_50_796011794-72 48 89.443805 hybrid +139_2-11 Q0 MARCO_03_1721415124-3 49 89.436255 hybrid +139_2-11 Q0 MARCO_03_1766859799-3 50 89.436254 hybrid +139_2-11 Q0 MARCO_27_1332275192-2 51 89.434380 hybrid +139_2-11 Q0 MARCO_24_807685158-21 52 89.433935 hybrid +139_2-11 Q0 MARCO_50_143733671-105 53 89.418155 hybrid +139_2-11 Q0 MARCO_03_1700171198-1 54 89.414705 hybrid +139_2-11 Q0 MARCO_55_1585561404-1 55 89.408605 hybrid +139_2-11 Q0 MARCO_03_1758770549-2 56 89.401655 hybrid +139_2-11 Q0 MARCO_11_735247024-15 57 89.396755 hybrid +139_2-11 Q0 MARCO_11_735247024-10 58 89.395854 hybrid +139_2-11 Q0 MARCO_03_1766701606-4 59 89.394845 hybrid +139_2-11 Q0 MARCO_03_932920353-3 60 89.388305 hybrid +139_2-11 Q0 MARCO_27_1332275192-3 61 89.369446 hybrid +139_2-11 Q0 MARCO_41_1164212236-16 62 89.367981 hybrid +139_2-11 Q0 MARCO_41_709042212-11 63 89.364254 hybrid +139_2-11 Q0 MARCO_29_1219423315-2 64 89.362955 hybrid +139_2-11 Q0 MARCO_54_168272700-1 65 89.356854 hybrid +139_2-11 Q0 MARCO_03_1220536791-78 66 89.346302 hybrid +139_2-11 Q0 MARCO_11_119909427-8 67 89.345189 hybrid +139_2-11 Q0 MARCO_06_337865995-7 68 89.336220 hybrid +139_2-11 Q0 MARCO_50_1417615577-60 69 89.326691 hybrid +139_2-11 Q0 MARCO_29_1210571599-1 70 89.322679 hybrid +139_2-11 Q0 MARCO_54_168282050-1 71 89.305855 hybrid +139_2-11 Q0 MARCO_22_931435635-2 72 89.302855 hybrid +139_2-11 Q0 MARCO_50_142075605-230 73 89.302255 hybrid +139_2-11 Q0 MARCO_51_708535173-1 74 89.298305 hybrid +139_2-11 Q0 MARCO_30_1082693382-1 75 89.288811 hybrid +139_2-11 Q0 MARCO_44_1689960116-13 76 89.284389 hybrid +139_2-11 Q0 MARCO_11_1484668804-1 77 89.282555 hybrid +139_2-11 Q0 MARCO_53_880160990-14 78 89.278805 hybrid +139_2-11 Q0 MARCO_50_2453789934-57 79 89.273555 hybrid +139_2-11 Q0 MARCO_58_1499437200-1 80 89.273005 hybrid +139_2-11 Q0 MARCO_41_709042212-9 81 89.271955 hybrid +139_2-11 Q0 MARCO_20_1123120394-4 82 89.270737 hybrid +139_2-11 Q0 MARCO_59_882253710-2 83 89.259881 hybrid +139_2-11 Q0 MARCO_09_1236796284-2 84 89.256341 hybrid +139_2-11 Q0 MARCO_10_413136154-1 85 89.248305 hybrid +139_2-11 Q0 MARCO_30_1513644633-8 86 89.222305 hybrid +139_2-11 Q0 MARCO_03_1766812192-5 87 89.212755 hybrid +139_2-11 Q0 MARCO_57_1574362384-1 88 89.209505 hybrid +139_2-11 Q0 MARCO_41_1109029954-10 89 89.209488 hybrid +139_2-11 Q0 MARCO_11_1038960623-8 90 89.207555 hybrid +139_2-11 Q0 MARCO_50_1139372387-9 91 89.206954 hybrid +139_2-11 Q0 MARCO_06_1203813551-34 92 89.206666 hybrid +139_2-11 Q0 MARCO_50_1506898909-4 93 89.200448 hybrid +139_2-11 Q0 MARCO_04_230255917-3 94 89.194555 hybrid +139_2-11 Q0 MARCO_50_1269367723-19 95 89.186554 hybrid +139_2-11 Q0 MARCO_06_1219181201-90 96 89.183800 hybrid +139_2-11 Q0 MARCO_09_1786810816-1 97 89.173604 hybrid +139_2-11 Q0 MARCO_50_1986371879-5 98 89.169686 hybrid +139_2-11 Q0 MARCO_50_1522869547-14 99 89.169266 hybrid +139_2-11 Q0 MARCO_06_1254349356-241 100 89.169175 hybrid +139_2-13 Q0 MARCO_50_1976647136-18 1 93.907050 hybrid +139_2-13 Q0 MARCO_30_92494994-5 2 93.550082 hybrid +139_2-13 Q0 MARCO_55_134814551-1 3 93.486915 hybrid +139_2-13 Q0 MARCO_31_1319602620-1 4 93.197377 hybrid +139_2-13 Q0 MARCO_50_2141096457-10 5 92.826500 hybrid +139_2-13 Q0 MARCO_03_1799692237-2 6 92.780585 hybrid +139_2-13 Q0 MARCO_53_1028122158-1 7 92.765385 hybrid +139_2-13 Q0 MARCO_55_1658469788-5 8 92.728635 hybrid +139_2-13 Q0 MARCO_00_767771741-16 9 92.669279 hybrid +139_2-13 Q0 MARCO_03_417885978-1 10 92.641535 hybrid +139_2-13 Q0 MARCO_40_1387930006-1 11 92.629985 hybrid +139_2-13 Q0 MARCO_00_767771741-2 12 92.571548 hybrid +139_2-13 Q0 MARCO_28_413735177-362 13 92.457705 hybrid +139_2-13 Q0 MARCO_00_767771741-1 14 92.453191 hybrid +139_2-13 Q0 MARCO_03_109411891-1 15 92.426684 hybrid +139_2-13 Q0 MARCO_44_1488298674-7 16 92.404839 hybrid +139_2-13 Q0 MARCO_58_1494926115-3 17 92.372285 hybrid +139_2-13 Q0 MARCO_53_847900852-1 18 92.316834 hybrid +139_2-13 Q0 MARCO_53_847326536-3 19 92.305585 hybrid +139_2-13 Q0 MARCO_04_786828265-1 20 92.304543 hybrid +139_2-13 Q0 MARCO_55_1281693293-2 21 92.262804 hybrid +139_2-13 Q0 MARCO_55_1701438850-5 22 92.241383 hybrid +139_2-13 Q0 MARCO_30_92395788-6 23 92.228029 hybrid +139_2-13 Q0 MARCO_30_92573188-9 24 92.219565 hybrid +139_2-13 Q0 MARCO_09_1780339664-4 25 92.212735 hybrid +139_2-13 Q0 MARCO_42_1443537043-6 26 92.172385 hybrid +139_2-13 Q0 MARCO_00_767771741-8 27 92.120522 hybrid +139_2-13 Q0 MARCO_50_2056875471-15 28 92.118335 hybrid +139_2-13 Q0 MARCO_41_2125966972-2 29 92.092134 hybrid +139_2-13 Q0 MARCO_07_1231136368-2 30 92.089235 hybrid +139_2-13 Q0 MARCO_46_250160478-2 31 92.089234 hybrid +139_2-13 Q0 MARCO_44_1488298674-3 32 92.052949 hybrid +139_2-13 Q0 MARCO_22_959148357-1 33 92.010335 hybrid +139_2-13 Q0 MARCO_51_1634693693-2 34 91.983856 hybrid +139_2-13 Q0 MARCO_36_1003085916-10 35 91.972524 hybrid +139_2-13 Q0 MARCO_18_3560969961-28 36 91.958435 hybrid +139_2-13 Q0 MARCO_03_109417930-1 37 91.956785 hybrid +139_2-13 Q0 MARCO_01_782255464-1 38 91.914835 hybrid +139_2-13 Q0 MARCO_23_243972315-5 39 91.914683 hybrid +139_2-13 Q0 MARCO_10_522315065-1 40 91.903485 hybrid +139_2-13 Q0 MARCO_09_344751762-1 41 91.894785 hybrid +139_2-13 Q0 MARCO_18_477374892-11 42 91.888768 hybrid +139_2-13 Q0 MARCO_19_2049478817-1 43 91.888084 hybrid +139_2-13 Q0 MARCO_53_1028118811-1 44 91.874385 hybrid +139_2-13 Q0 MARCO_10_566543307-1 45 91.866634 hybrid +139_2-13 Q0 MARCO_04_225728628-1 46 91.864985 hybrid +139_2-13 Q0 MARCO_55_1707991016-2 47 91.851258 hybrid +139_2-13 Q0 MARCO_09_668443100-1 48 91.828635 hybrid +139_2-13 Q0 MARCO_07_1231136368-4 49 91.824785 hybrid +139_2-13 Q0 MARCO_46_250160478-4 50 91.824784 hybrid +139_2-13 Q0 MARCO_09_668443100-2 51 91.769185 hybrid +139_2-13 Q0 MARCO_22_969313019-2 52 91.754985 hybrid +139_2-13 Q0 MARCO_55_253248333-6 53 91.749739 hybrid +139_2-13 Q0 MARCO_00_16373164-4 54 91.739485 hybrid +139_2-13 Q0 MARCO_58_1155030887-4 55 91.739434 hybrid +139_2-13 Q0 MARCO_29_662582548-11 56 91.738256 hybrid +139_2-13 Q0 MARCO_30_1169762783-4 57 91.729185 hybrid +139_2-13 Q0 MARCO_05_1606072199-1 58 91.707735 hybrid +139_2-13 Q0 MARCO_01_782343151-1 59 91.676035 hybrid +139_2-13 Q0 MARCO_58_1425662545-2 60 91.673184 hybrid +139_2-13 Q0 MARCO_00_767771741-3 61 91.656905 hybrid +139_2-13 Q0 MARCO_04_222650713-1 62 91.642685 hybrid +139_2-13 Q0 MARCO_07_302777999-2 63 91.637685 hybrid +139_2-13 Q0 MARCO_09_1081478967-1 64 91.630885 hybrid +139_2-13 Q0 MARCO_55_1281693293-1 65 91.620738 hybrid +139_2-13 Q0 MARCO_23_243990978-4 66 91.588494 hybrid +139_2-13 Q0 MARCO_06_118129943-3 67 91.577935 hybrid +139_2-13 Q0 MARCO_50_2056875471-1 68 91.576735 hybrid +139_2-13 Q0 MARCO_46_1281483456-2 69 91.563285 hybrid +139_2-13 Q0 MARCO_10_1410563140-1 70 91.559484 hybrid +139_2-13 Q0 MARCO_23_244000007-6 71 91.545223 hybrid +139_2-13 Q0 MARCO_10_77686443-6 72 91.540881 hybrid +139_2-13 Q0 MARCO_22_969313019-1 73 91.538535 hybrid +139_2-13 Q0 KILT_49383962-1 74 91.510435 hybrid +139_2-13 Q0 MARCO_06_118129943-1 75 91.510235 hybrid +139_2-13 Q0 MARCO_00_767771741-5 76 91.503119 hybrid +139_2-13 Q0 MARCO_08_1751713361-1 77 91.487235 hybrid +139_2-13 Q0 MARCO_06_1787324837-3 78 91.474484 hybrid +139_2-13 Q0 MARCO_49_1382824307-10 79 91.467435 hybrid +139_2-13 Q0 KILT_13138513-1 80 91.463385 hybrid +139_2-13 Q0 MARCO_55_1706805628-2 81 91.459381 hybrid +139_2-13 Q0 MARCO_00_767771741-4 82 91.442909 hybrid +139_2-13 Q0 MARCO_58_1494943388-1 83 91.415385 hybrid +139_2-13 Q0 MARCO_10_125884503-3 84 91.399311 hybrid +139_2-13 Q0 KILT_897775-20 85 91.362754 hybrid +139_2-13 Q0 MARCO_45_811743473-1 86 91.330385 hybrid +139_2-13 Q0 MARCO_09_182073554-1 87 91.316985 hybrid +139_2-13 Q0 MARCO_03_1672660320-1 88 91.313650 hybrid +139_2-13 Q0 MARCO_04_101224264-4 89 91.288185 hybrid +139_2-13 Q0 MARCO_33_589324189-1 90 91.285135 hybrid +139_2-13 Q0 MARCO_44_1488298674-1 91 91.281016 hybrid +139_2-13 Q0 MARCO_01_782340366-1 92 91.277235 hybrid +139_2-13 Q0 MARCO_10_125884503-1 93 91.274416 hybrid +139_2-13 Q0 MARCO_01_1088907354-1 94 91.267585 hybrid +139_2-13 Q0 MARCO_46_248743863-15 95 91.262985 hybrid +139_2-13 Q0 MARCO_09_1081496511-1 96 91.255985 hybrid +139_2-13 Q0 MARCO_28_413735177-361 97 91.245278 hybrid +139_2-13 Q0 MARCO_30_345474285-7 98 91.241035 hybrid +139_2-13 Q0 MARCO_06_118113063-2 99 91.240984 hybrid +139_2-13 Q0 MARCO_13_402956366-3 100 91.227455 hybrid +139_2-15 Q0 MARCO_03_442514811-4 1 92.978528 hybrid +139_2-15 Q0 MARCO_29_1213003697-13 2 92.276141 hybrid +139_2-15 Q0 MARCO_15_134315224-2 3 92.111163 hybrid +139_2-15 Q0 MARCO_30_151874420-2 4 91.968194 hybrid +139_2-15 Q0 MARCO_04_226143120-4 5 91.842324 hybrid +139_2-15 Q0 MARCO_36_1004519590-1 6 91.802592 hybrid +139_2-15 Q0 MARCO_30_1081756789-12 7 91.786630 hybrid +139_2-15 Q0 MARCO_30_1004298367-1 8 91.738487 hybrid +139_2-15 Q0 MARCO_00_885435574-4 9 91.587272 hybrid +139_2-15 Q0 MARCO_15_132265984-1 10 91.568507 hybrid +139_2-15 Q0 MARCO_30_91898173-4 11 91.346972 hybrid +139_2-15 Q0 MARCO_55_251598823-12 12 91.309663 hybrid +139_2-15 Q0 MARCO_55_251758340-10 13 91.160120 hybrid +139_2-15 Q0 MARCO_21_1442314510-6 14 91.106368 hybrid +139_2-15 Q0 MARCO_11_267211801-58 15 91.098325 hybrid +139_2-15 Q0 MARCO_08_1479620216-1 16 91.018521 hybrid +139_2-15 Q0 MARCO_22_1581780845-10 17 90.947730 hybrid +139_2-15 Q0 MARCO_55_1727330288-2 18 90.923455 hybrid +139_2-15 Q0 MARCO_15_131918859-1 19 90.916625 hybrid +139_2-15 Q0 MARCO_45_1436807476-2 20 90.907447 hybrid +139_2-15 Q0 MARCO_56_1875212486-4 21 90.868875 hybrid +139_2-15 Q0 MARCO_00_885435574-3 22 90.846661 hybrid +139_2-15 Q0 MARCO_20_1636520521-1 23 90.836525 hybrid +139_2-15 Q0 MARCO_06_933601323-1 24 90.829525 hybrid +139_2-15 Q0 MARCO_29_1213003697-15 25 90.800340 hybrid +139_2-15 Q0 MARCO_52_233873450-3 26 90.777425 hybrid +139_2-15 Q0 MARCO_24_1653699550-1 27 90.750575 hybrid +139_2-15 Q0 MARCO_33_865959304-1 28 90.732024 hybrid +139_2-15 Q0 MARCO_30_1004336912-1 29 90.727635 hybrid +139_2-15 Q0 MARCO_24_1866677824-1 30 90.710575 hybrid +139_2-15 Q0 MARCO_30_151772794-18 31 90.675916 hybrid +139_2-15 Q0 MARCO_30_1004298367-5 32 90.673827 hybrid +139_2-15 Q0 MARCO_45_1437052426-4 33 90.671811 hybrid +139_2-15 Q0 MARCO_15_133602246-1 34 90.638089 hybrid +139_2-15 Q0 MARCO_01_782316179-1 35 90.637924 hybrid +139_2-15 Q0 MARCO_32_389113202-2 36 90.635525 hybrid +139_2-15 Q0 MARCO_12_414891901-1 37 90.623825 hybrid +139_2-15 Q0 MARCO_21_1038592258-1 38 90.620561 hybrid +139_2-15 Q0 MARCO_14_335989648-1 39 90.607866 hybrid +139_2-15 Q0 MARCO_33_863953162-1 40 90.603374 hybrid +139_2-15 Q0 MARCO_50_715162476-1 41 90.584374 hybrid +139_2-15 Q0 MARCO_04_74746223-1 42 90.583875 hybrid +139_2-15 Q0 MARCO_05_811761166-1 43 90.570378 hybrid +139_2-15 Q0 MARCO_06_933624139-1 44 90.555175 hybrid +139_2-15 Q0 MARCO_38_266692016-3 45 90.553675 hybrid +139_2-15 Q0 MARCO_33_735600712-1 46 90.540674 hybrid +139_2-15 Q0 MARCO_30_1985156903-7 47 90.532974 hybrid +139_2-15 Q0 MARCO_04_78577922-4 48 90.516375 hybrid +139_2-15 Q0 MARCO_36_1657050914-1 49 90.512725 hybrid +139_2-15 Q0 MARCO_19_2051990023-5 50 90.511524 hybrid +139_2-15 Q0 MARCO_32_586895629-13 51 90.489175 hybrid +139_2-15 Q0 MARCO_52_233873450-5 52 90.472775 hybrid +139_2-15 Q0 MARCO_30_1081715671-8 53 90.461675 hybrid +139_2-15 Q0 MARCO_05_812510161-16 54 90.458081 hybrid +139_2-15 Q0 MARCO_06_688995972-1 55 90.445724 hybrid +139_2-15 Q0 MARCO_58_1722763649-1 56 90.428325 hybrid +139_2-15 Q0 MARCO_45_816843258-2 57 90.414225 hybrid +139_2-15 Q0 MARCO_34_51783652-2 58 90.410975 hybrid +139_2-15 Q0 MARCO_15_133965036-1 59 90.393290 hybrid +139_2-15 Q0 MARCO_19_1805530637-4 60 90.370074 hybrid +139_2-15 Q0 MARCO_30_129576355-2 61 90.360797 hybrid +139_2-15 Q0 MARCO_54_221961904-1 62 90.353775 hybrid +139_2-15 Q0 MARCO_52_233783756-4 63 90.329625 hybrid +139_2-15 Q0 MARCO_15_1942604140-1 64 90.302025 hybrid +139_2-15 Q0 MARCO_15_588365057-1 65 90.301024 hybrid +139_2-15 Q0 KILT_70983-1 66 90.299725 hybrid +139_2-15 Q0 MARCO_20_1636518258-2 67 90.290874 hybrid +139_2-15 Q0 MARCO_30_92466635-5 68 90.262914 hybrid +139_2-15 Q0 MARCO_50_636768984-3 69 90.261151 hybrid +139_2-15 Q0 MARCO_53_551701401-3 70 90.254624 hybrid +139_2-15 Q0 MARCO_33_735600712-2 71 90.252325 hybrid +139_2-15 Q0 MARCO_36_1005338413-6 72 90.242238 hybrid +139_2-15 Q0 MARCO_02_23367761-1 73 90.241574 hybrid +139_2-15 Q0 MARCO_33_864586256-2 74 90.236625 hybrid +139_2-15 Q0 MARCO_36_1657050914-2 75 90.235075 hybrid +139_2-15 Q0 MARCO_55_1675124152-1 76 90.215924 hybrid +139_2-15 Q0 MARCO_27_458330320-1 77 90.199574 hybrid +139_2-15 Q0 MARCO_02_1576426441-2 78 90.199338 hybrid +139_2-15 Q0 MARCO_40_1782128286-4 79 90.192575 hybrid +139_2-15 Q0 MARCO_58_1519122011-1 80 90.191925 hybrid +139_2-15 Q0 MARCO_27_459056140-1 81 90.188274 hybrid +139_2-15 Q0 MARCO_31_644943902-1 82 90.184150 hybrid +139_2-15 Q0 MARCO_32_389113202-1 83 90.181575 hybrid +139_2-15 Q0 MARCO_34_51795653-1 84 90.172174 hybrid +139_2-15 Q0 MARCO_52_233873450-4 85 90.155425 hybrid +139_2-15 Q0 MARCO_10_1411108473-5 86 90.150974 hybrid +139_2-15 Q0 MARCO_04_78577922-3 87 90.141025 hybrid +139_2-15 Q0 MARCO_06_227410351-2 88 90.135624 hybrid +139_2-15 Q0 MARCO_30_1179900441-3 89 90.128824 hybrid +139_2-15 Q0 MARCO_26_721402881-1 90 90.124525 hybrid +139_2-15 Q0 MARCO_29_1446691039-2 91 90.118475 hybrid +139_2-15 Q0 MARCO_01_1088611998-1 92 90.102775 hybrid +139_2-15 Q0 MARCO_04_470363392-1 93 90.100325 hybrid +139_2-15 Q0 MARCO_04_470714367-1 94 90.100324 hybrid +139_2-15 Q0 MARCO_30_1004336912-6 95 90.091625 hybrid +139_2-15 Q0 MARCO_41_758942686-5 96 90.083425 hybrid +139_2-15 Q0 MARCO_02_1080465547-2 97 90.070225 hybrid +139_2-15 Q0 MARCO_41_2017120576-1 98 90.053625 hybrid +139_2-15 Q0 MARCO_49_1444487440-2 99 90.052674 hybrid +139_2-15 Q0 MARCO_58_1479702106-5 100 90.035125 hybrid +139_2-17 Q0 MARCO_55_248101630-14 1 89.407467 hybrid +139_2-17 Q0 MARCO_47_1588867018-1 2 89.164768 hybrid +139_2-17 Q0 MARCO_15_296401490-1 3 88.912346 hybrid +139_2-17 Q0 MARCO_02_1546030744-1 4 88.908822 hybrid +139_2-17 Q0 MARCO_22_332955208-14 5 88.891696 hybrid +139_2-17 Q0 MARCO_08_23873421-2 6 88.879796 hybrid +139_2-17 Q0 MARCO_02_1546030744-3 7 88.873512 hybrid +139_2-17 Q0 MARCO_46_1281483456-1 8 88.861846 hybrid +139_2-17 Q0 MARCO_56_1251028907-8 9 88.826096 hybrid +139_2-17 Q0 MARCO_30_1924631494-6 10 88.814046 hybrid +139_2-17 Q0 MARCO_17_1649032852-19 11 88.756796 hybrid +139_2-17 Q0 MARCO_30_1924360724-7 12 88.731846 hybrid +139_2-17 Q0 MARCO_38_1499716167-2 13 88.729444 hybrid +139_2-17 Q0 MARCO_07_792613825-1 14 88.713595 hybrid +139_2-17 Q0 MARCO_19_1805473275-4 15 88.680746 hybrid +139_2-17 Q0 MARCO_25_1069024729-7 16 88.674146 hybrid +139_2-17 Q0 MARCO_49_434009659-2 17 88.648246 hybrid +139_2-17 Q0 MARCO_01_1180303346-24 18 88.645346 hybrid +139_2-17 Q0 MARCO_03_928526805-1 19 88.608046 hybrid +139_2-17 Q0 MARCO_55_1278800307-4 20 88.604146 hybrid +139_2-17 Q0 MARCO_49_1456709203-2 21 88.536446 hybrid +139_2-17 Q0 MARCO_20_1605863250-2 22 88.534456 hybrid +139_2-17 Q0 MARCO_20_1118084501-6 23 88.501934 hybrid +139_2-17 Q0 MARCO_58_1485580408-1 24 88.482446 hybrid +139_2-17 Q0 MARCO_58_1501182002-15 25 88.479046 hybrid +139_2-17 Q0 MARCO_03_1672793416-4 26 88.475191 hybrid +139_2-17 Q0 MARCO_34_1720678160-8 27 88.470956 hybrid +139_2-17 Q0 MARCO_50_927157772-10 28 88.442918 hybrid +139_2-17 Q0 MARCO_21_1441777873-2 29 88.437163 hybrid +139_2-17 Q0 MARCO_55_1709550013-7 30 88.413496 hybrid +139_2-17 Q0 MARCO_58_1504956994-1 31 88.410159 hybrid +139_2-17 Q0 MARCO_27_1067996191-1 32 88.406746 hybrid +139_2-17 Q0 MARCO_30_1984905172-10 33 88.404396 hybrid +139_2-17 Q0 MARCO_20_1605863250-3 34 88.403108 hybrid +139_2-17 Q0 MARCO_30_1924631494-4 35 88.399046 hybrid +139_2-17 Q0 MARCO_56_1863104864-5 36 88.382196 hybrid +139_2-17 Q0 MARCO_47_1258555487-1 37 88.366996 hybrid +139_2-17 Q0 MARCO_31_478744800-1 38 88.361496 hybrid +139_2-17 Q0 MARCO_07_674063770-1 39 88.340946 hybrid +139_2-17 Q0 MARCO_44_50642952-1 40 88.319596 hybrid +139_2-17 Q0 MARCO_52_876501676-2 41 88.316746 hybrid +139_2-17 Q0 MARCO_20_1155271384-1 42 88.314696 hybrid +139_2-17 Q0 MARCO_43_367747095-13 43 88.292396 hybrid +139_2-17 Q0 MARCO_48_1840360738-1 44 88.291846 hybrid +139_2-17 Q0 MARCO_03_928526805-7 45 88.280446 hybrid +139_2-17 Q0 MARCO_30_1925129417-1 46 88.264046 hybrid +139_2-17 Q0 MARCO_00_790685630-1 47 88.261246 hybrid +139_2-17 Q0 MARCO_48_1155543495-1 48 88.224192 hybrid +139_2-17 Q0 MARCO_30_1046698867-1 49 88.216320 hybrid +139_2-17 Q0 MARCO_27_1333781267-8 50 88.210252 hybrid +139_2-17 Q0 MARCO_00_800359058-1 51 88.203973 hybrid +139_2-17 Q0 MARCO_32_1821905864-3 52 88.200396 hybrid +139_2-17 Q0 MARCO_54_491974833-14 53 88.195696 hybrid +139_2-17 Q0 MARCO_30_1511531130-7 54 88.194034 hybrid +139_2-17 Q0 MARCO_00_3084409-1 55 88.193196 hybrid +139_2-17 Q0 MARCO_30_1925445473-1 56 88.188596 hybrid +139_2-17 Q0 KILT_46986-1 57 88.185346 hybrid +139_2-17 Q0 MARCO_42_1365055656-5 58 88.167833 hybrid +139_2-17 Q0 MARCO_38_522517305-5 59 88.166128 hybrid +139_2-17 Q0 MARCO_20_1606288135-1 60 88.159677 hybrid +139_2-17 Q0 MARCO_38_522616054-3 61 88.157778 hybrid +139_2-17 Q0 MARCO_03_447497708-1 62 88.140295 hybrid +139_2-17 Q0 MARCO_30_1070883181-1 63 88.131846 hybrid +139_2-17 Q0 MARCO_00_800389515-1 64 88.119791 hybrid +139_2-17 Q0 MARCO_09_1286129239-4 65 88.114346 hybrid +139_2-17 Q0 MARCO_02_1546030744-5 66 88.096766 hybrid +139_2-17 Q0 MARCO_20_17205373-8 67 88.093050 hybrid +139_2-17 Q0 MARCO_38_522517305-2 68 88.091302 hybrid +139_2-17 Q0 MARCO_06_1061559786-4 69 88.091035 hybrid +139_2-17 Q0 MARCO_20_722527545-1 70 88.087646 hybrid +139_2-17 Q0 MARCO_13_1449590936-1 71 88.077446 hybrid +139_2-17 Q0 MARCO_55_1725945113-1 72 88.075696 hybrid +139_2-17 Q0 MARCO_03_928526805-10 73 88.067096 hybrid +139_2-17 Q0 MARCO_30_1925445473-6 74 88.063796 hybrid +139_2-17 Q0 MARCO_30_347171254-4 75 88.060646 hybrid +139_2-17 Q0 MARCO_24_1139334213-9 76 88.052957 hybrid +139_2-17 Q0 MARCO_07_488649384-1 77 88.052496 hybrid +139_2-17 Q0 MARCO_38_1487978435-2 78 88.047546 hybrid +139_2-17 Q0 MARCO_29_1526024371-1 79 88.039196 hybrid +139_2-17 Q0 MARCO_09_344678610-1 80 88.024446 hybrid +139_2-17 Q0 MARCO_27_1773817725-1 81 88.017896 hybrid +139_2-17 Q0 MARCO_20_1118084501-3 82 88.015794 hybrid +139_2-17 Q0 MARCO_20_1351858174-11 83 88.012196 hybrid +139_2-17 Q0 MARCO_30_1951945279-6 84 88.011446 hybrid +139_2-17 Q0 MARCO_20_1118084501-1 85 88.010400 hybrid +139_2-17 Q0 MARCO_01_2126091627-7 86 88.008246 hybrid +139_2-17 Q0 MARCO_30_1980783050-26 87 88.005746 hybrid +139_2-17 Q0 MARCO_47_1588560149-4 88 88.005693 hybrid +139_2-17 Q0 MARCO_01_1542381894-9 89 88.005464 hybrid +139_2-17 Q0 MARCO_00_800359058-2 90 88.001924 hybrid +139_2-17 Q0 MARCO_56_1851308952-5 91 88.000946 hybrid +139_2-17 Q0 MARCO_10_99721631-2 92 87.999483 hybrid +139_2-17 Q0 MARCO_55_1410079020-3 93 87.998096 hybrid +139_2-17 Q0 MARCO_58_1501182002-13 94 87.995946 hybrid +139_2-17 Q0 MARCO_11_331124980-1 95 87.995046 hybrid +139_2-17 Q0 MARCO_10_234067446-15 96 87.994203 hybrid +139_2-17 Q0 MARCO_48_1850690322-1 97 87.994096 hybrid +139_2-17 Q0 MARCO_47_1588560149-1 98 87.993272 hybrid +139_2-17 Q0 MARCO_02_1541391721-4 99 87.991182 hybrid +139_2-17 Q0 MARCO_17_1625700623-2 100 87.982096 hybrid +139_2-19 Q0 KILT_58206186-2 1 87.567656 hybrid +139_2-19 Q0 MARCO_05_965907775-1 2 87.347806 hybrid +139_2-19 Q0 MARCO_05_1883058231-258 3 87.241306 hybrid +139_2-19 Q0 MARCO_44_1051951835-11 4 87.053956 hybrid +139_2-19 Q0 MARCO_44_1483498128-1 5 87.022256 hybrid +139_2-19 Q0 MARCO_01_149997882-7 6 86.905356 hybrid +139_2-19 Q0 MARCO_05_1883058231-259 7 86.893356 hybrid +139_2-19 Q0 MARCO_21_1386201033-1 8 86.830988 hybrid +139_2-19 Q0 MARCO_19_1393617347-1 9 86.776179 hybrid +139_2-19 Q0 MARCO_31_1145483425-20 10 86.752506 hybrid +139_2-19 Q0 MARCO_58_1147102400-16 11 86.733556 hybrid +139_2-19 Q0 KILT_38355089-6 12 86.732556 hybrid +139_2-19 Q0 KILT_56436309-1 13 86.716356 hybrid +139_2-19 Q0 MARCO_29_662582548-3 14 86.619441 hybrid +139_2-19 Q0 MARCO_05_1883058231-257 15 86.586206 hybrid +139_2-19 Q0 KILT_561874-9 16 86.538906 hybrid +139_2-19 Q0 MARCO_05_1158742223-4 17 86.508506 hybrid +139_2-19 Q0 MARCO_43_777882589-10 18 86.505656 hybrid +139_2-19 Q0 KILT_3290313-2 19 86.503006 hybrid +139_2-19 Q0 MARCO_06_1616915949-3 20 86.473979 hybrid +139_2-19 Q0 KILT_35815426-1 21 86.473006 hybrid +139_2-19 Q0 MARCO_54_1522279287-7 22 86.470006 hybrid +139_2-19 Q0 MARCO_31_1135061448-57 23 86.464106 hybrid +139_2-19 Q0 KILT_45632133-18 24 86.459106 hybrid +139_2-19 Q0 KILT_1661158-6 25 86.449709 hybrid +139_2-19 Q0 KILT_11182-47 26 86.442006 hybrid +139_2-19 Q0 MARCO_17_3109358644-17 27 86.430264 hybrid +139_2-19 Q0 MARCO_18_257412923-10 28 86.409156 hybrid +139_2-19 Q0 MARCO_30_92573188-9 29 86.381630 hybrid +139_2-19 Q0 MARCO_06_1616813287-26 30 86.374514 hybrid +139_2-19 Q0 MARCO_03_205455923-2 31 86.346256 hybrid +139_2-19 Q0 MARCO_17_1745780583-9 32 86.338763 hybrid +139_2-19 Q0 KILT_4946907-2 33 86.336756 hybrid +139_2-19 Q0 MARCO_18_461374169-9 34 86.322199 hybrid +139_2-19 Q0 KILT_14924687-1 35 86.321906 hybrid +139_2-19 Q0 MARCO_26_1807535623-26 36 86.296756 hybrid +139_2-19 Q0 MARCO_42_1294359321-32 37 86.291006 hybrid +139_2-19 Q0 KILT_35471967-3 38 86.272256 hybrid +139_2-19 Q0 MARCO_35_34939583-1 39 86.264156 hybrid +139_2-19 Q0 MARCO_07_1314467352-4 40 86.260956 hybrid +139_2-19 Q0 KILT_35333953-8 41 86.249556 hybrid +139_2-19 Q0 MARCO_26_1807535623-28 42 86.241456 hybrid +139_2-19 Q0 MARCO_17_1262084336-2 43 86.238556 hybrid +139_2-19 Q0 MARCO_40_1349180600-11 44 86.235856 hybrid +139_2-19 Q0 MARCO_55_295865117-6 45 86.235556 hybrid +139_2-19 Q0 MARCO_32_1200106444-2 46 86.233806 hybrid +139_2-19 Q0 KILT_16205018-8 47 86.230334 hybrid +139_2-19 Q0 MARCO_17_351829036-17 48 86.211237 hybrid +139_2-19 Q0 MARCO_15_1844440335-13 49 86.206126 hybrid +139_2-19 Q0 KILT_21739179-1 50 86.195206 hybrid +139_2-19 Q0 MARCO_35_20837600-5 51 86.193743 hybrid +139_2-19 Q0 MARCO_35_15102795-2 52 86.186306 hybrid +139_2-19 Q0 KILT_3021133-2 53 86.179240 hybrid +139_2-19 Q0 MARCO_11_757966359-3 54 86.177355 hybrid +139_2-19 Q0 MARCO_46_626568448-1 55 86.175606 hybrid +139_2-19 Q0 MARCO_21_1393994110-2 56 86.173548 hybrid +139_2-19 Q0 MARCO_35_15102795-3 57 86.171206 hybrid +139_2-19 Q0 KILT_3919625-6 58 86.160067 hybrid +139_2-19 Q0 MARCO_10_127299484-35 59 86.152628 hybrid +139_2-19 Q0 MARCO_16_4218910771-28 60 86.151506 hybrid +139_2-19 Q0 MARCO_52_1236210091-17 61 86.148356 hybrid +139_2-19 Q0 KILT_52395705-9 62 86.143856 hybrid +139_2-19 Q0 MARCO_18_4323670113-8 63 86.142506 hybrid +139_2-19 Q0 KILT_192314-7 64 86.142056 hybrid +139_2-19 Q0 MARCO_17_1262084336-9 65 86.139756 hybrid +139_2-19 Q0 MARCO_39_602834599-24 66 86.138133 hybrid +139_2-19 Q0 MARCO_48_373355835-4 67 86.135897 hybrid +139_2-19 Q0 MARCO_56_196895657-55 68 86.134456 hybrid +139_2-19 Q0 KILT_964617-14 69 86.131856 hybrid +139_2-19 Q0 KILT_36480039-3 70 86.121577 hybrid +139_2-19 Q0 MARCO_16_1655418715-5 71 86.118609 hybrid +139_2-19 Q0 MARCO_01_2117247644-2 72 86.116406 hybrid +139_2-19 Q0 MARCO_25_585515677-1 73 86.114156 hybrid +139_2-19 Q0 MARCO_06_1261488820-222 74 86.113604 hybrid +139_2-19 Q0 MARCO_37_484082058-2 75 86.110206 hybrid +139_2-19 Q0 MARCO_50_1451349787-2 76 86.109864 hybrid +139_2-19 Q0 MARCO_52_1380512475-15 77 86.097193 hybrid +139_2-19 Q0 MARCO_30_855703551-4 78 86.095906 hybrid +139_2-19 Q0 KILT_60310902-2 79 86.087306 hybrid +139_2-19 Q0 KILT_2436129-7 80 86.085780 hybrid +139_2-19 Q0 KILT_13325558-9 81 86.077706 hybrid +139_2-19 Q0 MARCO_18_3244529140-23 82 86.075999 hybrid +139_2-19 Q0 MARCO_06_1942550258-627 83 86.074506 hybrid +139_2-19 Q0 MARCO_22_806333405-16 84 86.074506 hybrid +139_2-19 Q0 KILT_2243390-10 85 86.067456 hybrid +139_2-19 Q0 MARCO_18_3234188766-45 86 86.063906 hybrid +139_2-19 Q0 MARCO_44_976836883-11 87 86.056706 hybrid +139_2-19 Q0 MARCO_16_1715727283-4 88 86.054301 hybrid +139_2-19 Q0 MARCO_05_981910427-2 89 86.053156 hybrid +139_2-19 Q0 MARCO_22_833981189-5 90 86.053019 hybrid +139_2-19 Q0 MARCO_44_552827027-12 91 86.047406 hybrid +139_2-19 Q0 KILT_16522290-42 92 86.044806 hybrid +139_2-19 Q0 MARCO_19_551137585-44 93 86.044806 hybrid +139_2-19 Q0 KILT_1367040-4 94 86.042306 hybrid +139_2-19 Q0 MARCO_15_1844440335-4 95 86.041705 hybrid +139_2-19 Q0 MARCO_08_445805489-24 96 86.039056 hybrid +139_2-19 Q0 MARCO_56_189715357-2 97 86.017056 hybrid +139_2-19 Q0 MARCO_39_609022944-9 98 86.016932 hybrid +139_2-19 Q0 MARCO_10_525839861-20 99 86.013006 hybrid +139_2-19 Q0 KILT_7018181-7 100 86.009556 hybrid +139_2-3 Q0 MARCO_29_1213003697-15 1 88.527350 hybrid +139_2-3 Q0 MARCO_29_1213003697-14 2 87.965301 hybrid +139_2-3 Q0 MARCO_05_811761166-1 3 87.841988 hybrid +139_2-3 Q0 MARCO_05_812510161-16 4 87.689133 hybrid +139_2-3 Q0 MARCO_45_1436893275-2 5 87.631241 hybrid +139_2-3 Q0 MARCO_31_1319602620-1 6 87.619751 hybrid +139_2-3 Q0 MARCO_47_921555391-19 7 87.525582 hybrid +139_2-3 Q0 MARCO_29_1213003697-13 8 87.493920 hybrid +139_2-3 Q0 MARCO_55_985944679-1 9 87.447384 hybrid +139_2-3 Q0 MARCO_31_634624646-4 10 87.376434 hybrid +139_2-3 Q0 MARCO_55_1708077747-1 11 87.352578 hybrid +139_2-3 Q0 MARCO_41_1271021522-6 12 87.341284 hybrid +139_2-3 Q0 MARCO_42_1361250839-1 13 87.339676 hybrid +139_2-3 Q0 MARCO_10_790302336-6 14 87.322617 hybrid +139_2-3 Q0 MARCO_41_1566695089-90 15 87.316984 hybrid +139_2-3 Q0 MARCO_55_248699225-1 16 87.316071 hybrid +139_2-3 Q0 KILT_2071938-1 17 87.314850 hybrid +139_2-3 Q0 MARCO_50_2819154406-1 18 87.287934 hybrid +139_2-3 Q0 MARCO_34_1555173315-3 19 87.276884 hybrid +139_2-3 Q0 MARCO_50_2502286195-117 20 87.235299 hybrid +139_2-3 Q0 MARCO_50_898665724-22 21 87.221734 hybrid +139_2-3 Q0 MARCO_41_1182651126-35 22 87.178184 hybrid +139_2-3 Q0 MARCO_50_1831648722-63 23 87.149334 hybrid +139_2-3 Q0 MARCO_23_647701103-3 24 87.148584 hybrid +139_2-3 Q0 MARCO_56_69977451-9 25 87.143334 hybrid +139_2-3 Q0 MARCO_39_789911526-4 26 87.141834 hybrid +139_2-3 Q0 MARCO_47_127733848-1 27 87.128784 hybrid +139_2-3 Q0 MARCO_55_229044321-10 28 87.112484 hybrid +139_2-3 Q0 MARCO_03_442514811-4 29 87.104883 hybrid +139_2-3 Q0 MARCO_10_1411108473-1 30 87.104034 hybrid +139_2-3 Q0 MARCO_01_1766675132-1 31 87.100434 hybrid +139_2-3 Q0 MARCO_09_690104171-7 32 87.094334 hybrid +139_2-3 Q0 MARCO_30_1646317998-1 33 87.092734 hybrid +139_2-3 Q0 MARCO_25_216322554-1 34 87.091484 hybrid +139_2-3 Q0 MARCO_29_1213003697-16 35 87.083733 hybrid +139_2-3 Q0 MARCO_41_1943381249-2 36 87.064784 hybrid +139_2-3 Q0 MARCO_03_583240442-12 37 87.058663 hybrid +139_2-3 Q0 MARCO_00_545007325-7 38 87.053234 hybrid +139_2-3 Q0 MARCO_05_1353648283-1 39 87.051606 hybrid +139_2-3 Q0 MARCO_24_1015058943-7 40 87.011147 hybrid +139_2-3 Q0 MARCO_08_1257598126-1 41 87.004234 hybrid +139_2-3 Q0 MARCO_58_1588611162-2 42 87.003823 hybrid +139_2-3 Q0 KILT_42725077-4 43 87.003304 hybrid +139_2-3 Q0 MARCO_41_1128842538-2 44 86.998978 hybrid +139_2-3 Q0 MARCO_30_91898173-1 45 86.989968 hybrid +139_2-3 Q0 MARCO_30_92489099-1 46 86.988556 hybrid +139_2-3 Q0 MARCO_33_1130469866-2 47 86.967484 hybrid +139_2-3 Q0 MARCO_23_1137488780-4 48 86.963534 hybrid +139_2-3 Q0 MARCO_45_1436872912-1 49 86.961922 hybrid +139_2-3 Q0 KILT_49921015-2 50 86.959580 hybrid +139_2-3 Q0 MARCO_07_794950389-1 51 86.957584 hybrid +139_2-3 Q0 MARCO_35_1140876542-4 52 86.955460 hybrid +139_2-3 Q0 MARCO_24_807844416-14 53 86.951833 hybrid +139_2-3 Q0 MARCO_58_1144692611-14 54 86.946034 hybrid +139_2-3 Q0 MARCO_49_221963583-2 55 86.930718 hybrid +139_2-3 Q0 MARCO_07_726147938-112 56 86.927184 hybrid +139_2-3 Q0 KILT_48621266-1 57 86.921250 hybrid +139_2-3 Q0 MARCO_33_100289532-12 58 86.917184 hybrid +139_2-3 Q0 MARCO_00_1583631650-1 59 86.914177 hybrid +139_2-3 Q0 MARCO_12_1442123866-10 60 86.909234 hybrid +139_2-3 Q0 MARCO_30_1985156903-7 61 86.906584 hybrid +139_2-3 Q0 MARCO_12_1568718437-4 62 86.897084 hybrid +139_2-3 Q0 MARCO_30_1087879020-45 63 86.896813 hybrid +139_2-3 Q0 MARCO_25_1430899678-3 64 86.886895 hybrid +139_2-3 Q0 MARCO_35_1141061275-16 65 86.884171 hybrid +139_2-3 Q0 MARCO_58_1586390400-4 66 86.882370 hybrid +139_2-3 Q0 MARCO_06_1118768745-52 67 86.881836 hybrid +139_2-3 Q0 MARCO_58_1144340942-22 68 86.880834 hybrid +139_2-3 Q0 MARCO_50_1703427006-13 69 86.877434 hybrid +139_2-3 Q0 MARCO_41_1011990460-14 70 86.876484 hybrid +139_2-3 Q0 MARCO_41_1692386068-2 71 86.874384 hybrid +139_2-3 Q0 MARCO_58_1099930275-3 72 86.874084 hybrid +139_2-3 Q0 MARCO_54_1856020519-1 73 86.868920 hybrid +139_2-3 Q0 MARCO_07_1590509091-1 74 86.860084 hybrid +139_2-3 Q0 MARCO_56_1875212486-4 75 86.858484 hybrid +139_2-3 Q0 MARCO_24_1015058943-6 76 86.847977 hybrid +139_2-3 Q0 MARCO_30_366584652-1 77 86.837734 hybrid +139_2-3 Q0 MARCO_19_977014903-12 78 86.833809 hybrid +139_2-3 Q0 MARCO_42_1361250839-10 79 86.827630 hybrid +139_2-3 Q0 MARCO_30_1083631665-8 80 86.822472 hybrid +139_2-3 Q0 MARCO_38_1703243778-30 81 86.811084 hybrid +139_2-3 Q0 MARCO_05_811761166-4 82 86.808785 hybrid +139_2-3 Q0 MARCO_14_402261671-3 83 86.803284 hybrid +139_2-3 Q0 MARCO_46_177117764-1 84 86.800334 hybrid +139_2-3 Q0 MARCO_06_998760815-13 85 86.799134 hybrid +139_2-3 Q0 MARCO_30_593906514-3 86 86.797884 hybrid +139_2-3 Q0 KILT_18294021-1 87 86.793648 hybrid +139_2-3 Q0 MARCO_30_1985156903-29 88 86.793134 hybrid +139_2-3 Q0 MARCO_33_1135265883-1 89 86.789684 hybrid +139_2-3 Q0 MARCO_13_947554563-35 90 86.789084 hybrid +139_2-3 Q0 MARCO_41_1436835877-15 91 86.786384 hybrid +139_2-3 Q0 MARCO_34_891588041-1 92 86.768380 hybrid +139_2-3 Q0 MARCO_28_1344653250-25 93 86.767834 hybrid +139_2-3 Q0 MARCO_04_185938976-3 94 86.766892 hybrid +139_2-3 Q0 MARCO_24_807844416-9 95 86.763350 hybrid +139_2-3 Q0 MARCO_50_900557509-23 96 86.759634 hybrid +139_2-3 Q0 MARCO_53_567871083-7 97 86.755356 hybrid +139_2-3 Q0 MARCO_06_1067718722-448 98 86.754754 hybrid +139_2-3 Q0 MARCO_41_1131760042-21 99 86.752084 hybrid +139_2-3 Q0 MARCO_08_1122245524-1 100 86.749375 hybrid +139_2-5 Q0 MARCO_00_625037583-14 1 91.109153 hybrid +139_2-5 Q0 MARCO_06_206237590-1 2 89.792138 hybrid +139_2-5 Q0 MARCO_21_1394706798-5 3 89.547896 hybrid +139_2-5 Q0 MARCO_36_271361360-2 4 89.546633 hybrid +139_2-5 Q0 MARCO_00_625037583-10 5 89.439437 hybrid +139_2-5 Q0 MARCO_50_2514575866-25 6 89.190784 hybrid +139_2-5 Q0 MARCO_00_625037583-16 7 89.173380 hybrid +139_2-5 Q0 MARCO_21_1387590590-4 8 89.172697 hybrid +139_2-5 Q0 MARCO_50_2141242685-31 9 89.121566 hybrid +139_2-5 Q0 MARCO_55_1239355906-7 10 89.109384 hybrid +139_2-5 Q0 MARCO_19_2046601719-2 11 89.067121 hybrid +139_2-5 Q0 MARCO_50_2141242685-30 12 89.059478 hybrid +139_2-5 Q0 MARCO_06_932721148-3 13 89.052783 hybrid +139_2-5 Q0 MARCO_06_932678775-1 14 89.041984 hybrid +139_2-5 Q0 MARCO_50_2141242685-32 15 89.035018 hybrid +139_2-5 Q0 MARCO_50_2197026986-2 16 88.983034 hybrid +139_2-5 Q0 MARCO_23_1083697909-1 17 88.953970 hybrid +139_2-5 Q0 MARCO_50_1988414295-1 18 88.940859 hybrid +139_2-5 Q0 MARCO_09_1778418402-14 19 88.937883 hybrid +139_2-5 Q0 MARCO_23_152883294-10 20 88.929934 hybrid +139_2-5 Q0 MARCO_00_625037583-6 21 88.926460 hybrid +139_2-5 Q0 MARCO_11_1439804503-1 22 88.921683 hybrid +139_2-5 Q0 MARCO_36_262272194-6 23 88.910183 hybrid +139_2-5 Q0 MARCO_50_1988414295-3 24 88.903463 hybrid +139_2-5 Q0 MARCO_42_1360846126-6 25 88.886840 hybrid +139_2-5 Q0 MARCO_36_264240797-1 26 88.884634 hybrid +139_2-5 Q0 MARCO_42_1360846126-3 27 88.880918 hybrid +139_2-5 Q0 MARCO_00_625037583-12 28 88.874878 hybrid +139_2-5 Q0 MARCO_45_161376293-1 29 88.838684 hybrid +139_2-5 Q0 MARCO_36_1006722039-8 30 88.835582 hybrid +139_2-5 Q0 MARCO_06_932699426-7 31 88.824733 hybrid +139_2-5 Q0 MARCO_23_1083697909-9 32 88.811847 hybrid +139_2-5 Q0 MARCO_56_1469799650-1 33 88.796471 hybrid +139_2-5 Q0 MARCO_59_1031719785-37 34 88.796154 hybrid +139_2-5 Q0 MARCO_55_1243978905-1 35 88.737884 hybrid +139_2-5 Q0 MARCO_55_1239328465-6 36 88.731433 hybrid +139_2-5 Q0 MARCO_55_1239450077-1 37 88.705984 hybrid +139_2-5 Q0 MARCO_01_1193218265-1 38 88.680284 hybrid +139_2-5 Q0 MARCO_50_2514575866-28 39 88.674783 hybrid +139_2-5 Q0 MARCO_04_1445478233-9 40 88.670233 hybrid +139_2-5 Q0 MARCO_05_1067521560-2 41 88.665984 hybrid +139_2-5 Q0 MARCO_53_532580263-5 42 88.665783 hybrid +139_2-5 Q0 MARCO_00_625037583-13 43 88.665378 hybrid +139_2-5 Q0 MARCO_36_262648261-4 44 88.656683 hybrid +139_2-5 Q0 MARCO_00_625037583-2 45 88.636493 hybrid +139_2-5 Q0 MARCO_19_2046601719-7 46 88.634647 hybrid +139_2-5 Q0 MARCO_55_1239450077-3 47 88.619083 hybrid +139_2-5 Q0 MARCO_00_625037583-5 48 88.614421 hybrid +139_2-5 Q0 KILT_3243119-1 49 88.604224 hybrid +139_2-5 Q0 MARCO_50_1988414295-4 50 88.602616 hybrid +139_2-5 Q0 MARCO_50_1205460493-1 51 88.589933 hybrid +139_2-5 Q0 MARCO_54_1976394015-7 52 88.589183 hybrid +139_2-5 Q0 MARCO_59_1031719785-36 53 88.584640 hybrid +139_2-5 Q0 MARCO_14_1241244465-15 54 88.573833 hybrid +139_2-5 Q0 MARCO_36_266028786-2 55 88.569034 hybrid +139_2-5 Q0 MARCO_00_625037583-18 56 88.553852 hybrid +139_2-5 Q0 KILT_34476548-54 57 88.550395 hybrid +139_2-5 Q0 MARCO_28_413735177-359 58 88.543195 hybrid +139_2-5 Q0 MARCO_50_2141242685-39 59 88.521671 hybrid +139_2-5 Q0 MARCO_28_424276497-4 60 88.502307 hybrid +139_2-5 Q0 MARCO_50_2514575866-42 61 88.500083 hybrid +139_2-5 Q0 MARCO_29_1389593918-1 62 88.480433 hybrid +139_2-5 Q0 MARCO_25_1416484797-13 63 88.479733 hybrid +139_2-5 Q0 MARCO_36_1006722039-10 64 88.475048 hybrid +139_2-5 Q0 MARCO_00_625037583-8 65 88.469364 hybrid +139_2-5 Q0 MARCO_50_2141242685-9 66 88.467800 hybrid +139_2-5 Q0 MARCO_30_1092514670-4 67 88.463166 hybrid +139_2-5 Q0 MARCO_03_1672798894-4 68 88.462468 hybrid +139_2-5 Q0 MARCO_50_2141242685-11 69 88.457900 hybrid +139_2-5 Q0 MARCO_39_1572411714-11 70 88.448639 hybrid +139_2-5 Q0 MARCO_09_344733768-1 71 88.444433 hybrid +139_2-5 Q0 KILT_31143292-12 72 88.437946 hybrid +139_2-5 Q0 MARCO_29_1381025251-8 73 88.430007 hybrid +139_2-5 Q0 MARCO_50_2141242685-7 74 88.428638 hybrid +139_2-5 Q0 MARCO_00_625037583-7 75 88.414058 hybrid +139_2-5 Q0 MARCO_50_1594509521-31 76 88.387583 hybrid +139_2-5 Q0 MARCO_00_625037583-3 77 88.383907 hybrid +139_2-5 Q0 MARCO_38_180317462-3 78 88.377833 hybrid +139_2-5 Q0 MARCO_39_1572411714-12 79 88.371837 hybrid +139_2-5 Q0 MARCO_03_1672798894-1 80 88.362844 hybrid +139_2-5 Q0 MARCO_13_1547919406-2 81 88.358384 hybrid +139_2-5 Q0 MARCO_06_932662112-6 82 88.348033 hybrid +139_2-5 Q0 KILT_7774160-1 83 88.340502 hybrid +139_2-5 Q0 MARCO_19_2046601719-1 84 88.338429 hybrid +139_2-5 Q0 MARCO_47_292093638-3 85 88.332721 hybrid +139_2-5 Q0 MARCO_03_1672798894-2 86 88.327925 hybrid +139_2-5 Q0 MARCO_28_413735177-360 87 88.319477 hybrid +139_2-5 Q0 MARCO_28_412175224-11 88 88.313535 hybrid +139_2-5 Q0 KILT_34476548-1 89 88.300655 hybrid +139_2-5 Q0 MARCO_06_1610069920-1 90 88.296726 hybrid +139_2-5 Q0 MARCO_19_2045932910-9 91 88.281740 hybrid +139_2-5 Q0 MARCO_04_181278967-3 92 88.274417 hybrid +139_2-5 Q0 MARCO_20_1691433948-15 93 88.265934 hybrid +139_2-5 Q0 MARCO_50_2141242685-36 94 88.253765 hybrid +139_2-5 Q0 MARCO_26_1782352556-7 95 88.251575 hybrid +139_2-5 Q0 MARCO_06_206237590-3 96 88.244561 hybrid +139_2-5 Q0 MARCO_32_1837505028-3 97 88.241533 hybrid +139_2-5 Q0 MARCO_58_1151079678-5 98 88.237283 hybrid +139_2-5 Q0 MARCO_51_287562029-6 99 88.229834 hybrid +139_2-5 Q0 MARCO_00_625037583-9 100 88.223781 hybrid +139_2-7 Q0 MARCO_31_1319602620-4 1 92.605036 hybrid +139_2-7 Q0 MARCO_28_424276497-4 2 91.652148 hybrid +139_2-7 Q0 MARCO_56_1469799650-4 3 91.601303 hybrid +139_2-7 Q0 MARCO_00_625037583-16 4 91.531178 hybrid +139_2-7 Q0 MARCO_54_548247608-2 5 91.456072 hybrid +139_2-7 Q0 MARCO_39_1572411714-11 6 91.331389 hybrid +139_2-7 Q0 MARCO_00_625037583-15 7 90.915086 hybrid +139_2-7 Q0 MARCO_55_1241597858-1 8 90.849255 hybrid +139_2-7 Q0 MARCO_55_1731089221-1 9 90.825937 hybrid +139_2-7 Q0 MARCO_56_1469799650-2 10 90.786927 hybrid +139_2-7 Q0 MARCO_00_625037583-14 11 90.636636 hybrid +139_2-7 Q0 MARCO_04_185938976-3 12 90.630902 hybrid +139_2-7 Q0 MARCO_23_805242325-2 13 90.497005 hybrid +139_2-7 Q0 MARCO_03_1672798894-4 14 90.436447 hybrid +139_2-7 Q0 MARCO_50_1988414295-1 15 90.421044 hybrid +139_2-7 Q0 MARCO_28_413735177-359 16 90.395382 hybrid +139_2-7 Q0 MARCO_03_583240442-12 17 90.379830 hybrid +139_2-7 Q0 MARCO_23_805242325-1 18 90.317055 hybrid +139_2-7 Q0 MARCO_23_152883294-1 19 90.280055 hybrid +139_2-7 Q0 MARCO_04_181278967-3 20 90.269005 hybrid +139_2-7 Q0 MARCO_42_1443585397-1 21 90.252805 hybrid +139_2-7 Q0 MARCO_04_1449360655-1 22 90.246805 hybrid +139_2-7 Q0 MARCO_25_1289549072-18 23 90.166355 hybrid +139_2-7 Q0 MARCO_07_701155566-1 24 90.149505 hybrid +139_2-7 Q0 MARCO_55_1686295870-4 25 90.148755 hybrid +139_2-7 Q0 MARCO_52_1808518894-3 26 90.126805 hybrid +139_2-7 Q0 MARCO_20_1635951560-1 27 90.114905 hybrid +139_2-7 Q0 MARCO_53_847326536-2 28 90.042305 hybrid +139_2-7 Q0 MARCO_36_267453762-2 29 90.003355 hybrid +139_2-7 Q0 MARCO_50_1602288132-8 30 89.999249 hybrid +139_2-7 Q0 MARCO_37_426188766-1 31 89.979555 hybrid +139_2-7 Q0 MARCO_30_152677617-2 32 89.958890 hybrid +139_2-7 Q0 MARCO_30_1047651255-4 33 89.945139 hybrid +139_2-7 Q0 MARCO_37_529836716-1 34 89.916505 hybrid +139_2-7 Q0 MARCO_23_1143351555-4 35 89.905455 hybrid +139_2-7 Q0 MARCO_50_2141242685-33 36 89.873395 hybrid +139_2-7 Q0 MARCO_46_332920260-21 37 89.853655 hybrid +139_2-7 Q0 MARCO_00_625037583-13 38 89.835053 hybrid +139_2-7 Q0 MARCO_03_1672798894-3 39 89.791049 hybrid +139_2-7 Q0 MARCO_55_1278800307-3 40 89.788145 hybrid +139_2-7 Q0 MARCO_33_16395972-8 41 89.786055 hybrid +139_2-7 Q0 MARCO_03_1627594528-3 42 89.773755 hybrid +139_2-7 Q0 MARCO_19_2045932910-12 43 89.767491 hybrid +139_2-7 Q0 MARCO_58_1494943388-7 44 89.762705 hybrid +139_2-7 Q0 MARCO_30_1047651255-6 45 89.755795 hybrid +139_2-7 Q0 MARCO_59_1027615782-6 46 89.749586 hybrid +139_2-7 Q0 MARCO_42_1443585397-3 47 89.748205 hybrid +139_2-7 Q0 MARCO_58_1516026117-3 48 89.743255 hybrid +139_2-7 Q0 MARCO_23_152883294-18 49 89.736305 hybrid +139_2-7 Q0 MARCO_55_1241613532-3 50 89.735455 hybrid +139_2-7 Q0 MARCO_55_1243987260-4 51 89.704705 hybrid +139_2-7 Q0 MARCO_00_625037583-10 52 89.693037 hybrid +139_2-7 Q0 MARCO_21_1394706798-1 53 89.681706 hybrid +139_2-7 Q0 MARCO_30_1072855002-1 54 89.681655 hybrid +139_2-7 Q0 MARCO_10_131509009-1 55 89.680105 hybrid +139_2-7 Q0 MARCO_56_1852189796-1 56 89.678305 hybrid +139_2-7 Q0 MARCO_55_1243960184-5 57 89.620805 hybrid +139_2-7 Q0 MARCO_55_1238873747-3 58 89.595905 hybrid +139_2-7 Q0 MARCO_06_118129943-3 59 89.594555 hybrid +139_2-7 Q0 MARCO_43_783282286-1 60 89.564105 hybrid +139_2-7 Q0 MARCO_30_1004128211-3 61 89.554593 hybrid +139_2-7 Q0 MARCO_42_1325439117-41 62 89.553605 hybrid +139_2-7 Q0 MARCO_55_1357905268-16 63 89.546005 hybrid +139_2-7 Q0 MARCO_01_2126760722-6 64 89.524355 hybrid +139_2-7 Q0 MARCO_25_295133647-3 65 89.522255 hybrid +139_2-7 Q0 MARCO_55_1241613532-1 66 89.521805 hybrid +139_2-7 Q0 MARCO_42_1443585397-6 67 89.513305 hybrid +139_2-7 Q0 MARCO_36_266028786-1 68 89.499455 hybrid +139_2-7 Q0 MARCO_19_2051389514-1 69 89.499105 hybrid +139_2-7 Q0 MARCO_55_1241604722-1 70 89.492405 hybrid +139_2-7 Q0 MARCO_32_387484335-4 71 89.489355 hybrid +139_2-7 Q0 MARCO_28_424276497-1 72 89.488176 hybrid +139_2-7 Q0 MARCO_19_2046601719-7 73 89.463155 hybrid +139_2-7 Q0 MARCO_36_262704825-1 74 89.454755 hybrid +139_2-7 Q0 MARCO_36_262704825-3 75 89.454755 hybrid +139_2-7 Q0 MARCO_10_178145796-4 76 89.453955 hybrid +139_2-7 Q0 MARCO_58_1523522881-1 77 89.443505 hybrid +139_2-7 Q0 MARCO_04_1449699608-5 78 89.430505 hybrid +139_2-7 Q0 MARCO_42_1443537043-1 79 89.424405 hybrid +139_2-7 Q0 MARCO_30_852084669-1 80 89.405355 hybrid +139_2-7 Q0 MARCO_03_1672798894-2 81 89.399788 hybrid +139_2-7 Q0 MARCO_57_941277296-1 82 89.399255 hybrid +139_2-7 Q0 MARCO_45_437225694-1 83 89.394205 hybrid +139_2-7 Q0 MARCO_48_1884565749-1 84 89.385555 hybrid +139_2-7 Q0 MARCO_36_264395918-3 85 89.365705 hybrid +139_2-7 Q0 MARCO_04_226143120-4 86 89.350505 hybrid +139_2-7 Q0 KILT_8636267-12 87 89.344723 hybrid +139_2-7 Q0 MARCO_54_514951222-1 88 89.342205 hybrid +139_2-7 Q0 MARCO_30_92290751-5 89 89.339828 hybrid +139_2-7 Q0 MARCO_15_1832947825-1 90 89.336005 hybrid +139_2-7 Q0 MARCO_42_1443585397-5 91 89.336005 hybrid +139_2-7 Q0 MARCO_34_1750578886-1 92 89.328955 hybrid +139_2-7 Q0 MARCO_19_2046601719-1 93 89.319930 hybrid +139_2-7 Q0 MARCO_29_1213003697-13 94 89.317112 hybrid +139_2-7 Q0 MARCO_42_1439749884-1 95 89.309455 hybrid +139_2-7 Q0 MARCO_55_1239490027-8 96 89.301005 hybrid +139_2-7 Q0 KILT_34476548-50 97 89.292316 hybrid +139_2-7 Q0 MARCO_23_1061347011-2 98 89.288105 hybrid +139_2-7 Q0 MARCO_31_1569008474-4 99 89.281305 hybrid +139_2-7 Q0 MARCO_51_1643622796-3 100 89.275855 hybrid +139_2-9 Q0 MARCO_03_1672660320-1 1 93.765484 hybrid +139_2-9 Q0 MARCO_30_1084424410-2 2 93.654994 hybrid +139_2-9 Q0 MARCO_00_767771741-1 3 93.134195 hybrid +139_2-9 Q0 MARCO_50_1976647136-18 4 93.048156 hybrid +139_2-9 Q0 MARCO_29_662582548-12 5 92.985742 hybrid +139_2-9 Q0 MARCO_10_77686443-6 6 92.757892 hybrid +139_2-9 Q0 MARCO_03_1627622233-3 7 92.692059 hybrid +139_2-9 Q0 KILT_20579666-1 8 92.644742 hybrid +139_2-9 Q0 MARCO_10_125884503-3 9 92.548528 hybrid +139_2-9 Q0 MARCO_49_1382824307-11 10 92.539509 hybrid +139_2-9 Q0 MARCO_10_125884503-1 11 92.500046 hybrid +139_2-9 Q0 MARCO_42_1360921322-8 12 92.437221 hybrid +139_2-9 Q0 KILT_54663095-1 13 92.416386 hybrid +139_2-9 Q0 MARCO_03_1672660320-2 14 92.345053 hybrid +139_2-9 Q0 MARCO_55_1281693293-3 15 92.335869 hybrid +139_2-9 Q0 MARCO_30_92494994-5 16 92.329105 hybrid +139_2-9 Q0 MARCO_44_1488298674-3 17 92.328765 hybrid +139_2-9 Q0 MARCO_58_1425662545-2 18 92.215758 hybrid +139_2-9 Q0 MARCO_04_228353958-2 19 92.204208 hybrid +139_2-9 Q0 MARCO_44_1488298674-1 20 92.197718 hybrid +139_2-9 Q0 MARCO_55_134814551-1 21 92.178912 hybrid +139_2-9 Q0 MARCO_55_1281693293-2 22 92.162653 hybrid +139_2-9 Q0 MARCO_00_767771741-6 23 92.156788 hybrid +139_2-9 Q0 MARCO_23_894236714-1 24 92.149087 hybrid +139_2-9 Q0 MARCO_50_1382168759-4 25 92.139258 hybrid +139_2-9 Q0 MARCO_04_222650713-2 26 92.132308 hybrid +139_2-9 Q0 MARCO_04_101224264-2 27 92.114609 hybrid +139_2-9 Q0 MARCO_09_344751762-1 28 92.100959 hybrid +139_2-9 Q0 MARCO_00_767771741-16 29 92.053947 hybrid +139_2-9 Q0 MARCO_03_1799692237-2 30 92.008808 hybrid +139_2-9 Q0 MARCO_18_461374169-10 31 92.005422 hybrid +139_2-9 Q0 MARCO_04_109572296-2 32 91.987059 hybrid +139_2-9 Q0 MARCO_44_1488298674-7 33 91.983472 hybrid +139_2-9 Q0 MARCO_03_1627622233-2 34 91.981058 hybrid +139_2-9 Q0 MARCO_58_1425665391-3 35 91.977009 hybrid +139_2-9 Q0 MARCO_30_92573188-9 36 91.945519 hybrid +139_2-9 Q0 MARCO_00_767771741-10 37 91.917577 hybrid +139_2-9 Q0 MARCO_04_109572296-3 38 91.901558 hybrid +139_2-9 Q0 MARCO_09_182073554-1 39 91.891459 hybrid +139_2-9 Q0 MARCO_23_894236714-2 40 91.887871 hybrid +139_2-9 Q0 MARCO_30_91487108-8 41 91.841638 hybrid +139_2-9 Q0 MARCO_04_228353958-4 42 91.826159 hybrid +139_2-9 Q0 MARCO_13_402956366-3 43 91.818876 hybrid +139_2-9 Q0 MARCO_55_1701438850-2 44 91.791898 hybrid +139_2-9 Q0 MARCO_04_786828265-1 45 91.784370 hybrid +139_2-9 Q0 MARCO_46_248743863-3 46 91.776258 hybrid +139_2-9 Q0 MARCO_03_1799692237-1 47 91.756358 hybrid +139_2-9 Q0 MARCO_42_1364593057-1 48 91.739775 hybrid +139_2-9 Q0 MARCO_04_109572296-1 49 91.680708 hybrid +139_2-9 Q0 MARCO_03_1799692237-3 50 91.639958 hybrid +139_2-9 Q0 MARCO_04_101224264-4 51 91.600908 hybrid +139_2-9 Q0 MARCO_00_442090690-28 52 91.577358 hybrid +139_2-9 Q0 MARCO_28_413735177-361 53 91.565054 hybrid +139_2-9 Q0 MARCO_04_101224264-3 54 91.558708 hybrid +139_2-9 Q0 MARCO_00_767771741-8 55 91.545865 hybrid +139_2-9 Q0 MARCO_19_2049478817-1 56 91.531758 hybrid +139_2-9 Q0 MARCO_23_243972315-5 57 91.528394 hybrid +139_2-9 Q0 MARCO_50_2141096457-25 58 91.504711 hybrid +139_2-9 Q0 MARCO_46_248743863-1 59 91.503558 hybrid +139_2-9 Q0 MARCO_07_302777999-2 60 91.500658 hybrid +139_2-9 Q0 MARCO_29_662582548-2 61 91.494456 hybrid +139_2-9 Q0 MARCO_04_228353958-3 62 91.489808 hybrid +139_2-9 Q0 MARCO_29_662582548-7 63 91.488922 hybrid +139_2-9 Q0 MARCO_44_1488298674-2 64 91.460271 hybrid +139_2-9 Q0 MARCO_36_1003085916-10 65 91.440142 hybrid +139_2-9 Q0 MARCO_55_1281693293-4 66 91.426143 hybrid +139_2-9 Q0 MARCO_28_447968862-1 67 91.398548 hybrid +139_2-9 Q0 MARCO_19_2049478817-2 68 91.395958 hybrid +139_2-9 Q0 MARCO_11_1498501225-2 69 91.390908 hybrid +139_2-9 Q0 MARCO_16_2789589129-1 70 91.386158 hybrid +139_2-9 Q0 MARCO_04_786830584-1 71 91.384571 hybrid +139_2-9 Q0 MARCO_35_15102795-2 72 91.354658 hybrid +139_2-9 Q0 MARCO_09_1352032890-1 73 91.337209 hybrid +139_2-9 Q0 MARCO_21_1024712770-1 74 91.332258 hybrid +139_2-9 Q0 MARCO_49_1382824307-3 75 91.331308 hybrid +139_2-9 Q0 MARCO_10_1410563140-1 76 91.320909 hybrid +139_2-9 Q0 MARCO_53_847900852-1 77 91.312108 hybrid +139_2-9 Q0 MARCO_00_16373164-4 78 91.308708 hybrid +139_2-9 Q0 MARCO_42_1364593057-3 79 91.293803 hybrid +139_2-9 Q0 MARCO_50_2056875471-1 80 91.278209 hybrid +139_2-9 Q0 MARCO_45_1436807476-4 81 91.256644 hybrid +139_2-9 Q0 MARCO_00_767771741-19 82 91.251287 hybrid +139_2-9 Q0 MARCO_00_767771741-2 83 91.226466 hybrid +139_2-9 Q0 MARCO_16_403270218-2 84 91.220908 hybrid +139_2-9 Q0 MARCO_40_817653402-2 85 91.213009 hybrid +139_2-9 Q0 MARCO_24_1139297902-14 86 91.207446 hybrid +139_2-9 Q0 MARCO_50_1178652254-14 87 91.190732 hybrid +139_2-9 Q0 MARCO_03_1627622233-4 88 91.187658 hybrid +139_2-9 Q0 MARCO_30_1092538935-5 89 91.178111 hybrid +139_2-9 Q0 MARCO_07_1231136368-1 90 91.176108 hybrid +139_2-9 Q0 MARCO_46_250160478-1 91 91.176107 hybrid +139_2-9 Q0 MARCO_49_1382824307-4 92 91.161609 hybrid +139_2-9 Q0 MARCO_44_1956858776-17 93 91.160008 hybrid +139_2-9 Q0 MARCO_00_767771741-3 94 91.153705 hybrid +139_2-9 Q0 MARCO_41_1793056022-1 95 91.152558 hybrid +139_2-9 Q0 MARCO_09_668443100-1 96 91.140008 hybrid +139_2-9 Q0 MARCO_49_1382824307-2 97 91.135658 hybrid +139_2-9 Q0 MARCO_28_322227037-2 98 91.128308 hybrid +139_2-9 Q0 MARCO_41_324917941-5 99 91.124312 hybrid +139_2-9 Q0 MARCO_05_1606072199-1 100 91.121358 hybrid +140_1-1 Q0 MARCO_25_1372751419-61 1 93.368305 hybrid +140_1-1 Q0 MARCO_24_1721129865-5 2 93.050863 hybrid +140_1-1 Q0 MARCO_06_998574656-39 3 92.429055 hybrid +140_1-1 Q0 MARCO_57_1622284502-14 4 92.405306 hybrid +140_1-1 Q0 MARCO_58_142307447-19 5 92.391356 hybrid +140_1-1 Q0 MARCO_37_1647907532-2 6 92.374605 hybrid +140_1-1 Q0 MARCO_56_69486241-118 7 92.358556 hybrid +140_1-1 Q0 MARCO_14_1893293306-3 8 92.337456 hybrid +140_1-1 Q0 MARCO_57_1946186551-13 9 92.328206 hybrid +140_1-1 Q0 MARCO_03_803632629-1 10 92.258956 hybrid +140_1-1 Q0 MARCO_57_2418023362-12 11 92.167106 hybrid +140_1-1 Q0 MARCO_25_1373535067-12 12 92.161305 hybrid +140_1-1 Q0 MARCO_27_1410264889-9 13 92.095205 hybrid +140_1-1 Q0 MARCO_25_1372658733-11 14 92.090606 hybrid +140_1-1 Q0 MARCO_20_471439889-4 15 92.088455 hybrid +140_1-1 Q0 MARCO_01_663758152-41 16 92.080706 hybrid +140_1-1 Q0 MARCO_53_900538557-93 17 92.010056 hybrid +140_1-1 Q0 MARCO_43_777079008-6 18 92.008818 hybrid +140_1-1 Q0 MARCO_50_1652886599-14 19 91.971906 hybrid +140_1-1 Q0 MARCO_50_1609616194-23 20 91.953718 hybrid +140_1-1 Q0 MARCO_23_82094180-3 21 91.943906 hybrid +140_1-1 Q0 MARCO_25_640657672-4 22 91.938206 hybrid +140_1-1 Q0 MARCO_25_1372294396-13 23 91.922456 hybrid +140_1-1 Q0 MARCO_25_1373638013-32 24 91.914556 hybrid +140_1-1 Q0 MARCO_24_1717477741-4 25 91.914061 hybrid +140_1-1 Q0 MARCO_30_1029169387-20 26 91.913664 hybrid +140_1-1 Q0 MARCO_10_1380493974-30 27 91.898756 hybrid +140_1-1 Q0 MARCO_50_467552956-55 28 91.885655 hybrid +140_1-1 Q0 MARCO_58_591279028-16 29 91.876406 hybrid +140_1-1 Q0 MARCO_28_771311421-6 30 91.874455 hybrid +140_1-1 Q0 MARCO_25_1370793490-48 31 91.857805 hybrid +140_1-1 Q0 MARCO_50_449602758-4 32 91.854856 hybrid +140_1-1 Q0 MARCO_48_831107990-3 33 91.833649 hybrid +140_1-1 Q0 MARCO_09_126627266-100 34 91.831706 hybrid +140_1-1 Q0 MARCO_41_1243447347-8 35 91.817991 hybrid +140_1-1 Q0 MARCO_57_1671383211-17 36 91.815206 hybrid +140_1-1 Q0 MARCO_25_1372751419-59 37 91.807256 hybrid +140_1-1 Q0 MARCO_41_1243447347-18 38 91.789999 hybrid +140_1-1 Q0 MARCO_58_496380890-21 39 91.784355 hybrid +140_1-1 Q0 MARCO_14_1047207618-3 40 91.773605 hybrid +140_1-1 Q0 MARCO_24_1717477741-3 41 91.765898 hybrid +140_1-1 Q0 MARCO_07_1311943272-3 42 91.764906 hybrid +140_1-1 Q0 MARCO_50_2065016146-8 43 91.740406 hybrid +140_1-1 Q0 MARCO_58_431855600-16 44 91.739006 hybrid +140_1-1 Q0 MARCO_10_1204975417-16 45 91.725355 hybrid +140_1-1 Q0 MARCO_03_545970910-30 46 91.723156 hybrid +140_1-1 Q0 MARCO_06_1294863562-333 47 91.704506 hybrid +140_1-1 Q0 MARCO_01_646633998-26 48 91.697255 hybrid +140_1-1 Q0 MARCO_58_100941788-12 49 91.678256 hybrid +140_1-1 Q0 MARCO_49_456695372-4 50 91.668655 hybrid +140_1-1 Q0 MARCO_25_1373174246-25 51 91.660755 hybrid +140_1-1 Q0 MARCO_30_816880784-7 52 91.655605 hybrid +140_1-1 Q0 MARCO_57_1740553272-15 53 91.655456 hybrid +140_1-1 Q0 MARCO_41_1776707724-36 54 91.647156 hybrid +140_1-1 Q0 MARCO_10_975368759-20 55 91.646255 hybrid +140_1-1 Q0 MARCO_30_823506076-2 56 91.645590 hybrid +140_1-1 Q0 MARCO_15_160453067-32 57 91.644055 hybrid +140_1-1 Q0 MARCO_50_2179336314-28 58 91.630506 hybrid +140_1-1 Q0 KILT_9475339-2 59 91.628325 hybrid +140_1-1 Q0 MARCO_54_1592040185-1 60 91.619223 hybrid +140_1-1 Q0 MARCO_59_841984389-7 61 91.612306 hybrid +140_1-1 Q0 MARCO_06_999198368-41 62 91.608456 hybrid +140_1-1 Q0 MARCO_12_645259110-62 63 91.601556 hybrid +140_1-1 Q0 MARCO_06_1151962448-79 64 91.593956 hybrid +140_1-1 Q0 KILT_558393-6 65 91.580000 hybrid +140_1-1 Q0 MARCO_50_1675783459-28 66 91.575140 hybrid +140_1-1 Q0 MARCO_58_577661583-17 67 91.573706 hybrid +140_1-1 Q0 KILT_41758870-4 68 91.568487 hybrid +140_1-1 Q0 MARCO_07_477826751-1 69 91.564706 hybrid +140_1-1 Q0 MARCO_25_1370793490-47 70 91.564555 hybrid +140_1-1 Q0 MARCO_25_1374946711-16 71 91.563505 hybrid +140_1-1 Q0 MARCO_25_1376647457-21 72 91.563406 hybrid +140_1-1 Q0 MARCO_58_440547466-22 73 91.562356 hybrid +140_1-1 Q0 MARCO_47_661129043-94 74 91.561055 hybrid +140_1-1 Q0 MARCO_48_1290962979-6 75 91.548346 hybrid +140_1-1 Q0 MARCO_45_1605483015-19 76 91.547356 hybrid +140_1-1 Q0 MARCO_58_593279562-18 77 91.545856 hybrid +140_1-1 Q0 KILT_1142972-10 78 91.539406 hybrid +140_1-1 Q0 MARCO_25_1374207499-16 79 91.523955 hybrid +140_1-1 Q0 MARCO_12_1726591786-7 80 91.523106 hybrid +140_1-1 Q0 KILT_41758870-1 81 91.522093 hybrid +140_1-1 Q0 MARCO_24_1717477741-6 82 91.520742 hybrid +140_1-1 Q0 MARCO_50_1609616194-9 83 91.516127 hybrid +140_1-1 Q0 MARCO_09_126627266-99 84 91.515156 hybrid +140_1-1 Q0 MARCO_20_1740315606-132 85 91.513166 hybrid +140_1-1 Q0 MARCO_41_909296713-3 86 91.508705 hybrid +140_1-1 Q0 MARCO_48_1290962979-5 87 91.501348 hybrid +140_1-1 Q0 MARCO_06_757837672-10 88 91.495706 hybrid +140_1-1 Q0 MARCO_52_1181039218-18 89 91.495268 hybrid +140_1-1 Q0 MARCO_00_490422069-50 90 91.490355 hybrid +140_1-1 Q0 MARCO_50_1619454619-7 91 91.476667 hybrid +140_1-1 Q0 MARCO_05_439154801-20 92 91.470105 hybrid +140_1-1 Q0 KILT_11053216-5 93 91.467932 hybrid +140_1-1 Q0 MARCO_09_126627266-109 94 91.467106 hybrid +140_1-1 Q0 KILT_6382050-1 95 91.444305 hybrid +140_1-1 Q0 MARCO_41_1243447347-64 96 91.439039 hybrid +140_1-1 Q0 MARCO_26_1102149383-157 97 91.435756 hybrid +140_1-1 Q0 MARCO_56_1312702703-7 98 91.434607 hybrid +140_1-1 Q0 MARCO_57_2418023362-13 99 91.432106 hybrid +140_1-1 Q0 MARCO_08_92163544-4 100 91.426955 hybrid +140_1-11 Q0 KILT_28678189-3 1 109.796700 hybrid +140_1-11 Q0 KILT_33013283-3 2 104.987049 hybrid +140_1-11 Q0 MARCO_17_2078780409-24 3 101.938999 hybrid +140_1-11 Q0 KILT_21384-19 4 101.618698 hybrid +140_1-11 Q0 MARCO_34_1754841682-2 5 101.331949 hybrid +140_1-11 Q0 KILT_13924866-1 6 100.635899 hybrid +140_1-11 Q0 MARCO_16_3146698038-3 7 100.150299 hybrid +140_1-11 Q0 KILT_28678189-4 8 100.029799 hybrid +140_1-11 Q0 KILT_1442062-2 9 99.948099 hybrid +140_1-11 Q0 MARCO_34_1754841682-1 10 99.910299 hybrid +140_1-11 Q0 KILT_28678189-2 11 99.669350 hybrid +140_1-11 Q0 KILT_9329471-4 12 99.184898 hybrid +140_1-11 Q0 KILT_1442062-1 13 99.176949 hybrid +140_1-11 Q0 MARCO_16_3146698038-2 14 98.472300 hybrid +140_1-11 Q0 KILT_31165584-7 15 98.396500 hybrid +140_1-11 Q0 KILT_28809191-5 16 98.302849 hybrid +140_1-11 Q0 KILT_33013283-4 17 98.215948 hybrid +140_1-11 Q0 KILT_33013283-1 18 98.133749 hybrid +140_1-11 Q0 MARCO_10_1444399136-2 19 98.125999 hybrid +140_1-11 Q0 MARCO_39_723657843-21 20 98.066248 hybrid +140_1-11 Q0 KILT_29210637-2 21 97.938649 hybrid +140_1-11 Q0 MARCO_54_575373635-2 22 97.914499 hybrid +140_1-11 Q0 KILT_31165584-8 23 97.788649 hybrid +140_1-11 Q0 MARCO_17_4722768323-6 24 97.502499 hybrid +140_1-11 Q0 KILT_39388584-1 25 97.255198 hybrid +140_1-11 Q0 KILT_58418055-1 26 97.235299 hybrid +140_1-11 Q0 KILT_10602129-5 27 97.228599 hybrid +140_1-11 Q0 MARCO_17_543589328-4 28 97.210599 hybrid +140_1-11 Q0 MARCO_18_1168335695-3 29 97.196649 hybrid +140_1-11 Q0 MARCO_16_3760072555-7 30 97.157449 hybrid +140_1-11 Q0 KILT_28192817-1 31 97.152699 hybrid +140_1-11 Q0 MARCO_42_114765095-36 32 97.085499 hybrid +140_1-11 Q0 MARCO_12_1446464445-6 33 96.961199 hybrid +140_1-11 Q0 KILT_9329483-4 34 96.940598 hybrid +140_1-11 Q0 MARCO_53_509303884-4 35 96.889899 hybrid +140_1-11 Q0 KILT_2881064-1 36 96.881549 hybrid +140_1-11 Q0 KILT_28678189-1 37 96.793798 hybrid +140_1-11 Q0 MARCO_10_1444399136-3 38 96.571149 hybrid +140_1-11 Q0 KILT_43639639-1 39 96.487699 hybrid +140_1-11 Q0 KILT_3959583-1 40 96.435399 hybrid +140_1-11 Q0 KILT_2292869-5 41 96.324399 hybrid +140_1-11 Q0 MARCO_17_4828987761-8 42 96.283949 hybrid +140_1-11 Q0 KILT_3959583-3 43 96.241399 hybrid +140_1-11 Q0 MARCO_16_3146698038-1 44 96.157948 hybrid +140_1-11 Q0 MARCO_17_543589328-1 45 96.048499 hybrid +140_1-11 Q0 KILT_9329483-15 46 96.015749 hybrid +140_1-11 Q0 MARCO_01_1879724342-13 47 95.958399 hybrid +140_1-11 Q0 KILT_29210637-1 48 95.952549 hybrid +140_1-11 Q0 KILT_9677609-1 49 95.941298 hybrid +140_1-11 Q0 KILT_38016858-1 50 95.922749 hybrid +140_1-11 Q0 KILT_1227091-7 51 95.919199 hybrid +140_1-11 Q0 MARCO_43_500983951-1 52 95.917048 hybrid +140_1-11 Q0 MARCO_16_3760072555-18 53 95.904348 hybrid +140_1-11 Q0 KILT_47903393-2 54 95.771799 hybrid +140_1-11 Q0 KILT_9329483-9 55 95.755099 hybrid +140_1-11 Q0 MARCO_45_1439590880-1 56 95.731937 hybrid +140_1-11 Q0 MARCO_00_1246086708-7 57 95.717249 hybrid +140_1-11 Q0 MARCO_25_228567496-6 58 95.702749 hybrid +140_1-11 Q0 MARCO_17_4828987761-6 59 95.701849 hybrid +140_1-11 Q0 KILT_1442062-5 60 95.690749 hybrid +140_1-11 Q0 KILT_32998945-3 61 95.569849 hybrid +140_1-11 Q0 MARCO_24_1375511290-2 62 95.535449 hybrid +140_1-11 Q0 MARCO_50_1597015214-10 63 95.488249 hybrid +140_1-11 Q0 MARCO_17_467054059-6 64 95.460799 hybrid +140_1-11 Q0 MARCO_42_114765095-43 65 95.397799 hybrid +140_1-11 Q0 KILT_186641-19 66 95.245049 hybrid +140_1-11 Q0 MARCO_42_114765095-87 67 95.212199 hybrid +140_1-11 Q0 KILT_25606286-1 68 95.191199 hybrid +140_1-11 Q0 MARCO_16_3146721972-19 69 95.190049 hybrid +140_1-11 Q0 MARCO_29_1413332966-1 70 95.149049 hybrid +140_1-11 Q0 MARCO_47_1260114631-8 71 95.144198 hybrid +140_1-11 Q0 KILT_32998945-1 72 95.096848 hybrid +140_1-11 Q0 KILT_52002085-1 73 95.092949 hybrid +140_1-11 Q0 KILT_27674663-1 74 95.081549 hybrid +140_1-11 Q0 KILT_30863802-1 75 95.035314 hybrid +140_1-11 Q0 MARCO_16_3760072555-12 76 95.026799 hybrid +140_1-11 Q0 MARCO_41_1264195901-24 77 95.001899 hybrid +140_1-11 Q0 KILT_3959583-2 78 95.000149 hybrid +140_1-11 Q0 KILT_4155329-7 79 94.991020 hybrid +140_1-11 Q0 KILT_41138199-5 80 94.978549 hybrid +140_1-11 Q0 MARCO_03_764534941-3 81 94.973199 hybrid +140_1-11 Q0 KILT_39388584-2 82 94.946849 hybrid +140_1-11 Q0 KILT_53406064-3 83 94.939299 hybrid +140_1-11 Q0 KILT_53438811-1 84 94.938398 hybrid +140_1-11 Q0 MARCO_16_2511868083-12 85 94.912599 hybrid +140_1-11 Q0 MARCO_16_2651127708-11 86 94.903099 hybrid +140_1-11 Q0 MARCO_17_4722768323-2 87 94.894999 hybrid +140_1-11 Q0 MARCO_02_1615742650-6 88 94.893649 hybrid +140_1-11 Q0 MARCO_31_554152250-21 89 94.889799 hybrid +140_1-11 Q0 KILT_1227091-6 90 94.879249 hybrid +140_1-11 Q0 MARCO_16_4029279131-9 91 94.823349 hybrid +140_1-11 Q0 KILT_28861602-2 92 94.797499 hybrid +140_1-11 Q0 MARCO_01_414844028-9 93 94.735848 hybrid +140_1-11 Q0 MARCO_10_1445973568-1 94 94.723099 hybrid +140_1-11 Q0 MARCO_18_797705643-32 95 94.719149 hybrid +140_1-11 Q0 KILT_905857-6 96 94.715499 hybrid +140_1-11 Q0 KILT_22674098-6 97 94.686749 hybrid +140_1-11 Q0 MARCO_17_4828987761-4 98 94.658998 hybrid +140_1-11 Q0 MARCO_16_3146712539-2 99 94.636649 hybrid +140_1-11 Q0 MARCO_18_797575356-4 100 94.628749 hybrid +140_1-3 Q0 MARCO_30_1029169387-1 1 91.708916 hybrid +140_1-3 Q0 MARCO_24_1718716761-3 2 90.787631 hybrid +140_1-3 Q0 MARCO_30_1079495440-4 3 90.383143 hybrid +140_1-3 Q0 MARCO_22_1022149739-1 4 90.100449 hybrid +140_1-3 Q0 MARCO_24_1719317684-11 5 89.996858 hybrid +140_1-3 Q0 MARCO_24_1718256148-8 6 89.929832 hybrid +140_1-3 Q0 MARCO_22_258349794-1 7 89.761922 hybrid +140_1-3 Q0 MARCO_54_575373635-1 8 89.347072 hybrid +140_1-3 Q0 MARCO_50_1409583712-4 9 89.006245 hybrid +140_1-3 Q0 MARCO_50_1409583712-3 10 88.918054 hybrid +140_1-3 Q0 MARCO_22_258365490-7 11 88.858922 hybrid +140_1-3 Q0 MARCO_55_1285550962-1 12 88.826801 hybrid +140_1-3 Q0 MARCO_49_522173046-10 13 88.775879 hybrid +140_1-3 Q0 MARCO_30_1092694148-2 14 88.775223 hybrid +140_1-3 Q0 MARCO_22_1022149739-13 15 88.701405 hybrid +140_1-3 Q0 MARCO_24_1718716761-7 16 88.687330 hybrid +140_1-3 Q0 MARCO_30_1029169387-18 17 88.680058 hybrid +140_1-3 Q0 MARCO_30_1029169387-21 18 88.658932 hybrid +140_1-3 Q0 MARCO_08_823639828-4 19 88.650740 hybrid +140_1-3 Q0 MARCO_24_1718716761-8 20 88.640622 hybrid +140_1-3 Q0 MARCO_30_1029169387-2 21 88.637348 hybrid +140_1-3 Q0 MARCO_25_227492776-2 22 88.626222 hybrid +140_1-3 Q0 MARCO_30_1083198855-2 23 88.595527 hybrid +140_1-3 Q0 MARCO_30_1085040171-1 24 88.594387 hybrid +140_1-3 Q0 MARCO_24_1718716761-2 25 88.586109 hybrid +140_1-3 Q0 MARCO_44_1923788785-5 26 88.542141 hybrid +140_1-3 Q0 MARCO_24_1718256148-1 27 88.503061 hybrid +140_1-3 Q0 MARCO_30_1083103137-1 28 88.420622 hybrid +140_1-3 Q0 KILT_5706211-4 29 88.411938 hybrid +140_1-3 Q0 MARCO_24_1718716761-1 30 88.399868 hybrid +140_1-3 Q0 MARCO_11_1564622896-3 31 88.376672 hybrid +140_1-3 Q0 MARCO_33_170886242-1 32 88.359772 hybrid +140_1-3 Q0 MARCO_30_1029169387-13 33 88.359036 hybrid +140_1-3 Q0 MARCO_55_1285550962-5 34 88.358402 hybrid +140_1-3 Q0 MARCO_24_1718716761-4 35 88.337978 hybrid +140_1-3 Q0 MARCO_22_1189094383-3 36 88.305683 hybrid +140_1-3 Q0 MARCO_20_1265986597-2 37 88.293972 hybrid +140_1-3 Q0 MARCO_22_1022149739-6 38 88.264828 hybrid +140_1-3 Q0 MARCO_14_1003065997-4 39 88.258422 hybrid +140_1-3 Q0 KILT_42725077-5 40 88.244862 hybrid +140_1-3 Q0 MARCO_24_1718256148-3 41 88.222744 hybrid +140_1-3 Q0 MARCO_53_848280024-6 42 88.202672 hybrid +140_1-3 Q0 MARCO_45_803650286-5 43 88.191922 hybrid +140_1-3 Q0 MARCO_33_170698359-1 44 88.191622 hybrid +140_1-3 Q0 MARCO_10_145182020-1 45 88.184772 hybrid +140_1-3 Q0 MARCO_44_52304687-52 46 88.174015 hybrid +140_1-3 Q0 MARCO_30_1092694148-1 47 88.166515 hybrid +140_1-3 Q0 MARCO_30_1085040171-6 48 88.165104 hybrid +140_1-3 Q0 MARCO_30_1082964817-27 49 88.158321 hybrid +140_1-3 Q0 MARCO_30_1029169387-20 50 88.155018 hybrid +140_1-3 Q0 MARCO_49_1641047428-10 51 88.151972 hybrid +140_1-3 Q0 MARCO_03_865429591-26 52 88.150372 hybrid +140_1-3 Q0 MARCO_24_1718716761-5 53 88.136489 hybrid +140_1-3 Q0 MARCO_22_1186715244-11 54 88.117687 hybrid +140_1-3 Q0 MARCO_55_1285559246-4 55 88.114056 hybrid +140_1-3 Q0 MARCO_55_1288516685-1 56 88.106872 hybrid +140_1-3 Q0 MARCO_24_1720740630-1 57 88.092098 hybrid +140_1-3 Q0 MARCO_24_1718256148-7 58 88.086544 hybrid +140_1-3 Q0 MARCO_30_1085040171-8 59 88.074352 hybrid +140_1-3 Q0 MARCO_25_235941365-1 60 88.073734 hybrid +140_1-3 Q0 MARCO_22_258349794-9 61 88.065822 hybrid +140_1-3 Q0 MARCO_24_1129449019-5 62 88.057339 hybrid +140_1-3 Q0 MARCO_00_875897638-1 63 88.047722 hybrid +140_1-3 Q0 MARCO_30_1088024666-3 64 88.045556 hybrid +140_1-3 Q0 MARCO_03_451372036-1 65 88.039372 hybrid +140_1-3 Q0 KILT_9064673-1 66 88.037457 hybrid +140_1-3 Q0 MARCO_55_1285559246-1 67 88.037136 hybrid +140_1-3 Q0 MARCO_24_1718621756-4 68 88.028790 hybrid +140_1-3 Q0 MARCO_22_1189094383-1 69 88.025715 hybrid +140_1-3 Q0 MARCO_30_1088024666-1 70 88.023135 hybrid +140_1-3 Q0 MARCO_52_1153380409-8 71 88.017072 hybrid +140_1-3 Q0 MARCO_55_1236308018-1 72 88.015922 hybrid +140_1-3 Q0 KILT_42725077-4 73 88.014294 hybrid +140_1-3 Q0 MARCO_30_1029169387-6 74 88.013309 hybrid +140_1-3 Q0 MARCO_24_1720330846-3 75 88.005268 hybrid +140_1-3 Q0 MARCO_24_1720740630-3 76 88.002804 hybrid +140_1-3 Q0 MARCO_30_1079495440-1 77 88.002645 hybrid +140_1-3 Q0 MARCO_30_1029169387-17 78 87.990276 hybrid +140_1-3 Q0 MARCO_22_1022149739-2 79 87.988041 hybrid +140_1-3 Q0 MARCO_31_903377975-16 80 87.968105 hybrid +140_1-3 Q0 MARCO_30_1029169387-9 81 87.967045 hybrid +140_1-3 Q0 MARCO_30_1090377412-31 82 87.965199 hybrid +140_1-3 Q0 MARCO_55_1280659858-26 83 87.963822 hybrid +140_1-3 Q0 MARCO_30_1087383993-1 84 87.958530 hybrid +140_1-3 Q0 MARCO_56_504916707-15 85 87.947971 hybrid +140_1-3 Q0 MARCO_47_1604463871-10 86 87.947926 hybrid +140_1-3 Q0 MARCO_54_575373635-2 87 87.945372 hybrid +140_1-3 Q0 MARCO_30_957713917-14 88 87.943572 hybrid +140_1-3 Q0 MARCO_30_1002352025-1 89 87.937481 hybrid +140_1-3 Q0 MARCO_37_533947992-7 90 87.935122 hybrid +140_1-3 Q0 MARCO_22_1022149739-12 91 87.930592 hybrid +140_1-3 Q0 MARCO_30_1081756789-46 92 87.928172 hybrid +140_1-3 Q0 MARCO_19_1558320017-2 93 87.925922 hybrid +140_1-3 Q0 MARCO_45_1439590880-1 94 87.917713 hybrid +140_1-3 Q0 MARCO_30_1083067757-24 95 87.906574 hybrid +140_1-3 Q0 MARCO_48_849595266-1 96 87.905672 hybrid +140_1-3 Q0 MARCO_24_1720330846-4 97 87.896763 hybrid +140_1-3 Q0 MARCO_30_996308744-27 98 87.895372 hybrid +140_1-3 Q0 MARCO_52_1191921141-18 99 87.892122 hybrid +140_1-3 Q0 MARCO_24_1718256148-4 100 87.891819 hybrid +140_1-5 Q0 MARCO_54_575373635-2 1 94.890649 hybrid +140_1-5 Q0 MARCO_01_1064363562-2 2 93.006607 hybrid +140_1-5 Q0 KILT_21540356-1 3 92.548699 hybrid +140_1-5 Q0 KILT_2710824-1 4 92.150749 hybrid +140_1-5 Q0 MARCO_17_4390005194-3 5 91.545499 hybrid +140_1-5 Q0 KILT_2213191-3 6 91.412649 hybrid +140_1-5 Q0 KILT_10259157-6 7 91.378300 hybrid +140_1-5 Q0 MARCO_14_93878971-2 8 91.294350 hybrid +140_1-5 Q0 KILT_35964707-1 9 91.249800 hybrid +140_1-5 Q0 KILT_39470-36 10 91.098599 hybrid +140_1-5 Q0 KILT_31296178-1 11 90.995249 hybrid +140_1-5 Q0 KILT_28753082-1 12 90.992799 hybrid +140_1-5 Q0 KILT_5618791-1 13 90.961426 hybrid +140_1-5 Q0 MARCO_14_93878971-3 14 90.950299 hybrid +140_1-5 Q0 KILT_31891772-1 15 90.924999 hybrid +140_1-5 Q0 MARCO_22_1821166097-10 16 90.912399 hybrid +140_1-5 Q0 MARCO_28_278767164-1 17 90.896449 hybrid +140_1-5 Q0 KILT_29000259-1 18 90.876599 hybrid +140_1-5 Q0 MARCO_40_1565424675-3 19 90.864200 hybrid +140_1-5 Q0 KILT_27068094-1 20 90.844950 hybrid +140_1-5 Q0 KILT_31239705-7 21 90.843999 hybrid +140_1-5 Q0 KILT_40058074-3 22 90.831349 hybrid +140_1-5 Q0 KILT_15056230-1 23 90.813049 hybrid +140_1-5 Q0 KILT_48017862-1 24 90.788199 hybrid +140_1-5 Q0 KILT_31644281-1 25 90.773149 hybrid +140_1-5 Q0 KILT_36749029-1 26 90.764050 hybrid +140_1-5 Q0 MARCO_53_395664418-1 27 90.763450 hybrid +140_1-5 Q0 MARCO_16_3563992780-5 28 90.724649 hybrid +140_1-5 Q0 MARCO_25_1699576681-1 29 90.711199 hybrid +140_1-5 Q0 KILT_46945871-1 30 90.687399 hybrid +140_1-5 Q0 KILT_24490621-1 31 90.685900 hybrid +140_1-5 Q0 MARCO_30_823512109-2 32 90.627464 hybrid +140_1-5 Q0 MARCO_48_1855753765-3 33 90.614149 hybrid +140_1-5 Q0 MARCO_18_206062244-16 34 90.603749 hybrid +140_1-5 Q0 KILT_48188382-1 35 90.559099 hybrid +140_1-5 Q0 KILT_4414093-7 36 90.541726 hybrid +140_1-5 Q0 KILT_27039537-1 37 90.514850 hybrid +140_1-5 Q0 KILT_21176396-1 38 90.509299 hybrid +140_1-5 Q0 KILT_4902047-1 39 90.495549 hybrid +140_1-5 Q0 KILT_31644281-3 40 90.473450 hybrid +140_1-5 Q0 MARCO_16_1655162222-7 41 90.453895 hybrid +140_1-5 Q0 KILT_125253-51 42 90.448599 hybrid +140_1-5 Q0 MARCO_17_4800427746-32 43 90.437599 hybrid +140_1-5 Q0 KILT_1032363-14 44 90.423249 hybrid +140_1-5 Q0 KILT_2157205-5 45 90.406049 hybrid +140_1-5 Q0 KILT_37078834-1 46 90.391799 hybrid +140_1-5 Q0 KILT_13945-3 47 90.384849 hybrid +140_1-5 Q0 KILT_25349111-1 48 90.359149 hybrid +140_1-5 Q0 KILT_37607409-1 49 90.349999 hybrid +140_1-5 Q0 KILT_366512-2 50 90.346149 hybrid +140_1-5 Q0 KILT_26751164-1 51 90.339199 hybrid +140_1-5 Q0 MARCO_00_1429422874-1 52 90.292049 hybrid +140_1-5 Q0 KILT_373224-5 53 90.285749 hybrid +140_1-5 Q0 KILT_26399847-4 54 90.268399 hybrid +140_1-5 Q0 MARCO_18_2227509480-28 55 90.258299 hybrid +140_1-5 Q0 MARCO_16_1655162222-8 56 90.250022 hybrid +140_1-5 Q0 KILT_50635656-9 57 90.227999 hybrid +140_1-5 Q0 KILT_27049086-1 58 90.219999 hybrid +140_1-5 Q0 MARCO_18_2501414458-2 59 90.219199 hybrid +140_1-5 Q0 MARCO_16_2628261009-38 60 90.203399 hybrid +140_1-5 Q0 MARCO_16_3565311114-38 61 90.203399 hybrid +140_1-5 Q0 MARCO_22_1016658646-9 62 90.201064 hybrid +140_1-5 Q0 KILT_6101286-4 63 90.188699 hybrid +140_1-5 Q0 KILT_353400-3 64 90.156099 hybrid +140_1-5 Q0 KILT_4414044-3 65 90.145591 hybrid +140_1-5 Q0 KILT_40058074-1 66 90.137049 hybrid +140_1-5 Q0 KILT_40106064-8 67 90.136949 hybrid +140_1-5 Q0 KILT_21540356-7 68 90.113049 hybrid +140_1-5 Q0 KILT_670152-1 69 90.108499 hybrid +140_1-5 Q0 MARCO_43_981567595-2 70 90.097938 hybrid +140_1-5 Q0 KILT_28968945-17 71 90.081999 hybrid +140_1-5 Q0 KILT_228606-11 72 90.081399 hybrid +140_1-5 Q0 MARCO_18_908886916-48 73 90.077199 hybrid +140_1-5 Q0 KILT_60642369-1 74 90.076549 hybrid +140_1-5 Q0 KILT_172024-1 75 90.074799 hybrid +140_1-5 Q0 KILT_4673397-10 76 90.065899 hybrid +140_1-5 Q0 MARCO_00_997494254-2 77 90.064699 hybrid +140_1-5 Q0 MARCO_29_146210313-7 78 90.057699 hybrid +140_1-5 Q0 KILT_32307591-1 79 90.052399 hybrid +140_1-5 Q0 KILT_70348-54 80 90.049651 hybrid +140_1-5 Q0 KILT_3121165-2 81 90.049199 hybrid +140_1-5 Q0 MARCO_27_527989993-3 82 90.047629 hybrid +140_1-5 Q0 KILT_53620268-1 83 90.041699 hybrid +140_1-5 Q0 KILT_44897733-4 84 90.030499 hybrid +140_1-5 Q0 KILT_94272-2 85 90.028449 hybrid +140_1-5 Q0 MARCO_39_1573918942-17 86 90.017343 hybrid +140_1-5 Q0 MARCO_25_683948040-3 87 90.016399 hybrid +140_1-5 Q0 MARCO_55_1666280117-3 88 90.015849 hybrid +140_1-5 Q0 KILT_12794471-1 89 90.014849 hybrid +140_1-5 Q0 KILT_46224264-11 90 90.006263 hybrid +140_1-5 Q0 MARCO_19_252208885-74 91 90.001199 hybrid +140_1-5 Q0 KILT_36303696-2 92 90.000949 hybrid +140_1-5 Q0 KILT_2350220-12 93 89.995799 hybrid +140_1-5 Q0 MARCO_31_1435531071-7 94 89.986358 hybrid +140_1-5 Q0 KILT_31239705-1 95 89.980799 hybrid +140_1-5 Q0 KILT_46224264-7 96 89.980786 hybrid +140_1-5 Q0 KILT_33294687-7 97 89.962649 hybrid +140_1-5 Q0 MARCO_18_1677740654-50 98 89.958799 hybrid +140_1-5 Q0 KILT_4175490-1 99 89.957915 hybrid +140_1-5 Q0 KILT_28320119-1 100 89.957500 hybrid +140_1-7 Q0 KILT_28832499-1 1 92.130628 hybrid +140_1-7 Q0 MARCO_08_823639828-4 2 92.113081 hybrid +140_1-7 Q0 KILT_28823410-1 3 91.744227 hybrid +140_1-7 Q0 KILT_28461170-1 4 91.627578 hybrid +140_1-7 Q0 KILT_28461170-2 5 91.397978 hybrid +140_1-7 Q0 KILT_11859745-4 6 91.362278 hybrid +140_1-7 Q0 MARCO_03_445438352-4 7 91.330275 hybrid +140_1-7 Q0 MARCO_03_446178016-4 8 91.115048 hybrid +140_1-7 Q0 KILT_28832499-2 9 90.945978 hybrid +140_1-7 Q0 KILT_3584813-1 10 90.709328 hybrid +140_1-7 Q0 MARCO_03_446024727-4 11 90.697900 hybrid +140_1-7 Q0 KILT_25330048-1 12 90.649378 hybrid +140_1-7 Q0 MARCO_03_446048207-3 13 90.269854 hybrid +140_1-7 Q0 MARCO_48_849595266-4 14 90.187728 hybrid +140_1-7 Q0 KILT_24823649-1 15 90.107778 hybrid +140_1-7 Q0 MARCO_03_457133538-3 16 89.673577 hybrid +140_1-7 Q0 KILT_13294300-1 17 89.655190 hybrid +140_1-7 Q0 MARCO_29_1140391272-1 18 89.640828 hybrid +140_1-7 Q0 KILT_13294300-3 19 89.627941 hybrid +140_1-7 Q0 KILT_13294300-5 20 89.564991 hybrid +140_1-7 Q0 KILT_13294300-7 21 89.564990 hybrid +140_1-7 Q0 KILT_24905569-2 22 89.318128 hybrid +140_1-7 Q0 KILT_44779750-1 23 89.279978 hybrid +140_1-7 Q0 MARCO_22_258349794-7 24 89.279977 hybrid +140_1-7 Q0 MARCO_53_848280024-6 25 88.782328 hybrid +140_1-7 Q0 MARCO_03_1469624429-2 26 88.688428 hybrid +140_1-7 Q0 KILT_45547526-2 27 88.683828 hybrid +140_1-7 Q0 MARCO_35_490481052-4 28 88.593728 hybrid +140_1-7 Q0 MARCO_29_1413273308-2 29 88.502878 hybrid +140_1-7 Q0 MARCO_02_308616172-17 30 88.446528 hybrid +140_1-7 Q0 MARCO_25_1378508768-20 31 88.303627 hybrid +140_1-7 Q0 MARCO_29_1413273308-3 32 88.259528 hybrid +140_1-7 Q0 MARCO_08_1719099966-1 33 88.213078 hybrid +140_1-7 Q0 MARCO_29_1413273308-1 34 88.155928 hybrid +140_1-7 Q0 MARCO_24_1720060243-4 35 88.109618 hybrid +140_1-7 Q0 MARCO_09_1233413749-20 36 88.046680 hybrid +140_1-7 Q0 MARCO_32_619645074-20 37 88.028267 hybrid +140_1-7 Q0 MARCO_01_1899298398-5 38 88.023178 hybrid +140_1-7 Q0 MARCO_01_1780024357-2 39 88.018028 hybrid +140_1-7 Q0 MARCO_54_1254356720-7 40 88.009628 hybrid +140_1-7 Q0 MARCO_59_1043490676-45 41 88.007478 hybrid +140_1-7 Q0 MARCO_41_1082014120-34 42 87.999878 hybrid +140_1-7 Q0 MARCO_03_813468386-1 43 87.992128 hybrid +140_1-7 Q0 MARCO_59_1043490676-46 44 87.955828 hybrid +140_1-7 Q0 KILT_52786719-2 45 87.870124 hybrid +140_1-7 Q0 MARCO_17_3948760263-12 46 87.855128 hybrid +140_1-7 Q0 MARCO_54_892147537-1 47 87.841278 hybrid +140_1-7 Q0 MARCO_03_445438352-6 48 87.830626 hybrid +140_1-7 Q0 MARCO_03_446024727-6 49 87.830626 hybrid +140_1-7 Q0 MARCO_03_1469624429-11 50 87.798478 hybrid +140_1-7 Q0 MARCO_54_760974149-7 51 87.797278 hybrid +140_1-7 Q0 MARCO_41_1441718434-17 52 87.794728 hybrid +140_1-7 Q0 MARCO_04_1279560037-18 53 87.793228 hybrid +140_1-7 Q0 MARCO_00_1609299273-1 54 87.790628 hybrid +140_1-7 Q0 MARCO_54_892150661-1 55 87.777628 hybrid +140_1-7 Q0 MARCO_41_1137819179-7 56 87.760228 hybrid +140_1-7 Q0 MARCO_25_227869196-5 57 87.746078 hybrid +140_1-7 Q0 MARCO_36_1472463250-4 58 87.746077 hybrid +140_1-7 Q0 MARCO_32_620327157-5 59 87.741645 hybrid +140_1-7 Q0 MARCO_09_1233187712-2 60 87.723196 hybrid +140_1-7 Q0 MARCO_27_1251176728-3 61 87.708578 hybrid +140_1-7 Q0 MARCO_19_2058367822-15 62 87.705832 hybrid +140_1-7 Q0 MARCO_41_1082014120-40 63 87.705228 hybrid +140_1-7 Q0 MARCO_07_1108772374-35 64 87.704909 hybrid +140_1-7 Q0 MARCO_51_903553952-1 65 87.698110 hybrid +140_1-7 Q0 MARCO_15_1329384568-60 66 87.692710 hybrid +140_1-7 Q0 MARCO_48_660795722-6 67 87.692128 hybrid +140_1-7 Q0 MARCO_55_138996155-21 68 87.686578 hybrid +140_1-7 Q0 MARCO_17_4323944276-2 69 87.685378 hybrid +140_1-7 Q0 KILT_39672721-70 70 87.672078 hybrid +140_1-7 Q0 KILT_12082009-1 71 87.657878 hybrid +140_1-7 Q0 MARCO_31_1802734476-1 72 87.656728 hybrid +140_1-7 Q0 MARCO_03_1469624429-14 73 87.626428 hybrid +140_1-7 Q0 MARCO_12_1150490552-1 74 87.624828 hybrid +140_1-7 Q0 MARCO_09_1233413749-33 75 87.611779 hybrid +140_1-7 Q0 MARCO_19_2034894847-2 76 87.610028 hybrid +140_1-7 Q0 MARCO_30_1932040663-9 77 87.607378 hybrid +140_1-7 Q0 MARCO_45_268329874-2 78 87.606828 hybrid +140_1-7 Q0 MARCO_09_1233413749-8 79 87.600509 hybrid +140_1-7 Q0 KILT_59342503-2 80 87.575759 hybrid +140_1-7 Q0 MARCO_45_278949595-3 81 87.571078 hybrid +140_1-7 Q0 MARCO_19_2034894847-3 82 87.557028 hybrid +140_1-7 Q0 MARCO_03_1469624429-1 83 87.539678 hybrid +140_1-7 Q0 KILT_905857-7 84 87.539128 hybrid +140_1-7 Q0 MARCO_27_1038013471-31 85 87.531728 hybrid +140_1-7 Q0 MARCO_09_1233246493-36 86 87.528478 hybrid +140_1-7 Q0 KILT_12635300-2 87 87.516178 hybrid +140_1-7 Q0 MARCO_41_1484238225-8 88 87.511678 hybrid +140_1-7 Q0 MARCO_17_2279808073-6 89 87.507528 hybrid +140_1-7 Q0 MARCO_48_1188200418-1 90 87.490128 hybrid +140_1-7 Q0 MARCO_30_1954160000-5 91 87.489778 hybrid +140_1-7 Q0 MARCO_11_8725288-13 92 87.475528 hybrid +140_1-7 Q0 MARCO_09_643732234-2 93 87.468528 hybrid +140_1-7 Q0 MARCO_55_139159595-9 94 87.468478 hybrid +140_1-7 Q0 MARCO_31_1226592679-2 95 87.466128 hybrid +140_1-7 Q0 MARCO_19_2034894847-1 96 87.459828 hybrid +140_1-7 Q0 MARCO_41_1945492466-10 97 87.443656 hybrid +140_1-7 Q0 MARCO_25_1766316056-16 98 87.433532 hybrid +140_1-7 Q0 MARCO_45_268382863-1 99 87.433278 hybrid +140_1-7 Q0 MARCO_30_1932040663-8 100 87.414278 hybrid +140_1-9 Q0 MARCO_54_575373635-2 1 95.960134 hybrid +140_1-9 Q0 MARCO_01_1064363562-2 2 93.210861 hybrid +140_1-9 Q0 KILT_21540356-1 3 92.836083 hybrid +140_1-9 Q0 KILT_2710824-1 4 92.438133 hybrid +140_1-9 Q0 KILT_39470-36 5 92.176884 hybrid +140_1-9 Q0 MARCO_17_4390005194-3 6 91.832883 hybrid +140_1-9 Q0 KILT_2213191-3 7 91.700033 hybrid +140_1-9 Q0 KILT_10259157-6 8 91.665684 hybrid +140_1-9 Q0 MARCO_14_93878971-2 9 91.581734 hybrid +140_1-9 Q0 MARCO_14_93878971-3 10 91.560933 hybrid +140_1-9 Q0 KILT_31891772-1 11 91.542833 hybrid +140_1-9 Q0 KILT_35964707-1 12 91.537184 hybrid +140_1-9 Q0 MARCO_28_278767164-1 13 91.507083 hybrid +140_1-9 Q0 KILT_29000259-1 14 91.498183 hybrid +140_1-9 Q0 MARCO_18_797679733-12 15 91.489533 hybrid +140_1-9 Q0 KILT_40058074-3 16 91.452933 hybrid +140_1-9 Q0 MARCO_56_472516218-2 17 91.441383 hybrid +140_1-9 Q0 KILT_48017862-1 18 91.406083 hybrid +140_1-9 Q0 MARCO_30_1985040879-2 19 91.403334 hybrid +140_1-9 Q0 KILT_36749029-1 20 91.385583 hybrid +140_1-9 Q0 KILT_26399847-4 21 91.346684 hybrid +140_1-9 Q0 MARCO_25_1699576681-1 22 91.329033 hybrid +140_1-9 Q0 KILT_46945871-1 23 91.308983 hybrid +140_1-9 Q0 KILT_24490621-1 24 91.307484 hybrid +140_1-9 Q0 KILT_31296178-1 25 91.282633 hybrid +140_1-9 Q0 KILT_28753082-1 26 91.280183 hybrid +140_1-9 Q0 KILT_5618791-1 27 91.255555 hybrid +140_1-9 Q0 MARCO_31_1177542281-1 28 91.245083 hybrid +140_1-9 Q0 MARCO_22_1821166097-10 29 91.199783 hybrid +140_1-9 Q0 MARCO_18_908886916-48 30 91.155483 hybrid +140_1-9 Q0 MARCO_40_1565424675-3 31 91.151584 hybrid +140_1-9 Q0 KILT_27068094-1 32 91.132334 hybrid +140_1-9 Q0 KILT_31239705-7 33 91.131383 hybrid +140_1-9 Q0 KILT_44897733-4 34 91.117733 hybrid +140_1-9 Q0 KILT_15056230-1 35 91.100433 hybrid +140_1-9 Q0 KILT_31644281-3 36 91.098783 hybrid +140_1-9 Q0 KILT_31644281-1 37 91.060534 hybrid +140_1-9 Q0 MARCO_00_1429422874-1 38 91.059633 hybrid +140_1-9 Q0 MARCO_53_395664418-1 39 91.050834 hybrid +140_1-9 Q0 KILT_33294687-7 40 91.032133 hybrid +140_1-9 Q0 MARCO_16_3563992780-5 41 91.012033 hybrid +140_1-9 Q0 MARCO_58_1513708420-1 42 90.978084 hybrid +140_1-9 Q0 KILT_366512-2 43 90.967733 hybrid +140_1-9 Q0 MARCO_02_1555647261-1 44 90.957933 hybrid +140_1-9 Q0 MARCO_16_1655162222-7 45 90.922502 hybrid +140_1-9 Q0 MARCO_48_1855753765-3 46 90.901533 hybrid +140_1-9 Q0 MARCO_18_206062244-16 47 90.891133 hybrid +140_1-9 Q0 MARCO_30_823512109-2 48 90.857712 hybrid +140_1-9 Q0 KILT_48188382-1 49 90.846483 hybrid +140_1-9 Q0 MARCO_57_682773011-1 50 90.823584 hybrid +140_1-9 Q0 KILT_27039537-1 51 90.802234 hybrid +140_1-9 Q0 KILT_4414044-3 52 90.800844 hybrid +140_1-9 Q0 KILT_21176396-1 53 90.796683 hybrid +140_1-9 Q0 KILT_4902047-1 54 90.782933 hybrid +140_1-9 Q0 MARCO_58_2083805205-3 55 90.753633 hybrid +140_1-9 Q0 KILT_40058074-1 56 90.751233 hybrid +140_1-9 Q0 KILT_4414093-7 57 90.740579 hybrid +140_1-9 Q0 KILT_125253-51 58 90.735983 hybrid +140_1-9 Q0 MARCO_17_4800427746-32 59 90.724983 hybrid +140_1-9 Q0 MARCO_19_252208885-74 60 90.724683 hybrid +140_1-9 Q0 MARCO_06_841381976-172 61 90.717683 hybrid +140_1-9 Q0 KILT_1032363-14 62 90.710633 hybrid +140_1-9 Q0 MARCO_16_1655162222-8 63 90.708177 hybrid +140_1-9 Q0 KILT_2157205-5 64 90.693433 hybrid +140_1-9 Q0 KILT_37078834-1 65 90.679183 hybrid +140_1-9 Q0 MARCO_22_1016658646-9 66 90.677034 hybrid +140_1-9 Q0 MARCO_29_146210313-7 67 90.675533 hybrid +140_1-9 Q0 MARCO_36_584214453-2 68 90.674433 hybrid +140_1-9 Q0 KILT_13945-3 69 90.672233 hybrid +140_1-9 Q0 MARCO_25_1626526765-16 70 90.668033 hybrid +140_1-9 Q0 KILT_25349111-1 71 90.646533 hybrid +140_1-9 Q0 MARCO_25_683948040-3 72 90.641733 hybrid +140_1-9 Q0 KILT_37607409-1 73 90.637383 hybrid +140_1-9 Q0 KILT_26751164-1 74 90.626583 hybrid +140_1-9 Q0 MARCO_55_1666280117-3 75 90.626483 hybrid +140_1-9 Q0 KILT_50635656-8 76 90.624633 hybrid +140_1-9 Q0 KILT_31239705-1 77 90.598633 hybrid +140_1-9 Q0 MARCO_25_743464889-1 78 90.592333 hybrid +140_1-9 Q0 KILT_31782623-57 79 90.573433 hybrid +140_1-9 Q0 KILT_373224-5 80 90.573133 hybrid +140_1-9 Q0 MARCO_06_1297416555-45 81 90.556276 hybrid +140_1-9 Q0 MARCO_18_2227509480-28 82 90.545683 hybrid +140_1-9 Q0 KILT_70348-54 83 90.545076 hybrid +140_1-9 Q0 MARCO_02_1060318205-2 84 90.536633 hybrid +140_1-9 Q0 KILT_50635656-9 85 90.515383 hybrid +140_1-9 Q0 KILT_27049086-1 86 90.507383 hybrid +140_1-9 Q0 MARCO_18_2501414458-2 87 90.506583 hybrid +140_1-9 Q0 KILT_4414093-12 88 90.500842 hybrid +140_1-9 Q0 MARCO_31_1435531071-7 89 90.493455 hybrid +140_1-9 Q0 KILT_7576135-1 90 90.492334 hybrid +140_1-9 Q0 MARCO_16_2628261009-38 91 90.490783 hybrid +140_1-9 Q0 MARCO_16_3565311114-38 92 90.490783 hybrid +140_1-9 Q0 KILT_4175490-1 93 90.484682 hybrid +140_1-9 Q0 KILT_17002826-1 94 90.481633 hybrid +140_1-9 Q0 KILT_28717859-1 95 90.478403 hybrid +140_1-9 Q0 KILT_6101286-4 96 90.476083 hybrid +140_1-9 Q0 KILT_47211160-1 97 90.476053 hybrid +140_1-9 Q0 MARCO_16_3173525561-4 98 90.469283 hybrid +140_1-9 Q0 KILT_46224264-7 99 90.463534 hybrid +140_1-9 Q0 KILT_35230467-2 100 90.461626 hybrid +140_2-1 Q0 KILT_42725077-5 1 89.697603 hybrid +140_2-1 Q0 MARCO_58_1505770958-4 2 89.211059 hybrid +140_2-1 Q0 MARCO_30_1092667965-1 3 88.666611 hybrid +140_2-1 Q0 KILT_42725077-4 4 88.645024 hybrid +140_2-1 Q0 MARCO_55_1281217641-1 5 88.570844 hybrid +140_2-1 Q0 KILT_42725077-6 6 88.564966 hybrid +140_2-1 Q0 KILT_42725077-3 7 88.253968 hybrid +140_2-1 Q0 MARCO_55_1280232390-10 8 88.166523 hybrid +140_2-1 Q0 KILT_42725077-2 9 88.086068 hybrid +140_2-1 Q0 KILT_50059281-5 10 88.034083 hybrid +140_2-1 Q0 MARCO_22_1016696041-3 11 88.005287 hybrid +140_2-1 Q0 KILT_55702318-2 12 87.888934 hybrid +140_2-1 Q0 KILT_59101211-1 13 87.872283 hybrid +140_2-1 Q0 MARCO_06_200120676-1 14 87.857833 hybrid +140_2-1 Q0 MARCO_58_1505770958-1 15 87.852164 hybrid +140_2-1 Q0 KILT_55702318-1 16 87.836083 hybrid +140_2-1 Q0 MARCO_55_1280659858-26 17 87.783683 hybrid +140_2-1 Q0 MARCO_50_890815532-3 18 87.779634 hybrid +140_2-1 Q0 MARCO_55_1285550962-5 19 87.775942 hybrid +140_2-1 Q0 KILT_44973671-1 20 87.724845 hybrid +140_2-1 Q0 MARCO_22_258349794-10 21 87.685184 hybrid +140_2-1 Q0 MARCO_17_692375270-43 22 87.677539 hybrid +140_2-1 Q0 KILT_42725077-1 23 87.674546 hybrid +140_2-1 Q0 MARCO_25_227670877-3 24 87.661833 hybrid +140_2-1 Q0 KILT_48032251-1 25 87.607433 hybrid +140_2-1 Q0 MARCO_11_715977820-3 26 87.595682 hybrid +140_2-1 Q0 MARCO_30_1092694148-2 27 87.579005 hybrid +140_2-1 Q0 MARCO_04_1016596058-2 28 87.565234 hybrid +140_2-1 Q0 MARCO_27_588776995-2 29 87.538085 hybrid +140_2-1 Q0 KILT_36594714-2 30 87.490983 hybrid +140_2-1 Q0 MARCO_02_162084491-4 31 87.481234 hybrid +140_2-1 Q0 MARCO_17_494635468-19 32 87.478883 hybrid +140_2-1 Q0 MARCO_49_1858156120-6 33 87.466342 hybrid +140_2-1 Q0 MARCO_18_3532223529-5 34 87.455534 hybrid +140_2-1 Q0 KILT_42725077-7 35 87.430250 hybrid +140_2-1 Q0 KILT_49883355-2 36 87.425533 hybrid +140_2-1 Q0 MARCO_08_823639828-1 37 87.425194 hybrid +140_2-1 Q0 MARCO_18_4064677649-1 38 87.416483 hybrid +140_2-1 Q0 MARCO_30_1092694148-1 39 87.411577 hybrid +140_2-1 Q0 MARCO_55_1285550962-1 40 87.407976 hybrid +140_2-1 Q0 MARCO_30_1092667965-3 41 87.402766 hybrid +140_2-1 Q0 MARCO_18_4064677649-4 42 87.395733 hybrid +140_2-1 Q0 KILT_36594714-1 43 87.373834 hybrid +140_2-1 Q0 MARCO_18_3532223529-25 44 87.357083 hybrid +140_2-1 Q0 MARCO_31_426612870-40 45 87.350234 hybrid +140_2-1 Q0 MARCO_11_715977820-14 46 87.348031 hybrid +140_2-1 Q0 KILT_27243997-3 47 87.347583 hybrid +140_2-1 Q0 MARCO_24_1720009771-3 48 87.343947 hybrid +140_2-1 Q0 MARCO_08_254744271-6 49 87.293384 hybrid +140_2-1 Q0 KILT_36594714-3 50 87.289283 hybrid +140_2-1 Q0 MARCO_11_716304225-13 51 87.277254 hybrid +140_2-1 Q0 KILT_31600293-3 52 87.275633 hybrid +140_2-1 Q0 MARCO_25_227987521-59 53 87.266133 hybrid +140_2-1 Q0 MARCO_08_255872913-1 54 87.262884 hybrid +140_2-1 Q0 MARCO_24_1718621756-4 55 87.255514 hybrid +140_2-1 Q0 MARCO_53_848280024-1 56 87.253133 hybrid +140_2-1 Q0 MARCO_18_3532223529-24 57 87.246183 hybrid +140_2-1 Q0 MARCO_19_1470024508-9 58 87.237783 hybrid +140_2-1 Q0 MARCO_03_803632629-1 59 87.237234 hybrid +140_2-1 Q0 MARCO_41_1494750574-31 60 87.235384 hybrid +140_2-1 Q0 MARCO_11_719002106-4 61 87.224636 hybrid +140_2-1 Q0 MARCO_39_1263326923-107 62 87.217934 hybrid +140_2-1 Q0 MARCO_55_1285559246-4 63 87.211214 hybrid +140_2-1 Q0 MARCO_24_1720740630-3 64 87.209353 hybrid +140_2-1 Q0 MARCO_25_228503185-2 65 87.207183 hybrid +140_2-1 Q0 MARCO_25_227987521-78 66 87.206284 hybrid +140_2-1 Q0 MARCO_06_653370553-5 67 87.185284 hybrid +140_2-1 Q0 KILT_17189631-4 68 87.181834 hybrid +140_2-1 Q0 KILT_52289180-4 69 87.173456 hybrid +140_2-1 Q0 MARCO_49_522173046-10 70 87.171648 hybrid +140_2-1 Q0 KILT_5706211-3 71 87.167994 hybrid +140_2-1 Q0 MARCO_48_831107990-3 72 87.166083 hybrid +140_2-1 Q0 MARCO_30_1092694148-8 73 87.155909 hybrid +140_2-1 Q0 MARCO_24_1718716761-2 74 87.155497 hybrid +140_2-1 Q0 KILT_28024638-10 75 87.154651 hybrid +140_2-1 Q0 MARCO_47_1604463871-12 76 87.153684 hybrid +140_2-1 Q0 KILT_25606286-1 77 87.152783 hybrid +140_2-1 Q0 MARCO_30_1029169387-20 78 87.151278 hybrid +140_2-1 Q0 MARCO_54_1592040185-1 79 87.150664 hybrid +140_2-1 Q0 MARCO_28_309794017-3 80 87.137766 hybrid +140_2-1 Q0 MARCO_19_2047202465-3 81 87.133929 hybrid +140_2-1 Q0 KILT_53265757-1 82 87.133532 hybrid +140_2-1 Q0 KILT_16279193-9 83 87.113833 hybrid +140_2-1 Q0 KILT_41758870-1 84 87.112810 hybrid +140_2-1 Q0 MARCO_02_1559411091-13 85 87.111184 hybrid +140_2-1 Q0 MARCO_27_588776995-4 86 87.108660 hybrid +140_2-1 Q0 MARCO_47_1604463871-10 87 87.105751 hybrid +140_2-1 Q0 MARCO_30_1029169387-2 88 87.105616 hybrid +140_2-1 Q0 MARCO_39_1263326923-73 89 87.102384 hybrid +140_2-1 Q0 MARCO_25_227987521-47 90 87.101734 hybrid +140_2-1 Q0 MARCO_55_1285550962-2 91 87.098414 hybrid +140_2-1 Q0 KILT_49883355-3 92 87.095483 hybrid +140_2-1 Q0 MARCO_10_1603307364-3 93 87.094433 hybrid +140_2-1 Q0 MARCO_11_716590866-16 94 87.082628 hybrid +140_2-1 Q0 MARCO_01_414844028-47 95 87.079984 hybrid +140_2-1 Q0 KILT_47833907-1 96 87.073702 hybrid +140_2-1 Q0 MARCO_11_715997539-1 97 87.072749 hybrid +140_2-1 Q0 KILT_50059281-6 98 87.071434 hybrid +140_2-1 Q0 KILT_34665811-3 99 87.071429 hybrid +140_2-1 Q0 MARCO_19_2047188347-1 100 87.071352 hybrid +140_2-3 Q0 MARCO_25_227670877-3 1 90.373964 hybrid +140_2-3 Q0 MARCO_27_588776995-2 2 89.615432 hybrid +140_2-3 Q0 MARCO_01_414844028-47 3 89.569814 hybrid +140_2-3 Q0 KILT_36594714-2 4 89.247664 hybrid +140_2-3 Q0 KILT_36594714-3 5 89.160314 hybrid +140_2-3 Q0 KILT_36594714-1 6 89.130564 hybrid +140_2-3 Q0 KILT_42725077-5 7 88.918718 hybrid +140_2-3 Q0 MARCO_58_1505770958-4 8 88.816169 hybrid +140_2-3 Q0 MARCO_11_716304225-12 9 88.637847 hybrid +140_2-3 Q0 KILT_50402406-1 10 88.619664 hybrid +140_2-3 Q0 MARCO_22_296660908-7 11 88.567014 hybrid +140_2-3 Q0 MARCO_27_588863416-42 12 88.367173 hybrid +140_2-3 Q0 KILT_48393303-1 13 88.296414 hybrid +140_2-3 Q0 KILT_50059281-5 14 88.232014 hybrid +140_2-3 Q0 MARCO_11_716590866-16 15 88.175475 hybrid +140_2-3 Q0 MARCO_56_1312601736-2 16 88.153922 hybrid +140_2-3 Q0 MARCO_54_1901046870-4 17 88.137464 hybrid +140_2-3 Q0 KILT_11859745-5 18 88.135214 hybrid +140_2-3 Q0 MARCO_32_683060655-1 19 88.104414 hybrid +140_2-3 Q0 KILT_49157301-4 20 88.101864 hybrid +140_2-3 Q0 MARCO_48_1524913777-54 21 88.081764 hybrid +140_2-3 Q0 MARCO_11_716565973-5 22 88.042964 hybrid +140_2-3 Q0 KILT_2373341-1 23 88.042664 hybrid +140_2-3 Q0 KILT_34914570-2 24 88.042664 hybrid +140_2-3 Q0 MARCO_15_569758513-3 25 88.039314 hybrid +140_2-3 Q0 MARCO_32_575441429-1 26 88.024564 hybrid +140_2-3 Q0 MARCO_30_1092667965-1 27 88.009161 hybrid +140_2-3 Q0 KILT_22310611-1 28 88.003814 hybrid +140_2-3 Q0 KILT_18895226-2 29 87.937968 hybrid +140_2-3 Q0 KILT_34665811-3 30 87.934546 hybrid +140_2-3 Q0 MARCO_11_715977820-14 31 87.929138 hybrid +140_2-3 Q0 MARCO_26_820724676-1 32 87.927814 hybrid +140_2-3 Q0 MARCO_22_1454383296-3 33 87.924164 hybrid +140_2-3 Q0 MARCO_01_1897016763-19 34 87.909714 hybrid +140_2-3 Q0 KILT_3385208-5 35 87.905977 hybrid +140_2-3 Q0 MARCO_11_715977820-3 36 87.899215 hybrid +140_2-3 Q0 MARCO_56_758601032-18 37 87.894714 hybrid +140_2-3 Q0 KILT_44905552-1 38 87.881843 hybrid +140_2-3 Q0 MARCO_55_1059880905-4 39 87.859114 hybrid +140_2-3 Q0 KILT_51309424-2 40 87.858514 hybrid +140_2-3 Q0 MARCO_22_1016763847-1 41 87.827774 hybrid +140_2-3 Q0 MARCO_56_758683218-1 42 87.827064 hybrid +140_2-3 Q0 KILT_50402406-3 43 87.823514 hybrid +140_2-3 Q0 MARCO_39_1522232617-19 44 87.822364 hybrid +140_2-3 Q0 MARCO_55_1281217641-1 45 87.813421 hybrid +140_2-3 Q0 MARCO_29_1263965849-1 46 87.813014 hybrid +140_2-3 Q0 MARCO_24_1718582318-5 47 87.811640 hybrid +140_2-3 Q0 MARCO_06_697327108-4 48 87.810179 hybrid +140_2-3 Q0 KILT_60029310-2 49 87.805205 hybrid +140_2-3 Q0 MARCO_10_261910952-119 50 87.789550 hybrid +140_2-3 Q0 KILT_39957256-3 51 87.778035 hybrid +140_2-3 Q0 MARCO_22_1016696041-6 52 87.768828 hybrid +140_2-3 Q0 KILT_54269106-3 53 87.768464 hybrid +140_2-3 Q0 MARCO_31_908133646-22 54 87.761964 hybrid +140_2-3 Q0 MARCO_29_1263965849-2 55 87.759714 hybrid +140_2-3 Q0 MARCO_11_716304225-13 56 87.756911 hybrid +140_2-3 Q0 MARCO_11_758826070-4 57 87.756782 hybrid +140_2-3 Q0 KILT_25854163-2 58 87.742664 hybrid +140_2-3 Q0 KILT_48917653-2 59 87.733764 hybrid +140_2-3 Q0 KILT_34665811-2 60 87.730613 hybrid +140_2-3 Q0 KILT_42725077-6 61 87.702425 hybrid +140_2-3 Q0 MARCO_18_1558345297-5 62 87.692214 hybrid +140_2-3 Q0 KILT_43037442-1 63 87.684564 hybrid +140_2-3 Q0 MARCO_31_908133646-20 64 87.682564 hybrid +140_2-3 Q0 MARCO_32_683060655-2 65 87.680914 hybrid +140_2-3 Q0 KILT_4036973-14 66 87.679664 hybrid +140_2-3 Q0 MARCO_18_3481619515-17 67 87.672664 hybrid +140_2-3 Q0 MARCO_10_261910952-115 68 87.671096 hybrid +140_2-3 Q0 MARCO_10_261910952-113 69 87.663352 hybrid +140_2-3 Q0 KILT_39957256-1 70 87.661468 hybrid +140_2-3 Q0 MARCO_22_1016798109-7 71 87.655662 hybrid +140_2-3 Q0 MARCO_24_1719273009-10 72 87.649763 hybrid +140_2-3 Q0 KILT_55801720-2 73 87.646114 hybrid +140_2-3 Q0 KILT_47197913-1 74 87.642631 hybrid +140_2-3 Q0 KILT_42725077-3 75 87.641686 hybrid +140_2-3 Q0 MARCO_47_1601337723-1 76 87.639594 hybrid +140_2-3 Q0 MARCO_58_1508509746-2 77 87.639464 hybrid +140_2-3 Q0 KILT_34157195-1 78 87.633814 hybrid +140_2-3 Q0 KILT_39957256-2 79 87.622283 hybrid +140_2-3 Q0 MARCO_31_908133646-19 80 87.619814 hybrid +140_2-3 Q0 MARCO_50_314443999-14 81 87.617814 hybrid +140_2-3 Q0 MARCO_22_1016829979-5 82 87.616271 hybrid +140_2-3 Q0 MARCO_55_1285550962-5 83 87.613898 hybrid +140_2-3 Q0 KILT_34665811-1 84 87.606452 hybrid +140_2-3 Q0 MARCO_55_1059880905-3 85 87.606014 hybrid +140_2-3 Q0 MARCO_30_1092694148-2 86 87.602546 hybrid +140_2-3 Q0 MARCO_30_1092694148-8 87 87.600799 hybrid +140_2-3 Q0 MARCO_50_314620889-16 88 87.600214 hybrid +140_2-3 Q0 MARCO_24_1719507901-4 89 87.595562 hybrid +140_2-3 Q0 KILT_44973671-2 90 87.593879 hybrid +140_2-3 Q0 MARCO_22_1016798109-6 91 87.590705 hybrid +140_2-3 Q0 KILT_61403766-1 92 87.590293 hybrid +140_2-3 Q0 MARCO_08_823623956-9 93 87.588996 hybrid +140_2-3 Q0 KILT_17795185-1 94 87.583089 hybrid +140_2-3 Q0 MARCO_24_1719431511-2 95 87.578948 hybrid +140_2-3 Q0 MARCO_24_1718582318-1 96 87.571441 hybrid +140_2-3 Q0 MARCO_11_758826070-6 97 87.570625 hybrid +140_2-3 Q0 KILT_42725077-4 98 87.569348 hybrid +140_2-3 Q0 KILT_59101211-1 99 87.565864 hybrid +140_2-3 Q0 MARCO_12_1883226547-1 100 87.564564 hybrid +140_2-5 Q0 KILT_42725077-3 1 95.704905 hybrid +140_2-5 Q0 KILT_59101211-1 2 95.410548 hybrid +140_2-5 Q0 KILT_53802305-1 3 94.635248 hybrid +140_2-5 Q0 KILT_10143932-7 4 94.162698 hybrid +140_2-5 Q0 KILT_36594714-2 5 93.853148 hybrid +140_2-5 Q0 KILT_55860831-2 6 93.735850 hybrid +140_2-5 Q0 KILT_55860831-4 7 93.735849 hybrid +140_2-5 Q0 KILT_26991584-1 8 93.708899 hybrid +140_2-5 Q0 KILT_50059281-3 9 93.152748 hybrid +140_2-5 Q0 KILT_50059281-1 10 93.068948 hybrid +140_2-5 Q0 KILT_50059281-2 11 92.884948 hybrid +140_2-5 Q0 KILT_50059281-5 12 92.124648 hybrid +140_2-5 Q0 MARCO_03_1141628450-14 13 91.986348 hybrid +140_2-5 Q0 KILT_42725077-4 14 91.937807 hybrid +140_2-5 Q0 KILT_50059281-4 15 91.932398 hybrid +140_2-5 Q0 KILT_50059281-6 16 91.310748 hybrid +140_2-5 Q0 KILT_50059281-7 17 91.068098 hybrid +140_2-5 Q0 KILT_42725077-5 18 90.431851 hybrid +140_2-5 Q0 KILT_43561772-1 19 90.344757 hybrid +140_2-5 Q0 KILT_6748189-1 20 89.518403 hybrid +140_2-5 Q0 MARCO_25_408104792-1 21 89.440498 hybrid +140_2-5 Q0 MARCO_25_408104792-2 22 89.334498 hybrid +140_2-5 Q0 KILT_51424908-8 23 89.323298 hybrid +140_2-5 Q0 KILT_49259076-1 24 89.248810 hybrid +140_2-5 Q0 KILT_23192836-1 25 89.238048 hybrid +140_2-5 Q0 MARCO_56_1312772055-16 26 89.105131 hybrid +140_2-5 Q0 MARCO_10_261910952-35 27 89.094068 hybrid +140_2-5 Q0 MARCO_25_1131909828-1 28 89.049048 hybrid +140_2-5 Q0 KILT_34665811-5 29 89.013372 hybrid +140_2-5 Q0 KILT_34665811-1 30 88.914632 hybrid +140_2-5 Q0 KILT_10088945-8 31 88.878898 hybrid +140_2-5 Q0 MARCO_51_1503907356-3 32 88.866483 hybrid +140_2-5 Q0 MARCO_31_2455582-2 33 88.761448 hybrid +140_2-5 Q0 KILT_53802305-2 34 88.734298 hybrid +140_2-5 Q0 MARCO_01_414844028-82 35 88.723948 hybrid +140_2-5 Q0 KILT_5844410-1 36 88.694494 hybrid +140_2-5 Q0 KILT_21383-60 37 88.673398 hybrid +140_2-5 Q0 KILT_6200214-3 38 88.666798 hybrid +140_2-5 Q0 KILT_26799731-1 39 88.594898 hybrid +140_2-5 Q0 KILT_31600293-1 40 88.532998 hybrid +140_2-5 Q0 MARCO_25_227875829-5 41 88.530448 hybrid +140_2-5 Q0 KILT_8262517-2 42 88.507169 hybrid +140_2-5 Q0 KILT_31600293-3 43 88.483948 hybrid +140_2-5 Q0 MARCO_17_938724643-2 44 88.476398 hybrid +140_2-5 Q0 MARCO_24_1719591370-2 45 88.472532 hybrid +140_2-5 Q0 MARCO_58_1505770958-4 46 88.447386 hybrid +140_2-5 Q0 KILT_44905552-1 47 88.443141 hybrid +140_2-5 Q0 KILT_42725077-2 48 88.391232 hybrid +140_2-5 Q0 MARCO_48_551661713-9 49 88.369688 hybrid +140_2-5 Q0 KILT_54269106-3 50 88.360048 hybrid +140_2-5 Q0 KILT_27461496-1 51 88.348548 hybrid +140_2-5 Q0 KILT_28024638-2 52 88.323777 hybrid +140_2-5 Q0 MARCO_11_719397837-7 53 88.321432 hybrid +140_2-5 Q0 MARCO_04_1288938965-3 54 88.301458 hybrid +140_2-5 Q0 KILT_52055609-2 55 88.290648 hybrid +140_2-5 Q0 MARCO_24_1723640659-2 56 88.288274 hybrid +140_2-5 Q0 KILT_30820858-5 57 88.262108 hybrid +140_2-5 Q0 MARCO_24_1719063965-4 58 88.236806 hybrid +140_2-5 Q0 MARCO_24_1719591370-5 59 88.236516 hybrid +140_2-5 Q0 MARCO_56_1312601736-3 60 88.233091 hybrid +140_2-5 Q0 KILT_25786829-1 61 88.230698 hybrid +140_2-5 Q0 KILT_45340713-1 62 88.230548 hybrid +140_2-5 Q0 KILT_9856354-3 63 88.211398 hybrid +140_2-5 Q0 MARCO_00_892205658-1 64 88.204648 hybrid +140_2-5 Q0 KILT_33386426-1 65 88.203098 hybrid +140_2-5 Q0 KILT_48686858-1 66 88.201148 hybrid +140_2-5 Q0 KILT_43207725-3 67 88.197598 hybrid +140_2-5 Q0 KILT_48522949-1 68 88.192548 hybrid +140_2-5 Q0 KILT_56823-14 69 88.177548 hybrid +140_2-5 Q0 KILT_37696851-1 70 88.169126 hybrid +140_2-5 Q0 KILT_61403766-1 71 88.167936 hybrid +140_2-5 Q0 KILT_47002652-1 72 88.166448 hybrid +140_2-5 Q0 KILT_53349007-2 73 88.153648 hybrid +140_2-5 Q0 MARCO_31_2455582-1 74 88.146448 hybrid +140_2-5 Q0 KILT_9911345-5 75 88.146238 hybrid +140_2-5 Q0 MARCO_19_962618007-13 76 88.145490 hybrid +140_2-5 Q0 KILT_44612598-2 77 88.122816 hybrid +140_2-5 Q0 KILT_58506952-3 78 88.121877 hybrid +140_2-5 Q0 MARCO_10_261910952-115 79 88.099405 hybrid +140_2-5 Q0 KILT_52289180-1 80 88.084135 hybrid +140_2-5 Q0 MARCO_18_464104505-27 81 88.079160 hybrid +140_2-5 Q0 MARCO_24_1719591370-1 82 88.065107 hybrid +140_2-5 Q0 KILT_51424908-6 83 88.060198 hybrid +140_2-5 Q0 KILT_59633457-1 84 88.051548 hybrid +140_2-5 Q0 KILT_24403072-1 85 88.049298 hybrid +140_2-5 Q0 KILT_56882924-1 86 88.046898 hybrid +140_2-5 Q0 KILT_3950337-1 87 88.039598 hybrid +140_2-5 Q0 KILT_22978702-1 88 88.032731 hybrid +140_2-5 Q0 KILT_40192700-3 89 88.030797 hybrid +140_2-5 Q0 MARCO_51_406092400-10 90 88.016698 hybrid +140_2-5 Q0 MARCO_56_433889789-11 91 88.012998 hybrid +140_2-5 Q0 MARCO_10_107614716-10 92 87.998748 hybrid +140_2-5 Q0 KILT_43207725-5 93 87.982498 hybrid +140_2-5 Q0 KILT_5844410-2 94 87.975851 hybrid +140_2-5 Q0 MARCO_06_338280924-2 95 87.975057 hybrid +140_2-5 Q0 KILT_32263934-7 96 87.973798 hybrid +140_2-5 Q0 KILT_49450841-1 97 87.972448 hybrid +140_2-5 Q0 KILT_22745248-1 98 87.969862 hybrid +140_2-5 Q0 MARCO_12_1173554200-1 99 87.962548 hybrid +140_2-5 Q0 KILT_2217846-7 100 87.954948 hybrid +140_3-1 Q0 MARCO_54_575373635-2 1 95.885509 hybrid +140_3-1 Q0 MARCO_45_1439590880-1 2 93.343684 hybrid +140_3-1 Q0 MARCO_24_1718716761-3 3 92.874441 hybrid +140_3-1 Q0 MARCO_05_1363328058-1 4 92.586214 hybrid +140_3-1 Q0 KILT_43639639-1 5 92.385058 hybrid +140_3-1 Q0 MARCO_16_3146698038-3 6 92.028008 hybrid +140_3-1 Q0 KILT_1442062-2 7 91.978909 hybrid +140_3-1 Q0 KILT_28678189-1 8 91.890859 hybrid +140_3-1 Q0 MARCO_34_1754841682-1 9 91.847208 hybrid +140_3-1 Q0 KILT_1442062-1 10 91.780958 hybrid +140_3-1 Q0 KILT_52002085-1 11 91.637259 hybrid +140_3-1 Q0 KILT_13924866-1 12 90.954558 hybrid +140_3-1 Q0 MARCO_34_1754841682-2 13 90.785559 hybrid +140_3-1 Q0 KILT_4414093-9 14 90.745795 hybrid +140_3-1 Q0 KILT_24833975-1 15 90.711576 hybrid +140_3-1 Q0 MARCO_16_3146698038-1 16 90.705559 hybrid +140_3-1 Q0 KILT_2001834-2 17 90.578966 hybrid +140_3-1 Q0 MARCO_31_554152250-21 18 90.391258 hybrid +140_3-1 Q0 MARCO_17_4828987761-8 19 90.334059 hybrid +140_3-1 Q0 KILT_2001834-1 20 90.278150 hybrid +140_3-1 Q0 KILT_28678189-4 21 90.240209 hybrid +140_3-1 Q0 MARCO_29_1413346262-2 22 90.217009 hybrid +140_3-1 Q0 KILT_26041112-3 23 90.205658 hybrid +140_3-1 Q0 KILT_42725077-7 24 90.142265 hybrid +140_3-1 Q0 MARCO_50_2686188862-15 25 90.047958 hybrid +140_3-1 Q0 MARCO_54_575373635-10 26 90.040758 hybrid +140_3-1 Q0 KILT_3959583-1 27 90.022458 hybrid +140_3-1 Q0 MARCO_17_543589328-1 28 90.022457 hybrid +140_3-1 Q0 MARCO_16_3146698038-2 29 90.022108 hybrid +140_3-1 Q0 KILT_28678189-3 30 90.018508 hybrid +140_3-1 Q0 MARCO_24_1718716761-2 31 89.981229 hybrid +140_3-1 Q0 KILT_39388584-2 32 89.962858 hybrid +140_3-1 Q0 KILT_39388584-1 33 89.931508 hybrid +140_3-1 Q0 KILT_2292869-5 34 89.909708 hybrid +140_3-1 Q0 MARCO_17_467054059-6 35 89.909707 hybrid +140_3-1 Q0 KILT_25606286-1 36 89.904008 hybrid +140_3-1 Q0 KILT_52148598-1 37 89.867309 hybrid +140_3-1 Q0 KILT_35475162-17 38 89.838458 hybrid +140_3-1 Q0 MARCO_16_3146712539-2 39 89.805859 hybrid +140_3-1 Q0 MARCO_17_543589328-2 40 89.802558 hybrid +140_3-1 Q0 MARCO_24_1718716761-4 41 89.762391 hybrid +140_3-1 Q0 MARCO_06_1128173535-141 42 89.733590 hybrid +140_3-1 Q0 MARCO_30_1079495440-5 43 89.688991 hybrid +140_3-1 Q0 KILT_24834021-1 44 89.669860 hybrid +140_3-1 Q0 KILT_39553706-92 45 89.616709 hybrid +140_3-1 Q0 KILT_2881064-1 46 89.610458 hybrid +140_3-1 Q0 MARCO_12_1446464445-2 47 89.602058 hybrid +140_3-1 Q0 MARCO_10_145182020-2 48 89.592558 hybrid +140_3-1 Q0 KILT_10602129-5 49 89.578758 hybrid +140_3-1 Q0 MARCO_25_227869196-4 50 89.561708 hybrid +140_3-1 Q0 MARCO_16_3146698038-13 51 89.551158 hybrid +140_3-1 Q0 MARCO_16_3146698038-11 52 89.538858 hybrid +140_3-1 Q0 MARCO_29_1413332966-1 53 89.529109 hybrid +140_3-1 Q0 KILT_33013283-3 54 89.476008 hybrid +140_3-1 Q0 KILT_40670265-1 55 89.474058 hybrid +140_3-1 Q0 MARCO_06_555012177-3 56 89.406658 hybrid +140_3-1 Q0 MARCO_15_820551194-16 57 89.402658 hybrid +140_3-1 Q0 KILT_3959583-5 58 89.352458 hybrid +140_3-1 Q0 MARCO_38_1499809394-5 59 89.323709 hybrid +140_3-1 Q0 MARCO_17_543589328-4 60 89.292908 hybrid +140_3-1 Q0 KILT_1442062-3 61 89.284258 hybrid +140_3-1 Q0 MARCO_34_1754841682-3 62 89.275008 hybrid +140_3-1 Q0 KILT_24731872-2 63 89.271558 hybrid +140_3-1 Q0 MARCO_19_609025200-20 64 89.259258 hybrid +140_3-1 Q0 KILT_29210637-1 65 89.210108 hybrid +140_3-1 Q0 MARCO_10_1445973568-1 66 89.204058 hybrid +140_3-1 Q0 MARCO_25_227869196-5 67 89.176758 hybrid +140_3-1 Q0 MARCO_34_1754841682-4 68 89.167958 hybrid +140_3-1 Q0 MARCO_30_114166387-6 69 89.158408 hybrid +140_3-1 Q0 MARCO_47_1260114631-8 70 89.144008 hybrid +140_3-1 Q0 MARCO_48_849595266-3 71 89.141058 hybrid +140_3-1 Q0 MARCO_42_114765095-245 72 89.121258 hybrid +140_3-1 Q0 KILT_27088389-1 73 89.088758 hybrid +140_3-1 Q0 MARCO_00_1532081462-2 74 89.079808 hybrid +140_3-1 Q0 KILT_1442062-4 75 89.075558 hybrid +140_3-1 Q0 MARCO_01_1879724342-13 76 89.039858 hybrid +140_3-1 Q0 MARCO_53_848280024-6 77 89.038609 hybrid +140_3-1 Q0 KILT_36378064-7 78 89.018248 hybrid +140_3-1 Q0 MARCO_48_1870391675-5 79 89.014108 hybrid +140_3-1 Q0 MARCO_49_1449360966-2 80 89.003358 hybrid +140_3-1 Q0 MARCO_00_202034002-1 81 88.994158 hybrid +140_3-1 Q0 MARCO_24_1375511290-2 82 88.984159 hybrid +140_3-1 Q0 MARCO_17_4722768323-6 83 88.979208 hybrid +140_3-1 Q0 MARCO_09_355516610-2 84 88.972408 hybrid +140_3-1 Q0 MARCO_29_1413320804-2 85 88.969108 hybrid +140_3-1 Q0 KILT_1227091-8 86 88.967758 hybrid +140_3-1 Q0 MARCO_47_1377601934-9 87 88.966408 hybrid +140_3-1 Q0 KILT_45576555-84 88 88.959708 hybrid +140_3-1 Q0 MARCO_22_1362056654-156 89 88.954108 hybrid +140_3-1 Q0 MARCO_31_554152250-10 90 88.950508 hybrid +140_3-1 Q0 MARCO_54_574905051-7 91 88.937908 hybrid +140_3-1 Q0 KILT_9244533-1 92 88.935058 hybrid +140_3-1 Q0 MARCO_25_228567496-6 93 88.917658 hybrid +140_3-1 Q0 MARCO_17_4828987761-6 94 88.901508 hybrid +140_3-1 Q0 MARCO_16_3146698038-4 95 88.896508 hybrid +140_3-1 Q0 MARCO_47_1604463871-10 96 88.896447 hybrid +140_3-1 Q0 MARCO_30_1985040879-2 97 88.895658 hybrid +140_3-1 Q0 MARCO_16_3146698038-9 98 88.886758 hybrid +140_3-1 Q0 MARCO_41_1264195901-24 99 88.877958 hybrid +140_3-1 Q0 MARCO_35_32944392-1 100 88.876558 hybrid +140_3-3 Q0 MARCO_24_1718716761-3 1 92.239626 hybrid +140_3-3 Q0 MARCO_16_1680442149-37 2 90.357582 hybrid +140_3-3 Q0 MARCO_03_1119841711-2 3 90.157719 hybrid +140_3-3 Q0 MARCO_03_1119841711-4 4 90.157718 hybrid +140_3-3 Q0 MARCO_24_1718716761-4 5 90.141960 hybrid +140_3-3 Q0 KILT_1455571-2 6 89.748618 hybrid +140_3-3 Q0 MARCO_41_1449203424-19 7 89.709918 hybrid +140_3-3 Q0 MARCO_01_404587467-5 8 89.684118 hybrid +140_3-3 Q0 MARCO_50_1349326789-1 9 89.578818 hybrid +140_3-3 Q0 MARCO_37_533858651-1 10 89.575618 hybrid +140_3-3 Q0 MARCO_16_1680442149-32 11 89.470428 hybrid +140_3-3 Q0 MARCO_30_1079495440-5 12 89.456985 hybrid +140_3-3 Q0 MARCO_45_1439590880-1 13 89.425506 hybrid +140_3-3 Q0 MARCO_25_1105808639-6 14 89.405368 hybrid +140_3-3 Q0 MARCO_05_1363328058-1 15 89.361875 hybrid +140_3-3 Q0 MARCO_16_1680442149-5 16 89.187995 hybrid +140_3-3 Q0 MARCO_59_379371313-1 17 89.184097 hybrid +140_3-3 Q0 KILT_48393303-1 18 89.144419 hybrid +140_3-3 Q0 MARCO_16_1680442149-8 19 89.140136 hybrid +140_3-3 Q0 MARCO_13_129196314-28 20 89.139671 hybrid +140_3-3 Q0 KILT_52665128-4 21 89.127919 hybrid +140_3-3 Q0 MARCO_59_379371313-3 22 89.126663 hybrid +140_3-3 Q0 MARCO_16_4029279131-9 23 89.113968 hybrid +140_3-3 Q0 MARCO_16_1680442149-30 24 89.098220 hybrid +140_3-3 Q0 KILT_41339202-2 25 89.097168 hybrid +140_3-3 Q0 MARCO_24_1718716761-2 26 89.089027 hybrid +140_3-3 Q0 KILT_6481443-1 27 89.088768 hybrid +140_3-3 Q0 MARCO_10_145182020-2 28 89.088768 hybrid +140_3-3 Q0 MARCO_50_1668506736-18 29 89.077569 hybrid +140_3-3 Q0 KILT_905857-6 30 89.073218 hybrid +140_3-3 Q0 MARCO_18_830007945-10 31 89.070319 hybrid +140_3-3 Q0 KILT_42725077-7 32 89.055740 hybrid +140_3-3 Q0 KILT_41758870-4 33 89.042663 hybrid +140_3-3 Q0 KILT_12311661-5 34 89.040525 hybrid +140_3-3 Q0 MARCO_08_1642917401-42 35 88.999019 hybrid +140_3-3 Q0 MARCO_16_1680442149-7 36 88.987640 hybrid +140_3-3 Q0 MARCO_39_600507896-5 37 88.962394 hybrid +140_3-3 Q0 MARCO_30_1044368084-2 38 88.908821 hybrid +140_3-3 Q0 KILT_4414093-9 39 88.899368 hybrid +140_3-3 Q0 MARCO_18_1847768021-2 40 88.887918 hybrid +140_3-3 Q0 MARCO_16_1680442149-3 41 88.878578 hybrid +140_3-3 Q0 MARCO_30_1044368084-1 42 88.875778 hybrid +140_3-3 Q0 MARCO_17_1140841368-10 43 88.865068 hybrid +140_3-3 Q0 MARCO_08_28631017-4 44 88.815369 hybrid +140_3-3 Q0 MARCO_58_1735306367-1 45 88.809509 hybrid +140_3-3 Q0 MARCO_50_1409583712-5 46 88.807182 hybrid +140_3-3 Q0 MARCO_09_1804293393-47 47 88.806169 hybrid +140_3-3 Q0 MARCO_09_1806426198-31 48 88.806168 hybrid +140_3-3 Q0 MARCO_09_1807544135-34 49 88.806168 hybrid +140_3-3 Q0 MARCO_55_344195359-30 50 88.806167 hybrid +140_3-3 Q0 MARCO_55_346682052-31 51 88.806167 hybrid +140_3-3 Q0 MARCO_55_349865254-30 52 88.806166 hybrid +140_3-3 Q0 MARCO_55_352467300-33 53 88.806166 hybrid +140_3-3 Q0 MARCO_55_354904209-53 54 88.806165 hybrid +140_3-3 Q0 MARCO_55_359547556-39 55 88.806165 hybrid +140_3-3 Q0 MARCO_55_359846488-32 56 88.806164 hybrid +140_3-3 Q0 MARCO_55_366204369-26 57 88.806164 hybrid +140_3-3 Q0 MARCO_17_4234111809-22 58 88.804568 hybrid +140_3-3 Q0 KILT_23852998-4 59 88.765953 hybrid +140_3-3 Q0 KILT_53847802-3 60 88.748069 hybrid +140_3-3 Q0 MARCO_20_1740315606-132 61 88.742530 hybrid +140_3-3 Q0 MARCO_10_1444399136-1 62 88.730968 hybrid +140_3-3 Q0 KILT_1455571-1 63 88.715468 hybrid +140_3-3 Q0 MARCO_48_1525369314-5 64 88.711668 hybrid +140_3-3 Q0 MARCO_40_521826240-2 65 88.702118 hybrid +140_3-3 Q0 MARCO_24_1717116209-8 66 88.694137 hybrid +140_3-3 Q0 MARCO_21_1337388555-5 67 88.675219 hybrid +140_3-3 Q0 MARCO_50_2481434035-92 68 88.666869 hybrid +140_3-3 Q0 KILT_37157102-2 69 88.655914 hybrid +140_3-3 Q0 MARCO_16_2872672276-28 70 88.650856 hybrid +140_3-3 Q0 MARCO_16_1680442149-31 71 88.621383 hybrid +140_3-3 Q0 MARCO_39_1678716629-9 72 88.615318 hybrid +140_3-3 Q0 KILT_18508984-12 73 88.610919 hybrid +140_3-3 Q0 MARCO_55_909214516-97 74 88.607819 hybrid +140_3-3 Q0 MARCO_16_3146698038-12 75 88.607769 hybrid +140_3-3 Q0 MARCO_53_1051503556-1 76 88.583818 hybrid +140_3-3 Q0 MARCO_32_598533958-6 77 88.574234 hybrid +140_3-3 Q0 KILT_60378250-1 78 88.557269 hybrid +140_3-3 Q0 KILT_59692409-2 79 88.556018 hybrid +140_3-3 Q0 MARCO_41_1264195901-24 80 88.554318 hybrid +140_3-3 Q0 MARCO_52_1181039218-18 81 88.553535 hybrid +140_3-3 Q0 MARCO_50_1675783459-26 82 88.549393 hybrid +140_3-3 Q0 KILT_3013894-11 83 88.548268 hybrid +140_3-3 Q0 KILT_24833975-1 84 88.541610 hybrid +140_3-3 Q0 MARCO_17_1797243571-4 85 88.539154 hybrid +140_3-3 Q0 MARCO_50_2875232263-3 86 88.517718 hybrid +140_3-3 Q0 MARCO_55_1285550962-4 87 88.515296 hybrid +140_3-3 Q0 MARCO_04_783332913-21 88 88.509262 hybrid +140_3-3 Q0 MARCO_11_962246638-28 89 88.501218 hybrid +140_3-3 Q0 MARCO_29_1413346262-2 90 88.499269 hybrid +140_3-3 Q0 MARCO_35_46028876-1 91 88.496418 hybrid +140_3-3 Q0 MARCO_55_358607444-18 92 88.496418 hybrid +140_3-3 Q0 MARCO_17_1797216899-3 93 88.486656 hybrid +140_3-3 Q0 MARCO_06_1128173535-141 94 88.481826 hybrid +140_3-3 Q0 MARCO_01_975753143-88 95 88.481268 hybrid +140_3-3 Q0 MARCO_50_2336371252-43 96 88.474369 hybrid +140_3-3 Q0 MARCO_50_2115805805-8 97 88.465118 hybrid +140_3-3 Q0 MARCO_56_1312424712-3 98 88.457466 hybrid +140_3-3 Q0 MARCO_17_429991603-52 99 88.429306 hybrid +140_3-3 Q0 MARCO_06_1203287517-321 100 88.426536 hybrid +140_4-10 Q0 MARCO_37_1107517688-3 1 96.244008 hybrid +140_4-10 Q0 MARCO_37_1107517688-1 2 95.504458 hybrid +140_4-10 Q0 MARCO_17_2985927323-3 3 94.898960 hybrid +140_4-10 Q0 MARCO_20_1605557843-4 4 94.843112 hybrid +140_4-10 Q0 MARCO_37_1107517688-4 5 94.749759 hybrid +140_4-10 Q0 MARCO_37_1107517688-2 6 94.392359 hybrid +140_4-10 Q0 MARCO_30_1025297153-2 7 93.974142 hybrid +140_4-10 Q0 MARCO_20_1605557843-3 8 93.926912 hybrid +140_4-10 Q0 MARCO_17_2985927323-4 9 93.654658 hybrid +140_4-10 Q0 MARCO_51_38815629-2 10 92.579108 hybrid +140_4-10 Q0 MARCO_17_2985927323-7 11 92.567835 hybrid +140_4-10 Q0 MARCO_17_2985927323-9 12 92.567834 hybrid +140_4-10 Q0 MARCO_48_1525195976-1 13 92.485409 hybrid +140_4-10 Q0 MARCO_17_2985927323-1 14 92.372909 hybrid +140_4-10 Q0 MARCO_20_1605557843-1 15 92.234432 hybrid +140_4-10 Q0 MARCO_30_1048979554-4 16 92.201162 hybrid +140_4-10 Q0 MARCO_57_1935960136-19 17 92.190558 hybrid +140_4-10 Q0 MARCO_48_849543852-1 18 91.971958 hybrid +140_4-10 Q0 MARCO_05_1762379500-340 19 91.907871 hybrid +140_4-10 Q0 MARCO_20_1605557843-5 20 91.849441 hybrid +140_4-10 Q0 MARCO_11_904776446-3 21 91.629108 hybrid +140_4-10 Q0 MARCO_20_1605557843-6 22 91.544506 hybrid +140_4-10 Q0 MARCO_11_1562523903-2 23 91.390308 hybrid +140_4-10 Q0 MARCO_51_38815629-3 24 91.375709 hybrid +140_4-10 Q0 MARCO_12_7420345-4 25 91.285408 hybrid +140_4-10 Q0 KILT_13583474-1 26 91.259606 hybrid +140_4-10 Q0 KILT_4030485-5 27 91.119558 hybrid +140_4-10 Q0 KILT_12890526-11 28 91.109709 hybrid +140_4-10 Q0 MARCO_36_979659662-4 29 90.918959 hybrid +140_4-10 Q0 MARCO_29_1413265048-4 30 90.915208 hybrid +140_4-10 Q0 MARCO_11_723817460-3 31 90.914759 hybrid +140_4-10 Q0 MARCO_17_2985927323-6 32 90.887049 hybrid +140_4-10 Q0 KILT_4030485-4 33 90.838808 hybrid +140_4-10 Q0 KILT_4030485-1 34 90.725908 hybrid +140_4-10 Q0 KILT_4030485-3 35 90.691408 hybrid +140_4-10 Q0 MARCO_07_704518188-161 36 90.680509 hybrid +140_4-10 Q0 MARCO_24_1375511290-3 37 90.626458 hybrid +140_4-10 Q0 MARCO_13_1204561650-4 38 90.612958 hybrid +140_4-10 Q0 MARCO_22_1016868225-2 39 90.601601 hybrid +140_4-10 Q0 MARCO_19_654638400-10 40 90.567208 hybrid +140_4-10 Q0 MARCO_17_2985927323-5 41 90.542569 hybrid +140_4-10 Q0 MARCO_32_598293543-8 42 90.518314 hybrid +140_4-10 Q0 MARCO_50_1774816435-34 43 90.497108 hybrid +140_4-10 Q0 MARCO_32_1002744496-1 44 90.434709 hybrid +140_4-10 Q0 MARCO_41_1792252484-11 45 90.298308 hybrid +140_4-10 Q0 MARCO_41_1792252484-9 46 90.298307 hybrid +140_4-10 Q0 MARCO_51_38815629-1 47 90.269408 hybrid +140_4-10 Q0 MARCO_20_1605557843-2 48 90.259950 hybrid +140_4-10 Q0 MARCO_31_87355756-2 49 90.223358 hybrid +140_4-10 Q0 MARCO_37_1107482875-1 50 90.198858 hybrid +140_4-10 Q0 MARCO_03_450197128-2 51 90.142658 hybrid +140_4-10 Q0 MARCO_51_38815629-6 52 90.128408 hybrid +140_4-10 Q0 MARCO_24_1719707759-1 53 90.062975 hybrid +140_4-10 Q0 MARCO_19_654145760-28 54 90.001808 hybrid +140_4-10 Q0 MARCO_36_1004130531-3 55 89.991408 hybrid +140_4-10 Q0 MARCO_11_1562495073-3 56 89.954558 hybrid +140_4-10 Q0 MARCO_48_849543852-10 57 89.936308 hybrid +140_4-10 Q0 MARCO_57_1937405093-17 58 89.926258 hybrid +140_4-10 Q0 MARCO_00_358922652-6 59 89.881166 hybrid +140_4-10 Q0 MARCO_13_1204561650-1 60 89.861658 hybrid +140_4-10 Q0 MARCO_48_849543852-11 61 89.841358 hybrid +140_4-10 Q0 MARCO_11_904776446-1 62 89.827058 hybrid +140_4-10 Q0 MARCO_45_802527701-3 63 89.815059 hybrid +140_4-10 Q0 MARCO_05_1762379500-80 64 89.805173 hybrid +140_4-10 Q0 MARCO_48_849543852-9 65 89.735808 hybrid +140_4-10 Q0 MARCO_11_723809604-5 66 89.735358 hybrid +140_4-10 Q0 MARCO_11_1562523903-3 67 89.732059 hybrid +140_4-10 Q0 MARCO_18_798247652-1 68 89.719158 hybrid +140_4-10 Q0 MARCO_48_849543852-6 69 89.698558 hybrid +140_4-10 Q0 MARCO_48_849543852-15 70 89.685208 hybrid +140_4-10 Q0 MARCO_13_1204571746-1 71 89.677158 hybrid +140_4-10 Q0 KILT_13439573-5 72 89.672459 hybrid +140_4-10 Q0 MARCO_15_1458788650-1 73 89.631958 hybrid +140_4-10 Q0 MARCO_48_849543852-12 74 89.627209 hybrid +140_4-10 Q0 MARCO_48_1630480460-8 75 89.619658 hybrid +140_4-10 Q0 MARCO_30_407817046-6 76 89.597108 hybrid +140_4-10 Q0 MARCO_53_404698947-17 77 89.597107 hybrid +140_4-10 Q0 MARCO_48_849543852-2 78 89.496408 hybrid +140_4-10 Q0 MARCO_30_1029169387-9 79 89.484420 hybrid +140_4-10 Q0 MARCO_37_1107475220-2 80 89.432559 hybrid +140_4-10 Q0 MARCO_51_38815629-5 81 89.399858 hybrid +140_4-10 Q0 MARCO_17_1736077149-13 82 89.396782 hybrid +140_4-10 Q0 MARCO_57_1935960136-1 83 89.328408 hybrid +140_4-10 Q0 MARCO_32_597809340-7 84 89.303088 hybrid +140_4-10 Q0 MARCO_18_3483116847-2 85 89.275808 hybrid +140_4-10 Q0 MARCO_58_237288357-7 86 89.234108 hybrid +140_4-10 Q0 MARCO_13_1205680173-1 87 89.233908 hybrid +140_4-10 Q0 KILT_23242173-2 88 89.224358 hybrid +140_4-10 Q0 MARCO_16_3577155134-6 89 89.224358 hybrid +140_4-10 Q0 MARCO_30_427506360-1 90 89.216008 hybrid +140_4-10 Q0 MARCO_57_1935960136-15 91 89.214258 hybrid +140_4-10 Q0 MARCO_48_849543852-7 92 89.197309 hybrid +140_4-10 Q0 MARCO_57_1935960136-11 93 89.186108 hybrid +140_4-10 Q0 MARCO_57_1935960136-7 94 89.173508 hybrid +140_4-10 Q0 MARCO_36_1004130531-4 95 89.159232 hybrid +140_4-10 Q0 MARCO_57_1935960136-12 96 89.150308 hybrid +140_4-10 Q0 MARCO_57_1935960136-9 97 89.150308 hybrid +140_4-10 Q0 MARCO_31_87355756-4 98 89.127558 hybrid +140_4-10 Q0 MARCO_31_87359963-4 99 89.127558 hybrid +140_4-10 Q0 KILT_45228085-2 100 89.120958 hybrid +140_4-12 Q0 MARCO_37_1107517688-1 1 96.719617 hybrid +140_4-12 Q0 MARCO_37_1107517688-4 2 96.247017 hybrid +140_4-12 Q0 MARCO_37_1107517688-2 3 95.081617 hybrid +140_4-12 Q0 MARCO_37_1107517688-3 4 95.057617 hybrid +140_4-12 Q0 MARCO_17_2985927323-1 5 93.660658 hybrid +140_4-12 Q0 MARCO_17_2985927323-3 6 92.459693 hybrid +140_4-12 Q0 KILT_4030485-4 7 92.421367 hybrid +140_4-12 Q0 MARCO_20_1605557843-4 8 91.701511 hybrid +140_4-12 Q0 MARCO_29_710618272-1 9 91.660217 hybrid +140_4-12 Q0 MARCO_37_1107482875-1 10 91.524767 hybrid +140_4-12 Q0 MARCO_57_1935960136-19 11 91.517367 hybrid +140_4-12 Q0 MARCO_32_1002744496-1 12 91.386017 hybrid +140_4-12 Q0 MARCO_20_1605557843-3 13 91.348883 hybrid +140_4-12 Q0 MARCO_11_1562523903-2 14 91.231017 hybrid +140_4-12 Q0 MARCO_17_2985927323-7 15 91.225504 hybrid +140_4-12 Q0 MARCO_17_2985927323-9 16 91.225503 hybrid +140_4-12 Q0 MARCO_48_849543852-1 17 90.804167 hybrid +140_4-12 Q0 MARCO_48_849543852-10 18 90.714667 hybrid +140_4-12 Q0 MARCO_57_1935960136-1 19 90.683167 hybrid +140_4-12 Q0 MARCO_11_723809604-5 20 90.661467 hybrid +140_4-12 Q0 MARCO_37_1107475220-2 21 90.648367 hybrid +140_4-12 Q0 MARCO_48_1525195976-1 22 90.480467 hybrid +140_4-12 Q0 MARCO_51_38815629-2 23 90.431467 hybrid +140_4-12 Q0 MARCO_48_849543852-2 24 90.399817 hybrid +140_4-12 Q0 MARCO_48_849543852-9 25 90.318917 hybrid +140_4-12 Q0 MARCO_32_1002710668-2 26 90.247967 hybrid +140_4-12 Q0 MARCO_48_849543852-6 27 90.232617 hybrid +140_4-12 Q0 MARCO_48_849543852-15 28 90.209667 hybrid +140_4-12 Q0 MARCO_30_1025297153-2 29 90.185052 hybrid +140_4-12 Q0 KILT_4030485-5 30 90.152267 hybrid +140_4-12 Q0 MARCO_48_849543852-11 31 90.082217 hybrid +140_4-12 Q0 MARCO_17_2985927323-4 32 90.053264 hybrid +140_4-12 Q0 MARCO_11_1562523903-3 33 90.004567 hybrid +140_4-12 Q0 MARCO_51_38815629-1 34 89.962767 hybrid +140_4-12 Q0 MARCO_32_1002744496-3 35 89.895367 hybrid +140_4-12 Q0 MARCO_50_1774816435-34 36 89.857967 hybrid +140_4-12 Q0 MARCO_48_1525110936-1 37 89.802317 hybrid +140_4-12 Q0 MARCO_07_704518188-161 38 89.782367 hybrid +140_4-12 Q0 MARCO_48_849543852-12 39 89.668517 hybrid +140_4-12 Q0 MARCO_48_849543852-7 40 89.634117 hybrid +140_4-12 Q0 MARCO_17_2985927323-6 41 89.558848 hybrid +140_4-12 Q0 MARCO_12_7420345-4 42 89.523617 hybrid +140_4-12 Q0 MARCO_18_3483116847-2 43 89.488867 hybrid +140_4-12 Q0 MARCO_48_849543852-8 44 89.475567 hybrid +140_4-12 Q0 MARCO_24_1375511290-3 45 89.472167 hybrid +140_4-12 Q0 MARCO_13_1205680173-1 46 89.365267 hybrid +140_4-12 Q0 KILT_4030485-1 47 89.338617 hybrid +140_4-12 Q0 MARCO_11_723817460-3 48 89.331417 hybrid +140_4-12 Q0 MARCO_35_451972693-1 49 89.321167 hybrid +140_4-12 Q0 MARCO_37_1107494680-3 50 89.318417 hybrid +140_4-12 Q0 MARCO_19_654638400-10 51 89.071467 hybrid +140_4-12 Q0 MARCO_12_7420345-1 52 89.058517 hybrid +140_4-12 Q0 MARCO_11_715729617-4 53 89.011267 hybrid +140_4-12 Q0 MARCO_17_2985927323-2 54 88.975099 hybrid +140_4-12 Q0 MARCO_20_99977098-1 55 88.965117 hybrid +140_4-12 Q0 MARCO_30_1048979554-4 56 88.953509 hybrid +140_4-12 Q0 MARCO_40_1002073335-1 57 88.942817 hybrid +140_4-12 Q0 MARCO_48_1630480460-8 58 88.877467 hybrid +140_4-12 Q0 MARCO_16_3577155134-6 59 88.849067 hybrid +140_4-12 Q0 MARCO_23_1656841526-1 60 88.843817 hybrid +140_4-12 Q0 MARCO_32_1002710668-3 61 88.840017 hybrid +140_4-12 Q0 MARCO_03_1426671976-1 62 88.839317 hybrid +140_4-12 Q0 MARCO_48_849543852-14 63 88.831317 hybrid +140_4-12 Q0 MARCO_06_486512416-7 64 88.806017 hybrid +140_4-12 Q0 MARCO_45_802527701-4 65 88.784367 hybrid +140_4-12 Q0 MARCO_24_396360485-6 66 88.744067 hybrid +140_4-12 Q0 MARCO_03_450197128-2 67 88.739767 hybrid +140_4-12 Q0 MARCO_29_1413346262-3 68 88.730917 hybrid +140_4-12 Q0 MARCO_08_255202802-5 69 88.707267 hybrid +140_4-12 Q0 MARCO_48_849543852-4 70 88.639017 hybrid +140_4-12 Q0 MARCO_54_633088310-2 71 88.616267 hybrid +140_4-12 Q0 MARCO_49_105945882-9 72 88.606417 hybrid +140_4-12 Q0 MARCO_13_1205711706-6 73 88.593167 hybrid +140_4-12 Q0 MARCO_04_531101151-1 74 88.592617 hybrid +140_4-12 Q0 MARCO_04_531078427-2 75 88.585267 hybrid +140_4-12 Q0 KILT_13583474-1 76 88.578256 hybrid +140_4-12 Q0 MARCO_47_486498315-19 77 88.532967 hybrid +140_4-12 Q0 KILT_1325731-3 78 88.529117 hybrid +140_4-12 Q0 KILT_344458-5 79 88.523363 hybrid +140_4-12 Q0 MARCO_31_87355756-4 80 88.515467 hybrid +140_4-12 Q0 MARCO_31_87359963-4 81 88.515467 hybrid +140_4-12 Q0 MARCO_17_2985927323-5 82 88.461847 hybrid +140_4-12 Q0 MARCO_32_1002715402-1 83 88.457067 hybrid +140_4-12 Q0 MARCO_59_391549261-6 84 88.445567 hybrid +140_4-12 Q0 MARCO_59_190619415-1 85 88.438917 hybrid +140_4-12 Q0 KILT_56060629-1 86 88.382567 hybrid +140_4-12 Q0 MARCO_18_798247652-1 87 88.382566 hybrid +140_4-12 Q0 MARCO_48_849568900-1 88 88.380817 hybrid +140_4-12 Q0 MARCO_50_2628936301-15 89 88.358967 hybrid +140_4-12 Q0 MARCO_09_976448303-9 90 88.357667 hybrid +140_4-12 Q0 MARCO_05_1762379500-340 91 88.337217 hybrid +140_4-12 Q0 MARCO_51_38815629-6 92 88.334117 hybrid +140_4-12 Q0 KILT_45094210-1 93 88.320017 hybrid +140_4-12 Q0 MARCO_41_749100887-5 94 88.316567 hybrid +140_4-12 Q0 MARCO_20_1605557843-6 95 88.314658 hybrid +140_4-12 Q0 MARCO_29_1413265048-4 96 88.311467 hybrid +140_4-12 Q0 MARCO_00_250834929-4 97 88.309567 hybrid +140_4-12 Q0 MARCO_14_1267956680-31 98 88.308667 hybrid +140_4-12 Q0 MARCO_20_1605557843-1 99 88.296999 hybrid +140_4-12 Q0 MARCO_30_427506360-1 100 88.290667 hybrid +140_4-14 Q0 MARCO_20_1605557843-3 1 88.083914 hybrid +140_4-14 Q0 MARCO_20_1605557843-1 2 87.690588 hybrid +140_4-14 Q0 MARCO_30_1025297153-2 3 87.448405 hybrid +140_4-14 Q0 MARCO_20_1605557843-4 4 87.389496 hybrid +140_4-14 Q0 MARCO_17_2985927323-1 5 87.054111 hybrid +140_4-14 Q0 MARCO_32_1002744496-1 6 86.954772 hybrid +140_4-14 Q0 MARCO_17_2985927323-7 7 86.775064 hybrid +140_4-14 Q0 MARCO_17_2985927323-9 8 86.775063 hybrid +140_4-14 Q0 MARCO_48_1525195976-1 9 86.642022 hybrid +140_4-14 Q0 MARCO_37_1107517688-1 10 86.622422 hybrid +140_4-14 Q0 MARCO_15_1458788650-1 11 86.620479 hybrid +140_4-14 Q0 MARCO_37_1107517688-4 12 86.580922 hybrid +140_4-14 Q0 MARCO_17_2985927323-4 13 86.498145 hybrid +140_4-14 Q0 MARCO_37_1107482875-1 14 86.430822 hybrid +140_4-14 Q0 MARCO_51_38815629-5 15 86.402372 hybrid +140_4-14 Q0 MARCO_17_2985927323-3 16 86.386559 hybrid +140_4-14 Q0 MARCO_51_38815629-2 17 86.380622 hybrid +140_4-14 Q0 MARCO_48_849543852-10 18 86.347822 hybrid +140_4-14 Q0 MARCO_20_1605557843-6 19 86.331288 hybrid +140_4-14 Q0 MARCO_48_849543852-7 20 86.251972 hybrid +140_4-14 Q0 MARCO_48_849543852-11 21 86.185422 hybrid +140_4-14 Q0 MARCO_17_2985927323-6 22 86.148896 hybrid +140_4-14 Q0 MARCO_39_1238313519-1 23 86.093072 hybrid +140_4-14 Q0 MARCO_20_1605557843-5 24 86.051404 hybrid +140_4-14 Q0 MARCO_51_38815629-6 25 86.000722 hybrid +140_4-14 Q0 MARCO_51_38815629-1 26 85.968972 hybrid +140_4-14 Q0 MARCO_48_849543852-1 27 85.957672 hybrid +140_4-14 Q0 MARCO_37_1107517688-2 28 85.899622 hybrid +140_4-14 Q0 MARCO_51_38815629-3 29 85.899621 hybrid +140_4-14 Q0 MARCO_15_1458788650-2 30 85.888843 hybrid +140_4-14 Q0 MARCO_13_1204561650-1 31 85.829572 hybrid +140_4-14 Q0 MARCO_17_2985927323-5 32 85.789519 hybrid +140_4-14 Q0 MARCO_48_849543852-8 33 85.752572 hybrid +140_4-14 Q0 MARCO_37_1107517688-3 34 85.743922 hybrid +140_4-14 Q0 KILT_4030485-5 35 85.722922 hybrid +140_4-14 Q0 MARCO_29_710618272-1 36 85.700022 hybrid +140_4-14 Q0 MARCO_57_1935960136-11 37 85.680972 hybrid +140_4-14 Q0 MARCO_57_1935960136-12 38 85.656222 hybrid +140_4-14 Q0 MARCO_57_1935960136-9 39 85.656221 hybrid +140_4-14 Q0 MARCO_48_849543852-9 40 85.651672 hybrid +140_4-14 Q0 MARCO_57_1935960136-10 41 85.631672 hybrid +140_4-14 Q0 MARCO_57_1935960136-15 42 85.631671 hybrid +140_4-14 Q0 MARCO_57_1935960136-5 43 85.631671 hybrid +140_4-14 Q0 MARCO_57_1935960136-7 44 85.631670 hybrid +140_4-14 Q0 MARCO_11_723809604-5 45 85.580972 hybrid +140_4-14 Q0 MARCO_48_849543852-12 46 85.580971 hybrid +140_4-14 Q0 KILT_4030485-4 47 85.565072 hybrid +140_4-14 Q0 MARCO_41_579307081-1 48 85.565071 hybrid +140_4-14 Q0 MARCO_37_1107494680-3 49 85.544722 hybrid +140_4-14 Q0 MARCO_57_1935960136-3 50 85.541522 hybrid +140_4-14 Q0 KILT_4030485-1 51 85.541122 hybrid +140_4-14 Q0 KILT_4030485-6 52 85.522322 hybrid +140_4-14 Q0 MARCO_48_849543852-6 53 85.517872 hybrid +140_4-14 Q0 MARCO_51_38815629-7 54 85.486922 hybrid +140_4-14 Q0 MARCO_28_1087396690-4 55 85.474172 hybrid +140_4-14 Q0 MARCO_13_1204561650-4 56 85.466722 hybrid +140_4-14 Q0 MARCO_19_654638400-10 57 85.448472 hybrid +140_4-14 Q0 MARCO_37_1107475220-2 58 85.430322 hybrid +140_4-14 Q0 MARCO_50_1774816435-34 59 85.413822 hybrid +140_4-14 Q0 MARCO_48_849543852-15 60 85.412322 hybrid +140_4-14 Q0 MARCO_48_849543852-2 61 85.412322 hybrid +140_4-14 Q0 MARCO_57_1935960136-1 62 85.412321 hybrid +140_4-14 Q0 MARCO_57_1935960136-4 63 85.412321 hybrid +140_4-14 Q0 MARCO_51_38815629-4 64 85.384272 hybrid +140_4-14 Q0 MARCO_05_1762379500-340 65 85.367779 hybrid +140_4-14 Q0 MARCO_32_1002744496-3 66 85.349922 hybrid +140_4-14 Q0 MARCO_32_1087103060-2 67 85.341572 hybrid +140_4-14 Q0 MARCO_03_1426671976-3 68 85.304422 hybrid +140_4-14 Q0 MARCO_48_849543852-14 69 85.304421 hybrid +140_4-14 Q0 MARCO_57_1935960136-13 70 85.304421 hybrid +140_4-14 Q0 KILT_12890526-11 71 85.283072 hybrid +140_4-14 Q0 MARCO_17_3305904780-10 72 85.283072 hybrid +140_4-14 Q0 MARCO_31_87355756-2 73 85.283071 hybrid +140_4-14 Q0 MARCO_57_1935960136-6 74 85.283071 hybrid +140_4-14 Q0 MARCO_57_1935960136-8 75 85.283070 hybrid +140_4-14 Q0 MARCO_57_1935960136-14 76 85.261822 hybrid +140_4-14 Q0 MARCO_11_1562523903-2 77 85.240822 hybrid +140_4-14 Q0 MARCO_12_7420345-4 78 85.240821 hybrid +140_4-14 Q0 MARCO_40_1002073335-1 79 85.229872 hybrid +140_4-14 Q0 MARCO_13_1204571746-1 80 85.219972 hybrid +140_4-14 Q0 MARCO_29_1340014164-4 81 85.219972 hybrid +140_4-14 Q0 MARCO_35_451972693-1 82 85.214822 hybrid +140_4-14 Q0 MARCO_36_1004130531-3 83 85.196922 hybrid +140_4-14 Q0 MARCO_13_1204561650-3 84 85.180822 hybrid +140_4-14 Q0 MARCO_57_1935960136-16 85 85.178822 hybrid +140_4-14 Q0 MARCO_32_1087103060-1 86 85.174922 hybrid +140_4-14 Q0 MARCO_30_1173301230-2 87 85.081722 hybrid +140_4-14 Q0 MARCO_24_1810514576-3 88 85.055722 hybrid +140_4-14 Q0 MARCO_39_1238313519-3 89 85.055721 hybrid +140_4-14 Q0 MARCO_48_849543852-5 90 85.055721 hybrid +140_4-14 Q0 MARCO_32_1002710668-2 91 85.050172 hybrid +140_4-14 Q0 MARCO_20_217471662-2 92 85.030022 hybrid +140_4-14 Q0 MARCO_52_1581410896-1 93 85.023472 hybrid +140_4-14 Q0 KILT_4030485-3 94 85.004622 hybrid +140_4-14 Q0 MARCO_07_704518188-161 95 85.004622 hybrid +140_4-14 Q0 MARCO_13_1204703859-4 96 85.004621 hybrid +140_4-14 Q0 MARCO_40_1231437755-5 97 85.004472 hybrid +140_4-14 Q0 MARCO_40_991082351-1 98 85.001822 hybrid +140_4-14 Q0 MARCO_32_598293543-8 99 84.996917 hybrid +140_4-14 Q0 MARCO_00_250834929-4 100 84.980172 hybrid +140_4-16 Q0 MARCO_17_1736077149-13 1 96.574175 hybrid +140_4-16 Q0 KILT_642012-12 2 94.608560 hybrid +140_4-16 Q0 MARCO_17_2985927323-1 3 93.802863 hybrid +140_4-16 Q0 MARCO_17_2985927323-4 4 93.512844 hybrid +140_4-16 Q0 MARCO_20_1605557843-3 5 93.318525 hybrid +140_4-16 Q0 MARCO_30_1025297153-2 6 93.272062 hybrid +140_4-16 Q0 MARCO_18_2882627036-2 7 93.096959 hybrid +140_4-16 Q0 MARCO_05_1908155114-294 8 92.899010 hybrid +140_4-16 Q0 MARCO_17_2985927323-3 9 92.505416 hybrid +140_4-16 Q0 MARCO_37_1107482875-1 10 92.299059 hybrid +140_4-16 Q0 MARCO_37_1107517688-4 11 92.051559 hybrid +140_4-16 Q0 MARCO_20_1605557843-5 12 91.960159 hybrid +140_4-16 Q0 MARCO_20_1605557843-1 13 91.854363 hybrid +140_4-16 Q0 MARCO_37_1107517688-2 14 91.831510 hybrid +140_4-16 Q0 MARCO_37_1107517688-3 15 91.761709 hybrid +140_4-16 Q0 MARCO_11_723809604-5 16 91.694610 hybrid +140_4-16 Q0 MARCO_50_1491472222-6 17 91.573910 hybrid +140_4-16 Q0 MARCO_07_1207611158-1 18 91.560459 hybrid +140_4-16 Q0 MARCO_20_1713928724-5 19 91.444809 hybrid +140_4-16 Q0 MARCO_11_1562523903-2 20 91.440609 hybrid +140_4-16 Q0 KILT_12890526-11 21 91.386109 hybrid +140_4-16 Q0 MARCO_51_38815629-1 22 91.381410 hybrid +140_4-16 Q0 MARCO_06_1573731078-359 23 91.375409 hybrid +140_4-16 Q0 MARCO_11_326412344-233 24 91.350209 hybrid +140_4-16 Q0 MARCO_17_2985927323-5 25 91.249413 hybrid +140_4-16 Q0 MARCO_57_1935960136-1 26 91.240109 hybrid +140_4-16 Q0 MARCO_29_1455516285-2 27 91.222309 hybrid +140_4-16 Q0 KILT_4030485-5 28 91.215559 hybrid +140_4-16 Q0 KILT_4030485-4 29 91.186959 hybrid +140_4-16 Q0 MARCO_29_710618272-1 30 91.153259 hybrid +140_4-16 Q0 KILT_317450-5 31 91.152198 hybrid +140_4-16 Q0 MARCO_57_1886877689-9 32 91.143459 hybrid +140_4-16 Q0 MARCO_45_116980330-4 33 91.140510 hybrid +140_4-16 Q0 MARCO_48_849543852-10 34 91.109960 hybrid +140_4-16 Q0 MARCO_51_38815629-2 35 91.105709 hybrid +140_4-16 Q0 MARCO_19_654638400-10 36 91.065809 hybrid +140_4-16 Q0 MARCO_45_630104966-2 37 91.022209 hybrid +140_4-16 Q0 MARCO_04_12113655-4 38 90.978509 hybrid +140_4-16 Q0 MARCO_18_409195426-10 39 90.969509 hybrid +140_4-16 Q0 MARCO_18_409111507-10 40 90.955009 hybrid +140_4-16 Q0 MARCO_31_1695105567-3 41 90.946259 hybrid +140_4-16 Q0 MARCO_06_1059528231-34 42 90.946115 hybrid +140_4-16 Q0 MARCO_20_1605557843-6 43 90.923306 hybrid +140_4-16 Q0 MARCO_31_87355756-2 44 90.921060 hybrid +140_4-16 Q0 KILT_358540-5 45 90.916009 hybrid +140_4-16 Q0 MARCO_28_1087396690-4 46 90.906559 hybrid +140_4-16 Q0 MARCO_16_4053119654-1 47 90.902610 hybrid +140_4-16 Q0 MARCO_04_17417286-5 48 90.832310 hybrid +140_4-16 Q0 MARCO_13_1204561650-1 49 90.815809 hybrid +140_4-16 Q0 MARCO_20_1713936221-10 50 90.814110 hybrid +140_4-16 Q0 MARCO_29_1455516285-3 51 90.797659 hybrid +140_4-16 Q0 MARCO_18_409195426-8 52 90.793010 hybrid +140_4-16 Q0 MARCO_32_1002744496-1 53 90.790759 hybrid +140_4-16 Q0 KILT_317450-3 54 90.786433 hybrid +140_4-16 Q0 MARCO_57_1886877689-3 55 90.778259 hybrid +140_4-16 Q0 KILT_4030485-6 56 90.775310 hybrid +140_4-16 Q0 MARCO_13_1204561650-4 57 90.768259 hybrid +140_4-16 Q0 KILT_4030485-1 58 90.725909 hybrid +140_4-16 Q0 MARCO_57_1886877689-1 59 90.722559 hybrid +140_4-16 Q0 MARCO_48_849543852-1 60 90.721410 hybrid +140_4-16 Q0 MARCO_18_409111507-8 61 90.714409 hybrid +140_4-16 Q0 KILT_54116161-1 62 90.711269 hybrid +140_4-16 Q0 MARCO_21_1652125388-5 63 90.698859 hybrid +140_4-16 Q0 MARCO_30_1048979554-4 64 90.638628 hybrid +140_4-16 Q0 MARCO_53_404698947-17 65 90.616209 hybrid +140_4-16 Q0 MARCO_20_1713936221-6 66 90.602610 hybrid +140_4-16 Q0 MARCO_20_1714067724-3 67 90.601660 hybrid +140_4-16 Q0 KILT_12890526-8 68 90.596359 hybrid +140_4-16 Q0 MARCO_45_630371732-2 69 90.593209 hybrid +140_4-16 Q0 KILT_30529-46 70 90.562010 hybrid +140_4-16 Q0 MARCO_24_1209348771-1 71 90.552759 hybrid +140_4-16 Q0 MARCO_13_1204571746-1 72 90.551609 hybrid +140_4-16 Q0 MARCO_24_1810514576-3 73 90.521659 hybrid +140_4-16 Q0 MARCO_11_326412344-331 74 90.508960 hybrid +140_4-16 Q0 MARCO_48_1339744271-4 75 90.489510 hybrid +140_4-16 Q0 MARCO_19_654638400-8 76 90.477710 hybrid +140_4-16 Q0 KILT_20216098-1 77 90.472010 hybrid +140_4-16 Q0 MARCO_26_821380723-13 78 90.470809 hybrid +140_4-16 Q0 MARCO_39_1268454937-17 79 90.456559 hybrid +140_4-16 Q0 MARCO_55_46415069-2 80 90.452159 hybrid +140_4-16 Q0 MARCO_30_115340187-1 81 90.440959 hybrid +140_4-16 Q0 MARCO_36_1003973875-14 82 90.425809 hybrid +140_4-16 Q0 MARCO_42_465921789-32 83 90.422509 hybrid +140_4-16 Q0 MARCO_24_1209348771-14 84 90.418010 hybrid +140_4-16 Q0 MARCO_29_1455516285-5 85 90.402060 hybrid +140_4-16 Q0 MARCO_41_1848011796-1 86 90.396647 hybrid +140_4-16 Q0 MARCO_30_407817046-6 87 90.395009 hybrid +140_4-16 Q0 MARCO_06_149943940-20 88 90.386359 hybrid +140_4-16 Q0 MARCO_18_409111507-12 89 90.378459 hybrid +140_4-16 Q0 MARCO_18_409195426-12 90 90.378458 hybrid +140_4-16 Q0 MARCO_55_80577459-3 91 90.355659 hybrid +140_4-16 Q0 MARCO_27_1785005494-1 92 90.345360 hybrid +140_4-16 Q0 MARCO_24_1810518323-3 93 90.344859 hybrid +140_4-16 Q0 MARCO_36_1010386136-3 94 90.344390 hybrid +140_4-16 Q0 MARCO_29_1455516285-8 95 90.325609 hybrid +140_4-16 Q0 MARCO_36_1009233445-8 96 90.325226 hybrid +140_4-16 Q0 MARCO_57_1886877689-2 97 90.322160 hybrid +140_4-16 Q0 MARCO_55_102982259-5 98 90.306646 hybrid +140_4-16 Q0 KILT_4030485-3 99 90.301509 hybrid +140_4-16 Q0 MARCO_11_1562495073-3 100 90.300409 hybrid +140_4-2 Q0 MARCO_30_1029169387-9 1 88.834876 hybrid +140_4-2 Q0 MARCO_48_1535513660-18 2 88.507514 hybrid +140_4-2 Q0 MARCO_52_1181039218-4 3 88.250747 hybrid +140_4-2 Q0 MARCO_32_597834653-1 4 88.249778 hybrid +140_4-2 Q0 KILT_1842316-5 5 88.160937 hybrid +140_4-2 Q0 MARCO_24_1719707759-1 6 88.154474 hybrid +140_4-2 Q0 MARCO_32_597834653-4 7 88.067352 hybrid +140_4-2 Q0 MARCO_30_1025297153-1 8 88.015190 hybrid +140_4-2 Q0 MARCO_24_1719707759-8 9 88.006442 hybrid +140_4-2 Q0 KILT_13583474-1 10 87.952987 hybrid +140_4-2 Q0 MARCO_28_987485845-2 11 87.922285 hybrid +140_4-2 Q0 MARCO_30_1025297153-4 12 87.817703 hybrid +140_4-2 Q0 MARCO_24_1719707759-5 13 87.815032 hybrid +140_4-2 Q0 MARCO_06_200120676-1 14 87.745117 hybrid +140_4-2 Q0 MARCO_36_1004130531-4 15 87.704895 hybrid +140_4-2 Q0 MARCO_09_877077911-17 16 87.686317 hybrid +140_4-2 Q0 MARCO_50_890815532-3 17 87.666917 hybrid +140_4-2 Q0 MARCO_22_1016597411-1 18 87.657102 hybrid +140_4-2 Q0 MARCO_32_597809340-7 19 87.655853 hybrid +140_4-2 Q0 MARCO_24_1719707759-2 20 87.639793 hybrid +140_4-2 Q0 MARCO_05_594613048-47 21 87.526516 hybrid +140_4-2 Q0 MARCO_24_1719707759-3 22 87.497848 hybrid +140_4-2 Q0 MARCO_11_758826070-8 23 87.479442 hybrid +140_4-2 Q0 MARCO_00_358922652-6 24 87.456222 hybrid +140_4-2 Q0 MARCO_04_1016596058-2 25 87.452517 hybrid +140_4-2 Q0 MARCO_11_715682058-4 26 87.435348 hybrid +140_4-2 Q0 MARCO_30_1025297153-7 27 87.432594 hybrid +140_4-2 Q0 MARCO_11_715682058-1 28 87.431190 hybrid +140_4-2 Q0 MARCO_24_1717513197-7 29 87.403617 hybrid +140_4-2 Q0 KILT_29662850-5 30 87.387802 hybrid +140_4-2 Q0 MARCO_32_597834653-2 31 87.371536 hybrid +140_4-2 Q0 MARCO_30_823498884-2 32 87.360001 hybrid +140_4-2 Q0 MARCO_49_1858156120-6 33 87.349567 hybrid +140_4-2 Q0 MARCO_57_835996500-4 34 87.348817 hybrid +140_4-2 Q0 MARCO_03_446448156-1 35 87.343177 hybrid +140_4-2 Q0 MARCO_29_1413290396-3 36 87.340217 hybrid +140_4-2 Q0 MARCO_17_3100161904-5 37 87.326560 hybrid +140_4-2 Q0 MARCO_36_1004130531-1 38 87.320693 hybrid +140_4-2 Q0 MARCO_07_818580910-14 39 87.318017 hybrid +140_4-2 Q0 KILT_1842316-6 40 87.306526 hybrid +140_4-2 Q0 MARCO_30_823482957-3 41 87.300815 hybrid +140_4-2 Q0 KILT_44268939-1 42 87.273307 hybrid +140_4-2 Q0 MARCO_19_153356567-11 43 87.272117 hybrid +140_4-2 Q0 MARCO_31_426612870-40 44 87.237517 hybrid +140_4-2 Q0 MARCO_51_903670425-2 45 87.217071 hybrid +140_4-2 Q0 MARCO_30_1048259710-5 46 87.210624 hybrid +140_4-2 Q0 MARCO_11_715682058-3 47 87.207992 hybrid +140_4-2 Q0 MARCO_28_813949376-3 48 87.198028 hybrid +140_4-2 Q0 MARCO_03_448409881-6 49 87.197784 hybrid +140_4-2 Q0 MARCO_11_758826070-9 50 87.191856 hybrid +140_4-2 Q0 MARCO_17_3134021343-38 51 87.190063 hybrid +140_4-2 Q0 MARCO_24_1848199923-10 52 87.183467 hybrid +140_4-2 Q0 MARCO_08_254744271-6 53 87.180667 hybrid +140_4-2 Q0 MARCO_52_1181039218-2 54 87.176671 hybrid +140_4-2 Q0 MARCO_11_904812095-3 55 87.170867 hybrid +140_4-2 Q0 MARCO_25_227987521-59 56 87.153417 hybrid +140_4-2 Q0 MARCO_08_255872913-1 57 87.150167 hybrid +140_4-2 Q0 MARCO_23_1522526684-42 58 87.145167 hybrid +140_4-2 Q0 MARCO_53_848280024-1 59 87.140417 hybrid +140_4-2 Q0 MARCO_30_823506076-6 60 87.128498 hybrid +140_4-2 Q0 MARCO_03_803632629-1 61 87.124517 hybrid +140_4-2 Q0 MARCO_41_1494750574-31 62 87.122667 hybrid +140_4-2 Q0 MARCO_02_1459424440-20 63 87.119967 hybrid +140_4-2 Q0 MARCO_51_903670425-7 64 87.118568 hybrid +140_4-2 Q0 MARCO_39_1263326923-107 65 87.105217 hybrid +140_4-2 Q0 KILT_12683744-5 66 87.100852 hybrid +140_4-2 Q0 MARCO_24_1717513197-8 67 87.100631 hybrid +140_4-2 Q0 MARCO_19_153356567-9 68 87.100509 hybrid +140_4-2 Q0 MARCO_39_620476129-24 69 87.098327 hybrid +140_4-2 Q0 MARCO_25_228503185-2 70 87.094467 hybrid +140_4-2 Q0 MARCO_25_227987521-78 71 87.093567 hybrid +140_4-2 Q0 MARCO_00_358922652-1 72 87.091552 hybrid +140_4-2 Q0 KILT_1870519-4 73 87.090301 hybrid +140_4-2 Q0 MARCO_32_597809340-1 74 87.087051 hybrid +140_4-2 Q0 MARCO_19_1470024508-8 75 87.080703 hybrid +140_4-2 Q0 KILT_40602423-5 76 87.075286 hybrid +140_4-2 Q0 MARCO_06_653370553-5 77 87.072567 hybrid +140_4-2 Q0 MARCO_11_758826070-10 78 87.067886 hybrid +140_4-2 Q0 MARCO_19_153961264-3 79 87.055809 hybrid +140_4-2 Q0 MARCO_48_831107990-3 80 87.053367 hybrid +140_4-2 Q0 MARCO_32_597809340-6 81 87.043907 hybrid +140_4-2 Q0 MARCO_32_597809340-2 82 87.041893 hybrid +140_4-2 Q0 MARCO_01_1006240201-100 83 87.026867 hybrid +140_4-2 Q0 MARCO_08_254900524-1 84 87.026866 hybrid +140_4-2 Q0 MARCO_11_715869510-1 85 87.023239 hybrid +140_4-2 Q0 MARCO_19_153356567-8 86 87.020507 hybrid +140_4-2 Q0 MARCO_22_1016597411-2 87 87.018951 hybrid +140_4-2 Q0 MARCO_32_597809340-4 88 87.017799 hybrid +140_4-2 Q0 MARCO_30_1048979554-3 89 87.017036 hybrid +140_4-2 Q0 MARCO_28_309794017-7 90 87.012741 hybrid +140_4-2 Q0 MARCO_52_1181039218-13 91 87.004592 hybrid +140_4-2 Q0 MARCO_02_1559411091-13 92 86.998467 hybrid +140_4-2 Q0 KILT_51903763-2 93 86.991867 hybrid +140_4-2 Q0 MARCO_39_1263326923-73 94 86.989667 hybrid +140_4-2 Q0 MARCO_19_153961264-1 95 86.989044 hybrid +140_4-2 Q0 MARCO_25_227987521-47 96 86.989017 hybrid +140_4-2 Q0 MARCO_11_716304225-15 97 86.988433 hybrid +140_4-2 Q0 MARCO_11_758826070-12 98 86.982887 hybrid +140_4-2 Q0 MARCO_11_716547883-1 99 86.975433 hybrid +140_4-2 Q0 MARCO_56_1474122689-2 100 86.956704 hybrid +140_4-4 Q0 MARCO_56_874320135-2 1 90.351842 hybrid +140_4-4 Q0 MARCO_30_1025211734-1 2 90.178868 hybrid +140_4-4 Q0 MARCO_48_1630706195-2 3 88.953800 hybrid +140_4-4 Q0 MARCO_19_2582932327-1 4 88.904145 hybrid +140_4-4 Q0 MARCO_30_1025297153-3 5 88.737760 hybrid +140_4-4 Q0 MARCO_50_1732246764-40 6 88.667650 hybrid +140_4-4 Q0 MARCO_48_1630706195-5 7 88.633801 hybrid +140_4-4 Q0 MARCO_11_1562523903-2 8 88.610600 hybrid +140_4-4 Q0 MARCO_50_23689317-1 9 88.588250 hybrid +140_4-4 Q0 MARCO_48_1630706195-3 10 88.567200 hybrid +140_4-4 Q0 MARCO_25_228806808-1 11 88.563150 hybrid +140_4-4 Q0 MARCO_15_143403989-2 12 88.528600 hybrid +140_4-4 Q0 KILT_23242173-2 13 88.491651 hybrid +140_4-4 Q0 KILT_844568-1 14 88.478100 hybrid +140_4-4 Q0 KILT_12890526-9 15 88.449200 hybrid +140_4-4 Q0 MARCO_19_654638400-9 16 88.449200 hybrid +140_4-4 Q0 MARCO_47_1442290483-4 17 88.421600 hybrid +140_4-4 Q0 MARCO_50_23689317-2 18 88.421300 hybrid +140_4-4 Q0 MARCO_16_3916317424-8 19 88.415650 hybrid +140_4-4 Q0 MARCO_10_1110636104-1 20 88.360250 hybrid +140_4-4 Q0 KILT_1842316-6 21 88.336781 hybrid +140_4-4 Q0 MARCO_16_4065616439-8 22 88.303600 hybrid +140_4-4 Q0 MARCO_30_1025297153-7 23 88.302820 hybrid +140_4-4 Q0 MARCO_48_1630706195-4 24 88.292350 hybrid +140_4-4 Q0 MARCO_23_1375999528-3 25 88.286450 hybrid +140_4-4 Q0 KILT_38945-11 26 88.245650 hybrid +140_4-4 Q0 MARCO_19_947484619-2 27 88.232300 hybrid +140_4-4 Q0 MARCO_13_1204369497-1 28 88.224500 hybrid +140_4-4 Q0 MARCO_17_1272644831-8 29 88.099451 hybrid +140_4-4 Q0 MARCO_51_1907789940-3 30 88.077700 hybrid +140_4-4 Q0 KILT_60823736-1 31 88.048650 hybrid +140_4-4 Q0 MARCO_17_1272644831-2 32 88.040500 hybrid +140_4-4 Q0 MARCO_53_404698947-17 33 88.000900 hybrid +140_4-4 Q0 MARCO_32_598442233-1 34 87.838646 hybrid +140_4-4 Q0 MARCO_37_1107475220-3 35 87.789300 hybrid +140_4-4 Q0 MARCO_30_1025211734-2 36 87.661177 hybrid +140_4-4 Q0 MARCO_11_758826070-8 37 87.620016 hybrid +140_4-4 Q0 MARCO_55_1285550962-1 38 87.613607 hybrid +140_4-4 Q0 KILT_7416378-1 39 87.555151 hybrid +140_4-4 Q0 MARCO_55_112707963-2 40 87.517700 hybrid +140_4-4 Q0 MARCO_17_3599769542-16 41 87.480751 hybrid +140_4-4 Q0 MARCO_17_3599769542-6 42 87.466100 hybrid +140_4-4 Q0 MARCO_32_1002768793-4 43 87.452050 hybrid +140_4-4 Q0 MARCO_51_1907789940-4 44 87.452050 hybrid +140_4-4 Q0 MARCO_48_1535513660-18 45 87.448148 hybrid +140_4-4 Q0 MARCO_03_1304989738-2 46 87.401900 hybrid +140_4-4 Q0 KILT_39298866-1 47 87.352700 hybrid +140_4-4 Q0 KILT_4314987-7 48 87.352700 hybrid +140_4-4 Q0 MARCO_53_1088893000-2 49 87.352699 hybrid +140_4-4 Q0 MARCO_37_1107482875-3 50 87.352000 hybrid +140_4-4 Q0 MARCO_19_919092649-20 51 87.335650 hybrid +140_4-4 Q0 MARCO_01_248764900-15 52 87.304300 hybrid +140_4-4 Q0 MARCO_18_475809633-7 53 87.304300 hybrid +140_4-4 Q0 MARCO_32_1002737120-1 54 87.304299 hybrid +140_4-4 Q0 MARCO_11_723817460-4 55 87.292650 hybrid +140_4-4 Q0 MARCO_13_1205331301-3 56 87.292650 hybrid +140_4-4 Q0 MARCO_48_1341675494-6 57 87.273650 hybrid +140_4-4 Q0 MARCO_25_618539920-4 58 87.256800 hybrid +140_4-4 Q0 MARCO_11_723817460-3 59 87.248950 hybrid +140_4-4 Q0 MARCO_39_1269875058-12 60 87.233350 hybrid +140_4-4 Q0 MARCO_10_263239506-4 61 87.210150 hybrid +140_4-4 Q0 MARCO_11_904784803-2 62 87.210150 hybrid +140_4-4 Q0 MARCO_32_1002710668-3 63 87.210149 hybrid +140_4-4 Q0 MARCO_48_1630706195-6 64 87.210149 hybrid +140_4-4 Q0 MARCO_55_1285550962-3 65 87.207188 hybrid +140_4-4 Q0 KILT_1634911-37 66 87.192300 hybrid +140_4-4 Q0 KILT_24856961-1 67 87.186600 hybrid +140_4-4 Q0 MARCO_18_2483603488-19 68 87.185801 hybrid +140_4-4 Q0 MARCO_18_798247652-5 69 87.185800 hybrid +140_4-4 Q0 MARCO_18_798247652-9 70 87.185800 hybrid +140_4-4 Q0 MARCO_23_344543892-2 71 87.164300 hybrid +140_4-4 Q0 MARCO_05_1932475203-92 72 87.139200 hybrid +140_4-4 Q0 MARCO_16_3577155134-6 73 87.139200 hybrid +140_4-4 Q0 MARCO_50_573304538-1 74 87.139199 hybrid +140_4-4 Q0 KILT_50942624-4 75 87.137500 hybrid +140_4-4 Q0 KILT_51525715-1 76 87.083850 hybrid +140_4-4 Q0 MARCO_55_112707963-5 77 87.068081 hybrid +140_4-4 Q0 MARCO_39_1269875058-21 78 87.048501 hybrid +140_4-4 Q0 KILT_17476877-7 79 87.031301 hybrid +140_4-4 Q0 KILT_50942624-1 80 87.031300 hybrid +140_4-4 Q0 MARCO_18_3335879760-6 81 87.031300 hybrid +140_4-4 Q0 MARCO_03_1426659796-2 82 86.995851 hybrid +140_4-4 Q0 MARCO_03_1426659796-3 83 86.989950 hybrid +140_4-4 Q0 MARCO_04_3861741-2 84 86.989950 hybrid +140_4-4 Q0 MARCO_14_319631145-9 85 86.979800 hybrid +140_4-4 Q0 MARCO_18_3619683410-43 86 86.979800 hybrid +140_4-4 Q0 MARCO_55_1285559246-1 87 86.954745 hybrid +140_4-4 Q0 MARCO_03_1426659796-1 88 86.951800 hybrid +140_4-4 Q0 MARCO_03_1426665131-1 89 86.944850 hybrid +140_4-4 Q0 MARCO_41_579491805-1 90 86.944850 hybrid +140_4-4 Q0 KILT_1325731-3 91 86.929300 hybrid +140_4-4 Q0 KILT_13583474-4 92 86.929300 hybrid +140_4-4 Q0 MARCO_24_1719707759-4 93 86.929299 hybrid +140_4-4 Q0 MARCO_22_1565145566-2 94 86.898601 hybrid +140_4-4 Q0 MARCO_23_1375999528-1 95 86.890700 hybrid +140_4-4 Q0 KILT_32104663-6 96 86.879850 hybrid +140_4-4 Q0 MARCO_11_1562523903-1 97 86.879850 hybrid +140_4-4 Q0 MARCO_11_1566293313-7 98 86.879849 hybrid +140_4-4 Q0 MARCO_17_3599769542-8 99 86.879849 hybrid +140_4-4 Q0 MARCO_45_802527701-4 100 86.879848 hybrid +140_4-6 Q0 MARCO_30_1025211734-1 1 92.963498 hybrid +140_4-6 Q0 MARCO_30_1025297153-3 2 92.034006 hybrid +140_4-6 Q0 MARCO_30_1025297153-7 3 91.623954 hybrid +140_4-6 Q0 MARCO_03_1304989738-2 4 90.861281 hybrid +140_4-6 Q0 MARCO_32_598442233-1 5 90.845673 hybrid +140_4-6 Q0 MARCO_50_23689317-1 6 90.813231 hybrid +140_4-6 Q0 MARCO_50_23689317-2 7 90.672331 hybrid +140_4-6 Q0 MARCO_11_1562523903-2 8 90.647631 hybrid +140_4-6 Q0 MARCO_48_1630706195-2 9 90.613832 hybrid +140_4-6 Q0 MARCO_56_874320135-2 10 90.469152 hybrid +140_4-6 Q0 MARCO_55_112707963-5 11 90.366562 hybrid +140_4-6 Q0 MARCO_03_1426659796-1 12 90.124431 hybrid +140_4-6 Q0 MARCO_30_1025297153-4 13 90.034050 hybrid +140_4-6 Q0 KILT_1842316-6 14 89.949068 hybrid +140_4-6 Q0 MARCO_19_2582932327-1 15 89.914400 hybrid +140_4-6 Q0 MARCO_32_1002710668-3 16 89.889281 hybrid +140_4-6 Q0 MARCO_55_112707963-2 17 89.888111 hybrid +140_4-6 Q0 MARCO_48_1630706195-5 18 89.739532 hybrid +140_4-6 Q0 MARCO_25_228806808-1 19 89.599381 hybrid +140_4-6 Q0 MARCO_32_597828000-3 20 89.542858 hybrid +140_4-6 Q0 MARCO_48_1630706195-3 21 89.530981 hybrid +140_4-6 Q0 MARCO_48_1630706195-1 22 89.465181 hybrid +140_4-6 Q0 MARCO_32_597834653-1 23 89.382769 hybrid +140_4-6 Q0 MARCO_03_1426682152-1 24 89.382481 hybrid +140_4-6 Q0 MARCO_30_1025297153-6 25 89.372346 hybrid +140_4-6 Q0 MARCO_10_1110636104-1 26 89.370881 hybrid +140_4-6 Q0 MARCO_32_598442233-2 27 89.344966 hybrid +140_4-6 Q0 MARCO_30_1025211734-3 28 89.323042 hybrid +140_4-6 Q0 MARCO_03_1426659796-2 29 89.309381 hybrid +140_4-6 Q0 MARCO_30_1025211734-2 30 89.300146 hybrid +140_4-6 Q0 MARCO_03_1426659796-3 31 89.290931 hybrid +140_4-6 Q0 KILT_39298866-1 32 89.264831 hybrid +140_4-6 Q0 MARCO_35_451972693-4 33 89.263131 hybrid +140_4-6 Q0 MARCO_11_904784803-2 34 89.252331 hybrid +140_4-6 Q0 MARCO_13_1204369497-1 35 89.247781 hybrid +140_4-6 Q0 MARCO_50_1732246764-40 36 89.147331 hybrid +140_4-6 Q0 MARCO_16_3306273242-23 37 89.104286 hybrid +140_4-6 Q0 MARCO_53_404698947-17 38 89.097181 hybrid +140_4-6 Q0 MARCO_00_358922652-5 39 89.094888 hybrid +140_4-6 Q0 KILT_23242173-2 40 89.043231 hybrid +140_4-6 Q0 MARCO_32_1002768793-4 41 89.041581 hybrid +140_4-6 Q0 MARCO_36_1004130531-4 42 88.977487 hybrid +140_4-6 Q0 MARCO_22_1565145566-1 43 88.964931 hybrid +140_4-6 Q0 MARCO_32_1002737120-1 44 88.894281 hybrid +140_4-6 Q0 MARCO_14_1599252652-1 45 88.879131 hybrid +140_4-6 Q0 MARCO_54_1589172188-3 46 88.813178 hybrid +140_4-6 Q0 KILT_844568-1 47 88.810131 hybrid +140_4-6 Q0 MARCO_47_1442290483-4 48 88.784031 hybrid +140_4-6 Q0 MARCO_16_4065616439-8 49 88.783281 hybrid +140_4-6 Q0 MARCO_16_3916317424-8 50 88.758481 hybrid +140_4-6 Q0 MARCO_03_1426659796-4 51 88.727231 hybrid +140_4-6 Q0 MARCO_19_947484619-2 52 88.711981 hybrid +140_4-6 Q0 MARCO_23_1375999528-1 53 88.707131 hybrid +140_4-6 Q0 MARCO_51_1324557930-3 54 88.610431 hybrid +140_4-6 Q0 MARCO_23_1375999528-3 55 88.608131 hybrid +140_4-6 Q0 MARCO_22_1835484253-1 56 88.584081 hybrid +140_4-6 Q0 MARCO_30_1048979554-4 57 88.581949 hybrid +140_4-6 Q0 MARCO_30_1025297153-1 58 88.581624 hybrid +140_4-6 Q0 MARCO_35_451972693-12 59 88.576631 hybrid +140_4-6 Q0 MARCO_40_995543173-1 60 88.576081 hybrid +140_4-6 Q0 MARCO_10_801962827-6 61 88.567135 hybrid +140_4-6 Q0 MARCO_32_597809340-5 62 88.547599 hybrid +140_4-6 Q0 MARCO_51_1907789940-3 63 88.539731 hybrid +140_4-6 Q0 MARCO_32_598442233-5 64 88.499452 hybrid +140_4-6 Q0 MARCO_11_1562523903-4 65 88.495081 hybrid +140_4-6 Q0 MARCO_30_1025297153-8 66 88.424858 hybrid +140_4-6 Q0 MARCO_00_358922652-6 67 88.403341 hybrid +140_4-6 Q0 MARCO_14_1100517208-1 68 88.395976 hybrid +140_4-6 Q0 MARCO_15_143403989-2 69 88.384481 hybrid +140_4-6 Q0 MARCO_17_1272644831-2 70 88.383381 hybrid +140_4-6 Q0 KILT_60823736-1 71 88.380681 hybrid +140_4-6 Q0 MARCO_11_1562523903-1 72 88.342731 hybrid +140_4-6 Q0 MARCO_03_1426665131-1 73 88.335931 hybrid +140_4-6 Q0 MARCO_20_99832249-2 74 88.332331 hybrid +140_4-6 Q0 MARCO_57_1408732862-3 75 88.316881 hybrid +140_4-6 Q0 KILT_12890526-9 76 88.305081 hybrid +140_4-6 Q0 MARCO_19_654638400-9 77 88.305080 hybrid +140_4-6 Q0 MARCO_39_1269875058-12 78 88.296481 hybrid +140_4-6 Q0 MARCO_23_204150005-1 79 88.285381 hybrid +140_4-6 Q0 MARCO_10_263239506-4 80 88.264463 hybrid +140_4-6 Q0 MARCO_54_1589172188-1 81 88.255289 hybrid +140_4-6 Q0 KILT_36008133-2 82 88.236081 hybrid +140_4-6 Q0 MARCO_53_1088893000-2 83 88.206331 hybrid +140_4-6 Q0 MARCO_55_105494193-2 84 88.195831 hybrid +140_4-6 Q0 MARCO_38_594150692-11 85 88.185131 hybrid +140_4-6 Q0 MARCO_05_1932475203-92 86 88.175431 hybrid +140_4-6 Q0 MARCO_23_344543892-2 87 88.174881 hybrid +140_4-6 Q0 MARCO_53_1091382755-1 88 88.172581 hybrid +140_4-6 Q0 MARCO_10_1110636104-12 89 88.165731 hybrid +140_4-6 Q0 MARCO_53_1116743670-15 90 88.149231 hybrid +140_4-6 Q0 MARCO_48_1630706195-4 91 88.148231 hybrid +140_4-6 Q0 MARCO_48_1535513660-18 92 88.137762 hybrid +140_4-6 Q0 MARCO_00_243350771-1 93 88.137431 hybrid +140_4-6 Q0 MARCO_35_451972693-5 94 88.129481 hybrid +140_4-6 Q0 MARCO_11_758826070-8 95 88.107346 hybrid +140_4-6 Q0 KILT_38945-11 96 88.101531 hybrid +140_4-6 Q0 MARCO_03_1426665131-2 97 88.050131 hybrid +140_4-6 Q0 MARCO_55_112707963-1 98 88.012267 hybrid +140_4-6 Q0 MARCO_18_475809633-7 99 88.008630 hybrid +140_4-6 Q0 MARCO_14_1599252652-2 100 88.001731 hybrid +140_4-8 Q0 MARCO_17_2985927323-3 1 95.786907 hybrid +140_4-8 Q0 MARCO_20_1605557843-4 2 95.465970 hybrid +140_4-8 Q0 MARCO_30_1025297153-2 3 95.087809 hybrid +140_4-8 Q0 MARCO_20_1605557843-3 4 95.018651 hybrid +140_4-8 Q0 MARCO_17_2985927323-7 5 94.122968 hybrid +140_4-8 Q0 MARCO_17_2985927323-9 6 94.122967 hybrid +140_4-8 Q0 MARCO_51_38815629-2 7 93.950803 hybrid +140_4-8 Q0 MARCO_48_849543852-1 8 93.836153 hybrid +140_4-8 Q0 MARCO_20_1605557843-6 9 93.820121 hybrid +140_4-8 Q0 MARCO_17_2985927323-4 10 93.634250 hybrid +140_4-8 Q0 MARCO_20_1605557843-1 11 93.358530 hybrid +140_4-8 Q0 MARCO_17_2985927323-6 12 93.294259 hybrid +140_4-8 Q0 MARCO_37_1107517688-2 13 92.843203 hybrid +140_4-8 Q0 MARCO_20_1605557843-5 14 92.525492 hybrid +140_4-8 Q0 MARCO_15_1458788650-1 15 92.111059 hybrid +140_4-8 Q0 MARCO_51_38815629-1 16 91.995152 hybrid +140_4-8 Q0 MARCO_13_1204561650-4 17 91.876153 hybrid +140_4-8 Q0 MARCO_05_1762379500-340 18 91.836396 hybrid +140_4-8 Q0 MARCO_31_87355756-2 19 91.835552 hybrid +140_4-8 Q0 MARCO_17_2985927323-1 20 91.795108 hybrid +140_4-8 Q0 MARCO_31_87355756-4 21 91.546002 hybrid +140_4-8 Q0 MARCO_31_87359963-4 22 91.546001 hybrid +140_4-8 Q0 MARCO_19_654638400-10 23 91.453053 hybrid +140_4-8 Q0 MARCO_51_38815629-6 24 91.391752 hybrid +140_4-8 Q0 KILT_4030485-4 25 91.388453 hybrid +140_4-8 Q0 MARCO_51_38815629-3 26 91.282753 hybrid +140_4-8 Q0 MARCO_32_1002744496-1 27 91.259402 hybrid +140_4-8 Q0 MARCO_11_1562523903-2 28 91.095753 hybrid +140_4-8 Q0 MARCO_48_1525195976-1 29 91.091002 hybrid +140_4-8 Q0 MARCO_11_904776446-3 30 91.036003 hybrid +140_4-8 Q0 MARCO_12_7420345-4 31 90.990852 hybrid +140_4-8 Q0 MARCO_48_849543852-12 32 90.983603 hybrid +140_4-8 Q0 KILT_4030485-3 33 90.968102 hybrid +140_4-8 Q0 MARCO_30_407817046-6 34 90.860303 hybrid +140_4-8 Q0 KILT_13583474-1 35 90.837953 hybrid +140_4-8 Q0 KILT_4030485-5 36 90.825003 hybrid +140_4-8 Q0 MARCO_40_1002073335-1 37 90.818752 hybrid +140_4-8 Q0 MARCO_32_598293543-8 38 90.805321 hybrid +140_4-8 Q0 MARCO_13_1204561650-1 39 90.782803 hybrid +140_4-8 Q0 MARCO_37_1107517688-3 40 90.766203 hybrid +140_4-8 Q0 MARCO_37_1107517688-4 41 90.686402 hybrid +140_4-8 Q0 MARCO_48_1630480460-8 42 90.646003 hybrid +140_4-8 Q0 MARCO_17_2985927323-5 43 90.627186 hybrid +140_4-8 Q0 MARCO_11_723817460-3 44 90.620203 hybrid +140_4-8 Q0 MARCO_48_849543852-11 45 90.601402 hybrid +140_4-8 Q0 MARCO_03_1304989738-2 46 90.570553 hybrid +140_4-8 Q0 MARCO_57_1937405093-17 47 90.555352 hybrid +140_4-8 Q0 MARCO_39_1269636367-9 48 90.455553 hybrid +140_4-8 Q0 MARCO_03_1426671976-3 49 90.440903 hybrid +140_4-8 Q0 MARCO_00_358922652-6 50 90.437315 hybrid +140_4-8 Q0 KILT_4030485-1 51 90.431353 hybrid +140_4-8 Q0 MARCO_48_849543852-15 52 90.402952 hybrid +140_4-8 Q0 MARCO_07_704518188-161 53 90.385953 hybrid +140_4-8 Q0 MARCO_53_404698947-17 54 90.375652 hybrid +140_4-8 Q0 MARCO_24_1375511290-3 55 90.331903 hybrid +140_4-8 Q0 MARCO_30_1029169387-9 56 90.288980 hybrid +140_4-8 Q0 MARCO_48_849543852-2 57 90.256503 hybrid +140_4-8 Q0 MARCO_11_1562523903-3 58 90.203403 hybrid +140_4-8 Q0 MARCO_50_1774816435-34 59 90.202553 hybrid +140_4-8 Q0 MARCO_48_849543852-10 60 90.200453 hybrid +140_4-8 Q0 KILT_12890526-11 61 90.192753 hybrid +140_4-8 Q0 MARCO_29_710618272-1 62 90.162103 hybrid +140_4-8 Q0 MARCO_13_1204571746-1 63 90.125453 hybrid +140_4-8 Q0 MARCO_32_597809340-4 64 90.114246 hybrid +140_4-8 Q0 MARCO_13_1205680173-1 65 90.106752 hybrid +140_4-8 Q0 MARCO_18_3483116847-2 66 90.087953 hybrid +140_4-8 Q0 MARCO_32_1087103060-1 67 90.069403 hybrid +140_4-8 Q0 MARCO_15_1458788650-2 68 90.010989 hybrid +140_4-8 Q0 MARCO_30_1048979554-4 69 90.007254 hybrid +140_4-8 Q0 MARCO_29_1340014164-4 70 89.975053 hybrid +140_4-8 Q0 MARCO_32_1087103060-2 71 89.947352 hybrid +140_4-8 Q0 MARCO_11_1562495073-3 72 89.945553 hybrid +140_4-8 Q0 MARCO_36_1004130531-3 73 89.933608 hybrid +140_4-8 Q0 MARCO_48_849543852-6 74 89.923002 hybrid +140_4-8 Q0 MARCO_40_1030939421-1 75 89.912152 hybrid +140_4-8 Q0 MARCO_22_1016868225-2 76 89.907981 hybrid +140_4-8 Q0 MARCO_57_1935960136-10 77 89.882553 hybrid +140_4-8 Q0 MARCO_40_1033557025-1 78 89.882503 hybrid +140_4-8 Q0 KILT_39511856-4 79 89.865553 hybrid +140_4-8 Q0 MARCO_51_38815629-7 80 89.834352 hybrid +140_4-8 Q0 MARCO_24_1719707759-1 81 89.784211 hybrid +140_4-8 Q0 KILT_45228085-2 82 89.761753 hybrid +140_4-8 Q0 MARCO_30_1025297153-5 83 89.734169 hybrid +140_4-8 Q0 MARCO_54_633088310-2 84 89.714402 hybrid +140_4-8 Q0 MARCO_49_105945882-9 85 89.705052 hybrid +140_4-8 Q0 MARCO_51_38815629-4 86 89.692452 hybrid +140_4-8 Q0 MARCO_51_38815629-5 87 89.677202 hybrid +140_4-8 Q0 MARCO_17_3599769542-27 88 89.650053 hybrid +140_4-8 Q0 MARCO_32_1002744496-3 89 89.643602 hybrid +140_4-8 Q0 MARCO_36_979659662-4 90 89.640102 hybrid +140_4-8 Q0 MARCO_05_1762379500-80 91 89.614482 hybrid +140_4-8 Q0 MARCO_58_237288357-7 92 89.596053 hybrid +140_4-8 Q0 MARCO_57_1935960136-8 93 89.591852 hybrid +140_4-8 Q0 MARCO_37_1107475220-2 94 89.578753 hybrid +140_4-8 Q0 MARCO_45_802527701-4 95 89.562102 hybrid +140_4-8 Q0 MARCO_57_1935960136-13 96 89.554502 hybrid +140_4-8 Q0 MARCO_41_1792252484-11 97 89.536603 hybrid +140_4-8 Q0 MARCO_41_1792252484-9 98 89.536602 hybrid +140_4-8 Q0 MARCO_11_904776446-1 99 89.529102 hybrid +140_4-8 Q0 MARCO_29_1413265048-4 100 89.500153 hybrid +141_1-1 Q0 MARCO_22_1220119571-1 1 91.512630 hybrid +141_1-1 Q0 MARCO_53_326252611-1 2 91.460629 hybrid +141_1-1 Q0 MARCO_13_1445183068-15 3 91.094580 hybrid +141_1-1 Q0 MARCO_25_858687283-5 4 91.039530 hybrid +141_1-1 Q0 MARCO_55_301987044-1 5 91.024079 hybrid +141_1-1 Q0 MARCO_25_282525914-6 6 90.998079 hybrid +141_1-1 Q0 MARCO_15_481036841-8 7 90.939359 hybrid +141_1-1 Q0 MARCO_31_1407956315-6 8 90.909780 hybrid +141_1-1 Q0 MARCO_31_804926836-19 9 90.896029 hybrid +141_1-1 Q0 MARCO_20_881446882-1 10 90.877629 hybrid +141_1-1 Q0 MARCO_24_1121662097-1 11 90.821879 hybrid +141_1-1 Q0 MARCO_30_744759371-208 12 90.818493 hybrid +141_1-1 Q0 MARCO_24_812846237-1 13 90.815729 hybrid +141_1-1 Q0 MARCO_11_1038201369-10 14 90.803180 hybrid +141_1-1 Q0 MARCO_03_72781943-1 15 90.793530 hybrid +141_1-1 Q0 MARCO_10_909467982-11 16 90.757504 hybrid +141_1-1 Q0 MARCO_37_903434478-8 17 90.708480 hybrid +141_1-1 Q0 MARCO_38_745604047-11 18 90.692980 hybrid +141_1-1 Q0 MARCO_57_296791124-10 19 90.685180 hybrid +141_1-1 Q0 MARCO_28_338626275-4 20 90.666829 hybrid +141_1-1 Q0 MARCO_33_1395283299-5 21 90.660680 hybrid +141_1-1 Q0 MARCO_38_451213395-1 22 90.627279 hybrid +141_1-1 Q0 MARCO_38_740873062-1 23 90.613979 hybrid +141_1-1 Q0 MARCO_54_1919094826-12 24 90.601930 hybrid +141_1-1 Q0 MARCO_04_485880276-5 25 90.593829 hybrid +141_1-1 Q0 MARCO_20_1244566170-1 26 90.578830 hybrid +141_1-1 Q0 MARCO_37_236223301-4 27 90.560430 hybrid +141_1-1 Q0 MARCO_30_226613034-9 28 90.555579 hybrid +141_1-1 Q0 MARCO_23_944211364-1 29 90.535279 hybrid +141_1-1 Q0 MARCO_54_332770683-3 30 90.516330 hybrid +141_1-1 Q0 MARCO_19_2571204554-1 31 90.511280 hybrid +141_1-1 Q0 MARCO_30_450226658-9 32 90.497930 hybrid +141_1-1 Q0 MARCO_48_978698970-6 33 90.487339 hybrid +141_1-1 Q0 MARCO_51_1489726505-1 34 90.485080 hybrid +141_1-1 Q0 MARCO_04_583194743-6 35 90.484079 hybrid +141_1-1 Q0 MARCO_24_1652078144-8 36 90.471880 hybrid +141_1-1 Q0 MARCO_28_397700470-33 37 90.470229 hybrid +141_1-1 Q0 MARCO_25_858897902-10 38 90.457180 hybrid +141_1-1 Q0 MARCO_04_480632713-2 39 90.450390 hybrid +141_1-1 Q0 MARCO_45_841300048-1 40 90.439330 hybrid +141_1-1 Q0 MARCO_40_560927337-23 41 90.422261 hybrid +141_1-1 Q0 MARCO_30_249436887-1 42 90.405930 hybrid +141_1-1 Q0 MARCO_50_1183326589-40 43 90.403284 hybrid +141_1-1 Q0 MARCO_30_377846310-1 44 90.403130 hybrid +141_1-1 Q0 MARCO_01_1579809761-40 45 90.399680 hybrid +141_1-1 Q0 MARCO_10_897295825-15 46 90.399159 hybrid +141_1-1 Q0 MARCO_13_1256080035-7 47 90.392613 hybrid +141_1-1 Q0 MARCO_55_336690112-1 48 90.390729 hybrid +141_1-1 Q0 MARCO_06_327278198-2 49 90.364720 hybrid +141_1-1 Q0 MARCO_33_206654973-2 50 90.357729 hybrid +141_1-1 Q0 MARCO_38_585177824-2 51 90.347975 hybrid +141_1-1 Q0 MARCO_14_375099531-15 52 90.337729 hybrid +141_1-1 Q0 MARCO_02_1197792450-4 53 90.324711 hybrid +141_1-1 Q0 MARCO_56_521583012-2 54 90.305029 hybrid +141_1-1 Q0 MARCO_00_394671263-4 55 90.296530 hybrid +141_1-1 Q0 MARCO_12_1447109277-6 56 90.294461 hybrid +141_1-1 Q0 MARCO_54_1898621088-14 57 90.292729 hybrid +141_1-1 Q0 MARCO_50_2761743467-7 58 90.290530 hybrid +141_1-1 Q0 MARCO_14_1549971571-21 59 90.276712 hybrid +141_1-1 Q0 MARCO_24_1152285947-17 60 90.271679 hybrid +141_1-1 Q0 MARCO_12_1454407232-7 61 90.269635 hybrid +141_1-1 Q0 MARCO_11_1037988336-9 62 90.265530 hybrid +141_1-1 Q0 MARCO_47_991261137-5 63 90.260129 hybrid +141_1-1 Q0 MARCO_53_326074698-2 64 90.246079 hybrid +141_1-1 Q0 MARCO_50_1513874056-124 65 90.234433 hybrid +141_1-1 Q0 MARCO_47_988334423-8 66 90.234172 hybrid +141_1-1 Q0 MARCO_06_327278198-3 67 90.224743 hybrid +141_1-1 Q0 MARCO_56_814238486-4 68 90.221989 hybrid +141_1-1 Q0 MARCO_20_1244277815-9 69 90.209980 hybrid +141_1-1 Q0 MARCO_02_1197789364-2 70 90.206384 hybrid +141_1-1 Q0 MARCO_39_1694042320-9 71 90.202313 hybrid +141_1-1 Q0 MARCO_39_540651245-9 72 90.201180 hybrid +141_1-1 Q0 MARCO_30_249140384-1 73 90.192080 hybrid +141_1-1 Q0 MARCO_37_834258682-4 74 90.191601 hybrid +141_1-1 Q0 MARCO_39_913307486-2 75 90.189080 hybrid +141_1-1 Q0 MARCO_47_1302012847-6 76 90.183929 hybrid +141_1-1 Q0 MARCO_30_688005143-40 77 90.173230 hybrid +141_1-1 Q0 MARCO_41_917933342-13 78 90.172329 hybrid +141_1-1 Q0 MARCO_54_1896564573-3 79 90.169380 hybrid +141_1-1 Q0 MARCO_30_51713549-10 80 90.163380 hybrid +141_1-1 Q0 MARCO_29_745901503-2 81 90.162230 hybrid +141_1-1 Q0 MARCO_40_264626786-11 82 90.160656 hybrid +141_1-1 Q0 MARCO_29_268011741-2 83 90.160054 hybrid +141_1-1 Q0 MARCO_30_1807188622-4 84 90.159337 hybrid +141_1-1 Q0 MARCO_51_562175705-1 85 90.156480 hybrid +141_1-1 Q0 MARCO_15_103944462-8 86 90.155095 hybrid +141_1-1 Q0 MARCO_15_103977589-11 87 90.155095 hybrid +141_1-1 Q0 MARCO_29_525219167-12 88 90.152580 hybrid +141_1-1 Q0 MARCO_27_1208038305-2 89 90.148610 hybrid +141_1-1 Q0 MARCO_37_272750328-3 90 90.147079 hybrid +141_1-1 Q0 MARCO_12_1932218907-5 91 90.143830 hybrid +141_1-1 Q0 MARCO_08_50602299-7 92 90.142030 hybrid +141_1-1 Q0 MARCO_55_336179375-1 93 90.141980 hybrid +141_1-1 Q0 MARCO_36_873009821-6 94 90.138780 hybrid +141_1-1 Q0 MARCO_36_882842844-7 95 90.138779 hybrid +141_1-1 Q0 MARCO_36_883485074-5 96 90.138779 hybrid +141_1-1 Q0 MARCO_36_886811173-7 97 90.138778 hybrid +141_1-1 Q0 MARCO_36_886840099-9 98 90.138778 hybrid +141_1-1 Q0 MARCO_36_886863931-7 99 90.138777 hybrid +141_1-1 Q0 MARCO_36_887369985-7 100 90.138777 hybrid +141_1-3 Q0 MARCO_21_578989055-7 1 89.591123 hybrid +141_1-3 Q0 MARCO_44_1167684774-2 2 89.341218 hybrid +141_1-3 Q0 MARCO_51_671708711-3 3 89.049872 hybrid +141_1-3 Q0 MARCO_33_1025499395-11 4 89.016613 hybrid +141_1-3 Q0 MARCO_51_1521484576-23 5 88.900123 hybrid +141_1-3 Q0 MARCO_21_1145129455-1 6 88.899683 hybrid +141_1-3 Q0 MARCO_33_1025499395-14 7 88.823040 hybrid +141_1-3 Q0 MARCO_41_757773188-7 8 88.767523 hybrid +141_1-3 Q0 MARCO_44_1167684774-3 9 88.688838 hybrid +141_1-3 Q0 MARCO_42_1088121638-1 10 88.681251 hybrid +141_1-3 Q0 MARCO_14_679973317-1 11 88.659623 hybrid +141_1-3 Q0 MARCO_50_1330150755-20 12 88.659223 hybrid +141_1-3 Q0 MARCO_10_480330655-1 13 88.658823 hybrid +141_1-3 Q0 MARCO_44_1167684774-1 14 88.639386 hybrid +141_1-3 Q0 MARCO_29_472642170-1 15 88.635873 hybrid +141_1-3 Q0 MARCO_28_541508338-4 16 88.633296 hybrid +141_1-3 Q0 MARCO_52_1335028396-2 17 88.610263 hybrid +141_1-3 Q0 MARCO_27_1202500253-10 18 88.585842 hybrid +141_1-3 Q0 MARCO_39_1412081745-8 19 88.581522 hybrid +141_1-3 Q0 MARCO_51_123396035-24 20 88.575137 hybrid +141_1-3 Q0 MARCO_52_946955713-8 21 88.522223 hybrid +141_1-3 Q0 MARCO_27_1765683857-20 22 88.518316 hybrid +141_1-3 Q0 MARCO_51_712754737-11 23 88.500722 hybrid +141_1-3 Q0 MARCO_04_905994734-4 24 88.495685 hybrid +141_1-3 Q0 MARCO_51_737288953-1 25 88.480923 hybrid +141_1-3 Q0 MARCO_40_595672973-1 26 88.462873 hybrid +141_1-3 Q0 MARCO_47_1182657395-1 27 88.431873 hybrid +141_1-3 Q0 MARCO_53_1366781412-32 28 88.421022 hybrid +141_1-3 Q0 MARCO_31_1253700821-8 29 88.397923 hybrid +141_1-3 Q0 MARCO_11_754119908-7 30 88.387798 hybrid +141_1-3 Q0 MARCO_27_1238037725-2 31 88.383907 hybrid +141_1-3 Q0 MARCO_12_72016736-6 32 88.378246 hybrid +141_1-3 Q0 MARCO_49_606947502-12 33 88.377223 hybrid +141_1-3 Q0 MARCO_36_821807421-11 34 88.353458 hybrid +141_1-3 Q0 MARCO_10_905931627-10 35 88.347553 hybrid +141_1-3 Q0 MARCO_27_1202500253-2 36 88.346096 hybrid +141_1-3 Q0 MARCO_13_67602370-10 37 88.342022 hybrid +141_1-3 Q0 MARCO_47_1183368395-1 38 88.333323 hybrid +141_1-3 Q0 MARCO_45_201127978-2 39 88.312450 hybrid +141_1-3 Q0 MARCO_55_1730024849-1 40 88.312077 hybrid +141_1-3 Q0 MARCO_48_2106485962-14 41 88.308973 hybrid +141_1-3 Q0 MARCO_12_72016736-12 42 88.303463 hybrid +141_1-3 Q0 MARCO_36_1374834335-7 43 88.300173 hybrid +141_1-3 Q0 MARCO_32_1660327970-3 44 88.296695 hybrid +141_1-3 Q0 MARCO_29_473215419-4 45 88.295573 hybrid +141_1-3 Q0 MARCO_47_348267440-4 46 88.286773 hybrid +141_1-3 Q0 MARCO_40_9202009-1 47 88.283623 hybrid +141_1-3 Q0 MARCO_55_133300922-8 48 88.281123 hybrid +141_1-3 Q0 MARCO_55_1284674763-3 49 88.278323 hybrid +141_1-3 Q0 MARCO_33_1025468118-5 50 88.270130 hybrid +141_1-3 Q0 MARCO_41_630788576-17 51 88.266574 hybrid +141_1-3 Q0 MARCO_50_2024219645-9 52 88.258873 hybrid +141_1-3 Q0 MARCO_41_630788576-15 53 88.248569 hybrid +141_1-3 Q0 MARCO_02_874749495-2 54 88.248401 hybrid +141_1-3 Q0 MARCO_44_51959612-1 55 88.246266 hybrid +141_1-3 Q0 MARCO_24_1959886602-1 56 88.241972 hybrid +141_1-3 Q0 MARCO_47_133438989-7 57 88.239254 hybrid +141_1-3 Q0 MARCO_44_1764161541-7 58 88.237926 hybrid +141_1-3 Q0 MARCO_00_1167848177-20 59 88.235923 hybrid +141_1-3 Q0 MARCO_53_811018085-40 60 88.225147 hybrid +141_1-3 Q0 MARCO_44_127192320-4 61 88.224422 hybrid +141_1-3 Q0 MARCO_51_95487952-8 62 88.223773 hybrid +141_1-3 Q0 MARCO_31_935104390-3 63 88.209224 hybrid +141_1-3 Q0 MARCO_27_1237635519-4 64 88.205097 hybrid +141_1-3 Q0 MARCO_14_1452994220-209 65 88.203873 hybrid +141_1-3 Q0 MARCO_53_810665322-7 66 88.202510 hybrid +141_1-3 Q0 MARCO_50_2399125391-4 67 88.197423 hybrid +141_1-3 Q0 MARCO_40_1642554375-18 68 88.192923 hybrid +141_1-3 Q0 MARCO_25_898561752-10 69 88.187673 hybrid +141_1-3 Q0 MARCO_21_1145129455-8 70 88.182384 hybrid +141_1-3 Q0 MARCO_43_769019832-2 71 88.167568 hybrid +141_1-3 Q0 MARCO_44_1764161541-10 72 88.166927 hybrid +141_1-3 Q0 MARCO_10_76747706-18 73 88.164806 hybrid +141_1-3 Q0 MARCO_31_1407927748-6 74 88.160273 hybrid +141_1-3 Q0 MARCO_32_468684332-5 75 88.158290 hybrid +141_1-3 Q0 MARCO_15_104262497-1 76 88.157123 hybrid +141_1-3 Q0 MARCO_11_735079790-3 77 88.146573 hybrid +141_1-3 Q0 MARCO_55_1284395314-3 78 88.143173 hybrid +141_1-3 Q0 MARCO_33_1427662472-7 79 88.141506 hybrid +141_1-3 Q0 MARCO_55_1730024849-3 80 88.141475 hybrid +141_1-3 Q0 MARCO_19_2650496233-8 81 88.136180 hybrid +141_1-3 Q0 MARCO_03_711815224-26 82 88.133573 hybrid +141_1-3 Q0 MARCO_20_393707349-6 83 88.131022 hybrid +141_1-3 Q0 MARCO_28_434950348-8 84 88.128040 hybrid +141_1-3 Q0 MARCO_27_1202500253-4 85 88.121791 hybrid +141_1-3 Q0 MARCO_31_1407927748-5 86 88.110123 hybrid +141_1-3 Q0 MARCO_28_434950348-10 87 88.106014 hybrid +141_1-3 Q0 MARCO_12_72016736-11 88 88.100620 hybrid +141_1-3 Q0 MARCO_12_793617409-6 89 88.099573 hybrid +141_1-3 Q0 MARCO_37_821210878-1 90 88.097023 hybrid +141_1-3 Q0 MARCO_08_941482751-20 91 88.092473 hybrid +141_1-3 Q0 MARCO_33_1025499395-13 92 88.089672 hybrid +141_1-3 Q0 MARCO_29_1459319244-2 93 88.087822 hybrid +141_1-3 Q0 MARCO_29_267155433-2 94 88.086345 hybrid +141_1-3 Q0 MARCO_47_1183368395-2 95 88.081723 hybrid +141_1-3 Q0 MARCO_27_1237635519-5 96 88.075181 hybrid +141_1-3 Q0 MARCO_53_119208326-1 97 88.072973 hybrid +141_1-3 Q0 MARCO_42_381467294-3 98 88.053123 hybrid +141_1-3 Q0 MARCO_44_1167684774-7 99 88.051196 hybrid +141_1-3 Q0 MARCO_03_1043666726-11 100 88.049556 hybrid +141_1-5 Q0 MARCO_55_277967890-3 1 92.713902 hybrid +141_1-5 Q0 MARCO_25_1372658733-7 2 92.713052 hybrid +141_1-5 Q0 MARCO_21_1216284242-19 3 92.384752 hybrid +141_1-5 Q0 MARCO_23_1427693654-6 4 92.305252 hybrid +141_1-5 Q0 MARCO_44_1418466281-2 5 92.073052 hybrid +141_1-5 Q0 MARCO_44_1953561730-13 6 92.036452 hybrid +141_1-5 Q0 MARCO_50_1662117411-6 7 91.997118 hybrid +141_1-5 Q0 MARCO_24_909443094-2 8 91.930302 hybrid +141_1-5 Q0 MARCO_34_1324045633-3 9 91.911356 hybrid +141_1-5 Q0 MARCO_20_469245448-15 10 91.900552 hybrid +141_1-5 Q0 MARCO_28_527606323-6 11 91.870302 hybrid +141_1-5 Q0 MARCO_04_360919796-4 12 91.844603 hybrid +141_1-5 Q0 MARCO_03_158227160-12 13 91.769952 hybrid +141_1-5 Q0 MARCO_44_1996211859-13 14 91.670403 hybrid +141_1-5 Q0 MARCO_50_1672849818-33 15 91.662607 hybrid +141_1-5 Q0 MARCO_29_30691709-2 16 91.660166 hybrid +141_1-5 Q0 MARCO_21_1216877318-2 17 91.654650 hybrid +141_1-5 Q0 MARCO_50_2536411829-2 18 91.636102 hybrid +141_1-5 Q0 MARCO_25_1380426681-20 19 91.628202 hybrid +141_1-5 Q0 MARCO_34_1324039858-4 20 91.622110 hybrid +141_1-5 Q0 MARCO_01_1063164384-23 21 91.599253 hybrid +141_1-5 Q0 MARCO_27_511244137-16 22 91.598852 hybrid +141_1-5 Q0 MARCO_58_502103458-18 23 91.581152 hybrid +141_1-5 Q0 MARCO_25_1372658733-35 24 91.555802 hybrid +141_1-5 Q0 MARCO_55_166606063-2 25 91.533252 hybrid +141_1-5 Q0 MARCO_56_15315482-1 26 91.515852 hybrid +141_1-5 Q0 MARCO_57_1924137489-10 27 91.490902 hybrid +141_1-5 Q0 MARCO_21_1216438538-2 28 91.464975 hybrid +141_1-5 Q0 MARCO_44_1993230393-18 29 91.456652 hybrid +141_1-5 Q0 MARCO_28_527655725-2 30 91.432703 hybrid +141_1-5 Q0 MARCO_44_2003155138-2 31 91.420502 hybrid +141_1-5 Q0 MARCO_50_1613328405-18 32 91.403490 hybrid +141_1-5 Q0 MARCO_02_899021708-4 33 91.386003 hybrid +141_1-5 Q0 MARCO_06_999190889-1 34 91.381752 hybrid +141_1-5 Q0 MARCO_45_1604432792-25 35 91.317452 hybrid +141_1-5 Q0 MARCO_50_1660601460-14 36 91.313400 hybrid +141_1-5 Q0 MARCO_34_1324045633-4 37 91.295748 hybrid +141_1-5 Q0 MARCO_28_218609092-12 38 91.288902 hybrid +141_1-5 Q0 MARCO_21_1216403308-13 39 91.288813 hybrid +141_1-5 Q0 MARCO_02_1074687361-17 40 91.282552 hybrid +141_1-5 Q0 MARCO_59_486269619-53 41 91.282402 hybrid +141_1-5 Q0 MARCO_21_1005854745-2 42 91.277202 hybrid +141_1-5 Q0 MARCO_40_163148502-10 43 91.268402 hybrid +141_1-5 Q0 MARCO_01_691823412-3 44 91.264002 hybrid +141_1-5 Q0 MARCO_31_775072095-53 45 91.259402 hybrid +141_1-5 Q0 MARCO_49_1828882203-2 46 91.257776 hybrid +141_1-5 Q0 MARCO_21_1215533417-4 47 91.257318 hybrid +141_1-5 Q0 MARCO_21_1216284242-18 48 91.247286 hybrid +141_1-5 Q0 MARCO_50_1613328405-19 49 91.245592 hybrid +141_1-5 Q0 MARCO_28_527486278-5 50 91.242769 hybrid +141_1-5 Q0 MARCO_39_221474899-4 51 91.232973 hybrid +141_1-5 Q0 MARCO_10_1179217323-25 52 91.222742 hybrid +141_1-5 Q0 MARCO_18_3594606631-6 53 91.222252 hybrid +141_1-5 Q0 MARCO_33_618130160-15 54 91.220552 hybrid +141_1-5 Q0 MARCO_21_1215945659-4 55 91.215540 hybrid +141_1-5 Q0 MARCO_44_2007973012-13 56 91.205452 hybrid +141_1-5 Q0 MARCO_43_241948488-2 57 91.205027 hybrid +141_1-5 Q0 MARCO_57_2129393244-3 58 91.198778 hybrid +141_1-5 Q0 MARCO_21_1214943619-10 59 91.198137 hybrid +141_1-5 Q0 MARCO_43_241952999-4 60 91.194521 hybrid +141_1-5 Q0 MARCO_34_1324187533-3 61 91.190310 hybrid +141_1-5 Q0 MARCO_03_1608228985-14 62 91.189432 hybrid +141_1-5 Q0 MARCO_25_1372751419-41 63 91.183052 hybrid +141_1-5 Q0 MARCO_02_437616497-4 64 91.179202 hybrid +141_1-5 Q0 MARCO_34_1324045633-1 65 91.178207 hybrid +141_1-5 Q0 MARCO_11_20535053-38 66 91.175257 hybrid +141_1-5 Q0 MARCO_57_2130759412-19 67 91.172884 hybrid +141_1-5 Q0 MARCO_21_1215811358-13 68 91.172007 hybrid +141_1-5 Q0 MARCO_21_1215596926-13 69 91.164377 hybrid +141_1-5 Q0 MARCO_23_1773948224-5 70 91.164080 hybrid +141_1-5 Q0 MARCO_21_1215945659-12 71 91.153009 hybrid +141_1-5 Q0 MARCO_57_2130809178-11 72 91.126162 hybrid +141_1-5 Q0 MARCO_21_1216877318-7 73 91.119181 hybrid +141_1-5 Q0 MARCO_35_422525523-6 74 91.113024 hybrid +141_1-5 Q0 MARCO_43_241935261-5 75 91.110498 hybrid +141_1-5 Q0 MARCO_46_183281770-3 76 91.105552 hybrid +141_1-5 Q0 MARCO_21_1215533417-5 77 91.104273 hybrid +141_1-5 Q0 MARCO_25_1372658733-19 78 91.104002 hybrid +141_1-5 Q0 MARCO_06_536807595-51 79 91.087902 hybrid +141_1-5 Q0 MARCO_02_1574900723-4 80 91.086466 hybrid +141_1-5 Q0 MARCO_11_601582654-4 81 91.077600 hybrid +141_1-5 Q0 MARCO_20_1005742453-7 82 91.076902 hybrid +141_1-5 Q0 MARCO_03_1448277218-1 83 91.065852 hybrid +141_1-5 Q0 MARCO_34_1354682080-3 84 91.063501 hybrid +141_1-5 Q0 MARCO_41_1564910691-8 85 91.057352 hybrid +141_1-5 Q0 MARCO_34_1354339662-9 86 91.050127 hybrid +141_1-5 Q0 MARCO_21_578980168-5 87 91.050102 hybrid +141_1-5 Q0 MARCO_21_1216135398-7 88 91.043482 hybrid +141_1-5 Q0 MARCO_45_1528792811-1 89 91.040252 hybrid +141_1-5 Q0 MARCO_57_2130759412-11 90 91.039812 hybrid +141_1-5 Q0 MARCO_21_1215831650-8 91 91.038469 hybrid +141_1-5 Q0 MARCO_06_647187580-3 92 91.033352 hybrid +141_1-5 Q0 MARCO_21_1216438538-4 93 91.023432 hybrid +141_1-5 Q0 MARCO_44_52757815-6 94 91.015650 hybrid +141_1-5 Q0 MARCO_07_1207811088-1 95 91.014503 hybrid +141_1-5 Q0 MARCO_50_493640862-2 96 91.011368 hybrid +141_1-5 Q0 MARCO_50_523925683-11 97 91.009356 hybrid +141_1-5 Q0 MARCO_34_1324063765-3 98 91.009317 hybrid +141_1-5 Q0 MARCO_21_1216284242-2 99 91.008600 hybrid +141_1-5 Q0 MARCO_25_1373047096-23 100 90.995402 hybrid +141_2-1 Q0 MARCO_18_1642035430-2 1 90.757968 hybrid +141_2-1 Q0 MARCO_50_1399491563-1 2 90.628502 hybrid +141_2-1 Q0 MARCO_13_762551010-2 3 90.166668 hybrid +141_2-1 Q0 MARCO_02_420075955-2 4 90.134318 hybrid +141_2-1 Q0 KILT_47185-1 5 90.051318 hybrid +141_2-1 Q0 MARCO_16_1844161299-4 6 89.851618 hybrid +141_2-1 Q0 MARCO_48_821401453-15 7 89.679168 hybrid +141_2-1 Q0 MARCO_30_744759371-208 8 89.636279 hybrid +141_2-1 Q0 MARCO_37_1604568449-1 9 89.604068 hybrid +141_2-1 Q0 KILT_48458854-8 10 89.534645 hybrid +141_2-1 Q0 MARCO_48_978771114-5 11 89.531418 hybrid +141_2-1 Q0 MARCO_55_174716170-1 12 89.480018 hybrid +141_2-1 Q0 MARCO_50_1399491563-8 13 89.459753 hybrid +141_2-1 Q0 KILT_23619041-3 14 89.437468 hybrid +141_2-1 Q0 MARCO_00_594570808-6 15 89.434668 hybrid +141_2-1 Q0 MARCO_11_1278885219-1 16 89.416468 hybrid +141_2-1 Q0 MARCO_14_1199417139-6 17 89.377418 hybrid +141_2-1 Q0 MARCO_51_100562040-3 18 89.363368 hybrid +141_2-1 Q0 MARCO_46_33251902-3 19 89.300068 hybrid +141_2-1 Q0 MARCO_35_881676792-3 20 89.297418 hybrid +141_2-1 Q0 MARCO_00_594570808-48 21 89.289468 hybrid +141_2-1 Q0 MARCO_57_1170590839-31 22 89.288968 hybrid +141_2-1 Q0 MARCO_01_2035501874-1 23 89.284218 hybrid +141_2-1 Q0 MARCO_54_542883391-5 24 89.264168 hybrid +141_2-1 Q0 MARCO_28_1650353096-10 25 89.233418 hybrid +141_2-1 Q0 MARCO_09_536285044-33 26 89.230693 hybrid +141_2-1 Q0 MARCO_24_1629894509-1 27 89.207818 hybrid +141_2-1 Q0 MARCO_28_590453689-9 28 89.192018 hybrid +141_2-1 Q0 MARCO_03_1683965616-2 29 89.183961 hybrid +141_2-1 Q0 MARCO_19_1586568171-1 30 89.176718 hybrid +141_2-1 Q0 MARCO_44_670736229-1 31 89.166068 hybrid +141_2-1 Q0 MARCO_06_411156498-9 32 89.155668 hybrid +141_2-1 Q0 MARCO_40_214920832-19 33 89.149818 hybrid +141_2-1 Q0 MARCO_57_614712155-5 34 89.129215 hybrid +141_2-1 Q0 MARCO_11_951426816-6 35 89.127368 hybrid +141_2-1 Q0 MARCO_40_557668553-6 36 89.112887 hybrid +141_2-1 Q0 MARCO_40_557532912-3 37 89.104182 hybrid +141_2-1 Q0 MARCO_24_1121333174-9 38 89.082318 hybrid +141_2-1 Q0 MARCO_17_1218658426-4 39 89.066168 hybrid +141_2-1 Q0 MARCO_47_1302198068-14 40 89.057068 hybrid +141_2-1 Q0 MARCO_35_881676792-2 41 89.053768 hybrid +141_2-1 Q0 MARCO_47_1303047283-15 42 89.051218 hybrid +141_2-1 Q0 KILT_20829722-39 43 89.041868 hybrid +141_2-1 Q0 MARCO_15_481036841-8 44 89.033631 hybrid +141_2-1 Q0 MARCO_23_1061629128-4 45 89.019568 hybrid +141_2-1 Q0 KILT_45852-1 46 89.012468 hybrid +141_2-1 Q0 MARCO_04_1159615199-2 47 88.993060 hybrid +141_2-1 Q0 MARCO_28_338626275-4 48 88.989245 hybrid +141_2-1 Q0 MARCO_50_1056559959-61 49 88.984768 hybrid +141_2-1 Q0 MARCO_09_1357168570-3 50 88.983768 hybrid +141_2-1 Q0 MARCO_00_594570808-8 51 88.972368 hybrid +141_2-1 Q0 MARCO_12_2009249463-19 52 88.964168 hybrid +141_2-1 Q0 MARCO_17_4108448752-3 53 88.958468 hybrid +141_2-1 Q0 MARCO_30_158585360-4 54 88.937579 hybrid +141_2-1 Q0 MARCO_27_13537265-4 55 88.937168 hybrid +141_2-1 Q0 KILT_20829722-14 56 88.923068 hybrid +141_2-1 Q0 MARCO_12_1166874951-11 57 88.909068 hybrid +141_2-1 Q0 MARCO_10_911962282-15 58 88.904231 hybrid +141_2-1 Q0 KILT_47185-3 59 88.896318 hybrid +141_2-1 Q0 MARCO_28_313753082-2 60 88.893418 hybrid +141_2-1 Q0 MARCO_02_407019929-7 61 88.890018 hybrid +141_2-1 Q0 MARCO_48_386559405-2 62 88.887518 hybrid +141_2-1 Q0 MARCO_57_1348063588-3 63 88.870799 hybrid +141_2-1 Q0 MARCO_31_1848021068-3 64 88.861968 hybrid +141_2-1 Q0 MARCO_31_1417372292-2 65 88.861318 hybrid +141_2-1 Q0 MARCO_14_1549971571-20 66 88.858016 hybrid +141_2-1 Q0 MARCO_40_560927337-23 67 88.853625 hybrid +141_2-1 Q0 MARCO_40_561044944-4 68 88.849223 hybrid +141_2-1 Q0 MARCO_48_978698970-6 69 88.832980 hybrid +141_2-1 Q0 MARCO_02_397758402-3 70 88.830018 hybrid +141_2-1 Q0 MARCO_01_1705298236-3 71 88.827468 hybrid +141_2-1 Q0 MARCO_00_594936998-15 72 88.827467 hybrid +141_2-1 Q0 KILT_34997299-1 73 88.824018 hybrid +141_2-1 Q0 MARCO_36_21091353-7 74 88.819682 hybrid +141_2-1 Q0 MARCO_18_1642035430-3 75 88.811665 hybrid +141_2-1 Q0 MARCO_01_2035501874-3 76 88.808568 hybrid +141_2-1 Q0 MARCO_30_1807188622-4 77 88.803622 hybrid +141_2-1 Q0 MARCO_57_1348084641-2 78 88.800616 hybrid +141_2-1 Q0 MARCO_10_911778428-12 79 88.800426 hybrid +141_2-1 Q0 KILT_28333656-3 80 88.796768 hybrid +141_2-1 Q0 MARCO_26_1436267815-4 81 88.796668 hybrid +141_2-1 Q0 MARCO_52_1529849136-3 82 88.795218 hybrid +141_2-1 Q0 MARCO_04_580139221-3 83 88.787168 hybrid +141_2-1 Q0 MARCO_33_1427519249-7 84 88.785354 hybrid +141_2-1 Q0 MARCO_09_1195740437-3 85 88.784320 hybrid +141_2-1 Q0 MARCO_46_263053540-3 86 88.781901 hybrid +141_2-1 Q0 MARCO_19_2322308441-5 87 88.781368 hybrid +141_2-1 Q0 MARCO_20_402078847-26 88 88.779468 hybrid +141_2-1 Q0 MARCO_37_1558416988-2 89 88.778918 hybrid +141_2-1 Q0 MARCO_50_2761743467-7 90 88.777718 hybrid +141_2-1 Q0 MARCO_19_1512428476-1 91 88.776368 hybrid +141_2-1 Q0 MARCO_19_1512428476-7 92 88.772918 hybrid +141_2-1 Q0 MARCO_37_1604568449-2 93 88.771918 hybrid +141_2-1 Q0 MARCO_09_1729161648-6 94 88.771068 hybrid +141_2-1 Q0 MARCO_02_407019929-1 95 88.768718 hybrid +141_2-1 Q0 MARCO_16_3430220161-2 96 88.764718 hybrid +141_2-1 Q0 MARCO_40_562350218-4 97 88.758159 hybrid +141_2-1 Q0 MARCO_27_781217732-15 98 88.757268 hybrid +141_2-1 Q0 MARCO_02_1090267864-6 99 88.755718 hybrid +141_2-1 Q0 MARCO_48_1744657452-3 100 88.754672 hybrid +141_2-11 Q0 MARCO_28_313753082-1 1 92.677653 hybrid +141_2-11 Q0 MARCO_28_313753082-2 2 92.253214 hybrid +141_2-11 Q0 MARCO_18_1642035430-1 3 91.673390 hybrid +141_2-11 Q0 MARCO_28_313753082-4 4 91.573300 hybrid +141_2-11 Q0 MARCO_15_600646838-2 5 91.418519 hybrid +141_2-11 Q0 MARCO_18_1642035430-9 6 91.299284 hybrid +141_2-11 Q0 MARCO_36_840746247-2 7 91.211864 hybrid +141_2-11 Q0 MARCO_18_1642035430-8 8 91.128915 hybrid +141_2-11 Q0 MARCO_18_1642035430-6 9 91.043218 hybrid +141_2-11 Q0 MARCO_09_1357168570-2 10 90.897234 hybrid +141_2-11 Q0 MARCO_36_840746247-1 11 90.866303 hybrid +141_2-11 Q0 MARCO_18_1642035430-14 12 90.833075 hybrid +141_2-11 Q0 MARCO_18_1642035430-3 13 90.819676 hybrid +141_2-11 Q0 MARCO_04_859221613-3 14 90.779461 hybrid +141_2-11 Q0 MARCO_46_1389837794-1 15 90.670034 hybrid +141_2-11 Q0 MARCO_27_1202500253-6 16 90.659155 hybrid +141_2-11 Q0 MARCO_12_1869314530-5 17 90.655451 hybrid +141_2-11 Q0 MARCO_18_1642035430-4 18 90.646204 hybrid +141_2-11 Q0 MARCO_57_614712155-2 19 90.624223 hybrid +141_2-11 Q0 MARCO_18_1642035430-2 20 90.559015 hybrid +141_2-11 Q0 MARCO_04_859221613-4 21 90.484720 hybrid +141_2-11 Q0 MARCO_27_1237112784-2 22 90.482660 hybrid +141_2-11 Q0 MARCO_11_697159170-6 23 90.413232 hybrid +141_2-11 Q0 MARCO_18_1642035430-7 24 90.396006 hybrid +141_2-11 Q0 MARCO_48_290493236-2 25 90.382480 hybrid +141_2-11 Q0 MARCO_44_623879817-4 26 90.308221 hybrid +141_2-11 Q0 MARCO_18_1642035430-13 27 90.267190 hybrid +141_2-11 Q0 MARCO_01_1858000790-4 28 90.258310 hybrid +141_2-11 Q0 MARCO_48_978771114-5 29 90.223879 hybrid +141_2-11 Q0 MARCO_28_313753082-6 30 90.086173 hybrid +141_2-11 Q0 MARCO_09_1357168570-3 31 90.026324 hybrid +141_2-11 Q0 MARCO_50_1309249709-17 32 90.024910 hybrid +141_2-11 Q0 MARCO_43_1278352692-1 33 90.013144 hybrid +141_2-11 Q0 MARCO_01_1029009611-33 34 90.005394 hybrid +141_2-11 Q0 MARCO_28_1650353096-10 35 89.963310 hybrid +141_2-11 Q0 MARCO_14_1486751720-2 36 89.924713 hybrid +141_2-11 Q0 MARCO_00_745300140-4 37 89.888960 hybrid +141_2-11 Q0 MARCO_09_810936368-2 38 89.883360 hybrid +141_2-11 Q0 MARCO_07_789633719-9 39 89.857560 hybrid +141_2-11 Q0 MARCO_27_1801624-6 40 89.824147 hybrid +141_2-11 Q0 MARCO_57_614712155-5 41 89.786352 hybrid +141_2-11 Q0 MARCO_50_888083362-6 42 89.771660 hybrid +141_2-11 Q0 MARCO_32_152519263-54 43 89.757526 hybrid +141_2-11 Q0 MARCO_12_1869158091-17 44 89.756200 hybrid +141_2-11 Q0 MARCO_19_1512428476-1 45 89.753660 hybrid +141_2-11 Q0 MARCO_01_1705298236-3 46 89.709610 hybrid +141_2-11 Q0 MARCO_51_1483456084-1 47 89.708710 hybrid +141_2-11 Q0 MARCO_56_282974175-1 48 89.694587 hybrid +141_2-11 Q0 MARCO_25_518866882-5 49 89.684523 hybrid +141_2-11 Q0 MARCO_02_589263084-1 50 89.622160 hybrid +141_2-11 Q0 MARCO_09_1541907932-3 51 89.607589 hybrid +141_2-11 Q0 MARCO_09_1357168570-1 52 89.605652 hybrid +141_2-11 Q0 MARCO_57_614712155-4 53 89.591182 hybrid +141_2-11 Q0 MARCO_27_1695051807-23 54 89.591160 hybrid +141_2-11 Q0 MARCO_57_286606536-2 55 89.586110 hybrid +141_2-11 Q0 MARCO_14_1550321504-4 56 89.583941 hybrid +141_2-11 Q0 MARCO_50_1399491563-1 57 89.575580 hybrid +141_2-11 Q0 MARCO_20_502984134-3 58 89.571210 hybrid +141_2-11 Q0 MARCO_56_83934705-2 59 89.553310 hybrid +141_2-11 Q0 MARCO_43_710569550-6 60 89.517008 hybrid +141_2-11 Q0 MARCO_57_614712155-3 61 89.507663 hybrid +141_2-11 Q0 MARCO_19_2555634512-2 62 89.459026 hybrid +141_2-11 Q0 MARCO_59_636003786-5 63 89.445960 hybrid +141_2-11 Q0 KILT_613433-17 64 89.437236 hybrid +141_2-11 Q0 MARCO_51_1483456084-2 65 89.412310 hybrid +141_2-11 Q0 MARCO_02_407019929-8 66 89.409260 hybrid +141_2-11 Q0 MARCO_37_1604568449-2 67 89.391810 hybrid +141_2-11 Q0 MARCO_30_826115762-1 68 89.365999 hybrid +141_2-11 Q0 KILT_47185-8 69 89.360910 hybrid +141_2-11 Q0 MARCO_03_263166621-1 70 89.357710 hybrid +141_2-11 Q0 MARCO_18_1642035430-12 71 89.350355 hybrid +141_2-11 Q0 MARCO_32_277789126-1 72 89.337460 hybrid +141_2-11 Q0 MARCO_02_407019929-7 73 89.336610 hybrid +141_2-11 Q0 MARCO_41_1954910648-8 74 89.324610 hybrid +141_2-11 Q0 MARCO_02_407019929-2 75 89.318810 hybrid +141_2-11 Q0 MARCO_56_282980903-11 76 89.318771 hybrid +141_2-11 Q0 MARCO_52_1529875069-4 77 89.317810 hybrid +141_2-11 Q0 MARCO_02_407019929-13 78 89.306710 hybrid +141_2-11 Q0 MARCO_52_1529875069-5 79 89.304060 hybrid +141_2-11 Q0 MARCO_54_542883391-5 80 89.300060 hybrid +141_2-11 Q0 MARCO_44_740722524-2 81 89.299110 hybrid +141_2-11 Q0 MARCO_18_3002209009-69 82 89.285060 hybrid +141_2-11 Q0 MARCO_01_994121131-1 83 89.283410 hybrid +141_2-11 Q0 MARCO_44_647739316-2 84 89.266560 hybrid +141_2-11 Q0 MARCO_50_1399491563-10 85 89.249352 hybrid +141_2-11 Q0 MARCO_11_1278885219-2 86 89.240010 hybrid +141_2-11 Q0 MARCO_18_1642035430-16 87 89.233233 hybrid +141_2-11 Q0 KILT_48728-61 88 89.232310 hybrid +141_2-11 Q0 MARCO_52_1529875069-1 89 89.228160 hybrid +141_2-11 Q0 MARCO_50_1399491563-8 90 89.204567 hybrid +141_2-11 Q0 MARCO_32_277789126-2 91 89.175760 hybrid +141_2-11 Q0 MARCO_37_1462768622-2 92 89.167360 hybrid +141_2-11 Q0 MARCO_40_1061509765-9 93 89.160710 hybrid +141_2-11 Q0 MARCO_06_397037872-1 94 89.151260 hybrid +141_2-11 Q0 MARCO_14_1199417139-1 95 89.133410 hybrid +141_2-11 Q0 MARCO_12_1166767672-8 96 89.131953 hybrid +141_2-11 Q0 MARCO_48_978771114-1 97 89.131516 hybrid +141_2-11 Q0 MARCO_10_224635018-3 98 89.129110 hybrid +141_2-11 Q0 MARCO_18_1642035430-15 99 89.126126 hybrid +141_2-11 Q0 MARCO_18_1642035430-17 100 89.126126 hybrid +141_2-13 Q0 MARCO_01_830855712-13 1 89.687328 hybrid +141_2-13 Q0 MARCO_01_831982137-19 2 89.380550 hybrid +141_2-13 Q0 MARCO_19_2489928640-11 3 89.380549 hybrid +141_2-13 Q0 MARCO_19_2513676244-13 4 89.380534 hybrid +141_2-13 Q0 MARCO_01_829924766-18 5 89.333229 hybrid +141_2-13 Q0 MARCO_50_2155141197-19 6 89.201824 hybrid +141_2-13 Q0 MARCO_16_449364321-1 7 89.069346 hybrid +141_2-13 Q0 MARCO_30_900016222-24 8 88.908128 hybrid +141_2-13 Q0 MARCO_36_854332665-4 9 88.697171 hybrid +141_2-13 Q0 MARCO_40_1750784239-26 10 88.688621 hybrid +141_2-13 Q0 MARCO_44_608217445-1 11 88.584933 hybrid +141_2-13 Q0 MARCO_34_1003279232-5 12 88.561621 hybrid +141_2-13 Q0 MARCO_16_449364321-3 13 88.496790 hybrid +141_2-13 Q0 MARCO_00_1286684700-3 14 88.319071 hybrid +141_2-13 Q0 MARCO_16_2769231193-41 15 88.310771 hybrid +141_2-13 Q0 MARCO_00_1286684700-5 16 88.189321 hybrid +141_2-13 Q0 MARCO_34_1002676375-6 17 88.163571 hybrid +141_2-13 Q0 MARCO_22_1252478862-3 18 88.119571 hybrid +141_2-13 Q0 MARCO_25_1440064272-8 19 88.113039 hybrid +141_2-13 Q0 MARCO_16_449364321-10 20 88.109488 hybrid +141_2-13 Q0 MARCO_14_665767216-5 21 88.093621 hybrid +141_2-13 Q0 MARCO_14_1550361835-7 22 88.077079 hybrid +141_2-13 Q0 MARCO_16_4043114873-17 23 88.049171 hybrid +141_2-13 Q0 MARCO_28_41600890-9 24 88.037380 hybrid +141_2-13 Q0 MARCO_50_2155141197-18 25 88.014956 hybrid +141_2-13 Q0 MARCO_13_1439475348-9 26 87.988221 hybrid +141_2-13 Q0 MARCO_48_1441737376-6 27 87.951721 hybrid +141_2-13 Q0 KILT_56071119-7 28 87.932721 hybrid +141_2-13 Q0 MARCO_40_1241317956-1 29 87.931921 hybrid +141_2-13 Q0 MARCO_50_938168189-30 30 87.891924 hybrid +141_2-13 Q0 MARCO_56_958635063-1 31 87.860021 hybrid +141_2-13 Q0 MARCO_16_4043114873-1 32 87.837721 hybrid +141_2-13 Q0 MARCO_01_829924766-21 33 87.827760 hybrid +141_2-13 Q0 MARCO_01_831982137-22 34 87.827759 hybrid +141_2-13 Q0 MARCO_19_2489928640-14 35 87.827759 hybrid +141_2-13 Q0 MARCO_19_2513676244-16 36 87.827758 hybrid +141_2-13 Q0 MARCO_46_400607902-2 37 87.825821 hybrid +141_2-13 Q0 MARCO_23_267038408-1 38 87.821671 hybrid +141_2-13 Q0 MARCO_01_831982137-21 39 87.799766 hybrid +141_2-13 Q0 MARCO_19_2489928640-13 40 87.799764 hybrid +141_2-13 Q0 MARCO_19_2513676244-15 41 87.799763 hybrid +141_2-13 Q0 KILT_56071119-1 42 87.789821 hybrid +141_2-13 Q0 MARCO_35_305221230-3 43 87.757875 hybrid +141_2-13 Q0 MARCO_12_2009744151-1 44 87.732171 hybrid +141_2-13 Q0 MARCO_20_507073044-6 45 87.715771 hybrid +141_2-13 Q0 MARCO_24_1120060666-5 46 87.711321 hybrid +141_2-13 Q0 MARCO_36_854332665-1 47 87.698471 hybrid +141_2-13 Q0 MARCO_48_1441737376-1 48 87.679021 hybrid +141_2-13 Q0 MARCO_50_802872013-16 49 87.663721 hybrid +141_2-13 Q0 MARCO_26_921568583-3 50 87.660571 hybrid +141_2-13 Q0 MARCO_37_423739811-1 51 87.649571 hybrid +141_2-13 Q0 MARCO_34_1003534459-4 52 87.629771 hybrid +141_2-13 Q0 MARCO_50_286787825-2 53 87.626371 hybrid +141_2-13 Q0 MARCO_40_1750832933-1 54 87.623571 hybrid +141_2-13 Q0 MARCO_19_2537559232-2 55 87.621171 hybrid +141_2-13 Q0 MARCO_17_2543288164-5 56 87.620271 hybrid +141_2-13 Q0 MARCO_48_598907350-14 57 87.618171 hybrid +141_2-13 Q0 MARCO_13_139103428-2 58 87.598698 hybrid +141_2-13 Q0 MARCO_25_297146258-9 59 87.595821 hybrid +141_2-13 Q0 MARCO_44_710412798-5 60 87.584921 hybrid +141_2-13 Q0 MARCO_47_1301661852-23 61 87.584921 hybrid +141_2-13 Q0 MARCO_14_1550310400-5 62 87.571930 hybrid +141_2-13 Q0 MARCO_00_1286684700-4 63 87.569371 hybrid +141_2-13 Q0 MARCO_41_1707206451-10 64 87.552571 hybrid +141_2-13 Q0 MARCO_14_1554596026-6 65 87.549519 hybrid +141_2-13 Q0 MARCO_12_1872201330-1 66 87.508271 hybrid +141_2-13 Q0 MARCO_16_449364321-11 67 87.505886 hybrid +141_2-13 Q0 MARCO_12_1167771301-12 68 87.493640 hybrid +141_2-13 Q0 MARCO_50_1876477087-139 69 87.488271 hybrid +141_2-13 Q0 KILT_57092775-1 70 87.480971 hybrid +141_2-13 Q0 MARCO_19_2537559232-1 71 87.480821 hybrid +141_2-13 Q0 MARCO_16_4043114873-3 72 87.480471 hybrid +141_2-13 Q0 MARCO_44_658616880-3 73 87.466821 hybrid +141_2-13 Q0 MARCO_01_830855712-15 74 87.457481 hybrid +141_2-13 Q0 MARCO_12_2008901471-3 75 87.453521 hybrid +141_2-13 Q0 MARCO_21_190181953-4 76 87.453521 hybrid +141_2-13 Q0 MARCO_40_1214550829-5 77 87.453520 hybrid +141_2-13 Q0 MARCO_22_1248997535-2 78 87.419321 hybrid +141_2-13 Q0 MARCO_36_1101942727-8 79 87.411732 hybrid +141_2-13 Q0 MARCO_36_1101870115-12 80 87.411732 hybrid +141_2-13 Q0 MARCO_16_4043114873-10 81 87.411471 hybrid +141_2-13 Q0 MARCO_29_1334919388-38 82 87.407322 hybrid +141_2-13 Q0 MARCO_24_385123947-1 83 87.402521 hybrid +141_2-13 Q0 MARCO_50_1754952024-25 84 87.397121 hybrid +141_2-13 Q0 MARCO_50_1890744981-13 85 87.397121 hybrid +141_2-13 Q0 MARCO_45_1625486606-1 86 87.366921 hybrid +141_2-13 Q0 MARCO_34_256175571-8 87 87.365221 hybrid +141_2-13 Q0 MARCO_24_1142513708-3 88 87.365080 hybrid +141_2-13 Q0 MARCO_01_829924766-20 89 87.357568 hybrid +141_2-13 Q0 MARCO_14_1549730517-6 90 87.347020 hybrid +141_2-13 Q0 MARCO_23_1832243809-1 91 87.343075 hybrid +141_2-13 Q0 KILT_36662188-21 92 87.338371 hybrid +141_2-13 Q0 MARCO_23_180934152-2 93 87.338370 hybrid +141_2-13 Q0 KILT_36662188-19 94 87.336021 hybrid +141_2-13 Q0 MARCO_46_97484708-12 95 87.336021 hybrid +141_2-13 Q0 MARCO_14_1550215043-32 96 87.333962 hybrid +141_2-13 Q0 MARCO_50_1673836905-46 97 87.329052 hybrid +141_2-13 Q0 MARCO_50_908244450-13 98 87.328021 hybrid +141_2-13 Q0 MARCO_40_1187574595-3 99 87.324583 hybrid +141_2-13 Q0 MARCO_41_1669217714-2 100 87.324371 hybrid +141_2-3 Q0 MARCO_28_313753082-2 1 91.974500 hybrid +141_2-3 Q0 MARCO_18_1642035430-6 2 91.680428 hybrid +141_2-3 Q0 MARCO_36_840746247-2 3 91.075567 hybrid +141_2-3 Q0 MARCO_18_1642035430-8 4 90.926804 hybrid +141_2-3 Q0 MARCO_48_290493236-2 5 90.786752 hybrid +141_2-3 Q0 MARCO_44_623879817-4 6 90.725158 hybrid +141_2-3 Q0 MARCO_18_1642035430-1 7 90.423461 hybrid +141_2-3 Q0 MARCO_28_313753082-1 8 90.417883 hybrid +141_2-3 Q0 MARCO_28_313753082-4 9 90.160191 hybrid +141_2-3 Q0 MARCO_18_1642035430-14 10 90.127485 hybrid +141_2-3 Q0 MARCO_46_1389837794-1 11 90.111608 hybrid +141_2-3 Q0 MARCO_18_1642035430-9 12 90.000981 hybrid +141_2-3 Q0 MARCO_12_1869314530-5 13 89.894732 hybrid +141_2-3 Q0 MARCO_18_1642035430-2 14 89.880693 hybrid +141_2-3 Q0 MARCO_18_1642035430-7 15 89.831610 hybrid +141_2-3 Q0 KILT_29441521-2 16 89.689262 hybrid +141_2-3 Q0 MARCO_18_1642035430-4 17 89.601618 hybrid +141_2-3 Q0 MARCO_36_840746247-1 18 89.481319 hybrid +141_2-3 Q0 MARCO_09_1357168570-2 19 89.442060 hybrid +141_2-3 Q0 MARCO_52_1529875069-1 20 89.371728 hybrid +141_2-3 Q0 MARCO_51_1483456084-1 21 89.318878 hybrid +141_2-3 Q0 MARCO_02_420075955-1 22 89.280078 hybrid +141_2-3 Q0 MARCO_14_1199417139-1 23 89.276978 hybrid +141_2-3 Q0 MARCO_48_978771114-5 24 89.275209 hybrid +141_2-3 Q0 MARCO_14_1549971571-20 25 89.237129 hybrid +141_2-3 Q0 MARCO_18_1642035430-3 26 89.206254 hybrid +141_2-3 Q0 MARCO_41_2084044692-3 27 89.195103 hybrid +141_2-3 Q0 MARCO_50_1309249709-17 28 89.179278 hybrid +141_2-3 Q0 MARCO_14_1486751720-2 29 89.170272 hybrid +141_2-3 Q0 MARCO_15_600646838-2 30 89.089143 hybrid +141_2-3 Q0 MARCO_32_152519263-54 31 89.065242 hybrid +141_2-3 Q0 MARCO_57_614712155-2 32 89.058189 hybrid +141_2-3 Q0 MARCO_18_1642035430-13 33 89.028925 hybrid +141_2-3 Q0 MARCO_09_1357168570-1 34 89.027061 hybrid +141_2-3 Q0 MARCO_52_1529849136-1 35 89.024378 hybrid +141_2-3 Q0 MARCO_51_1483456084-2 36 89.022479 hybrid +141_2-3 Q0 MARCO_57_286606536-1 37 89.004229 hybrid +141_2-3 Q0 MARCO_46_1450320711-3 38 88.943251 hybrid +141_2-3 Q0 MARCO_19_2322308441-5 39 88.922678 hybrid +141_2-3 Q0 MARCO_27_1202500253-6 40 88.899778 hybrid +141_2-3 Q0 MARCO_54_345126522-1 41 88.819678 hybrid +141_2-3 Q0 KILT_20829722-1 42 88.814229 hybrid +141_2-3 Q0 MARCO_11_697159170-6 43 88.778464 hybrid +141_2-3 Q0 MARCO_37_1462768622-1 44 88.772878 hybrid +141_2-3 Q0 MARCO_25_518866882-5 45 88.728567 hybrid +141_2-3 Q0 MARCO_44_740722524-2 46 88.710128 hybrid +141_2-3 Q0 MARCO_30_826115762-1 47 88.676210 hybrid +141_2-3 Q0 MARCO_40_1675561799-4 48 88.669929 hybrid +141_2-3 Q0 KILT_47185-7 49 88.666928 hybrid +141_2-3 Q0 MARCO_56_83934705-2 50 88.666228 hybrid +141_2-3 Q0 MARCO_02_589263084-1 51 88.664979 hybrid +141_2-3 Q0 MARCO_19_1512428476-1 52 88.657778 hybrid +141_2-3 Q0 MARCO_18_1642035430-12 53 88.643856 hybrid +141_2-3 Q0 MARCO_57_614712155-5 54 88.624156 hybrid +141_2-3 Q0 MARCO_57_286606536-5 55 88.601829 hybrid +141_2-3 Q0 KILT_20829722-3 56 88.585378 hybrid +141_2-3 Q0 MARCO_57_286606536-2 57 88.583529 hybrid +141_2-3 Q0 MARCO_07_1191803437-4 58 88.545678 hybrid +141_2-3 Q0 MARCO_14_1199417139-3 59 88.541528 hybrid +141_2-3 Q0 MARCO_44_1466399527-2 60 88.512778 hybrid +141_2-3 Q0 MARCO_37_1462768622-3 61 88.509129 hybrid +141_2-3 Q0 MARCO_09_1541907932-3 62 88.487716 hybrid +141_2-3 Q0 MARCO_02_407019929-2 63 88.474178 hybrid +141_2-3 Q0 MARCO_44_764275057-1 64 88.473629 hybrid +141_2-3 Q0 MARCO_12_1869158091-17 65 88.465184 hybrid +141_2-3 Q0 MARCO_32_277789126-2 66 88.447329 hybrid +141_2-3 Q0 MARCO_52_1529875069-2 67 88.422178 hybrid +141_2-3 Q0 MARCO_44_670736229-1 68 88.420478 hybrid +141_2-3 Q0 MARCO_14_1199417139-2 69 88.416928 hybrid +141_2-3 Q0 MARCO_50_888083362-5 70 88.413078 hybrid +141_2-3 Q0 MARCO_56_282974175-1 71 88.389380 hybrid +141_2-3 Q0 MARCO_47_612064244-1 72 88.388928 hybrid +141_2-3 Q0 MARCO_32_277789126-1 73 88.388278 hybrid +141_2-3 Q0 MARCO_28_313753082-5 74 88.388185 hybrid +141_2-3 Q0 MARCO_43_1278352692-1 75 88.380148 hybrid +141_2-3 Q0 MARCO_57_614712155-1 76 88.376928 hybrid +141_2-3 Q0 MARCO_19_2555634512-2 77 88.375370 hybrid +141_2-3 Q0 MARCO_09_1357168570-3 78 88.373065 hybrid +141_2-3 Q0 MARCO_28_1650353096-10 79 88.359628 hybrid +141_2-3 Q0 MARCO_04_859221613-3 80 88.359476 hybrid +141_2-3 Q0 MARCO_02_407019929-13 81 88.353579 hybrid +141_2-3 Q0 MARCO_18_1642035430-15 82 88.353567 hybrid +141_2-3 Q0 MARCO_18_1642035430-17 83 88.353566 hybrid +141_2-3 Q0 MARCO_18_1642035430-5 84 88.351027 hybrid +141_2-3 Q0 MARCO_02_407019929-8 85 88.341428 hybrid +141_2-3 Q0 MARCO_44_740722524-1 86 88.339928 hybrid +141_2-3 Q0 MARCO_37_1558416988-1 87 88.331678 hybrid +141_2-3 Q0 MARCO_04_859221613-4 88 88.331309 hybrid +141_2-3 Q0 MARCO_36_1096184208-2 89 88.329679 hybrid +141_2-3 Q0 MARCO_11_951426816-1 90 88.314128 hybrid +141_2-3 Q0 MARCO_01_1029009611-33 91 88.312188 hybrid +141_2-3 Q0 KILT_47185-6 92 88.306879 hybrid +141_2-3 Q0 KILT_45852-11 93 88.297578 hybrid +141_2-3 Q0 MARCO_28_313753082-6 94 88.297515 hybrid +141_2-3 Q0 MARCO_00_1701026419-1 95 88.295478 hybrid +141_2-3 Q0 MARCO_03_263166621-1 96 88.289828 hybrid +141_2-3 Q0 MARCO_37_1604568449-2 97 88.284428 hybrid +141_2-3 Q0 MARCO_11_1278885219-2 98 88.282828 hybrid +141_2-3 Q0 MARCO_01_1858000790-4 99 88.256528 hybrid +141_2-3 Q0 MARCO_01_994121131-1 100 88.215528 hybrid +141_2-5 Q0 KILT_59601191-15 1 91.389655 hybrid +141_2-5 Q0 KILT_59601191-14 2 91.149155 hybrid +141_2-5 Q0 KILT_59601191-1 3 90.486105 hybrid +141_2-5 Q0 KILT_59601191-3 4 90.085655 hybrid +141_2-5 Q0 MARCO_16_1727721624-4 5 89.904805 hybrid +141_2-5 Q0 KILT_47185-1 6 89.847205 hybrid +141_2-5 Q0 KILT_59601191-13 7 89.597855 hybrid +141_2-5 Q0 MARCO_18_1642035430-1 8 89.549504 hybrid +141_2-5 Q0 MARCO_44_740722524-2 9 89.549503 hybrid +141_2-5 Q0 KILT_59601191-11 10 89.525955 hybrid +141_2-5 Q0 MARCO_50_1321848492-11 11 89.457954 hybrid +141_2-5 Q0 KILT_382697-4 12 88.838255 hybrid +141_2-5 Q0 KILT_23004368-1 13 88.484005 hybrid +141_2-5 Q0 KILT_34768-6 14 88.242055 hybrid +141_2-5 Q0 MARCO_16_1240512591-8 15 88.184155 hybrid +141_2-5 Q0 KILT_59601191-5 16 88.120055 hybrid +141_2-5 Q0 KILT_25015270-1 17 87.911505 hybrid +141_2-5 Q0 MARCO_48_2046575553-1 18 87.668105 hybrid +141_2-5 Q0 MARCO_38_198564457-1 19 87.627505 hybrid +141_2-5 Q0 MARCO_25_914232632-1 20 87.535205 hybrid +141_2-5 Q0 MARCO_30_382651380-30 21 87.492578 hybrid +141_2-5 Q0 MARCO_03_1656664215-2 22 87.479055 hybrid +141_2-5 Q0 MARCO_17_3853295482-52 23 87.392355 hybrid +141_2-5 Q0 MARCO_54_212717219-1 24 87.333705 hybrid +141_2-5 Q0 MARCO_13_618209299-30 25 87.329805 hybrid +141_2-5 Q0 MARCO_27_951354830-8 26 87.320205 hybrid +141_2-5 Q0 KILT_22885261-2 27 87.315905 hybrid +141_2-5 Q0 KILT_47185-11 28 87.315904 hybrid +141_2-5 Q0 MARCO_35_826595331-1 29 87.294405 hybrid +141_2-5 Q0 MARCO_41_1440865516-19 30 87.266755 hybrid +141_2-5 Q0 KILT_28286904-1 31 87.246605 hybrid +141_2-5 Q0 KILT_4623493-1 32 87.246604 hybrid +141_2-5 Q0 MARCO_17_4108448752-3 33 87.246604 hybrid +141_2-5 Q0 MARCO_03_1646803683-3 34 87.197055 hybrid +141_2-5 Q0 KILT_59601191-7 35 87.192855 hybrid +141_2-5 Q0 KILT_3697391-2 36 87.178955 hybrid +141_2-5 Q0 MARCO_18_1672128934-17 37 87.178954 hybrid +141_2-5 Q0 KILT_59601191-8 38 87.167155 hybrid +141_2-5 Q0 MARCO_04_659378380-18 39 87.157305 hybrid +141_2-5 Q0 KILT_59601191-10 40 87.141655 hybrid +141_2-5 Q0 KILT_59601191-9 41 87.141654 hybrid +141_2-5 Q0 KILT_33906116-3 42 87.112755 hybrid +141_2-5 Q0 KILT_6062856-1 43 87.112754 hybrid +141_2-5 Q0 MARCO_43_1071519058-18 44 87.112754 hybrid +141_2-5 Q0 KILT_25074046-1 45 87.094855 hybrid +141_2-5 Q0 MARCO_37_1357505775-2 46 87.085005 hybrid +141_2-5 Q0 MARCO_12_535813263-1 47 87.068205 hybrid +141_2-5 Q0 MARCO_23_311439160-3 48 87.057555 hybrid +141_2-5 Q0 KILT_28333656-3 49 87.048005 hybrid +141_2-5 Q0 MARCO_18_1642035430-13 50 87.048004 hybrid +141_2-5 Q0 MARCO_55_161005766-1 51 87.005255 hybrid +141_2-5 Q0 MARCO_10_552175256-1 52 86.989455 hybrid +141_2-5 Q0 MARCO_04_189083627-4 53 86.985655 hybrid +141_2-5 Q0 KILT_20829722-1 54 86.984655 hybrid +141_2-5 Q0 MARCO_16_1237812962-8 55 86.984654 hybrid +141_2-5 Q0 MARCO_16_1242759636-29 56 86.984654 hybrid +141_2-5 Q0 MARCO_18_1672128934-19 57 86.984653 hybrid +141_2-5 Q0 MARCO_34_1359246125-7 58 86.970655 hybrid +141_2-5 Q0 MARCO_23_337257153-46 59 86.963255 hybrid +141_2-5 Q0 MARCO_34_1359246125-2 60 86.963105 hybrid +141_2-5 Q0 MARCO_17_3853295482-59 61 86.957405 hybrid +141_2-5 Q0 MARCO_27_511392854-6 62 86.953305 hybrid +141_2-5 Q0 MARCO_37_817176554-3 63 86.943805 hybrid +141_2-5 Q0 MARCO_42_1408368694-15 64 86.941505 hybrid +141_2-5 Q0 MARCO_43_49136997-17 65 86.938905 hybrid +141_2-5 Q0 MARCO_37_817181750-3 66 86.921755 hybrid +141_2-5 Q0 MARCO_47_1103378026-3 67 86.921605 hybrid +141_2-5 Q0 MARCO_25_1048678474-1 68 86.911905 hybrid +141_2-5 Q0 KILT_26136751-1 69 86.895143 hybrid +141_2-5 Q0 MARCO_18_2601709980-7 70 86.884605 hybrid +141_2-5 Q0 MARCO_35_165406936-4 71 86.883255 hybrid +141_2-5 Q0 MARCO_06_1901146297-3 72 86.880805 hybrid +141_2-5 Q0 KILT_22352983-1 73 86.872568 hybrid +141_2-5 Q0 MARCO_40_603837177-9 74 86.867255 hybrid +141_2-5 Q0 KILT_34631031-2 75 86.866955 hybrid +141_2-5 Q0 MARCO_49_1416114335-1 76 86.865105 hybrid +141_2-5 Q0 MARCO_54_282826142-43 77 86.852755 hybrid +141_2-5 Q0 MARCO_41_1466732531-26 78 86.844605 hybrid +141_2-5 Q0 MARCO_24_667722180-1 79 86.836505 hybrid +141_2-5 Q0 MARCO_22_1818084186-3 80 86.814155 hybrid +141_2-5 Q0 MARCO_09_698743771-5 81 86.812955 hybrid +141_2-5 Q0 MARCO_20_1580416194-2 82 86.802827 hybrid +141_2-5 Q0 KILT_59601191-12 83 86.794555 hybrid +141_2-5 Q0 KILT_59601191-4 84 86.794554 hybrid +141_2-5 Q0 KILT_59601191-6 85 86.794554 hybrid +141_2-5 Q0 MARCO_40_586776943-10 86 86.775305 hybrid +141_2-5 Q0 MARCO_28_855713246-3 87 86.756055 hybrid +141_2-5 Q0 MARCO_18_482698154-5 88 86.753870 hybrid +141_2-5 Q0 KILT_30885435-21 89 86.753705 hybrid +141_2-5 Q0 MARCO_19_474670237-4 90 86.736307 hybrid +141_2-5 Q0 MARCO_42_1408368694-4 91 86.732505 hybrid +141_2-5 Q0 MARCO_41_1311610652-37 92 86.731555 hybrid +141_2-5 Q0 KILT_59361293-1 93 86.727983 hybrid +141_2-5 Q0 MARCO_03_1656664215-1 94 86.726655 hybrid +141_2-5 Q0 MARCO_03_1599865544-1 95 86.723855 hybrid +141_2-5 Q0 MARCO_58_1131848681-2 96 86.722655 hybrid +141_2-5 Q0 MARCO_07_1129366527-41 97 86.714905 hybrid +141_2-5 Q0 KILT_58618294-1 98 86.709054 hybrid +141_2-5 Q0 MARCO_04_857731883-1 99 86.703605 hybrid +141_2-5 Q0 MARCO_40_594295013-10 100 86.701655 hybrid +141_2-7 Q0 MARCO_18_1642035430-7 1 93.039064 hybrid +141_2-7 Q0 MARCO_18_1642035430-8 2 92.727467 hybrid +141_2-7 Q0 MARCO_18_1642035430-6 3 92.726806 hybrid +141_2-7 Q0 MARCO_18_1642035430-2 4 92.396251 hybrid +141_2-7 Q0 MARCO_28_313753082-1 5 92.097861 hybrid +141_2-7 Q0 MARCO_18_1642035430-10 6 91.457305 hybrid +141_2-7 Q0 MARCO_36_840746247-2 7 91.240908 hybrid +141_2-7 Q0 MARCO_18_1642035430-1 8 91.229042 hybrid +141_2-7 Q0 MARCO_01_1029009611-33 9 91.103227 hybrid +141_2-7 Q0 MARCO_48_978771114-5 10 90.983011 hybrid +141_2-7 Q0 MARCO_46_1389837794-1 11 90.965125 hybrid +141_2-7 Q0 MARCO_27_1237980931-9 12 90.952383 hybrid +141_2-7 Q0 MARCO_18_1642035430-9 13 90.881494 hybrid +141_2-7 Q0 MARCO_28_41657031-10 14 90.859526 hybrid +141_2-7 Q0 MARCO_27_1202500253-6 15 90.858363 hybrid +141_2-7 Q0 MARCO_28_313753082-2 16 90.838373 hybrid +141_2-7 Q0 MARCO_52_1529875069-1 17 90.835799 hybrid +141_2-7 Q0 MARCO_00_594936998-15 18 90.784349 hybrid +141_2-7 Q0 MARCO_12_1166767672-8 19 90.750255 hybrid +141_2-7 Q0 MARCO_08_190244827-56 20 90.732649 hybrid +141_2-7 Q0 MARCO_00_594570808-147 21 90.691149 hybrid +141_2-7 Q0 MARCO_40_1675561799-4 22 90.654049 hybrid +141_2-7 Q0 KILT_53556985-1 23 90.644945 hybrid +141_2-7 Q0 MARCO_36_840746247-1 24 90.632190 hybrid +141_2-7 Q0 MARCO_14_1199417139-1 25 90.608299 hybrid +141_2-7 Q0 MARCO_28_313753082-4 26 90.607958 hybrid +141_2-7 Q0 MARCO_15_600646838-2 27 90.562678 hybrid +141_2-7 Q0 MARCO_04_859221613-3 28 90.543114 hybrid +141_2-7 Q0 MARCO_03_263166621-1 29 90.535899 hybrid +141_2-7 Q0 MARCO_01_2035501874-5 30 90.529999 hybrid +141_2-7 Q0 MARCO_44_623879817-4 31 90.514772 hybrid +141_2-7 Q0 MARCO_12_1166874951-11 32 90.434153 hybrid +141_2-7 Q0 MARCO_44_743272561-3 33 90.405799 hybrid +141_2-7 Q0 MARCO_27_1695883043-2 34 90.402749 hybrid +141_2-7 Q0 MARCO_56_920297485-15 35 90.367649 hybrid +141_2-7 Q0 MARCO_19_1512428476-2 36 90.367199 hybrid +141_2-7 Q0 MARCO_25_518866882-5 37 90.344947 hybrid +141_2-7 Q0 MARCO_12_1869158091-17 38 90.338003 hybrid +141_2-7 Q0 MARCO_59_636003786-1 39 90.324849 hybrid +141_2-7 Q0 MARCO_18_3002209009-69 40 90.314599 hybrid +141_2-7 Q0 MARCO_18_1642035430-3 41 90.304698 hybrid +141_2-7 Q0 KILT_48728-61 42 90.265999 hybrid +141_2-7 Q0 MARCO_18_1642035430-14 43 90.263544 hybrid +141_2-7 Q0 MARCO_06_397037872-2 44 90.256199 hybrid +141_2-7 Q0 MARCO_57_614712155-2 45 90.242503 hybrid +141_2-7 Q0 MARCO_28_1650353096-10 46 90.230499 hybrid +141_2-7 Q0 MARCO_54_109964311-1 47 90.218899 hybrid +141_2-7 Q0 MARCO_09_1357168570-2 48 90.218587 hybrid +141_2-7 Q0 KILT_47185-7 49 90.198099 hybrid +141_2-7 Q0 MARCO_00_594570808-231 50 90.194299 hybrid +141_2-7 Q0 MARCO_18_1642035430-13 51 90.159632 hybrid +141_2-7 Q0 MARCO_09_1357168570-1 52 90.132711 hybrid +141_2-7 Q0 MARCO_56_83934705-2 53 90.131849 hybrid +141_2-7 Q0 MARCO_37_1604568449-3 54 90.129699 hybrid +141_2-7 Q0 MARCO_04_859221613-1 55 90.127078 hybrid +141_2-7 Q0 MARCO_32_152519263-54 56 90.122771 hybrid +141_2-7 Q0 MARCO_44_764275057-1 57 90.103299 hybrid +141_2-7 Q0 MARCO_01_2035501874-1 58 90.058249 hybrid +141_2-7 Q0 MARCO_14_1486751720-2 59 90.055351 hybrid +141_2-7 Q0 MARCO_18_1642035430-4 60 90.038577 hybrid +141_2-7 Q0 MARCO_54_345126522-5 61 90.004999 hybrid +141_2-7 Q0 KILT_47185-5 62 89.967799 hybrid +141_2-7 Q0 MARCO_31_295543353-7 63 89.965215 hybrid +141_2-7 Q0 MARCO_56_282974175-1 64 89.959805 hybrid +141_2-7 Q0 MARCO_14_1550321504-4 65 89.955689 hybrid +141_2-7 Q0 MARCO_44_764560028-2 66 89.939349 hybrid +141_2-7 Q0 MARCO_28_447655912-10 67 89.918951 hybrid +141_2-7 Q0 MARCO_46_33251902-3 68 89.918900 hybrid +141_2-7 Q0 MARCO_09_1357168570-3 69 89.906545 hybrid +141_2-7 Q0 MARCO_11_697159170-6 70 89.901129 hybrid +141_2-7 Q0 MARCO_37_1604568449-2 71 89.890649 hybrid +141_2-7 Q0 KILT_45852-1 72 89.877699 hybrid +141_2-7 Q0 MARCO_42_1337775733-5 73 89.874700 hybrid +141_2-7 Q0 MARCO_00_1701026419-3 74 89.869899 hybrid +141_2-7 Q0 MARCO_02_407019929-2 75 89.862450 hybrid +141_2-7 Q0 KILT_613433-17 76 89.861643 hybrid +141_2-7 Q0 MARCO_09_1541907932-3 77 89.854087 hybrid +141_2-7 Q0 MARCO_48_290493236-2 78 89.838984 hybrid +141_2-7 Q0 MARCO_18_1642035430-15 79 89.830785 hybrid +141_2-7 Q0 MARCO_18_1642035430-17 80 89.830784 hybrid +141_2-7 Q0 MARCO_06_397037872-7 81 89.822049 hybrid +141_2-7 Q0 KILT_21213034-2 82 89.790649 hybrid +141_2-7 Q0 MARCO_52_1529875069-5 83 89.786749 hybrid +141_2-7 Q0 KILT_39206304-1 84 89.776349 hybrid +141_2-7 Q0 MARCO_08_190244827-19 85 89.769249 hybrid +141_2-7 Q0 MARCO_18_1887785741-8 86 89.746699 hybrid +141_2-7 Q0 MARCO_27_1695883043-3 87 89.746299 hybrid +141_2-7 Q0 MARCO_01_994121131-1 88 89.742350 hybrid +141_2-7 Q0 MARCO_11_951426816-6 89 89.739100 hybrid +141_2-7 Q0 KILT_236093-7 90 89.737700 hybrid +141_2-7 Q0 MARCO_43_710569550-1 91 89.722240 hybrid +141_2-7 Q0 KILT_45852-14 92 89.696699 hybrid +141_2-7 Q0 MARCO_12_1166767672-33 93 89.689481 hybrid +141_2-7 Q0 MARCO_00_594570808-29 94 89.674599 hybrid +141_2-7 Q0 MARCO_25_927576905-22 95 89.672749 hybrid +141_2-7 Q0 KILT_45852-19 96 89.670799 hybrid +141_2-7 Q0 MARCO_01_2035501874-4 97 89.639199 hybrid +141_2-7 Q0 MARCO_15_401680439-3 98 89.639199 hybrid +141_2-7 Q0 MARCO_14_1199417139-3 99 89.629949 hybrid +141_2-7 Q0 MARCO_04_859221613-4 100 89.629237 hybrid +141_2-9 Q0 MARCO_25_338337063-5 1 88.500587 hybrid +141_2-9 Q0 MARCO_29_1105653731-18 2 88.186787 hybrid +141_2-9 Q0 MARCO_29_884588221-7 3 88.176137 hybrid +141_2-9 Q0 MARCO_30_1574895595-19 4 88.169887 hybrid +141_2-9 Q0 MARCO_13_137542827-1 5 88.123266 hybrid +141_2-9 Q0 MARCO_30_1576788415-25 6 88.085937 hybrid +141_2-9 Q0 MARCO_30_864372818-12 7 88.062837 hybrid +141_2-9 Q0 MARCO_30_1575935551-11 8 88.027287 hybrid +141_2-9 Q0 MARCO_49_388703262-15 9 87.986487 hybrid +141_2-9 Q0 MARCO_37_197720626-8 10 87.984587 hybrid +141_2-9 Q0 MARCO_36_717767941-10 11 87.921387 hybrid +141_2-9 Q0 MARCO_29_525950796-8 12 87.887137 hybrid +141_2-9 Q0 MARCO_44_501336810-15 13 87.879787 hybrid +141_2-9 Q0 MARCO_23_1043515404-5 14 87.876937 hybrid +141_2-9 Q0 MARCO_30_1577264631-19 15 87.841737 hybrid +141_2-9 Q0 MARCO_49_389308204-7 16 87.840287 hybrid +141_2-9 Q0 MARCO_45_1377877934-8 17 87.837887 hybrid +141_2-9 Q0 MARCO_22_834739325-3 18 87.817237 hybrid +141_2-9 Q0 MARCO_34_1098659076-12 19 87.776987 hybrid +141_2-9 Q0 MARCO_19_2182678434-3 20 87.773187 hybrid +141_2-9 Q0 MARCO_30_1576287472-15 21 87.751537 hybrid +141_2-9 Q0 MARCO_18_1445975768-36 22 87.742187 hybrid +141_2-9 Q0 MARCO_30_1575229398-10 23 87.738137 hybrid +141_2-9 Q0 MARCO_50_2869009780-10 24 87.737437 hybrid +141_2-9 Q0 MARCO_22_1208046421-3 25 87.713837 hybrid +141_2-9 Q0 MARCO_49_1641184916-6 26 87.713587 hybrid +141_2-9 Q0 MARCO_03_232666044-14 27 87.702587 hybrid +141_2-9 Q0 MARCO_30_1577716781-15 28 87.695087 hybrid +141_2-9 Q0 MARCO_24_1312795837-37 29 87.688765 hybrid +141_2-9 Q0 MARCO_13_423746144-22 30 87.680687 hybrid +141_2-9 Q0 MARCO_25_632969774-2 31 87.663587 hybrid +141_2-9 Q0 MARCO_26_348005168-23 32 87.653158 hybrid +141_2-9 Q0 MARCO_09_1305802808-7 33 87.644437 hybrid +141_2-9 Q0 MARCO_51_947060689-4 34 87.627137 hybrid +141_2-9 Q0 MARCO_30_1577264631-17 35 87.618387 hybrid +141_2-9 Q0 MARCO_38_1382956772-1 36 87.614378 hybrid +141_2-9 Q0 KILT_8029370-6 37 87.613137 hybrid +141_2-9 Q0 MARCO_25_1409432772-5 38 87.610106 hybrid +141_2-9 Q0 MARCO_57_1442859831-11 39 87.592537 hybrid +141_2-9 Q0 MARCO_30_1574540193-17 40 87.590837 hybrid +141_2-9 Q0 MARCO_37_1137052722-9 41 87.584687 hybrid +141_2-9 Q0 MARCO_26_265932816-7 42 87.580037 hybrid +141_2-9 Q0 MARCO_33_1327665276-1 43 87.577637 hybrid +141_2-9 Q0 MARCO_13_137542827-2 44 87.563337 hybrid +141_2-9 Q0 MARCO_17_4733837249-27 45 87.560837 hybrid +141_2-9 Q0 MARCO_51_382332076-15 46 87.556237 hybrid +141_2-9 Q0 MARCO_13_383083244-6 47 87.551937 hybrid +141_2-9 Q0 MARCO_50_672079985-10 48 87.550131 hybrid +141_2-9 Q0 MARCO_26_397516086-51 49 87.539404 hybrid +141_2-9 Q0 MARCO_01_697452749-1 50 87.538771 hybrid +141_2-9 Q0 MARCO_15_1285498767-26 51 87.537443 hybrid +141_2-9 Q0 MARCO_25_1123642780-2 52 87.533689 hybrid +141_2-9 Q0 MARCO_39_1598155334-2 53 87.530577 hybrid +141_2-9 Q0 MARCO_15_1285288468-38 54 87.526327 hybrid +141_2-9 Q0 MARCO_20_277295920-10 55 87.524187 hybrid +141_2-9 Q0 MARCO_44_392274636-24 56 87.522237 hybrid +141_2-9 Q0 MARCO_37_1343280262-12 57 87.520637 hybrid +141_2-9 Q0 MARCO_24_1312795837-20 58 87.516005 hybrid +141_2-9 Q0 MARCO_12_103069260-7 59 87.512137 hybrid +141_2-9 Q0 MARCO_20_1392776742-27 60 87.508537 hybrid +141_2-9 Q0 MARCO_24_1312795837-6 61 87.506887 hybrid +141_2-9 Q0 MARCO_40_1437869446-103 62 87.502937 hybrid +141_2-9 Q0 MARCO_32_108714028-8 63 87.495749 hybrid +141_2-9 Q0 MARCO_14_567360940-5 64 87.490487 hybrid +141_2-9 Q0 MARCO_55_679434366-1 65 87.474295 hybrid +141_2-9 Q0 MARCO_30_1575031953-15 66 87.473837 hybrid +141_2-9 Q0 MARCO_30_1576107406-4 67 87.469887 hybrid +141_2-9 Q0 MARCO_24_1312795837-54 68 87.468512 hybrid +141_2-9 Q0 MARCO_00_1020250294-13 69 87.467237 hybrid +141_2-9 Q0 MARCO_14_732065008-1 70 87.464937 hybrid +141_2-9 Q0 MARCO_37_893104142-11 71 87.459287 hybrid +141_2-9 Q0 KILT_1441528-4 72 87.457289 hybrid +141_2-9 Q0 MARCO_28_348219696-1 73 87.456541 hybrid +141_2-9 Q0 MARCO_38_1431244752-4 74 87.452887 hybrid +141_2-9 Q0 MARCO_32_108714028-13 75 87.451460 hybrid +141_2-9 Q0 MARCO_20_1586510531-1 76 87.443113 hybrid +141_2-9 Q0 MARCO_23_1350418648-1 77 87.430587 hybrid +141_2-9 Q0 MARCO_30_1576643426-10 78 87.430337 hybrid +141_2-9 Q0 MARCO_30_452476192-10 79 87.425520 hybrid +141_2-9 Q0 MARCO_24_1312795837-11 80 87.418669 hybrid +141_2-9 Q0 MARCO_07_807092923-17 81 87.418287 hybrid +141_2-9 Q0 MARCO_28_1803939956-2 82 87.415533 hybrid +141_2-9 Q0 MARCO_00_1300716625-20 83 87.413537 hybrid +141_2-9 Q0 MARCO_23_1044573944-1 84 87.413087 hybrid +141_2-9 Q0 MARCO_44_1695676422-5 85 87.409337 hybrid +141_2-9 Q0 MARCO_52_1236177125-7 86 87.405587 hybrid +141_2-9 Q0 MARCO_24_1023494604-5 87 87.405537 hybrid +141_2-9 Q0 MARCO_30_1576481671-17 88 87.403637 hybrid +141_2-9 Q0 MARCO_15_1985263478-4 89 87.401395 hybrid +141_2-9 Q0 MARCO_23_444314954-5 90 87.399937 hybrid +141_2-9 Q0 MARCO_09_452086783-4 91 87.394787 hybrid +141_2-9 Q0 KILT_53759-2 92 87.381491 hybrid +141_2-9 Q0 MARCO_48_1813421288-11 93 87.381187 hybrid +141_2-9 Q0 MARCO_30_938233041-8 94 87.378537 hybrid +141_2-9 Q0 MARCO_56_298437938-5 95 87.373887 hybrid +141_2-9 Q0 MARCO_52_1064972339-19 96 87.373187 hybrid +141_2-9 Q0 MARCO_24_1312795837-57 97 87.369818 hybrid +141_2-9 Q0 MARCO_21_1327671780-3 98 87.363237 hybrid +141_2-9 Q0 MARCO_00_1153776691-2 99 87.362127 hybrid +141_2-9 Q0 MARCO_21_9381384-2 100 87.361537 hybrid +142_1-1 Q0 MARCO_01_704783737-85 1 87.419980 hybrid +142_1-1 Q0 MARCO_56_1849852997-2 2 87.356080 hybrid +142_1-1 Q0 MARCO_08_1091419182-26 3 87.249768 hybrid +142_1-1 Q0 MARCO_10_790344909-3 4 87.208503 hybrid +142_1-1 Q0 MARCO_33_1122565344-2 5 87.146979 hybrid +142_1-1 Q0 MARCO_54_1803514151-2 6 87.146979 hybrid +142_1-1 Q0 KILT_113746-15 7 87.131130 hybrid +142_1-1 Q0 MARCO_33_1122565344-1 8 87.100930 hybrid +142_1-1 Q0 MARCO_58_1508113613-2 9 87.099448 hybrid +142_1-1 Q0 MARCO_58_1508113613-1 10 87.097747 hybrid +142_1-1 Q0 MARCO_55_1284276756-5 11 87.088183 hybrid +142_1-1 Q0 MARCO_43_742228802-80 12 87.072128 hybrid +142_1-1 Q0 MARCO_54_1821438646-1 13 87.053380 hybrid +142_1-1 Q0 MARCO_08_1091419182-28 14 87.010417 hybrid +142_1-1 Q0 MARCO_54_1803514151-1 15 87.006080 hybrid +142_1-1 Q0 MARCO_58_1506642595-3 16 86.995857 hybrid +142_1-1 Q0 MARCO_41_1117115865-64 17 86.988295 hybrid +142_1-1 Q0 MARCO_22_1186906798-3 18 86.986106 hybrid +142_1-1 Q0 MARCO_22_1186915282-3 19 86.982696 hybrid +142_1-1 Q0 MARCO_20_1075471306-3 20 86.982480 hybrid +142_1-1 Q0 MARCO_58_1506642595-1 21 86.973548 hybrid +142_1-1 Q0 MARCO_03_1787569773-4 22 86.964409 hybrid +142_1-1 Q0 MARCO_01_704783737-3 23 86.957729 hybrid +142_1-1 Q0 MARCO_58_1509104985-3 24 86.947967 hybrid +142_1-1 Q0 MARCO_00_592589246-44 25 86.946780 hybrid +142_1-1 Q0 MARCO_27_1641185764-6 26 86.946779 hybrid +142_1-1 Q0 MARCO_37_173589964-2 27 86.945625 hybrid +142_1-1 Q0 MARCO_06_1240614560-48 28 86.939567 hybrid +142_1-1 Q0 MARCO_06_461503960-1 29 86.931129 hybrid +142_1-1 Q0 MARCO_50_1235890157-1 30 86.929930 hybrid +142_1-1 Q0 MARCO_51_694777636-27 31 86.920013 hybrid +142_1-1 Q0 MARCO_04_562061917-2 32 86.918729 hybrid +142_1-1 Q0 MARCO_08_1091419182-31 33 86.916435 hybrid +142_1-1 Q0 MARCO_20_1075471306-1 34 86.895579 hybrid +142_1-1 Q0 MARCO_27_590521239-1 35 86.873730 hybrid +142_1-1 Q0 MARCO_55_1284276756-1 36 86.862042 hybrid +142_1-1 Q0 MARCO_25_297460066-2 37 86.848179 hybrid +142_1-1 Q0 MARCO_41_1117115865-63 38 86.839011 hybrid +142_1-1 Q0 MARCO_19_2045799633-26 39 86.835731 hybrid +142_1-1 Q0 KILT_1839572-1 40 86.820800 hybrid +142_1-1 Q0 MARCO_30_2012987975-4 41 86.819564 hybrid +142_1-1 Q0 MARCO_35_128151915-14 42 86.818931 hybrid +142_1-1 Q0 MARCO_55_1284276756-4 43 86.812276 hybrid +142_1-1 Q0 MARCO_06_461503960-5 44 86.798130 hybrid +142_1-1 Q0 MARCO_50_1441723234-16 45 86.785651 hybrid +142_1-1 Q0 MARCO_08_286761210-4 46 86.781829 hybrid +142_1-1 Q0 KILT_14672486-3 47 86.781280 hybrid +142_1-1 Q0 MARCO_48_836448592-5 48 86.765147 hybrid +142_1-1 Q0 MARCO_58_1508113613-3 49 86.763648 hybrid +142_1-1 Q0 MARCO_28_986460254-19 50 86.753577 hybrid +142_1-1 Q0 MARCO_47_1601362260-4 51 86.752021 hybrid +142_1-1 Q0 MARCO_50_1458626850-11 52 86.751266 hybrid +142_1-1 Q0 MARCO_40_919328460-1 53 86.736730 hybrid +142_1-1 Q0 MARCO_02_740635833-11 54 86.734429 hybrid +142_1-1 Q0 MARCO_44_1773108811-4 55 86.729829 hybrid +142_1-1 Q0 MARCO_30_2012975151-5 56 86.727699 hybrid +142_1-1 Q0 MARCO_30_2013034285-5 57 86.727699 hybrid +142_1-1 Q0 MARCO_30_2012997627-4 58 86.727699 hybrid +142_1-1 Q0 MARCO_30_2012956600-5 59 86.727699 hybrid +142_1-1 Q0 KILT_68259-7 60 86.719978 hybrid +142_1-1 Q0 MARCO_11_1448564973-7 61 86.719314 hybrid +142_1-1 Q0 MARCO_10_120187103-9 62 86.712180 hybrid +142_1-1 Q0 MARCO_47_1601362260-1 63 86.708114 hybrid +142_1-1 Q0 MARCO_25_1069394213-80 64 86.686779 hybrid +142_1-1 Q0 MARCO_47_1602505698-3 65 86.679862 hybrid +142_1-1 Q0 MARCO_12_1321971001-6 66 86.679329 hybrid +142_1-1 Q0 MARCO_01_704783737-46 67 86.678629 hybrid +142_1-1 Q0 MARCO_50_1936673617-24 68 86.678406 hybrid +142_1-1 Q0 MARCO_56_1849852997-9 69 86.674180 hybrid +142_1-1 Q0 MARCO_10_790353427-1 70 86.671455 hybrid +142_1-1 Q0 KILT_8076950-1 71 86.668105 hybrid +142_1-1 Q0 MARCO_28_984047122-4 72 86.667442 hybrid +142_1-1 Q0 MARCO_28_986492477-1 73 86.663062 hybrid +142_1-1 Q0 MARCO_20_337149396-2 74 86.658679 hybrid +142_1-1 Q0 MARCO_55_249733632-4 75 86.650512 hybrid +142_1-1 Q0 MARCO_22_1186915282-1 76 86.650108 hybrid +142_1-1 Q0 MARCO_28_984965689-5 77 86.649079 hybrid +142_1-1 Q0 MARCO_47_1285299013-4 78 86.647819 hybrid +142_1-1 Q0 MARCO_51_694777636-29 79 86.643447 hybrid +142_1-1 Q0 MARCO_12_1120414121-1 80 86.637579 hybrid +142_1-1 Q0 MARCO_22_1186915282-5 81 86.620399 hybrid +142_1-1 Q0 MARCO_58_1509104985-4 82 86.618751 hybrid +142_1-1 Q0 MARCO_47_1602505698-2 83 86.616569 hybrid +142_1-1 Q0 MARCO_35_128533405-3 84 86.615165 hybrid +142_1-1 Q0 MARCO_24_1139351957-10 85 86.605308 hybrid +142_1-1 Q0 KILT_41582495-1 86 86.593375 hybrid +142_1-1 Q0 MARCO_22_1186906798-1 87 86.587302 hybrid +142_1-1 Q0 MARCO_10_448253860-6 88 86.587180 hybrid +142_1-1 Q0 MARCO_17_693365828-5 89 86.586257 hybrid +142_1-1 Q0 MARCO_50_142834401-105 90 86.583179 hybrid +142_1-1 Q0 MARCO_29_1447151846-1 91 86.579380 hybrid +142_1-1 Q0 MARCO_40_930823638-11 92 86.579130 hybrid +142_1-1 Q0 MARCO_22_1186888239-1 93 86.577689 hybrid +142_1-1 Q0 MARCO_30_1022384297-23 94 86.577049 hybrid +142_1-1 Q0 MARCO_54_676656745-2 95 86.575897 hybrid +142_1-1 Q0 MARCO_54_676656745-4 96 86.575897 hybrid +142_1-1 Q0 MARCO_47_1604104921-1 97 86.573852 hybrid +142_1-1 Q0 MARCO_55_247577966-6 98 86.570777 hybrid +142_1-1 Q0 MARCO_41_1816072373-1 99 86.567920 hybrid +142_1-1 Q0 MARCO_41_1523877029-23 100 86.565929 hybrid +142_1-3 Q0 MARCO_47_1604104921-3 1 93.504236 hybrid +142_1-3 Q0 MARCO_16_3046749093-1 2 93.095122 hybrid +142_1-3 Q0 MARCO_47_1604104921-2 3 93.047873 hybrid +142_1-3 Q0 KILT_6275053-1 4 92.526338 hybrid +142_1-3 Q0 MARCO_58_1506642595-1 5 92.509224 hybrid +142_1-3 Q0 MARCO_11_1448564973-7 6 92.351181 hybrid +142_1-3 Q0 MARCO_27_1334580338-1 7 92.311553 hybrid +142_1-3 Q0 MARCO_16_3046749093-108 8 92.290148 hybrid +142_1-3 Q0 MARCO_29_789772576-15 9 92.282345 hybrid +142_1-3 Q0 MARCO_16_3046944575-3 10 92.264481 hybrid +142_1-3 Q0 MARCO_27_1334580338-2 11 92.163811 hybrid +142_1-3 Q0 MARCO_16_3046944575-2 12 92.068377 hybrid +142_1-3 Q0 MARCO_10_120187103-1 13 92.039184 hybrid +142_1-3 Q0 MARCO_58_1512159116-1 14 91.975467 hybrid +142_1-3 Q0 MARCO_16_3046749093-87 15 91.964432 hybrid +142_1-3 Q0 MARCO_10_803200487-1 16 91.947317 hybrid +142_1-3 Q0 MARCO_19_2045799633-15 17 91.945021 hybrid +142_1-3 Q0 MARCO_16_3046749093-3 18 91.907074 hybrid +142_1-3 Q0 MARCO_58_1508113613-1 19 91.886565 hybrid +142_1-3 Q0 MARCO_24_1126171266-11 20 91.854687 hybrid +142_1-3 Q0 MARCO_58_1508113613-2 21 91.822897 hybrid +142_1-3 Q0 MARCO_06_1149196799-139 22 91.759270 hybrid +142_1-3 Q0 MARCO_16_3046944575-1 23 91.743000 hybrid +142_1-3 Q0 MARCO_16_3046749093-38 24 91.707680 hybrid +142_1-3 Q0 MARCO_16_3046749093-37 25 91.657318 hybrid +142_1-3 Q0 MARCO_48_1542395416-10 26 91.582263 hybrid +142_1-3 Q0 MARCO_16_3046749093-61 27 91.560231 hybrid +142_1-3 Q0 MARCO_16_3046749093-127 28 91.503332 hybrid +142_1-3 Q0 MARCO_16_3046749093-54 29 91.466924 hybrid +142_1-3 Q0 KILT_8985102-1 30 91.459068 hybrid +142_1-3 Q0 MARCO_16_3046749093-13 31 91.448685 hybrid +142_1-3 Q0 MARCO_47_1604104921-16 32 91.424606 hybrid +142_1-3 Q0 MARCO_14_640274414-1 33 91.406116 hybrid +142_1-3 Q0 MARCO_16_3046749093-15 34 91.403026 hybrid +142_1-3 Q0 MARCO_10_1509357985-1 35 91.389317 hybrid +142_1-3 Q0 MARCO_16_3046749093-45 36 91.334953 hybrid +142_1-3 Q0 MARCO_29_789772576-14 37 91.332276 hybrid +142_1-3 Q0 KILT_2596357-1 38 91.300006 hybrid +142_1-3 Q0 MARCO_22_1186915282-6 39 91.297495 hybrid +142_1-3 Q0 MARCO_55_1226469146-1 40 91.268267 hybrid +142_1-3 Q0 MARCO_00_1016195658-1 41 91.225817 hybrid +142_1-3 Q0 MARCO_16_3046749093-46 42 91.224823 hybrid +142_1-3 Q0 MARCO_53_848365201-1 43 91.223617 hybrid +142_1-3 Q0 MARCO_04_163634112-2 44 91.209416 hybrid +142_1-3 Q0 MARCO_16_153757223-1 45 91.203667 hybrid +142_1-3 Q0 MARCO_47_1602505698-8 46 91.175880 hybrid +142_1-3 Q0 MARCO_16_3046749093-4 47 91.162880 hybrid +142_1-3 Q0 MARCO_52_1576671550-21 48 91.153617 hybrid +142_1-3 Q0 MARCO_16_3046944575-20 49 91.151512 hybrid +142_1-3 Q0 MARCO_40_1583135483-1 50 91.146551 hybrid +142_1-3 Q0 MARCO_16_3046749093-25 51 91.088432 hybrid +142_1-3 Q0 MARCO_16_3046749093-8 52 91.076363 hybrid +142_1-3 Q0 MARCO_16_3046749093-26 53 91.073265 hybrid +142_1-3 Q0 MARCO_16_3046749093-29 54 91.069221 hybrid +142_1-3 Q0 MARCO_58_1509104985-3 55 91.066521 hybrid +142_1-3 Q0 MARCO_53_848365201-3 56 91.027217 hybrid +142_1-3 Q0 MARCO_55_248583746-10 57 91.023243 hybrid +142_1-3 Q0 MARCO_12_1731808931-3 58 91.014946 hybrid +142_1-3 Q0 MARCO_16_2607069492-21 59 90.983681 hybrid +142_1-3 Q0 MARCO_04_1066234969-1 60 90.979317 hybrid +142_1-3 Q0 MARCO_16_3046749093-65 61 90.970917 hybrid +142_1-3 Q0 KILT_59860143-1 62 90.965157 hybrid +142_1-3 Q0 MARCO_16_3046749093-18 63 90.962173 hybrid +142_1-3 Q0 MARCO_16_3046749093-2 64 90.953553 hybrid +142_1-3 Q0 MARCO_10_120187103-6 65 90.941772 hybrid +142_1-3 Q0 MARCO_16_3046749093-62 66 90.941002 hybrid +142_1-3 Q0 MARCO_16_3046928162-2 67 90.939796 hybrid +142_1-3 Q0 KILT_592844-2 68 90.937111 hybrid +142_1-3 Q0 KILT_40111264-1 69 90.931602 hybrid +142_1-3 Q0 KILT_4929220-1 70 90.924216 hybrid +142_1-3 Q0 KILT_11904555-3 71 90.917068 hybrid +142_1-3 Q0 MARCO_32_932733367-1 72 90.893517 hybrid +142_1-3 Q0 MARCO_09_1875219515-1 73 90.893416 hybrid +142_1-3 Q0 MARCO_20_1201793411-1 74 90.864467 hybrid +142_1-3 Q0 MARCO_28_439210340-43 75 90.854797 hybrid +142_1-3 Q0 MARCO_16_3046944575-17 76 90.850419 hybrid +142_1-3 Q0 MARCO_16_3046749093-34 77 90.849663 hybrid +142_1-3 Q0 MARCO_22_1186915282-3 78 90.843868 hybrid +142_1-3 Q0 KILT_2301467-1 79 90.838367 hybrid +142_1-3 Q0 MARCO_22_1186888239-5 80 90.831461 hybrid +142_1-3 Q0 MARCO_10_120187103-9 81 90.825829 hybrid +142_1-3 Q0 MARCO_22_1186906798-2 82 90.822690 hybrid +142_1-3 Q0 MARCO_58_1481052929-4 83 90.815166 hybrid +142_1-3 Q0 KILT_23714282-3 84 90.814026 hybrid +142_1-3 Q0 MARCO_11_1448564973-8 85 90.797119 hybrid +142_1-3 Q0 MARCO_16_3046749093-63 86 90.797073 hybrid +142_1-3 Q0 MARCO_18_628220128-1 87 90.793067 hybrid +142_1-3 Q0 MARCO_16_3301586502-7 88 90.787239 hybrid +142_1-3 Q0 MARCO_30_1152610115-1 89 90.785316 hybrid +142_1-3 Q0 KILT_905798-1 90 90.785167 hybrid +142_1-3 Q0 MARCO_29_1447180055-1 91 90.783967 hybrid +142_1-3 Q0 MARCO_58_1495240820-1 92 90.781016 hybrid +142_1-3 Q0 MARCO_06_1095318-193 93 90.775967 hybrid +142_1-3 Q0 MARCO_16_3046749093-39 94 90.771431 hybrid +142_1-3 Q0 MARCO_24_1495214326-1 95 90.768567 hybrid +142_1-3 Q0 MARCO_16_3046749093-47 96 90.759224 hybrid +142_1-3 Q0 MARCO_55_1696718216-2 97 90.745767 hybrid +142_1-3 Q0 MARCO_16_3046944575-8 98 90.743553 hybrid +142_1-3 Q0 MARCO_47_1602505698-2 99 90.742889 hybrid +142_1-3 Q0 MARCO_22_1186906798-3 100 90.736435 hybrid +142_1-5 Q0 MARCO_10_120187103-9 1 90.242692 hybrid +142_1-5 Q0 MARCO_16_3046749093-4 2 89.659158 hybrid +142_1-5 Q0 MARCO_35_131732716-1 3 89.653221 hybrid +142_1-5 Q0 MARCO_16_3046749093-39 4 89.447720 hybrid +142_1-5 Q0 MARCO_56_1849852997-1 5 89.292537 hybrid +142_1-5 Q0 MARCO_16_3046749093-45 6 89.254607 hybrid +142_1-5 Q0 MARCO_24_1139351957-10 7 89.184874 hybrid +142_1-5 Q0 MARCO_47_1602505698-8 8 89.141934 hybrid +142_1-5 Q0 MARCO_16_3046749093-38 9 89.061538 hybrid +142_1-5 Q0 MARCO_10_120187103-1 10 89.020931 hybrid +142_1-5 Q0 MARCO_16_3046749093-42 11 88.991827 hybrid +142_1-5 Q0 MARCO_10_120187103-8 12 88.980433 hybrid +142_1-5 Q0 MARCO_24_1126171266-11 13 88.950075 hybrid +142_1-5 Q0 MARCO_11_1448564973-3 14 88.939584 hybrid +142_1-5 Q0 MARCO_24_1139403731-4 15 88.934433 hybrid +142_1-5 Q0 MARCO_16_3046749093-41 16 88.908300 hybrid +142_1-5 Q0 MARCO_10_120187103-2 17 88.859340 hybrid +142_1-5 Q0 MARCO_16_3046749093-51 18 88.791336 hybrid +142_1-5 Q0 MARCO_22_1186906798-3 19 88.730238 hybrid +142_1-5 Q0 MARCO_03_1387185114-1 20 88.724698 hybrid +142_1-5 Q0 MARCO_53_1065767658-8 21 88.715837 hybrid +142_1-5 Q0 MARCO_30_2013028110-1 22 88.715368 hybrid +142_1-5 Q0 MARCO_55_1704796583-1 23 88.705838 hybrid +142_1-5 Q0 MARCO_13_1435729398-6 24 88.691737 hybrid +142_1-5 Q0 MARCO_22_1186915282-3 25 88.688876 hybrid +142_1-5 Q0 MARCO_16_3046749093-47 26 88.669723 hybrid +142_1-5 Q0 MARCO_41_2107613758-1 27 88.664887 hybrid +142_1-5 Q0 MARCO_53_1065767658-13 28 88.663837 hybrid +142_1-5 Q0 MARCO_07_972175447-1 29 88.609537 hybrid +142_1-5 Q0 MARCO_22_1186906798-2 30 88.607759 hybrid +142_1-5 Q0 MARCO_10_120187103-6 31 88.606390 hybrid +142_1-5 Q0 MARCO_16_3046749093-43 32 88.606291 hybrid +142_1-5 Q0 MARCO_16_3046749093-40 33 88.590993 hybrid +142_1-5 Q0 MARCO_16_3046749093-107 34 88.584570 hybrid +142_1-5 Q0 MARCO_43_782020638-3 35 88.581801 hybrid +142_1-5 Q0 MARCO_16_3046749093-54 36 88.523207 hybrid +142_1-5 Q0 MARCO_16_3046749093-46 37 88.506972 hybrid +142_1-5 Q0 MARCO_35_131732716-2 38 88.505400 hybrid +142_1-5 Q0 MARCO_56_1849852997-2 39 88.486687 hybrid +142_1-5 Q0 MARCO_16_3046749093-62 40 88.481978 hybrid +142_1-5 Q0 KILT_6275053-1 41 88.480188 hybrid +142_1-5 Q0 MARCO_16_2607069492-21 42 88.476098 hybrid +142_1-5 Q0 MARCO_11_1448564973-1 43 88.469245 hybrid +142_1-5 Q0 MARCO_41_1014954356-23 44 88.468387 hybrid +142_1-5 Q0 MARCO_11_1448564973-7 45 88.450525 hybrid +142_1-5 Q0 MARCO_55_1728784830-2 46 88.417258 hybrid +142_1-5 Q0 MARCO_11_1448564973-4 47 88.398131 hybrid +142_1-5 Q0 MARCO_22_1186906798-1 48 88.373322 hybrid +142_1-5 Q0 MARCO_20_1062970047-3 49 88.352187 hybrid +142_1-5 Q0 MARCO_17_4256986552-2 50 88.349887 hybrid +142_1-5 Q0 MARCO_27_1334580338-2 51 88.347426 hybrid +142_1-5 Q0 MARCO_50_781658274-38 52 88.326087 hybrid +142_1-5 Q0 MARCO_11_1448564973-8 53 88.314742 hybrid +142_1-5 Q0 MARCO_30_2012938093-1 54 88.309354 hybrid +142_1-5 Q0 MARCO_16_3046749093-49 55 88.308608 hybrid +142_1-5 Q0 MARCO_11_1448564973-9 56 88.306998 hybrid +142_1-5 Q0 MARCO_41_1362852419-27 57 88.302886 hybrid +142_1-5 Q0 MARCO_05_848957007-14 58 88.301100 hybrid +142_1-5 Q0 MARCO_10_120187103-10 59 88.298607 hybrid +142_1-5 Q0 MARCO_53_1065767658-6 60 88.297937 hybrid +142_1-5 Q0 MARCO_30_1004054024-7 61 88.290938 hybrid +142_1-5 Q0 MARCO_55_1654783944-7 62 88.286587 hybrid +142_1-5 Q0 MARCO_53_1065767658-9 63 88.276837 hybrid +142_1-5 Q0 MARCO_10_790347853-1 64 88.273840 hybrid +142_1-5 Q0 MARCO_16_3046749093-105 65 88.273551 hybrid +142_1-5 Q0 MARCO_16_3046749093-55 66 88.266547 hybrid +142_1-5 Q0 MARCO_30_2012975151-5 67 88.265067 hybrid +142_1-5 Q0 MARCO_30_2013034285-5 68 88.265067 hybrid +142_1-5 Q0 MARCO_30_2012997627-4 69 88.265067 hybrid +142_1-5 Q0 MARCO_30_2012956600-5 70 88.265067 hybrid +142_1-5 Q0 KILT_11153771-8 71 88.241687 hybrid +142_1-5 Q0 MARCO_25_297460066-2 72 88.239187 hybrid +142_1-5 Q0 MARCO_37_854781414-1 73 88.229387 hybrid +142_1-5 Q0 MARCO_24_82231277-2 74 88.172637 hybrid +142_1-5 Q0 KILT_5335433-3 75 88.163188 hybrid +142_1-5 Q0 MARCO_45_1280788304-3 76 88.157937 hybrid +142_1-5 Q0 MARCO_05_848957007-9 77 88.156477 hybrid +142_1-5 Q0 MARCO_16_3046749093-13 78 88.143858 hybrid +142_1-5 Q0 MARCO_30_2012993435-3 79 88.134589 hybrid +142_1-5 Q0 MARCO_30_2012980419-6 80 88.134589 hybrid +142_1-5 Q0 MARCO_16_3046749093-34 81 88.133734 hybrid +142_1-5 Q0 KILT_27235520-2 82 88.129530 hybrid +142_1-5 Q0 MARCO_56_1849852997-3 83 88.120737 hybrid +142_1-5 Q0 KILT_14914953-1 84 88.114631 hybrid +142_1-5 Q0 KILT_60107725-7 85 88.111137 hybrid +142_1-5 Q0 KILT_58109079-3 86 88.105261 hybrid +142_1-5 Q0 MARCO_05_848957007-1 87 88.101782 hybrid +142_1-5 Q0 KILT_255919-44 88 88.098387 hybrid +142_1-5 Q0 MARCO_55_248583746-10 89 88.098166 hybrid +142_1-5 Q0 MARCO_16_3046749093-50 90 88.087088 hybrid +142_1-5 Q0 MARCO_19_2045799633-15 91 88.086748 hybrid +142_1-5 Q0 MARCO_16_3046749093-44 92 88.086546 hybrid +142_1-5 Q0 KILT_23378955-9 93 88.085806 hybrid +142_1-5 Q0 MARCO_16_3046749093-56 94 88.083281 hybrid +142_1-5 Q0 MARCO_19_2045799633-16 95 88.081067 hybrid +142_1-5 Q0 MARCO_25_937745370-10 96 88.079587 hybrid +142_1-5 Q0 MARCO_37_854765368-1 97 88.076287 hybrid +142_1-5 Q0 KILT_2810466-9 98 88.073218 hybrid +142_1-5 Q0 MARCO_53_1065767658-14 99 88.068887 hybrid +142_1-5 Q0 MARCO_16_3046749093-15 100 88.060545 hybrid +142_2-2 Q0 MARCO_18_3127967367-2 1 89.434565 hybrid +142_2-2 Q0 MARCO_30_1052365471-1 2 88.989942 hybrid +142_2-2 Q0 MARCO_05_848957007-8 3 88.858625 hybrid +142_2-2 Q0 MARCO_22_393668005-3 4 88.831970 hybrid +142_2-2 Q0 KILT_18706892-1 5 88.657343 hybrid +142_2-2 Q0 KILT_2810466-9 6 88.529006 hybrid +142_2-2 Q0 MARCO_50_1458626850-10 7 88.466911 hybrid +142_2-2 Q0 MARCO_16_3046749093-41 8 88.457090 hybrid +142_2-2 Q0 MARCO_05_848986452-2 9 88.421007 hybrid +142_2-2 Q0 KILT_17269759-1 10 88.325142 hybrid +142_2-2 Q0 MARCO_37_86008475-6 11 88.262842 hybrid +142_2-2 Q0 MARCO_39_1259607096-1 12 88.187492 hybrid +142_2-2 Q0 MARCO_17_761939039-10 13 88.078242 hybrid +142_2-2 Q0 KILT_28820502-1 14 88.057066 hybrid +142_2-2 Q0 MARCO_17_674008977-3 15 88.053825 hybrid +142_2-2 Q0 MARCO_05_848957007-9 16 88.051965 hybrid +142_2-2 Q0 MARCO_18_3127967367-5 17 88.010909 hybrid +142_2-2 Q0 MARCO_19_2045799633-2 18 88.008701 hybrid +142_2-2 Q0 MARCO_30_213814120-1 19 87.995792 hybrid +142_2-2 Q0 MARCO_05_1958159595-169 20 87.981642 hybrid +142_2-2 Q0 MARCO_50_2221062872-10 21 87.974692 hybrid +142_2-2 Q0 MARCO_05_848957007-1 22 87.946822 hybrid +142_2-2 Q0 MARCO_25_297460066-2 23 87.912992 hybrid +142_2-2 Q0 MARCO_54_2086360355-1 24 87.903542 hybrid +142_2-2 Q0 MARCO_16_3046749093-49 25 87.902213 hybrid +142_2-2 Q0 MARCO_05_848957007-4 26 87.875319 hybrid +142_2-2 Q0 MARCO_50_781658274-28 27 87.845992 hybrid +142_2-2 Q0 MARCO_24_807685158-32 28 87.845392 hybrid +142_2-2 Q0 MARCO_41_1807666760-7 29 87.813142 hybrid +142_2-2 Q0 MARCO_18_118734742-26 30 87.811492 hybrid +142_2-2 Q0 MARCO_58_1508113613-1 31 87.806952 hybrid +142_2-2 Q0 KILT_5486558-2 32 87.796542 hybrid +142_2-2 Q0 MARCO_05_848957007-14 33 87.773505 hybrid +142_2-2 Q0 MARCO_26_1889692957-6 34 87.766542 hybrid +142_2-2 Q0 MARCO_45_1248533362-1 35 87.763388 hybrid +142_2-2 Q0 KILT_12471937-8 36 87.757692 hybrid +142_2-2 Q0 MARCO_06_1240614560-37 37 87.746115 hybrid +142_2-2 Q0 MARCO_05_848957007-12 38 87.745116 hybrid +142_2-2 Q0 KILT_2228629-2 39 87.727842 hybrid +142_2-2 Q0 KILT_28820502-5 40 87.709838 hybrid +142_2-2 Q0 MARCO_05_849036905-6 41 87.682257 hybrid +142_2-2 Q0 MARCO_05_848957007-10 42 87.682028 hybrid +142_2-2 Q0 MARCO_16_3046749093-38 43 87.681799 hybrid +142_2-2 Q0 MARCO_05_848986452-3 44 87.677763 hybrid +142_2-2 Q0 KILT_8076950-4 45 87.659682 hybrid +142_2-2 Q0 KILT_40892583-4 46 87.653342 hybrid +142_2-2 Q0 MARCO_16_2206432408-10 47 87.647142 hybrid +142_2-2 Q0 MARCO_39_1259607096-18 48 87.639542 hybrid +142_2-2 Q0 KILT_44030741-1 49 87.635149 hybrid +142_2-2 Q0 KILT_2810466-10 50 87.625372 hybrid +142_2-2 Q0 KILT_28820502-6 51 87.624063 hybrid +142_2-2 Q0 KILT_2222-9 52 87.618692 hybrid +142_2-2 Q0 MARCO_22_393668005-9 53 87.611243 hybrid +142_2-2 Q0 MARCO_39_1264136836-9 54 87.595192 hybrid +142_2-2 Q0 MARCO_18_3127967367-4 55 87.591181 hybrid +142_2-2 Q0 KILT_61326433-1 56 87.588342 hybrid +142_2-2 Q0 KILT_1248379-3 57 87.580142 hybrid +142_2-2 Q0 MARCO_05_1877300306-293 58 87.578342 hybrid +142_2-2 Q0 MARCO_50_1441723234-18 59 87.567847 hybrid +142_2-2 Q0 MARCO_17_677302622-29 60 87.563514 hybrid +142_2-2 Q0 MARCO_25_297460066-5 61 87.553492 hybrid +142_2-2 Q0 MARCO_50_1458626850-15 62 87.552390 hybrid +142_2-2 Q0 MARCO_39_1259607096-3 63 87.546342 hybrid +142_2-2 Q0 MARCO_29_1447143343-3 64 87.537092 hybrid +142_2-2 Q0 MARCO_10_790347853-1 65 87.533133 hybrid +142_2-2 Q0 MARCO_10_790347853-3 66 87.531833 hybrid +142_2-2 Q0 MARCO_16_3046749093-45 67 87.528075 hybrid +142_2-2 Q0 MARCO_50_781658274-26 68 87.523442 hybrid +142_2-2 Q0 KILT_30232327-1 69 87.518542 hybrid +142_2-2 Q0 MARCO_54_676656745-1 70 87.496748 hybrid +142_2-2 Q0 MARCO_08_1480326385-15 71 87.494376 hybrid +142_2-2 Q0 MARCO_00_418231658-1 72 87.489992 hybrid +142_2-2 Q0 KILT_474383-1 73 87.481342 hybrid +142_2-2 Q0 MARCO_18_4339396981-2 74 87.481342 hybrid +142_2-2 Q0 MARCO_20_232780208-7 75 87.475181 hybrid +142_2-2 Q0 MARCO_16_2205065656-68 76 87.463392 hybrid +142_2-2 Q0 MARCO_10_790353427-4 77 87.452902 hybrid +142_2-2 Q0 MARCO_10_120187103-9 78 87.434462 hybrid +142_2-2 Q0 MARCO_24_33938881-6 79 87.430142 hybrid +142_2-2 Q0 KILT_5488261-1 80 87.423992 hybrid +142_2-2 Q0 MARCO_17_2510087016-4 81 87.423290 hybrid +142_2-2 Q0 MARCO_16_2206602406-1 82 87.404242 hybrid +142_2-2 Q0 MARCO_17_964928401-11 83 87.401342 hybrid +142_2-2 Q0 MARCO_16_4061399225-23 84 87.398692 hybrid +142_2-2 Q0 MARCO_16_3206698032-13 85 87.396792 hybrid +142_2-2 Q0 MARCO_55_1091349376-9 86 87.385992 hybrid +142_2-2 Q0 MARCO_54_466426969-5 87 87.384742 hybrid +142_2-2 Q0 MARCO_58_1506642595-1 88 87.382178 hybrid +142_2-2 Q0 MARCO_00_135103123-8 89 87.376142 hybrid +142_2-2 Q0 MARCO_06_1240614560-46 90 87.375334 hybrid +142_2-2 Q0 KILT_12471937-6 91 87.366242 hybrid +142_2-2 Q0 MARCO_01_704783737-31 92 87.355992 hybrid +142_2-2 Q0 MARCO_29_1447088347-2 93 87.344742 hybrid +142_2-2 Q0 MARCO_06_1240614560-44 94 87.343840 hybrid +142_2-2 Q0 MARCO_03_851003198-11 95 87.342992 hybrid +142_2-2 Q0 MARCO_16_3046749093-43 96 87.342032 hybrid +142_2-2 Q0 MARCO_47_1601362260-3 97 87.340125 hybrid +142_2-2 Q0 MARCO_06_1240614560-33 98 87.322096 hybrid +142_2-2 Q0 KILT_40892583-2 99 87.320542 hybrid +142_2-2 Q0 MARCO_16_3046749093-40 100 87.320265 hybrid +142_2-4 Q0 MARCO_55_1245662540-6 1 89.461103 hybrid +142_2-4 Q0 MARCO_55_1245662540-1 2 88.914403 hybrid +142_2-4 Q0 MARCO_33_868655730-8 3 88.047904 hybrid +142_2-4 Q0 MARCO_33_868655730-9 4 87.925803 hybrid +142_2-4 Q0 MARCO_04_739200346-4 5 87.619653 hybrid +142_2-4 Q0 MARCO_09_727719485-4 6 87.619653 hybrid +142_2-4 Q0 MARCO_52_1472442561-1 7 87.545603 hybrid +142_2-4 Q0 MARCO_55_1245662540-8 8 87.532603 hybrid +142_2-4 Q0 MARCO_25_297692704-10 9 87.482103 hybrid +142_2-4 Q0 MARCO_28_329136270-3 10 87.438476 hybrid +142_2-4 Q0 MARCO_25_660341045-6 11 87.295703 hybrid +142_2-4 Q0 KILT_16594665-10 12 87.218403 hybrid +142_2-4 Q0 MARCO_52_1472442561-9 13 87.181803 hybrid +142_2-4 Q0 MARCO_45_22302590-9 14 87.173353 hybrid +142_2-4 Q0 MARCO_31_1694990413-1 15 87.168953 hybrid +142_2-4 Q0 MARCO_22_1189445202-15 16 87.022698 hybrid +142_2-4 Q0 KILT_2222-23 17 86.864103 hybrid +142_2-4 Q0 MARCO_16_2206432408-24 18 86.846653 hybrid +142_2-4 Q0 MARCO_16_2206432408-20 19 86.830353 hybrid +142_2-4 Q0 MARCO_27_30574068-2 20 86.826503 hybrid +142_2-4 Q0 MARCO_18_106335865-1 21 86.730554 hybrid +142_2-4 Q0 KILT_46207366-1 22 86.697904 hybrid +142_2-4 Q0 MARCO_01_651672954-4 23 86.644854 hybrid +142_2-4 Q0 KILT_7060542-1 24 86.638580 hybrid +142_2-4 Q0 MARCO_02_859848405-3 25 86.613204 hybrid +142_2-4 Q0 KILT_12255257-2 26 86.592953 hybrid +142_2-4 Q0 MARCO_23_203843672-4 27 86.592953 hybrid +142_2-4 Q0 KILT_5302486-3 28 86.592653 hybrid +142_2-4 Q0 MARCO_02_1717587934-4 29 86.572504 hybrid +142_2-4 Q0 MARCO_28_986422727-3 30 86.572503 hybrid +142_2-4 Q0 MARCO_18_106335865-2 31 86.560254 hybrid +142_2-4 Q0 MARCO_02_859848405-4 32 86.511903 hybrid +142_2-4 Q0 MARCO_25_794773696-8 33 86.495954 hybrid +142_2-4 Q0 MARCO_02_1261032022-3 34 86.442554 hybrid +142_2-4 Q0 MARCO_38_1575935851-4 35 86.442553 hybrid +142_2-4 Q0 MARCO_38_1575935851-8 36 86.442553 hybrid +142_2-4 Q0 MARCO_08_1170054893-1 37 86.417553 hybrid +142_2-4 Q0 MARCO_06_486574834-19 38 86.412953 hybrid +142_2-4 Q0 MARCO_36_127164723-1 39 86.387053 hybrid +142_2-4 Q0 MARCO_52_1635048905-4 40 86.337654 hybrid +142_2-4 Q0 MARCO_52_1621186195-5 41 86.295953 hybrid +142_2-4 Q0 KILT_164372-7 42 86.270253 hybrid +142_2-4 Q0 MARCO_40_920538064-8 43 86.249653 hybrid +142_2-4 Q0 MARCO_55_571877741-3 44 86.233937 hybrid +142_2-4 Q0 MARCO_10_624819786-9 45 86.228153 hybrid +142_2-4 Q0 MARCO_16_4024952049-8 46 86.212803 hybrid +142_2-4 Q0 MARCO_20_232780208-6 47 86.212803 hybrid +142_2-4 Q0 MARCO_45_22302590-7 48 86.206803 hybrid +142_2-4 Q0 MARCO_55_524139535-2 49 86.164703 hybrid +142_2-4 Q0 MARCO_02_859848405-1 50 86.155354 hybrid +142_2-4 Q0 MARCO_08_1170054893-3 51 86.155353 hybrid +142_2-4 Q0 MARCO_55_247213724-16 52 86.155353 hybrid +142_2-4 Q0 MARCO_06_1240614560-49 53 86.127022 hybrid +142_2-4 Q0 MARCO_26_1683729744-7 54 86.086003 hybrid +142_2-4 Q0 MARCO_16_2205454508-13 55 86.048203 hybrid +142_2-4 Q0 MARCO_20_315498384-10 56 86.048203 hybrid +142_2-4 Q0 MARCO_37_171316582-6 57 86.048203 hybrid +142_2-4 Q0 MARCO_45_22302590-3 58 86.048202 hybrid +142_2-4 Q0 KILT_12255257-1 59 86.025553 hybrid +142_2-4 Q0 MARCO_19_1394828228-3 60 86.025553 hybrid +142_2-4 Q0 MARCO_10_802917812-3 61 86.006453 hybrid +142_2-4 Q0 MARCO_03_304517922-3 62 85.995753 hybrid +142_2-4 Q0 MARCO_17_674008977-4 63 85.995753 hybrid +142_2-4 Q0 MARCO_52_1472442561-10 64 85.995752 hybrid +142_2-4 Q0 KILT_2678089-3 65 85.985313 hybrid +142_2-4 Q0 MARCO_18_1462330817-16 66 85.973603 hybrid +142_2-4 Q0 KILT_7717615-1 67 85.967178 hybrid +142_2-4 Q0 MARCO_19_1394833765-4 68 85.957203 hybrid +142_2-4 Q0 MARCO_55_25409365-5 69 85.948003 hybrid +142_2-4 Q0 MARCO_01_1159938790-7 70 85.922753 hybrid +142_2-4 Q0 MARCO_51_875663106-1 71 85.922752 hybrid +142_2-4 Q0 MARCO_00_1055590783-4 72 85.921204 hybrid +142_2-4 Q0 MARCO_45_1295334392-1 73 85.915854 hybrid +142_2-4 Q0 MARCO_30_1050868990-1 74 85.907003 hybrid +142_2-4 Q0 MARCO_33_101404883-5 75 85.907003 hybrid +142_2-4 Q0 MARCO_13_620086192-13 76 85.897704 hybrid +142_2-4 Q0 MARCO_15_278690796-3 77 85.897703 hybrid +142_2-4 Q0 MARCO_37_1194837970-3 78 85.897703 hybrid +142_2-4 Q0 KILT_22524325-1 79 85.896803 hybrid +142_2-4 Q0 KILT_32239668-1 80 85.882850 hybrid +142_2-4 Q0 MARCO_17_3851175486-56 81 85.872953 hybrid +142_2-4 Q0 MARCO_30_197775896-7 82 85.872953 hybrid +142_2-4 Q0 MARCO_52_1635048905-5 83 85.872952 hybrid +142_2-4 Q0 MARCO_56_112930611-2 84 85.872952 hybrid +142_2-4 Q0 MARCO_35_465018758-6 85 85.871753 hybrid +142_2-4 Q0 MARCO_05_848975837-2 86 85.867668 hybrid +142_2-4 Q0 MARCO_50_1395471412-11 87 85.859154 hybrid +142_2-4 Q0 MARCO_04_1474402086-4 88 85.848253 hybrid +142_2-4 Q0 MARCO_15_106982860-3 89 85.845794 hybrid +142_2-4 Q0 MARCO_10_448253860-6 90 85.837272 hybrid +142_2-4 Q0 MARCO_34_1099412811-2 91 85.837103 hybrid +142_2-4 Q0 KILT_57086836-1 92 85.829658 hybrid +142_2-4 Q0 MARCO_19_1394833765-2 93 85.824254 hybrid +142_2-4 Q0 KILT_15961583-1 94 85.802190 hybrid +142_2-4 Q0 MARCO_06_1149196799-139 95 85.793861 hybrid +142_2-4 Q0 KILT_48619690-2 96 85.772362 hybrid +142_2-4 Q0 KILT_35325571-1 97 85.770195 hybrid +142_2-4 Q0 MARCO_44_1740511055-5 98 85.769353 hybrid +142_2-4 Q0 KILT_14024031-1 99 85.741760 hybrid +142_2-4 Q0 KILT_22768351-1 100 85.738103 hybrid +142_3-1 Q0 MARCO_55_1245662540-1 1 105.733814 hybrid +142_3-1 Q0 MARCO_30_1004054024-7 2 96.268916 hybrid +142_3-1 Q0 MARCO_45_22302590-3 3 96.115765 hybrid +142_3-1 Q0 MARCO_37_854774456-1 4 95.807014 hybrid +142_3-1 Q0 MARCO_50_2855786327-1 5 95.255965 hybrid +142_3-1 Q0 MARCO_25_937745370-10 6 95.026715 hybrid +142_3-1 Q0 MARCO_05_1056114070-1 7 95.017065 hybrid +142_3-1 Q0 MARCO_45_22302590-9 8 94.939565 hybrid +142_3-1 Q0 MARCO_36_259021788-2 9 94.864215 hybrid +142_3-1 Q0 MARCO_35_1741934393-1 10 94.723665 hybrid +142_3-1 Q0 MARCO_16_3046749093-41 11 94.664364 hybrid +142_3-1 Q0 MARCO_10_1612385551-11 12 94.594015 hybrid +142_3-1 Q0 MARCO_09_1096320400-1 13 94.592515 hybrid +142_3-1 Q0 MARCO_03_849955296-56 14 94.405465 hybrid +142_3-1 Q0 MARCO_05_849004482-5 15 94.349931 hybrid +142_3-1 Q0 MARCO_10_120187103-2 16 94.333732 hybrid +142_3-1 Q0 MARCO_30_426878678-18 17 94.280915 hybrid +142_3-1 Q0 MARCO_37_854774456-4 18 94.240065 hybrid +142_3-1 Q0 MARCO_53_1065767658-2 19 94.191165 hybrid +142_3-1 Q0 MARCO_16_3046749093-40 20 94.095074 hybrid +142_3-1 Q0 MARCO_22_1189428320-5 21 94.049694 hybrid +142_3-1 Q0 KILT_34244921-1 22 93.956665 hybrid +142_3-1 Q0 MARCO_24_1139351957-10 23 93.908843 hybrid +142_3-1 Q0 MARCO_03_415341416-9 24 93.893865 hybrid +142_3-1 Q0 MARCO_13_429847964-1 25 93.737265 hybrid +142_3-1 Q0 MARCO_45_283374648-3 26 93.731215 hybrid +142_3-1 Q0 MARCO_10_120187103-10 27 93.709331 hybrid +142_3-1 Q0 MARCO_37_854787432-1 28 93.684165 hybrid +142_3-1 Q0 KILT_34244948-2 29 93.572065 hybrid +142_3-1 Q0 MARCO_10_120187103-8 30 93.569420 hybrid +142_3-1 Q0 MARCO_25_297460066-5 31 93.563314 hybrid +142_3-1 Q0 MARCO_13_429898392-1 32 93.561415 hybrid +142_3-1 Q0 MARCO_20_1631271525-1 33 93.540565 hybrid +142_3-1 Q0 MARCO_27_1226593374-94 34 93.520715 hybrid +142_3-1 Q0 KILT_3255433-1 35 93.456614 hybrid +142_3-1 Q0 MARCO_27_1641181660-1 36 93.435015 hybrid +142_3-1 Q0 MARCO_16_2207010817-23 37 93.431065 hybrid +142_3-1 Q0 MARCO_39_1078232837-1 38 93.421015 hybrid +142_3-1 Q0 MARCO_41_1296235289-2 39 93.370165 hybrid +142_3-1 Q0 MARCO_11_1448564973-11 40 93.352690 hybrid +142_3-1 Q0 MARCO_51_876291753-23 41 93.340065 hybrid +142_3-1 Q0 MARCO_10_120187103-1 42 93.338991 hybrid +142_3-1 Q0 MARCO_10_1612385551-10 43 93.336015 hybrid +142_3-1 Q0 KILT_4612169-5 44 93.331415 hybrid +142_3-1 Q0 KILT_8401330-2 45 93.264265 hybrid +142_3-1 Q0 MARCO_16_2206136040-2 46 93.261865 hybrid +142_3-1 Q0 MARCO_24_1832376406-4 47 93.255065 hybrid +142_3-1 Q0 MARCO_33_827028099-4 48 93.245815 hybrid +142_3-1 Q0 MARCO_10_120187103-9 49 93.232579 hybrid +142_3-1 Q0 MARCO_19_2045799633-16 50 93.212685 hybrid +142_3-1 Q0 MARCO_55_1708317826-5 51 93.210087 hybrid +142_3-1 Q0 MARCO_29_1448879597-2 52 93.194215 hybrid +142_3-1 Q0 KILT_255919-30 53 93.173365 hybrid +142_3-1 Q0 KILT_14914953-1 54 93.141924 hybrid +142_3-1 Q0 MARCO_10_1612385551-27 55 93.134015 hybrid +142_3-1 Q0 MARCO_05_849004482-4 56 93.122636 hybrid +142_3-1 Q0 MARCO_53_1065767658-15 57 93.102215 hybrid +142_3-1 Q0 MARCO_00_1334150352-2 58 93.082165 hybrid +142_3-1 Q0 MARCO_10_158548580-13 59 93.066615 hybrid +142_3-1 Q0 MARCO_01_574379408-3 60 93.050315 hybrid +142_3-1 Q0 MARCO_41_1807666760-7 61 92.993565 hybrid +142_3-1 Q0 MARCO_25_297460066-7 62 92.988465 hybrid +142_3-1 Q0 MARCO_47_1602505698-8 63 92.983130 hybrid +142_3-1 Q0 MARCO_26_767392254-2 64 92.972014 hybrid +142_3-1 Q0 MARCO_27_912003150-1 65 92.891722 hybrid +142_3-1 Q0 KILT_6060924-1 66 92.886865 hybrid +142_3-1 Q0 MARCO_05_1671278326-4 67 92.866565 hybrid +142_3-1 Q0 MARCO_09_1214020601-33 68 92.853815 hybrid +142_3-1 Q0 MARCO_03_849955296-57 69 92.821915 hybrid +142_3-1 Q0 MARCO_03_702645269-1 70 92.810565 hybrid +142_3-1 Q0 MARCO_05_848957007-9 71 92.746573 hybrid +142_3-1 Q0 MARCO_06_151818996-11 72 92.735115 hybrid +142_3-1 Q0 KILT_31100420-19 73 92.734165 hybrid +142_3-1 Q0 MARCO_16_3046749093-51 74 92.724469 hybrid +142_3-1 Q0 KILT_57026231-5 75 92.717565 hybrid +142_3-1 Q0 MARCO_08_635410990-5 76 92.711465 hybrid +142_3-1 Q0 MARCO_55_1409415917-11 77 92.710615 hybrid +142_3-1 Q0 MARCO_52_1624445141-2 78 92.703465 hybrid +142_3-1 Q0 MARCO_55_1245662540-3 79 92.696115 hybrid +142_3-1 Q0 KILT_41423357-4 80 92.694465 hybrid +142_3-1 Q0 MARCO_13_343037176-1 81 92.689815 hybrid +142_3-1 Q0 MARCO_59_381730934-9 82 92.677315 hybrid +142_3-1 Q0 MARCO_34_1720985463-1 83 92.667815 hybrid +142_3-1 Q0 MARCO_30_2013006327-1 84 92.632239 hybrid +142_3-1 Q0 KILT_42986208-1 85 92.615165 hybrid +142_3-1 Q0 KILT_5335433-3 86 92.610265 hybrid +142_3-1 Q0 KILT_247169-5 87 92.584465 hybrid +142_3-1 Q0 MARCO_29_1447365717-1 88 92.582664 hybrid +142_3-1 Q0 MARCO_10_158548580-1 89 92.575265 hybrid +142_3-1 Q0 MARCO_30_2012938093-7 90 92.562515 hybrid +142_3-1 Q0 MARCO_10_158548580-5 91 92.528914 hybrid +142_3-1 Q0 MARCO_54_1571592040-4 92 92.509965 hybrid +142_3-1 Q0 MARCO_17_1359996266-10 93 92.509215 hybrid +142_3-1 Q0 MARCO_12_1102872949-2 94 92.487365 hybrid +142_3-1 Q0 MARCO_34_1754594337-3 95 92.476615 hybrid +142_3-1 Q0 MARCO_14_1532200398-3 96 92.461965 hybrid +142_3-1 Q0 MARCO_55_1409415917-6 97 92.440715 hybrid +142_3-1 Q0 MARCO_05_1671278326-1 98 92.429465 hybrid +142_3-1 Q0 MARCO_32_1208243439-3 99 92.415465 hybrid +142_3-1 Q0 MARCO_05_1671278326-14 100 92.371614 hybrid +142_3-3 Q0 MARCO_05_849004482-2 1 94.123399 hybrid +142_3-3 Q0 MARCO_05_849015218-3 2 93.910370 hybrid +142_3-3 Q0 MARCO_05_848986452-3 3 92.915561 hybrid +142_3-3 Q0 MARCO_05_849004482-7 4 92.273035 hybrid +142_3-3 Q0 MARCO_05_849004482-1 5 91.650372 hybrid +142_3-3 Q0 MARCO_10_790347853-4 6 91.509086 hybrid +142_3-3 Q0 MARCO_05_849036905-3 7 91.367191 hybrid +142_3-3 Q0 MARCO_05_849004482-6 8 91.350148 hybrid +142_3-3 Q0 MARCO_04_181543666-2 9 90.738036 hybrid +142_3-3 Q0 MARCO_05_849004482-3 10 90.654059 hybrid +142_3-3 Q0 MARCO_05_849015218-10 11 90.615775 hybrid +142_3-3 Q0 MARCO_05_849015218-4 12 90.496135 hybrid +142_3-3 Q0 MARCO_04_181543666-3 13 90.314652 hybrid +142_3-3 Q0 MARCO_05_849029985-1 14 90.293569 hybrid +142_3-3 Q0 MARCO_34_1754594337-3 15 90.268801 hybrid +142_3-3 Q0 MARCO_45_1237326115-3 16 90.253851 hybrid +142_3-3 Q0 MARCO_05_849036905-4 17 90.154952 hybrid +142_3-3 Q0 MARCO_13_429898392-1 18 90.147101 hybrid +142_3-3 Q0 MARCO_05_848975837-6 19 90.137700 hybrid +142_3-3 Q0 KILT_262752-1 20 90.007201 hybrid +142_3-3 Q0 MARCO_30_2012938093-7 21 89.996984 hybrid +142_3-3 Q0 MARCO_54_1646111923-1 22 89.855144 hybrid +142_3-3 Q0 MARCO_05_848957007-6 23 89.821532 hybrid +142_3-3 Q0 MARCO_11_17181996-4 24 89.735816 hybrid +142_3-3 Q0 MARCO_36_816068485-1 25 89.615040 hybrid +142_3-3 Q0 MARCO_04_181543666-1 26 89.611173 hybrid +142_3-3 Q0 MARCO_35_1741934393-1 27 89.570801 hybrid +142_3-3 Q0 MARCO_05_1885118257-163 28 89.568451 hybrid +142_3-3 Q0 MARCO_10_120187103-8 29 89.561752 hybrid +142_3-3 Q0 MARCO_05_848986452-4 30 89.547045 hybrid +142_3-3 Q0 MARCO_05_849015218-9 31 89.511059 hybrid +142_3-3 Q0 KILT_576061-3 32 89.488351 hybrid +142_3-3 Q0 MARCO_39_1259607096-8 33 89.480651 hybrid +142_3-3 Q0 MARCO_07_735489390-16 34 89.474801 hybrid +142_3-3 Q0 MARCO_05_849004482-4 35 89.450911 hybrid +142_3-3 Q0 MARCO_51_101597409-6 36 89.388452 hybrid +142_3-3 Q0 MARCO_10_120187103-2 37 89.360156 hybrid +142_3-3 Q0 MARCO_04_181543666-4 38 89.352958 hybrid +142_3-3 Q0 MARCO_11_17181996-2 39 89.338778 hybrid +142_3-3 Q0 MARCO_56_1866819645-2 40 89.330451 hybrid +142_3-3 Q0 MARCO_05_848986452-7 41 89.302632 hybrid +142_3-3 Q0 MARCO_01_574379408-2 42 89.298801 hybrid +142_3-3 Q0 MARCO_05_1010052703-1 43 89.297401 hybrid +142_3-3 Q0 MARCO_05_849015218-7 44 89.248503 hybrid +142_3-3 Q0 MARCO_05_849036905-5 45 89.238448 hybrid +142_3-3 Q0 MARCO_05_849015218-2 46 89.228347 hybrid +142_3-3 Q0 MARCO_36_259021788-2 47 89.203101 hybrid +142_3-3 Q0 MARCO_05_848986452-6 48 89.192884 hybrid +142_3-3 Q0 MARCO_09_1214020601-32 49 89.155201 hybrid +142_3-3 Q0 KILT_21355134-1 50 89.153464 hybrid +142_3-3 Q0 KILT_35739075-1 51 89.146478 hybrid +142_3-3 Q0 KILT_433171-5 52 89.119943 hybrid +142_3-3 Q0 MARCO_33_606991198-8 53 89.109601 hybrid +142_3-3 Q0 MARCO_45_1255488010-2 54 89.095001 hybrid +142_3-3 Q0 MARCO_11_17181996-3 55 89.091699 hybrid +142_3-3 Q0 MARCO_05_848957007-5 56 89.068017 hybrid +142_3-3 Q0 MARCO_10_1419858694-18 57 89.067792 hybrid +142_3-3 Q0 MARCO_45_1264854305-2 58 89.064617 hybrid +142_3-3 Q0 MARCO_00_1334589289-2 59 89.039851 hybrid +142_3-3 Q0 MARCO_17_4567932370-1 60 89.035201 hybrid +142_3-3 Q0 KILT_252924-1 61 88.988101 hybrid +142_3-3 Q0 MARCO_16_1730396730-6 62 88.953752 hybrid +142_3-3 Q0 KILT_960664-25 63 88.945301 hybrid +142_3-3 Q0 MARCO_48_1576677686-23 64 88.934551 hybrid +142_3-3 Q0 MARCO_45_1264854305-3 65 88.928307 hybrid +142_3-3 Q0 MARCO_05_848483518-1 66 88.919843 hybrid +142_3-3 Q0 MARCO_40_1510937140-1 67 88.909801 hybrid +142_3-3 Q0 MARCO_37_751280871-11 68 88.903801 hybrid +142_3-3 Q0 MARCO_09_1187981600-1 69 88.899351 hybrid +142_3-3 Q0 MARCO_20_19875054-3 70 88.899338 hybrid +142_3-3 Q0 MARCO_05_849004482-5 71 88.880105 hybrid +142_3-3 Q0 MARCO_16_2206136040-28 72 88.856801 hybrid +142_3-3 Q0 MARCO_50_1053444155-27 73 88.843051 hybrid +142_3-3 Q0 KILT_376118-7 74 88.842201 hybrid +142_3-3 Q0 MARCO_45_1265329830-4 75 88.808722 hybrid +142_3-3 Q0 MARCO_22_1186906798-5 76 88.767932 hybrid +142_3-3 Q0 MARCO_00_1334589289-1 77 88.765651 hybrid +142_3-3 Q0 MARCO_01_1664921376-1 78 88.764201 hybrid +142_3-3 Q0 KILT_508795-7 79 88.764144 hybrid +142_3-3 Q0 MARCO_36_816068485-4 80 88.741101 hybrid +142_3-3 Q0 MARCO_09_1209653735-11 81 88.739951 hybrid +142_3-3 Q0 MARCO_49_520124878-2 82 88.705873 hybrid +142_3-3 Q0 MARCO_50_1256610195-25 83 88.690901 hybrid +142_3-3 Q0 MARCO_50_1630527488-12 84 88.690901 hybrid +142_3-3 Q0 MARCO_36_816068485-12 85 88.677151 hybrid +142_3-3 Q0 MARCO_22_1854099206-41 86 88.659901 hybrid +142_3-3 Q0 MARCO_05_848927550-2 87 88.649480 hybrid +142_3-3 Q0 MARCO_24_1414289955-1 88 88.641301 hybrid +142_3-3 Q0 MARCO_16_3905561194-11 89 88.639951 hybrid +142_3-3 Q0 KILT_21355134-3 90 88.633586 hybrid +142_3-3 Q0 MARCO_05_849004482-9 91 88.615856 hybrid +142_3-3 Q0 MARCO_45_1237326115-1 92 88.611401 hybrid +142_3-3 Q0 MARCO_10_511544416-1 93 88.605701 hybrid +142_3-3 Q0 MARCO_05_1671278326-1 94 88.596651 hybrid +142_3-3 Q0 MARCO_50_1670843783-22 95 88.596647 hybrid +142_3-3 Q0 MARCO_05_848986452-1 96 88.589954 hybrid +142_3-3 Q0 MARCO_13_429847964-1 97 88.557051 hybrid +142_3-3 Q0 MARCO_27_912003150-1 98 88.548848 hybrid +142_3-3 Q0 MARCO_10_158548580-6 99 88.538101 hybrid +142_3-3 Q0 MARCO_55_1698156649-8 100 88.534701 hybrid +142_3-5 Q0 MARCO_04_135230917-3 1 87.065690 hybrid +142_3-5 Q0 MARCO_30_2013006327-1 2 87.016059 hybrid +142_3-5 Q0 MARCO_58_1505463998-2 3 86.905297 hybrid +142_3-5 Q0 MARCO_30_901383913-1 4 86.584940 hybrid +142_3-5 Q0 MARCO_28_986492477-1 5 86.498151 hybrid +142_3-5 Q0 MARCO_06_1240614560-40 6 86.489097 hybrid +142_3-5 Q0 KILT_13510226-1 7 86.461240 hybrid +142_3-5 Q0 MARCO_58_1506642595-1 8 86.384399 hybrid +142_3-5 Q0 MARCO_30_2013006327-6 9 86.381377 hybrid +142_3-5 Q0 MARCO_31_900217158-4 10 86.330215 hybrid +142_3-5 Q0 MARCO_12_1102872949-1 11 86.300090 hybrid +142_3-5 Q0 MARCO_03_1206509662-1 12 86.282690 hybrid +142_3-5 Q0 MARCO_04_217203515-3 13 86.276984 hybrid +142_3-5 Q0 KILT_34344673-2 14 86.272277 hybrid +142_3-5 Q0 MARCO_09_676087227-1 15 86.252940 hybrid +142_3-5 Q0 MARCO_58_833765956-5 16 86.231640 hybrid +142_3-5 Q0 MARCO_17_2524961420-1 17 86.231025 hybrid +142_3-5 Q0 MARCO_03_1774553245-2 18 86.226740 hybrid +142_3-5 Q0 MARCO_17_357433963-7 19 86.201194 hybrid +142_3-5 Q0 MARCO_39_610593945-2 20 86.178773 hybrid +142_3-5 Q0 MARCO_06_1240614560-37 21 86.138015 hybrid +142_3-5 Q0 MARCO_26_1700877525-1 22 86.132690 hybrid +142_3-5 Q0 MARCO_45_201834591-3 23 86.105521 hybrid +142_3-5 Q0 KILT_26507946-2 24 86.094024 hybrid +142_3-5 Q0 MARCO_20_337149396-14 25 86.063840 hybrid +142_3-5 Q0 MARCO_30_2013006327-3 26 86.061446 hybrid +142_3-5 Q0 MARCO_58_933447283-2 27 86.052290 hybrid +142_3-5 Q0 MARCO_19_2045907716-12 28 86.042991 hybrid +142_3-5 Q0 MARCO_18_2404733400-7 29 86.029624 hybrid +142_3-5 Q0 MARCO_31_1656676485-2 30 86.022107 hybrid +142_3-5 Q0 KILT_44973915-20 31 86.020477 hybrid +142_3-5 Q0 KILT_52132991-1 32 86.020190 hybrid +142_3-5 Q0 MARCO_24_555406937-1 33 86.019590 hybrid +142_3-5 Q0 KILT_162898-21 34 86.008440 hybrid +142_3-5 Q0 MARCO_16_3046944575-20 35 85.995826 hybrid +142_3-5 Q0 MARCO_46_435057343-2 36 85.979840 hybrid +142_3-5 Q0 MARCO_17_2524961420-3 37 85.979644 hybrid +142_3-5 Q0 MARCO_50_1561417067-12 38 85.966390 hybrid +142_3-5 Q0 KILT_2527950-1 39 85.944602 hybrid +142_3-5 Q0 MARCO_04_217203515-4 40 85.944373 hybrid +142_3-5 Q0 KILT_2527950-5 41 85.924032 hybrid +142_3-5 Q0 MARCO_16_3046749093-37 42 85.920486 hybrid +142_3-5 Q0 MARCO_06_1240614560-33 43 85.914054 hybrid +142_3-5 Q0 MARCO_53_292121852-3 44 85.913940 hybrid +142_3-5 Q0 MARCO_58_1505463998-1 45 85.910972 hybrid +142_3-5 Q0 MARCO_47_1601362260-9 46 85.909766 hybrid +142_3-5 Q0 MARCO_21_1396071932-2 47 85.908569 hybrid +142_3-5 Q0 MARCO_12_1102872949-4 48 85.903690 hybrid +142_3-5 Q0 MARCO_15_1890843658-3 49 85.901240 hybrid +142_3-5 Q0 MARCO_05_1348759273-2 50 85.890731 hybrid +142_3-5 Q0 MARCO_00_1103228103-3 51 85.878814 hybrid +142_3-5 Q0 MARCO_05_849015218-10 52 85.875700 hybrid +142_3-5 Q0 MARCO_50_1441723234-18 53 85.875617 hybrid +142_3-5 Q0 KILT_49303743-1 54 85.869940 hybrid +142_3-5 Q0 KILT_37217735-9 55 85.865775 hybrid +142_3-5 Q0 MARCO_05_848975837-1 56 85.860137 hybrid +142_3-5 Q0 MARCO_49_446521076-4 57 85.859940 hybrid +142_3-5 Q0 MARCO_05_1348759273-1 58 85.856910 hybrid +142_3-5 Q0 KILT_49623066-1 59 85.855590 hybrid +142_3-5 Q0 MARCO_11_1510388642-2 60 85.847213 hybrid +142_3-5 Q0 MARCO_30_2013006327-4 61 85.844283 hybrid +142_3-5 Q0 KILT_34879285-1 62 85.842551 hybrid +142_3-5 Q0 MARCO_49_446113906-4 63 85.839740 hybrid +142_3-5 Q0 MARCO_26_1770120127-6 64 85.837090 hybrid +142_3-5 Q0 MARCO_34_1029448518-1 65 85.828590 hybrid +142_3-5 Q0 MARCO_21_1396056938-3 66 85.823852 hybrid +142_3-5 Q0 MARCO_39_670955540-31 67 85.814048 hybrid +142_3-5 Q0 MARCO_19_1399831327-11 68 85.811390 hybrid +142_3-5 Q0 MARCO_19_1399831327-9 69 85.811389 hybrid +142_3-5 Q0 MARCO_21_1394671480-5 70 85.810775 hybrid +142_3-5 Q0 MARCO_31_900217158-2 71 85.808540 hybrid +142_3-5 Q0 KILT_27644194-19 72 85.804374 hybrid +142_3-5 Q0 KILT_59613337-5 73 85.799552 hybrid +142_3-5 Q0 MARCO_16_3298791525-2 74 85.788182 hybrid +142_3-5 Q0 MARCO_31_900217158-3 75 85.786681 hybrid +142_3-5 Q0 MARCO_52_1623405322-4 76 85.783740 hybrid +142_3-5 Q0 MARCO_04_217203515-5 77 85.778991 hybrid +142_3-5 Q0 MARCO_38_608944854-1 78 85.775810 hybrid +142_3-5 Q0 MARCO_31_900217158-1 79 85.770794 hybrid +142_3-5 Q0 MARCO_58_833765956-3 80 85.759140 hybrid +142_3-5 Q0 KILT_24531487-2 81 85.756140 hybrid +142_3-5 Q0 MARCO_39_617979123-62 82 85.737762 hybrid +142_3-5 Q0 MARCO_47_1601362260-6 83 85.737319 hybrid +142_3-5 Q0 MARCO_26_1797484646-2 84 85.727040 hybrid +142_3-5 Q0 KILT_23461817-3 85 85.724067 hybrid +142_3-5 Q0 MARCO_17_4256986552-2 86 85.722190 hybrid +142_3-5 Q0 MARCO_39_617979123-64 87 85.719787 hybrid +142_3-5 Q0 KILT_57303275-1 88 85.719490 hybrid +142_3-5 Q0 MARCO_38_595193469-1 89 85.719140 hybrid +142_3-5 Q0 MARCO_24_412440911-1 90 85.714390 hybrid +142_3-5 Q0 MARCO_39_610806867-15 91 85.710624 hybrid +142_3-5 Q0 MARCO_46_641033483-4 92 85.707640 hybrid +142_3-5 Q0 MARCO_06_1240614560-32 93 85.706893 hybrid +142_3-5 Q0 MARCO_21_1396071932-1 94 85.704993 hybrid +142_3-5 Q0 KILT_1329929-1 95 85.702940 hybrid +142_3-5 Q0 KILT_960664-3 96 85.702940 hybrid +142_3-5 Q0 KILT_23461817-2 97 85.700835 hybrid +142_3-5 Q0 KILT_13920022-1 98 85.695373 hybrid +142_3-5 Q0 MARCO_03_721593473-1 99 85.694590 hybrid +142_3-5 Q0 MARCO_17_481275423-53 100 85.680940 hybrid +142_4-1 Q0 MARCO_34_1754594337-3 1 91.666020 hybrid +142_4-1 Q0 MARCO_11_1448564973-10 2 91.257133 hybrid +142_4-1 Q0 MARCO_30_1004054024-7 3 89.957663 hybrid +142_4-1 Q0 MARCO_10_120187103-9 4 89.107119 hybrid +142_4-1 Q0 KILT_1359000-1 5 88.761569 hybrid +142_4-1 Q0 MARCO_10_120187103-3 6 88.556601 hybrid +142_4-1 Q0 KILT_43628081-2 7 88.381320 hybrid +142_4-1 Q0 MARCO_54_871189766-1 8 88.372520 hybrid +142_4-1 Q0 MARCO_14_52176501-3 9 88.291121 hybrid +142_4-1 Q0 KILT_22096158-1 10 88.187370 hybrid +142_4-1 Q0 MARCO_10_120187103-8 11 88.021803 hybrid +142_4-1 Q0 MARCO_22_1186906798-5 12 87.997122 hybrid +142_4-1 Q0 KILT_1347662-1 13 87.996920 hybrid +142_4-1 Q0 KILT_9113619-1 14 87.987370 hybrid +142_4-1 Q0 KILT_566821-74 15 87.965920 hybrid +142_4-1 Q0 MARCO_17_674008977-6 16 87.932333 hybrid +142_4-1 Q0 MARCO_55_248583746-11 17 87.901300 hybrid +142_4-1 Q0 KILT_6554910-3 18 87.887775 hybrid +142_4-1 Q0 MARCO_16_3046749093-65 19 87.830961 hybrid +142_4-1 Q0 MARCO_17_674008977-4 20 87.825527 hybrid +142_4-1 Q0 KILT_8773374-3 21 87.821585 hybrid +142_4-1 Q0 MARCO_58_1419053757-1 22 87.771120 hybrid +142_4-1 Q0 KILT_45338270-1 23 87.756820 hybrid +142_4-1 Q0 KILT_1140859-18 24 87.714422 hybrid +142_4-1 Q0 MARCO_01_1859246882-5 25 87.703770 hybrid +142_4-1 Q0 MARCO_10_120187103-2 26 87.701052 hybrid +142_4-1 Q0 KILT_21507264-1 27 87.694970 hybrid +142_4-1 Q0 KILT_22364320-2 28 87.677870 hybrid +142_4-1 Q0 MARCO_54_585529597-1 29 87.677870 hybrid +142_4-1 Q0 MARCO_31_1646897069-2 30 87.669600 hybrid +142_4-1 Q0 MARCO_05_812071402-4 31 87.658400 hybrid +142_4-1 Q0 KILT_24180581-1 32 87.652470 hybrid +142_4-1 Q0 MARCO_31_1668687564-6 33 87.648270 hybrid +142_4-1 Q0 MARCO_31_1668761071-5 34 87.648270 hybrid +142_4-1 Q0 MARCO_27_1679646173-8 35 87.639720 hybrid +142_4-1 Q0 KILT_5302486-3 36 87.638779 hybrid +142_4-1 Q0 KILT_51611377-16 37 87.636370 hybrid +142_4-1 Q0 MARCO_16_3046749093-46 38 87.621344 hybrid +142_4-1 Q0 MARCO_11_1448564973-4 39 87.616529 hybrid +142_4-1 Q0 KILT_6554910-6 40 87.613661 hybrid +142_4-1 Q0 KILT_2652684-1 41 87.601320 hybrid +142_4-1 Q0 MARCO_14_52176501-2 42 87.595366 hybrid +142_4-1 Q0 MARCO_11_1448564973-9 43 87.544142 hybrid +142_4-1 Q0 MARCO_29_1447295533-4 44 87.544120 hybrid +142_4-1 Q0 MARCO_16_3046749093-4 45 87.543572 hybrid +142_4-1 Q0 KILT_39114241-2 46 87.542870 hybrid +142_4-1 Q0 KILT_8773374-4 47 87.521116 hybrid +142_4-1 Q0 KILT_34415953-3 48 87.520773 hybrid +142_4-1 Q0 MARCO_16_3046749093-55 49 87.495151 hybrid +142_4-1 Q0 KILT_38236138-8 50 87.492870 hybrid +142_4-1 Q0 MARCO_16_3046749093-45 51 87.491789 hybrid +142_4-1 Q0 MARCO_16_3046749093-50 52 87.491116 hybrid +142_4-1 Q0 MARCO_03_438137118-35 53 87.488020 hybrid +142_4-1 Q0 KILT_18618358-2 54 87.485769 hybrid +142_4-1 Q0 MARCO_06_138415556-13 55 87.458770 hybrid +142_4-1 Q0 MARCO_55_1654783944-1 56 87.436720 hybrid +142_4-1 Q0 KILT_50665371-9 57 87.435163 hybrid +142_4-1 Q0 KILT_22918325-3 58 87.434620 hybrid +142_4-1 Q0 MARCO_17_3302332987-23 59 87.434620 hybrid +142_4-1 Q0 MARCO_16_3046749093-34 60 87.426481 hybrid +142_4-1 Q0 KILT_57698198-3 61 87.410570 hybrid +142_4-1 Q0 KILT_25515537-1 62 87.384169 hybrid +142_4-1 Q0 MARCO_16_3046749093-51 63 87.383353 hybrid +142_4-1 Q0 KILT_29192048-1 64 87.348494 hybrid +142_4-1 Q0 MARCO_16_3046749093-42 65 87.347326 hybrid +142_4-1 Q0 KILT_9390071-1 66 87.345800 hybrid +142_4-1 Q0 KILT_47499851-1 67 87.336920 hybrid +142_4-1 Q0 MARCO_55_1728784830-2 68 87.331480 hybrid +142_4-1 Q0 KILT_6001027-6 69 87.329100 hybrid +142_4-1 Q0 MARCO_22_1189445202-25 70 87.329084 hybrid +142_4-1 Q0 KILT_7717615-1 71 87.326803 hybrid +142_4-1 Q0 KILT_48876466-1 72 87.324644 hybrid +142_4-1 Q0 MARCO_18_801605388-33 73 87.321970 hybrid +142_4-1 Q0 KILT_58941729-1 74 87.297674 hybrid +142_4-1 Q0 KILT_889153-33 75 87.285320 hybrid +142_4-1 Q0 KILT_19321330-25 76 87.283370 hybrid +142_4-1 Q0 KILT_1761434-13 77 87.277349 hybrid +142_4-1 Q0 MARCO_18_3820620089-2 78 87.272820 hybrid +142_4-1 Q0 MARCO_36_1008828234-11 79 87.269819 hybrid +142_4-1 Q0 KILT_4704929-1 80 87.269420 hybrid +142_4-1 Q0 KILT_1162854-20 81 87.259962 hybrid +142_4-1 Q0 MARCO_24_1126171266-11 82 87.254538 hybrid +142_4-1 Q0 KILT_7478387-1 83 87.247465 hybrid +142_4-1 Q0 MARCO_00_1237121713-41 84 87.246170 hybrid +142_4-1 Q0 MARCO_54_585529597-7 85 87.238620 hybrid +142_4-1 Q0 MARCO_16_3046749093-39 86 87.237494 hybrid +142_4-1 Q0 KILT_7478131-1 87 87.235212 hybrid +142_4-1 Q0 MARCO_54_462511606-1 88 87.234870 hybrid +142_4-1 Q0 MARCO_40_963946044-10 89 87.225170 hybrid +142_4-1 Q0 MARCO_43_370982799-12 90 87.225170 hybrid +142_4-1 Q0 MARCO_36_1008692847-9 91 87.216658 hybrid +142_4-1 Q0 KILT_39905364-2 92 87.212416 hybrid +142_4-1 Q0 KILT_27799661-2 93 87.209470 hybrid +142_4-1 Q0 MARCO_55_1652338223-2 94 87.207520 hybrid +142_4-1 Q0 MARCO_16_1109184094-5 95 87.198652 hybrid +142_4-1 Q0 KILT_44175543-3 96 87.193182 hybrid +142_4-1 Q0 MARCO_55_1705436495-5 97 87.190886 hybrid +142_4-1 Q0 MARCO_05_848957007-14 98 87.189970 hybrid +142_4-1 Q0 MARCO_19_2045799633-16 99 87.181746 hybrid +142_4-1 Q0 KILT_41498893-2 100 87.181670 hybrid +142_5-1 Q0 MARCO_54_1941586628-5 1 89.880021 hybrid +142_5-1 Q0 MARCO_47_127994858-1 2 89.567871 hybrid +142_5-1 Q0 MARCO_40_905208818-8 3 89.500971 hybrid +142_5-1 Q0 MARCO_04_519138088-1 4 89.424721 hybrid +142_5-1 Q0 MARCO_30_815199115-1 5 89.079671 hybrid +142_5-1 Q0 MARCO_50_1337561730-13 6 88.987921 hybrid +142_5-1 Q0 MARCO_08_127493798-69 7 88.915671 hybrid +142_5-1 Q0 MARCO_53_812385688-10 8 88.894419 hybrid +142_5-1 Q0 MARCO_21_460607436-3 9 88.859271 hybrid +142_5-1 Q0 MARCO_01_1084920994-1 10 88.843671 hybrid +142_5-1 Q0 MARCO_30_2013002157-2 11 88.835047 hybrid +142_5-1 Q0 MARCO_06_1382149523-8 12 88.784171 hybrid +142_5-1 Q0 MARCO_27_1021233516-27 13 88.783971 hybrid +142_5-1 Q0 MARCO_33_1128368102-2 14 88.722821 hybrid +142_5-1 Q0 MARCO_00_1212067385-1 15 88.705421 hybrid +142_5-1 Q0 MARCO_11_543305113-5 16 88.697521 hybrid +142_5-1 Q0 MARCO_20_1057132532-2 17 88.693671 hybrid +142_5-1 Q0 MARCO_45_1510114236-4 18 88.688771 hybrid +142_5-1 Q0 MARCO_10_23692722-30 19 88.651421 hybrid +142_5-1 Q0 MARCO_30_1347640391-11 20 88.614371 hybrid +142_5-1 Q0 MARCO_36_1003753285-4 21 88.605731 hybrid +142_5-1 Q0 MARCO_40_1006345180-1 22 88.565771 hybrid +142_5-1 Q0 MARCO_52_1520366144-3 23 88.555221 hybrid +142_5-1 Q0 MARCO_50_874945679-8 24 88.536521 hybrid +142_5-1 Q0 MARCO_42_446861141-9 25 88.525871 hybrid +142_5-1 Q0 MARCO_12_859225363-17 26 88.521371 hybrid +142_5-1 Q0 MARCO_51_357182451-4 27 88.516821 hybrid +142_5-1 Q0 MARCO_53_993583809-7 28 88.510971 hybrid +142_5-1 Q0 MARCO_23_1393438802-9 29 88.500071 hybrid +142_5-1 Q0 MARCO_50_1462989198-4 30 88.485271 hybrid +142_5-1 Q0 MARCO_50_1936673617-24 31 88.481539 hybrid +142_5-1 Q0 MARCO_41_1734252530-8 32 88.476621 hybrid +142_5-1 Q0 MARCO_54_1944081497-2 33 88.474771 hybrid +142_5-1 Q0 MARCO_10_131220960-6 34 88.472871 hybrid +142_5-1 Q0 MARCO_52_1001273191-2 35 88.470571 hybrid +142_5-1 Q0 MARCO_13_1205805238-3 36 88.468921 hybrid +142_5-1 Q0 MARCO_46_1315539867-4 37 88.467212 hybrid +142_5-1 Q0 MARCO_15_629077466-6 38 88.439171 hybrid +142_5-1 Q0 MARCO_45_430857940-1 39 88.432021 hybrid +142_5-1 Q0 MARCO_51_856150187-9 40 88.428471 hybrid +142_5-1 Q0 MARCO_59_72961956-8 41 88.380871 hybrid +142_5-1 Q0 MARCO_36_708957277-12 42 88.380621 hybrid +142_5-1 Q0 MARCO_52_1520366144-1 43 88.375771 hybrid +142_5-1 Q0 MARCO_12_275444885-4 44 88.368655 hybrid +142_5-1 Q0 MARCO_30_1653200622-8 45 88.368171 hybrid +142_5-1 Q0 MARCO_02_928843665-6 46 88.364367 hybrid +142_5-1 Q0 MARCO_13_1563872418-5 47 88.361575 hybrid +142_5-1 Q0 MARCO_33_1122393461-1 48 88.361221 hybrid +142_5-1 Q0 MARCO_09_581007031-1 49 88.356871 hybrid +142_5-1 Q0 MARCO_08_265362540-5 50 88.353821 hybrid +142_5-1 Q0 MARCO_01_1233002918-205 51 88.351221 hybrid +142_5-1 Q0 MARCO_22_1186906798-4 52 88.350604 hybrid +142_5-1 Q0 MARCO_07_1592688014-1 53 88.348722 hybrid +142_5-1 Q0 MARCO_26_497391951-1 54 88.336021 hybrid +142_5-1 Q0 MARCO_20_1058880251-3 55 88.335521 hybrid +142_5-1 Q0 MARCO_42_1729619983-18 56 88.330971 hybrid +142_5-1 Q0 MARCO_50_1539171305-6 57 88.329771 hybrid +142_5-1 Q0 MARCO_12_278047340-2 58 88.324764 hybrid +142_5-1 Q0 MARCO_30_279294805-3 59 88.313871 hybrid +142_5-1 Q0 MARCO_43_40663531-1 60 88.305582 hybrid +142_5-1 Q0 MARCO_39_670955540-32 61 88.303141 hybrid +142_5-1 Q0 MARCO_35_131726592-1 62 88.287516 hybrid +142_5-1 Q0 MARCO_33_1455132251-2 63 88.282421 hybrid +142_5-1 Q0 MARCO_04_1125358646-3 64 88.279471 hybrid +142_5-1 Q0 MARCO_23_61073379-44 65 88.275980 hybrid +142_5-1 Q0 MARCO_10_719894755-1 66 88.266505 hybrid +142_5-1 Q0 MARCO_08_690358905-1 67 88.253721 hybrid +142_5-1 Q0 MARCO_00_240416208-9 68 88.243921 hybrid +142_5-1 Q0 MARCO_32_1071876554-8 69 88.243921 hybrid +142_5-1 Q0 MARCO_32_1026784471-1 70 88.238780 hybrid +142_5-1 Q0 MARCO_20_1048613710-2 71 88.227071 hybrid +142_5-1 Q0 MARCO_08_127493798-32 72 88.223921 hybrid +142_5-1 Q0 MARCO_20_1057135829-2 73 88.206522 hybrid +142_5-1 Q0 MARCO_50_2497082517-7 74 88.205871 hybrid +142_5-1 Q0 MARCO_30_475072852-7 75 88.205021 hybrid +142_5-1 Q0 MARCO_20_1089443737-8 76 88.197421 hybrid +142_5-1 Q0 MARCO_14_1658980464-21 77 88.180421 hybrid +142_5-1 Q0 MARCO_28_870558277-2 78 88.179471 hybrid +142_5-1 Q0 MARCO_02_821985949-201 79 88.172821 hybrid +142_5-1 Q0 MARCO_46_1315539867-8 80 88.169116 hybrid +142_5-1 Q0 MARCO_12_1058781447-37 81 88.168221 hybrid +142_5-1 Q0 MARCO_50_2726135487-6 82 88.167321 hybrid +142_5-1 Q0 MARCO_41_1024409836-25 83 88.161471 hybrid +142_5-1 Q0 MARCO_51_785180492-11 84 88.161021 hybrid +142_5-1 Q0 MARCO_08_151941739-3 85 88.154671 hybrid +142_5-1 Q0 MARCO_48_1735785811-6 86 88.153621 hybrid +142_5-1 Q0 MARCO_23_44468513-2 87 88.152421 hybrid +142_5-1 Q0 MARCO_54_1921477908-28 88 88.146321 hybrid +142_5-1 Q0 MARCO_02_81149163-9 89 88.144321 hybrid +142_5-1 Q0 MARCO_20_1089236024-2 90 88.137221 hybrid +142_5-1 Q0 MARCO_20_1082941205-1 91 88.135621 hybrid +142_5-1 Q0 MARCO_20_1050043950-2 92 88.129421 hybrid +142_5-1 Q0 MARCO_55_74023026-3 93 88.127154 hybrid +142_5-1 Q0 MARCO_02_811307513-25 94 88.123771 hybrid +142_5-1 Q0 MARCO_52_1592538479-1 95 88.118571 hybrid +142_5-1 Q0 MARCO_11_1498986754-1 96 88.112921 hybrid +142_5-1 Q0 MARCO_36_1629329223-1 97 88.109621 hybrid +142_5-1 Q0 MARCO_51_694777636-51 98 88.108477 hybrid +142_5-1 Q0 MARCO_12_275444885-3 99 88.105250 hybrid +142_5-1 Q0 MARCO_08_89606705-10 100 88.105021 hybrid +142_5-3 Q0 MARCO_12_278047340-3 1 89.771030 hybrid +142_5-3 Q0 MARCO_36_1003753285-1 2 89.644380 hybrid +142_5-3 Q0 MARCO_07_259262889-3 3 89.215357 hybrid +142_5-3 Q0 MARCO_39_670955540-32 4 88.853369 hybrid +142_5-3 Q0 MARCO_03_1751773927-1 5 88.711870 hybrid +142_5-3 Q0 MARCO_04_115311916-3 6 88.668270 hybrid +142_5-3 Q0 MARCO_10_790344909-2 7 88.547484 hybrid +142_5-3 Q0 MARCO_39_670955540-31 8 88.477445 hybrid +142_5-3 Q0 MARCO_20_232780208-4 9 88.301812 hybrid +142_5-3 Q0 MARCO_16_2614557965-35 10 88.289733 hybrid +142_5-3 Q0 KILT_22527511-11 11 88.168024 hybrid +142_5-3 Q0 MARCO_50_1936673617-24 12 88.149733 hybrid +142_5-3 Q0 MARCO_10_790344909-1 13 88.063124 hybrid +142_5-3 Q0 MARCO_43_40663531-2 14 87.989947 hybrid +142_5-3 Q0 MARCO_20_99785551-1 15 87.977620 hybrid +142_5-3 Q0 MARCO_13_279027-2 16 87.963370 hybrid +142_5-3 Q0 KILT_13688573-3 17 87.855520 hybrid +142_5-3 Q0 KILT_859068-1 18 87.820810 hybrid +142_5-3 Q0 MARCO_50_1516888163-5 19 87.820117 hybrid +142_5-3 Q0 MARCO_12_278047340-2 20 87.816320 hybrid +142_5-3 Q0 MARCO_24_509111941-7 21 87.781048 hybrid +142_5-3 Q0 MARCO_13_517437-2 22 87.770470 hybrid +142_5-3 Q0 MARCO_30_2013034285-2 23 87.760336 hybrid +142_5-3 Q0 MARCO_13_287632-9 24 87.734770 hybrid +142_5-3 Q0 MARCO_18_226403271-2 25 87.695120 hybrid +142_5-3 Q0 MARCO_03_1751773927-2 26 87.665520 hybrid +142_5-3 Q0 MARCO_16_3306273242-13 27 87.651233 hybrid +142_5-3 Q0 MARCO_30_1025312089-1 28 87.613275 hybrid +142_5-3 Q0 MARCO_33_868388479-12 29 87.559120 hybrid +142_5-3 Q0 MARCO_50_53779187-10 30 87.556870 hybrid +142_5-3 Q0 KILT_95411-6 31 87.540020 hybrid +142_5-3 Q0 MARCO_14_287205439-4 32 87.532120 hybrid +142_5-3 Q0 MARCO_30_75810221-3 33 87.512820 hybrid +142_5-3 Q0 MARCO_22_1186906798-4 34 87.501600 hybrid +142_5-3 Q0 MARCO_55_676979672-1 35 87.498367 hybrid +142_5-3 Q0 MARCO_45_256347161-1 36 87.485862 hybrid +142_5-3 Q0 KILT_1093071-2 37 87.460520 hybrid +142_5-3 Q0 MARCO_20_232780208-3 38 87.453055 hybrid +142_5-3 Q0 MARCO_12_275444885-1 39 87.452125 hybrid +142_5-3 Q0 MARCO_06_296863553-7 40 87.430521 hybrid +142_5-3 Q0 MARCO_04_165784069-4 41 87.426020 hybrid +142_5-3 Q0 MARCO_30_2013034285-3 42 87.391867 hybrid +142_5-3 Q0 MARCO_13_279027-3 43 87.380270 hybrid +142_5-3 Q0 KILT_44501940-2 44 87.371748 hybrid +142_5-3 Q0 MARCO_07_259262889-1 45 87.367030 hybrid +142_5-3 Q0 MARCO_17_4124999099-13 46 87.347085 hybrid +142_5-3 Q0 MARCO_13_287632-1 47 87.341220 hybrid +142_5-3 Q0 MARCO_39_751118425-2 48 87.335270 hybrid +142_5-3 Q0 MARCO_04_165843454-2 49 87.330270 hybrid +142_5-3 Q0 MARCO_30_1025252083-5 50 87.315770 hybrid +142_5-3 Q0 KILT_30224834-1 51 87.315246 hybrid +142_5-3 Q0 MARCO_13_279027-1 52 87.313570 hybrid +142_5-3 Q0 MARCO_30_1645809882-5 53 87.309620 hybrid +142_5-3 Q0 MARCO_17_1547445763-5 54 87.305020 hybrid +142_5-3 Q0 MARCO_18_3085854998-3 55 87.290270 hybrid +142_5-3 Q0 MARCO_34_305867070-6 56 87.272720 hybrid +142_5-3 Q0 MARCO_50_1936673617-17 57 87.270706 hybrid +142_5-3 Q0 MARCO_45_995056145-4 58 87.264470 hybrid +142_5-3 Q0 MARCO_28_986308993-4 59 87.260870 hybrid +142_5-3 Q0 MARCO_20_232780208-10 60 87.260857 hybrid +142_5-3 Q0 MARCO_45_5581863-8 61 87.256820 hybrid +142_5-3 Q0 MARCO_05_1348674499-4 62 87.252720 hybrid +142_5-3 Q0 MARCO_13_287632-10 63 87.252720 hybrid +142_5-3 Q0 MARCO_36_256859582-5 64 87.247870 hybrid +142_5-3 Q0 MARCO_36_1005507397-5 65 87.238760 hybrid +142_5-3 Q0 MARCO_01_893146519-2 66 87.235870 hybrid +142_5-3 Q0 MARCO_30_1173691025-5 67 87.222170 hybrid +142_5-3 Q0 MARCO_06_151818996-7 68 87.215971 hybrid +142_5-3 Q0 MARCO_55_96389579-3 69 87.212828 hybrid +142_5-3 Q0 KILT_2810466-10 70 87.206642 hybrid +142_5-3 Q0 MARCO_02_485820717-2 71 87.202574 hybrid +142_5-3 Q0 MARCO_31_81295761-4 72 87.202120 hybrid +142_5-3 Q0 MARCO_20_232780208-7 73 87.196554 hybrid +142_5-3 Q0 MARCO_02_1678181223-4 74 87.193070 hybrid +142_5-3 Q0 MARCO_10_1350873646-1 75 87.186870 hybrid +142_5-3 Q0 MARCO_58_1561811768-22 76 87.183420 hybrid +142_5-3 Q0 MARCO_16_2206432408-3 77 87.164470 hybrid +142_5-3 Q0 MARCO_55_1048177948-1 78 87.159420 hybrid +142_5-3 Q0 MARCO_08_1293178531-1 79 87.157920 hybrid +142_5-3 Q0 MARCO_10_145278072-1 80 87.151970 hybrid +142_5-3 Q0 MARCO_30_2013002157-1 81 87.149801 hybrid +142_5-3 Q0 MARCO_20_232780208-1 82 87.149496 hybrid +142_5-3 Q0 MARCO_39_620476129-12 83 87.147314 hybrid +142_5-3 Q0 KILT_30224834-2 84 87.146345 hybrid +142_5-3 Q0 MARCO_12_275444885-3 85 87.139402 hybrid +142_5-3 Q0 MARCO_17_2709649937-52 86 87.136971 hybrid +142_5-3 Q0 MARCO_00_73261768-3 87 87.132020 hybrid +142_5-3 Q0 MARCO_10_790344909-3 88 87.128141 hybrid +142_5-3 Q0 MARCO_17_4465817128-1 89 87.127520 hybrid +142_5-3 Q0 MARCO_25_297692704-10 90 87.127520 hybrid +142_5-3 Q0 MARCO_42_1780568248-7 91 87.124970 hybrid +142_5-3 Q0 MARCO_55_74023026-3 92 87.120359 hybrid +142_5-3 Q0 MARCO_19_2045799633-5 93 87.118795 hybrid +142_5-3 Q0 KILT_10423540-21 94 87.107370 hybrid +142_5-3 Q0 MARCO_35_131726592-2 95 87.103132 hybrid +142_5-3 Q0 MARCO_28_1829509253-7 96 87.094121 hybrid +142_5-3 Q0 MARCO_05_1742002206-2 97 87.093649 hybrid +142_5-3 Q0 MARCO_09_1712686455-7 98 87.091970 hybrid +142_5-3 Q0 MARCO_43_40663531-1 99 87.089186 hybrid +142_5-3 Q0 KILT_5960210-1 100 87.088269 hybrid +142_5-5 Q0 MARCO_58_1508113613-1 1 87.811999 hybrid +142_5-5 Q0 KILT_28820502-5 2 87.514318 hybrid +142_5-5 Q0 KILT_28820502-3 3 87.459913 hybrid +142_5-5 Q0 MARCO_47_1601362260-3 4 87.391813 hybrid +142_5-5 Q0 MARCO_08_1480326385-15 5 87.346510 hybrid +142_5-5 Q0 KILT_28820502-2 6 87.309530 hybrid +142_5-5 Q0 MARCO_47_1602505698-5 7 87.202093 hybrid +142_5-5 Q0 KILT_28820502-1 8 87.148772 hybrid +142_5-5 Q0 MARCO_47_1602505698-3 9 87.071651 hybrid +142_5-5 Q0 KILT_28820502-4 10 87.063619 hybrid +142_5-5 Q0 MARCO_47_1601007145-1 11 87.050961 hybrid +142_5-5 Q0 MARCO_50_1458626850-15 12 87.043706 hybrid +142_5-5 Q0 KILT_2402376-36 13 86.991476 hybrid +142_5-5 Q0 KILT_2810466-5 14 86.983198 hybrid +142_5-5 Q0 KILT_28820502-6 15 86.953474 hybrid +142_5-5 Q0 KILT_18706892-1 16 86.940198 hybrid +142_5-5 Q0 MARCO_47_1602505698-4 17 86.926896 hybrid +142_5-5 Q0 MARCO_50_1441723234-18 18 86.910611 hybrid +142_5-5 Q0 KILT_44030741-1 19 86.908887 hybrid +142_5-5 Q0 KILT_10210353-1 20 86.908552 hybrid +142_5-5 Q0 KILT_637348-4 21 86.900785 hybrid +142_5-5 Q0 KILT_43492755-1 22 86.900472 hybrid +142_5-5 Q0 MARCO_18_3127967367-2 23 86.893400 hybrid +142_5-5 Q0 KILT_2810466-7 24 86.886732 hybrid +142_5-5 Q0 MARCO_08_1480326385-18 25 86.872282 hybrid +142_5-5 Q0 KILT_8076950-6 26 86.842100 hybrid +142_5-5 Q0 MARCO_54_676656745-1 27 86.841047 hybrid +142_5-5 Q0 KILT_28820502-7 28 86.784238 hybrid +142_5-5 Q0 KILT_28820502-8 29 86.767171 hybrid +142_5-5 Q0 MARCO_17_674008977-1 30 86.763204 hybrid +142_5-5 Q0 MARCO_18_2378994128-2 31 86.720647 hybrid +142_5-5 Q0 KILT_8076950-4 32 86.704787 hybrid +142_5-5 Q0 MARCO_47_1602505698-2 33 86.699224 hybrid +142_5-5 Q0 KILT_2810466-9 34 86.687620 hybrid +142_5-5 Q0 MARCO_58_1506642595-1 35 86.667012 hybrid +142_5-5 Q0 KILT_28820502-10 36 86.634305 hybrid +142_5-5 Q0 MARCO_18_3132971540-8 37 86.621114 hybrid +142_5-5 Q0 KILT_42233667-1 38 86.613134 hybrid +142_5-5 Q0 KILT_28820502-9 39 86.606657 hybrid +142_5-5 Q0 MARCO_18_469824557-17 40 86.582410 hybrid +142_5-5 Q0 MARCO_44_1695065420-2 41 86.574651 hybrid +142_5-5 Q0 KILT_24910579-1 42 86.563398 hybrid +142_5-5 Q0 KILT_9384580-1 43 86.556364 hybrid +142_5-5 Q0 MARCO_47_1601007145-2 44 86.536977 hybrid +142_5-5 Q0 MARCO_17_2510087016-6 45 86.532651 hybrid +142_5-5 Q0 MARCO_50_1458626850-10 46 86.497297 hybrid +142_5-5 Q0 KILT_2810466-10 47 86.494901 hybrid +142_5-5 Q0 KILT_44030741-2 48 86.485517 hybrid +142_5-5 Q0 MARCO_18_3127967367-1 49 86.474767 hybrid +142_5-5 Q0 MARCO_17_2510087016-9 50 86.474058 hybrid +142_5-5 Q0 KILT_5302486-4 51 86.468793 hybrid +142_5-5 Q0 KILT_8076950-1 52 86.466665 hybrid +142_5-5 Q0 KILT_36883279-1 53 86.458158 hybrid +142_5-5 Q0 MARCO_50_1441723234-19 54 86.452993 hybrid +142_5-5 Q0 MARCO_50_1441723234-17 55 86.450298 hybrid +142_5-5 Q0 MARCO_18_2378850780-3 56 86.444387 hybrid +142_5-5 Q0 MARCO_50_1441723234-16 57 86.441960 hybrid +142_5-5 Q0 MARCO_18_3127967367-8 58 86.436208 hybrid +142_5-5 Q0 MARCO_19_2045799633-2 59 86.435346 hybrid +142_5-5 Q0 MARCO_17_1668659449-2 60 86.424390 hybrid +142_5-5 Q0 MARCO_17_2510087016-7 61 86.420759 hybrid +142_5-5 Q0 KILT_44501940-2 62 86.407026 hybrid +142_5-5 Q0 MARCO_47_1601362260-4 63 86.405408 hybrid +142_5-5 Q0 MARCO_43_714092140-5 64 86.393072 hybrid +142_5-5 Q0 MARCO_17_2510087016-1 65 86.379667 hybrid +142_5-5 Q0 MARCO_17_2510087016-17 66 86.364995 hybrid +142_5-5 Q0 MARCO_10_448253860-6 67 86.353139 hybrid +142_5-5 Q0 KILT_1833378-6 68 86.348661 hybrid +142_5-5 Q0 MARCO_16_3046749093-31 69 86.339406 hybrid +142_5-5 Q0 KILT_19931201-1 70 86.331434 hybrid +142_5-5 Q0 MARCO_19_2045799633-5 71 86.329694 hybrid +142_5-5 Q0 KILT_2810466-12 72 86.328567 hybrid +142_5-5 Q0 KILT_2810466-1 73 86.323034 hybrid +142_5-5 Q0 KILT_2810466-11 74 86.319463 hybrid +142_5-5 Q0 MARCO_18_3127967367-4 75 86.310789 hybrid +142_5-5 Q0 MARCO_58_1505463998-1 76 86.309385 hybrid +142_5-5 Q0 KILT_5302486-1 77 86.307737 hybrid +142_5-5 Q0 MARCO_18_3127967367-7 78 86.299543 hybrid +142_5-5 Q0 MARCO_18_3127967367-9 79 86.299543 hybrid +142_5-5 Q0 MARCO_47_1604568742-14 80 86.295316 hybrid +142_5-5 Q0 MARCO_10_448253860-1 81 86.274839 hybrid +142_5-5 Q0 MARCO_31_890709863-1 82 86.259216 hybrid +142_5-5 Q0 KILT_28820502-11 83 86.254194 hybrid +142_5-5 Q0 MARCO_08_448448881-22 84 86.251142 hybrid +142_5-5 Q0 MARCO_17_674008977-2 85 86.243062 hybrid +142_5-5 Q0 MARCO_18_3127967367-5 86 86.231893 hybrid +142_5-5 Q0 MARCO_08_1480326385-19 87 86.201391 hybrid +142_5-5 Q0 MARCO_17_674008977-20 88 86.200170 hybrid +142_5-5 Q0 KILT_24910579-2 89 86.197782 hybrid +142_5-5 Q0 MARCO_18_3132971540-4 90 86.175619 hybrid +142_5-5 Q0 KILT_39748847-3 91 86.170110 hybrid +142_5-5 Q0 KILT_2810466-6 92 86.168256 hybrid +142_5-5 Q0 KILT_39748847-1 93 86.166265 hybrid +142_5-5 Q0 MARCO_50_1458626850-14 94 86.159956 hybrid +142_5-5 Q0 KILT_1437724-3 95 86.159055 hybrid +142_5-5 Q0 MARCO_11_1496366192-1 96 86.151411 hybrid +142_5-5 Q0 MARCO_22_1186877744-7 97 86.144842 hybrid +142_5-5 Q0 MARCO_08_1091419182-25 98 86.139173 hybrid +142_5-5 Q0 MARCO_19_2045799633-26 99 86.115415 hybrid +142_5-5 Q0 MARCO_16_3046749093-34 100 86.089468 hybrid +142_5-7 Q0 MARCO_58_1508113613-1 1 86.301095 hybrid +142_5-7 Q0 MARCO_04_113777060-3 2 86.267829 hybrid +142_5-7 Q0 MARCO_04_165784069-4 3 86.178029 hybrid +142_5-7 Q0 MARCO_30_2013034285-2 4 86.095847 hybrid +142_5-7 Q0 MARCO_58_1506642595-1 5 86.022895 hybrid +142_5-7 Q0 MARCO_19_2045799633-17 6 85.980529 hybrid +142_5-7 Q0 MARCO_04_109113832-3 7 85.958279 hybrid +142_5-7 Q0 MARCO_19_2045799633-4 8 85.873286 hybrid +142_5-7 Q0 MARCO_07_259262889-1 9 85.872891 hybrid +142_5-7 Q0 MARCO_19_2045799633-26 10 85.871642 hybrid +142_5-7 Q0 MARCO_54_676656745-1 11 85.864043 hybrid +142_5-7 Q0 MARCO_19_1931473931-2 12 85.849529 hybrid +142_5-7 Q0 MARCO_33_868388479-12 13 85.843279 hybrid +142_5-7 Q0 MARCO_50_1936673617-24 14 85.828910 hybrid +142_5-7 Q0 KILT_26507946-2 15 85.827758 hybrid +142_5-7 Q0 MARCO_47_1602505698-3 16 85.815696 hybrid +142_5-7 Q0 MARCO_07_259262889-3 17 85.804420 hybrid +142_5-7 Q0 MARCO_12_278047340-3 18 85.797868 hybrid +142_5-7 Q0 MARCO_30_2013034285-3 19 85.797172 hybrid +142_5-7 Q0 MARCO_10_790353427-4 20 85.787391 hybrid +142_5-7 Q0 MARCO_43_742228802-80 21 85.780540 hybrid +142_5-7 Q0 MARCO_06_1149196799-179 22 85.757194 hybrid +142_5-7 Q0 MARCO_58_1509104985-3 23 85.747611 hybrid +142_5-7 Q0 MARCO_58_1506642595-3 24 85.743140 hybrid +142_5-7 Q0 MARCO_37_173589964-2 25 85.742164 hybrid +142_5-7 Q0 MARCO_43_714092140-1 26 85.733082 hybrid +142_5-7 Q0 KILT_23117867-1 27 85.727653 hybrid +142_5-7 Q0 MARCO_58_1508113613-2 28 85.722411 hybrid +142_5-7 Q0 MARCO_10_790344909-3 29 85.718711 hybrid +142_5-7 Q0 MARCO_54_676656745-2 30 85.714767 hybrid +142_5-7 Q0 MARCO_54_676656745-4 31 85.714767 hybrid +142_5-7 Q0 MARCO_00_418231658-1 32 85.699179 hybrid +142_5-7 Q0 MARCO_10_1612385551-16 33 85.697679 hybrid +142_5-7 Q0 MARCO_57_163956097-13 34 85.697679 hybrid +142_5-7 Q0 MARCO_43_1199677737-42 35 85.694579 hybrid +142_5-7 Q0 KILT_34879285-1 36 85.693305 hybrid +142_5-7 Q0 MARCO_44_1395908402-12 37 85.661579 hybrid +142_5-7 Q0 MARCO_58_1509591433-5 38 85.659110 hybrid +142_5-7 Q0 MARCO_40_1583135483-1 39 85.651267 hybrid +142_5-7 Q0 MARCO_24_32548538-1 40 85.642079 hybrid +142_5-7 Q0 MARCO_19_2045799633-5 41 85.640273 hybrid +142_5-7 Q0 MARCO_32_1007056214-21 42 85.638729 hybrid +142_5-7 Q0 MARCO_58_1508113613-3 43 85.636409 hybrid +142_5-7 Q0 MARCO_10_803208538-1 44 85.634379 hybrid +142_5-7 Q0 MARCO_13_429890505-1 45 85.634378 hybrid +142_5-7 Q0 MARCO_33_868655730-13 46 85.634378 hybrid +142_5-7 Q0 MARCO_58_1509104985-4 47 85.626769 hybrid +142_5-7 Q0 MARCO_28_984794031-10 48 85.626426 hybrid +142_5-7 Q0 KILT_35894206-10 49 85.624816 hybrid +142_5-7 Q0 MARCO_47_1601362260-6 50 85.614669 hybrid +142_5-7 Q0 MARCO_31_899564358-3 51 85.607482 hybrid +142_5-7 Q0 MARCO_52_1576671550-22 52 85.598879 hybrid +142_5-7 Q0 MARCO_12_1313288283-1 53 85.591279 hybrid +142_5-7 Q0 MARCO_07_259262889-2 54 85.584693 hybrid +142_5-7 Q0 KILT_327582-3 55 85.579529 hybrid +142_5-7 Q0 KILT_2810466-10 56 85.574142 hybrid +142_5-7 Q0 MARCO_06_1240614560-37 57 85.569907 hybrid +142_5-7 Q0 KILT_42408767-1 58 85.563910 hybrid +142_5-7 Q0 MARCO_22_1186915282-2 59 85.555938 hybrid +142_5-7 Q0 KILT_48730417-1 60 85.554557 hybrid +142_5-7 Q0 MARCO_05_848975837-1 61 85.545646 hybrid +142_5-7 Q0 MARCO_22_1186906798-5 62 85.543754 hybrid +142_5-7 Q0 KILT_6283124-5 63 85.543097 hybrid +142_5-7 Q0 MARCO_39_670955540-32 64 85.533629 hybrid +142_5-7 Q0 MARCO_32_884765978-2 65 85.527984 hybrid +142_5-7 Q0 MARCO_47_1601362260-9 66 85.515891 hybrid +142_5-7 Q0 KILT_28759353-22 67 85.514129 hybrid +142_5-7 Q0 MARCO_07_65961841-12 68 85.512579 hybrid +142_5-7 Q0 MARCO_58_1505463998-1 69 85.499063 hybrid +142_5-7 Q0 MARCO_33_1204879783-3 70 85.493579 hybrid +142_5-7 Q0 MARCO_30_2012938093-5 71 85.485755 hybrid +142_5-7 Q0 MARCO_19_2045799633-19 72 85.485053 hybrid +142_5-7 Q0 MARCO_22_1186906798-1 73 85.479827 hybrid +142_5-7 Q0 MARCO_22_1186906798-4 74 85.474959 hybrid +142_5-7 Q0 MARCO_22_1186867646-3 75 85.473411 hybrid +142_5-7 Q0 MARCO_47_1601351898-8 76 85.473075 hybrid +142_5-7 Q0 MARCO_19_2045799633-18 77 85.462709 hybrid +142_5-7 Q0 KILT_592808-3 78 85.461501 hybrid +142_5-7 Q0 MARCO_22_1186915282-3 79 85.461287 hybrid +142_5-7 Q0 KILT_17249541-3 80 85.459679 hybrid +142_5-7 Q0 MARCO_47_1601362260-10 81 85.458838 hybrid +142_5-7 Q0 MARCO_45_256347161-1 82 85.456313 hybrid +142_5-7 Q0 MARCO_58_1505463998-3 83 85.455848 hybrid +142_5-7 Q0 MARCO_16_3046944575-20 84 85.452521 hybrid +142_5-7 Q0 MARCO_17_2524961420-3 85 85.447234 hybrid +142_5-7 Q0 MARCO_51_694777636-27 86 85.446486 hybrid +142_5-7 Q0 KILT_14672486-3 87 85.439223 hybrid +142_5-7 Q0 MARCO_50_1441723234-18 88 85.436431 hybrid +142_5-7 Q0 MARCO_35_128533405-3 89 85.434943 hybrid +142_5-7 Q0 MARCO_31_899564358-2 90 85.431696 hybrid +142_5-7 Q0 MARCO_07_259262889-4 91 85.431106 hybrid +142_5-7 Q0 KILT_1899324-1 92 85.426711 hybrid +142_5-7 Q0 KILT_2758249-30 93 85.426529 hybrid +142_5-7 Q0 MARCO_12_275444885-2 94 85.423270 hybrid +142_5-7 Q0 MARCO_22_1186877744-7 95 85.414397 hybrid +142_5-7 Q0 MARCO_05_693203043-2 96 85.410279 hybrid +142_5-7 Q0 MARCO_36_1003753285-1 97 85.407981 hybrid +142_5-7 Q0 KILT_30224834-2 98 85.407966 hybrid +142_5-7 Q0 MARCO_47_1602505698-4 99 85.404189 hybrid +142_5-7 Q0 MARCO_07_28914901-7 100 85.400929 hybrid +142_5-9 Q0 MARCO_08_632127924-1 1 90.509243 hybrid +142_5-9 Q0 MARCO_22_1186906798-4 2 90.501833 hybrid +142_5-9 Q0 MARCO_33_868347963-2 3 90.484343 hybrid +142_5-9 Q0 KILT_46564261-23 4 90.441193 hybrid +142_5-9 Q0 MARCO_34_1752340892-3 5 90.282143 hybrid +142_5-9 Q0 KILT_4967803-1 6 90.038743 hybrid +142_5-9 Q0 MARCO_18_1299865625-4 7 89.992114 hybrid +142_5-9 Q0 MARCO_16_2206283069-2 8 89.812343 hybrid +142_5-9 Q0 MARCO_50_594653562-1 9 89.586543 hybrid +142_5-9 Q0 MARCO_39_670955540-31 10 89.568943 hybrid +142_5-9 Q0 MARCO_08_632127924-3 11 89.462893 hybrid +142_5-9 Q0 MARCO_30_742746465-5 12 89.247723 hybrid +142_5-9 Q0 MARCO_32_1766097055-8 13 89.199343 hybrid +142_5-9 Q0 MARCO_45_997362083-1 14 89.142592 hybrid +142_5-9 Q0 KILT_7168919-2 15 89.141693 hybrid +142_5-9 Q0 MARCO_18_1672631797-2 16 89.080493 hybrid +142_5-9 Q0 MARCO_47_1573841321-3 17 89.055443 hybrid +142_5-9 Q0 MARCO_17_693365828-1 18 89.003042 hybrid +142_5-9 Q0 KILT_4967803-5 19 88.971143 hybrid +142_5-9 Q0 MARCO_34_1752340892-1 20 88.937143 hybrid +142_5-9 Q0 MARCO_16_2206283069-11 21 88.887243 hybrid +142_5-9 Q0 KILT_42211547-1 22 88.826543 hybrid +142_5-9 Q0 MARCO_39_670955540-32 23 88.781492 hybrid +142_5-9 Q0 MARCO_34_1778141449-4 24 88.760993 hybrid +142_5-9 Q0 KILT_4967803-10 25 88.754943 hybrid +142_5-9 Q0 MARCO_54_1199821837-5 26 88.729593 hybrid +142_5-9 Q0 MARCO_16_2206326968-16 27 88.620643 hybrid +142_5-9 Q0 MARCO_34_1752323477-9 28 88.552543 hybrid +142_5-9 Q0 MARCO_55_1712506719-4 29 88.487993 hybrid +142_5-9 Q0 MARCO_52_461366759-2 30 88.464693 hybrid +142_5-9 Q0 MARCO_07_271124511-3 31 88.451743 hybrid +142_5-9 Q0 MARCO_36_259056980-1 32 88.445143 hybrid +142_5-9 Q0 MARCO_04_1055356703-3 33 88.398888 hybrid +142_5-9 Q0 MARCO_30_778282701-2 34 88.396993 hybrid +142_5-9 Q0 MARCO_50_594653562-2 35 88.391393 hybrid +142_5-9 Q0 MARCO_01_1087907517-6 36 88.351993 hybrid +142_5-9 Q0 MARCO_16_2206283069-3 37 88.337643 hybrid +142_5-9 Q0 MARCO_29_1418682367-4 38 88.290956 hybrid +142_5-9 Q0 MARCO_53_812385688-10 39 88.273624 hybrid +142_5-9 Q0 MARCO_25_937745370-8 40 88.267693 hybrid +142_5-9 Q0 MARCO_34_1778141449-1 41 88.221493 hybrid +142_5-9 Q0 MARCO_57_1266592091-1 42 88.210351 hybrid +142_5-9 Q0 MARCO_03_1155604422-9 43 88.194643 hybrid +142_5-9 Q0 MARCO_08_454689269-3 44 88.192195 hybrid +142_5-9 Q0 KILT_4967803-2 45 88.159593 hybrid +142_5-9 Q0 MARCO_38_595193469-1 46 88.147192 hybrid +142_5-9 Q0 MARCO_19_1955854098-2 47 88.143093 hybrid +142_5-9 Q0 MARCO_51_876291753-15 48 88.139092 hybrid +142_5-9 Q0 MARCO_03_444110329-2 49 88.118927 hybrid +142_5-9 Q0 KILT_48551844-2 50 88.109693 hybrid +142_5-9 Q0 KILT_2625258-1 51 88.106193 hybrid +142_5-9 Q0 MARCO_37_305210397-8 52 88.104393 hybrid +142_5-9 Q0 MARCO_27_93737071-1 53 88.100793 hybrid +142_5-9 Q0 MARCO_30_213793238-1 54 88.086193 hybrid +142_5-9 Q0 MARCO_16_3602952744-2 55 88.057642 hybrid +142_5-9 Q0 MARCO_54_2086360355-1 56 88.047693 hybrid +142_5-9 Q0 KILT_25126047-1 57 88.041193 hybrid +142_5-9 Q0 KILT_933515-37 58 88.032701 hybrid +142_5-9 Q0 MARCO_55_1685432076-1 59 88.016343 hybrid +142_5-9 Q0 MARCO_18_2114119889-1 60 87.995043 hybrid +142_5-9 Q0 KILT_2974325-1 61 87.974243 hybrid +142_5-9 Q0 KILT_17335975-13 62 87.973042 hybrid +142_5-9 Q0 MARCO_19_2201103427-15 63 87.956643 hybrid +142_5-9 Q0 MARCO_04_91290089-1 64 87.946643 hybrid +142_5-9 Q0 MARCO_03_1155604422-12 65 87.944743 hybrid +142_5-9 Q0 MARCO_29_1447143343-1 66 87.933493 hybrid +142_5-9 Q0 KILT_599809-1 67 87.932706 hybrid +142_5-9 Q0 MARCO_19_831367637-4 68 87.923693 hybrid +142_5-9 Q0 MARCO_33_868452360-1 69 87.922493 hybrid +142_5-9 Q0 MARCO_57_620123090-4 70 87.915073 hybrid +142_5-9 Q0 MARCO_16_2262210383-2 71 87.909343 hybrid +142_5-9 Q0 MARCO_30_2013034285-3 72 87.908958 hybrid +142_5-9 Q0 MARCO_47_1602505698-3 73 87.901902 hybrid +142_5-9 Q0 KILT_27209869-1 74 87.885592 hybrid +142_5-9 Q0 MARCO_17_3369212537-10 75 87.885093 hybrid +142_5-9 Q0 MARCO_35_1745685522-1 76 87.884393 hybrid +142_5-9 Q0 KILT_21235118-3 77 87.871093 hybrid +142_5-9 Q0 MARCO_47_1601010927-2 78 87.859672 hybrid +142_5-9 Q0 MARCO_16_2206326968-55 79 87.844993 hybrid +142_5-9 Q0 MARCO_24_1832376406-8 80 87.844992 hybrid +142_5-9 Q0 KILT_7060431-1 81 87.836909 hybrid +142_5-9 Q0 MARCO_20_208807894-4 82 87.829643 hybrid +142_5-9 Q0 KILT_2625258-3 83 87.826343 hybrid +142_5-9 Q0 KILT_237715-9 84 87.826137 hybrid +142_5-9 Q0 MARCO_46_1389720552-1 85 87.825943 hybrid +142_5-9 Q0 MARCO_45_5519406-2 86 87.825293 hybrid +142_5-9 Q0 MARCO_17_748684876-1 87 87.811443 hybrid +142_5-9 Q0 KILT_17335975-2 88 87.799592 hybrid +142_5-9 Q0 MARCO_21_1369354727-3 89 87.781493 hybrid +142_5-9 Q0 MARCO_18_1233591122-10 90 87.780493 hybrid +142_5-9 Q0 MARCO_47_1601362260-6 91 87.774074 hybrid +142_5-9 Q0 MARCO_34_1752379868-3 92 87.771543 hybrid +142_5-9 Q0 MARCO_50_594653562-5 93 87.762843 hybrid +142_5-9 Q0 MARCO_59_257252666-1 94 87.746443 hybrid +142_5-9 Q0 MARCO_03_1155604422-1 95 87.740193 hybrid +142_5-9 Q0 MARCO_18_2114119889-4 96 87.735193 hybrid +142_5-9 Q0 MARCO_34_1752379868-2 97 87.735143 hybrid +142_5-9 Q0 MARCO_20_479647412-5 98 87.734867 hybrid +142_5-9 Q0 MARCO_25_937668882-9 99 87.720043 hybrid +142_5-9 Q0 MARCO_22_98914933-1 100 87.716443 hybrid +142_6-1 Q0 MARCO_55_1245662540-6 1 89.409940 hybrid +142_6-1 Q0 MARCO_28_329136270-3 2 88.872095 hybrid +142_6-1 Q0 MARCO_33_868655730-9 3 88.682590 hybrid +142_6-1 Q0 MARCO_33_868655730-8 4 88.610089 hybrid +142_6-1 Q0 MARCO_55_1245662540-1 5 88.344989 hybrid +142_6-1 Q0 MARCO_52_1472442561-1 6 88.272639 hybrid +142_6-1 Q0 MARCO_52_1472442561-9 7 88.232790 hybrid +142_6-1 Q0 MARCO_25_297692704-10 8 88.034289 hybrid +142_6-1 Q0 MARCO_01_651672954-4 9 87.942939 hybrid +142_6-1 Q0 MARCO_16_2206432408-24 10 87.827439 hybrid +142_6-1 Q0 MARCO_04_739200346-4 11 87.728639 hybrid +142_6-1 Q0 MARCO_09_727719485-4 12 87.728639 hybrid +142_6-1 Q0 MARCO_02_859848405-4 13 87.527489 hybrid +142_6-1 Q0 MARCO_25_794773696-8 14 87.501689 hybrid +142_6-1 Q0 MARCO_22_1189445202-15 15 87.498948 hybrid +142_6-1 Q0 MARCO_13_620086192-13 16 87.490540 hybrid +142_6-1 Q0 MARCO_45_22302590-7 17 87.485789 hybrid +142_6-1 Q0 MARCO_06_486574834-19 18 87.448939 hybrid +142_6-1 Q0 MARCO_25_660341045-6 19 87.425189 hybrid +142_6-1 Q0 MARCO_16_2206432408-20 20 87.392540 hybrid +142_6-1 Q0 MARCO_55_524139535-2 21 87.329189 hybrid +142_6-1 Q0 MARCO_28_986422727-3 22 87.297275 hybrid +142_6-1 Q0 MARCO_45_22302590-9 23 87.282339 hybrid +142_6-1 Q0 MARCO_23_203843672-4 24 87.185889 hybrid +142_6-1 Q0 MARCO_55_1245662540-8 25 87.172089 hybrid +142_6-1 Q0 MARCO_02_859848405-3 26 87.165439 hybrid +142_6-1 Q0 MARCO_23_203843672-1 27 87.153489 hybrid +142_6-1 Q0 MARCO_02_1717587934-4 28 87.142139 hybrid +142_6-1 Q0 MARCO_44_1770848712-2 29 87.122039 hybrid +142_6-1 Q0 MARCO_52_1472442561-10 30 87.025489 hybrid +142_6-1 Q0 KILT_2222-23 31 86.973089 hybrid +142_6-1 Q0 MARCO_06_34190103-1 32 86.937939 hybrid +142_6-1 Q0 MARCO_37_1194837970-3 33 86.913339 hybrid +142_6-1 Q0 MARCO_17_3851175486-56 34 86.889989 hybrid +142_6-1 Q0 MARCO_10_802917812-3 35 86.884665 hybrid +142_6-1 Q0 MARCO_30_2013034285-3 36 86.858243 hybrid +142_6-1 Q0 MARCO_18_106335865-1 37 86.839540 hybrid +142_6-1 Q0 MARCO_31_1694990413-1 38 86.813639 hybrid +142_6-1 Q0 KILT_46207366-1 39 86.806890 hybrid +142_6-1 Q0 MARCO_20_315498384-10 40 86.763039 hybrid +142_6-1 Q0 MARCO_40_1404982256-1 41 86.742539 hybrid +142_6-1 Q0 KILT_12255257-2 42 86.701939 hybrid +142_6-1 Q0 KILT_5302486-3 43 86.701639 hybrid +142_6-1 Q0 MARCO_18_106335865-2 44 86.669240 hybrid +142_6-1 Q0 KILT_16594665-10 45 86.600589 hybrid +142_6-1 Q0 MARCO_52_1635048905-5 46 86.579089 hybrid +142_6-1 Q0 MARCO_03_1587404707-2 47 86.558939 hybrid +142_6-1 Q0 MARCO_02_1261032022-3 48 86.551539 hybrid +142_6-1 Q0 MARCO_38_1575935851-4 49 86.551539 hybrid +142_6-1 Q0 MARCO_38_1575935851-8 50 86.551538 hybrid +142_6-1 Q0 MARCO_55_25409365-5 51 86.530839 hybrid +142_6-1 Q0 MARCO_55_571877741-3 52 86.507414 hybrid +142_6-1 Q0 MARCO_19_1313158466-413 53 86.503039 hybrid +142_6-1 Q0 MARCO_01_1159938790-7 54 86.479889 hybrid +142_6-1 Q0 MARCO_51_875663106-1 55 86.479889 hybrid +142_6-1 Q0 MARCO_52_1635048905-4 56 86.446640 hybrid +142_6-1 Q0 MARCO_35_465018758-6 57 86.422139 hybrid +142_6-1 Q0 MARCO_00_1055590783-4 58 86.420089 hybrid +142_6-1 Q0 MARCO_34_1099412811-2 59 86.402589 hybrid +142_6-1 Q0 MARCO_30_2013034285-2 60 86.382535 hybrid +142_6-1 Q0 KILT_164372-7 61 86.379239 hybrid +142_6-1 Q0 MARCO_40_920538064-8 62 86.358639 hybrid +142_6-1 Q0 MARCO_10_624819786-9 63 86.337139 hybrid +142_6-1 Q0 MARCO_16_4024952049-8 64 86.321789 hybrid +142_6-1 Q0 MARCO_20_232780208-6 65 86.321789 hybrid +142_6-1 Q0 MARCO_40_501412170-2 66 86.295990 hybrid +142_6-1 Q0 MARCO_41_1062297429-15 67 86.284189 hybrid +142_6-1 Q0 MARCO_33_455103245-12 68 86.282339 hybrid +142_6-1 Q0 MARCO_06_34190103-3 69 86.275239 hybrid +142_6-1 Q0 MARCO_32_1026784471-5 70 86.267247 hybrid +142_6-1 Q0 MARCO_50_1690747119-19 71 86.264040 hybrid +142_6-1 Q0 MARCO_40_919328460-1 72 86.263789 hybrid +142_6-1 Q0 MARCO_28_984794031-5 73 86.256685 hybrid +142_6-1 Q0 MARCO_12_1283048623-5 74 86.249339 hybrid +142_6-1 Q0 MARCO_26_817625721-23 75 86.237790 hybrid +142_6-1 Q0 MARCO_52_1635048905-2 76 86.235489 hybrid +142_6-1 Q0 MARCO_33_455103245-11 77 86.200439 hybrid +142_6-1 Q0 MARCO_40_514668580-8 78 86.193439 hybrid +142_6-1 Q0 MARCO_06_353388148-6 79 86.190689 hybrid +142_6-1 Q0 MARCO_09_1233575192-4 80 86.174672 hybrid +142_6-1 Q0 MARCO_23_483994226-2 81 86.171353 hybrid +142_6-1 Q0 MARCO_16_2205454508-13 82 86.157189 hybrid +142_6-1 Q0 MARCO_37_171316582-6 83 86.157189 hybrid +142_6-1 Q0 MARCO_45_22302590-3 84 86.157188 hybrid +142_6-1 Q0 MARCO_55_247213724-16 85 86.144235 hybrid +142_6-1 Q0 MARCO_33_101404883-5 86 86.138789 hybrid +142_6-1 Q0 KILT_12255257-1 87 86.134539 hybrid +142_6-1 Q0 MARCO_19_1394828228-3 88 86.134539 hybrid +142_6-1 Q0 MARCO_40_1329492568-4 89 86.120440 hybrid +142_6-1 Q0 MARCO_31_1644786467-10 90 86.113408 hybrid +142_6-1 Q0 MARCO_18_3132830515-10 91 86.108204 hybrid +142_6-1 Q0 MARCO_03_304517922-3 92 86.104739 hybrid +142_6-1 Q0 MARCO_17_674008977-4 93 86.104739 hybrid +142_6-1 Q0 MARCO_27_30574068-2 94 86.104738 hybrid +142_6-1 Q0 MARCO_55_524139535-7 95 86.103889 hybrid +142_6-1 Q0 MARCO_20_232780208-11 96 86.094647 hybrid +142_6-1 Q0 MARCO_45_177344718-5 97 86.089161 hybrid +142_6-1 Q0 MARCO_18_1462330817-16 98 86.082589 hybrid +142_6-1 Q0 MARCO_41_1816072373-2 99 86.075802 hybrid +142_6-1 Q0 MARCO_02_859848405-1 100 86.067689 hybrid +142_6-3 Q0 MARCO_55_1245662540-6 1 89.943244 hybrid +142_6-3 Q0 MARCO_55_1245662540-1 2 88.682844 hybrid +142_6-3 Q0 MARCO_25_297692704-10 3 88.623094 hybrid +142_6-3 Q0 MARCO_33_868655730-8 4 88.538043 hybrid +142_6-3 Q0 MARCO_28_986422727-3 5 88.510715 hybrid +142_6-3 Q0 MARCO_33_868655730-9 6 88.342044 hybrid +142_6-3 Q0 MARCO_52_1472442561-9 7 88.282844 hybrid +142_6-3 Q0 MARCO_52_1472442561-1 8 88.279094 hybrid +142_6-3 Q0 MARCO_55_1245662540-8 9 88.249894 hybrid +142_6-3 Q0 MARCO_22_1189445202-15 10 88.225080 hybrid +142_6-3 Q0 MARCO_02_1717587934-4 11 88.163144 hybrid +142_6-3 Q0 MARCO_04_739200346-4 12 88.128894 hybrid +142_6-3 Q0 MARCO_09_727719485-4 13 88.128893 hybrid +142_6-3 Q0 MARCO_28_329136270-3 14 88.058517 hybrid +142_6-3 Q0 MARCO_27_30574068-2 15 87.840794 hybrid +142_6-3 Q0 MARCO_02_859848405-4 16 87.694643 hybrid +142_6-3 Q0 MARCO_01_651672954-4 17 87.453244 hybrid +142_6-3 Q0 MARCO_25_660341045-6 18 87.409493 hybrid +142_6-3 Q0 MARCO_31_1694990413-1 19 87.325394 hybrid +142_6-3 Q0 MARCO_01_1159938790-7 20 87.221344 hybrid +142_6-3 Q0 MARCO_25_794773696-8 21 87.151594 hybrid +142_6-3 Q0 MARCO_02_859848405-3 22 87.087494 hybrid +142_6-3 Q0 MARCO_16_2206432408-20 23 87.051994 hybrid +142_6-3 Q0 MARCO_16_2206432408-24 24 87.044144 hybrid +142_6-3 Q0 MARCO_37_1194837970-3 25 87.038743 hybrid +142_6-3 Q0 MARCO_45_22302590-9 26 86.941793 hybrid +142_6-3 Q0 MARCO_28_984794031-5 27 86.902995 hybrid +142_6-3 Q0 MARCO_40_920538064-8 28 86.879544 hybrid +142_6-3 Q0 MARCO_08_1170054893-3 29 86.847144 hybrid +142_6-3 Q0 MARCO_45_22302590-7 30 86.841844 hybrid +142_6-3 Q0 KILT_12255257-2 31 86.841544 hybrid +142_6-3 Q0 MARCO_30_2013034285-3 32 86.760444 hybrid +142_6-3 Q0 MARCO_55_247213724-16 33 86.758378 hybrid +142_6-3 Q0 MARCO_10_802917812-3 34 86.707084 hybrid +142_6-3 Q0 MARCO_13_154095447-4 35 86.704793 hybrid +142_6-3 Q0 MARCO_33_101404883-5 36 86.689944 hybrid +142_6-3 Q0 MARCO_20_315498384-10 37 86.687144 hybrid +142_6-3 Q0 MARCO_04_1474402086-4 38 86.659944 hybrid +142_6-3 Q0 MARCO_06_486574834-19 39 86.634593 hybrid +142_6-3 Q0 KILT_2222-23 40 86.632544 hybrid +142_6-3 Q0 MARCO_08_1170054893-1 41 86.614944 hybrid +142_6-3 Q0 MARCO_26_1683729744-7 42 86.586894 hybrid +142_6-3 Q0 MARCO_00_1055590783-4 43 86.546044 hybrid +142_6-3 Q0 MARCO_13_620086192-13 44 86.513994 hybrid +142_6-3 Q0 MARCO_07_1252886573-2 45 86.505343 hybrid +142_6-3 Q0 MARCO_18_106335865-1 46 86.498994 hybrid +142_6-3 Q0 MARCO_35_465018758-6 47 86.493344 hybrid +142_6-3 Q0 MARCO_52_1472442561-10 48 86.480544 hybrid +142_6-3 Q0 MARCO_40_514668580-8 49 86.478194 hybrid +142_6-3 Q0 MARCO_52_1635048905-5 50 86.474044 hybrid +142_6-3 Q0 KILT_46207366-1 51 86.466344 hybrid +142_6-3 Q0 MARCO_41_1816072373-2 52 86.442321 hybrid +142_6-3 Q0 MARCO_30_197775896-7 53 86.433094 hybrid +142_6-3 Q0 MARCO_41_1062297429-15 54 86.421994 hybrid +142_6-3 Q0 MARCO_18_3132830515-10 55 86.412727 hybrid +142_6-3 Q0 MARCO_25_660341045-8 56 86.392344 hybrid +142_6-3 Q0 KILT_5302486-3 57 86.373980 hybrid +142_6-3 Q0 MARCO_55_524139535-2 58 86.368994 hybrid +142_6-3 Q0 MARCO_23_203843672-4 59 86.361393 hybrid +142_6-3 Q0 MARCO_33_868388479-12 60 86.347844 hybrid +142_6-3 Q0 MARCO_30_2013034285-2 61 86.333061 hybrid +142_6-3 Q0 MARCO_18_106335865-2 62 86.328694 hybrid +142_6-3 Q0 KILT_32239668-1 63 86.326507 hybrid +142_6-3 Q0 MARCO_50_2448710081-50 64 86.325844 hybrid +142_6-3 Q0 MARCO_32_1026784471-5 65 86.314933 hybrid +142_6-3 Q0 MARCO_08_1170054893-2 66 86.300344 hybrid +142_6-3 Q0 MARCO_06_34190103-1 67 86.285644 hybrid +142_6-3 Q0 MARCO_02_859848405-1 68 86.274194 hybrid +142_6-3 Q0 MARCO_52_1621186195-5 69 86.271944 hybrid +142_6-3 Q0 KILT_30224834-2 70 86.262969 hybrid +142_6-3 Q0 KILT_16594665-10 71 86.260044 hybrid +142_6-3 Q0 MARCO_12_278047340-3 72 86.258522 hybrid +142_6-3 Q0 MARCO_54_598616069-1 73 86.255494 hybrid +142_6-3 Q0 MARCO_01_704783737-31 74 86.252344 hybrid +142_6-3 Q0 MARCO_06_477944537-1 75 86.245758 hybrid +142_6-3 Q0 MARCO_44_1770848712-2 76 86.241894 hybrid +142_6-3 Q0 MARCO_02_1261032022-3 77 86.210994 hybrid +142_6-3 Q0 MARCO_38_1575935851-4 78 86.210993 hybrid +142_6-3 Q0 MARCO_38_1575935851-8 79 86.210993 hybrid +142_6-3 Q0 MARCO_22_1186888239-2 80 86.205726 hybrid +142_6-3 Q0 MARCO_26_817625721-23 81 86.161079 hybrid +142_6-3 Q0 MARCO_55_571877741-3 82 86.156485 hybrid +142_6-3 Q0 MARCO_36_127164723-1 83 86.155494 hybrid +142_6-3 Q0 MARCO_50_1271011813-17 84 86.141794 hybrid +142_6-3 Q0 MARCO_51_875663106-1 85 86.139344 hybrid +142_6-3 Q0 MARCO_55_25409365-5 86 86.129944 hybrid +142_6-3 Q0 MARCO_36_1003753285-1 87 86.124412 hybrid +142_6-3 Q0 MARCO_20_1433209415-1 88 86.117794 hybrid +142_6-3 Q0 MARCO_50_1936673617-24 89 86.114284 hybrid +142_6-3 Q0 MARCO_26_228061710-1 90 86.112194 hybrid +142_6-3 Q0 MARCO_03_304517922-3 91 86.109544 hybrid +142_6-3 Q0 MARCO_04_118351913-3 92 86.108094 hybrid +142_6-3 Q0 MARCO_52_1635048905-4 93 86.106094 hybrid +142_6-3 Q0 MARCO_18_1462330817-16 94 86.095044 hybrid +142_6-3 Q0 MARCO_50_1441723234-17 95 86.083794 hybrid +142_6-3 Q0 MARCO_17_3851175486-56 96 86.079793 hybrid +142_6-3 Q0 MARCO_54_1054320953-5 97 86.077944 hybrid +142_6-3 Q0 MARCO_19_1313158466-413 98 86.045294 hybrid +142_6-3 Q0 KILT_164372-7 99 86.038693 hybrid +142_6-3 Q0 MARCO_09_1309744505-6 100 86.033044 hybrid +142_7-1 Q0 MARCO_03_444110329-1 1 93.199875 hybrid +142_7-1 Q0 MARCO_10_1612385551-2 2 91.944077 hybrid +142_7-1 Q0 MARCO_54_1821438646-9 3 91.468327 hybrid +142_7-1 Q0 MARCO_44_1920711678-2 4 91.425477 hybrid +142_7-1 Q0 MARCO_30_1078961907-1 5 91.299761 hybrid +142_7-1 Q0 MARCO_30_1024441304-3 6 91.293867 hybrid +142_7-1 Q0 MARCO_55_316070415-3 7 91.118727 hybrid +142_7-1 Q0 MARCO_43_782572363-1 8 90.923031 hybrid +142_7-1 Q0 MARCO_30_152664236-7 9 90.771158 hybrid +142_7-1 Q0 MARCO_30_1024441304-1 10 90.687983 hybrid +142_7-1 Q0 MARCO_38_256944338-2 11 90.593926 hybrid +142_7-1 Q0 MARCO_30_1004788738-2 12 90.549267 hybrid +142_7-1 Q0 MARCO_30_1024441304-2 13 90.531058 hybrid +142_7-1 Q0 MARCO_05_1351112908-1 14 90.468617 hybrid +142_7-1 Q0 MARCO_24_1494711467-42 15 90.421477 hybrid +142_7-1 Q0 MARCO_30_151772794-9 16 90.406395 hybrid +142_7-1 Q0 MARCO_10_1612385551-4 17 90.371877 hybrid +142_7-1 Q0 MARCO_30_1078961907-2 18 90.366076 hybrid +142_7-1 Q0 MARCO_05_1351112908-2 19 90.324149 hybrid +142_7-1 Q0 MARCO_03_539017592-1 20 90.282527 hybrid +142_7-1 Q0 MARCO_55_316070415-1 21 90.250027 hybrid +142_7-1 Q0 MARCO_35_128151915-16 22 90.234568 hybrid +142_7-1 Q0 MARCO_09_668405802-1 23 90.230027 hybrid +142_7-1 Q0 MARCO_30_152664236-9 24 90.197093 hybrid +142_7-1 Q0 MARCO_55_1226350753-2 25 90.176476 hybrid +142_7-1 Q0 MARCO_30_152664236-1 26 90.153086 hybrid +142_7-1 Q0 MARCO_22_846187279-8 27 89.989227 hybrid +142_7-1 Q0 MARCO_49_223385723-1 28 89.984329 hybrid +142_7-1 Q0 MARCO_30_1083589263-4 29 89.969440 hybrid +142_7-1 Q0 MARCO_30_1078961907-4 30 89.960283 hybrid +142_7-1 Q0 MARCO_55_1727451898-3 31 89.960178 hybrid +142_7-1 Q0 MARCO_03_324305277-5 32 89.941927 hybrid +142_7-1 Q0 MARCO_55_1233612003-4 33 89.933677 hybrid +142_7-1 Q0 MARCO_44_597642201-6 34 89.895127 hybrid +142_7-1 Q0 MARCO_51_633692586-4 35 89.878026 hybrid +142_7-1 Q0 MARCO_22_846187279-4 36 89.872627 hybrid +142_7-1 Q0 MARCO_49_223385723-4 37 89.835824 hybrid +142_7-1 Q0 MARCO_44_1920711678-3 38 89.819527 hybrid +142_7-1 Q0 MARCO_30_151678069-13 39 89.809217 hybrid +142_7-1 Q0 MARCO_54_1821438646-1 40 89.773527 hybrid +142_7-1 Q0 MARCO_52_1576671550-15 41 89.754127 hybrid +142_7-1 Q0 MARCO_22_846187279-23 42 89.751027 hybrid +142_7-1 Q0 MARCO_54_1821438646-4 43 89.725927 hybrid +142_7-1 Q0 MARCO_54_1821438646-5 44 89.691077 hybrid +142_7-1 Q0 MARCO_57_2292388215-1 45 89.684027 hybrid +142_7-1 Q0 MARCO_19_2045799633-20 46 89.682014 hybrid +142_7-1 Q0 MARCO_30_1081355542-30 47 89.671427 hybrid +142_7-1 Q0 MARCO_09_893833241-5 48 89.655977 hybrid +142_7-1 Q0 MARCO_55_248291775-14 49 89.641995 hybrid +142_7-1 Q0 MARCO_55_1728776510-1 50 89.637806 hybrid +142_7-1 Q0 MARCO_05_1351112908-3 51 89.636744 hybrid +142_7-1 Q0 MARCO_56_1353248874-2 52 89.626427 hybrid +142_7-1 Q0 MARCO_54_1821438646-3 53 89.601127 hybrid +142_7-1 Q0 MARCO_55_1233612003-3 54 89.596327 hybrid +142_7-1 Q0 MARCO_35_128320398-1 55 89.592381 hybrid +142_7-1 Q0 MARCO_30_1078961907-3 56 89.563352 hybrid +142_7-1 Q0 MARCO_22_846187279-22 57 89.538727 hybrid +142_7-1 Q0 MARCO_55_1283960750-2 58 89.528955 hybrid +142_7-1 Q0 MARCO_49_223385723-3 59 89.515495 hybrid +142_7-1 Q0 MARCO_09_668405802-2 60 89.488127 hybrid +142_7-1 Q0 MARCO_21_1442314510-7 61 89.467557 hybrid +142_7-1 Q0 MARCO_55_316070415-15 62 89.456577 hybrid +142_7-1 Q0 MARCO_01_1132954638-2 63 89.436577 hybrid +142_7-1 Q0 MARCO_54_1690212117-5 64 89.436027 hybrid +142_7-1 Q0 MARCO_58_1499458452-1 65 89.433877 hybrid +142_7-1 Q0 MARCO_38_256944338-5 66 89.420227 hybrid +142_7-1 Q0 MARCO_34_72552988-1 67 89.413077 hybrid +142_7-1 Q0 MARCO_04_1008113445-1 68 89.391577 hybrid +142_7-1 Q0 MARCO_22_846187279-20 69 89.387327 hybrid +142_7-1 Q0 MARCO_30_92584521-5 70 89.375426 hybrid +142_7-1 Q0 MARCO_54_1821438646-8 71 89.361527 hybrid +142_7-1 Q0 MARCO_56_1855702377-17 72 89.325927 hybrid +142_7-1 Q0 MARCO_38_256944338-1 73 89.304527 hybrid +142_7-1 Q0 MARCO_22_846187279-26 74 89.296077 hybrid +142_7-1 Q0 MARCO_32_1740544110-13 75 89.293477 hybrid +142_7-1 Q0 MARCO_55_316131939-3 76 89.256327 hybrid +142_7-1 Q0 MARCO_38_608962355-3 77 89.230300 hybrid +142_7-1 Q0 MARCO_22_846187279-10 78 89.221927 hybrid +142_7-1 Q0 MARCO_34_1420419391-3 79 89.199777 hybrid +142_7-1 Q0 MARCO_23_670215090-2 80 89.164627 hybrid +142_7-1 Q0 MARCO_55_316070415-2 81 89.153277 hybrid +142_7-1 Q0 MARCO_38_256944338-9 82 89.141827 hybrid +142_7-1 Q0 MARCO_13_429894363-2 83 89.130327 hybrid +142_7-1 Q0 MARCO_30_1645809882-12 84 89.125277 hybrid +142_7-1 Q0 MARCO_04_556306459-1 85 89.120577 hybrid +142_7-1 Q0 MARCO_38_256944338-4 86 89.112077 hybrid +142_7-1 Q0 MARCO_57_1214887757-2 87 89.110727 hybrid +142_7-1 Q0 MARCO_22_846187279-5 88 89.076727 hybrid +142_7-1 Q0 MARCO_28_1651236929-7 89 89.057377 hybrid +142_7-1 Q0 MARCO_01_1859820011-3 90 89.045727 hybrid +142_7-1 Q0 MARCO_03_324305277-1 91 89.044577 hybrid +142_7-1 Q0 MARCO_50_2074769870-29 92 89.038527 hybrid +142_7-1 Q0 MARCO_54_1821438646-2 93 89.035027 hybrid +142_7-1 Q0 MARCO_34_72552988-4 94 89.031177 hybrid +142_7-1 Q0 MARCO_03_721593473-2 95 89.027127 hybrid +142_7-1 Q0 MARCO_03_324305277-2 96 89.021427 hybrid +142_7-1 Q0 MARCO_22_846187279-21 97 89.018827 hybrid +142_7-1 Q0 MARCO_28_1651236929-6 98 89.011127 hybrid +142_7-1 Q0 MARCO_30_1004054024-8 99 89.004594 hybrid +142_7-1 Q0 MARCO_22_846187279-9 100 88.994677 hybrid +142_8-1 Q0 MARCO_22_1187170512-2 1 87.208118 hybrid +142_8-1 Q0 MARCO_22_1187170512-5 2 87.199810 hybrid +142_8-1 Q0 MARCO_55_1284512637-4 3 87.141308 hybrid +142_8-1 Q0 MARCO_35_128289220-13 4 87.126759 hybrid +142_8-1 Q0 MARCO_22_1187181374-4 5 87.013119 hybrid +142_8-1 Q0 MARCO_19_2483609053-11 6 87.011296 hybrid +142_8-1 Q0 MARCO_00_1042400454-3 7 87.010769 hybrid +142_8-1 Q0 MARCO_55_1284502929-6 8 86.988712 hybrid +142_8-1 Q0 MARCO_22_1187181374-3 9 86.985104 hybrid +142_8-1 Q0 MARCO_45_1437526383-2 10 86.974979 hybrid +142_8-1 Q0 MARCO_50_1525328921-20 11 86.964397 hybrid +142_8-1 Q0 MARCO_50_1446258360-2 12 86.937832 hybrid +142_8-1 Q0 MARCO_22_1190417156-1 13 86.933803 hybrid +142_8-1 Q0 MARCO_55_1284502929-4 14 86.903088 hybrid +142_8-1 Q0 MARCO_22_1187181374-5 15 86.880100 hybrid +142_8-1 Q0 MARCO_36_1581532185-2 16 86.870159 hybrid +142_8-1 Q0 MARCO_58_1508678720-1 17 86.855827 hybrid +142_8-1 Q0 MARCO_22_1187170512-1 18 86.840298 hybrid +142_8-1 Q0 KILT_5489-53 19 86.840160 hybrid +142_8-1 Q0 KILT_5494-1 20 86.839153 hybrid +142_8-1 Q0 MARCO_22_1187170512-6 21 86.802837 hybrid +142_8-1 Q0 MARCO_24_1126171266-13 22 86.789921 hybrid +142_8-1 Q0 MARCO_58_1505550141-6 23 86.789089 hybrid +142_8-1 Q0 MARCO_13_661344710-1 24 86.788345 hybrid +142_8-1 Q0 MARCO_33_1239673349-1 25 86.788258 hybrid +142_8-1 Q0 MARCO_22_1187170512-7 26 86.766453 hybrid +142_8-1 Q0 MARCO_43_782020638-7 27 86.755863 hybrid +142_8-1 Q0 MARCO_24_1136457662-6 28 86.733051 hybrid +142_8-1 Q0 MARCO_55_1284502929-1 29 86.724190 hybrid +142_8-1 Q0 MARCO_05_486423848-1 30 86.700771 hybrid +142_8-1 Q0 KILT_10873028-8 31 86.698345 hybrid +142_8-1 Q0 MARCO_58_1505550141-1 32 86.683193 hybrid +142_8-1 Q0 MARCO_19_2483609053-12 33 86.675716 hybrid +142_8-1 Q0 MARCO_03_1661752769-2 34 86.668538 hybrid +142_8-1 Q0 MARCO_58_1508163333-1 35 86.660358 hybrid +142_8-1 Q0 MARCO_00_1042413828-4 36 86.659771 hybrid +142_8-1 Q0 KILT_299550-1 37 86.648418 hybrid +142_8-1 Q0 MARCO_10_126605894-7 38 86.635265 hybrid +142_8-1 Q0 KILT_5489-28 39 86.626095 hybrid +142_8-1 Q0 KILT_12585491-5 40 86.622150 hybrid +142_8-1 Q0 KILT_5529992-3 41 86.621258 hybrid +142_8-1 Q0 MARCO_22_1187181374-1 42 86.618809 hybrid +142_8-1 Q0 MARCO_00_1042370166-3 43 86.612110 hybrid +142_8-1 Q0 MARCO_04_99228362-2 44 86.595838 hybrid +142_8-1 Q0 MARCO_22_1187170512-3 45 86.591496 hybrid +142_8-1 Q0 MARCO_25_1694780894-1 46 86.590200 hybrid +142_8-1 Q0 MARCO_00_1042337820-1 47 86.580395 hybrid +142_8-1 Q0 KILT_5489-54 48 86.576862 hybrid +142_8-1 Q0 MARCO_05_486427109-3 49 86.574497 hybrid +142_8-1 Q0 KILT_5489-52 50 86.573154 hybrid +142_8-1 Q0 KILT_5489-1 51 86.565365 hybrid +142_8-1 Q0 MARCO_36_1806742080-1 52 86.562710 hybrid +142_8-1 Q0 MARCO_22_1187170512-4 53 86.560932 hybrid +142_8-1 Q0 MARCO_10_799166704-2 54 86.556133 hybrid +142_8-1 Q0 MARCO_58_1508163333-3 55 86.548283 hybrid +142_8-1 Q0 MARCO_58_1506784632-3 56 86.544575 hybrid +142_8-1 Q0 MARCO_35_128374913-1 57 86.544209 hybrid +142_8-1 Q0 MARCO_03_446463952-4 58 86.538364 hybrid +142_8-1 Q0 MARCO_57_1435853555-9 59 86.536915 hybrid +142_8-1 Q0 KILT_5489-37 60 86.534107 hybrid +142_8-1 Q0 MARCO_30_1082827875-25 61 86.497692 hybrid +142_8-1 Q0 MARCO_22_1187170512-9 62 86.493710 hybrid +142_8-1 Q0 MARCO_36_1008590407-3 63 86.493160 hybrid +142_8-1 Q0 MARCO_25_1694780894-4 64 86.491917 hybrid +142_8-1 Q0 KILT_16181756-5 65 86.479023 hybrid +142_8-1 Q0 MARCO_55_248583746-7 66 86.477154 hybrid +142_8-1 Q0 MARCO_27_913333413-1 67 86.475636 hybrid +142_8-1 Q0 MARCO_50_1525328921-10 68 86.471661 hybrid +142_8-1 Q0 MARCO_35_128289220-12 69 86.471470 hybrid +142_8-1 Q0 MARCO_58_1508573003-2 70 86.469364 hybrid +142_8-1 Q0 MARCO_23_489520494-1 71 86.466465 hybrid +142_8-1 Q0 KILT_5494-9 72 86.465412 hybrid +142_8-1 Q0 KILT_5494-8 73 86.446705 hybrid +142_8-1 Q0 KILT_299550-3 74 86.439938 hybrid +142_8-1 Q0 MARCO_50_1446258360-1 75 86.436466 hybrid +142_8-1 Q0 KILT_44716276-1 76 86.425297 hybrid +142_8-1 Q0 MARCO_39_910717939-1 77 86.423321 hybrid +142_8-1 Q0 MARCO_39_910717939-3 78 86.423313 hybrid +142_8-1 Q0 MARCO_30_1079478959-2 79 86.414707 hybrid +142_8-1 Q0 MARCO_55_1284502929-3 80 86.400191 hybrid +142_8-1 Q0 MARCO_03_447715492-6 81 86.398739 hybrid +142_8-1 Q0 MARCO_50_2164037813-2 82 86.392689 hybrid +142_8-1 Q0 KILT_180051-3 83 86.392498 hybrid +142_8-1 Q0 KILT_5494-5 84 86.381397 hybrid +142_8-1 Q0 MARCO_03_447715492-1 85 86.377003 hybrid +142_8-1 Q0 MARCO_55_251439026-6 86 86.375744 hybrid +142_8-1 Q0 MARCO_35_128289220-14 87 86.375179 hybrid +142_8-1 Q0 MARCO_04_1213656629-1 88 86.372448 hybrid +142_8-1 Q0 MARCO_47_1601021495-2 89 86.370777 hybrid +142_8-1 Q0 KILT_5489-62 90 86.367718 hybrid +142_8-1 Q0 MARCO_00_1042337820-2 91 86.366543 hybrid +142_8-1 Q0 KILT_30601611-4 92 86.364384 hybrid +142_8-1 Q0 MARCO_35_128374913-10 93 86.361889 hybrid +142_8-1 Q0 MARCO_58_1505550141-5 94 86.359707 hybrid +142_8-1 Q0 KILT_1548253-4 95 86.356899 hybrid +142_8-1 Q0 MARCO_30_901834353-3 96 86.355579 hybrid +142_8-1 Q0 KILT_12585491-1 97 86.354900 hybrid +142_8-1 Q0 KILT_5489-61 98 86.354198 hybrid +142_8-1 Q0 MARCO_00_1042400454-1 99 86.353611 hybrid +142_8-1 Q0 MARCO_46_532855364-1 100 86.347888 hybrid +142_9-1 Q0 MARCO_58_1508113613-1 1 87.081368 hybrid +142_9-1 Q0 MARCO_04_113777060-3 2 86.800256 hybrid +142_9-1 Q0 MARCO_22_1186906798-1 3 86.533195 hybrid +142_9-1 Q0 MARCO_58_1506642595-1 4 86.513460 hybrid +142_9-1 Q0 MARCO_47_1602505698-3 5 86.437907 hybrid +142_9-1 Q0 MARCO_16_188635818-10 6 86.433306 hybrid +142_9-1 Q0 MARCO_35_128151915-16 7 86.391666 hybrid +142_9-1 Q0 MARCO_06_1240614560-37 8 86.384493 hybrid +142_9-1 Q0 MARCO_33_827028099-1 9 86.367306 hybrid +142_9-1 Q0 MARCO_58_1509104985-4 10 86.319849 hybrid +142_9-1 Q0 MARCO_55_1245662540-1 11 86.292456 hybrid +142_9-1 Q0 MARCO_50_1912057131-10 12 86.274556 hybrid +142_9-1 Q0 MARCO_54_676656745-2 13 86.255717 hybrid +142_9-1 Q0 MARCO_54_676656745-4 14 86.255717 hybrid +142_9-1 Q0 MARCO_05_848957007-1 15 86.254934 hybrid +142_9-1 Q0 MARCO_22_1186915282-3 16 86.214389 hybrid +142_9-1 Q0 MARCO_54_676656745-1 17 86.181650 hybrid +142_9-1 Q0 MARCO_31_899564358-3 18 86.102328 hybrid +142_9-1 Q0 MARCO_33_868347963-1 19 86.063457 hybrid +142_9-1 Q0 MARCO_10_1612385551-16 20 86.050107 hybrid +142_9-1 Q0 MARCO_58_1508113613-3 21 86.047877 hybrid +142_9-1 Q0 KILT_14672486-3 22 86.038935 hybrid +142_9-1 Q0 MARCO_33_868645797-1 23 86.037356 hybrid +142_9-1 Q0 MARCO_58_1509104985-3 24 86.015864 hybrid +142_9-1 Q0 MARCO_50_1441723234-18 25 86.006060 hybrid +142_9-1 Q0 MARCO_45_593249002-8 26 86.001806 hybrid +142_9-1 Q0 MARCO_10_803208538-1 27 85.989206 hybrid +142_9-1 Q0 MARCO_55_1232655087-3 28 85.984156 hybrid +142_9-1 Q0 MARCO_19_2045799633-26 29 85.981776 hybrid +142_9-1 Q0 MARCO_47_1604104921-3 30 85.966799 hybrid +142_9-1 Q0 MARCO_58_1505463998-1 31 85.948709 hybrid +142_9-1 Q0 MARCO_22_1186915282-2 32 85.939150 hybrid +142_9-1 Q0 MARCO_16_3046749093-49 33 85.935251 hybrid +142_9-1 Q0 MARCO_10_790353427-4 34 85.930506 hybrid +142_9-1 Q0 MARCO_16_442874124-1 35 85.927515 hybrid +142_9-1 Q0 MARCO_37_173589964-2 36 85.917620 hybrid +142_9-1 Q0 MARCO_08_1480326385-15 37 85.914611 hybrid +142_9-1 Q0 KILT_26507946-2 38 85.909724 hybrid +142_9-1 Q0 MARCO_50_1954392654-9 39 85.908406 hybrid +142_9-1 Q0 MARCO_34_859491572-2 40 85.907306 hybrid +142_9-1 Q0 MARCO_25_297460066-2 41 85.905107 hybrid +142_9-1 Q0 MARCO_58_1508113613-2 42 85.903422 hybrid +142_9-1 Q0 KILT_28820502-2 43 85.892664 hybrid +142_9-1 Q0 MARCO_41_1117115865-63 44 85.889841 hybrid +142_9-1 Q0 MARCO_58_1506642595-3 45 85.880022 hybrid +142_9-1 Q0 MARCO_17_693365828-1 46 85.877337 hybrid +142_9-1 Q0 MARCO_24_1494711467-41 47 85.873356 hybrid +142_9-1 Q0 MARCO_05_848975837-1 48 85.865099 hybrid +142_9-1 Q0 MARCO_19_2045799633-19 49 85.859591 hybrid +142_9-1 Q0 KILT_34879285-1 50 85.858462 hybrid +142_9-1 Q0 KILT_1839572-1 51 85.855974 hybrid +142_9-1 Q0 MARCO_47_1601362260-4 52 85.854120 hybrid +142_9-1 Q0 MARCO_06_1149196799-179 53 85.850580 hybrid +142_9-1 Q0 MARCO_43_742228802-80 54 85.838976 hybrid +142_9-1 Q0 MARCO_06_1240614560-44 55 85.838839 hybrid +142_9-1 Q0 MARCO_50_1936673617-24 56 85.835779 hybrid +142_9-1 Q0 MARCO_07_259262889-1 57 85.833466 hybrid +142_9-1 Q0 MARCO_47_1601362260-10 58 85.827097 hybrid +142_9-1 Q0 MARCO_30_2012938093-1 59 85.821186 hybrid +142_9-1 Q0 MARCO_16_442874124-2 60 85.817820 hybrid +142_9-1 Q0 MARCO_47_1601010927-2 61 85.814928 hybrid +142_9-1 Q0 MARCO_06_1240614560-32 62 85.812075 hybrid +142_9-1 Q0 MARCO_22_1186906798-5 63 85.810480 hybrid +142_9-1 Q0 MARCO_55_1708317826-1 64 85.809133 hybrid +142_9-1 Q0 MARCO_10_790353427-1 65 85.802408 hybrid +142_9-1 Q0 MARCO_35_128533405-3 66 85.786242 hybrid +142_9-1 Q0 MARCO_47_1602505698-4 67 85.784640 hybrid +142_9-1 Q0 MARCO_58_1505463998-3 68 85.779413 hybrid +142_9-1 Q0 MARCO_51_22133322-4 69 85.778806 hybrid +142_9-1 Q0 KILT_35894206-10 70 85.777918 hybrid +142_9-1 Q0 MARCO_47_1602505698-2 71 85.770769 hybrid +142_9-1 Q0 MARCO_37_854781414-2 72 85.769056 hybrid +142_9-1 Q0 MARCO_48_836448592-6 73 85.769056 hybrid +142_9-1 Q0 MARCO_58_1509104985-2 74 85.768069 hybrid +142_9-1 Q0 MARCO_27_1334580338-2 75 85.757471 hybrid +142_9-1 Q0 MARCO_05_848986452-2 76 85.751856 hybrid +142_9-1 Q0 MARCO_52_1000442909-1 77 85.748406 hybrid +142_9-1 Q0 MARCO_40_1583135483-1 78 85.746505 hybrid +142_9-1 Q0 MARCO_13_471074249-2 79 85.741807 hybrid +142_9-1 Q0 MARCO_18_3127967367-2 80 85.739451 hybrid +142_9-1 Q0 MARCO_10_1612385551-24 81 85.736006 hybrid +142_9-1 Q0 MARCO_11_1247195404-2 82 85.734406 hybrid +142_9-1 Q0 MARCO_33_868334401-2 83 85.734406 hybrid +142_9-1 Q0 MARCO_10_790347853-1 84 85.734087 hybrid +142_9-1 Q0 MARCO_19_2045799633-18 85 85.731744 hybrid +142_9-1 Q0 MARCO_05_848957007-4 86 85.730135 hybrid +142_9-1 Q0 MARCO_35_128151915-14 87 85.729039 hybrid +142_9-1 Q0 MARCO_34_1420419391-9 88 85.721256 hybrid +142_9-1 Q0 MARCO_16_3046944575-20 89 85.717264 hybrid +142_9-1 Q0 MARCO_47_1604104921-11 90 85.714747 hybrid +142_9-1 Q0 KILT_592808-3 91 85.710917 hybrid +142_9-1 Q0 MARCO_50_1458626850-10 92 85.710459 hybrid +142_9-1 Q0 MARCO_22_1186915282-1 93 85.707461 hybrid +142_9-1 Q0 MARCO_16_3046749093-4 94 85.698389 hybrid +142_9-1 Q0 MARCO_30_2013006327-1 95 85.694218 hybrid +142_9-1 Q0 MARCO_22_1186906798-2 96 85.693140 hybrid +142_9-1 Q0 MARCO_44_1215854994-1 97 85.690156 hybrid +142_9-1 Q0 KILT_35894206-5 98 85.684801 hybrid +142_9-1 Q0 KILT_8076950-1 99 85.680048 hybrid +142_9-1 Q0 MARCO_50_594653562-4 100 85.677656 hybrid +143_1-1 Q0 MARCO_14_1190072833-1 1 87.564161 hybrid +143_1-1 Q0 KILT_2964862-7 2 87.512106 hybrid +143_1-1 Q0 MARCO_40_667182643-1 3 87.505392 hybrid +143_1-1 Q0 MARCO_36_839237348-5 4 87.502531 hybrid +143_1-1 Q0 MARCO_36_839237348-4 5 87.439100 hybrid +143_1-1 Q0 MARCO_14_1190072833-2 6 87.101553 hybrid +143_1-1 Q0 MARCO_44_623736186-5 7 87.091612 hybrid +143_1-1 Q0 MARCO_29_1331485035-6 8 86.984419 hybrid +143_1-1 Q0 MARCO_13_697608169-2 9 86.973440 hybrid +143_1-1 Q0 MARCO_40_266486787-50 10 86.948530 hybrid +143_1-1 Q0 MARCO_04_185169155-4 11 86.937613 hybrid +143_1-1 Q0 MARCO_36_839920756-4 12 86.927633 hybrid +143_1-1 Q0 MARCO_35_22431210-5 13 86.851583 hybrid +143_1-1 Q0 MARCO_36_28162569-5 14 86.844633 hybrid +143_1-1 Q0 MARCO_36_28162569-4 15 86.814428 hybrid +143_1-1 Q0 MARCO_13_1224118800-1 16 86.739927 hybrid +143_1-1 Q0 MARCO_27_586060148-22 17 86.657393 hybrid +143_1-1 Q0 MARCO_35_22431210-4 18 86.624601 hybrid +143_1-1 Q0 MARCO_27_586060148-26 19 86.574125 hybrid +143_1-1 Q0 KILT_2964862-1 20 86.572699 hybrid +143_1-1 Q0 MARCO_14_1190072833-3 21 86.570768 hybrid +143_1-1 Q0 MARCO_36_28162569-2 22 86.564894 hybrid +143_1-1 Q0 KILT_3073096-1 23 86.549955 hybrid +143_1-1 Q0 MARCO_13_697608169-3 24 86.521348 hybrid +143_1-1 Q0 MARCO_14_1189603229-6 25 86.483320 hybrid +143_1-1 Q0 MARCO_35_1469847018-2 26 86.477797 hybrid +143_1-1 Q0 MARCO_36_28162569-3 27 86.458766 hybrid +143_1-1 Q0 KILT_1437154-1 28 86.457174 hybrid +143_1-1 Q0 MARCO_13_1224118800-3 29 86.456683 hybrid +143_1-1 Q0 MARCO_14_1190072833-6 30 86.451139 hybrid +143_1-1 Q0 KILT_42371251-1 31 86.448088 hybrid +143_1-1 Q0 MARCO_45_532277027-1 32 86.438795 hybrid +143_1-1 Q0 KILT_8385046-1 33 86.434698 hybrid +143_1-1 Q0 MARCO_45_535496133-1 34 86.432676 hybrid +143_1-1 Q0 MARCO_13_1224118800-2 35 86.430105 hybrid +143_1-1 Q0 KILT_3049649-2 36 86.428061 hybrid +143_1-1 Q0 MARCO_40_274248920-88 37 86.417540 hybrid +143_1-1 Q0 MARCO_45_532260364-1 38 86.413122 hybrid +143_1-1 Q0 MARCO_00_1107294789-1 39 86.410849 hybrid +143_1-1 Q0 MARCO_54_319242251-7 40 86.397070 hybrid +143_1-1 Q0 MARCO_35_336625773-8 41 86.388479 hybrid +143_1-1 Q0 MARCO_49_1518490588-10 42 86.382368 hybrid +143_1-1 Q0 MARCO_14_1190072833-4 43 86.373350 hybrid +143_1-1 Q0 KILT_378204-1 44 86.365118 hybrid +143_1-1 Q0 MARCO_45_532291240-1 45 86.323042 hybrid +143_1-1 Q0 KILT_3049649-1 46 86.317396 hybrid +143_1-1 Q0 MARCO_29_1332813355-3 47 86.314024 hybrid +143_1-1 Q0 MARCO_29_1332813355-1 48 86.309309 hybrid +143_1-1 Q0 MARCO_29_1332813355-6 49 86.296263 hybrid +143_1-1 Q0 KILT_1297457-4 50 86.292067 hybrid +143_1-1 Q0 MARCO_32_1796230465-4 51 86.277999 hybrid +143_1-1 Q0 MARCO_35_305195648-5 52 86.237112 hybrid +143_1-1 Q0 MARCO_51_1999574201-19 53 86.234617 hybrid +143_1-1 Q0 MARCO_19_2556756670-1 54 86.224722 hybrid +143_1-1 Q0 MARCO_50_1933847318-6 55 86.220106 hybrid +143_1-1 Q0 KILT_3479210-1 56 86.215513 hybrid +143_1-1 Q0 MARCO_27_1643809758-3 57 86.213095 hybrid +143_1-1 Q0 KILT_3156313-1 58 86.199583 hybrid +143_1-1 Q0 MARCO_54_322640260-3 59 86.195234 hybrid +143_1-1 Q0 KILT_921278-10 60 86.194677 hybrid +143_1-1 Q0 MARCO_13_798486522-1 61 86.188566 hybrid +143_1-1 Q0 KILT_39905985-1 62 86.188444 hybrid +143_1-1 Q0 MARCO_15_1108520612-3 63 86.187254 hybrid +143_1-1 Q0 MARCO_54_322090285-2 64 86.174955 hybrid +143_1-1 Q0 MARCO_39_610949138-1 65 86.174681 hybrid +143_1-1 Q0 MARCO_26_1061461405-2 66 86.172972 hybrid +143_1-1 Q0 KILT_242556-1 67 86.169874 hybrid +143_1-1 Q0 MARCO_23_1279898335-64 68 86.164907 hybrid +143_1-1 Q0 MARCO_30_898932082-16 69 86.163382 hybrid +143_1-1 Q0 MARCO_36_28162569-1 70 86.162975 hybrid +143_1-1 Q0 MARCO_43_772414784-2 71 86.158514 hybrid +143_1-1 Q0 MARCO_35_305195648-4 72 86.152151 hybrid +143_1-1 Q0 MARCO_40_266323569-17 73 86.149252 hybrid +143_1-1 Q0 MARCO_44_624050066-7 74 86.149160 hybrid +143_1-1 Q0 MARCO_12_1869120660-1 75 86.139326 hybrid +143_1-1 Q0 MARCO_15_102106212-1 76 86.138403 hybrid +143_1-1 Q0 MARCO_50_1666175963-11 77 86.137899 hybrid +143_1-1 Q0 MARCO_14_1550501220-11 78 86.137487 hybrid +143_1-1 Q0 MARCO_12_1868962042-1 79 86.127768 hybrid +143_1-1 Q0 MARCO_00_1107294789-2 80 86.127653 hybrid +143_1-1 Q0 MARCO_40_339551778-60 81 86.125814 hybrid +143_1-1 Q0 MARCO_21_1148245773-7 82 86.122099 hybrid +143_1-1 Q0 MARCO_14_1190072833-5 83 86.119009 hybrid +143_1-1 Q0 MARCO_30_900180283-25 84 86.118910 hybrid +143_1-1 Q0 MARCO_54_1473144022-2 85 86.114523 hybrid +143_1-1 Q0 MARCO_22_992740285-2 86 86.105413 hybrid +143_1-1 Q0 MARCO_45_532247236-1 87 86.105413 hybrid +143_1-1 Q0 MARCO_14_1191611578-3 88 86.101362 hybrid +143_1-1 Q0 MARCO_27_1566172206-61 89 86.090559 hybrid +143_1-1 Q0 MARCO_14_1551133905-3 90 86.089285 hybrid +143_1-1 Q0 MARCO_40_311823724-177 91 86.089010 hybrid +143_1-1 Q0 MARCO_13_992636996-1 92 86.087317 hybrid +143_1-1 Q0 MARCO_44_628258168-3 93 86.076857 hybrid +143_1-1 Q0 KILT_27250860-1 94 86.068861 hybrid +143_1-1 Q0 MARCO_30_899028894-12 95 86.068724 hybrid +143_1-1 Q0 KILT_19607864-1 96 86.061789 hybrid +143_1-1 Q0 MARCO_15_102108771-2 97 86.061384 hybrid +143_1-1 Q0 MARCO_13_696581433-7 98 86.061255 hybrid +143_1-1 Q0 MARCO_41_915204227-6 99 86.059523 hybrid +143_1-1 Q0 MARCO_45_535403383-1 100 86.058752 hybrid +143_1-11 Q0 MARCO_12_793940038-1 1 93.886003 hybrid +143_1-11 Q0 MARCO_27_1588465286-2 2 93.760303 hybrid +143_1-11 Q0 MARCO_12_50857731-1 3 93.604302 hybrid +143_1-11 Q0 MARCO_27_1590067365-1 4 93.515303 hybrid +143_1-11 Q0 MARCO_43_565671836-1 5 93.502703 hybrid +143_1-11 Q0 MARCO_30_601429875-6 6 93.467453 hybrid +143_1-11 Q0 MARCO_39_972892800-1 7 93.214752 hybrid +143_1-11 Q0 MARCO_32_1186423390-1 8 93.116652 hybrid +143_1-11 Q0 MARCO_36_120724090-1 9 93.073803 hybrid +143_1-11 Q0 MARCO_00_1372456933-4 10 93.006252 hybrid +143_1-11 Q0 MARCO_28_1322461854-8 11 92.959538 hybrid +143_1-11 Q0 KILT_20671794-4 12 92.911202 hybrid +143_1-11 Q0 MARCO_45_1047642109-1 13 92.907403 hybrid +143_1-11 Q0 MARCO_26_1094299993-3 14 92.896203 hybrid +143_1-11 Q0 MARCO_19_631914680-5 15 92.835052 hybrid +143_1-11 Q0 MARCO_18_1062294767-4 16 92.816552 hybrid +143_1-11 Q0 MARCO_53_1404098173-1 17 92.717253 hybrid +143_1-11 Q0 MARCO_53_1412146736-1 18 92.644453 hybrid +143_1-11 Q0 MARCO_48_754726967-19 19 92.637902 hybrid +143_1-11 Q0 MARCO_56_219699965-1 20 92.594502 hybrid +143_1-11 Q0 MARCO_15_1264381327-20 21 92.531753 hybrid +143_1-11 Q0 MARCO_28_1308417846-2 22 92.473300 hybrid +143_1-11 Q0 MARCO_03_167957933-11 23 92.469553 hybrid +143_1-11 Q0 MARCO_27_1588577135-1 24 92.440252 hybrid +143_1-11 Q0 MARCO_42_341000900-1 25 92.426602 hybrid +143_1-11 Q0 KILT_2915176-5 26 92.402952 hybrid +143_1-11 Q0 MARCO_49_1342526086-2 27 92.301502 hybrid +143_1-11 Q0 MARCO_53_1292134409-7 28 92.255703 hybrid +143_1-11 Q0 MARCO_48_1555077849-1 29 92.167003 hybrid +143_1-11 Q0 MARCO_29_977669212-2 30 92.159503 hybrid +143_1-11 Q0 MARCO_33_632066513-1 31 92.155653 hybrid +143_1-11 Q0 MARCO_23_1005047219-7 32 92.127652 hybrid +143_1-11 Q0 KILT_31555205-1 33 92.113402 hybrid +143_1-11 Q0 MARCO_01_1688688954-1 34 92.088902 hybrid +143_1-11 Q0 KILT_21846371-2 35 92.087603 hybrid +143_1-11 Q0 MARCO_44_1097020626-18 36 92.087552 hybrid +143_1-11 Q0 MARCO_53_904267232-2 37 92.080603 hybrid +143_1-11 Q0 MARCO_42_76458986-10 38 92.071802 hybrid +143_1-11 Q0 MARCO_44_791092871-3 39 92.063003 hybrid +143_1-11 Q0 MARCO_36_482769747-2 40 92.011152 hybrid +143_1-11 Q0 MARCO_37_207489734-1 41 92.006653 hybrid +143_1-11 Q0 MARCO_27_1588378390-1 42 92.005802 hybrid +143_1-11 Q0 MARCO_53_1408763481-1 43 92.004752 hybrid +143_1-11 Q0 MARCO_24_1093154676-1 44 92.002752 hybrid +143_1-11 Q0 MARCO_36_800995613-2 45 91.962502 hybrid +143_1-11 Q0 MARCO_27_232978415-8 46 91.948153 hybrid +143_1-11 Q0 MARCO_43_565671836-7 47 91.927003 hybrid +143_1-11 Q0 MARCO_53_1407512734-1 48 91.909434 hybrid +143_1-11 Q0 MARCO_26_728934083-6 49 91.909303 hybrid +143_1-11 Q0 MARCO_08_849463321-8 50 91.877453 hybrid +143_1-11 Q0 MARCO_47_1092515194-1 51 91.873403 hybrid +143_1-11 Q0 KILT_2035148-2 52 91.860952 hybrid +143_1-11 Q0 MARCO_43_574632404-3 53 91.851803 hybrid +143_1-11 Q0 MARCO_15_1264381327-11 54 91.835552 hybrid +143_1-11 Q0 MARCO_15_1265182150-13 55 91.835551 hybrid +143_1-11 Q0 MARCO_30_918555510-4 56 91.834403 hybrid +143_1-11 Q0 MARCO_13_404945687-1 57 91.792418 hybrid +143_1-11 Q0 MARCO_43_565671836-5 58 91.770853 hybrid +143_1-11 Q0 MARCO_53_869806361-1 59 91.760603 hybrid +143_1-11 Q0 MARCO_18_2387411650-5 60 91.757990 hybrid +143_1-11 Q0 MARCO_15_371617059-1 61 91.751053 hybrid +143_1-11 Q0 MARCO_43_1564482312-5 62 91.740353 hybrid +143_1-11 Q0 MARCO_51_1978478597-4 63 91.732452 hybrid +143_1-11 Q0 MARCO_57_124385329-3 64 91.726052 hybrid +143_1-11 Q0 MARCO_57_124385329-5 65 91.726051 hybrid +143_1-11 Q0 MARCO_56_1174287067-8 66 91.720853 hybrid +143_1-11 Q0 MARCO_21_1068859054-1 67 91.719553 hybrid +143_1-11 Q0 MARCO_52_353228995-7 68 91.709053 hybrid +143_1-11 Q0 MARCO_18_1061184897-1 69 91.697203 hybrid +143_1-11 Q0 KILT_41972603-2 70 91.689953 hybrid +143_1-11 Q0 MARCO_45_822105198-8 71 91.688703 hybrid +143_1-11 Q0 MARCO_14_1525733572-10 72 91.673204 hybrid +143_1-11 Q0 KILT_16028103-6 73 91.669203 hybrid +143_1-11 Q0 MARCO_13_4424228-14 74 91.648653 hybrid +143_1-11 Q0 MARCO_35_1724389397-1 75 91.643053 hybrid +143_1-11 Q0 MARCO_15_1276162789-1 76 91.632302 hybrid +143_1-11 Q0 MARCO_42_77383684-1 77 91.623102 hybrid +143_1-11 Q0 MARCO_45_1115908296-2 78 91.622703 hybrid +143_1-11 Q0 MARCO_27_1588458453-2 79 91.618302 hybrid +143_1-11 Q0 MARCO_16_471632801-1 80 91.617702 hybrid +143_1-11 Q0 MARCO_27_232922985-1 81 91.613003 hybrid +143_1-11 Q0 MARCO_27_1591417054-1 82 91.595153 hybrid +143_1-11 Q0 MARCO_17_4598555588-2 83 91.592453 hybrid +143_1-11 Q0 MARCO_12_798196939-10 84 91.570003 hybrid +143_1-11 Q0 MARCO_02_1493111039-1 85 91.565702 hybrid +143_1-11 Q0 MARCO_44_697254068-2 86 91.561752 hybrid +143_1-11 Q0 KILT_12398-30 87 91.553252 hybrid +143_1-11 Q0 MARCO_16_1950412725-1 88 91.551103 hybrid +143_1-11 Q0 MARCO_42_62420069-1 89 91.548603 hybrid +143_1-11 Q0 MARCO_39_1363286659-7 90 91.544235 hybrid +143_1-11 Q0 MARCO_14_944389547-91 91 91.542867 hybrid +143_1-11 Q0 MARCO_38_1397449827-1 92 91.539152 hybrid +143_1-11 Q0 MARCO_48_1555077849-2 93 91.534102 hybrid +143_1-11 Q0 MARCO_17_1391165896-1 94 91.527002 hybrid +143_1-11 Q0 MARCO_27_1588597136-2 95 91.516703 hybrid +143_1-11 Q0 MARCO_17_204953445-23 96 91.516003 hybrid +143_1-11 Q0 MARCO_43_1679525471-4 97 91.511103 hybrid +143_1-11 Q0 MARCO_32_1698919773-67 98 91.500902 hybrid +143_1-11 Q0 MARCO_56_1319363153-3 99 91.500295 hybrid +143_1-11 Q0 KILT_35186455-4 100 91.499952 hybrid +143_1-13 Q0 MARCO_37_1201513680-35 1 87.365178 hybrid +143_1-13 Q0 MARCO_11_193448462-7 2 87.102328 hybrid +143_1-13 Q0 MARCO_20_1143791571-1 3 86.891778 hybrid +143_1-13 Q0 MARCO_18_3496363884-8 4 86.864478 hybrid +143_1-13 Q0 MARCO_29_863232769-6 5 86.738375 hybrid +143_1-13 Q0 MARCO_29_866218601-13 6 86.738375 hybrid +143_1-13 Q0 MARCO_31_35259431-1 7 86.738178 hybrid +143_1-13 Q0 MARCO_37_96811655-12 8 86.720278 hybrid +143_1-13 Q0 MARCO_02_485786500-4 9 86.706118 hybrid +143_1-13 Q0 MARCO_29_868329575-2 10 86.561480 hybrid +143_1-13 Q0 MARCO_24_1138702817-1 11 86.543764 hybrid +143_1-13 Q0 KILT_39246006-4 12 86.528428 hybrid +143_1-13 Q0 MARCO_27_850805309-14 13 86.476328 hybrid +143_1-13 Q0 MARCO_44_1172749368-2 14 86.475378 hybrid +143_1-13 Q0 MARCO_44_1172786686-2 15 86.475378 hybrid +143_1-13 Q0 MARCO_50_1983727946-1 16 86.442270 hybrid +143_1-13 Q0 MARCO_23_940058441-1 17 86.396978 hybrid +143_1-13 Q0 MARCO_17_367384120-37 18 86.385958 hybrid +143_1-13 Q0 MARCO_54_1524829628-1 19 86.380808 hybrid +143_1-13 Q0 MARCO_37_1250042811-1 20 86.379412 hybrid +143_1-13 Q0 MARCO_14_746487374-1 21 86.372797 hybrid +143_1-13 Q0 MARCO_13_655398278-1 22 86.362375 hybrid +143_1-13 Q0 MARCO_24_1124133783-1 23 86.359778 hybrid +143_1-13 Q0 MARCO_53_1431288133-6 24 86.342578 hybrid +143_1-13 Q0 MARCO_16_2830024638-11 25 86.317328 hybrid +143_1-13 Q0 KILT_27913227-3 26 86.313909 hybrid +143_1-13 Q0 MARCO_48_1723625993-4 27 86.310878 hybrid +143_1-13 Q0 MARCO_13_1441026267-1 28 86.301828 hybrid +143_1-13 Q0 MARCO_28_43678078-1 29 86.299349 hybrid +143_1-13 Q0 MARCO_41_387566683-1 30 86.261972 hybrid +143_1-13 Q0 MARCO_22_244971473-3 31 86.261881 hybrid +143_1-13 Q0 MARCO_40_151752092-1 32 86.253183 hybrid +143_1-13 Q0 MARCO_23_1830177216-1 33 86.232981 hybrid +143_1-13 Q0 MARCO_43_1640460050-2 34 86.231828 hybrid +143_1-13 Q0 MARCO_41_922078754-1 35 86.230013 hybrid +143_1-13 Q0 MARCO_13_131903842-67 36 86.228228 hybrid +143_1-13 Q0 MARCO_28_685730504-2 37 86.226378 hybrid +143_1-13 Q0 MARCO_41_1169513590-39 38 86.216127 hybrid +143_1-13 Q0 MARCO_45_1024358508-12 39 86.213701 hybrid +143_1-13 Q0 MARCO_28_393689398-2 40 86.197809 hybrid +143_1-13 Q0 KILT_58697449-2 41 86.196528 hybrid +143_1-13 Q0 MARCO_17_367384120-23 42 86.191080 hybrid +143_1-13 Q0 MARCO_59_379221080-1 43 86.179441 hybrid +143_1-13 Q0 KILT_48859708-3 44 86.165628 hybrid +143_1-13 Q0 MARCO_54_65255662-5 45 86.165078 hybrid +143_1-13 Q0 MARCO_41_387566683-3 46 86.159204 hybrid +143_1-13 Q0 MARCO_31_1560464192-1 47 86.158304 hybrid +143_1-13 Q0 MARCO_44_1639088779-3 48 86.154578 hybrid +143_1-13 Q0 MARCO_52_680689559-1 49 86.148203 hybrid +143_1-13 Q0 MARCO_50_2713725927-5 50 86.143541 hybrid +143_1-13 Q0 MARCO_50_2713725927-1 51 86.143541 hybrid +143_1-13 Q0 MARCO_50_2713725927-3 52 86.143541 hybrid +143_1-13 Q0 MARCO_40_1192022744-1 53 86.142351 hybrid +143_1-13 Q0 MARCO_40_1265771977-2 54 86.136744 hybrid +143_1-13 Q0 MARCO_38_4703197-8 55 86.134728 hybrid +143_1-13 Q0 MARCO_40_1276808168-1 56 86.134195 hybrid +143_1-13 Q0 KILT_54064152-2 57 86.129786 hybrid +143_1-13 Q0 MARCO_02_870584912-44 58 86.124030 hybrid +143_1-13 Q0 MARCO_40_1192048546-1 59 86.117571 hybrid +143_1-13 Q0 KILT_27573364-1 60 86.117278 hybrid +143_1-13 Q0 KILT_58693883-1 61 86.117278 hybrid +143_1-13 Q0 MARCO_53_1436866185-5 62 86.117277 hybrid +143_1-13 Q0 MARCO_22_997448110-20 63 86.113642 hybrid +143_1-13 Q0 MARCO_00_624962639-4 64 86.112673 hybrid +143_1-13 Q0 MARCO_00_624816590-4 65 86.112673 hybrid +143_1-13 Q0 MARCO_31_1560814610-9 66 86.111928 hybrid +143_1-13 Q0 MARCO_52_488994585-2 67 86.111428 hybrid +143_1-13 Q0 MARCO_50_1978919509-6 68 86.109778 hybrid +143_1-13 Q0 MARCO_43_1632533343-1 69 86.107778 hybrid +143_1-13 Q0 MARCO_00_624541009-3 70 86.107676 hybrid +143_1-13 Q0 MARCO_48_550797568-1 71 86.104509 hybrid +143_1-13 Q0 MARCO_29_863580623-5 72 86.101397 hybrid +143_1-13 Q0 MARCO_29_867562507-8 73 86.101389 hybrid +143_1-13 Q0 MARCO_50_1613826976-14 74 86.096428 hybrid +143_1-13 Q0 KILT_51020150-3 75 86.093878 hybrid +143_1-13 Q0 MARCO_28_241022800-4 76 86.087728 hybrid +143_1-13 Q0 MARCO_20_626306361-7 77 86.074533 hybrid +143_1-13 Q0 MARCO_31_18137720-3 78 86.069765 hybrid +143_1-13 Q0 MARCO_36_651627711-2 79 86.066778 hybrid +143_1-13 Q0 MARCO_01_767011868-62 80 86.060091 hybrid +143_1-13 Q0 MARCO_33_195241282-2 81 86.059778 hybrid +143_1-13 Q0 MARCO_03_545348496-4 82 86.058678 hybrid +143_1-13 Q0 MARCO_23_1830336853-1 83 86.057634 hybrid +143_1-13 Q0 MARCO_31_298717934-35 84 86.057289 hybrid +143_1-13 Q0 MARCO_20_1379310987-2 85 86.052628 hybrid +143_1-13 Q0 MARCO_56_1026935802-148 86 86.051935 hybrid +143_1-13 Q0 MARCO_45_1023964382-1 87 86.048731 hybrid +143_1-13 Q0 MARCO_22_997332287-2 88 86.046335 hybrid +143_1-13 Q0 KILT_38265496-4 89 86.045478 hybrid +143_1-13 Q0 MARCO_14_746886594-1 90 86.043612 hybrid +143_1-13 Q0 MARCO_28_474562382-6 91 86.043444 hybrid +143_1-13 Q0 MARCO_48_655460979-1 92 86.040478 hybrid +143_1-13 Q0 MARCO_35_311112813-2 93 86.039003 hybrid +143_1-13 Q0 MARCO_45_1024564899-1 94 86.036173 hybrid +143_1-13 Q0 MARCO_47_601661126-1 95 86.029787 hybrid +143_1-13 Q0 MARCO_50_1617390941-8 96 86.024078 hybrid +143_1-13 Q0 MARCO_47_390302506-1 97 86.023128 hybrid +143_1-13 Q0 MARCO_23_170346643-5 98 86.021178 hybrid +143_1-13 Q0 MARCO_36_889579235-8 99 86.021178 hybrid +143_1-13 Q0 MARCO_57_881382653-39 100 86.020978 hybrid +143_1-15 Q0 MARCO_37_639963665-2 1 99.583617 hybrid +143_1-15 Q0 MARCO_36_1101816955-7 2 99.445751 hybrid +143_1-15 Q0 MARCO_14_1547266281-2 3 99.340867 hybrid +143_1-15 Q0 MARCO_36_1101816955-2 4 99.301636 hybrid +143_1-15 Q0 MARCO_44_608147575-1 5 99.063671 hybrid +143_1-15 Q0 MARCO_01_829924766-21 6 99.044541 hybrid +143_1-15 Q0 MARCO_19_2489928640-14 7 99.044540 hybrid +143_1-15 Q0 MARCO_01_831982137-22 8 99.044540 hybrid +143_1-15 Q0 MARCO_19_2513676244-16 9 99.044539 hybrid +143_1-15 Q0 MARCO_14_1554596026-2 10 99.022964 hybrid +143_1-15 Q0 MARCO_50_1975747916-5 11 98.753351 hybrid +143_1-15 Q0 MARCO_12_1874771675-1 12 98.618367 hybrid +143_1-15 Q0 MARCO_05_647948692-1 13 98.595617 hybrid +143_1-15 Q0 MARCO_27_821234309-4 14 98.539717 hybrid +143_1-15 Q0 MARCO_12_1873845415-3 15 98.487517 hybrid +143_1-15 Q0 MARCO_22_1239041714-2 16 98.483467 hybrid +143_1-15 Q0 MARCO_34_264785717-7 17 98.363068 hybrid +143_1-15 Q0 MARCO_04_1056544470-3 18 98.307967 hybrid +143_1-15 Q0 MARCO_24_1142582525-2 19 98.251598 hybrid +143_1-15 Q0 MARCO_12_1871335959-1 20 98.245967 hybrid +143_1-15 Q0 MARCO_51_496936088-6 21 98.195267 hybrid +143_1-15 Q0 MARCO_26_424399158-1 22 98.161567 hybrid +143_1-15 Q0 MARCO_01_830855712-16 23 98.142900 hybrid +143_1-15 Q0 MARCO_33_355511915-4 24 98.134288 hybrid +143_1-15 Q0 MARCO_30_899683844-15 25 98.093058 hybrid +143_1-15 Q0 MARCO_50_1673836905-47 26 98.086500 hybrid +143_1-15 Q0 MARCO_14_915019117-9 27 98.045617 hybrid +143_1-15 Q0 MARCO_30_899087538-15 28 98.013886 hybrid +143_1-15 Q0 MARCO_34_1003951780-14 29 97.973317 hybrid +143_1-15 Q0 MARCO_50_286844634-6 30 97.949317 hybrid +143_1-15 Q0 MARCO_36_873712722-2 31 97.900867 hybrid +143_1-15 Q0 MARCO_40_587042737-2 32 97.899317 hybrid +143_1-15 Q0 MARCO_40_1276361600-4 33 97.893304 hybrid +143_1-15 Q0 MARCO_39_1183208038-9 34 97.884017 hybrid +143_1-15 Q0 MARCO_30_899651186-3 35 97.808268 hybrid +143_1-15 Q0 MARCO_36_1089011748-1 36 97.803817 hybrid +143_1-15 Q0 MARCO_26_851233260-1 37 97.762367 hybrid +143_1-15 Q0 MARCO_22_1239041714-7 38 97.743117 hybrid +143_1-15 Q0 MARCO_43_257441977-4 39 97.739917 hybrid +143_1-15 Q0 MARCO_21_191109096-3 40 97.728767 hybrid +143_1-15 Q0 MARCO_56_68688855-2 41 97.725417 hybrid +143_1-15 Q0 MARCO_29_968190446-8 42 97.708568 hybrid +143_1-15 Q0 MARCO_44_608147575-2 43 97.688663 hybrid +143_1-15 Q0 MARCO_13_1439488366-6 44 97.659018 hybrid +143_1-15 Q0 MARCO_37_787651230-6 45 97.658567 hybrid +143_1-15 Q0 MARCO_34_1003796230-12 46 97.650767 hybrid +143_1-15 Q0 MARCO_01_1386309276-1 47 97.640267 hybrid +143_1-15 Q0 MARCO_50_1140407370-68 48 97.548368 hybrid +143_1-15 Q0 MARCO_50_1876477087-10 49 97.541617 hybrid +143_1-15 Q0 MARCO_36_1088601297-1 50 97.539167 hybrid +143_1-15 Q0 MARCO_14_666950050-1 51 97.533167 hybrid +143_1-15 Q0 MARCO_29_1408663772-3 52 97.528517 hybrid +143_1-15 Q0 MARCO_40_576696186-4 53 97.511467 hybrid +143_1-15 Q0 MARCO_14_663802239-2 54 97.510917 hybrid +143_1-15 Q0 MARCO_30_899449670-2 55 97.490813 hybrid +143_1-15 Q0 MARCO_14_666885503-2 56 97.447417 hybrid +143_1-15 Q0 MARCO_44_1408972680-4 57 97.433867 hybrid +143_1-15 Q0 MARCO_50_1417341413-22 58 97.426741 hybrid +143_1-15 Q0 MARCO_34_1004068986-16 59 97.406568 hybrid +143_1-15 Q0 MARCO_22_1239041714-8 60 97.405567 hybrid +143_1-15 Q0 MARCO_34_1004143396-12 61 97.404867 hybrid +143_1-15 Q0 MARCO_49_1260781550-1 62 97.389917 hybrid +143_1-15 Q0 MARCO_22_1239041714-3 63 97.362817 hybrid +143_1-15 Q0 MARCO_59_1043149266-3 64 97.352517 hybrid +143_1-15 Q0 MARCO_14_1547655241-3 65 97.350718 hybrid +143_1-15 Q0 MARCO_26_921448867-13 66 97.347717 hybrid +143_1-15 Q0 MARCO_29_1408663772-4 67 97.341268 hybrid +143_1-15 Q0 MARCO_14_1549599732-2 68 97.324967 hybrid +143_1-15 Q0 MARCO_35_434340657-2 69 97.320617 hybrid +143_1-15 Q0 MARCO_14_1545043841-2 70 97.312617 hybrid +143_1-15 Q0 MARCO_14_663100481-2 71 97.311617 hybrid +143_1-15 Q0 MARCO_14_88339581-5 72 97.261267 hybrid +143_1-15 Q0 MARCO_34_1003951780-2 73 97.260917 hybrid +143_1-15 Q0 MARCO_00_1286684700-1 74 97.250917 hybrid +143_1-15 Q0 MARCO_14_1547684745-2 75 97.247567 hybrid +143_1-15 Q0 MARCO_30_899017371-9 76 97.246324 hybrid +143_1-15 Q0 MARCO_34_1002545807-9 77 97.245768 hybrid +143_1-15 Q0 MARCO_34_311550009-4 78 97.240267 hybrid +143_1-15 Q0 MARCO_50_1598728601-3 79 97.230167 hybrid +143_1-15 Q0 MARCO_14_1543808204-5 80 97.228567 hybrid +143_1-15 Q0 MARCO_30_378033944-3 81 97.215929 hybrid +143_1-15 Q0 MARCO_24_399961101-9 82 97.210917 hybrid +143_1-15 Q0 MARCO_44_620167734-2 83 97.208218 hybrid +143_1-15 Q0 MARCO_35_320502492-6 84 97.197618 hybrid +143_1-15 Q0 MARCO_11_627888578-9 85 97.194967 hybrid +143_1-15 Q0 MARCO_50_1673836905-46 86 97.187951 hybrid +143_1-15 Q0 MARCO_44_693249514-6 87 97.185767 hybrid +143_1-15 Q0 MARCO_57_278797129-3 88 97.181017 hybrid +143_1-15 Q0 MARCO_34_1003236534-1 89 97.176767 hybrid +143_1-15 Q0 MARCO_14_663253591-2 90 97.171368 hybrid +143_1-15 Q0 MARCO_36_1096025289-22 91 97.164867 hybrid +143_1-15 Q0 MARCO_36_873712722-1 92 97.149667 hybrid +143_1-15 Q0 MARCO_29_1371992294-2 93 97.146768 hybrid +143_1-15 Q0 MARCO_40_587789055-1 94 97.130167 hybrid +143_1-15 Q0 MARCO_20_1003582089-5 95 97.126718 hybrid +143_1-15 Q0 MARCO_14_1547691354-1 96 97.123517 hybrid +143_1-15 Q0 MARCO_14_1549493516-2 97 97.098167 hybrid +143_1-15 Q0 MARCO_14_1553417208-5 98 97.095347 hybrid +143_1-15 Q0 MARCO_14_663320441-8 99 97.089417 hybrid +143_1-15 Q0 MARCO_40_575419499-1 100 97.089168 hybrid +143_1-17 Q0 MARCO_10_260431490-19 1 86.678982 hybrid +143_1-17 Q0 MARCO_43_1244550245-16 2 86.639767 hybrid +143_1-17 Q0 MARCO_09_1337153585-7 3 86.592976 hybrid +143_1-17 Q0 MARCO_37_835780776-18 4 86.571743 hybrid +143_1-17 Q0 MARCO_27_1335956273-4 5 86.518429 hybrid +143_1-17 Q0 MARCO_27_1337283708-6 6 86.497417 hybrid +143_1-17 Q0 MARCO_55_1287485776-3 7 86.496838 hybrid +143_1-17 Q0 MARCO_09_1337153585-3 8 86.478420 hybrid +143_1-17 Q0 MARCO_09_1337153585-5 9 86.478420 hybrid +143_1-17 Q0 MARCO_15_1874813588-13 10 86.475849 hybrid +143_1-17 Q0 MARCO_04_219119614-7 11 86.469219 hybrid +143_1-17 Q0 MARCO_55_1278906673-12 12 86.459034 hybrid +143_1-17 Q0 MARCO_30_894043860-3 13 86.447437 hybrid +143_1-17 Q0 MARCO_28_315959874-8 14 86.422405 hybrid +143_1-17 Q0 MARCO_06_1071286545-61 15 86.417645 hybrid +143_1-17 Q0 MARCO_28_286276433-1 16 86.411297 hybrid +143_1-17 Q0 MARCO_17_4118145988-5 17 86.373539 hybrid +143_1-17 Q0 MARCO_05_596117696-5 18 86.372395 hybrid +143_1-17 Q0 MARCO_20_1123210514-3 19 86.363575 hybrid +143_1-17 Q0 MARCO_50_2164186291-151 20 86.330952 hybrid +143_1-17 Q0 MARCO_10_790196439-10 21 86.328007 hybrid +143_1-17 Q0 MARCO_58_1508432866-3 22 86.321255 hybrid +143_1-17 Q0 MARCO_19_249632023-7 23 86.318813 hybrid +143_1-17 Q0 MARCO_51_113466954-6 24 86.316715 hybrid +143_1-17 Q0 MARCO_10_120457537-5 25 86.312351 hybrid +143_1-17 Q0 MARCO_58_1508436871-3 26 86.305744 hybrid +143_1-17 Q0 MARCO_24_1015430307-2 27 86.303997 hybrid +143_1-17 Q0 MARCO_06_1905214190-6 28 86.302975 hybrid +143_1-17 Q0 MARCO_30_1006002195-9 29 86.295513 hybrid +143_1-17 Q0 MARCO_14_1191455815-2 30 86.287334 hybrid +143_1-17 Q0 MARCO_30_1091150572-37 31 86.259663 hybrid +143_1-17 Q0 MARCO_47_1603000615-2 32 86.258846 hybrid +143_1-17 Q0 MARCO_19_2046519096-1 33 86.253185 hybrid +143_1-17 Q0 MARCO_55_1278906673-10 34 86.252636 hybrid +143_1-17 Q0 MARCO_11_119909427-1 35 86.251568 hybrid +143_1-17 Q0 MARCO_11_1468726849-2 36 86.240185 hybrid +143_1-17 Q0 MARCO_03_1787230806-3 37 86.240009 hybrid +143_1-17 Q0 MARCO_03_1784737014-3 38 86.240009 hybrid +143_1-17 Q0 MARCO_40_453444519-2 39 86.228611 hybrid +143_1-17 Q0 MARCO_45_537951926-1 40 86.226727 hybrid +143_1-17 Q0 MARCO_22_1189602563-2 41 86.221943 hybrid +143_1-17 Q0 MARCO_24_1015430307-3 42 86.217678 hybrid +143_1-17 Q0 MARCO_40_1187865557-2 43 86.217457 hybrid +143_1-17 Q0 MARCO_20_1123210514-1 44 86.214054 hybrid +143_1-17 Q0 MARCO_14_127340878-1 45 86.211300 hybrid +143_1-17 Q0 MARCO_47_292639442-4 46 86.208202 hybrid +143_1-17 Q0 MARCO_28_315984618-7 47 86.206394 hybrid +143_1-17 Q0 MARCO_28_309385335-17 48 86.206394 hybrid +143_1-17 Q0 MARCO_28_315975032-7 49 86.206394 hybrid +143_1-17 Q0 MARCO_27_1335956273-5 50 86.204937 hybrid +143_1-17 Q0 MARCO_57_1269990821-3 51 86.204922 hybrid +143_1-17 Q0 MARCO_13_321381752-1 52 86.199192 hybrid +143_1-17 Q0 MARCO_27_1332721658-5 53 86.199169 hybrid +143_1-17 Q0 MARCO_10_790295123-3 54 86.197544 hybrid +143_1-17 Q0 MARCO_47_1603000615-6 55 86.188808 hybrid +143_1-17 Q0 MARCO_10_120256054-2 56 86.188595 hybrid +143_1-17 Q0 MARCO_27_1336323682-6 57 86.183834 hybrid +143_1-17 Q0 MARCO_27_1238733637-4 58 86.179722 hybrid +143_1-17 Q0 MARCO_57_1274690822-2 59 86.179203 hybrid +143_1-17 Q0 MARCO_51_634919600-1 60 86.173858 hybrid +143_1-17 Q0 MARCO_17_2510783820-53 61 86.163219 hybrid +143_1-17 Q0 MARCO_50_1440908477-6 62 86.156696 hybrid +143_1-17 Q0 MARCO_35_127793957-1 63 86.156391 hybrid +143_1-17 Q0 MARCO_28_286276433-4 64 86.154194 hybrid +143_1-17 Q0 MARCO_39_617517093-8 65 86.145977 hybrid +143_1-17 Q0 MARCO_50_2392281395-12 66 86.144367 hybrid +143_1-17 Q0 MARCO_47_1602683698-2 67 86.134418 hybrid +143_1-17 Q0 MARCO_30_1084201401-18 68 86.131435 hybrid +143_1-17 Q0 MARCO_29_795107192-2 69 86.128826 hybrid +143_1-17 Q0 MARCO_55_246915017-2 70 86.116360 hybrid +143_1-17 Q0 MARCO_18_3124953992-148 71 86.114697 hybrid +143_1-17 Q0 KILT_2802175-4 72 86.104664 hybrid +143_1-17 Q0 MARCO_03_1787782681-4 73 86.095631 hybrid +143_1-17 Q0 MARCO_03_1786621820-2 74 86.095631 hybrid +143_1-17 Q0 MARCO_19_2046519096-3 75 86.087299 hybrid +143_1-17 Q0 MARCO_30_1006002195-1 76 86.081806 hybrid +143_1-17 Q0 MARCO_50_1452511370-4 77 86.081455 hybrid +143_1-17 Q0 MARCO_41_2085351244-13 78 86.078335 hybrid +143_1-17 Q0 MARCO_58_1508486791-2 79 86.077656 hybrid +143_1-17 Q0 MARCO_17_3703353004-1 80 86.076649 hybrid +143_1-17 Q0 MARCO_17_431954845-2 81 86.072124 hybrid +143_1-17 Q0 MARCO_51_119267475-6 82 86.066158 hybrid +143_1-17 Q0 MARCO_57_1436318624-4 83 86.064144 hybrid +143_1-17 Q0 MARCO_55_1287485776-2 84 86.062244 hybrid +143_1-17 Q0 MARCO_17_3703678333-1 85 86.060055 hybrid +143_1-17 Q0 MARCO_40_550347645-1 86 86.047932 hybrid +143_1-17 Q0 MARCO_28_330069875-3 87 86.047192 hybrid +143_1-17 Q0 MARCO_19_2046519096-9 88 86.044735 hybrid +143_1-17 Q0 KILT_59012195-25 89 86.041706 hybrid +143_1-17 Q0 MARCO_30_1082648100-1 90 86.036083 hybrid +143_1-17 Q0 MARCO_45_1436207481-14 91 86.035694 hybrid +143_1-17 Q0 MARCO_03_1767653065-5 92 86.033169 hybrid +143_1-17 Q0 MARCO_57_1274506455-2 93 86.032528 hybrid +143_1-17 Q0 KILT_53326349-3 94 86.027493 hybrid +143_1-17 Q0 MARCO_31_935635753-1 95 86.004120 hybrid +143_1-17 Q0 MARCO_57_914510789-3 96 86.003796 hybrid +143_1-17 Q0 MARCO_22_1189602563-4 97 86.003132 hybrid +143_1-17 Q0 MARCO_17_3703678333-8 98 86.002697 hybrid +143_1-17 Q0 MARCO_50_1421354218-15 99 86.002377 hybrid +143_1-17 Q0 MARCO_39_824677086-2 100 86.001720 hybrid +143_1-19 Q0 MARCO_31_295248992-6 1 91.504835 hybrid +143_1-19 Q0 MARCO_51_340692408-2 2 90.882472 hybrid +143_1-19 Q0 MARCO_30_900416977-6 3 90.325322 hybrid +143_1-19 Q0 MARCO_23_180832328-3 4 90.223572 hybrid +143_1-19 Q0 KILT_602839-7 5 89.964322 hybrid +143_1-19 Q0 MARCO_05_670220206-271 6 89.950472 hybrid +143_1-19 Q0 MARCO_29_1334919388-38 7 89.922544 hybrid +143_1-19 Q0 MARCO_47_465288285-1 8 89.893722 hybrid +143_1-19 Q0 MARCO_13_371803608-7 9 89.856071 hybrid +143_1-19 Q0 MARCO_13_751228545-1 10 89.825072 hybrid +143_1-19 Q0 MARCO_50_468316732-32 11 89.821422 hybrid +143_1-19 Q0 MARCO_19_2484129627-21 12 89.807302 hybrid +143_1-19 Q0 MARCO_45_508984159-1 13 89.796922 hybrid +143_1-19 Q0 MARCO_13_430403233-3 14 89.719422 hybrid +143_1-19 Q0 KILT_51192992-3 15 89.717021 hybrid +143_1-19 Q0 MARCO_50_1142559583-17 16 89.681122 hybrid +143_1-19 Q0 MARCO_32_1748833973-5 17 89.679372 hybrid +143_1-19 Q0 MARCO_19_2498800878-11 18 89.667547 hybrid +143_1-19 Q0 MARCO_19_2512475672-14 19 89.667547 hybrid +143_1-19 Q0 MARCO_01_831105559-28 20 89.667547 hybrid +143_1-19 Q0 MARCO_01_833156633-12 21 89.667547 hybrid +143_1-19 Q0 MARCO_24_936466006-22 22 89.663022 hybrid +143_1-19 Q0 MARCO_30_898878792-31 23 89.654394 hybrid +143_1-19 Q0 MARCO_05_264874856-4 24 89.645822 hybrid +143_1-19 Q0 MARCO_30_900212772-4 25 89.611472 hybrid +143_1-19 Q0 MARCO_30_899942587-12 26 89.591436 hybrid +143_1-19 Q0 MARCO_01_829924766-18 27 89.581976 hybrid +143_1-19 Q0 MARCO_43_257417797-2 28 89.578272 hybrid +143_1-19 Q0 MARCO_19_2496958346-29 29 89.576483 hybrid +143_1-19 Q0 MARCO_19_2488220035-29 30 89.576483 hybrid +143_1-19 Q0 MARCO_01_829478272-26 31 89.576483 hybrid +143_1-19 Q0 MARCO_01_833253499-9 32 89.576483 hybrid +143_1-19 Q0 MARCO_01_828261466-14 33 89.576483 hybrid +143_1-19 Q0 MARCO_19_2508528923-33 34 89.576483 hybrid +143_1-19 Q0 MARCO_19_2480603792-40 35 89.576483 hybrid +143_1-19 Q0 MARCO_01_827962921-33 36 89.576483 hybrid +143_1-19 Q0 MARCO_01_829868993-11 37 89.576483 hybrid +143_1-19 Q0 MARCO_01_830196248-33 38 89.576483 hybrid +143_1-19 Q0 MARCO_41_1017897843-9 39 89.575222 hybrid +143_1-19 Q0 MARCO_37_1669593347-3 40 89.565372 hybrid +143_1-19 Q0 MARCO_47_612361272-1 41 89.542372 hybrid +143_1-19 Q0 MARCO_24_1140025590-4 42 89.524527 hybrid +143_1-19 Q0 MARCO_12_1167871651-3 43 89.521330 hybrid +143_1-19 Q0 MARCO_44_39882752-1 44 89.518572 hybrid +143_1-19 Q0 MARCO_14_1549450269-18 45 89.505003 hybrid +143_1-19 Q0 MARCO_14_1549599732-17 46 89.504492 hybrid +143_1-19 Q0 MARCO_48_763385209-1 47 89.501051 hybrid +143_1-19 Q0 MARCO_36_1101932240-9 48 89.497084 hybrid +143_1-19 Q0 MARCO_25_68841104-10 49 89.492122 hybrid +143_1-19 Q0 MARCO_41_1261123264-34 50 89.487172 hybrid +143_1-19 Q0 MARCO_14_666872929-6 51 89.477722 hybrid +143_1-19 Q0 MARCO_37_348402975-4 52 89.472672 hybrid +143_1-19 Q0 MARCO_37_251647739-7 53 89.472097 hybrid +143_1-19 Q0 MARCO_46_137272355-3 54 89.447172 hybrid +143_1-19 Q0 MARCO_36_1501614405-1 55 89.422122 hybrid +143_1-19 Q0 MARCO_14_663292036-7 56 89.421772 hybrid +143_1-19 Q0 MARCO_30_898738123-37 57 89.420072 hybrid +143_1-19 Q0 MARCO_19_2501168671-38 58 89.409086 hybrid +143_1-19 Q0 MARCO_39_433640276-6 59 89.399271 hybrid +143_1-19 Q0 MARCO_19_2495281943-21 60 89.398672 hybrid +143_1-19 Q0 MARCO_01_830855712-13 61 89.389898 hybrid +143_1-19 Q0 MARCO_14_680680940-1 62 89.385422 hybrid +143_1-19 Q0 MARCO_30_900212772-9 63 89.385283 hybrid +143_1-19 Q0 MARCO_22_1394314481-9 64 89.385072 hybrid +143_1-19 Q0 MARCO_35_305984262-2 65 89.383622 hybrid +143_1-19 Q0 MARCO_01_831982137-19 66 89.380255 hybrid +143_1-19 Q0 MARCO_19_2513676244-13 67 89.380255 hybrid +143_1-19 Q0 MARCO_19_2489928640-11 68 89.380255 hybrid +143_1-19 Q0 MARCO_01_941336862-6 69 89.378272 hybrid +143_1-19 Q0 MARCO_14_1550215043-13 70 89.376760 hybrid +143_1-19 Q0 MARCO_19_2499051986-30 71 89.372465 hybrid +143_1-19 Q0 MARCO_07_795635402-6 72 89.372389 hybrid +143_1-19 Q0 MARCO_39_1706424961-1 73 89.362371 hybrid +143_1-19 Q0 MARCO_36_1500913083-4 74 89.361622 hybrid +143_1-19 Q0 MARCO_25_1274773446-29 75 89.356572 hybrid +143_1-19 Q0 MARCO_50_1876477087-42 76 89.356322 hybrid +143_1-19 Q0 MARCO_19_2501049434-28 77 89.351637 hybrid +143_1-19 Q0 MARCO_19_2486322268-16 78 89.351637 hybrid +143_1-19 Q0 MARCO_36_972226623-6 79 89.343272 hybrid +143_1-19 Q0 MARCO_12_1168148020-6 80 89.343069 hybrid +143_1-19 Q0 MARCO_47_921857188-3 81 89.338118 hybrid +143_1-19 Q0 MARCO_12_1167831191-1 82 89.313116 hybrid +143_1-19 Q0 MARCO_27_1643809758-16 83 89.312960 hybrid +143_1-19 Q0 MARCO_13_1763260734-6 84 89.309332 hybrid +143_1-19 Q0 MARCO_25_250880460-13 85 89.306422 hybrid +143_1-19 Q0 MARCO_23_180968154-1 86 89.299922 hybrid +143_1-19 Q0 MARCO_05_326289349-1 87 89.293221 hybrid +143_1-19 Q0 MARCO_44_738928019-4 88 89.292722 hybrid +143_1-19 Q0 MARCO_41_1507643819-31 89 89.289572 hybrid +143_1-19 Q0 MARCO_33_173143478-10 90 89.285522 hybrid +143_1-19 Q0 MARCO_49_318095782-4 91 89.284922 hybrid +143_1-19 Q0 MARCO_30_900052011-23 92 89.280220 hybrid +143_1-19 Q0 MARCO_28_647765232-9 93 89.276129 hybrid +143_1-19 Q0 KILT_235224-3 94 89.275572 hybrid +143_1-19 Q0 MARCO_26_110906995-4 95 89.256109 hybrid +143_1-19 Q0 MARCO_28_1571019334-2 96 89.249572 hybrid +143_1-19 Q0 MARCO_15_1719201349-7 97 89.248172 hybrid +143_1-19 Q0 MARCO_15_310936140-1 98 89.247641 hybrid +143_1-19 Q0 MARCO_30_899942587-10 99 89.246946 hybrid +143_1-19 Q0 MARCO_17_4124901567-6 100 89.242369 hybrid +143_1-3 Q0 MARCO_36_839237348-5 1 89.793377 hybrid +143_1-3 Q0 MARCO_51_1439694472-1 2 89.752308 hybrid +143_1-3 Q0 MARCO_36_839237348-4 3 89.424054 hybrid +143_1-3 Q0 MARCO_11_226013166-18 4 88.977608 hybrid +143_1-3 Q0 MARCO_23_762117817-1 5 88.638558 hybrid +143_1-3 Q0 MARCO_48_1914459474-3 6 88.524808 hybrid +143_1-3 Q0 MARCO_16_171147433-5 7 88.473758 hybrid +143_1-3 Q0 MARCO_09_545398862-2 8 88.456563 hybrid +143_1-3 Q0 MARCO_14_127408603-2 9 88.428020 hybrid +143_1-3 Q0 MARCO_36_839920756-4 10 88.388172 hybrid +143_1-3 Q0 MARCO_01_1029544932-21 11 88.360363 hybrid +143_1-3 Q0 MARCO_35_1781628187-16 12 88.347408 hybrid +143_1-3 Q0 MARCO_38_1685027474-15 13 88.281758 hybrid +143_1-3 Q0 MARCO_35_305195648-4 14 88.238148 hybrid +143_1-3 Q0 MARCO_44_698962011-4 15 88.145508 hybrid +143_1-3 Q0 MARCO_57_1274444085-4 16 88.140797 hybrid +143_1-3 Q0 MARCO_18_4361109773-21 17 88.121586 hybrid +143_1-3 Q0 MARCO_57_1273579679-8 18 88.105907 hybrid +143_1-3 Q0 MARCO_35_22431210-5 19 88.066189 hybrid +143_1-3 Q0 KILT_18566274-22 20 88.063084 hybrid +143_1-3 Q0 MARCO_19_249547082-24 21 88.024677 hybrid +143_1-3 Q0 MARCO_26_528481307-1 22 87.992508 hybrid +143_1-3 Q0 MARCO_18_4359208287-10 23 87.992229 hybrid +143_1-3 Q0 MARCO_19_2506613429-12 24 87.990108 hybrid +143_1-3 Q0 MARCO_19_2494602307-8 25 87.990108 hybrid +143_1-3 Q0 MARCO_19_2504515851-25 26 87.990108 hybrid +143_1-3 Q0 MARCO_04_388374061-14 27 87.982558 hybrid +143_1-3 Q0 MARCO_25_1019464116-1 28 87.956308 hybrid +143_1-3 Q0 MARCO_15_1889614341-1 29 87.949308 hybrid +143_1-3 Q0 MARCO_45_1174402691-3 30 87.948908 hybrid +143_1-3 Q0 MARCO_48_1914459474-1 31 87.942358 hybrid +143_1-3 Q0 MARCO_13_697608169-2 32 87.939816 hybrid +143_1-3 Q0 MARCO_11_867333174-5 33 87.934408 hybrid +143_1-3 Q0 MARCO_13_980360380-16 34 87.932308 hybrid +143_1-3 Q0 MARCO_41_291470521-5 35 87.931835 hybrid +143_1-3 Q0 MARCO_49_1549997107-7 36 87.924058 hybrid +143_1-3 Q0 MARCO_01_1029544932-18 37 87.921444 hybrid +143_1-3 Q0 MARCO_04_164473184-3 38 87.918858 hybrid +143_1-3 Q0 MARCO_53_1216669344-282 39 87.905008 hybrid +143_1-3 Q0 MARCO_17_1928557765-13 40 87.904469 hybrid +143_1-3 Q0 MARCO_14_1284117889-15 41 87.896958 hybrid +143_1-3 Q0 MARCO_53_1216669344-221 42 87.893758 hybrid +143_1-3 Q0 KILT_3049649-2 43 87.892910 hybrid +143_1-3 Q0 KILT_57038-3 44 87.880358 hybrid +143_1-3 Q0 MARCO_19_2507420365-13 45 87.875805 hybrid +143_1-3 Q0 MARCO_19_2507420365-11 46 87.875805 hybrid +143_1-3 Q0 MARCO_10_245673124-5 47 87.874458 hybrid +143_1-3 Q0 KILT_21422806-19 48 87.871456 hybrid +143_1-3 Q0 KILT_45526962-7 49 87.866619 hybrid +143_1-3 Q0 MARCO_06_1142913471-94 50 87.863262 hybrid +143_1-3 Q0 MARCO_23_1703943373-5 51 87.862808 hybrid +143_1-3 Q0 KILT_2394038-1 52 87.860858 hybrid +143_1-3 Q0 MARCO_28_563409084-3 53 87.860737 hybrid +143_1-3 Q0 MARCO_17_1928557765-7 54 87.852856 hybrid +143_1-3 Q0 KILT_364578-56 55 87.852058 hybrid +143_1-3 Q0 MARCO_45_1434659937-10 56 87.847773 hybrid +143_1-3 Q0 MARCO_19_2493277139-14 57 87.841816 hybrid +143_1-3 Q0 MARCO_24_781786007-8 58 87.828908 hybrid +143_1-3 Q0 MARCO_01_675153200-4 59 87.828008 hybrid +143_1-3 Q0 KILT_43100631-2 60 87.824458 hybrid +143_1-3 Q0 MARCO_19_2497021198-33 61 87.822353 hybrid +143_1-3 Q0 MARCO_14_705730197-5 62 87.821508 hybrid +143_1-3 Q0 MARCO_14_127408603-3 63 87.819668 hybrid +143_1-3 Q0 MARCO_19_2552076513-4 64 87.819088 hybrid +143_1-3 Q0 MARCO_19_2491325369-32 65 87.818630 hybrid +143_1-3 Q0 MARCO_07_190223914-3 66 87.818458 hybrid +143_1-3 Q0 KILT_42836571-3 67 87.817758 hybrid +143_1-3 Q0 MARCO_13_697608169-3 68 87.816608 hybrid +143_1-3 Q0 MARCO_03_1624164383-1 69 87.799508 hybrid +143_1-3 Q0 MARCO_04_638623228-1 70 87.798008 hybrid +143_1-3 Q0 MARCO_03_1789864147-1 71 87.797308 hybrid +143_1-3 Q0 MARCO_40_420034335-25 72 87.797108 hybrid +143_1-3 Q0 KILT_15619869-2 73 87.794658 hybrid +143_1-3 Q0 MARCO_44_829590771-11 74 87.794458 hybrid +143_1-3 Q0 KILT_2964862-7 75 87.784687 hybrid +143_1-3 Q0 MARCO_44_623736186-5 76 87.777172 hybrid +143_1-3 Q0 MARCO_03_138245845-1 77 87.769608 hybrid +143_1-3 Q0 MARCO_03_1794517528-1 78 87.768758 hybrid +143_1-3 Q0 MARCO_26_1839264047-5 79 87.767008 hybrid +143_1-3 Q0 MARCO_44_624428239-4 80 87.766689 hybrid +143_1-3 Q0 MARCO_29_758563114-2 81 87.766408 hybrid +143_1-3 Q0 MARCO_04_379700185-22 82 87.765958 hybrid +143_1-3 Q0 MARCO_50_2592748420-8 83 87.763858 hybrid +143_1-3 Q0 MARCO_19_2510724116-14 84 87.762691 hybrid +143_1-3 Q0 MARCO_19_2491950523-13 85 87.762691 hybrid +143_1-3 Q0 MARCO_25_1031256445-1 86 87.762158 hybrid +143_1-3 Q0 MARCO_37_71324474-89 87 87.761311 hybrid +143_1-3 Q0 KILT_7235622-24 88 87.760441 hybrid +143_1-3 Q0 KILT_1297457-4 89 87.751759 hybrid +143_1-3 Q0 MARCO_00_655538424-16 90 87.751458 hybrid +143_1-3 Q0 MARCO_19_2485043099-38 91 87.749737 hybrid +143_1-3 Q0 MARCO_17_434176964-64 92 87.737682 hybrid +143_1-3 Q0 MARCO_04_392775502-21 93 87.736558 hybrid +143_1-3 Q0 MARCO_19_2503436333-17 94 87.735760 hybrid +143_1-3 Q0 MARCO_01_829618755-29 95 87.735729 hybrid +143_1-3 Q0 MARCO_50_2496250285-7 96 87.735676 hybrid +143_1-3 Q0 MARCO_45_876142269-2 97 87.735508 hybrid +143_1-3 Q0 MARCO_33_863966135-1 98 87.733458 hybrid +143_1-3 Q0 MARCO_57_1273579679-2 99 87.732578 hybrid +143_1-3 Q0 MARCO_12_962977832-8 100 87.730518 hybrid +143_1-5 Q0 MARCO_30_1754924467-9 1 88.254974 hybrid +143_1-5 Q0 MARCO_36_839237348-4 2 88.015691 hybrid +143_1-5 Q0 MARCO_37_257551387-2 3 87.765248 hybrid +143_1-5 Q0 MARCO_36_839920756-4 4 87.680287 hybrid +143_1-5 Q0 MARCO_44_51723768-4 5 87.600425 hybrid +143_1-5 Q0 MARCO_40_274248920-110 6 87.542249 hybrid +143_1-5 Q0 MARCO_40_265738671-23 7 87.535375 hybrid +143_1-5 Q0 MARCO_18_1313902892-12 8 87.497678 hybrid +143_1-5 Q0 MARCO_24_1094783790-2 9 87.478975 hybrid +143_1-5 Q0 MARCO_48_417853656-6 10 87.447325 hybrid +143_1-5 Q0 MARCO_54_319242251-7 11 87.443059 hybrid +143_1-5 Q0 MARCO_37_268933100-2 12 87.426825 hybrid +143_1-5 Q0 MARCO_36_258567781-4 13 87.372674 hybrid +143_1-5 Q0 MARCO_36_839237348-5 14 87.360127 hybrid +143_1-5 Q0 MARCO_39_1436316514-1 15 87.344425 hybrid +143_1-5 Q0 MARCO_33_1367395824-11 16 87.343524 hybrid +143_1-5 Q0 MARCO_32_762138222-3 17 87.334554 hybrid +143_1-5 Q0 MARCO_24_1911131524-3 18 87.329419 hybrid +143_1-5 Q0 MARCO_26_1061461405-2 19 87.316152 hybrid +143_1-5 Q0 MARCO_54_290673059-10 20 87.313175 hybrid +143_1-5 Q0 MARCO_43_510056228-19 21 87.287374 hybrid +143_1-5 Q0 MARCO_40_274248920-37 22 87.244275 hybrid +143_1-5 Q0 MARCO_28_338550826-12 23 87.208241 hybrid +143_1-5 Q0 MARCO_56_1002091853-3 24 87.203125 hybrid +143_1-5 Q0 MARCO_48_1598628471-6 25 87.186116 hybrid +143_1-5 Q0 MARCO_37_71324474-89 26 87.183034 hybrid +143_1-5 Q0 MARCO_51_1439694472-2 27 87.163324 hybrid +143_1-5 Q0 MARCO_50_845218021-8 28 87.160874 hybrid +143_1-5 Q0 MARCO_40_316139621-192 29 87.151021 hybrid +143_1-5 Q0 MARCO_48_417869836-5 30 87.148025 hybrid +143_1-5 Q0 MARCO_24_1050508445-21 31 87.140075 hybrid +143_1-5 Q0 MARCO_51_184011502-6 32 87.137525 hybrid +143_1-5 Q0 MARCO_07_1253796222-11 33 87.126273 hybrid +143_1-5 Q0 MARCO_56_796830399-2 34 87.123324 hybrid +143_1-5 Q0 MARCO_33_1375764492-3 35 87.120725 hybrid +143_1-5 Q0 MARCO_02_1759175683-1 36 87.114524 hybrid +143_1-5 Q0 MARCO_20_1371938149-21 37 87.105675 hybrid +143_1-5 Q0 MARCO_27_586060148-22 38 87.104726 hybrid +143_1-5 Q0 KILT_2964862-4 39 87.094724 hybrid +143_1-5 Q0 MARCO_48_1598615957-4 40 87.093389 hybrid +143_1-5 Q0 MARCO_34_1720030514-4 41 87.073049 hybrid +143_1-5 Q0 MARCO_43_510056228-15 42 87.061924 hybrid +143_1-5 Q0 MARCO_56_1005279037-3 43 87.057775 hybrid +143_1-5 Q0 MARCO_56_904869923-3 44 87.052922 hybrid +143_1-5 Q0 MARCO_13_795880999-1 45 87.050168 hybrid +143_1-5 Q0 MARCO_13_960110949-9 46 87.045575 hybrid +143_1-5 Q0 MARCO_31_458509713-19 47 87.037274 hybrid +143_1-5 Q0 MARCO_47_980370782-4 48 87.029523 hybrid +143_1-5 Q0 MARCO_43_510056228-12 49 87.029025 hybrid +143_1-5 Q0 MARCO_41_807799926-1 50 87.027225 hybrid +143_1-5 Q0 MARCO_22_992740285-2 51 87.025311 hybrid +143_1-5 Q0 MARCO_30_167021994-2 52 87.022274 hybrid +143_1-5 Q0 MARCO_28_604730029-2 53 87.021174 hybrid +143_1-5 Q0 MARCO_13_798486522-1 54 87.020673 hybrid +143_1-5 Q0 MARCO_56_1000305341-22 55 87.007874 hybrid +143_1-5 Q0 MARCO_15_624338736-35 56 87.003850 hybrid +143_1-5 Q0 MARCO_35_1469847018-2 57 86.999402 hybrid +143_1-5 Q0 MARCO_33_1367395824-18 58 86.996125 hybrid +143_1-5 Q0 MARCO_01_1034490048-173 59 86.993482 hybrid +143_1-5 Q0 MARCO_33_1367395824-14 60 86.992975 hybrid +143_1-5 Q0 MARCO_33_1327755819-4 61 86.987774 hybrid +143_1-5 Q0 MARCO_24_1910877220-2 62 86.982663 hybrid +143_1-5 Q0 MARCO_23_1277930196-1 63 86.979169 hybrid +143_1-5 Q0 MARCO_27_207237073-2 64 86.974515 hybrid +143_1-5 Q0 MARCO_24_1048940224-2 65 86.973774 hybrid +143_1-5 Q0 MARCO_14_1772314504-10 66 86.970609 hybrid +143_1-5 Q0 MARCO_47_1377756535-1 67 86.963624 hybrid +143_1-5 Q0 MARCO_47_614323063-24 68 86.956574 hybrid +143_1-5 Q0 KILT_2964862-7 69 86.953366 hybrid +143_1-5 Q0 MARCO_20_1414337456-4 70 86.951225 hybrid +143_1-5 Q0 MARCO_43_510056228-7 71 86.947175 hybrid +143_1-5 Q0 MARCO_48_1293665084-2 72 86.934789 hybrid +143_1-5 Q0 MARCO_48_1598029286-8 73 86.934453 hybrid +143_1-5 Q0 MARCO_27_1643809758-5 74 86.928319 hybrid +143_1-5 Q0 MARCO_00_1699330259-565 75 86.927275 hybrid +143_1-5 Q0 KILT_921278-14 76 86.917274 hybrid +143_1-5 Q0 MARCO_40_610379159-5 77 86.916125 hybrid +143_1-5 Q0 MARCO_10_1145633468-3 78 86.913594 hybrid +143_1-5 Q0 MARCO_48_1597910815-5 79 86.912992 hybrid +143_1-5 Q0 MARCO_40_272761218-201 80 86.901013 hybrid +143_1-5 Q0 MARCO_28_513161199-14 81 86.898025 hybrid +143_1-5 Q0 MARCO_47_987353377-4 82 86.892087 hybrid +143_1-5 Q0 MARCO_30_1781494900-1 83 86.888165 hybrid +143_1-5 Q0 MARCO_30_1803731405-6 84 86.884325 hybrid +143_1-5 Q0 MARCO_53_740831554-4 85 86.880841 hybrid +143_1-5 Q0 MARCO_53_375654980-5 86 86.878075 hybrid +143_1-5 Q0 MARCO_44_1953438940-4 87 86.874074 hybrid +143_1-5 Q0 MARCO_28_655637251-3 88 86.869863 hybrid +143_1-5 Q0 MARCO_56_1000305341-21 89 86.868074 hybrid +143_1-5 Q0 MARCO_36_28162569-4 90 86.866254 hybrid +143_1-5 Q0 MARCO_50_1442581649-1 91 86.863706 hybrid +143_1-5 Q0 MARCO_26_1880487096-4 92 86.861525 hybrid +143_1-5 Q0 MARCO_31_455783692-2 93 86.859525 hybrid +143_1-5 Q0 MARCO_57_1274444085-4 94 86.859014 hybrid +143_1-5 Q0 MARCO_23_1182034884-3 95 86.857174 hybrid +143_1-5 Q0 MARCO_35_305195648-4 96 86.856069 hybrid +143_1-5 Q0 MARCO_19_2655252071-4 97 86.854525 hybrid +143_1-5 Q0 MARCO_23_1278383414-1 98 86.850133 hybrid +143_1-5 Q0 MARCO_40_316139621-218 99 86.849538 hybrid +143_1-5 Q0 MARCO_40_667182643-1 100 86.847058 hybrid +143_1-7 Q0 MARCO_36_839920756-4 1 88.802348 hybrid +143_1-7 Q0 MARCO_50_1897370819-16 2 88.590981 hybrid +143_1-7 Q0 KILT_2964862-7 3 88.537761 hybrid +143_1-7 Q0 MARCO_40_1166790196-3 4 88.374132 hybrid +143_1-7 Q0 MARCO_36_839237348-5 5 88.283801 hybrid +143_1-7 Q0 MARCO_27_1292101712-3 6 88.265282 hybrid +143_1-7 Q0 MARCO_06_1833576180-16 7 88.246632 hybrid +143_1-7 Q0 MARCO_02_1444615956-4 8 88.188131 hybrid +143_1-7 Q0 MARCO_27_1292256081-3 9 88.188131 hybrid +143_1-7 Q0 MARCO_27_1292446299-4 10 88.188130 hybrid +143_1-7 Q0 MARCO_47_1181304031-9 11 88.127932 hybrid +143_1-7 Q0 MARCO_36_839237348-4 12 88.123958 hybrid +143_1-7 Q0 MARCO_02_1444586713-2 13 88.123082 hybrid +143_1-7 Q0 MARCO_27_1292093865-5 14 88.123081 hybrid +143_1-7 Q0 MARCO_27_1292261349-5 15 88.123081 hybrid +143_1-7 Q0 MARCO_27_1292270650-5 16 88.123080 hybrid +143_1-7 Q0 MARCO_56_1001826133-4 17 88.120582 hybrid +143_1-7 Q0 MARCO_02_1444859871-7 18 88.106781 hybrid +143_1-7 Q0 MARCO_27_1292440845-3 19 88.106781 hybrid +143_1-7 Q0 MARCO_44_1555608026-2 20 88.085981 hybrid +143_1-7 Q0 MARCO_35_305195648-4 21 88.085269 hybrid +143_1-7 Q0 MARCO_27_1292125742-3 22 88.070432 hybrid +143_1-7 Q0 MARCO_35_22431210-5 23 88.057757 hybrid +143_1-7 Q0 MARCO_40_605380166-1 24 88.057682 hybrid +143_1-7 Q0 MARCO_09_877956354-4 25 88.052782 hybrid +143_1-7 Q0 MARCO_51_883170522-4 26 87.968731 hybrid +143_1-7 Q0 MARCO_19_2497924734-15 27 87.967082 hybrid +143_1-7 Q0 MARCO_02_1444501388-3 28 87.939931 hybrid +143_1-7 Q0 MARCO_35_1470109302-3 29 87.906382 hybrid +143_1-7 Q0 MARCO_28_1134605989-2 30 87.892282 hybrid +143_1-7 Q0 MARCO_27_586060148-22 31 87.890437 hybrid +143_1-7 Q0 MARCO_07_292622183-2 32 87.887231 hybrid +143_1-7 Q0 MARCO_01_930142702-3 33 87.887032 hybrid +143_1-7 Q0 MARCO_02_1444455083-11 34 87.880231 hybrid +143_1-7 Q0 MARCO_02_1444576699-3 35 87.880231 hybrid +143_1-7 Q0 MARCO_27_1292059270-8 36 87.880230 hybrid +143_1-7 Q0 MARCO_27_1292277622-3 37 87.880230 hybrid +143_1-7 Q0 MARCO_27_1292282494-4 38 87.880229 hybrid +143_1-7 Q0 MARCO_36_28162569-4 39 87.865893 hybrid +143_1-7 Q0 MARCO_40_333010660-10 40 87.861064 hybrid +143_1-7 Q0 MARCO_32_1773116803-7 41 87.857282 hybrid +143_1-7 Q0 MARCO_25_1055351809-3 42 87.851732 hybrid +143_1-7 Q0 MARCO_06_10898394-1 43 87.850932 hybrid +143_1-7 Q0 MARCO_59_542136689-14 44 87.844282 hybrid +143_1-7 Q0 MARCO_45_801547507-1 45 87.836182 hybrid +143_1-7 Q0 MARCO_57_1355044287-5 46 87.814182 hybrid +143_1-7 Q0 MARCO_40_1509835109-11 47 87.801931 hybrid +143_1-7 Q0 MARCO_33_1283607636-8 48 87.790632 hybrid +143_1-7 Q0 MARCO_39_1436326863-5 49 87.779881 hybrid +143_1-7 Q0 MARCO_45_1433057985-8 50 87.776132 hybrid +143_1-7 Q0 MARCO_49_27352257-2 51 87.774714 hybrid +143_1-7 Q0 MARCO_38_172388574-1 52 87.774482 hybrid +143_1-7 Q0 MARCO_30_1722718213-5 53 87.773481 hybrid +143_1-7 Q0 MARCO_50_665146265-2 54 87.767382 hybrid +143_1-7 Q0 MARCO_57_1274253151-4 55 87.757031 hybrid +143_1-7 Q0 MARCO_35_85655095-4 56 87.731781 hybrid +143_1-7 Q0 MARCO_01_1153593570-2 57 87.728881 hybrid +143_1-7 Q0 MARCO_08_740080442-11 58 87.722231 hybrid +143_1-7 Q0 MARCO_50_1517632184-27 59 87.721832 hybrid +143_1-7 Q0 MARCO_40_274248920-110 60 87.709064 hybrid +143_1-7 Q0 MARCO_47_1378068752-1 61 87.696032 hybrid +143_1-7 Q0 MARCO_10_1311533540-12 62 87.695632 hybrid +143_1-7 Q0 MARCO_36_28162569-1 63 87.695578 hybrid +143_1-7 Q0 MARCO_35_22431210-4 64 87.693110 hybrid +143_1-7 Q0 MARCO_19_2555167830-3 65 87.691737 hybrid +143_1-7 Q0 MARCO_29_1537123869-6 66 87.681181 hybrid +143_1-7 Q0 MARCO_51_140925506-4 67 87.667282 hybrid +143_1-7 Q0 MARCO_59_777494467-3 68 87.664172 hybrid +143_1-7 Q0 MARCO_26_164255046-217 69 87.663669 hybrid +143_1-7 Q0 MARCO_19_2480702022-42 70 87.661532 hybrid +143_1-7 Q0 MARCO_47_1180439686-1 71 87.651582 hybrid +143_1-7 Q0 MARCO_35_305195648-2 72 87.634082 hybrid +143_1-7 Q0 MARCO_33_1382673312-3 73 87.630882 hybrid +143_1-7 Q0 MARCO_36_842143841-6 74 87.629275 hybrid +143_1-7 Q0 MARCO_14_1467357241-6 75 87.628432 hybrid +143_1-7 Q0 MARCO_51_535288776-1 76 87.627882 hybrid +143_1-7 Q0 MARCO_39_923445251-2 77 87.626232 hybrid +143_1-7 Q0 MARCO_03_950797002-3 78 87.620882 hybrid +143_1-7 Q0 MARCO_33_505962289-2 79 87.618495 hybrid +143_1-7 Q0 MARCO_22_992740285-2 80 87.617633 hybrid +143_1-7 Q0 MARCO_13_697608169-2 81 87.617389 hybrid +143_1-7 Q0 MARCO_37_234714619-3 82 87.616982 hybrid +143_1-7 Q0 MARCO_06_10866555-1 83 87.616082 hybrid +143_1-7 Q0 MARCO_48_265798626-1 84 87.611281 hybrid +143_1-7 Q0 MARCO_35_27573402-4 85 87.597132 hybrid +143_1-7 Q0 MARCO_06_11119815-1 86 87.590382 hybrid +143_1-7 Q0 MARCO_28_109244999-2 87 87.590082 hybrid +143_1-7 Q0 MARCO_32_538191260-17 88 87.584732 hybrid +143_1-7 Q0 MARCO_48_265798626-2 89 87.584082 hybrid +143_1-7 Q0 MARCO_41_698610915-8 90 87.582582 hybrid +143_1-7 Q0 MARCO_47_1180234271-4 91 87.581182 hybrid +143_1-7 Q0 MARCO_40_1262214946-2 92 87.572731 hybrid +143_1-7 Q0 MARCO_05_452612308-1 93 87.572566 hybrid +143_1-7 Q0 MARCO_57_1274444085-4 94 87.571200 hybrid +143_1-7 Q0 MARCO_47_1182585013-11 95 87.570832 hybrid +143_1-7 Q0 KILT_21954995-1 96 87.568982 hybrid +143_1-7 Q0 MARCO_27_586060148-18 97 87.568606 hybrid +143_1-7 Q0 MARCO_01_832262097-27 98 87.563235 hybrid +143_1-7 Q0 MARCO_54_319242251-7 99 87.562068 hybrid +143_1-7 Q0 MARCO_33_1374093562-6 100 87.557581 hybrid +143_1-9 Q0 MARCO_03_1767519069-1 1 91.000000 hybrid +143_1-9 Q0 MARCO_11_1466052621-4 2 90.978017 hybrid +143_1-9 Q0 MARCO_12_1868552613-1 3 90.972920 hybrid +143_1-9 Q0 MARCO_50_1170105749-17 4 90.901914 hybrid +143_1-9 Q0 MARCO_11_1466052621-2 5 90.895253 hybrid +143_1-9 Q0 MARCO_50_1073343936-19 6 90.755093 hybrid +143_1-9 Q0 MARCO_11_1466052621-1 7 90.753087 hybrid +143_1-9 Q0 MARCO_49_1322549329-36 8 90.648976 hybrid +143_1-9 Q0 MARCO_49_1322549329-13 9 90.639691 hybrid +143_1-9 Q0 MARCO_16_2992801238-4 10 90.628713 hybrid +143_1-9 Q0 MARCO_50_773630521-27 11 90.543193 hybrid +143_1-9 Q0 MARCO_16_2992801238-36 12 90.509068 hybrid +143_1-9 Q0 MARCO_50_2445817136-17 13 90.486242 hybrid +143_1-9 Q0 MARCO_16_2992735066-38 14 90.431790 hybrid +143_1-9 Q0 MARCO_16_2992801238-35 15 90.430211 hybrid +143_1-9 Q0 MARCO_50_1170153005-11 16 90.421178 hybrid +143_1-9 Q0 MARCO_05_425622441-155 17 90.394109 hybrid +143_1-9 Q0 KILT_1544200-9 18 90.388143 hybrid +143_1-9 Q0 MARCO_50_1283041584-12 19 90.381843 hybrid +143_1-9 Q0 MARCO_44_834533184-9 20 90.376193 hybrid +143_1-9 Q0 MARCO_20_1123152510-3 21 90.370633 hybrid +143_1-9 Q0 MARCO_18_2863955559-8 22 90.361143 hybrid +143_1-9 Q0 MARCO_50_1447842128-24 23 90.262486 hybrid +143_1-9 Q0 MARCO_50_1664099152-17 24 90.262441 hybrid +143_1-9 Q0 MARCO_50_1170105749-16 25 90.261464 hybrid +143_1-9 Q0 MARCO_24_1719660578-6 26 90.229881 hybrid +143_1-9 Q0 MARCO_09_1369257847-1 27 90.220341 hybrid +143_1-9 Q0 MARCO_16_2992801238-43 28 90.176702 hybrid +143_1-9 Q0 MARCO_17_1566326486-5 29 90.170443 hybrid +143_1-9 Q0 MARCO_50_1170105749-13 30 90.160008 hybrid +143_1-9 Q0 MARCO_25_1444907799-11 31 90.137799 hybrid +143_1-9 Q0 MARCO_49_1322549329-5 32 90.128827 hybrid +143_1-9 Q0 MARCO_22_1314742990-2 33 90.127255 hybrid +143_1-9 Q0 MARCO_50_1664099152-16 34 90.125340 hybrid +143_1-9 Q0 MARCO_11_1466052621-3 35 90.111104 hybrid +143_1-9 Q0 MARCO_09_1337153585-3 36 90.088796 hybrid +143_1-9 Q0 MARCO_09_1337153585-5 37 90.088796 hybrid +143_1-9 Q0 KILT_37412-4 38 90.087893 hybrid +143_1-9 Q0 MARCO_49_1322549329-1 39 90.087239 hybrid +143_1-9 Q0 MARCO_49_1322549329-16 40 90.084859 hybrid +143_1-9 Q0 MARCO_05_425622441-156 41 90.072583 hybrid +143_1-9 Q0 MARCO_16_2992801238-3 42 90.058011 hybrid +143_1-9 Q0 MARCO_16_2992801238-8 43 90.053601 hybrid +143_1-9 Q0 MARCO_55_1590818232-1 44 90.045843 hybrid +143_1-9 Q0 MARCO_17_4053241815-12 45 90.044592 hybrid +143_1-9 Q0 MARCO_58_1508989598-3 46 90.038663 hybrid +143_1-9 Q0 MARCO_50_1170105749-32 47 90.036603 hybrid +143_1-9 Q0 MARCO_53_848594339-3 48 90.036092 hybrid +143_1-9 Q0 MARCO_16_2987728684-7 49 90.032582 hybrid +143_1-9 Q0 KILT_19097669-37 50 90.031292 hybrid +143_1-9 Q0 MARCO_50_1170153005-7 51 90.019094 hybrid +143_1-9 Q0 MARCO_30_1595305934-3 52 90.014600 hybrid +143_1-9 Q0 MARCO_16_616370407-35 53 90.013493 hybrid +143_1-9 Q0 MARCO_00_885198634-16 54 90.012334 hybrid +143_1-9 Q0 MARCO_35_17834778-3 55 90.010770 hybrid +143_1-9 Q0 MARCO_50_1442936026-4 56 90.008634 hybrid +143_1-9 Q0 MARCO_44_54717487-6 57 90.000905 hybrid +143_1-9 Q0 MARCO_49_1322549329-2 58 89.993039 hybrid +143_1-9 Q0 MARCO_48_1743267438-5 59 89.986051 hybrid +143_1-9 Q0 MARCO_50_1931110882-10 60 89.984212 hybrid +143_1-9 Q0 MARCO_49_1322549329-25 61 89.978162 hybrid +143_1-9 Q0 MARCO_17_4053241815-22 62 89.975842 hybrid +143_1-9 Q0 MARCO_49_1322549329-10 63 89.969777 hybrid +143_1-9 Q0 MARCO_09_1337153585-7 64 89.962094 hybrid +143_1-9 Q0 MARCO_16_1666011119-103 65 89.955833 hybrid +143_1-9 Q0 MARCO_20_605849543-4 66 89.951293 hybrid +143_1-9 Q0 MARCO_49_1322549329-4 67 89.951093 hybrid +143_1-9 Q0 MARCO_50_2493123400-28 68 89.946813 hybrid +143_1-9 Q0 MARCO_16_2992801238-15 69 89.946218 hybrid +143_1-9 Q0 MARCO_05_425622441-159 70 89.936902 hybrid +143_1-9 Q0 KILT_15546705-1 71 89.916092 hybrid +143_1-9 Q0 MARCO_49_1322549329-27 72 89.910558 hybrid +143_1-9 Q0 MARCO_58_1508486791-1 73 89.906319 hybrid +143_1-9 Q0 MARCO_01_548968781-10 74 89.898842 hybrid +143_1-9 Q0 MARCO_49_1322549329-11 75 89.891599 hybrid +143_1-9 Q0 MARCO_17_3703353004-2 76 89.890593 hybrid +143_1-9 Q0 MARCO_55_1703733697-1 77 89.888898 hybrid +143_1-9 Q0 MARCO_29_1548247658-2 78 89.887793 hybrid +143_1-9 Q0 MARCO_28_324768197-1 79 89.887093 hybrid +143_1-9 Q0 MARCO_30_894043860-3 80 89.883939 hybrid +143_1-9 Q0 MARCO_11_1468726849-2 81 89.883542 hybrid +143_1-9 Q0 MARCO_03_1767358800-1 82 89.869534 hybrid +143_1-9 Q0 MARCO_27_1334332137-1 83 89.864062 hybrid +143_1-9 Q0 KILT_2980180-14 84 89.853353 hybrid +143_1-9 Q0 MARCO_31_899967924-1 85 89.852994 hybrid +143_1-9 Q0 MARCO_18_4238618079-5 86 89.847843 hybrid +143_1-9 Q0 MARCO_16_2992801238-7 87 89.846578 hybrid +143_1-9 Q0 MARCO_50_1433240437-82 88 89.843709 hybrid +143_1-9 Q0 MARCO_09_1369257847-2 89 89.833478 hybrid +143_1-9 Q0 MARCO_09_1369257847-4 90 89.833478 hybrid +143_1-9 Q0 MARCO_50_1282874067-13 91 89.832293 hybrid +143_1-9 Q0 MARCO_50_1447842128-18 92 89.823819 hybrid +143_1-9 Q0 KILT_27784417-5 93 89.822370 hybrid +143_1-9 Q0 MARCO_18_1597752365-4 94 89.821642 hybrid +143_1-9 Q0 MARCO_16_2992801238-51 95 89.817296 hybrid +143_1-9 Q0 MARCO_13_303403819-16 96 89.809093 hybrid +143_1-9 Q0 MARCO_50_1447842128-16 97 89.807553 hybrid +143_1-9 Q0 MARCO_17_464651031-32 98 89.804492 hybrid +143_1-9 Q0 MARCO_16_2992801238-31 99 89.802304 hybrid +143_1-9 Q0 MARCO_57_1266958154-2 100 89.796056 hybrid +144_1-1 Q0 MARCO_49_32079945-5 1 87.846017 hybrid +144_1-1 Q0 MARCO_14_1634020448-14 2 87.772388 hybrid +144_1-1 Q0 MARCO_09_1759309645-3 3 87.630589 hybrid +144_1-1 Q0 MARCO_12_677956436-2 4 87.535239 hybrid +144_1-1 Q0 MARCO_13_1122427952-5 5 87.402612 hybrid +144_1-1 Q0 MARCO_10_974621470-14 6 87.387589 hybrid +144_1-1 Q0 MARCO_21_915017138-1 7 87.386189 hybrid +144_1-1 Q0 MARCO_03_1800345131-2 8 87.384139 hybrid +144_1-1 Q0 MARCO_29_1180808781-1 9 87.379738 hybrid +144_1-1 Q0 MARCO_29_1635161166-3 10 87.367239 hybrid +144_1-1 Q0 MARCO_41_2136117154-1 11 87.344489 hybrid +144_1-1 Q0 MARCO_24_612999146-1 12 87.320388 hybrid +144_1-1 Q0 MARCO_03_1785354231-4 13 87.307488 hybrid +144_1-1 Q0 MARCO_55_764944624-7 14 87.305230 hybrid +144_1-1 Q0 MARCO_19_2647113719-1 15 87.274838 hybrid +144_1-1 Q0 MARCO_40_263496997-20 16 87.240769 hybrid +144_1-1 Q0 MARCO_20_1583730402-17 17 87.225389 hybrid +144_1-1 Q0 MARCO_42_864833888-5 18 87.220388 hybrid +144_1-1 Q0 MARCO_08_80931565-6 19 87.211617 hybrid +144_1-1 Q0 MARCO_42_393639436-4 20 87.205189 hybrid +144_1-1 Q0 MARCO_37_1183291072-90 21 87.199243 hybrid +144_1-1 Q0 MARCO_03_735338062-1 22 87.195088 hybrid +144_1-1 Q0 MARCO_04_439774715-13 23 87.190689 hybrid +144_1-1 Q0 MARCO_34_50005813-5 24 87.189639 hybrid +144_1-1 Q0 MARCO_04_1054743032-20 25 87.187837 hybrid +144_1-1 Q0 MARCO_37_1026430625-1 26 87.179039 hybrid +144_1-1 Q0 MARCO_36_1065159467-7 27 87.178384 hybrid +144_1-1 Q0 MARCO_42_387177828-4 28 87.177888 hybrid +144_1-1 Q0 MARCO_04_1024625159-1 29 87.166539 hybrid +144_1-1 Q0 MARCO_26_368423509-13 30 87.161912 hybrid +144_1-1 Q0 MARCO_54_179437686-7 31 87.158624 hybrid +144_1-1 Q0 MARCO_26_897754916-1 32 87.155788 hybrid +144_1-1 Q0 MARCO_42_384007923-2 33 87.146139 hybrid +144_1-1 Q0 MARCO_12_325986257-20 34 87.146035 hybrid +144_1-1 Q0 MARCO_40_1608309254-1 35 87.143939 hybrid +144_1-1 Q0 MARCO_04_1054470175-23 36 87.126954 hybrid +144_1-1 Q0 MARCO_53_1408176924-2 37 87.123292 hybrid +144_1-1 Q0 KILT_1088143-13 38 87.121964 hybrid +144_1-1 Q0 MARCO_49_966540582-4 39 87.117997 hybrid +144_1-1 Q0 MARCO_42_400159690-3 40 87.116589 hybrid +144_1-1 Q0 MARCO_26_368423509-57 41 87.115800 hybrid +144_1-1 Q0 MARCO_41_1819246096-4 42 87.112695 hybrid +144_1-1 Q0 MARCO_35_1314038311-1 43 87.109138 hybrid +144_1-1 Q0 MARCO_29_776727850-4 44 87.108041 hybrid +144_1-1 Q0 MARCO_22_562148650-1 45 87.104239 hybrid +144_1-1 Q0 MARCO_36_1077059542-16 46 87.096989 hybrid +144_1-1 Q0 MARCO_15_780402076-3 47 87.084689 hybrid +144_1-1 Q0 MARCO_50_703076190-1 48 87.079888 hybrid +144_1-1 Q0 MARCO_34_1328672837-6 49 87.073689 hybrid +144_1-1 Q0 MARCO_57_116774049-1 50 87.066888 hybrid +144_1-1 Q0 MARCO_06_1868057202-22 51 87.065400 hybrid +144_1-1 Q0 MARCO_04_355630283-13 52 87.050689 hybrid +144_1-1 Q0 MARCO_35_1314027140-1 53 87.047938 hybrid +144_1-1 Q0 MARCO_53_1514931852-2 54 87.041802 hybrid +144_1-1 Q0 MARCO_35_306070714-1 55 87.039330 hybrid +144_1-1 Q0 MARCO_41_713690320-1 56 87.037289 hybrid +144_1-1 Q0 MARCO_15_1918598532-2 57 87.031989 hybrid +144_1-1 Q0 MARCO_21_582435469-1 58 87.030689 hybrid +144_1-1 Q0 MARCO_29_776682642-5 59 87.029160 hybrid +144_1-1 Q0 MARCO_43_70712485-8 60 87.023019 hybrid +144_1-1 Q0 MARCO_45_548797813-8 61 87.021691 hybrid +144_1-1 Q0 MARCO_15_1918615594-3 62 87.016189 hybrid +144_1-1 Q0 MARCO_07_477563596-15 63 87.005265 hybrid +144_1-1 Q0 MARCO_27_948321933-4 64 87.002139 hybrid +144_1-1 Q0 MARCO_04_1278251348-1 65 86.996089 hybrid +144_1-1 Q0 MARCO_42_385701921-4 66 86.990939 hybrid +144_1-1 Q0 MARCO_32_113746098-13 67 86.986886 hybrid +144_1-1 Q0 MARCO_02_1357388163-9 68 86.986390 hybrid +144_1-1 Q0 MARCO_33_1314185920-3 69 86.970864 hybrid +144_1-1 Q0 MARCO_45_548782946-1 70 86.967957 hybrid +144_1-1 Q0 MARCO_40_1530841983-1 71 86.967439 hybrid +144_1-1 Q0 MARCO_02_1357388163-10 72 86.954476 hybrid +144_1-1 Q0 MARCO_12_677956436-8 73 86.944939 hybrid +144_1-1 Q0 MARCO_50_1414536119-6 74 86.943780 hybrid +144_1-1 Q0 MARCO_23_942400411-4 75 86.938882 hybrid +144_1-1 Q0 MARCO_46_707059343-3 76 86.938043 hybrid +144_1-1 Q0 MARCO_42_400094660-4 77 86.937438 hybrid +144_1-1 Q0 MARCO_41_913531454-29 78 86.936891 hybrid +144_1-1 Q0 MARCO_49_1167411084-11 79 86.933946 hybrid +144_1-1 Q0 MARCO_37_644034222-1 80 86.926989 hybrid +144_1-1 Q0 MARCO_18_1801844598-8 81 86.926103 hybrid +144_1-1 Q0 MARCO_50_1931189531-2 82 86.920182 hybrid +144_1-1 Q0 MARCO_39_1364807673-5 83 86.905572 hybrid +144_1-1 Q0 MARCO_26_397996534-44 84 86.903108 hybrid +144_1-1 Q0 MARCO_26_371972620-48 85 86.901750 hybrid +144_1-1 Q0 MARCO_27_665797661-14 86 86.896238 hybrid +144_1-1 Q0 MARCO_36_307435493-5 87 86.890439 hybrid +144_1-1 Q0 KILT_1638840-26 88 86.888803 hybrid +144_1-1 Q0 MARCO_38_1747835845-2 89 86.882789 hybrid +144_1-1 Q0 MARCO_59_648890492-1 90 86.882238 hybrid +144_1-1 Q0 MARCO_06_1811405270-2 91 86.875339 hybrid +144_1-1 Q0 MARCO_42_402859664-4 92 86.874588 hybrid +144_1-1 Q0 MARCO_25_1315334932-2 93 86.872838 hybrid +144_1-1 Q0 MARCO_31_1554787666-4 94 86.870896 hybrid +144_1-1 Q0 MARCO_32_416936185-8 95 86.866639 hybrid +144_1-1 Q0 MARCO_40_324843366-40 96 86.865937 hybrid +144_1-1 Q0 MARCO_18_2141034807-2 97 86.864732 hybrid +144_1-1 Q0 MARCO_36_1065159467-8 98 86.860452 hybrid +144_1-1 Q0 MARCO_22_415321575-1 99 86.857688 hybrid +144_1-1 Q0 MARCO_32_764394676-40 100 86.854714 hybrid +144_1-3 Q0 MARCO_10_1622826223-1 1 92.820721 hybrid +144_1-3 Q0 MARCO_55_481900208-1 2 92.044371 hybrid +144_1-3 Q0 MARCO_40_1275785480-2 3 91.940216 hybrid +144_1-3 Q0 MARCO_52_1604550369-1 4 91.939156 hybrid +144_1-3 Q0 MARCO_37_1192498200-1 5 91.832770 hybrid +144_1-3 Q0 MARCO_18_3116878569-8 6 91.688492 hybrid +144_1-3 Q0 MARCO_52_1611685648-5 7 91.612370 hybrid +144_1-3 Q0 MARCO_36_600591729-1 8 91.553121 hybrid +144_1-3 Q0 MARCO_52_1611218176-12 9 91.549244 hybrid +144_1-3 Q0 MARCO_18_3116878569-16 10 91.539213 hybrid +144_1-3 Q0 KILT_1311283-12 11 91.391070 hybrid +144_1-3 Q0 MARCO_18_3116878569-42 12 91.347952 hybrid +144_1-3 Q0 MARCO_18_3115991036-15 13 91.319871 hybrid +144_1-3 Q0 MARCO_15_1918677929-3 14 91.316771 hybrid +144_1-3 Q0 MARCO_47_1515060083-8 15 91.300209 hybrid +144_1-3 Q0 MARCO_24_595898031-1 16 91.298671 hybrid +144_1-3 Q0 KILT_36716-1 17 91.278721 hybrid +144_1-3 Q0 MARCO_01_1437130646-41 18 91.265370 hybrid +144_1-3 Q0 MARCO_18_3116878569-1 19 91.168571 hybrid +144_1-3 Q0 MARCO_51_607329168-1 20 91.155921 hybrid +144_1-3 Q0 MARCO_45_1660487292-3 21 91.125971 hybrid +144_1-3 Q0 MARCO_50_1312951478-17 22 91.117371 hybrid +144_1-3 Q0 KILT_34666187-13 23 91.114921 hybrid +144_1-3 Q0 MARCO_41_2052806350-3 24 91.103921 hybrid +144_1-3 Q0 MARCO_43_1640931331-3 25 91.082520 hybrid +144_1-3 Q0 MARCO_16_2867492614-25 26 91.069271 hybrid +144_1-3 Q0 MARCO_01_686831562-14 27 91.059220 hybrid +144_1-3 Q0 MARCO_18_2311885906-3 28 91.038621 hybrid +144_1-3 Q0 MARCO_52_1611979994-4 29 91.036921 hybrid +144_1-3 Q0 MARCO_55_1247380471-3 30 91.026120 hybrid +144_1-3 Q0 MARCO_28_972935301-4 31 91.024470 hybrid +144_1-3 Q0 MARCO_52_1611676624-2 32 91.012621 hybrid +144_1-3 Q0 MARCO_18_3120209234-3 33 90.989671 hybrid +144_1-3 Q0 MARCO_16_3531944488-34 34 90.966321 hybrid +144_1-3 Q0 MARCO_52_1619575137-4 35 90.959970 hybrid +144_1-3 Q0 MARCO_24_1139122304-6 36 90.945889 hybrid +144_1-3 Q0 MARCO_18_3116878569-17 37 90.928452 hybrid +144_1-3 Q0 KILT_8664816-4 38 90.926970 hybrid +144_1-3 Q0 MARCO_52_1606191086-1 39 90.920021 hybrid +144_1-3 Q0 MARCO_35_1438388696-6 40 90.918720 hybrid +144_1-3 Q0 KILT_6385385-9 41 90.914821 hybrid +144_1-3 Q0 KILT_37910-5 42 90.909270 hybrid +144_1-3 Q0 MARCO_41_860914117-2 43 90.901721 hybrid +144_1-3 Q0 MARCO_39_1569621978-26 44 90.896902 hybrid +144_1-3 Q0 MARCO_17_4123255984-13 45 90.876020 hybrid +144_1-3 Q0 MARCO_24_595648379-1 46 90.846571 hybrid +144_1-3 Q0 MARCO_21_1370755966-12 47 90.829270 hybrid +144_1-3 Q0 MARCO_17_4036719909-46 48 90.819521 hybrid +144_1-3 Q0 MARCO_18_3122089436-19 49 90.816052 hybrid +144_1-3 Q0 MARCO_57_673503315-3 50 90.800220 hybrid +144_1-3 Q0 MARCO_01_1437130646-3 51 90.789121 hybrid +144_1-3 Q0 MARCO_01_686831562-15 52 90.788521 hybrid +144_1-3 Q0 MARCO_52_1605932689-3 53 90.777094 hybrid +144_1-3 Q0 MARCO_51_62921713-9 54 90.766670 hybrid +144_1-3 Q0 KILT_34666187-14 55 90.759221 hybrid +144_1-3 Q0 MARCO_30_575563641-6 56 90.757721 hybrid +144_1-3 Q0 MARCO_41_1178403892-18 57 90.752163 hybrid +144_1-3 Q0 MARCO_24_595648379-9 58 90.724871 hybrid +144_1-3 Q0 KILT_336014-1 59 90.724171 hybrid +144_1-3 Q0 MARCO_18_3121420914-35 60 90.715043 hybrid +144_1-3 Q0 MARCO_47_1512692415-7 61 90.706267 hybrid +144_1-3 Q0 MARCO_39_442496316-3 62 90.697371 hybrid +144_1-3 Q0 MARCO_21_1370755966-3 63 90.691670 hybrid +144_1-3 Q0 KILT_168239-4 64 90.690970 hybrid +144_1-3 Q0 MARCO_18_3116878569-4 65 90.690243 hybrid +144_1-3 Q0 MARCO_18_3119373597-9 66 90.687147 hybrid +144_1-3 Q0 MARCO_16_69991661-8 67 90.680221 hybrid +144_1-3 Q0 MARCO_34_1182835705-1 68 90.669921 hybrid +144_1-3 Q0 MARCO_36_850146522-3 69 90.665021 hybrid +144_1-3 Q0 MARCO_18_3115949394-18 70 90.664921 hybrid +144_1-3 Q0 KILT_1935077-8 71 90.661321 hybrid +144_1-3 Q0 KILT_8617105-12 72 90.658371 hybrid +144_1-3 Q0 MARCO_52_1611676624-1 73 90.655821 hybrid +144_1-3 Q0 MARCO_30_790149164-7 74 90.654370 hybrid +144_1-3 Q0 KILT_34666187-17 75 90.640071 hybrid +144_1-3 Q0 MARCO_50_968070383-27 76 90.630771 hybrid +144_1-3 Q0 MARCO_52_1619598857-5 77 90.623721 hybrid +144_1-3 Q0 MARCO_37_648931179-1 78 90.609321 hybrid +144_1-3 Q0 MARCO_33_1164612080-9 79 90.606821 hybrid +144_1-3 Q0 KILT_31406060-13 80 90.606171 hybrid +144_1-3 Q0 KILT_336014-5 81 90.600970 hybrid +144_1-3 Q0 MARCO_10_1622826223-4 82 90.598321 hybrid +144_1-3 Q0 KILT_2459800-2 83 90.592071 hybrid +144_1-3 Q0 KILT_34666187-6 84 90.579321 hybrid +144_1-3 Q0 MARCO_18_3116878569-21 85 90.562295 hybrid +144_1-3 Q0 MARCO_08_195608010-72 86 90.554721 hybrid +144_1-3 Q0 KILT_1935077-7 87 90.539970 hybrid +144_1-3 Q0 MARCO_25_1628277830-6 88 90.522020 hybrid +144_1-3 Q0 MARCO_15_1918663797-3 89 90.518821 hybrid +144_1-3 Q0 MARCO_47_1514525232-2 90 90.517735 hybrid +144_1-3 Q0 MARCO_28_973101830-4 91 90.515270 hybrid +144_1-3 Q0 MARCO_13_245355270-1 92 90.511070 hybrid +144_1-3 Q0 MARCO_50_2822597510-8 93 90.504571 hybrid +144_1-3 Q0 MARCO_18_3120158992-3 94 90.499065 hybrid +144_1-3 Q0 MARCO_09_112205215-11 95 90.498621 hybrid +144_1-3 Q0 MARCO_18_3441333240-2 96 90.491920 hybrid +144_1-3 Q0 MARCO_51_62874176-14 97 90.479820 hybrid +144_1-3 Q0 MARCO_47_1514525232-11 98 90.474789 hybrid +144_1-3 Q0 KILT_34666187-1 99 90.473270 hybrid +144_1-3 Q0 MARCO_18_3121862264-22 100 90.463454 hybrid +144_1-5 Q0 MARCO_50_1923995771-4 1 89.772476 hybrid +144_1-5 Q0 MARCO_50_1923995771-35 2 89.444476 hybrid +144_1-5 Q0 MARCO_18_3120274746-2 3 89.323206 hybrid +144_1-5 Q0 MARCO_40_1275785480-2 4 89.044893 hybrid +144_1-5 Q0 MARCO_28_320267721-2 5 88.929276 hybrid +144_1-5 Q0 MARCO_31_1026116175-2 6 88.929276 hybrid +144_1-5 Q0 MARCO_46_534206214-1 7 88.908326 hybrid +144_1-5 Q0 MARCO_50_1923995771-22 8 88.881776 hybrid +144_1-5 Q0 MARCO_50_1715454007-10 9 88.818076 hybrid +144_1-5 Q0 MARCO_50_1923995771-10 10 88.814876 hybrid +144_1-5 Q0 MARCO_04_151937623-2 11 88.806626 hybrid +144_1-5 Q0 MARCO_52_1604550369-2 12 88.514484 hybrid +144_1-5 Q0 MARCO_52_1604550369-3 13 88.469483 hybrid +144_1-5 Q0 MARCO_18_3119373597-10 14 88.427542 hybrid +144_1-5 Q0 MARCO_18_3122089436-20 15 88.338253 hybrid +144_1-5 Q0 MARCO_18_3123761348-4 16 88.290495 hybrid +144_1-5 Q0 MARCO_18_3123205338-9 17 88.211786 hybrid +144_1-5 Q0 MARCO_18_3119937986-25 18 88.208127 hybrid +144_1-5 Q0 KILT_573160-3 19 88.173026 hybrid +144_1-5 Q0 MARCO_52_165220427-124 20 88.169676 hybrid +144_1-5 Q0 MARCO_23_822961621-6 21 88.160826 hybrid +144_1-5 Q0 MARCO_01_1726198138-32 22 88.157126 hybrid +144_1-5 Q0 MARCO_50_1923995771-11 23 88.152676 hybrid +144_1-5 Q0 MARCO_34_805735963-113 24 88.146976 hybrid +144_1-5 Q0 MARCO_18_3119373597-49 25 88.140624 hybrid +144_1-5 Q0 MARCO_34_1827422564-2 26 88.133426 hybrid +144_1-5 Q0 KILT_19622-16 27 88.121076 hybrid +144_1-5 Q0 MARCO_05_390872029-1 28 88.101676 hybrid +144_1-5 Q0 MARCO_01_2114727105-10 29 88.096326 hybrid +144_1-5 Q0 KILT_18426568-16 30 88.061286 hybrid +144_1-5 Q0 MARCO_17_4652126956-4 31 88.032726 hybrid +144_1-5 Q0 MARCO_39_444862558-6 32 88.031426 hybrid +144_1-5 Q0 MARCO_18_3120004089-1 33 88.026289 hybrid +144_1-5 Q0 KILT_6385634-13 34 87.993876 hybrid +144_1-5 Q0 MARCO_23_127403245-2 35 87.993176 hybrid +144_1-5 Q0 KILT_984769-3 36 87.974165 hybrid +144_1-5 Q0 MARCO_16_4020882285-15 37 87.956926 hybrid +144_1-5 Q0 MARCO_50_2049034577-15 38 87.947026 hybrid +144_1-5 Q0 KILT_571414-1 39 87.945926 hybrid +144_1-5 Q0 MARCO_06_1613239254-67 40 87.931554 hybrid +144_1-5 Q0 MARCO_48_626188579-3 41 87.916727 hybrid +144_1-5 Q0 MARCO_18_3119937986-3 42 87.915256 hybrid +144_1-5 Q0 MARCO_20_64092302-3 43 87.896567 hybrid +144_1-5 Q0 MARCO_18_3122089436-12 44 87.892401 hybrid +144_1-5 Q0 MARCO_21_1370755966-44 45 87.889626 hybrid +144_1-5 Q0 MARCO_18_544395132-25 46 87.886626 hybrid +144_1-5 Q0 MARCO_18_3120209234-18 47 87.850188 hybrid +144_1-5 Q0 MARCO_20_1669851241-7 48 87.839126 hybrid +144_1-5 Q0 KILT_29441-32 49 87.835276 hybrid +144_1-5 Q0 MARCO_17_2377947346-7 50 87.826247 hybrid +144_1-5 Q0 MARCO_13_1315258021-2 51 87.821165 hybrid +144_1-5 Q0 KILT_5943897-3 52 87.818976 hybrid +144_1-5 Q0 MARCO_52_1612771994-5 53 87.817519 hybrid +144_1-5 Q0 MARCO_18_2950493748-39 54 87.790676 hybrid +144_1-5 Q0 MARCO_38_1342435215-1 55 87.789726 hybrid +144_1-5 Q0 MARCO_15_1864608113-1 56 87.785926 hybrid +144_1-5 Q0 MARCO_50_2377117734-5 57 87.779318 hybrid +144_1-5 Q0 MARCO_50_1582662596-12 58 87.775276 hybrid +144_1-5 Q0 MARCO_18_3116878569-3 59 87.772414 hybrid +144_1-5 Q0 KILT_29838000-2 60 87.769626 hybrid +144_1-5 Q0 KILT_38458-14 61 87.765318 hybrid +144_1-5 Q0 MARCO_16_2896457280-2 62 87.763426 hybrid +144_1-5 Q0 KILT_680000-21 63 87.745126 hybrid +144_1-5 Q0 KILT_548862-1 64 87.716662 hybrid +144_1-5 Q0 MARCO_18_3120209234-16 65 87.714789 hybrid +144_1-5 Q0 MARCO_42_1370357152-81 66 87.712821 hybrid +144_1-5 Q0 MARCO_39_682572531-72 67 87.712758 hybrid +144_1-5 Q0 MARCO_47_1564132401-4 68 87.712526 hybrid +144_1-5 Q0 MARCO_02_1715461544-1 69 87.702226 hybrid +144_1-5 Q0 MARCO_18_3120209234-30 70 87.699637 hybrid +144_1-5 Q0 MARCO_47_1513229348-4 71 87.699265 hybrid +144_1-5 Q0 MARCO_01_1897446416-54 72 87.697326 hybrid +144_1-5 Q0 MARCO_11_1527955758-1 73 87.694576 hybrid +144_1-5 Q0 MARCO_02_1455308628-2 74 87.694426 hybrid +144_1-5 Q0 KILT_5829815-12 75 87.692576 hybrid +144_1-5 Q0 MARCO_49_504516632-2 76 87.667126 hybrid +144_1-5 Q0 MARCO_47_1513774475-2 77 87.666944 hybrid +144_1-5 Q0 MARCO_18_3119373597-50 78 87.662047 hybrid +144_1-5 Q0 MARCO_56_209636695-3 79 87.656076 hybrid +144_1-5 Q0 MARCO_40_1411222251-2 80 87.650626 hybrid +144_1-5 Q0 MARCO_50_2210977855-21 81 87.643976 hybrid +144_1-5 Q0 MARCO_50_918592541-29 82 87.643975 hybrid +144_1-5 Q0 MARCO_06_751858276-11 83 87.636137 hybrid +144_1-5 Q0 KILT_7702855-1 84 87.633976 hybrid +144_1-5 Q0 MARCO_40_1411222251-1 85 87.633776 hybrid +144_1-5 Q0 MARCO_25_1349987241-2 86 87.631476 hybrid +144_1-5 Q0 KILT_7664847-15 87 87.628976 hybrid +144_1-5 Q0 MARCO_18_3116878569-42 88 87.611617 hybrid +144_1-5 Q0 MARCO_47_1514286787-2 89 87.610489 hybrid +144_1-5 Q0 MARCO_03_1743785469-1 90 87.606576 hybrid +144_1-5 Q0 MARCO_18_3120321510-18 91 87.606093 hybrid +144_1-5 Q0 KILT_548862-2 92 87.602591 hybrid +144_1-5 Q0 MARCO_24_1132535894-1 93 87.601321 hybrid +144_1-5 Q0 MARCO_50_1923995771-32 94 87.600226 hybrid +144_1-5 Q0 KILT_23558519-2 95 87.594276 hybrid +144_1-5 Q0 KILT_36716-20 96 87.594275 hybrid +144_1-5 Q0 MARCO_39_682572531-60 97 87.594031 hybrid +144_1-5 Q0 KILT_38458-25 98 87.590781 hybrid +144_1-5 Q0 MARCO_04_418046273-9 99 87.590076 hybrid +144_1-5 Q0 MARCO_03_1743785469-2 100 87.589076 hybrid +144_2-1 Q0 MARCO_18_3116878569-16 1 91.242041 hybrid +144_2-1 Q0 MARCO_52_1611218176-12 2 91.222050 hybrid +144_2-1 Q0 MARCO_18_3116878569-9 3 91.152838 hybrid +144_2-1 Q0 MARCO_18_3116878569-42 4 91.128933 hybrid +144_2-1 Q0 MARCO_18_3116878569-63 5 90.818959 hybrid +144_2-1 Q0 MARCO_18_3116878569-3 6 90.524911 hybrid +144_2-1 Q0 MARCO_18_3116878569-47 7 90.233178 hybrid +144_2-1 Q0 MARCO_18_3270644462-15 8 90.231583 hybrid +144_2-1 Q0 MARCO_09_739564359-1 9 90.165676 hybrid +144_2-1 Q0 MARCO_36_854436803-9 10 90.137876 hybrid +144_2-1 Q0 MARCO_15_599583395-42 11 90.020998 hybrid +144_2-1 Q0 MARCO_18_3116878569-61 12 89.912545 hybrid +144_2-1 Q0 KILT_2647515-17 13 89.870951 hybrid +144_2-1 Q0 KILT_33840718-3 14 89.849175 hybrid +144_2-1 Q0 MARCO_18_3116878569-54 15 89.798938 hybrid +144_2-1 Q0 MARCO_18_3116878569-8 16 89.771396 hybrid +144_2-1 Q0 MARCO_18_3116878569-2 17 89.718560 hybrid +144_2-1 Q0 MARCO_52_1611893899-3 18 89.685141 hybrid +144_2-1 Q0 MARCO_29_865121557-2 19 89.651248 hybrid +144_2-1 Q0 MARCO_18_3116878569-53 20 89.636777 hybrid +144_2-1 Q0 MARCO_24_1139122304-6 21 89.626720 hybrid +144_2-1 Q0 KILT_31406060-13 22 89.623176 hybrid +144_2-1 Q0 MARCO_18_3116878569-6 23 89.613257 hybrid +144_2-1 Q0 MARCO_18_3116878569-52 24 89.588394 hybrid +144_2-1 Q0 KILT_2647515-21 25 89.560556 hybrid +144_2-1 Q0 MARCO_18_3116878569-48 26 89.492939 hybrid +144_2-1 Q0 MARCO_55_771177327-1 27 89.462976 hybrid +144_2-1 Q0 MARCO_17_885090853-18 28 89.451576 hybrid +144_2-1 Q0 MARCO_18_3116878569-69 29 89.436766 hybrid +144_2-1 Q0 MARCO_44_608838647-3 30 89.335612 hybrid +144_2-1 Q0 MARCO_18_3116317508-1 31 89.292232 hybrid +144_2-1 Q0 MARCO_01_686831562-15 32 89.288776 hybrid +144_2-1 Q0 MARCO_52_1610238832-1 33 89.274726 hybrid +144_2-1 Q0 MARCO_35_259954299-6 34 89.225526 hybrid +144_2-1 Q0 MARCO_52_1611569890-5 35 89.223131 hybrid +144_2-1 Q0 MARCO_17_2092527764-23 36 89.213326 hybrid +144_2-1 Q0 MARCO_52_1606022427-7 37 89.205235 hybrid +144_2-1 Q0 MARCO_18_3118367795-27 38 89.195849 hybrid +144_2-1 Q0 MARCO_52_1611685648-5 39 89.185709 hybrid +144_2-1 Q0 MARCO_18_3116510005-26 40 89.185246 hybrid +144_2-1 Q0 MARCO_18_3116878569-1 41 89.184710 hybrid +144_2-1 Q0 KILT_2647515-22 42 89.182418 hybrid +144_2-1 Q0 MARCO_35_1438388696-6 43 89.168876 hybrid +144_2-1 Q0 MARCO_31_882254318-6 44 89.164164 hybrid +144_2-1 Q0 MARCO_18_3116878569-21 45 89.154106 hybrid +144_2-1 Q0 MARCO_35_308978221-8 46 89.147326 hybrid +144_2-1 Q0 MARCO_39_526833347-20 47 89.118626 hybrid +144_2-1 Q0 MARCO_18_3116878569-17 48 89.115812 hybrid +144_2-1 Q0 MARCO_22_1172742654-5 49 89.113026 hybrid +144_2-1 Q0 MARCO_08_374778006-1 50 89.101526 hybrid +144_2-1 Q0 MARCO_35_308894578-6 51 89.101363 hybrid +144_2-1 Q0 MARCO_31_882254318-3 52 89.062463 hybrid +144_2-1 Q0 MARCO_01_686831562-60 53 89.055976 hybrid +144_2-1 Q0 MARCO_36_850146522-3 54 89.053026 hybrid +144_2-1 Q0 MARCO_18_3116878569-7 55 89.035877 hybrid +144_2-1 Q0 MARCO_18_3121862264-49 56 89.021758 hybrid +144_2-1 Q0 MARCO_47_1511451791-5 57 89.015216 hybrid +144_2-1 Q0 MARCO_52_1605932689-3 58 89.013420 hybrid +144_2-1 Q0 MARCO_22_1169935394-9 59 88.999326 hybrid +144_2-1 Q0 MARCO_18_3116171216-28 60 88.995226 hybrid +144_2-1 Q0 MARCO_50_2210096877-9 61 88.992776 hybrid +144_2-1 Q0 MARCO_50_1312847755-68 62 88.986876 hybrid +144_2-1 Q0 MARCO_39_444876423-17 63 88.983076 hybrid +144_2-1 Q0 MARCO_18_3116664840-20 64 88.971462 hybrid +144_2-1 Q0 KILT_2647515-27 65 88.958519 hybrid +144_2-1 Q0 MARCO_09_738827493-1 66 88.945426 hybrid +144_2-1 Q0 MARCO_18_3116878569-4 67 88.900738 hybrid +144_2-1 Q0 MARCO_37_711221842-5 68 88.895602 hybrid +144_2-1 Q0 MARCO_18_3116756863-26 69 88.894795 hybrid +144_2-1 Q0 MARCO_35_308927978-14 70 88.892532 hybrid +144_2-1 Q0 MARCO_17_3916290866-1 71 88.892426 hybrid +144_2-1 Q0 MARCO_52_1605944081-4 72 88.890522 hybrid +144_2-1 Q0 MARCO_18_3116878569-75 73 88.887774 hybrid +144_2-1 Q0 KILT_2647515-26 74 88.885447 hybrid +144_2-1 Q0 MARCO_01_686831562-7 75 88.883626 hybrid +144_2-1 Q0 MARCO_18_3121862264-60 76 88.878160 hybrid +144_2-1 Q0 KILT_44212980-1 77 88.877476 hybrid +144_2-1 Q0 KILT_2647515-23 78 88.870758 hybrid +144_2-1 Q0 MARCO_32_697437548-216 79 88.848076 hybrid +144_2-1 Q0 MARCO_01_686831562-71 80 88.846026 hybrid +144_2-1 Q0 MARCO_18_3270644462-2 81 88.823722 hybrid +144_2-1 Q0 MARCO_35_308859694-6 82 88.816899 hybrid +144_2-1 Q0 MARCO_05_809884773-15 83 88.806576 hybrid +144_2-1 Q0 KILT_39636436-3 84 88.798626 hybrid +144_2-1 Q0 KILT_34666187-2 85 88.778576 hybrid +144_2-1 Q0 MARCO_14_1201111187-4 86 88.773026 hybrid +144_2-1 Q0 MARCO_18_3116444373-40 87 88.770666 hybrid +144_2-1 Q0 MARCO_50_1312847755-12 88 88.751626 hybrid +144_2-1 Q0 MARCO_17_884867375-26 89 88.750825 hybrid +144_2-1 Q0 MARCO_40_1075686646-4 90 88.739076 hybrid +144_2-1 Q0 MARCO_29_863431444-5 91 88.727702 hybrid +144_2-1 Q0 MARCO_17_884867375-73 92 88.727276 hybrid +144_2-1 Q0 MARCO_18_3270644462-62 93 88.725370 hybrid +144_2-1 Q0 MARCO_15_599583395-40 94 88.722764 hybrid +144_2-1 Q0 MARCO_50_1077067859-13 95 88.719726 hybrid +144_2-1 Q0 MARCO_18_3116878569-5 96 88.712847 hybrid +144_2-1 Q0 MARCO_01_686831562-51 97 88.709226 hybrid +144_2-1 Q0 MARCO_01_686831562-50 98 88.699776 hybrid +144_2-1 Q0 MARCO_18_3121862264-54 99 88.698773 hybrid +144_2-1 Q0 MARCO_50_2736140935-4 100 88.692626 hybrid +144_2-11 Q0 MARCO_07_1118258898-1 1 90.195638 hybrid +144_2-11 Q0 MARCO_03_1748077988-4 2 88.679054 hybrid +144_2-11 Q0 MARCO_52_635891760-15 3 88.598054 hybrid +144_2-11 Q0 MARCO_30_74645172-3 4 88.591654 hybrid +144_2-11 Q0 MARCO_47_1508643911-1 5 88.550254 hybrid +144_2-11 Q0 MARCO_49_1305225391-1 6 88.516554 hybrid +144_2-11 Q0 MARCO_04_487834639-1 7 88.491405 hybrid +144_2-11 Q0 MARCO_17_1914277110-19 8 88.457405 hybrid +144_2-11 Q0 KILT_15944-11 9 88.444832 hybrid +144_2-11 Q0 MARCO_18_3123329102-14 10 88.422538 hybrid +144_2-11 Q0 MARCO_18_3116977530-1 11 88.414452 hybrid +144_2-11 Q0 MARCO_52_1054170063-5 12 88.382004 hybrid +144_2-11 Q0 MARCO_50_982609737-21 13 88.377204 hybrid +144_2-11 Q0 MARCO_09_1793419217-7 14 88.360505 hybrid +144_2-11 Q0 KILT_4707045-2 15 88.354738 hybrid +144_2-11 Q0 MARCO_50_1983145593-17 16 88.345260 hybrid +144_2-11 Q0 MARCO_39_1568280691-12 17 88.331237 hybrid +144_2-11 Q0 MARCO_18_1823217371-5 18 88.283790 hybrid +144_2-11 Q0 MARCO_19_2033821273-2 19 88.274304 hybrid +144_2-11 Q0 MARCO_18_3116977530-2 20 88.206359 hybrid +144_2-11 Q0 KILT_28506-21 21 88.193069 hybrid +144_2-11 Q0 MARCO_37_1606225821-1 22 88.156654 hybrid +144_2-11 Q0 MARCO_41_2016199554-2 23 88.150155 hybrid +144_2-11 Q0 KILT_27623318-3 24 88.126961 hybrid +144_2-11 Q0 MARCO_12_1388234380-4 25 88.109204 hybrid +144_2-11 Q0 MARCO_30_74716097-1 26 88.096304 hybrid +144_2-11 Q0 KILT_15944-10 27 88.085507 hybrid +144_2-11 Q0 KILT_28506-20 28 88.061919 hybrid +144_2-11 Q0 MARCO_06_808201610-25 29 88.041454 hybrid +144_2-11 Q0 MARCO_07_1118258898-7 30 88.039370 hybrid +144_2-11 Q0 MARCO_10_1132480802-28 31 88.036534 hybrid +144_2-11 Q0 KILT_4707045-1 32 88.036292 hybrid +144_2-11 Q0 MARCO_39_1568280691-11 33 88.028701 hybrid +144_2-11 Q0 MARCO_17_3580319373-4 34 88.026754 hybrid +144_2-11 Q0 KILT_40250-13 35 88.026104 hybrid +144_2-11 Q0 MARCO_19_1706185577-3 36 88.009655 hybrid +144_2-11 Q0 MARCO_30_74918479-8 37 88.005155 hybrid +144_2-11 Q0 MARCO_03_1605448829-5 38 88.000678 hybrid +144_2-11 Q0 MARCO_05_591000936-1 39 87.986804 hybrid +144_2-11 Q0 MARCO_18_3116444373-29 40 87.982299 hybrid +144_2-11 Q0 KILT_4707019-11 41 87.963470 hybrid +144_2-11 Q0 MARCO_18_117178057-43 42 87.953505 hybrid +144_2-11 Q0 MARCO_31_1390241442-1 43 87.943954 hybrid +144_2-11 Q0 MARCO_30_419629173-1 44 87.925405 hybrid +144_2-11 Q0 KILT_22739594-3 45 87.923003 hybrid +144_2-11 Q0 MARCO_59_605592475-8 46 87.914824 hybrid +144_2-11 Q0 KILT_47105558-1 47 87.909881 hybrid +144_2-11 Q0 KILT_15944-8 48 87.909690 hybrid +144_2-11 Q0 MARCO_56_1350234326-4 49 87.903354 hybrid +144_2-11 Q0 MARCO_31_715611191-10 50 87.901354 hybrid +144_2-11 Q0 MARCO_00_1205188173-10 51 87.900805 hybrid +144_2-11 Q0 KILT_3030004-11 52 87.888454 hybrid +144_2-11 Q0 KILT_1396249-12 53 87.888054 hybrid +144_2-11 Q0 KILT_8364208-1 54 87.874704 hybrid +144_2-11 Q0 MARCO_27_1300054537-10 55 87.852854 hybrid +144_2-11 Q0 KILT_15944-9 56 87.840911 hybrid +144_2-11 Q0 MARCO_18_1823046962-7 57 87.839034 hybrid +144_2-11 Q0 MARCO_50_1027016728-1 58 87.827904 hybrid +144_2-11 Q0 MARCO_15_1824570089-1 59 87.815905 hybrid +144_2-11 Q0 KILT_1424917-6 60 87.808791 hybrid +144_2-11 Q0 MARCO_51_2011530188-37 61 87.807082 hybrid +144_2-11 Q0 MARCO_39_1569621978-13 62 87.801508 hybrid +144_2-11 Q0 MARCO_18_3123329102-15 63 87.799102 hybrid +144_2-11 Q0 MARCO_59_605592475-1 64 87.787528 hybrid +144_2-11 Q0 MARCO_34_1325428574-1 65 87.783156 hybrid +144_2-11 Q0 MARCO_50_1929870268-37 66 87.781852 hybrid +144_2-11 Q0 KILT_13876361-1 67 87.780354 hybrid +144_2-11 Q0 MARCO_30_74745413-6 68 87.773254 hybrid +144_2-11 Q0 MARCO_30_74812355-1 69 87.765104 hybrid +144_2-11 Q0 MARCO_51_1637467816-3 70 87.757285 hybrid +144_2-11 Q0 MARCO_54_663478559-10 71 87.754055 hybrid +144_2-11 Q0 KILT_316824-4 72 87.748977 hybrid +144_2-11 Q0 MARCO_19_1767990244-14 73 87.747654 hybrid +144_2-11 Q0 MARCO_39_1568280691-7 74 87.745948 hybrid +144_2-11 Q0 MARCO_37_1592787173-2 75 87.743155 hybrid +144_2-11 Q0 KILT_60323001-5 76 87.738677 hybrid +144_2-11 Q0 MARCO_18_3119937986-21 77 87.735686 hybrid +144_2-11 Q0 MARCO_03_1671085973-1 78 87.735633 hybrid +144_2-11 Q0 MARCO_50_1027016728-2 79 87.729704 hybrid +144_2-11 Q0 MARCO_28_285675710-3 80 87.725097 hybrid +144_2-11 Q0 MARCO_29_631342289-1 81 87.719705 hybrid +144_2-11 Q0 KILT_146924-17 82 87.716193 hybrid +144_2-11 Q0 MARCO_39_1568280691-16 83 87.714713 hybrid +144_2-11 Q0 MARCO_22_505649722-2 84 87.711944 hybrid +144_2-11 Q0 KILT_20486-12 85 87.706954 hybrid +144_2-11 Q0 MARCO_18_2310956562-10 86 87.706854 hybrid +144_2-11 Q0 MARCO_06_1271709591-201 87 87.701194 hybrid +144_2-11 Q0 MARCO_17_2573233900-8 88 87.700154 hybrid +144_2-11 Q0 MARCO_18_3123329102-30 89 87.697806 hybrid +144_2-11 Q0 MARCO_51_691754722-2 90 87.695854 hybrid +144_2-11 Q0 MARCO_18_3116444373-57 91 87.692237 hybrid +144_2-11 Q0 MARCO_33_314889025-5 92 87.691354 hybrid +144_2-11 Q0 MARCO_44_387336796-5 93 87.690454 hybrid +144_2-11 Q0 MARCO_39_1725212899-1 94 87.687504 hybrid +144_2-11 Q0 KILT_3813298-1 95 87.682883 hybrid +144_2-11 Q0 MARCO_18_117041573-13 96 87.681604 hybrid +144_2-11 Q0 MARCO_06_931643751-1 97 87.681554 hybrid +144_2-11 Q0 MARCO_41_2015988874-4 98 87.679255 hybrid +144_2-11 Q0 MARCO_06_545753773-1 99 87.675405 hybrid +144_2-11 Q0 KILT_55634182-1 100 87.669554 hybrid +144_2-13 Q0 MARCO_18_924403543-33 1 89.979279 hybrid +144_2-13 Q0 KILT_15944-10 2 89.793952 hybrid +144_2-13 Q0 MARCO_18_923431213-19 3 89.787655 hybrid +144_2-13 Q0 MARCO_18_919757789-7 4 89.705619 hybrid +144_2-13 Q0 MARCO_17_1351854116-1 5 89.697358 hybrid +144_2-13 Q0 MARCO_17_575493501-4 6 89.652558 hybrid +144_2-13 Q0 MARCO_18_3233548707-15 7 89.628708 hybrid +144_2-13 Q0 MARCO_18_1749944364-4 8 89.607208 hybrid +144_2-13 Q0 KILT_1295452-1 9 89.606908 hybrid +144_2-13 Q0 MARCO_18_1886765989-7 10 89.535358 hybrid +144_2-13 Q0 MARCO_16_3740644116-11 11 89.487308 hybrid +144_2-13 Q0 MARCO_17_2335823991-34 12 89.470858 hybrid +144_2-13 Q0 MARCO_17_1798582100-20 13 89.458218 hybrid +144_2-13 Q0 MARCO_18_3122901390-27 14 89.446782 hybrid +144_2-13 Q0 KILT_1179352-1 15 89.437953 hybrid +144_2-13 Q0 MARCO_17_1914277110-19 16 89.416708 hybrid +144_2-13 Q0 MARCO_17_578853990-11 17 89.395108 hybrid +144_2-13 Q0 MARCO_17_2350087193-12 18 89.315208 hybrid +144_2-13 Q0 MARCO_18_2918414305-31 19 89.238358 hybrid +144_2-13 Q0 MARCO_17_1351854116-5 20 89.234808 hybrid +144_2-13 Q0 MARCO_19_370150585-17 21 89.218808 hybrid +144_2-13 Q0 MARCO_17_2633212999-43 22 89.201258 hybrid +144_2-13 Q0 MARCO_50_1929870268-37 23 89.177441 hybrid +144_2-13 Q0 MARCO_18_3116977530-2 24 89.171667 hybrid +144_2-13 Q0 KILT_15944-20 25 89.127789 hybrid +144_2-13 Q0 KILT_14280337-8 26 89.098008 hybrid +144_2-13 Q0 MARCO_18_3039199927-60 27 89.094308 hybrid +144_2-13 Q0 KILT_158681-14 28 89.089558 hybrid +144_2-13 Q0 MARCO_18_3042853877-29 29 89.085908 hybrid +144_2-13 Q0 MARCO_17_575493501-2 30 89.078858 hybrid +144_2-13 Q0 MARCO_17_575493501-1 31 89.070008 hybrid +144_2-13 Q0 MARCO_17_3580319373-27 32 89.068758 hybrid +144_2-13 Q0 MARCO_16_4041869224-10 33 89.061208 hybrid +144_2-13 Q0 MARCO_18_4195875377-4 34 89.029058 hybrid +144_2-13 Q0 KILT_2376390-1 35 89.026232 hybrid +144_2-13 Q0 MARCO_17_1645219867-42 36 89.022508 hybrid +144_2-13 Q0 MARCO_18_2311617394-42 37 89.019008 hybrid +144_2-13 Q0 KILT_51669100-1 38 89.012008 hybrid +144_2-13 Q0 MARCO_30_74918479-8 39 89.008708 hybrid +144_2-13 Q0 MARCO_30_74812355-1 40 89.005008 hybrid +144_2-13 Q0 MARCO_17_1700049285-8 41 89.002758 hybrid +144_2-13 Q0 KILT_233944-2 42 88.995558 hybrid +144_2-13 Q0 KILT_22739594-2 43 88.981037 hybrid +144_2-13 Q0 KILT_4707019-11 44 88.976979 hybrid +144_2-13 Q0 KILT_28506-21 45 88.956826 hybrid +144_2-13 Q0 KILT_1295284-9 46 88.952508 hybrid +144_2-13 Q0 MARCO_17_1290071141-11 47 88.938308 hybrid +144_2-13 Q0 MARCO_16_2124735062-8 48 88.933858 hybrid +144_2-13 Q0 KILT_14280337-6 49 88.928708 hybrid +144_2-13 Q0 MARCO_18_3039781159-10 50 88.913008 hybrid +144_2-13 Q0 MARCO_31_266519964-1 51 88.909208 hybrid +144_2-13 Q0 KILT_27623318-3 52 88.906419 hybrid +144_2-13 Q0 MARCO_18_474780560-21 53 88.904398 hybrid +144_2-13 Q0 MARCO_28_285675710-3 54 88.899147 hybrid +144_2-13 Q0 MARCO_18_827749479-8 55 88.890808 hybrid +144_2-13 Q0 MARCO_18_1554688095-9 56 88.885308 hybrid +144_2-13 Q0 MARCO_12_135618726-52 57 88.869199 hybrid +144_2-13 Q0 MARCO_59_345932663-1 58 88.868658 hybrid +144_2-13 Q0 MARCO_07_1118258898-1 59 88.865991 hybrid +144_2-13 Q0 KILT_4759545-13 60 88.862358 hybrid +144_2-13 Q0 KILT_20953139-1 61 88.862108 hybrid +144_2-13 Q0 MARCO_18_2311699605-19 62 88.861958 hybrid +144_2-13 Q0 MARCO_00_515410767-4 63 88.859558 hybrid +144_2-13 Q0 MARCO_16_2597075316-18 64 88.851508 hybrid +144_2-13 Q0 MARCO_03_1748077988-4 65 88.833908 hybrid +144_2-13 Q0 KILT_15944-12 66 88.829210 hybrid +144_2-13 Q0 MARCO_17_3581880174-24 67 88.828908 hybrid +144_2-13 Q0 KILT_28506-20 68 88.825414 hybrid +144_2-13 Q0 MARCO_18_3123329102-14 69 88.807277 hybrid +144_2-13 Q0 KILT_13876361-1 70 88.801608 hybrid +144_2-13 Q0 MARCO_39_1568280691-7 71 88.779636 hybrid +144_2-13 Q0 KILT_8364208-1 72 88.764858 hybrid +144_2-13 Q0 MARCO_18_3233548707-1 73 88.754858 hybrid +144_2-13 Q0 MARCO_30_74645172-12 74 88.744108 hybrid +144_2-13 Q0 MARCO_17_4840279354-18 75 88.731558 hybrid +144_2-13 Q0 MARCO_30_74812355-7 76 88.730058 hybrid +144_2-13 Q0 KILT_314978-5 77 88.695858 hybrid +144_2-13 Q0 KILT_3813298-4 78 88.685269 hybrid +144_2-13 Q0 KILT_12930143-1 79 88.668670 hybrid +144_2-13 Q0 MARCO_38_125938102-2 80 88.659658 hybrid +144_2-13 Q0 MARCO_19_1767990244-3 81 88.654358 hybrid +144_2-13 Q0 MARCO_50_1912727352-59 82 88.638658 hybrid +144_2-13 Q0 MARCO_50_1447966974-15 83 88.635480 hybrid +144_2-13 Q0 MARCO_24_719939137-3 84 88.628659 hybrid +144_2-13 Q0 MARCO_17_3580319373-22 85 88.624758 hybrid +144_2-13 Q0 MARCO_26_1067160456-1 86 88.614608 hybrid +144_2-13 Q0 KILT_35149623-1 87 88.603058 hybrid +144_2-13 Q0 KILT_1295452-2 88 88.594508 hybrid +144_2-13 Q0 KILT_49315050-1 89 88.588708 hybrid +144_2-13 Q0 MARCO_30_419629173-2 90 88.584858 hybrid +144_2-13 Q0 KILT_11667533-2 91 88.582208 hybrid +144_2-13 Q0 MARCO_18_3233548707-10 92 88.579658 hybrid +144_2-13 Q0 KILT_3813298-1 93 88.567889 hybrid +144_2-13 Q0 MARCO_47_1508643911-1 94 88.562308 hybrid +144_2-13 Q0 KILT_520402-17 95 88.560108 hybrid +144_2-13 Q0 MARCO_17_3580319373-19 96 88.560108 hybrid +144_2-13 Q0 MARCO_18_3116444373-29 97 88.539746 hybrid +144_2-13 Q0 MARCO_50_1912727352-23 98 88.538458 hybrid +144_2-13 Q0 MARCO_04_59504196-2 99 88.538108 hybrid +144_2-13 Q0 MARCO_17_3580319373-2 100 88.535358 hybrid +144_2-15 Q0 MARCO_18_3116878569-64 1 91.306864 hybrid +144_2-15 Q0 MARCO_18_2918414305-24 2 90.933953 hybrid +144_2-15 Q0 MARCO_52_1611218176-12 3 90.799976 hybrid +144_2-15 Q0 MARCO_51_607329168-1 4 90.793054 hybrid +144_2-15 Q0 MARCO_28_972935301-4 5 90.792104 hybrid +144_2-15 Q0 MARCO_16_69991661-8 6 90.596454 hybrid +144_2-15 Q0 MARCO_19_1767990244-20 7 90.448753 hybrid +144_2-15 Q0 MARCO_40_1275785480-2 8 90.427846 hybrid +144_2-15 Q0 KILT_38458-5 9 90.302553 hybrid +144_2-15 Q0 MARCO_37_328852305-4 10 90.301953 hybrid +144_2-15 Q0 MARCO_50_2252222268-21 11 90.264753 hybrid +144_2-15 Q0 MARCO_47_724693245-5 12 90.071954 hybrid +144_2-15 Q0 MARCO_09_1208107094-18 13 89.997303 hybrid +144_2-15 Q0 MARCO_18_3116878569-16 14 89.898590 hybrid +144_2-15 Q0 MARCO_54_131077001-9 15 89.861254 hybrid +144_2-15 Q0 MARCO_25_65164806-2 16 89.823753 hybrid +144_2-15 Q0 MARCO_24_1085683610-2 17 89.794153 hybrid +144_2-15 Q0 MARCO_07_1050833873-30 18 89.791304 hybrid +144_2-15 Q0 MARCO_39_326869460-2 19 89.763904 hybrid +144_2-15 Q0 MARCO_50_1194863296-1 20 89.753404 hybrid +144_2-15 Q0 MARCO_42_664977715-7 21 89.740053 hybrid +144_2-15 Q0 MARCO_39_444862558-4 22 89.710303 hybrid +144_2-15 Q0 MARCO_02_1715461544-1 23 89.709953 hybrid +144_2-15 Q0 MARCO_52_1619588246-1 24 89.682854 hybrid +144_2-15 Q0 MARCO_52_1615146712-3 25 89.669503 hybrid +144_2-15 Q0 MARCO_18_3116878569-54 26 89.637671 hybrid +144_2-15 Q0 MARCO_24_1790812484-5 27 89.624853 hybrid +144_2-15 Q0 MARCO_24_1139122304-6 28 89.614877 hybrid +144_2-15 Q0 MARCO_28_972935301-3 29 89.595203 hybrid +144_2-15 Q0 MARCO_29_1226941908-19 30 89.541503 hybrid +144_2-15 Q0 MARCO_50_968070383-27 31 89.501253 hybrid +144_2-15 Q0 MARCO_01_1554889409-30 32 89.499703 hybrid +144_2-15 Q0 MARCO_01_686831562-61 33 89.486703 hybrid +144_2-15 Q0 KILT_23441092-1 34 89.474854 hybrid +144_2-15 Q0 MARCO_21_1236158078-7 35 89.471004 hybrid +144_2-15 Q0 MARCO_30_571723866-2 36 89.463404 hybrid +144_2-15 Q0 MARCO_30_754445019-32 37 89.460303 hybrid +144_2-15 Q0 MARCO_43_1633529616-3 38 89.430304 hybrid +144_2-15 Q0 MARCO_10_1622826223-1 39 89.398204 hybrid +144_2-15 Q0 MARCO_31_238580222-2 40 89.381603 hybrid +144_2-15 Q0 MARCO_20_239446762-1 41 89.370553 hybrid +144_2-15 Q0 MARCO_29_1586278890-6 42 89.356353 hybrid +144_2-15 Q0 MARCO_10_1328610282-8 43 89.354854 hybrid +144_2-15 Q0 MARCO_12_379590358-4 44 89.353453 hybrid +144_2-15 Q0 MARCO_48_658213781-1 45 89.349204 hybrid +144_2-15 Q0 MARCO_18_3121388572-4 46 89.348108 hybrid +144_2-15 Q0 MARCO_52_323885813-2 47 89.336703 hybrid +144_2-15 Q0 MARCO_30_74697165-1 48 89.336353 hybrid +144_2-15 Q0 MARCO_04_602929800-7 49 89.336103 hybrid +144_2-15 Q0 MARCO_24_595898031-1 50 89.329803 hybrid +144_2-15 Q0 MARCO_18_469169095-4 51 89.284898 hybrid +144_2-15 Q0 MARCO_41_429697168-2 52 89.262903 hybrid +144_2-15 Q0 MARCO_18_3116878569-20 53 89.257867 hybrid +144_2-15 Q0 MARCO_10_1622826223-3 54 89.249804 hybrid +144_2-15 Q0 MARCO_10_1622826223-4 55 89.236553 hybrid +144_2-15 Q0 MARCO_18_3121862264-54 56 89.223115 hybrid +144_2-15 Q0 KILT_233500-27 57 89.209253 hybrid +144_2-15 Q0 MARCO_36_847077396-2 58 89.204854 hybrid +144_2-15 Q0 MARCO_45_96374216-26 59 89.192803 hybrid +144_2-15 Q0 MARCO_12_810429180-11 60 89.186453 hybrid +144_2-15 Q0 MARCO_18_3116878569-9 61 89.169839 hybrid +144_2-15 Q0 MARCO_55_208543006-25 62 89.164353 hybrid +144_2-15 Q0 MARCO_52_1619575137-4 63 89.155354 hybrid +144_2-15 Q0 MARCO_38_5378023-1 64 89.151353 hybrid +144_2-15 Q0 MARCO_24_1563887649-9 65 89.139653 hybrid +144_2-15 Q0 MARCO_18_3116878569-15 66 89.139024 hybrid +144_2-15 Q0 MARCO_18_3116878569-17 67 89.137537 hybrid +144_2-15 Q0 MARCO_09_1766914802-15 68 89.135754 hybrid +144_2-15 Q0 MARCO_18_2660662920-31 69 89.134853 hybrid +144_2-15 Q0 MARCO_18_3120100172-4 70 89.128097 hybrid +144_2-15 Q0 MARCO_32_1383154385-9 71 89.127453 hybrid +144_2-15 Q0 MARCO_35_892324178-12 72 89.110153 hybrid +144_2-15 Q0 MARCO_18_3116878569-19 73 89.103654 hybrid +144_2-15 Q0 MARCO_03_1662839664-8 74 89.086904 hybrid +144_2-15 Q0 MARCO_47_1462866254-4 75 89.084203 hybrid +144_2-15 Q0 MARCO_50_2871905454-11 76 89.084203 hybrid +144_2-15 Q0 MARCO_50_1159216861-26 77 89.084104 hybrid +144_2-15 Q0 MARCO_29_1334919388-29 78 89.080431 hybrid +144_2-15 Q0 MARCO_44_613784868-1 79 89.068604 hybrid +144_2-15 Q0 MARCO_30_289446084-39 80 89.066253 hybrid +144_2-15 Q0 MARCO_57_673503315-3 81 89.065953 hybrid +144_2-15 Q0 MARCO_49_1740161577-5 82 89.060653 hybrid +144_2-15 Q0 MARCO_40_1068991835-1 83 89.057253 hybrid +144_2-15 Q0 MARCO_50_1109192953-41 84 89.048903 hybrid +144_2-15 Q0 MARCO_27_1302199768-13 85 89.045353 hybrid +144_2-15 Q0 MARCO_39_373578316-5 86 89.041853 hybrid +144_2-15 Q0 MARCO_50_982609737-4 87 89.041203 hybrid +144_2-15 Q0 MARCO_15_1918615594-17 88 89.033053 hybrid +144_2-15 Q0 MARCO_14_466458461-1 89 89.031703 hybrid +144_2-15 Q0 MARCO_13_1194942911-7 90 89.025804 hybrid +144_2-15 Q0 MARCO_51_752988518-6 91 89.025403 hybrid +144_2-15 Q0 MARCO_40_689997287-9 92 89.022553 hybrid +144_2-15 Q0 MARCO_01_1669058880-4 93 89.020303 hybrid +144_2-15 Q0 MARCO_13_1027983829-5 94 89.003103 hybrid +144_2-15 Q0 MARCO_20_391549216-5 95 89.001954 hybrid +144_2-15 Q0 MARCO_00_72603262-1 96 89.000504 hybrid +144_2-15 Q0 MARCO_58_1062648550-13 97 88.999203 hybrid +144_2-15 Q0 MARCO_13_1442028760-5 98 88.987154 hybrid +144_2-15 Q0 MARCO_18_3270644462-15 99 88.984910 hybrid +144_2-15 Q0 MARCO_44_613784868-4 100 88.974803 hybrid +144_2-17 Q0 MARCO_18_3233548707-7 1 97.422220 hybrid +144_2-17 Q0 MARCO_44_613849939-1 2 96.216670 hybrid +144_2-17 Q0 MARCO_18_3116444373-5 3 96.133301 hybrid +144_2-17 Q0 MARCO_18_3233548707-9 4 95.865220 hybrid +144_2-17 Q0 KILT_1295284-6 5 95.817120 hybrid +144_2-17 Q0 MARCO_18_3116977530-6 6 95.007093 hybrid +144_2-17 Q0 MARCO_18_3116444373-3 7 94.559579 hybrid +144_2-17 Q0 MARCO_19_1767990244-46 8 94.508970 hybrid +144_2-17 Q0 KILT_37724098-1 9 94.456770 hybrid +144_2-17 Q0 MARCO_48_658173120-8 10 94.387170 hybrid +144_2-17 Q0 MARCO_18_3116977530-5 11 94.092044 hybrid +144_2-17 Q0 MARCO_18_3116444373-27 12 94.043928 hybrid +144_2-17 Q0 MARCO_02_1715119966-10 13 93.856720 hybrid +144_2-17 Q0 MARCO_18_3270644462-18 14 93.831330 hybrid +144_2-17 Q0 MARCO_18_3116977530-7 15 93.828843 hybrid +144_2-17 Q0 MARCO_18_3116444373-6 16 93.626700 hybrid +144_2-17 Q0 MARCO_18_3116444373-37 17 93.590848 hybrid +144_2-17 Q0 MARCO_18_3116444373-14 18 93.584569 hybrid +144_2-17 Q0 MARCO_18_3116977530-1 19 93.471849 hybrid +144_2-17 Q0 MARCO_18_3116444373-7 20 93.416651 hybrid +144_2-17 Q0 MARCO_19_1767990244-6 21 93.414120 hybrid +144_2-17 Q0 MARCO_18_3116444373-29 22 93.310039 hybrid +144_2-17 Q0 MARCO_18_3116444373-2 23 93.218051 hybrid +144_2-17 Q0 MARCO_18_3233548707-4 24 93.182620 hybrid +144_2-17 Q0 MARCO_18_3116444373-13 25 93.180172 hybrid +144_2-17 Q0 MARCO_18_3116444373-42 26 93.163653 hybrid +144_2-17 Q0 KILT_23595810-1 27 93.142620 hybrid +144_2-17 Q0 MARCO_18_3116444373-35 28 93.130453 hybrid +144_2-17 Q0 MARCO_18_3116444373-10 29 93.098370 hybrid +144_2-17 Q0 MARCO_28_975973065-1 30 93.025270 hybrid +144_2-17 Q0 KILT_42907493-3 31 92.997647 hybrid +144_2-17 Q0 MARCO_18_3116977530-2 32 92.996635 hybrid +144_2-17 Q0 MARCO_27_1146612109-1 33 92.981159 hybrid +144_2-17 Q0 KILT_23595810-21 34 92.980470 hybrid +144_2-17 Q0 KILT_37724098-5 35 92.945320 hybrid +144_2-17 Q0 MARCO_18_3116444373-53 36 92.942802 hybrid +144_2-17 Q0 KILT_23595810-11 37 92.877570 hybrid +144_2-17 Q0 KILT_23595810-8 38 92.860170 hybrid +144_2-17 Q0 MARCO_18_3116444373-11 39 92.819350 hybrid +144_2-17 Q0 KILT_23595810-12 40 92.818270 hybrid +144_2-17 Q0 KILT_37724098-6 41 92.799020 hybrid +144_2-17 Q0 MARCO_18_3116444373-22 42 92.781099 hybrid +144_2-17 Q0 MARCO_18_3116444373-18 43 92.772089 hybrid +144_2-17 Q0 MARCO_18_3116510005-17 44 92.755627 hybrid +144_2-17 Q0 MARCO_50_1382852659-102 45 92.752420 hybrid +144_2-17 Q0 MARCO_52_1610969932-2 46 92.729931 hybrid +144_2-17 Q0 MARCO_47_1516406453-8 47 92.721697 hybrid +144_2-17 Q0 KILT_55382641-12 48 92.701320 hybrid +144_2-17 Q0 KILT_37724098-7 49 92.669520 hybrid +144_2-17 Q0 MARCO_37_710297867-13 50 92.651875 hybrid +144_2-17 Q0 MARCO_18_3116977530-11 51 92.634591 hybrid +144_2-17 Q0 KILT_43851474-9 52 92.594070 hybrid +144_2-17 Q0 KILT_49189453-1 53 92.584220 hybrid +144_2-17 Q0 MARCO_18_3116444373-19 54 92.550230 hybrid +144_2-17 Q0 MARCO_18_3112781714-23 55 92.507413 hybrid +144_2-17 Q0 MARCO_44_613784868-4 56 92.470020 hybrid +144_2-17 Q0 MARCO_18_3116444373-8 57 92.450654 hybrid +144_2-17 Q0 KILT_23595810-4 58 92.444920 hybrid +144_2-17 Q0 MARCO_18_3270644462-29 59 92.441600 hybrid +144_2-17 Q0 MARCO_26_1067160456-1 60 92.440520 hybrid +144_2-17 Q0 MARCO_19_1767990244-41 61 92.430520 hybrid +144_2-17 Q0 MARCO_18_3116756863-14 62 92.398268 hybrid +144_2-17 Q0 MARCO_18_3116444373-25 63 92.396294 hybrid +144_2-17 Q0 KILT_23595810-5 64 92.377820 hybrid +144_2-17 Q0 MARCO_17_2932665485-17 65 92.374520 hybrid +144_2-17 Q0 MARCO_27_1146612109-4 66 92.349349 hybrid +144_2-17 Q0 MARCO_18_3116444373-36 67 92.336049 hybrid +144_2-17 Q0 MARCO_58_1548130772-6 68 92.312170 hybrid +144_2-17 Q0 MARCO_26_1067150539-6 69 92.311920 hybrid +144_2-17 Q0 KILT_23595810-7 70 92.280970 hybrid +144_2-17 Q0 MARCO_16_2409784215-11 71 92.241770 hybrid +144_2-17 Q0 KILT_47105558-2 72 92.218486 hybrid +144_2-17 Q0 MARCO_18_3116444373-1 73 92.218358 hybrid +144_2-17 Q0 MARCO_26_1067160456-6 74 92.211670 hybrid +144_2-17 Q0 MARCO_50_1312951478-24 75 92.206620 hybrid +144_2-17 Q0 MARCO_18_3270644462-5 76 92.203950 hybrid +144_2-17 Q0 KILT_82488-5 77 92.186770 hybrid +144_2-17 Q0 MARCO_27_1146612109-5 78 92.178225 hybrid +144_2-17 Q0 KILT_20649079-3 79 92.153870 hybrid +144_2-17 Q0 KILT_11463948-3 80 92.149620 hybrid +144_2-17 Q0 KILT_40305820-13 81 92.119570 hybrid +144_2-17 Q0 KILT_23595810-9 82 92.119120 hybrid +144_2-17 Q0 MARCO_23_127383780-6 83 92.112220 hybrid +144_2-17 Q0 KILT_55382641-2 84 92.109320 hybrid +144_2-17 Q0 MARCO_52_1610238832-2 85 92.099456 hybrid +144_2-17 Q0 MARCO_36_831952686-2 86 92.072720 hybrid +144_2-17 Q0 MARCO_19_1767990244-4 87 92.072320 hybrid +144_2-17 Q0 KILT_832774-14 88 92.008320 hybrid +144_2-17 Q0 MARCO_28_970280486-1 89 92.006320 hybrid +144_2-17 Q0 MARCO_50_1715454007-6 90 92.004370 hybrid +144_2-17 Q0 MARCO_17_3580319373-21 91 91.997570 hybrid +144_2-17 Q0 MARCO_34_7241200-3 92 91.926020 hybrid +144_2-17 Q0 MARCO_53_1398750048-7 93 91.888770 hybrid +144_2-17 Q0 KILT_1295284-8 94 91.884770 hybrid +144_2-17 Q0 KILT_704428-5 95 91.883420 hybrid +144_2-17 Q0 MARCO_18_542810802-8 96 91.883419 hybrid +144_2-17 Q0 MARCO_17_2092527764-13 97 91.879570 hybrid +144_2-17 Q0 MARCO_19_1767990244-12 98 91.870070 hybrid +144_2-17 Q0 MARCO_50_1312847755-4 99 91.841570 hybrid +144_2-17 Q0 MARCO_47_1516406453-1 100 91.823443 hybrid +144_2-3 Q0 MARCO_18_3116977530-1 1 91.244344 hybrid +144_2-3 Q0 MARCO_18_3116977530-10 2 90.956656 hybrid +144_2-3 Q0 MARCO_18_3116977530-11 3 90.953132 hybrid +144_2-3 Q0 MARCO_18_3270644462-18 4 90.446495 hybrid +144_2-3 Q0 MARCO_18_3116977530-2 5 90.403317 hybrid +144_2-3 Q0 MARCO_18_3116977530-6 6 90.361176 hybrid +144_2-3 Q0 MARCO_18_3116444373-42 7 90.308343 hybrid +144_2-3 Q0 MARCO_18_3116444373-8 8 90.298439 hybrid +144_2-3 Q0 MARCO_18_3116977530-5 9 90.297646 hybrid +144_2-3 Q0 MARCO_18_3116444373-10 10 90.269056 hybrid +144_2-3 Q0 MARCO_18_3116444373-7 11 90.037654 hybrid +144_2-3 Q0 MARCO_18_3116444373-27 12 89.974295 hybrid +144_2-3 Q0 MARCO_12_586299903-22 13 89.949157 hybrid +144_2-3 Q0 MARCO_18_3116444373-35 14 89.891178 hybrid +144_2-3 Q0 KILT_42907493-3 15 89.827538 hybrid +144_2-3 Q0 MARCO_18_3116444373-14 16 89.805939 hybrid +144_2-3 Q0 MARCO_18_3116444373-6 17 89.780370 hybrid +144_2-3 Q0 MARCO_37_710297867-13 18 89.768001 hybrid +144_2-3 Q0 MARCO_18_3116444373-11 19 89.723598 hybrid +144_2-3 Q0 MARCO_31_882254318-6 20 89.655630 hybrid +144_2-3 Q0 MARCO_18_3116444373-2 21 89.618877 hybrid +144_2-3 Q0 MARCO_18_3116444373-13 22 89.572560 hybrid +144_2-3 Q0 MARCO_18_3116317508-4 23 89.518200 hybrid +144_2-3 Q0 MARCO_18_3116444373-12 24 89.486716 hybrid +144_2-3 Q0 MARCO_18_3116664840-29 25 89.394007 hybrid +144_2-3 Q0 KILT_42907493-4 26 89.350580 hybrid +144_2-3 Q0 KILT_42907493-2 27 89.301588 hybrid +144_2-3 Q0 MARCO_18_3116797241-1 28 89.292892 hybrid +144_2-3 Q0 MARCO_52_1606022427-4 29 89.228766 hybrid +144_2-3 Q0 MARCO_47_1516406453-8 30 89.222037 hybrid +144_2-3 Q0 MARCO_18_3116664840-30 31 89.137364 hybrid +144_2-3 Q0 KILT_59118602-2 32 89.131863 hybrid +144_2-3 Q0 MARCO_27_1146612109-2 33 89.127367 hybrid +144_2-3 Q0 MARCO_19_1767990244-45 34 89.115608 hybrid +144_2-3 Q0 MARCO_18_3116977530-14 35 89.073207 hybrid +144_2-3 Q0 MARCO_33_167139586-7 36 89.042962 hybrid +144_2-3 Q0 KILT_37724098-1 37 89.027458 hybrid +144_2-3 Q0 MARCO_36_633444448-28 38 89.023808 hybrid +144_2-3 Q0 MARCO_18_3116756863-14 39 89.020125 hybrid +144_2-3 Q0 MARCO_37_711221842-5 40 89.005143 hybrid +144_2-3 Q0 MARCO_18_3116444373-39 41 88.989643 hybrid +144_2-3 Q0 MARCO_18_3116444373-37 42 88.974753 hybrid +144_2-3 Q0 MARCO_08_1291511765-1 43 88.969158 hybrid +144_2-3 Q0 MARCO_35_308868762-4 44 88.951141 hybrid +144_2-3 Q0 KILT_37724098-9 45 88.942808 hybrid +144_2-3 Q0 MARCO_18_3116444373-43 46 88.927498 hybrid +144_2-3 Q0 KILT_2647515-14 47 88.911173 hybrid +144_2-3 Q0 MARCO_18_3116444373-41 48 88.909839 hybrid +144_2-3 Q0 MARCO_49_615030085-4 49 88.904757 hybrid +144_2-3 Q0 MARCO_36_633444448-35 50 88.882008 hybrid +144_2-3 Q0 MARCO_52_1610238832-2 51 88.880112 hybrid +144_2-3 Q0 MARCO_18_3116756863-11 52 88.877260 hybrid +144_2-3 Q0 MARCO_18_3116756863-28 53 88.868736 hybrid +144_2-3 Q0 MARCO_18_3116444373-22 54 88.857433 hybrid +144_2-3 Q0 MARCO_52_1610969932-2 55 88.850914 hybrid +144_2-3 Q0 MARCO_18_3116444373-1 56 88.837310 hybrid +144_2-3 Q0 KILT_20649079-3 57 88.832258 hybrid +144_2-3 Q0 MARCO_17_2092527764-13 58 88.807258 hybrid +144_2-3 Q0 MARCO_18_3116444373-19 59 88.775372 hybrid +144_2-3 Q0 MARCO_29_865121557-2 60 88.755535 hybrid +144_2-3 Q0 MARCO_00_624541009-1 61 88.736708 hybrid +144_2-3 Q0 MARCO_18_3116664840-62 62 88.736248 hybrid +144_2-3 Q0 MARCO_18_3270644462-29 63 88.730690 hybrid +144_2-3 Q0 MARCO_18_3116444373-36 64 88.729352 hybrid +144_2-3 Q0 MARCO_44_608424211-4 65 88.723942 hybrid +144_2-3 Q0 MARCO_39_444876423-10 66 88.723907 hybrid +144_2-3 Q0 MARCO_52_1615424938-5 67 88.723907 hybrid +144_2-3 Q0 KILT_832774-13 68 88.723258 hybrid +144_2-3 Q0 MARCO_18_3116444373-3 69 88.721231 hybrid +144_2-3 Q0 MARCO_32_743907275-18 70 88.719558 hybrid +144_2-3 Q0 MARCO_02_1715119966-4 71 88.719058 hybrid +144_2-3 Q0 MARCO_18_3116664840-54 72 88.712963 hybrid +144_2-3 Q0 MARCO_18_3116878569-3 73 88.710258 hybrid +144_2-3 Q0 MARCO_18_3116977530-8 74 88.705044 hybrid +144_2-3 Q0 MARCO_18_3116444373-9 75 88.704848 hybrid +144_2-3 Q0 KILT_59118602-8 76 88.701832 hybrid +144_2-3 Q0 KILT_23595810-11 77 88.692458 hybrid +144_2-3 Q0 MARCO_18_3116878569-42 78 88.692362 hybrid +144_2-3 Q0 MARCO_18_3270644462-22 79 88.684750 hybrid +144_2-3 Q0 MARCO_27_1146612109-1 80 88.683838 hybrid +144_2-3 Q0 KILT_20649079-2 81 88.673007 hybrid +144_2-3 Q0 MARCO_36_633444448-8 82 88.665157 hybrid +144_2-3 Q0 MARCO_48_593647008-2 83 88.664068 hybrid +144_2-3 Q0 KILT_59118602-12 84 88.657497 hybrid +144_2-3 Q0 MARCO_36_633444448-36 85 88.646408 hybrid +144_2-3 Q0 MARCO_28_975973065-1 86 88.629707 hybrid +144_2-3 Q0 MARCO_51_113246341-10 87 88.626907 hybrid +144_2-3 Q0 MARCO_52_1608109622-1 88 88.608163 hybrid +144_2-3 Q0 MARCO_52_1608109622-3 89 88.608155 hybrid +144_2-3 Q0 MARCO_18_3270644462-4 90 88.601891 hybrid +144_2-3 Q0 MARCO_18_3119937986-21 91 88.593388 hybrid +144_2-3 Q0 MARCO_50_2737838994-6 92 88.592207 hybrid +144_2-3 Q0 MARCO_18_3116444373-25 93 88.591885 hybrid +144_2-3 Q0 MARCO_49_1568296325-17 94 88.590858 hybrid +144_2-3 Q0 MARCO_18_3270644462-23 95 88.586289 hybrid +144_2-3 Q0 MARCO_18_3116878569-9 96 88.586007 hybrid +144_2-3 Q0 MARCO_18_2718586974-13 97 88.578366 hybrid +144_2-3 Q0 MARCO_37_710297867-15 98 88.576382 hybrid +144_2-3 Q0 MARCO_26_1067160456-1 99 88.574908 hybrid +144_2-3 Q0 MARCO_52_1615415502-2 100 88.572308 hybrid +144_2-5 Q0 MARCO_27_551517218-2 1 94.387225 hybrid +144_2-5 Q0 MARCO_18_3116977530-2 2 94.248776 hybrid +144_2-5 Q0 KILT_23595810-1 3 93.697840 hybrid +144_2-5 Q0 MARCO_18_3116977530-6 4 93.575221 hybrid +144_2-5 Q0 MARCO_28_970280486-9 5 93.325540 hybrid +144_2-5 Q0 MARCO_27_551504842-3 6 93.269367 hybrid +144_2-5 Q0 KILT_12471884-1 7 92.812889 hybrid +144_2-5 Q0 MARCO_26_1067160456-4 8 92.737289 hybrid +144_2-5 Q0 MARCO_18_3116444373-12 9 92.719502 hybrid +144_2-5 Q0 KILT_37724098-1 10 92.689489 hybrid +144_2-5 Q0 MARCO_19_1767990244-6 11 92.598040 hybrid +144_2-5 Q0 MARCO_26_1067160456-6 12 92.438689 hybrid +144_2-5 Q0 MARCO_50_1879385803-9 13 92.310089 hybrid +144_2-5 Q0 MARCO_17_2497921507-37 14 92.281189 hybrid +144_2-5 Q0 KILT_23595810-9 15 92.266239 hybrid +144_2-5 Q0 MARCO_01_1701257605-9 16 92.173919 hybrid +144_2-5 Q0 MARCO_39_444862558-2 17 92.080489 hybrid +144_2-5 Q0 MARCO_18_3116977530-1 18 91.971050 hybrid +144_2-5 Q0 MARCO_47_1512775494-7 19 91.921140 hybrid +144_2-5 Q0 MARCO_39_693892223-40 20 91.915589 hybrid +144_2-5 Q0 KILT_37724098-4 21 91.832290 hybrid +144_2-5 Q0 KILT_642298-2 22 91.743189 hybrid +144_2-5 Q0 MARCO_57_410040915-12 23 91.727739 hybrid +144_2-5 Q0 MARCO_26_1067150539-6 24 91.718989 hybrid +144_2-5 Q0 KILT_401458-3 25 91.702889 hybrid +144_2-5 Q0 MARCO_26_1067160456-1 26 91.689690 hybrid +144_2-5 Q0 MARCO_26_1067150539-1 27 91.554540 hybrid +144_2-5 Q0 MARCO_50_812101681-10 28 91.543989 hybrid +144_2-5 Q0 MARCO_51_175748075-3 29 91.508343 hybrid +144_2-5 Q0 KILT_832774-13 30 91.499839 hybrid +144_2-5 Q0 MARCO_50_1365341758-3 31 91.471739 hybrid +144_2-5 Q0 MARCO_28_970280486-8 32 91.423389 hybrid +144_2-5 Q0 KILT_2952567-8 33 91.423289 hybrid +144_2-5 Q0 MARCO_36_1482767367-10 34 91.419390 hybrid +144_2-5 Q0 MARCO_50_1365341758-4 35 91.406289 hybrid +144_2-5 Q0 KILT_16992-15 36 91.405089 hybrid +144_2-5 Q0 MARCO_17_3245501240-14 37 91.375889 hybrid +144_2-5 Q0 MARCO_24_1169643665-1 38 91.370989 hybrid +144_2-5 Q0 KILT_22131-23 39 91.361294 hybrid +144_2-5 Q0 MARCO_18_3116444373-9 40 91.349078 hybrid +144_2-5 Q0 MARCO_50_1365341758-8 41 91.306689 hybrid +144_2-5 Q0 MARCO_50_812101681-9 42 91.302589 hybrid +144_2-5 Q0 KILT_58671-3 43 91.271039 hybrid +144_2-5 Q0 MARCO_28_972973498-8 44 91.243839 hybrid +144_2-5 Q0 MARCO_50_1365341758-7 45 91.241439 hybrid +144_2-5 Q0 MARCO_51_2027300957-16 46 91.221986 hybrid +144_2-5 Q0 MARCO_49_1853221413-3 47 91.201631 hybrid +144_2-5 Q0 MARCO_50_2121083196-2 48 91.199739 hybrid +144_2-5 Q0 MARCO_44_1910691191-1 49 91.186540 hybrid +144_2-5 Q0 MARCO_50_1879385803-24 50 91.178539 hybrid +144_2-5 Q0 KILT_16920-14 51 91.153540 hybrid +144_2-5 Q0 MARCO_17_3581880174-11 52 91.137739 hybrid +144_2-5 Q0 MARCO_50_812101681-15 53 91.127890 hybrid +144_2-5 Q0 MARCO_51_2027300957-15 54 91.117564 hybrid +144_2-5 Q0 MARCO_50_812101681-14 55 91.081490 hybrid +144_2-5 Q0 MARCO_26_1160466626-40 56 91.037889 hybrid +144_2-5 Q0 MARCO_51_2068291433-17 57 91.013840 hybrid +144_2-5 Q0 MARCO_11_985788415-7 58 91.006639 hybrid +144_2-5 Q0 MARCO_28_972973498-5 59 90.992189 hybrid +144_2-5 Q0 MARCO_44_150687175-3 60 90.980789 hybrid +144_2-5 Q0 MARCO_27_1338595031-5 61 90.965197 hybrid +144_2-5 Q0 MARCO_13_1609306642-15 62 90.949739 hybrid +144_2-5 Q0 MARCO_18_3116444373-40 63 90.912539 hybrid +144_2-5 Q0 MARCO_50_1879385803-10 64 90.906489 hybrid +144_2-5 Q0 KILT_13048565-2 65 90.899378 hybrid +144_2-5 Q0 MARCO_46_288657565-3 66 90.890889 hybrid +144_2-5 Q0 MARCO_28_972973498-1 67 90.885639 hybrid +144_2-5 Q0 KILT_37724098-6 68 90.868690 hybrid +144_2-5 Q0 MARCO_26_1067160456-3 69 90.831789 hybrid +144_2-5 Q0 KILT_51215-18 70 90.799689 hybrid +144_2-5 Q0 MARCO_50_1715454007-6 71 90.794390 hybrid +144_2-5 Q0 MARCO_01_1701257605-8 72 90.788131 hybrid +144_2-5 Q0 MARCO_15_518384160-34 73 90.776939 hybrid +144_2-5 Q0 MARCO_11_807666677-17 74 90.768939 hybrid +144_2-5 Q0 MARCO_01_299436966-31 75 90.761139 hybrid +144_2-5 Q0 MARCO_51_2018044144-24 76 90.755611 hybrid +144_2-5 Q0 KILT_43851474-5 77 90.751490 hybrid +144_2-5 Q0 MARCO_27_1365305430-1 78 90.741489 hybrid +144_2-5 Q0 MARCO_23_125873038-9 79 90.736090 hybrid +144_2-5 Q0 MARCO_27_551491409-8 80 90.729334 hybrid +144_2-5 Q0 KILT_37724098-2 81 90.725539 hybrid +144_2-5 Q0 MARCO_23_525070746-3 82 90.705739 hybrid +144_2-5 Q0 MARCO_03_979976705-1 83 90.691639 hybrid +144_2-5 Q0 MARCO_54_656937915-4 84 90.690839 hybrid +144_2-5 Q0 MARCO_17_820929208-5 85 90.681089 hybrid +144_2-5 Q0 MARCO_11_471762243-3 86 90.679989 hybrid +144_2-5 Q0 KILT_1078982-4 87 90.669839 hybrid +144_2-5 Q0 MARCO_18_1294400184-18 88 90.668590 hybrid +144_2-5 Q0 MARCO_27_551517218-4 89 90.659846 hybrid +144_2-5 Q0 MARCO_18_653093240-28 90 90.650939 hybrid +144_2-5 Q0 MARCO_20_1481473889-3 91 90.646589 hybrid +144_2-5 Q0 MARCO_46_288657565-5 92 90.642139 hybrid +144_2-5 Q0 MARCO_17_1271336276-7 93 90.637039 hybrid +144_2-5 Q0 MARCO_51_2029072262-6 94 90.633013 hybrid +144_2-5 Q0 MARCO_00_515635549-4 95 90.631939 hybrid +144_2-5 Q0 MARCO_40_126582492-1 96 90.628739 hybrid +144_2-5 Q0 MARCO_41_2058971511-3 97 90.613790 hybrid +144_2-5 Q0 MARCO_07_1056397395-1 98 90.612566 hybrid +144_2-5 Q0 MARCO_25_68543874-6 99 90.609389 hybrid +144_2-5 Q0 MARCO_13_1602218841-11 100 90.595889 hybrid +144_2-7 Q0 MARCO_31_882254318-6 1 97.666404 hybrid +144_2-7 Q0 MARCO_26_1067160456-1 2 96.542861 hybrid +144_2-7 Q0 MARCO_26_1067150539-1 3 94.941861 hybrid +144_2-7 Q0 MARCO_27_1146612109-1 4 94.660356 hybrid +144_2-7 Q0 MARCO_26_1067150539-2 5 94.441761 hybrid +144_2-7 Q0 MARCO_18_3116444373-43 6 94.248349 hybrid +144_2-7 Q0 MARCO_18_3116444373-40 7 94.068604 hybrid +144_2-7 Q0 MARCO_26_1067160456-6 8 94.068361 hybrid +144_2-7 Q0 MARCO_26_1067150539-6 9 93.614311 hybrid +144_2-7 Q0 MARCO_17_3581880174-11 10 93.368761 hybrid +144_2-7 Q0 MARCO_50_2210096877-9 11 93.220411 hybrid +144_2-7 Q0 MARCO_26_1067160456-2 12 93.173862 hybrid +144_2-7 Q0 MARCO_18_3116444373-9 13 92.730123 hybrid +144_2-7 Q0 MARCO_29_1645007063-1 14 92.721111 hybrid +144_2-7 Q0 MARCO_18_3116444373-44 15 92.706256 hybrid +144_2-7 Q0 MARCO_50_1715454007-19 16 92.696561 hybrid +144_2-7 Q0 MARCO_18_3116977530-4 17 92.687784 hybrid +144_2-7 Q0 MARCO_18_3116878569-9 18 92.528674 hybrid +144_2-7 Q0 MARCO_18_3116444373-39 19 92.476974 hybrid +144_2-7 Q0 MARCO_31_882254318-3 20 92.440061 hybrid +144_2-7 Q0 MARCO_50_2210096877-13 21 92.434261 hybrid +144_2-7 Q0 KILT_23595810-1 22 92.381111 hybrid +144_2-7 Q0 MARCO_18_3116756863-11 23 92.324612 hybrid +144_2-7 Q0 KILT_2647515-17 24 92.292627 hybrid +144_2-7 Q0 MARCO_26_1067150539-5 25 92.267462 hybrid +144_2-7 Q0 MARCO_16_2409784215-11 26 92.187012 hybrid +144_2-7 Q0 MARCO_18_3116444373-12 27 92.157861 hybrid +144_2-7 Q0 KILT_40305820-12 28 92.114012 hybrid +144_2-7 Q0 MARCO_17_3581880174-21 29 92.112811 hybrid +144_2-7 Q0 MARCO_18_3116444373-42 30 92.100154 hybrid +144_2-7 Q0 MARCO_18_3116878569-16 31 92.099057 hybrid +144_2-7 Q0 MARCO_56_708842463-7 32 92.085511 hybrid +144_2-7 Q0 MARCO_09_739627690-6 33 92.073462 hybrid +144_2-7 Q0 MARCO_49_1740214942-4 34 92.067461 hybrid +144_2-7 Q0 KILT_37724098-4 35 92.060262 hybrid +144_2-7 Q0 MARCO_24_1139122304-6 36 92.058998 hybrid +144_2-7 Q0 MARCO_18_3116878569-42 37 92.028513 hybrid +144_2-7 Q0 MARCO_52_1619588246-1 38 92.021361 hybrid +144_2-7 Q0 MARCO_52_1608508127-3 39 91.995656 hybrid +144_2-7 Q0 MARCO_52_1611218176-12 40 91.952222 hybrid +144_2-7 Q0 MARCO_50_2210096877-32 41 91.949461 hybrid +144_2-7 Q0 KILT_59118602-8 42 91.918364 hybrid +144_2-7 Q0 MARCO_17_884867375-34 43 91.909411 hybrid +144_2-7 Q0 MARCO_23_127383780-8 44 91.909162 hybrid +144_2-7 Q0 MARCO_50_2737838994-1 45 91.891961 hybrid +144_2-7 Q0 MARCO_02_1715461544-1 46 91.881512 hybrid +144_2-7 Q0 MARCO_52_1611685648-5 47 91.872924 hybrid +144_2-7 Q0 MARCO_49_1740161577-5 48 91.848661 hybrid +144_2-7 Q0 MARCO_18_108375057-14 49 91.839111 hybrid +144_2-7 Q0 MARCO_44_613784868-4 50 91.832511 hybrid +144_2-7 Q0 MARCO_26_1067150539-3 51 91.821911 hybrid +144_2-7 Q0 MARCO_18_3116878569-48 52 91.804696 hybrid +144_2-7 Q0 MARCO_49_1740273108-5 53 91.803512 hybrid +144_2-7 Q0 MARCO_35_259954299-6 54 91.796461 hybrid +144_2-7 Q0 MARCO_36_847077396-2 55 91.767211 hybrid +144_2-7 Q0 MARCO_38_5154368-1 56 91.767210 hybrid +144_2-7 Q0 MARCO_19_1767990244-41 57 91.751962 hybrid +144_2-7 Q0 MARCO_50_2049034577-22 58 91.735711 hybrid +144_2-7 Q0 MARCO_18_3116444373-2 59 91.715182 hybrid +144_2-7 Q0 MARCO_50_1017969259-19 60 91.696112 hybrid +144_2-7 Q0 KILT_8664816-4 61 91.688157 hybrid +144_2-7 Q0 MARCO_35_308927978-13 62 91.660111 hybrid +144_2-7 Q0 MARCO_52_1611201508-5 63 91.640061 hybrid +144_2-7 Q0 MARCO_52_1605932689-3 64 91.630461 hybrid +144_2-7 Q0 MARCO_40_1075686646-4 65 91.621811 hybrid +144_2-7 Q0 MARCO_53_1398750048-7 66 91.603762 hybrid +144_2-7 Q0 MARCO_39_444862558-1 67 91.599161 hybrid +144_2-7 Q0 MARCO_50_1312847755-68 68 91.582961 hybrid +144_2-7 Q0 MARCO_09_739564359-3 69 91.582062 hybrid +144_2-7 Q0 MARCO_44_608424211-2 70 91.575711 hybrid +144_2-7 Q0 MARCO_37_711221842-5 71 91.560730 hybrid +144_2-7 Q0 MARCO_48_1474043178-8 72 91.544011 hybrid +144_2-7 Q0 MARCO_18_3116878569-8 73 91.536455 hybrid +144_2-7 Q0 KILT_40667983-9 74 91.521611 hybrid +144_2-7 Q0 MARCO_09_739564359-2 75 91.517911 hybrid +144_2-7 Q0 MARCO_18_3116878569-44 76 91.513162 hybrid +144_2-7 Q0 MARCO_50_1715454007-31 77 91.511162 hybrid +144_2-7 Q0 MARCO_50_1017969259-27 78 91.510561 hybrid +144_2-7 Q0 KILT_2647515-14 79 91.504876 hybrid +144_2-7 Q0 MARCO_50_1312847755-48 80 91.501211 hybrid +144_2-7 Q0 MARCO_17_884867375-26 81 91.482011 hybrid +144_2-7 Q0 MARCO_18_3121862264-31 82 91.475546 hybrid +144_2-7 Q0 MARCO_28_972973498-9 83 91.472761 hybrid +144_2-7 Q0 MARCO_18_3116444373-35 84 91.464622 hybrid +144_2-7 Q0 MARCO_01_686831562-68 85 91.463962 hybrid +144_2-7 Q0 MARCO_44_613784868-1 86 91.458261 hybrid +144_2-7 Q0 MARCO_17_2092527764-13 87 91.457861 hybrid +144_2-7 Q0 MARCO_17_2092527764-3 88 91.455662 hybrid +144_2-7 Q0 MARCO_38_5378023-2 89 91.455112 hybrid +144_2-7 Q0 MARCO_09_738827493-2 90 91.454011 hybrid +144_2-7 Q0 MARCO_17_885024530-14 91 91.447062 hybrid +144_2-7 Q0 MARCO_18_3116510005-17 92 91.445848 hybrid +144_2-7 Q0 KILT_2647515-22 93 91.444417 hybrid +144_2-7 Q0 MARCO_52_323885813-2 94 91.438811 hybrid +144_2-7 Q0 MARCO_47_1512775494-8 95 91.431688 hybrid +144_2-7 Q0 KILT_909036-10 96 91.430262 hybrid +144_2-7 Q0 KILT_2647515-21 97 91.428216 hybrid +144_2-7 Q0 MARCO_59_374982210-3 98 91.427511 hybrid +144_2-7 Q0 MARCO_40_1068991835-1 99 91.424212 hybrid +144_2-7 Q0 MARCO_36_854436803-9 100 91.423911 hybrid +144_2-9 Q0 MARCO_06_1561972038-10 1 88.078045 hybrid +144_2-9 Q0 MARCO_41_2084998181-5 2 87.926482 hybrid +144_2-9 Q0 MARCO_54_1978539296-15 3 87.842845 hybrid +144_2-9 Q0 MARCO_08_1036385169-64 4 87.823495 hybrid +144_2-9 Q0 MARCO_20_870069371-2 5 87.820226 hybrid +144_2-9 Q0 MARCO_39_765898479-2 6 87.738145 hybrid +144_2-9 Q0 MARCO_15_1918955320-1 7 87.626346 hybrid +144_2-9 Q0 MARCO_03_1802977506-3 8 87.618095 hybrid +144_2-9 Q0 MARCO_55_133784928-2 9 87.558168 hybrid +144_2-9 Q0 KILT_1038887-2 10 87.485331 hybrid +144_2-9 Q0 MARCO_39_1565905913-14 11 87.469324 hybrid +144_2-9 Q0 MARCO_42_1191198866-3 12 87.433012 hybrid +144_2-9 Q0 MARCO_42_1191194144-3 13 87.417538 hybrid +144_2-9 Q0 MARCO_56_32638359-4 14 87.403095 hybrid +144_2-9 Q0 MARCO_50_1124059534-19 15 87.395095 hybrid +144_2-9 Q0 MARCO_51_2025171882-11 16 87.388559 hybrid +144_2-9 Q0 MARCO_41_1816846170-1 17 87.367445 hybrid +144_2-9 Q0 MARCO_54_197091096-4 18 87.355345 hybrid +144_2-9 Q0 MARCO_00_1180027187-1 19 87.325446 hybrid +144_2-9 Q0 MARCO_14_464759366-19 20 87.309229 hybrid +144_2-9 Q0 MARCO_39_1565701236-10 21 87.305429 hybrid +144_2-9 Q0 MARCO_42_1191198866-1 22 87.302240 hybrid +144_2-9 Q0 MARCO_19_564053863-83 23 87.288601 hybrid +144_2-9 Q0 MARCO_11_906621233-1 24 87.267645 hybrid +144_2-9 Q0 MARCO_17_871897909-12 25 87.259595 hybrid +144_2-9 Q0 MARCO_27_1332853232-8 26 87.258646 hybrid +144_2-9 Q0 MARCO_39_1565905913-13 27 87.247080 hybrid +144_2-9 Q0 MARCO_23_1623818577-1 28 87.239995 hybrid +144_2-9 Q0 MARCO_01_1135777943-15 29 87.229946 hybrid +144_2-9 Q0 MARCO_14_465466264-19 30 87.227175 hybrid +144_2-9 Q0 MARCO_22_1494927212-2 31 87.211545 hybrid +144_2-9 Q0 MARCO_36_951637961-7 32 87.198496 hybrid +144_2-9 Q0 KILT_41228673-41 33 87.180117 hybrid +144_2-9 Q0 MARCO_14_465466264-18 34 87.166399 hybrid +144_2-9 Q0 MARCO_48_1355912084-4 35 87.159795 hybrid +144_2-9 Q0 MARCO_43_526662722-2 36 87.157445 hybrid +144_2-9 Q0 MARCO_23_646576475-14 37 87.156931 hybrid +144_2-9 Q0 MARCO_50_916869061-11 38 87.129695 hybrid +144_2-9 Q0 MARCO_39_1565905913-15 39 87.128168 hybrid +144_2-9 Q0 MARCO_50_1879385803-9 40 87.120595 hybrid +144_2-9 Q0 MARCO_50_1510199927-30 41 87.117029 hybrid +144_2-9 Q0 MARCO_19_564053863-26 42 87.104433 hybrid +144_2-9 Q0 MARCO_36_951494101-2 43 87.102839 hybrid +144_2-9 Q0 MARCO_50_1617367207-3 44 87.102695 hybrid +144_2-9 Q0 MARCO_51_2025171882-12 45 87.101587 hybrid +144_2-9 Q0 MARCO_19_564053863-38 46 87.097788 hybrid +144_2-9 Q0 MARCO_41_2085507859-27 47 87.090036 hybrid +144_2-9 Q0 MARCO_14_457645845-1 48 87.084295 hybrid +144_2-9 Q0 MARCO_22_1245441228-1 49 87.069146 hybrid +144_2-9 Q0 MARCO_54_172568623-9 50 87.068323 hybrid +144_2-9 Q0 MARCO_07_263923330-4 51 87.063082 hybrid +144_2-9 Q0 MARCO_50_1030988788-13 52 87.048696 hybrid +144_2-9 Q0 MARCO_14_467442369-12 53 87.040918 hybrid +144_2-9 Q0 MARCO_19_1083554153-11 54 87.039196 hybrid +144_2-9 Q0 MARCO_44_1988604499-4 55 87.036396 hybrid +144_2-9 Q0 MARCO_47_1415542353-1 56 87.035145 hybrid +144_2-9 Q0 MARCO_11_116535980-93 57 87.031313 hybrid +144_2-9 Q0 MARCO_02_1432985660-8 58 87.029746 hybrid +144_2-9 Q0 MARCO_02_1433024531-26 59 87.029745 hybrid +144_2-9 Q0 MARCO_02_1433056509-9 60 87.029745 hybrid +144_2-9 Q0 MARCO_02_1433068528-10 61 87.029744 hybrid +144_2-9 Q0 MARCO_26_768462490-2 62 87.028595 hybrid +144_2-9 Q0 MARCO_28_332908071-3 63 87.020952 hybrid +144_2-9 Q0 MARCO_50_834441021-11 64 87.016295 hybrid +144_2-9 Q0 MARCO_50_1143883143-6 65 87.012445 hybrid +144_2-9 Q0 MARCO_50_834441021-5 66 87.010895 hybrid +144_2-9 Q0 MARCO_40_1271109547-2 67 87.007509 hybrid +144_2-9 Q0 MARCO_14_467442369-47 68 87.005060 hybrid +144_2-9 Q0 MARCO_25_282951392-5 69 87.002245 hybrid +144_2-9 Q0 MARCO_02_1569528688-1 70 86.993345 hybrid +144_2-9 Q0 MARCO_11_692240180-3 71 86.982782 hybrid +144_2-9 Q0 MARCO_40_1268041629-8 72 86.982409 hybrid +144_2-9 Q0 MARCO_56_256211312-3 73 86.981145 hybrid +144_2-9 Q0 MARCO_42_1191236981-3 74 86.977230 hybrid +144_2-9 Q0 MARCO_36_951494101-4 75 86.973574 hybrid +144_2-9 Q0 MARCO_02_1432985660-1 76 86.972945 hybrid +144_2-9 Q0 MARCO_27_1399507588-14 77 86.972945 hybrid +144_2-9 Q0 MARCO_14_467442369-5 78 86.965670 hybrid +144_2-9 Q0 MARCO_36_951494101-5 79 86.965334 hybrid +144_2-9 Q0 MARCO_06_1877975272-1 80 86.962495 hybrid +144_2-9 Q0 MARCO_11_692246100-5 81 86.958979 hybrid +144_2-9 Q0 MARCO_42_1191198866-2 82 86.954424 hybrid +144_2-9 Q0 MARCO_50_2394652640-44 83 86.952946 hybrid +144_2-9 Q0 MARCO_18_924403543-6 84 86.944590 hybrid +144_2-9 Q0 MARCO_14_465466264-12 85 86.943651 hybrid +144_2-9 Q0 MARCO_50_2132501745-23 86 86.938046 hybrid +144_2-9 Q0 MARCO_41_2085507859-9 87 86.936777 hybrid +144_2-9 Q0 MARCO_40_1268041629-6 88 86.927095 hybrid +144_2-9 Q0 MARCO_39_35494754-9 89 86.925867 hybrid +144_2-9 Q0 MARCO_23_646576475-13 90 86.922419 hybrid +144_2-9 Q0 MARCO_41_2082014339-4 91 86.920637 hybrid +144_2-9 Q0 MARCO_38_536276356-1 92 86.917545 hybrid +144_2-9 Q0 KILT_5006565-6 93 86.917185 hybrid +144_2-9 Q0 KILT_60323001-6 94 86.912828 hybrid +144_2-9 Q0 MARCO_14_465466264-8 95 86.909639 hybrid +144_2-9 Q0 MARCO_50_1725090542-13 96 86.907745 hybrid +144_2-9 Q0 MARCO_58_1470489104-53 97 86.907546 hybrid +144_2-9 Q0 MARCO_36_951494101-6 98 86.904627 hybrid +144_2-9 Q0 KILT_40725467-2 99 86.904291 hybrid +144_2-9 Q0 MARCO_22_1495942667-4 100 86.904096 hybrid +144_3-1 Q0 MARCO_50_2174712329-22 1 88.172905 hybrid +144_3-1 Q0 MARCO_39_27772509-11 2 87.904811 hybrid +144_3-1 Q0 MARCO_42_1429885490-2 3 87.816805 hybrid +144_3-1 Q0 MARCO_01_1056439620-288 4 87.761760 hybrid +144_3-1 Q0 KILT_1424999-8 5 87.760791 hybrid +144_3-1 Q0 MARCO_30_455675595-3 6 87.738063 hybrid +144_3-1 Q0 MARCO_50_1412083651-7 7 87.705542 hybrid +144_3-1 Q0 MARCO_35_832818110-1 8 87.705155 hybrid +144_3-1 Q0 MARCO_54_172263646-19 9 87.695667 hybrid +144_3-1 Q0 MARCO_40_773018126-13 10 87.668055 hybrid +144_3-1 Q0 MARCO_27_551542643-8 11 87.630390 hybrid +144_3-1 Q0 MARCO_22_1492491069-1 12 87.614704 hybrid +144_3-1 Q0 MARCO_24_1312795837-30 13 87.604640 hybrid +144_3-1 Q0 MARCO_04_849827808-2 14 87.594655 hybrid +144_3-1 Q0 MARCO_19_1804763398-6 15 87.593655 hybrid +144_3-1 Q0 MARCO_24_1264863632-5 16 87.579005 hybrid +144_3-1 Q0 MARCO_50_2413981820-9 17 87.529155 hybrid +144_3-1 Q0 MARCO_50_1597611796-13 18 87.499355 hybrid +144_3-1 Q0 MARCO_50_1811325195-18 19 87.499354 hybrid +144_3-1 Q0 MARCO_51_173322432-1 20 87.499354 hybrid +144_3-1 Q0 MARCO_28_166822641-3 21 87.487355 hybrid +144_3-1 Q0 MARCO_50_1537821753-13 22 87.467105 hybrid +144_3-1 Q0 MARCO_50_1812136085-11 23 87.467104 hybrid +144_3-1 Q0 MARCO_35_832818110-3 24 87.464055 hybrid +144_3-1 Q0 MARCO_50_1412083651-15 25 87.442462 hybrid +144_3-1 Q0 MARCO_40_1222846375-2 26 87.432705 hybrid +144_3-1 Q0 MARCO_24_1265547418-3 27 87.421655 hybrid +144_3-1 Q0 MARCO_50_1931411621-10 28 87.416591 hybrid +144_3-1 Q0 MARCO_23_1681322289-1 29 87.414305 hybrid +144_3-1 Q0 MARCO_39_27721594-12 30 87.384136 hybrid +144_3-1 Q0 MARCO_49_515254021-9 31 87.382236 hybrid +144_3-1 Q0 MARCO_50_1970611268-21 32 87.375614 hybrid +144_3-1 Q0 MARCO_24_1265897864-1 33 87.372505 hybrid +144_3-1 Q0 MARCO_50_1076872376-16 34 87.365405 hybrid +144_3-1 Q0 MARCO_44_540204572-7 35 87.362655 hybrid +144_3-1 Q0 MARCO_48_1714161408-5 36 87.354805 hybrid +144_3-1 Q0 MARCO_39_1564727731-10 37 87.331405 hybrid +144_3-1 Q0 MARCO_15_1809491569-6 38 87.329405 hybrid +144_3-1 Q0 MARCO_50_929616868-28 39 87.327312 hybrid +144_3-1 Q0 KILT_5728124-3 40 87.321460 hybrid +144_3-1 Q0 MARCO_50_2250289377-24 41 87.315155 hybrid +144_3-1 Q0 MARCO_50_929616868-4 42 87.312320 hybrid +144_3-1 Q0 KILT_1424999-5 43 87.296749 hybrid +144_3-1 Q0 MARCO_49_1442524361-7 44 87.284805 hybrid +144_3-1 Q0 MARCO_50_1310545372-31 45 87.279955 hybrid +144_3-1 Q0 MARCO_39_216645191-3 46 87.272905 hybrid +144_3-1 Q0 MARCO_56_1006526073-1 47 87.261805 hybrid +144_3-1 Q0 MARCO_49_238088672-2 48 87.252505 hybrid +144_3-1 Q0 MARCO_23_1681038643-2 49 87.241605 hybrid +144_3-1 Q0 KILT_1424999-7 50 87.231746 hybrid +144_3-1 Q0 KILT_1424999-6 51 87.230754 hybrid +144_3-1 Q0 MARCO_50_2497640154-7 52 87.219205 hybrid +144_3-1 Q0 MARCO_50_1937354188-16 53 87.216487 hybrid +144_3-1 Q0 MARCO_01_1055971344-10 54 87.207942 hybrid +144_3-1 Q0 MARCO_50_2154158921-21 55 87.203556 hybrid +144_3-1 Q0 MARCO_24_104585648-2 56 87.197755 hybrid +144_3-1 Q0 MARCO_50_1931411621-3 57 87.195491 hybrid +144_3-1 Q0 MARCO_31_25079875-1 58 87.187605 hybrid +144_3-1 Q0 MARCO_55_204304509-26 59 87.180655 hybrid +144_3-1 Q0 MARCO_50_929616868-7 60 87.171581 hybrid +144_3-1 Q0 MARCO_50_1153643370-36 61 87.151555 hybrid +144_3-1 Q0 MARCO_49_515254021-11 62 87.149709 hybrid +144_3-1 Q0 MARCO_59_721736513-1 63 87.146655 hybrid +144_3-1 Q0 MARCO_50_1104901456-1 64 87.140655 hybrid +144_3-1 Q0 MARCO_29_111827905-3 65 87.119805 hybrid +144_3-1 Q0 MARCO_52_1741655285-1 66 87.109755 hybrid +144_3-1 Q0 MARCO_50_1931411621-7 67 87.109630 hybrid +144_3-1 Q0 MARCO_44_196653807-6 68 87.109405 hybrid +144_3-1 Q0 MARCO_24_1312795837-6 69 87.108655 hybrid +144_3-1 Q0 MARCO_50_1970611268-20 70 87.103633 hybrid +144_3-1 Q0 MARCO_50_1928168365-2 71 87.088848 hybrid +144_3-1 Q0 MARCO_02_59595046-3 72 87.088705 hybrid +144_3-1 Q0 MARCO_50_1928168365-7 73 87.082958 hybrid +144_3-1 Q0 MARCO_42_1893358564-6 74 87.069057 hybrid +144_3-1 Q0 MARCO_03_249412985-13 75 87.058597 hybrid +144_3-1 Q0 MARCO_50_1935898634-26 76 87.053371 hybrid +144_3-1 Q0 MARCO_50_2165446805-12 77 87.049831 hybrid +144_3-1 Q0 MARCO_42_251519514-1 78 87.049455 hybrid +144_3-1 Q0 KILT_2093258-1 79 87.048155 hybrid +144_3-1 Q0 MARCO_00_624706452-1 80 87.047305 hybrid +144_3-1 Q0 MARCO_03_1723288227-4 81 87.045155 hybrid +144_3-1 Q0 MARCO_13_336910672-2 82 87.038055 hybrid +144_3-1 Q0 MARCO_50_1181580700-29 83 87.037608 hybrid +144_3-1 Q0 MARCO_16_2981819985-10 84 87.033245 hybrid +144_3-1 Q0 MARCO_51_2018625900-14 85 87.023067 hybrid +144_3-1 Q0 MARCO_17_670396810-13 86 87.018589 hybrid +144_3-1 Q0 MARCO_50_1928168365-8 87 87.017047 hybrid +144_3-1 Q0 MARCO_50_1928168365-6 88 87.014606 hybrid +144_3-1 Q0 MARCO_50_1529335468-3 89 87.008617 hybrid +144_3-1 Q0 MARCO_50_1928168365-9 90 87.006420 hybrid +144_3-1 Q0 MARCO_05_483098342-4 91 87.004245 hybrid +144_3-1 Q0 MARCO_50_1935898634-46 92 87.003780 hybrid +144_3-1 Q0 MARCO_50_2165446805-1 93 87.003711 hybrid +144_3-1 Q0 MARCO_51_173244366-1 94 87.002705 hybrid +144_3-1 Q0 MARCO_40_1641810489-2 95 86.997655 hybrid +144_3-1 Q0 MARCO_47_1285344033-4 96 86.995159 hybrid +144_3-1 Q0 MARCO_44_485004067-8 97 86.993555 hybrid +144_3-1 Q0 MARCO_50_1935898634-21 98 86.987834 hybrid +144_3-1 Q0 MARCO_11_1259747878-14 99 86.986805 hybrid +144_3-1 Q0 MARCO_50_1937354188-10 100 86.984951 hybrid +145_1-1 Q0 MARCO_00_1103730034-3 1 87.217888 hybrid +145_1-1 Q0 KILT_34167677-2 2 87.187720 hybrid +145_1-1 Q0 MARCO_15_133803271-1 3 87.127879 hybrid +145_1-1 Q0 MARCO_15_133803271-3 4 87.125186 hybrid +145_1-1 Q0 MARCO_44_35321293-3 5 87.103835 hybrid +145_1-1 Q0 KILT_43174445-2 6 87.080725 hybrid +145_1-1 Q0 KILT_25005518-2 7 87.078269 hybrid +145_1-1 Q0 KILT_47700-1 8 86.986434 hybrid +145_1-1 Q0 MARCO_44_35321293-2 9 86.984824 hybrid +145_1-1 Q0 MARCO_15_131999270-1 10 86.979737 hybrid +145_1-1 Q0 MARCO_08_743063601-5 11 86.897032 hybrid +145_1-1 Q0 KILT_38740898-3 12 86.873843 hybrid +145_1-1 Q0 MARCO_58_1506018316-2 13 86.869147 hybrid +145_1-1 Q0 MARCO_28_528320265-8 14 86.842261 hybrid +145_1-1 Q0 MARCO_50_2386869195-6 15 86.826621 hybrid +145_1-1 Q0 MARCO_44_2037703296-5 16 86.802436 hybrid +145_1-1 Q0 MARCO_08_743306876-1 17 86.781190 hybrid +145_1-1 Q0 MARCO_55_130999384-3 18 86.764754 hybrid +145_1-1 Q0 MARCO_15_133803271-6 19 86.761755 hybrid +145_1-1 Q0 MARCO_28_528320265-2 20 86.744447 hybrid +145_1-1 Q0 MARCO_27_1567992001-3 21 86.739976 hybrid +145_1-1 Q0 KILT_2801560-17 22 86.729346 hybrid +145_1-1 Q0 MARCO_50_2386869195-9 23 86.724737 hybrid +145_1-1 Q0 MARCO_45_976543044-2 24 86.718497 hybrid +145_1-1 Q0 MARCO_54_2053931769-1 25 86.695592 hybrid +145_1-1 Q0 MARCO_28_281425850-2 26 86.690293 hybrid +145_1-1 Q0 KILT_43174313-2 27 86.639327 hybrid +145_1-1 Q0 MARCO_24_722482029-13 28 86.634240 hybrid +145_1-1 Q0 MARCO_41_291713694-1 29 86.633064 hybrid +145_1-1 Q0 KILT_47700-15 30 86.627082 hybrid +145_1-1 Q0 MARCO_15_133450036-2 31 86.619822 hybrid +145_1-1 Q0 MARCO_03_447802610-3 32 86.619772 hybrid +145_1-1 Q0 KILT_43174405-2 33 86.614745 hybrid +145_1-1 Q0 MARCO_11_1449875005-2 34 86.598055 hybrid +145_1-1 Q0 MARCO_15_133803271-2 35 86.586553 hybrid +145_1-1 Q0 KILT_43174342-2 36 86.583915 hybrid +145_1-1 Q0 MARCO_08_743306876-4 37 86.582808 hybrid +145_1-1 Q0 KILT_1278066-2 38 86.579047 hybrid +145_1-1 Q0 MARCO_51_1886540985-13 39 86.577231 hybrid +145_1-1 Q0 MARCO_15_132390467-4 40 86.576717 hybrid +145_1-1 Q0 MARCO_51_1886540985-17 41 86.568106 hybrid +145_1-1 Q0 MARCO_01_1869948757-15 42 86.564849 hybrid +145_1-1 Q0 KILT_33900980-2 43 86.556807 hybrid +145_1-1 Q0 KILT_55489348-1 44 86.556784 hybrid +145_1-1 Q0 MARCO_04_208872235-3 45 86.552142 hybrid +145_1-1 Q0 MARCO_08_743306876-3 46 86.527396 hybrid +145_1-1 Q0 KILT_1728672-31 47 86.526328 hybrid +145_1-1 Q0 MARCO_51_1719403071-54 48 86.494078 hybrid +145_1-1 Q0 MARCO_50_1510141711-6 49 86.488379 hybrid +145_1-1 Q0 MARCO_15_133450036-12 50 86.487791 hybrid +145_1-1 Q0 MARCO_15_132431578-3 51 86.485076 hybrid +145_1-1 Q0 MARCO_15_133648640-12 52 86.480559 hybrid +145_1-1 Q0 MARCO_26_89032825-2 53 86.480552 hybrid +145_1-1 Q0 MARCO_51_1886540985-18 54 86.454345 hybrid +145_1-1 Q0 MARCO_15_132547451-3 55 86.448607 hybrid +145_1-1 Q0 KILT_47319898-2 56 86.445845 hybrid +145_1-1 Q0 MARCO_10_831948175-6 57 86.445212 hybrid +145_1-1 Q0 MARCO_24_1015353510-2 58 86.443328 hybrid +145_1-1 Q0 MARCO_15_131999270-7 59 86.440070 hybrid +145_1-1 Q0 MARCO_08_743306876-5 60 86.430777 hybrid +145_1-1 Q0 MARCO_38_1493960108-4 61 86.423606 hybrid +145_1-1 Q0 MARCO_50_2386869195-2 62 86.422950 hybrid +145_1-1 Q0 MARCO_51_2005757213-25 63 86.404586 hybrid +145_1-1 Q0 MARCO_44_35321293-8 64 86.383895 hybrid +145_1-1 Q0 MARCO_15_132547451-6 65 86.381934 hybrid +145_1-1 Q0 MARCO_58_1506018316-7 66 86.381537 hybrid +145_1-1 Q0 MARCO_25_1277790022-20 67 86.380892 hybrid +145_1-1 Q0 MARCO_57_1273336329-1 68 86.374312 hybrid +145_1-1 Q0 MARCO_28_528320265-7 69 86.370360 hybrid +145_1-1 Q0 MARCO_03_1217470245-2 70 86.366339 hybrid +145_1-1 Q0 MARCO_15_133505529-7 71 86.364875 hybrid +145_1-1 Q0 KILT_2801560-15 72 86.364732 hybrid +145_1-1 Q0 MARCO_11_1245999089-4 73 86.360022 hybrid +145_1-1 Q0 MARCO_20_1691602430-3 74 86.359259 hybrid +145_1-1 Q0 MARCO_15_132327400-3 75 86.350965 hybrid +145_1-1 Q0 MARCO_08_743063601-2 76 86.346038 hybrid +145_1-1 Q0 KILT_55489348-2 77 86.344344 hybrid +145_1-1 Q0 MARCO_16_1110546491-3 78 86.341613 hybrid +145_1-1 Q0 KILT_44533183-2 79 86.333052 hybrid +145_1-1 Q0 MARCO_41_291709766-2 80 86.332144 hybrid +145_1-1 Q0 MARCO_58_1506018316-3 81 86.322089 hybrid +145_1-1 Q0 MARCO_00_530877945-1 82 86.315542 hybrid +145_1-1 Q0 MARCO_04_2609510-4 83 86.312242 hybrid +145_1-1 Q0 MARCO_24_1015353510-3 84 86.312041 hybrid +145_1-1 Q0 MARCO_15_132390467-9 85 86.306884 hybrid +145_1-1 Q0 MARCO_15_757516206-3 86 86.301342 hybrid +145_1-1 Q0 MARCO_25_595279481-8 87 86.299692 hybrid +145_1-1 Q0 MARCO_50_2386869195-10 88 86.287711 hybrid +145_1-1 Q0 MARCO_15_133803271-5 89 86.285638 hybrid +145_1-1 Q0 MARCO_16_1686411094-4 90 86.281943 hybrid +145_1-1 Q0 MARCO_58_1506018316-5 91 86.280043 hybrid +145_1-1 Q0 MARCO_33_1621373075-1 92 86.271042 hybrid +145_1-1 Q0 MARCO_19_2051990023-15 93 86.262342 hybrid +145_1-1 Q0 MARCO_27_1301405256-1 94 86.260592 hybrid +145_1-1 Q0 MARCO_54_2053977583-1 95 86.260592 hybrid +145_1-1 Q0 MARCO_15_132547451-5 96 86.258149 hybrid +145_1-1 Q0 KILT_47700-20 97 86.255715 hybrid +145_1-1 Q0 MARCO_50_2386869195-11 98 86.255522 hybrid +145_1-1 Q0 MARCO_01_1679006693-3 99 86.253089 hybrid +145_1-1 Q0 MARCO_12_499248875-1 100 86.241342 hybrid +145_1-3 Q0 MARCO_15_133803271-2 1 92.420370 hybrid +145_1-3 Q0 MARCO_44_35321293-1 2 92.275785 hybrid +145_1-3 Q0 MARCO_44_35321293-2 3 92.155821 hybrid +145_1-3 Q0 MARCO_54_2053931769-1 4 92.004346 hybrid +145_1-3 Q0 MARCO_44_35321293-8 5 91.637300 hybrid +145_1-3 Q0 MARCO_15_132547451-5 6 91.571994 hybrid +145_1-3 Q0 MARCO_15_133803271-3 7 91.307106 hybrid +145_1-3 Q0 MARCO_58_1510071633-3 8 91.189357 hybrid +145_1-3 Q0 MARCO_15_132327400-3 9 91.008080 hybrid +145_1-3 Q0 MARCO_35_255953235-1 10 90.972796 hybrid +145_1-3 Q0 MARCO_15_131999270-1 11 90.886378 hybrid +145_1-3 Q0 MARCO_27_1567992001-3 12 90.820631 hybrid +145_1-3 Q0 MARCO_15_132547451-8 13 90.781806 hybrid +145_1-3 Q0 MARCO_06_2601963-37 14 90.722446 hybrid +145_1-3 Q0 MARCO_44_2037703296-5 15 90.642435 hybrid +145_1-3 Q0 MARCO_00_1103658282-4 16 90.601919 hybrid +145_1-3 Q0 MARCO_36_981529605-2 17 90.579247 hybrid +145_1-3 Q0 MARCO_25_595279481-6 18 90.549946 hybrid +145_1-3 Q0 MARCO_25_595279481-8 19 90.524646 hybrid +145_1-3 Q0 MARCO_28_528320265-8 20 90.514324 hybrid +145_1-3 Q0 MARCO_28_528320265-2 21 90.512437 hybrid +145_1-3 Q0 MARCO_27_1336752185-6 22 90.508984 hybrid +145_1-3 Q0 MARCO_15_132382047-6 23 90.495288 hybrid +145_1-3 Q0 MARCO_15_133803271-6 24 90.440901 hybrid +145_1-3 Q0 MARCO_15_132390467-3 25 90.440787 hybrid +145_1-3 Q0 KILT_47700-15 26 90.437315 hybrid +145_1-3 Q0 MARCO_22_1063811612-2 27 90.327147 hybrid +145_1-3 Q0 MARCO_15_132327400-8 28 90.304686 hybrid +145_1-3 Q0 MARCO_07_885852465-5 29 90.299246 hybrid +145_1-3 Q0 MARCO_59_603880583-2 30 90.274385 hybrid +145_1-3 Q0 MARCO_01_1679006693-3 31 90.252600 hybrid +145_1-3 Q0 MARCO_21_1038592258-3 32 90.252463 hybrid +145_1-3 Q0 MARCO_55_339238680-2 33 90.247746 hybrid +145_1-3 Q0 MARCO_11_1245999089-4 34 90.245689 hybrid +145_1-3 Q0 MARCO_15_133877816-1 35 90.238367 hybrid +145_1-3 Q0 MARCO_44_1129125636-2 36 90.222596 hybrid +145_1-3 Q0 MARCO_16_1110546491-3 37 90.206229 hybrid +145_1-3 Q0 KILT_2801560-17 38 90.204574 hybrid +145_1-3 Q0 MARCO_19_2051990023-12 39 90.191546 hybrid +145_1-3 Q0 MARCO_30_435276155-1 40 90.184246 hybrid +145_1-3 Q0 MARCO_28_528320265-7 41 90.181251 hybrid +145_1-3 Q0 MARCO_26_1835631313-6 42 90.150458 hybrid +145_1-3 Q0 MARCO_27_1301405256-2 43 90.141047 hybrid +145_1-3 Q0 MARCO_50_2386869195-11 44 90.135865 hybrid +145_1-3 Q0 KILT_1728672-31 45 90.094336 hybrid +145_1-3 Q0 MARCO_08_743306876-1 46 90.082900 hybrid +145_1-3 Q0 MARCO_22_962673540-2 47 90.067146 hybrid +145_1-3 Q0 MARCO_34_1124001146-3 48 90.054296 hybrid +145_1-3 Q0 MARCO_26_74668745-1 49 90.037918 hybrid +145_1-3 Q0 MARCO_28_528320265-4 50 90.026350 hybrid +145_1-3 Q0 MARCO_47_1568009670-3 51 90.006646 hybrid +145_1-3 Q0 MARCO_15_133803271-4 52 90.000926 hybrid +145_1-3 Q0 MARCO_36_685464632-8 53 89.991446 hybrid +145_1-3 Q0 MARCO_01_1679006693-13 54 89.988043 hybrid +145_1-3 Q0 MARCO_31_283025842-1 55 89.982946 hybrid +145_1-3 Q0 MARCO_58_1506018316-3 56 89.976548 hybrid +145_1-3 Q0 MARCO_50_2386869195-10 57 89.964324 hybrid +145_1-3 Q0 MARCO_55_381146103-5 58 89.951146 hybrid +145_1-3 Q0 MARCO_47_1568000980-4 59 89.935697 hybrid +145_1-3 Q0 MARCO_36_1680067743-2 60 89.922846 hybrid +145_1-3 Q0 MARCO_55_127314872-1 61 89.882035 hybrid +145_1-3 Q0 MARCO_22_962673540-3 62 89.880246 hybrid +145_1-3 Q0 MARCO_15_133842840-7 63 89.875831 hybrid +145_1-3 Q0 KILT_34167677-2 64 89.872344 hybrid +145_1-3 Q0 MARCO_50_1409906055-35 65 89.860869 hybrid +145_1-3 Q0 MARCO_00_1103658282-2 66 89.851836 hybrid +145_1-3 Q0 MARCO_27_1197599215-5 67 89.844896 hybrid +145_1-3 Q0 MARCO_28_528320265-6 68 89.834833 hybrid +145_1-3 Q0 MARCO_15_133803271-1 69 89.832533 hybrid +145_1-3 Q0 MARCO_27_41694783-6 70 89.823299 hybrid +145_1-3 Q0 MARCO_58_1574227328-1 71 89.823246 hybrid +145_1-3 Q0 MARCO_00_530877945-3 72 89.814296 hybrid +145_1-3 Q0 MARCO_00_530877945-1 73 89.804246 hybrid +145_1-3 Q0 MARCO_03_1633878862-4 74 89.796896 hybrid +145_1-3 Q0 MARCO_00_1342582786-3 75 89.781996 hybrid +145_1-3 Q0 MARCO_15_133803271-5 76 89.763779 hybrid +145_1-3 Q0 MARCO_02_591754390-2 77 89.737597 hybrid +145_1-3 Q0 MARCO_15_132547451-4 78 89.725609 hybrid +145_1-3 Q0 MARCO_13_1702160838-1 79 89.719346 hybrid +145_1-3 Q0 MARCO_08_743306876-4 80 89.718749 hybrid +145_1-3 Q0 MARCO_24_722482029-13 81 89.718397 hybrid +145_1-3 Q0 MARCO_09_504890329-2 82 89.716597 hybrid +145_1-3 Q0 MARCO_50_2386869195-9 83 89.700030 hybrid +145_1-3 Q0 MARCO_26_1594444537-2 84 89.676546 hybrid +145_1-3 Q0 MARCO_15_132547451-6 85 89.674506 hybrid +145_1-3 Q0 MARCO_25_1277790022-20 86 89.672696 hybrid +145_1-3 Q0 MARCO_27_1322243361-4 87 89.669396 hybrid +145_1-3 Q0 MARCO_14_754564289-1 88 89.663213 hybrid +145_1-3 Q0 MARCO_27_1301405256-1 89 89.652296 hybrid +145_1-3 Q0 MARCO_26_1586966035-2 90 89.645546 hybrid +145_1-3 Q0 MARCO_50_2149016428-17 91 89.643851 hybrid +145_1-3 Q0 MARCO_26_1911372872-4 92 89.641546 hybrid +145_1-3 Q0 MARCO_45_1331683068-3 93 89.623046 hybrid +145_1-3 Q0 MARCO_15_132547451-2 94 89.622656 hybrid +145_1-3 Q0 MARCO_27_1354721193-1 95 89.621346 hybrid +145_1-3 Q0 MARCO_15_132431578-3 96 89.621100 hybrid +145_1-3 Q0 MARCO_58_1506018316-6 97 89.618971 hybrid +145_1-3 Q0 MARCO_08_743063601-5 98 89.616950 hybrid +145_1-3 Q0 MARCO_28_281425850-2 99 89.578108 hybrid +145_1-3 Q0 MARCO_01_881692451-1 100 89.572446 hybrid +145_1-5 Q0 MARCO_06_299057920-5 1 87.154157 hybrid +145_1-5 Q0 MARCO_54_737799151-5 2 87.124707 hybrid +145_1-5 Q0 MARCO_26_120251417-33 3 87.029557 hybrid +145_1-5 Q0 MARCO_28_445624259-20 4 87.025180 hybrid +145_1-5 Q0 MARCO_17_1779424748-17 5 86.928187 hybrid +145_1-5 Q0 MARCO_15_132861171-1 6 86.909512 hybrid +145_1-5 Q0 MARCO_35_997867028-12 7 86.906557 hybrid +145_1-5 Q0 KILT_1707053-13 8 86.891894 hybrid +145_1-5 Q0 KILT_25079-10 9 86.863582 hybrid +145_1-5 Q0 MARCO_00_944211795-4 10 86.862781 hybrid +145_1-5 Q0 MARCO_12_1144579640-7 11 86.813857 hybrid +145_1-5 Q0 MARCO_50_2550999003-8 12 86.805598 hybrid +145_1-5 Q0 MARCO_39_1279508284-4 13 86.791553 hybrid +145_1-5 Q0 MARCO_40_133976380-3 14 86.780257 hybrid +145_1-5 Q0 MARCO_50_1877139932-28 15 86.780157 hybrid +145_1-5 Q0 MARCO_31_880237522-3 16 86.752007 hybrid +145_1-5 Q0 MARCO_51_1738288252-31 17 86.744624 hybrid +145_1-5 Q0 MARCO_11_972970472-6 18 86.744407 hybrid +145_1-5 Q0 MARCO_22_477635610-4 19 86.743207 hybrid +145_1-5 Q0 MARCO_31_1608684018-15 20 86.740047 hybrid +145_1-5 Q0 MARCO_41_1817040778-1 21 86.719012 hybrid +145_1-5 Q0 MARCO_40_616376008-11 22 86.699687 hybrid +145_1-5 Q0 MARCO_20_1570841468-5 23 86.696207 hybrid +145_1-5 Q0 MARCO_14_751038313-6 24 86.695849 hybrid +145_1-5 Q0 MARCO_50_483707024-6 25 86.691516 hybrid +145_1-5 Q0 MARCO_40_151627255-8 26 86.690417 hybrid +145_1-5 Q0 MARCO_47_684172890-6 27 86.680607 hybrid +145_1-5 Q0 MARCO_50_1734482458-36 28 86.675457 hybrid +145_1-5 Q0 MARCO_41_1369064505-34 29 86.674335 hybrid +145_1-5 Q0 MARCO_43_777702374-4 30 86.661075 hybrid +145_1-5 Q0 MARCO_09_1200348772-1 31 86.659892 hybrid +145_1-5 Q0 MARCO_35_399865134-1 32 86.659587 hybrid +145_1-5 Q0 MARCO_09_580955532-2 33 86.652457 hybrid +145_1-5 Q0 MARCO_50_1692909129-29 34 86.640407 hybrid +145_1-5 Q0 MARCO_15_134025424-7 35 86.638507 hybrid +145_1-5 Q0 MARCO_39_541832086-2 36 86.630157 hybrid +145_1-5 Q0 MARCO_06_300561274-35 37 86.621257 hybrid +145_1-5 Q0 MARCO_20_1692168491-3 38 86.610309 hybrid +145_1-5 Q0 MARCO_02_824114915-24 39 86.601787 hybrid +145_1-5 Q0 MARCO_52_411816003-2 40 86.600557 hybrid +145_1-5 Q0 MARCO_00_944211795-19 41 86.593829 hybrid +145_1-5 Q0 MARCO_26_761167713-2 42 86.583207 hybrid +145_1-5 Q0 MARCO_37_174896978-1 43 86.580035 hybrid +145_1-5 Q0 MARCO_51_454697942-25 44 86.576274 hybrid +145_1-5 Q0 KILT_12390747-2 45 86.574328 hybrid +145_1-5 Q0 MARCO_14_219113838-2 46 86.573107 hybrid +145_1-5 Q0 MARCO_19_1537537845-12 47 86.571257 hybrid +145_1-5 Q0 MARCO_20_658709187-8 48 86.555911 hybrid +145_1-5 Q0 MARCO_25_1409483974-8 49 86.555807 hybrid +145_1-5 Q0 MARCO_06_299071332-1 50 86.553307 hybrid +145_1-5 Q0 MARCO_03_558081135-207 51 86.551857 hybrid +145_1-5 Q0 MARCO_24_1499497256-88 52 86.551007 hybrid +145_1-5 Q0 MARCO_36_8609922-2 53 86.550857 hybrid +145_1-5 Q0 MARCO_21_599968506-14 54 86.547000 hybrid +145_1-5 Q0 MARCO_17_690625526-18 55 86.539294 hybrid +145_1-5 Q0 MARCO_50_483550699-8 56 86.538684 hybrid +145_1-5 Q0 MARCO_59_1359951-8 57 86.538107 hybrid +145_1-5 Q0 MARCO_20_1690924657-3 58 86.523685 hybrid +145_1-5 Q0 MARCO_40_695460785-7 59 86.523007 hybrid +145_1-5 Q0 MARCO_42_1653074068-10 60 86.521607 hybrid +145_1-5 Q0 KILT_1728672-4 61 86.515109 hybrid +145_1-5 Q0 MARCO_59_603861620-5 62 86.511790 hybrid +145_1-5 Q0 MARCO_17_695737952-4 63 86.510974 hybrid +145_1-5 Q0 MARCO_51_176207146-1 64 86.505389 hybrid +145_1-5 Q0 MARCO_33_352197220-5 65 86.500484 hybrid +145_1-5 Q0 MARCO_50_2148823955-13 66 86.499133 hybrid +145_1-5 Q0 MARCO_37_174896978-9 67 86.497416 hybrid +145_1-5 Q0 MARCO_06_565551293-3 68 86.493807 hybrid +145_1-5 Q0 MARCO_28_446165919-18 69 86.492679 hybrid +145_1-5 Q0 MARCO_03_1617599722-3 70 86.491007 hybrid +145_1-5 Q0 MARCO_06_299579149-337 71 86.489407 hybrid +145_1-5 Q0 MARCO_35_461758494-1 72 86.484507 hybrid +145_1-5 Q0 MARCO_40_1201266942-3 73 86.477257 hybrid +145_1-5 Q0 MARCO_41_341953509-6 74 86.475200 hybrid +145_1-5 Q0 MARCO_15_1658224391-4 75 86.474157 hybrid +145_1-5 Q0 MARCO_59_947170550-3 76 86.470357 hybrid +145_1-5 Q0 MARCO_24_1497013184-7 77 86.469857 hybrid +145_1-5 Q0 MARCO_26_411490717-10 78 86.465549 hybrid +145_1-5 Q0 MARCO_41_1369064505-51 79 86.465167 hybrid +145_1-5 Q0 MARCO_57_1273189188-1 80 86.461795 hybrid +145_1-5 Q0 MARCO_59_1809164-9 81 86.461557 hybrid +145_1-5 Q0 MARCO_25_1075541031-22 82 86.454007 hybrid +145_1-5 Q0 MARCO_01_1697679628-13 83 86.448604 hybrid +145_1-5 Q0 MARCO_04_185518198-4 84 86.441791 hybrid +145_1-5 Q0 MARCO_03_558081135-203 85 86.441507 hybrid +145_1-5 Q0 MARCO_00_944211795-18 86 86.438403 hybrid +145_1-5 Q0 MARCO_41_1313536082-13 87 86.437957 hybrid +145_1-5 Q0 MARCO_05_368252908-56 88 86.437207 hybrid +145_1-5 Q0 MARCO_44_1119487096-1 89 86.432707 hybrid +145_1-5 Q0 MARCO_06_699499609-7 90 86.431338 hybrid +145_1-5 Q0 MARCO_51_1738182487-47 91 86.422862 hybrid +145_1-5 Q0 MARCO_29_867005795-6 92 86.419833 hybrid +145_1-5 Q0 MARCO_11_776998572-17 93 86.413507 hybrid +145_1-5 Q0 MARCO_23_267463421-11 94 86.413007 hybrid +145_1-5 Q0 MARCO_08_1027109798-213 95 86.411357 hybrid +145_1-5 Q0 MARCO_51_1889273517-29 96 86.411212 hybrid +145_1-5 Q0 MARCO_29_998672874-4 97 86.409657 hybrid +145_1-5 Q0 MARCO_21_1270016770-15 98 86.408657 hybrid +145_1-5 Q0 MARCO_41_1369064505-33 99 86.406405 hybrid +145_1-5 Q0 MARCO_35_135386651-5 100 86.404185 hybrid +145_1-7 Q0 MARCO_24_31979062-5 1 90.146589 hybrid +145_1-7 Q0 MARCO_51_2007527708-13 2 89.693572 hybrid +145_1-7 Q0 MARCO_05_524370505-2 3 89.640639 hybrid +145_1-7 Q0 MARCO_51_1890227767-22 4 89.224830 hybrid +145_1-7 Q0 MARCO_00_1217640893-1 5 89.216839 hybrid +145_1-7 Q0 MARCO_52_657758176-3 6 89.183039 hybrid +145_1-7 Q0 MARCO_48_1216050186-10 7 89.175854 hybrid +145_1-7 Q0 MARCO_15_133176883-4 8 89.140235 hybrid +145_1-7 Q0 MARCO_01_881694147-1 9 89.113689 hybrid +145_1-7 Q0 MARCO_59_603880583-3 10 89.065995 hybrid +145_1-7 Q0 MARCO_20_1112325414-3 11 89.004876 hybrid +145_1-7 Q0 MARCO_20_9146021-13 12 88.986802 hybrid +145_1-7 Q0 MARCO_26_74668745-5 13 88.979012 hybrid +145_1-7 Q0 MARCO_02_694352459-1 14 88.932589 hybrid +145_1-7 Q0 MARCO_20_4843211-9 15 88.922939 hybrid +145_1-7 Q0 MARCO_04_937666623-1 16 88.790189 hybrid +145_1-7 Q0 MARCO_05_524370505-4 17 88.715139 hybrid +145_1-7 Q0 MARCO_15_132390467-4 18 88.711983 hybrid +145_1-7 Q0 MARCO_00_1103677594-3 19 88.682712 hybrid +145_1-7 Q0 KILT_25279689-7 20 88.670839 hybrid +145_1-7 Q0 MARCO_57_115093826-7 21 88.663539 hybrid +145_1-7 Q0 MARCO_04_110329995-3 22 88.602289 hybrid +145_1-7 Q0 MARCO_50_1519091796-2 23 88.589464 hybrid +145_1-7 Q0 MARCO_12_1781831931-8 24 88.574589 hybrid +145_1-7 Q0 MARCO_25_962209202-7 25 88.574589 hybrid +145_1-7 Q0 MARCO_40_716227814-6 26 88.552989 hybrid +145_1-7 Q0 MARCO_51_1329800857-7 27 88.545689 hybrid +145_1-7 Q0 MARCO_38_1493960108-5 28 88.514520 hybrid +145_1-7 Q0 MARCO_45_1354436933-12 29 88.498789 hybrid +145_1-7 Q0 MARCO_08_339400141-2 30 88.487639 hybrid +145_1-7 Q0 MARCO_01_1895804369-2 31 88.482139 hybrid +145_1-7 Q0 MARCO_05_1518564160-4 32 88.464515 hybrid +145_1-7 Q0 MARCO_22_1646884039-11 33 88.459418 hybrid +145_1-7 Q0 MARCO_57_1511704721-5 34 88.458189 hybrid +145_1-7 Q0 MARCO_22_1646884039-2 35 88.457313 hybrid +145_1-7 Q0 MARCO_15_133069767-4 36 88.453902 hybrid +145_1-7 Q0 MARCO_15_133069767-3 37 88.440911 hybrid +145_1-7 Q0 MARCO_26_1639714077-5 38 88.427839 hybrid +145_1-7 Q0 MARCO_46_288684951-2 39 88.426389 hybrid +145_1-7 Q0 MARCO_00_318125183-7 40 88.406339 hybrid +145_1-7 Q0 MARCO_50_2386869195-2 41 88.403777 hybrid +145_1-7 Q0 MARCO_32_389113202-4 42 88.397889 hybrid +145_1-7 Q0 MARCO_06_467815885-6 43 88.388189 hybrid +145_1-7 Q0 MARCO_50_2763480501-2 44 88.371839 hybrid +145_1-7 Q0 MARCO_08_743306876-5 45 88.370622 hybrid +145_1-7 Q0 MARCO_40_736948483-21 46 88.365394 hybrid +145_1-7 Q0 MARCO_55_1324688819-4 47 88.363339 hybrid +145_1-7 Q0 MARCO_12_1449757515-19 48 88.359813 hybrid +145_1-7 Q0 MARCO_31_1132335014-12 49 88.354739 hybrid +145_1-7 Q0 MARCO_50_618659817-5 50 88.351239 hybrid +145_1-7 Q0 MARCO_14_1279284393-8 51 88.350889 hybrid +145_1-7 Q0 KILT_43143-28 52 88.342689 hybrid +145_1-7 Q0 MARCO_51_1886540985-17 53 88.341384 hybrid +145_1-7 Q0 MARCO_44_1129125636-1 54 88.340439 hybrid +145_1-7 Q0 MARCO_02_873546189-5 55 88.327721 hybrid +145_1-7 Q0 MARCO_15_1748698838-7 56 88.317139 hybrid +145_1-7 Q0 MARCO_27_458832253-7 57 88.303589 hybrid +145_1-7 Q0 MARCO_50_1519091796-3 58 88.291747 hybrid +145_1-7 Q0 MARCO_27_41694783-6 59 88.290389 hybrid +145_1-7 Q0 MARCO_04_1455707183-10 60 88.285789 hybrid +145_1-7 Q0 MARCO_04_1455727823-9 61 88.285189 hybrid +145_1-7 Q0 MARCO_26_1917936880-4 62 88.283289 hybrid +145_1-7 Q0 MARCO_25_595279481-13 63 88.281439 hybrid +145_1-7 Q0 MARCO_01_619542446-1 64 88.280489 hybrid +145_1-7 Q0 MARCO_22_1646884039-12 65 88.276984 hybrid +145_1-7 Q0 MARCO_17_475482737-30 66 88.274139 hybrid +145_1-7 Q0 MARCO_40_737232283-14 67 88.249671 hybrid +145_1-7 Q0 MARCO_00_1103730034-3 68 88.245396 hybrid +145_1-7 Q0 MARCO_55_130601227-5 69 88.239211 hybrid +145_1-7 Q0 MARCO_15_133450036-5 70 88.238539 hybrid +145_1-7 Q0 MARCO_03_1739464008-1 71 88.233389 hybrid +145_1-7 Q0 MARCO_55_130601227-3 72 88.229880 hybrid +145_1-7 Q0 MARCO_43_543759418-3 73 88.228289 hybrid +145_1-7 Q0 MARCO_20_9146021-7 74 88.227558 hybrid +145_1-7 Q0 MARCO_45_976543044-6 75 88.193397 hybrid +145_1-7 Q0 MARCO_04_664141058-3 76 88.187839 hybrid +145_1-7 Q0 MARCO_14_1348797499-7 77 88.182889 hybrid +145_1-7 Q0 MARCO_14_1369004927-22 78 88.182889 hybrid +145_1-7 Q0 MARCO_55_478370109-2 79 88.179089 hybrid +145_1-7 Q0 MARCO_27_1380687171-5 80 88.178689 hybrid +145_1-7 Q0 MARCO_16_2831646695-8 81 88.178023 hybrid +145_1-7 Q0 MARCO_26_1727334591-4 82 88.170439 hybrid +145_1-7 Q0 MARCO_47_1574944912-3 83 88.160389 hybrid +145_1-7 Q0 MARCO_20_11005595-2 84 88.159503 hybrid +145_1-7 Q0 MARCO_08_1597096379-3 85 88.153489 hybrid +145_1-7 Q0 MARCO_25_961507016-7 86 88.145789 hybrid +145_1-7 Q0 MARCO_11_1086504249-2 87 88.145039 hybrid +145_1-7 Q0 MARCO_58_1510378795-8 88 88.143104 hybrid +145_1-7 Q0 MARCO_58_1006129946-1 89 88.142439 hybrid +145_1-7 Q0 MARCO_03_928114-6 90 88.139839 hybrid +145_1-7 Q0 MARCO_15_535085063-4 91 88.138689 hybrid +145_1-7 Q0 MARCO_26_1680668938-1 92 88.136989 hybrid +145_1-7 Q0 MARCO_02_1273723386-3 93 88.134489 hybrid +145_1-7 Q0 MARCO_39_683618524-34 94 88.130538 hybrid +145_1-7 Q0 MARCO_55_124386945-5 95 88.125510 hybrid +145_1-7 Q0 MARCO_05_524381886-2 96 88.118139 hybrid +145_1-7 Q0 MARCO_47_757824924-3 97 88.118089 hybrid +145_1-7 Q0 MARCO_44_35321293-2 98 88.115775 hybrid +145_1-7 Q0 MARCO_42_1007832740-2 99 88.106739 hybrid +145_1-7 Q0 MARCO_15_133450036-3 100 88.105689 hybrid +145_2-1 Q0 MARCO_15_133803271-2 1 94.106921 hybrid +145_2-1 Q0 MARCO_00_1103730034-3 2 93.168386 hybrid +145_2-1 Q0 MARCO_58_1506018316-3 3 92.075743 hybrid +145_2-1 Q0 MARCO_15_132390467-4 4 91.766761 hybrid +145_2-1 Q0 MARCO_26_1917936880-4 5 91.190833 hybrid +145_2-1 Q0 MARCO_20_1109717538-15 6 91.174170 hybrid +145_2-1 Q0 MARCO_58_1574227328-1 7 91.118583 hybrid +145_2-1 Q0 MARCO_58_882430285-2 8 91.096560 hybrid +145_2-1 Q0 MARCO_16_1169037935-4 9 91.045233 hybrid +145_2-1 Q0 MARCO_36_685450476-3 10 90.931334 hybrid +145_2-1 Q0 MARCO_15_132382047-6 11 90.904122 hybrid +145_2-1 Q0 KILT_27687935-13 12 90.855783 hybrid +145_2-1 Q0 MARCO_12_1781831931-9 13 90.842333 hybrid +145_2-1 Q0 MARCO_14_1369004927-23 14 90.842332 hybrid +145_2-1 Q0 MARCO_14_1348797499-8 15 90.842332 hybrid +145_2-1 Q0 MARCO_15_132327400-3 16 90.796313 hybrid +145_2-1 Q0 MARCO_27_1160161170-1 17 90.765783 hybrid +145_2-1 Q0 MARCO_15_132547451-5 18 90.755828 hybrid +145_2-1 Q0 MARCO_25_981381376-10 19 90.637433 hybrid +145_2-1 Q0 MARCO_55_339238680-2 20 90.609083 hybrid +145_2-1 Q0 MARCO_14_1279284393-7 21 90.588583 hybrid +145_2-1 Q0 MARCO_07_673645771-7 22 90.587133 hybrid +145_2-1 Q0 MARCO_28_908612979-1 23 90.580314 hybrid +145_2-1 Q0 MARCO_57_648247851-2 24 90.579233 hybrid +145_2-1 Q0 MARCO_17_698547504-17 25 90.569283 hybrid +145_2-1 Q0 MARCO_15_133803271-3 26 90.558508 hybrid +145_2-1 Q0 MARCO_15_133842840-7 27 90.496097 hybrid +145_2-1 Q0 MARCO_27_41694783-6 28 90.495103 hybrid +145_2-1 Q0 MARCO_17_610564815-13 29 90.492683 hybrid +145_2-1 Q0 MARCO_52_1142099112-3 30 90.476599 hybrid +145_2-1 Q0 MARCO_00_1103724260-3 31 90.408832 hybrid +145_2-1 Q0 KILT_2801560-16 32 90.376382 hybrid +145_2-1 Q0 MARCO_36_1680067743-2 33 90.316783 hybrid +145_2-1 Q0 MARCO_26_1586966035-3 34 90.290883 hybrid +145_2-1 Q0 MARCO_08_743306876-5 35 90.269985 hybrid +145_2-1 Q0 MARCO_14_1269887941-9 36 90.256333 hybrid +145_2-1 Q0 MARCO_48_1220807804-3 37 90.250083 hybrid +145_2-1 Q0 MARCO_25_961507016-8 38 90.196583 hybrid +145_2-1 Q0 MARCO_59_603880583-3 39 90.185065 hybrid +145_2-1 Q0 MARCO_20_1109717538-3 40 90.156146 hybrid +145_2-1 Q0 MARCO_18_2709431324-25 41 90.125390 hybrid +145_2-1 Q0 MARCO_26_1786937714-7 42 90.118032 hybrid +145_2-1 Q0 MARCO_56_456754768-8 43 90.109727 hybrid +145_2-1 Q0 MARCO_28_1827986570-4 44 90.095083 hybrid +145_2-1 Q0 MARCO_02_1558785340-2 45 90.085783 hybrid +145_2-1 Q0 MARCO_45_1316021768-7 46 90.084883 hybrid +145_2-1 Q0 MARCO_15_133346420-5 47 90.077563 hybrid +145_2-1 Q0 MARCO_14_1333941473-10 48 90.060184 hybrid +145_2-1 Q0 MARCO_25_1003138952-10 49 90.060183 hybrid +145_2-1 Q0 MARCO_57_1511704721-5 50 90.052583 hybrid +145_2-1 Q0 MARCO_22_962673540-3 51 90.043783 hybrid +145_2-1 Q0 MARCO_16_3116620304-34 52 90.040533 hybrid +145_2-1 Q0 MARCO_20_1109717538-16 53 90.028423 hybrid +145_2-1 Q0 MARCO_39_688608734-12 54 90.007333 hybrid +145_2-1 Q0 MARCO_26_1586966035-2 55 89.997583 hybrid +145_2-1 Q0 MARCO_25_962209202-8 56 89.990684 hybrid +145_2-1 Q0 MARCO_00_1103658282-4 57 89.970585 hybrid +145_2-1 Q0 MARCO_05_296592401-3 58 89.967533 hybrid +145_2-1 Q0 MARCO_02_957086691-10 59 89.965683 hybrid +145_2-1 Q0 MARCO_00_1103658282-3 60 89.936360 hybrid +145_2-1 Q0 MARCO_59_786261717-3 61 89.924183 hybrid +145_2-1 Q0 MARCO_40_1299348951-2 62 89.913633 hybrid +145_2-1 Q0 MARCO_44_35321293-3 63 89.910095 hybrid +145_2-1 Q0 MARCO_20_666561210-3 64 89.908683 hybrid +145_2-1 Q0 MARCO_58_314126154-10 65 89.901383 hybrid +145_2-1 Q0 MARCO_08_1226249486-2 66 89.897583 hybrid +145_2-1 Q0 MARCO_05_296592401-4 67 89.895534 hybrid +145_2-1 Q0 MARCO_05_617136203-3 68 89.895383 hybrid +145_2-1 Q0 MARCO_55_381146103-5 69 89.883933 hybrid +145_2-1 Q0 MARCO_35_255953235-6 70 89.880683 hybrid +145_2-1 Q0 MARCO_44_35321293-8 71 89.874333 hybrid +145_2-1 Q0 MARCO_55_339238680-3 72 89.870633 hybrid +145_2-1 Q0 MARCO_48_1251179110-2 73 89.869333 hybrid +145_2-1 Q0 MARCO_17_541106127-15 74 89.865883 hybrid +145_2-1 Q0 MARCO_50_1409906055-35 75 89.859540 hybrid +145_2-1 Q0 MARCO_27_1151549200-2 76 89.851365 hybrid +145_2-1 Q0 MARCO_27_20423854-3 77 89.829783 hybrid +145_2-1 Q0 MARCO_52_1387348062-1 78 89.826483 hybrid +145_2-1 Q0 MARCO_15_132120884-6 79 89.825900 hybrid +145_2-1 Q0 MARCO_14_336789855-6 80 89.821373 hybrid +145_2-1 Q0 KILT_2801560-13 81 89.821131 hybrid +145_2-1 Q0 MARCO_14_491943698-3 82 89.819333 hybrid +145_2-1 Q0 KILT_2801560-17 83 89.818024 hybrid +145_2-1 Q0 MARCO_44_35321293-2 84 89.804081 hybrid +145_2-1 Q0 MARCO_20_1109717538-14 85 89.800262 hybrid +145_2-1 Q0 MARCO_08_1226249486-4 86 89.799283 hybrid +145_2-1 Q0 MARCO_45_1335492968-4 87 89.794133 hybrid +145_2-1 Q0 MARCO_50_1823096962-9 88 89.793233 hybrid +145_2-1 Q0 MARCO_00_1027258728-3 89 89.788333 hybrid +145_2-1 Q0 KILT_35895879-13 90 89.786983 hybrid +145_2-1 Q0 MARCO_27_1373724630-5 91 89.784783 hybrid +145_2-1 Q0 MARCO_25_594493657-1 92 89.781383 hybrid +145_2-1 Q0 MARCO_25_962209202-9 93 89.763933 hybrid +145_2-1 Q0 MARCO_31_745709695-28 94 89.759033 hybrid +145_2-1 Q0 MARCO_51_1634830590-6 95 89.724144 hybrid +145_2-1 Q0 MARCO_38_256435579-9 96 89.720883 hybrid +145_2-1 Q0 MARCO_27_1567992001-3 97 89.700454 hybrid +145_2-1 Q0 MARCO_55_489407448-3 98 89.676083 hybrid +145_2-1 Q0 MARCO_27_1347644377-5 99 89.667683 hybrid +145_2-1 Q0 MARCO_07_669693370-1 100 89.658833 hybrid +145_2-3 Q0 MARCO_28_528320265-2 1 94.430452 hybrid +145_2-3 Q0 MARCO_27_1567992001-3 2 94.259857 hybrid +145_2-3 Q0 MARCO_08_743306876-4 3 93.070824 hybrid +145_2-3 Q0 MARCO_58_1574227328-1 4 93.067920 hybrid +145_2-3 Q0 MARCO_15_132390467-4 5 92.801463 hybrid +145_2-3 Q0 MARCO_59_603880583-2 6 92.662003 hybrid +145_2-3 Q0 MARCO_59_603880583-3 7 92.612185 hybrid +145_2-3 Q0 MARCO_58_314126154-18 8 92.427870 hybrid +145_2-3 Q0 MARCO_01_1869948757-15 9 92.396354 hybrid +145_2-3 Q0 KILT_47700-15 10 92.380968 hybrid +145_2-3 Q0 MARCO_23_1830774907-7 11 92.320481 hybrid +145_2-3 Q0 MARCO_15_133877816-1 12 92.307988 hybrid +145_2-3 Q0 MARCO_15_131999270-1 13 92.239488 hybrid +145_2-3 Q0 MARCO_58_1506018316-3 14 92.235219 hybrid +145_2-3 Q0 MARCO_26_723799539-23 15 92.223225 hybrid +145_2-3 Q0 MARCO_08_743306876-3 16 92.193292 hybrid +145_2-3 Q0 MARCO_19_149451038-8 17 92.169769 hybrid +145_2-3 Q0 MARCO_15_133648640-13 18 92.147142 hybrid +145_2-3 Q0 MARCO_44_35321293-5 19 92.145406 hybrid +145_2-3 Q0 MARCO_58_1574227328-3 20 92.143620 hybrid +145_2-3 Q0 MARCO_08_743063601-4 21 92.128527 hybrid +145_2-3 Q0 MARCO_41_334325214-13 22 92.127207 hybrid +145_2-3 Q0 MARCO_44_35321293-3 23 92.057036 hybrid +145_2-3 Q0 KILT_3821214-13 24 92.030961 hybrid +145_2-3 Q0 MARCO_15_133505529-7 25 92.025239 hybrid +145_2-3 Q0 MARCO_30_1004298367-6 26 91.978760 hybrid +145_2-3 Q0 MARCO_14_1633033248-5 27 91.975570 hybrid +145_2-3 Q0 MARCO_46_285239740-4 28 91.951070 hybrid +145_2-3 Q0 MARCO_46_285239740-3 29 91.905470 hybrid +145_2-3 Q0 MARCO_15_132988360-9 30 91.901015 hybrid +145_2-3 Q0 MARCO_30_1004298367-7 31 91.878453 hybrid +145_2-3 Q0 MARCO_51_1886540985-13 32 91.859507 hybrid +145_2-3 Q0 MARCO_55_127314872-1 33 91.853439 hybrid +145_2-3 Q0 MARCO_45_1331683068-1 34 91.830470 hybrid +145_2-3 Q0 MARCO_41_721362333-7 35 91.812870 hybrid +145_2-3 Q0 MARCO_09_408870814-3 36 91.798670 hybrid +145_2-3 Q0 MARCO_58_1506018316-2 37 91.774382 hybrid +145_2-3 Q0 MARCO_44_2037703296-5 38 91.768488 hybrid +145_2-3 Q0 MARCO_43_452642351-1 39 91.741570 hybrid +145_2-3 Q0 MARCO_15_132403390-6 40 91.732901 hybrid +145_2-3 Q0 MARCO_59_603880583-4 41 91.710795 hybrid +145_2-3 Q0 MARCO_29_1393317664-1 42 91.615870 hybrid +145_2-3 Q0 MARCO_20_1109717538-14 43 91.602501 hybrid +145_2-3 Q0 MARCO_00_774111622-5 44 91.596620 hybrid +145_2-3 Q0 MARCO_15_133803271-2 45 91.592668 hybrid +145_2-3 Q0 MARCO_15_132547451-4 46 91.575427 hybrid +145_2-3 Q0 MARCO_36_1694272853-51 47 91.557070 hybrid +145_2-3 Q0 MARCO_27_1567992001-4 48 91.538841 hybrid +145_2-3 Q0 MARCO_28_528320265-3 49 91.536532 hybrid +145_2-3 Q0 MARCO_16_2629632909-5 50 91.524577 hybrid +145_2-3 Q0 MARCO_10_1502508384-3 51 91.517620 hybrid +145_2-3 Q0 MARCO_58_1480662252-1 52 91.495420 hybrid +145_2-3 Q0 MARCO_01_1679006693-2 53 91.492659 hybrid +145_2-3 Q0 MARCO_36_1680067743-2 54 91.423920 hybrid +145_2-3 Q0 KILT_13746446-17 55 91.410534 hybrid +145_2-3 Q0 MARCO_25_591684491-2 56 91.394270 hybrid +145_2-3 Q0 MARCO_46_285254536-2 57 91.391120 hybrid +145_2-3 Q0 MARCO_16_2629632909-4 58 91.364053 hybrid +145_2-3 Q0 MARCO_29_1393317664-5 59 91.352020 hybrid +145_2-3 Q0 MARCO_33_1621373075-1 60 91.319620 hybrid +145_2-3 Q0 MARCO_15_133803271-1 61 91.297976 hybrid +145_2-3 Q0 MARCO_11_1217233819-1 62 91.291520 hybrid +145_2-3 Q0 MARCO_38_1493960108-7 63 91.265913 hybrid +145_2-3 Q0 MARCO_01_1679006693-3 64 91.260389 hybrid +145_2-3 Q0 MARCO_48_932996886-4 65 91.243820 hybrid +145_2-3 Q0 MARCO_15_133069767-2 66 91.237972 hybrid +145_2-3 Q0 MARCO_15_133450036-2 67 91.234043 hybrid +145_2-3 Q0 MARCO_33_1621373075-2 68 91.217620 hybrid +145_2-3 Q0 MARCO_02_693671181-12 69 91.213870 hybrid +145_2-3 Q0 MARCO_02_162391697-4 70 91.212163 hybrid +145_2-3 Q0 MARCO_08_743120872-4 71 91.211918 hybrid +145_2-3 Q0 MARCO_01_1679006693-8 72 91.209242 hybrid +145_2-3 Q0 MARCO_28_528320265-10 73 91.203928 hybrid +145_2-3 Q0 MARCO_13_467770045-5 74 91.203420 hybrid +145_2-3 Q0 MARCO_36_1680067743-4 75 91.194870 hybrid +145_2-3 Q0 MARCO_36_1680067743-6 76 91.194869 hybrid +145_2-3 Q0 MARCO_15_131989551-2 77 91.194220 hybrid +145_2-3 Q0 MARCO_48_932996886-9 78 91.169920 hybrid +145_2-3 Q0 MARCO_36_981529605-2 79 91.162420 hybrid +145_2-3 Q0 MARCO_44_278686313-2 80 91.162270 hybrid +145_2-3 Q0 MARCO_02_693671181-13 81 91.160970 hybrid +145_2-3 Q0 MARCO_00_1091275867-4 82 91.156070 hybrid +145_2-3 Q0 MARCO_58_1574227328-2 83 91.148820 hybrid +145_2-3 Q0 MARCO_48_932867009-4 84 91.133920 hybrid +145_2-3 Q0 MARCO_36_685464632-8 85 91.123670 hybrid +145_2-3 Q0 MARCO_08_559214280-4 86 91.122470 hybrid +145_2-3 Q0 MARCO_46_285239740-5 87 91.102320 hybrid +145_2-3 Q0 MARCO_05_1652659719-2 88 91.100870 hybrid +145_2-3 Q0 MARCO_05_1663908927-1 89 91.097919 hybrid +145_2-3 Q0 MARCO_20_1673107226-1 90 91.092970 hybrid +145_2-3 Q0 MARCO_03_1218066139-2 91 91.090076 hybrid +145_2-3 Q0 MARCO_00_1103658282-2 92 91.087753 hybrid +145_2-3 Q0 MARCO_52_602648000-2 93 91.081820 hybrid +145_2-3 Q0 MARCO_03_1218066139-3 94 91.075743 hybrid +145_2-3 Q0 MARCO_27_1160161170-2 95 91.058320 hybrid +145_2-3 Q0 MARCO_09_504890329-13 96 91.055320 hybrid +145_2-3 Q0 MARCO_30_1045383696-2 97 91.046988 hybrid +145_2-3 Q0 MARCO_15_132547451-7 98 91.045607 hybrid +145_2-3 Q0 KILT_2801560-17 99 91.033926 hybrid +145_2-3 Q0 MARCO_05_1663908927-3 100 91.024770 hybrid +145_2-5 Q0 MARCO_28_528320265-2 1 98.216917 hybrid +145_2-5 Q0 MARCO_23_1830774907-7 2 96.829123 hybrid +145_2-5 Q0 KILT_13746446-17 3 96.740353 hybrid +145_2-5 Q0 MARCO_58_1506018316-2 4 96.303295 hybrid +145_2-5 Q0 MARCO_58_1506018316-3 5 96.161817 hybrid +145_2-5 Q0 MARCO_28_528320265-3 6 96.098228 hybrid +145_2-5 Q0 MARCO_08_743306876-4 7 96.036060 hybrid +145_2-5 Q0 MARCO_27_1567992001-3 8 95.926325 hybrid +145_2-5 Q0 MARCO_15_131999270-1 9 95.850266 hybrid +145_2-5 Q0 MARCO_16_2629632909-4 10 95.393568 hybrid +145_2-5 Q0 MARCO_15_131999270-7 11 95.289018 hybrid +145_2-5 Q0 MARCO_44_35321293-4 12 95.149453 hybrid +145_2-5 Q0 MARCO_15_133450036-2 13 95.128994 hybrid +145_2-5 Q0 MARCO_48_1188978655-4 14 94.879190 hybrid +145_2-5 Q0 MARCO_20_1668885308-6 15 94.863058 hybrid +145_2-5 Q0 MARCO_59_603880583-3 16 94.860129 hybrid +145_2-5 Q0 MARCO_02_693671181-13 17 94.839308 hybrid +145_2-5 Q0 MARCO_59_603880583-2 18 94.760208 hybrid +145_2-5 Q0 MARCO_16_1163477169-9 19 94.514507 hybrid +145_2-5 Q0 MARCO_20_1109717538-14 20 94.386513 hybrid +145_2-5 Q0 MARCO_41_721362333-6 21 94.369408 hybrid +145_2-5 Q0 MARCO_47_1573412885-12 22 94.335458 hybrid +145_2-5 Q0 MARCO_34_51783652-3 23 94.319908 hybrid +145_2-5 Q0 MARCO_44_35321293-5 24 94.290251 hybrid +145_2-5 Q0 MARCO_36_1680067743-1 25 94.243608 hybrid +145_2-5 Q0 MARCO_29_1511557603-1 26 94.234558 hybrid +145_2-5 Q0 MARCO_50_2386869195-11 27 94.204967 hybrid +145_2-5 Q0 MARCO_36_1680067743-4 28 94.198507 hybrid +145_2-5 Q0 MARCO_36_1680067743-6 29 94.198506 hybrid +145_2-5 Q0 KILT_2801560-17 30 94.166243 hybrid +145_2-5 Q0 MARCO_05_296592401-1 31 94.057008 hybrid +145_2-5 Q0 MARCO_18_2641518114-73 32 94.035458 hybrid +145_2-5 Q0 MARCO_15_133648640-13 33 93.969381 hybrid +145_2-5 Q0 MARCO_17_700326814-19 34 93.930458 hybrid +145_2-5 Q0 MARCO_16_3929298904-4 35 93.922507 hybrid +145_2-5 Q0 MARCO_33_138676065-6 36 93.862508 hybrid +145_2-5 Q0 MARCO_54_2053931769-2 37 93.856458 hybrid +145_2-5 Q0 MARCO_05_347910875-7 38 93.787658 hybrid +145_2-5 Q0 MARCO_30_435276155-4 39 93.779608 hybrid +145_2-5 Q0 MARCO_50_1744021001-97 40 93.755208 hybrid +145_2-5 Q0 MARCO_09_1221242571-14 41 93.731607 hybrid +145_2-5 Q0 MARCO_34_51783652-5 42 93.703558 hybrid +145_2-5 Q0 MARCO_25_962209202-8 43 93.686408 hybrid +145_2-5 Q0 MARCO_05_345692262-2 44 93.686157 hybrid +145_2-5 Q0 MARCO_36_685464632-8 45 93.612408 hybrid +145_2-5 Q0 KILT_1278066-2 46 93.596623 hybrid +145_2-5 Q0 MARCO_30_435276155-3 47 93.594257 hybrid +145_2-5 Q0 MARCO_12_1781831931-9 48 93.593358 hybrid +145_2-5 Q0 KILT_399912-1 49 93.589108 hybrid +145_2-5 Q0 MARCO_46_285239740-1 50 93.559308 hybrid +145_2-5 Q0 MARCO_31_899429219-9 51 93.557481 hybrid +145_2-5 Q0 MARCO_05_337896579-2 52 93.527008 hybrid +145_2-5 Q0 MARCO_03_1218066139-2 53 93.526148 hybrid +145_2-5 Q0 MARCO_55_339644324-1 54 93.516257 hybrid +145_2-5 Q0 MARCO_08_743063601-6 55 93.493393 hybrid +145_2-5 Q0 MARCO_17_1649482821-13 56 93.485658 hybrid +145_2-5 Q0 KILT_70983-10 57 93.453857 hybrid +145_2-5 Q0 KILT_35895879-20 58 93.439657 hybrid +145_2-5 Q0 MARCO_17_541106127-25 59 93.439656 hybrid +145_2-5 Q0 MARCO_15_133877816-1 60 93.433321 hybrid +145_2-5 Q0 MARCO_50_2386869195-1 61 93.432259 hybrid +145_2-5 Q0 MARCO_27_13394940-26 62 93.422507 hybrid +145_2-5 Q0 MARCO_20_1312884650-5 63 93.420108 hybrid +145_2-5 Q0 MARCO_00_668324844-4 64 93.414457 hybrid +145_2-5 Q0 MARCO_59_603880583-1 65 93.412297 hybrid +145_2-5 Q0 MARCO_46_285239740-3 66 93.392958 hybrid +145_2-5 Q0 MARCO_50_2386869195-10 67 93.380293 hybrid +145_2-5 Q0 MARCO_08_559214280-4 68 93.377108 hybrid +145_2-5 Q0 MARCO_41_2052436389-6 69 93.374207 hybrid +145_2-5 Q0 KILT_9186994-3 70 93.363308 hybrid +145_2-5 Q0 MARCO_18_3507972172-4 71 93.340657 hybrid +145_2-5 Q0 KILT_1900543-14 72 93.325408 hybrid +145_2-5 Q0 KILT_399912-14 73 93.318058 hybrid +145_2-5 Q0 MARCO_02_277599372-5 74 93.311558 hybrid +145_2-5 Q0 MARCO_58_314126154-10 75 93.292707 hybrid +145_2-5 Q0 MARCO_00_774111622-5 76 93.286108 hybrid +145_2-5 Q0 MARCO_03_447802610-2 77 93.279749 hybrid +145_2-5 Q0 MARCO_56_402418044-9 78 93.245558 hybrid +145_2-5 Q0 MARCO_14_1348797499-8 79 93.239408 hybrid +145_2-5 Q0 MARCO_14_1369004927-23 80 93.239407 hybrid +145_2-5 Q0 MARCO_29_1511631268-4 81 93.233558 hybrid +145_2-5 Q0 MARCO_58_314126154-16 82 93.218457 hybrid +145_2-5 Q0 MARCO_44_1192649375-1 83 93.212058 hybrid +145_2-5 Q0 KILT_47700-15 84 93.206445 hybrid +145_2-5 Q0 MARCO_58_1574227328-2 85 93.191708 hybrid +145_2-5 Q0 MARCO_15_133176883-4 86 93.190883 hybrid +145_2-5 Q0 MARCO_36_1657334291-5 87 93.187657 hybrid +145_2-5 Q0 MARCO_45_1331683068-2 88 93.179157 hybrid +145_2-5 Q0 MARCO_00_1217729703-2 89 93.176608 hybrid +145_2-5 Q0 MARCO_54_2053960415-1 90 93.163407 hybrid +145_2-5 Q0 MARCO_02_277599372-1 91 93.159358 hybrid +145_2-5 Q0 MARCO_04_1026495472-3 92 93.153308 hybrid +145_2-5 Q0 MARCO_10_1502508384-5 93 93.145308 hybrid +145_2-5 Q0 MARCO_22_962673540-3 94 93.133657 hybrid +145_2-5 Q0 MARCO_51_1656120076-1 95 93.116708 hybrid +145_2-5 Q0 MARCO_13_1702160838-2 96 93.095858 hybrid +145_2-5 Q0 MARCO_05_338959584-12 97 93.092257 hybrid +145_2-5 Q0 MARCO_15_766740202-7 98 93.088950 hybrid +145_2-5 Q0 MARCO_39_963610524-4 99 93.064908 hybrid +145_2-5 Q0 MARCO_45_976543044-4 100 93.062550 hybrid +146_1-1 Q0 MARCO_18_438706474-27 1 93.766369 hybrid +146_1-1 Q0 MARCO_12_1743660916-2 2 93.435488 hybrid +146_1-1 Q0 MARCO_03_442110904-3 3 92.699498 hybrid +146_1-1 Q0 MARCO_12_1701775897-7 4 92.456882 hybrid +146_1-1 Q0 MARCO_49_195021032-1 5 92.411312 hybrid +146_1-1 Q0 MARCO_12_1749972286-18 6 92.394501 hybrid +146_1-1 Q0 MARCO_33_294270713-2 7 91.721882 hybrid +146_1-1 Q0 MARCO_03_442066020-5 8 91.718614 hybrid +146_1-1 Q0 MARCO_00_938352697-2 9 91.647123 hybrid +146_1-1 Q0 MARCO_12_1749972286-1 10 91.538299 hybrid +146_1-1 Q0 MARCO_12_1743843608-1 11 91.495503 hybrid +146_1-1 Q0 MARCO_20_1203659160-1 12 91.478783 hybrid +146_1-1 Q0 MARCO_40_769976188-9 13 91.478732 hybrid +146_1-1 Q0 MARCO_03_442066020-1 14 91.433625 hybrid +146_1-1 Q0 MARCO_14_1671866225-4 15 91.413582 hybrid +146_1-1 Q0 MARCO_51_244719074-1 16 91.282582 hybrid +146_1-1 Q0 MARCO_42_281072732-1 17 91.239832 hybrid +146_1-1 Q0 MARCO_12_1743660916-24 18 91.233192 hybrid +146_1-1 Q0 MARCO_38_1462592335-2 19 91.186532 hybrid +146_1-1 Q0 MARCO_20_1203659160-8 20 91.166033 hybrid +146_1-1 Q0 MARCO_37_835583122-7 21 91.142790 hybrid +146_1-1 Q0 MARCO_12_1749972286-2 22 91.141061 hybrid +146_1-1 Q0 MARCO_12_1743852582-1 23 91.118194 hybrid +146_1-1 Q0 MARCO_37_835486393-2 24 91.111431 hybrid +146_1-1 Q0 MARCO_21_866526698-1 25 91.059982 hybrid +146_1-1 Q0 MARCO_37_608176264-1 26 91.053732 hybrid +146_1-1 Q0 MARCO_40_769976188-1 27 91.053082 hybrid +146_1-1 Q0 MARCO_55_1325718304-8 28 91.010232 hybrid +146_1-1 Q0 MARCO_12_1749972286-4 29 90.963989 hybrid +146_1-1 Q0 MARCO_37_608189296-1 30 90.930932 hybrid +146_1-1 Q0 MARCO_37_835523985-12 31 90.927882 hybrid +146_1-1 Q0 KILT_5213622-1 32 90.911300 hybrid +146_1-1 Q0 MARCO_54_230199498-2 33 90.890283 hybrid +146_1-1 Q0 MARCO_30_1079167306-1 34 90.884437 hybrid +146_1-1 Q0 MARCO_37_835747822-1 35 90.880084 hybrid +146_1-1 Q0 MARCO_12_1743660916-4 36 90.858726 hybrid +146_1-1 Q0 MARCO_03_1125529773-1 37 90.841832 hybrid +146_1-1 Q0 MARCO_37_835583122-8 38 90.839961 hybrid +146_1-1 Q0 MARCO_54_117226208-1 39 90.836533 hybrid +146_1-1 Q0 MARCO_24_1275788134-10 40 90.825233 hybrid +146_1-1 Q0 MARCO_12_1742383385-2 41 90.819961 hybrid +146_1-1 Q0 MARCO_55_1325718304-13 42 90.809682 hybrid +146_1-1 Q0 MARCO_20_973561150-3 43 90.806882 hybrid +146_1-1 Q0 MARCO_37_835539785-1 44 90.804515 hybrid +146_1-1 Q0 KILT_188773-23 45 90.792182 hybrid +146_1-1 Q0 MARCO_12_1749972286-17 46 90.734544 hybrid +146_1-1 Q0 MARCO_37_835512353-9 47 90.721991 hybrid +146_1-1 Q0 MARCO_37_609096777-6 48 90.710982 hybrid +146_1-1 Q0 MARCO_12_1743660916-3 49 90.692924 hybrid +146_1-1 Q0 MARCO_18_438706474-26 50 90.692329 hybrid +146_1-1 Q0 MARCO_37_608510878-6 51 90.680332 hybrid +146_1-1 Q0 MARCO_37_608510878-8 52 90.680331 hybrid +146_1-1 Q0 MARCO_54_1756642323-1 53 90.678482 hybrid +146_1-1 Q0 MARCO_34_809598418-8 54 90.661582 hybrid +146_1-1 Q0 MARCO_12_1747186728-18 55 90.659332 hybrid +146_1-1 Q0 MARCO_09_489452976-8 56 90.654432 hybrid +146_1-1 Q0 MARCO_02_1407541985-14 57 90.640832 hybrid +146_1-1 Q0 MARCO_37_608189296-8 58 90.617083 hybrid +146_1-1 Q0 MARCO_20_1203659160-2 59 90.610032 hybrid +146_1-1 Q0 MARCO_12_1756562736-1 60 90.584582 hybrid +146_1-1 Q0 MARCO_31_920596580-26 61 90.583483 hybrid +146_1-1 Q0 MARCO_01_336137320-3 62 90.581682 hybrid +146_1-1 Q0 MARCO_12_1702559790-1 63 90.568832 hybrid +146_1-1 Q0 MARCO_55_941816802-11 64 90.553283 hybrid +146_1-1 Q0 MARCO_12_1749877637-11 65 90.550356 hybrid +146_1-1 Q0 MARCO_30_1595095560-5 66 90.544868 hybrid +146_1-1 Q0 MARCO_12_1701715017-9 67 90.544232 hybrid +146_1-1 Q0 MARCO_12_1748988523-2 68 90.543009 hybrid +146_1-1 Q0 MARCO_37_835572361-1 69 90.542932 hybrid +146_1-1 Q0 MARCO_03_442110904-1 70 90.534866 hybrid +146_1-1 Q0 MARCO_12_1748924052-1 71 90.531272 hybrid +146_1-1 Q0 MARCO_37_835583122-2 72 90.517791 hybrid +146_1-1 Q0 MARCO_24_1275788134-1 73 90.517082 hybrid +146_1-1 Q0 KILT_910509-3 74 90.513533 hybrid +146_1-1 Q0 MARCO_15_1879999540-5 75 90.500460 hybrid +146_1-1 Q0 MARCO_22_1743962079-2 76 90.498532 hybrid +146_1-1 Q0 MARCO_31_116000666-41 77 90.489782 hybrid +146_1-1 Q0 MARCO_30_1595095560-2 78 90.489646 hybrid +146_1-1 Q0 MARCO_10_218838894-6 79 90.487183 hybrid +146_1-1 Q0 MARCO_30_1046901938-4 80 90.472679 hybrid +146_1-1 Q0 MARCO_10_1123846059-10 81 90.464282 hybrid +146_1-1 Q0 MARCO_56_1646324554-3 82 90.458582 hybrid +146_1-1 Q0 MARCO_12_1748988523-6 83 90.456709 hybrid +146_1-1 Q0 MARCO_37_608206971-10 84 90.455233 hybrid +146_1-1 Q0 MARCO_37_608176264-7 85 90.452533 hybrid +146_1-1 Q0 MARCO_37_608218438-6 86 90.452532 hybrid +146_1-1 Q0 MARCO_37_608206971-8 87 90.452532 hybrid +146_1-1 Q0 MARCO_37_608234952-7 88 90.452531 hybrid +146_1-1 Q0 MARCO_12_1749972286-19 89 90.449806 hybrid +146_1-1 Q0 MARCO_12_1743843608-4 90 90.444030 hybrid +146_1-1 Q0 MARCO_02_1407541985-34 91 90.440382 hybrid +146_1-1 Q0 MARCO_37_610478525-4 92 90.437633 hybrid +146_1-1 Q0 MARCO_51_244719074-14 93 90.433582 hybrid +146_1-1 Q0 MARCO_32_526041354-2 94 90.431732 hybrid +146_1-1 Q0 MARCO_04_319606464-7 95 90.428602 hybrid +146_1-1 Q0 MARCO_37_835583122-6 96 90.426895 hybrid +146_1-1 Q0 MARCO_37_608189296-10 97 90.426632 hybrid +146_1-1 Q0 MARCO_37_835583122-3 98 90.417968 hybrid +146_1-1 Q0 MARCO_12_1742862651-3 99 90.416175 hybrid +146_1-1 Q0 MARCO_49_1339439061-2 100 90.414433 hybrid +146_1-11 Q0 MARCO_11_754522594-8 1 88.154347 hybrid +146_1-11 Q0 MARCO_55_1278846437-9 2 87.731173 hybrid +146_1-11 Q0 MARCO_41_113271484-1 3 87.683217 hybrid +146_1-11 Q0 MARCO_33_820389361-1 4 87.548451 hybrid +146_1-11 Q0 MARCO_44_104702281-5 5 87.495732 hybrid +146_1-11 Q0 MARCO_31_885963547-17 6 87.485875 hybrid +146_1-11 Q0 MARCO_30_1023512105-25 7 87.397091 hybrid +146_1-11 Q0 MARCO_30_1023256694-34 8 87.395772 hybrid +146_1-11 Q0 MARCO_13_1565289735-8 9 87.359234 hybrid +146_1-11 Q0 MARCO_22_167025448-1 10 87.348759 hybrid +146_1-11 Q0 MARCO_13_1696358562-1 11 87.340100 hybrid +146_1-11 Q0 MARCO_39_23819753-2 12 87.266131 hybrid +146_1-11 Q0 MARCO_12_1748283911-1 13 87.247853 hybrid +146_1-11 Q0 MARCO_20_364926941-20 14 87.243863 hybrid +146_1-11 Q0 MARCO_24_953037959-10 15 87.234601 hybrid +146_1-11 Q0 MARCO_55_1278846437-7 16 87.226534 hybrid +146_1-11 Q0 MARCO_36_953407022-2 17 87.186192 hybrid +146_1-11 Q0 MARCO_30_737679851-1 18 87.185200 hybrid +146_1-11 Q0 MARCO_11_755049057-1 19 87.185139 hybrid +146_1-11 Q0 MARCO_30_1023295234-17 20 87.162358 hybrid +146_1-11 Q0 MARCO_45_657231657-2 21 87.159054 hybrid +146_1-11 Q0 MARCO_12_1744392103-1 22 87.158223 hybrid +146_1-11 Q0 MARCO_24_1270881747-2 23 87.152073 hybrid +146_1-11 Q0 MARCO_02_485011177-1 24 87.122265 hybrid +146_1-11 Q0 MARCO_30_1023541593-1 25 87.121266 hybrid +146_1-11 Q0 MARCO_24_1268172536-1 26 87.098462 hybrid +146_1-11 Q0 MARCO_42_325369363-30 27 87.086682 hybrid +146_1-11 Q0 MARCO_30_1093753522-1 28 87.082844 hybrid +146_1-11 Q0 MARCO_49_448087206-1 29 87.070614 hybrid +146_1-11 Q0 MARCO_02_485011177-3 30 87.066792 hybrid +146_1-11 Q0 MARCO_36_1433791408-4 31 87.052243 hybrid +146_1-11 Q0 MARCO_11_754616783-11 32 87.032582 hybrid +146_1-11 Q0 MARCO_57_1415155159-1 33 87.029264 hybrid +146_1-11 Q0 MARCO_19_2062629295-1 34 87.026684 hybrid +146_1-11 Q0 MARCO_30_1023403401-1 35 87.024083 hybrid +146_1-11 Q0 MARCO_22_167025448-6 36 87.016583 hybrid +146_1-11 Q0 MARCO_36_955036188-4 37 87.008656 hybrid +146_1-11 Q0 MARCO_41_113271484-2 38 87.001400 hybrid +146_1-11 Q0 MARCO_22_156348200-1 39 86.980313 hybrid +146_1-11 Q0 MARCO_22_156348200-3 40 86.980313 hybrid +146_1-11 Q0 MARCO_56_450711294-8 41 86.973141 hybrid +146_1-11 Q0 MARCO_45_657231657-1 42 86.969609 hybrid +146_1-11 Q0 MARCO_56_813882352-11 43 86.968511 hybrid +146_1-11 Q0 MARCO_13_1565289735-1 44 86.968274 hybrid +146_1-11 Q0 MARCO_55_818099290-1 45 86.965199 hybrid +146_1-11 Q0 MARCO_54_557942895-4 46 86.965069 hybrid +146_1-11 Q0 MARCO_24_1053383617-1 47 86.963864 hybrid +146_1-11 Q0 MARCO_08_377508112-1 48 86.962164 hybrid +146_1-11 Q0 MARCO_56_813820654-5 49 86.957814 hybrid +146_1-11 Q0 MARCO_00_1003301494-1 50 86.955769 hybrid +146_1-11 Q0 MARCO_32_1520324974-18 51 86.948651 hybrid +146_1-11 Q0 MARCO_48_1593292798-1 52 86.930897 hybrid +146_1-11 Q0 MARCO_54_557942895-2 53 86.920834 hybrid +146_1-11 Q0 MARCO_19_2062629295-2 54 86.919529 hybrid +146_1-11 Q0 MARCO_52_599141495-9 55 86.919468 hybrid +146_1-11 Q0 MARCO_31_1609170729-1 56 86.919407 hybrid +146_1-11 Q0 MARCO_30_1023295234-1 57 86.918385 hybrid +146_1-11 Q0 MARCO_30_1023256694-1 58 86.914441 hybrid +146_1-11 Q0 MARCO_24_1127718815-1 59 86.914158 hybrid +146_1-11 Q0 MARCO_50_2554813031-4 60 86.905713 hybrid +146_1-11 Q0 MARCO_30_740017895-22 61 86.903706 hybrid +146_1-11 Q0 MARCO_21_397258943-1 62 86.900403 hybrid +146_1-11 Q0 MARCO_30_1023146362-2 63 86.897267 hybrid +146_1-11 Q0 MARCO_25_520538614-1 64 86.896008 hybrid +146_1-11 Q0 MARCO_30_1023219202-6 65 86.889401 hybrid +146_1-11 Q0 MARCO_45_1581981666-5 66 86.887181 hybrid +146_1-11 Q0 MARCO_45_657284769-6 67 86.885014 hybrid +146_1-11 Q0 MARCO_49_448087206-7 68 86.881264 hybrid +146_1-11 Q0 MARCO_45_657284769-1 69 86.880681 hybrid +146_1-11 Q0 MARCO_45_657315801-8 70 86.874798 hybrid +146_1-11 Q0 MARCO_30_818130848-12 71 86.872159 hybrid +146_1-11 Q0 MARCO_12_1168581743-8 72 86.871998 hybrid +146_1-11 Q0 MARCO_24_1268172536-20 73 86.871800 hybrid +146_1-11 Q0 MARCO_31_1609170729-5 74 86.870930 hybrid +146_1-11 Q0 MARCO_55_818137430-1 75 86.870930 hybrid +146_1-11 Q0 MARCO_54_557942895-1 76 86.870671 hybrid +146_1-11 Q0 MARCO_12_1744392103-2 77 86.863644 hybrid +146_1-11 Q0 MARCO_49_408074028-1 78 86.861439 hybrid +146_1-11 Q0 MARCO_59_942738593-8 79 86.860554 hybrid +146_1-11 Q0 MARCO_30_1023181351-1 80 86.858998 hybrid +146_1-11 Q0 MARCO_36_953550205-3 81 86.858304 hybrid +146_1-11 Q0 MARCO_30_740017895-1 82 86.857213 hybrid +146_1-11 Q0 MARCO_05_594570631-1 83 86.856788 hybrid +146_1-11 Q0 MARCO_52_1200764674-1 84 86.854168 hybrid +146_1-11 Q0 MARCO_24_1553899260-4 85 86.838978 hybrid +146_1-11 Q0 MARCO_55_818079519-1 86 86.834980 hybrid +146_1-11 Q0 MARCO_21_963867012-3 87 86.834935 hybrid +146_1-11 Q0 MARCO_21_963867012-1 88 86.834919 hybrid +146_1-11 Q0 MARCO_31_1655966712-1 89 86.831395 hybrid +146_1-11 Q0 MARCO_43_744615889-1 90 86.826024 hybrid +146_1-11 Q0 MARCO_30_1023219202-1 91 86.819378 hybrid +146_1-11 Q0 MARCO_45_657315801-5 92 86.819355 hybrid +146_1-11 Q0 MARCO_45_657284769-25 93 86.816899 hybrid +146_1-11 Q0 MARCO_24_1270881747-1 94 86.815823 hybrid +146_1-11 Q0 MARCO_22_398051387-3 95 86.812184 hybrid +146_1-11 Q0 MARCO_44_1854517724-12 96 86.810063 hybrid +146_1-11 Q0 MARCO_01_1176871118-4 97 86.807278 hybrid +146_1-11 Q0 MARCO_36_954380266-3 98 86.801709 hybrid +146_1-11 Q0 MARCO_25_521252296-1 99 86.801526 hybrid +146_1-11 Q0 MARCO_45_657374819-13 100 86.795002 hybrid +146_1-3 Q0 MARCO_12_1743660916-4 1 91.781514 hybrid +146_1-3 Q0 MARCO_12_1743660916-24 2 90.565160 hybrid +146_1-3 Q0 MARCO_18_438706474-27 3 90.223684 hybrid +146_1-3 Q0 MARCO_03_442110904-1 4 89.967125 hybrid +146_1-3 Q0 MARCO_12_1743660916-3 5 89.938496 hybrid +146_1-3 Q0 MARCO_03_442110904-2 6 89.784140 hybrid +146_1-3 Q0 MARCO_12_1743660916-5 7 89.773607 hybrid +146_1-3 Q0 MARCO_12_1743660916-9 8 89.725354 hybrid +146_1-3 Q0 MARCO_12_1743660916-36 9 89.720932 hybrid +146_1-3 Q0 MARCO_00_938352697-2 10 89.634630 hybrid +146_1-3 Q0 MARCO_03_442066020-2 11 89.537491 hybrid +146_1-3 Q0 MARCO_03_1125529773-1 12 89.448691 hybrid +146_1-3 Q0 MARCO_00_938352697-1 13 89.432707 hybrid +146_1-3 Q0 MARCO_54_737332210-6 14 89.176112 hybrid +146_1-3 Q0 MARCO_12_1756585178-1 15 89.088291 hybrid +146_1-3 Q0 MARCO_12_1455091765-5 16 89.086693 hybrid +146_1-3 Q0 MARCO_12_1742890120-13 17 89.063115 hybrid +146_1-3 Q0 MARCO_30_1079167306-2 18 89.048001 hybrid +146_1-3 Q0 MARCO_54_225020737-2 19 89.046591 hybrid +146_1-3 Q0 MARCO_12_1743660916-2 20 89.030967 hybrid +146_1-3 Q0 MARCO_12_1742997671-2 21 89.006810 hybrid +146_1-3 Q0 MARCO_12_1743660916-21 22 89.001969 hybrid +146_1-3 Q0 MARCO_54_225041213-7 23 88.985141 hybrid +146_1-3 Q0 MARCO_12_1742890120-1 24 88.977450 hybrid +146_1-3 Q0 MARCO_24_1263187707-15 25 88.973706 hybrid +146_1-3 Q0 MARCO_12_1743241647-1 26 88.960813 hybrid +146_1-3 Q0 MARCO_54_229368095-2 27 88.936141 hybrid +146_1-3 Q0 MARCO_12_1742997671-1 28 88.924359 hybrid +146_1-3 Q0 MARCO_34_849058819-4 29 88.903691 hybrid +146_1-3 Q0 MARCO_12_1743660916-15 30 88.883533 hybrid +146_1-3 Q0 MARCO_12_1744179388-8 31 88.883153 hybrid +146_1-3 Q0 MARCO_37_609905850-2 32 88.882791 hybrid +146_1-3 Q0 MARCO_08_887707240-11 33 88.870325 hybrid +146_1-3 Q0 MARCO_47_818541108-17 34 88.867191 hybrid +146_1-3 Q0 MARCO_30_1079167306-4 35 88.836443 hybrid +146_1-3 Q0 KILT_22920117-5 36 88.812184 hybrid +146_1-3 Q0 MARCO_34_811815260-2 37 88.808491 hybrid +146_1-3 Q0 MARCO_03_1125529773-2 38 88.790991 hybrid +146_1-3 Q0 MARCO_12_1743843608-4 39 88.789060 hybrid +146_1-3 Q0 MARCO_55_941816802-11 40 88.786891 hybrid +146_1-3 Q0 MARCO_51_711735410-1 41 88.781591 hybrid +146_1-3 Q0 MARCO_47_815326413-1 42 88.780891 hybrid +146_1-3 Q0 MARCO_12_1744179388-10 43 88.779497 hybrid +146_1-3 Q0 MARCO_41_342459735-7 44 88.770968 hybrid +146_1-3 Q0 MARCO_12_1455091765-7 45 88.756992 hybrid +146_1-3 Q0 MARCO_41_346849634-3 46 88.756941 hybrid +146_1-3 Q0 MARCO_54_225020737-11 47 88.754041 hybrid +146_1-3 Q0 MARCO_24_1271381381-9 48 88.748509 hybrid +146_1-3 Q0 MARCO_55_1333165338-1 49 88.747741 hybrid +146_1-3 Q0 MARCO_12_1701940503-5 50 88.740541 hybrid +146_1-3 Q0 MARCO_29_132611724-3 51 88.732341 hybrid +146_1-3 Q0 MARCO_32_525653703-3 52 88.717141 hybrid +146_1-3 Q0 MARCO_29_1307402207-9 53 88.714141 hybrid +146_1-3 Q0 MARCO_03_442110904-3 54 88.696881 hybrid +146_1-3 Q0 MARCO_55_1333165338-3 55 88.685191 hybrid +146_1-3 Q0 MARCO_04_844029332-6 56 88.682941 hybrid +146_1-3 Q0 MARCO_24_1263187707-5 57 88.679112 hybrid +146_1-3 Q0 MARCO_10_408073512-7 58 88.673491 hybrid +146_1-3 Q0 MARCO_12_1743660916-14 59 88.671851 hybrid +146_1-3 Q0 MARCO_51_711755387-1 60 88.661091 hybrid +146_1-3 Q0 MARCO_59_945897284-10 61 88.653798 hybrid +146_1-3 Q0 MARCO_12_1756607742-8 62 88.653091 hybrid +146_1-3 Q0 MARCO_10_218838894-2 63 88.643341 hybrid +146_1-3 Q0 MARCO_12_1743660916-16 64 88.641625 hybrid +146_1-3 Q0 MARCO_24_4166896-9 65 88.628432 hybrid +146_1-3 Q0 MARCO_59_946203164-10 66 88.628293 hybrid +146_1-3 Q0 MARCO_51_246849357-2 67 88.622191 hybrid +146_1-3 Q0 MARCO_51_247095062-2 68 88.622190 hybrid +146_1-3 Q0 MARCO_51_247116646-2 69 88.622190 hybrid +146_1-3 Q0 MARCO_51_247204500-2 70 88.622190 hybrid +146_1-3 Q0 MARCO_51_247555214-2 71 88.622189 hybrid +146_1-3 Q0 MARCO_51_247762269-2 72 88.622189 hybrid +146_1-3 Q0 MARCO_51_247976103-2 73 88.622188 hybrid +146_1-3 Q0 MARCO_51_248064557-2 74 88.622188 hybrid +146_1-3 Q0 MARCO_51_248193301-2 75 88.622187 hybrid +146_1-3 Q0 MARCO_51_248231987-2 76 88.622187 hybrid +146_1-3 Q0 MARCO_51_248293780-2 77 88.622186 hybrid +146_1-3 Q0 MARCO_51_248390742-2 78 88.622185 hybrid +146_1-3 Q0 MARCO_51_248456411-2 79 88.622185 hybrid +146_1-3 Q0 MARCO_51_248590531-2 80 88.622184 hybrid +146_1-3 Q0 MARCO_51_249000846-2 81 88.622184 hybrid +146_1-3 Q0 MARCO_51_249106405-2 82 88.622183 hybrid +146_1-3 Q0 MARCO_51_249502247-2 83 88.622183 hybrid +146_1-3 Q0 MARCO_51_249664621-2 84 88.622182 hybrid +146_1-3 Q0 MARCO_51_249695625-2 85 88.622182 hybrid +146_1-3 Q0 MARCO_51_250073915-2 86 88.622181 hybrid +146_1-3 Q0 MARCO_51_250091533-2 87 88.622181 hybrid +146_1-3 Q0 MARCO_51_250253127-2 88 88.622180 hybrid +146_1-3 Q0 MARCO_51_250878562-2 89 88.622180 hybrid +146_1-3 Q0 MARCO_51_250913961-2 90 88.622180 hybrid +146_1-3 Q0 MARCO_51_251370982-2 91 88.622179 hybrid +146_1-3 Q0 MARCO_51_251480336-2 92 88.622179 hybrid +146_1-3 Q0 MARCO_12_1743660916-22 93 88.621341 hybrid +146_1-3 Q0 MARCO_03_1125529773-4 94 88.620091 hybrid +146_1-3 Q0 MARCO_40_170744467-6 95 88.606975 hybrid +146_1-3 Q0 MARCO_51_244737344-2 96 88.606191 hybrid +146_1-3 Q0 MARCO_51_711755387-2 97 88.595441 hybrid +146_1-3 Q0 MARCO_32_1754030392-2 98 88.595241 hybrid +146_1-3 Q0 MARCO_34_849058819-1 99 88.594341 hybrid +146_1-3 Q0 MARCO_24_1263100353-23 100 88.573369 hybrid +146_1-5 Q0 MARCO_03_442110904-3 1 92.470365 hybrid +146_1-5 Q0 MARCO_00_938352697-1 2 91.775039 hybrid +146_1-5 Q0 MARCO_03_442110904-1 3 91.600610 hybrid +146_1-5 Q0 MARCO_12_1743660916-4 4 91.515839 hybrid +146_1-5 Q0 MARCO_18_438706474-27 5 91.482252 hybrid +146_1-5 Q0 MARCO_12_1743660916-24 6 91.456079 hybrid +146_1-5 Q0 MARCO_12_1744179388-8 7 91.216485 hybrid +146_1-5 Q0 MARCO_15_602151208-14 8 91.213180 hybrid +146_1-5 Q0 MARCO_00_655400828-2 9 91.173280 hybrid +146_1-5 Q0 MARCO_30_1079167306-4 10 91.149755 hybrid +146_1-5 Q0 MARCO_03_442110904-2 11 91.147973 hybrid +146_1-5 Q0 MARCO_32_1468200452-2 12 91.100230 hybrid +146_1-5 Q0 MARCO_12_1701940503-5 13 91.075630 hybrid +146_1-5 Q0 MARCO_00_655400828-3 14 91.069030 hybrid +146_1-5 Q0 MARCO_59_945897284-10 15 91.065034 hybrid +146_1-5 Q0 MARCO_58_226578815-2 16 91.063880 hybrid +146_1-5 Q0 MARCO_24_1263163606-4 17 91.043290 hybrid +146_1-5 Q0 MARCO_00_655407799-1 18 91.039030 hybrid +146_1-5 Q0 MARCO_31_919676654-12 19 91.017130 hybrid +146_1-5 Q0 MARCO_59_945897284-5 20 90.992990 hybrid +146_1-5 Q0 MARCO_24_1268476045-8 21 90.984742 hybrid +146_1-5 Q0 MARCO_24_1350596615-3 22 90.982980 hybrid +146_1-5 Q0 MARCO_24_1262066728-1 23 90.970530 hybrid +146_1-5 Q0 MARCO_12_1743660916-5 24 90.962708 hybrid +146_1-5 Q0 MARCO_35_891563171-14 25 90.957630 hybrid +146_1-5 Q0 MARCO_12_1743843608-4 26 90.930947 hybrid +146_1-5 Q0 MARCO_03_442066020-2 27 90.928811 hybrid +146_1-5 Q0 MARCO_30_41437296-6 28 90.920230 hybrid +146_1-5 Q0 MARCO_30_1079167306-2 29 90.918290 hybrid +146_1-5 Q0 MARCO_37_606572934-3 30 90.917430 hybrid +146_1-5 Q0 MARCO_03_441428698-7 31 90.898980 hybrid +146_1-5 Q0 MARCO_00_938352697-2 32 90.883980 hybrid +146_1-5 Q0 MARCO_12_1743193989-39 33 90.868295 hybrid +146_1-5 Q0 MARCO_25_1254359082-9 34 90.858180 hybrid +146_1-5 Q0 MARCO_49_1339439061-2 35 90.856380 hybrid +146_1-5 Q0 MARCO_04_844029332-5 36 90.851230 hybrid +146_1-5 Q0 MARCO_12_1742801559-11 37 90.846040 hybrid +146_1-5 Q0 MARCO_12_1701775897-7 38 90.831730 hybrid +146_1-5 Q0 MARCO_12_1743660916-13 39 90.826230 hybrid +146_1-5 Q0 MARCO_24_1263187707-20 40 90.825234 hybrid +146_1-5 Q0 MARCO_03_1125529773-1 41 90.823530 hybrid +146_1-5 Q0 MARCO_31_919842847-20 42 90.812780 hybrid +146_1-5 Q0 MARCO_40_371573050-1 43 90.810830 hybrid +146_1-5 Q0 MARCO_52_934705195-4 44 90.782980 hybrid +146_1-5 Q0 MARCO_12_1743660916-9 45 90.780854 hybrid +146_1-5 Q0 MARCO_04_844029332-6 46 90.780830 hybrid +146_1-5 Q0 MARCO_59_946203164-10 47 90.776505 hybrid +146_1-5 Q0 MARCO_22_155033833-21 48 90.775544 hybrid +146_1-5 Q0 MARCO_37_608312704-2 49 90.775530 hybrid +146_1-5 Q0 MARCO_24_1263187707-8 50 90.767350 hybrid +146_1-5 Q0 MARCO_31_919676654-23 51 90.763980 hybrid +146_1-5 Q0 MARCO_31_919842847-8 52 90.763280 hybrid +146_1-5 Q0 MARCO_41_2058907049-1 53 90.762930 hybrid +146_1-5 Q0 MARCO_54_1927911864-9 54 90.759830 hybrid +146_1-5 Q0 MARCO_02_822859511-4 55 90.757035 hybrid +146_1-5 Q0 MARCO_38_1677945496-2 56 90.753630 hybrid +146_1-5 Q0 MARCO_15_270085330-11 57 90.753465 hybrid +146_1-5 Q0 MARCO_12_1741232047-4 58 90.753380 hybrid +146_1-5 Q0 MARCO_14_925509232-7 59 90.752930 hybrid +146_1-5 Q0 MARCO_24_1263187707-5 60 90.750710 hybrid +146_1-5 Q0 MARCO_34_323965995-6 61 90.749528 hybrid +146_1-5 Q0 MARCO_49_1856325404-12 62 90.748887 hybrid +146_1-5 Q0 MARCO_21_151002975-11 63 90.744546 hybrid +146_1-5 Q0 MARCO_59_945897284-4 64 90.742089 hybrid +146_1-5 Q0 MARCO_59_945897284-2 65 90.741029 hybrid +146_1-5 Q0 MARCO_12_1742418613-5 66 90.735047 hybrid +146_1-5 Q0 MARCO_49_445498041-2 67 90.730279 hybrid +146_1-5 Q0 MARCO_03_442066020-1 68 90.725904 hybrid +146_1-5 Q0 MARCO_08_87485934-8 69 90.722383 hybrid +146_1-5 Q0 MARCO_16_115261508-2 70 90.719680 hybrid +146_1-5 Q0 MARCO_34_814737336-4 71 90.710030 hybrid +146_1-5 Q0 MARCO_38_611455556-11 72 90.708065 hybrid +146_1-5 Q0 MARCO_12_1743660916-20 73 90.707818 hybrid +146_1-5 Q0 MARCO_12_1742604110-4 74 90.706704 hybrid +146_1-5 Q0 MARCO_56_1659778096-4 75 90.705230 hybrid +146_1-5 Q0 MARCO_12_1744150198-6 76 90.702020 hybrid +146_1-5 Q0 MARCO_39_1226135999-1 77 90.700930 hybrid +146_1-5 Q0 MARCO_12_1742862651-14 78 90.698960 hybrid +146_1-5 Q0 MARCO_12_1455091765-9 79 90.693170 hybrid +146_1-5 Q0 MARCO_58_226578815-6 80 90.692780 hybrid +146_1-5 Q0 MARCO_42_1678757025-11 81 90.688516 hybrid +146_1-5 Q0 MARCO_42_1678757025-10 82 90.688058 hybrid +146_1-5 Q0 MARCO_12_1742862651-16 83 90.687539 hybrid +146_1-5 Q0 MARCO_33_1315522594-11 84 90.686653 hybrid +146_1-5 Q0 MARCO_34_849043041-4 85 90.685280 hybrid +146_1-5 Q0 MARCO_12_1701940503-8 86 90.684730 hybrid +146_1-5 Q0 MARCO_30_340396239-3 87 90.684180 hybrid +146_1-5 Q0 MARCO_24_1268476045-4 88 90.679246 hybrid +146_1-5 Q0 MARCO_50_1453179788-9 89 90.671998 hybrid +146_1-5 Q0 MARCO_49_445498041-3 90 90.671838 hybrid +146_1-5 Q0 MARCO_42_1893270592-5 91 90.670945 hybrid +146_1-5 Q0 MARCO_24_1263129398-10 92 90.668550 hybrid +146_1-5 Q0 MARCO_24_745002491-4 93 90.668330 hybrid +146_1-5 Q0 MARCO_24_1268896634-15 94 90.662065 hybrid +146_1-5 Q0 MARCO_01_951262112-4 95 90.660096 hybrid +146_1-5 Q0 MARCO_30_1079167306-1 96 90.659324 hybrid +146_1-5 Q0 MARCO_59_945897284-11 97 90.657372 hybrid +146_1-5 Q0 MARCO_15_1879999540-5 98 90.650899 hybrid +146_1-5 Q0 MARCO_12_1743660916-3 99 90.647912 hybrid +146_1-5 Q0 MARCO_42_203894687-2 100 90.643006 hybrid +146_1-7 Q0 MARCO_12_1702080295-2 1 92.162859 hybrid +146_1-7 Q0 MARCO_13_1195795467-5 2 91.843609 hybrid +146_1-7 Q0 MARCO_12_1748606616-7 3 91.547817 hybrid +146_1-7 Q0 MARCO_57_318090457-5 4 91.509709 hybrid +146_1-7 Q0 MARCO_12_1168581743-3 5 91.390790 hybrid +146_1-7 Q0 MARCO_34_810087357-110 6 91.188009 hybrid +146_1-7 Q0 MARCO_12_1168581743-1 7 91.152267 hybrid +146_1-7 Q0 MARCO_08_736900657-1 8 91.095759 hybrid +146_1-7 Q0 MARCO_12_1742679895-3 9 91.055101 hybrid +146_1-7 Q0 MARCO_38_1325365608-3 10 91.025909 hybrid +146_1-7 Q0 MARCO_55_1293601656-6 11 90.923459 hybrid +146_1-7 Q0 MARCO_41_2011649214-2 12 90.875259 hybrid +146_1-7 Q0 MARCO_41_2011649214-9 13 90.798909 hybrid +146_1-7 Q0 MARCO_34_851516230-5 14 90.796809 hybrid +146_1-7 Q0 MARCO_33_293771640-22 15 90.730259 hybrid +146_1-7 Q0 MARCO_08_96087187-8 16 90.724259 hybrid +146_1-7 Q0 MARCO_01_956076507-1 17 90.706159 hybrid +146_1-7 Q0 MARCO_50_1639591761-34 18 90.701359 hybrid +146_1-7 Q0 MARCO_08_1020500152-3 19 90.673309 hybrid +146_1-7 Q0 MARCO_38_1325365608-11 20 90.664109 hybrid +146_1-7 Q0 MARCO_32_1548448720-12 21 90.654359 hybrid +146_1-7 Q0 MARCO_14_1670110090-1 22 90.607109 hybrid +146_1-7 Q0 MARCO_34_810087357-94 23 90.587909 hybrid +146_1-7 Q0 MARCO_02_822859511-3 24 90.585112 hybrid +146_1-7 Q0 MARCO_15_1903746249-15 25 90.576759 hybrid +146_1-7 Q0 MARCO_13_496062660-1 26 90.549109 hybrid +146_1-7 Q0 MARCO_34_810087357-121 27 90.543959 hybrid +146_1-7 Q0 MARCO_25_1222500509-1 28 90.529859 hybrid +146_1-7 Q0 MARCO_56_1378639823-9 29 90.519259 hybrid +146_1-7 Q0 MARCO_29_1190957465-29 30 90.507759 hybrid +146_1-7 Q0 MARCO_00_781964321-1 31 90.498609 hybrid +146_1-7 Q0 MARCO_29_1307236570-15 32 90.479209 hybrid +146_1-7 Q0 MARCO_34_851291841-10 33 90.476509 hybrid +146_1-7 Q0 MARCO_34_851700327-11 34 90.476509 hybrid +146_1-7 Q0 MARCO_29_1566644523-3 35 90.472459 hybrid +146_1-7 Q0 MARCO_30_741929720-2 36 90.423859 hybrid +146_1-7 Q0 MARCO_07_1396575856-3 37 90.410609 hybrid +146_1-7 Q0 MARCO_04_697376747-5 38 90.391909 hybrid +146_1-7 Q0 MARCO_00_1325865836-5 39 90.390859 hybrid +146_1-7 Q0 MARCO_12_1741630321-2 40 90.384759 hybrid +146_1-7 Q0 MARCO_15_1880443043-6 41 90.380526 hybrid +146_1-7 Q0 MARCO_08_95919061-40 42 90.375659 hybrid +146_1-7 Q0 MARCO_12_1748283911-16 43 90.361009 hybrid +146_1-7 Q0 MARCO_33_293491782-15 44 90.351709 hybrid +146_1-7 Q0 MARCO_03_212491633-13 45 90.339759 hybrid +146_1-7 Q0 MARCO_44_1621862603-3 46 90.338309 hybrid +146_1-7 Q0 MARCO_29_1191435494-4 47 90.335109 hybrid +146_1-7 Q0 MARCO_55_1191322233-18 48 90.324509 hybrid +146_1-7 Q0 MARCO_29_1191366413-31 49 90.323559 hybrid +146_1-7 Q0 MARCO_00_648697852-7 50 90.315809 hybrid +146_1-7 Q0 MARCO_00_648780007-4 51 90.315808 hybrid +146_1-7 Q0 MARCO_33_293626448-57 52 90.314059 hybrid +146_1-7 Q0 MARCO_31_1188126474-5 53 90.311759 hybrid +146_1-7 Q0 MARCO_20_967545792-20 54 90.291359 hybrid +146_1-7 Q0 MARCO_00_648790034-7 55 90.289159 hybrid +146_1-7 Q0 MARCO_00_648847345-8 56 90.289158 hybrid +146_1-7 Q0 MARCO_34_851317433-6 57 90.289158 hybrid +146_1-7 Q0 MARCO_34_851465117-7 58 90.289157 hybrid +146_1-7 Q0 MARCO_34_851503588-9 59 90.289157 hybrid +146_1-7 Q0 MARCO_34_851602657-6 60 90.289156 hybrid +146_1-7 Q0 MARCO_34_810087357-41 61 90.282359 hybrid +146_1-7 Q0 MARCO_10_656257999-7 62 90.263709 hybrid +146_1-7 Q0 MARCO_01_2078103011-74 63 90.262359 hybrid +146_1-7 Q0 MARCO_04_842076364-19 64 90.261759 hybrid +146_1-7 Q0 MARCO_56_1464951476-5 65 90.258759 hybrid +146_1-7 Q0 MARCO_57_2375444497-9 66 90.258459 hybrid +146_1-7 Q0 MARCO_21_151215108-15 67 90.249474 hybrid +146_1-7 Q0 MARCO_12_1700399106-5 68 90.245709 hybrid +146_1-7 Q0 MARCO_12_1748441115-28 69 90.230240 hybrid +146_1-7 Q0 MARCO_37_1251366856-16 70 90.227257 hybrid +146_1-7 Q0 MARCO_57_436554814-28 71 90.226709 hybrid +146_1-7 Q0 MARCO_51_243416638-1 72 90.222959 hybrid +146_1-7 Q0 MARCO_56_767634499-1 73 90.209409 hybrid +146_1-7 Q0 MARCO_07_1010222021-8 74 90.186890 hybrid +146_1-7 Q0 MARCO_13_496062660-2 75 90.182159 hybrid +146_1-7 Q0 MARCO_50_2243025117-5 76 90.180059 hybrid +146_1-7 Q0 MARCO_59_446171268-11 77 90.164859 hybrid +146_1-7 Q0 MARCO_03_337616464-15 78 90.159059 hybrid +146_1-7 Q0 MARCO_21_151919715-1 79 90.157309 hybrid +146_1-7 Q0 MARCO_25_1438986012-8 80 90.157166 hybrid +146_1-7 Q0 MARCO_49_1344148802-52 81 90.154259 hybrid +146_1-7 Q0 MARCO_12_1747375078-12 82 90.148987 hybrid +146_1-7 Q0 MARCO_10_1200041593-18 83 90.144309 hybrid +146_1-7 Q0 MARCO_12_1700682183-9 84 90.142409 hybrid +146_1-7 Q0 MARCO_01_963122788-5 85 90.137309 hybrid +146_1-7 Q0 MARCO_12_1748441115-29 86 90.125184 hybrid +146_1-7 Q0 MARCO_34_810087357-125 87 90.107009 hybrid +146_1-7 Q0 MARCO_14_1670110090-2 88 90.101859 hybrid +146_1-7 Q0 MARCO_50_1432054715-12 89 90.098209 hybrid +146_1-7 Q0 MARCO_55_212962939-17 90 90.094609 hybrid +146_1-7 Q0 MARCO_12_1746627478-6 91 90.087426 hybrid +146_1-7 Q0 MARCO_14_1670032268-2 92 90.080859 hybrid +146_1-7 Q0 MARCO_20_25450151-8 93 90.077912 hybrid +146_1-7 Q0 MARCO_38_126640031-2 94 90.071859 hybrid +146_1-7 Q0 MARCO_58_587115798-17 95 90.067059 hybrid +146_1-7 Q0 MARCO_20_25450151-7 96 90.061966 hybrid +146_1-7 Q0 MARCO_29_1566720175-15 97 90.061809 hybrid +146_1-7 Q0 MARCO_20_21862058-8 98 90.059823 hybrid +146_1-7 Q0 MARCO_30_517297549-9 99 90.058109 hybrid +146_1-7 Q0 MARCO_20_998807430-20 100 90.056359 hybrid +146_1-9 Q0 MARCO_12_1168581743-2 1 90.341461 hybrid +146_1-9 Q0 MARCO_12_1168581743-1 2 90.292151 hybrid +146_1-9 Q0 MARCO_12_1748283911-19 3 90.165496 hybrid +146_1-9 Q0 MARCO_12_1744532862-5 4 90.121897 hybrid +146_1-9 Q0 MARCO_12_1748283911-1 5 90.109141 hybrid +146_1-9 Q0 MARCO_12_1168581743-4 6 90.101751 hybrid +146_1-9 Q0 MARCO_12_1748606616-2 7 90.047605 hybrid +146_1-9 Q0 MARCO_12_1168581743-8 8 90.025286 hybrid +146_1-9 Q0 MARCO_12_1744392103-2 9 89.964335 hybrid +146_1-9 Q0 MARCO_12_1744392103-1 10 89.942085 hybrid +146_1-9 Q0 MARCO_12_1748283911-5 11 89.937107 hybrid +146_1-9 Q0 MARCO_12_1168581743-13 12 89.795616 hybrid +146_1-9 Q0 MARCO_12_1748283911-3 13 89.794813 hybrid +146_1-9 Q0 MARCO_12_1744392103-6 14 89.723982 hybrid +146_1-9 Q0 MARCO_37_835539785-1 15 89.658927 hybrid +146_1-9 Q0 MARCO_24_1263071172-22 16 89.568182 hybrid +146_1-9 Q0 MARCO_07_1002161466-2 17 89.556837 hybrid +146_1-9 Q0 MARCO_20_647094895-1 18 89.550678 hybrid +146_1-9 Q0 MARCO_12_1746730961-1 19 89.540074 hybrid +146_1-9 Q0 MARCO_27_1110605614-1 20 89.496252 hybrid +146_1-9 Q0 MARCO_12_1747653960-32 21 89.480414 hybrid +146_1-9 Q0 MARCO_12_1748283911-9 22 89.460152 hybrid +146_1-9 Q0 MARCO_42_1825385929-2 23 89.441079 hybrid +146_1-9 Q0 MARCO_59_874124800-2 24 89.440029 hybrid +146_1-9 Q0 MARCO_15_1880443043-3 25 89.421788 hybrid +146_1-9 Q0 MARCO_12_1748606616-3 26 89.420866 hybrid +146_1-9 Q0 MARCO_39_1620180517-1 27 89.409328 hybrid +146_1-9 Q0 MARCO_12_1748283911-2 28 89.385486 hybrid +146_1-9 Q0 MARCO_10_444731772-8 29 89.376677 hybrid +146_1-9 Q0 MARCO_33_1315090129-11 30 89.359961 hybrid +146_1-9 Q0 MARCO_12_1741630321-2 31 89.353629 hybrid +146_1-9 Q0 MARCO_20_26778100-5 32 89.348211 hybrid +146_1-9 Q0 MARCO_25_1222141158-2 33 89.347478 hybrid +146_1-9 Q0 MARCO_21_151059437-19 34 89.344806 hybrid +146_1-9 Q0 MARCO_24_1276004124-1 35 89.337878 hybrid +146_1-9 Q0 MARCO_24_1269440766-1 36 89.307890 hybrid +146_1-9 Q0 MARCO_41_2011649214-2 37 89.305928 hybrid +146_1-9 Q0 MARCO_27_283884848-1 38 89.297628 hybrid +146_1-9 Q0 MARCO_20_26648209-4 39 89.292419 hybrid +146_1-9 Q0 MARCO_24_1268172536-20 40 89.283056 hybrid +146_1-9 Q0 MARCO_12_1746730961-6 41 89.280642 hybrid +146_1-9 Q0 MARCO_42_1823278916-3 42 89.276078 hybrid +146_1-9 Q0 MARCO_47_1332461670-1 43 89.275878 hybrid +146_1-9 Q0 MARCO_20_647094895-4 44 89.271129 hybrid +146_1-9 Q0 MARCO_50_1453179788-41 45 89.269629 hybrid +146_1-9 Q0 MARCO_24_1263071172-2 46 89.268943 hybrid +146_1-9 Q0 MARCO_12_1745140573-6 47 89.267101 hybrid +146_1-9 Q0 MARCO_12_1748283911-12 48 89.247792 hybrid +146_1-9 Q0 MARCO_24_1263071172-19 49 89.241728 hybrid +146_1-9 Q0 MARCO_12_1748441115-29 50 89.239216 hybrid +146_1-9 Q0 MARCO_29_663311583-11 51 89.228086 hybrid +146_1-9 Q0 MARCO_12_1748485783-1 52 89.225471 hybrid +146_1-9 Q0 MARCO_30_86811266-9 53 89.221304 hybrid +146_1-9 Q0 MARCO_34_376961247-1 54 89.217679 hybrid +146_1-9 Q0 MARCO_20_647094895-2 55 89.214378 hybrid +146_1-9 Q0 MARCO_12_1748283911-10 56 89.204831 hybrid +146_1-9 Q0 MARCO_29_1566570920-10 57 89.203379 hybrid +146_1-9 Q0 MARCO_27_284011020-1 58 89.202728 hybrid +146_1-9 Q0 MARCO_34_433476982-1 59 89.200078 hybrid +146_1-9 Q0 MARCO_15_1880443043-4 60 89.196363 hybrid +146_1-9 Q0 MARCO_12_1168581743-3 61 89.195754 hybrid +146_1-9 Q0 MARCO_56_281799930-1 62 89.195428 hybrid +146_1-9 Q0 MARCO_12_1744392103-5 63 89.194883 hybrid +146_1-9 Q0 MARCO_37_610816880-1 64 89.183228 hybrid +146_1-9 Q0 MARCO_25_1222114287-18 65 89.175579 hybrid +146_1-9 Q0 MARCO_33_291455743-1 66 89.174628 hybrid +146_1-9 Q0 MARCO_20_26778100-1 67 89.168333 hybrid +146_1-9 Q0 MARCO_31_769888305-2 68 89.164979 hybrid +146_1-9 Q0 MARCO_12_1746795079-10 69 89.157362 hybrid +146_1-9 Q0 MARCO_54_645339007-1 70 89.153753 hybrid +146_1-9 Q0 MARCO_12_1168581743-9 71 89.153337 hybrid +146_1-9 Q0 MARCO_47_1282262231-1 72 89.146925 hybrid +146_1-9 Q0 MARCO_12_1744392103-11 73 89.145388 hybrid +146_1-9 Q0 MARCO_39_1620180517-5 74 89.130878 hybrid +146_1-9 Q0 MARCO_59_874124800-17 75 89.125928 hybrid +146_1-9 Q0 MARCO_11_754522594-8 76 89.112043 hybrid +146_1-9 Q0 MARCO_47_1282262231-5 77 89.111044 hybrid +146_1-9 Q0 MARCO_24_1267968743-2 78 89.109724 hybrid +146_1-9 Q0 MARCO_27_284011020-5 79 89.108529 hybrid +146_1-9 Q0 MARCO_56_269474329-2 80 89.105078 hybrid +146_1-9 Q0 MARCO_20_26778100-20 81 89.103064 hybrid +146_1-9 Q0 MARCO_47_1282262231-7 82 89.092535 hybrid +146_1-9 Q0 MARCO_34_377207718-1 83 89.091578 hybrid +146_1-9 Q0 MARCO_24_1263071172-12 84 89.089506 hybrid +146_1-9 Q0 MARCO_27_913528998-15 85 89.089193 hybrid +146_1-9 Q0 MARCO_30_1376171482-23 86 89.087027 hybrid +146_1-9 Q0 MARCO_30_741965646-3 87 89.086644 hybrid +146_1-9 Q0 MARCO_24_1269618829-9 88 89.082716 hybrid +146_1-9 Q0 MARCO_20_647094895-3 89 89.071229 hybrid +146_1-9 Q0 MARCO_29_1566720175-1 90 89.061878 hybrid +146_1-9 Q0 MARCO_20_26778100-8 91 89.059273 hybrid +146_1-9 Q0 MARCO_15_1880443043-14 92 89.058317 hybrid +146_1-9 Q0 MARCO_04_843443607-2 93 89.056678 hybrid +146_1-9 Q0 MARCO_12_1746795079-1 94 89.042906 hybrid +146_1-9 Q0 MARCO_12_1280258786-20 95 89.041178 hybrid +146_1-9 Q0 MARCO_20_26305446-40 96 89.038679 hybrid +146_1-9 Q0 MARCO_12_1168581743-5 97 89.038074 hybrid +146_1-9 Q0 MARCO_56_269024389-17 98 89.035228 hybrid +146_1-9 Q0 MARCO_24_1272117402-5 99 89.033773 hybrid +146_1-9 Q0 MARCO_42_1893419560-10 100 89.029356 hybrid +147_1-1 Q0 MARCO_50_2498449365-18 1 90.389204 hybrid +147_1-1 Q0 MARCO_36_888487863-6 2 90.276776 hybrid +147_1-1 Q0 MARCO_56_450306784-1 3 90.176427 hybrid +147_1-1 Q0 MARCO_44_32772068-12 4 90.073790 hybrid +147_1-1 Q0 MARCO_44_32790856-12 5 90.073790 hybrid +147_1-1 Q0 MARCO_44_33070735-12 6 89.928098 hybrid +147_1-1 Q0 MARCO_44_35079726-11 7 89.897862 hybrid +147_1-1 Q0 MARCO_44_35079726-8 8 89.835011 hybrid +147_1-1 Q0 MARCO_41_952400628-1 9 89.819069 hybrid +147_1-1 Q0 MARCO_44_35079726-12 10 89.812121 hybrid +147_1-1 Q0 MARCO_44_32790856-7 11 89.782857 hybrid +147_1-1 Q0 MARCO_44_32772068-7 12 89.782834 hybrid +147_1-1 Q0 MARCO_44_32790856-3 13 89.672209 hybrid +147_1-1 Q0 MARCO_34_1361534923-1 14 89.633970 hybrid +147_1-1 Q0 MARCO_30_352398788-1 15 89.628419 hybrid +147_1-1 Q0 MARCO_44_608267500-1 16 89.627322 hybrid +147_1-1 Q0 KILT_47069739-32 17 89.574628 hybrid +147_1-1 Q0 MARCO_44_32772068-3 18 89.540288 hybrid +147_1-1 Q0 MARCO_49_1323862759-2 19 89.480945 hybrid +147_1-1 Q0 MARCO_40_174893863-1 20 89.469208 hybrid +147_1-1 Q0 MARCO_44_33070735-15 21 89.410161 hybrid +147_1-1 Q0 MARCO_51_870940831-5 22 89.387369 hybrid +147_1-1 Q0 MARCO_44_33070735-16 23 89.379372 hybrid +147_1-1 Q0 MARCO_44_33070735-17 24 89.369588 hybrid +147_1-1 Q0 MARCO_44_35079726-3 25 89.358113 hybrid +147_1-1 Q0 MARCO_35_1382138495-1 26 89.347908 hybrid +147_1-1 Q0 MARCO_44_32772068-14 27 89.346951 hybrid +147_1-1 Q0 MARCO_44_35079726-5 28 89.341245 hybrid +147_1-1 Q0 MARCO_44_32790856-13 29 89.321004 hybrid +147_1-1 Q0 MARCO_44_32772068-13 30 89.321004 hybrid +147_1-1 Q0 MARCO_07_258203158-7 31 89.306577 hybrid +147_1-1 Q0 MARCO_51_866656309-11 32 89.296369 hybrid +147_1-1 Q0 MARCO_44_33070735-9 33 89.288243 hybrid +147_1-1 Q0 MARCO_44_35079726-13 34 89.275205 hybrid +147_1-1 Q0 MARCO_51_869623541-6 35 89.252269 hybrid +147_1-1 Q0 MARCO_35_1384648142-14 36 89.243070 hybrid +147_1-1 Q0 MARCO_29_31260901-3 37 89.237503 hybrid +147_1-1 Q0 MARCO_07_1580559307-11 38 89.227101 hybrid +147_1-1 Q0 MARCO_36_1317706650-9 39 89.213369 hybrid +147_1-1 Q0 MARCO_25_1426460659-1 40 89.211064 hybrid +147_1-1 Q0 MARCO_24_1950643919-18 41 89.205720 hybrid +147_1-1 Q0 MARCO_51_874839195-8 42 89.202169 hybrid +147_1-1 Q0 MARCO_44_33070735-10 43 89.197125 hybrid +147_1-1 Q0 MARCO_17_2942368905-19 44 89.189084 hybrid +147_1-1 Q0 MARCO_47_123138973-1 45 89.188119 hybrid +147_1-1 Q0 MARCO_51_857096217-5 46 89.165319 hybrid +147_1-1 Q0 MARCO_42_1105109712-3 47 89.159833 hybrid +147_1-1 Q0 MARCO_44_35079726-6 48 89.128423 hybrid +147_1-1 Q0 MARCO_00_1161106414-2 49 89.128011 hybrid +147_1-1 Q0 MARCO_44_610674293-1 50 89.124845 hybrid +147_1-1 Q0 MARCO_23_678075708-5 51 89.104219 hybrid +147_1-1 Q0 MARCO_52_1210895525-1 52 89.078771 hybrid +147_1-1 Q0 MARCO_44_32790856-6 53 89.076444 hybrid +147_1-1 Q0 MARCO_44_32772068-6 54 89.076444 hybrid +147_1-1 Q0 MARCO_31_633759086-5 55 89.065769 hybrid +147_1-1 Q0 MARCO_36_109240224-2 56 89.053319 hybrid +147_1-1 Q0 MARCO_01_822270056-8 57 89.051793 hybrid +147_1-1 Q0 MARCO_12_1866611257-14 58 89.041134 hybrid +147_1-1 Q0 MARCO_17_4189131090-2 59 89.040921 hybrid +147_1-1 Q0 MARCO_51_860812267-5 60 89.036269 hybrid +147_1-1 Q0 MARCO_14_763449557-8 61 89.030119 hybrid +147_1-1 Q0 MARCO_50_362153526-3 62 89.025620 hybrid +147_1-1 Q0 MARCO_14_763253137-2 63 89.015019 hybrid +147_1-1 Q0 MARCO_44_32790856-14 64 89.010793 hybrid +147_1-1 Q0 MARCO_44_33070735-14 65 89.007138 hybrid +147_1-1 Q0 MARCO_36_109240224-6 66 89.006469 hybrid +147_1-1 Q0 MARCO_12_1866611257-11 67 89.004033 hybrid +147_1-1 Q0 MARCO_23_1085604106-1 68 88.999608 hybrid +147_1-1 Q0 MARCO_46_629689633-1 69 88.995824 hybrid +147_1-1 Q0 MARCO_44_32772068-9 70 88.988782 hybrid +147_1-1 Q0 MARCO_44_32790856-9 71 88.988782 hybrid +147_1-1 Q0 MARCO_56_1313781070-6 72 88.984311 hybrid +147_1-1 Q0 MARCO_43_1019176089-17 73 88.966977 hybrid +147_1-1 Q0 MARCO_36_100737020-1 74 88.964520 hybrid +147_1-1 Q0 MARCO_25_1425970494-13 75 88.964162 hybrid +147_1-1 Q0 MARCO_44_32772068-4 76 88.957799 hybrid +147_1-1 Q0 MARCO_44_32790856-4 77 88.957799 hybrid +147_1-1 Q0 MARCO_40_175150328-8 78 88.955647 hybrid +147_1-1 Q0 MARCO_44_32790856-10 79 88.954221 hybrid +147_1-1 Q0 MARCO_44_32772068-10 80 88.954213 hybrid +147_1-1 Q0 MARCO_44_610674293-9 81 88.952971 hybrid +147_1-1 Q0 MARCO_44_33070735-11 82 88.946179 hybrid +147_1-1 Q0 MARCO_18_3756735521-34 83 88.945088 hybrid +147_1-1 Q0 MARCO_15_1454041092-1 84 88.937569 hybrid +147_1-1 Q0 MARCO_17_1723309964-108 85 88.932370 hybrid +147_1-1 Q0 KILT_41677925-58 86 88.927472 hybrid +147_1-1 Q0 MARCO_14_764065453-1 87 88.924170 hybrid +147_1-1 Q0 MARCO_50_1238476289-15 88 88.913620 hybrid +147_1-1 Q0 MARCO_44_35079726-4 89 88.913045 hybrid +147_1-1 Q0 MARCO_11_985899771-18 90 88.911520 hybrid +147_1-1 Q0 MARCO_51_865651677-5 91 88.911319 hybrid +147_1-1 Q0 MARCO_40_175608980-6 92 88.910542 hybrid +147_1-1 Q0 MARCO_44_32772068-8 93 88.898519 hybrid +147_1-1 Q0 MARCO_44_32790856-8 94 88.898519 hybrid +147_1-1 Q0 MARCO_46_629689633-3 95 88.896848 hybrid +147_1-1 Q0 MARCO_14_763197838-6 96 88.894569 hybrid +147_1-1 Q0 MARCO_36_888487863-7 97 88.889295 hybrid +147_1-1 Q0 MARCO_56_450306784-18 98 88.883183 hybrid +147_1-1 Q0 MARCO_41_116162463-2 99 88.867375 hybrid +147_1-1 Q0 MARCO_50_2660065561-1 100 88.866419 hybrid +147_1-11 Q0 KILT_5727147-5 1 88.553836 hybrid +147_1-11 Q0 MARCO_44_609433579-2 2 88.280503 hybrid +147_1-11 Q0 MARCO_27_1501635766-1 3 88.229958 hybrid +147_1-11 Q0 KILT_1074657-1 4 88.226508 hybrid +147_1-11 Q0 KILT_1043595-1 5 88.206659 hybrid +147_1-11 Q0 MARCO_06_1965268772-7 6 88.028458 hybrid +147_1-11 Q0 KILT_55994110-1 7 87.992358 hybrid +147_1-11 Q0 KILT_22783445-14 8 87.981658 hybrid +147_1-11 Q0 KILT_11208322-3 9 87.978158 hybrid +147_1-11 Q0 MARCO_38_40200777-8 10 87.975657 hybrid +147_1-11 Q0 MARCO_20_454211596-8 11 87.970958 hybrid +147_1-11 Q0 MARCO_44_609706399-2 12 87.953001 hybrid +147_1-11 Q0 MARCO_44_610655812-1 13 87.938116 hybrid +147_1-11 Q0 MARCO_50_2623345285-3 14 87.931808 hybrid +147_1-11 Q0 MARCO_36_422580709-1 15 87.925858 hybrid +147_1-11 Q0 MARCO_42_1454335479-1 16 87.924658 hybrid +147_1-11 Q0 MARCO_50_2498449365-18 17 87.923357 hybrid +147_1-11 Q0 MARCO_17_3686166367-17 18 87.907608 hybrid +147_1-11 Q0 KILT_35625166-27 19 87.899708 hybrid +147_1-11 Q0 MARCO_00_1161868671-2 20 87.888151 hybrid +147_1-11 Q0 MARCO_35_475291777-1 21 87.876758 hybrid +147_1-11 Q0 KILT_55755841-1 22 87.862808 hybrid +147_1-11 Q0 KILT_44254295-45 23 87.852958 hybrid +147_1-11 Q0 KILT_1074657-20 24 87.852008 hybrid +147_1-11 Q0 MARCO_35_1383547965-6 25 87.842407 hybrid +147_1-11 Q0 MARCO_18_2921726631-97 26 87.824358 hybrid +147_1-11 Q0 KILT_47495546-49 27 87.812208 hybrid +147_1-11 Q0 MARCO_00_1161868671-1 28 87.804663 hybrid +147_1-11 Q0 MARCO_17_3800214442-1 29 87.799707 hybrid +147_1-11 Q0 MARCO_04_1496790789-4 30 87.796858 hybrid +147_1-11 Q0 MARCO_47_1000204684-1 31 87.796758 hybrid +147_1-11 Q0 MARCO_43_841730796-5 32 87.763008 hybrid +147_1-11 Q0 MARCO_27_1434420878-4 33 87.739859 hybrid +147_1-11 Q0 MARCO_02_1480453124-1 34 87.739608 hybrid +147_1-11 Q0 MARCO_18_3238248519-2 35 87.731808 hybrid +147_1-11 Q0 MARCO_30_562930811-3 36 87.723557 hybrid +147_1-11 Q0 MARCO_02_58328264-6 37 87.703708 hybrid +147_1-11 Q0 MARCO_36_1293167950-1 38 87.702358 hybrid +147_1-11 Q0 MARCO_27_1501956103-1 39 87.701108 hybrid +147_1-11 Q0 MARCO_18_2419479428-32 40 87.698851 hybrid +147_1-11 Q0 KILT_36658495-4 41 87.697905 hybrid +147_1-11 Q0 MARCO_30_561903930-26 42 87.688358 hybrid +147_1-11 Q0 MARCO_30_1407694039-4 43 87.685257 hybrid +147_1-11 Q0 MARCO_17_4816477810-109 44 87.682158 hybrid +147_1-11 Q0 MARCO_35_1383547965-11 45 87.675215 hybrid +147_1-11 Q0 MARCO_27_1710600199-1 46 87.663958 hybrid +147_1-11 Q0 MARCO_01_692444269-5 47 87.662408 hybrid +147_1-11 Q0 MARCO_43_841730796-7 48 87.651008 hybrid +147_1-11 Q0 MARCO_57_1402930186-1 49 87.649673 hybrid +147_1-11 Q0 MARCO_18_3527115620-2 50 87.633708 hybrid +147_1-11 Q0 MARCO_14_791867527-13 51 87.631097 hybrid +147_1-11 Q0 MARCO_18_1803225057-15 52 87.629568 hybrid +147_1-11 Q0 MARCO_18_3756735521-62 53 87.628965 hybrid +147_1-11 Q0 MARCO_57_875386862-15 54 87.628258 hybrid +147_1-11 Q0 MARCO_18_3756735521-74 55 87.620222 hybrid +147_1-11 Q0 MARCO_16_2381616729-44 56 87.619458 hybrid +147_1-11 Q0 MARCO_16_3241163921-23 57 87.611358 hybrid +147_1-11 Q0 MARCO_00_1161868671-3 58 87.594516 hybrid +147_1-11 Q0 MARCO_17_4818119431-2 59 87.593508 hybrid +147_1-11 Q0 MARCO_22_1257533157-1 60 87.592058 hybrid +147_1-11 Q0 MARCO_30_558934876-3 61 87.592057 hybrid +147_1-11 Q0 MARCO_17_4816382521-6 62 87.570058 hybrid +147_1-11 Q0 MARCO_41_114937070-5 63 87.564344 hybrid +147_1-11 Q0 MARCO_25_360772300-1 64 87.563958 hybrid +147_1-11 Q0 MARCO_18_475522068-13 65 87.560186 hybrid +147_1-11 Q0 MARCO_45_895030166-2 66 87.558458 hybrid +147_1-11 Q0 MARCO_00_1161498748-4 67 87.552351 hybrid +147_1-11 Q0 MARCO_44_684023906-1 68 87.550308 hybrid +147_1-11 Q0 MARCO_35_310373996-2 69 87.548408 hybrid +147_1-11 Q0 MARCO_36_107035810-3 70 87.543658 hybrid +147_1-11 Q0 MARCO_36_422340567-3 71 87.543657 hybrid +147_1-11 Q0 MARCO_00_1486305240-7 72 87.542007 hybrid +147_1-11 Q0 MARCO_44_609464324-3 73 87.541380 hybrid +147_1-11 Q0 MARCO_44_610097902-1 74 87.533628 hybrid +147_1-11 Q0 MARCO_27_1431814765-11 75 87.532438 hybrid +147_1-11 Q0 MARCO_18_3163465006-6 76 87.532108 hybrid +147_1-11 Q0 MARCO_50_1506711576-37 77 87.507849 hybrid +147_1-11 Q0 KILT_11951081-5 78 87.507826 hybrid +147_1-11 Q0 MARCO_44_609464324-2 79 87.501684 hybrid +147_1-11 Q0 MARCO_50_1280687382-13 80 87.499008 hybrid +147_1-11 Q0 MARCO_27_1505283221-5 81 87.498758 hybrid +147_1-11 Q0 MARCO_25_13117317-1 82 87.495258 hybrid +147_1-11 Q0 MARCO_02_1480882337-5 83 87.479708 hybrid +147_1-11 Q0 MARCO_35_1383539023-4 84 87.473783 hybrid +147_1-11 Q0 MARCO_24_818625-2 85 87.471083 hybrid +147_1-11 Q0 MARCO_39_1133071304-2 86 87.470407 hybrid +147_1-11 Q0 MARCO_53_1337906616-1 87 87.468458 hybrid +147_1-11 Q0 MARCO_27_1456437245-2 88 87.467957 hybrid +147_1-11 Q0 MARCO_35_289780164-5 89 87.460758 hybrid +147_1-11 Q0 MARCO_49_1672991792-5 90 87.460757 hybrid +147_1-11 Q0 MARCO_35_1383547965-1 91 87.456533 hybrid +147_1-11 Q0 MARCO_25_1426460659-1 92 87.445712 hybrid +147_1-11 Q0 MARCO_57_179361475-2 93 87.443408 hybrid +147_1-11 Q0 MARCO_27_1452833113-1 94 87.441008 hybrid +147_1-11 Q0 MARCO_34_165929951-2 95 87.435358 hybrid +147_1-11 Q0 MARCO_30_561945896-4 96 87.428858 hybrid +147_1-11 Q0 MARCO_30_563318021-7 97 87.428607 hybrid +147_1-11 Q0 MARCO_54_1930561583-6 98 87.427308 hybrid +147_1-11 Q0 KILT_36658495-2 99 87.425856 hybrid +147_1-11 Q0 MARCO_24_1294693954-1 100 87.420058 hybrid +147_1-13 Q0 MARCO_35_1381811664-1 1 87.145788 hybrid +147_1-13 Q0 MARCO_18_2389435848-7 2 86.984707 hybrid +147_1-13 Q0 MARCO_17_2668085167-5 3 86.682678 hybrid +147_1-13 Q0 MARCO_35_1381829109-2 4 86.559678 hybrid +147_1-13 Q0 MARCO_11_840593986-2 5 86.518678 hybrid +147_1-13 Q0 KILT_16368269-5 6 86.430228 hybrid +147_1-13 Q0 MARCO_14_1214834864-3 7 86.423928 hybrid +147_1-13 Q0 KILT_52464392-12 8 86.407928 hybrid +147_1-13 Q0 MARCO_17_4818119431-10 9 86.338228 hybrid +147_1-13 Q0 MARCO_17_4819044320-14 10 86.309328 hybrid +147_1-13 Q0 MARCO_17_2783238626-4 11 86.298578 hybrid +147_1-13 Q0 MARCO_16_3243279203-66 12 86.291178 hybrid +147_1-13 Q0 MARCO_19_1286364023-8 13 86.282978 hybrid +147_1-13 Q0 MARCO_06_1676624295-19 14 86.254678 hybrid +147_1-13 Q0 MARCO_23_244648306-4 15 86.232367 hybrid +147_1-13 Q0 MARCO_18_3842159303-7 16 86.228127 hybrid +147_1-13 Q0 MARCO_13_1026308475-9 17 86.223828 hybrid +147_1-13 Q0 MARCO_36_100737020-1 18 86.209228 hybrid +147_1-13 Q0 MARCO_30_257662348-2 19 86.199327 hybrid +147_1-13 Q0 MARCO_51_1242871660-69 20 86.179777 hybrid +147_1-13 Q0 MARCO_51_1242871660-49 21 86.170619 hybrid +147_1-13 Q0 MARCO_44_643044646-7 22 86.153928 hybrid +147_1-13 Q0 MARCO_54_1522858487-10 23 86.146391 hybrid +147_1-13 Q0 MARCO_00_1006614948-3 24 86.130011 hybrid +147_1-13 Q0 MARCO_50_1607961702-5 25 86.129850 hybrid +147_1-13 Q0 KILT_12210793-2 26 86.101942 hybrid +147_1-13 Q0 KILT_12210793-7 27 86.088163 hybrid +147_1-13 Q0 MARCO_17_3094322423-19 28 86.069178 hybrid +147_1-13 Q0 MARCO_33_485936101-22 29 86.065428 hybrid +147_1-13 Q0 MARCO_55_820091751-7 30 86.055372 hybrid +147_1-13 Q0 MARCO_13_401512644-8 31 86.040618 hybrid +147_1-13 Q0 MARCO_27_1501384267-1 32 86.034228 hybrid +147_1-13 Q0 MARCO_32_873077775-2 33 86.031178 hybrid +147_1-13 Q0 MARCO_02_1676620108-1 34 86.029178 hybrid +147_1-13 Q0 MARCO_20_742151787-3 35 86.025978 hybrid +147_1-13 Q0 MARCO_36_100737020-5 36 86.022027 hybrid +147_1-13 Q0 KILT_41259294-6 37 86.021578 hybrid +147_1-13 Q0 MARCO_51_1242871660-39 38 85.990561 hybrid +147_1-13 Q0 MARCO_50_2240949679-117 39 85.987428 hybrid +147_1-13 Q0 MARCO_17_3094322423-9 40 85.973997 hybrid +147_1-13 Q0 MARCO_40_1277533248-6 41 85.969572 hybrid +147_1-13 Q0 MARCO_51_1574979833-11 42 85.966428 hybrid +147_1-13 Q0 MARCO_33_485936101-7 43 85.963812 hybrid +147_1-13 Q0 MARCO_17_3094322423-17 44 85.961780 hybrid +147_1-13 Q0 KILT_12210793-3 45 85.954260 hybrid +147_1-13 Q0 MARCO_20_742151787-4 46 85.950377 hybrid +147_1-13 Q0 MARCO_36_864202522-3 47 85.932678 hybrid +147_1-13 Q0 MARCO_35_1385623774-3 48 85.931776 hybrid +147_1-13 Q0 MARCO_27_1501384267-3 49 85.928028 hybrid +147_1-13 Q0 MARCO_12_147135613-134 50 85.923719 hybrid +147_1-13 Q0 MARCO_41_1358746452-38 51 85.916172 hybrid +147_1-13 Q0 MARCO_35_1373373996-1 52 85.913978 hybrid +147_1-13 Q0 MARCO_41_1231939664-79 53 85.898932 hybrid +147_1-13 Q0 MARCO_15_781599454-1 54 85.894478 hybrid +147_1-13 Q0 MARCO_14_1615338299-3 55 85.875082 hybrid +147_1-13 Q0 MARCO_51_1242871660-58 56 85.873785 hybrid +147_1-13 Q0 MARCO_27_1438015774-1 57 85.870478 hybrid +147_1-13 Q0 MARCO_32_1710681317-1 58 85.868177 hybrid +147_1-13 Q0 MARCO_13_620495137-1 59 85.864228 hybrid +147_1-13 Q0 MARCO_24_436508401-3 60 85.863627 hybrid +147_1-13 Q0 KILT_36658495-4 61 85.862104 hybrid +147_1-13 Q0 MARCO_45_1457315114-3 62 85.857627 hybrid +147_1-13 Q0 MARCO_16_1783030393-18 63 85.854877 hybrid +147_1-13 Q0 MARCO_19_1321718648-24 64 85.854678 hybrid +147_1-13 Q0 MARCO_35_409800712-2 65 85.850228 hybrid +147_1-13 Q0 MARCO_36_1317706650-9 66 85.850028 hybrid +147_1-13 Q0 MARCO_12_1866611257-3 67 85.847715 hybrid +147_1-13 Q0 MARCO_13_401512644-2 68 85.843512 hybrid +147_1-13 Q0 MARCO_13_23118636-13 69 85.840002 hybrid +147_1-13 Q0 MARCO_16_110104570-14 70 85.837606 hybrid +147_1-13 Q0 MARCO_05_640355155-5 71 85.831578 hybrid +147_1-13 Q0 MARCO_14_726433370-6 72 85.825628 hybrid +147_1-13 Q0 MARCO_33_485936101-2 73 85.825361 hybrid +147_1-13 Q0 MARCO_50_2240949679-158 74 85.825228 hybrid +147_1-13 Q0 MARCO_58_1587094730-5 75 85.823414 hybrid +147_1-13 Q0 MARCO_08_936746974-3 76 85.822128 hybrid +147_1-13 Q0 MARCO_25_1033618547-3 77 85.822086 hybrid +147_1-13 Q0 MARCO_28_555051138-2 78 85.820478 hybrid +147_1-13 Q0 MARCO_22_1853099804-1 79 85.808527 hybrid +147_1-13 Q0 MARCO_23_1830544655-1 80 85.801928 hybrid +147_1-13 Q0 MARCO_27_454392969-3 81 85.799828 hybrid +147_1-13 Q0 MARCO_00_719738480-3 82 85.798887 hybrid +147_1-13 Q0 MARCO_30_123359247-2 83 85.794409 hybrid +147_1-13 Q0 MARCO_17_3094322423-11 84 85.789717 hybrid +147_1-13 Q0 MARCO_04_324560370-4 85 85.785002 hybrid +147_1-13 Q0 MARCO_13_323346002-2 86 85.779943 hybrid +147_1-13 Q0 MARCO_20_815122724-4 87 85.776128 hybrid +147_1-13 Q0 MARCO_16_110104570-15 88 85.775106 hybrid +147_1-13 Q0 MARCO_06_1210871486-266 89 85.774028 hybrid +147_1-13 Q0 MARCO_39_661900891-31 90 85.774027 hybrid +147_1-13 Q0 MARCO_19_160112057-3 91 85.768171 hybrid +147_1-13 Q0 MARCO_51_1242871660-75 92 85.765966 hybrid +147_1-13 Q0 MARCO_50_1446542803-26 93 85.756498 hybrid +147_1-13 Q0 MARCO_35_1383005145-1 94 85.755704 hybrid +147_1-13 Q0 MARCO_50_1506561565-24 95 85.752981 hybrid +147_1-13 Q0 MARCO_33_742522995-3 96 85.752539 hybrid +147_1-13 Q0 MARCO_01_1664659609-3 97 85.745828 hybrid +147_1-13 Q0 MARCO_02_869268468-6 98 85.743345 hybrid +147_1-13 Q0 MARCO_28_422948117-4 99 85.736097 hybrid +147_1-13 Q0 MARCO_13_401503891-3 100 85.732458 hybrid +147_1-15 Q0 MARCO_43_353595745-9 1 90.541961 hybrid +147_1-15 Q0 MARCO_35_1352396670-1 2 89.309661 hybrid +147_1-15 Q0 MARCO_27_1536320595-2 3 88.812211 hybrid +147_1-15 Q0 MARCO_19_2175002886-11 4 88.160360 hybrid +147_1-15 Q0 KILT_10854413-4 5 88.072260 hybrid +147_1-15 Q0 MARCO_27_1480499709-1 6 87.998460 hybrid +147_1-15 Q0 MARCO_48_629899526-5 7 87.982561 hybrid +147_1-15 Q0 MARCO_27_1554716899-6 8 87.976460 hybrid +147_1-15 Q0 KILT_73499-4 9 87.964760 hybrid +147_1-15 Q0 MARCO_55_627867452-24 10 87.852911 hybrid +147_1-15 Q0 MARCO_28_479804071-2 11 87.846261 hybrid +147_1-15 Q0 MARCO_36_650474562-3 12 87.781061 hybrid +147_1-15 Q0 MARCO_45_424191780-2 13 87.742111 hybrid +147_1-15 Q0 MARCO_27_1508004974-1 14 87.712310 hybrid +147_1-15 Q0 MARCO_05_347552213-7 15 87.694810 hybrid +147_1-15 Q0 MARCO_47_1037301988-1 16 87.651111 hybrid +147_1-15 Q0 MARCO_30_802757031-1 17 87.640410 hybrid +147_1-15 Q0 MARCO_44_51041772-2 18 87.607561 hybrid +147_1-15 Q0 MARCO_47_908923819-3 19 87.574511 hybrid +147_1-15 Q0 MARCO_27_1536320595-6 20 87.543611 hybrid +147_1-15 Q0 MARCO_18_1285635701-5 21 87.525661 hybrid +147_1-15 Q0 MARCO_40_59856963-5 22 87.484910 hybrid +147_1-15 Q0 MARCO_43_193593489-47 23 87.484611 hybrid +147_1-15 Q0 MARCO_15_311086668-22 24 87.482200 hybrid +147_1-15 Q0 MARCO_39_1745929739-16 25 87.481761 hybrid +147_1-15 Q0 MARCO_15_311086668-18 26 87.436843 hybrid +147_1-15 Q0 MARCO_41_2165144374-21 27 87.419510 hybrid +147_1-15 Q0 MARCO_13_740305728-9 28 87.400580 hybrid +147_1-15 Q0 MARCO_41_635975520-2 29 87.379210 hybrid +147_1-15 Q0 MARCO_35_1393209326-1 30 87.360610 hybrid +147_1-15 Q0 MARCO_35_1382020158-1 31 87.360460 hybrid +147_1-15 Q0 MARCO_24_1498543941-10 32 87.352410 hybrid +147_1-15 Q0 MARCO_28_1645652755-2 33 87.344161 hybrid +147_1-15 Q0 MARCO_29_660988135-7 34 87.324264 hybrid +147_1-15 Q0 MARCO_18_3429174369-15 35 87.323710 hybrid +147_1-15 Q0 KILT_52464392-12 36 87.322560 hybrid +147_1-15 Q0 MARCO_40_972276726-1 37 87.320261 hybrid +147_1-15 Q0 MARCO_17_1669828173-9 38 87.292511 hybrid +147_1-15 Q0 KILT_17254442-3 39 87.291060 hybrid +147_1-15 Q0 MARCO_43_353595745-2 40 87.289260 hybrid +147_1-15 Q0 MARCO_41_1147975002-13 41 87.284011 hybrid +147_1-15 Q0 KILT_38911166-2 42 87.274734 hybrid +147_1-15 Q0 MARCO_50_1969067492-23 43 87.265845 hybrid +147_1-15 Q0 MARCO_33_1462096896-3 44 87.264310 hybrid +147_1-15 Q0 MARCO_35_1393944602-1 45 87.260261 hybrid +147_1-15 Q0 MARCO_35_1760052217-1 46 87.243761 hybrid +147_1-15 Q0 MARCO_57_1974278187-26 47 87.238982 hybrid +147_1-15 Q0 MARCO_12_756713754-5 48 87.236761 hybrid +147_1-15 Q0 MARCO_42_1375247535-22 49 87.232660 hybrid +147_1-15 Q0 MARCO_15_311086668-10 50 87.230063 hybrid +147_1-15 Q0 MARCO_35_1390736374-1 51 87.227561 hybrid +147_1-15 Q0 MARCO_41_1231939664-79 52 87.212707 hybrid +147_1-15 Q0 MARCO_27_1465591908-3 53 87.208061 hybrid +147_1-15 Q0 KILT_19121315-13 54 87.186261 hybrid +147_1-15 Q0 KILT_3555476-4 55 87.183910 hybrid +147_1-15 Q0 MARCO_06_1905588132-2 56 87.181160 hybrid +147_1-15 Q0 MARCO_13_611665937-1 57 87.173660 hybrid +147_1-15 Q0 MARCO_27_1545906401-2 58 87.172811 hybrid +147_1-15 Q0 MARCO_20_210170346-1 59 87.159911 hybrid +147_1-15 Q0 MARCO_45_1248015362-2 60 87.159060 hybrid +147_1-15 Q0 KILT_36827865-4 61 87.157172 hybrid +147_1-15 Q0 MARCO_31_1580484585-1 62 87.156460 hybrid +147_1-15 Q0 MARCO_27_1536320595-4 63 87.153060 hybrid +147_1-15 Q0 MARCO_27_1567206326-2 64 87.152267 hybrid +147_1-15 Q0 MARCO_18_448855663-9 65 87.149311 hybrid +147_1-15 Q0 MARCO_48_1432184170-4 66 87.145660 hybrid +147_1-15 Q0 MARCO_12_80651690-10 67 87.142410 hybrid +147_1-15 Q0 MARCO_57_1973376795-21 68 87.138549 hybrid +147_1-15 Q0 MARCO_07_1581112806-11 69 87.131511 hybrid +147_1-15 Q0 KILT_54769-3 70 87.114460 hybrid +147_1-15 Q0 MARCO_36_1742669718-4 71 87.113111 hybrid +147_1-15 Q0 MARCO_00_1006614948-3 72 87.111907 hybrid +147_1-15 Q0 MARCO_14_760432601-2 73 87.100511 hybrid +147_1-15 Q0 MARCO_24_1499719803-16 74 87.096961 hybrid +147_1-15 Q0 MARCO_33_742522995-3 75 87.095397 hybrid +147_1-15 Q0 MARCO_43_715610491-16 76 87.094961 hybrid +147_1-15 Q0 MARCO_57_1949828322-19 77 87.093398 hybrid +147_1-15 Q0 MARCO_50_1411015309-18 78 87.091552 hybrid +147_1-15 Q0 MARCO_17_4819044320-14 79 87.090661 hybrid +147_1-15 Q0 MARCO_31_108126189-2 80 87.090311 hybrid +147_1-15 Q0 MARCO_41_1179833590-14 81 87.086161 hybrid +147_1-15 Q0 MARCO_29_1175597810-15 82 87.070739 hybrid +147_1-15 Q0 MARCO_30_1425940733-22 83 87.065910 hybrid +147_1-15 Q0 MARCO_40_1277533248-6 84 87.062491 hybrid +147_1-15 Q0 MARCO_25_1744600447-2 85 87.062261 hybrid +147_1-15 Q0 KILT_9021936-1 86 87.061410 hybrid +147_1-15 Q0 MARCO_20_317900954-4 87 87.060211 hybrid +147_1-15 Q0 MARCO_20_802964364-5 88 87.053911 hybrid +147_1-15 Q0 MARCO_36_1433836339-9 89 87.051848 hybrid +147_1-15 Q0 MARCO_30_1557943648-4 90 87.050261 hybrid +147_1-15 Q0 MARCO_14_1075441533-9 91 87.046260 hybrid +147_1-15 Q0 MARCO_50_1883342863-6 92 87.044411 hybrid +147_1-15 Q0 MARCO_51_452060826-3 93 87.037711 hybrid +147_1-15 Q0 MARCO_57_1957090712-18 94 87.035972 hybrid +147_1-15 Q0 MARCO_43_193593489-46 95 87.033439 hybrid +147_1-15 Q0 MARCO_19_1894178650-2 96 87.032960 hybrid +147_1-15 Q0 MARCO_13_23118636-13 97 87.031775 hybrid +147_1-15 Q0 MARCO_15_311086668-17 98 87.013936 hybrid +147_1-15 Q0 MARCO_24_1556939288-10 99 87.013167 hybrid +147_1-15 Q0 MARCO_41_103764063-12 100 87.013111 hybrid +147_1-3 Q0 MARCO_24_1266739861-14 1 89.566052 hybrid +147_1-3 Q0 MARCO_31_1416243046-1 2 89.344746 hybrid +147_1-3 Q0 MARCO_55_248475370-9 3 89.204095 hybrid +147_1-3 Q0 MARCO_41_991260222-29 4 89.057246 hybrid +147_1-3 Q0 MARCO_23_1778040914-16 5 89.021296 hybrid +147_1-3 Q0 MARCO_14_768618022-102 6 88.927095 hybrid +147_1-3 Q0 KILT_47436493-31 7 88.853045 hybrid +147_1-3 Q0 MARCO_15_671634030-5 8 88.772645 hybrid +147_1-3 Q0 MARCO_30_1470404408-9 9 88.766995 hybrid +147_1-3 Q0 MARCO_27_1442572480-1 10 88.748546 hybrid +147_1-3 Q0 MARCO_27_1442572480-2 11 88.745845 hybrid +147_1-3 Q0 MARCO_53_731995266-131 12 88.730494 hybrid +147_1-3 Q0 MARCO_21_1255731408-1 13 88.602245 hybrid +147_1-3 Q0 MARCO_10_79499431-13 14 88.601058 hybrid +147_1-3 Q0 MARCO_48_382875781-11 15 88.582796 hybrid +147_1-3 Q0 MARCO_02_45668185-20 16 88.453546 hybrid +147_1-3 Q0 MARCO_48_382875781-6 17 88.423595 hybrid +147_1-3 Q0 MARCO_35_1383472964-1 18 88.401585 hybrid +147_1-3 Q0 MARCO_35_1383472964-4 19 88.379021 hybrid +147_1-3 Q0 MARCO_46_629480232-3 20 88.361752 hybrid +147_1-3 Q0 MARCO_24_650670225-4 21 88.357495 hybrid +147_1-3 Q0 MARCO_04_933136670-14 22 88.352695 hybrid +147_1-3 Q0 MARCO_04_933159178-12 23 88.352695 hybrid +147_1-3 Q0 MARCO_35_1378085562-2 24 88.347445 hybrid +147_1-3 Q0 MARCO_35_1383505365-4 25 88.308670 hybrid +147_1-3 Q0 MARCO_02_39522089-11 26 88.282196 hybrid +147_1-3 Q0 MARCO_51_186065222-6 27 88.282195 hybrid +147_1-3 Q0 KILT_36484005-10 28 88.281988 hybrid +147_1-3 Q0 MARCO_45_1191868147-1 29 88.255946 hybrid +147_1-3 Q0 MARCO_23_1778040914-19 30 88.254846 hybrid +147_1-3 Q0 MARCO_23_1556538954-4 31 88.252746 hybrid +147_1-3 Q0 MARCO_37_1196192544-9 32 88.225545 hybrid +147_1-3 Q0 MARCO_47_853147065-1 33 88.218696 hybrid +147_1-3 Q0 MARCO_02_46620966-163 34 88.210095 hybrid +147_1-3 Q0 MARCO_50_1452263860-14 35 88.205381 hybrid +147_1-3 Q0 MARCO_36_1293066427-1 36 88.189695 hybrid +147_1-3 Q0 MARCO_52_495894601-4 37 88.167595 hybrid +147_1-3 Q0 MARCO_42_1454403101-1 38 88.159696 hybrid +147_1-3 Q0 MARCO_16_3553443908-5 39 88.154496 hybrid +147_1-3 Q0 MARCO_36_420324808-3 40 88.141295 hybrid +147_1-3 Q0 MARCO_09_1194677850-3 41 88.124345 hybrid +147_1-3 Q0 MARCO_54_1844013231-1 42 88.117745 hybrid +147_1-3 Q0 MARCO_41_1122465642-19 43 88.100604 hybrid +147_1-3 Q0 MARCO_54_520695107-5 44 88.074845 hybrid +147_1-3 Q0 MARCO_41_325541422-10 45 88.061396 hybrid +147_1-3 Q0 MARCO_33_741177750-3 46 88.048964 hybrid +147_1-3 Q0 MARCO_23_1556538954-3 47 88.044146 hybrid +147_1-3 Q0 MARCO_31_292579249-5 48 88.021625 hybrid +147_1-3 Q0 MARCO_50_972719298-2 49 88.020396 hybrid +147_1-3 Q0 MARCO_35_1382108349-6 50 88.012445 hybrid +147_1-3 Q0 MARCO_14_766359705-4 51 88.011295 hybrid +147_1-3 Q0 MARCO_25_1431566510-6 52 88.009207 hybrid +147_1-3 Q0 MARCO_50_2368813575-19 53 87.998645 hybrid +147_1-3 Q0 MARCO_50_1079261357-26 54 87.997196 hybrid +147_1-3 Q0 MARCO_35_1383520949-3 55 87.990995 hybrid +147_1-3 Q0 MARCO_44_610231832-3 56 87.979794 hybrid +147_1-3 Q0 MARCO_10_79499431-4 57 87.960611 hybrid +147_1-3 Q0 MARCO_57_174821984-3 58 87.954095 hybrid +147_1-3 Q0 MARCO_52_1095046929-2 59 87.949346 hybrid +147_1-3 Q0 MARCO_31_292579249-4 60 87.932768 hybrid +147_1-3 Q0 MARCO_22_1600249812-2 61 87.930994 hybrid +147_1-3 Q0 MARCO_48_382875781-7 62 87.915396 hybrid +147_1-3 Q0 MARCO_41_94269083-3 63 87.913996 hybrid +147_1-3 Q0 MARCO_23_1808024726-13 64 87.910796 hybrid +147_1-3 Q0 MARCO_23_1809586002-4 65 87.910696 hybrid +147_1-3 Q0 MARCO_43_1018436030-5 66 87.888685 hybrid +147_1-3 Q0 MARCO_23_1798882430-23 67 87.887445 hybrid +147_1-3 Q0 MARCO_27_1491334648-3 68 87.885446 hybrid +147_1-3 Q0 MARCO_57_174821984-1 69 87.885445 hybrid +147_1-3 Q0 MARCO_15_671549562-40 70 87.879546 hybrid +147_1-3 Q0 MARCO_27_1431128200-13 71 87.876097 hybrid +147_1-3 Q0 MARCO_02_47756713-105 72 87.869895 hybrid +147_1-3 Q0 MARCO_43_1018992950-5 73 87.855940 hybrid +147_1-3 Q0 MARCO_05_1050265109-2 74 87.853446 hybrid +147_1-3 Q0 MARCO_40_175150328-2 75 87.839773 hybrid +147_1-3 Q0 MARCO_50_2629510041-9 76 87.832796 hybrid +147_1-3 Q0 MARCO_24_1950643919-10 77 87.831091 hybrid +147_1-3 Q0 MARCO_16_3038433296-7 78 87.830954 hybrid +147_1-3 Q0 MARCO_44_606539471-3 79 87.830290 hybrid +147_1-3 Q0 MARCO_05_486944589-5 80 87.829229 hybrid +147_1-3 Q0 MARCO_07_833162818-141 81 87.823296 hybrid +147_1-3 Q0 MARCO_36_623057088-3 82 87.823195 hybrid +147_1-3 Q0 KILT_42163310-17 83 87.821596 hybrid +147_1-3 Q0 MARCO_16_4158786912-16 84 87.813055 hybrid +147_1-3 Q0 MARCO_22_349085136-3 85 87.812396 hybrid +147_1-3 Q0 MARCO_27_1456237500-1 86 87.811296 hybrid +147_1-3 Q0 MARCO_50_1180183382-16 87 87.809141 hybrid +147_1-3 Q0 MARCO_35_1382157522-1 88 87.808766 hybrid +147_1-3 Q0 MARCO_36_909840830-6 89 87.799146 hybrid +147_1-3 Q0 MARCO_44_606424403-2 90 87.790842 hybrid +147_1-3 Q0 KILT_34974765-10 91 87.787596 hybrid +147_1-3 Q0 MARCO_23_1811616883-30 92 87.773945 hybrid +147_1-3 Q0 MARCO_50_1452263860-13 93 87.771002 hybrid +147_1-3 Q0 MARCO_16_150246833-19 94 87.770646 hybrid +147_1-3 Q0 MARCO_07_618451949-1 95 87.768583 hybrid +147_1-3 Q0 KILT_36484005-32 96 87.768156 hybrid +147_1-3 Q0 MARCO_01_2197780107-20 97 87.767846 hybrid +147_1-3 Q0 MARCO_50_893041555-9 98 87.766245 hybrid +147_1-3 Q0 MARCO_43_877714042-4 99 87.752845 hybrid +147_1-3 Q0 MARCO_00_1517709176-19 100 87.748995 hybrid +147_1-5 Q0 MARCO_50_2209194864-24 1 103.222506 hybrid +147_1-5 Q0 MARCO_53_497047460-4 2 103.188604 hybrid +147_1-5 Q0 MARCO_36_1293066427-1 3 102.983404 hybrid +147_1-5 Q0 MARCO_43_1434459158-5 4 102.298454 hybrid +147_1-5 Q0 MARCO_27_1437599771-1 5 102.228205 hybrid +147_1-5 Q0 MARCO_02_45741576-149 6 102.002205 hybrid +147_1-5 Q0 MARCO_15_670620880-2 7 101.835905 hybrid +147_1-5 Q0 MARCO_49_1323862759-9 8 101.801655 hybrid +147_1-5 Q0 MARCO_27_1438126425-5 9 101.411354 hybrid +147_1-5 Q0 MARCO_49_1675926014-13 10 101.348804 hybrid +147_1-5 Q0 MARCO_15_671549562-31 11 101.327055 hybrid +147_1-5 Q0 MARCO_45_425293262-16 12 101.265354 hybrid +147_1-5 Q0 MARCO_27_1437716547-2 13 101.242306 hybrid +147_1-5 Q0 MARCO_35_1383480701-5 14 101.240070 hybrid +147_1-5 Q0 MARCO_23_1796740640-4 15 101.141655 hybrid +147_1-5 Q0 MARCO_45_1456225220-5 16 101.118904 hybrid +147_1-5 Q0 MARCO_16_3553334913-21 17 100.908955 hybrid +147_1-5 Q0 MARCO_27_1437758015-3 18 100.853655 hybrid +147_1-5 Q0 MARCO_49_1706836981-3 19 100.716005 hybrid +147_1-5 Q0 MARCO_50_1364294280-5 20 100.699705 hybrid +147_1-5 Q0 MARCO_27_1437497848-9 21 100.693655 hybrid +147_1-5 Q0 MARCO_15_697674994-1 22 100.690504 hybrid +147_1-5 Q0 MARCO_30_559539125-10 23 100.662054 hybrid +147_1-5 Q0 MARCO_49_1323862759-14 24 100.655054 hybrid +147_1-5 Q0 MARCO_23_1556538954-5 25 100.621256 hybrid +147_1-5 Q0 MARCO_27_1456302865-5 26 100.597654 hybrid +147_1-5 Q0 MARCO_02_48661155-112 27 100.585106 hybrid +147_1-5 Q0 MARCO_02_46620966-163 28 100.511404 hybrid +147_1-5 Q0 MARCO_27_1437497848-8 29 100.458055 hybrid +147_1-5 Q0 MARCO_23_1796973702-138 30 100.396706 hybrid +147_1-5 Q0 MARCO_15_750793040-15 31 100.382605 hybrid +147_1-5 Q0 MARCO_39_1181847923-6 32 100.334455 hybrid +147_1-5 Q0 MARCO_15_669451360-23 33 100.315254 hybrid +147_1-5 Q0 MARCO_15_665919478-22 34 100.279055 hybrid +147_1-5 Q0 MARCO_27_1437608994-1 35 100.268406 hybrid +147_1-5 Q0 MARCO_15_728345547-2 36 100.258005 hybrid +147_1-5 Q0 MARCO_02_49153124-153 37 100.254305 hybrid +147_1-5 Q0 MARCO_02_45479251-151 38 100.247505 hybrid +147_1-5 Q0 MARCO_57_885434885-9 39 100.172606 hybrid +147_1-5 Q0 MARCO_11_238569465-2 40 100.153206 hybrid +147_1-5 Q0 MARCO_35_1404927520-5 41 100.098104 hybrid +147_1-5 Q0 MARCO_50_1126820692-6 42 100.073956 hybrid +147_1-5 Q0 MARCO_45_1459323048-1 43 100.051756 hybrid +147_1-5 Q0 MARCO_39_1715291846-4 44 99.947855 hybrid +147_1-5 Q0 MARCO_23_1807528251-23 45 99.935505 hybrid +147_1-5 Q0 MARCO_14_763110490-1 46 99.879755 hybrid +147_1-5 Q0 MARCO_39_1181847923-5 47 99.875204 hybrid +147_1-5 Q0 MARCO_23_1800521495-59 48 99.847204 hybrid +147_1-5 Q0 MARCO_35_1362732274-3 49 99.835205 hybrid +147_1-5 Q0 MARCO_30_561903930-25 50 99.761805 hybrid +147_1-5 Q0 MARCO_02_48504470-3 51 99.700855 hybrid +147_1-5 Q0 MARCO_23_1085604106-9 52 99.660925 hybrid +147_1-5 Q0 MARCO_23_1806754010-45 53 99.551805 hybrid +147_1-5 Q0 MARCO_07_616682014-21 54 99.550005 hybrid +147_1-5 Q0 MARCO_23_1813210700-131 55 99.544655 hybrid +147_1-5 Q0 MARCO_23_1779384130-51 56 99.544155 hybrid +147_1-5 Q0 MARCO_52_1286403136-1 57 99.503305 hybrid +147_1-5 Q0 MARCO_51_186050017-1 58 99.493105 hybrid +147_1-5 Q0 MARCO_42_1454325458-1 59 99.479454 hybrid +147_1-5 Q0 MARCO_23_1811970198-18 60 99.434456 hybrid +147_1-5 Q0 MARCO_36_421044673-6 61 99.427805 hybrid +147_1-5 Q0 MARCO_09_1635511369-1 62 99.419306 hybrid +147_1-5 Q0 MARCO_49_1675926014-11 63 99.374756 hybrid +147_1-5 Q0 MARCO_23_1798935570-81 64 99.363205 hybrid +147_1-5 Q0 MARCO_30_562993379-2 65 99.362005 hybrid +147_1-5 Q0 MARCO_27_1437659259-1 66 99.355354 hybrid +147_1-5 Q0 MARCO_38_37637565-5 67 99.353556 hybrid +147_1-5 Q0 MARCO_48_1639886448-9 68 99.343805 hybrid +147_1-5 Q0 MARCO_45_1456754317-1 69 99.316904 hybrid +147_1-5 Q0 MARCO_44_203400296-2 70 99.311356 hybrid +147_1-5 Q0 MARCO_18_3321833430-37 71 99.291605 hybrid +147_1-5 Q0 MARCO_30_561903930-14 72 99.284605 hybrid +147_1-5 Q0 MARCO_27_1501816437-3 73 99.282755 hybrid +147_1-5 Q0 MARCO_02_46464666-125 74 99.272905 hybrid +147_1-5 Q0 MARCO_44_32772068-7 75 99.272059 hybrid +147_1-5 Q0 MARCO_44_32790856-7 76 99.272051 hybrid +147_1-5 Q0 MARCO_23_1800328492-97 77 99.246956 hybrid +147_1-5 Q0 MARCO_23_1807846622-22 78 99.245556 hybrid +147_1-5 Q0 MARCO_23_1799145552-2 79 99.228855 hybrid +147_1-5 Q0 MARCO_02_46823634-50 80 99.217655 hybrid +147_1-5 Q0 MARCO_02_47637759-3 81 99.216755 hybrid +147_1-5 Q0 MARCO_21_1249562858-4 82 99.216206 hybrid +147_1-5 Q0 MARCO_23_1778040914-19 83 99.214405 hybrid +147_1-5 Q0 MARCO_44_203353122-4 84 99.214155 hybrid +147_1-5 Q0 MARCO_17_4818251921-3 85 99.213755 hybrid +147_1-5 Q0 MARCO_23_1796455788-27 86 99.213055 hybrid +147_1-5 Q0 MARCO_27_1438126425-9 87 99.181955 hybrid +147_1-5 Q0 MARCO_30_835825400-1 88 99.164397 hybrid +147_1-5 Q0 MARCO_10_79499431-13 89 99.139291 hybrid +147_1-5 Q0 MARCO_35_1364092499-13 90 99.127356 hybrid +147_1-5 Q0 MARCO_23_1799128069-4 91 99.114704 hybrid +147_1-5 Q0 MARCO_16_971573932-49 92 99.104155 hybrid +147_1-5 Q0 MARCO_53_497047460-2 93 99.101355 hybrid +147_1-5 Q0 MARCO_27_1431003855-7 94 99.067698 hybrid +147_1-5 Q0 MARCO_45_425293262-13 95 99.010454 hybrid +147_1-5 Q0 MARCO_29_620821575-3 96 99.008199 hybrid +147_1-5 Q0 MARCO_48_382875781-2 97 98.991705 hybrid +147_1-5 Q0 MARCO_23_1780613870-4 98 98.987255 hybrid +147_1-5 Q0 MARCO_27_1453108854-1 99 98.986105 hybrid +147_1-5 Q0 MARCO_57_443556489-15 100 98.979855 hybrid +147_1-7 Q0 MARCO_31_292579249-1 1 88.895588 hybrid +147_1-7 Q0 MARCO_44_609297930-1 2 88.290508 hybrid +147_1-7 Q0 MARCO_35_1382480184-1 3 88.168281 hybrid +147_1-7 Q0 MARCO_44_610323468-1 4 88.130862 hybrid +147_1-7 Q0 MARCO_50_2325178761-36 5 88.031993 hybrid +147_1-7 Q0 MARCO_35_1383505365-1 6 87.951527 hybrid +147_1-7 Q0 MARCO_57_876525725-35 7 87.947293 hybrid +147_1-7 Q0 MARCO_27_1431003855-1 8 87.935419 hybrid +147_1-7 Q0 MARCO_41_115465033-1 9 87.921015 hybrid +147_1-7 Q0 KILT_55755841-17 10 87.909542 hybrid +147_1-7 Q0 MARCO_50_2324755045-2 11 87.902343 hybrid +147_1-7 Q0 MARCO_50_943289979-24 12 87.866703 hybrid +147_1-7 Q0 MARCO_14_1615499650-3 13 87.853390 hybrid +147_1-7 Q0 MARCO_00_1160843662-1 14 87.838669 hybrid +147_1-7 Q0 MARCO_27_1519680337-1 15 87.823793 hybrid +147_1-7 Q0 MARCO_41_81092612-3 16 87.807343 hybrid +147_1-7 Q0 MARCO_51_451864789-15 17 87.771358 hybrid +147_1-7 Q0 MARCO_50_1452516695-17 18 87.766649 hybrid +147_1-7 Q0 MARCO_35_1381851614-6 19 87.741993 hybrid +147_1-7 Q0 MARCO_15_108899385-2 20 87.661366 hybrid +147_1-7 Q0 MARCO_27_1437798007-19 21 87.636693 hybrid +147_1-7 Q0 KILT_55755841-15 22 87.631758 hybrid +147_1-7 Q0 MARCO_49_1675867411-1 23 87.629643 hybrid +147_1-7 Q0 MARCO_40_175150328-1 24 87.626987 hybrid +147_1-7 Q0 MARCO_50_1176457493-32 25 87.623028 hybrid +147_1-7 Q0 MARCO_55_199988456-1 26 87.596993 hybrid +147_1-7 Q0 MARCO_35_1383547965-1 27 87.585783 hybrid +147_1-7 Q0 MARCO_35_1382480184-2 28 87.576075 hybrid +147_1-7 Q0 MARCO_50_1128860273-19 29 87.571193 hybrid +147_1-7 Q0 MARCO_36_901434920-2 30 87.566471 hybrid +147_1-7 Q0 MARCO_27_1508444327-4 31 87.565801 hybrid +147_1-7 Q0 MARCO_27_1529313116-3 32 87.562743 hybrid +147_1-7 Q0 KILT_41677925-56 33 87.558720 hybrid +147_1-7 Q0 MARCO_27_1469100962-17 34 87.529393 hybrid +147_1-7 Q0 MARCO_50_1280687382-19 35 87.525893 hybrid +147_1-7 Q0 MARCO_25_323598048-1 36 87.525593 hybrid +147_1-7 Q0 KILT_45359871-18 37 87.498631 hybrid +147_1-7 Q0 MARCO_35_1383497290-1 38 87.481487 hybrid +147_1-7 Q0 MARCO_35_1381688892-1 39 87.475262 hybrid +147_1-7 Q0 MARCO_50_1319187576-11 40 87.473343 hybrid +147_1-7 Q0 MARCO_15_1768252777-4 41 87.465643 hybrid +147_1-7 Q0 MARCO_44_610323468-9 42 87.453945 hybrid +147_1-7 Q0 MARCO_27_1202875577-4 43 87.447808 hybrid +147_1-7 Q0 MARCO_50_1280687382-5 44 87.439243 hybrid +147_1-7 Q0 MARCO_23_1828573047-3 45 87.439114 hybrid +147_1-7 Q0 MARCO_50_2359418999-45 46 87.434643 hybrid +147_1-7 Q0 MARCO_27_1503903517-7 47 87.434143 hybrid +147_1-7 Q0 MARCO_07_1580559307-12 48 87.433933 hybrid +147_1-7 Q0 MARCO_36_892794213-2 49 87.416120 hybrid +147_1-7 Q0 MARCO_30_1471434701-32 50 87.412293 hybrid +147_1-7 Q0 MARCO_50_1084588181-15 51 87.411693 hybrid +147_1-7 Q0 MARCO_50_2324755045-3 52 87.411693 hybrid +147_1-7 Q0 MARCO_27_1529325433-12 53 87.401893 hybrid +147_1-7 Q0 MARCO_35_1383505365-2 54 87.392834 hybrid +147_1-7 Q0 MARCO_27_1502478943-6 55 87.381093 hybrid +147_1-7 Q0 MARCO_40_175150328-3 56 87.380558 hybrid +147_1-7 Q0 MARCO_36_105709443-12 57 87.380543 hybrid +147_1-7 Q0 KILT_36484254-21 58 87.365986 hybrid +147_1-7 Q0 MARCO_35_310373996-4 59 87.360810 hybrid +147_1-7 Q0 MARCO_15_107455358-33 60 87.347080 hybrid +147_1-7 Q0 MARCO_19_1809702312-1 61 87.344593 hybrid +147_1-7 Q0 MARCO_36_105709443-6 62 87.333593 hybrid +147_1-7 Q0 MARCO_44_606424403-3 63 87.321049 hybrid +147_1-7 Q0 MARCO_27_1553652159-1 64 87.312843 hybrid +147_1-7 Q0 MARCO_15_1768252777-3 65 87.303893 hybrid +147_1-7 Q0 MARCO_51_323987477-1 66 87.296993 hybrid +147_1-7 Q0 MARCO_16_3025547777-53 67 87.294987 hybrid +147_1-7 Q0 MARCO_16_3025547777-55 68 87.294987 hybrid +147_1-7 Q0 MARCO_27_1471865385-1 69 87.294093 hybrid +147_1-7 Q0 MARCO_44_610323468-8 70 87.289639 hybrid +147_1-7 Q0 MARCO_35_1381526600-6 71 87.286808 hybrid +147_1-7 Q0 MARCO_44_609464324-4 72 87.286452 hybrid +147_1-7 Q0 MARCO_27_1507935785-7 73 87.283576 hybrid +147_1-7 Q0 MARCO_44_607608337-1 74 87.280224 hybrid +147_1-7 Q0 MARCO_35_1382327008-6 75 87.277262 hybrid +147_1-7 Q0 MARCO_20_742151787-6 76 87.267693 hybrid +147_1-7 Q0 MARCO_35_1383488898-1 77 87.267291 hybrid +147_1-7 Q0 MARCO_15_1768252777-5 78 87.256743 hybrid +147_1-7 Q0 MARCO_36_900179677-5 79 87.248547 hybrid +147_1-7 Q0 MARCO_30_835825400-2 80 87.213589 hybrid +147_1-7 Q0 MARCO_35_1383497290-5 81 87.202374 hybrid +147_1-7 Q0 MARCO_15_107455358-15 82 87.190609 hybrid +147_1-7 Q0 MARCO_43_4226835-1 83 87.189343 hybrid +147_1-7 Q0 MARCO_19_562425557-58 84 87.183796 hybrid +147_1-7 Q0 MARCO_35_1383547965-12 85 87.183315 hybrid +147_1-7 Q0 MARCO_43_846287811-1 86 87.164993 hybrid +147_1-7 Q0 MARCO_41_100366926-4 87 87.156993 hybrid +147_1-7 Q0 MARCO_35_1374032233-7 88 87.148343 hybrid +147_1-7 Q0 MARCO_11_985899771-20 89 87.147743 hybrid +147_1-7 Q0 MARCO_44_610112439-1 90 87.119434 hybrid +147_1-7 Q0 MARCO_35_310373996-5 91 87.113392 hybrid +147_1-7 Q0 MARCO_50_2240949679-6 92 87.108593 hybrid +147_1-7 Q0 MARCO_50_1452263860-20 93 87.101694 hybrid +147_1-7 Q0 MARCO_50_2255250854-11 94 87.095693 hybrid +147_1-7 Q0 MARCO_35_1381953404-7 95 87.094327 hybrid +147_1-7 Q0 MARCO_39_418127773-2 96 87.086298 hybrid +147_1-7 Q0 MARCO_21_950095832-3 97 87.083019 hybrid +147_1-7 Q0 KILT_36860986-46 98 87.079929 hybrid +147_1-7 Q0 MARCO_42_1104163557-2 99 87.079014 hybrid +147_1-7 Q0 MARCO_49_1677000987-1 100 87.068893 hybrid +147_1-9 Q0 MARCO_18_3756735521-22 1 93.131633 hybrid +147_1-9 Q0 MARCO_53_496976677-4 2 92.815405 hybrid +147_1-9 Q0 MARCO_36_932776067-11 3 92.702155 hybrid +147_1-9 Q0 MARCO_27_1438141246-1 4 92.333405 hybrid +147_1-9 Q0 MARCO_40_175150328-3 5 92.270162 hybrid +147_1-9 Q0 MARCO_30_835825400-2 6 92.157253 hybrid +147_1-9 Q0 MARCO_27_1503679797-1 7 92.106305 hybrid +147_1-9 Q0 MARCO_44_608064125-3 8 92.089801 hybrid +147_1-9 Q0 MARCO_27_1438156053-4 9 92.005355 hybrid +147_1-9 Q0 MARCO_50_1452516695-31 10 92.002913 hybrid +147_1-9 Q0 MARCO_50_2240949679-3 11 91.922455 hybrid +147_1-9 Q0 MARCO_27_1543213346-1 12 91.916605 hybrid +147_1-9 Q0 MARCO_18_3756735521-21 13 91.889636 hybrid +147_1-9 Q0 MARCO_35_1383610996-2 14 91.859205 hybrid +147_1-9 Q0 MARCO_36_888487863-6 15 91.857977 hybrid +147_1-9 Q0 MARCO_50_2306031031-65 16 91.832405 hybrid +147_1-9 Q0 MARCO_44_35079726-12 17 91.802891 hybrid +147_1-9 Q0 MARCO_50_1101752988-15 18 91.779505 hybrid +147_1-9 Q0 MARCO_17_4817669284-44 19 91.774305 hybrid +147_1-9 Q0 MARCO_02_48799579-45 20 91.757805 hybrid +147_1-9 Q0 MARCO_25_1749129501-5 21 91.754255 hybrid +147_1-9 Q0 MARCO_18_3756735521-34 22 91.724344 hybrid +147_1-9 Q0 MARCO_50_1888991651-6 23 91.721955 hybrid +147_1-9 Q0 MARCO_27_1543213346-2 24 91.698605 hybrid +147_1-9 Q0 MARCO_49_1323816890-5 25 91.669945 hybrid +147_1-9 Q0 MARCO_50_2240949679-34 26 91.640605 hybrid +147_1-9 Q0 MARCO_43_1019176089-17 27 91.638391 hybrid +147_1-9 Q0 MARCO_19_1809724453-4 28 91.634405 hybrid +147_1-9 Q0 KILT_36484254-6 29 91.576971 hybrid +147_1-9 Q0 MARCO_31_292579249-3 30 91.529958 hybrid +147_1-9 Q0 MARCO_50_2465931623-2 31 91.519755 hybrid +147_1-9 Q0 KILT_44240443-7 32 91.496155 hybrid +147_1-9 Q0 MARCO_19_2041249079-44 33 91.493805 hybrid +147_1-9 Q0 MARCO_43_1449814384-53 34 91.492455 hybrid +147_1-9 Q0 KILT_36484254-25 35 91.490095 hybrid +147_1-9 Q0 MARCO_40_175150328-5 36 91.478971 hybrid +147_1-9 Q0 MARCO_50_1452263860-25 37 91.477183 hybrid +147_1-9 Q0 MARCO_44_33070735-3 38 91.470478 hybrid +147_1-9 Q0 MARCO_23_1806853430-12 39 91.462955 hybrid +147_1-9 Q0 MARCO_50_2306031031-20 40 91.454005 hybrid +147_1-9 Q0 MARCO_50_2240949679-83 41 91.450055 hybrid +147_1-9 Q0 MARCO_14_791867527-7 42 91.448834 hybrid +147_1-9 Q0 MARCO_50_1126830836-8 43 91.435905 hybrid +147_1-9 Q0 MARCO_35_1383575714-4 44 91.426141 hybrid +147_1-9 Q0 MARCO_15_107455358-32 45 91.418943 hybrid +147_1-9 Q0 MARCO_18_3903302440-39 46 91.408205 hybrid +147_1-9 Q0 MARCO_47_1000462428-8 47 91.406555 hybrid +147_1-9 Q0 MARCO_14_791867527-8 48 91.405469 hybrid +147_1-9 Q0 MARCO_07_1580559307-7 49 91.389043 hybrid +147_1-9 Q0 MARCO_50_1452263860-10 50 91.387570 hybrid +147_1-9 Q0 MARCO_27_1456317022-8 51 91.377405 hybrid +147_1-9 Q0 MARCO_36_932776067-3 52 91.376305 hybrid +147_1-9 Q0 MARCO_28_83915283-2 53 91.366855 hybrid +147_1-9 Q0 MARCO_42_1104163557-2 54 91.363256 hybrid +147_1-9 Q0 MARCO_53_898223174-11 55 91.362505 hybrid +147_1-9 Q0 MARCO_23_1812338070-13 56 91.351205 hybrid +147_1-9 Q0 MARCO_53_733432913-8 57 91.333982 hybrid +147_1-9 Q0 MARCO_02_45186110-1 58 91.318805 hybrid +147_1-9 Q0 MARCO_36_896744753-16 59 91.297155 hybrid +147_1-9 Q0 MARCO_50_2297261491-51 60 91.290155 hybrid +147_1-9 Q0 MARCO_00_1524703379-29 61 91.288105 hybrid +147_1-9 Q0 MARCO_10_545116164-9 62 91.284353 hybrid +147_1-9 Q0 MARCO_50_1126830836-15 63 91.281455 hybrid +147_1-9 Q0 MARCO_56_1313964447-23 64 91.276273 hybrid +147_1-9 Q0 MARCO_35_289764123-5 65 91.274605 hybrid +147_1-9 Q0 MARCO_04_208927901-2 66 91.265755 hybrid +147_1-9 Q0 MARCO_10_79589072-4 67 91.252256 hybrid +147_1-9 Q0 MARCO_20_67348820-8 68 91.235468 hybrid +147_1-9 Q0 MARCO_51_186091150-1 69 91.228005 hybrid +147_1-9 Q0 MARCO_42_1103878703-3 70 91.218605 hybrid +147_1-9 Q0 MARCO_43_1018992950-9 71 91.217695 hybrid +147_1-9 Q0 MARCO_35_1383620100-3 72 91.214133 hybrid +147_1-9 Q0 MARCO_50_1515133112-2 73 91.209760 hybrid +147_1-9 Q0 MARCO_49_535133112-100 74 91.203655 hybrid +147_1-9 Q0 MARCO_50_1428181499-10 75 91.174909 hybrid +147_1-9 Q0 MARCO_27_1490209751-3 76 91.165905 hybrid +147_1-9 Q0 MARCO_44_32491649-13 77 91.157880 hybrid +147_1-9 Q0 MARCO_27_1431003855-6 78 91.147695 hybrid +147_1-9 Q0 MARCO_44_33070735-7 79 91.146856 hybrid +147_1-9 Q0 MARCO_18_1803225057-20 80 91.142484 hybrid +147_1-9 Q0 MARCO_26_25686146-2 81 91.134105 hybrid +147_1-9 Q0 MARCO_50_1452516695-25 82 91.132389 hybrid +147_1-9 Q0 MARCO_30_1183947188-4 83 91.131005 hybrid +147_1-9 Q0 MARCO_23_1781275447-3 84 91.129005 hybrid +147_1-9 Q0 MARCO_19_2362414531-2 85 91.123205 hybrid +147_1-9 Q0 MARCO_34_836152388-32 86 91.115805 hybrid +147_1-9 Q0 MARCO_57_1375309707-12 87 91.111255 hybrid +147_1-9 Q0 KILT_36484254-19 88 91.109983 hybrid +147_1-9 Q0 MARCO_27_1437798007-8 89 91.108405 hybrid +147_1-9 Q0 MARCO_44_33070735-16 90 91.108089 hybrid +147_1-9 Q0 MARCO_02_45050679-90 91 91.094705 hybrid +147_1-9 Q0 MARCO_01_692444269-7 92 91.083570 hybrid +147_1-9 Q0 MARCO_16_3025547777-8 93 91.080453 hybrid +147_1-9 Q0 MARCO_36_419583277-6 94 91.080355 hybrid +147_1-9 Q0 MARCO_39_725954118-1 95 91.064855 hybrid +147_1-9 Q0 MARCO_16_3025547777-9 96 91.051939 hybrid +147_1-9 Q0 MARCO_25_33800156-55 97 91.044759 hybrid +147_1-9 Q0 MARCO_27_1502096454-19 98 91.037155 hybrid +147_1-9 Q0 MARCO_18_1803225057-26 99 91.032110 hybrid +147_1-9 Q0 MARCO_35_1361234858-10 100 91.031755 hybrid +147_2-1 Q0 MARCO_51_320444747-1 1 90.047961 hybrid +147_2-1 Q0 MARCO_30_562455563-1 2 89.998011 hybrid +147_2-1 Q0 MARCO_30_562930811-1 3 89.894461 hybrid +147_2-1 Q0 MARCO_30_562299449-1 4 89.891061 hybrid +147_2-1 Q0 MARCO_23_1830567156-1 5 89.637011 hybrid +147_2-1 Q0 MARCO_32_914387130-1 6 89.471911 hybrid +147_2-1 Q0 MARCO_23_1806883365-3 7 89.464861 hybrid +147_2-1 Q0 MARCO_09_576029491-2 8 89.358061 hybrid +147_2-1 Q0 MARCO_23_1780393135-12 9 89.353561 hybrid +147_2-1 Q0 MARCO_52_1094877669-1 10 89.333411 hybrid +147_2-1 Q0 MARCO_17_4816477810-123 11 89.303011 hybrid +147_2-1 Q0 MARCO_00_1161498748-4 12 89.298057 hybrid +147_2-1 Q0 MARCO_44_33070735-2 13 89.290987 hybrid +147_2-1 Q0 MARCO_19_475158483-3 14 89.243080 hybrid +147_2-1 Q0 MARCO_30_559363186-1 15 89.237411 hybrid +147_2-1 Q0 MARCO_14_785661863-1 16 89.234870 hybrid +147_2-1 Q0 MARCO_00_1486305240-1 17 89.213711 hybrid +147_2-1 Q0 MARCO_19_475131147-20 18 89.211519 hybrid +147_2-1 Q0 MARCO_19_475131147-22 19 89.211518 hybrid +147_2-1 Q0 MARCO_00_1517709176-1 20 89.176311 hybrid +147_2-1 Q0 MARCO_30_561903930-4 21 89.171961 hybrid +147_2-1 Q0 MARCO_50_1285188383-50 22 89.171161 hybrid +147_2-1 Q0 MARCO_54_1565053788-4 23 89.165725 hybrid +147_2-1 Q0 MARCO_46_450477269-56 24 89.159111 hybrid +147_2-1 Q0 MARCO_23_1830544655-1 25 89.151111 hybrid +147_2-1 Q0 MARCO_23_1830557751-1 26 89.142911 hybrid +147_2-1 Q0 MARCO_00_1161868671-4 27 89.137649 hybrid +147_2-1 Q0 MARCO_31_164708709-1 28 89.134161 hybrid +147_2-1 Q0 MARCO_54_1754005427-1 29 89.134061 hybrid +147_2-1 Q0 MARCO_23_1806853430-11 30 89.123161 hybrid +147_2-1 Q0 MARCO_46_449775679-1 31 89.120861 hybrid +147_2-1 Q0 MARCO_24_1291111045-1 32 89.120561 hybrid +147_2-1 Q0 MARCO_44_252862919-2 33 89.111861 hybrid +147_2-1 Q0 MARCO_33_62785826-1 34 89.102761 hybrid +147_2-1 Q0 MARCO_14_764623428-1 35 89.080561 hybrid +147_2-1 Q0 MARCO_54_1564838481-2 36 89.080131 hybrid +147_2-1 Q0 MARCO_09_1102966525-2 37 89.074461 hybrid +147_2-1 Q0 MARCO_28_440940849-43 38 89.074161 hybrid +147_2-1 Q0 MARCO_16_3241163921-23 39 89.072861 hybrid +147_2-1 Q0 MARCO_17_4816477810-1 40 89.051561 hybrid +147_2-1 Q0 MARCO_00_1161555318-1 41 89.050169 hybrid +147_2-1 Q0 MARCO_24_433914770-1 42 89.048061 hybrid +147_2-1 Q0 MARCO_28_428427404-13 43 89.044853 hybrid +147_2-1 Q0 MARCO_31_143768625-1 44 89.043011 hybrid +147_2-1 Q0 MARCO_17_3800206230-3 45 89.041761 hybrid +147_2-1 Q0 MARCO_26_456985349-1 46 89.034711 hybrid +147_2-1 Q0 MARCO_35_310373996-2 47 89.034630 hybrid +147_2-1 Q0 MARCO_08_1414371258-8 48 89.026661 hybrid +147_2-1 Q0 MARCO_31_292579249-1 49 89.026461 hybrid +147_2-1 Q0 MARCO_08_1414165897-5 50 89.012511 hybrid +147_2-1 Q0 MARCO_00_1161868671-3 51 89.012443 hybrid +147_2-1 Q0 MARCO_46_180160081-11 52 89.007861 hybrid +147_2-1 Q0 MARCO_27_1437906360-1 53 89.007711 hybrid +147_2-1 Q0 MARCO_27_1543423099-1 54 88.998461 hybrid +147_2-1 Q0 KILT_57996832-2 55 88.985440 hybrid +147_2-1 Q0 MARCO_15_107455358-1 56 88.981124 hybrid +147_2-1 Q0 MARCO_47_548936940-1 57 88.971361 hybrid +147_2-1 Q0 MARCO_23_1805608158-1 58 88.966111 hybrid +147_2-1 Q0 MARCO_17_4816477810-237 59 88.958161 hybrid +147_2-1 Q0 MARCO_17_4816477810-239 60 88.958160 hybrid +147_2-1 Q0 MARCO_31_139707867-1 61 88.954761 hybrid +147_2-1 Q0 MARCO_07_258203158-7 62 88.953173 hybrid +147_2-1 Q0 MARCO_31_171424509-1 63 88.951211 hybrid +147_2-1 Q0 MARCO_35_1383547965-1 64 88.947529 hybrid +147_2-1 Q0 MARCO_19_475131147-1 65 88.947191 hybrid +147_2-1 Q0 MARCO_06_694770796-1 66 88.944404 hybrid +147_2-1 Q0 MARCO_55_351697089-4 67 88.943311 hybrid +147_2-1 Q0 MARCO_50_2157873319-12 68 88.942214 hybrid +147_2-1 Q0 MARCO_31_121704207-1 69 88.936811 hybrid +147_2-1 Q0 MARCO_25_11296890-2 70 88.935661 hybrid +147_2-1 Q0 MARCO_31_131612596-1 71 88.933111 hybrid +147_2-1 Q0 MARCO_31_138568627-1 72 88.933110 hybrid +147_2-1 Q0 MARCO_31_188837339-1 73 88.933110 hybrid +147_2-1 Q0 MARCO_19_2041249079-28 74 88.929565 hybrid +147_2-1 Q0 MARCO_27_1427608066-1 75 88.921111 hybrid +147_2-1 Q0 MARCO_19_980814039-50 76 88.917724 hybrid +147_2-1 Q0 MARCO_18_1451097188-1 77 88.910261 hybrid +147_2-1 Q0 MARCO_16_4110415223-11 78 88.909034 hybrid +147_2-1 Q0 MARCO_27_1457199454-1 79 88.906461 hybrid +147_2-1 Q0 MARCO_17_1723309964-120 80 88.906433 hybrid +147_2-1 Q0 MARCO_50_1216520111-15 81 88.904911 hybrid +147_2-1 Q0 MARCO_07_779160978-1 82 88.903711 hybrid +147_2-1 Q0 MARCO_17_2668085167-5 83 88.902111 hybrid +147_2-1 Q0 MARCO_31_292399071-1 84 88.900064 hybrid +147_2-1 Q0 MARCO_54_1564838481-6 85 88.899673 hybrid +147_2-1 Q0 KILT_16368269-5 86 88.899661 hybrid +147_2-1 Q0 MARCO_33_418050929-17 87 88.889911 hybrid +147_2-1 Q0 MARCO_23_1809450626-1 88 88.882211 hybrid +147_2-1 Q0 KILT_52281037-9 89 88.881711 hybrid +147_2-1 Q0 MARCO_23_98965919-2 90 88.875911 hybrid +147_2-1 Q0 MARCO_54_1851578348-1 91 88.869861 hybrid +147_2-1 Q0 MARCO_36_900179677-3 92 88.866127 hybrid +147_2-1 Q0 MARCO_17_4816848696-28 93 88.858461 hybrid +147_2-1 Q0 MARCO_26_778310060-9 94 88.857261 hybrid +147_2-1 Q0 MARCO_23_273085780-3 95 88.855161 hybrid +147_2-1 Q0 MARCO_21_814730143-4 96 88.854711 hybrid +147_2-1 Q0 MARCO_38_242825135-1 97 88.853161 hybrid +147_2-1 Q0 MARCO_16_4172793984-30 98 88.851711 hybrid +147_2-1 Q0 MARCO_13_563068921-1 99 88.851111 hybrid +147_2-1 Q0 MARCO_49_1675867411-4 100 88.838711 hybrid +147_2-3 Q0 KILT_53971068-2 1 90.280900 hybrid +147_2-3 Q0 KILT_41219344-2 2 90.044068 hybrid +147_2-3 Q0 KILT_39293265-6 3 89.814769 hybrid +147_2-3 Q0 MARCO_17_3094322423-19 4 89.814541 hybrid +147_2-3 Q0 MARCO_17_4817097038-7 5 89.694718 hybrid +147_2-3 Q0 KILT_16173936-6 6 89.641119 hybrid +147_2-3 Q0 KILT_18309880-2 7 89.503919 hybrid +147_2-3 Q0 MARCO_09_587075624-5 8 89.438969 hybrid +147_2-3 Q0 MARCO_17_4817185859-25 9 89.299819 hybrid +147_2-3 Q0 KILT_2122904-1 10 89.270516 hybrid +147_2-3 Q0 MARCO_17_4816382521-3 11 89.266318 hybrid +147_2-3 Q0 MARCO_14_769895365-1 12 89.256719 hybrid +147_2-3 Q0 MARCO_17_4409145952-1 13 89.230769 hybrid +147_2-3 Q0 KILT_10925881-2 14 89.152669 hybrid +147_2-3 Q0 KILT_5727147-2 15 89.150719 hybrid +147_2-3 Q0 MARCO_17_1866865445-4 16 89.116419 hybrid +147_2-3 Q0 MARCO_35_1381811664-1 17 89.102242 hybrid +147_2-3 Q0 MARCO_19_1286364023-8 18 89.094119 hybrid +147_2-3 Q0 KILT_1344840-3 19 89.060519 hybrid +147_2-3 Q0 MARCO_17_2857684702-6 20 89.053319 hybrid +147_2-3 Q0 MARCO_27_1497675795-2 21 89.030219 hybrid +147_2-3 Q0 KILT_4710589-3 22 89.022119 hybrid +147_2-3 Q0 KILT_20966-23 23 89.007069 hybrid +147_2-3 Q0 KILT_46476174-5 24 88.973019 hybrid +147_2-3 Q0 KILT_10846785-1 25 88.935469 hybrid +147_2-3 Q0 KILT_18309880-1 26 88.933519 hybrid +147_2-3 Q0 KILT_6944255-5 27 88.911919 hybrid +147_2-3 Q0 MARCO_18_3251149523-3 28 88.845716 hybrid +147_2-3 Q0 KILT_1321703-1 29 88.805219 hybrid +147_2-3 Q0 KILT_3027082-1 30 88.775219 hybrid +147_2-3 Q0 MARCO_17_2668085167-4 31 88.758719 hybrid +147_2-3 Q0 MARCO_16_4110877543-34 32 88.746819 hybrid +147_2-3 Q0 MARCO_18_4359692882-12 33 88.718423 hybrid +147_2-3 Q0 KILT_1321703-5 34 88.695419 hybrid +147_2-3 Q0 MARCO_19_160112057-3 35 88.691107 hybrid +147_2-3 Q0 KILT_17659721-1 36 88.681619 hybrid +147_2-3 Q0 KILT_6944255-6 37 88.667119 hybrid +147_2-3 Q0 MARCO_09_587075624-1 38 88.581669 hybrid +147_2-3 Q0 KILT_49062241-1 39 88.576569 hybrid +147_2-3 Q0 KILT_49050916-41 40 88.566819 hybrid +147_2-3 Q0 KILT_20786773-3 41 88.522669 hybrid +147_2-3 Q0 KILT_4836215-1 42 88.521119 hybrid +147_2-3 Q0 KILT_2291862-11 43 88.509569 hybrid +147_2-3 Q0 KILT_3745622-7 44 88.501819 hybrid +147_2-3 Q0 KILT_3745622-1 45 88.501319 hybrid +147_2-3 Q0 MARCO_44_21312572-4 46 88.482819 hybrid +147_2-3 Q0 MARCO_18_2480592752-5 47 88.480219 hybrid +147_2-3 Q0 MARCO_00_1365163276-11 48 88.469619 hybrid +147_2-3 Q0 MARCO_18_3756735521-41 49 88.463390 hybrid +147_2-3 Q0 KILT_15003536-3 50 88.444119 hybrid +147_2-3 Q0 MARCO_43_353595745-9 51 88.441319 hybrid +147_2-3 Q0 MARCO_46_450979501-1 52 88.441219 hybrid +147_2-3 Q0 KILT_36658495-2 53 88.430277 hybrid +147_2-3 Q0 MARCO_17_4817578814-3 54 88.413469 hybrid +147_2-3 Q0 MARCO_10_551602548-4 55 88.407160 hybrid +147_2-3 Q0 KILT_30151699-3 56 88.393819 hybrid +147_2-3 Q0 MARCO_17_927669631-4 57 88.393818 hybrid +147_2-3 Q0 MARCO_00_1524703379-45 58 88.383769 hybrid +147_2-3 Q0 KILT_43029221-11 59 88.378219 hybrid +147_2-3 Q0 KILT_35812202-5 60 88.363619 hybrid +147_2-3 Q0 KILT_45502864-2 61 88.361010 hybrid +147_2-3 Q0 MARCO_27_236878275-9 62 88.360069 hybrid +147_2-3 Q0 KILT_82217-1 63 88.336219 hybrid +147_2-3 Q0 MARCO_17_3674752928-7 64 88.334919 hybrid +147_2-3 Q0 MARCO_11_40146335-13 65 88.321869 hybrid +147_2-3 Q0 KILT_1181663-12 66 88.276759 hybrid +147_2-3 Q0 KILT_6751525-2 67 88.275202 hybrid +147_2-3 Q0 MARCO_17_4817340245-15 68 88.259369 hybrid +147_2-3 Q0 KILT_2422791-2 69 88.248269 hybrid +147_2-3 Q0 KILT_22114132-40 70 88.247119 hybrid +147_2-3 Q0 KILT_46476174-1 71 88.244969 hybrid +147_2-3 Q0 MARCO_17_2857684702-2 72 88.192219 hybrid +147_2-3 Q0 MARCO_09_423113473-27 73 88.180169 hybrid +147_2-3 Q0 MARCO_06_1964730573-2 74 88.168369 hybrid +147_2-3 Q0 MARCO_10_552855545-13 75 88.166596 hybrid +147_2-3 Q0 KILT_9727571-1 76 88.156519 hybrid +147_2-3 Q0 KILT_3745622-9 77 88.149419 hybrid +147_2-3 Q0 KILT_43815-2 78 88.148269 hybrid +147_2-3 Q0 MARCO_27_236878275-6 79 88.148119 hybrid +147_2-3 Q0 MARCO_18_4359692882-11 80 88.146026 hybrid +147_2-3 Q0 MARCO_13_622964593-1 81 88.144669 hybrid +147_2-3 Q0 KILT_335195-21 82 88.137069 hybrid +147_2-3 Q0 MARCO_17_3094322423-37 83 88.136419 hybrid +147_2-3 Q0 KILT_1167665-1 84 88.135219 hybrid +147_2-3 Q0 MARCO_50_1285188383-16 85 88.132919 hybrid +147_2-3 Q0 MARCO_29_660988135-7 86 88.129687 hybrid +147_2-3 Q0 KILT_9105-27 87 88.084269 hybrid +147_2-3 Q0 KILT_5027882-11 88 88.081669 hybrid +147_2-3 Q0 MARCO_41_652583919-2 89 88.075219 hybrid +147_2-3 Q0 MARCO_10_552229547-39 90 88.072550 hybrid +147_2-3 Q0 KILT_5578171-1 91 88.070819 hybrid +147_2-3 Q0 MARCO_00_973333555-1 92 88.067369 hybrid +147_2-3 Q0 MARCO_20_658999981-9 93 88.067004 hybrid +147_2-3 Q0 MARCO_46_450672211-1 94 88.066269 hybrid +147_2-3 Q0 MARCO_01_282457723-39 95 88.055819 hybrid +147_2-3 Q0 MARCO_07_296780689-1 96 88.048769 hybrid +147_2-3 Q0 MARCO_18_3823079190-11 97 88.038969 hybrid +147_2-3 Q0 MARCO_09_1737004245-1 98 88.038019 hybrid +147_2-3 Q0 KILT_19106003-5 99 88.032719 hybrid +147_2-3 Q0 MARCO_10_551602548-12 100 88.031329 hybrid +147_2-5 Q0 MARCO_04_1015710436-2 1 89.403066 hybrid +147_2-5 Q0 MARCO_16_4110415223-7 2 89.339776 hybrid +147_2-5 Q0 MARCO_30_1719750339-1 3 89.309316 hybrid +147_2-5 Q0 MARCO_23_1779943980-7 4 89.267166 hybrid +147_2-5 Q0 MARCO_18_4414483041-1 5 89.169216 hybrid +147_2-5 Q0 MARCO_27_1502096454-1 6 89.137216 hybrid +147_2-5 Q0 MARCO_23_1813079667-16 7 89.083516 hybrid +147_2-5 Q0 MARCO_09_576029491-2 8 89.036716 hybrid +147_2-5 Q0 MARCO_44_33070735-2 9 89.024678 hybrid +147_2-5 Q0 MARCO_36_418245519-21 10 89.022416 hybrid +147_2-5 Q0 MARCO_19_542516438-1 11 89.020316 hybrid +147_2-5 Q0 MARCO_44_200355596-5 12 89.001866 hybrid +147_2-5 Q0 MARCO_03_529301538-7 13 88.981066 hybrid +147_2-5 Q0 MARCO_09_1102966525-1 14 88.974816 hybrid +147_2-5 Q0 MARCO_07_258203158-7 15 88.967547 hybrid +147_2-5 Q0 MARCO_35_1371884408-1 16 88.940266 hybrid +147_2-5 Q0 MARCO_09_1789966428-2 17 88.933566 hybrid +147_2-5 Q0 MARCO_57_941722943-8 18 88.915766 hybrid +147_2-5 Q0 MARCO_46_449818260-1 19 88.883566 hybrid +147_2-5 Q0 MARCO_46_450477269-56 20 88.860016 hybrid +147_2-5 Q0 MARCO_23_1806853430-11 21 88.824066 hybrid +147_2-5 Q0 MARCO_46_449832563-1 22 88.821316 hybrid +147_2-5 Q0 MARCO_57_153268953-1 23 88.817366 hybrid +147_2-5 Q0 MARCO_19_542516438-3 24 88.782815 hybrid +147_2-5 Q0 MARCO_17_4816477810-1 25 88.752466 hybrid +147_2-5 Q0 MARCO_05_1033549259-3 26 88.747715 hybrid +147_2-5 Q0 MARCO_16_971573932-1 27 88.722566 hybrid +147_2-5 Q0 MARCO_45_1457010153-1 28 88.706066 hybrid +147_2-5 Q0 MARCO_52_1094877669-1 29 88.665716 hybrid +147_2-5 Q0 MARCO_35_1408633592-1 30 88.644516 hybrid +147_2-5 Q0 MARCO_46_449775679-1 31 88.622266 hybrid +147_2-5 Q0 MARCO_27_1475566154-7 32 88.600816 hybrid +147_2-5 Q0 MARCO_35_1479408617-3 33 88.594566 hybrid +147_2-5 Q0 MARCO_23_1807630496-4 34 88.571916 hybrid +147_2-5 Q0 KILT_597264-18 35 88.566316 hybrid +147_2-5 Q0 MARCO_17_4816477810-123 36 88.566116 hybrid +147_2-5 Q0 MARCO_26_778310060-9 37 88.558166 hybrid +147_2-5 Q0 MARCO_24_818625-7 38 88.540073 hybrid +147_2-5 Q0 MARCO_02_38589484-5 39 88.535116 hybrid +147_2-5 Q0 MARCO_31_125165974-1 40 88.527016 hybrid +147_2-5 Q0 MARCO_30_563318021-7 41 88.526766 hybrid +147_2-5 Q0 MARCO_27_1438156053-1 42 88.518816 hybrid +147_2-5 Q0 MARCO_36_1293017830-3 43 88.514915 hybrid +147_2-5 Q0 MARCO_01_822270056-8 44 88.514904 hybrid +147_2-5 Q0 MARCO_27_1519358559-1 45 88.511916 hybrid +147_2-5 Q0 MARCO_23_1806853430-10 46 88.490566 hybrid +147_2-5 Q0 MARCO_31_189549858-1 47 88.490565 hybrid +147_2-5 Q0 MARCO_54_1479042562-3 48 88.490366 hybrid +147_2-5 Q0 KILT_362238-25 49 88.487515 hybrid +147_2-5 Q0 MARCO_23_1806883365-3 50 88.487366 hybrid +147_2-5 Q0 KILT_54537218-1 51 88.485916 hybrid +147_2-5 Q0 MARCO_14_763324740-2 52 88.478065 hybrid +147_2-5 Q0 MARCO_32_914387130-1 53 88.476866 hybrid +147_2-5 Q0 MARCO_02_297147101-1 54 88.473866 hybrid +147_2-5 Q0 MARCO_06_694770796-1 55 88.459324 hybrid +147_2-5 Q0 MARCO_31_131612596-1 56 88.456366 hybrid +147_2-5 Q0 MARCO_31_292579249-1 57 88.455366 hybrid +147_2-5 Q0 MARCO_55_353238279-5 58 88.449615 hybrid +147_2-5 Q0 MARCO_23_1778040914-2 59 88.447566 hybrid +147_2-5 Q0 MARCO_44_35079726-8 60 88.443177 hybrid +147_2-5 Q0 MARCO_16_1901227596-7 61 88.435630 hybrid +147_2-5 Q0 MARCO_44_32790856-7 62 88.433163 hybrid +147_2-5 Q0 MARCO_44_32772068-7 63 88.433147 hybrid +147_2-5 Q0 MARCO_46_629689633-1 64 88.423168 hybrid +147_2-5 Q0 MARCO_36_417954033-2 65 88.412216 hybrid +147_2-5 Q0 MARCO_35_231027854-15 66 88.411616 hybrid +147_2-5 Q0 MARCO_43_842462175-1 67 88.402666 hybrid +147_2-5 Q0 MARCO_27_1431814765-11 68 88.401112 hybrid +147_2-5 Q0 MARCO_17_4815941315-20 69 88.396766 hybrid +147_2-5 Q0 MARCO_40_1365351917-1 70 88.396316 hybrid +147_2-5 Q0 KILT_42681558-8 71 88.390446 hybrid +147_2-5 Q0 MARCO_18_3163465006-7 72 88.388416 hybrid +147_2-5 Q0 MARCO_31_128245876-2 73 88.388016 hybrid +147_2-5 Q0 MARCO_44_610674293-1 74 88.383968 hybrid +147_2-5 Q0 MARCO_35_1383547965-11 75 88.382580 hybrid +147_2-5 Q0 MARCO_23_1085604106-1 76 88.376629 hybrid +147_2-5 Q0 MARCO_26_777997059-37 77 88.363716 hybrid +147_2-5 Q0 MARCO_24_1538687409-1 78 88.363616 hybrid +147_2-5 Q0 MARCO_31_128214538-4 79 88.360765 hybrid +147_2-5 Q0 MARCO_27_1491466475-1 80 88.355515 hybrid +147_2-5 Q0 MARCO_16_3281833985-1 81 88.353916 hybrid +147_2-5 Q0 MARCO_49_1561702548-1 82 88.351916 hybrid +147_2-5 Q0 MARCO_16_2790279801-54 83 88.351466 hybrid +147_2-5 Q0 MARCO_46_1471532707-4 84 88.350758 hybrid +147_2-5 Q0 MARCO_44_33070735-17 85 88.348492 hybrid +147_2-5 Q0 MARCO_31_292399071-1 86 88.348415 hybrid +147_2-5 Q0 MARCO_17_4189131090-22 87 88.343922 hybrid +147_2-5 Q0 MARCO_14_785661863-1 88 88.341419 hybrid +147_2-5 Q0 MARCO_17_4816848696-1 89 88.341416 hybrid +147_2-5 Q0 MARCO_50_2203503006-21 90 88.341066 hybrid +147_2-5 Q0 MARCO_31_128214538-1 91 88.337666 hybrid +147_2-5 Q0 MARCO_17_4816848696-26 92 88.327366 hybrid +147_2-5 Q0 KILT_30779156-5 93 88.323116 hybrid +147_2-5 Q0 MARCO_50_2240949679-94 94 88.315866 hybrid +147_2-5 Q0 MARCO_17_3800339950-1 95 88.314366 hybrid +147_2-5 Q0 MARCO_00_1517709176-1 96 88.314116 hybrid +147_2-5 Q0 KILT_27306717-77 97 88.314016 hybrid +147_2-5 Q0 MARCO_23_1779160232-7 98 88.311166 hybrid +147_2-5 Q0 MARCO_16_2790395129-1 99 88.310616 hybrid +147_2-5 Q0 KILT_58488308-1 100 88.309966 hybrid +148_1-1 Q0 MARCO_42_1882453792-1 1 88.515234 hybrid +148_1-1 Q0 MARCO_52_1001076716-1 2 88.406533 hybrid +148_1-1 Q0 MARCO_03_1679934199-3 3 88.364634 hybrid +148_1-1 Q0 MARCO_00_760279123-6 4 88.323568 hybrid +148_1-1 Q0 MARCO_04_957171423-7 5 88.313293 hybrid +148_1-1 Q0 MARCO_04_957281288-7 6 88.296820 hybrid +148_1-1 Q0 MARCO_28_451602786-1 7 88.250383 hybrid +148_1-1 Q0 MARCO_19_2295949404-14 8 88.166483 hybrid +148_1-1 Q0 MARCO_28_451781132-1 9 88.141984 hybrid +148_1-1 Q0 MARCO_01_958870689-10 10 88.139033 hybrid +148_1-1 Q0 MARCO_35_983821953-4 11 88.017508 hybrid +148_1-1 Q0 MARCO_03_961465353-5 12 88.016183 hybrid +148_1-1 Q0 MARCO_00_760291156-95 13 87.985411 hybrid +148_1-1 Q0 MARCO_41_699357295-8 14 87.984483 hybrid +148_1-1 Q0 MARCO_42_1882453792-2 15 87.956984 hybrid +148_1-1 Q0 MARCO_59_577552856-9 16 87.955433 hybrid +148_1-1 Q0 MARCO_03_24067282-7 17 87.942483 hybrid +148_1-1 Q0 MARCO_05_452599377-2 18 87.935534 hybrid +148_1-1 Q0 MARCO_13_1490755811-6 19 87.933983 hybrid +148_1-1 Q0 MARCO_50_1510921893-19 20 87.930838 hybrid +148_1-1 Q0 MARCO_00_760286197-4 21 87.927771 hybrid +148_1-1 Q0 MARCO_13_1489639922-1 22 87.921633 hybrid +148_1-1 Q0 MARCO_31_1404857866-3 23 87.914184 hybrid +148_1-1 Q0 MARCO_03_1580548158-4 24 87.869234 hybrid +148_1-1 Q0 MARCO_00_760400213-6 25 87.858496 hybrid +148_1-1 Q0 MARCO_01_636074665-7 26 87.840384 hybrid +148_1-1 Q0 MARCO_54_359960603-5 27 87.830328 hybrid +148_1-1 Q0 MARCO_31_1400537354-3 28 87.823234 hybrid +148_1-1 Q0 MARCO_59_598305400-3 29 87.817733 hybrid +148_1-1 Q0 MARCO_00_927202162-1 30 87.792583 hybrid +148_1-1 Q0 MARCO_03_567229613-1 31 87.781784 hybrid +148_1-1 Q0 MARCO_46_705334403-11 32 87.780554 hybrid +148_1-1 Q0 MARCO_50_1187379621-18 33 87.752004 hybrid +148_1-1 Q0 MARCO_46_705334403-10 34 87.747381 hybrid +148_1-1 Q0 MARCO_05_881484581-4 35 87.734684 hybrid +148_1-1 Q0 MARCO_04_957171423-4 36 87.730186 hybrid +148_1-1 Q0 MARCO_41_688639321-7 37 87.717283 hybrid +148_1-1 Q0 MARCO_41_686629467-7 38 87.715283 hybrid +148_1-1 Q0 MARCO_44_8807373-2 39 87.712483 hybrid +148_1-1 Q0 MARCO_36_834781133-1 40 87.708133 hybrid +148_1-1 Q0 MARCO_41_688639321-9 41 87.706684 hybrid +148_1-1 Q0 MARCO_41_686629467-9 42 87.706533 hybrid +148_1-1 Q0 MARCO_54_380523371-3 43 87.702784 hybrid +148_1-1 Q0 MARCO_25_1039281360-10 44 87.681083 hybrid +148_1-1 Q0 MARCO_06_1794042768-1 45 87.672033 hybrid +148_1-1 Q0 MARCO_01_2104368515-1 46 87.659433 hybrid +148_1-1 Q0 MARCO_57_294852708-5 47 87.656434 hybrid +148_1-1 Q0 MARCO_11_923840720-9 48 87.646833 hybrid +148_1-1 Q0 MARCO_02_2850072-6 49 87.645333 hybrid +148_1-1 Q0 MARCO_02_545481877-1 50 87.636333 hybrid +148_1-1 Q0 MARCO_13_1506950402-1 51 87.634833 hybrid +148_1-1 Q0 MARCO_02_361642399-20 52 87.630117 hybrid +148_1-1 Q0 MARCO_40_452049579-4 53 87.621099 hybrid +148_1-1 Q0 MARCO_22_481671692-1 54 87.617733 hybrid +148_1-1 Q0 MARCO_35_224934834-3 55 87.614284 hybrid +148_1-1 Q0 MARCO_03_949101054-4 56 87.610034 hybrid +148_1-1 Q0 MARCO_28_329979304-2 57 87.584494 hybrid +148_1-1 Q0 MARCO_28_329941343-2 58 87.584265 hybrid +148_1-1 Q0 MARCO_01_2104311079-1 59 87.580033 hybrid +148_1-1 Q0 MARCO_32_146844336-8 60 87.575567 hybrid +148_1-1 Q0 MARCO_03_25893117-11 61 87.572283 hybrid +148_1-1 Q0 MARCO_50_1187209904-12 62 87.571190 hybrid +148_1-1 Q0 MARCO_11_13788954-2 63 87.567683 hybrid +148_1-1 Q0 MARCO_46_705334403-6 64 87.566641 hybrid +148_1-1 Q0 MARCO_46_705334403-7 65 87.566603 hybrid +148_1-1 Q0 MARCO_03_1669669734-2 66 87.554733 hybrid +148_1-1 Q0 MARCO_03_961622911-3 67 87.550583 hybrid +148_1-1 Q0 MARCO_03_1679087045-1 68 87.547234 hybrid +148_1-1 Q0 MARCO_41_697850256-3 69 87.535284 hybrid +148_1-1 Q0 MARCO_56_465382230-20 70 87.529284 hybrid +148_1-1 Q0 MARCO_03_1675972221-3 71 87.524833 hybrid +148_1-1 Q0 MARCO_40_452377363-3 72 87.523741 hybrid +148_1-1 Q0 MARCO_00_760443343-4 73 87.517996 hybrid +148_1-1 Q0 MARCO_10_458190079-5 74 87.507833 hybrid +148_1-1 Q0 MARCO_11_1466826155-2 75 87.503384 hybrid +148_1-1 Q0 MARCO_35_1137881726-5 76 87.502279 hybrid +148_1-1 Q0 MARCO_57_145879357-1 77 87.500033 hybrid +148_1-1 Q0 MARCO_00_760438783-4 78 87.497328 hybrid +148_1-1 Q0 MARCO_08_1610932714-1 79 87.488634 hybrid +148_1-1 Q0 MARCO_41_2032961341-3 80 87.487722 hybrid +148_1-1 Q0 MARCO_00_213698368-1 81 87.485034 hybrid +148_1-1 Q0 MARCO_47_288459855-2 82 87.483938 hybrid +148_1-1 Q0 MARCO_40_451879306-4 83 87.475973 hybrid +148_1-1 Q0 MARCO_03_953997891-4 84 87.475683 hybrid +148_1-1 Q0 MARCO_11_1457641804-3 85 87.474033 hybrid +148_1-1 Q0 MARCO_59_582501632-6 86 87.472233 hybrid +148_1-1 Q0 MARCO_40_822716980-4 87 87.471205 hybrid +148_1-1 Q0 MARCO_01_636454023-1 88 87.469033 hybrid +148_1-1 Q0 MARCO_53_806393639-1 89 87.468733 hybrid +148_1-1 Q0 MARCO_50_1410739461-18 90 87.468130 hybrid +148_1-1 Q0 MARCO_04_367258189-7 91 87.460184 hybrid +148_1-1 Q0 MARCO_49_224679412-19 92 87.456320 hybrid +148_1-1 Q0 MARCO_13_1489118611-4 93 87.451384 hybrid +148_1-1 Q0 MARCO_31_1391063534-1 94 87.450583 hybrid +148_1-1 Q0 MARCO_28_330041165-2 95 87.446409 hybrid +148_1-1 Q0 MARCO_01_1996504086-7 96 87.445183 hybrid +148_1-1 Q0 MARCO_29_1689449011-4 97 87.438177 hybrid +148_1-1 Q0 MARCO_03_1677355823-3 98 87.435483 hybrid +148_1-1 Q0 MARCO_03_1679250489-3 99 87.435483 hybrid +148_1-1 Q0 MARCO_03_943505780-3 100 87.433484 hybrid +148_1-3 Q0 MARCO_19_1519183645-1 1 95.848037 hybrid +148_1-3 Q0 MARCO_31_845797036-4 2 95.505486 hybrid +148_1-3 Q0 MARCO_57_249748652-1 3 95.278787 hybrid +148_1-3 Q0 MARCO_52_904757328-14 4 95.075187 hybrid +148_1-3 Q0 MARCO_55_1193551546-12 5 94.951937 hybrid +148_1-3 Q0 MARCO_54_428880039-6 6 94.912786 hybrid +148_1-3 Q0 MARCO_41_296769629-2 7 94.860686 hybrid +148_1-3 Q0 MARCO_32_292573942-2 8 94.663836 hybrid +148_1-3 Q0 MARCO_41_2173328219-2 9 94.648746 hybrid +148_1-3 Q0 MARCO_52_1304239835-13 10 94.554337 hybrid +148_1-3 Q0 MARCO_47_1324213266-6 11 94.533986 hybrid +148_1-3 Q0 MARCO_45_669318836-2 12 94.420836 hybrid +148_1-3 Q0 MARCO_01_1356132923-2 13 94.409186 hybrid +148_1-3 Q0 MARCO_36_433866314-6 14 94.395536 hybrid +148_1-3 Q0 MARCO_01_1029091257-22 15 94.378837 hybrid +148_1-3 Q0 MARCO_32_151639311-9 16 94.347334 hybrid +148_1-3 Q0 MARCO_23_615926436-2 17 94.304087 hybrid +148_1-3 Q0 MARCO_54_49455780-1 18 94.284436 hybrid +148_1-3 Q0 MARCO_01_1029091257-13 19 94.256987 hybrid +148_1-3 Q0 MARCO_06_1961366959-1 20 94.240637 hybrid +148_1-3 Q0 MARCO_28_1800432706-4 21 94.189520 hybrid +148_1-3 Q0 MARCO_00_602096381-2 22 94.186787 hybrid +148_1-3 Q0 MARCO_45_669313280-3 23 94.171536 hybrid +148_1-3 Q0 MARCO_04_1212974143-4 24 94.139441 hybrid +148_1-3 Q0 MARCO_32_701100208-6 25 94.114686 hybrid +148_1-3 Q0 MARCO_45_943897332-2 26 94.114487 hybrid +148_1-3 Q0 MARCO_29_637544303-6 27 94.103236 hybrid +148_1-3 Q0 MARCO_01_1029091257-39 28 94.098436 hybrid +148_1-3 Q0 MARCO_51_1180699988-10 29 94.042736 hybrid +148_1-3 Q0 MARCO_31_1405904548-1 30 94.038186 hybrid +148_1-3 Q0 MARCO_37_468305940-2 31 94.025387 hybrid +148_1-3 Q0 MARCO_25_841762115-4 32 94.025086 hybrid +148_1-3 Q0 MARCO_40_1178113770-2 33 94.013336 hybrid +148_1-3 Q0 MARCO_50_723135453-3 34 93.995939 hybrid +148_1-3 Q0 MARCO_34_1582338347-1 35 93.990136 hybrid +148_1-3 Q0 MARCO_56_825003119-4 36 93.976721 hybrid +148_1-3 Q0 MARCO_21_1148914035-4 37 93.972601 hybrid +148_1-3 Q0 MARCO_41_1817901719-3 38 93.967986 hybrid +148_1-3 Q0 MARCO_29_789658183-7 39 93.961447 hybrid +148_1-3 Q0 MARCO_01_1029091257-30 40 93.959786 hybrid +148_1-3 Q0 MARCO_52_1302731929-1 41 93.950537 hybrid +148_1-3 Q0 MARCO_49_328102263-3 42 93.946036 hybrid +148_1-3 Q0 MARCO_00_1400523710-7 43 93.932137 hybrid +148_1-3 Q0 MARCO_36_837159568-4 44 93.912008 hybrid +148_1-3 Q0 MARCO_29_1690865094-6 45 93.895178 hybrid +148_1-3 Q0 MARCO_04_1031974828-3 46 93.887220 hybrid +148_1-3 Q0 MARCO_56_352891759-15 47 93.870936 hybrid +148_1-3 Q0 MARCO_57_701868253-1 48 93.866286 hybrid +148_1-3 Q0 MARCO_50_1416666844-64 49 93.862318 hybrid +148_1-3 Q0 MARCO_38_1460766708-16 50 93.841948 hybrid +148_1-3 Q0 MARCO_26_491319070-2 51 93.828136 hybrid +148_1-3 Q0 MARCO_30_1600420937-2 52 93.812986 hybrid +148_1-3 Q0 MARCO_12_589017303-6 53 93.810786 hybrid +148_1-3 Q0 MARCO_33_525677612-1 54 93.790936 hybrid +148_1-3 Q0 MARCO_13_1765703453-60 55 93.788267 hybrid +148_1-3 Q0 MARCO_45_174341378-9 56 93.787863 hybrid +148_1-3 Q0 MARCO_37_1250963311-18 57 93.787298 hybrid +148_1-3 Q0 MARCO_10_72839680-5 58 93.772879 hybrid +148_1-3 Q0 MARCO_13_1790557331-6 59 93.767263 hybrid +148_1-3 Q0 MARCO_52_1304819803-2 60 93.753186 hybrid +148_1-3 Q0 MARCO_13_404022361-2 61 93.749365 hybrid +148_1-3 Q0 MARCO_48_1317618258-2 62 93.744837 hybrid +148_1-3 Q0 MARCO_21_1148922316-10 63 93.736349 hybrid +148_1-3 Q0 MARCO_44_31650804-7 64 93.711387 hybrid +148_1-3 Q0 MARCO_34_354937039-12 65 93.711287 hybrid +148_1-3 Q0 MARCO_35_984783361-4 66 93.699850 hybrid +148_1-3 Q0 MARCO_16_107813219-4 67 93.692793 hybrid +148_1-3 Q0 MARCO_49_1411250000-2 68 93.689137 hybrid +148_1-3 Q0 MARCO_36_220462875-2 69 93.667136 hybrid +148_1-3 Q0 MARCO_56_1224571911-4 70 93.665486 hybrid +148_1-3 Q0 MARCO_57_1363749775-3 71 93.658937 hybrid +148_1-3 Q0 MARCO_21_1146237731-10 72 93.658522 hybrid +148_1-3 Q0 MARCO_57_248815376-2 73 93.656186 hybrid +148_1-3 Q0 MARCO_29_1687545937-2 74 93.655577 hybrid +148_1-3 Q0 MARCO_00_762053020-4 75 93.653532 hybrid +148_1-3 Q0 MARCO_45_980460899-8 76 93.648504 hybrid +148_1-3 Q0 MARCO_33_831094601-2 77 93.644337 hybrid +148_1-3 Q0 MARCO_38_1460766708-17 78 93.638968 hybrid +148_1-3 Q0 MARCO_50_2481434035-42 79 93.636236 hybrid +148_1-3 Q0 MARCO_54_4922130-5 80 93.622801 hybrid +148_1-3 Q0 MARCO_26_995770184-5 81 93.603187 hybrid +148_1-3 Q0 MARCO_23_1149277394-15 82 93.596136 hybrid +148_1-3 Q0 MARCO_24_980569116-20 83 93.590643 hybrid +148_1-3 Q0 MARCO_23_648163434-148 84 93.589697 hybrid +148_1-3 Q0 MARCO_38_1460766708-14 85 93.588621 hybrid +148_1-3 Q0 MARCO_23_854591388-6 86 93.587887 hybrid +148_1-3 Q0 MARCO_27_1206866864-3 87 93.586454 hybrid +148_1-3 Q0 MARCO_54_8545664-5 88 93.586309 hybrid +148_1-3 Q0 MARCO_43_1672339813-4 89 93.586287 hybrid +148_1-3 Q0 MARCO_57_251178962-3 90 93.582787 hybrid +148_1-3 Q0 MARCO_19_1523446225-4 91 93.581786 hybrid +148_1-3 Q0 MARCO_31_1386842420-1 92 93.577887 hybrid +148_1-3 Q0 MARCO_10_577815162-1 93 93.573537 hybrid +148_1-3 Q0 MARCO_24_1890412095-2 94 93.571687 hybrid +148_1-3 Q0 MARCO_13_1790455662-2 95 93.568739 hybrid +148_1-3 Q0 MARCO_47_1210401269-4 96 93.566486 hybrid +148_1-3 Q0 MARCO_26_491165576-1 97 93.563586 hybrid +148_1-3 Q0 MARCO_32_63259840-8 98 93.562636 hybrid +148_1-3 Q0 MARCO_25_902949068-2 99 93.556686 hybrid +148_1-3 Q0 MARCO_37_1250593537-19 100 93.553740 hybrid +148_1-5 Q0 MARCO_19_1519183645-2 1 92.273263 hybrid +148_1-5 Q0 MARCO_46_705334403-1 2 90.612004 hybrid +148_1-5 Q0 MARCO_19_1519183645-1 3 89.891663 hybrid +148_1-5 Q0 MARCO_03_1032124989-2 4 89.829613 hybrid +148_1-5 Q0 MARCO_38_429595741-7 5 89.826263 hybrid +148_1-5 Q0 MARCO_32_147080142-10 6 89.804115 hybrid +148_1-5 Q0 MARCO_15_1639759002-16 7 89.802013 hybrid +148_1-5 Q0 MARCO_46_705334403-7 8 89.712665 hybrid +148_1-5 Q0 MARCO_50_1516527274-46 9 89.621242 hybrid +148_1-5 Q0 MARCO_36_1151730727-6 10 89.481763 hybrid +148_1-5 Q0 MARCO_40_1277399291-1 11 89.401421 hybrid +148_1-5 Q0 MARCO_04_33842015-3 12 89.398813 hybrid +148_1-5 Q0 MARCO_50_1186856656-19 13 89.359319 hybrid +148_1-5 Q0 MARCO_50_1944730728-4 14 89.348038 hybrid +148_1-5 Q0 MARCO_28_409744214-2 15 89.262513 hybrid +148_1-5 Q0 MARCO_55_1345847584-9 16 89.192871 hybrid +148_1-5 Q0 MARCO_48_1039220146-1 17 89.188263 hybrid +148_1-5 Q0 MARCO_50_1942483960-5 18 89.184105 hybrid +148_1-5 Q0 MARCO_35_987020589-11 19 89.179062 hybrid +148_1-5 Q0 MARCO_30_409324684-6 20 89.142213 hybrid +148_1-5 Q0 MARCO_20_1229320529-26 21 89.108563 hybrid +148_1-5 Q0 MARCO_50_1186856656-17 22 89.064445 hybrid +148_1-5 Q0 MARCO_47_1544743513-2 23 89.059263 hybrid +148_1-5 Q0 MARCO_50_1416666844-73 24 89.032761 hybrid +148_1-5 Q0 MARCO_14_717400203-4 25 89.024113 hybrid +148_1-5 Q0 MARCO_08_55947818-7 26 89.016113 hybrid +148_1-5 Q0 MARCO_48_1713970483-1 27 89.010213 hybrid +148_1-5 Q0 MARCO_07_1210639062-2 28 88.999963 hybrid +148_1-5 Q0 MARCO_03_1032124989-1 29 88.985521 hybrid +148_1-5 Q0 MARCO_59_533246010-7 30 88.970162 hybrid +148_1-5 Q0 MARCO_57_886600451-16 31 88.942163 hybrid +148_1-5 Q0 MARCO_11_1480750570-2 32 88.927463 hybrid +148_1-5 Q0 MARCO_50_1522625191-16 33 88.910636 hybrid +148_1-5 Q0 MARCO_50_1508999748-46 34 88.907860 hybrid +148_1-5 Q0 MARCO_06_12231190-1 35 88.902513 hybrid +148_1-5 Q0 MARCO_50_1508999748-40 36 88.864983 hybrid +148_1-5 Q0 MARCO_32_145930651-10 37 88.847513 hybrid +148_1-5 Q0 MARCO_51_118078577-3 38 88.846176 hybrid +148_1-5 Q0 MARCO_41_794623386-10 39 88.835613 hybrid +148_1-5 Q0 MARCO_50_1944967831-16 40 88.819013 hybrid +148_1-5 Q0 MARCO_48_265813505-1 41 88.809663 hybrid +148_1-5 Q0 MARCO_50_2386659125-36 42 88.799332 hybrid +148_1-5 Q0 MARCO_10_892334905-12 43 88.797852 hybrid +148_1-5 Q0 MARCO_24_590888447-2 44 88.792463 hybrid +148_1-5 Q0 MARCO_28_697348467-2 45 88.785913 hybrid +148_1-5 Q0 MARCO_46_554487692-13 46 88.780038 hybrid +148_1-5 Q0 MARCO_50_1516527274-40 47 88.772359 hybrid +148_1-5 Q0 MARCO_13_21006101-7 48 88.766258 hybrid +148_1-5 Q0 MARCO_50_2386659125-22 49 88.766106 hybrid +148_1-5 Q0 MARCO_50_2386659125-23 50 88.765533 hybrid +148_1-5 Q0 MARCO_58_1438376727-5 51 88.763463 hybrid +148_1-5 Q0 MARCO_50_2375986043-34 52 88.763336 hybrid +148_1-5 Q0 MARCO_13_1492412248-1 53 88.760063 hybrid +148_1-5 Q0 MARCO_51_1012925869-8 54 88.754363 hybrid +148_1-5 Q0 MARCO_25_620181844-13 55 88.753913 hybrid +148_1-5 Q0 MARCO_07_822425487-5 56 88.753288 hybrid +148_1-5 Q0 MARCO_19_2572917523-3 57 88.743313 hybrid +148_1-5 Q0 MARCO_19_2572917523-5 58 88.743312 hybrid +148_1-5 Q0 MARCO_19_2572917523-9 59 88.743312 hybrid +148_1-5 Q0 MARCO_44_766483581-1 60 88.735263 hybrid +148_1-5 Q0 MARCO_43_188156958-3 61 88.732113 hybrid +148_1-5 Q0 MARCO_50_2490343126-3 62 88.723083 hybrid +148_1-5 Q0 MARCO_50_1416666844-23 63 88.721054 hybrid +148_1-5 Q0 MARCO_53_889273199-8 64 88.712613 hybrid +148_1-5 Q0 MARCO_58_557247495-4 65 88.708513 hybrid +148_1-5 Q0 KILT_38321234-3 66 88.707558 hybrid +148_1-5 Q0 MARCO_42_1702983934-3 67 88.701913 hybrid +148_1-5 Q0 MARCO_10_880621742-13 68 88.687563 hybrid +148_1-5 Q0 MARCO_59_992888663-12 69 88.682713 hybrid +148_1-5 Q0 MARCO_32_147051342-7 70 88.682671 hybrid +148_1-5 Q0 MARCO_50_1516527274-36 71 88.679251 hybrid +148_1-5 Q0 MARCO_44_1474664164-2 72 88.673113 hybrid +148_1-5 Q0 MARCO_46_705334403-2 73 88.667717 hybrid +148_1-5 Q0 MARCO_06_14783170-15 74 88.666763 hybrid +148_1-5 Q0 MARCO_36_31093847-2 75 88.658363 hybrid +148_1-5 Q0 MARCO_55_1357995226-6 76 88.657263 hybrid +148_1-5 Q0 MARCO_33_1236772326-13 77 88.654963 hybrid +148_1-5 Q0 MARCO_50_1933511130-17 78 88.645836 hybrid +148_1-5 Q0 MARCO_50_1508999748-41 79 88.636856 hybrid +148_1-5 Q0 MARCO_13_1027129138-6 80 88.627963 hybrid +148_1-5 Q0 MARCO_00_923493309-3 81 88.624626 hybrid +148_1-5 Q0 MARCO_46_705334403-11 82 88.620819 hybrid +148_1-5 Q0 MARCO_00_760400213-6 83 88.619156 hybrid +148_1-5 Q0 MARCO_50_1416666844-35 84 88.618843 hybrid +148_1-5 Q0 MARCO_50_1419689794-1 85 88.616646 hybrid +148_1-5 Q0 MARCO_50_928694011-5 86 88.609459 hybrid +148_1-5 Q0 MARCO_50_1516527274-3 87 88.606112 hybrid +148_1-5 Q0 MARCO_50_2386659125-10 88 88.598938 hybrid +148_1-5 Q0 MARCO_21_253002238-1 89 88.595263 hybrid +148_1-5 Q0 MARCO_50_1416666844-36 90 88.594559 hybrid +148_1-5 Q0 MARCO_36_1158228196-8 91 88.593113 hybrid +148_1-5 Q0 MARCO_33_1236772326-11 92 88.589944 hybrid +148_1-5 Q0 MARCO_51_118128718-11 93 88.586525 hybrid +148_1-5 Q0 MARCO_20_1576446947-10 94 88.585617 hybrid +148_1-5 Q0 MARCO_06_475204686-1 95 88.582363 hybrid +148_1-5 Q0 MARCO_50_1983407280-5 96 88.576378 hybrid +148_1-5 Q0 MARCO_40_970736494-1 97 88.576013 hybrid +148_1-5 Q0 MARCO_08_817850973-110 98 88.575684 hybrid +148_1-5 Q0 MARCO_41_382343500-5 99 88.572388 hybrid +148_1-5 Q0 MARCO_50_1338802612-29 100 88.566413 hybrid +148_1-7 Q0 MARCO_19_1519183645-1 1 89.233887 hybrid +148_1-7 Q0 MARCO_46_705334403-1 2 89.231748 hybrid +148_1-7 Q0 MARCO_13_1492412248-1 3 88.802037 hybrid +148_1-7 Q0 MARCO_46_705334403-7 4 88.756809 hybrid +148_1-7 Q0 MARCO_27_1742305415-5 5 88.622487 hybrid +148_1-7 Q0 MARCO_06_475204686-1 6 88.516987 hybrid +148_1-7 Q0 MARCO_43_568057493-3 7 88.506387 hybrid +148_1-7 Q0 MARCO_32_720682436-1 8 88.414787 hybrid +148_1-7 Q0 MARCO_19_1519183645-2 9 88.412587 hybrid +148_1-7 Q0 MARCO_40_1525023277-15 10 88.364737 hybrid +148_1-7 Q0 MARCO_48_1713767188-1 11 88.327337 hybrid +148_1-7 Q0 MARCO_48_1714100690-1 12 88.256687 hybrid +148_1-7 Q0 MARCO_00_926893645-29 13 88.131326 hybrid +148_1-7 Q0 MARCO_55_187163561-4 14 88.096937 hybrid +148_1-7 Q0 MARCO_24_428612881-6 15 88.069037 hybrid +148_1-7 Q0 MARCO_28_339555653-6 16 88.059340 hybrid +148_1-7 Q0 MARCO_47_684172890-6 17 87.999137 hybrid +148_1-7 Q0 MARCO_45_1087542845-5 18 87.970487 hybrid +148_1-7 Q0 MARCO_52_904699483-2 19 87.957937 hybrid +148_1-7 Q0 MARCO_13_137346759-1 20 87.921937 hybrid +148_1-7 Q0 MARCO_40_970736494-1 21 87.918237 hybrid +148_1-7 Q0 MARCO_54_363553726-4 22 87.841666 hybrid +148_1-7 Q0 MARCO_06_14783170-12 23 87.807237 hybrid +148_1-7 Q0 MARCO_31_37937799-7 24 87.795487 hybrid +148_1-7 Q0 MARCO_43_568057493-4 25 87.791937 hybrid +148_1-7 Q0 MARCO_50_1565648514-25 26 87.789537 hybrid +148_1-7 Q0 MARCO_53_327288120-4 27 87.781937 hybrid +148_1-7 Q0 MARCO_13_384658701-1 28 87.781737 hybrid +148_1-7 Q0 MARCO_35_1765427389-1 29 87.761487 hybrid +148_1-7 Q0 MARCO_48_1713970483-1 30 87.738937 hybrid +148_1-7 Q0 MARCO_59_533246010-7 31 87.725382 hybrid +148_1-7 Q0 MARCO_37_1438058942-3 32 87.718987 hybrid +148_1-7 Q0 MARCO_50_2160027919-13 33 87.715971 hybrid +148_1-7 Q0 MARCO_53_470563523-1 34 87.703987 hybrid +148_1-7 Q0 MARCO_46_705334403-11 35 87.701437 hybrid +148_1-7 Q0 MARCO_50_1112795230-30 36 87.682337 hybrid +148_1-7 Q0 MARCO_57_830776167-1 37 87.680287 hybrid +148_1-7 Q0 MARCO_03_1062607185-6 38 87.662437 hybrid +148_1-7 Q0 MARCO_13_1169168638-3 39 87.656887 hybrid +148_1-7 Q0 MARCO_34_308809627-5 40 87.636087 hybrid +148_1-7 Q0 MARCO_50_674811875-15 41 87.627631 hybrid +148_1-7 Q0 MARCO_36_834781133-1 42 87.621387 hybrid +148_1-7 Q0 MARCO_43_208788695-6 43 87.610687 hybrid +148_1-7 Q0 MARCO_19_1977191078-6 44 87.607787 hybrid +148_1-7 Q0 MARCO_46_705334403-12 45 87.607459 hybrid +148_1-7 Q0 MARCO_50_1516527274-4 46 87.588368 hybrid +148_1-7 Q0 MARCO_02_361642399-49 47 87.582465 hybrid +148_1-7 Q0 MARCO_19_2484886309-6 48 87.582320 hybrid +148_1-7 Q0 MARCO_02_54755622-18 49 87.573837 hybrid +148_1-7 Q0 MARCO_23_1826114980-18 50 87.573836 hybrid +148_1-7 Q0 MARCO_57_1352949210-9 51 87.568388 hybrid +148_1-7 Q0 MARCO_40_700398362-36 52 87.559587 hybrid +148_1-7 Q0 MARCO_05_320483468-6 53 87.552031 hybrid +148_1-7 Q0 MARCO_04_958083866-6 54 87.550055 hybrid +148_1-7 Q0 MARCO_50_2052770615-18 55 87.546587 hybrid +148_1-7 Q0 MARCO_50_2486569954-68 56 87.542693 hybrid +148_1-7 Q0 MARCO_50_2339546187-2 57 87.531987 hybrid +148_1-7 Q0 MARCO_55_1345847584-9 58 87.531210 hybrid +148_1-7 Q0 MARCO_11_228773317-2 59 87.527337 hybrid +148_1-7 Q0 MARCO_17_669700504-1 60 87.511916 hybrid +148_1-7 Q0 MARCO_50_1524285459-3 61 87.500128 hybrid +148_1-7 Q0 MARCO_15_1986259474-5 62 87.496537 hybrid +148_1-7 Q0 MARCO_48_1039220146-1 63 87.493487 hybrid +148_1-7 Q0 MARCO_40_970736494-4 64 87.488037 hybrid +148_1-7 Q0 MARCO_12_1727840069-10 65 87.487051 hybrid +148_1-7 Q0 MARCO_54_1661548594-1 66 87.484787 hybrid +148_1-7 Q0 MARCO_59_996459752-9 67 87.482787 hybrid +148_1-7 Q0 MARCO_38_612487240-10 68 87.480387 hybrid +148_1-7 Q0 MARCO_55_146474125-5 69 87.458787 hybrid +148_1-7 Q0 MARCO_53_1450947763-9 70 87.456737 hybrid +148_1-7 Q0 MARCO_55_1357995226-6 71 87.453387 hybrid +148_1-7 Q0 MARCO_52_1209978787-3 72 87.450687 hybrid +148_1-7 Q0 MARCO_19_1518854745-1 73 87.448337 hybrid +148_1-7 Q0 MARCO_11_708231896-24 74 87.440487 hybrid +148_1-7 Q0 MARCO_52_1142396638-4 75 87.433936 hybrid +148_1-7 Q0 KILT_3197361-34 76 87.433287 hybrid +148_1-7 Q0 MARCO_04_958083866-3 77 87.429320 hybrid +148_1-7 Q0 MARCO_57_815924685-1 78 87.428287 hybrid +148_1-7 Q0 MARCO_07_279834906-3 79 87.422537 hybrid +148_1-7 Q0 MARCO_15_106607322-7 80 87.418540 hybrid +148_1-7 Q0 MARCO_47_814865714-1 81 87.405937 hybrid +148_1-7 Q0 MARCO_13_1664739127-6 82 87.402960 hybrid +148_1-7 Q0 MARCO_48_1714212417-6 83 87.395887 hybrid +148_1-7 Q0 MARCO_20_1144027453-13 84 87.395737 hybrid +148_1-7 Q0 MARCO_04_33842015-3 85 87.392437 hybrid +148_1-7 Q0 MARCO_50_1514944322-26 86 87.390196 hybrid +148_1-7 Q0 MARCO_52_893829140-3 87 87.388387 hybrid +148_1-7 Q0 MARCO_07_634890252-2 88 87.387887 hybrid +148_1-7 Q0 MARCO_11_1449924548-3 89 87.381209 hybrid +148_1-7 Q0 MARCO_46_1384141587-1 90 87.380237 hybrid +148_1-7 Q0 MARCO_50_1186856656-5 91 87.379462 hybrid +148_1-7 Q0 MARCO_40_1189989336-11 92 87.375853 hybrid +148_1-7 Q0 MARCO_47_676720398-1 93 87.372737 hybrid +148_1-7 Q0 MARCO_50_2401715259-21 94 87.363730 hybrid +148_1-7 Q0 MARCO_13_1253316922-3 95 87.362715 hybrid +148_1-7 Q0 MARCO_33_1236772326-11 96 87.353110 hybrid +148_1-7 Q0 MARCO_59_1034271336-28 97 87.353049 hybrid +148_1-7 Q0 MARCO_50_2386659125-39 98 87.351622 hybrid +148_1-7 Q0 MARCO_07_703370056-1 99 87.350837 hybrid +148_1-7 Q0 MARCO_28_451800353-1 100 87.347837 hybrid +148_1-9 Q0 MARCO_46_705435328-7 1 90.475963 hybrid +148_1-9 Q0 MARCO_46_705334403-7 2 90.324402 hybrid +148_1-9 Q0 MARCO_13_1488609592-13 3 90.277460 hybrid +148_1-9 Q0 MARCO_19_1519183645-2 4 90.264110 hybrid +148_1-9 Q0 MARCO_40_739116028-6 5 90.243309 hybrid +148_1-9 Q0 MARCO_36_435419135-2 6 90.160160 hybrid +148_1-9 Q0 MARCO_40_451570859-5 7 90.107323 hybrid +148_1-9 Q0 MARCO_47_676720398-1 8 90.070210 hybrid +148_1-9 Q0 MARCO_31_1405478324-2 9 90.051559 hybrid +148_1-9 Q0 MARCO_22_1378400972-1 10 89.959410 hybrid +148_1-9 Q0 MARCO_59_996459752-9 11 89.926260 hybrid +148_1-9 Q0 MARCO_46_705334403-1 12 89.919020 hybrid +148_1-9 Q0 MARCO_56_314743633-14 13 89.910154 hybrid +148_1-9 Q0 MARCO_47_1208746567-6 14 89.860860 hybrid +148_1-9 Q0 MARCO_03_960752020-3 15 89.775609 hybrid +148_1-9 Q0 MARCO_04_958083866-6 16 89.773893 hybrid +148_1-9 Q0 MARCO_04_958083866-3 17 89.767744 hybrid +148_1-9 Q0 MARCO_08_364153308-2 18 89.702559 hybrid +148_1-9 Q0 MARCO_54_501247390-4 19 89.696310 hybrid +148_1-9 Q0 MARCO_15_1809153533-17 20 89.673960 hybrid +148_1-9 Q0 MARCO_26_1513729990-63 21 89.672610 hybrid +148_1-9 Q0 MARCO_05_450238694-5 22 89.647421 hybrid +148_1-9 Q0 MARCO_54_501225424-4 23 89.621109 hybrid +148_1-9 Q0 MARCO_44_1159605723-1 24 89.617510 hybrid +148_1-9 Q0 MARCO_07_829315173-1 25 89.614710 hybrid +148_1-9 Q0 MARCO_46_705334403-12 26 89.562933 hybrid +148_1-9 Q0 MARCO_41_1791693187-2 27 89.542809 hybrid +148_1-9 Q0 MARCO_05_371790768-4 28 89.541810 hybrid +148_1-9 Q0 MARCO_36_435268652-8 29 89.522260 hybrid +148_1-9 Q0 MARCO_09_1175397293-1 30 89.501510 hybrid +148_1-9 Q0 MARCO_05_371796821-6 31 89.497760 hybrid +148_1-9 Q0 MARCO_29_879795504-2 32 89.481910 hybrid +148_1-9 Q0 MARCO_13_1665016531-1 33 89.475610 hybrid +148_1-9 Q0 MARCO_47_498770717-1 34 89.474160 hybrid +148_1-9 Q0 MARCO_34_355328727-11 35 89.459110 hybrid +148_1-9 Q0 MARCO_47_1391740857-9 36 89.457610 hybrid +148_1-9 Q0 MARCO_48_1296352633-5 37 89.454428 hybrid +148_1-9 Q0 MARCO_20_642181245-1 38 89.450960 hybrid +148_1-9 Q0 MARCO_05_371752122-5 39 89.440259 hybrid +148_1-9 Q0 MARCO_05_371790768-3 40 89.440259 hybrid +148_1-9 Q0 MARCO_36_1073919702-5 41 89.440259 hybrid +148_1-9 Q0 MARCO_40_451964875-1 42 89.437387 hybrid +148_1-9 Q0 MARCO_37_1255198346-70 43 89.431166 hybrid +148_1-9 Q0 MARCO_28_330048811-4 44 89.430754 hybrid +148_1-9 Q0 MARCO_07_829276426-7 45 89.428297 hybrid +148_1-9 Q0 MARCO_29_663090393-9 46 89.422323 hybrid +148_1-9 Q0 MARCO_38_1338793638-52 47 89.419110 hybrid +148_1-9 Q0 MARCO_50_1984876872-18 48 89.396116 hybrid +148_1-9 Q0 MARCO_00_922507913-2 49 89.392836 hybrid +148_1-9 Q0 MARCO_59_538271252-29 50 89.388571 hybrid +148_1-9 Q0 MARCO_25_1516782482-2 51 89.369160 hybrid +148_1-9 Q0 MARCO_40_276357027-1 52 89.366610 hybrid +148_1-9 Q0 MARCO_54_363553726-4 53 89.366461 hybrid +148_1-9 Q0 MARCO_04_958277495-10 54 89.366316 hybrid +148_1-9 Q0 MARCO_03_945785333-1 55 89.364560 hybrid +148_1-9 Q0 MARCO_40_451892794-4 56 89.361692 hybrid +148_1-9 Q0 MARCO_54_1798187061-1 57 89.351460 hybrid +148_1-9 Q0 MARCO_38_408760675-8 58 89.347540 hybrid +148_1-9 Q0 MARCO_04_958149359-16 59 89.341887 hybrid +148_1-9 Q0 MARCO_04_957918083-18 60 89.341887 hybrid +148_1-9 Q0 MARCO_04_958083866-39 61 89.341887 hybrid +148_1-9 Q0 MARCO_04_958083866-9 62 89.341887 hybrid +148_1-9 Q0 MARCO_04_957918083-6 63 89.341887 hybrid +148_1-9 Q0 MARCO_04_958083866-13 64 89.341887 hybrid +148_1-9 Q0 MARCO_43_1671621319-7 65 89.340810 hybrid +148_1-9 Q0 MARCO_40_739087763-5 66 89.334390 hybrid +148_1-9 Q0 MARCO_41_1819399084-2 67 89.321211 hybrid +148_1-9 Q0 MARCO_35_332531962-2 68 89.309500 hybrid +148_1-9 Q0 MARCO_54_319925937-4 69 89.306189 hybrid +148_1-9 Q0 MARCO_04_957918083-3 70 89.306112 hybrid +148_1-9 Q0 MARCO_04_958149359-3 71 89.306112 hybrid +148_1-9 Q0 MARCO_04_958149359-25 72 89.306112 hybrid +148_1-9 Q0 MARCO_04_958213226-3 73 89.306112 hybrid +148_1-9 Q0 MARCO_40_1527364079-1 74 89.304260 hybrid +148_1-9 Q0 MARCO_00_922507913-4 75 89.304152 hybrid +148_1-9 Q0 MARCO_36_1419281838-8 76 89.303659 hybrid +148_1-9 Q0 MARCO_47_498766794-2 77 89.287960 hybrid +148_1-9 Q0 KILT_52111558-3 78 89.286444 hybrid +148_1-9 Q0 MARCO_28_329979304-4 79 89.286421 hybrid +148_1-9 Q0 MARCO_40_452193451-6 80 89.274130 hybrid +148_1-9 Q0 MARCO_04_958083866-18 81 89.273985 hybrid +148_1-9 Q0 MARCO_04_958083866-25 82 89.273985 hybrid +148_1-9 Q0 MARCO_25_863094452-9 83 89.272460 hybrid +148_1-9 Q0 MARCO_34_355459807-5 84 89.267910 hybrid +148_1-9 Q0 MARCO_46_772110075-3 85 89.264456 hybrid +148_1-9 Q0 MARCO_05_450238694-12 86 89.261457 hybrid +148_1-9 Q0 MARCO_36_433741868-3 87 89.260360 hybrid +148_1-9 Q0 MARCO_40_1277399291-1 88 89.259367 hybrid +148_1-9 Q0 MARCO_04_958213226-22 89 89.249411 hybrid +148_1-9 Q0 MARCO_04_958083866-17 90 89.249411 hybrid +148_1-9 Q0 MARCO_04_958083866-24 91 89.249411 hybrid +148_1-9 Q0 MARCO_48_1038759700-1 92 89.249160 hybrid +148_1-9 Q0 MARCO_35_982385348-11 93 89.245100 hybrid +148_1-9 Q0 MARCO_04_412398361-3 94 89.241049 hybrid +148_1-9 Q0 MARCO_19_1519183645-1 95 89.237659 hybrid +148_1-9 Q0 MARCO_41_1791693187-3 96 89.222460 hybrid +148_1-9 Q0 MARCO_27_1742305415-5 97 89.217960 hybrid +148_1-9 Q0 MARCO_46_380842855-4 98 89.214437 hybrid +148_1-9 Q0 MARCO_55_1345847584-9 99 89.213827 hybrid +148_1-9 Q0 MARCO_59_559660135-25 100 89.210959 hybrid +148_2-1 Q0 MARCO_46_705334403-1 1 88.978337 hybrid +148_2-1 Q0 MARCO_19_1518854745-1 2 88.903052 hybrid +148_2-1 Q0 MARCO_19_1519183645-2 3 88.651802 hybrid +148_2-1 Q0 MARCO_50_2146881794-5 4 88.621152 hybrid +148_2-1 Q0 MARCO_00_926893645-29 5 88.323646 hybrid +148_2-1 Q0 MARCO_01_1824500589-7 6 88.205102 hybrid +148_2-1 Q0 MARCO_19_1519183645-1 7 88.197852 hybrid +148_2-1 Q0 MARCO_41_1136319190-5 8 88.190202 hybrid +148_2-1 Q0 MARCO_07_829349436-17 9 88.099082 hybrid +148_2-1 Q0 MARCO_12_1458549127-7 10 88.075052 hybrid +148_2-1 Q0 MARCO_25_73481090-7 11 88.063331 hybrid +148_2-1 Q0 MARCO_50_2488650692-4 12 88.060172 hybrid +148_2-1 Q0 MARCO_04_857828781-4 13 88.017252 hybrid +148_2-1 Q0 MARCO_35_293105677-15 14 87.995052 hybrid +148_2-1 Q0 MARCO_27_753061959-1 15 87.994902 hybrid +148_2-1 Q0 MARCO_50_778661070-14 16 87.952202 hybrid +148_2-1 Q0 MARCO_46_705334403-12 17 87.929832 hybrid +148_2-1 Q0 MARCO_35_987188806-8 18 87.918433 hybrid +148_2-1 Q0 MARCO_46_772110075-3 19 87.896819 hybrid +148_2-1 Q0 MARCO_40_1527364079-1 20 87.858352 hybrid +148_2-1 Q0 MARCO_04_958083866-3 21 87.853225 hybrid +148_2-1 Q0 MARCO_48_1714052848-1 22 87.834952 hybrid +148_2-1 Q0 MARCO_36_22623658-2 23 87.818236 hybrid +148_2-1 Q0 MARCO_50_1519050037-19 24 87.810576 hybrid +148_2-1 Q0 MARCO_20_1017993889-1 25 87.800952 hybrid +148_2-1 Q0 MARCO_04_958277495-10 26 87.800010 hybrid +148_2-1 Q0 MARCO_40_1275215270-7 27 87.793220 hybrid +148_2-1 Q0 MARCO_04_958083866-6 28 87.781447 hybrid +148_2-1 Q0 MARCO_57_259904356-2 29 87.776252 hybrid +148_2-1 Q0 MARCO_50_2753905797-9 30 87.749160 hybrid +148_2-1 Q0 MARCO_22_1158524938-3 31 87.722602 hybrid +148_2-1 Q0 MARCO_50_1516527274-12 32 87.704651 hybrid +148_2-1 Q0 MARCO_13_244999871-1 33 87.686502 hybrid +148_2-1 Q0 MARCO_43_568057493-4 34 87.677602 hybrid +148_2-1 Q0 MARCO_13_1253316922-3 35 87.672172 hybrid +148_2-1 Q0 MARCO_39_195798748-2 36 87.667502 hybrid +148_2-1 Q0 MARCO_26_115399005-7 37 87.662352 hybrid +148_2-1 Q0 MARCO_50_2506231202-65 38 87.643856 hybrid +148_2-1 Q0 MARCO_14_466396056-11 39 87.635016 hybrid +148_2-1 Q0 MARCO_34_1151483886-1 40 87.613921 hybrid +148_2-1 Q0 MARCO_37_188100441-1 41 87.607752 hybrid +148_2-1 Q0 MARCO_28_339941586-7 42 87.607528 hybrid +148_2-1 Q0 MARCO_28_339555653-6 43 87.603347 hybrid +148_2-1 Q0 MARCO_50_1516527274-47 44 87.599135 hybrid +148_2-1 Q0 MARCO_22_713179169-4 45 87.598952 hybrid +148_2-1 Q0 MARCO_49_722593240-2 46 87.572002 hybrid +148_2-1 Q0 MARCO_29_1689742490-14 47 87.569976 hybrid +148_2-1 Q0 MARCO_50_1982673628-10 48 87.561118 hybrid +148_2-1 Q0 MARCO_43_568057493-3 49 87.556252 hybrid +148_2-1 Q0 MARCO_16_2712177343-7 50 87.545702 hybrid +148_2-1 Q0 MARCO_00_925914093-2 51 87.544692 hybrid +148_2-1 Q0 MARCO_24_1134154218-9 52 87.541572 hybrid +148_2-1 Q0 MARCO_53_854298937-1 53 87.536552 hybrid +148_2-1 Q0 MARCO_58_1613720999-6 54 87.536551 hybrid +148_2-1 Q0 MARCO_36_1419281838-8 55 87.531802 hybrid +148_2-1 Q0 MARCO_50_2486569954-68 56 87.530471 hybrid +148_2-1 Q0 MARCO_31_202905428-1 57 87.527552 hybrid +148_2-1 Q0 MARCO_46_705334403-7 58 87.519838 hybrid +148_2-1 Q0 MARCO_07_703370056-1 59 87.518302 hybrid +148_2-1 Q0 MARCO_25_960936338-1 60 87.517302 hybrid +148_2-1 Q0 MARCO_50_928694011-16 61 87.512290 hybrid +148_2-1 Q0 MARCO_50_928694011-9 62 87.502669 hybrid +148_2-1 Q0 MARCO_48_1714308224-1 63 87.502352 hybrid +148_2-1 Q0 MARCO_57_1352949210-7 64 87.490325 hybrid +148_2-1 Q0 MARCO_13_703898002-1 65 87.484602 hybrid +148_2-1 Q0 MARCO_50_1983407280-5 66 87.478995 hybrid +148_2-1 Q0 MARCO_24_427971615-8 67 87.466902 hybrid +148_2-1 Q0 MARCO_22_1257551163-1 68 87.459002 hybrid +148_2-1 Q0 MARCO_40_1274048209-12 69 87.458198 hybrid +148_2-1 Q0 MARCO_50_928694011-5 70 87.456260 hybrid +148_2-1 Q0 MARCO_13_368191043-5 71 87.455402 hybrid +148_2-1 Q0 MARCO_23_644522987-6 72 87.455367 hybrid +148_2-1 Q0 MARCO_13_383854570-1 73 87.454902 hybrid +148_2-1 Q0 MARCO_50_851931334-19 74 87.449602 hybrid +148_2-1 Q0 MARCO_50_900557509-111 75 87.441252 hybrid +148_2-1 Q0 MARCO_50_1929222803-9 76 87.437972 hybrid +148_2-1 Q0 MARCO_50_1519237905-14 77 87.430579 hybrid +148_2-1 Q0 MARCO_50_1457136264-26 78 87.430579 hybrid +148_2-1 Q0 MARCO_50_1991937343-21 79 87.429352 hybrid +148_2-1 Q0 MARCO_40_1277399291-1 80 87.424933 hybrid +148_2-1 Q0 MARCO_50_1522625191-11 81 87.419868 hybrid +148_2-1 Q0 MARCO_43_766554148-2 82 87.417815 hybrid +148_2-1 Q0 MARCO_13_1258515906-10 83 87.414588 hybrid +148_2-1 Q0 MARCO_50_1518541296-6 84 87.413817 hybrid +148_2-1 Q0 MARCO_46_705334403-11 85 87.412162 hybrid +148_2-1 Q0 MARCO_29_861032985-4 86 87.407352 hybrid +148_2-1 Q0 MARCO_50_1626090782-12 87 87.406102 hybrid +148_2-1 Q0 MARCO_26_408038102-27 88 87.403724 hybrid +148_2-1 Q0 MARCO_53_1287951568-1 89 87.396902 hybrid +148_2-1 Q0 MARCO_47_599264390-3 90 87.392570 hybrid +148_2-1 Q0 MARCO_50_1984876872-18 91 87.390868 hybrid +148_2-1 Q0 MARCO_07_479708519-3 92 87.387946 hybrid +148_2-1 Q0 MARCO_40_1267336961-6 93 87.383994 hybrid +148_2-1 Q0 MARCO_50_2210096877-13 94 87.380852 hybrid +148_2-1 Q0 MARCO_41_1191765432-4 95 87.371833 hybrid +148_2-1 Q0 MARCO_40_1524867105-1 96 87.360652 hybrid +148_2-1 Q0 KILT_3197361-34 97 87.356052 hybrid +148_2-1 Q0 MARCO_46_705435328-9 98 87.347213 hybrid +148_2-1 Q0 MARCO_25_73366537-2 99 87.345023 hybrid +148_2-1 Q0 MARCO_50_1457136264-15 100 87.343078 hybrid +148_2-3 Q0 MARCO_59_533393421-3 1 91.315886 hybrid +148_2-3 Q0 MARCO_31_1852604756-6 2 91.187163 hybrid +148_2-3 Q0 MARCO_37_787669308-4 3 91.087513 hybrid +148_2-3 Q0 MARCO_50_1516410155-23 4 90.812113 hybrid +148_2-3 Q0 MARCO_44_655635825-8 5 90.801414 hybrid +148_2-3 Q0 MARCO_47_288127950-2 6 90.748426 hybrid +148_2-3 Q0 MARCO_59_533436401-5 7 90.744070 hybrid +148_2-3 Q0 MARCO_16_107741948-2 8 90.699156 hybrid +148_2-3 Q0 MARCO_53_1021420296-30 9 90.666163 hybrid +148_2-3 Q0 MARCO_59_533329192-10 10 90.660727 hybrid +148_2-3 Q0 MARCO_59_533329192-24 11 90.586996 hybrid +148_2-3 Q0 MARCO_59_533393421-2 12 90.556684 hybrid +148_2-3 Q0 MARCO_47_233508789-2 13 90.464763 hybrid +148_2-3 Q0 MARCO_53_361664784-1 14 90.460328 hybrid +148_2-3 Q0 MARCO_44_578029262-4 15 90.455163 hybrid +148_2-3 Q0 MARCO_59_533393421-1 16 90.404402 hybrid +148_2-3 Q0 MARCO_13_55446283-27 17 90.353513 hybrid +148_2-3 Q0 MARCO_59_533246010-7 18 90.341124 hybrid +148_2-3 Q0 MARCO_37_1255198346-2 19 90.334692 hybrid +148_2-3 Q0 MARCO_13_190015872-9 20 90.291863 hybrid +148_2-3 Q0 MARCO_00_705166565-8 21 90.282013 hybrid +148_2-3 Q0 MARCO_51_481186708-1 22 90.281113 hybrid +148_2-3 Q0 MARCO_37_1247915394-9 23 90.272093 hybrid +148_2-3 Q0 MARCO_59_533393421-5 24 90.232138 hybrid +148_2-3 Q0 MARCO_52_1304733455-16 25 90.216163 hybrid +148_2-3 Q0 MARCO_51_1241852601-5 26 90.206930 hybrid +148_2-3 Q0 MARCO_28_44557103-7 27 90.193541 hybrid +148_2-3 Q0 MARCO_43_1680206762-6 28 90.188563 hybrid +148_2-3 Q0 MARCO_13_184801200-3 29 90.179513 hybrid +148_2-3 Q0 MARCO_14_584186710-3 30 90.179313 hybrid +148_2-3 Q0 MARCO_28_339445931-7 31 90.167196 hybrid +148_2-3 Q0 MARCO_45_1119676683-2 32 90.156413 hybrid +148_2-3 Q0 MARCO_43_776904299-4 33 90.147230 hybrid +148_2-3 Q0 MARCO_46_382277930-5 34 90.133238 hybrid +148_2-3 Q0 MARCO_09_1213778241-4 35 90.108963 hybrid +148_2-3 Q0 MARCO_11_601832491-2 36 90.104139 hybrid +148_2-3 Q0 MARCO_45_802066604-2 37 90.098814 hybrid +148_2-3 Q0 MARCO_48_2104916450-9 38 90.092163 hybrid +148_2-3 Q0 MARCO_29_1690477280-7 39 90.088835 hybrid +148_2-3 Q0 MARCO_35_998865514-7 40 90.083364 hybrid +148_2-3 Q0 MARCO_28_44557103-11 41 90.072020 hybrid +148_2-3 Q0 MARCO_53_889069367-71 42 90.070913 hybrid +148_2-3 Q0 MARCO_59_533393421-9 43 90.068983 hybrid +148_2-3 Q0 MARCO_53_1431170844-2 44 90.065213 hybrid +148_2-3 Q0 MARCO_13_1163204111-9 45 90.025244 hybrid +148_2-3 Q0 MARCO_08_667954582-2 46 90.022663 hybrid +148_2-3 Q0 MARCO_22_528027533-1 47 90.020413 hybrid +148_2-3 Q0 MARCO_00_923414327-2 48 90.017912 hybrid +148_2-3 Q0 MARCO_29_1689675997-18 49 90.016958 hybrid +148_2-3 Q0 MARCO_35_980997142-2 50 89.996695 hybrid +148_2-3 Q0 MARCO_54_357634490-13 51 89.982397 hybrid +148_2-3 Q0 MARCO_35_980962005-2 52 89.970106 hybrid +148_2-3 Q0 MARCO_54_360550472-2 53 89.958921 hybrid +148_2-3 Q0 MARCO_54_365373030-4 54 89.945585 hybrid +148_2-3 Q0 MARCO_11_601832491-1 55 89.942724 hybrid +148_2-3 Q0 MARCO_08_1121809190-4 56 89.937407 hybrid +148_2-3 Q0 MARCO_43_1678281860-10 57 89.936363 hybrid +148_2-3 Q0 MARCO_28_423590527-1 58 89.914782 hybrid +148_2-3 Q0 MARCO_11_105671998-29 59 89.913813 hybrid +148_2-3 Q0 MARCO_59_537093455-12 60 89.899374 hybrid +148_2-3 Q0 MARCO_10_598118885-8 61 89.883613 hybrid +148_2-3 Q0 MARCO_57_827894280-5 62 89.883613 hybrid +148_2-3 Q0 MARCO_13_1164549158-9 63 89.881758 hybrid +148_2-3 Q0 MARCO_00_202228554-4 64 89.876813 hybrid +148_2-3 Q0 MARCO_47_233508789-3 65 89.874063 hybrid +148_2-3 Q0 MARCO_26_161501407-2 66 89.873263 hybrid +148_2-3 Q0 MARCO_32_617206189-6 67 89.872465 hybrid +148_2-3 Q0 MARCO_40_1264689473-5 68 89.868863 hybrid +148_2-3 Q0 MARCO_59_533329192-12 69 89.866913 hybrid +148_2-3 Q0 MARCO_54_319887768-6 70 89.860113 hybrid +148_2-3 Q0 MARCO_13_182291341-6 71 89.843563 hybrid +148_2-3 Q0 MARCO_28_554394337-2 72 89.837439 hybrid +148_2-3 Q0 MARCO_45_1123314056-5 73 89.836263 hybrid +148_2-3 Q0 MARCO_29_789658183-7 74 89.836233 hybrid +148_2-3 Q0 MARCO_50_1505044238-35 75 89.830063 hybrid +148_2-3 Q0 MARCO_54_360542762-2 76 89.825422 hybrid +148_2-3 Q0 MARCO_22_1325025556-10 77 89.815513 hybrid +148_2-3 Q0 MARCO_24_523392716-19 78 89.815063 hybrid +148_2-3 Q0 MARCO_30_858101398-2 79 89.812013 hybrid +148_2-3 Q0 MARCO_28_1364700413-1 80 89.806213 hybrid +148_2-3 Q0 MARCO_37_1255298398-13 81 89.805616 hybrid +148_2-3 Q0 MARCO_28_339941586-8 82 89.800550 hybrid +148_2-3 Q0 MARCO_59_533393421-4 83 89.799887 hybrid +148_2-3 Q0 MARCO_47_675884058-2 84 89.796385 hybrid +148_2-3 Q0 MARCO_45_802066604-3 85 89.796013 hybrid +148_2-3 Q0 MARCO_28_339941586-7 86 89.788613 hybrid +148_2-3 Q0 MARCO_52_935114136-3 87 89.785563 hybrid +148_2-3 Q0 MARCO_59_996662560-5 88 89.781963 hybrid +148_2-3 Q0 MARCO_19_2061859640-2 89 89.781668 hybrid +148_2-3 Q0 MARCO_33_948249091-7 90 89.780513 hybrid +148_2-3 Q0 MARCO_46_1165582098-3 91 89.780020 hybrid +148_2-3 Q0 MARCO_09_534573872-2 92 89.779814 hybrid +148_2-3 Q0 MARCO_15_309858859-6 93 89.779188 hybrid +148_2-3 Q0 MARCO_54_364946981-3 94 89.778212 hybrid +148_2-3 Q0 MARCO_00_927454580-3 95 89.777433 hybrid +148_2-3 Q0 MARCO_45_977374470-2 96 89.773390 hybrid +148_2-3 Q0 MARCO_59_533393421-6 97 89.772108 hybrid +148_2-3 Q0 MARCO_57_1164075240-1 98 89.768963 hybrid +148_2-3 Q0 MARCO_00_2327453-90 99 89.764313 hybrid +148_2-3 Q0 MARCO_35_984232001-7 100 89.760130 hybrid +148_2-5 Q0 MARCO_35_984279294-4 1 90.632046 hybrid +148_2-5 Q0 MARCO_53_1021420296-5 2 90.583758 hybrid +148_2-5 Q0 MARCO_59_537093455-12 3 90.374419 hybrid +148_2-5 Q0 MARCO_43_1677717891-5 4 90.276537 hybrid +148_2-5 Q0 MARCO_50_2384555865-19 5 90.276257 hybrid +148_2-5 Q0 MARCO_40_822655009-10 6 90.267568 hybrid +148_2-5 Q0 MARCO_13_503360138-9 7 90.179537 hybrid +148_2-5 Q0 MARCO_59_537115662-3 8 90.144154 hybrid +148_2-5 Q0 MARCO_13_503360138-17 9 90.141487 hybrid +148_2-5 Q0 MARCO_43_1680016746-10 10 90.066287 hybrid +148_2-5 Q0 MARCO_28_339463138-14 11 90.048268 hybrid +148_2-5 Q0 MARCO_44_1486988924-11 12 90.039898 hybrid +148_2-5 Q0 MARCO_35_982879909-8 13 90.004742 hybrid +148_2-5 Q0 MARCO_22_1197950647-7 14 89.941437 hybrid +148_2-5 Q0 MARCO_59_536793863-8 15 89.899510 hybrid +148_2-5 Q0 MARCO_59_534493172-14 16 89.892430 hybrid +148_2-5 Q0 MARCO_50_312745419-4 17 89.878187 hybrid +148_2-5 Q0 MARCO_40_1187187759-8 18 89.863237 hybrid +148_2-5 Q0 MARCO_00_760286197-3 19 89.855542 hybrid +148_2-5 Q0 MARCO_52_685589535-10 20 89.844069 hybrid +148_2-5 Q0 MARCO_22_202231425-9 21 89.769987 hybrid +148_2-5 Q0 MARCO_27_918869608-1 22 89.710987 hybrid +148_2-5 Q0 MARCO_45_1167526407-1 23 89.707937 hybrid +148_2-5 Q0 MARCO_50_1574251402-75 24 89.691137 hybrid +148_2-5 Q0 MARCO_55_764089383-6 25 89.644711 hybrid +148_2-5 Q0 MARCO_29_1688895161-3 26 89.642018 hybrid +148_2-5 Q0 MARCO_04_369060071-17 27 89.639887 hybrid +148_2-5 Q0 MARCO_47_675640658-4 28 89.619748 hybrid +148_2-5 Q0 MARCO_54_139606558-7 29 89.618039 hybrid +148_2-5 Q0 MARCO_24_414959279-2 30 89.615287 hybrid +148_2-5 Q0 MARCO_27_1418084228-10 31 89.599937 hybrid +148_2-5 Q0 MARCO_41_672922410-3 32 89.585137 hybrid +148_2-5 Q0 MARCO_40_656436198-6 33 89.584202 hybrid +148_2-5 Q0 MARCO_50_2157457161-17 34 89.569760 hybrid +148_2-5 Q0 MARCO_30_931120865-1 35 89.550837 hybrid +148_2-5 Q0 MARCO_22_843428635-21 36 89.539887 hybrid +148_2-5 Q0 MARCO_02_655687548-4 37 89.535287 hybrid +148_2-5 Q0 MARCO_54_139606558-2 38 89.524251 hybrid +148_2-5 Q0 MARCO_37_833330438-6 39 89.522259 hybrid +148_2-5 Q0 MARCO_12_1727721624-8 40 89.519726 hybrid +148_2-5 Q0 MARCO_59_537115662-2 41 89.507397 hybrid +148_2-5 Q0 MARCO_53_1021420296-2 42 89.505528 hybrid +148_2-5 Q0 MARCO_29_1020363654-2 43 89.504224 hybrid +148_2-5 Q0 MARCO_35_983491522-4 44 89.492787 hybrid +148_2-5 Q0 MARCO_09_1708062060-1 45 89.485537 hybrid +148_2-5 Q0 MARCO_25_9153540-11 46 89.463837 hybrid +148_2-5 Q0 MARCO_35_984279294-3 47 89.458424 hybrid +148_2-5 Q0 MARCO_13_1503456477-2 48 89.455337 hybrid +148_2-5 Q0 MARCO_29_1690779254-7 49 89.454243 hybrid +148_2-5 Q0 MARCO_52_1142396638-4 50 89.452221 hybrid +148_2-5 Q0 MARCO_30_1776444813-5 51 89.449704 hybrid +148_2-5 Q0 MARCO_55_1207119358-11 52 89.444687 hybrid +148_2-5 Q0 MARCO_59_795812895-3 53 89.432637 hybrid +148_2-5 Q0 MARCO_04_367685523-39 54 89.423387 hybrid +148_2-5 Q0 MARCO_59_537124812-12 55 89.413746 hybrid +148_2-5 Q0 MARCO_26_495534144-4 56 89.411793 hybrid +148_2-5 Q0 MARCO_19_1516985221-2 57 89.408587 hybrid +148_2-5 Q0 MARCO_29_1690865094-2 58 89.406033 hybrid +148_2-5 Q0 MARCO_13_21582751-7 59 89.401928 hybrid +148_2-5 Q0 MARCO_43_1680016746-20 60 89.401087 hybrid +148_2-5 Q0 MARCO_39_808403241-3 61 89.387265 hybrid +148_2-5 Q0 MARCO_43_1680016746-9 62 89.386237 hybrid +148_2-5 Q0 MARCO_32_623514016-40 63 89.372807 hybrid +148_2-5 Q0 MARCO_04_368618282-1 64 89.361537 hybrid +148_2-5 Q0 MARCO_23_487958489-3 65 89.352637 hybrid +148_2-5 Q0 MARCO_13_1502773009-3 66 89.352087 hybrid +148_2-5 Q0 MARCO_13_24347013-4 67 89.336354 hybrid +148_2-5 Q0 MARCO_29_1691007758-10 68 89.332158 hybrid +148_2-5 Q0 MARCO_32_623459004-7 69 89.328351 hybrid +148_2-5 Q0 MARCO_36_379585173-9 70 89.325024 hybrid +148_2-5 Q0 MARCO_04_1495644447-1 71 89.318537 hybrid +148_2-5 Q0 MARCO_35_982257495-11 72 89.316487 hybrid +148_2-5 Q0 MARCO_22_1641823232-9 73 89.313046 hybrid +148_2-5 Q0 MARCO_46_702650276-43 74 89.305387 hybrid +148_2-5 Q0 MARCO_44_1563207408-2 75 89.304127 hybrid +148_2-5 Q0 MARCO_13_1153898834-6 76 89.298847 hybrid +148_2-5 Q0 MARCO_59_994614779-6 77 89.295037 hybrid +148_2-5 Q0 MARCO_00_761177399-19 78 89.294237 hybrid +148_2-5 Q0 MARCO_51_155164219-3 79 89.287037 hybrid +148_2-5 Q0 MARCO_29_1689703723-8 80 89.279469 hybrid +148_2-5 Q0 MARCO_12_762757949-8 81 89.268237 hybrid +148_2-5 Q0 MARCO_54_358360113-2 82 89.266301 hybrid +148_2-5 Q0 MARCO_42_1457344699-8 83 89.262387 hybrid +148_2-5 Q0 MARCO_19_2631048543-13 84 89.260731 hybrid +148_2-5 Q0 MARCO_53_461721209-1 85 89.259287 hybrid +148_2-5 Q0 MARCO_35_983508712-2 86 89.258488 hybrid +148_2-5 Q0 MARCO_29_1689675997-13 87 89.257267 hybrid +148_2-5 Q0 MARCO_29_1690657337-14 88 89.255154 hybrid +148_2-5 Q0 MARCO_29_1689675997-20 89 89.254307 hybrid +148_2-5 Q0 MARCO_59_535716852-4 90 89.253056 hybrid +148_2-5 Q0 MARCO_50_2384555865-18 91 89.245411 hybrid +148_2-5 Q0 MARCO_44_1419429159-2 92 89.243237 hybrid +148_2-5 Q0 MARCO_55_1345847584-3 93 89.242901 hybrid +148_2-5 Q0 MARCO_29_1351946911-1 94 89.238037 hybrid +148_2-5 Q0 MARCO_50_1528479049-11 95 89.237721 hybrid +148_2-5 Q0 MARCO_40_823069616-6 96 89.226338 hybrid +148_2-5 Q0 MARCO_12_1728147392-2 97 89.222523 hybrid +148_2-5 Q0 MARCO_29_594604563-1 98 89.222447 hybrid +148_2-5 Q0 MARCO_00_723696053-1 99 89.221463 hybrid +148_2-5 Q0 MARCO_13_1162383124-11 100 89.216717 hybrid +149_1-1 Q0 MARCO_50_2268879788-13 1 87.840934 hybrid +149_1-1 Q0 MARCO_19_2056728389-2 2 87.816438 hybrid +149_1-1 Q0 KILT_25606638-7 3 87.524084 hybrid +149_1-1 Q0 MARCO_18_2680083328-16 4 87.506984 hybrid +149_1-1 Q0 MARCO_50_796224832-20 5 87.500834 hybrid +149_1-1 Q0 KILT_4059023-13 6 87.458034 hybrid +149_1-1 Q0 MARCO_50_2268879788-14 7 87.379434 hybrid +149_1-1 Q0 MARCO_14_257204425-1 8 87.340484 hybrid +149_1-1 Q0 MARCO_53_1448548338-2 9 87.291184 hybrid +149_1-1 Q0 MARCO_19_739382593-3 10 87.279484 hybrid +149_1-1 Q0 MARCO_53_495578912-1 11 87.273134 hybrid +149_1-1 Q0 MARCO_14_257204425-4 12 87.241484 hybrid +149_1-1 Q0 MARCO_53_495549415-1 13 87.236034 hybrid +149_1-1 Q0 MARCO_50_1789079732-12 14 87.186234 hybrid +149_1-1 Q0 MARCO_50_2268879788-1 15 87.177934 hybrid +149_1-1 Q0 MARCO_50_796224832-21 16 87.176434 hybrid +149_1-1 Q0 MARCO_48_119371286-2 17 87.040584 hybrid +149_1-1 Q0 MARCO_50_2506569724-109 18 87.035675 hybrid +149_1-1 Q0 MARCO_16_1884092099-1 19 87.009634 hybrid +149_1-1 Q0 MARCO_11_91688302-1 20 86.976684 hybrid +149_1-1 Q0 MARCO_39_758110571-4 21 86.949234 hybrid +149_1-1 Q0 MARCO_50_796224832-22 22 86.935934 hybrid +149_1-1 Q0 MARCO_50_1781293610-9 23 86.928984 hybrid +149_1-1 Q0 KILT_60912658-6 24 86.875384 hybrid +149_1-1 Q0 MARCO_41_1834051265-1 25 86.841334 hybrid +149_1-1 Q0 MARCO_37_685404558-6 26 86.838684 hybrid +149_1-1 Q0 MARCO_41_1834051265-6 27 86.830834 hybrid +149_1-1 Q0 MARCO_54_2019229665-3 28 86.791484 hybrid +149_1-1 Q0 MARCO_27_1674081299-4 29 86.791184 hybrid +149_1-1 Q0 MARCO_50_2268879788-8 30 86.788984 hybrid +149_1-1 Q0 MARCO_19_739382593-4 31 86.788334 hybrid +149_1-1 Q0 MARCO_12_586645920-12 32 86.779875 hybrid +149_1-1 Q0 MARCO_50_2268879788-21 33 86.779134 hybrid +149_1-1 Q0 MARCO_50_1876380199-7 34 86.760334 hybrid +149_1-1 Q0 MARCO_54_2019229665-5 35 86.760334 hybrid +149_1-1 Q0 MARCO_29_953215470-1 36 86.736484 hybrid +149_1-1 Q0 MARCO_52_258700460-1 37 86.725284 hybrid +149_1-1 Q0 MARCO_16_379446895-11 38 86.724384 hybrid +149_1-1 Q0 MARCO_50_796224832-19 39 86.712284 hybrid +149_1-1 Q0 MARCO_29_517941810-4 40 86.710484 hybrid +149_1-1 Q0 MARCO_14_257204425-5 41 86.706784 hybrid +149_1-1 Q0 MARCO_50_1579886183-1 42 86.702934 hybrid +149_1-1 Q0 MARCO_50_1876380199-21 43 86.668784 hybrid +149_1-1 Q0 MARCO_28_351207684-1 44 86.666384 hybrid +149_1-1 Q0 MARCO_23_1546529510-1 45 86.658184 hybrid +149_1-1 Q0 MARCO_50_887569727-21 46 86.648534 hybrid +149_1-1 Q0 MARCO_14_1507239773-1 47 86.641934 hybrid +149_1-1 Q0 MARCO_16_5552086-1 48 86.641934 hybrid +149_1-1 Q0 MARCO_50_1781293610-1 49 86.641434 hybrid +149_1-1 Q0 MARCO_32_1102217822-5 50 86.634784 hybrid +149_1-1 Q0 MARCO_55_280879879-4 51 86.622384 hybrid +149_1-1 Q0 MARCO_16_2695108729-3 52 86.612134 hybrid +149_1-1 Q0 MARCO_50_2268879788-2 53 86.604284 hybrid +149_1-1 Q0 MARCO_48_119371286-1 54 86.596784 hybrid +149_1-1 Q0 MARCO_17_1590052482-33 55 86.587834 hybrid +149_1-1 Q0 MARCO_19_731655567-9 56 86.579534 hybrid +149_1-1 Q0 MARCO_19_2056728389-1 57 86.569520 hybrid +149_1-1 Q0 KILT_2117890-3 58 86.567484 hybrid +149_1-1 Q0 MARCO_00_1125943866-4 59 86.552784 hybrid +149_1-1 Q0 MARCO_50_2268879788-22 60 86.552184 hybrid +149_1-1 Q0 MARCO_18_42421250-8 61 86.550034 hybrid +149_1-1 Q0 MARCO_50_887569727-20 62 86.522934 hybrid +149_1-1 Q0 MARCO_50_1282039167-14 63 86.521034 hybrid +149_1-1 Q0 MARCO_16_1884092099-7 64 86.517684 hybrid +149_1-1 Q0 MARCO_31_217727076-2 65 86.517684 hybrid +149_1-1 Q0 MARCO_52_258700460-4 66 86.497534 hybrid +149_1-1 Q0 MARCO_50_2498479427-2 67 86.495456 hybrid +149_1-1 Q0 MARCO_09_383239358-27 68 86.493434 hybrid +149_1-1 Q0 MARCO_42_1058213907-2 69 86.487984 hybrid +149_1-1 Q0 MARCO_16_1883837804-20 70 86.485734 hybrid +149_1-1 Q0 MARCO_23_141388715-3 71 86.476484 hybrid +149_1-1 Q0 MARCO_50_2268879788-31 72 86.476484 hybrid +149_1-1 Q0 MARCO_24_407549356-3 73 86.471634 hybrid +149_1-1 Q0 MARCO_30_1637653303-5 74 86.470934 hybrid +149_1-1 Q0 MARCO_41_521733446-3 75 86.463534 hybrid +149_1-1 Q0 MARCO_19_739382593-7 76 86.461534 hybrid +149_1-1 Q0 KILT_56463048-1 77 86.458534 hybrid +149_1-1 Q0 MARCO_09_229877739-1 78 86.452384 hybrid +149_1-1 Q0 MARCO_15_341533485-8 79 86.444084 hybrid +149_1-1 Q0 MARCO_17_831833609-1 80 86.439434 hybrid +149_1-1 Q0 MARCO_53_1373867727-1 81 86.439434 hybrid +149_1-1 Q0 MARCO_50_2268879788-9 82 86.439383 hybrid +149_1-1 Q0 MARCO_52_258700460-2 83 86.435734 hybrid +149_1-1 Q0 MARCO_29_266124390-1 84 86.434855 hybrid +149_1-1 Q0 MARCO_50_1876380199-18 85 86.422834 hybrid +149_1-1 Q0 MARCO_52_952717852-13 86 86.398284 hybrid +149_1-1 Q0 MARCO_50_1399796977-10 87 86.373399 hybrid +149_1-1 Q0 KILT_60912658-7 88 86.353184 hybrid +149_1-1 Q0 MARCO_46_579292980-28 89 86.350084 hybrid +149_1-1 Q0 MARCO_14_257274681-2 90 86.350034 hybrid +149_1-1 Q0 MARCO_14_257204425-7 91 86.348834 hybrid +149_1-1 Q0 MARCO_40_1240654691-21 92 86.347434 hybrid +149_1-1 Q0 KILT_1934622-2 93 86.336284 hybrid +149_1-1 Q0 MARCO_50_930260817-8 94 86.323085 hybrid +149_1-1 Q0 MARCO_52_45879039-10 95 86.319184 hybrid +149_1-1 Q0 MARCO_53_1365652193-2 96 86.317434 hybrid +149_1-1 Q0 MARCO_50_1876380199-12 97 86.312484 hybrid +149_1-1 Q0 MARCO_23_244585903-1 98 86.297610 hybrid +149_1-1 Q0 MARCO_34_1658348456-2 99 86.295934 hybrid +149_1-1 Q0 MARCO_18_1849918782-2 100 86.295384 hybrid +149_1-3 Q0 MARCO_50_2506569724-109 1 88.805094 hybrid +149_1-3 Q0 MARCO_14_257204425-1 2 88.425569 hybrid +149_1-3 Q0 MARCO_19_2056728389-2 3 88.271427 hybrid +149_1-3 Q0 MARCO_50_1789079732-12 4 88.243019 hybrid +149_1-3 Q0 MARCO_53_1448548338-2 5 88.233819 hybrid +149_1-3 Q0 MARCO_19_739382593-3 6 88.131369 hybrid +149_1-3 Q0 MARCO_50_2268879788-8 7 88.052469 hybrid +149_1-3 Q0 MARCO_50_2268879788-13 8 88.038419 hybrid +149_1-3 Q0 KILT_25606638-7 9 88.033319 hybrid +149_1-3 Q0 MARCO_53_495549415-1 10 88.029819 hybrid +149_1-3 Q0 MARCO_50_796224832-21 11 87.974369 hybrid +149_1-3 Q0 MARCO_16_5552086-1 12 87.915119 hybrid +149_1-3 Q0 MARCO_14_257204425-4 13 87.906569 hybrid +149_1-3 Q0 MARCO_39_758110571-4 14 87.901268 hybrid +149_1-3 Q0 MARCO_18_2680083328-16 15 87.848119 hybrid +149_1-3 Q0 KILT_4059023-13 16 87.796769 hybrid +149_1-3 Q0 MARCO_50_2498479427-2 17 87.783928 hybrid +149_1-3 Q0 KILT_60912658-6 18 87.748319 hybrid +149_1-3 Q0 MARCO_50_2268879788-14 19 87.735118 hybrid +149_1-3 Q0 MARCO_48_119371286-2 20 87.714319 hybrid +149_1-3 Q0 MARCO_50_1781293610-9 21 87.680519 hybrid +149_1-3 Q0 MARCO_50_1579886183-1 22 87.676518 hybrid +149_1-3 Q0 MARCO_50_2268879788-9 23 87.674469 hybrid +149_1-3 Q0 MARCO_50_887569727-21 24 87.628718 hybrid +149_1-3 Q0 MARCO_53_495578912-1 25 87.623818 hybrid +149_1-3 Q0 MARCO_14_1507239773-1 26 87.577868 hybrid +149_1-3 Q0 MARCO_52_258700460-1 27 87.526669 hybrid +149_1-3 Q0 MARCO_50_1449276333-3 28 87.519319 hybrid +149_1-3 Q0 MARCO_50_1916589262-7 29 87.511919 hybrid +149_1-3 Q0 MARCO_41_1834051265-6 30 87.501869 hybrid +149_1-3 Q0 MARCO_50_2268879788-21 31 87.444269 hybrid +149_1-3 Q0 MARCO_50_887569727-20 32 87.437219 hybrid +149_1-3 Q0 MARCO_59_810794801-3 33 87.435469 hybrid +149_1-3 Q0 MARCO_23_141388715-3 34 87.428519 hybrid +149_1-3 Q0 MARCO_59_811553321-4 35 87.409519 hybrid +149_1-3 Q0 MARCO_19_1553740604-3 36 87.402719 hybrid +149_1-3 Q0 MARCO_50_796224832-20 37 87.397318 hybrid +149_1-3 Q0 MARCO_14_257204425-5 38 87.372219 hybrid +149_1-3 Q0 MARCO_48_119371286-1 39 87.356268 hybrid +149_1-3 Q0 KILT_59012195-9 40 87.317940 hybrid +149_1-3 Q0 MARCO_52_258700460-2 41 87.312768 hybrid +149_1-3 Q0 MARCO_50_796224832-22 42 87.301969 hybrid +149_1-3 Q0 MARCO_50_1399796977-10 43 87.285881 hybrid +149_1-3 Q0 MARCO_50_796224832-5 44 87.283019 hybrid +149_1-3 Q0 MARCO_41_521733446-3 45 87.282069 hybrid +149_1-3 Q0 MARCO_54_2019229665-3 46 87.272718 hybrid +149_1-3 Q0 MARCO_15_341533485-8 47 87.256469 hybrid +149_1-3 Q0 MARCO_50_1876380199-21 48 87.247368 hybrid +149_1-3 Q0 MARCO_54_2019229665-5 49 87.235168 hybrid +149_1-3 Q0 MARCO_50_1781293610-1 50 87.212668 hybrid +149_1-3 Q0 MARCO_19_739382593-4 51 87.178218 hybrid +149_1-3 Q0 MARCO_31_217727076-2 52 87.174368 hybrid +149_1-3 Q0 MARCO_16_27789798-1 53 87.168219 hybrid +149_1-3 Q0 MARCO_50_2268879788-31 54 87.147519 hybrid +149_1-3 Q0 KILT_56463048-1 55 87.141119 hybrid +149_1-3 Q0 MARCO_50_1835150300-1 56 87.127919 hybrid +149_1-3 Q0 MARCO_27_904423267-2 57 87.125369 hybrid +149_1-3 Q0 MARCO_07_937700298-4 58 87.117719 hybrid +149_1-3 Q0 MARCO_50_2268879788-20 59 87.112519 hybrid +149_1-3 Q0 MARCO_50_1876380199-9 60 87.107519 hybrid +149_1-3 Q0 MARCO_14_257204425-7 61 87.104769 hybrid +149_1-3 Q0 MARCO_24_407549356-3 62 87.104019 hybrid +149_1-3 Q0 MARCO_46_387713679-4 63 87.103531 hybrid +149_1-3 Q0 MARCO_51_1731582398-6 64 87.093544 hybrid +149_1-3 Q0 MARCO_24_420277293-4 65 87.081119 hybrid +149_1-3 Q0 MARCO_16_379446895-11 66 87.080069 hybrid +149_1-3 Q0 MARCO_11_775612189-5 67 87.075768 hybrid +149_1-3 Q0 MARCO_50_2268879788-1 68 87.074419 hybrid +149_1-3 Q0 MARCO_29_517941810-4 69 87.071269 hybrid +149_1-3 Q0 MARCO_47_672091238-29 70 87.068519 hybrid +149_1-3 Q0 KILT_665789-6 71 87.053040 hybrid +149_1-3 Q0 MARCO_41_1834051265-1 72 87.045568 hybrid +149_1-3 Q0 MARCO_46_378699270-12 73 87.041245 hybrid +149_1-3 Q0 MARCO_13_341312255-5 74 87.034668 hybrid +149_1-3 Q0 MARCO_58_344126604-20 75 87.027668 hybrid +149_1-3 Q0 MARCO_50_796224832-31 76 87.026568 hybrid +149_1-3 Q0 MARCO_50_1781293610-8 77 87.024818 hybrid +149_1-3 Q0 MARCO_29_266124390-1 78 87.023270 hybrid +149_1-3 Q0 MARCO_50_2497747935-1 79 87.020485 hybrid +149_1-3 Q0 MARCO_50_930260817-8 80 87.017479 hybrid +149_1-3 Q0 MARCO_23_1546529510-1 81 87.013868 hybrid +149_1-3 Q0 MARCO_53_1514777650-1 82 87.007271 hybrid +149_1-3 Q0 MARCO_50_2503058169-35 83 87.001198 hybrid +149_1-3 Q0 MARCO_16_1884092099-7 84 86.998919 hybrid +149_1-3 Q0 MARCO_19_2056728389-1 85 86.989433 hybrid +149_1-3 Q0 MARCO_55_280879879-4 86 86.988419 hybrid +149_1-3 Q0 MARCO_21_146199531-2 87 86.987519 hybrid +149_1-3 Q0 MARCO_46_378633695-9 88 86.985970 hybrid +149_1-3 Q0 MARCO_13_542473359-8 89 86.984215 hybrid +149_1-3 Q0 MARCO_16_27789798-24 90 86.974419 hybrid +149_1-3 Q0 MARCO_53_1417280823-1 91 86.969628 hybrid +149_1-3 Q0 MARCO_12_1246869217-12 92 86.959468 hybrid +149_1-3 Q0 KILT_5376868-7 93 86.956018 hybrid +149_1-3 Q0 MARCO_23_689435777-4 94 86.954968 hybrid +149_1-3 Q0 MARCO_51_562011635-25 95 86.954119 hybrid +149_1-3 Q0 MARCO_19_1693359708-3 96 86.950219 hybrid +149_1-3 Q0 MARCO_50_1499672928-13 97 86.943668 hybrid +149_1-3 Q0 MARCO_43_713571227-2 98 86.934617 hybrid +149_1-3 Q0 MARCO_43_747917301-4 99 86.930039 hybrid +149_1-3 Q0 MARCO_17_1589523020-7 100 86.929419 hybrid +149_1-5 Q0 MARCO_14_1324408663-7 1 94.685882 hybrid +149_1-5 Q0 MARCO_26_1124922906-2 2 94.468081 hybrid +149_1-5 Q0 MARCO_21_1385040724-17 3 94.319781 hybrid +149_1-5 Q0 MARCO_24_436535769-54 4 94.234732 hybrid +149_1-5 Q0 MARCO_46_454253917-79 5 94.234731 hybrid +149_1-5 Q0 MARCO_18_1295495503-13 6 94.207732 hybrid +149_1-5 Q0 MARCO_01_1446070844-117 7 94.172882 hybrid +149_1-5 Q0 KILT_75469-13 8 94.160232 hybrid +149_1-5 Q0 MARCO_13_577643923-2 9 94.090482 hybrid +149_1-5 Q0 MARCO_50_2170752409-5 10 94.084231 hybrid +149_1-5 Q0 MARCO_22_825900840-7 11 94.066832 hybrid +149_1-5 Q0 KILT_486842-1 12 94.061882 hybrid +149_1-5 Q0 MARCO_50_1784118219-36 13 94.049932 hybrid +149_1-5 Q0 MARCO_16_789022350-2 14 93.973082 hybrid +149_1-5 Q0 MARCO_03_283029107-6 15 93.925132 hybrid +149_1-5 Q0 MARCO_35_553828989-4 16 93.784532 hybrid +149_1-5 Q0 MARCO_50_1457425192-1 17 93.777582 hybrid +149_1-5 Q0 MARCO_27_10228444-1 18 93.743731 hybrid +149_1-5 Q0 MARCO_12_475795995-1 19 93.740131 hybrid +149_1-5 Q0 MARCO_26_884150944-2 20 93.728831 hybrid +149_1-5 Q0 MARCO_02_835152930-7 21 93.697882 hybrid +149_1-5 Q0 MARCO_50_1467974407-16 22 93.651532 hybrid +149_1-5 Q0 MARCO_07_910684566-12 23 93.584532 hybrid +149_1-5 Q0 MARCO_41_1450100997-93 24 93.554132 hybrid +149_1-5 Q0 MARCO_46_855191999-2 25 93.516232 hybrid +149_1-5 Q0 KILT_52522301-2 26 93.506827 hybrid +149_1-5 Q0 MARCO_59_267991679-3 27 93.455232 hybrid +149_1-5 Q0 MARCO_16_1884092099-7 28 93.450782 hybrid +149_1-5 Q0 MARCO_50_1552139554-52 29 93.408981 hybrid +149_1-5 Q0 MARCO_36_1232360626-2 30 93.407331 hybrid +149_1-5 Q0 MARCO_51_728854461-3 31 93.406382 hybrid +149_1-5 Q0 MARCO_47_358606916-9 32 93.385781 hybrid +149_1-5 Q0 MARCO_38_1453513769-4 33 93.385682 hybrid +149_1-5 Q0 MARCO_28_293422367-1 34 93.382381 hybrid +149_1-5 Q0 MARCO_50_1760278495-37 35 93.381632 hybrid +149_1-5 Q0 MARCO_27_23226404-5 36 93.372782 hybrid +149_1-5 Q0 MARCO_44_1964465105-16 37 93.367282 hybrid +149_1-5 Q0 MARCO_19_1479007642-12 38 93.354932 hybrid +149_1-5 Q0 MARCO_04_661251323-5 39 93.300232 hybrid +149_1-5 Q0 MARCO_41_1032909409-37 40 93.298132 hybrid +149_1-5 Q0 MARCO_05_1286221069-2 41 93.288232 hybrid +149_1-5 Q0 MARCO_39_697502375-10 42 93.276381 hybrid +149_1-5 Q0 MARCO_28_293422367-2 43 93.271682 hybrid +149_1-5 Q0 MARCO_50_1776617987-3 44 93.244282 hybrid +149_1-5 Q0 MARCO_19_1560652565-3 45 93.240232 hybrid +149_1-5 Q0 KILT_40786-1 46 93.216732 hybrid +149_1-5 Q0 MARCO_14_1609649799-2 47 93.205932 hybrid +149_1-5 Q0 MARCO_50_1465157992-23 48 93.204681 hybrid +149_1-5 Q0 MARCO_52_1381578077-1 49 93.203981 hybrid +149_1-5 Q0 MARCO_33_609135774-2 50 93.202432 hybrid +149_1-5 Q0 MARCO_56_189278371-83 51 93.186982 hybrid +149_1-5 Q0 MARCO_54_1849887059-1 52 93.147832 hybrid +149_1-5 Q0 MARCO_50_1811232422-5 53 93.137432 hybrid +149_1-5 Q0 MARCO_49_1655856862-19 54 93.107032 hybrid +149_1-5 Q0 MARCO_50_1552139554-55 55 93.085932 hybrid +149_1-5 Q0 MARCO_50_1459198655-37 56 93.068022 hybrid +149_1-5 Q0 MARCO_45_902892436-4 57 93.063782 hybrid +149_1-5 Q0 MARCO_22_782533582-1 58 93.062531 hybrid +149_1-5 Q0 MARCO_41_1576803203-2 59 93.059682 hybrid +149_1-5 Q0 MARCO_17_2427591020-35 60 93.052332 hybrid +149_1-5 Q0 MARCO_41_1328904068-50 61 93.044982 hybrid +149_1-5 Q0 MARCO_52_1097406000-83 62 93.013632 hybrid +149_1-5 Q0 MARCO_26_1765983551-4 63 92.998382 hybrid +149_1-5 Q0 KILT_7730261-12 64 92.990682 hybrid +149_1-5 Q0 MARCO_02_452442400-11 65 92.971732 hybrid +149_1-5 Q0 MARCO_14_257204425-3 66 92.947882 hybrid +149_1-5 Q0 MARCO_55_543896772-3 67 92.947482 hybrid +149_1-5 Q0 MARCO_14_1518866517-1 68 92.935482 hybrid +149_1-5 Q0 KILT_15179951-25 69 92.934432 hybrid +149_1-5 Q0 MARCO_17_2427591020-15 70 92.933182 hybrid +149_1-5 Q0 MARCO_24_1236420321-4 71 92.922932 hybrid +149_1-5 Q0 MARCO_45_244258907-9 72 92.879231 hybrid +149_1-5 Q0 MARCO_50_95890828-4 73 92.878282 hybrid +149_1-5 Q0 MARCO_46_454253917-13 74 92.872332 hybrid +149_1-5 Q0 MARCO_50_1457425192-2 75 92.862882 hybrid +149_1-5 Q0 MARCO_50_1467974407-17 76 92.862881 hybrid +149_1-5 Q0 MARCO_27_1264306551-125 77 92.861181 hybrid +149_1-5 Q0 MARCO_45_1106143025-4 78 92.860982 hybrid +149_1-5 Q0 MARCO_11_72516011-3 79 92.827581 hybrid +149_1-5 Q0 MARCO_26_1718206077-3 80 92.825481 hybrid +149_1-5 Q0 MARCO_24_436535769-10 81 92.800431 hybrid +149_1-5 Q0 KILT_75469-15 82 92.799782 hybrid +149_1-5 Q0 MARCO_22_825900840-41 83 92.798982 hybrid +149_1-5 Q0 MARCO_36_608754203-14 84 92.778282 hybrid +149_1-5 Q0 MARCO_50_1528546939-7 85 92.772532 hybrid +149_1-5 Q0 MARCO_24_1236426613-36 86 92.765632 hybrid +149_1-5 Q0 MARCO_50_1846519635-1 87 92.745982 hybrid +149_1-5 Q0 MARCO_54_248338979-6 88 92.741332 hybrid +149_1-5 Q0 MARCO_09_475976063-2 89 92.732982 hybrid +149_1-5 Q0 MARCO_46_454253917-35 90 92.729032 hybrid +149_1-5 Q0 MARCO_14_1192325914-4 91 92.724031 hybrid +149_1-5 Q0 MARCO_50_2478023004-16 92 92.719481 hybrid +149_1-5 Q0 MARCO_23_1709422974-7 93 92.713632 hybrid +149_1-5 Q0 MARCO_27_1314080225-39 94 92.708881 hybrid +149_1-5 Q0 KILT_60912658-4 95 92.708682 hybrid +149_1-5 Q0 MARCO_56_189439749-1 96 92.704832 hybrid +149_1-5 Q0 MARCO_19_1479007642-4 97 92.704482 hybrid +149_1-5 Q0 MARCO_09_766543284-1 98 92.689082 hybrid +149_1-5 Q0 KILT_11054-6 99 92.684782 hybrid +149_1-5 Q0 KILT_1886914-2 100 92.681632 hybrid +149_2-1 Q0 MARCO_56_189439749-1 1 90.272740 hybrid +149_2-1 Q0 MARCO_16_1884092099-7 2 90.178090 hybrid +149_2-1 Q0 MARCO_56_189278371-83 3 89.985690 hybrid +149_2-1 Q0 MARCO_46_540480160-2 4 89.688391 hybrid +149_2-1 Q0 KILT_28452110-1 5 89.666341 hybrid +149_2-1 Q0 MARCO_14_1324408663-7 6 89.648391 hybrid +149_2-1 Q0 MARCO_35_553828989-4 7 89.568790 hybrid +149_2-1 Q0 KILT_40786-1 8 89.555140 hybrid +149_2-1 Q0 MARCO_14_1518866517-1 9 89.506391 hybrid +149_2-1 Q0 MARCO_33_609135774-2 10 89.476940 hybrid +149_2-1 Q0 MARCO_24_436535769-54 11 89.446691 hybrid +149_2-1 Q0 MARCO_46_454253917-79 12 89.446690 hybrid +149_2-1 Q0 MARCO_16_3877084168-22 13 89.444890 hybrid +149_2-1 Q0 MARCO_22_825900840-7 14 89.327190 hybrid +149_2-1 Q0 MARCO_48_601755679-5 15 89.249890 hybrid +149_2-1 Q0 MARCO_26_884150944-2 16 89.240741 hybrid +149_2-1 Q0 MARCO_17_2427591020-35 17 89.206591 hybrid +149_2-1 Q0 MARCO_50_1784118219-36 18 89.189890 hybrid +149_2-1 Q0 MARCO_50_1459198655-37 19 89.164381 hybrid +149_2-1 Q0 KILT_1886914-2 20 89.158791 hybrid +149_2-1 Q0 MARCO_17_2567781546-11 21 89.123390 hybrid +149_2-1 Q0 MARCO_26_1124922906-2 22 89.107590 hybrid +149_2-1 Q0 MARCO_22_1705357382-3 23 89.105990 hybrid +149_2-1 Q0 KILT_15179951-25 24 89.091490 hybrid +149_2-1 Q0 MARCO_41_1328904068-50 25 89.013940 hybrid +149_2-1 Q0 MARCO_50_1499672928-13 26 89.013840 hybrid +149_2-1 Q0 MARCO_51_728854461-3 27 89.012990 hybrid +149_2-1 Q0 MARCO_13_542473359-8 28 88.992533 hybrid +149_2-1 Q0 KILT_222839-22 29 88.975340 hybrid +149_2-1 Q0 MARCO_54_2026277907-2 30 88.965940 hybrid +149_2-1 Q0 MARCO_28_438623662-5 31 88.945840 hybrid +149_2-1 Q0 MARCO_27_707758493-3 32 88.944191 hybrid +149_2-1 Q0 MARCO_18_1873917194-16 33 88.896340 hybrid +149_2-1 Q0 MARCO_18_2139383250-22 34 88.888391 hybrid +149_2-1 Q0 MARCO_30_399657783-7 35 88.885140 hybrid +149_2-1 Q0 MARCO_17_3210677273-82 36 88.831390 hybrid +149_2-1 Q0 KILT_59012195-9 37 88.807581 hybrid +149_2-1 Q0 MARCO_28_293422367-1 38 88.721090 hybrid +149_2-1 Q0 MARCO_16_3811249059-1 39 88.708090 hybrid +149_2-1 Q0 MARCO_50_1811232422-5 40 88.706591 hybrid +149_2-1 Q0 MARCO_24_1909947062-23 41 88.703441 hybrid +149_2-1 Q0 MARCO_02_452442400-11 42 88.698791 hybrid +149_2-1 Q0 MARCO_26_125927043-45 43 88.676590 hybrid +149_2-1 Q0 MARCO_12_1214668905-6 44 88.671940 hybrid +149_2-1 Q0 MARCO_08_871949691-1 45 88.668591 hybrid +149_2-1 Q0 KILT_25606638-7 46 88.663840 hybrid +149_2-1 Q0 MARCO_07_870036977-21 47 88.662691 hybrid +149_2-1 Q0 MARCO_51_1731582398-2 48 88.650691 hybrid +149_2-1 Q0 MARCO_30_1631001772-5 49 88.635090 hybrid +149_2-1 Q0 MARCO_22_782533582-1 50 88.633040 hybrid +149_2-1 Q0 KILT_14684661-2 51 88.630790 hybrid +149_2-1 Q0 MARCO_16_2048344420-19 52 88.614390 hybrid +149_2-1 Q0 KILT_25346749-16 53 88.602740 hybrid +149_2-1 Q0 MARCO_18_1611565766-56 54 88.598091 hybrid +149_2-1 Q0 MARCO_23_195349687-3 55 88.594090 hybrid +149_2-1 Q0 MARCO_14_257204425-5 56 88.577440 hybrid +149_2-1 Q0 MARCO_27_583264304-4 57 88.576014 hybrid +149_2-1 Q0 MARCO_18_589879625-7 58 88.570590 hybrid +149_2-1 Q0 MARCO_31_1564796326-79 59 88.563021 hybrid +149_2-1 Q0 MARCO_09_383239358-27 60 88.560390 hybrid +149_2-1 Q0 MARCO_25_275710040-1 61 88.548790 hybrid +149_2-1 Q0 MARCO_16_1883837804-1 62 88.536641 hybrid +149_2-1 Q0 MARCO_50_2506569724-109 63 88.534464 hybrid +149_2-1 Q0 MARCO_14_1501631004-4 64 88.530090 hybrid +149_2-1 Q0 MARCO_17_2537176014-19 65 88.529790 hybrid +149_2-1 Q0 MARCO_18_3011212459-7 66 88.529790 hybrid +149_2-1 Q0 MARCO_18_394256677-31 67 88.529789 hybrid +149_2-1 Q0 MARCO_50_2361108108-64 68 88.528090 hybrid +149_2-1 Q0 MARCO_13_542473359-5 69 88.527308 hybrid +149_2-1 Q0 MARCO_27_96874174-3 70 88.524291 hybrid +149_2-1 Q0 MARCO_17_3522587810-140 71 88.522090 hybrid +149_2-1 Q0 MARCO_01_594254822-1 72 88.516340 hybrid +149_2-1 Q0 MARCO_36_608754203-14 73 88.513741 hybrid +149_2-1 Q0 MARCO_50_1760278495-37 74 88.509840 hybrid +149_2-1 Q0 MARCO_55_543896772-3 75 88.507441 hybrid +149_2-1 Q0 MARCO_50_1776617987-3 76 88.504991 hybrid +149_2-1 Q0 MARCO_41_2075074561-3 77 88.491793 hybrid +149_2-1 Q0 MARCO_50_2498479427-2 78 88.482676 hybrid +149_2-1 Q0 MARCO_50_1465157992-23 79 88.479741 hybrid +149_2-1 Q0 MARCO_50_930260817-8 80 88.467539 hybrid +149_2-1 Q0 KILT_37440011-37 81 88.464740 hybrid +149_2-1 Q0 MARCO_52_1144563151-2 82 88.462790 hybrid +149_2-1 Q0 MARCO_41_1032909409-37 83 88.457340 hybrid +149_2-1 Q0 MARCO_46_731023295-6 84 88.455841 hybrid +149_2-1 Q0 MARCO_50_930260817-23 85 88.455287 hybrid +149_2-1 Q0 MARCO_19_1560652565-3 86 88.447690 hybrid +149_2-1 Q0 MARCO_49_634332028-1 87 88.443290 hybrid +149_2-1 Q0 MARCO_18_261416683-26 88 88.442441 hybrid +149_2-1 Q0 MARCO_50_2497807304-18 89 88.442248 hybrid +149_2-1 Q0 MARCO_19_876690979-36 90 88.436191 hybrid +149_2-1 Q0 MARCO_50_1552139554-55 91 88.434940 hybrid +149_2-1 Q0 MARCO_50_522692081-25 92 88.423495 hybrid +149_2-1 Q0 MARCO_01_1747424502-65 93 88.422290 hybrid +149_2-1 Q0 MARCO_15_1984988784-16 94 88.415290 hybrid +149_2-1 Q0 MARCO_02_1130127393-3 95 88.413190 hybrid +149_2-1 Q0 MARCO_18_1977897218-2 96 88.406691 hybrid +149_2-1 Q0 MARCO_13_577643923-2 97 88.404640 hybrid +149_2-1 Q0 MARCO_50_796224832-20 98 88.404390 hybrid +149_2-1 Q0 MARCO_20_1108553339-5 99 88.401042 hybrid +149_2-1 Q0 MARCO_33_178546655-126 100 88.399188 hybrid +149_2-3 Q0 MARCO_16_1884092099-2 1 95.235818 hybrid +149_2-3 Q0 MARCO_16_1884092099-1 2 91.499968 hybrid +149_2-3 Q0 KILT_56463048-1 3 91.361567 hybrid +149_2-3 Q0 MARCO_04_333901086-3 4 91.332168 hybrid +149_2-3 Q0 MARCO_13_262772542-10 5 91.034868 hybrid +149_2-3 Q0 MARCO_34_1682478814-7 6 90.927718 hybrid +149_2-3 Q0 MARCO_34_1683165184-6 7 90.927717 hybrid +149_2-3 Q0 MARCO_34_1682504260-6 8 90.927717 hybrid +149_2-3 Q0 MARCO_34_1684489396-8 9 90.927716 hybrid +149_2-3 Q0 MARCO_34_1685104156-8 10 90.927716 hybrid +149_2-3 Q0 MARCO_34_1682303994-7 11 90.807968 hybrid +149_2-3 Q0 MARCO_12_1214668905-5 12 90.794668 hybrid +149_2-3 Q0 KILT_57559533-3 13 90.781418 hybrid +149_2-3 Q0 MARCO_34_1684767503-5 14 90.711517 hybrid +149_2-3 Q0 MARCO_34_1684411854-5 15 90.560517 hybrid +149_2-3 Q0 MARCO_34_1682171026-8 16 90.541368 hybrid +149_2-3 Q0 MARCO_22_1195396790-1 17 90.522868 hybrid +149_2-3 Q0 MARCO_34_1681514603-9 18 90.504668 hybrid +149_2-3 Q0 MARCO_34_1682661220-6 19 90.504667 hybrid +149_2-3 Q0 MARCO_34_1683328715-9 20 90.504667 hybrid +149_2-3 Q0 MARCO_34_1684749903-8 21 90.504666 hybrid +149_2-3 Q0 MARCO_34_1683450110-7 22 90.504666 hybrid +149_2-3 Q0 MARCO_12_1246869217-10 23 90.470668 hybrid +149_2-3 Q0 MARCO_41_1779048611-6 24 90.467318 hybrid +149_2-3 Q0 MARCO_34_1682893166-3 25 90.341618 hybrid +149_2-3 Q0 MARCO_34_1685057566-5 26 90.341617 hybrid +149_2-3 Q0 MARCO_13_468455708-29 27 90.332067 hybrid +149_2-3 Q0 MARCO_30_222021655-18 28 90.227218 hybrid +149_2-3 Q0 MARCO_51_2234559626-28 29 90.224567 hybrid +149_2-3 Q0 MARCO_39_900606687-3 30 90.211118 hybrid +149_2-3 Q0 MARCO_23_684316854-31 31 90.155368 hybrid +149_2-3 Q0 MARCO_01_2081748520-2 32 90.121367 hybrid +149_2-3 Q0 MARCO_34_1681563519-6 33 90.080968 hybrid +149_2-3 Q0 MARCO_32_596666309-26 34 90.067331 hybrid +149_2-3 Q0 MARCO_17_2604139427-3 35 90.025067 hybrid +149_2-3 Q0 MARCO_31_790347143-2 36 89.953268 hybrid +149_2-3 Q0 MARCO_49_1212385936-1 37 89.923118 hybrid +149_2-3 Q0 MARCO_45_1193267770-5 38 89.899117 hybrid +149_2-3 Q0 MARCO_16_2118184555-11 39 89.858718 hybrid +149_2-3 Q0 MARCO_17_220210699-1 40 89.852717 hybrid +149_2-3 Q0 MARCO_49_430015578-20 41 89.845468 hybrid +149_2-3 Q0 MARCO_45_683395424-6 42 89.844068 hybrid +149_2-3 Q0 KILT_41964576-6 43 89.805918 hybrid +149_2-3 Q0 MARCO_00_589049335-87 44 89.787321 hybrid +149_2-3 Q0 MARCO_50_1344034635-28 45 89.754018 hybrid +149_2-3 Q0 MARCO_41_1784996672-1 46 89.740818 hybrid +149_2-3 Q0 MARCO_18_1402511538-1 47 89.729518 hybrid +149_2-3 Q0 MARCO_34_1684589642-11 48 89.701868 hybrid +149_2-3 Q0 MARCO_34_1684999560-8 49 89.699018 hybrid +149_2-3 Q0 MARCO_34_1683216584-8 50 89.676968 hybrid +149_2-3 Q0 MARCO_34_1683356482-4 51 89.676967 hybrid +149_2-3 Q0 MARCO_34_1684433822-8 52 89.676967 hybrid +149_2-3 Q0 MARCO_01_1222647381-1 53 89.668368 hybrid +149_2-3 Q0 MARCO_37_156834002-47 54 89.663718 hybrid +149_2-3 Q0 MARCO_54_1857124017-3 55 89.655352 hybrid +149_2-3 Q0 MARCO_14_1585073314-6 56 89.640768 hybrid +149_2-3 Q0 MARCO_30_1867981197-8 57 89.626918 hybrid +149_2-3 Q0 MARCO_50_637809973-9 58 89.622080 hybrid +149_2-3 Q0 MARCO_55_594729534-4 59 89.619418 hybrid +149_2-3 Q0 MARCO_18_2194982937-1 60 89.615818 hybrid +149_2-3 Q0 MARCO_16_1884092099-5 61 89.608218 hybrid +149_2-3 Q0 MARCO_16_2694881782-1 62 89.585018 hybrid +149_2-3 Q0 MARCO_55_219869364-15 63 89.579718 hybrid +149_2-3 Q0 MARCO_00_1301350500-8 64 89.577768 hybrid +149_2-3 Q0 MARCO_34_1680837859-10 65 89.557018 hybrid +149_2-3 Q0 MARCO_34_1681337090-7 66 89.557017 hybrid +149_2-3 Q0 MARCO_34_1681916592-6 67 89.557017 hybrid +149_2-3 Q0 MARCO_34_1682153035-9 68 89.557016 hybrid +149_2-3 Q0 MARCO_34_1683110563-8 69 89.557016 hybrid +149_2-3 Q0 MARCO_34_1684002954-7 70 89.557015 hybrid +149_2-3 Q0 MARCO_16_2116216888-2 71 89.555268 hybrid +149_2-3 Q0 MARCO_50_768872557-44 72 89.553918 hybrid +149_2-3 Q0 MARCO_16_3894483066-14 73 89.552268 hybrid +149_2-3 Q0 MARCO_09_1879732296-12 74 89.551718 hybrid +149_2-3 Q0 MARCO_24_415846148-3 75 89.546718 hybrid +149_2-3 Q0 MARCO_55_554556952-3 76 89.545868 hybrid +149_2-3 Q0 MARCO_18_2097882093-36 77 89.540268 hybrid +149_2-3 Q0 MARCO_44_809962679-1 78 89.534468 hybrid +149_2-3 Q0 MARCO_56_1038194738-8 79 89.525068 hybrid +149_2-3 Q0 MARCO_17_2604139427-4 80 89.522018 hybrid +149_2-3 Q0 MARCO_57_2348228679-16 81 89.513318 hybrid +149_2-3 Q0 MARCO_41_1282930520-16 82 89.513118 hybrid +149_2-3 Q0 KILT_11226235-5 83 89.512718 hybrid +149_2-3 Q0 MARCO_41_1469456035-41 84 89.503618 hybrid +149_2-3 Q0 MARCO_17_219955475-29 85 89.503318 hybrid +149_2-3 Q0 MARCO_37_156834002-14 86 89.474168 hybrid +149_2-3 Q0 MARCO_34_1682813825-20 87 89.470568 hybrid +149_2-3 Q0 MARCO_34_1683862591-13 88 89.470567 hybrid +149_2-3 Q0 MARCO_18_3371460971-1 89 89.449068 hybrid +149_2-3 Q0 MARCO_34_1680495963-26 90 89.446268 hybrid +149_2-3 Q0 MARCO_34_1680582570-7 91 89.446267 hybrid +149_2-3 Q0 MARCO_34_1681856008-4 92 89.446267 hybrid +149_2-3 Q0 MARCO_34_1682231675-9 93 89.446266 hybrid +149_2-3 Q0 MARCO_34_1682512091-8 94 89.446266 hybrid +149_2-3 Q0 MARCO_34_1683098564-4 95 89.446265 hybrid +149_2-3 Q0 MARCO_34_1683312688-6 96 89.446265 hybrid +149_2-3 Q0 MARCO_34_1683391963-7 97 89.446264 hybrid +149_2-3 Q0 MARCO_34_1685140942-7 98 89.446264 hybrid +149_2-3 Q0 MARCO_39_896071790-2 99 89.438918 hybrid +149_2-3 Q0 MARCO_18_1405081530-1 100 89.428618 hybrid +149_2-5 Q0 MARCO_53_1373867727-4 1 89.034909 hybrid +149_2-5 Q0 MARCO_24_571574-9 2 88.850724 hybrid +149_2-5 Q0 MARCO_30_1131722693-17 3 88.396031 hybrid +149_2-5 Q0 MARCO_27_583264304-5 4 88.143337 hybrid +149_2-5 Q0 MARCO_16_1884092099-2 5 87.948459 hybrid +149_2-5 Q0 MARCO_19_1611231381-29 6 87.936759 hybrid +149_2-5 Q0 MARCO_19_1611231381-31 7 87.936759 hybrid +149_2-5 Q0 MARCO_32_104275416-2 8 87.776659 hybrid +149_2-5 Q0 MARCO_40_1191575982-2 9 87.652609 hybrid +149_2-5 Q0 MARCO_35_67061241-11 10 87.648859 hybrid +149_2-5 Q0 MARCO_37_1649059650-12 11 87.629059 hybrid +149_2-5 Q0 MARCO_27_583264304-7 12 87.626729 hybrid +149_2-5 Q0 MARCO_27_583264304-3 13 87.609610 hybrid +149_2-5 Q0 KILT_56463048-1 14 87.590109 hybrid +149_2-5 Q0 MARCO_41_356353793-5 15 87.479359 hybrid +149_2-5 Q0 MARCO_35_67061241-4 16 87.471309 hybrid +149_2-5 Q0 MARCO_11_1132346939-4 17 87.463809 hybrid +149_2-5 Q0 MARCO_52_509401473-3 18 87.398259 hybrid +149_2-5 Q0 MARCO_40_1191575982-7 19 87.397713 hybrid +149_2-5 Q0 MARCO_31_310410627-5 20 87.361659 hybrid +149_2-5 Q0 MARCO_24_415846148-5 21 87.314259 hybrid +149_2-5 Q0 KILT_55817338-18 22 87.300759 hybrid +149_2-5 Q0 MARCO_40_1191575982-1 23 87.274768 hybrid +149_2-5 Q0 MARCO_45_900717827-10 24 87.273209 hybrid +149_2-5 Q0 MARCO_40_1216533571-4 25 87.244909 hybrid +149_2-5 Q0 MARCO_16_3772557373-7 26 87.204409 hybrid +149_2-5 Q0 MARCO_35_67061241-54 27 87.193859 hybrid +149_2-5 Q0 MARCO_50_1807360184-8 28 87.189359 hybrid +149_2-5 Q0 MARCO_45_900717827-9 29 87.188509 hybrid +149_2-5 Q0 KILT_40786-20 30 87.164709 hybrid +149_2-5 Q0 MARCO_50_2268879788-8 31 87.157409 hybrid +149_2-5 Q0 MARCO_52_1417961743-15 32 87.144109 hybrid +149_2-5 Q0 MARCO_54_2014547813-6 33 87.142709 hybrid +149_2-5 Q0 MARCO_13_461945084-2 34 87.138159 hybrid +149_2-5 Q0 KILT_233488-27 35 87.113559 hybrid +149_2-5 Q0 KILT_233488-30 36 87.094459 hybrid +149_2-5 Q0 MARCO_17_757985744-6 37 87.088459 hybrid +149_2-5 Q0 MARCO_37_1649059650-13 38 87.083959 hybrid +149_2-5 Q0 MARCO_21_381040827-2 39 87.063009 hybrid +149_2-5 Q0 MARCO_24_415846148-3 40 87.057109 hybrid +149_2-5 Q0 MARCO_24_415846148-7 41 87.057109 hybrid +149_2-5 Q0 KILT_172827-33 42 87.051559 hybrid +149_2-5 Q0 MARCO_34_1115159358-6 43 87.041959 hybrid +149_2-5 Q0 MARCO_35_67061241-37 44 87.012309 hybrid +149_2-5 Q0 MARCO_30_853577273-2 45 86.961209 hybrid +149_2-5 Q0 MARCO_11_1132346939-1 46 86.959809 hybrid +149_2-5 Q0 MARCO_24_411144558-3 47 86.947709 hybrid +149_2-5 Q0 MARCO_59_692705986-3 48 86.926759 hybrid +149_2-5 Q0 MARCO_27_583264304-2 49 86.919951 hybrid +149_2-5 Q0 KILT_13659583-7 50 86.919159 hybrid +149_2-5 Q0 MARCO_49_1146910026-22 51 86.918909 hybrid +149_2-5 Q0 MARCO_34_1115159358-1 52 86.905009 hybrid +149_2-5 Q0 MARCO_41_1834051265-1 53 86.892959 hybrid +149_2-5 Q0 MARCO_24_411144558-5 54 86.891659 hybrid +149_2-5 Q0 MARCO_13_67495081-6 55 86.886059 hybrid +149_2-5 Q0 KILT_251484-5 56 86.862159 hybrid +149_2-5 Q0 MARCO_53_1373867727-1 57 86.842709 hybrid +149_2-5 Q0 MARCO_28_1475759532-4 58 86.838209 hybrid +149_2-5 Q0 MARCO_22_1591611225-2 59 86.837209 hybrid +149_2-5 Q0 MARCO_34_1115159358-2 60 86.826109 hybrid +149_2-5 Q0 MARCO_29_1459233498-7 61 86.789159 hybrid +149_2-5 Q0 KILT_624839-2 62 86.787409 hybrid +149_2-5 Q0 MARCO_28_355079994-3 63 86.786659 hybrid +149_2-5 Q0 MARCO_41_1316706538-19 64 86.772109 hybrid +149_2-5 Q0 MARCO_32_104275416-1 65 86.771709 hybrid +149_2-5 Q0 MARCO_10_969054202-15 66 86.759787 hybrid +149_2-5 Q0 MARCO_49_729537287-7 67 86.759709 hybrid +149_2-5 Q0 MARCO_18_4142325179-21 68 86.712209 hybrid +149_2-5 Q0 MARCO_36_900874695-5 69 86.701586 hybrid +149_2-5 Q0 MARCO_50_1385990267-20 70 86.696959 hybrid +149_2-5 Q0 KILT_2112366-7 71 86.695609 hybrid +149_2-5 Q0 MARCO_40_1179347780-5 72 86.682809 hybrid +149_2-5 Q0 MARCO_00_1412172913-5 73 86.667309 hybrid +149_2-5 Q0 MARCO_40_1191575982-4 74 86.651441 hybrid +149_2-5 Q0 MARCO_01_227947145-8 75 86.648759 hybrid +149_2-5 Q0 MARCO_16_379446895-11 76 86.645759 hybrid +149_2-5 Q0 MARCO_17_2957562845-7 77 86.645194 hybrid +149_2-5 Q0 MARCO_25_1131743504-2 78 86.640309 hybrid +149_2-5 Q0 MARCO_45_761587911-3 79 86.629609 hybrid +149_2-5 Q0 MARCO_27_40314930-12 80 86.626609 hybrid +149_2-5 Q0 MARCO_14_257204425-4 81 86.622259 hybrid +149_2-5 Q0 MARCO_32_767729364-1 82 86.600949 hybrid +149_2-5 Q0 MARCO_26_1141532609-14 83 86.600259 hybrid +149_2-5 Q0 MARCO_39_808769298-1 84 86.598959 hybrid +149_2-5 Q0 MARCO_19_1576385229-3 85 86.596609 hybrid +149_2-5 Q0 MARCO_36_900874695-1 86 86.594456 hybrid +149_2-5 Q0 MARCO_16_1884092099-1 87 86.591759 hybrid +149_2-5 Q0 MARCO_40_1274658127-3 88 86.590539 hybrid +149_2-5 Q0 MARCO_35_67061241-12 89 86.590109 hybrid +149_2-5 Q0 MARCO_31_1026974819-3 90 86.584009 hybrid +149_2-5 Q0 MARCO_24_415846148-2 91 86.582009 hybrid +149_2-5 Q0 MARCO_50_887569727-13 92 86.581759 hybrid +149_2-5 Q0 MARCO_40_1191575982-8 93 86.563513 hybrid +149_2-5 Q0 MARCO_39_120937684-4 94 86.563359 hybrid +149_2-5 Q0 MARCO_37_666833347-3 95 86.561609 hybrid +149_2-5 Q0 MARCO_16_3117515279-4 96 86.557609 hybrid +149_2-5 Q0 MARCO_40_1191575982-6 97 86.550215 hybrid +149_2-5 Q0 MARCO_40_1179347780-4 98 86.543359 hybrid +149_2-5 Q0 MARCO_52_54754167-1 99 86.532959 hybrid +149_2-5 Q0 MARCO_00_884186760-76 100 86.530188 hybrid +149_2-7 Q0 MARCO_08_862157188-1 1 93.131435 hybrid +149_2-7 Q0 MARCO_46_387713679-2 2 92.458385 hybrid +149_2-7 Q0 MARCO_15_267741118-1 3 92.222200 hybrid +149_2-7 Q0 MARCO_13_655380145-2 4 91.821396 hybrid +149_2-7 Q0 MARCO_41_633308289-2 5 91.690786 hybrid +149_2-7 Q0 MARCO_11_775487494-1 6 91.454233 hybrid +149_2-7 Q0 MARCO_14_947909862-1 7 91.300133 hybrid +149_2-7 Q0 MARCO_51_260588399-7 8 91.261286 hybrid +149_2-7 Q0 MARCO_09_387689068-15 9 91.130648 hybrid +149_2-7 Q0 MARCO_15_267741118-2 10 91.069778 hybrid +149_2-7 Q0 MARCO_30_424201204-2 11 91.048985 hybrid +149_2-7 Q0 MARCO_22_994896697-2 12 91.048232 hybrid +149_2-7 Q0 MARCO_57_937969806-1 13 90.990786 hybrid +149_2-7 Q0 MARCO_12_865018792-5 14 90.989386 hybrid +149_2-7 Q0 MARCO_34_1105710245-4 15 90.958435 hybrid +149_2-7 Q0 MARCO_08_816090904-5 16 90.947680 hybrid +149_2-7 Q0 MARCO_24_1015620193-3 17 90.917927 hybrid +149_2-7 Q0 MARCO_27_1594764816-1 18 90.916586 hybrid +149_2-7 Q0 MARCO_18_2680197841-10 19 90.891685 hybrid +149_2-7 Q0 MARCO_50_1863173636-4 20 90.863235 hybrid +149_2-7 Q0 MARCO_11_775487494-3 21 90.839512 hybrid +149_2-7 Q0 MARCO_11_775487494-6 22 90.830816 hybrid +149_2-7 Q0 MARCO_45_1622976834-4 23 90.813186 hybrid +149_2-7 Q0 MARCO_42_1214883977-5 24 90.778035 hybrid +149_2-7 Q0 MARCO_30_591556917-2 25 90.776285 hybrid +149_2-7 Q0 MARCO_45_1453176728-1 26 90.729236 hybrid +149_2-7 Q0 MARCO_52_256786340-1 27 90.722635 hybrid +149_2-7 Q0 MARCO_14_948624727-1 28 90.716435 hybrid +149_2-7 Q0 MARCO_48_1884909095-34 29 90.649885 hybrid +149_2-7 Q0 MARCO_33_547176492-1 30 90.625786 hybrid +149_2-7 Q0 MARCO_48_1744425002-1 31 90.614145 hybrid +149_2-7 Q0 MARCO_14_948497031-5 32 90.567990 hybrid +149_2-7 Q0 MARCO_39_1520587445-7 33 90.533257 hybrid +149_2-7 Q0 MARCO_39_1520802711-6 34 90.533257 hybrid +149_2-7 Q0 MARCO_39_1521134860-6 35 90.533257 hybrid +149_2-7 Q0 MARCO_39_1521836617-6 36 90.533256 hybrid +149_2-7 Q0 MARCO_57_938384155-2 37 90.532486 hybrid +149_2-7 Q0 MARCO_31_424934706-2 38 90.499836 hybrid +149_2-7 Q0 MARCO_53_1413538815-1 39 90.490886 hybrid +149_2-7 Q0 MARCO_39_1519927722-6 40 90.477580 hybrid +149_2-7 Q0 MARCO_23_122543682-2 41 90.459736 hybrid +149_2-7 Q0 MARCO_24_571574-4 42 90.450109 hybrid +149_2-7 Q0 MARCO_51_261332805-9 43 90.441735 hybrid +149_2-7 Q0 MARCO_33_1616650488-3 44 90.400835 hybrid +149_2-7 Q0 MARCO_50_1451832179-23 45 90.396514 hybrid +149_2-7 Q0 MARCO_39_1520236225-7 46 90.396347 hybrid +149_2-7 Q0 MARCO_09_387689068-18 47 90.390644 hybrid +149_2-7 Q0 MARCO_52_442828871-2 48 90.384935 hybrid +149_2-7 Q0 MARCO_53_1516388441-3 49 90.363592 hybrid +149_2-7 Q0 MARCO_51_261259948-2 50 90.353086 hybrid +149_2-7 Q0 MARCO_34_1086915840-4 51 90.351536 hybrid +149_2-7 Q0 MARCO_24_1015620193-2 52 90.327425 hybrid +149_2-7 Q0 MARCO_00_541680406-1 53 90.325986 hybrid +149_2-7 Q0 MARCO_05_519638150-2 54 90.324624 hybrid +149_2-7 Q0 MARCO_52_386499294-5 55 90.272085 hybrid +149_2-7 Q0 MARCO_58_1441708925-1 56 90.253586 hybrid +149_2-7 Q0 MARCO_53_1413384179-1 57 90.240385 hybrid +149_2-7 Q0 MARCO_15_531575144-4 58 90.236335 hybrid +149_2-7 Q0 MARCO_39_1521761335-8 59 90.207936 hybrid +149_2-7 Q0 MARCO_39_1521984954-7 60 90.207936 hybrid +149_2-7 Q0 MARCO_39_1520950426-7 61 90.207936 hybrid +149_2-7 Q0 MARCO_39_1520624701-7 62 90.207936 hybrid +149_2-7 Q0 MARCO_24_1920876291-21 63 90.206885 hybrid +149_2-7 Q0 MARCO_41_355611566-25 64 90.202485 hybrid +149_2-7 Q0 MARCO_37_928008044-2 65 90.187936 hybrid +149_2-7 Q0 MARCO_42_1214883977-4 66 90.164486 hybrid +149_2-7 Q0 MARCO_23_186389307-3 67 90.159486 hybrid +149_2-7 Q0 MARCO_45_1623090797-4 68 90.134386 hybrid +149_2-7 Q0 MARCO_23_1561465938-2 69 90.127386 hybrid +149_2-7 Q0 MARCO_23_87306883-1 70 90.127135 hybrid +149_2-7 Q0 MARCO_39_1521419765-6 71 90.119245 hybrid +149_2-7 Q0 MARCO_39_1520198997-6 72 90.119245 hybrid +149_2-7 Q0 MARCO_28_11509435-22 73 90.103536 hybrid +149_2-7 Q0 MARCO_09_1839665831-13 74 90.074485 hybrid +149_2-7 Q0 MARCO_11_776719134-3 75 90.052675 hybrid +149_2-7 Q0 MARCO_51_261312422-4 76 90.041086 hybrid +149_2-7 Q0 MARCO_58_1441634175-3 77 90.039936 hybrid +149_2-7 Q0 MARCO_23_643774778-20 78 90.035036 hybrid +149_2-7 Q0 MARCO_52_441410899-7 79 90.028636 hybrid +149_2-7 Q0 MARCO_18_2679892723-9 80 90.020336 hybrid +149_2-7 Q0 KILT_12431-14 81 90.015585 hybrid +149_2-7 Q0 MARCO_55_922535175-2 82 89.997685 hybrid +149_2-7 Q0 MARCO_52_683807464-2 83 89.996867 hybrid +149_2-7 Q0 KILT_14064991-6 84 89.995286 hybrid +149_2-7 Q0 MARCO_58_1441465824-2 85 89.994386 hybrid +149_2-7 Q0 MARCO_53_192579990-34 86 89.985486 hybrid +149_2-7 Q0 MARCO_45_1622773229-1 87 89.983386 hybrid +149_2-7 Q0 MARCO_16_2337184670-3 88 89.972385 hybrid +149_2-7 Q0 MARCO_39_1522138753-6 89 89.971135 hybrid +149_2-7 Q0 MARCO_31_747571962-2 90 89.967336 hybrid +149_2-7 Q0 MARCO_41_832711163-1 91 89.964635 hybrid +149_2-7 Q0 MARCO_52_441928679-1 92 89.957635 hybrid +149_2-7 Q0 MARCO_36_1072442750-2 93 89.952435 hybrid +149_2-7 Q0 MARCO_17_1590052482-15 94 89.950336 hybrid +149_2-7 Q0 MARCO_58_1441634175-4 95 89.943836 hybrid +149_2-7 Q0 MARCO_03_1049905924-2 96 89.942786 hybrid +149_2-7 Q0 MARCO_46_1395226424-1 97 89.937535 hybrid +149_2-7 Q0 MARCO_50_1395351585-24 98 89.934785 hybrid +149_2-7 Q0 MARCO_32_278789547-2 99 89.928085 hybrid +149_2-7 Q0 MARCO_46_387713679-4 100 89.926431 hybrid +149_3-1 Q0 MARCO_31_319361176-2 1 89.728979 hybrid +149_3-1 Q0 MARCO_11_775487494-2 2 89.637455 hybrid +149_3-1 Q0 KILT_25606638-3 3 89.336879 hybrid +149_3-1 Q0 MARCO_22_844493257-2 4 89.320579 hybrid +149_3-1 Q0 MARCO_52_681689004-13 5 89.305566 hybrid +149_3-1 Q0 MARCO_36_1500020236-5 6 89.247629 hybrid +149_3-1 Q0 MARCO_10_366981001-2 7 89.246647 hybrid +149_3-1 Q0 MARCO_50_2268879788-1 8 89.167929 hybrid +149_3-1 Q0 MARCO_15_1088254649-11 9 89.131051 hybrid +149_3-1 Q0 MARCO_41_633308289-2 10 89.119864 hybrid +149_3-1 Q0 MARCO_52_258700460-5 11 89.108329 hybrid +149_3-1 Q0 MARCO_44_1770445893-37 12 89.100220 hybrid +149_3-1 Q0 MARCO_48_119371286-2 13 89.064779 hybrid +149_3-1 Q0 MARCO_01_795318884-2 14 89.053025 hybrid +149_3-1 Q0 MARCO_11_776080002-6 15 89.050805 hybrid +149_3-1 Q0 MARCO_13_1165329628-2 16 88.964779 hybrid +149_3-1 Q0 MARCO_50_1782720238-1 17 88.885529 hybrid +149_3-1 Q0 MARCO_02_423200817-1 18 88.883729 hybrid +149_3-1 Q0 MARCO_33_1616650488-1 19 88.875329 hybrid +149_3-1 Q0 KILT_59012195-9 20 88.865845 hybrid +149_3-1 Q0 MARCO_13_1758131954-1 21 88.864079 hybrid +149_3-1 Q0 MARCO_25_1130821317-2 22 88.847129 hybrid +149_3-1 Q0 MARCO_57_1170242445-1 23 88.836579 hybrid +149_3-1 Q0 MARCO_25_1410454799-3 24 88.834978 hybrid +149_3-1 Q0 MARCO_11_775904773-5 25 88.834420 hybrid +149_3-1 Q0 MARCO_50_1904874157-12 26 88.829979 hybrid +149_3-1 Q0 MARCO_14_952280569-1 27 88.829629 hybrid +149_3-1 Q0 MARCO_32_110669830-2 28 88.825119 hybrid +149_3-1 Q0 MARCO_12_148625680-15 29 88.819741 hybrid +149_3-1 Q0 KILT_25606638-1 30 88.819129 hybrid +149_3-1 Q0 MARCO_50_1781293610-3 31 88.818629 hybrid +149_3-1 Q0 MARCO_09_387689068-15 32 88.817017 hybrid +149_3-1 Q0 MARCO_32_278789547-1 33 88.815079 hybrid +149_3-1 Q0 MARCO_57_936034668-2 34 88.808879 hybrid +149_3-1 Q0 MARCO_30_1507114449-13 35 88.804879 hybrid +149_3-1 Q0 MARCO_12_865018792-5 36 88.801929 hybrid +149_3-1 Q0 MARCO_16_1128132242-2 37 88.800129 hybrid +149_3-1 Q0 MARCO_24_1300380353-22 38 88.775879 hybrid +149_3-1 Q0 MARCO_50_2504117447-48 39 88.774636 hybrid +149_3-1 Q0 MARCO_53_1516388441-3 40 88.773057 hybrid +149_3-1 Q0 MARCO_08_816090904-1 41 88.762822 hybrid +149_3-1 Q0 MARCO_37_1258185656-82 42 88.760636 hybrid +149_3-1 Q0 MARCO_07_637735790-9 43 88.760079 hybrid +149_3-1 Q0 MARCO_45_1034356730-5 44 88.758690 hybrid +149_3-1 Q0 MARCO_08_816090904-7 45 88.751168 hybrid +149_3-1 Q0 MARCO_29_276396392-1 46 88.743629 hybrid +149_3-1 Q0 MARCO_22_1052919064-3 47 88.739429 hybrid +149_3-1 Q0 MARCO_11_775487494-1 48 88.733695 hybrid +149_3-1 Q0 MARCO_50_2400647610-3 49 88.716240 hybrid +149_3-1 Q0 MARCO_45_1623090797-2 50 88.705129 hybrid +149_3-1 Q0 MARCO_50_2504117447-28 51 88.703644 hybrid +149_3-1 Q0 MARCO_41_2216793185-5 52 88.698729 hybrid +149_3-1 Q0 MARCO_34_543863470-11 53 88.694029 hybrid +149_3-1 Q0 MARCO_13_1252555263-4 54 88.689156 hybrid +149_3-1 Q0 MARCO_11_775099364-9 55 88.688256 hybrid +149_3-1 Q0 MARCO_22_1192665728-1 56 88.682993 hybrid +149_3-1 Q0 MARCO_22_842265175-1 57 88.681779 hybrid +149_3-1 Q0 MARCO_53_1417280823-1 58 88.681496 hybrid +149_3-1 Q0 MARCO_36_1774933131-1 59 88.672929 hybrid +149_3-1 Q0 MARCO_40_1279055765-13 60 88.669159 hybrid +149_3-1 Q0 MARCO_34_1511918298-11 61 88.663170 hybrid +149_3-1 Q0 MARCO_08_1381626170-2 62 88.650329 hybrid +149_3-1 Q0 MARCO_59_863512793-1 63 88.649379 hybrid +149_3-1 Q0 MARCO_24_1148096296-15 64 88.646029 hybrid +149_3-1 Q0 MARCO_10_1206479759-12 65 88.645579 hybrid +149_3-1 Q0 MARCO_38_741872935-2 66 88.641729 hybrid +149_3-1 Q0 MARCO_42_1883994587-4 67 88.639672 hybrid +149_3-1 Q0 MARCO_11_776719134-3 68 88.635062 hybrid +149_3-1 Q0 KILT_2421086-2 69 88.631402 hybrid +149_3-1 Q0 MARCO_33_184931692-1 70 88.627279 hybrid +149_3-1 Q0 MARCO_31_315656683-16 71 88.624329 hybrid +149_3-1 Q0 MARCO_14_257204425-1 72 88.618229 hybrid +149_3-1 Q0 MARCO_49_1314398418-1 73 88.614679 hybrid +149_3-1 Q0 MARCO_24_1152092076-12 74 88.612779 hybrid +149_3-1 Q0 MARCO_52_258700460-3 75 88.611579 hybrid +149_3-1 Q0 MARCO_53_1325079042-1 76 88.598634 hybrid +149_3-1 Q0 MARCO_46_387713679-2 77 88.597718 hybrid +149_3-1 Q0 MARCO_28_397645202-6 78 88.594329 hybrid +149_3-1 Q0 MARCO_30_1478860014-5 79 88.594129 hybrid +149_3-1 Q0 MARCO_54_2075854916-10 80 88.592679 hybrid +149_3-1 Q0 MARCO_30_1146842803-19 81 88.592629 hybrid +149_3-1 Q0 MARCO_45_1621897570-1 82 88.591779 hybrid +149_3-1 Q0 MARCO_30_1639930689-3 83 88.588679 hybrid +149_3-1 Q0 MARCO_15_1927880800-2 84 88.587129 hybrid +149_3-1 Q0 KILT_2421086-6 85 88.582360 hybrid +149_3-1 Q0 MARCO_11_775270435-2 86 88.580765 hybrid +149_3-1 Q0 MARCO_28_12474719-2 87 88.575079 hybrid +149_3-1 Q0 MARCO_25_325494024-7 88 88.573779 hybrid +149_3-1 Q0 MARCO_14_1321835983-18 89 88.572529 hybrid +149_3-1 Q0 MARCO_11_775443250-12 90 88.567673 hybrid +149_3-1 Q0 MARCO_52_259435409-2 91 88.565279 hybrid +149_3-1 Q0 MARCO_24_1923766591-2 92 88.565079 hybrid +149_3-1 Q0 MARCO_50_2506569724-2 93 88.559128 hybrid +149_3-1 Q0 MARCO_45_1036574347-2 94 88.559078 hybrid +149_3-1 Q0 MARCO_52_952717852-7 95 88.555679 hybrid +149_3-1 Q0 MARCO_58_1441619104-1 96 88.553029 hybrid +149_3-1 Q0 MARCO_26_1513072209-1 97 88.545879 hybrid +149_3-1 Q0 MARCO_42_1890727839-12 98 88.542710 hybrid +149_3-1 Q0 MARCO_22_999100161-2 99 88.536079 hybrid +149_3-1 Q0 MARCO_13_426826304-1 100 88.535129 hybrid +149_3-3 Q0 KILT_59012195-1 1 86.340665 hybrid +149_3-3 Q0 MARCO_53_926374721-10 2 86.082784 hybrid +149_3-3 Q0 KILT_25606638-2 3 86.017184 hybrid +149_3-3 Q0 MARCO_55_1217051053-1 4 85.889884 hybrid +149_3-3 Q0 MARCO_14_257204425-1 5 85.889484 hybrid +149_3-3 Q0 MARCO_52_343680628-1 6 85.845934 hybrid +149_3-3 Q0 MARCO_19_739382593-8 7 85.842384 hybrid +149_3-3 Q0 MARCO_50_1678017049-1 8 85.725934 hybrid +149_3-3 Q0 MARCO_11_1343590925-1 9 85.724884 hybrid +149_3-3 Q0 MARCO_08_21442928-8 10 85.719234 hybrid +149_3-3 Q0 KILT_25606638-7 11 85.698684 hybrid +149_3-3 Q0 KILT_54395096-13 12 85.683354 hybrid +149_3-3 Q0 MARCO_19_739382593-7 13 85.670434 hybrid +149_3-3 Q0 MARCO_24_727820-2 14 85.641392 hybrid +149_3-3 Q0 MARCO_58_877835644-1 15 85.593484 hybrid +149_3-3 Q0 MARCO_57_1245236006-1 16 85.574484 hybrid +149_3-3 Q0 MARCO_30_377762017-2 17 85.506734 hybrid +149_3-3 Q0 KILT_16777474-33 18 85.501370 hybrid +149_3-3 Q0 MARCO_46_1462462632-1 19 85.494034 hybrid +149_3-3 Q0 KILT_296726-2 20 85.478528 hybrid +149_3-3 Q0 MARCO_16_3025097082-1 21 85.473973 hybrid +149_3-3 Q0 KILT_296726-1 22 85.466229 hybrid +149_3-3 Q0 MARCO_27_709015401-18 23 85.465443 hybrid +149_3-3 Q0 MARCO_53_1448548338-2 24 85.448434 hybrid +149_3-3 Q0 MARCO_50_1616646458-10 25 85.434872 hybrid +149_3-3 Q0 MARCO_50_1670145590-13 26 85.434872 hybrid +149_3-3 Q0 MARCO_27_843419262-2 27 85.432896 hybrid +149_3-3 Q0 KILT_25606638-1 28 85.427584 hybrid +149_3-3 Q0 MARCO_50_1665044505-13 29 85.421292 hybrid +149_3-3 Q0 MARCO_41_946620623-1 30 85.421284 hybrid +149_3-3 Q0 MARCO_14_541572450-5 31 85.404011 hybrid +149_3-3 Q0 MARCO_50_650983538-4 32 85.401734 hybrid +149_3-3 Q0 MARCO_33_1038422592-3 33 85.399312 hybrid +149_3-3 Q0 KILT_42396382-34 34 85.393964 hybrid +149_3-3 Q0 MARCO_00_1678523231-1 35 85.376034 hybrid +149_3-3 Q0 MARCO_57_1251244355-1 36 85.372234 hybrid +149_3-3 Q0 MARCO_44_1245385510-2 37 85.372134 hybrid +149_3-3 Q0 MARCO_39_354099364-1 38 85.365434 hybrid +149_3-3 Q0 MARCO_06_295884254-12 39 85.360834 hybrid +149_3-3 Q0 MARCO_46_1493082489-4 40 85.356984 hybrid +149_3-3 Q0 MARCO_46_1493088484-5 41 85.352084 hybrid +149_3-3 Q0 MARCO_33_338522234-2 42 85.348784 hybrid +149_3-3 Q0 MARCO_33_1492861083-1 43 85.341584 hybrid +149_3-3 Q0 MARCO_52_1032927616-4 44 85.340434 hybrid +149_3-3 Q0 MARCO_53_1448548338-4 45 85.332684 hybrid +149_3-3 Q0 MARCO_03_1610362254-1 46 85.332534 hybrid +149_3-3 Q0 MARCO_36_839939342-3 47 85.329823 hybrid +149_3-3 Q0 MARCO_46_1493073917-1 48 85.324634 hybrid +149_3-3 Q0 MARCO_42_1885183621-8 49 85.321088 hybrid +149_3-3 Q0 MARCO_19_2063342099-3 50 85.320424 hybrid +149_3-3 Q0 MARCO_44_1245367899-2 51 85.319934 hybrid +149_3-3 Q0 MARCO_14_541467969-10 52 85.319920 hybrid +149_3-3 Q0 MARCO_33_1025658631-7 53 85.319058 hybrid +149_3-3 Q0 MARCO_14_541411251-42 54 85.316746 hybrid +149_3-3 Q0 MARCO_14_257204425-5 55 85.314134 hybrid +149_3-3 Q0 MARCO_09_674343712-6 56 85.313100 hybrid +149_3-3 Q0 MARCO_58_1677261212-1 57 85.312984 hybrid +149_3-3 Q0 MARCO_15_1940818050-1 58 85.311984 hybrid +149_3-3 Q0 MARCO_12_652543527-1 59 85.307684 hybrid +149_3-3 Q0 MARCO_57_1234151105-1 60 85.307683 hybrid +149_3-3 Q0 KILT_36891093-1 61 85.305096 hybrid +149_3-3 Q0 MARCO_24_1126001105-3 62 85.304578 hybrid +149_3-3 Q0 MARCO_40_1273981958-4 63 85.304539 hybrid +149_3-3 Q0 MARCO_14_541273489-2 64 85.304524 hybrid +149_3-3 Q0 MARCO_26_1668573550-11 65 85.301634 hybrid +149_3-3 Q0 MARCO_19_2063342099-4 66 85.300015 hybrid +149_3-3 Q0 MARCO_23_1578326827-1 67 85.296984 hybrid +149_3-3 Q0 MARCO_12_806452048-4 68 85.296434 hybrid +149_3-3 Q0 MARCO_45_483500326-48 69 85.292684 hybrid +149_3-3 Q0 MARCO_37_722532841-7 70 85.290776 hybrid +149_3-3 Q0 KILT_25606638-3 71 85.288784 hybrid +149_3-3 Q0 MARCO_16_140567681-2 72 85.288384 hybrid +149_3-3 Q0 MARCO_36_900419354-2 73 85.279729 hybrid +149_3-3 Q0 MARCO_36_412918166-3 74 85.274784 hybrid +149_3-3 Q0 MARCO_36_412918166-5 75 85.274784 hybrid +149_3-3 Q0 MARCO_37_1449403454-2 76 85.274184 hybrid +149_3-3 Q0 MARCO_16_16180614-1 77 85.273884 hybrid +149_3-3 Q0 MARCO_56_782979676-12 78 85.272664 hybrid +149_3-3 Q0 KILT_56380195-1 79 85.270398 hybrid +149_3-3 Q0 MARCO_12_2020123824-2 80 85.269184 hybrid +149_3-3 Q0 MARCO_20_1739295618-31 81 85.269183 hybrid +149_3-3 Q0 MARCO_31_1623641182-1 82 85.266284 hybrid +149_3-3 Q0 MARCO_26_1549824709-5 83 85.266217 hybrid +149_3-3 Q0 MARCO_10_764125113-1 84 85.265884 hybrid +149_3-3 Q0 MARCO_31_1518249678-1 85 85.265883 hybrid +149_3-3 Q0 MARCO_57_1250834433-1 86 85.264084 hybrid +149_3-3 Q0 MARCO_13_329543671-2 87 85.263867 hybrid +149_3-3 Q0 MARCO_07_1585032932-71 88 85.259335 hybrid +149_3-3 Q0 MARCO_18_718482580-3 89 85.255234 hybrid +149_3-3 Q0 MARCO_49_1513676706-1 90 85.252660 hybrid +149_3-3 Q0 MARCO_50_1876380199-5 91 85.249834 hybrid +149_3-3 Q0 MARCO_52_1392641922-1 92 85.248509 hybrid +149_3-3 Q0 MARCO_27_1748534443-10 93 85.247052 hybrid +149_3-3 Q0 MARCO_20_1739295618-75 94 85.245984 hybrid +149_3-3 Q0 KILT_66505-1 95 85.243550 hybrid +149_3-3 Q0 KILT_59012195-3 96 85.243024 hybrid +149_3-3 Q0 MARCO_03_1029026308-5 97 85.241963 hybrid +149_3-3 Q0 KILT_59012195-13 98 85.238400 hybrid +149_3-3 Q0 MARCO_25_304805054-1 99 85.235684 hybrid +149_3-3 Q0 MARCO_43_722747104-9 100 85.233734 hybrid +149_3-5 Q0 MARCO_41_2131675329-6 1 89.736067 hybrid +149_3-5 Q0 MARCO_50_1931425493-13 2 89.363188 hybrid +149_3-5 Q0 MARCO_13_325525277-13 3 89.201353 hybrid +149_3-5 Q0 MARCO_22_1026309507-2 4 89.007907 hybrid +149_3-5 Q0 MARCO_53_407359303-14 5 88.825458 hybrid +149_3-5 Q0 MARCO_03_247875288-3 6 88.766608 hybrid +149_3-5 Q0 MARCO_14_480109671-3 7 88.706251 hybrid +149_3-5 Q0 MARCO_52_916482449-10 8 88.678858 hybrid +149_3-5 Q0 MARCO_28_1615819406-7 9 88.593657 hybrid +149_3-5 Q0 MARCO_24_1571220944-7 10 88.591058 hybrid +149_3-5 Q0 MARCO_11_1527834791-1 11 88.487058 hybrid +149_3-5 Q0 MARCO_24_648597782-2 12 88.417883 hybrid +149_3-5 Q0 MARCO_43_741769267-3 13 88.402693 hybrid +149_3-5 Q0 MARCO_50_1931425493-10 14 88.370635 hybrid +149_3-5 Q0 MARCO_34_385317234-19 15 88.336207 hybrid +149_3-5 Q0 MARCO_54_1859766889-7 16 88.330504 hybrid +149_3-5 Q0 MARCO_54_1855341969-9 17 88.330504 hybrid +149_3-5 Q0 MARCO_54_1861724187-8 18 88.330504 hybrid +149_3-5 Q0 MARCO_54_1851845503-9 19 88.330504 hybrid +149_3-5 Q0 MARCO_54_1852598752-8 20 88.330504 hybrid +149_3-5 Q0 MARCO_54_1860409637-7 21 88.330504 hybrid +149_3-5 Q0 MARCO_54_1861944684-9 22 88.330504 hybrid +149_3-5 Q0 MARCO_54_1854811662-9 23 88.330504 hybrid +149_3-5 Q0 MARCO_54_1859725135-8 24 88.330504 hybrid +149_3-5 Q0 MARCO_50_1931425493-4 25 88.314764 hybrid +149_3-5 Q0 MARCO_20_712557990-1 26 88.314057 hybrid +149_3-5 Q0 MARCO_50_1931425493-11 27 88.310803 hybrid +149_3-5 Q0 MARCO_44_1974342956-17 28 88.304708 hybrid +149_3-5 Q0 MARCO_06_1925269929-1 29 88.287258 hybrid +149_3-5 Q0 MARCO_53_810278604-5 30 88.280577 hybrid +149_3-5 Q0 MARCO_50_1317455774-16 31 88.250008 hybrid +149_3-5 Q0 MARCO_53_845215970-5 32 88.238108 hybrid +149_3-5 Q0 MARCO_29_825761413-1 33 88.218758 hybrid +149_3-5 Q0 MARCO_50_1552139554-83 34 88.198708 hybrid +149_3-5 Q0 MARCO_51_1719073264-111 35 88.183470 hybrid +149_3-5 Q0 MARCO_15_560133885-1 36 88.142357 hybrid +149_3-5 Q0 MARCO_55_227218267-8 37 88.121357 hybrid +149_3-5 Q0 MARCO_50_1399796977-17 38 88.082099 hybrid +149_3-5 Q0 MARCO_50_510883349-22 39 88.075508 hybrid +149_3-5 Q0 MARCO_53_1331879317-4 40 88.061484 hybrid +149_3-5 Q0 MARCO_34_509035062-7 41 88.059857 hybrid +149_3-5 Q0 MARCO_41_1344124843-37 42 88.054058 hybrid +149_3-5 Q0 MARCO_50_721328931-5 43 88.040869 hybrid +149_3-5 Q0 MARCO_50_721822524-8 44 88.036660 hybrid +149_3-5 Q0 MARCO_11_1137167620-1 45 88.034808 hybrid +149_3-5 Q0 MARCO_27_1249163483-144 46 88.016562 hybrid +149_3-5 Q0 MARCO_51_1304491847-12 47 88.015007 hybrid +149_3-5 Q0 MARCO_50_1931425493-20 48 88.003127 hybrid +149_3-5 Q0 MARCO_50_930160608-27 49 87.998351 hybrid +149_3-5 Q0 MARCO_50_2498479427-4 50 87.996765 hybrid +149_3-5 Q0 MARCO_50_1931425493-5 51 87.993117 hybrid +149_3-5 Q0 MARCO_41_1158608252-19 52 87.990458 hybrid +149_3-5 Q0 MARCO_00_498547202-2 53 87.976458 hybrid +149_3-5 Q0 MARCO_09_892655563-1 54 87.974808 hybrid +149_3-5 Q0 MARCO_19_1098251253-9 55 87.966666 hybrid +149_3-5 Q0 MARCO_58_1601174092-5 56 87.966408 hybrid +149_3-5 Q0 MARCO_01_1425048900-1 57 87.965057 hybrid +149_3-5 Q0 MARCO_04_1299765233-33 58 87.962708 hybrid +149_3-5 Q0 MARCO_04_1299765233-40 59 87.962707 hybrid +149_3-5 Q0 MARCO_08_1188135981-1 60 87.956007 hybrid +149_3-5 Q0 MARCO_11_1038002471-1 61 87.953907 hybrid +149_3-5 Q0 MARCO_27_583264304-5 62 87.942496 hybrid +149_3-5 Q0 MARCO_50_2506569724-5 63 87.937258 hybrid +149_3-5 Q0 MARCO_53_1331879317-1 64 87.937250 hybrid +149_3-5 Q0 MARCO_41_2212297065-6 65 87.923758 hybrid +149_3-5 Q0 MARCO_57_1470440585-9 66 87.920907 hybrid +149_3-5 Q0 MARCO_50_1560339513-10 67 87.919057 hybrid +149_3-5 Q0 MARCO_53_1470251080-10 68 87.917876 hybrid +149_3-5 Q0 MARCO_50_930160608-16 69 87.916487 hybrid +149_3-5 Q0 MARCO_50_1379052086-35 70 87.910558 hybrid +149_3-5 Q0 MARCO_50_1644710520-4 71 87.909907 hybrid +149_3-5 Q0 MARCO_50_2077076382-25 72 87.902008 hybrid +149_3-5 Q0 MARCO_50_1315164681-14 73 87.897058 hybrid +149_3-5 Q0 MARCO_02_763266747-1 74 87.892658 hybrid +149_3-5 Q0 MARCO_41_1369007039-8 75 87.890607 hybrid +149_3-5 Q0 MARCO_50_1517453090-28 76 87.887740 hybrid +149_3-5 Q0 MARCO_28_1535375610-5 77 87.885158 hybrid +149_3-5 Q0 MARCO_25_282534727-1 78 87.871007 hybrid +149_3-5 Q0 KILT_956483-7 79 87.864241 hybrid +149_3-5 Q0 MARCO_53_1470251080-11 80 87.863837 hybrid +149_3-5 Q0 MARCO_44_1973913217-3 81 87.854308 hybrid +149_3-5 Q0 MARCO_40_1351004375-1 82 87.844957 hybrid +149_3-5 Q0 MARCO_48_2082703206-11 83 87.844158 hybrid +149_3-5 Q0 MARCO_53_769555536-1 84 87.839108 hybrid +149_3-5 Q0 MARCO_50_2077076382-34 85 87.836708 hybrid +149_3-5 Q0 MARCO_50_1399796977-15 86 87.831885 hybrid +149_3-5 Q0 MARCO_50_2283814490-26 87 87.824058 hybrid +149_3-5 Q0 MARCO_04_613350801-6 88 87.822308 hybrid +149_3-5 Q0 MARCO_51_117563185-6 89 87.816408 hybrid +149_3-5 Q0 MARCO_08_223388877-4 90 87.815807 hybrid +149_3-5 Q0 MARCO_18_3243396927-14 91 87.815512 hybrid +149_3-5 Q0 MARCO_56_1475992546-4 92 87.815482 hybrid +149_3-5 Q0 MARCO_54_139405728-2 93 87.811263 hybrid +149_3-5 Q0 MARCO_50_885479717-28 94 87.806858 hybrid +149_3-5 Q0 MARCO_45_1646411330-2 95 87.804858 hybrid +149_3-5 Q0 MARCO_35_1167187260-4 96 87.797408 hybrid +149_3-5 Q0 MARCO_29_826101442-12 97 87.793808 hybrid +149_3-5 Q0 MARCO_41_524535027-2 98 87.789608 hybrid +149_3-5 Q0 MARCO_53_1320660228-1 99 87.783008 hybrid +149_3-5 Q0 MARCO_00_4138283-10 100 87.778458 hybrid +149_3-7 Q0 MARCO_50_796224832-21 1 91.849593 hybrid +149_3-7 Q0 MARCO_23_183358734-8 2 91.496194 hybrid +149_3-7 Q0 MARCO_34_543863470-27 3 91.450697 hybrid +149_3-7 Q0 MARCO_28_857644874-7 4 91.438443 hybrid +149_3-7 Q0 MARCO_14_257204425-6 5 91.296393 hybrid +149_3-7 Q0 MARCO_34_543863470-30 6 91.059728 hybrid +149_3-7 Q0 MARCO_34_543863470-20 7 90.959692 hybrid +149_3-7 Q0 MARCO_14_257204425-5 8 90.802943 hybrid +149_3-7 Q0 MARCO_50_2506569724-87 9 90.790719 hybrid +149_3-7 Q0 MARCO_34_543863470-23 10 90.658987 hybrid +149_3-7 Q0 MARCO_50_1789079732-8 11 90.643044 hybrid +149_3-7 Q0 MARCO_48_1535919141-21 12 90.576906 hybrid +149_3-7 Q0 MARCO_22_1400646671-10 13 90.562794 hybrid +149_3-7 Q0 MARCO_29_402220207-3 14 90.547099 hybrid +149_3-7 Q0 MARCO_27_848519093-4 15 90.535394 hybrid +149_3-7 Q0 MARCO_34_543863470-5 16 90.529822 hybrid +149_3-7 Q0 MARCO_36_1082288384-14 17 90.500744 hybrid +149_3-7 Q0 MARCO_24_140126809-3 18 90.499407 hybrid +149_3-7 Q0 MARCO_27_848519093-11 19 90.468444 hybrid +149_3-7 Q0 MARCO_15_1519913159-5 20 90.456743 hybrid +149_3-7 Q0 MARCO_20_451501418-8 21 90.414543 hybrid +149_3-7 Q0 MARCO_52_258715295-8 22 90.399343 hybrid +149_3-7 Q0 MARCO_13_325525277-13 23 90.379313 hybrid +149_3-7 Q0 MARCO_04_851003612-1 24 90.326593 hybrid +149_3-7 Q0 MARCO_14_257274681-13 25 90.314294 hybrid +149_3-7 Q0 MARCO_34_543863470-18 26 90.307627 hybrid +149_3-7 Q0 MARCO_51_340597512-2 27 90.270844 hybrid +149_3-7 Q0 MARCO_13_92855621-2 28 90.255644 hybrid +149_3-7 Q0 MARCO_03_929823532-4 29 90.252044 hybrid +149_3-7 Q0 MARCO_34_543863470-33 30 90.245423 hybrid +149_3-7 Q0 MARCO_47_230803156-1 31 90.229143 hybrid +149_3-7 Q0 MARCO_24_407549356-4 32 90.214494 hybrid +149_3-7 Q0 MARCO_34_543863470-4 33 90.212882 hybrid +149_3-7 Q0 MARCO_36_1360561883-3 34 90.206043 hybrid +149_3-7 Q0 MARCO_40_1240645500-7 35 90.198044 hybrid +149_3-7 Q0 MARCO_52_1056638332-4 36 90.181643 hybrid +149_3-7 Q0 MARCO_34_543863470-8 37 90.179957 hybrid +149_3-7 Q0 MARCO_06_982384916-3 38 90.177894 hybrid +149_3-7 Q0 MARCO_50_796224832-18 39 90.165194 hybrid +149_3-7 Q0 MARCO_22_247241966-24 40 90.164042 hybrid +149_3-7 Q0 MARCO_34_543863470-15 41 90.159442 hybrid +149_3-7 Q0 MARCO_11_454480284-1 42 90.143793 hybrid +149_3-7 Q0 MARCO_23_912687125-5 43 90.143344 hybrid +149_3-7 Q0 MARCO_23_955504535-2 44 90.141093 hybrid +149_3-7 Q0 MARCO_34_1514907320-2 45 90.138598 hybrid +149_3-7 Q0 MARCO_53_1465253531-2 46 90.130694 hybrid +149_3-7 Q0 MARCO_50_2506569724-26 47 90.123919 hybrid +149_3-7 Q0 MARCO_50_1015330767-2 48 90.122793 hybrid +149_3-7 Q0 MARCO_23_141388715-3 49 90.104593 hybrid +149_3-7 Q0 MARCO_22_1523404063-2 50 90.081622 hybrid +149_3-7 Q0 MARCO_31_751769512-8 51 90.068843 hybrid +149_3-7 Q0 MARCO_23_183358734-13 52 90.068044 hybrid +149_3-7 Q0 MARCO_34_543863470-24 53 90.061466 hybrid +149_3-7 Q0 MARCO_12_1143811020-9 54 90.058113 hybrid +149_3-7 Q0 MARCO_51_44402076-1 55 90.038043 hybrid +149_3-7 Q0 MARCO_12_1143811020-1 56 90.037151 hybrid +149_3-7 Q0 MARCO_12_2022229325-3 57 90.034194 hybrid +149_3-7 Q0 MARCO_52_254811103-7 58 90.002994 hybrid +149_3-7 Q0 MARCO_50_796224832-32 59 89.993494 hybrid +149_3-7 Q0 MARCO_27_1767716306-3 60 89.989466 hybrid +149_3-7 Q0 MARCO_27_626845395-7 61 89.987393 hybrid +149_3-7 Q0 MARCO_37_1640242516-5 62 89.970044 hybrid +149_3-7 Q0 MARCO_55_554582707-7 63 89.955644 hybrid +149_3-7 Q0 MARCO_50_2268879788-13 64 89.950394 hybrid +149_3-7 Q0 MARCO_37_1258185656-82 65 89.939417 hybrid +149_3-7 Q0 MARCO_22_1400646671-3 66 89.926894 hybrid +149_3-7 Q0 MARCO_23_183358734-16 67 89.904093 hybrid +149_3-7 Q0 MARCO_12_1143811020-15 68 89.903018 hybrid +149_3-7 Q0 MARCO_31_1743142440-9 69 89.899394 hybrid +149_3-7 Q0 MARCO_31_315758213-8 70 89.860894 hybrid +149_3-7 Q0 MARCO_50_1399796977-10 71 89.850420 hybrid +149_3-7 Q0 MARCO_31_319414396-5 72 89.846744 hybrid +149_3-7 Q0 MARCO_36_1356561455-6 73 89.841343 hybrid +149_3-7 Q0 MARCO_24_501184339-9 74 89.839044 hybrid +149_3-7 Q0 MARCO_54_337359495-4 75 89.832593 hybrid +149_3-7 Q0 MARCO_30_1596058341-2 76 89.829043 hybrid +149_3-7 Q0 MARCO_50_2506569724-111 77 89.815310 hybrid +149_3-7 Q0 MARCO_50_1293674950-47 78 89.806243 hybrid +149_3-7 Q0 MARCO_12_1147033803-11 79 89.804789 hybrid +149_3-7 Q0 MARCO_11_775099364-1 80 89.797846 hybrid +149_3-7 Q0 MARCO_53_1417384023-2 81 89.789866 hybrid +149_3-7 Q0 MARCO_34_543863470-1 82 89.784643 hybrid +149_3-7 Q0 MARCO_12_1143927089-4 83 89.782706 hybrid +149_3-7 Q0 MARCO_07_637735790-3 84 89.780230 hybrid +149_3-7 Q0 MARCO_12_1162574099-10 85 89.778796 hybrid +149_3-7 Q0 MARCO_22_1564453916-2 86 89.771443 hybrid +149_3-7 Q0 MARCO_24_80114076-7 87 89.769664 hybrid +149_3-7 Q0 MARCO_32_699254699-5 88 89.766444 hybrid +149_3-7 Q0 MARCO_12_1146759825-5 89 89.761557 hybrid +149_3-7 Q0 MARCO_40_1126137332-7 90 89.758021 hybrid +149_3-7 Q0 MARCO_22_838526827-2 91 89.754436 hybrid +149_3-7 Q0 MARCO_50_2268879788-12 92 89.750494 hybrid +149_3-7 Q0 MARCO_31_283791517-6 93 89.742943 hybrid +149_3-7 Q0 MARCO_58_1178714539-5 94 89.738994 hybrid +149_3-7 Q0 MARCO_10_988610214-7 95 89.738894 hybrid +149_3-7 Q0 MARCO_50_1510255938-11 96 89.737338 hybrid +149_3-7 Q0 MARCO_53_1332176041-6 97 89.736208 hybrid +149_3-7 Q0 MARCO_50_2504117447-47 98 89.732165 hybrid +149_3-7 Q0 MARCO_50_1516126301-5 99 89.725070 hybrid +149_3-7 Q0 MARCO_52_253961287-5 100 89.717544 hybrid +149_3-9 Q0 MARCO_30_377762017-1 1 91.092741 hybrid +149_3-9 Q0 MARCO_30_377762017-2 2 90.972947 hybrid +149_3-9 Q0 MARCO_30_377762017-3 3 90.196532 hybrid +149_3-9 Q0 MARCO_30_377762017-4 4 89.549322 hybrid +149_3-9 Q0 MARCO_30_377762017-5 5 89.266993 hybrid +149_3-9 Q0 MARCO_49_545533397-1 6 89.041569 hybrid +149_3-9 Q0 MARCO_53_1339025320-2 7 88.839719 hybrid +149_3-9 Q0 MARCO_48_1536612134-12 8 88.774820 hybrid +149_3-9 Q0 MARCO_15_1940818050-1 9 88.683469 hybrid +149_3-9 Q0 MARCO_53_1339025320-1 10 88.519269 hybrid +149_3-9 Q0 MARCO_49_545533397-6 11 88.493469 hybrid +149_3-9 Q0 MARCO_43_236748055-5 12 88.409619 hybrid +149_3-9 Q0 MARCO_12_1143811020-12 13 88.404172 hybrid +149_3-9 Q0 MARCO_49_545533397-9 14 88.382619 hybrid +149_3-9 Q0 MARCO_17_501082452-9 15 88.337119 hybrid +149_3-9 Q0 MARCO_43_236748055-1 16 88.219069 hybrid +149_3-9 Q0 MARCO_50_1290238291-3 17 88.204419 hybrid +149_3-9 Q0 MARCO_49_545533397-8 18 88.190569 hybrid +149_3-9 Q0 MARCO_11_775099364-6 19 88.115960 hybrid +149_3-9 Q0 MARCO_30_377762017-6 20 88.044651 hybrid +149_3-9 Q0 MARCO_00_1678523231-1 21 88.034219 hybrid +149_3-9 Q0 MARCO_17_501082452-10 22 88.032369 hybrid +149_3-9 Q0 MARCO_41_543467334-1 23 88.025519 hybrid +149_3-9 Q0 MARCO_17_501082452-13 24 87.880919 hybrid +149_3-9 Q0 MARCO_11_775099364-5 25 87.841087 hybrid +149_3-9 Q0 MARCO_53_1339025320-4 26 87.812669 hybrid +149_3-9 Q0 MARCO_49_545533397-13 27 87.789319 hybrid +149_3-9 Q0 MARCO_51_261213207-5 28 87.770069 hybrid +149_3-9 Q0 MARCO_13_943611038-2 29 87.765669 hybrid +149_3-9 Q0 MARCO_49_545533397-4 30 87.765669 hybrid +149_3-9 Q0 MARCO_46_91899625-1 31 87.760619 hybrid +149_3-9 Q0 MARCO_48_1536612134-11 32 87.723941 hybrid +149_3-9 Q0 MARCO_27_637496644-18 33 87.689119 hybrid +149_3-9 Q0 MARCO_49_545533397-2 34 87.662069 hybrid +149_3-9 Q0 MARCO_53_1339025320-3 35 87.634019 hybrid +149_3-9 Q0 MARCO_13_956563554-5 36 87.619119 hybrid +149_3-9 Q0 MARCO_54_557237315-13 37 87.614356 hybrid +149_3-9 Q0 MARCO_50_1290238291-9 38 87.596169 hybrid +149_3-9 Q0 MARCO_50_1290238291-2 39 87.571169 hybrid +149_3-9 Q0 MARCO_15_1940820807-1 40 87.533469 hybrid +149_3-9 Q0 MARCO_13_956563554-3 41 87.517819 hybrid +149_3-9 Q0 MARCO_11_1009473786-4 42 87.508019 hybrid +149_3-9 Q0 MARCO_27_1467987309-2 43 87.500369 hybrid +149_3-9 Q0 MARCO_13_956563554-4 44 87.474569 hybrid +149_3-9 Q0 MARCO_17_501082452-2 45 87.464469 hybrid +149_3-9 Q0 MARCO_42_72768012-4 46 87.459469 hybrid +149_3-9 Q0 MARCO_52_1318587130-1 47 87.454169 hybrid +149_3-9 Q0 MARCO_49_545533397-3 48 87.450819 hybrid +149_3-9 Q0 MARCO_13_82022852-1 49 87.430419 hybrid +149_3-9 Q0 MARCO_15_1940812375-1 50 87.417269 hybrid +149_3-9 Q0 MARCO_15_1940812375-3 51 87.417269 hybrid +149_3-9 Q0 MARCO_15_1940822006-1 52 87.408069 hybrid +149_3-9 Q0 MARCO_50_1290238291-11 53 87.404369 hybrid +149_3-9 Q0 MARCO_33_363644625-2 54 87.396519 hybrid +149_3-9 Q0 KILT_45138227-2 55 87.387169 hybrid +149_3-9 Q0 MARCO_13_82014588-1 56 87.380919 hybrid +149_3-9 Q0 MARCO_41_2216793185-5 57 87.374469 hybrid +149_3-9 Q0 MARCO_13_82012516-1 58 87.340969 hybrid +149_3-9 Q0 MARCO_11_612498428-2 59 87.320769 hybrid +149_3-9 Q0 MARCO_15_1940819552-1 60 87.309719 hybrid +149_3-9 Q0 MARCO_22_1125019120-1 61 87.309669 hybrid +149_3-9 Q0 MARCO_49_545533397-7 62 87.297119 hybrid +149_3-9 Q0 MARCO_00_395785390-3 63 87.287969 hybrid +149_3-9 Q0 MARCO_20_236904717-4 64 87.274570 hybrid +149_3-9 Q0 MARCO_35_1318095742-3 65 87.249819 hybrid +149_3-9 Q0 MARCO_13_82022852-6 66 87.249419 hybrid +149_3-9 Q0 MARCO_13_216304868-1 67 87.247819 hybrid +149_3-9 Q0 MARCO_43_236748055-3 68 87.223119 hybrid +149_3-9 Q0 MARCO_20_236904717-5 69 87.218997 hybrid +149_3-9 Q0 MARCO_29_1363681826-1 70 87.218969 hybrid +149_3-9 Q0 MARCO_43_236748055-7 71 87.216519 hybrid +149_3-9 Q0 MARCO_29_987730034-8 72 87.204619 hybrid +149_3-9 Q0 MARCO_43_236748055-8 73 87.199119 hybrid +149_3-9 Q0 MARCO_56_987506629-2 74 87.186869 hybrid +149_3-9 Q0 MARCO_47_680902989-6 75 87.178619 hybrid +149_3-9 Q0 MARCO_23_1606638999-21 76 87.161869 hybrid +149_3-9 Q0 MARCO_13_1206028526-1 77 87.157219 hybrid +149_3-9 Q0 MARCO_17_501082452-11 78 87.157219 hybrid +149_3-9 Q0 MARCO_52_1318587130-4 79 87.157218 hybrid +149_3-9 Q0 MARCO_51_560118025-5 80 87.151619 hybrid +149_3-9 Q0 MARCO_13_82014588-3 81 87.135819 hybrid +149_3-9 Q0 MARCO_35_348971114-4 82 87.113669 hybrid +149_3-9 Q0 MARCO_00_1678523231-3 83 87.111069 hybrid +149_3-9 Q0 MARCO_20_236904717-1 84 87.110060 hybrid +149_3-9 Q0 MARCO_50_716263520-5 85 87.109769 hybrid +149_3-9 Q0 MARCO_20_236904717-2 86 87.090044 hybrid +149_3-9 Q0 MARCO_27_1724553370-15 87 87.088769 hybrid +149_3-9 Q0 MARCO_43_236748055-4 88 87.058619 hybrid +149_3-9 Q0 MARCO_52_1318587130-3 89 87.044319 hybrid +149_3-9 Q0 MARCO_49_545533397-12 90 87.041969 hybrid +149_3-9 Q0 MARCO_13_82022852-3 91 87.033169 hybrid +149_3-9 Q0 MARCO_15_1940815006-1 92 87.032869 hybrid +149_3-9 Q0 MARCO_41_628939702-1 93 87.006269 hybrid +149_3-9 Q0 MARCO_49_545533397-10 94 87.004969 hybrid +149_3-9 Q0 MARCO_51_560118025-10 95 86.995669 hybrid +149_3-9 Q0 MARCO_00_395785390-1 96 86.926719 hybrid +149_3-9 Q0 MARCO_14_292480659-2 97 86.916869 hybrid +149_3-9 Q0 MARCO_14_292480659-6 98 86.916869 hybrid +149_3-9 Q0 MARCO_43_236748055-2 99 86.916868 hybrid +149_3-9 Q0 MARCO_23_1606638999-20 100 86.913769 hybrid +149_4-1 Q0 MARCO_50_796224832-21 1 89.165295 hybrid +149_4-1 Q0 MARCO_50_2268879788-13 2 89.109245 hybrid +149_4-1 Q0 MARCO_48_137094139-5 3 89.100345 hybrid +149_4-1 Q0 MARCO_50_1876380199-12 4 89.037395 hybrid +149_4-1 Q0 MARCO_11_775612189-5 5 89.022045 hybrid +149_4-1 Q0 MARCO_50_1399796977-10 6 88.892838 hybrid +149_4-1 Q0 MARCO_50_2504117447-30 7 88.891870 hybrid +149_4-1 Q0 MARCO_50_1789079732-12 8 88.812845 hybrid +149_4-1 Q0 MARCO_50_1379052086-36 9 88.750195 hybrid +149_4-1 Q0 MARCO_50_796224832-20 10 88.740595 hybrid +149_4-1 Q0 MARCO_50_2268879788-14 11 88.567145 hybrid +149_4-1 Q0 MARCO_50_1781293610-9 12 88.563145 hybrid +149_4-1 Q0 MARCO_34_1228812694-2 13 88.495095 hybrid +149_4-1 Q0 MARCO_57_1645525248-14 14 88.475895 hybrid +149_4-1 Q0 MARCO_50_887569727-21 15 88.470695 hybrid +149_4-1 Q0 MARCO_37_685404558-6 16 88.402445 hybrid +149_4-1 Q0 MARCO_50_887569727-14 17 88.401445 hybrid +149_4-1 Q0 MARCO_24_396572641-10 18 88.370595 hybrid +149_4-1 Q0 MARCO_46_70787827-5 19 88.361745 hybrid +149_4-1 Q0 MARCO_24_440574470-3 20 88.352395 hybrid +149_4-1 Q0 MARCO_50_1781293610-8 21 88.297895 hybrid +149_4-1 Q0 MARCO_50_1779963048-5 22 88.272245 hybrid +149_4-1 Q0 MARCO_50_887569727-20 23 88.249345 hybrid +149_4-1 Q0 MARCO_50_2268879788-20 24 88.243245 hybrid +149_4-1 Q0 MARCO_50_2268879788-21 25 88.240645 hybrid +149_4-1 Q0 MARCO_56_1784272036-7 26 88.221895 hybrid +149_4-1 Q0 MARCO_23_940126685-10 27 88.175695 hybrid +149_4-1 Q0 MARCO_50_2504117447-18 28 88.164795 hybrid +149_4-1 Q0 MARCO_40_1213016460-2 29 88.163895 hybrid +149_4-1 Q0 MARCO_50_1979463506-11 30 88.159895 hybrid +149_4-1 Q0 MARCO_02_161741159-2 31 88.152595 hybrid +149_4-1 Q0 MARCO_27_134525988-1 32 88.135895 hybrid +149_4-1 Q0 MARCO_16_2695084455-1 33 88.133495 hybrid +149_4-1 Q0 MARCO_24_413414706-17 34 88.130145 hybrid +149_4-1 Q0 MARCO_23_1538329176-11 35 88.112995 hybrid +149_4-1 Q0 MARCO_17_2621145569-1 36 88.111545 hybrid +149_4-1 Q0 MARCO_11_1511787388-3 37 88.108252 hybrid +149_4-1 Q0 KILT_60912658-6 38 88.099695 hybrid +149_4-1 Q0 MARCO_14_257204425-4 39 88.092445 hybrid +149_4-1 Q0 MARCO_56_1399379364-9 40 88.090995 hybrid +149_4-1 Q0 MARCO_04_409501215-3 41 88.088903 hybrid +149_4-1 Q0 MARCO_53_1448548338-2 42 88.079245 hybrid +149_4-1 Q0 MARCO_53_86301228-13 43 88.078642 hybrid +149_4-1 Q0 MARCO_41_1328904068-34 44 88.076945 hybrid +149_4-1 Q0 MARCO_12_967385619-4 45 88.075845 hybrid +149_4-1 Q0 MARCO_13_362953068-9 46 88.072995 hybrid +149_4-1 Q0 MARCO_50_1876380199-21 47 88.060245 hybrid +149_4-1 Q0 MARCO_31_935752851-3 48 88.054095 hybrid +149_4-1 Q0 MARCO_32_1730524036-4 49 88.049945 hybrid +149_4-1 Q0 MARCO_51_371614478-7 50 88.041045 hybrid +149_4-1 Q0 MARCO_43_271210636-3 51 88.040845 hybrid +149_4-1 Q0 MARCO_03_289266512-18 52 88.037645 hybrid +149_4-1 Q0 MARCO_16_27865611-2 53 88.027495 hybrid +149_4-1 Q0 MARCO_50_2498479427-2 54 88.026136 hybrid +149_4-1 Q0 MARCO_11_91688302-1 55 88.014195 hybrid +149_4-1 Q0 MARCO_12_1398248480-14 56 88.012695 hybrid +149_4-1 Q0 MARCO_30_14259057-7 57 87.998745 hybrid +149_4-1 Q0 MARCO_18_2680083328-16 58 87.997645 hybrid +149_4-1 Q0 MARCO_10_988610214-8 59 87.995795 hybrid +149_4-1 Q0 MARCO_50_1781293610-1 60 87.995695 hybrid +149_4-1 Q0 KILT_4059023-13 61 87.987295 hybrid +149_4-1 Q0 KILT_5376868-7 62 87.987095 hybrid +149_4-1 Q0 MARCO_13_141012286-33 63 87.974945 hybrid +149_4-1 Q0 MARCO_57_613983176-11 64 87.974495 hybrid +149_4-1 Q0 MARCO_00_504114580-20 65 87.968695 hybrid +149_4-1 Q0 MARCO_17_4097213332-1 66 87.963145 hybrid +149_4-1 Q0 KILT_23469564-16 67 87.958545 hybrid +149_4-1 Q0 MARCO_53_86338603-5 68 87.950438 hybrid +149_4-1 Q0 MARCO_27_1313319523-12 69 87.946145 hybrid +149_4-1 Q0 MARCO_30_1909833118-26 70 87.934745 hybrid +149_4-1 Q0 MARCO_24_1910494372-6 71 87.934584 hybrid +149_4-1 Q0 MARCO_50_930260817-5 72 87.912556 hybrid +149_4-1 Q0 MARCO_34_1162426808-1 73 87.894845 hybrid +149_4-1 Q0 MARCO_53_1373867727-4 74 87.893695 hybrid +149_4-1 Q0 MARCO_50_1418995341-4 75 87.893332 hybrid +149_4-1 Q0 MARCO_50_988690107-12 76 87.891845 hybrid +149_4-1 Q0 MARCO_31_1027021731-39 77 87.888445 hybrid +149_4-1 Q0 MARCO_08_816090904-5 78 87.884100 hybrid +149_4-1 Q0 MARCO_50_2418617466-13 79 87.883745 hybrid +149_4-1 Q0 MARCO_21_1027957157-7 80 87.881195 hybrid +149_4-1 Q0 MARCO_13_1167167495-9 81 87.874545 hybrid +149_4-1 Q0 MARCO_19_2056728389-2 82 87.873747 hybrid +149_4-1 Q0 MARCO_50_1399796977-17 83 87.873739 hybrid +149_4-1 Q0 MARCO_50_708316564-9 84 87.872795 hybrid +149_4-1 Q0 MARCO_39_864658027-3 85 87.866232 hybrid +149_4-1 Q0 MARCO_41_884716676-10 86 87.863545 hybrid +149_4-1 Q0 MARCO_29_1169564639-2 87 87.855833 hybrid +149_4-1 Q0 MARCO_21_381040827-1 88 87.855045 hybrid +149_4-1 Q0 MARCO_39_758110571-4 89 87.854095 hybrid +149_4-1 Q0 MARCO_50_2504117447-47 90 87.847700 hybrid +149_4-1 Q0 MARCO_12_1259610080-11 91 87.844995 hybrid +149_4-1 Q0 MARCO_56_488292098-2 92 87.844095 hybrid +149_4-1 Q0 MARCO_02_1250148931-5 93 87.842795 hybrid +149_4-1 Q0 MARCO_53_1365652193-2 94 87.841495 hybrid +149_4-1 Q0 MARCO_30_456981311-12 95 87.838377 hybrid +149_4-1 Q0 MARCO_26_1740757656-7 96 87.834595 hybrid +149_4-1 Q0 MARCO_41_1834051265-1 97 87.832345 hybrid +149_4-1 Q0 MARCO_13_432527240-1 98 87.829115 hybrid +149_4-1 Q0 MARCO_17_2621145569-16 99 87.826795 hybrid +149_4-1 Q0 MARCO_32_104275416-3 100 87.825295 hybrid diff --git a/runs/hybrid_0.5_normalized.txt b/runs/hybrid_0.5_normalized.txt new file mode 100644 index 0000000000000000000000000000000000000000..dde776619d3bc012eb2252e138d9130e9eb6ee7f --- /dev/null +++ b/runs/hybrid_0.5_normalized.txt @@ -0,0 +1,20500 @@ +132_1-1 Q0 KILT_15421310-48 1 0.249997 hybrid +132_1-1 Q0 KILT_3314050-2 2 0.245011 hybrid +132_1-1 Q0 KILT_40136741-1 3 0.209420 hybrid +132_1-1 Q0 KILT_19303381-1 4 0.208877 hybrid +132_1-1 Q0 KILT_2458522-10 5 0.201291 hybrid +132_1-1 Q0 KILT_2458522-9 6 0.178027 hybrid +132_1-1 Q0 KILT_13053979-2 7 0.110454 hybrid +132_1-1 Q0 KILT_22807088-1 8 0.072892 hybrid +132_1-1 Q0 KILT_3314050-3 9 0.054197 hybrid +132_1-1 Q0 KILT_15421310-50 10 0.021715 hybrid +132_1-1 Q0 KILT_15421310-49 11 0.009643 hybrid +132_1-1 Q0 KILT_30203400-1 12 -0.005636 hybrid +132_1-1 Q0 KILT_3314050-1 13 -0.009680 hybrid +132_1-1 Q0 KILT_22977392-8 14 -0.014678 hybrid +132_1-1 Q0 KILT_847880-3 15 -0.018302 hybrid +132_1-1 Q0 MARCO_16_1635573462-6 16 -0.023350 hybrid +132_1-1 Q0 KILT_38186365-2 17 -0.047109 hybrid +132_1-1 Q0 KILT_16200976-2 18 -0.056199 hybrid +132_1-1 Q0 MARCO_17_4116009428-5 19 -0.062737 hybrid +132_1-1 Q0 MARCO_17_4116009428-7 20 -0.062737 hybrid +132_1-1 Q0 MARCO_17_4116009428-9 21 -0.062737 hybrid +132_1-1 Q0 KILT_1412241-34 22 -0.070509 hybrid +132_1-1 Q0 KILT_49198040-1 23 -0.074626 hybrid +132_1-1 Q0 KILT_15421310-46 24 -0.081633 hybrid +132_1-1 Q0 KILT_15421310-47 25 -0.084048 hybrid +132_1-1 Q0 KILT_25048872-1 26 -0.093020 hybrid +132_1-1 Q0 KILT_3314050-5 27 -0.108278 hybrid +132_1-1 Q0 KILT_35323878-1 28 -0.114852 hybrid +132_1-1 Q0 KILT_3814666-1 29 -0.123257 hybrid +132_1-1 Q0 MARCO_53_1470809951-2 30 -0.132315 hybrid +132_1-1 Q0 KILT_16200976-1 31 -0.133284 hybrid +132_1-1 Q0 KILT_11920075-1 32 -0.133819 hybrid +132_1-1 Q0 KILT_13196219-1 33 -0.134852 hybrid +132_1-1 Q0 KILT_23982012-2 34 -0.143145 hybrid +132_1-1 Q0 KILT_22807088-2 35 -0.145543 hybrid +132_1-1 Q0 KILT_7774682-2 36 -0.147936 hybrid +132_1-1 Q0 KILT_36241600-4 37 -0.149821 hybrid +132_1-1 Q0 KILT_2458522-4 38 -0.158954 hybrid +132_1-1 Q0 KILT_40484296-1 39 -0.186920 hybrid +132_1-1 Q0 KILT_472412-2 40 -0.192236 hybrid +132_1-1 Q0 KILT_1753646-23 41 -0.194099 hybrid +132_1-1 Q0 KILT_7506634-6 42 -0.196867 hybrid +132_1-1 Q0 MARCO_10_266906113-3 43 -0.203313 hybrid +132_1-1 Q0 KILT_2998069-1 44 -0.204711 hybrid +132_1-1 Q0 KILT_2458522-8 45 -0.205019 hybrid +132_1-1 Q0 KILT_9063580-3 46 -0.215299 hybrid +132_1-1 Q0 KILT_464847-10 47 -0.215620 hybrid +132_1-1 Q0 KILT_39363681-4 48 -0.223195 hybrid +132_1-1 Q0 KILT_43415517-1 49 -0.224143 hybrid +132_1-1 Q0 KILT_16204724-1 50 -0.224352 hybrid +132_1-1 Q0 KILT_3314050-4 51 -0.225299 hybrid +132_1-1 Q0 KILT_3137483-1 52 -0.225733 hybrid +132_1-1 Q0 KILT_2998069-6 53 -0.232194 hybrid +132_1-1 Q0 KILT_947570-4 54 -0.232521 hybrid +132_1-1 Q0 MARCO_53_1038795391-1 55 -0.234159 hybrid +132_1-1 Q0 MARCO_55_248915295-6 56 -0.234720 hybrid +132_1-1 Q0 KILT_2998069-4 57 -0.236458 hybrid +132_1-1 Q0 MARCO_35_1719309081-36 58 -0.240261 hybrid +132_1-1 Q0 KILT_610171-2 59 -0.244513 hybrid +132_1-1 Q0 KILT_44931434-4 60 -0.247211 hybrid +132_1-1 Q0 KILT_17913216-3 61 -0.247425 hybrid +132_1-1 Q0 MARCO_33_1621342262-1 62 -0.250003 hybrid +132_1-1 Q0 KILT_1753646-24 63 -0.253315 hybrid +132_1-1 Q0 KILT_21931784-4 64 -0.254331 hybrid +132_1-1 Q0 KILT_2338146-2 65 -0.255214 hybrid +132_1-1 Q0 KILT_1801215-1 66 -0.261687 hybrid +132_1-1 Q0 KILT_955962-3 67 -0.263314 hybrid +132_1-1 Q0 MARCO_30_1605964568-1 68 -0.266775 hybrid +132_1-1 Q0 KILT_23944943-4 69 -0.268823 hybrid +132_1-1 Q0 MARCO_33_1621342262-2 70 -0.270694 hybrid +132_1-1 Q0 KILT_2081636-2 71 -0.273619 hybrid +132_1-1 Q0 KILT_26521678-3 72 -0.275413 hybrid +132_1-1 Q0 MARCO_29_1328890399-3 73 -0.278662 hybrid +132_1-1 Q0 KILT_9376574-6 74 -0.283036 hybrid +132_1-1 Q0 KILT_1753646-22 75 -0.286760 hybrid +132_1-1 Q0 KILT_464836-2 76 -0.288250 hybrid +132_1-1 Q0 KILT_2111892-10 77 -0.290595 hybrid +132_1-1 Q0 MARCO_16_2987067896-18 78 -0.290692 hybrid +132_1-1 Q0 KILT_1933663-2 79 -0.291447 hybrid +132_1-1 Q0 KILT_44446707-1 80 -0.292399 hybrid +132_1-1 Q0 KILT_13840139-1 81 -0.293036 hybrid +132_1-1 Q0 KILT_4068372-3 82 -0.295065 hybrid +132_1-1 Q0 KILT_52789775-1 83 -0.299311 hybrid +132_1-1 Q0 KILT_40688666-2 84 -0.300274 hybrid +132_1-1 Q0 MARCO_16_4109776167-13 85 -0.301602 hybrid +132_1-1 Q0 KILT_42582633-3 86 -0.304568 hybrid +132_1-1 Q0 KILT_48675588-1 87 -0.304611 hybrid +132_1-1 Q0 KILT_5481528-2 88 -0.305141 hybrid +132_1-1 Q0 KILT_1840352-7 89 -0.305264 hybrid +132_1-1 Q0 KILT_2111892-1 90 -0.305317 hybrid +132_1-1 Q0 KILT_3137483-3 91 -0.305639 hybrid +132_1-1 Q0 KILT_36521018-1 92 -0.305708 hybrid +132_1-1 Q0 KILT_2421366-8 93 -0.309627 hybrid +132_1-1 Q0 KILT_41226911-1 94 -0.310414 hybrid +132_1-1 Q0 KILT_2731755-1 95 -0.312057 hybrid +132_1-1 Q0 KILT_16076835-1 96 -0.312271 hybrid +132_1-1 Q0 KILT_37659118-1 97 -0.313353 hybrid +132_1-1 Q0 MARCO_33_1621342262-3 98 -0.313446 hybrid +132_1-1 Q0 MARCO_16_1636454939-5 99 -0.316570 hybrid +132_1-1 Q0 KILT_22977392-9 100 -0.317256 hybrid +132_1-3 Q0 MARCO_58_1506442456-5 1 0.250002 hybrid +132_1-3 Q0 MARCO_07_1588133905-8 2 0.196066 hybrid +132_1-3 Q0 MARCO_18_918960049-9 3 0.183224 hybrid +132_1-3 Q0 MARCO_06_231302327-9 4 0.160734 hybrid +132_1-3 Q0 MARCO_06_231302327-5 5 0.115159 hybrid +132_1-3 Q0 KILT_59182557-2 6 0.113201 hybrid +132_1-3 Q0 MARCO_18_1298916707-9 7 0.085824 hybrid +132_1-3 Q0 MARCO_02_1543368057-11 8 0.063113 hybrid +132_1-3 Q0 MARCO_18_925604372-44 9 0.057699 hybrid +132_1-3 Q0 MARCO_19_604576804-42 10 0.037821 hybrid +132_1-3 Q0 MARCO_32_261254719-2 11 0.023761 hybrid +132_1-3 Q0 MARCO_34_890099330-6 12 0.013518 hybrid +132_1-3 Q0 MARCO_10_828766205-3 13 0.000328 hybrid +132_1-3 Q0 MARCO_03_1616118076-2 14 -0.011679 hybrid +132_1-3 Q0 MARCO_48_242336517-2 15 -0.012076 hybrid +132_1-3 Q0 MARCO_18_2866145270-4 16 -0.018764 hybrid +132_1-3 Q0 MARCO_26_816952468-4 17 -0.035342 hybrid +132_1-3 Q0 MARCO_15_1986073531-10 18 -0.037571 hybrid +132_1-3 Q0 MARCO_23_1082902069-12 19 -0.043888 hybrid +132_1-3 Q0 MARCO_26_1845078719-3 20 -0.050801 hybrid +132_1-3 Q0 MARCO_00_1103558259-10 21 -0.053116 hybrid +132_1-3 Q0 MARCO_54_316032144-6 22 -0.057963 hybrid +132_1-3 Q0 MARCO_03_254326605-5 23 -0.058603 hybrid +132_1-3 Q0 MARCO_26_816952468-5 24 -0.070285 hybrid +132_1-3 Q0 KILT_3720257-10 25 -0.070638 hybrid +132_1-3 Q0 MARCO_27_1333359271-2 26 -0.070972 hybrid +132_1-3 Q0 MARCO_04_1490023419-26 27 -0.073548 hybrid +132_1-3 Q0 MARCO_10_804225852-2 28 -0.074248 hybrid +132_1-3 Q0 MARCO_50_928058946-4 29 -0.078417 hybrid +132_1-3 Q0 MARCO_31_899439621-5 30 -0.080098 hybrid +132_1-3 Q0 MARCO_06_231302327-4 31 -0.081228 hybrid +132_1-3 Q0 MARCO_36_997109766-6 32 -0.088466 hybrid +132_1-3 Q0 MARCO_39_609949550-4 33 -0.108609 hybrid +132_1-3 Q0 MARCO_51_2002129775-19 34 -0.109331 hybrid +132_1-3 Q0 MARCO_11_1452404406-4 35 -0.113117 hybrid +132_1-3 Q0 MARCO_18_925604372-5 36 -0.117327 hybrid +132_1-3 Q0 KILT_598434-12 37 -0.117494 hybrid +132_1-3 Q0 MARCO_37_1183902612-5 38 -0.121646 hybrid +132_1-3 Q0 MARCO_50_1524010470-3 39 -0.123627 hybrid +132_1-3 Q0 MARCO_45_1326000842-4 40 -0.124714 hybrid +132_1-3 Q0 MARCO_28_437000097-15 41 -0.126533 hybrid +132_1-3 Q0 MARCO_57_910685675-2 42 -0.128342 hybrid +132_1-3 Q0 MARCO_50_1523886747-14 43 -0.132218 hybrid +132_1-3 Q0 MARCO_17_4142257896-34 44 -0.141870 hybrid +132_1-3 Q0 KILT_12388149-2 45 -0.142366 hybrid +132_1-3 Q0 MARCO_36_997109766-5 46 -0.150403 hybrid +132_1-3 Q0 MARCO_10_804332965-2 47 -0.151851 hybrid +132_1-3 Q0 MARCO_57_912859654-9 48 -0.169143 hybrid +132_1-3 Q0 MARCO_45_976708614-7 49 -0.179020 hybrid +132_1-3 Q0 MARCO_27_917274460-2 50 -0.179828 hybrid +132_1-3 Q0 MARCO_31_899439621-6 51 -0.187616 hybrid +132_1-3 Q0 MARCO_51_2002129775-28 52 -0.201099 hybrid +132_1-3 Q0 MARCO_50_2147642174-88 53 -0.204994 hybrid +132_1-3 Q0 MARCO_50_2149491569-26 54 -0.205320 hybrid +132_1-3 Q0 MARCO_10_828766205-2 55 -0.206228 hybrid +132_1-3 Q0 MARCO_25_1768567979-3 56 -0.207241 hybrid +132_1-3 Q0 MARCO_17_4142257896-51 57 -0.207426 hybrid +132_1-3 Q0 MARCO_51_2008589623-21 58 -0.214939 hybrid +132_1-3 Q0 MARCO_45_1323998215-5 59 -0.215530 hybrid +132_1-3 Q0 MARCO_50_2149436416-41 60 -0.216306 hybrid +132_1-3 Q0 MARCO_00_1102877206-2 61 -0.218007 hybrid +132_1-3 Q0 MARCO_13_436497401-6 62 -0.220729 hybrid +132_1-3 Q0 MARCO_00_1103558259-11 63 -0.221581 hybrid +132_1-3 Q0 MARCO_39_609949550-8 64 -0.222953 hybrid +132_1-3 Q0 KILT_10304194-4 65 -0.231802 hybrid +132_1-3 Q0 MARCO_17_1686012448-8 66 -0.232614 hybrid +132_1-3 Q0 MARCO_51_1632970605-2 67 -0.232858 hybrid +132_1-3 Q0 MARCO_20_1691482493-2 68 -0.235921 hybrid +132_1-3 Q0 MARCO_45_533555071-2 69 -0.236350 hybrid +132_1-3 Q0 MARCO_51_1632970605-7 70 -0.241350 hybrid +132_1-3 Q0 MARCO_47_1515337872-8 71 -0.242631 hybrid +132_1-3 Q0 MARCO_50_1422320383-17 72 -0.243922 hybrid +132_1-3 Q0 MARCO_02_441612572-4 73 -0.244806 hybrid +132_1-3 Q0 MARCO_18_925604372-43 74 -0.245068 hybrid +132_1-3 Q0 MARCO_39_609949550-15 75 -0.245402 hybrid +132_1-3 Q0 MARCO_39_609949550-12 76 -0.245822 hybrid +132_1-3 Q0 MARCO_59_724229737-1 77 -0.249998 hybrid +132_1-3 Q0 MARCO_15_132365987-11 78 -0.253163 hybrid +132_1-3 Q0 MARCO_50_1941075938-16 79 -0.254021 hybrid +132_1-3 Q0 MARCO_28_445566701-2 80 -0.255807 hybrid +132_1-3 Q0 MARCO_00_1103399945-24 81 -0.261308 hybrid +132_1-3 Q0 MARCO_50_2149706293-102 82 -0.262025 hybrid +132_1-3 Q0 MARCO_37_706820400-4 83 -0.262540 hybrid +132_1-3 Q0 MARCO_31_644387214-3 84 -0.262978 hybrid +132_1-3 Q0 KILT_13294262-1 85 -0.263081 hybrid +132_1-3 Q0 MARCO_36_823378330-3 86 -0.263794 hybrid +132_1-3 Q0 MARCO_30_1655476893-8 87 -0.267842 hybrid +132_1-3 Q0 KILT_2240837-4 88 -0.269823 hybrid +132_1-3 Q0 MARCO_31_1436616854-32 89 -0.272837 hybrid +132_1-3 Q0 MARCO_41_876236706-4 90 -0.273464 hybrid +132_1-3 Q0 MARCO_31_1436668743-16 91 -0.277557 hybrid +132_1-3 Q0 MARCO_50_1425968040-32 92 -0.278148 hybrid +132_1-3 Q0 MARCO_00_1103718103-2 93 -0.279389 hybrid +132_1-3 Q0 MARCO_00_1103778565-30 94 -0.281492 hybrid +132_1-3 Q0 MARCO_50_2149859495-12 95 -0.281510 hybrid +132_1-3 Q0 MARCO_50_2149491569-24 96 -0.282309 hybrid +132_1-3 Q0 MARCO_15_863846221-2 97 -0.282575 hybrid +132_1-3 Q0 MARCO_51_2012158191-3 98 -0.283229 hybrid +132_1-3 Q0 MARCO_45_1323998215-4 99 -0.284954 hybrid +132_1-3 Q0 MARCO_10_236651653-3 100 -0.287168 hybrid +132_1-5 Q0 MARCO_58_1506420919-3 1 0.250000 hybrid +132_1-5 Q0 MARCO_03_254326605-5 2 0.234654 hybrid +132_1-5 Q0 MARCO_10_236394391-7 3 0.128242 hybrid +132_1-5 Q0 MARCO_10_828766205-3 4 0.059366 hybrid +132_1-5 Q0 MARCO_31_645942736-2 5 0.015802 hybrid +132_1-5 Q0 MARCO_19_609601020-29 6 0.004932 hybrid +132_1-5 Q0 MARCO_10_236406528-1 7 0.002570 hybrid +132_1-5 Q0 MARCO_30_1655476893-8 8 -0.014538 hybrid +132_1-5 Q0 MARCO_13_436830247-3 9 -0.018966 hybrid +132_1-5 Q0 MARCO_00_1103829918-5 10 -0.035722 hybrid +132_1-5 Q0 MARCO_30_1129690938-4 11 -0.042705 hybrid +132_1-5 Q0 MARCO_50_2149706293-102 12 -0.049892 hybrid +132_1-5 Q0 MARCO_39_1570912715-7 13 -0.055259 hybrid +132_1-5 Q0 MARCO_20_1124184139-3 14 -0.063787 hybrid +132_1-5 Q0 MARCO_02_486636638-2 15 -0.090658 hybrid +132_1-5 Q0 MARCO_15_132412308-6 16 -0.098200 hybrid +132_1-5 Q0 MARCO_19_603398757-17 17 -0.108264 hybrid +132_1-5 Q0 MARCO_42_165920228-2 18 -0.109016 hybrid +132_1-5 Q0 MARCO_20_1691148513-11 19 -0.109721 hybrid +132_1-5 Q0 MARCO_19_607425738-12 20 -0.127456 hybrid +132_1-5 Q0 MARCO_39_609949550-9 21 -0.134947 hybrid +132_1-5 Q0 KILT_59338634-30 22 -0.155542 hybrid +132_1-5 Q0 MARCO_11_760134771-26 23 -0.160706 hybrid +132_1-5 Q0 MARCO_24_1718905825-4 24 -0.162566 hybrid +132_1-5 Q0 MARCO_17_694749195-6 25 -0.164660 hybrid +132_1-5 Q0 MARCO_04_1490023419-26 26 -0.168530 hybrid +132_1-5 Q0 MARCO_57_909001994-3 27 -0.170959 hybrid +132_1-5 Q0 MARCO_50_2147642174-79 28 -0.171464 hybrid +132_1-5 Q0 MARCO_00_1103829918-3 29 -0.172081 hybrid +132_1-5 Q0 MARCO_45_976708614-8 30 -0.178752 hybrid +132_1-5 Q0 MARCO_11_760134771-28 31 -0.186614 hybrid +132_1-5 Q0 MARCO_45_1320884032-3 32 -0.187400 hybrid +132_1-5 Q0 MARCO_58_1506442456-5 33 -0.190761 hybrid +132_1-5 Q0 MARCO_54_1594732331-23 34 -0.195047 hybrid +132_1-5 Q0 MARCO_19_603398757-16 35 -0.200838 hybrid +132_1-5 Q0 MARCO_56_1007915785-11 36 -0.204745 hybrid +132_1-5 Q0 MARCO_19_2045096479-6 37 -0.216367 hybrid +132_1-5 Q0 MARCO_51_694229016-5 38 -0.217604 hybrid +132_1-5 Q0 MARCO_15_1986073531-10 39 -0.218302 hybrid +132_1-5 Q0 KILT_60571674-5 40 -0.221222 hybrid +132_1-5 Q0 MARCO_23_1771952224-9 41 -0.221660 hybrid +132_1-5 Q0 MARCO_19_604576804-41 42 -0.235095 hybrid +132_1-5 Q0 MARCO_13_436876254-5 43 -0.236091 hybrid +132_1-5 Q0 MARCO_58_285511344-11 44 -0.236880 hybrid +132_1-5 Q0 MARCO_15_132940390-6 45 -0.238683 hybrid +132_1-5 Q0 MARCO_58_1733551372-2 46 -0.240126 hybrid +132_1-5 Q0 MARCO_37_708108386-4 47 -0.241522 hybrid +132_1-5 Q0 MARCO_09_353413172-2 48 -0.242183 hybrid +132_1-5 Q0 MARCO_37_708108386-3 49 -0.242474 hybrid +132_1-5 Q0 MARCO_00_1102954422-6 50 -0.247581 hybrid +132_1-5 Q0 MARCO_05_426664012-7 51 -0.247615 hybrid +132_1-5 Q0 MARCO_02_1687136851-3 52 -0.250000 hybrid +132_1-5 Q0 MARCO_50_2147642174-87 53 -0.252080 hybrid +132_1-5 Q0 MARCO_39_609799842-9 54 -0.252589 hybrid +132_1-5 Q0 MARCO_22_1650774646-3 55 -0.256475 hybrid +132_1-5 Q0 MARCO_47_1515239096-7 56 -0.257427 hybrid +132_1-5 Q0 MARCO_10_236418972-2 57 -0.259521 hybrid +132_1-5 Q0 MARCO_04_1490023419-25 58 -0.260246 hybrid +132_1-5 Q0 MARCO_51_1903558454-24 59 -0.272878 hybrid +132_1-5 Q0 MARCO_10_236646090-2 60 -0.273214 hybrid +132_1-5 Q0 KILT_59338634-57 61 -0.273905 hybrid +132_1-5 Q0 MARCO_25_518489685-24 62 -0.274301 hybrid +132_1-5 Q0 KILT_59338634-8 63 -0.275342 hybrid +132_1-5 Q0 MARCO_17_368601977-28 64 -0.275992 hybrid +132_1-5 Q0 MARCO_45_846405189-3 65 -0.281370 hybrid +132_1-5 Q0 MARCO_58_1506600440-2 66 -0.282813 hybrid +132_1-5 Q0 MARCO_17_368601977-10 67 -0.286025 hybrid +132_1-5 Q0 MARCO_47_417315831-6 68 -0.286157 hybrid +132_1-5 Q0 MARCO_23_31278898-28 69 -0.286550 hybrid +132_1-5 Q0 MARCO_20_1691148513-2 70 -0.288007 hybrid +132_1-5 Q0 MARCO_20_1691433948-5 71 -0.291362 hybrid +132_1-5 Q0 MARCO_47_1515177960-13 72 -0.291893 hybrid +132_1-5 Q0 MARCO_47_1509828693-4 73 -0.295530 hybrid +132_1-5 Q0 MARCO_22_1644883624-40 74 -0.295736 hybrid +132_1-5 Q0 MARCO_20_1691148513-18 75 -0.298474 hybrid +132_1-5 Q0 MARCO_27_917274460-2 76 -0.301876 hybrid +132_1-5 Q0 MARCO_48_242356551-2 77 -0.302096 hybrid +132_1-5 Q0 MARCO_13_453504391-34 78 -0.305841 hybrid +132_1-5 Q0 MARCO_25_518489685-31 79 -0.305844 hybrid +132_1-5 Q0 MARCO_31_1436406151-1 80 -0.306616 hybrid +132_1-5 Q0 MARCO_28_437000097-15 81 -0.308402 hybrid +132_1-5 Q0 MARCO_58_1505243037-3 82 -0.308778 hybrid +132_1-5 Q0 MARCO_19_1473440804-7 83 -0.309303 hybrid +132_1-5 Q0 KILT_59338634-66 84 -0.309785 hybrid +132_1-5 Q0 MARCO_20_1691148513-21 85 -0.310886 hybrid +132_1-5 Q0 MARCO_29_1205014654-7 86 -0.312566 hybrid +132_1-5 Q0 MARCO_00_1103701897-3 87 -0.312601 hybrid +132_1-5 Q0 MARCO_11_1538058076-7 88 -0.313576 hybrid +132_1-5 Q0 MARCO_13_436467379-6 89 -0.314295 hybrid +132_1-5 Q0 MARCO_51_1318862416-2 90 -0.314972 hybrid +132_1-5 Q0 MARCO_33_1610789522-3 91 -0.316406 hybrid +132_1-5 Q0 MARCO_36_823378330-3 92 -0.317015 hybrid +132_1-5 Q0 MARCO_13_436684399-3 93 -0.317769 hybrid +132_1-5 Q0 MARCO_19_607425738-13 94 -0.318445 hybrid +132_1-5 Q0 MARCO_48_242061072-3 95 -0.319164 hybrid +132_1-5 Q0 MARCO_05_426664012-11 96 -0.319611 hybrid +132_1-5 Q0 MARCO_06_1867900076-7 97 -0.322681 hybrid +132_1-5 Q0 MARCO_05_807840948-8 98 -0.326042 hybrid +132_1-5 Q0 MARCO_13_436806846-5 99 -0.327062 hybrid +132_1-5 Q0 MARCO_51_2003533718-9 100 -0.327821 hybrid +132_1-7 Q0 MARCO_20_1080149910-3 1 0.619087 hybrid +132_1-7 Q0 MARCO_20_1080149910-1 2 0.554056 hybrid +132_1-7 Q0 MARCO_44_608301288-3 3 0.250000 hybrid +132_1-7 Q0 MARCO_41_1403431690-48 4 -0.060451 hybrid +132_1-7 Q0 MARCO_20_1080149910-2 5 -0.087486 hybrid +132_1-7 Q0 KILT_9633122-2 6 -0.098499 hybrid +132_1-7 Q0 MARCO_14_1096592687-6 7 -0.107453 hybrid +132_1-7 Q0 MARCO_41_1188921370-50 8 -0.152181 hybrid +132_1-7 Q0 MARCO_12_1726299580-22 9 -0.170824 hybrid +132_1-7 Q0 MARCO_57_1272692344-7 10 -0.175358 hybrid +132_1-7 Q0 MARCO_44_99453452-6 11 -0.179939 hybrid +132_1-7 Q0 MARCO_10_553286744-9 12 -0.182646 hybrid +132_1-7 Q0 MARCO_20_1078320872-3 13 -0.201379 hybrid +132_1-7 Q0 MARCO_41_1195782895-40 14 -0.211292 hybrid +132_1-7 Q0 MARCO_24_1436660303-8 15 -0.217936 hybrid +132_1-7 Q0 MARCO_20_1078193273-2 16 -0.219446 hybrid +132_1-7 Q0 MARCO_50_1401708149-14 17 -0.222977 hybrid +132_1-7 Q0 MARCO_50_482784560-7 18 -0.239690 hybrid +132_1-7 Q0 MARCO_16_441015391-39 19 -0.243278 hybrid +132_1-7 Q0 MARCO_41_1359798319-2 20 -0.244252 hybrid +132_1-7 Q0 MARCO_20_793251151-2 21 -0.244959 hybrid +132_1-7 Q0 MARCO_41_1113672845-5 22 -0.248440 hybrid +132_1-7 Q0 MARCO_20_1068143192-2 23 -0.250000 hybrid +132_1-7 Q0 MARCO_24_1429122752-1 24 -0.250203 hybrid +132_1-7 Q0 MARCO_41_1120557748-61 25 -0.252291 hybrid +132_1-7 Q0 MARCO_54_1854586839-3 26 -0.258094 hybrid +132_1-7 Q0 MARCO_29_1140061185-1 27 -0.258726 hybrid +132_1-7 Q0 MARCO_48_1746426869-14 28 -0.259795 hybrid +132_1-7 Q0 MARCO_50_1618621781-84 29 -0.270757 hybrid +132_1-7 Q0 MARCO_07_1581564066-7 30 -0.271609 hybrid +132_1-7 Q0 MARCO_50_2393043686-44 31 -0.272619 hybrid +132_1-7 Q0 MARCO_01_1873912776-19 32 -0.278634 hybrid +132_1-7 Q0 MARCO_20_1061396219-2 33 -0.281435 hybrid +132_1-7 Q0 MARCO_20_1103845017-5 34 -0.283263 hybrid +132_1-7 Q0 MARCO_41_1395334552-12 35 -0.284579 hybrid +132_1-7 Q0 MARCO_30_204228925-275 36 -0.311612 hybrid +132_1-7 Q0 KILT_39846214-3 37 -0.313952 hybrid +132_1-7 Q0 MARCO_23_296547047-1 38 -0.314914 hybrid +132_1-7 Q0 MARCO_50_2384128295-13 39 -0.314950 hybrid +132_1-7 Q0 MARCO_20_1048511521-2 40 -0.320974 hybrid +132_1-7 Q0 MARCO_50_1677568946-8 41 -0.329774 hybrid +132_1-7 Q0 MARCO_20_1039883746-1 42 -0.331120 hybrid +132_1-7 Q0 MARCO_21_1434808992-4 43 -0.332661 hybrid +132_1-7 Q0 MARCO_41_1223745193-34 44 -0.335420 hybrid +132_1-7 Q0 MARCO_54_1855035210-2 45 -0.339647 hybrid +132_1-7 Q0 MARCO_54_1568868146-1 46 -0.340692 hybrid +132_1-7 Q0 MARCO_41_1399839309-5 47 -0.344653 hybrid +132_1-7 Q0 MARCO_20_1084020319-2 48 -0.346766 hybrid +132_1-7 Q0 MARCO_33_1122911489-1 49 -0.347200 hybrid +132_1-7 Q0 MARCO_50_1434223397-6 50 -0.348802 hybrid +132_1-7 Q0 MARCO_50_1421508053-6 51 -0.351709 hybrid +132_1-7 Q0 MARCO_41_1191084465-7 52 -0.352998 hybrid +132_1-7 Q0 MARCO_47_125442160-2 53 -0.353367 hybrid +132_1-7 Q0 MARCO_44_1858592779-1 54 -0.354636 hybrid +132_1-7 Q0 MARCO_44_1488052634-1 55 -0.356121 hybrid +132_1-7 Q0 MARCO_33_1122144812-1 56 -0.356233 hybrid +132_1-7 Q0 MARCO_50_1618621781-16 57 -0.357143 hybrid +132_1-7 Q0 MARCO_20_1048511521-3 58 -0.358305 hybrid +132_1-7 Q0 MARCO_20_1086585043-3 59 -0.358612 hybrid +132_1-7 Q0 MARCO_06_1225876216-165 60 -0.359705 hybrid +132_1-7 Q0 MARCO_23_295989710-1 61 -0.362526 hybrid +132_1-7 Q0 MARCO_23_295989710-5 62 -0.364683 hybrid +132_1-7 Q0 MARCO_41_1402217732-36 63 -0.367028 hybrid +132_1-7 Q0 MARCO_09_385403783-1 64 -0.367075 hybrid +132_1-7 Q0 MARCO_33_1132393456-1 65 -0.367211 hybrid +132_1-7 Q0 MARCO_30_825719336-17 66 -0.369260 hybrid +132_1-7 Q0 MARCO_50_1618621781-78 67 -0.370497 hybrid +132_1-7 Q0 MARCO_10_1386504938-4 68 -0.370737 hybrid +132_1-7 Q0 MARCO_06_833099672-26 69 -0.373717 hybrid +132_1-7 Q0 KILT_8241411-8 70 -0.377892 hybrid +132_1-7 Q0 MARCO_54_1852503102-1 71 -0.382465 hybrid +132_1-7 Q0 MARCO_05_1141647725-4 72 -0.384437 hybrid +132_1-7 Q0 MARCO_09_707794158-2 73 -0.384445 hybrid +132_1-7 Q0 MARCO_19_1129340574-20 74 -0.384999 hybrid +132_1-7 Q0 MARCO_43_331143486-2 75 -0.385620 hybrid +132_1-7 Q0 MARCO_41_1241497501-4 76 -0.387372 hybrid +132_1-7 Q0 MARCO_31_92541914-10 77 -0.387561 hybrid +132_1-7 Q0 MARCO_10_1386314100-3 78 -0.387970 hybrid +132_1-7 Q0 MARCO_33_1132398009-1 79 -0.388801 hybrid +132_1-7 Q0 MARCO_41_2130302612-10 80 -0.390449 hybrid +132_1-7 Q0 MARCO_14_1518437536-1 81 -0.392390 hybrid +132_1-7 Q0 MARCO_20_1084020319-1 82 -0.393478 hybrid +132_1-7 Q0 MARCO_21_1038151731-2 83 -0.395325 hybrid +132_1-7 Q0 MARCO_52_364601199-5 84 -0.396295 hybrid +132_1-7 Q0 MARCO_20_1080859332-3 85 -0.396711 hybrid +132_1-7 Q0 MARCO_50_2384128295-49 86 -0.397458 hybrid +132_1-7 Q0 MARCO_59_887141422-13 87 -0.403689 hybrid +132_1-7 Q0 MARCO_59_887178216-17 88 -0.403689 hybrid +132_1-7 Q0 MARCO_59_887102746-9 89 -0.403689 hybrid +132_1-7 Q0 MARCO_59_887119492-13 90 -0.403689 hybrid +132_1-7 Q0 MARCO_40_1189255130-23 91 -0.404059 hybrid +132_1-7 Q0 MARCO_28_479386793-14 92 -0.407292 hybrid +132_1-7 Q0 MARCO_11_119826493-2 93 -0.408490 hybrid +132_1-7 Q0 MARCO_07_1592693514-4 94 -0.408957 hybrid +132_1-7 Q0 MARCO_47_129342253-1 95 -0.409809 hybrid +132_1-7 Q0 MARCO_41_1241497501-17 96 -0.410113 hybrid +132_1-7 Q0 MARCO_05_597542423-1 97 -0.411681 hybrid +132_1-7 Q0 KILT_58057983-1 98 -0.411700 hybrid +132_1-7 Q0 MARCO_07_711409109-3 99 -0.413527 hybrid +132_1-7 Q0 MARCO_20_1045501279-3 100 -0.414485 hybrid +132_2-1 Q0 MARCO_10_828766205-3 1 0.295289 hybrid +132_2-1 Q0 MARCO_28_424288304-4 2 0.250000 hybrid +132_2-1 Q0 MARCO_03_254326605-5 3 0.205793 hybrid +132_2-1 Q0 MARCO_00_1103829918-5 4 0.152068 hybrid +132_2-1 Q0 MARCO_31_644228898-2 5 0.135504 hybrid +132_2-1 Q0 MARCO_11_760134771-28 6 0.104087 hybrid +132_2-1 Q0 MARCO_10_236394391-7 7 0.102375 hybrid +132_2-1 Q0 MARCO_11_760134771-26 8 0.084534 hybrid +132_2-1 Q0 KILT_35226965-1 9 0.080947 hybrid +132_2-1 Q0 MARCO_51_1903558454-38 10 0.072902 hybrid +132_2-1 Q0 MARCO_19_603398757-29 11 0.058062 hybrid +132_2-1 Q0 MARCO_19_607425738-12 12 0.040193 hybrid +132_2-1 Q0 MARCO_19_607425738-13 13 0.012137 hybrid +132_2-1 Q0 MARCO_19_606923468-24 14 0.009395 hybrid +132_2-1 Q0 MARCO_27_917687231-39 15 -0.006913 hybrid +132_2-1 Q0 MARCO_46_1380912906-4 16 -0.008769 hybrid +132_2-1 Q0 MARCO_20_1691148513-13 17 -0.009160 hybrid +132_2-1 Q0 MARCO_14_126935813-3 18 -0.033852 hybrid +132_2-1 Q0 MARCO_15_132940390-6 19 -0.054315 hybrid +132_2-1 Q0 MARCO_51_1632226513-8 20 -0.055568 hybrid +132_2-1 Q0 MARCO_19_603398757-16 21 -0.058657 hybrid +132_2-1 Q0 MARCO_51_1318862416-2 22 -0.063013 hybrid +132_2-1 Q0 MARCO_23_53863428-7 23 -0.064048 hybrid +132_2-1 Q0 MARCO_30_1655476893-8 24 -0.074479 hybrid +132_2-1 Q0 MARCO_59_882821778-2 25 -0.082902 hybrid +132_2-1 Q0 MARCO_09_346768588-10 26 -0.083936 hybrid +132_2-1 Q0 MARCO_57_1273989673-2 27 -0.096671 hybrid +132_2-1 Q0 MARCO_20_1116793352-5 28 -0.098804 hybrid +132_2-1 Q0 MARCO_31_1436406151-1 29 -0.101107 hybrid +132_2-1 Q0 MARCO_50_1412547863-29 30 -0.108018 hybrid +132_2-1 Q0 MARCO_19_603398757-17 31 -0.112056 hybrid +132_2-1 Q0 KILT_35614913-9 32 -0.116920 hybrid +132_2-1 Q0 MARCO_25_1032729440-11 33 -0.121920 hybrid +132_2-1 Q0 MARCO_19_603200455-4 34 -0.123185 hybrid +132_2-1 Q0 MARCO_50_2386444010-48 35 -0.124223 hybrid +132_2-1 Q0 MARCO_51_1903558454-24 36 -0.124853 hybrid +132_2-1 Q0 MARCO_10_236646090-2 37 -0.126849 hybrid +132_2-1 Q0 MARCO_19_609601020-29 38 -0.127395 hybrid +132_2-1 Q0 MARCO_57_1273085015-2 39 -0.145428 hybrid +132_2-1 Q0 MARCO_43_329828458-6 40 -0.146681 hybrid +132_2-1 Q0 MARCO_20_1691148513-11 41 -0.149662 hybrid +132_2-1 Q0 MARCO_36_1434053815-6 42 -0.150244 hybrid +132_2-1 Q0 MARCO_58_1506420919-3 43 -0.154015 hybrid +132_2-1 Q0 MARCO_03_1031661350-2 44 -0.156569 hybrid +132_2-1 Q0 MARCO_37_708108386-4 45 -0.156848 hybrid +132_2-1 Q0 MARCO_13_436830247-3 46 -0.167770 hybrid +132_2-1 Q0 MARCO_19_607425738-23 47 -0.168185 hybrid +132_2-1 Q0 MARCO_19_604822460-1 48 -0.169630 hybrid +132_2-1 Q0 MARCO_19_604822460-2 49 -0.170228 hybrid +132_2-1 Q0 MARCO_19_607425738-11 50 -0.177463 hybrid +132_2-1 Q0 MARCO_19_607425738-10 51 -0.178656 hybrid +132_2-1 Q0 MARCO_50_2149706293-102 52 -0.184342 hybrid +132_2-1 Q0 MARCO_46_1380870490-8 53 -0.185040 hybrid +132_2-1 Q0 MARCO_31_645942736-2 54 -0.186489 hybrid +132_2-1 Q0 MARCO_19_603246174-24 55 -0.188009 hybrid +132_2-1 Q0 MARCO_04_1490023419-25 56 -0.190699 hybrid +132_2-1 Q0 MARCO_24_1718905825-4 57 -0.190731 hybrid +132_2-1 Q0 MARCO_19_603398757-28 58 -0.191525 hybrid +132_2-1 Q0 MARCO_46_1380912906-9 59 -0.195168 hybrid +132_2-1 Q0 MARCO_28_436713620-14 60 -0.196597 hybrid +132_2-1 Q0 MARCO_10_828766205-5 61 -0.197127 hybrid +132_2-1 Q0 MARCO_46_1380912906-11 62 -0.200004 hybrid +132_2-1 Q0 MARCO_26_110830341-26 63 -0.208560 hybrid +132_2-1 Q0 MARCO_15_132365987-5 64 -0.209681 hybrid +132_2-1 Q0 MARCO_05_807840948-8 65 -0.213085 hybrid +132_2-1 Q0 MARCO_10_236406528-1 66 -0.213089 hybrid +132_2-1 Q0 MARCO_15_132412308-6 67 -0.216277 hybrid +132_2-1 Q0 MARCO_20_1691433948-5 68 -0.219286 hybrid +132_2-1 Q0 MARCO_20_1692407345-3 69 -0.226828 hybrid +132_2-1 Q0 MARCO_25_518489685-24 70 -0.227658 hybrid +132_2-1 Q0 MARCO_43_777920951-6 71 -0.228548 hybrid +132_2-1 Q0 MARCO_05_319993906-4 72 -0.229262 hybrid +132_2-1 Q0 MARCO_38_616897910-3 73 -0.231812 hybrid +132_2-1 Q0 MARCO_20_1691148513-21 74 -0.234046 hybrid +132_2-1 Q0 MARCO_27_917687231-41 75 -0.234062 hybrid +132_2-1 Q0 MARCO_58_1590848865-3 76 -0.246792 hybrid +132_2-1 Q0 KILT_8713214-24 77 -0.246852 hybrid +132_2-1 Q0 MARCO_00_1102954422-6 78 -0.246979 hybrid +132_2-1 Q0 MARCO_10_236418972-2 79 -0.248516 hybrid +132_2-1 Q0 MARCO_06_1867900076-7 80 -0.249513 hybrid +132_2-1 Q0 MARCO_02_1687136851-3 81 -0.250000 hybrid +132_2-1 Q0 MARCO_26_107663067-2 82 -0.251385 hybrid +132_2-1 Q0 MARCO_11_16241769-5 83 -0.252753 hybrid +132_2-1 Q0 MARCO_20_1691148513-12 84 -0.255279 hybrid +132_2-1 Q0 MARCO_39_609949550-9 85 -0.255930 hybrid +132_2-1 Q0 MARCO_50_1409873441-6 86 -0.256975 hybrid +132_2-1 Q0 MARCO_19_609714360-11 87 -0.257466 hybrid +132_2-1 Q0 MARCO_28_555556942-3 88 -0.259002 hybrid +132_2-1 Q0 MARCO_50_1400953187-41 89 -0.265231 hybrid +132_2-1 Q0 MARCO_58_1506557259-4 90 -0.267821 hybrid +132_2-1 Q0 MARCO_37_708108386-3 91 -0.269992 hybrid +132_2-1 Q0 MARCO_20_1691148513-2 92 -0.270104 hybrid +132_2-1 Q0 MARCO_48_592632236-4 93 -0.273420 hybrid +132_2-1 Q0 MARCO_19_2045096479-6 94 -0.274641 hybrid +132_2-1 Q0 MARCO_19_603398757-20 95 -0.279864 hybrid +132_2-1 Q0 MARCO_57_1273383884-2 96 -0.282330 hybrid +132_2-1 Q0 MARCO_56_504950681-1 97 -0.286388 hybrid +132_2-1 Q0 MARCO_18_937585706-13 98 -0.287729 hybrid +132_2-1 Q0 MARCO_04_220440546-2 99 -0.288248 hybrid +132_2-1 Q0 MARCO_02_824114915-6 100 -0.295171 hybrid +132_2-11 Q0 MARCO_17_4116009428-5 1 0.267376 hybrid +132_2-11 Q0 MARCO_17_4116009428-7 2 0.267376 hybrid +132_2-11 Q0 MARCO_17_4116009428-9 3 0.267376 hybrid +132_2-11 Q0 MARCO_10_262751953-14 4 -0.047511 hybrid +132_2-11 Q0 MARCO_39_1740604538-5 5 -0.057984 hybrid +132_2-11 Q0 MARCO_15_137349888-17 6 -0.064955 hybrid +132_2-11 Q0 MARCO_15_137349888-16 7 -0.092552 hybrid +132_2-11 Q0 KILT_57401251-1 8 -0.141364 hybrid +132_2-11 Q0 MARCO_14_310245762-4 9 -0.146842 hybrid +132_2-11 Q0 MARCO_18_2387930429-41 10 -0.247494 hybrid +132_2-11 Q0 MARCO_33_1621342262-1 11 -0.250002 hybrid +132_2-11 Q0 MARCO_15_137349888-7 12 -0.261679 hybrid +132_2-11 Q0 KILT_55224799-3 13 -0.264473 hybrid +132_2-11 Q0 KILT_59629380-1 14 -0.278840 hybrid +132_2-11 Q0 MARCO_15_137349888-18 15 -0.292124 hybrid +132_2-11 Q0 MARCO_56_1008073699-11 16 -0.294232 hybrid +132_2-11 Q0 MARCO_18_2399142415-3 17 -0.326140 hybrid +132_2-11 Q0 KILT_28098423-8 18 -0.331546 hybrid +132_2-11 Q0 MARCO_43_761821671-18 19 -0.332165 hybrid +132_2-11 Q0 MARCO_15_137349888-19 20 -0.335472 hybrid +132_2-11 Q0 MARCO_45_1252968544-2 21 -0.350298 hybrid +132_2-11 Q0 MARCO_15_928569559-3 22 -0.351306 hybrid +132_2-11 Q0 MARCO_48_1380268854-156 23 -0.355630 hybrid +132_2-11 Q0 MARCO_34_473328558-5 24 -0.360855 hybrid +132_2-11 Q0 KILT_142135-7 25 -0.361230 hybrid +132_2-11 Q0 KILT_50916719-1 26 -0.367658 hybrid +132_2-11 Q0 MARCO_29_588048249-4 27 -0.374890 hybrid +132_2-11 Q0 KILT_61355160-1 28 -0.381092 hybrid +132_2-11 Q0 MARCO_10_262751953-5 29 -0.383771 hybrid +132_2-11 Q0 MARCO_52_1181882354-11 30 -0.386870 hybrid +132_2-11 Q0 KILT_38910419-1 31 -0.387639 hybrid +132_2-11 Q0 KILT_48530645-1 32 -0.397497 hybrid +132_2-11 Q0 MARCO_31_644392863-6 33 -0.404791 hybrid +132_2-11 Q0 KILT_44881142-1 34 -0.406541 hybrid +132_2-11 Q0 MARCO_33_1621342262-2 35 -0.407556 hybrid +132_2-11 Q0 MARCO_48_1380268854-161 36 -0.409340 hybrid +132_2-11 Q0 KILT_11905449-10 37 -0.413468 hybrid +132_2-11 Q0 KILT_39902915-6 38 -0.425727 hybrid +132_2-11 Q0 MARCO_17_433644800-9 39 -0.425850 hybrid +132_2-11 Q0 MARCO_17_3729682401-8 40 -0.430947 hybrid +132_2-11 Q0 MARCO_34_473320083-4 41 -0.437092 hybrid +132_2-11 Q0 MARCO_18_2399825708-3 42 -0.439554 hybrid +132_2-11 Q0 MARCO_13_1761053118-2 43 -0.440531 hybrid +132_2-11 Q0 MARCO_22_1479066750-4 44 -0.446044 hybrid +132_2-11 Q0 KILT_22214347-1 45 -0.449142 hybrid +132_2-11 Q0 MARCO_10_262743620-5 46 -0.449231 hybrid +132_2-11 Q0 MARCO_09_550758429-1 47 -0.450862 hybrid +132_2-11 Q0 MARCO_30_1605964568-7 48 -0.451251 hybrid +132_2-11 Q0 MARCO_29_867562507-2 49 -0.451521 hybrid +132_2-11 Q0 MARCO_17_656864599-23 50 -0.452215 hybrid +132_2-11 Q0 MARCO_16_4109776167-1 51 -0.453077 hybrid +132_2-11 Q0 MARCO_18_2399644705-3 52 -0.453497 hybrid +132_2-11 Q0 MARCO_06_1901320319-1 53 -0.456052 hybrid +132_2-11 Q0 KILT_39363681-4 54 -0.457705 hybrid +132_2-11 Q0 MARCO_36_948936826-2 55 -0.459836 hybrid +132_2-11 Q0 KILT_57969866-1 56 -0.461555 hybrid +132_2-11 Q0 KILT_25805637-1 57 -0.462148 hybrid +132_2-11 Q0 MARCO_30_1605964568-1 58 -0.462284 hybrid +132_2-11 Q0 MARCO_15_137349888-5 59 -0.462753 hybrid +132_2-11 Q0 MARCO_15_137349888-12 60 -0.464765 hybrid +132_2-11 Q0 MARCO_29_1211404641-2 61 -0.465322 hybrid +132_2-11 Q0 MARCO_59_334728958-2 62 -0.469645 hybrid +132_2-11 Q0 MARCO_20_55801011-4 63 -0.472651 hybrid +132_2-11 Q0 MARCO_16_3117875026-6 64 -0.473013 hybrid +132_2-11 Q0 MARCO_17_458535356-23 65 -0.474539 hybrid +132_2-11 Q0 MARCO_04_1494781292-3 66 -0.476833 hybrid +132_2-11 Q0 KILT_3549274-1 67 -0.480679 hybrid +132_2-11 Q0 KILT_46717581-1 68 -0.481055 hybrid +132_2-11 Q0 KILT_57401251-4 69 -0.482142 hybrid +132_2-11 Q0 MARCO_18_2399792468-3 70 -0.486470 hybrid +132_2-11 Q0 MARCO_33_1243127815-5 71 -0.487013 hybrid +132_2-11 Q0 MARCO_13_20078104-8 72 -0.487822 hybrid +132_2-11 Q0 KILT_4932171-2 73 -0.492685 hybrid +132_2-11 Q0 MARCO_30_1605964568-8 74 -0.494545 hybrid +132_2-11 Q0 MARCO_06_609309883-1 75 -0.498328 hybrid +132_2-11 Q0 MARCO_06_316415399-1 76 -0.498843 hybrid +132_2-11 Q0 MARCO_37_74888318-3 77 -0.499771 hybrid +132_2-11 Q0 MARCO_16_448548344-9 78 -0.499855 hybrid +132_2-11 Q0 MARCO_57_105744181-3 79 -0.500841 hybrid +132_2-11 Q0 MARCO_14_595148022-5 80 -0.501619 hybrid +132_2-11 Q0 MARCO_22_1217134399-26 81 -0.502941 hybrid +132_2-11 Q0 MARCO_22_1217134399-35 82 -0.502941 hybrid +132_2-11 Q0 MARCO_22_1217134399-6 83 -0.502945 hybrid +132_2-11 Q0 MARCO_22_1217134399-16 84 -0.502945 hybrid +132_2-11 Q0 KILT_13751149-1 85 -0.503113 hybrid +132_2-11 Q0 KILT_28174384-1 86 -0.504293 hybrid +132_2-11 Q0 KILT_5953060-1 87 -0.509943 hybrid +132_2-11 Q0 MARCO_33_1621342262-3 88 -0.510148 hybrid +132_2-11 Q0 MARCO_18_2399093060-3 89 -0.510849 hybrid +132_2-11 Q0 MARCO_54_1477819990-7 90 -0.511159 hybrid +132_2-11 Q0 MARCO_02_824932380-2 91 -0.512078 hybrid +132_2-11 Q0 KILT_37528956-3 92 -0.514085 hybrid +132_2-11 Q0 MARCO_28_536664666-3 93 -0.515725 hybrid +132_2-11 Q0 MARCO_16_2411634799-25 94 -0.518310 hybrid +132_2-11 Q0 MARCO_21_1194786324-2 95 -0.519814 hybrid +132_2-11 Q0 MARCO_15_137349888-10 96 -0.519929 hybrid +132_2-11 Q0 KILT_48530645-11 97 -0.520411 hybrid +132_2-11 Q0 MARCO_59_336716189-3 98 -0.523107 hybrid +132_2-11 Q0 MARCO_56_455459535-5 99 -0.523987 hybrid +132_2-11 Q0 MARCO_29_31047482-2 100 -0.524283 hybrid +132_2-13 Q0 MARCO_10_262743620-5 1 0.322179 hybrid +132_2-13 Q0 MARCO_10_262743620-6 2 0.300986 hybrid +132_2-13 Q0 MARCO_10_262751953-9 3 0.050807 hybrid +132_2-13 Q0 MARCO_50_1929336451-6 4 -0.002084 hybrid +132_2-13 Q0 MARCO_10_262736749-1 5 -0.119745 hybrid +132_2-13 Q0 MARCO_10_260560518-7 6 -0.119780 hybrid +132_2-13 Q0 MARCO_19_266473698-49 7 -0.120323 hybrid +132_2-13 Q0 MARCO_31_644392863-2 8 -0.135750 hybrid +132_2-13 Q0 MARCO_19_266473698-5 9 -0.178472 hybrid +132_2-13 Q0 MARCO_01_1034490048-24 10 -0.180178 hybrid +132_2-13 Q0 MARCO_31_644392863-5 11 -0.184684 hybrid +132_2-13 Q0 MARCO_10_262743620-2 12 -0.188065 hybrid +132_2-13 Q0 MARCO_29_1175326324-10 13 -0.191781 hybrid +132_2-13 Q0 KILT_56387329-1 14 -0.199002 hybrid +132_2-13 Q0 MARCO_10_262743620-4 15 -0.210708 hybrid +132_2-13 Q0 MARCO_48_1188743878-2 16 -0.221979 hybrid +132_2-13 Q0 MARCO_25_519333782-21 17 -0.233878 hybrid +132_2-13 Q0 KILT_1601418-6 18 -0.238866 hybrid +132_2-13 Q0 MARCO_37_1226477362-7 19 -0.240643 hybrid +132_2-13 Q0 KILT_669964-1 20 -0.243769 hybrid +132_2-13 Q0 MARCO_57_1273322266-3 21 -0.247442 hybrid +132_2-13 Q0 KILT_59552393-2 22 -0.249998 hybrid +132_2-13 Q0 KILT_48808018-7 23 -0.260847 hybrid +132_2-13 Q0 MARCO_18_1303761340-19 24 -0.261380 hybrid +132_2-13 Q0 MARCO_41_2085147140-5 25 -0.268621 hybrid +132_2-13 Q0 MARCO_19_266473698-27 26 -0.271294 hybrid +132_2-13 Q0 MARCO_18_4372209380-6 27 -0.272921 hybrid +132_2-13 Q0 MARCO_10_1485053201-13 28 -0.279771 hybrid +132_2-13 Q0 MARCO_22_1185276262-3 29 -0.281090 hybrid +132_2-13 Q0 MARCO_10_260560518-1 30 -0.297857 hybrid +132_2-13 Q0 MARCO_17_431954845-18 31 -0.301363 hybrid +132_2-13 Q0 MARCO_01_1034490048-100 32 -0.302567 hybrid +132_2-13 Q0 KILT_1601418-5 33 -0.314717 hybrid +132_2-13 Q0 MARCO_39_823975034-3 34 -0.319785 hybrid +132_2-13 Q0 MARCO_27_1150117203-33 35 -0.321061 hybrid +132_2-13 Q0 MARCO_17_434176964-9 36 -0.321610 hybrid +132_2-13 Q0 MARCO_04_858408112-36 37 -0.327746 hybrid +132_2-13 Q0 KILT_44479376-12 38 -0.332591 hybrid +132_2-13 Q0 KILT_25502652-1 39 -0.336681 hybrid +132_2-13 Q0 KILT_22024384-15 40 -0.340273 hybrid +132_2-13 Q0 MARCO_10_1485053201-16 41 -0.354054 hybrid +132_2-13 Q0 MARCO_48_1188743878-7 42 -0.358953 hybrid +132_2-13 Q0 MARCO_40_661991828-50 43 -0.363890 hybrid +132_2-13 Q0 MARCO_17_434362059-8 44 -0.364168 hybrid +132_2-13 Q0 MARCO_10_260560518-2 45 -0.367345 hybrid +132_2-13 Q0 MARCO_39_677462947-4 46 -0.374369 hybrid +132_2-13 Q0 MARCO_18_922972680-24 47 -0.374702 hybrid +132_2-13 Q0 KILT_8459263-19 48 -0.376799 hybrid +132_2-13 Q0 MARCO_17_434362059-2 49 -0.377438 hybrid +132_2-13 Q0 KILT_58620732-3 50 -0.377619 hybrid +132_2-13 Q0 KILT_25502652-4 51 -0.378694 hybrid +132_2-13 Q0 MARCO_32_467032398-5 52 -0.381830 hybrid +132_2-13 Q0 MARCO_01_1034490048-90 53 -0.383137 hybrid +132_2-13 Q0 KILT_31898-7 54 -0.387182 hybrid +132_2-13 Q0 KILT_52520313-7 55 -0.388224 hybrid +132_2-13 Q0 MARCO_54_784039639-23 56 -0.390732 hybrid +132_2-13 Q0 MARCO_19_204123815-20 57 -0.392806 hybrid +132_2-13 Q0 KILT_1711151-22 58 -0.393494 hybrid +132_2-13 Q0 MARCO_57_1274235847-5 59 -0.396999 hybrid +132_2-13 Q0 MARCO_17_434362059-21 60 -0.398130 hybrid +132_2-13 Q0 MARCO_37_131656792-9 61 -0.398274 hybrid +132_2-13 Q0 MARCO_19_266473698-47 62 -0.398401 hybrid +132_2-13 Q0 KILT_31898-17 63 -0.399055 hybrid +132_2-13 Q0 MARCO_18_922972680-97 64 -0.399091 hybrid +132_2-13 Q0 KILT_54199706-24 65 -0.399670 hybrid +132_2-13 Q0 MARCO_19_266473698-48 66 -0.401243 hybrid +132_2-13 Q0 KILT_1358946-8 67 -0.402593 hybrid +132_2-13 Q0 KILT_57641-18 68 -0.403018 hybrid +132_2-13 Q0 MARCO_06_1290292865-478 69 -0.403429 hybrid +132_2-13 Q0 MARCO_19_204123815-10 70 -0.405188 hybrid +132_2-13 Q0 MARCO_19_266473698-8 71 -0.407020 hybrid +132_2-13 Q0 MARCO_31_1555491939-5 72 -0.407165 hybrid +132_2-13 Q0 MARCO_55_576390157-2 73 -0.410701 hybrid +132_2-13 Q0 MARCO_22_1644883624-30 74 -0.412585 hybrid +132_2-13 Q0 KILT_12605813-1 75 -0.412860 hybrid +132_2-13 Q0 KILT_60334410-15 76 -0.415384 hybrid +132_2-13 Q0 MARCO_19_266473698-10 77 -0.415820 hybrid +132_2-13 Q0 KILT_60301232-4 78 -0.417162 hybrid +132_2-13 Q0 KILT_46904103-3 79 -0.417603 hybrid +132_2-13 Q0 MARCO_17_2944541684-45 80 -0.418219 hybrid +132_2-13 Q0 MARCO_20_1602405300-11 81 -0.418651 hybrid +132_2-13 Q0 KILT_40062551-1 82 -0.423217 hybrid +132_2-13 Q0 MARCO_01_1034490048-43 83 -0.425377 hybrid +132_2-13 Q0 MARCO_19_266473698-51 84 -0.426208 hybrid +132_2-13 Q0 KILT_3310645-1 85 -0.427476 hybrid +132_2-13 Q0 MARCO_03_1470952664-3 86 -0.428249 hybrid +132_2-13 Q0 KILT_48808018-1 87 -0.429913 hybrid +132_2-13 Q0 MARCO_04_858408112-35 88 -0.430181 hybrid +132_2-13 Q0 MARCO_19_266412467-16 89 -0.433016 hybrid +132_2-13 Q0 MARCO_18_4370208319-3 90 -0.433602 hybrid +132_2-13 Q0 KILT_23120306-1 91 -0.434767 hybrid +132_2-13 Q0 MARCO_44_1172912767-4 92 -0.440726 hybrid +132_2-13 Q0 KILT_24483226-1 93 -0.441696 hybrid +132_2-13 Q0 MARCO_19_2045096479-10 94 -0.442229 hybrid +132_2-13 Q0 MARCO_43_711973574-5 95 -0.443847 hybrid +132_2-13 Q0 KILT_60301241-4 96 -0.444435 hybrid +132_2-13 Q0 MARCO_17_434176964-17 97 -0.446500 hybrid +132_2-13 Q0 KILT_489119-13 98 -0.448613 hybrid +132_2-13 Q0 KILT_53704-1 99 -0.450387 hybrid +132_2-13 Q0 MARCO_12_133246365-30 100 -0.450437 hybrid +132_2-3 Q0 MARCO_56_505348785-6 1 0.250003 hybrid +132_2-3 Q0 MARCO_21_749822518-27 2 0.102328 hybrid +132_2-3 Q0 KILT_1374927-8 3 0.078052 hybrid +132_2-3 Q0 MARCO_20_1577360890-37 4 0.069378 hybrid +132_2-3 Q0 MARCO_03_581040387-5 5 0.063649 hybrid +132_2-3 Q0 KILT_2435914-14 6 0.056920 hybrid +132_2-3 Q0 MARCO_56_1312772055-11 7 0.047749 hybrid +132_2-3 Q0 MARCO_51_1727411905-46 8 0.045903 hybrid +132_2-3 Q0 MARCO_43_777920951-5 9 0.044394 hybrid +132_2-3 Q0 MARCO_43_777920951-1 10 0.026996 hybrid +132_2-3 Q0 MARCO_34_37630493-6 11 0.024647 hybrid +132_2-3 Q0 MARCO_01_1644989167-3 12 0.017713 hybrid +132_2-3 Q0 KILT_4638069-8 13 0.006877 hybrid +132_2-3 Q0 MARCO_22_1645284806-32 14 -0.008769 hybrid +132_2-3 Q0 MARCO_17_443322661-26 15 -0.019947 hybrid +132_2-3 Q0 MARCO_24_1719126464-2 16 -0.030398 hybrid +132_2-3 Q0 MARCO_10_260560518-3 17 -0.046168 hybrid +132_2-3 Q0 MARCO_10_262788007-29 18 -0.046839 hybrid +132_2-3 Q0 KILT_40454374-5 19 -0.048001 hybrid +132_2-3 Q0 MARCO_56_505348785-3 20 -0.069499 hybrid +132_2-3 Q0 KILT_36674117-6 21 -0.076502 hybrid +132_2-3 Q0 MARCO_10_260631258-2 22 -0.084045 hybrid +132_2-3 Q0 MARCO_43_777920951-2 23 -0.094608 hybrid +132_2-3 Q0 MARCO_10_262478173-3 24 -0.097248 hybrid +132_2-3 Q0 MARCO_32_599836721-14 25 -0.113105 hybrid +132_2-3 Q0 MARCO_10_829043418-5 26 -0.122158 hybrid +132_2-3 Q0 MARCO_10_260864487-34 27 -0.123693 hybrid +132_2-3 Q0 MARCO_46_1380968784-4 28 -0.131081 hybrid +132_2-3 Q0 MARCO_10_262407105-4 29 -0.131143 hybrid +132_2-3 Q0 KILT_21331420-9 30 -0.141165 hybrid +132_2-3 Q0 MARCO_36_1364913965-5 31 -0.148410 hybrid +132_2-3 Q0 KILT_1035767-3 32 -0.148690 hybrid +132_2-3 Q0 MARCO_10_262788007-6 33 -0.150249 hybrid +132_2-3 Q0 MARCO_10_262217751-84 34 -0.150504 hybrid +132_2-3 Q0 MARCO_09_353378540-1 35 -0.152542 hybrid +132_2-3 Q0 KILT_2435914-8 36 -0.158271 hybrid +132_2-3 Q0 KILT_2435914-12 37 -0.161179 hybrid +132_2-3 Q0 MARCO_18_2143470921-19 38 -0.163540 hybrid +132_2-3 Q0 KILT_2435914-4 39 -0.165081 hybrid +132_2-3 Q0 MARCO_43_777920951-6 40 -0.166690 hybrid +132_2-3 Q0 KILT_8462155-3 41 -0.175134 hybrid +132_2-3 Q0 MARCO_07_261478233-21 42 -0.177626 hybrid +132_2-3 Q0 MARCO_43_777920951-3 43 -0.178601 hybrid +132_2-3 Q0 MARCO_35_18087846-2 44 -0.180975 hybrid +132_2-3 Q0 MARCO_10_826638119-2 45 -0.183007 hybrid +132_2-3 Q0 MARCO_32_1796808472-7 46 -0.189562 hybrid +132_2-3 Q0 MARCO_32_599983057-6 47 -0.191705 hybrid +132_2-3 Q0 MARCO_03_254456784-2 48 -0.191898 hybrid +132_2-3 Q0 MARCO_35_308498687-2 49 -0.196956 hybrid +132_2-3 Q0 MARCO_37_1260318296-2 50 -0.198099 hybrid +132_2-3 Q0 MARCO_17_4116009428-5 51 -0.205595 hybrid +132_2-3 Q0 MARCO_17_4116009428-7 52 -0.205595 hybrid +132_2-3 Q0 MARCO_17_4116009428-9 53 -0.205595 hybrid +132_2-3 Q0 MARCO_36_998866032-5 54 -0.207178 hybrid +132_2-3 Q0 MARCO_46_1380968784-5 55 -0.211856 hybrid +132_2-3 Q0 MARCO_36_1364597645-1 56 -0.218386 hybrid +132_2-3 Q0 MARCO_16_3303410427-12 57 -0.220300 hybrid +132_2-3 Q0 MARCO_10_261408438-21 58 -0.222810 hybrid +132_2-3 Q0 KILT_42747203-8 59 -0.230726 hybrid +132_2-3 Q0 MARCO_38_1453822755-12 60 -0.234566 hybrid +132_2-3 Q0 MARCO_39_1740604538-5 61 -0.234690 hybrid +132_2-3 Q0 MARCO_13_1559734926-6 62 -0.239008 hybrid +132_2-3 Q0 KILT_1411925-21 63 -0.243414 hybrid +132_2-3 Q0 MARCO_37_376330985-7 64 -0.243979 hybrid +132_2-3 Q0 MARCO_19_1118220864-14 65 -0.249826 hybrid +132_2-3 Q0 MARCO_30_1605964568-7 66 -0.249997 hybrid +132_2-3 Q0 MARCO_03_580354882-8 67 -0.250149 hybrid +132_2-3 Q0 MARCO_10_262407105-5 68 -0.251715 hybrid +132_2-3 Q0 KILT_1044143-2 69 -0.254567 hybrid +132_2-3 Q0 MARCO_24_1555491375-2 70 -0.260408 hybrid +132_2-3 Q0 MARCO_32_599017501-4 71 -0.261340 hybrid +132_2-3 Q0 MARCO_56_505348785-2 72 -0.265111 hybrid +132_2-3 Q0 MARCO_15_1733026280-10 73 -0.265459 hybrid +132_2-3 Q0 MARCO_19_1112386376-34 74 -0.266758 hybrid +132_2-3 Q0 MARCO_27_588863416-43 75 -0.271238 hybrid +132_2-3 Q0 MARCO_46_1380870490-8 76 -0.277134 hybrid +132_2-3 Q0 MARCO_19_962589557-14 77 -0.279856 hybrid +132_2-3 Q0 KILT_53606991-14 78 -0.280875 hybrid +132_2-3 Q0 MARCO_36_842154962-3 79 -0.281397 hybrid +132_2-3 Q0 MARCO_10_262743620-5 80 -0.282608 hybrid +132_2-3 Q0 KILT_3151160-1 81 -0.286697 hybrid +132_2-3 Q0 MARCO_17_681550578-66 82 -0.287268 hybrid +132_2-3 Q0 MARCO_10_262751953-14 83 -0.288182 hybrid +132_2-3 Q0 MARCO_57_1274205894-3 84 -0.288213 hybrid +132_2-3 Q0 MARCO_39_1045462196-6 85 -0.288474 hybrid +132_2-3 Q0 MARCO_17_2527315372-71 86 -0.292301 hybrid +132_2-3 Q0 MARCO_39_668522763-49 87 -0.293861 hybrid +132_2-3 Q0 MARCO_36_999187403-5 88 -0.294234 hybrid +132_2-3 Q0 MARCO_10_828215272-4 89 -0.295955 hybrid +132_2-3 Q0 MARCO_10_829225168-6 90 -0.301534 hybrid +132_2-3 Q0 MARCO_43_296836300-12 91 -0.302162 hybrid +132_2-3 Q0 MARCO_50_2746119779-4 92 -0.303647 hybrid +132_2-3 Q0 KILT_3045799-17 93 -0.305921 hybrid +132_2-3 Q0 MARCO_46_1380870490-7 94 -0.309854 hybrid +132_2-3 Q0 MARCO_32_599983057-1 95 -0.313980 hybrid +132_2-3 Q0 KILT_40454374-6 96 -0.315558 hybrid +132_2-3 Q0 MARCO_56_505348785-4 97 -0.315577 hybrid +132_2-3 Q0 MARCO_30_1098599698-1 98 -0.318976 hybrid +132_2-3 Q0 MARCO_18_4364824213-52 99 -0.322194 hybrid +132_2-3 Q0 MARCO_26_164255046-222 100 -0.322343 hybrid +132_2-5 Q0 MARCO_48_1188743878-4 1 0.249998 hybrid +132_2-5 Q0 MARCO_11_760134771-29 2 0.205097 hybrid +132_2-5 Q0 KILT_56324501-4 3 0.188649 hybrid +132_2-5 Q0 MARCO_19_603398757-16 4 0.163852 hybrid +132_2-5 Q0 MARCO_20_1115184668-9 5 0.096002 hybrid +132_2-5 Q0 MARCO_18_468435703-18 6 0.084558 hybrid +132_2-5 Q0 MARCO_20_1691433948-13 7 0.053712 hybrid +132_2-5 Q0 MARCO_19_607425738-12 8 -0.004678 hybrid +132_2-5 Q0 MARCO_22_1644883624-37 9 -0.004719 hybrid +132_2-5 Q0 KILT_2649947-23 10 -0.008319 hybrid +132_2-5 Q0 MARCO_43_329828458-5 11 -0.015206 hybrid +132_2-5 Q0 MARCO_57_1273705428-4 12 -0.025009 hybrid +132_2-5 Q0 MARCO_10_262845096-2 13 -0.027806 hybrid +132_2-5 Q0 MARCO_51_1903558454-38 14 -0.028487 hybrid +132_2-5 Q0 MARCO_30_1098599698-1 15 -0.033743 hybrid +132_2-5 Q0 MARCO_04_1490023419-25 16 -0.058896 hybrid +132_2-5 Q0 MARCO_28_436713620-14 17 -0.062633 hybrid +132_2-5 Q0 MARCO_19_603398757-15 18 -0.075002 hybrid +132_2-5 Q0 MARCO_13_436684399-12 19 -0.076806 hybrid +132_2-5 Q0 KILT_24961082-4 20 -0.077047 hybrid +132_2-5 Q0 MARCO_56_507043549-53 21 -0.080846 hybrid +132_2-5 Q0 MARCO_22_1190025974-51 22 -0.081572 hybrid +132_2-5 Q0 MARCO_00_1103829918-5 23 -0.087267 hybrid +132_2-5 Q0 MARCO_19_606923468-24 24 -0.095736 hybrid +132_2-5 Q0 MARCO_51_1998635833-15 25 -0.096720 hybrid +132_2-5 Q0 MARCO_11_16241769-5 26 -0.097781 hybrid +132_2-5 Q0 MARCO_10_262751953-11 27 -0.102361 hybrid +132_2-5 Q0 MARCO_43_777920951-2 28 -0.107507 hybrid +132_2-5 Q0 MARCO_08_690858028-124 29 -0.132150 hybrid +132_2-5 Q0 MARCO_28_436713620-15 30 -0.132653 hybrid +132_2-5 Q0 KILT_2649947-28 31 -0.134458 hybrid +132_2-5 Q0 MARCO_03_1382496644-2 32 -0.146314 hybrid +132_2-5 Q0 MARCO_13_1559734926-9 33 -0.150168 hybrid +132_2-5 Q0 MARCO_26_164255046-222 34 -0.151556 hybrid +132_2-5 Q0 KILT_17803348-4 35 -0.158652 hybrid +132_2-5 Q0 MARCO_43_777920951-1 36 -0.161925 hybrid +132_2-5 Q0 MARCO_51_1632226513-10 37 -0.163988 hybrid +132_2-5 Q0 MARCO_47_417315831-6 38 -0.166146 hybrid +132_2-5 Q0 MARCO_56_507043549-52 39 -0.175292 hybrid +132_2-5 Q0 MARCO_17_694807794-20 40 -0.184315 hybrid +132_2-5 Q0 MARCO_05_1744098618-2 41 -0.184487 hybrid +132_2-5 Q0 MARCO_36_1434157933-3 42 -0.192957 hybrid +132_2-5 Q0 MARCO_03_1382133972-2 43 -0.195010 hybrid +132_2-5 Q0 MARCO_28_445261347-8 44 -0.201739 hybrid +132_2-5 Q0 KILT_27447324-8 45 -0.202428 hybrid +132_2-5 Q0 MARCO_57_1273814302-6 46 -0.207253 hybrid +132_2-5 Q0 MARCO_37_708382826-6 47 -0.208581 hybrid +132_2-5 Q0 MARCO_19_604822460-2 48 -0.213405 hybrid +132_2-5 Q0 MARCO_13_436467379-8 49 -0.214085 hybrid +132_2-5 Q0 MARCO_41_1817040778-8 50 -0.219690 hybrid +132_2-5 Q0 MARCO_13_436830247-3 51 -0.221199 hybrid +132_2-5 Q0 KILT_35614913-12 52 -0.225824 hybrid +132_2-5 Q0 KILT_1411925-32 53 -0.226468 hybrid +132_2-5 Q0 MARCO_12_453459275-5 54 -0.229170 hybrid +132_2-5 Q0 MARCO_27_917687231-44 55 -0.229216 hybrid +132_2-5 Q0 MARCO_37_708108386-3 56 -0.233351 hybrid +132_2-5 Q0 MARCO_56_505366738-3 57 -0.243194 hybrid +132_2-5 Q0 MARCO_10_261126523-23 58 -0.248109 hybrid +132_2-5 Q0 MARCO_13_1560316639-3 59 -0.248740 hybrid +132_2-5 Q0 MARCO_27_1304139795-1 60 -0.250002 hybrid +132_2-5 Q0 KILT_26772201-7 61 -0.250472 hybrid +132_2-5 Q0 KILT_3462-27 62 -0.250816 hybrid +132_2-5 Q0 MARCO_17_1846828993-10 63 -0.252838 hybrid +132_2-5 Q0 KILT_27447324-2 64 -0.253627 hybrid +132_2-5 Q0 MARCO_23_53863428-7 65 -0.255006 hybrid +132_2-5 Q0 MARCO_36_1434066442-5 66 -0.255554 hybrid +132_2-5 Q0 MARCO_00_1102877206-9 67 -0.256012 hybrid +132_2-5 Q0 MARCO_50_2149491569-49 68 -0.256407 hybrid +132_2-5 Q0 MARCO_24_1718174753-2 69 -0.258955 hybrid +132_2-5 Q0 MARCO_00_1103829918-3 70 -0.263530 hybrid +132_2-5 Q0 MARCO_06_1905214190-6 71 -0.267180 hybrid +132_2-5 Q0 MARCO_08_743120872-9 72 -0.267289 hybrid +132_2-5 Q0 MARCO_02_1888161351-4 73 -0.269589 hybrid +132_2-5 Q0 MARCO_01_2060913028-4 74 -0.270227 hybrid +132_2-5 Q0 MARCO_23_53863428-10 75 -0.274248 hybrid +132_2-5 Q0 KILT_2649947-25 76 -0.276561 hybrid +132_2-5 Q0 MARCO_38_1453822755-13 77 -0.277830 hybrid +132_2-5 Q0 MARCO_04_1293867946-2 78 -0.279762 hybrid +132_2-5 Q0 MARCO_28_328737690-5 79 -0.284627 hybrid +132_2-5 Q0 MARCO_39_697672749-1 80 -0.288164 hybrid +132_2-5 Q0 MARCO_04_1490023419-16 81 -0.289542 hybrid +132_2-5 Q0 KILT_35614913-9 82 -0.290118 hybrid +132_2-5 Q0 MARCO_43_777920951-6 83 -0.290281 hybrid +132_2-5 Q0 MARCO_48_588887493-5 84 -0.292027 hybrid +132_2-5 Q0 MARCO_09_353378540-1 85 -0.293763 hybrid +132_2-5 Q0 MARCO_06_691700236-3 86 -0.299449 hybrid +132_2-5 Q0 MARCO_10_828766205-3 87 -0.301204 hybrid +132_2-5 Q0 MARCO_03_254326605-5 88 -0.301418 hybrid +132_2-5 Q0 KILT_35226965-1 89 -0.305452 hybrid +132_2-5 Q0 KILT_27447324-3 90 -0.305479 hybrid +132_2-5 Q0 KILT_30863822-14 91 -0.306948 hybrid +132_2-5 Q0 MARCO_19_607425738-13 92 -0.309415 hybrid +132_2-5 Q0 MARCO_03_580846587-58 93 -0.310535 hybrid +132_2-5 Q0 MARCO_13_436684399-2 94 -0.311714 hybrid +132_2-5 Q0 MARCO_51_1704792198-4 95 -0.315119 hybrid +132_2-5 Q0 KILT_52107996-2 96 -0.315454 hybrid +132_2-5 Q0 MARCO_10_828766205-5 97 -0.316674 hybrid +132_2-5 Q0 MARCO_43_777920951-4 98 -0.317404 hybrid +132_2-5 Q0 MARCO_27_917687231-39 99 -0.319866 hybrid +132_2-5 Q0 MARCO_03_581040387-12 100 -0.322047 hybrid +132_2-7 Q0 MARCO_28_436713620-13 1 0.286628 hybrid +132_2-7 Q0 MARCO_10_260560518-2 2 0.257759 hybrid +132_2-7 Q0 MARCO_29_1330386075-24 3 0.256362 hybrid +132_2-7 Q0 MARCO_03_580354882-8 4 0.250000 hybrid +132_2-7 Q0 MARCO_10_262743620-2 5 0.221934 hybrid +132_2-7 Q0 MARCO_56_506900502-5 6 0.215634 hybrid +132_2-7 Q0 MARCO_17_434176964-58 7 0.182231 hybrid +132_2-7 Q0 MARCO_10_262736749-1 8 0.162430 hybrid +132_2-7 Q0 KILT_38740911-6 9 0.150062 hybrid +132_2-7 Q0 MARCO_31_644392863-2 10 0.130370 hybrid +132_2-7 Q0 MARCO_10_262751953-7 11 0.088953 hybrid +132_2-7 Q0 KILT_40454374-5 12 0.076993 hybrid +132_2-7 Q0 MARCO_10_260560518-7 13 0.059330 hybrid +132_2-7 Q0 MARCO_10_262743620-6 14 0.042845 hybrid +132_2-7 Q0 MARCO_10_260560518-1 15 0.004790 hybrid +132_2-7 Q0 MARCO_17_434176964-114 16 -0.044327 hybrid +132_2-7 Q0 MARCO_36_998866032-5 17 -0.055377 hybrid +132_2-7 Q0 MARCO_41_2085147140-5 18 -0.069284 hybrid +132_2-7 Q0 MARCO_36_998866032-4 19 -0.075282 hybrid +132_2-7 Q0 MARCO_01_1034490048-43 20 -0.082326 hybrid +132_2-7 Q0 MARCO_17_434176964-57 21 -0.089587 hybrid +132_2-7 Q0 MARCO_10_262743620-4 22 -0.089694 hybrid +132_2-7 Q0 MARCO_11_760134771-6 23 -0.123779 hybrid +132_2-7 Q0 MARCO_43_711973574-5 24 -0.124814 hybrid +132_2-7 Q0 MARCO_23_703568121-5 25 -0.127952 hybrid +132_2-7 Q0 MARCO_26_164255046-252 26 -0.136865 hybrid +132_2-7 Q0 MARCO_10_262643240-18 27 -0.147255 hybrid +132_2-7 Q0 MARCO_43_777920951-5 28 -0.149892 hybrid +132_2-7 Q0 MARCO_10_262743620-5 29 -0.156300 hybrid +132_2-7 Q0 MARCO_10_262643240-51 30 -0.160032 hybrid +132_2-7 Q0 MARCO_48_1188743878-7 31 -0.161333 hybrid +132_2-7 Q0 MARCO_10_262643240-33 32 -0.169787 hybrid +132_2-7 Q0 KILT_37100252-3 33 -0.186872 hybrid +132_2-7 Q0 MARCO_04_858408112-36 34 -0.187885 hybrid +132_2-7 Q0 MARCO_19_266473698-5 35 -0.194261 hybrid +132_2-7 Q0 KILT_41296425-2 36 -0.205721 hybrid +132_2-7 Q0 MARCO_43_711973574-9 37 -0.206922 hybrid +132_2-7 Q0 MARCO_04_858408112-35 38 -0.214982 hybrid +132_2-7 Q0 MARCO_10_262751953-9 39 -0.218506 hybrid +132_2-7 Q0 MARCO_03_1382133972-4 40 -0.220269 hybrid +132_2-7 Q0 MARCO_16_4106443718-8 41 -0.236258 hybrid +132_2-7 Q0 MARCO_16_4106443718-6 42 -0.236258 hybrid +132_2-7 Q0 KILT_463942-2 43 -0.236412 hybrid +132_2-7 Q0 MARCO_48_1250278529-4 44 -0.250000 hybrid +132_2-7 Q0 MARCO_18_944509476-39 45 -0.253100 hybrid +132_2-7 Q0 KILT_22158-14 46 -0.267776 hybrid +132_2-7 Q0 MARCO_38_1453822755-12 47 -0.275759 hybrid +132_2-7 Q0 MARCO_17_434591980-3 48 -0.277333 hybrid +132_2-7 Q0 MARCO_26_164255046-17 49 -0.280026 hybrid +132_2-7 Q0 MARCO_17_1786410343-7 50 -0.286076 hybrid +132_2-7 Q0 KILT_30820783-4 51 -0.286527 hybrid +132_2-7 Q0 MARCO_26_164255046-256 52 -0.292784 hybrid +132_2-7 Q0 MARCO_18_4372209380-6 53 -0.294040 hybrid +132_2-7 Q0 KILT_6832027-3 54 -0.297796 hybrid +132_2-7 Q0 KILT_24280281-2 55 -0.306362 hybrid +132_2-7 Q0 MARCO_29_1330386075-12 56 -0.306826 hybrid +132_2-7 Q0 KILT_30820783-7 57 -0.308099 hybrid +132_2-7 Q0 KILT_149422-20 58 -0.311355 hybrid +132_2-7 Q0 MARCO_48_1188743878-4 59 -0.317206 hybrid +132_2-7 Q0 MARCO_39_605368516-2 60 -0.317710 hybrid +132_2-7 Q0 MARCO_17_1786410343-5 61 -0.317915 hybrid +132_2-7 Q0 KILT_28023698-1 62 -0.319483 hybrid +132_2-7 Q0 MARCO_17_4115996533-2 63 -0.319634 hybrid +132_2-7 Q0 KILT_1044143-3 64 -0.322060 hybrid +132_2-7 Q0 MARCO_19_242912952-25 65 -0.326879 hybrid +132_2-7 Q0 MARCO_19_266473698-30 66 -0.329138 hybrid +132_2-7 Q0 MARCO_30_1099460801-2 67 -0.331247 hybrid +132_2-7 Q0 MARCO_48_1251187189-20 68 -0.332177 hybrid +132_2-7 Q0 MARCO_43_711973574-4 69 -0.339051 hybrid +132_2-7 Q0 MARCO_54_1591016686-6 70 -0.346901 hybrid +132_2-7 Q0 KILT_27522414-6 71 -0.349077 hybrid +132_2-7 Q0 KILT_53042476-7 72 -0.350156 hybrid +132_2-7 Q0 MARCO_19_266473698-26 73 -0.351255 hybrid +132_2-7 Q0 KILT_42747203-2 74 -0.353855 hybrid +132_2-7 Q0 MARCO_10_262643240-7 75 -0.356612 hybrid +132_2-7 Q0 KILT_13469651-4 76 -0.357489 hybrid +132_2-7 Q0 KILT_17794972-7 77 -0.358959 hybrid +132_2-7 Q0 MARCO_03_1382133972-6 78 -0.359712 hybrid +132_2-7 Q0 MARCO_29_1330386075-11 79 -0.360197 hybrid +132_2-7 Q0 MARCO_25_570836921-8 80 -0.361928 hybrid +132_2-7 Q0 MARCO_54_1566083646-2 81 -0.362280 hybrid +132_2-7 Q0 MARCO_10_1485046460-4 82 -0.364637 hybrid +132_2-7 Q0 KILT_792022-5 83 -0.365093 hybrid +132_2-7 Q0 MARCO_22_1644883624-29 84 -0.365469 hybrid +132_2-7 Q0 KILT_4638069-8 85 -0.365910 hybrid +132_2-7 Q0 MARCO_39_669283184-68 86 -0.367828 hybrid +132_2-7 Q0 MARCO_17_431954845-18 87 -0.368553 hybrid +132_2-7 Q0 KILT_5042951-28 88 -0.371363 hybrid +132_2-7 Q0 MARCO_37_1260318296-2 89 -0.374199 hybrid +132_2-7 Q0 KILT_12975612-5 90 -0.375322 hybrid +132_2-7 Q0 KILT_489119-11 91 -0.375558 hybrid +132_2-7 Q0 KILT_31956-30 92 -0.375877 hybrid +132_2-7 Q0 MARCO_10_262407105-4 93 -0.377700 hybrid +132_2-7 Q0 MARCO_17_682979621-14 94 -0.378331 hybrid +132_2-7 Q0 MARCO_26_164255046-222 95 -0.378782 hybrid +132_2-7 Q0 MARCO_31_644392863-1 96 -0.380917 hybrid +132_2-7 Q0 KILT_337082-4 97 -0.382630 hybrid +132_2-7 Q0 MARCO_19_2554181832-2 98 -0.382648 hybrid +132_2-7 Q0 MARCO_22_1644883624-32 99 -0.384359 hybrid +132_2-7 Q0 KILT_42747203-8 100 -0.384443 hybrid +132_2-9 Q0 MARCO_17_4116009428-5 1 0.458399 hybrid +132_2-9 Q0 MARCO_17_4116009428-7 2 0.458398 hybrid +132_2-9 Q0 MARCO_17_4116009428-9 3 0.458398 hybrid +132_2-9 Q0 MARCO_39_1740604538-5 4 0.041134 hybrid +132_2-9 Q0 MARCO_13_1761053118-2 5 -0.098586 hybrid +132_2-9 Q0 MARCO_10_262751953-5 6 -0.110276 hybrid +132_2-9 Q0 MARCO_14_310245762-4 7 -0.160424 hybrid +132_2-9 Q0 MARCO_10_262751953-14 8 -0.236266 hybrid +132_2-9 Q0 MARCO_33_1621342262-1 9 -0.250000 hybrid +132_2-9 Q0 MARCO_15_137349888-7 10 -0.299879 hybrid +132_2-9 Q0 KILT_7723713-2 11 -0.325959 hybrid +132_2-9 Q0 MARCO_33_1621342262-2 12 -0.334743 hybrid +132_2-9 Q0 MARCO_30_1605964568-1 13 -0.344693 hybrid +132_2-9 Q0 MARCO_16_3117875026-6 14 -0.363988 hybrid +132_2-9 Q0 MARCO_17_694926414-13 15 -0.364105 hybrid +132_2-9 Q0 KILT_1165576-4 16 -0.366705 hybrid +132_2-9 Q0 KILT_27188332-5 17 -0.368936 hybrid +132_2-9 Q0 MARCO_30_1605964568-2 18 -0.375916 hybrid +132_2-9 Q0 MARCO_30_1605964568-8 19 -0.375996 hybrid +132_2-9 Q0 MARCO_20_659268363-15 20 -0.376517 hybrid +132_2-9 Q0 MARCO_30_1605964568-5 21 -0.377598 hybrid +132_2-9 Q0 MARCO_36_841379281-2 22 -0.377708 hybrid +132_2-9 Q0 MARCO_16_3117875026-5 23 -0.380147 hybrid +132_2-9 Q0 MARCO_14_310245762-3 24 -0.381408 hybrid +132_2-9 Q0 MARCO_16_1914383754-14 25 -0.385886 hybrid +132_2-9 Q0 MARCO_30_1605964568-6 26 -0.387194 hybrid +132_2-9 Q0 MARCO_58_294356185-13 27 -0.391811 hybrid +132_2-9 Q0 KILT_4147183-6 28 -0.392473 hybrid +132_2-9 Q0 MARCO_06_316415399-1 29 -0.397093 hybrid +132_2-9 Q0 MARCO_01_793667752-5 30 -0.400754 hybrid +132_2-9 Q0 MARCO_16_3117875026-1 31 -0.403625 hybrid +132_2-9 Q0 KILT_41297571-1 32 -0.407955 hybrid +132_2-9 Q0 KILT_14000930-3 33 -0.412659 hybrid +132_2-9 Q0 MARCO_49_1694579701-2 34 -0.414173 hybrid +132_2-9 Q0 KILT_1047960-2 35 -0.416459 hybrid +132_2-9 Q0 MARCO_31_1856625830-11 36 -0.417897 hybrid +132_2-9 Q0 MARCO_39_8636-1 37 -0.419770 hybrid +132_2-9 Q0 KILT_2901475-2 38 -0.421480 hybrid +132_2-9 Q0 MARCO_39_8636-2 39 -0.426110 hybrid +132_2-9 Q0 KILT_18356374-2 40 -0.426941 hybrid +132_2-9 Q0 MARCO_48_239881706-6 41 -0.429875 hybrid +132_2-9 Q0 MARCO_58_294356185-8 42 -0.430944 hybrid +132_2-9 Q0 KILT_27678891-2 43 -0.432491 hybrid +132_2-9 Q0 KILT_12870001-2 44 -0.433216 hybrid +132_2-9 Q0 MARCO_10_546905519-3 45 -0.433710 hybrid +132_2-9 Q0 MARCO_58_294356185-11 46 -0.434237 hybrid +132_2-9 Q0 MARCO_54_78931008-1 47 -0.435341 hybrid +132_2-9 Q0 MARCO_30_1605964568-7 48 -0.443743 hybrid +132_2-9 Q0 MARCO_32_155004600-1 49 -0.449042 hybrid +132_2-9 Q0 MARCO_27_1203108866-3 50 -0.450218 hybrid +132_2-9 Q0 KILT_16754475-2 51 -0.452215 hybrid +132_2-9 Q0 MARCO_17_446410713-5 52 -0.453513 hybrid +132_2-9 Q0 KILT_37133262-10 53 -0.454930 hybrid +132_2-9 Q0 KILT_17567633-7 54 -0.455266 hybrid +132_2-9 Q0 MARCO_02_474894059-33 55 -0.455548 hybrid +132_2-9 Q0 KILT_55224799-3 56 -0.455757 hybrid +132_2-9 Q0 MARCO_58_294356185-16 57 -0.455828 hybrid +132_2-9 Q0 MARCO_10_262751953-15 58 -0.457893 hybrid +132_2-9 Q0 KILT_48876331-1 59 -0.458366 hybrid +132_2-9 Q0 MARCO_16_3130933251-9 60 -0.458733 hybrid +132_2-9 Q0 MARCO_08_477154067-9 61 -0.461390 hybrid +132_2-9 Q0 KILT_30820783-1 62 -0.465968 hybrid +132_2-9 Q0 MARCO_55_296706312-6 63 -0.466501 hybrid +132_2-9 Q0 MARCO_19_594530483-33 64 -0.470949 hybrid +132_2-9 Q0 MARCO_33_1621342262-3 65 -0.472074 hybrid +132_2-9 Q0 KILT_39758073-2 66 -0.475660 hybrid +132_2-9 Q0 MARCO_28_423118151-2 67 -0.476724 hybrid +132_2-9 Q0 MARCO_36_392601192-4 68 -0.478117 hybrid +132_2-9 Q0 MARCO_39_1692133770-1 69 -0.478208 hybrid +132_2-9 Q0 MARCO_17_1692277228-40 70 -0.479884 hybrid +132_2-9 Q0 MARCO_16_3117875026-2 71 -0.482089 hybrid +132_2-9 Q0 MARCO_48_92604212-10 72 -0.482964 hybrid +132_2-9 Q0 MARCO_11_1450644397-3 73 -0.483065 hybrid +132_2-9 Q0 MARCO_15_1845561077-1 74 -0.483347 hybrid +132_2-9 Q0 MARCO_57_1474727268-1 75 -0.484793 hybrid +132_2-9 Q0 KILT_325856-29 76 -0.486463 hybrid +132_2-9 Q0 MARCO_39_1281933287-12 77 -0.486734 hybrid +132_2-9 Q0 KILT_24557732-4 78 -0.487258 hybrid +132_2-9 Q0 KILT_33282267-6 79 -0.488100 hybrid +132_2-9 Q0 MARCO_58_1181805502-3 80 -0.488105 hybrid +132_2-9 Q0 MARCO_30_1605964568-4 81 -0.488162 hybrid +132_2-9 Q0 KILT_39756891-8 82 -0.489419 hybrid +132_2-9 Q0 MARCO_30_1779257487-2 83 -0.490369 hybrid +132_2-9 Q0 MARCO_28_41375124-1 84 -0.490388 hybrid +132_2-9 Q0 MARCO_16_4113364885-4 85 -0.493042 hybrid +132_2-9 Q0 MARCO_30_1666412630-2 86 -0.493410 hybrid +132_2-9 Q0 KILT_39758073-1 87 -0.493637 hybrid +132_2-9 Q0 KILT_46469839-2 88 -0.494255 hybrid +132_2-9 Q0 MARCO_10_353212050-1 89 -0.494310 hybrid +132_2-9 Q0 MARCO_43_776070866-1 90 -0.495550 hybrid +132_2-9 Q0 MARCO_15_137349888-5 91 -0.495678 hybrid +132_2-9 Q0 MARCO_45_652745241-2 92 -0.495729 hybrid +132_2-9 Q0 KILT_37081258-2 93 -0.495836 hybrid +132_2-9 Q0 MARCO_12_316181179-3 94 -0.496625 hybrid +132_2-9 Q0 MARCO_06_1901320319-1 95 -0.497512 hybrid +132_2-9 Q0 MARCO_56_1050014901-3 96 -0.498628 hybrid +132_2-9 Q0 MARCO_30_1666754153-2 97 -0.498926 hybrid +132_2-9 Q0 MARCO_36_841379281-3 98 -0.499391 hybrid +132_2-9 Q0 MARCO_52_1749976642-2 99 -0.499699 hybrid +132_2-9 Q0 MARCO_36_998866032-5 100 -0.499755 hybrid +132_3-1 Q0 MARCO_19_266473698-6 1 0.543117 hybrid +132_3-1 Q0 MARCO_19_266473698-20 2 0.522229 hybrid +132_3-1 Q0 MARCO_19_266473698-35 3 0.322399 hybrid +132_3-1 Q0 MARCO_19_266473698-1 4 0.317061 hybrid +132_3-1 Q0 MARCO_19_266473698-48 5 0.309679 hybrid +132_3-1 Q0 MARCO_19_266473698-56 6 0.305016 hybrid +132_3-1 Q0 MARCO_19_266473698-39 7 0.299621 hybrid +132_3-1 Q0 KILT_52992307-3 8 0.291366 hybrid +132_3-1 Q0 MARCO_19_266473698-67 9 0.289597 hybrid +132_3-1 Q0 MARCO_19_266473698-29 10 0.269509 hybrid +132_3-1 Q0 MARCO_19_266473698-65 11 0.237759 hybrid +132_3-1 Q0 MARCO_19_2040255855-9 12 0.218846 hybrid +132_3-1 Q0 MARCO_19_266473698-37 13 0.214832 hybrid +132_3-1 Q0 MARCO_19_266473698-9 14 0.203702 hybrid +132_3-1 Q0 MARCO_19_266473698-62 15 0.189139 hybrid +132_3-1 Q0 MARCO_19_266473698-27 16 0.181926 hybrid +132_3-1 Q0 KILT_947442-14 17 0.135825 hybrid +132_3-1 Q0 MARCO_19_266473698-2 18 0.114859 hybrid +132_3-1 Q0 MARCO_18_4370096812-13 19 0.101040 hybrid +132_3-1 Q0 MARCO_19_266473698-22 20 0.095844 hybrid +132_3-1 Q0 MARCO_19_266473698-42 21 0.090358 hybrid +132_3-1 Q0 MARCO_19_266473698-7 22 0.088884 hybrid +132_3-1 Q0 MARCO_19_266473698-31 23 0.081397 hybrid +132_3-1 Q0 MARCO_19_266473698-8 24 0.076626 hybrid +132_3-1 Q0 MARCO_12_587015892-10 25 0.073241 hybrid +132_3-1 Q0 MARCO_19_266473698-25 26 0.037653 hybrid +132_3-1 Q0 MARCO_19_266473698-49 27 0.024717 hybrid +132_3-1 Q0 MARCO_04_858408112-35 28 0.019315 hybrid +132_3-1 Q0 MARCO_19_266412467-24 29 0.018085 hybrid +132_3-1 Q0 MARCO_19_266412467-6 30 0.005550 hybrid +132_3-1 Q0 MARCO_42_1366117883-9 31 0.002306 hybrid +132_3-1 Q0 MARCO_19_266473698-3 32 -0.000698 hybrid +132_3-1 Q0 MARCO_04_858408112-36 33 -0.003084 hybrid +132_3-1 Q0 MARCO_19_266473698-53 34 -0.005590 hybrid +132_3-1 Q0 MARCO_19_266473698-23 35 -0.008326 hybrid +132_3-1 Q0 MARCO_19_266473698-36 36 -0.021330 hybrid +132_3-1 Q0 MARCO_19_266473698-52 37 -0.025738 hybrid +132_3-1 Q0 MARCO_19_266473698-76 38 -0.033687 hybrid +132_3-1 Q0 MARCO_19_266473698-34 39 -0.043642 hybrid +132_3-1 Q0 MARCO_19_266473698-10 40 -0.043864 hybrid +132_3-1 Q0 KILT_52233911-41 41 -0.044596 hybrid +132_3-1 Q0 MARCO_19_266473698-70 42 -0.048565 hybrid +132_3-1 Q0 MARCO_19_266412467-10 43 -0.062582 hybrid +132_3-1 Q0 MARCO_19_266473698-28 44 -0.066258 hybrid +132_3-1 Q0 MARCO_19_266473698-75 45 -0.069027 hybrid +132_3-1 Q0 KILT_11914121-23 46 -0.070872 hybrid +132_3-1 Q0 MARCO_19_266412467-11 47 -0.082558 hybrid +132_3-1 Q0 MARCO_19_266412467-30 48 -0.087962 hybrid +132_3-1 Q0 MARCO_19_266473698-30 49 -0.091635 hybrid +132_3-1 Q0 MARCO_19_266473698-32 50 -0.106737 hybrid +132_3-1 Q0 MARCO_44_1109568676-52 51 -0.108654 hybrid +132_3-1 Q0 MARCO_19_266473698-74 52 -0.112157 hybrid +132_3-1 Q0 MARCO_28_283614502-17 53 -0.112415 hybrid +132_3-1 Q0 MARCO_19_266473698-21 54 -0.119920 hybrid +132_3-1 Q0 MARCO_37_74546248-2 55 -0.138364 hybrid +132_3-1 Q0 MARCO_48_623275405-4 56 -0.140702 hybrid +132_3-1 Q0 KILT_8149492-18 57 -0.143007 hybrid +132_3-1 Q0 MARCO_19_266473698-50 58 -0.147853 hybrid +132_3-1 Q0 MARCO_48_624646140-3 59 -0.155298 hybrid +132_3-1 Q0 MARCO_36_995538963-8 60 -0.158353 hybrid +132_3-1 Q0 MARCO_19_266412467-26 61 -0.167726 hybrid +132_3-1 Q0 MARCO_19_266473698-77 62 -0.169189 hybrid +132_3-1 Q0 MARCO_29_1175326324-10 63 -0.172098 hybrid +132_3-1 Q0 MARCO_19_266473698-41 64 -0.188507 hybrid +132_3-1 Q0 MARCO_19_266473698-40 65 -0.194116 hybrid +132_3-1 Q0 MARCO_50_2146436541-112 66 -0.194433 hybrid +132_3-1 Q0 MARCO_19_266473698-24 67 -0.195192 hybrid +132_3-1 Q0 MARCO_19_266473698-63 68 -0.199907 hybrid +132_3-1 Q0 MARCO_19_266412467-9 69 -0.217047 hybrid +132_3-1 Q0 MARCO_19_266412467-7 70 -0.217171 hybrid +132_3-1 Q0 MARCO_19_266473698-66 71 -0.218431 hybrid +132_3-1 Q0 MARCO_19_266473698-12 72 -0.218436 hybrid +132_3-1 Q0 MARCO_19_266473698-61 73 -0.229981 hybrid +132_3-1 Q0 MARCO_19_266473698-59 74 -0.244944 hybrid +132_3-1 Q0 MARCO_36_1001161022-8 75 -0.245299 hybrid +132_3-1 Q0 MARCO_00_1330634246-2 76 -0.250000 hybrid +132_3-1 Q0 MARCO_19_266473698-11 77 -0.253537 hybrid +132_3-1 Q0 MARCO_09_1199187401-8 78 -0.256547 hybrid +132_3-1 Q0 MARCO_19_266473698-58 79 -0.257860 hybrid +132_3-1 Q0 MARCO_16_2847445832-30 80 -0.258136 hybrid +132_3-1 Q0 MARCO_19_266412467-20 81 -0.265803 hybrid +132_3-1 Q0 MARCO_18_1573315574-26 82 -0.270747 hybrid +132_3-1 Q0 MARCO_50_2148855606-22 83 -0.272205 hybrid +132_3-1 Q0 MARCO_37_1226477362-26 84 -0.274906 hybrid +132_3-1 Q0 MARCO_48_114247267-1 85 -0.283777 hybrid +132_3-1 Q0 MARCO_17_2379624412-18 86 -0.285497 hybrid +132_3-1 Q0 MARCO_04_644766581-1 87 -0.287652 hybrid +132_3-1 Q0 KILT_52233943-52 88 -0.289735 hybrid +132_3-1 Q0 MARCO_19_266473698-26 89 -0.291223 hybrid +132_3-1 Q0 MARCO_19_266412467-39 90 -0.293098 hybrid +132_3-1 Q0 MARCO_04_659842335-1 91 -0.293374 hybrid +132_3-1 Q0 KILT_54199706-4 92 -0.293925 hybrid +132_3-1 Q0 KILT_52233943-65 93 -0.300635 hybrid +132_3-1 Q0 MARCO_19_262736003-17 94 -0.301326 hybrid +132_3-1 Q0 MARCO_35_315705941-11 95 -0.302433 hybrid +132_3-1 Q0 MARCO_19_266473698-73 96 -0.302777 hybrid +132_3-1 Q0 MARCO_37_74546248-3 97 -0.303082 hybrid +132_3-1 Q0 MARCO_44_729349767-6 98 -0.305544 hybrid +132_3-1 Q0 MARCO_20_655141777-243 99 -0.307471 hybrid +132_3-1 Q0 MARCO_25_1173147974-1 100 -0.307727 hybrid +132_3-3 Q0 MARCO_19_2040255855-9 1 0.497782 hybrid +132_3-3 Q0 MARCO_19_266473698-6 2 0.325237 hybrid +132_3-3 Q0 MARCO_48_624646140-3 3 0.325012 hybrid +132_3-3 Q0 KILT_52233943-22 4 0.321629 hybrid +132_3-3 Q0 MARCO_19_266473698-48 5 0.285548 hybrid +132_3-3 Q0 MARCO_19_266473698-7 6 0.283071 hybrid +132_3-3 Q0 MARCO_04_858408112-34 7 0.275614 hybrid +132_3-3 Q0 MARCO_19_266473698-47 8 0.250002 hybrid +132_3-3 Q0 MARCO_19_266473698-8 9 0.222996 hybrid +132_3-3 Q0 MARCO_19_266473698-9 10 0.196751 hybrid +132_3-3 Q0 MARCO_19_266473698-20 11 0.182247 hybrid +132_3-3 Q0 MARCO_04_858408112-36 12 0.171197 hybrid +132_3-3 Q0 KILT_52233943-32 13 0.164790 hybrid +132_3-3 Q0 MARCO_19_266473698-3 14 0.153317 hybrid +132_3-3 Q0 MARCO_19_266473698-73 15 0.146479 hybrid +132_3-3 Q0 MARCO_42_1366117883-9 16 0.127276 hybrid +132_3-3 Q0 MARCO_19_266473698-41 17 0.113593 hybrid +132_3-3 Q0 MARCO_37_1226477362-26 18 0.108202 hybrid +132_3-3 Q0 MARCO_19_2506731168-6 19 0.107669 hybrid +132_3-3 Q0 MARCO_19_266473698-62 20 0.042789 hybrid +132_3-3 Q0 MARCO_19_266473698-51 21 0.040270 hybrid +132_3-3 Q0 MARCO_48_623051802-2 22 0.034202 hybrid +132_3-3 Q0 MARCO_19_266473698-1 23 0.033642 hybrid +132_3-3 Q0 KILT_52233911-53 24 -0.009910 hybrid +132_3-3 Q0 MARCO_19_266473698-26 25 -0.018486 hybrid +132_3-3 Q0 KILT_52233943-31 26 -0.023315 hybrid +132_3-3 Q0 KILT_57487479-46 27 -0.031736 hybrid +132_3-3 Q0 KILT_52992307-3 28 -0.032585 hybrid +132_3-3 Q0 MARCO_19_266473698-25 29 -0.032945 hybrid +132_3-3 Q0 MARCO_22_1644883624-30 30 -0.035544 hybrid +132_3-3 Q0 MARCO_19_266473698-67 31 -0.040637 hybrid +132_3-3 Q0 MARCO_19_266473698-35 32 -0.042080 hybrid +132_3-3 Q0 MARCO_19_266473698-4 33 -0.042424 hybrid +132_3-3 Q0 MARCO_09_1199187401-8 34 -0.048639 hybrid +132_3-3 Q0 MARCO_47_1312054708-2 35 -0.077346 hybrid +132_3-3 Q0 KILT_57487479-49 36 -0.080895 hybrid +132_3-3 Q0 MARCO_19_266473698-29 37 -0.082739 hybrid +132_3-3 Q0 MARCO_19_266473698-60 38 -0.083175 hybrid +132_3-3 Q0 MARCO_19_266473698-65 39 -0.085466 hybrid +132_3-3 Q0 MARCO_19_266473698-32 40 -0.087867 hybrid +132_3-3 Q0 MARCO_19_223539634-31 41 -0.091999 hybrid +132_3-3 Q0 MARCO_14_308237251-3 42 -0.098455 hybrid +132_3-3 Q0 KILT_52233943-45 43 -0.098993 hybrid +132_3-3 Q0 KILT_52233911-52 44 -0.100181 hybrid +132_3-3 Q0 MARCO_19_266473698-27 45 -0.107095 hybrid +132_3-3 Q0 KILT_52233943-42 46 -0.114819 hybrid +132_3-3 Q0 KILT_11914121-23 47 -0.116951 hybrid +132_3-3 Q0 MARCO_04_859919078-48 48 -0.121360 hybrid +132_3-3 Q0 MARCO_19_266473698-40 49 -0.123610 hybrid +132_3-3 Q0 MARCO_56_1316619191-31 50 -0.124928 hybrid +132_3-3 Q0 MARCO_04_858408112-35 51 -0.127659 hybrid +132_3-3 Q0 MARCO_37_74546248-2 52 -0.127890 hybrid +132_3-3 Q0 MARCO_19_266473698-30 53 -0.130750 hybrid +132_3-3 Q0 MARCO_19_266473698-76 54 -0.138853 hybrid +132_3-3 Q0 MARCO_48_589683267-10 55 -0.139386 hybrid +132_3-3 Q0 MARCO_36_994431676-3 56 -0.141233 hybrid +132_3-3 Q0 KILT_52233943-24 57 -0.143149 hybrid +132_3-3 Q0 MARCO_04_859919078-53 58 -0.149398 hybrid +132_3-3 Q0 MARCO_44_605704533-7 59 -0.151208 hybrid +132_3-3 Q0 MARCO_47_1312054708-3 60 -0.155880 hybrid +132_3-3 Q0 MARCO_19_266473698-39 61 -0.157475 hybrid +132_3-3 Q0 MARCO_20_655141777-17 62 -0.159881 hybrid +132_3-3 Q0 MARCO_29_1688601908-6 63 -0.161501 hybrid +132_3-3 Q0 MARCO_09_1199187401-5 64 -0.171879 hybrid +132_3-3 Q0 KILT_1478689-6 65 -0.174494 hybrid +132_3-3 Q0 MARCO_04_859919078-51 66 -0.177382 hybrid +132_3-3 Q0 MARCO_19_266473698-42 67 -0.178252 hybrid +132_3-3 Q0 MARCO_55_719783796-4 68 -0.182193 hybrid +132_3-3 Q0 MARCO_42_1359508711-8 69 -0.183561 hybrid +132_3-3 Q0 KILT_5587334-30 70 -0.186769 hybrid +132_3-3 Q0 MARCO_58_1734734538-3 71 -0.186815 hybrid +132_3-3 Q0 MARCO_12_587015892-10 72 -0.187239 hybrid +132_3-3 Q0 MARCO_19_266473698-52 73 -0.187757 hybrid +132_3-3 Q0 MARCO_17_2955585401-8 74 -0.190594 hybrid +132_3-3 Q0 MARCO_19_266473698-56 75 -0.197340 hybrid +132_3-3 Q0 MARCO_19_266473698-70 76 -0.197436 hybrid +132_3-3 Q0 MARCO_19_154849445-25 77 -0.208074 hybrid +132_3-3 Q0 KILT_52233911-46 78 -0.208133 hybrid +132_3-3 Q0 MARCO_19_266473698-57 79 -0.208973 hybrid +132_3-3 Q0 MARCO_33_1314203620-2 80 -0.214041 hybrid +132_3-3 Q0 MARCO_04_859919078-44 81 -0.215568 hybrid +132_3-3 Q0 MARCO_04_859919078-43 82 -0.215639 hybrid +132_3-3 Q0 MARCO_28_283614502-17 83 -0.220964 hybrid +132_3-3 Q0 MARCO_35_315705941-11 84 -0.228158 hybrid +132_3-3 Q0 MARCO_04_859919078-47 85 -0.231764 hybrid +132_3-3 Q0 KILT_57487479-78 86 -0.240651 hybrid +132_3-3 Q0 MARCO_25_531865791-3 87 -0.241272 hybrid +132_3-3 Q0 MARCO_05_809828754-7 88 -0.245302 hybrid +132_3-3 Q0 MARCO_50_2146436541-112 89 -0.246598 hybrid +132_3-3 Q0 KILT_12320795-11 90 -0.247007 hybrid +132_3-3 Q0 MARCO_19_253763509-3 91 -0.247632 hybrid +132_3-3 Q0 MARCO_23_948069353-7 92 -0.249307 hybrid +132_3-3 Q0 MARCO_18_1573315574-26 93 -0.249998 hybrid +132_3-3 Q0 MARCO_19_266473698-75 94 -0.251994 hybrid +132_3-3 Q0 KILT_52233943-23 95 -0.255537 hybrid +132_3-3 Q0 KILT_59181558-13 96 -0.256742 hybrid +132_3-3 Q0 MARCO_13_1255654456-17 97 -0.258396 hybrid +132_3-3 Q0 MARCO_25_533316937-2 98 -0.266943 hybrid +132_3-3 Q0 KILT_25692267-16 99 -0.269341 hybrid +132_3-3 Q0 MARCO_48_625690122-2 100 -0.271653 hybrid +132_3-5 Q0 MARCO_58_1733155476-4 1 0.249998 hybrid +132_3-5 Q0 MARCO_22_1645608644-6 2 0.079391 hybrid +132_3-5 Q0 MARCO_42_1367375275-8 3 0.058267 hybrid +132_3-5 Q0 MARCO_44_606901877-4 4 0.042996 hybrid +132_3-5 Q0 MARCO_01_1869259579-1 5 0.001989 hybrid +132_3-5 Q0 MARCO_30_382362150-20 6 -0.015915 hybrid +132_3-5 Q0 MARCO_33_1314178076-6 7 -0.017008 hybrid +132_3-5 Q0 MARCO_04_862623938-3 8 -0.021116 hybrid +132_3-5 Q0 MARCO_36_995115743-2 9 -0.023793 hybrid +132_3-5 Q0 MARCO_22_1645284806-35 10 -0.029818 hybrid +132_3-5 Q0 MARCO_19_249161710-1 11 -0.072180 hybrid +132_3-5 Q0 MARCO_22_1645342034-2 12 -0.072795 hybrid +132_3-5 Q0 MARCO_36_995115743-45 13 -0.073665 hybrid +132_3-5 Q0 MARCO_04_862623938-23 14 -0.082876 hybrid +132_3-5 Q0 MARCO_35_309105238-5 15 -0.083741 hybrid +132_3-5 Q0 MARCO_46_524486377-3 16 -0.098057 hybrid +132_3-5 Q0 MARCO_06_7291931-2 17 -0.105652 hybrid +132_3-5 Q0 MARCO_17_2912903846-4 18 -0.109253 hybrid +132_3-5 Q0 MARCO_36_995115743-7 19 -0.110174 hybrid +132_3-5 Q0 MARCO_58_1733733283-2 20 -0.119808 hybrid +132_3-5 Q0 MARCO_24_141300538-3 21 -0.123173 hybrid +132_3-5 Q0 MARCO_36_995115743-4 22 -0.129578 hybrid +132_3-5 Q0 MARCO_58_1733867517-24 23 -0.134710 hybrid +132_3-5 Q0 MARCO_36_1002180196-5 24 -0.136219 hybrid +132_3-5 Q0 MARCO_25_519606829-3 25 -0.142887 hybrid +132_3-5 Q0 MARCO_04_1293091136-9 26 -0.147698 hybrid +132_3-5 Q0 MARCO_44_53572356-2 27 -0.148082 hybrid +132_3-5 Q0 MARCO_06_736731836-2 28 -0.152744 hybrid +132_3-5 Q0 MARCO_19_235908656-48 29 -0.155882 hybrid +132_3-5 Q0 MARCO_04_862623938-9 30 -0.156050 hybrid +132_3-5 Q0 MARCO_06_736731836-3 31 -0.157743 hybrid +132_3-5 Q0 MARCO_36_995115743-14 32 -0.164569 hybrid +132_3-5 Q0 MARCO_36_1002193231-10 33 -0.177151 hybrid +132_3-5 Q0 MARCO_22_1644865728-3 34 -0.177586 hybrid +132_3-5 Q0 MARCO_00_718156149-21 35 -0.180786 hybrid +132_3-5 Q0 MARCO_04_862623938-21 36 -0.184375 hybrid +132_3-5 Q0 MARCO_58_1733918604-6 37 -0.187799 hybrid +132_3-5 Q0 MARCO_36_997696094-4 38 -0.193597 hybrid +132_3-5 Q0 MARCO_17_2913009924-1 39 -0.196206 hybrid +132_3-5 Q0 MARCO_20_655141777-18 40 -0.199764 hybrid +132_3-5 Q0 MARCO_22_1644865728-5 41 -0.208770 hybrid +132_3-5 Q0 MARCO_08_685927547-7 42 -0.215853 hybrid +132_3-5 Q0 MARCO_40_1269133418-2 43 -0.217351 hybrid +132_3-5 Q0 MARCO_37_1186075611-2 44 -0.218185 hybrid +132_3-5 Q0 MARCO_19_261444221-9 45 -0.219133 hybrid +132_3-5 Q0 MARCO_19_261444221-7 46 -0.219140 hybrid +132_3-5 Q0 MARCO_36_993774736-4 47 -0.223172 hybrid +132_3-5 Q0 MARCO_19_235908656-33 48 -0.223321 hybrid +132_3-5 Q0 MARCO_23_693358952-2 49 -0.223955 hybrid +132_3-5 Q0 MARCO_22_1644865728-8 50 -0.226897 hybrid +132_3-5 Q0 MARCO_22_1645163968-34 51 -0.227548 hybrid +132_3-5 Q0 MARCO_05_1022364763-3 52 -0.228320 hybrid +132_3-5 Q0 MARCO_19_235908656-2 53 -0.232081 hybrid +132_3-5 Q0 MARCO_22_1645562641-6 54 -0.232237 hybrid +132_3-5 Q0 MARCO_08_685942340-4 55 -0.236429 hybrid +132_3-5 Q0 MARCO_36_995115743-18 56 -0.237377 hybrid +132_3-5 Q0 MARCO_36_995115743-28 57 -0.240108 hybrid +132_3-5 Q0 MARCO_42_1367404998-10 58 -0.241977 hybrid +132_3-5 Q0 MARCO_19_2040255855-11 59 -0.245205 hybrid +132_3-5 Q0 MARCO_48_1185113271-2 60 -0.249847 hybrid +132_3-5 Q0 MARCO_29_633524644-1 61 -0.250002 hybrid +132_3-5 Q0 KILT_12112193-21 62 -0.250666 hybrid +132_3-5 Q0 MARCO_31_1434065718-3 63 -0.255081 hybrid +132_3-5 Q0 MARCO_22_1644865728-10 64 -0.256895 hybrid +132_3-5 Q0 MARCO_19_258362801-11 65 -0.259931 hybrid +132_3-5 Q0 MARCO_36_995115743-32 66 -0.261012 hybrid +132_3-5 Q0 MARCO_19_235908656-32 67 -0.272045 hybrid +132_3-5 Q0 MARCO_36_995115743-29 68 -0.273201 hybrid +132_3-5 Q0 MARCO_36_993509859-2 69 -0.276029 hybrid +132_3-5 Q0 MARCO_36_995115743-11 70 -0.280221 hybrid +132_3-5 Q0 MARCO_51_122069718-5 71 -0.280625 hybrid +132_3-5 Q0 MARCO_36_995115743-5 72 -0.283312 hybrid +132_3-5 Q0 MARCO_19_581423406-100 73 -0.284139 hybrid +132_3-5 Q0 MARCO_17_2897650503-154 74 -0.284139 hybrid +132_3-5 Q0 MARCO_19_165054484-163 75 -0.284139 hybrid +132_3-5 Q0 MARCO_04_1293091136-6 76 -0.285267 hybrid +132_3-5 Q0 MARCO_36_995115743-31 77 -0.287116 hybrid +132_3-5 Q0 MARCO_22_1645660001-2 78 -0.291680 hybrid +132_3-5 Q0 MARCO_22_1645562641-4 79 -0.296272 hybrid +132_3-5 Q0 MARCO_36_994246585-5 80 -0.297541 hybrid +132_3-5 Q0 MARCO_04_862623938-11 81 -0.298748 hybrid +132_3-5 Q0 MARCO_36_958814344-6 82 -0.300777 hybrid +132_3-5 Q0 MARCO_25_519526378-6 83 -0.300828 hybrid +132_3-5 Q0 MARCO_17_2913217784-4 84 -0.304793 hybrid +132_3-5 Q0 MARCO_40_1267172266-3 85 -0.304914 hybrid +132_3-5 Q0 MARCO_50_1609646744-4 86 -0.304981 hybrid +132_3-5 Q0 MARCO_17_2913009924-25 87 -0.306705 hybrid +132_3-5 Q0 MARCO_19_258035767-45 88 -0.307476 hybrid +132_3-5 Q0 MARCO_25_519526378-7 89 -0.312800 hybrid +132_3-5 Q0 MARCO_22_1522263958-11 90 -0.312969 hybrid +132_3-5 Q0 MARCO_36_842481400-2 91 -0.315574 hybrid +132_3-5 Q0 MARCO_04_1293091136-5 92 -0.316761 hybrid +132_3-5 Q0 MARCO_34_3414626-1 93 -0.318117 hybrid +132_3-5 Q0 MARCO_01_830147397-24 94 -0.321513 hybrid +132_3-5 Q0 MARCO_19_2487007325-25 95 -0.321513 hybrid +132_3-5 Q0 MARCO_14_466351807-30 96 -0.321772 hybrid +132_3-5 Q0 MARCO_50_1609646744-5 97 -0.321858 hybrid +132_3-5 Q0 MARCO_50_1431175904-35 98 -0.321897 hybrid +132_3-5 Q0 MARCO_17_2913217784-29 99 -0.321983 hybrid +132_3-5 Q0 MARCO_38_845070181-10 100 -0.324640 hybrid +132_3-7 Q0 MARCO_19_266473698-39 1 0.431100 hybrid +132_3-7 Q0 MARCO_19_266473698-10 2 0.398571 hybrid +132_3-7 Q0 MARCO_04_858408112-36 3 0.352987 hybrid +132_3-7 Q0 MARCO_19_266473698-2 4 0.317569 hybrid +132_3-7 Q0 MARCO_19_266473698-49 5 0.312101 hybrid +132_3-7 Q0 MARCO_19_266473698-20 6 0.225748 hybrid +132_3-7 Q0 MARCO_19_266580491-8 7 0.221581 hybrid +132_3-7 Q0 MARCO_19_266473698-35 8 0.200094 hybrid +132_3-7 Q0 MARCO_29_1175326324-10 9 0.114639 hybrid +132_3-7 Q0 MARCO_19_266473698-1 10 0.109607 hybrid +132_3-7 Q0 MARCO_19_266412467-1 11 0.077162 hybrid +132_3-7 Q0 MARCO_19_266473698-43 12 0.028784 hybrid +132_3-7 Q0 MARCO_19_266412467-20 13 0.028362 hybrid +132_3-7 Q0 MARCO_04_858408112-35 14 0.024503 hybrid +132_3-7 Q0 MARCO_19_266412467-30 15 0.022134 hybrid +132_3-7 Q0 MARCO_19_266473698-29 16 0.013079 hybrid +132_3-7 Q0 MARCO_19_266473698-27 17 0.005378 hybrid +132_3-7 Q0 MARCO_19_266473698-42 18 -0.018117 hybrid +132_3-7 Q0 MARCO_19_266473698-7 19 -0.032126 hybrid +132_3-7 Q0 MARCO_19_266412467-3 20 -0.053047 hybrid +132_3-7 Q0 MARCO_05_319131414-2 21 -0.053875 hybrid +132_3-7 Q0 KILT_947442-14 22 -0.060160 hybrid +132_3-7 Q0 MARCO_19_2040255855-9 23 -0.064695 hybrid +132_3-7 Q0 MARCO_19_266473698-3 24 -0.079349 hybrid +132_3-7 Q0 MARCO_19_266473698-19 25 -0.082716 hybrid +132_3-7 Q0 MARCO_19_266412467-10 26 -0.088948 hybrid +132_3-7 Q0 MARCO_17_2379624412-18 27 -0.090769 hybrid +132_3-7 Q0 MARCO_19_266473698-50 28 -0.090797 hybrid +132_3-7 Q0 MARCO_19_266473698-68 29 -0.093853 hybrid +132_3-7 Q0 MARCO_19_266473698-58 30 -0.095737 hybrid +132_3-7 Q0 MARCO_19_266473698-6 31 -0.097299 hybrid +132_3-7 Q0 MARCO_19_266412467-6 32 -0.098914 hybrid +132_3-7 Q0 MARCO_19_266473698-65 33 -0.107387 hybrid +132_3-7 Q0 MARCO_19_266473698-32 34 -0.111999 hybrid +132_3-7 Q0 MARCO_19_266473698-5 35 -0.112575 hybrid +132_3-7 Q0 MARCO_19_266412467-11 36 -0.116169 hybrid +132_3-7 Q0 MARCO_50_1177638426-16 37 -0.118215 hybrid +132_3-7 Q0 MARCO_19_266473698-22 38 -0.139052 hybrid +132_3-7 Q0 MARCO_31_644392863-5 39 -0.147810 hybrid +132_3-7 Q0 MARCO_19_266412467-9 40 -0.173171 hybrid +132_3-7 Q0 MARCO_19_266473698-9 41 -0.175272 hybrid +132_3-7 Q0 MARCO_19_266412467-34 42 -0.179381 hybrid +132_3-7 Q0 KILT_52992307-3 43 -0.181118 hybrid +132_3-7 Q0 MARCO_36_995538963-8 44 -0.193193 hybrid +132_3-7 Q0 KILT_21786641-33 45 -0.202289 hybrid +132_3-7 Q0 MARCO_48_1188236562-5 46 -0.206672 hybrid +132_3-7 Q0 MARCO_19_266473698-63 47 -0.209024 hybrid +132_3-7 Q0 MARCO_19_266473698-37 48 -0.218685 hybrid +132_3-7 Q0 MARCO_20_655049226-10 49 -0.219272 hybrid +132_3-7 Q0 MARCO_50_1429130906-33 50 -0.228019 hybrid +132_3-7 Q0 MARCO_19_266473698-48 51 -0.235699 hybrid +132_3-7 Q0 MARCO_19_266412467-32 52 -0.239815 hybrid +132_3-7 Q0 MARCO_21_1375915326-4 53 -0.241708 hybrid +132_3-7 Q0 MARCO_19_266473698-30 54 -0.243484 hybrid +132_3-7 Q0 MARCO_19_266473698-23 55 -0.246188 hybrid +132_3-7 Q0 MARCO_18_4370096812-6 56 -0.247512 hybrid +132_3-7 Q0 MARCO_19_266473698-13 57 -0.248710 hybrid +132_3-7 Q0 KILT_30242372-20 58 -0.249999 hybrid +132_3-7 Q0 MARCO_19_266412467-19 59 -0.250420 hybrid +132_3-7 Q0 MARCO_21_1376285318-3 60 -0.250674 hybrid +132_3-7 Q0 MARCO_19_266412467-18 61 -0.258748 hybrid +132_3-7 Q0 MARCO_19_266473698-8 62 -0.262342 hybrid +132_3-7 Q0 MARCO_19_266412467-23 63 -0.263226 hybrid +132_3-7 Q0 MARCO_01_1034490048-90 64 -0.264898 hybrid +132_3-7 Q0 MARCO_19_266473698-56 65 -0.265285 hybrid +132_3-7 Q0 MARCO_19_266580491-1 66 -0.269062 hybrid +132_3-7 Q0 MARCO_19_266473698-62 67 -0.270090 hybrid +132_3-7 Q0 MARCO_01_1034490048-12 68 -0.270154 hybrid +132_3-7 Q0 MARCO_17_2944541684-45 69 -0.270982 hybrid +132_3-7 Q0 MARCO_19_266473698-12 70 -0.272885 hybrid +132_3-7 Q0 MARCO_48_626081662-7 71 -0.273445 hybrid +132_3-7 Q0 MARCO_19_266473698-11 72 -0.275058 hybrid +132_3-7 Q0 MARCO_21_1376020448-6 73 -0.278221 hybrid +132_3-7 Q0 MARCO_18_1270013948-7 74 -0.280222 hybrid +132_3-7 Q0 KILT_26506968-1 75 -0.287912 hybrid +132_3-7 Q0 MARCO_19_266473698-25 76 -0.288937 hybrid +132_3-7 Q0 MARCO_28_283614502-17 77 -0.293041 hybrid +132_3-7 Q0 KILT_58620732-3 78 -0.294267 hybrid +132_3-7 Q0 MARCO_19_266473698-70 79 -0.296634 hybrid +132_3-7 Q0 MARCO_26_1606533812-6 80 -0.297132 hybrid +132_3-7 Q0 MARCO_16_4105786320-13 81 -0.299850 hybrid +132_3-7 Q0 MARCO_21_1376020448-7 82 -0.302958 hybrid +132_3-7 Q0 MARCO_19_266412467-14 83 -0.303660 hybrid +132_3-7 Q0 KILT_669964-1 84 -0.305186 hybrid +132_3-7 Q0 MARCO_19_266473698-31 85 -0.305321 hybrid +132_3-7 Q0 MARCO_19_266473698-15 86 -0.308377 hybrid +132_3-7 Q0 MARCO_37_695078536-7 87 -0.310134 hybrid +132_3-7 Q0 MARCO_19_266473698-34 88 -0.315698 hybrid +132_3-7 Q0 MARCO_19_266412467-26 89 -0.318924 hybrid +132_3-7 Q0 MARCO_19_266473698-21 90 -0.320414 hybrid +132_3-7 Q0 MARCO_19_266473698-40 91 -0.321651 hybrid +132_3-7 Q0 KILT_2163412-24 92 -0.325320 hybrid +132_3-7 Q0 KILT_54199706-1 93 -0.325476 hybrid +132_3-7 Q0 MARCO_17_4282412444-5 94 -0.325574 hybrid +132_3-7 Q0 KILT_3345627-2 95 -0.326127 hybrid +132_3-7 Q0 MARCO_19_266412467-24 96 -0.337356 hybrid +132_3-7 Q0 MARCO_19_266412467-39 97 -0.342230 hybrid +132_3-7 Q0 MARCO_04_202749965-3 98 -0.345698 hybrid +132_3-7 Q0 MARCO_17_1136196611-110 99 -0.347723 hybrid +132_3-7 Q0 MARCO_42_1365864590-8 100 -0.349433 hybrid +133_1-1 Q0 MARCO_49_408044686-10 1 0.249998 hybrid +133_1-1 Q0 MARCO_30_1649987246-6 2 0.203932 hybrid +133_1-1 Q0 MARCO_49_408044686-9 3 0.154633 hybrid +133_1-1 Q0 MARCO_30_1649987246-9 4 0.099787 hybrid +133_1-1 Q0 MARCO_30_1649987246-8 5 0.043838 hybrid +133_1-1 Q0 MARCO_49_407254110-8 6 -0.040326 hybrid +133_1-1 Q0 MARCO_51_817305147-9 7 -0.041592 hybrid +133_1-1 Q0 MARCO_32_1011749359-4 8 -0.046479 hybrid +133_1-1 Q0 MARCO_00_252389472-2 9 -0.057892 hybrid +133_1-1 Q0 MARCO_21_1436396754-6 10 -0.074221 hybrid +133_1-1 Q0 MARCO_30_604425193-12 11 -0.091069 hybrid +133_1-1 Q0 MARCO_49_408110023-3 12 -0.095193 hybrid +133_1-1 Q0 MARCO_49_408044686-2 13 -0.099699 hybrid +133_1-1 Q0 MARCO_49_407767275-10 14 -0.106758 hybrid +133_1-1 Q0 MARCO_40_172971301-4 15 -0.123476 hybrid +133_1-1 Q0 MARCO_52_1207612281-3 16 -0.139775 hybrid +133_1-1 Q0 MARCO_49_407866897-10 17 -0.158360 hybrid +133_1-1 Q0 MARCO_30_1649787634-4 18 -0.160319 hybrid +133_1-1 Q0 MARCO_31_885817404-7 19 -0.160819 hybrid +133_1-1 Q0 MARCO_49_408044686-3 20 -0.167054 hybrid +133_1-1 Q0 MARCO_20_481854988-4 21 -0.174291 hybrid +133_1-1 Q0 MARCO_49_1694178165-7 22 -0.175506 hybrid +133_1-1 Q0 MARCO_38_584727843-5 23 -0.180122 hybrid +133_1-1 Q0 MARCO_20_481854988-5 24 -0.180776 hybrid +133_1-1 Q0 MARCO_21_960890277-34 25 -0.181357 hybrid +133_1-1 Q0 MARCO_42_257610962-2 26 -0.182314 hybrid +133_1-1 Q0 MARCO_47_286039850-4 27 -0.183417 hybrid +133_1-1 Q0 MARCO_49_408110023-6 28 -0.186220 hybrid +133_1-1 Q0 MARCO_01_801549683-6 29 -0.233504 hybrid +133_1-1 Q0 MARCO_52_1207612281-4 30 -0.237370 hybrid +133_1-1 Q0 MARCO_49_408044686-22 31 -0.246385 hybrid +133_1-1 Q0 MARCO_49_407993445-8 32 -0.247600 hybrid +133_1-1 Q0 MARCO_49_408018463-18 33 -0.248191 hybrid +133_1-1 Q0 MARCO_40_170587793-4 34 -0.248322 hybrid +133_1-1 Q0 MARCO_49_408018463-14 35 -0.250273 hybrid +133_1-1 Q0 MARCO_28_648185183-4 36 -0.251642 hybrid +133_1-1 Q0 MARCO_41_1847614301-1 37 -0.254946 hybrid +133_1-1 Q0 MARCO_54_556986521-21 38 -0.256520 hybrid +133_1-1 Q0 MARCO_49_408110023-4 39 -0.256723 hybrid +133_1-1 Q0 MARCO_49_408018463-5 40 -0.259985 hybrid +133_1-1 Q0 MARCO_38_584727843-6 41 -0.266757 hybrid +133_1-1 Q0 MARCO_30_604405806-3 42 -0.267021 hybrid +133_1-1 Q0 MARCO_30_1650070482-11 43 -0.267700 hybrid +133_1-1 Q0 MARCO_51_1542142755-2 44 -0.270218 hybrid +133_1-1 Q0 MARCO_47_587723733-24 45 -0.271213 hybrid +133_1-1 Q0 MARCO_49_408018463-7 46 -0.271919 hybrid +133_1-1 Q0 MARCO_31_885817404-6 47 -0.276232 hybrid +133_1-1 Q0 MARCO_14_129523741-9 48 -0.276265 hybrid +133_1-1 Q0 MARCO_30_1649787634-8 49 -0.279928 hybrid +133_1-1 Q0 MARCO_29_1259851436-1 50 -0.285186 hybrid +133_1-1 Q0 MARCO_52_1378433154-6 51 -0.286978 hybrid +133_1-1 Q0 MARCO_21_959969754-7 52 -0.292284 hybrid +133_1-1 Q0 MARCO_40_170872468-7 53 -0.292757 hybrid +133_1-1 Q0 MARCO_28_647962770-24 54 -0.293847 hybrid +133_1-1 Q0 MARCO_49_578545621-3 55 -0.294249 hybrid +133_1-1 Q0 MARCO_49_408018463-2 56 -0.295033 hybrid +133_1-1 Q0 MARCO_47_1374013015-7 57 -0.302402 hybrid +133_1-1 Q0 MARCO_28_434237199-3 58 -0.303232 hybrid +133_1-1 Q0 MARCO_21_963020852-13 59 -0.309550 hybrid +133_1-1 Q0 MARCO_41_1847614301-3 60 -0.311398 hybrid +133_1-1 Q0 MARCO_49_407212670-4 61 -0.311597 hybrid +133_1-1 Q0 MARCO_54_1595657427-18 62 -0.312932 hybrid +133_1-1 Q0 MARCO_00_1584661169-34 63 -0.313491 hybrid +133_1-1 Q0 MARCO_40_171636629-5 64 -0.313523 hybrid +133_1-1 Q0 MARCO_43_747853505-8 65 -0.314157 hybrid +133_1-1 Q0 MARCO_49_408018463-8 66 -0.316103 hybrid +133_1-1 Q0 MARCO_00_1041612032-1 67 -0.317053 hybrid +133_1-1 Q0 MARCO_47_286039850-6 68 -0.317255 hybrid +133_1-1 Q0 MARCO_49_1694178165-5 69 -0.317288 hybrid +133_1-1 Q0 MARCO_30_1649787634-5 70 -0.318375 hybrid +133_1-1 Q0 MARCO_48_288189352-2 71 -0.319512 hybrid +133_1-1 Q0 MARCO_20_1587212315-5 72 -0.322199 hybrid +133_1-1 Q0 MARCO_21_963020852-32 73 -0.326065 hybrid +133_1-1 Q0 MARCO_28_647962770-11 74 -0.326143 hybrid +133_1-1 Q0 MARCO_20_481854988-2 75 -0.329865 hybrid +133_1-1 Q0 MARCO_49_407381005-1 76 -0.331684 hybrid +133_1-1 Q0 MARCO_00_1584661169-39 77 -0.331821 hybrid +133_1-1 Q0 MARCO_00_1584661169-37 78 -0.336517 hybrid +133_1-1 Q0 MARCO_49_408044686-15 79 -0.340487 hybrid +133_1-1 Q0 MARCO_49_407717175-12 80 -0.340637 hybrid +133_1-1 Q0 MARCO_30_1649987246-3 81 -0.342214 hybrid +133_1-1 Q0 MARCO_47_97926714-6 82 -0.342705 hybrid +133_1-1 Q0 MARCO_49_408044686-21 83 -0.343037 hybrid +133_1-1 Q0 MARCO_49_407354142-6 84 -0.343132 hybrid +133_1-1 Q0 MARCO_49_407717175-17 85 -0.346952 hybrid +133_1-1 Q0 MARCO_49_407372305-1 86 -0.347724 hybrid +133_1-1 Q0 MARCO_52_1207726252-3 87 -0.348018 hybrid +133_1-1 Q0 MARCO_00_731332696-2 88 -0.348784 hybrid +133_1-1 Q0 MARCO_49_407717175-3 89 -0.353646 hybrid +133_1-1 Q0 MARCO_49_408044686-11 90 -0.355474 hybrid +133_1-1 Q0 MARCO_49_407254110-2 91 -0.355840 hybrid +133_1-1 Q0 MARCO_30_1649787634-6 92 -0.357309 hybrid +133_1-1 Q0 MARCO_38_615148680-7 93 -0.357962 hybrid +133_1-1 Q0 MARCO_47_286039850-5 94 -0.358680 hybrid +133_1-1 Q0 MARCO_06_1653480130-9 95 -0.360117 hybrid +133_1-1 Q0 MARCO_49_407767275-15 96 -0.360362 hybrid +133_1-1 Q0 MARCO_49_408342255-6 97 -0.362576 hybrid +133_1-1 Q0 MARCO_00_1584661169-44 98 -0.364140 hybrid +133_1-1 Q0 MARCO_38_584751021-1 99 -0.366445 hybrid +133_1-1 Q0 MARCO_54_557088861-7 100 -0.366598 hybrid +133_1-3 Q0 MARCO_41_1847614301-2 1 0.548591 hybrid +133_1-3 Q0 MARCO_23_895409741-1 2 0.393104 hybrid +133_1-3 Q0 MARCO_41_2129778814-11 3 0.035316 hybrid +133_1-3 Q0 MARCO_25_1167948093-1 4 0.034578 hybrid +133_1-3 Q0 MARCO_29_31280170-2 5 -0.011814 hybrid +133_1-3 Q0 MARCO_13_141730204-4 6 -0.029912 hybrid +133_1-3 Q0 MARCO_21_963020852-33 7 -0.037241 hybrid +133_1-3 Q0 MARCO_31_903812770-6 8 -0.092459 hybrid +133_1-3 Q0 MARCO_52_361046997-2 9 -0.123865 hybrid +133_1-3 Q0 MARCO_42_257610962-2 10 -0.133856 hybrid +133_1-3 Q0 MARCO_41_1847614301-3 11 -0.140776 hybrid +133_1-3 Q0 MARCO_31_903812770-5 12 -0.158110 hybrid +133_1-3 Q0 MARCO_14_1422461002-1 13 -0.163924 hybrid +133_1-3 Q0 MARCO_41_2129778814-10 14 -0.180556 hybrid +133_1-3 Q0 MARCO_51_817072979-2 15 -0.181208 hybrid +133_1-3 Q0 MARCO_24_1307660-1 16 -0.186261 hybrid +133_1-3 Q0 MARCO_41_2129778814-3 17 -0.186484 hybrid +133_1-3 Q0 MARCO_11_777295771-3 18 -0.194841 hybrid +133_1-3 Q0 MARCO_42_1675940449-1 19 -0.200988 hybrid +133_1-3 Q0 MARCO_43_747853505-7 20 -0.216150 hybrid +133_1-3 Q0 MARCO_41_2129778814-12 21 -0.219324 hybrid +133_1-3 Q0 MARCO_51_817080609-5 22 -0.230287 hybrid +133_1-3 Q0 MARCO_41_1847614301-1 23 -0.230645 hybrid +133_1-3 Q0 MARCO_32_1018872214-1 24 -0.234010 hybrid +133_1-3 Q0 MARCO_40_617356949-13 25 -0.242221 hybrid +133_1-3 Q0 MARCO_41_2129778814-5 26 -0.244939 hybrid +133_1-3 Q0 MARCO_21_291233325-14 27 -0.250001 hybrid +133_1-3 Q0 MARCO_55_676401627-5 28 -0.256576 hybrid +133_1-3 Q0 MARCO_14_1422461002-4 29 -0.257290 hybrid +133_1-3 Q0 MARCO_41_2129778814-9 30 -0.259960 hybrid +133_1-3 Q0 MARCO_13_684840871-2 31 -0.265869 hybrid +133_1-3 Q0 MARCO_29_798386633-6 32 -0.272501 hybrid +133_1-3 Q0 MARCO_36_1000989002-5 33 -0.274881 hybrid +133_1-3 Q0 MARCO_47_1281866164-5 34 -0.277571 hybrid +133_1-3 Q0 MARCO_37_838144198-7 35 -0.281101 hybrid +133_1-3 Q0 MARCO_36_1000970916-1 36 -0.285908 hybrid +133_1-3 Q0 MARCO_56_1317921108-1 37 -0.287587 hybrid +133_1-3 Q0 MARCO_42_258270495-16 38 -0.289240 hybrid +133_1-3 Q0 MARCO_28_172819740-4 39 -0.290362 hybrid +133_1-3 Q0 MARCO_42_1090416617-3 40 -0.292722 hybrid +133_1-3 Q0 MARCO_46_12563667-3 41 -0.297228 hybrid +133_1-3 Q0 MARCO_24_1079440211-1 42 -0.300138 hybrid +133_1-3 Q0 MARCO_51_817080609-8 43 -0.300451 hybrid +133_1-3 Q0 MARCO_41_2128564310-1 44 -0.303107 hybrid +133_1-3 Q0 MARCO_36_1802330173-1 45 -0.307249 hybrid +133_1-3 Q0 MARCO_41_2128254790-6 46 -0.310136 hybrid +133_1-3 Q0 MARCO_52_1378433154-6 47 -0.310240 hybrid +133_1-3 Q0 MARCO_14_1422461002-2 48 -0.311186 hybrid +133_1-3 Q0 MARCO_47_1281866164-7 49 -0.311662 hybrid +133_1-3 Q0 MARCO_47_1281866164-9 50 -0.311668 hybrid +133_1-3 Q0 MARCO_31_817983190-2 51 -0.312698 hybrid +133_1-3 Q0 MARCO_07_622353478-3 52 -0.319198 hybrid +133_1-3 Q0 MARCO_40_172971301-4 53 -0.319310 hybrid +133_1-3 Q0 MARCO_40_1270581781-2 54 -0.319915 hybrid +133_1-3 Q0 MARCO_51_817072979-4 55 -0.320329 hybrid +133_1-3 Q0 MARCO_46_12087807-2 56 -0.321438 hybrid +133_1-3 Q0 MARCO_42_1090416617-1 57 -0.322255 hybrid +133_1-3 Q0 MARCO_30_609445025-1 58 -0.326103 hybrid +133_1-3 Q0 MARCO_40_617356949-11 59 -0.326323 hybrid +133_1-3 Q0 MARCO_50_246817545-14 60 -0.328114 hybrid +133_1-3 Q0 MARCO_02_616080436-1 61 -0.330474 hybrid +133_1-3 Q0 MARCO_55_676401627-4 62 -0.333481 hybrid +133_1-3 Q0 MARCO_41_1847663807-5 63 -0.334200 hybrid +133_1-3 Q0 MARCO_20_14748038-1 64 -0.337363 hybrid +133_1-3 Q0 MARCO_52_361046997-1 65 -0.338822 hybrid +133_1-3 Q0 MARCO_37_838144198-1 66 -0.340252 hybrid +133_1-3 Q0 MARCO_36_1088009820-6 67 -0.341679 hybrid +133_1-3 Q0 MARCO_31_903812770-9 68 -0.341915 hybrid +133_1-3 Q0 MARCO_53_1123534061-1 69 -0.345350 hybrid +133_1-3 Q0 MARCO_12_1861101487-4 70 -0.345619 hybrid +133_1-3 Q0 MARCO_36_1000800760-1 71 -0.346064 hybrid +133_1-3 Q0 MARCO_37_173108103-1 72 -0.349169 hybrid +133_1-3 Q0 MARCO_12_1861101487-3 73 -0.350324 hybrid +133_1-3 Q0 MARCO_14_1143562278-4 74 -0.351108 hybrid +133_1-3 Q0 MARCO_28_646725838-8 75 -0.353248 hybrid +133_1-3 Q0 MARCO_31_300004760-1 76 -0.354795 hybrid +133_1-3 Q0 MARCO_29_28269851-1 77 -0.355240 hybrid +133_1-3 Q0 MARCO_31_903812770-2 78 -0.356785 hybrid +133_1-3 Q0 MARCO_25_1430323980-2 79 -0.357692 hybrid +133_1-3 Q0 MARCO_23_893813683-13 80 -0.357737 hybrid +133_1-3 Q0 MARCO_47_1281866164-3 81 -0.361362 hybrid +133_1-3 Q0 MARCO_23_895409741-2 82 -0.362215 hybrid +133_1-3 Q0 MARCO_50_2156264634-26 83 -0.366065 hybrid +133_1-3 Q0 MARCO_36_1000989002-1 84 -0.366272 hybrid +133_1-3 Q0 MARCO_51_1542142755-2 85 -0.366580 hybrid +133_1-3 Q0 MARCO_23_895409741-4 86 -0.367513 hybrid +133_1-3 Q0 MARCO_41_2128355521-1 87 -0.369987 hybrid +133_1-3 Q0 MARCO_40_880336472-3 88 -0.371111 hybrid +133_1-3 Q0 MARCO_40_172971301-7 89 -0.374472 hybrid +133_1-3 Q0 MARCO_31_941424721-8 90 -0.375152 hybrid +133_1-3 Q0 MARCO_24_1723652218-4 91 -0.375561 hybrid +133_1-3 Q0 MARCO_47_1281866164-4 92 -0.377523 hybrid +133_1-3 Q0 MARCO_51_817305147-8 93 -0.377901 hybrid +133_1-3 Q0 MARCO_36_1000842521-1 94 -0.377904 hybrid +133_1-3 Q0 MARCO_47_975313921-1 95 -0.380939 hybrid +133_1-3 Q0 MARCO_52_1378433154-7 96 -0.381997 hybrid +133_1-3 Q0 MARCO_34_1327324913-6 97 -0.382497 hybrid +133_1-3 Q0 MARCO_31_1633658842-5 98 -0.384254 hybrid +133_1-3 Q0 MARCO_47_597571919-1 99 -0.385536 hybrid +133_1-3 Q0 MARCO_57_152792841-1 100 -0.386935 hybrid +133_1-5 Q0 MARCO_49_408018463-5 1 0.250000 hybrid +133_1-5 Q0 MARCO_49_408044686-9 2 0.164146 hybrid +133_1-5 Q0 MARCO_49_408044686-10 3 0.070674 hybrid +133_1-5 Q0 MARCO_24_1132484407-4 4 0.040553 hybrid +133_1-5 Q0 MARCO_01_801549683-6 5 0.034211 hybrid +133_1-5 Q0 MARCO_30_604425193-12 6 0.026523 hybrid +133_1-5 Q0 MARCO_40_814477356-7 7 0.023879 hybrid +133_1-5 Q0 MARCO_49_1694178165-5 8 0.007134 hybrid +133_1-5 Q0 MARCO_49_408044686-3 9 -0.009865 hybrid +133_1-5 Q0 MARCO_49_407767275-10 10 -0.011606 hybrid +133_1-5 Q0 MARCO_49_408044686-19 11 -0.035168 hybrid +133_1-5 Q0 MARCO_42_1654409183-7 12 -0.053027 hybrid +133_1-5 Q0 MARCO_30_1649787634-4 13 -0.065197 hybrid +133_1-5 Q0 MARCO_39_421991508-3 14 -0.070404 hybrid +133_1-5 Q0 MARCO_31_1609380767-2 15 -0.086035 hybrid +133_1-5 Q0 MARCO_23_895825640-4 16 -0.088527 hybrid +133_1-5 Q0 MARCO_49_1694178165-7 17 -0.090485 hybrid +133_1-5 Q0 MARCO_49_408018463-1 18 -0.102536 hybrid +133_1-5 Q0 MARCO_43_706720352-23 19 -0.107916 hybrid +133_1-5 Q0 MARCO_49_408044686-11 20 -0.123455 hybrid +133_1-5 Q0 MARCO_30_1805421348-24 21 -0.138821 hybrid +133_1-5 Q0 MARCO_49_407717175-3 22 -0.148369 hybrid +133_1-5 Q0 MARCO_42_1758500388-13 23 -0.148423 hybrid +133_1-5 Q0 MARCO_30_454995687-4 24 -0.148937 hybrid +133_1-5 Q0 MARCO_49_408018463-13 25 -0.153576 hybrid +133_1-5 Q0 MARCO_41_2111521935-5 26 -0.155063 hybrid +133_1-5 Q0 MARCO_49_408018463-7 27 -0.170921 hybrid +133_1-5 Q0 MARCO_14_1432458050-1 28 -0.172386 hybrid +133_1-5 Q0 MARCO_49_407381005-1 29 -0.173175 hybrid +133_1-5 Q0 MARCO_49_408110023-3 30 -0.190542 hybrid +133_1-5 Q0 MARCO_40_735069019-16 31 -0.191953 hybrid +133_1-5 Q0 MARCO_32_620829963-8 32 -0.210806 hybrid +133_1-5 Q0 MARCO_49_408044686-4 33 -0.213813 hybrid +133_1-5 Q0 MARCO_49_407767275-8 34 -0.216116 hybrid +133_1-5 Q0 MARCO_21_1045774775-3 35 -0.221966 hybrid +133_1-5 Q0 MARCO_01_801549683-3 36 -0.222609 hybrid +133_1-5 Q0 MARCO_49_224255508-9 37 -0.236321 hybrid +133_1-5 Q0 MARCO_49_407372305-1 38 -0.237121 hybrid +133_1-5 Q0 MARCO_49_408044686-1 39 -0.241684 hybrid +133_1-5 Q0 MARCO_49_408044686-2 40 -0.241949 hybrid +133_1-5 Q0 MARCO_49_408044686-15 41 -0.243420 hybrid +133_1-5 Q0 MARCO_49_408342255-6 42 -0.244307 hybrid +133_1-5 Q0 MARCO_49_1853476734-7 43 -0.248464 hybrid +133_1-5 Q0 MARCO_29_1697483266-99 44 -0.250000 hybrid +133_1-5 Q0 MARCO_28_907052256-7 45 -0.251525 hybrid +133_1-5 Q0 MARCO_13_594871201-7 46 -0.252514 hybrid +133_1-5 Q0 MARCO_30_1649787634-2 47 -0.264166 hybrid +133_1-5 Q0 MARCO_32_1519829898-14 48 -0.276417 hybrid +133_1-5 Q0 MARCO_38_614331107-5 49 -0.281446 hybrid +133_1-5 Q0 MARCO_49_407866897-10 50 -0.281873 hybrid +133_1-5 Q0 MARCO_28_538338869-4 51 -0.282322 hybrid +133_1-5 Q0 MARCO_41_324559335-14 52 -0.282343 hybrid +133_1-5 Q0 MARCO_06_1899277084-15 53 -0.284057 hybrid +133_1-5 Q0 MARCO_49_407254110-8 54 -0.286917 hybrid +133_1-5 Q0 MARCO_14_1623333751-7 55 -0.293232 hybrid +133_1-5 Q0 MARCO_28_338361249-4 56 -0.294016 hybrid +133_1-5 Q0 MARCO_49_408044686-21 57 -0.294135 hybrid +133_1-5 Q0 MARCO_49_408018463-2 58 -0.297509 hybrid +133_1-5 Q0 MARCO_49_407767275-15 59 -0.298688 hybrid +133_1-5 Q0 MARCO_38_614331107-7 60 -0.301618 hybrid +133_1-5 Q0 MARCO_40_814515359-21 61 -0.303603 hybrid +133_1-5 Q0 MARCO_28_647962770-11 62 -0.305133 hybrid +133_1-5 Q0 MARCO_57_1225982488-2 63 -0.308355 hybrid +133_1-5 Q0 MARCO_01_801549683-8 64 -0.308723 hybrid +133_1-5 Q0 MARCO_41_324559335-2 65 -0.309680 hybrid +133_1-5 Q0 MARCO_30_604405806-3 66 -0.315497 hybrid +133_1-5 Q0 MARCO_59_1027367495-2 67 -0.316649 hybrid +133_1-5 Q0 MARCO_54_1472367096-1 68 -0.316693 hybrid +133_1-5 Q0 MARCO_00_1584725078-43 69 -0.317449 hybrid +133_1-5 Q0 MARCO_40_814951402-8 70 -0.319417 hybrid +133_1-5 Q0 MARCO_49_407767275-12 71 -0.319671 hybrid +133_1-5 Q0 MARCO_30_1649787634-5 72 -0.320266 hybrid +133_1-5 Q0 MARCO_38_613843009-15 73 -0.320904 hybrid +133_1-5 Q0 MARCO_10_1128108917-14 74 -0.324040 hybrid +133_1-5 Q0 MARCO_48_374373740-4 75 -0.324943 hybrid +133_1-5 Q0 MARCO_49_408519984-2 76 -0.328052 hybrid +133_1-5 Q0 MARCO_21_1436396754-6 77 -0.328284 hybrid +133_1-5 Q0 MARCO_43_187656979-3 78 -0.329550 hybrid +133_1-5 Q0 MARCO_38_615269605-6 79 -0.335459 hybrid +133_1-5 Q0 MARCO_32_463976368-10 80 -0.336735 hybrid +133_1-5 Q0 MARCO_32_117454797-2 81 -0.337903 hybrid +133_1-5 Q0 MARCO_41_2112549672-4 82 -0.340590 hybrid +133_1-5 Q0 MARCO_49_407767275-9 83 -0.345386 hybrid +133_1-5 Q0 MARCO_49_1694178165-16 84 -0.345808 hybrid +133_1-5 Q0 MARCO_30_454766626-1 85 -0.347203 hybrid +133_1-5 Q0 MARCO_40_170872468-2 86 -0.351560 hybrid +133_1-5 Q0 MARCO_00_762815105-7 87 -0.352463 hybrid +133_1-5 Q0 MARCO_28_647962770-24 88 -0.356308 hybrid +133_1-5 Q0 MARCO_49_407866897-19 89 -0.357508 hybrid +133_1-5 Q0 MARCO_32_49581245-9 90 -0.359481 hybrid +133_1-5 Q0 MARCO_13_906499826-4 91 -0.363735 hybrid +133_1-5 Q0 MARCO_31_1321802643-13 92 -0.364542 hybrid +133_1-5 Q0 MARCO_14_1425091873-2 93 -0.365558 hybrid +133_1-5 Q0 MARCO_21_1045997737-6 94 -0.365602 hybrid +133_1-5 Q0 MARCO_49_407767275-5 95 -0.368213 hybrid +133_1-5 Q0 MARCO_01_1019206492-19 96 -0.369154 hybrid +133_1-5 Q0 MARCO_37_170415933-3 97 -0.371771 hybrid +133_1-5 Q0 MARCO_01_1019206492-16 98 -0.371857 hybrid +133_1-5 Q0 MARCO_07_478565985-3 99 -0.372014 hybrid +133_1-5 Q0 MARCO_05_518090124-10 100 -0.374615 hybrid +133_1-7 Q0 MARCO_07_1052430134-12 1 0.250001 hybrid +133_1-7 Q0 MARCO_54_1473906903-8 2 0.149003 hybrid +133_1-7 Q0 MARCO_11_875587401-8 3 0.138198 hybrid +133_1-7 Q0 MARCO_25_521623020-10 4 0.084098 hybrid +133_1-7 Q0 MARCO_33_176858642-8 5 0.069449 hybrid +133_1-7 Q0 MARCO_25_521623020-7 6 0.055958 hybrid +133_1-7 Q0 MARCO_32_1494712084-2 7 0.045821 hybrid +133_1-7 Q0 MARCO_40_170855066-3 8 0.027734 hybrid +133_1-7 Q0 MARCO_30_458048779-4 9 0.018937 hybrid +133_1-7 Q0 MARCO_25_521623020-6 10 0.013952 hybrid +133_1-7 Q0 MARCO_39_421991508-2 11 0.001196 hybrid +133_1-7 Q0 MARCO_32_1494757487-7 12 -0.007517 hybrid +133_1-7 Q0 MARCO_32_1494757487-9 13 -0.007517 hybrid +133_1-7 Q0 MARCO_57_478571488-17 14 -0.016520 hybrid +133_1-7 Q0 MARCO_32_1494712084-1 15 -0.037017 hybrid +133_1-7 Q0 MARCO_24_1189965-7 16 -0.053459 hybrid +133_1-7 Q0 MARCO_40_170855066-5 17 -0.072300 hybrid +133_1-7 Q0 MARCO_25_521623020-2 18 -0.072901 hybrid +133_1-7 Q0 MARCO_20_626826480-1 19 -0.080297 hybrid +133_1-7 Q0 MARCO_57_478571488-20 20 -0.085364 hybrid +133_1-7 Q0 MARCO_47_975896139-8 21 -0.090916 hybrid +133_1-7 Q0 MARCO_04_181834998-3 22 -0.092312 hybrid +133_1-7 Q0 MARCO_39_421991508-3 23 -0.095783 hybrid +133_1-7 Q0 MARCO_59_404372885-3 24 -0.106632 hybrid +133_1-7 Q0 MARCO_30_458048779-5 25 -0.107579 hybrid +133_1-7 Q0 MARCO_37_1293703047-6 26 -0.107786 hybrid +133_1-7 Q0 MARCO_32_1494731102-12 27 -0.118611 hybrid +133_1-7 Q0 MARCO_28_431187829-7 28 -0.121567 hybrid +133_1-7 Q0 MARCO_05_1760249661-5 29 -0.124600 hybrid +133_1-7 Q0 MARCO_28_334658990-2 30 -0.133704 hybrid +133_1-7 Q0 MARCO_47_975896139-9 31 -0.143653 hybrid +133_1-7 Q0 MARCO_57_486961949-16 32 -0.150406 hybrid +133_1-7 Q0 MARCO_25_521623020-3 33 -0.156190 hybrid +133_1-7 Q0 MARCO_50_637650336-8 34 -0.156638 hybrid +133_1-7 Q0 MARCO_30_457814917-3 35 -0.158571 hybrid +133_1-7 Q0 MARCO_28_334658990-36 36 -0.163130 hybrid +133_1-7 Q0 MARCO_47_975864664-3 37 -0.164205 hybrid +133_1-7 Q0 MARCO_05_1020488490-8 38 -0.168260 hybrid +133_1-7 Q0 MARCO_54_1473098183-5 39 -0.171104 hybrid +133_1-7 Q0 MARCO_54_177645165-1 40 -0.172555 hybrid +133_1-7 Q0 MARCO_32_1524225579-9 41 -0.175354 hybrid +133_1-7 Q0 MARCO_36_568307564-1 42 -0.178569 hybrid +133_1-7 Q0 MARCO_44_1111274332-4 43 -0.182511 hybrid +133_1-7 Q0 MARCO_57_478571488-24 44 -0.189444 hybrid +133_1-7 Q0 MARCO_40_170855066-4 45 -0.191674 hybrid +133_1-7 Q0 MARCO_35_402951314-23 46 -0.204680 hybrid +133_1-7 Q0 MARCO_49_221130362-1 47 -0.213909 hybrid +133_1-7 Q0 MARCO_42_940922469-4 48 -0.216279 hybrid +133_1-7 Q0 MARCO_44_312200205-1 49 -0.219267 hybrid +133_1-7 Q0 MARCO_28_334658990-34 50 -0.223363 hybrid +133_1-7 Q0 MARCO_32_1494731102-2 51 -0.227343 hybrid +133_1-7 Q0 MARCO_01_1871370715-3 52 -0.229831 hybrid +133_1-7 Q0 MARCO_50_637650336-6 53 -0.236357 hybrid +133_1-7 Q0 MARCO_20_626813883-1 54 -0.239020 hybrid +133_1-7 Q0 MARCO_47_975896139-11 55 -0.240718 hybrid +133_1-7 Q0 MARCO_47_975896139-12 56 -0.241791 hybrid +133_1-7 Q0 MARCO_21_1040240025-5 57 -0.241817 hybrid +133_1-7 Q0 MARCO_32_1494731102-5 58 -0.243198 hybrid +133_1-7 Q0 MARCO_30_194675946-1 59 -0.249999 hybrid +133_1-7 Q0 MARCO_57_486961949-15 60 -0.251073 hybrid +133_1-7 Q0 MARCO_32_1524225579-5 61 -0.264628 hybrid +133_1-7 Q0 MARCO_20_626768385-1 62 -0.267073 hybrid +133_1-7 Q0 MARCO_32_1285610141-2 63 -0.272901 hybrid +133_1-7 Q0 MARCO_32_1524225579-7 64 -0.278027 hybrid +133_1-7 Q0 MARCO_25_521623020-9 65 -0.282782 hybrid +133_1-7 Q0 MARCO_40_148056017-8 66 -0.294004 hybrid +133_1-7 Q0 MARCO_20_626838020-1 67 -0.296969 hybrid +133_1-7 Q0 MARCO_32_1524225579-4 68 -0.298094 hybrid +133_1-7 Q0 MARCO_32_1524225579-8 69 -0.298094 hybrid +133_1-7 Q0 MARCO_32_1524225579-6 70 -0.298094 hybrid +133_1-7 Q0 MARCO_47_968825733-1 71 -0.300300 hybrid +133_1-7 Q0 MARCO_25_521623020-4 72 -0.309193 hybrid +133_1-7 Q0 MARCO_20_626780943-1 73 -0.309969 hybrid +133_1-7 Q0 MARCO_32_115742717-4 74 -0.314498 hybrid +133_1-7 Q0 MARCO_30_365649674-13 75 -0.316732 hybrid +133_1-7 Q0 MARCO_35_402637505-3 76 -0.318385 hybrid +133_1-7 Q0 MARCO_39_417226231-5 77 -0.320867 hybrid +133_1-7 Q0 MARCO_05_1020488490-2 78 -0.328920 hybrid +133_1-7 Q0 MARCO_57_478571488-11 79 -0.329673 hybrid +133_1-7 Q0 MARCO_54_177645165-6 80 -0.331652 hybrid +133_1-7 Q0 MARCO_24_1250100-2 81 -0.334170 hybrid +133_1-7 Q0 MARCO_40_171206797-3 82 -0.335251 hybrid +133_1-7 Q0 MARCO_28_334658990-14 83 -0.336333 hybrid +133_1-7 Q0 MARCO_56_813849526-2 84 -0.339821 hybrid +133_1-7 Q0 MARCO_38_288045906-1 85 -0.341907 hybrid +133_1-7 Q0 MARCO_30_458048779-3 86 -0.343115 hybrid +133_1-7 Q0 MARCO_23_900581520-2 87 -0.343330 hybrid +133_1-7 Q0 MARCO_49_221098185-1 88 -0.344159 hybrid +133_1-7 Q0 MARCO_20_17312957-4 89 -0.346800 hybrid +133_1-7 Q0 MARCO_28_334658990-39 90 -0.348336 hybrid +133_1-7 Q0 MARCO_35_402637505-4 91 -0.348670 hybrid +133_1-7 Q0 MARCO_29_1662389944-7 92 -0.351064 hybrid +133_1-7 Q0 MARCO_11_81276089-9 93 -0.352701 hybrid +133_1-7 Q0 MARCO_09_350126129-20 94 -0.353629 hybrid +133_1-7 Q0 MARCO_09_350126129-45 95 -0.360711 hybrid +133_1-7 Q0 MARCO_54_1473906903-19 96 -0.361478 hybrid +133_1-7 Q0 MARCO_41_2110669088-10 97 -0.362394 hybrid +133_1-7 Q0 MARCO_32_1285610141-1 98 -0.363720 hybrid +133_1-7 Q0 MARCO_28_334658990-35 99 -0.364964 hybrid +133_1-7 Q0 MARCO_50_637650336-9 100 -0.365946 hybrid +133_2-1 Q0 MARCO_23_938105672-34 1 0.250003 hybrid +133_2-1 Q0 MARCO_45_202277106-10 2 0.205180 hybrid +133_2-1 Q0 MARCO_57_868760995-3 3 0.162367 hybrid +133_2-1 Q0 MARCO_21_1045645298-6 4 0.147906 hybrid +133_2-1 Q0 MARCO_28_342063026-2 5 0.083924 hybrid +133_2-1 Q0 MARCO_14_1426172211-6 6 0.082553 hybrid +133_2-1 Q0 MARCO_42_1889393375-14 7 0.069997 hybrid +133_2-1 Q0 MARCO_29_789520551-19 8 0.064364 hybrid +133_2-1 Q0 MARCO_27_216298804-4 9 0.038027 hybrid +133_2-1 Q0 MARCO_37_836630788-17 10 0.034635 hybrid +133_2-1 Q0 MARCO_53_731621760-3 11 0.029803 hybrid +133_2-1 Q0 MARCO_56_501029797-5 12 0.005347 hybrid +133_2-1 Q0 MARCO_47_1281188468-14 13 0.004482 hybrid +133_2-1 Q0 MARCO_29_240885325-2 14 -0.002824 hybrid +133_2-1 Q0 MARCO_29_240893868-2 15 -0.002824 hybrid +133_2-1 Q0 MARCO_29_240865401-2 16 -0.002824 hybrid +133_2-1 Q0 MARCO_29_240994830-2 17 -0.002824 hybrid +133_2-1 Q0 MARCO_29_240879615-2 18 -0.002824 hybrid +133_2-1 Q0 MARCO_29_240960645-2 19 -0.002824 hybrid +133_2-1 Q0 MARCO_29_241002311-2 20 -0.002853 hybrid +133_2-1 Q0 MARCO_21_1435489700-2 21 -0.032419 hybrid +133_2-1 Q0 MARCO_44_605664172-12 22 -0.075657 hybrid +133_2-1 Q0 MARCO_29_776878896-1 23 -0.085710 hybrid +133_2-1 Q0 MARCO_11_711490150-8 24 -0.100414 hybrid +133_2-1 Q0 MARCO_43_977048460-4 25 -0.109201 hybrid +133_2-1 Q0 MARCO_22_1121298839-2 26 -0.129429 hybrid +133_2-1 Q0 MARCO_14_1423713789-1 27 -0.141172 hybrid +133_2-1 Q0 MARCO_21_1435489700-7 28 -0.144418 hybrid +133_2-1 Q0 MARCO_57_868356477-2 29 -0.171697 hybrid +133_2-1 Q0 MARCO_45_1248075941-2 30 -0.172242 hybrid +133_2-1 Q0 MARCO_37_833369189-3 31 -0.175396 hybrid +133_2-1 Q0 MARCO_36_383149371-3 32 -0.181720 hybrid +133_2-1 Q0 MARCO_45_1263586549-2 33 -0.183875 hybrid +133_2-1 Q0 MARCO_55_73834164-1 34 -0.184636 hybrid +133_2-1 Q0 MARCO_13_432922664-3 35 -0.184816 hybrid +133_2-1 Q0 MARCO_06_1264305390-189 36 -0.194764 hybrid +133_2-1 Q0 MARCO_25_1408794284-4 37 -0.209986 hybrid +133_2-1 Q0 MARCO_06_1166203891-55 38 -0.210863 hybrid +133_2-1 Q0 MARCO_28_539216453-4 39 -0.220312 hybrid +133_2-1 Q0 MARCO_57_870538321-5 40 -0.224789 hybrid +133_2-1 Q0 MARCO_44_477659878-3 41 -0.232926 hybrid +133_2-1 Q0 MARCO_37_169574387-3 42 -0.234912 hybrid +133_2-1 Q0 MARCO_59_772291725-8 43 -0.238414 hybrid +133_2-1 Q0 MARCO_44_310683367-2 44 -0.246527 hybrid +133_2-1 Q0 MARCO_35_424222087-1 45 -0.248676 hybrid +133_2-1 Q0 MARCO_47_127998938-1 46 -0.249997 hybrid +133_2-1 Q0 MARCO_44_605664172-5 47 -0.251928 hybrid +133_2-1 Q0 MARCO_28_987132090-1 48 -0.255558 hybrid +133_2-1 Q0 MARCO_37_172636373-13 49 -0.258624 hybrid +133_2-1 Q0 MARCO_52_1182367217-3 50 -0.259153 hybrid +133_2-1 Q0 MARCO_03_673301350-3 51 -0.259899 hybrid +133_2-1 Q0 MARCO_12_1861263060-5 52 -0.260001 hybrid +133_2-1 Q0 MARCO_40_738609004-8 53 -0.260837 hybrid +133_2-1 Q0 MARCO_23_29612823-7 54 -0.262556 hybrid +133_2-1 Q0 MARCO_44_1856983307-4 55 -0.266470 hybrid +133_2-1 Q0 MARCO_37_172467697-5 56 -0.270112 hybrid +133_2-1 Q0 MARCO_40_174836733-4 57 -0.272063 hybrid +133_2-1 Q0 MARCO_44_309372740-2 58 -0.277760 hybrid +133_2-1 Q0 MARCO_27_1206600074-6 59 -0.277911 hybrid +133_2-1 Q0 MARCO_38_1581665959-6 60 -0.279607 hybrid +133_2-1 Q0 MARCO_43_243574726-3 61 -0.281477 hybrid +133_2-1 Q0 MARCO_47_1281188468-13 62 -0.282546 hybrid +133_2-1 Q0 MARCO_29_240922707-8 63 -0.285943 hybrid +133_2-1 Q0 MARCO_57_1975754607-13 64 -0.286251 hybrid +133_2-1 Q0 MARCO_46_119413157-1 65 -0.290821 hybrid +133_2-1 Q0 MARCO_53_731621760-2 66 -0.296501 hybrid +133_2-1 Q0 MARCO_57_867952469-3 67 -0.298151 hybrid +133_2-1 Q0 MARCO_23_900165168-1 68 -0.302460 hybrid +133_2-1 Q0 MARCO_27_552235782-2 69 -0.302977 hybrid +133_2-1 Q0 MARCO_02_361151865-6 70 -0.305346 hybrid +133_2-1 Q0 MARCO_47_1281259245-17 71 -0.309156 hybrid +133_2-1 Q0 MARCO_50_179933945-15 72 -0.309417 hybrid +133_2-1 Q0 MARCO_46_437161609-5 73 -0.312972 hybrid +133_2-1 Q0 MARCO_29_240966576-1 74 -0.316421 hybrid +133_2-1 Q0 MARCO_31_1324698321-5 75 -0.319522 hybrid +133_2-1 Q0 MARCO_06_1264305390-98 76 -0.322107 hybrid +133_2-1 Q0 MARCO_35_136212939-1 77 -0.322368 hybrid +133_2-1 Q0 MARCO_50_2766717726-15 78 -0.322473 hybrid +133_2-1 Q0 MARCO_13_544899660-1 79 -0.327125 hybrid +133_2-1 Q0 MARCO_44_2035792359-2 80 -0.328141 hybrid +133_2-1 Q0 MARCO_47_1308426119-6 81 -0.329488 hybrid +133_2-1 Q0 MARCO_39_260610569-3 82 -0.331219 hybrid +133_2-1 Q0 MARCO_52_1145875348-2 83 -0.335075 hybrid +133_2-1 Q0 MARCO_24_77518361-3 84 -0.335592 hybrid +133_2-1 Q0 MARCO_10_989466899-11 85 -0.335888 hybrid +133_2-1 Q0 MARCO_06_1264305390-212 86 -0.337253 hybrid +133_2-1 Q0 MARCO_29_240800254-11 87 -0.339245 hybrid +133_2-1 Q0 MARCO_44_469461981-18 88 -0.339326 hybrid +133_2-1 Q0 MARCO_24_558574702-9 89 -0.340917 hybrid +133_2-1 Q0 MARCO_31_939118462-2 90 -0.344193 hybrid +133_2-1 Q0 MARCO_10_1134465384-20 91 -0.345558 hybrid +133_2-1 Q0 MARCO_11_1449148621-23 92 -0.346769 hybrid +133_2-1 Q0 MARCO_10_893405124-7 93 -0.350059 hybrid +133_2-1 Q0 MARCO_54_1645150241-23 94 -0.351876 hybrid +133_2-1 Q0 MARCO_57_867933316-13 95 -0.353595 hybrid +133_2-1 Q0 MARCO_09_135812463-21 96 -0.354052 hybrid +133_2-1 Q0 MARCO_57_1963506226-9 97 -0.354321 hybrid +133_2-1 Q0 MARCO_29_796785959-6 98 -0.355553 hybrid +133_2-1 Q0 MARCO_32_1284814576-10 99 -0.358468 hybrid +133_2-1 Q0 MARCO_32_1518650942-8 100 -0.358468 hybrid +133_2-3 Q0 MARCO_20_1380187541-18 1 0.313636 hybrid +133_2-3 Q0 MARCO_31_1320467209-1 2 0.297023 hybrid +133_2-3 Q0 MARCO_45_636152506-1 3 -0.010677 hybrid +133_2-3 Q0 MARCO_53_613248557-9 4 -0.075056 hybrid +133_2-3 Q0 MARCO_25_1158848107-2 5 -0.081657 hybrid +133_2-3 Q0 MARCO_21_1039299162-1 6 -0.081678 hybrid +133_2-3 Q0 MARCO_21_963848449-2 7 -0.109590 hybrid +133_2-3 Q0 MARCO_53_613269735-1 8 -0.127273 hybrid +133_2-3 Q0 MARCO_12_358195860-11 9 -0.132691 hybrid +133_2-3 Q0 MARCO_20_1380187541-15 10 -0.136745 hybrid +133_2-3 Q0 MARCO_31_941330245-4 11 -0.155394 hybrid +133_2-3 Q0 MARCO_28_531575972-2 12 -0.162401 hybrid +133_2-3 Q0 MARCO_04_1043910897-1 13 -0.170219 hybrid +133_2-3 Q0 MARCO_28_340211372-3 14 -0.188353 hybrid +133_2-3 Q0 MARCO_21_1040095444-1 15 -0.192359 hybrid +133_2-3 Q0 MARCO_31_1320467209-3 16 -0.202486 hybrid +133_2-3 Q0 MARCO_31_941330245-3 17 -0.214526 hybrid +133_2-3 Q0 MARCO_30_607381839-1 18 -0.219418 hybrid +133_2-3 Q0 MARCO_28_531575972-7 19 -0.224877 hybrid +133_2-3 Q0 MARCO_27_1565221723-1 20 -0.225507 hybrid +133_2-3 Q0 MARCO_57_1553235055-1 21 -0.249999 hybrid +133_2-3 Q0 MARCO_23_897890331-5 22 -0.253215 hybrid +133_2-3 Q0 MARCO_24_952535196-7 23 -0.258717 hybrid +133_2-3 Q0 MARCO_09_485993912-2 24 -0.267115 hybrid +133_2-3 Q0 MARCO_54_177638627-1 25 -0.267791 hybrid +133_2-3 Q0 MARCO_42_1090077633-1 26 -0.278906 hybrid +133_2-3 Q0 MARCO_51_1234133322-6 27 -0.281225 hybrid +133_2-3 Q0 MARCO_25_1158848107-4 28 -0.283977 hybrid +133_2-3 Q0 MARCO_29_1276940166-1 29 -0.285597 hybrid +133_2-3 Q0 MARCO_07_997140642-1 30 -0.286724 hybrid +133_2-3 Q0 MARCO_04_686130362-5 31 -0.287485 hybrid +133_2-3 Q0 MARCO_27_913315458-10 32 -0.287688 hybrid +133_2-3 Q0 MARCO_33_175590067-6 33 -0.289043 hybrid +133_2-3 Q0 MARCO_28_531575972-3 34 -0.290954 hybrid +133_2-3 Q0 MARCO_20_1380187541-2 35 -0.303692 hybrid +133_2-3 Q0 MARCO_28_531575972-1 36 -0.305655 hybrid +133_2-3 Q0 MARCO_54_178778406-5 37 -0.308054 hybrid +133_2-3 Q0 MARCO_24_1842027267-1 38 -0.315332 hybrid +133_2-3 Q0 MARCO_38_286379417-1 39 -0.317486 hybrid +133_2-3 Q0 MARCO_24_620724330-2 40 -0.319383 hybrid +133_2-3 Q0 MARCO_32_1165648680-9 41 -0.319810 hybrid +133_2-3 Q0 MARCO_32_1495924450-1 42 -0.320050 hybrid +133_2-3 Q0 MARCO_52_923089496-5 43 -0.323226 hybrid +133_2-3 Q0 MARCO_20_1380187541-5 44 -0.323522 hybrid +133_2-3 Q0 MARCO_21_1042469229-4 45 -0.325664 hybrid +133_2-3 Q0 MARCO_34_78680335-1 46 -0.325806 hybrid +133_2-3 Q0 MARCO_41_932084877-1 47 -0.326015 hybrid +133_2-3 Q0 MARCO_58_854616617-1 48 -0.326565 hybrid +133_2-3 Q0 MARCO_22_116980262-1 49 -0.332486 hybrid +133_2-3 Q0 MARCO_54_178778406-7 50 -0.334180 hybrid +133_2-3 Q0 MARCO_22_851655506-1 51 -0.336281 hybrid +133_2-3 Q0 MARCO_21_1042469229-3 52 -0.337530 hybrid +133_2-3 Q0 MARCO_20_1380187541-4 53 -0.338637 hybrid +133_2-3 Q0 MARCO_21_1040901140-1 54 -0.338725 hybrid +133_2-3 Q0 MARCO_20_1380187541-8 55 -0.340087 hybrid +133_2-3 Q0 MARCO_49_221275597-7 56 -0.340173 hybrid +133_2-3 Q0 MARCO_20_1380187541-10 57 -0.343713 hybrid +133_2-3 Q0 MARCO_31_1156087527-5 58 -0.345854 hybrid +133_2-3 Q0 MARCO_53_606754970-4 59 -0.347401 hybrid +133_2-3 Q0 MARCO_25_783559615-4 60 -0.347980 hybrid +133_2-3 Q0 MARCO_21_960742503-36 61 -0.352373 hybrid +133_2-3 Q0 MARCO_20_1378929674-16 62 -0.352435 hybrid +133_2-3 Q0 MARCO_28_714818554-1 63 -0.352543 hybrid +133_2-3 Q0 MARCO_32_1165648680-1 64 -0.358796 hybrid +133_2-3 Q0 MARCO_27_913315458-5 65 -0.359727 hybrid +133_2-3 Q0 MARCO_58_846308228-2 66 -0.359830 hybrid +133_2-3 Q0 MARCO_35_501435311-1 67 -0.361708 hybrid +133_2-3 Q0 MARCO_21_1040454850-11 68 -0.361944 hybrid +133_2-3 Q0 MARCO_38_1577666858-1 69 -0.362107 hybrid +133_2-3 Q0 MARCO_28_340211372-1 70 -0.363689 hybrid +133_2-3 Q0 MARCO_30_140057120-1 71 -0.363767 hybrid +133_2-3 Q0 MARCO_58_50181324-21 72 -0.364365 hybrid +133_2-3 Q0 MARCO_28_265565874-1 73 -0.364631 hybrid +133_2-3 Q0 MARCO_28_714818554-8 74 -0.365020 hybrid +133_2-3 Q0 MARCO_03_935534459-1 75 -0.369270 hybrid +133_2-3 Q0 MARCO_53_613248557-1 76 -0.369655 hybrid +133_2-3 Q0 MARCO_21_1041886807-3 77 -0.370343 hybrid +133_2-3 Q0 MARCO_49_221089932-5 78 -0.370608 hybrid +133_2-3 Q0 MARCO_54_177386244-3 79 -0.370703 hybrid +133_2-3 Q0 MARCO_49_1392374775-4 80 -0.375902 hybrid +133_2-3 Q0 MARCO_27_913315458-7 81 -0.376961 hybrid +133_2-3 Q0 MARCO_52_631840442-2 82 -0.379223 hybrid +133_2-3 Q0 MARCO_42_729601197-1 83 -0.379973 hybrid +133_2-3 Q0 MARCO_29_796132610-11 84 -0.381175 hybrid +133_2-3 Q0 MARCO_46_436965044-3 85 -0.387623 hybrid +133_2-3 Q0 MARCO_03_935534459-2 86 -0.390941 hybrid +133_2-3 Q0 MARCO_20_1380187541-16 87 -0.390990 hybrid +133_2-3 Q0 MARCO_49_407193791-2 88 -0.391816 hybrid +133_2-3 Q0 MARCO_32_1491255820-12 89 -0.392474 hybrid +133_2-3 Q0 MARCO_32_1491275150-9 90 -0.393796 hybrid +133_2-3 Q0 MARCO_52_1377663003-5 91 -0.393977 hybrid +133_2-3 Q0 MARCO_14_1428073951-3 92 -0.394056 hybrid +133_2-3 Q0 MARCO_52_1377663003-4 93 -0.394197 hybrid +133_2-3 Q0 MARCO_24_1219722929-3 94 -0.395789 hybrid +133_2-3 Q0 MARCO_00_588384791-4 95 -0.401403 hybrid +133_2-3 Q0 MARCO_49_1392374775-1 96 -0.401643 hybrid +133_2-3 Q0 MARCO_31_299764766-6 97 -0.402047 hybrid +133_2-3 Q0 MARCO_10_977241368-8 98 -0.402650 hybrid +133_2-3 Q0 MARCO_56_159920906-1 99 -0.403607 hybrid +133_2-3 Q0 MARCO_49_1010572109-1 100 -0.403683 hybrid +133_3-2 Q0 MARCO_42_257610962-2 1 0.250000 hybrid +133_3-2 Q0 MARCO_41_1847614301-2 2 0.159487 hybrid +133_3-2 Q0 MARCO_21_963020852-33 3 0.079212 hybrid +133_3-2 Q0 MARCO_25_1167948093-1 4 -0.019438 hybrid +133_3-2 Q0 MARCO_07_622353478-3 5 -0.035650 hybrid +133_3-2 Q0 MARCO_51_817080609-8 6 -0.051287 hybrid +133_3-2 Q0 MARCO_37_839481202-3 7 -0.056167 hybrid +133_3-2 Q0 MARCO_52_1207612281-3 8 -0.064315 hybrid +133_3-2 Q0 MARCO_41_1847614301-3 9 -0.068033 hybrid +133_3-2 Q0 MARCO_52_1379647498-2 10 -0.099429 hybrid +133_3-2 Q0 MARCO_29_31280170-2 11 -0.102095 hybrid +133_3-2 Q0 MARCO_42_1749404525-8 12 -0.145113 hybrid +133_3-2 Q0 MARCO_00_1584661169-47 13 -0.147882 hybrid +133_3-2 Q0 MARCO_52_1378630980-1 14 -0.160129 hybrid +133_3-2 Q0 MARCO_56_1317921108-1 15 -0.166744 hybrid +133_3-2 Q0 MARCO_12_1861101487-3 16 -0.171029 hybrid +133_3-2 Q0 MARCO_52_1186887800-4 17 -0.173286 hybrid +133_3-2 Q0 MARCO_48_1593873982-1 18 -0.174573 hybrid +133_3-2 Q0 MARCO_52_1186887800-6 19 -0.178704 hybrid +133_3-2 Q0 MARCO_21_958386119-13 20 -0.179622 hybrid +133_3-2 Q0 MARCO_21_962638497-23 21 -0.181180 hybrid +133_3-2 Q0 MARCO_46_12087807-2 22 -0.207401 hybrid +133_3-2 Q0 MARCO_52_1186887800-7 23 -0.208202 hybrid +133_3-2 Q0 MARCO_51_817072979-2 24 -0.210330 hybrid +133_3-2 Q0 MARCO_06_1653480130-12 25 -0.211180 hybrid +133_3-2 Q0 MARCO_33_176858642-30 26 -0.211293 hybrid +133_3-2 Q0 MARCO_43_747853505-5 27 -0.212632 hybrid +133_3-2 Q0 MARCO_43_747853505-7 28 -0.214364 hybrid +133_3-2 Q0 MARCO_33_175521909-14 29 -0.224013 hybrid +133_3-2 Q0 MARCO_43_747853505-8 30 -0.226910 hybrid +133_3-2 Q0 MARCO_46_12563667-3 31 -0.230543 hybrid +133_3-2 Q0 MARCO_54_95841051-8 32 -0.237887 hybrid +133_3-2 Q0 MARCO_50_2156264634-26 33 -0.242410 hybrid +133_3-2 Q0 MARCO_13_141730204-4 34 -0.242603 hybrid +133_3-2 Q0 MARCO_00_1584661169-44 35 -0.243316 hybrid +133_3-2 Q0 MARCO_13_429571872-5 36 -0.250000 hybrid +133_3-2 Q0 MARCO_37_839481202-2 37 -0.251602 hybrid +133_3-2 Q0 MARCO_20_1587212315-6 38 -0.254276 hybrid +133_3-2 Q0 MARCO_43_747853505-6 39 -0.256813 hybrid +133_3-2 Q0 MARCO_52_1378433154-6 40 -0.258974 hybrid +133_3-2 Q0 MARCO_52_1207612281-2 41 -0.259338 hybrid +133_3-2 Q0 MARCO_20_17897970-3 42 -0.261248 hybrid +133_3-2 Q0 MARCO_00_1584661169-37 43 -0.270233 hybrid +133_3-2 Q0 MARCO_41_2129778814-3 44 -0.274858 hybrid +133_3-2 Q0 MARCO_43_747853505-2 45 -0.278718 hybrid +133_3-2 Q0 MARCO_27_1108903667-5 46 -0.286886 hybrid +133_3-2 Q0 MARCO_12_1861101487-4 47 -0.287728 hybrid +133_3-2 Q0 MARCO_52_1378433154-1 48 -0.297260 hybrid +133_3-2 Q0 MARCO_00_1584661169-7 49 -0.302050 hybrid +133_3-2 Q0 MARCO_21_963020852-25 50 -0.304623 hybrid +133_3-2 Q0 MARCO_20_17897970-14 51 -0.306921 hybrid +133_3-2 Q0 MARCO_29_1587501579-1 52 -0.310969 hybrid +133_3-2 Q0 MARCO_14_1430404313-7 53 -0.311331 hybrid +133_3-2 Q0 MARCO_21_957502933-50 54 -0.311457 hybrid +133_3-2 Q0 MARCO_21_963020852-13 55 -0.311671 hybrid +133_3-2 Q0 MARCO_23_895409741-1 56 -0.311792 hybrid +133_3-2 Q0 MARCO_21_959831036-7 57 -0.320062 hybrid +133_3-2 Q0 MARCO_52_1186887800-8 58 -0.321401 hybrid +133_3-2 Q0 MARCO_05_1760789526-4 59 -0.324881 hybrid +133_3-2 Q0 MARCO_12_1161299004-3 60 -0.324883 hybrid +133_3-2 Q0 MARCO_52_361046997-2 61 -0.325136 hybrid +133_3-2 Q0 MARCO_48_1593873982-7 62 -0.326216 hybrid +133_3-2 Q0 MARCO_48_1592782932-5 63 -0.326370 hybrid +133_3-2 Q0 MARCO_12_1860846453-4 64 -0.327717 hybrid +133_3-2 Q0 MARCO_55_812473590-11 65 -0.329032 hybrid +133_3-2 Q0 MARCO_14_129523741-9 66 -0.329368 hybrid +133_3-2 Q0 MARCO_40_623301223-8 67 -0.337925 hybrid +133_3-2 Q0 MARCO_44_103353802-16 68 -0.338159 hybrid +133_3-2 Q0 MARCO_12_1863122013-5 69 -0.339648 hybrid +133_3-2 Q0 MARCO_27_915250077-7 70 -0.340142 hybrid +133_3-2 Q0 MARCO_21_963020852-17 71 -0.344491 hybrid +133_3-2 Q0 MARCO_12_1862455994-6 72 -0.345636 hybrid +133_3-2 Q0 MARCO_12_1863122013-7 73 -0.346931 hybrid +133_3-2 Q0 MARCO_27_711832489-5 74 -0.350358 hybrid +133_3-2 Q0 MARCO_02_831399706-3 75 -0.350657 hybrid +133_3-2 Q0 MARCO_40_623301223-3 76 -0.352611 hybrid +133_3-2 Q0 MARCO_53_620160515-2 77 -0.355302 hybrid +133_3-2 Q0 MARCO_36_567097680-5 78 -0.361844 hybrid +133_3-2 Q0 MARCO_34_1327324913-6 79 -0.362455 hybrid +133_3-2 Q0 MARCO_22_710747250-8 80 -0.364552 hybrid +133_3-2 Q0 MARCO_02_1742344367-10 81 -0.366630 hybrid +133_3-2 Q0 MARCO_55_812473590-10 82 -0.366938 hybrid +133_3-2 Q0 MARCO_36_567097680-7 83 -0.368455 hybrid +133_3-2 Q0 MARCO_51_817080609-7 84 -0.370781 hybrid +133_3-2 Q0 MARCO_24_645255123-10 85 -0.371865 hybrid +133_3-2 Q0 MARCO_20_17897970-1 86 -0.371918 hybrid +133_3-2 Q0 MARCO_38_1465377746-1 87 -0.373302 hybrid +133_3-2 Q0 MARCO_52_1186887800-3 88 -0.374337 hybrid +133_3-2 Q0 MARCO_00_1584661169-41 89 -0.374694 hybrid +133_3-2 Q0 MARCO_20_19564405-11 90 -0.376801 hybrid +133_3-2 Q0 MARCO_21_957772551-35 91 -0.378610 hybrid +133_3-2 Q0 MARCO_51_817080609-5 92 -0.379625 hybrid +133_3-2 Q0 MARCO_24_1723652218-4 93 -0.382045 hybrid +133_3-2 Q0 MARCO_40_172971301-5 94 -0.382174 hybrid +133_3-2 Q0 MARCO_40_172971301-4 95 -0.383344 hybrid +133_3-2 Q0 MARCO_47_978613974-15 96 -0.383983 hybrid +133_3-2 Q0 MARCO_24_1721478417-4 97 -0.384193 hybrid +133_3-2 Q0 MARCO_42_258270495-8 98 -0.384240 hybrid +133_3-2 Q0 MARCO_24_979997814-23 99 -0.384517 hybrid +133_3-2 Q0 MARCO_14_1143494486-5 100 -0.384531 hybrid +133_3-4 Q0 MARCO_45_635806329-2 1 0.250000 hybrid +133_3-4 Q0 MARCO_22_1577793079-3 2 0.185412 hybrid +133_3-4 Q0 MARCO_37_1248361486-16 3 0.174378 hybrid +133_3-4 Q0 MARCO_27_1770345942-2 4 0.152273 hybrid +133_3-4 Q0 MARCO_11_1540230888-8 5 0.131927 hybrid +133_3-4 Q0 MARCO_44_306123956-5 6 0.116252 hybrid +133_3-4 Q0 MARCO_50_2486108188-55 7 0.100196 hybrid +133_3-4 Q0 MARCO_44_302607124-3 8 0.094434 hybrid +133_3-4 Q0 MARCO_14_1423925025-22 9 0.063228 hybrid +133_3-4 Q0 MARCO_45_636947768-2 10 0.040886 hybrid +133_3-4 Q0 MARCO_14_1424153250-6 11 0.033962 hybrid +133_3-4 Q0 MARCO_38_610711564-6 12 0.008333 hybrid +133_3-4 Q0 MARCO_25_1126697-3 13 0.007840 hybrid +133_3-4 Q0 MARCO_12_358209854-5 14 0.004310 hybrid +133_3-4 Q0 MARCO_39_263247941-2 15 -0.002489 hybrid +133_3-4 Q0 MARCO_55_678333132-5 16 -0.023746 hybrid +133_3-4 Q0 MARCO_55_70389104-3 17 -0.025779 hybrid +133_3-4 Q0 MARCO_13_320946250-4 18 -0.066325 hybrid +133_3-4 Q0 MARCO_13_320946250-6 19 -0.066326 hybrid +133_3-4 Q0 MARCO_21_1045723064-6 20 -0.083649 hybrid +133_3-4 Q0 MARCO_33_512371363-4 21 -0.092182 hybrid +133_3-4 Q0 MARCO_49_221061456-4 22 -0.092369 hybrid +133_3-4 Q0 MARCO_57_869489227-2 23 -0.096374 hybrid +133_3-4 Q0 MARCO_37_135241965-5 24 -0.111755 hybrid +133_3-4 Q0 MARCO_27_533008955-21 25 -0.116832 hybrid +133_3-4 Q0 MARCO_51_947700465-5 26 -0.117587 hybrid +133_3-4 Q0 MARCO_30_815667789-7 27 -0.125253 hybrid +133_3-4 Q0 MARCO_54_179087980-3 28 -0.128409 hybrid +133_3-4 Q0 MARCO_11_714430020-11 29 -0.128802 hybrid +133_3-4 Q0 MARCO_21_1530668931-2 30 -0.146466 hybrid +133_3-4 Q0 MARCO_36_567014926-4 31 -0.150402 hybrid +133_3-4 Q0 MARCO_20_1384644143-16 32 -0.167405 hybrid +133_3-4 Q0 MARCO_10_891763997-12 33 -0.172925 hybrid +133_3-4 Q0 MARCO_27_1209857543-5 34 -0.180098 hybrid +133_3-4 Q0 MARCO_50_1609967635-13 35 -0.182362 hybrid +133_3-4 Q0 MARCO_22_1000023865-4 36 -0.192123 hybrid +133_3-4 Q0 MARCO_54_557103535-3 37 -0.192647 hybrid +133_3-4 Q0 MARCO_21_148226254-5 38 -0.193053 hybrid +133_3-4 Q0 MARCO_21_1530668931-1 39 -0.208366 hybrid +133_3-4 Q0 MARCO_39_259861426-2 40 -0.214260 hybrid +133_3-4 Q0 MARCO_45_982263250-2 41 -0.215495 hybrid +133_3-4 Q0 MARCO_56_286233411-3 42 -0.221820 hybrid +133_3-4 Q0 MARCO_44_307649603-2 43 -0.223210 hybrid +133_3-4 Q0 MARCO_21_1040699672-5 44 -0.225861 hybrid +133_3-4 Q0 MARCO_56_507656023-9 45 -0.226498 hybrid +133_3-4 Q0 MARCO_24_1907335507-4 46 -0.235467 hybrid +133_3-4 Q0 MARCO_11_696702604-4 47 -0.238099 hybrid +133_3-4 Q0 MARCO_42_1749243386-5 48 -0.243738 hybrid +133_3-4 Q0 MARCO_42_1749243386-3 49 -0.243738 hybrid +133_3-4 Q0 MARCO_14_1427118681-2 50 -0.245833 hybrid +133_3-4 Q0 MARCO_51_944387154-6 51 -0.245996 hybrid +133_3-4 Q0 MARCO_12_1162407871-4 52 -0.249775 hybrid +133_3-4 Q0 MARCO_09_647358937-8 53 -0.250000 hybrid +133_3-4 Q0 MARCO_20_1384644143-17 54 -0.253275 hybrid +133_3-4 Q0 MARCO_31_940077927-4 55 -0.255520 hybrid +133_3-4 Q0 MARCO_26_470566854-2 56 -0.257086 hybrid +133_3-4 Q0 MARCO_28_340128332-12 57 -0.258389 hybrid +133_3-4 Q0 MARCO_29_1335729230-3 58 -0.262144 hybrid +133_3-4 Q0 MARCO_27_533008955-7 59 -0.267490 hybrid +133_3-4 Q0 MARCO_49_221322888-6 60 -0.267739 hybrid +133_3-4 Q0 MARCO_33_1249167428-3 61 -0.268776 hybrid +133_3-4 Q0 MARCO_41_2032569317-3 62 -0.268824 hybrid +133_3-4 Q0 MARCO_49_221254160-5 63 -0.271681 hybrid +133_3-4 Q0 MARCO_06_1533182716-3 64 -0.274189 hybrid +133_3-4 Q0 MARCO_22_1000023865-2 65 -0.275211 hybrid +133_3-4 Q0 MARCO_56_46854037-4 66 -0.278361 hybrid +133_3-4 Q0 MARCO_37_1255198346-50 67 -0.279646 hybrid +133_3-4 Q0 MARCO_42_1749243386-2 68 -0.280276 hybrid +133_3-4 Q0 MARCO_39_260463809-3 69 -0.285715 hybrid +133_3-4 Q0 MARCO_14_126163501-3 70 -0.291441 hybrid +133_3-4 Q0 MARCO_20_1384047002-7 71 -0.292314 hybrid +133_3-4 Q0 MARCO_02_474025151-4 72 -0.292327 hybrid +133_3-4 Q0 MARCO_39_262913721-2 73 -0.296082 hybrid +133_3-4 Q0 MARCO_08_84973183-19 74 -0.296468 hybrid +133_3-4 Q0 MARCO_10_1190200031-6 75 -0.297254 hybrid +133_3-4 Q0 MARCO_10_1189253615-5 76 -0.297915 hybrid +133_3-4 Q0 MARCO_25_262671939-2 77 -0.299042 hybrid +133_3-4 Q0 MARCO_36_567014926-9 78 -0.304041 hybrid +133_3-4 Q0 MARCO_15_266826778-2 79 -0.304926 hybrid +133_3-4 Q0 MARCO_19_1990743935-2 80 -0.308232 hybrid +133_3-4 Q0 MARCO_38_527453497-2 81 -0.309554 hybrid +133_3-4 Q0 MARCO_54_179087980-2 82 -0.310390 hybrid +133_3-4 Q0 MARCO_28_431937036-2 83 -0.311819 hybrid +133_3-4 Q0 MARCO_52_1201524910-7 84 -0.312143 hybrid +133_3-4 Q0 MARCO_46_125094126-21 85 -0.317788 hybrid +133_3-4 Q0 MARCO_51_455241404-4 86 -0.319784 hybrid +133_3-4 Q0 MARCO_12_314843730-5 87 -0.321724 hybrid +133_3-4 Q0 MARCO_21_1045723064-7 88 -0.322104 hybrid +133_3-4 Q0 MARCO_42_1058467731-3 89 -0.323738 hybrid +133_3-4 Q0 MARCO_46_437095475-4 90 -0.324543 hybrid +133_3-4 Q0 MARCO_23_1591678685-3 91 -0.325110 hybrid +133_3-4 Q0 MARCO_24_1436872895-2 92 -0.325167 hybrid +133_3-4 Q0 MARCO_22_1577793079-6 93 -0.325279 hybrid +133_3-4 Q0 MARCO_55_70042824-2 94 -0.329389 hybrid +133_3-4 Q0 MARCO_51_455417443-3 95 -0.329739 hybrid +133_3-4 Q0 MARCO_56_46950116-6 96 -0.331890 hybrid +133_3-4 Q0 MARCO_54_319769946-3 97 -0.332470 hybrid +133_3-4 Q0 MARCO_47_521703086-1 98 -0.332848 hybrid +133_3-4 Q0 MARCO_35_420972240-2 99 -0.333712 hybrid +133_3-4 Q0 MARCO_42_1058467731-4 100 -0.335390 hybrid +133_3-6 Q0 MARCO_37_1248361486-16 1 0.249997 hybrid +133_3-6 Q0 MARCO_01_1679207279-5 2 0.214073 hybrid +133_3-6 Q0 MARCO_12_75363274-6 3 0.162883 hybrid +133_3-6 Q0 MARCO_28_1760094890-2 4 0.123155 hybrid +133_3-6 Q0 MARCO_41_2128774528-1 5 0.109548 hybrid +133_3-6 Q0 MARCO_12_1850147072-2 6 0.082250 hybrid +133_3-6 Q0 MARCO_49_221159351-4 7 0.063133 hybrid +133_3-6 Q0 MARCO_12_358533636-9 8 0.054923 hybrid +133_3-6 Q0 MARCO_49_221330702-6 9 0.045519 hybrid +133_3-6 Q0 MARCO_21_1040569144-4 10 0.027837 hybrid +133_3-6 Q0 MARCO_14_1423748073-9 11 0.011157 hybrid +133_3-6 Q0 MARCO_07_1053171941-2 12 0.002559 hybrid +133_3-6 Q0 MARCO_03_581529838-2 13 -0.011651 hybrid +133_3-6 Q0 MARCO_20_481786852-3 14 -0.014045 hybrid +133_3-6 Q0 MARCO_37_1293608822-5 15 -0.018601 hybrid +133_3-6 Q0 MARCO_00_1284561358-10 16 -0.026986 hybrid +133_3-6 Q0 MARCO_22_1214824629-6 17 -0.042225 hybrid +133_3-6 Q0 MARCO_12_358209854-8 18 -0.046887 hybrid +133_3-6 Q0 MARCO_12_358164665-5 19 -0.069589 hybrid +133_3-6 Q0 MARCO_21_1040699672-5 20 -0.078598 hybrid +133_3-6 Q0 MARCO_21_1041354626-6 21 -0.079094 hybrid +133_3-6 Q0 MARCO_14_1138344035-19 22 -0.079494 hybrid +133_3-6 Q0 MARCO_21_1041354626-7 23 -0.085873 hybrid +133_3-6 Q0 MARCO_12_358429915-9 24 -0.089548 hybrid +133_3-6 Q0 MARCO_27_533102350-67 25 -0.099400 hybrid +133_3-6 Q0 MARCO_12_358209854-4 26 -0.107492 hybrid +133_3-6 Q0 MARCO_31_939690637-3 27 -0.109791 hybrid +133_3-6 Q0 MARCO_19_2583546095-2 28 -0.111023 hybrid +133_3-6 Q0 MARCO_12_358209854-7 29 -0.112298 hybrid +133_3-6 Q0 MARCO_08_84973183-19 30 -0.113594 hybrid +133_3-6 Q0 MARCO_12_358152181-1 31 -0.120235 hybrid +133_3-6 Q0 MARCO_32_1516532264-5 32 -0.120347 hybrid +133_3-6 Q0 MARCO_28_340191593-5 33 -0.122648 hybrid +133_3-6 Q0 MARCO_45_626959382-3 34 -0.123462 hybrid +133_3-6 Q0 MARCO_27_533008955-21 35 -0.123905 hybrid +133_3-6 Q0 MARCO_12_358209854-9 36 -0.125894 hybrid +133_3-6 Q0 MARCO_34_1262191675-3 37 -0.128044 hybrid +133_3-6 Q0 MARCO_54_1474079817-1 38 -0.134103 hybrid +133_3-6 Q0 MARCO_14_1424049302-3 39 -0.137922 hybrid +133_3-6 Q0 MARCO_33_1243354686-13 40 -0.148462 hybrid +133_3-6 Q0 MARCO_31_14559616-7 41 -0.160224 hybrid +133_3-6 Q0 MARCO_21_1044708807-2 42 -0.160746 hybrid +133_3-6 Q0 MARCO_26_816110858-12 43 -0.175207 hybrid +133_3-6 Q0 MARCO_54_1474079817-2 44 -0.177820 hybrid +133_3-6 Q0 MARCO_00_1284561358-2 45 -0.178242 hybrid +133_3-6 Q0 MARCO_21_1041279300-2 46 -0.181778 hybrid +133_3-6 Q0 MARCO_00_1284561358-9 47 -0.184557 hybrid +133_3-6 Q0 MARCO_49_1479888350-6 48 -0.191732 hybrid +133_3-6 Q0 MARCO_30_1128838062-13 49 -0.194174 hybrid +133_3-6 Q0 MARCO_13_655398278-32 50 -0.194831 hybrid +133_3-6 Q0 MARCO_42_1848513221-4 51 -0.194932 hybrid +133_3-6 Q0 MARCO_31_941192793-7 52 -0.195443 hybrid +133_3-6 Q0 MARCO_06_1533182716-3 53 -0.198991 hybrid +133_3-6 Q0 MARCO_53_729003673-23 54 -0.201978 hybrid +133_3-6 Q0 MARCO_12_358429915-8 55 -0.204506 hybrid +133_3-6 Q0 MARCO_12_358209854-5 56 -0.208784 hybrid +133_3-6 Q0 MARCO_02_486333988-10 57 -0.210059 hybrid +133_3-6 Q0 MARCO_12_358521836-4 58 -0.212582 hybrid +133_3-6 Q0 MARCO_53_202120043-3 59 -0.212822 hybrid +133_3-6 Q0 MARCO_20_1690677897-21 60 -0.213147 hybrid +133_3-6 Q0 MARCO_21_959831036-23 61 -0.214198 hybrid +133_3-6 Q0 MARCO_41_2130825753-6 62 -0.214700 hybrid +133_3-6 Q0 MARCO_28_1149208465-1 63 -0.216556 hybrid +133_3-6 Q0 MARCO_48_1150213760-2 64 -0.217431 hybrid +133_3-6 Q0 MARCO_32_47599540-5 65 -0.217847 hybrid +133_3-6 Q0 KILT_25611728-4 66 -0.221191 hybrid +133_3-6 Q0 MARCO_02_1741426940-3 67 -0.221202 hybrid +133_3-6 Q0 MARCO_33_177483341-5 68 -0.224167 hybrid +133_3-6 Q0 MARCO_12_358385620-1 69 -0.224402 hybrid +133_3-6 Q0 MARCO_06_1528773187-28 70 -0.226834 hybrid +133_3-6 Q0 MARCO_32_1528229326-4 71 -0.228093 hybrid +133_3-6 Q0 MARCO_28_336319661-5 72 -0.228312 hybrid +133_3-6 Q0 MARCO_04_1047545497-10 73 -0.230611 hybrid +133_3-6 Q0 MARCO_56_1510163906-4 74 -0.233278 hybrid +133_3-6 Q0 MARCO_27_533277848-2 75 -0.239577 hybrid +133_3-6 Q0 MARCO_07_1053171941-9 76 -0.240079 hybrid +133_3-6 Q0 MARCO_01_1679207279-4 77 -0.240377 hybrid +133_3-6 Q0 MARCO_00_1284561358-5 78 -0.243850 hybrid +133_3-6 Q0 MARCO_49_221159351-5 79 -0.245695 hybrid +133_3-6 Q0 MARCO_54_1784076239-1 80 -0.250003 hybrid +133_3-6 Q0 MARCO_21_1040095444-42 81 -0.250667 hybrid +133_3-6 Q0 MARCO_27_533102350-21 82 -0.250933 hybrid +133_3-6 Q0 MARCO_30_128880640-2 83 -0.252710 hybrid +133_3-6 Q0 MARCO_01_1874370151-131 84 -0.253387 hybrid +133_3-6 Q0 MARCO_30_98765097-4 85 -0.259329 hybrid +133_3-6 Q0 MARCO_01_1874370151-83 86 -0.259959 hybrid +133_3-6 Q0 MARCO_13_1695573027-10 87 -0.261201 hybrid +133_3-6 Q0 MARCO_38_614263928-4 88 -0.262721 hybrid +133_3-6 Q0 MARCO_07_999457786-2 89 -0.263084 hybrid +133_3-6 Q0 MARCO_54_1645289032-4 90 -0.264738 hybrid +133_3-6 Q0 MARCO_45_1323300726-1 91 -0.266183 hybrid +133_3-6 Q0 MARCO_14_336863560-19 92 -0.269597 hybrid +133_3-6 Q0 MARCO_12_358449259-3 93 -0.276755 hybrid +133_3-6 Q0 MARCO_48_1150218843-2 94 -0.279246 hybrid +133_3-6 Q0 MARCO_49_221306630-5 95 -0.280125 hybrid +133_3-6 Q0 MARCO_37_1248361486-8 96 -0.281054 hybrid +133_3-6 Q0 MARCO_35_420972240-2 97 -0.281791 hybrid +133_3-6 Q0 MARCO_20_481786852-2 98 -0.283177 hybrid +133_3-6 Q0 MARCO_27_532853836-1 99 -0.283833 hybrid +133_3-6 Q0 MARCO_06_329224330-1 100 -0.288837 hybrid +133_3-8 Q0 MARCO_47_294648972-8 1 0.249998 hybrid +133_3-8 Q0 MARCO_21_1041386698-14 2 0.224288 hybrid +133_3-8 Q0 MARCO_48_1150369278-3 3 0.194446 hybrid +133_3-8 Q0 MARCO_48_515139000-5 4 0.124619 hybrid +133_3-8 Q0 MARCO_37_1248361486-16 5 0.100954 hybrid +133_3-8 Q0 MARCO_27_532853836-2 6 0.070720 hybrid +133_3-8 Q0 MARCO_49_221200478-4 7 0.061527 hybrid +133_3-8 Q0 MARCO_21_1041386698-2 8 0.058341 hybrid +133_3-8 Q0 MARCO_22_1000023865-1 9 0.024176 hybrid +133_3-8 Q0 MARCO_22_1000023865-6 10 0.019970 hybrid +133_3-8 Q0 MARCO_21_1041386698-8 11 0.013256 hybrid +133_3-8 Q0 MARCO_54_1474079817-1 12 0.005568 hybrid +133_3-8 Q0 MARCO_33_174143347-5 13 -0.012514 hybrid +133_3-8 Q0 MARCO_22_1000016457-5 14 -0.012958 hybrid +133_3-8 Q0 MARCO_30_98872743-2 15 -0.024786 hybrid +133_3-8 Q0 MARCO_21_1041279300-6 16 -0.025140 hybrid +133_3-8 Q0 MARCO_30_98872743-1 17 -0.025575 hybrid +133_3-8 Q0 MARCO_27_533277848-7 18 -0.038332 hybrid +133_3-8 Q0 MARCO_12_358164665-14 19 -0.043809 hybrid +133_3-8 Q0 MARCO_12_1850137591-1 20 -0.047041 hybrid +133_3-8 Q0 MARCO_54_179087980-9 21 -0.048952 hybrid +133_3-8 Q0 MARCO_12_358164665-5 22 -0.053060 hybrid +133_3-8 Q0 MARCO_54_179087980-2 23 -0.053960 hybrid +133_3-8 Q0 MARCO_42_256962339-2 24 -0.062240 hybrid +133_3-8 Q0 MARCO_12_358209854-5 25 -0.064008 hybrid +133_3-8 Q0 MARCO_54_1645150241-6 26 -0.068864 hybrid +133_3-8 Q0 MARCO_06_1865534075-2 27 -0.070006 hybrid +133_3-8 Q0 MARCO_21_1044839871-17 28 -0.079111 hybrid +133_3-8 Q0 MARCO_26_75566714-9 29 -0.080087 hybrid +133_3-8 Q0 MARCO_21_1040579258-3 30 -0.081522 hybrid +133_3-8 Q0 MARCO_57_2142498402-18 31 -0.086760 hybrid +133_3-8 Q0 MARCO_33_1243354686-13 32 -0.108587 hybrid +133_3-8 Q0 MARCO_21_1041040930-3 33 -0.110051 hybrid +133_3-8 Q0 MARCO_49_968080162-5 34 -0.110877 hybrid +133_3-8 Q0 MARCO_58_280644784-8 35 -0.117500 hybrid +133_3-8 Q0 MARCO_08_84973183-19 36 -0.119963 hybrid +133_3-8 Q0 MARCO_21_1040662018-4 37 -0.123659 hybrid +133_3-8 Q0 MARCO_41_2130724642-2 38 -0.124909 hybrid +133_3-8 Q0 MARCO_22_1214824629-6 39 -0.125928 hybrid +133_3-8 Q0 MARCO_49_221222154-6 40 -0.127672 hybrid +133_3-8 Q0 MARCO_25_1428842474-3 41 -0.128519 hybrid +133_3-8 Q0 MARCO_37_135241965-5 42 -0.129444 hybrid +133_3-8 Q0 MARCO_21_1040699672-2 43 -0.131430 hybrid +133_3-8 Q0 MARCO_12_358429915-11 44 -0.133395 hybrid +133_3-8 Q0 MARCO_21_1039451095-7 45 -0.137465 hybrid +133_3-8 Q0 MARCO_26_72560852-6 46 -0.140787 hybrid +133_3-8 Q0 MARCO_12_1850137591-2 47 -0.142707 hybrid +133_3-8 Q0 MARCO_12_1850147072-5 48 -0.149417 hybrid +133_3-8 Q0 MARCO_13_591665383-4 49 -0.151719 hybrid +133_3-8 Q0 MARCO_36_1104647182-3 50 -0.152085 hybrid +133_3-8 Q0 MARCO_49_221246923-5 51 -0.158235 hybrid +133_3-8 Q0 MARCO_12_358128448-5 52 -0.163091 hybrid +133_3-8 Q0 MARCO_19_2583546095-2 53 -0.164357 hybrid +133_3-8 Q0 MARCO_22_1486583586-7 54 -0.168596 hybrid +133_3-8 Q0 MARCO_30_98878482-2 55 -0.171877 hybrid +133_3-8 Q0 MARCO_22_1000023865-7 56 -0.175573 hybrid +133_3-8 Q0 MARCO_28_336454008-5 57 -0.177920 hybrid +133_3-8 Q0 MARCO_21_1042062397-1 58 -0.179680 hybrid +133_3-8 Q0 MARCO_49_221184312-7 59 -0.183878 hybrid +133_3-8 Q0 MARCO_36_567014926-7 60 -0.185506 hybrid +133_3-8 Q0 MARCO_14_1138753614-17 61 -0.189161 hybrid +133_3-8 Q0 MARCO_53_202103300-5 62 -0.195114 hybrid +133_3-8 Q0 MARCO_37_1248361486-19 63 -0.195155 hybrid +133_3-8 Q0 MARCO_27_532853836-5 64 -0.195328 hybrid +133_3-8 Q0 MARCO_27_533008955-21 65 -0.197186 hybrid +133_3-8 Q0 MARCO_22_1214874541-1 66 -0.198793 hybrid +133_3-8 Q0 MARCO_30_98878482-1 67 -0.200154 hybrid +133_3-8 Q0 MARCO_53_1056236376-4 68 -0.201408 hybrid +133_3-8 Q0 MARCO_37_1248361486-17 69 -0.208048 hybrid +133_3-8 Q0 MARCO_11_714430020-8 70 -0.209882 hybrid +133_3-8 Q0 MARCO_27_533102350-14 71 -0.211013 hybrid +133_3-8 Q0 MARCO_21_1040569144-4 72 -0.215917 hybrid +133_3-8 Q0 MARCO_49_968080162-1 73 -0.217068 hybrid +133_3-8 Q0 MARCO_49_220985369-5 74 -0.218655 hybrid +133_3-8 Q0 MARCO_49_221152335-6 75 -0.220686 hybrid +133_3-8 Q0 MARCO_11_714430020-11 76 -0.223293 hybrid +133_3-8 Q0 MARCO_11_774780059-7 77 -0.226890 hybrid +133_3-8 Q0 MARCO_28_1760094890-4 78 -0.228847 hybrid +133_3-8 Q0 MARCO_06_329224330-2 79 -0.231117 hybrid +133_3-8 Q0 MARCO_21_1044708807-1 80 -0.232136 hybrid +133_3-8 Q0 MARCO_21_1039442008-4 81 -0.232942 hybrid +133_3-8 Q0 MARCO_27_532853836-7 82 -0.234085 hybrid +133_3-8 Q0 MARCO_53_729593117-22 83 -0.237329 hybrid +133_3-8 Q0 MARCO_45_651323012-6 84 -0.237674 hybrid +133_3-8 Q0 MARCO_45_633637409-3 85 -0.237736 hybrid +133_3-8 Q0 MARCO_12_358209854-6 86 -0.239718 hybrid +133_3-8 Q0 MARCO_31_939740757-6 87 -0.240713 hybrid +133_3-8 Q0 MARCO_48_628640461-6 88 -0.244680 hybrid +133_3-8 Q0 MARCO_21_756158085-12 89 -0.247151 hybrid +133_3-8 Q0 MARCO_24_1915711016-4 90 -0.248405 hybrid +133_3-8 Q0 MARCO_41_2141321647-65 91 -0.250002 hybrid +133_3-8 Q0 MARCO_44_463963601-2 92 -0.251061 hybrid +133_3-8 Q0 MARCO_21_1040699672-5 93 -0.251961 hybrid +133_3-8 Q0 MARCO_14_1138344035-14 94 -0.253248 hybrid +133_3-8 Q0 MARCO_21_1040579258-1 95 -0.254329 hybrid +133_3-8 Q0 MARCO_56_46854037-4 96 -0.255468 hybrid +133_3-8 Q0 MARCO_25_1839354923-1 97 -0.255597 hybrid +133_3-8 Q0 MARCO_14_462357473-7 98 -0.259246 hybrid +133_3-8 Q0 MARCO_37_1248389631-21 99 -0.261076 hybrid +133_3-8 Q0 MARCO_37_1248361486-20 100 -0.270047 hybrid +134_1-1 Q0 MARCO_42_324634806-29 1 0.471161 hybrid +134_1-1 Q0 MARCO_58_1006573867-2 2 0.404620 hybrid +134_1-1 Q0 MARCO_55_681131262-6 3 0.314252 hybrid +134_1-1 Q0 MARCO_55_681195067-7 4 0.170186 hybrid +134_1-1 Q0 MARCO_14_482895059-3 5 0.141216 hybrid +134_1-1 Q0 MARCO_06_692273477-4 6 0.138775 hybrid +134_1-1 Q0 MARCO_55_681195067-6 7 0.135276 hybrid +134_1-1 Q0 MARCO_45_141802555-2 8 0.081916 hybrid +134_1-1 Q0 MARCO_06_692273477-5 9 0.079542 hybrid +134_1-1 Q0 MARCO_55_681172170-7 10 0.073658 hybrid +134_1-1 Q0 MARCO_40_559279113-10 11 0.071279 hybrid +134_1-1 Q0 MARCO_55_681131262-2 12 0.060992 hybrid +134_1-1 Q0 MARCO_55_681109595-6 13 0.017267 hybrid +134_1-1 Q0 MARCO_28_655536110-9 14 0.012414 hybrid +134_1-1 Q0 MARCO_59_883887243-7 15 0.011483 hybrid +134_1-1 Q0 MARCO_35_331546391-3 16 0.003732 hybrid +134_1-1 Q0 MARCO_55_681172170-10 17 0.001347 hybrid +134_1-1 Q0 MARCO_56_456809557-4 18 -0.003885 hybrid +134_1-1 Q0 MARCO_50_1676044543-12 19 -0.013201 hybrid +134_1-1 Q0 MARCO_58_1008698955-8 20 -0.020563 hybrid +134_1-1 Q0 MARCO_58_1008057483-12 21 -0.021433 hybrid +134_1-1 Q0 MARCO_27_1755745313-4 22 -0.024213 hybrid +134_1-1 Q0 MARCO_53_1514052628-4 23 -0.041108 hybrid +134_1-1 Q0 MARCO_42_1097508216-11 24 -0.054442 hybrid +134_1-1 Q0 MARCO_58_1008057483-13 25 -0.072652 hybrid +134_1-1 Q0 MARCO_58_1008057483-10 26 -0.080392 hybrid +134_1-1 Q0 MARCO_55_681131262-4 27 -0.098647 hybrid +134_1-1 Q0 MARCO_55_681360829-8 28 -0.105150 hybrid +134_1-1 Q0 MARCO_45_1019718891-21 29 -0.138093 hybrid +134_1-1 Q0 MARCO_40_817051784-2 30 -0.142929 hybrid +134_1-1 Q0 MARCO_35_809670314-16 31 -0.155807 hybrid +134_1-1 Q0 MARCO_28_655467320-2 32 -0.157389 hybrid +134_1-1 Q0 MARCO_50_1419718645-79 33 -0.158565 hybrid +134_1-1 Q0 MARCO_55_681052557-9 34 -0.162388 hybrid +134_1-1 Q0 MARCO_58_1007447817-8 35 -0.162482 hybrid +134_1-1 Q0 MARCO_54_99903925-14 36 -0.162705 hybrid +134_1-1 Q0 MARCO_46_7779561-7 37 -0.169559 hybrid +134_1-1 Q0 MARCO_58_1007241860-2 38 -0.177160 hybrid +134_1-1 Q0 MARCO_40_817051784-4 39 -0.179177 hybrid +134_1-1 Q0 MARCO_28_655910406-2 40 -0.187942 hybrid +134_1-1 Q0 MARCO_11_696887760-6 41 -0.190210 hybrid +134_1-1 Q0 MARCO_55_681360829-4 42 -0.193152 hybrid +134_1-1 Q0 MARCO_45_1021789810-8 43 -0.193854 hybrid +134_1-1 Q0 MARCO_29_1139491873-3 44 -0.194584 hybrid +134_1-1 Q0 MARCO_05_482108671-1 45 -0.200050 hybrid +134_1-1 Q0 MARCO_55_681076363-6 46 -0.200323 hybrid +134_1-1 Q0 MARCO_11_152628394-5 47 -0.205522 hybrid +134_1-1 Q0 MARCO_49_794626777-4 48 -0.207261 hybrid +134_1-1 Q0 MARCO_50_1419718645-70 49 -0.207368 hybrid +134_1-1 Q0 MARCO_55_681360829-9 50 -0.210916 hybrid +134_1-1 Q0 MARCO_58_1008057483-11 51 -0.211507 hybrid +134_1-1 Q0 MARCO_58_1007299838-5 52 -0.213023 hybrid +134_1-1 Q0 MARCO_33_822117870-15 53 -0.217140 hybrid +134_1-1 Q0 MARCO_12_123636749-6 54 -0.218461 hybrid +134_1-1 Q0 MARCO_55_681083428-4 55 -0.219498 hybrid +134_1-1 Q0 MARCO_41_288753895-10 56 -0.230976 hybrid +134_1-1 Q0 MARCO_26_109159712-6 57 -0.233127 hybrid +134_1-1 Q0 MARCO_58_1007016082-6 58 -0.238504 hybrid +134_1-1 Q0 MARCO_52_884868117-8 59 -0.240098 hybrid +134_1-1 Q0 MARCO_13_980391904-12 60 -0.241770 hybrid +134_1-1 Q0 MARCO_48_1537638145-18 61 -0.243252 hybrid +134_1-1 Q0 MARCO_43_1521332427-2 62 -0.249997 hybrid +134_1-1 Q0 MARCO_49_795876784-5 63 -0.250602 hybrid +134_1-1 Q0 MARCO_29_972974962-22 64 -0.253198 hybrid +134_1-1 Q0 MARCO_55_681109595-8 65 -0.254313 hybrid +134_1-1 Q0 MARCO_21_1149322219-5 66 -0.255082 hybrid +134_1-1 Q0 MARCO_37_833358429-4 67 -0.255271 hybrid +134_1-1 Q0 MARCO_52_1383131915-13 68 -0.257517 hybrid +134_1-1 Q0 MARCO_34_322279509-9 69 -0.257556 hybrid +134_1-1 Q0 MARCO_45_1019718891-33 70 -0.258693 hybrid +134_1-1 Q0 MARCO_30_741491479-2 71 -0.260339 hybrid +134_1-1 Q0 MARCO_55_855402956-2 72 -0.263178 hybrid +134_1-1 Q0 MARCO_28_655671628-3 73 -0.263802 hybrid +134_1-1 Q0 MARCO_55_681172170-9 74 -0.264042 hybrid +134_1-1 Q0 MARCO_55_681131262-7 75 -0.267686 hybrid +134_1-1 Q0 MARCO_45_1028844881-1 76 -0.271659 hybrid +134_1-1 Q0 MARCO_55_681083428-8 77 -0.279260 hybrid +134_1-1 Q0 MARCO_55_681131262-9 78 -0.285350 hybrid +134_1-1 Q0 MARCO_48_761671630-2 79 -0.287707 hybrid +134_1-1 Q0 MARCO_50_1419718645-44 80 -0.287997 hybrid +134_1-1 Q0 MARCO_35_809364331-2 81 -0.289680 hybrid +134_1-1 Q0 MARCO_20_694886831-2 82 -0.290650 hybrid +134_1-1 Q0 MARCO_53_1514271870-2 83 -0.290895 hybrid +134_1-1 Q0 MARCO_58_1006713197-26 84 -0.291446 hybrid +134_1-1 Q0 MARCO_13_1761251367-31 85 -0.292215 hybrid +134_1-1 Q0 MARCO_44_1487773945-5 86 -0.295007 hybrid +134_1-1 Q0 MARCO_58_1008935356-5 87 -0.295336 hybrid +134_1-1 Q0 MARCO_55_681360829-11 88 -0.302178 hybrid +134_1-1 Q0 MARCO_58_1007386097-7 89 -0.302424 hybrid +134_1-1 Q0 MARCO_43_1521332427-1 90 -0.303060 hybrid +134_1-1 Q0 MARCO_20_694886831-5 91 -0.303499 hybrid +134_1-1 Q0 MARCO_35_809241108-6 92 -0.307093 hybrid +134_1-1 Q0 MARCO_14_482895059-2 93 -0.308013 hybrid +134_1-1 Q0 MARCO_28_655583201-1 94 -0.309071 hybrid +134_1-1 Q0 MARCO_26_1548920763-3 95 -0.312604 hybrid +134_1-1 Q0 MARCO_55_681195067-8 96 -0.313251 hybrid +134_1-1 Q0 MARCO_21_403181703-10 97 -0.314036 hybrid +134_1-1 Q0 MARCO_45_1019718891-25 98 -0.315669 hybrid +134_1-1 Q0 MARCO_35_809432927-2 99 -0.317474 hybrid +134_1-1 Q0 MARCO_35_809432927-1 100 -0.318222 hybrid +134_1-11 Q0 MARCO_36_944454916-1 1 0.304394 hybrid +134_1-11 Q0 MARCO_30_88725475-31 2 0.303155 hybrid +134_1-11 Q0 MARCO_30_88725475-32 3 0.264450 hybrid +134_1-11 Q0 MARCO_58_1006877495-7 4 0.258372 hybrid +134_1-11 Q0 MARCO_58_1008308703-5 5 0.250000 hybrid +134_1-11 Q0 MARCO_58_1006877495-6 6 0.226445 hybrid +134_1-11 Q0 MARCO_30_88692581-21 7 0.203974 hybrid +134_1-11 Q0 MARCO_41_2178240120-1 8 0.190783 hybrid +134_1-11 Q0 MARCO_30_88725475-37 9 0.173621 hybrid +134_1-11 Q0 MARCO_30_88692581-25 10 0.169887 hybrid +134_1-11 Q0 MARCO_34_335269979-14 11 0.144477 hybrid +134_1-11 Q0 MARCO_58_1007582050-10 12 0.138945 hybrid +134_1-11 Q0 MARCO_36_944454916-5 13 0.133100 hybrid +134_1-11 Q0 MARCO_30_88725475-38 14 0.127889 hybrid +134_1-11 Q0 MARCO_14_37624184-4 15 0.124114 hybrid +134_1-11 Q0 MARCO_30_88725475-39 16 0.093357 hybrid +134_1-11 Q0 MARCO_30_88692581-22 17 0.092725 hybrid +134_1-11 Q0 MARCO_36_945711051-3 18 0.085390 hybrid +134_1-11 Q0 MARCO_34_333151546-21 19 0.085206 hybrid +134_1-11 Q0 MARCO_36_944454916-3 20 0.082169 hybrid +134_1-11 Q0 MARCO_30_88725475-35 21 0.077368 hybrid +134_1-11 Q0 MARCO_24_1717721932-7 22 0.072837 hybrid +134_1-11 Q0 MARCO_58_1006976171-9 23 0.071107 hybrid +134_1-11 Q0 MARCO_30_88725475-23 24 0.068798 hybrid +134_1-11 Q0 MARCO_55_860183325-13 25 0.058663 hybrid +134_1-11 Q0 MARCO_41_631148127-3 26 0.053430 hybrid +134_1-11 Q0 MARCO_24_1953269607-3 27 0.051015 hybrid +134_1-11 Q0 MARCO_55_860174844-8 28 0.049908 hybrid +134_1-11 Q0 MARCO_55_860183325-1 29 0.039683 hybrid +134_1-11 Q0 MARCO_45_1025014902-4 30 0.039150 hybrid +134_1-11 Q0 MARCO_45_141200182-3 31 0.038553 hybrid +134_1-11 Q0 MARCO_58_1008308703-6 32 0.035967 hybrid +134_1-11 Q0 MARCO_55_860157065-13 33 0.018707 hybrid +134_1-11 Q0 MARCO_30_88692581-20 34 0.018290 hybrid +134_1-11 Q0 MARCO_34_333151546-22 35 0.016645 hybrid +134_1-11 Q0 MARCO_21_957688307-28 36 0.012829 hybrid +134_1-11 Q0 MARCO_24_1958402667-4 37 -0.003820 hybrid +134_1-11 Q0 MARCO_24_1958402667-6 38 -0.003820 hybrid +134_1-11 Q0 MARCO_36_1067712779-3 39 -0.006385 hybrid +134_1-11 Q0 MARCO_24_1958402667-8 40 -0.006545 hybrid +134_1-11 Q0 MARCO_41_2178255484-1 41 -0.007165 hybrid +134_1-11 Q0 MARCO_58_1006877495-5 42 -0.013417 hybrid +134_1-11 Q0 MARCO_36_898362483-4 43 -0.022182 hybrid +134_1-11 Q0 MARCO_36_944441128-1 44 -0.022896 hybrid +134_1-11 Q0 MARCO_36_944406970-2 45 -0.025061 hybrid +134_1-11 Q0 MARCO_24_1959498029-2 46 -0.025988 hybrid +134_1-11 Q0 MARCO_41_2178283454-1 47 -0.039120 hybrid +134_1-11 Q0 MARCO_30_88692581-26 48 -0.041629 hybrid +134_1-11 Q0 MARCO_30_88692581-7 49 -0.043718 hybrid +134_1-11 Q0 MARCO_41_2178283454-4 50 -0.047290 hybrid +134_1-11 Q0 MARCO_45_140244363-6 51 -0.048737 hybrid +134_1-11 Q0 MARCO_30_88725475-15 52 -0.049742 hybrid +134_1-11 Q0 MARCO_27_1109734239-1 53 -0.050239 hybrid +134_1-11 Q0 MARCO_30_88692581-12 54 -0.054834 hybrid +134_1-11 Q0 MARCO_14_37624184-6 55 -0.058727 hybrid +134_1-11 Q0 MARCO_58_1006426191-6 56 -0.062732 hybrid +134_1-11 Q0 MARCO_58_1008340919-4 57 -0.064455 hybrid +134_1-11 Q0 MARCO_55_860157065-12 58 -0.068508 hybrid +134_1-11 Q0 MARCO_57_473675598-12 59 -0.073383 hybrid +134_1-11 Q0 MARCO_30_88725475-19 60 -0.077348 hybrid +134_1-11 Q0 MARCO_55_860183325-4 61 -0.079630 hybrid +134_1-11 Q0 MARCO_41_2178255484-4 62 -0.081957 hybrid +134_1-11 Q0 MARCO_30_88769099-15 63 -0.081975 hybrid +134_1-11 Q0 MARCO_55_681083428-18 64 -0.082660 hybrid +134_1-11 Q0 MARCO_30_88692581-10 65 -0.085588 hybrid +134_1-11 Q0 MARCO_24_1958402667-2 66 -0.086574 hybrid +134_1-11 Q0 MARCO_41_2178267959-3 67 -0.088399 hybrid +134_1-11 Q0 MARCO_30_88725475-40 68 -0.091566 hybrid +134_1-11 Q0 MARCO_29_831363978-3 69 -0.092012 hybrid +134_1-11 Q0 MARCO_58_1007467822-6 70 -0.092851 hybrid +134_1-11 Q0 MARCO_41_2178267959-1 71 -0.094441 hybrid +134_1-11 Q0 MARCO_41_2178277400-2 72 -0.097977 hybrid +134_1-11 Q0 MARCO_36_944270115-7 73 -0.102593 hybrid +134_1-11 Q0 MARCO_36_1067600535-1 74 -0.103250 hybrid +134_1-11 Q0 MARCO_30_88725475-11 75 -0.108054 hybrid +134_1-11 Q0 MARCO_30_88333542-24 76 -0.108742 hybrid +134_1-11 Q0 MARCO_34_328037387-13 77 -0.112445 hybrid +134_1-11 Q0 MARCO_34_333120683-17 78 -0.112445 hybrid +134_1-11 Q0 MARCO_55_860157065-3 79 -0.112993 hybrid +134_1-11 Q0 MARCO_24_1717721932-8 80 -0.117347 hybrid +134_1-11 Q0 MARCO_36_944454916-2 81 -0.119306 hybrid +134_1-11 Q0 MARCO_30_88769099-9 82 -0.128215 hybrid +134_1-11 Q0 MARCO_30_88725475-9 83 -0.136170 hybrid +134_1-11 Q0 MARCO_55_860199747-3 84 -0.136312 hybrid +134_1-11 Q0 MARCO_36_944454916-6 85 -0.136642 hybrid +134_1-11 Q0 MARCO_30_88769099-7 86 -0.142039 hybrid +134_1-11 Q0 MARCO_30_88769099-14 87 -0.142766 hybrid +134_1-11 Q0 MARCO_30_88725475-12 88 -0.148295 hybrid +134_1-11 Q0 MARCO_05_1513258648-5 89 -0.150669 hybrid +134_1-11 Q0 MARCO_36_889087433-5 90 -0.151012 hybrid +134_1-11 Q0 MARCO_36_1067712779-2 91 -0.151610 hybrid +134_1-11 Q0 MARCO_58_1006877495-11 92 -0.153966 hybrid +134_1-11 Q0 MARCO_41_2178277400-1 93 -0.155897 hybrid +134_1-11 Q0 MARCO_03_253065550-3 94 -0.159705 hybrid +134_1-11 Q0 MARCO_58_1008371076-7 95 -0.160660 hybrid +134_1-11 Q0 MARCO_30_88692581-13 96 -0.160985 hybrid +134_1-11 Q0 MARCO_34_328002561-25 97 -0.162662 hybrid +134_1-11 Q0 MARCO_14_37624184-5 98 -0.163571 hybrid +134_1-11 Q0 MARCO_55_860183325-12 99 -0.165460 hybrid +134_1-11 Q0 MARCO_55_860174844-1 100 -0.169228 hybrid +134_1-13 Q0 MARCO_36_945711051-3 1 0.534417 hybrid +134_1-13 Q0 MARCO_36_945711051-5 2 0.526161 hybrid +134_1-13 Q0 MARCO_36_945711051-4 3 0.490622 hybrid +134_1-13 Q0 MARCO_36_945717607-2 4 0.427308 hybrid +134_1-13 Q0 MARCO_36_945717607-4 5 0.337726 hybrid +134_1-13 Q0 MARCO_36_945717607-6 6 0.322827 hybrid +134_1-13 Q0 MARCO_41_2178255484-3 7 0.200810 hybrid +134_1-13 Q0 MARCO_58_1008788878-6 8 0.096033 hybrid +134_1-13 Q0 MARCO_36_945717607-5 9 0.056632 hybrid +134_1-13 Q0 MARCO_36_945717607-3 10 0.035372 hybrid +134_1-13 Q0 MARCO_36_945711051-6 11 0.029015 hybrid +134_1-13 Q0 MARCO_36_944414648-6 12 0.014002 hybrid +134_1-13 Q0 MARCO_36_944270115-8 13 0.010106 hybrid +134_1-13 Q0 MARCO_36_945698074-3 14 -0.034411 hybrid +134_1-13 Q0 MARCO_41_2178240120-2 15 -0.052455 hybrid +134_1-13 Q0 MARCO_41_2178240120-6 16 -0.052462 hybrid +134_1-13 Q0 MARCO_41_2178240120-4 17 -0.052462 hybrid +134_1-13 Q0 MARCO_45_1026166001-9 18 -0.058009 hybrid +134_1-13 Q0 MARCO_41_2178240120-9 19 -0.065006 hybrid +134_1-13 Q0 MARCO_29_972974962-17 20 -0.066804 hybrid +134_1-13 Q0 MARCO_55_860157065-8 21 -0.069508 hybrid +134_1-13 Q0 MARCO_36_945717607-1 22 -0.073169 hybrid +134_1-13 Q0 MARCO_55_848420280-12 23 -0.075885 hybrid +134_1-13 Q0 MARCO_36_889087433-3 24 -0.079828 hybrid +134_1-13 Q0 MARCO_45_140244363-6 25 -0.085337 hybrid +134_1-13 Q0 MARCO_28_1146135173-6 26 -0.088739 hybrid +134_1-13 Q0 MARCO_36_945698074-8 27 -0.105664 hybrid +134_1-13 Q0 MARCO_36_945698074-10 28 -0.105664 hybrid +134_1-13 Q0 MARCO_45_1026316263-9 29 -0.106263 hybrid +134_1-13 Q0 MARCO_41_2178753291-7 30 -0.115088 hybrid +134_1-13 Q0 MARCO_45_1026166001-17 31 -0.116949 hybrid +134_1-13 Q0 MARCO_40_1266702458-5 32 -0.133195 hybrid +134_1-13 Q0 MARCO_52_1210856843-5 33 -0.133913 hybrid +134_1-13 Q0 MARCO_51_1378457972-4 34 -0.143718 hybrid +134_1-13 Q0 MARCO_45_141066600-6 35 -0.144732 hybrid +134_1-13 Q0 MARCO_41_2178947233-5 36 -0.146632 hybrid +134_1-13 Q0 MARCO_34_328037387-12 37 -0.155308 hybrid +134_1-13 Q0 MARCO_47_1313747784-10 38 -0.157052 hybrid +134_1-13 Q0 MARCO_36_945698074-7 39 -0.161111 hybrid +134_1-13 Q0 MARCO_58_1008111120-6 40 -0.163676 hybrid +134_1-13 Q0 MARCO_41_2178891625-4 41 -0.194467 hybrid +134_1-13 Q0 MARCO_41_2178255484-4 42 -0.195849 hybrid +134_1-13 Q0 MARCO_48_1154614360-6 43 -0.197390 hybrid +134_1-13 Q0 MARCO_51_1381917671-4 44 -0.199018 hybrid +134_1-13 Q0 MARCO_47_1313747784-5 45 -0.199167 hybrid +134_1-13 Q0 MARCO_26_92686020-20 46 -0.200191 hybrid +134_1-13 Q0 MARCO_45_140884409-8 47 -0.209323 hybrid +134_1-13 Q0 MARCO_30_88864151-29 48 -0.209636 hybrid +134_1-13 Q0 MARCO_21_957688307-28 49 -0.212005 hybrid +134_1-13 Q0 MARCO_58_1008308703-5 50 -0.217444 hybrid +134_1-13 Q0 MARCO_41_2178753291-6 51 -0.217619 hybrid +134_1-13 Q0 MARCO_26_92686020-14 52 -0.218869 hybrid +134_1-13 Q0 MARCO_41_2178240120-7 53 -0.219396 hybrid +134_1-13 Q0 MARCO_24_1717721932-7 54 -0.222662 hybrid +134_1-13 Q0 MARCO_27_1107201309-9 55 -0.229706 hybrid +134_1-13 Q0 MARCO_36_944454916-6 56 -0.234045 hybrid +134_1-13 Q0 MARCO_30_88692581-25 57 -0.237857 hybrid +134_1-13 Q0 MARCO_20_686271921-2 58 -0.243297 hybrid +134_1-13 Q0 MARCO_51_1383377686-16 59 -0.248955 hybrid +134_1-13 Q0 MARCO_45_1021573417-12 60 -0.250121 hybrid +134_1-13 Q0 MARCO_45_140884409-9 61 -0.250359 hybrid +134_1-13 Q0 MARCO_48_371637991-3 62 -0.251744 hybrid +134_1-13 Q0 MARCO_47_1313747784-8 63 -0.254637 hybrid +134_1-13 Q0 MARCO_51_1379618300-4 64 -0.259317 hybrid +134_1-13 Q0 MARCO_29_972974962-16 65 -0.265121 hybrid +134_1-13 Q0 MARCO_26_92643165-22 66 -0.270238 hybrid +134_1-13 Q0 MARCO_58_1008308703-6 67 -0.274036 hybrid +134_1-13 Q0 MARCO_36_898362483-4 68 -0.275946 hybrid +134_1-13 Q0 MARCO_26_92643165-20 69 -0.277177 hybrid +134_1-13 Q0 MARCO_40_1266702458-11 70 -0.281406 hybrid +134_1-13 Q0 MARCO_50_1679353614-13 71 -0.284605 hybrid +134_1-13 Q0 MARCO_55_860199747-3 72 -0.287282 hybrid +134_1-13 Q0 MARCO_45_1026166001-8 73 -0.290308 hybrid +134_1-13 Q0 MARCO_48_1154620275-6 74 -0.293876 hybrid +134_1-13 Q0 MARCO_51_1383377686-3 75 -0.295645 hybrid +134_1-13 Q0 MARCO_10_793487780-11 76 -0.296249 hybrid +134_1-13 Q0 MARCO_41_2178760893-3 77 -0.297858 hybrid +134_1-13 Q0 MARCO_30_88725475-39 78 -0.300136 hybrid +134_1-13 Q0 MARCO_51_1381933399-8 79 -0.301871 hybrid +134_1-13 Q0 MARCO_14_37662480-12 80 -0.302174 hybrid +134_1-13 Q0 MARCO_45_1025014902-4 81 -0.306520 hybrid +134_1-13 Q0 MARCO_48_1154620275-5 82 -0.311404 hybrid +134_1-13 Q0 MARCO_24_1012123575-5 83 -0.311675 hybrid +134_1-13 Q0 MARCO_41_2178846675-2 84 -0.314002 hybrid +134_1-13 Q0 MARCO_14_37624184-5 85 -0.317639 hybrid +134_1-13 Q0 MARCO_30_88725475-35 86 -0.317688 hybrid +134_1-13 Q0 MARCO_55_856560512-5 87 -0.318933 hybrid +134_1-13 Q0 MARCO_36_901008585-2 88 -0.320404 hybrid +134_1-13 Q0 MARCO_26_92686020-15 89 -0.320446 hybrid +134_1-13 Q0 MARCO_45_140884409-6 90 -0.320822 hybrid +134_1-13 Q0 MARCO_26_92686020-19 91 -0.323664 hybrid +134_1-13 Q0 MARCO_45_1026166001-2 92 -0.325893 hybrid +134_1-13 Q0 MARCO_55_860174844-8 93 -0.325965 hybrid +134_1-13 Q0 MARCO_29_972974962-25 94 -0.326811 hybrid +134_1-13 Q0 MARCO_45_1021573417-13 95 -0.327231 hybrid +134_1-13 Q0 MARCO_41_2178876102-3 96 -0.329101 hybrid +134_1-13 Q0 MARCO_58_1007582050-10 97 -0.332859 hybrid +134_1-13 Q0 MARCO_48_1154620275-4 98 -0.336571 hybrid +134_1-13 Q0 MARCO_51_1381413026-24 99 -0.336625 hybrid +134_1-13 Q0 MARCO_58_1007467822-6 100 -0.337975 hybrid +134_1-3 Q0 MARCO_30_737995027-8 1 0.250000 hybrid +134_1-3 Q0 MARCO_30_738288722-11 2 0.136274 hybrid +134_1-3 Q0 MARCO_20_692808383-1 3 0.104323 hybrid +134_1-3 Q0 MARCO_50_2145508318-16 4 0.057979 hybrid +134_1-3 Q0 MARCO_49_1696999085-7 5 0.051581 hybrid +134_1-3 Q0 MARCO_32_1014217001-9 6 0.043765 hybrid +134_1-3 Q0 MARCO_13_1664335635-8 7 0.041323 hybrid +134_1-3 Q0 MARCO_32_1014217001-1 8 0.009040 hybrid +134_1-3 Q0 MARCO_49_1697473398-10 9 -0.001479 hybrid +134_1-3 Q0 MARCO_24_4623022-2 10 -0.026231 hybrid +134_1-3 Q0 MARCO_50_2145508318-10 11 -0.090617 hybrid +134_1-3 Q0 MARCO_32_1014217001-8 12 -0.094656 hybrid +134_1-3 Q0 MARCO_41_333152781-2 13 -0.101416 hybrid +134_1-3 Q0 MARCO_49_964845870-1 14 -0.101760 hybrid +134_1-3 Q0 MARCO_25_520745167-1 15 -0.106116 hybrid +134_1-3 Q0 MARCO_29_803087810-2 16 -0.111738 hybrid +134_1-3 Q0 MARCO_21_1523767850-1 17 -0.123033 hybrid +134_1-3 Q0 MARCO_24_79216037-19 18 -0.124382 hybrid +134_1-3 Q0 MARCO_49_964744584-13 19 -0.127275 hybrid +134_1-3 Q0 MARCO_29_803062556-2 20 -0.129031 hybrid +134_1-3 Q0 MARCO_46_1273503868-2 21 -0.134513 hybrid +134_1-3 Q0 MARCO_54_1644376757-8 22 -0.134831 hybrid +134_1-3 Q0 MARCO_50_2145508318-9 23 -0.144129 hybrid +134_1-3 Q0 MARCO_49_964845870-18 24 -0.158445 hybrid +134_1-3 Q0 MARCO_45_1023805152-3 25 -0.160200 hybrid +134_1-3 Q0 MARCO_25_1166838247-3 26 -0.162896 hybrid +134_1-3 Q0 MARCO_34_1257731272-1 27 -0.182039 hybrid +134_1-3 Q0 MARCO_25_520743549-1 28 -0.183566 hybrid +134_1-3 Q0 MARCO_20_1106648205-8 29 -0.197780 hybrid +134_1-3 Q0 MARCO_05_1023583590-3 30 -0.201087 hybrid +134_1-3 Q0 MARCO_41_338878950-2 31 -0.202416 hybrid +134_1-3 Q0 MARCO_11_714445878-1 32 -0.207955 hybrid +134_1-3 Q0 MARCO_53_1041630128-10 33 -0.211727 hybrid +134_1-3 Q0 MARCO_41_914827209-5 34 -0.216249 hybrid +134_1-3 Q0 MARCO_49_964820320-4 35 -0.216808 hybrid +134_1-3 Q0 MARCO_40_733845009-2 36 -0.223988 hybrid +134_1-3 Q0 MARCO_20_1382571884-6 37 -0.225051 hybrid +134_1-3 Q0 MARCO_20_692615591-6 38 -0.225152 hybrid +134_1-3 Q0 MARCO_49_1855039547-13 39 -0.228752 hybrid +134_1-3 Q0 MARCO_21_225542551-23 40 -0.236727 hybrid +134_1-3 Q0 MARCO_20_692615591-2 41 -0.237185 hybrid +134_1-3 Q0 MARCO_29_803087810-8 42 -0.243449 hybrid +134_1-3 Q0 MARCO_49_964769834-21 43 -0.246210 hybrid +134_1-3 Q0 MARCO_32_1014217001-2 44 -0.246833 hybrid +134_1-3 Q0 MARCO_42_1753278459-7 45 -0.247367 hybrid +134_1-3 Q0 MARCO_14_1096117407-1 46 -0.247615 hybrid +134_1-3 Q0 MARCO_33_366099507-25 47 -0.250000 hybrid +134_1-3 Q0 MARCO_29_830412788-11 48 -0.254077 hybrid +134_1-3 Q0 MARCO_43_744862185-1 49 -0.257428 hybrid +134_1-3 Q0 MARCO_11_154308528-1 50 -0.257613 hybrid +134_1-3 Q0 MARCO_47_977369795-1 51 -0.259247 hybrid +134_1-3 Q0 MARCO_45_1583601885-18 52 -0.260570 hybrid +134_1-3 Q0 MARCO_20_1379518704-1 53 -0.261931 hybrid +134_1-3 Q0 MARCO_49_401996522-21 54 -0.264628 hybrid +134_1-3 Q0 MARCO_51_948171333-10 55 -0.269232 hybrid +134_1-3 Q0 MARCO_30_738605676-9 56 -0.269773 hybrid +134_1-3 Q0 MARCO_43_744862185-10 57 -0.284413 hybrid +134_1-3 Q0 MARCO_45_1583124704-6 58 -0.287688 hybrid +134_1-3 Q0 MARCO_14_1096106027-1 59 -0.288381 hybrid +134_1-3 Q0 MARCO_36_398031272-1 60 -0.290423 hybrid +134_1-3 Q0 MARCO_51_741472353-27 61 -0.292878 hybrid +134_1-3 Q0 MARCO_15_140380330-19 62 -0.293202 hybrid +134_1-3 Q0 MARCO_15_140380330-21 63 -0.293202 hybrid +134_1-3 Q0 MARCO_49_964795670-19 64 -0.301864 hybrid +134_1-3 Q0 MARCO_22_156235222-30 65 -0.302576 hybrid +134_1-3 Q0 MARCO_14_1138718075-6 66 -0.302653 hybrid +134_1-3 Q0 MARCO_49_958338420-21 67 -0.304866 hybrid +134_1-3 Q0 MARCO_55_76812968-8 68 -0.305724 hybrid +134_1-3 Q0 MARCO_12_523058317-1 69 -0.307556 hybrid +134_1-3 Q0 MARCO_12_1142198635-1 70 -0.308262 hybrid +134_1-3 Q0 MARCO_27_1111356564-18 71 -0.309489 hybrid +134_1-3 Q0 MARCO_29_1690533469-9 72 -0.310583 hybrid +134_1-3 Q0 MARCO_49_1855804818-13 73 -0.310755 hybrid +134_1-3 Q0 MARCO_49_964845870-19 74 -0.315849 hybrid +134_1-3 Q0 MARCO_51_1318644815-9 75 -0.317293 hybrid +134_1-3 Q0 MARCO_48_375885560-22 76 -0.318069 hybrid +134_1-3 Q0 MARCO_11_714337058-20 77 -0.318737 hybrid +134_1-3 Q0 MARCO_50_2145508318-25 78 -0.320549 hybrid +134_1-3 Q0 MARCO_25_338925475-4 79 -0.321170 hybrid +134_1-3 Q0 MARCO_29_970950452-6 80 -0.329198 hybrid +134_1-3 Q0 MARCO_14_1136234388-12 81 -0.329287 hybrid +134_1-3 Q0 MARCO_45_163608706-53 82 -0.329892 hybrid +134_1-3 Q0 MARCO_11_714303118-9 83 -0.330114 hybrid +134_1-3 Q0 MARCO_54_1644376757-4 84 -0.330203 hybrid +134_1-3 Q0 MARCO_22_1217200733-7 85 -0.330456 hybrid +134_1-3 Q0 MARCO_41_332176130-18 86 -0.330871 hybrid +134_1-3 Q0 MARCO_14_1140695957-15 87 -0.332149 hybrid +134_1-3 Q0 MARCO_37_1259060465-17 88 -0.332932 hybrid +134_1-3 Q0 MARCO_21_960547910-56 89 -0.334611 hybrid +134_1-3 Q0 MARCO_46_1272997269-4 90 -0.335380 hybrid +134_1-3 Q0 MARCO_57_2139933131-20 91 -0.335552 hybrid +134_1-3 Q0 MARCO_30_836007775-5 92 -0.337892 hybrid +134_1-3 Q0 MARCO_55_220246020-2 93 -0.338340 hybrid +134_1-3 Q0 MARCO_58_958233549-2 94 -0.342242 hybrid +134_1-3 Q0 MARCO_21_952603944-1 95 -0.343641 hybrid +134_1-3 Q0 MARCO_50_1452314483-18 96 -0.343762 hybrid +134_1-3 Q0 MARCO_43_239599823-24 97 -0.347108 hybrid +134_1-3 Q0 MARCO_10_791683310-51 98 -0.348990 hybrid +134_1-3 Q0 MARCO_11_154308528-9 99 -0.349346 hybrid +134_1-3 Q0 MARCO_42_205585075-2 100 -0.349747 hybrid +134_1-5 Q0 MARCO_58_1008687294-8 1 0.249999 hybrid +134_1-5 Q0 MARCO_45_1025706014-7 2 0.235485 hybrid +134_1-5 Q0 MARCO_34_333151546-14 3 0.189622 hybrid +134_1-5 Q0 MARCO_34_333625792-19 4 0.181563 hybrid +134_1-5 Q0 MARCO_24_1012032122-1 5 0.124604 hybrid +134_1-5 Q0 MARCO_34_333151546-9 6 0.086102 hybrid +134_1-5 Q0 MARCO_34_335269979-8 7 0.080339 hybrid +134_1-5 Q0 MARCO_58_1008111120-4 8 0.077600 hybrid +134_1-5 Q0 MARCO_36_1067726977-3 9 0.070948 hybrid +134_1-5 Q0 MARCO_24_1012072495-1 10 0.041036 hybrid +134_1-5 Q0 MARCO_14_332757574-3 11 0.033060 hybrid +134_1-5 Q0 MARCO_41_631991925-1 12 0.029240 hybrid +134_1-5 Q0 MARCO_30_1134286947-4 13 0.025674 hybrid +134_1-5 Q0 MARCO_36_901008585-3 14 0.023453 hybrid +134_1-5 Q0 MARCO_42_325647616-7 15 0.013816 hybrid +134_1-5 Q0 MARCO_24_1012072495-2 16 -0.013327 hybrid +134_1-5 Q0 MARCO_24_1012032122-5 17 -0.017362 hybrid +134_1-5 Q0 MARCO_41_633731309-3 18 -0.021567 hybrid +134_1-5 Q0 MARCO_34_333151546-15 19 -0.025706 hybrid +134_1-5 Q0 MARCO_58_1007656339-10 20 -0.033513 hybrid +134_1-5 Q0 MARCO_24_1958769364-1 21 -0.035360 hybrid +134_1-5 Q0 MARCO_27_1109750285-1 22 -0.038031 hybrid +134_1-5 Q0 MARCO_24_1011834155-7 23 -0.073968 hybrid +134_1-5 Q0 MARCO_24_1012032122-4 24 -0.080519 hybrid +134_1-5 Q0 MARCO_41_2178616931-1 25 -0.103079 hybrid +134_1-5 Q0 MARCO_30_1134286947-3 26 -0.108665 hybrid +134_1-5 Q0 MARCO_27_1109750285-4 27 -0.108969 hybrid +134_1-5 Q0 MARCO_34_323363322-1 28 -0.112066 hybrid +134_1-5 Q0 MARCO_41_2178612900-1 29 -0.117229 hybrid +134_1-5 Q0 MARCO_30_1134286947-2 30 -0.118849 hybrid +134_1-5 Q0 MARCO_34_333625792-4 31 -0.120832 hybrid +134_1-5 Q0 MARCO_26_92686020-14 32 -0.121325 hybrid +134_1-5 Q0 MARCO_21_248924460-5 33 -0.125572 hybrid +134_1-5 Q0 MARCO_45_1025706014-6 34 -0.125949 hybrid +134_1-5 Q0 MARCO_51_1378932820-4 35 -0.133525 hybrid +134_1-5 Q0 MARCO_34_323379213-8 36 -0.134461 hybrid +134_1-5 Q0 MARCO_24_1012032122-2 37 -0.136768 hybrid +134_1-5 Q0 MARCO_14_332757574-2 38 -0.144858 hybrid +134_1-5 Q0 MARCO_58_1007494560-6 39 -0.145338 hybrid +134_1-5 Q0 MARCO_41_633731309-4 40 -0.148694 hybrid +134_1-5 Q0 MARCO_24_1012024291-6 41 -0.150700 hybrid +134_1-5 Q0 MARCO_27_1107224030-2 42 -0.154288 hybrid +134_1-5 Q0 MARCO_40_1266702458-5 43 -0.157163 hybrid +134_1-5 Q0 MARCO_41_631991925-2 44 -0.167056 hybrid +134_1-5 Q0 MARCO_51_1381358101-4 45 -0.170438 hybrid +134_1-5 Q0 MARCO_27_1109745040-1 46 -0.178297 hybrid +134_1-5 Q0 MARCO_41_2178620998-1 47 -0.180774 hybrid +134_1-5 Q0 MARCO_41_633731309-1 48 -0.185569 hybrid +134_1-5 Q0 MARCO_41_632739458-1 49 -0.190652 hybrid +134_1-5 Q0 MARCO_30_88917573-7 50 -0.196353 hybrid +134_1-5 Q0 MARCO_24_1012072495-4 51 -0.197775 hybrid +134_1-5 Q0 MARCO_27_1109750285-2 52 -0.199223 hybrid +134_1-5 Q0 MARCO_41_2178616931-4 53 -0.200042 hybrid +134_1-5 Q0 MARCO_51_1381358101-3 54 -0.202689 hybrid +134_1-5 Q0 MARCO_27_1109745040-4 55 -0.204890 hybrid +134_1-5 Q0 MARCO_41_2178947233-5 56 -0.206553 hybrid +134_1-5 Q0 MARCO_41_2178947233-4 57 -0.208641 hybrid +134_1-5 Q0 MARCO_36_1067726977-2 58 -0.215232 hybrid +134_1-5 Q0 MARCO_24_1012072495-3 59 -0.216911 hybrid +134_1-5 Q0 MARCO_34_328092494-23 60 -0.217674 hybrid +134_1-5 Q0 MARCO_34_328092494-22 61 -0.222170 hybrid +134_1-5 Q0 MARCO_58_1007821114-3 62 -0.225189 hybrid +134_1-5 Q0 MARCO_24_1958720520-18 63 -0.228839 hybrid +134_1-5 Q0 MARCO_27_1107214433-8 64 -0.234577 hybrid +134_1-5 Q0 MARCO_34_335269979-4 65 -0.238889 hybrid +134_1-5 Q0 MARCO_24_1012052780-6 66 -0.243081 hybrid +134_1-5 Q0 MARCO_51_1383377686-3 67 -0.245783 hybrid +134_1-5 Q0 MARCO_58_1008111120-5 68 -0.246304 hybrid +134_1-5 Q0 MARCO_41_2178876102-3 69 -0.249140 hybrid +134_1-5 Q0 MARCO_24_1645907032-1 70 -0.250001 hybrid +134_1-5 Q0 MARCO_43_295478875-2 71 -0.253457 hybrid +134_1-5 Q0 MARCO_34_328092494-21 72 -0.257800 hybrid +134_1-5 Q0 MARCO_20_686205010-2 73 -0.258210 hybrid +134_1-5 Q0 MARCO_48_1154802696-4 74 -0.266457 hybrid +134_1-5 Q0 MARCO_58_1006820502-13 75 -0.266837 hybrid +134_1-5 Q0 MARCO_34_324782533-2 76 -0.267144 hybrid +134_1-5 Q0 MARCO_51_1383377686-18 77 -0.272853 hybrid +134_1-5 Q0 MARCO_28_1146135173-6 78 -0.274250 hybrid +134_1-5 Q0 MARCO_41_2178633291-2 79 -0.276386 hybrid +134_1-5 Q0 MARCO_58_1008111120-6 80 -0.278132 hybrid +134_1-5 Q0 MARCO_30_1134286947-1 81 -0.280270 hybrid +134_1-5 Q0 MARCO_30_1698996763-2 82 -0.282292 hybrid +134_1-5 Q0 MARCO_51_1383377686-16 83 -0.290674 hybrid +134_1-5 Q0 MARCO_41_2178629244-3 84 -0.291844 hybrid +134_1-5 Q0 MARCO_41_2178629244-1 85 -0.291852 hybrid +134_1-5 Q0 MARCO_34_333120683-12 86 -0.292657 hybrid +134_1-5 Q0 MARCO_34_328037387-11 87 -0.292657 hybrid +134_1-5 Q0 MARCO_41_2178605025-1 88 -0.293792 hybrid +134_1-5 Q0 MARCO_26_92686020-20 89 -0.294179 hybrid +134_1-5 Q0 MARCO_24_1958720520-4 90 -0.294461 hybrid +134_1-5 Q0 MARCO_48_1154620275-5 91 -0.300852 hybrid +134_1-5 Q0 MARCO_41_2178880778-3 92 -0.301410 hybrid +134_1-5 Q0 MARCO_48_1154614360-5 93 -0.303149 hybrid +134_1-5 Q0 MARCO_41_2178624989-3 94 -0.305126 hybrid +134_1-5 Q0 MARCO_41_2178624989-1 95 -0.305126 hybrid +134_1-5 Q0 MARCO_51_1381449981-4 96 -0.305521 hybrid +134_1-5 Q0 MARCO_41_2178880778-9 97 -0.305929 hybrid +134_1-5 Q0 MARCO_26_94849520-4 98 -0.306432 hybrid +134_1-5 Q0 MARCO_51_1378932820-6 99 -0.309894 hybrid +134_1-5 Q0 MARCO_41_2178846675-3 100 -0.310742 hybrid +134_1-7 Q0 MARCO_36_945711051-3 1 0.249999 hybrid +134_1-7 Q0 MARCO_58_1007582050-10 2 0.211222 hybrid +134_1-7 Q0 MARCO_30_88692581-25 3 0.197282 hybrid +134_1-7 Q0 MARCO_30_88725475-38 4 0.179397 hybrid +134_1-7 Q0 MARCO_36_889087433-3 5 0.164594 hybrid +134_1-7 Q0 MARCO_55_860183325-13 6 0.129920 hybrid +134_1-7 Q0 MARCO_30_88725475-39 7 0.081401 hybrid +134_1-7 Q0 MARCO_43_295986306-9 8 0.055660 hybrid +134_1-7 Q0 MARCO_36_945698074-3 9 0.052474 hybrid +134_1-7 Q0 MARCO_30_88692581-22 10 0.046870 hybrid +134_1-7 Q0 MARCO_30_88725475-35 11 0.035922 hybrid +134_1-7 Q0 MARCO_30_88692581-20 12 0.032250 hybrid +134_1-7 Q0 MARCO_43_295327490-2 13 0.028237 hybrid +134_1-7 Q0 MARCO_55_860174844-8 14 0.027103 hybrid +134_1-7 Q0 MARCO_36_898362483-4 15 0.003507 hybrid +134_1-7 Q0 MARCO_34_328037387-12 16 -0.002127 hybrid +134_1-7 Q0 MARCO_21_957688307-28 17 -0.011630 hybrid +134_1-7 Q0 MARCO_58_1008308703-5 18 -0.018723 hybrid +134_1-7 Q0 MARCO_30_88692581-21 19 -0.023637 hybrid +134_1-7 Q0 MARCO_41_2178240120-2 20 -0.025593 hybrid +134_1-7 Q0 MARCO_41_2178240120-6 21 -0.025598 hybrid +134_1-7 Q0 MARCO_41_2178240120-4 22 -0.025598 hybrid +134_1-7 Q0 MARCO_45_141106379-6 23 -0.035849 hybrid +134_1-7 Q0 MARCO_43_296384571-11 24 -0.049580 hybrid +134_1-7 Q0 MARCO_30_88725475-37 25 -0.058171 hybrid +134_1-7 Q0 MARCO_36_945698074-8 26 -0.061025 hybrid +134_1-7 Q0 MARCO_36_945698074-10 27 -0.061025 hybrid +134_1-7 Q0 MARCO_41_2178277400-1 28 -0.064784 hybrid +134_1-7 Q0 MARCO_34_333151546-14 29 -0.068912 hybrid +134_1-7 Q0 MARCO_34_325141658-2 30 -0.078374 hybrid +134_1-7 Q0 MARCO_55_860199747-3 31 -0.082934 hybrid +134_1-7 Q0 MARCO_30_88692581-26 32 -0.095528 hybrid +134_1-7 Q0 MARCO_28_1146135173-6 33 -0.097293 hybrid +134_1-7 Q0 MARCO_41_2178283454-6 34 -0.099016 hybrid +134_1-7 Q0 MARCO_36_944454916-1 35 -0.108286 hybrid +134_1-7 Q0 MARCO_58_1008308703-6 36 -0.118095 hybrid +134_1-7 Q0 MARCO_30_88769099-15 37 -0.122949 hybrid +134_1-7 Q0 MARCO_55_860183325-1 38 -0.123182 hybrid +134_1-7 Q0 MARCO_36_889087433-5 39 -0.123306 hybrid +134_1-7 Q0 MARCO_30_88725475-40 40 -0.123625 hybrid +134_1-7 Q0 MARCO_34_333151546-22 41 -0.126526 hybrid +134_1-7 Q0 MARCO_36_944454916-3 42 -0.126573 hybrid +134_1-7 Q0 MARCO_34_333151546-15 43 -0.129173 hybrid +134_1-7 Q0 MARCO_36_889143841-3 44 -0.129513 hybrid +134_1-7 Q0 MARCO_55_860183325-4 45 -0.130287 hybrid +134_1-7 Q0 MARCO_45_141200182-2 46 -0.140075 hybrid +134_1-7 Q0 MARCO_41_2178220206-3 47 -0.141839 hybrid +134_1-7 Q0 MARCO_36_944414648-6 48 -0.142698 hybrid +134_1-7 Q0 MARCO_41_2178616931-4 49 -0.143537 hybrid +134_1-7 Q0 MARCO_58_1006877495-6 50 -0.145092 hybrid +134_1-7 Q0 MARCO_45_141200182-3 51 -0.146330 hybrid +134_1-7 Q0 MARCO_45_1025014902-4 52 -0.152716 hybrid +134_1-7 Q0 MARCO_43_295317189-2 53 -0.163681 hybrid +134_1-7 Q0 MARCO_34_333151546-20 54 -0.169602 hybrid +134_1-7 Q0 MARCO_36_944414648-3 55 -0.173616 hybrid +134_1-7 Q0 MARCO_55_860174844-1 56 -0.177466 hybrid +134_1-7 Q0 MARCO_30_88692581-24 57 -0.182845 hybrid +134_1-7 Q0 MARCO_58_1008788878-6 58 -0.184426 hybrid +134_1-7 Q0 MARCO_30_88725475-31 59 -0.184515 hybrid +134_1-7 Q0 MARCO_24_1717721932-8 60 -0.194467 hybrid +134_1-7 Q0 MARCO_30_88725475-19 61 -0.199249 hybrid +134_1-7 Q0 MARCO_06_205326242-4 62 -0.201463 hybrid +134_1-7 Q0 MARCO_48_371968142-1 63 -0.201544 hybrid +134_1-7 Q0 MARCO_43_295497892-1 64 -0.206806 hybrid +134_1-7 Q0 MARCO_35_809268425-8 65 -0.209461 hybrid +134_1-7 Q0 MARCO_41_2178240120-7 66 -0.212066 hybrid +134_1-7 Q0 MARCO_14_37624184-4 67 -0.218254 hybrid +134_1-7 Q0 MARCO_05_315458151-2 68 -0.221216 hybrid +134_1-7 Q0 MARCO_34_335269979-14 69 -0.225697 hybrid +134_1-7 Q0 MARCO_14_37624184-6 70 -0.225784 hybrid +134_1-7 Q0 MARCO_45_140244363-6 71 -0.226445 hybrid +134_1-7 Q0 MARCO_34_333625792-19 72 -0.228909 hybrid +134_1-7 Q0 MARCO_36_889087433-4 73 -0.229552 hybrid +134_1-7 Q0 MARCO_55_860183325-5 74 -0.231860 hybrid +134_1-7 Q0 MARCO_36_944441128-3 75 -0.232920 hybrid +134_1-7 Q0 MARCO_36_945717607-5 76 -0.235388 hybrid +134_1-7 Q0 MARCO_55_681083428-18 77 -0.239175 hybrid +134_1-7 Q0 MARCO_41_2177188071-6 78 -0.242231 hybrid +134_1-7 Q0 MARCO_36_944414648-2 79 -0.243484 hybrid +134_1-7 Q0 MARCO_30_88692581-12 80 -0.247176 hybrid +134_1-7 Q0 MARCO_30_88725475-15 81 -0.248532 hybrid +134_1-7 Q0 MARCO_55_860183325-8 82 -0.249142 hybrid +134_1-7 Q0 MARCO_22_1749042451-6 83 -0.250001 hybrid +134_1-7 Q0 MARCO_21_957688307-29 84 -0.250797 hybrid +134_1-7 Q0 MARCO_14_37624184-5 85 -0.251624 hybrid +134_1-7 Q0 MARCO_36_944454916-2 86 -0.252042 hybrid +134_1-7 Q0 MARCO_30_88725475-32 87 -0.252132 hybrid +134_1-7 Q0 MARCO_30_88725475-23 88 -0.253191 hybrid +134_1-7 Q0 MARCO_55_860183325-11 89 -0.259138 hybrid +134_1-7 Q0 MARCO_55_860174844-7 90 -0.261420 hybrid +134_1-7 Q0 MARCO_45_140347002-6 91 -0.264318 hybrid +134_1-7 Q0 MARCO_58_1006877495-5 92 -0.265094 hybrid +134_1-7 Q0 MARCO_41_2178267959-3 93 -0.265778 hybrid +134_1-7 Q0 MARCO_14_37624184-3 94 -0.266049 hybrid +134_1-7 Q0 MARCO_41_2178301972-1 95 -0.269238 hybrid +134_1-7 Q0 MARCO_43_295458862-2 96 -0.276504 hybrid +134_1-7 Q0 MARCO_40_562581457-13 97 -0.281636 hybrid +134_1-7 Q0 MARCO_41_2178272362-1 98 -0.284286 hybrid +134_1-7 Q0 MARCO_41_2178753291-7 99 -0.284332 hybrid +134_1-7 Q0 MARCO_35_312147600-3 100 -0.287033 hybrid +134_1-9 Q0 MARCO_34_333151546-14 1 0.265446 hybrid +134_1-9 Q0 MARCO_24_1012072495-2 2 0.124601 hybrid +134_1-9 Q0 MARCO_24_1958769364-1 3 0.116993 hybrid +134_1-9 Q0 MARCO_34_333151546-9 4 0.112611 hybrid +134_1-9 Q0 MARCO_34_333151546-15 5 0.052443 hybrid +134_1-9 Q0 MARCO_24_1012032122-4 6 0.032275 hybrid +134_1-9 Q0 MARCO_34_335269979-8 7 -0.011602 hybrid +134_1-9 Q0 MARCO_41_2178616931-4 8 -0.011669 hybrid +134_1-9 Q0 MARCO_45_1025706014-7 9 -0.019161 hybrid +134_1-9 Q0 MARCO_24_1011834155-7 10 -0.028358 hybrid +134_1-9 Q0 MARCO_34_324782533-2 11 -0.045383 hybrid +134_1-9 Q0 MARCO_24_1012032122-1 12 -0.061188 hybrid +134_1-9 Q0 MARCO_34_333625792-19 13 -0.071624 hybrid +134_1-9 Q0 MARCO_36_889087433-3 14 -0.072617 hybrid +134_1-9 Q0 MARCO_48_1154614360-6 15 -0.072946 hybrid +134_1-9 Q0 MARCO_43_295986306-9 16 -0.114779 hybrid +134_1-9 Q0 MARCO_24_1012039065-5 17 -0.125149 hybrid +134_1-9 Q0 MARCO_36_901008585-2 18 -0.126714 hybrid +134_1-9 Q0 MARCO_28_1146135173-6 19 -0.128269 hybrid +134_1-9 Q0 MARCO_41_631991925-1 20 -0.139394 hybrid +134_1-9 Q0 MARCO_34_333625792-4 21 -0.149924 hybrid +134_1-9 Q0 MARCO_28_651603893-4 22 -0.156477 hybrid +134_1-9 Q0 MARCO_36_889205230-4 23 -0.161258 hybrid +134_1-9 Q0 MARCO_45_1025706014-6 24 -0.161419 hybrid +134_1-9 Q0 MARCO_58_1008687294-8 25 -0.161712 hybrid +134_1-9 Q0 MARCO_34_335269979-4 26 -0.163486 hybrid +134_1-9 Q0 MARCO_41_2178612900-4 27 -0.164926 hybrid +134_1-9 Q0 MARCO_36_945698074-3 28 -0.168827 hybrid +134_1-9 Q0 MARCO_36_891284331-2 29 -0.178721 hybrid +134_1-9 Q0 MARCO_36_901008585-1 30 -0.180995 hybrid +134_1-9 Q0 MARCO_34_335269979-3 31 -0.183578 hybrid +134_1-9 Q0 MARCO_41_2178865213-4 32 -0.183720 hybrid +134_1-9 Q0 MARCO_01_1033254855-6 33 -0.187820 hybrid +134_1-9 Q0 MARCO_34_328092494-21 34 -0.188188 hybrid +134_1-9 Q0 MARCO_51_1378932820-4 35 -0.192260 hybrid +134_1-9 Q0 MARCO_24_1012123575-5 36 -0.193580 hybrid +134_1-9 Q0 MARCO_41_2178734009-1 37 -0.194439 hybrid +134_1-9 Q0 MARCO_36_901008585-3 38 -0.198359 hybrid +134_1-9 Q0 MARCO_24_1012072495-3 39 -0.202894 hybrid +134_1-9 Q0 MARCO_24_1012024291-5 40 -0.211435 hybrid +134_1-9 Q0 MARCO_41_633731309-1 41 -0.213062 hybrid +134_1-9 Q0 MARCO_41_2178633291-1 42 -0.213572 hybrid +134_1-9 Q0 MARCO_24_1012107634-7 43 -0.216611 hybrid +134_1-9 Q0 MARCO_34_328092494-24 44 -0.217742 hybrid +134_1-9 Q0 MARCO_43_295478875-2 45 -0.224076 hybrid +134_1-9 Q0 MARCO_36_945698074-2 46 -0.228801 hybrid +134_1-9 Q0 MARCO_42_325647616-7 47 -0.230325 hybrid +134_1-9 Q0 MARCO_58_1008111120-4 48 -0.230546 hybrid +134_1-9 Q0 MARCO_34_333625792-3 49 -0.232231 hybrid +134_1-9 Q0 MARCO_34_333151546-10 50 -0.234517 hybrid +134_1-9 Q0 MARCO_34_328092494-23 51 -0.236014 hybrid +134_1-9 Q0 MARCO_58_1007656339-10 52 -0.239292 hybrid +134_1-9 Q0 MARCO_34_323379213-1 53 -0.240199 hybrid +134_1-9 Q0 MARCO_41_2178597596-4 54 -0.243148 hybrid +134_1-9 Q0 MARCO_24_1012084495-6 55 -0.248015 hybrid +134_1-9 Q0 MARCO_24_1012032122-5 56 -0.248189 hybrid +134_1-9 Q0 MARCO_57_1444172002-1 57 -0.250001 hybrid +134_1-9 Q0 MARCO_55_851912182-6 58 -0.253486 hybrid +134_1-9 Q0 MARCO_51_1383315875-8 59 -0.257119 hybrid +134_1-9 Q0 MARCO_55_856560512-4 60 -0.257306 hybrid +134_1-9 Q0 MARCO_24_1012072495-1 61 -0.258371 hybrid +134_1-9 Q0 MARCO_29_818459952-1 62 -0.260392 hybrid +134_1-9 Q0 MARCO_05_479223142-4 63 -0.269874 hybrid +134_1-9 Q0 MARCO_48_1154620275-5 64 -0.271037 hybrid +134_1-9 Q0 MARCO_41_2178965964-1 65 -0.273946 hybrid +134_1-9 Q0 MARCO_48_667255635-1 66 -0.274111 hybrid +134_1-9 Q0 MARCO_41_632756771-1 67 -0.274972 hybrid +134_1-9 Q0 MARCO_58_1007821114-3 68 -0.281262 hybrid +134_1-9 Q0 MARCO_35_1249226879-1 69 -0.285283 hybrid +134_1-9 Q0 MARCO_34_325198523-5 70 -0.286843 hybrid +134_1-9 Q0 MARCO_43_296384571-8 71 -0.286858 hybrid +134_1-9 Q0 MARCO_47_1313747784-10 72 -0.288708 hybrid +134_1-9 Q0 MARCO_51_1383377686-17 73 -0.291676 hybrid +134_1-9 Q0 MARCO_34_333120683-12 74 -0.295869 hybrid +134_1-9 Q0 MARCO_34_328037387-11 75 -0.295869 hybrid +134_1-9 Q0 MARCO_41_2178671496-1 76 -0.304737 hybrid +134_1-9 Q0 MARCO_55_856579510-4 77 -0.309428 hybrid +134_1-9 Q0 MARCO_43_295488100-2 78 -0.311285 hybrid +134_1-9 Q0 MARCO_48_1154620275-6 79 -0.313282 hybrid +134_1-9 Q0 MARCO_36_945711051-2 80 -0.314521 hybrid +134_1-9 Q0 MARCO_36_897228409-7 81 -0.314690 hybrid +134_1-9 Q0 MARCO_41_2178918345-4 82 -0.314899 hybrid +134_1-9 Q0 MARCO_41_632747712-1 83 -0.315745 hybrid +134_1-9 Q0 MARCO_41_2178781848-1 84 -0.316734 hybrid +134_1-9 Q0 MARCO_41_2178870268-1 85 -0.321206 hybrid +134_1-9 Q0 MARCO_24_1012060786-6 86 -0.323019 hybrid +134_1-9 Q0 MARCO_42_274239680-3 87 -0.324877 hybrid +134_1-9 Q0 MARCO_51_1381953965-7 88 -0.325183 hybrid +134_1-9 Q0 MARCO_26_92610241-21 89 -0.326066 hybrid +134_1-9 Q0 MARCO_48_371637991-4 90 -0.326387 hybrid +134_1-9 Q0 MARCO_41_2178961051-4 91 -0.326512 hybrid +134_1-9 Q0 MARCO_34_328092494-20 92 -0.326723 hybrid +134_1-9 Q0 MARCO_41_2178616931-1 93 -0.333700 hybrid +134_1-9 Q0 MARCO_35_809268425-12 94 -0.338263 hybrid +134_1-9 Q0 MARCO_43_296333683-2 95 -0.338371 hybrid +134_1-9 Q0 MARCO_24_1012052780-4 96 -0.339630 hybrid +134_1-9 Q0 MARCO_41_2178633291-2 97 -0.341698 hybrid +134_1-9 Q0 MARCO_41_633731309-3 98 -0.342225 hybrid +134_1-9 Q0 MARCO_33_90560061-2 99 -0.343728 hybrid +134_1-9 Q0 MARCO_41_632739458-1 100 -0.344173 hybrid +134_2-1 Q0 MARCO_43_761449280-5 1 0.250000 hybrid +134_2-1 Q0 MARCO_41_1844228176-159 2 0.127379 hybrid +134_2-1 Q0 MARCO_41_1844228176-132 3 0.111230 hybrid +134_2-1 Q0 MARCO_41_1844228176-76 4 0.105664 hybrid +134_2-1 Q0 MARCO_41_1844228176-16 5 0.048152 hybrid +134_2-1 Q0 MARCO_20_696573438-12 6 0.043071 hybrid +134_2-1 Q0 MARCO_20_696604540-13 7 0.043071 hybrid +134_2-1 Q0 MARCO_20_696589491-12 8 0.043071 hybrid +134_2-1 Q0 MARCO_23_1830336853-11 9 0.019711 hybrid +134_2-1 Q0 MARCO_45_140776639-6 10 0.011703 hybrid +134_2-1 Q0 MARCO_46_9750301-5 11 -0.010975 hybrid +134_2-1 Q0 MARCO_52_682982086-22 12 -0.028139 hybrid +134_2-1 Q0 MARCO_42_326139906-13 13 -0.035126 hybrid +134_2-1 Q0 MARCO_41_1844228176-78 14 -0.041332 hybrid +134_2-1 Q0 MARCO_45_141118466-3 15 -0.041576 hybrid +134_2-1 Q0 MARCO_50_2156613647-34 16 -0.096085 hybrid +134_2-1 Q0 MARCO_41_1844228176-131 17 -0.102567 hybrid +134_2-1 Q0 MARCO_00_624973167-2 18 -0.108700 hybrid +134_2-1 Q0 MARCO_41_1844228176-15 19 -0.114369 hybrid +134_2-1 Q0 MARCO_41_1844228176-28 20 -0.121350 hybrid +134_2-1 Q0 MARCO_41_1844228176-157 21 -0.130045 hybrid +134_2-1 Q0 MARCO_46_7012985-7 22 -0.156794 hybrid +134_2-1 Q0 MARCO_20_696470166-8 23 -0.161969 hybrid +134_2-1 Q0 MARCO_25_1116513032-7 24 -0.165186 hybrid +134_2-1 Q0 MARCO_55_858850694-5 25 -0.167586 hybrid +134_2-1 Q0 MARCO_23_1831766455-1 26 -0.182216 hybrid +134_2-1 Q0 MARCO_45_1034575256-18 27 -0.191196 hybrid +134_2-1 Q0 MARCO_46_6429321-2 28 -0.194476 hybrid +134_2-1 Q0 MARCO_45_1034575256-3 29 -0.199433 hybrid +134_2-1 Q0 MARCO_45_1026400396-7 30 -0.211552 hybrid +134_2-1 Q0 MARCO_20_696651467-11 31 -0.211657 hybrid +134_2-1 Q0 MARCO_45_141640711-3 32 -0.213666 hybrid +134_2-1 Q0 MARCO_45_141118466-8 33 -0.221741 hybrid +134_2-1 Q0 MARCO_45_141106379-3 34 -0.226291 hybrid +134_2-1 Q0 MARCO_50_2156613647-23 35 -0.230971 hybrid +134_2-1 Q0 MARCO_50_2156613647-33 36 -0.238234 hybrid +134_2-1 Q0 MARCO_45_140765762-5 37 -0.242118 hybrid +134_2-1 Q0 MARCO_50_2156613647-31 38 -0.246173 hybrid +134_2-1 Q0 MARCO_11_119170152-4 39 -0.250000 hybrid +134_2-1 Q0 MARCO_33_1242935559-8 40 -0.251551 hybrid +134_2-1 Q0 MARCO_45_141131747-7 41 -0.254384 hybrid +134_2-1 Q0 MARCO_45_140559567-1 42 -0.256169 hybrid +134_2-1 Q0 MARCO_20_696783338-8 43 -0.256633 hybrid +134_2-1 Q0 MARCO_50_1421797340-8 44 -0.262760 hybrid +134_2-1 Q0 MARCO_45_141044143-1 45 -0.265015 hybrid +134_2-1 Q0 MARCO_20_696589491-13 46 -0.266878 hybrid +134_2-1 Q0 MARCO_20_696604540-14 47 -0.266878 hybrid +134_2-1 Q0 MARCO_20_696573438-13 48 -0.266878 hybrid +134_2-1 Q0 MARCO_45_1035006416-7 49 -0.270012 hybrid +134_2-1 Q0 MARCO_50_2156613647-20 50 -0.272553 hybrid +134_2-1 Q0 MARCO_43_766226005-2 51 -0.276005 hybrid +134_2-1 Q0 MARCO_42_326139906-14 52 -0.280649 hybrid +134_2-1 Q0 MARCO_25_1121894598-8 53 -0.281883 hybrid +134_2-1 Q0 MARCO_46_6429321-3 54 -0.282486 hybrid +134_2-1 Q0 MARCO_55_858850694-2 55 -0.288146 hybrid +134_2-1 Q0 MARCO_50_1012198764-6 56 -0.291528 hybrid +134_2-1 Q0 MARCO_05_452936030-5 57 -0.292524 hybrid +134_2-1 Q0 MARCO_45_141106379-10 58 -0.292597 hybrid +134_2-1 Q0 MARCO_45_140347002-4 59 -0.292774 hybrid +134_2-1 Q0 MARCO_43_766434023-6 60 -0.295460 hybrid +134_2-1 Q0 MARCO_01_1033395166-6 61 -0.295939 hybrid +134_2-1 Q0 MARCO_41_1844228176-127 62 -0.298495 hybrid +134_2-1 Q0 MARCO_43_765969820-8 63 -0.298829 hybrid +134_2-1 Q0 MARCO_41_1845650597-3 64 -0.299261 hybrid +134_2-1 Q0 MARCO_50_2156613647-39 65 -0.300411 hybrid +134_2-1 Q0 MARCO_42_326139906-15 66 -0.301052 hybrid +134_2-1 Q0 MARCO_32_1527087147-15 67 -0.301322 hybrid +134_2-1 Q0 MARCO_50_2156613647-47 68 -0.302551 hybrid +134_2-1 Q0 MARCO_39_421692308-4 69 -0.302988 hybrid +134_2-1 Q0 MARCO_42_326139906-12 70 -0.303842 hybrid +134_2-1 Q0 MARCO_33_1242858838-9 71 -0.308450 hybrid +134_2-1 Q0 MARCO_41_2177907671-2 72 -0.310032 hybrid +134_2-1 Q0 MARCO_39_1521949205-15 73 -0.313047 hybrid +134_2-1 Q0 MARCO_39_1521171638-15 74 -0.313047 hybrid +134_2-1 Q0 MARCO_45_140600834-11 75 -0.313828 hybrid +134_2-1 Q0 MARCO_26_503353356-4 76 -0.314010 hybrid +134_2-1 Q0 MARCO_25_1119134737-4 77 -0.314442 hybrid +134_2-1 Q0 MARCO_36_892827898-6 78 -0.315363 hybrid +134_2-1 Q0 MARCO_20_74502139-10 79 -0.316576 hybrid +134_2-1 Q0 MARCO_45_141106379-1 80 -0.320429 hybrid +134_2-1 Q0 MARCO_46_8793828-19 81 -0.321392 hybrid +134_2-1 Q0 MARCO_23_1830325000-9 82 -0.322876 hybrid +134_2-1 Q0 MARCO_45_140776639-8 83 -0.326239 hybrid +134_2-1 Q0 MARCO_41_1844228176-80 84 -0.326791 hybrid +134_2-1 Q0 MARCO_20_696299228-13 85 -0.327921 hybrid +134_2-1 Q0 MARCO_20_696316050-14 86 -0.327921 hybrid +134_2-1 Q0 MARCO_41_337198690-14 87 -0.328327 hybrid +134_2-1 Q0 MARCO_41_1844228176-42 88 -0.329436 hybrid +134_2-1 Q0 MARCO_21_1433520323-4 89 -0.330451 hybrid +134_2-1 Q0 MARCO_20_696552158-6 90 -0.332783 hybrid +134_2-1 Q0 MARCO_20_696542242-6 91 -0.332783 hybrid +134_2-1 Q0 MARCO_41_1844228176-139 92 -0.333871 hybrid +134_2-1 Q0 MARCO_41_1844228176-24 93 -0.336813 hybrid +134_2-1 Q0 MARCO_17_2384950019-18 94 -0.339359 hybrid +134_2-1 Q0 MARCO_14_482882091-2 95 -0.339608 hybrid +134_2-1 Q0 MARCO_45_1022208653-5 96 -0.341399 hybrid +134_2-1 Q0 MARCO_22_834805999-9 97 -0.343164 hybrid +134_2-1 Q0 MARCO_45_141592868-6 98 -0.345773 hybrid +134_2-1 Q0 MARCO_41_1844228176-11 99 -0.346595 hybrid +134_2-1 Q0 MARCO_45_1021573417-8 100 -0.347012 hybrid +134_2-3 Q0 MARCO_26_156515181-16 1 0.250001 hybrid +134_2-3 Q0 MARCO_47_1589034627-14 2 -0.232156 hybrid +134_2-3 Q0 MARCO_47_951489647-1 3 -0.249999 hybrid +134_2-3 Q0 MARCO_58_1446037426-1 4 -0.351589 hybrid +134_2-3 Q0 MARCO_50_2033468525-12 5 -0.375950 hybrid +134_2-3 Q0 MARCO_53_721787782-1 6 -0.378258 hybrid +134_2-3 Q0 MARCO_52_621018191-1 7 -0.380181 hybrid +134_2-3 Q0 MARCO_09_946383723-8 8 -0.390695 hybrid +134_2-3 Q0 MARCO_00_590373901-14 9 -0.395134 hybrid +134_2-3 Q0 MARCO_40_653332427-1 10 -0.408773 hybrid +134_2-3 Q0 MARCO_49_402206862-23 11 -0.409372 hybrid +134_2-3 Q0 MARCO_15_1803991541-1 12 -0.410012 hybrid +134_2-3 Q0 MARCO_30_738605676-9 13 -0.413996 hybrid +134_2-3 Q0 MARCO_42_27241706-2 14 -0.416124 hybrid +134_2-3 Q0 MARCO_08_1494380228-3 15 -0.416381 hybrid +134_2-3 Q0 MARCO_41_707896190-1 16 -0.416381 hybrid +134_2-3 Q0 MARCO_53_1041630128-10 17 -0.420493 hybrid +134_2-3 Q0 MARCO_55_1127900399-14 18 -0.423913 hybrid +134_2-3 Q0 MARCO_07_1156626082-1 19 -0.425740 hybrid +134_2-3 Q0 MARCO_15_466552679-2 20 -0.431852 hybrid +134_2-3 Q0 MARCO_27_1111356564-18 21 -0.433231 hybrid +134_2-3 Q0 MARCO_37_1515282871-3 22 -0.434359 hybrid +134_2-3 Q0 MARCO_26_1551013371-6 23 -0.434606 hybrid +134_2-3 Q0 MARCO_44_1996549323-9 24 -0.440229 hybrid +134_2-3 Q0 MARCO_28_213608885-1 25 -0.440784 hybrid +134_2-3 Q0 MARCO_06_1428568519-3 26 -0.447323 hybrid +134_2-3 Q0 MARCO_30_131177147-1 27 -0.451363 hybrid +134_2-3 Q0 MARCO_50_2557300972-4 28 -0.451555 hybrid +134_2-3 Q0 MARCO_55_205723866-3 29 -0.454204 hybrid +134_2-3 Q0 MARCO_23_1228250676-1 30 -0.460188 hybrid +134_2-3 Q0 MARCO_49_1697473398-10 31 -0.461692 hybrid +134_2-3 Q0 MARCO_41_1197416817-15 32 -0.465589 hybrid +134_2-3 Q0 MARCO_39_215014045-7 33 -0.466470 hybrid +134_2-3 Q0 MARCO_41_707896190-3 34 -0.469847 hybrid +134_2-3 Q0 MARCO_48_1705318825-3 35 -0.474633 hybrid +134_2-3 Q0 MARCO_41_1162108640-30 36 -0.480061 hybrid +134_2-3 Q0 MARCO_29_32099060-2 37 -0.480484 hybrid +134_2-3 Q0 MARCO_37_1255561149-18 38 -0.481157 hybrid +134_2-3 Q0 MARCO_27_1208178303-3 39 -0.486075 hybrid +134_2-3 Q0 MARCO_24_1553824018-15 40 -0.486111 hybrid +134_2-3 Q0 MARCO_12_1716720298-1 41 -0.488566 hybrid +134_2-3 Q0 MARCO_31_738962912-8 42 -0.491045 hybrid +134_2-3 Q0 MARCO_50_2503968444-7 43 -0.491814 hybrid +134_2-3 Q0 MARCO_46_289337347-1 44 -0.492455 hybrid +134_2-3 Q0 MARCO_44_96259872-11 45 -0.493225 hybrid +134_2-3 Q0 MARCO_20_1207320683-1 46 -0.493994 hybrid +134_2-3 Q0 MARCO_50_2187779167-20 47 -0.494122 hybrid +134_2-3 Q0 MARCO_20_742789920-1 48 -0.494977 hybrid +134_2-3 Q0 MARCO_15_1379863493-1 49 -0.495575 hybrid +134_2-3 Q0 MARCO_12_1451725123-23 50 -0.496846 hybrid +134_2-3 Q0 MARCO_02_291313411-1 51 -0.497413 hybrid +134_2-3 Q0 MARCO_53_1049070637-7 52 -0.500405 hybrid +134_2-3 Q0 MARCO_38_714166213-29 53 -0.500789 hybrid +134_2-3 Q0 MARCO_22_180533651-11 54 -0.502243 hybrid +134_2-3 Q0 MARCO_08_1743934346-26 55 -0.503097 hybrid +134_2-3 Q0 MARCO_20_1457656494-1 56 -0.504978 hybrid +134_2-3 Q0 MARCO_20_1636487322-1 57 -0.508269 hybrid +134_2-3 Q0 MARCO_06_639374388-1 58 -0.509295 hybrid +134_2-3 Q0 MARCO_27_1334112520-4 59 -0.510672 hybrid +134_2-3 Q0 MARCO_36_1374474204-23 60 -0.511731 hybrid +134_2-3 Q0 MARCO_33_1243430503-1 61 -0.512058 hybrid +134_2-3 Q0 MARCO_52_1795087482-29 62 -0.513397 hybrid +134_2-3 Q0 MARCO_12_988315249-6 63 -0.514765 hybrid +134_2-3 Q0 MARCO_00_1160217140-31 64 -0.515213 hybrid +134_2-3 Q0 MARCO_31_902968312-5 65 -0.515585 hybrid +134_2-3 Q0 MARCO_47_1240613706-1 66 -0.517158 hybrid +134_2-3 Q0 MARCO_57_1492392806-1 67 -0.518099 hybrid +134_2-3 Q0 MARCO_50_1270374290-85 68 -0.518398 hybrid +134_2-3 Q0 MARCO_14_1636803761-6 69 -0.519039 hybrid +134_2-3 Q0 MARCO_13_21179806-16 70 -0.520172 hybrid +134_2-3 Q0 MARCO_13_21179806-14 71 -0.520172 hybrid +134_2-3 Q0 MARCO_43_1557797038-1 72 -0.520321 hybrid +134_2-3 Q0 MARCO_39_120163521-10 73 -0.521261 hybrid +134_2-3 Q0 MARCO_11_628228048-23 74 -0.523826 hybrid +134_2-3 Q0 MARCO_30_1595485189-1 75 -0.525792 hybrid +134_2-3 Q0 MARCO_55_126048728-7 76 -0.526379 hybrid +134_2-3 Q0 MARCO_57_976763922-7 77 -0.529980 hybrid +134_2-3 Q0 MARCO_41_1494027208-16 78 -0.531390 hybrid +134_2-3 Q0 MARCO_55_207247288-11 79 -0.532117 hybrid +134_2-3 Q0 MARCO_14_1099126805-1 80 -0.533314 hybrid +134_2-3 Q0 MARCO_06_1716723295-4 81 -0.534179 hybrid +134_2-3 Q0 MARCO_28_40535134-5 82 -0.534843 hybrid +134_2-3 Q0 MARCO_30_1582557610-1 83 -0.535536 hybrid +134_2-3 Q0 MARCO_37_1223731603-5 84 -0.535569 hybrid +134_2-3 Q0 MARCO_50_1807162975-42 85 -0.535664 hybrid +134_2-3 Q0 MARCO_50_1982635580-14 86 -0.536134 hybrid +134_2-3 Q0 MARCO_15_1433107412-24 87 -0.536818 hybrid +134_2-3 Q0 MARCO_24_954107970-9 88 -0.538310 hybrid +134_2-3 Q0 MARCO_51_688646166-28 89 -0.539135 hybrid +134_2-3 Q0 MARCO_26_1046777764-1 90 -0.539639 hybrid +134_2-3 Q0 MARCO_31_1291100998-2 91 -0.539639 hybrid +134_2-3 Q0 MARCO_50_2405737183-51 92 -0.540109 hybrid +134_2-3 Q0 MARCO_04_1107647362-7 93 -0.540665 hybrid +134_2-3 Q0 MARCO_10_304901101-2 94 -0.540793 hybrid +134_2-3 Q0 MARCO_50_1036468952-22 95 -0.541477 hybrid +134_2-3 Q0 MARCO_30_737679851-7 96 -0.541555 hybrid +134_2-3 Q0 MARCO_52_583405666-2 97 -0.541861 hybrid +134_2-3 Q0 MARCO_31_1656200838-14 98 -0.542391 hybrid +134_2-3 Q0 MARCO_20_22181678-15 99 -0.542595 hybrid +134_2-3 Q0 MARCO_52_1161001200-1 100 -0.542759 hybrid +134_3-1 Q0 MARCO_53_1516283572-1 1 0.345808 hybrid +134_3-1 Q0 MARCO_53_1515731808-1 2 0.138440 hybrid +134_3-1 Q0 MARCO_11_753802296-9 3 0.122399 hybrid +134_3-1 Q0 MARCO_24_1011881229-6 4 0.071671 hybrid +134_3-1 Q0 MARCO_35_809589077-4 5 -0.010525 hybrid +134_3-1 Q0 MARCO_26_503669016-8 6 -0.017906 hybrid +134_3-1 Q0 MARCO_19_2499609270-6 7 -0.044531 hybrid +134_3-1 Q0 MARCO_41_1844228176-80 8 -0.059048 hybrid +134_3-1 Q0 MARCO_28_650117525-5 9 -0.068774 hybrid +134_3-1 Q0 MARCO_36_897237880-5 10 -0.078786 hybrid +134_3-1 Q0 MARCO_41_1844228176-90 11 -0.081760 hybrid +134_3-1 Q0 MARCO_36_955877321-3 12 -0.084609 hybrid +134_3-1 Q0 MARCO_50_1426285814-16 13 -0.119680 hybrid +134_3-1 Q0 MARCO_14_482895059-4 14 -0.120062 hybrid +134_3-1 Q0 MARCO_20_696250341-8 15 -0.123637 hybrid +134_3-1 Q0 MARCO_53_1508745718-2 16 -0.126733 hybrid +134_3-1 Q0 MARCO_28_396743788-2 17 -0.131139 hybrid +134_3-1 Q0 MARCO_54_173805246-2 18 -0.138506 hybrid +134_3-1 Q0 MARCO_53_1516283572-6 19 -0.149707 hybrid +134_3-1 Q0 MARCO_36_888475839-7 20 -0.163568 hybrid +134_3-1 Q0 MARCO_14_1778625662-11 21 -0.177965 hybrid +134_3-1 Q0 MARCO_53_1516283572-2 22 -0.190271 hybrid +134_3-1 Q0 MARCO_41_1844228176-110 23 -0.199086 hybrid +134_3-1 Q0 MARCO_48_372143159-6 24 -0.213363 hybrid +134_3-1 Q0 MARCO_36_893872123-3 25 -0.215300 hybrid +134_3-1 Q0 MARCO_53_1527636898-4 26 -0.215781 hybrid +134_3-1 Q0 MARCO_55_858822557-6 27 -0.217354 hybrid +134_3-1 Q0 MARCO_55_856823106-6 28 -0.218528 hybrid +134_3-1 Q0 MARCO_41_1844228176-148 29 -0.228023 hybrid +134_3-1 Q0 MARCO_41_1844228176-58 30 -0.229309 hybrid +134_3-1 Q0 MARCO_36_891097770-2 31 -0.235247 hybrid +134_3-1 Q0 MARCO_53_1516283572-4 32 -0.242859 hybrid +134_3-1 Q0 MARCO_43_1525559438-4 33 -0.249998 hybrid +134_3-1 Q0 MARCO_36_994407273-17 34 -0.250698 hybrid +134_3-1 Q0 MARCO_36_946036367-6 35 -0.255499 hybrid +134_3-1 Q0 MARCO_32_436194150-2 36 -0.256017 hybrid +134_3-1 Q0 MARCO_26_503360971-6 37 -0.258940 hybrid +134_3-1 Q0 MARCO_46_8407155-23 38 -0.264994 hybrid +134_3-1 Q0 MARCO_26_503669016-10 39 -0.269961 hybrid +134_3-1 Q0 MARCO_44_609597381-1 40 -0.270613 hybrid +134_3-1 Q0 MARCO_46_383106750-2 41 -0.270654 hybrid +134_3-1 Q0 MARCO_04_62603617-3 42 -0.272938 hybrid +134_3-1 Q0 MARCO_43_1527456020-2 43 -0.281409 hybrid +134_3-1 Q0 MARCO_41_2176909094-4 44 -0.283752 hybrid +134_3-1 Q0 MARCO_55_855892818-2 45 -0.284075 hybrid +134_3-1 Q0 MARCO_46_9276239-5 46 -0.284857 hybrid +134_3-1 Q0 MARCO_41_1844228176-75 47 -0.286733 hybrid +134_3-1 Q0 MARCO_41_1844228176-16 48 -0.289969 hybrid +134_3-1 Q0 MARCO_20_696573438-12 49 -0.295619 hybrid +134_3-1 Q0 MARCO_20_696604540-13 50 -0.295619 hybrid +134_3-1 Q0 MARCO_20_696589491-12 51 -0.295619 hybrid +134_3-1 Q0 MARCO_24_1139051671-7 52 -0.304619 hybrid +134_3-1 Q0 MARCO_40_559238751-10 53 -0.305793 hybrid +134_3-1 Q0 MARCO_28_650117525-8 54 -0.306857 hybrid +134_3-1 Q0 MARCO_53_1527636898-5 55 -0.307463 hybrid +134_3-1 Q0 MARCO_43_1526422030-1 56 -0.309184 hybrid +134_3-1 Q0 MARCO_45_141802555-3 57 -0.309956 hybrid +134_3-1 Q0 MARCO_10_75748456-32 58 -0.312194 hybrid +134_3-1 Q0 MARCO_10_75823671-1 59 -0.314603 hybrid +134_3-1 Q0 MARCO_20_696632913-3 60 -0.314701 hybrid +134_3-1 Q0 MARCO_20_696641716-4 61 -0.314701 hybrid +134_3-1 Q0 MARCO_45_140269524-8 62 -0.315843 hybrid +134_3-1 Q0 MARCO_36_888936245-24 63 -0.319017 hybrid +134_3-1 Q0 MARCO_01_1032438614-4 64 -0.319903 hybrid +134_3-1 Q0 MARCO_20_696691054-4 65 -0.319903 hybrid +134_3-1 Q0 MARCO_20_696667996-4 66 -0.319903 hybrid +134_3-1 Q0 MARCO_45_140503020-3 67 -0.325874 hybrid +134_3-1 Q0 MARCO_10_103102989-16 68 -0.334268 hybrid +134_3-1 Q0 MARCO_36_895125526-18 69 -0.334453 hybrid +134_3-1 Q0 MARCO_41_2177438830-8 70 -0.335678 hybrid +134_3-1 Q0 MARCO_53_1320167529-13 71 -0.337741 hybrid +134_3-1 Q0 MARCO_35_809216061-6 72 -0.337797 hybrid +134_3-1 Q0 MARCO_23_693877969-7 73 -0.340941 hybrid +134_3-1 Q0 MARCO_41_1844228176-83 74 -0.342223 hybrid +134_3-1 Q0 MARCO_55_851572728-6 75 -0.343772 hybrid +134_3-1 Q0 MARCO_29_829755058-1 76 -0.344953 hybrid +134_3-1 Q0 MARCO_05_1701117175-3 77 -0.348036 hybrid +134_3-1 Q0 MARCO_41_1844228176-14 78 -0.349682 hybrid +134_3-1 Q0 MARCO_33_50942814-1 79 -0.351512 hybrid +134_3-1 Q0 MARCO_36_900251720-3 80 -0.353414 hybrid +134_3-1 Q0 MARCO_45_1019718891-3 81 -0.355403 hybrid +134_3-1 Q0 MARCO_20_696374747-5 82 -0.357443 hybrid +134_3-1 Q0 MARCO_20_696359076-7 83 -0.357443 hybrid +134_3-1 Q0 MARCO_20_696389192-5 84 -0.357443 hybrid +134_3-1 Q0 MARCO_59_950531589-10 85 -0.358281 hybrid +134_3-1 Q0 MARCO_15_1649018272-3 86 -0.361625 hybrid +134_3-1 Q0 MARCO_53_1287779363-1 87 -0.361800 hybrid +134_3-1 Q0 MARCO_41_1844228176-76 88 -0.361924 hybrid +134_3-1 Q0 MARCO_49_1370575421-26 89 -0.366775 hybrid +134_3-1 Q0 MARCO_43_1521300793-4 90 -0.367381 hybrid +134_3-1 Q0 MARCO_28_649706364-5 91 -0.367404 hybrid +134_3-1 Q0 MARCO_46_8407155-24 92 -0.369398 hybrid +134_3-1 Q0 MARCO_45_140503020-2 93 -0.369671 hybrid +134_3-1 Q0 MARCO_46_126828214-4 94 -0.371419 hybrid +134_3-1 Q0 MARCO_50_1447501450-2 95 -0.372598 hybrid +134_3-1 Q0 MARCO_50_1421797340-27 96 -0.372695 hybrid +134_3-1 Q0 MARCO_32_1254395771-13 97 -0.373090 hybrid +134_3-1 Q0 MARCO_24_1010552548-2 98 -0.374814 hybrid +134_3-1 Q0 MARCO_45_1019718891-26 99 -0.378046 hybrid +134_3-1 Q0 MARCO_25_571895886-1 100 -0.378321 hybrid +134_3-3 Q0 MARCO_41_1844228176-76 1 0.581521 hybrid +134_3-3 Q0 MARCO_41_1844228176-30 2 0.150170 hybrid +134_3-3 Q0 MARCO_20_696573438-12 3 0.091274 hybrid +134_3-3 Q0 MARCO_20_696604540-13 4 0.091274 hybrid +134_3-3 Q0 MARCO_20_696589491-12 5 0.091274 hybrid +134_3-3 Q0 MARCO_55_853878381-30 6 0.081850 hybrid +134_3-3 Q0 MARCO_41_1844228176-16 7 0.071896 hybrid +134_3-3 Q0 MARCO_36_955877321-3 8 0.052721 hybrid +134_3-3 Q0 MARCO_36_897237880-5 9 0.049506 hybrid +134_3-3 Q0 MARCO_17_2384950019-18 10 0.021307 hybrid +134_3-3 Q0 KILT_12629600-10 11 -0.016113 hybrid +134_3-3 Q0 MARCO_36_889469913-8 12 -0.026699 hybrid +134_3-3 Q0 MARCO_43_766448308-7 13 -0.057864 hybrid +134_3-3 Q0 MARCO_41_1844228176-80 14 -0.060432 hybrid +134_3-3 Q0 MARCO_41_1844228176-45 15 -0.062986 hybrid +134_3-3 Q0 MARCO_36_900453075-2 16 -0.079916 hybrid +134_3-3 Q0 MARCO_41_1844228176-90 17 -0.084394 hybrid +134_3-3 Q0 MARCO_41_1844228176-81 18 -0.086892 hybrid +134_3-3 Q0 MARCO_36_895648080-4 19 -0.100033 hybrid +134_3-3 Q0 MARCO_41_1844228176-52 20 -0.107770 hybrid +134_3-3 Q0 MARCO_36_994407273-17 21 -0.132986 hybrid +134_3-3 Q0 MARCO_41_1844228176-29 22 -0.135907 hybrid +134_3-3 Q0 MARCO_26_503669016-8 23 -0.138180 hybrid +134_3-3 Q0 MARCO_41_1844228176-116 24 -0.161236 hybrid +134_3-3 Q0 MARCO_10_75823671-1 25 -0.162262 hybrid +134_3-3 Q0 MARCO_24_1011881229-6 26 -0.166097 hybrid +134_3-3 Q0 MARCO_41_2177166206-4 27 -0.167355 hybrid +134_3-3 Q0 MARCO_55_857028005-4 28 -0.174348 hybrid +134_3-3 Q0 MARCO_40_559238751-10 29 -0.180868 hybrid +134_3-3 Q0 MARCO_41_1844228176-10 30 -0.184088 hybrid +134_3-3 Q0 MARCO_58_1007810614-6 31 -0.187872 hybrid +134_3-3 Q0 MARCO_01_1033106565-8 32 -0.187962 hybrid +134_3-3 Q0 MARCO_29_969406541-7 33 -0.188284 hybrid +134_3-3 Q0 MARCO_41_2176883837-4 34 -0.190636 hybrid +134_3-3 Q0 MARCO_41_1844228176-106 35 -0.190737 hybrid +134_3-3 Q0 MARCO_41_1844228176-110 36 -0.191758 hybrid +134_3-3 Q0 MARCO_45_139958685-4 37 -0.196486 hybrid +134_3-3 Q0 MARCO_20_696250341-8 38 -0.199857 hybrid +134_3-3 Q0 MARCO_45_1035006416-7 39 -0.217210 hybrid +134_3-3 Q0 MARCO_01_943859152-2 40 -0.217667 hybrid +134_3-3 Q0 MARCO_41_2177466346-1 41 -0.218643 hybrid +134_3-3 Q0 MARCO_41_1844228176-142 42 -0.224711 hybrid +134_3-3 Q0 MARCO_41_1844228176-37 43 -0.225196 hybrid +134_3-3 Q0 MARCO_50_1447501450-2 44 -0.230210 hybrid +134_3-3 Q0 MARCO_45_1021573417-8 45 -0.231197 hybrid +134_3-3 Q0 MARCO_19_2499609270-6 46 -0.233137 hybrid +134_3-3 Q0 MARCO_21_1206598467-2 47 -0.233921 hybrid +134_3-3 Q0 MARCO_20_697575922-5 48 -0.236735 hybrid +134_3-3 Q0 MARCO_41_1844228176-51 49 -0.237621 hybrid +134_3-3 Q0 MARCO_05_452872743-4 50 -0.239115 hybrid +134_3-3 Q0 MARCO_05_485701958-3 51 -0.247372 hybrid +134_3-3 Q0 MARCO_49_593352354-1 52 -0.250000 hybrid +134_3-3 Q0 MARCO_26_503360971-6 53 -0.257540 hybrid +134_3-3 Q0 MARCO_36_932740181-4 54 -0.264947 hybrid +134_3-3 Q0 MARCO_36_1430665354-3 55 -0.270636 hybrid +134_3-3 Q0 MARCO_41_2177438830-3 56 -0.270862 hybrid +134_3-3 Q0 MARCO_41_1844228176-58 57 -0.274330 hybrid +134_3-3 Q0 MARCO_52_820712028-2 58 -0.275035 hybrid +134_3-3 Q0 MARCO_55_849682161-4 59 -0.276834 hybrid +134_3-3 Q0 MARCO_41_1844228176-9 60 -0.280015 hybrid +134_3-3 Q0 MARCO_14_482895059-4 61 -0.280105 hybrid +134_3-3 Q0 MARCO_46_8793828-22 62 -0.280675 hybrid +134_3-3 Q0 MARCO_36_111462192-15 63 -0.282110 hybrid +134_3-3 Q0 MARCO_00_624816590-2 64 -0.282468 hybrid +134_3-3 Q0 MARCO_40_1376965248-1 65 -0.282479 hybrid +134_3-3 Q0 MARCO_41_1844228176-28 66 -0.288114 hybrid +134_3-3 Q0 MARCO_58_1007810614-5 67 -0.293178 hybrid +134_3-3 Q0 MARCO_29_831752572-3 68 -0.295773 hybrid +134_3-3 Q0 MARCO_45_140007453-13 69 -0.297222 hybrid +134_3-3 Q0 MARCO_06_1903074913-4 70 -0.297459 hybrid +134_3-3 Q0 MARCO_36_891018356-4 71 -0.300109 hybrid +134_3-3 Q0 MARCO_28_650117525-8 72 -0.302416 hybrid +134_3-3 Q0 MARCO_14_1778625662-11 73 -0.304666 hybrid +134_3-3 Q0 MARCO_43_766226005-2 74 -0.305738 hybrid +134_3-3 Q0 MARCO_51_117793086-4 75 -0.307813 hybrid +134_3-3 Q0 MARCO_46_9276239-5 76 -0.309094 hybrid +134_3-3 Q0 MARCO_41_2179085404-4 77 -0.310740 hybrid +134_3-3 Q0 MARCO_28_1146135173-1 78 -0.310972 hybrid +134_3-3 Q0 MARCO_45_1025014902-7 79 -0.311654 hybrid +134_3-3 Q0 MARCO_10_1605638999-9 80 -0.318494 hybrid +134_3-3 Q0 MARCO_38_1375713442-3 81 -0.319956 hybrid +134_3-3 Q0 MARCO_53_1287791133-2 82 -0.322750 hybrid +134_3-3 Q0 MARCO_42_326139906-12 83 -0.322804 hybrid +134_3-3 Q0 MARCO_16_1133103028-5 84 -0.324698 hybrid +134_3-3 Q0 MARCO_40_841479864-6 85 -0.330068 hybrid +134_3-3 Q0 MARCO_24_2725073-4 86 -0.331608 hybrid +134_3-3 Q0 MARCO_41_1844228176-132 87 -0.331681 hybrid +134_3-3 Q0 MARCO_41_1844228176-32 88 -0.337432 hybrid +134_3-3 Q0 MARCO_53_1515731808-1 89 -0.338584 hybrid +134_3-3 Q0 MARCO_41_1844228176-69 90 -0.340868 hybrid +134_3-3 Q0 MARCO_41_1844228176-72 91 -0.344365 hybrid +134_3-3 Q0 MARCO_41_1844228176-17 92 -0.347399 hybrid +134_3-3 Q0 MARCO_41_1844228176-83 93 -0.353022 hybrid +134_3-3 Q0 MARCO_42_326139906-14 94 -0.357178 hybrid +134_3-3 Q0 MARCO_19_152077095-9 95 -0.357883 hybrid +134_3-3 Q0 MARCO_36_888936245-20 96 -0.358989 hybrid +134_3-3 Q0 MARCO_41_1844228176-113 97 -0.359180 hybrid +134_3-3 Q0 MARCO_00_588919797-13 98 -0.360809 hybrid +134_3-3 Q0 MARCO_41_1170292318-26 99 -0.360929 hybrid +134_3-3 Q0 MARCO_46_7779561-9 100 -0.362430 hybrid +134_3-5 Q0 MARCO_28_342834928-2 1 0.460265 hybrid +134_3-5 Q0 MARCO_32_372752547-3 2 0.250003 hybrid +134_3-5 Q0 MARCO_45_140269524-8 3 0.190608 hybrid +134_3-5 Q0 MARCO_10_802021811-1 4 0.189847 hybrid +134_3-5 Q0 MARCO_05_1701117175-3 5 0.174915 hybrid +134_3-5 Q0 MARCO_23_694183356-18 6 0.143100 hybrid +134_3-5 Q0 MARCO_53_1529987863-2 7 0.128770 hybrid +134_3-5 Q0 KILT_7842528-4 8 0.114918 hybrid +134_3-5 Q0 MARCO_28_655583201-4 9 0.099904 hybrid +134_3-5 Q0 MARCO_48_372143159-8 10 0.099073 hybrid +134_3-5 Q0 MARCO_35_809268425-18 11 0.092727 hybrid +134_3-5 Q0 MARCO_19_478710235-16 12 0.068791 hybrid +134_3-5 Q0 MARCO_05_452627767-1 13 0.068083 hybrid +134_3-5 Q0 MARCO_19_2499609270-6 14 0.043882 hybrid +134_3-5 Q0 MARCO_26_503669016-15 15 0.028862 hybrid +134_3-5 Q0 MARCO_19_2499609270-5 16 0.023649 hybrid +134_3-5 Q0 MARCO_06_1902727127-2 17 0.019509 hybrid +134_3-5 Q0 MARCO_22_1606826381-4 18 0.013712 hybrid +134_3-5 Q0 MARCO_46_776511116-7 19 0.004849 hybrid +134_3-5 Q0 MARCO_07_1251994066-3 20 -0.001396 hybrid +134_3-5 Q0 MARCO_28_342834928-1 21 -0.002842 hybrid +134_3-5 Q0 MARCO_25_1141294561-1 22 -0.007299 hybrid +134_3-5 Q0 MARCO_22_1492816937-5 23 -0.009257 hybrid +134_3-5 Q0 MARCO_45_1028844881-3 24 -0.013739 hybrid +134_3-5 Q0 MARCO_50_526651767-6 25 -0.016811 hybrid +134_3-5 Q0 MARCO_00_624415512-3 26 -0.017548 hybrid +134_3-5 Q0 MARCO_49_225090692-4 27 -0.022514 hybrid +134_3-5 Q0 MARCO_45_1028844881-1 28 -0.030233 hybrid +134_3-5 Q0 MARCO_33_354489076-7 29 -0.032226 hybrid +134_3-5 Q0 MARCO_53_1330928078-2 30 -0.039745 hybrid +134_3-5 Q0 MARCO_28_655310264-3 31 -0.052984 hybrid +134_3-5 Q0 MARCO_05_453313072-8 32 -0.069148 hybrid +134_3-5 Q0 MARCO_45_847153758-9 33 -0.070770 hybrid +134_3-5 Q0 MARCO_50_696797049-3 34 -0.081007 hybrid +134_3-5 Q0 MARCO_23_693877969-8 35 -0.087228 hybrid +134_3-5 Q0 MARCO_12_1144067591-6 36 -0.088655 hybrid +134_3-5 Q0 MARCO_45_847153758-12 37 -0.089416 hybrid +134_3-5 Q0 MARCO_50_1454753708-14 38 -0.092382 hybrid +134_3-5 Q0 MARCO_25_1141294561-2 39 -0.097560 hybrid +134_3-5 Q0 MARCO_44_1928230096-1 40 -0.098185 hybrid +134_3-5 Q0 MARCO_17_2386805231-2 41 -0.100898 hybrid +134_3-5 Q0 MARCO_14_37386655-1 42 -0.104303 hybrid +134_3-5 Q0 MARCO_36_897203131-1 43 -0.104719 hybrid +134_3-5 Q0 MARCO_36_897237880-5 44 -0.104943 hybrid +134_3-5 Q0 MARCO_36_955877321-3 45 -0.107149 hybrid +134_3-5 Q0 MARCO_40_1191133240-4 46 -0.111135 hybrid +134_3-5 Q0 MARCO_26_503360971-6 47 -0.119822 hybrid +134_3-5 Q0 MARCO_45_847153758-11 48 -0.123401 hybrid +134_3-5 Q0 KILT_19644137-1 49 -0.136634 hybrid +134_3-5 Q0 MARCO_14_37550700-11 50 -0.140686 hybrid +134_3-5 Q0 MARCO_26_503669016-8 51 -0.140862 hybrid +134_3-5 Q0 MARCO_10_75823671-19 52 -0.148016 hybrid +134_3-5 Q0 MARCO_45_1033982964-3 53 -0.150799 hybrid +134_3-5 Q0 MARCO_35_809670314-1 54 -0.154603 hybrid +134_3-5 Q0 MARCO_28_1321427814-5 55 -0.155358 hybrid +134_3-5 Q0 MARCO_50_1407085410-15 56 -0.157840 hybrid +134_3-5 Q0 MARCO_28_396743788-2 57 -0.158548 hybrid +134_3-5 Q0 MARCO_53_1516283572-6 58 -0.159008 hybrid +134_3-5 Q0 MARCO_14_1778194735-25 59 -0.159273 hybrid +134_3-5 Q0 MARCO_50_1407085410-14 60 -0.167116 hybrid +134_3-5 Q0 MARCO_49_795812139-2 61 -0.172282 hybrid +134_3-5 Q0 MARCO_48_761675089-1 62 -0.175956 hybrid +134_3-5 Q0 MARCO_28_342886080-4 63 -0.176292 hybrid +134_3-5 Q0 MARCO_42_324695763-24 64 -0.180208 hybrid +134_3-5 Q0 MARCO_45_847153758-10 65 -0.181576 hybrid +134_3-5 Q0 MARCO_36_888475839-7 66 -0.184790 hybrid +134_3-5 Q0 MARCO_46_526643564-7 67 -0.193187 hybrid +134_3-5 Q0 MARCO_35_315397537-7 68 -0.194750 hybrid +134_3-5 Q0 MARCO_10_802021811-2 69 -0.194968 hybrid +134_3-5 Q0 MARCO_55_857221820-11 70 -0.201337 hybrid +134_3-5 Q0 MARCO_28_528530551-3 71 -0.206420 hybrid +134_3-5 Q0 MARCO_20_626296806-2 72 -0.212329 hybrid +134_3-5 Q0 MARCO_41_1844228176-16 73 -0.213190 hybrid +134_3-5 Q0 MARCO_41_1389405756-10 74 -0.216009 hybrid +134_3-5 Q0 MARCO_20_696250341-8 75 -0.217572 hybrid +134_3-5 Q0 MARCO_05_484037309-2 76 -0.218480 hybrid +134_3-5 Q0 MARCO_39_1565309992-15 77 -0.218604 hybrid +134_3-5 Q0 MARCO_50_1617597860-5 78 -0.220833 hybrid +134_3-5 Q0 MARCO_17_2379760981-10 79 -0.221399 hybrid +134_3-5 Q0 MARCO_50_1511237017-26 80 -0.221517 hybrid +134_3-5 Q0 MARCO_30_1128637179-1 81 -0.224247 hybrid +134_3-5 Q0 MARCO_19_2499609270-4 82 -0.224424 hybrid +134_3-5 Q0 MARCO_46_526643564-6 83 -0.225309 hybrid +134_3-5 Q0 MARCO_45_140269524-9 84 -0.231713 hybrid +134_3-5 Q0 MARCO_55_765805199-12 85 -0.236095 hybrid +134_3-5 Q0 MARCO_28_342886080-5 86 -0.238341 hybrid +134_3-5 Q0 MARCO_06_1902246853-2 87 -0.245501 hybrid +134_3-5 Q0 MARCO_58_920132313-2 88 -0.249997 hybrid +134_3-5 Q0 MARCO_45_847153758-7 89 -0.250372 hybrid +134_3-5 Q0 MARCO_35_809268425-2 90 -0.250896 hybrid +134_3-5 Q0 MARCO_52_821634475-1 91 -0.251462 hybrid +134_3-5 Q0 KILT_19644137-9 92 -0.252907 hybrid +134_3-5 Q0 MARCO_48_372143159-4 93 -0.254057 hybrid +134_3-5 Q0 MARCO_39_1567488621-16 94 -0.254393 hybrid +134_3-5 Q0 MARCO_29_858098854-4 95 -0.255107 hybrid +134_3-5 Q0 MARCO_22_247894220-8 96 -0.257855 hybrid +134_3-5 Q0 MARCO_48_372143159-7 97 -0.259435 hybrid +134_3-5 Q0 MARCO_53_1516373047-2 98 -0.260172 hybrid +134_3-5 Q0 MARCO_53_1513031902-2 99 -0.260296 hybrid +134_3-5 Q0 KILT_19644137-8 100 -0.262260 hybrid +134_4-2 Q0 MARCO_50_526620685-3 1 0.249998 hybrid +134_4-2 Q0 MARCO_37_1257839615-21 2 0.040701 hybrid +134_4-2 Q0 MARCO_12_146558722-138 3 -0.069830 hybrid +134_4-2 Q0 MARCO_50_1619751682-31 4 -0.158681 hybrid +134_4-2 Q0 MARCO_37_1250554887-3 5 -0.162505 hybrid +134_4-2 Q0 MARCO_35_423556126-15 6 -0.185220 hybrid +134_4-2 Q0 MARCO_35_423466944-12 7 -0.185220 hybrid +134_4-2 Q0 MARCO_37_1259157473-3 8 -0.224038 hybrid +134_4-2 Q0 MARCO_59_890373394-2 9 -0.229828 hybrid +134_4-2 Q0 MARCO_50_495632349-10 10 -0.235853 hybrid +134_4-2 Q0 MARCO_50_518336839-7 11 -0.242236 hybrid +134_4-2 Q0 MARCO_37_1255807333-2 12 -0.243454 hybrid +134_4-2 Q0 MARCO_39_1370292640-9 13 -0.249008 hybrid +134_4-2 Q0 MARCO_27_1772437210-2 14 -0.250002 hybrid +134_4-2 Q0 MARCO_14_481847784-7 15 -0.251591 hybrid +134_4-2 Q0 MARCO_53_360364865-6 16 -0.268656 hybrid +134_4-2 Q0 MARCO_37_1257347277-2 17 -0.275948 hybrid +134_4-2 Q0 MARCO_35_984735588-3 18 -0.280674 hybrid +134_4-2 Q0 MARCO_35_423875818-18 19 -0.282161 hybrid +134_4-2 Q0 MARCO_36_566978935-4 20 -0.283986 hybrid +134_4-2 Q0 MARCO_13_329915358-10 21 -0.287060 hybrid +134_4-2 Q0 MARCO_04_1212117439-3 22 -0.288110 hybrid +134_4-2 Q0 MARCO_34_1590894249-3 23 -0.294083 hybrid +134_4-2 Q0 MARCO_23_1728855958-8 24 -0.297521 hybrid +134_4-2 Q0 MARCO_45_977129581-6 25 -0.313264 hybrid +134_4-2 Q0 MARCO_51_740155734-2 26 -0.316695 hybrid +134_4-2 Q0 MARCO_37_1249816047-10 27 -0.320996 hybrid +134_4-2 Q0 MARCO_55_274882838-10 28 -0.323979 hybrid +134_4-2 Q0 MARCO_55_274925457-11 29 -0.323979 hybrid +134_4-2 Q0 MARCO_50_1400482672-16 30 -0.325855 hybrid +134_4-2 Q0 MARCO_13_330127940-3 31 -0.326188 hybrid +134_4-2 Q0 MARCO_53_650915793-10 32 -0.326656 hybrid +134_4-2 Q0 MARCO_03_944003118-2 33 -0.341604 hybrid +134_4-2 Q0 MARCO_50_2532213439-11 34 -0.341877 hybrid +134_4-2 Q0 MARCO_20_1107663447-1 35 -0.350653 hybrid +134_4-2 Q0 MARCO_13_848901775-2 36 -0.352663 hybrid +134_4-2 Q0 MARCO_37_1667887012-20 37 -0.356942 hybrid +134_4-2 Q0 MARCO_37_1257556464-10 38 -0.358388 hybrid +134_4-2 Q0 MARCO_11_116535980-46 39 -0.362316 hybrid +134_4-2 Q0 MARCO_37_1252493819-16 40 -0.367346 hybrid +134_4-2 Q0 MARCO_13_229403072-1 41 -0.368764 hybrid +134_4-2 Q0 MARCO_59_883652403-3 42 -0.369219 hybrid +134_4-2 Q0 MARCO_43_1625245214-4 43 -0.373375 hybrid +134_4-2 Q0 MARCO_33_538241031-16 44 -0.378240 hybrid +134_4-2 Q0 MARCO_50_1619751682-37 45 -0.380071 hybrid +134_4-2 Q0 MARCO_08_234567919-3 46 -0.381691 hybrid +134_4-2 Q0 MARCO_13_329674649-22 47 -0.387908 hybrid +134_4-2 Q0 MARCO_42_1102232941-13 48 -0.394077 hybrid +134_4-2 Q0 MARCO_42_258255574-1 49 -0.395337 hybrid +134_4-2 Q0 MARCO_41_2073818106-6 50 -0.396989 hybrid +134_4-2 Q0 MARCO_37_1248147116-6 51 -0.398396 hybrid +134_4-2 Q0 MARCO_48_822925434-3 52 -0.400340 hybrid +134_4-2 Q0 MARCO_42_1102370790-12 53 -0.403046 hybrid +134_4-2 Q0 MARCO_37_1251985644-10 54 -0.403346 hybrid +134_4-2 Q0 MARCO_37_1256573234-9 55 -0.406315 hybrid +134_4-2 Q0 MARCO_33_1316748866-5 56 -0.407365 hybrid +134_4-2 Q0 MARCO_53_781749984-5 57 -0.407982 hybrid +134_4-2 Q0 MARCO_13_1351649531-4 58 -0.410676 hybrid +134_4-2 Q0 MARCO_06_1364440334-2 59 -0.413920 hybrid +134_4-2 Q0 MARCO_41_1818984171-4 60 -0.414541 hybrid +134_4-2 Q0 MARCO_09_1023389557-2 61 -0.414545 hybrid +134_4-2 Q0 MARCO_37_1251355289-7 62 -0.415760 hybrid +134_4-2 Q0 MARCO_12_1229287267-18 63 -0.416186 hybrid +134_4-2 Q0 MARCO_37_1255807333-3 64 -0.418015 hybrid +134_4-2 Q0 MARCO_37_1255424093-2 65 -0.419805 hybrid +134_4-2 Q0 MARCO_50_1673934407-53 66 -0.420913 hybrid +134_4-2 Q0 MARCO_41_920444684-4 67 -0.422009 hybrid +134_4-2 Q0 MARCO_37_1252031931-8 68 -0.422482 hybrid +134_4-2 Q0 MARCO_27_115618266-4 69 -0.422556 hybrid +134_4-2 Q0 MARCO_37_1256074640-15 70 -0.423268 hybrid +134_4-2 Q0 MARCO_54_42936764-2 71 -0.423318 hybrid +134_4-2 Q0 MARCO_37_1256703840-2 72 -0.423384 hybrid +134_4-2 Q0 MARCO_41_995365685-10 73 -0.423553 hybrid +134_4-2 Q0 MARCO_37_1251779093-9 74 -0.424235 hybrid +134_4-2 Q0 MARCO_45_978056140-15 75 -0.425444 hybrid +134_4-2 Q0 MARCO_45_976945832-18 76 -0.425444 hybrid +134_4-2 Q0 MARCO_37_1253965233-2 77 -0.426061 hybrid +134_4-2 Q0 MARCO_00_334916364-3 78 -0.426111 hybrid +134_4-2 Q0 MARCO_05_880477775-21 79 -0.426796 hybrid +134_4-2 Q0 MARCO_29_998566824-2 80 -0.426874 hybrid +134_4-2 Q0 MARCO_20_1578300026-2 81 -0.428778 hybrid +134_4-2 Q0 MARCO_37_1254840991-6 82 -0.429153 hybrid +134_4-2 Q0 MARCO_55_274946337-15 83 -0.429825 hybrid +134_4-2 Q0 MARCO_50_1400295147-10 84 -0.430592 hybrid +134_4-2 Q0 MARCO_15_615368190-7 85 -0.433143 hybrid +134_4-2 Q0 MARCO_58_1048601450-2 86 -0.435394 hybrid +134_4-2 Q0 MARCO_51_967618316-7 87 -0.437094 hybrid +134_4-2 Q0 MARCO_56_507761242-9 88 -0.437249 hybrid +134_4-2 Q0 MARCO_37_832879573-5 89 -0.437487 hybrid +134_4-2 Q0 MARCO_19_2339421928-3 90 -0.438266 hybrid +134_4-2 Q0 MARCO_24_650939427-5 91 -0.438696 hybrid +134_4-2 Q0 MARCO_21_247798810-7 92 -0.438775 hybrid +134_4-2 Q0 MARCO_37_1250629869-12 93 -0.439244 hybrid +134_4-2 Q0 MARCO_55_274902286-14 94 -0.441001 hybrid +134_4-2 Q0 MARCO_55_275003922-18 95 -0.441002 hybrid +134_4-2 Q0 MARCO_23_475487155-4 96 -0.441646 hybrid +134_4-2 Q0 MARCO_20_1376789066-11 97 -0.443224 hybrid +134_4-2 Q0 MARCO_37_1255821693-13 98 -0.444945 hybrid +134_4-2 Q0 MARCO_31_881347238-4 99 -0.444949 hybrid +134_4-2 Q0 MARCO_42_257859314-7 100 -0.445261 hybrid +134_4-4 Q0 MARCO_41_1845354456-6 1 0.250000 hybrid +134_4-4 Q0 MARCO_22_1648495958-1 2 0.153708 hybrid +134_4-4 Q0 MARCO_22_1648495958-21 3 0.141806 hybrid +134_4-4 Q0 MARCO_24_2762318-2 4 0.085048 hybrid +134_4-4 Q0 MARCO_45_1021789810-8 5 0.051654 hybrid +134_4-4 Q0 MARCO_50_1419718645-58 6 0.001771 hybrid +134_4-4 Q0 MARCO_00_1611211087-8 7 -0.065314 hybrid +134_4-4 Q0 MARCO_44_622079827-2 8 -0.104482 hybrid +134_4-4 Q0 MARCO_36_897767456-3 9 -0.127152 hybrid +134_4-4 Q0 MARCO_55_681195067-7 10 -0.149956 hybrid +134_4-4 Q0 MARCO_21_407171165-1 11 -0.160079 hybrid +134_4-4 Q0 MARCO_20_694886831-2 12 -0.174642 hybrid +134_4-4 Q0 MARCO_50_1458441868-16 13 -0.176738 hybrid +134_4-4 Q0 MARCO_58_1006746288-8 14 -0.177770 hybrid +134_4-4 Q0 MARCO_01_942982864-6 15 -0.179050 hybrid +134_4-4 Q0 MARCO_45_1025014902-8 16 -0.195349 hybrid +134_4-4 Q0 MARCO_58_1007196985-8 17 -0.196312 hybrid +134_4-4 Q0 MARCO_21_407171165-3 18 -0.206391 hybrid +134_4-4 Q0 MARCO_41_327808466-5 19 -0.211380 hybrid +134_4-4 Q0 MARCO_40_172045261-1 20 -0.212568 hybrid +134_4-4 Q0 MARCO_30_742545702-1 21 -0.217046 hybrid +134_4-4 Q0 MARCO_50_694256853-4 22 -0.218702 hybrid +134_4-4 Q0 MARCO_55_681360829-4 23 -0.222801 hybrid +134_4-4 Q0 MARCO_22_1648495958-20 24 -0.224486 hybrid +134_4-4 Q0 MARCO_58_1008143388-7 25 -0.235130 hybrid +134_4-4 Q0 MARCO_41_331055548-10 26 -0.239082 hybrid +134_4-4 Q0 MARCO_22_1648646376-13 27 -0.239958 hybrid +134_4-4 Q0 MARCO_20_1691624100-10 28 -0.241350 hybrid +134_4-4 Q0 MARCO_10_7478787-9 29 -0.242167 hybrid +134_4-4 Q0 MARCO_52_821608683-5 30 -0.247527 hybrid +134_4-4 Q0 MARCO_43_305944578-2 31 -0.250000 hybrid +134_4-4 Q0 MARCO_22_1648730785-10 32 -0.255360 hybrid +134_4-4 Q0 MARCO_13_980831104-15 33 -0.258859 hybrid +134_4-4 Q0 MARCO_43_306056917-1 34 -0.265608 hybrid +134_4-4 Q0 MARCO_10_7449675-15 35 -0.267267 hybrid +134_4-4 Q0 MARCO_06_693854726-3 36 -0.273646 hybrid +134_4-4 Q0 MARCO_22_166006390-16 37 -0.276723 hybrid +134_4-4 Q0 MARCO_05_1513209861-4 38 -0.278616 hybrid +134_4-4 Q0 MARCO_32_1516582370-11 39 -0.280045 hybrid +134_4-4 Q0 MARCO_20_689910917-31 40 -0.283465 hybrid +134_4-4 Q0 MARCO_50_1341313370-48 41 -0.286048 hybrid +134_4-4 Q0 MARCO_58_1008493948-2 42 -0.288125 hybrid +134_4-4 Q0 MARCO_14_482024749-9 43 -0.289184 hybrid +134_4-4 Q0 MARCO_04_394310400-3 44 -0.291377 hybrid +134_4-4 Q0 MARCO_53_78896701-64 45 -0.291829 hybrid +134_4-4 Q0 MARCO_21_404029997-21 46 -0.298302 hybrid +134_4-4 Q0 MARCO_53_79802066-3 47 -0.300828 hybrid +134_4-4 Q0 MARCO_58_1007754642-7 48 -0.302688 hybrid +134_4-4 Q0 MARCO_21_404029997-2 49 -0.303124 hybrid +134_4-4 Q0 MARCO_55_857221820-18 50 -0.306973 hybrid +134_4-4 Q0 MARCO_41_331055548-7 51 -0.308709 hybrid +134_4-4 Q0 MARCO_12_1864007837-13 52 -0.312440 hybrid +134_4-4 Q0 MARCO_55_681109595-7 53 -0.315327 hybrid +134_4-4 Q0 MARCO_52_821634475-2 54 -0.319074 hybrid +134_4-4 Q0 MARCO_24_2762318-3 55 -0.324267 hybrid +134_4-4 Q0 MARCO_34_323617878-11 56 -0.325670 hybrid +134_4-4 Q0 MARCO_13_146675377-2 57 -0.328568 hybrid +134_4-4 Q0 MARCO_41_331055548-17 58 -0.329675 hybrid +134_4-4 Q0 MARCO_45_1021789810-12 59 -0.331514 hybrid +134_4-4 Q0 MARCO_21_404029997-26 60 -0.338970 hybrid +134_4-4 Q0 MARCO_08_1257083081-3 61 -0.339414 hybrid +134_4-4 Q0 MARCO_44_1487773945-5 62 -0.340072 hybrid +134_4-4 Q0 MARCO_36_892815668-2 63 -0.343991 hybrid +134_4-4 Q0 MARCO_41_331055548-8 64 -0.344561 hybrid +134_4-4 Q0 MARCO_22_166006390-12 65 -0.349528 hybrid +134_4-4 Q0 MARCO_50_1213175807-15 66 -0.349674 hybrid +134_4-4 Q0 MARCO_21_408461758-7 67 -0.350824 hybrid +134_4-4 Q0 MARCO_29_480761651-2 68 -0.352239 hybrid +134_4-4 Q0 MARCO_50_1419718645-40 69 -0.354425 hybrid +134_4-4 Q0 MARCO_55_681131262-6 70 -0.355276 hybrid +134_4-4 Q0 MARCO_28_649791011-4 71 -0.355909 hybrid +134_4-4 Q0 MARCO_29_480756274-2 72 -0.357846 hybrid +134_4-4 Q0 MARCO_55_681131262-7 73 -0.363494 hybrid +134_4-4 Q0 MARCO_22_1648646376-3 74 -0.363984 hybrid +134_4-4 Q0 MARCO_28_649615403-4 75 -0.368026 hybrid +134_4-4 Q0 MARCO_58_1007196985-18 76 -0.368768 hybrid +134_4-4 Q0 MARCO_47_974205108-7 77 -0.370284 hybrid +134_4-4 Q0 MARCO_21_404029997-4 78 -0.371601 hybrid +134_4-4 Q0 MARCO_55_848681938-1 79 -0.372182 hybrid +134_4-4 Q0 MARCO_22_1648590299-6 80 -0.372881 hybrid +134_4-4 Q0 MARCO_36_897767456-15 81 -0.374284 hybrid +134_4-4 Q0 MARCO_55_768282423-21 82 -0.377052 hybrid +134_4-4 Q0 MARCO_21_407171165-45 83 -0.377332 hybrid +134_4-4 Q0 MARCO_09_613681301-20 84 -0.377928 hybrid +134_4-4 Q0 MARCO_33_1464368404-2 85 -0.381348 hybrid +134_4-4 Q0 MARCO_41_341393556-3 86 -0.382213 hybrid +134_4-4 Q0 MARCO_41_2116474088-4 87 -0.383659 hybrid +134_4-4 Q0 MARCO_50_2156613647-33 88 -0.387372 hybrid +134_4-4 Q0 MARCO_43_305958405-2 89 -0.387710 hybrid +134_4-4 Q0 MARCO_51_1253211780-10 90 -0.387750 hybrid +134_4-4 Q0 MARCO_34_333179489-11 91 -0.392900 hybrid +134_4-4 Q0 MARCO_45_1021789810-2 92 -0.393099 hybrid +134_4-4 Q0 MARCO_45_1021789810-3 93 -0.395798 hybrid +134_4-4 Q0 MARCO_05_452883380-6 94 -0.397781 hybrid +134_4-4 Q0 MARCO_45_141282123-3 95 -0.399227 hybrid +134_4-4 Q0 MARCO_00_254478811-1 96 -0.399679 hybrid +134_4-4 Q0 MARCO_53_1288967934-2 97 -0.399779 hybrid +134_4-4 Q0 MARCO_53_1514271870-2 98 -0.403501 hybrid +134_4-4 Q0 MARCO_07_586034686-14 99 -0.404173 hybrid +134_4-4 Q0 MARCO_55_681045517-4 100 -0.404953 hybrid +135_1-1 Q0 MARCO_45_977807331-13 1 0.250000 hybrid +135_1-1 Q0 MARCO_32_375198952-1 2 0.224390 hybrid +135_1-1 Q0 MARCO_51_959830917-2 3 0.196020 hybrid +135_1-1 Q0 MARCO_23_488318419-6 4 0.145215 hybrid +135_1-1 Q0 MARCO_50_1174238590-21 5 0.112783 hybrid +135_1-1 Q0 MARCO_37_1253773399-4 6 0.025148 hybrid +135_1-1 Q0 MARCO_56_1517576535-6 7 0.022689 hybrid +135_1-1 Q0 MARCO_45_979733751-14 8 -0.024636 hybrid +135_1-1 Q0 MARCO_51_958889897-7 9 -0.130072 hybrid +135_1-1 Q0 MARCO_51_957925605-7 10 -0.131038 hybrid +135_1-1 Q0 MARCO_23_488318419-5 11 -0.134996 hybrid +135_1-1 Q0 MARCO_32_375198952-2 12 -0.136478 hybrid +135_1-1 Q0 MARCO_05_1512859755-3 13 -0.137223 hybrid +135_1-1 Q0 MARCO_51_958551973-3 14 -0.149868 hybrid +135_1-1 Q0 MARCO_32_373800772-3 15 -0.158899 hybrid +135_1-1 Q0 MARCO_59_940285588-6 16 -0.171535 hybrid +135_1-1 Q0 MARCO_44_842242336-1 17 -0.179302 hybrid +135_1-1 Q0 MARCO_46_1272863577-3 18 -0.187456 hybrid +135_1-1 Q0 MARCO_10_1202153939-25 19 -0.194063 hybrid +135_1-1 Q0 MARCO_28_1759440580-4 20 -0.194946 hybrid +135_1-1 Q0 MARCO_51_959858915-4 21 -0.206200 hybrid +135_1-1 Q0 MARCO_45_980875532-6 22 -0.208050 hybrid +135_1-1 Q0 MARCO_36_1366786807-5 23 -0.224490 hybrid +135_1-1 Q0 MARCO_24_1614602955-2 24 -0.231166 hybrid +135_1-1 Q0 MARCO_51_959656094-2 25 -0.233441 hybrid +135_1-1 Q0 MARCO_51_959737658-6 26 -0.239331 hybrid +135_1-1 Q0 MARCO_07_1048041834-8 27 -0.240128 hybrid +135_1-1 Q0 MARCO_32_375214915-4 28 -0.244989 hybrid +135_1-1 Q0 MARCO_56_1517576535-5 29 -0.245900 hybrid +135_1-1 Q0 MARCO_45_980563328-1 30 -0.246288 hybrid +135_1-1 Q0 MARCO_51_959962110-3 31 -0.247268 hybrid +135_1-1 Q0 MARCO_36_1379121647-13 32 -0.250000 hybrid +135_1-1 Q0 MARCO_45_980886909-9 33 -0.261238 hybrid +135_1-1 Q0 MARCO_31_1564623688-3 34 -0.267722 hybrid +135_1-1 Q0 MARCO_03_1219890737-3 35 -0.271098 hybrid +135_1-1 Q0 MARCO_10_1201883746-38 36 -0.273799 hybrid +135_1-1 Q0 MARCO_28_1759529807-9 37 -0.278024 hybrid +135_1-1 Q0 MARCO_48_376787404-6 38 -0.280008 hybrid +135_1-1 Q0 MARCO_05_1512859755-2 39 -0.282373 hybrid +135_1-1 Q0 MARCO_28_1759272265-4 40 -0.283488 hybrid +135_1-1 Q0 MARCO_51_958286148-6 41 -0.288031 hybrid +135_1-1 Q0 MARCO_46_1271288630-5 42 -0.292512 hybrid +135_1-1 Q0 MARCO_24_1614602955-1 43 -0.293173 hybrid +135_1-1 Q0 MARCO_50_1511565640-19 44 -0.294112 hybrid +135_1-1 Q0 MARCO_20_14325862-3 45 -0.298312 hybrid +135_1-1 Q0 MARCO_50_2143478118-17 46 -0.300410 hybrid +135_1-1 Q0 MARCO_20_14325862-2 47 -0.300615 hybrid +135_1-1 Q0 MARCO_51_957986101-5 48 -0.302173 hybrid +135_1-1 Q0 MARCO_51_959921488-6 49 -0.304992 hybrid +135_1-1 Q0 MARCO_36_1807024500-5 50 -0.308939 hybrid +135_1-1 Q0 MARCO_48_375447022-30 51 -0.309119 hybrid +135_1-1 Q0 MARCO_07_1048041834-15 52 -0.311387 hybrid +135_1-1 Q0 MARCO_50_2143478118-55 53 -0.318268 hybrid +135_1-1 Q0 MARCO_41_1172991073-67 54 -0.320414 hybrid +135_1-1 Q0 MARCO_20_1107682428-3 55 -0.324300 hybrid +135_1-1 Q0 MARCO_50_2144515267-25 56 -0.324947 hybrid +135_1-1 Q0 MARCO_40_1268767274-4 57 -0.335315 hybrid +135_1-1 Q0 MARCO_48_375697229-18 58 -0.343376 hybrid +135_1-1 Q0 MARCO_16_1102501846-16 59 -0.345640 hybrid +135_1-1 Q0 MARCO_45_980563328-7 60 -0.350371 hybrid +135_1-1 Q0 MARCO_58_1589694230-2 61 -0.350627 hybrid +135_1-1 Q0 MARCO_44_842242336-3 62 -0.351330 hybrid +135_1-1 Q0 MARCO_32_375024516-7 63 -0.352697 hybrid +135_1-1 Q0 MARCO_23_488318419-2 64 -0.355405 hybrid +135_1-1 Q0 MARCO_50_2393691806-16 65 -0.358788 hybrid +135_1-1 Q0 MARCO_20_14325862-6 66 -0.360108 hybrid +135_1-1 Q0 MARCO_56_1517576535-3 67 -0.364443 hybrid +135_1-1 Q0 MARCO_50_2143478118-70 68 -0.366444 hybrid +135_1-1 Q0 MARCO_10_1381972189-23 69 -0.367175 hybrid +135_1-1 Q0 MARCO_01_801810438-3 70 -0.370001 hybrid +135_1-1 Q0 MARCO_15_528739144-6 71 -0.370465 hybrid +135_1-1 Q0 MARCO_33_1316748866-5 72 -0.372902 hybrid +135_1-1 Q0 MARCO_47_1312231351-7 73 -0.373675 hybrid +135_1-1 Q0 MARCO_24_1614602955-3 74 -0.374094 hybrid +135_1-1 Q0 MARCO_51_959737658-7 75 -0.374468 hybrid +135_1-1 Q0 MARCO_48_375697229-12 76 -0.376756 hybrid +135_1-1 Q0 MARCO_49_1829174464-6 77 -0.378716 hybrid +135_1-1 Q0 MARCO_36_566978935-4 78 -0.382885 hybrid +135_1-1 Q0 MARCO_41_1818984171-6 79 -0.383069 hybrid +135_1-1 Q0 MARCO_51_959649684-2 80 -0.383862 hybrid +135_1-1 Q0 MARCO_37_1247625131-1 81 -0.387910 hybrid +135_1-1 Q0 MARCO_45_656729460-10 82 -0.389451 hybrid +135_1-1 Q0 MARCO_07_1048041834-14 83 -0.390829 hybrid +135_1-1 Q0 MARCO_09_543732364-10 84 -0.392294 hybrid +135_1-1 Q0 MARCO_31_293610959-10 85 -0.392304 hybrid +135_1-1 Q0 MARCO_45_980563328-6 86 -0.392550 hybrid +135_1-1 Q0 MARCO_10_1141820662-25 87 -0.393281 hybrid +135_1-1 Q0 MARCO_07_1412260826-6 88 -0.393616 hybrid +135_1-1 Q0 MARCO_42_205866048-9 89 -0.393824 hybrid +135_1-1 Q0 MARCO_42_205866048-11 90 -0.393824 hybrid +135_1-1 Q0 MARCO_50_2393691806-20 91 -0.398707 hybrid +135_1-1 Q0 MARCO_42_1051754758-1 92 -0.400282 hybrid +135_1-1 Q0 MARCO_28_1759529807-4 93 -0.400320 hybrid +135_1-1 Q0 MARCO_46_1272992424-1 94 -0.400691 hybrid +135_1-1 Q0 MARCO_50_518336839-7 95 -0.404482 hybrid +135_1-1 Q0 MARCO_24_1457951317-4 96 -0.405144 hybrid +135_1-1 Q0 MARCO_08_18599332-13 97 -0.405976 hybrid +135_1-1 Q0 MARCO_31_903732332-16 98 -0.413808 hybrid +135_1-1 Q0 MARCO_10_444507905-3 99 -0.415324 hybrid +135_1-1 Q0 MARCO_51_958551973-5 100 -0.419521 hybrid +135_1-3 Q0 MARCO_51_957992620-3 1 0.292877 hybrid +135_1-3 Q0 MARCO_22_1579930911-9 2 0.250000 hybrid +135_1-3 Q0 MARCO_25_1422733827-5 3 0.167894 hybrid +135_1-3 Q0 MARCO_40_741967650-6 4 0.165603 hybrid +135_1-3 Q0 MARCO_20_19860105-1 5 0.138289 hybrid +135_1-3 Q0 MARCO_51_959921488-6 6 0.108770 hybrid +135_1-3 Q0 MARCO_59_435012914-1 7 0.104026 hybrid +135_1-3 Q0 MARCO_22_1486281067-6 8 0.080062 hybrid +135_1-3 Q0 MARCO_28_1759580014-2 9 0.064652 hybrid +135_1-3 Q0 MARCO_32_375091295-1 10 0.061484 hybrid +135_1-3 Q0 MARCO_20_20299207-6 11 0.040699 hybrid +135_1-3 Q0 MARCO_48_376091625-9 12 0.028198 hybrid +135_1-3 Q0 MARCO_33_723703063-2 13 0.022834 hybrid +135_1-3 Q0 MARCO_54_557164081-5 14 0.019261 hybrid +135_1-3 Q0 MARCO_54_557173206-16 15 0.019261 hybrid +135_1-3 Q0 MARCO_54_557197480-6 16 0.019261 hybrid +135_1-3 Q0 MARCO_25_521695352-20 17 0.016158 hybrid +135_1-3 Q0 MARCO_25_1429975288-3 18 0.011427 hybrid +135_1-3 Q0 MARCO_54_1568618810-4 19 0.008947 hybrid +135_1-3 Q0 MARCO_50_1516160368-17 20 0.005077 hybrid +135_1-3 Q0 MARCO_48_1560403802-2 21 0.001509 hybrid +135_1-3 Q0 MARCO_26_727891250-11 22 -0.006819 hybrid +135_1-3 Q0 MARCO_46_1272442255-4 23 -0.010967 hybrid +135_1-3 Q0 MARCO_08_164041265-5 24 -0.016722 hybrid +135_1-3 Q0 MARCO_45_1574835971-27 25 -0.034528 hybrid +135_1-3 Q0 MARCO_51_957903931-7 26 -0.036018 hybrid +135_1-3 Q0 MARCO_51_958834692-10 27 -0.056788 hybrid +135_1-3 Q0 MARCO_50_1512751210-30 28 -0.061979 hybrid +135_1-3 Q0 MARCO_46_1271459492-4 29 -0.081067 hybrid +135_1-3 Q0 MARCO_51_959962110-3 30 -0.082650 hybrid +135_1-3 Q0 MARCO_21_870036782-2 31 -0.082685 hybrid +135_1-3 Q0 MARCO_32_375184463-5 32 -0.090747 hybrid +135_1-3 Q0 MARCO_51_955007724-10 33 -0.092692 hybrid +135_1-3 Q0 MARCO_51_959265231-9 34 -0.092701 hybrid +135_1-3 Q0 MARCO_40_1126947822-4 35 -0.092825 hybrid +135_1-3 Q0 MARCO_07_1012854612-7 36 -0.093701 hybrid +135_1-3 Q0 MARCO_51_958818114-10 37 -0.099556 hybrid +135_1-3 Q0 MARCO_21_870356030-3 38 -0.107667 hybrid +135_1-3 Q0 MARCO_57_110680525-8 39 -0.127502 hybrid +135_1-3 Q0 MARCO_21_870356030-1 40 -0.127957 hybrid +135_1-3 Q0 MARCO_55_1347262418-3 41 -0.128328 hybrid +135_1-3 Q0 MARCO_21_870036782-1 42 -0.139339 hybrid +135_1-3 Q0 MARCO_51_958485566-8 43 -0.145184 hybrid +135_1-3 Q0 MARCO_32_462141573-3 44 -0.147757 hybrid +135_1-3 Q0 MARCO_07_1001553105-3 45 -0.162089 hybrid +135_1-3 Q0 MARCO_46_257655158-3 46 -0.170428 hybrid +135_1-3 Q0 MARCO_33_723703063-7 47 -0.170938 hybrid +135_1-3 Q0 MARCO_53_907985-14 48 -0.175867 hybrid +135_1-3 Q0 MARCO_13_141057854-2 49 -0.177599 hybrid +135_1-3 Q0 MARCO_51_959190325-3 50 -0.183072 hybrid +135_1-3 Q0 MARCO_51_959858915-4 51 -0.187880 hybrid +135_1-3 Q0 MARCO_28_1761232054-5 52 -0.195093 hybrid +135_1-3 Q0 MARCO_56_1511815456-4 53 -0.195563 hybrid +135_1-3 Q0 MARCO_51_959962110-2 54 -0.195835 hybrid +135_1-3 Q0 MARCO_51_958834692-12 55 -0.203946 hybrid +135_1-3 Q0 MARCO_21_148996890-13 56 -0.210261 hybrid +135_1-3 Q0 MARCO_32_375176627-1 57 -0.210652 hybrid +135_1-3 Q0 MARCO_12_1452151583-12 58 -0.211241 hybrid +135_1-3 Q0 MARCO_46_553907717-3 59 -0.223984 hybrid +135_1-3 Q0 MARCO_46_1270917506-4 60 -0.226617 hybrid +135_1-3 Q0 MARCO_28_1759651308-3 61 -0.226909 hybrid +135_1-3 Q0 MARCO_10_698928506-2 62 -0.233159 hybrid +135_1-3 Q0 MARCO_48_375697229-24 63 -0.235742 hybrid +135_1-3 Q0 MARCO_48_377468525-7 64 -0.236698 hybrid +135_1-3 Q0 MARCO_28_1759613190-2 65 -0.242374 hybrid +135_1-3 Q0 MARCO_51_958528195-5 66 -0.243388 hybrid +135_1-3 Q0 MARCO_28_1759540903-8 67 -0.246184 hybrid +135_1-3 Q0 MARCO_51_958367033-1 68 -0.249124 hybrid +135_1-3 Q0 MARCO_01_799431978-41 69 -0.253979 hybrid +135_1-3 Q0 MARCO_51_959214797-14 70 -0.268484 hybrid +135_1-3 Q0 MARCO_28_421367047-3 71 -0.270483 hybrid +135_1-3 Q0 MARCO_51_958003580-7 72 -0.271824 hybrid +135_1-3 Q0 MARCO_03_1539443481-9 73 -0.273003 hybrid +135_1-3 Q0 MARCO_07_1048041834-13 74 -0.278015 hybrid +135_1-3 Q0 MARCO_28_1759580014-1 75 -0.287923 hybrid +135_1-3 Q0 MARCO_32_374073877-3 76 -0.288284 hybrid +135_1-3 Q0 MARCO_28_1759557920-1 77 -0.294552 hybrid +135_1-3 Q0 MARCO_52_363657812-3 78 -0.296118 hybrid +135_1-3 Q0 MARCO_22_1020535994-2 79 -0.299884 hybrid +135_1-3 Q0 MARCO_52_363358715-2 80 -0.301483 hybrid +135_1-3 Q0 MARCO_51_958573476-3 81 -0.302156 hybrid +135_1-3 Q0 MARCO_46_1270871454-4 82 -0.303037 hybrid +135_1-3 Q0 MARCO_46_1271547408-1 83 -0.304442 hybrid +135_1-3 Q0 MARCO_50_2143478118-13 84 -0.305452 hybrid +135_1-3 Q0 MARCO_28_1759557920-4 85 -0.305996 hybrid +135_1-3 Q0 MARCO_52_363657812-2 86 -0.307231 hybrid +135_1-3 Q0 MARCO_28_1759642279-3 87 -0.315527 hybrid +135_1-3 Q0 MARCO_46_1272305787-1 88 -0.317195 hybrid +135_1-3 Q0 MARCO_37_1248091279-5 89 -0.318274 hybrid +135_1-3 Q0 MARCO_32_462141573-1 90 -0.320367 hybrid +135_1-3 Q0 MARCO_28_1759557920-3 91 -0.320486 hybrid +135_1-3 Q0 MARCO_52_363146854-3 92 -0.320615 hybrid +135_1-3 Q0 MARCO_42_1100291157-5 93 -0.320828 hybrid +135_1-3 Q0 MARCO_46_1272942535-5 94 -0.323287 hybrid +135_1-3 Q0 MARCO_46_1272713488-2 95 -0.323480 hybrid +135_1-3 Q0 MARCO_28_1759683608-4 96 -0.323980 hybrid +135_1-3 Q0 MARCO_50_2160188362-3 97 -0.324371 hybrid +135_1-3 Q0 MARCO_51_958405187-7 98 -0.325885 hybrid +135_1-3 Q0 MARCO_00_567195721-130 99 -0.326652 hybrid +135_1-3 Q0 MARCO_32_462141573-4 100 -0.326821 hybrid +135_1-5 Q0 MARCO_28_1759557920-4 1 0.453449 hybrid +135_1-5 Q0 MARCO_28_1759557920-1 2 0.282215 hybrid +135_1-5 Q0 MARCO_32_375091295-1 3 0.250002 hybrid +135_1-5 Q0 MARCO_51_958003580-7 4 0.196010 hybrid +135_1-5 Q0 MARCO_51_957903931-7 5 0.195258 hybrid +135_1-5 Q0 MARCO_51_958834692-1 6 0.177799 hybrid +135_1-5 Q0 MARCO_51_958834692-12 7 0.100869 hybrid +135_1-5 Q0 MARCO_45_652286711-4 8 0.092116 hybrid +135_1-5 Q0 MARCO_46_1272244650-2 9 0.086780 hybrid +135_1-5 Q0 MARCO_52_363657812-2 10 0.065334 hybrid +135_1-5 Q0 MARCO_07_1048041834-13 11 0.060916 hybrid +135_1-5 Q0 MARCO_52_363669660-2 12 0.053933 hybrid +135_1-5 Q0 MARCO_51_959190325-3 13 0.036849 hybrid +135_1-5 Q0 MARCO_52_363657812-3 14 0.022960 hybrid +135_1-5 Q0 MARCO_51_958627721-1 15 0.017483 hybrid +135_1-5 Q0 MARCO_51_958485566-8 16 0.007112 hybrid +135_1-5 Q0 MARCO_28_1759660200-1 17 -0.009557 hybrid +135_1-5 Q0 MARCO_40_741967650-6 18 -0.011833 hybrid +135_1-5 Q0 MARCO_51_958834692-20 19 -0.020795 hybrid +135_1-5 Q0 MARCO_28_1759557920-2 20 -0.033287 hybrid +135_1-5 Q0 MARCO_51_958834692-4 21 -0.047449 hybrid +135_1-5 Q0 MARCO_28_1759557920-7 22 -0.050477 hybrid +135_1-5 Q0 MARCO_07_1048041834-12 23 -0.051415 hybrid +135_1-5 Q0 MARCO_51_958834692-10 24 -0.055304 hybrid +135_1-5 Q0 MARCO_25_1429975288-3 25 -0.056174 hybrid +135_1-5 Q0 MARCO_28_1759683608-1 26 -0.061911 hybrid +135_1-5 Q0 MARCO_51_958834692-2 27 -0.063125 hybrid +135_1-5 Q0 MARCO_51_957992620-3 28 -0.067539 hybrid +135_1-5 Q0 MARCO_29_620814686-3 29 -0.082693 hybrid +135_1-5 Q0 MARCO_51_959921488-6 30 -0.088599 hybrid +135_1-5 Q0 MARCO_13_141057854-2 31 -0.091714 hybrid +135_1-5 Q0 MARCO_28_1759580014-2 32 -0.091728 hybrid +135_1-5 Q0 MARCO_51_959962110-3 33 -0.093465 hybrid +135_1-5 Q0 MARCO_07_1012854612-8 34 -0.094531 hybrid +135_1-5 Q0 MARCO_51_959858915-4 35 -0.096773 hybrid +135_1-5 Q0 MARCO_32_375085135-1 36 -0.103659 hybrid +135_1-5 Q0 MARCO_46_1271968884-4 37 -0.106095 hybrid +135_1-5 Q0 MARCO_46_1272828752-6 38 -0.107592 hybrid +135_1-5 Q0 MARCO_28_1759557920-6 39 -0.108124 hybrid +135_1-5 Q0 MARCO_28_1759651308-5 40 -0.114769 hybrid +135_1-5 Q0 MARCO_28_1759630967-8 41 -0.120204 hybrid +135_1-5 Q0 MARCO_57_1269261512-3 42 -0.120213 hybrid +135_1-5 Q0 MARCO_40_743997809-1 43 -0.128119 hybrid +135_1-5 Q0 MARCO_28_1759557920-3 44 -0.138849 hybrid +135_1-5 Q0 MARCO_32_375317415-2 45 -0.145852 hybrid +135_1-5 Q0 MARCO_10_698928506-2 46 -0.148939 hybrid +135_1-5 Q0 MARCO_48_377468525-7 47 -0.149866 hybrid +135_1-5 Q0 MARCO_55_1347240246-1 48 -0.159408 hybrid +135_1-5 Q0 MARCO_28_1761122709-10 49 -0.160347 hybrid +135_1-5 Q0 MARCO_33_723703063-7 50 -0.161937 hybrid +135_1-5 Q0 MARCO_22_1579930911-9 51 -0.163772 hybrid +135_1-5 Q0 MARCO_08_163876809-1 52 -0.166177 hybrid +135_1-5 Q0 MARCO_32_375184463-5 53 -0.166723 hybrid +135_1-5 Q0 MARCO_32_462141573-1 54 -0.172439 hybrid +135_1-5 Q0 MARCO_51_695338546-7 55 -0.184005 hybrid +135_1-5 Q0 MARCO_51_959962110-2 56 -0.184441 hybrid +135_1-5 Q0 MARCO_32_462141573-2 57 -0.184680 hybrid +135_1-5 Q0 MARCO_51_958818114-9 58 -0.192135 hybrid +135_1-5 Q0 MARCO_23_488363167-3 59 -0.198502 hybrid +135_1-5 Q0 MARCO_48_375697229-24 60 -0.203312 hybrid +135_1-5 Q0 MARCO_20_14325862-6 61 -0.205670 hybrid +135_1-5 Q0 MARCO_21_870356030-3 62 -0.205773 hybrid +135_1-5 Q0 MARCO_51_958834692-6 63 -0.206804 hybrid +135_1-5 Q0 MARCO_28_1759484761-10 64 -0.212780 hybrid +135_1-5 Q0 MARCO_53_3184533-3 65 -0.216752 hybrid +135_1-5 Q0 MARCO_28_1759683608-4 66 -0.220042 hybrid +135_1-5 Q0 MARCO_48_1593401567-14 67 -0.222301 hybrid +135_1-5 Q0 MARCO_20_239116832-28 68 -0.226790 hybrid +135_1-5 Q0 MARCO_28_1759683608-3 69 -0.227637 hybrid +135_1-5 Q0 MARCO_29_1011910369-5 70 -0.228197 hybrid +135_1-5 Q0 MARCO_07_1001553105-3 71 -0.229284 hybrid +135_1-5 Q0 MARCO_42_205831854-3 72 -0.231143 hybrid +135_1-5 Q0 MARCO_51_958405187-7 73 -0.233698 hybrid +135_1-5 Q0 MARCO_54_1568127884-4 74 -0.234066 hybrid +135_1-5 Q0 MARCO_51_958528195-5 75 -0.236875 hybrid +135_1-5 Q0 MARCO_32_462141573-4 76 -0.236996 hybrid +135_1-5 Q0 MARCO_28_1759660200-6 77 -0.242226 hybrid +135_1-5 Q0 MARCO_52_363657812-1 78 -0.248038 hybrid +135_1-5 Q0 MARCO_49_1324945055-3 79 -0.249741 hybrid +135_1-5 Q0 MARCO_52_1291510907-5 80 -0.249998 hybrid +135_1-5 Q0 MARCO_48_376995658-20 81 -0.251384 hybrid +135_1-5 Q0 MARCO_32_375176627-1 82 -0.252028 hybrid +135_1-5 Q0 MARCO_32_462141573-3 83 -0.254651 hybrid +135_1-5 Q0 MARCO_23_488363167-1 84 -0.256621 hybrid +135_1-5 Q0 MARCO_28_1759557920-5 85 -0.256881 hybrid +135_1-5 Q0 MARCO_32_375317415-3 86 -0.257313 hybrid +135_1-5 Q0 MARCO_28_1759571450-3 87 -0.259803 hybrid +135_1-5 Q0 MARCO_52_363669660-1 88 -0.265633 hybrid +135_1-5 Q0 MARCO_10_704390742-4 89 -0.267210 hybrid +135_1-5 Q0 MARCO_28_1759484761-3 90 -0.267215 hybrid +135_1-5 Q0 MARCO_45_981669373-1 91 -0.271503 hybrid +135_1-5 Q0 MARCO_51_958495237-12 92 -0.273445 hybrid +135_1-5 Q0 MARCO_22_1020535994-2 93 -0.273582 hybrid +135_1-5 Q0 MARCO_49_1324775482-2 94 -0.273657 hybrid +135_1-5 Q0 MARCO_27_1204693694-6 95 -0.274189 hybrid +135_1-5 Q0 MARCO_50_2488130410-50 96 -0.276259 hybrid +135_1-5 Q0 MARCO_40_741826331-7 97 -0.276966 hybrid +135_1-5 Q0 MARCO_28_1759683608-11 98 -0.278099 hybrid +135_1-5 Q0 MARCO_40_1126947822-4 99 -0.283624 hybrid +135_1-5 Q0 MARCO_07_1001553105-2 100 -0.288904 hybrid +135_1-7 Q0 MARCO_28_1801863104-8 1 0.352028 hybrid +135_1-7 Q0 MARCO_24_508222455-15 2 0.152453 hybrid +135_1-7 Q0 MARCO_20_16115426-3 3 0.096240 hybrid +135_1-7 Q0 MARCO_10_988820795-14 4 0.094906 hybrid +135_1-7 Q0 MARCO_50_1419100449-16 5 0.047142 hybrid +135_1-7 Q0 MARCO_51_958330308-2 6 0.021287 hybrid +135_1-7 Q0 MARCO_59_940757412-6 7 0.013956 hybrid +135_1-7 Q0 MARCO_20_18533069-12 8 0.012075 hybrid +135_1-7 Q0 MARCO_59_940757412-8 9 -0.007575 hybrid +135_1-7 Q0 MARCO_21_149389328-4 10 -0.017318 hybrid +135_1-7 Q0 MARCO_28_1801863104-7 11 -0.017378 hybrid +135_1-7 Q0 MARCO_34_1328182024-6 12 -0.031759 hybrid +135_1-7 Q0 MARCO_10_988820795-10 13 -0.032635 hybrid +135_1-7 Q0 MARCO_40_741967650-6 14 -0.037614 hybrid +135_1-7 Q0 MARCO_52_362918693-1 15 -0.055078 hybrid +135_1-7 Q0 MARCO_50_1419100449-15 16 -0.055942 hybrid +135_1-7 Q0 MARCO_59_940757412-2 17 -0.065098 hybrid +135_1-7 Q0 MARCO_07_1046988585-2 18 -0.068908 hybrid +135_1-7 Q0 MARCO_50_2143478118-75 19 -0.071126 hybrid +135_1-7 Q0 MARCO_32_593983345-10 20 -0.076689 hybrid +135_1-7 Q0 MARCO_10_988820795-8 21 -0.080608 hybrid +135_1-7 Q0 MARCO_52_362918693-6 22 -0.089703 hybrid +135_1-7 Q0 MARCO_50_1419100449-1 23 -0.101954 hybrid +135_1-7 Q0 MARCO_28_1801863104-6 24 -0.103883 hybrid +135_1-7 Q0 MARCO_27_712484347-9 25 -0.112472 hybrid +135_1-7 Q0 MARCO_19_2631612001-12 26 -0.142214 hybrid +135_1-7 Q0 MARCO_20_27580101-2 27 -0.147696 hybrid +135_1-7 Q0 MARCO_10_988820795-1 28 -0.157188 hybrid +135_1-7 Q0 MARCO_50_1988583450-10 29 -0.163258 hybrid +135_1-7 Q0 MARCO_56_1513080404-3 30 -0.165641 hybrid +135_1-7 Q0 MARCO_31_902123204-7 31 -0.172727 hybrid +135_1-7 Q0 MARCO_08_163743160-3 32 -0.177245 hybrid +135_1-7 Q0 MARCO_46_14148609-1 33 -0.178137 hybrid +135_1-7 Q0 MARCO_28_1801863104-1 34 -0.183221 hybrid +135_1-7 Q0 MARCO_51_958834692-10 35 -0.183575 hybrid +135_1-7 Q0 MARCO_04_784496281-9 36 -0.186517 hybrid +135_1-7 Q0 MARCO_46_1271069967-1 37 -0.187554 hybrid +135_1-7 Q0 MARCO_52_362918693-5 38 -0.190375 hybrid +135_1-7 Q0 MARCO_50_2143478118-63 39 -0.195868 hybrid +135_1-7 Q0 MARCO_00_1280853048-7 40 -0.196006 hybrid +135_1-7 Q0 MARCO_28_1801863104-3 41 -0.207320 hybrid +135_1-7 Q0 MARCO_51_958330308-11 42 -0.210114 hybrid +135_1-7 Q0 MARCO_02_1355954397-3 43 -0.211954 hybrid +135_1-7 Q0 MARCO_12_1452175227-4 44 -0.213060 hybrid +135_1-7 Q0 MARCO_46_14148609-2 45 -0.221480 hybrid +135_1-7 Q0 MARCO_43_747183395-6 46 -0.222826 hybrid +135_1-7 Q0 MARCO_01_701105177-23 47 -0.224820 hybrid +135_1-7 Q0 MARCO_22_830623573-7 48 -0.227525 hybrid +135_1-7 Q0 MARCO_27_1245274024-1 49 -0.228452 hybrid +135_1-7 Q0 MARCO_46_1273335934-9 50 -0.228485 hybrid +135_1-7 Q0 MARCO_48_376135113-4 51 -0.236749 hybrid +135_1-7 Q0 MARCO_51_958540864-7 52 -0.236813 hybrid +135_1-7 Q0 MARCO_21_583935744-4 53 -0.250002 hybrid +135_1-7 Q0 MARCO_46_1271069967-2 54 -0.251399 hybrid +135_1-7 Q0 MARCO_41_879478981-1 55 -0.255161 hybrid +135_1-7 Q0 MARCO_46_530339207-3 56 -0.255651 hybrid +135_1-7 Q0 MARCO_50_1410701877-22 57 -0.256338 hybrid +135_1-7 Q0 MARCO_51_958405187-7 58 -0.269738 hybrid +135_1-7 Q0 MARCO_40_747094236-1 59 -0.271205 hybrid +135_1-7 Q0 MARCO_10_988820795-13 60 -0.272813 hybrid +135_1-7 Q0 MARCO_27_1245274024-3 61 -0.275164 hybrid +135_1-7 Q0 MARCO_46_1271069967-4 62 -0.277310 hybrid +135_1-7 Q0 MARCO_40_741863574-11 63 -0.278922 hybrid +135_1-7 Q0 MARCO_08_163470271-2 64 -0.281571 hybrid +135_1-7 Q0 MARCO_46_1272442255-4 65 -0.285610 hybrid +135_1-7 Q0 MARCO_37_1253034443-13 66 -0.287194 hybrid +135_1-7 Q0 MARCO_10_988820795-9 67 -0.304504 hybrid +135_1-7 Q0 MARCO_10_990687023-10 68 -0.307731 hybrid +135_1-7 Q0 MARCO_27_440715178-2 69 -0.310633 hybrid +135_1-7 Q0 MARCO_28_1801863104-2 70 -0.310866 hybrid +135_1-7 Q0 MARCO_50_1419100449-3 71 -0.311212 hybrid +135_1-7 Q0 MARCO_59_940757412-5 72 -0.312571 hybrid +135_1-7 Q0 MARCO_54_557197480-6 73 -0.314488 hybrid +135_1-7 Q0 MARCO_54_557164081-5 74 -0.314488 hybrid +135_1-7 Q0 MARCO_54_557173206-16 75 -0.314488 hybrid +135_1-7 Q0 MARCO_21_150107672-3 76 -0.315372 hybrid +135_1-7 Q0 MARCO_59_940757412-1 77 -0.316196 hybrid +135_1-7 Q0 MARCO_51_959921488-5 78 -0.317092 hybrid +135_1-7 Q0 MARCO_46_1272866946-6 79 -0.317715 hybrid +135_1-7 Q0 MARCO_56_1513341825-2 80 -0.318925 hybrid +135_1-7 Q0 MARCO_50_1530670175-7 81 -0.323704 hybrid +135_1-7 Q0 MARCO_40_743835347-2 82 -0.324234 hybrid +135_1-7 Q0 MARCO_27_1757518417-10 83 -0.326385 hybrid +135_1-7 Q0 MARCO_52_362918693-3 84 -0.331364 hybrid +135_1-7 Q0 MARCO_35_421816635-3 85 -0.333265 hybrid +135_1-7 Q0 MARCO_21_237282101-4 86 -0.335016 hybrid +135_1-7 Q0 MARCO_27_1245274024-4 87 -0.336505 hybrid +135_1-7 Q0 MARCO_08_163470271-1 88 -0.337932 hybrid +135_1-7 Q0 MARCO_40_739668195-5 89 -0.338936 hybrid +135_1-7 Q0 MARCO_52_362918693-2 90 -0.341392 hybrid +135_1-7 Q0 MARCO_10_988820795-5 91 -0.345106 hybrid +135_1-7 Q0 MARCO_44_842987699-3 92 -0.346251 hybrid +135_1-7 Q0 MARCO_46_1271411323-5 93 -0.346770 hybrid +135_1-7 Q0 MARCO_41_291563422-8 94 -0.347959 hybrid +135_1-7 Q0 MARCO_28_1759571450-2 95 -0.350672 hybrid +135_1-7 Q0 MARCO_23_946580246-16 96 -0.351356 hybrid +135_1-7 Q0 MARCO_40_743815939-1 97 -0.353940 hybrid +135_1-7 Q0 MARCO_48_376135113-2 98 -0.355486 hybrid +135_1-7 Q0 MARCO_27_712484347-10 99 -0.356251 hybrid +135_1-7 Q0 MARCO_27_920911855-5 100 -0.357911 hybrid +135_2-1 Q0 MARCO_52_364389438-2 1 0.342509 hybrid +135_2-1 Q0 MARCO_06_1406785097-4 2 0.250000 hybrid +135_2-1 Q0 MARCO_45_655712107-5 3 0.231694 hybrid +135_2-1 Q0 MARCO_57_2121896036-29 4 0.225123 hybrid +135_2-1 Q0 MARCO_50_942632346-93 5 0.179481 hybrid +135_2-1 Q0 MARCO_22_1311706234-12 6 0.166318 hybrid +135_2-1 Q0 MARCO_22_1311816083-9 7 0.166311 hybrid +135_2-1 Q0 MARCO_22_1311720716-12 8 0.166311 hybrid +135_2-1 Q0 MARCO_22_1311765867-5 9 0.166311 hybrid +135_2-1 Q0 MARCO_28_956783824-4 10 0.157021 hybrid +135_2-1 Q0 MARCO_40_746977716-10 11 0.141581 hybrid +135_2-1 Q0 MARCO_50_942500408-8 12 0.126792 hybrid +135_2-1 Q0 MARCO_22_1311746140-6 13 0.100170 hybrid +135_2-1 Q0 MARCO_50_1427540295-2 14 0.087560 hybrid +135_2-1 Q0 MARCO_42_637421417-36 15 0.065233 hybrid +135_2-1 Q0 MARCO_57_2118242861-15 16 0.039901 hybrid +135_2-1 Q0 MARCO_46_1268754227-1 17 0.036572 hybrid +135_2-1 Q0 MARCO_55_717746869-4 18 0.036195 hybrid +135_2-1 Q0 MARCO_57_2121896036-1 19 0.009041 hybrid +135_2-1 Q0 MARCO_56_1602966882-5 20 0.005944 hybrid +135_2-1 Q0 MARCO_02_492403282-2 21 -0.003937 hybrid +135_2-1 Q0 MARCO_11_1468526452-4 22 -0.011962 hybrid +135_2-1 Q0 MARCO_41_1213835401-17 23 -0.043165 hybrid +135_2-1 Q0 MARCO_48_376328719-4 24 -0.053548 hybrid +135_2-1 Q0 MARCO_30_820820417-8 25 -0.063867 hybrid +135_2-1 Q0 MARCO_48_376624447-7 26 -0.078018 hybrid +135_2-1 Q0 MARCO_21_1459093924-6 27 -0.081549 hybrid +135_2-1 Q0 MARCO_30_820820417-7 28 -0.088891 hybrid +135_2-1 Q0 MARCO_29_25348656-8 29 -0.100969 hybrid +135_2-1 Q0 MARCO_55_678602859-6 30 -0.105053 hybrid +135_2-1 Q0 MARCO_28_434840658-7 31 -0.107491 hybrid +135_2-1 Q0 MARCO_44_38375515-1 32 -0.108871 hybrid +135_2-1 Q0 MARCO_42_873710345-3 33 -0.109502 hybrid +135_2-1 Q0 MARCO_26_111596749-10 34 -0.110707 hybrid +135_2-1 Q0 MARCO_26_111929246-1 35 -0.117976 hybrid +135_2-1 Q0 MARCO_42_1099176110-7 36 -0.130238 hybrid +135_2-1 Q0 MARCO_00_255529558-10 37 -0.130365 hybrid +135_2-1 Q0 MARCO_50_1171758861-8 38 -0.131927 hybrid +135_2-1 Q0 MARCO_40_619969766-6 39 -0.132102 hybrid +135_2-1 Q0 MARCO_41_1213835401-10 40 -0.139003 hybrid +135_2-1 Q0 MARCO_50_942868292-61 41 -0.139269 hybrid +135_2-1 Q0 MARCO_00_255906017-7 42 -0.151739 hybrid +135_2-1 Q0 MARCO_50_942868292-118 43 -0.152152 hybrid +135_2-1 Q0 MARCO_40_746959875-14 44 -0.155627 hybrid +135_2-1 Q0 MARCO_29_169327116-5 45 -0.158807 hybrid +135_2-1 Q0 MARCO_30_825553192-2 46 -0.164881 hybrid +135_2-1 Q0 MARCO_40_747693097-2 47 -0.170017 hybrid +135_2-1 Q0 MARCO_26_111596749-1 48 -0.175768 hybrid +135_2-1 Q0 MARCO_41_1208481924-23 49 -0.180770 hybrid +135_2-1 Q0 MARCO_50_1410903011-14 50 -0.182823 hybrid +135_2-1 Q0 MARCO_50_942632346-65 51 -0.183827 hybrid +135_2-1 Q0 MARCO_50_942868292-54 52 -0.189604 hybrid +135_2-1 Q0 MARCO_49_1829668945-10 53 -0.192715 hybrid +135_2-1 Q0 MARCO_13_140611290-1 54 -0.193219 hybrid +135_2-1 Q0 MARCO_49_1829658863-1 55 -0.193338 hybrid +135_2-1 Q0 MARCO_26_111596749-6 56 -0.196141 hybrid +135_2-1 Q0 MARCO_50_942500408-10 57 -0.197107 hybrid +135_2-1 Q0 MARCO_51_118380300-9 58 -0.201234 hybrid +135_2-1 Q0 MARCO_50_942868292-126 59 -0.201577 hybrid +135_2-1 Q0 MARCO_50_527166296-12 60 -0.201780 hybrid +135_2-1 Q0 MARCO_50_942632346-19 61 -0.202425 hybrid +135_2-1 Q0 MARCO_48_1560419894-2 62 -0.205094 hybrid +135_2-1 Q0 MARCO_09_794234431-6 63 -0.206663 hybrid +135_2-1 Q0 MARCO_56_1512765609-4 64 -0.209753 hybrid +135_2-1 Q0 MARCO_40_746500310-18 65 -0.211861 hybrid +135_2-1 Q0 MARCO_50_942632346-92 66 -0.217601 hybrid +135_2-1 Q0 MARCO_28_906299941-6 67 -0.222538 hybrid +135_2-1 Q0 MARCO_50_516427711-2 68 -0.225817 hybrid +135_2-1 Q0 MARCO_40_742867867-6 69 -0.226384 hybrid +135_2-1 Q0 MARCO_22_1604829268-6 70 -0.226636 hybrid +135_2-1 Q0 MARCO_50_942868292-154 71 -0.226881 hybrid +135_2-1 Q0 MARCO_50_1410903011-5 72 -0.227435 hybrid +135_2-1 Q0 MARCO_42_1864678319-6 73 -0.227855 hybrid +135_2-1 Q0 MARCO_30_130263933-2 74 -0.228156 hybrid +135_2-1 Q0 MARCO_21_595408461-3 75 -0.230230 hybrid +135_2-1 Q0 MARCO_21_595408461-1 76 -0.230230 hybrid +135_2-1 Q0 MARCO_48_375842976-5 77 -0.233074 hybrid +135_2-1 Q0 MARCO_50_515596964-42 78 -0.234370 hybrid +135_2-1 Q0 MARCO_30_825553192-1 79 -0.236892 hybrid +135_2-1 Q0 MARCO_28_525867501-2 80 -0.238280 hybrid +135_2-1 Q0 MARCO_09_794234431-3 81 -0.238623 hybrid +135_2-1 Q0 MARCO_14_1776163950-1 82 -0.239323 hybrid +135_2-1 Q0 MARCO_28_525867501-20 83 -0.243050 hybrid +135_2-1 Q0 MARCO_40_739457070-1 84 -0.244564 hybrid +135_2-1 Q0 MARCO_55_718454740-4 85 -0.247100 hybrid +135_2-1 Q0 MARCO_42_637421417-38 86 -0.249860 hybrid +135_2-1 Q0 MARCO_20_353592428-2 87 -0.250000 hybrid +135_2-1 Q0 MARCO_40_746806420-6 88 -0.250701 hybrid +135_2-1 Q0 MARCO_29_169327116-2 89 -0.252529 hybrid +135_2-1 Q0 MARCO_42_873191477-2 90 -0.254266 hybrid +135_2-1 Q0 MARCO_26_472606839-6 91 -0.254708 hybrid +135_2-1 Q0 MARCO_40_747603527-14 92 -0.255331 hybrid +135_2-1 Q0 MARCO_10_364951722-30 93 -0.256480 hybrid +135_2-1 Q0 MARCO_21_241068881-20 94 -0.258687 hybrid +135_2-1 Q0 MARCO_09_794634559-3 95 -0.261104 hybrid +135_2-1 Q0 MARCO_00_587140117-10 96 -0.261903 hybrid +135_2-1 Q0 MARCO_00_587154003-9 97 -0.261903 hybrid +135_2-1 Q0 MARCO_23_946168316-7 98 -0.263689 hybrid +135_2-1 Q0 MARCO_59_884108206-1 99 -0.268495 hybrid +135_2-1 Q0 MARCO_50_942868292-100 100 -0.270499 hybrid +135_2-11 Q0 MARCO_51_958585730-5 1 0.341420 hybrid +135_2-11 Q0 MARCO_51_959300059-4 2 0.254727 hybrid +135_2-11 Q0 MARCO_50_942738183-29 3 0.201682 hybrid +135_2-11 Q0 MARCO_07_1252086451-14 4 0.146646 hybrid +135_2-11 Q0 MARCO_44_116408113-3 5 0.143124 hybrid +135_2-11 Q0 MARCO_46_773010518-13 6 0.130750 hybrid +135_2-11 Q0 MARCO_50_1610765686-32 7 0.116586 hybrid +135_2-11 Q0 MARCO_51_959300059-5 8 0.103221 hybrid +135_2-11 Q0 MARCO_23_58591104-4 9 0.037851 hybrid +135_2-11 Q0 MARCO_36_401149577-4 10 0.012347 hybrid +135_2-11 Q0 MARCO_51_957977239-3 11 0.011796 hybrid +135_2-11 Q0 MARCO_38_1386080218-3 12 -0.002650 hybrid +135_2-11 Q0 MARCO_56_1513010351-11 13 -0.025580 hybrid +135_2-11 Q0 MARCO_45_655694221-7 14 -0.039623 hybrid +135_2-11 Q0 MARCO_50_636026845-8 15 -0.046656 hybrid +135_2-11 Q0 MARCO_08_163131777-11 16 -0.056322 hybrid +135_2-11 Q0 MARCO_22_7715732-5 17 -0.060485 hybrid +135_2-11 Q0 MARCO_41_2081404142-5 18 -0.066858 hybrid +135_2-11 Q0 MARCO_28_1757537175-7 19 -0.074638 hybrid +135_2-11 Q0 MARCO_38_901425915-5 20 -0.082142 hybrid +135_2-11 Q0 MARCO_51_1068924601-15 21 -0.092854 hybrid +135_2-11 Q0 MARCO_13_1762070377-7 22 -0.097383 hybrid +135_2-11 Q0 MARCO_13_1763036598-8 23 -0.117536 hybrid +135_2-11 Q0 MARCO_38_902652783-5 24 -0.128930 hybrid +135_2-11 Q0 MARCO_10_1181563021-15 25 -0.137024 hybrid +135_2-11 Q0 MARCO_45_1263230185-3 26 -0.139685 hybrid +135_2-11 Q0 KILT_18613314-2 27 -0.158995 hybrid +135_2-11 Q0 MARCO_38_901890613-5 28 -0.165406 hybrid +135_2-11 Q0 MARCO_07_1050902196-10 29 -0.171930 hybrid +135_2-11 Q0 MARCO_05_450073966-4 30 -0.178325 hybrid +135_2-11 Q0 MARCO_38_901580327-6 31 -0.179332 hybrid +135_2-11 Q0 MARCO_21_1669122945-6 32 -0.184385 hybrid +135_2-11 Q0 MARCO_06_1413154596-2 33 -0.188951 hybrid +135_2-11 Q0 MARCO_29_238234755-4 34 -0.203261 hybrid +135_2-11 Q0 MARCO_50_1610765686-33 35 -0.210787 hybrid +135_2-11 Q0 MARCO_38_902848229-5 36 -0.212155 hybrid +135_2-11 Q0 MARCO_39_263205704-3 37 -0.229479 hybrid +135_2-11 Q0 MARCO_39_259679721-2 38 -0.229782 hybrid +135_2-11 Q0 MARCO_48_1742867695-2 39 -0.230491 hybrid +135_2-11 Q0 MARCO_19_2654370538-2 40 -0.232125 hybrid +135_2-11 Q0 MARCO_38_898360865-5 41 -0.234494 hybrid +135_2-11 Q0 MARCO_47_915701381-5 42 -0.239564 hybrid +135_2-11 Q0 MARCO_51_971491333-4 43 -0.250003 hybrid +135_2-11 Q0 MARCO_37_1255424093-12 44 -0.253728 hybrid +135_2-11 Q0 MARCO_59_332143153-4 45 -0.254117 hybrid +135_2-11 Q0 MARCO_38_901588272-6 46 -0.260637 hybrid +135_2-11 Q0 MARCO_00_357505133-10 47 -0.262200 hybrid +135_2-11 Q0 MARCO_40_388940781-15 48 -0.262930 hybrid +135_2-11 Q0 MARCO_31_1206975771-3 49 -0.266599 hybrid +135_2-11 Q0 MARCO_02_441545593-9 50 -0.274081 hybrid +135_2-11 Q0 MARCO_10_1198798292-2 51 -0.278039 hybrid +135_2-11 Q0 MARCO_45_655694221-5 52 -0.281264 hybrid +135_2-11 Q0 MARCO_38_904012587-5 53 -0.287931 hybrid +135_2-11 Q0 MARCO_33_1241327772-16 54 -0.291010 hybrid +135_2-11 Q0 MARCO_24_490013454-2 55 -0.292919 hybrid +135_2-11 Q0 MARCO_47_916984074-5 56 -0.303345 hybrid +135_2-11 Q0 MARCO_38_899904414-7 57 -0.305650 hybrid +135_2-11 Q0 MARCO_49_970300008-9 58 -0.305680 hybrid +135_2-11 Q0 MARCO_50_942738183-23 59 -0.306537 hybrid +135_2-11 Q0 MARCO_43_241850791-3 60 -0.307311 hybrid +135_2-11 Q0 MARCO_47_1306068878-14 61 -0.308636 hybrid +135_2-11 Q0 MARCO_52_592967350-8 62 -0.311650 hybrid +135_2-11 Q0 MARCO_51_959300059-1 63 -0.319497 hybrid +135_2-11 Q0 MARCO_57_463533078-21 64 -0.324439 hybrid +135_2-11 Q0 MARCO_20_1197242388-3 65 -0.328697 hybrid +135_2-11 Q0 MARCO_23_488370169-3 66 -0.330376 hybrid +135_2-11 Q0 MARCO_45_655694221-8 67 -0.332566 hybrid +135_2-11 Q0 MARCO_50_1610765686-46 68 -0.335525 hybrid +135_2-11 Q0 MARCO_38_900807518-10 69 -0.335649 hybrid +135_2-11 Q0 MARCO_38_905904620-4 70 -0.336905 hybrid +135_2-11 Q0 MARCO_10_729915219-2 71 -0.337099 hybrid +135_2-11 Q0 MARCO_38_904507779-8 72 -0.337213 hybrid +135_2-11 Q0 MARCO_28_331106557-3 73 -0.341303 hybrid +135_2-11 Q0 MARCO_00_767008897-3 74 -0.341887 hybrid +135_2-11 Q0 MARCO_27_1106497605-1 75 -0.343272 hybrid +135_2-11 Q0 MARCO_59_332548905-2 76 -0.345166 hybrid +135_2-11 Q0 MARCO_38_901439378-4 77 -0.345393 hybrid +135_2-11 Q0 MARCO_50_2770521097-2 78 -0.345409 hybrid +135_2-11 Q0 MARCO_52_675919156-6 79 -0.346897 hybrid +135_2-11 Q0 MARCO_58_1733867517-4 80 -0.352145 hybrid +135_2-11 Q0 MARCO_59_333147543-2 81 -0.352995 hybrid +135_2-11 Q0 MARCO_41_1816460246-16 82 -0.353303 hybrid +135_2-11 Q0 MARCO_38_853886432-3 83 -0.353454 hybrid +135_2-11 Q0 MARCO_00_1400156272-10 84 -0.354369 hybrid +135_2-11 Q0 MARCO_51_1078074546-22 85 -0.355402 hybrid +135_2-11 Q0 MARCO_13_1762084239-5 86 -0.357160 hybrid +135_2-11 Q0 MARCO_38_901433116-4 87 -0.360883 hybrid +135_2-11 Q0 MARCO_40_817250994-4 88 -0.361126 hybrid +135_2-11 Q0 MARCO_38_900777953-12 89 -0.362051 hybrid +135_2-11 Q0 MARCO_50_1524915527-18 90 -0.362657 hybrid +135_2-11 Q0 MARCO_59_864333626-2 91 -0.365995 hybrid +135_2-11 Q0 MARCO_46_989140414-50 92 -0.366515 hybrid +135_2-11 Q0 MARCO_38_904331266-5 93 -0.367775 hybrid +135_2-11 Q0 MARCO_07_1409262483-3 94 -0.368852 hybrid +135_2-11 Q0 MARCO_38_905330581-6 95 -0.369198 hybrid +135_2-11 Q0 MARCO_06_1405530488-3 96 -0.369539 hybrid +135_2-11 Q0 MARCO_42_1856888194-7 97 -0.373856 hybrid +135_2-11 Q0 MARCO_42_1856888194-9 98 -0.373862 hybrid +135_2-11 Q0 MARCO_46_1269106691-5 99 -0.377005 hybrid +135_2-11 Q0 MARCO_39_1367102489-8 100 -0.378536 hybrid +135_2-3 Q0 MARCO_33_483767651-116 1 0.250000 hybrid +135_2-3 Q0 MARCO_44_841990555-8 2 0.233029 hybrid +135_2-3 Q0 MARCO_30_88056508-22 3 0.187853 hybrid +135_2-3 Q0 MARCO_26_111596749-6 4 0.138068 hybrid +135_2-3 Q0 MARCO_23_898224248-7 5 0.129271 hybrid +135_2-3 Q0 MARCO_10_715671323-6 6 0.037452 hybrid +135_2-3 Q0 MARCO_39_221813548-10 7 0.028229 hybrid +135_2-3 Q0 MARCO_07_543909954-2 8 0.023580 hybrid +135_2-3 Q0 MARCO_50_1410903011-13 9 0.014586 hybrid +135_2-3 Q0 MARCO_46_987762890-3 10 -0.002698 hybrid +135_2-3 Q0 MARCO_48_376091625-22 11 -0.021693 hybrid +135_2-3 Q0 MARCO_07_995973808-8 12 -0.022651 hybrid +135_2-3 Q0 MARCO_50_942632346-65 13 -0.052161 hybrid +135_2-3 Q0 MARCO_45_656776984-7 14 -0.053402 hybrid +135_2-3 Q0 MARCO_12_353491396-135 15 -0.069958 hybrid +135_2-3 Q0 MARCO_07_992472568-8 16 -0.075178 hybrid +135_2-3 Q0 MARCO_07_992472568-10 17 -0.075183 hybrid +135_2-3 Q0 MARCO_21_1459093924-6 18 -0.076440 hybrid +135_2-3 Q0 MARCO_16_1102386653-2 19 -0.083082 hybrid +135_2-3 Q0 MARCO_48_375062597-23 20 -0.086998 hybrid +135_2-3 Q0 MARCO_29_542014923-5 21 -0.088362 hybrid +135_2-3 Q0 MARCO_46_991070927-2 22 -0.088396 hybrid +135_2-3 Q0 MARCO_50_942632346-93 23 -0.100499 hybrid +135_2-3 Q0 MARCO_40_744338693-3 24 -0.103260 hybrid +135_2-3 Q0 MARCO_48_1560419894-2 25 -0.108505 hybrid +135_2-3 Q0 MARCO_07_1013088575-7 26 -0.114371 hybrid +135_2-3 Q0 MARCO_50_942500408-8 27 -0.114821 hybrid +135_2-3 Q0 MARCO_34_474986520-23 28 -0.118687 hybrid +135_2-3 Q0 MARCO_07_998987553-2 29 -0.119978 hybrid +135_2-3 Q0 MARCO_42_945182259-5 30 -0.134045 hybrid +135_2-3 Q0 MARCO_33_727762492-3 31 -0.196129 hybrid +135_2-3 Q0 MARCO_42_1848803583-2 32 -0.196314 hybrid +135_2-3 Q0 MARCO_50_942632346-26 33 -0.198719 hybrid +135_2-3 Q0 MARCO_42_873592670-1 34 -0.199653 hybrid +135_2-3 Q0 MARCO_38_996371841-3 35 -0.206648 hybrid +135_2-3 Q0 MARCO_39_221813548-9 36 -0.207044 hybrid +135_2-3 Q0 MARCO_42_873592670-3 37 -0.209087 hybrid +135_2-3 Q0 MARCO_40_741982222-4 38 -0.209116 hybrid +135_2-3 Q0 MARCO_24_1950227631-5 39 -0.221072 hybrid +135_2-3 Q0 MARCO_21_754922578-8 40 -0.224866 hybrid +135_2-3 Q0 MARCO_52_600093697-2 41 -0.225139 hybrid +135_2-3 Q0 MARCO_42_877425973-3 42 -0.226361 hybrid +135_2-3 Q0 MARCO_06_320259610-4 43 -0.228356 hybrid +135_2-3 Q0 MARCO_50_1427561328-41 44 -0.234163 hybrid +135_2-3 Q0 MARCO_42_874225434-7 45 -0.235942 hybrid +135_2-3 Q0 MARCO_41_2086300486-2 46 -0.247370 hybrid +135_2-3 Q0 MARCO_26_111258725-9 47 -0.248675 hybrid +135_2-3 Q0 MARCO_50_942868292-54 48 -0.249110 hybrid +135_2-3 Q0 MARCO_40_761913368-1 49 -0.250000 hybrid +135_2-3 Q0 MARCO_22_1521084911-11 50 -0.255831 hybrid +135_2-3 Q0 MARCO_50_1427540295-16 51 -0.256843 hybrid +135_2-3 Q0 MARCO_46_1272624854-2 52 -0.262992 hybrid +135_2-3 Q0 MARCO_56_1510065279-7 53 -0.265236 hybrid +135_2-3 Q0 MARCO_42_873748869-10 54 -0.268316 hybrid +135_2-3 Q0 MARCO_50_1427540295-17 55 -0.269743 hybrid +135_2-3 Q0 MARCO_50_1172115628-1 56 -0.271938 hybrid +135_2-3 Q0 MARCO_21_871480542-1 57 -0.272358 hybrid +135_2-3 Q0 MARCO_23_61177956-11 58 -0.272778 hybrid +135_2-3 Q0 MARCO_26_1060247035-5 59 -0.275374 hybrid +135_2-3 Q0 MARCO_50_942632346-88 60 -0.280110 hybrid +135_2-3 Q0 MARCO_40_746977716-10 61 -0.281176 hybrid +135_2-3 Q0 MARCO_43_747441218-9 62 -0.284825 hybrid +135_2-3 Q0 MARCO_24_1457902117-14 63 -0.286920 hybrid +135_2-3 Q0 MARCO_42_1099176110-12 64 -0.287037 hybrid +135_2-3 Q0 MARCO_25_239320013-2 65 -0.287887 hybrid +135_2-3 Q0 MARCO_42_1100291157-3 66 -0.289564 hybrid +135_2-3 Q0 MARCO_50_942868292-169 67 -0.291417 hybrid +135_2-3 Q0 MARCO_57_2121896036-29 68 -0.292028 hybrid +135_2-3 Q0 MARCO_07_999479265-1 69 -0.292125 hybrid +135_2-3 Q0 MARCO_53_613530310-14 70 -0.297732 hybrid +135_2-3 Q0 MARCO_50_1183196001-13 71 -0.300631 hybrid +135_2-3 Q0 MARCO_29_1169853961-2 72 -0.301672 hybrid +135_2-3 Q0 MARCO_40_747649628-6 73 -0.301784 hybrid +135_2-3 Q0 MARCO_42_874225434-1 74 -0.303339 hybrid +135_2-3 Q0 MARCO_50_942512262-48 75 -0.305225 hybrid +135_2-3 Q0 MARCO_48_1151006253-1 76 -0.305739 hybrid +135_2-3 Q0 MARCO_23_58181313-3 77 -0.306873 hybrid +135_2-3 Q0 MARCO_08_164896340-9 78 -0.310842 hybrid +135_2-3 Q0 MARCO_50_2160188362-9 79 -0.313281 hybrid +135_2-3 Q0 MARCO_50_942868292-86 80 -0.313887 hybrid +135_2-3 Q0 MARCO_46_1312823191-1 81 -0.314146 hybrid +135_2-3 Q0 MARCO_51_952724175-21 82 -0.314987 hybrid +135_2-3 Q0 MARCO_42_874214859-8 83 -0.316341 hybrid +135_2-3 Q0 MARCO_10_661266732-1 84 -0.319140 hybrid +135_2-3 Q0 MARCO_13_541663139-5 85 -0.319156 hybrid +135_2-3 Q0 MARCO_15_1721675128-21 86 -0.323179 hybrid +135_2-3 Q0 MARCO_40_747063556-5 87 -0.325002 hybrid +135_2-3 Q0 MARCO_28_103127649-1 88 -0.326029 hybrid +135_2-3 Q0 MARCO_50_1519442266-12 89 -0.329788 hybrid +135_2-3 Q0 MARCO_50_1410903011-5 90 -0.330081 hybrid +135_2-3 Q0 MARCO_56_1511245005-5 91 -0.330712 hybrid +135_2-3 Q0 MARCO_41_2024902041-7 92 -0.330883 hybrid +135_2-3 Q0 MARCO_50_942512262-47 93 -0.334080 hybrid +135_2-3 Q0 MARCO_08_808930129-1 94 -0.334407 hybrid +135_2-3 Q0 MARCO_21_870439901-3 95 -0.337882 hybrid +135_2-3 Q0 MARCO_01_1644267253-4 96 -0.342504 hybrid +135_2-3 Q0 MARCO_07_1010671131-2 97 -0.343166 hybrid +135_2-3 Q0 MARCO_28_525905818-5 98 -0.343264 hybrid +135_2-3 Q0 MARCO_29_1335900520-7 99 -0.343660 hybrid +135_2-3 Q0 MARCO_14_749962236-13 100 -0.345048 hybrid +135_2-5 Q0 MARCO_21_870601055-1 1 0.449927 hybrid +135_2-5 Q0 MARCO_22_1643905967-13 2 0.254456 hybrid +135_2-5 Q0 MARCO_51_959902068-3 3 0.249999 hybrid +135_2-5 Q0 MARCO_56_1517301414-10 4 0.241383 hybrid +135_2-5 Q0 MARCO_50_1678865180-11 5 0.193233 hybrid +135_2-5 Q0 MARCO_51_958253040-21 6 0.175220 hybrid +135_2-5 Q0 MARCO_37_840595800-1 7 0.127370 hybrid +135_2-5 Q0 MARCO_06_1393825764-1 8 0.103280 hybrid +135_2-5 Q0 MARCO_04_956999677-2 9 0.099377 hybrid +135_2-5 Q0 MARCO_21_870601055-2 10 0.083558 hybrid +135_2-5 Q0 MARCO_37_840595800-2 11 0.070368 hybrid +135_2-5 Q0 MARCO_50_942738183-29 12 0.069114 hybrid +135_2-5 Q0 MARCO_42_941690382-3 13 0.032848 hybrid +135_2-5 Q0 MARCO_37_840595800-3 14 0.024442 hybrid +135_2-5 Q0 MARCO_50_2380391824-3 15 -0.017100 hybrid +135_2-5 Q0 MARCO_56_1513010351-2 16 -0.047132 hybrid +135_2-5 Q0 MARCO_20_366825421-6 17 -0.053119 hybrid +135_2-5 Q0 MARCO_06_1651294274-4 18 -0.056627 hybrid +135_2-5 Q0 MARCO_48_756182980-4 19 -0.062121 hybrid +135_2-5 Q0 MARCO_50_1417751395-5 20 -0.080427 hybrid +135_2-5 Q0 MARCO_50_1678865180-3 21 -0.085278 hybrid +135_2-5 Q0 MARCO_01_1638796365-2 22 -0.090084 hybrid +135_2-5 Q0 MARCO_07_1416169973-8 23 -0.096011 hybrid +135_2-5 Q0 MARCO_50_1678865180-6 24 -0.121264 hybrid +135_2-5 Q0 MARCO_50_1417147563-15 25 -0.126837 hybrid +135_2-5 Q0 MARCO_42_471021744-1 26 -0.129768 hybrid +135_2-5 Q0 MARCO_08_163882593-6 27 -0.129809 hybrid +135_2-5 Q0 MARCO_06_1397845375-6 28 -0.131925 hybrid +135_2-5 Q0 MARCO_26_111711735-7 29 -0.135638 hybrid +135_2-5 Q0 MARCO_42_892245414-1 30 -0.141114 hybrid +135_2-5 Q0 MARCO_01_1638796365-1 31 -0.143797 hybrid +135_2-5 Q0 MARCO_51_958757759-1 32 -0.144554 hybrid +135_2-5 Q0 MARCO_42_1097163798-6 33 -0.155186 hybrid +135_2-5 Q0 MARCO_15_1396443797-5 34 -0.160935 hybrid +135_2-5 Q0 MARCO_07_595390964-4 35 -0.171707 hybrid +135_2-5 Q0 MARCO_06_1397845375-4 36 -0.176988 hybrid +135_2-5 Q0 MARCO_50_1678865180-12 37 -0.178121 hybrid +135_2-5 Q0 MARCO_38_1389806888-2 38 -0.185327 hybrid +135_2-5 Q0 MARCO_06_1397845375-1 39 -0.185942 hybrid +135_2-5 Q0 MARCO_20_366825421-1 40 -0.187999 hybrid +135_2-5 Q0 MARCO_50_1183196001-5 41 -0.196897 hybrid +135_2-5 Q0 MARCO_20_366825421-2 42 -0.197518 hybrid +135_2-5 Q0 MARCO_50_1678865180-14 43 -0.198286 hybrid +135_2-5 Q0 MARCO_42_617995734-1 44 -0.202626 hybrid +135_2-5 Q0 MARCO_42_943021699-1 45 -0.205038 hybrid +135_2-5 Q0 MARCO_56_1513010351-13 46 -0.215742 hybrid +135_2-5 Q0 MARCO_50_1678865180-9 47 -0.216590 hybrid +135_2-5 Q0 MARCO_04_956999677-1 48 -0.219144 hybrid +135_2-5 Q0 MARCO_50_942738183-30 49 -0.223842 hybrid +135_2-5 Q0 MARCO_46_848652260-3 50 -0.235943 hybrid +135_2-5 Q0 MARCO_06_1871184670-68 51 -0.236219 hybrid +135_2-5 Q0 MARCO_42_161899714-2 52 -0.250001 hybrid +135_2-5 Q0 MARCO_57_2122062711-11 53 -0.259172 hybrid +135_2-5 Q0 MARCO_50_2380452941-13 54 -0.260669 hybrid +135_2-5 Q0 MARCO_10_1183275422-3 55 -0.260688 hybrid +135_2-5 Q0 MARCO_15_1722348984-1 56 -0.269192 hybrid +135_2-5 Q0 MARCO_46_1273347812-4 57 -0.273312 hybrid +135_2-5 Q0 MARCO_31_883528667-23 58 -0.276547 hybrid +135_2-5 Q0 MARCO_39_422173655-4 59 -0.277325 hybrid +135_2-5 Q0 MARCO_50_942738183-47 60 -0.277678 hybrid +135_2-5 Q0 MARCO_53_358653507-3 61 -0.280788 hybrid +135_2-5 Q0 MARCO_24_1460729845-10 62 -0.287140 hybrid +135_2-5 Q0 MARCO_51_958081400-6 63 -0.288381 hybrid +135_2-5 Q0 MARCO_51_958244570-3 64 -0.293590 hybrid +135_2-5 Q0 MARCO_06_1395845897-2 65 -0.302049 hybrid +135_2-5 Q0 MARCO_28_447350531-1 66 -0.306041 hybrid +135_2-5 Q0 MARCO_31_883528667-14 67 -0.311621 hybrid +135_2-5 Q0 MARCO_06_1397845375-3 68 -0.316768 hybrid +135_2-5 Q0 MARCO_51_638868918-2 69 -0.317407 hybrid +135_2-5 Q0 MARCO_42_946997076-1 70 -0.323161 hybrid +135_2-5 Q0 MARCO_55_717924858-2 71 -0.326637 hybrid +135_2-5 Q0 MARCO_51_957966634-2 72 -0.327257 hybrid +135_2-5 Q0 MARCO_51_958253040-1 73 -0.328353 hybrid +135_2-5 Q0 MARCO_10_1201802098-5 74 -0.332161 hybrid +135_2-5 Q0 MARCO_20_366825421-7 75 -0.333579 hybrid +135_2-5 Q0 MARCO_50_2393691806-9 76 -0.334336 hybrid +135_2-5 Q0 MARCO_50_2488130410-37 77 -0.335660 hybrid +135_2-5 Q0 MARCO_42_945929988-4 78 -0.338194 hybrid +135_2-5 Q0 MARCO_11_1510382207-3 79 -0.339584 hybrid +135_2-5 Q0 MARCO_04_217572199-1 80 -0.341240 hybrid +135_2-5 Q0 MARCO_20_20312009-4 81 -0.343205 hybrid +135_2-5 Q0 MARCO_42_607373902-3 82 -0.347746 hybrid +135_2-5 Q0 MARCO_42_891517845-8 83 -0.349592 hybrid +135_2-5 Q0 MARCO_51_122589513-1 84 -0.351483 hybrid +135_2-5 Q0 MARCO_00_794012105-1 85 -0.353247 hybrid +135_2-5 Q0 MARCO_38_1389992310-2 86 -0.353585 hybrid +135_2-5 Q0 MARCO_07_1416108370-1 87 -0.354395 hybrid +135_2-5 Q0 MARCO_50_1416826848-21 88 -0.355739 hybrid +135_2-5 Q0 MARCO_31_883528667-21 89 -0.356642 hybrid +135_2-5 Q0 MARCO_01_1643580497-13 90 -0.357405 hybrid +135_2-5 Q0 MARCO_46_845391100-9 91 -0.358515 hybrid +135_2-5 Q0 MARCO_05_1512280189-4 92 -0.359711 hybrid +135_2-5 Q0 MARCO_01_1140054450-1 93 -0.360131 hybrid +135_2-5 Q0 MARCO_20_366825421-5 94 -0.360165 hybrid +135_2-5 Q0 MARCO_54_142619105-4 95 -0.360693 hybrid +135_2-5 Q0 MARCO_09_1197238874-1 96 -0.365435 hybrid +135_2-5 Q0 MARCO_50_899326001-8 97 -0.366356 hybrid +135_2-5 Q0 KILT_8459324-2 98 -0.369396 hybrid +135_2-5 Q0 MARCO_47_1331204900-16 99 -0.371067 hybrid +135_2-5 Q0 MARCO_38_845771083-8 100 -0.371850 hybrid +135_2-7 Q0 MARCO_01_1638796365-2 1 0.297083 hybrid +135_2-7 Q0 MARCO_56_1517301414-10 2 0.249998 hybrid +135_2-7 Q0 MARCO_06_1397845375-1 3 0.248562 hybrid +135_2-7 Q0 MARCO_50_1678865180-12 4 0.197346 hybrid +135_2-7 Q0 MARCO_50_1678865180-11 5 0.180050 hybrid +135_2-7 Q0 MARCO_50_1417751395-5 6 0.177698 hybrid +135_2-7 Q0 MARCO_21_870601055-1 7 0.102649 hybrid +135_2-7 Q0 MARCO_04_956999677-2 8 0.086777 hybrid +135_2-7 Q0 MARCO_50_942738183-29 9 0.062575 hybrid +135_2-7 Q0 MARCO_50_942738183-30 10 0.026767 hybrid +135_2-7 Q0 MARCO_51_958253040-21 11 0.001875 hybrid +135_2-7 Q0 MARCO_20_366825421-11 12 -0.000165 hybrid +135_2-7 Q0 MARCO_50_1416826848-21 13 -0.010246 hybrid +135_2-7 Q0 MARCO_37_840595800-2 14 -0.012525 hybrid +135_2-7 Q0 MARCO_08_163882593-6 15 -0.020189 hybrid +135_2-7 Q0 MARCO_50_2380391824-3 16 -0.024581 hybrid +135_2-7 Q0 MARCO_50_1678865180-3 17 -0.031195 hybrid +135_2-7 Q0 MARCO_51_959902068-3 18 -0.031776 hybrid +135_2-7 Q0 MARCO_22_1643905967-13 19 -0.044153 hybrid +135_2-7 Q0 MARCO_06_1651294274-4 20 -0.047438 hybrid +135_2-7 Q0 MARCO_42_1097163798-6 21 -0.067381 hybrid +135_2-7 Q0 MARCO_50_1417147563-15 22 -0.068847 hybrid +135_2-7 Q0 MARCO_50_1678865180-6 23 -0.072628 hybrid +135_2-7 Q0 MARCO_01_1643580497-13 24 -0.098092 hybrid +135_2-7 Q0 MARCO_42_607373902-3 25 -0.109543 hybrid +135_2-7 Q0 MARCO_07_1003589292-4 26 -0.109760 hybrid +135_2-7 Q0 MARCO_50_1678865180-9 27 -0.113899 hybrid +135_2-7 Q0 MARCO_37_382111221-3 28 -0.126215 hybrid +135_2-7 Q0 MARCO_15_135233194-11 29 -0.137930 hybrid +135_2-7 Q0 MARCO_21_870601055-3 30 -0.140125 hybrid +135_2-7 Q0 MARCO_37_840595800-1 31 -0.145289 hybrid +135_2-7 Q0 MARCO_10_1201802098-5 32 -0.146260 hybrid +135_2-7 Q0 MARCO_37_840595800-3 33 -0.146279 hybrid +135_2-7 Q0 MARCO_57_2122062711-13 34 -0.151044 hybrid +135_2-7 Q0 MARCO_06_1397845375-6 35 -0.163151 hybrid +135_2-7 Q0 MARCO_21_870601055-2 36 -0.164413 hybrid +135_2-7 Q0 MARCO_56_1513010351-2 37 -0.164471 hybrid +135_2-7 Q0 MARCO_50_2488130410-37 38 -0.169599 hybrid +135_2-7 Q0 MARCO_50_1678865180-7 39 -0.173090 hybrid +135_2-7 Q0 MARCO_42_615332378-6 40 -0.184660 hybrid +135_2-7 Q0 MARCO_51_959902068-4 41 -0.189387 hybrid +135_2-7 Q0 MARCO_26_111711735-7 42 -0.196312 hybrid +135_2-7 Q0 MARCO_42_891517845-8 43 -0.198054 hybrid +135_2-7 Q0 MARCO_28_525726252-5 44 -0.200903 hybrid +135_2-7 Q0 MARCO_10_1183275422-3 45 -0.203307 hybrid +135_2-7 Q0 MARCO_15_1722348984-1 46 -0.204165 hybrid +135_2-7 Q0 MARCO_08_165172533-3 47 -0.219341 hybrid +135_2-7 Q0 MARCO_24_1460729845-10 48 -0.220458 hybrid +135_2-7 Q0 MARCO_04_956999677-1 49 -0.221013 hybrid +135_2-7 Q0 MARCO_23_488344351-4 50 -0.221761 hybrid +135_2-7 Q0 MARCO_45_176717033-7 51 -0.232359 hybrid +135_2-7 Q0 MARCO_37_69565447-1 52 -0.234949 hybrid +135_2-7 Q0 MARCO_06_1393825764-1 53 -0.239270 hybrid +135_2-7 Q0 MARCO_06_1402821152-10 54 -0.239615 hybrid +135_2-7 Q0 MARCO_42_161899714-2 55 -0.250002 hybrid +135_2-7 Q0 MARCO_50_2488130410-73 56 -0.260979 hybrid +135_2-7 Q0 MARCO_20_366825421-6 57 -0.264481 hybrid +135_2-7 Q0 MARCO_15_1396443797-5 58 -0.265092 hybrid +135_2-7 Q0 MARCO_20_366825421-14 59 -0.265115 hybrid +135_2-7 Q0 MARCO_24_1554102428-14 60 -0.267067 hybrid +135_2-7 Q0 MARCO_46_848652260-3 61 -0.272394 hybrid +135_2-7 Q0 MARCO_42_945929988-4 62 -0.272712 hybrid +135_2-7 Q0 MARCO_42_941690382-3 63 -0.274599 hybrid +135_2-7 Q0 MARCO_09_535505861-1 64 -0.281517 hybrid +135_2-7 Q0 MARCO_32_1483868721-25 65 -0.286470 hybrid +135_2-7 Q0 MARCO_00_1585229255-71 66 -0.289387 hybrid +135_2-7 Q0 MARCO_50_2488130410-24 67 -0.289856 hybrid +135_2-7 Q0 MARCO_09_848582719-20 68 -0.290626 hybrid +135_2-7 Q0 MARCO_32_1495934270-6 69 -0.295764 hybrid +135_2-7 Q0 MARCO_56_1513010351-13 70 -0.297625 hybrid +135_2-7 Q0 MARCO_28_478232099-5 71 -0.297692 hybrid +135_2-7 Q0 MARCO_50_1183196001-5 72 -0.300819 hybrid +135_2-7 Q0 MARCO_50_1678865180-1 73 -0.302464 hybrid +135_2-7 Q0 MARCO_15_135233194-22 74 -0.302952 hybrid +135_2-7 Q0 MARCO_42_707092932-1 75 -0.304616 hybrid +135_2-7 Q0 MARCO_42_941690382-1 76 -0.306055 hybrid +135_2-7 Q0 MARCO_49_1170844987-6 77 -0.306666 hybrid +135_2-7 Q0 MARCO_50_2160188362-32 78 -0.309634 hybrid +135_2-7 Q0 MARCO_37_1254010287-3 79 -0.311687 hybrid +135_2-7 Q0 MARCO_07_1416169973-8 80 -0.313044 hybrid +135_2-7 Q0 MARCO_53_613802402-4 81 -0.314455 hybrid +135_2-7 Q0 MARCO_20_16259434-1 82 -0.316538 hybrid +135_2-7 Q0 MARCO_51_958757759-1 83 -0.316552 hybrid +135_2-7 Q0 MARCO_20_366825421-2 84 -0.317737 hybrid +135_2-7 Q0 MARCO_42_941690382-2 85 -0.323186 hybrid +135_2-7 Q0 MARCO_42_892245414-1 86 -0.328625 hybrid +135_2-7 Q0 MARCO_06_1396249501-4 87 -0.330593 hybrid +135_2-7 Q0 MARCO_51_958081400-6 88 -0.332660 hybrid +135_2-7 Q0 MARCO_51_971491333-4 89 -0.334165 hybrid +135_2-7 Q0 MARCO_49_1073101946-6 90 -0.335636 hybrid +135_2-7 Q0 MARCO_42_1870518152-12 91 -0.335853 hybrid +135_2-7 Q0 MARCO_20_237272684-2 92 -0.337619 hybrid +135_2-7 Q0 MARCO_20_366825421-10 93 -0.339726 hybrid +135_2-7 Q0 MARCO_15_1722348984-4 94 -0.340084 hybrid +135_2-7 Q0 MARCO_11_1495796135-4 95 -0.342035 hybrid +135_2-7 Q0 MARCO_29_804257258-4 96 -0.342128 hybrid +135_2-7 Q0 MARCO_23_488344351-5 97 -0.343033 hybrid +135_2-7 Q0 MARCO_50_942738183-47 98 -0.345783 hybrid +135_2-7 Q0 MARCO_57_2118611960-23 99 -0.346438 hybrid +135_2-7 Q0 MARCO_04_410537106-12 100 -0.347224 hybrid +135_2-9 Q0 MARCO_21_870601055-1 1 0.454672 hybrid +135_2-9 Q0 MARCO_08_163882593-6 2 0.248917 hybrid +135_2-9 Q0 MARCO_04_956999677-2 3 0.224756 hybrid +135_2-9 Q0 MARCO_21_870601055-2 4 0.142727 hybrid +135_2-9 Q0 MARCO_50_1417147563-15 5 0.141061 hybrid +135_2-9 Q0 MARCO_56_1517301414-10 6 0.100917 hybrid +135_2-9 Q0 MARCO_32_374642125-1 7 0.069913 hybrid +135_2-9 Q0 MARCO_21_870601055-3 8 0.066570 hybrid +135_2-9 Q0 MARCO_50_1417751395-5 9 0.042437 hybrid +135_2-9 Q0 MARCO_51_959902068-3 10 0.035612 hybrid +135_2-9 Q0 MARCO_41_270571342-4 11 0.027562 hybrid +135_2-9 Q0 MARCO_56_1513010351-2 12 0.012253 hybrid +135_2-9 Q0 MARCO_50_1416826848-21 13 -0.010796 hybrid +135_2-9 Q0 MARCO_50_1678865180-11 14 -0.117240 hybrid +135_2-9 Q0 MARCO_46_1273347812-4 15 -0.120849 hybrid +135_2-9 Q0 MARCO_50_2488130410-73 16 -0.149490 hybrid +135_2-9 Q0 MARCO_06_1651294274-4 17 -0.150357 hybrid +135_2-9 Q0 MARCO_22_1643905967-13 18 -0.158434 hybrid +135_2-9 Q0 MARCO_50_2380391824-3 19 -0.163713 hybrid +135_2-9 Q0 MARCO_04_956999677-1 20 -0.169418 hybrid +135_2-9 Q0 MARCO_32_375165062-2 21 -0.173502 hybrid +135_2-9 Q0 MARCO_50_2393691806-16 22 -0.178278 hybrid +135_2-9 Q0 MARCO_50_1183196001-5 23 -0.178579 hybrid +135_2-9 Q0 MARCO_56_1517362905-4 24 -0.181990 hybrid +135_2-9 Q0 MARCO_51_958253040-21 25 -0.183308 hybrid +135_2-9 Q0 MARCO_51_122589513-1 26 -0.188338 hybrid +135_2-9 Q0 MARCO_46_1271288630-8 27 -0.190781 hybrid +135_2-9 Q0 MARCO_52_363365539-2 28 -0.191343 hybrid +135_2-9 Q0 MARCO_32_1487288639-12 29 -0.194831 hybrid +135_2-9 Q0 MARCO_23_488370169-2 30 -0.199124 hybrid +135_2-9 Q0 MARCO_09_794234431-20 31 -0.200228 hybrid +135_2-9 Q0 MARCO_42_941690382-3 32 -0.206080 hybrid +135_2-9 Q0 MARCO_11_711636091-7 33 -0.213460 hybrid +135_2-9 Q0 MARCO_07_1250699350-3 34 -0.225147 hybrid +135_2-9 Q0 MARCO_27_1245788375-3 35 -0.233972 hybrid +135_2-9 Q0 MARCO_20_20312009-4 36 -0.237000 hybrid +135_2-9 Q0 MARCO_51_971491333-3 37 -0.249998 hybrid +135_2-9 Q0 MARCO_05_1512280189-4 38 -0.260304 hybrid +135_2-9 Q0 MARCO_06_1397845375-6 39 -0.267145 hybrid +135_2-9 Q0 MARCO_06_1408469188-4 40 -0.267983 hybrid +135_2-9 Q0 MARCO_37_1254010287-3 41 -0.278621 hybrid +135_2-9 Q0 MARCO_20_20312009-6 42 -0.279728 hybrid +135_2-9 Q0 MARCO_10_1202031956-16 43 -0.279818 hybrid +135_2-9 Q0 MARCO_51_959168735-4 44 -0.280588 hybrid +135_2-9 Q0 MARCO_28_1759587521-10 45 -0.284192 hybrid +135_2-9 Q0 MARCO_01_1638796365-2 46 -0.290229 hybrid +135_2-9 Q0 MARCO_25_236568303-17 47 -0.290474 hybrid +135_2-9 Q0 MARCO_37_346233273-9 48 -0.293033 hybrid +135_2-9 Q0 MARCO_37_840595800-2 49 -0.293548 hybrid +135_2-9 Q0 MARCO_50_2488130410-20 50 -0.298292 hybrid +135_2-9 Q0 MARCO_32_594116784-2 51 -0.299936 hybrid +135_2-9 Q0 MARCO_43_747441218-5 52 -0.304588 hybrid +135_2-9 Q0 MARCO_00_767743164-2 53 -0.305712 hybrid +135_2-9 Q0 MARCO_50_2488130410-49 54 -0.312373 hybrid +135_2-9 Q0 MARCO_32_375515972-3 55 -0.312671 hybrid +135_2-9 Q0 MARCO_00_567195721-30 56 -0.315919 hybrid +135_2-9 Q0 MARCO_51_958244570-3 57 -0.319153 hybrid +135_2-9 Q0 MARCO_51_957977239-3 58 -0.319516 hybrid +135_2-9 Q0 MARCO_51_959590085-6 59 -0.322775 hybrid +135_2-9 Q0 MARCO_22_1648947069-14 60 -0.323871 hybrid +135_2-9 Q0 MARCO_23_944932744-3 61 -0.324127 hybrid +135_2-9 Q0 MARCO_51_960085625-13 62 -0.326477 hybrid +135_2-9 Q0 MARCO_50_2160188362-32 63 -0.345331 hybrid +135_2-9 Q0 MARCO_06_1397845375-1 64 -0.350426 hybrid +135_2-9 Q0 MARCO_46_845391100-9 65 -0.350695 hybrid +135_2-9 Q0 MARCO_48_377038396-10 66 -0.353559 hybrid +135_2-9 Q0 MARCO_06_1402821152-10 67 -0.355645 hybrid +135_2-9 Q0 MARCO_32_50618325-3 68 -0.357485 hybrid +135_2-9 Q0 MARCO_40_1188861351-4 69 -0.358502 hybrid +135_2-9 Q0 MARCO_50_2393691806-9 70 -0.362657 hybrid +135_2-9 Q0 MARCO_50_942738183-30 71 -0.362937 hybrid +135_2-9 Q0 MARCO_02_1355864800-14 72 -0.363060 hybrid +135_2-9 Q0 MARCO_04_956999677-4 73 -0.364105 hybrid +135_2-9 Q0 MARCO_50_2488130410-24 74 -0.366051 hybrid +135_2-9 Q0 MARCO_51_958585730-29 75 -0.366928 hybrid +135_2-9 Q0 MARCO_03_1219968897-4 76 -0.367339 hybrid +135_2-9 Q0 MARCO_33_723693321-2 77 -0.369263 hybrid +135_2-9 Q0 MARCO_50_1511565640-19 78 -0.372003 hybrid +135_2-9 Q0 MARCO_48_375697229-12 79 -0.374703 hybrid +135_2-9 Q0 MARCO_50_942738183-29 80 -0.380089 hybrid +135_2-9 Q0 MARCO_03_1220283235-2 81 -0.381689 hybrid +135_2-9 Q0 MARCO_28_434750316-3 82 -0.384092 hybrid +135_2-9 Q0 MARCO_07_1416169973-8 83 -0.386930 hybrid +135_2-9 Q0 MARCO_51_955339474-78 84 -0.389184 hybrid +135_2-9 Q0 MARCO_56_1517301414-11 85 -0.394356 hybrid +135_2-9 Q0 MARCO_32_374931214-4 86 -0.396032 hybrid +135_2-9 Q0 MARCO_42_164141426-11 87 -0.396170 hybrid +135_2-9 Q0 MARCO_50_2397935887-38 88 -0.397517 hybrid +135_2-9 Q0 MARCO_50_1423699111-14 89 -0.397687 hybrid +135_2-9 Q0 MARCO_07_992393018-4 90 -0.399081 hybrid +135_2-9 Q0 MARCO_51_958511495-6 91 -0.400721 hybrid +135_2-9 Q0 MARCO_10_1382606012-10 92 -0.401317 hybrid +135_2-9 Q0 MARCO_04_956999677-3 93 -0.406641 hybrid +135_2-9 Q0 MARCO_28_422593013-7 94 -0.410183 hybrid +135_2-9 Q0 MARCO_49_970313000-4 95 -0.412560 hybrid +135_2-9 Q0 MARCO_29_1011874735-6 96 -0.414142 hybrid +135_2-9 Q0 MARCO_50_2380238556-10 97 -0.414836 hybrid +135_2-9 Q0 MARCO_32_374578812-4 98 -0.418443 hybrid +135_2-9 Q0 MARCO_32_374229391-1 99 -0.419906 hybrid +135_2-9 Q0 MARCO_55_717924858-2 100 -0.420236 hybrid +135_3-1 Q0 MARCO_00_898730767-3 1 0.250000 hybrid +135_3-1 Q0 MARCO_59_356337724-5 2 0.104256 hybrid +135_3-1 Q0 MARCO_07_992255008-3 3 0.073389 hybrid +135_3-1 Q0 MARCO_51_957764537-2 4 0.025127 hybrid +135_3-1 Q0 MARCO_15_137188383-4 5 0.021171 hybrid +135_3-1 Q0 MARCO_15_526524970-9 6 0.019821 hybrid +135_3-1 Q0 MARCO_30_832200335-1 7 -0.028859 hybrid +135_3-1 Q0 MARCO_03_1220235132-1 8 -0.031860 hybrid +135_3-1 Q0 MARCO_54_175786723-3 9 -0.050574 hybrid +135_3-1 Q0 MARCO_30_832200335-2 10 -0.052107 hybrid +135_3-1 Q0 MARCO_15_526509543-3 11 -0.067596 hybrid +135_3-1 Q0 MARCO_38_1389095510-3 12 -0.073987 hybrid +135_3-1 Q0 MARCO_51_944682700-3 13 -0.079240 hybrid +135_3-1 Q0 MARCO_07_1012854612-4 14 -0.080207 hybrid +135_3-1 Q0 MARCO_50_2488130410-24 15 -0.089579 hybrid +135_3-1 Q0 MARCO_07_1000940097-3 16 -0.103292 hybrid +135_3-1 Q0 MARCO_50_2488130410-37 17 -0.103585 hybrid +135_3-1 Q0 MARCO_20_26451631-3 18 -0.108420 hybrid +135_3-1 Q0 MARCO_21_151919715-15 19 -0.108632 hybrid +135_3-1 Q0 MARCO_20_59980201-3 20 -0.113648 hybrid +135_3-1 Q0 MARCO_07_1012854612-2 21 -0.120930 hybrid +135_3-1 Q0 MARCO_46_1271288630-3 22 -0.128734 hybrid +135_3-1 Q0 MARCO_53_617813365-5 23 -0.130997 hybrid +135_3-1 Q0 MARCO_50_2488130410-22 24 -0.138618 hybrid +135_3-1 Q0 MARCO_10_904399786-19 25 -0.145108 hybrid +135_3-1 Q0 MARCO_51_957764537-1 26 -0.150244 hybrid +135_3-1 Q0 MARCO_08_1484334854-1 27 -0.158581 hybrid +135_3-1 Q0 MARCO_53_618734730-1 28 -0.159355 hybrid +135_3-1 Q0 MARCO_07_1012877652-4 29 -0.169359 hybrid +135_3-1 Q0 MARCO_29_1211974105-2 30 -0.176225 hybrid +135_3-1 Q0 MARCO_21_869909453-1 31 -0.181442 hybrid +135_3-1 Q0 MARCO_21_869538031-2 32 -0.183193 hybrid +135_3-1 Q0 MARCO_56_1517301414-6 33 -0.188049 hybrid +135_3-1 Q0 MARCO_00_898714629-11 34 -0.195621 hybrid +135_3-1 Q0 MARCO_48_377486088-3 35 -0.201152 hybrid +135_3-1 Q0 MARCO_45_655712107-3 36 -0.209171 hybrid +135_3-1 Q0 MARCO_42_873762756-8 37 -0.209340 hybrid +135_3-1 Q0 MARCO_50_2488130410-31 38 -0.211489 hybrid +135_3-1 Q0 MARCO_51_958229275-5 39 -0.213117 hybrid +135_3-1 Q0 MARCO_51_958286148-2 40 -0.217430 hybrid +135_3-1 Q0 MARCO_51_957867032-8 41 -0.217699 hybrid +135_3-1 Q0 MARCO_42_163777617-18 42 -0.218775 hybrid +135_3-1 Q0 MARCO_40_743492071-2 43 -0.227395 hybrid +135_3-1 Q0 MARCO_11_1512638687-2 44 -0.227546 hybrid +135_3-1 Q0 MARCO_05_1512212622-1 45 -0.229377 hybrid +135_3-1 Q0 MARCO_41_343326630-3 46 -0.235362 hybrid +135_3-1 Q0 MARCO_10_1183275422-3 47 -0.237189 hybrid +135_3-1 Q0 MARCO_06_1402239090-2 48 -0.239334 hybrid +135_3-1 Q0 MARCO_23_945375410-2 49 -0.239638 hybrid +135_3-1 Q0 MARCO_51_957867032-3 50 -0.242505 hybrid +135_3-1 Q0 MARCO_12_1748615894-7 51 -0.244880 hybrid +135_3-1 Q0 MARCO_48_530993744-4 52 -0.250000 hybrid +135_3-1 Q0 MARCO_50_1403314805-9 53 -0.253170 hybrid +135_3-1 Q0 MARCO_50_1183196001-9 54 -0.253447 hybrid +135_3-1 Q0 MARCO_51_957867032-6 55 -0.262511 hybrid +135_3-1 Q0 MARCO_20_59992661-1 56 -0.263989 hybrid +135_3-1 Q0 MARCO_21_152176844-21 57 -0.265342 hybrid +135_3-1 Q0 MARCO_50_942632346-11 58 -0.266975 hybrid +135_3-1 Q0 MARCO_00_255425337-3 59 -0.271264 hybrid +135_3-1 Q0 MARCO_21_871175996-1 60 -0.280085 hybrid +135_3-1 Q0 MARCO_48_513806187-5 61 -0.280823 hybrid +135_3-1 Q0 MARCO_00_898735786-7 62 -0.281124 hybrid +135_3-1 Q0 MARCO_40_743492071-1 63 -0.283340 hybrid +135_3-1 Q0 MARCO_37_1258820165-4 64 -0.283439 hybrid +135_3-1 Q0 MARCO_30_1096049691-1 65 -0.283646 hybrid +135_3-1 Q0 MARCO_40_743592721-2 66 -0.285474 hybrid +135_3-1 Q0 MARCO_50_1171758861-16 67 -0.288551 hybrid +135_3-1 Q0 MARCO_25_1429975288-3 68 -0.289445 hybrid +135_3-1 Q0 MARCO_53_618734730-5 69 -0.290202 hybrid +135_3-1 Q0 MARCO_10_904399786-7 70 -0.290659 hybrid +135_3-1 Q0 MARCO_46_1272892661-6 71 -0.294509 hybrid +135_3-1 Q0 MARCO_56_1517301414-10 72 -0.294510 hybrid +135_3-1 Q0 MARCO_48_377531994-8 73 -0.296342 hybrid +135_3-1 Q0 MARCO_06_693854726-6 74 -0.296623 hybrid +135_3-1 Q0 MARCO_32_374737087-4 75 -0.299129 hybrid +135_3-1 Q0 MARCO_12_1748615894-4 76 -0.300844 hybrid +135_3-1 Q0 MARCO_40_741982222-3 77 -0.301955 hybrid +135_3-1 Q0 MARCO_54_1568582155-3 78 -0.303183 hybrid +135_3-1 Q0 MARCO_10_714890637-1 79 -0.304700 hybrid +135_3-1 Q0 MARCO_07_1012877652-6 80 -0.306701 hybrid +135_3-1 Q0 MARCO_03_582804021-4 81 -0.307447 hybrid +135_3-1 Q0 MARCO_50_942512262-5 82 -0.307928 hybrid +135_3-1 Q0 MARCO_00_898714629-13 83 -0.309494 hybrid +135_3-1 Q0 MARCO_11_1495796135-4 84 -0.311757 hybrid +135_3-1 Q0 MARCO_32_374633696-2 85 -0.315699 hybrid +135_3-1 Q0 MARCO_29_1211974105-3 86 -0.315706 hybrid +135_3-1 Q0 MARCO_56_1517301414-5 87 -0.316486 hybrid +135_3-1 Q0 MARCO_20_26754639-5 88 -0.317948 hybrid +135_3-1 Q0 MARCO_32_375291199-1 89 -0.320460 hybrid +135_3-1 Q0 MARCO_45_976216241-11 90 -0.322230 hybrid +135_3-1 Q0 MARCO_10_904428660-8 91 -0.326198 hybrid +135_3-1 Q0 MARCO_15_526509543-1 92 -0.326738 hybrid +135_3-1 Q0 MARCO_40_746806420-4 93 -0.329959 hybrid +135_3-1 Q0 MARCO_46_1272339738-3 94 -0.331484 hybrid +135_3-1 Q0 MARCO_21_870356030-1 95 -0.331748 hybrid +135_3-1 Q0 MARCO_53_728000781-8 96 -0.336662 hybrid +135_3-1 Q0 MARCO_50_2488130410-28 97 -0.338006 hybrid +135_3-1 Q0 MARCO_28_645990301-1 98 -0.338375 hybrid +135_3-1 Q0 MARCO_40_742457496-1 99 -0.339483 hybrid +135_3-1 Q0 MARCO_42_606423041-2 100 -0.344336 hybrid +135_3-3 Q0 MARCO_48_1593576924-13 1 0.250000 hybrid +135_3-3 Q0 MARCO_52_360541411-2 2 0.229070 hybrid +135_3-3 Q0 MARCO_20_19854465-5 3 0.097394 hybrid +135_3-3 Q0 MARCO_12_1746877573-1 4 0.042103 hybrid +135_3-3 Q0 MARCO_52_360541411-3 5 0.030326 hybrid +135_3-3 Q0 MARCO_07_259744883-7 6 -0.002784 hybrid +135_3-3 Q0 MARCO_40_748339608-5 7 -0.005865 hybrid +135_3-3 Q0 MARCO_20_26648209-26 8 -0.040384 hybrid +135_3-3 Q0 MARCO_22_1020493230-1 9 -0.079691 hybrid +135_3-3 Q0 MARCO_12_1744776449-5 10 -0.104610 hybrid +135_3-3 Q0 MARCO_24_1619206228-3 11 -0.109832 hybrid +135_3-3 Q0 MARCO_12_1748606616-3 12 -0.122026 hybrid +135_3-3 Q0 MARCO_54_557164081-5 13 -0.127366 hybrid +135_3-3 Q0 MARCO_54_557197480-6 14 -0.127366 hybrid +135_3-3 Q0 MARCO_54_557173206-16 15 -0.127366 hybrid +135_3-3 Q0 MARCO_07_999990940-4 16 -0.133210 hybrid +135_3-3 Q0 MARCO_51_959367968-5 17 -0.137831 hybrid +135_3-3 Q0 MARCO_34_470547937-18 18 -0.146387 hybrid +135_3-3 Q0 MARCO_12_1748527826-17 19 -0.151938 hybrid +135_3-3 Q0 MARCO_20_26778100-21 20 -0.152982 hybrid +135_3-3 Q0 MARCO_12_1748527826-22 21 -0.164254 hybrid +135_3-3 Q0 MARCO_38_612094431-10 22 -0.169862 hybrid +135_3-3 Q0 MARCO_23_1829249023-11 23 -0.172975 hybrid +135_3-3 Q0 MARCO_48_1593576924-7 24 -0.174047 hybrid +135_3-3 Q0 MARCO_48_1593576924-11 25 -0.174358 hybrid +135_3-3 Q0 MARCO_13_652473763-16 26 -0.189044 hybrid +135_3-3 Q0 MARCO_12_1746877573-4 27 -0.201578 hybrid +135_3-3 Q0 MARCO_12_1747484813-1 28 -0.220078 hybrid +135_3-3 Q0 MARCO_13_406906602-4 29 -0.230528 hybrid +135_3-3 Q0 MARCO_12_1746877573-7 30 -0.233909 hybrid +135_3-3 Q0 MARCO_53_4979078-3 31 -0.239354 hybrid +135_3-3 Q0 MARCO_53_4979078-8 32 -0.239355 hybrid +135_3-3 Q0 MARCO_44_38020968-2 33 -0.239725 hybrid +135_3-3 Q0 MARCO_27_843538425-4 34 -0.241733 hybrid +135_3-3 Q0 MARCO_45_976232738-7 35 -0.242105 hybrid +135_3-3 Q0 MARCO_35_389752087-5 36 -0.250000 hybrid +135_3-3 Q0 MARCO_23_945375410-5 37 -0.252052 hybrid +135_3-3 Q0 MARCO_50_2398382846-22 38 -0.253903 hybrid +135_3-3 Q0 MARCO_26_85398791-8 39 -0.255368 hybrid +135_3-3 Q0 MARCO_21_151919715-4 40 -0.265873 hybrid +135_3-3 Q0 MARCO_12_1749050770-9 41 -0.266369 hybrid +135_3-3 Q0 MARCO_20_19004849-30 42 -0.267016 hybrid +135_3-3 Q0 MARCO_24_1560097898-10 43 -0.272660 hybrid +135_3-3 Q0 MARCO_29_1168356752-6 44 -0.272867 hybrid +135_3-3 Q0 MARCO_11_146761267-7 45 -0.280826 hybrid +135_3-3 Q0 MARCO_12_1746877573-3 46 -0.281234 hybrid +135_3-3 Q0 MARCO_20_58087911-15 47 -0.282917 hybrid +135_3-3 Q0 MARCO_24_1614442741-11 48 -0.285827 hybrid +135_3-3 Q0 MARCO_12_1748131709-18 49 -0.288404 hybrid +135_3-3 Q0 MARCO_48_1593576924-1 50 -0.297496 hybrid +135_3-3 Q0 MARCO_07_259744883-1 51 -0.298400 hybrid +135_3-3 Q0 MARCO_23_939486284-15 52 -0.300262 hybrid +135_3-3 Q0 MARCO_42_606423041-6 53 -0.307364 hybrid +135_3-3 Q0 MARCO_29_404771415-4 54 -0.313483 hybrid +135_3-3 Q0 MARCO_23_939486284-28 55 -0.316721 hybrid +135_3-3 Q0 MARCO_52_890712024-1 56 -0.317078 hybrid +135_3-3 Q0 MARCO_29_663181418-14 57 -0.319509 hybrid +135_3-3 Q0 MARCO_51_711815658-1 58 -0.325030 hybrid +135_3-3 Q0 MARCO_46_1273467208-1 59 -0.325603 hybrid +135_3-3 Q0 MARCO_07_259744883-2 60 -0.326042 hybrid +135_3-3 Q0 MARCO_55_1344604004-16 61 -0.327704 hybrid +135_3-3 Q0 MARCO_24_1305859786-1 62 -0.328563 hybrid +135_3-3 Q0 MARCO_18_438706474-2 63 -0.330585 hybrid +135_3-3 Q0 MARCO_17_4422212403-75 64 -0.334612 hybrid +135_3-3 Q0 MARCO_19_873500202-10 65 -0.334612 hybrid +135_3-3 Q0 MARCO_46_1271948653-5 66 -0.337118 hybrid +135_3-3 Q0 MARCO_36_1430817970-8 67 -0.337411 hybrid +135_3-3 Q0 MARCO_44_38020968-1 68 -0.338519 hybrid +135_3-3 Q0 MARCO_10_267564854-4 69 -0.338759 hybrid +135_3-3 Q0 MARCO_30_1661277542-7 70 -0.338759 hybrid +135_3-3 Q0 MARCO_40_743582683-2 71 -0.346014 hybrid +135_3-3 Q0 MARCO_20_18459747-17 72 -0.347190 hybrid +135_3-3 Q0 MARCO_25_520993524-1 73 -0.348116 hybrid +135_3-3 Q0 MARCO_25_1424666915-6 74 -0.349288 hybrid +135_3-3 Q0 MARCO_44_37969956-2 75 -0.350310 hybrid +135_3-3 Q0 MARCO_12_1748735394-16 76 -0.352798 hybrid +135_3-3 Q0 MARCO_20_57713615-5 77 -0.354638 hybrid +135_3-3 Q0 MARCO_34_1238100668-2 78 -0.354746 hybrid +135_3-3 Q0 MARCO_33_507273143-12 79 -0.360078 hybrid +135_3-3 Q0 MARCO_12_1748626937-6 80 -0.361747 hybrid +135_3-3 Q0 MARCO_20_26648209-4 81 -0.362419 hybrid +135_3-3 Q0 MARCO_25_1439013393-4 82 -0.363634 hybrid +135_3-3 Q0 MARCO_54_641742269-7 83 -0.365321 hybrid +135_3-3 Q0 MARCO_16_4027265437-33 84 -0.365874 hybrid +135_3-3 Q0 MARCO_10_68275442-4 85 -0.368130 hybrid +135_3-3 Q0 MARCO_11_200410230-3 86 -0.368686 hybrid +135_3-3 Q0 MARCO_20_18459747-10 87 -0.368860 hybrid +135_3-3 Q0 MARCO_16_2990644681-76 88 -0.372013 hybrid +135_3-3 Q0 MARCO_20_26359351-29 89 -0.373334 hybrid +135_3-3 Q0 KILT_12137080-2 90 -0.374476 hybrid +135_3-3 Q0 MARCO_30_151678069-11 91 -0.379922 hybrid +135_3-3 Q0 MARCO_12_1746765138-1 92 -0.381880 hybrid +135_3-3 Q0 MARCO_20_26778100-20 93 -0.382867 hybrid +135_3-3 Q0 MARCO_51_690417572-8 94 -0.383882 hybrid +135_3-3 Q0 MARCO_31_1657464088-12 95 -0.386837 hybrid +135_3-3 Q0 MARCO_20_58087911-13 96 -0.387559 hybrid +135_3-3 Q0 MARCO_25_1694799786-6 97 -0.388746 hybrid +135_3-3 Q0 MARCO_17_2518501468-1 98 -0.389391 hybrid +135_3-3 Q0 MARCO_25_521695352-20 99 -0.389804 hybrid +135_3-3 Q0 MARCO_12_1746627478-8 100 -0.390333 hybrid +135_3-5 Q0 MARCO_30_130263933-14 1 0.412988 hybrid +135_3-5 Q0 MARCO_37_346233273-2 2 0.250000 hybrid +135_3-5 Q0 MARCO_37_1255441378-2 3 0.212395 hybrid +135_3-5 Q0 MARCO_07_1012854612-6 4 0.181906 hybrid +135_3-5 Q0 MARCO_07_995026790-2 5 0.177827 hybrid +135_3-5 Q0 MARCO_37_346050039-5 6 0.135643 hybrid +135_3-5 Q0 MARCO_30_89583066-5 7 0.123718 hybrid +135_3-5 Q0 MARCO_08_164068813-1 8 0.106602 hybrid +135_3-5 Q0 MARCO_41_2134331902-13 9 0.081138 hybrid +135_3-5 Q0 MARCO_50_637347493-11 10 0.076009 hybrid +135_3-5 Q0 MARCO_52_362064717-4 11 0.065730 hybrid +135_3-5 Q0 MARCO_39_1519175279-2 12 0.056475 hybrid +135_3-5 Q0 MARCO_37_346201442-3 13 0.051109 hybrid +135_3-5 Q0 MARCO_21_407960518-7 14 0.048703 hybrid +135_3-5 Q0 MARCO_47_1278812055-3 15 0.008499 hybrid +135_3-5 Q0 MARCO_42_255755193-12 16 0.005125 hybrid +135_3-5 Q0 MARCO_20_237121457-3 17 -0.004628 hybrid +135_3-5 Q0 MARCO_26_470494149-3 18 -0.004909 hybrid +135_3-5 Q0 MARCO_37_1249866855-11 19 -0.032450 hybrid +135_3-5 Q0 MARCO_14_1140895128-24 20 -0.038227 hybrid +135_3-5 Q0 MARCO_14_1141495703-7 21 -0.043380 hybrid +135_3-5 Q0 MARCO_14_1140974147-12 22 -0.065284 hybrid +135_3-5 Q0 MARCO_37_346233273-10 23 -0.066401 hybrid +135_3-5 Q0 MARCO_15_1875621252-12 24 -0.067965 hybrid +135_3-5 Q0 MARCO_53_811537013-5 25 -0.072791 hybrid +135_3-5 Q0 MARCO_20_26261979-11 26 -0.079426 hybrid +135_3-5 Q0 MARCO_51_1631720949-3 27 -0.091564 hybrid +135_3-5 Q0 MARCO_03_443068025-8 28 -0.092208 hybrid +135_3-5 Q0 MARCO_31_902519758-7 29 -0.095693 hybrid +135_3-5 Q0 MARCO_37_346050039-2 30 -0.096130 hybrid +135_3-5 Q0 MARCO_20_26261979-35 31 -0.099996 hybrid +135_3-5 Q0 MARCO_47_1281991175-5 32 -0.102390 hybrid +135_3-5 Q0 MARCO_29_1687413549-1 33 -0.108699 hybrid +135_3-5 Q0 MARCO_03_443068025-1 34 -0.118973 hybrid +135_3-5 Q0 MARCO_37_346132850-26 35 -0.121976 hybrid +135_3-5 Q0 MARCO_50_637347493-14 36 -0.127104 hybrid +135_3-5 Q0 MARCO_37_346050039-6 37 -0.131603 hybrid +135_3-5 Q0 MARCO_53_736986031-5 38 -0.132262 hybrid +135_3-5 Q0 MARCO_48_1215546889-1 39 -0.136739 hybrid +135_3-5 Q0 MARCO_37_346050039-9 40 -0.142185 hybrid +135_3-5 Q0 MARCO_37_346233273-9 41 -0.146004 hybrid +135_3-5 Q0 MARCO_42_255755193-16 42 -0.148239 hybrid +135_3-5 Q0 MARCO_30_1083682444-10 43 -0.149093 hybrid +135_3-5 Q0 MARCO_14_1139811066-24 44 -0.149377 hybrid +135_3-5 Q0 MARCO_54_1474060584-4 45 -0.150494 hybrid +135_3-5 Q0 MARCO_02_1355928254-5 46 -0.152330 hybrid +135_3-5 Q0 MARCO_30_130372961-9 47 -0.155495 hybrid +135_3-5 Q0 MARCO_48_376303509-13 48 -0.157423 hybrid +135_3-5 Q0 MARCO_37_346050039-8 49 -0.158048 hybrid +135_3-5 Q0 MARCO_52_362126977-10 50 -0.178102 hybrid +135_3-5 Q0 MARCO_37_346250766-2 51 -0.183982 hybrid +135_3-5 Q0 MARCO_37_346132850-31 52 -0.185782 hybrid +135_3-5 Q0 MARCO_47_1278821470-3 53 -0.189807 hybrid +135_3-5 Q0 MARCO_37_346132850-10 54 -0.197314 hybrid +135_3-5 Q0 MARCO_14_1139685923-2 55 -0.198775 hybrid +135_3-5 Q0 MARCO_39_1519175279-9 56 -0.199660 hybrid +135_3-5 Q0 MARCO_14_1141386138-16 57 -0.205173 hybrid +135_3-5 Q0 MARCO_37_346050039-4 58 -0.210572 hybrid +135_3-5 Q0 MARCO_10_897439351-4 59 -0.218092 hybrid +135_3-5 Q0 MARCO_48_1542527139-23 60 -0.223935 hybrid +135_3-5 Q0 MARCO_00_1104033043-1 61 -0.225675 hybrid +135_3-5 Q0 MARCO_00_1104004750-1 62 -0.226979 hybrid +135_3-5 Q0 MARCO_20_26261979-26 63 -0.229124 hybrid +135_3-5 Q0 MARCO_29_27091784-5 64 -0.229443 hybrid +135_3-5 Q0 MARCO_37_1255441378-3 65 -0.230543 hybrid +135_3-5 Q0 MARCO_47_1278812055-1 66 -0.234639 hybrid +135_3-5 Q0 MARCO_14_1618673674-42 67 -0.244443 hybrid +135_3-5 Q0 MARCO_32_372359550-5 68 -0.244707 hybrid +135_3-5 Q0 MARCO_37_346233273-7 69 -0.248522 hybrid +135_3-5 Q0 MARCO_52_371953164-8 70 -0.250000 hybrid +135_3-5 Q0 MARCO_47_1278812055-4 71 -0.250378 hybrid +135_3-5 Q0 MARCO_12_1862095983-8 72 -0.251194 hybrid +135_3-5 Q0 MARCO_39_1519175279-18 73 -0.252082 hybrid +135_3-5 Q0 MARCO_53_731191764-4 74 -0.256000 hybrid +135_3-5 Q0 MARCO_20_237121457-13 75 -0.256750 hybrid +135_3-5 Q0 MARCO_48_376303509-12 76 -0.257243 hybrid +135_3-5 Q0 MARCO_07_995026790-4 77 -0.257668 hybrid +135_3-5 Q0 MARCO_14_1140895128-8 78 -0.258734 hybrid +135_3-5 Q0 MARCO_37_346263914-5 79 -0.259169 hybrid +135_3-5 Q0 MARCO_02_1355928254-4 80 -0.260425 hybrid +135_3-5 Q0 MARCO_20_26261979-6 81 -0.265948 hybrid +135_3-5 Q0 MARCO_28_1149100126-1 82 -0.267282 hybrid +135_3-5 Q0 MARCO_37_346132850-16 83 -0.271853 hybrid +135_3-5 Q0 MARCO_14_1141528588-9 84 -0.272758 hybrid +135_3-5 Q0 MARCO_20_26261979-27 85 -0.274618 hybrid +135_3-5 Q0 MARCO_37_346250766-6 86 -0.275485 hybrid +135_3-5 Q0 MARCO_39_1572295244-9 87 -0.278531 hybrid +135_3-5 Q0 MARCO_20_26261979-31 88 -0.278985 hybrid +135_3-5 Q0 MARCO_26_471012913-14 89 -0.280188 hybrid +135_3-5 Q0 MARCO_34_470445100-7 90 -0.282087 hybrid +135_3-5 Q0 MARCO_29_1010939897-7 91 -0.282652 hybrid +135_3-5 Q0 MARCO_33_507273143-12 92 -0.286811 hybrid +135_3-5 Q0 MARCO_50_637347493-6 93 -0.287631 hybrid +135_3-5 Q0 MARCO_35_131155613-2 94 -0.289810 hybrid +135_3-5 Q0 MARCO_39_1519175279-11 95 -0.290022 hybrid +135_3-5 Q0 MARCO_20_26261979-24 96 -0.290031 hybrid +135_3-5 Q0 MARCO_13_26160717-8 97 -0.290086 hybrid +135_3-5 Q0 MARCO_20_26261979-29 98 -0.290345 hybrid +135_3-5 Q0 MARCO_15_526524970-6 99 -0.290804 hybrid +135_3-5 Q0 MARCO_06_412425592-1 100 -0.291078 hybrid +135_4-1 Q0 MARCO_57_2138213254-10 1 0.250002 hybrid +135_4-1 Q0 MARCO_52_363071279-3 2 0.242568 hybrid +135_4-1 Q0 MARCO_46_1274376601-2 3 0.197632 hybrid +135_4-1 Q0 MARCO_42_162525279-7 4 0.137355 hybrid +135_4-1 Q0 MARCO_52_1377761263-2 5 0.092007 hybrid +135_4-1 Q0 MARCO_52_1377761263-4 6 0.071845 hybrid +135_4-1 Q0 MARCO_20_27580101-9 7 0.059278 hybrid +135_4-1 Q0 MARCO_40_172670674-4 8 0.042470 hybrid +135_4-1 Q0 MARCO_07_995662392-2 9 0.031248 hybrid +135_4-1 Q0 MARCO_21_870421898-3 10 -0.002615 hybrid +135_4-1 Q0 MARCO_52_363796560-2 11 -0.003335 hybrid +135_4-1 Q0 MARCO_00_723791909-3 12 -0.029941 hybrid +135_4-1 Q0 MARCO_40_739920341-8 13 -0.033069 hybrid +135_4-1 Q0 MARCO_08_1484380890-4 14 -0.049009 hybrid +135_4-1 Q0 MARCO_21_150922054-8 15 -0.064337 hybrid +135_4-1 Q0 MARCO_57_2139188855-11 16 -0.103719 hybrid +135_4-1 Q0 MARCO_41_2025017468-12 17 -0.113746 hybrid +135_4-1 Q0 MARCO_20_20844940-8 18 -0.120261 hybrid +135_4-1 Q0 MARCO_41_291543269-8 19 -0.124355 hybrid +135_4-1 Q0 MARCO_07_1004844203-3 20 -0.138319 hybrid +135_4-1 Q0 MARCO_50_1982204942-12 21 -0.141921 hybrid +135_4-1 Q0 MARCO_41_2024933693-9 22 -0.145024 hybrid +135_4-1 Q0 MARCO_46_1273627867-9 23 -0.152789 hybrid +135_4-1 Q0 MARCO_20_27196571-4 24 -0.155973 hybrid +135_4-1 Q0 MARCO_11_1465833397-4 25 -0.158831 hybrid +135_4-1 Q0 MARCO_52_1377761263-3 26 -0.165397 hybrid +135_4-1 Q0 MARCO_20_20299207-4 27 -0.165511 hybrid +135_4-1 Q0 MARCO_52_363099002-2 28 -0.168616 hybrid +135_4-1 Q0 MARCO_02_1751367700-4 29 -0.169138 hybrid +135_4-1 Q0 MARCO_25_1422733827-3 30 -0.170749 hybrid +135_4-1 Q0 MARCO_21_148924351-9 31 -0.179948 hybrid +135_4-1 Q0 MARCO_40_172333049-4 32 -0.182183 hybrid +135_4-1 Q0 MARCO_46_1271401812-7 33 -0.183437 hybrid +135_4-1 Q0 MARCO_21_870787348-2 34 -0.197488 hybrid +135_4-1 Q0 MARCO_07_1046434444-7 35 -0.208995 hybrid +135_4-1 Q0 MARCO_22_1060515534-5 36 -0.218893 hybrid +135_4-1 Q0 MARCO_52_363071279-2 37 -0.225543 hybrid +135_4-1 Q0 MARCO_23_900206012-3 38 -0.225988 hybrid +135_4-1 Q0 MARCO_36_999891978-2 39 -0.226458 hybrid +135_4-1 Q0 MARCO_44_842166472-16 40 -0.234385 hybrid +135_4-1 Q0 MARCO_22_1597432905-19 41 -0.237752 hybrid +135_4-1 Q0 MARCO_08_162941433-5 42 -0.243241 hybrid +135_4-1 Q0 MARCO_52_364000239-4 43 -0.248884 hybrid +135_4-1 Q0 MARCO_13_347035492-6 44 -0.249998 hybrid +135_4-1 Q0 MARCO_08_163968395-5 45 -0.251313 hybrid +135_4-1 Q0 MARCO_15_139789254-9 46 -0.258962 hybrid +135_4-1 Q0 MARCO_45_979222941-2 47 -0.261379 hybrid +135_4-1 Q0 MARCO_10_901126083-6 48 -0.261382 hybrid +135_4-1 Q0 MARCO_20_14386868-9 49 -0.261492 hybrid +135_4-1 Q0 MARCO_21_869759017-2 50 -0.265765 hybrid +135_4-1 Q0 MARCO_36_999891978-5 51 -0.266592 hybrid +135_4-1 Q0 MARCO_41_291543269-5 52 -0.269177 hybrid +135_4-1 Q0 MARCO_41_291543269-3 53 -0.273983 hybrid +135_4-1 Q0 MARCO_21_870151851-2 54 -0.276721 hybrid +135_4-1 Q0 MARCO_21_149389328-9 55 -0.283910 hybrid +135_4-1 Q0 MARCO_46_1273551634-2 56 -0.286452 hybrid +135_4-1 Q0 MARCO_20_21847852-10 57 -0.287790 hybrid +135_4-1 Q0 MARCO_45_1248655843-7 58 -0.294724 hybrid +135_4-1 Q0 MARCO_46_980151156-1 59 -0.295932 hybrid +135_4-1 Q0 MARCO_50_2766437432-4 60 -0.297562 hybrid +135_4-1 Q0 MARCO_40_739623650-5 61 -0.301867 hybrid +135_4-1 Q0 MARCO_46_1274315739-3 62 -0.302195 hybrid +135_4-1 Q0 MARCO_21_871559392-2 63 -0.304313 hybrid +135_4-1 Q0 MARCO_36_999891978-3 64 -0.307219 hybrid +135_4-1 Q0 MARCO_20_1169579573-4 65 -0.314182 hybrid +135_4-1 Q0 MARCO_06_410500018-4 66 -0.315110 hybrid +135_4-1 Q0 MARCO_48_1134296071-3 67 -0.315520 hybrid +135_4-1 Q0 MARCO_21_871572229-2 68 -0.316231 hybrid +135_4-1 Q0 MARCO_23_944932744-15 69 -0.318630 hybrid +135_4-1 Q0 MARCO_50_2381129650-6 70 -0.320344 hybrid +135_4-1 Q0 MARCO_40_746441647-12 71 -0.322765 hybrid +135_4-1 Q0 MARCO_04_956815082-17 72 -0.323600 hybrid +135_4-1 Q0 MARCO_41_877959294-2 73 -0.326174 hybrid +135_4-1 Q0 MARCO_56_1513090625-8 74 -0.326298 hybrid +135_4-1 Q0 MARCO_00_1585576391-4 75 -0.334315 hybrid +135_4-1 Q0 MARCO_27_1029245984-1 76 -0.334947 hybrid +135_4-1 Q0 MARCO_28_331560880-4 77 -0.335562 hybrid +135_4-1 Q0 MARCO_20_1169267221-4 78 -0.336512 hybrid +135_4-1 Q0 MARCO_32_375116849-2 79 -0.338271 hybrid +135_4-1 Q0 MARCO_22_1479996131-4 80 -0.340145 hybrid +135_4-1 Q0 MARCO_26_182237572-1 81 -0.346808 hybrid +135_4-1 Q0 MARCO_39_1519217107-3 82 -0.350400 hybrid +135_4-1 Q0 MARCO_57_110600970-8 83 -0.351378 hybrid +135_4-1 Q0 MARCO_57_1966181811-8 84 -0.352373 hybrid +135_4-1 Q0 MARCO_27_1755778410-4 85 -0.352946 hybrid +135_4-1 Q0 MARCO_34_1327793375-4 86 -0.353507 hybrid +135_4-1 Q0 MARCO_07_998230326-3 87 -0.356690 hybrid +135_4-1 Q0 MARCO_21_871135668-3 88 -0.358115 hybrid +135_4-1 Q0 MARCO_21_151778145-3 89 -0.359224 hybrid +135_4-1 Q0 MARCO_07_992393018-3 90 -0.359253 hybrid +135_4-1 Q0 MARCO_49_968020483-4 91 -0.359909 hybrid +135_4-1 Q0 MARCO_55_680644304-7 92 -0.361054 hybrid +135_4-1 Q0 MARCO_26_761167713-13 93 -0.364087 hybrid +135_4-1 Q0 MARCO_10_900458745-15 94 -0.365192 hybrid +135_4-1 Q0 MARCO_57_110680525-7 95 -0.366439 hybrid +135_4-1 Q0 MARCO_22_1480112427-3 96 -0.366658 hybrid +135_4-1 Q0 MARCO_08_163131777-13 97 -0.372232 hybrid +135_4-1 Q0 MARCO_20_17261213-2 98 -0.372302 hybrid +135_4-1 Q0 MARCO_36_999891978-4 99 -0.373202 hybrid +135_4-1 Q0 MARCO_20_1169586367-4 100 -0.373897 hybrid +136_1-1 Q0 MARCO_11_1511196274-1 1 0.344316 hybrid +136_1-1 Q0 MARCO_42_1359229219-1 2 0.312859 hybrid +136_1-1 Q0 MARCO_28_327932163-1 3 0.266827 hybrid +136_1-1 Q0 MARCO_42_1359229219-2 4 0.250875 hybrid +136_1-1 Q0 MARCO_50_1984649934-8 5 0.250002 hybrid +136_1-1 Q0 MARCO_50_1984649934-1 6 0.209973 hybrid +136_1-1 Q0 MARCO_21_1378115203-28 7 0.196482 hybrid +136_1-1 Q0 MARCO_50_1984649934-7 8 0.172311 hybrid +136_1-1 Q0 MARCO_00_1401261974-13 9 0.154734 hybrid +136_1-1 Q0 MARCO_57_1227170091-2 10 0.149744 hybrid +136_1-1 Q0 MARCO_04_143999592-1 11 0.131255 hybrid +136_1-1 Q0 MARCO_55_574781674-5 12 0.126703 hybrid +136_1-1 Q0 KILT_453736-12 13 0.126170 hybrid +136_1-1 Q0 MARCO_06_1615593549-101 14 0.118476 hybrid +136_1-1 Q0 KILT_5530-9 15 0.111191 hybrid +136_1-1 Q0 MARCO_42_1368592926-1 16 0.090714 hybrid +136_1-1 Q0 MARCO_27_1510298108-4 17 0.067647 hybrid +136_1-1 Q0 MARCO_16_4159902144-16 18 0.064268 hybrid +136_1-1 Q0 MARCO_06_1616419714-10 19 0.056711 hybrid +136_1-1 Q0 MARCO_50_1411564432-30 20 0.056061 hybrid +136_1-1 Q0 MARCO_50_1984649934-6 21 0.047791 hybrid +136_1-1 Q0 MARCO_06_1616419714-20 22 0.044443 hybrid +136_1-1 Q0 MARCO_42_1359198610-2 23 0.027168 hybrid +136_1-1 Q0 MARCO_05_424740033-34 24 0.025656 hybrid +136_1-1 Q0 MARCO_06_545026672-1 25 0.023683 hybrid +136_1-1 Q0 KILT_80128-12 26 0.018199 hybrid +136_1-1 Q0 MARCO_14_1526002240-94 27 0.013259 hybrid +136_1-1 Q0 MARCO_00_944207367-1 28 0.007947 hybrid +136_1-1 Q0 MARCO_00_944207367-2 29 0.007908 hybrid +136_1-1 Q0 MARCO_04_862540121-8 30 0.002631 hybrid +136_1-1 Q0 MARCO_19_235748733-4 31 -0.007509 hybrid +136_1-1 Q0 MARCO_21_1378115203-23 32 -0.012012 hybrid +136_1-1 Q0 MARCO_37_1186545077-11 33 -0.013468 hybrid +136_1-1 Q0 MARCO_52_1329623511-4 34 -0.013495 hybrid +136_1-1 Q0 MARCO_42_1368592926-5 35 -0.014731 hybrid +136_1-1 Q0 MARCO_06_322904718-1 36 -0.017461 hybrid +136_1-1 Q0 MARCO_10_371249796-4 37 -0.021907 hybrid +136_1-1 Q0 MARCO_55_571956134-6 38 -0.030715 hybrid +136_1-1 Q0 MARCO_06_1616419714-8 39 -0.032075 hybrid +136_1-1 Q0 MARCO_41_1361850806-44 40 -0.034700 hybrid +136_1-1 Q0 MARCO_41_1361850806-13 41 -0.044754 hybrid +136_1-1 Q0 MARCO_39_615043672-2 42 -0.047536 hybrid +136_1-1 Q0 MARCO_19_265183945-4 43 -0.053124 hybrid +136_1-1 Q0 MARCO_06_1615593549-87 44 -0.055170 hybrid +136_1-1 Q0 MARCO_50_1432093425-3 45 -0.057795 hybrid +136_1-1 Q0 MARCO_42_1368592926-9 46 -0.063056 hybrid +136_1-1 Q0 MARCO_06_1616419714-4 47 -0.064360 hybrid +136_1-1 Q0 MARCO_05_424740033-1 48 -0.069683 hybrid +136_1-1 Q0 MARCO_06_1615538550-22 49 -0.069949 hybrid +136_1-1 Q0 MARCO_06_1615538550-23 50 -0.070575 hybrid +136_1-1 Q0 KILT_453736-11 51 -0.070725 hybrid +136_1-1 Q0 MARCO_28_327932163-2 52 -0.072252 hybrid +136_1-1 Q0 MARCO_00_661672852-3 53 -0.076864 hybrid +136_1-1 Q0 MARCO_06_1615593549-151 54 -0.078729 hybrid +136_1-1 Q0 MARCO_42_1367290185-3 55 -0.079333 hybrid +136_1-1 Q0 MARCO_41_1361850806-46 56 -0.081254 hybrid +136_1-1 Q0 MARCO_41_1361850806-41 57 -0.085491 hybrid +136_1-1 Q0 MARCO_05_424740033-45 58 -0.090566 hybrid +136_1-1 Q0 MARCO_05_424740033-20 59 -0.095457 hybrid +136_1-1 Q0 MARCO_48_624451421-3 60 -0.098877 hybrid +136_1-1 Q0 MARCO_56_1033634981-19 61 -0.099550 hybrid +136_1-1 Q0 MARCO_11_1511196274-3 62 -0.104122 hybrid +136_1-1 Q0 MARCO_50_1984649934-3 63 -0.104560 hybrid +136_1-1 Q0 MARCO_41_1361850806-14 64 -0.107507 hybrid +136_1-1 Q0 MARCO_21_1378115203-25 65 -0.111360 hybrid +136_1-1 Q0 MARCO_20_1591427430-6 66 -0.115045 hybrid +136_1-1 Q0 MARCO_06_1616419714-9 67 -0.115442 hybrid +136_1-1 Q0 MARCO_06_1615106047-20 68 -0.119103 hybrid +136_1-1 Q0 MARCO_06_1615593549-74 69 -0.119172 hybrid +136_1-1 Q0 MARCO_19_235748733-8 70 -0.125548 hybrid +136_1-1 Q0 MARCO_42_1367221250-7 71 -0.125883 hybrid +136_1-1 Q0 MARCO_06_1902336129-1 72 -0.129605 hybrid +136_1-1 Q0 MARCO_41_1361850806-27 73 -0.132223 hybrid +136_1-1 Q0 MARCO_41_1361850806-2 74 -0.133820 hybrid +136_1-1 Q0 MARCO_06_1615106047-11 75 -0.134104 hybrid +136_1-1 Q0 MARCO_16_2852307220-18 76 -0.136291 hybrid +136_1-1 Q0 MARCO_41_1361850806-15 77 -0.137671 hybrid +136_1-1 Q0 KILT_453736-15 78 -0.141848 hybrid +136_1-1 Q0 MARCO_43_1280563415-23 79 -0.153394 hybrid +136_1-1 Q0 KILT_5530-7 80 -0.156226 hybrid +136_1-1 Q0 MARCO_50_1432093425-1 81 -0.161458 hybrid +136_1-1 Q0 MARCO_41_1361850806-38 82 -0.162647 hybrid +136_1-1 Q0 MARCO_26_1835738965-180 83 -0.163138 hybrid +136_1-1 Q0 MARCO_23_702973894-24 84 -0.165826 hybrid +136_1-1 Q0 MARCO_13_737502139-2 85 -0.166192 hybrid +136_1-1 Q0 MARCO_42_1368592926-3 86 -0.168789 hybrid +136_1-1 Q0 MARCO_03_1770719375-2 87 -0.169193 hybrid +136_1-1 Q0 MARCO_06_1615106047-8 88 -0.169775 hybrid +136_1-1 Q0 MARCO_34_1720669955-2 89 -0.170851 hybrid +136_1-1 Q0 MARCO_17_2892192733-3 90 -0.172597 hybrid +136_1-1 Q0 MARCO_50_1432093425-6 91 -0.173727 hybrid +136_1-1 Q0 MARCO_06_545026672-3 92 -0.178293 hybrid +136_1-1 Q0 MARCO_18_1300395573-11 93 -0.182748 hybrid +136_1-1 Q0 MARCO_41_1361850806-29 94 -0.184792 hybrid +136_1-1 Q0 MARCO_21_1378115203-19 95 -0.185093 hybrid +136_1-1 Q0 MARCO_06_1616419714-13 96 -0.186546 hybrid +136_1-1 Q0 MARCO_16_2852307220-7 97 -0.187016 hybrid +136_1-1 Q0 MARCO_41_1361850806-39 98 -0.188101 hybrid +136_1-1 Q0 KILT_57183612-3 99 -0.188846 hybrid +136_1-1 Q0 MARCO_42_1367674026-3 100 -0.195557 hybrid +136_1-11 Q0 MARCO_21_1378115203-28 1 0.250002 hybrid +136_1-11 Q0 MARCO_10_371249796-5 2 0.055850 hybrid +136_1-11 Q0 MARCO_57_1227170091-2 3 0.033400 hybrid +136_1-11 Q0 MARCO_42_1359229219-1 4 0.020725 hybrid +136_1-11 Q0 MARCO_56_1033634981-19 5 0.020099 hybrid +136_1-11 Q0 MARCO_42_1359229219-6 6 0.018408 hybrid +136_1-11 Q0 MARCO_41_1361850806-44 7 0.004865 hybrid +136_1-11 Q0 MARCO_50_1984649934-8 8 -0.008340 hybrid +136_1-11 Q0 MARCO_50_1984649934-6 9 -0.017890 hybrid +136_1-11 Q0 MARCO_33_178546655-41 10 -0.021177 hybrid +136_1-11 Q0 MARCO_00_1401261974-13 11 -0.023315 hybrid +136_1-11 Q0 MARCO_31_1434204145-6 12 -0.030447 hybrid +136_1-11 Q0 MARCO_10_371249796-4 13 -0.033752 hybrid +136_1-11 Q0 MARCO_50_1984649934-7 14 -0.046046 hybrid +136_1-11 Q0 MARCO_03_1476759938-9 15 -0.051559 hybrid +136_1-11 Q0 MARCO_03_1770719375-4 16 -0.058624 hybrid +136_1-11 Q0 MARCO_28_327932163-1 17 -0.065981 hybrid +136_1-11 Q0 MARCO_50_1984649934-1 18 -0.077301 hybrid +136_1-11 Q0 MARCO_53_358902315-8 19 -0.082421 hybrid +136_1-11 Q0 MARCO_27_40265189-5 20 -0.086921 hybrid +136_1-11 Q0 MARCO_05_424740033-34 21 -0.089110 hybrid +136_1-11 Q0 MARCO_42_1359229219-2 22 -0.093418 hybrid +136_1-11 Q0 MARCO_06_1902336129-1 23 -0.095727 hybrid +136_1-11 Q0 MARCO_06_322904718-1 24 -0.100678 hybrid +136_1-11 Q0 MARCO_06_1616419714-13 25 -0.105205 hybrid +136_1-11 Q0 MARCO_26_1835738965-180 26 -0.108813 hybrid +136_1-11 Q0 MARCO_41_1361850806-13 27 -0.109209 hybrid +136_1-11 Q0 KILT_453736-12 28 -0.124747 hybrid +136_1-11 Q0 MARCO_01_1174860585-4 29 -0.124965 hybrid +136_1-11 Q0 MARCO_13_737502139-2 30 -0.128361 hybrid +136_1-11 Q0 MARCO_42_1359198610-2 31 -0.129653 hybrid +136_1-11 Q0 KILT_1270750-14 32 -0.142894 hybrid +136_1-11 Q0 MARCO_55_571956134-6 33 -0.156776 hybrid +136_1-11 Q0 MARCO_50_1508368359-30 34 -0.170182 hybrid +136_1-11 Q0 MARCO_50_2374302020-22 35 -0.179340 hybrid +136_1-11 Q0 MARCO_11_1511196274-1 36 -0.186583 hybrid +136_1-11 Q0 MARCO_27_1510298108-4 37 -0.187614 hybrid +136_1-11 Q0 MARCO_06_1616419714-20 38 -0.189915 hybrid +136_1-11 Q0 MARCO_41_1361850806-46 39 -0.190425 hybrid +136_1-11 Q0 MARCO_19_235748733-4 40 -0.199173 hybrid +136_1-11 Q0 MARCO_06_1605036905-4 41 -0.204476 hybrid +136_1-11 Q0 MARCO_41_1361850806-19 42 -0.205315 hybrid +136_1-11 Q0 MARCO_37_1186545077-11 43 -0.207743 hybrid +136_1-11 Q0 MARCO_39_615043672-2 44 -0.212515 hybrid +136_1-11 Q0 MARCO_14_1526002240-94 45 -0.213417 hybrid +136_1-11 Q0 MARCO_03_1770719375-3 46 -0.214395 hybrid +136_1-11 Q0 MARCO_21_1378115203-25 47 -0.221787 hybrid +136_1-11 Q0 MARCO_55_574781674-5 48 -0.227802 hybrid +136_1-11 Q0 MARCO_41_1199012835-33 49 -0.229164 hybrid +136_1-11 Q0 MARCO_04_865649090-20 50 -0.229657 hybrid +136_1-11 Q0 MARCO_50_1984649934-3 51 -0.231076 hybrid +136_1-11 Q0 MARCO_30_382247801-3 52 -0.231658 hybrid +136_1-11 Q0 MARCO_19_235748733-3 53 -0.233747 hybrid +136_1-11 Q0 MARCO_28_327932163-2 54 -0.233778 hybrid +136_1-11 Q0 MARCO_21_1376381125-19 55 -0.236685 hybrid +136_1-11 Q0 MARCO_16_4159902144-16 56 -0.236758 hybrid +136_1-11 Q0 MARCO_06_1616419714-19 57 -0.237929 hybrid +136_1-11 Q0 MARCO_07_536012807-29 58 -0.238589 hybrid +136_1-11 Q0 MARCO_03_1476759938-7 59 -0.239357 hybrid +136_1-11 Q0 KILT_80128-12 60 -0.247874 hybrid +136_1-11 Q0 MARCO_03_1735103357-1 61 -0.249998 hybrid +136_1-11 Q0 MARCO_16_1664628160-4 62 -0.250312 hybrid +136_1-11 Q0 MARCO_05_424740033-24 63 -0.251821 hybrid +136_1-11 Q0 MARCO_57_1271472316-1 64 -0.256331 hybrid +136_1-11 Q0 MARCO_06_1616419714-9 65 -0.257397 hybrid +136_1-11 Q0 MARCO_23_1084651137-9 66 -0.258369 hybrid +136_1-11 Q0 KILT_41730508-1 67 -0.258592 hybrid +136_1-11 Q0 MARCO_00_1377517146-1 68 -0.260309 hybrid +136_1-11 Q0 MARCO_06_1615593549-74 69 -0.262668 hybrid +136_1-11 Q0 MARCO_39_618236320-17 70 -0.262827 hybrid +136_1-11 Q0 KILT_5530-9 71 -0.264643 hybrid +136_1-11 Q0 MARCO_41_1361850806-14 72 -0.269314 hybrid +136_1-11 Q0 MARCO_00_944207367-2 73 -0.272233 hybrid +136_1-11 Q0 MARCO_09_970603565-11 74 -0.277365 hybrid +136_1-11 Q0 MARCO_42_1368592926-1 75 -0.280239 hybrid +136_1-11 Q0 KILT_12075981-4 76 -0.282529 hybrid +136_1-11 Q0 MARCO_18_1822202480-12 77 -0.284340 hybrid +136_1-11 Q0 MARCO_48_624451421-3 78 -0.286730 hybrid +136_1-11 Q0 MARCO_06_1601700563-2 79 -0.287967 hybrid +136_1-11 Q0 MARCO_21_1378115203-23 80 -0.288477 hybrid +136_1-11 Q0 MARCO_42_1367221250-7 81 -0.290187 hybrid +136_1-11 Q0 MARCO_41_1361850806-15 82 -0.290308 hybrid +136_1-11 Q0 MARCO_41_1361850806-39 83 -0.290389 hybrid +136_1-11 Q0 MARCO_04_862540121-8 84 -0.291095 hybrid +136_1-11 Q0 MARCO_42_1367674026-3 85 -0.291311 hybrid +136_1-11 Q0 MARCO_42_1367290185-3 86 -0.291445 hybrid +136_1-11 Q0 MARCO_04_321120052-6 87 -0.293537 hybrid +136_1-11 Q0 KILT_58528764-18 88 -0.296203 hybrid +136_1-11 Q0 MARCO_42_1368592926-10 89 -0.297537 hybrid +136_1-11 Q0 MARCO_04_143999592-1 90 -0.297881 hybrid +136_1-11 Q0 MARCO_18_1300395573-11 91 -0.301273 hybrid +136_1-11 Q0 MARCO_28_1803254165-10 92 -0.302876 hybrid +136_1-11 Q0 MARCO_26_899502779-3 93 -0.303351 hybrid +136_1-11 Q0 MARCO_39_618236320-3 94 -0.312593 hybrid +136_1-11 Q0 MARCO_03_1476759938-4 95 -0.313585 hybrid +136_1-11 Q0 MARCO_41_1361850806-21 96 -0.313761 hybrid +136_1-11 Q0 MARCO_52_1329623511-4 97 -0.315983 hybrid +136_1-11 Q0 MARCO_03_1700874885-2 98 -0.316078 hybrid +136_1-11 Q0 MARCO_10_831411560-2 99 -0.318836 hybrid +136_1-11 Q0 MARCO_05_424740033-48 100 -0.322783 hybrid +136_1-13 Q0 MARCO_06_1601700563-2 1 0.418322 hybrid +136_1-13 Q0 MARCO_42_1367967096-1 2 0.351361 hybrid +136_1-13 Q0 MARCO_06_1605036905-4 3 0.289761 hybrid +136_1-13 Q0 MARCO_39_618236320-17 4 0.180730 hybrid +136_1-13 Q0 MARCO_11_1511196274-1 5 0.161432 hybrid +136_1-13 Q0 MARCO_48_624451421-3 6 0.158925 hybrid +136_1-13 Q0 MARCO_06_1902336129-1 7 0.140727 hybrid +136_1-13 Q0 MARCO_39_615043672-1 8 0.122566 hybrid +136_1-13 Q0 MARCO_10_831411560-2 9 0.109575 hybrid +136_1-13 Q0 MARCO_11_1511196274-3 10 0.108883 hybrid +136_1-13 Q0 MARCO_28_327932163-1 11 0.078510 hybrid +136_1-13 Q0 MARCO_21_1376381125-19 12 0.070129 hybrid +136_1-13 Q0 MARCO_06_1616419714-19 13 0.061339 hybrid +136_1-13 Q0 MARCO_37_1186529676-12 14 0.057797 hybrid +136_1-13 Q0 MARCO_50_1984649934-1 15 0.043697 hybrid +136_1-13 Q0 MARCO_04_143999592-1 16 0.039713 hybrid +136_1-13 Q0 MARCO_42_1368592926-5 17 0.009619 hybrid +136_1-13 Q0 MARCO_37_1186529676-5 18 0.001574 hybrid +136_1-13 Q0 MARCO_00_661672852-8 19 -0.003353 hybrid +136_1-13 Q0 MARCO_06_1902336129-2 20 -0.003397 hybrid +136_1-13 Q0 MARCO_00_944207367-1 21 -0.005498 hybrid +136_1-13 Q0 MARCO_07_536012807-4 22 -0.006919 hybrid +136_1-13 Q0 MARCO_42_1367221250-7 23 -0.008997 hybrid +136_1-13 Q0 MARCO_06_1616419714-4 24 -0.009860 hybrid +136_1-13 Q0 MARCO_50_1508368359-30 25 -0.018837 hybrid +136_1-13 Q0 MARCO_44_496588507-5 26 -0.019945 hybrid +136_1-13 Q0 MARCO_39_615043672-2 27 -0.025716 hybrid +136_1-13 Q0 MARCO_04_865649090-20 28 -0.034525 hybrid +136_1-13 Q0 MARCO_21_1378115203-25 29 -0.034910 hybrid +136_1-13 Q0 MARCO_42_1368592926-1 30 -0.035660 hybrid +136_1-13 Q0 MARCO_42_1367967096-6 31 -0.039992 hybrid +136_1-13 Q0 MARCO_18_1301359057-26 32 -0.041854 hybrid +136_1-13 Q0 MARCO_21_1378115203-28 33 -0.043656 hybrid +136_1-13 Q0 MARCO_06_545026672-1 34 -0.049243 hybrid +136_1-13 Q0 MARCO_50_1984649934-6 35 -0.049618 hybrid +136_1-13 Q0 MARCO_21_1378115203-1 36 -0.056605 hybrid +136_1-13 Q0 MARCO_42_1359229219-1 37 -0.062770 hybrid +136_1-13 Q0 MARCO_37_1186545077-10 38 -0.064347 hybrid +136_1-13 Q0 MARCO_50_1984649934-8 39 -0.066966 hybrid +136_1-13 Q0 MARCO_26_1835738965-180 40 -0.073402 hybrid +136_1-13 Q0 MARCO_06_1604749305-2 41 -0.073472 hybrid +136_1-13 Q0 MARCO_50_1984649934-7 42 -0.073818 hybrid +136_1-13 Q0 MARCO_42_1368592926-10 43 -0.091816 hybrid +136_1-13 Q0 MARCO_07_544552818-85 44 -0.091862 hybrid +136_1-13 Q0 MARCO_06_1616419714-21 45 -0.095506 hybrid +136_1-13 Q0 MARCO_42_1359201370-6 46 -0.098324 hybrid +136_1-13 Q0 MARCO_06_322904718-1 47 -0.099119 hybrid +136_1-13 Q0 MARCO_34_1720669955-2 48 -0.100651 hybrid +136_1-13 Q0 MARCO_19_2552699673-3 49 -0.100850 hybrid +136_1-13 Q0 MARCO_42_1359229219-6 50 -0.110242 hybrid +136_1-13 Q0 MARCO_04_865649090-2 51 -0.113822 hybrid +136_1-13 Q0 MARCO_42_1359229219-2 52 -0.117182 hybrid +136_1-13 Q0 MARCO_28_327932163-2 53 -0.117958 hybrid +136_1-13 Q0 MARCO_42_1359229219-5 54 -0.118610 hybrid +136_1-13 Q0 MARCO_43_1280563415-23 55 -0.131142 hybrid +136_1-13 Q0 MARCO_03_1770719375-4 56 -0.132016 hybrid +136_1-13 Q0 MARCO_07_536012807-29 57 -0.138518 hybrid +136_1-13 Q0 MARCO_39_678034715-11 58 -0.140244 hybrid +136_1-13 Q0 MARCO_48_624451421-2 59 -0.141393 hybrid +136_1-13 Q0 MARCO_42_1368592926-7 60 -0.141967 hybrid +136_1-13 Q0 MARCO_33_1593442632-44 61 -0.143533 hybrid +136_1-13 Q0 MARCO_06_1615593549-75 62 -0.152930 hybrid +136_1-13 Q0 MARCO_06_1616419714-13 63 -0.153885 hybrid +136_1-13 Q0 MARCO_48_624451421-1 64 -0.157704 hybrid +136_1-13 Q0 MARCO_21_1378115203-27 65 -0.162125 hybrid +136_1-13 Q0 MARCO_07_536012807-14 66 -0.164425 hybrid +136_1-13 Q0 MARCO_42_1367290185-3 67 -0.165796 hybrid +136_1-13 Q0 MARCO_42_1367674026-4 68 -0.166227 hybrid +136_1-13 Q0 MARCO_06_1604175481-1 69 -0.170694 hybrid +136_1-13 Q0 MARCO_00_661672852-5 70 -0.171197 hybrid +136_1-13 Q0 MARCO_06_1615593549-130 71 -0.171371 hybrid +136_1-13 Q0 MARCO_06_1615538550-19 72 -0.172136 hybrid +136_1-13 Q0 MARCO_42_1367674026-3 73 -0.173262 hybrid +136_1-13 Q0 KILT_12075981-4 74 -0.173575 hybrid +136_1-13 Q0 MARCO_06_1616419714-8 75 -0.173802 hybrid +136_1-13 Q0 MARCO_06_1616419714-5 76 -0.177918 hybrid +136_1-13 Q0 MARCO_48_623265237-2 77 -0.182075 hybrid +136_1-13 Q0 MARCO_06_1615538550-23 78 -0.183513 hybrid +136_1-13 Q0 MARCO_43_1280563415-2 79 -0.184189 hybrid +136_1-13 Q0 MARCO_42_1368592926-6 80 -0.184558 hybrid +136_1-13 Q0 MARCO_06_1616419714-1 81 -0.185168 hybrid +136_1-13 Q0 MARCO_06_1605036905-3 82 -0.186414 hybrid +136_1-13 Q0 MARCO_26_1837852331-33 83 -0.188494 hybrid +136_1-13 Q0 MARCO_42_1368592926-9 84 -0.188670 hybrid +136_1-13 Q0 MARCO_06_1604749305-1 85 -0.189214 hybrid +136_1-13 Q0 MARCO_42_1367967096-5 86 -0.189448 hybrid +136_1-13 Q0 MARCO_05_424740033-50 87 -0.190503 hybrid +136_1-13 Q0 MARCO_33_1593442632-45 88 -0.192187 hybrid +136_1-13 Q0 MARCO_33_1593442632-46 89 -0.192187 hybrid +136_1-13 Q0 MARCO_16_1906878129-10 90 -0.193206 hybrid +136_1-13 Q0 MARCO_19_256449128-40 91 -0.193208 hybrid +136_1-13 Q0 MARCO_18_1301359057-52 92 -0.193208 hybrid +136_1-13 Q0 MARCO_18_2155014376-9 93 -0.193208 hybrid +136_1-13 Q0 MARCO_17_2364913107-14 94 -0.193208 hybrid +136_1-13 Q0 MARCO_19_256712149-80 95 -0.193208 hybrid +136_1-13 Q0 MARCO_19_256511183-26 96 -0.193208 hybrid +136_1-13 Q0 MARCO_19_235748733-9 97 -0.193208 hybrid +136_1-13 Q0 MARCO_16_1906893262-25 98 -0.193208 hybrid +136_1-13 Q0 MARCO_16_4105786320-22 99 -0.193208 hybrid +136_1-13 Q0 MARCO_19_573698239-88 100 -0.193208 hybrid +136_1-3 Q0 MARCO_42_1359229219-1 1 0.397040 hybrid +136_1-3 Q0 MARCO_42_1368592926-2 2 0.326644 hybrid +136_1-3 Q0 MARCO_06_1615593549-44 3 0.271643 hybrid +136_1-3 Q0 KILT_453736-5 4 0.262705 hybrid +136_1-3 Q0 MARCO_31_1434204145-6 5 0.250000 hybrid +136_1-3 Q0 MARCO_57_1227170091-2 6 0.244259 hybrid +136_1-3 Q0 MARCO_19_235748733-4 7 0.222341 hybrid +136_1-3 Q0 MARCO_06_1615593549-27 8 0.170314 hybrid +136_1-3 Q0 MARCO_06_1615593549-25 9 0.163427 hybrid +136_1-3 Q0 MARCO_19_235748733-3 10 0.159673 hybrid +136_1-3 Q0 MARCO_42_1368592926-4 11 0.158288 hybrid +136_1-3 Q0 MARCO_17_2892192733-3 12 0.118890 hybrid +136_1-3 Q0 MARCO_51_116973976-2 13 0.105522 hybrid +136_1-3 Q0 MARCO_21_1378115203-23 14 0.081788 hybrid +136_1-3 Q0 MARCO_11_1511196274-1 15 0.032929 hybrid +136_1-3 Q0 MARCO_06_1615593549-62 16 0.029415 hybrid +136_1-3 Q0 MARCO_06_1615593549-45 17 0.008088 hybrid +136_1-3 Q0 MARCO_11_1511196274-4 18 -0.048371 hybrid +136_1-3 Q0 KILT_179342-6 19 -0.052921 hybrid +136_1-3 Q0 MARCO_34_1725136735-2 20 -0.055088 hybrid +136_1-3 Q0 MARCO_06_1615593549-76 21 -0.063273 hybrid +136_1-3 Q0 MARCO_55_574781674-5 22 -0.063388 hybrid +136_1-3 Q0 MARCO_11_1427639568-7 23 -0.065994 hybrid +136_1-3 Q0 MARCO_39_618236320-16 24 -0.074223 hybrid +136_1-3 Q0 KILT_53404298-5 25 -0.081224 hybrid +136_1-3 Q0 MARCO_46_524806126-1 26 -0.119783 hybrid +136_1-3 Q0 MARCO_06_1605969875-3 27 -0.140600 hybrid +136_1-3 Q0 MARCO_06_1615593549-26 28 -0.156713 hybrid +136_1-3 Q0 MARCO_06_1615593549-29 29 -0.161559 hybrid +136_1-3 Q0 MARCO_48_624451421-2 30 -0.166024 hybrid +136_1-3 Q0 MARCO_42_1367674026-3 31 -0.167559 hybrid +136_1-3 Q0 MARCO_06_1615593549-66 32 -0.173286 hybrid +136_1-3 Q0 MARCO_28_327932163-2 33 -0.181019 hybrid +136_1-3 Q0 MARCO_06_1615593549-35 34 -0.181814 hybrid +136_1-3 Q0 MARCO_05_424740033-34 35 -0.205404 hybrid +136_1-3 Q0 KILT_57183612-3 36 -0.207413 hybrid +136_1-3 Q0 KILT_453736-9 37 -0.213805 hybrid +136_1-3 Q0 MARCO_21_1388139780-6 38 -0.214530 hybrid +136_1-3 Q0 MARCO_16_1906893262-2 39 -0.219323 hybrid +136_1-3 Q0 MARCO_06_1615593549-56 40 -0.220277 hybrid +136_1-3 Q0 MARCO_06_1615593549-74 41 -0.229903 hybrid +136_1-3 Q0 MARCO_06_322904718-1 42 -0.232532 hybrid +136_1-3 Q0 MARCO_42_1368592926-3 43 -0.234469 hybrid +136_1-3 Q0 MARCO_06_1615593549-28 44 -0.236953 hybrid +136_1-3 Q0 KILT_453736-6 45 -0.242745 hybrid +136_1-3 Q0 MARCO_21_1378115203-19 46 -0.243945 hybrid +136_1-3 Q0 MARCO_50_2128988370-50 47 -0.250000 hybrid +136_1-3 Q0 MARCO_06_1615593549-47 48 -0.251588 hybrid +136_1-3 Q0 KILT_453736-12 49 -0.252350 hybrid +136_1-3 Q0 MARCO_05_424740033-19 50 -0.255404 hybrid +136_1-3 Q0 MARCO_04_865649090-20 51 -0.256969 hybrid +136_1-3 Q0 MARCO_06_1615593549-142 52 -0.258047 hybrid +136_1-3 Q0 MARCO_06_1615538550-39 53 -0.258047 hybrid +136_1-3 Q0 MARCO_06_1615593549-42 54 -0.258407 hybrid +136_1-3 Q0 MARCO_06_1615593549-48 55 -0.261689 hybrid +136_1-3 Q0 MARCO_00_944207367-1 56 -0.262661 hybrid +136_1-3 Q0 MARCO_21_1378115203-13 57 -0.263698 hybrid +136_1-3 Q0 MARCO_06_1615593549-144 58 -0.267556 hybrid +136_1-3 Q0 MARCO_06_1615538550-41 59 -0.267556 hybrid +136_1-3 Q0 MARCO_06_1615593549-65 60 -0.268212 hybrid +136_1-3 Q0 MARCO_42_1359229219-2 61 -0.270713 hybrid +136_1-3 Q0 MARCO_42_1368592926-1 62 -0.272135 hybrid +136_1-3 Q0 KILT_60387895-18 63 -0.278964 hybrid +136_1-3 Q0 MARCO_06_1615593549-67 64 -0.283625 hybrid +136_1-3 Q0 MARCO_06_1615593549-83 65 -0.285412 hybrid +136_1-3 Q0 MARCO_05_424740033-20 66 -0.288266 hybrid +136_1-3 Q0 MARCO_34_1748142224-2 67 -0.294653 hybrid +136_1-3 Q0 MARCO_14_1388732263-5 68 -0.296746 hybrid +136_1-3 Q0 MARCO_43_41941507-4 69 -0.304290 hybrid +136_1-3 Q0 MARCO_28_327932163-1 70 -0.305162 hybrid +136_1-3 Q0 MARCO_04_473062102-4 71 -0.308802 hybrid +136_1-3 Q0 MARCO_13_737502139-2 72 -0.310894 hybrid +136_1-3 Q0 MARCO_06_1616419714-10 73 -0.312108 hybrid +136_1-3 Q0 KILT_453736-14 74 -0.315429 hybrid +136_1-3 Q0 MARCO_36_997229277-1 75 -0.317730 hybrid +136_1-3 Q0 MARCO_05_424740033-33 76 -0.318771 hybrid +136_1-3 Q0 MARCO_06_1615593549-111 77 -0.320717 hybrid +136_1-3 Q0 MARCO_05_424740033-3 78 -0.320827 hybrid +136_1-3 Q0 MARCO_50_1984649934-6 79 -0.320901 hybrid +136_1-3 Q0 MARCO_27_1510298108-3 80 -0.321707 hybrid +136_1-3 Q0 MARCO_06_1615538550-4 81 -0.323521 hybrid +136_1-3 Q0 MARCO_00_661672852-2 82 -0.325257 hybrid +136_1-3 Q0 MARCO_21_1378115203-22 83 -0.328190 hybrid +136_1-3 Q0 MARCO_42_1359201370-6 84 -0.328388 hybrid +136_1-3 Q0 MARCO_17_2959044550-12 85 -0.332818 hybrid +136_1-3 Q0 MARCO_37_1186545077-11 86 -0.335043 hybrid +136_1-3 Q0 MARCO_56_806901575-3 87 -0.335619 hybrid +136_1-3 Q0 MARCO_03_1463867408-1 88 -0.338021 hybrid +136_1-3 Q0 KILT_16321182-2 89 -0.339294 hybrid +136_1-3 Q0 MARCO_06_1615538550-25 90 -0.339677 hybrid +136_1-3 Q0 MARCO_06_1615593549-49 91 -0.344059 hybrid +136_1-3 Q0 MARCO_05_424740033-31 92 -0.345460 hybrid +136_1-3 Q0 MARCO_06_1615593549-51 93 -0.345584 hybrid +136_1-3 Q0 MARCO_17_1205403697-1 94 -0.348376 hybrid +136_1-3 Q0 MARCO_05_424740033-48 95 -0.349540 hybrid +136_1-3 Q0 MARCO_05_424740033-2 96 -0.350867 hybrid +136_1-3 Q0 MARCO_33_1593442632-41 97 -0.353037 hybrid +136_1-3 Q0 MARCO_02_1884620640-8 98 -0.354901 hybrid +136_1-3 Q0 MARCO_06_1902336129-1 99 -0.358356 hybrid +136_1-3 Q0 MARCO_03_1770719375-2 100 -0.359116 hybrid +136_1-5 Q0 MARCO_42_1368592926-4 1 0.448140 hybrid +136_1-5 Q0 MARCO_06_1615593549-127 2 0.377386 hybrid +136_1-5 Q0 MARCO_17_2959044550-12 3 0.320624 hybrid +136_1-5 Q0 MARCO_21_1378115203-25 4 0.278116 hybrid +136_1-5 Q0 MARCO_42_1359229219-1 5 0.258347 hybrid +136_1-5 Q0 MARCO_11_1511196274-4 6 0.256982 hybrid +136_1-5 Q0 MARCO_06_1616419714-10 7 0.250001 hybrid +136_1-5 Q0 MARCO_05_424740033-46 8 0.247367 hybrid +136_1-5 Q0 MARCO_05_424740033-19 9 0.209791 hybrid +136_1-5 Q0 KILT_453736-5 10 0.188597 hybrid +136_1-5 Q0 MARCO_21_1378115203-26 11 0.138894 hybrid +136_1-5 Q0 MARCO_06_1615593549-126 12 0.137686 hybrid +136_1-5 Q0 MARCO_05_424740033-13 13 0.110135 hybrid +136_1-5 Q0 MARCO_06_1615593549-116 14 0.093675 hybrid +136_1-5 Q0 MARCO_06_1615538550-11 15 0.080587 hybrid +136_1-5 Q0 MARCO_06_1615593549-16 16 0.080587 hybrid +136_1-5 Q0 MARCO_00_661672852-3 17 0.072067 hybrid +136_1-5 Q0 MARCO_06_1615593549-112 18 0.047498 hybrid +136_1-5 Q0 MARCO_06_1615593549-26 19 0.031924 hybrid +136_1-5 Q0 MARCO_06_1615538550-41 20 0.024614 hybrid +136_1-5 Q0 MARCO_06_1615593549-144 21 0.024614 hybrid +136_1-5 Q0 MARCO_06_1615593549-132 22 0.003088 hybrid +136_1-5 Q0 MARCO_21_1378115203-23 23 -0.000760 hybrid +136_1-5 Q0 MARCO_06_1615593549-35 24 -0.014736 hybrid +136_1-5 Q0 MARCO_06_1615538550-30 25 -0.017620 hybrid +136_1-5 Q0 KILT_80128-12 26 -0.017639 hybrid +136_1-5 Q0 MARCO_00_944207367-1 27 -0.021060 hybrid +136_1-5 Q0 MARCO_06_545026672-5 28 -0.021568 hybrid +136_1-5 Q0 MARCO_06_1615593549-67 29 -0.039938 hybrid +136_1-5 Q0 MARCO_06_1615593549-118 30 -0.042319 hybrid +136_1-5 Q0 MARCO_42_1359229219-3 31 -0.048143 hybrid +136_1-5 Q0 MARCO_06_1615593549-86 32 -0.049737 hybrid +136_1-5 Q0 MARCO_06_1615538550-15 33 -0.052360 hybrid +136_1-5 Q0 MARCO_25_529339517-2 34 -0.054282 hybrid +136_1-5 Q0 KILT_53404298-5 35 -0.074197 hybrid +136_1-5 Q0 KILT_179342-6 36 -0.080423 hybrid +136_1-5 Q0 MARCO_37_1186545077-10 37 -0.084711 hybrid +136_1-5 Q0 MARCO_39_615043672-2 38 -0.087011 hybrid +136_1-5 Q0 MARCO_42_1368592926-2 39 -0.091870 hybrid +136_1-5 Q0 MARCO_42_1368592926-5 40 -0.097063 hybrid +136_1-5 Q0 MARCO_50_1411564432-30 41 -0.098740 hybrid +136_1-5 Q0 MARCO_06_1615593549-65 42 -0.099308 hybrid +136_1-5 Q0 MARCO_06_1615593549-48 43 -0.100133 hybrid +136_1-5 Q0 MARCO_39_677953001-24 44 -0.101577 hybrid +136_1-5 Q0 MARCO_37_1186545077-12 45 -0.104880 hybrid +136_1-5 Q0 MARCO_20_485357459-4 46 -0.107445 hybrid +136_1-5 Q0 MARCO_06_1615593549-106 47 -0.107643 hybrid +136_1-5 Q0 MARCO_42_1359229219-5 48 -0.109668 hybrid +136_1-5 Q0 MARCO_48_624451421-2 49 -0.114399 hybrid +136_1-5 Q0 MARCO_03_1770719375-2 50 -0.115345 hybrid +136_1-5 Q0 MARCO_00_661672852-2 51 -0.118466 hybrid +136_1-5 Q0 MARCO_06_1615593549-119 52 -0.119975 hybrid +136_1-5 Q0 MARCO_06_1615538550-40 53 -0.123364 hybrid +136_1-5 Q0 MARCO_06_1615593549-143 54 -0.123364 hybrid +136_1-5 Q0 MARCO_06_1615593549-140 55 -0.126834 hybrid +136_1-5 Q0 MARCO_06_1615538550-37 56 -0.126837 hybrid +136_1-5 Q0 MARCO_06_1615593549-102 57 -0.129506 hybrid +136_1-5 Q0 MARCO_06_1615593549-98 58 -0.129963 hybrid +136_1-5 Q0 MARCO_06_1615593549-133 59 -0.137958 hybrid +136_1-5 Q0 MARCO_06_1615106047-11 60 -0.158788 hybrid +136_1-5 Q0 MARCO_37_1186545077-9 61 -0.161664 hybrid +136_1-5 Q0 MARCO_06_1615538550-32 62 -0.163695 hybrid +136_1-5 Q0 MARCO_06_1615593549-109 63 -0.170192 hybrid +136_1-5 Q0 MARCO_06_1615593549-62 64 -0.171566 hybrid +136_1-5 Q0 MARCO_51_116973976-2 65 -0.174286 hybrid +136_1-5 Q0 MARCO_06_1605969875-3 66 -0.178016 hybrid +136_1-5 Q0 MARCO_06_1615538550-4 67 -0.179713 hybrid +136_1-5 Q0 MARCO_16_4159902144-16 68 -0.179930 hybrid +136_1-5 Q0 MARCO_06_1615593549-92 69 -0.187961 hybrid +136_1-5 Q0 MARCO_11_1511196274-1 70 -0.189332 hybrid +136_1-5 Q0 MARCO_06_1615593549-76 71 -0.194494 hybrid +136_1-5 Q0 MARCO_57_1227170091-2 72 -0.195987 hybrid +136_1-5 Q0 MARCO_21_1378115203-13 73 -0.196239 hybrid +136_1-5 Q0 MARCO_05_424740033-20 74 -0.197558 hybrid +136_1-5 Q0 MARCO_06_1615593549-51 75 -0.198685 hybrid +136_1-5 Q0 MARCO_06_1615593549-39 76 -0.203260 hybrid +136_1-5 Q0 MARCO_44_101843601-59 77 -0.203632 hybrid +136_1-5 Q0 MARCO_06_1615593549-49 78 -0.206589 hybrid +136_1-5 Q0 MARCO_06_1615593549-41 79 -0.207110 hybrid +136_1-5 Q0 KILT_453736-14 80 -0.207733 hybrid +136_1-5 Q0 MARCO_42_1359201370-6 81 -0.210609 hybrid +136_1-5 Q0 MARCO_51_116973976-5 82 -0.213128 hybrid +136_1-5 Q0 MARCO_06_1615593549-38 83 -0.217341 hybrid +136_1-5 Q0 MARCO_06_545026672-3 84 -0.218473 hybrid +136_1-5 Q0 MARCO_37_1186545077-11 85 -0.220757 hybrid +136_1-5 Q0 MARCO_06_1615593549-45 86 -0.220867 hybrid +136_1-5 Q0 MARCO_16_1906893262-3 87 -0.222255 hybrid +136_1-5 Q0 MARCO_06_1615593549-89 88 -0.222835 hybrid +136_1-5 Q0 MARCO_06_545026672-1 89 -0.229179 hybrid +136_1-5 Q0 MARCO_17_2959044550-2 90 -0.232245 hybrid +136_1-5 Q0 MARCO_06_1615593549-77 91 -0.235910 hybrid +136_1-5 Q0 MARCO_05_424740033-30 92 -0.236581 hybrid +136_1-5 Q0 MARCO_00_661672852-4 93 -0.243787 hybrid +136_1-5 Q0 MARCO_02_1884606143-4 94 -0.249999 hybrid +136_1-5 Q0 MARCO_21_1388139780-6 95 -0.253775 hybrid +136_1-5 Q0 MARCO_06_1615538550-25 96 -0.254543 hybrid +136_1-5 Q0 MARCO_06_1615538550-28 97 -0.259723 hybrid +136_1-5 Q0 MARCO_06_1615538550-31 98 -0.265551 hybrid +136_1-5 Q0 KILT_453736-7 99 -0.267954 hybrid +136_1-5 Q0 MARCO_19_235748733-4 100 -0.268216 hybrid +136_1-7 Q0 MARCO_06_1616419714-12 1 0.311671 hybrid +136_1-7 Q0 MARCO_42_1359229219-4 2 0.225290 hybrid +136_1-7 Q0 MARCO_14_1526002240-92 3 0.166448 hybrid +136_1-7 Q0 KILT_16321182-3 4 0.087415 hybrid +136_1-7 Q0 MARCO_42_1368592926-7 5 0.059245 hybrid +136_1-7 Q0 KILT_33393567-4 6 0.032846 hybrid +136_1-7 Q0 MARCO_06_1605036905-4 7 0.024683 hybrid +136_1-7 Q0 MARCO_39_677953001-24 8 0.006845 hybrid +136_1-7 Q0 MARCO_39_615043672-2 9 -0.026842 hybrid +136_1-7 Q0 MARCO_16_4159902144-11 10 -0.031440 hybrid +136_1-7 Q0 MARCO_05_424740033-49 11 -0.088849 hybrid +136_1-7 Q0 MARCO_42_1368592926-9 12 -0.091907 hybrid +136_1-7 Q0 MARCO_07_536012807-42 13 -0.117125 hybrid +136_1-7 Q0 MARCO_48_624451421-3 14 -0.117530 hybrid +136_1-7 Q0 MARCO_21_1378115203-2 15 -0.120962 hybrid +136_1-7 Q0 MARCO_18_1301359057-26 16 -0.124136 hybrid +136_1-7 Q0 MARCO_05_424740033-36 17 -0.129605 hybrid +136_1-7 Q0 MARCO_04_865649090-21 18 -0.142887 hybrid +136_1-7 Q0 MARCO_51_116973976-2 19 -0.161642 hybrid +136_1-7 Q0 KILT_400686-24 20 -0.167981 hybrid +136_1-7 Q0 MARCO_06_545026672-4 21 -0.170982 hybrid +136_1-7 Q0 MARCO_03_1770719375-2 22 -0.172025 hybrid +136_1-7 Q0 MARCO_42_1368592926-1 23 -0.180563 hybrid +136_1-7 Q0 MARCO_06_1615593549-131 24 -0.198275 hybrid +136_1-7 Q0 KILT_54071918-2 25 -0.201756 hybrid +136_1-7 Q0 MARCO_18_3810895977-6 26 -0.207537 hybrid +136_1-7 Q0 MARCO_06_1615593549-2 27 -0.212789 hybrid +136_1-7 Q0 MARCO_06_1616419714-7 28 -0.223521 hybrid +136_1-7 Q0 MARCO_21_1378115203-10 29 -0.229029 hybrid +136_1-7 Q0 MARCO_01_458481901-58 30 -0.250001 hybrid +136_1-7 Q0 MARCO_02_337202498-57 31 -0.250001 hybrid +136_1-7 Q0 MARCO_57_884445217-23 32 -0.253168 hybrid +136_1-7 Q0 MARCO_36_967030024-4 33 -0.262920 hybrid +136_1-7 Q0 MARCO_42_1359229219-3 34 -0.267864 hybrid +136_1-7 Q0 MARCO_06_1615538550-20 35 -0.268912 hybrid +136_1-7 Q0 MARCO_06_1615538550-5 36 -0.270337 hybrid +136_1-7 Q0 MARCO_06_1615593549-75 37 -0.272389 hybrid +136_1-7 Q0 MARCO_55_494428548-9 38 -0.275735 hybrid +136_1-7 Q0 KILT_80128-8 39 -0.276183 hybrid +136_1-7 Q0 MARCO_51_116973976-4 40 -0.279054 hybrid +136_1-7 Q0 MARCO_21_1384984860-11 41 -0.282470 hybrid +136_1-7 Q0 MARCO_05_629335936-7 42 -0.292732 hybrid +136_1-7 Q0 KILT_14458938-50 43 -0.302748 hybrid +136_1-7 Q0 MARCO_06_1601700563-2 44 -0.311740 hybrid +136_1-7 Q0 MARCO_06_1615538550-1 45 -0.319560 hybrid +136_1-7 Q0 MARCO_33_171833748-4 46 -0.320498 hybrid +136_1-7 Q0 MARCO_42_1340949625-5 47 -0.323879 hybrid +136_1-7 Q0 MARCO_26_1933602319-9 48 -0.324214 hybrid +136_1-7 Q0 MARCO_06_1615593549-12 49 -0.325376 hybrid +136_1-7 Q0 MARCO_04_865649090-22 50 -0.325664 hybrid +136_1-7 Q0 KILT_453736-7 51 -0.325723 hybrid +136_1-7 Q0 KILT_9056385-3 52 -0.330344 hybrid +136_1-7 Q0 MARCO_06_1615106047-10 53 -0.330505 hybrid +136_1-7 Q0 MARCO_21_1378115203-8 54 -0.333609 hybrid +136_1-7 Q0 MARCO_04_473062102-21 55 -0.334070 hybrid +136_1-7 Q0 KILT_3188742-1 56 -0.334221 hybrid +136_1-7 Q0 MARCO_38_1349998578-2 57 -0.335292 hybrid +136_1-7 Q0 MARCO_06_1615538550-17 58 -0.344972 hybrid +136_1-7 Q0 MARCO_27_72181676-12 59 -0.349032 hybrid +136_1-7 Q0 KILT_416227-1 60 -0.349533 hybrid +136_1-7 Q0 MARCO_07_536012807-4 61 -0.350459 hybrid +136_1-7 Q0 MARCO_27_47894695-15 62 -0.351553 hybrid +136_1-7 Q0 MARCO_06_1616419714-4 63 -0.352248 hybrid +136_1-7 Q0 MARCO_27_40265189-3 64 -0.356325 hybrid +136_1-7 Q0 MARCO_50_2128988370-53 65 -0.356330 hybrid +136_1-7 Q0 MARCO_05_424740033-43 66 -0.356504 hybrid +136_1-7 Q0 MARCO_19_235748733-7 67 -0.357351 hybrid +136_1-7 Q0 MARCO_19_612317498-2 68 -0.358331 hybrid +136_1-7 Q0 MARCO_05_424740033-22 69 -0.358704 hybrid +136_1-7 Q0 MARCO_07_536012807-13 70 -0.358769 hybrid +136_1-7 Q0 KILT_669964-6 71 -0.361764 hybrid +136_1-7 Q0 MARCO_19_612317498-3 72 -0.361994 hybrid +136_1-7 Q0 MARCO_02_1884606143-5 73 -0.362494 hybrid +136_1-7 Q0 MARCO_06_1615538550-21 74 -0.363586 hybrid +136_1-7 Q0 MARCO_42_1341211865-2 75 -0.364198 hybrid +136_1-7 Q0 MARCO_19_256712149-41 76 -0.364787 hybrid +136_1-7 Q0 MARCO_06_545026672-3 77 -0.365811 hybrid +136_1-7 Q0 MARCO_21_1384984860-3 78 -0.367970 hybrid +136_1-7 Q0 MARCO_06_1616419714-2 79 -0.369092 hybrid +136_1-7 Q0 MARCO_19_256712149-66 80 -0.369174 hybrid +136_1-7 Q0 MARCO_34_892259339-7 81 -0.369439 hybrid +136_1-7 Q0 MARCO_01_2026600344-7 82 -0.369470 hybrid +136_1-7 Q0 MARCO_06_1615593549-99 83 -0.370704 hybrid +136_1-7 Q0 MARCO_06_1616419714-5 84 -0.371327 hybrid +136_1-7 Q0 MARCO_11_1511196274-3 85 -0.372784 hybrid +136_1-7 Q0 MARCO_08_710538681-1 86 -0.374299 hybrid +136_1-7 Q0 MARCO_21_1384984860-6 87 -0.376135 hybrid +136_1-7 Q0 MARCO_42_1359229219-2 88 -0.377017 hybrid +136_1-7 Q0 MARCO_09_1661332301-10 89 -0.377461 hybrid +136_1-7 Q0 MARCO_06_1615538550-24 90 -0.377715 hybrid +136_1-7 Q0 KILT_453736-10 91 -0.378883 hybrid +136_1-7 Q0 KILT_3188742-3 92 -0.379005 hybrid +136_1-7 Q0 MARCO_19_612317498-4 93 -0.379005 hybrid +136_1-7 Q0 MARCO_42_1359229219-5 94 -0.383887 hybrid +136_1-7 Q0 MARCO_02_1079086282-1 95 -0.386118 hybrid +136_1-7 Q0 MARCO_06_1615593549-4 96 -0.389977 hybrid +136_1-7 Q0 MARCO_06_1615593549-123 97 -0.393288 hybrid +136_1-7 Q0 MARCO_03_1768684089-2 98 -0.393543 hybrid +136_1-7 Q0 MARCO_52_654897371-1 99 -0.395492 hybrid +136_1-7 Q0 MARCO_10_580069637-2 100 -0.396313 hybrid +136_1-9 Q0 MARCO_11_1511196274-1 1 0.410167 hybrid +136_1-9 Q0 MARCO_11_1511196274-3 2 0.319399 hybrid +136_1-9 Q0 MARCO_28_327932163-1 3 0.300516 hybrid +136_1-9 Q0 MARCO_10_831411560-2 4 0.259242 hybrid +136_1-9 Q0 MARCO_48_624451421-3 5 0.250001 hybrid +136_1-9 Q0 MARCO_39_615043672-1 6 0.223478 hybrid +136_1-9 Q0 MARCO_06_1902336129-1 7 0.206585 hybrid +136_1-9 Q0 MARCO_06_1605036905-4 8 0.196915 hybrid +136_1-9 Q0 MARCO_39_615043672-2 9 0.173705 hybrid +136_1-9 Q0 MARCO_06_1615593549-75 10 0.169613 hybrid +136_1-9 Q0 MARCO_50_1984649934-7 11 0.135473 hybrid +136_1-9 Q0 MARCO_00_944207367-1 12 0.124267 hybrid +136_1-9 Q0 MARCO_39_618236320-17 13 0.113807 hybrid +136_1-9 Q0 MARCO_34_1720669955-2 14 0.105933 hybrid +136_1-9 Q0 MARCO_42_1368592926-5 15 0.104888 hybrid +136_1-9 Q0 MARCO_18_1301359057-26 16 0.093500 hybrid +136_1-9 Q0 MARCO_42_1359229219-1 17 0.092523 hybrid +136_1-9 Q0 MARCO_06_1601700563-2 18 0.089109 hybrid +136_1-9 Q0 MARCO_42_1359229219-5 19 0.088659 hybrid +136_1-9 Q0 MARCO_42_1367221250-7 20 0.087503 hybrid +136_1-9 Q0 MARCO_42_1359229219-2 21 0.084719 hybrid +136_1-9 Q0 MARCO_06_1616419714-4 22 0.084562 hybrid +136_1-9 Q0 MARCO_50_1984649934-1 23 0.083859 hybrid +136_1-9 Q0 MARCO_21_1378115203-23 24 0.082385 hybrid +136_1-9 Q0 MARCO_50_1984649934-6 25 0.075056 hybrid +136_1-9 Q0 MARCO_04_865649090-20 26 0.074480 hybrid +136_1-9 Q0 MARCO_07_536012807-4 27 0.072806 hybrid +136_1-9 Q0 MARCO_03_1770719375-4 28 0.071206 hybrid +136_1-9 Q0 MARCO_21_1378115203-25 29 0.071024 hybrid +136_1-9 Q0 MARCO_50_1984649934-8 30 0.064399 hybrid +136_1-9 Q0 MARCO_50_1508368359-30 31 0.064348 hybrid +136_1-9 Q0 MARCO_42_1359201370-6 32 0.057794 hybrid +136_1-9 Q0 MARCO_06_1616419714-19 33 0.057515 hybrid +136_1-9 Q0 MARCO_04_143999592-1 34 0.051068 hybrid +136_1-9 Q0 MARCO_42_1359229219-6 35 0.050713 hybrid +136_1-9 Q0 MARCO_42_1367290185-3 36 0.042884 hybrid +136_1-9 Q0 MARCO_42_1368592926-7 37 0.039281 hybrid +136_1-9 Q0 MARCO_42_1368592926-1 38 0.036774 hybrid +136_1-9 Q0 MARCO_42_1367967096-1 39 0.035449 hybrid +136_1-9 Q0 MARCO_06_1902336129-2 40 0.028002 hybrid +136_1-9 Q0 MARCO_37_1186545077-10 41 0.018285 hybrid +136_1-9 Q0 MARCO_42_1368592926-10 42 0.017205 hybrid +136_1-9 Q0 MARCO_26_1835738965-180 43 0.013063 hybrid +136_1-9 Q0 MARCO_05_424740033-50 44 0.012269 hybrid +136_1-9 Q0 MARCO_19_235748733-4 45 0.005785 hybrid +136_1-9 Q0 MARCO_00_661672852-8 46 0.000276 hybrid +136_1-9 Q0 MARCO_33_1593442632-44 47 -0.000014 hybrid +136_1-9 Q0 MARCO_07_536012807-29 48 -0.001647 hybrid +136_1-9 Q0 MARCO_21_1378115203-28 49 -0.004287 hybrid +136_1-9 Q0 MARCO_42_1367967096-6 50 -0.005019 hybrid +136_1-9 Q0 MARCO_06_1604175481-1 51 -0.005886 hybrid +136_1-9 Q0 MARCO_48_624451421-1 52 -0.010369 hybrid +136_1-9 Q0 MARCO_21_1378115203-27 53 -0.014976 hybrid +136_1-9 Q0 MARCO_21_1376381125-19 54 -0.016241 hybrid +136_1-9 Q0 MARCO_42_1368592926-9 55 -0.016370 hybrid +136_1-9 Q0 MARCO_21_1378115203-1 56 -0.017735 hybrid +136_1-9 Q0 MARCO_06_1616419714-13 57 -0.017905 hybrid +136_1-9 Q0 KILT_453736-12 58 -0.019275 hybrid +136_1-9 Q0 MARCO_42_1368592926-6 59 -0.019498 hybrid +136_1-9 Q0 MARCO_06_1615593549-122 60 -0.027867 hybrid +136_1-9 Q0 MARCO_48_624451421-2 61 -0.032119 hybrid +136_1-9 Q0 MARCO_33_1593442632-45 62 -0.032311 hybrid +136_1-9 Q0 MARCO_33_1593442632-46 63 -0.032311 hybrid +136_1-9 Q0 MARCO_41_1361850806-25 64 -0.033469 hybrid +136_1-9 Q0 MARCO_41_1361850806-13 65 -0.035681 hybrid +136_1-9 Q0 MARCO_00_661672852-5 66 -0.037291 hybrid +136_1-9 Q0 MARCO_57_1227170091-2 67 -0.037479 hybrid +136_1-9 Q0 MARCO_39_678034715-11 68 -0.040130 hybrid +136_1-9 Q0 MARCO_06_1616419714-21 69 -0.043021 hybrid +136_1-9 Q0 MARCO_06_1604749305-2 70 -0.044111 hybrid +136_1-9 Q0 MARCO_51_116973976-5 71 -0.046086 hybrid +136_1-9 Q0 MARCO_06_545026672-1 72 -0.048614 hybrid +136_1-9 Q0 MARCO_03_1770719375-2 73 -0.050088 hybrid +136_1-9 Q0 MARCO_14_1526002240-92 74 -0.050258 hybrid +136_1-9 Q0 MARCO_06_322904718-1 75 -0.052945 hybrid +136_1-9 Q0 MARCO_05_424740033-39 76 -0.054469 hybrid +136_1-9 Q0 MARCO_37_1186545077-11 77 -0.057898 hybrid +136_1-9 Q0 MARCO_28_327932163-2 78 -0.058371 hybrid +136_1-9 Q0 MARCO_06_1615593549-130 79 -0.059077 hybrid +136_1-9 Q0 MARCO_21_1378115203-19 80 -0.061690 hybrid +136_1-9 Q0 MARCO_19_2552699673-3 81 -0.061826 hybrid +136_1-9 Q0 MARCO_06_1615538550-23 82 -0.062012 hybrid +136_1-9 Q0 MARCO_27_40265189-5 83 -0.063165 hybrid +136_1-9 Q0 MARCO_06_1598753399-1 84 -0.071654 hybrid +136_1-9 Q0 MARCO_43_711535926-6 85 -0.072539 hybrid +136_1-9 Q0 MARCO_42_1368592926-8 86 -0.072588 hybrid +136_1-9 Q0 MARCO_39_677953001-24 87 -0.072647 hybrid +136_1-9 Q0 MARCO_06_545026672-3 88 -0.073398 hybrid +136_1-9 Q0 MARCO_06_1615593549-74 89 -0.077248 hybrid +136_1-9 Q0 MARCO_06_1616419714-1 90 -0.077703 hybrid +136_1-9 Q0 MARCO_43_1280563415-23 91 -0.082940 hybrid +136_1-9 Q0 MARCO_06_1616419714-8 92 -0.083172 hybrid +136_1-9 Q0 MARCO_37_1186529676-12 93 -0.084832 hybrid +136_1-9 Q0 MARCO_06_1615106047-8 94 -0.092398 hybrid +136_1-9 Q0 MARCO_14_1526002240-93 95 -0.092513 hybrid +136_1-9 Q0 MARCO_19_265183945-4 96 -0.095980 hybrid +136_1-9 Q0 MARCO_06_1615593549-131 97 -0.098865 hybrid +136_1-9 Q0 MARCO_05_424740033-34 98 -0.104645 hybrid +136_1-9 Q0 MARCO_42_1367674026-4 99 -0.106228 hybrid +136_1-9 Q0 MARCO_06_1616419714-10 100 -0.106575 hybrid +136_2-1 Q0 MARCO_06_322904718-1 1 0.380019 hybrid +136_2-1 Q0 MARCO_57_1227170091-2 2 0.250001 hybrid +136_2-1 Q0 MARCO_42_1359229219-1 3 0.237312 hybrid +136_2-1 Q0 MARCO_11_1511196274-1 4 0.192099 hybrid +136_2-1 Q0 MARCO_50_1984649934-8 5 0.149075 hybrid +136_2-1 Q0 MARCO_27_1510298108-4 6 0.142457 hybrid +136_2-1 Q0 MARCO_21_1378115203-28 7 0.136249 hybrid +136_2-1 Q0 MARCO_28_327932163-1 8 0.131481 hybrid +136_2-1 Q0 MARCO_42_1368592926-1 9 0.128155 hybrid +136_2-1 Q0 MARCO_06_545026672-1 10 0.104267 hybrid +136_2-1 Q0 MARCO_41_1361850806-19 11 0.088992 hybrid +136_2-1 Q0 MARCO_41_1361850806-39 12 0.084707 hybrid +136_2-1 Q0 MARCO_41_1361850806-44 13 0.068796 hybrid +136_2-1 Q0 MARCO_41_1361850806-14 14 0.063266 hybrid +136_2-1 Q0 MARCO_27_1510298108-3 15 0.060420 hybrid +136_2-1 Q0 KILT_453736-15 16 0.049906 hybrid +136_2-1 Q0 MARCO_41_1361850806-46 17 0.037958 hybrid +136_2-1 Q0 MARCO_00_1401261974-13 18 0.025103 hybrid +136_2-1 Q0 MARCO_21_1378115203-19 19 0.020066 hybrid +136_2-1 Q0 MARCO_50_1984649934-1 20 0.013177 hybrid +136_2-1 Q0 MARCO_41_1361850806-27 21 0.002981 hybrid +136_2-1 Q0 MARCO_41_1361850806-38 22 -0.007329 hybrid +136_2-1 Q0 MARCO_21_1378115203-23 23 -0.007717 hybrid +136_2-1 Q0 KILT_453736-12 24 -0.009022 hybrid +136_2-1 Q0 MARCO_41_1361850806-41 25 -0.015522 hybrid +136_2-1 Q0 MARCO_41_1361850806-2 26 -0.017054 hybrid +136_2-1 Q0 MARCO_50_1984649934-7 27 -0.023726 hybrid +136_2-1 Q0 MARCO_05_424740033-1 28 -0.031138 hybrid +136_2-1 Q0 MARCO_55_574781674-5 29 -0.032041 hybrid +136_2-1 Q0 MARCO_42_1359198610-2 30 -0.032781 hybrid +136_2-1 Q0 MARCO_41_1361850806-16 31 -0.037106 hybrid +136_2-1 Q0 MARCO_55_571956134-6 32 -0.040308 hybrid +136_2-1 Q0 MARCO_06_1902336129-1 33 -0.041211 hybrid +136_2-1 Q0 MARCO_41_1361850806-13 34 -0.043382 hybrid +136_2-1 Q0 MARCO_05_424740033-13 35 -0.044219 hybrid +136_2-1 Q0 MARCO_28_327932163-2 36 -0.057399 hybrid +136_2-1 Q0 MARCO_41_1361850806-15 37 -0.067387 hybrid +136_2-1 Q0 MARCO_42_1359229219-2 38 -0.068906 hybrid +136_2-1 Q0 MARCO_43_1280563415-23 39 -0.072996 hybrid +136_2-1 Q0 MARCO_06_1616419714-10 40 -0.082668 hybrid +136_2-1 Q0 MARCO_13_737502139-2 41 -0.086796 hybrid +136_2-1 Q0 MARCO_05_424740033-19 42 -0.087084 hybrid +136_2-1 Q0 MARCO_50_1984649934-4 43 -0.092876 hybrid +136_2-1 Q0 MARCO_37_1186545077-11 44 -0.096062 hybrid +136_2-1 Q0 MARCO_05_424740033-20 45 -0.100619 hybrid +136_2-1 Q0 MARCO_19_235748733-4 46 -0.110918 hybrid +136_2-1 Q0 MARCO_48_624451421-3 47 -0.113365 hybrid +136_2-1 Q0 MARCO_16_4159902144-16 48 -0.115293 hybrid +136_2-1 Q0 MARCO_43_1280563415-14 49 -0.116602 hybrid +136_2-1 Q0 MARCO_42_1368592926-3 50 -0.117971 hybrid +136_2-1 Q0 MARCO_04_143999592-1 51 -0.118094 hybrid +136_2-1 Q0 MARCO_05_424740033-34 52 -0.120585 hybrid +136_2-1 Q0 KILT_80128-12 53 -0.123805 hybrid +136_2-1 Q0 MARCO_05_424740033-39 54 -0.124467 hybrid +136_2-1 Q0 MARCO_41_1361850806-26 55 -0.124899 hybrid +136_2-1 Q0 MARCO_06_1616419714-20 56 -0.129637 hybrid +136_2-1 Q0 MARCO_41_1361850806-42 57 -0.133574 hybrid +136_2-1 Q0 MARCO_41_1361850806-21 58 -0.134054 hybrid +136_2-1 Q0 MARCO_16_2852307220-6 59 -0.137994 hybrid +136_2-1 Q0 MARCO_42_1368592926-5 60 -0.141860 hybrid +136_2-1 Q0 MARCO_05_424740033-45 61 -0.143347 hybrid +136_2-1 Q0 MARCO_43_1004698907-6 62 -0.152418 hybrid +136_2-1 Q0 MARCO_06_1616419714-9 63 -0.160924 hybrid +136_2-1 Q0 MARCO_05_424740033-2 64 -0.163210 hybrid +136_2-1 Q0 MARCO_17_2892192733-3 65 -0.163736 hybrid +136_2-1 Q0 KILT_5530-9 66 -0.164332 hybrid +136_2-1 Q0 MARCO_16_2852307220-18 67 -0.165975 hybrid +136_2-1 Q0 MARCO_41_1361850806-20 68 -0.168556 hybrid +136_2-1 Q0 MARCO_50_1432093425-1 69 -0.171098 hybrid +136_2-1 Q0 MARCO_06_1615538550-22 70 -0.173381 hybrid +136_2-1 Q0 MARCO_00_661672852-8 71 -0.175221 hybrid +136_2-1 Q0 MARCO_06_1615593549-87 72 -0.178188 hybrid +136_2-1 Q0 MARCO_41_1361850806-29 73 -0.178408 hybrid +136_2-1 Q0 MARCO_16_2852307220-7 74 -0.183677 hybrid +136_2-1 Q0 MARCO_50_1432093425-3 75 -0.184766 hybrid +136_2-1 Q0 MARCO_50_1984649934-6 76 -0.185190 hybrid +136_2-1 Q0 MARCO_41_1361850806-7 77 -0.189584 hybrid +136_2-1 Q0 KILT_408127-7 78 -0.189683 hybrid +136_2-1 Q0 MARCO_41_1361850806-4 79 -0.191674 hybrid +136_2-1 Q0 MARCO_11_1511196274-4 80 -0.192419 hybrid +136_2-1 Q0 MARCO_06_1605036905-4 81 -0.194569 hybrid +136_2-1 Q0 MARCO_06_1615538550-23 82 -0.194616 hybrid +136_2-1 Q0 KILT_316118-3 83 -0.195566 hybrid +136_2-1 Q0 MARCO_41_1361850806-10 84 -0.195765 hybrid +136_2-1 Q0 MARCO_43_989351631-49 85 -0.195868 hybrid +136_2-1 Q0 MARCO_06_1615538550-4 86 -0.197151 hybrid +136_2-1 Q0 MARCO_41_1361850806-23 87 -0.197489 hybrid +136_2-1 Q0 KILT_24067972-17 88 -0.198919 hybrid +136_2-1 Q0 MARCO_17_2941607169-88 89 -0.199307 hybrid +136_2-1 Q0 MARCO_05_424740033-24 90 -0.200573 hybrid +136_2-1 Q0 MARCO_01_1174860585-4 91 -0.200648 hybrid +136_2-1 Q0 MARCO_41_1361850806-24 92 -0.202665 hybrid +136_2-1 Q0 MARCO_06_1615593549-74 93 -0.202923 hybrid +136_2-1 Q0 MARCO_14_1526002240-94 94 -0.204399 hybrid +136_2-1 Q0 MARCO_17_3121804383-7 95 -0.204445 hybrid +136_2-1 Q0 MARCO_18_3810895977-6 96 -0.211568 hybrid +136_2-1 Q0 KILT_53404298-16 97 -0.215519 hybrid +136_2-1 Q0 MARCO_19_235748733-3 98 -0.217660 hybrid +136_2-1 Q0 MARCO_58_1731712325-3 99 -0.217685 hybrid +136_2-1 Q0 MARCO_41_1361850806-12 100 -0.217768 hybrid +136_2-3 Q0 MARCO_16_2852307220-19 1 0.459459 hybrid +136_2-3 Q0 MARCO_37_1517872522-3 2 0.319088 hybrid +136_2-3 Q0 MARCO_34_1725136735-1 3 0.179928 hybrid +136_2-3 Q0 MARCO_37_1517872522-2 4 0.162586 hybrid +136_2-3 Q0 MARCO_05_424740033-28 5 0.097334 hybrid +136_2-3 Q0 KILT_29167504-4 6 0.095019 hybrid +136_2-3 Q0 MARCO_37_1517872522-1 7 0.078983 hybrid +136_2-3 Q0 MARCO_16_1906878129-8 8 0.019031 hybrid +136_2-3 Q0 MARCO_17_4188093557-67 9 0.010917 hybrid +136_2-3 Q0 MARCO_05_424740033-29 10 -0.003120 hybrid +136_2-3 Q0 KILT_471074-4 11 -0.006944 hybrid +136_2-3 Q0 KILT_1165780-3 12 -0.043675 hybrid +136_2-3 Q0 KILT_4278305-1 13 -0.068918 hybrid +136_2-3 Q0 KILT_23749226-5 14 -0.075617 hybrid +136_2-3 Q0 MARCO_36_958901421-2 15 -0.102326 hybrid +136_2-3 Q0 MARCO_16_1906893262-3 16 -0.107269 hybrid +136_2-3 Q0 MARCO_05_424740033-30 17 -0.108493 hybrid +136_2-3 Q0 MARCO_43_995242498-33 18 -0.114654 hybrid +136_2-3 Q0 MARCO_23_702973894-24 19 -0.146051 hybrid +136_2-3 Q0 MARCO_06_1615538550-5 20 -0.172404 hybrid +136_2-3 Q0 MARCO_43_1004347964-41 21 -0.179906 hybrid +136_2-3 Q0 KILT_453736-15 22 -0.196308 hybrid +136_2-3 Q0 MARCO_41_1406440000-2 23 -0.233513 hybrid +136_2-3 Q0 MARCO_37_1517872522-4 24 -0.249570 hybrid +136_2-3 Q0 MARCO_10_1522477129-7 25 -0.249999 hybrid +136_2-3 Q0 MARCO_17_45796309-10 26 -0.250772 hybrid +136_2-3 Q0 KILT_56221810-2 27 -0.268100 hybrid +136_2-3 Q0 MARCO_43_1011782134-16 28 -0.274894 hybrid +136_2-3 Q0 MARCO_06_1615593549-96 29 -0.280126 hybrid +136_2-3 Q0 MARCO_16_1906893262-4 30 -0.286412 hybrid +136_2-3 Q0 KILT_56002328-1 31 -0.301010 hybrid +136_2-3 Q0 MARCO_17_45796309-11 32 -0.304085 hybrid +136_2-3 Q0 KILT_2660363-2 33 -0.304574 hybrid +136_2-3 Q0 KILT_243545-16 34 -0.314089 hybrid +136_2-3 Q0 MARCO_17_2892192733-3 35 -0.328062 hybrid +136_2-3 Q0 MARCO_17_4188093557-36 36 -0.332034 hybrid +136_2-3 Q0 MARCO_16_2852307220-6 37 -0.337583 hybrid +136_2-3 Q0 MARCO_19_253165797-21 38 -0.350194 hybrid +136_2-3 Q0 MARCO_50_2312547038-5 39 -0.354732 hybrid +136_2-3 Q0 MARCO_02_1721991996-21 40 -0.362468 hybrid +136_2-3 Q0 MARCO_29_1421049811-5 41 -0.362545 hybrid +136_2-3 Q0 KILT_1165780-2 42 -0.369649 hybrid +136_2-3 Q0 MARCO_14_1486493683-5 43 -0.371463 hybrid +136_2-3 Q0 MARCO_06_1615593549-92 44 -0.371747 hybrid +136_2-3 Q0 MARCO_15_626025681-12 45 -0.371764 hybrid +136_2-3 Q0 MARCO_10_550584996-5 46 -0.374541 hybrid +136_2-3 Q0 MARCO_06_1102753317-262 47 -0.376168 hybrid +136_2-3 Q0 MARCO_17_2947898522-19 48 -0.377539 hybrid +136_2-3 Q0 MARCO_04_1393608563-8 49 -0.385408 hybrid +136_2-3 Q0 MARCO_25_34345716-107 50 -0.391162 hybrid +136_2-3 Q0 MARCO_23_389783021-2 51 -0.396264 hybrid +136_2-3 Q0 KILT_461561-8 52 -0.399044 hybrid +136_2-3 Q0 MARCO_17_4778953000-35 53 -0.404323 hybrid +136_2-3 Q0 MARCO_29_667739233-1 54 -0.406559 hybrid +136_2-3 Q0 MARCO_09_453642400-4 55 -0.409331 hybrid +136_2-3 Q0 MARCO_48_1186270879-6 56 -0.409976 hybrid +136_2-3 Q0 KILT_461561-1 57 -0.412404 hybrid +136_2-3 Q0 MARCO_06_1615593549-3 58 -0.414900 hybrid +136_2-3 Q0 MARCO_17_45796309-27 59 -0.415341 hybrid +136_2-3 Q0 MARCO_50_931305410-9 60 -0.417053 hybrid +136_2-3 Q0 MARCO_06_1274956321-119 61 -0.420822 hybrid +136_2-3 Q0 MARCO_45_666130355-35 62 -0.421854 hybrid +136_2-3 Q0 MARCO_11_15007552-4 63 -0.423069 hybrid +136_2-3 Q0 MARCO_11_1461859438-1 64 -0.425492 hybrid +136_2-3 Q0 MARCO_41_633178534-4 65 -0.426196 hybrid +136_2-3 Q0 MARCO_48_962602379-13 66 -0.426422 hybrid +136_2-3 Q0 MARCO_23_892918206-31 67 -0.428792 hybrid +136_2-3 Q0 MARCO_46_850266308-5 68 -0.431151 hybrid +136_2-3 Q0 KILT_2857349-11 69 -0.431434 hybrid +136_2-3 Q0 MARCO_17_45796309-12 70 -0.437586 hybrid +136_2-3 Q0 MARCO_17_45838517-13 71 -0.438987 hybrid +136_2-3 Q0 MARCO_50_482485009-3 72 -0.440477 hybrid +136_2-3 Q0 MARCO_05_424740033-11 73 -0.443490 hybrid +136_2-3 Q0 MARCO_16_2852307220-35 74 -0.445650 hybrid +136_2-3 Q0 MARCO_41_1406440000-22 75 -0.449051 hybrid +136_2-3 Q0 MARCO_09_165023690-13 76 -0.451845 hybrid +136_2-3 Q0 MARCO_06_1615593549-113 77 -0.452647 hybrid +136_2-3 Q0 MARCO_42_1368592926-3 78 -0.454597 hybrid +136_2-3 Q0 MARCO_25_1423307201-22 79 -0.456239 hybrid +136_2-3 Q0 MARCO_31_1177209948-1 80 -0.462016 hybrid +136_2-3 Q0 MARCO_14_1706578219-4 81 -0.463208 hybrid +136_2-3 Q0 MARCO_17_45867964-4 82 -0.465058 hybrid +136_2-3 Q0 MARCO_05_600324799-2 83 -0.465377 hybrid +136_2-3 Q0 MARCO_11_1511716643-5 84 -0.465960 hybrid +136_2-3 Q0 MARCO_54_1959865413-33 85 -0.466218 hybrid +136_2-3 Q0 KILT_1967935-30 86 -0.467943 hybrid +136_2-3 Q0 MARCO_07_1422341563-4 87 -0.468727 hybrid +136_2-3 Q0 MARCO_06_1102753317-305 88 -0.470859 hybrid +136_2-3 Q0 MARCO_02_578176031-26 89 -0.472334 hybrid +136_2-3 Q0 KILT_29995317-1 90 -0.473831 hybrid +136_2-3 Q0 MARCO_18_484664230-10 91 -0.476476 hybrid +136_2-3 Q0 MARCO_02_1721991996-20 92 -0.477508 hybrid +136_2-3 Q0 MARCO_32_1332191767-4 93 -0.477801 hybrid +136_2-3 Q0 MARCO_06_409720571-8 94 -0.479860 hybrid +136_2-3 Q0 MARCO_37_1515489121-2 95 -0.480670 hybrid +136_2-3 Q0 MARCO_41_1009445128-59 96 -0.481731 hybrid +136_2-3 Q0 MARCO_58_1126798034-8 97 -0.482871 hybrid +136_2-3 Q0 KILT_454403-2 98 -0.483515 hybrid +136_2-3 Q0 MARCO_06_1242439116-190 99 -0.484881 hybrid +136_2-3 Q0 MARCO_31_883410930-4 100 -0.485517 hybrid +136_2-5 Q0 MARCO_16_2852307220-19 1 0.388803 hybrid +136_2-5 Q0 MARCO_37_1517872522-3 2 0.204493 hybrid +136_2-5 Q0 MARCO_05_424740033-28 3 0.173225 hybrid +136_2-5 Q0 MARCO_37_1517872522-2 4 0.082128 hybrid +136_2-5 Q0 KILT_29167504-4 5 0.074374 hybrid +136_2-5 Q0 MARCO_34_1725136735-1 6 0.058522 hybrid +136_2-5 Q0 MARCO_37_1517872522-1 7 0.012408 hybrid +136_2-5 Q0 KILT_471074-4 8 -0.019970 hybrid +136_2-5 Q0 MARCO_05_424740033-29 9 -0.038400 hybrid +136_2-5 Q0 KILT_4278305-1 10 -0.047730 hybrid +136_2-5 Q0 MARCO_16_1906878129-8 11 -0.058435 hybrid +136_2-5 Q0 MARCO_23_702973894-24 12 -0.073353 hybrid +136_2-5 Q0 KILT_23749226-5 13 -0.087518 hybrid +136_2-5 Q0 MARCO_16_1906893262-3 14 -0.115509 hybrid +136_2-5 Q0 MARCO_36_958901421-2 15 -0.136407 hybrid +136_2-5 Q0 MARCO_43_995242498-33 16 -0.142222 hybrid +136_2-5 Q0 MARCO_06_1615538550-5 17 -0.145203 hybrid +136_2-5 Q0 MARCO_17_4188093557-67 18 -0.147711 hybrid +136_2-5 Q0 KILT_1165780-3 19 -0.196531 hybrid +136_2-5 Q0 MARCO_05_424740033-30 20 -0.197728 hybrid +136_2-5 Q0 KILT_453736-15 21 -0.207753 hybrid +136_2-5 Q0 MARCO_43_1004347964-41 22 -0.229504 hybrid +136_2-5 Q0 MARCO_41_1406440000-2 23 -0.239642 hybrid +136_2-5 Q0 MARCO_17_45796309-10 24 -0.250000 hybrid +136_2-5 Q0 KILT_56002328-1 25 -0.256436 hybrid +136_2-5 Q0 MARCO_14_1486493683-5 26 -0.260649 hybrid +136_2-5 Q0 MARCO_16_1906893262-4 27 -0.282312 hybrid +136_2-5 Q0 KILT_56221810-2 28 -0.284915 hybrid +136_2-5 Q0 MARCO_06_1615593549-96 29 -0.294668 hybrid +136_2-5 Q0 MARCO_19_253165797-21 30 -0.323294 hybrid +136_2-5 Q0 MARCO_37_1517872522-4 31 -0.328275 hybrid +136_2-5 Q0 KILT_1165780-2 32 -0.333119 hybrid +136_2-5 Q0 MARCO_04_1393608563-8 33 -0.337769 hybrid +136_2-5 Q0 MARCO_43_1011782134-16 34 -0.338687 hybrid +136_2-5 Q0 MARCO_16_2852307220-6 35 -0.342759 hybrid +136_2-5 Q0 MARCO_23_892918206-31 36 -0.351757 hybrid +136_2-5 Q0 MARCO_17_4188093557-36 37 -0.354681 hybrid +136_2-5 Q0 MARCO_17_2892192733-3 38 -0.358130 hybrid +136_2-5 Q0 MARCO_06_1615593549-3 39 -0.360575 hybrid +136_2-5 Q0 MARCO_17_2947898522-19 40 -0.374002 hybrid +136_2-5 Q0 KILT_461561-8 41 -0.375042 hybrid +136_2-5 Q0 MARCO_54_1851877865-3 42 -0.377811 hybrid +136_2-5 Q0 MARCO_29_1421049811-5 43 -0.386653 hybrid +136_2-5 Q0 MARCO_45_666130355-35 44 -0.387842 hybrid +136_2-5 Q0 MARCO_10_1522477129-7 45 -0.389068 hybrid +136_2-5 Q0 MARCO_46_850266308-5 46 -0.397278 hybrid +136_2-5 Q0 MARCO_11_1511716643-5 47 -0.397458 hybrid +136_2-5 Q0 KILT_13574-22 48 -0.401771 hybrid +136_2-5 Q0 MARCO_50_931305410-9 49 -0.404929 hybrid +136_2-5 Q0 MARCO_06_1102753317-262 50 -0.407710 hybrid +136_2-5 Q0 MARCO_48_1186270879-6 51 -0.407805 hybrid +136_2-5 Q0 MARCO_41_633178534-4 52 -0.409656 hybrid +136_2-5 Q0 MARCO_06_1615593549-92 53 -0.413309 hybrid +136_2-5 Q0 MARCO_11_15007552-4 54 -0.416760 hybrid +136_2-5 Q0 MARCO_52_534191647-2 55 -0.418680 hybrid +136_2-5 Q0 KILT_2660363-2 56 -0.420164 hybrid +136_2-5 Q0 MARCO_58_1178287401-2 57 -0.429710 hybrid +136_2-5 Q0 MARCO_15_626025681-12 58 -0.433164 hybrid +136_2-5 Q0 MARCO_17_45796309-11 59 -0.434680 hybrid +136_2-5 Q0 MARCO_06_1175614040-71 60 -0.442234 hybrid +136_2-5 Q0 MARCO_37_1515489121-2 61 -0.442625 hybrid +136_2-5 Q0 MARCO_42_1368592926-3 62 -0.443066 hybrid +136_2-5 Q0 KILT_243545-16 63 -0.443117 hybrid +136_2-5 Q0 MARCO_14_129720299-3 64 -0.444756 hybrid +136_2-5 Q0 MARCO_11_1561677877-1 65 -0.446105 hybrid +136_2-5 Q0 MARCO_31_883410930-4 66 -0.449288 hybrid +136_2-5 Q0 MARCO_05_600324799-2 67 -0.451755 hybrid +136_2-5 Q0 MARCO_50_931305410-7 68 -0.454832 hybrid +136_2-5 Q0 MARCO_21_693650626-1 69 -0.459893 hybrid +136_2-5 Q0 MARCO_06_1274956321-119 70 -0.461639 hybrid +136_2-5 Q0 MARCO_06_1242439116-190 71 -0.463180 hybrid +136_2-5 Q0 MARCO_41_1814867049-3 72 -0.464480 hybrid +136_2-5 Q0 KILT_2857349-11 73 -0.465026 hybrid +136_2-5 Q0 MARCO_44_96730024-2 74 -0.465345 hybrid +136_2-5 Q0 MARCO_50_1663830001-19 75 -0.467397 hybrid +136_2-5 Q0 KILT_29995317-1 76 -0.471869 hybrid +136_2-5 Q0 MARCO_42_1359229219-2 77 -0.472056 hybrid +136_2-5 Q0 MARCO_33_1024691024-8 78 -0.472188 hybrid +136_2-5 Q0 MARCO_41_1406440000-22 79 -0.472996 hybrid +136_2-5 Q0 MARCO_22_1764297962-3 80 -0.477233 hybrid +136_2-5 Q0 MARCO_50_2312547038-5 81 -0.477392 hybrid +136_2-5 Q0 MARCO_50_482485009-3 82 -0.478947 hybrid +136_2-5 Q0 MARCO_06_1615593549-113 83 -0.480498 hybrid +136_2-5 Q0 MARCO_37_1515489121-1 84 -0.482729 hybrid +136_2-5 Q0 MARCO_58_1677832172-16 85 -0.482911 hybrid +136_2-5 Q0 MARCO_41_1405162130-2 86 -0.483412 hybrid +136_2-5 Q0 MARCO_02_1721991996-21 87 -0.483916 hybrid +136_2-5 Q0 MARCO_29_667739233-1 88 -0.485546 hybrid +136_2-5 Q0 MARCO_42_390780331-21 89 -0.486278 hybrid +136_2-5 Q0 KILT_23749226-4 90 -0.489448 hybrid +136_2-5 Q0 MARCO_28_693568638-23 91 -0.489721 hybrid +136_2-5 Q0 MARCO_22_833544194-3 92 -0.493657 hybrid +136_2-5 Q0 MARCO_10_550584996-5 93 -0.494098 hybrid +136_2-5 Q0 MARCO_48_962602379-13 94 -0.496502 hybrid +136_2-5 Q0 MARCO_31_883410930-7 95 -0.496682 hybrid +136_2-5 Q0 MARCO_44_835504615-8 96 -0.498585 hybrid +136_2-5 Q0 MARCO_16_2852307220-35 97 -0.499011 hybrid +136_2-5 Q0 KILT_454403-2 98 -0.500452 hybrid +136_2-5 Q0 MARCO_22_1312593088-6 99 -0.500469 hybrid +136_2-5 Q0 MARCO_48_1989660771-49 100 -0.501195 hybrid +137_1-1 Q0 KILT_9912495-3 1 0.644986 hybrid +137_1-1 Q0 KILT_9912495-4 2 0.595044 hybrid +137_1-1 Q0 MARCO_26_397313239-44 3 0.387861 hybrid +137_1-1 Q0 KILT_9912495-6 4 0.344010 hybrid +137_1-1 Q0 KILT_9912495-1 5 0.273826 hybrid +137_1-1 Q0 KILT_9912495-5 6 0.268994 hybrid +137_1-1 Q0 MARCO_35_313211833-3 7 0.125843 hybrid +137_1-1 Q0 MARCO_35_313211833-7 8 -0.136010 hybrid +137_1-1 Q0 MARCO_26_397313239-45 9 -0.137361 hybrid +137_1-1 Q0 MARCO_31_719719292-1 10 -0.250001 hybrid +137_1-1 Q0 MARCO_26_396165785-34 11 -0.271681 hybrid +137_1-1 Q0 MARCO_26_404008777-38 12 -0.294142 hybrid +137_1-1 Q0 MARCO_26_404008777-34 13 -0.307551 hybrid +137_1-1 Q0 MARCO_26_370915100-36 14 -0.314806 hybrid +137_1-1 Q0 MARCO_18_2910246170-6 15 -0.326121 hybrid +137_1-1 Q0 MARCO_26_404008777-47 16 -0.333475 hybrid +137_1-1 Q0 MARCO_26_368007630-56 17 -0.335555 hybrid +137_1-1 Q0 MARCO_55_1040397202-2 18 -0.346101 hybrid +137_1-1 Q0 MARCO_26_396024234-50 19 -0.348642 hybrid +137_1-1 Q0 MARCO_26_365290625-46 20 -0.358480 hybrid +137_1-1 Q0 KILT_408292-13 21 -0.359448 hybrid +137_1-1 Q0 MARCO_26_344035246-58 22 -0.362547 hybrid +137_1-1 Q0 MARCO_18_2910246170-4 23 -0.363466 hybrid +137_1-1 Q0 MARCO_30_1549247804-2 24 -0.364452 hybrid +137_1-1 Q0 MARCO_26_397313239-67 25 -0.364542 hybrid +137_1-1 Q0 MARCO_26_379963375-42 26 -0.371639 hybrid +137_1-1 Q0 MARCO_26_404008777-46 27 -0.376565 hybrid +137_1-1 Q0 MARCO_26_385981715-15 28 -0.380172 hybrid +137_1-1 Q0 MARCO_31_719719292-6 29 -0.383629 hybrid +137_1-1 Q0 MARCO_26_396024234-42 30 -0.390898 hybrid +137_1-1 Q0 MARCO_26_404008777-36 31 -0.391448 hybrid +137_1-1 Q0 MARCO_26_396165785-45 32 -0.392350 hybrid +137_1-1 Q0 MARCO_26_385981715-33 33 -0.393289 hybrid +137_1-1 Q0 MARCO_26_396165785-41 34 -0.395891 hybrid +137_1-1 Q0 MARCO_31_719719292-3 35 -0.396585 hybrid +137_1-1 Q0 KILT_31167886-1 36 -0.399061 hybrid +137_1-1 Q0 MARCO_26_396024234-43 37 -0.403125 hybrid +137_1-1 Q0 MARCO_26_396165785-32 38 -0.408296 hybrid +137_1-1 Q0 MARCO_26_396165785-44 39 -0.414418 hybrid +137_1-1 Q0 MARCO_18_783618318-30 40 -0.415388 hybrid +137_1-1 Q0 MARCO_18_2910246170-5 41 -0.415517 hybrid +137_1-1 Q0 MARCO_26_396024234-44 42 -0.417018 hybrid +137_1-1 Q0 KILT_247365-2 43 -0.417172 hybrid +137_1-1 Q0 MARCO_26_347456926-46 44 -0.418029 hybrid +137_1-1 Q0 KILT_277664-6 45 -0.418070 hybrid +137_1-1 Q0 KILT_277664-5 46 -0.418874 hybrid +137_1-1 Q0 KILT_277664-4 47 -0.420346 hybrid +137_1-1 Q0 MARCO_18_783618318-32 48 -0.422417 hybrid +137_1-1 Q0 MARCO_26_404008777-28 49 -0.423460 hybrid +137_1-1 Q0 MARCO_26_404008777-31 50 -0.424954 hybrid +137_1-1 Q0 MARCO_26_396165785-33 51 -0.425380 hybrid +137_1-1 Q0 MARCO_04_654519061-15 52 -0.426098 hybrid +137_1-1 Q0 MARCO_50_1667708224-3 53 -0.426344 hybrid +137_1-1 Q0 MARCO_28_325330682-17 54 -0.428217 hybrid +137_1-1 Q0 KILT_247365-1 55 -0.428315 hybrid +137_1-1 Q0 MARCO_26_411775176-97 56 -0.429593 hybrid +137_1-1 Q0 MARCO_31_719719292-2 57 -0.430706 hybrid +137_1-1 Q0 MARCO_26_347456926-47 58 -0.431810 hybrid +137_1-1 Q0 MARCO_26_396024234-48 59 -0.434604 hybrid +137_1-1 Q0 MARCO_18_2910246170-9 60 -0.443982 hybrid +137_1-1 Q0 MARCO_49_1738263214-3 61 -0.445142 hybrid +137_1-1 Q0 MARCO_26_396165785-35 62 -0.449624 hybrid +137_1-1 Q0 MARCO_26_344035246-59 63 -0.452539 hybrid +137_1-1 Q0 MARCO_26_396024234-40 64 -0.453094 hybrid +137_1-1 Q0 MARCO_26_395917108-51 65 -0.453937 hybrid +137_1-1 Q0 MARCO_13_1026447714-6 66 -0.454613 hybrid +137_1-1 Q0 MARCO_18_2910246170-3 67 -0.455374 hybrid +137_1-1 Q0 MARCO_26_372198263-53 68 -0.455603 hybrid +137_1-1 Q0 MARCO_26_395736684-47 69 -0.457354 hybrid +137_1-1 Q0 MARCO_18_2910049991-3 70 -0.458485 hybrid +137_1-1 Q0 MARCO_26_395917108-60 71 -0.459221 hybrid +137_1-1 Q0 MARCO_50_2384746901-10 72 -0.462433 hybrid +137_1-1 Q0 MARCO_50_2388271596-12 73 -0.462433 hybrid +137_1-1 Q0 MARCO_26_396165785-47 74 -0.463752 hybrid +137_1-1 Q0 MARCO_26_396107592-29 75 -0.464027 hybrid +137_1-1 Q0 MARCO_17_430832366-8 76 -0.465441 hybrid +137_1-1 Q0 MARCO_44_605193844-11 77 -0.465601 hybrid +137_1-1 Q0 MARCO_28_803265979-2 78 -0.467958 hybrid +137_1-1 Q0 KILT_33276396-2 79 -0.470968 hybrid +137_1-1 Q0 KILT_33426-14 80 -0.471231 hybrid +137_1-1 Q0 MARCO_26_396024234-41 81 -0.473626 hybrid +137_1-1 Q0 MARCO_18_2910246170-22 82 -0.474036 hybrid +137_1-1 Q0 MARCO_18_783618318-27 83 -0.475246 hybrid +137_1-1 Q0 MARCO_48_1450710232-2 84 -0.477563 hybrid +137_1-1 Q0 MARCO_50_2388304098-6 85 -0.478050 hybrid +137_1-1 Q0 MARCO_49_646751923-2 86 -0.478507 hybrid +137_1-1 Q0 MARCO_16_3040984498-49 87 -0.481472 hybrid +137_1-1 Q0 MARCO_48_104435441-7 88 -0.481884 hybrid +137_1-1 Q0 KILT_9912495-13 89 -0.482508 hybrid +137_1-1 Q0 MARCO_17_430832366-9 90 -0.485002 hybrid +137_1-1 Q0 MARCO_26_404008777-54 91 -0.485130 hybrid +137_1-1 Q0 MARCO_26_376882717-98 92 -0.485149 hybrid +137_1-1 Q0 MARCO_26_395736684-48 93 -0.485664 hybrid +137_1-1 Q0 MARCO_01_1172449589-125 94 -0.485885 hybrid +137_1-1 Q0 MARCO_26_376804511-43 95 -0.489356 hybrid +137_1-1 Q0 MARCO_26_409616108-30 96 -0.489437 hybrid +137_1-1 Q0 MARCO_26_404008777-50 97 -0.489501 hybrid +137_1-1 Q0 MARCO_41_1238980438-54 98 -0.489685 hybrid +137_1-1 Q0 MARCO_35_313211833-6 99 -0.493134 hybrid +137_1-1 Q0 MARCO_26_396165785-42 100 -0.493230 hybrid +137_1-11 Q0 MARCO_41_1241564357-51 1 0.250002 hybrid +137_1-11 Q0 MARCO_52_1652554245-2 2 0.059390 hybrid +137_1-11 Q0 MARCO_50_1506711576-37 3 0.055435 hybrid +137_1-11 Q0 KILT_12403253-14 4 0.054597 hybrid +137_1-11 Q0 KILT_47069739-30 5 0.052418 hybrid +137_1-11 Q0 MARCO_44_609706399-6 6 -0.032427 hybrid +137_1-11 Q0 MARCO_50_1442251387-40 7 -0.040130 hybrid +137_1-11 Q0 MARCO_52_1649129340-3 8 -0.051875 hybrid +137_1-11 Q0 MARCO_42_1104714867-61 9 -0.068297 hybrid +137_1-11 Q0 MARCO_05_600532054-1 10 -0.082200 hybrid +137_1-11 Q0 MARCO_12_1866611257-14 11 -0.095497 hybrid +137_1-11 Q0 MARCO_23_1085604106-1 12 -0.121983 hybrid +137_1-11 Q0 MARCO_07_1580559307-11 13 -0.127783 hybrid +137_1-11 Q0 MARCO_36_888487863-6 14 -0.129654 hybrid +137_1-11 Q0 MARCO_27_716467557-3 15 -0.133864 hybrid +137_1-11 Q0 MARCO_50_485442108-7 16 -0.150959 hybrid +137_1-11 Q0 MARCO_10_551602548-25 17 -0.158455 hybrid +137_1-11 Q0 MARCO_41_1166922735-16 18 -0.162203 hybrid +137_1-11 Q0 KILT_36860986-46 19 -0.189573 hybrid +137_1-11 Q0 MARCO_40_175150328-11 20 -0.193160 hybrid +137_1-11 Q0 MARCO_46_629689633-3 21 -0.199909 hybrid +137_1-11 Q0 MARCO_41_1189572104-25 22 -0.201074 hybrid +137_1-11 Q0 MARCO_07_1580965634-5 23 -0.201446 hybrid +137_1-11 Q0 MARCO_18_2419479428-32 24 -0.228724 hybrid +137_1-11 Q0 MARCO_35_1382138495-1 25 -0.234041 hybrid +137_1-11 Q0 MARCO_41_1189572104-15 26 -0.234619 hybrid +137_1-11 Q0 MARCO_41_1363908538-8 27 -0.237380 hybrid +137_1-11 Q0 MARCO_35_1383547965-11 28 -0.246020 hybrid +137_1-11 Q0 MARCO_50_2240949679-56 29 -0.249998 hybrid +137_1-11 Q0 MARCO_35_314644994-4 30 -0.255672 hybrid +137_1-11 Q0 MARCO_40_175150328-2 31 -0.261344 hybrid +137_1-11 Q0 MARCO_41_1192539676-47 32 -0.263866 hybrid +137_1-11 Q0 MARCO_44_609297930-1 33 -0.270810 hybrid +137_1-11 Q0 MARCO_41_1406937528-42 34 -0.275446 hybrid +137_1-11 Q0 MARCO_18_1803225057-26 35 -0.277469 hybrid +137_1-11 Q0 MARCO_18_3776644102-16 36 -0.285052 hybrid +137_1-11 Q0 MARCO_43_1019422237-4 37 -0.286212 hybrid +137_1-11 Q0 MARCO_30_558934876-12 38 -0.290400 hybrid +137_1-11 Q0 MARCO_00_1161868671-3 39 -0.292188 hybrid +137_1-11 Q0 MARCO_36_896744753-16 40 -0.294125 hybrid +137_1-11 Q0 KILT_47069739-32 41 -0.294138 hybrid +137_1-11 Q0 MARCO_10_79619100-2 42 -0.295835 hybrid +137_1-11 Q0 MARCO_10_79499431-17 43 -0.303026 hybrid +137_1-11 Q0 KILT_54062262-17 44 -0.305437 hybrid +137_1-11 Q0 MARCO_27_209363489-18 45 -0.305858 hybrid +137_1-11 Q0 MARCO_35_1356084938-2 46 -0.307870 hybrid +137_1-11 Q0 MARCO_42_1105109712-3 47 -0.308685 hybrid +137_1-11 Q0 MARCO_50_1515133112-2 48 -0.315559 hybrid +137_1-11 Q0 MARCO_52_1652568213-7 49 -0.318155 hybrid +137_1-11 Q0 MARCO_41_1189572104-29 50 -0.318535 hybrid +137_1-11 Q0 MARCO_41_1189572104-13 51 -0.321210 hybrid +137_1-11 Q0 MARCO_41_1188303552-26 52 -0.324158 hybrid +137_1-11 Q0 MARCO_41_1186082292-28 53 -0.324975 hybrid +137_1-11 Q0 MARCO_41_1142990402-97 54 -0.327200 hybrid +137_1-11 Q0 MARCO_41_1208002734-34 55 -0.330787 hybrid +137_1-11 Q0 MARCO_42_1103878703-3 56 -0.335043 hybrid +137_1-11 Q0 MARCO_17_3085857032-5 57 -0.335766 hybrid +137_1-11 Q0 MARCO_17_3085857032-7 58 -0.335766 hybrid +137_1-11 Q0 MARCO_41_1366942214-5 59 -0.336596 hybrid +137_1-11 Q0 MARCO_41_1241564357-30 60 -0.337702 hybrid +137_1-11 Q0 MARCO_42_1105176521-45 61 -0.340852 hybrid +137_1-11 Q0 MARCO_50_2501547903-5 62 -0.341425 hybrid +137_1-11 Q0 MARCO_00_1161868671-4 63 -0.344047 hybrid +137_1-11 Q0 MARCO_35_1383547965-8 64 -0.344117 hybrid +137_1-11 Q0 MARCO_15_107455358-32 65 -0.344637 hybrid +137_1-11 Q0 MARCO_18_1803225057-15 66 -0.346255 hybrid +137_1-11 Q0 MARCO_43_1019176089-17 67 -0.346709 hybrid +137_1-11 Q0 MARCO_00_336979131-3 68 -0.347234 hybrid +137_1-11 Q0 MARCO_41_1368079002-10 69 -0.348542 hybrid +137_1-11 Q0 MARCO_42_1104714867-9 70 -0.352002 hybrid +137_1-11 Q0 MARCO_27_1431814765-11 71 -0.355234 hybrid +137_1-11 Q0 MARCO_44_608944968-2 72 -0.358995 hybrid +137_1-11 Q0 MARCO_18_3756735521-55 73 -0.360254 hybrid +137_1-11 Q0 MARCO_24_818625-2 74 -0.360658 hybrid +137_1-11 Q0 MARCO_24_652996254-4 75 -0.361331 hybrid +137_1-11 Q0 MARCO_36_896744753-9 76 -0.362310 hybrid +137_1-11 Q0 MARCO_00_1161868671-2 77 -0.364069 hybrid +137_1-11 Q0 MARCO_42_263700033-2 78 -0.365059 hybrid +137_1-11 Q0 KILT_45359871-21 79 -0.366363 hybrid +137_1-11 Q0 MARCO_41_1142356573-6 80 -0.366508 hybrid +137_1-11 Q0 MARCO_41_1122465642-34 81 -0.366958 hybrid +137_1-11 Q0 MARCO_40_175150328-10 82 -0.368312 hybrid +137_1-11 Q0 MARCO_41_1141970661-51 83 -0.368494 hybrid +137_1-11 Q0 MARCO_44_610655812-1 84 -0.370471 hybrid +137_1-11 Q0 MARCO_27_1554395827-1 85 -0.373684 hybrid +137_1-11 Q0 MARCO_36_1385252696-8 86 -0.375640 hybrid +137_1-11 Q0 MARCO_52_1651010509-2 87 -0.376940 hybrid +137_1-11 Q0 MARCO_07_1580559307-4 88 -0.377641 hybrid +137_1-11 Q0 MARCO_00_1161106414-2 89 -0.377943 hybrid +137_1-11 Q0 MARCO_24_1290697822-2 90 -0.378560 hybrid +137_1-11 Q0 MARCO_42_1104714867-66 91 -0.379301 hybrid +137_1-11 Q0 MARCO_57_179961171-2 92 -0.379654 hybrid +137_1-11 Q0 MARCO_18_3756735521-19 93 -0.379891 hybrid +137_1-11 Q0 MARCO_19_562425557-59 94 -0.382397 hybrid +137_1-11 Q0 MARCO_50_1507139950-17 95 -0.386001 hybrid +137_1-11 Q0 MARCO_41_1373529505-64 96 -0.387198 hybrid +137_1-11 Q0 MARCO_44_609464324-2 97 -0.387824 hybrid +137_1-11 Q0 MARCO_07_1580559307-8 98 -0.390889 hybrid +137_1-11 Q0 MARCO_30_562857078-9 99 -0.391628 hybrid +137_1-11 Q0 KILT_23310072-11 100 -0.394847 hybrid +137_1-3 Q0 KILT_9912495-3 1 0.648241 hybrid +137_1-3 Q0 MARCO_26_397313239-44 2 0.476148 hybrid +137_1-3 Q0 KILT_9912495-6 3 0.470060 hybrid +137_1-3 Q0 KILT_9912495-4 4 0.463123 hybrid +137_1-3 Q0 KILT_9912495-1 5 0.351555 hybrid +137_1-3 Q0 KILT_9912495-5 6 0.175714 hybrid +137_1-3 Q0 MARCO_35_313211833-3 7 0.048497 hybrid +137_1-3 Q0 MARCO_35_313211833-7 8 0.045641 hybrid +137_1-3 Q0 MARCO_26_397313239-45 9 -0.066660 hybrid +137_1-3 Q0 MARCO_55_1040397202-2 10 -0.250000 hybrid +137_1-3 Q0 MARCO_31_719719292-1 11 -0.271803 hybrid +137_1-3 Q0 MARCO_26_404008777-34 12 -0.280176 hybrid +137_1-3 Q0 MARCO_26_344035246-58 13 -0.298467 hybrid +137_1-3 Q0 MARCO_30_1549247804-2 14 -0.304744 hybrid +137_1-3 Q0 MARCO_26_370915100-36 15 -0.308251 hybrid +137_1-3 Q0 MARCO_26_396165785-34 16 -0.317326 hybrid +137_1-3 Q0 KILT_408292-13 17 -0.317682 hybrid +137_1-3 Q0 MARCO_26_404008777-46 18 -0.324116 hybrid +137_1-3 Q0 MARCO_26_404008777-38 19 -0.326814 hybrid +137_1-3 Q0 MARCO_26_397313239-67 20 -0.329228 hybrid +137_1-3 Q0 MARCO_31_719719292-6 21 -0.340941 hybrid +137_1-3 Q0 MARCO_18_2910246170-4 22 -0.344586 hybrid +137_1-3 Q0 MARCO_31_719719292-3 23 -0.353403 hybrid +137_1-3 Q0 KILT_247365-2 24 -0.357207 hybrid +137_1-3 Q0 MARCO_18_2910246170-9 25 -0.362288 hybrid +137_1-3 Q0 MARCO_26_404008777-47 26 -0.365359 hybrid +137_1-3 Q0 MARCO_26_404008777-28 27 -0.369648 hybrid +137_1-3 Q0 MARCO_26_344035246-59 28 -0.370924 hybrid +137_1-3 Q0 MARCO_18_783618318-30 29 -0.371489 hybrid +137_1-3 Q0 MARCO_18_2910246170-5 30 -0.371614 hybrid +137_1-3 Q0 MARCO_18_783618318-32 31 -0.378250 hybrid +137_1-3 Q0 MARCO_49_646751923-2 32 -0.383399 hybrid +137_1-3 Q0 KILT_247365-1 33 -0.383923 hybrid +137_1-3 Q0 MARCO_31_719719292-2 34 -0.386224 hybrid +137_1-3 Q0 MARCO_48_1450710232-2 35 -0.388148 hybrid +137_1-3 Q0 MARCO_18_2910246170-6 36 -0.389824 hybrid +137_1-3 Q0 MARCO_26_404008777-50 37 -0.400585 hybrid +137_1-3 Q0 MARCO_26_396165785-32 38 -0.405276 hybrid +137_1-3 Q0 MARCO_26_385981715-33 39 -0.405565 hybrid +137_1-3 Q0 MARCO_26_404008777-36 40 -0.409937 hybrid +137_1-3 Q0 MARCO_26_368007630-56 41 -0.412079 hybrid +137_1-3 Q0 MARCO_26_404008777-31 42 -0.414422 hybrid +137_1-3 Q0 MARCO_49_1738263214-3 43 -0.415704 hybrid +137_1-3 Q0 MARCO_31_719719292-4 44 -0.417436 hybrid +137_1-3 Q0 MARCO_26_407379693-15 45 -0.417988 hybrid +137_1-3 Q0 MARCO_18_2910049991-2 46 -0.418316 hybrid +137_1-3 Q0 MARCO_26_365290625-46 47 -0.422492 hybrid +137_1-3 Q0 MARCO_18_2910049991-3 48 -0.434191 hybrid +137_1-3 Q0 MARCO_26_396165785-45 49 -0.436533 hybrid +137_1-3 Q0 MARCO_26_396024234-43 50 -0.436665 hybrid +137_1-3 Q0 MARCO_04_654519061-15 51 -0.447696 hybrid +137_1-3 Q0 MARCO_24_446293844-1 52 -0.449693 hybrid +137_1-3 Q0 MARCO_26_396024234-50 53 -0.449928 hybrid +137_1-3 Q0 MARCO_18_783618318-27 54 -0.450313 hybrid +137_1-3 Q0 MARCO_30_2053025072-11 55 -0.452309 hybrid +137_1-3 Q0 MARCO_26_411775176-97 56 -0.455777 hybrid +137_1-3 Q0 MARCO_26_331522881-121 57 -0.456958 hybrid +137_1-3 Q0 MARCO_52_53056813-1 58 -0.458166 hybrid +137_1-3 Q0 MARCO_11_1427165601-1 59 -0.461526 hybrid +137_1-3 Q0 MARCO_26_352172018-92 60 -0.462889 hybrid +137_1-3 Q0 MARCO_50_1667708224-3 61 -0.465661 hybrid +137_1-3 Q0 MARCO_18_783618318-12 62 -0.468247 hybrid +137_1-3 Q0 MARCO_26_396165785-33 63 -0.468389 hybrid +137_1-3 Q0 MARCO_28_325330682-17 64 -0.470094 hybrid +137_1-3 Q0 MARCO_31_719719292-9 65 -0.471440 hybrid +137_1-3 Q0 MARCO_26_396024234-44 66 -0.471486 hybrid +137_1-3 Q0 MARCO_18_2910246170-22 67 -0.474576 hybrid +137_1-3 Q0 MARCO_26_352172018-87 68 -0.476010 hybrid +137_1-3 Q0 MARCO_26_396024234-40 69 -0.476223 hybrid +137_1-3 Q0 KILT_8481853-4 70 -0.482245 hybrid +137_1-3 Q0 MARCO_26_396165785-44 71 -0.485496 hybrid +137_1-3 Q0 KILT_408292-10 72 -0.485958 hybrid +137_1-3 Q0 MARCO_13_1026447714-6 73 -0.487430 hybrid +137_1-3 Q0 MARCO_26_365389421-75 74 -0.488126 hybrid +137_1-3 Q0 MARCO_18_2910246170-2 75 -0.488766 hybrid +137_1-3 Q0 MARCO_43_846023892-2 76 -0.489258 hybrid +137_1-3 Q0 MARCO_18_2910246170-3 77 -0.489791 hybrid +137_1-3 Q0 MARCO_26_379963375-42 78 -0.489945 hybrid +137_1-3 Q0 MARCO_41_1238980438-54 79 -0.490553 hybrid +137_1-3 Q0 MARCO_30_1549247804-3 80 -0.491547 hybrid +137_1-3 Q0 MARCO_26_376804511-43 81 -0.491889 hybrid +137_1-3 Q0 MARCO_14_1571463715-2 82 -0.494387 hybrid +137_1-3 Q0 KILT_247365-3 83 -0.495239 hybrid +137_1-3 Q0 MARCO_26_396165785-47 84 -0.495490 hybrid +137_1-3 Q0 KILT_9912495-13 85 -0.496816 hybrid +137_1-3 Q0 MARCO_28_803265979-2 86 -0.498543 hybrid +137_1-3 Q0 MARCO_26_408882664-61 87 -0.498674 hybrid +137_1-3 Q0 MARCO_26_396024234-42 88 -0.499296 hybrid +137_1-3 Q0 MARCO_26_344035246-61 89 -0.499328 hybrid +137_1-3 Q0 MARCO_58_1153356040-7 90 -0.500452 hybrid +137_1-3 Q0 MARCO_48_1564330825-4 91 -0.500672 hybrid +137_1-3 Q0 MARCO_26_404008777-44 92 -0.505167 hybrid +137_1-3 Q0 MARCO_15_104587312-25 93 -0.505641 hybrid +137_1-3 Q0 MARCO_26_376882717-98 94 -0.505684 hybrid +137_1-3 Q0 MARCO_26_404008777-61 95 -0.506168 hybrid +137_1-3 Q0 MARCO_26_396107592-29 96 -0.506921 hybrid +137_1-3 Q0 MARCO_26_372198263-53 97 -0.506996 hybrid +137_1-3 Q0 MARCO_26_377868967-51 98 -0.507590 hybrid +137_1-3 Q0 MARCO_18_2910246170-30 99 -0.508189 hybrid +137_1-3 Q0 MARCO_26_396165785-35 100 -0.508723 hybrid +137_1-5 Q0 KILT_9912495-4 1 0.750001 hybrid +137_1-5 Q0 MARCO_26_397313239-44 2 0.315725 hybrid +137_1-5 Q0 KILT_9912495-5 3 0.282881 hybrid +137_1-5 Q0 KILT_9912495-3 4 0.280066 hybrid +137_1-5 Q0 KILT_9912495-6 5 0.003005 hybrid +137_1-5 Q0 KILT_9912495-1 6 0.000143 hybrid +137_1-5 Q0 MARCO_35_313211833-3 7 -0.017152 hybrid +137_1-5 Q0 MARCO_15_104587312-71 8 -0.161479 hybrid +137_1-5 Q0 KILT_9912495-2 9 -0.257443 hybrid +137_1-5 Q0 MARCO_18_2910246170-6 10 -0.276233 hybrid +137_1-5 Q0 MARCO_35_313211833-6 11 -0.369334 hybrid +137_1-5 Q0 MARCO_35_313211833-7 12 -0.373828 hybrid +137_1-5 Q0 MARCO_18_2910246170-4 13 -0.408337 hybrid +137_1-5 Q0 MARCO_18_2910246170-5 14 -0.435910 hybrid +137_1-5 Q0 MARCO_35_313211833-4 15 -0.440283 hybrid +137_1-5 Q0 KILT_9912495-7 16 -0.444562 hybrid +137_1-5 Q0 MARCO_26_397313239-45 17 -0.457218 hybrid +137_1-5 Q0 MARCO_18_2910246170-7 18 -0.463520 hybrid +137_1-5 Q0 MARCO_43_846023892-2 19 -0.465914 hybrid +137_1-5 Q0 MARCO_18_2910246170-9 20 -0.469650 hybrid +137_1-5 Q0 MARCO_28_23289269-2 21 -0.471560 hybrid +137_1-5 Q0 MARCO_31_719719292-9 22 -0.472352 hybrid +137_1-5 Q0 MARCO_49_1738263214-2 23 -0.475584 hybrid +137_1-5 Q0 MARCO_48_1450710232-2 24 -0.479226 hybrid +137_1-5 Q0 MARCO_26_377868967-54 25 -0.482393 hybrid +137_1-5 Q0 MARCO_26_347456926-47 26 -0.484732 hybrid +137_1-5 Q0 MARCO_58_1153356040-7 27 -0.490681 hybrid +137_1-5 Q0 MARCO_13_1026447714-6 28 -0.491168 hybrid +137_1-5 Q0 MARCO_31_719719292-1 29 -0.495327 hybrid +137_1-5 Q0 MARCO_31_719719292-4 30 -0.519494 hybrid +137_1-5 Q0 MARCO_18_2910049991-2 31 -0.520340 hybrid +137_1-5 Q0 MARCO_26_353078894-31 32 -0.523649 hybrid +137_1-5 Q0 MARCO_19_1098899390-13 33 -0.525593 hybrid +137_1-5 Q0 MARCO_26_379963375-42 34 -0.532976 hybrid +137_1-5 Q0 MARCO_26_376804511-43 35 -0.533629 hybrid +137_1-5 Q0 MARCO_18_2910246170-3 36 -0.533899 hybrid +137_1-5 Q0 MARCO_26_385848624-19 37 -0.535168 hybrid +137_1-5 Q0 MARCO_49_1738263214-3 38 -0.535734 hybrid +137_1-5 Q0 MARCO_17_2520435101-75 39 -0.539296 hybrid +137_1-5 Q0 MARCO_30_2053025072-11 40 -0.539926 hybrid +137_1-5 Q0 MARCO_26_404008777-46 41 -0.541647 hybrid +137_1-5 Q0 MARCO_44_1568576535-22 42 -0.542358 hybrid +137_1-5 Q0 MARCO_26_408882664-61 43 -0.542648 hybrid +137_1-5 Q0 MARCO_18_2910049991-3 44 -0.545939 hybrid +137_1-5 Q0 MARCO_50_2388304098-6 45 -0.546586 hybrid +137_1-5 Q0 KILT_183290-10 46 -0.548213 hybrid +137_1-5 Q0 MARCO_55_1040397202-2 47 -0.548648 hybrid +137_1-5 Q0 KILT_9912495-9 48 -0.550203 hybrid +137_1-5 Q0 MARCO_26_397313239-67 49 -0.551561 hybrid +137_1-5 Q0 KILT_247365-1 50 -0.552897 hybrid +137_1-5 Q0 MARCO_24_446293844-1 51 -0.552953 hybrid +137_1-5 Q0 MARCO_31_719719292-6 52 -0.558394 hybrid +137_1-5 Q0 MARCO_46_1381637356-33 53 -0.563860 hybrid +137_1-5 Q0 MARCO_26_376804511-42 54 -0.565502 hybrid +137_1-5 Q0 MARCO_48_104435441-2 55 -0.567578 hybrid +137_1-5 Q0 MARCO_26_377868967-48 56 -0.567852 hybrid +137_1-5 Q0 KILT_247365-2 57 -0.568357 hybrid +137_1-5 Q0 MARCO_24_446293844-3 58 -0.569179 hybrid +137_1-5 Q0 MARCO_26_377868967-51 59 -0.569219 hybrid +137_1-5 Q0 MARCO_55_191290238-2 60 -0.570657 hybrid +137_1-5 Q0 MARCO_58_1471918465-3 61 -0.571991 hybrid +137_1-5 Q0 MARCO_30_1549247804-2 62 -0.572427 hybrid +137_1-5 Q0 MARCO_26_365290625-46 63 -0.573566 hybrid +137_1-5 Q0 MARCO_41_1371154070-21 64 -0.576086 hybrid +137_1-5 Q0 MARCO_33_1476721706-2 65 -0.578026 hybrid +137_1-5 Q0 MARCO_04_654519061-15 66 -0.580131 hybrid +137_1-5 Q0 MARCO_50_1340018063-101 67 -0.580331 hybrid +137_1-5 Q0 MARCO_26_408882664-22 68 -0.581429 hybrid +137_1-5 Q0 MARCO_06_1214366569-89 69 -0.581431 hybrid +137_1-5 Q0 MARCO_26_357876766-39 70 -0.582636 hybrid +137_1-5 Q0 MARCO_26_404008777-38 71 -0.582757 hybrid +137_1-5 Q0 MARCO_26_377868967-50 72 -0.583649 hybrid +137_1-5 Q0 MARCO_18_783618318-12 73 -0.584153 hybrid +137_1-5 Q0 KILT_93070-17 74 -0.587705 hybrid +137_1-5 Q0 MARCO_26_378206685-96 75 -0.588404 hybrid +137_1-5 Q0 MARCO_26_404008777-54 76 -0.589039 hybrid +137_1-5 Q0 KILT_40686725-1 77 -0.589279 hybrid +137_1-5 Q0 MARCO_26_395736684-48 78 -0.589501 hybrid +137_1-5 Q0 MARCO_26_397313239-43 79 -0.589655 hybrid +137_1-5 Q0 MARCO_18_2910049991-11 80 -0.589851 hybrid +137_1-5 Q0 KILT_9912495-13 81 -0.589999 hybrid +137_1-5 Q0 MARCO_26_386596055-52 82 -0.590896 hybrid +137_1-5 Q0 MARCO_06_1854467530-3 83 -0.591354 hybrid +137_1-5 Q0 MARCO_52_54527362-2 84 -0.593369 hybrid +137_1-5 Q0 MARCO_50_2400049336-47 85 -0.593485 hybrid +137_1-5 Q0 MARCO_18_2910246170-2 86 -0.593940 hybrid +137_1-5 Q0 MARCO_50_1616036438-2 87 -0.594672 hybrid +137_1-5 Q0 MARCO_41_1238980438-54 88 -0.594871 hybrid +137_1-5 Q0 MARCO_30_1549247804-1 89 -0.594928 hybrid +137_1-5 Q0 MARCO_31_719719292-2 90 -0.595429 hybrid +137_1-5 Q0 MARCO_54_1109926822-10 91 -0.595808 hybrid +137_1-5 Q0 KILT_31167886-1 92 -0.596089 hybrid +137_1-5 Q0 MARCO_43_846023892-1 93 -0.596565 hybrid +137_1-5 Q0 MARCO_35_313211833-5 94 -0.596890 hybrid +137_1-5 Q0 MARCO_48_104435441-5 95 -0.597323 hybrid +137_1-5 Q0 MARCO_41_1184140562-57 96 -0.602506 hybrid +137_1-5 Q0 MARCO_07_545692170-20 97 -0.602744 hybrid +137_1-5 Q0 MARCO_26_394547933-23 98 -0.603048 hybrid +137_1-5 Q0 MARCO_02_491378805-4 99 -0.603629 hybrid +137_1-5 Q0 MARCO_13_1026447714-1 100 -0.603692 hybrid +137_1-7 Q0 MARCO_35_313211833-6 1 0.275366 hybrid +137_1-7 Q0 KILT_9912495-4 2 0.250000 hybrid +137_1-7 Q0 MARCO_35_313211833-7 3 0.179022 hybrid +137_1-7 Q0 MARCO_26_397313239-44 4 0.031476 hybrid +137_1-7 Q0 MARCO_35_313211833-3 5 0.029255 hybrid +137_1-7 Q0 MARCO_26_410531635-58 6 -0.036075 hybrid +137_1-7 Q0 KILT_9912495-13 7 -0.041661 hybrid +137_1-7 Q0 MARCO_44_39582049-6 8 -0.046000 hybrid +137_1-7 Q0 MARCO_15_104587312-71 9 -0.088537 hybrid +137_1-7 Q0 KILT_9912495-7 10 -0.089199 hybrid +137_1-7 Q0 KILT_9912495-9 11 -0.105585 hybrid +137_1-7 Q0 MARCO_26_410531635-59 12 -0.111963 hybrid +137_1-7 Q0 MARCO_52_1205136674-6 13 -0.150144 hybrid +137_1-7 Q0 MARCO_41_1173544761-32 14 -0.174212 hybrid +137_1-7 Q0 MARCO_01_796399095-2 15 -0.205564 hybrid +137_1-7 Q0 MARCO_01_796399095-62 16 -0.207575 hybrid +137_1-7 Q0 KILT_9912495-6 17 -0.220012 hybrid +137_1-7 Q0 MARCO_28_448617516-4 18 -0.232748 hybrid +137_1-7 Q0 MARCO_12_278460211-19 19 -0.236796 hybrid +137_1-7 Q0 MARCO_26_378206685-98 20 -0.249358 hybrid +137_1-7 Q0 MARCO_07_545692170-37 21 -0.250322 hybrid +137_1-7 Q0 MARCO_50_2486569954-17 22 -0.260703 hybrid +137_1-7 Q0 MARCO_35_313211833-5 23 -0.280969 hybrid +137_1-7 Q0 MARCO_01_796399095-95 24 -0.283005 hybrid +137_1-7 Q0 MARCO_41_1173544761-50 25 -0.287718 hybrid +137_1-7 Q0 MARCO_02_1357127227-9 26 -0.313046 hybrid +137_1-7 Q0 MARCO_50_1668238923-36 27 -0.313959 hybrid +137_1-7 Q0 MARCO_26_408882664-61 28 -0.324477 hybrid +137_1-7 Q0 MARCO_50_1663146146-45 29 -0.327548 hybrid +137_1-7 Q0 KILT_9912495-2 30 -0.344646 hybrid +137_1-7 Q0 MARCO_24_537810-25 31 -0.347916 hybrid +137_1-7 Q0 KILT_9912495-3 32 -0.358339 hybrid +137_1-7 Q0 MARCO_58_1178297016-1 33 -0.358458 hybrid +137_1-7 Q0 MARCO_50_1603056025-3 34 -0.358479 hybrid +137_1-7 Q0 MARCO_35_313211833-4 35 -0.363314 hybrid +137_1-7 Q0 MARCO_50_1603056025-17 36 -0.363986 hybrid +137_1-7 Q0 MARCO_26_376804511-43 37 -0.366914 hybrid +137_1-7 Q0 MARCO_12_278460211-22 38 -0.368302 hybrid +137_1-7 Q0 MARCO_26_404008777-41 39 -0.369764 hybrid +137_1-7 Q0 MARCO_26_406817309-41 40 -0.375865 hybrid +137_1-7 Q0 MARCO_32_151745117-4 41 -0.376536 hybrid +137_1-7 Q0 MARCO_26_397313239-67 42 -0.376724 hybrid +137_1-7 Q0 MARCO_26_377868967-54 43 -0.376918 hybrid +137_1-7 Q0 MARCO_12_278460211-30 44 -0.383971 hybrid +137_1-7 Q0 MARCO_41_1173544761-6 45 -0.386353 hybrid +137_1-7 Q0 MARCO_07_545692170-20 46 -0.394083 hybrid +137_1-7 Q0 MARCO_26_357680895-20 47 -0.398722 hybrid +137_1-7 Q0 MARCO_42_91248100-252 48 -0.399129 hybrid +137_1-7 Q0 MARCO_26_376804511-42 49 -0.400751 hybrid +137_1-7 Q0 MARCO_48_588995135-6 50 -0.401321 hybrid +137_1-7 Q0 MARCO_41_1173544761-20 51 -0.406992 hybrid +137_1-7 Q0 MARCO_12_278460211-20 52 -0.407455 hybrid +137_1-7 Q0 MARCO_50_1603056025-12 53 -0.409595 hybrid +137_1-7 Q0 MARCO_16_107310546-3 54 -0.420235 hybrid +137_1-7 Q0 MARCO_44_39582049-2 55 -0.420286 hybrid +137_1-7 Q0 MARCO_50_1446002716-116 56 -0.424336 hybrid +137_1-7 Q0 KILT_9912495-5 57 -0.428954 hybrid +137_1-7 Q0 MARCO_22_1168232426-1 58 -0.430302 hybrid +137_1-7 Q0 MARCO_04_654519061-8 59 -0.430509 hybrid +137_1-7 Q0 MARCO_25_1442871446-4 60 -0.433547 hybrid +137_1-7 Q0 MARCO_28_1150599737-6 61 -0.437233 hybrid +137_1-7 Q0 MARCO_26_397313239-43 62 -0.439391 hybrid +137_1-7 Q0 MARCO_50_1179543637-8 63 -0.440263 hybrid +137_1-7 Q0 MARCO_51_1645613397-3 64 -0.441765 hybrid +137_1-7 Q0 MARCO_50_1616036438-2 65 -0.445781 hybrid +137_1-7 Q0 MARCO_41_1173544761-18 66 -0.449891 hybrid +137_1-7 Q0 MARCO_11_777787513-29 67 -0.450193 hybrid +137_1-7 Q0 MARCO_31_719719292-5 68 -0.450418 hybrid +137_1-7 Q0 MARCO_26_386596055-52 69 -0.450882 hybrid +137_1-7 Q0 MARCO_11_777787513-23 70 -0.450969 hybrid +137_1-7 Q0 MARCO_50_1675172049-12 71 -0.452443 hybrid +137_1-7 Q0 MARCO_31_430990620-9 72 -0.452597 hybrid +137_1-7 Q0 MARCO_26_404008777-25 73 -0.454022 hybrid +137_1-7 Q0 MARCO_50_2381036949-29 74 -0.454834 hybrid +137_1-7 Q0 MARCO_50_1668405848-8 75 -0.454983 hybrid +137_1-7 Q0 MARCO_26_404008777-45 76 -0.457076 hybrid +137_1-7 Q0 MARCO_50_496818212-13 77 -0.457267 hybrid +137_1-7 Q0 MARCO_01_796399095-8 78 -0.457869 hybrid +137_1-7 Q0 MARCO_26_410531635-86 79 -0.459051 hybrid +137_1-7 Q0 MARCO_07_545692170-36 80 -0.460392 hybrid +137_1-7 Q0 MARCO_00_758210120-19 81 -0.461177 hybrid +137_1-7 Q0 MARCO_50_2380164792-47 82 -0.461484 hybrid +137_1-7 Q0 MARCO_26_404008777-27 83 -0.462421 hybrid +137_1-7 Q0 MARCO_31_719719292-7 84 -0.463978 hybrid +137_1-7 Q0 MARCO_50_1526008746-14 85 -0.465830 hybrid +137_1-7 Q0 MARCO_39_597130705-13 86 -0.468919 hybrid +137_1-7 Q0 MARCO_01_796399095-7 87 -0.469259 hybrid +137_1-7 Q0 MARCO_50_1661308381-8 88 -0.469283 hybrid +137_1-7 Q0 MARCO_26_412880506-85 89 -0.469847 hybrid +137_1-7 Q0 MARCO_50_1526008746-15 90 -0.470674 hybrid +137_1-7 Q0 MARCO_18_2910049991-3 91 -0.471776 hybrid +137_1-7 Q0 MARCO_09_1198478033-11 92 -0.474793 hybrid +137_1-7 Q0 MARCO_25_1442871446-7 93 -0.475243 hybrid +137_1-7 Q0 MARCO_50_2389389055-10 94 -0.475536 hybrid +137_1-7 Q0 MARCO_26_402068535-46 95 -0.476572 hybrid +137_1-7 Q0 MARCO_44_39582049-1 96 -0.477180 hybrid +137_1-7 Q0 MARCO_05_842162679-4 97 -0.477315 hybrid +137_1-7 Q0 MARCO_00_831084902-5 98 -0.477584 hybrid +137_1-7 Q0 MARCO_55_191290238-1 99 -0.480321 hybrid +137_1-7 Q0 MARCO_51_1998392730-2 100 -0.480702 hybrid +137_1-9 Q0 MARCO_25_1770430570-5 1 0.250002 hybrid +137_1-9 Q0 MARCO_10_552964251-1 2 0.164684 hybrid +137_1-9 Q0 MARCO_56_1314990292-1 3 0.051020 hybrid +137_1-9 Q0 MARCO_01_693813107-1 4 0.015347 hybrid +137_1-9 Q0 MARCO_01_693146435-5 5 -0.028282 hybrid +137_1-9 Q0 MARCO_46_1520580759-5 6 -0.057977 hybrid +137_1-9 Q0 MARCO_16_1685676070-13 7 -0.058555 hybrid +137_1-9 Q0 MARCO_25_1428379061-1 8 -0.084886 hybrid +137_1-9 Q0 MARCO_46_1482981851-2 9 -0.085372 hybrid +137_1-9 Q0 MARCO_56_1314117781-14 10 -0.090006 hybrid +137_1-9 Q0 MARCO_46_1495548279-4 11 -0.096370 hybrid +137_1-9 Q0 MARCO_37_1184628030-5 12 -0.106571 hybrid +137_1-9 Q0 MARCO_36_996899171-3 13 -0.118616 hybrid +137_1-9 Q0 MARCO_37_1184628030-3 14 -0.133399 hybrid +137_1-9 Q0 MARCO_34_894073251-5 15 -0.135650 hybrid +137_1-9 Q0 MARCO_35_421238327-1 16 -0.146067 hybrid +137_1-9 Q0 MARCO_35_421238327-4 17 -0.146264 hybrid +137_1-9 Q0 MARCO_21_1454970738-1 18 -0.157181 hybrid +137_1-9 Q0 MARCO_15_109509717-1 19 -0.159278 hybrid +137_1-9 Q0 MARCO_37_1184628030-1 20 -0.164987 hybrid +137_1-9 Q0 MARCO_46_1493192350-2 21 -0.169649 hybrid +137_1-9 Q0 MARCO_54_2036200848-16 22 -0.173278 hybrid +137_1-9 Q0 MARCO_00_719251836-12 23 -0.173285 hybrid +137_1-9 Q0 MARCO_37_1515146581-12 24 -0.173285 hybrid +137_1-9 Q0 MARCO_29_28020443-4 25 -0.179519 hybrid +137_1-9 Q0 MARCO_25_1428433430-1 26 -0.191123 hybrid +137_1-9 Q0 MARCO_54_1861230181-2 27 -0.193209 hybrid +137_1-9 Q0 MARCO_16_1684497283-34 28 -0.229040 hybrid +137_1-9 Q0 MARCO_25_1428379061-2 29 -0.231024 hybrid +137_1-9 Q0 MARCO_52_1377174011-8 30 -0.232254 hybrid +137_1-9 Q0 MARCO_21_1454832992-7 31 -0.234262 hybrid +137_1-9 Q0 MARCO_37_719484606-14 32 -0.239069 hybrid +137_1-9 Q0 MARCO_25_1428379061-4 33 -0.246800 hybrid +137_1-9 Q0 MARCO_25_365440623-3 34 -0.249998 hybrid +137_1-9 Q0 MARCO_07_780339649-4 35 -0.253241 hybrid +137_1-9 Q0 MARCO_07_619012573-9 36 -0.256540 hybrid +137_1-9 Q0 MARCO_43_1241999230-5 37 -0.260787 hybrid +137_1-9 Q0 MARCO_05_487478111-12 38 -0.269506 hybrid +137_1-9 Q0 MARCO_55_717500246-1 39 -0.274949 hybrid +137_1-9 Q0 MARCO_16_1684497283-36 40 -0.277310 hybrid +137_1-9 Q0 MARCO_37_1516943259-5 41 -0.279075 hybrid +137_1-9 Q0 MARCO_07_258528921-2 42 -0.279953 hybrid +137_1-9 Q0 MARCO_29_663445075-10 43 -0.281304 hybrid +137_1-9 Q0 MARCO_43_1273083537-1 44 -0.282268 hybrid +137_1-9 Q0 MARCO_37_1516657940-14 45 -0.292794 hybrid +137_1-9 Q0 MARCO_00_718646688-13 46 -0.292794 hybrid +137_1-9 Q0 MARCO_00_719092455-15 47 -0.292794 hybrid +137_1-9 Q0 MARCO_00_719191069-16 48 -0.292794 hybrid +137_1-9 Q0 MARCO_37_1513929449-16 49 -0.292794 hybrid +137_1-9 Q0 MARCO_37_1515184339-17 50 -0.292794 hybrid +137_1-9 Q0 MARCO_37_1514563964-16 51 -0.292794 hybrid +137_1-9 Q0 MARCO_37_1514410565-13 52 -0.292801 hybrid +137_1-9 Q0 MARCO_56_1314990292-2 53 -0.297572 hybrid +137_1-9 Q0 MARCO_15_109509717-6 54 -0.302562 hybrid +137_1-9 Q0 MARCO_01_693146435-3 55 -0.303330 hybrid +137_1-9 Q0 MARCO_16_1582713770-41 56 -0.308482 hybrid +137_1-9 Q0 MARCO_54_1564457194-4 57 -0.314994 hybrid +137_1-9 Q0 MARCO_10_377583604-1 58 -0.317084 hybrid +137_1-9 Q0 MARCO_19_2430945104-2 59 -0.318028 hybrid +137_1-9 Q0 MARCO_00_719041658-13 60 -0.319011 hybrid +137_1-9 Q0 MARCO_37_1517087951-16 61 -0.319018 hybrid +137_1-9 Q0 MARCO_25_529396751-1 62 -0.320026 hybrid +137_1-9 Q0 MARCO_54_1564718358-2 63 -0.328448 hybrid +137_1-9 Q0 MARCO_17_3105101738-70 64 -0.329393 hybrid +137_1-9 Q0 MARCO_10_9591135-1 65 -0.332719 hybrid +137_1-9 Q0 MARCO_47_12338566-5 66 -0.336550 hybrid +137_1-9 Q0 MARCO_56_1315019440-7 67 -0.342928 hybrid +137_1-9 Q0 MARCO_37_715328708-5 68 -0.343087 hybrid +137_1-9 Q0 MARCO_39_421215551-1 69 -0.344390 hybrid +137_1-9 Q0 MARCO_54_1564745261-2 70 -0.345863 hybrid +137_1-9 Q0 MARCO_46_1439176350-4 71 -0.347424 hybrid +137_1-9 Q0 MARCO_46_1391297356-5 72 -0.348725 hybrid +137_1-9 Q0 MARCO_05_488432989-14 73 -0.354032 hybrid +137_1-9 Q0 KILT_32818732-3 74 -0.354159 hybrid +137_1-9 Q0 MARCO_23_293448858-2 75 -0.354331 hybrid +137_1-9 Q0 MARCO_54_1564734005-1 76 -0.355560 hybrid +137_1-9 Q0 MARCO_24_118787-4 77 -0.355716 hybrid +137_1-9 Q0 MARCO_46_1391747265-3 78 -0.356061 hybrid +137_1-9 Q0 MARCO_11_775697956-8 79 -0.356160 hybrid +137_1-9 Q0 MARCO_48_1895824261-4 80 -0.359867 hybrid +137_1-9 Q0 MARCO_16_1684454089-32 81 -0.360202 hybrid +137_1-9 Q0 MARCO_46_1524394101-6 82 -0.361647 hybrid +137_1-9 Q0 KILT_219358-5 83 -0.363743 hybrid +137_1-9 Q0 MARCO_01_693813107-2 84 -0.366157 hybrid +137_1-9 Q0 MARCO_24_138783480-6 85 -0.366950 hybrid +137_1-9 Q0 MARCO_48_830564436-4 86 -0.369216 hybrid +137_1-9 Q0 MARCO_43_1248151085-9 87 -0.370432 hybrid +137_1-9 Q0 MARCO_01_693129166-2 88 -0.371693 hybrid +137_1-9 Q0 MARCO_46_1455096042-2 89 -0.372060 hybrid +137_1-9 Q0 MARCO_07_1581127088-14 90 -0.376835 hybrid +137_1-9 Q0 MARCO_17_2909080088-30 91 -0.379883 hybrid +137_1-9 Q0 MARCO_08_756892048-28 92 -0.380019 hybrid +137_1-9 Q0 MARCO_47_13975024-3 93 -0.380753 hybrid +137_1-9 Q0 MARCO_37_714986268-3 94 -0.380806 hybrid +137_1-9 Q0 MARCO_32_43063415-43 95 -0.381257 hybrid +137_1-9 Q0 MARCO_46_1413170949-2 96 -0.382205 hybrid +137_1-9 Q0 MARCO_47_420531451-11 97 -0.383259 hybrid +137_1-9 Q0 MARCO_44_34026219-11 98 -0.383375 hybrid +137_1-9 Q0 MARCO_17_1677620653-26 99 -0.383960 hybrid +137_1-9 Q0 MARCO_46_1512601102-4 100 -0.384531 hybrid +138_1-1 Q0 MARCO_56_500511523-4 1 0.351413 hybrid +138_1-1 Q0 MARCO_29_778684157-1 2 0.319187 hybrid +138_1-1 Q0 MARCO_32_1011596696-4 3 0.239560 hybrid +138_1-1 Q0 MARCO_41_2135663326-2 4 0.221369 hybrid +138_1-1 Q0 MARCO_14_43917945-3 5 0.189340 hybrid +138_1-1 Q0 MARCO_14_43917945-5 6 0.183116 hybrid +138_1-1 Q0 MARCO_14_43649755-2 7 0.129306 hybrid +138_1-1 Q0 MARCO_59_441044989-4 8 0.123795 hybrid +138_1-1 Q0 MARCO_31_942788861-12 9 0.115894 hybrid +138_1-1 Q0 MARCO_29_778684157-5 10 0.028711 hybrid +138_1-1 Q0 MARCO_47_1308048954-6 11 0.002932 hybrid +138_1-1 Q0 MARCO_56_500511523-2 12 -0.000997 hybrid +138_1-1 Q0 MARCO_14_43917945-14 13 -0.012941 hybrid +138_1-1 Q0 MARCO_26_729899077-1 14 -0.037306 hybrid +138_1-1 Q0 MARCO_12_1728719434-11 15 -0.042401 hybrid +138_1-1 Q0 MARCO_50_1662318356-8 16 -0.043674 hybrid +138_1-1 Q0 MARCO_32_884498271-10 17 -0.055056 hybrid +138_1-1 Q0 MARCO_50_517985630-11 18 -0.057849 hybrid +138_1-1 Q0 MARCO_08_1119902178-11 19 -0.058387 hybrid +138_1-1 Q0 MARCO_37_376061342-30 20 -0.059025 hybrid +138_1-1 Q0 MARCO_56_500511523-1 21 -0.059207 hybrid +138_1-1 Q0 MARCO_46_1312513063-5 22 -0.066636 hybrid +138_1-1 Q0 MARCO_56_500511523-5 23 -0.072529 hybrid +138_1-1 Q0 MARCO_56_500502618-2 24 -0.075837 hybrid +138_1-1 Q0 MARCO_13_454744502-1 25 -0.081733 hybrid +138_1-1 Q0 MARCO_56_500502618-3 26 -0.090967 hybrid +138_1-1 Q0 MARCO_14_43917945-4 27 -0.091706 hybrid +138_1-1 Q0 MARCO_52_1204662779-4 28 -0.094178 hybrid +138_1-1 Q0 MARCO_00_1007620636-34 29 -0.101080 hybrid +138_1-1 Q0 MARCO_46_1312509993-2 30 -0.105099 hybrid +138_1-1 Q0 MARCO_22_1579067158-1 31 -0.106011 hybrid +138_1-1 Q0 MARCO_02_1124710190-13 32 -0.113879 hybrid +138_1-1 Q0 MARCO_45_979353361-14 33 -0.117316 hybrid +138_1-1 Q0 MARCO_38_1389712959-2 34 -0.124286 hybrid +138_1-1 Q0 MARCO_14_43917945-7 35 -0.130877 hybrid +138_1-1 Q0 MARCO_56_500469135-6 36 -0.144228 hybrid +138_1-1 Q0 MARCO_42_607843446-7 37 -0.153489 hybrid +138_1-1 Q0 MARCO_50_496596490-6 38 -0.162569 hybrid +138_1-1 Q0 MARCO_40_173310558-11 39 -0.165359 hybrid +138_1-1 Q0 MARCO_11_711052295-6 40 -0.179531 hybrid +138_1-1 Q0 MARCO_50_493672960-1 41 -0.191822 hybrid +138_1-1 Q0 MARCO_14_43917945-1 42 -0.196245 hybrid +138_1-1 Q0 MARCO_14_43917945-9 43 -0.199733 hybrid +138_1-1 Q0 MARCO_45_978515060-9 44 -0.207367 hybrid +138_1-1 Q0 MARCO_26_729899077-10 45 -0.209522 hybrid +138_1-1 Q0 MARCO_30_1778737021-3 46 -0.214978 hybrid +138_1-1 Q0 MARCO_13_454744502-2 47 -0.215292 hybrid +138_1-1 Q0 MARCO_29_777369619-213 48 -0.218870 hybrid +138_1-1 Q0 MARCO_29_661253184-2 49 -0.219392 hybrid +138_1-1 Q0 MARCO_00_896694712-2 50 -0.221673 hybrid +138_1-1 Q0 MARCO_36_566975496-3 51 -0.222344 hybrid +138_1-1 Q0 MARCO_12_1728719434-10 52 -0.223163 hybrid +138_1-1 Q0 MARCO_31_942788861-59 53 -0.225157 hybrid +138_1-1 Q0 MARCO_37_376061342-29 54 -0.230194 hybrid +138_1-1 Q0 MARCO_31_942788861-9 55 -0.236089 hybrid +138_1-1 Q0 MARCO_49_1828062049-3 56 -0.237392 hybrid +138_1-1 Q0 MARCO_06_744173091-2 57 -0.242399 hybrid +138_1-1 Q0 MARCO_11_598124821-2 58 -0.243586 hybrid +138_1-1 Q0 MARCO_50_515798832-1 59 -0.245740 hybrid +138_1-1 Q0 MARCO_12_1728941334-8 60 -0.248834 hybrid +138_1-1 Q0 MARCO_00_1673016414-87 61 -0.250000 hybrid +138_1-1 Q0 MARCO_02_1741589316-1 62 -0.255023 hybrid +138_1-1 Q0 MARCO_11_711608682-11 63 -0.255085 hybrid +138_1-1 Q0 MARCO_25_1408335167-6 64 -0.257223 hybrid +138_1-1 Q0 MARCO_00_1007620636-33 65 -0.257898 hybrid +138_1-1 Q0 MARCO_59_441044989-1 66 -0.259007 hybrid +138_1-1 Q0 MARCO_32_884446280-7 67 -0.260183 hybrid +138_1-1 Q0 MARCO_06_1525186170-6 68 -0.265091 hybrid +138_1-1 Q0 MARCO_40_176235281-3 69 -0.266357 hybrid +138_1-1 Q0 MARCO_40_173382525-4 70 -0.266648 hybrid +138_1-1 Q0 MARCO_50_1662318356-7 71 -0.270069 hybrid +138_1-1 Q0 MARCO_52_359397936-1 72 -0.273045 hybrid +138_1-1 Q0 MARCO_38_1389705754-2 73 -0.275267 hybrid +138_1-1 Q0 MARCO_46_1312513063-2 74 -0.277048 hybrid +138_1-1 Q0 MARCO_26_108424847-4 75 -0.278511 hybrid +138_1-1 Q0 MARCO_14_43917945-11 76 -0.286262 hybrid +138_1-1 Q0 MARCO_26_1061110328-3 77 -0.287000 hybrid +138_1-1 Q0 MARCO_31_942788861-46 78 -0.288317 hybrid +138_1-1 Q0 MARCO_31_942788861-47 79 -0.294785 hybrid +138_1-1 Q0 MARCO_04_824635141-11 80 -0.297173 hybrid +138_1-1 Q0 MARCO_50_1672459338-16 81 -0.298152 hybrid +138_1-1 Q0 MARCO_49_579650135-21 82 -0.301309 hybrid +138_1-1 Q0 MARCO_31_942788861-60 83 -0.303097 hybrid +138_1-1 Q0 MARCO_26_729899077-2 84 -0.303682 hybrid +138_1-1 Q0 MARCO_32_598519088-4 85 -0.304029 hybrid +138_1-1 Q0 MARCO_29_661253184-3 86 -0.304597 hybrid +138_1-1 Q0 MARCO_30_1778349604-2 87 -0.309474 hybrid +138_1-1 Q0 MARCO_25_1408335167-7 88 -0.313069 hybrid +138_1-1 Q0 MARCO_59_441044989-6 89 -0.321071 hybrid +138_1-1 Q0 MARCO_46_383308271-3 90 -0.322788 hybrid +138_1-1 Q0 MARCO_50_1407488405-13 91 -0.326142 hybrid +138_1-1 Q0 MARCO_41_1819551405-3 92 -0.331778 hybrid +138_1-1 Q0 MARCO_13_454156686-2 93 -0.336382 hybrid +138_1-1 Q0 MARCO_26_729899077-5 94 -0.337314 hybrid +138_1-1 Q0 MARCO_40_176217149-12 95 -0.340438 hybrid +138_1-1 Q0 MARCO_25_1161421149-2 96 -0.340638 hybrid +138_1-1 Q0 MARCO_45_979680455-25 97 -0.341343 hybrid +138_1-1 Q0 MARCO_37_1247761256-2 98 -0.342997 hybrid +138_1-1 Q0 MARCO_40_173214939-9 99 -0.343191 hybrid +138_1-1 Q0 MARCO_29_777090133-2 100 -0.344093 hybrid +138_1-11 Q0 MARCO_23_941472041-2 1 0.527741 hybrid +138_1-11 Q0 MARCO_27_209201400-12 2 0.250000 hybrid +138_1-11 Q0 MARCO_28_654158755-5 3 0.033288 hybrid +138_1-11 Q0 MARCO_32_1011502166-3 4 0.014579 hybrid +138_1-11 Q0 MARCO_23_941472041-3 5 0.012349 hybrid +138_1-11 Q0 MARCO_28_654637213-2 6 -0.005595 hybrid +138_1-11 Q0 MARCO_28_1800800953-3 7 -0.016619 hybrid +138_1-11 Q0 MARCO_29_1012156509-3 8 -0.050954 hybrid +138_1-11 Q0 MARCO_28_654440355-4 9 -0.051548 hybrid +138_1-11 Q0 MARCO_50_482140980-8 10 -0.066698 hybrid +138_1-11 Q0 MARCO_41_1139497713-15 11 -0.067235 hybrid +138_1-11 Q0 MARCO_28_654440355-2 12 -0.076216 hybrid +138_1-11 Q0 MARCO_14_477904447-8 13 -0.121114 hybrid +138_1-11 Q0 MARCO_14_41589459-3 14 -0.129652 hybrid +138_1-11 Q0 MARCO_32_1011502166-2 15 -0.135367 hybrid +138_1-11 Q0 MARCO_23_244603153-6 16 -0.141931 hybrid +138_1-11 Q0 MARCO_32_105822800-3 17 -0.153225 hybrid +138_1-11 Q0 MARCO_29_1330563196-10 18 -0.155526 hybrid +138_1-11 Q0 MARCO_28_654158755-12 19 -0.156778 hybrid +138_1-11 Q0 MARCO_28_654637213-9 20 -0.166609 hybrid +138_1-11 Q0 MARCO_29_667707520-4 21 -0.167947 hybrid +138_1-11 Q0 MARCO_24_1556105613-11 22 -0.173402 hybrid +138_1-11 Q0 MARCO_28_654409296-9 23 -0.177282 hybrid +138_1-11 Q0 MARCO_28_654332491-1 24 -0.182146 hybrid +138_1-11 Q0 MARCO_41_2116155704-56 25 -0.183413 hybrid +138_1-11 Q0 MARCO_00_766909659-3 26 -0.199231 hybrid +138_1-11 Q0 MARCO_28_654499542-3 27 -0.203557 hybrid +138_1-11 Q0 MARCO_32_154714576-3 28 -0.207943 hybrid +138_1-11 Q0 MARCO_42_1100840203-5 29 -0.213412 hybrid +138_1-11 Q0 MARCO_43_328307775-3 30 -0.221602 hybrid +138_1-11 Q0 MARCO_14_41589459-2 31 -0.226486 hybrid +138_1-11 Q0 MARCO_39_806877993-3 32 -0.236415 hybrid +138_1-11 Q0 MARCO_42_1100840203-16 33 -0.243459 hybrid +138_1-11 Q0 MARCO_28_654144345-11 34 -0.244601 hybrid +138_1-11 Q0 MARCO_54_1567013267-9 35 -0.246243 hybrid +138_1-11 Q0 MARCO_31_1848573926-2 36 -0.246731 hybrid +138_1-11 Q0 MARCO_25_1437816000-8 37 -0.253325 hybrid +138_1-11 Q0 MARCO_28_1800800953-2 38 -0.261958 hybrid +138_1-11 Q0 MARCO_45_1019140464-5 39 -0.262664 hybrid +138_1-11 Q0 MARCO_28_654637213-6 40 -0.263136 hybrid +138_1-11 Q0 MARCO_51_1236418175-2 41 -0.271429 hybrid +138_1-11 Q0 MARCO_28_654553967-1 42 -0.276154 hybrid +138_1-11 Q0 MARCO_39_806877993-5 43 -0.279430 hybrid +138_1-11 Q0 MARCO_34_1354468568-6 44 -0.281653 hybrid +138_1-11 Q0 MARCO_28_654409296-5 45 -0.282173 hybrid +138_1-11 Q0 MARCO_52_1377875525-3 46 -0.283971 hybrid +138_1-11 Q0 MARCO_28_1800800953-4 47 -0.284727 hybrid +138_1-11 Q0 MARCO_37_1256124435-9 48 -0.290146 hybrid +138_1-11 Q0 MARCO_53_1046779314-2 49 -0.291812 hybrid +138_1-11 Q0 MARCO_24_1555235069-4 50 -0.294251 hybrid +138_1-11 Q0 MARCO_28_478576778-3 51 -0.299225 hybrid +138_1-11 Q0 MARCO_53_87717652-3 52 -0.300028 hybrid +138_1-11 Q0 MARCO_28_654533181-16 53 -0.303658 hybrid +138_1-11 Q0 MARCO_29_1330563196-4 54 -0.306451 hybrid +138_1-11 Q0 MARCO_42_1100840203-6 55 -0.309992 hybrid +138_1-11 Q0 MARCO_28_964979199-3 56 -0.311354 hybrid +138_1-11 Q0 MARCO_50_526120377-7 57 -0.312488 hybrid +138_1-11 Q0 MARCO_31_903613291-6 58 -0.314103 hybrid +138_1-11 Q0 MARCO_38_851563418-25 59 -0.318450 hybrid +138_1-11 Q0 MARCO_56_1048981772-5 60 -0.318920 hybrid +138_1-11 Q0 MARCO_28_654332491-6 61 -0.320302 hybrid +138_1-11 Q0 MARCO_28_654440355-5 62 -0.334793 hybrid +138_1-11 Q0 MARCO_25_1437816000-7 63 -0.339628 hybrid +138_1-11 Q0 MARCO_10_714838350-8 64 -0.346317 hybrid +138_1-11 Q0 MARCO_42_331919034-8 65 -0.355593 hybrid +138_1-11 Q0 MARCO_25_1437859874-6 66 -0.356984 hybrid +138_1-11 Q0 MARCO_29_1018377497-7 67 -0.362271 hybrid +138_1-11 Q0 MARCO_28_654637213-1 68 -0.363756 hybrid +138_1-11 Q0 MARCO_50_527085264-6 69 -0.365000 hybrid +138_1-11 Q0 MARCO_28_654637213-20 70 -0.365971 hybrid +138_1-11 Q0 MARCO_50_515023464-5 71 -0.366089 hybrid +138_1-11 Q0 MARCO_32_1012576074-3 72 -0.366128 hybrid +138_1-11 Q0 MARCO_23_244603153-4 73 -0.366651 hybrid +138_1-11 Q0 MARCO_50_527085264-5 74 -0.368304 hybrid +138_1-11 Q0 MARCO_32_154714576-4 75 -0.368930 hybrid +138_1-11 Q0 MARCO_24_1442226927-2 76 -0.369979 hybrid +138_1-11 Q0 MARCO_23_941472041-1 77 -0.371350 hybrid +138_1-11 Q0 MARCO_23_244603153-2 78 -0.372125 hybrid +138_1-11 Q0 MARCO_43_330810268-3 79 -0.372489 hybrid +138_1-11 Q0 MARCO_50_514632613-7 80 -0.372997 hybrid +138_1-11 Q0 MARCO_31_903613291-8 81 -0.373254 hybrid +138_1-11 Q0 MARCO_14_477904447-5 82 -0.376375 hybrid +138_1-11 Q0 MARCO_50_525797022-24 83 -0.379081 hybrid +138_1-11 Q0 MARCO_42_332101266-10 84 -0.382704 hybrid +138_1-11 Q0 MARCO_22_1642775983-9 85 -0.386236 hybrid +138_1-11 Q0 MARCO_11_604888406-10 86 -0.388537 hybrid +138_1-11 Q0 MARCO_29_1011370294-7 87 -0.389541 hybrid +138_1-11 Q0 MARCO_22_392396914-4 88 -0.390330 hybrid +138_1-11 Q0 MARCO_20_658782296-8 89 -0.391189 hybrid +138_1-11 Q0 MARCO_32_105822800-2 90 -0.392214 hybrid +138_1-11 Q0 MARCO_28_654210116-12 91 -0.393433 hybrid +138_1-11 Q0 MARCO_44_1489332844-3 92 -0.395350 hybrid +138_1-11 Q0 MARCO_50_527085264-4 93 -0.397447 hybrid +138_1-11 Q0 MARCO_50_496533800-3 94 -0.398103 hybrid +138_1-11 Q0 MARCO_51_1636971484-5 95 -0.399567 hybrid +138_1-11 Q0 MARCO_42_642883913-4 96 -0.401461 hybrid +138_1-11 Q0 MARCO_29_667707520-3 97 -0.401957 hybrid +138_1-11 Q0 MARCO_28_964979199-2 98 -0.404083 hybrid +138_1-11 Q0 MARCO_12_1170150869-3 99 -0.404160 hybrid +138_1-11 Q0 MARCO_32_154714576-5 100 -0.409567 hybrid +138_1-3 Q0 MARCO_31_887761133-9 1 0.249997 hybrid +138_1-3 Q0 MARCO_31_887761133-8 2 0.200957 hybrid +138_1-3 Q0 MARCO_07_830779952-37 3 0.157946 hybrid +138_1-3 Q0 MARCO_37_1260056150-12 4 0.127874 hybrid +138_1-3 Q0 MARCO_55_1282987500-8 5 0.121335 hybrid +138_1-3 Q0 MARCO_50_483311372-3 6 0.103020 hybrid +138_1-3 Q0 MARCO_10_1148119513-17 7 0.084026 hybrid +138_1-3 Q0 MARCO_50_495124295-17 8 0.029304 hybrid +138_1-3 Q0 MARCO_50_483311372-2 9 0.024819 hybrid +138_1-3 Q0 MARCO_50_489093872-5 10 -0.017356 hybrid +138_1-3 Q0 MARCO_57_1974826042-7 11 -0.026820 hybrid +138_1-3 Q0 MARCO_30_1654855553-6 12 -0.045482 hybrid +138_1-3 Q0 MARCO_14_41589459-3 13 -0.050909 hybrid +138_1-3 Q0 MARCO_56_500511523-3 14 -0.052943 hybrid +138_1-3 Q0 MARCO_50_517864336-8 15 -0.066177 hybrid +138_1-3 Q0 MARCO_50_496161916-7 16 -0.069643 hybrid +138_1-3 Q0 MARCO_40_174176965-3 17 -0.070218 hybrid +138_1-3 Q0 MARCO_27_209201400-12 18 -0.072323 hybrid +138_1-3 Q0 MARCO_50_515023464-5 19 -0.074188 hybrid +138_1-3 Q0 MARCO_50_483311372-1 20 -0.084824 hybrid +138_1-3 Q0 MARCO_14_43888258-8 21 -0.088870 hybrid +138_1-3 Q0 MARCO_05_1351999581-1 22 -0.119824 hybrid +138_1-3 Q0 MARCO_05_426242666-81 23 -0.124390 hybrid +138_1-3 Q0 KILT_36087839-42 24 -0.125670 hybrid +138_1-3 Q0 MARCO_49_1827657692-6 25 -0.134323 hybrid +138_1-3 Q0 MARCO_43_331335225-3 26 -0.135689 hybrid +138_1-3 Q0 MARCO_41_915540927-4 27 -0.136173 hybrid +138_1-3 Q0 MARCO_10_974283083-23 28 -0.138797 hybrid +138_1-3 Q0 MARCO_26_1061184609-4 29 -0.141901 hybrid +138_1-3 Q0 MARCO_29_1012343485-4 30 -0.147955 hybrid +138_1-3 Q0 MARCO_55_1130753370-2 31 -0.149214 hybrid +138_1-3 Q0 KILT_36087839-13 32 -0.149356 hybrid +138_1-3 Q0 MARCO_21_1459182292-10 33 -0.156099 hybrid +138_1-3 Q0 MARCO_41_1139497713-15 34 -0.161388 hybrid +138_1-3 Q0 MARCO_12_1728999818-8 35 -0.171361 hybrid +138_1-3 Q0 MARCO_50_1451252251-6 36 -0.173191 hybrid +138_1-3 Q0 MARCO_37_1260056150-13 37 -0.174434 hybrid +138_1-3 Q0 MARCO_50_527166296-1 38 -0.175887 hybrid +138_1-3 Q0 MARCO_12_1728921831-10 39 -0.177650 hybrid +138_1-3 Q0 MARCO_10_974283083-20 40 -0.179021 hybrid +138_1-3 Q0 MARCO_50_520891789-10 41 -0.181161 hybrid +138_1-3 Q0 MARCO_21_1145896799-2 42 -0.184245 hybrid +138_1-3 Q0 MARCO_24_1556015782-7 43 -0.188123 hybrid +138_1-3 Q0 MARCO_59_361566758-2 44 -0.195818 hybrid +138_1-3 Q0 MARCO_31_1849144541-9 45 -0.202468 hybrid +138_1-3 Q0 MARCO_55_1130759472-2 46 -0.202784 hybrid +138_1-3 Q0 MARCO_39_1739960758-5 47 -0.205623 hybrid +138_1-3 Q0 MARCO_32_1012536769-6 48 -0.206087 hybrid +138_1-3 Q0 MARCO_40_174176965-4 49 -0.209980 hybrid +138_1-3 Q0 MARCO_30_95001091-313 50 -0.210235 hybrid +138_1-3 Q0 MARCO_10_974283083-24 51 -0.210974 hybrid +138_1-3 Q0 MARCO_10_974283083-7 52 -0.211636 hybrid +138_1-3 Q0 MARCO_54_1567013267-9 53 -0.212447 hybrid +138_1-3 Q0 MARCO_14_41589459-2 54 -0.212971 hybrid +138_1-3 Q0 MARCO_20_1592987465-2 55 -0.218317 hybrid +138_1-3 Q0 MARCO_12_1728705765-4 56 -0.219851 hybrid +138_1-3 Q0 KILT_36087839-18 57 -0.222883 hybrid +138_1-3 Q0 MARCO_50_2490897344-22 58 -0.225941 hybrid +138_1-3 Q0 MARCO_50_487999475-8 59 -0.228082 hybrid +138_1-3 Q0 MARCO_41_1235327904-20 60 -0.229661 hybrid +138_1-3 Q0 MARCO_50_517564079-13 61 -0.231134 hybrid +138_1-3 Q0 MARCO_55_816954379-8 62 -0.237892 hybrid +138_1-3 Q0 MARCO_41_1143131472-75 63 -0.243859 hybrid +138_1-3 Q0 MARCO_20_1580770283-3 64 -0.244960 hybrid +138_1-3 Q0 MARCO_47_578522580-4 65 -0.250003 hybrid +138_1-3 Q0 MARCO_31_887761133-12 66 -0.250036 hybrid +138_1-3 Q0 MARCO_29_1330591149-4 67 -0.250076 hybrid +138_1-3 Q0 MARCO_22_1311966398-2 68 -0.250586 hybrid +138_1-3 Q0 MARCO_50_525797022-22 69 -0.254423 hybrid +138_1-3 Q0 MARCO_29_1011370294-9 70 -0.256019 hybrid +138_1-3 Q0 MARCO_50_493199442-4 71 -0.258220 hybrid +138_1-3 Q0 MARCO_00_1007328358-2 72 -0.259270 hybrid +138_1-3 Q0 MARCO_13_454795828-3 73 -0.259300 hybrid +138_1-3 Q0 MARCO_08_823707739-11 74 -0.259438 hybrid +138_1-3 Q0 MARCO_39_654663506-27 75 -0.260967 hybrid +138_1-3 Q0 MARCO_14_43917945-14 76 -0.261227 hybrid +138_1-3 Q0 MARCO_50_517366289-2 77 -0.266129 hybrid +138_1-3 Q0 MARCO_30_1654876425-6 78 -0.266807 hybrid +138_1-3 Q0 MARCO_18_2722026935-13 79 -0.267021 hybrid +138_1-3 Q0 MARCO_50_526133332-3 80 -0.269340 hybrid +138_1-3 Q0 KILT_2466490-12 81 -0.272938 hybrid +138_1-3 Q0 MARCO_32_884498271-10 82 -0.275231 hybrid +138_1-3 Q0 MARCO_04_1047958822-39 83 -0.276541 hybrid +138_1-3 Q0 MARCO_40_172573076-8 84 -0.279700 hybrid +138_1-3 Q0 MARCO_50_1672932858-17 85 -0.280286 hybrid +138_1-3 Q0 MARCO_50_1668364819-13 86 -0.280286 hybrid +138_1-3 Q0 MARCO_31_942644332-23 87 -0.282926 hybrid +138_1-3 Q0 MARCO_50_519025636-14 88 -0.284236 hybrid +138_1-3 Q0 MARCO_10_985835381-36 89 -0.291982 hybrid +138_1-3 Q0 MARCO_50_517564079-7 90 -0.300085 hybrid +138_1-3 Q0 MARCO_41_2033456140-2 91 -0.300559 hybrid +138_1-3 Q0 MARCO_50_525899611-7 92 -0.306226 hybrid +138_1-3 Q0 MARCO_50_483311372-6 93 -0.307490 hybrid +138_1-3 Q0 MARCO_50_494919994-6 94 -0.308218 hybrid +138_1-3 Q0 MARCO_57_1974826042-14 95 -0.309660 hybrid +138_1-3 Q0 MARCO_50_493199442-5 96 -0.312840 hybrid +138_1-3 Q0 MARCO_04_1288066023-4 97 -0.312927 hybrid +138_1-3 Q0 MARCO_40_172885198-4 98 -0.314196 hybrid +138_1-3 Q0 MARCO_51_1707123404-44 99 -0.315113 hybrid +138_1-3 Q0 MARCO_18_2722026935-4 100 -0.320979 hybrid +138_1-5 Q0 MARCO_29_667707520-4 1 0.311197 hybrid +138_1-5 Q0 MARCO_44_2039394143-2 2 0.250000 hybrid +138_1-5 Q0 MARCO_29_661208277-1 3 0.161634 hybrid +138_1-5 Q0 MARCO_29_1011577571-1 4 0.144589 hybrid +138_1-5 Q0 MARCO_36_816020769-13 5 0.111520 hybrid +138_1-5 Q0 MARCO_31_942738837-21 6 0.110052 hybrid +138_1-5 Q0 MARCO_44_2039387097-2 7 -0.021158 hybrid +138_1-5 Q0 MARCO_32_884498271-7 8 -0.022353 hybrid +138_1-5 Q0 MARCO_37_1257999305-12 9 -0.034475 hybrid +138_1-5 Q0 MARCO_31_942738837-4 10 -0.076006 hybrid +138_1-5 Q0 MARCO_29_661208277-5 11 -0.079881 hybrid +138_1-5 Q0 MARCO_31_942738837-9 12 -0.086305 hybrid +138_1-5 Q0 MARCO_50_527133953-5 13 -0.090689 hybrid +138_1-5 Q0 MARCO_31_942738837-3 14 -0.092204 hybrid +138_1-5 Q0 MARCO_31_942689190-16 15 -0.096116 hybrid +138_1-5 Q0 MARCO_44_114654264-3 16 -0.106233 hybrid +138_1-5 Q0 MARCO_44_2039332419-2 17 -0.111773 hybrid +138_1-5 Q0 MARCO_31_942738837-24 18 -0.122859 hybrid +138_1-5 Q0 MARCO_31_942738837-16 19 -0.123955 hybrid +138_1-5 Q0 MARCO_56_500542568-6 20 -0.127577 hybrid +138_1-5 Q0 MARCO_12_1728705765-4 21 -0.134107 hybrid +138_1-5 Q0 MARCO_44_2039394143-1 22 -0.134973 hybrid +138_1-5 Q0 MARCO_57_868274246-2 23 -0.143914 hybrid +138_1-5 Q0 MARCO_56_502095733-4 24 -0.148591 hybrid +138_1-5 Q0 MARCO_31_942738837-20 25 -0.151880 hybrid +138_1-5 Q0 KILT_232495-26 26 -0.158432 hybrid +138_1-5 Q0 MARCO_21_1459182292-10 27 -0.158762 hybrid +138_1-5 Q0 MARCO_29_661208277-3 28 -0.163789 hybrid +138_1-5 Q0 MARCO_25_1161441026-2 29 -0.164351 hybrid +138_1-5 Q0 MARCO_47_1305953651-9 30 -0.165382 hybrid +138_1-5 Q0 MARCO_20_1576403404-7 31 -0.180090 hybrid +138_1-5 Q0 MARCO_23_938301032-3 32 -0.180724 hybrid +138_1-5 Q0 MARCO_41_2026616452-4 33 -0.184388 hybrid +138_1-5 Q0 MARCO_56_502095733-1 34 -0.184898 hybrid +138_1-5 Q0 MARCO_49_926269199-4 35 -0.185063 hybrid +138_1-5 Q0 MARCO_56_504074886-3 36 -0.189214 hybrid +138_1-5 Q0 MARCO_29_778035964-16 37 -0.194544 hybrid +138_1-5 Q0 MARCO_56_502589189-2 38 -0.201275 hybrid +138_1-5 Q0 MARCO_15_102310480-3 39 -0.201403 hybrid +138_1-5 Q0 MARCO_31_942644332-6 40 -0.204130 hybrid +138_1-5 Q0 MARCO_44_114654264-1 41 -0.204903 hybrid +138_1-5 Q0 MARCO_56_502328967-3 42 -0.206462 hybrid +138_1-5 Q0 MARCO_31_942644332-4 43 -0.214724 hybrid +138_1-5 Q0 MARCO_29_661208277-4 44 -0.216037 hybrid +138_1-5 Q0 MARCO_06_337844782-3 45 -0.217678 hybrid +138_1-5 Q0 MARCO_13_453761208-1 46 -0.217817 hybrid +138_1-5 Q0 MARCO_31_942689190-24 47 -0.223466 hybrid +138_1-5 Q0 MARCO_50_1672271127-16 48 -0.224779 hybrid +138_1-5 Q0 MARCO_56_502484882-7 49 -0.226587 hybrid +138_1-5 Q0 MARCO_46_1381431573-3 50 -0.235801 hybrid +138_1-5 Q0 MARCO_42_1848880569-4 51 -0.246486 hybrid +138_1-5 Q0 MARCO_15_1533111311-2 52 -0.249392 hybrid +138_1-5 Q0 MARCO_27_202004899-3 53 -0.250000 hybrid +138_1-5 Q0 MARCO_29_1011577571-4 54 -0.253314 hybrid +138_1-5 Q0 MARCO_32_884498271-5 55 -0.257051 hybrid +138_1-5 Q0 MARCO_50_2746525611-6 56 -0.261814 hybrid +138_1-5 Q0 MARCO_50_517441389-2 57 -0.264428 hybrid +138_1-5 Q0 MARCO_35_803008467-2 58 -0.267012 hybrid +138_1-5 Q0 MARCO_33_352527427-4 59 -0.269116 hybrid +138_1-5 Q0 MARCO_13_25041682-1 60 -0.272517 hybrid +138_1-5 Q0 MARCO_50_2490897344-19 61 -0.274193 hybrid +138_1-5 Q0 MARCO_33_352527427-2 62 -0.277625 hybrid +138_1-5 Q0 MARCO_23_244603153-3 63 -0.281114 hybrid +138_1-5 Q0 MARCO_25_1475802756-4 64 -0.281162 hybrid +138_1-5 Q0 MARCO_44_2039394143-4 65 -0.284451 hybrid +138_1-5 Q0 MARCO_41_913055597-2 66 -0.284582 hybrid +138_1-5 Q0 MARCO_03_1219107992-6 67 -0.285760 hybrid +138_1-5 Q0 MARCO_29_662261763-3 68 -0.290234 hybrid +138_1-5 Q0 MARCO_27_202004899-2 69 -0.290394 hybrid +138_1-5 Q0 MARCO_20_1107533342-3 70 -0.290988 hybrid +138_1-5 Q0 MARCO_50_519245639-3 71 -0.292250 hybrid +138_1-5 Q0 MARCO_27_202004899-1 72 -0.294552 hybrid +138_1-5 Q0 MARCO_29_777318224-3 73 -0.295057 hybrid +138_1-5 Q0 MARCO_39_654663506-8 74 -0.295139 hybrid +138_1-5 Q0 MARCO_35_803008467-3 75 -0.297993 hybrid +138_1-5 Q0 MARCO_44_2039394143-3 76 -0.298004 hybrid +138_1-5 Q0 MARCO_14_43558464-12 77 -0.298875 hybrid +138_1-5 Q0 MARCO_44_1689308501-2 78 -0.298961 hybrid +138_1-5 Q0 MARCO_59_361577314-4 79 -0.302621 hybrid +138_1-5 Q0 MARCO_52_1143887618-6 80 -0.305186 hybrid +138_1-5 Q0 MARCO_23_895759533-3 81 -0.306585 hybrid +138_1-5 Q0 MARCO_31_942689190-9 82 -0.307358 hybrid +138_1-5 Q0 MARCO_28_654176775-7 83 -0.316242 hybrid +138_1-5 Q0 MARCO_40_47473416-4 84 -0.317047 hybrid +138_1-5 Q0 MARCO_23_895759533-1 85 -0.317947 hybrid +138_1-5 Q0 MARCO_37_1260056150-8 86 -0.320765 hybrid +138_1-5 Q0 MARCO_58_814882529-10 87 -0.321748 hybrid +138_1-5 Q0 MARCO_47_547910745-8 88 -0.325928 hybrid +138_1-5 Q0 MARCO_51_1238079113-41 89 -0.326541 hybrid +138_1-5 Q0 MARCO_32_451315846-3 90 -0.332508 hybrid +138_1-5 Q0 MARCO_56_500362543-1 91 -0.332627 hybrid +138_1-5 Q0 MARCO_16_1737617777-20 92 -0.333291 hybrid +138_1-5 Q0 MARCO_42_609226284-3 93 -0.335958 hybrid +138_1-5 Q0 MARCO_31_942738837-17 94 -0.338088 hybrid +138_1-5 Q0 MARCO_56_501083196-5 95 -0.339277 hybrid +138_1-5 Q0 MARCO_50_489093872-5 96 -0.339438 hybrid +138_1-5 Q0 MARCO_31_903613291-4 97 -0.342581 hybrid +138_1-5 Q0 MARCO_56_502589189-1 98 -0.346551 hybrid +138_1-5 Q0 MARCO_46_1312473550-1 99 -0.347273 hybrid +138_1-5 Q0 MARCO_31_942414313-27 100 -0.348582 hybrid +138_1-7 Q0 MARCO_32_262190801-3 1 0.250002 hybrid +138_1-7 Q0 MARCO_21_1206903334-2 2 0.082469 hybrid +138_1-7 Q0 MARCO_28_527557572-9 3 0.075760 hybrid +138_1-7 Q0 MARCO_00_801665392-4 4 0.072976 hybrid +138_1-7 Q0 MARCO_29_663589805-3 5 0.061815 hybrid +138_1-7 Q0 MARCO_41_1178130635-11 6 0.004917 hybrid +138_1-7 Q0 MARCO_50_2398856032-12 7 0.002365 hybrid +138_1-7 Q0 MARCO_42_607879806-2 8 -0.067646 hybrid +138_1-7 Q0 MARCO_41_1382413540-47 9 -0.111746 hybrid +138_1-7 Q0 MARCO_58_282083931-32 10 -0.120477 hybrid +138_1-7 Q0 MARCO_43_328307775-3 11 -0.127838 hybrid +138_1-7 Q0 MARCO_07_798318781-4 12 -0.131591 hybrid +138_1-7 Q0 MARCO_50_2398856032-41 13 -0.133536 hybrid +138_1-7 Q0 MARCO_46_1309517252-3 14 -0.134310 hybrid +138_1-7 Q0 MARCO_10_715405810-4 15 -0.135647 hybrid +138_1-7 Q0 MARCO_22_1579067158-15 16 -0.136643 hybrid +138_1-7 Q0 MARCO_21_1216763189-15 17 -0.144409 hybrid +138_1-7 Q0 MARCO_50_2398856032-56 18 -0.146925 hybrid +138_1-7 Q0 MARCO_50_1414049353-22 19 -0.171052 hybrid +138_1-7 Q0 MARCO_50_1419345210-25 20 -0.175446 hybrid +138_1-7 Q0 MARCO_50_1171731936-9 21 -0.193063 hybrid +138_1-7 Q0 MARCO_45_1251107320-3 22 -0.193747 hybrid +138_1-7 Q0 MARCO_25_1166028659-3 23 -0.200864 hybrid +138_1-7 Q0 MARCO_50_525797022-34 24 -0.205923 hybrid +138_1-7 Q0 MARCO_22_1472278623-9 25 -0.206810 hybrid +138_1-7 Q0 MARCO_04_1288055811-3 26 -0.220324 hybrid +138_1-7 Q0 MARCO_50_493199442-3 27 -0.220402 hybrid +138_1-7 Q0 MARCO_42_1678032914-7 28 -0.228358 hybrid +138_1-7 Q0 MARCO_31_903613291-1 29 -0.249794 hybrid +138_1-7 Q0 MARCO_50_1441171657-12 30 -0.249998 hybrid +138_1-7 Q0 MARCO_21_1206903334-11 31 -0.254262 hybrid +138_1-7 Q0 MARCO_50_2490897344-22 32 -0.267974 hybrid +138_1-7 Q0 MARCO_45_1264343358-4 33 -0.268651 hybrid +138_1-7 Q0 MARCO_50_2490897344-32 34 -0.269359 hybrid +138_1-7 Q0 MARCO_50_2512639632-3 35 -0.270837 hybrid +138_1-7 Q0 MARCO_21_1216763189-14 36 -0.271591 hybrid +138_1-7 Q0 MARCO_50_2398856032-54 37 -0.279851 hybrid +138_1-7 Q0 MARCO_14_41589459-3 38 -0.282974 hybrid +138_1-7 Q0 MARCO_50_1414049353-23 39 -0.291981 hybrid +138_1-7 Q0 MARCO_41_1135859717-55 40 -0.293933 hybrid +138_1-7 Q0 MARCO_10_715405810-2 41 -0.298957 hybrid +138_1-7 Q0 MARCO_32_1011502166-3 42 -0.300843 hybrid +138_1-7 Q0 MARCO_50_1181836085-5 43 -0.304371 hybrid +138_1-7 Q0 MARCO_50_1619601961-13 44 -0.307237 hybrid +138_1-7 Q0 MARCO_54_1567013267-9 45 -0.318001 hybrid +138_1-7 Q0 MARCO_29_1138521488-2 46 -0.318927 hybrid +138_1-7 Q0 MARCO_50_2398856032-77 47 -0.321101 hybrid +138_1-7 Q0 MARCO_20_653661460-2 48 -0.324461 hybrid +138_1-7 Q0 MARCO_00_801665392-1 49 -0.325759 hybrid +138_1-7 Q0 MARCO_50_1419345210-2 50 -0.326036 hybrid +138_1-7 Q0 MARCO_58_287727129-18 51 -0.328816 hybrid +138_1-7 Q0 MARCO_50_517407812-8 52 -0.329854 hybrid +138_1-7 Q0 MARCO_54_1472340040-15 53 -0.331146 hybrid +138_1-7 Q0 MARCO_31_1317992653-14 54 -0.338596 hybrid +138_1-7 Q0 MARCO_50_1608210602-12 55 -0.339273 hybrid +138_1-7 Q0 MARCO_14_41589459-2 56 -0.339374 hybrid +138_1-7 Q0 MARCO_10_715405810-3 57 -0.341544 hybrid +138_1-7 Q0 MARCO_50_517407812-4 58 -0.341653 hybrid +138_1-7 Q0 MARCO_10_714838350-8 59 -0.344391 hybrid +138_1-7 Q0 MARCO_00_801665392-5 60 -0.345939 hybrid +138_1-7 Q0 MARCO_29_1011178136-4 61 -0.350065 hybrid +138_1-7 Q0 MARCO_19_2430745421-9 62 -0.352834 hybrid +138_1-7 Q0 MARCO_28_527777467-5 63 -0.356532 hybrid +138_1-7 Q0 MARCO_20_630730188-15 64 -0.356843 hybrid +138_1-7 Q0 MARCO_21_1215918371-18 65 -0.362070 hybrid +138_1-7 Q0 MARCO_31_293674191-5 66 -0.362459 hybrid +138_1-7 Q0 MARCO_50_1445951923-12 67 -0.363396 hybrid +138_1-7 Q0 MARCO_26_1553028811-4 68 -0.364329 hybrid +138_1-7 Q0 MARCO_11_1101901839-1 69 -0.365269 hybrid +138_1-7 Q0 MARCO_50_1443762223-34 70 -0.367670 hybrid +138_1-7 Q0 MARCO_45_1251208083-2 71 -0.368988 hybrid +138_1-7 Q0 MARCO_50_2398856032-29 72 -0.371287 hybrid +138_1-7 Q0 MARCO_12_1728811441-3 73 -0.371357 hybrid +138_1-7 Q0 MARCO_21_222455459-1 74 -0.372057 hybrid +138_1-7 Q0 MARCO_26_1553028811-3 75 -0.372224 hybrid +138_1-7 Q0 MARCO_23_941472041-3 76 -0.372955 hybrid +138_1-7 Q0 MARCO_57_1957826799-17 77 -0.374207 hybrid +138_1-7 Q0 MARCO_50_1419345210-24 78 -0.375382 hybrid +138_1-7 Q0 MARCO_40_843172469-16 79 -0.375759 hybrid +138_1-7 Q0 MARCO_21_219104975-1 80 -0.377132 hybrid +138_1-7 Q0 MARCO_21_1206903334-5 81 -0.377695 hybrid +138_1-7 Q0 MARCO_50_1670792720-19 82 -0.379313 hybrid +138_1-7 Q0 MARCO_10_982613293-17 83 -0.382347 hybrid +138_1-7 Q0 MARCO_23_692812077-4 84 -0.385780 hybrid +138_1-7 Q0 MARCO_32_1011502166-2 85 -0.385854 hybrid +138_1-7 Q0 MARCO_59_942855580-9 86 -0.385920 hybrid +138_1-7 Q0 MARCO_41_1120557748-10 87 -0.389638 hybrid +138_1-7 Q0 MARCO_21_1216623949-5 88 -0.390556 hybrid +138_1-7 Q0 MARCO_29_1012122096-6 89 -0.391886 hybrid +138_1-7 Q0 MARCO_22_1055759611-19 90 -0.393698 hybrid +138_1-7 Q0 MARCO_57_864005390-38 91 -0.393842 hybrid +138_1-7 Q0 MARCO_21_755098915-4 92 -0.394713 hybrid +138_1-7 Q0 MARCO_49_1696381352-5 93 -0.395180 hybrid +138_1-7 Q0 MARCO_50_2490897344-11 94 -0.396681 hybrid +138_1-7 Q0 MARCO_31_903446696-13 95 -0.398839 hybrid +138_1-7 Q0 MARCO_49_225588795-6 96 -0.401317 hybrid +138_1-7 Q0 MARCO_21_1206903334-1 97 -0.401371 hybrid +138_1-7 Q0 MARCO_43_745182209-11 98 -0.402623 hybrid +138_1-7 Q0 MARCO_23_941472041-2 99 -0.404362 hybrid +138_1-7 Q0 MARCO_42_1678032914-2 100 -0.405470 hybrid +138_1-9 Q0 MARCO_32_154714576-3 1 0.405388 hybrid +138_1-9 Q0 MARCO_23_244603153-4 2 0.368255 hybrid +138_1-9 Q0 MARCO_32_154714576-9 3 0.250000 hybrid +138_1-9 Q0 MARCO_23_941472041-2 4 0.088519 hybrid +138_1-9 Q0 MARCO_50_1419345210-25 5 0.025626 hybrid +138_1-9 Q0 MARCO_23_244603153-2 6 0.012942 hybrid +138_1-9 Q0 MARCO_14_41589459-2 7 0.002585 hybrid +138_1-9 Q0 MARCO_28_654158755-5 8 -0.017884 hybrid +138_1-9 Q0 MARCO_32_105822800-2 9 -0.018403 hybrid +138_1-9 Q0 MARCO_42_1100840203-1 10 -0.019672 hybrid +138_1-9 Q0 MARCO_28_654332491-2 11 -0.020994 hybrid +138_1-9 Q0 MARCO_32_154714576-1 12 -0.031964 hybrid +138_1-9 Q0 MARCO_12_1728705765-10 13 -0.047210 hybrid +138_1-9 Q0 MARCO_14_41589459-1 14 -0.058806 hybrid +138_1-9 Q0 MARCO_28_654144345-11 15 -0.059303 hybrid +138_1-9 Q0 MARCO_41_2173508032-3 16 -0.072077 hybrid +138_1-9 Q0 MARCO_14_41589459-3 17 -0.072839 hybrid +138_1-9 Q0 MARCO_29_667707520-4 18 -0.077058 hybrid +138_1-9 Q0 MARCO_43_330810268-3 19 -0.079410 hybrid +138_1-9 Q0 MARCO_23_941472041-3 20 -0.082698 hybrid +138_1-9 Q0 MARCO_32_154714576-7 21 -0.087732 hybrid +138_1-9 Q0 MARCO_51_1236418175-2 22 -0.090780 hybrid +138_1-9 Q0 MARCO_28_654440355-2 23 -0.110899 hybrid +138_1-9 Q0 MARCO_25_1437816000-3 24 -0.111142 hybrid +138_1-9 Q0 MARCO_23_941472041-4 25 -0.114674 hybrid +138_1-9 Q0 MARCO_12_1728705765-8 26 -0.119825 hybrid +138_1-9 Q0 MARCO_28_654332491-6 27 -0.122867 hybrid +138_1-9 Q0 MARCO_28_654440355-6 28 -0.127209 hybrid +138_1-9 Q0 MARCO_46_551281605-4 29 -0.129321 hybrid +138_1-9 Q0 MARCO_28_1800800953-2 30 -0.130971 hybrid +138_1-9 Q0 MARCO_29_667707520-5 31 -0.140197 hybrid +138_1-9 Q0 MARCO_27_209201400-12 32 -0.145225 hybrid +138_1-9 Q0 MARCO_12_590645462-9 33 -0.149431 hybrid +138_1-9 Q0 MARCO_28_654440355-4 34 -0.151554 hybrid +138_1-9 Q0 MARCO_32_1013311386-2 35 -0.151711 hybrid +138_1-9 Q0 MARCO_23_244603153-3 36 -0.154113 hybrid +138_1-9 Q0 MARCO_50_2490897344-18 37 -0.155993 hybrid +138_1-9 Q0 MARCO_23_244603153-6 38 -0.158134 hybrid +138_1-9 Q0 MARCO_25_1394073-8 39 -0.159589 hybrid +138_1-9 Q0 MARCO_42_1100840203-5 40 -0.162772 hybrid +138_1-9 Q0 MARCO_50_2490897344-22 41 -0.167032 hybrid +138_1-9 Q0 MARCO_31_942788861-47 42 -0.168915 hybrid +138_1-9 Q0 MARCO_41_2173508032-4 43 -0.169343 hybrid +138_1-9 Q0 MARCO_12_1728705765-1 44 -0.170373 hybrid +138_1-9 Q0 MARCO_28_654440355-12 45 -0.172183 hybrid +138_1-9 Q0 MARCO_45_977053014-3 46 -0.183619 hybrid +138_1-9 Q0 MARCO_28_964979199-2 47 -0.190183 hybrid +138_1-9 Q0 MARCO_51_1236418175-1 48 -0.192696 hybrid +138_1-9 Q0 MARCO_31_942738837-20 49 -0.196991 hybrid +138_1-9 Q0 MARCO_23_941472041-1 50 -0.200246 hybrid +138_1-9 Q0 MARCO_54_1567013267-5 51 -0.205394 hybrid +138_1-9 Q0 MARCO_12_1728705765-5 52 -0.209217 hybrid +138_1-9 Q0 MARCO_37_1260056150-7 53 -0.219988 hybrid +138_1-9 Q0 MARCO_22_1021785513-4 54 -0.221559 hybrid +138_1-9 Q0 MARCO_28_654637213-7 55 -0.222340 hybrid +138_1-9 Q0 MARCO_37_348327812-5 56 -0.224610 hybrid +138_1-9 Q0 MARCO_31_942788861-9 57 -0.229188 hybrid +138_1-9 Q0 KILT_38076-61 58 -0.229840 hybrid +138_1-9 Q0 MARCO_50_526405721-5 59 -0.231700 hybrid +138_1-9 Q0 MARCO_28_1800800953-4 60 -0.231779 hybrid +138_1-9 Q0 MARCO_28_654440355-11 61 -0.233048 hybrid +138_1-9 Q0 MARCO_14_477904447-8 62 -0.233180 hybrid +138_1-9 Q0 MARCO_42_331919034-13 63 -0.234635 hybrid +138_1-9 Q0 MARCO_28_654332491-5 64 -0.235513 hybrid +138_1-9 Q0 MARCO_42_331919034-8 65 -0.237667 hybrid +138_1-9 Q0 MARCO_31_942644332-18 66 -0.238568 hybrid +138_1-9 Q0 MARCO_10_900691610-13 67 -0.242953 hybrid +138_1-9 Q0 MARCO_25_1437859874-6 68 -0.245120 hybrid +138_1-9 Q0 MARCO_27_202004899-3 69 -0.250000 hybrid +138_1-9 Q0 MARCO_28_422127303-1 70 -0.250532 hybrid +138_1-9 Q0 MARCO_41_286599626-8 71 -0.254030 hybrid +138_1-9 Q0 MARCO_32_105822800-3 72 -0.255157 hybrid +138_1-9 Q0 MARCO_42_1100840203-16 73 -0.260312 hybrid +138_1-9 Q0 MARCO_46_384402411-5 74 -0.261883 hybrid +138_1-9 Q0 MARCO_45_1323327407-1 75 -0.265250 hybrid +138_1-9 Q0 MARCO_43_328307775-5 76 -0.268803 hybrid +138_1-9 Q0 MARCO_28_964979199-3 77 -0.271653 hybrid +138_1-9 Q0 MARCO_51_1636971484-5 78 -0.272701 hybrid +138_1-9 Q0 MARCO_28_1800800953-3 79 -0.272881 hybrid +138_1-9 Q0 MARCO_32_884498271-10 80 -0.273570 hybrid +138_1-9 Q0 MARCO_31_1848573926-1 81 -0.273850 hybrid +138_1-9 Q0 MARCO_37_1257999305-11 82 -0.277330 hybrid +138_1-9 Q0 MARCO_43_328307775-6 83 -0.279323 hybrid +138_1-9 Q0 MARCO_31_942788861-16 84 -0.284178 hybrid +138_1-9 Q0 MARCO_54_1567013267-9 85 -0.284770 hybrid +138_1-9 Q0 MARCO_37_1260056150-4 86 -0.286599 hybrid +138_1-9 Q0 MARCO_47_578522580-1 87 -0.289925 hybrid +138_1-9 Q0 MARCO_29_1330563196-4 88 -0.291385 hybrid +138_1-9 Q0 MARCO_48_1551537-3 89 -0.292232 hybrid +138_1-9 Q0 MARCO_22_392396914-4 90 -0.293176 hybrid +138_1-9 Q0 MARCO_46_1311116878-7 91 -0.293198 hybrid +138_1-9 Q0 MARCO_46_992977014-2 92 -0.295015 hybrid +138_1-9 Q0 MARCO_52_1148727167-4 93 -0.295254 hybrid +138_1-9 Q0 MARCO_27_202004899-2 94 -0.298264 hybrid +138_1-9 Q0 MARCO_27_202004899-1 95 -0.299987 hybrid +138_1-9 Q0 MARCO_37_175810652-5 96 -0.302525 hybrid +138_1-9 Q0 MARCO_28_654440355-16 97 -0.302893 hybrid +138_1-9 Q0 MARCO_28_771528107-8 98 -0.307000 hybrid +138_1-9 Q0 MARCO_28_1800800953-1 99 -0.308875 hybrid +138_1-9 Q0 MARCO_45_1323327407-2 100 -0.311816 hybrid +139_1-1 Q0 MARCO_30_153432119-23 1 0.250002 hybrid +139_1-1 Q0 KILT_48621266-1 2 0.163325 hybrid +139_1-1 Q0 MARCO_50_2502286195-117 3 0.127470 hybrid +139_1-1 Q0 MARCO_30_151678069-1 4 0.123455 hybrid +139_1-1 Q0 MARCO_45_1436893275-2 5 0.038492 hybrid +139_1-1 Q0 MARCO_47_921555391-19 6 0.025108 hybrid +139_1-1 Q0 MARCO_37_1258512098-2 7 -0.028957 hybrid +139_1-1 Q0 MARCO_41_1186872894-16 8 -0.071268 hybrid +139_1-1 Q0 MARCO_30_1087879020-45 9 -0.079995 hybrid +139_1-1 Q0 MARCO_37_1259043197-4 10 -0.117551 hybrid +139_1-1 Q0 MARCO_29_1213003697-15 11 -0.134333 hybrid +139_1-1 Q0 MARCO_57_868094889-4 12 -0.156817 hybrid +139_1-1 Q0 MARCO_31_1319602620-7 13 -0.158998 hybrid +139_1-1 Q0 MARCO_24_807844416-10 14 -0.161431 hybrid +139_1-1 Q0 MARCO_31_1319602620-1 15 -0.175038 hybrid +139_1-1 Q0 MARCO_29_1213003697-14 16 -0.176961 hybrid +139_1-1 Q0 MARCO_24_807844416-9 17 -0.181451 hybrid +139_1-1 Q0 MARCO_04_218457542-1 18 -0.186909 hybrid +139_1-1 Q0 MARCO_21_1435322247-4 19 -0.188347 hybrid +139_1-1 Q0 MARCO_18_3813574221-2 20 -0.196985 hybrid +139_1-1 Q0 MARCO_42_1361250839-1 21 -0.197687 hybrid +139_1-1 Q0 MARCO_23_689484004-61 22 -0.203100 hybrid +139_1-1 Q0 MARCO_50_2144695167-90 23 -0.205360 hybrid +139_1-1 Q0 MARCO_50_1662983146-39 24 -0.220499 hybrid +139_1-1 Q0 MARCO_24_642128896-13 25 -0.222142 hybrid +139_1-1 Q0 MARCO_50_1511900248-4 26 -0.223999 hybrid +139_1-1 Q0 MARCO_50_929705916-9 27 -0.229554 hybrid +139_1-1 Q0 MARCO_59_368753372-1 28 -0.236984 hybrid +139_1-1 Q0 MARCO_34_1665617392-1 29 -0.241656 hybrid +139_1-1 Q0 MARCO_30_152603588-2 30 -0.242966 hybrid +139_1-1 Q0 MARCO_58_1144549338-26 31 -0.249998 hybrid +139_1-1 Q0 MARCO_35_1141061275-5 32 -0.255764 hybrid +139_1-1 Q0 MARCO_44_1859085547-2 33 -0.256879 hybrid +139_1-1 Q0 MARCO_28_527577831-6 34 -0.259188 hybrid +139_1-1 Q0 MARCO_36_567044616-4 35 -0.264340 hybrid +139_1-1 Q0 MARCO_41_1385229682-31 36 -0.273585 hybrid +139_1-1 Q0 MARCO_25_1443189557-6 37 -0.277791 hybrid +139_1-1 Q0 MARCO_35_1141061275-4 38 -0.277915 hybrid +139_1-1 Q0 MARCO_03_934832731-22 39 -0.281803 hybrid +139_1-1 Q0 MARCO_50_1984856936-7 40 -0.290168 hybrid +139_1-1 Q0 MARCO_37_1250898603-20 41 -0.290852 hybrid +139_1-1 Q0 MARCO_24_1902104975-11 42 -0.292246 hybrid +139_1-1 Q0 MARCO_06_1292976322-201 43 -0.293720 hybrid +139_1-1 Q0 MARCO_50_1617251475-44 44 -0.295279 hybrid +139_1-1 Q0 MARCO_22_244232988-20 45 -0.301265 hybrid +139_1-1 Q0 MARCO_01_1906239093-118 46 -0.304542 hybrid +139_1-1 Q0 MARCO_23_151543073-118 47 -0.304543 hybrid +139_1-1 Q0 MARCO_50_1511900248-3 48 -0.306883 hybrid +139_1-1 Q0 MARCO_34_1665617392-15 49 -0.308526 hybrid +139_1-1 Q0 MARCO_06_1180050500-32 50 -0.308726 hybrid +139_1-1 Q0 MARCO_24_1721054939-47 51 -0.309672 hybrid +139_1-1 Q0 MARCO_22_244232988-11 52 -0.314717 hybrid +139_1-1 Q0 MARCO_29_596240042-4 53 -0.316991 hybrid +139_1-1 Q0 MARCO_28_654389176-9 54 -0.317248 hybrid +139_1-1 Q0 KILT_42725077-4 55 -0.319535 hybrid +139_1-1 Q0 MARCO_47_1281055709-3 56 -0.325202 hybrid +139_1-1 Q0 MARCO_00_763624706-5 57 -0.331859 hybrid +139_1-1 Q0 MARCO_50_1459970904-2 58 -0.341047 hybrid +139_1-1 Q0 MARCO_50_1461081507-12 59 -0.341216 hybrid +139_1-1 Q0 MARCO_34_1225631468-3 60 -0.342281 hybrid +139_1-1 Q0 MARCO_09_427897160-27 61 -0.343560 hybrid +139_1-1 Q0 MARCO_05_811761166-1 62 -0.343711 hybrid +139_1-1 Q0 MARCO_55_248699225-1 63 -0.348214 hybrid +139_1-1 Q0 MARCO_03_583240442-12 64 -0.349493 hybrid +139_1-1 Q0 MARCO_12_1862204645-13 65 -0.349547 hybrid +139_1-1 Q0 MARCO_55_1708077747-1 66 -0.349946 hybrid +139_1-1 Q0 MARCO_11_712446199-1 67 -0.351798 hybrid +139_1-1 Q0 KILT_747041-5 68 -0.353250 hybrid +139_1-1 Q0 MARCO_37_1219459516-16 69 -0.355266 hybrid +139_1-1 Q0 MARCO_14_1555956623-4 70 -0.356048 hybrid +139_1-1 Q0 MARCO_03_931631759-7 71 -0.357826 hybrid +139_1-1 Q0 MARCO_02_1741520836-6 72 -0.358735 hybrid +139_1-1 Q0 MARCO_00_768021301-25 73 -0.359956 hybrid +139_1-1 Q0 MARCO_22_536859309-17 74 -0.363975 hybrid +139_1-1 Q0 MARCO_57_867594672-4 75 -0.367377 hybrid +139_1-1 Q0 MARCO_41_1241453862-8 76 -0.367670 hybrid +139_1-1 Q0 MARCO_03_248311669-1 77 -0.368078 hybrid +139_1-1 Q0 MARCO_31_1557816803-4 78 -0.369473 hybrid +139_1-1 Q0 MARCO_28_647638500-18 79 -0.371005 hybrid +139_1-1 Q0 MARCO_28_647660119-5 80 -0.371005 hybrid +139_1-1 Q0 MARCO_07_1107480416-9 81 -0.371689 hybrid +139_1-1 Q0 MARCO_03_931631759-8 82 -0.371809 hybrid +139_1-1 Q0 MARCO_50_1511900248-42 83 -0.372288 hybrid +139_1-1 Q0 MARCO_45_979617558-5 84 -0.372537 hybrid +139_1-1 Q0 MARCO_34_1226763518-5 85 -0.372826 hybrid +139_1-1 Q0 MARCO_58_1588611162-2 86 -0.373532 hybrid +139_1-1 Q0 MARCO_44_1454117865-6 87 -0.375038 hybrid +139_1-1 Q0 MARCO_12_1668228467-32 88 -0.377395 hybrid +139_1-1 Q0 MARCO_31_1585558335-34 89 -0.377795 hybrid +139_1-1 Q0 MARCO_19_1889192680-7 90 -0.379004 hybrid +139_1-1 Q0 MARCO_41_1209317676-31 91 -0.379696 hybrid +139_1-1 Q0 MARCO_41_1106779026-10 92 -0.380411 hybrid +139_1-1 Q0 MARCO_50_1971162602-9 93 -0.380730 hybrid +139_1-1 Q0 MARCO_28_411745833-9 94 -0.384860 hybrid +139_1-1 Q0 MARCO_21_1441403032-5 95 -0.387196 hybrid +139_1-1 Q0 MARCO_06_1166471076-551 96 -0.388093 hybrid +139_1-1 Q0 MARCO_14_748255107-6 97 -0.388742 hybrid +139_1-1 Q0 MARCO_47_1281055709-8 98 -0.391477 hybrid +139_1-1 Q0 MARCO_45_92221891-18 99 -0.391649 hybrid +139_1-1 Q0 MARCO_58_1143938334-24 100 -0.392202 hybrid +139_1-3 Q0 KILT_29452329-2 1 0.250000 hybrid +139_1-3 Q0 MARCO_04_863676975-17 2 0.189799 hybrid +139_1-3 Q0 MARCO_37_345226218-6 3 0.086518 hybrid +139_1-3 Q0 KILT_3315140-1 4 0.054145 hybrid +139_1-3 Q0 MARCO_17_2976896802-5 5 0.041878 hybrid +139_1-3 Q0 MARCO_57_1271042029-3 6 0.005596 hybrid +139_1-3 Q0 MARCO_04_203163594-3 7 -0.017639 hybrid +139_1-3 Q0 KILT_33743824-5 8 -0.091758 hybrid +139_1-3 Q0 KILT_3315140-7 9 -0.092406 hybrid +139_1-3 Q0 MARCO_09_701792280-1 10 -0.108785 hybrid +139_1-3 Q0 MARCO_04_863676975-2 11 -0.192111 hybrid +139_1-3 Q0 MARCO_04_863676975-18 12 -0.193131 hybrid +139_1-3 Q0 MARCO_04_203163594-1 13 -0.195464 hybrid +139_1-3 Q0 KILT_3315140-4 14 -0.198730 hybrid +139_1-3 Q0 MARCO_09_709457960-11 15 -0.206823 hybrid +139_1-3 Q0 MARCO_12_462074888-2 16 -0.213598 hybrid +139_1-3 Q0 KILT_29416092-1 17 -0.218647 hybrid +139_1-3 Q0 KILT_5287794-1 18 -0.221998 hybrid +139_1-3 Q0 MARCO_57_870405779-4 19 -0.234608 hybrid +139_1-3 Q0 MARCO_19_685468020-1 20 -0.250000 hybrid +139_1-3 Q0 KILT_4134234-3 21 -0.256069 hybrid +139_1-3 Q0 KILT_51985039-1 22 -0.259466 hybrid +139_1-3 Q0 KILT_11003095-68 23 -0.287051 hybrid +139_1-3 Q0 KILT_170452-10 24 -0.287217 hybrid +139_1-3 Q0 KILT_3046294-8 25 -0.291520 hybrid +139_1-3 Q0 KILT_28699348-2 26 -0.294568 hybrid +139_1-3 Q0 MARCO_42_1376626219-1 27 -0.298423 hybrid +139_1-3 Q0 KILT_1437380-29 28 -0.318614 hybrid +139_1-3 Q0 MARCO_12_1807681032-5 29 -0.321583 hybrid +139_1-3 Q0 MARCO_26_164617814-157 30 -0.322842 hybrid +139_1-3 Q0 KILT_2727995-3 31 -0.327543 hybrid +139_1-3 Q0 KILT_10356587-4 32 -0.340423 hybrid +139_1-3 Q0 MARCO_16_446902408-19 33 -0.343104 hybrid +139_1-3 Q0 MARCO_19_579071638-35 34 -0.344239 hybrid +139_1-3 Q0 KILT_35509755-2 35 -0.344265 hybrid +139_1-3 Q0 KILT_11003095-12 36 -0.347498 hybrid +139_1-3 Q0 MARCO_43_1007129996-21 37 -0.348207 hybrid +139_1-3 Q0 KILT_1273025-2 38 -0.348261 hybrid +139_1-3 Q0 MARCO_43_328196734-3 39 -0.348513 hybrid +139_1-3 Q0 MARCO_05_1018316918-1 40 -0.351810 hybrid +139_1-3 Q0 MARCO_17_2976977435-14 41 -0.353230 hybrid +139_1-3 Q0 MARCO_19_685468020-3 42 -0.354219 hybrid +139_1-3 Q0 MARCO_43_328196734-4 43 -0.355880 hybrid +139_1-3 Q0 MARCO_17_2976857050-11 44 -0.363931 hybrid +139_1-3 Q0 MARCO_04_203721970-1 45 -0.365456 hybrid +139_1-3 Q0 MARCO_23_938516218-5 46 -0.370218 hybrid +139_1-3 Q0 MARCO_36_960875193-2 47 -0.370433 hybrid +139_1-3 Q0 MARCO_34_1720816200-2 48 -0.372114 hybrid +139_1-3 Q0 MARCO_47_130106289-1 49 -0.378408 hybrid +139_1-3 Q0 MARCO_45_1254751892-4 50 -0.378743 hybrid +139_1-3 Q0 MARCO_18_3789976808-4 51 -0.382104 hybrid +139_1-3 Q0 MARCO_25_38930340-2 52 -0.383421 hybrid +139_1-3 Q0 KILT_54072870-2 53 -0.383708 hybrid +139_1-3 Q0 MARCO_19_579071638-76 54 -0.383910 hybrid +139_1-3 Q0 MARCO_18_3752530006-5 55 -0.389215 hybrid +139_1-3 Q0 KILT_9911289-3 56 -0.398701 hybrid +139_1-3 Q0 KILT_3315140-5 57 -0.401215 hybrid +139_1-3 Q0 KILT_1038547-9 58 -0.406062 hybrid +139_1-3 Q0 KILT_25006668-1 59 -0.408398 hybrid +139_1-3 Q0 MARCO_02_441461153-24 60 -0.411068 hybrid +139_1-3 Q0 MARCO_49_1710547978-9 61 -0.415101 hybrid +139_1-3 Q0 MARCO_09_544352892-2 62 -0.416002 hybrid +139_1-3 Q0 MARCO_19_579071638-31 63 -0.416636 hybrid +139_1-3 Q0 KILT_932074-6 64 -0.418598 hybrid +139_1-3 Q0 MARCO_45_1254751892-3 65 -0.420005 hybrid +139_1-3 Q0 MARCO_16_2852499331-26 66 -0.420278 hybrid +139_1-3 Q0 MARCO_09_482285697-26 67 -0.421580 hybrid +139_1-3 Q0 KILT_640722-4 68 -0.423146 hybrid +139_1-3 Q0 MARCO_04_203163594-5 69 -0.424028 hybrid +139_1-3 Q0 MARCO_19_579071638-58 70 -0.425685 hybrid +139_1-3 Q0 KILT_392957-25 71 -0.426995 hybrid +139_1-3 Q0 MARCO_17_3137774519-3 72 -0.431947 hybrid +139_1-3 Q0 MARCO_17_1938191323-4 73 -0.433606 hybrid +139_1-3 Q0 KILT_8917663-1 74 -0.434223 hybrid +139_1-3 Q0 KILT_11003095-36 75 -0.435008 hybrid +139_1-3 Q0 MARCO_09_709420192-8 76 -0.436855 hybrid +139_1-3 Q0 MARCO_54_1851350254-2 77 -0.438075 hybrid +139_1-3 Q0 MARCO_17_2367220987-7 78 -0.438369 hybrid +139_1-3 Q0 MARCO_43_1206773897-2 79 -0.440551 hybrid +139_1-3 Q0 KILT_35509755-3 80 -0.443093 hybrid +139_1-3 Q0 MARCO_25_37714343-3 81 -0.444323 hybrid +139_1-3 Q0 KILT_41274919-1 82 -0.444930 hybrid +139_1-3 Q0 MARCO_48_624464512-3 83 -0.448738 hybrid +139_1-3 Q0 KILT_35509755-1 84 -0.451800 hybrid +139_1-3 Q0 KILT_1944095-2 85 -0.452720 hybrid +139_1-3 Q0 KILT_1670696-3 86 -0.453383 hybrid +139_1-3 Q0 MARCO_18_3765904246-5 87 -0.454951 hybrid +139_1-3 Q0 MARCO_19_557474332-14 88 -0.455639 hybrid +139_1-3 Q0 MARCO_05_313396179-5 89 -0.457501 hybrid +139_1-3 Q0 KILT_8721956-1 90 -0.458030 hybrid +139_1-3 Q0 MARCO_25_36518956-6 91 -0.460281 hybrid +139_1-3 Q0 MARCO_16_2852499331-14 92 -0.461256 hybrid +139_1-3 Q0 KILT_1038547-2 93 -0.462337 hybrid +139_1-3 Q0 KILT_53925682-1 94 -0.464430 hybrid +139_1-3 Q0 KILT_13052761-1 95 -0.465212 hybrid +139_1-3 Q0 KILT_40861563-2 96 -0.465258 hybrid +139_1-3 Q0 MARCO_17_2976857050-8 97 -0.466504 hybrid +139_1-3 Q0 KILT_965429-4 98 -0.467893 hybrid +139_1-3 Q0 KILT_2517457-5 99 -0.467985 hybrid +139_1-3 Q0 KILT_50270955-1 100 -0.468213 hybrid +139_1-5 Q0 KILT_3315140-7 1 0.250000 hybrid +139_1-5 Q0 KILT_32718827-5 2 0.198674 hybrid +139_1-5 Q0 MARCO_37_345226218-6 3 0.189233 hybrid +139_1-5 Q0 MARCO_16_4158688040-7 4 0.169407 hybrid +139_1-5 Q0 MARCO_04_863676975-17 5 0.106892 hybrid +139_1-5 Q0 KILT_187562-12 6 0.052677 hybrid +139_1-5 Q0 KILT_36500957-1 7 0.050549 hybrid +139_1-5 Q0 KILT_11026043-13 8 0.027173 hybrid +139_1-5 Q0 KILT_1843094-8 9 0.025247 hybrid +139_1-5 Q0 KILT_5491303-14 10 -0.014961 hybrid +139_1-5 Q0 KILT_56887108-4 11 -0.028787 hybrid +139_1-5 Q0 KILT_56887108-2 12 -0.028787 hybrid +139_1-5 Q0 MARCO_17_1938128860-11 13 -0.030249 hybrid +139_1-5 Q0 MARCO_17_2363946503-5 14 -0.044776 hybrid +139_1-5 Q0 MARCO_17_2363946503-7 15 -0.044776 hybrid +139_1-5 Q0 KILT_35325296-7 16 -0.063009 hybrid +139_1-5 Q0 KILT_29416092-1 17 -0.064648 hybrid +139_1-5 Q0 MARCO_00_585059148-16 18 -0.101954 hybrid +139_1-5 Q0 KILT_22169295-8 19 -0.109437 hybrid +139_1-5 Q0 MARCO_16_1904905320-13 20 -0.119394 hybrid +139_1-5 Q0 KILT_27684741-4 21 -0.136912 hybrid +139_1-5 Q0 KILT_14161862-2 22 -0.141942 hybrid +139_1-5 Q0 KILT_4776779-2 23 -0.142622 hybrid +139_1-5 Q0 KILT_3315140-1 24 -0.151096 hybrid +139_1-5 Q0 KILT_51418188-3 25 -0.152420 hybrid +139_1-5 Q0 MARCO_16_2608660059-6 26 -0.172292 hybrid +139_1-5 Q0 KILT_3315140-4 27 -0.181633 hybrid +139_1-5 Q0 MARCO_17_1938191323-4 28 -0.187499 hybrid +139_1-5 Q0 KILT_28271831-4 29 -0.191672 hybrid +139_1-5 Q0 KILT_59014358-3 30 -0.192228 hybrid +139_1-5 Q0 KILT_45171151-2 31 -0.193399 hybrid +139_1-5 Q0 KILT_41295421-3 32 -0.215537 hybrid +139_1-5 Q0 MARCO_18_3770119105-3 33 -0.219902 hybrid +139_1-5 Q0 KILT_40175173-2 34 -0.220411 hybrid +139_1-5 Q0 KILT_11026043-15 35 -0.223732 hybrid +139_1-5 Q0 KILT_29452329-2 36 -0.231038 hybrid +139_1-5 Q0 KILT_11026043-11 37 -0.240814 hybrid +139_1-5 Q0 KILT_41196107-3 38 -0.240899 hybrid +139_1-5 Q0 KILT_51854146-2 39 -0.245090 hybrid +139_1-5 Q0 MARCO_18_3780893261-9 40 -0.249823 hybrid +139_1-5 Q0 MARCO_02_779860540-3 41 -0.250000 hybrid +139_1-5 Q0 MARCO_04_203163594-3 42 -0.254478 hybrid +139_1-5 Q0 KILT_28346616-11 43 -0.255979 hybrid +139_1-5 Q0 MARCO_18_3769937725-5 44 -0.256888 hybrid +139_1-5 Q0 KILT_25694136-4 45 -0.259731 hybrid +139_1-5 Q0 KILT_25598697-3 46 -0.265904 hybrid +139_1-5 Q0 MARCO_32_152981865-1 47 -0.267504 hybrid +139_1-5 Q0 KILT_1996695-6 48 -0.268594 hybrid +139_1-5 Q0 MARCO_09_709457960-11 49 -0.270056 hybrid +139_1-5 Q0 MARCO_17_2976896802-6 50 -0.273925 hybrid +139_1-5 Q0 KILT_5654539-4 51 -0.277143 hybrid +139_1-5 Q0 KILT_5566884-2 52 -0.277645 hybrid +139_1-5 Q0 KILT_28346616-12 53 -0.283256 hybrid +139_1-5 Q0 KILT_24793358-5 54 -0.285762 hybrid +139_1-5 Q0 KILT_44878113-27 55 -0.288930 hybrid +139_1-5 Q0 MARCO_51_271641142-1 56 -0.289185 hybrid +139_1-5 Q0 KILT_105862-10 57 -0.289206 hybrid +139_1-5 Q0 MARCO_03_931938374-4 58 -0.290905 hybrid +139_1-5 Q0 KILT_170490-2 59 -0.291015 hybrid +139_1-5 Q0 KILT_6872603-6 60 -0.292134 hybrid +139_1-5 Q0 KILT_8721956-1 61 -0.292473 hybrid +139_1-5 Q0 KILT_41170737-7 62 -0.292785 hybrid +139_1-5 Q0 MARCO_46_1152746885-1 63 -0.296080 hybrid +139_1-5 Q0 KILT_855742-11 64 -0.296587 hybrid +139_1-5 Q0 MARCO_34_478860268-1 65 -0.297800 hybrid +139_1-5 Q0 KILT_1428049-8 66 -0.299571 hybrid +139_1-5 Q0 KILT_4369239-2 67 -0.299624 hybrid +139_1-5 Q0 KILT_33327459-4 68 -0.300487 hybrid +139_1-5 Q0 MARCO_17_1732660948-29 69 -0.303525 hybrid +139_1-5 Q0 KILT_41052220-6 70 -0.309043 hybrid +139_1-5 Q0 KILT_10193216-2 71 -0.309284 hybrid +139_1-5 Q0 MARCO_19_475582572-12 72 -0.310827 hybrid +139_1-5 Q0 MARCO_16_1902087917-34 73 -0.316625 hybrid +139_1-5 Q0 KILT_25296954-9 74 -0.319266 hybrid +139_1-5 Q0 KILT_61288017-2 75 -0.319754 hybrid +139_1-5 Q0 KILT_11500067-2 76 -0.320816 hybrid +139_1-5 Q0 MARCO_31_606859212-13 77 -0.325306 hybrid +139_1-5 Q0 MARCO_16_2608729888-10 78 -0.328989 hybrid +139_1-5 Q0 KILT_8462534-3 79 -0.329478 hybrid +139_1-5 Q0 KILT_27407621-2 80 -0.333081 hybrid +139_1-5 Q0 KILT_6694360-5 81 -0.334158 hybrid +139_1-5 Q0 KILT_51985039-1 82 -0.334749 hybrid +139_1-5 Q0 MARCO_18_930113310-21 83 -0.336324 hybrid +139_1-5 Q0 KILT_2095229-2 84 -0.337432 hybrid +139_1-5 Q0 KILT_991767-3 85 -0.337460 hybrid +139_1-5 Q0 KILT_26612827-2 86 -0.340522 hybrid +139_1-5 Q0 MARCO_17_648461192-19 87 -0.341425 hybrid +139_1-5 Q0 KILT_41052220-4 88 -0.344079 hybrid +139_1-5 Q0 KILT_2235303-10 89 -0.344571 hybrid +139_1-5 Q0 KILT_5994479-2 90 -0.345340 hybrid +139_1-5 Q0 KILT_43413745-2 91 -0.346405 hybrid +139_1-5 Q0 KILT_1996695-1 92 -0.346479 hybrid +139_1-5 Q0 KILT_42068-29 93 -0.347205 hybrid +139_1-5 Q0 KILT_317555-13 94 -0.351301 hybrid +139_1-5 Q0 KILT_41170737-11 95 -0.354989 hybrid +139_1-5 Q0 MARCO_19_579071638-60 96 -0.355460 hybrid +139_1-5 Q0 KILT_13680702-28 97 -0.356019 hybrid +139_1-5 Q0 MARCO_18_945659341-55 98 -0.357024 hybrid +139_1-5 Q0 KILT_28996012-26 99 -0.358437 hybrid +139_1-5 Q0 MARCO_19_579071638-65 100 -0.359045 hybrid +139_1-7 Q0 MARCO_42_1374843583-13 1 0.485478 hybrid +139_1-7 Q0 MARCO_10_317288872-1 2 0.466570 hybrid +139_1-7 Q0 MARCO_45_1024470034-8 3 0.399115 hybrid +139_1-7 Q0 MARCO_31_295074061-4 4 0.326314 hybrid +139_1-7 Q0 MARCO_10_78568995-3 5 0.185232 hybrid +139_1-7 Q0 MARCO_49_219598061-3 6 0.149011 hybrid +139_1-7 Q0 MARCO_41_1360499217-10 7 0.146743 hybrid +139_1-7 Q0 KILT_44530995-1 8 0.093238 hybrid +139_1-7 Q0 MARCO_54_732596430-4 9 0.040609 hybrid +139_1-7 Q0 MARCO_54_728923297-5 10 0.018034 hybrid +139_1-7 Q0 MARCO_03_1478466963-1 11 0.010405 hybrid +139_1-7 Q0 MARCO_10_551069841-11 12 0.000673 hybrid +139_1-7 Q0 MARCO_10_317288872-2 13 -0.084986 hybrid +139_1-7 Q0 MARCO_58_1588737049-10 14 -0.101138 hybrid +139_1-7 Q0 MARCO_43_1010749308-7 15 -0.140519 hybrid +139_1-7 Q0 MARCO_09_700724773-2 16 -0.146142 hybrid +139_1-7 Q0 MARCO_24_978037240-10 17 -0.147430 hybrid +139_1-7 Q0 MARCO_50_1413275575-20 18 -0.154422 hybrid +139_1-7 Q0 MARCO_43_1017023674-36 19 -0.158965 hybrid +139_1-7 Q0 MARCO_25_529923745-6 20 -0.163984 hybrid +139_1-7 Q0 MARCO_45_167028191-4 21 -0.170770 hybrid +139_1-7 Q0 MARCO_21_1387127213-3 22 -0.208684 hybrid +139_1-7 Q0 MARCO_52_1328955597-5 23 -0.213472 hybrid +139_1-7 Q0 MARCO_35_315696109-4 24 -0.214147 hybrid +139_1-7 Q0 MARCO_50_2153767895-1 25 -0.230931 hybrid +139_1-7 Q0 MARCO_41_1217638368-7 26 -0.250002 hybrid +139_1-7 Q0 MARCO_49_1827767458-7 27 -0.273787 hybrid +139_1-7 Q0 MARCO_42_1372445495-3 28 -0.287311 hybrid +139_1-7 Q0 MARCO_10_35215777-1 29 -0.288951 hybrid +139_1-7 Q0 MARCO_28_396725641-5 30 -0.289193 hybrid +139_1-7 Q0 KILT_12232585-36 31 -0.295986 hybrid +139_1-7 Q0 MARCO_41_1370065999-36 32 -0.296882 hybrid +139_1-7 Q0 MARCO_21_1387127213-2 33 -0.301745 hybrid +139_1-7 Q0 MARCO_07_833162818-239 34 -0.309464 hybrid +139_1-7 Q0 MARCO_41_1372564229-6 35 -0.310064 hybrid +139_1-7 Q0 MARCO_26_898272393-1 36 -0.311891 hybrid +139_1-7 Q0 MARCO_42_1359062506-7 37 -0.324831 hybrid +139_1-7 Q0 MARCO_16_3038787278-16 38 -0.325026 hybrid +139_1-7 Q0 KILT_42692298-1 39 -0.336307 hybrid +139_1-7 Q0 MARCO_12_148192882-76 40 -0.339679 hybrid +139_1-7 Q0 KILT_5287207-9 41 -0.346410 hybrid +139_1-7 Q0 MARCO_50_2652041956-5 42 -0.346781 hybrid +139_1-7 Q0 MARCO_19_134488766-10 43 -0.348826 hybrid +139_1-7 Q0 MARCO_37_1259499462-2 44 -0.353865 hybrid +139_1-7 Q0 MARCO_20_1732101213-5 45 -0.354517 hybrid +139_1-7 Q0 MARCO_37_1259257421-8 46 -0.362168 hybrid +139_1-7 Q0 KILT_1271047-22 47 -0.362445 hybrid +139_1-7 Q0 MARCO_04_1292568396-3 48 -0.363117 hybrid +139_1-7 Q0 MARCO_01_1545334188-2 49 -0.364118 hybrid +139_1-7 Q0 KILT_12520359-5 50 -0.369554 hybrid +139_1-7 Q0 MARCO_04_155282561-3 51 -0.372818 hybrid +139_1-7 Q0 MARCO_19_558575861-22 52 -0.375920 hybrid +139_1-7 Q0 MARCO_28_813848535-6 53 -0.378389 hybrid +139_1-7 Q0 MARCO_52_221354867-5 54 -0.379639 hybrid +139_1-7 Q0 MARCO_48_1186223323-5 55 -0.380218 hybrid +139_1-7 Q0 MARCO_01_1062610003-12 56 -0.386692 hybrid +139_1-7 Q0 MARCO_05_1349800146-81 57 -0.387803 hybrid +139_1-7 Q0 MARCO_42_1372445495-43 58 -0.392024 hybrid +139_1-7 Q0 KILT_9376425-2 59 -0.392829 hybrid +139_1-7 Q0 MARCO_50_2374302020-49 60 -0.393700 hybrid +139_1-7 Q0 MARCO_25_1031200656-15 61 -0.394434 hybrid +139_1-7 Q0 MARCO_02_1590783239-1 62 -0.395991 hybrid +139_1-7 Q0 KILT_33654794-4 63 -0.407227 hybrid +139_1-7 Q0 MARCO_59_354812277-15 64 -0.409784 hybrid +139_1-7 Q0 MARCO_21_1387127213-4 65 -0.411989 hybrid +139_1-7 Q0 MARCO_48_625280922-9 66 -0.413332 hybrid +139_1-7 Q0 MARCO_20_314890755-37 67 -0.413816 hybrid +139_1-7 Q0 MARCO_09_370170308-35 68 -0.414636 hybrid +139_1-7 Q0 MARCO_10_1386497328-2 69 -0.414920 hybrid +139_1-7 Q0 MARCO_50_1449297047-21 70 -0.415752 hybrid +139_1-7 Q0 KILT_55397285-2 71 -0.416570 hybrid +139_1-7 Q0 MARCO_37_724314530-1 72 -0.417014 hybrid +139_1-7 Q0 KILT_47301853-5 73 -0.418690 hybrid +139_1-7 Q0 MARCO_04_380859839-9 74 -0.418795 hybrid +139_1-7 Q0 KILT_149135-34 75 -0.422923 hybrid +139_1-7 Q0 MARCO_41_1372564229-19 76 -0.423096 hybrid +139_1-7 Q0 MARCO_27_108691393-24 77 -0.427411 hybrid +139_1-7 Q0 MARCO_42_1372445495-50 78 -0.428441 hybrid +139_1-7 Q0 MARCO_12_458167294-11 79 -0.430858 hybrid +139_1-7 Q0 MARCO_13_777921411-4 80 -0.431095 hybrid +139_1-7 Q0 KILT_527703-9 81 -0.433297 hybrid +139_1-7 Q0 KILT_5287207-12 82 -0.434976 hybrid +139_1-7 Q0 KILT_14234601-5 83 -0.438016 hybrid +139_1-7 Q0 MARCO_47_1512730164-6 84 -0.439552 hybrid +139_1-7 Q0 MARCO_25_1080094176-4 85 -0.439568 hybrid +139_1-7 Q0 KILT_12232585-23 86 -0.442118 hybrid +139_1-7 Q0 MARCO_17_1581688443-14 87 -0.444809 hybrid +139_1-7 Q0 MARCO_06_1598187434-5 88 -0.446912 hybrid +139_1-7 Q0 MARCO_18_3753030254-8 89 -0.447904 hybrid +139_1-7 Q0 KILT_1271047-24 90 -0.448282 hybrid +139_1-7 Q0 MARCO_50_1606422852-1 91 -0.448778 hybrid +139_1-7 Q0 MARCO_03_1389380794-5 92 -0.449179 hybrid +139_1-7 Q0 KILT_25234819-10 93 -0.452463 hybrid +139_1-7 Q0 MARCO_28_1344258427-26 94 -0.454933 hybrid +139_1-7 Q0 MARCO_35_430586433-6 95 -0.455777 hybrid +139_1-7 Q0 KILT_1271047-2 96 -0.456458 hybrid +139_1-7 Q0 MARCO_02_449683614-66 97 -0.457156 hybrid +139_1-7 Q0 MARCO_03_1469471093-8 98 -0.457743 hybrid +139_1-7 Q0 MARCO_42_1368444196-3 99 -0.457824 hybrid +139_1-7 Q0 MARCO_38_1499885248-2 100 -0.457837 hybrid +139_2-1 Q0 MARCO_50_1976647136-20 1 0.250000 hybrid +139_2-1 Q0 MARCO_50_1986696809-18 2 0.109895 hybrid +139_2-1 Q0 MARCO_51_900710726-1 3 -0.000262 hybrid +139_2-1 Q0 MARCO_50_1986696809-15 4 -0.051330 hybrid +139_2-1 Q0 MARCO_50_1986696809-13 5 -0.065635 hybrid +139_2-1 Q0 MARCO_50_1986696809-19 6 -0.111774 hybrid +139_2-1 Q0 MARCO_50_1976647136-19 7 -0.155340 hybrid +139_2-1 Q0 MARCO_23_1590380056-9 8 -0.174431 hybrid +139_2-1 Q0 MARCO_03_1387379625-207 9 -0.177148 hybrid +139_2-1 Q0 MARCO_50_1976647136-9 10 -0.186850 hybrid +139_2-1 Q0 MARCO_50_1986696809-16 11 -0.193724 hybrid +139_2-1 Q0 MARCO_29_1213003697-16 12 -0.206664 hybrid +139_2-1 Q0 MARCO_14_332204452-1 13 -0.230060 hybrid +139_2-1 Q0 MARCO_18_2773453818-1 14 -0.250000 hybrid +139_2-1 Q0 MARCO_55_248491559-1 15 -0.269656 hybrid +139_2-1 Q0 MARCO_29_1213003697-13 16 -0.280402 hybrid +139_2-1 Q0 MARCO_29_1213003697-15 17 -0.283018 hybrid +139_2-1 Q0 MARCO_50_1976647136-16 18 -0.294376 hybrid +139_2-1 Q0 MARCO_36_1590019633-1 19 -0.301285 hybrid +139_2-1 Q0 MARCO_52_1143313614-7 20 -0.304193 hybrid +139_2-1 Q0 MARCO_17_689271714-62 21 -0.305942 hybrid +139_2-1 Q0 MARCO_30_852084669-11 22 -0.312138 hybrid +139_2-1 Q0 MARCO_27_1751103262-3 23 -0.328552 hybrid +139_2-1 Q0 MARCO_10_127136602-1 24 -0.334130 hybrid +139_2-1 Q0 MARCO_06_236869994-4 25 -0.334893 hybrid +139_2-1 Q0 MARCO_29_1385092638-6 26 -0.338085 hybrid +139_2-1 Q0 MARCO_43_777882589-9 27 -0.341763 hybrid +139_2-1 Q0 MARCO_29_1213003697-12 28 -0.343134 hybrid +139_2-1 Q0 MARCO_41_1392976032-10 29 -0.344038 hybrid +139_2-1 Q0 MARCO_10_126299628-1 30 -0.349601 hybrid +139_2-1 Q0 MARCO_23_1082598780-1 31 -0.349623 hybrid +139_2-1 Q0 MARCO_23_1081888893-1 32 -0.351816 hybrid +139_2-1 Q0 MARCO_42_1675748937-1 33 -0.358076 hybrid +139_2-1 Q0 MARCO_50_1986696809-6 34 -0.360084 hybrid +139_2-1 Q0 MARCO_03_583240442-12 35 -0.363539 hybrid +139_2-1 Q0 MARCO_53_81580608-3 36 -0.368153 hybrid +139_2-1 Q0 MARCO_53_81591972-3 37 -0.368160 hybrid +139_2-1 Q0 MARCO_05_812510161-16 38 -0.369070 hybrid +139_2-1 Q0 MARCO_40_809594468-1 39 -0.378247 hybrid +139_2-1 Q0 MARCO_39_1567532709-1 40 -0.378499 hybrid +139_2-1 Q0 MARCO_35_1141061275-16 41 -0.379748 hybrid +139_2-1 Q0 MARCO_01_1697650827-1 42 -0.381115 hybrid +139_2-1 Q0 MARCO_51_176140475-1 43 -0.382396 hybrid +139_2-1 Q0 MARCO_44_34763274-7 44 -0.383098 hybrid +139_2-1 Q0 MARCO_39_1574908171-2 45 -0.389698 hybrid +139_2-1 Q0 MARCO_10_1411108473-1 46 -0.390526 hybrid +139_2-1 Q0 MARCO_26_353691974-63 47 -0.392656 hybrid +139_2-1 Q0 KILT_8917663-2 48 -0.393502 hybrid +139_2-1 Q0 MARCO_43_777882589-8 49 -0.393689 hybrid +139_2-1 Q0 MARCO_09_858456084-8 50 -0.394128 hybrid +139_2-1 Q0 MARCO_13_795464652-1 51 -0.396820 hybrid +139_2-1 Q0 MARCO_36_1004502370-1 52 -0.396820 hybrid +139_2-1 Q0 MARCO_50_1976647136-21 53 -0.397396 hybrid +139_2-1 Q0 MARCO_41_1169226399-50 54 -0.405180 hybrid +139_2-1 Q0 MARCO_01_1028375658-61 55 -0.406015 hybrid +139_2-1 Q0 KILT_3013843-4 56 -0.406684 hybrid +139_2-1 Q0 MARCO_06_1137125711-200 57 -0.408224 hybrid +139_2-1 Q0 MARCO_41_1209317676-15 58 -0.408980 hybrid +139_2-1 Q0 MARCO_15_1831919782-6 59 -0.411773 hybrid +139_2-1 Q0 MARCO_05_811761166-1 60 -0.412971 hybrid +139_2-1 Q0 MARCO_54_101689823-4 61 -0.414284 hybrid +139_2-1 Q0 KILT_7094395-3 62 -0.417260 hybrid +139_2-1 Q0 MARCO_12_1164834192-11 63 -0.418560 hybrid +139_2-1 Q0 MARCO_30_151772794-1 64 -0.419161 hybrid +139_2-1 Q0 MARCO_29_1213003697-14 65 -0.419985 hybrid +139_2-1 Q0 KILT_31501462-3 66 -0.423011 hybrid +139_2-1 Q0 MARCO_01_766529309-4 67 -0.423976 hybrid +139_2-1 Q0 MARCO_00_763584951-23 68 -0.424605 hybrid +139_2-1 Q0 MARCO_06_1199792673-311 69 -0.427387 hybrid +139_2-1 Q0 MARCO_13_738696526-1 70 -0.429104 hybrid +139_2-1 Q0 MARCO_50_1986696809-14 71 -0.429946 hybrid +139_2-1 Q0 MARCO_39_1567532709-21 72 -0.430997 hybrid +139_2-1 Q0 MARCO_51_1634012455-1 73 -0.431936 hybrid +139_2-1 Q0 MARCO_17_3114677702-42 74 -0.434451 hybrid +139_2-1 Q0 MARCO_11_1245999089-6 75 -0.437219 hybrid +139_2-1 Q0 MARCO_43_1390481327-7 76 -0.437791 hybrid +139_2-1 Q0 MARCO_31_1812618181-1 77 -0.437967 hybrid +139_2-1 Q0 MARCO_55_251598823-1 78 -0.440220 hybrid +139_2-1 Q0 MARCO_50_1976647136-8 79 -0.442027 hybrid +139_2-1 Q0 MARCO_03_442514811-2 80 -0.442513 hybrid +139_2-1 Q0 MARCO_50_1168213625-3 81 -0.443348 hybrid +139_2-1 Q0 MARCO_06_1116141815-80 82 -0.444647 hybrid +139_2-1 Q0 MARCO_19_599268439-3 83 -0.445661 hybrid +139_2-1 Q0 MARCO_42_1680116628-2 84 -0.446105 hybrid +139_2-1 Q0 MARCO_50_1986696809-1 85 -0.446932 hybrid +139_2-1 Q0 MARCO_50_1986696809-20 86 -0.447997 hybrid +139_2-1 Q0 MARCO_50_2400934087-9 87 -0.451945 hybrid +139_2-1 Q0 MARCO_25_1443121688-3 88 -0.453722 hybrid +139_2-1 Q0 MARCO_37_1259043197-4 89 -0.453726 hybrid +139_2-1 Q0 MARCO_20_1089879677-5 90 -0.456074 hybrid +139_2-1 Q0 MARCO_35_1141061275-15 91 -0.456976 hybrid +139_2-1 Q0 MARCO_13_661274091-4 92 -0.456990 hybrid +139_2-1 Q0 MARCO_30_92466635-1 93 -0.457163 hybrid +139_2-1 Q0 MARCO_10_790302336-6 94 -0.459786 hybrid +139_2-1 Q0 MARCO_37_1275336444-5 95 -0.463309 hybrid +139_2-1 Q0 MARCO_33_412290557-1 96 -0.463453 hybrid +139_2-1 Q0 MARCO_05_812781374-15 97 -0.464547 hybrid +139_2-1 Q0 MARCO_28_309032834-1 98 -0.464565 hybrid +139_2-1 Q0 MARCO_18_3121656022-5 99 -0.466192 hybrid +139_2-1 Q0 MARCO_25_1430899678-3 100 -0.466232 hybrid +139_2-11 Q0 MARCO_51_1747069511-18 1 0.249998 hybrid +139_2-11 Q0 MARCO_55_1288243942-28 2 0.245793 hybrid +139_2-11 Q0 MARCO_50_1411637407-3 3 0.196750 hybrid +139_2-11 Q0 MARCO_24_76911461-24 4 0.181599 hybrid +139_2-11 Q0 MARCO_15_598590406-4 5 0.173599 hybrid +139_2-11 Q0 MARCO_27_1332275192-2 6 0.164429 hybrid +139_2-11 Q0 MARCO_03_1766701606-4 7 0.139810 hybrid +139_2-11 Q0 MARCO_27_1332275192-3 8 0.123995 hybrid +139_2-11 Q0 MARCO_41_1164212236-16 9 0.123082 hybrid +139_2-11 Q0 MARCO_52_357414544-13 10 0.112699 hybrid +139_2-11 Q0 MARCO_06_337865995-7 11 0.103304 hybrid +139_2-11 Q0 MARCO_50_1417615577-60 12 0.097371 hybrid +139_2-11 Q0 MARCO_30_1082693382-1 13 0.073782 hybrid +139_2-11 Q0 MARCO_20_1123120394-4 14 0.062528 hybrid +139_2-11 Q0 MARCO_59_882253710-2 15 0.055767 hybrid +139_2-11 Q0 MARCO_09_1236796284-2 16 0.053563 hybrid +139_2-11 Q0 MARCO_41_1109029954-10 17 0.024387 hybrid +139_2-11 Q0 MARCO_06_1203813551-34 18 0.022630 hybrid +139_2-11 Q0 MARCO_24_807685158-21 19 0.020327 hybrid +139_2-11 Q0 MARCO_50_1506898909-4 20 0.018758 hybrid +139_2-11 Q0 MARCO_06_1219181201-90 21 0.008391 hybrid +139_2-11 Q0 MARCO_50_1986371879-5 22 -0.000398 hybrid +139_2-11 Q0 MARCO_50_1522869547-14 23 -0.000659 hybrid +139_2-11 Q0 MARCO_06_1254349356-241 24 -0.000716 hybrid +139_2-11 Q0 MARCO_50_1506898909-7 25 -0.009681 hybrid +139_2-11 Q0 MARCO_50_1411637407-25 26 -0.012365 hybrid +139_2-11 Q0 MARCO_41_1111957631-15 27 -0.027618 hybrid +139_2-11 Q0 MARCO_29_1210571599-1 28 -0.027995 hybrid +139_2-11 Q0 MARCO_44_1689960116-44 29 -0.028723 hybrid +139_2-11 Q0 MARCO_27_1332326310-2 30 -0.042134 hybrid +139_2-11 Q0 MARCO_03_1767270779-1 31 -0.050933 hybrid +139_2-11 Q0 MARCO_37_1225565708-1 32 -0.051215 hybrid +139_2-11 Q0 MARCO_52_357464040-14 33 -0.052491 hybrid +139_2-11 Q0 MARCO_52_357482509-14 34 -0.052491 hybrid +139_2-11 Q0 MARCO_03_1766754957-1 35 -0.057931 hybrid +139_2-11 Q0 MARCO_17_3703719656-2 36 -0.059537 hybrid +139_2-11 Q0 MARCO_32_473811803-72 37 -0.077890 hybrid +139_2-11 Q0 MARCO_03_1220536791-84 38 -0.079833 hybrid +139_2-11 Q0 MARCO_55_819668455-1 39 -0.086256 hybrid +139_2-11 Q0 MARCO_55_1288243942-23 40 -0.090596 hybrid +139_2-11 Q0 MARCO_29_1210571599-3 41 -0.096708 hybrid +139_2-11 Q0 MARCO_44_1689960116-35 42 -0.098827 hybrid +139_2-11 Q0 MARCO_03_1220536791-90 43 -0.103530 hybrid +139_2-11 Q0 MARCO_45_1435694871-2 44 -0.104780 hybrid +139_2-11 Q0 MARCO_23_1083334073-4 45 -0.105934 hybrid +139_2-11 Q0 MARCO_06_1196219817-11 46 -0.111630 hybrid +139_2-11 Q0 MARCO_11_119909427-8 47 -0.115675 hybrid +139_2-11 Q0 MARCO_50_1170968973-1 48 -0.116253 hybrid +139_2-11 Q0 MARCO_24_1905514303-13 49 -0.120866 hybrid +139_2-11 Q0 MARCO_29_1329207410-2 50 -0.122154 hybrid +139_2-11 Q0 MARCO_08_688605731-8 51 -0.124624 hybrid +139_2-11 Q0 MARCO_50_1411637407-23 52 -0.124904 hybrid +139_2-11 Q0 MARCO_50_1411637407-1 53 -0.126985 hybrid +139_2-11 Q0 MARCO_57_914510789-3 54 -0.133071 hybrid +139_2-11 Q0 MARCO_29_1210571599-2 55 -0.137677 hybrid +139_2-11 Q0 MARCO_41_1240150123-13 56 -0.141323 hybrid +139_2-11 Q0 MARCO_37_1225565708-2 57 -0.143700 hybrid +139_2-11 Q0 MARCO_06_1090202352-16 58 -0.143936 hybrid +139_2-11 Q0 MARCO_01_1642640753-35 59 -0.148184 hybrid +139_2-11 Q0 MARCO_45_1437051649-1 60 -0.153215 hybrid +139_2-11 Q0 MARCO_44_1689960116-42 61 -0.153695 hybrid +139_2-11 Q0 MARCO_23_700064365-1 62 -0.154840 hybrid +139_2-11 Q0 MARCO_00_626077716-12 63 -0.156008 hybrid +139_2-11 Q0 MARCO_17_4190371631-1 64 -0.156179 hybrid +139_2-11 Q0 MARCO_15_1878992703-4 65 -0.158579 hybrid +139_2-11 Q0 MARCO_17_4190371631-3 66 -0.161339 hybrid +139_2-11 Q0 MARCO_55_1707167164-1 67 -0.165201 hybrid +139_2-11 Q0 MARCO_57_914503651-5 68 -0.172014 hybrid +139_2-11 Q0 MARCO_10_614580684-5 69 -0.175696 hybrid +139_2-11 Q0 MARCO_28_986496394-5 70 -0.175872 hybrid +139_2-11 Q0 MARCO_20_1123114568-2 71 -0.179625 hybrid +139_2-11 Q0 MARCO_11_119909427-4 72 -0.182048 hybrid +139_2-11 Q0 MARCO_41_1164212236-17 73 -0.186224 hybrid +139_2-11 Q0 MARCO_24_807685158-24 74 -0.189521 hybrid +139_2-11 Q0 MARCO_24_807685158-25 75 -0.201223 hybrid +139_2-11 Q0 MARCO_56_459057530-4 76 -0.201389 hybrid +139_2-11 Q0 MARCO_14_1772521971-9 77 -0.201446 hybrid +139_2-11 Q0 MARCO_58_1507641423-2 78 -0.201864 hybrid +139_2-11 Q0 MARCO_55_1288243942-25 79 -0.202814 hybrid +139_2-11 Q0 MARCO_20_1123120394-3 80 -0.208396 hybrid +139_2-11 Q0 MARCO_43_42225407-10 81 -0.211352 hybrid +139_2-11 Q0 MARCO_03_1474882189-2 82 -0.218972 hybrid +139_2-11 Q0 MARCO_44_1689960116-13 83 -0.219099 hybrid +139_2-11 Q0 MARCO_56_459078349-2 84 -0.219542 hybrid +139_2-11 Q0 MARCO_23_1594511349-2 85 -0.220602 hybrid +139_2-11 Q0 KILT_47338990-1 86 -0.222331 hybrid +139_2-11 Q0 MARCO_50_1986371879-2 87 -0.223352 hybrid +139_2-11 Q0 MARCO_48_1536042557-21 88 -0.224473 hybrid +139_2-11 Q0 MARCO_22_244218885-6 89 -0.229809 hybrid +139_2-11 Q0 MARCO_06_233932637-1 90 -0.232265 hybrid +139_2-11 Q0 MARCO_55_247175318-4 91 -0.233172 hybrid +139_2-11 Q0 MARCO_50_1524631404-8 92 -0.233785 hybrid +139_2-11 Q0 MARCO_04_1057217507-11 93 -0.235039 hybrid +139_2-11 Q0 MARCO_10_795447522-13 94 -0.236232 hybrid +139_2-11 Q0 MARCO_24_1015267251-1 95 -0.237021 hybrid +139_2-11 Q0 MARCO_14_752099999-10 96 -0.237667 hybrid +139_2-11 Q0 MARCO_40_820662661-4 97 -0.240916 hybrid +139_2-11 Q0 MARCO_14_748076656-11 98 -0.249287 hybrid +139_2-11 Q0 MARCO_13_1167939316-2 99 -0.249648 hybrid +139_2-11 Q0 MARCO_57_914510789-5 100 -0.249881 hybrid +139_2-13 Q0 MARCO_55_134814551-1 1 0.425733 hybrid +139_2-13 Q0 MARCO_00_767771741-2 2 0.421893 hybrid +139_2-13 Q0 MARCO_28_413735177-362 3 0.417869 hybrid +139_2-13 Q0 MARCO_50_1976647136-18 4 0.407893 hybrid +139_2-13 Q0 MARCO_50_2141096457-10 5 0.325622 hybrid +139_2-13 Q0 MARCO_30_92494994-5 6 0.300834 hybrid +139_2-13 Q0 MARCO_30_92573188-9 7 0.279555 hybrid +139_2-13 Q0 MARCO_00_767771741-1 8 0.257331 hybrid +139_2-13 Q0 MARCO_00_767771741-4 9 0.233133 hybrid +139_2-13 Q0 MARCO_44_1488298674-7 10 0.232495 hybrid +139_2-13 Q0 MARCO_00_767771741-16 11 0.222262 hybrid +139_2-13 Q0 MARCO_29_662582548-11 12 0.209427 hybrid +139_2-13 Q0 MARCO_31_1319602620-2 13 0.207015 hybrid +139_2-13 Q0 MARCO_00_767771741-3 14 0.183207 hybrid +139_2-13 Q0 MARCO_55_1281693293-2 15 0.168997 hybrid +139_2-13 Q0 KILT_20579666-1 16 0.167132 hybrid +139_2-13 Q0 MARCO_28_447968862-4 17 0.158127 hybrid +139_2-13 Q0 MARCO_44_1488298674-3 18 0.156735 hybrid +139_2-13 Q0 KILT_897775-20 19 0.151064 hybrid +139_2-13 Q0 MARCO_36_1003085916-10 20 0.146923 hybrid +139_2-13 Q0 MARCO_10_125884503-3 21 0.141871 hybrid +139_2-13 Q0 MARCO_31_1319602620-1 22 0.138060 hybrid +139_2-13 Q0 MARCO_55_1701438850-5 23 0.137138 hybrid +139_2-13 Q0 MARCO_24_1139297902-14 24 0.127344 hybrid +139_2-13 Q0 MARCO_23_243972315-5 25 0.126088 hybrid +139_2-13 Q0 MARCO_42_1360921322-8 26 0.125955 hybrid +139_2-13 Q0 MARCO_00_767771741-8 27 0.124067 hybrid +139_2-13 Q0 MARCO_42_1360921322-9 28 0.121578 hybrid +139_2-13 Q0 MARCO_55_1706805628-2 29 0.120436 hybrid +139_2-13 Q0 MARCO_55_1701438850-1 30 0.114820 hybrid +139_2-13 Q0 MARCO_30_92395788-6 31 0.109560 hybrid +139_2-13 Q0 MARCO_44_1488298674-2 32 0.104209 hybrid +139_2-13 Q0 MARCO_04_786828265-1 33 0.099281 hybrid +139_2-13 Q0 MARCO_55_1707991016-2 34 0.098637 hybrid +139_2-13 Q0 MARCO_23_244000007-6 35 0.095597 hybrid +139_2-13 Q0 MARCO_10_125884503-1 36 0.083920 hybrid +139_2-13 Q0 MARCO_23_243990978-4 37 0.081680 hybrid +139_2-13 Q0 MARCO_42_1364593057-5 38 0.065270 hybrid +139_2-13 Q0 MARCO_10_77686443-6 39 0.056921 hybrid +139_2-13 Q0 MARCO_28_413735177-361 40 0.051519 hybrid +139_2-13 Q0 MARCO_55_1701438850-2 41 0.046013 hybrid +139_2-13 Q0 MARCO_41_324917941-5 42 0.044357 hybrid +139_2-13 Q0 MARCO_23_894236714-1 43 0.041978 hybrid +139_2-13 Q0 MARCO_10_125884503-4 44 0.041378 hybrid +139_2-13 Q0 KILT_20579666-2 45 0.036377 hybrid +139_2-13 Q0 MARCO_18_461374169-10 46 0.029718 hybrid +139_2-13 Q0 MARCO_45_1438641590-1 47 0.027839 hybrid +139_2-13 Q0 MARCO_42_1364593057-1 48 0.025725 hybrid +139_2-13 Q0 MARCO_43_777882589-10 49 0.016375 hybrid +139_2-13 Q0 MARCO_23_894236714-2 50 0.012056 hybrid +139_2-13 Q0 MARCO_36_1008196284-11 51 0.006272 hybrid +139_2-13 Q0 MARCO_55_134814551-4 52 0.006018 hybrid +139_2-13 Q0 MARCO_55_253248333-6 53 -0.007533 hybrid +139_2-13 Q0 MARCO_55_1281693293-4 54 -0.020233 hybrid +139_2-13 Q0 MARCO_13_402956366-3 55 -0.025093 hybrid +139_2-13 Q0 MARCO_45_1438540505-1 56 -0.025397 hybrid +139_2-13 Q0 MARCO_51_1634693693-2 57 -0.026361 hybrid +139_2-13 Q0 MARCO_00_767771741-5 58 -0.034615 hybrid +139_2-13 Q0 MARCO_55_1281693293-3 59 -0.037714 hybrid +139_2-13 Q0 MARCO_18_477374892-21 60 -0.038126 hybrid +139_2-13 Q0 MARCO_30_1084424410-2 61 -0.042119 hybrid +139_2-13 Q0 MARCO_06_1267389422-427 62 -0.044874 hybrid +139_2-13 Q0 MARCO_44_1488298674-1 63 -0.049591 hybrid +139_2-13 Q0 MARCO_30_1086003880-1 64 -0.057228 hybrid +139_2-13 Q0 KILT_54663095-1 65 -0.057412 hybrid +139_2-13 Q0 MARCO_50_1178652254-14 66 -0.059760 hybrid +139_2-13 Q0 MARCO_29_662582548-12 67 -0.063824 hybrid +139_2-13 Q0 MARCO_00_767771741-19 68 -0.078421 hybrid +139_2-13 Q0 MARCO_00_767771741-9 69 -0.078982 hybrid +139_2-13 Q0 MARCO_55_247910917-7 70 -0.080853 hybrid +139_2-13 Q0 MARCO_55_1281712551-3 71 -0.088172 hybrid +139_2-13 Q0 MARCO_40_817653402-2 72 -0.088847 hybrid +139_2-13 Q0 MARCO_00_767771741-17 73 -0.092238 hybrid +139_2-13 Q0 MARCO_55_1706805628-1 74 -0.099528 hybrid +139_2-13 Q0 MARCO_00_767771741-7 75 -0.104552 hybrid +139_2-13 Q0 MARCO_04_786830584-1 76 -0.106066 hybrid +139_2-13 Q0 MARCO_30_1092538935-5 77 -0.108272 hybrid +139_2-13 Q0 MARCO_30_92395788-7 78 -0.109401 hybrid +139_2-13 Q0 MARCO_57_1267949532-4 79 -0.109444 hybrid +139_2-13 Q0 MARCO_18_477374892-20 80 -0.109976 hybrid +139_2-13 Q0 MARCO_55_1281693293-1 81 -0.113026 hybrid +139_2-13 Q0 MARCO_17_658305980-16 82 -0.116759 hybrid +139_2-13 Q0 MARCO_42_1364593057-3 83 -0.124431 hybrid +139_2-13 Q0 MARCO_29_662582548-1 84 -0.124975 hybrid +139_2-13 Q0 MARCO_59_1032322888-3 85 -0.126317 hybrid +139_2-13 Q0 MARCO_29_662582548-5 86 -0.128105 hybrid +139_2-13 Q0 KILT_6389709-2 87 -0.128304 hybrid +139_2-13 Q0 KILT_20579666-3 88 -0.128917 hybrid +139_2-13 Q0 MARCO_18_477374892-11 89 -0.129127 hybrid +139_2-13 Q0 MARCO_10_125884503-5 90 -0.130493 hybrid +139_2-13 Q0 MARCO_18_461374169-9 91 -0.145433 hybrid +139_2-13 Q0 MARCO_40_817653402-1 92 -0.146756 hybrid +139_2-13 Q0 KILT_32506906-1 93 -0.147949 hybrid +139_2-13 Q0 MARCO_55_1281712551-4 94 -0.153022 hybrid +139_2-13 Q0 MARCO_29_662582548-7 95 -0.155170 hybrid +139_2-13 Q0 MARCO_45_1438641590-5 96 -0.159525 hybrid +139_2-13 Q0 MARCO_28_447968862-2 97 -0.159693 hybrid +139_2-13 Q0 MARCO_28_447968862-1 98 -0.162637 hybrid +139_2-13 Q0 MARCO_29_662582548-6 99 -0.164061 hybrid +139_2-13 Q0 MARCO_50_2141096457-25 100 -0.182039 hybrid +139_2-15 Q0 MARCO_03_442514811-4 1 0.533989 hybrid +139_2-15 Q0 MARCO_29_1213003697-13 2 0.402921 hybrid +139_2-15 Q0 MARCO_30_1081756789-12 3 0.252986 hybrid +139_2-15 Q0 MARCO_30_151874420-2 4 0.243074 hybrid +139_2-15 Q0 MARCO_36_1004519590-1 5 0.144050 hybrid +139_2-15 Q0 MARCO_29_1213003697-15 6 0.135975 hybrid +139_2-15 Q0 MARCO_05_811761166-1 7 0.128056 hybrid +139_2-15 Q0 MARCO_55_251598823-12 8 0.127020 hybrid +139_2-15 Q0 MARCO_22_1581780845-10 9 0.114846 hybrid +139_2-15 Q0 MARCO_15_134315224-2 10 0.112147 hybrid +139_2-15 Q0 MARCO_15_132265984-1 11 0.100069 hybrid +139_2-15 Q0 MARCO_00_885435574-4 12 0.096516 hybrid +139_2-15 Q0 MARCO_30_1004298367-1 13 0.088681 hybrid +139_2-15 Q0 MARCO_05_812510161-16 14 0.086710 hybrid +139_2-15 Q0 MARCO_00_885435574-3 15 0.066246 hybrid +139_2-15 Q0 MARCO_30_92466635-5 16 0.014851 hybrid +139_2-15 Q0 MARCO_50_636768984-3 17 0.014203 hybrid +139_2-15 Q0 MARCO_36_1005338413-6 18 0.007239 hybrid +139_2-15 Q0 MARCO_55_251758340-10 19 -0.002337 hybrid +139_2-15 Q0 MARCO_21_1442314510-6 20 -0.004225 hybrid +139_2-15 Q0 MARCO_02_1576426441-2 21 -0.008556 hybrid +139_2-15 Q0 MARCO_45_1437052426-4 22 -0.014646 hybrid +139_2-15 Q0 MARCO_45_1436807476-2 23 -0.021465 hybrid +139_2-15 Q0 MARCO_30_91898173-4 24 -0.027383 hybrid +139_2-15 Q0 MARCO_30_1004298367-5 25 -0.059084 hybrid +139_2-15 Q0 MARCO_01_1679006693-12 26 -0.070738 hybrid +139_2-15 Q0 MARCO_59_604123824-4 27 -0.071791 hybrid +139_2-15 Q0 MARCO_08_1479620216-1 28 -0.078416 hybrid +139_2-15 Q0 MARCO_41_291717801-3 29 -0.090626 hybrid +139_2-15 Q0 MARCO_30_129576355-2 30 -0.092634 hybrid +139_2-15 Q0 MARCO_30_151772794-18 31 -0.109339 hybrid +139_2-15 Q0 MARCO_27_1105973472-5 32 -0.110635 hybrid +139_2-15 Q0 MARCO_15_133602246-1 33 -0.129747 hybrid +139_2-15 Q0 MARCO_30_1004336912-1 34 -0.136495 hybrid +139_2-15 Q0 MARCO_51_1632374115-5 35 -0.137925 hybrid +139_2-15 Q0 MARCO_41_291717801-4 36 -0.146818 hybrid +139_2-15 Q0 MARCO_30_1004298367-11 37 -0.151492 hybrid +139_2-15 Q0 MARCO_15_133965036-1 38 -0.155025 hybrid +139_2-15 Q0 MARCO_55_249562011-2 39 -0.163944 hybrid +139_2-15 Q0 MARCO_41_291717801-2 40 -0.169608 hybrid +139_2-15 Q0 MARCO_15_134149668-7 41 -0.172470 hybrid +139_2-15 Q0 MARCO_55_1727330288-2 42 -0.175367 hybrid +139_2-15 Q0 MARCO_14_335989648-1 43 -0.178347 hybrid +139_2-15 Q0 MARCO_01_1679006693-13 44 -0.180917 hybrid +139_2-15 Q0 MARCO_30_1081715671-8 45 -0.181970 hybrid +139_2-15 Q0 MARCO_06_227410351-2 46 -0.182252 hybrid +139_2-15 Q0 MARCO_30_1004298367-3 47 -0.182965 hybrid +139_2-15 Q0 MARCO_41_1153928301-38 48 -0.190487 hybrid +139_2-15 Q0 MARCO_30_1004298367-4 49 -0.193292 hybrid +139_2-15 Q0 MARCO_21_1038592258-1 50 -0.207327 hybrid +139_2-15 Q0 MARCO_27_1105973472-4 51 -0.216483 hybrid +139_2-15 Q0 MARCO_41_291703845-5 52 -0.217159 hybrid +139_2-15 Q0 MARCO_41_291703845-3 53 -0.217898 hybrid +139_2-15 Q0 MARCO_41_291703845-4 54 -0.217980 hybrid +139_2-15 Q0 MARCO_38_1493960108-3 55 -0.225192 hybrid +139_2-15 Q0 MARCO_31_644943902-1 56 -0.235720 hybrid +139_2-15 Q0 MARCO_29_1213003697-12 57 -0.238977 hybrid +139_2-15 Q0 MARCO_50_2500659909-19 58 -0.242514 hybrid +139_2-15 Q0 MARCO_10_80732500-7 59 -0.244615 hybrid +139_2-15 Q0 MARCO_44_35321293-7 60 -0.249493 hybrid +139_2-15 Q0 MARCO_04_226143120-4 61 -0.250000 hybrid +139_2-15 Q0 MARCO_30_1004336912-6 62 -0.265910 hybrid +139_2-15 Q0 MARCO_35_1140896639-5 63 -0.271374 hybrid +139_2-15 Q0 MARCO_20_1690800266-3 64 -0.283220 hybrid +139_2-15 Q0 MARCO_30_1004298367-7 65 -0.286829 hybrid +139_2-15 Q0 MARCO_30_1004033801-4 66 -0.289945 hybrid +139_2-15 Q0 MARCO_59_603880583-1 67 -0.291709 hybrid +139_2-15 Q0 MARCO_05_812566090-15 68 -0.301026 hybrid +139_2-15 Q0 MARCO_07_1115987161-2 69 -0.311431 hybrid +139_2-15 Q0 MARCO_15_134275260-1 70 -0.312748 hybrid +139_2-15 Q0 MARCO_41_1116835327-21 71 -0.323215 hybrid +139_2-15 Q0 KILT_43678518-2 72 -0.323749 hybrid +139_2-15 Q0 MARCO_45_1436893275-2 73 -0.326336 hybrid +139_2-15 Q0 MARCO_23_1830774907-5 74 -0.328985 hybrid +139_2-15 Q0 KILT_1195166-19 75 -0.330601 hybrid +139_2-15 Q0 MARCO_41_291717801-1 76 -0.331462 hybrid +139_2-15 Q0 MARCO_22_1583169163-6 77 -0.337336 hybrid +139_2-15 Q0 MARCO_20_1116057043-6 78 -0.345769 hybrid +139_2-15 Q0 MARCO_29_1203090286-8 79 -0.348401 hybrid +139_2-15 Q0 MARCO_06_1084360090-147 80 -0.348774 hybrid +139_2-15 Q0 MARCO_11_267211801-58 81 -0.351730 hybrid +139_2-15 Q0 MARCO_29_1213003697-16 82 -0.357244 hybrid +139_2-15 Q0 MARCO_19_2045838605-10 83 -0.360008 hybrid +139_2-15 Q0 MARCO_29_1419134113-4 84 -0.360157 hybrid +139_2-15 Q0 MARCO_41_291703845-1 85 -0.360248 hybrid +139_2-15 Q0 MARCO_29_1213003697-14 86 -0.361969 hybrid +139_2-15 Q0 MARCO_55_252307447-2 87 -0.364705 hybrid +139_2-15 Q0 MARCO_15_134149668-1 88 -0.367129 hybrid +139_2-15 Q0 MARCO_50_636768984-4 89 -0.367320 hybrid +139_2-15 Q0 MARCO_59_603880583-4 90 -0.367618 hybrid +139_2-15 Q0 MARCO_22_1583169163-7 91 -0.371185 hybrid +139_2-15 Q0 MARCO_15_133864085-11 92 -0.375910 hybrid +139_2-15 Q0 MARCO_15_131918859-1 93 -0.376574 hybrid +139_2-15 Q0 MARCO_44_1689960116-17 94 -0.377579 hybrid +139_2-15 Q0 MARCO_30_151772794-2 95 -0.382938 hybrid +139_2-15 Q0 MARCO_56_1875212486-4 96 -0.383103 hybrid +139_2-15 Q0 MARCO_55_253248333-3 97 -0.383493 hybrid +139_2-15 Q0 MARCO_24_1015058943-7 98 -0.384795 hybrid +139_2-15 Q0 MARCO_14_335992199-3 99 -0.386413 hybrid +139_2-15 Q0 MARCO_20_1636520521-1 100 -0.387526 hybrid +139_2-17 Q0 MARCO_55_248101630-14 1 0.372536 hybrid +139_2-17 Q0 MARCO_20_1605863250-2 2 0.249998 hybrid +139_2-17 Q0 MARCO_03_1672793416-4 3 0.216502 hybrid +139_2-17 Q0 MARCO_34_1720678160-8 4 0.214108 hybrid +139_2-17 Q0 MARCO_50_927157772-10 5 0.198262 hybrid +139_2-17 Q0 MARCO_20_1605863250-3 6 0.175761 hybrid +139_2-17 Q0 MARCO_21_1441777873-2 7 0.125502 hybrid +139_2-17 Q0 MARCO_47_1588867018-1 8 0.125479 hybrid +139_2-17 Q0 MARCO_27_1333781267-8 9 0.066761 hybrid +139_2-17 Q0 MARCO_00_800359058-1 10 0.063212 hybrid +139_2-17 Q0 MARCO_42_1365055656-5 11 0.042785 hybrid +139_2-17 Q0 MARCO_20_1606288135-1 12 0.038176 hybrid +139_2-17 Q0 MARCO_00_800389515-1 13 0.015632 hybrid +139_2-17 Q0 MARCO_02_1546030744-3 14 0.008304 hybrid +139_2-17 Q0 MARCO_02_1546030744-1 15 0.007157 hybrid +139_2-17 Q0 MARCO_20_17205373-8 16 0.000519 hybrid +139_2-17 Q0 MARCO_38_522517305-2 17 -0.000469 hybrid +139_2-17 Q0 MARCO_06_1061559786-4 18 -0.000620 hybrid +139_2-17 Q0 MARCO_24_1139334213-9 19 -0.022141 hybrid +139_2-17 Q0 MARCO_58_1504956994-1 20 -0.033727 hybrid +139_2-17 Q0 MARCO_20_1118084501-3 21 -0.043146 hybrid +139_2-17 Q0 MARCO_20_1118084501-1 22 -0.046194 hybrid +139_2-17 Q0 MARCO_47_1588560149-4 23 -0.048855 hybrid +139_2-17 Q0 MARCO_01_1542381894-9 24 -0.048984 hybrid +139_2-17 Q0 MARCO_38_1499716167-2 25 -0.050873 hybrid +139_2-17 Q0 MARCO_38_522517305-5 26 -0.050882 hybrid +139_2-17 Q0 MARCO_00_800359058-2 27 -0.050985 hybrid +139_2-17 Q0 MARCO_10_99721631-2 28 -0.052365 hybrid +139_2-17 Q0 MARCO_10_234067446-15 29 -0.055349 hybrid +139_2-17 Q0 MARCO_47_1588560149-1 30 -0.055875 hybrid +139_2-17 Q0 MARCO_02_1541391721-4 31 -0.057056 hybrid +139_2-17 Q0 MARCO_12_1448670747-7 32 -0.071704 hybrid +139_2-17 Q0 MARCO_06_1089492850-58 33 -0.079462 hybrid +139_2-17 Q0 MARCO_21_1441777873-3 34 -0.079863 hybrid +139_2-17 Q0 MARCO_20_1606158803-1 35 -0.084610 hybrid +139_2-17 Q0 MARCO_20_1606065216-1 36 -0.087405 hybrid +139_2-17 Q0 MARCO_00_800411757-4 37 -0.089449 hybrid +139_2-17 Q0 MARCO_52_598638637-3 38 -0.090639 hybrid +139_2-17 Q0 MARCO_06_1089492850-62 39 -0.094679 hybrid +139_2-17 Q0 MARCO_38_522616054-3 40 -0.096860 hybrid +139_2-17 Q0 MARCO_06_1061559786-220 41 -0.101596 hybrid +139_2-17 Q0 MARCO_22_506709161-2 42 -0.110905 hybrid +139_2-17 Q0 MARCO_21_1441777873-5 43 -0.111992 hybrid +139_2-17 Q0 MARCO_30_1046698867-2 44 -0.118753 hybrid +139_2-17 Q0 MARCO_20_1605863250-1 45 -0.121479 hybrid +139_2-17 Q0 MARCO_48_1155543495-1 46 -0.123496 hybrid +139_2-17 Q0 MARCO_20_1118084501-6 47 -0.124974 hybrid +139_2-17 Q0 MARCO_42_1365055656-2 48 -0.127020 hybrid +139_2-17 Q0 MARCO_20_1605764720-3 49 -0.129848 hybrid +139_2-17 Q0 MARCO_03_1672793416-1 50 -0.135187 hybrid +139_2-17 Q0 MARCO_03_440557034-3 51 -0.138938 hybrid +139_2-17 Q0 MARCO_06_1177322031-249 52 -0.150468 hybrid +139_2-17 Q0 MARCO_58_1509985667-1 53 -0.154539 hybrid +139_2-17 Q0 MARCO_03_1615114603-3 54 -0.155660 hybrid +139_2-17 Q0 MARCO_20_1117949437-1 55 -0.159895 hybrid +139_2-17 Q0 MARCO_16_2977700818-5 56 -0.161840 hybrid +139_2-17 Q0 MARCO_05_811770907-3 57 -0.166255 hybrid +139_2-17 Q0 MARCO_00_800411757-1 58 -0.168364 hybrid +139_2-17 Q0 MARCO_02_1546030744-5 59 -0.175826 hybrid +139_2-17 Q0 MARCO_33_269468433-4 60 -0.176160 hybrid +139_2-17 Q0 MARCO_03_1475429148-2 61 -0.178937 hybrid +139_2-17 Q0 MARCO_20_1605842545-2 62 -0.183154 hybrid +139_2-17 Q0 MARCO_55_1709550013-7 63 -0.187005 hybrid +139_2-17 Q0 MARCO_12_1448670747-6 64 -0.187816 hybrid +139_2-17 Q0 MARCO_30_1046698867-1 65 -0.189244 hybrid +139_2-17 Q0 MARCO_30_1005913594-2 66 -0.195047 hybrid +139_2-17 Q0 MARCO_25_1438100120-6 67 -0.196884 hybrid +139_2-17 Q0 MARCO_11_759107555-10 68 -0.197522 hybrid +139_2-17 Q0 MARCO_06_1061559786-5 69 -0.198466 hybrid +139_2-17 Q0 MARCO_03_1696313556-1 70 -0.202287 hybrid +139_2-17 Q0 MARCO_00_800379615-8 71 -0.205969 hybrid +139_2-17 Q0 MARCO_01_695684696-4 72 -0.208557 hybrid +139_2-17 Q0 MARCO_38_1499591957-12 73 -0.208790 hybrid +139_2-17 Q0 MARCO_20_1605778030-1 74 -0.210113 hybrid +139_2-17 Q0 MARCO_06_1295496154-26 75 -0.211071 hybrid +139_2-17 Q0 MARCO_47_1588867018-2 76 -0.211303 hybrid +139_2-17 Q0 MARCO_57_1435347084-7 77 -0.215452 hybrid +139_2-17 Q0 MARCO_57_1435347084-9 78 -0.215452 hybrid +139_2-17 Q0 MARCO_10_1552317412-2 79 -0.215814 hybrid +139_2-17 Q0 MARCO_57_1435357985-10 80 -0.218319 hybrid +139_2-17 Q0 MARCO_20_1606236294-7 81 -0.219746 hybrid +139_2-17 Q0 MARCO_03_1672793416-3 82 -0.221066 hybrid +139_2-17 Q0 MARCO_02_1541391721-7 83 -0.223291 hybrid +139_2-17 Q0 MARCO_20_1606158803-2 84 -0.223705 hybrid +139_2-17 Q0 MARCO_03_1218353262-4 85 -0.223981 hybrid +139_2-17 Q0 MARCO_06_1089492850-155 86 -0.226443 hybrid +139_2-17 Q0 MARCO_01_1542381894-8 87 -0.228586 hybrid +139_2-17 Q0 MARCO_20_1109189048-6 88 -0.229173 hybrid +139_2-17 Q0 MARCO_25_1438100120-1 89 -0.231506 hybrid +139_2-17 Q0 MARCO_28_414927379-3 90 -0.232523 hybrid +139_2-17 Q0 MARCO_32_517723958-5 91 -0.233239 hybrid +139_2-17 Q0 MARCO_37_1216003923-5 92 -0.235416 hybrid +139_2-17 Q0 MARCO_56_813580445-5 93 -0.235882 hybrid +139_2-17 Q0 MARCO_24_1411729717-5 94 -0.237029 hybrid +139_2-17 Q0 MARCO_02_452339507-27 95 -0.237495 hybrid +139_2-17 Q0 MARCO_13_737836018-4 96 -0.240190 hybrid +139_2-17 Q0 MARCO_39_672205264-21 97 -0.241479 hybrid +139_2-17 Q0 MARCO_20_1606212630-1 98 -0.247434 hybrid +139_2-17 Q0 MARCO_57_1435347084-10 99 -0.247482 hybrid +139_2-17 Q0 MARCO_38_522517305-7 100 -0.248133 hybrid +139_2-19 Q0 MARCO_43_777882589-10 1 0.250000 hybrid +139_2-19 Q0 MARCO_06_1616915949-3 2 0.225248 hybrid +139_2-19 Q0 KILT_1661158-6 3 0.206285 hybrid +139_2-19 Q0 MARCO_06_1616813287-26 4 0.147530 hybrid +139_2-19 Q0 MARCO_17_1745780583-9 5 0.119595 hybrid +139_2-19 Q0 MARCO_18_461374169-9 6 0.106652 hybrid +139_2-19 Q0 KILT_16205018-8 7 0.034871 hybrid +139_2-19 Q0 MARCO_17_351829036-17 8 0.019950 hybrid +139_2-19 Q0 MARCO_15_1844440335-13 9 0.015956 hybrid +139_2-19 Q0 MARCO_35_20837600-5 10 0.006280 hybrid +139_2-19 Q0 KILT_3021133-2 11 -0.005052 hybrid +139_2-19 Q0 MARCO_11_757966359-3 12 -0.006525 hybrid +139_2-19 Q0 MARCO_21_1393994110-2 13 -0.009499 hybrid +139_2-19 Q0 MARCO_21_1386201033-1 14 -0.015132 hybrid +139_2-19 Q0 KILT_3919625-6 15 -0.020033 hybrid +139_2-19 Q0 MARCO_29_662582548-3 16 -0.020207 hybrid +139_2-19 Q0 MARCO_10_127299484-35 17 -0.025846 hybrid +139_2-19 Q0 MARCO_39_602834599-24 18 -0.037172 hybrid +139_2-19 Q0 MARCO_48_373355835-4 19 -0.038919 hybrid +139_2-19 Q0 KILT_36480039-3 20 -0.050108 hybrid +139_2-19 Q0 MARCO_16_1655418715-5 21 -0.052427 hybrid +139_2-19 Q0 MARCO_06_1261488820-222 22 -0.056338 hybrid +139_2-19 Q0 MARCO_52_1380512475-15 23 -0.069161 hybrid +139_2-19 Q0 KILT_2436129-7 24 -0.078079 hybrid +139_2-19 Q0 MARCO_18_3244529140-23 25 -0.085722 hybrid +139_2-19 Q0 MARCO_17_3109358644-17 26 -0.102493 hybrid +139_2-19 Q0 MARCO_16_1715727283-4 27 -0.102676 hybrid +139_2-19 Q0 MARCO_22_833981189-5 28 -0.103678 hybrid +139_2-19 Q0 MARCO_15_1844440335-4 29 -0.112518 hybrid +139_2-19 Q0 MARCO_50_1451349787-2 30 -0.129306 hybrid +139_2-19 Q0 MARCO_39_609022944-9 31 -0.131875 hybrid +139_2-19 Q0 KILT_2111232-2 32 -0.138307 hybrid +139_2-19 Q0 MARCO_16_3042791707-2 33 -0.146558 hybrid +139_2-19 Q0 KILT_16205018-3 34 -0.150266 hybrid +139_2-19 Q0 MARCO_18_461469975-10 35 -0.157431 hybrid +139_2-19 Q0 KILT_4488360-5 36 -0.157813 hybrid +139_2-19 Q0 MARCO_48_373355835-3 37 -0.158892 hybrid +139_2-19 Q0 MARCO_16_3042631360-1 38 -0.171399 hybrid +139_2-19 Q0 KILT_3389161-51 39 -0.179530 hybrid +139_2-19 Q0 MARCO_16_2860520634-2 40 -0.180562 hybrid +139_2-19 Q0 MARCO_17_2502230988-2 41 -0.181456 hybrid +139_2-19 Q0 KILT_39841829-2 42 -0.181468 hybrid +139_2-19 Q0 MARCO_19_1393617347-1 43 -0.192229 hybrid +139_2-19 Q0 MARCO_10_125884503-5 44 -0.193713 hybrid +139_2-19 Q0 MARCO_18_461469975-8 45 -0.198649 hybrid +139_2-19 Q0 MARCO_39_609022944-26 46 -0.198988 hybrid +139_2-19 Q0 MARCO_06_1222523195-36 47 -0.211990 hybrid +139_2-19 Q0 MARCO_38_588898472-11 48 -0.212235 hybrid +139_2-19 Q0 KILT_3684625-17 49 -0.214005 hybrid +139_2-19 Q0 MARCO_59_294314446-3 50 -0.218572 hybrid +139_2-19 Q0 MARCO_12_458195538-2 51 -0.223311 hybrid +139_2-19 Q0 MARCO_00_767771741-15 52 -0.225475 hybrid +139_2-19 Q0 MARCO_12_458195538-5 53 -0.225511 hybrid +139_2-19 Q0 KILT_991577-9 54 -0.237088 hybrid +139_2-19 Q0 MARCO_17_1745428315-23 55 -0.240331 hybrid +139_2-19 Q0 MARCO_10_125884503-4 56 -0.240515 hybrid +139_2-19 Q0 MARCO_38_588898472-12 57 -0.241463 hybrid +139_2-19 Q0 KILT_35952999-16 58 -0.246071 hybrid +139_2-19 Q0 MARCO_13_1225521447-6 59 -0.248933 hybrid +139_2-19 Q0 KILT_58206186-2 60 -0.250000 hybrid +139_2-19 Q0 KILT_3919625-3 61 -0.255794 hybrid +139_2-19 Q0 MARCO_41_1944972544-7 62 -0.257869 hybrid +139_2-19 Q0 KILT_3684625-18 63 -0.258459 hybrid +139_2-19 Q0 KILT_10301109-8 64 -0.260122 hybrid +139_2-19 Q0 MARCO_17_1745780583-10 65 -0.260403 hybrid +139_2-19 Q0 MARCO_17_2502230988-16 66 -0.261541 hybrid +139_2-19 Q0 MARCO_30_92573188-9 67 -0.264997 hybrid +139_2-19 Q0 KILT_2810118-8 68 -0.270102 hybrid +139_2-19 Q0 MARCO_06_1261488820-76 69 -0.272123 hybrid +139_2-19 Q0 MARCO_39_607306895-25 70 -0.273816 hybrid +139_2-19 Q0 MARCO_20_1115968476-10 71 -0.274001 hybrid +139_2-19 Q0 MARCO_12_458195538-7 72 -0.279473 hybrid +139_2-19 Q0 KILT_8137350-4 73 -0.284773 hybrid +139_2-19 Q0 MARCO_06_1104148657-478 74 -0.285947 hybrid +139_2-19 Q0 MARCO_17_2502230988-9 75 -0.287294 hybrid +139_2-19 Q0 KILT_3919625-4 76 -0.288099 hybrid +139_2-19 Q0 MARCO_21_1393994110-4 77 -0.291646 hybrid +139_2-19 Q0 KILT_44716370-2 78 -0.292481 hybrid +139_2-19 Q0 MARCO_54_1522279287-3 79 -0.293643 hybrid +139_2-19 Q0 MARCO_01_1693384867-2 80 -0.293983 hybrid +139_2-19 Q0 MARCO_16_1110424479-10 81 -0.295420 hybrid +139_2-19 Q0 MARCO_27_1751531703-3 82 -0.295813 hybrid +139_2-19 Q0 MARCO_05_424891530-20 83 -0.296010 hybrid +139_2-19 Q0 MARCO_05_965907775-1 84 -0.296940 hybrid +139_2-19 Q0 KILT_16205018-2 85 -0.299241 hybrid +139_2-19 Q0 MARCO_54_1522279287-4 86 -0.303819 hybrid +139_2-19 Q0 MARCO_00_767771741-20 87 -0.305071 hybrid +139_2-19 Q0 MARCO_06_1267389422-147 88 -0.306442 hybrid +139_2-19 Q0 KILT_36250587-6 89 -0.307474 hybrid +139_2-19 Q0 KILT_17727750-2 90 -0.311390 hybrid +139_2-19 Q0 KILT_68640-24 91 -0.312583 hybrid +139_2-19 Q0 MARCO_18_461469975-5 92 -0.315915 hybrid +139_2-19 Q0 KILT_7506737-3 93 -0.317435 hybrid +139_2-19 Q0 MARCO_05_1883058231-258 94 -0.319679 hybrid +139_2-19 Q0 MARCO_52_1381573969-2 95 -0.320362 hybrid +139_2-19 Q0 MARCO_17_1745428315-24 96 -0.321108 hybrid +139_2-19 Q0 MARCO_06_1267389422-138 97 -0.322377 hybrid +139_2-19 Q0 MARCO_06_1314652620-300 98 -0.324184 hybrid +139_2-19 Q0 MARCO_44_1487706247-3 99 -0.325692 hybrid +139_2-19 Q0 MARCO_21_1393994110-8 100 -0.325948 hybrid +139_2-3 Q0 MARCO_29_1213003697-15 1 0.270300 hybrid +139_2-3 Q0 MARCO_29_1213003697-14 2 0.033301 hybrid +139_2-3 Q0 MARCO_05_811761166-1 3 -0.007162 hybrid +139_2-3 Q0 MARCO_05_812510161-16 4 -0.069779 hybrid +139_2-3 Q0 MARCO_45_1436893275-2 5 -0.093494 hybrid +139_2-3 Q0 MARCO_31_1319602620-1 6 -0.098201 hybrid +139_2-3 Q0 MARCO_47_921555391-19 7 -0.136777 hybrid +139_2-3 Q0 MARCO_29_1213003697-13 8 -0.149747 hybrid +139_2-3 Q0 MARCO_55_1708077747-1 9 -0.207648 hybrid +139_2-3 Q0 MARCO_42_1361250839-1 10 -0.212933 hybrid +139_2-3 Q0 MARCO_10_790302336-6 11 -0.219921 hybrid +139_2-3 Q0 MARCO_55_248699225-1 12 -0.222603 hybrid +139_2-3 Q0 KILT_2071938-1 13 -0.223103 hybrid +139_2-3 Q0 MARCO_55_985944679-1 14 -0.250000 hybrid +139_2-3 Q0 MARCO_50_2502286195-117 15 -0.255691 hybrid +139_2-3 Q0 MARCO_31_634624646-4 16 -0.275004 hybrid +139_2-3 Q0 MARCO_41_1271021522-6 17 -0.287392 hybrid +139_2-3 Q0 MARCO_41_1566695089-90 18 -0.295956 hybrid +139_2-3 Q0 MARCO_50_2819154406-1 19 -0.306194 hybrid +139_2-3 Q0 MARCO_03_442514811-4 20 -0.309199 hybrid +139_2-3 Q0 MARCO_34_1555173315-3 21 -0.310088 hybrid +139_2-3 Q0 MARCO_29_1213003697-16 22 -0.317780 hybrid +139_2-3 Q0 MARCO_03_583240442-12 23 -0.328050 hybrid +139_2-3 Q0 MARCO_50_898665724-22 24 -0.329524 hybrid +139_2-3 Q0 MARCO_05_1353648283-1 25 -0.330941 hybrid +139_2-3 Q0 MARCO_41_1182651126-35 26 -0.344872 hybrid +139_2-3 Q0 MARCO_24_1015058943-7 27 -0.347515 hybrid +139_2-3 Q0 MARCO_58_1588611162-2 28 -0.350515 hybrid +139_2-3 Q0 KILT_42725077-4 29 -0.350728 hybrid +139_2-3 Q0 MARCO_41_1128842538-2 30 -0.352500 hybrid +139_2-3 Q0 MARCO_50_1831648722-63 31 -0.355040 hybrid +139_2-3 Q0 MARCO_23_647701103-3 32 -0.355304 hybrid +139_2-3 Q0 MARCO_30_91898173-1 33 -0.356191 hybrid +139_2-3 Q0 MARCO_30_92489099-1 34 -0.356769 hybrid +139_2-3 Q0 MARCO_56_69977451-9 35 -0.357154 hybrid +139_2-3 Q0 MARCO_39_789911526-4 36 -0.357683 hybrid +139_2-3 Q0 MARCO_47_127733848-1 37 -0.362282 hybrid +139_2-3 Q0 MARCO_45_1436872912-1 38 -0.367680 hybrid +139_2-3 Q0 MARCO_55_229044321-10 39 -0.368026 hybrid +139_2-3 Q0 KILT_49921015-2 40 -0.368639 hybrid +139_2-3 Q0 MARCO_35_1140876542-4 41 -0.370327 hybrid +139_2-3 Q0 MARCO_10_1411108473-1 42 -0.371004 hybrid +139_2-3 Q0 MARCO_01_1766675132-1 43 -0.372273 hybrid +139_2-3 Q0 MARCO_09_690104171-7 44 -0.374423 hybrid +139_2-3 Q0 MARCO_30_1646317998-1 45 -0.374987 hybrid +139_2-3 Q0 MARCO_25_216322554-1 46 -0.375427 hybrid +139_2-3 Q0 MARCO_49_221963583-2 47 -0.380462 hybrid +139_2-3 Q0 MARCO_24_807844416-14 48 -0.381269 hybrid +139_2-3 Q0 KILT_48621266-1 49 -0.384341 hybrid +139_2-3 Q0 MARCO_41_1943381249-2 50 -0.384837 hybrid +139_2-3 Q0 MARCO_00_1583631650-1 51 -0.387238 hybrid +139_2-3 Q0 MARCO_00_545007325-7 52 -0.388907 hybrid +139_2-3 Q0 MARCO_30_1087879020-45 53 -0.394352 hybrid +139_2-3 Q0 MARCO_25_1430899678-3 54 -0.398414 hybrid +139_2-3 Q0 MARCO_35_1141061275-16 55 -0.399530 hybrid +139_2-3 Q0 MARCO_58_1586390400-4 56 -0.400268 hybrid +139_2-3 Q0 MARCO_06_1118768745-52 57 -0.400487 hybrid +139_2-3 Q0 MARCO_54_1856020519-1 58 -0.405778 hybrid +139_2-3 Q0 MARCO_08_1257598126-1 59 -0.406176 hybrid +139_2-3 Q0 MARCO_24_1015058943-6 60 -0.414357 hybrid +139_2-3 Q0 MARCO_33_1130469866-2 61 -0.419128 hybrid +139_2-3 Q0 MARCO_19_977014903-12 62 -0.420161 hybrid +139_2-3 Q0 MARCO_23_1137488780-4 63 -0.420520 hybrid +139_2-3 Q0 MARCO_07_794950389-1 64 -0.422617 hybrid +139_2-3 Q0 MARCO_42_1361250839-10 65 -0.422692 hybrid +139_2-3 Q0 MARCO_30_1083631665-8 66 -0.424805 hybrid +139_2-3 Q0 MARCO_58_1144692611-14 67 -0.426687 hybrid +139_2-3 Q0 MARCO_05_811761166-4 68 -0.430412 hybrid +139_2-3 Q0 MARCO_07_726147938-112 69 -0.433330 hybrid +139_2-3 Q0 KILT_18294021-1 70 -0.436613 hybrid +139_2-3 Q0 MARCO_33_100289532-12 71 -0.436855 hybrid +139_2-3 Q0 MARCO_12_1442123866-10 72 -0.439656 hybrid +139_2-3 Q0 MARCO_30_1985156903-7 73 -0.440590 hybrid +139_2-3 Q0 MARCO_12_1568718437-4 74 -0.443938 hybrid +139_2-3 Q0 MARCO_34_891588041-1 75 -0.446964 hybrid +139_2-3 Q0 MARCO_04_185938976-3 76 -0.447573 hybrid +139_2-3 Q0 MARCO_58_1144340942-22 77 -0.449665 hybrid +139_2-3 Q0 MARCO_50_1703427006-13 78 -0.450863 hybrid +139_2-3 Q0 MARCO_41_1011990460-14 79 -0.451198 hybrid +139_2-3 Q0 MARCO_41_1692386068-2 80 -0.451938 hybrid +139_2-3 Q0 MARCO_58_1099930275-3 81 -0.452044 hybrid +139_2-3 Q0 MARCO_53_567871083-7 82 -0.452299 hybrid +139_2-3 Q0 MARCO_06_1067718722-448 83 -0.452546 hybrid +139_2-3 Q0 MARCO_08_1122245524-1 84 -0.454749 hybrid +139_2-3 Q0 MARCO_24_807844416-9 85 -0.456083 hybrid +139_2-3 Q0 MARCO_07_1590509091-1 86 -0.456978 hybrid +139_2-3 Q0 MARCO_56_1875212486-4 87 -0.457542 hybrid +139_2-3 Q0 MARCO_30_366584652-1 88 -0.464855 hybrid +139_2-3 Q0 MARCO_08_886180613-10 89 -0.471032 hybrid +139_2-3 Q0 MARCO_20_1692219283-1 90 -0.471408 hybrid +139_2-3 Q0 MARCO_04_823630524-6 91 -0.471570 hybrid +139_2-3 Q0 MARCO_06_1048856047-2 92 -0.473214 hybrid +139_2-3 Q0 MARCO_38_1703243778-30 93 -0.474247 hybrid +139_2-3 Q0 MARCO_42_1376021116-7 94 -0.474714 hybrid +139_2-3 Q0 MARCO_14_402261671-3 95 -0.476996 hybrid +139_2-3 Q0 MARCO_46_177117764-1 96 -0.478035 hybrid +139_2-3 Q0 MARCO_40_175634242-12 97 -0.478283 hybrid +139_2-3 Q0 MARCO_06_998760815-13 98 -0.478458 hybrid +139_2-3 Q0 MARCO_30_593906514-3 99 -0.478899 hybrid +139_2-3 Q0 MARCO_55_1708070924-1 100 -0.478996 hybrid +139_2-5 Q0 MARCO_00_625037583-14 1 0.544130 hybrid +139_2-5 Q0 MARCO_21_1394706798-5 2 0.372582 hybrid +139_2-5 Q0 MARCO_00_625037583-10 3 0.326483 hybrid +139_2-5 Q0 MARCO_23_1083697909-9 4 0.250002 hybrid +139_2-5 Q0 MARCO_59_1031719785-37 5 0.241478 hybrid +139_2-5 Q0 MARCO_36_1006722039-8 6 0.210889 hybrid +139_2-5 Q0 MARCO_00_625037583-13 7 0.170450 hybrid +139_2-5 Q0 MARCO_00_625037583-2 8 0.154761 hybrid +139_2-5 Q0 MARCO_19_2046601719-7 9 0.153758 hybrid +139_2-5 Q0 MARCO_21_1387590590-4 10 0.144765 hybrid +139_2-5 Q0 MARCO_00_625037583-5 11 0.142773 hybrid +139_2-5 Q0 MARCO_50_1988414295-3 12 0.108368 hybrid +139_2-5 Q0 KILT_34476548-54 13 0.107999 hybrid +139_2-5 Q0 MARCO_50_2141242685-31 14 0.101316 hybrid +139_2-5 Q0 MARCO_28_424276497-4 15 0.081880 hybrid +139_2-5 Q0 MARCO_23_1083697909-1 16 0.079129 hybrid +139_2-5 Q0 MARCO_59_1031719785-36 17 0.075093 hybrid +139_2-5 Q0 MARCO_28_413735177-359 18 0.073605 hybrid +139_2-5 Q0 MARCO_36_1006722039-10 19 0.067074 hybrid +139_2-5 Q0 MARCO_00_625037583-12 20 0.065318 hybrid +139_2-5 Q0 MARCO_00_625037583-8 21 0.063987 hybrid +139_2-5 Q0 MARCO_50_2141242685-9 22 0.063138 hybrid +139_2-5 Q0 MARCO_00_625037583-16 23 0.060351 hybrid +139_2-5 Q0 MARCO_19_2046601719-2 24 0.049386 hybrid +139_2-5 Q0 KILT_31143292-12 25 0.046923 hybrid +139_2-5 Q0 MARCO_50_2141242685-7 26 0.041868 hybrid +139_2-5 Q0 MARCO_50_1988414295-1 27 0.041097 hybrid +139_2-5 Q0 MARCO_42_1360846126-3 28 0.040129 hybrid +139_2-5 Q0 MARCO_00_625037583-7 29 0.033949 hybrid +139_2-5 Q0 MARCO_00_625037583-18 30 0.033732 hybrid +139_2-5 Q0 MARCO_42_1360846126-6 31 0.032941 hybrid +139_2-5 Q0 MARCO_00_625037583-6 32 0.030035 hybrid +139_2-5 Q0 MARCO_00_625037583-3 33 0.017573 hybrid +139_2-5 Q0 MARCO_39_1572411714-12 34 0.011017 hybrid +139_2-5 Q0 MARCO_47_292093638-3 35 -0.010228 hybrid +139_2-5 Q0 MARCO_28_413735177-360 36 -0.017422 hybrid +139_2-5 Q0 KILT_34476548-1 37 -0.027644 hybrid +139_2-5 Q0 MARCO_06_1610069920-1 38 -0.029778 hybrid +139_2-5 Q0 MARCO_50_2141242685-30 39 -0.036449 hybrid +139_2-5 Q0 MARCO_50_2141242685-11 40 -0.037767 hybrid +139_2-5 Q0 MARCO_39_1572411714-11 41 -0.043544 hybrid +139_2-5 Q0 MARCO_20_1691433948-15 42 -0.046503 hybrid +139_2-5 Q0 MARCO_50_2141242685-39 43 -0.053353 hybrid +139_2-5 Q0 MARCO_19_2046601719-1 44 -0.064191 hybrid +139_2-5 Q0 MARCO_50_2141242685-36 45 -0.064959 hybrid +139_2-5 Q0 MARCO_00_625037583-9 46 -0.069397 hybrid +139_2-5 Q0 MARCO_30_92395788-11 47 -0.069741 hybrid +139_2-5 Q0 MARCO_06_206237590-1 48 -0.071170 hybrid +139_2-5 Q0 KILT_3243119-4 49 -0.073856 hybrid +139_2-5 Q0 MARCO_50_1988414295-4 50 -0.075093 hybrid +139_2-5 Q0 MARCO_50_2141242685-37 51 -0.084932 hybrid +139_2-5 Q0 MARCO_50_2141242685-38 52 -0.087476 hybrid +139_2-5 Q0 MARCO_41_1106549820-42 53 -0.089503 hybrid +139_2-5 Q0 MARCO_50_2141242685-32 54 -0.092474 hybrid +139_2-5 Q0 KILT_3243119-1 55 -0.104880 hybrid +139_2-5 Q0 MARCO_23_1083697909-10 56 -0.107976 hybrid +139_2-5 Q0 MARCO_21_1394706798-2 57 -0.108722 hybrid +139_2-5 Q0 MARCO_19_2046601719-3 58 -0.112118 hybrid +139_2-5 Q0 MARCO_42_1376021116-6 59 -0.113615 hybrid +139_2-5 Q0 MARCO_19_2045932910-9 60 -0.117785 hybrid +139_2-5 Q0 MARCO_50_2141242685-34 61 -0.118116 hybrid +139_2-5 Q0 MARCO_56_1469799650-1 62 -0.120506 hybrid +139_2-5 Q0 KILT_34476548-52 63 -0.121306 hybrid +139_2-5 Q0 MARCO_30_92494994-7 64 -0.126320 hybrid +139_2-5 Q0 MARCO_00_625037583-17 65 -0.126722 hybrid +139_2-5 Q0 MARCO_30_1004128211-3 66 -0.127298 hybrid +139_2-5 Q0 MARCO_48_1381587833-7 67 -0.127559 hybrid +139_2-5 Q0 KILT_34476548-53 68 -0.133684 hybrid +139_2-5 Q0 MARCO_39_657018618-11 69 -0.133721 hybrid +139_2-5 Q0 MARCO_48_1563495074-8 70 -0.142688 hybrid +139_2-5 Q0 MARCO_36_1006722039-3 71 -0.144031 hybrid +139_2-5 Q0 MARCO_00_625037583-11 72 -0.148999 hybrid +139_2-5 Q0 MARCO_56_1469799650-3 73 -0.158103 hybrid +139_2-5 Q0 MARCO_28_412175224-11 74 -0.160323 hybrid +139_2-5 Q0 KILT_11953685-6 75 -0.162404 hybrid +139_2-5 Q0 MARCO_19_2056386164-7 76 -0.167713 hybrid +139_2-5 Q0 MARCO_28_424276497-2 77 -0.169834 hybrid +139_2-5 Q0 MARCO_36_1006722039-5 78 -0.169946 hybrid +139_2-5 Q0 KILT_10191060-1 79 -0.179593 hybrid +139_2-5 Q0 MARCO_25_1032864974-3 80 -0.182543 hybrid +139_2-5 Q0 MARCO_19_2511462250-32 81 -0.183699 hybrid +139_2-5 Q0 MARCO_19_2508822376-36 82 -0.183699 hybrid +139_2-5 Q0 MARCO_00_763890424-1 83 -0.186926 hybrid +139_2-5 Q0 MARCO_43_777882589-2 84 -0.187595 hybrid +139_2-5 Q0 MARCO_29_1381025251-8 85 -0.196706 hybrid +139_2-5 Q0 MARCO_19_2046601719-5 86 -0.206896 hybrid +139_2-5 Q0 MARCO_29_1381025251-1 87 -0.218401 hybrid +139_2-5 Q0 KILT_43456-10 88 -0.225158 hybrid +139_2-5 Q0 MARCO_02_489907067-8 89 -0.227350 hybrid +139_2-5 Q0 MARCO_49_522078792-10 90 -0.229559 hybrid +139_2-5 Q0 MARCO_19_2046601719-6 91 -0.230346 hybrid +139_2-5 Q0 MARCO_23_1083697909-2 92 -0.230499 hybrid +139_2-5 Q0 MARCO_44_32366577-2 93 -0.231224 hybrid +139_2-5 Q0 KILT_1768422-1 94 -0.233756 hybrid +139_2-5 Q0 KILT_7774160-1 95 -0.238122 hybrid +139_2-5 Q0 MARCO_17_2901679750-20 96 -0.239210 hybrid +139_2-5 Q0 MARCO_42_1360846126-1 97 -0.240587 hybrid +139_2-5 Q0 MARCO_50_1988414295-2 98 -0.245748 hybrid +139_2-5 Q0 MARCO_00_625037583-15 99 -0.248616 hybrid +139_2-5 Q0 MARCO_26_1782352556-7 100 -0.251058 hybrid +139_2-7 Q0 MARCO_31_1319602620-4 1 0.606737 hybrid +139_2-7 Q0 MARCO_28_424276497-4 2 0.571047 hybrid +139_2-7 Q0 MARCO_39_1572411714-11 3 0.425814 hybrid +139_2-7 Q0 MARCO_54_548247608-2 4 0.363246 hybrid +139_2-7 Q0 MARCO_56_1469799650-2 5 0.328862 hybrid +139_2-7 Q0 MARCO_00_625037583-15 6 0.305060 hybrid +139_2-7 Q0 MARCO_56_1469799650-4 7 0.279814 hybrid +139_2-7 Q0 MARCO_55_1731089221-1 8 0.235292 hybrid +139_2-7 Q0 KILT_8636267-12 9 0.191878 hybrid +139_2-7 Q0 MARCO_28_413735177-359 10 0.176015 hybrid +139_2-7 Q0 KILT_34476548-50 11 0.164256 hybrid +139_2-7 Q0 MARCO_30_1047651255-4 12 0.148456 hybrid +139_2-7 Q0 MARCO_00_625037583-16 13 0.135141 hybrid +139_2-7 Q0 MARCO_00_625037583-14 14 0.135003 hybrid +139_2-7 Q0 MARCO_39_1572411714-12 15 0.115246 hybrid +139_2-7 Q0 MARCO_30_1004128211-3 16 0.113257 hybrid +139_2-7 Q0 MARCO_19_2045932910-9 17 0.107392 hybrid +139_2-7 Q0 MARCO_47_292093638-4 18 0.095329 hybrid +139_2-7 Q0 MARCO_50_2141242685-41 19 0.089936 hybrid +139_2-7 Q0 MARCO_19_2046601719-7 20 0.087388 hybrid +139_2-7 Q0 MARCO_51_1634012455-2 21 0.084809 hybrid +139_2-7 Q0 MARCO_03_1672798894-4 22 0.077908 hybrid +139_2-7 Q0 MARCO_03_583240442-12 23 0.073972 hybrid +139_2-7 Q0 MARCO_28_424276497-1 24 0.069147 hybrid +139_2-7 Q0 MARCO_50_1988414295-1 25 0.068133 hybrid +139_2-7 Q0 MARCO_19_2046601719-2 26 0.061714 hybrid +139_2-7 Q0 MARCO_19_2045932910-12 27 0.058596 hybrid +139_2-7 Q0 MARCO_00_625037583-13 28 0.058510 hybrid +139_2-7 Q0 MARCO_50_2141242685-36 29 0.055736 hybrid +139_2-7 Q0 MARCO_55_1730615337-6 30 0.055402 hybrid +139_2-7 Q0 MARCO_41_1199374521-41 31 0.049909 hybrid +139_2-7 Q0 MARCO_50_1986696809-17 32 0.045357 hybrid +139_2-7 Q0 MARCO_50_1602288132-8 33 0.030807 hybrid +139_2-7 Q0 MARCO_50_2141242685-9 34 0.030780 hybrid +139_2-7 Q0 MARCO_30_1047651255-5 35 0.029799 hybrid +139_2-7 Q0 MARCO_30_92494994-7 36 0.028878 hybrid +139_2-7 Q0 MARCO_55_1278800307-3 37 0.028396 hybrid +139_2-7 Q0 MARCO_47_292093638-3 38 0.028118 hybrid +139_2-7 Q0 MARCO_19_2046601719-10 39 0.025964 hybrid +139_2-7 Q0 MARCO_23_1083697909-2 40 0.021306 hybrid +139_2-7 Q0 MARCO_23_1083697909-1 41 0.020325 hybrid +139_2-7 Q0 MARCO_42_1360846126-6 42 0.019938 hybrid +139_2-7 Q0 MARCO_30_152717065-2 43 0.018863 hybrid +139_2-7 Q0 MARCO_39_1572411714-1 44 0.014233 hybrid +139_2-7 Q0 MARCO_50_2141242685-33 45 0.009025 hybrid +139_2-7 Q0 MARCO_55_251598823-1 46 -0.012818 hybrid +139_2-7 Q0 MARCO_19_2056386164-7 47 -0.017639 hybrid +139_2-7 Q0 MARCO_45_1437030427-2 48 -0.020596 hybrid +139_2-7 Q0 MARCO_00_625037583-10 49 -0.022799 hybrid +139_2-7 Q0 MARCO_19_2046601719-1 50 -0.023511 hybrid +139_2-7 Q0 KILT_7774160-2 51 -0.023860 hybrid +139_2-7 Q0 MARCO_59_1027615782-6 52 -0.037240 hybrid +139_2-7 Q0 MARCO_50_2141242685-38 53 -0.039185 hybrid +139_2-7 Q0 MARCO_23_1083697909-10 54 -0.039894 hybrid +139_2-7 Q0 MARCO_19_2046601719-6 55 -0.042683 hybrid +139_2-7 Q0 MARCO_50_2141242685-7 56 -0.042920 hybrid +139_2-7 Q0 MARCO_19_2046601719-3 57 -0.043954 hybrid +139_2-7 Q0 MARCO_50_2141242685-31 58 -0.044239 hybrid +139_2-7 Q0 MARCO_29_1381025251-1 59 -0.056615 hybrid +139_2-7 Q0 MARCO_30_151744481-6 60 -0.068236 hybrid +139_2-7 Q0 MARCO_28_424276497-2 61 -0.069661 hybrid +139_2-7 Q0 MARCO_23_1083697909-4 62 -0.070510 hybrid +139_2-7 Q0 MARCO_50_2141242685-34 63 -0.070742 hybrid +139_2-7 Q0 MARCO_30_92290751-5 64 -0.075746 hybrid +139_2-7 Q0 MARCO_28_413735177-360 65 -0.080852 hybrid +139_2-7 Q0 MARCO_36_1006722039-3 66 -0.081837 hybrid +139_2-7 Q0 KILT_34476548-54 67 -0.082332 hybrid +139_2-7 Q0 MARCO_29_1213003697-12 68 -0.088462 hybrid +139_2-7 Q0 MARCO_30_1047651255-6 69 -0.094862 hybrid +139_2-7 Q0 MARCO_50_1988414295-2 70 -0.107674 hybrid +139_2-7 Q0 KILT_34476548-47 71 -0.108506 hybrid +139_2-7 Q0 MARCO_47_1513152112-5 72 -0.114035 hybrid +139_2-7 Q0 MARCO_29_1213003697-13 73 -0.114271 hybrid +139_2-7 Q0 KILT_55748809-1 74 -0.114843 hybrid +139_2-7 Q0 MARCO_00_625037583-11 75 -0.116331 hybrid +139_2-7 Q0 MARCO_51_1634012455-1 76 -0.121407 hybrid +139_2-7 Q0 MARCO_06_1610069920-1 77 -0.121985 hybrid +139_2-7 Q0 KILT_34476548-1 78 -0.122419 hybrid +139_2-7 Q0 MARCO_42_1376021116-6 79 -0.122870 hybrid +139_2-7 Q0 MARCO_36_1005668060-17 80 -0.128443 hybrid +139_2-7 Q0 MARCO_04_181278967-3 81 -0.131733 hybrid +139_2-7 Q0 MARCO_50_1433019997-36 82 -0.138299 hybrid +139_2-7 Q0 MARCO_50_1451496117-18 83 -0.138621 hybrid +139_2-7 Q0 MARCO_50_2141242685-14 84 -0.138955 hybrid +139_2-7 Q0 MARCO_36_1006722039-5 85 -0.147644 hybrid +139_2-7 Q0 MARCO_19_2046601719-5 86 -0.148750 hybrid +139_2-7 Q0 MARCO_50_1978446476-6 87 -0.149032 hybrid +139_2-7 Q0 MARCO_21_81355531-1 88 -0.150576 hybrid +139_2-7 Q0 MARCO_30_1004128211-4 89 -0.150857 hybrid +139_2-7 Q0 MARCO_19_2056386164-2 90 -0.151284 hybrid +139_2-7 Q0 MARCO_30_92395788-11 91 -0.153061 hybrid +139_2-7 Q0 MARCO_21_1387590590-4 92 -0.155711 hybrid +139_2-7 Q0 KILT_34476548-55 93 -0.156833 hybrid +139_2-7 Q0 MARCO_04_185938976-3 94 -0.159901 hybrid +139_2-7 Q0 MARCO_00_625037583-2 95 -0.160496 hybrid +139_2-7 Q0 MARCO_21_1394706798-1 96 -0.166426 hybrid +139_2-7 Q0 MARCO_50_1988414295-3 97 -0.171518 hybrid +139_2-7 Q0 MARCO_19_2045932910-8 98 -0.174328 hybrid +139_2-7 Q0 KILT_34476548-56 99 -0.175562 hybrid +139_2-7 Q0 MARCO_49_522078792-10 100 -0.175738 hybrid +139_2-9 Q0 MARCO_10_77686443-6 1 0.428326 hybrid +139_2-9 Q0 MARCO_03_1672660320-1 2 0.415504 hybrid +139_2-9 Q0 MARCO_30_1084424410-2 3 0.375269 hybrid +139_2-9 Q0 MARCO_55_1281693293-3 4 0.360356 hybrid +139_2-9 Q0 MARCO_42_1360921322-8 5 0.341819 hybrid +139_2-9 Q0 MARCO_00_767771741-1 6 0.337180 hybrid +139_2-9 Q0 MARCO_50_1976647136-18 7 0.281814 hybrid +139_2-9 Q0 KILT_20579666-1 8 0.264062 hybrid +139_2-9 Q0 MARCO_29_662582548-12 9 0.239157 hybrid +139_2-9 Q0 MARCO_18_461374169-10 10 0.228613 hybrid +139_2-9 Q0 MARCO_10_125884503-3 11 0.228517 hybrid +139_2-9 Q0 MARCO_23_894236714-1 12 0.221282 hybrid +139_2-9 Q0 MARCO_42_1364593057-3 13 0.219463 hybrid +139_2-9 Q0 MARCO_55_1701438850-2 14 0.218937 hybrid +139_2-9 Q0 MARCO_55_1281693293-2 15 0.218267 hybrid +139_2-9 Q0 MARCO_10_125884503-1 16 0.198222 hybrid +139_2-9 Q0 MARCO_00_767771741-2 17 0.193216 hybrid +139_2-9 Q0 MARCO_44_1488298674-2 18 0.192299 hybrid +139_2-9 Q0 MARCO_44_1488298674-3 19 0.191382 hybrid +139_2-9 Q0 MARCO_30_92573188-9 20 0.190277 hybrid +139_2-9 Q0 MARCO_24_1139297902-14 21 0.185802 hybrid +139_2-9 Q0 KILT_54663095-1 22 0.177884 hybrid +139_2-9 Q0 MARCO_30_1092538935-5 23 0.174367 hybrid +139_2-9 Q0 MARCO_30_92494994-5 24 0.170678 hybrid +139_2-9 Q0 MARCO_28_413735177-361 25 0.145959 hybrid +139_2-9 Q0 MARCO_29_662582548-7 26 0.145280 hybrid +139_2-9 Q0 MARCO_30_91487108-8 27 0.137683 hybrid +139_2-9 Q0 MARCO_44_1488298674-1 28 0.126710 hybrid +139_2-9 Q0 MARCO_42_1364593057-1 29 0.125511 hybrid +139_2-9 Q0 MARCO_00_767771741-19 30 0.118907 hybrid +139_2-9 Q0 MARCO_59_1032322888-3 31 0.113935 hybrid +139_2-9 Q0 MARCO_00_767771741-6 32 0.104477 hybrid +139_2-9 Q0 MARCO_06_1267389422-427 33 0.095631 hybrid +139_2-9 Q0 MARCO_03_1672660320-2 34 0.092440 hybrid +139_2-9 Q0 MARCO_23_894236714-2 35 0.084279 hybrid +139_2-9 Q0 MARCO_28_447968862-1 36 0.080261 hybrid +139_2-9 Q0 MARCO_00_767771741-10 37 0.076837 hybrid +139_2-9 Q0 MARCO_31_1319602620-2 38 0.074413 hybrid +139_2-9 Q0 MARCO_41_324917941-5 39 0.064243 hybrid +139_2-9 Q0 MARCO_44_1488298674-7 40 0.058918 hybrid +139_2-9 Q0 MARCO_36_1003085916-10 41 0.055493 hybrid +139_2-9 Q0 MARCO_55_1701438850-4 42 0.055422 hybrid +139_2-9 Q0 MARCO_23_243972315-5 43 0.054318 hybrid +139_2-9 Q0 MARCO_29_662582548-2 44 0.053857 hybrid +139_2-9 Q0 MARCO_50_2141096457-25 45 0.046575 hybrid +139_2-9 Q0 MARCO_55_1281693293-4 46 0.045481 hybrid +139_2-9 Q0 MARCO_29_662582548-3 47 0.044424 hybrid +139_2-9 Q0 MARCO_50_1178652254-14 48 0.043984 hybrid +139_2-9 Q0 KILT_1661158-7 49 0.033725 hybrid +139_2-9 Q0 MARCO_55_134814551-1 50 0.030683 hybrid +139_2-9 Q0 MARCO_04_786828265-1 51 0.020071 hybrid +139_2-9 Q0 MARCO_30_92395788-6 52 0.015622 hybrid +139_2-9 Q0 MARCO_10_125884503-4 53 0.015251 hybrid +139_2-9 Q0 MARCO_28_413735177-362 54 0.010472 hybrid +139_2-9 Q0 MARCO_29_662582548-5 55 0.003653 hybrid +139_2-9 Q0 MARCO_00_767771741-3 56 -0.011143 hybrid +139_2-9 Q0 MARCO_00_767771741-16 57 -0.017570 hybrid +139_2-9 Q0 MARCO_30_92395788-7 58 -0.018190 hybrid +139_2-9 Q0 MARCO_13_402956366-3 59 -0.021441 hybrid +139_2-9 Q0 MARCO_55_1701438850-3 60 -0.023708 hybrid +139_2-9 Q0 MARCO_28_447968862-4 61 -0.026443 hybrid +139_2-9 Q0 KILT_279293-18 62 -0.026479 hybrid +139_2-9 Q0 MARCO_29_662582548-4 63 -0.029804 hybrid +139_2-9 Q0 MARCO_29_662582548-10 64 -0.049895 hybrid +139_2-9 Q0 MARCO_23_244000007-6 65 -0.059460 hybrid +139_2-9 Q0 MARCO_40_817653402-2 66 -0.060992 hybrid +139_2-9 Q0 MARCO_04_786830584-1 67 -0.061588 hybrid +139_2-9 Q0 MARCO_00_767771741-5 68 -0.063264 hybrid +139_2-9 Q0 KILT_20579666-2 69 -0.067128 hybrid +139_2-9 Q0 KILT_18077026-1 70 -0.071051 hybrid +139_2-9 Q0 MARCO_10_125884503-5 71 -0.071336 hybrid +139_2-9 Q0 MARCO_00_767771741-8 72 -0.077061 hybrid +139_2-9 Q0 KILT_6389709-2 73 -0.077477 hybrid +139_2-9 Q0 MARCO_51_1634693693-2 74 -0.077702 hybrid +139_2-9 Q0 MARCO_21_1383187790-13 75 -0.078887 hybrid +139_2-9 Q0 MARCO_45_1436807476-4 76 -0.085498 hybrid +139_2-9 Q0 MARCO_55_1281712551-3 77 -0.086036 hybrid +139_2-9 Q0 MARCO_00_767771741-4 78 -0.088498 hybrid +139_2-9 Q0 MARCO_50_2141096457-10 79 -0.089474 hybrid +139_2-9 Q0 MARCO_21_1386201033-2 80 -0.097143 hybrid +139_2-9 Q0 MARCO_00_767771741-15 81 -0.098505 hybrid +139_2-9 Q0 MARCO_18_461374169-9 82 -0.099105 hybrid +139_2-9 Q0 MARCO_28_447968862-2 83 -0.103076 hybrid +139_2-9 Q0 MARCO_43_777882589-10 84 -0.106538 hybrid +139_2-9 Q0 MARCO_42_1360921322-9 85 -0.106621 hybrid +139_2-9 Q0 MARCO_07_257333338-3 86 -0.110240 hybrid +139_2-9 Q0 MARCO_00_767771741-9 87 -0.110520 hybrid +139_2-9 Q0 MARCO_51_1634693693-1 88 -0.111223 hybrid +139_2-9 Q0 MARCO_42_1675748937-4 89 -0.112182 hybrid +139_2-9 Q0 MARCO_29_662582548-6 90 -0.117169 hybrid +139_2-9 Q0 MARCO_40_817653402-1 91 -0.130627 hybrid +139_2-9 Q0 MARCO_50_1178652254-13 92 -0.132865 hybrid +139_2-9 Q0 MARCO_57_1267949532-4 93 -0.135491 hybrid +139_2-9 Q0 MARCO_16_1733227854-3 94 -0.139554 hybrid +139_2-9 Q0 MARCO_28_447968862-3 95 -0.145418 hybrid +139_2-9 Q0 MARCO_29_662582548-1 96 -0.152116 hybrid +139_2-9 Q0 MARCO_55_1701438850-1 97 -0.158161 hybrid +139_2-9 Q0 MARCO_10_125884503-6 98 -0.166711 hybrid +139_2-9 Q0 MARCO_29_662582548-11 99 -0.172063 hybrid +139_2-9 Q0 MARCO_44_58144289-5 100 -0.172199 hybrid +140_1-1 Q0 MARCO_24_1721129865-5 1 0.249999 hybrid +140_1-1 Q0 MARCO_43_777079008-6 2 -0.125228 hybrid +140_1-1 Q0 MARCO_50_1609616194-23 3 -0.145069 hybrid +140_1-1 Q0 MARCO_24_1717477741-4 4 -0.159349 hybrid +140_1-1 Q0 MARCO_30_1029169387-20 5 -0.159492 hybrid +140_1-1 Q0 MARCO_41_1243447347-8 6 -0.193942 hybrid +140_1-1 Q0 MARCO_41_1243447347-18 7 -0.204022 hybrid +140_1-1 Q0 MARCO_24_1717477741-3 8 -0.212701 hybrid +140_1-1 Q0 MARCO_25_1372751419-61 9 -0.250001 hybrid +140_1-1 Q0 MARCO_30_823506076-2 10 -0.256022 hybrid +140_1-1 Q0 KILT_9475339-2 11 -0.262239 hybrid +140_1-1 Q0 MARCO_54_1592040185-1 12 -0.265516 hybrid +140_1-1 Q0 KILT_558393-6 13 -0.279640 hybrid +140_1-1 Q0 MARCO_50_1675783459-28 14 -0.281390 hybrid +140_1-1 Q0 KILT_41758870-4 15 -0.283786 hybrid +140_1-1 Q0 MARCO_48_1290962979-6 16 -0.291038 hybrid +140_1-1 Q0 KILT_41758870-1 17 -0.300492 hybrid +140_1-1 Q0 MARCO_24_1717477741-6 18 -0.300978 hybrid +140_1-1 Q0 MARCO_50_1609616194-9 19 -0.302640 hybrid +140_1-1 Q0 MARCO_20_1740315606-132 20 -0.303706 hybrid +140_1-1 Q0 MARCO_48_1290962979-5 21 -0.307961 hybrid +140_1-1 Q0 MARCO_52_1181039218-18 22 -0.310151 hybrid +140_1-1 Q0 MARCO_50_1619454619-7 23 -0.316849 hybrid +140_1-1 Q0 KILT_11053216-5 24 -0.319994 hybrid +140_1-1 Q0 MARCO_41_1243447347-64 25 -0.330398 hybrid +140_1-1 Q0 MARCO_56_1312702703-7 26 -0.331994 hybrid +140_1-1 Q0 MARCO_24_1717477741-2 27 -0.336266 hybrid +140_1-1 Q0 KILT_14021789-3 28 -0.339860 hybrid +140_1-1 Q0 MARCO_41_1243447347-13 29 -0.341478 hybrid +140_1-1 Q0 MARCO_24_1717477741-11 30 -0.342220 hybrid +140_1-1 Q0 MARCO_24_1717297314-3 31 -0.342665 hybrid +140_1-1 Q0 MARCO_39_600507896-35 32 -0.343132 hybrid +140_1-1 Q0 MARCO_20_1740315606-45 33 -0.345467 hybrid +140_1-1 Q0 MARCO_24_1717477741-5 34 -0.348494 hybrid +140_1-1 Q0 MARCO_41_1243447347-43 35 -0.351390 hybrid +140_1-1 Q0 MARCO_54_1592040185-2 36 -0.356915 hybrid +140_1-1 Q0 MARCO_19_2058367822-16 37 -0.357329 hybrid +140_1-1 Q0 MARCO_50_1609616194-22 38 -0.358217 hybrid +140_1-1 Q0 MARCO_41_1403988265-21 39 -0.360739 hybrid +140_1-1 Q0 MARCO_41_1243447347-4 40 -0.364865 hybrid +140_1-1 Q0 KILT_41758870-3 41 -0.365412 hybrid +140_1-1 Q0 MARCO_57_1265761781-2 42 -0.365612 hybrid +140_1-1 Q0 MARCO_22_1491474537-18 43 -0.368827 hybrid +140_1-1 Q0 MARCO_41_1243447347-29 44 -0.369706 hybrid +140_1-1 Q0 KILT_56379988-2 45 -0.370923 hybrid +140_1-1 Q0 MARCO_21_1434270021-9 46 -0.373269 hybrid +140_1-1 Q0 MARCO_41_1361259717-45 47 -0.373920 hybrid +140_1-1 Q0 MARCO_20_1740315606-89 48 -0.375090 hybrid +140_1-1 Q0 MARCO_11_717062360-2 49 -0.378956 hybrid +140_1-1 Q0 MARCO_40_1275346793-7 50 -0.384096 hybrid +140_1-1 Q0 KILT_9463403-2 51 -0.386750 hybrid +140_1-1 Q0 MARCO_50_1609616194-1 52 -0.386956 hybrid +140_1-1 Q0 MARCO_14_1775537560-5 53 -0.389079 hybrid +140_1-1 Q0 KILT_50607385-2 54 -0.393956 hybrid +140_1-1 Q0 MARCO_50_938334509-10 55 -0.398673 hybrid +140_1-1 Q0 MARCO_54_1471741241-4 56 -0.401024 hybrid +140_1-1 Q0 MARCO_06_998574656-39 57 -0.401760 hybrid +140_1-1 Q0 KILT_9425856-2 58 -0.404876 hybrid +140_1-1 Q0 MARCO_57_1622284502-14 59 -0.405597 hybrid +140_1-1 Q0 KILT_12232249-1 60 -0.406480 hybrid +140_1-1 Q0 MARCO_58_142307447-19 61 -0.407851 hybrid +140_1-1 Q0 MARCO_49_1858156120-8 62 -0.408313 hybrid +140_1-1 Q0 MARCO_41_1243447347-47 63 -0.408884 hybrid +140_1-1 Q0 MARCO_37_1647907532-2 64 -0.410558 hybrid +140_1-1 Q0 MARCO_20_1740315606-128 65 -0.411093 hybrid +140_1-1 Q0 MARCO_20_1740315606-106 66 -0.411972 hybrid +140_1-1 Q0 MARCO_39_600507896-24 67 -0.412730 hybrid +140_1-1 Q0 MARCO_56_69486241-118 68 -0.413151 hybrid +140_1-1 Q0 KILT_42725077-5 69 -0.413156 hybrid +140_1-1 Q0 MARCO_39_851633839-2 70 -0.415071 hybrid +140_1-1 Q0 MARCO_39_1697103382-34 71 -0.415313 hybrid +140_1-1 Q0 MARCO_14_1893293306-3 72 -0.416560 hybrid +140_1-1 Q0 MARCO_24_1718985423-3 73 -0.417285 hybrid +140_1-1 Q0 MARCO_57_1946186551-13 74 -0.418055 hybrid +140_1-1 Q0 KILT_60079923-3 75 -0.421060 hybrid +140_1-1 Q0 MARCO_50_1607111916-118 76 -0.421357 hybrid +140_1-1 Q0 MARCO_56_1026371295-91 77 -0.421673 hybrid +140_1-1 Q0 MARCO_19_2058367822-15 78 -0.423131 hybrid +140_1-1 Q0 MARCO_41_1243447347-57 79 -0.425217 hybrid +140_1-1 Q0 MARCO_30_823506076-5 80 -0.428137 hybrid +140_1-1 Q0 MARCO_41_1403988265-29 81 -0.428733 hybrid +140_1-1 Q0 MARCO_20_1740315606-74 82 -0.428920 hybrid +140_1-1 Q0 MARCO_54_1471741241-1 83 -0.429098 hybrid +140_1-1 Q0 MARCO_03_803632629-1 84 -0.429244 hybrid +140_1-1 Q0 KILT_24482056-2 85 -0.431936 hybrid +140_1-1 Q0 MARCO_41_1944414472-5 86 -0.432123 hybrid +140_1-1 Q0 MARCO_39_1697103382-11 87 -0.433222 hybrid +140_1-1 Q0 MARCO_50_1608026995-28 88 -0.434651 hybrid +140_1-1 Q0 MARCO_24_1717116209-8 89 -0.434678 hybrid +140_1-1 Q0 KILT_24837021-7 90 -0.436612 hybrid +140_1-1 Q0 MARCO_01_1176264230-7 91 -0.438063 hybrid +140_1-1 Q0 MARCO_41_1945440498-2 92 -0.438123 hybrid +140_1-1 Q0 MARCO_56_1312611314-4 93 -0.441398 hybrid +140_1-1 Q0 MARCO_20_1740315606-123 94 -0.441695 hybrid +140_1-1 Q0 MARCO_23_52978072-14 95 -0.442815 hybrid +140_1-1 Q0 MARCO_56_1312621479-2 96 -0.442821 hybrid +140_1-1 Q0 MARCO_57_2418023362-12 97 -0.444084 hybrid +140_1-1 Q0 MARCO_41_1105427554-19 98 -0.444851 hybrid +140_1-1 Q0 MARCO_25_1373535067-12 99 -0.445022 hybrid +140_1-1 Q0 MARCO_37_175915625-8 100 -0.445365 hybrid +140_1-11 Q0 MARCO_09_675512804-64 1 0.284039 hybrid +140_1-11 Q0 KILT_743397-6 2 0.096045 hybrid +140_1-11 Q0 MARCO_24_1718716761-3 3 0.079418 hybrid +140_1-11 Q0 KILT_24834021-1 4 0.077194 hybrid +140_1-11 Q0 KILT_69310-3 5 0.058040 hybrid +140_1-11 Q0 MARCO_45_1439590880-1 6 0.040753 hybrid +140_1-11 Q0 KILT_24833975-1 7 -0.003094 hybrid +140_1-11 Q0 MARCO_06_1128173535-141 8 -0.039783 hybrid +140_1-11 Q0 KILT_102930-15 9 -0.089520 hybrid +140_1-11 Q0 KILT_528218-2 10 -0.093880 hybrid +140_1-11 Q0 MARCO_06_1074440562-316 11 -0.100937 hybrid +140_1-11 Q0 KILT_7567521-3 12 -0.108254 hybrid +140_1-11 Q0 KILT_369124-2 13 -0.110195 hybrid +140_1-11 Q0 MARCO_06_1313842738-342 14 -0.139036 hybrid +140_1-11 Q0 MARCO_19_978117499-20 15 -0.148123 hybrid +140_1-11 Q0 MARCO_50_2375283801-26 16 -0.150704 hybrid +140_1-11 Q0 MARCO_05_813893950-4 17 -0.155495 hybrid +140_1-11 Q0 KILT_4155329-7 18 -0.157714 hybrid +140_1-11 Q0 KILT_2098301-3 19 -0.157748 hybrid +140_1-11 Q0 MARCO_18_475874259-7 20 -0.158785 hybrid +140_1-11 Q0 MARCO_49_1595233115-4 21 -0.171987 hybrid +140_1-11 Q0 MARCO_49_1582867461-3 22 -0.171987 hybrid +140_1-11 Q0 MARCO_30_1079495440-5 23 -0.185041 hybrid +140_1-11 Q0 MARCO_51_1248038688-5 24 -0.198798 hybrid +140_1-11 Q0 MARCO_50_2499766905-15 25 -0.208726 hybrid +140_1-11 Q0 MARCO_17_3701772983-13 26 -0.213476 hybrid +140_1-11 Q0 KILT_27838734-46 27 -0.221843 hybrid +140_1-11 Q0 MARCO_42_1363348138-5 28 -0.228811 hybrid +140_1-11 Q0 MARCO_22_1120524286-2 29 -0.231398 hybrid +140_1-11 Q0 MARCO_06_1282718199-277 30 -0.240438 hybrid +140_1-11 Q0 KILT_102930-17 31 -0.241735 hybrid +140_1-11 Q0 KILT_18958752-3 32 -0.245725 hybrid +140_1-11 Q0 MARCO_17_3086138214-23 33 -0.249794 hybrid +140_1-11 Q0 KILT_28678189-3 34 -0.250000 hybrid +140_1-11 Q0 MARCO_50_2499766905-3 35 -0.255241 hybrid +140_1-11 Q0 MARCO_18_3135720325-7 36 -0.257513 hybrid +140_1-11 Q0 MARCO_13_1113266432-20 37 -0.261234 hybrid +140_1-11 Q0 MARCO_32_596506926-9 38 -0.262187 hybrid +140_1-11 Q0 MARCO_06_1128360718-38 39 -0.262938 hybrid +140_1-11 Q0 MARCO_50_2499766905-14 40 -0.286439 hybrid +140_1-11 Q0 MARCO_06_1194455837-21 41 -0.302378 hybrid +140_1-11 Q0 KILT_10062924-1 42 -0.307803 hybrid +140_1-11 Q0 MARCO_19_978117499-23 43 -0.311430 hybrid +140_1-11 Q0 KILT_37157102-2 44 -0.318436 hybrid +140_1-11 Q0 KILT_27838734-26 45 -0.319440 hybrid +140_1-11 Q0 MARCO_16_3035341936-2 46 -0.322848 hybrid +140_1-11 Q0 MARCO_18_1302442111-25 47 -0.324511 hybrid +140_1-11 Q0 MARCO_17_4120148769-100 48 -0.325025 hybrid +140_1-11 Q0 KILT_11249942-21 49 -0.328554 hybrid +140_1-11 Q0 MARCO_33_1313755245-2 50 -0.330039 hybrid +140_1-11 Q0 MARCO_27_1208639225-8 51 -0.331506 hybrid +140_1-11 Q0 MARCO_27_1208864078-6 52 -0.331506 hybrid +140_1-11 Q0 MARCO_50_2499766905-5 53 -0.339770 hybrid +140_1-11 Q0 MARCO_52_1329353275-11 54 -0.341072 hybrid +140_1-11 Q0 KILT_16919834-2 55 -0.342995 hybrid +140_1-11 Q0 KILT_10525469-1 56 -0.348169 hybrid +140_1-11 Q0 MARCO_51_1248038688-6 57 -0.350275 hybrid +140_1-11 Q0 MARCO_06_1169909711-341 58 -0.351367 hybrid +140_1-11 Q0 MARCO_09_1825283769-2 59 -0.356264 hybrid +140_1-11 Q0 MARCO_51_1248038688-7 60 -0.357981 hybrid +140_1-11 Q0 MARCO_06_1281578791-14 61 -0.359944 hybrid +140_1-11 Q0 KILT_14946698-2 62 -0.362167 hybrid +140_1-11 Q0 KILT_15581268-9 63 -0.369108 hybrid +140_1-11 Q0 MARCO_06_1252257675-203 64 -0.371433 hybrid +140_1-11 Q0 KILT_3814520-7 65 -0.371943 hybrid +140_1-11 Q0 MARCO_17_3086119765-2 66 -0.372851 hybrid +140_1-11 Q0 KILT_33013283-3 67 -0.376245 hybrid +140_1-11 Q0 KILT_18839068-48 68 -0.377659 hybrid +140_1-11 Q0 MARCO_51_1248038688-11 69 -0.378915 hybrid +140_1-11 Q0 MARCO_18_1302436306-3 70 -0.381236 hybrid +140_1-11 Q0 MARCO_04_1051168865-2 71 -0.381456 hybrid +140_1-11 Q0 KILT_27838734-35 72 -0.382909 hybrid +140_1-11 Q0 MARCO_06_1306201670-21 73 -0.384063 hybrid +140_1-11 Q0 MARCO_17_4120148769-24 74 -0.384555 hybrid +140_1-11 Q0 MARCO_32_596506926-7 75 -0.385910 hybrid +140_1-11 Q0 MARCO_07_1117840991-91 76 -0.387305 hybrid +140_1-11 Q0 KILT_27838734-45 77 -0.387878 hybrid +140_1-11 Q0 KILT_2912891-2 78 -0.398316 hybrid +140_1-11 Q0 KILT_1646987-2 79 -0.400292 hybrid +140_1-11 Q0 MARCO_09_1826382890-2 80 -0.401317 hybrid +140_1-11 Q0 KILT_28288511-1 81 -0.405418 hybrid +140_1-11 Q0 MARCO_19_978577694-5 82 -0.405565 hybrid +140_1-11 Q0 MARCO_17_4120148769-89 83 -0.407582 hybrid +140_1-11 Q0 MARCO_28_309785448-3 84 -0.408262 hybrid +140_1-11 Q0 MARCO_06_1216584447-135 85 -0.410386 hybrid +140_1-11 Q0 MARCO_06_1212726193-222 86 -0.411759 hybrid +140_1-11 Q0 KILT_413559-3 87 -0.412148 hybrid +140_1-11 Q0 KILT_27838734-39 88 -0.412716 hybrid +140_1-11 Q0 KILT_1694645-5 89 -0.415458 hybrid +140_1-11 Q0 KILT_27838734-25 90 -0.417050 hybrid +140_1-11 Q0 MARCO_16_3035341936-4 91 -0.421424 hybrid +140_1-11 Q0 KILT_540204-8 92 -0.424840 hybrid +140_1-11 Q0 KILT_27662703-19 93 -0.428579 hybrid +140_1-11 Q0 MARCO_51_1248038688-4 94 -0.431817 hybrid +140_1-11 Q0 MARCO_17_2509959814-7 95 -0.433973 hybrid +140_1-11 Q0 MARCO_09_1825131786-2 96 -0.435158 hybrid +140_1-11 Q0 KILT_7236130-2 97 -0.436151 hybrid +140_1-11 Q0 KILT_18895838-3 98 -0.439290 hybrid +140_1-11 Q0 MARCO_18_1643644756-3 99 -0.439675 hybrid +140_1-11 Q0 MARCO_40_841104946-2 100 -0.440359 hybrid +140_1-3 Q0 MARCO_30_1029169387-1 1 0.535851 hybrid +140_1-3 Q0 MARCO_30_1079495440-4 2 0.416817 hybrid +140_1-3 Q0 MARCO_24_1718716761-3 3 0.373410 hybrid +140_1-3 Q0 MARCO_22_1022149739-1 4 0.228273 hybrid +140_1-3 Q0 MARCO_24_1718256148-8 5 0.148375 hybrid +140_1-3 Q0 MARCO_50_1409583712-4 6 0.099962 hybrid +140_1-3 Q0 MARCO_24_1719317684-11 7 0.085781 hybrid +140_1-3 Q0 MARCO_55_1285550962-1 8 0.030785 hybrid +140_1-3 Q0 MARCO_22_1022149739-13 9 -0.017557 hybrid +140_1-3 Q0 MARCO_30_1029169387-18 10 -0.025786 hybrid +140_1-3 Q0 MARCO_30_1029169387-21 11 -0.033930 hybrid +140_1-3 Q0 MARCO_30_1029169387-2 12 -0.042251 hybrid +140_1-3 Q0 MARCO_30_1085040171-1 13 -0.058813 hybrid +140_1-3 Q0 MARCO_24_1718716761-2 14 -0.062004 hybrid +140_1-3 Q0 MARCO_44_1923788785-5 15 -0.078954 hybrid +140_1-3 Q0 MARCO_24_1718256148-1 16 -0.125592 hybrid +140_1-3 Q0 KILT_5706211-4 17 -0.129149 hybrid +140_1-3 Q0 MARCO_30_1092694148-2 18 -0.129347 hybrid +140_1-3 Q0 MARCO_24_1718716761-1 19 -0.133802 hybrid +140_1-3 Q0 MARCO_24_1718716761-8 20 -0.135369 hybrid +140_1-3 Q0 MARCO_50_1409583712-3 21 -0.136735 hybrid +140_1-3 Q0 MARCO_55_1285550962-5 22 -0.149787 hybrid +140_1-3 Q0 MARCO_24_1718716761-4 23 -0.157661 hybrid +140_1-3 Q0 MARCO_22_1189094383-3 24 -0.170111 hybrid +140_1-3 Q0 MARCO_22_1022149739-6 25 -0.185861 hybrid +140_1-3 Q0 MARCO_49_522173046-10 26 -0.188198 hybrid +140_1-3 Q0 MARCO_24_1718716761-7 27 -0.190438 hybrid +140_1-3 Q0 KILT_42725077-5 28 -0.193558 hybrid +140_1-3 Q0 MARCO_24_1718256148-3 29 -0.202085 hybrid +140_1-3 Q0 MARCO_44_52304687-52 30 -0.220870 hybrid +140_1-3 Q0 MARCO_30_1092694148-1 31 -0.223762 hybrid +140_1-3 Q0 MARCO_30_1085040171-6 32 -0.224306 hybrid +140_1-3 Q0 MARCO_30_1082964817-27 33 -0.226920 hybrid +140_1-3 Q0 MARCO_30_1029169387-20 34 -0.228194 hybrid +140_1-3 Q0 MARCO_30_1029169387-13 35 -0.235745 hybrid +140_1-3 Q0 MARCO_22_1186715244-11 36 -0.242585 hybrid +140_1-3 Q0 MARCO_55_1285559246-4 37 -0.243985 hybrid +140_1-3 Q0 MARCO_24_1718716761-5 38 -0.246536 hybrid +140_1-3 Q0 MARCO_22_258349794-1 39 -0.249999 hybrid +140_1-3 Q0 MARCO_30_1083198855-2 40 -0.252342 hybrid +140_1-3 Q0 MARCO_24_1720740630-1 41 -0.252450 hybrid +140_1-3 Q0 MARCO_24_1718256148-7 42 -0.254591 hybrid +140_1-3 Q0 MARCO_30_1085040171-8 43 -0.259291 hybrid +140_1-3 Q0 MARCO_24_1129449019-5 44 -0.265850 hybrid +140_1-3 Q0 KILT_9064673-1 45 -0.273515 hybrid +140_1-3 Q0 MARCO_55_1285559246-1 46 -0.273638 hybrid +140_1-3 Q0 MARCO_24_1718621756-4 47 -0.276856 hybrid +140_1-3 Q0 MARCO_22_1189094383-1 48 -0.278041 hybrid +140_1-3 Q0 KILT_42725077-4 49 -0.282444 hybrid +140_1-3 Q0 MARCO_30_1029169387-6 50 -0.282824 hybrid +140_1-3 Q0 MARCO_24_1720330846-3 51 -0.285924 hybrid +140_1-3 Q0 MARCO_24_1720740630-3 52 -0.286874 hybrid +140_1-3 Q0 MARCO_30_1029169387-17 53 -0.291703 hybrid +140_1-3 Q0 MARCO_22_1022149739-2 54 -0.292565 hybrid +140_1-3 Q0 MARCO_31_903377975-16 55 -0.300250 hybrid +140_1-3 Q0 MARCO_30_1029169387-9 56 -0.300659 hybrid +140_1-3 Q0 MARCO_30_1090377412-31 57 -0.301371 hybrid +140_1-3 Q0 MARCO_30_1087383993-1 58 -0.303942 hybrid +140_1-3 Q0 MARCO_56_504916707-15 59 -0.308012 hybrid +140_1-3 Q0 MARCO_47_1604463871-10 60 -0.308030 hybrid +140_1-3 Q0 MARCO_30_1002352025-1 61 -0.312056 hybrid +140_1-3 Q0 MARCO_22_1022149739-12 62 -0.314712 hybrid +140_1-3 Q0 MARCO_45_1439590880-1 63 -0.319677 hybrid +140_1-3 Q0 MARCO_54_575373635-1 64 -0.320064 hybrid +140_1-3 Q0 MARCO_30_1083067757-24 65 -0.323971 hybrid +140_1-3 Q0 MARCO_30_1088024666-3 66 -0.326084 hybrid +140_1-3 Q0 MARCO_24_1720330846-4 67 -0.327754 hybrid +140_1-3 Q0 MARCO_24_1718256148-4 68 -0.329660 hybrid +140_1-3 Q0 KILT_43767091-1 69 -0.329768 hybrid +140_1-3 Q0 MARCO_47_1601343000-3 70 -0.333763 hybrid +140_1-3 Q0 MARCO_22_1189094383-4 71 -0.333860 hybrid +140_1-3 Q0 MARCO_30_1029169387-15 72 -0.336292 hybrid +140_1-3 Q0 MARCO_30_1088024666-1 73 -0.336396 hybrid +140_1-3 Q0 MARCO_24_1718256148-2 74 -0.338851 hybrid +140_1-3 Q0 MARCO_30_1029169387-10 75 -0.340201 hybrid +140_1-3 Q0 MARCO_30_1087383993-3 76 -0.341504 hybrid +140_1-3 Q0 MARCO_50_1409583712-9 77 -0.341877 hybrid +140_1-3 Q0 MARCO_36_1004101160-1 78 -0.344827 hybrid +140_1-3 Q0 MARCO_22_1186632304-3 79 -0.345360 hybrid +140_1-3 Q0 MARCO_05_1363328058-4 80 -0.347974 hybrid +140_1-3 Q0 MARCO_08_823639828-1 81 -0.354757 hybrid +140_1-3 Q0 MARCO_30_1029169387-7 82 -0.356127 hybrid +140_1-3 Q0 MARCO_08_823639828-2 83 -0.358016 hybrid +140_1-3 Q0 MARCO_22_1022149739-5 84 -0.358572 hybrid +140_1-3 Q0 MARCO_30_1079495440-1 85 -0.360032 hybrid +140_1-3 Q0 KILT_5706211-3 86 -0.363692 hybrid +140_1-3 Q0 MARCO_44_52304687-36 87 -0.368366 hybrid +140_1-3 Q0 MARCO_30_1029239516-3 88 -0.368436 hybrid +140_1-3 Q0 MARCO_30_1002352025-7 89 -0.370901 hybrid +140_1-3 Q0 MARCO_55_1706922785-1 90 -0.373622 hybrid +140_1-3 Q0 MARCO_24_1720832649-13 91 -0.373922 hybrid +140_1-3 Q0 MARCO_30_1029169387-22 92 -0.376783 hybrid +140_1-3 Q0 MARCO_24_1718256148-6 93 -0.378131 hybrid +140_1-3 Q0 MARCO_31_902002927-5 94 -0.378901 hybrid +140_1-3 Q0 MARCO_30_1029239516-5 95 -0.382072 hybrid +140_1-3 Q0 MARCO_55_1285550962-4 96 -0.384169 hybrid +140_1-3 Q0 MARCO_46_122758951-4 97 -0.385095 hybrid +140_1-3 Q0 MARCO_30_1029169387-12 98 -0.385219 hybrid +140_1-3 Q0 MARCO_08_823639828-4 99 -0.387530 hybrid +140_1-3 Q0 MARCO_30_1082303880-95 100 -0.388584 hybrid +140_1-5 Q0 MARCO_01_1064363562-2 1 0.345424 hybrid +140_1-5 Q0 MARCO_16_1655162222-7 2 0.249998 hybrid +140_1-5 Q0 KILT_4414093-7 3 0.215613 hybrid +140_1-5 Q0 KILT_5618791-1 4 0.193575 hybrid +140_1-5 Q0 MARCO_16_1655162222-8 5 0.144268 hybrid +140_1-5 Q0 MARCO_22_1016658646-9 6 0.118879 hybrid +140_1-5 Q0 KILT_4414044-3 7 0.090110 hybrid +140_1-5 Q0 MARCO_43_981567595-2 8 0.065397 hybrid +140_1-5 Q0 KILT_70348-54 9 0.040355 hybrid +140_1-5 Q0 MARCO_27_527989993-3 10 0.039306 hybrid +140_1-5 Q0 KILT_46224264-11 11 0.017853 hybrid +140_1-5 Q0 MARCO_31_1435531071-7 12 0.007530 hybrid +140_1-5 Q0 KILT_4175490-1 13 -0.007220 hybrid +140_1-5 Q0 MARCO_27_527989993-5 14 -0.014607 hybrid +140_1-5 Q0 KILT_59210145-18 15 -0.021120 hybrid +140_1-5 Q0 MARCO_39_608961831-13 16 -0.029436 hybrid +140_1-5 Q0 KILT_40602928-1 17 -0.042794 hybrid +140_1-5 Q0 KILT_7576135-1 18 -0.045603 hybrid +140_1-5 Q0 MARCO_06_1297416555-45 19 -0.048310 hybrid +140_1-5 Q0 MARCO_23_52915797-6 20 -0.049916 hybrid +140_1-5 Q0 MARCO_39_1573918942-17 21 -0.065159 hybrid +140_1-5 Q0 KILT_4414093-13 22 -0.066083 hybrid +140_1-5 Q0 KILT_24977059-2 23 -0.070985 hybrid +140_1-5 Q0 MARCO_30_823512109-2 24 -0.071744 hybrid +140_1-5 Q0 MARCO_06_1078907555-29 25 -0.079726 hybrid +140_1-5 Q0 KILT_35652421-3 26 -0.079919 hybrid +140_1-5 Q0 KILT_46223380-13 27 -0.083358 hybrid +140_1-5 Q0 KILT_43665522-3 28 -0.087049 hybrid +140_1-5 Q0 KILT_53975621-2 29 -0.096043 hybrid +140_1-5 Q0 KILT_35230467-2 30 -0.113784 hybrid +140_1-5 Q0 KILT_57135645-1 31 -0.124879 hybrid +140_1-5 Q0 KILT_60119927-5 32 -0.126734 hybrid +140_1-5 Q0 KILT_47211160-1 33 -0.126992 hybrid +140_1-5 Q0 KILT_28717844-1 34 -0.127201 hybrid +140_1-5 Q0 KILT_27763688-1 35 -0.135186 hybrid +140_1-5 Q0 KILT_28717859-1 36 -0.135934 hybrid +140_1-5 Q0 KILT_46224264-7 37 -0.138706 hybrid +140_1-5 Q0 KILT_1867614-11 38 -0.138715 hybrid +140_1-5 Q0 KILT_1327945-11 39 -0.141149 hybrid +140_1-5 Q0 KILT_12253874-1 40 -0.149398 hybrid +140_1-5 Q0 MARCO_17_1782936879-8 41 -0.149431 hybrid +140_1-5 Q0 KILT_17071545-2 42 -0.159196 hybrid +140_1-5 Q0 KILT_27437444-1 43 -0.162107 hybrid +140_1-5 Q0 KILT_4414093-9 44 -0.165680 hybrid +140_1-5 Q0 KILT_57726569-2 45 -0.168192 hybrid +140_1-5 Q0 MARCO_39_666438927-14 46 -0.174907 hybrid +140_1-5 Q0 KILT_46333505-2 47 -0.183599 hybrid +140_1-5 Q0 KILT_31746027-1 48 -0.192894 hybrid +140_1-5 Q0 KILT_31331723-4 49 -0.194366 hybrid +140_1-5 Q0 KILT_27764118-1 50 -0.200847 hybrid +140_1-5 Q0 KILT_51759756-7 51 -0.203676 hybrid +140_1-5 Q0 KILT_3137278-4 52 -0.203881 hybrid +140_1-5 Q0 KILT_4414093-12 53 -0.208507 hybrid +140_1-5 Q0 KILT_51759756-3 54 -0.213175 hybrid +140_1-5 Q0 MARCO_36_379134137-2 55 -0.220119 hybrid +140_1-5 Q0 KILT_6032624-15 56 -0.226964 hybrid +140_1-5 Q0 KILT_17840084-2 57 -0.227625 hybrid +140_1-5 Q0 KILT_5150131-8 58 -0.228369 hybrid +140_1-5 Q0 KILT_2742621-2 59 -0.229410 hybrid +140_1-5 Q0 KILT_28718618-1 60 -0.232603 hybrid +140_1-5 Q0 KILT_10086736-2 61 -0.234035 hybrid +140_1-5 Q0 KILT_4414044-4 62 -0.234617 hybrid +140_1-5 Q0 MARCO_15_591308734-181 63 -0.241992 hybrid +140_1-5 Q0 KILT_46364526-9 64 -0.242815 hybrid +140_1-5 Q0 KILT_24101231-1 65 -0.243013 hybrid +140_1-5 Q0 KILT_46333505-1 66 -0.243377 hybrid +140_1-5 Q0 MARCO_54_575373635-2 67 -0.250002 hybrid +140_1-5 Q0 KILT_6032624-10 68 -0.250158 hybrid +140_1-5 Q0 KILT_43665522-2 69 -0.250558 hybrid +140_1-5 Q0 KILT_48756448-1 70 -0.252010 hybrid +140_1-5 Q0 KILT_4414093-8 71 -0.255037 hybrid +140_1-5 Q0 KILT_26519658-1 72 -0.256627 hybrid +140_1-5 Q0 MARCO_31_1435531071-6 73 -0.266942 hybrid +140_1-5 Q0 KILT_28718038-1 74 -0.267991 hybrid +140_1-5 Q0 MARCO_16_4122695792-65 75 -0.269261 hybrid +140_1-5 Q0 KILT_42748465-2 76 -0.270052 hybrid +140_1-5 Q0 KILT_45683381-1 77 -0.271655 hybrid +140_1-5 Q0 KILT_11074571-1 78 -0.273047 hybrid +140_1-5 Q0 MARCO_27_527989993-2 79 -0.274298 hybrid +140_1-5 Q0 MARCO_48_1215421451-1 80 -0.276628 hybrid +140_1-5 Q0 KILT_27436608-1 81 -0.281523 hybrid +140_1-5 Q0 MARCO_07_484342461-74 82 -0.283133 hybrid +140_1-5 Q0 KILT_48756448-2 83 -0.283208 hybrid +140_1-5 Q0 KILT_8881481-2 84 -0.289610 hybrid +140_1-5 Q0 KILT_14745738-2 85 -0.290571 hybrid +140_1-5 Q0 KILT_42085081-2 86 -0.290734 hybrid +140_1-5 Q0 KILT_15676396-1 87 -0.293519 hybrid +140_1-5 Q0 KILT_39090263-1 88 -0.293662 hybrid +140_1-5 Q0 KILT_4414044-2 89 -0.295600 hybrid +140_1-5 Q0 KILT_5618791-5 90 -0.295810 hybrid +140_1-5 Q0 KILT_38744598-1 91 -0.297765 hybrid +140_1-5 Q0 KILT_5696092-1 92 -0.297832 hybrid +140_1-5 Q0 KILT_24821085-17 93 -0.300926 hybrid +140_1-5 Q0 KILT_570934-1 94 -0.301385 hybrid +140_1-5 Q0 KILT_7334113-2 95 -0.306070 hybrid +140_1-5 Q0 KILT_6018857-1 96 -0.309259 hybrid +140_1-5 Q0 KILT_30969746-4 97 -0.310980 hybrid +140_1-5 Q0 MARCO_47_1588424836-11 98 -0.315075 hybrid +140_1-5 Q0 KILT_32594779-1 99 -0.317770 hybrid +140_1-5 Q0 MARCO_04_1059257054-4 100 -0.318035 hybrid +140_1-7 Q0 MARCO_08_823639828-4 1 0.572688 hybrid +140_1-7 Q0 MARCO_03_445438352-4 2 0.494118 hybrid +140_1-7 Q0 MARCO_03_446178016-4 3 0.371107 hybrid +140_1-7 Q0 MARCO_03_446024727-4 4 0.313410 hybrid +140_1-7 Q0 MARCO_24_1720060243-4 5 0.249998 hybrid +140_1-7 Q0 KILT_52786719-2 6 0.113116 hybrid +140_1-7 Q0 MARCO_03_445438352-6 7 0.090541 hybrid +140_1-7 Q0 MARCO_03_446024727-6 8 0.090541 hybrid +140_1-7 Q0 MARCO_09_1233413749-20 9 0.074253 hybrid +140_1-7 Q0 MARCO_32_620327157-5 10 0.039684 hybrid +140_1-7 Q0 MARCO_19_2058367822-15 11 0.019216 hybrid +140_1-7 Q0 MARCO_07_1108772374-35 12 0.018688 hybrid +140_1-7 Q0 MARCO_15_1329384568-60 13 0.011716 hybrid +140_1-7 Q0 MARCO_03_446048207-3 14 -0.004289 hybrid +140_1-7 Q0 KILT_59342503-2 15 -0.055127 hybrid +140_1-7 Q0 MARCO_41_1945492466-10 16 -0.130630 hybrid +140_1-7 Q0 MARCO_25_1766316056-16 17 -0.136416 hybrid +140_1-7 Q0 MARCO_03_445438352-5 18 -0.152455 hybrid +140_1-7 Q0 MARCO_03_446024727-5 19 -0.152463 hybrid +140_1-7 Q0 MARCO_16_1665554144-5 20 -0.158106 hybrid +140_1-7 Q0 KILT_7234509-1 21 -0.163683 hybrid +140_1-7 Q0 KILT_4700891-6 22 -0.177000 hybrid +140_1-7 Q0 KILT_21036373-1 23 -0.181945 hybrid +140_1-7 Q0 KILT_3376800-8 24 -0.182952 hybrid +140_1-7 Q0 MARCO_24_1313905521-26 25 -0.186183 hybrid +140_1-7 Q0 MARCO_28_330275034-72 26 -0.188747 hybrid +140_1-7 Q0 MARCO_08_78456732-102 27 -0.196457 hybrid +140_1-7 Q0 MARCO_41_1945492466-8 28 -0.202378 hybrid +140_1-7 Q0 MARCO_03_446048207-4 29 -0.218517 hybrid +140_1-7 Q0 MARCO_19_163316987-27 30 -0.225965 hybrid +140_1-7 Q0 KILT_47324245-1 31 -0.232497 hybrid +140_1-7 Q0 MARCO_32_620327157-1 32 -0.236617 hybrid +140_1-7 Q0 KILT_60301067-1 33 -0.240564 hybrid +140_1-7 Q0 KILT_28832499-1 34 -0.250002 hybrid +140_1-7 Q0 MARCO_18_478113381-10 35 -0.252298 hybrid +140_1-7 Q0 MARCO_03_446048207-5 36 -0.259541 hybrid +140_1-7 Q0 MARCO_13_707082514-63 37 -0.263138 hybrid +140_1-7 Q0 MARCO_13_707082514-262 38 -0.263138 hybrid +140_1-7 Q0 KILT_32240997-3 39 -0.263775 hybrid +140_1-7 Q0 MARCO_07_1108562588-4 40 -0.272566 hybrid +140_1-7 Q0 MARCO_05_856186864-4 41 -0.275758 hybrid +140_1-7 Q0 MARCO_32_620321003-5 42 -0.277249 hybrid +140_1-7 Q0 KILT_28823410-1 43 -0.283482 hybrid +140_1-7 Q0 KILT_32240997-1 44 -0.284073 hybrid +140_1-7 Q0 KILT_7472199-1 45 -0.289829 hybrid +140_1-7 Q0 MARCO_06_1089492850-56 46 -0.291726 hybrid +140_1-7 Q0 KILT_28461170-1 47 -0.293589 hybrid +140_1-7 Q0 MARCO_06_1174651975-49 48 -0.299723 hybrid +140_1-7 Q0 MARCO_55_1285550962-1 49 -0.299806 hybrid +140_1-7 Q0 KILT_28024638-3 50 -0.308963 hybrid +140_1-7 Q0 MARCO_41_1945476110-6 51 -0.309260 hybrid +140_1-7 Q0 MARCO_31_1435519855-3 52 -0.309369 hybrid +140_1-7 Q0 MARCO_17_1796766689-5 53 -0.310812 hybrid +140_1-7 Q0 KILT_28461170-2 54 -0.313483 hybrid +140_1-7 Q0 MARCO_23_52978072-4 55 -0.315931 hybrid +140_1-7 Q0 KILT_11859745-4 56 -0.316576 hybrid +140_1-7 Q0 KILT_12529923-2 57 -0.321775 hybrid +140_1-7 Q0 KILT_46769717-1 58 -0.330047 hybrid +140_1-7 Q0 MARCO_16_1729844266-5 59 -0.330509 hybrid +140_1-7 Q0 KILT_2001834-2 60 -0.330552 hybrid +140_1-7 Q0 MARCO_28_1144807501-1 61 -0.335624 hybrid +140_1-7 Q0 KILT_3459253-3 62 -0.337019 hybrid +140_1-7 Q0 MARCO_28_418864433-2 63 -0.337521 hybrid +140_1-7 Q0 MARCO_28_418883757-14 64 -0.341999 hybrid +140_1-7 Q0 KILT_11498019-6 65 -0.342226 hybrid +140_1-7 Q0 KILT_29471696-1 66 -0.342832 hybrid +140_1-7 Q0 MARCO_14_760306623-4 67 -0.345858 hybrid +140_1-7 Q0 MARCO_19_978165107-6 68 -0.348378 hybrid +140_1-7 Q0 KILT_28832499-2 69 -0.352647 hybrid +140_1-7 Q0 KILT_237554-1 70 -0.354601 hybrid +140_1-7 Q0 MARCO_13_1564793756-5 71 -0.356092 hybrid +140_1-7 Q0 MARCO_16_1665554144-4 72 -0.357828 hybrid +140_1-7 Q0 KILT_3632163-1 73 -0.361002 hybrid +140_1-7 Q0 MARCO_17_3719565417-25 74 -0.362057 hybrid +140_1-7 Q0 KILT_13735673-1 75 -0.363283 hybrid +140_1-7 Q0 MARCO_42_1748156758-8 76 -0.365084 hybrid +140_1-7 Q0 MARCO_39_608961831-5 77 -0.365184 hybrid +140_1-7 Q0 MARCO_19_982431141-10 78 -0.365463 hybrid +140_1-7 Q0 KILT_2471151-3 79 -0.367844 hybrid +140_1-7 Q0 KILT_47833360-4 80 -0.368616 hybrid +140_1-7 Q0 KILT_298966-12 81 -0.368838 hybrid +140_1-7 Q0 KILT_46767961-1 82 -0.369435 hybrid +140_1-7 Q0 KILT_3584813-1 83 -0.373151 hybrid +140_1-7 Q0 KILT_38987037-1 84 -0.374768 hybrid +140_1-7 Q0 MARCO_28_418864433-4 85 -0.376866 hybrid +140_1-7 Q0 MARCO_28_418864433-3 86 -0.377167 hybrid +140_1-7 Q0 MARCO_50_927498849-15 87 -0.377925 hybrid +140_1-7 Q0 MARCO_32_620327157-2 88 -0.377969 hybrid +140_1-7 Q0 KILT_25330048-1 89 -0.378346 hybrid +140_1-7 Q0 MARCO_28_418883757-17 90 -0.379805 hybrid +140_1-7 Q0 KILT_596834-21 91 -0.380843 hybrid +140_1-7 Q0 KILT_13294300-1 92 -0.382484 hybrid +140_1-7 Q0 MARCO_07_1110244199-155 93 -0.382639 hybrid +140_1-7 Q0 MARCO_14_785504474-18 94 -0.384614 hybrid +140_1-7 Q0 KILT_13294300-3 95 -0.384845 hybrid +140_1-7 Q0 MARCO_34_1361287530-1 96 -0.385835 hybrid +140_1-7 Q0 MARCO_00_1609316991-143 97 -0.385931 hybrid +140_1-7 Q0 KILT_27013239-3 98 -0.387715 hybrid +140_1-7 Q0 MARCO_13_707082514-95 99 -0.388203 hybrid +140_1-7 Q0 MARCO_10_1202076834-1 100 -0.389363 hybrid +140_1-9 Q0 MARCO_01_1064363562-2 1 0.316003 hybrid +140_1-9 Q0 MARCO_16_1655162222-7 2 0.250000 hybrid +140_1-9 Q0 KILT_5618791-1 3 0.225833 hybrid +140_1-9 Q0 KILT_4414044-3 4 0.183071 hybrid +140_1-9 Q0 KILT_4414093-7 5 0.149917 hybrid +140_1-9 Q0 MARCO_16_1655162222-8 6 0.132091 hybrid +140_1-9 Q0 MARCO_22_1016658646-9 7 0.114958 hybrid +140_1-9 Q0 MARCO_06_1297416555-45 8 0.048524 hybrid +140_1-9 Q0 KILT_70348-54 9 0.042363 hybrid +140_1-9 Q0 MARCO_31_1435531071-7 10 0.013964 hybrid +140_1-9 Q0 KILT_7576135-1 11 0.013347 hybrid +140_1-9 Q0 KILT_4175490-1 12 0.009137 hybrid +140_1-9 Q0 KILT_28717859-1 13 0.005683 hybrid +140_1-9 Q0 KILT_47211160-1 14 0.004390 hybrid +140_1-9 Q0 KILT_35230467-2 15 -0.003547 hybrid +140_1-9 Q0 KILT_46224264-11 16 -0.003937 hybrid +140_1-9 Q0 MARCO_27_527989993-5 17 -0.008911 hybrid +140_1-9 Q0 KILT_4414093-13 18 -0.010300 hybrid +140_1-9 Q0 MARCO_39_608961831-13 19 -0.016755 hybrid +140_1-9 Q0 KILT_46223380-13 20 -0.020315 hybrid +140_1-9 Q0 MARCO_43_981567595-2 21 -0.021784 hybrid +140_1-9 Q0 MARCO_23_52915797-6 22 -0.024751 hybrid +140_1-9 Q0 KILT_28717844-1 23 -0.024860 hybrid +140_1-9 Q0 KILT_40602928-1 24 -0.033872 hybrid +140_1-9 Q0 KILT_3137278-4 25 -0.041641 hybrid +140_1-9 Q0 KILT_5150131-8 26 -0.049666 hybrid +140_1-9 Q0 MARCO_36_379134137-2 27 -0.054363 hybrid +140_1-9 Q0 MARCO_07_484342461-74 28 -0.061813 hybrid +140_1-9 Q0 MARCO_39_1573918942-17 29 -0.062018 hybrid +140_1-9 Q0 KILT_4414093-12 30 -0.083784 hybrid +140_1-9 Q0 MARCO_30_823512109-2 31 -0.092940 hybrid +140_1-9 Q0 KILT_35652421-3 32 -0.094081 hybrid +140_1-9 Q0 KILT_59210145-18 33 -0.094832 hybrid +140_1-9 Q0 KILT_10086736-2 34 -0.101263 hybrid +140_1-9 Q0 KILT_57135645-1 35 -0.104444 hybrid +140_1-9 Q0 KILT_24977059-2 36 -0.112725 hybrid +140_1-9 Q0 KILT_17071545-2 37 -0.115340 hybrid +140_1-9 Q0 MARCO_06_1078907555-29 38 -0.120692 hybrid +140_1-9 Q0 KILT_43665522-3 39 -0.132742 hybrid +140_1-9 Q0 KILT_1327945-11 40 -0.138030 hybrid +140_1-9 Q0 MARCO_47_1588424836-11 41 -0.140188 hybrid +140_1-9 Q0 KILT_6032624-10 42 -0.144645 hybrid +140_1-9 Q0 KILT_31331723-4 43 -0.150307 hybrid +140_1-9 Q0 MARCO_27_527989993-3 44 -0.152011 hybrid +140_1-9 Q0 KILT_12253874-1 45 -0.157438 hybrid +140_1-9 Q0 MARCO_39_666438927-14 46 -0.160674 hybrid +140_1-9 Q0 KILT_60119927-5 47 -0.168015 hybrid +140_1-9 Q0 MARCO_39_862000400-1 48 -0.170949 hybrid +140_1-9 Q0 KILT_1867614-11 49 -0.177195 hybrid +140_1-9 Q0 KILT_24821085-17 50 -0.177778 hybrid +140_1-9 Q0 KILT_46224264-7 51 -0.178180 hybrid +140_1-9 Q0 MARCO_27_527989993-2 52 -0.181186 hybrid +140_1-9 Q0 KILT_28718618-1 53 -0.185199 hybrid +140_1-9 Q0 KILT_42748465-2 54 -0.191020 hybrid +140_1-9 Q0 KILT_27763688-1 55 -0.194420 hybrid +140_1-9 Q0 KILT_4414044-4 56 -0.196116 hybrid +140_1-9 Q0 KILT_5618791-5 57 -0.197081 hybrid +140_1-9 Q0 MARCO_17_1782936879-8 58 -0.197543 hybrid +140_1-9 Q0 KILT_51759756-7 59 -0.199545 hybrid +140_1-9 Q0 KILT_29771777-3 60 -0.202210 hybrid +140_1-9 Q0 KILT_2742621-2 61 -0.212976 hybrid +140_1-9 Q0 KILT_51759756-3 62 -0.223990 hybrid +140_1-9 Q0 KILT_4414093-9 63 -0.226739 hybrid +140_1-9 Q0 KILT_46333505-2 64 -0.238055 hybrid +140_1-9 Q0 KILT_24101231-1 65 -0.242239 hybrid +140_1-9 Q0 MARCO_28_957727341-18 66 -0.243679 hybrid +140_1-9 Q0 KILT_11074571-1 67 -0.243956 hybrid +140_1-9 Q0 MARCO_31_1435531071-6 68 -0.245123 hybrid +140_1-9 Q0 KILT_17840084-2 69 -0.247448 hybrid +140_1-9 Q0 MARCO_54_575373635-2 70 -0.250000 hybrid +140_1-9 Q0 KILT_4414044-2 71 -0.250785 hybrid +140_1-9 Q0 KILT_7334113-2 72 -0.252401 hybrid +140_1-9 Q0 KILT_43665522-2 73 -0.253551 hybrid +140_1-9 Q0 KILT_44470243-1 74 -0.254831 hybrid +140_1-9 Q0 KILT_41068483-1 75 -0.258084 hybrid +140_1-9 Q0 KILT_15676396-1 76 -0.261660 hybrid +140_1-9 Q0 KILT_24365570-1 77 -0.263544 hybrid +140_1-9 Q0 KILT_27764118-1 78 -0.264556 hybrid +140_1-9 Q0 KILT_28817295-1 79 -0.265026 hybrid +140_1-9 Q0 MARCO_09_352381855-7 80 -0.266063 hybrid +140_1-9 Q0 KILT_31746027-1 81 -0.270155 hybrid +140_1-9 Q0 KILT_28718038-1 82 -0.270310 hybrid +140_1-9 Q0 KILT_22676150-4 83 -0.271549 hybrid +140_1-9 Q0 KILT_53975621-2 84 -0.272145 hybrid +140_1-9 Q0 KILT_48621634-1 85 -0.272896 hybrid +140_1-9 Q0 KILT_5696092-1 86 -0.275532 hybrid +140_1-9 Q0 MARCO_16_4122695792-65 87 -0.275838 hybrid +140_1-9 Q0 MARCO_21_1389621870-11 88 -0.275855 hybrid +140_1-9 Q0 MARCO_24_1717841304-1 89 -0.279670 hybrid +140_1-9 Q0 KILT_27436608-1 90 -0.289269 hybrid +140_1-9 Q0 MARCO_48_1215421451-1 91 -0.290079 hybrid +140_1-9 Q0 KILT_57726569-2 92 -0.291133 hybrid +140_1-9 Q0 KILT_26519658-1 93 -0.292463 hybrid +140_1-9 Q0 KILT_4414093-8 94 -0.295758 hybrid +140_1-9 Q0 KILT_15676396-3 95 -0.296073 hybrid +140_1-9 Q0 MARCO_11_715781674-7 96 -0.296346 hybrid +140_1-9 Q0 KILT_26519893-1 97 -0.296447 hybrid +140_1-9 Q0 KILT_570934-1 98 -0.296510 hybrid +140_1-9 Q0 KILT_19951823-2 99 -0.299318 hybrid +140_1-9 Q0 KILT_46364526-9 100 -0.300740 hybrid +140_2-1 Q0 KILT_42725077-5 1 0.616859 hybrid +140_2-1 Q0 MARCO_58_1505770958-4 2 0.479482 hybrid +140_2-1 Q0 KILT_42725077-4 3 0.197949 hybrid +140_2-1 Q0 MARCO_30_1092667965-1 4 0.196374 hybrid +140_2-1 Q0 MARCO_55_1281217641-1 5 0.158094 hybrid +140_2-1 Q0 KILT_42725077-6 6 0.140807 hybrid +140_2-1 Q0 KILT_42725077-2 7 0.125046 hybrid +140_2-1 Q0 KILT_42725077-3 8 0.077575 hybrid +140_2-1 Q0 MARCO_55_1285550962-5 9 0.073384 hybrid +140_2-1 Q0 MARCO_11_715977820-3 10 -0.007861 hybrid +140_2-1 Q0 MARCO_30_1092694148-2 11 -0.015378 hybrid +140_2-1 Q0 MARCO_17_692375270-43 12 -0.016331 hybrid +140_2-1 Q0 KILT_44973671-1 13 -0.064767 hybrid +140_2-1 Q0 MARCO_30_1092694148-1 14 -0.090839 hybrid +140_2-1 Q0 MARCO_55_1285550962-1 15 -0.092462 hybrid +140_2-1 Q0 MARCO_55_1280232390-10 16 -0.100327 hybrid +140_2-1 Q0 KILT_42725077-1 17 -0.115708 hybrid +140_2-1 Q0 MARCO_11_715977820-14 18 -0.124794 hybrid +140_2-1 Q0 MARCO_58_1505770958-1 19 -0.132680 hybrid +140_2-1 Q0 MARCO_11_716304225-13 20 -0.151380 hybrid +140_2-1 Q0 MARCO_22_1016696041-3 21 -0.162168 hybrid +140_2-1 Q0 KILT_42725077-7 22 -0.165329 hybrid +140_2-1 Q0 MARCO_55_1285559246-4 23 -0.181145 hybrid +140_2-1 Q0 MARCO_24_1720740630-3 24 -0.181984 hybrid +140_2-1 Q0 KILT_52289180-4 25 -0.198162 hybrid +140_2-1 Q0 MARCO_49_522173046-10 26 -0.198977 hybrid +140_2-1 Q0 KILT_5706211-3 27 -0.200624 hybrid +140_2-1 Q0 MARCO_30_1092694148-8 28 -0.206071 hybrid +140_2-1 Q0 MARCO_24_1718716761-2 29 -0.206257 hybrid +140_2-1 Q0 MARCO_30_1029169387-20 30 -0.208159 hybrid +140_2-1 Q0 MARCO_08_823639828-1 31 -0.213826 hybrid +140_2-1 Q0 MARCO_28_309794017-3 32 -0.214248 hybrid +140_2-1 Q0 MARCO_19_2047202465-3 33 -0.215978 hybrid +140_2-1 Q0 KILT_53265757-1 34 -0.216157 hybrid +140_2-1 Q0 KILT_41758870-1 35 -0.225496 hybrid +140_2-1 Q0 MARCO_27_588776995-2 36 -0.226543 hybrid +140_2-1 Q0 MARCO_27_588776995-4 37 -0.227367 hybrid +140_2-1 Q0 MARCO_30_1029169387-2 38 -0.228739 hybrid +140_2-1 Q0 MARCO_55_1285550962-2 39 -0.231985 hybrid +140_2-1 Q0 MARCO_30_1092667965-3 40 -0.234512 hybrid +140_2-1 Q0 MARCO_11_716590866-16 41 -0.239099 hybrid +140_2-1 Q0 KILT_47833907-1 42 -0.243123 hybrid +140_2-1 Q0 KILT_34665811-3 43 -0.244147 hybrid +140_2-1 Q0 MARCO_19_2047188347-1 44 -0.244182 hybrid +140_2-1 Q0 MARCO_44_1923788785-5 45 -0.244825 hybrid +140_2-1 Q0 MARCO_19_2047188347-6 46 -0.245612 hybrid +140_2-1 Q0 KILT_44973671-2 47 -0.248425 hybrid +140_2-1 Q0 KILT_50059281-5 48 -0.250000 hybrid +140_2-1 Q0 MARCO_24_1720009771-3 49 -0.252385 hybrid +140_2-1 Q0 MARCO_30_1092694148-4 50 -0.254340 hybrid +140_2-1 Q0 KILT_17237382-7 51 -0.278806 hybrid +140_2-1 Q0 KILT_47610149-6 52 -0.279356 hybrid +140_2-1 Q0 KILT_28024638-10 53 -0.280359 hybrid +140_2-1 Q0 KILT_38186977-1 54 -0.280996 hybrid +140_2-1 Q0 KILT_55702318-2 55 -0.284808 hybrid +140_2-1 Q0 MARCO_56_1312611314-6 56 -0.286177 hybrid +140_2-1 Q0 MARCO_22_1016851450-7 57 -0.286972 hybrid +140_2-1 Q0 MARCO_49_522173046-11 58 -0.287419 hybrid +140_2-1 Q0 MARCO_47_1601337723-1 59 -0.287423 hybrid +140_2-1 Q0 MARCO_24_1718716761-3 60 -0.287708 hybrid +140_2-1 Q0 MARCO_08_823639828-2 61 -0.287818 hybrid +140_2-1 Q0 KILT_59101211-1 62 -0.288801 hybrid +140_2-1 Q0 MARCO_06_200120676-1 63 -0.292266 hybrid +140_2-1 Q0 MARCO_19_470062276-1 64 -0.296931 hybrid +140_2-1 Q0 KILT_55702318-1 65 -0.297482 hybrid +140_2-1 Q0 MARCO_24_1718621756-4 66 -0.297842 hybrid +140_2-1 Q0 KILT_5706211-4 67 -0.299224 hybrid +140_2-1 Q0 KILT_44905552-1 68 -0.299922 hybrid +140_2-1 Q0 MARCO_19_2047188347-5 69 -0.302701 hybrid +140_2-1 Q0 MARCO_50_1409583712-6 70 -0.303970 hybrid +140_2-1 Q0 MARCO_11_719002106-4 71 -0.304399 hybrid +140_2-1 Q0 MARCO_22_1016658646-13 72 -0.306765 hybrid +140_2-1 Q0 KILT_54453536-2 73 -0.307312 hybrid +140_2-1 Q0 MARCO_54_1592040185-1 74 -0.308487 hybrid +140_2-1 Q0 KILT_12311661-1 75 -0.308825 hybrid +140_2-1 Q0 KILT_47610149-2 76 -0.309753 hybrid +140_2-1 Q0 MARCO_55_1280659858-26 77 -0.310048 hybrid +140_2-1 Q0 MARCO_50_890815532-3 78 -0.311019 hybrid +140_2-1 Q0 MARCO_51_903670425-7 79 -0.311308 hybrid +140_2-1 Q0 MARCO_56_1312611314-8 80 -0.314794 hybrid +140_2-1 Q0 MARCO_11_715977820-1 81 -0.320965 hybrid +140_2-1 Q0 MARCO_19_962618007-15 82 -0.322267 hybrid +140_2-1 Q0 KILT_17911390-2 83 -0.323673 hybrid +140_2-1 Q0 KILT_23873212-2 84 -0.323821 hybrid +140_2-1 Q0 MARCO_30_1092694148-7 85 -0.331028 hybrid +140_2-1 Q0 KILT_46755470-1 86 -0.331272 hybrid +140_2-1 Q0 MARCO_22_258349794-10 87 -0.333669 hybrid +140_2-1 Q0 MARCO_50_1409583712-4 88 -0.335474 hybrid +140_2-1 Q0 MARCO_11_715977820-4 89 -0.336018 hybrid +140_2-1 Q0 MARCO_08_823623956-9 90 -0.336936 hybrid +140_2-1 Q0 MARCO_30_1092667965-10 91 -0.337166 hybrid +140_2-1 Q0 MARCO_30_1092694148-5 92 -0.338927 hybrid +140_2-1 Q0 MARCO_30_823492726-3 93 -0.338999 hybrid +140_2-1 Q0 MARCO_25_227670877-3 94 -0.339269 hybrid +140_2-1 Q0 MARCO_30_1092694148-3 95 -0.344776 hybrid +140_2-1 Q0 MARCO_27_588863416-42 96 -0.350522 hybrid +140_2-1 Q0 KILT_48032251-1 97 -0.352314 hybrid +140_2-1 Q0 MARCO_47_1604463871-10 98 -0.354334 hybrid +140_2-1 Q0 MARCO_47_1601337723-2 99 -0.355597 hybrid +140_2-1 Q0 MARCO_47_1601343000-1 100 -0.361089 hybrid +140_2-3 Q0 MARCO_58_1505770958-4 1 0.250002 hybrid +140_2-3 Q0 KILT_42725077-5 2 0.085198 hybrid +140_2-3 Q0 MARCO_11_716304225-12 3 0.022914 hybrid +140_2-3 Q0 MARCO_27_588863416-42 4 0.008879 hybrid +140_2-3 Q0 MARCO_11_716590866-16 5 -0.023588 hybrid +140_2-3 Q0 MARCO_56_1312601736-2 6 -0.032792 hybrid +140_2-3 Q0 KILT_34665811-3 7 -0.126470 hybrid +140_2-3 Q0 MARCO_27_588776995-2 8 -0.130903 hybrid +140_2-3 Q0 MARCO_11_715977820-3 9 -0.141557 hybrid +140_2-3 Q0 KILT_3385208-5 10 -0.142942 hybrid +140_2-3 Q0 KILT_44905552-1 11 -0.148975 hybrid +140_2-3 Q0 MARCO_39_1522232617-19 12 -0.174374 hybrid +140_2-3 Q0 KILT_60029310-2 13 -0.181701 hybrid +140_2-3 Q0 KILT_18895226-2 14 -0.187877 hybrid +140_2-3 Q0 MARCO_10_261910952-119 15 -0.188386 hybrid +140_2-3 Q0 MARCO_22_1016696041-6 16 -0.197235 hybrid +140_2-3 Q0 MARCO_11_716304225-13 17 -0.202324 hybrid +140_2-3 Q0 MARCO_11_758826070-4 18 -0.202379 hybrid +140_2-3 Q0 KILT_34665811-2 19 -0.213554 hybrid +140_2-3 Q0 MARCO_11_716565973-5 20 -0.238061 hybrid +140_2-3 Q0 MARCO_10_261910952-115 21 -0.238969 hybrid +140_2-3 Q0 KILT_39957256-3 22 -0.241605 hybrid +140_2-3 Q0 KILT_39957256-1 23 -0.243080 hybrid +140_2-3 Q0 MARCO_22_1016798109-7 24 -0.245559 hybrid +140_2-3 Q0 MARCO_06_697327108-4 25 -0.248287 hybrid +140_2-3 Q0 MARCO_25_227670877-3 26 -0.249998 hybrid +140_2-3 Q0 KILT_47197913-1 27 -0.251124 hybrid +140_2-3 Q0 MARCO_47_1601337723-1 28 -0.252421 hybrid +140_2-3 Q0 KILT_39957256-2 29 -0.259813 hybrid +140_2-3 Q0 MARCO_22_1016829979-5 30 -0.262380 hybrid +140_2-3 Q0 MARCO_55_1285550962-5 31 -0.263393 hybrid +140_2-3 Q0 KILT_34665811-1 32 -0.266573 hybrid +140_2-3 Q0 MARCO_30_1092694148-2 33 -0.268241 hybrid +140_2-3 Q0 MARCO_30_1092694148-8 34 -0.268987 hybrid +140_2-3 Q0 KILT_44973671-2 35 -0.271942 hybrid +140_2-3 Q0 MARCO_22_1016798109-6 36 -0.273297 hybrid +140_2-3 Q0 KILT_61403766-1 37 -0.273473 hybrid +140_2-3 Q0 MARCO_08_823623956-9 38 -0.274027 hybrid +140_2-3 Q0 MARCO_24_1719431511-2 39 -0.278318 hybrid +140_2-3 Q0 MARCO_24_1718582318-1 40 -0.281524 hybrid +140_2-3 Q0 MARCO_27_588776995-4 41 -0.289131 hybrid +140_2-3 Q0 MARCO_24_1719591370-4 42 -0.290424 hybrid +140_2-3 Q0 MARCO_27_587939214-7 43 -0.293650 hybrid +140_2-3 Q0 KILT_60446505-1 44 -0.293650 hybrid +140_2-3 Q0 MARCO_24_1719507901-1 45 -0.298406 hybrid +140_2-3 Q0 MARCO_24_1723577496-1 46 -0.298507 hybrid +140_2-3 Q0 KILT_17911390-2 47 -0.299263 hybrid +140_2-3 Q0 KILT_42725077-2 48 -0.299615 hybrid +140_2-3 Q0 KILT_42725077-3 49 -0.302324 hybrid +140_2-3 Q0 KILT_44973671-1 50 -0.303716 hybrid +140_2-3 Q0 MARCO_19_962618007-8 51 -0.306251 hybrid +140_2-3 Q0 MARCO_19_962618007-2 52 -0.306502 hybrid +140_2-3 Q0 KILT_61023409-2 53 -0.308939 hybrid +140_2-3 Q0 MARCO_22_1016763847-1 54 -0.309379 hybrid +140_2-3 Q0 MARCO_11_758826070-6 55 -0.309780 hybrid +140_2-3 Q0 MARCO_30_1092667965-1 56 -0.313660 hybrid +140_2-3 Q0 MARCO_58_1505770958-1 57 -0.316194 hybrid +140_2-3 Q0 MARCO_11_715977820-14 58 -0.316965 hybrid +140_2-3 Q0 MARCO_55_1281217641-1 59 -0.317256 hybrid +140_2-3 Q0 MARCO_24_1719431511-3 60 -0.320049 hybrid +140_2-3 Q0 MARCO_27_587939214-4 61 -0.320120 hybrid +140_2-3 Q0 MARCO_56_1312653403-4 62 -0.320632 hybrid +140_2-3 Q0 KILT_5938324-1 63 -0.321400 hybrid +140_2-3 Q0 MARCO_27_587939214-9 64 -0.322160 hybrid +140_2-3 Q0 MARCO_11_716520125-9 65 -0.328249 hybrid +140_2-3 Q0 MARCO_04_1288938965-6 66 -0.328874 hybrid +140_2-3 Q0 MARCO_39_1522232617-17 67 -0.332083 hybrid +140_2-3 Q0 KILT_45241465-1 68 -0.333631 hybrid +140_2-3 Q0 KILT_42725077-8 69 -0.333751 hybrid +140_2-3 Q0 KILT_12311661-1 70 -0.333904 hybrid +140_2-3 Q0 MARCO_12_70107065-2 71 -0.337912 hybrid +140_2-3 Q0 KILT_596882-2 72 -0.339065 hybrid +140_2-3 Q0 KILT_39904398-1 73 -0.339130 hybrid +140_2-3 Q0 KILT_61403766-7 74 -0.339521 hybrid +140_2-3 Q0 MARCO_10_261910952-118 75 -0.341485 hybrid +140_2-3 Q0 MARCO_22_1016763847-3 76 -0.342319 hybrid +140_2-3 Q0 MARCO_22_1016829979-4 77 -0.342539 hybrid +140_2-3 Q0 MARCO_58_1508359055-3 78 -0.347477 hybrid +140_2-3 Q0 MARCO_11_758826070-3 79 -0.347830 hybrid +140_2-3 Q0 KILT_52221686-1 80 -0.348640 hybrid +140_2-3 Q0 KILT_41051723-2 81 -0.350481 hybrid +140_2-3 Q0 MARCO_32_598155108-2 82 -0.351370 hybrid +140_2-3 Q0 KILT_54453536-2 83 -0.352644 hybrid +140_2-3 Q0 MARCO_10_261910952-113 84 -0.352952 hybrid +140_2-3 Q0 MARCO_01_414844028-47 85 -0.353105 hybrid +140_2-3 Q0 MARCO_17_692375270-43 86 -0.354902 hybrid +140_2-3 Q0 MARCO_30_823492726-3 87 -0.356615 hybrid +140_2-3 Q0 MARCO_06_338280924-2 88 -0.361714 hybrid +140_2-3 Q0 MARCO_19_962618007-9 89 -0.365483 hybrid +140_2-3 Q0 MARCO_56_1312611314-6 90 -0.366184 hybrid +140_2-3 Q0 KILT_44612598-2 91 -0.366259 hybrid +140_2-3 Q0 MARCO_24_1720009771-3 92 -0.367549 hybrid +140_2-3 Q0 MARCO_50_1409583712-3 93 -0.367881 hybrid +140_2-3 Q0 MARCO_56_1312601736-3 94 -0.370285 hybrid +140_2-3 Q0 MARCO_27_587939214-2 95 -0.370986 hybrid +140_2-3 Q0 KILT_34665811-5 96 -0.371677 hybrid +140_2-3 Q0 MARCO_24_1720740630-3 97 -0.372028 hybrid +140_2-3 Q0 MARCO_24_1719137544-12 98 -0.372791 hybrid +140_2-3 Q0 KILT_47610149-2 99 -0.373579 hybrid +140_2-3 Q0 KILT_58638608-2 100 -0.373726 hybrid +140_2-5 Q0 KILT_43561772-1 1 0.302908 hybrid +140_2-5 Q0 KILT_42725077-3 2 0.213674 hybrid +140_2-5 Q0 MARCO_56_1312772055-16 3 0.139353 hybrid +140_2-5 Q0 MARCO_10_261910952-35 4 0.135396 hybrid +140_2-5 Q0 KILT_49259076-1 5 0.115419 hybrid +140_2-5 Q0 KILT_55860831-2 6 0.111812 hybrid +140_2-5 Q0 KILT_55860831-4 7 0.111812 hybrid +140_2-5 Q0 KILT_34665811-5 8 0.106530 hybrid +140_2-5 Q0 KILT_42725077-4 9 0.098843 hybrid +140_2-5 Q0 KILT_34665811-1 10 0.071211 hybrid +140_2-5 Q0 MARCO_51_1503907356-3 11 0.053988 hybrid +140_2-5 Q0 KILT_5844410-1 12 -0.007534 hybrid +140_2-5 Q0 KILT_6748189-1 13 -0.058113 hybrid +140_2-5 Q0 KILT_8262517-2 14 -0.074540 hybrid +140_2-5 Q0 MARCO_24_1719591370-2 15 -0.086930 hybrid +140_2-5 Q0 MARCO_48_551661713-9 16 -0.123718 hybrid +140_2-5 Q0 KILT_44905552-1 17 -0.136777 hybrid +140_2-5 Q0 MARCO_11_719397837-7 18 -0.140979 hybrid +140_2-5 Q0 MARCO_04_1288938965-3 19 -0.148124 hybrid +140_2-5 Q0 KILT_42725077-5 20 -0.166192 hybrid +140_2-5 Q0 MARCO_24_1719063965-4 21 -0.171250 hybrid +140_2-5 Q0 MARCO_24_1719591370-5 22 -0.171354 hybrid +140_2-5 Q0 MARCO_56_1312601736-3 23 -0.172579 hybrid +140_2-5 Q0 KILT_37696851-1 24 -0.195460 hybrid +140_2-5 Q0 KILT_61403766-1 25 -0.195885 hybrid +140_2-5 Q0 KILT_9911345-5 26 -0.203647 hybrid +140_2-5 Q0 MARCO_19_962618007-13 27 -0.203914 hybrid +140_2-5 Q0 KILT_44612598-2 28 -0.212025 hybrid +140_2-5 Q0 KILT_58506952-3 29 -0.212361 hybrid +140_2-5 Q0 KILT_52289180-1 30 -0.225861 hybrid +140_2-5 Q0 MARCO_18_464104505-27 31 -0.227641 hybrid +140_2-5 Q0 MARCO_24_1719591370-1 32 -0.232668 hybrid +140_2-5 Q0 KILT_30820858-5 33 -0.233286 hybrid +140_2-5 Q0 KILT_40192700-3 34 -0.244940 hybrid +140_2-5 Q0 KILT_59101211-1 35 -0.250000 hybrid +140_2-5 Q0 MARCO_10_261910952-115 36 -0.251280 hybrid +140_2-5 Q0 KILT_5844410-2 37 -0.264595 hybrid +140_2-5 Q0 MARCO_06_338280924-2 38 -0.264879 hybrid +140_2-5 Q0 KILT_22745248-1 39 -0.266737 hybrid +140_2-5 Q0 MARCO_25_238252721-4 40 -0.286002 hybrid +140_2-5 Q0 KILT_26424848-2 41 -0.286992 hybrid +140_2-5 Q0 MARCO_24_1719591370-3 42 -0.291596 hybrid +140_2-5 Q0 KILT_47400007-4 43 -0.292232 hybrid +140_2-5 Q0 KILT_53802305-1 44 -0.294093 hybrid +140_2-5 Q0 MARCO_04_1028600535-4 45 -0.298302 hybrid +140_2-5 Q0 KILT_33417880-4 46 -0.302652 hybrid +140_2-5 Q0 MARCO_19_604502745-15 47 -0.305029 hybrid +140_2-5 Q0 MARCO_24_1717106305-2 48 -0.308369 hybrid +140_2-5 Q0 KILT_30820858-4 49 -0.308691 hybrid +140_2-5 Q0 KILT_25344064-2 50 -0.313202 hybrid +140_2-5 Q0 MARCO_11_719360104-16 51 -0.313961 hybrid +140_2-5 Q0 KILT_10143932-7 52 -0.320968 hybrid +140_2-5 Q0 MARCO_10_261910952-113 53 -0.324370 hybrid +140_2-5 Q0 MARCO_24_1719591370-4 54 -0.324386 hybrid +140_2-5 Q0 KILT_43741212-1 55 -0.329064 hybrid +140_2-5 Q0 KILT_28896318-6 56 -0.331937 hybrid +140_2-5 Q0 KILT_36594714-2 57 -0.338572 hybrid +140_2-5 Q0 MARCO_58_1505770958-4 58 -0.342773 hybrid +140_2-5 Q0 MARCO_24_1723640659-2 59 -0.345613 hybrid +140_2-5 Q0 MARCO_40_1579003107-3 60 -0.345875 hybrid +140_2-5 Q0 KILT_26991584-1 61 -0.346776 hybrid +140_2-5 Q0 KILT_61403766-2 62 -0.347340 hybrid +140_2-5 Q0 MARCO_10_262081235-36 63 -0.351578 hybrid +140_2-5 Q0 MARCO_43_326243607-53 64 -0.352067 hybrid +140_2-5 Q0 MARCO_19_609025200-19 65 -0.355044 hybrid +140_2-5 Q0 MARCO_19_962618007-14 66 -0.356941 hybrid +140_2-5 Q0 KILT_31332398-5 67 -0.357293 hybrid +140_2-5 Q0 KILT_37445789-15 68 -0.369143 hybrid +140_2-5 Q0 MARCO_08_823623956-9 69 -0.369339 hybrid +140_2-5 Q0 MARCO_25_1034559946-3 70 -0.370595 hybrid +140_2-5 Q0 MARCO_16_2842662700-9 71 -0.372150 hybrid +140_2-5 Q0 MARCO_06_7956176-3 72 -0.374142 hybrid +140_2-5 Q0 MARCO_54_556100414-6 73 -0.374211 hybrid +140_2-5 Q0 MARCO_24_1721020711-5 74 -0.375062 hybrid +140_2-5 Q0 KILT_42725077-6 75 -0.375122 hybrid +140_2-5 Q0 MARCO_18_464104505-38 76 -0.375671 hybrid +140_2-5 Q0 KILT_19541115-1 77 -0.376429 hybrid +140_2-5 Q0 KILT_2369217-1 78 -0.377963 hybrid +140_2-5 Q0 KILT_50059281-3 79 -0.378405 hybrid +140_2-5 Q0 KILT_9911345-7 80 -0.378776 hybrid +140_2-5 Q0 MARCO_56_1312601736-2 81 -0.378782 hybrid +140_2-5 Q0 MARCO_24_1717106305-4 82 -0.380403 hybrid +140_2-5 Q0 MARCO_11_716520125-9 83 -0.382100 hybrid +140_2-5 Q0 KILT_50059281-1 84 -0.383171 hybrid +140_2-5 Q0 MARCO_17_375168661-9 85 -0.383579 hybrid +140_2-5 Q0 MARCO_37_1276615258-14 86 -0.383820 hybrid +140_2-5 Q0 MARCO_19_962618007-16 87 -0.383904 hybrid +140_2-5 Q0 KILT_4922821-5 88 -0.384458 hybrid +140_2-5 Q0 MARCO_51_1888464926-19 89 -0.385888 hybrid +140_2-5 Q0 MARCO_56_1312424712-3 90 -0.386314 hybrid +140_2-5 Q0 MARCO_32_883608326-2 91 -0.388481 hybrid +140_2-5 Q0 MARCO_04_1288938965-6 92 -0.392250 hybrid +140_2-5 Q0 MARCO_27_588863416-16 93 -0.393298 hybrid +140_2-5 Q0 KILT_50059281-2 94 -0.393636 hybrid +140_2-5 Q0 MARCO_43_772024634-1 95 -0.398458 hybrid +140_2-5 Q0 KILT_5844410-4 96 -0.400268 hybrid +140_2-5 Q0 KILT_40111345-5 97 -0.400270 hybrid +140_2-5 Q0 MARCO_10_261910952-112 98 -0.400816 hybrid +140_2-5 Q0 MARCO_17_2374067149-15 99 -0.402077 hybrid +140_2-5 Q0 MARCO_16_4122695792-126 100 -0.402366 hybrid +140_3-1 Q0 MARCO_45_1439590880-1 1 0.426929 hybrid +140_3-1 Q0 MARCO_24_1718716761-3 2 0.331805 hybrid +140_3-1 Q0 KILT_42725077-7 3 0.010349 hybrid +140_3-1 Q0 MARCO_06_1128173535-141 4 -0.052300 hybrid +140_3-1 Q0 KILT_24833975-1 5 -0.055954 hybrid +140_3-1 Q0 MARCO_24_1718716761-2 6 -0.074538 hybrid +140_3-1 Q0 KILT_4414093-9 7 -0.075119 hybrid +140_3-1 Q0 MARCO_24_1718716761-4 8 -0.129008 hybrid +140_3-1 Q0 KILT_36378064-7 9 -0.141707 hybrid +140_3-1 Q0 KILT_24834021-1 10 -0.167048 hybrid +140_3-1 Q0 KILT_2001834-2 11 -0.183271 hybrid +140_3-1 Q0 MARCO_30_1079495440-5 12 -0.184253 hybrid +140_3-1 Q0 MARCO_47_1604463871-10 13 -0.216543 hybrid +140_3-1 Q0 KILT_9064673-1 14 -0.243587 hybrid +140_3-1 Q0 MARCO_54_575373635-2 15 -0.249999 hybrid +140_3-1 Q0 MARCO_30_1029169387-5 16 -0.265096 hybrid +140_3-1 Q0 KILT_4414093-7 17 -0.276635 hybrid +140_3-1 Q0 KILT_57135645-1 18 -0.292065 hybrid +140_3-1 Q0 MARCO_16_1680442149-19 19 -0.299368 hybrid +140_3-1 Q0 MARCO_31_1435531071-7 20 -0.307872 hybrid +140_3-1 Q0 KILT_42725077-6 21 -0.319941 hybrid +140_3-1 Q0 KILT_45683381-1 22 -0.333764 hybrid +140_3-1 Q0 MARCO_08_823639828-1 23 -0.336889 hybrid +140_3-1 Q0 KILT_46333505-2 24 -0.336989 hybrid +140_3-1 Q0 MARCO_05_1363328058-1 25 -0.344431 hybrid +140_3-1 Q0 KILT_15459789-6 26 -0.353060 hybrid +140_3-1 Q0 MARCO_19_582415817-11 27 -0.354765 hybrid +140_3-1 Q0 MARCO_22_1022149739-7 28 -0.359832 hybrid +140_3-1 Q0 MARCO_11_716556603-5 29 -0.359847 hybrid +140_3-1 Q0 KILT_32594779-1 30 -0.376213 hybrid +140_3-1 Q0 KILT_8881481-1 31 -0.376742 hybrid +140_3-1 Q0 KILT_5928552-3 32 -0.380792 hybrid +140_3-1 Q0 KILT_42085081-2 33 -0.383941 hybrid +140_3-1 Q0 MARCO_50_1675783459-25 34 -0.385270 hybrid +140_3-1 Q0 MARCO_24_1718716761-5 35 -0.385504 hybrid +140_3-1 Q0 MARCO_01_1176264230-7 36 -0.388590 hybrid +140_3-1 Q0 MARCO_45_1438342779-1 37 -0.389132 hybrid +140_3-1 Q0 MARCO_22_1016658646-9 38 -0.390965 hybrid +140_3-1 Q0 MARCO_01_1064363562-2 39 -0.391827 hybrid +140_3-1 Q0 MARCO_30_1029169387-17 40 -0.403769 hybrid +140_3-1 Q0 MARCO_08_823639828-2 41 -0.404495 hybrid +140_3-1 Q0 KILT_28024638-10 42 -0.404702 hybrid +140_3-1 Q0 MARCO_16_1680442149-17 43 -0.408196 hybrid +140_3-1 Q0 KILT_35652421-6 44 -0.411670 hybrid +140_3-1 Q0 MARCO_31_1435531071-5 45 -0.415699 hybrid +140_3-1 Q0 KILT_24258140-2 46 -0.416200 hybrid +140_3-1 Q0 MARCO_43_981567595-2 47 -0.417421 hybrid +140_3-1 Q0 MARCO_11_716921887-5 48 -0.417534 hybrid +140_3-1 Q0 KILT_57138163-2 49 -0.419170 hybrid +140_3-1 Q0 MARCO_30_1029169387-12 50 -0.421653 hybrid +140_3-1 Q0 KILT_2677773-3 51 -0.425891 hybrid +140_3-1 Q0 MARCO_11_715499610-7 52 -0.428442 hybrid +140_3-1 Q0 MARCO_14_306510209-19 53 -0.429497 hybrid +140_3-1 Q0 MARCO_08_232490160-18 54 -0.434105 hybrid +140_3-1 Q0 MARCO_39_608961831-13 55 -0.434513 hybrid +140_3-1 Q0 KILT_28896318-3 56 -0.437056 hybrid +140_3-1 Q0 MARCO_24_1719317684-11 57 -0.440091 hybrid +140_3-1 Q0 KILT_9292595-8 58 -0.441241 hybrid +140_3-1 Q0 MARCO_11_715499610-5 59 -0.441461 hybrid +140_3-1 Q0 KILT_5599457-7 60 -0.441918 hybrid +140_3-1 Q0 MARCO_56_504916707-2 61 -0.442783 hybrid +140_3-1 Q0 MARCO_01_1176264230-6 62 -0.444860 hybrid +140_3-1 Q0 MARCO_49_1589455621-223 63 -0.448600 hybrid +140_3-1 Q0 KILT_43639639-1 64 -0.449640 hybrid +140_3-1 Q0 KILT_27437444-1 65 -0.453628 hybrid +140_3-1 Q0 MARCO_55_1285550962-1 66 -0.453858 hybrid +140_3-1 Q0 MARCO_30_1049355101-5 67 -0.454427 hybrid +140_3-1 Q0 MARCO_27_527989993-3 68 -0.456860 hybrid +140_3-1 Q0 KILT_30078014-6 69 -0.457928 hybrid +140_3-1 Q0 KILT_20549820-9 70 -0.465118 hybrid +140_3-1 Q0 KILT_2677773-1 71 -0.467524 hybrid +140_3-1 Q0 MARCO_16_3146698038-3 72 -0.470004 hybrid +140_3-1 Q0 KILT_4414093-13 73 -0.472288 hybrid +140_3-1 Q0 KILT_1442062-2 74 -0.472804 hybrid +140_3-1 Q0 KILT_36481627-1 75 -0.474859 hybrid +140_3-1 Q0 KILT_378054-8 76 -0.475215 hybrid +140_3-1 Q0 KILT_44973671-2 77 -0.475389 hybrid +140_3-1 Q0 KILT_7567100-3 78 -0.476745 hybrid +140_3-1 Q0 KILT_28678189-1 79 -0.477826 hybrid +140_3-1 Q0 MARCO_24_1718303986-2 80 -0.478357 hybrid +140_3-1 Q0 MARCO_30_1029169387-4 81 -0.478909 hybrid +140_3-1 Q0 KILT_2001834-1 82 -0.479426 hybrid +140_3-1 Q0 MARCO_34_1754841682-1 83 -0.480315 hybrid +140_3-1 Q0 KILT_43665522-2 84 -0.482171 hybrid +140_3-1 Q0 KILT_52518164-1 85 -0.483378 hybrid +140_3-1 Q0 KILT_1442062-1 86 -0.484094 hybrid +140_3-1 Q0 MARCO_18_2138235441-11 87 -0.485085 hybrid +140_3-1 Q0 MARCO_30_1049355101-6 88 -0.485635 hybrid +140_3-1 Q0 KILT_4414044-3 89 -0.485655 hybrid +140_3-1 Q0 MARCO_16_1725539004-20 90 -0.487658 hybrid +140_3-1 Q0 MARCO_16_1108971963-11 91 -0.487961 hybrid +140_3-1 Q0 MARCO_00_772118302-10 92 -0.488315 hybrid +140_3-1 Q0 MARCO_31_1436154089-9 93 -0.488452 hybrid +140_3-1 Q0 MARCO_30_1049345493-2 94 -0.489544 hybrid +140_3-1 Q0 MARCO_00_772118302-6 95 -0.491792 hybrid +140_3-1 Q0 KILT_52002085-1 96 -0.492289 hybrid +140_3-1 Q0 KILT_4414044-4 97 -0.493363 hybrid +140_3-1 Q0 KILT_27437444-2 98 -0.493553 hybrid +140_3-1 Q0 KILT_48756448-1 99 -0.494882 hybrid +140_3-1 Q0 MARCO_11_712646033-5 100 -0.494985 hybrid +140_3-3 Q0 MARCO_24_1718716761-3 1 0.593435 hybrid +140_3-3 Q0 MARCO_24_1718716761-4 2 0.250000 hybrid +140_3-3 Q0 MARCO_16_1680442149-37 3 0.050527 hybrid +140_3-3 Q0 MARCO_16_1680442149-32 4 0.027756 hybrid +140_3-3 Q0 MARCO_30_1079495440-5 5 0.023307 hybrid +140_3-3 Q0 MARCO_45_1439590880-1 6 0.012889 hybrid +140_3-3 Q0 MARCO_16_1680442149-5 7 -0.065716 hybrid +140_3-3 Q0 MARCO_59_379371313-1 8 -0.067006 hybrid +140_3-3 Q0 MARCO_16_1680442149-8 9 -0.081555 hybrid +140_3-3 Q0 MARCO_13_129196314-28 10 -0.081709 hybrid +140_3-3 Q0 MARCO_59_379371313-3 11 -0.086014 hybrid +140_3-3 Q0 MARCO_16_1680442149-30 12 -0.095427 hybrid +140_3-3 Q0 MARCO_24_1718716761-2 13 -0.098470 hybrid +140_3-3 Q0 KILT_42725077-7 14 -0.109486 hybrid +140_3-3 Q0 KILT_41758870-4 15 -0.113814 hybrid +140_3-3 Q0 MARCO_16_1680442149-7 16 -0.132024 hybrid +140_3-3 Q0 MARCO_39_600507896-5 17 -0.140379 hybrid +140_3-3 Q0 MARCO_30_1044368084-2 18 -0.158109 hybrid +140_3-3 Q0 MARCO_50_1668506736-18 19 -0.158466 hybrid +140_3-3 Q0 MARCO_16_1680442149-3 20 -0.168118 hybrid +140_3-3 Q0 MARCO_30_1044368084-1 21 -0.169045 hybrid +140_3-3 Q0 MARCO_58_1735306367-1 22 -0.190977 hybrid +140_3-3 Q0 MARCO_50_1409583712-5 23 -0.191747 hybrid +140_3-3 Q0 KILT_23852998-4 24 -0.205392 hybrid +140_3-3 Q0 KILT_53847802-3 25 -0.211310 hybrid +140_3-3 Q0 MARCO_20_1740315606-132 26 -0.213143 hybrid +140_3-3 Q0 MARCO_24_1717116209-8 27 -0.229159 hybrid +140_3-3 Q0 KILT_37157102-2 28 -0.241809 hybrid +140_3-3 Q0 MARCO_16_2872672276-28 29 -0.243483 hybrid +140_3-3 Q0 MARCO_03_1119841711-2 30 -0.250000 hybrid +140_3-3 Q0 MARCO_03_1119841711-4 31 -0.250000 hybrid +140_3-3 Q0 MARCO_16_1680442149-31 32 -0.253237 hybrid +140_3-3 Q0 MARCO_32_598533958-6 33 -0.268841 hybrid +140_3-3 Q0 MARCO_52_1181039218-18 34 -0.275691 hybrid +140_3-3 Q0 KILT_24833975-1 35 -0.279638 hybrid +140_3-3 Q0 MARCO_17_1797243571-4 36 -0.280451 hybrid +140_3-3 Q0 MARCO_55_1285550962-4 37 -0.288347 hybrid +140_3-3 Q0 MARCO_05_1363328058-1 38 -0.290282 hybrid +140_3-3 Q0 MARCO_04_783332913-21 39 -0.290344 hybrid +140_3-3 Q0 MARCO_17_1797216899-3 40 -0.297825 hybrid +140_3-3 Q0 KILT_12311661-5 41 -0.298595 hybrid +140_3-3 Q0 MARCO_06_1128173535-141 42 -0.299424 hybrid +140_3-3 Q0 MARCO_56_1312424712-3 43 -0.307486 hybrid +140_3-3 Q0 MARCO_17_429991603-52 44 -0.316805 hybrid +140_3-3 Q0 KILT_1455571-2 45 -0.317345 hybrid +140_3-3 Q0 MARCO_06_1203287517-321 46 -0.317722 hybrid +140_3-3 Q0 MARCO_04_783332913-12 47 -0.319530 hybrid +140_3-3 Q0 MARCO_17_429991603-47 48 -0.323133 hybrid +140_3-3 Q0 MARCO_41_1449203424-19 49 -0.323716 hybrid +140_3-3 Q0 KILT_46790468-3 50 -0.324085 hybrid +140_3-3 Q0 MARCO_01_404587467-5 51 -0.327963 hybrid +140_3-3 Q0 MARCO_16_1680442149-16 52 -0.329223 hybrid +140_3-3 Q0 MARCO_16_1680442149-27 53 -0.329743 hybrid +140_3-3 Q0 MARCO_20_1740315606-9 54 -0.330299 hybrid +140_3-3 Q0 MARCO_54_1590033423-1 55 -0.335902 hybrid +140_3-3 Q0 MARCO_39_600507896-10 56 -0.339997 hybrid +140_3-3 Q0 MARCO_56_1312660992-3 57 -0.341421 hybrid +140_3-3 Q0 MARCO_50_1349326789-1 58 -0.345297 hybrid +140_3-3 Q0 MARCO_37_533858651-1 59 -0.345824 hybrid +140_3-3 Q0 KILT_24834021-1 60 -0.347196 hybrid +140_3-3 Q0 MARCO_56_1312265321-9 61 -0.347761 hybrid +140_3-3 Q0 MARCO_24_1723583054-2 62 -0.355056 hybrid +140_3-3 Q0 MARCO_17_3085832251-10 63 -0.355864 hybrid +140_3-3 Q0 MARCO_20_1740315606-5 64 -0.367201 hybrid +140_3-3 Q0 MARCO_04_783332913-17 65 -0.367880 hybrid +140_3-3 Q0 MARCO_16_1680442149-2 66 -0.368961 hybrid +140_3-3 Q0 MARCO_16_1680442149-26 67 -0.369628 hybrid +140_3-3 Q0 MARCO_24_1615746149-5 68 -0.371236 hybrid +140_3-3 Q0 MARCO_00_359005009-11 69 -0.372857 hybrid +140_3-3 Q0 MARCO_25_1105808639-6 70 -0.373850 hybrid +140_3-3 Q0 MARCO_18_2140260412-8 71 -0.376266 hybrid +140_3-3 Q0 MARCO_16_1680442149-12 72 -0.379977 hybrid +140_3-3 Q0 MARCO_16_1680442149-4 73 -0.382262 hybrid +140_3-3 Q0 KILT_44973671-2 74 -0.383017 hybrid +140_3-3 Q0 MARCO_16_2872672276-80 75 -0.388830 hybrid +140_3-3 Q0 KILT_27221055-2 76 -0.392819 hybrid +140_3-3 Q0 MARCO_50_1423203287-12 77 -0.394460 hybrid +140_3-3 Q0 MARCO_52_1642957318-6 78 -0.396703 hybrid +140_3-3 Q0 MARCO_16_1680442149-25 79 -0.396849 hybrid +140_3-3 Q0 MARCO_40_823838762-6 80 -0.400076 hybrid +140_3-3 Q0 MARCO_16_1680442149-21 81 -0.404856 hybrid +140_3-3 Q0 MARCO_04_783332913-39 82 -0.405462 hybrid +140_3-3 Q0 MARCO_17_429991603-48 83 -0.409090 hybrid +140_3-3 Q0 KILT_42725077-6 84 -0.410810 hybrid +140_3-3 Q0 MARCO_04_783332913-25 85 -0.412926 hybrid +140_3-3 Q0 MARCO_20_1740315606-115 86 -0.415630 hybrid +140_3-3 Q0 MARCO_16_1680442149-6 87 -0.415842 hybrid +140_3-3 Q0 MARCO_16_2872672276-25 88 -0.416056 hybrid +140_3-3 Q0 KILT_37157102-3 89 -0.416412 hybrid +140_3-3 Q0 KILT_25690143-2 90 -0.416789 hybrid +140_3-3 Q0 KILT_48393303-1 91 -0.416807 hybrid +140_3-3 Q0 KILT_42725077-5 92 -0.418738 hybrid +140_3-3 Q0 KILT_52665128-4 93 -0.419523 hybrid +140_3-3 Q0 MARCO_16_4029279131-9 94 -0.421819 hybrid +140_3-3 Q0 MARCO_17_1797216899-2 95 -0.423114 hybrid +140_3-3 Q0 KILT_41339202-2 96 -0.424585 hybrid +140_3-3 Q0 KILT_6481443-1 97 -0.425968 hybrid +140_3-3 Q0 MARCO_10_145182020-2 98 -0.425968 hybrid +140_3-3 Q0 MARCO_16_2872672276-24 99 -0.427866 hybrid +140_3-3 Q0 KILT_905857-6 100 -0.428527 hybrid +140_4-10 Q0 MARCO_17_2985927323-3 1 0.423340 hybrid +140_4-10 Q0 MARCO_17_2985927323-7 2 0.411453 hybrid +140_4-10 Q0 MARCO_17_2985927323-9 3 0.411453 hybrid +140_4-10 Q0 MARCO_20_1605557843-5 4 0.381767 hybrid +140_4-10 Q0 MARCO_17_2985927323-4 5 0.360095 hybrid +140_4-10 Q0 MARCO_30_1025297153-2 6 0.349789 hybrid +140_4-10 Q0 MARCO_20_1605557843-3 7 0.281120 hybrid +140_4-10 Q0 MARCO_20_1605557843-4 8 0.275357 hybrid +140_4-10 Q0 MARCO_20_1605557843-6 9 0.238076 hybrid +140_4-10 Q0 MARCO_17_2985927323-1 10 0.201823 hybrid +140_4-10 Q0 MARCO_05_1762379500-340 11 0.157692 hybrid +140_4-10 Q0 MARCO_17_2985927323-5 12 0.154802 hybrid +140_4-10 Q0 MARCO_20_1605557843-1 13 0.135902 hybrid +140_4-10 Q0 MARCO_30_1048979554-4 14 0.124169 hybrid +140_4-10 Q0 MARCO_17_2985927323-6 15 0.060428 hybrid +140_4-10 Q0 KILT_13583474-1 16 0.017929 hybrid +140_4-10 Q0 MARCO_32_598293543-8 17 0.003636 hybrid +140_4-10 Q0 MARCO_17_2985927323-2 18 -0.140504 hybrid +140_4-10 Q0 KILT_52867-6 19 -0.145014 hybrid +140_4-10 Q0 MARCO_05_1762379500-80 20 -0.175204 hybrid +140_4-10 Q0 MARCO_17_1736077149-13 21 -0.188618 hybrid +140_4-10 Q0 MARCO_22_1016597411-4 22 -0.227218 hybrid +140_4-10 Q0 MARCO_32_597834653-4 23 -0.232417 hybrid +140_4-10 Q0 MARCO_37_1107517688-3 24 -0.250000 hybrid +140_4-10 Q0 MARCO_06_1196219817-386 25 -0.261443 hybrid +140_4-10 Q0 MARCO_37_1107517688-1 26 -0.287216 hybrid +140_4-10 Q0 MARCO_32_597809340-4 27 -0.315939 hybrid +140_4-10 Q0 MARCO_20_1605557843-2 28 -0.317677 hybrid +140_4-10 Q0 MARCO_37_1107517688-4 29 -0.325194 hybrid +140_4-10 Q0 MARCO_32_597809340-7 30 -0.326365 hybrid +140_4-10 Q0 MARCO_03_1381877959-8 31 -0.332502 hybrid +140_4-10 Q0 MARCO_37_1107517688-2 32 -0.343180 hybrid +140_4-10 Q0 MARCO_22_1124107271-4 33 -0.352381 hybrid +140_4-10 Q0 KILT_13583474-8 34 -0.352592 hybrid +140_4-10 Q0 MARCO_00_359005009-2 35 -0.363916 hybrid +140_4-10 Q0 KILT_1842316-6 36 -0.365443 hybrid +140_4-10 Q0 MARCO_30_1029169387-9 37 -0.380013 hybrid +140_4-10 Q0 MARCO_50_1449497274-3 38 -0.390689 hybrid +140_4-10 Q0 MARCO_36_346990231-3 39 -0.391835 hybrid +140_4-10 Q0 MARCO_22_1016868225-2 40 -0.394708 hybrid +140_4-10 Q0 MARCO_17_2985630803-6 41 -0.398569 hybrid +140_4-10 Q0 MARCO_17_2985927323-8 42 -0.411535 hybrid +140_4-10 Q0 KILT_33457122-1 43 -0.413860 hybrid +140_4-10 Q0 MARCO_41_1187644165-41 44 -0.414583 hybrid +140_4-10 Q0 MARCO_36_1585191833-11 45 -0.414844 hybrid +140_4-10 Q0 MARCO_24_1719707759-1 46 -0.416276 hybrid +140_4-10 Q0 KILT_2487817-3 47 -0.417266 hybrid +140_4-10 Q0 MARCO_41_1187644165-74 48 -0.424157 hybrid +140_4-10 Q0 MARCO_00_358922652-6 49 -0.428112 hybrid +140_4-10 Q0 MARCO_30_1025297153-7 50 -0.429516 hybrid +140_4-10 Q0 MARCO_00_248676682-2 51 -0.431910 hybrid +140_4-10 Q0 MARCO_56_1312543811-11 52 -0.432176 hybrid +140_4-10 Q0 MARCO_36_1001217102-29 53 -0.433110 hybrid +140_4-10 Q0 MARCO_51_38815629-2 54 -0.434427 hybrid +140_4-10 Q0 KILT_29165924-1 55 -0.438597 hybrid +140_4-10 Q0 MARCO_48_1525195976-1 56 -0.439142 hybrid +140_4-10 Q0 MARCO_17_1733454757-14 57 -0.440281 hybrid +140_4-10 Q0 MARCO_37_171411833-13 58 -0.441027 hybrid +140_4-10 Q0 MARCO_17_2502653640-3 59 -0.447855 hybrid +140_4-10 Q0 MARCO_36_1585133865-7 60 -0.449824 hybrid +140_4-10 Q0 MARCO_57_1935960136-19 61 -0.453980 hybrid +140_4-10 Q0 MARCO_24_1719707759-5 62 -0.460852 hybrid +140_4-10 Q0 MARCO_48_849543852-1 63 -0.464981 hybrid +140_4-10 Q0 MARCO_17_2985630803-5 64 -0.468761 hybrid +140_4-10 Q0 MARCO_36_1585191833-5 65 -0.471825 hybrid +140_4-10 Q0 MARCO_02_601055711-3 66 -0.472264 hybrid +140_4-10 Q0 MARCO_36_1004130531-4 67 -0.472505 hybrid +140_4-10 Q0 MARCO_16_2872672276-10 68 -0.474655 hybrid +140_4-10 Q0 MARCO_32_596179161-6 69 -0.475333 hybrid +140_4-10 Q0 KILT_25514581-3 70 -0.477685 hybrid +140_4-10 Q0 KILT_5488-27 71 -0.478612 hybrid +140_4-10 Q0 MARCO_05_858027276-3 72 -0.478985 hybrid +140_4-10 Q0 KILT_1842316-5 73 -0.481525 hybrid +140_4-10 Q0 KILT_2582022-3 74 -0.481590 hybrid +140_4-10 Q0 MARCO_11_904776446-3 75 -0.482234 hybrid +140_4-10 Q0 KILT_36953898-1 76 -0.487567 hybrid +140_4-10 Q0 MARCO_20_1740315606-74 77 -0.489455 hybrid +140_4-10 Q0 MARCO_41_1945476110-10 78 -0.489546 hybrid +140_4-10 Q0 MARCO_24_1717513197-8 79 -0.491206 hybrid +140_4-10 Q0 KILT_29662850-5 80 -0.492206 hybrid +140_4-10 Q0 MARCO_00_249628743-5 81 -0.493123 hybrid +140_4-10 Q0 MARCO_11_1562523903-2 82 -0.494251 hybrid +140_4-10 Q0 MARCO_51_38815629-3 83 -0.494985 hybrid +140_4-10 Q0 KILT_22073970-3 84 -0.495829 hybrid +140_4-10 Q0 KILT_33516231-1 85 -0.498363 hybrid +140_4-10 Q0 MARCO_12_7420345-4 86 -0.499529 hybrid +140_4-10 Q0 MARCO_30_1025297153-4 87 -0.501180 hybrid +140_4-10 Q0 MARCO_20_1376241263-6 88 -0.505886 hybrid +140_4-10 Q0 KILT_11838962-1 89 -0.505925 hybrid +140_4-10 Q0 KILT_4030485-5 90 -0.507875 hybrid +140_4-10 Q0 KILT_12890526-11 91 -0.508371 hybrid +140_4-10 Q0 MARCO_36_1004130531-13 92 -0.509290 hybrid +140_4-10 Q0 MARCO_18_2882560031-17 93 -0.509652 hybrid +140_4-10 Q0 MARCO_32_597834653-3 94 -0.509731 hybrid +140_4-10 Q0 MARCO_41_1187644165-15 95 -0.512440 hybrid +140_4-10 Q0 KILT_2612608-1 96 -0.512928 hybrid +140_4-10 Q0 MARCO_15_1458788650-2 97 -0.514043 hybrid +140_4-10 Q0 MARCO_22_1016597411-3 98 -0.517671 hybrid +140_4-10 Q0 MARCO_36_979659662-4 99 -0.517970 hybrid +140_4-10 Q0 MARCO_11_10819812-10 100 -0.518008 hybrid +140_4-12 Q0 KILT_1551465-4 1 0.250000 hybrid +140_4-12 Q0 MARCO_20_1605557843-4 2 0.242291 hybrid +140_4-12 Q0 KILT_393776-1 3 0.160996 hybrid +140_4-12 Q0 MARCO_17_2985927323-1 4 0.151394 hybrid +140_4-12 Q0 MARCO_17_2985927323-3 5 0.109320 hybrid +140_4-12 Q0 MARCO_18_2882285757-76 6 0.107040 hybrid +140_4-12 Q0 KILT_33516231-1 7 0.105894 hybrid +140_4-12 Q0 MARCO_20_1605557843-3 8 0.077999 hybrid +140_4-12 Q0 MARCO_17_2985927323-2 9 0.025587 hybrid +140_4-12 Q0 MARCO_17_2985927323-7 10 0.024349 hybrid +140_4-12 Q0 MARCO_17_2985927323-9 11 0.024349 hybrid +140_4-12 Q0 KILT_1169818-9 12 0.008306 hybrid +140_4-12 Q0 KILT_682978-3 13 0.003370 hybrid +140_4-12 Q0 KILT_9293703-5 14 -0.017111 hybrid +140_4-12 Q0 MARCO_00_359005009-2 15 -0.023789 hybrid +140_4-12 Q0 MARCO_17_2985630803-11 16 -0.045313 hybrid +140_4-12 Q0 KILT_344458-6 17 -0.077507 hybrid +140_4-12 Q0 MARCO_24_1717513197-2 18 -0.083133 hybrid +140_4-12 Q0 MARCO_20_1605557843-5 19 -0.106795 hybrid +140_4-12 Q0 MARCO_39_607508911-19 20 -0.110974 hybrid +140_4-12 Q0 KILT_60119709-3 21 -0.126182 hybrid +140_4-12 Q0 KILT_33726944-3 22 -0.145123 hybrid +140_4-12 Q0 KILT_25499399-2 23 -0.154297 hybrid +140_4-12 Q0 KILT_3768519-11 24 -0.172750 hybrid +140_4-12 Q0 KILT_11838962-1 25 -0.175333 hybrid +140_4-12 Q0 MARCO_24_1719137544-7 26 -0.183851 hybrid +140_4-12 Q0 KILT_36953425-19 27 -0.187263 hybrid +140_4-12 Q0 MARCO_07_1108721943-3 28 -0.187456 hybrid +140_4-12 Q0 MARCO_17_2985927323-4 29 -0.190338 hybrid +140_4-12 Q0 MARCO_16_2872672276-10 30 -0.191436 hybrid +140_4-12 Q0 MARCO_17_2985630803-10 31 -0.191654 hybrid +140_4-12 Q0 MARCO_36_1585191833-11 32 -0.194261 hybrid +140_4-12 Q0 KILT_33605176-1 33 -0.195391 hybrid +140_4-12 Q0 MARCO_16_3308805274-25 34 -0.198964 hybrid +140_4-12 Q0 KILT_531906-5 35 -0.215814 hybrid +140_4-12 Q0 MARCO_20_1605557843-2 36 -0.222016 hybrid +140_4-12 Q0 MARCO_24_1717345315-2 37 -0.226229 hybrid +140_4-12 Q0 KILT_53327427-2 38 -0.226357 hybrid +140_4-12 Q0 MARCO_17_1736077149-4 39 -0.237716 hybrid +140_4-12 Q0 MARCO_24_1717217394-2 40 -0.249306 hybrid +140_4-12 Q0 MARCO_50_1435234543-29 41 -0.249565 hybrid +140_4-12 Q0 MARCO_37_1107517688-1 42 -0.250000 hybrid +140_4-12 Q0 MARCO_16_2872672276-15 43 -0.251170 hybrid +140_4-12 Q0 KILT_4414093-6 44 -0.257988 hybrid +140_4-12 Q0 KILT_29996272-4 45 -0.263766 hybrid +140_4-12 Q0 MARCO_16_2612348976-22 46 -0.264095 hybrid +140_4-12 Q0 MARCO_24_1717543059-3 47 -0.264600 hybrid +140_4-12 Q0 MARCO_17_2985630803-19 48 -0.269454 hybrid +140_4-12 Q0 MARCO_17_2985630803-17 49 -0.269454 hybrid +140_4-12 Q0 KILT_1842316-3 50 -0.271081 hybrid +140_4-12 Q0 MARCO_37_1107517688-4 51 -0.272840 hybrid +140_4-12 Q0 MARCO_17_2985630803-6 52 -0.274362 hybrid +140_4-12 Q0 KILT_33516231-3 53 -0.275266 hybrid +140_4-12 Q0 MARCO_18_2133549441-8 54 -0.279048 hybrid +140_4-12 Q0 MARCO_17_2985927323-5 55 -0.287515 hybrid +140_4-12 Q0 KILT_52379828-10 56 -0.289151 hybrid +140_4-12 Q0 MARCO_06_587840374-4 57 -0.289681 hybrid +140_4-12 Q0 MARCO_18_2882611869-8 58 -0.301706 hybrid +140_4-12 Q0 MARCO_02_846597908-11 59 -0.310100 hybrid +140_4-12 Q0 MARCO_16_2872830431-42 60 -0.310199 hybrid +140_4-12 Q0 KILT_52159164-2 61 -0.310815 hybrid +140_4-12 Q0 KILT_1346496-4 62 -0.312404 hybrid +140_4-12 Q0 KILT_298966-2 63 -0.313119 hybrid +140_4-12 Q0 MARCO_20_1605557843-6 64 -0.314688 hybrid +140_4-12 Q0 MARCO_32_596258389-4 65 -0.315238 hybrid +140_4-12 Q0 KILT_27278-4 66 -0.315369 hybrid +140_4-12 Q0 MARCO_30_90865311-23 67 -0.318646 hybrid +140_4-12 Q0 KILT_24894540-1 68 -0.319168 hybrid +140_4-12 Q0 KILT_5706211-2 69 -0.320297 hybrid +140_4-12 Q0 MARCO_23_52978072-2 70 -0.322581 hybrid +140_4-12 Q0 KILT_33516231-7 71 -0.324470 hybrid +140_4-12 Q0 MARCO_37_1107517688-2 72 -0.329161 hybrid +140_4-12 Q0 MARCO_37_1107517688-3 73 -0.330320 hybrid +140_4-12 Q0 KILT_344458-5 74 -0.335737 hybrid +140_4-12 Q0 MARCO_06_587820240-6 75 -0.336068 hybrid +140_4-12 Q0 KILT_6232818-2 76 -0.336232 hybrid +140_4-12 Q0 KILT_1622922-2 77 -0.342199 hybrid +140_4-12 Q0 MARCO_18_2882285757-74 78 -0.342294 hybrid +140_4-12 Q0 KILT_47612087-2 79 -0.343407 hybrid +140_4-12 Q0 KILT_7934013-2 80 -0.343460 hybrid +140_4-12 Q0 KILT_21077671-6 81 -0.351218 hybrid +140_4-12 Q0 KILT_52867-6 82 -0.352779 hybrid +140_4-12 Q0 MARCO_17_1835855390-4 83 -0.353218 hybrid +140_4-12 Q0 MARCO_17_2985927323-6 84 -0.353366 hybrid +140_4-12 Q0 MARCO_06_1282718199-309 85 -0.353801 hybrid +140_4-12 Q0 MARCO_17_3105026561-4 86 -0.354955 hybrid +140_4-12 Q0 KILT_42132-42 87 -0.358179 hybrid +140_4-12 Q0 MARCO_27_587888359-4 88 -0.359637 hybrid +140_4-12 Q0 KILT_2771856-3 89 -0.360389 hybrid +140_4-12 Q0 KILT_2280554-1 90 -0.361900 hybrid +140_4-12 Q0 MARCO_54_1590033423-5 91 -0.364073 hybrid +140_4-12 Q0 MARCO_31_1436154089-3 92 -0.365005 hybrid +140_4-12 Q0 KILT_5479-2 93 -0.366980 hybrid +140_4-12 Q0 MARCO_02_611395089-3 94 -0.370989 hybrid +140_4-12 Q0 KILT_9293703-4 95 -0.372590 hybrid +140_4-12 Q0 KILT_9593154-1 96 -0.374570 hybrid +140_4-12 Q0 KILT_21421613-1 97 -0.375510 hybrid +140_4-12 Q0 KILT_33726944-5 98 -0.375909 hybrid +140_4-12 Q0 KILT_2435657-25 99 -0.376562 hybrid +140_4-12 Q0 KILT_13494359-11 100 -0.379087 hybrid +140_4-14 Q0 MARCO_20_1605557843-1 1 0.577997 hybrid +140_4-14 Q0 MARCO_20_1605557843-3 2 0.388994 hybrid +140_4-14 Q0 MARCO_30_1025297153-2 3 0.338234 hybrid +140_4-14 Q0 MARCO_20_1605557843-5 4 0.334620 hybrid +140_4-14 Q0 MARCO_20_1605557843-4 5 0.330976 hybrid +140_4-14 Q0 MARCO_17_2985927323-1 6 0.275399 hybrid +140_4-14 Q0 MARCO_20_1605557843-6 7 0.269827 hybrid +140_4-14 Q0 KILT_1787035-1 8 0.250002 hybrid +140_4-14 Q0 MARCO_17_2985927323-7 9 0.231078 hybrid +140_4-14 Q0 MARCO_17_2985927323-9 10 0.231077 hybrid +140_4-14 Q0 MARCO_32_598293543-8 11 0.072676 hybrid +140_4-14 Q0 MARCO_17_2985927323-3 12 0.044548 hybrid +140_4-14 Q0 MARCO_17_2985927323-4 13 0.016776 hybrid +140_4-14 Q0 MARCO_17_2985927323-5 14 -0.041037 hybrid +140_4-14 Q0 MARCO_15_1458788650-1 15 -0.049281 hybrid +140_4-14 Q0 KILT_56498414-1 16 -0.060424 hybrid +140_4-14 Q0 MARCO_29_1416026564-4 17 -0.081733 hybrid +140_4-14 Q0 MARCO_17_2985927323-6 18 -0.104218 hybrid +140_4-14 Q0 KILT_35630022-1 19 -0.104612 hybrid +140_4-14 Q0 MARCO_22_1649531162-7 20 -0.108091 hybrid +140_4-14 Q0 MARCO_15_1458788650-2 21 -0.141542 hybrid +140_4-14 Q0 KILT_8664179-1 22 -0.154513 hybrid +140_4-14 Q0 MARCO_50_2509666208-24 23 -0.156756 hybrid +140_4-14 Q0 KILT_4358025-1 24 -0.159435 hybrid +140_4-14 Q0 KILT_636122-2 25 -0.191809 hybrid +140_4-14 Q0 KILT_20596907-1 26 -0.217286 hybrid +140_4-14 Q0 MARCO_17_2904231476-30 27 -0.219992 hybrid +140_4-14 Q0 MARCO_06_1292976322-307 28 -0.235171 hybrid +140_4-14 Q0 MARCO_14_759511167-2 29 -0.245005 hybrid +140_4-14 Q0 KILT_33635030-4 30 -0.248978 hybrid +140_4-14 Q0 MARCO_17_2904231476-31 31 -0.249941 hybrid +140_4-14 Q0 MARCO_05_1762379500-340 32 -0.254072 hybrid +140_4-14 Q0 MARCO_32_1002744496-1 33 -0.257455 hybrid +140_4-14 Q0 MARCO_50_1393777851-20 34 -0.258713 hybrid +140_4-14 Q0 MARCO_17_2904525997-19 35 -0.261247 hybrid +140_4-14 Q0 KILT_488027-1 36 -0.264988 hybrid +140_4-14 Q0 MARCO_17_1861554391-2 37 -0.265470 hybrid +140_4-14 Q0 MARCO_24_1612611095-36 38 -0.267990 hybrid +140_4-14 Q0 MARCO_53_1059405604-5 39 -0.281775 hybrid +140_4-14 Q0 MARCO_53_1059405604-3 40 -0.281775 hybrid +140_4-14 Q0 MARCO_41_1360382018-23 41 -0.292981 hybrid +140_4-14 Q0 MARCO_48_1525195976-1 42 -0.299515 hybrid +140_4-14 Q0 MARCO_37_1107517688-1 43 -0.302151 hybrid +140_4-14 Q0 MARCO_37_1107517688-4 44 -0.307732 hybrid +140_4-14 Q0 MARCO_08_684636613-3 45 -0.307987 hybrid +140_4-14 Q0 MARCO_06_1085265262-116 46 -0.318171 hybrid +140_4-14 Q0 MARCO_53_1059405604-1 47 -0.319043 hybrid +140_4-14 Q0 MARCO_10_236893276-4 48 -0.319574 hybrid +140_4-14 Q0 MARCO_12_144690654-108 49 -0.321209 hybrid +140_4-14 Q0 KILT_25387276-3 50 -0.327343 hybrid +140_4-14 Q0 KILT_58389053-1 51 -0.327584 hybrid +140_4-14 Q0 MARCO_06_1085265262-115 52 -0.327797 hybrid +140_4-14 Q0 MARCO_37_1107482875-1 53 -0.327918 hybrid +140_4-14 Q0 MARCO_10_840265085-23 54 -0.329786 hybrid +140_4-14 Q0 MARCO_44_1569285448-6 55 -0.331625 hybrid +140_4-14 Q0 MARCO_51_38815629-5 56 -0.331744 hybrid +140_4-14 Q0 MARCO_50_2497807304-41 57 -0.332252 hybrid +140_4-14 Q0 MARCO_26_374111754-3 58 -0.334000 hybrid +140_4-14 Q0 MARCO_51_38815629-2 59 -0.334669 hybrid +140_4-14 Q0 MARCO_48_849543852-10 60 -0.339080 hybrid +140_4-14 Q0 MARCO_06_1074962336-225 61 -0.340048 hybrid +140_4-14 Q0 MARCO_57_2131429950-14 62 -0.342754 hybrid +140_4-14 Q0 KILT_32309246-1 63 -0.344443 hybrid +140_4-14 Q0 KILT_7548205-3 64 -0.348175 hybrid +140_4-14 Q0 KILT_1036175-12 65 -0.349269 hybrid +140_4-14 Q0 MARCO_48_849543852-7 66 -0.351971 hybrid +140_4-14 Q0 MARCO_17_2904525997-20 67 -0.352243 hybrid +140_4-14 Q0 MARCO_41_1360382018-7 68 -0.354595 hybrid +140_4-14 Q0 MARCO_48_849543852-11 69 -0.360920 hybrid +140_4-14 Q0 MARCO_27_842250816-1 70 -0.363699 hybrid +140_4-14 Q0 MARCO_17_2904231476-14 71 -0.364185 hybrid +140_4-14 Q0 KILT_26748455-1 72 -0.367740 hybrid +140_4-14 Q0 KILT_26550439-1 73 -0.372081 hybrid +140_4-14 Q0 MARCO_02_1126821826-72 74 -0.373098 hybrid +140_4-14 Q0 MARCO_39_1238313519-1 75 -0.373340 hybrid +140_4-14 Q0 MARCO_20_1601814167-7 76 -0.375582 hybrid +140_4-14 Q0 KILT_4358025-2 77 -0.378960 hybrid +140_4-14 Q0 KILT_8139154-1 78 -0.379078 hybrid +140_4-14 Q0 MARCO_14_759487194-3 79 -0.381512 hybrid +140_4-14 Q0 MARCO_14_759490622-3 80 -0.381512 hybrid +140_4-14 Q0 KILT_58952984-1 81 -0.383128 hybrid +140_4-14 Q0 MARCO_25_1421855953-1 82 -0.383437 hybrid +140_4-14 Q0 MARCO_51_38815629-6 83 -0.385760 hybrid +140_4-14 Q0 MARCO_30_1048979554-4 84 -0.386356 hybrid +140_4-14 Q0 MARCO_09_857944853-3 85 -0.387160 hybrid +140_4-14 Q0 MARCO_16_2615657599-15 86 -0.387923 hybrid +140_4-14 Q0 MARCO_51_38815629-1 87 -0.390030 hybrid +140_4-14 Q0 MARCO_05_1762379500-80 88 -0.391010 hybrid +140_4-14 Q0 MARCO_48_849543852-1 89 -0.391549 hybrid +140_4-14 Q0 KILT_38567893-1 90 -0.394829 hybrid +140_4-14 Q0 MARCO_20_1603352026-2 91 -0.398416 hybrid +140_4-14 Q0 MARCO_41_1242697460-36 92 -0.398811 hybrid +140_4-14 Q0 KILT_61128833-2 93 -0.399306 hybrid +140_4-14 Q0 MARCO_37_1107517688-2 94 -0.399356 hybrid +140_4-14 Q0 MARCO_51_38815629-3 95 -0.399356 hybrid +140_4-14 Q0 KILT_39218500-1 96 -0.399551 hybrid +140_4-14 Q0 MARCO_20_769971781-4 97 -0.400473 hybrid +140_4-14 Q0 MARCO_16_2875040042-18 98 -0.402080 hybrid +140_4-14 Q0 MARCO_56_295648966-4 99 -0.403025 hybrid +140_4-14 Q0 KILT_25387276-1 100 -0.403188 hybrid +140_4-16 Q0 MARCO_30_1025297153-2 1 0.409048 hybrid +140_4-16 Q0 MARCO_20_1605557843-5 2 0.338213 hybrid +140_4-16 Q0 MARCO_17_2985927323-4 3 0.288663 hybrid +140_4-16 Q0 MARCO_20_1605557843-6 4 0.252864 hybrid +140_4-16 Q0 MARCO_20_1605557843-3 5 0.195391 hybrid +140_4-16 Q0 MARCO_17_2985927323-1 6 0.133368 hybrid +140_4-16 Q0 MARCO_17_1736077149-13 7 0.115262 hybrid +140_4-16 Q0 MARCO_17_2985927323-3 8 0.088067 hybrid +140_4-16 Q0 MARCO_20_1605557843-1 9 0.055624 hybrid +140_4-16 Q0 MARCO_17_2985927323-5 10 -0.051002 hybrid +140_4-16 Q0 MARCO_05_1762379500-340 11 -0.114379 hybrid +140_4-16 Q0 MARCO_05_1762379500-80 12 -0.178982 hybrid +140_4-16 Q0 MARCO_06_1059528231-41 13 -0.187667 hybrid +140_4-16 Q0 MARCO_32_597088109-3 14 -0.230911 hybrid +140_4-16 Q0 KILT_317450-4 15 -0.231522 hybrid +140_4-16 Q0 KILT_54116161-1 16 -0.234507 hybrid +140_4-16 Q0 MARCO_29_796093340-4 17 -0.235687 hybrid +140_4-16 Q0 MARCO_30_1048979554-4 18 -0.264129 hybrid +140_4-16 Q0 MARCO_06_1115036832-126 19 -0.302294 hybrid +140_4-16 Q0 MARCO_06_1059528231-34 20 -0.304877 hybrid +140_4-16 Q0 MARCO_17_2985927323-7 21 -0.312369 hybrid +140_4-16 Q0 MARCO_17_2985927323-9 22 -0.312369 hybrid +140_4-16 Q0 KILT_317450-5 23 -0.312546 hybrid +140_4-16 Q0 KILT_642012-12 24 -0.317534 hybrid +140_4-16 Q0 MARCO_10_802223254-13 25 -0.318533 hybrid +140_4-16 Q0 MARCO_41_1848011796-1 26 -0.334532 hybrid +140_4-16 Q0 MARCO_20_1605557843-4 27 -0.340823 hybrid +140_4-16 Q0 MARCO_15_1458788650-2 28 -0.343594 hybrid +140_4-16 Q0 KILT_317450-3 29 -0.350838 hybrid +140_4-16 Q0 MARCO_00_248676682-2 30 -0.352826 hybrid +140_4-16 Q0 MARCO_32_1078107602-1 31 -0.361452 hybrid +140_4-16 Q0 MARCO_30_815591824-9 32 -0.361950 hybrid +140_4-16 Q0 MARCO_02_490003235-3 33 -0.375167 hybrid +140_4-16 Q0 MARCO_52_361644556-3 34 -0.378434 hybrid +140_4-16 Q0 MARCO_41_1848531894-2 35 -0.385336 hybrid +140_4-16 Q0 MARCO_50_1449497274-18 36 -0.388515 hybrid +140_4-16 Q0 MARCO_31_1320165783-7 37 -0.395452 hybrid +140_4-16 Q0 MARCO_55_102982259-5 38 -0.400406 hybrid +140_4-16 Q0 MARCO_00_249628743-5 39 -0.402114 hybrid +140_4-16 Q0 MARCO_06_1128173535-33 40 -0.404890 hybrid +140_4-16 Q0 MARCO_10_846236681-2 41 -0.407650 hybrid +140_4-16 Q0 MARCO_00_248805684-3 42 -0.411285 hybrid +140_4-16 Q0 MARCO_15_530439189-2 43 -0.411670 hybrid +140_4-16 Q0 MARCO_22_1059756238-5 44 -0.416146 hybrid +140_4-16 Q0 MARCO_18_2882627036-2 45 -0.417146 hybrid +140_4-16 Q0 MARCO_00_250113393-1 46 -0.426128 hybrid +140_4-16 Q0 MARCO_52_362985386-3 47 -0.428371 hybrid +140_4-16 Q0 MARCO_32_598293543-8 48 -0.429393 hybrid +140_4-16 Q0 MARCO_05_1908155114-294 49 -0.430191 hybrid +140_4-16 Q0 MARCO_50_635394862-4 50 -0.431490 hybrid +140_4-16 Q0 MARCO_33_176580101-8 51 -0.445294 hybrid +140_4-16 Q0 MARCO_22_1059307822-7 52 -0.447213 hybrid +140_4-16 Q0 MARCO_05_1762379500-39 53 -0.447227 hybrid +140_4-16 Q0 MARCO_15_106080441-6 54 -0.448493 hybrid +140_4-16 Q0 MARCO_51_952331299-10 55 -0.449340 hybrid +140_4-16 Q0 MARCO_23_484049913-6 56 -0.449559 hybrid +140_4-16 Q0 MARCO_52_362022081-4 57 -0.453671 hybrid +140_4-16 Q0 MARCO_47_136276154-4 58 -0.456710 hybrid +140_4-16 Q0 MARCO_10_447030536-2 59 -0.460342 hybrid +140_4-16 Q0 MARCO_23_688404889-5 60 -0.462335 hybrid +140_4-16 Q0 MARCO_42_1711949780-3 61 -0.462468 hybrid +140_4-16 Q0 MARCO_50_1410976211-12 62 -0.464489 hybrid +140_4-16 Q0 MARCO_32_1070403830-6 63 -0.469353 hybrid +140_4-16 Q0 MARCO_52_453398700-3 64 -0.469388 hybrid +140_4-16 Q0 MARCO_37_1107482875-1 65 -0.469727 hybrid +140_4-16 Q0 MARCO_05_1763861392-2 66 -0.470683 hybrid +140_4-16 Q0 MARCO_28_1757844980-9 67 -0.471548 hybrid +140_4-16 Q0 MARCO_29_30311043-2 68 -0.471782 hybrid +140_4-16 Q0 MARCO_42_257086203-5 69 -0.474468 hybrid +140_4-16 Q0 MARCO_32_1065534633-3 70 -0.475621 hybrid +140_4-16 Q0 MARCO_52_362993341-5 71 -0.476225 hybrid +140_4-16 Q0 MARCO_22_1059937754-2 72 -0.478443 hybrid +140_4-16 Q0 MARCO_05_1759245897-2 73 -0.480760 hybrid +140_4-16 Q0 MARCO_50_635155721-13 74 -0.482644 hybrid +140_4-16 Q0 MARCO_06_329487373-3 75 -0.484990 hybrid +140_4-16 Q0 MARCO_37_1107517688-4 76 -0.486036 hybrid +140_4-16 Q0 MARCO_09_542673162-5 77 -0.489338 hybrid +140_4-16 Q0 MARCO_55_96056381-3 78 -0.490953 hybrid +140_4-16 Q0 MARCO_25_1404256933-3 79 -0.491024 hybrid +140_4-16 Q0 MARCO_25_1434320634-10 80 -0.493429 hybrid +140_4-16 Q0 MARCO_32_763693737-10 81 -0.496021 hybrid +140_4-16 Q0 MARCO_57_1225137256-26 82 -0.496409 hybrid +140_4-16 Q0 MARCO_37_1107517688-2 83 -0.500537 hybrid +140_4-16 Q0 MARCO_10_802223254-5 84 -0.503841 hybrid +140_4-16 Q0 MARCO_05_516121492-7 85 -0.505014 hybrid +140_4-16 Q0 MARCO_37_1107517688-3 86 -0.505137 hybrid +140_4-16 Q0 MARCO_31_883686915-5 87 -0.506954 hybrid +140_4-16 Q0 MARCO_23_483998227-5 88 -0.507422 hybrid +140_4-16 Q0 MARCO_11_723809604-5 89 -0.509559 hybrid +140_4-16 Q0 MARCO_57_1350356164-2 90 -0.510325 hybrid +140_4-16 Q0 MARCO_25_1434320634-8 91 -0.511220 hybrid +140_4-16 Q0 MARCO_09_542673162-2 92 -0.511789 hybrid +140_4-16 Q0 MARCO_55_102982259-2 93 -0.511935 hybrid +140_4-16 Q0 MARCO_07_478082445-3 94 -0.511958 hybrid +140_4-16 Q0 MARCO_31_883860827-6 95 -0.514970 hybrid +140_4-16 Q0 MARCO_50_1491472222-6 96 -0.517513 hybrid +140_4-16 Q0 MARCO_22_1059700976-2 97 -0.517583 hybrid +140_4-16 Q0 MARCO_07_1207611158-1 98 -0.518399 hybrid +140_4-16 Q0 MARCO_36_1009233445-8 99 -0.518800 hybrid +140_4-16 Q0 MARCO_55_102481667-8 100 -0.519185 hybrid +140_4-2 Q0 MARCO_30_1029169387-9 1 0.308856 hybrid +140_4-2 Q0 MARCO_48_1535513660-18 2 0.250001 hybrid +140_4-2 Q0 MARCO_32_597834653-1 3 0.154026 hybrid +140_4-2 Q0 KILT_1842316-5 4 0.114668 hybrid +140_4-2 Q0 MARCO_32_597834653-4 5 0.086095 hybrid +140_4-2 Q0 MARCO_24_1719707759-1 6 0.043511 hybrid +140_4-2 Q0 KILT_13583474-1 7 0.043508 hybrid +140_4-2 Q0 MARCO_52_1181039218-4 8 0.039872 hybrid +140_4-2 Q0 MARCO_30_1025297153-1 9 0.034802 hybrid +140_4-2 Q0 MARCO_24_1719707759-8 10 0.016671 hybrid +140_4-2 Q0 MARCO_30_1025297153-4 11 -0.006869 hybrid +140_4-2 Q0 MARCO_24_1719707759-5 12 -0.007863 hybrid +140_4-2 Q0 MARCO_36_1004130531-4 13 -0.048876 hybrid +140_4-2 Q0 MARCO_28_987485845-2 14 -0.050772 hybrid +140_4-2 Q0 MARCO_32_597809340-7 15 -0.067138 hybrid +140_4-2 Q0 MARCO_24_1719707759-2 16 -0.073118 hybrid +140_4-2 Q0 MARCO_22_1016597411-1 17 -0.090755 hybrid +140_4-2 Q0 MARCO_24_1719707759-3 18 -0.125976 hybrid +140_4-2 Q0 MARCO_05_594613048-47 19 -0.127150 hybrid +140_4-2 Q0 MARCO_11_758826070-8 20 -0.138184 hybrid +140_4-2 Q0 MARCO_00_358922652-6 21 -0.141476 hybrid +140_4-2 Q0 MARCO_11_715682058-4 22 -0.149249 hybrid +140_4-2 Q0 MARCO_30_1025297153-7 23 -0.150275 hybrid +140_4-2 Q0 MARCO_11_715682058-1 24 -0.150797 hybrid +140_4-2 Q0 MARCO_24_1717513197-7 25 -0.161065 hybrid +140_4-2 Q0 KILT_29662850-5 26 -0.166954 hybrid +140_4-2 Q0 MARCO_32_597834653-2 27 -0.173011 hybrid +140_4-2 Q0 MARCO_03_446448156-1 28 -0.183571 hybrid +140_4-2 Q0 MARCO_17_3100161904-5 29 -0.189759 hybrid +140_4-2 Q0 MARCO_36_1004130531-1 30 -0.191944 hybrid +140_4-2 Q0 KILT_1842316-6 31 -0.197220 hybrid +140_4-2 Q0 KILT_44268939-1 32 -0.209589 hybrid +140_4-2 Q0 MARCO_19_153356567-11 33 -0.210033 hybrid +140_4-2 Q0 MARCO_30_823498884-2 34 -0.226077 hybrid +140_4-2 Q0 MARCO_51_903670425-2 35 -0.230531 hybrid +140_4-2 Q0 MARCO_30_1048259710-5 36 -0.232931 hybrid +140_4-2 Q0 MARCO_11_715682058-3 37 -0.233911 hybrid +140_4-2 Q0 MARCO_28_813949376-3 38 -0.237622 hybrid +140_4-2 Q0 MARCO_03_448409881-6 39 -0.237713 hybrid +140_4-2 Q0 MARCO_11_758826070-9 40 -0.239920 hybrid +140_4-2 Q0 MARCO_17_3134021343-38 41 -0.240588 hybrid +140_4-2 Q0 MARCO_30_823482957-3 42 -0.248931 hybrid +140_4-2 Q0 MARCO_06_200120676-1 43 -0.249999 hybrid +140_4-2 Q0 MARCO_09_877077911-17 44 -0.265287 hybrid +140_4-2 Q0 MARCO_51_903670425-7 45 -0.267211 hybrid +140_4-2 Q0 MARCO_50_890815532-3 46 -0.270331 hybrid +140_4-2 Q0 KILT_12683744-5 47 -0.273808 hybrid +140_4-2 Q0 MARCO_24_1717513197-8 48 -0.273890 hybrid +140_4-2 Q0 MARCO_19_153356567-9 49 -0.273936 hybrid +140_4-2 Q0 MARCO_39_620476129-24 50 -0.274748 hybrid +140_4-2 Q0 MARCO_00_358922652-1 51 -0.277271 hybrid +140_4-2 Q0 MARCO_52_1181039218-2 52 -0.277562 hybrid +140_4-2 Q0 KILT_1870519-4 53 -0.277737 hybrid +140_4-2 Q0 MARCO_32_597809340-1 54 -0.278947 hybrid +140_4-2 Q0 MARCO_19_1470024508-8 55 -0.281311 hybrid +140_4-2 Q0 KILT_40602423-5 56 -0.283328 hybrid +140_4-2 Q0 MARCO_11_758826070-10 57 -0.286084 hybrid +140_4-2 Q0 MARCO_19_153961264-3 58 -0.290581 hybrid +140_4-2 Q0 MARCO_32_597809340-6 59 -0.295013 hybrid +140_4-2 Q0 MARCO_32_597809340-2 60 -0.295763 hybrid +140_4-2 Q0 MARCO_11_715869510-1 61 -0.302709 hybrid +140_4-2 Q0 MARCO_19_153356567-8 62 -0.303726 hybrid +140_4-2 Q0 MARCO_22_1016597411-2 63 -0.304306 hybrid +140_4-2 Q0 MARCO_32_597809340-4 64 -0.304735 hybrid +140_4-2 Q0 MARCO_30_1048979554-3 65 -0.305019 hybrid +140_4-2 Q0 MARCO_28_309794017-7 66 -0.306619 hybrid +140_4-2 Q0 MARCO_30_823506076-6 67 -0.307069 hybrid +140_4-2 Q0 MARCO_52_1181039218-13 68 -0.309653 hybrid +140_4-2 Q0 MARCO_19_153961264-1 69 -0.315443 hybrid +140_4-2 Q0 MARCO_11_716304225-15 70 -0.315670 hybrid +140_4-2 Q0 MARCO_11_758826070-12 71 -0.317735 hybrid +140_4-2 Q0 MARCO_11_716547883-1 72 -0.320511 hybrid +140_4-2 Q0 MARCO_04_1016596058-2 73 -0.326076 hybrid +140_4-2 Q0 MARCO_03_446448156-4 74 -0.333534 hybrid +140_4-2 Q0 MARCO_52_1181039218-7 75 -0.336676 hybrid +140_4-2 Q0 MARCO_02_611379847-3 76 -0.337858 hybrid +140_4-2 Q0 MARCO_05_1705103959-1 77 -0.338503 hybrid +140_4-2 Q0 KILT_44973671-2 78 -0.345100 hybrid +140_4-2 Q0 MARCO_00_358953289-1 79 -0.345839 hybrid +140_4-2 Q0 MARCO_19_153356567-2 80 -0.348728 hybrid +140_4-2 Q0 KILT_13583474-4 81 -0.349407 hybrid +140_4-2 Q0 MARCO_03_446448156-3 82 -0.351728 hybrid +140_4-2 Q0 MARCO_49_1858156120-6 83 -0.352843 hybrid +140_4-2 Q0 MARCO_57_835996500-4 84 -0.353038 hybrid +140_4-2 Q0 KILT_13583474-3 85 -0.354671 hybrid +140_4-2 Q0 MARCO_29_1413290396-3 86 -0.355274 hybrid +140_4-2 Q0 MARCO_32_597834653-3 87 -0.357419 hybrid +140_4-2 Q0 MARCO_07_818580910-14 88 -0.361046 hybrid +140_4-2 Q0 KILT_43767543-1 89 -0.361373 hybrid +140_4-2 Q0 MARCO_24_1719717118-8 90 -0.362348 hybrid +140_4-2 Q0 MARCO_17_2985927323-6 91 -0.365689 hybrid +140_4-2 Q0 MARCO_30_1092694148-2 92 -0.366376 hybrid +140_4-2 Q0 MARCO_32_596179161-5 93 -0.368675 hybrid +140_4-2 Q0 KILT_22527511-24 94 -0.370200 hybrid +140_4-2 Q0 KILT_57448-16 95 -0.370641 hybrid +140_4-2 Q0 MARCO_55_74209748-1 96 -0.373630 hybrid +140_4-2 Q0 MARCO_56_1312215006-4 97 -0.373905 hybrid +140_4-2 Q0 MARCO_55_96319014-1 98 -0.375388 hybrid +140_4-2 Q0 KILT_40602423-2 99 -0.375632 hybrid +140_4-2 Q0 MARCO_17_2985927323-7 100 -0.376417 hybrid +140_4-4 Q0 MARCO_56_874320135-2 1 0.442901 hybrid +140_4-4 Q0 MARCO_55_1285550962-1 2 0.364267 hybrid +140_4-4 Q0 MARCO_30_1025211734-1 3 0.328439 hybrid +140_4-4 Q0 MARCO_55_1285550962-3 4 0.094553 hybrid +140_4-4 Q0 MARCO_30_1025297153-4 5 0.070260 hybrid +140_4-4 Q0 MARCO_55_112707963-2 6 0.020729 hybrid +140_4-4 Q0 MARCO_30_1025211734-2 7 -0.002562 hybrid +140_4-4 Q0 MARCO_32_598442233-1 8 -0.031894 hybrid +140_4-4 Q0 MARCO_55_1285550962-4 9 -0.064881 hybrid +140_4-4 Q0 MARCO_18_464104505-33 10 -0.074176 hybrid +140_4-4 Q0 MARCO_19_2582932327-1 11 -0.079200 hybrid +140_4-4 Q0 MARCO_30_1025297153-7 12 -0.082795 hybrid +140_4-4 Q0 MARCO_49_522173046-5 13 -0.094020 hybrid +140_4-4 Q0 MARCO_55_1285559246-1 14 -0.099034 hybrid +140_4-4 Q0 MARCO_48_1535513660-18 15 -0.135880 hybrid +140_4-4 Q0 MARCO_54_1591694851-3 16 -0.152966 hybrid +140_4-4 Q0 MARCO_55_1285550962-2 17 -0.154560 hybrid +140_4-4 Q0 MARCO_17_2509340321-7 18 -0.167939 hybrid +140_4-4 Q0 MARCO_30_1025297153-3 19 -0.173799 hybrid +140_4-4 Q0 MARCO_03_448409881-2 20 -0.175493 hybrid +140_4-4 Q0 KILT_47340267-5 21 -0.178470 hybrid +140_4-4 Q0 MARCO_24_1717373539-12 22 -0.182879 hybrid +140_4-4 Q0 MARCO_28_813949376-1 23 -0.209379 hybrid +140_4-4 Q0 MARCO_41_1243447347-38 24 -0.217351 hybrid +140_4-4 Q0 KILT_732389-21 25 -0.233563 hybrid +140_4-4 Q0 MARCO_22_1016565026-10 26 -0.251560 hybrid +140_4-4 Q0 MARCO_24_1718716761-4 27 -0.263229 hybrid +140_4-4 Q0 KILT_58254093-4 28 -0.266158 hybrid +140_4-4 Q0 MARCO_48_1630706195-2 29 -0.270655 hybrid +140_4-4 Q0 MARCO_56_1312772055-7 30 -0.278278 hybrid +140_4-4 Q0 MARCO_55_112707963-5 31 -0.278641 hybrid +140_4-4 Q0 MARCO_50_1409583712-8 32 -0.286294 hybrid +140_4-4 Q0 KILT_28273296-1 33 -0.287203 hybrid +140_4-4 Q0 KILT_4931941-1 34 -0.294911 hybrid +140_4-4 Q0 MARCO_29_867843994-12 35 -0.295503 hybrid +140_4-4 Q0 MARCO_50_1732246764-40 36 -0.303819 hybrid +140_4-4 Q0 MARCO_49_522173046-3 37 -0.305081 hybrid +140_4-4 Q0 KILT_596834-15 38 -0.305709 hybrid +140_4-4 Q0 MARCO_48_1630706195-5 39 -0.307742 hybrid +140_4-4 Q0 KILT_28024638-10 40 -0.308542 hybrid +140_4-4 Q0 MARCO_11_1562523903-2 41 -0.310431 hybrid +140_4-4 Q0 MARCO_50_23689317-1 42 -0.313022 hybrid +140_4-4 Q0 KILT_61023409-2 43 -0.313086 hybrid +140_4-4 Q0 MARCO_56_1312254404-8 44 -0.313208 hybrid +140_4-4 Q0 KILT_52286150-2 45 -0.314570 hybrid +140_4-4 Q0 MARCO_48_1630706195-3 46 -0.315461 hybrid +140_4-4 Q0 MARCO_25_228806808-1 47 -0.315931 hybrid +140_4-4 Q0 MARCO_39_600507896-7 48 -0.318773 hybrid +140_4-4 Q0 MARCO_16_3306273242-23 49 -0.319210 hybrid +140_4-4 Q0 MARCO_15_143403989-2 50 -0.319935 hybrid +140_4-4 Q0 MARCO_16_2872672276-28 51 -0.320000 hybrid +140_4-4 Q0 MARCO_55_1285559246-2 52 -0.322680 hybrid +140_4-4 Q0 KILT_23242173-2 53 -0.324217 hybrid +140_4-4 Q0 MARCO_16_2872830431-22 54 -0.324949 hybrid +140_4-4 Q0 KILT_844568-1 55 -0.325788 hybrid +140_4-4 Q0 KILT_1842316-6 56 -0.327678 hybrid +140_4-4 Q0 KILT_12890526-9 57 -0.329137 hybrid +140_4-4 Q0 MARCO_19_654638400-9 58 -0.329137 hybrid +140_4-4 Q0 KILT_25690143-2 59 -0.331964 hybrid +140_4-4 Q0 MARCO_47_1442290483-4 60 -0.332336 hybrid +140_4-4 Q0 MARCO_50_23689317-2 61 -0.332371 hybrid +140_4-4 Q0 MARCO_16_3916317424-8 62 -0.333025 hybrid +140_4-4 Q0 KILT_17118362-1 63 -0.335656 hybrid +140_4-4 Q0 MARCO_10_1110636104-1 64 -0.339446 hybrid +140_4-4 Q0 MARCO_19_609025200-8 65 -0.339914 hybrid +140_4-4 Q0 KILT_44973671-2 66 -0.340821 hybrid +140_4-4 Q0 MARCO_17_2959693144-21 67 -0.341963 hybrid +140_4-4 Q0 MARCO_16_4065616439-8 68 -0.346012 hybrid +140_4-4 Q0 MARCO_48_1630706195-4 69 -0.347316 hybrid +140_4-4 Q0 MARCO_23_1375999528-3 70 -0.347999 hybrid +140_4-4 Q0 KILT_38945-11 71 -0.352728 hybrid +140_4-4 Q0 MARCO_56_1312237687-4 72 -0.354100 hybrid +140_4-4 Q0 MARCO_19_947484619-2 73 -0.354275 hybrid +140_4-4 Q0 MARCO_24_1719640367-4 74 -0.354782 hybrid +140_4-4 Q0 MARCO_13_1204369497-1 75 -0.355179 hybrid +140_4-4 Q0 MARCO_24_1717373539-9 76 -0.357278 hybrid +140_4-4 Q0 MARCO_11_758826070-8 77 -0.358031 hybrid +140_4-4 Q0 MARCO_39_660751016-18 78 -0.358488 hybrid +140_4-4 Q0 MARCO_51_903670425-7 79 -0.362645 hybrid +140_4-4 Q0 MARCO_51_903670425-5 80 -0.366952 hybrid +140_4-4 Q0 MARCO_11_717055875-4 81 -0.367880 hybrid +140_4-4 Q0 MARCO_17_1272644831-8 82 -0.369672 hybrid +140_4-4 Q0 MARCO_16_2872830431-15 83 -0.371392 hybrid +140_4-4 Q0 KILT_378791-13 84 -0.372134 hybrid +140_4-4 Q0 MARCO_51_1907789940-3 85 -0.372193 hybrid +140_4-4 Q0 KILT_60823736-1 86 -0.375560 hybrid +140_4-4 Q0 MARCO_17_429991603-17 87 -0.376244 hybrid +140_4-4 Q0 MARCO_17_1272644831-2 88 -0.376504 hybrid +140_4-4 Q0 KILT_13583474-8 89 -0.377359 hybrid +140_4-4 Q0 KILT_52786719-2 90 -0.379128 hybrid +140_4-4 Q0 MARCO_56_1312461471-4 91 -0.380063 hybrid +140_4-4 Q0 MARCO_53_404698947-17 92 -0.381094 hybrid +140_4-4 Q0 MARCO_29_831680729-5 93 -0.382197 hybrid +140_4-4 Q0 MARCO_55_1285559246-3 94 -0.384338 hybrid +140_4-4 Q0 MARCO_56_1312653403-2 95 -0.385974 hybrid +140_4-4 Q0 MARCO_22_1016798109-6 96 -0.388752 hybrid +140_4-4 Q0 KILT_46376610-2 97 -0.389806 hybrid +140_4-4 Q0 KILT_44981410-11 98 -0.391560 hybrid +140_4-4 Q0 KILT_3385208-7 99 -0.394502 hybrid +140_4-4 Q0 MARCO_56_1312772055-12 100 -0.394734 hybrid +140_4-6 Q0 MARCO_30_1025297153-4 1 0.367197 hybrid +140_4-6 Q0 MARCO_30_1025211734-1 2 0.340998 hybrid +140_4-6 Q0 MARCO_30_1025297153-7 3 0.285406 hybrid +140_4-6 Q0 MARCO_32_598442233-1 4 0.270101 hybrid +140_4-6 Q0 MARCO_30_1025297153-3 5 0.266021 hybrid +140_4-6 Q0 MARCO_30_1025211734-2 6 0.124062 hybrid +140_4-6 Q0 MARCO_55_112707963-2 7 0.080683 hybrid +140_4-6 Q0 MARCO_54_1589172188-3 8 0.072679 hybrid +140_4-6 Q0 MARCO_56_874320135-2 9 0.052521 hybrid +140_4-6 Q0 MARCO_32_597828000-3 10 0.040006 hybrid +140_4-6 Q0 MARCO_30_1025297153-6 11 0.036952 hybrid +140_4-6 Q0 MARCO_55_112707963-5 12 -0.012776 hybrid +140_4-6 Q0 MARCO_16_3306273242-23 13 -0.016980 hybrid +140_4-6 Q0 MARCO_00_358922652-5 14 -0.055921 hybrid +140_4-6 Q0 MARCO_32_598442233-2 15 -0.063204 hybrid +140_4-6 Q0 MARCO_36_1004130531-4 16 -0.076556 hybrid +140_4-6 Q0 KILT_1842316-6 17 -0.082435 hybrid +140_4-6 Q0 MARCO_30_1025297153-8 18 -0.100542 hybrid +140_4-6 Q0 MARCO_32_598442233-5 19 -0.101269 hybrid +140_4-6 Q0 MARCO_30_1048259710-5 20 -0.109199 hybrid +140_4-6 Q0 MARCO_30_1029169387-9 21 -0.109218 hybrid +140_4-6 Q0 MARCO_30_1048979554-4 22 -0.117331 hybrid +140_4-6 Q0 MARCO_03_448409881-2 23 -0.136657 hybrid +140_4-6 Q0 MARCO_48_1535513660-18 24 -0.158215 hybrid +140_4-6 Q0 MARCO_19_2582932327-1 25 -0.165400 hybrid +140_4-6 Q0 KILT_4214891-2 26 -0.166003 hybrid +140_4-6 Q0 MARCO_30_1025211734-3 27 -0.184427 hybrid +140_4-6 Q0 MARCO_54_1589172188-1 28 -0.193885 hybrid +140_4-6 Q0 MARCO_30_1025297153-1 29 -0.221709 hybrid +140_4-6 Q0 KILT_13583474-8 30 -0.245091 hybrid +140_4-6 Q0 MARCO_29_1206221196-5 31 -0.257307 hybrid +140_4-6 Q0 MARCO_00_358922652-6 32 -0.260383 hybrid +140_4-6 Q0 MARCO_53_85713767-3 33 -0.267314 hybrid +140_4-6 Q0 MARCO_32_597834653-4 34 -0.273990 hybrid +140_4-6 Q0 MARCO_00_358922652-4 35 -0.276789 hybrid +140_4-6 Q0 MARCO_03_1304989738-2 36 -0.281038 hybrid +140_4-6 Q0 MARCO_03_446448156-1 37 -0.281792 hybrid +140_4-6 Q0 MARCO_32_597809340-5 38 -0.283747 hybrid +140_4-6 Q0 MARCO_24_1719707759-3 39 -0.284603 hybrid +140_4-6 Q0 MARCO_50_23689317-1 40 -0.285469 hybrid +140_4-6 Q0 MARCO_32_597809340-7 41 -0.285600 hybrid +140_4-6 Q0 MARCO_11_715682058-4 42 -0.294793 hybrid +140_4-6 Q0 MARCO_50_23689317-2 43 -0.298462 hybrid +140_4-6 Q0 MARCO_11_1562523903-2 44 -0.300740 hybrid +140_4-6 Q0 MARCO_32_597834653-1 45 -0.302329 hybrid +140_4-6 Q0 MARCO_48_1630706195-2 46 -0.303856 hybrid +140_4-6 Q0 MARCO_55_112707963-1 47 -0.309546 hybrid +140_4-6 Q0 KILT_22527511-23 48 -0.325060 hybrid +140_4-6 Q0 MARCO_45_165449753-8 49 -0.326557 hybrid +140_4-6 Q0 MARCO_10_801962827-6 50 -0.334235 hybrid +140_4-6 Q0 MARCO_18_475809633-7 51 -0.338325 hybrid +140_4-6 Q0 MARCO_00_254678577-2 52 -0.339052 hybrid +140_4-6 Q0 MARCO_14_1100517208-1 53 -0.339568 hybrid +140_4-6 Q0 MARCO_32_598442233-3 54 -0.339698 hybrid +140_4-6 Q0 MARCO_05_858027276-3 55 -0.343940 hybrid +140_4-6 Q0 MARCO_36_1006326993-5 56 -0.346596 hybrid +140_4-6 Q0 MARCO_03_1426659796-1 57 -0.348985 hybrid +140_4-6 Q0 MARCO_32_597834653-3 58 -0.349428 hybrid +140_4-6 Q0 MARCO_05_1762303156-2 59 -0.350978 hybrid +140_4-6 Q0 MARCO_54_1569270125-3 60 -0.355986 hybrid +140_4-6 Q0 MARCO_17_454697618-6 61 -0.356114 hybrid +140_4-6 Q0 MARCO_01_1552861456-1 62 -0.369289 hybrid +140_4-6 Q0 MARCO_32_597820772-2 63 -0.370057 hybrid +140_4-6 Q0 MARCO_32_1002710668-3 64 -0.370668 hybrid +140_4-6 Q0 MARCO_32_600296378-1 65 -0.373329 hybrid +140_4-6 Q0 MARCO_10_443318674-4 66 -0.374095 hybrid +140_4-6 Q0 MARCO_00_254678577-3 67 -0.375773 hybrid +140_4-6 Q0 MARCO_19_153356567-7 68 -0.377491 hybrid +140_4-6 Q0 MARCO_10_263239506-4 69 -0.380048 hybrid +140_4-6 Q0 MARCO_48_1630706195-5 70 -0.384477 hybrid +140_4-6 Q0 MARCO_25_228806808-1 71 -0.397400 hybrid +140_4-6 Q0 MARCO_19_153356567-9 72 -0.397679 hybrid +140_4-6 Q0 MARCO_30_1029169387-17 73 -0.399482 hybrid +140_4-6 Q0 KILT_40602423-5 74 -0.399717 hybrid +140_4-6 Q0 MARCO_48_1630706195-3 75 -0.403708 hybrid +140_4-6 Q0 MARCO_24_1719707759-5 76 -0.406446 hybrid +140_4-6 Q0 MARCO_48_1630706195-1 77 -0.409775 hybrid +140_4-6 Q0 KILT_57448-17 78 -0.414257 hybrid +140_4-6 Q0 MARCO_32_596920845-22 79 -0.414567 hybrid +140_4-6 Q0 MARCO_03_1426682152-1 80 -0.417401 hybrid +140_4-6 Q0 MARCO_10_1110636104-1 81 -0.418471 hybrid +140_4-6 Q0 KILT_13583474-1 82 -0.422057 hybrid +140_4-6 Q0 MARCO_03_1426659796-2 83 -0.424142 hybrid +140_4-6 Q0 MARCO_03_1426659796-3 84 -0.425843 hybrid +140_4-6 Q0 KILT_1505891-5 85 -0.425898 hybrid +140_4-6 Q0 KILT_39298866-1 86 -0.428250 hybrid +140_4-6 Q0 MARCO_35_451972693-4 87 -0.428407 hybrid +140_4-6 Q0 MARCO_11_904784803-2 88 -0.429403 hybrid +140_4-6 Q0 MARCO_13_1204369497-1 89 -0.429822 hybrid +140_4-6 Q0 MARCO_45_165402123-3 90 -0.436856 hybrid +140_4-6 Q0 MARCO_50_1732246764-40 91 -0.439085 hybrid +140_4-6 Q0 KILT_22527511-22 92 -0.441197 hybrid +140_4-6 Q0 MARCO_53_404698947-17 93 -0.443709 hybrid +140_4-6 Q0 MARCO_00_945682241-2 94 -0.447720 hybrid +140_4-6 Q0 KILT_23242173-2 95 -0.448684 hybrid +140_4-6 Q0 MARCO_32_1002768793-4 96 -0.448836 hybrid +140_4-6 Q0 MARCO_28_813949376-1 97 -0.454073 hybrid +140_4-6 Q0 MARCO_10_237839586-9 98 -0.455641 hybrid +140_4-6 Q0 MARCO_22_1565145566-1 99 -0.455904 hybrid +140_4-6 Q0 MARCO_19_153356567-8 100 -0.456535 hybrid +140_4-8 Q0 MARCO_17_2985927323-7 1 0.539758 hybrid +140_4-8 Q0 MARCO_17_2985927323-9 2 0.539758 hybrid +140_4-8 Q0 MARCO_17_2985927323-3 3 0.486909 hybrid +140_4-8 Q0 MARCO_20_1605557843-6 4 0.426486 hybrid +140_4-8 Q0 MARCO_20_1605557843-3 5 0.407592 hybrid +140_4-8 Q0 MARCO_20_1605557843-4 6 0.398475 hybrid +140_4-8 Q0 MARCO_20_1605557843-5 7 0.391172 hybrid +140_4-8 Q0 MARCO_17_2985927323-6 8 0.370713 hybrid +140_4-8 Q0 MARCO_17_2985927323-4 9 0.358042 hybrid +140_4-8 Q0 MARCO_30_1025297153-2 10 0.333930 hybrid +140_4-8 Q0 MARCO_20_1605557843-1 11 0.296264 hybrid +140_4-8 Q0 MARCO_05_1762379500-340 12 0.249821 hybrid +140_4-8 Q0 MARCO_17_2985927323-1 13 0.179554 hybrid +140_4-8 Q0 MARCO_17_2985927323-5 14 0.153453 hybrid +140_4-8 Q0 MARCO_30_1048979554-4 15 -0.009312 hybrid +140_4-8 Q0 MARCO_32_598293543-8 16 -0.042301 hybrid +140_4-8 Q0 MARCO_30_1029169387-9 17 -0.044874 hybrid +140_4-8 Q0 MARCO_05_1762379500-80 18 -0.053852 hybrid +140_4-8 Q0 KILT_13583474-1 19 -0.078707 hybrid +140_4-8 Q0 MARCO_32_597834653-4 20 -0.083505 hybrid +140_4-8 Q0 MARCO_32_597809340-4 21 -0.105275 hybrid +140_4-8 Q0 MARCO_15_1458788650-1 22 -0.137023 hybrid +140_4-8 Q0 MARCO_17_2985927323-2 23 -0.227677 hybrid +140_4-8 Q0 MARCO_51_38815629-2 24 -0.249999 hybrid +140_4-8 Q0 MARCO_48_849543852-1 25 -0.257273 hybrid +140_4-8 Q0 MARCO_15_1458788650-2 26 -0.270331 hybrid +140_4-8 Q0 MARCO_36_1004130531-4 27 -0.281890 hybrid +140_4-8 Q0 MARCO_24_1719707759-5 28 -0.295457 hybrid +140_4-8 Q0 MARCO_00_358922652-6 29 -0.300271 hybrid +140_4-8 Q0 MARCO_22_1016868225-2 30 -0.310202 hybrid +140_4-8 Q0 MARCO_37_1107517688-2 31 -0.320269 hybrid +140_4-8 Q0 MARCO_32_597809340-7 32 -0.357393 hybrid +140_4-8 Q0 MARCO_30_1025297153-8 33 -0.366763 hybrid +140_4-8 Q0 MARCO_22_1016597411-4 34 -0.370525 hybrid +140_4-8 Q0 MARCO_51_38815629-1 35 -0.374073 hybrid +140_4-8 Q0 MARCO_30_1025297153-5 36 -0.379699 hybrid +140_4-8 Q0 MARCO_13_1204561650-4 37 -0.381622 hybrid +140_4-8 Q0 KILT_40602423-5 38 -0.382450 hybrid +140_4-8 Q0 MARCO_31_87355756-2 39 -0.384198 hybrid +140_4-8 Q0 KILT_26115267-1 40 -0.393934 hybrid +140_4-8 Q0 MARCO_31_87355756-4 41 -0.402568 hybrid +140_4-8 Q0 MARCO_31_87359963-4 42 -0.402568 hybrid +140_4-8 Q0 MARCO_00_248676682-2 43 -0.403887 hybrid +140_4-8 Q0 MARCO_19_654638400-10 44 -0.408465 hybrid +140_4-8 Q0 MARCO_51_38815629-6 45 -0.412355 hybrid +140_4-8 Q0 KILT_4030485-4 46 -0.412564 hybrid +140_4-8 Q0 MARCO_22_1487771191-2 47 -0.414268 hybrid +140_4-8 Q0 MARCO_17_1736077149-13 48 -0.416588 hybrid +140_4-8 Q0 MARCO_51_38815629-3 49 -0.419270 hybrid +140_4-8 Q0 MARCO_32_1002744496-1 50 -0.420751 hybrid +140_4-8 Q0 MARCO_11_1562523903-2 51 -0.431134 hybrid +140_4-8 Q0 MARCO_48_1525195976-1 52 -0.431435 hybrid +140_4-8 Q0 MARCO_11_904776446-3 53 -0.434925 hybrid +140_4-8 Q0 MARCO_30_1025297153-7 54 -0.437007 hybrid +140_4-8 Q0 MARCO_12_7420345-4 55 -0.437789 hybrid +140_4-8 Q0 MARCO_48_849543852-12 56 -0.438249 hybrid +140_4-8 Q0 KILT_4030485-3 57 -0.439233 hybrid +140_4-8 Q0 MARCO_32_597088109-3 58 -0.444145 hybrid +140_4-8 Q0 MARCO_11_715682058-3 59 -0.445930 hybrid +140_4-8 Q0 MARCO_30_407817046-6 60 -0.446072 hybrid +140_4-8 Q0 MARCO_11_715682058-4 61 -0.448274 hybrid +140_4-8 Q0 KILT_4030485-5 62 -0.448311 hybrid +140_4-8 Q0 MARCO_40_1002073335-1 63 -0.448708 hybrid +140_4-8 Q0 MARCO_13_1204561650-1 64 -0.450989 hybrid +140_4-8 Q0 MARCO_36_1004130531-3 65 -0.451970 hybrid +140_4-8 Q0 MARCO_37_1107517688-3 66 -0.452042 hybrid +140_4-8 Q0 MARCO_30_1025297153-4 67 -0.456391 hybrid +140_4-8 Q0 MARCO_37_1107517688-4 68 -0.457105 hybrid +140_4-8 Q0 MARCO_48_1630480460-8 69 -0.459668 hybrid +140_4-8 Q0 MARCO_11_723817460-3 70 -0.461305 hybrid +140_4-8 Q0 MARCO_48_849543852-11 71 -0.462497 hybrid +140_4-8 Q0 MARCO_20_1605557843-2 72 -0.462753 hybrid +140_4-8 Q0 MARCO_03_1304989738-2 73 -0.464455 hybrid +140_4-8 Q0 MARCO_57_1937405093-17 74 -0.465419 hybrid +140_4-8 Q0 KILT_1842316-5 75 -0.466570 hybrid +140_4-8 Q0 MARCO_39_1269636367-9 76 -0.471751 hybrid +140_4-8 Q0 MARCO_03_1426671976-3 77 -0.472680 hybrid +140_4-8 Q0 KILT_4030485-1 78 -0.473286 hybrid +140_4-8 Q0 MARCO_48_849543852-15 79 -0.475088 hybrid +140_4-8 Q0 MARCO_22_1016597411-1 80 -0.475259 hybrid +140_4-8 Q0 MARCO_07_704518188-161 81 -0.476166 hybrid +140_4-8 Q0 MARCO_53_404698947-17 82 -0.476820 hybrid +140_4-8 Q0 MARCO_24_1375511290-3 83 -0.479595 hybrid +140_4-8 Q0 MARCO_22_1016597411-2 84 -0.481520 hybrid +140_4-8 Q0 MARCO_48_849543852-2 85 -0.484379 hybrid +140_4-8 Q0 MARCO_30_1029169387-17 86 -0.486493 hybrid +140_4-8 Q0 MARCO_11_1562523903-3 87 -0.487748 hybrid +140_4-8 Q0 MARCO_50_1774816435-34 88 -0.487802 hybrid +140_4-8 Q0 MARCO_48_849543852-10 89 -0.487935 hybrid +140_4-8 Q0 KILT_12890526-11 90 -0.488424 hybrid +140_4-8 Q0 KILT_53850588-1 91 -0.489093 hybrid +140_4-8 Q0 MARCO_29_710618272-1 92 -0.490368 hybrid +140_4-8 Q0 MARCO_13_1204571746-1 93 -0.492693 hybrid +140_4-8 Q0 MARCO_13_1205680173-1 94 -0.493880 hybrid +140_4-8 Q0 MARCO_18_3483116847-2 95 -0.495073 hybrid +140_4-8 Q0 MARCO_32_1087103060-1 96 -0.496249 hybrid +140_4-8 Q0 MARCO_00_249628743-5 97 -0.499363 hybrid +140_4-8 Q0 KILT_36953898-1 98 -0.500018 hybrid +140_4-8 Q0 MARCO_41_1392276672-32 99 -0.501121 hybrid +140_4-8 Q0 MARCO_29_1340014164-4 100 -0.502235 hybrid +141_1-1 Q0 MARCO_30_744759371-208 1 0.249998 hybrid +141_1-1 Q0 MARCO_10_909467982-11 2 0.214690 hybrid +141_1-1 Q0 MARCO_15_481036841-8 3 0.200753 hybrid +141_1-1 Q0 MARCO_28_338626275-4 4 0.162197 hybrid +141_1-1 Q0 MARCO_48_978698970-6 5 0.058287 hybrid +141_1-1 Q0 MARCO_04_480632713-2 6 0.036897 hybrid +141_1-1 Q0 MARCO_40_560927337-23 7 0.020612 hybrid +141_1-1 Q0 MARCO_10_897295825-15 8 0.007238 hybrid +141_1-1 Q0 MARCO_13_1256080035-7 9 0.003448 hybrid +141_1-1 Q0 MARCO_06_327278198-2 10 -0.012699 hybrid +141_1-1 Q0 MARCO_02_1197792450-4 11 -0.035861 hybrid +141_1-1 Q0 MARCO_12_1447109277-6 12 -0.053374 hybrid +141_1-1 Q0 MARCO_12_1454407232-7 13 -0.067746 hybrid +141_1-1 Q0 MARCO_50_1513874056-124 14 -0.088125 hybrid +141_1-1 Q0 MARCO_06_327278198-3 15 -0.093734 hybrid +141_1-1 Q0 MARCO_56_814238486-4 16 -0.095329 hybrid +141_1-1 Q0 MARCO_39_1694042320-9 17 -0.106719 hybrid +141_1-1 Q0 MARCO_37_834258682-4 18 -0.112921 hybrid +141_1-1 Q0 MARCO_41_917933342-13 19 -0.124077 hybrid +141_1-1 Q0 MARCO_40_264626786-11 20 -0.130835 hybrid +141_1-1 Q0 MARCO_29_268011741-2 21 -0.131184 hybrid +141_1-1 Q0 MARCO_30_1807188622-4 22 -0.131599 hybrid +141_1-1 Q0 MARCO_15_103944462-8 23 -0.134055 hybrid +141_1-1 Q0 MARCO_15_103977589-11 24 -0.134055 hybrid +141_1-1 Q0 MARCO_27_1208038305-2 25 -0.137809 hybrid +141_1-1 Q0 MARCO_02_1197789364-2 26 -0.144511 hybrid +141_1-1 Q0 MARCO_38_585177824-2 27 -0.149653 hybrid +141_1-1 Q0 MARCO_15_104393568-2 28 -0.150441 hybrid +141_1-1 Q0 MARCO_40_561251023-27 29 -0.151810 hybrid +141_1-1 Q0 MARCO_10_911962282-15 30 -0.156183 hybrid +141_1-1 Q0 MARCO_53_808919352-1 31 -0.156757 hybrid +141_1-1 Q0 MARCO_30_1806644682-2 32 -0.160238 hybrid +141_1-1 Q0 MARCO_57_1348084641-2 33 -0.162071 hybrid +141_1-1 Q0 MARCO_30_1592646405-4 34 -0.167963 hybrid +141_1-1 Q0 MARCO_14_1774891860-2 35 -0.168144 hybrid +141_1-1 Q0 MARCO_50_1456411426-10 36 -0.175277 hybrid +141_1-1 Q0 MARCO_46_263053540-3 37 -0.182383 hybrid +141_1-1 Q0 MARCO_50_2502667678-11 38 -0.185140 hybrid +141_1-1 Q0 MARCO_06_540511745-4 39 -0.186001 hybrid +141_1-1 Q0 MARCO_20_69758426-6 40 -0.195983 hybrid +141_1-1 Q0 MARCO_14_1549971571-21 41 -0.198860 hybrid +141_1-1 Q0 MARCO_10_911693913-7 42 -0.200452 hybrid +141_1-1 Q0 MARCO_08_1093197680-18 43 -0.200850 hybrid +141_1-1 Q0 MARCO_19_2552220119-2 44 -0.200974 hybrid +141_1-1 Q0 MARCO_54_316927266-4 45 -0.201305 hybrid +141_1-1 Q0 MARCO_15_141371408-79 46 -0.203686 hybrid +141_1-1 Q0 MARCO_04_1159460662-15 47 -0.208142 hybrid +141_1-1 Q0 MARCO_38_616138088-6 48 -0.210624 hybrid +141_1-1 Q0 MARCO_12_1161319161-5 49 -0.216159 hybrid +141_1-1 Q0 MARCO_10_912360563-4 50 -0.218835 hybrid +141_1-1 Q0 MARCO_50_1183326589-40 51 -0.223033 hybrid +141_1-1 Q0 MARCO_12_1454407232-12 52 -0.223248 hybrid +141_1-1 Q0 MARCO_36_21091353-7 53 -0.223323 hybrid +141_1-1 Q0 MARCO_59_883230728-8 54 -0.224029 hybrid +141_1-1 Q0 MARCO_53_810687779-7 55 -0.224272 hybrid +141_1-1 Q0 MARCO_40_561857355-2 56 -0.224829 hybrid +141_1-1 Q0 MARCO_09_536285044-33 57 -0.228764 hybrid +141_1-1 Q0 MARCO_30_744759371-167 58 -0.234683 hybrid +141_1-1 Q0 MARCO_15_103830369-3 59 -0.235601 hybrid +141_1-1 Q0 MARCO_44_623487611-6 60 -0.236750 hybrid +141_1-1 Q0 MARCO_12_1454407232-13 61 -0.237169 hybrid +141_1-1 Q0 MARCO_23_1199471928-7 62 -0.242880 hybrid +141_1-1 Q0 MARCO_48_1744657452-3 63 -0.243132 hybrid +141_1-1 Q0 MARCO_44_625042394-3 64 -0.245579 hybrid +141_1-1 Q0 MARCO_59_883230728-7 65 -0.246104 hybrid +141_1-1 Q0 MARCO_48_1748453685-2 66 -0.248065 hybrid +141_1-1 Q0 MARCO_22_1220119571-1 67 -0.250002 hybrid +141_1-1 Q0 MARCO_24_1557455768-11 68 -0.251851 hybrid +141_1-1 Q0 MARCO_20_1741342622-2 69 -0.253021 hybrid +141_1-1 Q0 MARCO_30_158552019-3 70 -0.253383 hybrid +141_1-1 Q0 MARCO_37_258173671-5 71 -0.254894 hybrid +141_1-1 Q0 MARCO_51_953513556-5 72 -0.257129 hybrid +141_1-1 Q0 MARCO_39_1400213695-3 73 -0.257933 hybrid +141_1-1 Q0 MARCO_02_1197789364-3 74 -0.259280 hybrid +141_1-1 Q0 MARCO_56_1473907624-24 75 -0.259355 hybrid +141_1-1 Q0 MARCO_23_1727144571-14 76 -0.260326 hybrid +141_1-1 Q0 MARCO_53_326252611-1 77 -0.260739 hybrid +141_1-1 Q0 MARCO_52_1146223254-19 78 -0.261855 hybrid +141_1-1 Q0 MARCO_36_21148788-9 79 -0.262698 hybrid +141_1-1 Q0 MARCO_30_1511007408-6 80 -0.265512 hybrid +141_1-1 Q0 MARCO_48_1744657452-5 81 -0.266784 hybrid +141_1-1 Q0 MARCO_40_309370561-27 82 -0.267689 hybrid +141_1-1 Q0 MARCO_30_826115762-5 83 -0.269469 hybrid +141_1-1 Q0 MARCO_40_264626786-19 84 -0.277547 hybrid +141_1-1 Q0 MARCO_19_2552148940-17 85 -0.279478 hybrid +141_1-1 Q0 MARCO_37_257639593-3 86 -0.283113 hybrid +141_1-1 Q0 MARCO_09_1195180204-3 87 -0.283757 hybrid +141_1-1 Q0 MARCO_04_1159615199-2 88 -0.286385 hybrid +141_1-1 Q0 MARCO_44_624912225-6 89 -0.293885 hybrid +141_1-1 Q0 MARCO_10_912339687-10 90 -0.296200 hybrid +141_1-1 Q0 MARCO_11_696209400-6 91 -0.297374 hybrid +141_1-1 Q0 KILT_3046012-21 92 -0.297595 hybrid +141_1-1 Q0 MARCO_30_158585360-4 93 -0.297701 hybrid +141_1-1 Q0 MARCO_41_921515314-14 94 -0.301447 hybrid +141_1-1 Q0 MARCO_47_609110281-10 95 -0.302215 hybrid +141_1-1 Q0 MARCO_10_915092098-8 96 -0.303580 hybrid +141_1-1 Q0 MARCO_30_1080949952-90 97 -0.306433 hybrid +141_1-1 Q0 MARCO_22_1219793257-3 98 -0.306972 hybrid +141_1-1 Q0 MARCO_38_773279631-2 99 -0.308010 hybrid +141_1-1 Q0 MARCO_15_103830369-5 100 -0.309203 hybrid +141_1-3 Q0 MARCO_33_1025499395-11 1 0.249998 hybrid +141_1-3 Q0 MARCO_44_1167684774-2 2 0.172570 hybrid +141_1-3 Q0 MARCO_33_1025499395-14 3 0.147540 hybrid +141_1-3 Q0 MARCO_44_1167684774-3 4 0.076507 hybrid +141_1-3 Q0 MARCO_28_541508338-4 5 0.047109 hybrid +141_1-3 Q0 MARCO_52_1335028396-2 6 0.034918 hybrid +141_1-3 Q0 MARCO_27_1202500253-10 7 0.021991 hybrid +141_1-3 Q0 MARCO_04_905994734-4 8 -0.025729 hybrid +141_1-3 Q0 MARCO_11_754119908-7 9 -0.082833 hybrid +141_1-3 Q0 MARCO_27_1238037725-2 10 -0.084893 hybrid +141_1-3 Q0 MARCO_12_72016736-6 11 -0.087889 hybrid +141_1-3 Q0 MARCO_36_821807421-11 12 -0.101009 hybrid +141_1-3 Q0 MARCO_10_905931627-10 13 -0.104135 hybrid +141_1-3 Q0 MARCO_27_1202500253-2 14 -0.104906 hybrid +141_1-3 Q0 MARCO_42_1088121638-1 15 -0.107888 hybrid +141_1-3 Q0 MARCO_45_201127978-2 16 -0.122715 hybrid +141_1-3 Q0 MARCO_12_72016736-12 17 -0.127472 hybrid +141_1-3 Q0 MARCO_32_1660327970-3 18 -0.131054 hybrid +141_1-3 Q0 MARCO_33_1025468118-5 19 -0.145115 hybrid +141_1-3 Q0 MARCO_41_630788576-17 20 -0.146997 hybrid +141_1-3 Q0 MARCO_27_1765683857-20 21 -0.147199 hybrid +141_1-3 Q0 MARCO_41_630788576-15 22 -0.156527 hybrid +141_1-3 Q0 MARCO_02_874749495-2 23 -0.156616 hybrid +141_1-3 Q0 MARCO_47_133438989-7 24 -0.161458 hybrid +141_1-3 Q0 MARCO_44_1764161541-7 25 -0.162160 hybrid +141_1-3 Q0 MARCO_53_811018085-40 26 -0.168924 hybrid +141_1-3 Q0 MARCO_21_1145129455-1 27 -0.170612 hybrid +141_1-3 Q0 MARCO_31_935104390-3 28 -0.177352 hybrid +141_1-3 Q0 MARCO_27_1237635519-4 29 -0.179537 hybrid +141_1-3 Q0 MARCO_53_810665322-7 30 -0.180906 hybrid +141_1-3 Q0 MARCO_21_1145129455-8 31 -0.191559 hybrid +141_1-3 Q0 MARCO_43_769019832-2 32 -0.199401 hybrid +141_1-3 Q0 MARCO_44_1764161541-10 33 -0.199740 hybrid +141_1-3 Q0 MARCO_10_76747706-18 34 -0.200863 hybrid +141_1-3 Q0 MARCO_32_468684332-5 35 -0.204311 hybrid +141_1-3 Q0 MARCO_33_1427662472-7 36 -0.213196 hybrid +141_1-3 Q0 MARCO_55_1730024849-3 37 -0.213212 hybrid +141_1-3 Q0 MARCO_19_2650496233-8 38 -0.216014 hybrid +141_1-3 Q0 MARCO_44_1167684774-1 39 -0.218703 hybrid +141_1-3 Q0 MARCO_28_434950348-8 40 -0.220323 hybrid +141_1-3 Q0 MARCO_27_1202500253-4 41 -0.223630 hybrid +141_1-3 Q0 MARCO_28_434950348-10 42 -0.231981 hybrid +141_1-3 Q0 MARCO_12_72016736-11 43 -0.234836 hybrid +141_1-3 Q0 MARCO_33_1025499395-13 44 -0.240631 hybrid +141_1-3 Q0 MARCO_29_267155433-2 45 -0.242392 hybrid +141_1-3 Q0 MARCO_21_578989055-7 46 -0.250002 hybrid +141_1-3 Q0 MARCO_55_1730024849-1 47 -0.258417 hybrid +141_1-3 Q0 MARCO_03_1043666726-11 48 -0.261864 hybrid +141_1-3 Q0 MARCO_14_1550215043-20 49 -0.264719 hybrid +141_1-3 Q0 MARCO_27_1237635519-5 50 -0.265566 hybrid +141_1-3 Q0 MARCO_27_1767492725-4 51 -0.266020 hybrid +141_1-3 Q0 MARCO_26_1549806884-11 52 -0.267760 hybrid +141_1-3 Q0 MARCO_13_408459975-1 53 -0.268378 hybrid +141_1-3 Q0 MARCO_45_1575222122-4 54 -0.276349 hybrid +141_1-3 Q0 MARCO_51_633099329-3 55 -0.276406 hybrid +141_1-3 Q0 MARCO_54_360144484-2 56 -0.277407 hybrid +141_1-3 Q0 MARCO_15_104330011-6 57 -0.277642 hybrid +141_1-3 Q0 MARCO_01_1539497153-12 58 -0.278082 hybrid +141_1-3 Q0 MARCO_28_434950348-11 59 -0.279750 hybrid +141_1-3 Q0 MARCO_33_275356616-2 60 -0.285238 hybrid +141_1-3 Q0 MARCO_33_271153555-2 61 -0.285238 hybrid +141_1-3 Q0 MARCO_33_263025456-2 62 -0.285238 hybrid +141_1-3 Q0 MARCO_02_490050015-2 63 -0.288606 hybrid +141_1-3 Q0 MARCO_50_1399491563-33 64 -0.292636 hybrid +141_1-3 Q0 MARCO_40_821828838-10 65 -0.293492 hybrid +141_1-3 Q0 MARCO_55_1730024849-7 66 -0.298685 hybrid +141_1-3 Q0 MARCO_54_360144484-3 67 -0.299416 hybrid +141_1-3 Q0 MARCO_21_1189945053-4 68 -0.301714 hybrid +141_1-3 Q0 MARCO_32_617027353-5 69 -0.305057 hybrid +141_1-3 Q0 MARCO_50_2154952455-18 70 -0.307028 hybrid +141_1-3 Q0 MARCO_26_1549806884-4 71 -0.307872 hybrid +141_1-3 Q0 MARCO_27_1237652512-1 72 -0.308369 hybrid +141_1-3 Q0 MARCO_50_2399125391-27 73 -0.310141 hybrid +141_1-3 Q0 MARCO_33_1025499395-12 74 -0.310485 hybrid +141_1-3 Q0 MARCO_11_754119908-9 75 -0.311167 hybrid +141_1-3 Q0 MARCO_55_1285701390-4 76 -0.315133 hybrid +141_1-3 Q0 MARCO_11_1399812362-2 77 -0.317576 hybrid +141_1-3 Q0 MARCO_27_1202500253-1 78 -0.319708 hybrid +141_1-3 Q0 MARCO_47_605622198-5 79 -0.319942 hybrid +141_1-3 Q0 MARCO_12_279618761-19 80 -0.321763 hybrid +141_1-3 Q0 MARCO_11_696984801-5 81 -0.323245 hybrid +141_1-3 Q0 MARCO_36_838963053-7 82 -0.326533 hybrid +141_1-3 Q0 MARCO_32_616994810-4 83 -0.326928 hybrid +141_1-3 Q0 MARCO_20_625572594-4 84 -0.331588 hybrid +141_1-3 Q0 MARCO_12_1146546934-9 85 -0.332360 hybrid +141_1-3 Q0 MARCO_28_569164888-2 86 -0.333805 hybrid +141_1-3 Q0 MARCO_03_1043666726-2 87 -0.334011 hybrid +141_1-3 Q0 MARCO_51_123396035-24 88 -0.334056 hybrid +141_1-3 Q0 MARCO_13_708358792-2 89 -0.335768 hybrid +141_1-3 Q0 MARCO_44_1764161541-9 90 -0.335926 hybrid +141_1-3 Q0 MARCO_31_879603192-7 91 -0.340190 hybrid +141_1-3 Q0 MARCO_11_696793562-6 92 -0.341720 hybrid +141_1-3 Q0 MARCO_27_1237522251-6 93 -0.341926 hybrid +141_1-3 Q0 MARCO_28_1757062711-6 94 -0.342621 hybrid +141_1-3 Q0 MARCO_44_1167684774-7 95 -0.344708 hybrid +141_1-3 Q0 MARCO_03_1043666726-5 96 -0.344983 hybrid +141_1-3 Q0 MARCO_42_1105496215-2 97 -0.347616 hybrid +141_1-3 Q0 MARCO_49_225633020-21 98 -0.348468 hybrid +141_1-3 Q0 MARCO_11_696901977-8 99 -0.352660 hybrid +141_1-3 Q0 MARCO_30_124815498-6 100 -0.353399 hybrid +141_1-5 Q0 MARCO_21_1216284242-19 1 0.250002 hybrid +141_1-5 Q0 MARCO_50_1662117411-6 2 0.094684 hybrid +141_1-5 Q0 MARCO_34_1324045633-3 3 0.060321 hybrid +141_1-5 Q0 MARCO_28_527606323-6 4 0.043871 hybrid +141_1-5 Q0 MARCO_50_1672849818-33 5 -0.039348 hybrid +141_1-5 Q0 MARCO_29_30691709-2 6 -0.040327 hybrid +141_1-5 Q0 MARCO_21_1216877318-2 7 -0.042537 hybrid +141_1-5 Q0 MARCO_34_1324039858-4 8 -0.055575 hybrid +141_1-5 Q0 MARCO_01_1063164384-23 9 -0.064733 hybrid +141_1-5 Q0 MARCO_21_1216438538-2 10 -0.118536 hybrid +141_1-5 Q0 MARCO_28_527655725-2 11 -0.131467 hybrid +141_1-5 Q0 MARCO_50_1613328405-18 12 -0.143172 hybrid +141_1-5 Q0 MARCO_34_1324045633-4 13 -0.186342 hybrid +141_1-5 Q0 MARCO_21_1216403308-13 14 -0.189121 hybrid +141_1-5 Q0 MARCO_49_1828882203-2 15 -0.201556 hybrid +141_1-5 Q0 MARCO_21_1215533417-4 16 -0.201740 hybrid +141_1-5 Q0 MARCO_21_1216284242-18 17 -0.205760 hybrid +141_1-5 Q0 MARCO_50_1613328405-19 18 -0.206438 hybrid +141_1-5 Q0 MARCO_28_527486278-5 19 -0.207569 hybrid +141_1-5 Q0 MARCO_39_221474899-4 20 -0.211495 hybrid +141_1-5 Q0 MARCO_10_1179217323-25 21 -0.215594 hybrid +141_1-5 Q0 MARCO_21_1215945659-4 22 -0.218480 hybrid +141_1-5 Q0 MARCO_43_241948488-2 23 -0.222692 hybrid +141_1-5 Q0 MARCO_57_2129393244-3 24 -0.225196 hybrid +141_1-5 Q0 MARCO_21_1214943619-10 25 -0.225453 hybrid +141_1-5 Q0 MARCO_43_241952999-4 26 -0.226902 hybrid +141_1-5 Q0 MARCO_34_1324187533-3 27 -0.228589 hybrid +141_1-5 Q0 MARCO_03_1608228985-14 28 -0.228941 hybrid +141_1-5 Q0 MARCO_11_20535053-38 29 -0.234620 hybrid +141_1-5 Q0 MARCO_57_2130759412-19 30 -0.235571 hybrid +141_1-5 Q0 MARCO_21_1215811358-13 31 -0.235923 hybrid +141_1-5 Q0 MARCO_21_1215596926-13 32 -0.238980 hybrid +141_1-5 Q0 MARCO_23_1773948224-5 33 -0.239099 hybrid +141_1-5 Q0 MARCO_21_1215945659-12 34 -0.243535 hybrid +141_1-5 Q0 MARCO_55_277967890-3 35 -0.249998 hybrid +141_1-5 Q0 MARCO_25_1372658733-7 36 -0.250149 hybrid +141_1-5 Q0 MARCO_50_1660601460-14 37 -0.253487 hybrid +141_1-5 Q0 MARCO_57_2130809178-11 38 -0.254292 hybrid +141_1-5 Q0 MARCO_21_1216877318-7 39 -0.257089 hybrid +141_1-5 Q0 MARCO_35_422525523-6 40 -0.259556 hybrid +141_1-5 Q0 MARCO_43_241935261-5 41 -0.260568 hybrid +141_1-5 Q0 MARCO_21_1215533417-5 42 -0.263062 hybrid +141_1-5 Q0 MARCO_02_1574900723-4 43 -0.270197 hybrid +141_1-5 Q0 MARCO_11_601582654-4 44 -0.273749 hybrid +141_1-5 Q0 MARCO_34_1354682080-3 45 -0.279399 hybrid +141_1-5 Q0 MARCO_34_1354339662-9 46 -0.284758 hybrid +141_1-5 Q0 MARCO_21_1216135398-7 47 -0.287420 hybrid +141_1-5 Q0 MARCO_57_2130759412-11 48 -0.288891 hybrid +141_1-5 Q0 MARCO_21_1215831650-8 49 -0.289429 hybrid +141_1-5 Q0 MARCO_21_1216438538-4 50 -0.295454 hybrid +141_1-5 Q0 MARCO_44_52757815-6 51 -0.298572 hybrid +141_1-5 Q0 MARCO_50_523925683-11 52 -0.301094 hybrid +141_1-5 Q0 MARCO_34_1324063765-3 53 -0.301109 hybrid +141_1-5 Q0 MARCO_21_1216284242-2 54 -0.301397 hybrid +141_1-5 Q0 MARCO_24_1556056887-9 55 -0.309589 hybrid +141_1-5 Q0 MARCO_43_241948488-1 56 -0.311277 hybrid +141_1-5 Q0 MARCO_40_843200860-6 57 -0.311643 hybrid +141_1-5 Q0 MARCO_40_843200860-3 58 -0.313630 hybrid +141_1-5 Q0 MARCO_31_293193263-2 59 -0.314046 hybrid +141_1-5 Q0 MARCO_34_1354426044-11 60 -0.314434 hybrid +141_1-5 Q0 MARCO_04_204888142-2 61 -0.316409 hybrid +141_1-5 Q0 MARCO_50_2398291995-3 62 -0.317192 hybrid +141_1-5 Q0 MARCO_21_1216311013-2 63 -0.318696 hybrid +141_1-5 Q0 MARCO_23_1427693654-6 64 -0.322329 hybrid +141_1-5 Q0 MARCO_34_1324045633-1 65 -0.325920 hybrid +141_1-5 Q0 MARCO_44_52757815-7 66 -0.326023 hybrid +141_1-5 Q0 MARCO_50_1669554628-16 67 -0.327751 hybrid +141_1-5 Q0 MARCO_24_1318360624-2 68 -0.328594 hybrid +141_1-5 Q0 MARCO_10_976859845-14 69 -0.331862 hybrid +141_1-5 Q0 MARCO_21_1214943619-8 70 -0.332467 hybrid +141_1-5 Q0 MARCO_21_1215945659-8 71 -0.334586 hybrid +141_1-5 Q0 MARCO_10_1132270721-20 72 -0.334720 hybrid +141_1-5 Q0 MARCO_10_1205294341-17 73 -0.337013 hybrid +141_1-5 Q0 MARCO_54_1859745424-3 74 -0.338795 hybrid +141_1-5 Q0 MARCO_21_1038268655-4 75 -0.340654 hybrid +141_1-5 Q0 MARCO_10_793759922-3 76 -0.342516 hybrid +141_1-5 Q0 MARCO_28_527632705-2 77 -0.343057 hybrid +141_1-5 Q0 MARCO_02_1574900723-5 78 -0.348929 hybrid +141_1-5 Q0 MARCO_21_1215533417-14 79 -0.351038 hybrid +141_1-5 Q0 MARCO_28_527486278-3 80 -0.352166 hybrid +141_1-5 Q0 MARCO_21_1216311013-9 81 -0.352243 hybrid +141_1-5 Q0 MARCO_31_293150131-6 82 -0.353050 hybrid +141_1-5 Q0 MARCO_28_527655725-4 83 -0.357146 hybrid +141_1-5 Q0 MARCO_29_1138480806-3 84 -0.358828 hybrid +141_1-5 Q0 MARCO_28_527785065-5 85 -0.360102 hybrid +141_1-5 Q0 MARCO_34_1324118892-4 86 -0.360839 hybrid +141_1-5 Q0 MARCO_21_1215331636-5 87 -0.361102 hybrid +141_1-5 Q0 MARCO_05_424635426-36 88 -0.361181 hybrid +141_1-5 Q0 MARCO_35_982879909-8 89 -0.361784 hybrid +141_1-5 Q0 MARCO_44_1418466281-2 90 -0.363427 hybrid +141_1-5 Q0 MARCO_50_1604367997-30 91 -0.367512 hybrid +141_1-5 Q0 MARCO_21_1214887741-9 92 -0.367980 hybrid +141_1-5 Q0 MARCO_21_1215674654-2 93 -0.369169 hybrid +141_1-5 Q0 MARCO_03_1613254923-1 94 -0.369564 hybrid +141_1-5 Q0 MARCO_21_1216877318-3 95 -0.369790 hybrid +141_1-5 Q0 MARCO_44_1953561730-13 96 -0.369905 hybrid +141_1-5 Q0 MARCO_23_1595035699-10 97 -0.371630 hybrid +141_1-5 Q0 MARCO_28_527777467-6 98 -0.372128 hybrid +141_1-5 Q0 MARCO_50_493640862-2 99 -0.372750 hybrid +141_1-5 Q0 MARCO_21_1216403308-4 100 -0.373895 hybrid +141_2-1 Q0 MARCO_30_744759371-208 1 0.250000 hybrid +141_2-1 Q0 MARCO_09_536285044-33 2 0.031356 hybrid +141_2-1 Q0 KILT_48458854-8 3 -0.024151 hybrid +141_2-1 Q0 MARCO_40_557668553-6 4 -0.032150 hybrid +141_2-1 Q0 MARCO_40_557532912-3 5 -0.036843 hybrid +141_2-1 Q0 MARCO_04_1159615199-2 6 -0.096747 hybrid +141_2-1 Q0 MARCO_28_338626275-4 7 -0.098803 hybrid +141_2-1 Q0 MARCO_30_158585360-4 8 -0.126655 hybrid +141_2-1 Q0 MARCO_10_911962282-15 9 -0.144633 hybrid +141_2-1 Q0 MARCO_57_1348063588-3 10 -0.162655 hybrid +141_2-1 Q0 MARCO_40_560927337-23 11 -0.171913 hybrid +141_2-1 Q0 MARCO_40_561044944-4 12 -0.174286 hybrid +141_2-1 Q0 MARCO_48_978698970-6 13 -0.183043 hybrid +141_2-1 Q0 MARCO_36_21091353-7 14 -0.190211 hybrid +141_2-1 Q0 MARCO_15_481036841-8 15 -0.197138 hybrid +141_2-1 Q0 MARCO_30_1807188622-4 16 -0.198869 hybrid +141_2-1 Q0 MARCO_57_1348084641-2 17 -0.200489 hybrid +141_2-1 Q0 MARCO_10_911778428-12 18 -0.200592 hybrid +141_2-1 Q0 MARCO_09_1195740437-3 19 -0.209274 hybrid +141_2-1 Q0 MARCO_46_263053540-3 20 -0.210578 hybrid +141_2-1 Q0 MARCO_50_1399491563-1 21 -0.214769 hybrid +141_2-1 Q0 MARCO_40_562350218-4 22 -0.223377 hybrid +141_2-1 Q0 MARCO_48_1744657452-3 23 -0.225257 hybrid +141_2-1 Q0 MARCO_36_21148788-9 24 -0.228955 hybrid +141_2-1 Q0 MARCO_40_264626786-11 25 -0.232870 hybrid +141_2-1 Q0 MARCO_40_169727779-5 26 -0.236386 hybrid +141_2-1 Q0 MARCO_10_897295825-15 27 -0.238566 hybrid +141_2-1 Q0 MARCO_30_1806644682-2 28 -0.245332 hybrid +141_2-1 Q0 MARCO_40_561063979-6 29 -0.247594 hybrid +141_2-1 Q0 MARCO_18_1642035430-2 30 -0.250000 hybrid +141_2-1 Q0 MARCO_40_560899459-3 31 -0.250255 hybrid +141_2-1 Q0 MARCO_40_557623992-7 32 -0.252390 hybrid +141_2-1 Q0 MARCO_59_883230728-8 33 -0.253307 hybrid +141_2-1 Q0 MARCO_13_1256080035-7 34 -0.260011 hybrid +141_2-1 Q0 MARCO_47_986193392-11 35 -0.260085 hybrid +141_2-1 Q0 MARCO_40_557623992-5 36 -0.260883 hybrid +141_2-1 Q0 MARCO_40_562350218-7 37 -0.262910 hybrid +141_2-1 Q0 MARCO_40_561085457-6 38 -0.262910 hybrid +141_2-1 Q0 MARCO_54_1855914133-2 39 -0.264329 hybrid +141_2-1 Q0 MARCO_02_1197789364-2 40 -0.264712 hybrid +141_2-1 Q0 MARCO_40_560886098-6 41 -0.265070 hybrid +141_2-1 Q0 MARCO_15_103944462-8 42 -0.273016 hybrid +141_2-1 Q0 MARCO_15_103977589-11 43 -0.273016 hybrid +141_2-1 Q0 MARCO_10_915092098-8 44 -0.285350 hybrid +141_2-1 Q0 MARCO_10_909467982-11 45 -0.286991 hybrid +141_2-1 Q0 MARCO_50_1399491563-8 46 -0.287709 hybrid +141_2-1 Q0 MARCO_40_561292367-2 47 -0.288558 hybrid +141_2-1 Q0 MARCO_04_1214226221-3 48 -0.288739 hybrid +141_2-1 Q0 MARCO_38_616138088-6 49 -0.292079 hybrid +141_2-1 Q0 MARCO_47_606070454-5 50 -0.292087 hybrid +141_2-1 Q0 MARCO_23_1199471928-7 51 -0.294637 hybrid +141_2-1 Q0 MARCO_14_1550215043-35 52 -0.294682 hybrid +141_2-1 Q0 MARCO_47_609020251-13 53 -0.296039 hybrid +141_2-1 Q0 MARCO_02_1568552218-4 54 -0.298984 hybrid +141_2-1 Q0 MARCO_30_744759371-148 55 -0.302431 hybrid +141_2-1 Q0 MARCO_04_480632713-2 56 -0.308230 hybrid +141_2-1 Q0 MARCO_33_1427519249-7 57 -0.312071 hybrid +141_2-1 Q0 MARCO_27_1562847163-6 58 -0.312351 hybrid +141_2-1 Q0 MARCO_50_1456411426-10 59 -0.314045 hybrid +141_2-1 Q0 MARCO_12_1454407232-7 60 -0.318035 hybrid +141_2-1 Q0 MARCO_24_1142751479-13 61 -0.323661 hybrid +141_2-1 Q0 MARCO_09_1195472748-3 62 -0.327486 hybrid +141_2-1 Q0 MARCO_14_1549971571-4 63 -0.331369 hybrid +141_2-1 Q0 MARCO_40_558842460-10 64 -0.334470 hybrid +141_2-1 Q0 MARCO_01_1029009611-33 65 -0.335165 hybrid +141_2-1 Q0 MARCO_59_883230728-7 66 -0.335354 hybrid +141_2-1 Q0 MARCO_50_2502667678-11 67 -0.341161 hybrid +141_2-1 Q0 MARCO_10_913302127-13 68 -0.341412 hybrid +141_2-1 Q0 MARCO_40_264626786-21 69 -0.342227 hybrid +141_2-1 Q0 MARCO_04_1159615199-4 70 -0.344197 hybrid +141_2-1 Q0 MARCO_24_1557455768-11 71 -0.344279 hybrid +141_2-1 Q0 MARCO_40_309370561-27 72 -0.345529 hybrid +141_2-1 Q0 MARCO_13_762551010-2 73 -0.349321 hybrid +141_2-1 Q0 MARCO_30_744759371-48 74 -0.351287 hybrid +141_2-1 Q0 MARCO_02_420075955-2 75 -0.354755 hybrid +141_2-1 Q0 MARCO_41_917933342-13 76 -0.357461 hybrid +141_2-1 Q0 MARCO_50_1679873863-2 77 -0.359451 hybrid +141_2-1 Q0 MARCO_20_1741342622-2 78 -0.360837 hybrid +141_2-1 Q0 MARCO_40_559200981-3 79 -0.362199 hybrid +141_2-1 Q0 MARCO_47_605389282-2 80 -0.362437 hybrid +141_2-1 Q0 MARCO_07_597316768-3 81 -0.362960 hybrid +141_2-1 Q0 MARCO_30_744759371-188 82 -0.363408 hybrid +141_2-1 Q0 MARCO_54_316927266-4 83 -0.366295 hybrid +141_2-1 Q0 MARCO_40_560031725-4 84 -0.367253 hybrid +141_2-1 Q0 KILT_47185-1 85 -0.368697 hybrid +141_2-1 Q0 MARCO_08_1093197680-18 86 -0.370622 hybrid +141_2-1 Q0 MARCO_02_1197789364-3 87 -0.370663 hybrid +141_2-1 Q0 MARCO_40_561085457-3 88 -0.371420 hybrid +141_2-1 Q0 MARCO_20_1740049679-94 89 -0.373834 hybrid +141_2-1 Q0 MARCO_11_1425186721-2 90 -0.374081 hybrid +141_2-1 Q0 MARCO_56_1473907624-24 91 -0.375993 hybrid +141_2-1 Q0 MARCO_03_1771134958-2 92 -0.376890 hybrid +141_2-1 Q0 MARCO_27_580975359-4 93 -0.377433 hybrid +141_2-1 Q0 MARCO_36_391951133-12 94 -0.379045 hybrid +141_2-1 Q0 MARCO_33_1427917497-5 95 -0.380151 hybrid +141_2-1 Q0 MARCO_40_561292367-12 96 -0.383121 hybrid +141_2-1 Q0 MARCO_24_804527208-7 97 -0.384346 hybrid +141_2-1 Q0 MARCO_13_980477087-17 98 -0.384375 hybrid +141_2-1 Q0 MARCO_51_161754977-1 99 -0.387509 hybrid +141_2-1 Q0 MARCO_50_1679873863-16 100 -0.388110 hybrid +141_2-11 Q0 MARCO_28_313753082-1 1 0.617777 hybrid +141_2-11 Q0 MARCO_28_313753082-2 2 0.542274 hybrid +141_2-11 Q0 MARCO_18_1642035430-1 3 0.450660 hybrid +141_2-11 Q0 MARCO_28_313753082-4 4 0.410430 hybrid +141_2-11 Q0 MARCO_36_840746247-2 5 0.402089 hybrid +141_2-11 Q0 MARCO_18_1642035430-8 6 0.323587 hybrid +141_2-11 Q0 MARCO_12_1869314530-5 7 0.310030 hybrid +141_2-11 Q0 MARCO_18_1642035430-6 8 0.301249 hybrid +141_2-11 Q0 MARCO_15_600646838-2 9 0.278266 hybrid +141_2-11 Q0 MARCO_18_1642035430-9 10 0.231377 hybrid +141_2-11 Q0 MARCO_18_1642035430-3 11 0.210603 hybrid +141_2-11 Q0 MARCO_36_840746247-1 12 0.205910 hybrid +141_2-11 Q0 MARCO_04_859221613-3 13 0.187088 hybrid +141_2-11 Q0 MARCO_57_614712155-2 14 0.179467 hybrid +141_2-11 Q0 MARCO_18_1642035430-2 15 0.179416 hybrid +141_2-11 Q0 MARCO_48_290493236-2 16 0.178643 hybrid +141_2-11 Q0 MARCO_18_1642035430-4 17 0.173740 hybrid +141_2-11 Q0 MARCO_18_1642035430-14 18 0.160915 hybrid +141_2-11 Q0 MARCO_44_623879817-4 19 0.142496 hybrid +141_2-11 Q0 MARCO_18_1642035430-7 20 0.115328 hybrid +141_2-11 Q0 MARCO_11_697159170-6 21 0.113871 hybrid +141_2-11 Q0 MARCO_46_1389837794-1 22 0.113870 hybrid +141_2-11 Q0 MARCO_27_1202500253-6 23 0.113744 hybrid +141_2-11 Q0 MARCO_09_1357168570-2 24 0.087695 hybrid +141_2-11 Q0 MARCO_43_1278352692-1 25 0.085155 hybrid +141_2-11 Q0 MARCO_32_152519263-54 26 0.074682 hybrid +141_2-11 Q0 MARCO_18_1642035430-13 27 0.073044 hybrid +141_2-11 Q0 MARCO_48_978771114-5 28 0.070387 hybrid +141_2-11 Q0 MARCO_28_313753082-6 29 0.053769 hybrid +141_2-11 Q0 MARCO_01_1029009611-33 30 0.005124 hybrid +141_2-11 Q0 KILT_613433-17 31 -0.018164 hybrid +141_2-11 Q0 MARCO_14_1486751720-2 32 -0.019517 hybrid +141_2-11 Q0 MARCO_25_518866882-5 33 -0.022351 hybrid +141_2-11 Q0 MARCO_12_1869158091-17 34 -0.023842 hybrid +141_2-11 Q0 MARCO_04_859221613-4 35 -0.029943 hybrid +141_2-11 Q0 MARCO_57_614712155-5 36 -0.030900 hybrid +141_2-11 Q0 MARCO_09_1357168570-3 37 -0.045557 hybrid +141_2-11 Q0 MARCO_56_282974175-1 38 -0.085543 hybrid +141_2-11 Q0 MARCO_18_1642035430-16 39 -0.086896 hybrid +141_2-11 Q0 MARCO_18_1642035430-12 40 -0.093742 hybrid +141_2-11 Q0 MARCO_19_2555634512-2 41 -0.112076 hybrid +141_2-11 Q0 MARCO_09_1357168570-1 42 -0.114754 hybrid +141_2-11 Q0 MARCO_12_1166767672-8 43 -0.121020 hybrid +141_2-11 Q0 MARCO_56_282980903-6 44 -0.126613 hybrid +141_2-11 Q0 MARCO_43_710569550-6 45 -0.145101 hybrid +141_2-11 Q0 MARCO_41_634610701-10 46 -0.153215 hybrid +141_2-11 Q0 MARCO_14_1550321504-4 47 -0.159126 hybrid +141_2-11 Q0 MARCO_50_1399491563-8 48 -0.163864 hybrid +141_2-11 Q0 MARCO_50_1399491563-1 49 -0.168224 hybrid +141_2-11 Q0 MARCO_57_614712155-4 50 -0.177608 hybrid +141_2-11 Q0 MARCO_56_282980903-11 51 -0.202606 hybrid +141_2-11 Q0 MARCO_18_1642035430-5 52 -0.204293 hybrid +141_2-11 Q0 MARCO_57_614712155-3 53 -0.205747 hybrid +141_2-11 Q0 MARCO_27_1801624-6 54 -0.208031 hybrid +141_2-11 Q0 KILT_40772740-2 55 -0.217902 hybrid +141_2-11 Q0 MARCO_27_1237980931-9 56 -0.221187 hybrid +141_2-11 Q0 MARCO_09_1541907932-3 57 -0.224731 hybrid +141_2-11 Q0 MARCO_18_1642035430-15 58 -0.226143 hybrid +141_2-11 Q0 MARCO_18_1642035430-17 59 -0.226143 hybrid +141_2-11 Q0 KILT_48458854-8 60 -0.230700 hybrid +141_2-11 Q0 MARCO_48_978771114-1 61 -0.231071 hybrid +141_2-11 Q0 MARCO_36_840746247-4 62 -0.232697 hybrid +141_2-11 Q0 MARCO_14_1486751720-3 63 -0.239379 hybrid +141_2-11 Q0 MARCO_50_1399491563-10 64 -0.240471 hybrid +141_2-11 Q0 MARCO_30_826115762-1 65 -0.241750 hybrid +141_2-11 Q0 MARCO_27_1237112784-2 66 -0.249999 hybrid +141_2-11 Q0 MARCO_18_445345307-8 67 -0.252869 hybrid +141_2-11 Q0 MARCO_18_3130458339-6 68 -0.271595 hybrid +141_2-11 Q0 KILT_48458854-4 69 -0.272500 hybrid +141_2-11 Q0 MARCO_03_1217251115-5 70 -0.272883 hybrid +141_2-11 Q0 MARCO_44_629465929-5 71 -0.277157 hybrid +141_2-11 Q0 MARCO_48_978771114-6 72 -0.278092 hybrid +141_2-11 Q0 KILT_53556985-1 73 -0.280536 hybrid +141_2-11 Q0 MARCO_01_1858000790-4 74 -0.284862 hybrid +141_2-11 Q0 MARCO_20_1692064734-4 75 -0.290272 hybrid +141_2-11 Q0 MARCO_03_1771134958-2 76 -0.294156 hybrid +141_2-11 Q0 MARCO_28_313753082-5 77 -0.298110 hybrid +141_2-11 Q0 MARCO_18_1642035430-10 78 -0.304284 hybrid +141_2-11 Q0 KILT_41754003-15 79 -0.306174 hybrid +141_2-11 Q0 KILT_43457623-2 80 -0.307280 hybrid +141_2-11 Q0 MARCO_24_1137884337-13 81 -0.308609 hybrid +141_2-11 Q0 MARCO_18_1642035430-11 82 -0.319722 hybrid +141_2-11 Q0 MARCO_50_1309249709-17 83 -0.321132 hybrid +141_2-11 Q0 KILT_743475-2 84 -0.322005 hybrid +141_2-11 Q0 MARCO_28_41657031-10 85 -0.322018 hybrid +141_2-11 Q0 MARCO_27_1106847284-10 86 -0.325434 hybrid +141_2-11 Q0 MARCO_25_1032058133-6 87 -0.327367 hybrid +141_2-11 Q0 MARCO_28_397743029-37 88 -0.328396 hybrid +141_2-11 Q0 MARCO_41_2084044692-3 89 -0.328830 hybrid +141_2-11 Q0 MARCO_28_1650353096-10 90 -0.330705 hybrid +141_2-11 Q0 MARCO_15_600673732-9 91 -0.331410 hybrid +141_2-11 Q0 MARCO_28_41600890-11 92 -0.335459 hybrid +141_2-11 Q0 MARCO_00_745300140-4 93 -0.342258 hybrid +141_2-11 Q0 MARCO_09_810936368-2 94 -0.343129 hybrid +141_2-11 Q0 MARCO_14_1487099954-2 95 -0.343510 hybrid +141_2-11 Q0 MARCO_07_789633719-9 96 -0.347138 hybrid +141_2-11 Q0 MARCO_59_884854714-2 97 -0.350268 hybrid +141_2-11 Q0 KILT_729878-2 98 -0.351226 hybrid +141_2-11 Q0 MARCO_31_295543353-7 99 -0.357767 hybrid +141_2-11 Q0 KILT_29441521-2 100 -0.359255 hybrid +141_2-13 Q0 MARCO_01_830855712-13 1 0.433680 hybrid +141_2-13 Q0 MARCO_50_2155141197-19 2 0.429269 hybrid +141_2-13 Q0 MARCO_01_829924766-18 3 0.302024 hybrid +141_2-13 Q0 MARCO_01_831982137-19 4 0.285288 hybrid +141_2-13 Q0 MARCO_19_2489928640-11 5 0.285288 hybrid +141_2-13 Q0 MARCO_19_2513676244-13 6 0.285280 hybrid +141_2-13 Q0 MARCO_16_449364321-1 7 0.182694 hybrid +141_2-13 Q0 MARCO_44_608217445-1 8 -0.004436 hybrid +141_2-13 Q0 MARCO_16_449364321-3 9 -0.008114 hybrid +141_2-13 Q0 MARCO_30_900016222-24 10 -0.047166 hybrid +141_2-13 Q0 MARCO_16_449364321-10 11 -0.091142 hybrid +141_2-13 Q0 MARCO_13_139103428-2 12 -0.102952 hybrid +141_2-13 Q0 MARCO_14_1554596026-6 13 -0.126740 hybrid +141_2-13 Q0 MARCO_01_831982137-21 14 -0.127356 hybrid +141_2-13 Q0 MARCO_19_2489928640-13 15 -0.127356 hybrid +141_2-13 Q0 MARCO_19_2513676244-15 16 -0.127356 hybrid +141_2-13 Q0 MARCO_14_1550361835-7 17 -0.171562 hybrid +141_2-13 Q0 MARCO_36_1101870115-12 18 -0.193389 hybrid +141_2-13 Q0 MARCO_36_1101942727-8 19 -0.193389 hybrid +141_2-13 Q0 MARCO_29_1334919388-38 20 -0.195522 hybrid +141_2-13 Q0 MARCO_25_1440064272-8 21 -0.219441 hybrid +141_2-13 Q0 MARCO_23_1832243809-1 22 -0.226599 hybrid +141_2-13 Q0 MARCO_50_1673836905-46 23 -0.233382 hybrid +141_2-13 Q0 MARCO_11_1376174179-7 24 -0.238615 hybrid +141_2-13 Q0 MARCO_30_899507472-24 25 -0.243029 hybrid +141_2-13 Q0 MARCO_01_829478272-38 26 -0.247133 hybrid +141_2-13 Q0 MARCO_19_2512092029-31 27 -0.247133 hybrid +141_2-13 Q0 MARCO_19_2496958346-45 28 -0.247133 hybrid +141_2-13 Q0 MARCO_01_829924766-40 29 -0.247133 hybrid +141_2-13 Q0 MARCO_30_898878792-31 30 -0.248945 hybrid +141_2-13 Q0 MARCO_36_854332665-4 31 -0.250000 hybrid +141_2-13 Q0 MARCO_50_1673836905-30 32 -0.251487 hybrid +141_2-13 Q0 MARCO_40_1750784239-26 33 -0.251755 hybrid +141_2-13 Q0 MARCO_14_1549450269-18 34 -0.253432 hybrid +141_2-13 Q0 MARCO_19_2495732249-30 35 -0.254639 hybrid +141_2-13 Q0 MARCO_14_1552800610-6 36 -0.258410 hybrid +141_2-13 Q0 MARCO_35_305221230-3 37 -0.258742 hybrid +141_2-13 Q0 MARCO_44_608217445-3 38 -0.259418 hybrid +141_2-13 Q0 MARCO_50_2155141197-18 39 -0.263793 hybrid +141_2-13 Q0 MARCO_31_295248992-6 40 -0.277571 hybrid +141_2-13 Q0 MARCO_34_1003279232-5 41 -0.277821 hybrid +141_2-13 Q0 MARCO_12_1168148020-6 42 -0.279822 hybrid +141_2-13 Q0 MARCO_30_892920448-1 43 -0.287849 hybrid +141_2-13 Q0 MARCO_16_449364321-11 44 -0.291605 hybrid +141_2-13 Q0 MARCO_01_830855712-15 45 -0.292923 hybrid +141_2-13 Q0 MARCO_50_938168189-30 46 -0.293927 hybrid +141_2-13 Q0 MARCO_30_826115762-13 47 -0.305836 hybrid +141_2-13 Q0 MARCO_23_291723829-5 48 -0.309667 hybrid +141_2-13 Q0 MARCO_40_1187574595-3 49 -0.311051 hybrid +141_2-13 Q0 MARCO_01_829924766-21 50 -0.317919 hybrid +141_2-13 Q0 MARCO_01_831982137-22 51 -0.317919 hybrid +141_2-13 Q0 MARCO_19_2489928640-14 52 -0.317919 hybrid +141_2-13 Q0 MARCO_19_2513676244-16 53 -0.317919 hybrid +141_2-13 Q0 MARCO_14_1549236903-14 54 -0.320454 hybrid +141_2-13 Q0 MARCO_00_1286684700-3 55 -0.327602 hybrid +141_2-13 Q0 MARCO_16_2769231193-41 56 -0.329306 hybrid +141_2-13 Q0 MARCO_12_1167762674-3 57 -0.329695 hybrid +141_2-13 Q0 MARCO_14_1554347889-5 58 -0.332200 hybrid +141_2-13 Q0 MARCO_30_900052011-2 59 -0.334094 hybrid +141_2-13 Q0 MARCO_28_41600890-9 60 -0.336348 hybrid +141_2-13 Q0 KILT_52214944-3 61 -0.337031 hybrid +141_2-13 Q0 MARCO_17_1666483567-3 62 -0.346165 hybrid +141_2-13 Q0 MARCO_36_952122842-2 63 -0.349852 hybrid +141_2-13 Q0 MARCO_13_1763260734-6 64 -0.351147 hybrid +141_2-13 Q0 MARCO_01_829924766-20 65 -0.352474 hybrid +141_2-13 Q0 MARCO_00_1286684700-5 66 -0.354232 hybrid +141_2-13 Q0 MARCO_19_2501106498-49 67 -0.356908 hybrid +141_2-13 Q0 MARCO_34_1002676375-6 68 -0.359517 hybrid +141_2-13 Q0 MARCO_36_1000728839-2 69 -0.360986 hybrid +141_2-13 Q0 MARCO_14_1550215043-32 70 -0.363892 hybrid +141_2-13 Q0 MARCO_14_1551639497-5 71 -0.365650 hybrid +141_2-13 Q0 MARCO_24_1142513708-3 72 -0.366286 hybrid +141_2-13 Q0 MARCO_24_1142591424-3 73 -0.367693 hybrid +141_2-13 Q0 MARCO_22_1252478862-3 74 -0.368548 hybrid +141_2-13 Q0 MARCO_27_1710242554-3 75 -0.369614 hybrid +141_2-13 Q0 MARCO_30_899562481-18 76 -0.370212 hybrid +141_2-13 Q0 MARCO_19_2501168671-38 77 -0.373053 hybrid +141_2-13 Q0 MARCO_14_665767216-5 78 -0.373874 hybrid +141_2-13 Q0 MARCO_26_110906995-28 79 -0.375301 hybrid +141_2-13 Q0 MARCO_34_476172808-4 80 -0.375611 hybrid +141_2-13 Q0 MARCO_50_1417341413-35 81 -0.376072 hybrid +141_2-13 Q0 MARCO_14_1550310400-5 82 -0.376825 hybrid +141_2-13 Q0 MARCO_14_1550023599-12 83 -0.378810 hybrid +141_2-13 Q0 MARCO_27_586016124-8 84 -0.378883 hybrid +141_2-13 Q0 MARCO_16_4043114873-17 85 -0.382997 hybrid +141_2-13 Q0 MARCO_14_1549836128-11 86 -0.383058 hybrid +141_2-13 Q0 MARCO_13_1153626125-13 87 -0.385472 hybrid +141_2-13 Q0 MARCO_36_902089210-6 88 -0.388357 hybrid +141_2-13 Q0 MARCO_19_2482062737-48 89 -0.388472 hybrid +141_2-13 Q0 MARCO_14_1550321504-4 90 -0.391033 hybrid +141_2-13 Q0 MARCO_12_1168258005-15 91 -0.391450 hybrid +141_2-13 Q0 MARCO_12_1168071285-10 92 -0.391450 hybrid +141_2-13 Q0 MARCO_19_2493609746-23 93 -0.393388 hybrid +141_2-13 Q0 MARCO_19_2512376372-37 94 -0.393391 hybrid +141_2-13 Q0 MARCO_14_1551384788-1 95 -0.395218 hybrid +141_2-13 Q0 MARCO_13_1439475348-9 96 -0.395506 hybrid +141_2-13 Q0 MARCO_16_3034197558-1 97 -0.396329 hybrid +141_2-13 Q0 MARCO_16_3034197558-3 98 -0.396332 hybrid +141_2-13 Q0 MARCO_14_1553646776-14 99 -0.396853 hybrid +141_2-13 Q0 MARCO_12_1168319701-4 100 -0.400403 hybrid +141_2-3 Q0 MARCO_28_313753082-2 1 0.592735 hybrid +141_2-3 Q0 MARCO_18_1642035430-6 2 0.562699 hybrid +141_2-3 Q0 MARCO_36_840746247-2 3 0.516313 hybrid +141_2-3 Q0 MARCO_48_290493236-2 4 0.413660 hybrid +141_2-3 Q0 MARCO_44_623879817-4 5 0.383834 hybrid +141_2-3 Q0 MARCO_18_1642035430-8 6 0.365594 hybrid +141_2-3 Q0 MARCO_18_1642035430-1 7 0.325599 hybrid +141_2-3 Q0 MARCO_28_313753082-1 8 0.254896 hybrid +141_2-3 Q0 MARCO_12_1869314530-5 9 0.212901 hybrid +141_2-3 Q0 MARCO_18_1642035430-2 10 0.180504 hybrid +141_2-3 Q0 MARCO_28_313753082-4 11 0.175704 hybrid +141_2-3 Q0 MARCO_46_1389837794-1 12 0.166562 hybrid +141_2-3 Q0 MARCO_18_1642035430-14 13 0.164900 hybrid +141_2-3 Q0 MARCO_18_1642035430-7 14 0.120057 hybrid +141_2-3 Q0 MARCO_18_1642035430-4 15 0.116186 hybrid +141_2-3 Q0 MARCO_18_1642035430-9 16 0.088724 hybrid +141_2-3 Q0 KILT_29441521-2 17 0.063960 hybrid +141_2-3 Q0 MARCO_36_840746247-1 18 0.059437 hybrid +141_2-3 Q0 MARCO_32_152519263-54 19 0.057398 hybrid +141_2-3 Q0 MARCO_18_1642035430-3 20 0.047171 hybrid +141_2-3 Q0 MARCO_41_2084044692-3 21 -0.003596 hybrid +141_2-3 Q0 MARCO_48_978771114-5 22 -0.014223 hybrid +141_2-3 Q0 MARCO_09_1357168570-2 23 -0.038522 hybrid +141_2-3 Q0 MARCO_14_1486751720-2 24 -0.039089 hybrid +141_2-3 Q0 MARCO_57_614712155-2 25 -0.050822 hybrid +141_2-3 Q0 MARCO_09_1357168570-1 26 -0.075287 hybrid +141_2-3 Q0 MARCO_15_600646838-2 27 -0.088183 hybrid +141_2-3 Q0 MARCO_18_1642035430-13 28 -0.105179 hybrid +141_2-3 Q0 MARCO_18_1642035430-12 29 -0.107628 hybrid +141_2-3 Q0 MARCO_46_1450320711-3 30 -0.110700 hybrid +141_2-3 Q0 MARCO_11_697159170-6 31 -0.115305 hybrid +141_2-3 Q0 MARCO_25_518866882-5 32 -0.115725 hybrid +141_2-3 Q0 MARCO_14_1549971571-20 33 -0.115908 hybrid +141_2-3 Q0 MARCO_57_614712155-5 34 -0.129680 hybrid +141_2-3 Q0 MARCO_12_1869158091-17 35 -0.166087 hybrid +141_2-3 Q0 MARCO_27_1202500253-6 36 -0.168105 hybrid +141_2-3 Q0 KILT_613433-17 37 -0.183938 hybrid +141_2-3 Q0 MARCO_18_1642035430-5 38 -0.193614 hybrid +141_2-3 Q0 MARCO_01_1029009611-33 39 -0.215719 hybrid +141_2-3 Q0 MARCO_28_313753082-5 40 -0.219431 hybrid +141_2-3 Q0 MARCO_56_282974175-1 41 -0.225162 hybrid +141_2-3 Q0 MARCO_30_826115762-1 42 -0.230286 hybrid +141_2-3 Q0 MARCO_28_313753082-6 43 -0.230981 hybrid +141_2-3 Q0 MARCO_43_1278352692-1 44 -0.232515 hybrid +141_2-3 Q0 MARCO_04_859221613-3 45 -0.238544 hybrid +141_2-3 Q0 MARCO_19_2555634512-2 46 -0.243238 hybrid +141_2-3 Q0 MARCO_18_1642035430-15 47 -0.252028 hybrid +141_2-3 Q0 MARCO_18_1642035430-17 48 -0.252028 hybrid +141_2-3 Q0 MARCO_52_1529875069-1 49 -0.254581 hybrid +141_2-3 Q0 MARCO_51_1483456084-1 50 -0.263533 hybrid +141_2-3 Q0 MARCO_02_420075955-1 51 -0.270105 hybrid +141_2-3 Q0 MARCO_14_1199417139-1 52 -0.270630 hybrid +141_2-3 Q0 MARCO_12_1166767672-8 53 -0.273864 hybrid +141_2-3 Q0 KILT_48458854-8 54 -0.274907 hybrid +141_2-3 Q0 MARCO_17_679331183-5 55 -0.286864 hybrid +141_2-3 Q0 MARCO_50_1309249709-17 56 -0.287179 hybrid +141_2-3 Q0 MARCO_09_1357168570-3 57 -0.291520 hybrid +141_2-3 Q0 MARCO_03_1771134958-2 58 -0.297609 hybrid +141_2-3 Q0 MARCO_50_1399491563-8 59 -0.310210 hybrid +141_2-3 Q0 MARCO_14_1486751720-3 60 -0.312346 hybrid +141_2-3 Q0 MARCO_04_859221613-4 61 -0.312977 hybrid +141_2-3 Q0 MARCO_52_1529849136-1 62 -0.313418 hybrid +141_2-3 Q0 MARCO_51_1483456084-2 63 -0.313739 hybrid +141_2-3 Q0 MARCO_14_1487099954-3 64 -0.316507 hybrid +141_2-3 Q0 MARCO_57_286606536-1 65 -0.316831 hybrid +141_2-3 Q0 MARCO_43_710569550-6 66 -0.327197 hybrid +141_2-3 Q0 MARCO_19_2322308441-5 67 -0.330644 hybrid +141_2-3 Q0 MARCO_14_1550321504-4 68 -0.331267 hybrid +141_2-3 Q0 MARCO_16_1911734420-15 69 -0.333413 hybrid +141_2-3 Q0 MARCO_25_1032058133-6 70 -0.340732 hybrid +141_2-3 Q0 MARCO_09_1541907932-3 71 -0.347920 hybrid +141_2-3 Q0 MARCO_54_345126522-1 72 -0.348091 hybrid +141_2-3 Q0 KILT_20829722-1 73 -0.349015 hybrid +141_2-3 Q0 MARCO_37_1462768622-1 74 -0.356019 hybrid +141_2-3 Q0 MARCO_41_1373664965-44 75 -0.361735 hybrid +141_2-3 Q0 MARCO_24_1137884337-9 76 -0.365545 hybrid +141_2-3 Q0 MARCO_44_740722524-2 77 -0.366648 hybrid +141_2-3 Q0 MARCO_28_344529823-1 78 -0.369341 hybrid +141_2-3 Q0 MARCO_14_1491677448-6 79 -0.370941 hybrid +141_2-3 Q0 MARCO_40_1675561799-4 80 -0.373457 hybrid +141_2-3 Q0 KILT_47185-7 81 -0.373965 hybrid +141_2-3 Q0 MARCO_56_83934705-2 82 -0.374084 hybrid +141_2-3 Q0 MARCO_02_589263084-1 83 -0.374296 hybrid +141_2-3 Q0 MARCO_19_1512428476-1 84 -0.375515 hybrid +141_2-3 Q0 MARCO_14_1487099954-2 85 -0.377846 hybrid +141_2-3 Q0 MARCO_57_286606536-5 86 -0.384993 hybrid +141_2-3 Q0 KILT_20829722-3 87 -0.387779 hybrid +141_2-3 Q0 MARCO_57_286606536-2 88 -0.388092 hybrid +141_2-3 Q0 KILT_43457623-2 89 -0.394172 hybrid +141_2-3 Q0 MARCO_07_1191803437-4 90 -0.394504 hybrid +141_2-3 Q0 MARCO_14_1199417139-3 91 -0.395207 hybrid +141_2-3 Q0 MARCO_14_1550167088-23 92 -0.397911 hybrid +141_2-3 Q0 MARCO_44_1466399527-2 93 -0.400077 hybrid +141_2-3 Q0 MARCO_37_1462768622-3 94 -0.400695 hybrid +141_2-3 Q0 MARCO_50_1399491563-10 95 -0.403276 hybrid +141_2-3 Q0 MARCO_03_1217251115-5 96 -0.405636 hybrid +141_2-3 Q0 MARCO_02_407019929-2 97 -0.406615 hybrid +141_2-3 Q0 MARCO_44_764275057-1 98 -0.406708 hybrid +141_2-3 Q0 MARCO_41_634610701-10 99 -0.407124 hybrid +141_2-3 Q0 MARCO_56_282980903-6 100 -0.407865 hybrid +141_2-5 Q0 MARCO_30_382651380-30 1 0.250000 hybrid +141_2-5 Q0 KILT_26136751-1 2 -0.059260 hybrid +141_2-5 Q0 KILT_22352983-1 3 -0.070946 hybrid +141_2-5 Q0 MARCO_20_1580416194-2 4 -0.107046 hybrid +141_2-5 Q0 MARCO_18_482698154-5 5 -0.132389 hybrid +141_2-5 Q0 MARCO_19_474670237-4 6 -0.141481 hybrid +141_2-5 Q0 KILT_59361293-1 7 -0.145789 hybrid +141_2-5 Q0 KILT_58618294-1 8 -0.155588 hybrid +141_2-5 Q0 KILT_56997315-1 9 -0.166065 hybrid +141_2-5 Q0 MARCO_44_1765146634-3 10 -0.237224 hybrid +141_2-5 Q0 MARCO_18_1808054019-3 11 -0.241134 hybrid +141_2-5 Q0 MARCO_37_715260675-33 12 -0.249202 hybrid +141_2-5 Q0 KILT_59601191-15 13 -0.250000 hybrid +141_2-5 Q0 KILT_58618294-3 14 -0.257160 hybrid +141_2-5 Q0 MARCO_01_693943921-5 15 -0.261520 hybrid +141_2-5 Q0 MARCO_18_482698154-2 16 -0.268033 hybrid +141_2-5 Q0 KILT_59601191-14 17 -0.270630 hybrid +141_2-5 Q0 MARCO_39_808072023-3 18 -0.293758 hybrid +141_2-5 Q0 MARCO_37_711923183-13 19 -0.294852 hybrid +141_2-5 Q0 MARCO_37_698241464-14 20 -0.294852 hybrid +141_2-5 Q0 MARCO_37_699628426-12 21 -0.294852 hybrid +141_2-5 Q0 MARCO_37_700305022-12 22 -0.294852 hybrid +141_2-5 Q0 MARCO_37_707469021-13 23 -0.294852 hybrid +141_2-5 Q0 KILT_34925499-7 24 -0.313951 hybrid +141_2-5 Q0 MARCO_06_1172887863-505 25 -0.314346 hybrid +141_2-5 Q0 MARCO_32_1282340524-33 26 -0.320254 hybrid +141_2-5 Q0 KILT_59601191-1 27 -0.327506 hybrid +141_2-5 Q0 MARCO_06_1172887863-527 28 -0.333062 hybrid +141_2-5 Q0 MARCO_21_1381201737-3 29 -0.335570 hybrid +141_2-5 Q0 KILT_9938967-4 30 -0.336336 hybrid +141_2-5 Q0 KILT_39364088-1 31 -0.338098 hybrid +141_2-5 Q0 MARCO_19_960114018-5 32 -0.344673 hybrid +141_2-5 Q0 MARCO_07_617570681-2 33 -0.353678 hybrid +141_2-5 Q0 KILT_59601191-3 34 -0.361856 hybrid +141_2-5 Q0 MARCO_52_1329997417-2 35 -0.361904 hybrid +141_2-5 Q0 MARCO_44_608860165-4 36 -0.362868 hybrid +141_2-5 Q0 KILT_58618294-5 37 -0.368010 hybrid +141_2-5 Q0 KILT_32717614-2 38 -0.368247 hybrid +141_2-5 Q0 KILT_10062774-1 39 -0.368306 hybrid +141_2-5 Q0 KILT_1642704-9 40 -0.372239 hybrid +141_2-5 Q0 KILT_24463353-1 41 -0.376098 hybrid +141_2-5 Q0 KILT_42547009-2 42 -0.376927 hybrid +141_2-5 Q0 MARCO_16_1727721624-4 43 -0.377370 hybrid +141_2-5 Q0 MARCO_17_3085633210-4 44 -0.380888 hybrid +141_2-5 Q0 KILT_15400133-3 45 -0.381663 hybrid +141_2-5 Q0 KILT_47185-1 46 -0.382311 hybrid +141_2-5 Q0 MARCO_30_2027444173-5 47 -0.387223 hybrid +141_2-5 Q0 MARCO_20_1732329969-11 48 -0.387302 hybrid +141_2-5 Q0 MARCO_07_619872937-5 49 -0.396753 hybrid +141_2-5 Q0 KILT_6020291-10 50 -0.402242 hybrid +141_2-5 Q0 MARCO_27_1432652372-4 51 -0.402550 hybrid +141_2-5 Q0 KILT_59601191-13 52 -0.403700 hybrid +141_2-5 Q0 MARCO_52_1651412823-1 53 -0.406251 hybrid +141_2-5 Q0 KILT_9660652-4 54 -0.406946 hybrid +141_2-5 Q0 MARCO_18_1642035430-1 55 -0.407847 hybrid +141_2-5 Q0 MARCO_44_740722524-2 56 -0.407847 hybrid +141_2-5 Q0 KILT_494457-3 57 -0.408692 hybrid +141_2-5 Q0 KILT_59601191-11 58 -0.409867 hybrid +141_2-5 Q0 MARCO_18_3772717280-16 59 -0.412463 hybrid +141_2-5 Q0 MARCO_17_357624338-4 60 -0.413225 hybrid +141_2-5 Q0 MARCO_50_2713003475-4 61 -0.413277 hybrid +141_2-5 Q0 MARCO_50_1321848492-11 62 -0.415700 hybrid +141_2-5 Q0 KILT_2001577-18 63 -0.416231 hybrid +141_2-5 Q0 MARCO_31_937107678-3 64 -0.418012 hybrid +141_2-5 Q0 KILT_47742974-1 65 -0.418849 hybrid +141_2-5 Q0 MARCO_15_107050948-10 66 -0.422080 hybrid +141_2-5 Q0 MARCO_02_938428602-3 67 -0.423833 hybrid +141_2-5 Q0 MARCO_29_1173372222-10 68 -0.429509 hybrid +141_2-5 Q0 MARCO_18_3246781778-7 69 -0.431005 hybrid +141_2-5 Q0 MARCO_06_1129855015-95 70 -0.433967 hybrid +141_2-5 Q0 KILT_49548409-2 71 -0.434315 hybrid +141_2-5 Q0 MARCO_25_35003439-12 72 -0.434469 hybrid +141_2-5 Q0 MARCO_30_2023461965-4 73 -0.437297 hybrid +141_2-5 Q0 MARCO_43_1002143372-13 74 -0.442194 hybrid +141_2-5 Q0 MARCO_52_1651507877-3 75 -0.445796 hybrid +141_2-5 Q0 MARCO_12_1809002904-4 76 -0.446502 hybrid +141_2-5 Q0 MARCO_17_4138751961-45 77 -0.448031 hybrid +141_2-5 Q0 MARCO_48_1557756303-4 78 -0.449480 hybrid +141_2-5 Q0 KILT_11768-3 79 -0.451198 hybrid +141_2-5 Q0 KILT_14013248-4 80 -0.451364 hybrid +141_2-5 Q0 KILT_51110374-4 81 -0.451684 hybrid +141_2-5 Q0 MARCO_43_983526925-17 82 -0.452991 hybrid +141_2-5 Q0 KILT_963586-3 83 -0.454370 hybrid +141_2-5 Q0 KILT_2866352-5 84 -0.454591 hybrid +141_2-5 Q0 MARCO_16_1627812464-3 85 -0.456715 hybrid +141_2-5 Q0 MARCO_30_2027444173-229 86 -0.459425 hybrid +141_2-5 Q0 MARCO_52_1651471415-8 87 -0.459598 hybrid +141_2-5 Q0 MARCO_24_956118104-4 88 -0.459804 hybrid +141_2-5 Q0 MARCO_54_2034678451-2 89 -0.462880 hybrid +141_2-5 Q0 KILT_430840-10 90 -0.464456 hybrid +141_2-5 Q0 KILT_30716870-5 91 -0.465807 hybrid +141_2-5 Q0 KILT_382697-4 92 -0.468858 hybrid +141_2-5 Q0 KILT_40192339-1 93 -0.470123 hybrid +141_2-5 Q0 KILT_160071-2 94 -0.471202 hybrid +141_2-5 Q0 MARCO_37_702915793-10 95 -0.472011 hybrid +141_2-5 Q0 MARCO_37_702915793-12 96 -0.472011 hybrid +141_2-5 Q0 MARCO_37_702915793-14 97 -0.472011 hybrid +141_2-5 Q0 MARCO_23_1081459172-3 98 -0.472118 hybrid +141_2-5 Q0 MARCO_52_1651410372-1 99 -0.472406 hybrid +141_2-5 Q0 KILT_22148899-1 100 -0.474985 hybrid +141_2-7 Q0 MARCO_18_1642035430-7 1 0.593084 hybrid +141_2-7 Q0 MARCO_18_1642035430-6 2 0.583826 hybrid +141_2-7 Q0 MARCO_18_1642035430-8 3 0.577298 hybrid +141_2-7 Q0 MARCO_28_313753082-1 4 0.518275 hybrid +141_2-7 Q0 MARCO_18_1642035430-2 5 0.423152 hybrid +141_2-7 Q0 MARCO_48_978771114-5 6 0.327793 hybrid +141_2-7 Q0 MARCO_36_840746247-2 7 0.307324 hybrid +141_2-7 Q0 MARCO_18_1642035430-10 8 0.298245 hybrid +141_2-7 Q0 MARCO_18_1642035430-1 9 0.268821 hybrid +141_2-7 Q0 MARCO_12_1166767672-8 10 0.249267 hybrid +141_2-7 Q0 MARCO_28_313753082-2 11 0.229528 hybrid +141_2-7 Q0 MARCO_44_623879817-4 12 0.215040 hybrid +141_2-7 Q0 MARCO_36_840746247-1 13 0.214641 hybrid +141_2-7 Q0 MARCO_01_1029009611-33 14 0.214036 hybrid +141_2-7 Q0 MARCO_28_313753082-4 15 0.163207 hybrid +141_2-7 Q0 KILT_613433-17 16 0.130583 hybrid +141_2-7 Q0 MARCO_27_1237980931-9 17 0.121096 hybrid +141_2-7 Q0 MARCO_25_518866882-5 18 0.109458 hybrid +141_2-7 Q0 MARCO_18_1642035430-3 19 0.105141 hybrid +141_2-7 Q0 MARCO_04_859221613-3 20 0.091791 hybrid +141_2-7 Q0 MARCO_46_1389837794-1 21 0.071953 hybrid +141_2-7 Q0 KILT_53556985-1 22 0.068547 hybrid +141_2-7 Q0 MARCO_18_1642035430-14 23 0.047291 hybrid +141_2-7 Q0 MARCO_15_600646838-2 24 0.037739 hybrid +141_2-7 Q0 MARCO_18_1642035430-4 25 0.032021 hybrid +141_2-7 Q0 MARCO_18_1642035430-13 26 0.029999 hybrid +141_2-7 Q0 MARCO_57_614712155-2 27 0.020812 hybrid +141_2-7 Q0 MARCO_14_1486751720-2 28 0.019570 hybrid +141_2-7 Q0 MARCO_12_1869314530-5 29 -0.002399 hybrid +141_2-7 Q0 MARCO_48_290493236-2 30 -0.005916 hybrid +141_2-7 Q0 MARCO_56_282974175-1 31 -0.023812 hybrid +141_2-7 Q0 MARCO_18_1642035430-9 32 -0.026751 hybrid +141_2-7 Q0 MARCO_27_1202500253-6 33 -0.027781 hybrid +141_2-7 Q0 MARCO_03_1771134958-2 34 -0.028469 hybrid +141_2-7 Q0 MARCO_09_1357168570-2 35 -0.038003 hybrid +141_2-7 Q0 MARCO_12_1869158091-17 36 -0.044122 hybrid +141_2-7 Q0 MARCO_57_614712155-5 37 -0.050534 hybrid +141_2-7 Q0 MARCO_11_697159170-6 38 -0.063292 hybrid +141_2-7 Q0 MARCO_18_1642035430-12 39 -0.067383 hybrid +141_2-7 Q0 MARCO_32_152519263-54 40 -0.077022 hybrid +141_2-7 Q0 MARCO_28_447655912-10 41 -0.077742 hybrid +141_2-7 Q0 MARCO_28_41657031-10 42 -0.082695 hybrid +141_2-7 Q0 MARCO_18_1642035430-15 43 -0.089076 hybrid +141_2-7 Q0 MARCO_18_1642035430-17 44 -0.089076 hybrid +141_2-7 Q0 MARCO_18_1642035430-16 45 -0.092506 hybrid +141_2-7 Q0 MARCO_43_1278352692-1 46 -0.108049 hybrid +141_2-7 Q0 MARCO_31_295543353-7 47 -0.110890 hybrid +141_2-7 Q0 MARCO_12_1166874951-11 48 -0.113543 hybrid +141_2-7 Q0 MARCO_09_1357168570-1 49 -0.121119 hybrid +141_2-7 Q0 MARCO_04_859221613-4 50 -0.126835 hybrid +141_2-7 Q0 MARCO_18_1642035430-11 51 -0.143906 hybrid +141_2-7 Q0 MARCO_04_859221613-1 52 -0.145096 hybrid +141_2-7 Q0 MARCO_28_313753082-6 53 -0.153633 hybrid +141_2-7 Q0 MARCO_57_614712155-4 54 -0.155444 hybrid +141_2-7 Q0 MARCO_14_1550321504-4 55 -0.157092 hybrid +141_2-7 Q0 MARCO_09_1541907932-3 56 -0.160236 hybrid +141_2-7 Q0 MARCO_50_1399491563-8 57 -0.167130 hybrid +141_2-7 Q0 MARCO_01_828039823-24 58 -0.168833 hybrid +141_2-7 Q0 MARCO_44_629465929-5 59 -0.174194 hybrid +141_2-7 Q0 MARCO_16_1911734420-15 60 -0.180409 hybrid +141_2-7 Q0 MARCO_04_859221613-2 61 -0.189687 hybrid +141_2-7 Q0 MARCO_14_1486751720-3 62 -0.190872 hybrid +141_2-7 Q0 MARCO_30_826115762-1 63 -0.193347 hybrid +141_2-7 Q0 MARCO_30_127331614-3 64 -0.197036 hybrid +141_2-7 Q0 MARCO_12_1166767672-33 65 -0.207956 hybrid +141_2-7 Q0 MARCO_09_1357168570-3 66 -0.212695 hybrid +141_2-7 Q0 MARCO_43_710569550-6 67 -0.227872 hybrid +141_2-7 Q0 MARCO_46_1450320711-2 68 -0.231944 hybrid +141_2-7 Q0 MARCO_19_2555634512-2 69 -0.240724 hybrid +141_2-7 Q0 MARCO_46_1450320711-3 70 -0.243359 hybrid +141_2-7 Q0 MARCO_36_840746247-4 71 -0.248825 hybrid +141_2-7 Q0 MARCO_52_1529875069-1 72 -0.249999 hybrid +141_2-7 Q0 MARCO_00_594936998-15 73 -0.257300 hybrid +141_2-7 Q0 MARCO_12_1166767672-15 74 -0.257801 hybrid +141_2-7 Q0 MARCO_43_710569550-1 75 -0.264574 hybrid +141_2-7 Q0 MARCO_08_190244827-56 76 -0.264636 hybrid +141_2-7 Q0 MARCO_56_282980903-6 77 -0.266621 hybrid +141_2-7 Q0 MARCO_36_822101182-2 78 -0.269035 hybrid +141_2-7 Q0 MARCO_00_594570808-147 79 -0.270526 hybrid +141_2-7 Q0 MARCO_24_1137884337-13 80 -0.275443 hybrid +141_2-7 Q0 MARCO_40_1675561799-4 81 -0.275790 hybrid +141_2-7 Q0 MARCO_28_313753082-5 82 -0.279213 hybrid +141_2-7 Q0 MARCO_14_1199417139-1 83 -0.282282 hybrid +141_2-7 Q0 MARCO_12_1166865653-7 84 -0.287822 hybrid +141_2-7 Q0 MARCO_03_263166621-1 85 -0.292556 hybrid +141_2-7 Q0 MARCO_01_2035501874-5 86 -0.293394 hybrid +141_2-7 Q0 MARCO_50_1399491563-3 87 -0.295780 hybrid +141_2-7 Q0 MARCO_50_1399491563-10 88 -0.299435 hybrid +141_2-7 Q0 MARCO_48_978771114-7 89 -0.307310 hybrid +141_2-7 Q0 MARCO_44_743272561-3 90 -0.311018 hybrid +141_2-7 Q0 MARCO_48_978771114-1 91 -0.311041 hybrid +141_2-7 Q0 MARCO_27_1695883043-2 92 -0.311451 hybrid +141_2-7 Q0 KILT_48458854-4 93 -0.313109 hybrid +141_2-7 Q0 MARCO_14_1549971571-20 94 -0.316053 hybrid +141_2-7 Q0 MARCO_56_920297485-15 95 -0.316432 hybrid +141_2-7 Q0 MARCO_19_1512428476-2 96 -0.316496 hybrid +141_2-7 Q0 MARCO_18_1642035430-5 97 -0.320746 hybrid +141_2-7 Q0 MARCO_59_636003786-1 98 -0.322506 hybrid +141_2-7 Q0 MARCO_18_3002209009-69 99 -0.323960 hybrid +141_2-7 Q0 KILT_48728-61 100 -0.330857 hybrid +141_2-9 Q0 MARCO_13_137542827-1 1 0.249998 hybrid +141_2-9 Q0 MARCO_24_1312795837-37 2 -0.017663 hybrid +141_2-9 Q0 MARCO_26_348005168-23 3 -0.039597 hybrid +141_2-9 Q0 MARCO_38_1382956772-1 4 -0.063487 hybrid +141_2-9 Q0 MARCO_25_1409432772-5 5 -0.066119 hybrid +141_2-9 Q0 MARCO_13_137542827-2 6 -0.094929 hybrid +141_2-9 Q0 MARCO_50_672079985-10 7 -0.103064 hybrid +141_2-9 Q0 MARCO_26_397516086-51 8 -0.109672 hybrid +141_2-9 Q0 MARCO_01_697452749-1 9 -0.110062 hybrid +141_2-9 Q0 MARCO_15_1285498767-26 10 -0.110880 hybrid +141_2-9 Q0 MARCO_25_1123642780-2 11 -0.113192 hybrid +141_2-9 Q0 MARCO_39_1598155334-2 12 -0.115110 hybrid +141_2-9 Q0 MARCO_15_1285288468-38 13 -0.117728 hybrid +141_2-9 Q0 MARCO_24_1312795837-20 14 -0.124086 hybrid +141_2-9 Q0 MARCO_24_1312795837-6 15 -0.129703 hybrid +141_2-9 Q0 MARCO_32_108714028-8 16 -0.136565 hybrid +141_2-9 Q0 MARCO_55_679434366-1 17 -0.149781 hybrid +141_2-9 Q0 MARCO_24_1312795837-54 18 -0.153343 hybrid +141_2-9 Q0 KILT_1441528-4 19 -0.160256 hybrid +141_2-9 Q0 MARCO_28_348219696-1 20 -0.160717 hybrid +141_2-9 Q0 MARCO_32_108714028-13 21 -0.163847 hybrid +141_2-9 Q0 MARCO_20_1586510531-1 22 -0.168989 hybrid +141_2-9 Q0 MARCO_30_452476192-10 23 -0.179827 hybrid +141_2-9 Q0 MARCO_24_1312795837-11 24 -0.184047 hybrid +141_2-9 Q0 MARCO_28_1803939956-2 25 -0.185979 hybrid +141_2-9 Q0 KILT_53759-2 26 -0.206949 hybrid +141_2-9 Q0 MARCO_24_1312795837-57 27 -0.214140 hybrid +141_2-9 Q0 MARCO_00_1153776691-2 28 -0.218878 hybrid +141_2-9 Q0 MARCO_46_378699270-3 29 -0.222924 hybrid +141_2-9 Q0 MARCO_50_1969248373-75 30 -0.223446 hybrid +141_2-9 Q0 MARCO_43_69531679-3 31 -0.224611 hybrid +141_2-9 Q0 MARCO_24_1312795837-23 32 -0.226787 hybrid +141_2-9 Q0 MARCO_30_452476192-35 33 -0.226825 hybrid +141_2-9 Q0 MARCO_15_1280956306-41 34 -0.231346 hybrid +141_2-9 Q0 KILT_22649391-5 35 -0.231624 hybrid +141_2-9 Q0 MARCO_32_111455112-2 36 -0.233344 hybrid +141_2-9 Q0 MARCO_24_1312795837-56 37 -0.235755 hybrid +141_2-9 Q0 MARCO_01_700435785-1 38 -0.236634 hybrid +141_2-9 Q0 MARCO_50_670069550-5 39 -0.237292 hybrid +141_2-9 Q0 MARCO_29_776732349-1 40 -0.239148 hybrid +141_2-9 Q0 MARCO_44_1690527796-9 41 -0.247345 hybrid +141_2-9 Q0 MARCO_25_338337063-5 42 -0.250002 hybrid +141_2-9 Q0 MARCO_10_35480414-2 43 -0.252308 hybrid +141_2-9 Q0 MARCO_00_1005682670-1 44 -0.254267 hybrid +141_2-9 Q0 MARCO_56_456112245-4 45 -0.254911 hybrid +141_2-9 Q0 MARCO_32_109113067-6 46 -0.255931 hybrid +141_2-9 Q0 MARCO_50_1514555830-5 47 -0.257430 hybrid +141_2-9 Q0 MARCO_36_1069539418-1 48 -0.261674 hybrid +141_2-9 Q0 MARCO_36_562140163-1 49 -0.261975 hybrid +141_2-9 Q0 MARCO_32_440737021-4 50 -0.262929 hybrid +141_2-9 Q0 MARCO_24_1312795837-24 51 -0.264504 hybrid +141_2-9 Q0 MARCO_56_456112245-10 52 -0.265397 hybrid +141_2-9 Q0 MARCO_52_775373601-4 53 -0.265961 hybrid +141_2-9 Q0 MARCO_22_1492477361-2 54 -0.268696 hybrid +141_2-9 Q0 MARCO_15_1985263478-9 55 -0.271511 hybrid +141_2-9 Q0 KILT_28299520-5 56 -0.275398 hybrid +141_2-9 Q0 MARCO_28_1237445071-3 57 -0.282988 hybrid +141_2-9 Q0 MARCO_26_374768995-30 58 -0.283797 hybrid +141_2-9 Q0 MARCO_26_402384878-39 59 -0.286828 hybrid +141_2-9 Q0 MARCO_37_1253361813-12 60 -0.287195 hybrid +141_2-9 Q0 MARCO_28_346648744-1 61 -0.291020 hybrid +141_2-9 Q0 MARCO_20_1195020102-2 62 -0.292783 hybrid +141_2-9 Q0 MARCO_50_1514555830-20 63 -0.293920 hybrid +141_2-9 Q0 MARCO_53_1417384023-1 64 -0.294385 hybrid +141_2-9 Q0 MARCO_10_1147113023-3 65 -0.295231 hybrid +141_2-9 Q0 MARCO_15_936086994-3 66 -0.301144 hybrid +141_2-9 Q0 MARCO_26_386074350-32 67 -0.301304 hybrid +141_2-9 Q0 MARCO_28_324526884-4 68 -0.302826 hybrid +141_2-9 Q0 MARCO_15_1985263478-8 69 -0.303578 hybrid +141_2-9 Q0 MARCO_50_1969914330-28 70 -0.304462 hybrid +141_2-9 Q0 MARCO_45_981557368-3 71 -0.306558 hybrid +141_2-9 Q0 MARCO_39_1594406302-9 72 -0.308400 hybrid +141_2-9 Q0 MARCO_39_1401579961-1 73 -0.314505 hybrid +141_2-9 Q0 MARCO_00_1110768291-3 74 -0.317513 hybrid +141_2-9 Q0 MARCO_29_874258053-5 75 -0.320892 hybrid +141_2-9 Q0 MARCO_50_1679010211-11 76 -0.325644 hybrid +141_2-9 Q0 MARCO_30_452476192-36 77 -0.326170 hybrid +141_2-9 Q0 MARCO_29_1105653731-18 78 -0.328427 hybrid +141_2-9 Q0 MARCO_50_2499335601-4 79 -0.328633 hybrid +141_2-9 Q0 MARCO_38_1382959616-1 80 -0.330809 hybrid +141_2-9 Q0 MARCO_29_884588221-7 81 -0.331089 hybrid +141_2-9 Q0 MARCO_30_1574895595-19 82 -0.332650 hybrid +141_2-9 Q0 MARCO_32_108714028-11 83 -0.334546 hybrid +141_2-9 Q0 MARCO_32_109113067-20 84 -0.334564 hybrid +141_2-9 Q0 MARCO_39_1606282309-34 85 -0.335189 hybrid +141_2-9 Q0 MARCO_45_1579249758-5 86 -0.336153 hybrid +141_2-9 Q0 MARCO_39_1595338411-2 87 -0.336519 hybrid +141_2-9 Q0 MARCO_24_1312795837-48 88 -0.340091 hybrid +141_2-9 Q0 MARCO_15_1985263478-4 89 -0.343874 hybrid +141_2-9 Q0 MARCO_14_337985404-2 90 -0.347475 hybrid +141_2-9 Q0 MARCO_27_582967102-13 91 -0.349811 hybrid +141_2-9 Q0 MARCO_10_365359144-7 92 -0.350586 hybrid +141_2-9 Q0 MARCO_30_1576788415-25 93 -0.353631 hybrid +141_2-9 Q0 MARCO_10_99553000-2 94 -0.359224 hybrid +141_2-9 Q0 MARCO_30_864372818-12 95 -0.359404 hybrid +141_2-9 Q0 MARCO_39_1606282309-19 96 -0.362378 hybrid +141_2-9 Q0 MARCO_53_1468060109-3 97 -0.362980 hybrid +141_2-9 Q0 MARCO_51_1236766792-1 98 -0.364521 hybrid +141_2-9 Q0 MARCO_36_1063357712-5 99 -0.365047 hybrid +141_2-9 Q0 MARCO_59_773527069-4 100 -0.365118 hybrid +142_1-1 Q0 MARCO_10_790344909-3 1 0.249998 hybrid +142_1-1 Q0 MARCO_58_1508113613-2 2 0.184075 hybrid +142_1-1 Q0 MARCO_58_1508113613-1 3 0.183046 hybrid +142_1-1 Q0 MARCO_43_742228802-80 4 0.167559 hybrid +142_1-1 Q0 MARCO_58_1506642595-3 5 0.121454 hybrid +142_1-1 Q0 MARCO_22_1186906798-3 6 0.115560 hybrid +142_1-1 Q0 MARCO_22_1186915282-3 7 0.113498 hybrid +142_1-1 Q0 MARCO_58_1506642595-1 8 0.107969 hybrid +142_1-1 Q0 MARCO_58_1509104985-3 9 0.092505 hybrid +142_1-1 Q0 MARCO_37_173589964-2 10 0.091089 hybrid +142_1-1 Q0 MARCO_06_1240614560-48 11 0.087427 hybrid +142_1-1 Q0 MARCO_51_694777636-27 12 0.075607 hybrid +142_1-1 Q0 MARCO_08_1091419182-31 13 0.073444 hybrid +142_1-1 Q0 MARCO_08_1091419182-26 14 0.070868 hybrid +142_1-1 Q0 MARCO_41_1117115865-63 15 0.026642 hybrid +142_1-1 Q0 MARCO_55_1284276756-5 16 0.026476 hybrid +142_1-1 Q0 MARCO_19_2045799633-26 17 0.024659 hybrid +142_1-1 Q0 KILT_1839572-1 18 0.015633 hybrid +142_1-1 Q0 MARCO_30_2012987975-4 19 0.014886 hybrid +142_1-1 Q0 MARCO_35_128151915-14 20 0.014503 hybrid +142_1-1 Q0 MARCO_55_1284276756-1 21 0.006291 hybrid +142_1-1 Q0 MARCO_50_1441723234-16 22 -0.005614 hybrid +142_1-1 Q0 KILT_14672486-3 23 -0.008257 hybrid +142_1-1 Q0 MARCO_58_1508113613-3 24 -0.018915 hybrid +142_1-1 Q0 MARCO_28_986460254-19 25 -0.025002 hybrid +142_1-1 Q0 MARCO_47_1601362260-4 26 -0.025943 hybrid +142_1-1 Q0 MARCO_50_1458626850-11 27 -0.026400 hybrid +142_1-1 Q0 MARCO_30_2012975151-5 28 -0.040646 hybrid +142_1-1 Q0 MARCO_30_2013034285-5 29 -0.040646 hybrid +142_1-1 Q0 MARCO_30_2012997627-4 30 -0.040646 hybrid +142_1-1 Q0 MARCO_30_2012956600-5 31 -0.040646 hybrid +142_1-1 Q0 KILT_68259-7 32 -0.045313 hybrid +142_1-1 Q0 MARCO_11_1448564973-7 33 -0.045715 hybrid +142_1-1 Q0 MARCO_10_120187103-9 34 -0.050027 hybrid +142_1-1 Q0 MARCO_08_1091419182-28 35 -0.050078 hybrid +142_1-1 Q0 MARCO_47_1601362260-1 36 -0.052485 hybrid +142_1-1 Q0 MARCO_55_1284276756-4 37 -0.068228 hybrid +142_1-1 Q0 MARCO_47_1602505698-3 38 -0.069563 hybrid +142_1-1 Q0 MARCO_10_790353427-1 39 -0.074645 hybrid +142_1-1 Q0 KILT_8076950-1 40 -0.076670 hybrid +142_1-1 Q0 MARCO_28_984047122-4 41 -0.077071 hybrid +142_1-1 Q0 MARCO_28_986492477-1 42 -0.079718 hybrid +142_1-1 Q0 MARCO_55_249733632-4 43 -0.087305 hybrid +142_1-1 Q0 MARCO_22_1186915282-1 44 -0.087549 hybrid +142_1-1 Q0 MARCO_47_1285299013-4 45 -0.088933 hybrid +142_1-1 Q0 MARCO_51_694777636-29 46 -0.091576 hybrid +142_1-1 Q0 MARCO_22_1186915282-5 47 -0.105508 hybrid +142_1-1 Q0 MARCO_58_1509104985-4 48 -0.106504 hybrid +142_1-1 Q0 MARCO_47_1602505698-2 49 -0.107823 hybrid +142_1-1 Q0 MARCO_03_1787569773-4 50 -0.108360 hybrid +142_1-1 Q0 MARCO_35_128533405-3 51 -0.108672 hybrid +142_1-1 Q0 MARCO_24_1139351957-10 52 -0.114631 hybrid +142_1-1 Q0 MARCO_41_1117115865-64 53 -0.119109 hybrid +142_1-1 Q0 KILT_41582495-1 54 -0.121844 hybrid +142_1-1 Q0 MARCO_22_1186906798-1 55 -0.125515 hybrid +142_1-1 Q0 MARCO_10_448253860-6 56 -0.125589 hybrid +142_1-1 Q0 MARCO_17_693365828-5 57 -0.126147 hybrid +142_1-1 Q0 MARCO_22_1186888239-1 58 -0.131326 hybrid +142_1-1 Q0 MARCO_30_1022384297-23 59 -0.131713 hybrid +142_1-1 Q0 MARCO_54_676656745-4 60 -0.132410 hybrid +142_1-1 Q0 MARCO_54_676656745-2 61 -0.132410 hybrid +142_1-1 Q0 MARCO_47_1604104921-1 62 -0.133646 hybrid +142_1-1 Q0 MARCO_55_247577966-6 63 -0.135504 hybrid +142_1-1 Q0 MARCO_30_1022384297-77 64 -0.139609 hybrid +142_1-1 Q0 MARCO_47_1602505698-4 65 -0.139909 hybrid +142_1-1 Q0 KILT_5983605-2 66 -0.141343 hybrid +142_1-1 Q0 KILT_28820502-2 67 -0.150880 hybrid +142_1-1 Q0 MARCO_54_676656745-1 68 -0.152352 hybrid +142_1-1 Q0 MARCO_30_1022384297-72 69 -0.153505 hybrid +142_1-1 Q0 MARCO_22_1186867646-3 70 -0.160330 hybrid +142_1-1 Q0 MARCO_19_2045799633-5 71 -0.161575 hybrid +142_1-1 Q0 KILT_34879285-1 72 -0.167617 hybrid +142_1-1 Q0 MARCO_03_583636368-68 73 -0.170892 hybrid +142_1-1 Q0 MARCO_03_444110329-1 74 -0.171408 hybrid +142_1-1 Q0 KILT_35894206-10 75 -0.178354 hybrid +142_1-1 Q0 MARCO_32_884765978-2 76 -0.180535 hybrid +142_1-1 Q0 MARCO_30_901392960-1 77 -0.186033 hybrid +142_1-1 Q0 MARCO_22_1186877744-7 78 -0.188970 hybrid +142_1-1 Q0 MARCO_06_1255673525-375 79 -0.189173 hybrid +142_1-1 Q0 MARCO_22_1186915282-6 80 -0.191904 hybrid +142_1-1 Q0 MARCO_22_1186915282-2 81 -0.194080 hybrid +142_1-1 Q0 MARCO_47_1285299013-5 82 -0.195072 hybrid +142_1-1 Q0 MARCO_58_1509104985-2 83 -0.201164 hybrid +142_1-1 Q0 MARCO_10_120187103-6 84 -0.202451 hybrid +142_1-1 Q0 MARCO_10_790347853-1 85 -0.204208 hybrid +142_1-1 Q0 MARCO_50_1458626850-10 86 -0.206113 hybrid +142_1-1 Q0 MARCO_36_816068485-6 87 -0.206486 hybrid +142_1-1 Q0 MARCO_48_1542395416-10 88 -0.206523 hybrid +142_1-1 Q0 MARCO_22_1186906798-4 89 -0.207746 hybrid +142_1-1 Q0 MARCO_58_1505463998-3 90 -0.214866 hybrid +142_1-1 Q0 MARCO_19_2045799633-17 91 -0.217269 hybrid +142_1-1 Q0 MARCO_22_1186897393-6 92 -0.222135 hybrid +142_1-1 Q0 MARCO_35_128151915-13 93 -0.222139 hybrid +142_1-1 Q0 MARCO_11_1448564973-8 94 -0.222476 hybrid +142_1-1 Q0 MARCO_36_1003753285-1 95 -0.222554 hybrid +142_1-1 Q0 MARCO_24_1139403731-4 96 -0.225543 hybrid +142_1-1 Q0 KILT_392708-1 97 -0.226968 hybrid +142_1-1 Q0 MARCO_47_1604104921-2 98 -0.228282 hybrid +142_1-1 Q0 MARCO_16_442874124-2 99 -0.229168 hybrid +142_1-1 Q0 KILT_68259-13 100 -0.230123 hybrid +142_1-3 Q0 MARCO_47_1604104921-3 1 0.350892 hybrid +142_1-3 Q0 MARCO_11_1448564973-7 2 0.249999 hybrid +142_1-3 Q0 MARCO_47_1604104921-2 3 0.207544 hybrid +142_1-3 Q0 MARCO_16_3046749093-1 4 0.196482 hybrid +142_1-3 Q0 MARCO_27_1334580338-2 5 0.189252 hybrid +142_1-3 Q0 KILT_6275053-1 6 0.157268 hybrid +142_1-3 Q0 MARCO_58_1506642595-1 7 0.119628 hybrid +142_1-3 Q0 MARCO_06_1149196799-139 8 0.058098 hybrid +142_1-3 Q0 MARCO_29_789772576-15 9 0.049710 hybrid +142_1-3 Q0 MARCO_16_3046944575-3 10 0.044379 hybrid +142_1-3 Q0 MARCO_27_1334580338-1 11 0.042013 hybrid +142_1-3 Q0 MARCO_16_3046749093-38 12 0.041372 hybrid +142_1-3 Q0 MARCO_16_3046749093-3 13 0.036801 hybrid +142_1-3 Q0 MARCO_16_3046749093-108 14 0.026040 hybrid +142_1-3 Q0 MARCO_16_3046749093-37 15 0.025045 hybrid +142_1-3 Q0 MARCO_58_1508113613-1 16 0.018982 hybrid +142_1-3 Q0 MARCO_16_3046749093-87 17 0.007857 hybrid +142_1-3 Q0 MARCO_16_3046944575-2 18 0.005765 hybrid +142_1-3 Q0 MARCO_58_1508113613-2 19 -0.001093 hybrid +142_1-3 Q0 MARCO_10_120187103-1 20 -0.007239 hybrid +142_1-3 Q0 MARCO_24_1126171266-11 21 -0.018236 hybrid +142_1-3 Q0 MARCO_19_2045799633-15 22 -0.020210 hybrid +142_1-3 Q0 KILT_8985102-1 23 -0.039229 hybrid +142_1-3 Q0 MARCO_16_3046749093-13 24 -0.042595 hybrid +142_1-3 Q0 MARCO_47_1604104921-16 25 -0.050402 hybrid +142_1-3 Q0 MARCO_16_3046749093-127 26 -0.070157 hybrid +142_1-3 Q0 MARCO_16_3046749093-45 27 -0.079468 hybrid +142_1-3 Q0 MARCO_16_3046749093-46 28 -0.115173 hybrid +142_1-3 Q0 MARCO_10_803200487-1 29 -0.126664 hybrid +142_1-3 Q0 MARCO_16_3046749093-15 30 -0.128234 hybrid +142_1-3 Q0 MARCO_16_3046944575-1 31 -0.134000 hybrid +142_1-3 Q0 MARCO_16_3046749093-4 32 -0.135255 hybrid +142_1-3 Q0 MARCO_16_3046944575-20 33 -0.138940 hybrid +142_1-3 Q0 MARCO_16_3046749093-61 34 -0.148717 hybrid +142_1-3 Q0 MARCO_48_1542395416-10 35 -0.157637 hybrid +142_1-3 Q0 MARCO_16_3046749093-25 36 -0.159391 hybrid +142_1-3 Q0 MARCO_16_3046749093-8 37 -0.163304 hybrid +142_1-3 Q0 MARCO_40_1583135483-1 38 -0.163809 hybrid +142_1-3 Q0 MARCO_16_3046749093-26 39 -0.164308 hybrid +142_1-3 Q0 MARCO_16_3046749093-54 40 -0.165299 hybrid +142_1-3 Q0 MARCO_16_3046749093-29 41 -0.165619 hybrid +142_1-3 Q0 MARCO_58_1509104985-3 42 -0.166495 hybrid +142_1-3 Q0 MARCO_22_1186915282-6 43 -0.177149 hybrid +142_1-3 Q0 MARCO_29_789772576-14 44 -0.183032 hybrid +142_1-3 Q0 MARCO_16_2607069492-21 45 -0.193352 hybrid +142_1-3 Q0 MARCO_16_3046749093-65 46 -0.197490 hybrid +142_1-3 Q0 KILT_59860143-1 47 -0.199358 hybrid +142_1-3 Q0 MARCO_16_3046749093-18 48 -0.200325 hybrid +142_1-3 Q0 MARCO_10_120187103-6 49 -0.206939 hybrid +142_1-3 Q0 MARCO_16_3046749093-62 50 -0.207189 hybrid +142_1-3 Q0 MARCO_16_3046928162-2 51 -0.207580 hybrid +142_1-3 Q0 KILT_592844-2 52 -0.208450 hybrid +142_1-3 Q0 KILT_40111264-1 53 -0.210236 hybrid +142_1-3 Q0 KILT_11904555-3 54 -0.214948 hybrid +142_1-3 Q0 MARCO_28_439210340-43 55 -0.235137 hybrid +142_1-3 Q0 MARCO_55_248583746-10 56 -0.236520 hybrid +142_1-3 Q0 MARCO_16_3046749093-34 57 -0.236801 hybrid +142_1-3 Q0 MARCO_10_120187103-9 58 -0.244529 hybrid +142_1-3 Q0 MARCO_16_3046749093-2 59 -0.245843 hybrid +142_1-3 Q0 MARCO_22_1186915282-3 60 -0.246052 hybrid +142_1-3 Q0 KILT_23714282-3 61 -0.248355 hybrid +142_1-3 Q0 MARCO_58_1512159116-1 62 -0.250001 hybrid +142_1-3 Q0 MARCO_22_1186906798-2 63 -0.253295 hybrid +142_1-3 Q0 MARCO_11_1448564973-8 64 -0.253836 hybrid +142_1-3 Q0 MARCO_16_3046749093-63 65 -0.253851 hybrid +142_1-3 Q0 MARCO_16_3301586502-7 66 -0.257040 hybrid +142_1-3 Q0 MARCO_16_3046749093-39 67 -0.262165 hybrid +142_1-3 Q0 MARCO_16_3046749093-47 68 -0.266122 hybrid +142_1-3 Q0 KILT_2596357-1 69 -0.270571 hybrid +142_1-3 Q0 MARCO_16_3046944575-8 70 -0.271203 hybrid +142_1-3 Q0 MARCO_47_1602505698-2 71 -0.271418 hybrid +142_1-3 Q0 MARCO_22_1186906798-3 72 -0.273511 hybrid +142_1-3 Q0 MARCO_16_3046749093-24 73 -0.276550 hybrid +142_1-3 Q0 MARCO_16_3046944575-9 74 -0.276793 hybrid +142_1-3 Q0 MARCO_24_1139403731-4 75 -0.277582 hybrid +142_1-3 Q0 MARCO_16_3046749093-55 76 -0.278203 hybrid +142_1-3 Q0 MARCO_47_1602505698-4 77 -0.280013 hybrid +142_1-3 Q0 MARCO_12_1731808931-3 78 -0.283238 hybrid +142_1-3 Q0 MARCO_16_3046944575-17 79 -0.283405 hybrid +142_1-3 Q0 MARCO_16_3046749093-56 80 -0.285739 hybrid +142_1-3 Q0 MARCO_16_3046749093-36 81 -0.287080 hybrid +142_1-3 Q0 KILT_18611346-3 82 -0.289761 hybrid +142_1-3 Q0 MARCO_47_1602505698-8 83 -0.290114 hybrid +142_1-3 Q0 MARCO_16_3046749093-72 84 -0.298457 hybrid +142_1-3 Q0 MARCO_16_3046944575-15 85 -0.299890 hybrid +142_1-3 Q0 KILT_21534151-2 86 -0.302317 hybrid +142_1-3 Q0 KILT_4566278-3 87 -0.302366 hybrid +142_1-3 Q0 KILT_35894206-11 88 -0.306311 hybrid +142_1-3 Q0 KILT_35894206-3 89 -0.313861 hybrid +142_1-3 Q0 MARCO_16_3046944575-16 90 -0.313937 hybrid +142_1-3 Q0 MARCO_47_1604104921-11 91 -0.315107 hybrid +142_1-3 Q0 MARCO_16_3046749093-85 92 -0.318019 hybrid +142_1-3 Q0 MARCO_17_2524961420-4 93 -0.318202 hybrid +142_1-3 Q0 MARCO_47_1602505698-6 94 -0.319295 hybrid +142_1-3 Q0 KILT_1839572-1 95 -0.321716 hybrid +142_1-3 Q0 MARCO_47_1604104921-5 96 -0.329629 hybrid +142_1-3 Q0 MARCO_16_3046944575-5 97 -0.332850 hybrid +142_1-3 Q0 KILT_26507946-2 98 -0.337883 hybrid +142_1-3 Q0 MARCO_03_1387185114-2 99 -0.338501 hybrid +142_1-3 Q0 MARCO_16_3046749093-100 100 -0.340337 hybrid +142_1-5 Q0 MARCO_10_120187103-9 1 0.436394 hybrid +142_1-5 Q0 MARCO_16_3046749093-4 2 0.254113 hybrid +142_1-5 Q0 MARCO_16_3046749093-45 3 0.239883 hybrid +142_1-5 Q0 MARCO_16_3046749093-39 4 0.195006 hybrid +142_1-5 Q0 MARCO_35_131732716-1 5 0.147149 hybrid +142_1-5 Q0 MARCO_16_3046749093-38 6 0.141534 hybrid +142_1-5 Q0 MARCO_10_120187103-8 7 0.091944 hybrid +142_1-5 Q0 MARCO_24_1139351957-10 8 0.087875 hybrid +142_1-5 Q0 MARCO_16_3046749093-42 9 0.084637 hybrid +142_1-5 Q0 MARCO_10_120187103-1 10 0.052546 hybrid +142_1-5 Q0 MARCO_22_1186906798-3 11 0.035758 hybrid +142_1-5 Q0 MARCO_16_3046749093-41 12 0.023866 hybrid +142_1-5 Q0 MARCO_47_1602505698-8 13 0.023145 hybrid +142_1-5 Q0 MARCO_16_3046749093-47 14 0.004125 hybrid +142_1-5 Q0 MARCO_10_120187103-6 15 -0.012454 hybrid +142_1-5 Q0 MARCO_16_3046749093-43 16 -0.012492 hybrid +142_1-5 Q0 MARCO_24_1139403731-4 17 -0.019774 hybrid +142_1-5 Q0 MARCO_16_3046749093-107 18 -0.020948 hybrid +142_1-5 Q0 MARCO_10_120187103-2 19 -0.036404 hybrid +142_1-5 Q0 MARCO_24_1126171266-11 20 -0.037424 hybrid +142_1-5 Q0 MARCO_16_3046749093-46 21 -0.051155 hybrid +142_1-5 Q0 MARCO_35_131732716-2 22 -0.051767 hybrid +142_1-5 Q0 MARCO_22_1186906798-2 23 -0.057921 hybrid +142_1-5 Q0 MARCO_16_3046749093-62 24 -0.060885 hybrid +142_1-5 Q0 MARCO_16_3046749093-54 25 -0.068730 hybrid +142_1-5 Q0 MARCO_16_3046749093-40 26 -0.083034 hybrid +142_1-5 Q0 MARCO_30_2013028110-1 27 -0.087580 hybrid +142_1-5 Q0 MARCO_16_3046749093-51 28 -0.091249 hybrid +142_1-5 Q0 MARCO_11_1448564973-4 29 -0.093525 hybrid +142_1-5 Q0 MARCO_11_1448564973-3 30 -0.108265 hybrid +142_1-5 Q0 MARCO_11_1448564973-1 31 -0.111549 hybrid +142_1-5 Q0 MARCO_27_1334580338-2 32 -0.113263 hybrid +142_1-5 Q0 MARCO_22_1186915282-3 33 -0.124359 hybrid +142_1-5 Q0 MARCO_11_1448564973-8 34 -0.125986 hybrid +142_1-5 Q0 MARCO_16_3046749093-49 35 -0.128374 hybrid +142_1-5 Q0 MARCO_11_1448564973-9 36 -0.129001 hybrid +142_1-5 Q0 MARCO_41_1362852419-27 37 -0.130602 hybrid +142_1-5 Q0 MARCO_05_848957007-14 38 -0.131297 hybrid +142_1-5 Q0 MARCO_30_1004054024-7 39 -0.135253 hybrid +142_1-5 Q0 MARCO_10_790347853-1 40 -0.141908 hybrid +142_1-5 Q0 MARCO_16_3046749093-105 41 -0.142021 hybrid +142_1-5 Q0 MARCO_16_3046749093-55 42 -0.144748 hybrid +142_1-5 Q0 MARCO_30_2012975151-5 43 -0.145324 hybrid +142_1-5 Q0 MARCO_30_2013034285-5 44 -0.145324 hybrid +142_1-5 Q0 MARCO_30_2012997627-4 45 -0.145324 hybrid +142_1-5 Q0 MARCO_30_2012956600-5 46 -0.145324 hybrid +142_1-5 Q0 MARCO_03_1387185114-1 47 -0.153316 hybrid +142_1-5 Q0 MARCO_16_2607069492-21 48 -0.153425 hybrid +142_1-5 Q0 MARCO_11_1448564973-7 49 -0.161757 hybrid +142_1-5 Q0 MARCO_24_82231277-2 50 -0.181305 hybrid +142_1-5 Q0 MARCO_05_848957007-9 51 -0.187595 hybrid +142_1-5 Q0 MARCO_16_3046749093-13 52 -0.192508 hybrid +142_1-5 Q0 MARCO_22_1186906798-1 53 -0.192818 hybrid +142_1-5 Q0 MARCO_55_1728784830-2 54 -0.194995 hybrid +142_1-5 Q0 MARCO_30_2012980419-6 55 -0.196116 hybrid +142_1-5 Q0 MARCO_30_2012993435-3 56 -0.196116 hybrid +142_1-5 Q0 MARCO_16_3046749093-34 57 -0.196449 hybrid +142_1-5 Q0 KILT_27235520-2 58 -0.198085 hybrid +142_1-5 Q0 MARCO_10_120187103-10 59 -0.200481 hybrid +142_1-5 Q0 KILT_58109079-3 60 -0.207533 hybrid +142_1-5 Q0 MARCO_05_848957007-1 61 -0.208887 hybrid +142_1-5 Q0 MARCO_16_3046749093-50 62 -0.214607 hybrid +142_1-5 Q0 MARCO_16_3046749093-44 63 -0.214818 hybrid +142_1-5 Q0 KILT_23378955-9 64 -0.215106 hybrid +142_1-5 Q0 MARCO_16_3046749093-56 65 -0.216089 hybrid +142_1-5 Q0 KILT_2810466-9 66 -0.220006 hybrid +142_1-5 Q0 MARCO_16_3046749093-15 67 -0.224939 hybrid +142_1-5 Q0 MARCO_30_2012938093-10 68 -0.228676 hybrid +142_1-5 Q0 MARCO_16_3046749093-114 69 -0.229388 hybrid +142_1-5 Q0 MARCO_16_3046749093-29 70 -0.240342 hybrid +142_1-5 Q0 MARCO_10_120187103-5 71 -0.244915 hybrid +142_1-5 Q0 MARCO_55_248583746-10 72 -0.245754 hybrid +142_1-5 Q0 MARCO_56_1849852997-1 73 -0.250001 hybrid +142_1-5 Q0 MARCO_30_2012938093-1 74 -0.251812 hybrid +142_1-5 Q0 KILT_6275053-1 75 -0.252096 hybrid +142_1-5 Q0 MARCO_16_3046944575-12 76 -0.253009 hybrid +142_1-5 Q0 MARCO_16_3046749093-28 77 -0.254179 hybrid +142_1-5 Q0 KILT_8985102-1 78 -0.258643 hybrid +142_1-5 Q0 MARCO_16_3046749093-106 79 -0.263163 hybrid +142_1-5 Q0 MARCO_43_782020638-3 80 -0.271662 hybrid +142_1-5 Q0 MARCO_16_3046749093-33 81 -0.272848 hybrid +142_1-5 Q0 MARCO_47_1285299013-4 82 -0.275058 hybrid +142_1-5 Q0 KILT_45415172-8 83 -0.278924 hybrid +142_1-5 Q0 MARCO_19_2045799633-16 84 -0.279983 hybrid +142_1-5 Q0 MARCO_22_1189428320-5 85 -0.281710 hybrid +142_1-5 Q0 KILT_18611346-3 86 -0.282785 hybrid +142_1-5 Q0 MARCO_18_3127967367-5 87 -0.283587 hybrid +142_1-5 Q0 MARCO_55_248583746-11 88 -0.285035 hybrid +142_1-5 Q0 MARCO_16_3046749093-63 89 -0.286682 hybrid +142_1-5 Q0 MARCO_16_3046749093-61 90 -0.291092 hybrid +142_1-5 Q0 MARCO_57_1435834480-4 91 -0.293195 hybrid +142_1-5 Q0 MARCO_30_2013002157-3 92 -0.295075 hybrid +142_1-5 Q0 MARCO_27_912003150-1 93 -0.298642 hybrid +142_1-5 Q0 MARCO_55_1704796583-1 94 -0.299579 hybrid +142_1-5 Q0 MARCO_05_848986452-3 95 -0.302111 hybrid +142_1-5 Q0 MARCO_16_3046749093-37 96 -0.305529 hybrid +142_1-5 Q0 MARCO_16_3046749093-66 97 -0.308764 hybrid +142_1-5 Q0 MARCO_49_1585013178-7 98 -0.309358 hybrid +142_1-5 Q0 MARCO_22_1186906798-5 99 -0.309666 hybrid +142_1-5 Q0 MARCO_45_1248533362-1 100 -0.310418 hybrid +142_2-2 Q0 MARCO_18_3127967367-2 1 0.264966 hybrid +142_2-2 Q0 KILT_2810466-9 2 0.250002 hybrid +142_2-2 Q0 MARCO_22_393668005-3 3 0.119079 hybrid +142_2-2 Q0 MARCO_50_1458626850-10 4 0.093728 hybrid +142_2-2 Q0 MARCO_18_3127967367-5 5 0.035377 hybrid +142_2-2 Q0 MARCO_16_3046749093-41 6 0.015995 hybrid +142_2-2 Q0 MARCO_05_848957007-1 7 0.008828 hybrid +142_2-2 Q0 MARCO_16_3046749093-49 8 -0.009651 hybrid +142_2-2 Q0 MARCO_05_848957007-4 9 -0.020792 hybrid +142_2-2 Q0 KILT_18706892-1 10 -0.022683 hybrid +142_2-2 Q0 MARCO_05_848957007-8 11 -0.026183 hybrid +142_2-2 Q0 MARCO_05_848986452-2 12 -0.038187 hybrid +142_2-2 Q0 MARCO_05_848957007-14 13 -0.062970 hybrid +142_2-2 Q0 MARCO_45_1248533362-1 14 -0.067160 hybrid +142_2-2 Q0 MARCO_06_1240614560-37 15 -0.074316 hybrid +142_2-2 Q0 MARCO_05_848957007-12 16 -0.074730 hybrid +142_2-2 Q0 MARCO_05_849036905-6 17 -0.100769 hybrid +142_2-2 Q0 MARCO_05_848957007-10 18 -0.100864 hybrid +142_2-2 Q0 MARCO_16_3046749093-38 19 -0.100959 hybrid +142_2-2 Q0 MARCO_05_848986452-3 20 -0.102631 hybrid +142_2-2 Q0 KILT_8076950-4 21 -0.110121 hybrid +142_2-2 Q0 MARCO_05_848957007-9 22 -0.110360 hybrid +142_2-2 Q0 KILT_2810466-10 23 -0.124334 hybrid +142_2-2 Q0 KILT_28820502-1 24 -0.136499 hybrid +142_2-2 Q0 MARCO_50_1441723234-18 25 -0.148165 hybrid +142_2-2 Q0 MARCO_50_1458626850-15 26 -0.154568 hybrid +142_2-2 Q0 MARCO_10_790347853-1 27 -0.162545 hybrid +142_2-2 Q0 MARCO_58_1508113613-1 28 -0.162553 hybrid +142_2-2 Q0 MARCO_16_3046749093-45 29 -0.164641 hybrid +142_2-2 Q0 MARCO_08_1480326385-15 30 -0.178601 hybrid +142_2-2 Q0 MARCO_54_676656745-1 31 -0.192074 hybrid +142_2-2 Q0 MARCO_10_790353427-4 32 -0.195781 hybrid +142_2-2 Q0 MARCO_10_120187103-9 33 -0.203420 hybrid +142_2-2 Q0 MARCO_58_1506642595-1 34 -0.225079 hybrid +142_2-2 Q0 MARCO_06_1240614560-46 35 -0.227914 hybrid +142_2-2 Q0 MARCO_06_1240614560-44 36 -0.240961 hybrid +142_2-2 Q0 MARCO_16_3046749093-43 37 -0.241710 hybrid +142_2-2 Q0 MARCO_17_2510087016-4 38 -0.242381 hybrid +142_2-2 Q0 MARCO_47_1601362260-3 39 -0.242500 hybrid +142_2-2 Q0 MARCO_06_1240614560-33 40 -0.249968 hybrid +142_2-2 Q0 MARCO_30_1052365471-1 41 -0.249998 hybrid +142_2-2 Q0 MARCO_16_3046749093-40 42 -0.250727 hybrid +142_2-2 Q0 MARCO_05_848957007-2 43 -0.251030 hybrid +142_2-2 Q0 MARCO_05_848986452-4 44 -0.254636 hybrid +142_2-2 Q0 MARCO_18_469824557-17 45 -0.255085 hybrid +142_2-2 Q0 MARCO_05_848975837-1 46 -0.255092 hybrid +142_2-2 Q0 MARCO_47_1604104921-11 47 -0.256590 hybrid +142_2-2 Q0 MARCO_05_848986452-1 48 -0.258932 hybrid +142_2-2 Q0 MARCO_16_3046749093-56 49 -0.261248 hybrid +142_2-2 Q0 MARCO_17_677302622-29 50 -0.264420 hybrid +142_2-2 Q0 KILT_44501940-2 51 -0.264864 hybrid +142_2-2 Q0 MARCO_10_790347853-3 52 -0.265011 hybrid +142_2-2 Q0 MARCO_17_674008977-3 53 -0.267155 hybrid +142_2-2 Q0 MARCO_47_1602505698-4 54 -0.271046 hybrid +142_2-2 Q0 MARCO_05_849015218-10 55 -0.272604 hybrid +142_2-2 Q0 KILT_28820502-5 56 -0.274764 hybrid +142_2-2 Q0 MARCO_18_3127967367-3 57 -0.275913 hybrid +142_2-2 Q0 KILT_44030741-1 58 -0.277754 hybrid +142_2-2 Q0 MARCO_16_3046749093-47 59 -0.284785 hybrid +142_2-2 Q0 MARCO_05_849004482-4 60 -0.284993 hybrid +142_2-2 Q0 MARCO_22_393668005-9 61 -0.285349 hybrid +142_2-2 Q0 KILT_8076950-6 62 -0.285575 hybrid +142_2-2 Q0 MARCO_19_2045799633-2 63 -0.286052 hybrid +142_2-2 Q0 MARCO_16_3046749093-39 64 -0.288091 hybrid +142_2-2 Q0 MARCO_10_790347853-2 65 -0.289472 hybrid +142_2-2 Q0 MARCO_06_1149196799-139 66 -0.293407 hybrid +142_2-2 Q0 MARCO_18_928497466-12 67 -0.295733 hybrid +142_2-2 Q0 MARCO_05_848957007-13 68 -0.299352 hybrid +142_2-2 Q0 MARCO_50_1441723234-14 69 -0.300056 hybrid +142_2-2 Q0 KILT_28820502-6 70 -0.301513 hybrid +142_2-2 Q0 MARCO_17_674008977-20 71 -0.302864 hybrid +142_2-2 Q0 MARCO_50_1936673617-24 72 -0.305960 hybrid +142_2-2 Q0 MARCO_22_1186915282-3 73 -0.306883 hybrid +142_2-2 Q0 KILT_15581858-2 74 -0.307702 hybrid +142_2-2 Q0 MARCO_50_1446209665-18 75 -0.308264 hybrid +142_2-2 Q0 MARCO_38_608948918-1 76 -0.310426 hybrid +142_2-2 Q0 MARCO_10_448253860-1 77 -0.311731 hybrid +142_2-2 Q0 MARCO_16_3046944575-20 78 -0.313027 hybrid +142_2-2 Q0 MARCO_08_454689269-10 79 -0.313644 hybrid +142_2-2 Q0 MARCO_03_1387185114-2 80 -0.315246 hybrid +142_2-2 Q0 KILT_68519-11 81 -0.316409 hybrid +142_2-2 Q0 MARCO_08_1480326385-19 82 -0.319974 hybrid +142_2-2 Q0 MARCO_16_3046944575-5 83 -0.320417 hybrid +142_2-2 Q0 MARCO_16_3046749093-62 84 -0.321586 hybrid +142_2-2 Q0 MARCO_22_393668005-2 85 -0.322572 hybrid +142_2-2 Q0 MARCO_17_674008977-1 86 -0.324863 hybrid +142_2-2 Q0 MARCO_41_1117115865-63 87 -0.324892 hybrid +142_2-2 Q0 MARCO_47_1604104921-6 88 -0.325227 hybrid +142_2-2 Q0 MARCO_44_1695065420-2 89 -0.326428 hybrid +142_2-2 Q0 MARCO_22_1186906798-5 90 -0.326908 hybrid +142_2-2 Q0 MARCO_16_3046749093-51 91 -0.330185 hybrid +142_2-2 Q0 MARCO_47_1604104921-3 92 -0.333735 hybrid +142_2-2 Q0 MARCO_16_3046749093-4 93 -0.336175 hybrid +142_2-2 Q0 MARCO_10_448253860-5 94 -0.337057 hybrid +142_2-2 Q0 MARCO_24_1949677245-5 95 -0.337136 hybrid +142_2-2 Q0 MARCO_05_848957007-3 96 -0.341602 hybrid +142_2-2 Q0 MARCO_22_1186906798-1 97 -0.341927 hybrid +142_2-2 Q0 MARCO_18_469824557-16 98 -0.342989 hybrid +142_2-2 Q0 KILT_1833378-6 99 -0.343403 hybrid +142_2-2 Q0 KILT_1437724-14 100 -0.345028 hybrid +142_2-4 Q0 KILT_7060542-1 1 0.250002 hybrid +142_2-4 Q0 MARCO_06_1240614560-49 2 -0.000753 hybrid +142_2-4 Q0 KILT_2678089-3 3 -0.070215 hybrid +142_2-4 Q0 MARCO_22_1189445202-15 4 -0.074663 hybrid +142_2-4 Q0 KILT_7717615-1 5 -0.079104 hybrid +142_2-4 Q0 KILT_32239668-1 6 -0.120440 hybrid +142_2-4 Q0 MARCO_05_848975837-2 7 -0.127882 hybrid +142_2-4 Q0 MARCO_50_1395471412-11 8 -0.132056 hybrid +142_2-4 Q0 MARCO_15_106982860-3 9 -0.138604 hybrid +142_2-4 Q0 MARCO_10_448253860-6 10 -0.142781 hybrid +142_2-4 Q0 KILT_57086836-1 11 -0.146513 hybrid +142_2-4 Q0 MARCO_06_1149196799-139 12 -0.164060 hybrid +142_2-4 Q0 KILT_48619690-2 13 -0.174599 hybrid +142_2-4 Q0 KILT_35325571-1 14 -0.175661 hybrid +142_2-4 Q0 KILT_14024031-1 15 -0.189599 hybrid +142_2-4 Q0 KILT_22352829-1 16 -0.198346 hybrid +142_2-4 Q0 KILT_15130185-1 17 -0.209285 hybrid +142_2-4 Q0 KILT_5114137-1 18 -0.211002 hybrid +142_2-4 Q0 KILT_3424950-1 19 -0.211667 hybrid +142_2-4 Q0 KILT_59860269-1 20 -0.214648 hybrid +142_2-4 Q0 KILT_2527950-1 21 -0.226604 hybrid +142_2-4 Q0 KILT_6147532-1 22 -0.236204 hybrid +142_2-4 Q0 KILT_42498840-1 23 -0.243261 hybrid +142_2-4 Q0 MARCO_30_2013034285-3 24 -0.244480 hybrid +142_2-4 Q0 KILT_3947279-1 25 -0.244936 hybrid +142_2-4 Q0 MARCO_55_1245662540-6 26 -0.249998 hybrid +142_2-4 Q0 MARCO_28_329136270-3 27 -0.261038 hybrid +142_2-4 Q0 KILT_46268541-2 28 -0.266582 hybrid +142_2-4 Q0 KILT_5733951-3 29 -0.277884 hybrid +142_2-4 Q0 KILT_59860174-1 30 -0.280831 hybrid +142_2-4 Q0 KILT_32179195-1 31 -0.284069 hybrid +142_2-4 Q0 KILT_21068023-1 32 -0.284522 hybrid +142_2-4 Q0 MARCO_47_1602505698-12 33 -0.294148 hybrid +142_2-4 Q0 MARCO_17_655943116-5 34 -0.295920 hybrid +142_2-4 Q0 KILT_28105896-1 35 -0.298258 hybrid +142_2-4 Q0 MARCO_58_1508113613-2 36 -0.301826 hybrid +142_2-4 Q0 MARCO_28_983417792-1 37 -0.305019 hybrid +142_2-4 Q0 MARCO_55_1245662540-1 38 -0.306213 hybrid +142_2-4 Q0 MARCO_10_448253860-4 39 -0.310292 hybrid +142_2-4 Q0 KILT_48730417-1 40 -0.310707 hybrid +142_2-4 Q0 KILT_51940655-41 41 -0.317847 hybrid +142_2-4 Q0 KILT_13159127-1 42 -0.320678 hybrid +142_2-4 Q0 MARCO_08_1480326385-15 43 -0.320726 hybrid +142_2-4 Q0 MARCO_58_1506642595-3 44 -0.323494 hybrid +142_2-4 Q0 KILT_12650075-7 45 -0.327589 hybrid +142_2-4 Q0 KILT_4093361-1 46 -0.327884 hybrid +142_2-4 Q0 KILT_1839572-1 47 -0.331085 hybrid +142_2-4 Q0 KILT_9912418-1 48 -0.331583 hybrid +142_2-4 Q0 KILT_44717594-1 49 -0.333554 hybrid +142_2-4 Q0 KILT_12047969-1 50 -0.334152 hybrid +142_2-4 Q0 KILT_1727788-1 51 -0.336067 hybrid +142_2-4 Q0 KILT_58526100-2 52 -0.342926 hybrid +142_2-4 Q0 KILT_6690423-1 53 -0.344294 hybrid +142_2-4 Q0 MARCO_08_454689269-10 54 -0.347914 hybrid +142_2-4 Q0 KILT_466071-1 55 -0.349474 hybrid +142_2-4 Q0 KILT_15138390-1 56 -0.351994 hybrid +142_2-4 Q0 KILT_44091678-1 57 -0.352324 hybrid +142_2-4 Q0 MARCO_58_1509104985-3 58 -0.354762 hybrid +142_2-4 Q0 MARCO_47_293706177-9 59 -0.356422 hybrid +142_2-4 Q0 KILT_31089766-1 60 -0.357181 hybrid +142_2-4 Q0 KILT_18830585-7 61 -0.357656 hybrid +142_2-4 Q0 MARCO_47_1604104921-5 62 -0.358722 hybrid +142_2-4 Q0 MARCO_55_568585324-5 63 -0.360996 hybrid +142_2-4 Q0 KILT_47069367-1 64 -0.363094 hybrid +142_2-4 Q0 MARCO_10_802917812-3 65 -0.363691 hybrid +142_2-4 Q0 KILT_5959458-1 66 -0.369339 hybrid +142_2-4 Q0 KILT_25746627-1 67 -0.369747 hybrid +142_2-4 Q0 KILT_13969711-8 68 -0.374994 hybrid +142_2-4 Q0 KILT_1437724-12 69 -0.377148 hybrid +142_2-4 Q0 KILT_68259-7 70 -0.378206 hybrid +142_2-4 Q0 MARCO_47_1602505698-5 71 -0.378367 hybrid +142_2-4 Q0 KILT_13159974-1 72 -0.379631 hybrid +142_2-4 Q0 MARCO_47_1604104921-3 73 -0.382070 hybrid +142_2-4 Q0 MARCO_17_4192251160-21 74 -0.383364 hybrid +142_2-4 Q0 KILT_9912098-1 75 -0.385435 hybrid +142_2-4 Q0 KILT_6274865-2 76 -0.386864 hybrid +142_2-4 Q0 MARCO_17_1780397369-12 77 -0.391909 hybrid +142_2-4 Q0 KILT_27235520-3 78 -0.392208 hybrid +142_2-4 Q0 KILT_15961583-1 79 -0.392331 hybrid +142_2-4 Q0 KILT_41582495-54 80 -0.393143 hybrid +142_2-4 Q0 MARCO_33_868655730-8 81 -0.395311 hybrid +142_2-4 Q0 KILT_15581922-4 82 -0.396423 hybrid +142_2-4 Q0 KILT_44713925-1 83 -0.396741 hybrid +142_2-4 Q0 MARCO_18_4362463788-25 84 -0.399351 hybrid +142_2-4 Q0 MARCO_10_448253860-1 85 -0.400832 hybrid +142_2-4 Q0 KILT_242379-5 86 -0.401879 hybrid +142_2-4 Q0 KILT_11905029-1 87 -0.402605 hybrid +142_2-4 Q0 KILT_43442689-1 88 -0.407376 hybrid +142_2-4 Q0 KILT_35953014-1 89 -0.407661 hybrid +142_2-4 Q0 MARCO_33_868655730-9 90 -0.407866 hybrid +142_2-4 Q0 KILT_8076950-1 91 -0.410148 hybrid +142_2-4 Q0 KILT_3021414-1 92 -0.410473 hybrid +142_2-4 Q0 MARCO_19_2045799633-23 93 -0.414355 hybrid +142_2-4 Q0 KILT_44507655-1 94 -0.415974 hybrid +142_2-4 Q0 KILT_3050373-1 95 -0.417369 hybrid +142_2-4 Q0 MARCO_58_1508113613-1 96 -0.418772 hybrid +142_2-4 Q0 KILT_21372106-1 97 -0.421790 hybrid +142_2-4 Q0 KILT_47921431-1 98 -0.421846 hybrid +142_2-4 Q0 MARCO_47_1604104921-7 99 -0.422070 hybrid +142_2-4 Q0 KILT_4566251-1 100 -0.422728 hybrid +142_3-1 Q0 MARCO_30_1004054024-7 1 0.280916 hybrid +142_3-1 Q0 MARCO_16_3046749093-39 2 0.250000 hybrid +142_3-1 Q0 MARCO_16_3046749093-41 3 0.244102 hybrid +142_3-1 Q0 MARCO_10_120187103-9 4 0.218616 hybrid +142_3-1 Q0 MARCO_16_3046749093-45 5 0.195742 hybrid +142_3-1 Q0 MARCO_16_3046749093-42 6 0.157607 hybrid +142_3-1 Q0 MARCO_16_3046749093-4 7 0.154548 hybrid +142_3-1 Q0 MARCO_16_3046749093-62 8 0.124311 hybrid +142_3-1 Q0 MARCO_05_848957007-14 9 0.104918 hybrid +142_3-1 Q0 MARCO_16_3046749093-43 10 0.103145 hybrid +142_3-1 Q0 MARCO_16_3046749093-50 11 0.070428 hybrid +142_3-1 Q0 MARCO_22_1186906798-3 12 0.066558 hybrid +142_3-1 Q0 MARCO_10_120187103-8 13 0.063214 hybrid +142_3-1 Q0 MARCO_10_120187103-1 14 0.052243 hybrid +142_3-1 Q0 MARCO_05_848986452-3 15 0.047767 hybrid +142_3-1 Q0 MARCO_05_849004482-4 16 0.018585 hybrid +142_3-1 Q0 MARCO_16_3046749093-34 17 0.016904 hybrid +142_3-1 Q0 MARCO_05_848957007-9 18 0.016770 hybrid +142_3-1 Q0 MARCO_22_1189428320-5 19 -0.003300 hybrid +142_3-1 Q0 MARCO_47_1602505698-8 20 -0.009887 hybrid +142_3-1 Q0 MARCO_22_1186915282-2 21 -0.011834 hybrid +142_3-1 Q0 MARCO_16_3046749093-49 22 -0.012024 hybrid +142_3-1 Q0 MARCO_05_848957007-2 23 -0.021814 hybrid +142_3-1 Q0 MARCO_10_120187103-2 24 -0.029480 hybrid +142_3-1 Q0 MARCO_10_790347853-1 25 -0.034387 hybrid +142_3-1 Q0 KILT_2810466-9 26 -0.035499 hybrid +142_3-1 Q0 MARCO_11_1448564973-4 27 -0.038909 hybrid +142_3-1 Q0 MARCO_16_3046749093-55 28 -0.040086 hybrid +142_3-1 Q0 MARCO_16_3046749093-46 29 -0.057354 hybrid +142_3-1 Q0 MARCO_16_3046749093-51 30 -0.058920 hybrid +142_3-1 Q0 MARCO_47_1604104921-16 31 -0.077160 hybrid +142_3-1 Q0 MARCO_16_3046944575-15 32 -0.079987 hybrid +142_3-1 Q0 MARCO_16_3046749093-31 33 -0.080877 hybrid +142_3-1 Q0 MARCO_16_3046749093-38 34 -0.088076 hybrid +142_3-1 Q0 MARCO_16_3046749093-40 35 -0.098362 hybrid +142_3-1 Q0 MARCO_16_3046749093-29 36 -0.099230 hybrid +142_3-1 Q0 MARCO_54_676656745-1 37 -0.104267 hybrid +142_3-1 Q0 MARCO_05_849004482-5 38 -0.110146 hybrid +142_3-1 Q0 MARCO_05_848957007-1 39 -0.115827 hybrid +142_3-1 Q0 MARCO_10_120187103-6 40 -0.116485 hybrid +142_3-1 Q0 MARCO_24_1139351957-10 41 -0.117557 hybrid +142_3-1 Q0 MARCO_45_1248533362-1 42 -0.129897 hybrid +142_3-1 Q0 MARCO_16_3046749093-33 43 -0.133628 hybrid +142_3-1 Q0 MARCO_05_848957007-12 44 -0.139397 hybrid +142_3-1 Q0 MARCO_05_849015218-3 45 -0.140146 hybrid +142_3-1 Q0 MARCO_22_1186906798-5 46 -0.140983 hybrid +142_3-1 Q0 MARCO_24_1139403731-4 47 -0.146865 hybrid +142_3-1 Q0 MARCO_10_120187103-5 48 -0.152798 hybrid +142_3-1 Q0 MARCO_30_2012938093-10 49 -0.153624 hybrid +142_3-1 Q0 MARCO_16_3046749093-56 50 -0.157038 hybrid +142_3-1 Q0 KILT_2810466-6 51 -0.159009 hybrid +142_3-1 Q0 MARCO_35_131732716-2 52 -0.163132 hybrid +142_3-1 Q0 MARCO_05_849015218-2 53 -0.169011 hybrid +142_3-1 Q0 MARCO_22_1186906798-2 54 -0.179452 hybrid +142_3-1 Q0 MARCO_05_848957007-4 55 -0.181686 hybrid +142_3-1 Q0 MARCO_16_3046749093-54 56 -0.182903 hybrid +142_3-1 Q0 MARCO_10_120187103-10 57 -0.183847 hybrid +142_3-1 Q0 MARCO_19_2045799633-3 58 -0.188990 hybrid +142_3-1 Q0 KILT_35894206-3 59 -0.190102 hybrid +142_3-1 Q0 MARCO_50_1458626850-10 60 -0.194825 hybrid +142_3-1 Q0 MARCO_05_848957007-5 61 -0.195272 hybrid +142_3-1 Q0 MARCO_05_849015218-10 62 -0.196649 hybrid +142_3-1 Q0 MARCO_11_1448564973-9 63 -0.197744 hybrid +142_3-1 Q0 MARCO_05_848986452-4 64 -0.202463 hybrid +142_3-1 Q0 MARCO_05_849036905-4 65 -0.206491 hybrid +142_3-1 Q0 MARCO_16_3046749093-15 66 -0.206549 hybrid +142_3-1 Q0 MARCO_17_2510087016-7 67 -0.209297 hybrid +142_3-1 Q0 MARCO_16_3046749093-114 68 -0.211333 hybrid +142_3-1 Q0 MARCO_16_3046944575-17 69 -0.212834 hybrid +142_3-1 Q0 MARCO_22_1186915282-3 70 -0.216729 hybrid +142_3-1 Q0 MARCO_27_1334580338-2 71 -0.217447 hybrid +142_3-1 Q0 KILT_23378955-9 72 -0.218702 hybrid +142_3-1 Q0 MARCO_05_848986452-1 73 -0.219824 hybrid +142_3-1 Q0 MARCO_16_3046749093-63 74 -0.226968 hybrid +142_3-1 Q0 MARCO_22_1186906798-1 75 -0.227316 hybrid +142_3-1 Q0 MARCO_05_849036905-5 76 -0.228091 hybrid +142_3-1 Q0 KILT_44501940-2 77 -0.232847 hybrid +142_3-1 Q0 MARCO_05_849036905-3 78 -0.235047 hybrid +142_3-1 Q0 MARCO_03_1387185114-1 79 -0.235096 hybrid +142_3-1 Q0 MARCO_08_1480326385-15 80 -0.235586 hybrid +142_3-1 Q0 MARCO_16_3046749093-47 81 -0.236107 hybrid +142_3-1 Q0 KILT_592815-8 82 -0.238549 hybrid +142_3-1 Q0 MARCO_05_848975837-1 83 -0.244680 hybrid +142_3-1 Q0 KILT_28820502-7 84 -0.245069 hybrid +142_3-1 Q0 MARCO_55_1245662540-1 85 -0.250000 hybrid +142_3-1 Q0 MARCO_16_3046749093-66 86 -0.251101 hybrid +142_3-1 Q0 MARCO_12_1731808931-3 87 -0.251378 hybrid +142_3-1 Q0 MARCO_24_1126171266-11 88 -0.253369 hybrid +142_3-1 Q0 MARCO_39_620476129-12 89 -0.255238 hybrid +142_3-1 Q0 MARCO_16_3046749093-28 90 -0.256373 hybrid +142_3-1 Q0 MARCO_05_848957007-6 91 -0.258591 hybrid +142_3-1 Q0 KILT_1140859-18 92 -0.259773 hybrid +142_3-1 Q0 MARCO_36_1008692847-9 93 -0.261209 hybrid +142_3-1 Q0 MARCO_55_248583746-11 94 -0.262597 hybrid +142_3-1 Q0 MARCO_24_82231277-2 95 -0.263149 hybrid +142_3-1 Q0 MARCO_16_3046749093-127 96 -0.263425 hybrid +142_3-1 Q0 MARCO_18_3127967367-2 97 -0.263494 hybrid +142_3-1 Q0 MARCO_45_1322803117-11 98 -0.269400 hybrid +142_3-1 Q0 MARCO_55_251439026-5 99 -0.272087 hybrid +142_3-1 Q0 MARCO_22_1186915282-6 100 -0.276810 hybrid +142_3-3 Q0 MARCO_05_849015218-3 1 0.647066 hybrid +142_3-3 Q0 MARCO_05_848986452-3 2 0.553900 hybrid +142_3-3 Q0 MARCO_05_849004482-2 3 0.544776 hybrid +142_3-3 Q0 MARCO_05_849036905-3 4 0.231794 hybrid +142_3-3 Q0 MARCO_05_849004482-7 5 0.217358 hybrid +142_3-3 Q0 MARCO_05_849004482-1 6 0.186917 hybrid +142_3-3 Q0 MARCO_05_849004482-6 7 0.117534 hybrid +142_3-3 Q0 MARCO_05_849015218-4 8 0.115568 hybrid +142_3-3 Q0 MARCO_05_849004482-3 9 0.085179 hybrid +142_3-3 Q0 MARCO_04_181543666-2 10 0.060632 hybrid +142_3-3 Q0 MARCO_05_849015218-10 11 0.045378 hybrid +142_3-3 Q0 MARCO_04_181543666-3 12 0.028848 hybrid +142_3-3 Q0 MARCO_05_849004482-4 13 0.024614 hybrid +142_3-3 Q0 MARCO_05_849036905-4 14 -0.005083 hybrid +142_3-3 Q0 MARCO_10_790347853-4 15 -0.006604 hybrid +142_3-3 Q0 MARCO_05_849029985-1 16 -0.012114 hybrid +142_3-3 Q0 MARCO_11_17181996-4 17 -0.053862 hybrid +142_3-3 Q0 MARCO_05_848975837-6 18 -0.067833 hybrid +142_3-3 Q0 MARCO_05_848957007-6 19 -0.068590 hybrid +142_3-3 Q0 MARCO_04_181543666-1 20 -0.077053 hybrid +142_3-3 Q0 MARCO_05_849036905-5 21 -0.094221 hybrid +142_3-3 Q0 MARCO_11_17181996-2 22 -0.135523 hybrid +142_3-3 Q0 MARCO_05_848957007-5 23 -0.137996 hybrid +142_3-3 Q0 MARCO_22_1186906798-5 24 -0.148825 hybrid +142_3-3 Q0 MARCO_05_849015218-7 25 -0.149869 hybrid +142_3-3 Q0 MARCO_05_849015218-9 26 -0.152150 hybrid +142_3-3 Q0 KILT_35739075-1 27 -0.163526 hybrid +142_3-3 Q0 MARCO_36_816068485-1 28 -0.163848 hybrid +142_3-3 Q0 MARCO_10_120187103-2 29 -0.167772 hybrid +142_3-3 Q0 MARCO_05_848986452-4 30 -0.170766 hybrid +142_3-3 Q0 MARCO_05_849015218-2 31 -0.176563 hybrid +142_3-3 Q0 KILT_21355134-1 32 -0.183629 hybrid +142_3-3 Q0 MARCO_10_120187103-8 33 -0.188930 hybrid +142_3-3 Q0 KILT_21355134-3 34 -0.191143 hybrid +142_3-3 Q0 MARCO_05_848986452-1 35 -0.204887 hybrid +142_3-3 Q0 MARCO_30_2012938093-7 36 -0.214973 hybrid +142_3-3 Q0 KILT_37504643-2 37 -0.224740 hybrid +142_3-3 Q0 KILT_35739075-2 38 -0.225511 hybrid +142_3-3 Q0 KILT_508795-7 39 -0.226726 hybrid +142_3-3 Q0 MARCO_11_17181996-3 40 -0.227202 hybrid +142_3-3 Q0 MARCO_05_848986452-6 41 -0.236386 hybrid +142_3-3 Q0 MARCO_05_849004482-9 42 -0.240331 hybrid +142_3-3 Q0 MARCO_05_849004482-5 43 -0.241052 hybrid +142_3-3 Q0 MARCO_45_1265329830-4 44 -0.242092 hybrid +142_3-3 Q0 MARCO_54_1646111923-1 45 -0.249448 hybrid +142_3-3 Q0 MARCO_45_1264854305-3 46 -0.250299 hybrid +142_3-3 Q0 MARCO_05_848986452-7 47 -0.253590 hybrid +142_3-3 Q0 KILT_433171-5 48 -0.254071 hybrid +142_3-3 Q0 MARCO_05_849015218-8 49 -0.254535 hybrid +142_3-3 Q0 MARCO_05_849015218-6 50 -0.256090 hybrid +142_3-3 Q0 MARCO_05_849029985-2 51 -0.257359 hybrid +142_3-3 Q0 MARCO_11_17181996-1 52 -0.260440 hybrid +142_3-3 Q0 KILT_37503166-2 53 -0.262403 hybrid +142_3-3 Q0 KILT_2810466-9 54 -0.285044 hybrid +142_3-3 Q0 MARCO_22_1186915282-2 55 -0.285786 hybrid +142_3-3 Q0 MARCO_45_1264854305-4 56 -0.286284 hybrid +142_3-3 Q0 MARCO_05_849015218-5 57 -0.293450 hybrid +142_3-3 Q0 MARCO_05_849015218-1 58 -0.294053 hybrid +142_3-3 Q0 MARCO_05_848927550-2 59 -0.294745 hybrid +142_3-3 Q0 MARCO_50_1670843783-22 60 -0.295474 hybrid +142_3-3 Q0 MARCO_05_849004482-8 61 -0.302789 hybrid +142_3-3 Q0 KILT_34415953-2 62 -0.309946 hybrid +142_3-3 Q0 MARCO_05_849036905-8 63 -0.312624 hybrid +142_3-3 Q0 KILT_35739075-3 64 -0.314209 hybrid +142_3-3 Q0 MARCO_10_1419858694-18 65 -0.324913 hybrid +142_3-3 Q0 MARCO_05_848975837-2 66 -0.325240 hybrid +142_3-3 Q0 MARCO_45_1264854305-2 67 -0.326479 hybrid +142_3-3 Q0 KILT_35739075-4 68 -0.340008 hybrid +142_3-3 Q0 MARCO_04_181543666-4 69 -0.343246 hybrid +142_3-3 Q0 MARCO_05_848986452-5 70 -0.344319 hybrid +142_3-3 Q0 MARCO_45_1265329830-1 71 -0.345453 hybrid +142_3-3 Q0 MARCO_05_848957007-7 72 -0.353021 hybrid +142_3-3 Q0 KILT_34415953-1 73 -0.365706 hybrid +142_3-3 Q0 MARCO_30_1004054024-7 74 -0.366508 hybrid +142_3-3 Q0 KILT_14914953-1 75 -0.371158 hybrid +142_3-3 Q0 MARCO_22_1189547051-4 76 -0.374129 hybrid +142_3-3 Q0 MARCO_05_849036905-2 77 -0.377875 hybrid +142_3-3 Q0 MARCO_05_848483518-1 78 -0.380317 hybrid +142_3-3 Q0 MARCO_05_849036905-1 79 -0.383415 hybrid +142_3-3 Q0 MARCO_34_1754594337-3 80 -0.390424 hybrid +142_3-3 Q0 MARCO_45_1237326115-3 81 -0.392001 hybrid +142_3-3 Q0 MARCO_05_848483518-4 82 -0.394757 hybrid +142_3-3 Q0 MARCO_05_849036905-10 83 -0.397233 hybrid +142_3-3 Q0 KILT_613089-1 84 -0.400074 hybrid +142_3-3 Q0 MARCO_59_947834789-12 85 -0.402900 hybrid +142_3-3 Q0 MARCO_13_429898392-1 86 -0.403260 hybrid +142_3-3 Q0 MARCO_34_1699093267-3 87 -0.406123 hybrid +142_3-3 Q0 MARCO_26_164617814-31 88 -0.409614 hybrid +142_3-3 Q0 MARCO_05_849036905-12 89 -0.414041 hybrid +142_3-3 Q0 MARCO_16_1730396730-6 90 -0.414705 hybrid +142_3-3 Q0 MARCO_05_848483518-2 91 -0.416539 hybrid +142_3-3 Q0 KILT_262752-1 92 -0.418014 hybrid +142_3-3 Q0 MARCO_26_164617814-21 93 -0.418259 hybrid +142_3-3 Q0 KILT_37503166-4 94 -0.422522 hybrid +142_3-3 Q0 MARCO_05_849346313-4 95 -0.425730 hybrid +142_3-3 Q0 MARCO_10_120187103-9 96 -0.427737 hybrid +142_3-3 Q0 MARCO_05_848986452-2 97 -0.432016 hybrid +142_3-3 Q0 KILT_35203994-1 98 -0.437460 hybrid +142_3-3 Q0 MARCO_41_1124532524-26 99 -0.438323 hybrid +142_3-3 Q0 MARCO_05_849029985-3 100 -0.447073 hybrid +142_3-5 Q0 MARCO_30_2013006327-1 1 0.250002 hybrid +142_3-5 Q0 MARCO_58_1505463998-2 2 0.096171 hybrid +142_3-5 Q0 MARCO_06_1240614560-40 3 0.014574 hybrid +142_3-5 Q0 MARCO_28_986492477-1 4 -0.024333 hybrid +142_3-5 Q0 MARCO_58_1506642595-1 5 -0.032201 hybrid +142_3-5 Q0 MARCO_30_2013006327-6 6 -0.033551 hybrid +142_3-5 Q0 MARCO_31_900217158-4 7 -0.056409 hybrid +142_3-5 Q0 MARCO_04_217203515-3 8 -0.080190 hybrid +142_3-5 Q0 KILT_34344673-2 9 -0.082293 hybrid +142_3-5 Q0 MARCO_17_2524961420-1 10 -0.100723 hybrid +142_3-5 Q0 MARCO_17_357433963-7 11 -0.114051 hybrid +142_3-5 Q0 MARCO_39_610593945-2 12 -0.138400 hybrid +142_3-5 Q0 MARCO_06_1240614560-37 13 -0.142277 hybrid +142_3-5 Q0 MARCO_45_201834591-3 14 -0.156794 hybrid +142_3-5 Q0 KILT_26507946-2 15 -0.161930 hybrid +142_3-5 Q0 MARCO_30_2013006327-3 16 -0.176485 hybrid +142_3-5 Q0 MARCO_19_2045907716-12 17 -0.184730 hybrid +142_3-5 Q0 MARCO_18_2404733400-7 18 -0.190702 hybrid +142_3-5 Q0 KILT_44973915-20 19 -0.194789 hybrid +142_3-5 Q0 MARCO_16_3046944575-20 20 -0.205802 hybrid +142_3-5 Q0 MARCO_17_2524961420-3 21 -0.213031 hybrid +142_3-5 Q0 KILT_2527950-1 22 -0.228686 hybrid +142_3-5 Q0 MARCO_04_217203515-4 23 -0.228789 hybrid +142_3-5 Q0 MARCO_16_3046749093-37 24 -0.239461 hybrid +142_3-5 Q0 MARCO_06_1240614560-33 25 -0.242334 hybrid +142_3-5 Q0 MARCO_58_1505463998-1 26 -0.243711 hybrid +142_3-5 Q0 MARCO_47_1601362260-9 27 -0.244250 hybrid +142_3-5 Q0 MARCO_21_1396071932-2 28 -0.244785 hybrid +142_3-5 Q0 MARCO_04_135230917-3 29 -0.249998 hybrid +142_3-5 Q0 MARCO_05_1348759273-2 30 -0.252754 hybrid +142_3-5 Q0 MARCO_00_1103228103-3 31 -0.258078 hybrid +142_3-5 Q0 MARCO_50_1441723234-18 32 -0.259506 hybrid +142_3-5 Q0 KILT_37217735-9 33 -0.263903 hybrid +142_3-5 Q0 MARCO_05_848975837-1 34 -0.266422 hybrid +142_3-5 Q0 MARCO_05_1348759273-1 35 -0.267864 hybrid +142_3-5 Q0 MARCO_11_1510388642-2 36 -0.272196 hybrid +142_3-5 Q0 MARCO_30_2013006327-4 37 -0.273505 hybrid +142_3-5 Q0 KILT_34879285-1 38 -0.274279 hybrid +142_3-5 Q0 MARCO_21_1396056938-3 39 -0.282633 hybrid +142_3-5 Q0 MARCO_39_670955540-31 40 -0.287013 hybrid +142_3-5 Q0 MARCO_21_1394671480-5 41 -0.288476 hybrid +142_3-5 Q0 MARCO_31_900217158-2 42 -0.289474 hybrid +142_3-5 Q0 KILT_27644194-19 43 -0.291335 hybrid +142_3-5 Q0 KILT_59613337-5 44 -0.293490 hybrid +142_3-5 Q0 MARCO_31_900217158-3 45 -0.299240 hybrid +142_3-5 Q0 MARCO_04_217203515-5 46 -0.302676 hybrid +142_3-5 Q0 MARCO_38_608944854-1 47 -0.304097 hybrid +142_3-5 Q0 MARCO_39_617979123-62 48 -0.321095 hybrid +142_3-5 Q0 MARCO_47_1601362260-6 49 -0.321293 hybrid +142_3-5 Q0 KILT_23461817-3 50 -0.327214 hybrid +142_3-5 Q0 MARCO_39_617979123-64 51 -0.329126 hybrid +142_3-5 Q0 MARCO_39_610806867-15 52 -0.333219 hybrid +142_3-5 Q0 MARCO_06_1240614560-32 53 -0.334886 hybrid +142_3-5 Q0 MARCO_21_1396071932-1 54 -0.335735 hybrid +142_3-5 Q0 KILT_23461817-2 55 -0.337593 hybrid +142_3-5 Q0 KILT_13920022-1 56 -0.340033 hybrid +142_3-5 Q0 MARCO_31_1656676485-2 57 -0.346630 hybrid +142_3-5 Q0 MARCO_21_1396056938-2 58 -0.351983 hybrid +142_3-5 Q0 MARCO_06_1240614560-42 59 -0.352222 hybrid +142_3-5 Q0 KILT_25513466-4 60 -0.352392 hybrid +142_3-5 Q0 MARCO_28_415993444-1 61 -0.352733 hybrid +142_3-5 Q0 MARCO_30_901383913-1 62 -0.355060 hybrid +142_3-5 Q0 MARCO_58_1506642595-2 63 -0.363821 hybrid +142_3-5 Q0 MARCO_16_3046749093-13 64 -0.364479 hybrid +142_3-5 Q0 KILT_2810466-9 65 -0.366408 hybrid +142_3-5 Q0 KILT_13920022-16 66 -0.374071 hybrid +142_3-5 Q0 MARCO_06_1149196799-140 67 -0.375693 hybrid +142_3-5 Q0 MARCO_31_1651583997-5 68 -0.377445 hybrid +142_3-5 Q0 MARCO_19_573053305-51 69 -0.379770 hybrid +142_3-5 Q0 KILT_13510226-1 70 -0.382093 hybrid +142_3-5 Q0 MARCO_30_1004488553-11 71 -0.382599 hybrid +142_3-5 Q0 MARCO_30_2013006327-2 72 -0.384879 hybrid +142_3-5 Q0 MARCO_29_789818223-2 73 -0.386969 hybrid +142_3-5 Q0 MARCO_38_609183005-1 74 -0.390415 hybrid +142_3-5 Q0 MARCO_16_3046749093-14 75 -0.390936 hybrid +142_3-5 Q0 MARCO_05_849015218-10 76 -0.391556 hybrid +142_3-5 Q0 MARCO_54_676656745-1 77 -0.393162 hybrid +142_3-5 Q0 MARCO_43_782625791-2 78 -0.394720 hybrid +142_3-5 Q0 MARCO_21_1392937063-7 79 -0.395977 hybrid +142_3-5 Q0 KILT_2014815-2 80 -0.396922 hybrid +142_3-5 Q0 MARCO_18_2404733400-4 81 -0.397695 hybrid +142_3-5 Q0 KILT_412827-31 82 -0.398919 hybrid +142_3-5 Q0 MARCO_18_1299865625-4 83 -0.402852 hybrid +142_3-5 Q0 MARCO_06_1240614560-48 84 -0.405596 hybrid +142_3-5 Q0 MARCO_17_2524961420-2 85 -0.406609 hybrid +142_3-5 Q0 MARCO_04_217203515-6 86 -0.407744 hybrid +142_3-5 Q0 MARCO_16_3046749093-49 87 -0.408078 hybrid +142_3-5 Q0 MARCO_16_3298791525-2 88 -0.415627 hybrid +142_3-5 Q0 KILT_13920022-8 89 -0.416197 hybrid +142_3-5 Q0 MARCO_12_1102872949-1 90 -0.417310 hybrid +142_3-5 Q0 MARCO_19_2045799633-18 91 -0.420464 hybrid +142_3-5 Q0 MARCO_06_1149196799-139 92 -0.420788 hybrid +142_3-5 Q0 MARCO_18_3127967367-2 93 -0.420839 hybrid +142_3-5 Q0 MARCO_03_1206509662-1 94 -0.421112 hybrid +142_3-5 Q0 MARCO_22_1186906798-2 95 -0.421119 hybrid +142_3-5 Q0 MARCO_16_3046749093-54 96 -0.423085 hybrid +142_3-5 Q0 MARCO_16_3046749093-45 97 -0.423225 hybrid +142_3-5 Q0 MARCO_56_1050316601-133 98 -0.425748 hybrid +142_3-5 Q0 MARCO_51_694777636-29 99 -0.426327 hybrid +142_3-5 Q0 MARCO_09_676087227-1 100 -0.427614 hybrid +142_4-1 Q0 MARCO_30_1004054024-7 1 0.392313 hybrid +142_4-1 Q0 MARCO_14_52176501-3 2 0.250000 hybrid +142_4-1 Q0 MARCO_10_120187103-8 3 0.130444 hybrid +142_4-1 Q0 MARCO_22_1186906798-5 4 0.119488 hybrid +142_4-1 Q0 MARCO_17_674008977-6 5 0.090727 hybrid +142_4-1 Q0 MARCO_16_3046749093-65 6 0.045726 hybrid +142_4-1 Q0 KILT_8773374-3 7 0.041563 hybrid +142_4-1 Q0 MARCO_10_120187103-9 8 0.026013 hybrid +142_4-1 Q0 KILT_1140859-18 9 -0.006008 hybrid +142_4-1 Q0 MARCO_31_1646897069-2 10 -0.025906 hybrid +142_4-1 Q0 MARCO_05_812071402-4 11 -0.030878 hybrid +142_4-1 Q0 MARCO_16_3046749093-46 12 -0.047328 hybrid +142_4-1 Q0 MARCO_11_1448564973-4 13 -0.049465 hybrid +142_4-1 Q0 MARCO_17_674008977-4 14 -0.057262 hybrid +142_4-1 Q0 MARCO_14_52176501-2 15 -0.058860 hybrid +142_4-1 Q0 MARCO_11_1448564973-9 16 -0.081599 hybrid +142_4-1 Q0 MARCO_11_1448564973-10 17 -0.089437 hybrid +142_4-1 Q0 KILT_8773374-4 18 -0.091821 hybrid +142_4-1 Q0 KILT_34415953-3 19 -0.091973 hybrid +142_4-1 Q0 MARCO_16_3046749093-45 20 -0.104840 hybrid +142_4-1 Q0 KILT_18618358-2 21 -0.107512 hybrid +142_4-1 Q0 KILT_50665371-9 22 -0.129977 hybrid +142_4-1 Q0 MARCO_16_3046749093-34 23 -0.133831 hybrid +142_4-1 Q0 KILT_25515537-1 24 -0.152615 hybrid +142_4-1 Q0 KILT_29192048-1 25 -0.168452 hybrid +142_4-1 Q0 MARCO_16_3046749093-42 26 -0.168970 hybrid +142_4-1 Q0 KILT_9390071-1 27 -0.169647 hybrid +142_4-1 Q0 KILT_47499851-1 28 -0.173589 hybrid +142_4-1 Q0 MARCO_55_1728784830-2 29 -0.176004 hybrid +142_4-1 Q0 KILT_6001027-6 30 -0.177061 hybrid +142_4-1 Q0 MARCO_22_1189445202-25 31 -0.177068 hybrid +142_4-1 Q0 KILT_7717615-1 32 -0.178080 hybrid +142_4-1 Q0 KILT_48876466-1 33 -0.179039 hybrid +142_4-1 Q0 MARCO_16_3046749093-55 34 -0.184481 hybrid +142_4-1 Q0 MARCO_16_3046749093-50 35 -0.186272 hybrid +142_4-1 Q0 KILT_58941729-1 36 -0.191011 hybrid +142_4-1 Q0 KILT_1761434-13 37 -0.200034 hybrid +142_4-1 Q0 MARCO_36_1008828234-11 38 -0.203377 hybrid +142_4-1 Q0 KILT_1162854-20 39 -0.207752 hybrid +142_4-1 Q0 KILT_5302486-3 40 -0.208106 hybrid +142_4-1 Q0 MARCO_24_1126171266-11 41 -0.210161 hybrid +142_4-1 Q0 MARCO_55_248583746-11 42 -0.212007 hybrid +142_4-1 Q0 KILT_7478387-1 43 -0.213300 hybrid +142_4-1 Q0 MARCO_16_3046749093-39 44 -0.217727 hybrid +142_4-1 Q0 KILT_7478131-1 45 -0.218739 hybrid +142_4-1 Q0 MARCO_36_1008692847-9 46 -0.226976 hybrid +142_4-1 Q0 KILT_39905364-2 47 -0.228859 hybrid +142_4-1 Q0 MARCO_16_1109184094-5 48 -0.234969 hybrid +142_4-1 Q0 MARCO_16_3046749093-4 49 -0.235688 hybrid +142_4-1 Q0 KILT_44175543-3 50 -0.237398 hybrid +142_4-1 Q0 MARCO_10_120187103-2 51 -0.238126 hybrid +142_4-1 Q0 MARCO_55_1705436495-5 52 -0.238417 hybrid +142_4-1 Q0 MARCO_05_848957007-14 53 -0.238823 hybrid +142_4-1 Q0 MARCO_19_2045799633-16 54 -0.242474 hybrid +142_4-1 Q0 MARCO_05_849036905-4 55 -0.246776 hybrid +142_4-1 Q0 MARCO_16_3046749093-62 56 -0.246864 hybrid +142_4-1 Q0 MARCO_34_1754594337-3 57 -0.250000 hybrid +142_4-1 Q0 KILT_6293388-1 58 -0.251013 hybrid +142_4-1 Q0 KILT_37504643-2 59 -0.252405 hybrid +142_4-1 Q0 MARCO_16_3046749093-54 60 -0.254186 hybrid +142_4-1 Q0 MARCO_10_120187103-3 61 -0.255141 hybrid +142_4-1 Q0 MARCO_35_131732716-2 62 -0.257810 hybrid +142_4-1 Q0 MARCO_16_3046749093-41 63 -0.258037 hybrid +142_4-1 Q0 KILT_1359000-1 64 -0.259737 hybrid +142_4-1 Q0 KILT_11904555-3 65 -0.262403 hybrid +142_4-1 Q0 KILT_23378955-9 66 -0.263768 hybrid +142_4-1 Q0 MARCO_39_620476129-12 67 -0.265945 hybrid +142_4-1 Q0 MARCO_22_1186906798-2 68 -0.268736 hybrid +142_4-1 Q0 MARCO_24_1719466074-10 69 -0.270318 hybrid +142_4-1 Q0 MARCO_16_3046749093-51 70 -0.272264 hybrid +142_4-1 Q0 MARCO_16_3046749093-83 71 -0.273291 hybrid +142_4-1 Q0 KILT_59974594-1 72 -0.275364 hybrid +142_4-1 Q0 MARCO_51_809486097-53 73 -0.277427 hybrid +142_4-1 Q0 MARCO_16_3046749093-66 74 -0.279056 hybrid +142_4-1 Q0 KILT_12996819-1 75 -0.281105 hybrid +142_4-1 Q0 KILT_43532125-2 76 -0.284373 hybrid +142_4-1 Q0 MARCO_31_1648686016-11 77 -0.286426 hybrid +142_4-1 Q0 MARCO_05_849036905-6 78 -0.292969 hybrid +142_4-1 Q0 MARCO_16_3046749093-84 79 -0.297456 hybrid +142_4-1 Q0 MARCO_12_1981260820-6 80 -0.298063 hybrid +142_4-1 Q0 KILT_5245019-1 81 -0.299509 hybrid +142_4-1 Q0 KILT_16076744-2 82 -0.301331 hybrid +142_4-1 Q0 MARCO_05_849036905-3 83 -0.303634 hybrid +142_4-1 Q0 KILT_8985102-1 84 -0.306445 hybrid +142_4-1 Q0 MARCO_16_3046749093-43 85 -0.308328 hybrid +142_4-1 Q0 MARCO_59_136156672-3 86 -0.309575 hybrid +142_4-1 Q0 MARCO_16_3046749093-44 87 -0.310394 hybrid +142_4-1 Q0 MARCO_31_1647412063-3 88 -0.312884 hybrid +142_4-1 Q0 MARCO_16_3046749093-82 89 -0.320070 hybrid +142_4-1 Q0 MARCO_27_912003150-1 90 -0.320186 hybrid +142_4-1 Q0 MARCO_05_849036905-9 91 -0.320389 hybrid +142_4-1 Q0 KILT_59360592-1 92 -0.320606 hybrid +142_4-1 Q0 KILT_3541854-4 93 -0.320924 hybrid +142_4-1 Q0 KILT_3711078-1 94 -0.321821 hybrid +142_4-1 Q0 MARCO_11_1448564973-11 95 -0.322404 hybrid +142_4-1 Q0 KILT_6554910-3 96 -0.323256 hybrid +142_4-1 Q0 MARCO_16_3046749093-15 97 -0.324920 hybrid +142_4-1 Q0 MARCO_16_3046749093-29 98 -0.325608 hybrid +142_4-1 Q0 MARCO_16_3046944575-17 99 -0.327081 hybrid +142_4-1 Q0 MARCO_30_1782765125-6 100 -0.330194 hybrid +142_5-1 Q0 MARCO_53_812385688-10 1 0.249998 hybrid +142_5-1 Q0 MARCO_30_2013002157-2 2 0.215876 hybrid +142_5-1 Q0 MARCO_36_1003753285-4 3 0.084085 hybrid +142_5-1 Q0 MARCO_50_1936673617-24 4 0.012710 hybrid +142_5-1 Q0 MARCO_12_275444885-4 5 -0.052166 hybrid +142_5-1 Q0 MARCO_02_928843665-6 6 -0.054630 hybrid +142_5-1 Q0 MARCO_13_1563872418-5 7 -0.056235 hybrid +142_5-1 Q0 MARCO_22_1186906798-4 8 -0.062540 hybrid +142_5-1 Q0 MARCO_39_670955540-32 9 -0.089818 hybrid +142_5-1 Q0 MARCO_35_131726592-1 10 -0.098797 hybrid +142_5-1 Q0 MARCO_23_61073379-44 11 -0.105427 hybrid +142_5-1 Q0 MARCO_10_719894755-1 12 -0.110873 hybrid +142_5-1 Q0 MARCO_32_1026784471-1 13 -0.126807 hybrid +142_5-1 Q0 MARCO_46_1315539867-8 14 -0.166844 hybrid +142_5-1 Q0 MARCO_55_74023026-3 15 -0.190960 hybrid +142_5-1 Q0 MARCO_12_278047340-2 16 -0.198996 hybrid +142_5-1 Q0 MARCO_51_694777636-51 17 -0.201694 hybrid +142_5-1 Q0 MARCO_12_275444885-3 18 -0.203548 hybrid +142_5-1 Q0 MARCO_36_1005507397-5 19 -0.210055 hybrid +142_5-1 Q0 MARCO_30_2013002157-1 20 -0.221583 hybrid +142_5-1 Q0 MARCO_00_248867572-4 21 -0.221942 hybrid +142_5-1 Q0 MARCO_00_249798197-8 22 -0.226971 hybrid +142_5-1 Q0 MARCO_45_256347161-1 23 -0.229330 hybrid +142_5-1 Q0 MARCO_12_275444885-6 24 -0.232720 hybrid +142_5-1 Q0 MARCO_35_131726592-2 25 -0.233101 hybrid +142_5-1 Q0 MARCO_48_1187027653-7 26 -0.238924 hybrid +142_5-1 Q0 MARCO_36_1003753285-1 27 -0.240590 hybrid +142_5-1 Q0 MARCO_22_1186906798-3 28 -0.246782 hybrid +142_5-1 Q0 MARCO_54_1941586628-5 29 -0.250002 hybrid +142_5-1 Q0 MARCO_10_444484315-3 30 -0.252447 hybrid +142_5-1 Q0 MARCO_10_790344909-1 31 -0.254209 hybrid +142_5-1 Q0 MARCO_08_738461454-4 32 -0.255012 hybrid +142_5-1 Q0 MARCO_10_790344909-2 33 -0.257612 hybrid +142_5-1 Q0 MARCO_43_40663531-1 34 -0.269768 hybrid +142_5-1 Q0 MARCO_28_984794031-10 35 -0.270911 hybrid +142_5-1 Q0 MARCO_43_40663531-3 36 -0.281820 hybrid +142_5-1 Q0 MARCO_51_694777636-52 37 -0.290800 hybrid +142_5-1 Q0 MARCO_09_436931274-20 38 -0.299648 hybrid +142_5-1 Q0 MARCO_47_127994858-1 39 -0.307265 hybrid +142_5-1 Q0 MARCO_12_278047340-3 40 -0.310421 hybrid +142_5-1 Q0 MARCO_40_905208818-8 41 -0.319537 hybrid +142_5-1 Q0 MARCO_53_737955432-1 42 -0.325154 hybrid +142_5-1 Q0 MARCO_23_489708504-2 43 -0.328311 hybrid +142_5-1 Q0 MARCO_28_986308993-4 44 -0.328982 hybrid +142_5-1 Q0 MARCO_04_519138088-1 45 -0.333525 hybrid +142_5-1 Q0 MARCO_53_205486420-11 46 -0.336063 hybrid +142_5-1 Q0 MARCO_09_437217577-2 47 -0.339163 hybrid +142_5-1 Q0 MARCO_50_516427711-18 48 -0.340308 hybrid +142_5-1 Q0 MARCO_30_2013034285-2 49 -0.345267 hybrid +142_5-1 Q0 MARCO_32_1067299127-4 50 -0.348411 hybrid +142_5-1 Q0 MARCO_50_1517177834-14 51 -0.350384 hybrid +142_5-1 Q0 MARCO_09_435587056-11 52 -0.350423 hybrid +142_5-1 Q0 MARCO_50_1936673617-17 53 -0.351958 hybrid +142_5-1 Q0 MARCO_05_516432914-5 54 -0.355479 hybrid +142_5-1 Q0 MARCO_15_620756514-8 55 -0.358662 hybrid +142_5-1 Q0 MARCO_55_249830363-9 56 -0.363362 hybrid +142_5-1 Q0 MARCO_32_1019318086-5 57 -0.363998 hybrid +142_5-1 Q0 MARCO_10_81227006-4 58 -0.364410 hybrid +142_5-1 Q0 MARCO_46_1315539867-7 59 -0.365055 hybrid +142_5-1 Q0 MARCO_06_477944537-1 60 -0.366502 hybrid +142_5-1 Q0 MARCO_32_1025245460-11 61 -0.375828 hybrid +142_5-1 Q0 MARCO_09_435639644-1 62 -0.376188 hybrid +142_5-1 Q0 MARCO_19_2045799633-5 63 -0.376328 hybrid +142_5-1 Q0 MARCO_40_748535745-6 64 -0.376692 hybrid +142_5-1 Q0 MARCO_06_1210631437-164 65 -0.378753 hybrid +142_5-1 Q0 MARCO_09_435573983-1 66 -0.379086 hybrid +142_5-1 Q0 MARCO_32_1069019226-4 67 -0.381774 hybrid +142_5-1 Q0 MARCO_06_484716332-1 68 -0.383918 hybrid +142_5-1 Q0 MARCO_28_986261704-8 69 -0.386693 hybrid +142_5-1 Q0 MARCO_32_1020747089-5 70 -0.387641 hybrid +142_5-1 Q0 MARCO_19_2045799633-26 71 -0.389482 hybrid +142_5-1 Q0 MARCO_32_1025763757-4 72 -0.391354 hybrid +142_5-1 Q0 MARCO_20_232780208-3 73 -0.394818 hybrid +142_5-1 Q0 MARCO_35_131726592-3 74 -0.396283 hybrid +142_5-1 Q0 MARCO_30_815199115-1 75 -0.396823 hybrid +142_5-1 Q0 MARCO_10_790344909-3 76 -0.405061 hybrid +142_5-1 Q0 MARCO_10_704036313-7 77 -0.408047 hybrid +142_5-1 Q0 KILT_27838123-1 78 -0.408284 hybrid +142_5-1 Q0 MARCO_11_1448564973-9 79 -0.408398 hybrid +142_5-1 Q0 MARCO_09_436448609-7 80 -0.410989 hybrid +142_5-1 Q0 MARCO_22_1186888239-2 81 -0.411125 hybrid +142_5-1 Q0 MARCO_50_1337561730-13 82 -0.413654 hybrid +142_5-1 Q0 MARCO_31_1649764182-12 83 -0.420877 hybrid +142_5-1 Q0 MARCO_39_620476129-12 84 -0.422267 hybrid +142_5-1 Q0 MARCO_57_1430039617-19 85 -0.422718 hybrid +142_5-1 Q0 MARCO_12_275444885-2 86 -0.425652 hybrid +142_5-1 Q0 MARCO_08_127493798-69 87 -0.426908 hybrid +142_5-1 Q0 MARCO_52_362567787-10 88 -0.429107 hybrid +142_5-1 Q0 MARCO_49_954539890-3 89 -0.430291 hybrid +142_5-1 Q0 MARCO_07_1010043246-2 90 -0.433136 hybrid +142_5-1 Q0 MARCO_08_163077814-6 91 -0.433895 hybrid +142_5-1 Q0 MARCO_32_596914657-2 92 -0.435259 hybrid +142_5-1 Q0 MARCO_10_719894755-4 93 -0.435969 hybrid +142_5-1 Q0 MARCO_21_460607436-3 94 -0.437255 hybrid +142_5-1 Q0 MARCO_23_489532061-7 95 -0.437319 hybrid +142_5-1 Q0 MARCO_01_1084920994-1 96 -0.440116 hybrid +142_5-1 Q0 MARCO_32_1077049339-4 97 -0.442748 hybrid +142_5-1 Q0 MARCO_12_459417305-2 98 -0.443918 hybrid +142_5-1 Q0 MARCO_10_653917159-3 99 -0.444287 hybrid +142_5-1 Q0 MARCO_30_2013034285-3 100 -0.446768 hybrid +142_5-3 Q0 MARCO_36_1003753285-1 1 0.494927 hybrid +142_5-3 Q0 MARCO_12_278047340-3 2 0.351295 hybrid +142_5-3 Q0 MARCO_07_259262889-3 3 0.333862 hybrid +142_5-3 Q0 MARCO_39_670955540-32 4 0.272119 hybrid +142_5-3 Q0 MARCO_10_790344909-2 5 0.259867 hybrid +142_5-3 Q0 MARCO_50_1936673617-24 6 0.207349 hybrid +142_5-3 Q0 MARCO_10_790344909-1 7 0.171008 hybrid +142_5-3 Q0 MARCO_30_2013034285-2 8 0.043957 hybrid +142_5-3 Q0 MARCO_12_278047340-2 9 0.025860 hybrid +142_5-3 Q0 MARCO_43_40663531-2 10 -0.020613 hybrid +142_5-3 Q0 MARCO_39_670955540-31 11 -0.031348 hybrid +142_5-3 Q0 MARCO_16_2614557965-35 12 -0.049790 hybrid +142_5-3 Q0 MARCO_22_1186906798-4 13 -0.064609 hybrid +142_5-3 Q0 MARCO_20_232780208-4 14 -0.080813 hybrid +142_5-3 Q0 MARCO_30_2013034285-3 15 -0.110653 hybrid +142_5-3 Q0 MARCO_45_256347161-1 16 -0.130353 hybrid +142_5-3 Q0 MARCO_50_1516888163-5 17 -0.153391 hybrid +142_5-3 Q0 KILT_22527511-11 18 -0.158220 hybrid +142_5-3 Q0 MARCO_28_986308993-4 19 -0.165620 hybrid +142_5-3 Q0 MARCO_20_232780208-3 20 -0.168557 hybrid +142_5-3 Q0 MARCO_36_1005507397-5 21 -0.174897 hybrid +142_5-3 Q0 KILT_30224834-1 22 -0.182173 hybrid +142_5-3 Q0 MARCO_55_96389579-3 23 -0.185778 hybrid +142_5-3 Q0 KILT_44501940-2 24 -0.189022 hybrid +142_5-3 Q0 MARCO_02_485820717-2 25 -0.190081 hybrid +142_5-3 Q0 MARCO_20_232780208-7 26 -0.192607 hybrid +142_5-3 Q0 MARCO_30_2013002157-1 27 -0.212225 hybrid +142_5-3 Q0 MARCO_20_232780208-1 28 -0.212353 hybrid +142_5-3 Q0 MARCO_39_620476129-12 29 -0.213268 hybrid +142_5-3 Q0 KILT_30224834-2 30 -0.213675 hybrid +142_5-3 Q0 MARCO_12_275444885-3 31 -0.216588 hybrid +142_5-3 Q0 MARCO_10_790344909-3 32 -0.221313 hybrid +142_5-3 Q0 MARCO_55_74023026-3 33 -0.224578 hybrid +142_5-3 Q0 MARCO_19_2045799633-5 34 -0.225235 hybrid +142_5-3 Q0 MARCO_35_131726592-2 35 -0.231807 hybrid +142_5-3 Q0 MARCO_24_509111941-7 36 -0.232118 hybrid +142_5-3 Q0 MARCO_05_1742002206-2 37 -0.235786 hybrid +142_5-3 Q0 MARCO_43_40663531-1 38 -0.237659 hybrid +142_5-3 Q0 MARCO_03_448461486-5 39 -0.245633 hybrid +142_5-3 Q0 MARCO_50_1936673617-17 40 -0.245998 hybrid +142_5-3 Q0 MARCO_43_40663531-3 41 -0.248332 hybrid +142_5-3 Q0 MARCO_03_1751773927-1 42 -0.250000 hybrid +142_5-3 Q0 MARCO_06_477944537-1 43 -0.252058 hybrid +142_5-3 Q0 MARCO_05_1742002206-3 44 -0.254738 hybrid +142_5-3 Q0 MARCO_04_115311916-3 45 -0.257666 hybrid +142_5-3 Q0 MARCO_12_275444885-1 46 -0.257986 hybrid +142_5-3 Q0 MARCO_39_620476129-13 47 -0.258195 hybrid +142_5-3 Q0 MARCO_17_4124999099-16 48 -0.262895 hybrid +142_5-3 Q0 MARCO_55_100575562-3 49 -0.271004 hybrid +142_5-3 Q0 MARCO_30_2013002157-2 50 -0.271263 hybrid +142_5-3 Q0 MARCO_17_4124999099-13 51 -0.279390 hybrid +142_5-3 Q0 MARCO_12_275444885-4 52 -0.280217 hybrid +142_5-3 Q0 MARCO_12_275444885-2 53 -0.280412 hybrid +142_5-3 Q0 MARCO_20_232780208-10 54 -0.281662 hybrid +142_5-3 Q0 MARCO_19_2045799633-26 55 -0.283687 hybrid +142_5-3 Q0 MARCO_55_74023026-2 56 -0.284846 hybrid +142_5-3 Q0 MARCO_05_1742002206-10 57 -0.285647 hybrid +142_5-3 Q0 MARCO_24_509111941-1 58 -0.287078 hybrid +142_5-3 Q0 MARCO_05_848975837-1 59 -0.289338 hybrid +142_5-3 Q0 MARCO_51_694777636-52 60 -0.291793 hybrid +142_5-3 Q0 MARCO_38_609022441-2 61 -0.293544 hybrid +142_5-3 Q0 MARCO_03_446463952-5 62 -0.293980 hybrid +142_5-3 Q0 KILT_170019-6 63 -0.295129 hybrid +142_5-3 Q0 MARCO_28_984794031-10 64 -0.300392 hybrid +142_5-3 Q0 KILT_509059-2 65 -0.300411 hybrid +142_5-3 Q0 MARCO_03_447715492-6 66 -0.302764 hybrid +142_5-3 Q0 MARCO_36_1003753285-4 67 -0.307496 hybrid +142_5-3 Q0 MARCO_17_3696994539-1 68 -0.308514 hybrid +142_5-3 Q0 MARCO_55_676979672-1 69 -0.320686 hybrid +142_5-3 Q0 MARCO_55_97351136-4 70 -0.326018 hybrid +142_5-3 Q0 MARCO_16_3306273242-13 71 -0.327141 hybrid +142_5-3 Q0 KILT_340197-51 72 -0.334118 hybrid +142_5-3 Q0 MARCO_39_670955540-29 73 -0.334598 hybrid +142_5-3 Q0 KILT_859068-1 74 -0.336785 hybrid +142_5-3 Q0 MARCO_55_100591457-3 75 -0.336858 hybrid +142_5-3 Q0 MARCO_19_965535394-23 76 -0.337207 hybrid +142_5-3 Q0 MARCO_36_1003753285-5 77 -0.346353 hybrid +142_5-3 Q0 KILT_509059-4 78 -0.348850 hybrid +142_5-3 Q0 MARCO_17_3696994539-2 79 -0.355137 hybrid +142_5-3 Q0 MARCO_55_101950932-1 80 -0.355266 hybrid +142_5-3 Q0 MARCO_30_1025312089-1 81 -0.356207 hybrid +142_5-3 Q0 MARCO_07_259262889-1 82 -0.358609 hybrid +142_5-3 Q0 MARCO_28_986413979-5 83 -0.359504 hybrid +142_5-3 Q0 KILT_2948436-4 84 -0.361303 hybrid +142_5-3 Q0 MARCO_20_232780208-11 85 -0.365292 hybrid +142_5-3 Q0 MARCO_17_4124999099-15 86 -0.366480 hybrid +142_5-3 Q0 MARCO_30_1005023705-3 87 -0.369428 hybrid +142_5-3 Q0 MARCO_17_4124999099-17 88 -0.369956 hybrid +142_5-3 Q0 MARCO_17_4132936794-24 89 -0.370078 hybrid +142_5-3 Q0 KILT_12389744-2 90 -0.372991 hybrid +142_5-3 Q0 MARCO_39_1029613910-1 91 -0.377095 hybrid +142_5-3 Q0 MARCO_50_1936673617-23 92 -0.377319 hybrid +142_5-3 Q0 MARCO_17_4124999099-14 93 -0.377342 hybrid +142_5-3 Q0 MARCO_30_1025358979-3 94 -0.377992 hybrid +142_5-3 Q0 MARCO_20_99785551-1 95 -0.379101 hybrid +142_5-3 Q0 MARCO_30_1025312089-6 96 -0.379483 hybrid +142_5-3 Q0 MARCO_03_447715492-2 97 -0.381478 hybrid +142_5-3 Q0 MARCO_13_279027-2 98 -0.381607 hybrid +142_5-3 Q0 MARCO_07_623527565-2 99 -0.381683 hybrid +142_5-3 Q0 MARCO_03_446473238-4 100 -0.381724 hybrid +142_5-5 Q0 MARCO_58_1508113613-1 1 0.369076 hybrid +142_5-5 Q0 KILT_28820502-5 2 0.249998 hybrid +142_5-5 Q0 KILT_28820502-3 3 0.228303 hybrid +142_5-5 Q0 MARCO_47_1601362260-3 4 0.201146 hybrid +142_5-5 Q0 MARCO_08_1480326385-15 5 0.183106 hybrid +142_5-5 Q0 KILT_28820502-2 6 0.168333 hybrid +142_5-5 Q0 MARCO_47_1602505698-5 7 0.125489 hybrid +142_5-5 Q0 KILT_28820502-1 8 0.104246 hybrid +142_5-5 Q0 MARCO_47_1602505698-3 9 0.073701 hybrid +142_5-5 Q0 KILT_28820502-4 10 0.070269 hybrid +142_5-5 Q0 MARCO_47_1601007145-1 11 0.065273 hybrid +142_5-5 Q0 MARCO_50_1458626850-15 12 0.062328 hybrid +142_5-5 Q0 KILT_2402376-36 13 0.041500 hybrid +142_5-5 Q0 KILT_2810466-5 14 0.038199 hybrid +142_5-5 Q0 KILT_28820502-6 15 0.026345 hybrid +142_5-5 Q0 KILT_18706892-1 16 0.021051 hybrid +142_5-5 Q0 MARCO_47_1602505698-4 17 0.015754 hybrid +142_5-5 Q0 MARCO_50_1441723234-18 18 0.009287 hybrid +142_5-5 Q0 KILT_44030741-1 19 0.008565 hybrid +142_5-5 Q0 KILT_10210353-1 20 0.008431 hybrid +142_5-5 Q0 KILT_637348-4 21 0.005334 hybrid +142_5-5 Q0 KILT_43492755-1 22 0.005209 hybrid +142_5-5 Q0 MARCO_18_3127967367-2 23 0.002389 hybrid +142_5-5 Q0 KILT_2810466-7 24 -0.000270 hybrid +142_5-5 Q0 MARCO_08_1480326385-18 25 -0.006032 hybrid +142_5-5 Q0 KILT_8076950-6 26 -0.018068 hybrid +142_5-5 Q0 MARCO_54_676656745-1 27 -0.018488 hybrid +142_5-5 Q0 KILT_28820502-7 28 -0.041142 hybrid +142_5-5 Q0 KILT_28820502-8 29 -0.047948 hybrid +142_5-5 Q0 MARCO_17_674008977-1 30 -0.049530 hybrid +142_5-5 Q0 MARCO_18_2378994128-2 31 -0.066501 hybrid +142_5-5 Q0 KILT_8076950-4 32 -0.072709 hybrid +142_5-5 Q0 MARCO_47_1602505698-2 33 -0.075044 hybrid +142_5-5 Q0 KILT_2810466-9 34 -0.079672 hybrid +142_5-5 Q0 MARCO_58_1506642595-1 35 -0.087641 hybrid +142_5-5 Q0 KILT_28820502-10 36 -0.100932 hybrid +142_5-5 Q0 MARCO_18_3132971540-8 37 -0.106193 hybrid +142_5-5 Q0 KILT_42233667-1 38 -0.109375 hybrid +142_5-5 Q0 KILT_28820502-9 39 -0.111958 hybrid +142_5-5 Q0 MARCO_18_469824557-17 40 -0.121627 hybrid +142_5-5 Q0 MARCO_44_1695065420-2 41 -0.124721 hybrid +142_5-5 Q0 KILT_24910579-1 42 -0.129209 hybrid +142_5-5 Q0 KILT_9384580-1 43 -0.132014 hybrid +142_5-5 Q0 MARCO_47_1601007145-2 44 -0.139745 hybrid +142_5-5 Q0 MARCO_17_2510087016-6 45 -0.141470 hybrid +142_5-5 Q0 MARCO_50_1458626850-10 46 -0.155569 hybrid +142_5-5 Q0 KILT_2810466-10 47 -0.156524 hybrid +142_5-5 Q0 KILT_44030741-2 48 -0.160266 hybrid +142_5-5 Q0 MARCO_18_3127967367-1 49 -0.164553 hybrid +142_5-5 Q0 MARCO_17_2510087016-9 50 -0.164836 hybrid +142_5-5 Q0 KILT_5302486-4 51 -0.166935 hybrid +142_5-5 Q0 KILT_8076950-1 52 -0.167784 hybrid +142_5-5 Q0 KILT_36883279-1 53 -0.171176 hybrid +142_5-5 Q0 MARCO_50_1441723234-19 54 -0.173236 hybrid +142_5-5 Q0 MARCO_50_1441723234-17 55 -0.174203 hybrid +142_5-5 Q0 MARCO_18_2378850780-3 56 -0.176668 hybrid +142_5-5 Q0 MARCO_50_1441723234-16 57 -0.177501 hybrid +142_5-5 Q0 MARCO_18_3127967367-8 58 -0.179929 hybrid +142_5-5 Q0 MARCO_19_2045799633-2 59 -0.180180 hybrid +142_5-5 Q0 MARCO_17_1668659449-2 60 -0.184642 hybrid +142_5-5 Q0 MARCO_17_2510087016-7 61 -0.186090 hybrid +142_5-5 Q0 KILT_44501940-2 62 -0.191567 hybrid +142_5-5 Q0 MARCO_47_1601362260-4 63 -0.192212 hybrid +142_5-5 Q0 MARCO_43_714092140-5 64 -0.197131 hybrid +142_5-5 Q0 MARCO_17_2510087016-1 65 -0.202477 hybrid +142_5-5 Q0 MARCO_17_2510087016-17 66 -0.208328 hybrid +142_5-5 Q0 MARCO_10_448253860-6 67 -0.213056 hybrid +142_5-5 Q0 KILT_1833378-6 68 -0.214842 hybrid +142_5-5 Q0 MARCO_16_3046749093-31 69 -0.218532 hybrid +142_5-5 Q0 KILT_19931201-1 70 -0.221711 hybrid +142_5-5 Q0 MARCO_19_2045799633-5 71 -0.222405 hybrid +142_5-5 Q0 KILT_2810466-12 72 -0.222835 hybrid +142_5-5 Q0 KILT_2810466-1 73 -0.225061 hybrid +142_5-5 Q0 KILT_2810466-11 74 -0.226485 hybrid +142_5-5 Q0 MARCO_18_3127967367-4 75 -0.229944 hybrid +142_5-5 Q0 MARCO_58_1505463998-1 76 -0.230295 hybrid +142_5-5 Q0 KILT_5302486-1 77 -0.231161 hybrid +142_5-5 Q0 MARCO_18_3127967367-7 78 -0.234429 hybrid +142_5-5 Q0 MARCO_18_3127967367-9 79 -0.234429 hybrid +142_5-5 Q0 MARCO_47_1604568742-14 80 -0.236114 hybrid +142_5-5 Q0 MARCO_10_448253860-1 81 -0.244280 hybrid +142_5-5 Q0 MARCO_31_890709863-1 82 -0.250002 hybrid +142_5-5 Q0 KILT_28820502-11 83 -0.252513 hybrid +142_5-5 Q0 MARCO_08_448448881-22 84 -0.253730 hybrid +142_5-5 Q0 MARCO_17_674008977-2 85 -0.256952 hybrid +142_5-5 Q0 MARCO_18_3127967367-5 86 -0.261406 hybrid +142_5-5 Q0 MARCO_08_1480326385-19 87 -0.273570 hybrid +142_5-5 Q0 MARCO_17_674008977-20 88 -0.274057 hybrid +142_5-5 Q0 KILT_24910579-2 89 -0.275009 hybrid +142_5-5 Q0 MARCO_18_3132971540-4 90 -0.283847 hybrid +142_5-5 Q0 KILT_39748847-3 91 -0.286044 hybrid +142_5-5 Q0 KILT_2810466-6 92 -0.286783 hybrid +142_5-5 Q0 KILT_39748847-1 93 -0.287577 hybrid +142_5-5 Q0 MARCO_50_1458626850-14 94 -0.290093 hybrid +142_5-5 Q0 KILT_1437724-3 95 -0.290452 hybrid +142_5-5 Q0 MARCO_11_1496366192-1 96 -0.293501 hybrid +142_5-5 Q0 MARCO_22_1186877744-7 97 -0.296120 hybrid +142_5-5 Q0 MARCO_08_1091419182-25 98 -0.298381 hybrid +142_5-5 Q0 MARCO_19_2045799633-26 99 -0.307855 hybrid +142_5-5 Q0 MARCO_16_3046749093-34 100 -0.318202 hybrid +142_5-7 Q0 MARCO_30_2013034285-2 1 0.249998 hybrid +142_5-7 Q0 MARCO_58_1506642595-1 2 0.202374 hybrid +142_5-7 Q0 MARCO_58_1508113613-1 3 0.200896 hybrid +142_5-7 Q0 MARCO_19_2045799633-26 4 0.103637 hybrid +142_5-7 Q0 MARCO_54_676656745-1 5 0.098676 hybrid +142_5-7 Q0 MARCO_50_1936673617-24 6 0.075741 hybrid +142_5-7 Q0 KILT_26507946-2 7 0.074989 hybrid +142_5-7 Q0 MARCO_47_1602505698-3 8 0.067115 hybrid +142_5-7 Q0 MARCO_07_259262889-3 9 0.059754 hybrid +142_5-7 Q0 MARCO_30_2013034285-3 10 0.055023 hybrid +142_5-7 Q0 MARCO_10_790353427-4 11 0.048638 hybrid +142_5-7 Q0 MARCO_43_742228802-80 12 0.044165 hybrid +142_5-7 Q0 MARCO_06_1149196799-179 13 0.028925 hybrid +142_5-7 Q0 MARCO_58_1509104985-3 14 0.022670 hybrid +142_5-7 Q0 MARCO_58_1506642595-3 15 0.019751 hybrid +142_5-7 Q0 MARCO_37_173589964-2 16 0.019114 hybrid +142_5-7 Q0 KILT_23117867-1 17 0.009641 hybrid +142_5-7 Q0 MARCO_58_1508113613-2 18 0.006219 hybrid +142_5-7 Q0 MARCO_10_790344909-3 19 0.003804 hybrid +142_5-7 Q0 MARCO_54_676656745-4 20 0.001229 hybrid +142_5-7 Q0 MARCO_54_676656745-2 21 0.001229 hybrid +142_5-7 Q0 KILT_34879285-1 22 -0.012781 hybrid +142_5-7 Q0 MARCO_07_259262889-1 23 -0.028182 hybrid +142_5-7 Q0 MARCO_58_1509591433-5 24 -0.035103 hybrid +142_5-7 Q0 MARCO_19_2045799633-5 25 -0.047400 hybrid +142_5-7 Q0 MARCO_58_1509104985-4 26 -0.056216 hybrid +142_5-7 Q0 MARCO_28_984794031-10 27 -0.056440 hybrid +142_5-7 Q0 KILT_35894206-10 28 -0.057491 hybrid +142_5-7 Q0 MARCO_12_278047340-3 29 -0.062118 hybrid +142_5-7 Q0 MARCO_47_1601362260-6 30 -0.064115 hybrid +142_5-7 Q0 MARCO_31_899564358-3 31 -0.068806 hybrid +142_5-7 Q0 MARCO_07_259262889-2 32 -0.083683 hybrid +142_5-7 Q0 MARCO_58_1508113613-3 33 -0.088822 hybrid +142_5-7 Q0 KILT_2810466-10 34 -0.090571 hybrid +142_5-7 Q0 MARCO_06_1240614560-37 35 -0.093335 hybrid +142_5-7 Q0 KILT_42408767-1 36 -0.097250 hybrid +142_5-7 Q0 MARCO_19_2045799633-17 37 -0.097647 hybrid +142_5-7 Q0 MARCO_22_1186915282-2 38 -0.102454 hybrid +142_5-7 Q0 KILT_48730417-1 39 -0.103356 hybrid +142_5-7 Q0 MARCO_05_848975837-1 40 -0.109173 hybrid +142_5-7 Q0 MARCO_22_1186906798-5 41 -0.110408 hybrid +142_5-7 Q0 KILT_6283124-5 42 -0.110836 hybrid +142_5-7 Q0 MARCO_39_670955540-32 43 -0.117017 hybrid +142_5-7 Q0 MARCO_32_884765978-2 44 -0.120702 hybrid +142_5-7 Q0 MARCO_47_1601362260-9 45 -0.128597 hybrid +142_5-7 Q0 MARCO_30_2012938093-5 46 -0.148269 hybrid +142_5-7 Q0 MARCO_19_2045799633-19 47 -0.148727 hybrid +142_5-7 Q0 MARCO_22_1186906798-1 48 -0.152139 hybrid +142_5-7 Q0 MARCO_22_1186906798-4 49 -0.155317 hybrid +142_5-7 Q0 MARCO_22_1186867646-3 50 -0.156328 hybrid +142_5-7 Q0 MARCO_47_1601351898-8 51 -0.156547 hybrid +142_5-7 Q0 MARCO_43_714092140-1 52 -0.161672 hybrid +142_5-7 Q0 KILT_592808-3 53 -0.164102 hybrid +142_5-7 Q0 MARCO_22_1186915282-3 54 -0.164242 hybrid +142_5-7 Q0 MARCO_47_1601362260-10 55 -0.165840 hybrid +142_5-7 Q0 MARCO_45_256347161-1 56 -0.167489 hybrid +142_5-7 Q0 MARCO_58_1505463998-3 57 -0.167793 hybrid +142_5-7 Q0 MARCO_16_3046944575-20 58 -0.169964 hybrid +142_5-7 Q0 MARCO_58_1505463998-1 59 -0.171042 hybrid +142_5-7 Q0 MARCO_17_2524961420-3 60 -0.173416 hybrid +142_5-7 Q0 MARCO_51_694777636-27 61 -0.173904 hybrid +142_5-7 Q0 KILT_14672486-3 62 -0.178645 hybrid +142_5-7 Q0 MARCO_50_1441723234-18 63 -0.180468 hybrid +142_5-7 Q0 MARCO_35_128533405-3 64 -0.181439 hybrid +142_5-7 Q0 MARCO_07_259262889-4 65 -0.183944 hybrid +142_5-7 Q0 MARCO_19_2045799633-4 66 -0.184742 hybrid +142_5-7 Q0 MARCO_19_2045799633-18 67 -0.186204 hybrid +142_5-7 Q0 KILT_1899324-1 68 -0.186813 hybrid +142_5-7 Q0 MARCO_12_275444885-2 69 -0.189059 hybrid +142_5-7 Q0 MARCO_22_1186877744-7 70 -0.194851 hybrid +142_5-7 Q0 MARCO_36_1003753285-1 71 -0.199040 hybrid +142_5-7 Q0 KILT_30224834-2 72 -0.199050 hybrid +142_5-7 Q0 MARCO_47_1602505698-4 73 -0.201515 hybrid +142_5-7 Q0 KILT_939599-6 74 -0.208622 hybrid +142_5-7 Q0 MARCO_41_1117115865-63 75 -0.209504 hybrid +142_5-7 Q0 MARCO_05_848957007-4 76 -0.210146 hybrid +142_5-7 Q0 MARCO_19_2045799633-2 77 -0.212719 hybrid +142_5-7 Q0 MARCO_43_714092140-5 78 -0.213458 hybrid +142_5-7 Q0 KILT_939599-5 79 -0.213563 hybrid +142_5-7 Q0 KILT_2527950-1 80 -0.216168 hybrid +142_5-7 Q0 MARCO_05_848957007-1 81 -0.221258 hybrid +142_5-7 Q0 KILT_392708-9 82 -0.226627 hybrid +142_5-7 Q0 MARCO_22_1186906798-3 83 -0.227424 hybrid +142_5-7 Q0 KILT_28820502-2 84 -0.227907 hybrid +142_5-7 Q0 MARCO_10_790353427-1 85 -0.228823 hybrid +142_5-7 Q0 MARCO_37_173589964-3 86 -0.228992 hybrid +142_5-7 Q0 MARCO_10_790344909-1 87 -0.231796 hybrid +142_5-7 Q0 MARCO_55_1284276756-5 88 -0.231941 hybrid +142_5-7 Q0 KILT_35634940-1 89 -0.233714 hybrid +142_5-7 Q0 MARCO_16_3046749093-49 90 -0.235761 hybrid +142_5-7 Q0 KILT_2810466-12 91 -0.235995 hybrid +142_5-7 Q0 MARCO_08_1480326385-12 92 -0.236110 hybrid +142_5-7 Q0 MARCO_47_1604104921-3 93 -0.237992 hybrid +142_5-7 Q0 KILT_3680589-1 94 -0.243710 hybrid +142_5-7 Q0 MARCO_35_128151915-16 95 -0.249233 hybrid +142_5-7 Q0 MARCO_04_113777060-3 96 -0.250002 hybrid +142_5-7 Q0 MARCO_29_789818223-2 97 -0.259533 hybrid +142_5-7 Q0 KILT_392708-1 98 -0.261944 hybrid +142_5-7 Q0 MARCO_22_1186915282-1 99 -0.263123 hybrid +142_5-7 Q0 MARCO_47_1601351898-7 100 -0.265405 hybrid +142_5-9 Q0 MARCO_22_1186906798-4 1 0.474730 hybrid +142_5-9 Q0 MARCO_18_1299865625-4 2 0.198516 hybrid +142_5-9 Q0 MARCO_53_812385688-10 3 0.120435 hybrid +142_5-9 Q0 MARCO_30_742746465-5 4 0.102576 hybrid +142_5-9 Q0 MARCO_39_670955540-32 5 0.015548 hybrid +142_5-9 Q0 MARCO_39_670955540-31 6 -0.001827 hybrid +142_5-9 Q0 MARCO_29_1418682367-4 7 -0.064899 hybrid +142_5-9 Q0 KILT_237715-9 8 -0.070058 hybrid +142_5-9 Q0 MARCO_47_1601362260-6 9 -0.092222 hybrid +142_5-9 Q0 MARCO_20_479647412-5 10 -0.108912 hybrid +142_5-9 Q0 MARCO_47_1601362260-5 11 -0.123625 hybrid +142_5-9 Q0 MARCO_03_444110329-2 12 -0.127274 hybrid +142_5-9 Q0 MARCO_17_693365828-1 13 -0.131145 hybrid +142_5-9 Q0 MARCO_30_2013002157-2 14 -0.141692 hybrid +142_5-9 Q0 MARCO_08_454689269-3 15 -0.146478 hybrid +142_5-9 Q0 MARCO_51_1897548310-17 16 -0.148828 hybrid +142_5-9 Q0 MARCO_36_1003753285-4 17 -0.169636 hybrid +142_5-9 Q0 MARCO_32_1020747089-5 18 -0.171760 hybrid +142_5-9 Q0 MARCO_48_1186845028-4 19 -0.213940 hybrid +142_5-9 Q0 MARCO_57_620123090-4 20 -0.231475 hybrid +142_5-9 Q0 MARCO_10_444484315-3 21 -0.238171 hybrid +142_5-9 Q0 MARCO_55_1708317826-6 22 -0.243927 hybrid +142_5-9 Q0 MARCO_19_2045799633-26 23 -0.247759 hybrid +142_5-9 Q0 MARCO_22_1186906798-3 24 -0.249350 hybrid +142_5-9 Q0 MARCO_55_74023026-2 25 -0.249672 hybrid +142_5-9 Q0 MARCO_08_632127924-1 26 -0.250000 hybrid +142_5-9 Q0 MARCO_24_1138157550-2 27 -0.252891 hybrid +142_5-9 Q0 MARCO_33_868347963-2 28 -0.252909 hybrid +142_5-9 Q0 MARCO_47_1601010927-2 29 -0.255322 hybrid +142_5-9 Q0 KILT_46564261-23 30 -0.257949 hybrid +142_5-9 Q0 MARCO_30_2013034285-2 31 -0.273456 hybrid +142_5-9 Q0 MARCO_16_442874124-2 32 -0.275615 hybrid +142_5-9 Q0 MARCO_34_1752340892-3 33 -0.276528 hybrid +142_5-9 Q0 MARCO_10_1419034273-3 34 -0.277473 hybrid +142_5-9 Q0 MARCO_39_620476129-12 35 -0.283904 hybrid +142_5-9 Q0 MARCO_17_2510087016-8 36 -0.286561 hybrid +142_5-9 Q0 MARCO_00_1155394036-3 37 -0.286652 hybrid +142_5-9 Q0 MARCO_41_2134956530-2 38 -0.292858 hybrid +142_5-9 Q0 MARCO_22_1186867646-1 39 -0.292904 hybrid +142_5-9 Q0 MARCO_36_1003753285-1 40 -0.292907 hybrid +142_5-9 Q0 MARCO_20_232780208-7 41 -0.294566 hybrid +142_5-9 Q0 KILT_4967803-1 42 -0.304960 hybrid +142_5-9 Q0 MARCO_12_275444885-2 43 -0.310516 hybrid +142_5-9 Q0 MARCO_10_790344909-2 44 -0.311929 hybrid +142_5-9 Q0 MARCO_22_1186915282-2 45 -0.312558 hybrid +142_5-9 Q0 MARCO_50_1936673617-24 46 -0.316047 hybrid +142_5-9 Q0 MARCO_43_714092140-1 47 -0.317938 hybrid +142_5-9 Q0 MARCO_32_1026784471-1 48 -0.318262 hybrid +142_5-9 Q0 MARCO_16_2614238123-4 49 -0.319524 hybrid +142_5-9 Q0 MARCO_16_442874124-6 50 -0.320581 hybrid +142_5-9 Q0 MARCO_19_2045799633-17 51 -0.324976 hybrid +142_5-9 Q0 MARCO_16_2206283069-2 52 -0.331407 hybrid +142_5-9 Q0 MARCO_55_74023026-3 53 -0.333709 hybrid +142_5-9 Q0 MARCO_17_2510087016-4 54 -0.339455 hybrid +142_5-9 Q0 MARCO_37_173589964-3 55 -0.340292 hybrid +142_5-9 Q0 MARCO_35_131726592-1 56 -0.343775 hybrid +142_5-9 Q0 MARCO_30_2013034285-3 57 -0.344844 hybrid +142_5-9 Q0 MARCO_51_1895312251-10 58 -0.349042 hybrid +142_5-9 Q0 KILT_933515-37 59 -0.356368 hybrid +142_5-9 Q0 MARCO_50_594653562-1 60 -0.357783 hybrid +142_5-9 Q0 MARCO_16_2614238123-3 61 -0.363693 hybrid +142_5-9 Q0 MARCO_47_134954814-3 62 -0.364375 hybrid +142_5-9 Q0 MARCO_24_1136457662-5 63 -0.368342 hybrid +142_5-9 Q0 MARCO_54_676656745-1 64 -0.369691 hybrid +142_5-9 Q0 MARCO_14_930923856-16 65 -0.371949 hybrid +142_5-9 Q0 MARCO_08_632127924-3 66 -0.372227 hybrid +142_5-9 Q0 MARCO_16_2614238123-33 67 -0.372491 hybrid +142_5-9 Q0 MARCO_36_1003753285-5 68 -0.375690 hybrid +142_5-9 Q0 KILT_12389744-2 69 -0.376385 hybrid +142_5-9 Q0 MARCO_17_2968257209-4 70 -0.376937 hybrid +142_5-9 Q0 MARCO_20_232780208-3 71 -0.377525 hybrid +142_5-9 Q0 MARCO_18_1299865625-3 72 -0.381228 hybrid +142_5-9 Q0 MARCO_39_620476129-13 73 -0.382036 hybrid +142_5-9 Q0 MARCO_22_1583085106-3 74 -0.383079 hybrid +142_5-9 Q0 MARCO_43_714092140-5 75 -0.383884 hybrid +142_5-9 Q0 MARCO_37_173589964-1 76 -0.386174 hybrid +142_5-9 Q0 KILT_599809-1 77 -0.388094 hybrid +142_5-9 Q0 MARCO_12_275444885-4 78 -0.391176 hybrid +142_5-9 Q0 MARCO_18_1302442111-38 79 -0.391215 hybrid +142_5-9 Q0 MARCO_36_1005507397-5 80 -0.396349 hybrid +142_5-9 Q0 MARCO_39_672901826-5 81 -0.400435 hybrid +142_5-9 Q0 MARCO_32_1766097055-8 82 -0.403013 hybrid +142_5-9 Q0 MARCO_12_275444885-3 83 -0.405200 hybrid +142_5-9 Q0 MARCO_06_484716332-1 84 -0.406564 hybrid +142_5-9 Q0 KILT_2527950-7 85 -0.407655 hybrid +142_5-9 Q0 MARCO_57_1266592091-1 86 -0.408791 hybrid +142_5-9 Q0 MARCO_45_997362083-1 87 -0.409642 hybrid +142_5-9 Q0 KILT_7168919-2 88 -0.409747 hybrid +142_5-9 Q0 MARCO_37_173589964-6 89 -0.414963 hybrid +142_5-9 Q0 MARCO_03_583636368-68 90 -0.415294 hybrid +142_5-9 Q0 MARCO_35_131726592-2 91 -0.415810 hybrid +142_5-9 Q0 MARCO_00_944211795-17 92 -0.416385 hybrid +142_5-9 Q0 MARCO_18_1672631797-2 93 -0.416896 hybrid +142_5-9 Q0 MARCO_06_477944537-1 94 -0.418175 hybrid +142_5-9 Q0 MARCO_22_1186888239-2 95 -0.419081 hybrid +142_5-9 Q0 MARCO_51_1897548310-20 96 -0.419363 hybrid +142_5-9 Q0 MARCO_47_1573841321-3 97 -0.419823 hybrid +142_5-9 Q0 MARCO_08_1480326385-13 98 -0.419961 hybrid +142_5-9 Q0 MARCO_19_2045799633-5 99 -0.421699 hybrid +142_5-9 Q0 KILT_30224834-2 100 -0.422692 hybrid +142_6-1 Q0 MARCO_30_2013034285-3 1 0.249998 hybrid +142_6-1 Q0 MARCO_28_329136270-3 2 0.186070 hybrid +142_6-1 Q0 MARCO_22_1189445202-15 3 0.139908 hybrid +142_6-1 Q0 MARCO_30_2013034285-2 4 0.000806 hybrid +142_6-1 Q0 MARCO_32_1026784471-5 5 -0.059585 hybrid +142_6-1 Q0 MARCO_26_817625721-23 6 -0.075016 hybrid +142_6-1 Q0 MARCO_09_1233575192-4 7 -0.108079 hybrid +142_6-1 Q0 MARCO_23_483994226-2 8 -0.109818 hybrid +142_6-1 Q0 MARCO_31_1644786467-10 9 -0.140171 hybrid +142_6-1 Q0 MARCO_18_3132830515-10 10 -0.142897 hybrid +142_6-1 Q0 MARCO_10_802917812-3 11 -0.148317 hybrid +142_6-1 Q0 MARCO_20_232780208-11 12 -0.149999 hybrid +142_6-1 Q0 MARCO_45_177344718-5 13 -0.152872 hybrid +142_6-1 Q0 MARCO_41_1816072373-2 14 -0.159870 hybrid +142_6-1 Q0 KILT_54534592-18 15 -0.167667 hybrid +142_6-1 Q0 MARCO_09_1233575192-5 16 -0.173514 hybrid +142_6-1 Q0 MARCO_28_984794031-12 17 -0.179273 hybrid +142_6-1 Q0 MARCO_28_984794031-10 18 -0.181132 hybrid +142_6-1 Q0 MARCO_12_278047340-3 19 -0.196462 hybrid +142_6-1 Q0 KILT_30224834-2 20 -0.211825 hybrid +142_6-1 Q0 MARCO_47_1285054282-2 21 -0.213572 hybrid +142_6-1 Q0 MARCO_30_130794419-6 22 -0.215326 hybrid +142_6-1 Q0 MARCO_30_130794419-5 23 -0.229338 hybrid +142_6-1 Q0 MARCO_24_1439151207-5 24 -0.232759 hybrid +142_6-1 Q0 MARCO_23_484857783-4 25 -0.236140 hybrid +142_6-1 Q0 MARCO_22_1186888239-2 26 -0.243262 hybrid +142_6-1 Q0 MARCO_55_1245662540-6 27 -0.250002 hybrid +142_6-1 Q0 MARCO_20_232780208-3 28 -0.251758 hybrid +142_6-1 Q0 KILT_2240648-7 29 -0.258149 hybrid +142_6-1 Q0 MARCO_25_1403614112-3 30 -0.260287 hybrid +142_6-1 Q0 KILT_32239668-1 31 -0.271781 hybrid +142_6-1 Q0 MARCO_36_1003753285-1 32 -0.273368 hybrid +142_6-1 Q0 MARCO_45_260984989-1 33 -0.274886 hybrid +142_6-1 Q0 MARCO_28_986108984-5 34 -0.275726 hybrid +142_6-1 Q0 MARCO_02_848265302-2 35 -0.276065 hybrid +142_6-1 Q0 MARCO_06_477944537-1 36 -0.282200 hybrid +142_6-1 Q0 MARCO_06_482075263-3 37 -0.293306 hybrid +142_6-1 Q0 MARCO_45_260982046-1 38 -0.294973 hybrid +142_6-1 Q0 MARCO_58_1734352472-2 39 -0.295860 hybrid +142_6-1 Q0 MARCO_05_1742002206-2 40 -0.302387 hybrid +142_6-1 Q0 MARCO_51_952348343-5 41 -0.321030 hybrid +142_6-1 Q0 MARCO_50_1516866816-9 42 -0.321218 hybrid +142_6-1 Q0 MARCO_39_670955540-32 43 -0.322913 hybrid +142_6-1 Q0 MARCO_35_561141423-1 44 -0.327533 hybrid +142_6-1 Q0 MARCO_29_1418815554-3 45 -0.329703 hybrid +142_6-1 Q0 MARCO_33_868655730-9 46 -0.331531 hybrid +142_6-1 Q0 MARCO_32_1498008047-12 47 -0.337420 hybrid +142_6-1 Q0 MARCO_30_1022384297-23 48 -0.338012 hybrid +142_6-1 Q0 MARCO_33_868655730-8 49 -0.339657 hybrid +142_6-1 Q0 MARCO_30_130794419-3 50 -0.340114 hybrid +142_6-1 Q0 MARCO_28_984794031-5 51 -0.341295 hybrid +142_6-1 Q0 MARCO_28_984794031-13 52 -0.342016 hybrid +142_6-1 Q0 MARCO_25_1403896768-2 53 -0.344826 hybrid +142_6-1 Q0 MARCO_29_1417537059-6 54 -0.347799 hybrid +142_6-1 Q0 MARCO_05_1742691684-1 55 -0.348203 hybrid +142_6-1 Q0 MARCO_09_1233575192-3 56 -0.350169 hybrid +142_6-1 Q0 MARCO_14_305732002-10 57 -0.352183 hybrid +142_6-1 Q0 MARCO_32_1026784471-1 58 -0.352871 hybrid +142_6-1 Q0 MARCO_47_1285257665-2 59 -0.356687 hybrid +142_6-1 Q0 MARCO_45_636493565-3 60 -0.356827 hybrid +142_6-1 Q0 MARCO_23_484044282-2 61 -0.360852 hybrid +142_6-1 Q0 MARCO_47_136133583-7 62 -0.362602 hybrid +142_6-1 Q0 MARCO_48_551761899-13 63 -0.363146 hybrid +142_6-1 Q0 MARCO_55_101930133-5 64 -0.364469 hybrid +142_6-1 Q0 MARCO_45_1439678929-3 65 -0.364565 hybrid +142_6-1 Q0 MARCO_45_1439678929-5 66 -0.364565 hybrid +142_6-1 Q0 MARCO_55_99117985-6 67 -0.364840 hybrid +142_6-1 Q0 MARCO_06_485134946-2 68 -0.367686 hybrid +142_6-1 Q0 MARCO_55_571877741-3 69 -0.369176 hybrid +142_6-1 Q0 MARCO_55_1245662540-1 70 -0.369372 hybrid +142_6-1 Q0 MARCO_25_1404294145-7 71 -0.369992 hybrid +142_6-1 Q0 KILT_509059-2 72 -0.370547 hybrid +142_6-1 Q0 MARCO_52_1472442561-1 73 -0.377482 hybrid +142_6-1 Q0 MARCO_20_1742671684-4 74 -0.377897 hybrid +142_6-1 Q0 MARCO_52_1472442561-9 75 -0.381949 hybrid +142_6-1 Q0 MARCO_22_1188438230-9 76 -0.382689 hybrid +142_6-1 Q0 MARCO_09_541843262-6 77 -0.383488 hybrid +142_6-1 Q0 MARCO_55_676979672-1 78 -0.383676 hybrid +142_6-1 Q0 MARCO_54_1567789358-13 79 -0.383756 hybrid +142_6-1 Q0 MARCO_55_247213724-16 80 -0.384657 hybrid +142_6-1 Q0 MARCO_10_793440444-3 81 -0.387585 hybrid +142_6-1 Q0 MARCO_25_1404207248-4 82 -0.390758 hybrid +142_6-1 Q0 MARCO_05_1742694134-6 83 -0.391149 hybrid +142_6-1 Q0 MARCO_28_986389852-10 84 -0.391197 hybrid +142_6-1 Q0 MARCO_28_986574953-4 85 -0.394670 hybrid +142_6-1 Q0 MARCO_47_136205606-4 86 -0.395638 hybrid +142_6-1 Q0 MARCO_25_1403896768-4 87 -0.395877 hybrid +142_6-1 Q0 MARCO_47_135722350-4 88 -0.396649 hybrid +142_6-1 Q0 MARCO_47_1285222579-7 89 -0.397760 hybrid +142_6-1 Q0 MARCO_47_1601362260-8 90 -0.400517 hybrid +142_6-1 Q0 MARCO_02_928857366-4 91 -0.400953 hybrid +142_6-1 Q0 MARCO_06_482071113-3 92 -0.401101 hybrid +142_6-1 Q0 MARCO_29_1015332812-6 93 -0.401716 hybrid +142_6-1 Q0 MARCO_25_297692704-10 94 -0.404199 hybrid +142_6-1 Q0 MARCO_48_551852706-14 95 -0.404518 hybrid +142_6-1 Q0 MARCO_51_694777636-52 96 -0.408918 hybrid +142_6-1 Q0 MARCO_00_886067813-10 97 -0.410705 hybrid +142_6-1 Q0 MARCO_47_136013783-1 98 -0.411899 hybrid +142_6-1 Q0 MARCO_09_436439819-2 99 -0.411975 hybrid +142_6-1 Q0 MARCO_30_1022384297-77 100 -0.413730 hybrid +142_6-3 Q0 MARCO_22_1189445202-15 1 0.282982 hybrid +142_6-3 Q0 MARCO_30_2013034285-3 2 0.249998 hybrid +142_6-3 Q0 MARCO_28_329136270-3 3 0.138785 hybrid +142_6-3 Q0 MARCO_41_1816072373-2 4 0.084765 hybrid +142_6-3 Q0 MARCO_18_3132830515-10 5 0.069394 hybrid +142_6-3 Q0 MARCO_30_2013034285-2 6 0.028015 hybrid +142_6-3 Q0 KILT_32239668-1 7 0.024611 hybrid +142_6-3 Q0 MARCO_32_1026784471-5 8 0.018600 hybrid +142_6-3 Q0 KILT_30224834-2 9 -0.008390 hybrid +142_6-3 Q0 MARCO_12_278047340-3 10 -0.010700 hybrid +142_6-3 Q0 MARCO_06_477944537-1 11 -0.017330 hybrid +142_6-3 Q0 MARCO_22_1186888239-2 12 -0.038122 hybrid +142_6-3 Q0 MARCO_10_802917812-3 13 -0.055517 hybrid +142_6-3 Q0 MARCO_26_817625721-23 14 -0.061312 hybrid +142_6-3 Q0 MARCO_36_1003753285-1 15 -0.080357 hybrid +142_6-3 Q0 MARCO_32_1026784471-1 16 -0.132859 hybrid +142_6-3 Q0 MARCO_50_1936673617-24 17 -0.134366 hybrid +142_6-3 Q0 MARCO_39_670955540-32 18 -0.138973 hybrid +142_6-3 Q0 MARCO_45_177344718-5 19 -0.162301 hybrid +142_6-3 Q0 MARCO_29_1418815554-3 20 -0.173441 hybrid +142_6-3 Q0 MARCO_28_984794031-10 21 -0.174689 hybrid +142_6-3 Q0 MARCO_20_232780208-11 22 -0.179115 hybrid +142_6-3 Q0 MARCO_28_984794031-5 23 -0.185321 hybrid +142_6-3 Q0 MARCO_20_232780208-3 24 -0.215592 hybrid +142_6-3 Q0 MARCO_45_1435686894-5 25 -0.216594 hybrid +142_6-3 Q0 MARCO_45_256347161-1 26 -0.221306 hybrid +142_6-3 Q0 MARCO_30_130794419-6 27 -0.221417 hybrid +142_6-3 Q0 MARCO_28_986422727-3 28 -0.243716 hybrid +142_6-3 Q0 MARCO_31_1644786467-10 29 -0.243878 hybrid +142_6-3 Q0 KILT_7717615-1 30 -0.248530 hybrid +142_6-3 Q0 MARCO_05_848975837-2 31 -0.248661 hybrid +142_6-3 Q0 MARCO_55_1245662540-6 32 -0.250002 hybrid +142_6-3 Q0 MARCO_23_484857783-4 33 -0.255572 hybrid +142_6-3 Q0 KILT_42498840-1 34 -0.260893 hybrid +142_6-3 Q0 MARCO_07_259262889-3 35 -0.276411 hybrid +142_6-3 Q0 KILT_466071-1 36 -0.285260 hybrid +142_6-3 Q0 MARCO_10_790353427-2 37 -0.286076 hybrid +142_6-3 Q0 MARCO_05_1742002206-2 38 -0.286726 hybrid +142_6-3 Q0 MARCO_30_1079720281-5 39 -0.296617 hybrid +142_6-3 Q0 MARCO_31_1651583997-8 40 -0.298135 hybrid +142_6-3 Q0 MARCO_30_1025312089-5 41 -0.300659 hybrid +142_6-3 Q0 KILT_1437724-12 42 -0.305466 hybrid +142_6-3 Q0 MARCO_50_1516888163-5 43 -0.309092 hybrid +142_6-3 Q0 MARCO_15_106982860-3 44 -0.310384 hybrid +142_6-3 Q0 MARCO_30_130794419-5 45 -0.315163 hybrid +142_6-3 Q0 MARCO_32_1489108436-19 46 -0.317425 hybrid +142_6-3 Q0 MARCO_47_1601362260-8 47 -0.320687 hybrid +142_6-3 Q0 MARCO_22_1186915282-3 48 -0.322343 hybrid +142_6-3 Q0 MARCO_10_790344909-1 49 -0.322561 hybrid +142_6-3 Q0 MARCO_55_676979672-1 50 -0.323096 hybrid +142_6-3 Q0 MARCO_22_1186915282-2 51 -0.324848 hybrid +142_6-3 Q0 MARCO_30_1025312089-6 52 -0.324855 hybrid +142_6-3 Q0 KILT_9912418-1 53 -0.326615 hybrid +142_6-3 Q0 KILT_509059-2 54 -0.327031 hybrid +142_6-3 Q0 KILT_23378955-5 55 -0.328580 hybrid +142_6-3 Q0 KILT_2240648-7 56 -0.329793 hybrid +142_6-3 Q0 MARCO_29_1418924300-4 57 -0.335606 hybrid +142_6-3 Q0 MARCO_55_100583624-2 58 -0.336605 hybrid +142_6-3 Q0 KILT_7060542-1 59 -0.341051 hybrid +142_6-3 Q0 MARCO_45_1439678929-3 60 -0.343314 hybrid +142_6-3 Q0 MARCO_45_1439678929-5 61 -0.343314 hybrid +142_6-3 Q0 MARCO_29_1417537059-6 62 -0.344713 hybrid +142_6-3 Q0 MARCO_46_439620046-3 63 -0.351314 hybrid +142_6-3 Q0 MARCO_55_247213724-16 64 -0.357657 hybrid +142_6-3 Q0 MARCO_10_790344909-2 65 -0.361047 hybrid +142_6-3 Q0 KILT_12685175-1 66 -0.362668 hybrid +142_6-3 Q0 MARCO_20_232780208-1 67 -0.364586 hybrid +142_6-3 Q0 MARCO_55_1245662540-1 68 -0.373375 hybrid +142_6-3 Q0 MARCO_22_1186906798-4 69 -0.376684 hybrid +142_6-3 Q0 MARCO_58_1734352472-2 70 -0.376961 hybrid +142_6-3 Q0 MARCO_25_297692704-10 71 -0.379223 hybrid +142_6-3 Q0 MARCO_28_986108984-5 72 -0.379374 hybrid +142_6-3 Q0 KILT_1727788-1 73 -0.379707 hybrid +142_6-3 Q0 MARCO_30_2013034285-1 74 -0.387320 hybrid +142_6-3 Q0 MARCO_33_868655730-8 75 -0.387548 hybrid +142_6-3 Q0 MARCO_22_1186915282-5 76 -0.387898 hybrid +142_6-3 Q0 MARCO_05_849036905-6 77 -0.392099 hybrid +142_6-3 Q0 MARCO_24_509111941-9 78 -0.392360 hybrid +142_6-3 Q0 MARCO_23_1186752642-11 79 -0.392883 hybrid +142_6-3 Q0 KILT_44507655-1 80 -0.393363 hybrid +142_6-3 Q0 MARCO_41_1816072373-1 81 -0.395356 hybrid +142_6-3 Q0 MARCO_30_2012975151-4 82 -0.399247 hybrid +142_6-3 Q0 MARCO_30_1005023705-3 83 -0.400472 hybrid +142_6-3 Q0 MARCO_49_223042133-5 84 -0.400587 hybrid +142_6-3 Q0 MARCO_51_694777636-52 85 -0.400927 hybrid +142_6-3 Q0 KILT_6147532-1 86 -0.401989 hybrid +142_6-3 Q0 KILT_57997215-2 87 -0.404110 hybrid +142_6-3 Q0 MARCO_43_40663531-2 88 -0.404343 hybrid +142_6-3 Q0 MARCO_22_1583085106-4 89 -0.404938 hybrid +142_6-3 Q0 MARCO_33_868655730-9 90 -0.406733 hybrid +142_6-3 Q0 MARCO_30_2013002157-1 91 -0.410454 hybrid +142_6-3 Q0 KILT_6274865-7 92 -0.412407 hybrid +142_6-3 Q0 MARCO_52_1472442561-9 93 -0.412528 hybrid +142_6-3 Q0 MARCO_35_128151915-16 94 -0.412855 hybrid +142_6-3 Q0 MARCO_52_1472442561-1 95 -0.412895 hybrid +142_6-3 Q0 MARCO_55_571877741-3 96 -0.413978 hybrid +142_6-3 Q0 MARCO_09_437271584-3 97 -0.414401 hybrid +142_6-3 Q0 MARCO_55_1245662540-8 98 -0.415753 hybrid +142_6-3 Q0 MARCO_09_437271584-9 99 -0.416077 hybrid +142_6-3 Q0 MARCO_35_131726592-3 100 -0.416160 hybrid +142_7-1 Q0 MARCO_30_1024441304-3 1 0.371662 hybrid +142_7-1 Q0 MARCO_30_152664236-9 2 0.352468 hybrid +142_7-1 Q0 MARCO_30_1078961907-4 3 0.286994 hybrid +142_7-1 Q0 MARCO_49_223385723-4 4 0.269957 hybrid +142_7-1 Q0 MARCO_30_152664236-7 5 0.223411 hybrid +142_7-1 Q0 MARCO_30_1078961907-1 6 0.219620 hybrid +142_7-1 Q0 MARCO_03_444110329-1 7 0.204069 hybrid +142_7-1 Q0 MARCO_30_1024441304-2 8 0.191458 hybrid +142_7-1 Q0 MARCO_05_1351112908-1 9 0.180385 hybrid +142_7-1 Q0 MARCO_30_1078961907-2 10 0.130910 hybrid +142_7-1 Q0 MARCO_30_1078961907-3 11 0.129800 hybrid +142_7-1 Q0 MARCO_49_223385723-3 12 0.124987 hybrid +142_7-1 Q0 MARCO_05_1351112908-3 13 0.113917 hybrid +142_7-1 Q0 MARCO_38_608962355-3 14 0.100699 hybrid +142_7-1 Q0 MARCO_30_151772794-9 15 0.093419 hybrid +142_7-1 Q0 MARCO_55_1727451898-3 16 0.091938 hybrid +142_7-1 Q0 MARCO_30_152664236-1 17 0.078350 hybrid +142_7-1 Q0 MARCO_55_1283960750-2 18 0.075931 hybrid +142_7-1 Q0 MARCO_19_2045799633-20 19 0.062865 hybrid +142_7-1 Q0 MARCO_30_1083589263-4 20 0.059271 hybrid +142_7-1 Q0 MARCO_43_782572363-1 21 0.050454 hybrid +142_7-1 Q0 MARCO_30_152664236-2 22 0.047808 hybrid +142_7-1 Q0 MARCO_50_636961426-8 23 0.038464 hybrid +142_7-1 Q0 MARCO_36_1008296269-20 24 0.037390 hybrid +142_7-1 Q0 MARCO_30_1024441304-1 25 0.033956 hybrid +142_7-1 Q0 MARCO_30_152664236-3 26 0.009693 hybrid +142_7-1 Q0 MARCO_05_1351112908-2 27 0.003888 hybrid +142_7-1 Q0 MARCO_30_1004788738-2 28 -0.012288 hybrid +142_7-1 Q0 MARCO_30_1004083203-11 29 -0.013526 hybrid +142_7-1 Q0 MARCO_35_128151915-16 30 -0.031570 hybrid +142_7-1 Q0 MARCO_49_223385723-1 31 -0.035190 hybrid +142_7-1 Q0 MARCO_55_248291775-14 32 -0.037452 hybrid +142_7-1 Q0 MARCO_30_151678069-13 33 -0.055858 hybrid +142_7-1 Q0 MARCO_30_1078961907-5 34 -0.056976 hybrid +142_7-1 Q0 MARCO_21_1442314510-7 35 -0.059298 hybrid +142_7-1 Q0 MARCO_30_1092501447-2 36 -0.059559 hybrid +142_7-1 Q0 MARCO_30_1004054024-8 37 -0.072927 hybrid +142_7-1 Q0 MARCO_36_1007618295-3 38 -0.078796 hybrid +142_7-1 Q0 MARCO_30_92584521-5 39 -0.095013 hybrid +142_7-1 Q0 MARCO_35_128320398-1 40 -0.100922 hybrid +142_7-1 Q0 MARCO_45_1439727349-6 41 -0.109311 hybrid +142_7-1 Q0 MARCO_51_633692586-4 42 -0.112765 hybrid +142_7-1 Q0 MARCO_07_257786795-14 43 -0.113027 hybrid +142_7-1 Q0 MARCO_31_642282366-4 44 -0.117793 hybrid +142_7-1 Q0 MARCO_55_1728776510-1 45 -0.124825 hybrid +142_7-1 Q0 MARCO_05_1351112908-4 46 -0.129356 hybrid +142_7-1 Q0 MARCO_55_1288546127-2 47 -0.129648 hybrid +142_7-1 Q0 MARCO_55_1708317826-2 48 -0.141781 hybrid +142_7-1 Q0 MARCO_30_152664236-8 49 -0.164712 hybrid +142_7-1 Q0 MARCO_30_1083672332-6 50 -0.167596 hybrid +142_7-1 Q0 MARCO_43_782572363-2 51 -0.169241 hybrid +142_7-1 Q0 MARCO_45_1439705889-5 52 -0.189412 hybrid +142_7-1 Q0 MARCO_35_128337429-3 53 -0.196876 hybrid +142_7-1 Q0 MARCO_36_1010460626-9 54 -0.211730 hybrid +142_7-1 Q0 MARCO_55_1704783769-7 55 -0.214951 hybrid +142_7-1 Q0 MARCO_30_1078961907-7 56 -0.215057 hybrid +142_7-1 Q0 MARCO_45_1437729237-5 57 -0.219809 hybrid +142_7-1 Q0 KILT_10015857-2 58 -0.228417 hybrid +142_7-1 Q0 MARCO_30_152664236-5 59 -0.232571 hybrid +142_7-1 Q0 MARCO_45_1439575992-7 60 -0.236488 hybrid +142_7-1 Q0 KILT_1368154-4 61 -0.246224 hybrid +142_7-1 Q0 MARCO_30_1004488553-6 62 -0.247637 hybrid +142_7-1 Q0 MARCO_29_1418275757-2 63 -0.250807 hybrid +142_7-1 Q0 MARCO_10_1612385551-2 64 -0.254074 hybrid +142_7-1 Q0 MARCO_35_128533405-3 65 -0.256240 hybrid +142_7-1 Q0 MARCO_30_151678069-14 66 -0.267022 hybrid +142_7-1 Q0 MARCO_08_1122345282-3 67 -0.271763 hybrid +142_7-1 Q0 MARCO_45_1436807476-6 68 -0.277042 hybrid +142_7-1 Q0 MARCO_45_1438053231-2 69 -0.280414 hybrid +142_7-1 Q0 MARCO_49_223385723-2 70 -0.285816 hybrid +142_7-1 Q0 KILT_18400644-2 71 -0.287938 hybrid +142_7-1 Q0 MARCO_30_152664236-10 72 -0.291243 hybrid +142_7-1 Q0 MARCO_54_1821438646-9 73 -0.296501 hybrid +142_7-1 Q0 MARCO_44_1920711678-2 74 -0.300322 hybrid +142_7-1 Q0 MARCO_24_1139351957-5 75 -0.315779 hybrid +142_7-1 Q0 MARCO_07_257786795-11 76 -0.317611 hybrid +142_7-1 Q0 MARCO_55_316070415-3 77 -0.327678 hybrid +142_7-1 Q0 MARCO_05_812510161-15 78 -0.329574 hybrid +142_7-1 Q0 MARCO_47_1601820628-8 79 -0.333574 hybrid +142_7-1 Q0 MARCO_55_1703873592-3 80 -0.343685 hybrid +142_7-1 Q0 MARCO_45_1437902823-5 81 -0.347120 hybrid +142_7-1 Q0 MARCO_51_810027140-11 82 -0.352935 hybrid +142_7-1 Q0 MARCO_45_1436893275-6 83 -0.353487 hybrid +142_7-1 Q0 MARCO_47_1601820628-7 84 -0.355030 hybrid +142_7-1 Q0 MARCO_45_1436564747-3 85 -0.358534 hybrid +142_7-1 Q0 MARCO_30_1094137114-5 86 -0.358981 hybrid +142_7-1 Q0 MARCO_30_151772794-10 87 -0.361615 hybrid +142_7-1 Q0 MARCO_43_48710186-5 88 -0.365711 hybrid +142_7-1 Q0 MARCO_30_152664236-4 89 -0.369991 hybrid +142_7-1 Q0 MARCO_26_725548530-3 90 -0.372502 hybrid +142_7-1 Q0 MARCO_55_1706886501-6 91 -0.373684 hybrid +142_7-1 Q0 MARCO_38_256944338-2 92 -0.374479 hybrid +142_7-1 Q0 MARCO_22_1579409830-7 93 -0.381577 hybrid +142_7-1 Q0 KILT_41802821-7 94 -0.382238 hybrid +142_7-1 Q0 MARCO_30_1024441304-4 95 -0.383951 hybrid +142_7-1 Q0 MARCO_30_1090553577-5 96 -0.385791 hybrid +142_7-1 Q0 MARCO_30_1042850292-7 97 -0.386862 hybrid +142_7-1 Q0 MARCO_30_1094121838-13 98 -0.389160 hybrid +142_7-1 Q0 MARCO_24_1494711467-42 99 -0.389858 hybrid +142_7-1 Q0 MARCO_10_1612385551-4 100 -0.394281 hybrid +142_8-1 Q0 MARCO_22_1187170512-2 1 0.250002 hybrid +142_8-1 Q0 MARCO_22_1187170512-5 2 0.245327 hybrid +142_8-1 Q0 MARCO_55_1284512637-4 3 0.212405 hybrid +142_8-1 Q0 MARCO_35_128289220-13 4 0.204218 hybrid +142_8-1 Q0 MARCO_22_1187181374-4 5 0.140269 hybrid +142_8-1 Q0 MARCO_00_1042400454-3 6 0.138946 hybrid +142_8-1 Q0 MARCO_55_1284502929-6 7 0.126534 hybrid +142_8-1 Q0 MARCO_22_1187181374-3 8 0.124504 hybrid +142_8-1 Q0 MARCO_45_1437526383-2 9 0.118806 hybrid +142_8-1 Q0 MARCO_50_1525328921-20 10 0.112851 hybrid +142_8-1 Q0 MARCO_50_1446258360-2 11 0.097902 hybrid +142_8-1 Q0 MARCO_55_1284502929-4 12 0.078350 hybrid +142_8-1 Q0 MARCO_19_2483609053-11 13 0.067702 hybrid +142_8-1 Q0 MARCO_22_1187181374-5 14 0.065414 hybrid +142_8-1 Q0 MARCO_36_1581532185-2 15 0.059820 hybrid +142_8-1 Q0 MARCO_22_1187170512-1 16 0.043016 hybrid +142_8-1 Q0 KILT_5489-53 17 0.042939 hybrid +142_8-1 Q0 KILT_5494-1 18 0.042372 hybrid +142_8-1 Q0 MARCO_22_1190417156-1 19 0.037800 hybrid +142_8-1 Q0 MARCO_58_1508678720-1 20 0.030221 hybrid +142_8-1 Q0 MARCO_22_1187170512-6 21 0.021936 hybrid +142_8-1 Q0 MARCO_24_1126171266-13 22 0.014667 hybrid +142_8-1 Q0 MARCO_58_1505550141-6 23 0.014199 hybrid +142_8-1 Q0 MARCO_33_1239673349-1 24 0.013731 hybrid +142_8-1 Q0 MARCO_22_1187170512-7 25 0.001461 hybrid +142_8-1 Q0 MARCO_43_782020638-7 26 -0.004498 hybrid +142_8-1 Q0 MARCO_24_1136457662-6 27 -0.017335 hybrid +142_8-1 Q0 MARCO_13_661344710-1 28 -0.019144 hybrid +142_8-1 Q0 MARCO_05_486423848-1 29 -0.035501 hybrid +142_8-1 Q0 KILT_10873028-8 30 -0.036866 hybrid +142_8-1 Q0 MARCO_58_1505550141-1 31 -0.045392 hybrid +142_8-1 Q0 MARCO_19_2483609053-12 32 -0.049600 hybrid +142_8-1 Q0 MARCO_55_1284502929-1 33 -0.050969 hybrid +142_8-1 Q0 MARCO_58_1508163333-1 34 -0.058242 hybrid +142_8-1 Q0 MARCO_00_1042413828-4 35 -0.058573 hybrid +142_8-1 Q0 KILT_299550-1 36 -0.064961 hybrid +142_8-1 Q0 MARCO_10_126605894-7 37 -0.072363 hybrid +142_8-1 Q0 KILT_5489-28 38 -0.077524 hybrid +142_8-1 Q0 KILT_12585491-5 39 -0.079743 hybrid +142_8-1 Q0 KILT_5529992-3 40 -0.080246 hybrid +142_8-1 Q0 MARCO_22_1187181374-1 41 -0.081624 hybrid +142_8-1 Q0 MARCO_00_1042370166-3 42 -0.085393 hybrid +142_8-1 Q0 MARCO_22_1187170512-3 43 -0.096994 hybrid +142_8-1 Q0 MARCO_00_1042337820-1 44 -0.103241 hybrid +142_8-1 Q0 KILT_5489-54 45 -0.105229 hybrid +142_8-1 Q0 MARCO_05_486427109-3 46 -0.106560 hybrid +142_8-1 Q0 KILT_5489-52 47 -0.107315 hybrid +142_8-1 Q0 KILT_5489-1 48 -0.111699 hybrid +142_8-1 Q0 MARCO_36_1806742080-1 49 -0.113193 hybrid +142_8-1 Q0 MARCO_22_1187170512-4 50 -0.114193 hybrid +142_8-1 Q0 MARCO_10_799166704-2 51 -0.116894 hybrid +142_8-1 Q0 MARCO_58_1508163333-3 52 -0.121311 hybrid +142_8-1 Q0 MARCO_58_1506784632-3 53 -0.123398 hybrid +142_8-1 Q0 MARCO_35_128374913-1 54 -0.123604 hybrid +142_8-1 Q0 MARCO_03_446463952-4 55 -0.126893 hybrid +142_8-1 Q0 MARCO_57_1435853555-9 56 -0.127709 hybrid +142_8-1 Q0 KILT_5489-37 57 -0.129289 hybrid +142_8-1 Q0 MARCO_03_1661752769-2 58 -0.130472 hybrid +142_8-1 Q0 MARCO_30_1082827875-25 59 -0.149781 hybrid +142_8-1 Q0 MARCO_22_1187170512-9 60 -0.152022 hybrid +142_8-1 Q0 MARCO_36_1008590407-3 61 -0.152331 hybrid +142_8-1 Q0 MARCO_25_1694780894-4 62 -0.153031 hybrid +142_8-1 Q0 KILT_16181756-5 63 -0.160286 hybrid +142_8-1 Q0 MARCO_55_248583746-7 64 -0.161338 hybrid +142_8-1 Q0 MARCO_27_913333413-1 65 -0.162193 hybrid +142_8-1 Q0 MARCO_50_1525328921-10 66 -0.164429 hybrid +142_8-1 Q0 MARCO_35_128289220-12 67 -0.164537 hybrid +142_8-1 Q0 MARCO_58_1508573003-2 68 -0.165722 hybrid +142_8-1 Q0 MARCO_23_489520494-1 69 -0.167353 hybrid +142_8-1 Q0 KILT_5494-9 70 -0.167946 hybrid +142_8-1 Q0 KILT_5494-8 71 -0.178473 hybrid +142_8-1 Q0 KILT_299550-3 72 -0.182281 hybrid +142_8-1 Q0 MARCO_50_1446258360-1 73 -0.184235 hybrid +142_8-1 Q0 MARCO_25_1694780894-1 74 -0.188202 hybrid +142_8-1 Q0 KILT_44716276-1 75 -0.190520 hybrid +142_8-1 Q0 MARCO_39_910717939-1 76 -0.191632 hybrid +142_8-1 Q0 MARCO_39_910717939-3 77 -0.191636 hybrid +142_8-1 Q0 MARCO_30_1079478959-2 78 -0.196479 hybrid +142_8-1 Q0 MARCO_03_447715492-6 79 -0.205465 hybrid +142_8-1 Q0 MARCO_50_2164037813-2 80 -0.208870 hybrid +142_8-1 Q0 KILT_180051-3 81 -0.208977 hybrid +142_8-1 Q0 KILT_5494-5 82 -0.215224 hybrid +142_8-1 Q0 MARCO_03_447715492-1 83 -0.217697 hybrid +142_8-1 Q0 MARCO_55_251439026-6 84 -0.218405 hybrid +142_8-1 Q0 MARCO_35_128289220-14 85 -0.218723 hybrid +142_8-1 Q0 MARCO_55_1284502929-3 86 -0.219728 hybrid +142_8-1 Q0 MARCO_04_1213656629-1 87 -0.220260 hybrid +142_8-1 Q0 MARCO_47_1601021495-2 88 -0.221200 hybrid +142_8-1 Q0 KILT_5489-62 89 -0.222922 hybrid +142_8-1 Q0 MARCO_00_1042337820-2 90 -0.223583 hybrid +142_8-1 Q0 KILT_30601611-4 91 -0.224798 hybrid +142_8-1 Q0 MARCO_35_128374913-10 92 -0.226202 hybrid +142_8-1 Q0 MARCO_58_1505550141-5 93 -0.227430 hybrid +142_8-1 Q0 KILT_1548253-4 94 -0.229010 hybrid +142_8-1 Q0 MARCO_30_901834353-3 95 -0.229753 hybrid +142_8-1 Q0 KILT_12585491-1 96 -0.230135 hybrid +142_8-1 Q0 KILT_5489-61 97 -0.230530 hybrid +142_8-1 Q0 MARCO_00_1042400454-1 98 -0.230860 hybrid +142_8-1 Q0 MARCO_50_1446258360-9 99 -0.234720 hybrid +142_8-1 Q0 KILT_5489-46 100 -0.235553 hybrid +142_9-1 Q0 MARCO_58_1508113613-1 1 0.375839 hybrid +142_9-1 Q0 MARCO_58_1506642595-1 2 0.232309 hybrid +142_9-1 Q0 MARCO_47_1602505698-3 3 0.191933 hybrid +142_9-1 Q0 MARCO_06_1240614560-37 4 0.163389 hybrid +142_9-1 Q0 MARCO_58_1509104985-4 5 0.128844 hybrid +142_9-1 Q0 MARCO_54_676656745-4 6 0.094571 hybrid +142_9-1 Q0 MARCO_54_676656745-2 7 0.094571 hybrid +142_9-1 Q0 MARCO_22_1186906798-1 8 0.087816 hybrid +142_9-1 Q0 MARCO_54_676656745-1 9 0.054990 hybrid +142_9-1 Q0 MARCO_22_1186915282-3 10 0.028624 hybrid +142_9-1 Q0 MARCO_31_899564358-3 11 0.012600 hybrid +142_9-1 Q0 KILT_14672486-3 12 -0.021277 hybrid +142_9-1 Q0 MARCO_05_848957007-1 13 -0.032980 hybrid +142_9-1 Q0 MARCO_58_1509104985-3 14 -0.033606 hybrid +142_9-1 Q0 MARCO_50_1441723234-18 15 -0.038845 hybrid +142_9-1 Q0 MARCO_19_2045799633-26 16 -0.051822 hybrid +142_9-1 Q0 MARCO_58_1508113613-3 17 -0.056444 hybrid +142_9-1 Q0 MARCO_47_1604104921-3 18 -0.059826 hybrid +142_9-1 Q0 MARCO_22_1186915282-2 19 -0.074601 hybrid +142_9-1 Q0 MARCO_16_3046749093-49 20 -0.076685 hybrid +142_9-1 Q0 MARCO_10_790353427-4 21 -0.079221 hybrid +142_9-1 Q0 MARCO_16_442874124-1 22 -0.080819 hybrid +142_9-1 Q0 MARCO_37_173589964-2 23 -0.086107 hybrid +142_9-1 Q0 KILT_26507946-2 24 -0.090327 hybrid +142_9-1 Q0 MARCO_58_1508113613-2 25 -0.093695 hybrid +142_9-1 Q0 MARCO_35_128151915-16 26 -0.099321 hybrid +142_9-1 Q0 KILT_28820502-2 27 -0.099443 hybrid +142_9-1 Q0 MARCO_41_1117115865-63 28 -0.100952 hybrid +142_9-1 Q0 MARCO_58_1505463998-1 29 -0.103247 hybrid +142_9-1 Q0 MARCO_58_1506642595-3 30 -0.106199 hybrid +142_9-1 Q0 MARCO_17_693365828-1 31 -0.107634 hybrid +142_9-1 Q0 MARCO_05_848975837-1 32 -0.114174 hybrid +142_9-1 Q0 MARCO_19_2045799633-19 33 -0.117118 hybrid +142_9-1 Q0 KILT_34879285-1 34 -0.117721 hybrid +142_9-1 Q0 KILT_1839572-1 35 -0.119050 hybrid +142_9-1 Q0 MARCO_47_1601362260-4 36 -0.120041 hybrid +142_9-1 Q0 MARCO_06_1149196799-179 37 -0.121933 hybrid +142_9-1 Q0 MARCO_43_742228802-80 38 -0.128134 hybrid +142_9-1 Q0 MARCO_06_1240614560-44 39 -0.128208 hybrid +142_9-1 Q0 MARCO_50_1936673617-24 40 -0.129843 hybrid +142_9-1 Q0 MARCO_47_1601362260-10 41 -0.134482 hybrid +142_9-1 Q0 MARCO_16_442874124-2 42 -0.139440 hybrid +142_9-1 Q0 MARCO_47_1601010927-2 43 -0.140985 hybrid +142_9-1 Q0 MARCO_06_1240614560-32 44 -0.142510 hybrid +142_9-1 Q0 MARCO_22_1186906798-5 45 -0.143362 hybrid +142_9-1 Q0 MARCO_10_790353427-1 46 -0.147676 hybrid +142_9-1 Q0 MARCO_08_1480326385-15 47 -0.154012 hybrid +142_9-1 Q0 MARCO_35_128533405-3 48 -0.156315 hybrid +142_9-1 Q0 MARCO_47_1602505698-4 49 -0.157172 hybrid +142_9-1 Q0 MARCO_58_1505463998-3 50 -0.159965 hybrid +142_9-1 Q0 KILT_35894206-10 51 -0.160764 hybrid +142_9-1 Q0 MARCO_47_1602505698-2 52 -0.164584 hybrid +142_9-1 Q0 MARCO_58_1509104985-2 53 -0.166027 hybrid +142_9-1 Q0 MARCO_27_1334580338-2 54 -0.171690 hybrid +142_9-1 Q0 MARCO_05_848986452-2 55 -0.174691 hybrid +142_9-1 Q0 MARCO_18_3127967367-2 56 -0.181321 hybrid +142_9-1 Q0 MARCO_10_790347853-1 57 -0.184187 hybrid +142_9-1 Q0 MARCO_05_848957007-4 58 -0.186299 hybrid +142_9-1 Q0 MARCO_16_3046944575-20 59 -0.193177 hybrid +142_9-1 Q0 MARCO_47_1604104921-11 60 -0.194522 hybrid +142_9-1 Q0 KILT_592808-3 61 -0.196569 hybrid +142_9-1 Q0 MARCO_50_1458626850-10 62 -0.196814 hybrid +142_9-1 Q0 MARCO_22_1186915282-1 63 -0.198416 hybrid +142_9-1 Q0 MARCO_16_3046749093-4 64 -0.203264 hybrid +142_9-1 Q0 MARCO_22_1186906798-2 65 -0.206069 hybrid +142_9-1 Q0 KILT_35894206-5 66 -0.210525 hybrid +142_9-1 Q0 MARCO_19_2045799633-18 67 -0.212060 hybrid +142_9-1 Q0 KILT_8076950-1 68 -0.213065 hybrid +142_9-1 Q0 MARCO_40_1583135483-1 69 -0.215134 hybrid +142_9-1 Q0 MARCO_03_1387185114-2 70 -0.215850 hybrid +142_9-1 Q0 MARCO_22_1186906798-3 71 -0.220539 hybrid +142_9-1 Q0 MARCO_37_173589964-3 72 -0.220726 hybrid +142_9-1 Q0 KILT_6283124-5 73 -0.228032 hybrid +142_9-1 Q0 MARCO_10_120187103-9 74 -0.236060 hybrid +142_9-1 Q0 MARCO_19_2045799633-5 75 -0.237312 hybrid +142_9-1 Q0 MARCO_30_1004488553-6 76 -0.238042 hybrid +142_9-1 Q0 MARCO_50_1458626850-15 77 -0.238906 hybrid +142_9-1 Q0 MARCO_16_3046749093-40 78 -0.240778 hybrid +142_9-1 Q0 MARCO_06_1240614560-40 79 -0.242963 hybrid +142_9-1 Q0 KILT_2810466-10 80 -0.243216 hybrid +142_9-1 Q0 MARCO_30_1078961907-5 81 -0.243872 hybrid +142_9-1 Q0 MARCO_05_848957007-12 82 -0.245841 hybrid +142_9-1 Q0 MARCO_16_3046749093-66 83 -0.246086 hybrid +142_9-1 Q0 MARCO_47_1602505698-5 84 -0.246163 hybrid +142_9-1 Q0 MARCO_04_113777060-3 85 -0.250000 hybrid +142_9-1 Q0 KILT_8076950-6 86 -0.250041 hybrid +142_9-1 Q0 MARCO_06_1149196799-139 87 -0.254632 hybrid +142_9-1 Q0 MARCO_19_2045799633-6 88 -0.256148 hybrid +142_9-1 Q0 KILT_35894206-11 89 -0.256336 hybrid +142_9-1 Q0 MARCO_30_1004488553-3 90 -0.256910 hybrid +142_9-1 Q0 MARCO_32_884765978-2 91 -0.257632 hybrid +142_9-1 Q0 MARCO_58_1505463998-2 92 -0.257897 hybrid +142_9-1 Q0 MARCO_47_1601362260-9 93 -0.259080 hybrid +142_9-1 Q0 MARCO_08_454689269-10 94 -0.259785 hybrid +142_9-1 Q0 MARCO_47_1604104921-6 95 -0.265477 hybrid +142_9-1 Q0 MARCO_55_247577966-6 96 -0.271429 hybrid +142_9-1 Q0 MARCO_45_1248533362-1 97 -0.274830 hybrid +142_9-1 Q0 KILT_8076950-4 98 -0.275902 hybrid +142_9-1 Q0 MARCO_17_693365828-5 99 -0.276958 hybrid +142_9-1 Q0 MARCO_22_1186877744-7 100 -0.277517 hybrid +143_1-1 Q0 MARCO_14_1190072833-1 1 0.249998 hybrid +143_1-1 Q0 KILT_2964862-7 2 0.227042 hybrid +143_1-1 Q0 MARCO_40_667182643-1 3 0.224081 hybrid +143_1-1 Q0 MARCO_36_839237348-5 4 0.222819 hybrid +143_1-1 Q0 MARCO_36_839237348-4 5 0.194846 hybrid +143_1-1 Q0 MARCO_14_1190072833-2 6 0.045988 hybrid +143_1-1 Q0 MARCO_44_623736186-5 7 0.041604 hybrid +143_1-1 Q0 MARCO_29_1331485035-6 8 -0.005668 hybrid +143_1-1 Q0 MARCO_13_697608169-2 9 -0.010510 hybrid +143_1-1 Q0 MARCO_40_266486787-50 10 -0.021495 hybrid +143_1-1 Q0 MARCO_04_185169155-4 11 -0.026310 hybrid +143_1-1 Q0 MARCO_36_839920756-4 12 -0.030711 hybrid +143_1-1 Q0 MARCO_35_22431210-5 13 -0.064249 hybrid +143_1-1 Q0 MARCO_36_28162569-5 14 -0.067314 hybrid +143_1-1 Q0 MARCO_36_28162569-4 15 -0.080634 hybrid +143_1-1 Q0 MARCO_13_1224118800-1 16 -0.113489 hybrid +143_1-1 Q0 MARCO_27_586060148-22 17 -0.149887 hybrid +143_1-1 Q0 MARCO_35_22431210-4 18 -0.164348 hybrid +143_1-1 Q0 MARCO_13_697608169-3 19 -0.166923 hybrid +143_1-1 Q0 MARCO_13_1224118800-3 20 -0.169890 hybrid +143_1-1 Q0 MARCO_27_586060148-26 21 -0.186608 hybrid +143_1-1 Q0 KILT_2964862-1 22 -0.187237 hybrid +143_1-1 Q0 MARCO_14_1190072833-3 23 -0.188089 hybrid +143_1-1 Q0 MARCO_36_28162569-1 24 -0.190495 hybrid +143_1-1 Q0 MARCO_36_28162569-2 25 -0.190679 hybrid +143_1-1 Q0 KILT_3073096-1 26 -0.197267 hybrid +143_1-1 Q0 MARCO_36_28162569-3 27 -0.212421 hybrid +143_1-1 Q0 MARCO_14_1189603229-6 28 -0.226653 hybrid +143_1-1 Q0 MARCO_35_1469847018-2 29 -0.229089 hybrid +143_1-1 Q0 KILT_1437154-1 30 -0.238184 hybrid +143_1-1 Q0 MARCO_14_1190072833-6 31 -0.240845 hybrid +143_1-1 Q0 KILT_42371251-1 32 -0.242191 hybrid +143_1-1 Q0 MARCO_45_532277027-1 33 -0.246289 hybrid +143_1-1 Q0 KILT_8385046-1 34 -0.248096 hybrid +143_1-1 Q0 MARCO_45_535496133-1 35 -0.248987 hybrid +143_1-1 Q0 MARCO_45_129345730-7 36 -0.250002 hybrid +143_1-1 Q0 MARCO_13_1224118800-2 37 -0.250121 hybrid +143_1-1 Q0 KILT_3049649-2 38 -0.251023 hybrid +143_1-1 Q0 MARCO_40_274248920-88 39 -0.255663 hybrid +143_1-1 Q0 MARCO_45_532260364-1 40 -0.257611 hybrid +143_1-1 Q0 MARCO_00_1107294789-1 41 -0.258613 hybrid +143_1-1 Q0 MARCO_54_319242251-7 42 -0.264690 hybrid +143_1-1 Q0 MARCO_35_336625773-8 43 -0.268478 hybrid +143_1-1 Q0 MARCO_49_1518490588-10 44 -0.271173 hybrid +143_1-1 Q0 MARCO_40_580050801-1 45 -0.273618 hybrid +143_1-1 Q0 MARCO_14_1190072833-4 46 -0.275150 hybrid +143_1-1 Q0 KILT_378204-1 47 -0.278781 hybrid +143_1-1 Q0 MARCO_04_148650586-1 48 -0.280215 hybrid +143_1-1 Q0 MARCO_45_532291240-1 49 -0.297336 hybrid +143_1-1 Q0 MARCO_04_148650586-2 50 -0.298046 hybrid +143_1-1 Q0 KILT_3049649-1 51 -0.299826 hybrid +143_1-1 Q0 MARCO_29_1332813355-3 52 -0.301313 hybrid +143_1-1 Q0 MARCO_29_1332813355-1 53 -0.303392 hybrid +143_1-1 Q0 MARCO_32_1796230465-4 54 -0.304632 hybrid +143_1-1 Q0 MARCO_29_1332813355-6 55 -0.309146 hybrid +143_1-1 Q0 KILT_1297457-4 56 -0.310996 hybrid +143_1-1 Q0 MARCO_04_156351761-2 57 -0.321137 hybrid +143_1-1 Q0 MARCO_35_305195648-5 58 -0.335231 hybrid +143_1-1 Q0 MARCO_51_1999574201-19 59 -0.336331 hybrid +143_1-1 Q0 MARCO_19_2556756670-1 60 -0.340695 hybrid +143_1-1 Q0 MARCO_45_129345730-6 61 -0.340833 hybrid +143_1-1 Q0 MARCO_50_1933847318-6 62 -0.342731 hybrid +143_1-1 Q0 KILT_3479210-1 63 -0.344756 hybrid +143_1-1 Q0 MARCO_27_1643809758-3 64 -0.345823 hybrid +143_1-1 Q0 MARCO_03_1702669529-2 65 -0.350346 hybrid +143_1-1 Q0 MARCO_24_1050108208-13 66 -0.351159 hybrid +143_1-1 Q0 KILT_3156313-1 67 -0.351782 hybrid +143_1-1 Q0 MARCO_54_322640260-3 68 -0.353699 hybrid +143_1-1 Q0 KILT_921278-10 69 -0.353945 hybrid +143_1-1 Q0 MARCO_13_798486522-1 70 -0.356640 hybrid +143_1-1 Q0 KILT_39905985-1 71 -0.356694 hybrid +143_1-1 Q0 MARCO_15_1108520612-3 72 -0.357219 hybrid +143_1-1 Q0 MARCO_54_322090285-2 73 -0.362642 hybrid +143_1-1 Q0 MARCO_39_610949138-1 74 -0.362763 hybrid +143_1-1 Q0 MARCO_26_1061461405-2 75 -0.363517 hybrid +143_1-1 Q0 KILT_242556-1 76 -0.364883 hybrid +143_1-1 Q0 MARCO_23_1279898335-64 77 -0.367073 hybrid +143_1-1 Q0 MARCO_45_129345730-8 78 -0.367126 hybrid +143_1-1 Q0 MARCO_30_898932082-16 79 -0.367746 hybrid +143_1-1 Q0 MARCO_41_806087571-1 80 -0.368177 hybrid +143_1-1 Q0 MARCO_43_772414784-2 81 -0.369893 hybrid +143_1-1 Q0 MARCO_43_510305100-1 82 -0.370854 hybrid +143_1-1 Q0 MARCO_35_305195648-4 83 -0.372699 hybrid +143_1-1 Q0 MARCO_40_266323569-17 84 -0.373978 hybrid +143_1-1 Q0 MARCO_44_624050066-7 85 -0.374018 hybrid +143_1-1 Q0 MARCO_48_1598029286-1 86 -0.377930 hybrid +143_1-1 Q0 MARCO_12_1869120660-1 87 -0.378355 hybrid +143_1-1 Q0 MARCO_15_102106212-1 88 -0.378762 hybrid +143_1-1 Q0 MARCO_50_1666175963-11 89 -0.378984 hybrid +143_1-1 Q0 MARCO_14_1550501220-11 90 -0.379166 hybrid +143_1-1 Q0 MARCO_00_1016165974-1 91 -0.379938 hybrid +143_1-1 Q0 MARCO_04_148650586-3 92 -0.383380 hybrid +143_1-1 Q0 MARCO_12_1868962042-1 93 -0.383452 hybrid +143_1-1 Q0 MARCO_00_1107294789-2 94 -0.383503 hybrid +143_1-1 Q0 MARCO_40_339551778-60 95 -0.384314 hybrid +143_1-1 Q0 MARCO_21_1148245773-7 96 -0.385952 hybrid +143_1-1 Q0 MARCO_14_1190072833-5 97 -0.387315 hybrid +143_1-1 Q0 MARCO_30_900180283-25 98 -0.387358 hybrid +143_1-1 Q0 MARCO_16_3690758-1 99 -0.388160 hybrid +143_1-1 Q0 MARCO_54_1473144022-2 100 -0.389293 hybrid +143_1-11 Q0 MARCO_14_944389547-91 1 0.249997 hybrid +143_1-11 Q0 MARCO_56_1319363153-3 2 0.221680 hybrid +143_1-11 Q0 MARCO_30_1095084847-6 3 0.217031 hybrid +143_1-11 Q0 MARCO_27_1745346050-81 4 0.180959 hybrid +143_1-11 Q0 MARCO_19_2550444305-16 5 0.145227 hybrid +143_1-11 Q0 MARCO_15_936995072-29 6 0.136361 hybrid +143_1-11 Q0 MARCO_30_1095084847-9 7 0.122973 hybrid +143_1-11 Q0 MARCO_15_1085607141-2 8 0.119096 hybrid +143_1-11 Q0 MARCO_19_2550544750-18 9 0.104379 hybrid +143_1-11 Q0 MARCO_15_945504928-9 10 0.080461 hybrid +143_1-11 Q0 MARCO_28_1308417846-2 11 0.077491 hybrid +143_1-11 Q0 MARCO_13_404945687-1 12 0.068924 hybrid +143_1-11 Q0 MARCO_15_310854948-1 13 0.068114 hybrid +143_1-11 Q0 MARCO_49_29682614-3 14 0.063293 hybrid +143_1-11 Q0 MARCO_41_1130431634-45 15 0.062059 hybrid +143_1-11 Q0 MARCO_28_536389283-7 16 0.052463 hybrid +143_1-11 Q0 MARCO_15_935748243-16 17 0.049332 hybrid +143_1-11 Q0 MARCO_36_1582385607-4 18 0.042993 hybrid +143_1-11 Q0 MARCO_09_158614691-11 19 0.039217 hybrid +143_1-11 Q0 MARCO_18_2387411650-5 20 0.038023 hybrid +143_1-11 Q0 MARCO_50_182489321-1 21 0.016309 hybrid +143_1-11 Q0 MARCO_14_1525627718-4 22 0.014457 hybrid +143_1-11 Q0 MARCO_15_936932957-28 23 0.014269 hybrid +143_1-11 Q0 KILT_20287616-8 24 0.012554 hybrid +143_1-11 Q0 MARCO_15_936932957-27 25 0.002516 hybrid +143_1-11 Q0 MARCO_14_1482196329-82 26 -0.005467 hybrid +143_1-11 Q0 MARCO_23_1594743536-4 27 -0.014891 hybrid +143_1-11 Q0 MARCO_28_1236471318-6 28 -0.018814 hybrid +143_1-11 Q0 MARCO_48_371436668-2 29 -0.022630 hybrid +143_1-11 Q0 MARCO_49_34603773-11 30 -0.032491 hybrid +143_1-11 Q0 MARCO_17_688868302-10 31 -0.032952 hybrid +143_1-11 Q0 MARCO_04_322329232-5 32 -0.039880 hybrid +143_1-11 Q0 MARCO_04_322329232-3 33 -0.039880 hybrid +143_1-11 Q0 MARCO_23_32136638-16 34 -0.041153 hybrid +143_1-11 Q0 KILT_6232856-2 35 -0.054475 hybrid +143_1-11 Q0 MARCO_55_814960335-16 36 -0.058428 hybrid +143_1-11 Q0 MARCO_45_1031850468-4 37 -0.062483 hybrid +143_1-11 Q0 MARCO_26_1065461509-6 38 -0.064518 hybrid +143_1-11 Q0 MARCO_28_542448379-9 39 -0.068370 hybrid +143_1-11 Q0 MARCO_55_683017276-7 40 -0.078378 hybrid +143_1-11 Q0 MARCO_09_158614691-12 41 -0.084447 hybrid +143_1-11 Q0 MARCO_44_1166547650-8 42 -0.091446 hybrid +143_1-11 Q0 MARCO_26_729489835-1 43 -0.092313 hybrid +143_1-11 Q0 MARCO_45_1578904267-6 44 -0.098007 hybrid +143_1-11 Q0 MARCO_15_1466758061-5 45 -0.102397 hybrid +143_1-11 Q0 MARCO_28_173335343-7 46 -0.103488 hybrid +143_1-11 Q0 MARCO_15_941475508-21 47 -0.112486 hybrid +143_1-11 Q0 MARCO_15_1051974412-8 48 -0.121002 hybrid +143_1-11 Q0 KILT_32729903-1 49 -0.122890 hybrid +143_1-11 Q0 MARCO_59_432667656-2 50 -0.128903 hybrid +143_1-11 Q0 MARCO_12_130093151-21 51 -0.129441 hybrid +143_1-11 Q0 MARCO_14_602961200-6 52 -0.131258 hybrid +143_1-11 Q0 MARCO_17_689119586-2 53 -0.133542 hybrid +143_1-11 Q0 MARCO_15_936995072-6 54 -0.141560 hybrid +143_1-11 Q0 MARCO_27_1148578981-7 55 -0.141575 hybrid +143_1-11 Q0 MARCO_55_1730102788-3 56 -0.148929 hybrid +143_1-11 Q0 MARCO_52_685027658-12 57 -0.149751 hybrid +143_1-11 Q0 MARCO_14_548247347-6 58 -0.151106 hybrid +143_1-11 Q0 MARCO_17_1840463678-7 59 -0.151446 hybrid +143_1-11 Q0 MARCO_02_1121518626-1 60 -0.152862 hybrid +143_1-11 Q0 MARCO_15_941749332-68 61 -0.159327 hybrid +143_1-11 Q0 MARCO_50_1679177489-10 62 -0.162042 hybrid +143_1-11 Q0 MARCO_24_722865819-1 63 -0.165732 hybrid +143_1-11 Q0 MARCO_22_242457730-4 64 -0.169472 hybrid +143_1-11 Q0 MARCO_14_1525750651-6 65 -0.178404 hybrid +143_1-11 Q0 MARCO_15_592317826-6 66 -0.179896 hybrid +143_1-11 Q0 MARCO_35_331876054-2 67 -0.180165 hybrid +143_1-11 Q0 MARCO_53_1490802196-2 68 -0.187802 hybrid +143_1-11 Q0 MARCO_15_936995072-7 69 -0.190847 hybrid +143_1-11 Q0 MARCO_05_451767265-4 70 -0.191979 hybrid +143_1-11 Q0 MARCO_12_1166244414-23 71 -0.192700 hybrid +143_1-11 Q0 MARCO_51_1233514659-170 72 -0.198302 hybrid +143_1-11 Q0 MARCO_23_1279531059-2 73 -0.203600 hybrid +143_1-11 Q0 MARCO_15_1162683812-15 74 -0.208000 hybrid +143_1-11 Q0 MARCO_14_126731283-3 75 -0.212684 hybrid +143_1-11 Q0 MARCO_15_1054457602-2 76 -0.212877 hybrid +143_1-11 Q0 MARCO_11_783743250-3 77 -0.215090 hybrid +143_1-11 Q0 KILT_2185874-1 78 -0.220647 hybrid +143_1-11 Q0 MARCO_48_1555048877-12 79 -0.224621 hybrid +143_1-11 Q0 MARCO_32_1774610635-8 80 -0.226260 hybrid +143_1-11 Q0 MARCO_32_1774600332-8 81 -0.226260 hybrid +143_1-11 Q0 MARCO_48_291199131-16 82 -0.229812 hybrid +143_1-11 Q0 MARCO_28_1236360977-15 83 -0.246148 hybrid +143_1-11 Q0 MARCO_14_540975694-4 84 -0.246402 hybrid +143_1-11 Q0 MARCO_32_1774620906-9 85 -0.247600 hybrid +143_1-11 Q0 MARCO_32_1774577561-9 86 -0.247600 hybrid +143_1-11 Q0 MARCO_32_1774589159-9 87 -0.247600 hybrid +143_1-11 Q0 MARCO_32_1774650102-7 88 -0.247600 hybrid +143_1-11 Q0 MARCO_41_922121766-5 89 -0.247963 hybrid +143_1-11 Q0 MARCO_15_941639701-8 90 -0.249132 hybrid +143_1-11 Q0 MARCO_12_793940038-1 91 -0.250003 hybrid +143_1-11 Q0 MARCO_50_1935553876-15 92 -0.250213 hybrid +143_1-11 Q0 MARCO_14_1525627718-5 93 -0.250584 hybrid +143_1-11 Q0 MARCO_51_2017340525-7 94 -0.254938 hybrid +143_1-11 Q0 KILT_4460501-6 95 -0.255288 hybrid +143_1-11 Q0 MARCO_49_28994171-7 96 -0.258830 hybrid +143_1-11 Q0 MARCO_15_1055307012-3 97 -0.261885 hybrid +143_1-11 Q0 MARCO_14_1525733572-10 98 -0.265176 hybrid +143_1-11 Q0 MARCO_13_589675130-2 99 -0.265367 hybrid +143_1-11 Q0 MARCO_55_766724926-2 100 -0.266148 hybrid +143_1-13 Q0 MARCO_29_866218601-13 1 0.250000 hybrid +143_1-13 Q0 MARCO_29_863232769-6 2 0.250000 hybrid +143_1-13 Q0 MARCO_02_485786500-4 3 0.226438 hybrid +143_1-13 Q0 MARCO_29_868329575-2 4 0.120790 hybrid +143_1-13 Q0 MARCO_24_1138702817-1 5 0.107850 hybrid +143_1-13 Q0 MARCO_50_1983727946-1 6 0.033715 hybrid +143_1-13 Q0 MARCO_17_367384120-37 7 -0.007417 hybrid +143_1-13 Q0 MARCO_54_1524829628-1 8 -0.011179 hybrid +143_1-13 Q0 MARCO_37_1250042811-1 9 -0.012199 hybrid +143_1-13 Q0 MARCO_14_746487374-1 10 -0.017030 hybrid +143_1-13 Q0 MARCO_13_655398278-1 11 -0.024643 hybrid +143_1-13 Q0 MARCO_28_43678078-1 12 -0.070679 hybrid +143_1-13 Q0 MARCO_41_387566683-1 13 -0.097980 hybrid +143_1-13 Q0 MARCO_22_244971473-3 14 -0.098047 hybrid +143_1-13 Q0 MARCO_40_151752092-1 15 -0.104400 hybrid +143_1-13 Q0 MARCO_23_1830177216-1 16 -0.119157 hybrid +143_1-13 Q0 MARCO_41_922078754-1 17 -0.121325 hybrid +143_1-13 Q0 MARCO_41_1169513590-39 18 -0.131467 hybrid +143_1-13 Q0 MARCO_45_1024358508-12 19 -0.133239 hybrid +143_1-13 Q0 MARCO_28_393689398-2 20 -0.144847 hybrid +143_1-13 Q0 MARCO_17_367384120-23 21 -0.149763 hybrid +143_1-13 Q0 MARCO_41_387566683-3 22 -0.173046 hybrid +143_1-13 Q0 MARCO_31_1560464192-1 23 -0.173703 hybrid +143_1-13 Q0 MARCO_52_680689559-1 24 -0.181082 hybrid +143_1-13 Q0 MARCO_50_2713725927-5 25 -0.184487 hybrid +143_1-13 Q0 MARCO_50_2713725927-1 26 -0.184487 hybrid +143_1-13 Q0 MARCO_50_2713725927-3 27 -0.184487 hybrid +143_1-13 Q0 MARCO_40_1192022744-1 28 -0.185356 hybrid +143_1-13 Q0 MARCO_40_1265771977-2 29 -0.189452 hybrid +143_1-13 Q0 MARCO_40_1276808168-1 30 -0.191313 hybrid +143_1-13 Q0 KILT_54064152-2 31 -0.194534 hybrid +143_1-13 Q0 MARCO_40_1192048546-1 32 -0.203456 hybrid +143_1-13 Q0 MARCO_22_997448110-20 33 -0.206326 hybrid +143_1-13 Q0 MARCO_00_624962639-4 34 -0.207034 hybrid +143_1-13 Q0 MARCO_00_624816590-4 35 -0.207034 hybrid +143_1-13 Q0 MARCO_00_624541009-3 36 -0.210684 hybrid +143_1-13 Q0 MARCO_48_550797568-1 37 -0.212997 hybrid +143_1-13 Q0 MARCO_29_863580623-5 38 -0.215271 hybrid +143_1-13 Q0 MARCO_29_867562507-8 39 -0.215276 hybrid +143_1-13 Q0 MARCO_20_626306361-7 40 -0.234892 hybrid +143_1-13 Q0 MARCO_31_18137720-3 41 -0.238375 hybrid +143_1-13 Q0 MARCO_01_767011868-62 42 -0.245441 hybrid +143_1-13 Q0 MARCO_23_1830336853-1 43 -0.247236 hybrid +143_1-13 Q0 MARCO_37_1201513680-35 44 -0.250000 hybrid +143_1-13 Q0 MARCO_56_1026935802-148 45 -0.251399 hybrid +143_1-13 Q0 MARCO_45_1023964382-1 46 -0.253739 hybrid +143_1-13 Q0 MARCO_22_997332287-2 47 -0.255489 hybrid +143_1-13 Q0 MARCO_14_746886594-1 48 -0.257479 hybrid +143_1-13 Q0 MARCO_28_474562382-6 49 -0.257601 hybrid +143_1-13 Q0 MARCO_35_311112813-2 50 -0.260845 hybrid +143_1-13 Q0 MARCO_45_1024564899-1 51 -0.262912 hybrid +143_1-13 Q0 MARCO_47_601661126-1 52 -0.267577 hybrid +143_1-13 Q0 MARCO_13_130507434-1 53 -0.275830 hybrid +143_1-13 Q0 MARCO_45_1024576531-1 54 -0.276900 hybrid +143_1-13 Q0 MARCO_36_891311373-3 55 -0.282211 hybrid +143_1-13 Q0 MARCO_49_521110394-5 56 -0.292570 hybrid +143_1-13 Q0 MARCO_22_244971473-28 57 -0.293774 hybrid +143_1-13 Q0 MARCO_10_75823671-1 58 -0.299013 hybrid +143_1-13 Q0 MARCO_11_1494500151-5 59 -0.301175 hybrid +143_1-13 Q0 MARCO_23_899779061-1 60 -0.304474 hybrid +143_1-13 Q0 MARCO_53_1331002760-1 61 -0.306803 hybrid +143_1-13 Q0 MARCO_50_1516996110-27 62 -0.307255 hybrid +143_1-13 Q0 MARCO_25_1407096261-3 63 -0.313925 hybrid +143_1-13 Q0 MARCO_41_342159062-1 64 -0.314544 hybrid +143_1-13 Q0 MARCO_41_324341845-1 65 -0.314561 hybrid +143_1-13 Q0 MARCO_11_193448462-7 66 -0.315849 hybrid +143_1-13 Q0 MARCO_53_1470658461-1 67 -0.315876 hybrid +143_1-13 Q0 MARCO_45_1023805152-1 68 -0.320250 hybrid +143_1-13 Q0 MARCO_13_130507434-2 69 -0.322881 hybrid +143_1-13 Q0 MARCO_24_1136034984-11 70 -0.324374 hybrid +143_1-13 Q0 MARCO_45_1027350719-1 71 -0.325918 hybrid +143_1-13 Q0 MARCO_59_948813687-1 72 -0.326336 hybrid +143_1-13 Q0 MARCO_45_1319232189-6 73 -0.327684 hybrid +143_1-13 Q0 MARCO_49_304317245-14 74 -0.328041 hybrid +143_1-13 Q0 MARCO_41_387400230-1 75 -0.328180 hybrid +143_1-13 Q0 MARCO_36_839041939-1 76 -0.330348 hybrid +143_1-13 Q0 MARCO_07_260982436-2 77 -0.330755 hybrid +143_1-13 Q0 MARCO_35_313434538-14 78 -0.331073 hybrid +143_1-13 Q0 MARCO_23_1829770920-10 79 -0.332070 hybrid +143_1-13 Q0 MARCO_45_654354657-4 80 -0.332917 hybrid +143_1-13 Q0 MARCO_23_694143262-1 81 -0.338362 hybrid +143_1-13 Q0 MARCO_45_1024358508-1 82 -0.342842 hybrid +143_1-13 Q0 MARCO_28_537076416-1 83 -0.343171 hybrid +143_1-13 Q0 MARCO_19_2547970426-2 84 -0.344988 hybrid +143_1-13 Q0 MARCO_40_382943557-1 85 -0.346297 hybrid +143_1-13 Q0 MARCO_40_382970438-1 86 -0.347412 hybrid +143_1-13 Q0 MARCO_49_965811772-1 87 -0.356568 hybrid +143_1-13 Q0 MARCO_28_1149445080-4 88 -0.357605 hybrid +143_1-13 Q0 MARCO_17_4189538972-44 89 -0.361879 hybrid +143_1-13 Q0 MARCO_07_1254954996-7 90 -0.364738 hybrid +143_1-13 Q0 MARCO_29_868760514-1 91 -0.365797 hybrid +143_1-13 Q0 MARCO_53_1469134268-1 92 -0.365914 hybrid +143_1-13 Q0 MARCO_50_1457136264-37 93 -0.366019 hybrid +143_1-13 Q0 MARCO_23_693901910-14 94 -0.368338 hybrid +143_1-13 Q0 MARCO_20_1143791571-1 95 -0.368596 hybrid +143_1-13 Q0 MARCO_24_1723780301-1 96 -0.369826 hybrid +143_1-13 Q0 MARCO_53_1331986137-1 97 -0.372763 hybrid +143_1-13 Q0 MARCO_18_3496363884-8 98 -0.375435 hybrid +143_1-13 Q0 MARCO_28_339910044-6 99 -0.375543 hybrid +143_1-13 Q0 MARCO_36_838622581-1 100 -0.378581 hybrid +143_1-15 Q0 MARCO_01_829924766-21 1 0.313513 hybrid +143_1-15 Q0 MARCO_19_2489928640-14 2 0.313512 hybrid +143_1-15 Q0 MARCO_01_831982137-22 3 0.313512 hybrid +143_1-15 Q0 MARCO_19_2513676244-16 4 0.313512 hybrid +143_1-15 Q0 MARCO_30_899087538-15 5 0.304524 hybrid +143_1-15 Q0 MARCO_14_1554596026-2 6 0.197624 hybrid +143_1-15 Q0 MARCO_36_1101816955-7 7 0.185895 hybrid +143_1-15 Q0 MARCO_01_830855712-16 8 0.166002 hybrid +143_1-15 Q0 MARCO_30_899017371-9 9 0.128083 hybrid +143_1-15 Q0 MARCO_50_1673836905-46 10 0.021210 hybrid +143_1-15 Q0 MARCO_50_1975747916-5 11 0.000102 hybrid +143_1-15 Q0 MARCO_12_1167771301-10 12 -0.007653 hybrid +143_1-15 Q0 MARCO_01_833156633-12 13 -0.029446 hybrid +143_1-15 Q0 MARCO_19_2498800878-11 14 -0.029446 hybrid +143_1-15 Q0 MARCO_01_831105559-28 15 -0.029446 hybrid +143_1-15 Q0 MARCO_19_2512475672-14 16 -0.029446 hybrid +143_1-15 Q0 MARCO_14_1554140859-2 17 -0.054819 hybrid +143_1-15 Q0 MARCO_44_1092483565-2 18 -0.054974 hybrid +143_1-15 Q0 MARCO_14_1553417208-5 19 -0.057985 hybrid +143_1-15 Q0 MARCO_50_1673836905-47 20 -0.059002 hybrid +143_1-15 Q0 MARCO_44_608147575-1 21 -0.071368 hybrid +143_1-15 Q0 MARCO_14_1552278539-8 22 -0.081014 hybrid +143_1-15 Q0 MARCO_30_899651186-3 23 -0.093141 hybrid +143_1-15 Q0 MARCO_12_1168182871-6 24 -0.100883 hybrid +143_1-15 Q0 MARCO_19_2488220035-29 25 -0.117512 hybrid +143_1-15 Q0 MARCO_01_828261466-14 26 -0.117512 hybrid +143_1-15 Q0 MARCO_19_2480603792-40 27 -0.117512 hybrid +143_1-15 Q0 MARCO_01_829868993-11 28 -0.117512 hybrid +143_1-15 Q0 MARCO_01_827962921-33 29 -0.117512 hybrid +143_1-15 Q0 MARCO_01_830196248-33 30 -0.117512 hybrid +143_1-15 Q0 MARCO_01_833253499-9 31 -0.117512 hybrid +143_1-15 Q0 MARCO_01_829478272-26 32 -0.117512 hybrid +143_1-15 Q0 MARCO_19_2508528923-33 33 -0.117512 hybrid +143_1-15 Q0 MARCO_19_2496958346-29 34 -0.117512 hybrid +143_1-15 Q0 MARCO_30_899848881-14 35 -0.117768 hybrid +143_1-15 Q0 MARCO_19_2510046993-2 36 -0.119874 hybrid +143_1-15 Q0 MARCO_30_899974867-7 37 -0.121087 hybrid +143_1-15 Q0 MARCO_25_1440064272-10 38 -0.121701 hybrid +143_1-15 Q0 MARCO_33_1026664670-5 39 -0.124042 hybrid +143_1-15 Q0 MARCO_24_1142582525-2 40 -0.129433 hybrid +143_1-15 Q0 MARCO_19_2504744976-42 41 -0.130508 hybrid +143_1-15 Q0 MARCO_19_2489928640-13 42 -0.139147 hybrid +143_1-15 Q0 MARCO_01_831982137-21 43 -0.139147 hybrid +143_1-15 Q0 MARCO_19_2513676244-15 44 -0.139147 hybrid +143_1-15 Q0 MARCO_30_899683844-15 45 -0.161141 hybrid +143_1-15 Q0 MARCO_30_900016222-21 46 -0.169034 hybrid +143_1-15 Q0 MARCO_44_608147575-2 47 -0.169631 hybrid +143_1-15 Q0 MARCO_50_2155141197-18 48 -0.177663 hybrid +143_1-15 Q0 MARCO_57_615778094-4 49 -0.184796 hybrid +143_1-15 Q0 MARCO_30_899959321-12 50 -0.188362 hybrid +143_1-15 Q0 MARCO_36_1101816955-2 51 -0.200590 hybrid +143_1-15 Q0 MARCO_01_832475593-35 52 -0.201031 hybrid +143_1-15 Q0 MARCO_01_829287594-15 53 -0.201031 hybrid +143_1-15 Q0 MARCO_19_2480551115-34 54 -0.201031 hybrid +143_1-15 Q0 MARCO_19_2512092029-15 55 -0.201031 hybrid +143_1-15 Q0 MARCO_14_1552278539-7 56 -0.208483 hybrid +143_1-15 Q0 MARCO_30_899449670-11 57 -0.219503 hybrid +143_1-15 Q0 MARCO_30_898676845-8 58 -0.224773 hybrid +143_1-15 Q0 MARCO_01_830147397-20 59 -0.225933 hybrid +143_1-15 Q0 MARCO_29_831158258-4 60 -0.231611 hybrid +143_1-15 Q0 MARCO_24_1913340153-2 61 -0.231705 hybrid +143_1-15 Q0 MARCO_33_355511915-4 62 -0.236521 hybrid +143_1-15 Q0 MARCO_12_1167937824-8 63 -0.241225 hybrid +143_1-15 Q0 MARCO_30_900016222-2 64 -0.241445 hybrid +143_1-15 Q0 MARCO_12_70212833-3 65 -0.242803 hybrid +143_1-15 Q0 MARCO_30_378033944-3 66 -0.245224 hybrid +143_1-15 Q0 MARCO_37_639963665-2 67 -0.249998 hybrid +143_1-15 Q0 MARCO_14_1554596026-5 68 -0.252151 hybrid +143_1-15 Q0 MARCO_14_1551711934-5 69 -0.252287 hybrid +143_1-15 Q0 MARCO_30_899449670-20 70 -0.255513 hybrid +143_1-15 Q0 MARCO_14_1551333378-4 71 -0.256164 hybrid +143_1-15 Q0 MARCO_01_829924766-20 72 -0.258341 hybrid +143_1-15 Q0 MARCO_07_1253770347-2 73 -0.260087 hybrid +143_1-15 Q0 MARCO_56_1317023844-5 74 -0.262315 hybrid +143_1-15 Q0 MARCO_28_1762039604-16 75 -0.271660 hybrid +143_1-15 Q0 MARCO_30_899811894-27 76 -0.272998 hybrid +143_1-15 Q0 MARCO_30_818973623-78 77 -0.273753 hybrid +143_1-15 Q0 MARCO_47_921598546-9 78 -0.275354 hybrid +143_1-15 Q0 MARCO_14_1547266281-2 79 -0.277549 hybrid +143_1-15 Q0 MARCO_30_899683844-3 80 -0.278236 hybrid +143_1-15 Q0 MARCO_09_353220401-6 81 -0.278696 hybrid +143_1-15 Q0 MARCO_01_830855712-15 82 -0.279904 hybrid +143_1-15 Q0 MARCO_29_831158258-2 83 -0.286483 hybrid +143_1-15 Q0 MARCO_14_1549918625-4 84 -0.291885 hybrid +143_1-15 Q0 MARCO_01_830855712-17 85 -0.294244 hybrid +143_1-15 Q0 MARCO_44_621136353-8 86 -0.299705 hybrid +143_1-15 Q0 MARCO_30_900212772-9 87 -0.302050 hybrid +143_1-15 Q0 MARCO_14_1550414574-25 88 -0.306818 hybrid +143_1-15 Q0 MARCO_19_2510157290-27 89 -0.310070 hybrid +143_1-15 Q0 MARCO_34_476172808-4 90 -0.310563 hybrid +143_1-15 Q0 MARCO_14_1552859918-15 91 -0.310575 hybrid +143_1-15 Q0 MARCO_19_2496262515-18 92 -0.310728 hybrid +143_1-15 Q0 MARCO_14_1551568342-1 93 -0.315304 hybrid +143_1-15 Q0 MARCO_01_832212458-34 94 -0.317277 hybrid +143_1-15 Q0 MARCO_19_2512376372-37 95 -0.317332 hybrid +143_1-15 Q0 MARCO_19_2493609746-23 96 -0.317335 hybrid +143_1-15 Q0 MARCO_30_899783865-2 97 -0.317569 hybrid +143_1-15 Q0 MARCO_30_900441795-2 98 -0.319966 hybrid +143_1-15 Q0 MARCO_22_1372298679-1 99 -0.321805 hybrid +143_1-15 Q0 MARCO_40_1276361600-4 100 -0.322083 hybrid +143_1-17 Q0 MARCO_10_260431490-19 1 0.250003 hybrid +143_1-17 Q0 MARCO_43_1244550245-16 2 0.221146 hybrid +143_1-17 Q0 MARCO_09_1337153585-7 3 0.186715 hybrid +143_1-17 Q0 MARCO_37_835780776-18 4 0.171091 hybrid +143_1-17 Q0 MARCO_27_1335956273-4 5 0.131860 hybrid +143_1-17 Q0 MARCO_27_1337283708-6 6 0.116398 hybrid +143_1-17 Q0 MARCO_55_1287485776-3 7 0.115972 hybrid +143_1-17 Q0 MARCO_09_1337153585-5 8 0.102419 hybrid +143_1-17 Q0 MARCO_09_1337153585-3 9 0.102419 hybrid +143_1-17 Q0 MARCO_15_1874813588-13 10 0.100527 hybrid +143_1-17 Q0 MARCO_04_219119614-7 11 0.095649 hybrid +143_1-17 Q0 MARCO_55_1278906673-12 12 0.088154 hybrid +143_1-17 Q0 MARCO_30_894043860-3 13 0.079621 hybrid +143_1-17 Q0 MARCO_28_315959874-8 14 0.061201 hybrid +143_1-17 Q0 MARCO_06_1071286545-61 15 0.057697 hybrid +143_1-17 Q0 MARCO_28_286276433-1 16 0.053027 hybrid +143_1-17 Q0 MARCO_17_4118145988-5 17 0.025242 hybrid +143_1-17 Q0 MARCO_05_596117696-5 18 0.024400 hybrid +143_1-17 Q0 MARCO_20_1123210514-3 19 0.017910 hybrid +143_1-17 Q0 MARCO_50_2164186291-151 20 -0.006096 hybrid +143_1-17 Q0 MARCO_10_790196439-10 21 -0.008263 hybrid +143_1-17 Q0 MARCO_58_1508432866-3 22 -0.013231 hybrid +143_1-17 Q0 MARCO_19_249632023-7 23 -0.015028 hybrid +143_1-17 Q0 MARCO_51_113466954-6 24 -0.016571 hybrid +143_1-17 Q0 MARCO_10_120457537-5 25 -0.019783 hybrid +143_1-17 Q0 MARCO_58_1508436871-3 26 -0.024644 hybrid +143_1-17 Q0 MARCO_24_1015430307-2 27 -0.025930 hybrid +143_1-17 Q0 MARCO_06_1905214190-6 28 -0.026682 hybrid +143_1-17 Q0 MARCO_30_1006002195-9 29 -0.032173 hybrid +143_1-17 Q0 MARCO_14_1191455815-2 30 -0.038191 hybrid +143_1-17 Q0 MARCO_30_1091150572-37 31 -0.058554 hybrid +143_1-17 Q0 MARCO_47_1603000615-2 32 -0.059154 hybrid +143_1-17 Q0 MARCO_19_2046519096-1 33 -0.063320 hybrid +143_1-17 Q0 MARCO_55_1278906673-10 34 -0.063724 hybrid +143_1-17 Q0 MARCO_11_119909427-1 35 -0.064510 hybrid +143_1-17 Q0 MARCO_11_1468726849-2 36 -0.072886 hybrid +143_1-17 Q0 MARCO_03_1787230806-3 37 -0.073016 hybrid +143_1-17 Q0 MARCO_03_1784737014-3 38 -0.073016 hybrid +143_1-17 Q0 MARCO_40_453444519-2 39 -0.081403 hybrid +143_1-17 Q0 MARCO_45_537951926-1 40 -0.082790 hybrid +143_1-17 Q0 MARCO_22_1189602563-2 41 -0.086310 hybrid +143_1-17 Q0 MARCO_24_1015430307-3 42 -0.089448 hybrid +143_1-17 Q0 MARCO_40_1187865557-2 43 -0.089611 hybrid +143_1-17 Q0 MARCO_20_1123210514-1 44 -0.092115 hybrid +143_1-17 Q0 MARCO_14_127340878-1 45 -0.094141 hybrid +143_1-17 Q0 MARCO_47_292639442-4 46 -0.096421 hybrid +143_1-17 Q0 MARCO_28_315975032-7 47 -0.097751 hybrid +143_1-17 Q0 MARCO_28_315984618-7 48 -0.097751 hybrid +143_1-17 Q0 MARCO_28_309385335-17 49 -0.097751 hybrid +143_1-17 Q0 MARCO_27_1335956273-5 50 -0.098824 hybrid +143_1-17 Q0 MARCO_57_1269990821-3 51 -0.098835 hybrid +143_1-17 Q0 MARCO_13_321381752-1 52 -0.103051 hybrid +143_1-17 Q0 MARCO_27_1332721658-5 53 -0.103068 hybrid +143_1-17 Q0 MARCO_10_790295123-3 54 -0.104264 hybrid +143_1-17 Q0 MARCO_47_1603000615-6 55 -0.110692 hybrid +143_1-17 Q0 MARCO_10_120256054-2 56 -0.110849 hybrid +143_1-17 Q0 MARCO_27_1336323682-6 57 -0.114352 hybrid +143_1-17 Q0 MARCO_27_1238733637-4 58 -0.117378 hybrid +143_1-17 Q0 MARCO_57_1274690822-2 59 -0.117760 hybrid +143_1-17 Q0 MARCO_51_634919600-1 60 -0.121856 hybrid +143_1-17 Q0 MARCO_17_2510783820-53 61 -0.129521 hybrid +143_1-17 Q0 MARCO_50_1440908477-6 62 -0.134322 hybrid +143_1-17 Q0 MARCO_35_127793957-1 63 -0.134546 hybrid +143_1-17 Q0 MARCO_28_286276433-4 64 -0.136163 hybrid +143_1-17 Q0 MARCO_39_617517093-8 65 -0.142209 hybrid +143_1-17 Q0 MARCO_50_2392281395-12 66 -0.143394 hybrid +143_1-17 Q0 MARCO_47_1602683698-2 67 -0.150715 hybrid +143_1-17 Q0 MARCO_30_1084201401-18 68 -0.152910 hybrid +143_1-17 Q0 MARCO_29_795107192-2 69 -0.154830 hybrid +143_1-17 Q0 MARCO_55_246915017-2 70 -0.164003 hybrid +143_1-17 Q0 MARCO_18_3124953992-148 71 -0.165227 hybrid +143_1-17 Q0 KILT_2802175-4 72 -0.172610 hybrid +143_1-17 Q0 MARCO_03_1786621820-2 73 -0.179257 hybrid +143_1-17 Q0 MARCO_03_1787782681-4 74 -0.179257 hybrid +143_1-17 Q0 MARCO_19_2046519096-3 75 -0.185387 hybrid +143_1-17 Q0 MARCO_30_1006002195-1 76 -0.189429 hybrid +143_1-17 Q0 MARCO_50_1452511370-4 77 -0.189688 hybrid +143_1-17 Q0 MARCO_41_2085351244-13 78 -0.191984 hybrid +143_1-17 Q0 MARCO_58_1508486791-2 79 -0.192484 hybrid +143_1-17 Q0 MARCO_17_3703353004-1 80 -0.193225 hybrid +143_1-17 Q0 MARCO_17_431954845-2 81 -0.196554 hybrid +143_1-17 Q0 MARCO_51_119267475-6 82 -0.200944 hybrid +143_1-17 Q0 MARCO_57_1436318624-4 83 -0.202426 hybrid +143_1-17 Q0 MARCO_55_1287485776-2 84 -0.203824 hybrid +143_1-17 Q0 MARCO_17_3703678333-1 85 -0.205435 hybrid +143_1-17 Q0 MARCO_40_550347645-1 86 -0.214356 hybrid +143_1-17 Q0 MARCO_28_330069875-3 87 -0.214901 hybrid +143_1-17 Q0 MARCO_19_2046519096-9 88 -0.216708 hybrid +143_1-17 Q0 KILT_59012195-25 89 -0.218937 hybrid +143_1-17 Q0 MARCO_30_1082648100-1 90 -0.223075 hybrid +143_1-17 Q0 MARCO_45_1436207481-14 91 -0.223361 hybrid +143_1-17 Q0 MARCO_03_1767653065-5 92 -0.225219 hybrid +143_1-17 Q0 MARCO_57_1274506455-2 93 -0.225691 hybrid +143_1-17 Q0 KILT_53326349-3 94 -0.229396 hybrid +143_1-17 Q0 MARCO_57_914510789-3 95 -0.246834 hybrid +143_1-17 Q0 MARCO_22_1189602563-4 96 -0.247322 hybrid +143_1-17 Q0 MARCO_17_3703678333-8 97 -0.247642 hybrid +143_1-17 Q0 MARCO_50_1421354218-15 98 -0.247878 hybrid +143_1-17 Q0 MARCO_39_824677086-2 99 -0.248361 hybrid +143_1-17 Q0 MARCO_31_935635753-1 100 -0.249997 hybrid +143_1-19 Q0 MARCO_31_295248992-6 1 0.305907 hybrid +143_1-19 Q0 MARCO_29_1334919388-38 2 0.250000 hybrid +143_1-19 Q0 MARCO_19_2484129627-21 3 0.182797 hybrid +143_1-19 Q0 MARCO_01_833156633-12 4 0.101299 hybrid +143_1-19 Q0 MARCO_19_2498800878-11 5 0.101299 hybrid +143_1-19 Q0 MARCO_01_831105559-28 6 0.101299 hybrid +143_1-19 Q0 MARCO_19_2512475672-14 7 0.101299 hybrid +143_1-19 Q0 MARCO_30_898878792-31 8 0.093628 hybrid +143_1-19 Q0 MARCO_30_899942587-12 9 0.056915 hybrid +143_1-19 Q0 MARCO_01_829924766-18 10 0.051398 hybrid +143_1-19 Q0 MARCO_19_2488220035-29 11 0.048195 hybrid +143_1-19 Q0 MARCO_01_828261466-14 12 0.048195 hybrid +143_1-19 Q0 MARCO_19_2480603792-40 13 0.048195 hybrid +143_1-19 Q0 MARCO_01_829868993-11 14 0.048195 hybrid +143_1-19 Q0 MARCO_01_827962921-33 15 0.048195 hybrid +143_1-19 Q0 MARCO_01_830196248-33 16 0.048195 hybrid +143_1-19 Q0 MARCO_01_833253499-9 17 0.048195 hybrid +143_1-19 Q0 MARCO_01_829478272-26 18 0.048195 hybrid +143_1-19 Q0 MARCO_19_2508528923-33 19 0.048195 hybrid +143_1-19 Q0 MARCO_19_2496958346-29 20 0.048195 hybrid +143_1-19 Q0 MARCO_24_1140025590-4 21 0.017896 hybrid +143_1-19 Q0 MARCO_12_1167871651-3 22 0.016032 hybrid +143_1-19 Q0 MARCO_14_1549450269-18 23 0.006511 hybrid +143_1-19 Q0 MARCO_48_763385209-1 24 0.004207 hybrid +143_1-19 Q0 MARCO_36_1101932240-9 25 0.001893 hybrid +143_1-19 Q0 MARCO_37_251647739-7 26 -0.012678 hybrid +143_1-19 Q0 MARCO_19_2501168671-38 27 -0.049423 hybrid +143_1-19 Q0 MARCO_19_2495281943-21 28 -0.055495 hybrid +143_1-19 Q0 MARCO_01_830855712-13 29 -0.060612 hybrid +143_1-19 Q0 MARCO_30_900212772-9 30 -0.063304 hybrid +143_1-19 Q0 MARCO_19_2513676244-13 31 -0.066236 hybrid +143_1-19 Q0 MARCO_01_831982137-19 32 -0.066236 hybrid +143_1-19 Q0 MARCO_19_2489928640-11 33 -0.066236 hybrid +143_1-19 Q0 MARCO_14_1550215043-13 34 -0.068273 hybrid +143_1-19 Q0 MARCO_19_2499051986-30 35 -0.070778 hybrid +143_1-19 Q0 MARCO_07_795635402-6 36 -0.070823 hybrid +143_1-19 Q0 MARCO_19_2501049434-28 37 -0.082924 hybrid +143_1-19 Q0 MARCO_19_2486322268-16 38 -0.082924 hybrid +143_1-19 Q0 MARCO_12_1168148020-6 39 -0.087920 hybrid +143_1-19 Q0 MARCO_47_921857188-3 40 -0.090808 hybrid +143_1-19 Q0 MARCO_12_1167831191-1 41 -0.105387 hybrid +143_1-19 Q0 MARCO_13_1763260734-6 42 -0.107594 hybrid +143_1-19 Q0 MARCO_28_647765232-9 43 -0.126956 hybrid +143_1-19 Q0 MARCO_26_110906995-4 44 -0.138631 hybrid +143_1-19 Q0 MARCO_30_900052011-23 45 -0.139332 hybrid +143_1-19 Q0 MARCO_15_310936140-1 46 -0.143569 hybrid +143_1-19 Q0 MARCO_30_899942587-10 47 -0.143974 hybrid +143_1-19 Q0 MARCO_17_4124901567-6 48 -0.146644 hybrid +143_1-19 Q0 MARCO_01_826870997-54 49 -0.147280 hybrid +143_1-19 Q0 MARCO_01_828039823-24 50 -0.147498 hybrid +143_1-19 Q0 MARCO_57_615778094-5 51 -0.154300 hybrid +143_1-19 Q0 MARCO_19_2482062737-48 52 -0.157664 hybrid +143_1-19 Q0 MARCO_17_2381812120-15 53 -0.169966 hybrid +143_1-19 Q0 MARCO_50_2146684733-22 54 -0.176662 hybrid +143_1-19 Q0 MARCO_12_1168314748-2 55 -0.184741 hybrid +143_1-19 Q0 MARCO_24_1142591424-3 56 -0.185052 hybrid +143_1-19 Q0 MARCO_36_1101870115-12 57 -0.187753 hybrid +143_1-19 Q0 MARCO_36_1101942727-8 58 -0.187753 hybrid +143_1-19 Q0 MARCO_12_1168353023-12 59 -0.187864 hybrid +143_1-19 Q0 MARCO_13_139103428-2 60 -0.188291 hybrid +143_1-19 Q0 MARCO_17_4189538972-43 61 -0.198155 hybrid +143_1-19 Q0 MARCO_19_2505970459-19 62 -0.203756 hybrid +143_1-19 Q0 MARCO_50_1673836905-46 63 -0.208851 hybrid +143_1-19 Q0 MARCO_19_2484749825-48 64 -0.216583 hybrid +143_1-19 Q0 MARCO_10_365166925-88 65 -0.218372 hybrid +143_1-19 Q0 MARCO_56_1317023844-5 66 -0.219257 hybrid +143_1-19 Q0 MARCO_14_1549593433-5 67 -0.221139 hybrid +143_1-19 Q0 MARCO_14_1554596026-6 68 -0.221428 hybrid +143_1-19 Q0 MARCO_20_360543043-12 69 -0.221651 hybrid +143_1-19 Q0 MARCO_12_1167746272-1 70 -0.224155 hybrid +143_1-19 Q0 MARCO_14_1550215043-32 71 -0.232359 hybrid +143_1-19 Q0 MARCO_19_2510046993-2 72 -0.232991 hybrid +143_1-19 Q0 MARCO_50_938168189-30 73 -0.243215 hybrid +143_1-19 Q0 MARCO_30_898630401-9 74 -0.246556 hybrid +143_1-19 Q0 MARCO_01_830147397-20 75 -0.249217 hybrid +143_1-19 Q0 MARCO_51_340692408-2 76 -0.250000 hybrid +143_1-19 Q0 MARCO_30_899315002-13 77 -0.250485 hybrid +143_1-19 Q0 MARCO_40_1187552052-3 78 -0.251232 hybrid +143_1-19 Q0 MARCO_19_2499309473-44 79 -0.251397 hybrid +143_1-19 Q0 MARCO_30_826115762-20 80 -0.253154 hybrid +143_1-19 Q0 MARCO_35_305984262-6 81 -0.257127 hybrid +143_1-19 Q0 MARCO_30_826115762-19 82 -0.258391 hybrid +143_1-19 Q0 MARCO_01_830855712-16 83 -0.263022 hybrid +143_1-19 Q0 MARCO_47_921598546-2 84 -0.264585 hybrid +143_1-19 Q0 MARCO_19_2485886584-20 85 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2497429189-23 86 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2502484972-27 87 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2500684415-29 88 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2495106325-33 89 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2511043467-25 90 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2480755460-21 91 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2507832241-26 92 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2496532638-50 93 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2513795897-41 94 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2508482543-35 95 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2514020162-35 96 -0.264700 hybrid +143_1-19 Q0 MARCO_19_2492452608-93 97 -0.264704 hybrid +143_1-19 Q0 MARCO_19_2480972520-28 98 -0.264704 hybrid +143_1-19 Q0 MARCO_19_2491025829-69 99 -0.264922 hybrid +143_1-19 Q0 MARCO_30_900016222-20 100 -0.268815 hybrid +143_1-3 Q0 MARCO_36_839237348-5 1 0.250000 hybrid +143_1-3 Q0 MARCO_36_839237348-4 2 0.095287 hybrid +143_1-3 Q0 MARCO_36_839920756-4 3 -0.238373 hybrid +143_1-3 Q0 MARCO_01_1029544932-21 4 -0.248038 hybrid +143_1-3 Q0 MARCO_51_1439694472-1 5 -0.250000 hybrid +143_1-3 Q0 MARCO_14_127408603-2 6 -0.280902 hybrid +143_1-3 Q0 MARCO_35_305195648-4 7 -0.290513 hybrid +143_1-3 Q0 MARCO_09_545398862-2 8 -0.293939 hybrid +143_1-3 Q0 MARCO_57_1274444085-4 9 -0.324347 hybrid +143_1-3 Q0 MARCO_18_4361109773-21 10 -0.331024 hybrid +143_1-3 Q0 MARCO_57_1273579679-8 11 -0.336473 hybrid +143_1-3 Q0 MARCO_35_22431210-5 12 -0.350277 hybrid +143_1-3 Q0 KILT_18566274-22 13 -0.351356 hybrid +143_1-3 Q0 MARCO_19_249547082-24 14 -0.364704 hybrid +143_1-3 Q0 MARCO_18_4359208287-10 15 -0.375981 hybrid +143_1-3 Q0 MARCO_19_2504515851-25 16 -0.376718 hybrid +143_1-3 Q0 MARCO_19_2494602307-8 17 -0.376718 hybrid +143_1-3 Q0 MARCO_19_2506613429-12 18 -0.376718 hybrid +143_1-3 Q0 MARCO_11_226013166-18 19 -0.386571 hybrid +143_1-3 Q0 MARCO_13_697608169-2 20 -0.394197 hybrid +143_1-3 Q0 MARCO_41_291470521-5 21 -0.396971 hybrid +143_1-3 Q0 MARCO_01_1029544932-18 22 -0.400582 hybrid +143_1-3 Q0 MARCO_17_1928557765-13 23 -0.406482 hybrid +143_1-3 Q0 KILT_3049649-2 24 -0.410499 hybrid +143_1-3 Q0 MARCO_19_2507420365-13 25 -0.416444 hybrid +143_1-3 Q0 MARCO_19_2507420365-11 26 -0.416444 hybrid +143_1-3 Q0 KILT_21422806-19 27 -0.417955 hybrid +143_1-3 Q0 KILT_45526962-7 28 -0.419636 hybrid +143_1-3 Q0 MARCO_06_1142913471-94 29 -0.420803 hybrid +143_1-3 Q0 MARCO_28_563409084-3 30 -0.421681 hybrid +143_1-3 Q0 MARCO_17_1928557765-7 31 -0.424420 hybrid +143_1-3 Q0 MARCO_19_2493277139-14 32 -0.428257 hybrid +143_1-3 Q0 MARCO_19_2497021198-33 33 -0.435021 hybrid +143_1-3 Q0 MARCO_14_127408603-3 34 -0.435954 hybrid +143_1-3 Q0 MARCO_19_2552076513-4 35 -0.436156 hybrid +143_1-3 Q0 MARCO_19_2491325369-32 36 -0.436315 hybrid +143_1-3 Q0 MARCO_13_697608169-3 37 -0.437017 hybrid +143_1-3 Q0 MARCO_23_762117817-1 38 -0.446342 hybrid +143_1-3 Q0 KILT_2964862-7 39 -0.448112 hybrid +143_1-3 Q0 MARCO_44_623736186-5 40 -0.450723 hybrid +143_1-3 Q0 MARCO_44_624428239-4 41 -0.454367 hybrid +143_1-3 Q0 MARCO_19_2510724116-14 42 -0.455756 hybrid +143_1-3 Q0 MARCO_19_2491950523-13 43 -0.455756 hybrid +143_1-3 Q0 MARCO_37_71324474-89 44 -0.456236 hybrid +143_1-3 Q0 KILT_7235622-24 45 -0.456538 hybrid +143_1-3 Q0 KILT_1297457-4 46 -0.459556 hybrid +143_1-3 Q0 MARCO_19_2485043099-38 47 -0.460258 hybrid +143_1-3 Q0 MARCO_17_434176964-64 48 -0.464448 hybrid +143_1-3 Q0 MARCO_19_2503436333-17 49 -0.465116 hybrid +143_1-3 Q0 MARCO_01_829618755-29 50 -0.465127 hybrid +143_1-3 Q0 MARCO_50_2496250285-7 51 -0.465145 hybrid +143_1-3 Q0 MARCO_57_1273579679-2 52 -0.466222 hybrid +143_1-3 Q0 MARCO_48_1914459474-3 53 -0.466395 hybrid +143_1-3 Q0 MARCO_12_962977832-8 54 -0.466938 hybrid +143_1-3 Q0 MARCO_12_962939308-8 55 -0.466938 hybrid +143_1-3 Q0 MARCO_12_964310749-8 56 -0.466938 hybrid +143_1-3 Q0 MARCO_12_962892115-8 57 -0.466938 hybrid +143_1-3 Q0 MARCO_12_963985330-8 58 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962710378-8 59 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962777636-8 60 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963433660-8 61 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962825556-8 62 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963728317-8 63 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962663303-8 64 -0.466943 hybrid +143_1-3 Q0 MARCO_12_965061412-8 65 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964664443-8 66 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963091950-8 67 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963167443-8 68 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964548534-8 69 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964138186-8 70 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963424073-8 71 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964654967-8 72 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964119291-8 73 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964453700-8 74 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963253534-8 75 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964272860-8 76 -0.466943 hybrid +143_1-3 Q0 MARCO_12_965004014-8 77 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962253334-8 78 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964081079-8 79 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964348115-8 80 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964128792-8 81 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962433572-8 82 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963851835-8 83 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962453082-8 84 -0.466943 hybrid +143_1-3 Q0 MARCO_12_965070906-8 85 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962347336-8 86 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963006301-8 87 -0.466943 hybrid +143_1-3 Q0 MARCO_12_965080414-8 88 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962490901-8 89 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963282020-8 90 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962853771-8 91 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964481974-8 92 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963101369-8 93 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963509545-8 94 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962177045-8 95 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964957179-8 96 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962596888-8 97 -0.466943 hybrid +143_1-3 Q0 MARCO_12_964558201-8 98 -0.466943 hybrid +143_1-3 Q0 MARCO_12_962109776-8 99 -0.466943 hybrid +143_1-3 Q0 MARCO_12_963794937-8 100 -0.466943 hybrid +143_1-5 Q0 MARCO_36_839237348-4 1 0.250000 hybrid +143_1-5 Q0 MARCO_37_257551387-2 2 0.122604 hybrid +143_1-5 Q0 MARCO_36_839920756-4 3 0.079386 hybrid +143_1-5 Q0 MARCO_40_274248920-110 4 0.009169 hybrid +143_1-5 Q0 MARCO_54_319242251-7 5 -0.041287 hybrid +143_1-5 Q0 MARCO_36_839237348-5 6 -0.083473 hybrid +143_1-5 Q0 MARCO_32_762138222-3 7 -0.096482 hybrid +143_1-5 Q0 MARCO_24_1911131524-3 8 -0.099094 hybrid +143_1-5 Q0 MARCO_26_1061461405-2 9 -0.105843 hybrid +143_1-5 Q0 MARCO_28_338550826-12 10 -0.160735 hybrid +143_1-5 Q0 MARCO_18_1313902892-12 11 -0.164764 hybrid +143_1-5 Q0 MARCO_48_1598628471-6 12 -0.171989 hybrid +143_1-5 Q0 MARCO_37_71324474-89 13 -0.173557 hybrid +143_1-5 Q0 MARCO_40_316139621-192 14 -0.189842 hybrid +143_1-5 Q0 MARCO_27_586060148-22 15 -0.213391 hybrid +143_1-5 Q0 KILT_2964862-4 16 -0.218479 hybrid +143_1-5 Q0 MARCO_48_1598615957-4 17 -0.219158 hybrid +143_1-5 Q0 MARCO_34_1720030514-4 18 -0.229505 hybrid +143_1-5 Q0 MARCO_56_904869923-3 19 -0.239743 hybrid +143_1-5 Q0 MARCO_13_795880999-1 20 -0.241144 hybrid +143_1-5 Q0 MARCO_30_1754924467-9 21 -0.250000 hybrid +143_1-5 Q0 MARCO_47_980370782-4 22 -0.251646 hybrid +143_1-5 Q0 MARCO_22_992740285-2 23 -0.253788 hybrid +143_1-5 Q0 MARCO_13_798486522-1 24 -0.256147 hybrid +143_1-5 Q0 MARCO_15_624338736-35 25 -0.264705 hybrid +143_1-5 Q0 MARCO_35_1469847018-2 26 -0.266967 hybrid +143_1-5 Q0 MARCO_01_1034490048-173 27 -0.269979 hybrid +143_1-5 Q0 MARCO_24_1910877220-2 28 -0.275482 hybrid +143_1-5 Q0 MARCO_23_1277930196-1 29 -0.277260 hybrid +143_1-5 Q0 MARCO_27_207237073-2 30 -0.279627 hybrid +143_1-5 Q0 MARCO_14_1772314504-10 31 -0.281614 hybrid +143_1-5 Q0 KILT_2964862-7 32 -0.290385 hybrid +143_1-5 Q0 MARCO_48_1293665084-2 33 -0.299835 hybrid +143_1-5 Q0 MARCO_48_1598029286-8 34 -0.300006 hybrid +143_1-5 Q0 MARCO_27_1643809758-5 35 -0.303126 hybrid +143_1-5 Q0 MARCO_10_1145633468-3 36 -0.310616 hybrid +143_1-5 Q0 MARCO_48_1597910815-5 37 -0.310923 hybrid +143_1-5 Q0 MARCO_40_272761218-201 38 -0.317016 hybrid +143_1-5 Q0 MARCO_47_987353377-4 39 -0.321557 hybrid +143_1-5 Q0 MARCO_30_1781494900-1 40 -0.323551 hybrid +143_1-5 Q0 MARCO_53_740831554-4 41 -0.327277 hybrid +143_1-5 Q0 MARCO_28_655637251-3 42 -0.332862 hybrid +143_1-5 Q0 MARCO_36_28162569-4 43 -0.334697 hybrid +143_1-5 Q0 MARCO_50_1442581649-1 44 -0.335994 hybrid +143_1-5 Q0 MARCO_57_1274444085-4 45 -0.338380 hybrid +143_1-5 Q0 MARCO_35_305195648-4 46 -0.339879 hybrid +143_1-5 Q0 MARCO_23_1278383414-1 47 -0.342898 hybrid +143_1-5 Q0 MARCO_40_316139621-218 48 -0.343201 hybrid +143_1-5 Q0 MARCO_40_667182643-1 49 -0.344462 hybrid +143_1-5 Q0 KILT_52905301-7 50 -0.345871 hybrid +143_1-5 Q0 MARCO_24_1911131524-2 51 -0.350741 hybrid +143_1-5 Q0 MARCO_27_586060148-26 52 -0.350893 hybrid +143_1-5 Q0 KILT_42371251-1 53 -0.351661 hybrid +143_1-5 Q0 MARCO_19_2654373147-9 54 -0.353516 hybrid +143_1-5 Q0 MARCO_19_2553644825-3 55 -0.354750 hybrid +143_1-5 Q0 MARCO_53_740156631-6 56 -0.357579 hybrid +143_1-5 Q0 MARCO_07_1253796222-18 57 -0.360176 hybrid +143_1-5 Q0 MARCO_19_2063237119-3 58 -0.361654 hybrid +143_1-5 Q0 MARCO_36_841623594-2 59 -0.362206 hybrid +143_1-5 Q0 MARCO_39_610901714-2 60 -0.363828 hybrid +143_1-5 Q0 KILT_52906318-6 61 -0.365881 hybrid +143_1-5 Q0 MARCO_07_1253796222-11 62 -0.367393 hybrid +143_1-5 Q0 MARCO_00_1070335325-23 63 -0.367899 hybrid +143_1-5 Q0 MARCO_01_1034490048-171 64 -0.371559 hybrid +143_1-5 Q0 MARCO_40_316139621-233 65 -0.372696 hybrid +143_1-5 Q0 MARCO_27_911805114-2 66 -0.373592 hybrid +143_1-5 Q0 MARCO_40_272761218-203 67 -0.374842 hybrid +143_1-5 Q0 MARCO_12_277139193-1 68 -0.379840 hybrid +143_1-5 Q0 MARCO_36_842143841-6 69 -0.379879 hybrid +143_1-5 Q0 MARCO_00_559066306-2 70 -0.382639 hybrid +143_1-5 Q0 MARCO_00_558234718-2 71 -0.382639 hybrid +143_1-5 Q0 MARCO_00_558872344-2 72 -0.382639 hybrid +143_1-5 Q0 MARCO_00_558943825-2 73 -0.382639 hybrid +143_1-5 Q0 MARCO_00_559196233-4 74 -0.382639 hybrid +143_1-5 Q0 MARCO_00_558811786-2 75 -0.382639 hybrid +143_1-5 Q0 MARCO_00_558968878-2 76 -0.382639 hybrid +143_1-5 Q0 MARCO_00_559039464-2 77 -0.382639 hybrid +143_1-5 Q0 MARCO_37_254400242-7 78 -0.383908 hybrid +143_1-5 Q0 MARCO_41_1167435714-40 79 -0.386702 hybrid +143_1-5 Q0 MARCO_48_1598615957-3 80 -0.390249 hybrid +143_1-5 Q0 MARCO_00_557015679-3 81 -0.392620 hybrid +143_1-5 Q0 MARCO_35_336625773-8 82 -0.394638 hybrid +143_1-5 Q0 MARCO_48_1383139946-8 83 -0.396882 hybrid +143_1-5 Q0 MARCO_44_51723768-4 84 -0.398414 hybrid +143_1-5 Q0 MARCO_40_264734827-102 85 -0.399202 hybrid +143_1-5 Q0 MARCO_07_640648224-3 86 -0.400212 hybrid +143_1-5 Q0 MARCO_09_673203336-4 87 -0.400475 hybrid +143_1-5 Q0 MARCO_47_980864637-2 88 -0.401007 hybrid +143_1-5 Q0 MARCO_47_606816804-15 89 -0.403642 hybrid +143_1-5 Q0 MARCO_22_1190425212-7 90 -0.404244 hybrid +143_1-5 Q0 MARCO_14_1550501220-11 91 -0.404647 hybrid +143_1-5 Q0 MARCO_52_805775456-44 92 -0.406557 hybrid +143_1-5 Q0 MARCO_52_805775456-46 93 -0.406557 hybrid +143_1-5 Q0 MARCO_52_805775456-40 94 -0.406557 hybrid +143_1-5 Q0 MARCO_52_805775456-42 95 -0.406561 hybrid +143_1-5 Q0 MARCO_02_601189717-5 96 -0.407267 hybrid +143_1-5 Q0 MARCO_24_1915849134-11 97 -0.409417 hybrid +143_1-5 Q0 MARCO_37_71324474-65 98 -0.411629 hybrid +143_1-5 Q0 MARCO_19_2555167830-3 99 -0.412006 hybrid +143_1-5 Q0 MARCO_19_2654373147-6 100 -0.413046 hybrid +143_1-7 Q0 MARCO_36_839920756-4 1 0.250000 hybrid +143_1-7 Q0 KILT_2964862-7 2 0.125372 hybrid +143_1-7 Q0 MARCO_36_839237348-5 3 0.005750 hybrid +143_1-7 Q0 MARCO_36_839237348-4 4 -0.069541 hybrid +143_1-7 Q0 MARCO_35_305195648-4 5 -0.087764 hybrid +143_1-7 Q0 MARCO_35_22431210-5 6 -0.100723 hybrid +143_1-7 Q0 MARCO_27_586060148-22 7 -0.179536 hybrid +143_1-7 Q0 MARCO_36_28162569-4 8 -0.191096 hybrid +143_1-7 Q0 MARCO_40_333010660-10 9 -0.193371 hybrid +143_1-7 Q0 MARCO_49_27352257-2 10 -0.234044 hybrid +143_1-7 Q0 MARCO_50_1897370819-16 11 -0.250000 hybrid +143_1-7 Q0 MARCO_40_274248920-110 12 -0.264968 hybrid +143_1-7 Q0 MARCO_35_22431210-4 13 -0.272482 hybrid +143_1-7 Q0 MARCO_19_2555167830-3 14 -0.273129 hybrid +143_1-7 Q0 MARCO_59_777494467-3 15 -0.286113 hybrid +143_1-7 Q0 MARCO_26_164255046-217 16 -0.286350 hybrid +143_1-7 Q0 MARCO_19_2480702022-42 17 -0.287356 hybrid +143_1-7 Q0 MARCO_35_305195648-2 18 -0.300286 hybrid +143_1-7 Q0 MARCO_36_842143841-6 19 -0.302550 hybrid +143_1-7 Q0 MARCO_40_1166790196-3 20 -0.306718 hybrid +143_1-7 Q0 MARCO_33_505962289-2 21 -0.307628 hybrid +143_1-7 Q0 MARCO_22_992740285-2 22 -0.308034 hybrid +143_1-7 Q0 MARCO_13_697608169-2 23 -0.308149 hybrid +143_1-7 Q0 MARCO_05_452612308-1 24 -0.329262 hybrid +143_1-7 Q0 MARCO_57_1274444085-4 25 -0.329905 hybrid +143_1-7 Q0 MARCO_27_586060148-18 26 -0.331127 hybrid +143_1-7 Q0 MARCO_01_832262097-27 27 -0.333657 hybrid +143_1-7 Q0 MARCO_54_319242251-7 28 -0.334207 hybrid +143_1-7 Q0 MARCO_27_1292101712-3 29 -0.335188 hybrid +143_1-7 Q0 MARCO_13_400868314-6 30 -0.339461 hybrid +143_1-7 Q0 MARCO_06_1833576180-16 31 -0.340066 hybrid +143_1-7 Q0 MARCO_40_293608302-80 32 -0.341232 hybrid +143_1-7 Q0 MARCO_05_316530055-3 33 -0.346084 hybrid +143_1-7 Q0 MARCO_57_1274452224-4 34 -0.348452 hybrid +143_1-7 Q0 MARCO_37_257551387-2 35 -0.352455 hybrid +143_1-7 Q0 MARCO_02_1444615956-4 36 -0.355367 hybrid +143_1-7 Q0 MARCO_27_1292256081-3 37 -0.355367 hybrid +143_1-7 Q0 MARCO_27_1292446299-4 38 -0.355367 hybrid +143_1-7 Q0 MARCO_19_2553644825-3 39 -0.367818 hybrid +143_1-7 Q0 MARCO_36_28162569-1 40 -0.368516 hybrid +143_1-7 Q0 MARCO_19_2496032583-27 41 -0.371103 hybrid +143_1-7 Q0 MARCO_47_1181304031-9 42 -0.371113 hybrid +143_1-7 Q0 MARCO_02_1444586713-2 43 -0.372381 hybrid +143_1-7 Q0 MARCO_27_1292093865-5 44 -0.372381 hybrid +143_1-7 Q0 MARCO_27_1292261349-5 45 -0.372381 hybrid +143_1-7 Q0 MARCO_27_1292270650-5 46 -0.372382 hybrid +143_1-7 Q0 MARCO_56_1001826133-4 47 -0.373035 hybrid +143_1-7 Q0 MARCO_44_624428239-4 48 -0.375322 hybrid +143_1-7 Q0 MARCO_02_1444859871-7 49 -0.376645 hybrid +143_1-7 Q0 MARCO_27_1292440845-3 50 -0.376645 hybrid +143_1-7 Q0 MARCO_22_992740285-1 51 -0.378204 hybrid +143_1-7 Q0 MARCO_44_1555608026-2 52 -0.382085 hybrid +143_1-7 Q0 MARCO_26_164255046-218 53 -0.384895 hybrid +143_1-7 Q0 MARCO_27_1292125742-3 54 -0.386152 hybrid +143_1-7 Q0 MARCO_05_316530055-2 55 -0.387953 hybrid +143_1-7 Q0 MARCO_13_697608169-3 56 -0.388187 hybrid +143_1-7 Q0 MARCO_40_605380166-1 57 -0.389487 hybrid +143_1-7 Q0 MARCO_09_877956354-4 58 -0.390768 hybrid +143_1-7 Q0 MARCO_19_2504261568-5 59 -0.397027 hybrid +143_1-7 Q0 MARCO_04_185169155-4 60 -0.397757 hybrid +143_1-7 Q0 MARCO_05_452612308-6 61 -0.401620 hybrid +143_1-7 Q0 KILT_3049649-2 62 -0.405286 hybrid +143_1-7 Q0 MARCO_36_28162569-3 63 -0.407339 hybrid +143_1-7 Q0 MARCO_51_883170522-4 64 -0.412752 hybrid +143_1-7 Q0 MARCO_19_2497924734-15 65 -0.413184 hybrid +143_1-7 Q0 MARCO_27_43207314-3 66 -0.413986 hybrid +143_1-7 Q0 MARCO_46_706556582-2 67 -0.415621 hybrid +143_1-7 Q0 MARCO_48_1598628471-6 68 -0.417774 hybrid +143_1-7 Q0 MARCO_02_1444501388-3 69 -0.420285 hybrid +143_1-7 Q0 MARCO_59_777494467-2 70 -0.421421 hybrid +143_1-7 Q0 MARCO_37_71324474-89 71 -0.425978 hybrid +143_1-7 Q0 MARCO_35_1470109302-3 72 -0.429060 hybrid +143_1-7 Q0 MARCO_05_317113249-4 73 -0.431584 hybrid +143_1-7 Q0 MARCO_28_1134605989-2 74 -0.432748 hybrid +143_1-7 Q0 MARCO_07_1253796222-18 75 -0.433284 hybrid +143_1-7 Q0 MARCO_07_292622183-2 76 -0.434069 hybrid +143_1-7 Q0 MARCO_01_930142702-3 77 -0.434121 hybrid +143_1-7 Q0 MARCO_13_1224118800-1 78 -0.434218 hybrid +143_1-7 Q0 MARCO_56_1007023628-1 79 -0.435656 hybrid +143_1-7 Q0 MARCO_02_1444455083-11 80 -0.435900 hybrid +143_1-7 Q0 MARCO_02_1444576699-3 81 -0.435900 hybrid +143_1-7 Q0 MARCO_27_1292059270-8 82 -0.435900 hybrid +143_1-7 Q0 MARCO_27_1292277622-3 83 -0.435900 hybrid +143_1-7 Q0 MARCO_27_1292282494-4 84 -0.435900 hybrid +143_1-7 Q0 MARCO_13_1224118800-2 85 -0.435932 hybrid +143_1-7 Q0 MARCO_25_237575203-3 86 -0.439206 hybrid +143_1-7 Q0 MARCO_26_1061461405-2 87 -0.439537 hybrid +143_1-7 Q0 MARCO_32_1773116803-7 88 -0.441902 hybrid +143_1-7 Q0 MARCO_25_1055351809-3 89 -0.443354 hybrid +143_1-7 Q0 MARCO_06_10898394-1 90 -0.443563 hybrid +143_1-7 Q0 MARCO_59_542136689-14 91 -0.445302 hybrid +143_1-7 Q0 MARCO_19_2509735274-9 92 -0.446189 hybrid +143_1-7 Q0 MARCO_04_1216762029-3 93 -0.447367 hybrid +143_1-7 Q0 MARCO_45_801547507-1 94 -0.447421 hybrid +143_1-7 Q0 MARCO_53_741263541-6 95 -0.448618 hybrid +143_1-7 Q0 MARCO_53_741263541-8 96 -0.448618 hybrid +143_1-7 Q0 MARCO_43_712001097-6 97 -0.449998 hybrid +143_1-7 Q0 MARCO_19_2506900055-15 98 -0.452657 hybrid +143_1-7 Q0 MARCO_57_1355044287-5 99 -0.453175 hybrid +143_1-7 Q0 MARCO_40_339551778-60 100 -0.453922 hybrid +143_1-9 Q0 MARCO_11_1466052621-4 1 0.249998 hybrid +143_1-9 Q0 MARCO_12_1868552613-1 2 0.247680 hybrid +143_1-9 Q0 MARCO_50_1170105749-17 3 0.215383 hybrid +143_1-9 Q0 MARCO_11_1466052621-2 4 0.212353 hybrid +143_1-9 Q0 MARCO_03_1767519069-1 5 0.153951 hybrid +143_1-9 Q0 MARCO_11_1466052621-1 6 0.147689 hybrid +143_1-9 Q0 MARCO_49_1322549329-36 7 0.100334 hybrid +143_1-9 Q0 MARCO_49_1322549329-13 8 0.096111 hybrid +143_1-9 Q0 MARCO_16_2992801238-4 9 0.091117 hybrid +143_1-9 Q0 MARCO_16_2992801238-36 10 0.036697 hybrid +143_1-9 Q0 MARCO_16_2992735066-38 11 0.001547 hybrid +143_1-9 Q0 MARCO_16_2992801238-35 12 0.000829 hybrid +143_1-9 Q0 MARCO_50_1170153005-11 13 -0.003280 hybrid +143_1-9 Q0 MARCO_05_425622441-155 14 -0.015593 hybrid +143_1-9 Q0 MARCO_20_1123152510-3 15 -0.026271 hybrid +143_1-9 Q0 MARCO_50_1447842128-24 16 -0.075461 hybrid +143_1-9 Q0 MARCO_50_1664099152-17 17 -0.075482 hybrid +143_1-9 Q0 MARCO_50_1170105749-16 18 -0.075926 hybrid +143_1-9 Q0 MARCO_16_2992801238-43 19 -0.114480 hybrid +143_1-9 Q0 MARCO_50_1170105749-13 20 -0.122073 hybrid +143_1-9 Q0 MARCO_09_1369257847-1 21 -0.124532 hybrid +143_1-9 Q0 MARCO_25_1444907799-11 22 -0.132175 hybrid +143_1-9 Q0 MARCO_49_1322549329-5 23 -0.136256 hybrid +143_1-9 Q0 MARCO_22_1314742990-2 24 -0.136971 hybrid +143_1-9 Q0 MARCO_50_1664099152-16 25 -0.137842 hybrid +143_1-9 Q0 MARCO_11_1466052621-3 26 -0.144317 hybrid +143_1-9 Q0 MARCO_09_1337153585-5 27 -0.154464 hybrid +143_1-9 Q0 MARCO_09_1337153585-3 28 -0.154464 hybrid +143_1-9 Q0 MARCO_49_1322549329-1 29 -0.155172 hybrid +143_1-9 Q0 MARCO_49_1322549329-16 30 -0.156255 hybrid +143_1-9 Q0 MARCO_05_425622441-156 31 -0.161839 hybrid +143_1-9 Q0 MARCO_16_2992801238-3 32 -0.168467 hybrid +143_1-9 Q0 MARCO_16_2992801238-8 33 -0.170473 hybrid +143_1-9 Q0 MARCO_58_1508989598-3 34 -0.177267 hybrid +143_1-9 Q0 MARCO_50_1170105749-32 35 -0.178204 hybrid +143_1-9 Q0 MARCO_16_2987728684-7 36 -0.180033 hybrid +143_1-9 Q0 MARCO_24_1719660578-6 37 -0.183234 hybrid +143_1-9 Q0 MARCO_50_1170153005-7 38 -0.186169 hybrid +143_1-9 Q0 MARCO_30_1595305934-3 39 -0.188212 hybrid +143_1-9 Q0 MARCO_00_885198634-16 40 -0.189243 hybrid +143_1-9 Q0 MARCO_35_17834778-3 41 -0.189955 hybrid +143_1-9 Q0 MARCO_50_1442936026-4 42 -0.190926 hybrid +143_1-9 Q0 MARCO_44_54717487-6 43 -0.194442 hybrid +143_1-9 Q0 MARCO_49_1322549329-2 44 -0.198019 hybrid +143_1-9 Q0 MARCO_48_1743267438-5 45 -0.201198 hybrid +143_1-9 Q0 MARCO_50_1931110882-10 46 -0.202034 hybrid +143_1-9 Q0 MARCO_49_1322549329-25 47 -0.204786 hybrid +143_1-9 Q0 MARCO_49_1322549329-10 48 -0.208600 hybrid +143_1-9 Q0 MARCO_09_1337153585-7 49 -0.212095 hybrid +143_1-9 Q0 MARCO_49_1322549329-4 50 -0.217099 hybrid +143_1-9 Q0 MARCO_50_2493123400-28 51 -0.219046 hybrid +143_1-9 Q0 MARCO_16_2992801238-15 52 -0.219316 hybrid +143_1-9 Q0 MARCO_05_425622441-159 53 -0.223553 hybrid +143_1-9 Q0 MARCO_49_1322549329-27 54 -0.235536 hybrid +143_1-9 Q0 MARCO_49_1322549329-11 55 -0.244160 hybrid +143_1-9 Q0 MARCO_55_1703733697-1 56 -0.245388 hybrid +143_1-9 Q0 MARCO_30_894043860-3 57 -0.247644 hybrid +143_1-9 Q0 MARCO_11_1468726849-2 58 -0.247824 hybrid +143_1-9 Q0 MARCO_50_1073343936-19 59 -0.250002 hybrid +143_1-9 Q0 MARCO_03_1767358800-1 60 -0.254196 hybrid +143_1-9 Q0 KILT_2980180-14 61 -0.261556 hybrid +143_1-9 Q0 MARCO_16_2992801238-7 62 -0.264637 hybrid +143_1-9 Q0 MARCO_50_1433240437-82 63 -0.265942 hybrid +143_1-9 Q0 MARCO_09_1369257847-4 64 -0.270596 hybrid +143_1-9 Q0 MARCO_09_1369257847-2 65 -0.270596 hybrid +143_1-9 Q0 MARCO_58_1508486791-1 66 -0.272823 hybrid +143_1-9 Q0 MARCO_50_1447842128-18 67 -0.274989 hybrid +143_1-9 Q0 KILT_27784417-5 68 -0.275648 hybrid +143_1-9 Q0 MARCO_16_2992801238-51 69 -0.277956 hybrid +143_1-9 Q0 MARCO_50_1447842128-16 70 -0.282388 hybrid +143_1-9 Q0 MARCO_16_2992801238-31 71 -0.284775 hybrid +143_1-9 Q0 MARCO_57_1266958154-2 72 -0.287617 hybrid +143_1-9 Q0 MARCO_47_292639442-4 73 -0.288134 hybrid +143_1-9 Q0 MARCO_49_1322549329-30 74 -0.293121 hybrid +143_1-9 Q0 MARCO_50_2153910656-19 75 -0.296151 hybrid +143_1-9 Q0 MARCO_16_2994499293-10 76 -0.299416 hybrid +143_1-9 Q0 MARCO_27_1334332137-1 77 -0.299852 hybrid +143_1-9 Q0 MARCO_50_1447842128-11 78 -0.301682 hybrid +143_1-9 Q0 MARCO_20_654641845-65 79 -0.303261 hybrid +143_1-9 Q0 MARCO_50_773630521-27 80 -0.303631 hybrid +143_1-9 Q0 MARCO_50_1170105749-8 81 -0.305874 hybrid +143_1-9 Q0 MARCO_21_1144339253-9 82 -0.306284 hybrid +143_1-9 Q0 MARCO_50_2494276134-31 83 -0.307811 hybrid +143_1-9 Q0 MARCO_50_1170105749-23 84 -0.314793 hybrid +143_1-9 Q0 MARCO_20_1123152510-4 85 -0.315199 hybrid +143_1-9 Q0 MARCO_28_286276433-8 86 -0.315542 hybrid +143_1-9 Q0 MARCO_22_1314742990-1 87 -0.315702 hybrid +143_1-9 Q0 MARCO_58_1508486791-2 88 -0.316719 hybrid +143_1-9 Q0 MARCO_48_625503247-3 89 -0.317715 hybrid +143_1-9 Q0 MARCO_50_2445817136-17 90 -0.318044 hybrid +143_1-9 Q0 MARCO_56_1033267861-40 91 -0.321292 hybrid +143_1-9 Q0 MARCO_28_315975032-8 92 -0.324461 hybrid +143_1-9 Q0 MARCO_20_1123152510-5 93 -0.326744 hybrid +143_1-9 Q0 MARCO_16_2987728684-9 94 -0.327528 hybrid +143_1-9 Q0 MARCO_50_1447842128-25 95 -0.332168 hybrid +143_1-9 Q0 MARCO_16_2992735066-25 96 -0.333057 hybrid +143_1-9 Q0 MARCO_05_425622441-161 97 -0.334872 hybrid +143_1-9 Q0 MARCO_31_899967924-1 98 -0.334939 hybrid +143_1-9 Q0 MARCO_50_2392281395-12 99 -0.337224 hybrid +143_1-9 Q0 MARCO_37_712852706-5 100 -0.339372 hybrid +144_1-1 Q0 MARCO_49_32079945-5 1 0.250000 hybrid +144_1-1 Q0 MARCO_13_1122427952-5 2 -0.008707 hybrid +144_1-1 Q0 MARCO_55_764944624-7 3 -0.065525 hybrid +144_1-1 Q0 MARCO_40_263496997-20 4 -0.103135 hybrid +144_1-1 Q0 MARCO_20_1583730402-17 5 -0.112109 hybrid +144_1-1 Q0 MARCO_08_80931565-6 6 -0.120144 hybrid +144_1-1 Q0 MARCO_37_1183291072-90 7 -0.127364 hybrid +144_1-1 Q0 MARCO_04_1054743032-20 8 -0.134019 hybrid +144_1-1 Q0 MARCO_36_1065159467-7 9 -0.139534 hybrid +144_1-1 Q0 MARCO_26_368423509-13 10 -0.149144 hybrid +144_1-1 Q0 MARCO_54_179437686-7 11 -0.151063 hybrid +144_1-1 Q0 MARCO_12_325986257-20 12 -0.158408 hybrid +144_1-1 Q0 MARCO_04_1054470175-23 13 -0.169541 hybrid +144_1-1 Q0 MARCO_53_1408176924-2 14 -0.171677 hybrid +144_1-1 Q0 KILT_1088143-13 15 -0.172452 hybrid +144_1-1 Q0 MARCO_49_966540582-4 16 -0.174767 hybrid +144_1-1 Q0 MARCO_26_368423509-57 17 -0.176049 hybrid +144_1-1 Q0 MARCO_41_1819246096-4 18 -0.177860 hybrid +144_1-1 Q0 MARCO_29_776727850-4 19 -0.180576 hybrid +144_1-1 Q0 MARCO_06_1868057202-22 20 -0.205455 hybrid +144_1-1 Q0 MARCO_53_1514931852-2 21 -0.219223 hybrid +144_1-1 Q0 MARCO_35_306070714-1 22 -0.220665 hybrid +144_1-1 Q0 MARCO_29_776682642-5 23 -0.226599 hybrid +144_1-1 Q0 MARCO_43_70712485-8 24 -0.230182 hybrid +144_1-1 Q0 MARCO_45_548797813-8 25 -0.230957 hybrid +144_1-1 Q0 MARCO_07_477563596-15 26 -0.240541 hybrid +144_1-1 Q0 MARCO_14_1634020448-14 27 -0.250000 hybrid +144_1-1 Q0 MARCO_32_113746098-13 28 -0.251264 hybrid +144_1-1 Q0 MARCO_02_1357388163-9 29 -0.251554 hybrid +144_1-1 Q0 MARCO_33_1314185920-3 30 -0.260612 hybrid +144_1-1 Q0 MARCO_45_548782946-1 31 -0.262308 hybrid +144_1-1 Q0 MARCO_02_1357388163-10 32 -0.270174 hybrid +144_1-1 Q0 MARCO_50_1414536119-6 33 -0.276415 hybrid +144_1-1 Q0 MARCO_23_942400411-4 34 -0.279272 hybrid +144_1-1 Q0 MARCO_46_707059343-3 35 -0.279762 hybrid +144_1-1 Q0 MARCO_41_913531454-29 36 -0.280434 hybrid +144_1-1 Q0 MARCO_49_1167411084-11 37 -0.282153 hybrid +144_1-1 Q0 MARCO_18_1801844598-8 38 -0.286729 hybrid +144_1-1 Q0 MARCO_50_1931189531-2 39 -0.290183 hybrid +144_1-1 Q0 MARCO_09_1759309645-3 40 -0.293224 hybrid +144_1-1 Q0 MARCO_39_1364807673-5 41 -0.298707 hybrid +144_1-1 Q0 MARCO_26_397996534-44 42 -0.300145 hybrid +144_1-1 Q0 MARCO_26_371972620-48 43 -0.300937 hybrid +144_1-1 Q0 KILT_1638840-26 44 -0.308492 hybrid +144_1-1 Q0 MARCO_31_1554787666-4 45 -0.318939 hybrid +144_1-1 Q0 MARCO_40_324843366-40 46 -0.321832 hybrid +144_1-1 Q0 MARCO_12_677956436-2 47 -0.322289 hybrid +144_1-1 Q0 MARCO_18_2141034807-2 48 -0.322536 hybrid +144_1-1 Q0 MARCO_36_1065159467-8 49 -0.325033 hybrid +144_1-1 Q0 MARCO_32_764394676-40 50 -0.328380 hybrid +144_1-1 Q0 MARCO_59_360948560-2 51 -0.333290 hybrid +144_1-1 Q0 MARCO_24_1444760579-1 52 -0.339028 hybrid +144_1-1 Q0 KILT_5938818-6 53 -0.341214 hybrid +144_1-1 Q0 MARCO_31_1320758696-6 54 -0.341877 hybrid +144_1-1 Q0 MARCO_25_1770661801-5 55 -0.344147 hybrid +144_1-1 Q0 MARCO_51_2010764077-9 56 -0.347722 hybrid +144_1-1 Q0 MARCO_03_1386201546-9 57 -0.347935 hybrid +144_1-1 Q0 MARCO_47_1330723515-4 58 -0.353063 hybrid +144_1-1 Q0 MARCO_47_980813985-7 59 -0.355489 hybrid +144_1-1 Q0 MARCO_39_611108465-4 60 -0.355703 hybrid +144_1-1 Q0 MARCO_49_219929648-3 61 -0.359536 hybrid +144_1-1 Q0 MARCO_36_563025184-5 62 -0.360101 hybrid +144_1-1 Q0 MARCO_26_357935851-67 63 -0.361259 hybrid +144_1-1 Q0 MARCO_30_131556382-16 64 -0.364143 hybrid +144_1-1 Q0 MARCO_59_305116599-1 65 -0.364392 hybrid +144_1-1 Q0 MARCO_46_701427559-6 66 -0.366689 hybrid +144_1-1 Q0 MARCO_10_974621470-14 67 -0.367296 hybrid +144_1-1 Q0 MARCO_21_915017138-1 68 -0.367722 hybrid +144_1-1 Q0 MARCO_03_1800345131-2 69 -0.368347 hybrid +144_1-1 Q0 KILT_13479680-2 70 -0.369480 hybrid +144_1-1 Q0 MARCO_29_1180808781-1 71 -0.369689 hybrid +144_1-1 Q0 MARCO_20_1690585064-13 72 -0.369979 hybrid +144_1-1 Q0 MARCO_20_1583730402-14 73 -0.370869 hybrid +144_1-1 Q0 MARCO_02_1750639863-3 74 -0.372529 hybrid +144_1-1 Q0 MARCO_29_1635161166-3 75 -0.373499 hybrid +144_1-1 Q0 MARCO_13_1314065004-2 76 -0.375138 hybrid +144_1-1 Q0 MARCO_26_409340402-27 77 -0.376736 hybrid +144_1-1 Q0 KILT_23611048-1 78 -0.377422 hybrid +144_1-1 Q0 MARCO_12_347274775-15 79 -0.380302 hybrid +144_1-1 Q0 MARCO_41_2136117154-1 80 -0.380433 hybrid +144_1-1 Q0 MARCO_24_612999146-1 81 -0.387780 hybrid +144_1-1 Q0 MARCO_47_980813985-6 82 -0.388011 hybrid +144_1-1 Q0 MARCO_45_548787374-5 83 -0.389138 hybrid +144_1-1 Q0 KILT_5149747-5 84 -0.389320 hybrid +144_1-1 Q0 MARCO_41_1819246096-1 85 -0.391457 hybrid +144_1-1 Q0 MARCO_03_1785354231-4 86 -0.391712 hybrid +144_1-1 Q0 MARCO_12_1450623783-5 87 -0.394119 hybrid +144_1-1 Q0 MARCO_12_351738001-74 88 -0.394867 hybrid +144_1-1 Q0 MARCO_00_1006618323-3 89 -0.396465 hybrid +144_1-1 Q0 MARCO_53_1514931852-3 90 -0.398245 hybrid +144_1-1 Q0 MARCO_38_1494305685-10 91 -0.398584 hybrid +144_1-1 Q0 MARCO_13_400485672-6 92 -0.399527 hybrid +144_1-1 Q0 MARCO_56_502479796-2 93 -0.400400 hybrid +144_1-1 Q0 MARCO_04_900108267-21 94 -0.400698 hybrid +144_1-1 Q0 MARCO_40_313638043-60 95 -0.401165 hybrid +144_1-1 Q0 MARCO_19_2647113719-1 96 -0.401664 hybrid +144_1-1 Q0 MARCO_51_701899859-51 97 -0.401909 hybrid +144_1-1 Q0 MARCO_21_1150077376-2 98 -0.402594 hybrid +144_1-1 Q0 MARCO_49_966540582-3 99 -0.403053 hybrid +144_1-1 Q0 MARCO_12_526443989-21 100 -0.409583 hybrid +144_1-3 Q0 MARCO_41_1178403892-18 1 0.250002 hybrid +144_1-3 Q0 MARCO_47_1512692415-7 2 0.162673 hybrid +144_1-3 Q0 MARCO_24_1139122304-6 3 0.144685 hybrid +144_1-3 Q0 MARCO_52_1611218176-12 4 0.142700 hybrid +144_1-3 Q0 MARCO_40_1275785480-2 5 0.121433 hybrid +144_1-3 Q0 MARCO_18_3116878569-42 6 0.119727 hybrid +144_1-3 Q0 MARCO_47_1514525232-2 7 0.114744 hybrid +144_1-3 Q0 MARCO_47_1514525232-11 8 0.089966 hybrid +144_1-3 Q0 MARCO_50_2384676790-6 9 0.081219 hybrid +144_1-3 Q0 MARCO_18_3116878569-8 10 0.080319 hybrid +144_1-3 Q0 MARCO_18_3116878569-9 11 0.033110 hybrid +144_1-3 Q0 MARCO_18_3116878569-3 12 0.008983 hybrid +144_1-3 Q0 MARCO_20_661275528-10 13 -0.003804 hybrid +144_1-3 Q0 MARCO_50_1171002766-12 14 -0.003818 hybrid +144_1-3 Q0 MARCO_50_1612876458-9 15 -0.019541 hybrid +144_1-3 Q0 MARCO_52_1604550369-1 16 -0.023328 hybrid +144_1-3 Q0 MARCO_50_2384676790-5 17 -0.027082 hybrid +144_1-3 Q0 MARCO_47_1514525232-16 18 -0.027183 hybrid +144_1-3 Q0 MARCO_52_1612771994-5 19 -0.028169 hybrid +144_1-3 Q0 MARCO_47_1512692415-8 20 -0.030462 hybrid +144_1-3 Q0 MARCO_39_682572531-35 21 -0.032809 hybrid +144_1-3 Q0 MARCO_11_1538432070-4 22 -0.045513 hybrid +144_1-3 Q0 MARCO_18_3122089436-4 23 -0.047841 hybrid +144_1-3 Q0 MARCO_39_682572531-36 24 -0.050610 hybrid +144_1-3 Q0 MARCO_29_1334919388-29 25 -0.052142 hybrid +144_1-3 Q0 MARCO_20_64092302-9 26 -0.075481 hybrid +144_1-3 Q0 MARCO_47_1512692415-6 27 -0.078738 hybrid +144_1-3 Q0 MARCO_42_1370357152-101 28 -0.084954 hybrid +144_1-3 Q0 MARCO_06_1613077797-43 29 -0.093648 hybrid +144_1-3 Q0 MARCO_18_1814240358-6 30 -0.107791 hybrid +144_1-3 Q0 MARCO_06_1613239254-22 31 -0.109486 hybrid +144_1-3 Q0 MARCO_42_1370257667-30 32 -0.113707 hybrid +144_1-3 Q0 MARCO_47_1515060083-8 33 -0.121257 hybrid +144_1-3 Q0 MARCO_52_1612763192-8 34 -0.121701 hybrid +144_1-3 Q0 MARCO_18_3119373597-9 35 -0.125919 hybrid +144_1-3 Q0 MARCO_47_1513152112-1 36 -0.127538 hybrid +144_1-3 Q0 MARCO_43_713100005-5 37 -0.130228 hybrid +144_1-3 Q0 MARCO_39_682572531-3 38 -0.139767 hybrid +144_1-3 Q0 MARCO_06_1613077797-5 39 -0.141897 hybrid +144_1-3 Q0 MARCO_41_1213966507-10 40 -0.143610 hybrid +144_1-3 Q0 MARCO_47_1513792309-1 41 -0.149781 hybrid +144_1-3 Q0 MARCO_42_1370257667-100 42 -0.154821 hybrid +144_1-3 Q0 MARCO_39_682572531-78 43 -0.155068 hybrid +144_1-3 Q0 MARCO_47_1512692415-9 44 -0.155072 hybrid +144_1-3 Q0 MARCO_52_1605932689-3 45 -0.157879 hybrid +144_1-3 Q0 MARCO_18_469169095-4 46 -0.161121 hybrid +144_1-3 Q0 MARCO_18_3116878569-16 47 -0.161985 hybrid +144_1-3 Q0 MARCO_45_1324778070-9 48 -0.162424 hybrid +144_1-3 Q0 MARCO_52_1611971891-7 49 -0.165311 hybrid +144_1-3 Q0 MARCO_52_1611218176-7 50 -0.166178 hybrid +144_1-3 Q0 MARCO_40_656343761-2 51 -0.170193 hybrid +144_1-3 Q0 MARCO_04_1031544060-4 52 -0.174379 hybrid +144_1-3 Q0 MARCO_39_682678243-5 53 -0.177056 hybrid +144_1-3 Q0 MARCO_48_1188605093-6 54 -0.180269 hybrid +144_1-3 Q0 MARCO_18_3117429455-2 55 -0.194791 hybrid +144_1-3 Q0 MARCO_22_1478753745-74 56 -0.195275 hybrid +144_1-3 Q0 MARCO_52_1606156518-7 57 -0.196389 hybrid +144_1-3 Q0 MARCO_04_1031404822-7 58 -0.197269 hybrid +144_1-3 Q0 MARCO_47_1512775494-9 59 -0.204955 hybrid +144_1-3 Q0 MARCO_18_3119373597-8 60 -0.210752 hybrid +144_1-3 Q0 MARCO_13_449191725-39 61 -0.220855 hybrid +144_1-3 Q0 MARCO_18_3116878569-47 62 -0.223417 hybrid +144_1-3 Q0 MARCO_42_1370233238-3 63 -0.224183 hybrid +144_1-3 Q0 MARCO_18_3121289624-5 64 -0.224425 hybrid +144_1-3 Q0 MARCO_41_1177778210-35 65 -0.226573 hybrid +144_1-3 Q0 MARCO_06_227782337-1 66 -0.226978 hybrid +144_1-3 Q0 MARCO_41_1941401951-5 67 -0.230319 hybrid +144_1-3 Q0 KILT_25236027-17 68 -0.231208 hybrid +144_1-3 Q0 MARCO_39_682572531-58 69 -0.231424 hybrid +144_1-3 Q0 MARCO_52_1611292037-3 70 -0.233321 hybrid +144_1-3 Q0 MARCO_50_2384676790-4 71 -0.234888 hybrid +144_1-3 Q0 MARCO_06_1613239254-15 72 -0.238150 hybrid +144_1-3 Q0 MARCO_47_1516406453-3 73 -0.238489 hybrid +144_1-3 Q0 MARCO_50_2384676790-3 74 -0.240118 hybrid +144_1-3 Q0 MARCO_02_831445558-6 75 -0.243419 hybrid +144_1-3 Q0 MARCO_42_1370357152-122 76 -0.243864 hybrid +144_1-3 Q0 MARCO_42_1370257667-43 77 -0.246760 hybrid +144_1-3 Q0 MARCO_44_609514382-1 78 -0.246791 hybrid +144_1-3 Q0 MARCO_10_1622826223-1 79 -0.249998 hybrid +144_1-3 Q0 MARCO_20_661275528-9 80 -0.250577 hybrid +144_1-3 Q0 MARCO_50_2384676790-2 81 -0.253350 hybrid +144_1-3 Q0 MARCO_20_661275528-13 82 -0.258593 hybrid +144_1-3 Q0 MARCO_39_682678243-6 83 -0.259372 hybrid +144_1-3 Q0 MARCO_52_1604536464-8 84 -0.259473 hybrid +144_1-3 Q0 MARCO_50_1171002766-13 85 -0.263809 hybrid +144_1-3 Q0 MARCO_31_1564388443-14 86 -0.266384 hybrid +144_1-3 Q0 MARCO_39_1569621978-26 87 -0.266400 hybrid +144_1-3 Q0 MARCO_39_682572531-57 88 -0.266516 hybrid +144_1-3 Q0 MARCO_18_3270644462-15 89 -0.269941 hybrid +144_1-3 Q0 KILT_40846962-8 90 -0.272934 hybrid +144_1-3 Q0 MARCO_52_1605889585-11 91 -0.275271 hybrid +144_1-3 Q0 MARCO_22_1478753745-52 92 -0.276209 hybrid +144_1-3 Q0 MARCO_47_1509779480-2 93 -0.276354 hybrid +144_1-3 Q0 MARCO_50_1171002766-14 94 -0.277943 hybrid +144_1-3 Q0 MARCO_41_1222306692-16 95 -0.279585 hybrid +144_1-3 Q0 MARCO_18_3119373597-7 96 -0.280986 hybrid +144_1-3 Q0 MARCO_17_431954845-24 97 -0.280991 hybrid +144_1-3 Q0 MARCO_40_1188126979-8 98 -0.282116 hybrid +144_1-3 Q0 MARCO_42_1370357152-112 99 -0.282790 hybrid +144_1-3 Q0 MARCO_18_3116878569-54 100 -0.282887 hybrid +144_1-5 Q0 MARCO_18_3123761348-4 1 0.250000 hybrid +144_1-5 Q0 MARCO_18_3120274746-2 2 0.174114 hybrid +144_1-5 Q0 MARCO_18_3119373597-49 3 0.173218 hybrid +144_1-5 Q0 MARCO_40_1275785480-2 4 0.125096 hybrid +144_1-5 Q0 MARCO_18_3122089436-20 5 0.091553 hybrid +144_1-5 Q0 KILT_984769-3 6 0.087939 hybrid +144_1-5 Q0 MARCO_18_3122089436-12 7 0.046050 hybrid +144_1-5 Q0 MARCO_18_3120209234-18 8 0.024423 hybrid +144_1-5 Q0 MARCO_52_1612771994-5 9 0.007686 hybrid +144_1-5 Q0 MARCO_18_3123205338-9 10 -0.003401 hybrid +144_1-5 Q0 MARCO_50_2377117734-5 11 -0.011884 hybrid +144_1-5 Q0 MARCO_18_3116878569-3 12 -0.015422 hybrid +144_1-5 Q0 KILT_38458-14 13 -0.019057 hybrid +144_1-5 Q0 MARCO_18_3120209234-16 14 -0.044944 hybrid +144_1-5 Q0 MARCO_42_1370357152-81 15 -0.045952 hybrid +144_1-5 Q0 MARCO_18_3120209234-30 16 -0.052706 hybrid +144_1-5 Q0 MARCO_18_3119937986-25 17 -0.060703 hybrid +144_1-5 Q0 MARCO_18_3119373597-10 18 -0.069417 hybrid +144_1-5 Q0 MARCO_18_3119373597-50 19 -0.071964 hybrid +144_1-5 Q0 MARCO_06_751858276-11 20 -0.085238 hybrid +144_1-5 Q0 MARCO_18_3116878569-42 21 -0.097801 hybrid +144_1-5 Q0 MARCO_18_3120321510-18 22 -0.100630 hybrid +144_1-5 Q0 MARCO_39_682572531-60 23 -0.106810 hybrid +144_1-5 Q0 KILT_38458-25 24 -0.108475 hybrid +144_1-5 Q0 MARCO_52_1609377641-2 25 -0.112974 hybrid +144_1-5 Q0 MARCO_15_599583395-40 26 -0.115018 hybrid +144_1-5 Q0 MARCO_18_3119373597-23 27 -0.137149 hybrid +144_1-5 Q0 MARCO_52_1610313472-2 28 -0.143587 hybrid +144_1-5 Q0 MARCO_47_1310407186-6 29 -0.144560 hybrid +144_1-5 Q0 MARCO_50_2377117734-6 30 -0.145428 hybrid +144_1-5 Q0 MARCO_48_626188579-3 31 -0.152841 hybrid +144_1-5 Q0 KILT_38458-15 32 -0.159925 hybrid +144_1-5 Q0 MARCO_39_682572531-72 33 -0.163918 hybrid +144_1-5 Q0 MARCO_47_1513229348-2 34 -0.166187 hybrid +144_1-5 Q0 MARCO_52_1604550369-1 35 -0.166667 hybrid +144_1-5 Q0 MARCO_06_227782337-1 36 -0.168231 hybrid +144_1-5 Q0 MARCO_18_3119373597-8 37 -0.171362 hybrid +144_1-5 Q0 MARCO_50_2377117734-7 38 -0.173988 hybrid +144_1-5 Q0 MARCO_39_682572531-17 39 -0.181055 hybrid +144_1-5 Q0 MARCO_18_3119373597-46 40 -0.181610 hybrid +144_1-5 Q0 MARCO_18_3120274746-8 41 -0.181610 hybrid +144_1-5 Q0 MARCO_18_3119937986-3 42 -0.183114 hybrid +144_1-5 Q0 KILT_38458-5 43 -0.183584 hybrid +144_1-5 Q0 MARCO_47_1512775494-8 44 -0.185726 hybrid +144_1-5 Q0 KILT_3947476-7 45 -0.186160 hybrid +144_1-5 Q0 MARCO_06_1613239254-18 46 -0.188587 hybrid +144_1-5 Q0 KILT_471187-3 47 -0.194900 hybrid +144_1-5 Q0 MARCO_07_1107151936-9 48 -0.198933 hybrid +144_1-5 Q0 KILT_407982-5 49 -0.201501 hybrid +144_1-5 Q0 MARCO_18_3115949394-6 50 -0.201501 hybrid +144_1-5 Q0 MARCO_48_626188579-4 51 -0.209315 hybrid +144_1-5 Q0 MARCO_18_2157329059-4 52 -0.211332 hybrid +144_1-5 Q0 MARCO_18_3117429455-2 53 -0.215424 hybrid +144_1-5 Q0 MARCO_17_4196899459-12 54 -0.227291 hybrid +144_1-5 Q0 KILT_38458-1 55 -0.229159 hybrid +144_1-5 Q0 MARCO_39_682572531-80 56 -0.229499 hybrid +144_1-5 Q0 MARCO_52_1604550369-11 57 -0.229515 hybrid +144_1-5 Q0 MARCO_18_3119723423-2 58 -0.229773 hybrid +144_1-5 Q0 MARCO_13_1315258021-2 59 -0.231392 hybrid +144_1-5 Q0 MARCO_18_3116878569-9 60 -0.233224 hybrid +144_1-5 Q0 MARCO_18_3120209234-3 61 -0.234537 hybrid +144_1-5 Q0 MARCO_52_1612363767-2 62 -0.238634 hybrid +144_1-5 Q0 MARCO_18_3116102468-2 63 -0.241960 hybrid +144_1-5 Q0 MARCO_50_1923995771-4 64 -0.250000 hybrid +144_1-5 Q0 MARCO_18_3119723423-3 65 -0.251051 hybrid +144_1-5 Q0 MARCO_52_1604550369-3 66 -0.254149 hybrid +144_1-5 Q0 MARCO_52_1611819383-4 67 -0.255605 hybrid +144_1-5 Q0 MARCO_52_1609381918-3 68 -0.255750 hybrid +144_1-5 Q0 MARCO_29_1176947740-15 69 -0.256457 hybrid +144_1-5 Q0 MARCO_18_3123761348-7 70 -0.258677 hybrid +144_1-5 Q0 MARCO_39_682572531-50 71 -0.258681 hybrid +144_1-5 Q0 MARCO_18_3120274746-1 72 -0.260865 hybrid +144_1-5 Q0 MARCO_52_1612363767-4 73 -0.262410 hybrid +144_1-5 Q0 MARCO_39_682572531-29 74 -0.263469 hybrid +144_1-5 Q0 MARCO_47_1510886015-7 75 -0.265701 hybrid +144_1-5 Q0 MARCO_50_1438815936-10 76 -0.268656 hybrid +144_1-5 Q0 MARCO_05_846902478-2 77 -0.271439 hybrid +144_1-5 Q0 MARCO_18_3119723423-36 78 -0.272791 hybrid +144_1-5 Q0 MARCO_18_3120158992-3 79 -0.277963 hybrid +144_1-5 Q0 MARCO_47_1515060083-8 80 -0.278666 hybrid +144_1-5 Q0 MARCO_20_64092302-2 81 -0.279163 hybrid +144_1-5 Q0 MARCO_47_1509913992-7 82 -0.287296 hybrid +144_1-5 Q0 MARCO_18_3119937986-26 83 -0.290220 hybrid +144_1-5 Q0 MARCO_39_1566990323-12 84 -0.290312 hybrid +144_1-5 Q0 MARCO_47_1510007983-5 85 -0.291170 hybrid +144_1-5 Q0 MARCO_50_2377117734-1 86 -0.293855 hybrid +144_1-5 Q0 MARCO_18_3119373597-3 87 -0.294832 hybrid +144_1-5 Q0 MARCO_50_1612876458-9 88 -0.295012 hybrid +144_1-5 Q0 MARCO_18_3120321510-14 89 -0.295380 hybrid +144_1-5 Q0 MARCO_20_64092302-3 90 -0.295441 hybrid +144_1-5 Q0 MARCO_50_1923995771-35 91 -0.297759 hybrid +144_1-5 Q0 MARCO_47_1512584517-5 92 -0.303080 hybrid +144_1-5 Q0 MARCO_44_838702016-6 93 -0.303576 hybrid +144_1-5 Q0 MARCO_18_3120321510-17 94 -0.303971 hybrid +144_1-5 Q0 MARCO_47_1513774475-2 95 -0.304406 hybrid +144_1-5 Q0 MARCO_11_1494209175-2 96 -0.305014 hybrid +144_1-5 Q0 MARCO_04_215578790-1 97 -0.308970 hybrid +144_1-5 Q0 MARCO_52_1604550369-6 98 -0.310362 hybrid +144_1-5 Q0 MARCO_17_4196899459-11 99 -0.311679 hybrid +144_1-5 Q0 MARCO_49_1591524761-399 100 -0.313324 hybrid +144_2-1 Q0 MARCO_18_3116878569-42 1 0.515915 hybrid +144_2-1 Q0 MARCO_18_3116878569-9 2 0.490341 hybrid +144_2-1 Q0 MARCO_18_3116878569-3 3 0.384392 hybrid +144_2-1 Q0 MARCO_52_1611218176-12 4 0.333591 hybrid +144_2-1 Q0 MARCO_18_3116878569-16 5 0.310387 hybrid +144_2-1 Q0 MARCO_18_3116878569-2 6 0.267218 hybrid +144_2-1 Q0 MARCO_18_3270644462-15 7 0.219784 hybrid +144_2-1 Q0 MARCO_18_3116878569-47 8 0.189626 hybrid +144_2-1 Q0 MARCO_18_3116878569-63 9 0.138775 hybrid +144_2-1 Q0 MARCO_24_1139122304-6 10 0.131070 hybrid +144_2-1 Q0 MARCO_18_3116878569-54 11 0.125095 hybrid +144_2-1 Q0 MARCO_18_3116878569-21 12 0.027225 hybrid +144_2-1 Q0 MARCO_05_809884773-15 13 0.023179 hybrid +144_2-1 Q0 MARCO_18_3116878569-8 14 0.022530 hybrid +144_2-1 Q0 MARCO_29_865121557-2 15 0.022485 hybrid +144_2-1 Q0 MARCO_18_3116756863-26 16 0.011515 hybrid +144_2-1 Q0 MARCO_18_3116878569-61 17 0.007872 hybrid +144_2-1 Q0 MARCO_52_1606022427-7 18 -0.016393 hybrid +144_2-1 Q0 KILT_2647515-17 19 -0.017744 hybrid +144_2-1 Q0 MARCO_18_3116878569-6 20 -0.028877 hybrid +144_2-1 Q0 MARCO_18_3116878569-52 21 -0.031340 hybrid +144_2-1 Q0 KILT_2647515-22 22 -0.057858 hybrid +144_2-1 Q0 MARCO_18_3270644462-2 23 -0.061747 hybrid +144_2-1 Q0 MARCO_18_3270644462-62 24 -0.070701 hybrid +144_2-1 Q0 MARCO_18_3116878569-5 25 -0.070789 hybrid +144_2-1 Q0 MARCO_18_3118367795-27 26 -0.077410 hybrid +144_2-1 Q0 MARCO_18_3116510005-26 27 -0.079526 hybrid +144_2-1 Q0 KILT_2647515-21 28 -0.088629 hybrid +144_2-1 Q0 MARCO_18_3116878569-53 29 -0.088650 hybrid +144_2-1 Q0 MARCO_18_3116878569-7 30 -0.105121 hybrid +144_2-1 Q0 MARCO_15_599583395-42 31 -0.109318 hybrid +144_2-1 Q0 MARCO_18_3116123834-6 32 -0.129841 hybrid +144_2-1 Q0 MARCO_18_3116878569-15 33 -0.129865 hybrid +144_2-1 Q0 MARCO_15_599583395-40 34 -0.129979 hybrid +144_2-1 Q0 MARCO_52_1611893899-3 35 -0.130948 hybrid +144_2-1 Q0 MARCO_18_3121862264-49 36 -0.131497 hybrid +144_2-1 Q0 KILT_2647515-27 37 -0.140045 hybrid +144_2-1 Q0 MARCO_18_3116878569-69 38 -0.142864 hybrid +144_2-1 Q0 MARCO_31_882254318-3 39 -0.143360 hybrid +144_2-1 Q0 MARCO_18_3116878569-4 40 -0.148901 hybrid +144_2-1 Q0 KILT_2647515-23 41 -0.158881 hybrid +144_2-1 Q0 MARCO_18_3116878569-17 42 -0.161776 hybrid +144_2-1 Q0 MARCO_18_3116878569-48 43 -0.162700 hybrid +144_2-1 Q0 MARCO_44_608838647-3 44 -0.163371 hybrid +144_2-1 Q0 KILT_59118602-12 45 -0.163939 hybrid +144_2-1 Q0 MARCO_18_3116878569-10 46 -0.169289 hybrid +144_2-1 Q0 MARCO_29_1334919388-29 47 -0.172098 hybrid +144_2-1 Q0 MARCO_47_1511451791-5 48 -0.174605 hybrid +144_2-1 Q0 MARCO_18_3270644462-105 49 -0.179313 hybrid +144_2-1 Q0 MARCO_18_3121862264-60 50 -0.189764 hybrid +144_2-1 Q0 MARCO_44_607583871-6 51 -0.189949 hybrid +144_2-1 Q0 MARCO_18_452398676-5 52 -0.190191 hybrid +144_2-1 Q0 MARCO_52_1611685648-5 53 -0.195360 hybrid +144_2-1 Q0 MARCO_35_308894578-6 54 -0.198469 hybrid +144_2-1 Q0 MARCO_18_3121862264-54 55 -0.201347 hybrid +144_2-1 Q0 MARCO_29_866977072-4 56 -0.202466 hybrid +144_2-1 Q0 MARCO_37_711221842-5 57 -0.203290 hybrid +144_2-1 Q0 MARCO_31_882254318-6 58 -0.204894 hybrid +144_2-1 Q0 MARCO_18_3116064758-9 59 -0.216270 hybrid +144_2-1 Q0 MARCO_19_604906265-18 60 -0.218820 hybrid +144_2-1 Q0 MARCO_44_608838647-4 61 -0.219088 hybrid +144_2-1 Q0 MARCO_52_1605944081-4 62 -0.225974 hybrid +144_2-1 Q0 MARCO_15_599583395-14 63 -0.230798 hybrid +144_2-1 Q0 MARCO_18_3116664840-20 64 -0.231517 hybrid +144_2-1 Q0 MARCO_35_308978221-8 65 -0.231797 hybrid +144_2-1 Q0 MARCO_18_3121388572-4 66 -0.244339 hybrid +144_2-1 Q0 MARCO_18_3116878569-79 67 -0.244583 hybrid +144_2-1 Q0 MARCO_09_739564359-1 68 -0.249998 hybrid +144_2-1 Q0 MARCO_17_3707709305-48 69 -0.250883 hybrid +144_2-1 Q0 MARCO_18_3121862264-22 70 -0.251515 hybrid +144_2-1 Q0 MARCO_36_838613568-7 71 -0.253138 hybrid +144_2-1 Q0 MARCO_29_868665183-6 72 -0.254004 hybrid +144_2-1 Q0 MARCO_36_854436803-9 73 -0.254214 hybrid +144_2-1 Q0 MARCO_18_3116878569-1 74 -0.257817 hybrid +144_2-1 Q0 MARCO_29_863431444-5 75 -0.258159 hybrid +144_2-1 Q0 MARCO_18_3116878569-65 76 -0.258538 hybrid +144_2-1 Q0 KILT_4453559-12 77 -0.261759 hybrid +144_2-1 Q0 MARCO_18_3116664840-29 78 -0.264017 hybrid +144_2-1 Q0 MARCO_19_604906265-19 79 -0.267757 hybrid +144_2-1 Q0 MARCO_18_3121862264-40 80 -0.271941 hybrid +144_2-1 Q0 MARCO_18_3270644462-22 81 -0.272772 hybrid +144_2-1 Q0 KILT_2647515-26 82 -0.277188 hybrid +144_2-1 Q0 MARCO_52_1611569890-5 83 -0.277279 hybrid +144_2-1 Q0 MARCO_18_3116878569-43 84 -0.277890 hybrid +144_2-1 Q0 MARCO_52_1609989698-4 85 -0.279449 hybrid +144_2-1 Q0 MARCO_18_3122089436-21 86 -0.286398 hybrid +144_2-1 Q0 MARCO_18_3116878569-23 87 -0.290218 hybrid +144_2-1 Q0 MARCO_18_3116664840-28 88 -0.290738 hybrid +144_2-1 Q0 MARCO_17_3707709305-51 89 -0.292322 hybrid +144_2-1 Q0 MARCO_15_599583395-56 90 -0.293469 hybrid +144_2-1 Q0 MARCO_18_3116235467-40 91 -0.294643 hybrid +144_2-1 Q0 MARCO_35_308859694-6 92 -0.295159 hybrid +144_2-1 Q0 MARCO_18_3116171216-8 93 -0.297787 hybrid +144_2-1 Q0 KILT_33840718-3 94 -0.297989 hybrid +144_2-1 Q0 MARCO_18_3116878569-39 95 -0.298012 hybrid +144_2-1 Q0 MARCO_18_3116317508-1 96 -0.300167 hybrid +144_2-1 Q0 MARCO_52_1605932689-3 97 -0.300921 hybrid +144_2-1 Q0 MARCO_18_3116444373-40 98 -0.305651 hybrid +144_2-1 Q0 MARCO_18_3116556761-8 99 -0.314257 hybrid +144_2-1 Q0 KILT_56984039-3 100 -0.316600 hybrid +144_2-11 Q0 MARCO_07_1118258898-1 1 0.688473 hybrid +144_2-11 Q0 MARCO_18_3123329102-14 2 0.244728 hybrid +144_2-11 Q0 MARCO_18_1823217371-5 3 0.166076 hybrid +144_2-11 Q0 MARCO_18_3116977530-1 4 0.159940 hybrid +144_2-11 Q0 KILT_15944-11 5 0.143329 hybrid +144_2-11 Q0 MARCO_18_3116977530-2 6 0.122183 hybrid +144_2-11 Q0 KILT_28506-21 7 0.114650 hybrid +144_2-11 Q0 KILT_4707045-2 8 0.096507 hybrid +144_2-11 Q0 MARCO_39_1568280691-12 9 0.087561 hybrid +144_2-11 Q0 KILT_28506-20 10 0.040305 hybrid +144_2-11 Q0 KILT_4707045-1 11 0.025778 hybrid +144_2-11 Q0 MARCO_39_1568280691-11 12 0.021475 hybrid +144_2-11 Q0 MARCO_03_1605448829-5 13 0.005590 hybrid +144_2-11 Q0 MARCO_18_3116444373-29 14 -0.004829 hybrid +144_2-11 Q0 KILT_4707019-11 15 -0.015502 hybrid +144_2-11 Q0 KILT_22739594-3 16 -0.038441 hybrid +144_2-11 Q0 MARCO_59_605592475-8 17 -0.043078 hybrid +144_2-11 Q0 KILT_47105558-1 18 -0.045880 hybrid +144_2-11 Q0 KILT_15944-8 19 -0.045988 hybrid +144_2-11 Q0 KILT_15944-10 20 -0.061442 hybrid +144_2-11 Q0 KILT_15944-9 21 -0.084977 hybrid +144_2-11 Q0 MARCO_18_1823046962-7 22 -0.086041 hybrid +144_2-11 Q0 KILT_1424917-6 23 -0.103184 hybrid +144_2-11 Q0 MARCO_51_2011530188-37 24 -0.104153 hybrid +144_2-11 Q0 MARCO_07_1118258898-7 25 -0.106326 hybrid +144_2-11 Q0 MARCO_18_3123329102-15 26 -0.108677 hybrid +144_2-11 Q0 MARCO_59_605592475-1 27 -0.115238 hybrid +144_2-11 Q0 MARCO_34_1325428574-1 28 -0.117716 hybrid +144_2-11 Q0 MARCO_10_1132480802-28 29 -0.128526 hybrid +144_2-11 Q0 MARCO_51_1637467816-3 30 -0.132381 hybrid +144_2-11 Q0 KILT_316824-4 31 -0.137091 hybrid +144_2-11 Q0 MARCO_39_1568280691-7 32 -0.138808 hybrid +144_2-11 Q0 KILT_60323001-5 33 -0.142930 hybrid +144_2-11 Q0 MARCO_18_3119937986-21 34 -0.144625 hybrid +144_2-11 Q0 MARCO_03_1671085973-1 35 -0.144655 hybrid +144_2-11 Q0 MARCO_50_1929870268-37 36 -0.145159 hybrid +144_2-11 Q0 MARCO_39_1569621978-13 37 -0.145760 hybrid +144_2-11 Q0 MARCO_28_285675710-3 38 -0.150628 hybrid +144_2-11 Q0 KILT_146924-17 39 -0.155675 hybrid +144_2-11 Q0 MARCO_39_1568280691-16 40 -0.156514 hybrid +144_2-11 Q0 MARCO_22_505649722-2 41 -0.158084 hybrid +144_2-11 Q0 MARCO_06_1271709591-201 42 -0.164178 hybrid +144_2-11 Q0 MARCO_18_3123329102-30 43 -0.166098 hybrid +144_2-11 Q0 MARCO_18_3116444373-57 44 -0.169255 hybrid +144_2-11 Q0 KILT_3813298-1 45 -0.174557 hybrid +144_2-11 Q0 MARCO_50_1527888210-2 46 -0.189193 hybrid +144_2-11 Q0 MARCO_18_3112781714-23 47 -0.198089 hybrid +144_2-11 Q0 MARCO_13_449270319-5 48 -0.202794 hybrid +144_2-11 Q0 KILT_26396278-1 49 -0.206246 hybrid +144_2-11 Q0 MARCO_39_1566281569-5 50 -0.218212 hybrid +144_2-11 Q0 MARCO_12_586299903-22 51 -0.219726 hybrid +144_2-11 Q0 KILT_4551386-23 52 -0.221975 hybrid +144_2-11 Q0 MARCO_59_605592475-6 53 -0.222351 hybrid +144_2-11 Q0 KILT_41228673-45 54 -0.222974 hybrid +144_2-11 Q0 MARCO_50_1929870268-12 55 -0.224064 hybrid +144_2-11 Q0 KILT_407982-8 56 -0.225335 hybrid +144_2-11 Q0 MARCO_18_924403543-3 57 -0.227602 hybrid +144_2-11 Q0 MARCO_17_670460678-2 58 -0.229725 hybrid +144_2-11 Q0 KILT_22739594-1 59 -0.236891 hybrid +144_2-11 Q0 MARCO_06_1271709591-202 60 -0.237358 hybrid +144_2-11 Q0 KILT_15944-12 61 -0.237544 hybrid +144_2-11 Q0 KILT_15944-1 62 -0.244339 hybrid +144_2-11 Q0 MARCO_51_1999142238-14 63 -0.244503 hybrid +144_2-11 Q0 KILT_27623318-3 64 -0.246618 hybrid +144_2-11 Q0 MARCO_01_1544663324-2 65 -0.248923 hybrid +144_2-11 Q0 MARCO_03_1748077988-4 66 -0.250000 hybrid +144_2-11 Q0 KILT_146924-14 67 -0.250424 hybrid +144_2-11 Q0 KILT_28506-28 68 -0.253538 hybrid +144_2-11 Q0 KILT_11083753-4 69 -0.255134 hybrid +144_2-11 Q0 MARCO_18_1823046962-8 70 -0.260155 hybrid +144_2-11 Q0 KILT_146924-1 71 -0.264869 hybrid +144_2-11 Q0 KILT_4707045-5 72 -0.265993 hybrid +144_2-11 Q0 MARCO_52_635891760-15 73 -0.270136 hybrid +144_2-11 Q0 MARCO_30_74645172-3 74 -0.271727 hybrid +144_2-11 Q0 MARCO_18_924403543-10 75 -0.272956 hybrid +144_2-11 Q0 MARCO_18_2383048956-12 76 -0.279271 hybrid +144_2-11 Q0 MARCO_50_1428457502-7 77 -0.280101 hybrid +144_2-11 Q0 MARCO_33_1052307042-14 78 -0.281346 hybrid +144_2-11 Q0 MARCO_47_1508643911-1 79 -0.282019 hybrid +144_2-11 Q0 MARCO_31_1022658942-5 80 -0.285628 hybrid +144_2-11 Q0 MARCO_39_1568280691-5 81 -0.285645 hybrid +144_2-11 Q0 MARCO_18_2718586974-13 82 -0.287605 hybrid +144_2-11 Q0 MARCO_49_1305225391-1 83 -0.290397 hybrid +144_2-11 Q0 MARCO_39_1567281351-2 84 -0.290446 hybrid +144_2-11 Q0 MARCO_51_2011530188-34 85 -0.291099 hybrid +144_2-11 Q0 MARCO_17_670460678-4 86 -0.294516 hybrid +144_2-11 Q0 KILT_15944-7 87 -0.295160 hybrid +144_2-11 Q0 MARCO_31_1022106243-3 88 -0.296358 hybrid +144_2-11 Q0 MARCO_50_1527888210-15 89 -0.296531 hybrid +144_2-11 Q0 MARCO_04_487834639-1 90 -0.296649 hybrid +144_2-11 Q0 KILT_23821416-2 91 -0.297513 hybrid +144_2-11 Q0 MARCO_24_719939137-3 92 -0.298058 hybrid +144_2-11 Q0 MARCO_18_3115949394-9 93 -0.299757 hybrid +144_2-11 Q0 MARCO_18_3123329102-4 94 -0.301760 hybrid +144_2-11 Q0 MARCO_39_1568280691-13 95 -0.302750 hybrid +144_2-11 Q0 MARCO_50_1983145593-17 96 -0.304970 hybrid +144_2-11 Q0 MARCO_17_1914277110-19 97 -0.305101 hybrid +144_2-11 Q0 MARCO_33_1052307042-16 98 -0.306249 hybrid +144_2-11 Q0 KILT_22739594-2 99 -0.308541 hybrid +144_2-11 Q0 KILT_859284-3 100 -0.313545 hybrid +144_2-13 Q0 KILT_4707019-11 1 0.250000 hybrid +144_2-13 Q0 KILT_28506-21 2 0.191429 hybrid +144_2-13 Q0 MARCO_12_135618726-52 3 0.188682 hybrid +144_2-13 Q0 KILT_28506-20 4 0.163772 hybrid +144_2-13 Q0 MARCO_18_924403543-33 5 0.155151 hybrid +144_2-13 Q0 MARCO_18_3123329102-14 6 0.110350 hybrid +144_2-13 Q0 MARCO_28_285675710-3 7 0.085900 hybrid +144_2-13 Q0 MARCO_18_923431213-19 8 0.081692 hybrid +144_2-13 Q0 MARCO_18_3116977530-2 9 0.073356 hybrid +144_2-13 Q0 KILT_15944-12 10 0.067425 hybrid +144_2-13 Q0 MARCO_50_1447966974-15 11 0.055715 hybrid +144_2-13 Q0 MARCO_24_719939137-3 12 0.051834 hybrid +144_2-13 Q0 MARCO_39_1568280691-7 13 0.031786 hybrid +144_2-13 Q0 KILT_15944-10 14 0.029393 hybrid +144_2-13 Q0 MARCO_07_1118258898-1 15 0.010092 hybrid +144_2-13 Q0 KILT_15944-20 16 0.006648 hybrid +144_2-13 Q0 KILT_22739594-2 17 0.005400 hybrid +144_2-13 Q0 MARCO_18_3116444373-29 18 0.001250 hybrid +144_2-13 Q0 MARCO_18_474780560-21 19 -0.010372 hybrid +144_2-13 Q0 MARCO_18_3123329102-15 20 -0.011672 hybrid +144_2-13 Q0 MARCO_18_924403543-10 21 -0.012479 hybrid +144_2-13 Q0 KILT_1179352-1 22 -0.016147 hybrid +144_2-13 Q0 MARCO_03_1605448829-5 23 -0.017175 hybrid +144_2-13 Q0 MARCO_50_1929870268-37 24 -0.021407 hybrid +144_2-13 Q0 KILT_41228673-45 25 -0.026876 hybrid +144_2-13 Q0 MARCO_18_1823217371-5 26 -0.031842 hybrid +144_2-13 Q0 MARCO_07_1118258898-2 27 -0.034576 hybrid +144_2-13 Q0 KILT_15944-11 28 -0.038765 hybrid +144_2-13 Q0 MARCO_18_919757789-4 29 -0.040974 hybrid +144_2-13 Q0 MARCO_18_3123329102-4 30 -0.052234 hybrid +144_2-13 Q0 KILT_3813298-4 31 -0.059974 hybrid +144_2-13 Q0 MARCO_18_3116444373-5 32 -0.061279 hybrid +144_2-13 Q0 MARCO_51_2011530188-36 33 -0.077261 hybrid +144_2-13 Q0 MARCO_17_1798582100-20 34 -0.079994 hybrid +144_2-13 Q0 MARCO_51_1999142238-14 35 -0.086172 hybrid +144_2-13 Q0 MARCO_18_924403543-11 36 -0.086222 hybrid +144_2-13 Q0 MARCO_18_919757789-7 37 -0.090932 hybrid +144_2-13 Q0 MARCO_59_605592475-8 38 -0.094497 hybrid +144_2-13 Q0 KILT_41228673-33 39 -0.097206 hybrid +144_2-13 Q0 KILT_41228673-43 40 -0.098549 hybrid +144_2-13 Q0 KILT_407982-8 41 -0.111885 hybrid +144_2-13 Q0 MARCO_47_1515370785-2 42 -0.113990 hybrid +144_2-13 Q0 MARCO_22_505649722-2 43 -0.124707 hybrid +144_2-13 Q0 KILT_41228673-36 44 -0.136800 hybrid +144_2-13 Q0 KILT_3459152-2 45 -0.137117 hybrid +144_2-13 Q0 MARCO_51_2022548062-7 46 -0.137268 hybrid +144_2-13 Q0 MARCO_18_3115949394-5 47 -0.138974 hybrid +144_2-13 Q0 MARCO_18_3122901390-27 48 -0.139462 hybrid +144_2-13 Q0 MARCO_59_605592475-1 49 -0.140012 hybrid +144_2-13 Q0 MARCO_31_1022106243-3 50 -0.141045 hybrid +144_2-13 Q0 MARCO_18_3136897509-2 51 -0.148380 hybrid +144_2-13 Q0 MARCO_07_1118258898-7 52 -0.155303 hybrid +144_2-13 Q0 KILT_4707045-1 53 -0.160929 hybrid +144_2-13 Q0 MARCO_24_1724917299-2 54 -0.174484 hybrid +144_2-13 Q0 KILT_3813298-1 55 -0.177182 hybrid +144_2-13 Q0 MARCO_50_2746669517-6 56 -0.179658 hybrid +144_2-13 Q0 MARCO_51_2011530188-37 57 -0.181555 hybrid +144_2-13 Q0 MARCO_59_605592475-6 58 -0.183729 hybrid +144_2-13 Q0 KILT_27623318-3 59 -0.189511 hybrid +144_2-13 Q0 MARCO_31_882214560-3 60 -0.189658 hybrid +144_2-13 Q0 KILT_407982-4 61 -0.189919 hybrid +144_2-13 Q0 MARCO_31_1022707199-2 62 -0.196968 hybrid +144_2-13 Q0 MARCO_18_3123329102-30 63 -0.197875 hybrid +144_2-13 Q0 KILT_316824-4 64 -0.204668 hybrid +144_2-13 Q0 MARCO_51_2018625900-18 65 -0.206200 hybrid +144_2-13 Q0 KILT_1551099-5 66 -0.207684 hybrid +144_2-13 Q0 KILT_41228673-34 67 -0.209460 hybrid +144_2-13 Q0 KILT_60323001-5 68 -0.210289 hybrid +144_2-13 Q0 MARCO_51_2029514103-10 69 -0.211278 hybrid +144_2-13 Q0 KILT_68498-12 70 -0.211747 hybrid +144_2-13 Q0 MARCO_39_1568280691-11 71 -0.220636 hybrid +144_2-13 Q0 MARCO_51_1637467816-3 72 -0.227490 hybrid +144_2-13 Q0 MARCO_50_1929870268-12 73 -0.233402 hybrid +144_2-13 Q0 KILT_31440-6 74 -0.235755 hybrid +144_2-13 Q0 KILT_1424917-6 75 -0.238884 hybrid +144_2-13 Q0 KILT_28506-8 76 -0.240403 hybrid +144_2-13 Q0 MARCO_18_3116977530-1 77 -0.243455 hybrid +144_2-13 Q0 MARCO_17_1351854116-1 78 -0.250000 hybrid +144_2-13 Q0 MARCO_18_3115949394-9 79 -0.252774 hybrid +144_2-13 Q0 MARCO_51_2012025791-44 80 -0.253355 hybrid +144_2-13 Q0 MARCO_18_2380449995-2 81 -0.258963 hybrid +144_2-13 Q0 MARCO_17_575493501-4 82 -0.259039 hybrid +144_2-13 Q0 MARCO_18_3116444373-2 83 -0.259436 hybrid +144_2-13 Q0 MARCO_18_3119373597-27 84 -0.261502 hybrid +144_2-13 Q0 MARCO_28_285675710-4 85 -0.263499 hybrid +144_2-13 Q0 MARCO_18_3233548707-15 86 -0.263851 hybrid +144_2-13 Q0 MARCO_19_1463107877-1 87 -0.264710 hybrid +144_2-13 Q0 MARCO_18_1749944364-4 88 -0.268189 hybrid +144_2-13 Q0 KILT_1295452-1 89 -0.268250 hybrid +144_2-13 Q0 MARCO_19_1463107877-9 90 -0.269623 hybrid +144_2-13 Q0 MARCO_18_920522412-2 91 -0.271099 hybrid +144_2-13 Q0 MARCO_18_2383048956-4 92 -0.280548 hybrid +144_2-13 Q0 MARCO_39_1568280691-12 93 -0.281992 hybrid +144_2-13 Q0 MARCO_18_1886765989-7 94 -0.282686 hybrid +144_2-13 Q0 MARCO_18_3116444373-57 95 -0.283230 hybrid +144_2-13 Q0 KILT_11734700-2 96 -0.284581 hybrid +144_2-13 Q0 KILT_41228673-35 97 -0.284607 hybrid +144_2-13 Q0 MARCO_51_908959968-1 98 -0.284941 hybrid +144_2-13 Q0 MARCO_18_3116977530-7 99 -0.285149 hybrid +144_2-13 Q0 KILT_3549306-35 100 -0.285675 hybrid +144_2-15 Q0 MARCO_18_3116878569-64 1 0.424325 hybrid +144_2-15 Q0 MARCO_18_3116878569-16 2 0.264618 hybrid +144_2-15 Q0 MARCO_51_607329168-1 3 0.255415 hybrid +144_2-15 Q0 MARCO_24_1139122304-6 4 0.250002 hybrid +144_2-15 Q0 MARCO_52_1611218176-12 5 0.182079 hybrid +144_2-15 Q0 MARCO_18_3116878569-54 6 0.100399 hybrid +144_2-15 Q0 MARCO_18_469169095-4 7 0.065947 hybrid +144_2-15 Q0 MARCO_18_3116878569-20 8 0.050869 hybrid +144_2-15 Q0 MARCO_18_3121862264-54 9 0.031486 hybrid +144_2-15 Q0 MARCO_18_3116878569-9 10 0.001769 hybrid +144_2-15 Q0 MARCO_18_3116878569-15 11 -0.015419 hybrid +144_2-15 Q0 MARCO_18_3116878569-17 12 -0.016249 hybrid +144_2-15 Q0 MARCO_40_1275785480-2 13 -0.018678 hybrid +144_2-15 Q0 MARCO_18_3120100172-4 14 -0.023082 hybrid +144_2-15 Q0 MARCO_18_3116878569-19 15 -0.035147 hybrid +144_2-15 Q0 MARCO_29_1334919388-29 16 -0.048101 hybrid +144_2-15 Q0 MARCO_18_3270644462-15 17 -0.101380 hybrid +144_2-15 Q0 MARCO_31_644711912-2 18 -0.133548 hybrid +144_2-15 Q0 MARCO_20_1743515718-7 19 -0.156102 hybrid +144_2-15 Q0 MARCO_18_3116878569-21 20 -0.181376 hybrid +144_2-15 Q0 MARCO_18_3121862264-49 21 -0.197104 hybrid +144_2-15 Q0 MARCO_36_842697445-4 22 -0.200172 hybrid +144_2-15 Q0 MARCO_18_3116878569-3 23 -0.219484 hybrid +144_2-15 Q0 MARCO_18_3116878569-61 24 -0.220753 hybrid +144_2-15 Q0 KILT_23441092-1 25 -0.229077 hybrid +144_2-15 Q0 MARCO_40_1275832723-31 26 -0.240642 hybrid +144_2-15 Q0 MARCO_18_2918414305-24 27 -0.249998 hybrid +144_2-15 Q0 KILT_23441092-6 28 -0.268431 hybrid +144_2-15 Q0 MARCO_18_3116878569-42 29 -0.270916 hybrid +144_2-15 Q0 MARCO_18_3116878569-62 30 -0.271737 hybrid +144_2-15 Q0 MARCO_28_972935301-4 31 -0.272789 hybrid +144_2-15 Q0 MARCO_18_3116878569-4 32 -0.284125 hybrid +144_2-15 Q0 MARCO_18_3121862264-31 33 -0.291798 hybrid +144_2-15 Q0 MARCO_40_1275832723-32 34 -0.291896 hybrid +144_2-15 Q0 MARCO_16_69991661-8 35 -0.304225 hybrid +144_2-15 Q0 MARCO_50_495945508-4 36 -0.304841 hybrid +144_2-15 Q0 MARCO_37_1248516398-21 37 -0.308411 hybrid +144_2-15 Q0 MARCO_18_3116878569-14 38 -0.315569 hybrid +144_2-15 Q0 MARCO_39_24590426-8 39 -0.322008 hybrid +144_2-15 Q0 MARCO_18_3116878569-6 40 -0.326842 hybrid +144_2-15 Q0 MARCO_19_1767990244-20 41 -0.327957 hybrid +144_2-15 Q0 MARCO_37_1257178148-7 42 -0.338642 hybrid +144_2-15 Q0 KILT_38458-5 43 -0.351447 hybrid +144_2-15 Q0 MARCO_37_328852305-4 44 -0.351544 hybrid +144_2-15 Q0 MARCO_50_2252222268-21 45 -0.357521 hybrid +144_2-15 Q0 KILT_1542802-5 46 -0.367159 hybrid +144_2-15 Q0 MARCO_18_3121862264-60 47 -0.369767 hybrid +144_2-15 Q0 MARCO_18_3116878569-52 48 -0.373040 hybrid +144_2-15 Q0 MARCO_24_1960030363-4 49 -0.373304 hybrid +144_2-15 Q0 MARCO_18_3116878569-8 50 -0.373414 hybrid +144_2-15 Q0 MARCO_04_483486798-16 51 -0.379338 hybrid +144_2-15 Q0 MARCO_47_724693245-5 52 -0.388498 hybrid +144_2-15 Q0 MARCO_18_3270644462-11 53 -0.390092 hybrid +144_2-15 Q0 MARCO_06_1613239254-40 54 -0.397986 hybrid +144_2-15 Q0 MARCO_29_1695893577-11 55 -0.397990 hybrid +144_2-15 Q0 MARCO_14_463880638-6 56 -0.399041 hybrid +144_2-15 Q0 MARCO_18_3119373597-9 57 -0.400147 hybrid +144_2-15 Q0 MARCO_09_1208107094-18 58 -0.400493 hybrid +144_2-15 Q0 MARCO_00_916733687-12 59 -0.401505 hybrid +144_2-15 Q0 MARCO_18_3116878569-23 60 -0.401603 hybrid +144_2-15 Q0 MARCO_50_1612876458-9 61 -0.406407 hybrid +144_2-15 Q0 MARCO_53_1467085270-10 62 -0.406850 hybrid +144_2-15 Q0 MARCO_18_3121388572-4 63 -0.407588 hybrid +144_2-15 Q0 MARCO_32_117113375-5 64 -0.422153 hybrid +144_2-15 Q0 MARCO_54_131077001-9 65 -0.422352 hybrid +144_2-15 Q0 MARCO_51_607329168-2 66 -0.423217 hybrid +144_2-15 Q0 MARCO_37_1257178148-8 67 -0.424340 hybrid +144_2-15 Q0 MARCO_25_65164806-2 68 -0.428378 hybrid +144_2-15 Q0 MARCO_37_372663766-5 69 -0.430694 hybrid +144_2-15 Q0 MARCO_17_3707709305-51 70 -0.431055 hybrid +144_2-15 Q0 MARCO_24_1085683610-2 71 -0.433134 hybrid +144_2-15 Q0 MARCO_07_1050833873-30 72 -0.433591 hybrid +144_2-15 Q0 MARCO_50_2384627985-27 73 -0.435724 hybrid +144_2-15 Q0 MARCO_18_3122089436-12 74 -0.435945 hybrid +144_2-15 Q0 MARCO_32_1769799659-10 75 -0.437860 hybrid +144_2-15 Q0 MARCO_39_326869460-2 76 -0.437994 hybrid +144_2-15 Q0 MARCO_12_74208753-7 77 -0.438332 hybrid +144_2-15 Q0 MARCO_50_1194863296-1 78 -0.439681 hybrid +144_2-15 Q0 KILT_23441092-5 79 -0.439843 hybrid +144_2-15 Q0 MARCO_42_664977715-7 80 -0.441826 hybrid +144_2-15 Q0 MARCO_22_1489720193-3 81 -0.446039 hybrid +144_2-15 Q0 MARCO_39_444862558-4 82 -0.446606 hybrid +144_2-15 Q0 MARCO_02_1715461544-1 83 -0.446662 hybrid +144_2-15 Q0 MARCO_39_33764062-5 84 -0.448843 hybrid +144_2-15 Q0 MARCO_52_1619588246-1 85 -0.451016 hybrid +144_2-15 Q0 MARCO_52_1615146712-3 86 -0.453162 hybrid +144_2-15 Q0 MARCO_44_37876427-7 87 -0.456154 hybrid +144_2-15 Q0 KILT_27623318-3 88 -0.457635 hybrid +144_2-15 Q0 MARCO_54_644582024-21 89 -0.458857 hybrid +144_2-15 Q0 MARCO_42_1894580482-7 90 -0.459154 hybrid +144_2-15 Q0 MARCO_39_32495652-21 91 -0.459308 hybrid +144_2-15 Q0 MARCO_24_1790812484-5 92 -0.460336 hybrid +144_2-15 Q0 MARCO_10_1203493866-12 93 -0.461333 hybrid +144_2-15 Q0 MARCO_11_1451599519-6 94 -0.462231 hybrid +144_2-15 Q0 MARCO_28_972935301-3 95 -0.465100 hybrid +144_2-15 Q0 MARCO_18_3270644462-9 96 -0.465316 hybrid +144_2-15 Q0 MARCO_36_946600531-1 97 -0.465785 hybrid +144_2-15 Q0 MARCO_57_473465520-13 98 -0.465840 hybrid +144_2-15 Q0 MARCO_52_1611292037-3 99 -0.468832 hybrid +144_2-15 Q0 MARCO_24_1264646783-2 100 -0.473134 hybrid +144_2-17 Q0 MARCO_18_3112781714-23 1 0.308776 hybrid +144_2-17 Q0 MARCO_18_3116444373-5 2 0.201218 hybrid +144_2-17 Q0 MARCO_18_3116977530-6 3 0.068601 hybrid +144_2-17 Q0 MARCO_18_3270644462-18 4 0.068106 hybrid +144_2-17 Q0 MARCO_18_3116444373-27 5 0.054078 hybrid +144_2-17 Q0 MARCO_18_3116444373-25 6 0.040532 hybrid +144_2-17 Q0 MARCO_52_1610238832-2 7 -0.006874 hybrid +144_2-17 Q0 MARCO_18_3116444373-19 8 -0.014981 hybrid +144_2-17 Q0 KILT_27437311-4 9 -0.020557 hybrid +144_2-17 Q0 KILT_47105558-2 10 -0.029180 hybrid +144_2-17 Q0 MARCO_18_3116444373-15 11 -0.044132 hybrid +144_2-17 Q0 MARCO_42_1894560592-2 12 -0.060122 hybrid +144_2-17 Q0 MARCO_18_3116444373-2 13 -0.062529 hybrid +144_2-17 Q0 MARCO_18_3112781714-22 14 -0.064324 hybrid +144_2-17 Q0 MARCO_18_3116444373-11 15 -0.070236 hybrid +144_2-17 Q0 MARCO_27_1146612109-6 16 -0.071724 hybrid +144_2-17 Q0 KILT_47105558-1 17 -0.073191 hybrid +144_2-17 Q0 MARCO_18_3116977530-5 18 -0.081466 hybrid +144_2-17 Q0 MARCO_18_3116444373-42 19 -0.083890 hybrid +144_2-17 Q0 MARCO_27_1146612109-1 20 -0.086486 hybrid +144_2-17 Q0 MARCO_27_1146612109-4 21 -0.097797 hybrid +144_2-17 Q0 MARCO_37_710297867-13 22 -0.102856 hybrid +144_2-17 Q0 MARCO_18_3116444373-18 23 -0.107103 hybrid +144_2-17 Q0 MARCO_18_3116444373-3 24 -0.116189 hybrid +144_2-17 Q0 MARCO_52_1610969932-2 25 -0.120996 hybrid +144_2-17 Q0 MARCO_18_3116444373-22 26 -0.136817 hybrid +144_2-17 Q0 MARCO_18_3116444373-8 27 -0.142226 hybrid +144_2-17 Q0 MARCO_27_1146612109-5 28 -0.153400 hybrid +144_2-17 Q0 MARCO_18_3116664840-55 29 -0.157072 hybrid +144_2-17 Q0 MARCO_18_3116977530-7 30 -0.157303 hybrid +144_2-17 Q0 MARCO_18_3116444373-35 31 -0.162390 hybrid +144_2-17 Q0 MARCO_18_3116444373-6 32 -0.166509 hybrid +144_2-17 Q0 MARCO_18_3116977530-11 33 -0.168387 hybrid +144_2-17 Q0 MARCO_18_3116510005-17 34 -0.175053 hybrid +144_2-17 Q0 MARCO_18_3116977530-2 35 -0.176537 hybrid +144_2-17 Q0 MARCO_18_1824491436-16 36 -0.178103 hybrid +144_2-17 Q0 MARCO_18_3116444373-26 37 -0.178783 hybrid +144_2-17 Q0 MARCO_18_3112781714-6 38 -0.178949 hybrid +144_2-17 Q0 KILT_7201833-2 39 -0.184647 hybrid +144_2-17 Q0 MARCO_18_1824491436-15 40 -0.187202 hybrid +144_2-17 Q0 MARCO_18_3112781714-25 41 -0.188364 hybrid +144_2-17 Q0 MARCO_18_3116977530-1 42 -0.189594 hybrid +144_2-17 Q0 MARCO_50_1171002766-17 43 -0.190853 hybrid +144_2-17 Q0 MARCO_18_3116444373-7 44 -0.191099 hybrid +144_2-17 Q0 KILT_3813298-3 45 -0.200470 hybrid +144_2-17 Q0 KILT_3813298-1 46 -0.206670 hybrid +144_2-17 Q0 KILT_86655-7 47 -0.207971 hybrid +144_2-17 Q0 MARCO_18_3116444373-14 48 -0.214966 hybrid +144_2-17 Q0 MARCO_18_3116444373-34 49 -0.217152 hybrid +144_2-17 Q0 KILT_869316-4 50 -0.224848 hybrid +144_2-17 Q0 MARCO_37_710297867-15 51 -0.228260 hybrid +144_2-17 Q0 KILT_59118602-2 52 -0.232028 hybrid +144_2-17 Q0 MARCO_27_1146612109-3 53 -0.235858 hybrid +144_2-17 Q0 MARCO_18_922563224-2 54 -0.240104 hybrid +144_2-17 Q0 MARCO_18_3116664840-54 55 -0.242519 hybrid +144_2-17 Q0 MARCO_18_3119937986-20 56 -0.243427 hybrid +144_2-17 Q0 KILT_59118602-8 57 -0.249825 hybrid +144_2-17 Q0 MARCO_18_3233548707-7 58 -0.250001 hybrid +144_2-17 Q0 MARCO_18_3114962854-3 59 -0.253190 hybrid +144_2-17 Q0 MARCO_18_3270644462-29 60 -0.257539 hybrid +144_2-17 Q0 KILT_723059-5 61 -0.258458 hybrid +144_2-17 Q0 MARCO_18_3116444373-24 62 -0.263809 hybrid +144_2-17 Q0 MARCO_18_3112781714-8 63 -0.277038 hybrid +144_2-17 Q0 MARCO_18_3270644462-22 64 -0.279208 hybrid +144_2-17 Q0 KILT_59118602-10 65 -0.279614 hybrid +144_2-17 Q0 KILT_12930143-1 66 -0.280678 hybrid +144_2-17 Q0 MARCO_18_3116444373-12 67 -0.283582 hybrid +144_2-17 Q0 KILT_86655-13 68 -0.286510 hybrid +144_2-17 Q0 MARCO_18_3112781714-16 69 -0.286860 hybrid +144_2-17 Q0 MARCO_31_1022658942-4 70 -0.290280 hybrid +144_2-17 Q0 KILT_42907493-3 71 -0.298494 hybrid +144_2-17 Q0 MARCO_18_3116317508-4 72 -0.306402 hybrid +144_2-17 Q0 MARCO_18_3270644462-5 73 -0.306505 hybrid +144_2-17 Q0 MARCO_18_3112781714-9 74 -0.310201 hybrid +144_2-17 Q0 MARCO_12_586299903-22 75 -0.311682 hybrid +144_2-17 Q0 MARCO_50_1406856964-67 76 -0.311836 hybrid +144_2-17 Q0 KILT_3136551-2 77 -0.313376 hybrid +144_2-17 Q0 MARCO_18_3116444373-39 78 -0.315299 hybrid +144_2-17 Q0 MARCO_18_3116444373-13 79 -0.316325 hybrid +144_2-17 Q0 MARCO_05_809423293-2 80 -0.316677 hybrid +144_2-17 Q0 MARCO_47_1516406453-8 81 -0.319680 hybrid +144_2-17 Q0 MARCO_50_2153076262-6 82 -0.319710 hybrid +144_2-17 Q0 MARCO_44_613849939-1 83 -0.320048 hybrid +144_2-17 Q0 MARCO_18_3112781714-7 84 -0.320106 hybrid +144_2-17 Q0 MARCO_18_3112781714-15 85 -0.321722 hybrid +144_2-17 Q0 MARCO_18_3116444373-45 86 -0.323815 hybrid +144_2-17 Q0 KILT_3813298-7 87 -0.324924 hybrid +144_2-17 Q0 MARCO_18_3116317508-43 88 -0.325443 hybrid +144_2-17 Q0 MARCO_18_3116444373-29 89 -0.325573 hybrid +144_2-17 Q0 KILT_3813298-4 90 -0.327952 hybrid +144_2-17 Q0 MARCO_18_3116664840-30 91 -0.333908 hybrid +144_2-17 Q0 MARCO_18_3116444373-23 92 -0.335858 hybrid +144_2-17 Q0 MARCO_18_3116444373-28 93 -0.338201 hybrid +144_2-17 Q0 MARCO_18_3116444373-30 94 -0.338201 hybrid +144_2-17 Q0 MARCO_18_3116977530-8 95 -0.339015 hybrid +144_2-17 Q0 MARCO_18_3233548707-9 96 -0.340468 hybrid +144_2-17 Q0 MARCO_18_3116444373-37 97 -0.340519 hybrid +144_2-17 Q0 MARCO_18_3116664840-7 98 -0.340579 hybrid +144_2-17 Q0 MARCO_50_1527977836-13 99 -0.340727 hybrid +144_2-17 Q0 KILT_1295284-6 100 -0.343263 hybrid +144_2-3 Q0 MARCO_18_3116977530-1 1 0.564364 hybrid +144_2-3 Q0 MARCO_18_3116977530-11 2 0.550376 hybrid +144_2-3 Q0 MARCO_18_3116977530-10 3 0.467174 hybrid +144_2-3 Q0 MARCO_18_3270644462-18 4 0.401790 hybrid +144_2-3 Q0 MARCO_18_3116977530-6 5 0.379504 hybrid +144_2-3 Q0 MARCO_18_3116977530-2 6 0.361184 hybrid +144_2-3 Q0 MARCO_18_3116444373-42 7 0.344085 hybrid +144_2-3 Q0 MARCO_18_3116444373-8 8 0.332344 hybrid +144_2-3 Q0 MARCO_18_3116977530-5 9 0.293035 hybrid +144_2-3 Q0 MARCO_18_3116444373-10 10 0.243154 hybrid +144_2-3 Q0 MARCO_18_3116444373-35 11 0.242621 hybrid +144_2-3 Q0 MARCO_12_586299903-22 12 0.217565 hybrid +144_2-3 Q0 MARCO_18_3116444373-7 13 0.215121 hybrid +144_2-3 Q0 MARCO_18_3116444373-27 14 0.165925 hybrid +144_2-3 Q0 MARCO_18_3116444373-11 15 0.150168 hybrid +144_2-3 Q0 MARCO_37_710297867-13 16 0.135127 hybrid +144_2-3 Q0 MARCO_18_3116444373-14 17 0.113348 hybrid +144_2-3 Q0 MARCO_18_3116444373-6 18 0.098692 hybrid +144_2-3 Q0 KILT_42907493-3 19 0.090488 hybrid +144_2-3 Q0 MARCO_31_882254318-6 20 0.069563 hybrid +144_2-3 Q0 MARCO_18_3116444373-2 21 0.061185 hybrid +144_2-3 Q0 MARCO_18_3116444373-12 22 0.060853 hybrid +144_2-3 Q0 KILT_59118602-2 23 0.013633 hybrid +144_2-3 Q0 MARCO_18_3116444373-13 24 0.011620 hybrid +144_2-3 Q0 MARCO_18_3116317508-4 25 0.002977 hybrid +144_2-3 Q0 MARCO_18_3116977530-14 26 -0.017293 hybrid +144_2-3 Q0 MARCO_18_3116664840-29 27 -0.019228 hybrid +144_2-3 Q0 KILT_42907493-4 28 -0.023965 hybrid +144_2-3 Q0 MARCO_47_1516406453-8 29 -0.040524 hybrid +144_2-3 Q0 MARCO_18_3116444373-39 30 -0.041384 hybrid +144_2-3 Q0 MARCO_52_1606022427-4 31 -0.041467 hybrid +144_2-3 Q0 MARCO_18_3116664840-30 32 -0.062107 hybrid +144_2-3 Q0 KILT_42907493-2 33 -0.071101 hybrid +144_2-3 Q0 MARCO_18_3116797241-1 34 -0.076957 hybrid +144_2-3 Q0 MARCO_18_3116444373-41 35 -0.082203 hybrid +144_2-3 Q0 MARCO_27_1146612109-2 36 -0.087646 hybrid +144_2-3 Q0 MARCO_18_3116444373-22 37 -0.090549 hybrid +144_2-3 Q0 MARCO_18_3116444373-43 38 -0.119501 hybrid +144_2-3 Q0 MARCO_18_3116444373-19 39 -0.121702 hybrid +144_2-3 Q0 MARCO_29_865121557-2 40 -0.129233 hybrid +144_2-3 Q0 MARCO_33_167139586-7 41 -0.132018 hybrid +144_2-3 Q0 MARCO_18_3116444373-37 42 -0.133505 hybrid +144_2-3 Q0 MARCO_37_711221842-5 43 -0.134755 hybrid +144_2-3 Q0 MARCO_18_3116664840-62 44 -0.136555 hybrid +144_2-3 Q0 MARCO_44_608424211-4 45 -0.141227 hybrid +144_2-3 Q0 MARCO_18_3116664840-54 46 -0.145395 hybrid +144_2-3 Q0 MARCO_18_3116977530-8 47 -0.148401 hybrid +144_2-3 Q0 KILT_59118602-8 48 -0.149621 hybrid +144_2-3 Q0 MARCO_18_3116756863-14 49 -0.154075 hybrid +144_2-3 Q0 MARCO_18_3270644462-22 50 -0.156106 hybrid +144_2-3 Q0 MARCO_52_1610238832-2 51 -0.158678 hybrid +144_2-3 Q0 MARCO_18_3116444373-3 52 -0.162321 hybrid +144_2-3 Q0 KILT_59118602-12 53 -0.166451 hybrid +144_2-3 Q0 MARCO_18_3116756863-28 54 -0.173707 hybrid +144_2-3 Q0 MARCO_18_3116878569-3 55 -0.182533 hybrid +144_2-3 Q0 MARCO_27_1146612109-1 56 -0.187692 hybrid +144_2-3 Q0 MARCO_18_3119937986-21 57 -0.190790 hybrid +144_2-3 Q0 MARCO_18_3116444373-25 58 -0.191360 hybrid +144_2-3 Q0 MARCO_37_710297867-15 59 -0.197246 hybrid +144_2-3 Q0 KILT_2647515-14 60 -0.197889 hybrid +144_2-3 Q0 MARCO_18_3116444373-9 61 -0.199129 hybrid +144_2-3 Q0 MARCO_27_1146612109-6 62 -0.206694 hybrid +144_2-3 Q0 MARCO_35_308868762-4 63 -0.214168 hybrid +144_2-3 Q0 MARCO_18_3116664840-60 64 -0.221700 hybrid +144_2-3 Q0 MARCO_52_1610969932-2 65 -0.221765 hybrid +144_2-3 Q0 MARCO_18_3116444373-1 66 -0.222336 hybrid +144_2-3 Q0 MARCO_18_3116444373-36 67 -0.223028 hybrid +144_2-3 Q0 MARCO_18_2718586974-13 68 -0.223893 hybrid +144_2-3 Q0 KILT_42907493-5 69 -0.230116 hybrid +144_2-3 Q0 MARCO_18_3116444373-45 70 -0.232460 hybrid +144_2-3 Q0 MARCO_18_3270644462-5 71 -0.236648 hybrid +144_2-3 Q0 MARCO_18_3116444373-5 72 -0.242099 hybrid +144_2-3 Q0 MARCO_15_599583395-56 73 -0.243880 hybrid +144_2-3 Q0 MARCO_18_3116444373-34 74 -0.247272 hybrid +144_2-3 Q0 MARCO_47_1516406453-9 75 -0.248175 hybrid +144_2-3 Q0 MARCO_18_3116664840-55 76 -0.248949 hybrid +144_2-3 Q0 MARCO_19_1767990244-45 77 -0.250000 hybrid +144_2-3 Q0 MARCO_14_466458461-3 78 -0.258191 hybrid +144_2-3 Q0 MARCO_18_3270644462-23 79 -0.265049 hybrid +144_2-3 Q0 MARCO_18_3270644462-29 80 -0.268477 hybrid +144_2-3 Q0 KILT_37724098-1 81 -0.272090 hybrid +144_2-3 Q0 MARCO_18_3116510005-17 82 -0.272410 hybrid +144_2-3 Q0 MARCO_36_633444448-28 83 -0.273005 hybrid +144_2-3 Q0 MARCO_01_1544663324-2 84 -0.276244 hybrid +144_2-3 Q0 MARCO_18_3116756863-11 85 -0.277450 hybrid +144_2-3 Q0 MARCO_18_3121862264-25 86 -0.280189 hybrid +144_2-3 Q0 MARCO_18_3116317508-43 87 -0.285260 hybrid +144_2-3 Q0 MARCO_08_1291511765-1 88 -0.286700 hybrid +144_2-3 Q0 MARCO_18_3116664840-7 89 -0.290900 hybrid +144_2-3 Q0 MARCO_18_3116444373-15 90 -0.291241 hybrid +144_2-3 Q0 KILT_37724098-9 91 -0.293303 hybrid +144_2-3 Q0 MARCO_18_3116878569-22 92 -0.298508 hybrid +144_2-3 Q0 MARCO_47_1515370785-2 93 -0.300617 hybrid +144_2-3 Q0 MARCO_18_3116878569-42 94 -0.302693 hybrid +144_2-3 Q0 MARCO_49_615030085-4 95 -0.302838 hybrid +144_2-3 Q0 MARCO_18_3270644462-4 96 -0.303482 hybrid +144_2-3 Q0 MARCO_18_3116977530-4 97 -0.306420 hybrid +144_2-3 Q0 MARCO_36_633444448-35 98 -0.308539 hybrid +144_2-3 Q0 MARCO_50_929652381-2 99 -0.313173 hybrid +144_2-3 Q0 MARCO_16_2834617917-24 100 -0.313821 hybrid +144_2-5 Q0 MARCO_27_551517218-2 1 0.628747 hybrid +144_2-5 Q0 MARCO_27_551504842-3 2 0.311904 hybrid +144_2-5 Q0 MARCO_51_2027300957-15 3 0.258949 hybrid +144_2-5 Q0 KILT_13048565-2 4 0.174435 hybrid +144_2-5 Q0 MARCO_18_3116444373-12 5 0.141556 hybrid +144_2-5 Q0 MARCO_18_3116977530-2 6 0.099140 hybrid +144_2-5 Q0 MARCO_01_1701257605-8 7 0.091588 hybrid +144_2-5 Q0 MARCO_18_3116977530-6 8 0.078458 hybrid +144_2-5 Q0 MARCO_27_551491409-8 9 0.078001 hybrid +144_2-5 Q0 MARCO_51_2027300957-16 10 0.064449 hybrid +144_2-5 Q0 MARCO_27_551517218-4 11 0.038594 hybrid +144_2-5 Q0 MARCO_51_2018044144-24 12 0.026521 hybrid +144_2-5 Q0 MARCO_51_2029072262-6 13 0.023377 hybrid +144_2-5 Q0 MARCO_07_1056397395-1 14 0.011782 hybrid +144_2-5 Q0 KILT_1038887-2 15 -0.012374 hybrid +144_2-5 Q0 MARCO_01_1701257605-9 16 -0.015009 hybrid +144_2-5 Q0 MARCO_27_1338595031-5 17 -0.022517 hybrid +144_2-5 Q0 MARCO_27_551586395-7 18 -0.029153 hybrid +144_2-5 Q0 MARCO_27_551477296-10 19 -0.031459 hybrid +144_2-5 Q0 MARCO_27_551504842-1 20 -0.048147 hybrid +144_2-5 Q0 MARCO_51_175748075-3 21 -0.058645 hybrid +144_2-5 Q0 MARCO_51_1877683529-57 22 -0.059254 hybrid +144_2-5 Q0 MARCO_06_1164666234-42 23 -0.092742 hybrid +144_2-5 Q0 MARCO_47_1509695086-2 24 -0.103261 hybrid +144_2-5 Q0 MARCO_39_1565125922-11 25 -0.130021 hybrid +144_2-5 Q0 MARCO_14_464992549-9 26 -0.142625 hybrid +144_2-5 Q0 KILT_22131-23 27 -0.153279 hybrid +144_2-5 Q0 MARCO_49_1853221413-3 28 -0.155982 hybrid +144_2-5 Q0 MARCO_36_21857713-20 29 -0.168507 hybrid +144_2-5 Q0 MARCO_27_551530415-4 30 -0.172029 hybrid +144_2-5 Q0 MARCO_51_1877683529-47 31 -0.175611 hybrid +144_2-5 Q0 MARCO_27_551638398-12 32 -0.180466 hybrid +144_2-5 Q0 MARCO_52_804886908-2 33 -0.183382 hybrid +144_2-5 Q0 MARCO_44_1856510715-2 34 -0.186497 hybrid +144_2-5 Q0 MARCO_50_1929182353-31 35 -0.187536 hybrid +144_2-5 Q0 MARCO_27_551586395-11 36 -0.197379 hybrid +144_2-5 Q0 MARCO_49_580361697-1 37 -0.199252 hybrid +144_2-5 Q0 MARCO_50_1447966974-6 38 -0.207451 hybrid +144_2-5 Q0 MARCO_45_1025271660-18 39 -0.209844 hybrid +144_2-5 Q0 MARCO_27_551504842-5 40 -0.219596 hybrid +144_2-5 Q0 MARCO_27_551586395-3 41 -0.224434 hybrid +144_2-5 Q0 MARCO_40_1276685943-4 42 -0.227423 hybrid +144_2-5 Q0 MARCO_50_1935898634-8 43 -0.235021 hybrid +144_2-5 Q0 MARCO_50_1929182353-11 44 -0.235873 hybrid +144_2-5 Q0 MARCO_11_692340223-3 45 -0.241524 hybrid +144_2-5 Q0 MARCO_07_1056349172-31 46 -0.242199 hybrid +144_2-5 Q0 MARCO_39_1565125922-7 47 -0.242857 hybrid +144_2-5 Q0 MARCO_40_817135082-6 48 -0.244639 hybrid +144_2-5 Q0 MARCO_36_23511169-8 49 -0.249580 hybrid +144_2-5 Q0 KILT_23595810-1 50 -0.250000 hybrid +144_2-5 Q0 MARCO_27_551504842-9 51 -0.250493 hybrid +144_2-5 Q0 MARCO_27_551586395-6 52 -0.257221 hybrid +144_2-5 Q0 MARCO_18_3116977530-1 53 -0.258528 hybrid +144_2-5 Q0 MARCO_51_1877683529-5 54 -0.259558 hybrid +144_2-5 Q0 MARCO_04_482142610-18 55 -0.263075 hybrid +144_2-5 Q0 MARCO_42_1191190492-2 56 -0.264949 hybrid +144_2-5 Q0 MARCO_27_551572325-9 57 -0.265758 hybrid +144_2-5 Q0 KILT_41228673-23 58 -0.266675 hybrid +144_2-5 Q0 MARCO_51_1877683529-1 59 -0.266952 hybrid +144_2-5 Q0 MARCO_33_168517404-1 60 -0.267441 hybrid +144_2-5 Q0 MARCO_51_1877683529-52 61 -0.267722 hybrid +144_2-5 Q0 MARCO_51_1250074580-5 62 -0.272732 hybrid +144_2-5 Q0 MARCO_17_670564467-11 63 -0.274195 hybrid +144_2-5 Q0 KILT_1038887-17 64 -0.277071 hybrid +144_2-5 Q0 MARCO_51_2022548062-11 65 -0.283908 hybrid +144_2-5 Q0 MARCO_50_1935898634-6 66 -0.285505 hybrid +144_2-5 Q0 MARCO_17_1684009152-7 67 -0.288503 hybrid +144_2-5 Q0 MARCO_27_551572325-7 68 -0.289243 hybrid +144_2-5 Q0 MARCO_30_1199079139-10 69 -0.289966 hybrid +144_2-5 Q0 MARCO_27_551530415-5 70 -0.290017 hybrid +144_2-5 Q0 MARCO_28_970280486-9 71 -0.292034 hybrid +144_2-5 Q0 MARCO_04_479769927-2 72 -0.292678 hybrid +144_2-5 Q0 MARCO_51_1877683529-10 73 -0.294033 hybrid +144_2-5 Q0 MARCO_14_464397309-19 74 -0.296668 hybrid +144_2-5 Q0 MARCO_27_551491409-9 75 -0.297221 hybrid +144_2-5 Q0 MARCO_18_4366662615-7 76 -0.304365 hybrid +144_2-5 Q0 MARCO_20_625957680-8 77 -0.304620 hybrid +144_2-5 Q0 MARCO_39_1565125922-10 78 -0.306809 hybrid +144_2-5 Q0 MARCO_36_22378426-24 79 -0.306909 hybrid +144_2-5 Q0 MARCO_18_3116444373-9 80 -0.308867 hybrid +144_2-5 Q0 MARCO_06_7596877-11 81 -0.311686 hybrid +144_2-5 Q0 MARCO_14_465466264-6 82 -0.312862 hybrid +144_2-5 Q0 MARCO_20_626117258-1 83 -0.313096 hybrid +144_2-5 Q0 MARCO_27_551517218-9 84 -0.314956 hybrid +144_2-5 Q0 MARCO_16_2367820982-47 85 -0.316618 hybrid +144_2-5 Q0 MARCO_30_1655204265-7 86 -0.319166 hybrid +144_2-5 Q0 MARCO_24_977065656-23 87 -0.322139 hybrid +144_2-5 Q0 MARCO_36_26062731-2 88 -0.324107 hybrid +144_2-5 Q0 MARCO_43_771700093-18 89 -0.325323 hybrid +144_2-5 Q0 MARCO_07_1056397395-6 90 -0.326163 hybrid +144_2-5 Q0 MARCO_06_1154970755-59 91 -0.327430 hybrid +144_2-5 Q0 MARCO_51_1877683529-54 92 -0.330225 hybrid +144_2-5 Q0 MARCO_27_551586395-1 93 -0.332467 hybrid +144_2-5 Q0 MARCO_14_464992549-10 94 -0.334665 hybrid +144_2-5 Q0 MARCO_51_693717393-56 95 -0.334665 hybrid +144_2-5 Q0 MARCO_51_2022548062-1 96 -0.335475 hybrid +144_2-5 Q0 MARCO_24_1273906929-2 97 -0.337979 hybrid +144_2-5 Q0 MARCO_54_1942019282-2 98 -0.339588 hybrid +144_2-5 Q0 MARCO_07_1056397395-14 99 -0.340865 hybrid +144_2-5 Q0 MARCO_16_2372402880-4 100 -0.342040 hybrid +144_2-7 Q0 MARCO_31_882254318-6 1 0.650445 hybrid +144_2-7 Q0 MARCO_27_1146612109-1 2 0.231049 hybrid +144_2-7 Q0 MARCO_18_3116444373-40 3 0.061734 hybrid +144_2-7 Q0 MARCO_47_1515569461-2 4 0.027591 hybrid +144_2-7 Q0 MARCO_14_466458461-2 5 0.021199 hybrid +144_2-7 Q0 MARCO_18_3116444373-12 6 0.008297 hybrid +144_2-7 Q0 MARCO_36_951494101-2 7 -0.029796 hybrid +144_2-7 Q0 MARCO_18_3116444373-9 8 -0.030555 hybrid +144_2-7 Q0 MARCO_18_3116444373-43 9 -0.031210 hybrid +144_2-7 Q0 MARCO_18_3116444373-35 10 -0.033703 hybrid +144_2-7 Q0 MARCO_18_3116444373-42 11 -0.036455 hybrid +144_2-7 Q0 MARCO_18_3116878569-9 12 -0.060896 hybrid +144_2-7 Q0 MARCO_18_3116444373-41 13 -0.072786 hybrid +144_2-7 Q0 MARCO_14_466458461-3 14 -0.073757 hybrid +144_2-7 Q0 MARCO_18_3116977530-6 15 -0.074761 hybrid +144_2-7 Q0 MARCO_18_3116444373-8 16 -0.076157 hybrid +144_2-7 Q0 MARCO_46_1493599846-2 17 -0.077132 hybrid +144_2-7 Q0 MARCO_18_3116878569-3 18 -0.081540 hybrid +144_2-7 Q0 KILT_59118602-8 19 -0.088346 hybrid +144_2-7 Q0 MARCO_24_1139122304-6 20 -0.096134 hybrid +144_2-7 Q0 MARCO_18_3116444373-39 21 -0.100123 hybrid +144_2-7 Q0 MARCO_18_3116878569-42 22 -0.116513 hybrid +144_2-7 Q0 MARCO_27_1146612109-2 23 -0.144839 hybrid +144_2-7 Q0 KILT_2647515-21 24 -0.151471 hybrid +144_2-7 Q0 MARCO_31_1022658942-4 25 -0.157027 hybrid +144_2-7 Q0 MARCO_18_3123761348-4 26 -0.157360 hybrid +144_2-7 Q0 MARCO_18_3116878569-21 27 -0.161655 hybrid +144_2-7 Q0 MARCO_18_3116444373-44 28 -0.163371 hybrid +144_2-7 Q0 MARCO_18_924403543-6 29 -0.165605 hybrid +144_2-7 Q0 MARCO_40_1275785480-2 30 -0.166056 hybrid +144_2-7 Q0 MARCO_18_3116977530-14 31 -0.167267 hybrid +144_2-7 Q0 MARCO_52_1611218176-12 32 -0.174734 hybrid +144_2-7 Q0 MARCO_42_1370357152-122 33 -0.178593 hybrid +144_2-7 Q0 KILT_3682299-3 34 -0.178861 hybrid +144_2-7 Q0 MARCO_20_870069371-3 35 -0.179472 hybrid +144_2-7 Q0 MARCO_18_3116977530-10 36 -0.183945 hybrid +144_2-7 Q0 MARCO_18_1815195164-30 37 -0.184136 hybrid +144_2-7 Q0 MARCO_35_308844340-6 38 -0.192860 hybrid +144_2-7 Q0 MARCO_47_1512775494-8 39 -0.197919 hybrid +144_2-7 Q0 MARCO_18_3270644462-62 40 -0.200766 hybrid +144_2-7 Q0 MARCO_18_3116977530-8 41 -0.201024 hybrid +144_2-7 Q0 MARCO_18_3116664840-55 42 -0.212175 hybrid +144_2-7 Q0 MARCO_18_3270644462-37 43 -0.213131 hybrid +144_2-7 Q0 MARCO_18_3119937986-21 44 -0.219287 hybrid +144_2-7 Q0 MARCO_39_1569621978-13 45 -0.223010 hybrid +144_2-7 Q0 MARCO_15_599583395-56 46 -0.224091 hybrid +144_2-7 Q0 MARCO_29_1334919388-29 47 -0.232202 hybrid +144_2-7 Q0 MARCO_18_3116664840-60 48 -0.234200 hybrid +144_2-7 Q0 MARCO_13_449259655-1 49 -0.237023 hybrid +144_2-7 Q0 MARCO_18_3119373597-27 50 -0.239793 hybrid +144_2-7 Q0 KILT_42907493-5 51 -0.246754 hybrid +144_2-7 Q0 MARCO_26_1067160456-1 52 -0.249999 hybrid +144_2-7 Q0 MARCO_18_3270644462-38 53 -0.254345 hybrid +144_2-7 Q0 MARCO_18_3116878569-23 54 -0.258889 hybrid +144_2-7 Q0 KILT_2647515-22 55 -0.261821 hybrid +144_2-7 Q0 MARCO_18_3121862264-31 56 -0.267830 hybrid +144_2-7 Q0 MARCO_18_3116878569-8 57 -0.272811 hybrid +144_2-7 Q0 MARCO_47_1515569461-1 58 -0.277133 hybrid +144_2-7 Q0 KILT_2647515-17 59 -0.283914 hybrid +144_2-7 Q0 MARCO_18_3116977530-4 60 -0.285587 hybrid +144_2-7 Q0 MARCO_18_3118367795-27 61 -0.285988 hybrid +144_2-7 Q0 MARCO_18_3270644462-9 62 -0.293032 hybrid +144_2-7 Q0 MARCO_18_3116444373-10 63 -0.294420 hybrid +144_2-7 Q0 MARCO_18_3116444373-2 64 -0.294760 hybrid +144_2-7 Q0 MARCO_18_3116878569-6 65 -0.299522 hybrid +144_2-7 Q0 MARCO_13_449264993-3 66 -0.306131 hybrid +144_2-7 Q0 MARCO_13_449254264-3 67 -0.306131 hybrid +144_2-7 Q0 MARCO_13_449306936-19 68 -0.306131 hybrid +144_2-7 Q0 MARCO_13_449259655-3 69 -0.306131 hybrid +144_2-7 Q0 MARCO_32_114770462-24 70 -0.307697 hybrid +144_2-7 Q0 MARCO_18_3121862264-49 71 -0.307876 hybrid +144_2-7 Q0 KILT_2647515-7 72 -0.309300 hybrid +144_2-7 Q0 MARCO_15_599583395-40 73 -0.312899 hybrid +144_2-7 Q0 MARCO_18_3116035578-11 74 -0.316329 hybrid +144_2-7 Q0 MARCO_13_449270319-6 75 -0.320445 hybrid +144_2-7 Q0 MARCO_18_3119373597-38 76 -0.321606 hybrid +144_2-7 Q0 MARCO_44_608424211-4 77 -0.323551 hybrid +144_2-7 Q0 MARCO_18_3116317508-10 78 -0.323718 hybrid +144_2-7 Q0 MARCO_18_3116977530-1 79 -0.324351 hybrid +144_2-7 Q0 MARCO_18_3116444373-19 80 -0.324585 hybrid +144_2-7 Q0 MARCO_18_3116235467-15 81 -0.326145 hybrid +144_2-7 Q0 MARCO_18_3116510005-17 82 -0.326745 hybrid +144_2-7 Q0 MARCO_50_1423219237-20 83 -0.331402 hybrid +144_2-7 Q0 MARCO_50_1437146908-9 84 -0.333880 hybrid +144_2-7 Q0 MARCO_18_3116977530-2 85 -0.334486 hybrid +144_2-7 Q0 MARCO_16_2867492614-11 86 -0.338607 hybrid +144_2-7 Q0 MARCO_05_809884773-15 87 -0.339962 hybrid +144_2-7 Q0 MARCO_18_3119937986-2 88 -0.340987 hybrid +144_2-7 Q0 MARCO_51_2018823501-12 89 -0.342166 hybrid +144_2-7 Q0 MARCO_35_308844340-4 90 -0.343319 hybrid +144_2-7 Q0 MARCO_18_3116878569-20 91 -0.348425 hybrid +144_2-7 Q0 MARCO_18_3116444373-27 92 -0.349394 hybrid +144_2-7 Q0 KILT_2647515-14 93 -0.349675 hybrid +144_2-7 Q0 MARCO_18_3116444373-7 94 -0.350497 hybrid +144_2-7 Q0 MARCO_29_865121557-2 95 -0.350607 hybrid +144_2-7 Q0 MARCO_18_3116664840-43 96 -0.352951 hybrid +144_2-7 Q0 MARCO_18_3116756863-26 97 -0.354022 hybrid +144_2-7 Q0 MARCO_16_2834617917-34 98 -0.355244 hybrid +144_2-7 Q0 MARCO_18_3116444373-5 99 -0.356671 hybrid +144_2-7 Q0 MARCO_14_466458461-1 100 -0.359010 hybrid +144_2-9 Q0 MARCO_41_2084998181-5 1 0.287389 hybrid +144_2-9 Q0 MARCO_55_133784928-2 2 0.250000 hybrid +144_2-9 Q0 KILT_1038887-2 3 0.200394 hybrid +144_2-9 Q0 MARCO_39_1565905913-14 4 0.189493 hybrid +144_2-9 Q0 MARCO_51_2025171882-11 5 0.134488 hybrid +144_2-9 Q0 MARCO_20_870069371-2 6 0.127349 hybrid +144_2-9 Q0 MARCO_14_464759366-19 7 0.080460 hybrid +144_2-9 Q0 MARCO_39_1565701236-10 8 0.077872 hybrid +144_2-9 Q0 MARCO_42_1191198866-1 9 0.075700 hybrid +144_2-9 Q0 MARCO_27_1332853232-8 10 0.046011 hybrid +144_2-9 Q0 MARCO_39_1565905913-13 11 0.038133 hybrid +144_2-9 Q0 MARCO_14_465466264-19 12 0.024577 hybrid +144_2-9 Q0 MARCO_36_951637961-7 13 0.005045 hybrid +144_2-9 Q0 MARCO_42_1191194144-3 14 -0.001365 hybrid +144_2-9 Q0 KILT_41228673-41 15 -0.007472 hybrid +144_2-9 Q0 MARCO_14_465466264-18 16 -0.016814 hybrid +144_2-9 Q0 MARCO_23_646576475-14 17 -0.023262 hybrid +144_2-9 Q0 MARCO_39_1565905913-15 18 -0.042851 hybrid +144_2-9 Q0 MARCO_50_1510199927-30 19 -0.050438 hybrid +144_2-9 Q0 MARCO_19_564053863-26 20 -0.059016 hybrid +144_2-9 Q0 MARCO_36_951494101-2 21 -0.060102 hybrid +144_2-9 Q0 MARCO_51_2025171882-12 22 -0.060954 hybrid +144_2-9 Q0 MARCO_19_564053863-38 23 -0.063542 hybrid +144_2-9 Q0 MARCO_41_2085507859-27 24 -0.068821 hybrid +144_2-9 Q0 MARCO_54_172568623-9 25 -0.083609 hybrid +144_2-9 Q0 MARCO_07_263923330-4 26 -0.087178 hybrid +144_2-9 Q0 MARCO_19_564053863-83 27 -0.087201 hybrid +144_2-9 Q0 MARCO_14_467442369-12 28 -0.102273 hybrid +144_2-9 Q0 MARCO_11_116535980-93 29 -0.108814 hybrid +144_2-9 Q0 MARCO_28_332908071-3 30 -0.115871 hybrid +144_2-9 Q0 MARCO_40_1271109547-2 31 -0.125026 hybrid +144_2-9 Q0 MARCO_14_467442369-47 32 -0.126694 hybrid +144_2-9 Q0 MARCO_11_692240180-3 33 -0.141866 hybrid +144_2-9 Q0 MARCO_40_1268041629-8 34 -0.142121 hybrid +144_2-9 Q0 MARCO_36_951494101-4 35 -0.148138 hybrid +144_2-9 Q0 MARCO_14_467442369-5 36 -0.153521 hybrid +144_2-9 Q0 MARCO_36_951494101-5 37 -0.153749 hybrid +144_2-9 Q0 MARCO_11_692246100-5 38 -0.158078 hybrid +144_2-9 Q0 MARCO_18_924403543-6 39 -0.167877 hybrid +144_2-9 Q0 MARCO_14_465466264-12 40 -0.168516 hybrid +144_2-9 Q0 MARCO_42_1191198866-3 41 -0.171479 hybrid +144_2-9 Q0 MARCO_41_2085507859-9 42 -0.173198 hybrid +144_2-9 Q0 MARCO_40_1268041629-6 43 -0.179792 hybrid +144_2-9 Q0 MARCO_39_35494754-9 44 -0.180628 hybrid +144_2-9 Q0 MARCO_23_646576475-13 45 -0.182977 hybrid +144_2-9 Q0 KILT_5006565-6 46 -0.186541 hybrid +144_2-9 Q0 KILT_60323001-6 47 -0.189508 hybrid +144_2-9 Q0 MARCO_14_465466264-8 48 -0.191680 hybrid +144_2-9 Q0 MARCO_36_951494101-6 49 -0.195094 hybrid +144_2-9 Q0 KILT_40725467-2 50 -0.195323 hybrid +144_2-9 Q0 KILT_40725467-5 51 -0.196907 hybrid +144_2-9 Q0 MARCO_39_35494754-5 52 -0.203969 hybrid +144_2-9 Q0 MARCO_20_658746463-1 53 -0.204873 hybrid +144_2-9 Q0 MARCO_14_467442369-6 54 -0.204894 hybrid +144_2-9 Q0 MARCO_51_2022482964-9 55 -0.207356 hybrid +144_2-9 Q0 MARCO_41_2082014339-2 56 -0.207367 hybrid +144_2-9 Q0 MARCO_14_465397073-17 57 -0.214226 hybrid +144_2-9 Q0 MARCO_14_467577582-10 58 -0.217198 hybrid +144_2-9 Q0 MARCO_51_2022482964-11 59 -0.220326 hybrid +144_2-9 Q0 MARCO_14_465466264-1 60 -0.224555 hybrid +144_2-9 Q0 MARCO_19_606473338-3 61 -0.224721 hybrid +144_2-9 Q0 KILT_41228673-38 62 -0.226239 hybrid +144_2-9 Q0 MARCO_41_2082014339-5 63 -0.236407 hybrid +144_2-9 Q0 MARCO_11_692232042-2 64 -0.239031 hybrid +144_2-9 Q0 MARCO_14_465466264-28 65 -0.242876 hybrid +144_2-9 Q0 KILT_41228673-40 66 -0.243352 hybrid +144_2-9 Q0 MARCO_51_2013595197-4 67 -0.243895 hybrid +144_2-9 Q0 MARCO_14_465466264-6 68 -0.245698 hybrid +144_2-9 Q0 MARCO_50_2495383872-7 69 -0.247059 hybrid +144_2-9 Q0 MARCO_41_2085507859-19 70 -0.248789 hybrid +144_2-9 Q0 MARCO_06_1561972038-10 71 -0.250000 hybrid +144_2-9 Q0 MARCO_42_1191198866-2 72 -0.250765 hybrid +144_2-9 Q0 KILT_11729-33 73 -0.253731 hybrid +144_2-9 Q0 MARCO_21_153774515-3 74 -0.255513 hybrid +144_2-9 Q0 MARCO_51_2022482964-8 75 -0.258454 hybrid +144_2-9 Q0 MARCO_06_1232309151-186 76 -0.260335 hybrid +144_2-9 Q0 MARCO_33_1042244952-9 77 -0.260366 hybrid +144_2-9 Q0 MARCO_35_312963343-7 78 -0.263733 hybrid +144_2-9 Q0 MARCO_47_1515569461-2 79 -0.267297 hybrid +144_2-9 Q0 MARCO_41_2082014339-4 80 -0.276353 hybrid +144_2-9 Q0 MARCO_43_771656978-2 81 -0.277851 hybrid +144_2-9 Q0 MARCO_40_1268041629-5 82 -0.280287 hybrid +144_2-9 Q0 MARCO_39_1565125922-10 83 -0.280350 hybrid +144_2-9 Q0 MARCO_43_771750459-6 84 -0.280817 hybrid +144_2-9 Q0 MARCO_39_1565905913-12 85 -0.282220 hybrid +144_2-9 Q0 MARCO_42_1191236981-3 86 -0.284204 hybrid +144_2-9 Q0 MARCO_41_2081616344-5 87 -0.286045 hybrid +144_2-9 Q0 MARCO_35_1473690667-7 88 -0.289673 hybrid +144_2-9 Q0 MARCO_40_1271109547-5 89 -0.290924 hybrid +144_2-9 Q0 KILT_8166749-44 90 -0.291194 hybrid +144_2-9 Q0 MARCO_40_1276162129-2 91 -0.291464 hybrid +144_2-9 Q0 MARCO_20_658746463-4 92 -0.293127 hybrid +144_2-9 Q0 MARCO_51_2011530188-19 93 -0.293142 hybrid +144_2-9 Q0 MARCO_33_722936606-55 94 -0.294072 hybrid +144_2-9 Q0 MARCO_20_870069371-3 95 -0.294613 hybrid +144_2-9 Q0 MARCO_45_1321453358-5 96 -0.297211 hybrid +144_2-9 Q0 MARCO_43_771302710-3 97 -0.297507 hybrid +144_2-9 Q0 KILT_13048565-1 98 -0.298816 hybrid +144_2-9 Q0 KILT_23821416-8 99 -0.300661 hybrid +144_2-9 Q0 MARCO_40_1268041629-4 100 -0.301357 hybrid +144_3-1 Q0 MARCO_39_27772509-11 1 0.249998 hybrid +144_3-1 Q0 MARCO_01_1056439620-288 2 0.170030 hybrid +144_3-1 Q0 KILT_1424999-8 3 0.169488 hybrid +144_3-1 Q0 MARCO_30_455675595-3 4 0.156783 hybrid +144_3-1 Q0 MARCO_54_172263646-19 5 0.133083 hybrid +144_3-1 Q0 MARCO_22_1492491069-1 6 0.087823 hybrid +144_3-1 Q0 MARCO_50_1412083651-7 7 0.032385 hybrid +144_3-1 Q0 MARCO_50_1412083651-15 8 -0.008463 hybrid +144_3-1 Q0 MARCO_50_1931411621-10 9 -0.022925 hybrid +144_3-1 Q0 MARCO_39_27721594-12 10 -0.041068 hybrid +144_3-1 Q0 MARCO_49_515254021-9 11 -0.042130 hybrid +144_3-1 Q0 MARCO_50_1970611268-21 12 -0.045832 hybrid +144_3-1 Q0 MARCO_50_929616868-28 13 -0.072834 hybrid +144_3-1 Q0 KILT_5728124-3 14 -0.076105 hybrid +144_3-1 Q0 MARCO_50_929616868-4 15 -0.081214 hybrid +144_3-1 Q0 KILT_1424999-5 16 -0.089919 hybrid +144_3-1 Q0 MARCO_24_1312795837-30 17 -0.101252 hybrid +144_3-1 Q0 KILT_1424999-7 18 -0.126257 hybrid +144_3-1 Q0 KILT_1424999-6 19 -0.126811 hybrid +144_3-1 Q0 MARCO_50_1937354188-16 20 -0.134786 hybrid +144_3-1 Q0 MARCO_01_1055971344-10 21 -0.139563 hybrid +144_3-1 Q0 MARCO_50_2154158921-21 22 -0.142016 hybrid +144_3-1 Q0 MARCO_50_1931411621-3 23 -0.146524 hybrid +144_3-1 Q0 MARCO_27_551542643-8 24 -0.152178 hybrid +144_3-1 Q0 MARCO_50_929616868-7 25 -0.159890 hybrid +144_3-1 Q0 MARCO_50_1931411621-7 26 -0.194521 hybrid +144_3-1 Q0 MARCO_50_1970611268-20 27 -0.197874 hybrid +144_3-1 Q0 MARCO_50_1928168365-2 28 -0.206139 hybrid +144_3-1 Q0 MARCO_50_1928168365-7 29 -0.209432 hybrid +144_3-1 Q0 MARCO_42_1893358564-6 30 -0.217202 hybrid +144_3-1 Q0 MARCO_03_249412985-13 31 -0.223050 hybrid +144_3-1 Q0 MARCO_50_1935898634-26 32 -0.225971 hybrid +144_3-1 Q0 MARCO_50_2165446805-12 33 -0.227950 hybrid +144_3-1 Q0 MARCO_16_2981819985-10 34 -0.237222 hybrid +144_3-1 Q0 MARCO_51_2018625900-14 35 -0.242912 hybrid +144_3-1 Q0 MARCO_17_670396810-13 36 -0.245415 hybrid +144_3-1 Q0 MARCO_50_1928168365-8 37 -0.246277 hybrid +144_3-1 Q0 MARCO_50_1928168365-6 38 -0.247641 hybrid +144_3-1 Q0 MARCO_50_2174712329-22 39 -0.250002 hybrid +144_3-1 Q0 MARCO_50_1529335468-3 40 -0.250989 hybrid +144_3-1 Q0 MARCO_50_1928168365-9 41 -0.252218 hybrid +144_3-1 Q0 MARCO_05_483098342-4 42 -0.253433 hybrid +144_3-1 Q0 MARCO_50_1935898634-46 43 -0.253693 hybrid +144_3-1 Q0 MARCO_50_2165446805-1 44 -0.253732 hybrid +144_3-1 Q0 MARCO_47_1285344033-4 45 -0.258513 hybrid +144_3-1 Q0 MARCO_50_1935898634-21 46 -0.262607 hybrid +144_3-1 Q0 MARCO_50_1937354188-10 47 -0.264219 hybrid +144_3-1 Q0 MARCO_24_1312795837-57 48 -0.267721 hybrid +144_3-1 Q0 MARCO_50_1935898634-27 49 -0.270446 hybrid +144_3-1 Q0 MARCO_50_1529335468-9 50 -0.270898 hybrid +144_3-1 Q0 MARCO_50_1929182353-22 51 -0.272732 hybrid +144_3-1 Q0 MARCO_50_1935898634-25 52 -0.275411 hybrid +144_3-1 Q0 MARCO_50_1934855698-37 53 -0.276020 hybrid +144_3-1 Q0 MARCO_50_1937354188-7 54 -0.276498 hybrid +144_3-1 Q0 KILT_1424999-3 55 -0.277390 hybrid +144_3-1 Q0 MARCO_22_1421670473-2 56 -0.278712 hybrid +144_3-1 Q0 MARCO_50_1937354188-30 57 -0.289724 hybrid +144_3-1 Q0 KILT_24559146-10 58 -0.289929 hybrid +144_3-1 Q0 MARCO_24_1553048345-9 59 -0.296603 hybrid +144_3-1 Q0 MARCO_50_1450987939-16 60 -0.297277 hybrid +144_3-1 Q0 MARCO_04_482422635-12 61 -0.304195 hybrid +144_3-1 Q0 MARCO_50_1937392218-20 62 -0.304353 hybrid +144_3-1 Q0 MARCO_50_1935898634-9 63 -0.305658 hybrid +144_3-1 Q0 MARCO_56_1470514308-2 64 -0.305696 hybrid +144_3-1 Q0 MARCO_50_1412083651-14 65 -0.305995 hybrid +144_3-1 Q0 MARCO_27_551586395-11 66 -0.308084 hybrid +144_3-1 Q0 MARCO_50_1970611268-19 67 -0.309398 hybrid +144_3-1 Q0 MARCO_29_1144408994-10 68 -0.311722 hybrid +144_3-1 Q0 MARCO_24_1717097559-2 69 -0.312093 hybrid +144_3-1 Q0 MARCO_01_1055971344-5 70 -0.312341 hybrid +144_3-1 Q0 MARCO_10_553867410-5 71 -0.315655 hybrid +144_3-1 Q0 MARCO_20_365393733-27 72 -0.320790 hybrid +144_3-1 Q0 MARCO_45_1322416775-5 73 -0.327831 hybrid +144_3-1 Q0 MARCO_36_954567488-2 74 -0.331073 hybrid +144_3-1 Q0 MARCO_50_1935898634-8 75 -0.332254 hybrid +144_3-1 Q0 MARCO_50_1181580700-12 76 -0.335286 hybrid +144_3-1 Q0 MARCO_42_1429885490-2 77 -0.336562 hybrid +144_3-1 Q0 MARCO_17_1844172150-3 78 -0.337393 hybrid +144_3-1 Q0 MARCO_07_636368507-2 79 -0.338370 hybrid +144_3-1 Q0 MARCO_50_2554862409-10 80 -0.339312 hybrid +144_3-1 Q0 MARCO_50_1931411621-1 81 -0.340421 hybrid +144_3-1 Q0 MARCO_42_1893358564-7 82 -0.340562 hybrid +144_3-1 Q0 MARCO_50_1931411621-6 83 -0.341389 hybrid +144_3-1 Q0 MARCO_42_1893377737-11 84 -0.342707 hybrid +144_3-1 Q0 MARCO_49_200213655-5 85 -0.345083 hybrid +144_3-1 Q0 MARCO_12_1454607150-5 86 -0.345096 hybrid +144_3-1 Q0 MARCO_54_1936568944-9 87 -0.346298 hybrid +144_3-1 Q0 MARCO_50_1970611268-3 88 -0.348742 hybrid +144_3-1 Q0 MARCO_39_31981138-18 89 -0.350768 hybrid +144_3-1 Q0 MARCO_24_1312795837-23 90 -0.351033 hybrid +144_3-1 Q0 MARCO_50_1529335468-7 91 -0.351988 hybrid +144_3-1 Q0 MARCO_50_1447966974-9 92 -0.353323 hybrid +144_3-1 Q0 MARCO_50_1937392218-26 93 -0.360676 hybrid +144_3-1 Q0 MARCO_17_3719989891-21 94 -0.360889 hybrid +144_3-1 Q0 MARCO_50_1970611268-25 95 -0.360961 hybrid +144_3-1 Q0 MARCO_49_515254021-11 96 -0.362280 hybrid +144_3-1 Q0 MARCO_54_172315678-10 97 -0.362369 hybrid +144_3-1 Q0 MARCO_12_79002084-3 98 -0.363209 hybrid +144_3-1 Q0 MARCO_35_832818110-1 99 -0.363702 hybrid +144_3-1 Q0 MARCO_36_1600282538-35 100 -0.366719 hybrid +145_1-1 Q0 KILT_34167677-2 1 0.249998 hybrid +145_1-1 Q0 MARCO_44_35321293-3 2 0.210779 hybrid +145_1-1 Q0 KILT_43174445-2 3 0.199974 hybrid +145_1-1 Q0 KILT_25005518-2 4 0.198826 hybrid +145_1-1 Q0 MARCO_15_133803271-3 5 0.167312 hybrid +145_1-1 Q0 KILT_47700-1 6 0.155890 hybrid +145_1-1 Q0 MARCO_44_35321293-2 7 0.155137 hybrid +145_1-1 Q0 MARCO_08_743063601-5 8 0.114092 hybrid +145_1-1 Q0 MARCO_58_1506018316-2 9 0.101054 hybrid +145_1-1 Q0 MARCO_00_1103730034-3 10 0.088633 hybrid +145_1-1 Q0 MARCO_44_2037703296-5 11 0.069864 hybrid +145_1-1 Q0 MARCO_15_133803271-1 12 0.066457 hybrid +145_1-1 Q0 MARCO_08_743306876-1 13 0.043819 hybrid +145_1-1 Q0 MARCO_15_131999270-1 14 0.038205 hybrid +145_1-1 Q0 KILT_2801560-17 15 0.035692 hybrid +145_1-1 Q0 KILT_38740898-3 16 0.032008 hybrid +145_1-1 Q0 MARCO_45_976543044-2 17 0.030620 hybrid +145_1-1 Q0 KILT_43174313-2 18 -0.006395 hybrid +145_1-1 Q0 KILT_47700-15 19 -0.012120 hybrid +145_1-1 Q0 KILT_43174405-2 20 -0.017888 hybrid +145_1-1 Q0 KILT_43174342-2 21 -0.032302 hybrid +145_1-1 Q0 MARCO_08_743306876-4 22 -0.032819 hybrid +145_1-1 Q0 KILT_1278066-2 23 -0.034578 hybrid +145_1-1 Q0 MARCO_51_1886540985-13 24 -0.035427 hybrid +145_1-1 Q0 MARCO_28_281425850-2 25 -0.039376 hybrid +145_1-1 Q0 MARCO_51_1886540985-17 26 -0.039693 hybrid +145_1-1 Q0 MARCO_01_1869948757-15 27 -0.041216 hybrid +145_1-1 Q0 KILT_33900980-2 28 -0.044976 hybrid +145_1-1 Q0 KILT_55489348-1 29 -0.044986 hybrid +145_1-1 Q0 MARCO_28_528320265-8 30 -0.055245 hybrid +145_1-1 Q0 MARCO_08_743306876-3 31 -0.058726 hybrid +145_1-1 Q0 KILT_1728672-31 32 -0.059226 hybrid +145_1-1 Q0 MARCO_24_722482029-13 33 -0.065583 hybrid +145_1-1 Q0 MARCO_15_133803271-6 34 -0.067938 hybrid +145_1-1 Q0 MARCO_50_2386869195-6 35 -0.069737 hybrid +145_1-1 Q0 MARCO_11_1449875005-2 36 -0.070109 hybrid +145_1-1 Q0 MARCO_28_528320265-2 37 -0.070900 hybrid +145_1-1 Q0 MARCO_51_1719403071-54 38 -0.074303 hybrid +145_1-1 Q0 MARCO_50_1510141711-6 39 -0.076968 hybrid +145_1-1 Q0 MARCO_15_133803271-2 40 -0.078454 hybrid +145_1-1 Q0 MARCO_15_132431578-3 41 -0.078513 hybrid +145_1-1 Q0 MARCO_41_291713694-1 42 -0.080204 hybrid +145_1-1 Q0 MARCO_15_133648640-12 43 -0.080624 hybrid +145_1-1 Q0 MARCO_15_133450036-2 44 -0.085764 hybrid +145_1-1 Q0 MARCO_51_1886540985-18 45 -0.092880 hybrid +145_1-1 Q0 MARCO_15_132547451-3 46 -0.095563 hybrid +145_1-1 Q0 KILT_47319898-2 47 -0.096854 hybrid +145_1-1 Q0 MARCO_10_831948175-6 48 -0.097150 hybrid +145_1-1 Q0 MARCO_15_131999270-7 49 -0.099554 hybrid +145_1-1 Q0 MARCO_24_1015353510-2 50 -0.099645 hybrid +145_1-1 Q0 MARCO_08_743306876-5 51 -0.103899 hybrid +145_1-1 Q0 MARCO_38_1493960108-4 52 -0.107252 hybrid +145_1-1 Q0 MARCO_50_2386869195-2 53 -0.107559 hybrid +145_1-1 Q0 MARCO_51_2005757213-25 54 -0.116144 hybrid +145_1-1 Q0 MARCO_15_132390467-4 55 -0.118104 hybrid +145_1-1 Q0 MARCO_55_130999384-3 56 -0.119994 hybrid +145_1-1 Q0 MARCO_27_1567992001-3 57 -0.123367 hybrid +145_1-1 Q0 MARCO_44_35321293-8 58 -0.125818 hybrid +145_1-1 Q0 MARCO_15_132547451-6 59 -0.126735 hybrid +145_1-1 Q0 MARCO_58_1506018316-7 60 -0.126920 hybrid +145_1-1 Q0 MARCO_57_1273336329-1 61 -0.130298 hybrid +145_1-1 Q0 MARCO_50_2386869195-9 62 -0.131729 hybrid +145_1-1 Q0 MARCO_26_89032825-2 63 -0.131938 hybrid +145_1-1 Q0 MARCO_28_528320265-7 64 -0.132146 hybrid +145_1-1 Q0 MARCO_03_1217470245-2 65 -0.134026 hybrid +145_1-1 Q0 MARCO_15_133505529-7 66 -0.134711 hybrid +145_1-1 Q0 MARCO_11_1245999089-4 67 -0.136979 hybrid +145_1-1 Q0 MARCO_20_1691602430-3 68 -0.137336 hybrid +145_1-1 Q0 MARCO_08_743063601-2 69 -0.143518 hybrid +145_1-1 Q0 KILT_55489348-2 70 -0.144310 hybrid +145_1-1 Q0 MARCO_16_1110546491-3 71 -0.145587 hybrid +145_1-1 Q0 KILT_2801560-15 72 -0.148906 hybrid +145_1-1 Q0 KILT_44533183-2 73 -0.149589 hybrid +145_1-1 Q0 MARCO_41_291709766-2 74 -0.150013 hybrid +145_1-1 Q0 MARCO_58_1506018316-3 75 -0.154715 hybrid +145_1-1 Q0 MARCO_03_447802610-3 76 -0.158939 hybrid +145_1-1 Q0 MARCO_24_1015353510-3 77 -0.159412 hybrid +145_1-1 Q0 MARCO_15_132390467-9 78 -0.161824 hybrid +145_1-1 Q0 MARCO_50_2386869195-10 79 -0.170787 hybrid +145_1-1 Q0 MARCO_16_1686411094-4 80 -0.173484 hybrid +145_1-1 Q0 MARCO_58_1506018316-5 81 -0.174372 hybrid +145_1-1 Q0 MARCO_15_132327400-3 82 -0.183034 hybrid +145_1-1 Q0 MARCO_15_133450036-12 83 -0.185159 hybrid +145_1-1 Q0 MARCO_50_2386869195-11 84 -0.185837 hybrid +145_1-1 Q0 MARCO_01_1679006693-3 85 -0.186975 hybrid +145_1-1 Q0 MARCO_20_1109717538-14 86 -0.193103 hybrid +145_1-1 Q0 MARCO_30_1004298367-6 87 -0.196195 hybrid +145_1-1 Q0 MARCO_50_2386869195-8 88 -0.199505 hybrid +145_1-1 Q0 MARCO_58_1508046553-7 89 -0.204353 hybrid +145_1-1 Q0 MARCO_49_577156447-15 90 -0.204431 hybrid +145_1-1 Q0 MARCO_18_3779704306-12 91 -0.205387 hybrid +145_1-1 Q0 MARCO_41_291709766-3 92 -0.207731 hybrid +145_1-1 Q0 MARCO_58_1506018316-4 93 -0.210153 hybrid +145_1-1 Q0 MARCO_15_132547451-2 94 -0.210806 hybrid +145_1-1 Q0 MARCO_48_1216050186-10 95 -0.211426 hybrid +145_1-1 Q0 MARCO_48_1216050186-2 96 -0.212507 hybrid +145_1-1 Q0 KILT_54792823-3 97 -0.213310 hybrid +145_1-1 Q0 MARCO_20_1109137848-9 98 -0.213902 hybrid +145_1-1 Q0 KILT_22732127-1 99 -0.215546 hybrid +145_1-1 Q0 KILT_47700-19 100 -0.215921 hybrid +145_1-3 Q0 MARCO_44_35321293-2 1 0.326261 hybrid +145_1-3 Q0 MARCO_44_35321293-8 2 0.291617 hybrid +145_1-3 Q0 MARCO_15_133803271-2 3 0.267318 hybrid +145_1-3 Q0 MARCO_44_35321293-1 4 0.237523 hybrid +145_1-3 Q0 MARCO_15_133803271-3 5 0.008816 hybrid +145_1-3 Q0 MARCO_27_1336752185-6 6 0.000054 hybrid +145_1-3 Q0 KILT_47700-15 7 -0.002090 hybrid +145_1-3 Q0 MARCO_15_131999270-1 8 -0.018064 hybrid +145_1-3 Q0 MARCO_15_132327400-8 9 -0.041070 hybrid +145_1-3 Q0 MARCO_15_132547451-5 10 -0.054998 hybrid +145_1-3 Q0 MARCO_01_1679006693-3 11 -0.056378 hybrid +145_1-3 Q0 MARCO_16_1110546491-3 12 -0.070007 hybrid +145_1-3 Q0 MARCO_58_1510071633-3 13 -0.074397 hybrid +145_1-3 Q0 KILT_1728672-31 14 -0.102892 hybrid +145_1-3 Q0 MARCO_28_528320265-2 15 -0.105352 hybrid +145_1-3 Q0 MARCO_00_1103658282-4 16 -0.106311 hybrid +145_1-3 Q0 KILT_2801560-17 17 -0.122175 hybrid +145_1-3 Q0 MARCO_28_528320265-4 18 -0.122873 hybrid +145_1-3 Q0 MARCO_44_2037703296-5 19 -0.123823 hybrid +145_1-3 Q0 MARCO_01_1679006693-13 20 -0.134132 hybrid +145_1-3 Q0 MARCO_59_603880583-2 21 -0.140614 hybrid +145_1-3 Q0 MARCO_50_2386869195-10 22 -0.141103 hybrid +145_1-3 Q0 MARCO_27_1567992001-3 23 -0.151243 hybrid +145_1-3 Q0 MARCO_15_132327400-3 24 -0.151744 hybrid +145_1-3 Q0 MARCO_28_528320265-7 25 -0.155641 hybrid +145_1-3 Q0 MARCO_28_528320265-8 26 -0.155953 hybrid +145_1-3 Q0 KILT_34167677-2 27 -0.168136 hybrid +145_1-3 Q0 MARCO_15_132390467-3 28 -0.171285 hybrid +145_1-3 Q0 MARCO_50_1409906055-35 29 -0.171509 hybrid +145_1-3 Q0 MARCO_50_2386869195-11 30 -0.177199 hybrid +145_1-3 Q0 MARCO_15_132547451-8 31 -0.178747 hybrid +145_1-3 Q0 MARCO_15_133803271-6 32 -0.184183 hybrid +145_1-3 Q0 MARCO_08_743306876-1 33 -0.193213 hybrid +145_1-3 Q0 MARCO_15_132382047-6 34 -0.195706 hybrid +145_1-3 Q0 MARCO_08_743306876-4 35 -0.213278 hybrid +145_1-3 Q0 MARCO_15_132547451-6 36 -0.226281 hybrid +145_1-3 Q0 MARCO_50_2149016428-17 37 -0.235291 hybrid +145_1-3 Q0 MARCO_26_74668745-1 38 -0.240377 hybrid +145_1-3 Q0 MARCO_15_132547451-2 39 -0.241520 hybrid +145_1-3 Q0 MARCO_15_132431578-3 40 -0.241977 hybrid +145_1-3 Q0 MARCO_58_1506018316-6 41 -0.242603 hybrid +145_1-3 Q0 MARCO_08_743063601-5 42 -0.243197 hybrid +145_1-3 Q0 MARCO_58_1506018316-3 43 -0.243553 hybrid +145_1-3 Q0 MARCO_54_2053931769-1 44 -0.250001 hybrid +145_1-3 Q0 MARCO_26_1835631313-6 45 -0.251789 hybrid +145_1-3 Q0 MARCO_15_132547451-4 46 -0.255258 hybrid +145_1-3 Q0 MARCO_00_1103658282-2 47 -0.261761 hybrid +145_1-3 Q0 MARCO_15_133877816-1 48 -0.261782 hybrid +145_1-3 Q0 MARCO_11_1245999089-4 49 -0.273569 hybrid +145_1-3 Q0 MARCO_20_1109717538-15 50 -0.275950 hybrid +145_1-3 Q0 MARCO_23_1830774907-7 51 -0.277921 hybrid +145_1-3 Q0 MARCO_28_528320265-3 52 -0.287823 hybrid +145_1-3 Q0 MARCO_28_528320265-6 53 -0.289157 hybrid +145_1-3 Q0 KILT_54792823-3 54 -0.290863 hybrid +145_1-3 Q0 MARCO_15_133803271-5 55 -0.298366 hybrid +145_1-3 Q0 MARCO_15_132390467-1 56 -0.299254 hybrid +145_1-3 Q0 KILT_13746446-17 57 -0.299629 hybrid +145_1-3 Q0 MARCO_15_133648640-12 58 -0.301806 hybrid +145_1-3 Q0 MARCO_08_743306876-5 59 -0.303245 hybrid +145_1-3 Q0 MARCO_58_1508046553-7 60 -0.306959 hybrid +145_1-3 Q0 MARCO_50_1409906055-36 61 -0.309831 hybrid +145_1-3 Q0 MARCO_30_1045383696-2 62 -0.312762 hybrid +145_1-3 Q0 MARCO_15_132547451-1 63 -0.312789 hybrid +145_1-3 Q0 MARCO_50_2148823955-21 64 -0.314022 hybrid +145_1-3 Q0 KILT_1278066-2 65 -0.314383 hybrid +145_1-3 Q0 KILT_54792823-2 66 -0.315804 hybrid +145_1-3 Q0 MARCO_00_1103730034-3 67 -0.316825 hybrid +145_1-3 Q0 MARCO_21_1038592258-3 68 -0.319383 hybrid +145_1-3 Q0 MARCO_41_334325214-13 69 -0.320915 hybrid +145_1-3 Q0 MARCO_55_127314872-1 70 -0.323649 hybrid +145_1-3 Q0 MARCO_15_132249263-3 71 -0.327458 hybrid +145_1-3 Q0 MARCO_28_281425850-2 72 -0.327754 hybrid +145_1-3 Q0 MARCO_15_133803271-4 73 -0.328301 hybrid +145_1-3 Q0 MARCO_50_1519091796-3 74 -0.331146 hybrid +145_1-3 Q0 MARCO_28_424288304-2 75 -0.331660 hybrid +145_1-3 Q0 MARCO_50_2148823955-3 76 -0.335682 hybrid +145_1-3 Q0 MARCO_15_133062110-6 77 -0.337030 hybrid +145_1-3 Q0 MARCO_15_131999270-2 78 -0.341919 hybrid +145_1-3 Q0 MARCO_08_743063601-2 79 -0.342568 hybrid +145_1-3 Q0 MARCO_51_1719403071-66 80 -0.346699 hybrid +145_1-3 Q0 MARCO_15_134385068-2 81 -0.346887 hybrid +145_1-3 Q0 MARCO_42_200525481-4 82 -0.350042 hybrid +145_1-3 Q0 MARCO_58_1506018316-2 83 -0.351304 hybrid +145_1-3 Q0 MARCO_15_133505529-7 84 -0.352269 hybrid +145_1-3 Q0 MARCO_27_1567992001-4 85 -0.352412 hybrid +145_1-3 Q0 MARCO_20_1691602430-1 86 -0.352690 hybrid +145_1-3 Q0 MARCO_41_291713694-1 87 -0.353512 hybrid +145_1-3 Q0 MARCO_15_131999270-4 88 -0.355527 hybrid +145_1-3 Q0 MARCO_44_1107116722-2 89 -0.357352 hybrid +145_1-3 Q0 MARCO_48_1188978655-1 90 -0.360130 hybrid +145_1-3 Q0 MARCO_27_41694783-6 91 -0.360588 hybrid +145_1-3 Q0 KILT_39096777-3 92 -0.364047 hybrid +145_1-3 Q0 MARCO_15_132527855-6 93 -0.364106 hybrid +145_1-3 Q0 MARCO_14_335992199-2 94 -0.368101 hybrid +145_1-3 Q0 MARCO_56_456754768-8 95 -0.372249 hybrid +145_1-3 Q0 MARCO_15_131999270-7 96 -0.372483 hybrid +145_1-3 Q0 MARCO_15_133803271-1 97 -0.372787 hybrid +145_1-3 Q0 MARCO_55_127051615-2 98 -0.372933 hybrid +145_1-3 Q0 MARCO_50_2149016428-18 99 -0.374068 hybrid +145_1-3 Q0 MARCO_35_255953235-1 100 -0.375439 hybrid +145_1-5 Q0 MARCO_28_445624259-20 1 0.250003 hybrid +145_1-5 Q0 MARCO_17_1779424748-17 2 0.175231 hybrid +145_1-5 Q0 KILT_1707053-13 3 0.147252 hybrid +145_1-5 Q0 KILT_25079-10 4 0.125426 hybrid +145_1-5 Q0 MARCO_00_944211795-4 5 0.124808 hybrid +145_1-5 Q0 MARCO_50_2550999003-8 6 0.080726 hybrid +145_1-5 Q0 MARCO_39_1279508284-4 7 0.069898 hybrid +145_1-5 Q0 MARCO_51_1738288252-31 8 0.033720 hybrid +145_1-5 Q0 MARCO_31_1608684018-15 9 0.030192 hybrid +145_1-5 Q0 MARCO_41_1817040778-1 10 0.013976 hybrid +145_1-5 Q0 MARCO_40_616376008-11 11 -0.000922 hybrid +145_1-5 Q0 MARCO_14_751038313-6 12 -0.003880 hybrid +145_1-5 Q0 MARCO_50_483707024-6 13 -0.007221 hybrid +145_1-5 Q0 MARCO_40_151627255-8 14 -0.008068 hybrid +145_1-5 Q0 MARCO_41_1369064505-34 15 -0.020466 hybrid +145_1-5 Q0 MARCO_43_777702374-4 16 -0.030688 hybrid +145_1-5 Q0 MARCO_09_1200348772-1 17 -0.031600 hybrid +145_1-5 Q0 MARCO_35_399865134-1 18 -0.031835 hybrid +145_1-5 Q0 MARCO_15_134025424-7 19 -0.048086 hybrid +145_1-5 Q0 MARCO_20_1692168491-3 20 -0.069824 hybrid +145_1-5 Q0 MARCO_02_824114915-24 21 -0.076394 hybrid +145_1-5 Q0 MARCO_00_944211795-19 22 -0.082529 hybrid +145_1-5 Q0 MARCO_37_174896978-1 23 -0.093162 hybrid +145_1-5 Q0 MARCO_51_454697942-25 24 -0.096062 hybrid +145_1-5 Q0 KILT_12390747-2 25 -0.097562 hybrid +145_1-5 Q0 MARCO_20_658709187-8 26 -0.111760 hybrid +145_1-5 Q0 MARCO_21_599968506-14 27 -0.118630 hybrid +145_1-5 Q0 MARCO_17_690625526-18 28 -0.124570 hybrid +145_1-5 Q0 MARCO_50_483550699-8 29 -0.125040 hybrid +145_1-5 Q0 MARCO_20_1690924657-3 30 -0.136604 hybrid +145_1-5 Q0 KILT_1728672-4 31 -0.143214 hybrid +145_1-5 Q0 MARCO_59_603861620-5 32 -0.145773 hybrid +145_1-5 Q0 MARCO_17_695737952-4 33 -0.146402 hybrid +145_1-5 Q0 MARCO_51_176207146-1 34 -0.150708 hybrid +145_1-5 Q0 MARCO_33_352197220-5 35 -0.154489 hybrid +145_1-5 Q0 MARCO_50_2148823955-13 36 -0.155530 hybrid +145_1-5 Q0 MARCO_37_174896978-9 37 -0.156854 hybrid +145_1-5 Q0 MARCO_28_446165919-18 38 -0.160506 hybrid +145_1-5 Q0 MARCO_41_341953509-6 39 -0.173981 hybrid +145_1-5 Q0 MARCO_15_132861171-1 40 -0.179158 hybrid +145_1-5 Q0 MARCO_26_411490717-10 41 -0.181421 hybrid +145_1-5 Q0 MARCO_41_1369064505-51 42 -0.181715 hybrid +145_1-5 Q0 MARCO_57_1273189188-1 43 -0.184315 hybrid +145_1-5 Q0 MARCO_01_1697679628-13 44 -0.194484 hybrid +145_1-5 Q0 MARCO_04_185518198-4 45 -0.199736 hybrid +145_1-5 Q0 MARCO_00_944211795-18 46 -0.202348 hybrid +145_1-5 Q0 MARCO_06_699499609-7 47 -0.207794 hybrid +145_1-5 Q0 MARCO_51_1738182487-47 48 -0.214328 hybrid +145_1-5 Q0 MARCO_29_867005795-6 49 -0.216663 hybrid +145_1-5 Q0 MARCO_51_1889273517-29 50 -0.223309 hybrid +145_1-5 Q0 MARCO_41_1369064505-33 51 -0.227015 hybrid +145_1-5 Q0 MARCO_35_135386651-5 52 -0.228726 hybrid +145_1-5 Q0 MARCO_40_1275513552-1 53 -0.228938 hybrid +145_1-5 Q0 KILT_16534351-9 54 -0.232285 hybrid +145_1-5 Q0 MARCO_17_690625526-2 55 -0.241595 hybrid +145_1-5 Q0 MARCO_06_299057920-5 56 -0.249997 hybrid +145_1-5 Q0 MARCO_05_1347096786-6 57 -0.252635 hybrid +145_1-5 Q0 MARCO_44_35262660-1 58 -0.252641 hybrid +145_1-5 Q0 KILT_1728672-14 59 -0.253276 hybrid +145_1-5 Q0 MARCO_07_1581585195-14 60 -0.257764 hybrid +145_1-5 Q0 MARCO_54_737799151-5 61 -0.260322 hybrid +145_1-5 Q0 MARCO_10_845606362-3 62 -0.260763 hybrid +145_1-5 Q0 MARCO_00_944211795-3 63 -0.262539 hybrid +145_1-5 Q0 MARCO_17_696210527-2 64 -0.263845 hybrid +145_1-5 Q0 MARCO_41_1369064505-44 65 -0.265445 hybrid +145_1-5 Q0 MARCO_10_545553088-1 66 -0.266339 hybrid +145_1-5 Q0 MARCO_09_348391407-4 67 -0.267556 hybrid +145_1-5 Q0 KILT_25079-5 68 -0.269456 hybrid +145_1-5 Q0 MARCO_26_821065335-1 69 -0.269915 hybrid +145_1-5 Q0 MARCO_51_1634281644-5 70 -0.271427 hybrid +145_1-5 Q0 MARCO_51_1632226513-11 71 -0.276273 hybrid +145_1-5 Q0 MARCO_17_696527547-12 72 -0.277961 hybrid +145_1-5 Q0 MARCO_50_1519629905-21 73 -0.279196 hybrid +145_1-5 Q0 MARCO_35_135386651-3 74 -0.283742 hybrid +145_1-5 Q0 MARCO_48_592686805-2 75 -0.286060 hybrid +145_1-5 Q0 MARCO_50_483707024-7 76 -0.288707 hybrid +145_1-5 Q0 MARCO_06_1401165973-9 77 -0.292953 hybrid +145_1-5 Q0 MARCO_26_120251417-33 78 -0.293681 hybrid +145_1-5 Q0 MARCO_17_695968391-1 79 -0.294382 hybrid +145_1-5 Q0 MARCO_20_1691516621-5 80 -0.294965 hybrid +145_1-5 Q0 MARCO_41_1227009949-7 81 -0.296458 hybrid +145_1-5 Q0 MARCO_51_1880549942-9 82 -0.297017 hybrid +145_1-5 Q0 MARCO_04_784229713-68 83 -0.297417 hybrid +145_1-5 Q0 MARCO_20_1691926452-1 84 -0.297976 hybrid +145_1-5 Q0 MARCO_00_944211795-10 85 -0.298070 hybrid +145_1-5 Q0 MARCO_29_1416083142-5 86 -0.298288 hybrid +145_1-5 Q0 MARCO_50_2550999003-1 87 -0.301893 hybrid +145_1-5 Q0 MARCO_39_610156582-13 88 -0.308592 hybrid +145_1-5 Q0 MARCO_51_1880441021-15 89 -0.315338 hybrid +145_1-5 Q0 MARCO_22_1490472175-1 90 -0.317926 hybrid +145_1-5 Q0 MARCO_28_422134932-3 91 -0.318755 hybrid +145_1-5 Q0 MARCO_33_1314004594-5 92 -0.320532 hybrid +145_1-5 Q0 MARCO_27_715984010-6 93 -0.320679 hybrid +145_1-5 Q0 MARCO_15_615271022-2 94 -0.322684 hybrid +145_1-5 Q0 MARCO_53_726624360-3 95 -0.324584 hybrid +145_1-5 Q0 MARCO_26_411490717-59 96 -0.325307 hybrid +145_1-5 Q0 KILT_49417-23 97 -0.328554 hybrid +145_1-5 Q0 MARCO_20_1691516621-6 98 -0.329430 hybrid +145_1-5 Q0 MARCO_54_1853512694-3 99 -0.330842 hybrid +145_1-5 Q0 MARCO_00_944211795-24 100 -0.331689 hybrid +145_1-7 Q0 MARCO_51_1890227767-22 1 0.250000 hybrid +145_1-7 Q0 MARCO_15_133176883-4 2 0.047981 hybrid +145_1-7 Q0 MARCO_51_2007527708-13 3 0.025767 hybrid +145_1-7 Q0 MARCO_48_1216050186-10 4 -0.059163 hybrid +145_1-7 Q0 MARCO_20_9146021-13 5 -0.066509 hybrid +145_1-7 Q0 MARCO_05_1518564160-4 6 -0.088936 hybrid +145_1-7 Q0 MARCO_22_1646884039-11 7 -0.091208 hybrid +145_1-7 Q0 MARCO_22_1646884039-2 8 -0.092147 hybrid +145_1-7 Q0 MARCO_50_2386869195-2 9 -0.116012 hybrid +145_1-7 Q0 MARCO_40_736948483-21 10 -0.133123 hybrid +145_1-7 Q0 MARCO_51_1886540985-17 11 -0.143826 hybrid +145_1-7 Q0 MARCO_08_743306876-5 12 -0.149672 hybrid +145_1-7 Q0 MARCO_50_1519091796-3 13 -0.165953 hybrid +145_1-7 Q0 MARCO_22_1646884039-12 14 -0.172534 hybrid +145_1-7 Q0 MARCO_15_133069767-3 15 -0.177497 hybrid +145_1-7 Q0 MARCO_40_737232283-14 16 -0.184710 hybrid +145_1-7 Q0 MARCO_55_130601227-5 17 -0.189373 hybrid +145_1-7 Q0 MARCO_55_130601227-3 18 -0.193532 hybrid +145_1-7 Q0 MARCO_26_74668745-5 19 -0.195379 hybrid +145_1-7 Q0 MARCO_20_1112325414-3 20 -0.202902 hybrid +145_1-7 Q0 MARCO_20_9146021-7 21 -0.208857 hybrid +145_1-7 Q0 MARCO_45_976543044-6 22 -0.209796 hybrid +145_1-7 Q0 MARCO_15_132390467-4 23 -0.215325 hybrid +145_1-7 Q0 MARCO_38_1493960108-5 24 -0.219368 hybrid +145_1-7 Q0 MARCO_58_1510378795-8 25 -0.232216 hybrid +145_1-7 Q0 MARCO_39_683618524-34 26 -0.237817 hybrid +145_1-7 Q0 MARCO_55_124386945-5 27 -0.240059 hybrid +145_1-7 Q0 MARCO_44_35321293-2 28 -0.244398 hybrid +145_1-7 Q0 MARCO_00_1103677594-3 29 -0.247930 hybrid +145_1-7 Q0 MARCO_24_31979062-5 30 -0.250000 hybrid +145_1-7 Q0 MARCO_16_2831646695-8 31 -0.257201 hybrid +145_1-7 Q0 MARCO_51_1890227767-21 32 -0.257564 hybrid +145_1-7 Q0 MARCO_22_1646884039-1 33 -0.260999 hybrid +145_1-7 Q0 MARCO_59_603880583-3 34 -0.263595 hybrid +145_1-7 Q0 MARCO_55_130601227-2 35 -0.266050 hybrid +145_1-7 Q0 MARCO_05_1518564160-6 36 -0.267230 hybrid +145_1-7 Q0 MARCO_55_130999384-3 37 -0.273175 hybrid +145_1-7 Q0 MARCO_40_733826157-5 38 -0.274943 hybrid +145_1-7 Q0 MARCO_44_35321293-3 39 -0.275329 hybrid +145_1-7 Q0 KILT_59013230-17 40 -0.281674 hybrid +145_1-7 Q0 MARCO_20_5374941-309 41 -0.287844 hybrid +145_1-7 Q0 MARCO_24_1015353510-3 42 -0.289517 hybrid +145_1-7 Q0 MARCO_02_873546189-5 43 -0.291978 hybrid +145_1-7 Q0 MARCO_20_9146021-8 44 -0.292149 hybrid +145_1-7 Q0 MARCO_51_2012726134-9 45 -0.292721 hybrid +145_1-7 Q0 MARCO_16_2831646695-2 46 -0.293027 hybrid +145_1-7 Q0 MARCO_38_1493960108-7 47 -0.295632 hybrid +145_1-7 Q0 MARCO_12_1449757515-19 48 -0.295904 hybrid +145_1-7 Q0 MARCO_51_1890227767-27 49 -0.310954 hybrid +145_1-7 Q0 MARCO_51_2007226613-16 50 -0.316685 hybrid +145_1-7 Q0 MARCO_55_118775135-2 51 -0.318644 hybrid +145_1-7 Q0 MARCO_03_1217470245-2 52 -0.318769 hybrid +145_1-7 Q0 KILT_54792823-2 53 -0.319875 hybrid +145_1-7 Q0 MARCO_51_1886540985-1 54 -0.320331 hybrid +145_1-7 Q0 MARCO_50_1402128600-3 55 -0.322398 hybrid +145_1-7 Q0 MARCO_00_1103730034-3 56 -0.322661 hybrid +145_1-7 Q0 MARCO_15_133069767-4 57 -0.324962 hybrid +145_1-7 Q0 MARCO_51_2007527708-18 58 -0.329901 hybrid +145_1-7 Q0 MARCO_05_524370505-2 59 -0.329929 hybrid +145_1-7 Q0 MARCO_20_9146021-12 60 -0.332187 hybrid +145_1-7 Q0 MARCO_01_1679006693-14 61 -0.334163 hybrid +145_1-7 Q0 MARCO_20_9146021-10 62 -0.335190 hybrid +145_1-7 Q0 MARCO_40_733826157-7 63 -0.341264 hybrid +145_1-7 Q0 MARCO_51_1886540985-12 64 -0.342046 hybrid +145_1-7 Q0 MARCO_55_130969204-1 65 -0.356004 hybrid +145_1-7 Q0 MARCO_05_1704993748-2 66 -0.363935 hybrid +145_1-7 Q0 MARCO_51_1634830590-6 67 -0.364874 hybrid +145_1-7 Q0 MARCO_15_133069767-5 68 -0.366915 hybrid +145_1-7 Q0 MARCO_55_120519020-3 69 -0.370224 hybrid +145_1-7 Q0 MARCO_50_1519091796-5 70 -0.371105 hybrid +145_1-7 Q0 MARCO_20_9786524-11 71 -0.371476 hybrid +145_1-7 Q0 MARCO_05_1518564160-2 72 -0.373193 hybrid +145_1-7 Q0 MARCO_15_133095469-4 73 -0.380087 hybrid +145_1-7 Q0 MARCO_51_1900336866-13 74 -0.382073 hybrid +145_1-7 Q0 MARCO_49_1098748008-5 75 -0.384386 hybrid +145_1-7 Q0 MARCO_50_1519091796-2 76 -0.385308 hybrid +145_1-7 Q0 MARCO_04_1488425205-8 77 -0.386389 hybrid +145_1-7 Q0 MARCO_58_1509990523-5 78 -0.388634 hybrid +145_1-7 Q0 MARCO_15_133251511-4 79 -0.389063 hybrid +145_1-7 Q0 MARCO_16_2831646695-13 80 -0.390423 hybrid +145_1-7 Q0 MARCO_55_130973334-1 81 -0.390974 hybrid +145_1-7 Q0 MARCO_00_1217640893-1 82 -0.396880 hybrid +145_1-7 Q0 MARCO_20_1692726236-12 83 -0.397963 hybrid +145_1-7 Q0 MARCO_15_134505259-7 84 -0.399398 hybrid +145_1-7 Q0 MARCO_16_2831646695-18 85 -0.400218 hybrid +145_1-7 Q0 MARCO_16_2376597796-4 86 -0.401915 hybrid +145_1-7 Q0 MARCO_20_9146021-9 87 -0.401959 hybrid +145_1-7 Q0 MARCO_52_657758176-3 88 -0.402220 hybrid +145_1-7 Q0 MARCO_22_1646884039-5 89 -0.402395 hybrid +145_1-7 Q0 MARCO_39_1566027875-11 90 -0.402806 hybrid +145_1-7 Q0 MARCO_45_976543044-2 91 -0.407721 hybrid +145_1-7 Q0 MARCO_51_1997847687-19 92 -0.411207 hybrid +145_1-7 Q0 MARCO_01_881694147-1 93 -0.413175 hybrid +145_1-7 Q0 MARCO_50_2386869195-1 94 -0.413826 hybrid +145_1-7 Q0 MARCO_40_731223293-10 95 -0.416353 hybrid +145_1-7 Q0 MARCO_53_1044779084-3 96 -0.416468 hybrid +145_1-7 Q0 MARCO_26_74668745-11 97 -0.417427 hybrid +145_1-7 Q0 MARCO_50_1609250695-11 98 -0.418818 hybrid +145_1-7 Q0 MARCO_20_10299743-10 99 -0.421451 hybrid +145_1-7 Q0 MARCO_39_1570895295-5 100 -0.428018 hybrid +145_2-1 Q0 MARCO_15_133803271-2 1 0.750000 hybrid +145_2-1 Q0 MARCO_00_1103730034-3 2 0.469058 hybrid +145_2-1 Q0 MARCO_58_1506018316-3 3 0.272295 hybrid +145_2-1 Q0 MARCO_15_133803271-3 4 0.133505 hybrid +145_2-1 Q0 MARCO_15_132390467-4 5 0.107391 hybrid +145_2-1 Q0 MARCO_20_1109717538-15 6 0.101847 hybrid +145_2-1 Q0 MARCO_44_35321293-8 7 0.093156 hybrid +145_2-1 Q0 MARCO_50_1409906055-35 8 0.086769 hybrid +145_2-1 Q0 MARCO_08_743306876-5 9 0.073783 hybrid +145_2-1 Q0 MARCO_44_35321293-2 10 0.062826 hybrid +145_2-1 Q0 MARCO_15_132382047-6 11 0.057438 hybrid +145_2-1 Q0 MARCO_58_882430285-2 12 0.026140 hybrid +145_2-1 Q0 MARCO_15_132547451-5 13 0.014484 hybrid +145_2-1 Q0 MARCO_50_2149987757-29 14 -0.018167 hybrid +145_2-1 Q0 MARCO_00_1103658282-4 15 -0.033047 hybrid +145_2-1 Q0 MARCO_15_132327400-3 16 -0.037282 hybrid +145_2-1 Q0 MARCO_27_1336752185-6 17 -0.052733 hybrid +145_2-1 Q0 MARCO_50_1409906055-39 18 -0.053356 hybrid +145_2-1 Q0 KILT_47700-15 19 -0.062727 hybrid +145_2-1 Q0 MARCO_44_35321293-3 20 -0.068026 hybrid +145_2-1 Q0 MARCO_00_1103724260-3 21 -0.087061 hybrid +145_2-1 Q0 MARCO_56_456754768-8 22 -0.090969 hybrid +145_2-1 Q0 KILT_2801560-17 23 -0.092016 hybrid +145_2-1 Q0 MARCO_51_1634830590-6 24 -0.111235 hybrid +145_2-1 Q0 MARCO_20_1692530770-3 25 -0.111875 hybrid +145_2-1 Q0 KILT_54792823-2 26 -0.115554 hybrid +145_2-1 Q0 MARCO_08_743063601-5 27 -0.131733 hybrid +145_2-1 Q0 MARCO_11_1449875005-2 28 -0.146032 hybrid +145_2-1 Q0 MARCO_59_603880583-3 29 -0.148516 hybrid +145_2-1 Q0 MARCO_28_908612979-1 30 -0.153149 hybrid +145_2-1 Q0 MARCO_15_133842840-7 31 -0.153812 hybrid +145_2-1 Q0 MARCO_15_132327400-8 32 -0.164560 hybrid +145_2-1 Q0 MARCO_51_1890227767-22 33 -0.189284 hybrid +145_2-1 Q0 MARCO_04_218037606-2 34 -0.193230 hybrid +145_2-1 Q0 MARCO_50_1409906055-22 35 -0.197496 hybrid +145_2-1 Q0 MARCO_25_518489685-28 36 -0.199704 hybrid +145_2-1 Q0 MARCO_52_1142099112-3 37 -0.199863 hybrid +145_2-1 Q0 MARCO_58_1509990523-5 38 -0.202799 hybrid +145_2-1 Q0 KILT_2801560-16 39 -0.203168 hybrid +145_2-1 Q0 MARCO_14_336789855-6 40 -0.208247 hybrid +145_2-1 Q0 MARCO_01_1679006693-3 41 -0.217671 hybrid +145_2-1 Q0 MARCO_58_1508046553-4 42 -0.221554 hybrid +145_2-1 Q0 MARCO_39_683618524-12 43 -0.222898 hybrid +145_2-1 Q0 MARCO_00_1103658282-2 44 -0.223578 hybrid +145_2-1 Q0 MARCO_50_1409906055-36 45 -0.225915 hybrid +145_2-1 Q0 MARCO_50_1519091796-3 46 -0.231726 hybrid +145_2-1 Q0 MARCO_56_506929459-6 47 -0.231834 hybrid +145_2-1 Q0 MARCO_48_1216050186-10 48 -0.232955 hybrid +145_2-1 Q0 MARCO_15_133346420-5 49 -0.235269 hybrid +145_2-1 Q0 MARCO_28_528320265-7 50 -0.238261 hybrid +145_2-1 Q0 MARCO_58_1506018316-6 51 -0.238896 hybrid +145_2-1 Q0 MARCO_20_1109717538-14 52 -0.240035 hybrid +145_2-1 Q0 MARCO_27_41694783-6 53 -0.244178 hybrid +145_2-1 Q0 MARCO_58_1508046553-7 54 -0.244578 hybrid +145_2-1 Q0 MARCO_23_1830774907-7 55 -0.244855 hybrid +145_2-1 Q0 MARCO_13_1212328197-3 56 -0.245797 hybrid +145_2-1 Q0 MARCO_20_1109741303-6 57 -0.246449 hybrid +145_2-1 Q0 MARCO_18_2709431324-25 58 -0.249863 hybrid +145_2-1 Q0 MARCO_45_976543044-4 59 -0.256140 hybrid +145_2-1 Q0 MARCO_26_1786937714-7 60 -0.256277 hybrid +145_2-1 Q0 MARCO_20_1692726236-12 61 -0.256538 hybrid +145_2-1 Q0 MARCO_44_35321293-1 62 -0.256972 hybrid +145_2-1 Q0 MARCO_50_1409906055-23 63 -0.257118 hybrid +145_2-1 Q0 MARCO_19_606872439-13 64 -0.257945 hybrid +145_2-1 Q0 MARCO_50_1409906055-21 65 -0.261015 hybrid +145_2-1 Q0 MARCO_15_133842840-9 66 -0.262201 hybrid +145_2-1 Q0 MARCO_27_1151549200-2 67 -0.263167 hybrid +145_2-1 Q0 MARCO_28_528320265-4 68 -0.266163 hybrid +145_2-1 Q0 MARCO_56_2580915-3 69 -0.269128 hybrid +145_2-1 Q0 MARCO_27_1567992001-3 70 -0.273808 hybrid +145_2-1 Q0 MARCO_15_132527855-6 71 -0.274045 hybrid +145_2-1 Q0 KILT_13746446-17 72 -0.278357 hybrid +145_2-1 Q0 MARCO_50_1409906055-33 73 -0.279539 hybrid +145_2-1 Q0 MARCO_15_133095469-4 74 -0.280006 hybrid +145_2-1 Q0 MARCO_27_1151549200-3 75 -0.281414 hybrid +145_2-1 Q0 MARCO_00_1103658282-1 76 -0.287166 hybrid +145_2-1 Q0 MARCO_50_2144197963-3 77 -0.287297 hybrid +145_2-1 Q0 MARCO_19_2430063731-3 78 -0.288192 hybrid +145_2-1 Q0 MARCO_38_1493960108-7 79 -0.289484 hybrid +145_2-1 Q0 KILT_59013230-17 80 -0.289816 hybrid +145_2-1 Q0 MARCO_15_132390467-3 81 -0.290380 hybrid +145_2-1 Q0 MARCO_42_200525481-4 82 -0.294945 hybrid +145_2-1 Q0 MARCO_39_683618524-34 83 -0.297343 hybrid +145_2-1 Q0 MARCO_13_736789482-1 84 -0.298818 hybrid +145_2-1 Q0 MARCO_15_133831051-3 85 -0.300482 hybrid +145_2-1 Q0 MARCO_39_675272543-8 86 -0.302643 hybrid +145_2-1 Q0 MARCO_27_1563017977-3 87 -0.302918 hybrid +145_2-1 Q0 KILT_59013230-22 88 -0.302953 hybrid +145_2-1 Q0 MARCO_20_1109717538-3 89 -0.305497 hybrid +145_2-1 Q0 MARCO_50_1409906055-38 90 -0.306358 hybrid +145_2-1 Q0 MARCO_26_1835631313-6 91 -0.306796 hybrid +145_2-1 Q0 MARCO_51_1632190518-9 92 -0.306816 hybrid +145_2-1 Q0 MARCO_44_2037703296-5 93 -0.308358 hybrid +145_2-1 Q0 MARCO_58_1506018316-5 94 -0.309421 hybrid +145_2-1 Q0 KILT_44533183-2 95 -0.309603 hybrid +145_2-1 Q0 MARCO_20_1691602430-3 96 -0.309797 hybrid +145_2-1 Q0 MARCO_39_674117843-2 97 -0.312116 hybrid +145_2-1 Q0 MARCO_51_1886540985-13 98 -0.314310 hybrid +145_2-1 Q0 MARCO_15_132547451-6 99 -0.314451 hybrid +145_2-1 Q0 MARCO_50_2386869195-10 100 -0.318908 hybrid +145_2-3 Q0 MARCO_27_1567992001-3 1 0.465395 hybrid +145_2-3 Q0 MARCO_28_528320265-2 2 0.375316 hybrid +145_2-3 Q0 KILT_47700-15 3 0.337200 hybrid +145_2-3 Q0 MARCO_59_603880583-3 4 0.336609 hybrid +145_2-3 Q0 MARCO_08_743306876-4 5 0.304877 hybrid +145_2-3 Q0 MARCO_01_1869948757-15 6 0.285478 hybrid +145_2-3 Q0 MARCO_15_133648640-13 7 0.285089 hybrid +145_2-3 Q0 MARCO_44_35321293-3 8 0.276975 hybrid +145_2-3 Q0 MARCO_58_1506018316-3 9 0.274032 hybrid +145_2-3 Q0 MARCO_59_603880583-2 10 0.271355 hybrid +145_2-3 Q0 MARCO_15_132390467-4 11 0.255146 hybrid +145_2-3 Q0 MARCO_19_149451038-8 12 0.252715 hybrid +145_2-3 Q0 KILT_3821214-13 13 0.187141 hybrid +145_2-3 Q0 MARCO_44_35321293-5 14 0.166554 hybrid +145_2-3 Q0 MARCO_01_1679006693-2 15 0.160964 hybrid +145_2-3 Q0 MARCO_08_743063601-4 16 0.158285 hybrid +145_2-3 Q0 MARCO_58_1506018316-2 17 0.144666 hybrid +145_2-3 Q0 MARCO_26_723799539-23 18 0.135381 hybrid +145_2-3 Q0 MARCO_44_2037703296-5 19 0.129553 hybrid +145_2-3 Q0 MARCO_41_334325214-13 20 0.120256 hybrid +145_2-3 Q0 MARCO_08_743306876-3 21 0.117886 hybrid +145_2-3 Q0 MARCO_27_1567992001-4 22 0.110035 hybrid +145_2-3 Q0 MARCO_55_127314872-1 23 0.106130 hybrid +145_2-3 Q0 MARCO_51_1886540985-13 24 0.097163 hybrid +145_2-3 Q0 MARCO_23_1830774907-7 25 0.077588 hybrid +145_2-3 Q0 KILT_13746446-17 26 0.073099 hybrid +145_2-3 Q0 MARCO_01_1679006693-3 27 0.067118 hybrid +145_2-3 Q0 MARCO_01_1679006693-8 28 0.046452 hybrid +145_2-3 Q0 MARCO_15_133877816-1 29 0.042689 hybrid +145_2-3 Q0 MARCO_15_133505529-7 30 0.036229 hybrid +145_2-3 Q0 MARCO_15_131999270-1 31 0.030710 hybrid +145_2-3 Q0 MARCO_08_743120872-4 32 0.029210 hybrid +145_2-3 Q0 MARCO_02_162391697-4 33 0.029035 hybrid +145_2-3 Q0 MARCO_20_1109717538-14 34 0.015215 hybrid +145_2-3 Q0 MARCO_15_133803271-2 35 0.004719 hybrid +145_2-3 Q0 MARCO_38_1493960108-7 36 0.002263 hybrid +145_2-3 Q0 MARCO_03_1218066139-3 37 -0.007487 hybrid +145_2-3 Q0 MARCO_28_528320265-3 38 -0.012710 hybrid +145_2-3 Q0 MARCO_15_132547451-7 39 -0.019663 hybrid +145_2-3 Q0 MARCO_30_1004298367-6 40 -0.020019 hybrid +145_2-3 Q0 KILT_2801560-17 41 -0.024382 hybrid +145_2-3 Q0 MARCO_28_528320265-10 42 -0.045741 hybrid +145_2-3 Q0 MARCO_01_1679006693-6 43 -0.049934 hybrid +145_2-3 Q0 MARCO_15_133831051-6 44 -0.054176 hybrid +145_2-3 Q0 MARCO_15_131999270-2 45 -0.054858 hybrid +145_2-3 Q0 MARCO_44_35321293-2 46 -0.055495 hybrid +145_2-3 Q0 MARCO_15_133078716-5 47 -0.061389 hybrid +145_2-3 Q0 MARCO_08_743306876-5 48 -0.061669 hybrid +145_2-3 Q0 MARCO_16_1110546491-3 49 -0.064623 hybrid +145_2-3 Q0 MARCO_59_603880583-4 50 -0.067532 hybrid +145_2-3 Q0 MARCO_48_1188978655-4 51 -0.068294 hybrid +145_2-3 Q0 MARCO_01_1679006693-5 52 -0.070557 hybrid +145_2-3 Q0 MARCO_15_132988360-9 53 -0.071682 hybrid +145_2-3 Q0 MARCO_31_899429219-9 54 -0.074847 hybrid +145_2-3 Q0 MARCO_08_743063601-6 55 -0.078568 hybrid +145_2-3 Q0 MARCO_15_134473869-6 56 -0.082893 hybrid +145_2-3 Q0 MARCO_15_132403390-6 57 -0.088178 hybrid +145_2-3 Q0 MARCO_01_1679006693-7 58 -0.093679 hybrid +145_2-3 Q0 MARCO_16_2629632909-5 59 -0.094432 hybrid +145_2-3 Q0 MARCO_16_2629632909-4 60 -0.099137 hybrid +145_2-3 Q0 MARCO_01_1679006693-11 61 -0.100381 hybrid +145_2-3 Q0 MARCO_00_1103658282-2 62 -0.109746 hybrid +145_2-3 Q0 MARCO_20_5955535-8 63 -0.137594 hybrid +145_2-3 Q0 MARCO_15_132547451-4 64 -0.149274 hybrid +145_2-3 Q0 MARCO_28_528320265-8 65 -0.159939 hybrid +145_2-3 Q0 MARCO_15_766740202-7 66 -0.165275 hybrid +145_2-3 Q0 MARCO_15_132249263-2 67 -0.167094 hybrid +145_2-3 Q0 MARCO_40_736910276-10 68 -0.167282 hybrid +145_2-3 Q0 MARCO_59_603880583-6 69 -0.168194 hybrid +145_2-3 Q0 MARCO_15_132249263-1 70 -0.169403 hybrid +145_2-3 Q0 MARCO_45_976543044-4 71 -0.170127 hybrid +145_2-3 Q0 MARCO_20_11269334-7 72 -0.173228 hybrid +145_2-3 Q0 MARCO_40_734107009-5 73 -0.173401 hybrid +145_2-3 Q0 KILT_1278066-2 74 -0.173620 hybrid +145_2-3 Q0 MARCO_50_2386869195-11 75 -0.178397 hybrid +145_2-3 Q0 MARCO_50_2386869195-1 76 -0.180262 hybrid +145_2-3 Q0 MARCO_20_4372877-4 77 -0.190296 hybrid +145_2-3 Q0 MARCO_15_131999270-7 78 -0.191655 hybrid +145_2-3 Q0 MARCO_15_132351325-2 79 -0.192324 hybrid +145_2-3 Q0 MARCO_03_1218066139-2 80 -0.194505 hybrid +145_2-3 Q0 MARCO_15_133450036-2 81 -0.195916 hybrid +145_2-3 Q0 MARCO_58_1506018316-6 82 -0.197481 hybrid +145_2-3 Q0 MARCO_44_35321293-8 83 -0.197907 hybrid +145_2-3 Q0 MARCO_39_1570912715-6 84 -0.208428 hybrid +145_2-3 Q0 MARCO_30_1004298367-7 85 -0.216326 hybrid +145_2-3 Q0 MARCO_20_5229474-8 86 -0.220786 hybrid +145_2-3 Q0 MARCO_00_1103730034-3 87 -0.221239 hybrid +145_2-3 Q0 MARCO_15_133803271-6 88 -0.224772 hybrid +145_2-3 Q0 MARCO_51_1886540985-8 89 -0.225225 hybrid +145_2-3 Q0 MARCO_01_1679006693-14 90 -0.227207 hybrid +145_2-3 Q0 MARCO_15_132327400-8 91 -0.227247 hybrid +145_2-3 Q0 MARCO_21_1038592258-3 92 -0.228397 hybrid +145_2-3 Q0 MARCO_15_133803271-1 93 -0.230129 hybrid +145_2-3 Q0 MARCO_20_1109717538-16 94 -0.232614 hybrid +145_2-3 Q0 MARCO_45_976543044-5 95 -0.239362 hybrid +145_2-3 Q0 MARCO_20_1691602430-3 96 -0.240475 hybrid +145_2-3 Q0 KILT_54792823-2 97 -0.241041 hybrid +145_2-3 Q0 MARCO_50_2386869195-10 98 -0.244549 hybrid +145_2-3 Q0 MARCO_15_133013878-4 99 -0.245533 hybrid +145_2-3 Q0 MARCO_58_1574227328-1 100 -0.250002 hybrid +145_2-5 Q0 MARCO_28_528320265-2 1 0.531433 hybrid +145_2-5 Q0 KILT_13746446-17 2 0.498485 hybrid +145_2-5 Q0 MARCO_23_1830774907-7 3 0.310721 hybrid +145_2-5 Q0 MARCO_58_1506018316-2 4 0.305482 hybrid +145_2-5 Q0 MARCO_28_528320265-3 5 0.284567 hybrid +145_2-5 Q0 MARCO_58_1506018316-3 6 0.244982 hybrid +145_2-5 Q0 MARCO_08_743306876-4 7 0.198752 hybrid +145_2-5 Q0 MARCO_59_603880583-3 8 0.131144 hybrid +145_2-5 Q0 MARCO_44_35321293-4 9 0.100504 hybrid +145_2-5 Q0 MARCO_15_131999270-7 10 0.072888 hybrid +145_2-5 Q0 MARCO_15_131999270-1 11 0.066250 hybrid +145_2-5 Q0 MARCO_31_899429219-9 12 0.049816 hybrid +145_2-5 Q0 MARCO_16_2629632909-4 13 0.031689 hybrid +145_2-5 Q0 MARCO_44_35321293-5 14 0.028577 hybrid +145_2-5 Q0 MARCO_50_2386869195-11 15 0.026709 hybrid +145_2-5 Q0 MARCO_15_133450036-2 16 0.024157 hybrid +145_2-5 Q0 MARCO_27_1567992001-3 17 0.015445 hybrid +145_2-5 Q0 MARCO_48_1188978655-4 18 0.014122 hybrid +145_2-5 Q0 MARCO_59_603880583-2 19 -0.016211 hybrid +145_2-5 Q0 KILT_2801560-17 20 -0.027754 hybrid +145_2-5 Q0 KILT_47700-15 21 -0.034908 hybrid +145_2-5 Q0 MARCO_15_133648640-13 22 -0.072178 hybrid +145_2-5 Q0 MARCO_08_743063601-6 23 -0.076258 hybrid +145_2-5 Q0 MARCO_20_1109717538-14 24 -0.088808 hybrid +145_2-5 Q0 MARCO_45_976543044-4 25 -0.091727 hybrid +145_2-5 Q0 MARCO_44_35321293-3 26 -0.112790 hybrid +145_2-5 Q0 MARCO_08_743120872-4 27 -0.125524 hybrid +145_2-5 Q0 MARCO_01_1869948757-15 28 -0.136237 hybrid +145_2-5 Q0 MARCO_35_307932624-12 29 -0.142835 hybrid +145_2-5 Q0 MARCO_44_35321293-2 30 -0.145665 hybrid +145_2-5 Q0 KILT_1278066-2 31 -0.163896 hybrid +145_2-5 Q0 MARCO_50_2386869195-10 32 -0.165846 hybrid +145_2-5 Q0 MARCO_30_1045383696-2 33 -0.168932 hybrid +145_2-5 Q0 MARCO_01_1679006693-8 34 -0.186631 hybrid +145_2-5 Q0 MARCO_13_436616963-4 35 -0.203969 hybrid +145_2-5 Q0 MARCO_25_518489685-28 36 -0.207399 hybrid +145_2-5 Q0 MARCO_28_446259438-16 37 -0.219983 hybrid +145_2-5 Q0 MARCO_28_528320265-8 38 -0.220419 hybrid +145_2-5 Q0 MARCO_44_35321293-8 39 -0.230439 hybrid +145_2-5 Q0 MARCO_01_1679006693-13 40 -0.233322 hybrid +145_2-5 Q0 MARCO_15_132547451-6 41 -0.233549 hybrid +145_2-5 Q0 MARCO_08_743306876-1 42 -0.239736 hybrid +145_2-5 Q0 MARCO_15_133877816-1 43 -0.242792 hybrid +145_2-5 Q0 MARCO_03_447802610-2 44 -0.243043 hybrid +145_2-5 Q0 MARCO_08_743063601-4 45 -0.243835 hybrid +145_2-5 Q0 MARCO_15_133176883-4 46 -0.260581 hybrid +145_2-5 Q0 MARCO_51_1886540985-8 47 -0.261650 hybrid +145_2-5 Q0 MARCO_15_133831051-6 48 -0.261829 hybrid +145_2-5 Q0 MARCO_20_1668885308-6 49 -0.262263 hybrid +145_2-5 Q0 MARCO_02_693671181-13 50 -0.264771 hybrid +145_2-5 Q0 MARCO_44_2037703296-5 51 -0.271585 hybrid +145_2-5 Q0 MARCO_19_149451038-8 52 -0.282777 hybrid +145_2-5 Q0 KILT_3821214-13 53 -0.284957 hybrid +145_2-5 Q0 KILT_54792823-2 54 -0.287519 hybrid +145_2-5 Q0 MARCO_00_1103658282-2 55 -0.298628 hybrid +145_2-5 Q0 MARCO_16_1163477169-9 56 -0.299065 hybrid +145_2-5 Q0 MARCO_59_603880583-1 57 -0.302351 hybrid +145_2-5 Q0 MARCO_01_1679006693-3 58 -0.302859 hybrid +145_2-5 Q0 MARCO_14_335992199-2 59 -0.311070 hybrid +145_2-5 Q0 MARCO_41_721362333-6 60 -0.314385 hybrid +145_2-5 Q0 KILT_47700-19 61 -0.317803 hybrid +145_2-5 Q0 MARCO_47_1573412885-12 62 -0.317969 hybrid +145_2-5 Q0 MARCO_50_2386869195-1 63 -0.318225 hybrid +145_2-5 Q0 MARCO_15_766740202-7 64 -0.318630 hybrid +145_2-5 Q0 MARCO_28_528320265-4 65 -0.319453 hybrid +145_2-5 Q0 MARCO_34_51783652-3 66 -0.319611 hybrid +145_2-5 Q0 MARCO_41_334325214-13 67 -0.321058 hybrid +145_2-5 Q0 MARCO_44_35321293-1 68 -0.324823 hybrid +145_2-5 Q0 MARCO_15_133842840-7 69 -0.327284 hybrid +145_2-5 Q0 MARCO_36_1680067743-1 70 -0.327667 hybrid +145_2-5 Q0 MARCO_29_1511557603-1 71 -0.328623 hybrid +145_2-5 Q0 MARCO_01_1679006693-5 72 -0.328761 hybrid +145_2-5 Q0 MARCO_30_1045363557-5 73 -0.329712 hybrid +145_2-5 Q0 MARCO_30_1045383696-5 74 -0.329713 hybrid +145_2-5 Q0 MARCO_36_1680067743-4 75 -0.332429 hybrid +145_2-5 Q0 MARCO_36_1680067743-6 76 -0.332429 hybrid +145_2-5 Q0 MARCO_01_1679006693-2 77 -0.332671 hybrid +145_2-5 Q0 MARCO_39_1570912715-6 78 -0.333626 hybrid +145_2-5 Q0 MARCO_28_528320265-10 79 -0.334037 hybrid +145_2-5 Q0 MARCO_16_2629632909-5 80 -0.340023 hybrid +145_2-5 Q0 KILT_19185859-3 81 -0.340752 hybrid +145_2-5 Q0 MARCO_59_603880583-6 82 -0.343787 hybrid +145_2-5 Q0 MARCO_05_296592401-1 83 -0.347369 hybrid +145_2-5 Q0 MARCO_18_2641518114-73 84 -0.349644 hybrid +145_2-5 Q0 MARCO_06_691625025-12 85 -0.352022 hybrid +145_2-5 Q0 MARCO_50_2386869195-2 86 -0.356113 hybrid +145_2-5 Q0 MARCO_15_132988360-9 87 -0.356116 hybrid +145_2-5 Q0 MARCO_17_700326814-19 88 -0.360730 hybrid +145_2-5 Q0 MARCO_16_3929298904-4 89 -0.361570 hybrid +145_2-5 Q0 MARCO_08_743306876-5 90 -0.366475 hybrid +145_2-5 Q0 MARCO_33_138676065-6 91 -0.367905 hybrid +145_2-5 Q0 MARCO_54_2053931769-2 92 -0.368544 hybrid +145_2-5 Q0 MARCO_40_1275973865-3 93 -0.368671 hybrid +145_2-5 Q0 MARCO_03_1218066139-2 94 -0.368738 hybrid +145_2-5 Q0 MARCO_05_347910875-7 95 -0.375808 hybrid +145_2-5 Q0 MARCO_30_435276155-4 96 -0.376658 hybrid +145_2-5 Q0 MARCO_28_424288304-2 97 -0.378304 hybrid +145_2-5 Q0 MARCO_50_1744021001-97 98 -0.379234 hybrid +145_2-5 Q0 MARCO_09_1221242571-14 99 -0.381726 hybrid +145_2-5 Q0 MARCO_34_51783652-5 100 -0.384687 hybrid +146_1-1 Q0 MARCO_18_438706474-27 1 0.448604 hybrid +146_1-1 Q0 MARCO_12_1743660916-2 2 0.438104 hybrid +146_1-1 Q0 MARCO_03_442110904-3 3 0.132220 hybrid +146_1-1 Q0 MARCO_12_1749972286-18 4 -0.008765 hybrid +146_1-1 Q0 MARCO_12_1743660916-24 5 -0.075346 hybrid +146_1-1 Q0 MARCO_12_1743843608-1 6 -0.079966 hybrid +146_1-1 Q0 MARCO_49_195021032-1 7 -0.092890 hybrid +146_1-1 Q0 MARCO_00_938352697-2 8 -0.101197 hybrid +146_1-1 Q0 MARCO_12_1743852582-1 9 -0.113581 hybrid +146_1-1 Q0 MARCO_12_1749972286-1 10 -0.146988 hybrid +146_1-1 Q0 MARCO_12_1749972286-4 11 -0.164851 hybrid +146_1-1 Q0 KILT_5213622-1 12 -0.182369 hybrid +146_1-1 Q0 MARCO_12_1743660916-4 13 -0.199849 hybrid +146_1-1 Q0 MARCO_12_1749972286-2 14 -0.208233 hybrid +146_1-1 Q0 MARCO_12_1742383385-2 15 -0.212737 hybrid +146_1-1 Q0 MARCO_12_1749972286-17 16 -0.241431 hybrid +146_1-1 Q0 MARCO_12_1701775897-7 17 -0.250000 hybrid +146_1-1 Q0 MARCO_12_1743660916-3 18 -0.254974 hybrid +146_1-1 Q0 MARCO_18_438706474-26 19 -0.255172 hybrid +146_1-1 Q0 MARCO_03_442066020-5 20 -0.278453 hybrid +146_1-1 Q0 MARCO_37_835583122-8 21 -0.288294 hybrid +146_1-1 Q0 MARCO_37_835583122-7 22 -0.293905 hybrid +146_1-1 Q0 MARCO_03_442066020-1 23 -0.295316 hybrid +146_1-1 Q0 MARCO_30_1595095560-5 24 -0.304200 hybrid +146_1-1 Q0 MARCO_12_1748924052-1 25 -0.308720 hybrid +146_1-1 Q0 MARCO_12_1748988523-2 26 -0.311879 hybrid +146_1-1 Q0 MARCO_37_835486393-2 27 -0.311947 hybrid +146_1-1 Q0 MARCO_37_835583122-2 28 -0.313202 hybrid +146_1-1 Q0 MARCO_03_442110904-1 29 -0.319297 hybrid +146_1-1 Q0 MARCO_30_1595095560-2 30 -0.322560 hybrid +146_1-1 Q0 MARCO_30_1046901938-4 31 -0.328201 hybrid +146_1-1 Q0 MARCO_12_1749972286-19 32 -0.335806 hybrid +146_1-1 Q0 MARCO_12_1743843608-4 33 -0.337726 hybrid +146_1-1 Q0 MARCO_37_835572361-1 34 -0.341402 hybrid +146_1-1 Q0 MARCO_37_835583122-6 35 -0.343424 hybrid +146_1-1 Q0 MARCO_37_835583122-3 36 -0.346391 hybrid +146_1-1 Q0 MARCO_12_1742862651-3 37 -0.346988 hybrid +146_1-1 Q0 MARCO_12_1743241647-1 38 -0.348005 hybrid +146_1-1 Q0 MARCO_37_835572361-7 39 -0.348388 hybrid +146_1-1 Q0 MARCO_24_1272117402-6 40 -0.359856 hybrid +146_1-1 Q0 MARCO_33_294270713-2 41 -0.362978 hybrid +146_1-1 Q0 MARCO_12_1742928397-28 42 -0.363501 hybrid +146_1-1 Q0 MARCO_10_1139818584-3 43 -0.369837 hybrid +146_1-1 Q0 KILT_22920117-5 44 -0.371331 hybrid +146_1-1 Q0 MARCO_26_729371405-2 45 -0.378305 hybrid +146_1-1 Q0 MARCO_37_835539785-1 46 -0.396051 hybrid +146_1-1 Q0 MARCO_55_1727497448-7 47 -0.396244 hybrid +146_1-1 Q0 MARCO_20_1203659160-1 48 -0.400345 hybrid +146_1-1 Q0 MARCO_40_769976188-9 49 -0.400353 hybrid +146_1-1 Q0 MARCO_30_1079167306-1 50 -0.404669 hybrid +146_1-1 Q0 MARCO_12_1748735394-7 51 -0.405796 hybrid +146_1-1 Q0 MARCO_12_1743660916-6 52 -0.408604 hybrid +146_1-1 Q0 MARCO_37_835512353-8 53 -0.408792 hybrid +146_1-1 Q0 MARCO_28_474423482-2 54 -0.410119 hybrid +146_1-1 Q0 MARCO_14_1671866225-4 55 -0.410367 hybrid +146_1-1 Q0 MARCO_37_835583122-5 56 -0.411349 hybrid +146_1-1 Q0 MARCO_37_835747822-1 57 -0.412355 hybrid +146_1-1 Q0 MARCO_15_1536998662-85 58 -0.413746 hybrid +146_1-1 Q0 MARCO_12_1743660916-5 59 -0.414588 hybrid +146_1-1 Q0 MARCO_42_1893321634-2 60 -0.419636 hybrid +146_1-1 Q0 MARCO_52_1188774245-88 61 -0.422787 hybrid +146_1-1 Q0 KILT_969450-1 62 -0.425369 hybrid +146_1-1 Q0 MARCO_59_946203164-4 63 -0.426627 hybrid +146_1-1 Q0 MARCO_51_244719074-1 64 -0.430503 hybrid +146_1-1 Q0 MARCO_12_1743852582-2 65 -0.432933 hybrid +146_1-1 Q0 MARCO_42_281072732-1 66 -0.437074 hybrid +146_1-1 Q0 MARCO_30_1595095560-3 67 -0.437509 hybrid +146_1-1 Q0 MARCO_59_946203164-10 68 -0.440406 hybrid +146_1-1 Q0 MARCO_04_319606464-7 69 -0.442135 hybrid +146_1-1 Q0 MARCO_38_1462592335-2 70 -0.445267 hybrid +146_1-1 Q0 MARCO_49_445498041-2 71 -0.445378 hybrid +146_1-1 Q0 MARCO_24_1272103552-4 72 -0.447980 hybrid +146_1-1 Q0 MARCO_20_1203659160-8 73 -0.448418 hybrid +146_1-1 Q0 MARCO_12_1748988523-6 74 -0.451632 hybrid +146_1-1 Q0 KILT_22920117-4 75 -0.453459 hybrid +146_1-1 Q0 MARCO_24_1263129398-8 76 -0.453906 hybrid +146_1-1 Q0 MARCO_12_1743852582-3 77 -0.454806 hybrid +146_1-1 Q0 MARCO_03_442110904-2 78 -0.454915 hybrid +146_1-1 Q0 MARCO_24_1267849248-5 79 -0.456521 hybrid +146_1-1 Q0 MARCO_57_1433621787-7 80 -0.460707 hybrid +146_1-1 Q0 MARCO_15_1880743126-2 81 -0.460945 hybrid +146_1-1 Q0 MARCO_24_1269344514-8 82 -0.461419 hybrid +146_1-1 Q0 MARCO_12_1743660916-21 83 -0.463847 hybrid +146_1-1 Q0 MARCO_21_866526698-1 84 -0.464719 hybrid +146_1-1 Q0 MARCO_12_1743660916-9 85 -0.464803 hybrid +146_1-1 Q0 MARCO_37_608176264-1 86 -0.465680 hybrid +146_1-1 Q0 MARCO_40_769976188-1 87 -0.465780 hybrid +146_1-1 Q0 MARCO_24_1267824382-3 88 -0.466835 hybrid +146_1-1 Q0 MARCO_12_1749877637-11 89 -0.468200 hybrid +146_1-1 Q0 MARCO_12_1748793707-23 90 -0.469750 hybrid +146_1-1 Q0 MARCO_12_1742418613-5 91 -0.471551 hybrid +146_1-1 Q0 MARCO_12_1160687657-5 92 -0.471601 hybrid +146_1-1 Q0 MARCO_55_1325718304-8 93 -0.472367 hybrid +146_1-1 Q0 MARCO_12_1743660916-20 94 -0.474290 hybrid +146_1-1 Q0 MARCO_59_945897284-10 95 -0.474688 hybrid +146_1-1 Q0 MARCO_42_1893270592-5 96 -0.481436 hybrid +146_1-1 Q0 MARCO_51_957947561-10 97 -0.481492 hybrid +146_1-1 Q0 MARCO_37_608189296-1 98 -0.484556 hybrid +146_1-1 Q0 MARCO_12_1749931299-12 99 -0.484642 hybrid +146_1-1 Q0 MARCO_37_835523985-12 100 -0.485025 hybrid +146_1-11 Q0 MARCO_11_754522594-8 1 0.249998 hybrid +146_1-11 Q0 MARCO_55_1278846437-9 2 0.056652 hybrid +146_1-11 Q0 MARCO_41_113271484-1 3 0.025371 hybrid +146_1-11 Q0 MARCO_33_820389361-1 4 -0.038883 hybrid +146_1-11 Q0 MARCO_44_104702281-5 5 -0.064018 hybrid +146_1-11 Q0 MARCO_31_885963547-17 6 -0.068718 hybrid +146_1-11 Q0 MARCO_30_1023512105-25 7 -0.111049 hybrid +146_1-11 Q0 MARCO_30_1023256694-34 8 -0.111678 hybrid +146_1-11 Q0 MARCO_13_1565289735-8 9 -0.129098 hybrid +146_1-11 Q0 MARCO_22_167025448-1 10 -0.134093 hybrid +146_1-11 Q0 MARCO_13_1696358562-1 11 -0.138221 hybrid +146_1-11 Q0 MARCO_39_23819753-2 12 -0.173210 hybrid +146_1-11 Q0 MARCO_12_1748283911-1 13 -0.182203 hybrid +146_1-11 Q0 MARCO_20_364926941-20 14 -0.184105 hybrid +146_1-11 Q0 MARCO_55_1278846437-7 15 -0.187328 hybrid +146_1-11 Q0 MARCO_24_953037959-10 16 -0.188521 hybrid +146_1-11 Q0 MARCO_36_953407022-2 17 -0.211602 hybrid +146_1-11 Q0 MARCO_30_737679851-1 18 -0.212075 hybrid +146_1-11 Q0 MARCO_11_755049057-1 19 -0.212104 hybrid +146_1-11 Q0 MARCO_30_1023295234-17 20 -0.222966 hybrid +146_1-11 Q0 MARCO_45_657231657-2 21 -0.224541 hybrid +146_1-11 Q0 MARCO_12_1744392103-1 22 -0.224937 hybrid +146_1-11 Q0 MARCO_24_1270881747-2 23 -0.227869 hybrid +146_1-11 Q0 MARCO_02_485011177-1 24 -0.242081 hybrid +146_1-11 Q0 MARCO_30_1023541593-1 25 -0.242558 hybrid +146_1-11 Q0 MARCO_49_448087206-1 26 -0.250002 hybrid +146_1-11 Q0 MARCO_24_1268172536-1 27 -0.253430 hybrid +146_1-11 Q0 MARCO_42_325369363-30 28 -0.259047 hybrid +146_1-11 Q0 MARCO_30_1093753522-1 29 -0.260876 hybrid +146_1-11 Q0 MARCO_02_485011177-3 30 -0.268530 hybrid +146_1-11 Q0 MARCO_57_1415155159-1 31 -0.270398 hybrid +146_1-11 Q0 MARCO_36_1433791408-4 32 -0.275467 hybrid +146_1-11 Q0 MARCO_11_754616783-11 33 -0.284841 hybrid +146_1-11 Q0 MARCO_19_2062629295-1 34 -0.287652 hybrid +146_1-11 Q0 MARCO_30_1023403401-1 35 -0.288893 hybrid +146_1-11 Q0 MARCO_22_167025448-6 36 -0.292469 hybrid +146_1-11 Q0 MARCO_36_955036188-4 37 -0.296248 hybrid +146_1-11 Q0 MARCO_41_113271484-2 38 -0.299707 hybrid +146_1-11 Q0 MARCO_24_1053383617-1 39 -0.302658 hybrid +146_1-11 Q0 MARCO_08_377508112-1 40 -0.303496 hybrid +146_1-11 Q0 MARCO_56_813882352-11 41 -0.307060 hybrid +146_1-11 Q0 MARCO_22_156348200-1 42 -0.309762 hybrid +146_1-11 Q0 MARCO_22_156348200-3 43 -0.309762 hybrid +146_1-11 Q0 MARCO_56_450711294-8 44 -0.313181 hybrid +146_1-11 Q0 MARCO_45_657231657-1 45 -0.314865 hybrid +146_1-11 Q0 MARCO_13_1565289735-1 46 -0.315502 hybrid +146_1-11 Q0 MARCO_55_818099290-1 47 -0.316968 hybrid +146_1-11 Q0 MARCO_54_557942895-4 48 -0.317029 hybrid +146_1-11 Q0 MARCO_56_813820654-5 49 -0.320489 hybrid +146_1-11 Q0 MARCO_00_1003301494-1 50 -0.321464 hybrid +146_1-11 Q0 MARCO_32_1520324974-18 51 -0.324857 hybrid +146_1-11 Q0 MARCO_48_1593292798-1 52 -0.333322 hybrid +146_1-11 Q0 MARCO_54_557942895-2 53 -0.338120 hybrid +146_1-11 Q0 MARCO_19_2062629295-2 54 -0.338742 hybrid +146_1-11 Q0 MARCO_52_599141495-9 55 -0.338771 hybrid +146_1-11 Q0 MARCO_31_1609170729-1 56 -0.338800 hybrid +146_1-11 Q0 MARCO_30_1023295234-1 57 -0.339288 hybrid +146_1-11 Q0 MARCO_30_1023256694-1 58 -0.341168 hybrid +146_1-11 Q0 MARCO_24_1127718815-1 59 -0.341303 hybrid +146_1-11 Q0 MARCO_49_448087206-7 60 -0.343401 hybrid +146_1-11 Q0 MARCO_50_2554813031-4 61 -0.345330 hybrid +146_1-11 Q0 MARCO_30_740017895-22 62 -0.346286 hybrid +146_1-11 Q0 MARCO_21_397258943-1 63 -0.347861 hybrid +146_1-11 Q0 MARCO_30_1023146362-2 64 -0.349357 hybrid +146_1-11 Q0 MARCO_25_520538614-1 65 -0.349957 hybrid +146_1-11 Q0 MARCO_30_1023219202-6 66 -0.353107 hybrid +146_1-11 Q0 MARCO_45_1581981666-5 67 -0.354165 hybrid +146_1-11 Q0 MARCO_45_657284769-6 68 -0.355198 hybrid +146_1-11 Q0 MARCO_45_657284769-1 69 -0.357265 hybrid +146_1-11 Q0 MARCO_45_657315801-8 70 -0.360069 hybrid +146_1-11 Q0 MARCO_05_594570631-1 71 -0.361114 hybrid +146_1-11 Q0 MARCO_30_818130848-12 72 -0.361328 hybrid +146_1-11 Q0 MARCO_12_1168581743-8 73 -0.361404 hybrid +146_1-11 Q0 MARCO_24_1268172536-20 74 -0.361499 hybrid +146_1-11 Q0 MARCO_55_818137430-1 75 -0.361913 hybrid +146_1-11 Q0 MARCO_31_1609170729-5 76 -0.361913 hybrid +146_1-11 Q0 MARCO_54_557942895-1 77 -0.362037 hybrid +146_1-11 Q0 MARCO_12_1744392103-2 78 -0.365387 hybrid +146_1-11 Q0 MARCO_49_408074028-1 79 -0.366439 hybrid +146_1-11 Q0 MARCO_59_942738593-8 80 -0.366860 hybrid +146_1-11 Q0 MARCO_30_1023181351-1 81 -0.367603 hybrid +146_1-11 Q0 MARCO_36_953550205-3 82 -0.367934 hybrid +146_1-11 Q0 MARCO_30_740017895-1 83 -0.368454 hybrid +146_1-11 Q0 MARCO_52_1200764674-1 84 -0.369905 hybrid +146_1-11 Q0 MARCO_24_1553899260-4 85 -0.377148 hybrid +146_1-11 Q0 MARCO_55_818079519-1 86 -0.379054 hybrid +146_1-11 Q0 MARCO_21_963867012-3 87 -0.379075 hybrid +146_1-11 Q0 MARCO_21_963867012-1 88 -0.379083 hybrid +146_1-11 Q0 MARCO_31_1655966712-1 89 -0.380763 hybrid +146_1-11 Q0 MARCO_43_744615889-1 90 -0.383324 hybrid +146_1-11 Q0 MARCO_30_1023219202-1 91 -0.386492 hybrid +146_1-11 Q0 MARCO_45_657315801-5 92 -0.386503 hybrid +146_1-11 Q0 MARCO_45_657284769-25 93 -0.387675 hybrid +146_1-11 Q0 MARCO_24_1270881747-1 94 -0.388188 hybrid +146_1-11 Q0 MARCO_22_398051387-3 95 -0.389923 hybrid +146_1-11 Q0 MARCO_44_1854517724-12 96 -0.390934 hybrid +146_1-11 Q0 MARCO_54_1665814459-1 97 -0.391593 hybrid +146_1-11 Q0 MARCO_01_1176871118-4 98 -0.392262 hybrid +146_1-11 Q0 MARCO_36_954380266-3 99 -0.394917 hybrid +146_1-11 Q0 MARCO_25_521252296-1 100 -0.395004 hybrid +146_1-3 Q0 MARCO_12_1743660916-4 1 0.658618 hybrid +146_1-3 Q0 MARCO_12_1743660916-24 2 0.333225 hybrid +146_1-3 Q0 MARCO_18_438706474-27 3 0.183167 hybrid +146_1-3 Q0 MARCO_12_1743660916-9 4 0.179932 hybrid +146_1-3 Q0 MARCO_03_442110904-1 5 0.118172 hybrid +146_1-3 Q0 MARCO_12_1743660916-3 6 0.081822 hybrid +146_1-3 Q0 MARCO_03_442110904-2 7 0.077725 hybrid +146_1-3 Q0 MARCO_12_1743660916-36 8 0.062846 hybrid +146_1-3 Q0 MARCO_12_1743660916-5 9 0.062788 hybrid +146_1-3 Q0 MARCO_00_938352697-2 10 -0.039422 hybrid +146_1-3 Q0 MARCO_12_1742890120-13 11 -0.060920 hybrid +146_1-3 Q0 MARCO_30_1079167306-2 12 -0.066417 hybrid +146_1-3 Q0 MARCO_03_442066020-2 13 -0.075192 hybrid +146_1-3 Q0 MARCO_12_1742997671-2 14 -0.081397 hybrid +146_1-3 Q0 MARCO_00_938352697-1 15 -0.082828 hybrid +146_1-3 Q0 MARCO_24_1263187707-15 16 -0.093437 hybrid +146_1-3 Q0 MARCO_12_1743241647-1 17 -0.098126 hybrid +146_1-3 Q0 MARCO_12_1743660916-2 18 -0.098203 hybrid +146_1-3 Q0 MARCO_12_1742997671-1 19 -0.111384 hybrid +146_1-3 Q0 MARCO_54_737332210-6 20 -0.122195 hybrid +146_1-3 Q0 MARCO_12_1744179388-8 21 -0.126371 hybrid +146_1-3 Q0 MARCO_12_1743660916-21 22 -0.146645 hybrid +146_1-3 Q0 KILT_22920117-5 23 -0.152182 hybrid +146_1-3 Q0 MARCO_12_1743843608-4 24 -0.160592 hybrid +146_1-3 Q0 MARCO_24_1271381381-9 25 -0.175340 hybrid +146_1-3 Q0 MARCO_12_1742890120-1 26 -0.190678 hybrid +146_1-3 Q0 MARCO_12_1455091765-5 27 -0.191182 hybrid +146_1-3 Q0 MARCO_03_442110904-3 28 -0.194116 hybrid +146_1-3 Q0 MARCO_24_1263187707-5 29 -0.200579 hybrid +146_1-3 Q0 MARCO_12_1743660916-15 30 -0.205179 hybrid +146_1-3 Q0 MARCO_59_945897284-10 31 -0.209785 hybrid +146_1-3 Q0 MARCO_59_946203164-10 32 -0.219061 hybrid +146_1-3 Q0 MARCO_24_1263100353-23 33 -0.239037 hybrid +146_1-3 Q0 MARCO_24_1263100353-17 34 -0.240072 hybrid +146_1-3 Q0 MARCO_30_1079167306-4 35 -0.248431 hybrid +146_1-3 Q0 MARCO_03_1125529773-1 36 -0.250000 hybrid +146_1-3 Q0 MARCO_24_1263187707-8 37 -0.252214 hybrid +146_1-3 Q0 MARCO_12_1455091765-7 38 -0.252754 hybrid +146_1-3 Q0 MARCO_42_1893270592-5 39 -0.253430 hybrid +146_1-3 Q0 MARCO_12_1745900270-1 40 -0.257364 hybrid +146_1-3 Q0 MARCO_24_1263100353-10 41 -0.261307 hybrid +146_1-3 Q0 MARCO_24_1263100353-2 42 -0.269187 hybrid +146_1-3 Q0 MARCO_12_1743660916-10 43 -0.270492 hybrid +146_1-3 Q0 MARCO_30_86858168-4 44 -0.270503 hybrid +146_1-3 Q0 MARCO_24_1263100353-8 45 -0.281577 hybrid +146_1-3 Q0 MARCO_45_1023789281-8 46 -0.282043 hybrid +146_1-3 Q0 MARCO_12_1742997671-58 47 -0.283039 hybrid +146_1-3 Q0 MARCO_51_1513126332-9 48 -0.284332 hybrid +146_1-3 Q0 MARCO_24_1263187707-7 49 -0.285592 hybrid +146_1-3 Q0 MARCO_12_1744179388-4 50 -0.290772 hybrid +146_1-3 Q0 MARCO_24_4166896-9 51 -0.292304 hybrid +146_1-3 Q0 MARCO_12_1742997671-27 52 -0.295753 hybrid +146_1-3 Q0 MARCO_12_1743660916-1 53 -0.297018 hybrid +146_1-3 Q0 MARCO_24_1263100353-9 54 -0.298736 hybrid +146_1-3 Q0 MARCO_12_1743660916-20 55 -0.299488 hybrid +146_1-3 Q0 MARCO_12_1744179388-10 56 -0.299701 hybrid +146_1-3 Q0 MARCO_12_1743241647-2 57 -0.300273 hybrid +146_1-3 Q0 MARCO_40_170744467-6 58 -0.301118 hybrid +146_1-3 Q0 MARCO_24_1271381381-12 59 -0.307346 hybrid +146_1-3 Q0 MARCO_12_1743660916-6 60 -0.308343 hybrid +146_1-3 Q0 MARCO_12_1744179388-6 61 -0.312712 hybrid +146_1-3 Q0 MARCO_12_1742771107-1 62 -0.317579 hybrid +146_1-3 Q0 KILT_22920117-6 63 -0.321869 hybrid +146_1-3 Q0 MARCO_41_342459735-7 64 -0.324444 hybrid +146_1-3 Q0 MARCO_12_1756585178-1 65 -0.329026 hybrid +146_1-3 Q0 MARCO_08_887707240-11 66 -0.336451 hybrid +146_1-3 Q0 MARCO_54_225020737-2 67 -0.338170 hybrid +146_1-3 Q0 MARCO_41_323307954-5 68 -0.340499 hybrid +146_1-3 Q0 MARCO_03_441428698-7 69 -0.340737 hybrid +146_1-3 Q0 MARCO_05_1347487814-5 70 -0.341661 hybrid +146_1-3 Q0 MARCO_12_1743660916-7 71 -0.344867 hybrid +146_1-3 Q0 MARCO_12_1743852582-1 72 -0.349089 hybrid +146_1-3 Q0 MARCO_24_1271381381-3 73 -0.350810 hybrid +146_1-3 Q0 MARCO_54_225041213-7 74 -0.351644 hybrid +146_1-3 Q0 MARCO_28_1150358403-10 75 -0.353494 hybrid +146_1-3 Q0 MARCO_24_1263100353-15 76 -0.357343 hybrid +146_1-3 Q0 MARCO_12_1743660916-16 77 -0.358256 hybrid +146_1-3 Q0 MARCO_30_86858168-6 78 -0.360621 hybrid +146_1-3 Q0 MARCO_24_1263187707-20 79 -0.361390 hybrid +146_1-3 Q0 MARCO_54_229368095-2 80 -0.362389 hybrid +146_1-3 Q0 MARCO_12_1744179388-7 81 -0.366443 hybrid +146_1-3 Q0 MARCO_24_1263100353-19 82 -0.366634 hybrid +146_1-3 Q0 MARCO_34_849058819-4 83 -0.369504 hybrid +146_1-3 Q0 MARCO_12_1743660916-14 84 -0.371468 hybrid +146_1-3 Q0 MARCO_12_1746050185-4 85 -0.371523 hybrid +146_1-3 Q0 MARCO_59_945897284-2 86 -0.372492 hybrid +146_1-3 Q0 MARCO_37_609905850-2 87 -0.374087 hybrid +146_1-3 Q0 MARCO_36_1583826005-2 88 -0.376812 hybrid +146_1-3 Q0 MARCO_24_1271381381-6 89 -0.376859 hybrid +146_1-3 Q0 MARCO_12_1743241647-15 90 -0.377489 hybrid +146_1-3 Q0 MARCO_47_818541108-17 91 -0.377508 hybrid +146_1-3 Q0 MARCO_24_1263163606-16 92 -0.378041 hybrid +146_1-3 Q0 MARCO_30_1079167306-1 93 -0.378424 hybrid +146_1-3 Q0 MARCO_12_1742890120-5 94 -0.380383 hybrid +146_1-3 Q0 MARCO_24_1263187707-14 95 -0.381634 hybrid +146_1-3 Q0 MARCO_12_1743660916-26 96 -0.381836 hybrid +146_1-3 Q0 MARCO_59_945897284-5 97 -0.386640 hybrid +146_1-3 Q0 MARCO_24_1271381381-13 98 -0.387337 hybrid +146_1-3 Q0 MARCO_41_341226590-16 99 -0.387722 hybrid +146_1-3 Q0 MARCO_30_158949539-2 100 -0.388330 hybrid +146_1-5 Q0 MARCO_03_442110904-3 1 0.531743 hybrid +146_1-5 Q0 MARCO_00_938352697-1 2 0.239388 hybrid +146_1-5 Q0 MARCO_12_1743660916-24 3 0.167519 hybrid +146_1-5 Q0 MARCO_03_442110904-1 4 0.162164 hybrid +146_1-5 Q0 MARCO_12_1743660916-4 5 0.161212 hybrid +146_1-5 Q0 MARCO_12_1744179388-8 6 0.042746 hybrid +146_1-5 Q0 MARCO_18_438706474-27 7 0.015621 hybrid +146_1-5 Q0 MARCO_03_442110904-2 8 0.007067 hybrid +146_1-5 Q0 MARCO_59_945897284-10 9 -0.036125 hybrid +146_1-5 Q0 MARCO_24_1263163606-4 10 -0.047448 hybrid +146_1-5 Q0 MARCO_59_945897284-5 11 -0.073643 hybrid +146_1-5 Q0 MARCO_30_1079167306-4 12 -0.075214 hybrid +146_1-5 Q0 MARCO_24_1268476045-8 13 -0.077938 hybrid +146_1-5 Q0 MARCO_12_1743660916-5 14 -0.089413 hybrid +146_1-5 Q0 MARCO_12_1743843608-4 15 -0.105953 hybrid +146_1-5 Q0 MARCO_03_442066020-2 16 -0.107066 hybrid +146_1-5 Q0 MARCO_30_1079167306-2 17 -0.112545 hybrid +146_1-5 Q0 MARCO_03_441428698-7 18 -0.122601 hybrid +146_1-5 Q0 MARCO_12_1743193989-39 19 -0.138581 hybrid +146_1-5 Q0 MARCO_12_1742801559-11 20 -0.150170 hybrid +146_1-5 Q0 MARCO_24_1263187707-20 21 -0.161005 hybrid +146_1-5 Q0 MARCO_12_1743660916-9 22 -0.184117 hybrid +146_1-5 Q0 MARCO_59_946203164-10 23 -0.186382 hybrid +146_1-5 Q0 MARCO_22_155033833-21 24 -0.186882 hybrid +146_1-5 Q0 MARCO_24_1263187707-8 25 -0.191150 hybrid +146_1-5 Q0 MARCO_02_822859511-4 26 -0.196521 hybrid +146_1-5 Q0 MARCO_15_270085330-11 27 -0.198381 hybrid +146_1-5 Q0 MARCO_24_1263187707-5 28 -0.199815 hybrid +146_1-5 Q0 MARCO_34_323965995-6 29 -0.200431 hybrid +146_1-5 Q0 MARCO_49_1856325404-12 30 -0.200765 hybrid +146_1-5 Q0 MARCO_21_151002975-11 31 -0.203025 hybrid +146_1-5 Q0 MARCO_59_945897284-4 32 -0.204305 hybrid +146_1-5 Q0 MARCO_59_945897284-2 33 -0.204857 hybrid +146_1-5 Q0 MARCO_12_1742418613-5 34 -0.207972 hybrid +146_1-5 Q0 MARCO_49_445498041-2 35 -0.210455 hybrid +146_1-5 Q0 MARCO_08_87485934-8 36 -0.214567 hybrid +146_1-5 Q0 MARCO_12_1743660916-20 37 -0.222152 hybrid +146_1-5 Q0 MARCO_12_1742604110-4 38 -0.222732 hybrid +146_1-5 Q0 MARCO_12_1744150198-6 39 -0.225172 hybrid +146_1-5 Q0 MARCO_12_1742862651-14 40 -0.226765 hybrid +146_1-5 Q0 MARCO_12_1743660916-13 41 -0.227239 hybrid +146_1-5 Q0 MARCO_12_1455091765-9 42 -0.229781 hybrid +146_1-5 Q0 MARCO_42_1678757025-11 43 -0.232204 hybrid +146_1-5 Q0 MARCO_42_1678757025-10 44 -0.232443 hybrid +146_1-5 Q0 MARCO_12_1742862651-16 45 -0.232713 hybrid +146_1-5 Q0 MARCO_24_1268476045-4 46 -0.237032 hybrid +146_1-5 Q0 MARCO_00_938352697-2 47 -0.238529 hybrid +146_1-5 Q0 MARCO_50_1453179788-9 48 -0.240806 hybrid +146_1-5 Q0 MARCO_49_445498041-3 49 -0.240890 hybrid +146_1-5 Q0 MARCO_42_1893270592-5 50 -0.241354 hybrid +146_1-5 Q0 MARCO_24_1263129398-10 51 -0.242602 hybrid +146_1-5 Q0 MARCO_24_1268896634-15 52 -0.245979 hybrid +146_1-5 Q0 MARCO_59_945897284-11 53 -0.248423 hybrid +146_1-5 Q0 MARCO_15_602151208-14 54 -0.249998 hybrid +146_1-5 Q0 MARCO_12_1743660916-3 55 -0.253349 hybrid +146_1-5 Q0 MARCO_42_203894687-2 56 -0.255904 hybrid +146_1-5 Q0 MARCO_33_1315522594-21 57 -0.257938 hybrid +146_1-5 Q0 MARCO_12_1743241647-2 58 -0.258081 hybrid +146_1-5 Q0 MARCO_12_1743241647-35 59 -0.258908 hybrid +146_1-5 Q0 MARCO_01_951262112-4 60 -0.260311 hybrid +146_1-5 Q0 MARCO_12_1742862651-2 61 -0.261447 hybrid +146_1-5 Q0 MARCO_00_655400828-2 62 -0.263132 hybrid +146_1-5 Q0 MARCO_30_1079167306-1 63 -0.265158 hybrid +146_1-5 Q0 KILT_22920117-5 64 -0.268940 hybrid +146_1-5 Q0 MARCO_12_1742801559-5 65 -0.270279 hybrid +146_1-5 Q0 MARCO_38_615257224-9 66 -0.275385 hybrid +146_1-5 Q0 MARCO_24_1267915622-2 67 -0.277081 hybrid +146_1-5 Q0 MARCO_24_1263187707-15 68 -0.278289 hybrid +146_1-5 Q0 MARCO_05_484369626-7 69 -0.280303 hybrid +146_1-5 Q0 MARCO_12_1742399053-7 70 -0.283398 hybrid +146_1-5 Q0 MARCO_12_1748924052-16 71 -0.284650 hybrid +146_1-5 Q0 MARCO_41_323685287-5 72 -0.284694 hybrid +146_1-5 Q0 MARCO_28_1146756527-5 73 -0.285123 hybrid +146_1-5 Q0 MARCO_12_1743852582-2 74 -0.286561 hybrid +146_1-5 Q0 MARCO_32_1468200452-2 75 -0.287178 hybrid +146_1-5 Q0 MARCO_54_737332210-6 76 -0.287264 hybrid +146_1-5 Q0 MARCO_38_611455556-11 77 -0.294571 hybrid +146_1-5 Q0 MARCO_12_1701940503-5 78 -0.295276 hybrid +146_1-5 Q0 MARCO_00_655400828-3 79 -0.297449 hybrid +146_1-5 Q0 MARCO_58_226578815-2 80 -0.299144 hybrid +146_1-5 Q0 MARCO_22_155033833-19 81 -0.302410 hybrid +146_1-5 Q0 MARCO_12_1743241647-1 82 -0.303741 hybrid +146_1-5 Q0 MARCO_00_655407799-1 83 -0.307324 hybrid +146_1-5 Q0 MARCO_24_1614442741-11 84 -0.309832 hybrid +146_1-5 Q0 MARCO_59_945897284-8 85 -0.310440 hybrid +146_1-5 Q0 MARCO_24_1268476045-3 86 -0.313273 hybrid +146_1-5 Q0 MARCO_08_887707240-12 87 -0.313320 hybrid +146_1-5 Q0 MARCO_31_919676654-12 88 -0.314533 hybrid +146_1-5 Q0 MARCO_30_158949539-2 89 -0.317500 hybrid +146_1-5 Q0 MARCO_33_1315522594-16 90 -0.319689 hybrid +146_1-5 Q0 MARCO_30_86858168-4 91 -0.320623 hybrid +146_1-5 Q0 MARCO_24_1350596615-3 92 -0.325774 hybrid +146_1-5 Q0 MARCO_24_1269008047-3 93 -0.326944 hybrid +146_1-5 Q0 MARCO_33_1315522594-3 94 -0.328788 hybrid +146_1-5 Q0 MARCO_24_1263100353-14 95 -0.329106 hybrid +146_1-5 Q0 MARCO_24_1262066728-1 96 -0.329872 hybrid +146_1-5 Q0 MARCO_24_1271381381-9 97 -0.333555 hybrid +146_1-5 Q0 MARCO_35_891563171-14 98 -0.334119 hybrid +146_1-5 Q0 MARCO_12_1742997671-58 99 -0.334743 hybrid +146_1-5 Q0 MARCO_12_1748924052-1 100 -0.334978 hybrid +146_1-7 Q0 MARCO_30_741929720-2 1 0.250000 hybrid +146_1-7 Q0 MARCO_02_822859511-3 2 0.214832 hybrid +146_1-7 Q0 MARCO_12_1742679895-3 3 0.180067 hybrid +146_1-7 Q0 MARCO_21_151215108-15 4 0.114582 hybrid +146_1-7 Q0 MARCO_12_1748441115-28 5 0.099646 hybrid +146_1-7 Q0 MARCO_07_1010222021-8 6 0.065982 hybrid +146_1-7 Q0 MARCO_25_1438986012-8 7 0.042900 hybrid +146_1-7 Q0 MARCO_12_1747375078-12 8 0.036549 hybrid +146_1-7 Q0 MARCO_12_1748441115-29 9 0.018064 hybrid +146_1-7 Q0 MARCO_12_1748606616-7 10 -0.001749 hybrid +146_1-7 Q0 MARCO_12_1746627478-6 11 -0.011257 hybrid +146_1-7 Q0 MARCO_20_25450151-8 12 -0.018645 hybrid +146_1-7 Q0 MARCO_20_25450151-7 13 -0.031027 hybrid +146_1-7 Q0 MARCO_20_21862058-8 14 -0.032692 hybrid +146_1-7 Q0 MARCO_12_1168581743-3 15 -0.037945 hybrid +146_1-7 Q0 MARCO_21_151059437-20 16 -0.041875 hybrid +146_1-7 Q0 MARCO_24_1263071172-6 17 -0.053908 hybrid +146_1-7 Q0 MARCO_15_1880443043-14 18 -0.058956 hybrid +146_1-7 Q0 MARCO_24_1269618829-1 19 -0.065366 hybrid +146_1-7 Q0 MARCO_21_151059437-6 20 -0.066723 hybrid +146_1-7 Q0 MARCO_28_474423482-10 21 -0.067582 hybrid +146_1-7 Q0 MARCO_32_374043744-2 22 -0.068269 hybrid +146_1-7 Q0 MARCO_12_1748735394-23 23 -0.069300 hybrid +146_1-7 Q0 MARCO_12_1168581743-13 24 -0.078365 hybrid +146_1-7 Q0 MARCO_12_1748626937-25 25 -0.083187 hybrid +146_1-7 Q0 MARCO_10_1200041593-20 26 -0.089408 hybrid +146_1-7 Q0 MARCO_24_1263071172-4 27 -0.093881 hybrid +146_1-7 Q0 MARCO_49_520512197-3 28 -0.095895 hybrid +146_1-7 Q0 MARCO_12_1748563673-22 29 -0.096991 hybrid +146_1-7 Q0 MARCO_30_741978665-2 30 -0.101388 hybrid +146_1-7 Q0 MARCO_20_21862058-7 31 -0.101719 hybrid +146_1-7 Q0 MARCO_24_1263071172-7 32 -0.101796 hybrid +146_1-7 Q0 MARCO_33_1239956129-3 33 -0.102679 hybrid +146_1-7 Q0 MARCO_21_151919715-9 34 -0.108639 hybrid +146_1-7 Q0 MARCO_07_1002161466-2 35 -0.109309 hybrid +146_1-7 Q0 MARCO_29_663198419-4 36 -0.114712 hybrid +146_1-7 Q0 MARCO_02_1354556773-2 37 -0.115790 hybrid +146_1-7 Q0 MARCO_21_151059437-5 38 -0.118267 hybrid +146_1-7 Q0 MARCO_12_1748003490-3 39 -0.118990 hybrid +146_1-7 Q0 MARCO_12_1748606616-3 40 -0.121294 hybrid +146_1-7 Q0 MARCO_24_1263071172-22 41 -0.124008 hybrid +146_1-7 Q0 MARCO_24_1269618829-9 42 -0.127788 hybrid +146_1-7 Q0 MARCO_22_1421995912-2 43 -0.128232 hybrid +146_1-7 Q0 MARCO_15_1880374433-4 44 -0.130845 hybrid +146_1-7 Q0 MARCO_12_1748599322-4 45 -0.135501 hybrid +146_1-7 Q0 MARCO_04_183817735-1 46 -0.136674 hybrid +146_1-7 Q0 MARCO_20_26778100-8 47 -0.137095 hybrid +146_1-7 Q0 MARCO_40_821222151-2 48 -0.145472 hybrid +146_1-7 Q0 MARCO_47_1282262231-7 49 -0.146160 hybrid +146_1-7 Q0 MARCO_12_1452501128-8 50 -0.155349 hybrid +146_1-7 Q0 MARCO_56_1318806190-4 51 -0.156510 hybrid +146_1-7 Q0 MARCO_20_25450151-10 52 -0.164644 hybrid +146_1-7 Q0 MARCO_45_1264023980-5 53 -0.172139 hybrid +146_1-7 Q0 MARCO_47_1331910150-12 54 -0.172518 hybrid +146_1-7 Q0 MARCO_22_1055285088-12 55 -0.176979 hybrid +146_1-7 Q0 MARCO_12_1748131709-18 56 -0.179029 hybrid +146_1-7 Q0 MARCO_23_895996955-10 57 -0.180771 hybrid +146_1-7 Q0 MARCO_29_1169408855-16 58 -0.182329 hybrid +146_1-7 Q0 MARCO_37_1251366856-16 59 -0.182396 hybrid +146_1-7 Q0 MARCO_12_1746627478-5 60 -0.183058 hybrid +146_1-7 Q0 MARCO_25_1438998388-11 61 -0.184409 hybrid +146_1-7 Q0 MARCO_12_1748626937-10 62 -0.184415 hybrid +146_1-7 Q0 MARCO_12_1749234006-13 63 -0.187115 hybrid +146_1-7 Q0 MARCO_24_1268686836-5 64 -0.191743 hybrid +146_1-7 Q0 MARCO_21_151215108-56 65 -0.192798 hybrid +146_1-7 Q0 MARCO_41_2032214545-5 66 -0.200553 hybrid +146_1-7 Q0 MARCO_22_1421995912-1 67 -0.201430 hybrid +146_1-7 Q0 MARCO_12_1748626937-22 68 -0.201460 hybrid +146_1-7 Q0 MARCO_20_25450151-5 69 -0.206294 hybrid +146_1-7 Q0 MARCO_15_1880443043-6 70 -0.206616 hybrid +146_1-7 Q0 MARCO_12_1746627478-8 71 -0.209209 hybrid +146_1-7 Q0 MARCO_00_1402658062-4 72 -0.210625 hybrid +146_1-7 Q0 MARCO_22_1423765755-3 73 -0.211609 hybrid +146_1-7 Q0 MARCO_12_1748626937-12 74 -0.212794 hybrid +146_1-7 Q0 MARCO_32_374747917-2 75 -0.216206 hybrid +146_1-7 Q0 MARCO_15_1880443043-3 76 -0.219518 hybrid +146_1-7 Q0 MARCO_57_462584001-21 77 -0.222089 hybrid +146_1-7 Q0 MARCO_12_1747365960-6 78 -0.223493 hybrid +146_1-7 Q0 MARCO_33_1239943690-3 79 -0.223535 hybrid +146_1-7 Q0 MARCO_21_599127390-2 80 -0.223742 hybrid +146_1-7 Q0 MARCO_29_663256041-4 81 -0.230887 hybrid +146_1-7 Q0 MARCO_12_1748626937-15 82 -0.231077 hybrid +146_1-7 Q0 MARCO_12_1744324066-2 83 -0.233749 hybrid +146_1-7 Q0 MARCO_25_1406868989-7 84 -0.234738 hybrid +146_1-7 Q0 MARCO_33_1315258892-30 85 -0.235011 hybrid +146_1-7 Q0 MARCO_15_1536998662-36 86 -0.237535 hybrid +146_1-7 Q0 MARCO_12_1748283911-3 87 -0.237665 hybrid +146_1-7 Q0 MARCO_12_1748441115-25 88 -0.238234 hybrid +146_1-7 Q0 MARCO_37_834640896-31 89 -0.240906 hybrid +146_1-7 Q0 MARCO_20_19860105-2 90 -0.244283 hybrid +146_1-7 Q0 MARCO_12_1747375078-11 91 -0.244383 hybrid +146_1-7 Q0 MARCO_05_594831902-5 92 -0.249218 hybrid +146_1-7 Q0 MARCO_12_1702080295-2 93 -0.250000 hybrid +146_1-7 Q0 MARCO_12_1744484912-7 94 -0.254495 hybrid +146_1-7 Q0 MARCO_21_871445147-2 95 -0.254497 hybrid +146_1-7 Q0 MARCO_42_1893419560-2 96 -0.257400 hybrid +146_1-7 Q0 MARCO_22_1423765755-2 97 -0.257897 hybrid +146_1-7 Q0 MARCO_12_1748599322-2 98 -0.258117 hybrid +146_1-7 Q0 MARCO_21_151852562-6 99 -0.258229 hybrid +146_1-7 Q0 MARCO_12_1160687657-7 100 -0.259586 hybrid +146_1-9 Q0 MARCO_12_1748283911-1 1 0.363374 hybrid +146_1-9 Q0 MARCO_12_1168581743-8 2 0.352419 hybrid +146_1-9 Q0 MARCO_12_1744392103-2 3 0.328864 hybrid +146_1-9 Q0 MARCO_12_1168581743-4 4 0.323797 hybrid +146_1-9 Q0 MARCO_12_1748283911-19 5 0.321960 hybrid +146_1-9 Q0 MARCO_12_1168581743-2 6 0.315587 hybrid +146_1-9 Q0 MARCO_12_1744392103-1 7 0.312771 hybrid +146_1-9 Q0 MARCO_12_1168581743-1 8 0.280649 hybrid +146_1-9 Q0 MARCO_12_1748606616-2 9 0.276763 hybrid +146_1-9 Q0 MARCO_12_1744392103-6 10 0.250000 hybrid +146_1-9 Q0 MARCO_12_1744532862-5 11 0.232934 hybrid +146_1-9 Q0 MARCO_12_1748283911-3 12 0.232354 hybrid +146_1-9 Q0 MARCO_12_1748283911-5 13 0.190020 hybrid +146_1-9 Q0 MARCO_12_1168581743-13 14 0.177764 hybrid +146_1-9 Q0 MARCO_24_1263071172-22 15 0.147913 hybrid +146_1-9 Q0 MARCO_07_1002161466-2 16 0.140480 hybrid +146_1-9 Q0 MARCO_27_1110605614-1 17 0.100782 hybrid +146_1-9 Q0 MARCO_12_1746730961-1 18 0.063196 hybrid +146_1-9 Q0 MARCO_12_1748606616-3 19 0.051386 hybrid +146_1-9 Q0 MARCO_10_444731772-8 20 0.022431 hybrid +146_1-9 Q0 MARCO_33_1315090129-11 21 0.011478 hybrid +146_1-9 Q0 MARCO_15_1880443043-3 22 -0.014181 hybrid +146_1-9 Q0 MARCO_37_835539785-1 23 -0.015435 hybrid +146_1-9 Q0 MARCO_24_1269440766-1 24 -0.022641 hybrid +146_1-9 Q0 MARCO_24_1268172536-20 25 -0.038913 hybrid +146_1-9 Q0 MARCO_50_1453179788-41 26 -0.047711 hybrid +146_1-9 Q0 MARCO_12_1745140573-6 27 -0.060222 hybrid +146_1-9 Q0 MARCO_24_1263071172-19 28 -0.065993 hybrid +146_1-9 Q0 MARCO_29_663311583-11 29 -0.074932 hybrid +146_1-9 Q0 MARCO_30_86811266-9 30 -0.079376 hybrid +146_1-9 Q0 MARCO_12_1748283911-2 31 -0.087343 hybrid +146_1-9 Q0 MARCO_15_1880443043-4 32 -0.095718 hybrid +146_1-9 Q0 MARCO_12_1744392103-5 33 -0.096688 hybrid +146_1-9 Q0 MARCO_12_1748441115-29 34 -0.102074 hybrid +146_1-9 Q0 MARCO_12_1748485783-1 35 -0.107453 hybrid +146_1-9 Q0 MARCO_20_26778100-1 36 -0.114084 hybrid +146_1-9 Q0 MARCO_12_1747653960-32 37 -0.119864 hybrid +146_1-9 Q0 MARCO_12_1746795079-10 38 -0.121273 hybrid +146_1-9 Q0 MARCO_54_645339007-1 39 -0.123638 hybrid +146_1-9 Q0 MARCO_47_1282262231-1 40 -0.128112 hybrid +146_1-9 Q0 MARCO_12_1168581743-3 41 -0.136494 hybrid +146_1-9 Q0 MARCO_12_1748283911-9 42 -0.138254 hybrid +146_1-9 Q0 MARCO_20_26648209-4 43 -0.140240 hybrid +146_1-9 Q0 MARCO_11_754522594-8 44 -0.150968 hybrid +146_1-9 Q0 MARCO_12_1746730961-6 45 -0.151342 hybrid +146_1-9 Q0 MARCO_47_1282262231-5 46 -0.151623 hybrid +146_1-9 Q0 MARCO_24_1267968743-2 47 -0.152488 hybrid +146_1-9 Q0 MARCO_20_26778100-20 48 -0.156852 hybrid +146_1-9 Q0 MARCO_47_1282262231-7 49 -0.163751 hybrid +146_1-9 Q0 MARCO_24_1263071172-12 50 -0.165735 hybrid +146_1-9 Q0 MARCO_27_913528998-15 51 -0.165940 hybrid +146_1-9 Q0 MARCO_30_1376171482-23 52 -0.167360 hybrid +146_1-9 Q0 MARCO_24_1269618829-9 53 -0.170184 hybrid +146_1-9 Q0 MARCO_12_1168581743-9 54 -0.172400 hybrid +146_1-9 Q0 MARCO_15_1880443043-14 55 -0.186171 hybrid +146_1-9 Q0 MARCO_20_26778100-8 56 -0.186816 hybrid +146_1-9 Q0 MARCO_20_26778100-5 57 -0.189536 hybrid +146_1-9 Q0 MARCO_30_741965646-3 58 -0.193662 hybrid +146_1-9 Q0 MARCO_12_1746795079-1 59 -0.196270 hybrid +146_1-9 Q0 MARCO_20_26305446-40 60 -0.199039 hybrid +146_1-9 Q0 MARCO_24_1272117402-5 61 -0.202254 hybrid +146_1-9 Q0 MARCO_12_1168581743-5 62 -0.202806 hybrid +146_1-9 Q0 MARCO_21_151059437-19 63 -0.205121 hybrid +146_1-9 Q0 MARCO_42_1893419560-10 64 -0.205148 hybrid +146_1-9 Q0 MARCO_24_1267968743-1 65 -0.205793 hybrid +146_1-9 Q0 MARCO_36_948845584-7 66 -0.207363 hybrid +146_1-9 Q0 MARCO_24_1267968743-3 67 -0.217521 hybrid +146_1-9 Q0 MARCO_12_1160687657-7 68 -0.223510 hybrid +146_1-9 Q0 MARCO_12_1747476691-2 69 -0.234073 hybrid +146_1-9 Q0 MARCO_32_598957359-12 70 -0.234608 hybrid +146_1-9 Q0 MARCO_25_520993524-1 71 -0.240692 hybrid +146_1-9 Q0 MARCO_44_37969956-1 72 -0.242256 hybrid +146_1-9 Q0 MARCO_24_1263071172-2 73 -0.247260 hybrid +146_1-9 Q0 MARCO_24_1269440766-2 74 -0.247440 hybrid +146_1-9 Q0 MARCO_12_1748283911-12 75 -0.249550 hybrid +146_1-9 Q0 MARCO_20_647094895-1 76 -0.250000 hybrid +146_1-9 Q0 MARCO_12_1743580126-1 77 -0.252869 hybrid +146_1-9 Q0 MARCO_12_1748441115-17 78 -0.254154 hybrid +146_1-9 Q0 MARCO_12_1745794915-9 79 -0.256944 hybrid +146_1-9 Q0 MARCO_42_1893419560-2 80 -0.260048 hybrid +146_1-9 Q0 MARCO_24_1271409424-1 81 -0.263158 hybrid +146_1-9 Q0 MARCO_24_1270531156-13 82 -0.263343 hybrid +146_1-9 Q0 MARCO_12_1744392103-3 83 -0.263892 hybrid +146_1-9 Q0 MARCO_12_1745187825-6 84 -0.264207 hybrid +146_1-9 Q0 MARCO_12_1743986790-6 85 -0.266287 hybrid +146_1-9 Q0 MARCO_49_1856325404-7 86 -0.269471 hybrid +146_1-9 Q0 MARCO_09_354321730-4 87 -0.271786 hybrid +146_1-9 Q0 MARCO_12_1748412905-15 88 -0.271911 hybrid +146_1-9 Q0 MARCO_26_1058151032-1 89 -0.272191 hybrid +146_1-9 Q0 MARCO_29_663256041-2 90 -0.274645 hybrid +146_1-9 Q0 MARCO_33_1239943690-2 91 -0.276895 hybrid +146_1-9 Q0 MARCO_30_1505448144-1 92 -0.277125 hybrid +146_1-9 Q0 MARCO_15_1880443043-1 93 -0.282344 hybrid +146_1-9 Q0 MARCO_12_1744614713-5 94 -0.282731 hybrid +146_1-9 Q0 MARCO_12_1744179388-8 95 -0.282864 hybrid +146_1-9 Q0 MARCO_13_704706311-7 96 -0.286728 hybrid +146_1-9 Q0 MARCO_11_875514638-1 97 -0.286823 hybrid +146_1-9 Q0 MARCO_25_1694846959-1 98 -0.289958 hybrid +146_1-9 Q0 MARCO_42_1825385929-2 99 -0.290507 hybrid +146_1-9 Q0 MARCO_59_874124800-2 100 -0.290895 hybrid +147_1-1 Q0 MARCO_36_888487863-6 1 0.250000 hybrid +147_1-1 Q0 MARCO_56_450306784-1 2 0.148321 hybrid +147_1-1 Q0 MARCO_44_33070735-12 3 0.119492 hybrid +147_1-1 Q0 MARCO_44_35079726-11 4 0.108175 hybrid +147_1-1 Q0 MARCO_44_32772068-12 5 0.097420 hybrid +147_1-1 Q0 MARCO_44_32790856-12 6 0.097420 hybrid +147_1-1 Q0 MARCO_44_35079726-8 7 0.084651 hybrid +147_1-1 Q0 MARCO_44_32790856-7 8 0.065130 hybrid +147_1-1 Q0 MARCO_44_32772068-7 9 0.065121 hybrid +147_1-1 Q0 MARCO_50_2498449365-18 10 0.046399 hybrid +147_1-1 Q0 MARCO_44_35079726-12 11 0.031331 hybrid +147_1-1 Q0 MARCO_44_32790856-3 12 -0.005034 hybrid +147_1-1 Q0 KILT_47069739-32 13 -0.012809 hybrid +147_1-1 Q0 MARCO_44_32772068-3 14 -0.025662 hybrid +147_1-1 Q0 MARCO_44_33070735-15 15 -0.074368 hybrid +147_1-1 Q0 MARCO_34_1361534923-1 16 -0.077512 hybrid +147_1-1 Q0 MARCO_44_33070735-17 17 -0.089554 hybrid +147_1-1 Q0 MARCO_44_35079726-3 18 -0.093849 hybrid +147_1-1 Q0 MARCO_44_33070735-16 19 -0.097509 hybrid +147_1-1 Q0 MARCO_44_32772068-14 20 -0.098026 hybrid +147_1-1 Q0 MARCO_44_35079726-5 21 -0.100162 hybrid +147_1-1 Q0 MARCO_44_32790856-13 22 -0.107738 hybrid +147_1-1 Q0 MARCO_44_32772068-13 23 -0.107738 hybrid +147_1-1 Q0 MARCO_07_258203158-7 24 -0.113138 hybrid +147_1-1 Q0 MARCO_44_33070735-9 25 -0.120001 hybrid +147_1-1 Q0 MARCO_40_174893863-1 26 -0.121767 hybrid +147_1-1 Q0 MARCO_44_35079726-13 27 -0.124881 hybrid +147_1-1 Q0 MARCO_35_1384648142-14 28 -0.136909 hybrid +147_1-1 Q0 MARCO_07_1580559307-11 29 -0.142885 hybrid +147_1-1 Q0 MARCO_35_1382138495-1 30 -0.149725 hybrid +147_1-1 Q0 MARCO_44_33070735-10 31 -0.154105 hybrid +147_1-1 Q0 MARCO_17_2942368905-19 32 -0.157115 hybrid +147_1-1 Q0 MARCO_24_1950643919-18 33 -0.163485 hybrid +147_1-1 Q0 MARCO_42_1105109712-3 34 -0.168064 hybrid +147_1-1 Q0 MARCO_44_35079726-6 35 -0.179820 hybrid +147_1-1 Q0 MARCO_00_1161106414-2 36 -0.179974 hybrid +147_1-1 Q0 MARCO_49_1323862759-2 37 -0.180988 hybrid +147_1-1 Q0 MARCO_44_610674293-1 38 -0.181159 hybrid +147_1-1 Q0 MARCO_44_32772068-6 39 -0.199276 hybrid +147_1-1 Q0 MARCO_44_32790856-6 40 -0.199276 hybrid +147_1-1 Q0 MARCO_01_822270056-8 41 -0.208502 hybrid +147_1-1 Q0 MARCO_25_1426460659-1 42 -0.210230 hybrid +147_1-1 Q0 MARCO_17_4189131090-2 43 -0.212571 hybrid +147_1-1 Q0 MARCO_44_608267500-1 44 -0.216009 hybrid +147_1-1 Q0 MARCO_44_32790856-14 45 -0.223848 hybrid +147_1-1 Q0 MARCO_44_33070735-14 46 -0.225216 hybrid +147_1-1 Q0 MARCO_12_1866611257-11 47 -0.226378 hybrid +147_1-1 Q0 MARCO_23_1085604106-1 48 -0.228035 hybrid +147_1-1 Q0 MARCO_46_629689633-1 49 -0.229451 hybrid +147_1-1 Q0 MARCO_44_32772068-9 50 -0.232087 hybrid +147_1-1 Q0 MARCO_44_32790856-9 51 -0.232087 hybrid +147_1-1 Q0 MARCO_56_1313781070-6 52 -0.233760 hybrid +147_1-1 Q0 MARCO_43_1019176089-17 53 -0.240248 hybrid +147_1-1 Q0 MARCO_25_1425970494-13 54 -0.241302 hybrid +147_1-1 Q0 MARCO_44_32772068-4 55 -0.243683 hybrid +147_1-1 Q0 MARCO_44_32790856-4 56 -0.243683 hybrid +147_1-1 Q0 MARCO_40_175150328-8 57 -0.244489 hybrid +147_1-1 Q0 MARCO_52_1210895525-1 58 -0.244730 hybrid +147_1-1 Q0 MARCO_44_32790856-10 59 -0.245023 hybrid +147_1-1 Q0 MARCO_44_32772068-10 60 -0.245026 hybrid +147_1-1 Q0 MARCO_44_33070735-11 61 -0.248032 hybrid +147_1-1 Q0 MARCO_18_3756735521-34 62 -0.248441 hybrid +147_1-1 Q0 MARCO_41_952400628-1 63 -0.250000 hybrid +147_1-1 Q0 MARCO_29_31260901-3 64 -0.252257 hybrid +147_1-1 Q0 MARCO_17_1723309964-108 65 -0.253201 hybrid +147_1-1 Q0 KILT_41677925-58 66 -0.255034 hybrid +147_1-1 Q0 MARCO_44_610674293-9 67 -0.256528 hybrid +147_1-1 Q0 MARCO_44_35079726-4 68 -0.260434 hybrid +147_1-1 Q0 MARCO_40_175608980-6 69 -0.261371 hybrid +147_1-1 Q0 MARCO_12_1866611257-14 70 -0.263509 hybrid +147_1-1 Q0 MARCO_44_32790856-8 71 -0.265872 hybrid +147_1-1 Q0 MARCO_44_32772068-8 72 -0.265872 hybrid +147_1-1 Q0 MARCO_46_629689633-3 73 -0.266497 hybrid +147_1-1 Q0 MARCO_56_450306784-18 74 -0.271611 hybrid +147_1-1 Q0 MARCO_41_116162463-2 75 -0.277528 hybrid +147_1-1 Q0 MARCO_44_33070735-3 76 -0.292295 hybrid +147_1-1 Q0 MARCO_44_33070735-7 77 -0.292300 hybrid +147_1-1 Q0 MARCO_30_352398788-1 78 -0.293056 hybrid +147_1-1 Q0 MARCO_25_1425970494-1 79 -0.304742 hybrid +147_1-1 Q0 MARCO_44_608944968-2 80 -0.306561 hybrid +147_1-1 Q0 KILT_47069739-30 81 -0.310705 hybrid +147_1-1 Q0 MARCO_24_672550-2 82 -0.312718 hybrid +147_1-1 Q0 MARCO_00_624846471-2 83 -0.313184 hybrid +147_1-1 Q0 MARCO_44_33070735-8 84 -0.314457 hybrid +147_1-1 Q0 MARCO_54_730553949-2 85 -0.316433 hybrid +147_1-1 Q0 MARCO_18_2419479428-32 86 -0.316742 hybrid +147_1-1 Q0 MARCO_00_1161868671-4 87 -0.321094 hybrid +147_1-1 Q0 MARCO_15_107130945-1 88 -0.322907 hybrid +147_1-1 Q0 MARCO_35_1383547965-1 89 -0.324572 hybrid +147_1-1 Q0 MARCO_00_1161498748-4 90 -0.329446 hybrid +147_1-1 Q0 MARCO_07_1580559307-4 91 -0.329583 hybrid +147_1-1 Q0 MARCO_25_1425970494-21 92 -0.330426 hybrid +147_1-1 Q0 MARCO_50_1452263860-21 93 -0.333787 hybrid +147_1-1 Q0 MARCO_56_450306784-4 94 -0.334458 hybrid +147_1-1 Q0 MARCO_46_11178366-8 95 -0.335640 hybrid +147_1-1 Q0 MARCO_36_837245354-4 96 -0.337331 hybrid +147_1-1 Q0 MARCO_44_609203686-2 97 -0.342511 hybrid +147_1-1 Q0 MARCO_44_35079726-7 98 -0.342588 hybrid +147_1-1 Q0 MARCO_00_570971400-7 99 -0.347274 hybrid +147_1-1 Q0 MARCO_51_870940831-5 100 -0.347493 hybrid +147_1-11 Q0 MARCO_44_610655812-1 1 0.250000 hybrid +147_1-11 Q0 MARCO_00_1161868671-2 2 0.217631 hybrid +147_1-11 Q0 KILT_5727147-5 3 0.190477 hybrid +147_1-11 Q0 MARCO_00_1161868671-1 4 0.163545 hybrid +147_1-11 Q0 MARCO_44_609706399-2 5 0.148706 hybrid +147_1-11 Q0 MARCO_27_1434420878-4 6 0.121562 hybrid +147_1-11 Q0 MARCO_18_2419479428-32 7 0.094996 hybrid +147_1-11 Q0 KILT_36658495-4 8 0.094383 hybrid +147_1-11 Q0 MARCO_44_609433579-2 9 0.080584 hybrid +147_1-11 Q0 MARCO_35_1383547965-11 10 0.079684 hybrid +147_1-11 Q0 MARCO_18_1803225057-15 11 0.050113 hybrid +147_1-11 Q0 MARCO_18_3756735521-62 12 0.049722 hybrid +147_1-11 Q0 MARCO_18_3756735521-74 13 0.044058 hybrid +147_1-11 Q0 KILT_1043595-1 14 0.016940 hybrid +147_1-11 Q0 MARCO_41_114937070-5 15 0.007859 hybrid +147_1-11 Q0 MARCO_00_1161498748-4 16 0.000089 hybrid +147_1-11 Q0 MARCO_44_609464324-3 17 -0.007018 hybrid +147_1-11 Q0 MARCO_44_610097902-1 18 -0.012040 hybrid +147_1-11 Q0 MARCO_27_1431814765-11 19 -0.012811 hybrid +147_1-11 Q0 MARCO_57_1402930186-1 20 -0.027903 hybrid +147_1-11 Q0 MARCO_50_1506711576-37 21 -0.028741 hybrid +147_1-11 Q0 KILT_11951081-5 22 -0.028756 hybrid +147_1-11 Q0 MARCO_44_609464324-2 23 -0.032735 hybrid +147_1-11 Q0 MARCO_35_1383539023-4 24 -0.050810 hybrid +147_1-11 Q0 MARCO_24_818625-2 25 -0.052559 hybrid +147_1-11 Q0 MARCO_35_1383547965-1 26 -0.061985 hybrid +147_1-11 Q0 KILT_36658495-2 27 -0.081859 hybrid +147_1-11 Q0 MARCO_25_1426460659-1 28 -0.095050 hybrid +147_1-11 Q0 MARCO_14_791736021-10 29 -0.099924 hybrid +147_1-11 Q0 MARCO_44_609706399-6 30 -0.102791 hybrid +147_1-11 Q0 MARCO_41_115295208-1 31 -0.111806 hybrid +147_1-11 Q0 MARCO_16_4111504380-1 32 -0.112923 hybrid +147_1-11 Q0 MARCO_17_3113865338-31 33 -0.119630 hybrid +147_1-11 Q0 MARCO_41_121006452-1 34 -0.120801 hybrid +147_1-11 Q0 MARCO_24_652996254-1 35 -0.136771 hybrid +147_1-11 Q0 MARCO_41_115182135-1 36 -0.142801 hybrid +147_1-11 Q0 MARCO_41_114937070-6 37 -0.145559 hybrid +147_1-11 Q0 MARCO_10_551602548-31 38 -0.148781 hybrid +147_1-11 Q0 MARCO_10_551602548-25 39 -0.152552 hybrid +147_1-11 Q0 MARCO_19_562425557-19 40 -0.164172 hybrid +147_1-11 Q0 MARCO_00_1161106414-2 41 -0.167766 hybrid +147_1-11 Q0 MARCO_50_1424129020-98 42 -0.174962 hybrid +147_1-11 Q0 MARCO_17_3113865338-27 43 -0.179499 hybrid +147_1-11 Q0 MARCO_16_4112300102-19 44 -0.182766 hybrid +147_1-11 Q0 KILT_47080851-1 45 -0.183883 hybrid +147_1-11 Q0 MARCO_00_1161868671-4 46 -0.184254 hybrid +147_1-11 Q0 KILT_54114309-8 47 -0.186374 hybrid +147_1-11 Q0 MARCO_16_1898607786-45 48 -0.186626 hybrid +147_1-11 Q0 MARCO_00_1161518643-3 49 -0.191490 hybrid +147_1-11 Q0 MARCO_00_624846471-4 50 -0.195113 hybrid +147_1-11 Q0 KILT_41677925-17 51 -0.207281 hybrid +147_1-11 Q0 MARCO_31_292399071-1 52 -0.212175 hybrid +147_1-11 Q0 MARCO_15_108462915-1 53 -0.216361 hybrid +147_1-11 Q0 KILT_36658495-3 54 -0.226478 hybrid +147_1-11 Q0 MARCO_35_1381752575-1 55 -0.227744 hybrid +147_1-11 Q0 MARCO_00_1161868671-3 56 -0.228407 hybrid +147_1-11 Q0 MARCO_14_790593007-26 57 -0.232642 hybrid +147_1-11 Q0 MARCO_12_1866611257-9 58 -0.234525 hybrid +147_1-11 Q0 MARCO_19_150522950-28 59 -0.234920 hybrid +147_1-11 Q0 MARCO_19_150522950-26 60 -0.234920 hybrid +147_1-11 Q0 MARCO_19_150522950-24 61 -0.234930 hybrid +147_1-11 Q0 MARCO_19_160112057-4 62 -0.238662 hybrid +147_1-11 Q0 KILT_36860986-46 63 -0.240683 hybrid +147_1-11 Q0 MARCO_41_114937070-1 64 -0.241716 hybrid +147_1-11 Q0 MARCO_44_610655812-4 65 -0.243703 hybrid +147_1-11 Q0 MARCO_41_114937070-2 66 -0.244153 hybrid +147_1-11 Q0 MARCO_35_1385396165-1 67 -0.247104 hybrid +147_1-11 Q0 MARCO_27_1501635766-1 68 -0.250000 hybrid +147_1-11 Q0 KILT_35351355-7 69 -0.250346 hybrid +147_1-11 Q0 KILT_1074657-1 70 -0.250940 hybrid +147_1-11 Q0 MARCO_34_1361534923-1 71 -0.253139 hybrid +147_1-11 Q0 MARCO_35_1383547965-6 72 -0.254529 hybrid +147_1-11 Q0 MARCO_41_121006452-2 73 -0.254789 hybrid +147_1-11 Q0 MARCO_41_121006452-4 74 -0.254789 hybrid +147_1-11 Q0 MARCO_41_114937070-4 75 -0.259534 hybrid +147_1-11 Q0 MARCO_14_785840311-7 76 -0.260093 hybrid +147_1-11 Q0 MARCO_19_160112057-3 77 -0.264833 hybrid +147_1-11 Q0 MARCO_27_1511572274-2 78 -0.265065 hybrid +147_1-11 Q0 MARCO_00_1161555318-7 79 -0.274703 hybrid +147_1-11 Q0 MARCO_10_545065829-12 80 -0.275341 hybrid +147_1-11 Q0 MARCO_16_4112078153-53 81 -0.275514 hybrid +147_1-11 Q0 MARCO_44_610495158-3 82 -0.276477 hybrid +147_1-11 Q0 MARCO_44_610655812-15 83 -0.287573 hybrid +147_1-11 Q0 MARCO_44_32908000-9 84 -0.294592 hybrid +147_1-11 Q0 KILT_4744869-1 85 -0.301818 hybrid +147_1-11 Q0 MARCO_44_609452746-2 86 -0.303790 hybrid +147_1-11 Q0 MARCO_41_115465033-11 87 -0.304457 hybrid +147_1-11 Q0 MARCO_24_137345103-2 88 -0.304838 hybrid +147_1-11 Q0 MARCO_06_1965268772-7 89 -0.304891 hybrid +147_1-11 Q0 MARCO_00_1161183399-4 90 -0.305288 hybrid +147_1-11 Q0 MARCO_19_160112057-7 91 -0.305910 hybrid +147_1-11 Q0 KILT_22918413-30 92 -0.306360 hybrid +147_1-11 Q0 KILT_36658495-1 93 -0.306662 hybrid +147_1-11 Q0 MARCO_10_551602548-1 94 -0.309588 hybrid +147_1-11 Q0 KILT_38382468-2 95 -0.309934 hybrid +147_1-11 Q0 MARCO_49_1323862759-1 96 -0.313028 hybrid +147_1-11 Q0 KILT_55994110-1 97 -0.314725 hybrid +147_1-11 Q0 KILT_22783445-14 98 -0.317640 hybrid +147_1-11 Q0 KILT_11208322-3 99 -0.318594 hybrid +147_1-11 Q0 MARCO_38_40200777-8 100 -0.319275 hybrid +147_1-13 Q0 MARCO_35_1381811664-1 1 0.505831 hybrid +147_1-13 Q0 MARCO_18_2389435848-7 2 0.327835 hybrid +147_1-13 Q0 MARCO_23_244648306-4 3 0.250000 hybrid +147_1-13 Q0 MARCO_51_1242871660-69 4 0.207737 hybrid +147_1-13 Q0 MARCO_54_1522858487-10 5 0.180907 hybrid +147_1-13 Q0 MARCO_00_1006614948-3 6 0.167743 hybrid +147_1-13 Q0 MARCO_50_1607961702-5 7 0.167614 hybrid +147_1-13 Q0 KILT_12210793-2 8 0.145186 hybrid +147_1-13 Q0 KILT_12210793-7 9 0.134113 hybrid +147_1-13 Q0 MARCO_33_485936101-22 10 0.115841 hybrid +147_1-13 Q0 MARCO_55_820091751-7 11 0.107760 hybrid +147_1-13 Q0 MARCO_51_1242871660-39 12 0.055675 hybrid +147_1-13 Q0 MARCO_51_1242871660-49 13 0.044951 hybrid +147_1-13 Q0 MARCO_17_3094322423-9 14 0.042364 hybrid +147_1-13 Q0 MARCO_40_1277533248-6 15 0.038808 hybrid +147_1-13 Q0 MARCO_33_485936101-7 16 0.034179 hybrid +147_1-13 Q0 KILT_12210793-3 17 0.026502 hybrid +147_1-13 Q0 MARCO_35_1385623774-3 18 0.008434 hybrid +147_1-13 Q0 MARCO_12_147135613-134 19 0.001959 hybrid +147_1-13 Q0 MARCO_41_1231939664-79 20 -0.017962 hybrid +147_1-13 Q0 MARCO_14_1615338299-3 21 -0.037128 hybrid +147_1-13 Q0 MARCO_51_1242871660-58 22 -0.038170 hybrid +147_1-13 Q0 MARCO_17_3094322423-17 23 -0.040359 hybrid +147_1-13 Q0 KILT_36658495-4 24 -0.047557 hybrid +147_1-13 Q0 MARCO_13_401512644-2 25 -0.062499 hybrid +147_1-13 Q0 MARCO_13_23118636-13 26 -0.065320 hybrid +147_1-13 Q0 MARCO_16_110104570-14 27 -0.067245 hybrid +147_1-13 Q0 MARCO_33_485936101-2 28 -0.077086 hybrid +147_1-13 Q0 MARCO_28_555051138-2 29 -0.081010 hybrid +147_1-13 Q0 MARCO_58_1587094730-5 30 -0.089433 hybrid +147_1-13 Q0 MARCO_00_719738480-3 31 -0.098361 hybrid +147_1-13 Q0 MARCO_30_123359247-2 32 -0.101960 hybrid +147_1-13 Q0 MARCO_17_3094322423-11 33 -0.105731 hybrid +147_1-13 Q0 MARCO_04_324560370-4 34 -0.109520 hybrid +147_1-13 Q0 MARCO_13_323346002-2 35 -0.113585 hybrid +147_1-13 Q0 MARCO_16_110104570-15 36 -0.117472 hybrid +147_1-13 Q0 MARCO_19_160112057-3 37 -0.123046 hybrid +147_1-13 Q0 MARCO_51_1242871660-75 38 -0.124818 hybrid +147_1-13 Q0 MARCO_50_1446542803-26 39 -0.132427 hybrid +147_1-13 Q0 MARCO_50_1506561565-24 40 -0.135253 hybrid +147_1-13 Q0 MARCO_33_742522995-3 41 -0.135609 hybrid +147_1-13 Q0 MARCO_02_869268468-6 42 -0.142997 hybrid +147_1-13 Q0 MARCO_28_422948117-4 43 -0.148822 hybrid +147_1-13 Q0 MARCO_13_401503891-3 44 -0.151746 hybrid +147_1-13 Q0 MARCO_51_1242871660-6 45 -0.154248 hybrid +147_1-13 Q0 MARCO_33_485936101-23 46 -0.154407 hybrid +147_1-13 Q0 MARCO_55_820091751-60 47 -0.160784 hybrid +147_1-13 Q0 MARCO_51_1242871660-40 48 -0.164996 hybrid +147_1-13 Q0 MARCO_41_2172210083-2 49 -0.167988 hybrid +147_1-13 Q0 MARCO_15_311086668-2 50 -0.169386 hybrid +147_1-13 Q0 MARCO_54_7592322-4 51 -0.170054 hybrid +147_1-13 Q0 MARCO_04_324560370-5 52 -0.172660 hybrid +147_1-13 Q0 MARCO_50_1446542803-6 53 -0.175634 hybrid +147_1-13 Q0 MARCO_01_694088226-9 54 -0.181146 hybrid +147_1-13 Q0 MARCO_29_801614408-3 55 -0.181955 hybrid +147_1-13 Q0 MARCO_46_706965329-9 56 -0.185996 hybrid +147_1-13 Q0 MARCO_33_485936101-36 57 -0.187069 hybrid +147_1-13 Q0 MARCO_46_388273453-2 58 -0.187528 hybrid +147_1-13 Q0 MARCO_20_658999981-5 59 -0.187559 hybrid +147_1-13 Q0 MARCO_17_3094322423-18 60 -0.188614 hybrid +147_1-13 Q0 KILT_56214450-23 61 -0.189294 hybrid +147_1-13 Q0 MARCO_49_219905779-4 62 -0.194518 hybrid +147_1-13 Q0 KILT_12210793-4 63 -0.199196 hybrid +147_1-13 Q0 MARCO_54_1522858487-4 64 -0.201820 hybrid +147_1-13 Q0 MARCO_13_401512644-8 65 -0.202590 hybrid +147_1-13 Q0 MARCO_33_485936101-6 66 -0.202593 hybrid +147_1-13 Q0 MARCO_12_1866611257-9 67 -0.203280 hybrid +147_1-13 Q0 MARCO_35_1382561099-4 68 -0.203770 hybrid +147_1-13 Q0 MARCO_51_1242871660-38 69 -0.205045 hybrid +147_1-13 Q0 MARCO_50_1607961702-20 70 -0.205395 hybrid +147_1-13 Q0 KILT_12210793-5 71 -0.210913 hybrid +147_1-13 Q0 MARCO_04_324560370-13 72 -0.213458 hybrid +147_1-13 Q0 MARCO_40_1186633117-2 73 -0.215935 hybrid +147_1-13 Q0 MARCO_30_123411998-2 74 -0.216474 hybrid +147_1-13 Q0 MARCO_15_311086668-20 75 -0.217388 hybrid +147_1-13 Q0 KILT_36658495-2 76 -0.218264 hybrid +147_1-13 Q0 MARCO_13_323346002-1 77 -0.222464 hybrid +147_1-13 Q0 MARCO_14_785387155-1 78 -0.225683 hybrid +147_1-13 Q0 MARCO_33_485936101-17 79 -0.225861 hybrid +147_1-13 Q0 MARCO_53_564162347-11 80 -0.226701 hybrid +147_1-13 Q0 MARCO_50_1665743731-20 81 -0.230398 hybrid +147_1-13 Q0 MARCO_04_1029349361-5 82 -0.231263 hybrid +147_1-13 Q0 MARCO_17_3094322423-4 83 -0.232955 hybrid +147_1-13 Q0 MARCO_13_401534225-1 84 -0.237842 hybrid +147_1-13 Q0 MARCO_50_1446542803-7 85 -0.238056 hybrid +147_1-13 Q0 MARCO_16_1898607786-3 86 -0.241104 hybrid +147_1-13 Q0 MARCO_35_1382037145-1 87 -0.246640 hybrid +147_1-13 Q0 MARCO_18_1803225057-15 88 -0.246910 hybrid +147_1-13 Q0 MARCO_50_1607961702-11 89 -0.247664 hybrid +147_1-13 Q0 MARCO_13_1155480592-7 90 -0.249890 hybrid +147_1-13 Q0 MARCO_17_2668085167-5 91 -0.250000 hybrid +147_1-13 Q0 MARCO_13_1158202425-3 92 -0.250515 hybrid +147_1-13 Q0 MARCO_37_1250415608-14 93 -0.250993 hybrid +147_1-13 Q0 MARCO_04_324560370-14 94 -0.253771 hybrid +147_1-13 Q0 MARCO_46_706800503-4 95 -0.259424 hybrid +147_1-13 Q0 KILT_28816423-2 96 -0.263158 hybrid +147_1-13 Q0 MARCO_14_783432639-18 97 -0.266113 hybrid +147_1-13 Q0 MARCO_12_340634773-119 98 -0.267217 hybrid +147_1-13 Q0 MARCO_53_1038745773-1 99 -0.267713 hybrid +147_1-13 Q0 KILT_38911166-2 100 -0.269013 hybrid +147_1-15 Q0 MARCO_43_193593489-47 1 0.250000 hybrid +147_1-15 Q0 MARCO_15_311086668-22 2 0.248207 hybrid +147_1-15 Q0 MARCO_15_311086668-18 3 0.214476 hybrid +147_1-15 Q0 MARCO_13_740305728-9 4 0.187508 hybrid +147_1-15 Q0 MARCO_29_660988135-7 5 0.130752 hybrid +147_1-15 Q0 MARCO_41_1147975002-13 6 0.100816 hybrid +147_1-15 Q0 KILT_38911166-2 7 0.093917 hybrid +147_1-15 Q0 MARCO_50_1969067492-23 8 0.087307 hybrid +147_1-15 Q0 MARCO_57_1974278187-26 9 0.067329 hybrid +147_1-15 Q0 MARCO_15_311086668-10 10 0.060696 hybrid +147_1-15 Q0 MARCO_41_1231939664-79 11 0.047788 hybrid +147_1-15 Q0 KILT_36827865-4 12 0.006488 hybrid +147_1-15 Q0 MARCO_27_1567206326-2 13 0.002840 hybrid +147_1-15 Q0 MARCO_57_1973376795-21 14 -0.007362 hybrid +147_1-15 Q0 MARCO_00_1006614948-3 15 -0.027175 hybrid +147_1-15 Q0 MARCO_33_742522995-3 16 -0.039453 hybrid +147_1-15 Q0 MARCO_57_1949828322-19 17 -0.040940 hybrid +147_1-15 Q0 MARCO_50_1411015309-18 18 -0.042313 hybrid +147_1-15 Q0 MARCO_29_1175597810-15 19 -0.057791 hybrid +147_1-15 Q0 MARCO_40_1277533248-6 20 -0.063925 hybrid +147_1-15 Q0 MARCO_36_1433836339-9 21 -0.071840 hybrid +147_1-15 Q0 MARCO_51_452060826-3 22 -0.082354 hybrid +147_1-15 Q0 MARCO_57_1957090712-18 23 -0.083647 hybrid +147_1-15 Q0 MARCO_43_193593489-46 24 -0.085531 hybrid +147_1-15 Q0 MARCO_13_23118636-13 25 -0.086768 hybrid +147_1-15 Q0 MARCO_24_1556939288-10 26 -0.100607 hybrid +147_1-15 Q0 MARCO_57_1959760917-8 27 -0.108987 hybrid +147_1-15 Q0 MARCO_15_311086668-20 28 -0.113844 hybrid +147_1-15 Q0 MARCO_49_1688287934-9 29 -0.119693 hybrid +147_1-15 Q0 MARCO_19_2551352885-14 30 -0.126638 hybrid +147_1-15 Q0 MARCO_13_1164703834-3 31 -0.134956 hybrid +147_1-15 Q0 MARCO_57_1974278187-28 32 -0.150043 hybrid +147_1-15 Q0 MARCO_07_257647443-3 33 -0.156109 hybrid +147_1-15 Q0 MARCO_07_257674564-8 34 -0.156114 hybrid +147_1-15 Q0 MARCO_15_311086668-21 35 -0.162180 hybrid +147_1-15 Q0 MARCO_15_311086668-17 36 -0.165125 hybrid +147_1-15 Q0 MARCO_57_1957718772-25 37 -0.169425 hybrid +147_1-15 Q0 MARCO_28_442964816-4 38 -0.175400 hybrid +147_1-15 Q0 MARCO_28_442963099-2 39 -0.175400 hybrid +147_1-15 Q0 MARCO_07_257694441-4 40 -0.175400 hybrid +147_1-15 Q0 MARCO_07_257603041-4 41 -0.175400 hybrid +147_1-15 Q0 MARCO_13_323346002-3 42 -0.176733 hybrid +147_1-15 Q0 MARCO_22_999352316-9 43 -0.178730 hybrid +147_1-15 Q0 MARCO_29_1688856398-6 44 -0.192887 hybrid +147_1-15 Q0 MARCO_23_244603153-5 45 -0.195094 hybrid +147_1-15 Q0 MARCO_36_1433836339-10 46 -0.211610 hybrid +147_1-15 Q0 MARCO_20_1741959146-4 47 -0.212643 hybrid +147_1-15 Q0 MARCO_13_324074840-5 48 -0.213188 hybrid +147_1-15 Q0 MARCO_22_1577177686-5 49 -0.214334 hybrid +147_1-15 Q0 MARCO_17_362492626-34 50 -0.219554 hybrid +147_1-15 Q0 MARCO_53_7090072-3 51 -0.225313 hybrid +147_1-15 Q0 MARCO_20_1741905807-23 52 -0.227060 hybrid +147_1-15 Q0 MARCO_14_791056066-27 53 -0.228212 hybrid +147_1-15 Q0 MARCO_52_802730551-8 54 -0.228314 hybrid +147_1-15 Q0 MARCO_14_790766691-5 55 -0.228984 hybrid +147_1-15 Q0 MARCO_30_123365525-3 56 -0.231792 hybrid +147_1-15 Q0 MARCO_13_1166971201-12 57 -0.241092 hybrid +147_1-15 Q0 MARCO_14_790698147-4 58 -0.248803 hybrid +147_1-15 Q0 MARCO_43_353595745-9 59 -0.250000 hybrid +147_1-15 Q0 MARCO_37_1272477961-3 60 -0.250970 hybrid +147_1-15 Q0 MARCO_00_1161933894-8 61 -0.252525 hybrid +147_1-15 Q0 MARCO_41_1211301623-54 62 -0.252587 hybrid +147_1-15 Q0 MARCO_37_1260899213-8 63 -0.256536 hybrid +147_1-15 Q0 MARCO_15_311086668-24 64 -0.256565 hybrid +147_1-15 Q0 MARCO_23_1830796877-4 65 -0.256877 hybrid +147_1-15 Q0 MARCO_37_1261828343-29 66 -0.259952 hybrid +147_1-15 Q0 MARCO_51_906308626-5 67 -0.265229 hybrid +147_1-15 Q0 MARCO_14_783557191-6 68 -0.265700 hybrid +147_1-15 Q0 MARCO_14_791318218-6 69 -0.265700 hybrid +147_1-15 Q0 MARCO_14_788781430-5 70 -0.265700 hybrid +147_1-15 Q0 MARCO_14_791473462-19 71 -0.265700 hybrid +147_1-15 Q0 MARCO_14_789243724-31 72 -0.265700 hybrid +147_1-15 Q0 MARCO_14_790838995-4 73 -0.265700 hybrid +147_1-15 Q0 MARCO_14_791342204-7 74 -0.265700 hybrid +147_1-15 Q0 MARCO_13_326809774-3 75 -0.266551 hybrid +147_1-15 Q0 MARCO_15_311086668-16 76 -0.274165 hybrid +147_1-15 Q0 MARCO_37_1272106030-5 77 -0.274886 hybrid +147_1-15 Q0 MARCO_20_1741953937-4 78 -0.276480 hybrid +147_1-15 Q0 MARCO_35_982608758-4 79 -0.277178 hybrid +147_1-15 Q0 MARCO_20_1741976308-5 80 -0.277377 hybrid +147_1-15 Q0 MARCO_13_401349727-9 81 -0.280945 hybrid +147_1-15 Q0 MARCO_52_679562266-14 82 -0.283618 hybrid +147_1-15 Q0 MARCO_13_401292671-4 83 -0.294143 hybrid +147_1-15 Q0 MARCO_14_787486691-8 84 -0.297524 hybrid +147_1-15 Q0 MARCO_14_789585013-6 85 -0.297530 hybrid +147_1-15 Q0 MARCO_14_786830592-104 86 -0.297530 hybrid +147_1-15 Q0 MARCO_14_789840802-6 87 -0.297530 hybrid +147_1-15 Q0 MARCO_14_790195002-2 88 -0.297530 hybrid +147_1-15 Q0 MARCO_57_1962681432-17 89 -0.297672 hybrid +147_1-15 Q0 MARCO_15_311086668-5 90 -0.299431 hybrid +147_1-15 Q0 MARCO_22_1122198455-8 91 -0.299448 hybrid +147_1-15 Q0 MARCO_22_994368111-3 92 -0.303431 hybrid +147_1-15 Q0 MARCO_57_1969592429-11 93 -0.304254 hybrid +147_1-15 Q0 MARCO_41_1137645308-14 94 -0.304770 hybrid +147_1-15 Q0 MARCO_27_1508946895-17 95 -0.307023 hybrid +147_1-15 Q0 MARCO_50_1461081507-23 96 -0.307306 hybrid +147_1-15 Q0 MARCO_52_802730551-13 97 -0.310762 hybrid +147_1-15 Q0 MARCO_40_1191866162-7 98 -0.315953 hybrid +147_1-15 Q0 MARCO_20_1741992584-7 99 -0.316197 hybrid +147_1-15 Q0 MARCO_14_783738739-2 100 -0.317230 hybrid +147_1-3 Q0 MARCO_24_1266739861-14 1 0.304081 hybrid +147_1-3 Q0 KILT_36484005-10 2 0.250002 hybrid +147_1-3 Q0 MARCO_50_1452263860-14 3 0.200922 hybrid +147_1-3 Q0 MARCO_35_1383472964-4 4 0.129315 hybrid +147_1-3 Q0 MARCO_33_741177750-3 5 0.100709 hybrid +147_1-3 Q0 MARCO_10_79499431-13 6 0.095265 hybrid +147_1-3 Q0 MARCO_35_1383472964-1 7 0.086023 hybrid +147_1-3 Q0 MARCO_25_1431566510-6 8 0.075237 hybrid +147_1-3 Q0 MARCO_35_1383505365-4 9 0.042495 hybrid +147_1-3 Q0 MARCO_43_1018436030-5 10 -0.001978 hybrid +147_1-3 Q0 MARCO_27_1431128200-13 11 -0.010044 hybrid +147_1-3 Q0 MARCO_46_629480232-3 12 -0.010231 hybrid +147_1-3 Q0 MARCO_31_292579249-5 13 -0.015650 hybrid +147_1-3 Q0 MARCO_43_1018992950-5 14 -0.022958 hybrid +147_1-3 Q0 MARCO_44_610231832-3 15 -0.029285 hybrid +147_1-3 Q0 MARCO_40_175150328-2 16 -0.033315 hybrid +147_1-3 Q0 MARCO_24_1950643919-10 17 -0.038878 hybrid +147_1-3 Q0 MARCO_16_3038433296-7 18 -0.038966 hybrid +147_1-3 Q0 MARCO_44_606539471-3 19 -0.039391 hybrid +147_1-3 Q0 MARCO_05_486944589-5 20 -0.040071 hybrid +147_1-3 Q0 MARCO_16_4158786912-16 21 -0.050433 hybrid +147_1-3 Q0 MARCO_50_1180183382-16 22 -0.052941 hybrid +147_1-3 Q0 MARCO_50_1452263860-13 23 -0.077376 hybrid +147_1-3 Q0 MARCO_07_618451949-1 24 -0.078925 hybrid +147_1-3 Q0 KILT_36484005-32 25 -0.079199 hybrid +147_1-3 Q0 MARCO_35_1382138495-3 26 -0.091644 hybrid +147_1-3 Q0 MARCO_35_1383472964-2 27 -0.101918 hybrid +147_1-3 Q0 MARCO_16_3038355385-3 28 -0.111293 hybrid +147_1-3 Q0 KILT_1870260-3 29 -0.128103 hybrid +147_1-3 Q0 MARCO_53_731995266-131 30 -0.128710 hybrid +147_1-3 Q0 MARCO_33_738965442-2 31 -0.135890 hybrid +147_1-3 Q0 MARCO_50_1452516695-35 32 -0.137581 hybrid +147_1-3 Q0 MARCO_27_1432833494-12 33 -0.139742 hybrid +147_1-3 Q0 MARCO_43_999216787-21 34 -0.143755 hybrid +147_1-3 Q0 MARCO_41_115413917-5 35 -0.153149 hybrid +147_1-3 Q0 MARCO_54_732994185-3 36 -0.153267 hybrid +147_1-3 Q0 MARCO_33_741177750-5 37 -0.155212 hybrid +147_1-3 Q0 MARCO_31_292579249-4 38 -0.161744 hybrid +147_1-3 Q0 MARCO_44_610231832-1 39 -0.162935 hybrid +147_1-3 Q0 MARCO_18_3756735521-8 40 -0.163165 hybrid +147_1-3 Q0 MARCO_44_32754161-5 41 -0.177760 hybrid +147_1-3 Q0 MARCO_16_1632644170-13 42 -0.181832 hybrid +147_1-3 Q0 MARCO_16_1632644170-11 43 -0.181832 hybrid +147_1-3 Q0 MARCO_35_1383505365-3 44 -0.185674 hybrid +147_1-3 Q0 MARCO_24_652996254-3 45 -0.203843 hybrid +147_1-3 Q0 MARCO_43_1284311255-13 46 -0.210515 hybrid +147_1-3 Q0 MARCO_41_1122465642-19 47 -0.217376 hybrid +147_1-3 Q0 MARCO_05_487400231-2 48 -0.221738 hybrid +147_1-3 Q0 MARCO_01_692482769-6 49 -0.222080 hybrid +147_1-3 Q0 MARCO_56_1313781070-2 50 -0.232002 hybrid +147_1-3 Q0 MARCO_19_160064927-8 51 -0.238191 hybrid +147_1-3 Q0 MARCO_17_2969490987-5 52 -0.242145 hybrid +147_1-3 Q0 KILT_55024717-12 53 -0.246324 hybrid +147_1-3 Q0 MARCO_31_1416243046-1 54 -0.249998 hybrid +147_1-3 Q0 MARCO_18_3756735521-32 55 -0.250865 hybrid +147_1-3 Q0 MARCO_21_950101893-2 56 -0.254216 hybrid +147_1-3 Q0 MARCO_00_1161159168-3 57 -0.261614 hybrid +147_1-3 Q0 MARCO_56_1313781070-5 58 -0.263300 hybrid +147_1-3 Q0 MARCO_44_32491649-11 59 -0.265485 hybrid +147_1-3 Q0 MARCO_54_728401778-5 60 -0.267455 hybrid +147_1-3 Q0 MARCO_10_79499431-4 61 -0.269866 hybrid +147_1-3 Q0 MARCO_25_1425970494-11 62 -0.271273 hybrid +147_1-3 Q0 MARCO_22_1600720953-12 63 -0.275144 hybrid +147_1-3 Q0 MARCO_55_248475370-9 64 -0.276802 hybrid +147_1-3 Q0 MARCO_17_2969490987-4 65 -0.277558 hybrid +147_1-3 Q0 MARCO_54_1565053788-4 66 -0.279978 hybrid +147_1-3 Q0 MARCO_44_606424403-2 67 -0.281434 hybrid +147_1-3 Q0 MARCO_14_790593007-21 68 -0.285301 hybrid +147_1-3 Q0 MARCO_44_610231832-6 69 -0.290355 hybrid +147_1-3 Q0 MARCO_19_562425557-25 70 -0.290668 hybrid +147_1-3 Q0 KILT_45359871-31 71 -0.292917 hybrid +147_1-3 Q0 MARCO_35_1383472964-6 72 -0.298862 hybrid +147_1-3 Q0 MARCO_40_145216430-4 73 -0.304447 hybrid +147_1-3 Q0 MARCO_41_991260222-29 74 -0.304789 hybrid +147_1-3 Q0 MARCO_42_1375725180-4 75 -0.305811 hybrid +147_1-3 Q0 MARCO_44_610231832-2 76 -0.306143 hybrid +147_1-3 Q0 MARCO_43_986390068-18 77 -0.307282 hybrid +147_1-3 Q0 MARCO_27_1431003855-6 78 -0.308025 hybrid +147_1-3 Q0 KILT_161190-43 79 -0.308407 hybrid +147_1-3 Q0 MARCO_27_1507935785-7 80 -0.310987 hybrid +147_1-3 Q0 MARCO_23_1778040914-16 81 -0.311640 hybrid +147_1-3 Q0 MARCO_44_32790856-10 82 -0.315587 hybrid +147_1-3 Q0 MARCO_44_32772068-10 83 -0.315597 hybrid +147_1-3 Q0 KILT_1870260-6 84 -0.316262 hybrid +147_1-3 Q0 MARCO_59_944636994-3 85 -0.318417 hybrid +147_1-3 Q0 MARCO_35_1382157522-1 86 -0.320699 hybrid +147_1-3 Q0 MARCO_21_967407690-2 87 -0.323300 hybrid +147_1-3 Q0 MARCO_52_1613351760-11 88 -0.324004 hybrid +147_1-3 Q0 MARCO_16_3038433296-22 89 -0.325431 hybrid +147_1-3 Q0 MARCO_23_1829744723-8 90 -0.326047 hybrid +147_1-3 Q0 MARCO_00_1161106414-6 91 -0.326839 hybrid +147_1-3 Q0 MARCO_20_698310093-2 92 -0.329571 hybrid +147_1-3 Q0 MARCO_14_768618022-102 93 -0.329592 hybrid +147_1-3 Q0 MARCO_41_114394914-8 94 -0.330129 hybrid +147_1-3 Q0 MARCO_18_3263058647-29 95 -0.333179 hybrid +147_1-3 Q0 MARCO_04_899409978-3 96 -0.333663 hybrid +147_1-3 Q0 MARCO_12_360368407-3 97 -0.334675 hybrid +147_1-3 Q0 MARCO_14_787153171-35 98 -0.336048 hybrid +147_1-3 Q0 MARCO_25_1434853867-2 99 -0.337075 hybrid +147_1-3 Q0 MARCO_43_51134853-2 100 -0.337691 hybrid +147_1-5 Q0 MARCO_23_1085604106-9 1 0.283574 hybrid +147_1-5 Q0 MARCO_42_1104714867-66 2 0.249998 hybrid +147_1-5 Q0 MARCO_43_986249535-5 3 0.240459 hybrid +147_1-5 Q0 MARCO_35_1383575714-4 4 0.213500 hybrid +147_1-5 Q0 MARCO_18_1803225057-18 5 0.159659 hybrid +147_1-5 Q0 MARCO_44_32754161-2 6 0.153868 hybrid +147_1-5 Q0 MARCO_36_896744753-16 7 0.131337 hybrid +147_1-5 Q0 MARCO_31_292579249-4 8 0.090513 hybrid +147_1-5 Q0 MARCO_40_174400452-2 9 0.062338 hybrid +147_1-5 Q0 MARCO_27_1431520153-3 10 0.053466 hybrid +147_1-5 Q0 MARCO_44_32772068-7 11 0.044255 hybrid +147_1-5 Q0 MARCO_44_32790856-7 12 0.044251 hybrid +147_1-5 Q0 MARCO_25_1425970494-24 13 0.033735 hybrid +147_1-5 Q0 MARCO_25_1769516182-4 14 0.021939 hybrid +147_1-5 Q0 MARCO_27_1431520153-1 15 0.017909 hybrid +147_1-5 Q0 MARCO_29_620821575-3 16 0.008105 hybrid +147_1-5 Q0 MARCO_18_1803225057-10 17 0.005894 hybrid +147_1-5 Q0 MARCO_23_1830002330-7 18 -0.017915 hybrid +147_1-5 Q0 MARCO_05_486755225-5 19 -0.028812 hybrid +147_1-5 Q0 MARCO_16_3025547777-12 20 -0.060176 hybrid +147_1-5 Q0 MARCO_17_4189131090-2 21 -0.066951 hybrid +147_1-5 Q0 MARCO_34_1516508619-1 22 -0.070218 hybrid +147_1-5 Q0 MARCO_34_1516508619-3 23 -0.070218 hybrid +147_1-5 Q0 MARCO_18_3756735521-116 24 -0.080302 hybrid +147_1-5 Q0 MARCO_18_3756735521-118 25 -0.080302 hybrid +147_1-5 Q0 MARCO_30_835825400-1 26 -0.085273 hybrid +147_1-5 Q0 MARCO_31_292579249-3 27 -0.093987 hybrid +147_1-5 Q0 MARCO_50_930735572-9 28 -0.095996 hybrid +147_1-5 Q0 MARCO_44_609452746-3 29 -0.097418 hybrid +147_1-5 Q0 MARCO_41_114937070-6 30 -0.115637 hybrid +147_1-5 Q0 MARCO_35_1472928268-2 31 -0.115864 hybrid +147_1-5 Q0 MARCO_31_292579249-5 32 -0.116437 hybrid +147_1-5 Q0 MARCO_44_610323468-9 33 -0.119673 hybrid +147_1-5 Q0 MARCO_43_1278539922-5 34 -0.123870 hybrid +147_1-5 Q0 MARCO_40_174400452-1 35 -0.126209 hybrid +147_1-5 Q0 MARCO_35_1383497290-6 36 -0.126961 hybrid +147_1-5 Q0 MARCO_44_609154232-3 37 -0.142327 hybrid +147_1-5 Q0 MARCO_44_33070735-10 38 -0.144546 hybrid +147_1-5 Q0 MARCO_10_79499431-13 39 -0.145699 hybrid +147_1-5 Q0 MARCO_43_1279557583-10 40 -0.155810 hybrid +147_1-5 Q0 MARCO_44_609174027-5 41 -0.158855 hybrid +147_1-5 Q0 MARCO_35_1383505365-3 42 -0.164590 hybrid +147_1-5 Q0 MARCO_18_1803225057-97 43 -0.167389 hybrid +147_1-5 Q0 MARCO_35_1383480701-5 44 -0.173145 hybrid +147_1-5 Q0 MARCO_44_35079726-6 45 -0.182413 hybrid +147_1-5 Q0 MARCO_43_1018992950-16 46 -0.184678 hybrid +147_1-5 Q0 MARCO_42_1104163557-12 47 -0.190939 hybrid +147_1-5 Q0 MARCO_44_32754161-15 48 -0.193808 hybrid +147_1-5 Q0 MARCO_26_87263119-28 49 -0.196278 hybrid +147_1-5 Q0 MARCO_22_1600679330-4 50 -0.201289 hybrid +147_1-5 Q0 MARCO_43_1279823183-6 51 -0.205840 hybrid +147_1-5 Q0 MARCO_35_1383575714-3 52 -0.211574 hybrid +147_1-5 Q0 MARCO_43_1284311255-4 53 -0.213358 hybrid +147_1-5 Q0 MARCO_50_1601742922-13 54 -0.216963 hybrid +147_1-5 Q0 MARCO_44_33070735-15 55 -0.219688 hybrid +147_1-5 Q0 MARCO_22_759546019-4 56 -0.221341 hybrid +147_1-5 Q0 MARCO_44_33070735-18 57 -0.231868 hybrid +147_1-5 Q0 MARCO_18_1803225057-3 58 -0.232970 hybrid +147_1-5 Q0 MARCO_43_51134853-2 59 -0.234133 hybrid +147_1-5 Q0 KILT_36484254-54 60 -0.235601 hybrid +147_1-5 Q0 MARCO_44_32491649-2 61 -0.235899 hybrid +147_1-5 Q0 MARCO_40_175150328-2 62 -0.235987 hybrid +147_1-5 Q0 MARCO_14_791867527-15 63 -0.237405 hybrid +147_1-5 Q0 MARCO_44_609187571-4 64 -0.238910 hybrid +147_1-5 Q0 MARCO_31_292399071-1 65 -0.241803 hybrid +147_1-5 Q0 MARCO_19_475131147-23 66 -0.242054 hybrid +147_1-5 Q0 MARCO_40_174400452-4 67 -0.242330 hybrid +147_1-5 Q0 MARCO_18_1803225057-20 68 -0.243941 hybrid +147_1-5 Q0 MARCO_25_1434853867-6 69 -0.245487 hybrid +147_1-5 Q0 MARCO_41_115413917-5 70 -0.246124 hybrid +147_1-5 Q0 MARCO_18_1803225057-46 71 -0.248874 hybrid +147_1-5 Q0 MARCO_27_209363489-18 72 -0.248882 hybrid +147_1-5 Q0 MARCO_44_608420265-1 73 -0.248993 hybrid +147_1-5 Q0 MARCO_18_1803225057-15 74 -0.249922 hybrid +147_1-5 Q0 MARCO_50_2209194864-24 75 -0.250002 hybrid +147_1-5 Q0 MARCO_53_497047460-4 76 -0.252368 hybrid +147_1-5 Q0 MARCO_24_517059080-1 77 -0.253358 hybrid +147_1-5 Q0 MARCO_27_1434420878-3 78 -0.254049 hybrid +147_1-5 Q0 MARCO_18_3756735521-60 79 -0.262069 hybrid +147_1-5 Q0 MARCO_36_1293066427-1 80 -0.266691 hybrid +147_1-5 Q0 MARCO_18_3756735521-114 81 -0.266981 hybrid +147_1-5 Q0 MARCO_44_35079726-11 82 -0.272152 hybrid +147_1-5 Q0 MARCO_50_1452263860-25 83 -0.274018 hybrid +147_1-5 Q0 MARCO_23_293632999-1 84 -0.274195 hybrid +147_1-5 Q0 MARCO_43_1012986489-6 85 -0.275387 hybrid +147_1-5 Q0 MARCO_44_609174027-4 86 -0.276316 hybrid +147_1-5 Q0 MARCO_35_1383497290-1 87 -0.277253 hybrid +147_1-5 Q0 MARCO_43_986390068-33 88 -0.279025 hybrid +147_1-5 Q0 MARCO_50_1452263860-23 89 -0.281064 hybrid +147_1-5 Q0 MARCO_10_545116164-9 90 -0.284015 hybrid +147_1-5 Q0 MARCO_43_1016345354-16 91 -0.284920 hybrid +147_1-5 Q0 MARCO_18_1803225057-45 92 -0.285828 hybrid +147_1-5 Q0 MARCO_44_609154232-5 93 -0.286856 hybrid +147_1-5 Q0 MARCO_33_740579363-2 94 -0.289766 hybrid +147_1-5 Q0 MARCO_23_1830544655-2 95 -0.290061 hybrid +147_1-5 Q0 MARCO_27_209363489-1 96 -0.290111 hybrid +147_1-5 Q0 MARCO_43_983286873-6 97 -0.290707 hybrid +147_1-5 Q0 KILT_1892894-20 98 -0.291973 hybrid +147_1-5 Q0 MARCO_18_1803225057-48 99 -0.293581 hybrid +147_1-5 Q0 MARCO_49_1323862759-9 100 -0.296694 hybrid +147_1-7 Q0 MARCO_44_610323468-1 1 0.266439 hybrid +147_1-7 Q0 MARCO_50_943289979-24 2 0.250000 hybrid +147_1-7 Q0 MARCO_14_1615499650-3 3 0.243708 hybrid +147_1-7 Q0 MARCO_00_1160843662-1 4 0.206849 hybrid +147_1-7 Q0 MARCO_27_1431003855-1 5 0.201151 hybrid +147_1-7 Q0 MARCO_44_609297930-1 6 0.157984 hybrid +147_1-7 Q0 MARCO_15_108899385-2 7 0.152953 hybrid +147_1-7 Q0 MARCO_50_1452516695-17 8 0.140873 hybrid +147_1-7 Q0 MARCO_40_175150328-1 9 0.136705 hybrid +147_1-7 Q0 MARCO_50_1176457493-32 10 0.134834 hybrid +147_1-7 Q0 MARCO_36_901434920-2 11 0.108104 hybrid +147_1-7 Q0 KILT_41677925-56 12 0.104441 hybrid +147_1-7 Q0 MARCO_31_292579249-1 13 0.092412 hybrid +147_1-7 Q0 MARCO_35_1383505365-1 14 0.074059 hybrid +147_1-7 Q0 MARCO_35_1383497290-1 15 0.067939 hybrid +147_1-7 Q0 MARCO_35_1381688892-1 16 0.064997 hybrid +147_1-7 Q0 MARCO_44_610323468-9 17 0.054922 hybrid +147_1-7 Q0 MARCO_23_1828573047-3 18 0.047912 hybrid +147_1-7 Q0 MARCO_41_115465033-1 19 0.047894 hybrid +147_1-7 Q0 MARCO_07_1580559307-12 20 0.045464 hybrid +147_1-7 Q0 MARCO_35_1383547965-1 21 0.043846 hybrid +147_1-7 Q0 MARCO_35_1383505365-2 22 0.026039 hybrid +147_1-7 Q0 MARCO_40_175150328-3 23 0.020238 hybrid +147_1-7 Q0 KILT_36484254-21 24 0.013351 hybrid +147_1-7 Q0 MARCO_15_107455358-33 25 0.004415 hybrid +147_1-7 Q0 KILT_45359871-18 26 -0.004645 hybrid +147_1-7 Q0 MARCO_35_310373996-4 27 -0.005616 hybrid +147_1-7 Q0 MARCO_44_606424403-3 28 -0.007888 hybrid +147_1-7 Q0 MARCO_51_451864789-15 29 -0.008232 hybrid +147_1-7 Q0 MARCO_16_3025547777-53 30 -0.020205 hybrid +147_1-7 Q0 MARCO_16_3025547777-55 31 -0.020205 hybrid +147_1-7 Q0 MARCO_44_610323468-8 32 -0.022733 hybrid +147_1-7 Q0 MARCO_35_1381526600-6 33 -0.024071 hybrid +147_1-7 Q0 MARCO_35_1382480184-1 34 -0.026972 hybrid +147_1-7 Q0 MARCO_44_607608337-1 35 -0.027182 hybrid +147_1-7 Q0 MARCO_27_1507935785-7 36 -0.039977 hybrid +147_1-7 Q0 MARCO_36_900179677-5 37 -0.042154 hybrid +147_1-7 Q0 MARCO_30_835825400-2 38 -0.058676 hybrid +147_1-7 Q0 KILT_55755841-17 39 -0.059938 hybrid +147_1-7 Q0 MARCO_35_1383497290-5 40 -0.063976 hybrid +147_1-7 Q0 MARCO_15_107455358-15 41 -0.069536 hybrid +147_1-7 Q0 MARCO_19_562425557-58 42 -0.072756 hybrid +147_1-7 Q0 MARCO_35_1383547965-12 43 -0.072983 hybrid +147_1-7 Q0 KILT_55755841-15 44 -0.088922 hybrid +147_1-7 Q0 MARCO_35_1382480184-2 45 -0.096870 hybrid +147_1-7 Q0 MARCO_35_310373996-5 46 -0.106031 hybrid +147_1-7 Q0 MARCO_44_609464324-4 47 -0.112668 hybrid +147_1-7 Q0 MARCO_21_950095832-3 48 -0.120385 hybrid +147_1-7 Q0 KILT_36860986-46 49 -0.121846 hybrid +147_1-7 Q0 MARCO_42_1104163557-2 50 -0.122279 hybrid +147_1-7 Q0 MARCO_27_1508444327-4 51 -0.122303 hybrid +147_1-7 Q0 MARCO_53_733432913-8 52 -0.127222 hybrid +147_1-7 Q0 MARCO_43_1018992950-1 53 -0.131362 hybrid +147_1-7 Q0 MARCO_17_1723309964-49 54 -0.136586 hybrid +147_1-7 Q0 KILT_41677925-2 55 -0.137178 hybrid +147_1-7 Q0 MARCO_36_892794213-2 56 -0.142899 hybrid +147_1-7 Q0 MARCO_51_120664146-3 57 -0.147988 hybrid +147_1-7 Q0 MARCO_27_1512947347-2 58 -0.150516 hybrid +147_1-7 Q0 MARCO_27_1431814765-11 59 -0.161261 hybrid +147_1-7 Q0 MARCO_35_1381551311-7 60 -0.167676 hybrid +147_1-7 Q0 MARCO_50_1452516695-18 61 -0.172179 hybrid +147_1-7 Q0 MARCO_44_609456213-7 62 -0.175911 hybrid +147_1-7 Q0 MARCO_27_1513521687-1 63 -0.178353 hybrid +147_1-7 Q0 MARCO_35_1383488898-1 64 -0.179066 hybrid +147_1-7 Q0 KILT_45359871-17 65 -0.184515 hybrid +147_1-7 Q0 MARCO_50_1452263860-20 66 -0.186327 hybrid +147_1-7 Q0 MARCO_18_3778517612-2 67 -0.194265 hybrid +147_1-7 Q0 MARCO_25_1426460659-2 68 -0.195756 hybrid +147_1-7 Q0 MARCO_27_1431003855-3 69 -0.196461 hybrid +147_1-7 Q0 MARCO_48_1295283403-5 70 -0.200037 hybrid +147_1-7 Q0 MARCO_39_418127773-2 71 -0.201292 hybrid +147_1-7 Q0 MARCO_42_1105109712-4 72 -0.201599 hybrid +147_1-7 Q0 MARCO_00_1161447751-1 73 -0.209110 hybrid +147_1-7 Q0 MARCO_15_107455358-6 74 -0.211575 hybrid +147_1-7 Q0 MARCO_18_1803225057-23 75 -0.213628 hybrid +147_1-7 Q0 MARCO_50_1452263860-22 76 -0.219906 hybrid +147_1-7 Q0 MARCO_35_1383639118-2 77 -0.219982 hybrid +147_1-7 Q0 MARCO_35_1381953404-15 78 -0.219996 hybrid +147_1-7 Q0 MARCO_27_1435241044-5 79 -0.220248 hybrid +147_1-7 Q0 MARCO_35_1381829109-1 80 -0.222654 hybrid +147_1-7 Q0 MARCO_27_1430688359-7 81 -0.223937 hybrid +147_1-7 Q0 MARCO_35_1382480184-6 82 -0.229538 hybrid +147_1-7 Q0 MARCO_35_1381953404-7 83 -0.229993 hybrid +147_1-7 Q0 MARCO_27_1514127644-2 84 -0.231989 hybrid +147_1-7 Q0 MARCO_35_1382327008-6 85 -0.235115 hybrid +147_1-7 Q0 MARCO_41_114394914-2 86 -0.235214 hybrid +147_1-7 Q0 MARCO_14_791867527-18 87 -0.237672 hybrid +147_1-7 Q0 MARCO_23_1830002330-6 88 -0.237863 hybrid +147_1-7 Q0 KILT_41677925-35 89 -0.238198 hybrid +147_1-7 Q0 MARCO_24_1950482772-1 90 -0.238703 hybrid +147_1-7 Q0 MARCO_18_1803225057-81 91 -0.240138 hybrid +147_1-7 Q0 MARCO_44_33070735-14 92 -0.241068 hybrid +147_1-7 Q0 MARCO_27_1510632391-8 93 -0.242954 hybrid +147_1-7 Q0 KILT_41677925-52 94 -0.243041 hybrid +147_1-7 Q0 MARCO_44_32908000-8 95 -0.245107 hybrid +147_1-7 Q0 MARCO_35_1382658056-1 96 -0.246279 hybrid +147_1-7 Q0 MARCO_27_1515665851-5 97 -0.247725 hybrid +147_1-7 Q0 MARCO_40_175150328-10 98 -0.248514 hybrid +147_1-7 Q0 MARCO_27_1512947347-7 99 -0.249286 hybrid +147_1-7 Q0 MARCO_36_900179677-8 100 -0.252758 hybrid +147_1-9 Q0 MARCO_18_3756735521-22 1 0.395259 hybrid +147_1-9 Q0 MARCO_18_3756735521-34 2 -0.006308 hybrid +147_1-9 Q0 MARCO_40_175150328-3 3 -0.010062 hybrid +147_1-9 Q0 KILT_36484254-6 4 -0.021101 hybrid +147_1-9 Q0 MARCO_43_1019176089-17 5 -0.025363 hybrid +147_1-9 Q0 MARCO_31_292579249-3 6 -0.040099 hybrid +147_1-9 Q0 MARCO_44_608064125-3 7 -0.046409 hybrid +147_1-9 Q0 KILT_36484254-25 8 -0.056208 hybrid +147_1-9 Q0 MARCO_40_175150328-5 9 -0.060703 hybrid +147_1-9 Q0 MARCO_18_3756735521-21 10 -0.066689 hybrid +147_1-9 Q0 MARCO_50_1452516695-31 11 -0.082505 hybrid +147_1-9 Q0 MARCO_15_107455358-32 12 -0.084961 hybrid +147_1-9 Q0 MARCO_14_791867527-8 13 -0.090406 hybrid +147_1-9 Q0 MARCO_07_1580559307-7 14 -0.097044 hybrid +147_1-9 Q0 MARCO_42_1104163557-2 15 -0.107465 hybrid +147_1-9 Q0 MARCO_35_1383575714-4 16 -0.126815 hybrid +147_1-9 Q0 MARCO_36_896744753-16 17 -0.134177 hybrid +147_1-9 Q0 MARCO_10_545116164-9 18 -0.139350 hybrid +147_1-9 Q0 MARCO_56_1313964447-23 19 -0.142615 hybrid +147_1-9 Q0 MARCO_14_791867527-7 20 -0.147014 hybrid +147_1-9 Q0 MARCO_10_79589072-4 21 -0.152321 hybrid +147_1-9 Q0 MARCO_43_1018992950-9 22 -0.166287 hybrid +147_1-9 Q0 MARCO_44_35079726-12 23 -0.167183 hybrid +147_1-9 Q0 MARCO_50_1515133112-2 24 -0.169494 hybrid +147_1-9 Q0 MARCO_36_888487863-6 25 -0.172494 hybrid +147_1-9 Q0 MARCO_30_835825400-2 26 -0.174606 hybrid +147_1-9 Q0 MARCO_50_1428181499-10 27 -0.183578 hybrid +147_1-9 Q0 MARCO_44_32491649-13 28 -0.190459 hybrid +147_1-9 Q0 MARCO_27_1431003855-6 29 -0.194575 hybrid +147_1-9 Q0 MARCO_44_33070735-7 30 -0.194914 hybrid +147_1-9 Q0 MARCO_18_1803225057-20 31 -0.196681 hybrid +147_1-9 Q0 MARCO_49_1323816890-5 32 -0.197772 hybrid +147_1-9 Q0 MARCO_44_33070735-3 33 -0.200195 hybrid +147_1-9 Q0 KILT_36484254-19 34 -0.209815 hybrid +147_1-9 Q0 MARCO_01_692444269-7 35 -0.220488 hybrid +147_1-9 Q0 MARCO_35_1383620100-3 36 -0.225819 hybrid +147_1-9 Q0 MARCO_16_3025547777-9 37 -0.233271 hybrid +147_1-9 Q0 MARCO_25_33800156-55 38 -0.236172 hybrid +147_1-9 Q0 MARCO_18_1803225057-26 39 -0.241284 hybrid +147_1-9 Q0 MARCO_44_33070735-16 40 -0.244326 hybrid +147_1-9 Q0 MARCO_43_51134853-4 41 -0.244731 hybrid +147_1-9 Q0 MARCO_27_209363489-8 42 -0.249467 hybrid +147_1-9 Q0 MARCO_44_32491649-7 43 -0.249815 hybrid +147_1-9 Q0 MARCO_53_496976677-4 44 -0.250000 hybrid +147_1-9 Q0 MARCO_35_1383505365-3 45 -0.251927 hybrid +147_1-9 Q0 MARCO_14_791867527-4 46 -0.251998 hybrid +147_1-9 Q0 MARCO_50_1452263860-25 47 -0.255062 hybrid +147_1-9 Q0 MARCO_25_1431566510-6 48 -0.258041 hybrid +147_1-9 Q0 MARCO_41_115413917-5 49 -0.262545 hybrid +147_1-9 Q0 MARCO_50_1452263860-10 50 -0.265814 hybrid +147_1-9 Q0 MARCO_44_35079726-3 51 -0.266868 hybrid +147_1-9 Q0 MARCO_39_421344237-5 52 -0.267333 hybrid +147_1-9 Q0 MARCO_36_932776067-11 53 -0.268613 hybrid +147_1-9 Q0 MARCO_30_835825400-1 54 -0.270432 hybrid +147_1-9 Q0 MARCO_10_79499431-4 55 -0.275830 hybrid +147_1-9 Q0 MARCO_10_79619100-2 56 -0.276860 hybrid +147_1-9 Q0 MARCO_16_3025547777-36 57 -0.277665 hybrid +147_1-9 Q0 MARCO_44_32790856-3 58 -0.282373 hybrid +147_1-9 Q0 MARCO_10_79499431-1 59 -0.284867 hybrid +147_1-9 Q0 MARCO_01_692444269-5 60 -0.288385 hybrid +147_1-9 Q0 MARCO_01_692902633-5 61 -0.289303 hybrid +147_1-9 Q0 MARCO_10_79499431-12 62 -0.291221 hybrid +147_1-9 Q0 MARCO_10_79619100-7 63 -0.291881 hybrid +147_1-9 Q0 MARCO_06_1650265034-1 64 -0.294508 hybrid +147_1-9 Q0 MARCO_24_1950643919-16 65 -0.294680 hybrid +147_1-9 Q0 MARCO_40_175150328-9 66 -0.295479 hybrid +147_1-9 Q0 MARCO_05_487400231-2 67 -0.295988 hybrid +147_1-9 Q0 MARCO_31_292579249-4 68 -0.297178 hybrid +147_1-9 Q0 MARCO_14_791867527-15 69 -0.301192 hybrid +147_1-9 Q0 MARCO_44_35079726-8 70 -0.303520 hybrid +147_1-9 Q0 MARCO_06_1650149790-2 71 -0.303600 hybrid +147_1-9 Q0 MARCO_24_1556249239-7 72 -0.304130 hybrid +147_1-9 Q0 MARCO_54_727875745-2 73 -0.308305 hybrid +147_1-9 Q0 MARCO_44_32772068-3 74 -0.309424 hybrid +147_1-9 Q0 MARCO_44_33070735-12 75 -0.311166 hybrid +147_1-9 Q0 MARCO_20_67348820-5 76 -0.312106 hybrid +147_1-9 Q0 MARCO_44_32772068-9 77 -0.317714 hybrid +147_1-9 Q0 MARCO_44_32790856-9 78 -0.317714 hybrid +147_1-9 Q0 MARCO_50_1601742922-13 79 -0.323329 hybrid +147_1-9 Q0 MARCO_16_3025547777-8 80 -0.324650 hybrid +147_1-9 Q0 MARCO_14_789673094-129 81 -0.328037 hybrid +147_1-9 Q0 MARCO_39_909160896-2 82 -0.328675 hybrid +147_1-9 Q0 MARCO_27_1438141246-1 83 -0.329220 hybrid +147_1-9 Q0 MARCO_00_1161106414-3 84 -0.329877 hybrid +147_1-9 Q0 MARCO_14_789673094-127 85 -0.330392 hybrid +147_1-9 Q0 MARCO_14_791867527-5 86 -0.331113 hybrid +147_1-9 Q0 MARCO_43_1018992950-12 87 -0.332464 hybrid +147_1-9 Q0 MARCO_42_1104163557-3 88 -0.333219 hybrid +147_1-9 Q0 MARCO_18_1803225057-22 89 -0.334258 hybrid +147_1-9 Q0 MARCO_42_1103878703-3 90 -0.336875 hybrid +147_1-9 Q0 MARCO_44_32754161-8 91 -0.337492 hybrid +147_1-9 Q0 MARCO_33_740579363-2 92 -0.338599 hybrid +147_1-9 Q0 MARCO_18_1803225057-14 93 -0.339031 hybrid +147_1-9 Q0 MARCO_27_1434420878-3 94 -0.339808 hybrid +147_1-9 Q0 MARCO_06_1650265034-2 95 -0.342765 hybrid +147_1-9 Q0 MARCO_00_253715418-18 96 -0.345345 hybrid +147_1-9 Q0 MARCO_10_79499431-6 97 -0.346316 hybrid +147_1-9 Q0 MARCO_54_1565188623-5 98 -0.346961 hybrid +147_1-9 Q0 MARCO_10_79589072-2 99 -0.346982 hybrid +147_1-9 Q0 MARCO_01_692444269-8 100 -0.347395 hybrid +147_2-1 Q0 MARCO_00_1161498748-4 1 0.250000 hybrid +147_2-1 Q0 MARCO_19_475158483-3 2 0.210735 hybrid +147_2-1 Q0 MARCO_14_785661863-1 3 0.204871 hybrid +147_2-1 Q0 MARCO_54_1565053788-4 4 0.155487 hybrid +147_2-1 Q0 MARCO_00_1161868671-4 5 0.135435 hybrid +147_2-1 Q0 MARCO_54_1564838481-2 6 0.094355 hybrid +147_2-1 Q0 MARCO_28_428427404-13 7 0.069159 hybrid +147_2-1 Q0 MARCO_00_1161868671-3 8 0.046011 hybrid +147_2-1 Q0 MARCO_44_33070735-2 9 0.028036 hybrid +147_2-1 Q0 MARCO_15_107455358-1 10 0.023643 hybrid +147_2-1 Q0 MARCO_06_694770796-1 11 -0.002583 hybrid +147_2-1 Q0 MARCO_50_2157873319-12 12 -0.004147 hybrid +147_2-1 Q0 MARCO_19_2041249079-28 13 -0.013181 hybrid +147_2-1 Q0 MARCO_19_980814039-50 14 -0.021638 hybrid +147_2-1 Q0 MARCO_16_4110415223-11 15 -0.027844 hybrid +147_2-1 Q0 MARCO_17_1723309964-120 16 -0.029702 hybrid +147_2-1 Q0 MARCO_54_1564838481-6 17 -0.034530 hybrid +147_2-1 Q0 MARCO_00_1161555318-1 18 -0.037272 hybrid +147_2-1 Q0 MARCO_36_900179677-3 19 -0.058490 hybrid +147_2-1 Q0 MARCO_37_723384658-3 20 -0.079381 hybrid +147_2-1 Q0 KILT_51208956-1 21 -0.079713 hybrid +147_2-1 Q0 MARCO_40_1583170851-42 22 -0.091668 hybrid +147_2-1 Q0 MARCO_40_175150328-8 23 -0.092306 hybrid +147_2-1 Q0 MARCO_07_258203158-7 24 -0.094434 hybrid +147_2-1 Q0 KILT_45359871-25 25 -0.100937 hybrid +147_2-1 Q0 MARCO_44_610097902-2 26 -0.119540 hybrid +147_2-1 Q0 MARCO_00_1161509318-2 27 -0.125605 hybrid +147_2-1 Q0 MARCO_14_760951458-1 28 -0.131054 hybrid +147_2-1 Q0 MARCO_36_888487863-6 29 -0.131561 hybrid +147_2-1 Q0 MARCO_31_292399071-1 30 -0.137013 hybrid +147_2-1 Q0 MARCO_16_1907122391-26 31 -0.139592 hybrid +147_2-1 Q0 MARCO_44_33070735-17 32 -0.145657 hybrid +147_2-1 Q0 MARCO_15_107455358-15 33 -0.152795 hybrid +147_2-1 Q0 KILT_57996832-2 34 -0.154402 hybrid +147_2-1 Q0 MARCO_35_310373996-2 35 -0.154744 hybrid +147_2-1 Q0 MARCO_37_1185340221-2 36 -0.156343 hybrid +147_2-1 Q0 MARCO_17_1679236136-2 37 -0.157133 hybrid +147_2-1 Q0 MARCO_17_1723309964-30 38 -0.160511 hybrid +147_2-1 Q0 KILT_41677925-58 39 -0.173387 hybrid +147_2-1 Q0 MARCO_19_2041249079-16 40 -0.179915 hybrid +147_2-1 Q0 MARCO_31_292203421-5 41 -0.185974 hybrid +147_2-1 Q0 MARCO_50_2378586507-2 42 -0.186214 hybrid +147_2-1 Q0 MARCO_35_313631277-2 43 -0.190508 hybrid +147_2-1 Q0 KILT_47069739-30 44 -0.213791 hybrid +147_2-1 Q0 MARCO_44_32754161-8 45 -0.217012 hybrid +147_2-1 Q0 MARCO_50_1506711576-37 46 -0.217404 hybrid +147_2-1 Q0 MARCO_18_2865651939-18 47 -0.217660 hybrid +147_2-1 Q0 MARCO_27_1435184494-4 48 -0.220330 hybrid +147_2-1 Q0 MARCO_19_475131147-13 49 -0.220940 hybrid +147_2-1 Q0 MARCO_18_1803225057-113 50 -0.225016 hybrid +147_2-1 Q0 MARCO_19_475131147-1 51 -0.226995 hybrid +147_2-1 Q0 MARCO_11_756756978-1 52 -0.227136 hybrid +147_2-1 Q0 MARCO_00_1161106414-11 53 -0.227828 hybrid +147_2-1 Q0 MARCO_19_475131147-20 54 -0.231715 hybrid +147_2-1 Q0 MARCO_19_475131147-22 55 -0.231715 hybrid +147_2-1 Q0 MARCO_38_1501884524-2 56 -0.233337 hybrid +147_2-1 Q0 KILT_47069739-32 57 -0.240333 hybrid +147_2-1 Q0 MARCO_51_320444747-1 58 -0.250000 hybrid +147_2-1 Q0 MARCO_44_610557674-4 59 -0.250741 hybrid +147_2-1 Q0 MARCO_18_3823296338-37 60 -0.251368 hybrid +147_2-1 Q0 MARCO_16_3038433296-30 61 -0.254267 hybrid +147_2-1 Q0 MARCO_18_1803225057-15 62 -0.254539 hybrid +147_2-1 Q0 MARCO_18_1803225057-26 63 -0.255068 hybrid +147_2-1 Q0 MARCO_54_1565053788-2 64 -0.256146 hybrid +147_2-1 Q0 MARCO_07_257920950-1 65 -0.258713 hybrid +147_2-1 Q0 MARCO_10_545116164-5 66 -0.258985 hybrid +147_2-1 Q0 MARCO_30_562455563-1 67 -0.261616 hybrid +147_2-1 Q0 MARCO_36_901434920-2 68 -0.263110 hybrid +147_2-1 Q0 MARCO_27_1431128200-1 69 -0.263230 hybrid +147_2-1 Q0 MARCO_59_770323804-15 70 -0.265557 hybrid +147_2-1 Q0 MARCO_15_107455358-32 71 -0.267224 hybrid +147_2-1 Q0 MARCO_54_1564838481-1 72 -0.268254 hybrid +147_2-1 Q0 MARCO_16_4110415223-2 73 -0.271513 hybrid +147_2-1 Q0 MARCO_16_4110415223-146 74 -0.273294 hybrid +147_2-1 Q0 MARCO_53_732244920-3 75 -0.274477 hybrid +147_2-1 Q0 MARCO_23_1830557751-7 76 -0.276008 hybrid +147_2-1 Q0 MARCO_54_1564838481-5 77 -0.277289 hybrid +147_2-1 Q0 MARCO_59_769764572-3 78 -0.278667 hybrid +147_2-1 Q0 MARCO_16_2990178834-73 79 -0.279032 hybrid +147_2-1 Q0 MARCO_15_107455358-33 80 -0.279986 hybrid +147_2-1 Q0 MARCO_21_1454875428-1 81 -0.284241 hybrid +147_2-1 Q0 MARCO_01_694088226-9 82 -0.285015 hybrid +147_2-1 Q0 MARCO_30_562930811-1 83 -0.285697 hybrid +147_2-1 Q0 MARCO_30_562299449-1 84 -0.286488 hybrid +147_2-1 Q0 MARCO_17_2532490713-28 85 -0.287407 hybrid +147_2-1 Q0 MARCO_27_1513521687-4 86 -0.290650 hybrid +147_2-1 Q0 MARCO_17_1934688057-57 87 -0.293913 hybrid +147_2-1 Q0 MARCO_36_900179677-4 88 -0.294927 hybrid +147_2-1 Q0 MARCO_59_771485427-5 89 -0.296785 hybrid +147_2-1 Q0 MARCO_41_121006452-3 90 -0.298436 hybrid +147_2-1 Q0 MARCO_35_1383547965-11 91 -0.299455 hybrid +147_2-1 Q0 MARCO_50_1506509387-9 92 -0.299466 hybrid +147_2-1 Q0 MARCO_07_618172460-2 93 -0.301466 hybrid +147_2-1 Q0 MARCO_16_4112226995-4 94 -0.302125 hybrid +147_2-1 Q0 MARCO_14_760951458-2 95 -0.303852 hybrid +147_2-1 Q0 MARCO_54_1565053788-1 96 -0.304839 hybrid +147_2-1 Q0 MARCO_46_1513547835-3 97 -0.308626 hybrid +147_2-1 Q0 MARCO_01_693236628-7 98 -0.311367 hybrid +147_2-1 Q0 MARCO_35_1381763178-3 99 -0.314680 hybrid +147_2-1 Q0 MARCO_23_1830567156-7 100 -0.317219 hybrid +147_2-3 Q0 KILT_36658495-2 1 0.250000 hybrid +147_2-3 Q0 MARCO_10_551602548-4 2 0.235881 hybrid +147_2-3 Q0 KILT_45502864-2 3 0.207696 hybrid +147_2-3 Q0 KILT_1181663-12 4 0.156240 hybrid +147_2-3 Q0 KILT_6751525-2 5 0.155290 hybrid +147_2-3 Q0 KILT_53971068-2 6 0.149573 hybrid +147_2-3 Q0 MARCO_35_1381811664-1 7 0.110230 hybrid +147_2-3 Q0 MARCO_19_160112057-3 8 0.097980 hybrid +147_2-3 Q0 MARCO_17_3094322423-19 9 0.071084 hybrid +147_2-3 Q0 MARCO_29_660988135-7 10 0.066418 hybrid +147_2-3 Q0 MARCO_10_552229547-39 11 0.031522 hybrid +147_2-3 Q0 MARCO_20_658999981-9 12 0.028134 hybrid +147_2-3 Q0 MARCO_10_551602548-12 13 0.006346 hybrid +147_2-3 Q0 MARCO_19_581326099-6 14 0.002977 hybrid +147_2-3 Q0 MARCO_28_555051138-2 15 -0.008126 hybrid +147_2-3 Q0 MARCO_10_551602548-9 16 -0.025693 hybrid +147_2-3 Q0 MARCO_16_4111528308-2 17 -0.032715 hybrid +147_2-3 Q0 MARCO_12_1866611257-9 18 -0.037044 hybrid +147_2-3 Q0 MARCO_17_3094322423-9 19 -0.041153 hybrid +147_2-3 Q0 MARCO_18_2727569533-2 20 -0.042644 hybrid +147_2-3 Q0 KILT_1607774-3 21 -0.067266 hybrid +147_2-3 Q0 MARCO_59_360762919-2 22 -0.073085 hybrid +147_2-3 Q0 MARCO_40_1277533248-5 23 -0.081030 hybrid +147_2-3 Q0 MARCO_19_160112057-4 24 -0.086025 hybrid +147_2-3 Q0 MARCO_18_475356665-5 25 -0.095796 hybrid +147_2-3 Q0 MARCO_59_360762919-1 26 -0.097012 hybrid +147_2-3 Q0 MARCO_16_4110877543-15 27 -0.098247 hybrid +147_2-3 Q0 MARCO_00_1161183399-4 28 -0.103839 hybrid +147_2-3 Q0 MARCO_10_551602548-5 29 -0.112925 hybrid +147_2-3 Q0 MARCO_19_2041249079-45 30 -0.118348 hybrid +147_2-3 Q0 MARCO_20_658999981-12 31 -0.119630 hybrid +147_2-3 Q0 KILT_52111558-7 32 -0.126335 hybrid +147_2-3 Q0 MARCO_50_1607961702-27 33 -0.139974 hybrid +147_2-3 Q0 MARCO_12_1866611257-7 34 -0.155816 hybrid +147_2-3 Q0 MARCO_09_1194722670-1 35 -0.156082 hybrid +147_2-3 Q0 KILT_608684-5 36 -0.157745 hybrid +147_2-3 Q0 MARCO_33_742522995-3 37 -0.163761 hybrid +147_2-3 Q0 MARCO_04_1290664752-16 38 -0.167260 hybrid +147_2-3 Q0 KILT_2122904-1 39 -0.170606 hybrid +147_2-3 Q0 MARCO_10_551602548-7 40 -0.190059 hybrid +147_2-3 Q0 MARCO_59_403208976-3 41 -0.190893 hybrid +147_2-3 Q0 MARCO_39_1365906880-6 42 -0.192552 hybrid +147_2-3 Q0 MARCO_34_1069196881-2 43 -0.192999 hybrid +147_2-3 Q0 MARCO_10_552229547-22 44 -0.193526 hybrid +147_2-3 Q0 MARCO_18_3819725636-13 45 -0.207519 hybrid +147_2-3 Q0 MARCO_20_658999981-14 46 -0.207728 hybrid +147_2-3 Q0 MARCO_50_1607961702-12 47 -0.209471 hybrid +147_2-3 Q0 MARCO_18_3251149523-3 48 -0.211422 hybrid +147_2-3 Q0 MARCO_14_760787026-1 49 -0.215078 hybrid +147_2-3 Q0 MARCO_17_3094322423-11 50 -0.215226 hybrid +147_2-3 Q0 MARCO_46_706800503-4 51 -0.218748 hybrid +147_2-3 Q0 MARCO_19_557638477-31 52 -0.219126 hybrid +147_2-3 Q0 MARCO_16_110104570-15 53 -0.223846 hybrid +147_2-3 Q0 KILT_1163698-2 54 -0.225561 hybrid +147_2-3 Q0 MARCO_24_1132743974-3 55 -0.226256 hybrid +147_2-3 Q0 MARCO_57_1273305380-5 56 -0.226520 hybrid +147_2-3 Q0 MARCO_17_2893124013-35 57 -0.227289 hybrid +147_2-3 Q0 MARCO_13_1158202425-1 58 -0.232531 hybrid +147_2-3 Q0 KILT_50439417-4 59 -0.233244 hybrid +147_2-3 Q0 MARCO_18_3823296338-8 60 -0.235019 hybrid +147_2-3 Q0 MARCO_18_469691007-3 61 -0.236846 hybrid +147_2-3 Q0 MARCO_14_1615338299-3 62 -0.244152 hybrid +147_2-3 Q0 MARCO_23_485983512-8 63 -0.244935 hybrid +147_2-3 Q0 MARCO_20_658999981-5 64 -0.247293 hybrid +147_2-3 Q0 KILT_41219344-2 65 -0.250000 hybrid +147_2-3 Q0 KILT_44542304-48 66 -0.251920 hybrid +147_2-3 Q0 MARCO_14_791770756-8 67 -0.258373 hybrid +147_2-3 Q0 KILT_898609-12 68 -0.260903 hybrid +147_2-3 Q0 KILT_1843273-4 69 -0.263475 hybrid +147_2-3 Q0 MARCO_14_791736021-10 70 -0.263564 hybrid +147_2-3 Q0 MARCO_17_2895155589-17 71 -0.263746 hybrid +147_2-3 Q0 MARCO_14_791752182-10 72 -0.267464 hybrid +147_2-3 Q0 KILT_1181663-9 73 -0.272506 hybrid +147_2-3 Q0 MARCO_14_760787026-11 74 -0.273153 hybrid +147_2-3 Q0 MARCO_13_1159988156-6 75 -0.273438 hybrid +147_2-3 Q0 MARCO_17_3094322423-20 76 -0.276490 hybrid +147_2-3 Q0 KILT_619539-3 77 -0.279220 hybrid +147_2-3 Q0 MARCO_28_555028281-1 78 -0.280157 hybrid +147_2-3 Q0 MARCO_50_1446542803-24 79 -0.282426 hybrid +147_2-3 Q0 MARCO_10_551602548-25 80 -0.285133 hybrid +147_2-3 Q0 KILT_39293265-6 81 -0.285264 hybrid +147_2-3 Q0 MARCO_10_552855545-13 82 -0.287041 hybrid +147_2-3 Q0 MARCO_13_1159988156-8 83 -0.289732 hybrid +147_2-3 Q0 MARCO_19_160112057-5 84 -0.290608 hybrid +147_2-3 Q0 MARCO_35_1382816485-7 85 -0.291125 hybrid +147_2-3 Q0 MARCO_01_692902633-5 86 -0.291694 hybrid +147_2-3 Q0 MARCO_32_1773320149-3 87 -0.293972 hybrid +147_2-3 Q0 KILT_12210793-1 88 -0.295589 hybrid +147_2-3 Q0 MARCO_41_1205142198-10 89 -0.296530 hybrid +147_2-3 Q0 MARCO_00_570971400-5 90 -0.298203 hybrid +147_2-3 Q0 MARCO_44_1926845274-10 91 -0.300151 hybrid +147_2-3 Q0 MARCO_18_469691007-4 92 -0.302816 hybrid +147_2-3 Q0 MARCO_17_4817097038-7 93 -0.303727 hybrid +147_2-3 Q0 MARCO_44_1926845274-8 94 -0.304680 hybrid +147_2-3 Q0 MARCO_20_733115101-6 95 -0.306059 hybrid +147_2-3 Q0 MARCO_16_4110877543-31 96 -0.310481 hybrid +147_2-3 Q0 KILT_16173936-6 97 -0.311970 hybrid +147_2-3 Q0 MARCO_41_115845881-6 98 -0.316879 hybrid +147_2-3 Q0 KILT_4706922-10 99 -0.316897 hybrid +147_2-3 Q0 MARCO_14_1615313039-5 100 -0.318864 hybrid +147_2-5 Q0 MARCO_07_258203158-7 1 0.294402 hybrid +147_2-5 Q0 MARCO_16_4110415223-7 2 0.255746 hybrid +147_2-5 Q0 MARCO_24_818625-7 3 0.068063 hybrid +147_2-5 Q0 MARCO_01_822270056-8 4 0.049798 hybrid +147_2-5 Q0 MARCO_06_694770796-1 5 0.009467 hybrid +147_2-5 Q0 MARCO_44_32790856-7 6 -0.009517 hybrid +147_2-5 Q0 MARCO_44_32772068-7 7 -0.009528 hybrid +147_2-5 Q0 MARCO_46_629689633-1 8 -0.016769 hybrid +147_2-5 Q0 MARCO_27_1431814765-11 9 -0.032775 hybrid +147_2-5 Q0 KILT_42681558-8 10 -0.040514 hybrid +147_2-5 Q0 MARCO_44_610674293-1 11 -0.045214 hybrid +147_2-5 Q0 MARCO_35_1383547965-11 12 -0.046222 hybrid +147_2-5 Q0 MARCO_23_1085604106-1 13 -0.050540 hybrid +147_2-5 Q0 MARCO_46_1471532707-4 14 -0.069314 hybrid +147_2-5 Q0 MARCO_44_33070735-17 15 -0.070958 hybrid +147_2-5 Q0 MARCO_31_292399071-1 16 -0.071013 hybrid +147_2-5 Q0 MARCO_17_4189131090-22 17 -0.074274 hybrid +147_2-5 Q0 MARCO_44_33070735-2 18 -0.074954 hybrid +147_2-5 Q0 MARCO_14_785661863-1 19 -0.076090 hybrid +147_2-5 Q0 MARCO_44_35079726-8 20 -0.084635 hybrid +147_2-5 Q0 MARCO_16_1901227596-7 21 -0.093242 hybrid +147_2-5 Q0 KILT_45079755-17 22 -0.116283 hybrid +147_2-5 Q0 MARCO_00_1161555318-1 23 -0.117988 hybrid +147_2-5 Q0 MARCO_05_316414893-5 24 -0.119522 hybrid +147_2-5 Q0 MARCO_12_1866611257-9 25 -0.128651 hybrid +147_2-5 Q0 KILT_54114309-8 26 -0.132864 hybrid +147_2-5 Q0 MARCO_36_888487863-6 27 -0.135710 hybrid +147_2-5 Q0 MARCO_50_1184598166-17 28 -0.140299 hybrid +147_2-5 Q0 MARCO_36_900179677-3 29 -0.142929 hybrid +147_2-5 Q0 MARCO_15_107455358-32 30 -0.149888 hybrid +147_2-5 Q0 MARCO_35_1383547965-1 31 -0.159776 hybrid +147_2-5 Q0 MARCO_17_2532490713-28 32 -0.161254 hybrid +147_2-5 Q0 MARCO_44_33187901-4 33 -0.169498 hybrid +147_2-5 Q0 MARCO_44_33070735-10 34 -0.171435 hybrid +147_2-5 Q0 KILT_45359871-39 35 -0.173052 hybrid +147_2-5 Q0 MARCO_18_2158270291-19 36 -0.184993 hybrid +147_2-5 Q0 MARCO_16_1907122391-26 37 -0.191465 hybrid +147_2-5 Q0 MARCO_35_1381763178-3 38 -0.215299 hybrid +147_2-5 Q0 MARCO_00_1161518643-3 39 -0.219008 hybrid +147_2-5 Q0 MARCO_54_1564550144-1 40 -0.221616 hybrid +147_2-5 Q0 MARCO_25_1033618547-4 41 -0.230900 hybrid +147_2-5 Q0 MARCO_05_316414893-4 42 -0.231825 hybrid +147_2-5 Q0 MARCO_01_694362831-8 43 -0.232755 hybrid +147_2-5 Q0 MARCO_15_108217760-1 44 -0.240456 hybrid +147_2-5 Q0 MARCO_53_733051109-6 45 -0.242199 hybrid +147_2-5 Q0 MARCO_31_292203421-7 46 -0.243141 hybrid +147_2-5 Q0 KILT_47069739-30 47 -0.244469 hybrid +147_2-5 Q0 MARCO_04_1015710436-2 48 -0.250000 hybrid +147_2-5 Q0 MARCO_57_1406582835-2 49 -0.252619 hybrid +147_2-5 Q0 MARCO_44_608064125-3 50 -0.256865 hybrid +147_2-5 Q0 MARCO_43_1275081467-1 51 -0.259528 hybrid +147_2-5 Q0 MARCO_35_1381811664-1 52 -0.264140 hybrid +147_2-5 Q0 MARCO_23_290279270-8 53 -0.269006 hybrid +147_2-5 Q0 KILT_56214450-11 54 -0.269919 hybrid +147_2-5 Q0 MARCO_10_552412371-2 55 -0.271525 hybrid +147_2-5 Q0 MARCO_30_1719750339-1 56 -0.273551 hybrid +147_2-5 Q0 MARCO_17_686505820-2 57 -0.274514 hybrid +147_2-5 Q0 MARCO_18_1803225057-26 58 -0.274520 hybrid +147_2-5 Q0 MARCO_00_1161183399-4 59 -0.281623 hybrid +147_2-5 Q0 MARCO_00_1161868671-5 60 -0.282654 hybrid +147_2-5 Q0 MARCO_16_1901227596-11 61 -0.283179 hybrid +147_2-5 Q0 MARCO_23_1779943980-7 62 -0.284140 hybrid +147_2-5 Q0 MARCO_44_35079726-6 63 -0.288311 hybrid +147_2-5 Q0 MARCO_44_608618583-3 64 -0.289341 hybrid +147_2-5 Q0 MARCO_10_545116164-10 65 -0.290116 hybrid +147_2-5 Q0 KILT_51906520-2 66 -0.291417 hybrid +147_2-5 Q0 KILT_379018-38 67 -0.292402 hybrid +147_2-5 Q0 MARCO_44_35079726-13 68 -0.295358 hybrid +147_2-5 Q0 MARCO_27_1434420878-3 69 -0.296621 hybrid +147_2-5 Q0 MARCO_43_1240223478-9 70 -0.302035 hybrid +147_2-5 Q0 MARCO_41_115465033-8 71 -0.303840 hybrid +147_2-5 Q0 MARCO_17_4188093557-2 72 -0.307516 hybrid +147_2-5 Q0 MARCO_18_4414483041-1 73 -0.308746 hybrid +147_2-5 Q0 MARCO_40_175150328-8 74 -0.311137 hybrid +147_2-5 Q0 MARCO_54_1564838481-2 75 -0.314763 hybrid +147_2-5 Q0 MARCO_41_115845881-8 76 -0.315333 hybrid +147_2-5 Q0 MARCO_07_1580559307-7 77 -0.315588 hybrid +147_2-5 Q0 MARCO_27_1502096454-1 78 -0.316785 hybrid +147_2-5 Q0 MARCO_18_1803225057-15 79 -0.317016 hybrid +147_2-5 Q0 MARCO_27_209363489-18 80 -0.319923 hybrid +147_2-5 Q0 KILT_898937-3 81 -0.323444 hybrid +147_2-5 Q0 MARCO_20_652500954-3 82 -0.326228 hybrid +147_2-5 Q0 MARCO_23_244603153-5 83 -0.326882 hybrid +147_2-5 Q0 MARCO_23_1813079667-16 84 -0.330275 hybrid +147_2-5 Q0 MARCO_44_610655812-15 85 -0.338386 hybrid +147_2-5 Q0 MARCO_15_107130945-4 86 -0.340900 hybrid +147_2-5 Q0 MARCO_09_576029491-2 87 -0.342032 hybrid +147_2-5 Q0 MARCO_43_1240223478-7 88 -0.343164 hybrid +147_2-5 Q0 MARCO_36_418245519-21 89 -0.345624 hybrid +147_2-5 Q0 MARCO_54_1479573805-4 90 -0.345910 hybrid +147_2-5 Q0 MARCO_19_542516438-1 91 -0.346151 hybrid +147_2-5 Q0 MARCO_15_107455358-33 92 -0.346198 hybrid +147_2-5 Q0 MARCO_00_1161498748-4 93 -0.346635 hybrid +147_2-5 Q0 MARCO_35_1381688892-1 94 -0.347861 hybrid +147_2-5 Q0 MARCO_44_33070735-12 95 -0.349077 hybrid +147_2-5 Q0 MARCO_54_1564639808-3 96 -0.350227 hybrid +147_2-5 Q0 MARCO_44_200355596-5 97 -0.350786 hybrid +147_2-5 Q0 KILT_46536356-5 98 -0.350937 hybrid +147_2-5 Q0 MARCO_14_308518092-2 99 -0.352022 hybrid +147_2-5 Q0 MARCO_51_451864789-6 100 -0.352166 hybrid +148_1-1 Q0 MARCO_00_760279123-6 1 0.250002 hybrid +148_1-1 Q0 MARCO_04_957171423-7 2 0.088900 hybrid +148_1-1 Q0 MARCO_35_983821953-4 3 0.077451 hybrid +148_1-1 Q0 MARCO_00_760291156-95 4 0.059355 hybrid +148_1-1 Q0 MARCO_50_1510921893-19 5 0.028588 hybrid +148_1-1 Q0 MARCO_00_760286197-4 6 0.026858 hybrid +148_1-1 Q0 MARCO_00_760400213-6 7 -0.012197 hybrid +148_1-1 Q0 MARCO_54_359960603-5 8 -0.028078 hybrid +148_1-1 Q0 MARCO_46_705334403-11 9 -0.056140 hybrid +148_1-1 Q0 MARCO_04_957281288-7 10 -0.065936 hybrid +148_1-1 Q0 MARCO_46_705334403-10 11 -0.074842 hybrid +148_1-1 Q0 MARCO_02_361642399-20 12 -0.140953 hybrid +148_1-1 Q0 MARCO_40_452049579-4 13 -0.146037 hybrid +148_1-1 Q0 MARCO_28_329979304-2 14 -0.166675 hybrid +148_1-1 Q0 MARCO_28_329941343-2 15 -0.166804 hybrid +148_1-1 Q0 MARCO_32_146844336-8 16 -0.171707 hybrid +148_1-1 Q0 MARCO_46_705334403-6 17 -0.176740 hybrid +148_1-1 Q0 MARCO_46_705334403-7 18 -0.176761 hybrid +148_1-1 Q0 MARCO_40_452377363-3 19 -0.200926 hybrid +148_1-1 Q0 MARCO_00_760443343-4 20 -0.204165 hybrid +148_1-1 Q0 MARCO_35_1137881726-5 21 -0.213026 hybrid +148_1-1 Q0 MARCO_00_760438783-4 22 -0.215817 hybrid +148_1-1 Q0 MARCO_50_1187379621-18 23 -0.217645 hybrid +148_1-1 Q0 MARCO_41_2032961341-3 24 -0.221233 hybrid +148_1-1 Q0 MARCO_47_288459855-2 25 -0.223366 hybrid +148_1-1 Q0 MARCO_40_451879306-4 26 -0.227857 hybrid +148_1-1 Q0 MARCO_40_822716980-4 27 -0.230545 hybrid +148_1-1 Q0 MARCO_50_1410739461-18 28 -0.232279 hybrid +148_1-1 Q0 MARCO_49_224679412-19 29 -0.238937 hybrid +148_1-1 Q0 MARCO_28_330041165-2 30 -0.244524 hybrid +148_1-1 Q0 MARCO_29_1689449011-4 31 -0.249166 hybrid +148_1-1 Q0 MARCO_42_1882453792-1 32 -0.249998 hybrid +148_1-1 Q0 MARCO_54_363553726-4 33 -0.263700 hybrid +148_1-1 Q0 MARCO_52_1001076716-1 34 -0.277651 hybrid +148_1-1 Q0 MARCO_35_984199586-6 35 -0.280316 hybrid +148_1-1 Q0 MARCO_02_361642399-49 36 -0.281253 hybrid +148_1-1 Q0 MARCO_50_1187379621-19 37 -0.285899 hybrid +148_1-1 Q0 MARCO_03_1679934199-3 38 -0.288311 hybrid +148_1-1 Q0 MARCO_28_329921102-2 39 -0.290626 hybrid +148_1-1 Q0 MARCO_40_452055797-3 40 -0.303435 hybrid +148_1-1 Q0 MARCO_28_329928655-2 41 -0.304369 hybrid +148_1-1 Q0 MARCO_50_1450911385-14 42 -0.315621 hybrid +148_1-1 Q0 MARCO_50_1187209904-12 43 -0.315795 hybrid +148_1-1 Q0 MARCO_28_451602786-1 44 -0.317376 hybrid +148_1-1 Q0 MARCO_03_1689325357-2 45 -0.324103 hybrid +148_1-1 Q0 MARCO_50_938168189-47 46 -0.324563 hybrid +148_1-1 Q0 MARCO_00_721417266-47 47 -0.324641 hybrid +148_1-1 Q0 MARCO_57_1352949210-9 48 -0.324722 hybrid +148_1-1 Q0 MARCO_40_452110915-5 49 -0.326778 hybrid +148_1-1 Q0 MARCO_40_452143213-3 50 -0.327695 hybrid +148_1-1 Q0 MARCO_46_705334403-4 51 -0.332288 hybrid +148_1-1 Q0 MARCO_04_957171423-8 52 -0.332413 hybrid +148_1-1 Q0 MARCO_25_528818716-6 53 -0.333811 hybrid +148_1-1 Q0 MARCO_46_705334403-2 54 -0.335024 hybrid +148_1-1 Q0 MARCO_19_2295949404-14 55 -0.338720 hybrid +148_1-1 Q0 MARCO_28_339555653-6 56 -0.338994 hybrid +148_1-1 Q0 MARCO_28_330028249-2 57 -0.340095 hybrid +148_1-1 Q0 MARCO_35_1136386311-2 58 -0.342771 hybrid +148_1-1 Q0 MARCO_40_821541759-3 59 -0.343407 hybrid +148_1-1 Q0 MARCO_28_451781132-1 60 -0.344953 hybrid +148_1-1 Q0 MARCO_12_1727857020-9 61 -0.345343 hybrid +148_1-1 Q0 MARCO_01_958870689-10 62 -0.345704 hybrid +148_1-1 Q0 MARCO_00_760476630-6 63 -0.348461 hybrid +148_1-1 Q0 MARCO_54_359960603-6 64 -0.352711 hybrid +148_1-1 Q0 MARCO_00_760260163-4 65 -0.360019 hybrid +148_1-1 Q0 MARCO_28_329905786-2 66 -0.363163 hybrid +148_1-1 Q0 MARCO_54_1525994011-3 67 -0.364518 hybrid +148_1-1 Q0 MARCO_50_1186856656-19 68 -0.365439 hybrid +148_1-1 Q0 MARCO_29_1689873647-6 69 -0.370841 hybrid +148_1-1 Q0 MARCO_30_822243174-9 70 -0.371129 hybrid +148_1-1 Q0 MARCO_47_978858019-13 71 -0.371396 hybrid +148_1-1 Q0 MARCO_06_540798245-3 72 -0.371766 hybrid +148_1-1 Q0 MARCO_04_957171423-4 73 -0.372910 hybrid +148_1-1 Q0 MARCO_28_330048811-2 74 -0.373620 hybrid +148_1-1 Q0 MARCO_46_772110075-3 75 -0.375151 hybrid +148_1-1 Q0 MARCO_34_1144415398-10 76 -0.376003 hybrid +148_1-1 Q0 MARCO_03_961465353-5 77 -0.376957 hybrid +148_1-1 Q0 MARCO_22_1643560449-3 78 -0.377199 hybrid +148_1-1 Q0 MARCO_03_1032124989-1 79 -0.381822 hybrid +148_1-1 Q0 MARCO_59_533246010-7 80 -0.382184 hybrid +148_1-1 Q0 MARCO_22_1643560449-10 81 -0.384889 hybrid +148_1-1 Q0 MARCO_41_699357295-8 82 -0.385021 hybrid +148_1-1 Q0 MARCO_37_1249782536-2 83 -0.385466 hybrid +148_1-1 Q0 MARCO_35_982005027-2 84 -0.385496 hybrid +148_1-1 Q0 MARCO_56_824979844-3 85 -0.386408 hybrid +148_1-1 Q0 MARCO_56_459502743-4 86 -0.387423 hybrid +148_1-1 Q0 MARCO_50_2753871987-6 87 -0.389918 hybrid +148_1-1 Q0 MARCO_36_838622581-3 88 -0.390997 hybrid +148_1-1 Q0 MARCO_45_1578354847-2 89 -0.391105 hybrid +148_1-1 Q0 MARCO_24_1131796398-9 90 -0.391122 hybrid +148_1-1 Q0 MARCO_50_2753937838-2 91 -0.391539 hybrid +148_1-1 Q0 MARCO_42_1882453792-2 92 -0.392017 hybrid +148_1-1 Q0 MARCO_59_577552856-9 93 -0.392412 hybrid +148_1-1 Q0 MARCO_40_822716980-5 94 -0.392606 hybrid +148_1-1 Q0 MARCO_56_459511186-7 95 -0.393685 hybrid +148_1-1 Q0 MARCO_56_314743633-10 96 -0.393862 hybrid +148_1-1 Q0 MARCO_03_1686114512-10 97 -0.394021 hybrid +148_1-1 Q0 MARCO_03_24067282-7 98 -0.395706 hybrid +148_1-1 Q0 MARCO_35_984169621-11 99 -0.396701 hybrid +148_1-1 Q0 MARCO_05_452599377-2 100 -0.397474 hybrid +148_1-3 Q0 MARCO_32_151639311-9 1 0.250000 hybrid +148_1-3 Q0 MARCO_28_1800432706-4 2 0.174822 hybrid +148_1-3 Q0 MARCO_04_1212974143-4 3 0.150965 hybrid +148_1-3 Q0 MARCO_50_723135453-3 4 0.082605 hybrid +148_1-3 Q0 MARCO_56_825003119-4 5 0.073450 hybrid +148_1-3 Q0 MARCO_21_1148914035-4 6 0.071488 hybrid +148_1-3 Q0 MARCO_29_789658183-7 7 0.066174 hybrid +148_1-3 Q0 MARCO_36_837159568-4 8 0.042623 hybrid +148_1-3 Q0 MARCO_29_1690865094-6 9 0.034605 hybrid +148_1-3 Q0 MARCO_04_1031974828-3 10 0.030815 hybrid +148_1-3 Q0 MARCO_50_1416666844-64 11 0.018952 hybrid +148_1-3 Q0 MARCO_38_1460766708-16 12 0.009248 hybrid +148_1-3 Q0 MARCO_13_1765703453-60 13 -0.016324 hybrid +148_1-3 Q0 MARCO_45_174341378-9 14 -0.016517 hybrid +148_1-3 Q0 MARCO_37_1250963311-18 15 -0.016786 hybrid +148_1-3 Q0 MARCO_10_72839680-5 16 -0.023655 hybrid +148_1-3 Q0 MARCO_13_1790557331-6 17 -0.026330 hybrid +148_1-3 Q0 MARCO_13_404022361-2 18 -0.034856 hybrid +148_1-3 Q0 MARCO_21_1148922316-10 19 -0.041056 hybrid +148_1-3 Q0 MARCO_35_984783361-4 20 -0.058444 hybrid +148_1-3 Q0 MARCO_16_107813219-4 21 -0.061805 hybrid +148_1-3 Q0 MARCO_21_1146237731-10 22 -0.078131 hybrid +148_1-3 Q0 MARCO_29_1687545937-2 23 -0.079534 hybrid +148_1-3 Q0 MARCO_00_762053020-4 24 -0.080508 hybrid +148_1-3 Q0 MARCO_45_980460899-8 25 -0.082903 hybrid +148_1-3 Q0 MARCO_38_1460766708-17 26 -0.087446 hybrid +148_1-3 Q0 MARCO_54_4922130-5 27 -0.095148 hybrid +148_1-3 Q0 MARCO_24_980569116-20 28 -0.110467 hybrid +148_1-3 Q0 MARCO_23_648163434-148 29 -0.110917 hybrid +148_1-3 Q0 MARCO_38_1460766708-14 30 -0.111430 hybrid +148_1-3 Q0 MARCO_27_1206866864-3 31 -0.112462 hybrid +148_1-3 Q0 MARCO_54_8545664-5 32 -0.112531 hybrid +148_1-3 Q0 MARCO_13_1790455662-2 33 -0.120901 hybrid +148_1-3 Q0 MARCO_37_1250593537-19 34 -0.128047 hybrid +148_1-3 Q0 MARCO_45_977374470-13 35 -0.130620 hybrid +148_1-3 Q0 MARCO_50_492269370-16 36 -0.134149 hybrid +148_1-3 Q0 MARCO_00_1002197385-26 37 -0.140858 hybrid +148_1-3 Q0 MARCO_13_1258043404-6 38 -0.146451 hybrid +148_1-3 Q0 MARCO_43_748166267-2 39 -0.151503 hybrid +148_1-3 Q0 MARCO_31_942598680-7 40 -0.160924 hybrid +148_1-3 Q0 MARCO_35_984783361-5 41 -0.171333 hybrid +148_1-3 Q0 MARCO_39_825312643-3 42 -0.175763 hybrid +148_1-3 Q0 MARCO_33_358302468-3 43 -0.176014 hybrid +148_1-3 Q0 MARCO_16_106935364-4 44 -0.178100 hybrid +148_1-3 Q0 MARCO_13_649341550-5 45 -0.195393 hybrid +148_1-3 Q0 MARCO_13_649354160-5 46 -0.195393 hybrid +148_1-3 Q0 MARCO_45_1578782511-7 47 -0.196545 hybrid +148_1-3 Q0 MARCO_59_357844842-3 48 -0.200368 hybrid +148_1-3 Q0 MARCO_16_109043476-3 49 -0.202095 hybrid +148_1-3 Q0 MARCO_45_977374470-6 50 -0.211802 hybrid +148_1-3 Q0 MARCO_40_1268435019-4 51 -0.213238 hybrid +148_1-3 Q0 MARCO_57_1223711409-6 52 -0.216494 hybrid +148_1-3 Q0 MARCO_13_649273695-5 53 -0.222724 hybrid +148_1-3 Q0 MARCO_35_982257495-16 54 -0.227670 hybrid +148_1-3 Q0 MARCO_56_503276605-7 55 -0.230003 hybrid +148_1-3 Q0 MARCO_35_983536528-8 56 -0.234492 hybrid +148_1-3 Q0 MARCO_00_1002197385-28 57 -0.236800 hybrid +148_1-3 Q0 MARCO_02_1546233857-10 58 -0.240576 hybrid +148_1-3 Q0 MARCO_43_777039476-10 59 -0.243705 hybrid +148_1-3 Q0 MARCO_15_1987081222-7 60 -0.246645 hybrid +148_1-3 Q0 MARCO_14_1616747718-3 61 -0.247020 hybrid +148_1-3 Q0 MARCO_19_1519183645-1 62 -0.250000 hybrid +148_1-3 Q0 MARCO_54_1937852613-3 63 -0.255808 hybrid +148_1-3 Q0 MARCO_26_1060586399-2 64 -0.258134 hybrid +148_1-3 Q0 MARCO_39_611319802-2 65 -0.260605 hybrid +148_1-3 Q0 MARCO_44_1486719335-7 66 -0.263742 hybrid +148_1-3 Q0 MARCO_25_240160674-5 67 -0.266428 hybrid +148_1-3 Q0 MARCO_56_1023618975-52 68 -0.269404 hybrid +148_1-3 Q0 MARCO_56_1023618975-54 69 -0.269404 hybrid +148_1-3 Q0 MARCO_14_332107433-43 70 -0.270607 hybrid +148_1-3 Q0 MARCO_35_984720931-2 71 -0.273199 hybrid +148_1-3 Q0 MARCO_26_821712371-15 72 -0.274256 hybrid +148_1-3 Q0 MARCO_28_425789730-7 73 -0.275038 hybrid +148_1-3 Q0 MARCO_16_107511250-5 74 -0.276946 hybrid +148_1-3 Q0 MARCO_28_810936543-3 75 -0.279014 hybrid +148_1-3 Q0 MARCO_00_923518685-8 76 -0.282128 hybrid +148_1-3 Q0 MARCO_28_537618483-5 77 -0.287889 hybrid +148_1-3 Q0 MARCO_26_352348113-34 78 -0.289917 hybrid +148_1-3 Q0 MARCO_56_825003119-1 79 -0.290778 hybrid +148_1-3 Q0 MARCO_35_984707682-4 80 -0.292777 hybrid +148_1-3 Q0 MARCO_24_1915517779-4 81 -0.293511 hybrid +148_1-3 Q0 MARCO_35_984768700-2 82 -0.293577 hybrid +148_1-3 Q0 MARCO_50_1979586361-46 83 -0.295957 hybrid +148_1-3 Q0 MARCO_35_802195311-2 84 -0.296750 hybrid +148_1-3 Q0 MARCO_31_845797036-4 85 -0.297578 hybrid +148_1-3 Q0 MARCO_48_288616955-2 86 -0.299268 hybrid +148_1-3 Q0 MARCO_01_1556595910-18 87 -0.301020 hybrid +148_1-3 Q0 MARCO_08_895179009-10 88 -0.305342 hybrid +148_1-3 Q0 MARCO_43_742992721-2 89 -0.306868 hybrid +148_1-3 Q0 MARCO_32_262363586-5 90 -0.307362 hybrid +148_1-3 Q0 MARCO_41_2173328219-2 91 -0.308829 hybrid +148_1-3 Q0 MARCO_28_1800432706-2 92 -0.309445 hybrid +148_1-3 Q0 MARCO_47_675498434-3 93 -0.314093 hybrid +148_1-3 Q0 MARCO_37_1256958496-8 94 -0.314177 hybrid +148_1-3 Q0 MARCO_37_1251282706-22 95 -0.315002 hybrid +148_1-3 Q0 MARCO_36_29477323-8 96 -0.315405 hybrid +148_1-3 Q0 MARCO_56_825003119-5 97 -0.317611 hybrid +148_1-3 Q0 MARCO_37_1252397727-13 98 -0.318495 hybrid +148_1-3 Q0 MARCO_36_1591981387-7 99 -0.319439 hybrid +148_1-3 Q0 MARCO_43_746664431-2 100 -0.320624 hybrid +148_1-5 Q0 MARCO_46_705334403-1 1 0.269398 hybrid +148_1-5 Q0 MARCO_40_1277399291-1 2 0.250002 hybrid +148_1-5 Q0 MARCO_50_1944730728-4 3 0.222222 hybrid +148_1-5 Q0 MARCO_55_1345847584-9 4 0.141473 hybrid +148_1-5 Q0 MARCO_50_1942483960-5 5 0.136911 hybrid +148_1-5 Q0 MARCO_35_987020589-11 6 0.134287 hybrid +148_1-5 Q0 MARCO_50_1186856656-17 7 0.074641 hybrid +148_1-5 Q0 MARCO_50_1416666844-73 8 0.058152 hybrid +148_1-5 Q0 MARCO_59_533246010-7 9 0.013925 hybrid +148_1-5 Q0 MARCO_50_1508999748-46 10 -0.006846 hybrid +148_1-5 Q0 MARCO_46_705334403-7 11 -0.016494 hybrid +148_1-5 Q0 MARCO_50_1508999748-40 12 -0.029159 hybrid +148_1-5 Q0 MARCO_51_118078577-3 13 -0.038946 hybrid +148_1-5 Q0 MARCO_50_2386659125-36 14 -0.063324 hybrid +148_1-5 Q0 MARCO_10_892334905-12 15 -0.064094 hybrid +148_1-5 Q0 MARCO_13_21006101-7 16 -0.080535 hybrid +148_1-5 Q0 MARCO_50_2386659125-22 17 -0.080614 hybrid +148_1-5 Q0 MARCO_50_2386659125-23 18 -0.080912 hybrid +148_1-5 Q0 MARCO_50_2375986043-34 19 -0.082056 hybrid +148_1-5 Q0 MARCO_07_822425487-5 20 -0.087284 hybrid +148_1-5 Q0 MARCO_50_2490343126-3 21 -0.103003 hybrid +148_1-5 Q0 MARCO_50_1416666844-23 22 -0.104059 hybrid +148_1-5 Q0 KILT_38321234-3 23 -0.111083 hybrid +148_1-5 Q0 MARCO_32_147051342-7 24 -0.124034 hybrid +148_1-5 Q0 MARCO_46_705334403-2 25 -0.131816 hybrid +148_1-5 Q0 MARCO_50_1933511130-17 26 -0.143202 hybrid +148_1-5 Q0 MARCO_50_1508999748-41 27 -0.147875 hybrid +148_1-5 Q0 MARCO_00_923493309-3 28 -0.154240 hybrid +148_1-5 Q0 MARCO_46_705334403-11 29 -0.156221 hybrid +148_1-5 Q0 MARCO_00_760400213-6 30 -0.157087 hybrid +148_1-5 Q0 MARCO_50_1416666844-35 31 -0.157249 hybrid +148_1-5 Q0 MARCO_50_1419689794-1 32 -0.158393 hybrid +148_1-5 Q0 MARCO_50_928694011-5 33 -0.162133 hybrid +148_1-5 Q0 MARCO_50_2386659125-10 34 -0.167608 hybrid +148_1-5 Q0 MARCO_50_1416666844-36 35 -0.169887 hybrid +148_1-5 Q0 MARCO_51_118128718-11 36 -0.174068 hybrid +148_1-5 Q0 MARCO_20_1576446947-10 37 -0.174540 hybrid +148_1-5 Q0 MARCO_50_1983407280-5 38 -0.179348 hybrid +148_1-5 Q0 MARCO_08_817850973-110 39 -0.179709 hybrid +148_1-5 Q0 MARCO_41_382343500-5 40 -0.181425 hybrid +148_1-5 Q0 MARCO_29_1694834072-3 41 -0.184724 hybrid +148_1-5 Q0 MARCO_10_891809968-18 42 -0.188182 hybrid +148_1-5 Q0 MARCO_50_1410739461-20 43 -0.190163 hybrid +148_1-5 Q0 MARCO_50_1188375591-7 44 -0.192700 hybrid +148_1-5 Q0 MARCO_10_892223149-19 45 -0.205497 hybrid +148_1-5 Q0 MARCO_50_1416666844-38 46 -0.209038 hybrid +148_1-5 Q0 MARCO_50_1186856656-19 47 -0.210194 hybrid +148_1-5 Q0 MARCO_50_1618621781-68 48 -0.212540 hybrid +148_1-5 Q0 MARCO_43_777079008-35 49 -0.217586 hybrid +148_1-5 Q0 MARCO_00_926893645-29 50 -0.219929 hybrid +148_1-5 Q0 MARCO_06_1258791718-92 51 -0.220838 hybrid +148_1-5 Q0 MARCO_40_1600250112-14 52 -0.224181 hybrid +148_1-5 Q0 MARCO_50_1186856656-20 53 -0.229116 hybrid +148_1-5 Q0 MARCO_20_1576514787-10 54 -0.233972 hybrid +148_1-5 Q0 MARCO_50_1183736820-10 55 -0.234170 hybrid +148_1-5 Q0 MARCO_50_1186856656-21 56 -0.235639 hybrid +148_1-5 Q0 MARCO_07_821676801-24 57 -0.236215 hybrid +148_1-5 Q0 MARCO_11_785678144-4 58 -0.239911 hybrid +148_1-5 Q0 MARCO_11_785678144-2 59 -0.243425 hybrid +148_1-5 Q0 MARCO_08_818063472-5 60 -0.244684 hybrid +148_1-5 Q0 MARCO_39_807503302-3 61 -0.247507 hybrid +148_1-5 Q0 MARCO_19_1519183645-2 62 -0.249998 hybrid +148_1-5 Q0 MARCO_37_1275466593-23 63 -0.254705 hybrid +148_1-5 Q0 MARCO_36_1435099040-16 64 -0.260458 hybrid +148_1-5 Q0 MARCO_59_538086954-19 65 -0.266104 hybrid +148_1-5 Q0 MARCO_50_1516527274-35 66 -0.266731 hybrid +148_1-5 Q0 MARCO_50_1186856656-5 67 -0.268176 hybrid +148_1-5 Q0 MARCO_35_1138369545-6 68 -0.270844 hybrid +148_1-5 Q0 MARCO_49_437477088-7 69 -0.271841 hybrid +148_1-5 Q0 MARCO_50_1186856656-28 70 -0.272238 hybrid +148_1-5 Q0 MARCO_35_982404259-11 71 -0.273385 hybrid +148_1-5 Q0 KILT_5917624-4 72 -0.275620 hybrid +148_1-5 Q0 MARCO_50_2386659125-39 73 -0.278769 hybrid +148_1-5 Q0 MARCO_06_1258791718-279 74 -0.279297 hybrid +148_1-5 Q0 MARCO_50_1944713621-3 75 -0.280139 hybrid +148_1-5 Q0 MARCO_51_113322972-15 76 -0.281588 hybrid +148_1-5 Q0 MARCO_16_109057391-3 77 -0.282287 hybrid +148_1-5 Q0 MARCO_56_317635363-2 78 -0.283498 hybrid +148_1-5 Q0 MARCO_00_926893645-16 79 -0.285137 hybrid +148_1-5 Q0 MARCO_39_807503302-4 80 -0.287357 hybrid +148_1-5 Q0 KILT_43569468-3 81 -0.288075 hybrid +148_1-5 Q0 MARCO_00_1585128998-2 82 -0.290549 hybrid +148_1-5 Q0 MARCO_21_1146782211-4 83 -0.292737 hybrid +148_1-5 Q0 MARCO_50_1516527274-3 84 -0.293465 hybrid +148_1-5 Q0 MARCO_05_452109998-3 85 -0.293808 hybrid +148_1-5 Q0 MARCO_50_1928022728-8 86 -0.296500 hybrid +148_1-5 Q0 MARCO_50_1416666844-7 87 -0.298053 hybrid +148_1-5 Q0 MARCO_33_1236772326-11 88 -0.298113 hybrid +148_1-5 Q0 MARCO_04_409371526-4 89 -0.298501 hybrid +148_1-5 Q0 MARCO_50_940496772-4 90 -0.298613 hybrid +148_1-5 Q0 MARCO_50_1944713621-9 91 -0.300641 hybrid +148_1-5 Q0 MARCO_50_1397396001-12 92 -0.300745 hybrid +148_1-5 Q0 MARCO_50_940573435-102 93 -0.301606 hybrid +148_1-5 Q0 MARCO_50_2157457161-21 94 -0.305037 hybrid +148_1-5 Q0 MARCO_41_2033733602-5 95 -0.307097 hybrid +148_1-5 Q0 MARCO_50_1416666844-43 96 -0.307327 hybrid +148_1-5 Q0 MARCO_50_1186856656-18 97 -0.317853 hybrid +148_1-5 Q0 MARCO_50_1984876872-18 98 -0.321378 hybrid +148_1-5 Q0 MARCO_46_705334403-12 99 -0.323165 hybrid +148_1-5 Q0 MARCO_16_108164915-4 100 -0.323201 hybrid +148_1-7 Q0 MARCO_28_339555653-6 1 0.250002 hybrid +148_1-7 Q0 MARCO_00_926893645-29 2 0.166153 hybrid +148_1-7 Q0 MARCO_46_705334403-1 3 0.149841 hybrid +148_1-7 Q0 MARCO_54_363553726-4 4 0.119208 hybrid +148_1-7 Q0 MARCO_46_705334403-7 5 0.050372 hybrid +148_1-7 Q0 MARCO_50_2160027919-13 6 0.043682 hybrid +148_1-7 Q0 MARCO_46_705334403-11 7 0.034949 hybrid +148_1-7 Q0 MARCO_50_674811875-15 8 -0.009399 hybrid +148_1-7 Q0 MARCO_46_705334403-12 9 -0.021520 hybrid +148_1-7 Q0 MARCO_02_361642399-49 10 -0.036538 hybrid +148_1-7 Q0 MARCO_19_2484886309-6 11 -0.036625 hybrid +148_1-7 Q0 MARCO_57_1352949210-9 12 -0.044996 hybrid +148_1-7 Q0 MARCO_05_320483468-6 13 -0.054824 hybrid +148_1-7 Q0 MARCO_04_958083866-6 14 -0.056012 hybrid +148_1-7 Q0 MARCO_50_2486569954-68 15 -0.060436 hybrid +148_1-7 Q0 MARCO_55_1345847584-9 16 -0.067335 hybrid +148_1-7 Q0 MARCO_17_669700504-1 17 -0.078929 hybrid +148_1-7 Q0 MARCO_50_1524285459-3 18 -0.086011 hybrid +148_1-7 Q0 MARCO_12_1727840069-10 19 -0.093869 hybrid +148_1-7 Q0 MARCO_52_1142396638-4 20 -0.125784 hybrid +148_1-7 Q0 MARCO_04_958083866-3 21 -0.128558 hybrid +148_1-7 Q0 MARCO_15_106607322-7 22 -0.135036 hybrid +148_1-7 Q0 MARCO_13_1664739127-6 23 -0.144397 hybrid +148_1-7 Q0 MARCO_50_1514944322-26 24 -0.152066 hybrid +148_1-7 Q0 MARCO_11_1449924548-3 25 -0.157466 hybrid +148_1-7 Q0 MARCO_50_1186856656-5 26 -0.158516 hybrid +148_1-7 Q0 MARCO_40_1189989336-11 27 -0.160685 hybrid +148_1-7 Q0 MARCO_50_2401715259-21 28 -0.167969 hybrid +148_1-7 Q0 MARCO_13_1253316922-3 29 -0.168579 hybrid +148_1-7 Q0 MARCO_33_1236772326-11 30 -0.174350 hybrid +148_1-7 Q0 MARCO_59_1034271336-28 31 -0.174387 hybrid +148_1-7 Q0 MARCO_50_2386659125-39 32 -0.175244 hybrid +148_1-7 Q0 MARCO_50_928694011-6 33 -0.177802 hybrid +148_1-7 Q0 MARCO_40_1269226091-2 34 -0.183079 hybrid +148_1-7 Q0 MARCO_36_836905178-2 35 -0.186508 hybrid +148_1-7 Q0 MARCO_50_1410739461-18 36 -0.188053 hybrid +148_1-7 Q0 MARCO_24_1131796398-9 37 -0.188612 hybrid +148_1-7 Q0 MARCO_04_958277495-10 38 -0.191688 hybrid +148_1-7 Q0 MARCO_03_579711135-55 39 -0.195108 hybrid +148_1-7 Q0 MARCO_59_533246010-7 40 -0.196693 hybrid +148_1-7 Q0 MARCO_10_892334905-12 41 -0.202704 hybrid +148_1-7 Q0 MARCO_35_983762278-3 42 -0.206404 hybrid +148_1-7 Q0 MARCO_50_1455941233-15 43 -0.206413 hybrid +148_1-7 Q0 MARCO_48_1537067061-2 44 -0.207215 hybrid +148_1-7 Q0 MARCO_26_408038102-27 45 -0.210552 hybrid +148_1-7 Q0 MARCO_50_1514944322-31 46 -0.210667 hybrid +148_1-7 Q0 MARCO_37_1275466593-23 47 -0.212698 hybrid +148_1-7 Q0 MARCO_54_319887768-6 48 -0.213450 hybrid +148_1-7 Q0 MARCO_50_1186856656-20 49 -0.215696 hybrid +148_1-7 Q0 MARCO_37_1259312669-55 50 -0.216516 hybrid +148_1-7 Q0 MARCO_08_815315816-6 51 -0.216709 hybrid +148_1-7 Q0 MARCO_11_1378602581-20 52 -0.219272 hybrid +148_1-7 Q0 MARCO_50_1186856656-19 53 -0.220211 hybrid +148_1-7 Q0 MARCO_27_1704762768-2 54 -0.223705 hybrid +148_1-7 Q0 MARCO_50_1457136264-15 55 -0.231021 hybrid +148_1-7 Q0 MARCO_04_958149359-25 56 -0.233620 hybrid +148_1-7 Q0 MARCO_04_958213226-3 57 -0.233620 hybrid +148_1-7 Q0 MARCO_04_958149359-3 58 -0.233620 hybrid +148_1-7 Q0 MARCO_04_957918083-3 59 -0.233620 hybrid +148_1-7 Q0 MARCO_50_938168189-41 60 -0.237861 hybrid +148_1-7 Q0 MARCO_03_579711135-54 61 -0.243087 hybrid +148_1-7 Q0 MARCO_31_1556267116-5 62 -0.244746 hybrid +148_1-7 Q0 MARCO_00_760279123-6 63 -0.244921 hybrid +148_1-7 Q0 MARCO_04_958083866-39 64 -0.245782 hybrid +148_1-7 Q0 MARCO_04_958083866-9 65 -0.245782 hybrid +148_1-7 Q0 MARCO_04_958149359-16 66 -0.245782 hybrid +148_1-7 Q0 MARCO_04_958083866-13 67 -0.245782 hybrid +148_1-7 Q0 MARCO_04_957918083-6 68 -0.245782 hybrid +148_1-7 Q0 MARCO_04_957918083-18 69 -0.245796 hybrid +148_1-7 Q0 MARCO_19_1519183645-1 70 -0.249998 hybrid +148_1-7 Q0 MARCO_07_829349436-17 71 -0.251715 hybrid +148_1-7 Q0 MARCO_29_1689742490-14 72 -0.258669 hybrid +148_1-7 Q0 MARCO_04_958083866-20 73 -0.259737 hybrid +148_1-7 Q0 MARCO_04_958213226-16 74 -0.259737 hybrid +148_1-7 Q0 MARCO_04_958149359-19 75 -0.259737 hybrid +148_1-7 Q0 MARCO_04_957918083-21 76 -0.259737 hybrid +148_1-7 Q0 MARCO_23_1594868060-16 77 -0.261594 hybrid +148_1-7 Q0 MARCO_32_146801954-7 78 -0.262157 hybrid +148_1-7 Q0 MARCO_03_1672925419-6 79 -0.265082 hybrid +148_1-7 Q0 MARCO_50_1450911385-14 80 -0.268516 hybrid +148_1-7 Q0 MARCO_05_1747028697-3 81 -0.269502 hybrid +148_1-7 Q0 MARCO_04_958277495-3 82 -0.275910 hybrid +148_1-7 Q0 MARCO_04_958213226-20 83 -0.275910 hybrid +148_1-7 Q0 MARCO_25_73366537-2 84 -0.276474 hybrid +148_1-7 Q0 MARCO_29_1689449011-2 85 -0.279408 hybrid +148_1-7 Q0 MARCO_22_398307547-6 86 -0.284171 hybrid +148_1-7 Q0 MARCO_50_1519237905-15 87 -0.286193 hybrid +148_1-7 Q0 MARCO_12_75760548-2 88 -0.286578 hybrid +148_1-7 Q0 MARCO_04_958083866-36 89 -0.291181 hybrid +148_1-7 Q0 MARCO_04_957918083-47 90 -0.291190 hybrid +148_1-7 Q0 MARCO_04_958213226-29 91 -0.291190 hybrid +148_1-7 Q0 MARCO_04_958149359-29 92 -0.291190 hybrid +148_1-7 Q0 MARCO_04_957918083-31 93 -0.291190 hybrid +148_1-7 Q0 MARCO_03_1673457218-6 94 -0.291313 hybrid +148_1-7 Q0 MARCO_53_1468878625-3 95 -0.293074 hybrid +148_1-7 Q0 MARCO_34_107957813-9 96 -0.293794 hybrid +148_1-7 Q0 MARCO_20_1187749929-8 97 -0.297860 hybrid +148_1-7 Q0 MARCO_28_339638620-4 98 -0.299226 hybrid +148_1-7 Q0 MARCO_50_1983145593-7 99 -0.300124 hybrid +148_1-7 Q0 MARCO_00_721417266-18 100 -0.301037 hybrid +148_1-9 Q0 MARCO_56_314743633-14 1 0.250002 hybrid +148_1-9 Q0 MARCO_04_958083866-6 2 0.176955 hybrid +148_1-9 Q0 MARCO_04_958083866-3 3 0.173659 hybrid +148_1-9 Q0 MARCO_05_450238694-5 4 0.109156 hybrid +148_1-9 Q0 MARCO_46_705334403-7 5 0.079047 hybrid +148_1-9 Q0 MARCO_46_705334403-12 6 0.063864 hybrid +148_1-9 Q0 MARCO_40_451570859-5 7 0.041723 hybrid +148_1-9 Q0 MARCO_46_705435328-7 8 0.008503 hybrid +148_1-9 Q0 MARCO_48_1296352633-5 9 0.005696 hybrid +148_1-9 Q0 MARCO_46_705334403-1 10 -0.005285 hybrid +148_1-9 Q0 MARCO_37_1255198346-70 11 -0.006774 hybrid +148_1-9 Q0 MARCO_28_330048811-4 12 -0.006995 hybrid +148_1-9 Q0 MARCO_29_663090393-9 13 -0.011514 hybrid +148_1-9 Q0 MARCO_50_1984876872-18 14 -0.025563 hybrid +148_1-9 Q0 MARCO_00_922507913-2 15 -0.027322 hybrid +148_1-9 Q0 MARCO_59_538271252-29 16 -0.029608 hybrid +148_1-9 Q0 MARCO_54_363553726-4 17 -0.041461 hybrid +148_1-9 Q0 MARCO_04_958277495-10 18 -0.041539 hybrid +148_1-9 Q0 MARCO_40_451892794-4 19 -0.044017 hybrid +148_1-9 Q0 MARCO_38_408760675-8 20 -0.051604 hybrid +148_1-9 Q0 MARCO_04_958083866-39 21 -0.054635 hybrid +148_1-9 Q0 MARCO_04_958083866-9 22 -0.054635 hybrid +148_1-9 Q0 MARCO_04_958149359-16 23 -0.054635 hybrid +148_1-9 Q0 MARCO_04_958083866-13 24 -0.054635 hybrid +148_1-9 Q0 MARCO_04_957918083-6 25 -0.054635 hybrid +148_1-9 Q0 MARCO_04_957918083-18 26 -0.054635 hybrid +148_1-9 Q0 MARCO_41_1819399084-2 27 -0.065719 hybrid +148_1-9 Q0 MARCO_35_332531962-2 28 -0.071997 hybrid +148_1-9 Q0 MARCO_54_319925937-4 29 -0.073772 hybrid +148_1-9 Q0 MARCO_04_958149359-25 30 -0.073813 hybrid +148_1-9 Q0 MARCO_04_958213226-3 31 -0.073813 hybrid +148_1-9 Q0 MARCO_04_958149359-3 32 -0.073813 hybrid +148_1-9 Q0 MARCO_04_957918083-3 33 -0.073813 hybrid +148_1-9 Q0 MARCO_00_922507913-4 34 -0.074864 hybrid +148_1-9 Q0 KILT_52111558-3 35 -0.084357 hybrid +148_1-9 Q0 MARCO_28_329979304-4 36 -0.084369 hybrid +148_1-9 Q0 MARCO_40_452193451-6 37 -0.090958 hybrid +148_1-9 Q0 MARCO_04_958083866-25 38 -0.091035 hybrid +148_1-9 Q0 MARCO_04_958083866-18 39 -0.091035 hybrid +148_1-9 Q0 MARCO_46_772110075-3 40 -0.096144 hybrid +148_1-9 Q0 MARCO_05_450238694-12 41 -0.097751 hybrid +148_1-9 Q0 MARCO_40_1277399291-1 42 -0.098872 hybrid +148_1-9 Q0 MARCO_04_958213226-22 43 -0.104209 hybrid +148_1-9 Q0 MARCO_04_958083866-24 44 -0.104209 hybrid +148_1-9 Q0 MARCO_04_958083866-17 45 -0.104209 hybrid +148_1-9 Q0 MARCO_35_982385348-11 46 -0.106520 hybrid +148_1-9 Q0 MARCO_04_412398361-3 47 -0.108692 hybrid +148_1-9 Q0 MARCO_46_380842855-4 48 -0.122958 hybrid +148_1-9 Q0 MARCO_55_1345847584-9 49 -0.123285 hybrid +148_1-9 Q0 MARCO_37_1253965233-9 50 -0.131244 hybrid +148_1-9 Q0 MARCO_10_892334905-12 51 -0.136839 hybrid +148_1-9 Q0 MARCO_46_705334403-8 52 -0.140340 hybrid +148_1-9 Q0 MARCO_13_1688281863-13 53 -0.142970 hybrid +148_1-9 Q0 MARCO_25_433201045-1 54 -0.149027 hybrid +148_1-9 Q0 MARCO_05_450238694-3 55 -0.151305 hybrid +148_1-9 Q0 MARCO_40_821604070-4 56 -0.162761 hybrid +148_1-9 Q0 MARCO_29_1690034663-7 57 -0.172103 hybrid +148_1-9 Q0 MARCO_04_958149359-36 58 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958213226-12 59 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958149359-44 60 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958213226-36 61 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958277495-15 62 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958277495-19 63 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958213226-40 64 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958149359-32 65 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958149359-12 66 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958213226-8 67 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-50 68 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958149359-40 69 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-14 70 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958213226-32 71 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-34 72 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958083866-28 73 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-42 74 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958083866-43 75 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958213226-44 76 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-10 77 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-54 78 -0.172606 hybrid +148_1-9 Q0 MARCO_04_958277495-6 79 -0.172606 hybrid +148_1-9 Q0 MARCO_04_957918083-58 80 -0.172610 hybrid +148_1-9 Q0 MARCO_04_958149359-8 81 -0.172610 hybrid +148_1-9 Q0 MARCO_04_957918083-38 82 -0.172610 hybrid +148_1-9 Q0 MARCO_59_883652403-9 83 -0.172900 hybrid +148_1-9 Q0 MARCO_40_452083580-3 84 -0.176577 hybrid +148_1-9 Q0 MARCO_50_2750790827-7 85 -0.179816 hybrid +148_1-9 Q0 MARCO_51_1235007267-4 86 -0.184659 hybrid +148_1-9 Q0 MARCO_07_479708519-3 87 -0.185199 hybrid +148_1-9 Q0 MARCO_00_922507913-1 88 -0.185792 hybrid +148_1-9 Q0 MARCO_04_958083866-20 89 -0.185804 hybrid +148_1-9 Q0 MARCO_04_958213226-16 90 -0.185804 hybrid +148_1-9 Q0 MARCO_04_958149359-19 91 -0.185804 hybrid +148_1-9 Q0 MARCO_04_957918083-21 92 -0.185804 hybrid +148_1-9 Q0 MARCO_00_922955791-10 93 -0.186282 hybrid +148_1-9 Q0 MARCO_04_958083866-2 94 -0.190422 hybrid +148_1-9 Q0 MARCO_04_958277495-9 95 -0.190438 hybrid +148_1-9 Q0 MARCO_02_830746727-1 96 -0.194458 hybrid +148_1-9 Q0 MARCO_16_107192305-4 97 -0.194536 hybrid +148_1-9 Q0 MARCO_40_452509992-4 98 -0.199027 hybrid +148_1-9 Q0 MARCO_21_596248610-1 99 -0.199984 hybrid +148_1-9 Q0 MARCO_05_1747028697-3 100 -0.205182 hybrid +148_2-1 Q0 MARCO_46_705334403-1 1 0.286240 hybrid +148_2-1 Q0 MARCO_00_926893645-29 2 0.250000 hybrid +148_2-1 Q0 MARCO_07_829349436-17 3 0.132356 hybrid +148_2-1 Q0 MARCO_25_73481090-7 4 0.113627 hybrid +148_2-1 Q0 MARCO_50_2488650692-4 5 0.111972 hybrid +148_2-1 Q0 MARCO_46_705334403-12 6 0.043690 hybrid +148_2-1 Q0 MARCO_35_987188806-8 7 0.037718 hybrid +148_2-1 Q0 MARCO_46_772110075-3 8 0.026395 hybrid +148_2-1 Q0 MARCO_04_958083866-3 9 0.003557 hybrid +148_2-1 Q0 MARCO_36_22623658-2 10 -0.014772 hybrid +148_2-1 Q0 MARCO_50_1519050037-19 11 -0.018785 hybrid +148_2-1 Q0 MARCO_04_958277495-10 12 -0.024321 hybrid +148_2-1 Q0 MARCO_40_1275215270-7 13 -0.027878 hybrid +148_2-1 Q0 MARCO_04_958083866-6 14 -0.034045 hybrid +148_2-1 Q0 MARCO_50_2753905797-9 15 -0.050960 hybrid +148_2-1 Q0 MARCO_13_1253316922-3 16 -0.091292 hybrid +148_2-1 Q0 MARCO_14_466396056-11 17 -0.110757 hybrid +148_2-1 Q0 MARCO_28_339941586-7 18 -0.125158 hybrid +148_2-1 Q0 MARCO_28_339555653-6 19 -0.127348 hybrid +148_2-1 Q0 MARCO_50_1516527274-47 20 -0.129554 hybrid +148_2-1 Q0 MARCO_29_1689742490-14 21 -0.144830 hybrid +148_2-1 Q0 MARCO_50_1982673628-10 22 -0.149471 hybrid +148_2-1 Q0 MARCO_00_925914093-2 23 -0.158076 hybrid +148_2-1 Q0 MARCO_24_1134154218-9 24 -0.159711 hybrid +148_2-1 Q0 MARCO_50_2486569954-68 25 -0.165526 hybrid +148_2-1 Q0 MARCO_50_928694011-16 26 -0.175051 hybrid +148_2-1 Q0 MARCO_50_928694011-9 27 -0.180091 hybrid +148_2-1 Q0 MARCO_57_1352949210-7 28 -0.186558 hybrid +148_2-1 Q0 MARCO_50_1983407280-5 29 -0.192493 hybrid +148_2-1 Q0 MARCO_40_1274048209-12 30 -0.203389 hybrid +148_2-1 Q0 MARCO_50_928694011-5 31 -0.204404 hybrid +148_2-1 Q0 MARCO_23_644522987-6 32 -0.204871 hybrid +148_2-1 Q0 MARCO_50_1929222803-9 33 -0.213984 hybrid +148_2-1 Q0 MARCO_50_1457136264-26 34 -0.217857 hybrid +148_2-1 Q0 MARCO_50_1519237905-14 35 -0.217857 hybrid +148_2-1 Q0 MARCO_40_1277399291-1 36 -0.220815 hybrid +148_2-1 Q0 MARCO_50_1522625191-11 37 -0.223469 hybrid +148_2-1 Q0 MARCO_43_766554148-2 38 -0.224544 hybrid +148_2-1 Q0 MARCO_13_1258515906-10 39 -0.226235 hybrid +148_2-1 Q0 MARCO_50_1518541296-6 40 -0.226638 hybrid +148_2-1 Q0 MARCO_46_705334403-11 41 -0.227506 hybrid +148_2-1 Q0 MARCO_26_408038102-27 42 -0.231926 hybrid +148_2-1 Q0 MARCO_47_599264390-3 43 -0.237770 hybrid +148_2-1 Q0 MARCO_50_1984876872-18 44 -0.238661 hybrid +148_2-1 Q0 MARCO_07_479708519-3 45 -0.240192 hybrid +148_2-1 Q0 MARCO_40_1267336961-6 46 -0.242262 hybrid +148_2-1 Q0 MARCO_41_1191765432-4 47 -0.248633 hybrid +148_2-1 Q0 MARCO_19_1518854745-1 48 -0.250000 hybrid +148_2-1 Q0 MARCO_46_705435328-9 49 -0.261531 hybrid +148_2-1 Q0 MARCO_25_73366537-2 50 -0.262678 hybrid +148_2-1 Q0 MARCO_50_1457136264-15 51 -0.263697 hybrid +148_2-1 Q0 MARCO_24_1131796398-8 52 -0.265804 hybrid +148_2-1 Q0 MARCO_50_1451590394-6 53 -0.267438 hybrid +148_2-1 Q0 MARCO_04_958083866-39 54 -0.269237 hybrid +148_2-1 Q0 MARCO_04_958083866-9 55 -0.269237 hybrid +148_2-1 Q0 MARCO_04_958149359-16 56 -0.269237 hybrid +148_2-1 Q0 MARCO_04_958083866-13 57 -0.269237 hybrid +148_2-1 Q0 MARCO_04_957918083-6 58 -0.269237 hybrid +148_2-1 Q0 MARCO_04_957918083-18 59 -0.269237 hybrid +148_2-1 Q0 MARCO_53_1021617649-8 60 -0.269253 hybrid +148_2-1 Q0 MARCO_50_1929222803-14 61 -0.270764 hybrid +148_2-1 Q0 MARCO_54_319887768-6 62 -0.276627 hybrid +148_2-1 Q0 MARCO_00_1039780658-4 63 -0.280076 hybrid +148_2-1 Q0 MARCO_50_1516527274-41 64 -0.281639 hybrid +148_2-1 Q0 MARCO_53_788223547-5 65 -0.282650 hybrid +148_2-1 Q0 MARCO_33_742522995-1 66 -0.286551 hybrid +148_2-1 Q0 MARCO_50_1516527274-46 67 -0.290001 hybrid +148_2-1 Q0 MARCO_51_113322972-2 68 -0.293362 hybrid +148_2-1 Q0 MARCO_56_317691855-3 69 -0.297159 hybrid +148_2-1 Q0 MARCO_05_1747028697-3 70 -0.297227 hybrid +148_2-1 Q0 MARCO_19_1519183645-2 71 -0.300487 hybrid +148_2-1 Q0 MARCO_46_705334403-7 72 -0.300576 hybrid +148_2-1 Q0 MARCO_50_1416666844-73 73 -0.303118 hybrid +148_2-1 Q0 MARCO_56_1049087489-3 74 -0.303314 hybrid +148_2-1 Q0 MARCO_51_121940185-9 75 -0.305820 hybrid +148_2-1 Q0 MARCO_50_1516527274-4 76 -0.306452 hybrid +148_2-1 Q0 MARCO_50_2146881794-5 77 -0.306646 hybrid +148_2-1 Q0 KILT_52111558-16 78 -0.309669 hybrid +148_2-1 Q0 MARCO_25_73465587-2 79 -0.311028 hybrid +148_2-1 Q0 MARCO_50_1450402399-1 80 -0.311688 hybrid +148_2-1 Q0 MARCO_50_2750207865-10 81 -0.314302 hybrid +148_2-1 Q0 MARCO_13_401452905-3 82 -0.315453 hybrid +148_2-1 Q0 MARCO_00_922433136-5 83 -0.326600 hybrid +148_2-1 Q0 MARCO_50_1186856656-19 84 -0.327148 hybrid +148_2-1 Q0 MARCO_07_821676801-27 85 -0.330125 hybrid +148_2-1 Q0 MARCO_54_363553726-4 86 -0.330701 hybrid +148_2-1 Q0 MARCO_50_1457136264-37 87 -0.331012 hybrid +148_2-1 Q0 MARCO_23_644522987-10 88 -0.331464 hybrid +148_2-1 Q0 MARCO_10_892334905-12 89 -0.334166 hybrid +148_2-1 Q0 MARCO_50_1516527274-12 90 -0.337887 hybrid +148_2-1 Q0 MARCO_03_579711135-54 91 -0.338838 hybrid +148_2-1 Q0 MARCO_56_317635363-2 92 -0.339314 hybrid +148_2-1 Q0 MARCO_29_1689449011-2 93 -0.344522 hybrid +148_2-1 Q0 MARCO_04_958277495-7 94 -0.345065 hybrid +148_2-1 Q0 MARCO_50_1518541296-3 95 -0.347448 hybrid +148_2-1 Q0 MARCO_40_822716980-5 96 -0.347504 hybrid +148_2-1 Q0 MARCO_52_594477485-10 97 -0.347931 hybrid +148_2-1 Q0 MARCO_24_1555462925-2 98 -0.351149 hybrid +148_2-1 Q0 MARCO_04_958213226-22 99 -0.352516 hybrid +148_2-1 Q0 MARCO_04_958083866-24 100 -0.352516 hybrid +148_2-3 Q0 MARCO_59_533393421-3 1 0.250000 hybrid +148_2-3 Q0 MARCO_47_288127950-2 2 0.027670 hybrid +148_2-3 Q0 MARCO_59_533436401-5 3 0.025963 hybrid +148_2-3 Q0 MARCO_16_107741948-2 4 0.008365 hybrid +148_2-3 Q0 MARCO_59_533329192-10 5 -0.006691 hybrid +148_2-3 Q0 MARCO_59_533329192-24 6 -0.035579 hybrid +148_2-3 Q0 MARCO_59_533393421-2 7 -0.047455 hybrid +148_2-3 Q0 MARCO_59_533393421-1 8 -0.107119 hybrid +148_2-3 Q0 MARCO_59_533246010-7 9 -0.131912 hybrid +148_2-3 Q0 MARCO_37_1255198346-2 10 -0.134432 hybrid +148_2-3 Q0 MARCO_37_1247915394-9 11 -0.158958 hybrid +148_2-3 Q0 MARCO_59_533393421-5 12 -0.174612 hybrid +148_2-3 Q0 MARCO_51_1241852601-5 13 -0.184489 hybrid +148_2-3 Q0 MARCO_28_44557103-7 14 -0.189735 hybrid +148_2-3 Q0 MARCO_28_339445931-7 15 -0.200056 hybrid +148_2-3 Q0 MARCO_43_776904299-4 16 -0.207879 hybrid +148_2-3 Q0 MARCO_46_382277930-5 17 -0.213361 hybrid +148_2-3 Q0 MARCO_11_601832491-2 18 -0.224762 hybrid +148_2-3 Q0 MARCO_29_1690477280-7 19 -0.230759 hybrid +148_2-3 Q0 MARCO_28_44557103-11 20 -0.237347 hybrid +148_2-3 Q0 MARCO_53_361664784-1 21 -0.238408 hybrid +148_2-3 Q0 MARCO_59_533393421-9 22 -0.238536 hybrid +148_2-3 Q0 MARCO_31_1852604756-6 23 -0.250000 hybrid +148_2-3 Q0 MARCO_13_1163204111-9 24 -0.255673 hybrid +148_2-3 Q0 MARCO_00_923414327-2 25 -0.258546 hybrid +148_2-3 Q0 MARCO_29_1689675997-18 26 -0.258920 hybrid +148_2-3 Q0 MARCO_35_980997142-2 27 -0.266859 hybrid +148_2-3 Q0 MARCO_37_787669308-4 28 -0.270558 hybrid +148_2-3 Q0 MARCO_54_357634490-13 29 -0.272461 hybrid +148_2-3 Q0 MARCO_35_980962005-2 30 -0.277276 hybrid +148_2-3 Q0 MARCO_54_360550472-2 31 -0.281659 hybrid +148_2-3 Q0 MARCO_54_365373030-4 32 -0.286884 hybrid +148_2-3 Q0 MARCO_11_601832491-1 33 -0.288005 hybrid +148_2-3 Q0 MARCO_08_1121809190-4 34 -0.290088 hybrid +148_2-3 Q0 MARCO_59_537093455-12 35 -0.304989 hybrid +148_2-3 Q0 MARCO_13_1164549158-9 36 -0.311891 hybrid +148_2-3 Q0 MARCO_32_617206189-6 37 -0.315532 hybrid +148_2-3 Q0 MARCO_54_319887768-6 38 -0.320372 hybrid +148_2-3 Q0 MARCO_50_1516410155-23 39 -0.327375 hybrid +148_2-3 Q0 MARCO_28_554394337-2 40 -0.329256 hybrid +148_2-3 Q0 MARCO_44_655635825-8 41 -0.329582 hybrid +148_2-3 Q0 MARCO_29_789658183-7 42 -0.329728 hybrid +148_2-3 Q0 MARCO_54_360542762-2 43 -0.333964 hybrid +148_2-3 Q0 MARCO_37_1255298398-13 44 -0.341724 hybrid +148_2-3 Q0 MARCO_28_339941586-8 45 -0.343708 hybrid +148_2-3 Q0 MARCO_59_533393421-4 46 -0.343968 hybrid +148_2-3 Q0 MARCO_47_675884058-2 47 -0.345340 hybrid +148_2-3 Q0 MARCO_19_2061859640-2 48 -0.351107 hybrid +148_2-3 Q0 MARCO_46_1165582098-3 49 -0.351752 hybrid +148_2-3 Q0 MARCO_09_534573872-2 50 -0.351833 hybrid +148_2-3 Q0 MARCO_15_309858859-6 51 -0.352078 hybrid +148_2-3 Q0 MARCO_54_364946981-3 52 -0.352461 hybrid +148_2-3 Q0 MARCO_00_927454580-3 53 -0.352766 hybrid +148_2-3 Q0 MARCO_45_977374470-2 54 -0.354350 hybrid +148_2-3 Q0 MARCO_59_533393421-6 55 -0.354852 hybrid +148_2-3 Q0 MARCO_53_1021420296-30 56 -0.357485 hybrid +148_2-3 Q0 MARCO_35_984232001-7 57 -0.359545 hybrid +148_2-3 Q0 MARCO_59_535822204-4 58 -0.363425 hybrid +148_2-3 Q0 MARCO_29_1690477280-9 59 -0.363727 hybrid +148_2-3 Q0 MARCO_46_1313555559-3 60 -0.365006 hybrid +148_2-3 Q0 MARCO_37_1253662916-8 61 -0.365494 hybrid +148_2-3 Q0 MARCO_47_288467523-6 62 -0.365918 hybrid +148_2-3 Q0 MARCO_31_885665827-2 63 -0.369499 hybrid +148_2-3 Q0 MARCO_46_383441339-6 64 -0.370638 hybrid +148_2-3 Q0 MARCO_29_1689631691-25 65 -0.371092 hybrid +148_2-3 Q0 MARCO_59_533210826-4 66 -0.373953 hybrid +148_2-3 Q0 MARCO_02_361833187-38 67 -0.375522 hybrid +148_2-3 Q0 MARCO_59_890347234-2 68 -0.377549 hybrid +148_2-3 Q0 MARCO_59_533393421-10 69 -0.380380 hybrid +148_2-3 Q0 MARCO_54_360542762-3 70 -0.382167 hybrid +148_2-3 Q0 MARCO_59_533393421-7 71 -0.384565 hybrid +148_2-3 Q0 MARCO_48_1536413778-8 72 -0.385707 hybrid +148_2-3 Q0 MARCO_46_380842855-1 73 -0.390728 hybrid +148_2-3 Q0 MARCO_40_821590150-6 74 -0.394662 hybrid +148_2-3 Q0 MARCO_10_1132346649-14 75 -0.396094 hybrid +148_2-3 Q0 MARCO_46_382277930-1 76 -0.397308 hybrid +148_2-3 Q0 MARCO_13_1164549158-7 77 -0.397511 hybrid +148_2-3 Q0 MARCO_35_981232229-5 78 -0.397630 hybrid +148_2-3 Q0 MARCO_59_533393421-8 79 -0.398805 hybrid +148_2-3 Q0 MARCO_47_233508789-2 80 -0.399035 hybrid +148_2-3 Q0 MARCO_09_859123509-2 81 -0.400159 hybrid +148_2-3 Q0 MARCO_44_578029262-4 82 -0.401015 hybrid +148_2-3 Q0 MARCO_29_1690477280-3 83 -0.401812 hybrid +148_2-3 Q0 MARCO_35_983279505-19 84 -0.403821 hybrid +148_2-3 Q0 MARCO_12_319415238-82 85 -0.404945 hybrid +148_2-3 Q0 MARCO_47_675613261-4 86 -0.405301 hybrid +148_2-3 Q0 MARCO_54_360525242-2 87 -0.406700 hybrid +148_2-3 Q0 MARCO_40_1186998084-3 88 -0.406873 hybrid +148_2-3 Q0 MARCO_40_1278806270-6 89 -0.407318 hybrid +148_2-3 Q0 MARCO_03_579711135-55 90 -0.412523 hybrid +148_2-3 Q0 MARCO_28_39703165-1 91 -0.413285 hybrid +148_2-3 Q0 MARCO_59_533329192-9 92 -0.414241 hybrid +148_2-3 Q0 MARCO_29_1690477280-4 93 -0.414663 hybrid +148_2-3 Q0 MARCO_44_480221151-4 94 -0.416719 hybrid +148_2-3 Q0 MARCO_26_495350833-2 95 -0.417428 hybrid +148_2-3 Q0 MARCO_32_146801954-7 96 -0.418139 hybrid +148_2-3 Q0 MARCO_59_360873087-5 97 -0.418809 hybrid +148_2-3 Q0 MARCO_59_532628200-3 98 -0.420567 hybrid +148_2-3 Q0 MARCO_13_55446283-27 99 -0.421986 hybrid +148_2-3 Q0 MARCO_19_2061859640-9 100 -0.422713 hybrid +148_2-5 Q0 MARCO_35_984279294-4 1 0.250000 hybrid +148_2-5 Q0 MARCO_50_2384555865-19 2 0.106975 hybrid +148_2-5 Q0 MARCO_59_537115662-3 3 0.053871 hybrid +148_2-5 Q0 MARCO_53_1021420296-5 4 0.016203 hybrid +148_2-5 Q0 MARCO_28_339463138-14 5 0.015326 hybrid +148_2-5 Q0 MARCO_44_1486988924-11 6 0.011961 hybrid +148_2-5 Q0 MARCO_59_537093455-12 7 0.000567 hybrid +148_2-5 Q0 MARCO_35_982879909-8 8 -0.002171 hybrid +148_2-5 Q0 MARCO_59_536793863-8 9 -0.044474 hybrid +148_2-5 Q0 MARCO_59_534493172-14 10 -0.047320 hybrid +148_2-5 Q0 MARCO_55_764089383-6 11 -0.146901 hybrid +148_2-5 Q0 MARCO_29_1688895161-3 12 -0.147984 hybrid +148_2-5 Q0 MARCO_47_675640658-4 13 -0.156936 hybrid +148_2-5 Q0 MARCO_54_139606558-7 14 -0.157623 hybrid +148_2-5 Q0 MARCO_52_685589535-10 15 -0.168565 hybrid +148_2-5 Q0 MARCO_40_656436198-6 16 -0.171225 hybrid +148_2-5 Q0 MARCO_50_2157457161-17 17 -0.177031 hybrid +148_2-5 Q0 MARCO_54_139606558-2 18 -0.195325 hybrid +148_2-5 Q0 MARCO_37_833330438-6 19 -0.196126 hybrid +148_2-5 Q0 MARCO_12_1727721624-8 20 -0.197144 hybrid +148_2-5 Q0 MARCO_59_537115662-2 21 -0.202100 hybrid +148_2-5 Q0 MARCO_53_1021420296-2 22 -0.202852 hybrid +148_2-5 Q0 MARCO_35_983491522-4 23 -0.207973 hybrid +148_2-5 Q0 MARCO_00_760286197-3 24 -0.212749 hybrid +148_2-5 Q0 MARCO_40_822655009-10 25 -0.214993 hybrid +148_2-5 Q0 MARCO_35_984279294-3 26 -0.221787 hybrid +148_2-5 Q0 MARCO_29_1690779254-7 27 -0.223468 hybrid +148_2-5 Q0 MARCO_52_1142396638-4 28 -0.224280 hybrid +148_2-5 Q0 MARCO_30_1776444813-5 29 -0.225293 hybrid +148_2-5 Q0 MARCO_59_537124812-12 30 -0.239747 hybrid +148_2-5 Q0 MARCO_26_495534144-4 31 -0.240532 hybrid +148_2-5 Q0 MARCO_29_1690865094-2 32 -0.242848 hybrid +148_2-5 Q0 MARCO_13_21582751-7 33 -0.244498 hybrid +148_2-5 Q0 MARCO_43_1677717891-5 34 -0.250000 hybrid +148_2-5 Q0 MARCO_39_808403241-3 35 -0.250393 hybrid +148_2-5 Q0 MARCO_32_623514016-40 36 -0.256204 hybrid +148_2-5 Q0 MARCO_29_1020363654-2 37 -0.264624 hybrid +148_2-5 Q0 MARCO_13_24347013-4 38 -0.270858 hybrid +148_2-5 Q0 MARCO_29_1691007758-10 39 -0.272545 hybrid +148_2-5 Q0 MARCO_13_503360138-9 40 -0.272748 hybrid +148_2-5 Q0 MARCO_32_623459004-7 41 -0.274076 hybrid +148_2-5 Q0 MARCO_36_379585173-9 42 -0.275413 hybrid +148_2-5 Q0 MARCO_35_982257495-11 43 -0.278845 hybrid +148_2-5 Q0 MARCO_22_1641823232-9 44 -0.280228 hybrid +148_2-5 Q0 MARCO_13_503360138-17 45 -0.281671 hybrid +148_2-5 Q0 MARCO_44_1563207408-2 46 -0.283813 hybrid +148_2-5 Q0 MARCO_13_1153898834-6 47 -0.291304 hybrid +148_2-5 Q0 MARCO_29_1689703723-8 48 -0.293726 hybrid +148_2-5 Q0 MARCO_54_358360113-2 49 -0.299019 hybrid +148_2-5 Q0 MARCO_43_1680016746-10 50 -0.299306 hybrid +148_2-5 Q0 MARCO_19_2631048543-13 51 -0.301258 hybrid +148_2-5 Q0 MARCO_35_983508712-2 52 -0.302160 hybrid +148_2-5 Q0 MARCO_29_1689675997-13 53 -0.302650 hybrid +148_2-5 Q0 MARCO_29_1690657337-14 54 -0.303500 hybrid +148_2-5 Q0 MARCO_29_1689675997-20 55 -0.303840 hybrid +148_2-5 Q0 MARCO_59_535716852-4 56 -0.304343 hybrid +148_2-5 Q0 MARCO_50_2384555865-18 57 -0.307417 hybrid +148_2-5 Q0 MARCO_55_1345847584-3 58 -0.308426 hybrid +148_2-5 Q0 MARCO_50_1528479049-11 59 -0.310508 hybrid +148_2-5 Q0 MARCO_40_823069616-6 60 -0.315084 hybrid +148_2-5 Q0 MARCO_12_1728147392-2 61 -0.316617 hybrid +148_2-5 Q0 MARCO_29_594604563-1 62 -0.316648 hybrid +148_2-5 Q0 MARCO_00_723696053-1 63 -0.317044 hybrid +148_2-5 Q0 MARCO_13_1162383124-11 64 -0.318951 hybrid +148_2-5 Q0 MARCO_59_536827671-6 65 -0.320025 hybrid +148_2-5 Q0 MARCO_12_1728277993-11 66 -0.323003 hybrid +148_2-5 Q0 MARCO_12_1727840069-5 67 -0.323438 hybrid +148_2-5 Q0 MARCO_29_1690244783-8 68 -0.324739 hybrid +148_2-5 Q0 MARCO_52_1142396638-44 69 -0.325337 hybrid +148_2-5 Q0 MARCO_13_24347013-3 70 -0.326852 hybrid +148_2-5 Q0 MARCO_13_21582751-2 71 -0.327502 hybrid +148_2-5 Q0 MARCO_22_1197950647-7 72 -0.328585 hybrid +148_2-5 Q0 MARCO_13_1164604069-10 73 -0.332326 hybrid +148_2-5 Q0 MARCO_00_761177399-11 74 -0.332845 hybrid +148_2-5 Q0 MARCO_29_1690680339-11 75 -0.333578 hybrid +148_2-5 Q0 MARCO_28_536888163-2 76 -0.338095 hybrid +148_2-5 Q0 MARCO_13_24347013-5 77 -0.340205 hybrid +148_2-5 Q0 MARCO_40_1192357637-5 78 -0.340656 hybrid +148_2-5 Q0 MARCO_59_534407682-10 79 -0.341635 hybrid +148_2-5 Q0 MARCO_54_359162584-6 80 -0.343404 hybrid +148_2-5 Q0 MARCO_50_312745419-4 81 -0.343417 hybrid +148_2-5 Q0 MARCO_29_1689675997-14 82 -0.343895 hybrid +148_2-5 Q0 MARCO_12_1727944068-4 83 -0.344539 hybrid +148_2-5 Q0 MARCO_51_118009298-3 84 -0.346026 hybrid +148_2-5 Q0 MARCO_59_535716852-5 85 -0.346922 hybrid +148_2-5 Q0 MARCO_40_1187187759-8 86 -0.346923 hybrid +148_2-5 Q0 MARCO_35_983491522-3 87 -0.347535 hybrid +148_2-5 Q0 MARCO_35_982879909-7 88 -0.348327 hybrid +148_2-5 Q0 MARCO_29_1689831630-20 89 -0.350651 hybrid +148_2-5 Q0 MARCO_59_537124812-15 90 -0.351759 hybrid +148_2-5 Q0 MARCO_47_289065229-5 91 -0.354666 hybrid +148_2-5 Q0 MARCO_35_984598244-4 92 -0.358892 hybrid +148_2-5 Q0 MARCO_22_1648304722-2 93 -0.359260 hybrid +148_2-5 Q0 MARCO_57_1967218371-4 94 -0.359914 hybrid +148_2-5 Q0 MARCO_29_1688909897-14 95 -0.361257 hybrid +148_2-5 Q0 MARCO_40_1187016279-3 96 -0.363030 hybrid +148_2-5 Q0 MARCO_35_982216764-3 97 -0.365413 hybrid +148_2-5 Q0 MARCO_22_202231425-9 98 -0.368791 hybrid +148_2-5 Q0 MARCO_29_1689409645-2 99 -0.370599 hybrid +148_2-5 Q0 MARCO_35_983491522-2 100 -0.371271 hybrid +149_1-1 Q0 MARCO_50_2506569724-109 1 0.272662 hybrid +149_1-1 Q0 MARCO_19_2056728389-2 2 0.269855 hybrid +149_1-1 Q0 MARCO_29_266124390-1 3 0.250000 hybrid +149_1-1 Q0 MARCO_50_2498479427-2 4 0.187640 hybrid +149_1-1 Q0 MARCO_50_930260817-8 5 0.165102 hybrid +149_1-1 Q0 MARCO_23_244585903-1 6 0.145752 hybrid +149_1-1 Q0 MARCO_13_542473359-8 7 0.110217 hybrid +149_1-1 Q0 MARCO_40_1275474991-3 8 0.078239 hybrid +149_1-1 Q0 MARCO_41_633308289-3 9 0.074646 hybrid +149_1-1 Q0 MARCO_50_1399796977-10 10 0.067226 hybrid +149_1-1 Q0 MARCO_50_1969433273-2 11 0.052845 hybrid +149_1-1 Q0 MARCO_50_2503058169-35 12 0.040177 hybrid +149_1-1 Q0 KILT_59012195-9 13 0.039685 hybrid +149_1-1 Q0 MARCO_50_2503058169-27 14 0.033003 hybrid +149_1-1 Q0 MARCO_50_930260817-18 15 0.000881 hybrid +149_1-1 Q0 MARCO_46_387713679-4 16 -0.000365 hybrid +149_1-1 Q0 MARCO_53_1417280823-1 17 -0.002979 hybrid +149_1-1 Q0 MARCO_08_816090904-7 18 -0.004607 hybrid +149_1-1 Q0 MARCO_50_1969433273-16 19 -0.013943 hybrid +149_1-1 Q0 MARCO_34_543863470-3 20 -0.028784 hybrid +149_1-1 Q0 MARCO_50_1448845239-7 21 -0.032087 hybrid +149_1-1 Q0 MARCO_50_930260817-1 22 -0.033426 hybrid +149_1-1 Q0 MARCO_50_1519010033-6 23 -0.037199 hybrid +149_1-1 Q0 KILT_59012195-1 24 -0.037448 hybrid +149_1-1 Q0 MARCO_52_598387767-2 25 -0.042721 hybrid +149_1-1 Q0 MARCO_07_262601550-2 26 -0.044396 hybrid +149_1-1 Q0 KILT_2111074-3 27 -0.050608 hybrid +149_1-1 Q0 MARCO_20_363769433-4 28 -0.056276 hybrid +149_1-1 Q0 MARCO_44_1770445893-37 29 -0.061150 hybrid +149_1-1 Q0 MARCO_11_775099364-11 30 -0.070694 hybrid +149_1-1 Q0 MARCO_50_2503058169-34 31 -0.074316 hybrid +149_1-1 Q0 KILT_54113587-8 32 -0.091342 hybrid +149_1-1 Q0 MARCO_22_838526827-2 33 -0.091499 hybrid +149_1-1 Q0 MARCO_19_2056728389-3 34 -0.092988 hybrid +149_1-1 Q0 KILT_59012195-3 35 -0.093973 hybrid +149_1-1 Q0 MARCO_50_2506569724-15 36 -0.101623 hybrid +149_1-1 Q0 MARCO_11_775487494-6 37 -0.105355 hybrid +149_1-1 Q0 MARCO_22_838526827-3 38 -0.110449 hybrid +149_1-1 Q0 MARCO_11_776170692-3 39 -0.112743 hybrid +149_1-1 Q0 MARCO_52_598387767-3 40 -0.119408 hybrid +149_1-1 Q0 MARCO_14_471576089-3 41 -0.122925 hybrid +149_1-1 Q0 MARCO_41_2075074561-3 42 -0.131919 hybrid +149_1-1 Q0 MARCO_50_930160608-27 43 -0.132279 hybrid +149_1-1 Q0 MARCO_50_1618809057-20 44 -0.136016 hybrid +149_1-1 Q0 MARCO_52_1185715701-6 45 -0.140664 hybrid +149_1-1 Q0 MARCO_40_1191575982-1 46 -0.141110 hybrid +149_1-1 Q0 MARCO_11_775904773-5 47 -0.143069 hybrid +149_1-1 Q0 MARCO_50_2509171028-14 48 -0.143417 hybrid +149_1-1 Q0 MARCO_27_583264304-4 49 -0.145659 hybrid +149_1-1 Q0 MARCO_46_378699270-12 50 -0.149032 hybrid +149_1-1 Q0 MARCO_11_776340316-3 51 -0.152121 hybrid +149_1-1 Q0 MARCO_48_1537600726-1 52 -0.158652 hybrid +149_1-1 Q0 MARCO_29_402220207-3 53 -0.162210 hybrid +149_1-1 Q0 MARCO_50_2504117447-28 54 -0.164163 hybrid +149_1-1 Q0 MARCO_07_637735790-9 55 -0.166226 hybrid +149_1-1 Q0 KILT_665789-6 56 -0.171175 hybrid +149_1-1 Q0 MARCO_50_930260817-23 57 -0.173650 hybrid +149_1-1 Q0 MARCO_50_2497747935-8 58 -0.176854 hybrid +149_1-1 Q0 MARCO_12_586645920-12 59 -0.178529 hybrid +149_1-1 Q0 MARCO_11_775099364-1 60 -0.180378 hybrid +149_1-1 Q0 MARCO_51_1731582398-6 61 -0.180807 hybrid +149_1-1 Q0 MARCO_28_564064045-3 62 -0.180830 hybrid +149_1-1 Q0 MARCO_13_432527240-1 63 -0.181398 hybrid +149_1-1 Q0 MARCO_49_400780533-13 64 -0.181827 hybrid +149_1-1 Q0 MARCO_50_2506569724-60 65 -0.185918 hybrid +149_1-1 Q0 MARCO_50_2497747935-23 66 -0.187726 hybrid +149_1-1 Q0 KILT_2111074-11 67 -0.189175 hybrid +149_1-1 Q0 MARCO_51_1731582398-7 68 -0.193602 hybrid +149_1-1 Q0 MARCO_46_378633695-9 69 -0.196685 hybrid +149_1-1 Q0 MARCO_11_775099364-8 70 -0.201240 hybrid +149_1-1 Q0 MARCO_07_262601550-5 71 -0.202619 hybrid +149_1-1 Q0 MARCO_23_1085295197-2 72 -0.204451 hybrid +149_1-1 Q0 MARCO_53_86301228-13 73 -0.206751 hybrid +149_1-1 Q0 MARCO_41_633308289-2 74 -0.206943 hybrid +149_1-1 Q0 MARCO_11_776719134-3 75 -0.210136 hybrid +149_1-1 Q0 MARCO_53_1516388441-3 76 -0.214517 hybrid +149_1-1 Q0 MARCO_55_763593574-3 77 -0.225122 hybrid +149_1-1 Q0 MARCO_11_775099364-10 78 -0.225777 hybrid +149_1-1 Q0 MARCO_50_2506569724-77 79 -0.230812 hybrid +149_1-1 Q0 MARCO_03_580110833-6 80 -0.232522 hybrid +149_1-1 Q0 MARCO_22_246023626-1 81 -0.234440 hybrid +149_1-1 Q0 MARCO_07_262601550-1 82 -0.235883 hybrid +149_1-1 Q0 MARCO_50_2504117447-11 83 -0.238705 hybrid +149_1-1 Q0 MARCO_52_681689004-13 84 -0.242698 hybrid +149_1-1 Q0 MARCO_50_1969433273-3 85 -0.246795 hybrid +149_1-1 Q0 KILT_2111074-7 86 -0.248789 hybrid +149_1-1 Q0 MARCO_11_776635379-13 87 -0.249235 hybrid +149_1-1 Q0 MARCO_50_2268879788-13 88 -0.250000 hybrid +149_1-1 Q0 MARCO_50_1509696457-8 89 -0.250921 hybrid +149_1-1 Q0 MARCO_38_411820317-3 90 -0.251194 hybrid +149_1-1 Q0 MARCO_50_930260817-5 91 -0.251420 hybrid +149_1-1 Q0 MARCO_30_1131722693-17 92 -0.252433 hybrid +149_1-1 Q0 MARCO_53_1465253531-3 93 -0.252944 hybrid +149_1-1 Q0 MARCO_00_884586614-33 94 -0.259035 hybrid +149_1-1 Q0 MARCO_50_1448845239-4 95 -0.261451 hybrid +149_1-1 Q0 MARCO_48_1537600726-2 96 -0.261903 hybrid +149_1-1 Q0 MARCO_40_1279055765-13 97 -0.262929 hybrid +149_1-1 Q0 MARCO_50_2503058169-30 98 -0.265647 hybrid +149_1-1 Q0 MARCO_50_1969433273-9 99 -0.267716 hybrid +149_1-1 Q0 MARCO_50_2497747935-1 100 -0.270178 hybrid +149_1-3 Q0 MARCO_50_2506569724-109 1 0.449198 hybrid +149_1-3 Q0 MARCO_50_2498479427-2 2 0.294841 hybrid +149_1-3 Q0 MARCO_19_2056728389-2 3 0.108402 hybrid +149_1-3 Q0 KILT_59012195-9 4 0.084645 hybrid +149_1-3 Q0 MARCO_50_1399796977-10 5 -0.054295 hybrid +149_1-3 Q0 MARCO_46_387713679-4 6 -0.055826 hybrid +149_1-3 Q0 MARCO_51_1731582398-6 7 -0.062369 hybrid +149_1-3 Q0 KILT_665789-6 8 -0.088906 hybrid +149_1-3 Q0 MARCO_46_378699270-12 9 -0.096633 hybrid +149_1-3 Q0 MARCO_29_266124390-1 10 -0.108410 hybrid +149_1-3 Q0 MARCO_50_2497747935-1 11 -0.110234 hybrid +149_1-3 Q0 MARCO_50_930260817-8 12 -0.112203 hybrid +149_1-3 Q0 MARCO_53_1514777650-1 13 -0.118891 hybrid +149_1-3 Q0 MARCO_50_2503058169-35 14 -0.122870 hybrid +149_1-3 Q0 MARCO_46_378633695-9 15 -0.132847 hybrid +149_1-3 Q0 MARCO_13_542473359-8 16 -0.133997 hybrid +149_1-3 Q0 MARCO_53_1417280823-1 17 -0.143554 hybrid +149_1-3 Q0 MARCO_43_713571227-2 18 -0.166491 hybrid +149_1-3 Q0 MARCO_43_747917301-4 19 -0.169490 hybrid +149_1-3 Q0 MARCO_27_583264304-4 20 -0.176668 hybrid +149_1-3 Q0 MARCO_07_822177660-3 21 -0.179877 hybrid +149_1-3 Q0 MARCO_27_209390284-2 22 -0.181756 hybrid +149_1-3 Q0 MARCO_40_1191575982-1 23 -0.182776 hybrid +149_1-3 Q0 MARCO_51_1731582398-7 24 -0.187940 hybrid +149_1-3 Q0 MARCO_52_598387767-2 25 -0.193168 hybrid +149_1-3 Q0 MARCO_50_930160608-16 26 -0.197432 hybrid +149_1-3 Q0 MARCO_23_1773484121-5 27 -0.200621 hybrid +149_1-3 Q0 MARCO_19_2056728389-3 28 -0.202290 hybrid +149_1-3 Q0 MARCO_50_2497747935-23 29 -0.207763 hybrid +149_1-3 Q0 MARCO_30_1131722693-17 30 -0.208793 hybrid +149_1-3 Q0 MARCO_50_2503058169-34 31 -0.211897 hybrid +149_1-3 Q0 MARCO_11_775487494-6 32 -0.218455 hybrid +149_1-3 Q0 MARCO_50_1509696457-8 33 -0.223758 hybrid +149_1-3 Q0 MARCO_52_681689004-13 34 -0.225098 hybrid +149_1-3 Q0 MARCO_50_1448845239-7 35 -0.225223 hybrid +149_1-3 Q0 MARCO_50_2503058169-27 36 -0.226262 hybrid +149_1-3 Q0 MARCO_11_776719134-3 37 -0.234590 hybrid +149_1-3 Q0 MARCO_50_1618809057-20 38 -0.236394 hybrid +149_1-3 Q0 MARCO_55_763593574-3 39 -0.240208 hybrid +149_1-3 Q0 MARCO_50_2504117447-28 40 -0.241013 hybrid +149_1-3 Q0 MARCO_53_86301228-13 41 -0.241288 hybrid +149_1-3 Q0 MARCO_14_257204425-1 42 -0.250002 hybrid +149_1-3 Q0 MARCO_42_1884689747-5 43 -0.253334 hybrid +149_1-3 Q0 MARCO_11_775556690-11 44 -0.253889 hybrid +149_1-3 Q0 MARCO_07_637735790-9 45 -0.260747 hybrid +149_1-3 Q0 MARCO_52_1185715701-6 46 -0.262361 hybrid +149_1-3 Q0 MARCO_22_997066902-9 47 -0.266345 hybrid +149_1-3 Q0 KILT_59012195-1 48 -0.269924 hybrid +149_1-3 Q0 MARCO_11_776170692-3 49 -0.272213 hybrid +149_1-3 Q0 MARCO_11_776635379-13 50 -0.272743 hybrid +149_1-3 Q0 MARCO_46_387713679-1 51 -0.273448 hybrid +149_1-3 Q0 MARCO_23_244585903-1 52 -0.277471 hybrid +149_1-3 Q0 MARCO_41_633308289-2 53 -0.284379 hybrid +149_1-3 Q0 MARCO_14_947909862-4 54 -0.284574 hybrid +149_1-3 Q0 MARCO_50_1789079732-12 55 -0.288328 hybrid +149_1-3 Q0 MARCO_50_930260817-1 56 -0.289428 hybrid +149_1-3 Q0 MARCO_40_1275474991-3 57 -0.290072 hybrid +149_1-3 Q0 KILT_59012195-13 58 -0.290072 hybrid +149_1-3 Q0 MARCO_53_1448548338-2 59 -0.290259 hybrid +149_1-3 Q0 MARCO_45_136959205-2 60 -0.294856 hybrid +149_1-3 Q0 MARCO_41_633308289-3 61 -0.296360 hybrid +149_1-3 Q0 MARCO_11_775904773-5 62 -0.300034 hybrid +149_1-3 Q0 MARCO_50_2503058169-30 63 -0.300714 hybrid +149_1-3 Q0 MARCO_50_1931425493-27 64 -0.300914 hybrid +149_1-3 Q0 KILT_6111052-2 65 -0.301169 hybrid +149_1-3 Q0 KILT_2111074-3 66 -0.305662 hybrid +149_1-3 Q0 MARCO_09_387689068-15 67 -0.308112 hybrid +149_1-3 Q0 MARCO_11_776080002-6 68 -0.308956 hybrid +149_1-3 Q0 MARCO_09_387689068-19 69 -0.311271 hybrid +149_1-3 Q0 MARCO_19_739382593-3 70 -0.311768 hybrid +149_1-3 Q0 MARCO_53_1516388441-3 71 -0.312520 hybrid +149_1-3 Q0 MARCO_41_2075074561-3 72 -0.319018 hybrid +149_1-3 Q0 MARCO_51_1731582398-2 73 -0.319038 hybrid +149_1-3 Q0 MARCO_11_776340316-3 74 -0.319598 hybrid +149_1-3 Q0 MARCO_50_1969433273-16 75 -0.319923 hybrid +149_1-3 Q0 MARCO_50_930260817-5 76 -0.320833 hybrid +149_1-3 Q0 MARCO_11_775774732-10 77 -0.322082 hybrid +149_1-3 Q0 MARCO_50_1509696457-10 78 -0.324327 hybrid +149_1-3 Q0 MARCO_34_543863470-3 79 -0.326601 hybrid +149_1-3 Q0 MARCO_50_2268879788-8 80 -0.328332 hybrid +149_1-3 Q0 MARCO_50_1969433273-9 81 -0.329790 hybrid +149_1-3 Q0 MARCO_03_580110833-6 82 -0.330755 hybrid +149_1-3 Q0 MARCO_11_776340316-6 83 -0.331189 hybrid +149_1-3 Q0 MARCO_50_2268879788-13 84 -0.331282 hybrid +149_1-3 Q0 MARCO_46_387713679-2 85 -0.331834 hybrid +149_1-3 Q0 KILT_25606638-7 86 -0.332353 hybrid +149_1-3 Q0 MARCO_53_495549415-1 87 -0.333087 hybrid +149_1-3 Q0 MARCO_24_1015620193-3 88 -0.333269 hybrid +149_1-3 Q0 KILT_54113587-8 89 -0.338502 hybrid +149_1-3 Q0 MARCO_44_1770445893-37 90 -0.340791 hybrid +149_1-3 Q0 MARCO_08_816090904-5 91 -0.340791 hybrid +149_1-3 Q0 MARCO_10_969054202-15 92 -0.342356 hybrid +149_1-3 Q0 MARCO_50_796224832-21 93 -0.344729 hybrid +149_1-3 Q0 MARCO_22_838526827-3 94 -0.344980 hybrid +149_1-3 Q0 MARCO_50_1519010033-6 95 -0.345650 hybrid +149_1-3 Q0 MARCO_05_1745840444-10 96 -0.345745 hybrid +149_1-3 Q0 MARCO_27_583459329-7 97 -0.346485 hybrid +149_1-3 Q0 MARCO_13_21768197-13 98 -0.346580 hybrid +149_1-3 Q0 MARCO_05_1348554376-7 99 -0.348329 hybrid +149_1-3 Q0 MARCO_01_795318884-4 100 -0.352158 hybrid +149_1-5 Q0 MARCO_13_542473359-8 1 0.249997 hybrid +149_1-5 Q0 MARCO_50_513855146-28 2 0.085139 hybrid +149_1-5 Q0 MARCO_50_2506569724-109 3 0.077241 hybrid +149_1-5 Q0 KILT_59012195-9 4 0.074714 hybrid +149_1-5 Q0 MARCO_27_583264304-4 5 0.038495 hybrid +149_1-5 Q0 MARCO_46_387713679-4 6 0.036645 hybrid +149_1-5 Q0 MARCO_59_361500488-5 7 0.013583 hybrid +149_1-5 Q0 MARCO_51_1731582398-6 8 -0.005464 hybrid +149_1-5 Q0 KILT_59012195-1 9 -0.020179 hybrid +149_1-5 Q0 MARCO_50_2503058169-35 10 -0.023196 hybrid +149_1-5 Q0 MARCO_50_930260817-5 11 -0.028602 hybrid +149_1-5 Q0 MARCO_46_387713679-1 12 -0.063394 hybrid +149_1-5 Q0 MARCO_41_2075074561-3 13 -0.064892 hybrid +149_1-5 Q0 MARCO_18_2718509899-24 14 -0.082145 hybrid +149_1-5 Q0 MARCO_50_1519010033-6 15 -0.090701 hybrid +149_1-5 Q0 MARCO_53_1465253531-3 16 -0.106160 hybrid +149_1-5 Q0 MARCO_07_262601550-2 17 -0.114935 hybrid +149_1-5 Q0 MARCO_51_1731582398-7 18 -0.120504 hybrid +149_1-5 Q0 MARCO_20_363769433-4 19 -0.126715 hybrid +149_1-5 Q0 MARCO_50_930260817-22 20 -0.131938 hybrid +149_1-5 Q0 MARCO_53_359234373-2 21 -0.132478 hybrid +149_1-5 Q0 MARCO_50_2497807304-18 22 -0.141156 hybrid +149_1-5 Q0 MARCO_41_633308289-3 23 -0.143112 hybrid +149_1-5 Q0 MARCO_23_244585903-1 24 -0.144758 hybrid +149_1-5 Q0 MARCO_43_747917301-4 25 -0.152157 hybrid +149_1-5 Q0 MARCO_50_2498479427-2 26 -0.154689 hybrid +149_1-5 Q0 MARCO_08_816090904-7 27 -0.171260 hybrid +149_1-5 Q0 KILT_6014851-42 28 -0.189547 hybrid +149_1-5 Q0 MARCO_50_492302160-8 29 -0.190668 hybrid +149_1-5 Q0 MARCO_50_2497807304-20 30 -0.194689 hybrid +149_1-5 Q0 MARCO_50_930260817-3 31 -0.195718 hybrid +149_1-5 Q0 MARCO_51_1731582398-2 32 -0.198826 hybrid +149_1-5 Q0 MARCO_41_633308289-2 33 -0.202449 hybrid +149_1-5 Q0 MARCO_34_543863470-8 34 -0.209104 hybrid +149_1-5 Q0 MARCO_52_598387767-2 35 -0.209782 hybrid +149_1-5 Q0 MARCO_31_1557771366-2 36 -0.212288 hybrid +149_1-5 Q0 KILT_222034-7 37 -0.212686 hybrid +149_1-5 Q0 MARCO_50_1399796977-10 38 -0.222648 hybrid +149_1-5 Q0 KILT_2111074-3 39 -0.231228 hybrid +149_1-5 Q0 MARCO_19_2056728389-3 40 -0.234816 hybrid +149_1-5 Q0 MARCO_13_1664804551-4 41 -0.236772 hybrid +149_1-5 Q0 MARCO_16_3025199239-3 42 -0.238556 hybrid +149_1-5 Q0 MARCO_52_1185715701-6 43 -0.246708 hybrid +149_1-5 Q0 MARCO_50_2497807304-21 44 -0.248262 hybrid +149_1-5 Q0 MARCO_14_1324408663-7 45 -0.250003 hybrid +149_1-5 Q0 MARCO_59_437144138-3 46 -0.253210 hybrid +149_1-5 Q0 MARCO_50_2509171028-14 47 -0.253852 hybrid +149_1-5 Q0 MARCO_50_2506569724-60 48 -0.254392 hybrid +149_1-5 Q0 MARCO_46_378633695-9 49 -0.255121 hybrid +149_1-5 Q0 MARCO_50_930260817-2 50 -0.255366 hybrid +149_1-5 Q0 MARCO_53_1417280823-1 51 -0.256120 hybrid +149_1-5 Q0 MARCO_05_1348554376-7 52 -0.256125 hybrid +149_1-5 Q0 MARCO_46_387713679-2 53 -0.256364 hybrid +149_1-5 Q0 MARCO_23_1085295197-7 54 -0.260736 hybrid +149_1-5 Q0 MARCO_34_543863470-5 55 -0.265118 hybrid +149_1-5 Q0 MARCO_55_763593574-3 56 -0.266326 hybrid +149_1-5 Q0 MARCO_52_680902651-21 57 -0.268853 hybrid +149_1-5 Q0 MARCO_11_775099364-8 58 -0.270825 hybrid +149_1-5 Q0 MARCO_46_378699270-12 59 -0.271396 hybrid +149_1-5 Q0 KILT_10448121-2 60 -0.272955 hybrid +149_1-5 Q0 MARCO_41_1383279793-5 61 -0.278158 hybrid +149_1-5 Q0 MARCO_26_1124922906-2 62 -0.280532 hybrid +149_1-5 Q0 MARCO_22_994341299-8 63 -0.282234 hybrid +149_1-5 Q0 MARCO_19_2056728389-2 64 -0.285357 hybrid +149_1-5 Q0 MARCO_46_122997579-2 65 -0.286045 hybrid +149_1-5 Q0 MARCO_19_2056728389-1 66 -0.289062 hybrid +149_1-5 Q0 MARCO_27_583459329-7 67 -0.292664 hybrid +149_1-5 Q0 MARCO_02_839953384-13 68 -0.295472 hybrid +149_1-5 Q0 MARCO_50_930260817-23 69 -0.296048 hybrid +149_1-5 Q0 MARCO_50_2497807304-55 70 -0.297688 hybrid +149_1-5 Q0 MARCO_50_1660829735-1 71 -0.298106 hybrid +149_1-5 Q0 MARCO_50_2504117447-5 72 -0.300598 hybrid +149_1-5 Q0 MARCO_21_1385040724-17 73 -0.301320 hybrid +149_1-5 Q0 KILT_52522301-2 74 -0.304009 hybrid +149_1-5 Q0 MARCO_09_387689068-19 75 -0.305546 hybrid +149_1-5 Q0 MARCO_29_402220207-3 76 -0.309688 hybrid +149_1-5 Q0 MARCO_35_331699241-4 77 -0.310514 hybrid +149_1-5 Q0 KILT_30104163-3 78 -0.311461 hybrid +149_1-5 Q0 MARCO_24_436535769-54 79 -0.313241 hybrid +149_1-5 Q0 MARCO_46_454253917-79 80 -0.313241 hybrid +149_1-5 Q0 MARCO_11_776340316-3 81 -0.316786 hybrid +149_1-5 Q0 MARCO_18_1295495503-13 82 -0.317026 hybrid +149_1-5 Q0 MARCO_50_930260817-8 83 -0.319951 hybrid +149_1-5 Q0 MARCO_30_1131722693-17 84 -0.321245 hybrid +149_1-5 Q0 MARCO_15_529028420-3 85 -0.321525 hybrid +149_1-5 Q0 MARCO_01_1446070844-117 86 -0.321911 hybrid +149_1-5 Q0 MARCO_28_422103363-4 87 -0.323354 hybrid +149_1-5 Q0 KILT_75469-13 88 -0.323684 hybrid +149_1-5 Q0 MARCO_50_930260817-18 89 -0.324598 hybrid +149_1-5 Q0 MARCO_23_1727034332-2 90 -0.325224 hybrid +149_1-5 Q0 MARCO_50_930260817-27 91 -0.327125 hybrid +149_1-5 Q0 MARCO_52_681689004-13 92 -0.327573 hybrid +149_1-5 Q0 KILT_59012195-13 93 -0.328664 hybrid +149_1-5 Q0 MARCO_15_137154303-6 94 -0.329535 hybrid +149_1-5 Q0 MARCO_42_206248970-6 95 -0.331935 hybrid +149_1-5 Q0 MARCO_13_577643923-2 96 -0.333461 hybrid +149_1-5 Q0 MARCO_50_2170752409-5 97 -0.334337 hybrid +149_1-5 Q0 MARCO_22_825900840-7 98 -0.336776 hybrid +149_1-5 Q0 KILT_486842-1 99 -0.337470 hybrid +149_1-5 Q0 MARCO_33_178546655-15 100 -0.338157 hybrid +149_2-1 Q0 MARCO_13_542473359-8 1 0.249998 hybrid +149_2-1 Q0 KILT_59012195-9 2 0.148056 hybrid +149_2-1 Q0 MARCO_51_1731582398-2 3 0.061581 hybrid +149_2-1 Q0 MARCO_27_583264304-4 4 0.020421 hybrid +149_2-1 Q0 MARCO_31_1564796326-79 5 0.013260 hybrid +149_2-1 Q0 MARCO_50_2506569724-109 6 -0.002480 hybrid +149_2-1 Q0 MARCO_13_542473359-5 7 -0.006424 hybrid +149_2-1 Q0 MARCO_41_2075074561-3 8 -0.025999 hybrid +149_2-1 Q0 MARCO_50_2498479427-2 9 -0.031025 hybrid +149_2-1 Q0 MARCO_50_930260817-8 10 -0.039368 hybrid +149_2-1 Q0 MARCO_50_930260817-23 11 -0.046121 hybrid +149_2-1 Q0 MARCO_50_2497807304-18 12 -0.053308 hybrid +149_2-1 Q0 MARCO_50_522692081-25 13 -0.063644 hybrid +149_2-1 Q0 MARCO_20_1108553339-5 14 -0.076020 hybrid +149_2-1 Q0 MARCO_33_178546655-126 15 -0.077042 hybrid +149_2-1 Q0 MARCO_50_1677916118-12 16 -0.101970 hybrid +149_2-1 Q0 MARCO_38_411820317-3 17 -0.105704 hybrid +149_2-1 Q0 MARCO_19_2056728389-2 18 -0.114489 hybrid +149_2-1 Q0 MARCO_44_99538423-4 19 -0.119951 hybrid +149_2-1 Q0 MARCO_30_1131722693-17 20 -0.124047 hybrid +149_2-1 Q0 MARCO_19_2056728389-3 21 -0.127731 hybrid +149_2-1 Q0 MARCO_50_492302160-8 22 -0.131473 hybrid +149_2-1 Q0 MARCO_50_930260817-3 23 -0.132739 hybrid +149_2-1 Q0 MARCO_22_996415617-7 24 -0.133660 hybrid +149_2-1 Q0 MARCO_50_930260817-5 25 -0.135506 hybrid +149_2-1 Q0 MARCO_51_1731582398-6 26 -0.138790 hybrid +149_2-1 Q0 MARCO_10_969054202-15 27 -0.141978 hybrid +149_2-1 Q0 MARCO_20_1108553339-7 28 -0.145102 hybrid +149_2-1 Q0 MARCO_50_1399796977-10 29 -0.148466 hybrid +149_2-1 Q0 MARCO_22_994341299-8 30 -0.150733 hybrid +149_2-1 Q0 MARCO_50_2497747935-1 31 -0.151019 hybrid +149_2-1 Q0 MARCO_20_67992270-1 32 -0.154846 hybrid +149_2-1 Q0 KILT_59012195-8 33 -0.156695 hybrid +149_2-1 Q0 MARCO_26_1779094614-5 34 -0.158277 hybrid +149_2-1 Q0 MARCO_50_2497807304-21 35 -0.160106 hybrid +149_2-1 Q0 MARCO_50_930260817-18 36 -0.160897 hybrid +149_2-1 Q0 MARCO_40_1277870246-6 37 -0.165119 hybrid +149_2-1 Q0 MARCO_50_930260817-1 38 -0.181035 hybrid +149_2-1 Q0 MARCO_18_2718509899-24 39 -0.181725 hybrid +149_2-1 Q0 MARCO_50_2497747935-32 40 -0.189210 hybrid +149_2-1 Q0 KILT_25745171-6 41 -0.202831 hybrid +149_2-1 Q0 MARCO_50_2497807304-20 42 -0.205556 hybrid +149_2-1 Q0 MARCO_50_930244658-6 43 -0.208436 hybrid +149_2-1 Q0 MARCO_23_1085295197-7 44 -0.231750 hybrid +149_2-1 Q0 MARCO_50_930260817-6 45 -0.231884 hybrid +149_2-1 Q0 MARCO_51_1731582398-7 46 -0.234122 hybrid +149_2-1 Q0 MARCO_50_930202238-23 47 -0.237860 hybrid +149_2-1 Q0 MARCO_50_930160608-16 48 -0.245656 hybrid +149_2-1 Q0 MARCO_50_513855146-4 49 -0.248848 hybrid +149_2-1 Q0 MARCO_56_189439749-1 50 -0.250002 hybrid +149_2-1 Q0 MARCO_59_361500488-5 51 -0.250080 hybrid +149_2-1 Q0 MARCO_50_1611570195-2 52 -0.255433 hybrid +149_2-1 Q0 MARCO_20_1108553339-1 53 -0.264651 hybrid +149_2-1 Q0 MARCO_16_1884092099-7 54 -0.265295 hybrid +149_2-1 Q0 MARCO_50_930244658-8 55 -0.266892 hybrid +149_2-1 Q0 MARCO_36_995471058-3 56 -0.268259 hybrid +149_2-1 Q0 MARCO_50_930244658-3 57 -0.270723 hybrid +149_2-1 Q0 KILT_6014851-38 58 -0.272186 hybrid +149_2-1 Q0 MARCO_18_3817510122-34 59 -0.275025 hybrid +149_2-1 Q0 MARCO_28_422103363-4 60 -0.277233 hybrid +149_2-1 Q0 MARCO_22_994017440-9 61 -0.278498 hybrid +149_2-1 Q0 MARCO_46_384234314-8 62 -0.283427 hybrid +149_2-1 Q0 MARCO_14_949127720-5 63 -0.284423 hybrid +149_2-1 Q0 MARCO_02_931565652-16 64 -0.285424 hybrid +149_2-1 Q0 MARCO_22_534279812-3 65 -0.286635 hybrid +149_2-1 Q0 KILT_6014851-43 66 -0.289377 hybrid +149_2-1 Q0 MARCO_13_329543671-3 67 -0.290727 hybrid +149_2-1 Q0 MARCO_44_1280158600-2 68 -0.291711 hybrid +149_2-1 Q0 MARCO_56_189278371-83 69 -0.296383 hybrid +149_2-1 Q0 MARCO_55_763593574-3 70 -0.298851 hybrid +149_2-1 Q0 MARCO_13_1664804551-4 71 -0.301896 hybrid +149_2-1 Q0 KILT_18618509-22 72 -0.304835 hybrid +149_2-1 Q0 KILT_47314368-4 73 -0.305016 hybrid +149_2-1 Q0 MARCO_50_2497747935-34 74 -0.307909 hybrid +149_2-1 Q0 MARCO_33_178546655-135 75 -0.308414 hybrid +149_2-1 Q0 MARCO_50_2503058169-35 76 -0.308683 hybrid +149_2-1 Q0 MARCO_46_387713679-4 77 -0.309911 hybrid +149_2-1 Q0 MARCO_13_321403865-4 78 -0.315933 hybrid +149_2-1 Q0 MARCO_52_1327961261-3 79 -0.316421 hybrid +149_2-1 Q0 MARCO_19_2056728389-1 80 -0.320949 hybrid +149_2-1 Q0 KILT_59012195-1 81 -0.322413 hybrid +149_2-1 Q0 MARCO_50_2375720993-2 82 -0.323271 hybrid +149_2-1 Q0 MARCO_50_2497747935-12 83 -0.325987 hybrid +149_2-1 Q0 MARCO_50_2497807304-28 84 -0.326084 hybrid +149_2-1 Q0 MARCO_50_513855146-28 85 -0.326101 hybrid +149_2-1 Q0 MARCO_50_930260817-2 86 -0.326155 hybrid +149_2-1 Q0 MARCO_50_930160608-10 87 -0.328485 hybrid +149_2-1 Q0 MARCO_50_2497807304-60 88 -0.334839 hybrid +149_2-1 Q0 MARCO_50_2497807304-55 89 -0.339057 hybrid +149_2-1 Q0 MARCO_53_1465253531-3 90 -0.339953 hybrid +149_2-1 Q0 MARCO_46_540480160-2 91 -0.344420 hybrid +149_2-1 Q0 MARCO_05_1141746875-3 92 -0.346942 hybrid +149_2-1 Q0 KILT_28452110-1 93 -0.347982 hybrid +149_2-1 Q0 MARCO_14_1324408663-7 94 -0.350883 hybrid +149_2-1 Q0 MARCO_50_2506569724-58 95 -0.351206 hybrid +149_2-1 Q0 MARCO_33_178546655-106 96 -0.352009 hybrid +149_2-1 Q0 KILT_30104163-3 97 -0.352198 hybrid +149_2-1 Q0 MARCO_50_519742996-7 98 -0.353439 hybrid +149_2-1 Q0 MARCO_50_2506569724-57 99 -0.354031 hybrid +149_2-1 Q0 MARCO_43_774872518-10 100 -0.355676 hybrid +149_2-3 Q0 MARCO_32_596666309-26 1 0.249998 hybrid +149_2-3 Q0 MARCO_50_637809973-9 2 0.053273 hybrid +149_2-3 Q0 MARCO_00_589049335-87 3 -0.084965 hybrid +149_2-3 Q0 MARCO_24_1909947062-53 4 -0.126922 hybrid +149_2-3 Q0 MARCO_25_72808695-10 5 -0.132787 hybrid +149_2-3 Q0 MARCO_01_1179353498-14 6 -0.147451 hybrid +149_2-3 Q0 MARCO_41_1194679390-47 7 -0.153073 hybrid +149_2-3 Q0 MARCO_41_1235327904-11 8 -0.166891 hybrid +149_2-3 Q0 MARCO_14_747523206-2 9 -0.169668 hybrid +149_2-3 Q0 MARCO_14_747523206-4 10 -0.171923 hybrid +149_2-3 Q0 MARCO_41_1137503296-9 11 -0.172931 hybrid +149_2-3 Q0 MARCO_15_311086668-11 12 -0.175790 hybrid +149_2-3 Q0 MARCO_50_2561265932-25 13 -0.184612 hybrid +149_2-3 Q0 MARCO_41_1179472384-35 14 -0.196976 hybrid +149_2-3 Q0 MARCO_41_1179472384-69 15 -0.198587 hybrid +149_2-3 Q0 MARCO_41_1209134785-30 16 -0.199430 hybrid +149_2-3 Q0 MARCO_51_1500746051-8 17 -0.221172 hybrid +149_2-3 Q0 MARCO_10_355156454-38 18 -0.221978 hybrid +149_2-3 Q0 MARCO_35_1722626728-5 19 -0.225696 hybrid +149_2-3 Q0 MARCO_50_939080155-26 20 -0.238000 hybrid +149_2-3 Q0 MARCO_16_1884092099-2 21 -0.250002 hybrid +149_2-3 Q0 MARCO_10_375627158-2 22 -0.250576 hybrid +149_2-3 Q0 MARCO_48_1400603345-4 23 -0.252174 hybrid +149_2-3 Q0 MARCO_01_802276193-1 24 -0.253897 hybrid +149_2-3 Q0 MARCO_41_1137503296-20 25 -0.256469 hybrid +149_2-3 Q0 MARCO_41_1379972176-96 26 -0.263554 hybrid +149_2-3 Q0 MARCO_41_1235327904-15 27 -0.265499 hybrid +149_2-3 Q0 MARCO_37_176450512-6 28 -0.266824 hybrid +149_2-3 Q0 MARCO_25_1023032532-6 29 -0.275986 hybrid +149_2-3 Q0 MARCO_50_491523289-5 30 -0.276991 hybrid +149_2-3 Q0 MARCO_00_589049335-147 31 -0.278016 hybrid +149_2-3 Q0 MARCO_41_1220813784-42 32 -0.280379 hybrid +149_2-3 Q0 MARCO_41_1235327904-37 33 -0.283675 hybrid +149_2-3 Q0 MARCO_35_1722626728-1 34 -0.284956 hybrid +149_2-3 Q0 MARCO_41_1162390508-30 35 -0.285917 hybrid +149_2-3 Q0 MARCO_05_1167664590-3 36 -0.289345 hybrid +149_2-3 Q0 MARCO_32_596799711-41 37 -0.292665 hybrid +149_2-3 Q0 MARCO_34_1322249938-15 38 -0.297907 hybrid +149_2-3 Q0 MARCO_56_1010359903-38 39 -0.297991 hybrid +149_2-3 Q0 MARCO_41_1182270792-3 40 -0.299148 hybrid +149_2-3 Q0 MARCO_41_1403746677-19 41 -0.302815 hybrid +149_2-3 Q0 MARCO_41_1229932042-63 42 -0.304160 hybrid +149_2-3 Q0 MARCO_15_1275857024-7 43 -0.308903 hybrid +149_2-3 Q0 MARCO_41_1162390508-23 44 -0.311691 hybrid +149_2-3 Q0 MARCO_41_1123956444-27 45 -0.317162 hybrid +149_2-3 Q0 MARCO_41_1188921370-79 46 -0.319275 hybrid +149_2-3 Q0 MARCO_14_747523206-7 47 -0.320061 hybrid +149_2-3 Q0 MARCO_40_1191575982-2 48 -0.320455 hybrid +149_2-3 Q0 MARCO_32_1275595068-10 49 -0.321021 hybrid +149_2-3 Q0 MARCO_32_596799711-42 50 -0.321605 hybrid +149_2-3 Q0 MARCO_54_550248557-5 51 -0.322228 hybrid +149_2-3 Q0 MARCO_41_1194679390-17 52 -0.323924 hybrid +149_2-3 Q0 MARCO_37_1185835922-4 53 -0.325373 hybrid +149_2-3 Q0 MARCO_51_1238693587-67 54 -0.328313 hybrid +149_2-3 Q0 MARCO_54_1938314570-7 55 -0.332038 hybrid +149_2-3 Q0 MARCO_41_1179472384-29 56 -0.333045 hybrid +149_2-3 Q0 MARCO_50_2489311481-42 57 -0.334461 hybrid +149_2-3 Q0 MARCO_24_141027530-10 58 -0.334714 hybrid +149_2-3 Q0 MARCO_51_1238693587-63 59 -0.336696 hybrid +149_2-3 Q0 MARCO_24_1909947062-33 60 -0.339652 hybrid +149_2-3 Q0 MARCO_00_589049335-73 61 -0.342332 hybrid +149_2-3 Q0 MARCO_41_1169008544-69 62 -0.342781 hybrid +149_2-3 Q0 MARCO_35_804595736-4 63 -0.345299 hybrid +149_2-3 Q0 MARCO_51_454838175-11 64 -0.345922 hybrid +149_2-3 Q0 MARCO_03_1029808199-4 65 -0.346421 hybrid +149_2-3 Q0 MARCO_41_1169008544-50 66 -0.348083 hybrid +149_2-3 Q0 MARCO_24_1909947062-23 67 -0.348268 hybrid +149_2-3 Q0 MARCO_30_817030000-2 68 -0.351204 hybrid +149_2-3 Q0 MARCO_35_1730575540-68 69 -0.355121 hybrid +149_2-3 Q0 MARCO_23_1831393208-7 70 -0.357306 hybrid +149_2-3 Q0 KILT_41677521-7 71 -0.357393 hybrid +149_2-3 Q0 MARCO_41_1179472384-44 72 -0.358735 hybrid +149_2-3 Q0 MARCO_41_1137503296-42 73 -0.360168 hybrid +149_2-3 Q0 MARCO_39_1697713928-5 74 -0.362871 hybrid +149_2-3 Q0 MARCO_23_1281648178-3 75 -0.363815 hybrid +149_2-3 Q0 MARCO_26_348173034-32 76 -0.366367 hybrid +149_2-3 Q0 MARCO_11_719760350-9 77 -0.371234 hybrid +149_2-3 Q0 MARCO_41_1194679390-29 78 -0.372498 hybrid +149_2-3 Q0 MARCO_39_1366234933-6 79 -0.374797 hybrid +149_2-3 Q0 MARCO_41_1143444374-33 80 -0.375054 hybrid +149_2-3 Q0 KILT_1780163-28 81 -0.375205 hybrid +149_2-3 Q0 MARCO_41_1210168895-13 82 -0.375761 hybrid +149_2-3 Q0 MARCO_13_1766552008-1 83 -0.377794 hybrid +149_2-3 Q0 MARCO_30_1135728886-7 84 -0.378596 hybrid +149_2-3 Q0 MARCO_39_1696973953-3 85 -0.378782 hybrid +149_2-3 Q0 MARCO_50_1980337202-19 86 -0.381064 hybrid +149_2-3 Q0 MARCO_25_1031899298-14 87 -0.382399 hybrid +149_2-3 Q0 MARCO_23_1831217260-6 88 -0.384583 hybrid +149_2-3 Q0 MARCO_14_747523206-8 89 -0.385247 hybrid +149_2-3 Q0 MARCO_26_349144039-10 90 -0.386518 hybrid +149_2-3 Q0 MARCO_26_348173034-33 91 -0.387243 hybrid +149_2-3 Q0 KILT_61404596-7 92 -0.387445 hybrid +149_2-3 Q0 MARCO_50_2561265932-4 93 -0.388530 hybrid +149_2-3 Q0 MARCO_00_589049335-83 94 -0.389437 hybrid +149_2-3 Q0 MARCO_51_1237560567-14 95 -0.391739 hybrid +149_2-3 Q0 MARCO_41_1399599502-19 96 -0.392623 hybrid +149_2-3 Q0 MARCO_41_1403746677-16 97 -0.394183 hybrid +149_2-3 Q0 MARCO_18_445386357-7 98 -0.395832 hybrid +149_2-3 Q0 MARCO_41_1179472384-39 99 -0.396142 hybrid +149_2-3 Q0 MARCO_03_246430492-5 100 -0.396604 hybrid +149_2-5 Q0 MARCO_24_571574-9 1 0.317619 hybrid +149_2-5 Q0 MARCO_40_1191575982-2 2 0.250000 hybrid +149_2-5 Q0 MARCO_30_1131722693-17 3 0.058358 hybrid +149_2-5 Q0 MARCO_27_583264304-5 4 -0.043639 hybrid +149_2-5 Q0 MARCO_40_1191575982-7 5 -0.066285 hybrid +149_2-5 Q0 MARCO_27_583264304-3 6 -0.117054 hybrid +149_2-5 Q0 MARCO_10_969054202-15 7 -0.133333 hybrid +149_2-5 Q0 MARCO_40_1191575982-1 8 -0.134834 hybrid +149_2-5 Q0 MARCO_17_2957562845-7 9 -0.182534 hybrid +149_2-5 Q0 MARCO_27_583264304-7 10 -0.209009 hybrid +149_2-5 Q0 MARCO_40_1191575982-8 11 -0.217604 hybrid +149_2-5 Q0 MARCO_40_1191575982-6 12 -0.223313 hybrid +149_2-5 Q0 MARCO_00_884186760-76 13 -0.231912 hybrid +149_2-5 Q0 MARCO_40_1191575982-3 14 -0.242325 hybrid +149_2-5 Q0 MARCO_53_1373867727-4 15 -0.250000 hybrid +149_2-5 Q0 KILT_13478962-1 16 -0.252119 hybrid +149_2-5 Q0 MARCO_40_1191575982-9 17 -0.255287 hybrid +149_2-5 Q0 MARCO_50_938315076-9 18 -0.265327 hybrid +149_2-5 Q0 MARCO_36_900874695-1 19 -0.274293 hybrid +149_2-5 Q0 MARCO_40_1274658127-3 20 -0.277905 hybrid +149_2-5 Q0 MARCO_50_485274499-4 21 -0.284260 hybrid +149_2-5 Q0 MARCO_49_794417000-1 22 -0.288113 hybrid +149_2-5 Q0 MARCO_27_583264304-4 23 -0.291319 hybrid +149_2-5 Q0 MARCO_50_2512736612-28 24 -0.291978 hybrid +149_2-5 Q0 MARCO_51_610160243-12 25 -0.309421 hybrid +149_2-5 Q0 MARCO_40_1191575982-4 26 -0.318858 hybrid +149_2-5 Q0 MARCO_11_786086041-8 27 -0.329540 hybrid +149_2-5 Q0 MARCO_01_1058412633-17 28 -0.333582 hybrid +149_2-5 Q0 MARCO_36_900874695-3 29 -0.341555 hybrid +149_2-5 Q0 MARCO_01_1058412633-13 30 -0.343783 hybrid +149_2-5 Q0 MARCO_40_172709008-4 31 -0.347455 hybrid +149_2-5 Q0 MARCO_51_1242222040-111 32 -0.350079 hybrid +149_2-5 Q0 MARCO_24_571574-8 33 -0.351878 hybrid +149_2-5 Q0 MARCO_50_1459198655-28 34 -0.355490 hybrid +149_2-5 Q0 MARCO_18_1316254592-8 35 -0.356568 hybrid +149_2-5 Q0 MARCO_36_900874695-5 36 -0.367436 hybrid +149_2-5 Q0 MARCO_50_492122785-3 37 -0.371223 hybrid +149_2-5 Q0 MARCO_50_1393823696-19 38 -0.372838 hybrid +149_2-5 Q0 MARCO_03_585488427-311 39 -0.377074 hybrid +149_2-5 Q0 MARCO_05_419817382-5 40 -0.377336 hybrid +149_2-5 Q0 MARCO_50_491410726-26 41 -0.384195 hybrid +149_2-5 Q0 MARCO_50_1459198655-33 42 -0.384752 hybrid +149_2-5 Q0 MARCO_09_427897160-12 43 -0.395149 hybrid +149_2-5 Q0 MARCO_16_1884092099-2 44 -0.396367 hybrid +149_2-5 Q0 MARCO_19_1611231381-29 45 -0.397943 hybrid +149_2-5 Q0 MARCO_19_1611231381-31 46 -0.397943 hybrid +149_2-5 Q0 MARCO_12_124818619-6 47 -0.398205 hybrid +149_2-5 Q0 MARCO_41_1190752049-11 48 -0.400269 hybrid +149_2-5 Q0 MARCO_50_491410726-7 49 -0.400275 hybrid +149_2-5 Q0 MARCO_03_585488427-165 50 -0.400550 hybrid +149_2-5 Q0 MARCO_50_2561159032-3 51 -0.405621 hybrid +149_2-5 Q0 MARCO_50_1931425493-27 52 -0.405634 hybrid +149_2-5 Q0 MARCO_30_1026589018-57 53 -0.409061 hybrid +149_2-5 Q0 MARCO_18_3768094743-26 54 -0.409074 hybrid +149_2-5 Q0 MARCO_52_1838965405-2 55 -0.412094 hybrid +149_2-5 Q0 MARCO_27_583264304-2 56 -0.417018 hybrid +149_2-5 Q0 MARCO_32_104275416-2 57 -0.419511 hybrid +149_2-5 Q0 MARCO_50_1526691015-12 58 -0.421066 hybrid +149_2-5 Q0 MARCO_17_2520146386-3 59 -0.421968 hybrid +149_2-5 Q0 MARCO_01_764125262-2 60 -0.422320 hybrid +149_2-5 Q0 MARCO_09_427897160-21 61 -0.423008 hybrid +149_2-5 Q0 MARCO_52_1838965405-1 62 -0.423313 hybrid +149_2-5 Q0 MARCO_54_1004252023-2 63 -0.424758 hybrid +149_2-5 Q0 MARCO_28_315369967-9 64 -0.433612 hybrid +149_2-5 Q0 MARCO_45_979033601-9 65 -0.434958 hybrid +149_2-5 Q0 MARCO_35_67061241-11 66 -0.436729 hybrid +149_2-5 Q0 MARCO_04_858682329-2 67 -0.438214 hybrid +149_2-5 Q0 MARCO_37_1649059650-12 68 -0.439396 hybrid +149_2-5 Q0 MARCO_09_427897160-13 69 -0.439826 hybrid +149_2-5 Q0 MARCO_27_583459329-7 70 -0.441271 hybrid +149_2-5 Q0 MARCO_55_680041140-2 71 -0.441942 hybrid +149_2-5 Q0 KILT_56463048-1 72 -0.444643 hybrid +149_2-5 Q0 MARCO_00_695900920-10 73 -0.449905 hybrid +149_2-5 Q0 MARCO_29_834171933-6 74 -0.450115 hybrid +149_2-5 Q0 MARCO_50_1447436167-18 75 -0.454403 hybrid +149_2-5 Q0 MARCO_52_1838965405-6 76 -0.459100 hybrid +149_2-5 Q0 MARCO_41_356353793-5 77 -0.459564 hybrid +149_2-5 Q0 MARCO_35_67061241-4 78 -0.460648 hybrid +149_2-5 Q0 MARCO_11_1132346939-4 79 -0.461659 hybrid +149_2-5 Q0 KILT_24958527-5 80 -0.461675 hybrid +149_2-5 Q0 MARCO_50_1436538440-8 81 -0.462389 hybrid +149_2-5 Q0 MARCO_05_843121876-20 82 -0.465448 hybrid +149_2-5 Q0 MARCO_26_348494658-17 83 -0.467918 hybrid +149_2-5 Q0 MARCO_34_1322249938-26 84 -0.468537 hybrid +149_2-5 Q0 MARCO_52_509401473-3 85 -0.470489 hybrid +149_2-5 Q0 KILT_49392-5 86 -0.471020 hybrid +149_2-5 Q0 MARCO_21_755658954-4 87 -0.472776 hybrid +149_2-5 Q0 MARCO_41_1132375146-12 88 -0.474479 hybrid +149_2-5 Q0 MARCO_31_310410627-5 89 -0.475420 hybrid +149_2-5 Q0 MARCO_37_176450512-6 90 -0.475986 hybrid +149_2-5 Q0 MARCO_26_362810067-100 91 -0.476988 hybrid +149_2-5 Q0 MARCO_50_1514555830-18 92 -0.477303 hybrid +149_2-5 Q0 MARCO_24_415846148-5 93 -0.481806 hybrid +149_2-5 Q0 MARCO_49_794417000-4 94 -0.482203 hybrid +149_2-5 Q0 KILT_55817338-18 95 -0.483625 hybrid +149_2-5 Q0 MARCO_45_1320492187-4 96 -0.483926 hybrid +149_2-5 Q0 MARCO_41_1202115699-52 97 -0.484129 hybrid +149_2-5 Q0 MARCO_26_104833674-5 98 -0.484997 hybrid +149_2-5 Q0 MARCO_29_1174109593-16 99 -0.486403 hybrid +149_2-5 Q0 MARCO_45_900717827-10 100 -0.487336 hybrid +149_2-7 Q0 MARCO_46_387713679-2 1 0.442042 hybrid +149_2-7 Q0 MARCO_39_1520587445-7 2 0.268223 hybrid +149_2-7 Q0 MARCO_39_1520802711-6 3 0.268223 hybrid +149_2-7 Q0 MARCO_39_1521134860-6 4 0.268223 hybrid +149_2-7 Q0 MARCO_39_1521836617-6 5 0.268223 hybrid +149_2-7 Q0 MARCO_11_775487494-1 6 0.253446 hybrid +149_2-7 Q0 MARCO_39_1519927722-6 7 0.250128 hybrid +149_2-7 Q0 MARCO_39_1520236225-7 8 0.224836 hybrid +149_2-7 Q0 MARCO_15_267741118-1 9 0.214259 hybrid +149_2-7 Q0 MARCO_13_655380145-2 10 0.196570 hybrid +149_2-7 Q0 MARCO_39_1520624701-7 11 0.170807 hybrid +149_2-7 Q0 MARCO_39_1521761335-8 12 0.170807 hybrid +149_2-7 Q0 MARCO_39_1521984954-7 13 0.170807 hybrid +149_2-7 Q0 MARCO_39_1520950426-7 14 0.170807 hybrid +149_2-7 Q0 MARCO_39_1521419765-6 15 0.125100 hybrid +149_2-7 Q0 MARCO_39_1520198997-6 16 0.125100 hybrid +149_2-7 Q0 MARCO_09_387689068-15 17 0.094890 hybrid +149_2-7 Q0 MARCO_24_571574-4 18 0.080065 hybrid +149_2-7 Q0 MARCO_41_633308289-2 19 0.065037 hybrid +149_2-7 Q0 MARCO_39_1522138753-6 20 0.048771 hybrid +149_2-7 Q0 MARCO_24_1015620193-2 21 0.029463 hybrid +149_2-7 Q0 MARCO_39_1521207538-6 22 0.022334 hybrid +149_2-7 Q0 MARCO_39_1521799786-6 23 0.022334 hybrid +149_2-7 Q0 MARCO_39_1521533349-6 24 0.022334 hybrid +149_2-7 Q0 MARCO_39_1519850876-6 25 0.021347 hybrid +149_2-7 Q0 MARCO_24_1015620193-3 26 0.012824 hybrid +149_2-7 Q0 MARCO_11_775487494-3 27 0.009629 hybrid +149_2-7 Q0 MARCO_22_994896697-2 28 0.009042 hybrid +149_2-7 Q0 MARCO_11_775487494-6 29 -0.003507 hybrid +149_2-7 Q0 MARCO_50_1510188904-2 30 -0.007430 hybrid +149_2-7 Q0 MARCO_59_437144138-3 31 -0.009455 hybrid +149_2-7 Q0 MARCO_39_1521496261-7 32 -0.013155 hybrid +149_2-7 Q0 MARCO_39_1520083217-7 33 -0.013155 hybrid +149_2-7 Q0 MARCO_39_1520727366-7 34 -0.013155 hybrid +149_2-7 Q0 MARCO_10_366981001-2 35 -0.029987 hybrid +149_2-7 Q0 KILT_27804-2 36 -0.044574 hybrid +149_2-7 Q0 MARCO_14_948497031-5 37 -0.057974 hybrid +149_2-7 Q0 MARCO_39_1520198997-7 38 -0.080498 hybrid +149_2-7 Q0 MARCO_39_1521419765-7 39 -0.080498 hybrid +149_2-7 Q0 MARCO_39_1520913204-6 40 -0.087451 hybrid +149_2-7 Q0 MARCO_53_1516388441-3 41 -0.087957 hybrid +149_2-7 Q0 MARCO_11_776340316-3 42 -0.099632 hybrid +149_2-7 Q0 MARCO_11_776719134-3 43 -0.102370 hybrid +149_2-7 Q0 MARCO_14_947909862-1 44 -0.105290 hybrid +149_2-7 Q0 MARCO_46_378699270-12 45 -0.107880 hybrid +149_2-7 Q0 MARCO_15_267741118-2 46 -0.126655 hybrid +149_2-7 Q0 MARCO_53_1515717958-3 47 -0.130940 hybrid +149_2-7 Q0 MARCO_39_1519850876-7 48 -0.137703 hybrid +149_2-7 Q0 MARCO_39_1521207538-7 49 -0.137703 hybrid +149_2-7 Q0 MARCO_39_1521533349-7 50 -0.137703 hybrid +149_2-7 Q0 MARCO_39_1521799786-7 51 -0.137703 hybrid +149_2-7 Q0 MARCO_11_776340316-6 52 -0.166665 hybrid +149_2-7 Q0 MARCO_50_1451832179-23 53 -0.169382 hybrid +149_2-7 Q0 MARCO_39_1520913204-7 54 -0.181823 hybrid +149_2-7 Q0 MARCO_39_1522138753-7 55 -0.181823 hybrid +149_2-7 Q0 MARCO_14_948751297-1 56 -0.188019 hybrid +149_2-7 Q0 MARCO_46_387713679-4 57 -0.198325 hybrid +149_2-7 Q0 MARCO_53_1515717958-2 58 -0.199897 hybrid +149_2-7 Q0 MARCO_46_387713679-1 59 -0.205173 hybrid +149_2-7 Q0 MARCO_39_1520802711-7 60 -0.215766 hybrid +149_2-7 Q0 MARCO_39_1521836617-7 61 -0.215766 hybrid +149_2-7 Q0 MARCO_39_1521134860-7 62 -0.215766 hybrid +149_2-7 Q0 MARCO_39_1520587445-8 63 -0.215766 hybrid +149_2-7 Q0 MARCO_31_1556470851-5 64 -0.217535 hybrid +149_2-7 Q0 MARCO_15_1087231265-7 65 -0.219237 hybrid +149_2-7 Q0 MARCO_11_776080002-6 66 -0.222241 hybrid +149_2-7 Q0 MARCO_44_1166993001-2 67 -0.227459 hybrid +149_2-7 Q0 MARCO_08_816090904-5 68 -0.229210 hybrid +149_2-7 Q0 MARCO_11_775487494-2 69 -0.229572 hybrid +149_2-7 Q0 MARCO_09_387689068-18 70 -0.234852 hybrid +149_2-7 Q0 MARCO_41_379832217-1 71 -0.237135 hybrid +149_2-7 Q0 MARCO_08_816090904-7 72 -0.240398 hybrid +149_2-7 Q0 MARCO_08_862157188-1 73 -0.249998 hybrid +149_2-7 Q0 MARCO_11_775904773-5 74 -0.256083 hybrid +149_2-7 Q0 MARCO_46_383412327-7 75 -0.264465 hybrid +149_2-7 Q0 MARCO_05_519638150-2 76 -0.276364 hybrid +149_2-7 Q0 MARCO_11_776635379-7 77 -0.277814 hybrid +149_2-7 Q0 MARCO_43_747917301-4 78 -0.281801 hybrid +149_2-7 Q0 MARCO_39_1520040076-19 79 -0.283778 hybrid +149_2-7 Q0 MARCO_01_697793984-2 80 -0.284376 hybrid +149_2-7 Q0 MARCO_53_1417280823-1 81 -0.288107 hybrid +149_2-7 Q0 MARCO_39_1519927722-7 82 -0.289255 hybrid +149_2-7 Q0 MARCO_53_1515717958-1 83 -0.290879 hybrid +149_2-7 Q0 MARCO_50_1451832179-29 84 -0.298203 hybrid +149_2-7 Q0 MARCO_01_1539475526-11 85 -0.298928 hybrid +149_2-7 Q0 MARCO_52_598387767-2 86 -0.302549 hybrid +149_2-7 Q0 MARCO_14_947909862-3 87 -0.303463 hybrid +149_2-7 Q0 MARCO_50_2504117447-28 88 -0.303669 hybrid +149_2-7 Q0 MARCO_13_448217502-5 89 -0.311741 hybrid +149_2-7 Q0 MARCO_50_1969433273-15 90 -0.313998 hybrid +149_2-7 Q0 KILT_19988623-5 91 -0.316601 hybrid +149_2-7 Q0 MARCO_07_832859266-12 92 -0.317301 hybrid +149_2-7 Q0 MARCO_43_49628398-5 93 -0.323498 hybrid +149_2-7 Q0 MARCO_50_2400647610-2 94 -0.324563 hybrid +149_2-7 Q0 MARCO_28_1307808046-2 95 -0.327457 hybrid +149_2-7 Q0 MARCO_50_1679765335-21 96 -0.329179 hybrid +149_2-7 Q0 MARCO_02_870645767-6 97 -0.330536 hybrid +149_2-7 Q0 KILT_19988623-2 98 -0.331731 hybrid +149_2-7 Q0 MARCO_15_531575144-4 99 -0.337229 hybrid +149_2-7 Q0 MARCO_07_637735790-9 100 -0.345815 hybrid +149_3-1 Q0 MARCO_52_681689004-13 1 0.269688 hybrid +149_3-1 Q0 MARCO_15_1088254649-11 2 0.250000 hybrid +149_3-1 Q0 MARCO_44_1770445893-37 3 0.227813 hybrid +149_3-1 Q0 MARCO_10_366981001-2 4 0.195481 hybrid +149_3-1 Q0 MARCO_01_795318884-2 5 0.193849 hybrid +149_3-1 Q0 MARCO_11_776080002-6 6 0.192251 hybrid +149_3-1 Q0 MARCO_11_775487494-2 7 0.125669 hybrid +149_3-1 Q0 KILT_59012195-9 8 0.059146 hybrid +149_3-1 Q0 MARCO_11_775904773-5 9 0.036531 hybrid +149_3-1 Q0 MARCO_32_110669830-2 10 0.029838 hybrid +149_3-1 Q0 MARCO_12_148625680-15 11 0.025967 hybrid +149_3-1 Q0 MARCO_09_387689068-15 12 0.024007 hybrid +149_3-1 Q0 MARCO_50_2504117447-48 13 -0.006492 hybrid +149_3-1 Q0 MARCO_53_1516388441-3 14 -0.007629 hybrid +149_3-1 Q0 MARCO_37_1258185656-82 15 -0.016567 hybrid +149_3-1 Q0 MARCO_07_637735790-9 16 -0.016968 hybrid +149_3-1 Q0 MARCO_45_1034356730-5 17 -0.017968 hybrid +149_3-1 Q0 MARCO_08_816090904-7 18 -0.023381 hybrid +149_3-1 Q0 MARCO_50_2400647610-3 19 -0.048516 hybrid +149_3-1 Q0 MARCO_50_2504117447-28 20 -0.057581 hybrid +149_3-1 Q0 MARCO_13_1252555263-4 21 -0.068008 hybrid +149_3-1 Q0 MARCO_11_775099364-9 22 -0.068655 hybrid +149_3-1 Q0 MARCO_53_1417280823-1 23 -0.073520 hybrid +149_3-1 Q0 MARCO_40_1279055765-13 24 -0.082398 hybrid +149_3-1 Q0 MARCO_34_1511918298-11 25 -0.086708 hybrid +149_3-1 Q0 MARCO_42_1883994587-4 26 -0.103619 hybrid +149_3-1 Q0 KILT_2421086-2 27 -0.109570 hybrid +149_3-1 Q0 MARCO_11_776719134-3 28 -0.116649 hybrid +149_3-1 Q0 MARCO_46_387713679-2 29 -0.133811 hybrid +149_3-1 Q0 MARCO_41_633308289-2 30 -0.134031 hybrid +149_3-1 Q0 KILT_2421086-6 31 -0.144863 hybrid +149_3-1 Q0 MARCO_11_775270435-2 32 -0.146011 hybrid +149_3-1 Q0 MARCO_11_775443250-12 33 -0.155432 hybrid +149_3-1 Q0 MARCO_50_2506569724-2 34 -0.161582 hybrid +149_3-1 Q0 MARCO_42_1890727839-12 35 -0.173397 hybrid +149_3-1 Q0 MARCO_43_747917301-4 36 -0.182347 hybrid +149_3-1 Q0 MARCO_55_763593574-3 37 -0.185707 hybrid +149_3-1 Q0 MARCO_22_997066902-9 38 -0.185926 hybrid +149_3-1 Q0 MARCO_59_773282132-2 39 -0.188979 hybrid +149_3-1 Q0 MARCO_59_437144138-3 40 -0.193333 hybrid +149_3-1 Q0 MARCO_07_262601550-2 41 -0.196281 hybrid +149_3-1 Q0 KILT_9133033-6 42 -0.198225 hybrid +149_3-1 Q0 MARCO_11_775443250-11 43 -0.200756 hybrid +149_3-1 Q0 MARCO_31_1556470851-5 44 -0.202002 hybrid +149_3-1 Q0 MARCO_39_1520236225-7 45 -0.202359 hybrid +149_3-1 Q0 KILT_27804-2 46 -0.202387 hybrid +149_3-1 Q0 MARCO_15_1087231265-7 47 -0.204061 hybrid +149_3-1 Q0 MARCO_59_864520937-2 48 -0.208025 hybrid +149_3-1 Q0 MARCO_36_1587845198-10 49 -0.208289 hybrid +149_3-1 Q0 MARCO_23_940126685-3 50 -0.210666 hybrid +149_3-1 Q0 MARCO_50_721956266-8 51 -0.219116 hybrid +149_3-1 Q0 MARCO_11_696580396-2 52 -0.219297 hybrid +149_3-1 Q0 MARCO_39_1519927722-7 53 -0.220198 hybrid +149_3-1 Q0 MARCO_53_1514777650-1 54 -0.227709 hybrid +149_3-1 Q0 MARCO_39_1520802711-7 55 -0.228077 hybrid +149_3-1 Q0 MARCO_39_1521836617-7 56 -0.228077 hybrid +149_3-1 Q0 MARCO_39_1521134860-7 57 -0.228077 hybrid +149_3-1 Q0 MARCO_39_1520587445-8 58 -0.228077 hybrid +149_3-1 Q0 MARCO_11_775612189-7 59 -0.231036 hybrid +149_3-1 Q0 MARCO_39_1520624701-7 60 -0.234835 hybrid +149_3-1 Q0 MARCO_39_1521761335-8 61 -0.234835 hybrid +149_3-1 Q0 MARCO_39_1521984954-7 62 -0.234835 hybrid +149_3-1 Q0 MARCO_39_1520950426-7 63 -0.234835 hybrid +149_3-1 Q0 MARCO_45_204406880-6 64 -0.237905 hybrid +149_3-1 Q0 MARCO_19_2006314066-5 65 -0.240562 hybrid +149_3-1 Q0 MARCO_24_956787242-16 66 -0.242747 hybrid +149_3-1 Q0 MARCO_56_1469943770-8 67 -0.242923 hybrid +149_3-1 Q0 MARCO_56_1469601238-5 68 -0.242923 hybrid +149_3-1 Q0 MARCO_56_1470279776-5 69 -0.242923 hybrid +149_3-1 Q0 MARCO_56_1470112333-6 70 -0.242923 hybrid +149_3-1 Q0 MARCO_56_1469632197-4 71 -0.242923 hybrid +149_3-1 Q0 MARCO_56_1470094489-9 72 -0.242923 hybrid +149_3-1 Q0 MARCO_56_1469726287-5 73 -0.242923 hybrid +149_3-1 Q0 MARCO_01_1539475526-11 74 -0.246409 hybrid +149_3-1 Q0 MARCO_31_319361176-2 75 -0.250000 hybrid +149_3-1 Q0 MARCO_52_680237395-8 76 -0.252756 hybrid +149_3-1 Q0 MARCO_39_1519927722-6 77 -0.255507 hybrid +149_3-1 Q0 MARCO_50_1509696457-5 78 -0.256369 hybrid +149_3-1 Q0 MARCO_46_378633695-9 79 -0.257396 hybrid +149_3-1 Q0 MARCO_02_1353704855-10 80 -0.260207 hybrid +149_3-1 Q0 MARCO_15_1458779278-6 81 -0.260690 hybrid +149_3-1 Q0 MARCO_43_49483679-6 82 -0.261398 hybrid +149_3-1 Q0 MARCO_22_247241966-25 83 -0.267169 hybrid +149_3-1 Q0 MARCO_11_776561153-3 84 -0.267449 hybrid +149_3-1 Q0 MARCO_39_1521799786-7 85 -0.269255 hybrid +149_3-1 Q0 MARCO_39_1521533349-7 86 -0.269255 hybrid +149_3-1 Q0 MARCO_39_1521207538-7 87 -0.269255 hybrid +149_3-1 Q0 MARCO_39_1519850876-7 88 -0.269255 hybrid +149_3-1 Q0 MARCO_34_543863470-9 89 -0.269464 hybrid +149_3-1 Q0 MARCO_59_1027195116-3 90 -0.270672 hybrid +149_3-1 Q0 MARCO_45_1036574347-2 91 -0.271592 hybrid +149_3-1 Q0 MARCO_50_1971010911-28 92 -0.279094 hybrid +149_3-1 Q0 MARCO_15_1080712135-7 93 -0.279819 hybrid +149_3-1 Q0 MARCO_46_387713679-1 94 -0.280571 hybrid +149_3-1 Q0 MARCO_22_247241966-23 95 -0.284403 hybrid +149_3-1 Q0 MARCO_22_1485991366-21 96 -0.284672 hybrid +149_3-1 Q0 MARCO_05_519638150-2 97 -0.286133 hybrid +149_3-1 Q0 MARCO_25_1410454799-3 98 -0.290158 hybrid +149_3-1 Q0 MARCO_12_148625680-59 99 -0.290646 hybrid +149_3-1 Q0 MARCO_22_534279812-1 100 -0.292881 hybrid +149_3-3 Q0 KILT_59012195-1 1 0.250000 hybrid +149_3-3 Q0 KILT_54395096-13 2 -0.140053 hybrid +149_3-3 Q0 MARCO_24_727820-2 3 -0.164954 hybrid +149_3-3 Q0 KILT_16777474-33 4 -0.248044 hybrid +149_3-3 Q0 MARCO_53_926374721-10 5 -0.250000 hybrid +149_3-3 Q0 KILT_296726-2 6 -0.261599 hybrid +149_3-3 Q0 MARCO_16_3025097082-1 7 -0.264302 hybrid +149_3-3 Q0 KILT_296726-1 8 -0.268897 hybrid +149_3-3 Q0 MARCO_27_709015401-18 9 -0.269363 hybrid +149_3-3 Q0 KILT_25606638-2 10 -0.272981 hybrid +149_3-3 Q0 MARCO_50_1670145590-13 11 -0.287505 hybrid +149_3-3 Q0 MARCO_50_1616646458-10 12 -0.287505 hybrid +149_3-3 Q0 MARCO_27_843419262-2 13 -0.288677 hybrid +149_3-3 Q0 MARCO_50_1665044505-13 14 -0.295563 hybrid +149_3-3 Q0 MARCO_14_541572450-5 15 -0.305818 hybrid +149_3-3 Q0 MARCO_33_1038422592-3 16 -0.308606 hybrid +149_3-3 Q0 KILT_42396382-34 17 -0.311780 hybrid +149_3-3 Q0 MARCO_55_1217051053-1 18 -0.317575 hybrid +149_3-3 Q0 MARCO_14_257204425-1 19 -0.317715 hybrid +149_3-3 Q0 MARCO_52_343680628-1 20 -0.332971 hybrid +149_3-3 Q0 MARCO_19_739382593-8 21 -0.334215 hybrid +149_3-3 Q0 MARCO_36_839939342-3 22 -0.349842 hybrid +149_3-3 Q0 MARCO_42_1885183621-8 23 -0.355025 hybrid +149_3-3 Q0 MARCO_19_2063342099-3 24 -0.355419 hybrid +149_3-3 Q0 MARCO_14_541467969-10 25 -0.355718 hybrid +149_3-3 Q0 MARCO_33_1025658631-7 26 -0.356230 hybrid +149_3-3 Q0 MARCO_14_541411251-42 27 -0.357601 hybrid +149_3-3 Q0 MARCO_09_674343712-6 28 -0.359765 hybrid +149_3-3 Q0 KILT_36891093-1 29 -0.364515 hybrid +149_3-3 Q0 MARCO_24_1126001105-3 30 -0.364823 hybrid +149_3-3 Q0 MARCO_40_1273981958-4 31 -0.364845 hybrid +149_3-3 Q0 MARCO_14_541273489-2 32 -0.364854 hybrid +149_3-3 Q0 MARCO_19_2063342099-4 33 -0.367530 hybrid +149_3-3 Q0 MARCO_37_722532841-7 34 -0.373012 hybrid +149_3-3 Q0 MARCO_50_1678017049-1 35 -0.375009 hybrid +149_3-3 Q0 MARCO_11_1343590925-1 36 -0.375377 hybrid +149_3-3 Q0 MARCO_08_21442928-8 37 -0.377356 hybrid +149_3-3 Q0 MARCO_36_900419354-2 38 -0.379568 hybrid +149_3-3 Q0 MARCO_56_782979676-12 39 -0.383760 hybrid +149_3-3 Q0 KILT_25606638-7 40 -0.384555 hybrid +149_3-3 Q0 KILT_56380195-1 41 -0.385105 hybrid +149_3-3 Q0 MARCO_26_1549824709-5 42 -0.387586 hybrid +149_3-3 Q0 MARCO_13_329543671-2 43 -0.388980 hybrid +149_3-3 Q0 MARCO_07_1585032932-71 44 -0.391670 hybrid +149_3-3 Q0 MARCO_19_739382593-7 45 -0.394451 hybrid +149_3-3 Q0 MARCO_49_1513676706-1 46 -0.395631 hybrid +149_3-3 Q0 MARCO_52_1392641922-1 47 -0.398094 hybrid +149_3-3 Q0 MARCO_27_1748534443-10 48 -0.398959 hybrid +149_3-3 Q0 KILT_66505-1 49 -0.401037 hybrid +149_3-3 Q0 KILT_59012195-3 50 -0.401349 hybrid +149_3-3 Q0 MARCO_03_1029026308-5 51 -0.401978 hybrid +149_3-3 Q0 KILT_59012195-13 52 -0.404093 hybrid +149_3-3 Q0 KILT_35956026-3 53 -0.408063 hybrid +149_3-3 Q0 MARCO_14_541411251-39 54 -0.408385 hybrid +149_3-3 Q0 MARCO_14_541467969-7 55 -0.409580 hybrid +149_3-3 Q0 MARCO_32_372885425-3 56 -0.409811 hybrid +149_3-3 Q0 MARCO_24_6297618-3 57 -0.417516 hybrid +149_3-3 Q0 MARCO_58_877835644-1 58 -0.421408 hybrid +149_3-3 Q0 MARCO_27_1766216539-16 59 -0.421799 hybrid +149_3-3 Q0 KILT_5708700-29 60 -0.424307 hybrid +149_3-3 Q0 MARCO_16_3025097082-4 61 -0.425072 hybrid +149_3-3 Q0 MARCO_40_660695547-5 62 -0.425982 hybrid +149_3-3 Q0 MARCO_57_1245236006-1 63 -0.428064 hybrid +149_3-3 Q0 MARCO_14_948287362-4 64 -0.428137 hybrid +149_3-3 Q0 MARCO_53_1407864519-3 65 -0.428789 hybrid +149_3-3 Q0 MARCO_49_794475346-4 66 -0.429093 hybrid +149_3-3 Q0 MARCO_45_1037542431-6 67 -0.429754 hybrid +149_3-3 Q0 MARCO_51_1240112162-21 68 -0.431682 hybrid +149_3-3 Q0 KILT_49583-1 69 -0.433063 hybrid +149_3-3 Q0 MARCO_37_174552969-7 70 -0.433932 hybrid +149_3-3 Q0 MARCO_33_1039923997-8 71 -0.436065 hybrid +149_3-3 Q0 KILT_19541813-1 72 -0.436432 hybrid +149_3-3 Q0 KILT_56380195-2 73 -0.438396 hybrid +149_3-3 Q0 MARCO_49_404427112-2 74 -0.439899 hybrid +149_3-3 Q0 MARCO_28_43267712-4 75 -0.440307 hybrid +149_3-3 Q0 MARCO_59_861662787-3 76 -0.440886 hybrid +149_3-3 Q0 KILT_237536-1 77 -0.442041 hybrid +149_3-3 Q0 MARCO_44_96730024-3 78 -0.446039 hybrid +149_3-3 Q0 MARCO_03_1029026308-1 79 -0.446202 hybrid +149_3-3 Q0 MARCO_35_401608487-11 80 -0.450955 hybrid +149_3-3 Q0 MARCO_30_377762017-2 81 -0.451797 hybrid +149_3-3 Q0 MARCO_41_2113679530-5 82 -0.453626 hybrid +149_3-3 Q0 KILT_59012195-2 83 -0.454088 hybrid +149_3-3 Q0 MARCO_58_1178837984-11 84 -0.454518 hybrid +149_3-3 Q0 KILT_13842515-1 85 -0.455772 hybrid +149_3-3 Q0 MARCO_46_1462462632-1 86 -0.456246 hybrid +149_3-3 Q0 MARCO_16_1724243800-19 87 -0.456533 hybrid +149_3-3 Q0 MARCO_23_1732511559-5 88 -0.456651 hybrid +149_3-3 Q0 MARCO_29_241568149-1 89 -0.457348 hybrid +149_3-3 Q0 MARCO_49_960438422-2 90 -0.460902 hybrid +149_3-3 Q0 MARCO_53_1513827580-3 91 -0.461305 hybrid +149_3-3 Q0 MARCO_45_1025444194-2 92 -0.462844 hybrid +149_3-3 Q0 MARCO_14_541467969-24 93 -0.463564 hybrid +149_3-3 Q0 MARCO_28_42061767-13 94 -0.467435 hybrid +149_3-3 Q0 MARCO_03_1044032707-13 95 -0.467974 hybrid +149_3-3 Q0 MARCO_26_353153774-13 96 -0.468060 hybrid +149_3-3 Q0 MARCO_40_1268091613-1 97 -0.468123 hybrid +149_3-3 Q0 MARCO_50_1981923546-24 98 -0.469631 hybrid +149_3-3 Q0 MARCO_50_2380747783-9 99 -0.471337 hybrid +149_3-3 Q0 MARCO_53_1448548338-2 100 -0.472220 hybrid +149_3-5 Q0 MARCO_41_2131675329-6 1 0.250000 hybrid +149_3-5 Q0 MARCO_13_325525277-13 2 0.010784 hybrid +149_3-5 Q0 MARCO_50_1931425493-13 3 -0.021174 hybrid +149_3-5 Q0 MARCO_24_648597782-2 4 -0.199285 hybrid +149_3-5 Q0 MARCO_14_480109671-3 5 -0.200662 hybrid +149_3-5 Q0 MARCO_43_741769267-3 6 -0.204462 hybrid +149_3-5 Q0 MARCO_50_1931425493-10 7 -0.215389 hybrid +149_3-5 Q0 MARCO_54_1861724187-8 8 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1855341969-9 9 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1859725135-8 10 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1851845503-9 11 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1859766889-7 12 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1861944684-9 13 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1852598752-8 14 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1860409637-7 15 -0.229067 hybrid +149_3-5 Q0 MARCO_54_1854811662-9 16 -0.229067 hybrid +149_3-5 Q0 MARCO_50_1931425493-4 17 -0.234432 hybrid +149_3-5 Q0 MARCO_53_810278604-5 18 -0.246084 hybrid +149_3-5 Q0 MARCO_50_1931425493-11 19 -0.247049 hybrid +149_3-5 Q0 MARCO_22_1026309507-2 20 -0.250000 hybrid +149_3-5 Q0 MARCO_03_247875288-3 21 -0.250122 hybrid +149_3-5 Q0 MARCO_51_1719073264-111 22 -0.279181 hybrid +149_3-5 Q0 MARCO_53_407359303-14 23 -0.291357 hybrid +149_3-5 Q0 MARCO_52_916482449-10 24 -0.324587 hybrid +149_3-5 Q0 MARCO_50_1399796977-17 25 -0.326147 hybrid +149_3-5 Q0 MARCO_50_721328931-5 26 -0.327785 hybrid +149_3-5 Q0 MARCO_27_1249163483-144 27 -0.336070 hybrid +149_3-5 Q0 MARCO_50_1931425493-20 28 -0.340649 hybrid +149_3-5 Q0 MARCO_50_721822524-8 29 -0.341018 hybrid +149_3-5 Q0 MARCO_50_930160608-27 30 -0.342277 hybrid +149_3-5 Q0 MARCO_28_1615819406-7 31 -0.343900 hybrid +149_3-5 Q0 MARCO_50_1931425493-5 32 -0.344061 hybrid +149_3-5 Q0 MARCO_24_1571220944-7 33 -0.344489 hybrid +149_3-5 Q0 MARCO_19_1098251253-9 34 -0.353076 hybrid +149_3-5 Q0 MARCO_27_583264304-5 35 -0.361314 hybrid +149_3-5 Q0 MARCO_11_1527834791-1 36 -0.368064 hybrid +149_3-5 Q0 MARCO_50_2498479427-4 37 -0.369668 hybrid +149_3-5 Q0 MARCO_53_1470251080-10 38 -0.369706 hybrid +149_3-5 Q0 MARCO_50_930160608-16 39 -0.370179 hybrid +149_3-5 Q0 MARCO_50_1517453090-28 40 -0.379977 hybrid +149_3-5 Q0 KILT_956483-7 41 -0.387986 hybrid +149_3-5 Q0 MARCO_53_1470251080-11 42 -0.388124 hybrid +149_3-5 Q0 MARCO_50_1399796977-15 43 -0.399014 hybrid +149_3-5 Q0 MARCO_34_385317234-19 44 -0.402258 hybrid +149_3-5 Q0 MARCO_18_3243396927-14 45 -0.404595 hybrid +149_3-5 Q0 MARCO_56_1475992546-4 46 -0.404605 hybrid +149_3-5 Q0 MARCO_54_139405728-2 47 -0.406043 hybrid +149_3-5 Q0 MARCO_20_712557990-1 48 -0.407279 hybrid +149_3-5 Q0 MARCO_44_1974342956-17 49 -0.409398 hybrid +149_3-5 Q0 MARCO_53_1331879317-4 50 -0.410958 hybrid +149_3-5 Q0 MARCO_06_1925269929-1 51 -0.413353 hybrid +149_3-5 Q0 MARCO_50_1317455774-16 52 -0.421797 hybrid +149_3-5 Q0 MARCO_14_1483234329-9 53 -0.423427 hybrid +149_3-5 Q0 MARCO_53_845215970-5 54 -0.424494 hybrid +149_3-5 Q0 MARCO_00_1583525601-4 55 -0.424956 hybrid +149_3-5 Q0 MARCO_01_764231886-4 56 -0.425806 hybrid +149_3-5 Q0 MARCO_33_1236586927-7 57 -0.427106 hybrid +149_3-5 Q0 MARCO_29_825761413-1 58 -0.428881 hybrid +149_3-5 Q0 MARCO_23_243516966-34 59 -0.428966 hybrid +149_3-5 Q0 MARCO_38_608590939-11 60 -0.431168 hybrid +149_3-5 Q0 MARCO_50_1931425493-9 61 -0.431964 hybrid +149_3-5 Q0 MARCO_50_1552139554-83 62 -0.433425 hybrid +149_3-5 Q0 MARCO_59_1027195116-3 63 -0.440306 hybrid +149_3-5 Q0 MARCO_20_1194967451-3 64 -0.445657 hybrid +149_3-5 Q0 MARCO_15_560133885-1 65 -0.446199 hybrid +149_3-5 Q0 MARCO_43_49219771-10 66 -0.447184 hybrid +149_3-5 Q0 MARCO_55_227218267-8 67 -0.450959 hybrid +149_3-5 Q0 MARCO_27_709548376-3 68 -0.454044 hybrid +149_3-5 Q0 MARCO_53_1331879317-1 69 -0.455470 hybrid +149_3-5 Q0 MARCO_50_1399796977-7 70 -0.457903 hybrid +149_3-5 Q0 MARCO_39_600935278-3 71 -0.459429 hybrid +149_3-5 Q0 MARCO_50_510883349-22 72 -0.461352 hybrid +149_3-5 Q0 MARCO_34_509035062-7 73 -0.464899 hybrid +149_3-5 Q0 MARCO_41_1344124843-37 74 -0.466214 hybrid +149_3-5 Q0 MARCO_18_1808611836-5 75 -0.467490 hybrid +149_3-5 Q0 MARCO_56_1049653972-5 76 -0.467625 hybrid +149_3-5 Q0 MARCO_18_475115471-62 77 -0.469799 hybrid +149_3-5 Q0 MARCO_11_1137167620-1 78 -0.470577 hybrid +149_3-5 Q0 MARCO_13_1167167495-8 79 -0.471739 hybrid +149_3-5 Q0 MARCO_52_680808770-17 80 -0.472662 hybrid +149_3-5 Q0 MARCO_51_1304491847-12 81 -0.475066 hybrid +149_3-5 Q0 MARCO_17_1841823804-2 82 -0.476760 hybrid +149_3-5 Q0 MARCO_18_1808611836-6 83 -0.477343 hybrid +149_3-5 Q0 MARCO_38_1385865850-4 84 -0.477611 hybrid +149_3-5 Q0 MARCO_11_775556690-16 85 -0.479288 hybrid +149_3-5 Q0 MARCO_41_1158608252-19 86 -0.480631 hybrid +149_3-5 Q0 MARCO_20_1584759163-7 87 -0.483056 hybrid +149_3-5 Q0 MARCO_00_498547202-2 88 -0.483804 hybrid +149_3-5 Q0 MARCO_47_1329631781-2 89 -0.483820 hybrid +149_3-5 Q0 MARCO_09_892655563-1 90 -0.484178 hybrid +149_3-5 Q0 MARCO_45_204247560-8 91 -0.484486 hybrid +149_3-5 Q0 MARCO_40_1121907405-4 92 -0.485568 hybrid +149_3-5 Q0 MARCO_01_1544267715-122 93 -0.485667 hybrid +149_3-5 Q0 MARCO_58_1601174092-5 94 -0.486082 hybrid +149_3-5 Q0 MARCO_01_1425048900-1 95 -0.486388 hybrid +149_3-5 Q0 MARCO_04_1299765233-33 96 -0.486921 hybrid +149_3-5 Q0 MARCO_04_1299765233-40 97 -0.486921 hybrid +149_3-5 Q0 MARCO_03_247875288-1 98 -0.486946 hybrid +149_3-5 Q0 MARCO_08_1188135981-1 99 -0.488440 hybrid +149_3-5 Q0 MARCO_11_1038002471-1 100 -0.488916 hybrid +149_3-7 Q0 MARCO_34_543863470-27 1 0.363302 hybrid +149_3-7 Q0 MARCO_29_402220207-3 2 0.186019 hybrid +149_3-7 Q0 MARCO_34_543863470-30 3 0.162304 hybrid +149_3-7 Q0 MARCO_34_543863470-20 4 0.124022 hybrid +149_3-7 Q0 MARCO_34_543863470-23 5 0.119247 hybrid +149_3-7 Q0 MARCO_13_325525277-13 6 0.109884 hybrid +149_3-7 Q0 MARCO_34_543863470-18 7 0.077356 hybrid +149_3-7 Q0 MARCO_34_543863470-5 8 0.039106 hybrid +149_3-7 Q0 MARCO_34_543863470-8 9 0.019424 hybrid +149_3-7 Q0 MARCO_22_247241966-24 10 0.012202 hybrid +149_3-7 Q0 MARCO_34_1514907320-2 11 0.000657 hybrid +149_3-7 Q0 MARCO_53_1465253531-2 12 -0.002930 hybrid +149_3-7 Q0 MARCO_50_2506569724-26 13 -0.006004 hybrid +149_3-7 Q0 MARCO_34_543863470-4 14 -0.013336 hybrid +149_3-7 Q0 MARCO_22_1523404063-2 15 -0.025197 hybrid +149_3-7 Q0 MARCO_34_543863470-15 16 -0.057941 hybrid +149_3-7 Q0 MARCO_27_1767716306-3 17 -0.067013 hybrid +149_3-7 Q0 MARCO_12_1143811020-1 18 -0.070599 hybrid +149_3-7 Q0 MARCO_37_1258185656-82 19 -0.089723 hybrid +149_3-7 Q0 MARCO_24_140126809-3 20 -0.090834 hybrid +149_3-7 Q0 MARCO_50_2506569724-87 21 -0.102939 hybrid +149_3-7 Q0 MARCO_12_1143811020-15 22 -0.106240 hybrid +149_3-7 Q0 MARCO_50_1399796977-10 23 -0.130107 hybrid +149_3-7 Q0 MARCO_50_2506569724-111 24 -0.146039 hybrid +149_3-7 Q0 MARCO_12_1147033803-11 25 -0.150813 hybrid +149_3-7 Q0 MARCO_34_543863470-24 26 -0.152373 hybrid +149_3-7 Q0 MARCO_11_775099364-1 27 -0.153963 hybrid +149_3-7 Q0 MARCO_53_1417384023-2 28 -0.157584 hybrid +149_3-7 Q0 MARCO_07_637735790-3 29 -0.161956 hybrid +149_3-7 Q0 MARCO_12_1162574099-10 30 -0.162607 hybrid +149_3-7 Q0 MARCO_40_1126137332-7 31 -0.172034 hybrid +149_3-7 Q0 MARCO_50_1510255938-11 32 -0.181419 hybrid +149_3-7 Q0 MARCO_53_1332176041-6 33 -0.181932 hybrid +149_3-7 Q0 MARCO_50_2504117447-47 34 -0.183767 hybrid +149_3-7 Q0 MARCO_34_543863470-1 35 -0.184689 hybrid +149_3-7 Q0 MARCO_07_1453550075-14 36 -0.190455 hybrid +149_3-7 Q0 MARCO_34_1664235344-40 37 -0.190943 hybrid +149_3-7 Q0 MARCO_48_1535919141-21 38 -0.192299 hybrid +149_3-7 Q0 MARCO_22_1523404063-3 39 -0.201900 hybrid +149_3-7 Q0 MARCO_12_1145052524-6 40 -0.202738 hybrid +149_3-7 Q0 MARCO_13_432527240-1 41 -0.207952 hybrid +149_3-7 Q0 MARCO_41_2131675329-6 42 -0.209797 hybrid +149_3-7 Q0 MARCO_52_1392634476-1 43 -0.218538 hybrid +149_3-7 Q0 MARCO_11_776719134-3 44 -0.220446 hybrid +149_3-7 Q0 MARCO_22_534279812-1 45 -0.220844 hybrid +149_3-7 Q0 MARCO_56_1048702887-6 46 -0.223274 hybrid +149_3-7 Q0 MARCO_50_1516126301-4 47 -0.239586 hybrid +149_3-7 Q0 MARCO_50_2400647610-3 48 -0.240684 hybrid +149_3-7 Q0 MARCO_50_2506569724-55 49 -0.246528 hybrid +149_3-7 Q0 MARCO_50_796224832-21 50 -0.250002 hybrid +149_3-7 Q0 MARCO_55_763593574-3 51 -0.252981 hybrid +149_3-7 Q0 MARCO_22_247241966-21 52 -0.257447 hybrid +149_3-7 Q0 MARCO_34_543863470-28 53 -0.259655 hybrid +149_3-7 Q0 MARCO_22_994341299-8 54 -0.263148 hybrid +149_3-7 Q0 MARCO_34_543863470-22 55 -0.264021 hybrid +149_3-7 Q0 MARCO_50_2506569724-14 56 -0.264685 hybrid +149_3-7 Q0 MARCO_10_988610214-26 57 -0.269165 hybrid +149_3-7 Q0 MARCO_28_655796431-12 58 -0.270436 hybrid +149_3-7 Q0 MARCO_50_2506569724-57 59 -0.272790 hybrid +149_3-7 Q0 MARCO_10_1147046186-5 60 -0.273815 hybrid +149_3-7 Q0 MARCO_46_1313586774-9 61 -0.287403 hybrid +149_3-7 Q0 MARCO_22_838526827-3 62 -0.289708 hybrid +149_3-7 Q0 MARCO_12_1143883849-2 63 -0.290487 hybrid +149_3-7 Q0 MARCO_46_378699270-12 64 -0.290736 hybrid +149_3-7 Q0 MARCO_53_1467577338-8 65 -0.292817 hybrid +149_3-7 Q0 MARCO_34_543863470-11 66 -0.292969 hybrid +149_3-7 Q0 MARCO_12_1146759825-5 67 -0.297952 hybrid +149_3-7 Q0 MARCO_02_1538822484-17 68 -0.298110 hybrid +149_3-7 Q0 MARCO_53_1331879317-4 69 -0.301358 hybrid +149_3-7 Q0 MARCO_02_1752290410-4 70 -0.302233 hybrid +149_3-7 Q0 MARCO_23_183358734-8 71 -0.302508 hybrid +149_3-7 Q0 MARCO_12_1143811020-9 72 -0.302535 hybrid +149_3-7 Q0 MARCO_12_1147033803-13 73 -0.302888 hybrid +149_3-7 Q0 MARCO_32_438147013-16 74 -0.303670 hybrid +149_3-7 Q0 MARCO_22_534279812-3 75 -0.304518 hybrid +149_3-7 Q0 MARCO_28_857644874-7 76 -0.311088 hybrid +149_3-7 Q0 MARCO_50_2506569724-77 77 -0.313242 hybrid +149_3-7 Q0 MARCO_07_637735790-9 78 -0.315361 hybrid +149_3-7 Q0 MARCO_50_2504117447-48 79 -0.316694 hybrid +149_3-7 Q0 MARCO_53_1465253531-3 80 -0.318757 hybrid +149_3-7 Q0 KILT_59012195-9 81 -0.324767 hybrid +149_3-7 Q0 MARCO_34_543863470-2 82 -0.329036 hybrid +149_3-7 Q0 MARCO_24_80114076-7 83 -0.330178 hybrid +149_3-7 Q0 MARCO_50_2504117447-32 84 -0.331265 hybrid +149_3-7 Q0 MARCO_14_257204425-6 85 -0.332193 hybrid +149_3-7 Q0 MARCO_32_437908629-7 86 -0.333155 hybrid +149_3-7 Q0 MARCO_24_953504640-2 87 -0.333550 hybrid +149_3-7 Q0 MARCO_12_1143811020-13 88 -0.336333 hybrid +149_3-7 Q0 MARCO_43_240339009-2 89 -0.336988 hybrid +149_3-7 Q0 MARCO_11_775556690-16 90 -0.338044 hybrid +149_3-7 Q0 MARCO_11_775556690-10 91 -0.339169 hybrid +149_3-7 Q0 MARCO_13_980477087-9 92 -0.340304 hybrid +149_3-7 Q0 MARCO_50_2504117447-56 93 -0.343482 hybrid +149_3-7 Q0 MARCO_22_245542279-4 94 -0.344510 hybrid +149_3-7 Q0 MARCO_34_543863470-17 95 -0.344746 hybrid +149_3-7 Q0 MARCO_40_1267987684-2 96 -0.345760 hybrid +149_3-7 Q0 MARCO_02_1538822484-10 97 -0.349056 hybrid +149_3-7 Q0 MARCO_29_868892299-9 98 -0.356620 hybrid +149_3-7 Q0 MARCO_31_293452917-3 99 -0.363579 hybrid +149_3-7 Q0 MARCO_27_1748657406-20 100 -0.364333 hybrid +149_3-9 Q0 MARCO_30_377762017-1 1 0.718594 hybrid +149_3-9 Q0 MARCO_30_377762017-2 2 0.703670 hybrid +149_3-9 Q0 MARCO_30_377762017-3 3 0.612678 hybrid +149_3-9 Q0 MARCO_30_377762017-4 4 0.349357 hybrid +149_3-9 Q0 MARCO_12_1143811020-12 5 0.334149 hybrid +149_3-9 Q0 MARCO_30_377762017-5 6 0.270370 hybrid +149_3-9 Q0 MARCO_48_1536612134-12 7 0.258656 hybrid +149_3-9 Q0 MARCO_30_377762017-6 8 0.164085 hybrid +149_3-9 Q0 MARCO_11_775099364-5 9 0.066117 hybrid +149_3-9 Q0 KILT_25686678-2 10 0.035668 hybrid +149_3-9 Q0 MARCO_48_1536612134-11 11 0.022676 hybrid +149_3-9 Q0 MARCO_54_557237315-13 12 0.019705 hybrid +149_3-9 Q0 KILT_15636975-1 13 0.006608 hybrid +149_3-9 Q0 KILT_53609338-1 14 -0.028793 hybrid +149_3-9 Q0 KILT_14041641-1 15 -0.042408 hybrid +149_3-9 Q0 KILT_24305647-1 16 -0.067180 hybrid +149_3-9 Q0 MARCO_35_983730784-7 17 -0.075650 hybrid +149_3-9 Q0 KILT_20128447-1 18 -0.079732 hybrid +149_3-9 Q0 MARCO_11_775099364-6 19 -0.098669 hybrid +149_3-9 Q0 KILT_25686678-1 20 -0.102378 hybrid +149_3-9 Q0 MARCO_20_236904717-5 21 -0.115189 hybrid +149_3-9 Q0 KILT_13053239-1 22 -0.151256 hybrid +149_3-9 Q0 MARCO_16_3299844550-8 23 -0.163818 hybrid +149_3-9 Q0 KILT_14192424-14 24 -0.168657 hybrid +149_3-9 Q0 MARCO_25_71825921-32 25 -0.173753 hybrid +149_3-9 Q0 KILT_1966753-1 26 -0.183967 hybrid +149_3-9 Q0 KILT_3661766-1 27 -0.196696 hybrid +149_3-9 Q0 MARCO_04_907340961-8 28 -0.199015 hybrid +149_3-9 Q0 MARCO_28_284504848-1 29 -0.219322 hybrid +149_3-9 Q0 KILT_48566-1 30 -0.233092 hybrid +149_3-9 Q0 MARCO_49_545533397-1 31 -0.250000 hybrid +149_3-9 Q0 MARCO_53_1339025320-2 32 -0.270004 hybrid +149_3-9 Q0 KILT_580067-1 33 -0.271141 hybrid +149_3-9 Q0 KILT_55755393-1 34 -0.277050 hybrid +149_3-9 Q0 MARCO_15_1940818050-1 35 -0.285489 hybrid +149_3-9 Q0 MARCO_50_1937072557-8 36 -0.291542 hybrid +149_3-9 Q0 MARCO_53_1339025320-1 37 -0.301762 hybrid +149_3-9 Q0 MARCO_50_1934036364-8 38 -0.303733 hybrid +149_3-9 Q0 MARCO_51_2012158191-26 39 -0.303968 hybrid +149_3-9 Q0 MARCO_50_1934036364-10 40 -0.303997 hybrid +149_3-9 Q0 MARCO_49_545533397-6 41 -0.304318 hybrid +149_3-9 Q0 MARCO_09_1335130792-7 42 -0.305392 hybrid +149_3-9 Q0 MARCO_09_1335104454-7 43 -0.305392 hybrid +149_3-9 Q0 MARCO_09_1335130792-5 44 -0.305392 hybrid +149_3-9 Q0 MARCO_09_1335104454-5 45 -0.305392 hybrid +149_3-9 Q0 MARCO_10_262081235-20 46 -0.306185 hybrid +149_3-9 Q0 KILT_1038038-1 47 -0.306223 hybrid +149_3-9 Q0 MARCO_23_1590380056-7 48 -0.307180 hybrid +149_3-9 Q0 MARCO_24_1315195668-2 49 -0.308507 hybrid +149_3-9 Q0 MARCO_09_1335130792-1 50 -0.310428 hybrid +149_3-9 Q0 MARCO_43_236748055-5 51 -0.312628 hybrid +149_3-9 Q0 MARCO_49_545533397-9 52 -0.315304 hybrid +149_3-9 Q0 MARCO_17_501082452-9 53 -0.319813 hybrid +149_3-9 Q0 KILT_28518791-7 54 -0.326659 hybrid +149_3-9 Q0 MARCO_56_871863009-1 55 -0.328044 hybrid +149_3-9 Q0 MARCO_01_1543050022-30 56 -0.328676 hybrid +149_3-9 Q0 KILT_25686678-3 57 -0.330322 hybrid +149_3-9 Q0 MARCO_43_236748055-1 58 -0.331512 hybrid +149_3-9 Q0 MARCO_50_1290238291-3 59 -0.332964 hybrid +149_3-9 Q0 MARCO_34_1668889045-1 60 -0.333476 hybrid +149_3-9 Q0 MARCO_20_236904717-1 61 -0.334029 hybrid +149_3-9 Q0 KILT_50461739-4 62 -0.334237 hybrid +149_3-9 Q0 MARCO_49_545533397-8 63 -0.334337 hybrid +149_3-9 Q0 MARCO_35_983730784-2 64 -0.335748 hybrid +149_3-9 Q0 MARCO_25_71968081-2 65 -0.336585 hybrid +149_3-9 Q0 MARCO_35_985489179-6 66 -0.337172 hybrid +149_3-9 Q0 MARCO_46_386990709-7 67 -0.341102 hybrid +149_3-9 Q0 MARCO_50_1937072557-10 68 -0.343844 hybrid +149_3-9 Q0 MARCO_00_1678523231-1 69 -0.349832 hybrid +149_3-9 Q0 MARCO_17_501082452-10 70 -0.350015 hybrid +149_3-9 Q0 MARCO_52_1379799154-3 71 -0.350693 hybrid +149_3-9 Q0 MARCO_41_543467334-1 72 -0.350694 hybrid +149_3-9 Q0 MARCO_50_1934036364-12 73 -0.353722 hybrid +149_3-9 Q0 KILT_32003-8 74 -0.354157 hybrid +149_3-9 Q0 KILT_6750836-1 75 -0.360990 hybrid +149_3-9 Q0 MARCO_13_1223557679-5 76 -0.363526 hybrid +149_3-9 Q0 MARCO_17_501082452-13 77 -0.365024 hybrid +149_3-9 Q0 MARCO_53_1339025320-4 78 -0.371788 hybrid +149_3-9 Q0 MARCO_49_545533397-13 79 -0.374102 hybrid +149_3-9 Q0 KILT_14944982-8 80 -0.374418 hybrid +149_3-9 Q0 MARCO_51_261213207-5 81 -0.376010 hybrid +149_3-9 Q0 KILT_1966753-4 82 -0.376107 hybrid +149_3-9 Q0 MARCO_35_983730784-3 83 -0.376265 hybrid +149_3-9 Q0 MARCO_13_943611038-2 84 -0.376446 hybrid +149_3-9 Q0 MARCO_49_545533397-4 85 -0.376446 hybrid +149_3-9 Q0 KILT_1966753-3 86 -0.376906 hybrid +149_3-9 Q0 MARCO_46_91899625-1 87 -0.376946 hybrid +149_3-9 Q0 KILT_4103607-1 88 -0.383343 hybrid +149_3-9 Q0 MARCO_39_596838303-4 89 -0.383478 hybrid +149_3-9 Q0 MARCO_27_637496644-18 90 -0.384032 hybrid +149_3-9 Q0 KILT_53042265-1 91 -0.385360 hybrid +149_3-9 Q0 MARCO_49_545533397-2 92 -0.386713 hybrid +149_3-9 Q0 MARCO_46_1440832617-2 93 -0.386797 hybrid +149_3-9 Q0 MARCO_15_528031691-4 94 -0.387492 hybrid +149_3-9 Q0 MARCO_50_1506395410-10 95 -0.387818 hybrid +149_3-9 Q0 MARCO_53_1339025320-3 96 -0.389493 hybrid +149_3-9 Q0 MARCO_13_956563554-5 97 -0.390969 hybrid +149_3-9 Q0 KILT_3114712-2 98 -0.392599 hybrid +149_3-9 Q0 MARCO_50_1290238291-9 99 -0.393244 hybrid +149_3-9 Q0 KILT_48566-5 100 -0.395405 hybrid +149_4-1 Q0 MARCO_50_2504117447-30 1 0.379566 hybrid +149_4-1 Q0 MARCO_11_1511787388-3 2 0.250000 hybrid +149_4-1 Q0 MARCO_04_409501215-3 3 0.233056 hybrid +149_4-1 Q0 MARCO_53_86301228-13 4 0.224070 hybrid +149_4-1 Q0 MARCO_50_2498479427-2 5 0.178089 hybrid +149_4-1 Q0 MARCO_53_86338603-5 6 0.111798 hybrid +149_4-1 Q0 MARCO_24_1910494372-6 7 0.097914 hybrid +149_4-1 Q0 MARCO_50_1418995341-4 8 0.061788 hybrid +149_4-1 Q0 MARCO_08_816090904-5 9 0.053704 hybrid +149_4-1 Q0 MARCO_19_2056728389-2 10 0.044638 hybrid +149_4-1 Q0 MARCO_39_864658027-3 11 0.038057 hybrid +149_4-1 Q0 MARCO_29_1169564639-2 12 0.028950 hybrid +149_4-1 Q0 MARCO_50_2504117447-47 13 0.021828 hybrid +149_4-1 Q0 MARCO_30_456981311-12 14 0.013663 hybrid +149_4-1 Q0 MARCO_13_432527240-1 15 0.005552 hybrid +149_4-1 Q0 MARCO_50_1510188904-2 16 -0.001710 hybrid +149_4-1 Q0 MARCO_11_775556690-11 17 -0.009995 hybrid +149_4-1 Q0 MARCO_50_1399796977-10 18 -0.011739 hybrid +149_4-1 Q0 MARCO_11_775639637-16 19 -0.013282 hybrid +149_4-1 Q0 MARCO_50_1399796977-17 20 -0.016443 hybrid +149_4-1 Q0 MARCO_21_1148385672-10 21 -0.034368 hybrid +149_4-1 Q0 MARCO_14_947909862-4 22 -0.042072 hybrid +149_4-1 Q0 MARCO_46_386545750-9 23 -0.054807 hybrid +149_4-1 Q0 MARCO_02_1752290410-4 24 -0.074623 hybrid +149_4-1 Q0 MARCO_34_1511918298-10 25 -0.079260 hybrid +149_4-1 Q0 MARCO_15_1133243725-3 26 -0.080483 hybrid +149_4-1 Q0 MARCO_22_1020253995-7 27 -0.080863 hybrid +149_4-1 Q0 MARCO_31_1220265159-5 28 -0.083055 hybrid +149_4-1 Q0 MARCO_11_1392173560-2 29 -0.096210 hybrid +149_4-1 Q0 MARCO_13_138823025-20 30 -0.098896 hybrid +149_4-1 Q0 MARCO_13_329878303-5 31 -0.106099 hybrid +149_4-1 Q0 MARCO_30_1778229041-4 32 -0.110321 hybrid +149_4-1 Q0 MARCO_30_817689001-8 33 -0.112078 hybrid +149_4-1 Q0 MARCO_55_763593574-3 34 -0.131113 hybrid +149_4-1 Q0 MARCO_15_1168881520-11 35 -0.133659 hybrid +149_4-1 Q0 MARCO_50_930160608-16 36 -0.145812 hybrid +149_4-1 Q0 MARCO_50_2506569724-88 37 -0.146761 hybrid +149_4-1 Q0 MARCO_00_1162020732-4 38 -0.150870 hybrid +149_4-1 Q0 MARCO_52_889975175-22 39 -0.153943 hybrid +149_4-1 Q0 MARCO_31_1556470851-5 40 -0.157805 hybrid +149_4-1 Q0 MARCO_48_589077963-11 41 -0.164754 hybrid +149_4-1 Q0 MARCO_11_776578264-14 42 -0.165923 hybrid +149_4-1 Q0 MARCO_11_776599354-9 43 -0.167333 hybrid +149_4-1 Q0 MARCO_42_1884689747-5 44 -0.168321 hybrid +149_4-1 Q0 MARCO_45_1036574347-2 45 -0.170566 hybrid +149_4-1 Q0 MARCO_05_1745840444-10 46 -0.172123 hybrid +149_4-1 Q0 MARCO_50_2506569724-15 47 -0.179840 hybrid +149_4-1 Q0 MARCO_57_2139873473-6 48 -0.181577 hybrid +149_4-1 Q0 MARCO_53_809997967-7 49 -0.188485 hybrid +149_4-1 Q0 MARCO_50_1509696457-8 50 -0.193042 hybrid +149_4-1 Q0 MARCO_46_383412327-5 51 -0.197124 hybrid +149_4-1 Q0 MARCO_11_775599588-10 52 -0.215618 hybrid +149_4-1 Q0 MARCO_15_1131963167-11 53 -0.220021 hybrid +149_4-1 Q0 MARCO_43_713571227-2 54 -0.222807 hybrid +149_4-1 Q0 MARCO_50_1606836355-19 55 -0.229963 hybrid +149_4-1 Q0 MARCO_07_637735790-9 56 -0.231399 hybrid +149_4-1 Q0 MARCO_31_1564796326-78 57 -0.232128 hybrid +149_4-1 Q0 MARCO_50_938475827-9 58 -0.237640 hybrid +149_4-1 Q0 MARCO_45_136959205-2 59 -0.241194 hybrid +149_4-1 Q0 MARCO_29_970033792-19 60 -0.241876 hybrid +149_4-1 Q0 MARCO_11_776320856-9 61 -0.242136 hybrid +149_4-1 Q0 MARCO_21_1147373151-6 62 -0.242711 hybrid +149_4-1 Q0 MARCO_11_775639637-4 63 -0.246552 hybrid +149_4-1 Q0 MARCO_50_796224832-21 64 -0.250000 hybrid +149_4-1 Q0 MARCO_24_652598678-5 65 -0.252131 hybrid +149_4-1 Q0 MARCO_21_1141151649-1 66 -0.256120 hybrid +149_4-1 Q0 MARCO_22_1523404063-2 67 -0.259367 hybrid +149_4-1 Q0 MARCO_23_1593654599-5 68 -0.261833 hybrid +149_4-1 Q0 MARCO_50_2268879788-13 69 -0.262745 hybrid +149_4-1 Q0 MARCO_11_776635379-13 70 -0.263062 hybrid +149_4-1 Q0 MARCO_31_1553998055-9 71 -0.264285 hybrid +149_4-1 Q0 MARCO_48_137094139-5 72 -0.264768 hybrid +149_4-1 Q0 MARCO_50_930260817-5 73 -0.266556 hybrid +149_4-1 Q0 MARCO_50_2506569724-109 74 -0.270003 hybrid +149_4-1 Q0 MARCO_50_1876380199-12 75 -0.279082 hybrid +149_4-1 Q0 MARCO_11_775612189-5 76 -0.282572 hybrid +149_4-1 Q0 MARCO_31_1557560349-5 77 -0.284115 hybrid +149_4-1 Q0 MARCO_50_2506569724-57 78 -0.286406 hybrid +149_4-1 Q0 MARCO_11_1378050004-7 79 -0.288464 hybrid +149_4-1 Q0 MARCO_22_247241966-24 80 -0.290602 hybrid +149_4-1 Q0 MARCO_11_776719134-3 81 -0.290742 hybrid +149_4-1 Q0 MARCO_53_86338603-6 82 -0.296876 hybrid +149_4-1 Q0 MARCO_11_776578264-3 83 -0.299335 hybrid +149_4-1 Q0 MARCO_28_655796431-14 84 -0.300377 hybrid +149_4-1 Q0 MARCO_49_796268253-2 85 -0.300591 hybrid +149_4-1 Q0 MARCO_23_243516966-34 86 -0.300664 hybrid +149_4-1 Q0 MARCO_29_1692137692-11 87 -0.306784 hybrid +149_4-1 Q0 MARCO_25_1410454799-3 88 -0.307619 hybrid +149_4-1 Q0 MARCO_13_1162447889-10 89 -0.309143 hybrid +149_4-1 Q0 MARCO_50_930260817-8 90 -0.310272 hybrid +149_4-1 Q0 MARCO_41_2131675329-1 91 -0.312944 hybrid +149_4-1 Q0 MARCO_29_266104444-2 92 -0.321323 hybrid +149_4-1 Q0 MARCO_44_1168812224-4 93 -0.322766 hybrid +149_4-1 Q0 MARCO_33_1431141789-7 94 -0.329166 hybrid +149_4-1 Q0 MARCO_50_722366695-6 95 -0.329347 hybrid +149_4-1 Q0 MARCO_50_1789079732-12 96 -0.330141 hybrid +149_4-1 Q0 MARCO_15_531575144-3 97 -0.333282 hybrid +149_4-1 Q0 MARCO_15_312268892-2 98 -0.335701 hybrid +149_4-1 Q0 MARCO_03_61944316-3 99 -0.336329 hybrid +149_4-1 Q0 MARCO_45_204247560-8 100 -0.337211 hybrid diff --git a/runs/q=NQtest_c=wikidpr_m=bm25.run b/runs/q=NQtest_c=wikidpr_m=bm25.run new file mode 100644 index 0000000000000000000000000000000000000000..3e5960fa63dd754caf70877354783a289ddb1358 --- /dev/null +++ b/runs/q=NQtest_c=wikidpr_m=bm25.run @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bafa8460eed20c8316fba8e7e56a2441ad8317c045727bebbac90b83aa61eb4 +size 152739978 diff --git a/runs/q=NQtest_c=wikidpr_m=bm25_k=30.run b/runs/q=NQtest_c=wikidpr_m=bm25_k=30.run new file mode 100644 index 0000000000000000000000000000000000000000..9abda8e3050719ee67e58f12969ea65d55b4d795 --- /dev/null +++ b/runs/q=NQtest_c=wikidpr_m=bm25_k=30.run @@ -0,0 +1,108300 @@ +test0 Q0 628725 1 16.331089 Anserini +test0 Q0 12584253 2 16.265154 Anserini +test0 Q0 628713 3 16.239960 Anserini +test0 Q0 16471851 4 15.407365 Anserini +test0 Q0 9572750 5 15.246908 Anserini +test0 Q0 8111043 6 15.187133 Anserini +test0 Q0 4622904 7 14.609497 Anserini +test0 Q0 11868832 8 14.473660 Anserini +test0 Q0 13971657 9 14.243703 Anserini +test0 Q0 284489 10 14.223196 Anserini +test0 Q0 284497 11 14.145811 Anserini +test0 Q0 4107064 12 14.064866 Anserini +test0 Q0 6605099 13 14.024475 Anserini +test0 Q0 628717 14 14.001713 Anserini +test0 Q0 1501465 15 13.994063 Anserini +test0 Q0 8111039 16 13.966097 Anserini +test0 Q0 4623023 17 13.942018 Anserini +test0 Q0 17068198 18 13.933703 Anserini +test0 Q0 20769157 19 13.714031 Anserini +test0 Q0 284439 20 13.709884 Anserini +test0 Q0 12186389 21 13.671193 Anserini +test0 Q0 628716 22 13.665588 Anserini +test0 Q0 14087661 23 13.654855 Anserini +test0 Q0 628718 24 13.649737 Anserini +test0 Q0 9572751 25 13.645999 Anserini +test0 Q0 12548458 26 13.642642 Anserini +test0 Q0 628721 27 13.610875 Anserini +test0 Q0 2858370 28 13.542782 Anserini +test0 Q0 4622905 29 13.532351 Anserini +test0 Q0 4622974 30 13.520422 Anserini +test1 Q0 18286058 1 13.552380 Anserini +test1 Q0 20196243 2 13.138790 Anserini +test1 Q0 20964172 3 12.260690 Anserini +test1 Q0 10454470 4 12.247810 Anserini +test1 Q0 3248661 5 12.101814 Anserini +test1 Q0 18286059 6 11.943148 Anserini +test1 Q0 18960904 7 11.816737 Anserini +test1 Q0 18286060 8 11.764107 Anserini +test1 Q0 18236739 9 11.683711 Anserini +test1 Q0 18286080 10 11.666946 Anserini +test1 Q0 18960860 11 11.619440 Anserini +test1 Q0 1460995 12 11.575451 Anserini +test1 Q0 4122320 13 11.382851 Anserini +test1 Q0 19600358 14 11.360622 Anserini +test1 Q0 13593211 15 11.302149 Anserini +test1 Q0 18286078 16 11.287594 Anserini +test1 Q0 16652154 17 11.217638 Anserini +test1 Q0 20234538 18 11.201913 Anserini +test1 Q0 9002317 19 11.118775 Anserini +test1 Q0 11098048 20 11.015437 Anserini +test1 Q0 4747131 21 10.976782 Anserini +test1 Q0 20964166 22 10.971544 Anserini +test1 Q0 20733579 23 10.971544 Anserini +test1 Q0 18960859 24 10.971022 Anserini +test1 Q0 3248664 25 10.970514 Anserini +test1 Q0 20196245 26 10.956854 Anserini +test1 Q0 20964163 27 10.948526 Anserini +test1 Q0 1550504 28 10.853331 Anserini +test1 Q0 13479581 29 10.830809 Anserini +test1 Q0 18286081 30 10.818807 Anserini +test10 Q0 4882266 1 17.804720 Anserini +test10 Q0 281154 2 17.657679 Anserini +test10 Q0 9062605 3 17.605579 Anserini +test10 Q0 4882269 4 17.349335 Anserini +test10 Q0 281153 5 17.289595 Anserini +test10 Q0 7841783 6 17.118275 Anserini +test10 Q0 7841788 7 17.118275 Anserini +test10 Q0 4882285 8 17.116508 Anserini +test10 Q0 4896459 9 17.035774 Anserini +test10 Q0 4896469 10 16.801630 Anserini +test10 Q0 281156 11 16.680000 Anserini +test10 Q0 4882286 12 16.676491 Anserini +test10 Q0 281155 13 16.653461 Anserini +test10 Q0 4882279 14 16.630630 Anserini +test10 Q0 7841784 15 16.498119 Anserini +test10 Q0 4882272 16 16.441999 Anserini +test10 Q0 10093593 17 16.396921 Anserini +test10 Q0 15141955 18 16.333929 Anserini +test10 Q0 11996386 19 16.320728 Anserini +test10 Q0 3179626 20 16.296644 Anserini +test10 Q0 281151 21 16.252367 Anserini +test10 Q0 4882274 22 16.228241 Anserini +test10 Q0 5816289 23 16.180315 Anserini +test10 Q0 15134659 24 16.178881 Anserini +test10 Q0 4882256 25 16.159576 Anserini +test10 Q0 15134658 26 16.090187 Anserini +test10 Q0 14062577 27 16.037575 Anserini +test10 Q0 4882267 28 16.003447 Anserini +test10 Q0 11996387 29 15.946722 Anserini +test10 Q0 4882278 30 15.904381 Anserini +test100 Q0 20431454 1 13.080428 Anserini +test100 Q0 10076730 2 12.898229 Anserini +test100 Q0 20934464 3 12.896514 Anserini +test100 Q0 20934465 4 12.896514 Anserini +test100 Q0 18419063 5 12.192192 Anserini +test100 Q0 18812297 6 12.044389 Anserini +test100 Q0 18247241 7 12.041480 Anserini +test100 Q0 19807846 8 11.965014 Anserini +test100 Q0 19807796 9 11.749220 Anserini +test100 Q0 8062402 10 11.639619 Anserini +test100 Q0 7457162 11 11.568590 Anserini +test100 Q0 19719676 12 11.432014 Anserini +test100 Q0 3200034 13 11.421306 Anserini +test100 Q0 7268785 14 11.277210 Anserini +test100 Q0 18952588 15 11.232071 Anserini +test100 Q0 17730626 16 11.209787 Anserini +test100 Q0 20521485 17 11.197802 Anserini +test100 Q0 18317136 18 11.185692 Anserini +test100 Q0 4700533 19 11.147025 Anserini +test100 Q0 19790088 20 11.106577 Anserini +test100 Q0 18812298 21 11.081511 Anserini +test100 Q0 13095533 22 11.050615 Anserini +test100 Q0 3374932 23 11.050163 Anserini +test100 Q0 16312480 24 11.048792 Anserini +test100 Q0 10076726 25 11.040715 Anserini +test100 Q0 19170926 26 11.016932 Anserini +test100 Q0 19170927 27 11.016932 Anserini +test100 Q0 18952589 28 11.004210 Anserini +test100 Q0 20521484 29 10.999969 Anserini +test100 Q0 17642268 30 10.999969 Anserini +test1000 Q0 274538 1 11.926435 Anserini +test1000 Q0 5520085 2 11.607037 Anserini +test1000 Q0 4218263 3 11.583980 Anserini +test1000 Q0 5234466 4 11.578279 Anserini +test1000 Q0 20111542 5 11.554409 Anserini +test1000 Q0 5520084 6 11.467469 Anserini +test1000 Q0 8064587 7 11.385162 Anserini +test1000 Q0 6009017 8 11.260727 Anserini +test1000 Q0 11877125 9 11.234625 Anserini +test1000 Q0 3185128 10 10.936783 Anserini +test1000 Q0 42575 11 10.871061 Anserini +test1000 Q0 2813532 12 10.832534 Anserini +test1000 Q0 12397655 13 10.806778 Anserini +test1000 Q0 5520077 14 10.790086 Anserini +test1000 Q0 7056745 15 10.719585 Anserini +test1000 Q0 7425100 16 10.712680 Anserini +test1000 Q0 3364470 17 10.707597 Anserini +test1000 Q0 2241757 18 10.581949 Anserini +test1000 Q0 20080285 19 10.554791 Anserini +test1000 Q0 17857010 20 10.543259 Anserini +test1000 Q0 6109451 21 10.541748 Anserini +test1000 Q0 14699778 22 10.491309 Anserini +test1000 Q0 5399408 23 10.476604 Anserini +test1000 Q0 4876648 24 10.453773 Anserini +test1000 Q0 7405399 25 10.453773 Anserini +test1000 Q0 4841442 26 10.434664 Anserini +test1000 Q0 1975083 27 10.419150 Anserini +test1000 Q0 5390854 28 10.408647 Anserini +test1000 Q0 7229289 29 10.373870 Anserini +test1000 Q0 5520081 30 10.356471 Anserini +test1001 Q0 4088157 1 11.373012 Anserini +test1001 Q0 12451889 2 10.779879 Anserini +test1001 Q0 2832946 3 10.762581 Anserini +test1001 Q0 2966790 4 10.666168 Anserini +test1001 Q0 158248 5 10.658928 Anserini +test1001 Q0 7823599 6 10.399973 Anserini +test1001 Q0 2832947 7 10.364343 Anserini +test1001 Q0 16213719 8 10.340164 Anserini +test1001 Q0 73338 9 10.313357 Anserini +test1001 Q0 16213717 10 10.273055 Anserini +test1001 Q0 7203513 11 10.235058 Anserini +test1001 Q0 2832951 12 10.165183 Anserini +test1001 Q0 2832937 13 10.031442 Anserini +test1001 Q0 13171382 14 10.017429 Anserini +test1001 Q0 2406289 15 9.790199 Anserini +test1001 Q0 3317386 16 9.714114 Anserini +test1001 Q0 7513289 17 9.658335 Anserini +test1001 Q0 1658148 18 9.587915 Anserini +test1001 Q0 2874018 19 9.560833 Anserini +test1001 Q0 3995228 20 9.487296 Anserini +test1001 Q0 11244603 21 9.481007 Anserini +test1001 Q0 3317392 22 9.470566 Anserini +test1001 Q0 2406305 23 9.454918 Anserini +test1001 Q0 4658815 24 9.399508 Anserini +test1001 Q0 12451891 25 9.399508 Anserini +test1001 Q0 2874016 26 9.337320 Anserini +test1001 Q0 5783049 27 9.329573 Anserini +test1001 Q0 1861604 28 9.264996 Anserini +test1001 Q0 7980151 29 9.238359 Anserini +test1001 Q0 586601 30 9.226261 Anserini +test1002 Q0 16910784 1 15.357441 Anserini +test1002 Q0 17361748 2 15.313617 Anserini +test1002 Q0 14874072 3 15.056709 Anserini +test1002 Q0 11843764 4 14.937185 Anserini +test1002 Q0 12445263 5 14.910785 Anserini +test1002 Q0 12445259 6 14.746292 Anserini +test1002 Q0 16907931 7 14.705328 Anserini +test1002 Q0 16906889 8 14.514944 Anserini +test1002 Q0 311490 9 14.296651 Anserini +test1002 Q0 3459972 10 14.166215 Anserini +test1002 Q0 8160882 11 14.145089 Anserini +test1002 Q0 15356167 12 14.139316 Anserini +test1002 Q0 11843766 13 14.066062 Anserini +test1002 Q0 11603506 14 14.049643 Anserini +test1002 Q0 12253263 15 14.027067 Anserini +test1002 Q0 12345702 16 14.010508 Anserini +test1002 Q0 9673849 17 13.944850 Anserini +test1002 Q0 9228770 18 13.834311 Anserini +test1002 Q0 17361752 19 13.636551 Anserini +test1002 Q0 12445262 20 13.632142 Anserini +test1002 Q0 17839331 21 13.619535 Anserini +test1002 Q0 12445324 22 13.609775 Anserini +test1002 Q0 15356187 23 13.595866 Anserini +test1002 Q0 15710048 24 13.531292 Anserini +test1002 Q0 2140979 25 13.504745 Anserini +test1002 Q0 311432 26 13.475967 Anserini +test1002 Q0 13164890 27 13.472354 Anserini +test1002 Q0 311553 28 13.415829 Anserini +test1002 Q0 11603510 29 13.395000 Anserini +test1002 Q0 3183239 30 13.342176 Anserini +test1003 Q0 2066224 1 23.675587 Anserini +test1003 Q0 2066212 2 21.331991 Anserini +test1003 Q0 2066230 3 21.316689 Anserini +test1003 Q0 2066223 4 20.697393 Anserini +test1003 Q0 2066218 5 20.614613 Anserini +test1003 Q0 2066221 6 20.441328 Anserini +test1003 Q0 2066216 7 20.303665 Anserini +test1003 Q0 2066219 8 19.614555 Anserini +test1003 Q0 2066213 9 19.205605 Anserini +test1003 Q0 5516056 10 18.366003 Anserini +test1003 Q0 5516057 11 16.926477 Anserini +test1003 Q0 2066228 12 16.867596 Anserini +test1003 Q0 18253401 13 16.750450 Anserini +test1003 Q0 2066214 14 16.634922 Anserini +test1003 Q0 2066217 15 16.634922 Anserini +test1003 Q0 2066220 16 16.520975 Anserini +test1003 Q0 13085991 17 16.520975 Anserini +test1003 Q0 4213912 18 16.520975 Anserini +test1003 Q0 17344581 19 16.520975 Anserini +test1003 Q0 11680533 20 15.935340 Anserini +test1003 Q0 20827454 21 15.400762 Anserini +test1003 Q0 20827455 22 15.236912 Anserini +test1003 Q0 12075212 23 15.076513 Anserini +test1003 Q0 17467212 24 14.996552 Anserini +test1003 Q0 18219964 25 14.919454 Anserini +test1003 Q0 19354083 26 13.507219 Anserini +test1003 Q0 2207747 27 13.264706 Anserini +test1003 Q0 2066215 28 12.968031 Anserini +test1003 Q0 2066222 29 12.830063 Anserini +test1003 Q0 2066226 30 12.830063 Anserini +test1004 Q0 9244170 1 14.409313 Anserini +test1004 Q0 7667957 2 13.834317 Anserini +test1004 Q0 19396347 3 13.820970 Anserini +test1004 Q0 19878677 4 13.003489 Anserini +test1004 Q0 8718849 5 12.993269 Anserini +test1004 Q0 9975566 6 12.919662 Anserini +test1004 Q0 12843975 7 12.896358 Anserini +test1004 Q0 12843967 8 12.611511 Anserini +test1004 Q0 12843972 9 12.563117 Anserini +test1004 Q0 9862143 10 12.195498 Anserini +test1004 Q0 15204761 11 12.192672 Anserini +test1004 Q0 16188569 12 12.177784 Anserini +test1004 Q0 1486505 13 12.151415 Anserini +test1004 Q0 9852220 14 12.027874 Anserini +test1004 Q0 18389018 15 12.027821 Anserini +test1004 Q0 11124583 16 12.007333 Anserini +test1004 Q0 9868955 17 11.900984 Anserini +test1004 Q0 11901760 18 11.786439 Anserini +test1004 Q0 17736686 19 11.773277 Anserini +test1004 Q0 17736592 20 11.600006 Anserini +test1004 Q0 9975393 21 11.570734 Anserini +test1004 Q0 9852196 22 11.564400 Anserini +test1004 Q0 19119247 23 11.554402 Anserini +test1004 Q0 18678558 24 11.549650 Anserini +test1004 Q0 19820531 25 11.547424 Anserini +test1004 Q0 11393528 26 11.534901 Anserini +test1004 Q0 9852231 27 11.426838 Anserini +test1004 Q0 12844501 28 11.426838 Anserini +test1004 Q0 16635211 29 11.425447 Anserini +test1004 Q0 14862365 30 11.386622 Anserini +test1005 Q0 675797 1 11.510356 Anserini +test1005 Q0 19394558 2 10.932236 Anserini +test1005 Q0 9858489 3 10.668536 Anserini +test1005 Q0 15833494 4 10.436711 Anserini +test1005 Q0 16821376 5 10.430054 Anserini +test1005 Q0 675822 6 10.272328 Anserini +test1005 Q0 13786272 7 10.145300 Anserini +test1005 Q0 3174880 8 10.080353 Anserini +test1005 Q0 18009921 9 10.067855 Anserini +test1005 Q0 20986823 10 10.018627 Anserini +test1005 Q0 12881593 11 9.868764 Anserini +test1005 Q0 14430398 12 9.810127 Anserini +test1005 Q0 3146636 13 9.781425 Anserini +test1005 Q0 2149562 14 9.713409 Anserini +test1005 Q0 12321620 15 9.684650 Anserini +test1005 Q0 2688890 16 9.679856 Anserini +test1005 Q0 20501145 17 9.474909 Anserini +test1005 Q0 5601699 18 9.404084 Anserini +test1005 Q0 19293964 19 9.366904 Anserini +test1005 Q0 2676071 20 9.253071 Anserini +test1005 Q0 12715797 21 9.230111 Anserini +test1005 Q0 675803 22 9.196592 Anserini +test1005 Q0 675809 23 9.192225 Anserini +test1005 Q0 5972690 24 9.190790 Anserini +test1005 Q0 18009920 25 9.173450 Anserini +test1005 Q0 18009923 26 9.173450 Anserini +test1005 Q0 2170110 27 9.139312 Anserini +test1005 Q0 675801 28 9.139312 Anserini +test1005 Q0 10832373 29 9.139312 Anserini +test1005 Q0 675798 30 9.114063 Anserini +test1006 Q0 10202063 1 14.722560 Anserini +test1006 Q0 7495696 2 12.315733 Anserini +test1006 Q0 14407044 3 12.028574 Anserini +test1006 Q0 16367319 4 11.890697 Anserini +test1006 Q0 4508429 5 11.838408 Anserini +test1006 Q0 10202057 6 11.815800 Anserini +test1006 Q0 5529758 7 11.625180 Anserini +test1006 Q0 10202072 8 11.622258 Anserini +test1006 Q0 10202071 9 11.587720 Anserini +test1006 Q0 6800179 10 11.576037 Anserini +test1006 Q0 13145209 11 11.538968 Anserini +test1006 Q0 10202054 12 11.530409 Anserini +test1006 Q0 10202074 13 11.464806 Anserini +test1006 Q0 14323125 14 11.461585 Anserini +test1006 Q0 6678030 15 11.448395 Anserini +test1006 Q0 10202065 16 11.378291 Anserini +test1006 Q0 6786831 17 11.368427 Anserini +test1006 Q0 16581704 18 11.254907 Anserini +test1006 Q0 5285979 19 11.231035 Anserini +test1006 Q0 3117696 20 11.195287 Anserini +test1006 Q0 11075069 21 11.120655 Anserini +test1006 Q0 5400051 22 11.060053 Anserini +test1006 Q0 1843338 23 11.029922 Anserini +test1006 Q0 17990711 24 10.866530 Anserini +test1006 Q0 16435890 25 10.866153 Anserini +test1006 Q0 2822474 26 10.859394 Anserini +test1006 Q0 10202069 27 10.823298 Anserini +test1006 Q0 10202064 28 10.774269 Anserini +test1006 Q0 19715260 29 10.728197 Anserini +test1006 Q0 673509 30 10.710357 Anserini +test1007 Q0 19361645 1 15.376245 Anserini +test1007 Q0 19361634 2 14.846772 Anserini +test1007 Q0 19760251 3 14.414534 Anserini +test1007 Q0 19760246 4 14.355933 Anserini +test1007 Q0 19361644 5 14.053236 Anserini +test1007 Q0 18412992 6 13.652925 Anserini +test1007 Q0 18412993 7 13.652925 Anserini +test1007 Q0 19824107 8 13.413823 Anserini +test1007 Q0 19824098 9 13.377086 Anserini +test1007 Q0 19824111 10 13.377086 Anserini +test1007 Q0 12804286 11 13.164635 Anserini +test1007 Q0 20316321 12 12.973270 Anserini +test1007 Q0 4104029 13 12.768850 Anserini +test1007 Q0 9394619 14 12.751894 Anserini +test1007 Q0 3150593 15 12.553875 Anserini +test1007 Q0 19361643 16 12.336309 Anserini +test1007 Q0 20803053 17 12.241585 Anserini +test1007 Q0 12341849 18 12.192924 Anserini +test1007 Q0 12827041 19 12.089643 Anserini +test1007 Q0 12676659 20 12.037698 Anserini +test1007 Q0 19760247 21 12.012046 Anserini +test1007 Q0 19760248 22 12.012046 Anserini +test1007 Q0 19361639 23 12.012046 Anserini +test1007 Q0 7636826 24 11.978639 Anserini +test1007 Q0 7855296 25 11.955067 Anserini +test1007 Q0 9850368 26 11.933301 Anserini +test1007 Q0 19824105 27 11.930878 Anserini +test1007 Q0 14861873 28 11.776072 Anserini +test1007 Q0 2957022 29 11.750598 Anserini +test1007 Q0 11059685 30 11.738259 Anserini +test1008 Q0 13970718 1 23.240826 Anserini +test1008 Q0 13970724 2 23.240826 Anserini +test1008 Q0 13847873 3 21.366129 Anserini +test1008 Q0 13139589 4 20.705276 Anserini +test1008 Q0 15698938 5 20.705276 Anserini +test1008 Q0 17546961 6 20.440014 Anserini +test1008 Q0 13261390 7 19.566288 Anserini +test1008 Q0 16970615 8 19.264517 Anserini +test1008 Q0 3326082 9 18.021822 Anserini +test1008 Q0 13261386 10 17.862373 Anserini +test1008 Q0 15793350 11 17.698549 Anserini +test1008 Q0 12723111 12 17.329805 Anserini +test1008 Q0 18390494 13 17.329805 Anserini +test1008 Q0 7820158 14 17.285923 Anserini +test1008 Q0 4327544 15 17.148361 Anserini +test1008 Q0 4327545 16 17.029266 Anserini +test1008 Q0 7055486 17 17.021084 Anserini +test1008 Q0 5088198 18 16.878080 Anserini +test1008 Q0 13109283 19 16.765825 Anserini +test1008 Q0 13261397 20 16.363024 Anserini +test1008 Q0 13261381 21 16.363024 Anserini +test1008 Q0 7055485 22 16.214561 Anserini +test1008 Q0 14827030 23 16.211107 Anserini +test1008 Q0 16188304 24 16.087339 Anserini +test1008 Q0 13261387 25 16.081060 Anserini +test1008 Q0 3859894 26 16.025782 Anserini +test1008 Q0 20724026 27 15.786998 Anserini +test1008 Q0 7119600 28 15.751822 Anserini +test1008 Q0 16244600 29 15.748034 Anserini +test1008 Q0 3934416 30 15.622232 Anserini +test1009 Q0 8307489 1 10.269062 Anserini +test1009 Q0 7074674 2 10.037566 Anserini +test1009 Q0 15655175 3 10.024487 Anserini +test1009 Q0 6313685 4 9.995646 Anserini +test1009 Q0 8307480 5 9.951934 Anserini +test1009 Q0 6290453 6 9.726138 Anserini +test1009 Q0 6290466 7 9.726138 Anserini +test1009 Q0 13123029 8 9.583078 Anserini +test1009 Q0 20673672 9 9.481066 Anserini +test1009 Q0 15042231 10 9.448589 Anserini +test1009 Q0 8626951 11 9.391184 Anserini +test1009 Q0 14221589 12 9.388064 Anserini +test1009 Q0 16840390 13 9.329791 Anserini +test1009 Q0 11486688 14 9.321513 Anserini +test1009 Q0 18474166 15 9.320263 Anserini +test1009 Q0 8239199 16 9.269053 Anserini +test1009 Q0 8626948 17 9.175776 Anserini +test1009 Q0 11956463 18 9.171978 Anserini +test1009 Q0 18331872 19 9.036516 Anserini +test1009 Q0 18129360 20 8.997242 Anserini +test1009 Q0 7253269 21 8.977711 Anserini +test1009 Q0 5046509 22 8.977711 Anserini +test1009 Q0 11620965 23 8.971925 Anserini +test1009 Q0 14951224 24 8.971925 Anserini +test1009 Q0 11956461 25 8.949581 Anserini +test1009 Q0 11956465 26 8.949581 Anserini +test1009 Q0 5046532 27 8.930463 Anserini +test1009 Q0 15651680 28 8.930463 Anserini +test1009 Q0 92467 29 8.927449 Anserini +test1009 Q0 9068446 30 8.913818 Anserini +test101 Q0 4656496 1 8.795045 Anserini +test101 Q0 6829154 2 8.600208 Anserini +test101 Q0 13544805 3 8.502328 Anserini +test101 Q0 2235371 4 8.458656 Anserini +test101 Q0 14856174 5 8.436540 Anserini +test101 Q0 4169644 6 8.409262 Anserini +test101 Q0 2413809 7 8.396776 Anserini +test101 Q0 4169751 8 8.367504 Anserini +test101 Q0 4169810 9 8.316606 Anserini +test101 Q0 7023611 10 8.307693 Anserini +test101 Q0 4342376 11 8.206138 Anserini +test101 Q0 6303568 12 8.205346 Anserini +test101 Q0 7370205 13 8.181296 Anserini +test101 Q0 10925344 14 8.045090 Anserini +test101 Q0 12067678 15 8.011870 Anserini +test101 Q0 4341707 16 8.000410 Anserini +test101 Q0 2531344 17 7.978224 Anserini +test101 Q0 5989036 18 7.951530 Anserini +test101 Q0 13558167 19 7.946243 Anserini +test101 Q0 13544794 20 7.916687 Anserini +test101 Q0 3960947 21 7.914550 Anserini +test101 Q0 6177701 22 7.893265 Anserini +test101 Q0 4676005 23 7.862194 Anserini +test101 Q0 12329489 24 7.857190 Anserini +test101 Q0 4169892 25 7.849772 Anserini +test101 Q0 4341913 26 7.814997 Anserini +test101 Q0 13648624 27 7.812284 Anserini +test101 Q0 4169935 28 7.811983 Anserini +test101 Q0 3939254 29 7.794923 Anserini +test101 Q0 13724706 30 7.753086 Anserini +test1010 Q0 18364717 1 18.920527 Anserini +test1010 Q0 19093800 2 17.683538 Anserini +test1010 Q0 15576439 3 17.445190 Anserini +test1010 Q0 7907348 4 16.322252 Anserini +test1010 Q0 4883184 5 16.274290 Anserini +test1010 Q0 803884 6 15.683576 Anserini +test1010 Q0 20167375 7 15.425527 Anserini +test1010 Q0 8064560 8 15.338376 Anserini +test1010 Q0 14622995 9 15.306418 Anserini +test1010 Q0 15576436 10 15.296821 Anserini +test1010 Q0 14463881 11 15.195289 Anserini +test1010 Q0 3701938 12 15.180668 Anserini +test1010 Q0 2726723 13 15.173276 Anserini +test1010 Q0 4883188 14 15.173276 Anserini +test1010 Q0 18864056 15 15.157457 Anserini +test1010 Q0 19517180 16 15.048718 Anserini +test1010 Q0 2726710 17 14.973140 Anserini +test1010 Q0 8064580 18 14.938078 Anserini +test1010 Q0 16142116 19 14.931667 Anserini +test1010 Q0 2397351 20 14.842734 Anserini +test1010 Q0 4883191 21 14.821083 Anserini +test1010 Q0 18272266 22 14.732593 Anserini +test1010 Q0 6477302 23 14.701624 Anserini +test1010 Q0 8064556 24 14.693460 Anserini +test1010 Q0 8272828 25 14.688348 Anserini +test1010 Q0 803911 26 14.673480 Anserini +test1010 Q0 12384347 27 14.655083 Anserini +test1010 Q0 16142114 28 14.616646 Anserini +test1010 Q0 18586293 29 14.615829 Anserini +test1010 Q0 8064573 30 14.615539 Anserini +test1011 Q0 761640 1 12.411914 Anserini +test1011 Q0 761637 2 11.737079 Anserini +test1011 Q0 13891114 3 11.413574 Anserini +test1011 Q0 13513846 4 10.705664 Anserini +test1011 Q0 20906789 5 10.615381 Anserini +test1011 Q0 7149505 6 10.485951 Anserini +test1011 Q0 2541682 7 10.477866 Anserini +test1011 Q0 9953407 8 10.286848 Anserini +test1011 Q0 761642 9 9.929102 Anserini +test1011 Q0 15196433 10 9.872214 Anserini +test1011 Q0 16506026 11 9.796038 Anserini +test1011 Q0 3952296 12 9.771446 Anserini +test1011 Q0 20321148 13 9.739821 Anserini +test1011 Q0 761633 14 9.698256 Anserini +test1011 Q0 13916963 15 9.695339 Anserini +test1011 Q0 18446052 16 9.688209 Anserini +test1011 Q0 761654 17 9.568821 Anserini +test1011 Q0 15149454 18 9.485899 Anserini +test1011 Q0 19686382 19 9.448750 Anserini +test1011 Q0 19466632 20 9.433041 Anserini +test1011 Q0 1714154 21 9.390585 Anserini +test1011 Q0 2690058 22 9.372386 Anserini +test1011 Q0 18319374 23 9.367011 Anserini +test1011 Q0 4636546 24 9.343257 Anserini +test1011 Q0 9471299 25 9.324081 Anserini +test1011 Q0 74692 26 9.319531 Anserini +test1011 Q0 761655 27 9.281178 Anserini +test1011 Q0 949468 28 9.274120 Anserini +test1011 Q0 4663110 29 9.256550 Anserini +test1011 Q0 761639 30 9.238930 Anserini +test1012 Q0 5992414 1 13.251223 Anserini +test1012 Q0 388698 2 13.017500 Anserini +test1012 Q0 2196841 3 12.499295 Anserini +test1012 Q0 7941791 4 11.780654 Anserini +test1012 Q0 388755 5 11.474899 Anserini +test1012 Q0 388729 6 11.324245 Anserini +test1012 Q0 7941774 7 11.143139 Anserini +test1012 Q0 2199518 8 11.074656 Anserini +test1012 Q0 20894350 9 10.760623 Anserini +test1012 Q0 18102518 10 10.691256 Anserini +test1012 Q0 388701 11 10.691256 Anserini +test1012 Q0 7941782 12 10.487186 Anserini +test1012 Q0 4553046 13 10.397932 Anserini +test1012 Q0 388725 14 10.396580 Anserini +test1012 Q0 15545451 15 10.159153 Anserini +test1012 Q0 388712 16 10.117990 Anserini +test1012 Q0 2357279 17 10.078665 Anserini +test1012 Q0 388711 18 10.078665 Anserini +test1012 Q0 12951428 19 10.064963 Anserini +test1012 Q0 4386948 20 10.022184 Anserini +test1012 Q0 3196219 21 9.970620 Anserini +test1012 Q0 7661415 22 9.962937 Anserini +test1012 Q0 2635078 23 9.954701 Anserini +test1012 Q0 388719 24 9.887554 Anserini +test1012 Q0 1543877 25 9.856962 Anserini +test1012 Q0 12798089 26 9.828969 Anserini +test1012 Q0 3857221 27 9.821424 Anserini +test1012 Q0 7941771 28 9.809171 Anserini +test1012 Q0 2199520 29 9.768553 Anserini +test1012 Q0 897168 30 9.738415 Anserini +test1013 Q0 2269188 1 16.202419 Anserini +test1013 Q0 18384334 2 16.042931 Anserini +test1013 Q0 2269187 3 15.786911 Anserini +test1013 Q0 17928258 4 15.316910 Anserini +test1013 Q0 5078231 5 14.912300 Anserini +test1013 Q0 499151 6 14.662042 Anserini +test1013 Q0 7318636 7 14.604488 Anserini +test1013 Q0 6883451 8 14.579485 Anserini +test1013 Q0 7307236 9 14.500761 Anserini +test1013 Q0 7948936 10 14.454502 Anserini +test1013 Q0 6883446 11 14.450095 Anserini +test1013 Q0 9607126 12 14.366009 Anserini +test1013 Q0 3284286 13 14.320899 Anserini +test1013 Q0 7307235 14 14.308695 Anserini +test1013 Q0 7912993 15 14.235532 Anserini +test1013 Q0 185497 16 14.209818 Anserini +test1013 Q0 80674 17 14.201696 Anserini +test1013 Q0 2757791 18 14.198973 Anserini +test1013 Q0 1511940 19 14.171358 Anserini +test1013 Q0 7948933 20 14.150769 Anserini +test1013 Q0 8362094 21 14.132229 Anserini +test1013 Q0 3726103 22 14.124149 Anserini +test1013 Q0 298708 23 14.119429 Anserini +test1013 Q0 7227141 24 14.102680 Anserini +test1013 Q0 10002027 25 13.992558 Anserini +test1013 Q0 9294498 26 13.921187 Anserini +test1013 Q0 19691547 27 13.911263 Anserini +test1013 Q0 19691562 28 13.911263 Anserini +test1013 Q0 17802527 29 13.905159 Anserini +test1013 Q0 6561031 30 13.897554 Anserini +test1014 Q0 9577351 1 21.954609 Anserini +test1014 Q0 9577353 2 21.616707 Anserini +test1014 Q0 4716614 3 20.917753 Anserini +test1014 Q0 4716625 4 20.837933 Anserini +test1014 Q0 14734150 5 19.995533 Anserini +test1014 Q0 20153172 6 19.993961 Anserini +test1014 Q0 14734152 7 19.893509 Anserini +test1014 Q0 20153174 8 19.893509 Anserini +test1014 Q0 11740662 9 19.692547 Anserini +test1014 Q0 3974624 10 18.851692 Anserini +test1014 Q0 3974625 11 18.851692 Anserini +test1014 Q0 9577352 12 18.217319 Anserini +test1014 Q0 14731365 13 18.051483 Anserini +test1014 Q0 14731364 14 18.051483 Anserini +test1014 Q0 13974557 15 16.280655 Anserini +test1014 Q0 8741590 16 16.247314 Anserini +test1014 Q0 4716617 17 15.624354 Anserini +test1014 Q0 17193713 18 15.620140 Anserini +test1014 Q0 8741593 19 15.340082 Anserini +test1014 Q0 11559955 20 15.241034 Anserini +test1014 Q0 4716616 21 15.132921 Anserini +test1014 Q0 4716619 22 15.075896 Anserini +test1014 Q0 11559954 23 15.051420 Anserini +test1014 Q0 727732 24 14.738634 Anserini +test1014 Q0 16700119 25 14.738634 Anserini +test1014 Q0 4716624 26 14.641135 Anserini +test1014 Q0 11114200 27 14.635407 Anserini +test1014 Q0 1619027 28 14.635407 Anserini +test1014 Q0 11740663 29 14.604244 Anserini +test1014 Q0 12157501 30 14.518852 Anserini +test1015 Q0 2199668 1 15.458111 Anserini +test1015 Q0 2199667 2 14.417952 Anserini +test1015 Q0 1800946 3 13.505608 Anserini +test1015 Q0 2199671 4 13.138412 Anserini +test1015 Q0 2199669 5 13.052387 Anserini +test1015 Q0 17186325 6 12.856875 Anserini +test1015 Q0 2743824 7 12.767991 Anserini +test1015 Q0 15911268 8 12.612265 Anserini +test1015 Q0 1769916 9 12.484967 Anserini +test1015 Q0 12237125 10 12.402115 Anserini +test1015 Q0 5588570 11 12.219749 Anserini +test1015 Q0 10418842 12 12.219749 Anserini +test1015 Q0 981407 13 12.133681 Anserini +test1015 Q0 669909 14 12.043623 Anserini +test1015 Q0 101084 15 11.866033 Anserini +test1015 Q0 1781367 16 11.850203 Anserini +test1015 Q0 12312142 17 11.850203 Anserini +test1015 Q0 1790279 18 11.850203 Anserini +test1015 Q0 14239150 19 11.760043 Anserini +test1015 Q0 2199664 20 11.695008 Anserini +test1015 Q0 2199654 21 11.686382 Anserini +test1015 Q0 10418840 22 11.651983 Anserini +test1015 Q0 17709247 23 11.648211 Anserini +test1015 Q0 9051907 24 11.648211 Anserini +test1015 Q0 12508911 25 11.493227 Anserini +test1015 Q0 9578964 26 11.445660 Anserini +test1015 Q0 1414247 27 11.297423 Anserini +test1015 Q0 12312136 28 11.202111 Anserini +test1015 Q0 2199665 29 11.133610 Anserini +test1015 Q0 14365811 30 11.133610 Anserini +test1016 Q0 10237420 1 17.007984 Anserini +test1016 Q0 10237416 2 16.899298 Anserini +test1016 Q0 10593348 3 16.536659 Anserini +test1016 Q0 19633615 4 15.815310 Anserini +test1016 Q0 17030939 5 15.477443 Anserini +test1016 Q0 9681745 6 15.184598 Anserini +test1016 Q0 9681742 7 15.184598 Anserini +test1016 Q0 16119899 8 15.122254 Anserini +test1016 Q0 4083379 9 14.749917 Anserini +test1016 Q0 17030940 10 14.729889 Anserini +test1016 Q0 12904300 11 14.492512 Anserini +test1016 Q0 4649178 12 14.300992 Anserini +test1016 Q0 19633618 13 14.219439 Anserini +test1016 Q0 12973851 14 14.199849 Anserini +test1016 Q0 12904298 15 14.191490 Anserini +test1016 Q0 20661462 16 14.177480 Anserini +test1016 Q0 11460493 17 14.089080 Anserini +test1016 Q0 12973848 18 14.072643 Anserini +test1016 Q0 4083378 19 13.947512 Anserini +test1016 Q0 14343688 20 13.886576 Anserini +test1016 Q0 15417313 21 13.781338 Anserini +test1016 Q0 835738 22 13.751778 Anserini +test1016 Q0 13466578 23 13.739611 Anserini +test1016 Q0 12737937 24 13.726093 Anserini +test1016 Q0 12270934 25 13.683508 Anserini +test1016 Q0 14043668 26 13.570630 Anserini +test1016 Q0 11682943 27 13.566853 Anserini +test1016 Q0 16425640 28 13.541946 Anserini +test1016 Q0 19168159 29 13.506641 Anserini +test1016 Q0 8354869 30 13.431540 Anserini +test1017 Q0 9977329 1 10.751434 Anserini +test1017 Q0 35821 2 10.484293 Anserini +test1017 Q0 10366177 3 10.440026 Anserini +test1017 Q0 9210573 4 10.440026 Anserini +test1017 Q0 11853287 5 10.359237 Anserini +test1017 Q0 13615215 6 10.190845 Anserini +test1017 Q0 6501842 7 10.101032 Anserini +test1017 Q0 8390778 8 9.923073 Anserini +test1017 Q0 18782782 9 9.891212 Anserini +test1017 Q0 19122402 10 9.822607 Anserini +test1017 Q0 35820 11 9.791718 Anserini +test1017 Q0 15918676 12 9.735291 Anserini +test1017 Q0 11141851 13 9.636574 Anserini +test1017 Q0 9643906 14 9.606989 Anserini +test1017 Q0 4847826 15 9.585966 Anserini +test1017 Q0 19317128 16 9.543137 Anserini +test1017 Q0 7838000 17 9.385344 Anserini +test1017 Q0 4847834 18 9.368834 Anserini +test1017 Q0 11860874 19 9.326005 Anserini +test1017 Q0 3901537 20 9.300821 Anserini +test1017 Q0 2511596 21 9.282829 Anserini +test1017 Q0 14564233 22 9.282829 Anserini +test1017 Q0 14564236 23 9.282829 Anserini +test1017 Q0 14564235 24 9.266879 Anserini +test1017 Q0 9977328 25 9.226217 Anserini +test1017 Q0 11310842 26 9.170368 Anserini +test1017 Q0 11310847 27 9.170368 Anserini +test1017 Q0 6501832 28 9.156809 Anserini +test1017 Q0 15189862 29 9.127476 Anserini +test1017 Q0 15695013 30 9.116343 Anserini +test1018 Q0 2972883 1 10.369352 Anserini +test1018 Q0 10929784 2 10.343766 Anserini +test1018 Q0 12994370 3 9.954456 Anserini +test1018 Q0 12318401 4 9.827803 Anserini +test1018 Q0 16226598 5 9.660226 Anserini +test1018 Q0 794408 6 9.451047 Anserini +test1018 Q0 18326790 7 9.227614 Anserini +test1018 Q0 4765419 8 9.142792 Anserini +test1018 Q0 20886589 9 9.136951 Anserini +test1018 Q0 13408259 10 9.134685 Anserini +test1018 Q0 13408263 11 9.085570 Anserini +test1018 Q0 8633163 12 9.085570 Anserini +test1018 Q0 9920716 13 9.081240 Anserini +test1018 Q0 13739454 14 9.081240 Anserini +test1018 Q0 6670636 15 9.022449 Anserini +test1018 Q0 5274374 16 9.003355 Anserini +test1018 Q0 5274377 17 9.002249 Anserini +test1018 Q0 15703633 18 8.974489 Anserini +test1018 Q0 19484588 19 8.953909 Anserini +test1018 Q0 713464 20 8.952558 Anserini +test1018 Q0 16648926 21 8.945109 Anserini +test1018 Q0 12800958 22 8.852562 Anserini +test1018 Q0 9920736 23 8.850572 Anserini +test1018 Q0 15655650 24 8.836570 Anserini +test1018 Q0 524429 25 8.828857 Anserini +test1018 Q0 16648929 26 8.804281 Anserini +test1018 Q0 19166831 27 8.797012 Anserini +test1018 Q0 16181393 28 8.763960 Anserini +test1018 Q0 15703649 29 8.727657 Anserini +test1018 Q0 19785275 30 8.709188 Anserini +test1019 Q0 3552919 1 13.651035 Anserini +test1019 Q0 19423249 2 13.322679 Anserini +test1019 Q0 6973879 3 13.055472 Anserini +test1019 Q0 803400 4 12.825865 Anserini +test1019 Q0 17572999 5 12.527050 Anserini +test1019 Q0 13177667 6 12.110171 Anserini +test1019 Q0 2141749 7 11.944975 Anserini +test1019 Q0 18464070 8 11.592287 Anserini +test1019 Q0 7255615 9 11.545776 Anserini +test1019 Q0 7255619 10 11.545776 Anserini +test1019 Q0 1975067 11 11.508081 Anserini +test1019 Q0 17249676 12 11.492592 Anserini +test1019 Q0 7248493 13 11.464559 Anserini +test1019 Q0 14463889 14 11.441031 Anserini +test1019 Q0 18364720 15 11.383774 Anserini +test1019 Q0 14622938 16 11.379241 Anserini +test1019 Q0 11560267 17 11.332638 Anserini +test1019 Q0 11434688 18 11.320328 Anserini +test1019 Q0 11904500 19 11.280758 Anserini +test1019 Q0 19423246 20 11.242558 Anserini +test1019 Q0 7180605 21 11.161913 Anserini +test1019 Q0 2104043 22 11.129086 Anserini +test1019 Q0 16726029 23 11.092491 Anserini +test1019 Q0 19528720 24 11.083038 Anserini +test1019 Q0 15133065 25 11.072309 Anserini +test1019 Q0 1322980 26 11.026121 Anserini +test1019 Q0 7194752 27 10.980174 Anserini +test1019 Q0 6236847 28 10.976994 Anserini +test1019 Q0 19423219 29 10.953648 Anserini +test1019 Q0 803860 30 10.932394 Anserini +test102 Q0 1052628 1 13.925014 Anserini +test102 Q0 5877988 2 13.006203 Anserini +test102 Q0 6265539 3 12.744242 Anserini +test102 Q0 8615424 4 12.680774 Anserini +test102 Q0 3373607 5 12.357033 Anserini +test102 Q0 15997924 6 12.334633 Anserini +test102 Q0 12027389 7 12.294741 Anserini +test102 Q0 4254501 8 12.234391 Anserini +test102 Q0 8615435 9 12.182374 Anserini +test102 Q0 6265526 10 12.159724 Anserini +test102 Q0 6265538 11 12.085574 Anserini +test102 Q0 9398590 12 12.063918 Anserini +test102 Q0 7039580 13 12.005939 Anserini +test102 Q0 5820790 14 12.004148 Anserini +test102 Q0 7728642 15 11.966623 Anserini +test102 Q0 6611002 16 11.894319 Anserini +test102 Q0 1052559 17 11.830409 Anserini +test102 Q0 7653001 18 11.795671 Anserini +test102 Q0 3905773 19 11.767360 Anserini +test102 Q0 3366990 20 11.760778 Anserini +test102 Q0 7039586 21 11.707408 Anserini +test102 Q0 8615429 22 11.704703 Anserini +test102 Q0 8664832 23 11.672317 Anserini +test102 Q0 7630909 24 11.671617 Anserini +test102 Q0 8615427 25 11.654525 Anserini +test102 Q0 6265520 26 11.645035 Anserini +test102 Q0 8615825 27 11.545603 Anserini +test102 Q0 8621181 28 11.534636 Anserini +test102 Q0 8615149 29 11.515691 Anserini +test102 Q0 246305 30 11.512892 Anserini +test1020 Q0 5884023 1 9.916801 Anserini +test1020 Q0 17229400 2 9.497519 Anserini +test1020 Q0 19417731 3 9.468389 Anserini +test1020 Q0 12157752 4 9.304364 Anserini +test1020 Q0 8121564 5 8.943172 Anserini +test1020 Q0 6503014 6 8.815123 Anserini +test1020 Q0 12157749 7 8.687910 Anserini +test1020 Q0 16143072 8 8.668442 Anserini +test1020 Q0 16337143 9 8.528799 Anserini +test1020 Q0 5839370 10 8.505054 Anserini +test1020 Q0 14293597 11 8.392744 Anserini +test1020 Q0 5884049 12 8.371567 Anserini +test1020 Q0 737086 13 8.348885 Anserini +test1020 Q0 4249178 14 8.334441 Anserini +test1020 Q0 2235289 15 8.240797 Anserini +test1020 Q0 16983540 16 8.240797 Anserini +test1020 Q0 1482645 17 8.238131 Anserini +test1020 Q0 4984987 18 8.212610 Anserini +test1020 Q0 5884081 19 8.153063 Anserini +test1020 Q0 11790978 20 8.141916 Anserini +test1020 Q0 15068882 21 8.139760 Anserini +test1020 Q0 2547841 22 8.127030 Anserini +test1020 Q0 2514625 23 8.120529 Anserini +test1020 Q0 14500289 24 8.112801 Anserini +test1020 Q0 5536588 25 8.096776 Anserini +test1020 Q0 795746 26 8.060133 Anserini +test1020 Q0 5884059 27 8.050153 Anserini +test1020 Q0 5884080 28 8.034751 Anserini +test1020 Q0 737096 29 8.025489 Anserini +test1020 Q0 12409065 30 7.990883 Anserini +test1021 Q0 7498052 1 15.917803 Anserini +test1021 Q0 7498047 2 15.523903 Anserini +test1021 Q0 7498055 3 15.287479 Anserini +test1021 Q0 7498051 4 14.712760 Anserini +test1021 Q0 8819793 5 14.136930 Anserini +test1021 Q0 15249577 6 14.040236 Anserini +test1021 Q0 6240008 7 14.040236 Anserini +test1021 Q0 2338106 8 12.595887 Anserini +test1021 Q0 11425419 9 12.262442 Anserini +test1021 Q0 12257483 10 12.137285 Anserini +test1021 Q0 7498050 11 12.019483 Anserini +test1021 Q0 12435375 12 12.019483 Anserini +test1021 Q0 6517306 13 11.894271 Anserini +test1021 Q0 15249578 14 11.843954 Anserini +test1021 Q0 7498053 15 11.643999 Anserini +test1021 Q0 15249576 16 11.643999 Anserini +test1021 Q0 5052442 17 11.521422 Anserini +test1021 Q0 3065916 18 11.448515 Anserini +test1021 Q0 20067016 19 11.236137 Anserini +test1021 Q0 12041245 20 11.202840 Anserini +test1021 Q0 7210138 21 11.175341 Anserini +test1021 Q0 633749 22 11.175341 Anserini +test1021 Q0 14724245 23 11.083304 Anserini +test1021 Q0 15755193 24 11.053947 Anserini +test1021 Q0 6931070 25 10.869669 Anserini +test1021 Q0 3002220 26 10.868308 Anserini +test1021 Q0 20685034 27 10.819091 Anserini +test1021 Q0 15049103 28 10.816691 Anserini +test1021 Q0 7498048 29 10.794320 Anserini +test1021 Q0 7498049 30 10.794320 Anserini +test1022 Q0 20186113 1 15.549161 Anserini +test1022 Q0 20275427 2 15.370605 Anserini +test1022 Q0 4485959 3 15.129700 Anserini +test1022 Q0 19796946 4 14.956722 Anserini +test1022 Q0 5539502 5 14.674362 Anserini +test1022 Q0 8279333 6 14.584413 Anserini +test1022 Q0 20948725 7 14.453863 Anserini +test1022 Q0 20077209 8 14.396194 Anserini +test1022 Q0 20384267 9 13.681263 Anserini +test1022 Q0 19796947 10 13.513801 Anserini +test1022 Q0 1807508 11 13.396520 Anserini +test1022 Q0 8279336 12 13.365803 Anserini +test1022 Q0 3153768 13 13.305061 Anserini +test1022 Q0 20077198 14 13.272581 Anserini +test1022 Q0 18465639 15 13.223902 Anserini +test1022 Q0 20948723 16 13.179130 Anserini +test1022 Q0 20474233 17 13.126505 Anserini +test1022 Q0 2366795 18 13.063736 Anserini +test1022 Q0 20065893 19 13.053552 Anserini +test1022 Q0 8279348 20 13.049143 Anserini +test1022 Q0 2366794 21 12.999881 Anserini +test1022 Q0 16212055 22 12.953738 Anserini +test1022 Q0 19796962 23 12.945454 Anserini +test1022 Q0 20077191 24 12.909645 Anserini +test1022 Q0 16212049 25 12.894391 Anserini +test1022 Q0 3328680 26 12.864230 Anserini +test1022 Q0 8685268 27 12.841539 Anserini +test1022 Q0 19796945 28 12.795797 Anserini +test1022 Q0 8552188 29 12.753732 Anserini +test1022 Q0 8279355 30 12.736602 Anserini +test1023 Q0 808832 1 13.348516 Anserini +test1023 Q0 15316252 2 13.129797 Anserini +test1023 Q0 1953556 3 12.734431 Anserini +test1023 Q0 14339216 4 12.266448 Anserini +test1023 Q0 808814 5 12.241110 Anserini +test1023 Q0 7501667 6 12.241110 Anserini +test1023 Q0 9142007 7 12.168060 Anserini +test1023 Q0 7501671 8 12.126040 Anserini +test1023 Q0 7316189 9 12.098694 Anserini +test1023 Q0 7501664 10 12.037123 Anserini +test1023 Q0 2523050 11 11.986069 Anserini +test1023 Q0 7501687 12 11.980383 Anserini +test1023 Q0 18572114 13 11.848248 Anserini +test1023 Q0 7501678 14 11.733529 Anserini +test1023 Q0 5640209 15 11.690804 Anserini +test1023 Q0 18044530 16 11.618535 Anserini +test1023 Q0 20071545 17 11.589362 Anserini +test1023 Q0 20790984 18 11.545513 Anserini +test1023 Q0 20790986 19 11.545513 Anserini +test1023 Q0 20071572 20 11.476510 Anserini +test1023 Q0 2379629 21 11.387690 Anserini +test1023 Q0 10643213 22 11.323584 Anserini +test1023 Q0 808847 23 11.311291 Anserini +test1023 Q0 808865 24 11.306898 Anserini +test1023 Q0 808852 25 11.220807 Anserini +test1023 Q0 1553742 26 11.210399 Anserini +test1023 Q0 8705635 27 11.188566 Anserini +test1023 Q0 808811 28 11.136062 Anserini +test1023 Q0 19938901 29 11.125334 Anserini +test1023 Q0 5253489 30 11.117719 Anserini +test1024 Q0 989508 1 19.705734 Anserini +test1024 Q0 11151415 2 19.011360 Anserini +test1024 Q0 2032119 3 18.682661 Anserini +test1024 Q0 2032133 4 18.682661 Anserini +test1024 Q0 10704126 5 17.736361 Anserini +test1024 Q0 14610246 6 17.467768 Anserini +test1024 Q0 13599676 7 16.834135 Anserini +test1024 Q0 3199449 8 16.783978 Anserini +test1024 Q0 13508952 9 16.747826 Anserini +test1024 Q0 14610247 10 16.551252 Anserini +test1024 Q0 16809427 11 16.544979 Anserini +test1024 Q0 16809431 12 16.544979 Anserini +test1024 Q0 1455142 13 16.430298 Anserini +test1024 Q0 13317006 14 16.420378 Anserini +test1024 Q0 1776346 15 16.400034 Anserini +test1024 Q0 4790392 16 16.219873 Anserini +test1024 Q0 13889490 17 16.064503 Anserini +test1024 Q0 2032123 18 15.908678 Anserini +test1024 Q0 701201 19 15.828251 Anserini +test1024 Q0 15300586 20 15.737108 Anserini +test1024 Q0 2409999 21 15.694029 Anserini +test1024 Q0 9211535 22 15.671514 Anserini +test1024 Q0 13616143 23 15.671126 Anserini +test1024 Q0 2032318 24 15.624754 Anserini +test1024 Q0 2032302 25 15.624754 Anserini +test1024 Q0 768700 26 15.583874 Anserini +test1024 Q0 5156461 27 15.562696 Anserini +test1024 Q0 4146754 28 15.502734 Anserini +test1024 Q0 3903294 29 15.487501 Anserini +test1024 Q0 10551093 30 15.449089 Anserini +test1025 Q0 9666311 1 12.440411 Anserini +test1025 Q0 20676894 2 11.646253 Anserini +test1025 Q0 17994300 3 11.581755 Anserini +test1025 Q0 13664324 4 11.530740 Anserini +test1025 Q0 3684505 5 11.448962 Anserini +test1025 Q0 3373508 6 11.429468 Anserini +test1025 Q0 10761287 7 11.379219 Anserini +test1025 Q0 16460276 8 11.318496 Anserini +test1025 Q0 6309960 9 11.073565 Anserini +test1025 Q0 13526915 10 11.065214 Anserini +test1025 Q0 2506382 11 11.036261 Anserini +test1025 Q0 19957905 12 11.032585 Anserini +test1025 Q0 19920734 13 11.032585 Anserini +test1025 Q0 16460277 14 11.010866 Anserini +test1025 Q0 5824681 15 10.968672 Anserini +test1025 Q0 13691959 16 10.968448 Anserini +test1025 Q0 13691944 17 10.968448 Anserini +test1025 Q0 2477688 18 10.891719 Anserini +test1025 Q0 2684154 19 10.872411 Anserini +test1025 Q0 2943032 20 10.825977 Anserini +test1025 Q0 4078295 21 10.806065 Anserini +test1025 Q0 4116961 22 10.806065 Anserini +test1025 Q0 19914978 23 10.783250 Anserini +test1025 Q0 13556512 24 10.767729 Anserini +test1025 Q0 19753173 25 10.764940 Anserini +test1025 Q0 3068483 26 10.747498 Anserini +test1025 Q0 16445531 27 10.747498 Anserini +test1025 Q0 13526919 28 10.740540 Anserini +test1025 Q0 11645844 29 10.740540 Anserini +test1025 Q0 12733535 30 10.723484 Anserini +test1026 Q0 9687201 1 12.900163 Anserini +test1026 Q0 1304729 2 12.416543 Anserini +test1026 Q0 8353421 3 11.339912 Anserini +test1026 Q0 2266467 4 11.300782 Anserini +test1026 Q0 12380496 5 11.223076 Anserini +test1026 Q0 9687204 6 11.098259 Anserini +test1026 Q0 8958115 7 11.051371 Anserini +test1026 Q0 9743304 8 11.015884 Anserini +test1026 Q0 2329536 9 11.010092 Anserini +test1026 Q0 11748063 10 10.959778 Anserini +test1026 Q0 11748062 11 10.951140 Anserini +test1026 Q0 4750445 12 10.947451 Anserini +test1026 Q0 1405014 13 10.911672 Anserini +test1026 Q0 12530606 14 10.911672 Anserini +test1026 Q0 7790056 15 10.859138 Anserini +test1026 Q0 18061345 16 10.853954 Anserini +test1026 Q0 4750450 17 10.785651 Anserini +test1026 Q0 18061343 18 10.751800 Anserini +test1026 Q0 12530605 19 10.653153 Anserini +test1026 Q0 2267030 20 10.537847 Anserini +test1026 Q0 19399481 21 10.433777 Anserini +test1026 Q0 8740771 22 10.348032 Anserini +test1026 Q0 4254737 23 10.343264 Anserini +test1026 Q0 10916084 24 10.343264 Anserini +test1026 Q0 1974307 25 10.305252 Anserini +test1026 Q0 504505 26 10.240618 Anserini +test1026 Q0 13234396 27 10.237681 Anserini +test1026 Q0 14517103 28 10.230171 Anserini +test1026 Q0 2644196 29 10.227459 Anserini +test1026 Q0 12341618 30 10.207543 Anserini +test1027 Q0 6548988 1 14.199326 Anserini +test1027 Q0 11069914 2 11.871546 Anserini +test1027 Q0 3278817 3 11.757426 Anserini +test1027 Q0 7243242 4 11.227500 Anserini +test1027 Q0 1458688 5 10.885337 Anserini +test1027 Q0 6381869 6 10.851535 Anserini +test1027 Q0 3428960 7 10.788713 Anserini +test1027 Q0 15173955 8 10.635388 Anserini +test1027 Q0 7960435 9 10.462347 Anserini +test1027 Q0 19317718 10 10.397129 Anserini +test1027 Q0 5376423 11 10.381077 Anserini +test1027 Q0 3428931 12 10.381077 Anserini +test1027 Q0 7948486 13 10.362982 Anserini +test1027 Q0 15590728 14 10.322278 Anserini +test1027 Q0 7239799 15 10.314774 Anserini +test1027 Q0 10784143 16 10.314055 Anserini +test1027 Q0 13036668 17 10.314055 Anserini +test1027 Q0 6031862 18 10.254357 Anserini +test1027 Q0 18467496 19 10.230074 Anserini +test1027 Q0 19055782 20 10.217209 Anserini +test1027 Q0 19287282 21 10.172709 Anserini +test1027 Q0 19565200 22 10.136407 Anserini +test1027 Q0 9223453 23 10.130127 Anserini +test1027 Q0 1458693 24 10.029231 Anserini +test1027 Q0 14871514 25 9.936589 Anserini +test1027 Q0 12360240 26 9.881191 Anserini +test1027 Q0 11922158 27 9.867567 Anserini +test1027 Q0 11149969 28 9.834143 Anserini +test1027 Q0 15533114 29 9.814021 Anserini +test1027 Q0 19287281 30 9.799259 Anserini +test1028 Q0 4941414 1 12.621074 Anserini +test1028 Q0 4941421 2 12.255025 Anserini +test1028 Q0 14270171 3 11.472893 Anserini +test1028 Q0 1820828 4 10.950247 Anserini +test1028 Q0 14270174 5 10.608123 Anserini +test1028 Q0 16613909 6 10.469408 Anserini +test1028 Q0 15371550 7 9.966985 Anserini +test1028 Q0 12860925 8 9.899742 Anserini +test1028 Q0 605431 9 9.889988 Anserini +test1028 Q0 4941418 10 9.817556 Anserini +test1028 Q0 20030061 11 9.810308 Anserini +test1028 Q0 9621983 12 9.730685 Anserini +test1028 Q0 20326600 13 9.610857 Anserini +test1028 Q0 2309931 14 9.528166 Anserini +test1028 Q0 7645141 15 9.455883 Anserini +test1028 Q0 9777819 16 9.451863 Anserini +test1028 Q0 733167 17 9.395432 Anserini +test1028 Q0 14645804 18 9.341833 Anserini +test1028 Q0 9575912 19 9.143820 Anserini +test1028 Q0 1799304 20 9.137038 Anserini +test1028 Q0 3745936 21 9.077613 Anserini +test1028 Q0 9621982 22 9.072344 Anserini +test1028 Q0 2788333 23 9.067664 Anserini +test1028 Q0 4500008 24 9.061224 Anserini +test1028 Q0 4939429 25 9.061224 Anserini +test1028 Q0 1982262 26 9.036299 Anserini +test1028 Q0 19937956 27 8.963762 Anserini +test1028 Q0 11078151 28 8.957666 Anserini +test1028 Q0 10706719 29 8.911949 Anserini +test1028 Q0 4941417 30 8.911949 Anserini +test1029 Q0 6653349 1 14.124725 Anserini +test1029 Q0 6322106 2 13.026602 Anserini +test1029 Q0 4590846 3 12.904342 Anserini +test1029 Q0 18811403 4 12.644825 Anserini +test1029 Q0 1844207 5 12.570397 Anserini +test1029 Q0 4029945 6 12.305054 Anserini +test1029 Q0 4029942 7 12.305054 Anserini +test1029 Q0 7671105 8 12.215038 Anserini +test1029 Q0 1649326 9 12.010637 Anserini +test1029 Q0 2931940 10 11.981669 Anserini +test1029 Q0 457982 11 11.884192 Anserini +test1029 Q0 5124569 12 11.854174 Anserini +test1029 Q0 1986544 13 11.768864 Anserini +test1029 Q0 13257937 14 11.686055 Anserini +test1029 Q0 4140194 15 11.619419 Anserini +test1029 Q0 4423773 16 11.596935 Anserini +test1029 Q0 9132266 17 11.580041 Anserini +test1029 Q0 11234954 18 11.494823 Anserini +test1029 Q0 12781036 19 11.394278 Anserini +test1029 Q0 7711100 20 11.335258 Anserini +test1029 Q0 1892704 21 11.238352 Anserini +test1029 Q0 5758211 22 11.227067 Anserini +test1029 Q0 10753553 23 11.184866 Anserini +test1029 Q0 13530176 24 11.178862 Anserini +test1029 Q0 13530177 25 11.178862 Anserini +test1029 Q0 10701147 26 11.171081 Anserini +test1029 Q0 15557455 27 11.134493 Anserini +test1029 Q0 691599 28 11.128424 Anserini +test1029 Q0 11625702 29 11.093814 Anserini +test1029 Q0 14077093 30 11.077858 Anserini +test103 Q0 4980536 1 11.208719 Anserini +test103 Q0 5632658 2 11.044733 Anserini +test103 Q0 13964231 3 10.670185 Anserini +test103 Q0 16781544 4 10.598975 Anserini +test103 Q0 16781550 5 10.244833 Anserini +test103 Q0 12116657 6 10.008754 Anserini +test103 Q0 1778899 7 9.833570 Anserini +test103 Q0 4980051 8 9.772431 Anserini +test103 Q0 18682846 9 9.762922 Anserini +test103 Q0 15613352 10 9.465476 Anserini +test103 Q0 4980510 11 9.459536 Anserini +test103 Q0 9333296 12 9.452860 Anserini +test103 Q0 18295193 13 9.430144 Anserini +test103 Q0 15613349 14 9.364771 Anserini +test103 Q0 13326147 15 9.364771 Anserini +test103 Q0 9034899 16 9.319639 Anserini +test103 Q0 1528619 17 9.266189 Anserini +test103 Q0 2513661 18 9.169659 Anserini +test103 Q0 6379061 19 9.143921 Anserini +test103 Q0 4668459 20 9.106646 Anserini +test103 Q0 16703625 21 9.075188 Anserini +test103 Q0 15964103 22 9.063018 Anserini +test103 Q0 2565083 23 9.040006 Anserini +test103 Q0 10975903 24 9.036608 Anserini +test103 Q0 7844764 25 9.018855 Anserini +test103 Q0 10039112 26 8.956692 Anserini +test103 Q0 15715752 27 8.955143 Anserini +test103 Q0 11140883 28 8.928190 Anserini +test103 Q0 13424217 29 8.862763 Anserini +test103 Q0 19540175 30 8.820232 Anserini +test1030 Q0 683614 1 18.687138 Anserini +test1030 Q0 17694648 2 17.975229 Anserini +test1030 Q0 17694575 3 17.885508 Anserini +test1030 Q0 5967067 4 17.335165 Anserini +test1030 Q0 11725999 5 17.227293 Anserini +test1030 Q0 17694555 6 16.833836 Anserini +test1030 Q0 683573 7 16.764343 Anserini +test1030 Q0 683571 8 16.568941 Anserini +test1030 Q0 8639121 9 16.417723 Anserini +test1030 Q0 683569 10 16.365454 Anserini +test1030 Q0 17694647 11 16.325747 Anserini +test1030 Q0 3016802 12 16.312107 Anserini +test1030 Q0 683615 13 16.230122 Anserini +test1030 Q0 17694554 14 16.228081 Anserini +test1030 Q0 1250243 15 16.179733 Anserini +test1030 Q0 17694610 16 16.069391 Anserini +test1030 Q0 17694576 17 16.056509 Anserini +test1030 Q0 12443278 18 15.983740 Anserini +test1030 Q0 13806684 19 15.956871 Anserini +test1030 Q0 908398 20 15.655560 Anserini +test1030 Q0 5967069 21 15.515976 Anserini +test1030 Q0 1263702 22 15.303677 Anserini +test1030 Q0 6249829 23 15.094802 Anserini +test1030 Q0 11726013 24 15.058331 Anserini +test1030 Q0 5902401 25 14.993810 Anserini +test1030 Q0 3016812 26 14.864986 Anserini +test1030 Q0 8718292 27 14.804816 Anserini +test1030 Q0 5902407 28 14.787521 Anserini +test1030 Q0 4647680 29 14.767077 Anserini +test1030 Q0 6811700 30 14.670712 Anserini +test1031 Q0 18346761 1 14.922648 Anserini +test1031 Q0 15128272 2 13.311913 Anserini +test1031 Q0 18978743 3 13.057611 Anserini +test1031 Q0 742299 4 13.045479 Anserini +test1031 Q0 2271626 5 12.803704 Anserini +test1031 Q0 15128246 6 12.588490 Anserini +test1031 Q0 10960028 7 12.157658 Anserini +test1031 Q0 369914 8 11.987489 Anserini +test1031 Q0 6818923 9 11.955500 Anserini +test1031 Q0 15128242 10 11.747198 Anserini +test1031 Q0 407889 11 11.725543 Anserini +test1031 Q0 9637085 12 11.454407 Anserini +test1031 Q0 4215752 13 11.445150 Anserini +test1031 Q0 15128243 14 11.271645 Anserini +test1031 Q0 1488854 15 11.155066 Anserini +test1031 Q0 7752648 16 10.981790 Anserini +test1031 Q0 7800619 17 10.968388 Anserini +test1031 Q0 15128270 18 10.939150 Anserini +test1031 Q0 2839584 19 10.862643 Anserini +test1031 Q0 15209798 20 10.829334 Anserini +test1031 Q0 9729770 21 10.783955 Anserini +test1031 Q0 14706013 22 10.783167 Anserini +test1031 Q0 11562694 23 10.722190 Anserini +test1031 Q0 17839994 24 10.645114 Anserini +test1031 Q0 98024 25 10.637724 Anserini +test1031 Q0 6464200 26 10.619424 Anserini +test1031 Q0 9883045 27 10.612465 Anserini +test1031 Q0 15128244 28 10.605293 Anserini +test1031 Q0 15128251 29 10.604355 Anserini +test1031 Q0 204586 30 10.544174 Anserini +test1032 Q0 10026393 1 15.707605 Anserini +test1032 Q0 13081877 2 14.699273 Anserini +test1032 Q0 7650597 3 14.323565 Anserini +test1032 Q0 12950802 4 13.815395 Anserini +test1032 Q0 16023542 5 13.256388 Anserini +test1032 Q0 16023548 6 13.256388 Anserini +test1032 Q0 13081884 7 13.211625 Anserini +test1032 Q0 11946135 8 13.128504 Anserini +test1032 Q0 12950801 9 13.095397 Anserini +test1032 Q0 8439839 10 13.065758 Anserini +test1032 Q0 12950814 11 13.065391 Anserini +test1032 Q0 9690381 12 12.987087 Anserini +test1032 Q0 12950823 13 12.703656 Anserini +test1032 Q0 8354446 14 12.657719 Anserini +test1032 Q0 17604760 15 12.587210 Anserini +test1032 Q0 13177088 16 12.575969 Anserini +test1032 Q0 14211549 17 12.441858 Anserini +test1032 Q0 10450027 18 12.438159 Anserini +test1032 Q0 20328521 19 12.403963 Anserini +test1032 Q0 19577544 20 12.397228 Anserini +test1032 Q0 15518035 21 12.356840 Anserini +test1032 Q0 7650598 22 12.349441 Anserini +test1032 Q0 16913143 23 12.306984 Anserini +test1032 Q0 13378964 24 12.305027 Anserini +test1032 Q0 12950810 25 12.281837 Anserini +test1032 Q0 17261533 26 12.273784 Anserini +test1032 Q0 19577543 27 12.154427 Anserini +test1032 Q0 13019387 28 12.129136 Anserini +test1032 Q0 18293022 29 12.085793 Anserini +test1032 Q0 13489478 30 12.074537 Anserini +test1033 Q0 879694 1 13.197573 Anserini +test1033 Q0 879686 2 13.162441 Anserini +test1033 Q0 326401 3 12.938463 Anserini +test1033 Q0 12531580 4 12.906384 Anserini +test1033 Q0 6531606 5 12.270566 Anserini +test1033 Q0 879687 6 12.187407 Anserini +test1033 Q0 311747 7 11.784590 Anserini +test1033 Q0 2908210 8 11.754048 Anserini +test1033 Q0 311752 9 11.692763 Anserini +test1033 Q0 4644653 10 11.620540 Anserini +test1033 Q0 326399 11 11.467159 Anserini +test1033 Q0 5038887 12 11.436104 Anserini +test1033 Q0 6357223 13 11.403552 Anserini +test1033 Q0 879595 14 11.389927 Anserini +test1033 Q0 518858 15 11.274728 Anserini +test1033 Q0 824988 16 11.241785 Anserini +test1033 Q0 311750 17 11.147003 Anserini +test1033 Q0 311755 18 11.129702 Anserini +test1033 Q0 774245 19 11.103025 Anserini +test1033 Q0 16026631 20 10.919437 Anserini +test1033 Q0 392714 21 10.872733 Anserini +test1033 Q0 12531618 22 10.824800 Anserini +test1033 Q0 311817 23 10.778897 Anserini +test1033 Q0 879690 24 10.754992 Anserini +test1033 Q0 6747507 25 10.730786 Anserini +test1033 Q0 1397217 26 10.723912 Anserini +test1033 Q0 16026636 27 10.655094 Anserini +test1033 Q0 16287305 28 10.654258 Anserini +test1033 Q0 13018053 29 10.630364 Anserini +test1033 Q0 311759 30 10.621626 Anserini +test1034 Q0 13661868 1 15.246843 Anserini +test1034 Q0 13661870 2 15.191449 Anserini +test1034 Q0 13661867 3 14.732328 Anserini +test1034 Q0 13661891 4 14.732328 Anserini +test1034 Q0 13661875 5 14.598685 Anserini +test1034 Q0 5695107 6 14.448450 Anserini +test1034 Q0 14466050 7 14.429049 Anserini +test1034 Q0 4427663 8 14.018618 Anserini +test1034 Q0 10161750 9 13.703973 Anserini +test1034 Q0 6364934 10 13.531336 Anserini +test1034 Q0 6364930 11 13.531336 Anserini +test1034 Q0 13661871 12 13.365050 Anserini +test1034 Q0 10615761 13 13.270868 Anserini +test1034 Q0 13661869 14 13.170675 Anserini +test1034 Q0 13661886 15 12.998872 Anserini +test1034 Q0 10249550 16 12.792685 Anserini +test1034 Q0 17620313 17 12.763621 Anserini +test1034 Q0 17063222 18 12.731188 Anserini +test1034 Q0 19004695 19 12.116687 Anserini +test1034 Q0 9238536 20 12.001604 Anserini +test1034 Q0 12455169 21 11.789756 Anserini +test1034 Q0 1695142 22 11.784225 Anserini +test1034 Q0 9152790 23 11.727345 Anserini +test1034 Q0 4472531 24 11.701025 Anserini +test1034 Q0 124901 25 11.603734 Anserini +test1034 Q0 20448465 26 11.587420 Anserini +test1034 Q0 2856772 27 11.537744 Anserini +test1034 Q0 5451176 28 11.532611 Anserini +test1034 Q0 7978317 29 11.532611 Anserini +test1034 Q0 10918177 30 11.516726 Anserini +test1035 Q0 10711652 1 10.689039 Anserini +test1035 Q0 15465581 2 10.503664 Anserini +test1035 Q0 11291070 3 10.073697 Anserini +test1035 Q0 15465580 4 9.753201 Anserini +test1035 Q0 11291074 5 9.732436 Anserini +test1035 Q0 17872676 6 9.654207 Anserini +test1035 Q0 12976102 7 9.651749 Anserini +test1035 Q0 12961015 8 9.582650 Anserini +test1035 Q0 8219743 9 9.493517 Anserini +test1035 Q0 16893317 10 9.408613 Anserini +test1035 Q0 9919456 11 9.130608 Anserini +test1035 Q0 4715965 12 9.126044 Anserini +test1035 Q0 11168366 13 9.118937 Anserini +test1035 Q0 19500803 14 8.985282 Anserini +test1035 Q0 9260618 15 8.959059 Anserini +test1035 Q0 18267881 16 8.953497 Anserini +test1035 Q0 1656586 17 8.937039 Anserini +test1035 Q0 11689101 18 8.879325 Anserini +test1035 Q0 1584011 19 8.855764 Anserini +test1035 Q0 4427665 20 8.805184 Anserini +test1035 Q0 18649700 21 8.800492 Anserini +test1035 Q0 19110060 22 8.788453 Anserini +test1035 Q0 16353610 23 8.774075 Anserini +test1035 Q0 20120950 24 8.746876 Anserini +test1035 Q0 1504691 25 8.746876 Anserini +test1035 Q0 9260615 26 8.710725 Anserini +test1035 Q0 16764020 27 8.689622 Anserini +test1035 Q0 18817797 28 8.687054 Anserini +test1035 Q0 8620609 29 8.654838 Anserini +test1035 Q0 16672099 30 8.647079 Anserini +test1036 Q0 12167092 1 12.567089 Anserini +test1036 Q0 16443892 2 11.684721 Anserini +test1036 Q0 15024802 3 10.948025 Anserini +test1036 Q0 6927293 4 10.945961 Anserini +test1036 Q0 592780 5 10.765638 Anserini +test1036 Q0 3048851 6 10.752935 Anserini +test1036 Q0 16443905 7 10.740295 Anserini +test1036 Q0 15558170 8 10.727433 Anserini +test1036 Q0 19348457 9 10.651983 Anserini +test1036 Q0 17650939 10 10.533158 Anserini +test1036 Q0 14769980 11 10.492315 Anserini +test1036 Q0 11460841 12 10.375937 Anserini +test1036 Q0 6927335 13 10.368163 Anserini +test1036 Q0 15558218 14 10.352845 Anserini +test1036 Q0 20818597 15 10.347508 Anserini +test1036 Q0 18100729 16 10.328747 Anserini +test1036 Q0 15558196 17 10.324272 Anserini +test1036 Q0 3596344 18 10.308234 Anserini +test1036 Q0 20433802 19 10.296885 Anserini +test1036 Q0 19471995 20 10.292364 Anserini +test1036 Q0 20654077 21 10.210295 Anserini +test1036 Q0 592777 22 10.207450 Anserini +test1036 Q0 10253254 23 10.114957 Anserini +test1036 Q0 14058638 24 10.092526 Anserini +test1036 Q0 19416680 25 10.078148 Anserini +test1036 Q0 19052134 26 10.061531 Anserini +test1036 Q0 3278400 27 10.051481 Anserini +test1036 Q0 20772362 28 9.985575 Anserini +test1036 Q0 19077551 29 9.974351 Anserini +test1036 Q0 19842706 30 9.904214 Anserini +test1037 Q0 18734449 1 12.256579 Anserini +test1037 Q0 2241783 2 11.838205 Anserini +test1037 Q0 9252118 3 11.499846 Anserini +test1037 Q0 12584739 4 10.827794 Anserini +test1037 Q0 6220276 5 10.707976 Anserini +test1037 Q0 12584737 6 10.633245 Anserini +test1037 Q0 17433983 7 10.507504 Anserini +test1037 Q0 2469702 8 10.466707 Anserini +test1037 Q0 18734453 9 10.398053 Anserini +test1037 Q0 5803330 10 10.246238 Anserini +test1037 Q0 10550823 11 10.231388 Anserini +test1037 Q0 8386586 12 10.149748 Anserini +test1037 Q0 18536931 13 10.018812 Anserini +test1037 Q0 10812224 14 9.952268 Anserini +test1037 Q0 9811649 15 9.943024 Anserini +test1037 Q0 3005322 16 9.929899 Anserini +test1037 Q0 18536930 17 9.929730 Anserini +test1037 Q0 14848335 18 9.920816 Anserini +test1037 Q0 11711091 19 9.920148 Anserini +test1037 Q0 7254820 20 9.858755 Anserini +test1037 Q0 9451093 21 9.858755 Anserini +test1037 Q0 7254825 22 9.858755 Anserini +test1037 Q0 13526789 23 9.791740 Anserini +test1037 Q0 10660411 24 9.775962 Anserini +test1037 Q0 15618019 25 9.771436 Anserini +test1037 Q0 3005311 26 9.771317 Anserini +test1037 Q0 11945068 27 9.718224 Anserini +test1037 Q0 2469693 28 9.706178 Anserini +test1037 Q0 7742221 29 9.706178 Anserini +test1037 Q0 6220275 30 9.654882 Anserini +test1038 Q0 18501585 1 13.131588 Anserini +test1038 Q0 18386830 2 12.877589 Anserini +test1038 Q0 18386831 3 12.877589 Anserini +test1038 Q0 682194 4 12.789371 Anserini +test1038 Q0 7519194 5 12.680841 Anserini +test1038 Q0 17615313 6 12.575753 Anserini +test1038 Q0 1537429 7 12.570114 Anserini +test1038 Q0 18501586 8 12.490494 Anserini +test1038 Q0 17615298 9 12.452696 Anserini +test1038 Q0 16083666 10 12.292519 Anserini +test1038 Q0 16083665 11 12.270729 Anserini +test1038 Q0 682227 12 12.267015 Anserini +test1038 Q0 17615331 13 12.231894 Anserini +test1038 Q0 2959261 14 12.130291 Anserini +test1038 Q0 13524914 15 12.076411 Anserini +test1038 Q0 682155 16 11.995905 Anserini +test1038 Q0 682214 17 11.899668 Anserini +test1038 Q0 8595461 18 11.625311 Anserini +test1038 Q0 2959262 19 11.531838 Anserini +test1038 Q0 1949386 20 11.412561 Anserini +test1038 Q0 1949417 21 11.412561 Anserini +test1038 Q0 12641128 22 11.382435 Anserini +test1038 Q0 682217 23 11.366755 Anserini +test1038 Q0 12349125 24 11.317098 Anserini +test1038 Q0 12641127 25 11.309423 Anserini +test1038 Q0 682191 26 11.296198 Anserini +test1038 Q0 682208 27 11.076576 Anserini +test1038 Q0 10187684 28 11.076168 Anserini +test1038 Q0 15836686 29 11.075397 Anserini +test1038 Q0 7519183 30 11.066545 Anserini +test1039 Q0 10696738 1 16.497313 Anserini +test1039 Q0 10696741 2 15.479114 Anserini +test1039 Q0 10696746 3 15.327908 Anserini +test1039 Q0 17769275 4 15.095723 Anserini +test1039 Q0 3633368 5 15.041313 Anserini +test1039 Q0 7194918 6 14.980104 Anserini +test1039 Q0 10696752 7 14.763208 Anserini +test1039 Q0 17769292 8 14.762723 Anserini +test1039 Q0 10696749 9 14.762723 Anserini +test1039 Q0 10959117 10 14.614074 Anserini +test1039 Q0 8828824 11 14.588832 Anserini +test1039 Q0 8828831 12 14.588832 Anserini +test1039 Q0 7194929 13 14.468283 Anserini +test1039 Q0 799659 14 14.390427 Anserini +test1039 Q0 10696717 15 14.352695 Anserini +test1039 Q0 2120850 16 14.350618 Anserini +test1039 Q0 9110938 17 14.348370 Anserini +test1039 Q0 17769303 18 14.289318 Anserini +test1039 Q0 11670194 19 14.289318 Anserini +test1039 Q0 11670195 20 14.289318 Anserini +test1039 Q0 7194919 21 14.274026 Anserini +test1039 Q0 10696727 22 14.230751 Anserini +test1039 Q0 10696709 23 14.230751 Anserini +test1039 Q0 10696735 24 14.230751 Anserini +test1039 Q0 799663 25 14.172661 Anserini +test1039 Q0 1645054 26 14.165058 Anserini +test1039 Q0 799661 27 14.107279 Anserini +test1039 Q0 10696747 28 14.086946 Anserini +test1039 Q0 20495683 29 14.057894 Anserini +test1039 Q0 20495690 30 14.057894 Anserini +test104 Q0 9011121 1 15.030633 Anserini +test104 Q0 9863809 2 14.457774 Anserini +test104 Q0 8529027 3 14.418039 Anserini +test104 Q0 4145700 4 14.028121 Anserini +test104 Q0 8529032 5 14.024228 Anserini +test104 Q0 6674109 6 13.946589 Anserini +test104 Q0 3720783 7 13.141124 Anserini +test104 Q0 8529029 8 12.887700 Anserini +test104 Q0 9863810 9 12.820497 Anserini +test104 Q0 8796886 10 12.788746 Anserini +test104 Q0 8740500 11 12.620386 Anserini +test104 Q0 6674114 12 12.619785 Anserini +test104 Q0 7758964 13 12.556982 Anserini +test104 Q0 6674113 14 12.392726 Anserini +test104 Q0 18678733 15 12.368690 Anserini +test104 Q0 20401397 16 12.342691 Anserini +test104 Q0 4145702 17 12.326086 Anserini +test104 Q0 5719083 18 12.275497 Anserini +test104 Q0 8027959 19 12.243369 Anserini +test104 Q0 6050991 20 12.203295 Anserini +test104 Q0 18678732 21 12.042818 Anserini +test104 Q0 5357663 22 12.038902 Anserini +test104 Q0 5357653 23 12.022463 Anserini +test104 Q0 1292488 24 12.020313 Anserini +test104 Q0 4454361 25 11.927990 Anserini +test104 Q0 6659583 26 11.927990 Anserini +test104 Q0 5277816 27 11.915820 Anserini +test104 Q0 20401396 28 11.913554 Anserini +test104 Q0 5394280 29 11.886242 Anserini +test104 Q0 4775786 30 11.863956 Anserini +test1040 Q0 15579327 1 11.437592 Anserini +test1040 Q0 10573626 2 11.119617 Anserini +test1040 Q0 15425704 3 10.066300 Anserini +test1040 Q0 19210963 4 9.983218 Anserini +test1040 Q0 13542280 5 9.832418 Anserini +test1040 Q0 18422135 6 9.796875 Anserini +test1040 Q0 12377560 7 9.583679 Anserini +test1040 Q0 14572656 8 9.412961 Anserini +test1040 Q0 11609437 9 9.367248 Anserini +test1040 Q0 1650144 10 9.365499 Anserini +test1040 Q0 19210964 11 9.299451 Anserini +test1040 Q0 6623054 12 9.237388 Anserini +test1040 Q0 11124652 13 9.231687 Anserini +test1040 Q0 9446156 14 9.192319 Anserini +test1040 Q0 5362928 15 9.144399 Anserini +test1040 Q0 6569391 16 9.144399 Anserini +test1040 Q0 592350 17 9.123861 Anserini +test1040 Q0 960391 18 9.106601 Anserini +test1040 Q0 2082958 19 9.073981 Anserini +test1040 Q0 17237946 20 9.073981 Anserini +test1040 Q0 17720255 21 9.034854 Anserini +test1040 Q0 8431236 22 8.964128 Anserini +test1040 Q0 16238306 23 8.913450 Anserini +test1040 Q0 9651921 24 8.881677 Anserini +test1040 Q0 6796441 25 8.855942 Anserini +test1040 Q0 12149383 26 8.852509 Anserini +test1040 Q0 14057694 27 8.830952 Anserini +test1040 Q0 12014789 28 8.815001 Anserini +test1040 Q0 6884055 29 8.777300 Anserini +test1040 Q0 13560992 30 8.777300 Anserini +test1041 Q0 6698007 1 16.986923 Anserini +test1041 Q0 318430 2 16.631390 Anserini +test1041 Q0 3484592 3 15.368719 Anserini +test1041 Q0 472788 4 15.366828 Anserini +test1041 Q0 17280285 5 15.210254 Anserini +test1041 Q0 534162 6 15.161954 Anserini +test1041 Q0 5868293 7 14.741395 Anserini +test1041 Q0 2982327 8 14.738341 Anserini +test1041 Q0 473076 9 14.734465 Anserini +test1041 Q0 9906397 10 14.575963 Anserini +test1041 Q0 3521016 11 14.466451 Anserini +test1041 Q0 5278194 12 14.290715 Anserini +test1041 Q0 5868311 13 14.246748 Anserini +test1041 Q0 3065053 14 14.117491 Anserini +test1041 Q0 9303633 15 14.028843 Anserini +test1041 Q0 473094 16 13.971097 Anserini +test1041 Q0 16973718 17 13.918934 Anserini +test1041 Q0 19754097 18 13.916994 Anserini +test1041 Q0 19754093 19 13.907155 Anserini +test1041 Q0 8326 20 13.901764 Anserini +test1041 Q0 648890 21 13.899356 Anserini +test1041 Q0 12853463 22 13.834103 Anserini +test1041 Q0 7991145 23 13.829501 Anserini +test1041 Q0 5903794 24 13.743473 Anserini +test1041 Q0 3016757 25 13.735231 Anserini +test1041 Q0 12583515 26 13.722600 Anserini +test1041 Q0 1981705 27 13.721055 Anserini +test1041 Q0 292305 28 13.694372 Anserini +test1041 Q0 6873145 29 13.654910 Anserini +test1041 Q0 8705188 30 13.629293 Anserini +test1042 Q0 5900636 1 11.210539 Anserini +test1042 Q0 19025422 2 10.126473 Anserini +test1042 Q0 20868079 3 9.923173 Anserini +test1042 Q0 20868076 4 9.923173 Anserini +test1042 Q0 2807492 5 9.902553 Anserini +test1042 Q0 9721031 6 9.868999 Anserini +test1042 Q0 4299595 7 9.845338 Anserini +test1042 Q0 18921232 8 9.795085 Anserini +test1042 Q0 12240254 9 9.763532 Anserini +test1042 Q0 12463086 10 9.744759 Anserini +test1042 Q0 5310425 11 9.647303 Anserini +test1042 Q0 15681646 12 9.611320 Anserini +test1042 Q0 18384788 13 9.610826 Anserini +test1042 Q0 11167866 14 9.569171 Anserini +test1042 Q0 9511152 15 9.521054 Anserini +test1042 Q0 5479844 16 9.489822 Anserini +test1042 Q0 15872178 17 9.379519 Anserini +test1042 Q0 511738 18 9.364491 Anserini +test1042 Q0 9118501 19 9.333014 Anserini +test1042 Q0 20807136 20 9.311387 Anserini +test1042 Q0 15872176 21 9.300405 Anserini +test1042 Q0 5724310 22 9.235622 Anserini +test1042 Q0 4419452 23 9.219992 Anserini +test1042 Q0 1891202 24 9.201512 Anserini +test1042 Q0 7251484 25 9.188662 Anserini +test1042 Q0 14060363 26 9.172304 Anserini +test1042 Q0 19244743 27 9.165069 Anserini +test1042 Q0 511752 28 9.127036 Anserini +test1042 Q0 9667071 29 9.098814 Anserini +test1042 Q0 7200467 30 9.052508 Anserini +test1043 Q0 7393118 1 11.159952 Anserini +test1043 Q0 17475576 2 10.928303 Anserini +test1043 Q0 10531540 3 9.947989 Anserini +test1043 Q0 1301307 4 9.821982 Anserini +test1043 Q0 17156762 5 9.595206 Anserini +test1043 Q0 17748620 6 9.580086 Anserini +test1043 Q0 7142728 7 9.490161 Anserini +test1043 Q0 2840910 8 9.490051 Anserini +test1043 Q0 20636162 9 9.469127 Anserini +test1043 Q0 1986827 10 9.444002 Anserini +test1043 Q0 9307574 11 9.418802 Anserini +test1043 Q0 4946685 12 9.379030 Anserini +test1043 Q0 7242707 13 9.375019 Anserini +test1043 Q0 3359220 14 9.364223 Anserini +test1043 Q0 1309168 15 9.346480 Anserini +test1043 Q0 15973732 16 9.314649 Anserini +test1043 Q0 10311656 17 9.271555 Anserini +test1043 Q0 8806336 18 9.224577 Anserini +test1043 Q0 5098147 19 9.208822 Anserini +test1043 Q0 8297284 20 9.164965 Anserini +test1043 Q0 5303507 21 9.069972 Anserini +test1043 Q0 10939034 22 9.056598 Anserini +test1043 Q0 10088207 23 9.047968 Anserini +test1043 Q0 7242713 24 9.047834 Anserini +test1043 Q0 8561887 25 8.982740 Anserini +test1043 Q0 3302385 26 8.973385 Anserini +test1043 Q0 7242705 27 8.952033 Anserini +test1043 Q0 375126 28 8.951645 Anserini +test1043 Q0 12197195 29 8.940059 Anserini +test1043 Q0 17304046 30 8.923974 Anserini +test1044 Q0 2297564 1 23.632439 Anserini +test1044 Q0 4088405 2 21.274443 Anserini +test1044 Q0 2297570 3 19.938271 Anserini +test1044 Q0 2297565 4 19.702381 Anserini +test1044 Q0 16949543 5 19.412361 Anserini +test1044 Q0 5620011 6 17.587322 Anserini +test1044 Q0 2297572 7 16.952936 Anserini +test1044 Q0 2297571 8 15.660042 Anserini +test1044 Q0 16013550 9 15.625342 Anserini +test1044 Q0 1337756 10 15.625342 Anserini +test1044 Q0 2297567 11 14.654140 Anserini +test1044 Q0 2297566 12 13.224554 Anserini +test1044 Q0 16949541 13 13.021684 Anserini +test1044 Q0 2297569 14 12.528329 Anserini +test1044 Q0 2297568 15 12.101595 Anserini +test1044 Q0 15671957 16 10.982439 Anserini +test1044 Q0 15671958 17 10.982439 Anserini +test1044 Q0 7651198 18 10.974690 Anserini +test1044 Q0 1337717 19 10.974690 Anserini +test1044 Q0 15714400 20 10.974690 Anserini +test1044 Q0 15714403 21 10.974690 Anserini +test1044 Q0 14882109 22 10.915994 Anserini +test1044 Q0 6876437 23 10.860362 Anserini +test1044 Q0 841387 24 10.860362 Anserini +test1044 Q0 7651166 25 10.860362 Anserini +test1044 Q0 4507396 26 10.669773 Anserini +test1044 Q0 9699685 27 10.545565 Anserini +test1044 Q0 2254731 28 10.509492 Anserini +test1044 Q0 10936493 29 10.489656 Anserini +test1044 Q0 3431836 30 10.462711 Anserini +test1045 Q0 10513205 1 13.276168 Anserini +test1045 Q0 4540905 2 13.275995 Anserini +test1045 Q0 11190629 3 13.044608 Anserini +test1045 Q0 624834 4 12.958003 Anserini +test1045 Q0 11190631 5 12.827277 Anserini +test1045 Q0 9777991 6 12.748127 Anserini +test1045 Q0 10289950 7 12.529440 Anserini +test1045 Q0 3882661 8 12.476082 Anserini +test1045 Q0 6806346 9 12.381379 Anserini +test1045 Q0 8153688 10 12.314875 Anserini +test1045 Q0 2846970 11 12.016869 Anserini +test1045 Q0 9777992 12 12.003630 Anserini +test1045 Q0 4583492 13 11.892399 Anserini +test1045 Q0 624831 14 11.892399 Anserini +test1045 Q0 18434495 15 11.865211 Anserini +test1045 Q0 4528452 16 11.847554 Anserini +test1045 Q0 5231909 17 11.827059 Anserini +test1045 Q0 5349130 18 11.814382 Anserini +test1045 Q0 5349138 19 11.814382 Anserini +test1045 Q0 9789136 20 11.773209 Anserini +test1045 Q0 3882664 21 11.761876 Anserini +test1045 Q0 5302571 22 11.701406 Anserini +test1045 Q0 6806345 23 11.650288 Anserini +test1045 Q0 1598351 24 11.615916 Anserini +test1045 Q0 9738346 25 11.594195 Anserini +test1045 Q0 15340988 26 11.585718 Anserini +test1045 Q0 3554877 27 11.479984 Anserini +test1045 Q0 5404763 28 11.479513 Anserini +test1045 Q0 3882658 29 11.460320 Anserini +test1045 Q0 3725281 30 11.417189 Anserini +test1046 Q0 18658749 1 11.259686 Anserini +test1046 Q0 19580124 2 10.896717 Anserini +test1046 Q0 15326657 3 10.773712 Anserini +test1046 Q0 19085958 4 10.773072 Anserini +test1046 Q0 17327636 5 10.598886 Anserini +test1046 Q0 15490933 6 10.547193 Anserini +test1046 Q0 125661 7 10.307400 Anserini +test1046 Q0 17029880 8 10.188137 Anserini +test1046 Q0 17070007 9 10.151869 Anserini +test1046 Q0 4910411 10 10.124021 Anserini +test1046 Q0 17069976 11 10.104692 Anserini +test1046 Q0 226383 12 10.079744 Anserini +test1046 Q0 17846690 13 10.065250 Anserini +test1046 Q0 8209292 14 10.036922 Anserini +test1046 Q0 921213 15 9.940857 Anserini +test1046 Q0 16644218 16 9.895965 Anserini +test1046 Q0 17069974 17 9.893419 Anserini +test1046 Q0 3576132 18 9.883129 Anserini +test1046 Q0 3850793 19 9.855622 Anserini +test1046 Q0 17348134 20 9.840345 Anserini +test1046 Q0 18738529 21 9.840345 Anserini +test1046 Q0 15490945 22 9.771066 Anserini +test1046 Q0 314127 23 9.708183 Anserini +test1046 Q0 12760655 24 9.708183 Anserini +test1046 Q0 13815090 25 9.708183 Anserini +test1046 Q0 13681879 26 9.703794 Anserini +test1046 Q0 17070003 27 9.682649 Anserini +test1046 Q0 15009054 28 9.675275 Anserini +test1046 Q0 16769656 29 9.661668 Anserini +test1046 Q0 18839928 30 9.623994 Anserini +test1047 Q0 1791290 1 13.622085 Anserini +test1047 Q0 1791281 2 13.583273 Anserini +test1047 Q0 8307045 3 13.271732 Anserini +test1047 Q0 1791285 4 12.810153 Anserini +test1047 Q0 1791291 5 12.660857 Anserini +test1047 Q0 8307044 6 12.617823 Anserini +test1047 Q0 1791279 7 12.593343 Anserini +test1047 Q0 4684510 8 12.539551 Anserini +test1047 Q0 7690304 9 12.376621 Anserini +test1047 Q0 1791295 10 12.292168 Anserini +test1047 Q0 4211683 11 12.246504 Anserini +test1047 Q0 9812082 12 12.064475 Anserini +test1047 Q0 1791282 13 12.052217 Anserini +test1047 Q0 1791288 14 11.866784 Anserini +test1047 Q0 1791287 15 11.844137 Anserini +test1047 Q0 4684523 16 11.505716 Anserini +test1047 Q0 5189187 17 11.416845 Anserini +test1047 Q0 1791286 18 11.357904 Anserini +test1047 Q0 1791293 19 11.330349 Anserini +test1047 Q0 556736 20 11.315451 Anserini +test1047 Q0 295937 21 11.219796 Anserini +test1047 Q0 10036788 22 11.193797 Anserini +test1047 Q0 556741 23 10.905693 Anserini +test1047 Q0 10009114 24 10.900437 Anserini +test1047 Q0 4261865 25 10.886259 Anserini +test1047 Q0 14714599 26 10.870575 Anserini +test1047 Q0 13115728 27 10.851053 Anserini +test1047 Q0 247450 28 10.738756 Anserini +test1047 Q0 556734 29 10.713046 Anserini +test1047 Q0 8258519 30 10.629416 Anserini +test1048 Q0 2097989 1 15.718531 Anserini +test1048 Q0 11889063 2 15.253269 Anserini +test1048 Q0 2097976 3 15.198463 Anserini +test1048 Q0 2097978 4 14.126820 Anserini +test1048 Q0 2097980 5 13.886742 Anserini +test1048 Q0 11889064 6 13.674495 Anserini +test1048 Q0 15747841 7 13.100480 Anserini +test1048 Q0 15747843 8 13.014026 Anserini +test1048 Q0 1312979 9 13.003637 Anserini +test1048 Q0 2097977 10 12.540117 Anserini +test1048 Q0 2097983 11 12.507456 Anserini +test1048 Q0 8899523 12 11.676154 Anserini +test1048 Q0 16322461 13 11.635394 Anserini +test1048 Q0 10214508 14 11.606464 Anserini +test1048 Q0 15710714 15 11.576395 Anserini +test1048 Q0 15602724 16 11.491801 Anserini +test1048 Q0 2097982 17 11.431290 Anserini +test1048 Q0 3234004 18 11.404852 Anserini +test1048 Q0 12606466 19 11.349351 Anserini +test1048 Q0 5934892 20 11.347948 Anserini +test1048 Q0 2097981 21 11.222605 Anserini +test1048 Q0 9750025 22 11.145733 Anserini +test1048 Q0 19576301 23 11.144484 Anserini +test1048 Q0 16345287 24 11.050806 Anserini +test1048 Q0 4102230 25 10.918731 Anserini +test1048 Q0 2097979 26 10.918533 Anserini +test1048 Q0 14245734 27 10.803790 Anserini +test1048 Q0 12614356 28 10.678640 Anserini +test1048 Q0 19500926 29 10.633423 Anserini +test1048 Q0 19500927 30 10.633423 Anserini +test1049 Q0 2948078 1 13.249100 Anserini +test1049 Q0 2040623 2 12.938678 Anserini +test1049 Q0 2206552 3 12.581068 Anserini +test1049 Q0 20540079 4 12.439363 Anserini +test1049 Q0 2040619 5 12.278268 Anserini +test1049 Q0 2948074 6 12.180962 Anserini +test1049 Q0 8217095 7 12.000536 Anserini +test1049 Q0 819310 8 11.918108 Anserini +test1049 Q0 5411169 9 11.890625 Anserini +test1049 Q0 5411168 10 11.844435 Anserini +test1049 Q0 2948062 11 11.686323 Anserini +test1049 Q0 14126985 12 11.560513 Anserini +test1049 Q0 19842842 13 11.478536 Anserini +test1049 Q0 819331 14 11.373000 Anserini +test1049 Q0 13947144 15 11.313400 Anserini +test1049 Q0 15038636 16 11.223376 Anserini +test1049 Q0 2206569 17 11.149608 Anserini +test1049 Q0 13747287 18 11.148029 Anserini +test1049 Q0 2948073 19 11.102451 Anserini +test1049 Q0 2026089 20 11.084869 Anserini +test1049 Q0 16219405 21 11.059388 Anserini +test1049 Q0 819336 22 11.055996 Anserini +test1049 Q0 2245017 23 11.035275 Anserini +test1049 Q0 1794600 24 11.009285 Anserini +test1049 Q0 9100504 25 10.997764 Anserini +test1049 Q0 10607282 26 10.934744 Anserini +test1049 Q0 7517143 27 10.768400 Anserini +test1049 Q0 819321 28 10.757666 Anserini +test1049 Q0 819327 29 10.740623 Anserini +test1049 Q0 13790216 30 10.726995 Anserini +test105 Q0 4303388 1 16.607002 Anserini +test105 Q0 324220 2 16.432964 Anserini +test105 Q0 324230 3 16.390409 Anserini +test105 Q0 4303372 4 15.993199 Anserini +test105 Q0 233935 5 15.734857 Anserini +test105 Q0 17576979 6 15.641366 Anserini +test105 Q0 324229 7 15.611485 Anserini +test105 Q0 324215 8 15.343773 Anserini +test105 Q0 5217639 9 15.277857 Anserini +test105 Q0 4303384 10 15.155104 Anserini +test105 Q0 17576973 11 15.032102 Anserini +test105 Q0 324216 12 14.924353 Anserini +test105 Q0 2649700 13 14.918637 Anserini +test105 Q0 160243 14 14.804960 Anserini +test105 Q0 12640825 15 14.743353 Anserini +test105 Q0 12640827 16 14.659092 Anserini +test105 Q0 324210 17 14.406855 Anserini +test105 Q0 17552243 18 14.058594 Anserini +test105 Q0 11472200 19 14.019192 Anserini +test105 Q0 12640829 20 13.959229 Anserini +test105 Q0 17541722 21 13.899578 Anserini +test105 Q0 5528956 22 13.838202 Anserini +test105 Q0 160244 23 13.807758 Anserini +test105 Q0 324214 24 13.804686 Anserini +test105 Q0 2649702 25 13.785209 Anserini +test105 Q0 324213 26 13.738889 Anserini +test105 Q0 12640831 27 13.492413 Anserini +test105 Q0 324217 28 13.480819 Anserini +test105 Q0 12799902 29 13.367179 Anserini +test105 Q0 17541728 30 13.325373 Anserini +test1050 Q0 8462202 1 15.787558 Anserini +test1050 Q0 8462211 2 15.559516 Anserini +test1050 Q0 4899950 3 15.484634 Anserini +test1050 Q0 8462209 4 15.267910 Anserini +test1050 Q0 4899951 5 14.761889 Anserini +test1050 Q0 4899953 6 14.761889 Anserini +test1050 Q0 9114881 7 14.638760 Anserini +test1050 Q0 961548 8 14.462242 Anserini +test1050 Q0 8462205 9 14.150152 Anserini +test1050 Q0 11971105 10 14.150152 Anserini +test1050 Q0 4899952 11 14.145327 Anserini +test1050 Q0 5283969 12 14.064976 Anserini +test1050 Q0 11971111 13 14.064976 Anserini +test1050 Q0 5283973 14 13.898670 Anserini +test1050 Q0 4899947 15 13.890399 Anserini +test1050 Q0 565335 16 13.578644 Anserini +test1050 Q0 961580 17 13.254429 Anserini +test1050 Q0 5283972 18 13.170227 Anserini +test1050 Q0 961555 19 13.010906 Anserini +test1050 Q0 961571 20 12.972291 Anserini +test1050 Q0 4899949 21 12.878070 Anserini +test1050 Q0 961604 22 12.817499 Anserini +test1050 Q0 961570 23 12.582262 Anserini +test1050 Q0 4899948 24 12.424047 Anserini +test1050 Q0 5283971 25 12.319402 Anserini +test1050 Q0 4899958 26 12.319402 Anserini +test1050 Q0 4899959 27 12.319402 Anserini +test1050 Q0 5763819 28 12.234663 Anserini +test1050 Q0 2637459 29 12.216585 Anserini +test1050 Q0 2637462 30 12.216585 Anserini +test1051 Q0 12727507 1 11.142832 Anserini +test1051 Q0 4317056 2 10.942516 Anserini +test1051 Q0 12727493 3 10.614430 Anserini +test1051 Q0 20176678 4 10.265872 Anserini +test1051 Q0 14445914 5 9.975629 Anserini +test1051 Q0 16754213 6 9.946776 Anserini +test1051 Q0 1497451 7 9.927302 Anserini +test1051 Q0 14276958 8 9.824230 Anserini +test1051 Q0 18946743 9 9.701217 Anserini +test1051 Q0 12727498 10 9.689811 Anserini +test1051 Q0 18946750 11 9.618487 Anserini +test1051 Q0 17437464 12 9.503320 Anserini +test1051 Q0 20613223 13 9.434294 Anserini +test1051 Q0 15760931 14 9.421375 Anserini +test1051 Q0 18884319 15 9.412987 Anserini +test1051 Q0 7793056 16 9.332529 Anserini +test1051 Q0 17344515 17 9.236398 Anserini +test1051 Q0 13393593 18 9.225185 Anserini +test1051 Q0 12809342 19 9.215876 Anserini +test1051 Q0 12727502 20 9.191703 Anserini +test1051 Q0 2691754 21 9.190483 Anserini +test1051 Q0 17658856 22 9.150928 Anserini +test1051 Q0 15368356 23 9.108280 Anserini +test1051 Q0 12727504 24 9.063707 Anserini +test1051 Q0 12710115 25 9.059310 Anserini +test1051 Q0 13576573 26 9.050791 Anserini +test1051 Q0 9704272 27 9.047599 Anserini +test1051 Q0 11822767 28 9.040854 Anserini +test1051 Q0 10218536 29 8.971854 Anserini +test1051 Q0 12727500 30 8.959437 Anserini +test1052 Q0 17993442 1 14.413746 Anserini +test1052 Q0 18111536 2 14.125837 Anserini +test1052 Q0 13372679 3 14.125837 Anserini +test1052 Q0 7538754 4 14.119985 Anserini +test1052 Q0 17684613 5 13.740454 Anserini +test1052 Q0 17897599 6 13.692778 Anserini +test1052 Q0 17897583 7 13.692778 Anserini +test1052 Q0 18335854 8 13.533359 Anserini +test1052 Q0 18335844 9 13.445732 Anserini +test1052 Q0 18524796 10 13.445732 Anserini +test1052 Q0 18040624 11 13.433477 Anserini +test1052 Q0 18039624 12 13.359378 Anserini +test1052 Q0 19273924 13 13.359378 Anserini +test1052 Q0 18461284 14 13.302140 Anserini +test1052 Q0 18039641 15 13.274265 Anserini +test1052 Q0 18356090 16 13.171150 Anserini +test1052 Q0 18356079 17 13.098388 Anserini +test1052 Q0 18452634 18 13.098388 Anserini +test1052 Q0 18539606 19 13.027733 Anserini +test1052 Q0 18015795 20 13.018505 Anserini +test1052 Q0 17719360 21 12.926936 Anserini +test1052 Q0 17159305 22 12.866111 Anserini +test1052 Q0 17719374 23 12.846044 Anserini +test1052 Q0 13372678 24 12.800580 Anserini +test1052 Q0 18354130 25 12.795469 Anserini +test1052 Q0 16472389 26 12.795469 Anserini +test1052 Q0 17532929 27 12.777166 Anserini +test1052 Q0 18452640 28 12.732589 Anserini +test1052 Q0 17844586 29 12.732401 Anserini +test1052 Q0 13320000 30 12.662971 Anserini +test1053 Q0 2765178 1 15.616159 Anserini +test1053 Q0 2765174 2 15.476525 Anserini +test1053 Q0 2765229 3 15.476525 Anserini +test1053 Q0 66456 4 15.463708 Anserini +test1053 Q0 10358121 5 15.451932 Anserini +test1053 Q0 10358122 6 15.451932 Anserini +test1053 Q0 528522 7 15.409811 Anserini +test1053 Q0 2765193 8 15.308904 Anserini +test1053 Q0 13806700 9 14.854249 Anserini +test1053 Q0 2765181 10 14.789975 Anserini +test1053 Q0 6402127 11 14.779840 Anserini +test1053 Q0 6402138 12 14.591047 Anserini +test1053 Q0 528517 13 14.439408 Anserini +test1053 Q0 16060249 14 14.014668 Anserini +test1053 Q0 3644859 15 13.849694 Anserini +test1053 Q0 9637816 16 13.780203 Anserini +test1053 Q0 2765191 17 13.720371 Anserini +test1053 Q0 9637834 18 13.675200 Anserini +test1053 Q0 636320 19 13.571836 Anserini +test1053 Q0 9760615 20 13.571323 Anserini +test1053 Q0 924686 21 13.569093 Anserini +test1053 Q0 17141117 22 13.528338 Anserini +test1053 Q0 4141216 23 13.526861 Anserini +test1053 Q0 9188021 24 13.421254 Anserini +test1053 Q0 13078008 25 13.367265 Anserini +test1053 Q0 9760619 26 13.359723 Anserini +test1053 Q0 13078009 27 13.312699 Anserini +test1053 Q0 16407422 28 13.256232 Anserini +test1053 Q0 17482928 29 13.195678 Anserini +test1053 Q0 17141120 30 13.195678 Anserini +test1054 Q0 12320132 1 12.409744 Anserini +test1054 Q0 12320135 2 11.465787 Anserini +test1054 Q0 8906908 3 10.952605 Anserini +test1054 Q0 18096653 4 10.899682 Anserini +test1054 Q0 19200626 5 10.879672 Anserini +test1054 Q0 20636383 6 10.709779 Anserini +test1054 Q0 12320134 7 10.601164 Anserini +test1054 Q0 6539560 8 10.516700 Anserini +test1054 Q0 20020605 9 10.484677 Anserini +test1054 Q0 630920 10 10.456094 Anserini +test1054 Q0 19337511 11 10.408606 Anserini +test1054 Q0 12762044 12 10.366909 Anserini +test1054 Q0 14148910 13 10.175589 Anserini +test1054 Q0 20020613 14 10.149604 Anserini +test1054 Q0 3402745 15 10.025723 Anserini +test1054 Q0 6383180 16 9.992492 Anserini +test1054 Q0 10314033 17 9.884068 Anserini +test1054 Q0 6453683 18 9.855925 Anserini +test1054 Q0 761778 19 9.822347 Anserini +test1054 Q0 1875176 20 9.777898 Anserini +test1054 Q0 4149830 21 9.752654 Anserini +test1054 Q0 18235924 22 9.730552 Anserini +test1054 Q0 7690748 23 9.728660 Anserini +test1054 Q0 4941406 24 9.728542 Anserini +test1054 Q0 12422837 25 9.696519 Anserini +test1054 Q0 2993275 26 9.663366 Anserini +test1054 Q0 18293506 27 9.659626 Anserini +test1054 Q0 5988616 28 9.633257 Anserini +test1054 Q0 7654790 29 9.600473 Anserini +test1054 Q0 7654811 30 9.533099 Anserini +test1055 Q0 17901179 1 11.497396 Anserini +test1055 Q0 17901155 2 11.441404 Anserini +test1055 Q0 16638007 3 10.386692 Anserini +test1055 Q0 16638010 4 10.321478 Anserini +test1055 Q0 1569662 5 10.102081 Anserini +test1055 Q0 2825064 6 10.058249 Anserini +test1055 Q0 19915609 7 10.038089 Anserini +test1055 Q0 19915618 8 10.038089 Anserini +test1055 Q0 8339745 9 9.851115 Anserini +test1055 Q0 12373023 10 9.828590 Anserini +test1055 Q0 12855926 11 9.824185 Anserini +test1055 Q0 17901158 12 9.824185 Anserini +test1055 Q0 12855404 13 9.780643 Anserini +test1055 Q0 12611469 14 9.740116 Anserini +test1055 Q0 910765 15 9.740116 Anserini +test1055 Q0 17901163 16 9.729261 Anserini +test1055 Q0 16643717 17 9.668890 Anserini +test1055 Q0 14724348 18 9.668890 Anserini +test1055 Q0 12419548 19 9.667416 Anserini +test1055 Q0 5688022 20 9.654839 Anserini +test1055 Q0 3717285 21 9.609606 Anserini +test1055 Q0 6001280 22 9.609606 Anserini +test1055 Q0 14323184 23 9.587707 Anserini +test1055 Q0 14998796 24 9.530765 Anserini +test1055 Q0 3513547 25 9.475933 Anserini +test1055 Q0 2698513 26 9.458254 Anserini +test1055 Q0 1569653 27 9.420513 Anserini +test1055 Q0 12419561 28 9.381783 Anserini +test1055 Q0 2731948 29 9.374670 Anserini +test1055 Q0 2731868 30 9.352026 Anserini +test1056 Q0 4709564 1 14.480462 Anserini +test1056 Q0 4709249 2 14.398588 Anserini +test1056 Q0 13705832 3 13.839934 Anserini +test1056 Q0 11528487 4 13.623777 Anserini +test1056 Q0 4554692 5 13.515290 Anserini +test1056 Q0 13683542 6 13.507655 Anserini +test1056 Q0 4983257 7 13.479288 Anserini +test1056 Q0 4554364 8 13.428663 Anserini +test1056 Q0 2363222 9 13.363468 Anserini +test1056 Q0 4899450 10 13.320712 Anserini +test1056 Q0 9844400 11 13.247762 Anserini +test1056 Q0 18366286 12 13.240674 Anserini +test1056 Q0 11384474 13 13.233134 Anserini +test1056 Q0 1987329 14 13.181134 Anserini +test1056 Q0 19913861 15 13.177235 Anserini +test1056 Q0 4709697 16 13.153765 Anserini +test1056 Q0 14509331 17 13.147906 Anserini +test1056 Q0 3895159 18 13.113307 Anserini +test1056 Q0 4709565 19 13.062670 Anserini +test1056 Q0 5013973 20 13.048751 Anserini +test1056 Q0 4915281 21 13.048751 Anserini +test1056 Q0 19820116 22 13.030905 Anserini +test1056 Q0 4554646 23 13.020787 Anserini +test1056 Q0 394290 24 12.990584 Anserini +test1056 Q0 5002617 25 12.967783 Anserini +test1056 Q0 4968967 26 12.920663 Anserini +test1056 Q0 393670 27 12.912876 Anserini +test1056 Q0 5214709 28 12.885568 Anserini +test1056 Q0 10482364 29 12.851046 Anserini +test1056 Q0 4444255 30 12.845942 Anserini +test1057 Q0 16513407 1 15.672044 Anserini +test1057 Q0 14463312 2 14.364217 Anserini +test1057 Q0 10997168 3 14.111767 Anserini +test1057 Q0 13672207 4 13.695801 Anserini +test1057 Q0 2221322 5 13.562313 Anserini +test1057 Q0 2221379 6 13.440598 Anserini +test1057 Q0 23551 7 13.202600 Anserini +test1057 Q0 3505995 8 13.126446 Anserini +test1057 Q0 3143094 9 13.035855 Anserini +test1057 Q0 8489043 10 12.986057 Anserini +test1057 Q0 6723782 11 12.812287 Anserini +test1057 Q0 18624510 12 12.754898 Anserini +test1057 Q0 12004578 13 12.740331 Anserini +test1057 Q0 534408 14 12.526694 Anserini +test1057 Q0 5402275 15 12.360360 Anserini +test1057 Q0 2590889 16 11.957807 Anserini +test1057 Q0 15910066 17 11.730013 Anserini +test1057 Q0 5402298 18 11.726992 Anserini +test1057 Q0 12163376 19 11.687545 Anserini +test1057 Q0 13521966 20 11.631249 Anserini +test1057 Q0 1015189 21 11.601040 Anserini +test1057 Q0 14911357 22 11.567864 Anserini +test1057 Q0 2590362 23 11.519487 Anserini +test1057 Q0 8017746 24 11.447209 Anserini +test1057 Q0 2304940 25 11.447085 Anserini +test1057 Q0 14464660 26 11.417593 Anserini +test1057 Q0 12157417 27 11.341114 Anserini +test1057 Q0 18326335 28 11.325830 Anserini +test1057 Q0 2304921 29 11.266266 Anserini +test1057 Q0 14362992 30 11.231751 Anserini +test1058 Q0 16073624 1 15.344382 Anserini +test1058 Q0 15618539 2 14.784283 Anserini +test1058 Q0 17774888 3 14.774048 Anserini +test1058 Q0 14642301 4 14.424357 Anserini +test1058 Q0 19452263 5 14.323639 Anserini +test1058 Q0 19354928 6 14.322260 Anserini +test1058 Q0 15361667 7 14.152090 Anserini +test1058 Q0 18989094 8 14.115154 Anserini +test1058 Q0 19452267 9 13.853713 Anserini +test1058 Q0 20462914 10 13.802717 Anserini +test1058 Q0 20462923 11 13.681212 Anserini +test1058 Q0 17813980 12 13.667007 Anserini +test1058 Q0 19354929 13 13.660522 Anserini +test1058 Q0 18371410 14 13.300508 Anserini +test1058 Q0 17496088 15 12.789067 Anserini +test1058 Q0 14642334 16 12.785809 Anserini +test1058 Q0 20727656 17 12.740153 Anserini +test1058 Q0 20730713 18 12.658148 Anserini +test1058 Q0 17759815 19 12.542919 Anserini +test1058 Q0 13701577 20 12.491547 Anserini +test1058 Q0 16654228 21 12.477662 Anserini +test1058 Q0 15133257 22 12.471816 Anserini +test1058 Q0 17061913 23 12.468409 Anserini +test1058 Q0 16071015 24 12.438375 Anserini +test1058 Q0 19354930 25 12.429663 Anserini +test1058 Q0 14642306 26 12.417558 Anserini +test1058 Q0 18177885 27 12.409609 Anserini +test1058 Q0 15615376 28 12.375481 Anserini +test1058 Q0 20658527 29 12.336961 Anserini +test1058 Q0 19354924 30 12.295403 Anserini +test1059 Q0 4077262 1 14.393894 Anserini +test1059 Q0 7807599 2 14.041755 Anserini +test1059 Q0 12418543 3 13.777042 Anserini +test1059 Q0 1813614 4 12.813216 Anserini +test1059 Q0 18516335 5 12.672296 Anserini +test1059 Q0 4324566 6 12.485259 Anserini +test1059 Q0 4324568 7 12.402767 Anserini +test1059 Q0 7807554 8 12.391693 Anserini +test1059 Q0 12318036 9 12.140409 Anserini +test1059 Q0 10137516 10 12.112154 Anserini +test1059 Q0 14668075 11 11.792807 Anserini +test1059 Q0 12418596 12 11.759949 Anserini +test1059 Q0 14668096 13 11.627382 Anserini +test1059 Q0 20078631 14 11.489284 Anserini +test1059 Q0 304467 15 11.326839 Anserini +test1059 Q0 12728729 16 11.272194 Anserini +test1059 Q0 15366510 17 11.244151 Anserini +test1059 Q0 1807481 18 11.224964 Anserini +test1059 Q0 7807621 19 11.216681 Anserini +test1059 Q0 18104827 20 11.160459 Anserini +test1059 Q0 7807546 21 11.102160 Anserini +test1059 Q0 4047754 22 11.037340 Anserini +test1059 Q0 18104829 23 11.011925 Anserini +test1059 Q0 12418584 24 10.881595 Anserini +test1059 Q0 19997349 25 10.874544 Anserini +test1059 Q0 1807478 26 10.854824 Anserini +test1059 Q0 14710028 27 10.845915 Anserini +test1059 Q0 9953287 28 10.813378 Anserini +test1059 Q0 2056955 29 10.802312 Anserini +test1059 Q0 3036217 30 10.789775 Anserini +test106 Q0 12472476 1 11.807168 Anserini +test106 Q0 5525946 2 11.712783 Anserini +test106 Q0 5780172 3 11.525246 Anserini +test106 Q0 5639114 4 11.414224 Anserini +test106 Q0 16104353 5 11.371416 Anserini +test106 Q0 11674454 6 11.011943 Anserini +test106 Q0 14945205 7 10.945889 Anserini +test106 Q0 19545973 8 10.821417 Anserini +test106 Q0 516551 9 10.693195 Anserini +test106 Q0 13957016 10 10.559896 Anserini +test106 Q0 10970665 11 10.446815 Anserini +test106 Q0 17266462 12 10.426810 Anserini +test106 Q0 16383770 13 10.408621 Anserini +test106 Q0 20030793 14 10.398832 Anserini +test106 Q0 11876061 15 10.385443 Anserini +test106 Q0 656168 16 10.383492 Anserini +test106 Q0 17886787 17 10.352233 Anserini +test106 Q0 5600137 18 10.280965 Anserini +test106 Q0 17167056 19 10.256094 Anserini +test106 Q0 18863267 20 10.256094 Anserini +test106 Q0 4853474 21 10.180727 Anserini +test106 Q0 9829201 22 10.170376 Anserini +test106 Q0 18840593 23 10.170376 Anserini +test106 Q0 18840897 24 10.170376 Anserini +test106 Q0 18855276 25 10.170376 Anserini +test106 Q0 584654 26 10.163275 Anserini +test106 Q0 12529915 27 10.134712 Anserini +test106 Q0 20861527 28 10.106945 Anserini +test106 Q0 18850860 29 10.086142 Anserini +test106 Q0 14570013 30 10.086142 Anserini +test1060 Q0 181869 1 15.638771 Anserini +test1060 Q0 20907287 2 15.348064 Anserini +test1060 Q0 8904504 3 15.216221 Anserini +test1060 Q0 1363839 4 15.109991 Anserini +test1060 Q0 893722 5 14.789370 Anserini +test1060 Q0 5348081 6 14.162890 Anserini +test1060 Q0 8904509 7 14.134398 Anserini +test1060 Q0 4439025 8 14.023945 Anserini +test1060 Q0 5496278 9 13.977867 Anserini +test1060 Q0 6537967 10 13.933115 Anserini +test1060 Q0 6551071 11 13.933115 Anserini +test1060 Q0 8424636 12 13.852016 Anserini +test1060 Q0 7425871 13 13.696325 Anserini +test1060 Q0 492019 14 13.503419 Anserini +test1060 Q0 9148673 15 13.473749 Anserini +test1060 Q0 16704543 16 13.416504 Anserini +test1060 Q0 1363842 17 13.409484 Anserini +test1060 Q0 14815008 18 13.380072 Anserini +test1060 Q0 6511873 19 13.294292 Anserini +test1060 Q0 4439274 20 13.253247 Anserini +test1060 Q0 8904505 21 13.203695 Anserini +test1060 Q0 9148674 22 13.102245 Anserini +test1060 Q0 20907281 23 13.033028 Anserini +test1060 Q0 20907282 24 13.033028 Anserini +test1060 Q0 4080905 25 13.013051 Anserini +test1060 Q0 9270349 26 12.988424 Anserini +test1060 Q0 4080902 27 12.914529 Anserini +test1060 Q0 9473270 28 12.913034 Anserini +test1060 Q0 576725 29 12.903866 Anserini +test1060 Q0 13334499 30 12.903866 Anserini +test1061 Q0 4390174 1 13.130344 Anserini +test1061 Q0 20678831 2 12.514741 Anserini +test1061 Q0 19430320 3 12.478078 Anserini +test1061 Q0 20678843 4 12.451213 Anserini +test1061 Q0 20185675 5 12.353024 Anserini +test1061 Q0 20948062 6 11.841216 Anserini +test1061 Q0 17679934 7 11.814243 Anserini +test1061 Q0 17964758 8 11.734326 Anserini +test1061 Q0 20948059 9 11.730224 Anserini +test1061 Q0 17679931 10 11.711085 Anserini +test1061 Q0 20846703 11 11.693611 Anserini +test1061 Q0 20846705 12 11.693611 Anserini +test1061 Q0 18548376 13 11.630915 Anserini +test1061 Q0 20519093 14 11.566550 Anserini +test1061 Q0 18548388 15 11.564606 Anserini +test1061 Q0 17876198 16 11.374595 Anserini +test1061 Q0 10915586 17 11.335402 Anserini +test1061 Q0 10915537 18 11.335402 Anserini +test1061 Q0 20849810 19 11.284168 Anserini +test1061 Q0 20849816 20 11.258242 Anserini +test1061 Q0 18057830 21 11.248878 Anserini +test1061 Q0 20614049 22 11.197026 Anserini +test1061 Q0 19424936 23 11.193281 Anserini +test1061 Q0 21001053 24 11.183846 Anserini +test1061 Q0 20128386 25 11.164143 Anserini +test1061 Q0 20849041 26 11.138824 Anserini +test1061 Q0 8641132 27 11.136383 Anserini +test1061 Q0 20849042 28 11.094213 Anserini +test1061 Q0 20031439 29 11.092234 Anserini +test1061 Q0 8460067 30 11.080417 Anserini +test1062 Q0 15630874 1 26.828409 Anserini +test1062 Q0 2114253 2 26.478983 Anserini +test1062 Q0 2114248 3 26.282984 Anserini +test1062 Q0 1989143 4 25.882246 Anserini +test1062 Q0 5388895 5 25.414318 Anserini +test1062 Q0 19522882 6 25.153687 Anserini +test1062 Q0 13505416 7 24.751574 Anserini +test1062 Q0 12091154 8 24.164667 Anserini +test1062 Q0 10106827 9 23.998663 Anserini +test1062 Q0 4362998 10 23.682926 Anserini +test1062 Q0 2114250 11 23.630777 Anserini +test1062 Q0 11726725 12 23.453159 Anserini +test1062 Q0 11808324 13 23.290085 Anserini +test1062 Q0 18066626 14 22.944868 Anserini +test1062 Q0 12527792 15 22.895674 Anserini +test1062 Q0 10680267 16 22.883415 Anserini +test1062 Q0 17726324 17 22.698757 Anserini +test1062 Q0 2272414 18 22.654652 Anserini +test1062 Q0 14301993 19 22.654652 Anserini +test1062 Q0 15903977 20 22.654652 Anserini +test1062 Q0 10788353 21 22.587051 Anserini +test1062 Q0 11844502 22 22.576885 Anserini +test1062 Q0 6809836 23 22.465763 Anserini +test1062 Q0 14458454 24 22.440641 Anserini +test1062 Q0 13292500 25 22.411263 Anserini +test1062 Q0 10774102 26 22.150154 Anserini +test1062 Q0 10000377 27 21.833303 Anserini +test1062 Q0 15138903 28 21.759287 Anserini +test1062 Q0 1706057 29 21.759287 Anserini +test1062 Q0 14423213 30 21.596960 Anserini +test1063 Q0 8949667 1 15.465285 Anserini +test1063 Q0 9053864 2 14.955342 Anserini +test1063 Q0 9053863 3 14.537617 Anserini +test1063 Q0 9053875 4 14.184617 Anserini +test1063 Q0 9053866 5 13.854758 Anserini +test1063 Q0 9053865 6 13.777687 Anserini +test1063 Q0 12906152 7 13.492438 Anserini +test1063 Q0 9053868 8 13.459918 Anserini +test1063 Q0 9053877 9 13.390122 Anserini +test1063 Q0 9053870 10 12.977886 Anserini +test1063 Q0 9624502 11 12.728668 Anserini +test1063 Q0 7476070 12 12.711052 Anserini +test1063 Q0 9053869 13 12.661999 Anserini +test1063 Q0 12690603 14 12.597622 Anserini +test1063 Q0 9053867 15 12.447318 Anserini +test1063 Q0 9002673 16 12.404600 Anserini +test1063 Q0 12047264 17 12.333897 Anserini +test1063 Q0 1733645 18 12.306528 Anserini +test1063 Q0 10533425 19 12.225225 Anserini +test1063 Q0 9053873 20 11.976755 Anserini +test1063 Q0 11073030 21 11.689817 Anserini +test1063 Q0 9002681 22 11.659017 Anserini +test1063 Q0 1567479 23 11.627847 Anserini +test1063 Q0 13376224 24 11.626593 Anserini +test1063 Q0 15988201 25 11.596331 Anserini +test1063 Q0 20120429 26 11.585205 Anserini +test1063 Q0 19980066 27 11.578520 Anserini +test1063 Q0 10453300 28 11.481567 Anserini +test1063 Q0 13804910 29 11.421039 Anserini +test1063 Q0 12286882 30 11.399284 Anserini +test1064 Q0 2208605 1 21.205990 Anserini +test1064 Q0 17587118 2 20.804796 Anserini +test1064 Q0 18301994 3 20.670992 Anserini +test1064 Q0 17587141 4 20.289701 Anserini +test1064 Q0 13043854 5 20.128325 Anserini +test1064 Q0 13043852 6 19.777531 Anserini +test1064 Q0 14740059 7 19.161951 Anserini +test1064 Q0 5618196 8 18.947989 Anserini +test1064 Q0 4700220 9 18.911484 Anserini +test1064 Q0 4457447 10 18.876350 Anserini +test1064 Q0 12559783 11 18.855068 Anserini +test1064 Q0 11061335 12 18.684429 Anserini +test1064 Q0 3358935 13 18.511826 Anserini +test1064 Q0 11233188 14 18.441233 Anserini +test1064 Q0 16553734 15 18.340919 Anserini +test1064 Q0 703960 16 18.309809 Anserini +test1064 Q0 2560892 17 18.225164 Anserini +test1064 Q0 6417443 18 18.223721 Anserini +test1064 Q0 14740058 19 18.180424 Anserini +test1064 Q0 4210209 20 17.947630 Anserini +test1064 Q0 3998954 21 17.918880 Anserini +test1064 Q0 16904871 22 17.781258 Anserini +test1064 Q0 6309428 23 17.692875 Anserini +test1064 Q0 7510824 24 17.601629 Anserini +test1064 Q0 17617810 25 17.589006 Anserini +test1064 Q0 4390380 26 17.491816 Anserini +test1064 Q0 138991 27 17.466911 Anserini +test1064 Q0 11061326 28 17.459879 Anserini +test1064 Q0 15628483 29 17.373842 Anserini +test1064 Q0 18301995 30 17.328909 Anserini +test1065 Q0 4029139 1 13.675251 Anserini +test1065 Q0 15584683 2 13.086670 Anserini +test1065 Q0 12542570 3 12.765032 Anserini +test1065 Q0 13491104 4 12.541236 Anserini +test1065 Q0 9443146 5 12.262973 Anserini +test1065 Q0 10917005 6 12.045697 Anserini +test1065 Q0 20628125 7 11.882859 Anserini +test1065 Q0 7329908 8 11.721133 Anserini +test1065 Q0 3419843 9 11.666964 Anserini +test1065 Q0 5457689 10 11.545283 Anserini +test1065 Q0 711033 11 11.462346 Anserini +test1065 Q0 20073015 12 11.436285 Anserini +test1065 Q0 17168075 13 11.403795 Anserini +test1065 Q0 19246891 14 11.396888 Anserini +test1065 Q0 10241634 15 11.361098 Anserini +test1065 Q0 15064498 16 11.277405 Anserini +test1065 Q0 18352513 17 11.273356 Anserini +test1065 Q0 17655786 18 11.271211 Anserini +test1065 Q0 18767403 19 11.269677 Anserini +test1065 Q0 15064488 20 11.188601 Anserini +test1065 Q0 17655780 21 11.141129 Anserini +test1065 Q0 19413977 22 11.141129 Anserini +test1065 Q0 3419847 23 11.127007 Anserini +test1065 Q0 16407835 24 11.081495 Anserini +test1065 Q0 20546517 25 11.074469 Anserini +test1065 Q0 16092666 26 11.072886 Anserini +test1065 Q0 15314294 27 11.051134 Anserini +test1065 Q0 20055532 28 11.044637 Anserini +test1065 Q0 3419844 29 11.028566 Anserini +test1065 Q0 9443145 30 11.005754 Anserini +test1066 Q0 19775766 1 15.144661 Anserini +test1066 Q0 7253545 2 14.780920 Anserini +test1066 Q0 19775770 3 12.587726 Anserini +test1066 Q0 9448228 4 12.517294 Anserini +test1066 Q0 7214958 5 12.358353 Anserini +test1066 Q0 20383024 6 12.212349 Anserini +test1066 Q0 6340867 7 11.972521 Anserini +test1066 Q0 19766805 8 11.838288 Anserini +test1066 Q0 9448079 9 11.832870 Anserini +test1066 Q0 974731 10 11.805705 Anserini +test1066 Q0 9448073 11 11.794995 Anserini +test1066 Q0 20047130 12 11.722448 Anserini +test1066 Q0 6319580 13 11.712540 Anserini +test1066 Q0 9448076 14 11.699894 Anserini +test1066 Q0 346790 15 11.642227 Anserini +test1066 Q0 11378442 16 11.442857 Anserini +test1066 Q0 8314908 17 11.401153 Anserini +test1066 Q0 11720287 18 11.363437 Anserini +test1066 Q0 4154857 19 11.346601 Anserini +test1066 Q0 11653816 20 11.216889 Anserini +test1066 Q0 6575197 21 11.189193 Anserini +test1066 Q0 17513166 22 11.154373 Anserini +test1066 Q0 4208791 23 11.120516 Anserini +test1066 Q0 8710669 24 11.095151 Anserini +test1066 Q0 20383017 25 11.092175 Anserini +test1066 Q0 20383007 26 11.008746 Anserini +test1066 Q0 13267643 27 11.008068 Anserini +test1066 Q0 19346774 28 10.959781 Anserini +test1066 Q0 9448075 29 10.959047 Anserini +test1066 Q0 15515648 30 10.920094 Anserini +test1067 Q0 13458619 1 12.818658 Anserini +test1067 Q0 13458622 2 12.627066 Anserini +test1067 Q0 5605287 3 12.354021 Anserini +test1067 Q0 45567 4 11.787342 Anserini +test1067 Q0 6856227 5 11.647696 Anserini +test1067 Q0 7396207 6 11.476361 Anserini +test1067 Q0 12150789 7 11.439133 Anserini +test1067 Q0 5605284 8 11.430189 Anserini +test1067 Q0 5613142 9 11.245354 Anserini +test1067 Q0 6205720 10 11.243834 Anserini +test1067 Q0 5587641 11 11.190439 Anserini +test1067 Q0 17291929 12 11.162169 Anserini +test1067 Q0 6856226 13 10.845951 Anserini +test1067 Q0 17291928 14 10.819971 Anserini +test1067 Q0 13458621 15 10.779558 Anserini +test1067 Q0 1749800 16 10.646677 Anserini +test1067 Q0 8122279 17 10.646677 Anserini +test1067 Q0 5605285 18 10.646677 Anserini +test1067 Q0 12150783 19 10.410037 Anserini +test1067 Q0 12150784 20 10.351594 Anserini +test1067 Q0 8112227 21 10.293120 Anserini +test1067 Q0 8112229 22 10.293120 Anserini +test1067 Q0 7396201 23 10.290980 Anserini +test1067 Q0 4227712 24 10.272427 Anserini +test1067 Q0 8523075 25 10.261116 Anserini +test1067 Q0 7404746 26 10.230848 Anserini +test1067 Q0 2342341 27 10.219010 Anserini +test1067 Q0 9620086 28 10.148039 Anserini +test1067 Q0 7396206 29 10.148039 Anserini +test1067 Q0 4471974 30 10.092888 Anserini +test1068 Q0 15930480 1 10.061039 Anserini +test1068 Q0 18526832 2 9.649647 Anserini +test1068 Q0 17579054 3 9.445329 Anserini +test1068 Q0 10163353 4 9.307222 Anserini +test1068 Q0 11091445 5 9.219520 Anserini +test1068 Q0 14468002 6 9.172999 Anserini +test1068 Q0 11662640 7 9.169426 Anserini +test1068 Q0 3201624 8 9.131101 Anserini +test1068 Q0 6738475 9 8.979062 Anserini +test1068 Q0 15644909 10 8.945184 Anserini +test1068 Q0 14287051 11 8.937594 Anserini +test1068 Q0 3201605 12 8.803205 Anserini +test1068 Q0 12657452 13 8.801797 Anserini +test1068 Q0 10823377 14 8.800200 Anserini +test1068 Q0 13252855 15 8.796432 Anserini +test1068 Q0 20613068 16 8.789539 Anserini +test1068 Q0 20760645 17 8.789410 Anserini +test1068 Q0 15644914 18 8.787977 Anserini +test1068 Q0 14287054 19 8.772694 Anserini +test1068 Q0 14259325 20 8.761971 Anserini +test1068 Q0 17558838 21 8.749974 Anserini +test1068 Q0 1300814 22 8.741430 Anserini +test1068 Q0 2109446 23 8.712579 Anserini +test1068 Q0 14985288 24 8.702835 Anserini +test1068 Q0 11893893 25 8.694172 Anserini +test1068 Q0 1340393 26 8.684402 Anserini +test1068 Q0 20322178 27 8.681225 Anserini +test1068 Q0 17436931 28 8.633975 Anserini +test1068 Q0 14396376 29 8.595474 Anserini +test1068 Q0 20174416 30 8.580639 Anserini +test1069 Q0 3551569 1 14.308828 Anserini +test1069 Q0 3551568 2 13.783823 Anserini +test1069 Q0 4335041 3 13.743380 Anserini +test1069 Q0 6479961 4 12.774858 Anserini +test1069 Q0 3551577 5 12.721064 Anserini +test1069 Q0 3551566 6 12.712423 Anserini +test1069 Q0 5815321 7 12.642763 Anserini +test1069 Q0 15629012 8 12.557165 Anserini +test1069 Q0 3551564 9 12.224859 Anserini +test1069 Q0 5244961 10 12.114140 Anserini +test1069 Q0 15629006 11 12.093403 Anserini +test1069 Q0 3551552 12 11.585454 Anserini +test1069 Q0 15629015 13 11.585454 Anserini +test1069 Q0 3551565 14 11.428697 Anserini +test1069 Q0 5782190 15 11.371473 Anserini +test1069 Q0 17273532 16 11.342690 Anserini +test1069 Q0 16993173 17 11.337480 Anserini +test1069 Q0 3551553 18 11.290612 Anserini +test1069 Q0 3551578 19 11.211886 Anserini +test1069 Q0 3551575 20 11.211886 Anserini +test1069 Q0 5007036 21 11.207360 Anserini +test1069 Q0 5007037 22 11.207360 Anserini +test1069 Q0 2628732 23 11.038259 Anserini +test1069 Q0 18586256 24 11.016090 Anserini +test1069 Q0 15629007 25 10.973323 Anserini +test1069 Q0 4362074 26 10.922058 Anserini +test1069 Q0 16293799 27 10.922058 Anserini +test1069 Q0 3551580 28 10.917045 Anserini +test1069 Q0 15629004 29 10.917045 Anserini +test1069 Q0 15980660 30 10.897159 Anserini +test107 Q0 5825672 1 18.503292 Anserini +test107 Q0 5825677 2 18.056488 Anserini +test107 Q0 8448878 3 17.802317 Anserini +test107 Q0 6561031 4 17.776932 Anserini +test107 Q0 8448879 5 17.719536 Anserini +test107 Q0 3633677 6 17.631180 Anserini +test107 Q0 3633672 7 17.554674 Anserini +test107 Q0 3085419 8 17.384205 Anserini +test107 Q0 10288749 9 17.296858 Anserini +test107 Q0 17150343 10 17.240799 Anserini +test107 Q0 8448862 11 17.233038 Anserini +test107 Q0 3633528 12 17.197922 Anserini +test107 Q0 11449830 13 17.175369 Anserini +test107 Q0 8448864 14 17.140745 Anserini +test107 Q0 10288750 15 16.807144 Anserini +test107 Q0 7307236 16 16.746304 Anserini +test107 Q0 6402616 17 16.611086 Anserini +test107 Q0 19671970 18 16.549625 Anserini +test107 Q0 6591595 19 16.517233 Anserini +test107 Q0 8199602 20 16.503405 Anserini +test107 Q0 11001534 21 16.468857 Anserini +test107 Q0 12903596 22 16.420704 Anserini +test107 Q0 647169 23 16.395309 Anserini +test107 Q0 2773359 24 16.392641 Anserini +test107 Q0 647170 25 16.344032 Anserini +test107 Q0 9294508 26 16.260933 Anserini +test107 Q0 11001532 27 16.224451 Anserini +test107 Q0 10827569 28 16.199705 Anserini +test107 Q0 4642957 29 16.148155 Anserini +test107 Q0 6591596 30 16.141562 Anserini +test1070 Q0 17794426 1 21.056421 Anserini +test1070 Q0 17794430 2 18.518858 Anserini +test1070 Q0 17794428 3 18.079750 Anserini +test1070 Q0 17794429 4 17.806421 Anserini +test1070 Q0 17794425 5 17.500088 Anserini +test1070 Q0 17794427 6 17.165625 Anserini +test1070 Q0 17794442 7 17.090019 Anserini +test1070 Q0 17794431 8 16.882952 Anserini +test1070 Q0 17794424 9 16.397243 Anserini +test1070 Q0 17794436 10 14.101118 Anserini +test1070 Q0 17794440 11 14.003861 Anserini +test1070 Q0 17794434 12 13.912048 Anserini +test1070 Q0 17814629 13 13.813319 Anserini +test1070 Q0 17794432 14 13.462004 Anserini +test1070 Q0 17794437 15 12.759116 Anserini +test1070 Q0 8754088 16 12.390231 Anserini +test1070 Q0 1268871 17 11.972013 Anserini +test1070 Q0 5357785 18 11.898534 Anserini +test1070 Q0 16436110 19 11.776825 Anserini +test1070 Q0 13629967 20 11.765318 Anserini +test1070 Q0 17794435 21 11.641465 Anserini +test1070 Q0 4798020 22 11.539283 Anserini +test1070 Q0 20074579 23 11.520191 Anserini +test1070 Q0 5296642 24 11.494034 Anserini +test1070 Q0 19557604 25 11.401418 Anserini +test1070 Q0 19557605 26 11.401418 Anserini +test1070 Q0 2122534 27 11.400648 Anserini +test1070 Q0 6160733 28 11.383791 Anserini +test1070 Q0 19614750 29 11.307308 Anserini +test1070 Q0 12452067 30 11.284254 Anserini +test1071 Q0 12160942 1 13.977480 Anserini +test1071 Q0 14290726 2 12.856174 Anserini +test1071 Q0 3410216 3 12.391563 Anserini +test1071 Q0 4264786 4 11.897810 Anserini +test1071 Q0 8117712 5 11.891335 Anserini +test1071 Q0 18244147 6 11.544113 Anserini +test1071 Q0 4982892 7 11.483542 Anserini +test1071 Q0 12854231 8 11.428511 Anserini +test1071 Q0 1172268 9 10.985739 Anserini +test1071 Q0 2694068 10 10.973992 Anserini +test1071 Q0 2890206 11 10.772435 Anserini +test1071 Q0 1172251 12 10.753077 Anserini +test1071 Q0 4982925 13 10.650723 Anserini +test1071 Q0 4982818 14 10.648024 Anserini +test1071 Q0 8117715 15 10.600780 Anserini +test1071 Q0 3410224 16 10.582563 Anserini +test1071 Q0 4972999 17 10.453733 Anserini +test1071 Q0 4973013 18 10.453733 Anserini +test1071 Q0 6292372 19 10.382327 Anserini +test1071 Q0 12160939 20 10.345644 Anserini +test1071 Q0 2683060 21 10.329662 Anserini +test1071 Q0 2683043 22 10.290988 Anserini +test1071 Q0 4982801 23 10.290988 Anserini +test1071 Q0 11428561 24 10.276577 Anserini +test1071 Q0 4982891 25 10.253886 Anserini +test1071 Q0 3410240 26 10.178434 Anserini +test1071 Q0 8117714 27 10.173707 Anserini +test1071 Q0 19658489 28 10.169523 Anserini +test1071 Q0 3410241 29 10.091152 Anserini +test1071 Q0 4982803 30 10.087162 Anserini +test1072 Q0 13544798 1 20.301044 Anserini +test1072 Q0 8588064 2 18.883209 Anserini +test1072 Q0 4271705 3 18.832010 Anserini +test1072 Q0 698109 4 18.692965 Anserini +test1072 Q0 10859213 5 18.650400 Anserini +test1072 Q0 8588045 6 18.403643 Anserini +test1072 Q0 4171634 7 18.077621 Anserini +test1072 Q0 7642032 8 17.947027 Anserini +test1072 Q0 4342363 9 17.912388 Anserini +test1072 Q0 13724696 10 17.851629 Anserini +test1072 Q0 4341785 11 17.735201 Anserini +test1072 Q0 4169781 12 17.691660 Anserini +test1072 Q0 4342266 13 17.667318 Anserini +test1072 Q0 14804440 14 17.631290 Anserini +test1072 Q0 8588049 15 17.525513 Anserini +test1072 Q0 10858553 16 17.408915 Anserini +test1072 Q0 3798150 17 17.397743 Anserini +test1072 Q0 4341588 18 17.387152 Anserini +test1072 Q0 13544763 19 17.376041 Anserini +test1072 Q0 4342362 20 17.335623 Anserini +test1072 Q0 10316342 21 17.276711 Anserini +test1072 Q0 4341771 22 17.216927 Anserini +test1072 Q0 2625882 23 17.171209 Anserini +test1072 Q0 8588051 24 17.093592 Anserini +test1072 Q0 4341596 25 17.059261 Anserini +test1072 Q0 4342377 26 17.015493 Anserini +test1072 Q0 14643469 27 16.922390 Anserini +test1072 Q0 7611311 28 16.920252 Anserini +test1072 Q0 13544799 29 16.910185 Anserini +test1072 Q0 4342317 30 16.886292 Anserini +test1073 Q0 8717499 1 9.452204 Anserini +test1073 Q0 15328622 2 9.452204 Anserini +test1073 Q0 15332761 3 9.452204 Anserini +test1073 Q0 17264062 4 9.341741 Anserini +test1073 Q0 17776945 5 9.322818 Anserini +test1073 Q0 8443733 6 9.248558 Anserini +test1073 Q0 15980800 7 9.075134 Anserini +test1073 Q0 3718982 8 9.067416 Anserini +test1073 Q0 18942045 9 9.052657 Anserini +test1073 Q0 18942046 10 9.052657 Anserini +test1073 Q0 3633618 11 9.020250 Anserini +test1073 Q0 3633509 12 9.003486 Anserini +test1073 Q0 531053 13 8.964339 Anserini +test1073 Q0 4060407 14 8.908422 Anserini +test1073 Q0 9152308 15 8.898728 Anserini +test1073 Q0 15714236 16 8.888071 Anserini +test1073 Q0 298706 17 8.798043 Anserini +test1073 Q0 3554471 18 8.753342 Anserini +test1073 Q0 10830927 19 8.753342 Anserini +test1073 Q0 18913698 20 8.742308 Anserini +test1073 Q0 3729839 21 8.736240 Anserini +test1073 Q0 4782014 22 8.721445 Anserini +test1073 Q0 16720649 23 8.684617 Anserini +test1073 Q0 16726387 24 8.684617 Anserini +test1073 Q0 11452090 25 8.684617 Anserini +test1073 Q0 16718491 26 8.684617 Anserini +test1073 Q0 12863257 27 8.684617 Anserini +test1073 Q0 19932675 28 8.671801 Anserini +test1073 Q0 12077674 29 8.616251 Anserini +test1073 Q0 8665117 30 8.610535 Anserini +test1074 Q0 3848372 1 17.165546 Anserini +test1074 Q0 3848360 2 16.476854 Anserini +test1074 Q0 3848371 3 15.598742 Anserini +test1074 Q0 13505217 4 14.948398 Anserini +test1074 Q0 3848376 5 14.733772 Anserini +test1074 Q0 3848361 6 14.610077 Anserini +test1074 Q0 12960463 7 14.593859 Anserini +test1074 Q0 18291914 8 14.544474 Anserini +test1074 Q0 6001791 9 14.535550 Anserini +test1074 Q0 16739090 10 14.522056 Anserini +test1074 Q0 16739095 11 14.522056 Anserini +test1074 Q0 12960471 12 14.450211 Anserini +test1074 Q0 10915826 13 14.111527 Anserini +test1074 Q0 3848381 14 14.004932 Anserini +test1074 Q0 3848380 15 13.905636 Anserini +test1074 Q0 4226133 16 13.893043 Anserini +test1074 Q0 9976945 17 13.852554 Anserini +test1074 Q0 13914799 18 13.775547 Anserini +test1074 Q0 12815659 19 13.743710 Anserini +test1074 Q0 15260029 20 13.689813 Anserini +test1074 Q0 8936295 21 13.672105 Anserini +test1074 Q0 15189658 22 13.579396 Anserini +test1074 Q0 11448644 23 13.553128 Anserini +test1074 Q0 16836296 24 13.524607 Anserini +test1074 Q0 3848379 25 13.500957 Anserini +test1074 Q0 6001787 26 13.474410 Anserini +test1074 Q0 16652102 27 13.472246 Anserini +test1074 Q0 15391653 28 13.469088 Anserini +test1074 Q0 10915821 29 13.413353 Anserini +test1074 Q0 14110800 30 13.089864 Anserini +test1075 Q0 11813778 1 10.997601 Anserini +test1075 Q0 12156293 2 10.872520 Anserini +test1075 Q0 12074851 3 10.411080 Anserini +test1075 Q0 18046959 4 10.411020 Anserini +test1075 Q0 15719846 5 10.394961 Anserini +test1075 Q0 5320763 6 10.085485 Anserini +test1075 Q0 14850840 7 9.969023 Anserini +test1075 Q0 17765530 8 9.880190 Anserini +test1075 Q0 6808794 9 9.829549 Anserini +test1075 Q0 13352947 10 9.700669 Anserini +test1075 Q0 17765517 11 9.656543 Anserini +test1075 Q0 14850845 12 9.628326 Anserini +test1075 Q0 8167035 13 9.620150 Anserini +test1075 Q0 5320774 14 9.498688 Anserini +test1075 Q0 17765510 15 9.323855 Anserini +test1075 Q0 17765512 16 9.323855 Anserini +test1075 Q0 18207531 17 9.309810 Anserini +test1075 Q0 17765506 18 9.279515 Anserini +test1075 Q0 15719847 19 9.210740 Anserini +test1075 Q0 16281061 20 9.168839 Anserini +test1075 Q0 17765509 21 9.166874 Anserini +test1075 Q0 17765511 22 9.166874 Anserini +test1075 Q0 19220607 23 9.132929 Anserini +test1075 Q0 11813800 24 9.111630 Anserini +test1075 Q0 9408561 25 9.078811 Anserini +test1075 Q0 19302993 26 9.056108 Anserini +test1075 Q0 9103450 27 9.033236 Anserini +test1075 Q0 17121613 28 8.977479 Anserini +test1075 Q0 1934499 29 8.972231 Anserini +test1075 Q0 6606107 30 8.930496 Anserini +test1076 Q0 14422484 1 16.615295 Anserini +test1076 Q0 14422489 2 16.349131 Anserini +test1076 Q0 8394044 3 14.373808 Anserini +test1076 Q0 8394055 4 14.373808 Anserini +test1076 Q0 8394049 5 13.874912 Anserini +test1076 Q0 14422486 6 13.860071 Anserini +test1076 Q0 8394046 7 13.595763 Anserini +test1076 Q0 11915719 8 13.569503 Anserini +test1076 Q0 12064112 9 13.243038 Anserini +test1076 Q0 10976977 10 13.029598 Anserini +test1076 Q0 10976968 11 12.953864 Anserini +test1076 Q0 7086875 12 12.945310 Anserini +test1076 Q0 1755773 13 12.945310 Anserini +test1076 Q0 8394045 14 12.912796 Anserini +test1076 Q0 1448690 15 12.706637 Anserini +test1076 Q0 1448677 16 12.248706 Anserini +test1076 Q0 8394054 17 12.227671 Anserini +test1076 Q0 14422488 18 12.143336 Anserini +test1076 Q0 6937505 19 12.078048 Anserini +test1076 Q0 14422487 20 12.060157 Anserini +test1076 Q0 10008022 21 12.037354 Anserini +test1076 Q0 7881617 22 11.983468 Anserini +test1076 Q0 471540 23 11.935267 Anserini +test1076 Q0 20377369 24 11.887202 Anserini +test1076 Q0 20377370 25 11.887202 Anserini +test1076 Q0 14422485 26 11.820805 Anserini +test1076 Q0 9822582 27 11.750336 Anserini +test1076 Q0 8394053 28 11.634265 Anserini +test1076 Q0 8394052 29 11.569466 Anserini +test1076 Q0 4870816 30 11.552412 Anserini +test1077 Q0 7048850 1 12.246065 Anserini +test1077 Q0 19095970 2 11.384150 Anserini +test1077 Q0 19571025 3 11.020092 Anserini +test1077 Q0 19158928 4 10.779085 Anserini +test1077 Q0 18728673 5 10.504254 Anserini +test1077 Q0 14229541 6 10.478998 Anserini +test1077 Q0 4817732 7 10.458554 Anserini +test1077 Q0 17194309 8 10.347720 Anserini +test1077 Q0 5625025 9 10.337427 Anserini +test1077 Q0 12344389 10 10.324703 Anserini +test1077 Q0 13219898 11 10.324703 Anserini +test1077 Q0 9183482 12 10.322588 Anserini +test1077 Q0 2837128 13 10.248693 Anserini +test1077 Q0 5998460 14 10.223525 Anserini +test1077 Q0 11926353 15 10.216015 Anserini +test1077 Q0 11677691 16 10.155835 Anserini +test1077 Q0 10054118 17 10.124394 Anserini +test1077 Q0 6537772 18 10.041515 Anserini +test1077 Q0 8764548 19 10.035069 Anserini +test1077 Q0 8126443 20 10.023934 Anserini +test1077 Q0 13219901 21 10.005361 Anserini +test1077 Q0 14645895 22 9.961596 Anserini +test1077 Q0 6770946 23 9.943675 Anserini +test1077 Q0 15963706 24 9.943669 Anserini +test1077 Q0 11061967 25 9.942653 Anserini +test1077 Q0 8774343 26 9.928880 Anserini +test1077 Q0 8927879 27 9.920548 Anserini +test1077 Q0 10206543 28 9.913090 Anserini +test1077 Q0 8872958 29 9.864369 Anserini +test1077 Q0 16978423 30 9.862707 Anserini +test1078 Q0 10950326 1 11.746712 Anserini +test1078 Q0 2970970 2 10.856564 Anserini +test1078 Q0 18641318 3 10.672299 Anserini +test1078 Q0 11311411 4 10.593044 Anserini +test1078 Q0 17522178 5 10.530484 Anserini +test1078 Q0 18368832 6 10.484845 Anserini +test1078 Q0 17538021 7 10.407026 Anserini +test1078 Q0 18146285 8 10.301360 Anserini +test1078 Q0 3518985 9 10.266543 Anserini +test1078 Q0 3774633 10 10.181628 Anserini +test1078 Q0 12496848 11 10.131508 Anserini +test1078 Q0 10026807 12 10.091096 Anserini +test1078 Q0 12496845 13 10.069662 Anserini +test1078 Q0 6962509 14 10.058972 Anserini +test1078 Q0 2073433 15 10.043367 Anserini +test1078 Q0 19889076 16 10.030472 Anserini +test1078 Q0 2978985 17 10.018211 Anserini +test1078 Q0 18641585 18 9.987835 Anserini +test1078 Q0 596168 19 9.951654 Anserini +test1078 Q0 12408137 20 9.949624 Anserini +test1078 Q0 1946815 21 9.815626 Anserini +test1078 Q0 17538016 22 9.805342 Anserini +test1078 Q0 19262936 23 9.768644 Anserini +test1078 Q0 2508375 24 9.762951 Anserini +test1078 Q0 18641577 25 9.708437 Anserini +test1078 Q0 753395 26 9.708437 Anserini +test1078 Q0 18861772 27 9.706102 Anserini +test1078 Q0 13552512 28 9.699220 Anserini +test1078 Q0 13562074 29 9.618991 Anserini +test1078 Q0 753418 30 9.618991 Anserini +test1079 Q0 14070097 1 13.891876 Anserini +test1079 Q0 11732978 2 13.627147 Anserini +test1079 Q0 14070106 3 13.475616 Anserini +test1079 Q0 12398595 4 13.205415 Anserini +test1079 Q0 20680099 5 13.027518 Anserini +test1079 Q0 14070099 6 12.614093 Anserini +test1079 Q0 20333406 7 12.347573 Anserini +test1079 Q0 17385927 8 12.335810 Anserini +test1079 Q0 19317675 9 12.242310 Anserini +test1079 Q0 14307087 10 12.185696 Anserini +test1079 Q0 14307127 11 12.151895 Anserini +test1079 Q0 20333405 12 12.146455 Anserini +test1079 Q0 17046399 13 12.090847 Anserini +test1079 Q0 13618981 14 12.067451 Anserini +test1079 Q0 14307091 15 12.004260 Anserini +test1079 Q0 9444345 16 11.974882 Anserini +test1079 Q0 14070103 17 11.827869 Anserini +test1079 Q0 2541374 18 11.817590 Anserini +test1079 Q0 15349270 19 11.793226 Anserini +test1079 Q0 14307088 20 11.690464 Anserini +test1079 Q0 14307117 21 11.685167 Anserini +test1079 Q0 14477855 22 11.685167 Anserini +test1079 Q0 18237969 23 11.477193 Anserini +test1079 Q0 14307103 24 11.378350 Anserini +test1079 Q0 14307106 25 11.359427 Anserini +test1079 Q0 14307096 26 11.334949 Anserini +test1079 Q0 18775008 27 11.309978 Anserini +test1079 Q0 12024569 28 11.307654 Anserini +test1079 Q0 16629117 29 11.307654 Anserini +test1079 Q0 4868914 30 11.306464 Anserini +test108 Q0 5099625 1 15.851112 Anserini +test108 Q0 16887215 2 14.563931 Anserini +test108 Q0 17675355 3 14.324286 Anserini +test108 Q0 14929322 4 14.324286 Anserini +test108 Q0 8943893 5 14.265959 Anserini +test108 Q0 14929314 6 13.726833 Anserini +test108 Q0 14929265 7 12.949022 Anserini +test108 Q0 14929341 8 12.949022 Anserini +test108 Q0 14929338 9 12.896166 Anserini +test108 Q0 9455332 10 12.843739 Anserini +test108 Q0 3625239 11 12.767394 Anserini +test108 Q0 14929344 12 12.673172 Anserini +test108 Q0 14929279 13 12.633330 Anserini +test108 Q0 18001832 14 12.632416 Anserini +test108 Q0 17549360 15 12.616637 Anserini +test108 Q0 14929290 16 12.616637 Anserini +test108 Q0 16319841 17 12.497142 Anserini +test108 Q0 14929339 18 12.497142 Anserini +test108 Q0 14929311 19 12.490633 Anserini +test108 Q0 16502392 20 12.391123 Anserini +test108 Q0 14929315 21 12.391123 Anserini +test108 Q0 17549358 22 12.342029 Anserini +test108 Q0 20795679 23 12.278075 Anserini +test108 Q0 14929340 24 12.278075 Anserini +test108 Q0 14929342 25 12.278075 Anserini +test108 Q0 17765374 26 12.267855 Anserini +test108 Q0 17549361 27 12.214782 Anserini +test108 Q0 14929305 28 12.214782 Anserini +test108 Q0 14929318 29 12.214782 Anserini +test108 Q0 17267129 30 12.212030 Anserini +test1080 Q0 15318573 1 12.091589 Anserini +test1080 Q0 14630954 2 11.827981 Anserini +test1080 Q0 15318530 3 11.826389 Anserini +test1080 Q0 10077134 4 11.789042 Anserini +test1080 Q0 2823613 5 11.781937 Anserini +test1080 Q0 10077139 6 11.768937 Anserini +test1080 Q0 16593185 7 11.618196 Anserini +test1080 Q0 402436 8 11.572983 Anserini +test1080 Q0 14340944 9 11.461827 Anserini +test1080 Q0 9279700 10 11.459229 Anserini +test1080 Q0 1963212 11 11.439311 Anserini +test1080 Q0 15312886 12 11.247492 Anserini +test1080 Q0 11673350 13 11.229250 Anserini +test1080 Q0 10077145 14 11.223869 Anserini +test1080 Q0 10980756 15 11.217624 Anserini +test1080 Q0 8157956 16 11.210312 Anserini +test1080 Q0 15312872 17 11.181411 Anserini +test1080 Q0 10077137 18 11.145034 Anserini +test1080 Q0 10077135 19 11.122535 Anserini +test1080 Q0 10077142 20 11.106938 Anserini +test1080 Q0 14340948 21 11.089780 Anserini +test1080 Q0 15695695 22 11.089239 Anserini +test1080 Q0 9280191 23 11.074832 Anserini +test1080 Q0 14720994 24 11.049577 Anserini +test1080 Q0 20679224 25 11.023350 Anserini +test1080 Q0 16520266 26 10.967572 Anserini +test1080 Q0 13350919 27 10.957562 Anserini +test1080 Q0 10077133 28 10.935816 Anserini +test1080 Q0 10304848 29 10.895529 Anserini +test1080 Q0 16973924 30 10.888887 Anserini +test1081 Q0 16582711 1 16.414787 Anserini +test1081 Q0 18640409 2 16.065899 Anserini +test1081 Q0 2558708 3 15.093254 Anserini +test1081 Q0 18619332 4 14.926454 Anserini +test1081 Q0 16582714 5 14.897067 Anserini +test1081 Q0 16770195 6 14.359678 Anserini +test1081 Q0 2558711 7 13.756907 Anserini +test1081 Q0 18603758 8 13.569947 Anserini +test1081 Q0 18640407 9 13.545447 Anserini +test1081 Q0 18640410 10 13.405346 Anserini +test1081 Q0 19798693 11 13.308573 Anserini +test1081 Q0 18729155 12 13.263028 Anserini +test1081 Q0 18729146 13 13.180465 Anserini +test1081 Q0 18686222 14 13.180465 Anserini +test1081 Q0 2558689 15 13.180373 Anserini +test1081 Q0 18640408 16 13.112475 Anserini +test1081 Q0 18452166 17 13.014266 Anserini +test1081 Q0 18452148 18 12.909612 Anserini +test1081 Q0 5605645 19 12.755565 Anserini +test1081 Q0 18744283 20 12.736937 Anserini +test1081 Q0 18699998 21 12.705812 Anserini +test1081 Q0 18603760 22 12.630006 Anserini +test1081 Q0 18686227 23 12.568970 Anserini +test1081 Q0 15944080 24 12.485641 Anserini +test1081 Q0 18744282 25 12.470657 Anserini +test1081 Q0 19078574 26 12.403645 Anserini +test1081 Q0 18686224 27 12.389787 Anserini +test1081 Q0 18640411 28 12.252305 Anserini +test1081 Q0 18729152 29 12.252305 Anserini +test1081 Q0 16168550 30 12.225506 Anserini +test1082 Q0 3392093 1 14.367304 Anserini +test1082 Q0 5413360 2 14.222285 Anserini +test1082 Q0 5413338 3 13.588502 Anserini +test1082 Q0 5413370 4 13.499567 Anserini +test1082 Q0 4512998 5 13.470501 Anserini +test1082 Q0 9883816 6 13.437829 Anserini +test1082 Q0 5413340 7 13.365773 Anserini +test1082 Q0 1835986 8 13.325374 Anserini +test1082 Q0 5413344 9 13.307424 Anserini +test1082 Q0 9883807 10 13.171612 Anserini +test1082 Q0 6249094 11 13.068948 Anserini +test1082 Q0 5413339 12 12.807665 Anserini +test1082 Q0 4512985 13 12.782915 Anserini +test1082 Q0 1828050 14 12.743937 Anserini +test1082 Q0 1836000 15 12.643264 Anserini +test1082 Q0 1744421 16 12.611709 Anserini +test1082 Q0 3350194 17 12.604507 Anserini +test1082 Q0 3350209 18 12.594877 Anserini +test1082 Q0 11008495 19 12.335401 Anserini +test1082 Q0 2166856 20 12.331285 Anserini +test1082 Q0 5413355 21 12.308808 Anserini +test1082 Q0 11392599 22 12.276180 Anserini +test1082 Q0 410925 23 12.244508 Anserini +test1082 Q0 16082834 24 12.240767 Anserini +test1082 Q0 3350192 25 12.189070 Anserini +test1082 Q0 1835976 26 12.136059 Anserini +test1082 Q0 3350185 27 12.120234 Anserini +test1082 Q0 9213257 28 12.109960 Anserini +test1082 Q0 3392104 29 12.093754 Anserini +test1082 Q0 18454563 30 12.091814 Anserini +test1083 Q0 1925644 1 28.812174 Anserini +test1083 Q0 1925652 2 27.919224 Anserini +test1083 Q0 1925651 3 27.687706 Anserini +test1083 Q0 61362 4 25.521479 Anserini +test1083 Q0 1925650 5 25.092150 Anserini +test1083 Q0 4052766 6 23.995272 Anserini +test1083 Q0 2908210 7 23.766466 Anserini +test1083 Q0 1925646 8 23.132080 Anserini +test1083 Q0 124525 9 22.965439 Anserini +test1083 Q0 280093 10 22.919924 Anserini +test1083 Q0 124522 11 22.449524 Anserini +test1083 Q0 2530727 12 21.627964 Anserini +test1083 Q0 1925647 13 21.611309 Anserini +test1083 Q0 12837262 14 21.238960 Anserini +test1083 Q0 1925648 15 21.108740 Anserini +test1083 Q0 12837271 16 20.973410 Anserini +test1083 Q0 4244938 17 20.723265 Anserini +test1083 Q0 1925653 18 20.503702 Anserini +test1083 Q0 4789150 19 20.357807 Anserini +test1083 Q0 12981524 20 20.311134 Anserini +test1083 Q0 767950 21 20.206102 Anserini +test1083 Q0 12981523 22 20.114544 Anserini +test1083 Q0 34586 23 19.985170 Anserini +test1083 Q0 280101 24 19.899420 Anserini +test1083 Q0 6420122 25 19.813108 Anserini +test1083 Q0 561395 26 19.633011 Anserini +test1083 Q0 10810918 27 19.391457 Anserini +test1083 Q0 16128166 28 19.389290 Anserini +test1083 Q0 280111 29 19.327419 Anserini +test1083 Q0 4125013 30 19.114437 Anserini +test1084 Q0 5869492 1 10.201813 Anserini +test1084 Q0 2418105 2 10.084673 Anserini +test1084 Q0 4602320 3 10.066034 Anserini +test1084 Q0 6523396 4 10.055989 Anserini +test1084 Q0 7134677 5 10.038033 Anserini +test1084 Q0 12298438 6 9.975110 Anserini +test1084 Q0 4602331 7 9.915814 Anserini +test1084 Q0 2422644 8 9.690819 Anserini +test1084 Q0 16136768 9 9.668540 Anserini +test1084 Q0 3284562 10 9.609268 Anserini +test1084 Q0 9718194 11 9.508842 Anserini +test1084 Q0 16310413 12 9.445307 Anserini +test1084 Q0 11540593 13 9.442604 Anserini +test1084 Q0 9718197 14 9.441027 Anserini +test1084 Q0 8466171 15 9.435394 Anserini +test1084 Q0 19883760 16 9.427159 Anserini +test1084 Q0 1487215 17 9.425711 Anserini +test1084 Q0 6883150 18 9.387888 Anserini +test1084 Q0 10616069 19 9.369810 Anserini +test1084 Q0 6375333 20 9.355839 Anserini +test1084 Q0 12237589 21 9.339055 Anserini +test1084 Q0 11615422 22 9.317178 Anserini +test1084 Q0 11713461 23 9.287822 Anserini +test1084 Q0 1249530 24 9.158806 Anserini +test1084 Q0 6523394 25 9.148617 Anserini +test1084 Q0 103904 26 9.061364 Anserini +test1084 Q0 1019974 27 8.992627 Anserini +test1084 Q0 17460053 28 8.965976 Anserini +test1084 Q0 8709358 29 8.965976 Anserini +test1084 Q0 12271483 30 8.952703 Anserini +test1085 Q0 15108051 1 16.398743 Anserini +test1085 Q0 16355692 2 14.601287 Anserini +test1085 Q0 16889878 3 14.229530 Anserini +test1085 Q0 20458093 4 14.140046 Anserini +test1085 Q0 16887329 5 13.959325 Anserini +test1085 Q0 18290673 6 13.904605 Anserini +test1085 Q0 16851049 7 13.851843 Anserini +test1085 Q0 16078008 8 13.829712 Anserini +test1085 Q0 17304448 9 13.788931 Anserini +test1085 Q0 17589384 10 13.776468 Anserini +test1085 Q0 16898903 11 13.598912 Anserini +test1085 Q0 18334053 12 13.479510 Anserini +test1085 Q0 15108088 13 13.475609 Anserini +test1085 Q0 16851022 14 13.466346 Anserini +test1085 Q0 17207402 15 13.430452 Anserini +test1085 Q0 16355689 16 13.375348 Anserini +test1085 Q0 17311069 17 13.299615 Anserini +test1085 Q0 18636070 18 13.256639 Anserini +test1085 Q0 16851043 19 13.145610 Anserini +test1085 Q0 18564008 20 13.144168 Anserini +test1085 Q0 15108058 21 13.139051 Anserini +test1085 Q0 18644321 22 13.067621 Anserini +test1085 Q0 20360951 23 12.917862 Anserini +test1085 Q0 20620892 24 12.903604 Anserini +test1085 Q0 16355611 25 12.885899 Anserini +test1085 Q0 15108059 26 12.745576 Anserini +test1085 Q0 17733010 27 12.735069 Anserini +test1085 Q0 17195582 28 12.651361 Anserini +test1085 Q0 15108077 29 12.611581 Anserini +test1085 Q0 17733018 30 12.604680 Anserini +test1086 Q0 14208570 1 19.961016 Anserini +test1086 Q0 16342250 2 18.096977 Anserini +test1086 Q0 16463457 3 17.933241 Anserini +test1086 Q0 18780922 4 17.624807 Anserini +test1086 Q0 14208554 5 17.476656 Anserini +test1086 Q0 13600779 6 17.396425 Anserini +test1086 Q0 14208548 7 16.857029 Anserini +test1086 Q0 16342248 8 16.353523 Anserini +test1086 Q0 16463453 9 16.332762 Anserini +test1086 Q0 13600769 10 16.192602 Anserini +test1086 Q0 14611998 11 16.153252 Anserini +test1086 Q0 14611988 12 16.086191 Anserini +test1086 Q0 15092896 13 15.927444 Anserini +test1086 Q0 13600774 14 15.854963 Anserini +test1086 Q0 17714480 15 15.764989 Anserini +test1086 Q0 14208556 16 15.702542 Anserini +test1086 Q0 14454057 17 15.636795 Anserini +test1086 Q0 14611983 18 15.593721 Anserini +test1086 Q0 10017514 19 15.479240 Anserini +test1086 Q0 16614299 20 15.368530 Anserini +test1086 Q0 17716345 21 15.368490 Anserini +test1086 Q0 14208552 22 15.169849 Anserini +test1086 Q0 14208567 23 14.995515 Anserini +test1086 Q0 14208568 24 14.831568 Anserini +test1086 Q0 14208562 25 14.731293 Anserini +test1086 Q0 14454045 26 14.702259 Anserini +test1086 Q0 14352098 27 14.696549 Anserini +test1086 Q0 16842820 28 14.694544 Anserini +test1086 Q0 16342268 29 14.681318 Anserini +test1086 Q0 14454056 30 14.663321 Anserini +test1087 Q0 2424145 1 17.878338 Anserini +test1087 Q0 5282247 2 17.797834 Anserini +test1087 Q0 8053364 3 17.534935 Anserini +test1087 Q0 18553298 4 17.430996 Anserini +test1087 Q0 8079181 5 17.364719 Anserini +test1087 Q0 8079192 6 17.364719 Anserini +test1087 Q0 11174635 7 17.329805 Anserini +test1087 Q0 8316033 8 17.246914 Anserini +test1087 Q0 6915993 9 17.213285 Anserini +test1087 Q0 20071633 10 17.212976 Anserini +test1087 Q0 8316073 11 17.191824 Anserini +test1087 Q0 6915952 12 17.175852 Anserini +test1087 Q0 4187287 13 17.171791 Anserini +test1087 Q0 8053367 14 17.151056 Anserini +test1087 Q0 7426413 15 17.126076 Anserini +test1087 Q0 18820345 16 17.074596 Anserini +test1087 Q0 5282276 17 17.055687 Anserini +test1087 Q0 3790098 18 17.014330 Anserini +test1087 Q0 1824927 19 16.950668 Anserini +test1087 Q0 15974794 20 16.950668 Anserini +test1087 Q0 20071645 21 16.890038 Anserini +test1087 Q0 1208697 22 16.829073 Anserini +test1087 Q0 11174672 23 16.826063 Anserini +test1087 Q0 2679607 24 16.814322 Anserini +test1087 Q0 18192826 25 16.755501 Anserini +test1087 Q0 17628855 26 16.733139 Anserini +test1087 Q0 12123634 27 16.705612 Anserini +test1087 Q0 5282256 28 16.683237 Anserini +test1087 Q0 13805365 29 16.680822 Anserini +test1087 Q0 17816315 30 16.654337 Anserini +test1088 Q0 15687625 1 20.259630 Anserini +test1088 Q0 15687629 2 18.864754 Anserini +test1088 Q0 6744766 3 18.338041 Anserini +test1088 Q0 17752409 4 18.077906 Anserini +test1088 Q0 17752424 5 18.077906 Anserini +test1088 Q0 6744760 6 17.498556 Anserini +test1088 Q0 9969281 7 16.402128 Anserini +test1088 Q0 9969280 8 16.195721 Anserini +test1088 Q0 17752422 9 15.918983 Anserini +test1088 Q0 6997838 10 14.384586 Anserini +test1088 Q0 15687627 11 14.266996 Anserini +test1088 Q0 1406492 12 14.231963 Anserini +test1088 Q0 788179 13 14.187093 Anserini +test1088 Q0 15687628 14 14.129377 Anserini +test1088 Q0 17752423 15 14.100278 Anserini +test1088 Q0 6744765 16 13.896190 Anserini +test1088 Q0 11075531 17 13.770475 Anserini +test1088 Q0 1406485 18 13.607559 Anserini +test1088 Q0 2418192 19 13.548883 Anserini +test1088 Q0 7308343 20 13.537289 Anserini +test1088 Q0 15245472 21 13.429840 Anserini +test1088 Q0 421763 22 13.376347 Anserini +test1088 Q0 4449432 23 13.328671 Anserini +test1088 Q0 8744703 24 13.218702 Anserini +test1088 Q0 1466157 25 13.218702 Anserini +test1088 Q0 18383438 26 13.211398 Anserini +test1088 Q0 2061477 27 13.182665 Anserini +test1088 Q0 2061495 28 13.182665 Anserini +test1088 Q0 1532104 29 13.175633 Anserini +test1088 Q0 2061492 30 13.158977 Anserini +test1089 Q0 5834407 1 36.676128 Anserini +test1089 Q0 5834413 2 34.343578 Anserini +test1089 Q0 12582529 3 29.801319 Anserini +test1089 Q0 14297491 4 25.634628 Anserini +test1089 Q0 17399684 5 25.515894 Anserini +test1089 Q0 12582528 6 23.327200 Anserini +test1089 Q0 18340616 7 23.200344 Anserini +test1089 Q0 8357217 8 21.014874 Anserini +test1089 Q0 5834412 9 20.802738 Anserini +test1089 Q0 10484311 10 20.551224 Anserini +test1089 Q0 18535932 11 20.453730 Anserini +test1089 Q0 16226956 12 20.453730 Anserini +test1089 Q0 5834409 13 20.391220 Anserini +test1089 Q0 19878521 14 20.011717 Anserini +test1089 Q0 16300703 15 19.959961 Anserini +test1089 Q0 16300705 16 19.902267 Anserini +test1089 Q0 19867007 17 19.835285 Anserini +test1089 Q0 19817767 18 19.835285 Anserini +test1089 Q0 5834410 19 19.783401 Anserini +test1089 Q0 4733082 20 19.757744 Anserini +test1089 Q0 17958354 21 19.751322 Anserini +test1089 Q0 12639451 22 19.637709 Anserini +test1089 Q0 19801754 23 19.612766 Anserini +test1089 Q0 19796238 24 19.612766 Anserini +test1089 Q0 11425613 25 19.573614 Anserini +test1089 Q0 20391300 26 19.512913 Anserini +test1089 Q0 4733086 27 19.504816 Anserini +test1089 Q0 18548492 28 19.409552 Anserini +test1089 Q0 19878526 29 19.345024 Anserini +test1089 Q0 8571118 30 19.333385 Anserini +test109 Q0 999837 1 22.187460 Anserini +test109 Q0 8399433 2 21.933989 Anserini +test109 Q0 999844 3 21.236464 Anserini +test109 Q0 8399436 4 20.783131 Anserini +test109 Q0 999862 5 20.701731 Anserini +test109 Q0 17233055 6 20.297167 Anserini +test109 Q0 8399432 7 20.047607 Anserini +test109 Q0 2814513 8 20.008076 Anserini +test109 Q0 1568348 9 19.837383 Anserini +test109 Q0 5444651 10 19.723034 Anserini +test109 Q0 111861 11 19.401333 Anserini +test109 Q0 8399439 12 19.115063 Anserini +test109 Q0 999846 13 18.984056 Anserini +test109 Q0 999849 14 18.848955 Anserini +test109 Q0 111855 15 18.294273 Anserini +test109 Q0 5898219 16 18.148893 Anserini +test109 Q0 999845 17 18.003557 Anserini +test109 Q0 2758570 18 17.975601 Anserini +test109 Q0 17668052 19 17.879793 Anserini +test109 Q0 2945082 20 17.831322 Anserini +test109 Q0 8399434 21 17.819912 Anserini +test109 Q0 13466915 22 17.526440 Anserini +test109 Q0 999851 23 17.499527 Anserini +test109 Q0 3982734 24 17.433199 Anserini +test109 Q0 10085896 25 17.329779 Anserini +test109 Q0 10118587 26 17.278162 Anserini +test109 Q0 11293464 27 17.263542 Anserini +test109 Q0 999852 28 17.197264 Anserini +test109 Q0 6357312 29 17.173046 Anserini +test109 Q0 10118588 30 17.064760 Anserini +test1090 Q0 77707 1 23.044922 Anserini +test1090 Q0 484578 2 20.243149 Anserini +test1090 Q0 13539442 3 20.239664 Anserini +test1090 Q0 1925654 4 20.005253 Anserini +test1090 Q0 8898227 5 19.791258 Anserini +test1090 Q0 13804203 6 19.776714 Anserini +test1090 Q0 18548571 7 19.703629 Anserini +test1090 Q0 10473 8 19.464025 Anserini +test1090 Q0 8860494 9 19.448374 Anserini +test1090 Q0 126710 10 19.190557 Anserini +test1090 Q0 261764 11 19.147587 Anserini +test1090 Q0 2282044 12 18.967571 Anserini +test1090 Q0 5764186 13 18.831484 Anserini +test1090 Q0 13804202 14 18.782505 Anserini +test1090 Q0 61348 15 18.615597 Anserini +test1090 Q0 11209251 16 18.530224 Anserini +test1090 Q0 561396 17 18.405485 Anserini +test1090 Q0 77712 18 18.331970 Anserini +test1090 Q0 5764187 19 18.327044 Anserini +test1090 Q0 561392 20 18.315342 Anserini +test1090 Q0 3050020 21 18.308397 Anserini +test1090 Q0 77714 22 18.213669 Anserini +test1090 Q0 8395502 23 18.154068 Anserini +test1090 Q0 2908212 24 18.128670 Anserini +test1090 Q0 74797 25 18.093527 Anserini +test1090 Q0 7109935 26 18.090097 Anserini +test1090 Q0 77706 27 18.076563 Anserini +test1090 Q0 4151409 28 18.042988 Anserini +test1090 Q0 8053468 29 17.911469 Anserini +test1090 Q0 2960167 30 17.886225 Anserini +test1091 Q0 1932352 1 16.074102 Anserini +test1091 Q0 1932344 2 15.600974 Anserini +test1091 Q0 1932346 3 15.542448 Anserini +test1091 Q0 1932348 4 15.332963 Anserini +test1091 Q0 1932345 5 15.231928 Anserini +test1091 Q0 1932357 6 15.156450 Anserini +test1091 Q0 8592773 7 15.082378 Anserini +test1091 Q0 4153949 8 14.842479 Anserini +test1091 Q0 20470998 9 14.740498 Anserini +test1091 Q0 11105571 10 14.619027 Anserini +test1091 Q0 1001209 11 14.156546 Anserini +test1091 Q0 7481801 12 14.152040 Anserini +test1091 Q0 7481783 13 14.065708 Anserini +test1091 Q0 4654423 14 14.056861 Anserini +test1091 Q0 4839825 15 13.993917 Anserini +test1091 Q0 11219895 16 13.993917 Anserini +test1091 Q0 11124270 17 13.854883 Anserini +test1091 Q0 7609830 18 13.820181 Anserini +test1091 Q0 1932361 19 13.791061 Anserini +test1091 Q0 1932347 20 13.739897 Anserini +test1091 Q0 7609828 21 13.696842 Anserini +test1091 Q0 11146241 22 13.643644 Anserini +test1091 Q0 19337388 23 13.639490 Anserini +test1091 Q0 3426590 24 13.633860 Anserini +test1091 Q0 1932350 25 13.568548 Anserini +test1091 Q0 7348523 26 13.513435 Anserini +test1091 Q0 86435 27 13.465385 Anserini +test1091 Q0 654732 28 13.415857 Anserini +test1091 Q0 11304402 29 13.409668 Anserini +test1091 Q0 7071245 30 13.358319 Anserini +test1092 Q0 2384166 1 16.967766 Anserini +test1092 Q0 2384170 2 16.544847 Anserini +test1092 Q0 2384167 3 14.837513 Anserini +test1092 Q0 5051616 4 13.226291 Anserini +test1092 Q0 2384169 5 13.193492 Anserini +test1092 Q0 2384168 6 12.986120 Anserini +test1092 Q0 9401735 7 12.771904 Anserini +test1092 Q0 14412491 8 12.370589 Anserini +test1092 Q0 5051615 9 12.295751 Anserini +test1092 Q0 5051618 10 12.282043 Anserini +test1092 Q0 16076996 11 12.268348 Anserini +test1092 Q0 19881119 12 12.262443 Anserini +test1092 Q0 17648384 13 12.160573 Anserini +test1092 Q0 1406721 14 12.070401 Anserini +test1092 Q0 3059293 15 12.069993 Anserini +test1092 Q0 4055754 16 12.011369 Anserini +test1092 Q0 14412476 17 11.863927 Anserini +test1092 Q0 14412480 18 11.801359 Anserini +test1092 Q0 13339709 19 11.761623 Anserini +test1092 Q0 6592157 20 11.736336 Anserini +test1092 Q0 5049647 21 11.718549 Anserini +test1092 Q0 5051493 22 11.637135 Anserini +test1092 Q0 12155356 23 11.608034 Anserini +test1092 Q0 20291075 24 11.588304 Anserini +test1092 Q0 661092 25 11.527393 Anserini +test1092 Q0 3059301 26 11.494705 Anserini +test1092 Q0 19113419 27 11.462793 Anserini +test1092 Q0 4190475 28 11.413963 Anserini +test1092 Q0 134984 29 11.404458 Anserini +test1092 Q0 11568248 30 11.208206 Anserini +test1093 Q0 7849301 1 15.672110 Anserini +test1093 Q0 14390698 2 13.828796 Anserini +test1093 Q0 12184760 3 13.302411 Anserini +test1093 Q0 12184762 4 13.302411 Anserini +test1093 Q0 2248857 5 13.101976 Anserini +test1093 Q0 13543795 6 12.784095 Anserini +test1093 Q0 11528584 7 12.412466 Anserini +test1093 Q0 9625913 8 12.209063 Anserini +test1093 Q0 650671 9 12.205273 Anserini +test1093 Q0 15878893 10 12.163039 Anserini +test1093 Q0 650638 11 12.016464 Anserini +test1093 Q0 6789231 12 11.873062 Anserini +test1093 Q0 6789233 13 11.873062 Anserini +test1093 Q0 7330803 14 11.856359 Anserini +test1093 Q0 18648279 15 11.853498 Anserini +test1093 Q0 15518871 16 11.832685 Anserini +test1093 Q0 9625914 17 11.798180 Anserini +test1093 Q0 7330809 18 11.760687 Anserini +test1093 Q0 18923717 19 11.710643 Anserini +test1093 Q0 9951921 20 11.675794 Anserini +test1093 Q0 1989553 21 11.668682 Anserini +test1093 Q0 7720031 22 11.666613 Anserini +test1093 Q0 3383250 23 11.603441 Anserini +test1093 Q0 15665015 24 11.600271 Anserini +test1093 Q0 18803969 25 11.587596 Anserini +test1093 Q0 19221203 26 11.546803 Anserini +test1093 Q0 726592 27 11.545841 Anserini +test1093 Q0 726608 28 11.545841 Anserini +test1093 Q0 728440 29 11.458547 Anserini +test1093 Q0 7330802 30 11.455511 Anserini +test1094 Q0 16974749 1 15.142402 Anserini +test1094 Q0 555397 2 14.687045 Anserini +test1094 Q0 8848641 3 14.413898 Anserini +test1094 Q0 15663070 4 14.264936 Anserini +test1094 Q0 8848645 5 14.011092 Anserini +test1094 Q0 16974744 6 13.961563 Anserini +test1094 Q0 15956716 7 13.961563 Anserini +test1094 Q0 8848648 8 13.841841 Anserini +test1094 Q0 15662730 9 13.833511 Anserini +test1094 Q0 19330000 10 13.587343 Anserini +test1094 Q0 19161437 11 13.527876 Anserini +test1094 Q0 8848647 12 13.522975 Anserini +test1094 Q0 19161435 13 13.356101 Anserini +test1094 Q0 19161439 14 13.356101 Anserini +test1094 Q0 15663068 15 13.317516 Anserini +test1094 Q0 15663069 16 13.143226 Anserini +test1094 Q0 1910423 17 13.143226 Anserini +test1094 Q0 15956718 18 13.127329 Anserini +test1094 Q0 8848650 19 12.854734 Anserini +test1094 Q0 15605405 20 12.778980 Anserini +test1094 Q0 8848649 21 12.690843 Anserini +test1094 Q0 17024407 22 12.684699 Anserini +test1094 Q0 16195583 23 12.678488 Anserini +test1094 Q0 555363 24 12.646602 Anserini +test1094 Q0 18867108 25 12.598053 Anserini +test1094 Q0 19209018 26 12.598053 Anserini +test1094 Q0 13299937 27 12.552347 Anserini +test1094 Q0 19276283 28 12.542705 Anserini +test1094 Q0 20336985 29 12.516059 Anserini +test1094 Q0 19529623 30 12.504741 Anserini +test1095 Q0 6824991 1 9.616669 Anserini +test1095 Q0 10849360 2 9.250191 Anserini +test1095 Q0 14185554 3 9.131047 Anserini +test1095 Q0 14215572 4 9.098469 Anserini +test1095 Q0 5722058 5 9.096242 Anserini +test1095 Q0 14785987 6 9.058354 Anserini +test1095 Q0 8829723 7 9.048806 Anserini +test1095 Q0 8829725 8 9.048806 Anserini +test1095 Q0 9260889 9 9.019466 Anserini +test1095 Q0 9710692 10 8.983267 Anserini +test1095 Q0 13348891 11 8.964486 Anserini +test1095 Q0 19075505 12 8.914110 Anserini +test1095 Q0 15196642 13 8.912462 Anserini +test1095 Q0 20946358 14 8.875271 Anserini +test1095 Q0 1346005 15 8.865026 Anserini +test1095 Q0 10909449 16 8.845995 Anserini +test1095 Q0 8502353 17 8.834706 Anserini +test1095 Q0 8502354 18 8.834706 Anserini +test1095 Q0 19393048 19 8.819642 Anserini +test1095 Q0 9710691 20 8.796770 Anserini +test1095 Q0 10571068 21 8.788212 Anserini +test1095 Q0 15161076 22 8.779849 Anserini +test1095 Q0 6426624 23 8.758173 Anserini +test1095 Q0 2338668 24 8.753324 Anserini +test1095 Q0 2749780 25 8.739658 Anserini +test1095 Q0 20263145 26 8.726924 Anserini +test1095 Q0 18022290 27 8.710903 Anserini +test1095 Q0 5528674 28 8.699224 Anserini +test1095 Q0 15035778 29 8.692287 Anserini +test1095 Q0 1628862 30 8.669885 Anserini +test1096 Q0 11929615 1 14.797972 Anserini +test1096 Q0 10377620 2 14.745731 Anserini +test1096 Q0 19812591 3 14.664449 Anserini +test1096 Q0 10381945 4 14.611169 Anserini +test1096 Q0 4969681 5 14.597622 Anserini +test1096 Q0 8188175 6 14.580294 Anserini +test1096 Q0 10367311 7 14.578532 Anserini +test1096 Q0 10600699 8 14.574270 Anserini +test1096 Q0 11056750 9 14.561854 Anserini +test1096 Q0 11016601 10 14.556610 Anserini +test1096 Q0 10602397 11 14.552729 Anserini +test1096 Q0 8195158 12 14.552191 Anserini +test1096 Q0 8202606 13 14.551879 Anserini +test1096 Q0 10047027 14 14.491832 Anserini +test1096 Q0 10600603 15 14.486044 Anserini +test1096 Q0 10378797 16 14.460819 Anserini +test1096 Q0 10378801 17 14.460819 Anserini +test1096 Q0 12414719 18 14.441821 Anserini +test1096 Q0 10047059 19 14.326038 Anserini +test1096 Q0 10599784 20 14.268594 Anserini +test1096 Q0 10369557 21 14.254727 Anserini +test1096 Q0 11874649 22 14.242991 Anserini +test1096 Q0 10600582 23 14.240033 Anserini +test1096 Q0 3596960 24 14.234558 Anserini +test1096 Q0 11234431 25 14.204005 Anserini +test1096 Q0 8202602 26 14.135419 Anserini +test1096 Q0 814533 27 14.114407 Anserini +test1096 Q0 10600596 28 14.114015 Anserini +test1096 Q0 10367320 29 14.080496 Anserini +test1096 Q0 6234551 30 14.050013 Anserini +test1097 Q0 18762263 1 14.551252 Anserini +test1097 Q0 16788614 2 14.144727 Anserini +test1097 Q0 19036451 3 13.868011 Anserini +test1097 Q0 19036448 4 13.772792 Anserini +test1097 Q0 12845965 5 13.668796 Anserini +test1097 Q0 16788613 6 13.438718 Anserini +test1097 Q0 7540032 7 13.307384 Anserini +test1097 Q0 20543466 8 13.089368 Anserini +test1097 Q0 8289845 9 13.029129 Anserini +test1097 Q0 5787850 10 12.962740 Anserini +test1097 Q0 17350603 11 12.697540 Anserini +test1097 Q0 8289846 12 12.695457 Anserini +test1097 Q0 8810565 13 12.680755 Anserini +test1097 Q0 12156889 14 12.588249 Anserini +test1097 Q0 17350572 15 12.504106 Anserini +test1097 Q0 8810564 16 12.468451 Anserini +test1097 Q0 9313785 17 12.379901 Anserini +test1097 Q0 16430761 18 12.244090 Anserini +test1097 Q0 921873 19 12.169832 Anserini +test1097 Q0 5449978 20 12.120071 Anserini +test1097 Q0 18383001 21 12.108580 Anserini +test1097 Q0 7540033 22 12.036028 Anserini +test1097 Q0 17960362 23 12.031167 Anserini +test1097 Q0 12888814 24 11.967780 Anserini +test1097 Q0 12888811 25 11.959826 Anserini +test1097 Q0 18983592 26 11.916727 Anserini +test1097 Q0 5062608 27 11.899818 Anserini +test1097 Q0 19036449 28 11.860981 Anserini +test1097 Q0 2873136 29 11.858467 Anserini +test1097 Q0 2526492 30 11.856994 Anserini +test1098 Q0 3823774 1 14.222727 Anserini +test1098 Q0 3823784 2 14.019340 Anserini +test1098 Q0 86934 3 12.476468 Anserini +test1098 Q0 86889 4 12.476468 Anserini +test1098 Q0 14377603 5 12.254753 Anserini +test1098 Q0 3823780 6 11.953827 Anserini +test1098 Q0 16919581 7 11.907465 Anserini +test1098 Q0 3823773 8 11.752601 Anserini +test1098 Q0 3823789 9 11.623018 Anserini +test1098 Q0 3823779 10 11.597680 Anserini +test1098 Q0 9222553 11 11.496870 Anserini +test1098 Q0 9222557 12 11.496870 Anserini +test1098 Q0 86922 13 11.436315 Anserini +test1098 Q0 6694296 14 11.166583 Anserini +test1098 Q0 3823785 15 11.093886 Anserini +test1098 Q0 3823782 16 11.080598 Anserini +test1098 Q0 4567462 17 11.058675 Anserini +test1098 Q0 16919567 18 10.821910 Anserini +test1098 Q0 14496034 19 10.756355 Anserini +test1098 Q0 6694194 20 10.644197 Anserini +test1098 Q0 15339528 21 10.605056 Anserini +test1098 Q0 16919577 22 10.574007 Anserini +test1098 Q0 3823781 23 10.563246 Anserini +test1098 Q0 16246101 24 10.440176 Anserini +test1098 Q0 15325086 25 10.428273 Anserini +test1098 Q0 3823777 26 10.350776 Anserini +test1098 Q0 9222554 27 10.350776 Anserini +test1098 Q0 16919582 28 10.274571 Anserini +test1098 Q0 410939 29 10.255234 Anserini +test1098 Q0 16240670 30 10.218074 Anserini +test1099 Q0 17487182 1 13.027979 Anserini +test1099 Q0 19474870 2 13.017086 Anserini +test1099 Q0 19474868 3 12.904280 Anserini +test1099 Q0 17487179 4 12.406977 Anserini +test1099 Q0 3119746 5 11.836856 Anserini +test1099 Q0 16798468 6 11.708744 Anserini +test1099 Q0 19474869 7 11.636341 Anserini +test1099 Q0 17293719 8 11.554212 Anserini +test1099 Q0 19231808 9 11.507541 Anserini +test1099 Q0 18822034 10 11.380577 Anserini +test1099 Q0 19265111 11 11.309780 Anserini +test1099 Q0 19304407 12 11.179994 Anserini +test1099 Q0 7530296 13 11.176648 Anserini +test1099 Q0 7007359 14 10.867640 Anserini +test1099 Q0 15369234 15 10.636701 Anserini +test1099 Q0 5307016 16 10.577171 Anserini +test1099 Q0 18822037 17 10.534731 Anserini +test1099 Q0 12937528 18 10.498064 Anserini +test1099 Q0 5307003 19 10.391073 Anserini +test1099 Q0 19265110 20 10.366999 Anserini +test1099 Q0 18859589 21 10.328120 Anserini +test1099 Q0 15531669 22 10.328120 Anserini +test1099 Q0 18859588 23 10.328120 Anserini +test1099 Q0 18212697 24 10.257020 Anserini +test1099 Q0 9639459 25 10.197703 Anserini +test1099 Q0 7530297 26 10.128809 Anserini +test1099 Q0 18822036 27 10.115633 Anserini +test1099 Q0 5307010 28 10.102461 Anserini +test1099 Q0 5307018 29 10.073030 Anserini +test1099 Q0 15860162 30 9.970633 Anserini +test11 Q0 2112827 1 29.882729 Anserini +test11 Q0 10522161 2 25.216278 Anserini +test11 Q0 11747594 3 24.853027 Anserini +test11 Q0 4664787 4 24.309021 Anserini +test11 Q0 17602580 5 24.219387 Anserini +test11 Q0 10522163 6 24.143167 Anserini +test11 Q0 13267040 7 24.074722 Anserini +test11 Q0 10974778 8 23.864511 Anserini +test11 Q0 10974779 9 23.864511 Anserini +test11 Q0 10146764 10 23.749187 Anserini +test11 Q0 18204922 11 23.728596 Anserini +test11 Q0 14816016 12 23.704384 Anserini +test11 Q0 10235620 13 23.580212 Anserini +test11 Q0 1972248 14 23.497494 Anserini +test11 Q0 15502865 15 23.459633 Anserini +test11 Q0 4370001 16 23.458542 Anserini +test11 Q0 6452099 17 23.447514 Anserini +test11 Q0 11696550 18 23.343941 Anserini +test11 Q0 11136967 19 23.288059 Anserini +test11 Q0 11718225 20 23.254881 Anserini +test11 Q0 18475111 21 23.137161 Anserini +test11 Q0 14230086 22 23.008734 Anserini +test11 Q0 11132612 23 22.947584 Anserini +test11 Q0 728185 24 22.733065 Anserini +test11 Q0 4103697 25 22.719982 Anserini +test11 Q0 21007189 26 22.660074 Anserini +test11 Q0 18261313 27 22.647015 Anserini +test11 Q0 11641037 28 22.545527 Anserini +test11 Q0 15812969 29 22.472914 Anserini +test11 Q0 16276874 30 22.444242 Anserini +test110 Q0 8763965 1 14.893439 Anserini +test110 Q0 17409832 2 13.167490 Anserini +test110 Q0 18823284 3 13.040513 Anserini +test110 Q0 504388 4 12.717031 Anserini +test110 Q0 11147195 5 12.698811 Anserini +test110 Q0 4083315 6 12.506845 Anserini +test110 Q0 661506 7 12.448553 Anserini +test110 Q0 439148 8 12.405700 Anserini +test110 Q0 9020067 9 12.359468 Anserini +test110 Q0 14263677 10 12.296448 Anserini +test110 Q0 657936 11 12.233397 Anserini +test110 Q0 17728590 12 12.229283 Anserini +test110 Q0 7780730 13 12.091228 Anserini +test110 Q0 2196838 14 12.005445 Anserini +test110 Q0 14077645 15 11.996306 Anserini +test110 Q0 8958100 16 11.951074 Anserini +test110 Q0 12964062 17 11.895482 Anserini +test110 Q0 11228479 18 11.893235 Anserini +test110 Q0 16352986 19 11.837629 Anserini +test110 Q0 8958115 20 11.803240 Anserini +test110 Q0 12096298 21 11.794244 Anserini +test110 Q0 4726824 22 11.791943 Anserini +test110 Q0 3542353 23 11.783972 Anserini +test110 Q0 1502780 24 11.783665 Anserini +test110 Q0 504240 25 11.779206 Anserini +test110 Q0 16352985 26 11.768642 Anserini +test110 Q0 8351183 27 11.751929 Anserini +test110 Q0 17254078 28 11.725753 Anserini +test110 Q0 7196422 29 11.704495 Anserini +test110 Q0 5333070 30 11.694891 Anserini +test1100 Q0 11515910 1 13.854244 Anserini +test1100 Q0 84651 2 13.825891 Anserini +test1100 Q0 17692115 3 13.820615 Anserini +test1100 Q0 12498895 4 13.328200 Anserini +test1100 Q0 12753098 5 13.264908 Anserini +test1100 Q0 16902868 6 13.104059 Anserini +test1100 Q0 19967359 7 13.092221 Anserini +test1100 Q0 16902869 8 12.990058 Anserini +test1100 Q0 12112112 9 12.696083 Anserini +test1100 Q0 13507311 10 12.596189 Anserini +test1100 Q0 6431067 11 12.538462 Anserini +test1100 Q0 11479419 12 12.334234 Anserini +test1100 Q0 12608891 13 12.317816 Anserini +test1100 Q0 3164124 14 12.260634 Anserini +test1100 Q0 3164125 15 12.256184 Anserini +test1100 Q0 10838392 16 12.212458 Anserini +test1100 Q0 11675295 17 12.173822 Anserini +test1100 Q0 5021411 18 12.148986 Anserini +test1100 Q0 12498896 19 12.132562 Anserini +test1100 Q0 14875304 20 12.092659 Anserini +test1100 Q0 16735208 21 12.061384 Anserini +test1100 Q0 17747626 22 12.037350 Anserini +test1100 Q0 16531433 23 12.006491 Anserini +test1100 Q0 14228944 24 11.968869 Anserini +test1100 Q0 3177446 25 11.958644 Anserini +test1100 Q0 11380361 26 11.933920 Anserini +test1100 Q0 8863905 27 11.832254 Anserini +test1100 Q0 13467780 28 11.825460 Anserini +test1100 Q0 20533281 29 11.817892 Anserini +test1100 Q0 12608906 30 11.766117 Anserini +test1101 Q0 40471 1 19.159599 Anserini +test1101 Q0 10734414 2 16.447813 Anserini +test1101 Q0 5409339 3 16.347904 Anserini +test1101 Q0 4226777 4 16.345119 Anserini +test1101 Q0 7904280 5 16.014538 Anserini +test1101 Q0 142484 6 15.456058 Anserini +test1101 Q0 3672089 7 15.422144 Anserini +test1101 Q0 40570 8 15.383128 Anserini +test1101 Q0 15916267 9 15.317004 Anserini +test1101 Q0 40569 10 14.906249 Anserini +test1101 Q0 5206756 11 14.860200 Anserini +test1101 Q0 9604286 12 14.838616 Anserini +test1101 Q0 2886513 13 14.642151 Anserini +test1101 Q0 73841 14 14.617703 Anserini +test1101 Q0 2167136 15 14.306061 Anserini +test1101 Q0 732865 16 14.283411 Anserini +test1101 Q0 14915939 17 14.258115 Anserini +test1101 Q0 3590036 18 14.252727 Anserini +test1101 Q0 9321657 19 14.171947 Anserini +test1101 Q0 10374187 20 14.169036 Anserini +test1101 Q0 9604272 21 14.126549 Anserini +test1101 Q0 7530309 22 14.080293 Anserini +test1101 Q0 9596947 23 14.027016 Anserini +test1101 Q0 7314092 24 13.995075 Anserini +test1101 Q0 4226775 25 13.982622 Anserini +test1101 Q0 15851674 26 13.972175 Anserini +test1101 Q0 10554383 27 13.940084 Anserini +test1101 Q0 3481598 28 13.919106 Anserini +test1101 Q0 2241078 29 13.912544 Anserini +test1101 Q0 6297331 30 13.912544 Anserini +test1102 Q0 17421742 1 19.412806 Anserini +test1102 Q0 18786738 2 19.236698 Anserini +test1102 Q0 20908789 3 18.089241 Anserini +test1102 Q0 18786735 4 17.996727 Anserini +test1102 Q0 18045366 5 17.185665 Anserini +test1102 Q0 19387364 6 17.055546 Anserini +test1102 Q0 20908801 7 16.791138 Anserini +test1102 Q0 19634713 8 16.679472 Anserini +test1102 Q0 18045370 9 16.666481 Anserini +test1102 Q0 20908799 10 16.297590 Anserini +test1102 Q0 20908797 11 16.077709 Anserini +test1102 Q0 20908796 12 15.966921 Anserini +test1102 Q0 6904808 13 15.850193 Anserini +test1102 Q0 16350326 14 15.796852 Anserini +test1102 Q0 20908792 15 15.485814 Anserini +test1102 Q0 3101573 16 15.204454 Anserini +test1102 Q0 20908794 17 15.086409 Anserini +test1102 Q0 9697610 18 14.944820 Anserini +test1102 Q0 15040998 19 14.869908 Anserini +test1102 Q0 13582826 20 14.544698 Anserini +test1102 Q0 14026924 21 14.540710 Anserini +test1102 Q0 18045372 22 14.531730 Anserini +test1102 Q0 16120087 23 14.443201 Anserini +test1102 Q0 18404265 24 14.266780 Anserini +test1102 Q0 18045369 25 14.196513 Anserini +test1102 Q0 20908798 26 14.161478 Anserini +test1102 Q0 20907917 27 14.122000 Anserini +test1102 Q0 12943992 28 14.060894 Anserini +test1102 Q0 13498353 29 14.050495 Anserini +test1102 Q0 5532329 30 14.026233 Anserini +test1103 Q0 127052 1 13.893688 Anserini +test1103 Q0 127042 2 13.254264 Anserini +test1103 Q0 5768446 3 11.051922 Anserini +test1103 Q0 781000 4 10.605289 Anserini +test1103 Q0 204322 5 10.481650 Anserini +test1103 Q0 18695598 6 10.423489 Anserini +test1103 Q0 13249834 7 10.030845 Anserini +test1103 Q0 12510130 8 10.030845 Anserini +test1103 Q0 7619802 9 10.006340 Anserini +test1103 Q0 5586057 10 9.933429 Anserini +test1103 Q0 19141814 11 9.605701 Anserini +test1103 Q0 13784615 12 9.605701 Anserini +test1103 Q0 18695609 13 9.427169 Anserini +test1103 Q0 9982808 14 9.403462 Anserini +test1103 Q0 11979046 15 9.403462 Anserini +test1103 Q0 5836236 16 9.349133 Anserini +test1103 Q0 127046 17 9.275322 Anserini +test1103 Q0 18695565 18 9.106403 Anserini +test1103 Q0 18695610 19 9.068770 Anserini +test1103 Q0 7619795 20 9.031447 Anserini +test1103 Q0 18695559 21 9.031447 Anserini +test1103 Q0 18695587 22 9.031447 Anserini +test1103 Q0 127049 23 9.030455 Anserini +test1103 Q0 18695592 24 8.955840 Anserini +test1103 Q0 6754532 25 8.721747 Anserini +test1103 Q0 19249508 26 8.658164 Anserini +test1103 Q0 127048 27 8.648435 Anserini +test1103 Q0 1299620 28 8.618769 Anserini +test1103 Q0 18851738 29 8.584770 Anserini +test1103 Q0 6603704 30 8.572810 Anserini +test1104 Q0 18586293 1 14.963090 Anserini +test1104 Q0 1662240 2 14.671587 Anserini +test1104 Q0 10957213 3 14.622631 Anserini +test1104 Q0 17996904 4 14.347042 Anserini +test1104 Q0 802182 5 14.184299 Anserini +test1104 Q0 7255993 6 14.141623 Anserini +test1104 Q0 14876412 7 14.125034 Anserini +test1104 Q0 18586297 8 13.883601 Anserini +test1104 Q0 11667075 9 13.848299 Anserini +test1104 Q0 20951354 10 13.788363 Anserini +test1104 Q0 16195248 11 13.737537 Anserini +test1104 Q0 8064563 12 13.506298 Anserini +test1104 Q0 4847378 13 13.439811 Anserini +test1104 Q0 18186636 14 13.407201 Anserini +test1104 Q0 802752 15 13.368803 Anserini +test1104 Q0 10439991 16 13.349065 Anserini +test1104 Q0 4091792 17 13.333522 Anserini +test1104 Q0 16142112 18 13.262516 Anserini +test1104 Q0 13528666 19 13.251947 Anserini +test1104 Q0 1833172 20 13.130670 Anserini +test1104 Q0 17342540 21 13.102569 Anserini +test1104 Q0 10957212 22 13.098351 Anserini +test1104 Q0 9808054 23 13.054043 Anserini +test1104 Q0 18364710 24 12.989900 Anserini +test1104 Q0 19517180 25 12.951492 Anserini +test1104 Q0 6263828 26 12.877253 Anserini +test1104 Q0 14839627 27 12.866241 Anserini +test1104 Q0 2263443 28 12.864159 Anserini +test1104 Q0 1322980 29 12.856282 Anserini +test1104 Q0 9302667 30 12.844928 Anserini +test1105 Q0 5122749 1 11.670118 Anserini +test1105 Q0 5122748 2 11.225418 Anserini +test1105 Q0 19106087 3 10.871062 Anserini +test1105 Q0 9536563 4 10.513448 Anserini +test1105 Q0 9536570 5 10.513448 Anserini +test1105 Q0 15077019 6 9.949987 Anserini +test1105 Q0 4293777 7 9.681571 Anserini +test1105 Q0 4293784 8 9.681571 Anserini +test1105 Q0 16687503 9 9.533381 Anserini +test1105 Q0 7175537 10 9.291957 Anserini +test1105 Q0 14685349 11 9.284845 Anserini +test1105 Q0 12989271 12 9.266404 Anserini +test1105 Q0 5615780 13 9.253925 Anserini +test1105 Q0 8120065 14 9.172740 Anserini +test1105 Q0 19865083 15 9.144476 Anserini +test1105 Q0 4502019 16 9.141992 Anserini +test1105 Q0 14116163 17 9.098215 Anserini +test1105 Q0 19649071 18 9.083100 Anserini +test1105 Q0 15640492 19 9.075097 Anserini +test1105 Q0 14116172 20 9.054998 Anserini +test1105 Q0 7442366 21 8.993188 Anserini +test1105 Q0 15370560 22 8.970770 Anserini +test1105 Q0 11355319 23 8.921767 Anserini +test1105 Q0 20750645 24 8.873422 Anserini +test1105 Q0 15077023 25 8.825717 Anserini +test1105 Q0 8120078 26 8.825717 Anserini +test1105 Q0 14116166 27 8.778637 Anserini +test1105 Q0 14171414 28 8.778637 Anserini +test1105 Q0 5865683 29 8.765066 Anserini +test1105 Q0 16392127 30 8.730186 Anserini +test1106 Q0 9245531 1 15.853586 Anserini +test1106 Q0 11388805 2 15.554816 Anserini +test1106 Q0 1860147 3 15.543820 Anserini +test1106 Q0 12797327 4 15.214106 Anserini +test1106 Q0 811281 5 15.146212 Anserini +test1106 Q0 1516097 6 14.644320 Anserini +test1106 Q0 437743 7 14.644320 Anserini +test1106 Q0 516920 8 14.398902 Anserini +test1106 Q0 18925815 9 14.349234 Anserini +test1106 Q0 437798 10 14.331902 Anserini +test1106 Q0 7749139 11 14.119507 Anserini +test1106 Q0 346453 12 14.116197 Anserini +test1106 Q0 9245526 13 13.967184 Anserini +test1106 Q0 11388793 14 13.873013 Anserini +test1106 Q0 1860157 15 13.813681 Anserini +test1106 Q0 437772 16 13.794691 Anserini +test1106 Q0 10233202 17 13.689954 Anserini +test1106 Q0 1967602 18 13.662225 Anserini +test1106 Q0 5743094 19 13.082964 Anserini +test1106 Q0 1003924 20 13.082964 Anserini +test1106 Q0 14455394 21 12.826241 Anserini +test1106 Q0 17456300 22 12.737222 Anserini +test1106 Q0 1596003 23 12.638236 Anserini +test1106 Q0 502810 24 12.630690 Anserini +test1106 Q0 516918 25 12.172651 Anserini +test1106 Q0 6666621 26 12.090202 Anserini +test1106 Q0 1595544 27 12.019252 Anserini +test1106 Q0 1595552 28 11.847836 Anserini +test1106 Q0 811262 29 11.760979 Anserini +test1106 Q0 6396793 30 11.620237 Anserini +test1107 Q0 13997716 1 13.553680 Anserini +test1107 Q0 13678896 2 13.225672 Anserini +test1107 Q0 14894432 3 12.753247 Anserini +test1107 Q0 10890868 4 12.500545 Anserini +test1107 Q0 13220524 5 12.448478 Anserini +test1107 Q0 12093114 6 12.265449 Anserini +test1107 Q0 845795 7 11.964217 Anserini +test1107 Q0 11208589 8 11.934220 Anserini +test1107 Q0 13678895 9 11.782194 Anserini +test1107 Q0 13868153 10 11.777305 Anserini +test1107 Q0 11414403 11 11.549677 Anserini +test1107 Q0 836688 12 11.541760 Anserini +test1107 Q0 20015079 13 11.495746 Anserini +test1107 Q0 20744986 14 11.445238 Anserini +test1107 Q0 6569853 15 11.444467 Anserini +test1107 Q0 13852236 16 11.443348 Anserini +test1107 Q0 17154336 17 11.408322 Anserini +test1107 Q0 11840158 18 11.315878 Anserini +test1107 Q0 17544356 19 11.312982 Anserini +test1107 Q0 12887834 20 11.298918 Anserini +test1107 Q0 19819038 21 11.255494 Anserini +test1107 Q0 13710511 22 11.244435 Anserini +test1107 Q0 10447214 23 11.244298 Anserini +test1107 Q0 7299656 24 11.241308 Anserini +test1107 Q0 17544354 25 11.234701 Anserini +test1107 Q0 4016074 26 11.215796 Anserini +test1107 Q0 15334412 27 11.114435 Anserini +test1107 Q0 8294172 28 11.103105 Anserini +test1107 Q0 20847171 29 11.072872 Anserini +test1107 Q0 16027179 30 11.026505 Anserini +test1108 Q0 16010400 1 17.831060 Anserini +test1108 Q0 14095704 2 16.836386 Anserini +test1108 Q0 16010368 3 16.741718 Anserini +test1108 Q0 16799826 4 16.574991 Anserini +test1108 Q0 16895966 5 16.540316 Anserini +test1108 Q0 16010387 6 16.326984 Anserini +test1108 Q0 10717001 7 16.239531 Anserini +test1108 Q0 16895969 8 15.812764 Anserini +test1108 Q0 16010395 9 15.672873 Anserini +test1108 Q0 16799829 10 15.549464 Anserini +test1108 Q0 16799822 11 15.461842 Anserini +test1108 Q0 20020982 12 15.255616 Anserini +test1108 Q0 12858480 13 15.052995 Anserini +test1108 Q0 17025728 14 14.865065 Anserini +test1108 Q0 17774018 15 14.767209 Anserini +test1108 Q0 16914764 16 14.744343 Anserini +test1108 Q0 16932027 17 14.727451 Anserini +test1108 Q0 16932026 18 14.727451 Anserini +test1108 Q0 4626940 19 14.687030 Anserini +test1108 Q0 16010392 20 14.686633 Anserini +test1108 Q0 10278990 21 14.668940 Anserini +test1108 Q0 16010398 22 14.647702 Anserini +test1108 Q0 17774020 23 14.636469 Anserini +test1108 Q0 17774021 24 14.636469 Anserini +test1108 Q0 17774019 25 14.636469 Anserini +test1108 Q0 16010369 26 14.585732 Anserini +test1108 Q0 2293356 27 14.490625 Anserini +test1108 Q0 16010388 28 14.485823 Anserini +test1108 Q0 5607991 29 14.409927 Anserini +test1108 Q0 16010397 30 14.360221 Anserini +test1109 Q0 2742598 1 14.538383 Anserini +test1109 Q0 2304940 2 12.921877 Anserini +test1109 Q0 2304921 3 12.361260 Anserini +test1109 Q0 18360720 4 12.269256 Anserini +test1109 Q0 2742589 5 12.264350 Anserini +test1109 Q0 617253 6 12.181615 Anserini +test1109 Q0 3702144 7 12.131653 Anserini +test1109 Q0 2370178 8 12.045362 Anserini +test1109 Q0 617252 9 11.884215 Anserini +test1109 Q0 5435590 10 11.729975 Anserini +test1109 Q0 2045851 11 11.702281 Anserini +test1109 Q0 15452950 12 11.684481 Anserini +test1109 Q0 6781362 13 11.647158 Anserini +test1109 Q0 3682605 14 11.631046 Anserini +test1109 Q0 3557137 15 11.629869 Anserini +test1109 Q0 617259 16 11.606940 Anserini +test1109 Q0 20245859 17 11.605830 Anserini +test1109 Q0 266734 18 11.534896 Anserini +test1109 Q0 5078411 19 11.498190 Anserini +test1109 Q0 10995594 20 11.479356 Anserini +test1109 Q0 10995592 21 11.479356 Anserini +test1109 Q0 617264 22 11.440619 Anserini +test1109 Q0 15368663 23 11.429370 Anserini +test1109 Q0 4686005 24 11.422492 Anserini +test1109 Q0 341872 25 11.379660 Anserini +test1109 Q0 19490969 26 11.366798 Anserini +test1109 Q0 10255725 27 11.333506 Anserini +test1109 Q0 3562630 28 11.331639 Anserini +test1109 Q0 4853605 29 11.324831 Anserini +test1109 Q0 17668746 30 11.283833 Anserini +test111 Q0 6677482 1 25.872787 Anserini +test111 Q0 6677478 2 25.737545 Anserini +test111 Q0 6677481 3 24.601856 Anserini +test111 Q0 6677480 4 22.343964 Anserini +test111 Q0 4790816 5 21.801367 Anserini +test111 Q0 2781435 6 21.005743 Anserini +test111 Q0 16962537 7 19.114803 Anserini +test111 Q0 6677479 8 18.929604 Anserini +test111 Q0 3054978 9 18.829023 Anserini +test111 Q0 14321071 10 18.744545 Anserini +test111 Q0 14315413 11 17.975237 Anserini +test111 Q0 9521993 12 17.880680 Anserini +test111 Q0 3021786 13 17.604588 Anserini +test111 Q0 3205064 14 17.504158 Anserini +test111 Q0 3021770 15 17.424936 Anserini +test111 Q0 4192405 16 17.035339 Anserini +test111 Q0 3021776 17 16.718487 Anserini +test111 Q0 17483764 18 16.717817 Anserini +test111 Q0 20118071 19 16.710600 Anserini +test111 Q0 19120543 20 16.328318 Anserini +test111 Q0 14315414 21 16.071587 Anserini +test111 Q0 8421575 22 16.071587 Anserini +test111 Q0 8641118 23 15.972696 Anserini +test111 Q0 8641120 24 15.972696 Anserini +test111 Q0 5580759 25 15.902284 Anserini +test111 Q0 9693370 26 15.888289 Anserini +test111 Q0 16797772 27 15.860267 Anserini +test111 Q0 9693371 28 15.750235 Anserini +test111 Q0 8837304 29 15.727378 Anserini +test111 Q0 15173326 30 15.697977 Anserini +test1110 Q0 13739454 1 14.658792 Anserini +test1110 Q0 13739445 2 13.694271 Anserini +test1110 Q0 11529737 3 13.151099 Anserini +test1110 Q0 5915727 4 12.918183 Anserini +test1110 Q0 8807205 5 12.895166 Anserini +test1110 Q0 5271741 6 12.832179 Anserini +test1110 Q0 19684711 7 12.548740 Anserini +test1110 Q0 5274377 8 12.522709 Anserini +test1110 Q0 19785275 9 12.493988 Anserini +test1110 Q0 13559452 10 12.457995 Anserini +test1110 Q0 16899255 11 12.296909 Anserini +test1110 Q0 4765419 12 12.275443 Anserini +test1110 Q0 4765415 13 12.176198 Anserini +test1110 Q0 11529738 14 12.157856 Anserini +test1110 Q0 20300003 15 12.105570 Anserini +test1110 Q0 19593970 16 12.104043 Anserini +test1110 Q0 97302 17 12.100044 Anserini +test1110 Q0 18062100 18 12.052946 Anserini +test1110 Q0 6668180 19 11.922323 Anserini +test1110 Q0 6062126 20 11.815678 Anserini +test1110 Q0 15317182 21 11.722252 Anserini +test1110 Q0 17713978 22 11.701950 Anserini +test1110 Q0 4765414 23 11.671481 Anserini +test1110 Q0 4111560 24 11.659275 Anserini +test1110 Q0 7767962 25 11.621403 Anserini +test1110 Q0 6221380 26 11.549061 Anserini +test1110 Q0 14142267 27 11.516760 Anserini +test1110 Q0 13739446 28 11.486201 Anserini +test1110 Q0 14644945 29 11.483570 Anserini +test1110 Q0 17717460 30 11.466356 Anserini +test1111 Q0 18567083 1 12.864698 Anserini +test1111 Q0 19900894 2 12.849066 Anserini +test1111 Q0 19900887 3 12.576997 Anserini +test1111 Q0 19499225 4 12.567787 Anserini +test1111 Q0 18567072 5 12.408218 Anserini +test1111 Q0 18567082 6 12.136835 Anserini +test1111 Q0 19900881 7 11.821207 Anserini +test1111 Q0 18607343 8 11.753767 Anserini +test1111 Q0 19900890 9 11.555520 Anserini +test1111 Q0 18567062 10 11.536093 Anserini +test1111 Q0 18567065 11 11.451548 Anserini +test1111 Q0 3302221 12 11.396147 Anserini +test1111 Q0 18567061 13 11.368486 Anserini +test1111 Q0 20139259 14 11.325627 Anserini +test1111 Q0 19900896 15 11.256079 Anserini +test1111 Q0 19900877 16 11.240269 Anserini +test1111 Q0 18567076 17 11.147897 Anserini +test1111 Q0 18607328 18 11.147897 Anserini +test1111 Q0 19499221 19 11.102430 Anserini +test1111 Q0 19900876 20 11.057432 Anserini +test1111 Q0 18567070 21 10.830514 Anserini +test1111 Q0 2953359 22 10.830514 Anserini +test1111 Q0 18567071 23 10.779084 Anserini +test1111 Q0 3302220 24 10.779084 Anserini +test1111 Q0 19900875 25 10.779084 Anserini +test1111 Q0 18567074 26 10.728224 Anserini +test1111 Q0 18607332 27 10.728224 Anserini +test1111 Q0 18567084 28 10.677919 Anserini +test1111 Q0 19900880 29 10.677919 Anserini +test1111 Q0 3480451 30 10.572402 Anserini +test1112 Q0 895354 1 14.356159 Anserini +test1112 Q0 6056907 2 13.461903 Anserini +test1112 Q0 14139601 3 13.411419 Anserini +test1112 Q0 11417817 4 12.588609 Anserini +test1112 Q0 1461816 5 12.455414 Anserini +test1112 Q0 1469710 6 12.347474 Anserini +test1112 Q0 14650574 7 12.035356 Anserini +test1112 Q0 1461814 8 12.024186 Anserini +test1112 Q0 7310533 9 11.990185 Anserini +test1112 Q0 13316615 10 11.863995 Anserini +test1112 Q0 6056904 11 11.821123 Anserini +test1112 Q0 8817244 12 11.796522 Anserini +test1112 Q0 18534419 13 11.584442 Anserini +test1112 Q0 14650576 14 11.551147 Anserini +test1112 Q0 895353 15 11.520904 Anserini +test1112 Q0 895363 16 11.488995 Anserini +test1112 Q0 20605732 17 11.473310 Anserini +test1112 Q0 20670250 18 11.331518 Anserini +test1112 Q0 11417820 19 11.314026 Anserini +test1112 Q0 18198562 20 11.245054 Anserini +test1112 Q0 895381 21 11.237927 Anserini +test1112 Q0 1461818 22 11.233362 Anserini +test1112 Q0 1461873 23 11.135362 Anserini +test1112 Q0 11165642 24 11.075021 Anserini +test1112 Q0 2846529 25 11.044261 Anserini +test1112 Q0 2846530 26 10.967559 Anserini +test1112 Q0 8817243 27 10.837201 Anserini +test1112 Q0 11125031 28 10.795947 Anserini +test1112 Q0 10993629 29 10.739069 Anserini +test1112 Q0 1502506 30 10.738236 Anserini +test1113 Q0 12028984 1 13.447581 Anserini +test1113 Q0 2715397 2 12.998536 Anserini +test1113 Q0 3259224 3 12.915779 Anserini +test1113 Q0 19346284 4 12.055858 Anserini +test1113 Q0 2789321 5 11.932741 Anserini +test1113 Q0 1752346 6 11.863620 Anserini +test1113 Q0 18624129 7 11.781192 Anserini +test1113 Q0 18624130 8 11.781192 Anserini +test1113 Q0 10243049 9 11.732169 Anserini +test1113 Q0 491116 10 11.710475 Anserini +test1113 Q0 17768071 11 11.658514 Anserini +test1113 Q0 3869129 12 11.589594 Anserini +test1113 Q0 19838647 13 11.551709 Anserini +test1113 Q0 13367250 14 11.551709 Anserini +test1113 Q0 19274968 15 11.487606 Anserini +test1113 Q0 10065893 16 11.419968 Anserini +test1113 Q0 14584963 17 11.413016 Anserini +test1113 Q0 8117717 18 11.374296 Anserini +test1113 Q0 18182171 19 11.297413 Anserini +test1113 Q0 10065894 20 11.284197 Anserini +test1113 Q0 5754858 21 11.258407 Anserini +test1113 Q0 7968341 22 11.224381 Anserini +test1113 Q0 965541 23 11.191026 Anserini +test1113 Q0 19274969 24 11.186184 Anserini +test1113 Q0 18453643 25 11.091290 Anserini +test1113 Q0 14411033 26 11.088396 Anserini +test1113 Q0 734027 27 10.946321 Anserini +test1113 Q0 16624230 28 10.944378 Anserini +test1113 Q0 7425032 29 10.905821 Anserini +test1113 Q0 19612255 30 10.878540 Anserini +test1114 Q0 12196986 1 13.227036 Anserini +test1114 Q0 9968802 2 11.943190 Anserini +test1114 Q0 1381697 3 11.624708 Anserini +test1114 Q0 2534898 4 11.579489 Anserini +test1114 Q0 20337532 5 11.500149 Anserini +test1114 Q0 8792092 6 11.377195 Anserini +test1114 Q0 7309069 7 11.369062 Anserini +test1114 Q0 20337526 8 11.363718 Anserini +test1114 Q0 183712 9 11.326786 Anserini +test1114 Q0 2141313 10 11.047023 Anserini +test1114 Q0 7309066 11 11.028188 Anserini +test1114 Q0 3088832 12 10.988654 Anserini +test1114 Q0 1348899 13 10.857774 Anserini +test1114 Q0 6137960 14 10.811172 Anserini +test1114 Q0 6979918 15 10.780538 Anserini +test1114 Q0 14339018 16 10.760788 Anserini +test1114 Q0 1982046 17 10.748998 Anserini +test1114 Q0 70967 18 10.676572 Anserini +test1114 Q0 9098307 19 10.670669 Anserini +test1114 Q0 52583 20 10.410213 Anserini +test1114 Q0 12583371 21 10.393884 Anserini +test1114 Q0 8583046 22 10.343717 Anserini +test1114 Q0 7386435 23 10.334305 Anserini +test1114 Q0 9671 24 10.329798 Anserini +test1114 Q0 13760978 25 10.320664 Anserini +test1114 Q0 488173 26 10.285284 Anserini +test1114 Q0 12588961 27 10.282100 Anserini +test1114 Q0 2950610 28 10.236011 Anserini +test1114 Q0 2544280 29 10.153494 Anserini +test1114 Q0 13722902 30 10.116282 Anserini +test1115 Q0 18748926 1 17.255423 Anserini +test1115 Q0 18748937 2 16.830238 Anserini +test1115 Q0 18748933 3 16.560530 Anserini +test1115 Q0 18748923 4 15.972013 Anserini +test1115 Q0 18748925 5 15.637043 Anserini +test1115 Q0 3426344 6 15.556852 Anserini +test1115 Q0 1815397 7 15.406714 Anserini +test1115 Q0 18748927 8 15.144686 Anserini +test1115 Q0 10190710 9 14.636060 Anserini +test1115 Q0 18748929 10 14.610983 Anserini +test1115 Q0 1904706 11 14.555126 Anserini +test1115 Q0 2022767 12 14.518226 Anserini +test1115 Q0 6173847 13 14.421708 Anserini +test1115 Q0 1904712 14 14.390999 Anserini +test1115 Q0 16235852 15 14.349004 Anserini +test1115 Q0 10190725 16 14.344975 Anserini +test1115 Q0 12236461 17 14.242294 Anserini +test1115 Q0 6173849 18 14.227005 Anserini +test1115 Q0 20397469 19 14.185012 Anserini +test1115 Q0 1904725 20 14.130180 Anserini +test1115 Q0 4455546 21 14.075811 Anserini +test1115 Q0 11803015 22 13.992246 Anserini +test1115 Q0 20797323 23 13.950152 Anserini +test1115 Q0 8276695 24 13.918713 Anserini +test1115 Q0 14986216 25 13.913778 Anserini +test1115 Q0 18748932 26 13.859279 Anserini +test1115 Q0 18408478 27 13.834063 Anserini +test1115 Q0 18748935 28 13.798929 Anserini +test1115 Q0 20797326 29 13.757849 Anserini +test1115 Q0 1806189 30 13.697808 Anserini +test1116 Q0 200306 1 14.902906 Anserini +test1116 Q0 4615659 2 13.392296 Anserini +test1116 Q0 3105506 3 13.272296 Anserini +test1116 Q0 17496480 4 13.260721 Anserini +test1116 Q0 534092 5 13.241768 Anserini +test1116 Q0 11176562 6 13.099211 Anserini +test1116 Q0 1297266 7 12.890478 Anserini +test1116 Q0 7503231 8 12.339022 Anserini +test1116 Q0 16294587 9 12.337243 Anserini +test1116 Q0 3903326 10 12.311445 Anserini +test1116 Q0 1348542 11 12.146670 Anserini +test1116 Q0 7302702 12 12.053079 Anserini +test1116 Q0 2343716 13 12.021500 Anserini +test1116 Q0 20576382 14 11.953447 Anserini +test1116 Q0 16034479 15 11.948754 Anserini +test1116 Q0 7372869 16 11.943709 Anserini +test1116 Q0 3365 17 11.902449 Anserini +test1116 Q0 200308 18 11.882092 Anserini +test1116 Q0 16034516 19 11.874958 Anserini +test1116 Q0 9449 20 11.852035 Anserini +test1116 Q0 20576375 21 11.840348 Anserini +test1116 Q0 20896328 22 11.805384 Anserini +test1116 Q0 12530799 23 11.772231 Anserini +test1116 Q0 473530 24 11.714197 Anserini +test1116 Q0 8802304 25 11.664600 Anserini +test1116 Q0 200292 26 11.563457 Anserini +test1116 Q0 3556681 27 11.515318 Anserini +test1116 Q0 102582 28 11.500229 Anserini +test1116 Q0 2180327 29 11.454264 Anserini +test1116 Q0 12794974 30 11.449701 Anserini +test1117 Q0 19847922 1 17.596317 Anserini +test1117 Q0 3773260 2 14.457354 Anserini +test1117 Q0 3764505 3 14.174336 Anserini +test1117 Q0 13165867 4 14.009239 Anserini +test1117 Q0 41466 5 13.572311 Anserini +test1117 Q0 3179192 6 13.491920 Anserini +test1117 Q0 8061092 7 13.421261 Anserini +test1117 Q0 15071938 8 13.113077 Anserini +test1117 Q0 2601140 9 13.109485 Anserini +test1117 Q0 1876530 10 12.963992 Anserini +test1117 Q0 14450505 11 12.843626 Anserini +test1117 Q0 5449629 12 12.830945 Anserini +test1117 Q0 41506 13 12.753500 Anserini +test1117 Q0 20247458 14 12.753500 Anserini +test1117 Q0 8761788 15 12.732984 Anserini +test1117 Q0 308095 16 12.709838 Anserini +test1117 Q0 14481169 17 12.706074 Anserini +test1117 Q0 40056 18 12.585596 Anserini +test1117 Q0 12517457 19 12.487533 Anserini +test1117 Q0 14481182 20 12.402397 Anserini +test1117 Q0 15166678 21 12.389793 Anserini +test1117 Q0 7939528 22 12.385304 Anserini +test1117 Q0 4787028 23 12.296601 Anserini +test1117 Q0 41479 24 12.243754 Anserini +test1117 Q0 3841562 25 12.155547 Anserini +test1117 Q0 41505 26 12.078074 Anserini +test1117 Q0 8061091 27 12.045525 Anserini +test1117 Q0 11099535 28 12.006159 Anserini +test1117 Q0 41473 29 11.984774 Anserini +test1117 Q0 41528 30 11.984686 Anserini +test1118 Q0 18134014 1 17.785713 Anserini +test1118 Q0 18134025 2 17.785713 Anserini +test1118 Q0 16382192 3 17.670521 Anserini +test1118 Q0 17710359 4 17.304258 Anserini +test1118 Q0 17422622 5 17.088720 Anserini +test1118 Q0 17422638 6 17.088720 Anserini +test1118 Q0 16382180 7 16.981272 Anserini +test1118 Q0 17710357 8 16.751030 Anserini +test1118 Q0 16382210 9 16.522234 Anserini +test1118 Q0 17485842 10 16.385004 Anserini +test1118 Q0 18817968 11 16.363367 Anserini +test1118 Q0 16534681 12 16.175392 Anserini +test1118 Q0 14532559 13 16.121925 Anserini +test1118 Q0 17485836 14 15.879247 Anserini +test1118 Q0 17015792 15 15.866408 Anserini +test1118 Q0 16382181 16 15.832266 Anserini +test1118 Q0 18817964 17 15.812443 Anserini +test1118 Q0 19323009 18 15.801981 Anserini +test1118 Q0 17422624 19 15.774053 Anserini +test1118 Q0 20403195 20 15.772612 Anserini +test1118 Q0 18510469 21 15.762203 Anserini +test1118 Q0 17931800 22 15.755884 Anserini +test1118 Q0 6147999 23 15.715181 Anserini +test1118 Q0 17162655 24 15.635464 Anserini +test1118 Q0 16382213 25 15.612972 Anserini +test1118 Q0 17485835 26 15.608365 Anserini +test1118 Q0 15176572 27 15.568777 Anserini +test1118 Q0 19424778 28 15.538817 Anserini +test1118 Q0 18817966 29 15.502056 Anserini +test1118 Q0 17485824 30 15.364282 Anserini +test1119 Q0 8077960 1 12.746680 Anserini +test1119 Q0 14674193 2 12.514215 Anserini +test1119 Q0 10966963 3 12.222094 Anserini +test1119 Q0 14674191 4 11.347241 Anserini +test1119 Q0 16848566 5 10.851344 Anserini +test1119 Q0 8457544 6 10.572763 Anserini +test1119 Q0 8077959 7 10.415825 Anserini +test1119 Q0 18154957 8 10.415092 Anserini +test1119 Q0 18132617 9 10.400432 Anserini +test1119 Q0 7769562 10 10.262782 Anserini +test1119 Q0 18821346 11 10.260530 Anserini +test1119 Q0 10973791 12 10.256662 Anserini +test1119 Q0 20802053 13 10.203775 Anserini +test1119 Q0 14674192 14 10.175261 Anserini +test1119 Q0 15205113 15 10.139203 Anserini +test1119 Q0 15205114 16 10.139203 Anserini +test1119 Q0 10935451 17 10.127460 Anserini +test1119 Q0 10973790 18 10.033919 Anserini +test1119 Q0 13347840 19 9.984371 Anserini +test1119 Q0 18154958 20 9.945982 Anserini +test1119 Q0 19262045 21 9.940070 Anserini +test1119 Q0 6784139 22 9.896825 Anserini +test1119 Q0 11774018 23 9.863018 Anserini +test1119 Q0 13162336 24 9.841578 Anserini +test1119 Q0 15808449 25 9.795704 Anserini +test1119 Q0 15808450 26 9.795704 Anserini +test1119 Q0 17411945 27 9.786982 Anserini +test1119 Q0 12237359 28 9.756229 Anserini +test1119 Q0 14060397 29 9.752723 Anserini +test1119 Q0 8077975 30 9.696768 Anserini +test112 Q0 20518573 1 23.224342 Anserini +test112 Q0 20518577 2 20.268221 Anserini +test112 Q0 20518576 3 17.518188 Anserini +test112 Q0 20518574 4 16.701036 Anserini +test112 Q0 16540418 5 16.567789 Anserini +test112 Q0 20518575 6 16.132479 Anserini +test112 Q0 102872 7 15.350854 Anserini +test112 Q0 16127387 8 13.750786 Anserini +test112 Q0 2600264 9 13.741987 Anserini +test112 Q0 974008 10 13.604490 Anserini +test112 Q0 16127393 11 13.604490 Anserini +test112 Q0 1589999 12 13.461276 Anserini +test112 Q0 3126784 13 13.385988 Anserini +test112 Q0 102832 14 13.183703 Anserini +test112 Q0 17414534 15 13.154087 Anserini +test112 Q0 10352899 16 12.980968 Anserini +test112 Q0 6450788 17 12.978155 Anserini +test112 Q0 3814615 18 12.764027 Anserini +test112 Q0 15571402 19 12.754731 Anserini +test112 Q0 2485455 20 12.653744 Anserini +test112 Q0 14874273 21 12.425832 Anserini +test112 Q0 5307913 22 12.401283 Anserini +test112 Q0 5836311 23 12.395974 Anserini +test112 Q0 10275394 24 12.368268 Anserini +test112 Q0 6400458 25 12.364637 Anserini +test112 Q0 14330486 26 12.364008 Anserini +test112 Q0 6001189 27 12.363061 Anserini +test112 Q0 8906274 28 12.343438 Anserini +test112 Q0 12542145 29 12.277760 Anserini +test112 Q0 6847252 30 12.270224 Anserini +test1120 Q0 8124416 1 10.691551 Anserini +test1120 Q0 18176345 2 9.895679 Anserini +test1120 Q0 19484588 3 9.821453 Anserini +test1120 Q0 19684711 4 9.588274 Anserini +test1120 Q0 19447657 5 9.533382 Anserini +test1120 Q0 16528231 6 9.462384 Anserini +test1120 Q0 19140177 7 9.377461 Anserini +test1120 Q0 6840492 8 9.375952 Anserini +test1120 Q0 18511683 9 9.360728 Anserini +test1120 Q0 20208256 10 9.213374 Anserini +test1120 Q0 19665765 11 9.073472 Anserini +test1120 Q0 15773940 12 9.054683 Anserini +test1120 Q0 4456301 13 9.054683 Anserini +test1120 Q0 15973518 14 8.967181 Anserini +test1120 Q0 13045178 15 8.953361 Anserini +test1120 Q0 5792815 16 8.935802 Anserini +test1120 Q0 20750714 17 8.924145 Anserini +test1120 Q0 8283583 18 8.874434 Anserini +test1120 Q0 12800935 19 8.849710 Anserini +test1120 Q0 12801030 20 8.849710 Anserini +test1120 Q0 10145401 21 8.837704 Anserini +test1120 Q0 20633010 22 8.811952 Anserini +test1120 Q0 15562731 23 8.803026 Anserini +test1120 Q0 19420714 24 8.769803 Anserini +test1120 Q0 19665776 25 8.756943 Anserini +test1120 Q0 20208249 26 8.723555 Anserini +test1120 Q0 19665775 27 8.711443 Anserini +test1120 Q0 19665780 28 8.711443 Anserini +test1120 Q0 6085265 29 8.666894 Anserini +test1120 Q0 6357028 30 8.649688 Anserini +test1121 Q0 9089852 1 10.536692 Anserini +test1121 Q0 9089817 2 10.519765 Anserini +test1121 Q0 14646047 3 10.441235 Anserini +test1121 Q0 9089853 4 10.383697 Anserini +test1121 Q0 11979549 5 10.338469 Anserini +test1121 Q0 16929529 6 10.294517 Anserini +test1121 Q0 16929531 7 10.294517 Anserini +test1121 Q0 11305293 8 10.221939 Anserini +test1121 Q0 1201382 9 10.071771 Anserini +test1121 Q0 9413048 10 9.992536 Anserini +test1121 Q0 19544752 11 9.971003 Anserini +test1121 Q0 20791170 12 9.725016 Anserini +test1121 Q0 9089813 13 9.685204 Anserini +test1121 Q0 9089821 14 9.685204 Anserini +test1121 Q0 1211134 15 9.648848 Anserini +test1121 Q0 4132752 16 9.495289 Anserini +test1121 Q0 6368046 17 9.459841 Anserini +test1121 Q0 6368044 18 9.404016 Anserini +test1121 Q0 12617141 19 9.351996 Anserini +test1121 Q0 13289797 20 9.308374 Anserini +test1121 Q0 17124496 21 9.247059 Anserini +test1121 Q0 12550151 22 9.247059 Anserini +test1121 Q0 12550152 23 9.247059 Anserini +test1121 Q0 13289799 24 9.232137 Anserini +test1121 Q0 168393 25 9.230886 Anserini +test1121 Q0 915586 26 9.216647 Anserini +test1121 Q0 11229677 27 9.197088 Anserini +test1121 Q0 11620745 28 9.192620 Anserini +test1121 Q0 17124514 29 9.173872 Anserini +test1121 Q0 11368838 30 9.173872 Anserini +test1122 Q0 151480 1 15.185559 Anserini +test1122 Q0 15554841 2 12.993940 Anserini +test1122 Q0 20537317 3 12.725749 Anserini +test1122 Q0 8856806 4 12.712779 Anserini +test1122 Q0 18922247 5 12.664716 Anserini +test1122 Q0 5873426 6 12.637185 Anserini +test1122 Q0 8856808 7 12.566193 Anserini +test1122 Q0 11130227 8 12.563279 Anserini +test1122 Q0 12356878 9 12.481565 Anserini +test1122 Q0 4318379 10 12.393524 Anserini +test1122 Q0 8464714 11 12.320922 Anserini +test1122 Q0 20282380 12 12.305981 Anserini +test1122 Q0 18922253 13 12.259001 Anserini +test1122 Q0 12870263 14 12.233437 Anserini +test1122 Q0 636133 15 12.193328 Anserini +test1122 Q0 11130220 16 12.103962 Anserini +test1122 Q0 18848645 17 12.067377 Anserini +test1122 Q0 18093815 18 12.051511 Anserini +test1122 Q0 3678143 19 11.878915 Anserini +test1122 Q0 3852042 20 11.806561 Anserini +test1122 Q0 6026187 21 11.757359 Anserini +test1122 Q0 18922248 22 11.714615 Anserini +test1122 Q0 7614343 23 11.690910 Anserini +test1122 Q0 8055582 24 11.673355 Anserini +test1122 Q0 12364157 25 11.637816 Anserini +test1122 Q0 9820242 26 11.573877 Anserini +test1122 Q0 19582539 27 11.505262 Anserini +test1122 Q0 1938922 28 11.452291 Anserini +test1122 Q0 13078460 29 11.394779 Anserini +test1122 Q0 9593393 30 11.389237 Anserini +test1123 Q0 18985862 1 14.121322 Anserini +test1123 Q0 18985863 2 13.993469 Anserini +test1123 Q0 18985865 3 13.582417 Anserini +test1123 Q0 18643501 4 12.820938 Anserini +test1123 Q0 12348753 5 12.517125 Anserini +test1123 Q0 17431249 6 12.356852 Anserini +test1123 Q0 18985867 7 12.350166 Anserini +test1123 Q0 18973698 8 12.286827 Anserini +test1123 Q0 3238734 9 12.182281 Anserini +test1123 Q0 18985864 10 12.144716 Anserini +test1123 Q0 12606468 11 11.696909 Anserini +test1123 Q0 16091433 12 11.675362 Anserini +test1123 Q0 14943108 13 11.675362 Anserini +test1123 Q0 12606469 14 11.639009 Anserini +test1123 Q0 15480769 15 11.559063 Anserini +test1123 Q0 18252279 16 11.489063 Anserini +test1123 Q0 7469172 17 11.127836 Anserini +test1123 Q0 7182459 18 11.065832 Anserini +test1123 Q0 15480768 19 11.015745 Anserini +test1123 Q0 17431250 20 10.957518 Anserini +test1123 Q0 17956654 21 10.940290 Anserini +test1123 Q0 14597467 22 10.792437 Anserini +test1123 Q0 14597442 23 10.792437 Anserini +test1123 Q0 18781567 24 10.622570 Anserini +test1123 Q0 17590487 25 10.482765 Anserini +test1123 Q0 16467887 26 10.386803 Anserini +test1123 Q0 17895457 27 10.386803 Anserini +test1123 Q0 17895476 28 10.314002 Anserini +test1123 Q0 11288605 29 10.217600 Anserini +test1123 Q0 13220074 30 10.184687 Anserini +test1124 Q0 3109636 1 15.836509 Anserini +test1124 Q0 1568643 2 15.222378 Anserini +test1124 Q0 12583488 3 15.122293 Anserini +test1124 Q0 1568654 4 14.979710 Anserini +test1124 Q0 4741959 5 14.835963 Anserini +test1124 Q0 11854551 6 14.805610 Anserini +test1124 Q0 6744837 7 14.656626 Anserini +test1124 Q0 16691339 8 14.355200 Anserini +test1124 Q0 2806127 9 14.291695 Anserini +test1124 Q0 16691334 10 14.238571 Anserini +test1124 Q0 4741958 11 14.210093 Anserini +test1124 Q0 8911656 12 14.164361 Anserini +test1124 Q0 20775059 13 14.145147 Anserini +test1124 Q0 1568649 14 14.062655 Anserini +test1124 Q0 6744830 15 14.031877 Anserini +test1124 Q0 15248964 16 14.012759 Anserini +test1124 Q0 19583390 17 13.995504 Anserini +test1124 Q0 5813925 18 13.921103 Anserini +test1124 Q0 3124726 19 13.893884 Anserini +test1124 Q0 20775055 20 13.851242 Anserini +test1124 Q0 1502399 21 13.844968 Anserini +test1124 Q0 661429 22 13.741697 Anserini +test1124 Q0 6820753 23 13.727757 Anserini +test1124 Q0 8856989 24 13.669502 Anserini +test1124 Q0 1568620 25 13.607562 Anserini +test1124 Q0 1568656 26 13.605289 Anserini +test1124 Q0 1568606 27 13.469095 Anserini +test1124 Q0 2489039 28 13.444891 Anserini +test1124 Q0 4427566 29 13.439212 Anserini +test1124 Q0 6539694 30 13.433468 Anserini +test1125 Q0 6431297 1 10.935934 Anserini +test1125 Q0 19269295 2 10.591162 Anserini +test1125 Q0 6081320 3 10.503588 Anserini +test1125 Q0 9713394 4 10.456730 Anserini +test1125 Q0 3344962 5 10.429010 Anserini +test1125 Q0 7501535 6 10.342164 Anserini +test1125 Q0 28943 7 10.289545 Anserini +test1125 Q0 4213475 8 10.194739 Anserini +test1125 Q0 20131055 9 10.025644 Anserini +test1125 Q0 8252237 10 10.018759 Anserini +test1125 Q0 10323570 11 10.014910 Anserini +test1125 Q0 6465035 12 9.982747 Anserini +test1125 Q0 5800323 13 9.975474 Anserini +test1125 Q0 1400701 14 9.968784 Anserini +test1125 Q0 4656503 15 9.957746 Anserini +test1125 Q0 10246893 16 9.942287 Anserini +test1125 Q0 9862258 17 9.925305 Anserini +test1125 Q0 9861974 18 9.892467 Anserini +test1125 Q0 749347 19 9.863976 Anserini +test1125 Q0 8857734 20 9.843089 Anserini +test1125 Q0 6411147 21 9.761819 Anserini +test1125 Q0 7347164 22 9.710220 Anserini +test1125 Q0 6005486 23 9.672714 Anserini +test1125 Q0 6753782 24 9.632902 Anserini +test1125 Q0 5799141 25 9.632902 Anserini +test1125 Q0 9894076 26 9.626949 Anserini +test1125 Q0 12243638 27 9.609212 Anserini +test1125 Q0 9408326 28 9.549319 Anserini +test1125 Q0 5794920 29 9.544810 Anserini +test1125 Q0 4998509 30 9.522509 Anserini +test1126 Q0 15870165 1 10.667070 Anserini +test1126 Q0 14622282 2 9.447019 Anserini +test1126 Q0 8907154 3 9.411176 Anserini +test1126 Q0 4203315 4 9.403694 Anserini +test1126 Q0 11720215 5 9.340370 Anserini +test1126 Q0 1456255 6 9.304564 Anserini +test1126 Q0 3161984 7 9.205274 Anserini +test1126 Q0 6615871 8 9.186205 Anserini +test1126 Q0 8235936 9 9.173893 Anserini +test1126 Q0 3748235 10 9.158300 Anserini +test1126 Q0 2236593 11 9.158300 Anserini +test1126 Q0 4351936 12 9.154094 Anserini +test1126 Q0 1839550 13 9.071766 Anserini +test1126 Q0 11102295 14 9.031596 Anserini +test1126 Q0 10990286 15 8.904434 Anserini +test1126 Q0 1538317 16 8.887553 Anserini +test1126 Q0 5129802 17 8.885201 Anserini +test1126 Q0 11538764 18 8.856449 Anserini +test1126 Q0 7874561 19 8.805197 Anserini +test1126 Q0 8355266 20 8.773295 Anserini +test1126 Q0 18621709 21 8.766788 Anserini +test1126 Q0 11272078 22 8.761142 Anserini +test1126 Q0 814598 23 8.760892 Anserini +test1126 Q0 11527627 24 8.737003 Anserini +test1126 Q0 16715994 25 8.729228 Anserini +test1126 Q0 1416780 26 8.723865 Anserini +test1126 Q0 15229735 27 8.716281 Anserini +test1126 Q0 9603380 28 8.711970 Anserini +test1126 Q0 1512238 29 8.701934 Anserini +test1126 Q0 8022455 30 8.657058 Anserini +test1127 Q0 12281391 1 21.915012 Anserini +test1127 Q0 13809662 2 21.702543 Anserini +test1127 Q0 17261533 3 20.887201 Anserini +test1127 Q0 20736023 4 20.648134 Anserini +test1127 Q0 14262900 5 20.637915 Anserini +test1127 Q0 10430802 6 20.573656 Anserini +test1127 Q0 16626766 7 20.505615 Anserini +test1127 Q0 17011590 8 20.304523 Anserini +test1127 Q0 20203759 9 20.265959 Anserini +test1127 Q0 12895579 10 20.197596 Anserini +test1127 Q0 11633571 11 20.179586 Anserini +test1127 Q0 17275798 12 20.138792 Anserini +test1127 Q0 16354272 13 20.004799 Anserini +test1127 Q0 17261532 14 19.971397 Anserini +test1127 Q0 13607465 15 19.962482 Anserini +test1127 Q0 9851513 16 19.961023 Anserini +test1127 Q0 20203760 17 19.950977 Anserini +test1127 Q0 14262898 18 19.939318 Anserini +test1127 Q0 9851510 19 19.894852 Anserini +test1127 Q0 16965756 20 19.894852 Anserini +test1127 Q0 12083676 21 19.869713 Anserini +test1127 Q0 16350494 22 19.840591 Anserini +test1127 Q0 15709993 23 19.813238 Anserini +test1127 Q0 15709991 24 19.813238 Anserini +test1127 Q0 9851541 25 19.813238 Anserini +test1127 Q0 9851557 26 19.813238 Anserini +test1127 Q0 14842144 27 19.813238 Anserini +test1127 Q0 11878376 28 19.739784 Anserini +test1127 Q0 16344976 29 19.728954 Anserini +test1127 Q0 11764750 30 19.694292 Anserini +test1128 Q0 4919967 1 20.735655 Anserini +test1128 Q0 2327125 2 19.984058 Anserini +test1128 Q0 4919969 3 18.671869 Anserini +test1128 Q0 4919960 4 18.338116 Anserini +test1128 Q0 19010538 5 18.046394 Anserini +test1128 Q0 4919970 6 17.756247 Anserini +test1128 Q0 18972602 7 17.595512 Anserini +test1128 Q0 19010689 8 17.559542 Anserini +test1128 Q0 2327127 9 17.551571 Anserini +test1128 Q0 9560448 10 17.390669 Anserini +test1128 Q0 4919965 11 17.023727 Anserini +test1128 Q0 4919971 12 16.816799 Anserini +test1128 Q0 2327124 13 16.216496 Anserini +test1128 Q0 4919979 14 16.212164 Anserini +test1128 Q0 4919964 15 16.178379 Anserini +test1128 Q0 4919972 16 16.084099 Anserini +test1128 Q0 19010542 17 16.054106 Anserini +test1128 Q0 19002061 18 16.006353 Anserini +test1128 Q0 19010614 19 15.903608 Anserini +test1128 Q0 2327123 20 15.735048 Anserini +test1128 Q0 2327126 21 15.584983 Anserini +test1128 Q0 2327118 22 15.236519 Anserini +test1128 Q0 19010615 23 15.068533 Anserini +test1128 Q0 4919963 24 14.996490 Anserini +test1128 Q0 4919973 25 14.786203 Anserini +test1128 Q0 2327116 26 14.706288 Anserini +test1128 Q0 20626614 27 14.627342 Anserini +test1128 Q0 5229704 28 14.627342 Anserini +test1128 Q0 4919968 29 14.537898 Anserini +test1128 Q0 20626617 30 14.226677 Anserini +test1129 Q0 13869515 1 11.327322 Anserini +test1129 Q0 9943069 2 10.982304 Anserini +test1129 Q0 12344583 3 10.888496 Anserini +test1129 Q0 2755591 4 10.766533 Anserini +test1129 Q0 5537380 5 10.704990 Anserini +test1129 Q0 17224448 6 10.617084 Anserini +test1129 Q0 15607628 7 10.585988 Anserini +test1129 Q0 9347365 8 10.373905 Anserini +test1129 Q0 17913476 9 10.327923 Anserini +test1129 Q0 8429112 10 10.278727 Anserini +test1129 Q0 7053635 11 10.065716 Anserini +test1129 Q0 14081688 12 10.011926 Anserini +test1129 Q0 8249634 13 10.003441 Anserini +test1129 Q0 3789627 14 9.961250 Anserini +test1129 Q0 1816085 15 9.911891 Anserini +test1129 Q0 10483488 16 9.875589 Anserini +test1129 Q0 5386523 17 9.840086 Anserini +test1129 Q0 6326281 18 9.822108 Anserini +test1129 Q0 5454301 19 9.801613 Anserini +test1129 Q0 3858988 20 9.743910 Anserini +test1129 Q0 11281504 21 9.730209 Anserini +test1129 Q0 13280892 22 9.724355 Anserini +test1129 Q0 19989303 23 9.694004 Anserini +test1129 Q0 18069505 24 9.679287 Anserini +test1129 Q0 11161393 25 9.649643 Anserini +test1129 Q0 18069510 26 9.609056 Anserini +test1129 Q0 9209204 27 9.579400 Anserini +test1129 Q0 14081689 28 9.567472 Anserini +test1129 Q0 16234483 29 9.560708 Anserini +test1129 Q0 5493777 30 9.537819 Anserini +test113 Q0 6558695 1 12.454940 Anserini +test113 Q0 6558693 2 12.303598 Anserini +test113 Q0 6558682 3 11.937992 Anserini +test113 Q0 4179453 4 11.738788 Anserini +test113 Q0 8099773 5 11.687277 Anserini +test113 Q0 8099761 6 11.407432 Anserini +test113 Q0 13968648 7 11.285987 Anserini +test113 Q0 4179457 8 11.192176 Anserini +test113 Q0 10534713 9 10.577073 Anserini +test113 Q0 7403512 10 10.448269 Anserini +test113 Q0 7403502 11 10.448269 Anserini +test113 Q0 5481318 12 10.427282 Anserini +test113 Q0 8099772 13 10.040165 Anserini +test113 Q0 3165415 14 10.035397 Anserini +test113 Q0 1517079 15 10.008813 Anserini +test113 Q0 10534721 16 9.986676 Anserini +test113 Q0 6558694 17 9.722566 Anserini +test113 Q0 11419002 18 9.678732 Anserini +test113 Q0 6558690 19 9.492380 Anserini +test113 Q0 5474719 20 9.490602 Anserini +test113 Q0 6558691 21 9.452344 Anserini +test113 Q0 9332264 22 9.426668 Anserini +test113 Q0 9714479 23 9.271295 Anserini +test113 Q0 13127427 24 9.261127 Anserini +test113 Q0 1340895 25 9.253480 Anserini +test113 Q0 8099770 26 9.251198 Anserini +test113 Q0 8099768 27 9.188104 Anserini +test113 Q0 3726451 28 9.166292 Anserini +test113 Q0 184585 29 9.141714 Anserini +test113 Q0 1517073 30 9.136339 Anserini +test1130 Q0 4026128 1 15.561041 Anserini +test1130 Q0 16243863 2 14.901847 Anserini +test1130 Q0 16243895 3 14.473735 Anserini +test1130 Q0 7784925 4 14.375126 Anserini +test1130 Q0 8726386 5 14.340430 Anserini +test1130 Q0 16243868 6 14.296224 Anserini +test1130 Q0 7784964 7 13.722362 Anserini +test1130 Q0 4026127 8 13.644876 Anserini +test1130 Q0 12255517 9 13.526113 Anserini +test1130 Q0 16243864 10 13.502908 Anserini +test1130 Q0 16243847 11 13.499670 Anserini +test1130 Q0 5996804 12 13.487593 Anserini +test1130 Q0 5996800 13 13.256247 Anserini +test1130 Q0 16243910 14 13.202464 Anserini +test1130 Q0 10549121 15 13.057516 Anserini +test1130 Q0 10549120 16 12.985524 Anserini +test1130 Q0 7784935 17 12.821538 Anserini +test1130 Q0 16243953 18 12.724320 Anserini +test1130 Q0 7784939 19 12.580976 Anserini +test1130 Q0 1645550 20 12.568460 Anserini +test1130 Q0 16243952 21 12.516983 Anserini +test1130 Q0 16243892 22 12.509547 Anserini +test1130 Q0 7784948 23 12.384993 Anserini +test1130 Q0 4453645 24 12.353436 Anserini +test1130 Q0 7784953 25 12.339944 Anserini +test1130 Q0 16243859 26 12.252901 Anserini +test1130 Q0 16243939 27 12.117519 Anserini +test1130 Q0 7784933 28 12.115242 Anserini +test1130 Q0 5996706 29 12.078979 Anserini +test1130 Q0 70979 30 12.036007 Anserini +test1131 Q0 13805365 1 19.731607 Anserini +test1131 Q0 18820345 2 19.418871 Anserini +test1131 Q0 13805359 3 19.287395 Anserini +test1131 Q0 10503191 4 18.800936 Anserini +test1131 Q0 8316067 5 18.598999 Anserini +test1131 Q0 3790098 6 18.422138 Anserini +test1131 Q0 6915959 7 18.365196 Anserini +test1131 Q0 18553304 8 18.281523 Anserini +test1131 Q0 17628855 9 18.140947 Anserini +test1131 Q0 5282256 10 18.076065 Anserini +test1131 Q0 6915960 11 18.056252 Anserini +test1131 Q0 11174680 12 17.851616 Anserini +test1131 Q0 12860898 13 17.850309 Anserini +test1131 Q0 9978623 14 17.818987 Anserini +test1131 Q0 7426463 15 17.739811 Anserini +test1131 Q0 8053364 16 17.534935 Anserini +test1131 Q0 9978628 17 17.382469 Anserini +test1131 Q0 11174635 18 17.329805 Anserini +test1131 Q0 8316033 19 17.246914 Anserini +test1131 Q0 6915993 20 17.213285 Anserini +test1131 Q0 20071633 21 17.212976 Anserini +test1131 Q0 8316073 22 17.191824 Anserini +test1131 Q0 4187287 23 17.171791 Anserini +test1131 Q0 8053367 24 17.151056 Anserini +test1131 Q0 7426413 25 17.126076 Anserini +test1131 Q0 6337116 26 17.051508 Anserini +test1131 Q0 1208672 27 17.008125 Anserini +test1131 Q0 8426537 28 16.976873 Anserini +test1131 Q0 1824927 29 16.950668 Anserini +test1131 Q0 15974794 30 16.950668 Anserini +test1132 Q0 18851225 1 22.307014 Anserini +test1132 Q0 2345167 2 21.691219 Anserini +test1132 Q0 9843690 3 21.383324 Anserini +test1132 Q0 3776589 4 21.342007 Anserini +test1132 Q0 19074374 5 21.189138 Anserini +test1132 Q0 3776606 6 20.564232 Anserini +test1132 Q0 2005541 7 20.330555 Anserini +test1132 Q0 6602144 8 19.878386 Anserini +test1132 Q0 4508379 9 19.187103 Anserini +test1132 Q0 4404800 10 18.826469 Anserini +test1132 Q0 4265227 11 18.806541 Anserini +test1132 Q0 13328200 12 18.054619 Anserini +test1132 Q0 9178480 13 17.973919 Anserini +test1132 Q0 2585985 14 17.904110 Anserini +test1132 Q0 2768607 15 17.697523 Anserini +test1132 Q0 17969055 16 17.608683 Anserini +test1132 Q0 8751828 17 17.599892 Anserini +test1132 Q0 2506842 18 17.566883 Anserini +test1132 Q0 500031 19 17.474680 Anserini +test1132 Q0 2345168 20 17.471331 Anserini +test1132 Q0 17873720 21 17.222746 Anserini +test1132 Q0 16673521 22 17.151342 Anserini +test1132 Q0 7110163 23 16.944813 Anserini +test1132 Q0 17969053 24 16.491272 Anserini +test1132 Q0 14409617 25 16.480051 Anserini +test1132 Q0 16825902 26 16.476105 Anserini +test1132 Q0 3776615 27 16.287624 Anserini +test1132 Q0 2700484 28 16.265627 Anserini +test1132 Q0 17565916 29 16.241333 Anserini +test1132 Q0 5096501 30 16.220432 Anserini +test1133 Q0 17949987 1 10.869723 Anserini +test1133 Q0 18202238 2 10.736975 Anserini +test1133 Q0 7169898 3 9.497036 Anserini +test1133 Q0 17628874 4 9.309018 Anserini +test1133 Q0 971440 5 9.194435 Anserini +test1133 Q0 1188931 6 9.175392 Anserini +test1133 Q0 12356189 7 9.099784 Anserini +test1133 Q0 11539814 8 9.079808 Anserini +test1133 Q0 18769139 9 9.045247 Anserini +test1133 Q0 3372071 10 9.019111 Anserini +test1133 Q0 642995 11 8.942173 Anserini +test1133 Q0 17949903 12 8.929994 Anserini +test1133 Q0 11162717 13 8.902323 Anserini +test1133 Q0 20643639 14 8.887816 Anserini +test1133 Q0 9190000 15 8.887816 Anserini +test1133 Q0 8286369 16 8.819924 Anserini +test1133 Q0 8401064 17 8.819924 Anserini +test1133 Q0 12820010 18 8.779105 Anserini +test1133 Q0 5603772 19 8.776543 Anserini +test1133 Q0 6351062 20 8.747334 Anserini +test1133 Q0 8489255 21 8.728303 Anserini +test1133 Q0 12887 22 8.701477 Anserini +test1133 Q0 12576064 23 8.631531 Anserini +test1133 Q0 6699051 24 8.627551 Anserini +test1133 Q0 4780798 25 8.611259 Anserini +test1133 Q0 6929998 26 8.607025 Anserini +test1133 Q0 245461 27 8.572483 Anserini +test1133 Q0 18190799 28 8.572483 Anserini +test1133 Q0 13582238 29 8.566879 Anserini +test1133 Q0 10800713 30 8.565833 Anserini +test1134 Q0 15961619 1 11.278495 Anserini +test1134 Q0 11756026 2 10.473461 Anserini +test1134 Q0 5220861 3 10.123463 Anserini +test1134 Q0 3213958 4 9.993312 Anserini +test1134 Q0 6750238 5 9.981302 Anserini +test1134 Q0 11317372 6 9.857906 Anserini +test1134 Q0 4825943 7 9.802177 Anserini +test1134 Q0 15056366 8 9.780675 Anserini +test1134 Q0 3940174 9 9.689557 Anserini +test1134 Q0 4721075 10 9.657563 Anserini +test1134 Q0 12088342 11 9.607255 Anserini +test1134 Q0 15636883 12 9.455982 Anserini +test1134 Q0 3201046 13 9.368584 Anserini +test1134 Q0 11140982 14 9.365676 Anserini +test1134 Q0 15636882 15 9.363369 Anserini +test1134 Q0 14714956 16 9.332865 Anserini +test1134 Q0 7654080 17 9.328643 Anserini +test1134 Q0 20371108 18 9.286730 Anserini +test1134 Q0 579587 19 9.241610 Anserini +test1134 Q0 19398840 20 9.172995 Anserini +test1134 Q0 11968244 21 9.157356 Anserini +test1134 Q0 579616 22 9.125154 Anserini +test1134 Q0 6926359 23 9.115988 Anserini +test1134 Q0 8996798 24 9.106529 Anserini +test1134 Q0 14840217 25 9.106453 Anserini +test1134 Q0 8998146 26 9.078823 Anserini +test1134 Q0 10245157 27 9.052702 Anserini +test1134 Q0 2561553 28 9.046959 Anserini +test1134 Q0 6834808 29 9.033253 Anserini +test1134 Q0 7678520 30 9.024209 Anserini +test1135 Q0 3611678 1 18.098738 Anserini +test1135 Q0 3611675 2 16.924320 Anserini +test1135 Q0 14363477 3 16.143291 Anserini +test1135 Q0 4408585 4 15.867699 Anserini +test1135 Q0 101648 5 15.284598 Anserini +test1135 Q0 101640 6 15.116594 Anserini +test1135 Q0 14363469 7 14.979251 Anserini +test1135 Q0 16060554 8 14.979251 Anserini +test1135 Q0 101687 9 14.907715 Anserini +test1135 Q0 16060555 10 14.870058 Anserini +test1135 Q0 101651 11 14.800465 Anserini +test1135 Q0 3611677 12 14.506447 Anserini +test1135 Q0 101653 13 14.217779 Anserini +test1135 Q0 101655 14 14.206906 Anserini +test1135 Q0 101647 15 14.062236 Anserini +test1135 Q0 6157314 16 13.845839 Anserini +test1135 Q0 10815365 17 13.798994 Anserini +test1135 Q0 3061912 18 13.730730 Anserini +test1135 Q0 5294377 19 13.712864 Anserini +test1135 Q0 8319250 20 13.627934 Anserini +test1135 Q0 9907306 21 13.597967 Anserini +test1135 Q0 1508617 22 13.544170 Anserini +test1135 Q0 5510831 23 13.537071 Anserini +test1135 Q0 14363470 24 13.506693 Anserini +test1135 Q0 12557660 25 13.461551 Anserini +test1135 Q0 11685947 26 13.403732 Anserini +test1135 Q0 12557657 27 13.374388 Anserini +test1135 Q0 3061914 28 13.285463 Anserini +test1135 Q0 1508636 29 13.134702 Anserini +test1135 Q0 6104797 30 13.032232 Anserini +test1136 Q0 1173071 1 16.118813 Anserini +test1136 Q0 11106286 2 15.764217 Anserini +test1136 Q0 1173102 3 15.136763 Anserini +test1136 Q0 924255 4 14.718325 Anserini +test1136 Q0 11246268 5 14.704599 Anserini +test1136 Q0 924244 6 14.634922 Anserini +test1136 Q0 11246264 7 14.600901 Anserini +test1136 Q0 1173078 8 14.395473 Anserini +test1136 Q0 1173072 9 14.357365 Anserini +test1136 Q0 1173126 10 14.172739 Anserini +test1136 Q0 1174120 11 13.803988 Anserini +test1136 Q0 11106287 12 13.768683 Anserini +test1136 Q0 1173082 13 13.768683 Anserini +test1136 Q0 9649044 14 13.568624 Anserini +test1136 Q0 9649048 15 13.568624 Anserini +test1136 Q0 6916194 16 13.542130 Anserini +test1136 Q0 1173920 17 13.482880 Anserini +test1136 Q0 924249 18 13.482698 Anserini +test1136 Q0 12368664 19 13.471554 Anserini +test1136 Q0 19818682 20 13.408213 Anserini +test1136 Q0 1177090 21 13.364820 Anserini +test1136 Q0 6916195 22 13.352036 Anserini +test1136 Q0 9454340 23 13.338322 Anserini +test1136 Q0 5208493 24 13.295089 Anserini +test1136 Q0 16221520 25 13.283051 Anserini +test1136 Q0 16221522 26 13.283051 Anserini +test1136 Q0 12368671 27 13.282552 Anserini +test1136 Q0 2800203 28 13.282552 Anserini +test1136 Q0 2800214 29 13.282552 Anserini +test1136 Q0 7496808 30 13.277673 Anserini +test1137 Q0 14874399 1 11.429823 Anserini +test1137 Q0 2618640 2 10.852554 Anserini +test1137 Q0 7154780 3 10.648294 Anserini +test1137 Q0 5263981 4 10.535361 Anserini +test1137 Q0 14234505 5 10.417437 Anserini +test1137 Q0 3568514 6 10.346891 Anserini +test1137 Q0 5393872 7 10.170117 Anserini +test1137 Q0 16001854 8 10.143990 Anserini +test1137 Q0 7392356 9 10.137500 Anserini +test1137 Q0 4466911 10 10.124368 Anserini +test1137 Q0 2618653 11 10.114853 Anserini +test1137 Q0 13674360 12 10.049826 Anserini +test1137 Q0 3206053 13 9.991647 Anserini +test1137 Q0 5393874 14 9.832126 Anserini +test1137 Q0 14234506 15 9.826742 Anserini +test1137 Q0 19559352 16 9.826560 Anserini +test1137 Q0 17052201 17 9.816928 Anserini +test1137 Q0 880644 18 9.790368 Anserini +test1137 Q0 2618650 19 9.776344 Anserini +test1137 Q0 13223355 20 9.764785 Anserini +test1137 Q0 15064062 21 9.719341 Anserini +test1137 Q0 14674144 22 9.590627 Anserini +test1137 Q0 3557925 23 9.533405 Anserini +test1137 Q0 16093785 24 9.508531 Anserini +test1137 Q0 3568515 25 9.508456 Anserini +test1137 Q0 10878760 26 9.487811 Anserini +test1137 Q0 7154809 27 9.470063 Anserini +test1137 Q0 4437814 28 9.450026 Anserini +test1137 Q0 9067976 29 9.445420 Anserini +test1137 Q0 2106733 30 9.436036 Anserini +test1138 Q0 20267984 1 15.535620 Anserini +test1138 Q0 2356581 2 14.910885 Anserini +test1138 Q0 12655806 3 14.549420 Anserini +test1138 Q0 20267973 4 14.222242 Anserini +test1138 Q0 4759974 5 13.896797 Anserini +test1138 Q0 3637194 6 13.850475 Anserini +test1138 Q0 20267972 7 13.778837 Anserini +test1138 Q0 20267971 8 13.621396 Anserini +test1138 Q0 7212238 9 12.876074 Anserini +test1138 Q0 2675908 10 12.762767 Anserini +test1138 Q0 12823926 11 12.662496 Anserini +test1138 Q0 742218 12 12.639166 Anserini +test1138 Q0 6110753 13 12.615065 Anserini +test1138 Q0 20267978 14 12.435021 Anserini +test1138 Q0 494573 15 12.334219 Anserini +test1138 Q0 17898802 16 12.285785 Anserini +test1138 Q0 754224 17 12.262869 Anserini +test1138 Q0 371467 18 12.260093 Anserini +test1138 Q0 20267981 19 12.228094 Anserini +test1138 Q0 9978723 20 12.223351 Anserini +test1138 Q0 9978725 21 12.178826 Anserini +test1138 Q0 1454932 22 12.122137 Anserini +test1138 Q0 20267979 23 12.102667 Anserini +test1138 Q0 2096053 24 12.095649 Anserini +test1138 Q0 7212239 25 12.060765 Anserini +test1138 Q0 754237 26 12.005062 Anserini +test1138 Q0 754175 27 12.005062 Anserini +test1138 Q0 550176 28 11.976929 Anserini +test1138 Q0 1454923 29 11.967408 Anserini +test1138 Q0 10197919 30 11.967408 Anserini +test1139 Q0 3553681 1 21.268093 Anserini +test1139 Q0 3553679 2 21.243603 Anserini +test1139 Q0 2971742 3 19.298719 Anserini +test1139 Q0 3553678 4 19.169941 Anserini +test1139 Q0 3553680 5 19.162344 Anserini +test1139 Q0 20490213 6 19.069702 Anserini +test1139 Q0 5287136 7 18.597057 Anserini +test1139 Q0 5287137 8 18.401287 Anserini +test1139 Q0 12563059 9 17.828806 Anserini +test1139 Q0 19066 10 17.670147 Anserini +test1139 Q0 7886179 11 17.316950 Anserini +test1139 Q0 12563060 12 17.268730 Anserini +test1139 Q0 6549792 13 16.723160 Anserini +test1139 Q0 7526219 14 16.536053 Anserini +test1139 Q0 19064 15 16.395096 Anserini +test1139 Q0 985006 16 15.548942 Anserini +test1139 Q0 1799143 17 13.292900 Anserini +test1139 Q0 5605762 18 12.929237 Anserini +test1139 Q0 5605765 19 12.929237 Anserini +test1139 Q0 3552178 20 12.591146 Anserini +test1139 Q0 3552180 21 12.532467 Anserini +test1139 Q0 20490223 22 12.518031 Anserini +test1139 Q0 699645 23 12.383419 Anserini +test1139 Q0 9630550 24 12.026505 Anserini +test1139 Q0 5983570 25 11.966860 Anserini +test1139 Q0 1797986 26 11.862492 Anserini +test1139 Q0 20570551 27 11.792198 Anserini +test1139 Q0 20516610 28 11.764683 Anserini +test1139 Q0 20530664 29 11.744099 Anserini +test1139 Q0 20516611 30 11.734820 Anserini +test114 Q0 5483611 1 18.102907 Anserini +test114 Q0 5483606 2 17.966610 Anserini +test114 Q0 6408786 3 16.552031 Anserini +test114 Q0 791699 4 16.446075 Anserini +test114 Q0 13094902 5 16.264948 Anserini +test114 Q0 791728 6 16.100718 Anserini +test114 Q0 791663 7 15.722942 Anserini +test114 Q0 18585110 8 15.428142 Anserini +test114 Q0 616796 9 15.392634 Anserini +test114 Q0 791656 10 15.366308 Anserini +test114 Q0 791712 11 15.338394 Anserini +test114 Q0 17299376 12 15.269831 Anserini +test114 Q0 1420373 13 15.245468 Anserini +test114 Q0 791708 14 15.223253 Anserini +test114 Q0 1590786 15 15.205761 Anserini +test114 Q0 791726 16 15.203926 Anserini +test114 Q0 13094905 17 15.177033 Anserini +test114 Q0 791657 18 15.100254 Anserini +test114 Q0 8843605 19 15.087305 Anserini +test114 Q0 5704136 20 15.052879 Anserini +test114 Q0 13221361 21 15.015821 Anserini +test114 Q0 168628 22 14.951787 Anserini +test114 Q0 791661 23 14.950254 Anserini +test114 Q0 791664 24 14.885603 Anserini +test114 Q0 6408789 25 14.867520 Anserini +test114 Q0 13221364 26 14.815334 Anserini +test114 Q0 791719 27 14.795692 Anserini +test114 Q0 791660 28 14.757044 Anserini +test114 Q0 18813639 29 14.756274 Anserini +test114 Q0 16596799 30 14.657148 Anserini +test1140 Q0 11804701 1 15.171452 Anserini +test1140 Q0 11804707 2 15.018721 Anserini +test1140 Q0 7182946 3 13.815038 Anserini +test1140 Q0 7182945 4 13.741849 Anserini +test1140 Q0 15839965 5 13.065802 Anserini +test1140 Q0 11809242 6 12.921335 Anserini +test1140 Q0 8287459 7 12.761194 Anserini +test1140 Q0 4964722 8 12.710018 Anserini +test1140 Q0 8287461 9 12.695019 Anserini +test1140 Q0 17704668 10 12.632539 Anserini +test1140 Q0 11780236 11 12.617365 Anserini +test1140 Q0 18954366 12 12.589596 Anserini +test1140 Q0 15255953 13 12.484937 Anserini +test1140 Q0 16855263 14 12.465857 Anserini +test1140 Q0 6059159 15 12.440314 Anserini +test1140 Q0 15839954 16 12.356102 Anserini +test1140 Q0 16221638 17 12.304333 Anserini +test1140 Q0 16517476 18 12.279344 Anserini +test1140 Q0 15506520 19 12.278198 Anserini +test1140 Q0 15073214 20 12.275843 Anserini +test1140 Q0 20468536 21 12.144135 Anserini +test1140 Q0 15380033 22 12.115276 Anserini +test1140 Q0 1614845 23 12.094620 Anserini +test1140 Q0 8371306 24 12.068901 Anserini +test1140 Q0 8247181 25 12.031888 Anserini +test1140 Q0 16221637 26 12.007062 Anserini +test1140 Q0 11809245 27 11.976911 Anserini +test1140 Q0 1614848 28 11.951244 Anserini +test1140 Q0 7414134 29 11.916371 Anserini +test1140 Q0 8247187 30 11.903715 Anserini +test1141 Q0 4842047 1 28.159777 Anserini +test1141 Q0 4842051 2 28.159777 Anserini +test1141 Q0 9486081 3 27.332327 Anserini +test1141 Q0 1598006 4 25.441772 Anserini +test1141 Q0 1312109 5 24.816460 Anserini +test1141 Q0 1312081 6 24.547127 Anserini +test1141 Q0 4843070 7 24.372591 Anserini +test1141 Q0 19555646 8 24.100693 Anserini +test1141 Q0 1598016 9 23.984583 Anserini +test1141 Q0 4842339 10 23.469488 Anserini +test1141 Q0 2835414 11 22.929501 Anserini +test1141 Q0 1598007 12 22.735640 Anserini +test1141 Q0 8686114 13 22.566236 Anserini +test1141 Q0 15785225 14 22.393587 Anserini +test1141 Q0 15956287 15 22.192585 Anserini +test1141 Q0 4434162 16 21.995300 Anserini +test1141 Q0 9585409 17 21.801409 Anserini +test1141 Q0 16631665 18 21.788038 Anserini +test1141 Q0 10523428 19 21.567766 Anserini +test1141 Q0 2153671 20 21.098370 Anserini +test1141 Q0 1402204 21 21.098370 Anserini +test1141 Q0 19021468 22 20.542974 Anserini +test1141 Q0 1455522 23 20.542974 Anserini +test1141 Q0 4842049 24 20.522198 Anserini +test1141 Q0 2811356 25 20.361454 Anserini +test1141 Q0 10374586 26 20.361454 Anserini +test1141 Q0 7736537 27 20.361454 Anserini +test1141 Q0 16273939 28 20.361454 Anserini +test1141 Q0 4783402 29 20.361454 Anserini +test1141 Q0 16502000 30 20.183245 Anserini +test1142 Q0 16833770 1 25.900625 Anserini +test1142 Q0 16833773 2 25.875847 Anserini +test1142 Q0 650498 3 23.556625 Anserini +test1142 Q0 15563119 4 23.105621 Anserini +test1142 Q0 5497747 5 22.973877 Anserini +test1142 Q0 6542698 6 22.727283 Anserini +test1142 Q0 14523695 7 22.658678 Anserini +test1142 Q0 15563122 8 22.606886 Anserini +test1142 Q0 5497744 9 21.819012 Anserini +test1142 Q0 14523699 10 21.801390 Anserini +test1142 Q0 14211057 11 21.748440 Anserini +test1142 Q0 1277603 12 21.592506 Anserini +test1142 Q0 1277597 13 21.473703 Anserini +test1142 Q0 14211052 14 21.335865 Anserini +test1142 Q0 14211054 15 21.116962 Anserini +test1142 Q0 13072190 16 21.061390 Anserini +test1142 Q0 1277602 17 21.053812 Anserini +test1142 Q0 14523694 18 20.824245 Anserini +test1142 Q0 5322140 19 20.600542 Anserini +test1142 Q0 8913902 20 20.545784 Anserini +test1142 Q0 14523697 21 20.423544 Anserini +test1142 Q0 9456008 22 20.121820 Anserini +test1142 Q0 14523688 23 19.886684 Anserini +test1142 Q0 6542697 24 19.851595 Anserini +test1142 Q0 14643295 25 19.786543 Anserini +test1142 Q0 7545630 26 19.772972 Anserini +test1142 Q0 1277650 27 19.479855 Anserini +test1142 Q0 6542701 28 19.388018 Anserini +test1142 Q0 14523700 29 19.357956 Anserini +test1142 Q0 5497737 30 18.910053 Anserini +test1143 Q0 2854629 1 13.559207 Anserini +test1143 Q0 2854689 2 13.122945 Anserini +test1143 Q0 8222613 3 12.691242 Anserini +test1143 Q0 549365 4 12.427973 Anserini +test1143 Q0 549361 5 12.244115 Anserini +test1143 Q0 1990115 6 12.138981 Anserini +test1143 Q0 7574169 7 12.079396 Anserini +test1143 Q0 2891096 8 12.049151 Anserini +test1143 Q0 5608216 9 12.044231 Anserini +test1143 Q0 1693171 10 11.972109 Anserini +test1143 Q0 2891119 11 11.965857 Anserini +test1143 Q0 2891112 12 11.805300 Anserini +test1143 Q0 11095982 13 11.785458 Anserini +test1143 Q0 13846769 14 11.760797 Anserini +test1143 Q0 15049805 15 11.737869 Anserini +test1143 Q0 5608215 16 11.688925 Anserini +test1143 Q0 5608214 17 11.677683 Anserini +test1143 Q0 1831720 18 11.663126 Anserini +test1143 Q0 6212116 19 11.585347 Anserini +test1143 Q0 2745263 20 11.579858 Anserini +test1143 Q0 12326057 21 11.571091 Anserini +test1143 Q0 16746794 22 11.552472 Anserini +test1143 Q0 14921680 23 11.535754 Anserini +test1143 Q0 12326112 24 11.523470 Anserini +test1143 Q0 11830651 25 11.517719 Anserini +test1143 Q0 12024911 26 11.517719 Anserini +test1143 Q0 1756701 27 11.463314 Anserini +test1143 Q0 19961548 28 11.439579 Anserini +test1143 Q0 16750106 29 11.433067 Anserini +test1143 Q0 17311040 30 11.392023 Anserini +test1144 Q0 7062477 1 21.798326 Anserini +test1144 Q0 6304748 2 21.177685 Anserini +test1144 Q0 10581701 3 18.768761 Anserini +test1144 Q0 14665099 4 18.746883 Anserini +test1144 Q0 14213099 5 18.674080 Anserini +test1144 Q0 7537432 6 18.637810 Anserini +test1144 Q0 18634392 7 18.416195 Anserini +test1144 Q0 13698296 8 18.324511 Anserini +test1144 Q0 14665030 9 18.245522 Anserini +test1144 Q0 16732478 10 18.143345 Anserini +test1144 Q0 15087740 11 17.869257 Anserini +test1144 Q0 3172372 12 17.685392 Anserini +test1144 Q0 686416 13 17.574493 Anserini +test1144 Q0 2050496 14 17.457342 Anserini +test1144 Q0 15364670 15 17.434288 Anserini +test1144 Q0 7896588 16 17.313433 Anserini +test1144 Q0 5054704 17 17.236002 Anserini +test1144 Q0 14665029 18 17.155050 Anserini +test1144 Q0 15363451 19 17.117861 Anserini +test1144 Q0 14665047 20 17.091970 Anserini +test1144 Q0 15734156 21 17.035398 Anserini +test1144 Q0 2814784 22 16.977364 Anserini +test1144 Q0 15363440 23 16.963140 Anserini +test1144 Q0 18716056 24 16.955376 Anserini +test1144 Q0 9664207 25 16.937784 Anserini +test1144 Q0 7537450 26 16.616575 Anserini +test1144 Q0 2444211 27 16.596132 Anserini +test1144 Q0 12077300 28 16.553749 Anserini +test1144 Q0 4836398 29 16.434818 Anserini +test1144 Q0 8384785 30 16.418262 Anserini +test1145 Q0 19763273 1 12.380379 Anserini +test1145 Q0 10198338 2 12.364499 Anserini +test1145 Q0 9256650 3 12.278284 Anserini +test1145 Q0 4285406 4 12.272126 Anserini +test1145 Q0 4757416 5 12.257831 Anserini +test1145 Q0 9256651 6 12.254609 Anserini +test1145 Q0 19763275 7 12.254609 Anserini +test1145 Q0 1706953 8 12.248812 Anserini +test1145 Q0 20472481 9 12.241530 Anserini +test1145 Q0 4285410 10 12.202011 Anserini +test1145 Q0 18699631 11 12.027147 Anserini +test1145 Q0 20595390 12 11.896637 Anserini +test1145 Q0 13242400 13 11.835871 Anserini +test1145 Q0 10541314 14 11.824096 Anserini +test1145 Q0 4085048 15 11.796865 Anserini +test1145 Q0 8107469 16 11.770961 Anserini +test1145 Q0 13242402 17 11.736647 Anserini +test1145 Q0 2036345 18 11.708352 Anserini +test1145 Q0 14830474 19 11.706409 Anserini +test1145 Q0 14211508 20 11.701303 Anserini +test1145 Q0 20409408 21 11.692430 Anserini +test1145 Q0 14961802 22 11.685156 Anserini +test1145 Q0 8107476 23 11.665103 Anserini +test1145 Q0 8047410 24 11.634214 Anserini +test1145 Q0 1666639 25 11.619321 Anserini +test1145 Q0 2036340 26 11.617298 Anserini +test1145 Q0 8707868 27 11.558052 Anserini +test1145 Q0 16043019 28 11.548572 Anserini +test1145 Q0 10541273 29 11.536180 Anserini +test1145 Q0 832372 30 11.536180 Anserini +test1146 Q0 1614738 1 19.008677 Anserini +test1146 Q0 1614695 2 17.994478 Anserini +test1146 Q0 16203098 3 17.565239 Anserini +test1146 Q0 16203068 4 17.229080 Anserini +test1146 Q0 16510363 5 15.768712 Anserini +test1146 Q0 19306127 6 15.757887 Anserini +test1146 Q0 10107397 7 15.579487 Anserini +test1146 Q0 10107410 8 15.564830 Anserini +test1146 Q0 12426049 9 15.364418 Anserini +test1146 Q0 1614701 10 15.306852 Anserini +test1146 Q0 20154798 11 15.122762 Anserini +test1146 Q0 20817338 12 15.095947 Anserini +test1146 Q0 16203096 13 15.074071 Anserini +test1146 Q0 1614737 14 14.903515 Anserini +test1146 Q0 8275924 15 14.897140 Anserini +test1146 Q0 10903022 16 14.810246 Anserini +test1146 Q0 1614729 17 14.786289 Anserini +test1146 Q0 12628974 18 14.737337 Anserini +test1146 Q0 16203091 19 14.673390 Anserini +test1146 Q0 9808294 20 14.661508 Anserini +test1146 Q0 18550844 21 14.592453 Anserini +test1146 Q0 1614700 22 14.591848 Anserini +test1146 Q0 14535247 23 14.585117 Anserini +test1146 Q0 14535266 24 14.585117 Anserini +test1146 Q0 15610183 25 14.567106 Anserini +test1146 Q0 19306126 26 14.463821 Anserini +test1146 Q0 12426048 27 14.428636 Anserini +test1146 Q0 16203081 28 14.414213 Anserini +test1146 Q0 16203097 29 14.389124 Anserini +test1146 Q0 16434552 30 14.326420 Anserini +test1147 Q0 2821110 1 17.558559 Anserini +test1147 Q0 2966545 2 16.965176 Anserini +test1147 Q0 2821186 3 16.099749 Anserini +test1147 Q0 19441631 4 15.813009 Anserini +test1147 Q0 2821135 5 14.742063 Anserini +test1147 Q0 2821111 6 14.084654 Anserini +test1147 Q0 2821185 7 14.015521 Anserini +test1147 Q0 2821178 8 13.956628 Anserini +test1147 Q0 2821109 9 13.913446 Anserini +test1147 Q0 9749131 10 13.651340 Anserini +test1147 Q0 2966561 11 13.359675 Anserini +test1147 Q0 2966544 12 13.292483 Anserini +test1147 Q0 2966566 13 13.218400 Anserini +test1147 Q0 2025271 14 13.018558 Anserini +test1147 Q0 1617175 15 12.927391 Anserini +test1147 Q0 8384332 16 12.702837 Anserini +test1147 Q0 2966555 17 12.682748 Anserini +test1147 Q0 2821139 18 12.605502 Anserini +test1147 Q0 13114533 19 12.580977 Anserini +test1147 Q0 6789014 20 12.526243 Anserini +test1147 Q0 4172522 21 12.515526 Anserini +test1147 Q0 9733054 22 12.440447 Anserini +test1147 Q0 13242949 23 12.413673 Anserini +test1147 Q0 14883973 24 12.400226 Anserini +test1147 Q0 8260870 25 12.387655 Anserini +test1147 Q0 2824368 26 12.366553 Anserini +test1147 Q0 2821179 27 12.266983 Anserini +test1147 Q0 14455286 28 12.243547 Anserini +test1147 Q0 1467297 29 12.208310 Anserini +test1147 Q0 2821140 30 12.197412 Anserini +test1148 Q0 13604726 1 10.784338 Anserini +test1148 Q0 6852675 2 10.714717 Anserini +test1148 Q0 12979625 3 10.623341 Anserini +test1148 Q0 19258686 4 9.985229 Anserini +test1148 Q0 2168269 5 9.616050 Anserini +test1148 Q0 8339575 6 9.212702 Anserini +test1148 Q0 18422196 7 9.045835 Anserini +test1148 Q0 7987781 8 8.985542 Anserini +test1148 Q0 15510440 9 8.952764 Anserini +test1148 Q0 13878732 10 8.839348 Anserini +test1148 Q0 18893595 11 8.789551 Anserini +test1148 Q0 791985 12 8.659532 Anserini +test1148 Q0 10929407 13 8.646740 Anserini +test1148 Q0 6546064 14 8.615337 Anserini +test1148 Q0 6551022 15 8.601506 Anserini +test1148 Q0 20585667 16 8.528593 Anserini +test1148 Q0 1255312 17 8.528593 Anserini +test1148 Q0 7972681 18 8.481767 Anserini +test1148 Q0 15101067 19 8.466819 Anserini +test1148 Q0 10360777 20 8.453046 Anserini +test1148 Q0 5471485 21 8.439747 Anserini +test1148 Q0 13338916 22 8.392715 Anserini +test1148 Q0 4262609 23 8.338975 Anserini +test1148 Q0 2807556 24 8.338975 Anserini +test1148 Q0 791979 25 8.286648 Anserini +test1148 Q0 6396119 26 8.214718 Anserini +test1148 Q0 6396120 27 8.214718 Anserini +test1148 Q0 14007348 28 8.181534 Anserini +test1148 Q0 7011800 29 8.169586 Anserini +test1148 Q0 6852676 30 8.128613 Anserini +test1149 Q0 12333689 1 17.269194 Anserini +test1149 Q0 7186886 2 15.813053 Anserini +test1149 Q0 3340298 3 15.440091 Anserini +test1149 Q0 2678905 4 15.257565 Anserini +test1149 Q0 3340289 5 14.958148 Anserini +test1149 Q0 13318257 6 13.933788 Anserini +test1149 Q0 12333712 7 13.918825 Anserini +test1149 Q0 14311974 8 13.882649 Anserini +test1149 Q0 2678911 9 13.546394 Anserini +test1149 Q0 3340277 10 13.164644 Anserini +test1149 Q0 3549294 11 13.041589 Anserini +test1149 Q0 12333716 12 13.033058 Anserini +test1149 Q0 15372628 13 13.012861 Anserini +test1149 Q0 7186866 14 13.012861 Anserini +test1149 Q0 3204910 15 13.003052 Anserini +test1149 Q0 3764182 16 12.918496 Anserini +test1149 Q0 11422158 17 12.808634 Anserini +test1149 Q0 2678915 18 12.773796 Anserini +test1149 Q0 13424663 19 12.713894 Anserini +test1149 Q0 14095076 20 12.423697 Anserini +test1149 Q0 19978933 21 12.251029 Anserini +test1149 Q0 13456132 22 12.248947 Anserini +test1149 Q0 14665049 23 12.241100 Anserini +test1149 Q0 12333697 24 12.199018 Anserini +test1149 Q0 3340264 25 12.199018 Anserini +test1149 Q0 7010241 26 12.174904 Anserini +test1149 Q0 2678916 27 12.156463 Anserini +test1149 Q0 4120620 28 12.144471 Anserini +test1149 Q0 3340274 29 11.980941 Anserini +test1149 Q0 8130367 30 11.967215 Anserini +test115 Q0 5459203 1 12.194945 Anserini +test115 Q0 5982625 2 10.921847 Anserini +test115 Q0 17760388 3 10.769102 Anserini +test115 Q0 17760387 4 10.769102 Anserini +test115 Q0 502474 5 10.762788 Anserini +test115 Q0 16020738 6 10.721770 Anserini +test115 Q0 5964860 7 10.713840 Anserini +test115 Q0 6562153 8 10.700056 Anserini +test115 Q0 7076200 9 10.618393 Anserini +test115 Q0 6007008 10 10.510792 Anserini +test115 Q0 18573959 11 10.486130 Anserini +test115 Q0 12931233 12 10.433887 Anserini +test115 Q0 7454127 13 10.313438 Anserini +test115 Q0 1864692 14 10.238280 Anserini +test115 Q0 17679620 15 10.221831 Anserini +test115 Q0 17442954 16 10.184925 Anserini +test115 Q0 10321579 17 10.180248 Anserini +test115 Q0 10298615 18 10.165638 Anserini +test115 Q0 4206456 19 10.151852 Anserini +test115 Q0 20079075 20 10.150455 Anserini +test115 Q0 8788673 21 10.138613 Anserini +test115 Q0 17507104 22 10.101645 Anserini +test115 Q0 4091626 23 10.098520 Anserini +test115 Q0 17781962 24 10.097069 Anserini +test115 Q0 20599246 25 10.087511 Anserini +test115 Q0 20599247 26 10.087511 Anserini +test115 Q0 7163692 27 10.069416 Anserini +test115 Q0 7301153 28 10.068411 Anserini +test115 Q0 18911415 29 10.034584 Anserini +test115 Q0 12965137 30 10.006312 Anserini +test1150 Q0 20274427 1 10.203578 Anserini +test1150 Q0 17497715 2 10.159090 Anserini +test1150 Q0 19443671 3 10.127482 Anserini +test1150 Q0 5834817 4 9.898699 Anserini +test1150 Q0 12688356 5 9.796330 Anserini +test1150 Q0 5381036 6 9.684116 Anserini +test1150 Q0 13328110 7 9.643372 Anserini +test1150 Q0 7699496 8 9.473915 Anserini +test1150 Q0 19029420 9 9.434007 Anserini +test1150 Q0 11903389 10 9.391676 Anserini +test1150 Q0 19121501 11 9.368599 Anserini +test1150 Q0 3311260 12 9.264567 Anserini +test1150 Q0 19998146 13 9.214302 Anserini +test1150 Q0 5580698 14 9.208252 Anserini +test1150 Q0 14879199 15 9.198019 Anserini +test1150 Q0 16019184 16 9.123617 Anserini +test1150 Q0 13194515 17 9.066174 Anserini +test1150 Q0 16719038 18 9.021263 Anserini +test1150 Q0 14864676 19 9.011827 Anserini +test1150 Q0 9482315 20 9.006533 Anserini +test1150 Q0 17333282 21 8.989160 Anserini +test1150 Q0 12709240 22 8.969259 Anserini +test1150 Q0 732391 23 8.949011 Anserini +test1150 Q0 2186120 24 8.928203 Anserini +test1150 Q0 7602644 25 8.922313 Anserini +test1150 Q0 13254544 26 8.920865 Anserini +test1150 Q0 5847593 27 8.914152 Anserini +test1150 Q0 20397206 28 8.909356 Anserini +test1150 Q0 5822026 29 8.896422 Anserini +test1150 Q0 5456317 30 8.881844 Anserini +test1151 Q0 20208316 1 15.559820 Anserini +test1151 Q0 20208317 2 14.900927 Anserini +test1151 Q0 20199653 3 14.802673 Anserini +test1151 Q0 20199650 4 14.716721 Anserini +test1151 Q0 4500695 5 14.042378 Anserini +test1151 Q0 18836324 6 13.964931 Anserini +test1151 Q0 20318007 7 13.019681 Anserini +test1151 Q0 16286530 8 12.986133 Anserini +test1151 Q0 5431319 9 12.949671 Anserini +test1151 Q0 5351540 10 12.949671 Anserini +test1151 Q0 14670134 11 12.875804 Anserini +test1151 Q0 6068337 12 12.847864 Anserini +test1151 Q0 19798792 13 12.800275 Anserini +test1151 Q0 14670132 14 12.798373 Anserini +test1151 Q0 10151839 15 12.775164 Anserini +test1151 Q0 906210 16 12.673788 Anserini +test1151 Q0 10151355 17 12.673788 Anserini +test1151 Q0 10151356 18 12.673788 Anserini +test1151 Q0 8128431 19 12.617349 Anserini +test1151 Q0 10151406 20 12.610200 Anserini +test1151 Q0 5440810 21 12.558393 Anserini +test1151 Q0 13550295 22 12.520004 Anserini +test1151 Q0 5962373 23 12.511583 Anserini +test1151 Q0 16286523 24 12.510286 Anserini +test1151 Q0 19612353 25 12.480964 Anserini +test1151 Q0 5217813 26 12.453747 Anserini +test1151 Q0 11922620 27 12.432436 Anserini +test1151 Q0 7100151 28 12.369401 Anserini +test1151 Q0 20144957 29 12.365948 Anserini +test1151 Q0 10151405 30 12.357115 Anserini +test1152 Q0 19496654 1 10.875018 Anserini +test1152 Q0 20482350 2 10.848352 Anserini +test1152 Q0 6726155 3 10.831432 Anserini +test1152 Q0 16295180 4 10.651315 Anserini +test1152 Q0 6487427 5 10.627401 Anserini +test1152 Q0 16502426 6 10.590933 Anserini +test1152 Q0 1718774 7 10.509567 Anserini +test1152 Q0 1705655 8 10.362078 Anserini +test1152 Q0 3241539 9 10.136248 Anserini +test1152 Q0 6759378 10 10.058792 Anserini +test1152 Q0 13567895 11 10.003063 Anserini +test1152 Q0 6317641 12 9.948048 Anserini +test1152 Q0 6441079 13 9.891015 Anserini +test1152 Q0 5259126 14 9.815976 Anserini +test1152 Q0 17593798 15 9.807770 Anserini +test1152 Q0 13786327 16 9.702280 Anserini +test1152 Q0 15166611 17 9.695395 Anserini +test1152 Q0 15004539 18 9.624677 Anserini +test1152 Q0 16044035 19 9.621817 Anserini +test1152 Q0 16900483 20 9.595760 Anserini +test1152 Q0 16295176 21 9.592760 Anserini +test1152 Q0 6235127 22 9.541906 Anserini +test1152 Q0 15236940 23 9.539850 Anserini +test1152 Q0 5612495 24 9.532518 Anserini +test1152 Q0 6477973 25 9.523417 Anserini +test1152 Q0 18922178 26 9.508202 Anserini +test1152 Q0 7007017 27 9.451423 Anserini +test1152 Q0 6363606 28 9.443167 Anserini +test1152 Q0 15004540 29 9.434418 Anserini +test1152 Q0 1700976 30 9.408179 Anserini +test1153 Q0 5051616 1 18.620626 Anserini +test1153 Q0 14412481 2 17.889368 Anserini +test1153 Q0 5051618 3 17.805410 Anserini +test1153 Q0 2384166 4 17.736729 Anserini +test1153 Q0 14412483 5 17.489765 Anserini +test1153 Q0 134958 6 17.293320 Anserini +test1153 Q0 13100535 7 16.983250 Anserini +test1153 Q0 5051615 8 16.854828 Anserini +test1153 Q0 13050472 9 16.627964 Anserini +test1153 Q0 5675000 10 16.322298 Anserini +test1153 Q0 5051617 11 16.235266 Anserini +test1153 Q0 12748273 12 16.078938 Anserini +test1153 Q0 5668407 13 15.962004 Anserini +test1153 Q0 2384169 14 15.958252 Anserini +test1153 Q0 14412486 15 15.879365 Anserini +test1153 Q0 2384168 16 15.861465 Anserini +test1153 Q0 14412480 17 15.850307 Anserini +test1153 Q0 13132631 18 15.658909 Anserini +test1153 Q0 7737004 19 15.639338 Anserini +test1153 Q0 134988 20 15.430703 Anserini +test1153 Q0 5051619 21 15.400040 Anserini +test1153 Q0 14412491 22 15.235474 Anserini +test1153 Q0 134976 23 15.195337 Anserini +test1153 Q0 2384170 24 15.068393 Anserini +test1153 Q0 2963369 25 15.016476 Anserini +test1153 Q0 14412476 26 14.968670 Anserini +test1153 Q0 13169422 27 14.933174 Anserini +test1153 Q0 134970 28 14.932396 Anserini +test1153 Q0 5668354 29 14.855893 Anserini +test1153 Q0 5668620 30 14.785250 Anserini +test1154 Q0 4126753 1 15.387835 Anserini +test1154 Q0 16575975 2 15.065384 Anserini +test1154 Q0 8296731 3 15.015850 Anserini +test1154 Q0 16575961 4 14.979712 Anserini +test1154 Q0 17503864 5 14.936915 Anserini +test1154 Q0 548476 6 14.463341 Anserini +test1154 Q0 9008138 7 14.179790 Anserini +test1154 Q0 16571418 8 13.640598 Anserini +test1154 Q0 2176159 9 13.312791 Anserini +test1154 Q0 9008139 10 13.248035 Anserini +test1154 Q0 8296730 11 13.006823 Anserini +test1154 Q0 3611912 12 12.765960 Anserini +test1154 Q0 4515582 13 12.753284 Anserini +test1154 Q0 14610586 14 12.440501 Anserini +test1154 Q0 14610589 15 12.440501 Anserini +test1154 Q0 2176160 16 12.377393 Anserini +test1154 Q0 3611911 17 12.313732 Anserini +test1154 Q0 12304175 18 12.192480 Anserini +test1154 Q0 7983847 19 12.190242 Anserini +test1154 Q0 9008140 20 12.085976 Anserini +test1154 Q0 9463916 21 12.001145 Anserini +test1154 Q0 16576673 22 11.966750 Anserini +test1154 Q0 3158578 23 11.940716 Anserini +test1154 Q0 4090093 24 11.893377 Anserini +test1154 Q0 16576679 25 11.849427 Anserini +test1154 Q0 12027457 26 11.699479 Anserini +test1154 Q0 14865975 27 11.681898 Anserini +test1154 Q0 5523855 28 11.676055 Anserini +test1154 Q0 2176189 29 11.631039 Anserini +test1154 Q0 12832885 30 11.629334 Anserini +test1155 Q0 3490237 1 14.347483 Anserini +test1155 Q0 3490224 2 13.793812 Anserini +test1155 Q0 6848939 3 13.660976 Anserini +test1155 Q0 20454144 4 13.500809 Anserini +test1155 Q0 3632920 5 13.434215 Anserini +test1155 Q0 12997664 6 13.394239 Anserini +test1155 Q0 16626310 7 13.316267 Anserini +test1155 Q0 12997661 8 13.313055 Anserini +test1155 Q0 3632930 9 13.213587 Anserini +test1155 Q0 14107991 10 13.081196 Anserini +test1155 Q0 13343270 11 13.034541 Anserini +test1155 Q0 5699032 12 12.936675 Anserini +test1155 Q0 3632917 13 12.894741 Anserini +test1155 Q0 3632928 14 12.891699 Anserini +test1155 Q0 8596048 15 12.841646 Anserini +test1155 Q0 3632926 16 12.780209 Anserini +test1155 Q0 3632929 17 12.754513 Anserini +test1155 Q0 17639531 18 12.716966 Anserini +test1155 Q0 17639540 19 12.716966 Anserini +test1155 Q0 3431750 20 12.554107 Anserini +test1155 Q0 12911280 21 12.554107 Anserini +test1155 Q0 6137016 22 12.536802 Anserini +test1155 Q0 12886292 23 12.502818 Anserini +test1155 Q0 10931521 24 12.500598 Anserini +test1155 Q0 16477861 25 12.469028 Anserini +test1155 Q0 10349769 26 12.463794 Anserini +test1155 Q0 10349768 27 12.463794 Anserini +test1155 Q0 6137021 28 12.399755 Anserini +test1155 Q0 14678301 29 12.359921 Anserini +test1155 Q0 3632903 30 12.251716 Anserini +test1156 Q0 7349325 1 15.949851 Anserini +test1156 Q0 20767042 2 14.055305 Anserini +test1156 Q0 18219195 3 13.723422 Anserini +test1156 Q0 5659923 4 13.478611 Anserini +test1156 Q0 1500181 5 13.451671 Anserini +test1156 Q0 1500182 6 13.451671 Anserini +test1156 Q0 5659924 7 13.131689 Anserini +test1156 Q0 4651356 8 12.948481 Anserini +test1156 Q0 5659931 9 12.948481 Anserini +test1156 Q0 5659925 10 12.719475 Anserini +test1156 Q0 5659937 11 12.711273 Anserini +test1156 Q0 14483556 12 12.442739 Anserini +test1156 Q0 5659933 13 12.411648 Anserini +test1156 Q0 7665715 14 12.409945 Anserini +test1156 Q0 20153845 15 12.138018 Anserini +test1156 Q0 2099157 16 12.086992 Anserini +test1156 Q0 5659927 17 12.077830 Anserini +test1156 Q0 7651448 18 12.065212 Anserini +test1156 Q0 1596152 19 12.038354 Anserini +test1156 Q0 2598925 20 12.003835 Anserini +test1156 Q0 7349329 21 11.997327 Anserini +test1156 Q0 5659928 22 11.991110 Anserini +test1156 Q0 17594454 23 11.990685 Anserini +test1156 Q0 14175102 24 11.983857 Anserini +test1156 Q0 8823201 25 11.957016 Anserini +test1156 Q0 4651360 26 11.867130 Anserini +test1156 Q0 20153848 27 11.831570 Anserini +test1156 Q0 7349326 28 11.826748 Anserini +test1156 Q0 4028286 29 11.804382 Anserini +test1156 Q0 5659936 30 11.801392 Anserini +test1157 Q0 15081884 1 13.298346 Anserini +test1157 Q0 8254971 2 12.927575 Anserini +test1157 Q0 15081886 3 12.566400 Anserini +test1157 Q0 4378600 4 12.300991 Anserini +test1157 Q0 8254970 5 12.129410 Anserini +test1157 Q0 8254973 6 11.685584 Anserini +test1157 Q0 8254974 7 11.456082 Anserini +test1157 Q0 8254969 8 11.245969 Anserini +test1157 Q0 15081885 9 11.222944 Anserini +test1157 Q0 8254968 10 11.204322 Anserini +test1157 Q0 5145711 11 11.057020 Anserini +test1157 Q0 8254972 12 11.020703 Anserini +test1157 Q0 2130577 13 10.721566 Anserini +test1157 Q0 7007946 14 10.624847 Anserini +test1157 Q0 14970553 15 10.575651 Anserini +test1157 Q0 2947775 16 10.422142 Anserini +test1157 Q0 6459533 17 10.280950 Anserini +test1157 Q0 8254976 18 10.243904 Anserini +test1157 Q0 8254978 19 10.237038 Anserini +test1157 Q0 10490485 20 10.042583 Anserini +test1157 Q0 10490483 21 9.944391 Anserini +test1157 Q0 6015496 22 9.938764 Anserini +test1157 Q0 2977642 23 9.831883 Anserini +test1157 Q0 11571716 24 9.816422 Anserini +test1157 Q0 13214596 25 9.812927 Anserini +test1157 Q0 11136977 26 9.623019 Anserini +test1157 Q0 10717671 27 9.608594 Anserini +test1157 Q0 10045478 28 9.606849 Anserini +test1157 Q0 19530788 29 9.592248 Anserini +test1157 Q0 5385484 30 9.581098 Anserini +test1158 Q0 8888843 1 11.819521 Anserini +test1158 Q0 8888844 2 11.783340 Anserini +test1158 Q0 10772508 3 11.240895 Anserini +test1158 Q0 20075246 4 11.040213 Anserini +test1158 Q0 12632956 5 10.866603 Anserini +test1158 Q0 19435317 6 10.795008 Anserini +test1158 Q0 784300 7 10.771306 Anserini +test1158 Q0 11911107 8 10.659739 Anserini +test1158 Q0 8114008 9 10.655936 Anserini +test1158 Q0 19435325 10 10.645533 Anserini +test1158 Q0 63455 11 10.639202 Anserini +test1158 Q0 1097653 12 10.604544 Anserini +test1158 Q0 3005850 13 10.526831 Anserini +test1158 Q0 13132195 14 10.453716 Anserini +test1158 Q0 10382812 15 10.337715 Anserini +test1158 Q0 2677513 16 10.321680 Anserini +test1158 Q0 1065500 17 10.168277 Anserini +test1158 Q0 4320431 18 10.109935 Anserini +test1158 Q0 9714810 19 10.074479 Anserini +test1158 Q0 131263 20 10.023360 Anserini +test1158 Q0 131168 21 9.924243 Anserini +test1158 Q0 662496 22 9.919843 Anserini +test1158 Q0 685680 23 9.838251 Anserini +test1158 Q0 15107657 24 9.807623 Anserini +test1158 Q0 14909723 25 9.753721 Anserini +test1158 Q0 6660373 26 9.746460 Anserini +test1158 Q0 7939179 27 9.737422 Anserini +test1158 Q0 9353581 28 9.733839 Anserini +test1158 Q0 15107655 29 9.733058 Anserini +test1158 Q0 1844917 30 9.711578 Anserini +test1159 Q0 1600155 1 11.807656 Anserini +test1159 Q0 1328800 2 11.312819 Anserini +test1159 Q0 9172250 3 11.188169 Anserini +test1159 Q0 1600146 4 11.164927 Anserini +test1159 Q0 61434 5 11.046886 Anserini +test1159 Q0 16952523 6 10.997852 Anserini +test1159 Q0 5234065 7 10.973641 Anserini +test1159 Q0 5348760 8 10.779722 Anserini +test1159 Q0 3754903 9 10.747169 Anserini +test1159 Q0 8685297 10 10.704861 Anserini +test1159 Q0 1769766 11 10.701062 Anserini +test1159 Q0 18932162 12 10.347509 Anserini +test1159 Q0 12422289 13 10.231130 Anserini +test1159 Q0 9183363 14 10.216715 Anserini +test1159 Q0 10439708 15 10.195966 Anserini +test1159 Q0 5852240 16 10.149424 Anserini +test1159 Q0 358081 17 10.141687 Anserini +test1159 Q0 7462865 18 10.067749 Anserini +test1159 Q0 3247261 19 10.044553 Anserini +test1159 Q0 3886371 20 10.002600 Anserini +test1159 Q0 8685298 21 9.998760 Anserini +test1159 Q0 525980 22 9.966179 Anserini +test1159 Q0 2922941 23 9.940614 Anserini +test1159 Q0 1317663 24 9.852387 Anserini +test1159 Q0 9997854 25 9.844669 Anserini +test1159 Q0 16655805 26 9.822368 Anserini +test1159 Q0 17491030 27 9.822368 Anserini +test1159 Q0 9997855 28 9.811068 Anserini +test1159 Q0 11672979 29 9.798757 Anserini +test1159 Q0 10756507 30 9.787727 Anserini +test116 Q0 10562583 1 10.058500 Anserini +test116 Q0 13374389 2 9.939160 Anserini +test116 Q0 5776833 3 9.807940 Anserini +test116 Q0 647420 4 9.767467 Anserini +test116 Q0 17882425 5 9.767467 Anserini +test116 Q0 17469396 6 9.763445 Anserini +test116 Q0 7099426 7 9.631038 Anserini +test116 Q0 3173785 8 9.603474 Anserini +test116 Q0 11260948 9 9.411363 Anserini +test116 Q0 2425791 10 9.405843 Anserini +test116 Q0 14204419 11 9.405843 Anserini +test116 Q0 18633544 12 9.402927 Anserini +test116 Q0 14652971 13 9.385277 Anserini +test116 Q0 12208775 14 9.269595 Anserini +test116 Q0 6727554 15 9.249450 Anserini +test116 Q0 11696221 16 9.233854 Anserini +test116 Q0 17419073 17 9.222184 Anserini +test116 Q0 1615994 18 9.213806 Anserini +test116 Q0 20036653 19 9.094395 Anserini +test116 Q0 7041656 20 9.026142 Anserini +test116 Q0 710685 21 9.015922 Anserini +test116 Q0 11778876 22 8.975595 Anserini +test116 Q0 10237644 23 8.946118 Anserini +test116 Q0 5632583 24 8.930767 Anserini +test116 Q0 1632841 25 8.884191 Anserini +test116 Q0 16883592 26 8.811531 Anserini +test116 Q0 20454444 27 8.773840 Anserini +test116 Q0 3581901 28 8.771006 Anserini +test116 Q0 15129464 29 8.733509 Anserini +test116 Q0 4737952 30 8.720675 Anserini +test1160 Q0 16468875 1 15.830753 Anserini +test1160 Q0 1804364 2 14.884749 Anserini +test1160 Q0 7158852 3 14.445683 Anserini +test1160 Q0 11764105 4 14.129794 Anserini +test1160 Q0 13043665 5 14.059480 Anserini +test1160 Q0 10072911 6 14.004388 Anserini +test1160 Q0 12074668 7 13.910012 Anserini +test1160 Q0 12911919 8 13.648603 Anserini +test1160 Q0 7059250 9 13.634189 Anserini +test1160 Q0 3939283 10 13.579491 Anserini +test1160 Q0 12725983 11 13.574557 Anserini +test1160 Q0 7920074 12 13.564025 Anserini +test1160 Q0 1804107 13 13.538848 Anserini +test1160 Q0 12997226 14 13.466562 Anserini +test1160 Q0 1804373 15 13.419591 Anserini +test1160 Q0 12936958 16 13.414202 Anserini +test1160 Q0 375283 17 13.373774 Anserini +test1160 Q0 12936959 18 13.357700 Anserini +test1160 Q0 10063405 19 13.350929 Anserini +test1160 Q0 10063380 20 13.350929 Anserini +test1160 Q0 16468873 21 13.343099 Anserini +test1160 Q0 7765825 22 13.282712 Anserini +test1160 Q0 12346573 23 13.275610 Anserini +test1160 Q0 2617428 24 13.255746 Anserini +test1160 Q0 7939444 25 13.178432 Anserini +test1160 Q0 8753847 26 13.159027 Anserini +test1160 Q0 8753913 27 13.159027 Anserini +test1160 Q0 11779956 28 13.128393 Anserini +test1160 Q0 6117460 29 13.124127 Anserini +test1160 Q0 7158862 30 13.032002 Anserini +test1161 Q0 2576141 1 15.024801 Anserini +test1161 Q0 258374 2 14.258599 Anserini +test1161 Q0 13200105 3 13.871494 Anserini +test1161 Q0 7349647 4 13.701863 Anserini +test1161 Q0 3828573 5 13.268127 Anserini +test1161 Q0 19918359 6 13.256580 Anserini +test1161 Q0 6270843 7 13.229962 Anserini +test1161 Q0 749400 8 13.092646 Anserini +test1161 Q0 3828567 9 13.051038 Anserini +test1161 Q0 19174275 10 13.034136 Anserini +test1161 Q0 10735467 11 13.008013 Anserini +test1161 Q0 6270845 12 12.954077 Anserini +test1161 Q0 11626926 13 12.940996 Anserini +test1161 Q0 4561485 14 12.915565 Anserini +test1161 Q0 3994644 15 12.850805 Anserini +test1161 Q0 6715509 16 12.831014 Anserini +test1161 Q0 19174270 17 12.829059 Anserini +test1161 Q0 7277165 18 12.804177 Anserini +test1161 Q0 1944520 19 12.803371 Anserini +test1161 Q0 3791359 20 12.797403 Anserini +test1161 Q0 812721 21 12.797349 Anserini +test1161 Q0 9145525 22 12.761318 Anserini +test1161 Q0 18376257 23 12.757597 Anserini +test1161 Q0 16562651 24 12.754112 Anserini +test1161 Q0 9890692 25 12.753108 Anserini +test1161 Q0 3204874 26 12.750357 Anserini +test1161 Q0 3994650 27 12.742987 Anserini +test1161 Q0 17951125 28 12.711471 Anserini +test1161 Q0 8356902 29 12.710557 Anserini +test1161 Q0 9072760 30 12.683033 Anserini +test1162 Q0 12221977 1 10.138977 Anserini +test1162 Q0 12086099 2 10.089222 Anserini +test1162 Q0 691179 3 9.941470 Anserini +test1162 Q0 13642022 4 9.913696 Anserini +test1162 Q0 691169 5 9.774233 Anserini +test1162 Q0 18175631 6 9.748126 Anserini +test1162 Q0 691170 7 9.589994 Anserini +test1162 Q0 3255508 8 9.563640 Anserini +test1162 Q0 4775077 9 9.555244 Anserini +test1162 Q0 4656552 10 9.544441 Anserini +test1162 Q0 15506245 11 9.417494 Anserini +test1162 Q0 2059443 12 9.389439 Anserini +test1162 Q0 14943594 13 9.361546 Anserini +test1162 Q0 2871433 14 9.345277 Anserini +test1162 Q0 691198 15 9.339757 Anserini +test1162 Q0 10700032 16 9.266073 Anserini +test1162 Q0 12100210 17 9.260806 Anserini +test1162 Q0 8543812 18 9.248927 Anserini +test1162 Q0 17334969 19 9.239966 Anserini +test1162 Q0 691185 20 9.226533 Anserini +test1162 Q0 9225185 21 9.222484 Anserini +test1162 Q0 7501013 22 9.199563 Anserini +test1162 Q0 50720 23 9.196032 Anserini +test1162 Q0 5120372 24 9.185263 Anserini +test1162 Q0 881705 25 9.154121 Anserini +test1162 Q0 10663413 26 9.111834 Anserini +test1162 Q0 11600809 27 9.066278 Anserini +test1162 Q0 19870813 28 9.037470 Anserini +test1162 Q0 4352460 29 9.037463 Anserini +test1162 Q0 18067860 30 9.008425 Anserini +test1163 Q0 3628562 1 12.423232 Anserini +test1163 Q0 3628560 2 12.071276 Anserini +test1163 Q0 3628563 3 11.925106 Anserini +test1163 Q0 3628561 4 11.476067 Anserini +test1163 Q0 10342197 5 11.087971 Anserini +test1163 Q0 2765670 6 11.084401 Anserini +test1163 Q0 15297418 7 10.788079 Anserini +test1163 Q0 13913406 8 10.443821 Anserini +test1163 Q0 13913409 9 10.443821 Anserini +test1163 Q0 5756559 10 10.307582 Anserini +test1163 Q0 3878488 11 10.153325 Anserini +test1163 Q0 11401623 12 9.556366 Anserini +test1163 Q0 3077417 13 9.531441 Anserini +test1163 Q0 3626006 14 9.444922 Anserini +test1163 Q0 17123510 15 9.438617 Anserini +test1163 Q0 14294178 16 9.399474 Anserini +test1163 Q0 14294375 17 9.399474 Anserini +test1163 Q0 14282372 18 9.399474 Anserini +test1163 Q0 14262804 19 9.399474 Anserini +test1163 Q0 10029469 20 9.376187 Anserini +test1163 Q0 10342196 21 9.353781 Anserini +test1163 Q0 14294434 22 9.299473 Anserini +test1163 Q0 14294428 23 9.299473 Anserini +test1163 Q0 14250918 24 9.299473 Anserini +test1163 Q0 14282708 25 9.299473 Anserini +test1163 Q0 20228610 26 9.293826 Anserini +test1163 Q0 10866953 27 9.184410 Anserini +test1163 Q0 11730009 28 9.084422 Anserini +test1163 Q0 11730011 29 9.084422 Anserini +test1163 Q0 4035270 30 9.063772 Anserini +test1164 Q0 17153831 1 15.745032 Anserini +test1164 Q0 17153842 2 15.205966 Anserini +test1164 Q0 17153840 3 13.676861 Anserini +test1164 Q0 17153841 4 13.589908 Anserini +test1164 Q0 19660095 5 12.979229 Anserini +test1164 Q0 17292074 6 12.533304 Anserini +test1164 Q0 18689238 7 12.365404 Anserini +test1164 Q0 11345374 8 12.323923 Anserini +test1164 Q0 17153836 9 11.301245 Anserini +test1164 Q0 7125788 10 11.111362 Anserini +test1164 Q0 9140158 11 11.102218 Anserini +test1164 Q0 9140159 12 11.102218 Anserini +test1164 Q0 9503726 13 11.058143 Anserini +test1164 Q0 20406773 14 11.053535 Anserini +test1164 Q0 17646279 15 11.032288 Anserini +test1164 Q0 17153838 16 11.010036 Anserini +test1164 Q0 19343806 17 10.937176 Anserini +test1164 Q0 17153839 18 10.870582 Anserini +test1164 Q0 2804590 19 10.835969 Anserini +test1164 Q0 2804587 20 10.827699 Anserini +test1164 Q0 2804582 21 10.818928 Anserini +test1164 Q0 10495043 22 10.815287 Anserini +test1164 Q0 18188172 23 10.769444 Anserini +test1164 Q0 2804585 24 10.751789 Anserini +test1164 Q0 18313933 25 10.740556 Anserini +test1164 Q0 19731272 26 10.740556 Anserini +test1164 Q0 15505369 27 10.670271 Anserini +test1164 Q0 15505373 28 10.670271 Anserini +test1164 Q0 6164825 29 10.670271 Anserini +test1164 Q0 17338166 30 10.663185 Anserini +test1165 Q0 131638 1 14.748510 Anserini +test1165 Q0 16243888 2 14.646016 Anserini +test1165 Q0 16243932 3 13.566999 Anserini +test1165 Q0 7569317 4 13.552186 Anserini +test1165 Q0 13616418 5 13.498334 Anserini +test1165 Q0 16243849 6 13.485894 Anserini +test1165 Q0 12088935 7 13.463363 Anserini +test1165 Q0 16243847 8 13.417908 Anserini +test1165 Q0 7784926 9 13.400280 Anserini +test1165 Q0 16243903 10 13.389254 Anserini +test1165 Q0 14372940 11 13.288485 Anserini +test1165 Q0 16243898 12 13.269977 Anserini +test1165 Q0 16243900 13 13.179621 Anserini +test1165 Q0 7784940 14 13.138941 Anserini +test1165 Q0 537718 15 12.821445 Anserini +test1165 Q0 20814751 16 12.739003 Anserini +test1165 Q0 658032 17 12.664819 Anserini +test1165 Q0 16243930 18 12.663416 Anserini +test1165 Q0 18058634 19 12.637562 Anserini +test1165 Q0 5996833 20 12.605072 Anserini +test1165 Q0 1645550 21 12.599689 Anserini +test1165 Q0 3713204 22 12.595367 Anserini +test1165 Q0 7464486 23 12.587617 Anserini +test1165 Q0 16243894 24 12.581148 Anserini +test1165 Q0 7784935 25 12.579506 Anserini +test1165 Q0 7784936 26 12.549356 Anserini +test1165 Q0 16243942 27 12.549356 Anserini +test1165 Q0 16243933 28 12.525888 Anserini +test1165 Q0 7784942 29 12.473431 Anserini +test1165 Q0 16243911 30 12.462821 Anserini +test1166 Q0 5129171 1 16.464468 Anserini +test1166 Q0 10845633 2 15.998625 Anserini +test1166 Q0 6276028 3 15.382482 Anserini +test1166 Q0 2991803 4 15.278123 Anserini +test1166 Q0 5129172 5 15.218437 Anserini +test1166 Q0 6358478 6 15.211455 Anserini +test1166 Q0 2991808 7 15.176871 Anserini +test1166 Q0 3221879 8 14.779702 Anserini +test1166 Q0 4162728 9 14.672445 Anserini +test1166 Q0 6234053 10 14.492602 Anserini +test1166 Q0 20533693 11 14.471830 Anserini +test1166 Q0 16745200 12 14.330488 Anserini +test1166 Q0 3797622 13 14.066601 Anserini +test1166 Q0 1964615 14 14.041183 Anserini +test1166 Q0 20814654 15 14.017287 Anserini +test1166 Q0 20814630 16 14.017287 Anserini +test1166 Q0 7194098 17 13.952413 Anserini +test1166 Q0 1866426 18 13.952209 Anserini +test1166 Q0 18075104 19 13.866001 Anserini +test1166 Q0 1790858 20 13.821539 Anserini +test1166 Q0 1722923 21 13.806369 Anserini +test1166 Q0 14325963 22 13.787730 Anserini +test1166 Q0 2116014 23 13.654135 Anserini +test1166 Q0 15292864 24 13.513033 Anserini +test1166 Q0 5129170 25 13.497633 Anserini +test1166 Q0 15292830 26 13.494342 Anserini +test1166 Q0 4162747 27 13.491540 Anserini +test1166 Q0 13123903 28 13.435840 Anserini +test1166 Q0 4613868 29 13.380039 Anserini +test1166 Q0 9307365 30 13.327760 Anserini +test1167 Q0 3419502 1 13.840661 Anserini +test1167 Q0 20267896 2 13.648596 Anserini +test1167 Q0 20267893 3 13.477466 Anserini +test1167 Q0 20843354 4 13.338134 Anserini +test1167 Q0 5945644 5 12.551705 Anserini +test1167 Q0 20880283 6 12.354595 Anserini +test1167 Q0 20120083 7 12.325087 Anserini +test1167 Q0 5945645 8 12.322270 Anserini +test1167 Q0 20360596 9 12.302826 Anserini +test1167 Q0 20360597 10 12.302826 Anserini +test1167 Q0 20896078 11 12.207397 Anserini +test1167 Q0 20289845 12 12.133456 Anserini +test1167 Q0 19618929 13 12.085110 Anserini +test1167 Q0 20208317 14 12.037016 Anserini +test1167 Q0 10253107 15 12.034012 Anserini +test1167 Q0 17351154 16 11.888901 Anserini +test1167 Q0 14144432 17 11.840500 Anserini +test1167 Q0 12872972 18 11.799883 Anserini +test1167 Q0 5337027 19 11.769600 Anserini +test1167 Q0 5336979 20 11.769600 Anserini +test1167 Q0 13236218 21 11.760207 Anserini +test1167 Q0 16678472 22 11.679227 Anserini +test1167 Q0 14332051 23 11.666342 Anserini +test1167 Q0 14332052 24 11.666342 Anserini +test1167 Q0 20120085 25 11.666094 Anserini +test1167 Q0 20286951 26 11.659394 Anserini +test1167 Q0 20286952 27 11.659394 Anserini +test1167 Q0 19798792 28 11.646218 Anserini +test1167 Q0 19780575 29 11.644011 Anserini +test1167 Q0 14679951 30 11.624644 Anserini +test1168 Q0 1491940 1 18.712358 Anserini +test1168 Q0 7461440 2 18.508995 Anserini +test1168 Q0 6409672 3 18.381754 Anserini +test1168 Q0 394974 4 17.705723 Anserini +test1168 Q0 6409678 5 17.691965 Anserini +test1168 Q0 6409673 6 17.620182 Anserini +test1168 Q0 4010835 7 17.444136 Anserini +test1168 Q0 9002020 8 17.407522 Anserini +test1168 Q0 375994 9 17.397356 Anserini +test1168 Q0 4168943 10 17.393385 Anserini +test1168 Q0 375992 11 17.076965 Anserini +test1168 Q0 6517992 12 16.943338 Anserini +test1168 Q0 284570 13 16.922098 Anserini +test1168 Q0 8800172 14 16.905359 Anserini +test1168 Q0 4535131 15 16.851265 Anserini +test1168 Q0 376040 16 16.828129 Anserini +test1168 Q0 17562985 17 16.721722 Anserini +test1168 Q0 5726927 18 16.664429 Anserini +test1168 Q0 284602 19 16.649170 Anserini +test1168 Q0 393937 20 16.437752 Anserini +test1168 Q0 11073007 21 16.423315 Anserini +test1168 Q0 19619489 22 16.301796 Anserini +test1168 Q0 2515137 23 16.298325 Anserini +test1168 Q0 3553542 24 16.241789 Anserini +test1168 Q0 7461445 25 16.216600 Anserini +test1168 Q0 4095846 26 16.216490 Anserini +test1168 Q0 3200173 27 16.160736 Anserini +test1168 Q0 4817593 28 16.135168 Anserini +test1168 Q0 1581807 29 16.129631 Anserini +test1168 Q0 15577699 30 16.114485 Anserini +test1169 Q0 19877161 1 13.898089 Anserini +test1169 Q0 7921653 2 13.648732 Anserini +test1169 Q0 21002678 3 13.637156 Anserini +test1169 Q0 17715708 4 13.601642 Anserini +test1169 Q0 19877186 5 13.360429 Anserini +test1169 Q0 19792374 6 13.335161 Anserini +test1169 Q0 19835260 7 13.203929 Anserini +test1169 Q0 19882417 8 12.990438 Anserini +test1169 Q0 10105729 9 12.887472 Anserini +test1169 Q0 18783689 10 12.840264 Anserini +test1169 Q0 20056170 11 12.564798 Anserini +test1169 Q0 20056184 12 12.486184 Anserini +test1169 Q0 19792376 13 12.330348 Anserini +test1169 Q0 9400333 14 12.327554 Anserini +test1169 Q0 15904960 15 12.280657 Anserini +test1169 Q0 10149959 16 12.253538 Anserini +test1169 Q0 19858868 17 12.243495 Anserini +test1169 Q0 19877173 18 12.200897 Anserini +test1169 Q0 6385553 19 12.184731 Anserini +test1169 Q0 20056175 20 12.087373 Anserini +test1169 Q0 20056188 21 12.077030 Anserini +test1169 Q0 19035293 22 12.050038 Anserini +test1169 Q0 20287947 23 12.017726 Anserini +test1169 Q0 20056166 24 11.997637 Anserini +test1169 Q0 10068399 25 11.984179 Anserini +test1169 Q0 20056189 26 11.910456 Anserini +test1169 Q0 11495684 27 11.905370 Anserini +test1169 Q0 9617790 28 11.806709 Anserini +test1169 Q0 19877187 29 11.747774 Anserini +test1169 Q0 4965017 30 11.711827 Anserini +test117 Q0 19642678 1 14.932077 Anserini +test117 Q0 2507567 2 14.754309 Anserini +test117 Q0 3480770 3 14.521681 Anserini +test117 Q0 10744271 4 14.064292 Anserini +test117 Q0 3094158 5 13.483748 Anserini +test117 Q0 4720872 6 13.440366 Anserini +test117 Q0 4720880 7 13.440366 Anserini +test117 Q0 2736393 8 13.282268 Anserini +test117 Q0 5686553 9 13.240940 Anserini +test117 Q0 258208 10 13.170075 Anserini +test117 Q0 5515590 11 13.138191 Anserini +test117 Q0 6541222 12 12.971950 Anserini +test117 Q0 3036492 13 12.947718 Anserini +test117 Q0 18111794 14 12.905376 Anserini +test117 Q0 2489278 15 12.760015 Anserini +test117 Q0 258206 16 12.751375 Anserini +test117 Q0 10129668 17 12.714644 Anserini +test117 Q0 15758105 18 12.574675 Anserini +test117 Q0 7339143 19 12.449995 Anserini +test117 Q0 12735257 20 12.284677 Anserini +test117 Q0 12735262 21 12.275459 Anserini +test117 Q0 3058060 22 12.163779 Anserini +test117 Q0 12434155 23 12.101586 Anserini +test117 Q0 5437178 24 12.087580 Anserini +test117 Q0 4563015 25 12.058069 Anserini +test117 Q0 19642680 26 12.049995 Anserini +test117 Q0 15448066 27 12.011300 Anserini +test117 Q0 2391893 28 11.878139 Anserini +test117 Q0 6361298 29 11.869348 Anserini +test117 Q0 6283272 30 11.862578 Anserini +test1170 Q0 16367796 1 13.992338 Anserini +test1170 Q0 558982 2 13.401157 Anserini +test1170 Q0 5724161 3 12.528275 Anserini +test1170 Q0 4107727 4 11.618940 Anserini +test1170 Q0 16880740 5 11.558365 Anserini +test1170 Q0 16880739 6 11.515669 Anserini +test1170 Q0 12872366 7 11.235428 Anserini +test1170 Q0 15960857 8 11.181438 Anserini +test1170 Q0 20816553 9 11.066035 Anserini +test1170 Q0 20816556 10 11.066035 Anserini +test1170 Q0 15960856 11 10.892033 Anserini +test1170 Q0 16101007 12 10.593927 Anserini +test1170 Q0 17881803 13 10.572596 Anserini +test1170 Q0 6686593 14 10.426807 Anserini +test1170 Q0 16882937 15 10.392013 Anserini +test1170 Q0 17877697 16 10.385267 Anserini +test1170 Q0 7296175 17 10.381461 Anserini +test1170 Q0 16367791 18 10.377369 Anserini +test1170 Q0 16882938 19 10.341987 Anserini +test1170 Q0 18143253 20 10.338792 Anserini +test1170 Q0 18143252 21 10.338792 Anserini +test1170 Q0 19642765 22 10.274427 Anserini +test1170 Q0 9227984 23 10.185734 Anserini +test1170 Q0 17877695 24 10.153883 Anserini +test1170 Q0 17881804 25 10.124779 Anserini +test1170 Q0 19186179 26 10.124779 Anserini +test1170 Q0 19186180 27 10.124779 Anserini +test1170 Q0 18018935 28 10.106718 Anserini +test1170 Q0 7618886 29 10.036745 Anserini +test1170 Q0 16833761 30 10.036308 Anserini +test1171 Q0 10313889 1 17.263176 Anserini +test1171 Q0 6573041 2 17.067083 Anserini +test1171 Q0 13005163 3 16.768660 Anserini +test1171 Q0 11768690 4 16.710852 Anserini +test1171 Q0 4171518 5 16.602919 Anserini +test1171 Q0 6573034 6 16.349428 Anserini +test1171 Q0 19365669 7 16.285501 Anserini +test1171 Q0 5489769 8 16.162704 Anserini +test1171 Q0 7886556 9 16.039589 Anserini +test1171 Q0 14489787 10 15.904935 Anserini +test1171 Q0 15312850 11 15.902842 Anserini +test1171 Q0 1617986 12 15.809015 Anserini +test1171 Q0 6741877 13 15.758144 Anserini +test1171 Q0 17062635 14 15.688371 Anserini +test1171 Q0 4532837 15 15.672112 Anserini +test1171 Q0 17292775 16 15.634469 Anserini +test1171 Q0 4532835 17 15.633780 Anserini +test1171 Q0 7649958 18 15.611480 Anserini +test1171 Q0 2610368 19 15.553904 Anserini +test1171 Q0 16675792 20 15.515399 Anserini +test1171 Q0 396699 21 15.488341 Anserini +test1171 Q0 13985600 22 15.448616 Anserini +test1171 Q0 12834914 23 15.420558 Anserini +test1171 Q0 14714247 24 15.408749 Anserini +test1171 Q0 5954602 25 15.381868 Anserini +test1171 Q0 19965147 26 15.363672 Anserini +test1171 Q0 15486871 27 15.357567 Anserini +test1171 Q0 4771512 28 15.348236 Anserini +test1171 Q0 10900770 29 15.252914 Anserini +test1171 Q0 11969078 30 15.192446 Anserini +test1172 Q0 14762527 1 10.183308 Anserini +test1172 Q0 4701294 2 10.157477 Anserini +test1172 Q0 17175731 3 10.122989 Anserini +test1172 Q0 6572875 4 10.089537 Anserini +test1172 Q0 9223595 5 10.077254 Anserini +test1172 Q0 2598284 6 9.973140 Anserini +test1172 Q0 16251254 7 9.803840 Anserini +test1172 Q0 11498188 8 9.773774 Anserini +test1172 Q0 19066175 9 9.711641 Anserini +test1172 Q0 2570851 10 9.682358 Anserini +test1172 Q0 19517861 11 9.653674 Anserini +test1172 Q0 686684 12 9.609896 Anserini +test1172 Q0 19921470 13 9.608201 Anserini +test1172 Q0 19678005 14 9.583307 Anserini +test1172 Q0 18144658 15 9.492403 Anserini +test1172 Q0 17628494 16 9.429822 Anserini +test1172 Q0 20001310 17 9.429822 Anserini +test1172 Q0 7400575 18 9.399497 Anserini +test1172 Q0 6138820 19 9.376033 Anserini +test1172 Q0 15054316 20 9.361591 Anserini +test1172 Q0 3835806 21 9.360579 Anserini +test1172 Q0 19207015 22 9.360579 Anserini +test1172 Q0 16561729 23 9.354084 Anserini +test1172 Q0 16220359 24 9.344706 Anserini +test1172 Q0 14349082 25 9.331956 Anserini +test1172 Q0 1271139 26 9.314790 Anserini +test1172 Q0 45767 27 9.271680 Anserini +test1172 Q0 15306535 28 9.270598 Anserini +test1172 Q0 20308078 29 9.269777 Anserini +test1172 Q0 1500629 30 9.262226 Anserini +test1173 Q0 719975 1 18.063738 Anserini +test1173 Q0 719931 2 17.351387 Anserini +test1173 Q0 681035 3 15.824512 Anserini +test1173 Q0 719953 4 15.366771 Anserini +test1173 Q0 719952 5 14.260518 Anserini +test1173 Q0 719951 6 14.243086 Anserini +test1173 Q0 719956 7 14.240982 Anserini +test1173 Q0 719961 8 13.943631 Anserini +test1173 Q0 719960 9 13.686714 Anserini +test1173 Q0 5213440 10 13.615793 Anserini +test1173 Q0 5213445 11 13.615793 Anserini +test1173 Q0 719957 12 13.549870 Anserini +test1173 Q0 719969 13 13.545603 Anserini +test1173 Q0 719947 14 13.476133 Anserini +test1173 Q0 719972 15 13.476133 Anserini +test1173 Q0 349540 16 13.458123 Anserini +test1173 Q0 719950 17 13.448339 Anserini +test1173 Q0 719938 18 13.350929 Anserini +test1173 Q0 681026 19 13.155226 Anserini +test1173 Q0 719971 20 13.094457 Anserini +test1173 Q0 5239152 21 12.508902 Anserini +test1173 Q0 719966 22 12.424795 Anserini +test1173 Q0 20023399 23 12.270597 Anserini +test1173 Q0 719949 24 12.240942 Anserini +test1173 Q0 680985 25 12.165926 Anserini +test1173 Q0 680987 26 12.165926 Anserini +test1173 Q0 719948 27 12.165926 Anserini +test1173 Q0 719965 28 12.165926 Anserini +test1173 Q0 719974 29 12.165926 Anserini +test1173 Q0 681036 30 12.165926 Anserini +test1174 Q0 13949103 1 18.459524 Anserini +test1174 Q0 13949102 2 17.536633 Anserini +test1174 Q0 5193426 3 13.764043 Anserini +test1174 Q0 5193419 4 13.688741 Anserini +test1174 Q0 8267197 5 12.700496 Anserini +test1174 Q0 4338127 6 12.642479 Anserini +test1174 Q0 15452884 7 12.341937 Anserini +test1174 Q0 3090059 8 12.285611 Anserini +test1174 Q0 5193420 9 12.216819 Anserini +test1174 Q0 6281044 10 12.157804 Anserini +test1174 Q0 5232743 11 12.079590 Anserini +test1174 Q0 16852372 12 12.077756 Anserini +test1174 Q0 5218931 13 11.955233 Anserini +test1174 Q0 11069921 14 11.882823 Anserini +test1174 Q0 20516544 15 11.871476 Anserini +test1174 Q0 17261488 16 11.585140 Anserini +test1174 Q0 5193425 17 11.564265 Anserini +test1174 Q0 1652427 18 11.548821 Anserini +test1174 Q0 15027720 19 11.525152 Anserini +test1174 Q0 18231884 20 11.518236 Anserini +test1174 Q0 7098160 21 11.407888 Anserini +test1174 Q0 6510199 22 11.334165 Anserini +test1174 Q0 16653869 23 11.332205 Anserini +test1174 Q0 14258262 24 11.293260 Anserini +test1174 Q0 9597690 25 11.271043 Anserini +test1174 Q0 8621732 26 11.260248 Anserini +test1174 Q0 7063631 27 11.260248 Anserini +test1174 Q0 8351801 28 11.260248 Anserini +test1174 Q0 8351802 29 11.260248 Anserini +test1174 Q0 10481961 30 11.260248 Anserini +test1175 Q0 111481 1 10.588251 Anserini +test1175 Q0 19848453 2 10.537428 Anserini +test1175 Q0 472708 3 10.040907 Anserini +test1175 Q0 11632939 4 10.006016 Anserini +test1175 Q0 11632941 5 9.934778 Anserini +test1175 Q0 9106122 6 9.851280 Anserini +test1175 Q0 7202945 7 9.817958 Anserini +test1175 Q0 15041894 8 9.764855 Anserini +test1175 Q0 6229856 9 9.643991 Anserini +test1175 Q0 639450 10 9.585231 Anserini +test1175 Q0 18611517 11 9.378237 Anserini +test1175 Q0 17834977 12 9.312289 Anserini +test1175 Q0 759055 13 9.276912 Anserini +test1175 Q0 11505716 14 9.260588 Anserini +test1175 Q0 19483237 15 9.239138 Anserini +test1175 Q0 7966861 16 9.123991 Anserini +test1175 Q0 6652954 17 9.084510 Anserini +test1175 Q0 16292 18 9.068892 Anserini +test1175 Q0 72697 19 9.013790 Anserini +test1175 Q0 1295030 20 9.013412 Anserini +test1175 Q0 638243 21 9.002172 Anserini +test1175 Q0 103709 22 8.943019 Anserini +test1175 Q0 59830 23 8.927364 Anserini +test1175 Q0 11932266 24 8.874481 Anserini +test1175 Q0 11505698 25 8.839853 Anserini +test1175 Q0 1801621 26 8.746905 Anserini +test1175 Q0 392474 27 8.746873 Anserini +test1175 Q0 14644051 28 8.738774 Anserini +test1175 Q0 1768068 29 8.731559 Anserini +test1175 Q0 627011 30 8.717556 Anserini +test1176 Q0 10260636 1 27.729429 Anserini +test1176 Q0 10260639 2 25.059378 Anserini +test1176 Q0 289452 3 22.402876 Anserini +test1176 Q0 14158132 4 22.293423 Anserini +test1176 Q0 10260638 5 21.701689 Anserini +test1176 Q0 2296778 6 21.497578 Anserini +test1176 Q0 10260637 7 19.924952 Anserini +test1176 Q0 12044126 8 19.053984 Anserini +test1176 Q0 16275636 9 18.529854 Anserini +test1176 Q0 16275633 10 18.147146 Anserini +test1176 Q0 13080201 11 18.007948 Anserini +test1176 Q0 2209838 12 18.007948 Anserini +test1176 Q0 13902873 13 17.456646 Anserini +test1176 Q0 16275639 14 14.353582 Anserini +test1176 Q0 2296777 15 13.335393 Anserini +test1176 Q0 16275630 16 12.826925 Anserini +test1176 Q0 9534286 17 12.690217 Anserini +test1176 Q0 2296775 18 12.089339 Anserini +test1176 Q0 7989288 19 11.480857 Anserini +test1176 Q0 4357721 20 11.439122 Anserini +test1176 Q0 8640229 21 11.375162 Anserini +test1176 Q0 19967350 22 11.260885 Anserini +test1176 Q0 19967357 23 11.260885 Anserini +test1176 Q0 289419 24 11.242777 Anserini +test1176 Q0 128864 25 11.010606 Anserini +test1176 Q0 18644408 26 10.962068 Anserini +test1176 Q0 18618905 27 10.783924 Anserini +test1176 Q0 7989295 28 10.746375 Anserini +test1176 Q0 9598022 29 10.658205 Anserini +test1176 Q0 289436 30 10.632842 Anserini +test1177 Q0 5234466 1 11.883805 Anserini +test1177 Q0 16605849 2 11.717242 Anserini +test1177 Q0 4859778 3 11.281495 Anserini +test1177 Q0 2585200 4 11.200229 Anserini +test1177 Q0 5520084 5 11.074978 Anserini +test1177 Q0 4515189 6 10.953130 Anserini +test1177 Q0 15622431 7 10.863533 Anserini +test1177 Q0 17857010 8 10.852001 Anserini +test1177 Q0 20654683 9 10.850235 Anserini +test1177 Q0 14699778 10 10.796835 Anserini +test1177 Q0 4841442 11 10.743406 Anserini +test1177 Q0 7056745 12 10.719585 Anserini +test1177 Q0 9173700 13 10.604204 Anserini +test1177 Q0 2241757 14 10.490788 Anserini +test1177 Q0 1881393 15 10.444520 Anserini +test1177 Q0 4339076 16 10.398649 Anserini +test1177 Q0 8303229 17 10.397940 Anserini +test1177 Q0 14873985 18 10.390621 Anserini +test1177 Q0 797829 19 10.373429 Anserini +test1177 Q0 19635861 20 10.350439 Anserini +test1177 Q0 5520078 21 10.335464 Anserini +test1177 Q0 4218263 22 10.308855 Anserini +test1177 Q0 12349567 23 10.288327 Anserini +test1177 Q0 7229289 24 10.282709 Anserini +test1177 Q0 1690554 25 10.276665 Anserini +test1177 Q0 19793698 26 10.258509 Anserini +test1177 Q0 5520077 27 10.218022 Anserini +test1177 Q0 11043869 28 10.215343 Anserini +test1177 Q0 9613823 29 10.208714 Anserini +test1177 Q0 4218254 30 10.200661 Anserini +test1178 Q0 16663683 1 14.239909 Anserini +test1178 Q0 2455429 2 13.478393 Anserini +test1178 Q0 9080565 3 13.005970 Anserini +test1178 Q0 16663724 4 12.779022 Anserini +test1178 Q0 16663713 5 12.638977 Anserini +test1178 Q0 16663722 6 12.270638 Anserini +test1178 Q0 18667952 7 12.257523 Anserini +test1178 Q0 16663725 8 12.241256 Anserini +test1178 Q0 19950397 9 12.167946 Anserini +test1178 Q0 16438703 10 12.079536 Anserini +test1178 Q0 16663686 11 11.903305 Anserini +test1178 Q0 16663693 12 11.761727 Anserini +test1178 Q0 19750964 13 11.749863 Anserini +test1178 Q0 16664477 14 11.728088 Anserini +test1178 Q0 16663715 15 11.649926 Anserini +test1178 Q0 20596519 16 11.617969 Anserini +test1178 Q0 16663690 17 11.508861 Anserini +test1178 Q0 16663719 18 11.355119 Anserini +test1178 Q0 16664520 19 11.251051 Anserini +test1178 Q0 16663696 20 11.079242 Anserini +test1178 Q0 15636364 21 11.059475 Anserini +test1178 Q0 16957452 22 11.049673 Anserini +test1178 Q0 15789991 23 11.047155 Anserini +test1178 Q0 16663720 24 11.047155 Anserini +test1178 Q0 15623862 25 11.047155 Anserini +test1178 Q0 16663684 26 10.828272 Anserini +test1178 Q0 14255871 27 10.759006 Anserini +test1178 Q0 17770970 28 10.618144 Anserini +test1178 Q0 11344398 29 10.617639 Anserini +test1178 Q0 1026802 30 10.563067 Anserini +test1179 Q0 5053550 1 14.452205 Anserini +test1179 Q0 20569200 2 13.062043 Anserini +test1179 Q0 5964411 3 11.898574 Anserini +test1179 Q0 5053557 4 11.531748 Anserini +test1179 Q0 17591871 5 11.185794 Anserini +test1179 Q0 10971681 6 11.081506 Anserini +test1179 Q0 3623938 7 11.027634 Anserini +test1179 Q0 17591872 8 10.881597 Anserini +test1179 Q0 15471447 9 10.741268 Anserini +test1179 Q0 20569192 10 10.592061 Anserini +test1179 Q0 18097505 11 10.469418 Anserini +test1179 Q0 1614721 12 10.352076 Anserini +test1179 Q0 3623940 13 10.318955 Anserini +test1179 Q0 8882801 14 10.312916 Anserini +test1179 Q0 13628151 15 10.290411 Anserini +test1179 Q0 7998306 16 10.223260 Anserini +test1179 Q0 20569191 17 10.168114 Anserini +test1179 Q0 2723964 18 10.141350 Anserini +test1179 Q0 9524311 19 10.127042 Anserini +test1179 Q0 13101368 20 10.110234 Anserini +test1179 Q0 5458513 21 10.090164 Anserini +test1179 Q0 1483912 22 9.983107 Anserini +test1179 Q0 11306532 23 9.972019 Anserini +test1179 Q0 9525847 24 9.940104 Anserini +test1179 Q0 6925357 25 9.904580 Anserini +test1179 Q0 5166308 26 9.870808 Anserini +test1179 Q0 5251935 27 9.852869 Anserini +test1179 Q0 10500150 28 9.845138 Anserini +test1179 Q0 18992937 29 9.824638 Anserini +test1179 Q0 14404085 30 9.820399 Anserini +test118 Q0 18550719 1 12.605322 Anserini +test118 Q0 20919312 2 12.605322 Anserini +test118 Q0 20596952 3 12.367035 Anserini +test118 Q0 19854087 4 12.266530 Anserini +test118 Q0 17630922 5 11.987673 Anserini +test118 Q0 12558149 6 11.861803 Anserini +test118 Q0 3681558 7 11.816788 Anserini +test118 Q0 2551388 8 11.714818 Anserini +test118 Q0 16040902 9 11.242045 Anserini +test118 Q0 897324 10 11.232515 Anserini +test118 Q0 13140238 11 11.205803 Anserini +test118 Q0 7473303 12 11.113214 Anserini +test118 Q0 983006 13 10.984118 Anserini +test118 Q0 17219981 14 10.966624 Anserini +test118 Q0 19215376 15 10.966624 Anserini +test118 Q0 1512658 16 10.722060 Anserini +test118 Q0 1512663 17 10.563490 Anserini +test118 Q0 8908172 18 10.546379 Anserini +test118 Q0 20596953 19 10.543375 Anserini +test118 Q0 19854088 20 10.543375 Anserini +test118 Q0 20919313 21 10.543375 Anserini +test118 Q0 19215377 22 10.432347 Anserini +test118 Q0 17219982 23 10.432347 Anserini +test118 Q0 10163753 24 10.418614 Anserini +test118 Q0 17630923 25 10.383573 Anserini +test118 Q0 3476537 26 10.292839 Anserini +test118 Q0 7209063 27 10.288785 Anserini +test118 Q0 2754115 28 10.238841 Anserini +test118 Q0 700426 29 10.236267 Anserini +test118 Q0 3490303 30 10.231831 Anserini +test1180 Q0 2180147 1 12.786138 Anserini +test1180 Q0 4924636 2 12.626442 Anserini +test1180 Q0 1450813 3 12.026726 Anserini +test1180 Q0 2180134 4 11.966426 Anserini +test1180 Q0 20316321 5 11.451919 Anserini +test1180 Q0 5916702 6 11.337316 Anserini +test1180 Q0 2180146 7 11.166183 Anserini +test1180 Q0 2180140 8 11.163985 Anserini +test1180 Q0 9097469 9 11.122787 Anserini +test1180 Q0 586965 10 10.826748 Anserini +test1180 Q0 2180136 11 10.691549 Anserini +test1180 Q0 10623734 12 10.687348 Anserini +test1180 Q0 8137342 13 10.681496 Anserini +test1180 Q0 12557629 14 10.604655 Anserini +test1180 Q0 1975584 15 10.601951 Anserini +test1180 Q0 20474574 16 10.561457 Anserini +test1180 Q0 2060399 17 10.524928 Anserini +test1180 Q0 18025880 18 10.499783 Anserini +test1180 Q0 9651333 19 10.461367 Anserini +test1180 Q0 2935968 20 10.454473 Anserini +test1180 Q0 15360112 21 10.354960 Anserini +test1180 Q0 19282109 22 10.342610 Anserini +test1180 Q0 17647560 23 10.048749 Anserini +test1180 Q0 5067566 24 9.991991 Anserini +test1180 Q0 9342281 25 9.986475 Anserini +test1180 Q0 7071511 26 9.981793 Anserini +test1180 Q0 9481171 27 9.909825 Anserini +test1180 Q0 6411487 28 9.889456 Anserini +test1180 Q0 9444116 29 9.872381 Anserini +test1180 Q0 2180137 30 9.838016 Anserini +test1181 Q0 16868612 1 22.830194 Anserini +test1181 Q0 18137990 2 22.708338 Anserini +test1181 Q0 9010526 3 22.430563 Anserini +test1181 Q0 16307040 4 21.529976 Anserini +test1181 Q0 9047859 5 21.278910 Anserini +test1181 Q0 12302966 6 21.168530 Anserini +test1181 Q0 18358691 7 20.762497 Anserini +test1181 Q0 19064928 8 20.230156 Anserini +test1181 Q0 15163357 9 20.195831 Anserini +test1181 Q0 17342372 10 20.182549 Anserini +test1181 Q0 15163361 11 20.098690 Anserini +test1181 Q0 10438114 12 19.961094 Anserini +test1181 Q0 15163360 13 19.921396 Anserini +test1181 Q0 8677937 14 19.630690 Anserini +test1181 Q0 10157551 15 19.184883 Anserini +test1181 Q0 4100861 16 18.959305 Anserini +test1181 Q0 6654672 17 18.878189 Anserini +test1181 Q0 6654659 18 18.771238 Anserini +test1181 Q0 3415396 19 18.555887 Anserini +test1181 Q0 447818 20 18.360548 Anserini +test1181 Q0 20914698 21 18.200649 Anserini +test1181 Q0 19018784 22 18.014702 Anserini +test1181 Q0 20387508 23 17.923250 Anserini +test1181 Q0 15163359 24 17.879877 Anserini +test1181 Q0 6639514 25 17.856169 Anserini +test1181 Q0 6639530 26 17.856169 Anserini +test1181 Q0 9839590 27 17.826700 Anserini +test1181 Q0 20152250 28 17.592808 Anserini +test1181 Q0 19947089 29 17.592808 Anserini +test1181 Q0 20949385 30 17.581070 Anserini +test1182 Q0 8266655 1 10.273743 Anserini +test1182 Q0 18158916 2 9.394807 Anserini +test1182 Q0 8266670 3 9.206991 Anserini +test1182 Q0 12261072 4 9.163928 Anserini +test1182 Q0 8266651 5 8.858994 Anserini +test1182 Q0 2195154 6 8.737757 Anserini +test1182 Q0 18451498 7 8.664639 Anserini +test1182 Q0 20091585 8 8.641521 Anserini +test1182 Q0 8550477 9 8.486808 Anserini +test1182 Q0 10556421 10 8.486808 Anserini +test1182 Q0 8266643 11 8.479746 Anserini +test1182 Q0 8266653 12 8.450108 Anserini +test1182 Q0 17497219 13 8.192431 Anserini +test1182 Q0 1654358 14 8.160384 Anserini +test1182 Q0 10183850 15 8.160384 Anserini +test1182 Q0 11565762 16 8.112565 Anserini +test1182 Q0 8477229 17 8.064089 Anserini +test1182 Q0 19254063 18 8.012933 Anserini +test1182 Q0 6188252 19 7.991570 Anserini +test1182 Q0 2152704 20 7.937739 Anserini +test1182 Q0 17334517 21 7.936603 Anserini +test1182 Q0 17341756 22 7.936603 Anserini +test1182 Q0 17743291 23 7.902163 Anserini +test1182 Q0 8996537 24 7.887612 Anserini +test1182 Q0 14301258 25 7.831944 Anserini +test1182 Q0 3451336 26 7.831944 Anserini +test1182 Q0 18134368 27 7.822016 Anserini +test1182 Q0 17791228 28 7.795426 Anserini +test1182 Q0 17791229 29 7.795426 Anserini +test1182 Q0 8266658 30 7.774506 Anserini +test1183 Q0 20428451 1 16.577234 Anserini +test1183 Q0 20428465 2 15.893923 Anserini +test1183 Q0 6196126 3 15.731152 Anserini +test1183 Q0 6196140 4 15.172430 Anserini +test1183 Q0 6196132 5 14.114850 Anserini +test1183 Q0 6196123 6 13.959652 Anserini +test1183 Q0 6196145 7 13.959652 Anserini +test1183 Q0 15930001 8 13.835361 Anserini +test1183 Q0 6196138 9 13.741653 Anserini +test1183 Q0 20780403 10 13.645161 Anserini +test1183 Q0 16459468 11 13.611082 Anserini +test1183 Q0 20428457 12 13.542923 Anserini +test1183 Q0 6196133 13 13.506986 Anserini +test1183 Q0 6196139 14 13.487416 Anserini +test1183 Q0 16459470 15 13.282009 Anserini +test1183 Q0 9023379 16 13.161786 Anserini +test1183 Q0 6196125 17 13.116452 Anserini +test1183 Q0 6196142 18 13.084898 Anserini +test1183 Q0 6196143 19 13.017309 Anserini +test1183 Q0 13038796 20 12.922836 Anserini +test1183 Q0 9675148 21 12.892138 Anserini +test1183 Q0 5675837 22 12.866550 Anserini +test1183 Q0 6196134 23 12.846535 Anserini +test1183 Q0 6196128 24 12.843866 Anserini +test1183 Q0 5461870 25 12.755117 Anserini +test1183 Q0 6196124 26 12.753659 Anserini +test1183 Q0 11546920 27 12.637180 Anserini +test1183 Q0 18611577 28 12.628041 Anserini +test1183 Q0 6196137 29 12.627435 Anserini +test1183 Q0 6196141 30 12.550170 Anserini +test1184 Q0 5842141 1 10.711015 Anserini +test1184 Q0 3772000 2 9.659092 Anserini +test1184 Q0 13641125 3 9.654297 Anserini +test1184 Q0 12225837 4 9.431166 Anserini +test1184 Q0 10207141 5 9.397175 Anserini +test1184 Q0 347928 6 9.246346 Anserini +test1184 Q0 11426284 7 9.152016 Anserini +test1184 Q0 2924427 8 9.124490 Anserini +test1184 Q0 12505043 9 9.104856 Anserini +test1184 Q0 4857514 10 9.028352 Anserini +test1184 Q0 15079933 11 8.994019 Anserini +test1184 Q0 13121545 12 8.914019 Anserini +test1184 Q0 3035942 13 8.910316 Anserini +test1184 Q0 3870696 14 8.891356 Anserini +test1184 Q0 15795981 15 8.877666 Anserini +test1184 Q0 9603215 16 8.877068 Anserini +test1184 Q0 20342917 17 8.818000 Anserini +test1184 Q0 10030283 18 8.803726 Anserini +test1184 Q0 1826692 19 8.744111 Anserini +test1184 Q0 7523189 20 8.721438 Anserini +test1184 Q0 8367151 21 8.709572 Anserini +test1184 Q0 2204198 22 8.651799 Anserini +test1184 Q0 17128888 23 8.651799 Anserini +test1184 Q0 20729967 24 8.651799 Anserini +test1184 Q0 13946492 25 8.626602 Anserini +test1184 Q0 18688027 26 8.616400 Anserini +test1184 Q0 536380 27 8.610637 Anserini +test1184 Q0 8685507 28 8.572581 Anserini +test1184 Q0 20342916 29 8.555839 Anserini +test1184 Q0 12116945 30 8.550393 Anserini +test1185 Q0 12655597 1 16.264023 Anserini +test1185 Q0 12655598 2 16.264023 Anserini +test1185 Q0 174934 3 15.400476 Anserini +test1185 Q0 174948 4 14.335127 Anserini +test1185 Q0 174949 5 13.861134 Anserini +test1185 Q0 18151333 6 13.457201 Anserini +test1185 Q0 9945012 7 13.440130 Anserini +test1185 Q0 2172351 8 13.432436 Anserini +test1185 Q0 12968245 9 13.259012 Anserini +test1185 Q0 18151331 10 13.009623 Anserini +test1185 Q0 4518609 11 12.933322 Anserini +test1185 Q0 389728 12 12.857203 Anserini +test1185 Q0 13164031 13 12.806802 Anserini +test1185 Q0 4893911 14 12.634686 Anserini +test1185 Q0 2467285 15 12.537386 Anserini +test1185 Q0 488539 16 12.510400 Anserini +test1185 Q0 13164039 17 12.504614 Anserini +test1185 Q0 7746712 18 12.476349 Anserini +test1185 Q0 13164030 19 12.425418 Anserini +test1185 Q0 178917 20 12.398242 Anserini +test1185 Q0 15368164 21 12.370886 Anserini +test1185 Q0 2527579 22 12.359889 Anserini +test1185 Q0 18405021 23 12.340387 Anserini +test1185 Q0 9924164 24 12.261576 Anserini +test1185 Q0 9945011 25 12.179479 Anserini +test1185 Q0 16474943 26 12.178452 Anserini +test1185 Q0 5111597 27 12.153926 Anserini +test1185 Q0 5037463 28 12.000238 Anserini +test1185 Q0 5650485 29 11.978735 Anserini +test1185 Q0 3731108 30 11.936429 Anserini +test1186 Q0 8152943 1 13.307707 Anserini +test1186 Q0 6338150 2 12.483001 Anserini +test1186 Q0 4094695 3 12.109368 Anserini +test1186 Q0 7143003 4 11.955662 Anserini +test1186 Q0 13437318 5 11.826721 Anserini +test1186 Q0 5512394 6 11.676049 Anserini +test1186 Q0 9395573 7 11.665901 Anserini +test1186 Q0 6354892 8 11.463540 Anserini +test1186 Q0 2499706 9 11.443891 Anserini +test1186 Q0 2499708 10 11.375490 Anserini +test1186 Q0 2499692 11 11.333795 Anserini +test1186 Q0 606985 12 11.240034 Anserini +test1186 Q0 2499699 13 11.215119 Anserini +test1186 Q0 2499705 14 11.101644 Anserini +test1186 Q0 5483603 15 11.045248 Anserini +test1186 Q0 2499683 16 11.037157 Anserini +test1186 Q0 13925016 17 10.896891 Anserini +test1186 Q0 8981786 18 10.842374 Anserini +test1186 Q0 8981789 19 10.842374 Anserini +test1186 Q0 18341359 20 10.809989 Anserini +test1186 Q0 15323191 21 10.754998 Anserini +test1186 Q0 19292545 22 10.754998 Anserini +test1186 Q0 8420400 23 10.752851 Anserini +test1186 Q0 4369556 24 10.700356 Anserini +test1186 Q0 4369557 25 10.700356 Anserini +test1186 Q0 2499676 26 10.554115 Anserini +test1186 Q0 6338149 27 10.542197 Anserini +test1186 Q0 7315852 28 10.531212 Anserini +test1186 Q0 11160692 29 10.531212 Anserini +test1186 Q0 2499677 30 10.507237 Anserini +test1187 Q0 9982355 1 14.323093 Anserini +test1187 Q0 9915057 2 14.296707 Anserini +test1187 Q0 9915058 3 14.168756 Anserini +test1187 Q0 20367981 4 14.033938 Anserini +test1187 Q0 10211587 5 13.933540 Anserini +test1187 Q0 966947 6 13.904184 Anserini +test1187 Q0 9829053 7 13.698761 Anserini +test1187 Q0 11213808 8 13.660926 Anserini +test1187 Q0 9967447 9 13.472258 Anserini +test1187 Q0 967027 10 13.464241 Anserini +test1187 Q0 9916823 11 13.366177 Anserini +test1187 Q0 10493402 12 13.365072 Anserini +test1187 Q0 10493403 13 13.365072 Anserini +test1187 Q0 10688991 14 13.275659 Anserini +test1187 Q0 10688984 15 13.209481 Anserini +test1187 Q0 10013512 16 13.166814 Anserini +test1187 Q0 19398973 17 13.042258 Anserini +test1187 Q0 9982354 18 13.025699 Anserini +test1187 Q0 10134772 19 12.892735 Anserini +test1187 Q0 10138804 20 12.866838 Anserini +test1187 Q0 20367983 21 12.854722 Anserini +test1187 Q0 19285653 22 12.852860 Anserini +test1187 Q0 9916822 23 12.795421 Anserini +test1187 Q0 10013509 24 12.773289 Anserini +test1187 Q0 6918675 25 12.751258 Anserini +test1187 Q0 5341140 26 12.714789 Anserini +test1187 Q0 9967163 27 12.702833 Anserini +test1187 Q0 11213884 28 12.666862 Anserini +test1187 Q0 8266316 29 12.662817 Anserini +test1187 Q0 15664799 30 12.637650 Anserini +test1188 Q0 18758229 1 17.500397 Anserini +test1188 Q0 18758230 2 17.463100 Anserini +test1188 Q0 2352265 3 17.217468 Anserini +test1188 Q0 9469399 4 17.106401 Anserini +test1188 Q0 19515114 5 17.086386 Anserini +test1188 Q0 6741878 6 17.066050 Anserini +test1188 Q0 3824098 7 16.994217 Anserini +test1188 Q0 6183600 8 16.945700 Anserini +test1188 Q0 14851561 9 16.908134 Anserini +test1188 Q0 2626115 10 16.898045 Anserini +test1188 Q0 2626116 11 16.868828 Anserini +test1188 Q0 5576199 12 16.846418 Anserini +test1188 Q0 9118833 13 16.845871 Anserini +test1188 Q0 2258970 14 16.831343 Anserini +test1188 Q0 2258975 15 16.816158 Anserini +test1188 Q0 14851562 16 16.764027 Anserini +test1188 Q0 4349768 17 16.746567 Anserini +test1188 Q0 18129618 18 16.671902 Anserini +test1188 Q0 3824095 19 16.642704 Anserini +test1188 Q0 6464653 20 16.631914 Anserini +test1188 Q0 3461841 21 16.620575 Anserini +test1188 Q0 13174238 22 16.602098 Anserini +test1188 Q0 5944348 23 16.596016 Anserini +test1188 Q0 6057376 24 16.558208 Anserini +test1188 Q0 18129628 25 16.540241 Anserini +test1188 Q0 8477658 26 16.509302 Anserini +test1188 Q0 984912 27 16.503315 Anserini +test1188 Q0 5482755 28 16.497467 Anserini +test1188 Q0 3461837 29 16.487545 Anserini +test1188 Q0 9118836 30 16.472923 Anserini +test1189 Q0 5410278 1 24.595921 Anserini +test1189 Q0 5410300 2 22.409119 Anserini +test1189 Q0 20153401 3 20.576031 Anserini +test1189 Q0 20153403 4 20.576031 Anserini +test1189 Q0 5233611 5 20.329678 Anserini +test1189 Q0 12393520 6 20.301056 Anserini +test1189 Q0 14952725 7 19.839071 Anserini +test1189 Q0 14582710 8 19.828964 Anserini +test1189 Q0 5410285 9 19.714600 Anserini +test1189 Q0 16803886 10 19.546425 Anserini +test1189 Q0 7613090 11 19.341124 Anserini +test1189 Q0 18661726 12 19.331800 Anserini +test1189 Q0 459700 13 19.159277 Anserini +test1189 Q0 5410283 14 18.646557 Anserini +test1189 Q0 18610612 15 18.611523 Anserini +test1189 Q0 17675335 16 18.522013 Anserini +test1189 Q0 18547234 17 18.462511 Anserini +test1189 Q0 12393536 18 18.432444 Anserini +test1189 Q0 16359858 19 18.077612 Anserini +test1189 Q0 5678079 20 17.970726 Anserini +test1189 Q0 18532777 21 17.968868 Anserini +test1189 Q0 18532782 22 17.968868 Anserini +test1189 Q0 12160849 23 17.929176 Anserini +test1189 Q0 16490600 24 17.879053 Anserini +test1189 Q0 5233617 25 17.840639 Anserini +test1189 Q0 18798960 26 17.840639 Anserini +test1189 Q0 5409532 27 17.659389 Anserini +test1189 Q0 7713538 28 17.520767 Anserini +test1189 Q0 459645 29 17.519815 Anserini +test1189 Q0 14834870 30 17.488482 Anserini +test119 Q0 7949563 1 10.764172 Anserini +test119 Q0 7949556 2 10.658572 Anserini +test119 Q0 19691434 3 10.459873 Anserini +test119 Q0 19282839 4 10.166992 Anserini +test119 Q0 19691420 5 10.160915 Anserini +test119 Q0 4312886 6 10.108407 Anserini +test119 Q0 6924952 7 10.084135 Anserini +test119 Q0 10120443 8 10.068582 Anserini +test119 Q0 10120433 9 10.068582 Anserini +test119 Q0 6620532 10 10.056665 Anserini +test119 Q0 3060358 11 10.051497 Anserini +test119 Q0 6772439 12 9.916367 Anserini +test119 Q0 1794651 13 9.865343 Anserini +test119 Q0 17489603 14 9.653788 Anserini +test119 Q0 13098959 15 9.613088 Anserini +test119 Q0 5518309 16 9.514003 Anserini +test119 Q0 1859374 17 9.494905 Anserini +test119 Q0 19122175 18 9.451489 Anserini +test119 Q0 19691421 19 9.451055 Anserini +test119 Q0 17489607 20 9.408727 Anserini +test119 Q0 1536637 21 9.359518 Anserini +test119 Q0 13138267 22 9.356097 Anserini +test119 Q0 4112785 23 9.316759 Anserini +test119 Q0 19122168 24 9.279726 Anserini +test119 Q0 16471828 25 9.127564 Anserini +test119 Q0 14053003 26 9.093270 Anserini +test119 Q0 6620545 27 9.092988 Anserini +test119 Q0 3736979 28 9.032478 Anserini +test119 Q0 2704603 29 9.011787 Anserini +test119 Q0 13098958 30 8.952009 Anserini +test1190 Q0 8473242 1 12.189667 Anserini +test1190 Q0 5259572 2 10.988737 Anserini +test1190 Q0 2460964 3 10.449051 Anserini +test1190 Q0 1485949 4 10.197649 Anserini +test1190 Q0 5259581 5 10.118704 Anserini +test1190 Q0 5259552 6 10.019893 Anserini +test1190 Q0 13447449 7 9.983953 Anserini +test1190 Q0 14595870 8 9.983953 Anserini +test1190 Q0 2460976 9 9.756454 Anserini +test1190 Q0 8136031 10 9.736064 Anserini +test1190 Q0 1485914 11 9.648655 Anserini +test1190 Q0 17784813 12 9.617203 Anserini +test1190 Q0 13824411 13 9.614757 Anserini +test1190 Q0 17784818 14 9.584837 Anserini +test1190 Q0 1485874 15 9.554303 Anserini +test1190 Q0 14595891 16 9.496882 Anserini +test1190 Q0 113663 17 9.474386 Anserini +test1190 Q0 1485883 18 9.392084 Anserini +test1190 Q0 5259575 19 9.392084 Anserini +test1190 Q0 13447070 20 9.363747 Anserini +test1190 Q0 2460967 21 9.363747 Anserini +test1190 Q0 20313123 22 9.302971 Anserini +test1190 Q0 5259539 23 9.290354 Anserini +test1190 Q0 5259592 24 9.290354 Anserini +test1190 Q0 740319 25 9.274702 Anserini +test1190 Q0 402271 26 9.274702 Anserini +test1190 Q0 1489839 27 9.267344 Anserini +test1190 Q0 14595892 28 9.236460 Anserini +test1190 Q0 14595889 29 9.228892 Anserini +test1190 Q0 14595864 30 9.223913 Anserini +test1191 Q0 208012 1 13.127719 Anserini +test1191 Q0 8299939 2 12.291548 Anserini +test1191 Q0 12549369 3 12.202801 Anserini +test1191 Q0 3455879 4 11.925614 Anserini +test1191 Q0 10292738 5 11.898128 Anserini +test1191 Q0 15235696 6 11.627796 Anserini +test1191 Q0 36625 7 11.594913 Anserini +test1191 Q0 15861403 8 11.528304 Anserini +test1191 Q0 10610785 9 11.432996 Anserini +test1191 Q0 12448711 10 11.288980 Anserini +test1191 Q0 20008707 11 11.203080 Anserini +test1191 Q0 4789785 12 11.199846 Anserini +test1191 Q0 15538141 13 11.180344 Anserini +test1191 Q0 8596340 14 11.170043 Anserini +test1191 Q0 19881106 15 11.017454 Anserini +test1191 Q0 3568608 16 11.014504 Anserini +test1191 Q0 14879597 17 10.967385 Anserini +test1191 Q0 9281500 18 10.908117 Anserini +test1191 Q0 2195354 19 10.827017 Anserini +test1191 Q0 2377710 20 10.791077 Anserini +test1191 Q0 18258177 21 10.765687 Anserini +test1191 Q0 2826461 22 10.749537 Anserini +test1191 Q0 143451 23 10.722610 Anserini +test1191 Q0 6448581 24 10.598730 Anserini +test1191 Q0 20008701 25 10.561188 Anserini +test1191 Q0 9248731 26 10.559751 Anserini +test1191 Q0 5701043 27 10.466523 Anserini +test1191 Q0 19511607 28 10.305324 Anserini +test1191 Q0 16928648 29 10.297092 Anserini +test1191 Q0 508643 30 10.293734 Anserini +test1192 Q0 2381366 1 12.618301 Anserini +test1192 Q0 2451664 2 12.166710 Anserini +test1192 Q0 14581355 3 12.022141 Anserini +test1192 Q0 16693454 4 11.416548 Anserini +test1192 Q0 15462728 5 11.105461 Anserini +test1192 Q0 6803797 6 11.046650 Anserini +test1192 Q0 2451661 7 11.012650 Anserini +test1192 Q0 3938494 8 11.002396 Anserini +test1192 Q0 5263328 9 10.800257 Anserini +test1192 Q0 19671965 10 10.786499 Anserini +test1192 Q0 19967081 11 10.709641 Anserini +test1192 Q0 2381365 12 10.695911 Anserini +test1192 Q0 5997951 13 10.695713 Anserini +test1192 Q0 40662 14 10.639738 Anserini +test1192 Q0 16229595 15 10.591771 Anserini +test1192 Q0 13737068 16 10.580375 Anserini +test1192 Q0 12495117 17 10.550924 Anserini +test1192 Q0 4513824 18 10.527157 Anserini +test1192 Q0 3771187 19 10.511250 Anserini +test1192 Q0 2095912 20 10.448810 Anserini +test1192 Q0 14594292 21 10.437522 Anserini +test1192 Q0 20480948 22 10.430252 Anserini +test1192 Q0 2593918 23 10.428246 Anserini +test1192 Q0 10766190 24 10.413063 Anserini +test1192 Q0 13388885 25 10.402323 Anserini +test1192 Q0 2480480 26 10.367478 Anserini +test1192 Q0 12608600 27 10.357718 Anserini +test1192 Q0 4905430 28 10.282814 Anserini +test1192 Q0 6285268 29 10.182177 Anserini +test1192 Q0 2616172 30 10.175344 Anserini +test1193 Q0 772922 1 13.720078 Anserini +test1193 Q0 14864544 2 13.688620 Anserini +test1193 Q0 10474715 3 13.574850 Anserini +test1193 Q0 13322922 4 13.071883 Anserini +test1193 Q0 13322925 5 13.071883 Anserini +test1193 Q0 13322923 6 13.069578 Anserini +test1193 Q0 18029060 7 12.940590 Anserini +test1193 Q0 10474713 8 12.828635 Anserini +test1193 Q0 492896 9 12.648209 Anserini +test1193 Q0 4462596 10 12.623069 Anserini +test1193 Q0 3706285 11 12.615790 Anserini +test1193 Q0 19017805 12 12.537251 Anserini +test1193 Q0 16513619 13 12.503454 Anserini +test1193 Q0 15660609 14 12.447176 Anserini +test1193 Q0 10534605 15 12.426962 Anserini +test1193 Q0 10534606 16 12.426962 Anserini +test1193 Q0 8502979 17 12.368656 Anserini +test1193 Q0 15689427 18 12.358049 Anserini +test1193 Q0 3537579 19 12.326574 Anserini +test1193 Q0 12946587 20 12.295644 Anserini +test1193 Q0 20650934 21 12.280995 Anserini +test1193 Q0 13548057 22 12.244084 Anserini +test1193 Q0 13548059 23 12.244084 Anserini +test1193 Q0 492895 24 12.240640 Anserini +test1193 Q0 16513702 25 12.186941 Anserini +test1193 Q0 17423936 26 12.102866 Anserini +test1193 Q0 13683676 27 12.089224 Anserini +test1193 Q0 19017634 28 12.004760 Anserini +test1193 Q0 19017776 29 12.004760 Anserini +test1193 Q0 9516067 30 11.991443 Anserini +test1194 Q0 4603411 1 14.059928 Anserini +test1194 Q0 6921593 2 14.058727 Anserini +test1194 Q0 6246892 3 14.003529 Anserini +test1194 Q0 16325834 4 13.375782 Anserini +test1194 Q0 8188361 5 13.100374 Anserini +test1194 Q0 15397902 6 12.740373 Anserini +test1194 Q0 8174478 7 12.738518 Anserini +test1194 Q0 8136303 8 12.609157 Anserini +test1194 Q0 18058474 9 12.544396 Anserini +test1194 Q0 20731483 10 12.510334 Anserini +test1194 Q0 1885764 11 12.489311 Anserini +test1194 Q0 8176736 12 12.484182 Anserini +test1194 Q0 13731838 13 12.324256 Anserini +test1194 Q0 8118889 14 12.288897 Anserini +test1194 Q0 2310615 15 12.258611 Anserini +test1194 Q0 750621 16 12.256041 Anserini +test1194 Q0 6469153 17 12.162737 Anserini +test1194 Q0 2094395 18 12.057331 Anserini +test1194 Q0 2256170 19 12.046251 Anserini +test1194 Q0 14500605 20 12.035522 Anserini +test1194 Q0 7513200 21 11.965137 Anserini +test1194 Q0 9546473 22 11.952512 Anserini +test1194 Q0 2256153 23 11.952512 Anserini +test1194 Q0 6821133 24 11.943296 Anserini +test1194 Q0 4842776 25 11.834988 Anserini +test1194 Q0 15370072 26 11.794773 Anserini +test1194 Q0 13671539 27 11.778078 Anserini +test1194 Q0 283799 28 11.760883 Anserini +test1194 Q0 3345206 29 11.742008 Anserini +test1194 Q0 7656946 30 11.717996 Anserini +test1195 Q0 8465068 1 15.190544 Anserini +test1195 Q0 705486 2 14.728011 Anserini +test1195 Q0 17687299 3 13.944013 Anserini +test1195 Q0 705454 4 13.216566 Anserini +test1195 Q0 2664493 5 13.180172 Anserini +test1195 Q0 12819982 6 12.925385 Anserini +test1195 Q0 300454 7 12.839210 Anserini +test1195 Q0 705453 8 12.573841 Anserini +test1195 Q0 17100018 9 12.484321 Anserini +test1195 Q0 10210732 10 12.451425 Anserini +test1195 Q0 12819976 11 12.374829 Anserini +test1195 Q0 16890604 12 12.350142 Anserini +test1195 Q0 3808230 13 12.334494 Anserini +test1195 Q0 300985 14 12.281462 Anserini +test1195 Q0 17442666 15 12.262164 Anserini +test1195 Q0 14456767 16 12.239379 Anserini +test1195 Q0 705467 17 12.171140 Anserini +test1195 Q0 17687294 18 11.996044 Anserini +test1195 Q0 12202677 19 11.954552 Anserini +test1195 Q0 2619824 20 11.947234 Anserini +test1195 Q0 14456766 21 11.944752 Anserini +test1195 Q0 14456770 22 11.944752 Anserini +test1195 Q0 4591170 23 11.858532 Anserini +test1195 Q0 8936289 24 11.854097 Anserini +test1195 Q0 1190503 25 11.845977 Anserini +test1195 Q0 12584368 26 11.845611 Anserini +test1195 Q0 12819983 27 11.817318 Anserini +test1195 Q0 14964371 28 11.805042 Anserini +test1195 Q0 14964373 29 11.805042 Anserini +test1195 Q0 17687297 30 11.775498 Anserini +test1196 Q0 19350333 1 16.392021 Anserini +test1196 Q0 6365479 2 13.787424 Anserini +test1196 Q0 4827538 3 13.067868 Anserini +test1196 Q0 18202675 4 12.954481 Anserini +test1196 Q0 18261727 5 12.947770 Anserini +test1196 Q0 17819245 6 12.828321 Anserini +test1196 Q0 18790625 7 12.782598 Anserini +test1196 Q0 5070147 8 12.763046 Anserini +test1196 Q0 19035196 9 12.747295 Anserini +test1196 Q0 4755526 10 12.615829 Anserini +test1196 Q0 9662545 11 12.607153 Anserini +test1196 Q0 18544514 12 12.575275 Anserini +test1196 Q0 16883533 13 12.284177 Anserini +test1196 Q0 8617414 14 12.242537 Anserini +test1196 Q0 17860628 15 12.102651 Anserini +test1196 Q0 15216510 16 12.094654 Anserini +test1196 Q0 459739 17 12.023290 Anserini +test1196 Q0 14424333 18 11.955734 Anserini +test1196 Q0 16587820 19 11.887176 Anserini +test1196 Q0 7216711 20 11.828006 Anserini +test1196 Q0 10624988 21 11.797059 Anserini +test1196 Q0 10833573 22 11.790918 Anserini +test1196 Q0 13869472 23 11.758957 Anserini +test1196 Q0 16775239 24 11.749751 Anserini +test1196 Q0 6552934 25 11.698648 Anserini +test1196 Q0 7074091 26 11.683141 Anserini +test1196 Q0 5027093 27 11.647053 Anserini +test1196 Q0 19075239 28 11.644611 Anserini +test1196 Q0 8072448 29 11.611173 Anserini +test1196 Q0 20516544 30 11.568804 Anserini +test1197 Q0 20845605 1 13.194859 Anserini +test1197 Q0 20845606 2 13.185745 Anserini +test1197 Q0 10520055 3 12.101700 Anserini +test1197 Q0 2916080 4 11.799709 Anserini +test1197 Q0 6506986 5 10.930141 Anserini +test1197 Q0 15283045 6 10.890816 Anserini +test1197 Q0 12656756 7 10.629178 Anserini +test1197 Q0 17913476 8 10.534541 Anserini +test1197 Q0 18757635 9 10.366066 Anserini +test1197 Q0 16779148 10 10.288370 Anserini +test1197 Q0 8509451 11 10.288370 Anserini +test1197 Q0 3490657 12 10.220765 Anserini +test1197 Q0 3391685 13 10.181806 Anserini +test1197 Q0 12908043 14 10.112787 Anserini +test1197 Q0 940753 15 9.918024 Anserini +test1197 Q0 5532307 16 9.882392 Anserini +test1197 Q0 19023577 17 9.857302 Anserini +test1197 Q0 14456527 18 9.720935 Anserini +test1197 Q0 1406562 19 9.714258 Anserini +test1197 Q0 20143079 20 9.678116 Anserini +test1197 Q0 17733932 21 9.675839 Anserini +test1197 Q0 5908198 22 9.670183 Anserini +test1197 Q0 5908199 23 9.662201 Anserini +test1197 Q0 1133634 24 9.646667 Anserini +test1197 Q0 6187488 25 9.518409 Anserini +test1197 Q0 19346335 26 9.503535 Anserini +test1197 Q0 11746589 27 9.490520 Anserini +test1197 Q0 2639186 28 9.424479 Anserini +test1197 Q0 17401232 29 9.403624 Anserini +test1197 Q0 9976790 30 9.403624 Anserini +test1198 Q0 1032245 1 16.985062 Anserini +test1198 Q0 1032237 2 16.360531 Anserini +test1198 Q0 1032241 3 16.030838 Anserini +test1198 Q0 11894515 4 14.217015 Anserini +test1198 Q0 1032240 5 13.702235 Anserini +test1198 Q0 11894518 6 13.131034 Anserini +test1198 Q0 1032238 7 13.094137 Anserini +test1198 Q0 1036013 8 12.721878 Anserini +test1198 Q0 1035168 9 12.711379 Anserini +test1198 Q0 14096803 10 12.693186 Anserini +test1198 Q0 680809 11 12.489103 Anserini +test1198 Q0 13229754 12 12.411292 Anserini +test1198 Q0 1036009 13 12.295719 Anserini +test1198 Q0 11894516 14 12.177454 Anserini +test1198 Q0 1032239 15 12.094275 Anserini +test1198 Q0 1041514 16 11.530631 Anserini +test1198 Q0 680804 17 11.507334 Anserini +test1198 Q0 1041513 18 11.352008 Anserini +test1198 Q0 20776110 19 11.189943 Anserini +test1198 Q0 1032244 20 11.185541 Anserini +test1198 Q0 1032242 21 11.067792 Anserini +test1198 Q0 1032243 22 10.952494 Anserini +test1198 Q0 5500661 23 10.478510 Anserini +test1198 Q0 1136107 24 10.428617 Anserini +test1198 Q0 8799570 25 10.362989 Anserini +test1198 Q0 1033091 26 10.336052 Anserini +test1198 Q0 1033094 27 10.336052 Anserini +test1198 Q0 11894517 28 10.301685 Anserini +test1198 Q0 8799573 29 10.275339 Anserini +test1198 Q0 1041563 30 10.214876 Anserini +test1199 Q0 11925685 1 13.977735 Anserini +test1199 Q0 18064524 2 13.852242 Anserini +test1199 Q0 11925686 3 13.721666 Anserini +test1199 Q0 526910 4 13.625206 Anserini +test1199 Q0 11276946 5 13.456306 Anserini +test1199 Q0 9157608 6 13.063288 Anserini +test1199 Q0 2337394 7 13.049073 Anserini +test1199 Q0 154956 8 13.022239 Anserini +test1199 Q0 4446515 9 12.909404 Anserini +test1199 Q0 4446514 10 12.864500 Anserini +test1199 Q0 10811775 11 12.793839 Anserini +test1199 Q0 14754352 12 12.700620 Anserini +test1199 Q0 10811781 13 12.627707 Anserini +test1199 Q0 20857576 14 12.612250 Anserini +test1199 Q0 7309445 15 12.562551 Anserini +test1199 Q0 10092452 16 12.493079 Anserini +test1199 Q0 12300443 17 12.478374 Anserini +test1199 Q0 9346958 18 12.457438 Anserini +test1199 Q0 2432157 19 12.435078 Anserini +test1199 Q0 4641798 20 12.430167 Anserini +test1199 Q0 2499933 21 12.418535 Anserini +test1199 Q0 3374284 22 12.376022 Anserini +test1199 Q0 2337396 23 12.355382 Anserini +test1199 Q0 2771817 24 12.292119 Anserini +test1199 Q0 9068929 25 12.237322 Anserini +test1199 Q0 20013861 26 12.233389 Anserini +test1199 Q0 2437855 27 12.188384 Anserini +test1199 Q0 15720079 28 12.176317 Anserini +test1199 Q0 8945294 29 12.171196 Anserini +test1199 Q0 2437846 30 12.137978 Anserini +test12 Q0 17435917 1 17.864243 Anserini +test12 Q0 10190710 2 17.674572 Anserini +test12 Q0 8276689 3 17.472292 Anserini +test12 Q0 3804497 4 17.438244 Anserini +test12 Q0 3804506 5 17.298773 Anserini +test12 Q0 5593923 6 17.014292 Anserini +test12 Q0 10190745 7 16.868740 Anserini +test12 Q0 4455546 8 16.739897 Anserini +test12 Q0 10190714 9 16.167711 Anserini +test12 Q0 7157549 10 16.126293 Anserini +test12 Q0 17435896 11 16.121132 Anserini +test12 Q0 14986216 12 16.094641 Anserini +test12 Q0 17435883 13 16.085636 Anserini +test12 Q0 4455529 14 16.047287 Anserini +test12 Q0 8276691 15 16.047287 Anserini +test12 Q0 17435918 16 15.949631 Anserini +test12 Q0 10190747 17 15.928404 Anserini +test12 Q0 5593914 18 15.912039 Anserini +test12 Q0 17435875 19 15.780735 Anserini +test12 Q0 17435866 20 15.748689 Anserini +test12 Q0 17435888 21 15.681814 Anserini +test12 Q0 2919286 22 15.658524 Anserini +test12 Q0 8922339 23 15.519861 Anserini +test12 Q0 8922344 24 15.519861 Anserini +test12 Q0 4952317 25 15.490413 Anserini +test12 Q0 17435890 26 15.398895 Anserini +test12 Q0 8276704 27 15.398895 Anserini +test12 Q0 2815270 28 15.395941 Anserini +test12 Q0 8276711 29 15.353623 Anserini +test12 Q0 8276702 30 15.308563 Anserini +test120 Q0 20845394 1 16.865295 Anserini +test120 Q0 16487194 2 16.806412 Anserini +test120 Q0 10170718 3 15.688657 Anserini +test120 Q0 16487197 4 15.439009 Anserini +test120 Q0 2408314 5 14.853454 Anserini +test120 Q0 8411583 6 14.653050 Anserini +test120 Q0 10170723 7 14.648622 Anserini +test120 Q0 17034890 8 14.238853 Anserini +test120 Q0 19713161 9 14.165401 Anserini +test120 Q0 16541645 10 13.926929 Anserini +test120 Q0 15521991 11 13.846020 Anserini +test120 Q0 17845242 12 13.803563 Anserini +test120 Q0 4637794 13 13.763765 Anserini +test120 Q0 12049597 14 13.748144 Anserini +test120 Q0 4933853 15 13.499063 Anserini +test120 Q0 16315547 16 13.499063 Anserini +test120 Q0 18956447 17 13.265724 Anserini +test120 Q0 10170719 18 13.125618 Anserini +test120 Q0 12404400 19 12.962628 Anserini +test120 Q0 9917914 20 12.846725 Anserini +test120 Q0 10170721 21 12.830530 Anserini +test120 Q0 17502932 22 12.824519 Anserini +test120 Q0 16487195 23 12.739493 Anserini +test120 Q0 2115981 24 12.677362 Anserini +test120 Q0 14986380 25 12.677362 Anserini +test120 Q0 15813792 26 12.656083 Anserini +test120 Q0 8533027 27 12.597526 Anserini +test120 Q0 5519092 28 12.595108 Anserini +test120 Q0 10394519 29 12.593088 Anserini +test120 Q0 10170722 30 12.572454 Anserini +test1200 Q0 15568246 1 11.464580 Anserini +test1200 Q0 13486425 2 11.058453 Anserini +test1200 Q0 5541756 3 10.445663 Anserini +test1200 Q0 7699496 4 10.416393 Anserini +test1200 Q0 9692262 5 10.412755 Anserini +test1200 Q0 15525982 6 10.314092 Anserini +test1200 Q0 9268604 7 10.311004 Anserini +test1200 Q0 15096418 8 10.206757 Anserini +test1200 Q0 4705381 9 10.203912 Anserini +test1200 Q0 13133333 10 10.194956 Anserini +test1200 Q0 1481036 11 10.193567 Anserini +test1200 Q0 4261111 12 10.127510 Anserini +test1200 Q0 15616808 13 10.013029 Anserini +test1200 Q0 5030729 14 9.993037 Anserini +test1200 Q0 15450992 15 9.985456 Anserini +test1200 Q0 18177885 16 9.963367 Anserini +test1200 Q0 9261420 17 9.957086 Anserini +test1200 Q0 13661937 18 9.935922 Anserini +test1200 Q0 8885434 19 9.924084 Anserini +test1200 Q0 20234942 20 9.899333 Anserini +test1200 Q0 12769197 21 9.879335 Anserini +test1200 Q0 19148957 22 9.811743 Anserini +test1200 Q0 3727978 23 9.717525 Anserini +test1200 Q0 13352676 24 9.673191 Anserini +test1200 Q0 11366208 25 9.655488 Anserini +test1200 Q0 10222012 26 9.649791 Anserini +test1200 Q0 15281835 27 9.649374 Anserini +test1200 Q0 18288089 28 9.647040 Anserini +test1200 Q0 12703639 29 9.632985 Anserini +test1200 Q0 3615516 30 9.632710 Anserini +test1201 Q0 10979282 1 17.138828 Anserini +test1201 Q0 10979284 2 16.832174 Anserini +test1201 Q0 13524778 3 14.821052 Anserini +test1201 Q0 14354253 4 14.184742 Anserini +test1201 Q0 18390803 5 13.946337 Anserini +test1201 Q0 16377682 6 13.917698 Anserini +test1201 Q0 6448002 7 13.815270 Anserini +test1201 Q0 4606204 8 13.381498 Anserini +test1201 Q0 5685594 9 13.313959 Anserini +test1201 Q0 5253595 10 13.236042 Anserini +test1201 Q0 14108273 11 13.083741 Anserini +test1201 Q0 8405928 12 13.037497 Anserini +test1201 Q0 54182 13 12.540566 Anserini +test1201 Q0 10979283 14 12.520041 Anserini +test1201 Q0 12994799 15 12.511633 Anserini +test1201 Q0 1437111 16 12.489139 Anserini +test1201 Q0 1873402 17 12.480491 Anserini +test1201 Q0 1399349 18 12.472047 Anserini +test1201 Q0 6448007 19 12.402995 Anserini +test1201 Q0 20579516 20 12.209324 Anserini +test1201 Q0 8626263 21 12.202698 Anserini +test1201 Q0 14397747 22 12.183950 Anserini +test1201 Q0 9767655 23 12.139169 Anserini +test1201 Q0 16450563 24 12.076200 Anserini +test1201 Q0 419584 25 12.049083 Anserini +test1201 Q0 13954002 26 12.040970 Anserini +test1201 Q0 13710533 27 12.023711 Anserini +test1201 Q0 1463632 28 11.985835 Anserini +test1201 Q0 16622074 29 11.938415 Anserini +test1201 Q0 15325211 30 11.916398 Anserini +test1202 Q0 2265003 1 16.049717 Anserini +test1202 Q0 9756434 2 13.450771 Anserini +test1202 Q0 15955104 3 12.176445 Anserini +test1202 Q0 1806587 4 10.418150 Anserini +test1202 Q0 10719073 5 10.235209 Anserini +test1202 Q0 19367449 6 9.584489 Anserini +test1202 Q0 1833018 7 9.258892 Anserini +test1202 Q0 1833029 8 9.258892 Anserini +test1202 Q0 538008 9 9.160386 Anserini +test1202 Q0 9782181 10 9.160386 Anserini +test1202 Q0 12716898 11 9.160386 Anserini +test1202 Q0 15665726 12 9.160386 Anserini +test1202 Q0 14912943 13 9.160386 Anserini +test1202 Q0 15955102 14 9.160386 Anserini +test1202 Q0 19311984 15 9.064148 Anserini +test1202 Q0 19618246 16 9.063955 Anserini +test1202 Q0 18038079 17 9.045163 Anserini +test1202 Q0 15625958 18 9.032097 Anserini +test1202 Q0 20187283 19 8.974895 Anserini +test1202 Q0 13575825 20 8.974895 Anserini +test1202 Q0 19618248 21 8.969532 Anserini +test1202 Q0 8756051 22 8.969532 Anserini +test1202 Q0 20699050 23 8.936497 Anserini +test1202 Q0 2803280 24 8.905753 Anserini +test1202 Q0 18455021 25 8.861196 Anserini +test1202 Q0 11021544 26 8.830522 Anserini +test1202 Q0 98957 27 8.830522 Anserini +test1202 Q0 18155456 28 8.816775 Anserini +test1202 Q0 8842706 29 8.663383 Anserini +test1202 Q0 8810342 30 8.561615 Anserini +test1203 Q0 12128436 1 9.482136 Anserini +test1203 Q0 1460280 2 9.376116 Anserini +test1203 Q0 20686471 3 9.269667 Anserini +test1203 Q0 6204200 4 8.709261 Anserini +test1203 Q0 2520454 5 8.581346 Anserini +test1203 Q0 4059735 6 8.401311 Anserini +test1203 Q0 7014731 7 8.268985 Anserini +test1203 Q0 19740150 8 8.268985 Anserini +test1203 Q0 446362 9 8.204553 Anserini +test1203 Q0 3942277 10 8.134287 Anserini +test1203 Q0 20970353 11 8.134287 Anserini +test1203 Q0 20970354 12 8.134287 Anserini +test1203 Q0 402696 13 8.060279 Anserini +test1203 Q0 20347249 14 7.991305 Anserini +test1203 Q0 3417275 15 7.987662 Anserini +test1203 Q0 3063371 16 7.987662 Anserini +test1203 Q0 4059710 17 7.821294 Anserini +test1203 Q0 4350011 18 7.741708 Anserini +test1203 Q0 556353 19 7.670887 Anserini +test1203 Q0 19821567 20 7.657309 Anserini +test1203 Q0 19011095 21 7.586066 Anserini +test1203 Q0 8204422 22 7.565218 Anserini +test1203 Q0 13267237 23 7.516181 Anserini +test1203 Q0 6360406 24 7.456089 Anserini +test1203 Q0 2874209 25 7.456089 Anserini +test1203 Q0 2118017 26 7.418218 Anserini +test1203 Q0 8498721 27 7.418218 Anserini +test1203 Q0 20141261 28 7.331723 Anserini +test1203 Q0 12651949 29 7.331723 Anserini +test1203 Q0 11070865 30 7.293243 Anserini +test1204 Q0 5453279 1 14.905146 Anserini +test1204 Q0 5453286 2 14.718783 Anserini +test1204 Q0 9690216 3 14.444454 Anserini +test1204 Q0 5453278 4 14.339044 Anserini +test1204 Q0 16856832 5 14.231374 Anserini +test1204 Q0 2150873 6 14.150473 Anserini +test1204 Q0 2548121 7 14.063155 Anserini +test1204 Q0 5453280 8 14.000055 Anserini +test1204 Q0 5453282 9 13.876327 Anserini +test1204 Q0 79743 10 13.761432 Anserini +test1204 Q0 5997854 11 13.659081 Anserini +test1204 Q0 2150869 12 13.532576 Anserini +test1204 Q0 7255792 13 13.532188 Anserini +test1204 Q0 5453284 14 13.477110 Anserini +test1204 Q0 5453289 15 13.477110 Anserini +test1204 Q0 2548127 16 13.397068 Anserini +test1204 Q0 8717681 17 13.134973 Anserini +test1204 Q0 2548122 18 13.066056 Anserini +test1204 Q0 17137704 19 12.780033 Anserini +test1204 Q0 5453281 20 12.752938 Anserini +test1204 Q0 5453287 21 12.647724 Anserini +test1204 Q0 18218422 22 12.583191 Anserini +test1204 Q0 18914137 23 12.388288 Anserini +test1204 Q0 79777 24 12.371347 Anserini +test1204 Q0 13400882 25 12.352178 Anserini +test1204 Q0 2548131 26 12.090931 Anserini +test1204 Q0 16291015 27 12.090931 Anserini +test1204 Q0 2361852 28 12.017550 Anserini +test1204 Q0 20865971 29 11.956298 Anserini +test1204 Q0 8151965 30 11.940924 Anserini +test1205 Q0 5124906 1 15.393094 Anserini +test1205 Q0 4271705 2 14.023771 Anserini +test1205 Q0 10973650 3 13.983858 Anserini +test1205 Q0 14804413 4 13.598924 Anserini +test1205 Q0 4341750 5 13.587177 Anserini +test1205 Q0 13544798 6 13.551293 Anserini +test1205 Q0 10973646 7 13.420439 Anserini +test1205 Q0 2777462 8 13.386080 Anserini +test1205 Q0 8588064 9 13.373326 Anserini +test1205 Q0 4169665 10 13.269896 Anserini +test1205 Q0 4341707 11 13.184742 Anserini +test1205 Q0 7912431 12 13.128860 Anserini +test1205 Q0 4341696 13 13.019135 Anserini +test1205 Q0 14804440 14 13.014412 Anserini +test1205 Q0 4341744 15 12.951679 Anserini +test1205 Q0 4171634 16 12.928012 Anserini +test1205 Q0 10828254 17 12.926889 Anserini +test1205 Q0 724817 18 12.925760 Anserini +test1205 Q0 10828402 19 12.900053 Anserini +test1205 Q0 7010725 20 12.889701 Anserini +test1205 Q0 20401174 21 12.859069 Anserini +test1205 Q0 19766075 22 12.805723 Anserini +test1205 Q0 4341588 23 12.770273 Anserini +test1205 Q0 5242883 24 12.759699 Anserini +test1205 Q0 10316342 25 12.659833 Anserini +test1205 Q0 8028231 26 12.651581 Anserini +test1205 Q0 19509856 27 12.574699 Anserini +test1205 Q0 20401143 28 12.567358 Anserini +test1205 Q0 5325748 29 12.546508 Anserini +test1205 Q0 4169781 30 12.488682 Anserini +test1206 Q0 6093882 1 29.162344 Anserini +test1206 Q0 6093878 2 28.559425 Anserini +test1206 Q0 14594541 3 28.315636 Anserini +test1206 Q0 17563547 4 28.294905 Anserini +test1206 Q0 14594529 5 27.997482 Anserini +test1206 Q0 6093873 6 27.892067 Anserini +test1206 Q0 17563548 7 27.765190 Anserini +test1206 Q0 17563545 8 27.020029 Anserini +test1206 Q0 17563553 9 26.791336 Anserini +test1206 Q0 6093877 10 26.695377 Anserini +test1206 Q0 6093876 11 26.693937 Anserini +test1206 Q0 17563558 12 26.377888 Anserini +test1206 Q0 14123917 13 26.351553 Anserini +test1206 Q0 14123918 14 26.351553 Anserini +test1206 Q0 14594532 15 26.120504 Anserini +test1206 Q0 17563557 16 25.879944 Anserini +test1206 Q0 17563551 17 25.659454 Anserini +test1206 Q0 6093879 18 25.639763 Anserini +test1206 Q0 17563550 19 24.501179 Anserini +test1206 Q0 17563549 20 24.235567 Anserini +test1206 Q0 2478931 21 23.291143 Anserini +test1206 Q0 6972172 22 23.156960 Anserini +test1206 Q0 17563554 23 23.155418 Anserini +test1206 Q0 16223504 24 22.989632 Anserini +test1206 Q0 6972173 25 22.986980 Anserini +test1206 Q0 6093881 26 22.481663 Anserini +test1206 Q0 17563555 27 22.481663 Anserini +test1206 Q0 14594538 28 22.404324 Anserini +test1206 Q0 8740154 29 22.171547 Anserini +test1206 Q0 16490182 30 21.740038 Anserini +test1207 Q0 8637575 1 18.006819 Anserini +test1207 Q0 11684974 2 17.500219 Anserini +test1207 Q0 876838 3 17.267088 Anserini +test1207 Q0 8637576 4 17.226257 Anserini +test1207 Q0 17129821 5 16.946861 Anserini +test1207 Q0 18925804 6 16.739641 Anserini +test1207 Q0 8637577 7 16.544910 Anserini +test1207 Q0 205341 8 16.429756 Anserini +test1207 Q0 17129822 9 16.268354 Anserini +test1207 Q0 13021464 10 16.054569 Anserini +test1207 Q0 504064 11 15.949250 Anserini +test1207 Q0 2345480 12 15.849590 Anserini +test1207 Q0 17129717 13 15.516718 Anserini +test1207 Q0 18133520 14 15.513103 Anserini +test1207 Q0 19693919 15 15.345737 Anserini +test1207 Q0 18133521 16 15.309217 Anserini +test1207 Q0 8637574 17 15.241416 Anserini +test1207 Q0 2960704 18 15.164811 Anserini +test1207 Q0 17122986 19 15.095173 Anserini +test1207 Q0 17122987 20 15.095173 Anserini +test1207 Q0 19882587 21 14.984559 Anserini +test1207 Q0 876816 22 14.982564 Anserini +test1207 Q0 19824067 23 14.880553 Anserini +test1207 Q0 18133654 24 14.862995 Anserini +test1207 Q0 16918058 25 14.841166 Anserini +test1207 Q0 876776 26 14.825040 Anserini +test1207 Q0 13021462 27 14.805057 Anserini +test1207 Q0 17129718 28 14.741146 Anserini +test1207 Q0 19692265 29 14.546762 Anserini +test1207 Q0 19692268 30 14.546762 Anserini +test1208 Q0 1406409 1 18.524511 Anserini +test1208 Q0 1406405 2 18.139856 Anserini +test1208 Q0 1406396 3 17.490828 Anserini +test1208 Q0 1406427 4 17.283165 Anserini +test1208 Q0 1406403 5 16.550617 Anserini +test1208 Q0 7262682 6 16.287256 Anserini +test1208 Q0 7262691 7 16.287256 Anserini +test1208 Q0 1406426 8 16.142466 Anserini +test1208 Q0 8242645 9 15.774238 Anserini +test1208 Q0 8242646 10 15.673813 Anserini +test1208 Q0 1406402 11 15.237726 Anserini +test1208 Q0 1406393 12 15.181446 Anserini +test1208 Q0 9421838 13 15.055886 Anserini +test1208 Q0 1406401 14 14.989873 Anserini +test1208 Q0 1406404 15 14.664245 Anserini +test1208 Q0 14148291 16 14.427267 Anserini +test1208 Q0 14148287 17 13.932331 Anserini +test1208 Q0 1406388 18 13.777031 Anserini +test1208 Q0 9421839 19 13.438283 Anserini +test1208 Q0 18040003 20 13.434168 Anserini +test1208 Q0 9421841 21 13.382167 Anserini +test1208 Q0 1406423 22 13.203312 Anserini +test1208 Q0 1406395 23 12.992419 Anserini +test1208 Q0 644673 24 12.861419 Anserini +test1208 Q0 1406425 25 12.667271 Anserini +test1208 Q0 9477301 26 12.650905 Anserini +test1208 Q0 17633290 27 12.634142 Anserini +test1208 Q0 14148290 28 12.338759 Anserini +test1208 Q0 6194417 29 12.338759 Anserini +test1208 Q0 3028649 30 12.249684 Anserini +test1209 Q0 16236105 1 13.591988 Anserini +test1209 Q0 16236111 2 13.435862 Anserini +test1209 Q0 16236103 3 12.959663 Anserini +test1209 Q0 2737594 4 12.929271 Anserini +test1209 Q0 16236102 5 12.727702 Anserini +test1209 Q0 16236106 6 11.806856 Anserini +test1209 Q0 16236107 7 11.133492 Anserini +test1209 Q0 17787378 8 10.832018 Anserini +test1209 Q0 11903753 9 10.797169 Anserini +test1209 Q0 16236110 10 10.649637 Anserini +test1209 Q0 5562215 11 10.646474 Anserini +test1209 Q0 16236108 12 10.191279 Anserini +test1209 Q0 40052 13 9.965992 Anserini +test1209 Q0 14599050 14 9.936513 Anserini +test1209 Q0 19569883 15 9.868351 Anserini +test1209 Q0 16052235 16 9.712097 Anserini +test1209 Q0 10601137 17 9.529388 Anserini +test1209 Q0 18692635 18 9.518685 Anserini +test1209 Q0 13317799 19 9.498583 Anserini +test1209 Q0 6885779 20 9.443703 Anserini +test1209 Q0 14599078 21 9.416318 Anserini +test1209 Q0 17791210 22 9.413284 Anserini +test1209 Q0 16239250 23 9.343899 Anserini +test1209 Q0 15863140 24 9.268722 Anserini +test1209 Q0 19569882 25 9.110711 Anserini +test1209 Q0 13317751 26 9.055794 Anserini +test1209 Q0 6708700 27 9.040407 Anserini +test1209 Q0 22793 28 9.011782 Anserini +test1209 Q0 2869297 29 9.000926 Anserini +test1209 Q0 16239249 30 9.000887 Anserini +test121 Q0 19374035 1 13.888415 Anserini +test121 Q0 19110107 2 12.575140 Anserini +test121 Q0 19374041 3 12.419389 Anserini +test121 Q0 19374021 4 12.294623 Anserini +test121 Q0 13030078 5 12.068729 Anserini +test121 Q0 19374022 6 11.917953 Anserini +test121 Q0 20154403 7 11.800385 Anserini +test121 Q0 19374038 8 11.760527 Anserini +test121 Q0 16131738 9 11.091509 Anserini +test121 Q0 16131755 10 11.091509 Anserini +test121 Q0 17968163 11 10.908051 Anserini +test121 Q0 19374032 12 10.902921 Anserini +test121 Q0 20659506 13 10.833347 Anserini +test121 Q0 20659516 14 10.833347 Anserini +test121 Q0 17288207 15 10.795353 Anserini +test121 Q0 19725897 16 10.759796 Anserini +test121 Q0 17641570 17 10.759796 Anserini +test121 Q0 19374033 18 10.755260 Anserini +test121 Q0 19374040 19 10.755260 Anserini +test121 Q0 20154410 20 10.749206 Anserini +test121 Q0 17591332 21 10.687369 Anserini +test121 Q0 18830986 22 10.661115 Anserini +test121 Q0 17591319 23 10.616036 Anserini +test121 Q0 17883941 24 10.603337 Anserini +test121 Q0 17883958 25 10.603337 Anserini +test121 Q0 19078652 26 10.603337 Anserini +test121 Q0 20714838 27 10.589905 Anserini +test121 Q0 20154418 28 10.453871 Anserini +test121 Q0 17999494 29 10.391086 Anserini +test121 Q0 19078413 30 10.377125 Anserini +test1210 Q0 15878345 1 11.376438 Anserini +test1210 Q0 15878346 2 10.973934 Anserini +test1210 Q0 17476554 3 10.222839 Anserini +test1210 Q0 9371310 4 9.650870 Anserini +test1210 Q0 18382061 5 9.243815 Anserini +test1210 Q0 2911309 6 9.211415 Anserini +test1210 Q0 9371311 7 9.210019 Anserini +test1210 Q0 10943304 8 9.148502 Anserini +test1210 Q0 16025123 9 9.126256 Anserini +test1210 Q0 9371315 10 8.972885 Anserini +test1210 Q0 10033613 11 8.820088 Anserini +test1210 Q0 20575965 12 8.749445 Anserini +test1210 Q0 9371308 13 8.705219 Anserini +test1210 Q0 2804936 14 8.626028 Anserini +test1210 Q0 4133853 15 8.539235 Anserini +test1210 Q0 6256312 16 8.504174 Anserini +test1210 Q0 9371305 17 8.377892 Anserini +test1210 Q0 20873685 18 8.320572 Anserini +test1210 Q0 15788407 19 8.246998 Anserini +test1210 Q0 9371307 20 8.245773 Anserini +test1210 Q0 13063402 21 8.186914 Anserini +test1210 Q0 11515910 22 8.160872 Anserini +test1210 Q0 10226324 23 8.156017 Anserini +test1210 Q0 10226325 24 8.156017 Anserini +test1210 Q0 554472 25 8.154825 Anserini +test1210 Q0 8166261 26 8.119884 Anserini +test1210 Q0 20450399 27 8.119884 Anserini +test1210 Q0 9371314 28 8.107861 Anserini +test1210 Q0 11422311 29 8.068312 Anserini +test1210 Q0 6517573 30 8.068312 Anserini +test1211 Q0 16963388 1 12.281867 Anserini +test1211 Q0 16963393 2 12.281867 Anserini +test1211 Q0 7896873 3 11.824884 Anserini +test1211 Q0 19352666 4 11.780522 Anserini +test1211 Q0 5081799 5 11.644997 Anserini +test1211 Q0 1084516 6 11.294523 Anserini +test1211 Q0 7322051 7 11.208848 Anserini +test1211 Q0 9305107 8 11.183723 Anserini +test1211 Q0 9305117 9 11.183723 Anserini +test1211 Q0 11519441 10 11.159236 Anserini +test1211 Q0 1596195 11 11.092280 Anserini +test1211 Q0 1084512 12 11.045732 Anserini +test1211 Q0 9882157 13 10.988066 Anserini +test1211 Q0 1084507 14 10.964412 Anserini +test1211 Q0 35396 15 10.951725 Anserini +test1211 Q0 16938959 16 10.950372 Anserini +test1211 Q0 5032028 17 10.929158 Anserini +test1211 Q0 10178319 18 10.911196 Anserini +test1211 Q0 232456 19 10.892617 Anserini +test1211 Q0 7697675 20 10.876712 Anserini +test1211 Q0 11519442 21 10.847012 Anserini +test1211 Q0 954691 22 10.771790 Anserini +test1211 Q0 954699 23 10.747695 Anserini +test1211 Q0 1596204 24 10.728492 Anserini +test1211 Q0 9539037 25 10.701851 Anserini +test1211 Q0 3021418 26 10.662539 Anserini +test1211 Q0 5293342 27 10.637592 Anserini +test1211 Q0 9539035 28 10.629629 Anserini +test1211 Q0 262198 29 10.583612 Anserini +test1211 Q0 955053 30 10.573388 Anserini +test1212 Q0 8346216 1 21.933863 Anserini +test1212 Q0 8346218 2 21.933863 Anserini +test1212 Q0 5958222 3 21.302889 Anserini +test1212 Q0 3676119 4 21.148813 Anserini +test1212 Q0 790817 5 20.866238 Anserini +test1212 Q0 15478667 6 20.554071 Anserini +test1212 Q0 5532077 7 20.220928 Anserini +test1212 Q0 11224508 8 20.219496 Anserini +test1212 Q0 6680773 9 20.166327 Anserini +test1212 Q0 19530168 10 20.133781 Anserini +test1212 Q0 7672852 11 20.124746 Anserini +test1212 Q0 16460079 12 19.859592 Anserini +test1212 Q0 8566011 13 19.838171 Anserini +test1212 Q0 16460082 14 19.733150 Anserini +test1212 Q0 8566012 15 19.612009 Anserini +test1212 Q0 18332137 16 19.589640 Anserini +test1212 Q0 6027083 17 19.463354 Anserini +test1212 Q0 11744911 18 19.207520 Anserini +test1212 Q0 11354282 19 19.121307 Anserini +test1212 Q0 5958223 20 19.090425 Anserini +test1212 Q0 16962087 21 18.981827 Anserini +test1212 Q0 16962088 22 18.920883 Anserini +test1212 Q0 6846834 23 18.883600 Anserini +test1212 Q0 5958229 24 18.830351 Anserini +test1212 Q0 18721559 25 18.798605 Anserini +test1212 Q0 4303246 26 18.774414 Anserini +test1212 Q0 3676176 27 18.750536 Anserini +test1212 Q0 6556020 28 18.674269 Anserini +test1212 Q0 4570054 29 18.355080 Anserini +test1212 Q0 4570059 30 18.355080 Anserini +test1213 Q0 12099903 1 13.313782 Anserini +test1213 Q0 13801366 2 12.301323 Anserini +test1213 Q0 11484243 3 12.022540 Anserini +test1213 Q0 4649645 4 11.629990 Anserini +test1213 Q0 14522506 5 11.379702 Anserini +test1213 Q0 17332909 6 11.376886 Anserini +test1213 Q0 14522510 7 11.334669 Anserini +test1213 Q0 14170845 8 11.280191 Anserini +test1213 Q0 14676694 9 11.070727 Anserini +test1213 Q0 13047554 10 11.032998 Anserini +test1213 Q0 10763321 11 11.006092 Anserini +test1213 Q0 16811754 12 10.962713 Anserini +test1213 Q0 2291854 13 10.888013 Anserini +test1213 Q0 4282969 14 10.844583 Anserini +test1213 Q0 19667471 15 10.826350 Anserini +test1213 Q0 16923743 16 10.821258 Anserini +test1213 Q0 6348207 17 10.819230 Anserini +test1213 Q0 14915749 18 10.810500 Anserini +test1213 Q0 17633472 19 10.779151 Anserini +test1213 Q0 17106048 20 10.754323 Anserini +test1213 Q0 5082606 21 10.715317 Anserini +test1213 Q0 2261298 22 10.682005 Anserini +test1213 Q0 5082604 23 10.654192 Anserini +test1213 Q0 5508310 24 10.632169 Anserini +test1213 Q0 19764705 25 10.540406 Anserini +test1213 Q0 19767548 26 10.455761 Anserini +test1213 Q0 19764939 27 10.431208 Anserini +test1213 Q0 7880534 28 10.423923 Anserini +test1213 Q0 14716946 29 10.407874 Anserini +test1213 Q0 11484244 30 10.387953 Anserini +test1214 Q0 12660033 1 9.114816 Anserini +test1214 Q0 3120273 2 8.920135 Anserini +test1214 Q0 5098310 3 8.163629 Anserini +test1214 Q0 13460859 4 8.045000 Anserini +test1214 Q0 18438815 5 8.013351 Anserini +test1214 Q0 18316237 6 7.981344 Anserini +test1214 Q0 17325686 7 7.911532 Anserini +test1214 Q0 9826893 8 7.843305 Anserini +test1214 Q0 16882783 9 7.630746 Anserini +test1214 Q0 15757510 10 7.562732 Anserini +test1214 Q0 8768132 11 7.489000 Anserini +test1214 Q0 4775261 12 7.489000 Anserini +test1214 Q0 20184814 13 7.460700 Anserini +test1214 Q0 18495475 14 7.435045 Anserini +test1214 Q0 14021496 15 7.417289 Anserini +test1214 Q0 17058145 16 7.375404 Anserini +test1214 Q0 17280990 17 7.287082 Anserini +test1214 Q0 10572553 18 7.287082 Anserini +test1214 Q0 13371423 19 7.284855 Anserini +test1214 Q0 9881750 20 7.240874 Anserini +test1214 Q0 14249255 21 7.232378 Anserini +test1214 Q0 9000644 22 7.225939 Anserini +test1214 Q0 7020879 23 7.218872 Anserini +test1214 Q0 20394731 24 7.215630 Anserini +test1214 Q0 14633709 25 7.209625 Anserini +test1214 Q0 832964 26 7.196135 Anserini +test1214 Q0 8261169 27 7.187870 Anserini +test1214 Q0 18323683 28 7.141244 Anserini +test1214 Q0 11399000 29 7.141244 Anserini +test1214 Q0 15434988 30 7.139411 Anserini +test1215 Q0 3048660 1 28.005991 Anserini +test1215 Q0 1643085 2 22.143749 Anserini +test1215 Q0 3048659 3 22.048237 Anserini +test1215 Q0 3752809 4 21.227407 Anserini +test1215 Q0 94124 5 20.782938 Anserini +test1215 Q0 94094 6 20.782938 Anserini +test1215 Q0 2708430 7 20.769390 Anserini +test1215 Q0 6133208 8 19.829092 Anserini +test1215 Q0 11210113 9 19.671806 Anserini +test1215 Q0 11210104 10 19.671806 Anserini +test1215 Q0 2698492 11 19.570292 Anserini +test1215 Q0 94102 12 19.532675 Anserini +test1215 Q0 4570309 13 19.258913 Anserini +test1215 Q0 15773420 14 19.102879 Anserini +test1215 Q0 9578595 15 18.691366 Anserini +test1215 Q0 17565932 16 18.535898 Anserini +test1215 Q0 6133210 17 18.500961 Anserini +test1215 Q0 16816322 18 18.297987 Anserini +test1215 Q0 10185387 19 18.282753 Anserini +test1215 Q0 17565952 20 17.857037 Anserini +test1215 Q0 6314050 21 17.795416 Anserini +test1215 Q0 6078738 22 17.745016 Anserini +test1215 Q0 9578579 23 17.682360 Anserini +test1215 Q0 2824499 24 17.428345 Anserini +test1215 Q0 2824507 25 17.238894 Anserini +test1215 Q0 12910046 26 17.092039 Anserini +test1215 Q0 19185589 27 17.060951 Anserini +test1215 Q0 94096 28 17.053516 Anserini +test1215 Q0 94104 29 17.053516 Anserini +test1215 Q0 1957829 30 17.053516 Anserini +test1216 Q0 14358645 1 15.904788 Anserini +test1216 Q0 10616338 2 15.365242 Anserini +test1216 Q0 10616340 3 13.299412 Anserini +test1216 Q0 13807790 4 12.859018 Anserini +test1216 Q0 15441552 5 12.688390 Anserini +test1216 Q0 13839451 6 12.562216 Anserini +test1216 Q0 19605270 7 12.426668 Anserini +test1216 Q0 10612622 8 12.289633 Anserini +test1216 Q0 14358641 9 12.205649 Anserini +test1216 Q0 18658848 10 12.198520 Anserini +test1216 Q0 18159246 11 11.864954 Anserini +test1216 Q0 3333476 12 11.712551 Anserini +test1216 Q0 10101938 13 11.678747 Anserini +test1216 Q0 10730656 14 11.622053 Anserini +test1216 Q0 10730661 15 11.572993 Anserini +test1216 Q0 10616562 16 11.572392 Anserini +test1216 Q0 10616333 17 11.550047 Anserini +test1216 Q0 9025841 18 11.331284 Anserini +test1216 Q0 8401850 19 11.240975 Anserini +test1216 Q0 12766779 20 11.052160 Anserini +test1216 Q0 16065236 21 10.995243 Anserini +test1216 Q0 10616341 22 10.953264 Anserini +test1216 Q0 20680411 23 10.907019 Anserini +test1216 Q0 5568954 24 10.892371 Anserini +test1216 Q0 12465419 25 10.890141 Anserini +test1216 Q0 14878476 26 10.890141 Anserini +test1216 Q0 16737407 27 10.695375 Anserini +test1216 Q0 16737409 28 10.695375 Anserini +test1216 Q0 10616337 29 10.689581 Anserini +test1216 Q0 10616339 30 10.664123 Anserini +test1217 Q0 4882082 1 29.954205 Anserini +test1217 Q0 4882088 2 29.543991 Anserini +test1217 Q0 2336271 3 28.626270 Anserini +test1217 Q0 20616485 4 27.957684 Anserini +test1217 Q0 4882083 5 27.624990 Anserini +test1217 Q0 4882084 6 26.732206 Anserini +test1217 Q0 4882085 7 25.428391 Anserini +test1217 Q0 9431947 8 25.329628 Anserini +test1217 Q0 2336272 9 24.942184 Anserini +test1217 Q0 13534205 10 24.734951 Anserini +test1217 Q0 20616487 11 24.659168 Anserini +test1217 Q0 2336300 12 24.435040 Anserini +test1217 Q0 2888016 13 24.174835 Anserini +test1217 Q0 13534202 14 24.067884 Anserini +test1217 Q0 7468484 15 24.066195 Anserini +test1217 Q0 3667641 16 24.012587 Anserini +test1217 Q0 2336273 17 23.987524 Anserini +test1217 Q0 16261419 18 23.783215 Anserini +test1217 Q0 11228699 19 23.768496 Anserini +test1217 Q0 17845410 20 23.574036 Anserini +test1217 Q0 2888020 21 23.524723 Anserini +test1217 Q0 7393800 22 23.489126 Anserini +test1217 Q0 3667639 23 23.463488 Anserini +test1217 Q0 5251377 24 23.439278 Anserini +test1217 Q0 9525044 25 23.352455 Anserini +test1217 Q0 13534203 26 23.146948 Anserini +test1217 Q0 12448356 27 23.143690 Anserini +test1217 Q0 15161501 28 22.591379 Anserini +test1217 Q0 6041556 29 22.553425 Anserini +test1217 Q0 14070871 30 22.524906 Anserini +test1218 Q0 17535940 1 9.631910 Anserini +test1218 Q0 7733439 2 9.627720 Anserini +test1218 Q0 9838538 3 9.446072 Anserini +test1218 Q0 14726365 4 9.333351 Anserini +test1218 Q0 14351895 5 8.873075 Anserini +test1218 Q0 1396741 6 8.830790 Anserini +test1218 Q0 5963104 7 8.826491 Anserini +test1218 Q0 1977536 8 8.687716 Anserini +test1218 Q0 7340517 9 8.427809 Anserini +test1218 Q0 7340510 10 8.427809 Anserini +test1218 Q0 13256365 11 8.316079 Anserini +test1218 Q0 14351904 12 8.275702 Anserini +test1218 Q0 18288607 13 8.275702 Anserini +test1218 Q0 11772966 14 8.257261 Anserini +test1218 Q0 10486839 15 8.229423 Anserini +test1218 Q0 316007 16 8.201772 Anserini +test1218 Q0 18488318 17 8.201772 Anserini +test1218 Q0 2032324 18 8.201772 Anserini +test1218 Q0 11772952 19 8.192651 Anserini +test1218 Q0 14204019 20 8.142220 Anserini +test1218 Q0 5055394 21 8.129202 Anserini +test1218 Q0 13118630 22 8.129202 Anserini +test1218 Q0 18393582 23 8.116313 Anserini +test1218 Q0 1550002 24 8.109203 Anserini +test1218 Q0 7321551 25 8.099268 Anserini +test1218 Q0 9399557 26 8.093907 Anserini +test1218 Q0 2028850 27 8.039437 Anserini +test1218 Q0 17720589 28 8.037451 Anserini +test1218 Q0 7897325 29 8.036342 Anserini +test1218 Q0 4383184 30 7.997277 Anserini +test1219 Q0 13603751 1 25.179468 Anserini +test1219 Q0 3690847 2 24.877102 Anserini +test1219 Q0 11863357 3 22.495293 Anserini +test1219 Q0 13603749 4 21.742615 Anserini +test1219 Q0 3690859 5 21.564020 Anserini +test1219 Q0 207864 6 20.497005 Anserini +test1219 Q0 5520070 7 20.427874 Anserini +test1219 Q0 13915851 8 20.021072 Anserini +test1219 Q0 17217240 9 19.869696 Anserini +test1219 Q0 14087948 10 19.773514 Anserini +test1219 Q0 13603760 11 19.642542 Anserini +test1219 Q0 13468537 12 19.588243 Anserini +test1219 Q0 2331152 13 19.447773 Anserini +test1219 Q0 5643192 14 19.410597 Anserini +test1219 Q0 3379426 15 19.397951 Anserini +test1219 Q0 2364841 16 19.392281 Anserini +test1219 Q0 12753489 17 19.308775 Anserini +test1219 Q0 303446 18 19.228424 Anserini +test1219 Q0 2854073 19 19.207371 Anserini +test1219 Q0 6778295 20 19.202724 Anserini +test1219 Q0 303442 21 19.178028 Anserini +test1219 Q0 2364840 22 18.988304 Anserini +test1219 Q0 5520067 23 18.963926 Anserini +test1219 Q0 84971 24 18.897404 Anserini +test1219 Q0 2364908 25 18.749510 Anserini +test1219 Q0 4519052 26 18.662380 Anserini +test1219 Q0 5520068 27 18.599686 Anserini +test1219 Q0 6060070 28 18.388382 Anserini +test1219 Q0 5644306 29 18.383995 Anserini +test1219 Q0 5644307 30 18.295637 Anserini +test122 Q0 20489582 1 16.691782 Anserini +test122 Q0 9064190 2 16.649141 Anserini +test122 Q0 9064187 3 16.642513 Anserini +test122 Q0 7058606 4 16.642513 Anserini +test122 Q0 17781215 5 16.580805 Anserini +test122 Q0 17781218 6 16.580805 Anserini +test122 Q0 9064194 7 16.481018 Anserini +test122 Q0 36647 8 16.391941 Anserini +test122 Q0 20489584 9 16.342125 Anserini +test122 Q0 9064193 10 16.171801 Anserini +test122 Q0 14255009 11 16.120159 Anserini +test122 Q0 7058608 12 16.013742 Anserini +test122 Q0 11445488 13 15.554454 Anserini +test122 Q0 11445487 14 15.522192 Anserini +test122 Q0 36648 15 15.264247 Anserini +test122 Q0 14255011 16 15.062489 Anserini +test122 Q0 9064197 17 14.497349 Anserini +test122 Q0 17781216 18 14.469502 Anserini +test122 Q0 7349512 19 13.865909 Anserini +test122 Q0 14255010 20 13.699454 Anserini +test122 Q0 1064860 21 13.689046 Anserini +test122 Q0 10614194 22 13.539921 Anserini +test122 Q0 15812588 23 13.511452 Anserini +test122 Q0 9064188 24 13.460983 Anserini +test122 Q0 9064195 25 13.421442 Anserini +test122 Q0 7058607 26 13.328025 Anserini +test122 Q0 18846021 27 13.114243 Anserini +test122 Q0 18846025 28 13.114243 Anserini +test122 Q0 3673735 29 13.092829 Anserini +test122 Q0 3673734 30 13.059273 Anserini +test1220 Q0 4686496 1 17.097713 Anserini +test1220 Q0 16838242 2 16.834850 Anserini +test1220 Q0 13361573 3 16.399612 Anserini +test1220 Q0 14331303 4 16.397381 Anserini +test1220 Q0 17248255 5 14.860087 Anserini +test1220 Q0 9350805 6 14.853805 Anserini +test1220 Q0 16838309 7 14.615117 Anserini +test1220 Q0 17192199 8 14.598751 Anserini +test1220 Q0 5123678 9 14.424655 Anserini +test1220 Q0 1440192 10 14.373188 Anserini +test1220 Q0 11875088 11 14.363855 Anserini +test1220 Q0 14033580 12 13.919078 Anserini +test1220 Q0 18751878 13 13.907320 Anserini +test1220 Q0 10897550 14 13.707323 Anserini +test1220 Q0 11875086 15 13.538076 Anserini +test1220 Q0 10938711 16 13.470623 Anserini +test1220 Q0 10844900 17 13.465304 Anserini +test1220 Q0 3924913 18 13.418932 Anserini +test1220 Q0 16838304 19 13.296174 Anserini +test1220 Q0 9627297 20 13.209904 Anserini +test1220 Q0 16838328 21 13.157052 Anserini +test1220 Q0 16838303 22 13.042324 Anserini +test1220 Q0 19133257 23 13.018430 Anserini +test1220 Q0 10938708 24 13.007595 Anserini +test1220 Q0 16838305 25 12.977697 Anserini +test1220 Q0 777626 26 12.817027 Anserini +test1220 Q0 7344192 27 12.793579 Anserini +test1220 Q0 10114588 28 12.782518 Anserini +test1220 Q0 3609835 29 12.744999 Anserini +test1220 Q0 19905421 30 12.700444 Anserini +test1221 Q0 14589367 1 12.417714 Anserini +test1221 Q0 11437255 2 12.060973 Anserini +test1221 Q0 246518 3 11.997454 Anserini +test1221 Q0 141454 4 11.932665 Anserini +test1221 Q0 2313040 5 11.818527 Anserini +test1221 Q0 7400471 6 11.798787 Anserini +test1221 Q0 15358703 7 11.769055 Anserini +test1221 Q0 6467604 8 11.677235 Anserini +test1221 Q0 8995978 9 11.635176 Anserini +test1221 Q0 2794801 10 11.609735 Anserini +test1221 Q0 703688 11 11.607541 Anserini +test1221 Q0 2794920 12 11.495003 Anserini +test1221 Q0 784251 13 11.428239 Anserini +test1221 Q0 2500226 14 11.394100 Anserini +test1221 Q0 1816159 15 11.366460 Anserini +test1221 Q0 119480 16 11.361709 Anserini +test1221 Q0 11437257 17 11.342191 Anserini +test1221 Q0 5758988 18 11.275803 Anserini +test1221 Q0 1269285 19 11.232901 Anserini +test1221 Q0 16303226 20 11.203435 Anserini +test1221 Q0 459623 21 11.195979 Anserini +test1221 Q0 1555083 22 11.175791 Anserini +test1221 Q0 658812 23 11.133255 Anserini +test1221 Q0 6552784 24 11.120693 Anserini +test1221 Q0 4895638 25 11.102943 Anserini +test1221 Q0 5384537 26 11.097131 Anserini +test1221 Q0 6637651 27 11.074608 Anserini +test1221 Q0 11066402 28 11.043450 Anserini +test1221 Q0 6481870 29 11.035322 Anserini +test1221 Q0 10594704 30 10.994548 Anserini +test1222 Q0 7062386 1 14.921059 Anserini +test1222 Q0 7062385 2 13.880814 Anserini +test1222 Q0 7062387 3 13.386402 Anserini +test1222 Q0 9748282 4 13.264073 Anserini +test1222 Q0 9748288 5 13.263188 Anserini +test1222 Q0 14004944 6 12.828592 Anserini +test1222 Q0 19656691 7 12.795511 Anserini +test1222 Q0 19656694 8 12.774780 Anserini +test1222 Q0 7453638 9 12.672289 Anserini +test1222 Q0 14004947 10 12.671613 Anserini +test1222 Q0 3773568 11 12.662262 Anserini +test1222 Q0 7762810 12 12.526407 Anserini +test1222 Q0 7762800 13 12.480054 Anserini +test1222 Q0 19924194 14 12.441498 Anserini +test1222 Q0 7624453 15 12.218634 Anserini +test1222 Q0 7762801 16 12.214067 Anserini +test1222 Q0 19924195 17 12.209318 Anserini +test1222 Q0 7762811 18 12.188224 Anserini +test1222 Q0 7349023 19 12.156567 Anserini +test1222 Q0 11608454 20 12.111780 Anserini +test1222 Q0 9393165 21 12.108361 Anserini +test1222 Q0 7349010 22 12.097603 Anserini +test1222 Q0 12175579 23 12.094514 Anserini +test1222 Q0 9691892 24 12.073112 Anserini +test1222 Q0 9393167 25 12.071349 Anserini +test1222 Q0 14565014 26 12.004953 Anserini +test1222 Q0 12175580 27 11.997345 Anserini +test1222 Q0 14565018 28 11.978814 Anserini +test1222 Q0 9748283 29 11.907493 Anserini +test1222 Q0 19656658 30 11.646660 Anserini +test1223 Q0 12051839 1 15.171886 Anserini +test1223 Q0 12051816 2 15.110760 Anserini +test1223 Q0 11000305 3 14.948119 Anserini +test1223 Q0 14479806 4 14.191466 Anserini +test1223 Q0 7188847 5 14.112153 Anserini +test1223 Q0 7519472 6 14.111047 Anserini +test1223 Q0 16734668 7 13.995690 Anserini +test1223 Q0 19552252 8 13.924233 Anserini +test1223 Q0 20110405 9 13.903018 Anserini +test1223 Q0 7188797 10 13.868942 Anserini +test1223 Q0 11000274 11 13.799852 Anserini +test1223 Q0 11000276 12 13.774549 Anserini +test1223 Q0 13445603 13 13.772488 Anserini +test1223 Q0 10800162 14 13.758003 Anserini +test1223 Q0 132060 15 13.643298 Anserini +test1223 Q0 12440839 16 13.639363 Anserini +test1223 Q0 7188788 17 13.614526 Anserini +test1223 Q0 9449650 18 13.611204 Anserini +test1223 Q0 13154982 19 13.502087 Anserini +test1223 Q0 12051822 20 13.492836 Anserini +test1223 Q0 11947088 21 13.408558 Anserini +test1223 Q0 19325514 22 13.400826 Anserini +test1223 Q0 15445112 23 13.393475 Anserini +test1223 Q0 9564217 24 13.237467 Anserini +test1223 Q0 12402652 25 13.197137 Anserini +test1223 Q0 10106407 26 13.190944 Anserini +test1223 Q0 5631428 27 13.142457 Anserini +test1223 Q0 1624348 28 13.129004 Anserini +test1223 Q0 12817209 29 13.068294 Anserini +test1223 Q0 10816045 30 13.044363 Anserini +test1224 Q0 11361103 1 15.295805 Anserini +test1224 Q0 12907451 2 14.622251 Anserini +test1224 Q0 11361113 3 14.480413 Anserini +test1224 Q0 561568 4 14.436913 Anserini +test1224 Q0 11361109 5 14.347404 Anserini +test1224 Q0 10381476 6 14.120933 Anserini +test1224 Q0 11827331 7 13.901799 Anserini +test1224 Q0 4455286 8 13.823032 Anserini +test1224 Q0 8105684 9 13.773481 Anserini +test1224 Q0 11361116 10 13.731139 Anserini +test1224 Q0 10381475 11 13.713575 Anserini +test1224 Q0 11361102 12 13.566622 Anserini +test1224 Q0 1429838 13 13.536844 Anserini +test1224 Q0 2902667 14 13.369736 Anserini +test1224 Q0 11361115 15 13.293587 Anserini +test1224 Q0 10462946 16 13.267451 Anserini +test1224 Q0 5400548 17 13.188599 Anserini +test1224 Q0 18735032 18 13.169788 Anserini +test1224 Q0 3943743 19 13.121153 Anserini +test1224 Q0 9563077 20 13.095615 Anserini +test1224 Q0 11361108 21 13.054953 Anserini +test1224 Q0 5833507 22 13.051262 Anserini +test1224 Q0 17434602 23 13.043718 Anserini +test1224 Q0 1815889 24 13.006358 Anserini +test1224 Q0 8105614 25 12.824045 Anserini +test1224 Q0 9457599 26 12.769387 Anserini +test1224 Q0 7222238 27 12.757513 Anserini +test1224 Q0 15928487 28 12.743219 Anserini +test1224 Q0 3398751 29 12.688661 Anserini +test1224 Q0 1429892 30 12.660294 Anserini +test1225 Q0 20440105 1 13.208664 Anserini +test1225 Q0 20296459 2 12.735279 Anserini +test1225 Q0 2942334 3 12.606796 Anserini +test1225 Q0 7552120 4 12.480413 Anserini +test1225 Q0 9245130 5 12.455295 Anserini +test1225 Q0 7649385 6 12.287981 Anserini +test1225 Q0 20745432 7 12.278315 Anserini +test1225 Q0 3110201 8 12.111870 Anserini +test1225 Q0 20097548 9 12.098558 Anserini +test1225 Q0 4732581 10 12.049362 Anserini +test1225 Q0 18726598 11 12.029818 Anserini +test1225 Q0 2932113 12 12.029555 Anserini +test1225 Q0 12805355 13 11.998239 Anserini +test1225 Q0 20440094 14 11.997565 Anserini +test1225 Q0 19731232 15 11.987366 Anserini +test1225 Q0 11100013 16 11.985786 Anserini +test1225 Q0 7552119 17 11.889043 Anserini +test1225 Q0 17400866 18 11.888593 Anserini +test1225 Q0 631523 19 11.844414 Anserini +test1225 Q0 16746329 20 11.833687 Anserini +test1225 Q0 9708079 21 11.786404 Anserini +test1225 Q0 20097552 22 11.772134 Anserini +test1225 Q0 1310173 23 11.772134 Anserini +test1225 Q0 20296440 24 11.744062 Anserini +test1225 Q0 18665943 25 11.738933 Anserini +test1225 Q0 14222582 26 11.716457 Anserini +test1225 Q0 13618226 27 11.716022 Anserini +test1225 Q0 1310193 28 11.707486 Anserini +test1225 Q0 7307840 29 11.702984 Anserini +test1225 Q0 12040783 30 11.692623 Anserini +test1226 Q0 6037580 1 20.183565 Anserini +test1226 Q0 3166092 2 19.630625 Anserini +test1226 Q0 3166108 3 19.018522 Anserini +test1226 Q0 6037582 4 17.258015 Anserini +test1226 Q0 3166120 5 15.115077 Anserini +test1226 Q0 2084695 6 15.068572 Anserini +test1226 Q0 6037583 7 14.313808 Anserini +test1226 Q0 1834890 8 14.162039 Anserini +test1226 Q0 3166114 9 14.160710 Anserini +test1226 Q0 14143114 10 13.911472 Anserini +test1226 Q0 6037581 11 13.872544 Anserini +test1226 Q0 263894 12 13.864802 Anserini +test1226 Q0 3166095 13 13.819328 Anserini +test1226 Q0 6894794 14 13.804042 Anserini +test1226 Q0 2083570 15 13.675766 Anserini +test1226 Q0 13884030 16 13.422485 Anserini +test1226 Q0 19610284 17 13.240482 Anserini +test1226 Q0 3534323 18 13.135509 Anserini +test1226 Q0 3671440 19 13.070082 Anserini +test1226 Q0 3166103 20 12.817172 Anserini +test1226 Q0 2870118 21 12.760321 Anserini +test1226 Q0 3166105 22 12.462545 Anserini +test1226 Q0 3166117 23 12.135749 Anserini +test1226 Q0 3166100 24 12.098501 Anserini +test1226 Q0 1413992 25 12.049667 Anserini +test1226 Q0 3435487 26 12.028542 Anserini +test1226 Q0 5978282 27 11.827564 Anserini +test1226 Q0 3435484 28 11.774997 Anserini +test1226 Q0 7147888 29 11.676971 Anserini +test1226 Q0 3166099 30 11.652503 Anserini +test1227 Q0 16912591 1 18.117573 Anserini +test1227 Q0 16912606 2 17.708874 Anserini +test1227 Q0 16912115 3 17.657457 Anserini +test1227 Q0 16912595 4 17.624075 Anserini +test1227 Q0 16912118 5 16.538174 Anserini +test1227 Q0 16912117 6 16.464432 Anserini +test1227 Q0 16912592 7 15.219447 Anserini +test1227 Q0 16912605 8 15.219447 Anserini +test1227 Q0 15004990 9 15.114477 Anserini +test1227 Q0 16912604 10 15.010945 Anserini +test1227 Q0 16912600 11 14.414584 Anserini +test1227 Q0 16912603 12 14.414584 Anserini +test1227 Q0 3994906 13 14.414584 Anserini +test1227 Q0 16912599 14 13.822937 Anserini +test1227 Q0 6910312 15 13.747445 Anserini +test1227 Q0 16912602 16 13.747445 Anserini +test1227 Q0 16912593 17 13.463972 Anserini +test1227 Q0 16741805 18 13.108448 Anserini +test1227 Q0 16912601 19 12.311632 Anserini +test1227 Q0 15343874 20 11.847631 Anserini +test1227 Q0 12160573 21 11.782743 Anserini +test1227 Q0 16912597 22 11.782743 Anserini +test1227 Q0 2790634 23 11.782743 Anserini +test1227 Q0 16912598 24 11.657385 Anserini +test1227 Q0 17580757 25 11.657385 Anserini +test1227 Q0 9937146 26 11.657385 Anserini +test1227 Q0 16912596 27 11.657385 Anserini +test1227 Q0 16912116 28 11.657385 Anserini +test1227 Q0 2991421 29 11.657385 Anserini +test1227 Q0 14825368 30 11.657385 Anserini +test1228 Q0 20198781 1 14.450649 Anserini +test1228 Q0 17448774 2 13.828822 Anserini +test1228 Q0 10150099 3 13.779463 Anserini +test1228 Q0 5250641 4 13.771431 Anserini +test1228 Q0 4553564 5 13.733069 Anserini +test1228 Q0 11579867 6 13.604587 Anserini +test1228 Q0 10150100 7 13.579524 Anserini +test1228 Q0 11579866 8 13.536316 Anserini +test1228 Q0 3183008 9 13.384834 Anserini +test1228 Q0 7112820 10 13.242280 Anserini +test1228 Q0 12760193 11 13.173605 Anserini +test1228 Q0 2043879 12 13.168039 Anserini +test1228 Q0 4737422 13 13.154127 Anserini +test1228 Q0 17375376 14 13.135148 Anserini +test1228 Q0 5380229 15 13.115517 Anserini +test1228 Q0 214026 16 13.023048 Anserini +test1228 Q0 18130443 17 13.019400 Anserini +test1228 Q0 11164263 18 13.013464 Anserini +test1228 Q0 4553555 19 13.009310 Anserini +test1228 Q0 4461966 20 12.939939 Anserini +test1228 Q0 1918958 21 12.932550 Anserini +test1228 Q0 6976635 22 12.849420 Anserini +test1228 Q0 1415047 23 12.818278 Anserini +test1228 Q0 15651291 24 12.784463 Anserini +test1228 Q0 7322567 25 12.765292 Anserini +test1228 Q0 20283624 26 12.765292 Anserini +test1228 Q0 18686117 27 12.718886 Anserini +test1228 Q0 13843662 28 12.695998 Anserini +test1228 Q0 2704549 29 12.660364 Anserini +test1228 Q0 7269683 30 12.620027 Anserini +test1229 Q0 12409124 1 14.920002 Anserini +test1229 Q0 19469402 2 14.354217 Anserini +test1229 Q0 13425147 3 14.233000 Anserini +test1229 Q0 14009970 4 13.886582 Anserini +test1229 Q0 8352998 5 13.850325 Anserini +test1229 Q0 14009962 6 13.811893 Anserini +test1229 Q0 12409171 7 13.643713 Anserini +test1229 Q0 13423387 8 13.549427 Anserini +test1229 Q0 5733940 9 13.515240 Anserini +test1229 Q0 20269808 10 13.069088 Anserini +test1229 Q0 1907123 11 13.039034 Anserini +test1229 Q0 13425175 12 12.935264 Anserini +test1229 Q0 13559034 13 12.856117 Anserini +test1229 Q0 9008055 14 12.800735 Anserini +test1229 Q0 13425171 15 12.688981 Anserini +test1229 Q0 14557228 16 12.600459 Anserini +test1229 Q0 3445562 17 12.550430 Anserini +test1229 Q0 13003348 18 12.498621 Anserini +test1229 Q0 5899942 19 12.479540 Anserini +test1229 Q0 15141957 20 12.400560 Anserini +test1229 Q0 15598190 21 12.321625 Anserini +test1229 Q0 12853372 22 12.312858 Anserini +test1229 Q0 18253376 23 12.245521 Anserini +test1229 Q0 12981448 24 12.240911 Anserini +test1229 Q0 20490320 25 12.240746 Anserini +test1229 Q0 12724546 26 12.240746 Anserini +test1229 Q0 2695446 27 12.230169 Anserini +test1229 Q0 13425178 28 12.164577 Anserini +test1229 Q0 13425176 29 12.123261 Anserini +test1229 Q0 6461021 30 12.075563 Anserini +test123 Q0 18094628 1 15.365989 Anserini +test123 Q0 8427348 2 14.093959 Anserini +test123 Q0 8427349 3 12.402367 Anserini +test123 Q0 4887253 4 12.267732 Anserini +test123 Q0 8427351 5 11.945104 Anserini +test123 Q0 19619681 6 11.916938 Anserini +test123 Q0 10007467 7 11.880237 Anserini +test123 Q0 4887240 8 11.593008 Anserini +test123 Q0 18094631 9 11.589775 Anserini +test123 Q0 7460817 10 11.505672 Anserini +test123 Q0 13225479 11 11.408755 Anserini +test123 Q0 4887254 12 11.408368 Anserini +test123 Q0 17363260 13 11.387964 Anserini +test123 Q0 4887233 14 11.313234 Anserini +test123 Q0 6533934 15 11.313234 Anserini +test123 Q0 6340698 16 11.210112 Anserini +test123 Q0 4092628 17 11.126551 Anserini +test123 Q0 6153488 18 11.108322 Anserini +test123 Q0 18384677 19 11.010307 Anserini +test123 Q0 4290840 20 10.955520 Anserini +test123 Q0 3925870 21 10.935711 Anserini +test123 Q0 8427355 22 10.872487 Anserini +test123 Q0 16368978 23 10.849524 Anserini +test123 Q0 8320366 24 10.843272 Anserini +test123 Q0 16437285 25 10.840149 Anserini +test123 Q0 5961047 26 10.838074 Anserini +test123 Q0 13561099 27 10.824361 Anserini +test123 Q0 13561100 28 10.824361 Anserini +test123 Q0 17465329 29 10.824361 Anserini +test123 Q0 2918940 30 10.819755 Anserini +test1230 Q0 4083437 1 30.082150 Anserini +test1230 Q0 4083412 2 29.902391 Anserini +test1230 Q0 634675 3 26.945074 Anserini +test1230 Q0 2926288 4 26.776426 Anserini +test1230 Q0 4083410 5 25.808132 Anserini +test1230 Q0 8713132 6 25.359545 Anserini +test1230 Q0 7417903 7 25.345802 Anserini +test1230 Q0 4083687 8 24.303032 Anserini +test1230 Q0 1565901 9 23.925823 Anserini +test1230 Q0 1748208 10 23.503109 Anserini +test1230 Q0 2091215 11 23.449469 Anserini +test1230 Q0 11334774 12 23.402557 Anserini +test1230 Q0 4083440 13 23.181887 Anserini +test1230 Q0 9098140 14 23.032515 Anserini +test1230 Q0 4083409 15 22.774506 Anserini +test1230 Q0 2926290 16 22.765627 Anserini +test1230 Q0 187057 17 22.443691 Anserini +test1230 Q0 8834778 18 22.366190 Anserini +test1230 Q0 4083438 19 22.317684 Anserini +test1230 Q0 8158798 20 22.221693 Anserini +test1230 Q0 9098137 21 22.212006 Anserini +test1230 Q0 8582214 22 22.207104 Anserini +test1230 Q0 8451602 23 22.207104 Anserini +test1230 Q0 8713854 24 22.050426 Anserini +test1230 Q0 15728958 25 21.228306 Anserini +test1230 Q0 4083411 26 21.157766 Anserini +test1230 Q0 8671437 27 21.046446 Anserini +test1230 Q0 7417906 28 20.825497 Anserini +test1230 Q0 3327188 29 20.654047 Anserini +test1230 Q0 5035071 30 20.637548 Anserini +test1231 Q0 16345286 1 13.008602 Anserini +test1231 Q0 5073552 2 12.797617 Anserini +test1231 Q0 14248176 3 12.723644 Anserini +test1231 Q0 6537030 4 12.463754 Anserini +test1231 Q0 1744088 5 12.405464 Anserini +test1231 Q0 12349101 6 12.367638 Anserini +test1231 Q0 10733200 7 12.334579 Anserini +test1231 Q0 11335374 8 12.308167 Anserini +test1231 Q0 1473145 9 12.243737 Anserini +test1231 Q0 16648516 10 12.133674 Anserini +test1231 Q0 15179301 11 11.868250 Anserini +test1231 Q0 17737121 12 11.813559 Anserini +test1231 Q0 17737124 13 11.813559 Anserini +test1231 Q0 17910636 14 11.753572 Anserini +test1231 Q0 17910635 15 11.753572 Anserini +test1231 Q0 781642 16 11.738412 Anserini +test1231 Q0 20398907 17 11.724465 Anserini +test1231 Q0 7177180 18 11.718667 Anserini +test1231 Q0 16521425 19 11.681313 Anserini +test1231 Q0 18805053 20 11.660151 Anserini +test1231 Q0 1471989 21 11.603474 Anserini +test1231 Q0 10755814 22 11.502518 Anserini +test1231 Q0 15917081 23 11.397628 Anserini +test1231 Q0 1713457 24 11.353344 Anserini +test1231 Q0 9445961 25 11.271977 Anserini +test1231 Q0 20398905 26 11.241175 Anserini +test1231 Q0 19662045 27 11.235920 Anserini +test1231 Q0 6799159 28 11.219367 Anserini +test1231 Q0 9766168 29 11.219367 Anserini +test1231 Q0 16242669 30 11.197457 Anserini +test1232 Q0 10085677 1 19.221182 Anserini +test1232 Q0 2455282 2 18.456802 Anserini +test1232 Q0 10085678 3 16.923151 Anserini +test1232 Q0 20289170 4 16.306103 Anserini +test1232 Q0 10085679 5 16.082867 Anserini +test1232 Q0 10085675 6 15.869081 Anserini +test1232 Q0 2455288 7 15.680967 Anserini +test1232 Q0 5835901 8 15.666460 Anserini +test1232 Q0 2455284 9 15.553211 Anserini +test1232 Q0 17924904 10 15.460625 Anserini +test1232 Q0 10085674 11 15.172215 Anserini +test1232 Q0 1370666 12 14.828140 Anserini +test1232 Q0 20289177 13 14.810354 Anserini +test1232 Q0 2455283 14 14.715918 Anserini +test1232 Q0 9681286 15 14.558172 Anserini +test1232 Q0 10287774 16 14.386532 Anserini +test1232 Q0 9420745 17 13.941127 Anserini +test1232 Q0 2455289 18 13.910902 Anserini +test1232 Q0 16580359 19 13.878483 Anserini +test1232 Q0 17652085 20 13.662300 Anserini +test1232 Q0 17924909 21 13.614112 Anserini +test1232 Q0 14391764 22 13.387440 Anserini +test1232 Q0 13104054 23 13.231236 Anserini +test1232 Q0 1842100 24 13.231236 Anserini +test1232 Q0 13104055 25 13.117483 Anserini +test1232 Q0 10085676 26 13.117483 Anserini +test1232 Q0 17924910 27 12.516067 Anserini +test1232 Q0 8840744 28 12.322837 Anserini +test1232 Q0 20289172 29 12.266630 Anserini +test1232 Q0 17652084 30 12.000113 Anserini +test1233 Q0 14248263 1 15.363192 Anserini +test1233 Q0 2067158 2 14.963750 Anserini +test1233 Q0 4601284 3 14.598087 Anserini +test1233 Q0 18603098 4 14.511128 Anserini +test1233 Q0 16784829 5 14.165888 Anserini +test1233 Q0 7357752 6 14.072337 Anserini +test1233 Q0 12300306 7 13.978466 Anserini +test1233 Q0 7357553 8 13.869558 Anserini +test1233 Q0 17526734 9 13.762955 Anserini +test1233 Q0 13790269 10 13.709746 Anserini +test1233 Q0 10051805 11 13.683661 Anserini +test1233 Q0 10051822 12 13.608088 Anserini +test1233 Q0 20000520 13 13.579456 Anserini +test1233 Q0 20519577 14 13.579456 Anserini +test1233 Q0 10051803 15 13.422820 Anserini +test1233 Q0 20419064 16 13.419693 Anserini +test1233 Q0 15106323 17 13.386703 Anserini +test1233 Q0 18680639 18 13.363489 Anserini +test1233 Q0 19992621 19 13.360571 Anserini +test1233 Q0 20000658 20 13.360571 Anserini +test1233 Q0 20000686 21 13.360571 Anserini +test1233 Q0 14615903 22 13.355808 Anserini +test1233 Q0 11637760 23 13.336283 Anserini +test1233 Q0 7388653 24 13.211527 Anserini +test1233 Q0 14997434 25 13.107887 Anserini +test1233 Q0 11380362 26 13.082221 Anserini +test1233 Q0 9969303 27 13.050043 Anserini +test1233 Q0 12902068 28 12.969673 Anserini +test1233 Q0 2067159 29 12.924353 Anserini +test1233 Q0 2492330 30 12.923510 Anserini +test1234 Q0 3991002 1 16.269606 Anserini +test1234 Q0 3991021 2 14.828131 Anserini +test1234 Q0 3991020 3 14.006565 Anserini +test1234 Q0 3991030 4 13.968405 Anserini +test1234 Q0 3991029 5 13.917496 Anserini +test1234 Q0 3991023 6 13.914003 Anserini +test1234 Q0 3991028 7 13.644499 Anserini +test1234 Q0 8921102 8 13.203688 Anserini +test1234 Q0 8921107 9 12.691868 Anserini +test1234 Q0 3991008 10 12.677691 Anserini +test1234 Q0 13265927 11 12.505475 Anserini +test1234 Q0 3421745 12 12.505475 Anserini +test1234 Q0 1505153 13 12.447756 Anserini +test1234 Q0 9400337 14 12.430997 Anserini +test1234 Q0 12976109 15 12.399013 Anserini +test1234 Q0 10682730 16 12.356745 Anserini +test1234 Q0 3196879 17 12.216613 Anserini +test1234 Q0 9388799 18 12.133347 Anserini +test1234 Q0 16361344 19 12.045189 Anserini +test1234 Q0 13265917 20 12.045189 Anserini +test1234 Q0 3991013 21 12.033521 Anserini +test1234 Q0 15623423 22 11.931921 Anserini +test1234 Q0 15623430 23 11.787622 Anserini +test1234 Q0 9400281 24 11.774387 Anserini +test1234 Q0 1505146 25 11.655105 Anserini +test1234 Q0 6990773 26 11.655105 Anserini +test1234 Q0 3231342 27 11.623712 Anserini +test1234 Q0 8846799 28 11.623712 Anserini +test1234 Q0 3666967 29 11.551107 Anserini +test1234 Q0 3227487 30 11.551107 Anserini +test1235 Q0 10418794 1 11.740371 Anserini +test1235 Q0 7452672 2 10.588589 Anserini +test1235 Q0 15461148 3 10.457624 Anserini +test1235 Q0 5355541 4 10.438128 Anserini +test1235 Q0 9640634 5 10.344347 Anserini +test1235 Q0 18723122 6 10.344347 Anserini +test1235 Q0 15720954 7 10.177845 Anserini +test1235 Q0 1708149 8 10.107710 Anserini +test1235 Q0 17218649 9 10.094877 Anserini +test1235 Q0 5517910 10 10.012163 Anserini +test1235 Q0 1599783 11 9.911609 Anserini +test1235 Q0 7911143 12 9.831623 Anserini +test1235 Q0 1374342 13 9.811939 Anserini +test1235 Q0 6750567 14 9.746154 Anserini +test1235 Q0 4661016 15 9.710391 Anserini +test1235 Q0 2451955 16 9.668447 Anserini +test1235 Q0 5214004 17 9.649958 Anserini +test1235 Q0 2897405 18 9.648079 Anserini +test1235 Q0 7251200 19 9.634221 Anserini +test1235 Q0 5714503 20 9.604110 Anserini +test1235 Q0 9008885 21 9.595300 Anserini +test1235 Q0 112074 22 9.532324 Anserini +test1235 Q0 6556173 23 9.485971 Anserini +test1235 Q0 2831370 24 9.475779 Anserini +test1235 Q0 1975858 25 9.473287 Anserini +test1235 Q0 4759851 26 9.465288 Anserini +test1235 Q0 13040884 27 9.419831 Anserini +test1235 Q0 1613866 28 9.348680 Anserini +test1235 Q0 9008921 29 9.332046 Anserini +test1235 Q0 11840931 30 9.323320 Anserini +test1236 Q0 142069 1 16.660780 Anserini +test1236 Q0 20701133 2 13.261296 Anserini +test1236 Q0 142068 3 13.055586 Anserini +test1236 Q0 1645152 4 12.948219 Anserini +test1236 Q0 142065 5 11.687793 Anserini +test1236 Q0 4284296 6 11.412165 Anserini +test1236 Q0 142091 7 11.408719 Anserini +test1236 Q0 7212226 8 11.408719 Anserini +test1236 Q0 20701136 9 11.349907 Anserini +test1236 Q0 142062 10 11.291697 Anserini +test1236 Q0 20701134 11 11.234082 Anserini +test1236 Q0 142072 12 11.214910 Anserini +test1236 Q0 7273642 13 11.101954 Anserini +test1236 Q0 4017783 14 11.013046 Anserini +test1236 Q0 142088 15 10.873365 Anserini +test1236 Q0 142074 16 10.810169 Anserini +test1236 Q0 18659108 17 10.776686 Anserini +test1236 Q0 14640462 18 10.709832 Anserini +test1236 Q0 16780847 19 10.707075 Anserini +test1236 Q0 142080 20 10.646495 Anserini +test1236 Q0 142064 21 10.580924 Anserini +test1236 Q0 8954812 22 10.441286 Anserini +test1236 Q0 1465338 23 10.420742 Anserini +test1236 Q0 142079 24 10.420023 Anserini +test1236 Q0 20645903 25 10.411130 Anserini +test1236 Q0 142066 26 10.372537 Anserini +test1236 Q0 11239307 27 10.363808 Anserini +test1236 Q0 841915 28 10.285001 Anserini +test1236 Q0 11543247 29 10.283633 Anserini +test1236 Q0 1465332 30 10.265162 Anserini +test1237 Q0 15292087 1 13.247462 Anserini +test1237 Q0 11818820 2 12.761657 Anserini +test1237 Q0 15282538 3 12.279505 Anserini +test1237 Q0 11604579 4 12.222701 Anserini +test1237 Q0 15286807 5 12.215944 Anserini +test1237 Q0 18251211 6 12.166199 Anserini +test1237 Q0 15286808 7 12.106750 Anserini +test1237 Q0 15282529 8 11.984783 Anserini +test1237 Q0 18251209 9 11.984783 Anserini +test1237 Q0 18251217 10 11.984783 Anserini +test1237 Q0 15767243 11 11.984783 Anserini +test1237 Q0 18251207 12 11.929646 Anserini +test1237 Q0 8602986 13 11.906084 Anserini +test1237 Q0 1275039 14 11.897768 Anserini +test1237 Q0 6308382 15 11.825685 Anserini +test1237 Q0 15322571 16 11.759186 Anserini +test1237 Q0 10079219 17 11.754029 Anserini +test1237 Q0 15282844 18 11.709857 Anserini +test1237 Q0 15433256 19 11.695327 Anserini +test1237 Q0 14472399 20 11.687489 Anserini +test1237 Q0 15433259 21 11.620774 Anserini +test1237 Q0 15767229 22 11.560303 Anserini +test1237 Q0 9774896 23 11.554668 Anserini +test1237 Q0 15282528 24 11.524391 Anserini +test1237 Q0 217217 25 11.509419 Anserini +test1237 Q0 15433260 26 11.359907 Anserini +test1237 Q0 7805880 27 11.344819 Anserini +test1237 Q0 10918802 28 11.311939 Anserini +test1237 Q0 15433257 29 11.287390 Anserini +test1237 Q0 6237670 30 11.286880 Anserini +test1238 Q0 9382505 1 16.021544 Anserini +test1238 Q0 8086215 2 15.120259 Anserini +test1238 Q0 8086214 3 14.882829 Anserini +test1238 Q0 8035693 4 14.255717 Anserini +test1238 Q0 8086313 5 14.193007 Anserini +test1238 Q0 4439817 6 14.175321 Anserini +test1238 Q0 18901361 7 13.946309 Anserini +test1238 Q0 782982 8 13.387680 Anserini +test1238 Q0 10066494 9 13.359019 Anserini +test1238 Q0 3441732 10 13.189909 Anserini +test1238 Q0 6969229 11 13.180411 Anserini +test1238 Q0 5404813 12 13.141063 Anserini +test1238 Q0 11524282 13 13.088230 Anserini +test1238 Q0 12609693 14 12.992316 Anserini +test1238 Q0 2167384 15 12.885238 Anserini +test1238 Q0 20231256 16 12.634298 Anserini +test1238 Q0 8487844 17 12.628623 Anserini +test1238 Q0 10757927 18 12.556700 Anserini +test1238 Q0 5428315 19 12.539824 Anserini +test1238 Q0 10303831 20 12.533669 Anserini +test1238 Q0 10757925 21 12.492630 Anserini +test1238 Q0 20232144 22 12.487357 Anserini +test1238 Q0 12611213 23 12.380952 Anserini +test1238 Q0 9031535 24 12.348328 Anserini +test1238 Q0 8738302 25 12.335068 Anserini +test1238 Q0 8636628 26 12.319381 Anserini +test1238 Q0 8738304 27 12.299403 Anserini +test1238 Q0 20231257 28 12.288891 Anserini +test1238 Q0 17857236 29 12.192565 Anserini +test1238 Q0 16621895 30 12.137479 Anserini +test1239 Q0 19738119 1 19.564632 Anserini +test1239 Q0 20584401 2 19.559708 Anserini +test1239 Q0 20589098 3 19.559708 Anserini +test1239 Q0 20269911 4 19.529186 Anserini +test1239 Q0 19676222 5 19.383919 Anserini +test1239 Q0 19676223 6 19.383919 Anserini +test1239 Q0 19921650 7 19.264875 Anserini +test1239 Q0 19787314 8 19.138023 Anserini +test1239 Q0 20530266 9 19.067406 Anserini +test1239 Q0 19415790 10 19.031063 Anserini +test1239 Q0 13161338 11 18.957720 Anserini +test1239 Q0 19343994 12 18.868050 Anserini +test1239 Q0 2637171 13 18.782923 Anserini +test1239 Q0 20035480 14 18.683435 Anserini +test1239 Q0 19528283 15 18.643797 Anserini +test1239 Q0 19557868 16 18.612709 Anserini +test1239 Q0 19992065 17 18.571415 Anserini +test1239 Q0 19573979 18 18.514942 Anserini +test1239 Q0 20590896 19 18.489140 Anserini +test1239 Q0 19479780 20 18.487684 Anserini +test1239 Q0 20589099 21 18.464245 Anserini +test1239 Q0 20590897 22 18.450968 Anserini +test1239 Q0 9737949 23 18.420679 Anserini +test1239 Q0 19998207 24 18.417406 Anserini +test1239 Q0 18411903 25 18.316257 Anserini +test1239 Q0 19340618 26 18.298576 Anserini +test1239 Q0 14479971 27 18.250818 Anserini +test1239 Q0 18411914 28 18.243952 Anserini +test1239 Q0 8384074 29 18.242023 Anserini +test1239 Q0 9586268 30 18.229647 Anserini +test124 Q0 6835715 1 18.991982 Anserini +test124 Q0 5107613 2 18.583055 Anserini +test124 Q0 12472158 3 18.563463 Anserini +test124 Q0 6106881 4 18.108934 Anserini +test124 Q0 4581664 5 17.980700 Anserini +test124 Q0 13223940 6 17.800486 Anserini +test124 Q0 3322708 7 17.735714 Anserini +test124 Q0 18204945 8 17.655495 Anserini +test124 Q0 6106907 9 17.618496 Anserini +test124 Q0 12472160 10 17.459833 Anserini +test124 Q0 18204950 11 17.426460 Anserini +test124 Q0 6984574 12 17.391775 Anserini +test124 Q0 12472170 13 17.384401 Anserini +test124 Q0 18204953 14 17.355175 Anserini +test124 Q0 7085885 15 16.994799 Anserini +test124 Q0 13223937 16 16.967245 Anserini +test124 Q0 132748 17 16.903543 Anserini +test124 Q0 10712976 18 16.824228 Anserini +test124 Q0 2388834 19 16.670679 Anserini +test124 Q0 8446077 20 16.447372 Anserini +test124 Q0 7085884 21 16.390284 Anserini +test124 Q0 9075645 22 16.319050 Anserini +test124 Q0 18972805 23 16.254292 Anserini +test124 Q0 6835726 24 16.251160 Anserini +test124 Q0 18204951 25 16.250454 Anserini +test124 Q0 6207651 26 16.159426 Anserini +test124 Q0 7345314 27 16.133921 Anserini +test124 Q0 895676 28 16.117954 Anserini +test124 Q0 19735138 29 16.062971 Anserini +test124 Q0 18204964 30 16.044348 Anserini +test1240 Q0 10370949 1 13.518291 Anserini +test1240 Q0 6567938 2 13.432294 Anserini +test1240 Q0 16148520 3 13.280831 Anserini +test1240 Q0 10608221 4 13.117126 Anserini +test1240 Q0 8645862 5 13.088097 Anserini +test1240 Q0 77638 6 13.032267 Anserini +test1240 Q0 12116510 7 12.983697 Anserini +test1240 Q0 296018 8 12.944007 Anserini +test1240 Q0 10608209 9 12.914424 Anserini +test1240 Q0 10608222 10 12.914424 Anserini +test1240 Q0 12816873 11 12.890553 Anserini +test1240 Q0 1964539 12 12.747316 Anserini +test1240 Q0 16112633 13 12.632539 Anserini +test1240 Q0 12861150 14 12.591306 Anserini +test1240 Q0 16129088 15 12.583776 Anserini +test1240 Q0 4123671 16 12.521444 Anserini +test1240 Q0 4120251 17 12.504758 Anserini +test1240 Q0 6317403 18 12.490845 Anserini +test1240 Q0 11366674 19 12.480164 Anserini +test1240 Q0 7737685 20 12.468843 Anserini +test1240 Q0 6567913 21 12.460818 Anserini +test1240 Q0 3603115 22 12.435201 Anserini +test1240 Q0 4123678 23 12.395794 Anserini +test1240 Q0 17586949 24 12.390977 Anserini +test1240 Q0 6361714 25 12.373550 Anserini +test1240 Q0 13527557 26 12.367831 Anserini +test1240 Q0 4325139 27 12.365218 Anserini +test1240 Q0 20409648 28 12.321284 Anserini +test1240 Q0 7443071 29 12.319482 Anserini +test1240 Q0 3912619 30 12.317541 Anserini +test1241 Q0 3498411 1 14.572334 Anserini +test1241 Q0 3498423 2 14.281702 Anserini +test1241 Q0 624806 3 13.462778 Anserini +test1241 Q0 3498415 4 12.959384 Anserini +test1241 Q0 3498414 5 12.919518 Anserini +test1241 Q0 2343052 6 12.884289 Anserini +test1241 Q0 6367226 7 12.675735 Anserini +test1241 Q0 18927399 8 12.660364 Anserini +test1241 Q0 812965 9 12.556273 Anserini +test1241 Q0 17791795 10 12.500032 Anserini +test1241 Q0 2317696 11 12.428329 Anserini +test1241 Q0 1292987 12 12.286781 Anserini +test1241 Q0 19440463 13 12.277075 Anserini +test1241 Q0 4414180 14 12.052704 Anserini +test1241 Q0 624805 15 12.013060 Anserini +test1241 Q0 624807 16 12.000696 Anserini +test1241 Q0 3498410 17 11.986921 Anserini +test1241 Q0 716533 18 11.982904 Anserini +test1241 Q0 3498427 19 11.902158 Anserini +test1241 Q0 12381393 20 11.884201 Anserini +test1241 Q0 9873207 21 11.837420 Anserini +test1241 Q0 12324679 22 11.836929 Anserini +test1241 Q0 812957 23 11.824781 Anserini +test1241 Q0 20232177 24 11.719172 Anserini +test1241 Q0 3498429 25 11.695723 Anserini +test1241 Q0 384173 26 11.667907 Anserini +test1241 Q0 4357539 27 11.573008 Anserini +test1241 Q0 3498419 28 11.552375 Anserini +test1241 Q0 3498409 29 11.507244 Anserini +test1241 Q0 3498408 30 11.505875 Anserini +test1242 Q0 9198489 1 10.257034 Anserini +test1242 Q0 14930592 2 10.107228 Anserini +test1242 Q0 7326097 3 9.773788 Anserini +test1242 Q0 1446826 4 9.738197 Anserini +test1242 Q0 18144418 5 9.670647 Anserini +test1242 Q0 2700967 6 9.566669 Anserini +test1242 Q0 9428630 7 9.406255 Anserini +test1242 Q0 1627526 8 9.397056 Anserini +test1242 Q0 2160901 9 9.256540 Anserini +test1242 Q0 16405792 10 9.227357 Anserini +test1242 Q0 17052513 11 9.119250 Anserini +test1242 Q0 6415943 12 9.002661 Anserini +test1242 Q0 1176135 13 8.994187 Anserini +test1242 Q0 7297121 14 8.933678 Anserini +test1242 Q0 6823739 15 8.907082 Anserini +test1242 Q0 10050060 16 8.907082 Anserini +test1242 Q0 9565460 17 8.869503 Anserini +test1242 Q0 2280716 18 8.822257 Anserini +test1242 Q0 16244984 19 8.822257 Anserini +test1242 Q0 3303677 20 8.800927 Anserini +test1242 Q0 8649762 21 8.792870 Anserini +test1242 Q0 1176142 22 8.759971 Anserini +test1242 Q0 5217697 23 8.730807 Anserini +test1242 Q0 3303672 24 8.691526 Anserini +test1242 Q0 933049 25 8.686281 Anserini +test1242 Q0 4378020 26 8.665333 Anserini +test1242 Q0 14681798 27 8.660779 Anserini +test1242 Q0 10050099 28 8.654939 Anserini +test1242 Q0 18244039 29 8.654327 Anserini +test1242 Q0 3456386 30 8.645246 Anserini +test1243 Q0 16249460 1 12.449942 Anserini +test1243 Q0 7160358 2 12.396778 Anserini +test1243 Q0 8481457 3 12.345119 Anserini +test1243 Q0 9872133 4 12.135237 Anserini +test1243 Q0 8944359 5 12.012609 Anserini +test1243 Q0 16064207 6 11.949943 Anserini +test1243 Q0 8575194 7 11.947663 Anserini +test1243 Q0 7127230 8 11.827238 Anserini +test1243 Q0 3393280 9 11.824748 Anserini +test1243 Q0 6183540 10 11.731865 Anserini +test1243 Q0 5182304 11 11.727206 Anserini +test1243 Q0 5182283 12 11.727206 Anserini +test1243 Q0 2076497 13 11.683410 Anserini +test1243 Q0 12943286 14 11.657591 Anserini +test1243 Q0 13362301 15 11.653320 Anserini +test1243 Q0 9388620 16 11.589940 Anserini +test1243 Q0 16903562 17 11.545326 Anserini +test1243 Q0 6281800 18 11.517861 Anserini +test1243 Q0 7866606 19 11.404560 Anserini +test1243 Q0 9921590 20 11.393369 Anserini +test1243 Q0 6281819 21 11.359322 Anserini +test1243 Q0 2076480 22 11.291117 Anserini +test1243 Q0 2076673 23 11.248379 Anserini +test1243 Q0 6041427 24 11.166147 Anserini +test1243 Q0 2076668 25 11.119480 Anserini +test1243 Q0 18515692 26 11.090304 Anserini +test1243 Q0 17848998 27 11.056404 Anserini +test1243 Q0 8575195 28 11.013804 Anserini +test1243 Q0 6281801 29 10.994437 Anserini +test1243 Q0 2076959 30 10.976791 Anserini +test1244 Q0 20337791 1 23.185274 Anserini +test1244 Q0 6639296 2 18.692072 Anserini +test1244 Q0 17290021 3 18.675920 Anserini +test1244 Q0 20329535 4 18.555935 Anserini +test1244 Q0 6639299 5 18.443855 Anserini +test1244 Q0 9705340 6 18.330095 Anserini +test1244 Q0 6206912 7 18.245420 Anserini +test1244 Q0 7535520 8 18.067686 Anserini +test1244 Q0 19627751 9 18.029812 Anserini +test1244 Q0 17259822 10 17.595015 Anserini +test1244 Q0 3719428 11 17.388439 Anserini +test1244 Q0 5485059 12 16.949877 Anserini +test1244 Q0 17287035 13 16.828020 Anserini +test1244 Q0 3753179 14 16.778889 Anserini +test1244 Q0 6066523 15 16.745728 Anserini +test1244 Q0 18728248 16 16.730127 Anserini +test1244 Q0 18216786 17 16.522940 Anserini +test1244 Q0 11027626 18 16.467747 Anserini +test1244 Q0 12352926 19 16.438925 Anserini +test1244 Q0 4414176 20 16.401976 Anserini +test1244 Q0 14195270 21 16.338161 Anserini +test1244 Q0 4420976 22 16.281166 Anserini +test1244 Q0 6657744 23 16.275904 Anserini +test1244 Q0 2134460 24 16.191891 Anserini +test1244 Q0 3753173 25 16.191891 Anserini +test1244 Q0 6745446 26 16.191891 Anserini +test1244 Q0 15297800 27 16.058628 Anserini +test1244 Q0 4659064 28 15.927724 Anserini +test1244 Q0 20329437 29 15.862391 Anserini +test1244 Q0 1970654 30 15.849210 Anserini +test1245 Q0 5893130 1 17.236759 Anserini +test1245 Q0 3390621 2 16.817900 Anserini +test1245 Q0 12606405 3 16.714712 Anserini +test1245 Q0 9922693 4 16.200706 Anserini +test1245 Q0 16237537 5 15.743174 Anserini +test1245 Q0 5893127 6 15.338964 Anserini +test1245 Q0 5607302 7 15.328222 Anserini +test1245 Q0 7114263 8 15.266433 Anserini +test1245 Q0 3390611 9 15.220609 Anserini +test1245 Q0 3611418 10 15.183958 Anserini +test1245 Q0 16237535 11 15.172851 Anserini +test1245 Q0 6890819 12 15.082932 Anserini +test1245 Q0 10699558 13 15.079462 Anserini +test1245 Q0 19255038 14 14.980232 Anserini +test1245 Q0 2116248 15 14.939439 Anserini +test1245 Q0 11994855 16 14.922980 Anserini +test1245 Q0 12813969 17 14.885831 Anserini +test1245 Q0 10533869 18 14.885831 Anserini +test1245 Q0 15402835 19 14.882648 Anserini +test1245 Q0 3323086 20 14.871964 Anserini +test1245 Q0 2041475 21 14.695871 Anserini +test1245 Q0 7534566 22 14.658418 Anserini +test1245 Q0 13779988 23 14.575312 Anserini +test1245 Q0 3323067 24 14.517731 Anserini +test1245 Q0 11331324 25 14.445953 Anserini +test1245 Q0 13805771 26 14.287840 Anserini +test1245 Q0 4929290 27 14.246191 Anserini +test1245 Q0 1552737 28 14.244200 Anserini +test1245 Q0 2116250 29 14.194235 Anserini +test1245 Q0 4540643 30 14.187568 Anserini +test1246 Q0 1626653 1 27.253145 Anserini +test1246 Q0 278116 2 26.107487 Anserini +test1246 Q0 11918307 3 25.773579 Anserini +test1246 Q0 278117 4 25.404373 Anserini +test1246 Q0 15013089 5 24.857681 Anserini +test1246 Q0 5386918 6 24.855925 Anserini +test1246 Q0 7246776 7 24.530706 Anserini +test1246 Q0 1626640 8 23.898687 Anserini +test1246 Q0 278122 9 23.757172 Anserini +test1246 Q0 1514602 10 23.603937 Anserini +test1246 Q0 15151817 11 23.419497 Anserini +test1246 Q0 7327549 12 23.295176 Anserini +test1246 Q0 14375917 13 23.273647 Anserini +test1246 Q0 278133 14 23.173216 Anserini +test1246 Q0 81388 15 22.784866 Anserini +test1246 Q0 2088524 16 22.678680 Anserini +test1246 Q0 5981338 17 22.634594 Anserini +test1246 Q0 7327552 18 22.613203 Anserini +test1246 Q0 91155 19 22.569080 Anserini +test1246 Q0 278126 20 22.559105 Anserini +test1246 Q0 1292941 21 22.524632 Anserini +test1246 Q0 1626659 22 22.433350 Anserini +test1246 Q0 15639339 23 22.314186 Anserini +test1246 Q0 2678827 24 22.192640 Anserini +test1246 Q0 3508638 25 22.173313 Anserini +test1246 Q0 473717 26 22.062992 Anserini +test1246 Q0 1626655 27 22.060926 Anserini +test1246 Q0 251332 28 22.012522 Anserini +test1246 Q0 1292936 29 21.974848 Anserini +test1246 Q0 251341 30 21.969961 Anserini +test1247 Q0 2927680 1 19.525694 Anserini +test1247 Q0 2927672 2 19.525694 Anserini +test1247 Q0 2927677 3 17.400434 Anserini +test1247 Q0 2927678 4 17.069136 Anserini +test1247 Q0 10643872 5 16.826048 Anserini +test1247 Q0 2927676 6 16.350300 Anserini +test1247 Q0 2927673 7 15.332782 Anserini +test1247 Q0 4695553 8 15.327294 Anserini +test1247 Q0 6016536 9 15.324009 Anserini +test1247 Q0 17428795 10 14.842470 Anserini +test1247 Q0 2927679 11 14.771812 Anserini +test1247 Q0 8490658 12 14.576791 Anserini +test1247 Q0 17428794 13 14.384233 Anserini +test1247 Q0 2345073 14 14.309586 Anserini +test1247 Q0 2927682 15 14.151813 Anserini +test1247 Q0 8495589 16 14.092247 Anserini +test1247 Q0 19756455 17 14.046552 Anserini +test1247 Q0 2927675 18 13.945044 Anserini +test1247 Q0 5262651 19 13.940770 Anserini +test1247 Q0 8202018 20 13.816811 Anserini +test1247 Q0 17428797 21 13.669579 Anserini +test1247 Q0 10178500 22 13.576900 Anserini +test1247 Q0 3115932 23 13.467527 Anserini +test1247 Q0 17033259 24 13.385299 Anserini +test1247 Q0 3115939 25 13.378799 Anserini +test1247 Q0 8544957 26 13.328037 Anserini +test1247 Q0 5789019 27 13.301289 Anserini +test1247 Q0 7915135 28 13.264563 Anserini +test1247 Q0 3115935 29 13.140292 Anserini +test1247 Q0 2424824 30 13.133932 Anserini +test1248 Q0 6138279 1 13.394350 Anserini +test1248 Q0 5193911 2 13.228948 Anserini +test1248 Q0 12866715 3 12.998004 Anserini +test1248 Q0 4815082 4 12.660177 Anserini +test1248 Q0 4240657 5 12.337358 Anserini +test1248 Q0 4433730 6 12.080386 Anserini +test1248 Q0 18255529 7 12.028005 Anserini +test1248 Q0 3812459 8 11.950603 Anserini +test1248 Q0 7431975 9 11.865411 Anserini +test1248 Q0 5821443 10 11.767981 Anserini +test1248 Q0 5479742 11 11.728416 Anserini +test1248 Q0 9221546 12 11.625245 Anserini +test1248 Q0 5713786 13 11.597015 Anserini +test1248 Q0 3698394 14 11.588160 Anserini +test1248 Q0 4240665 15 11.546880 Anserini +test1248 Q0 4240167 16 11.519722 Anserini +test1248 Q0 13141328 17 11.506598 Anserini +test1248 Q0 13361349 18 11.474288 Anserini +test1248 Q0 5821414 19 11.438499 Anserini +test1248 Q0 3825490 20 11.432714 Anserini +test1248 Q0 10417805 21 11.408472 Anserini +test1248 Q0 17315624 22 11.396332 Anserini +test1248 Q0 4815072 23 11.384507 Anserini +test1248 Q0 13503491 24 11.351727 Anserini +test1248 Q0 14346731 25 11.283562 Anserini +test1248 Q0 13141331 26 11.281324 Anserini +test1248 Q0 7537659 27 11.244557 Anserini +test1248 Q0 8181264 28 11.210865 Anserini +test1248 Q0 5821439 29 11.201675 Anserini +test1248 Q0 6138282 30 11.194603 Anserini +test1249 Q0 19506705 1 17.501965 Anserini +test1249 Q0 13813700 2 17.327751 Anserini +test1249 Q0 13813723 3 17.322012 Anserini +test1249 Q0 19506707 4 17.264467 Anserini +test1249 Q0 3134791 5 16.851913 Anserini +test1249 Q0 18255224 6 16.776779 Anserini +test1249 Q0 18255217 7 16.753513 Anserini +test1249 Q0 3235961 8 16.567268 Anserini +test1249 Q0 18255227 9 16.564138 Anserini +test1249 Q0 3235963 10 16.488176 Anserini +test1249 Q0 18255222 11 16.348692 Anserini +test1249 Q0 18255221 12 16.327715 Anserini +test1249 Q0 18255223 13 16.327715 Anserini +test1249 Q0 13813698 14 16.051899 Anserini +test1249 Q0 19966037 15 15.971050 Anserini +test1249 Q0 2417383 16 15.914730 Anserini +test1249 Q0 16563601 17 15.850659 Anserini +test1249 Q0 20758344 18 15.474328 Anserini +test1249 Q0 18255220 19 15.269401 Anserini +test1249 Q0 16563602 20 15.186428 Anserini +test1249 Q0 18255247 21 14.842365 Anserini +test1249 Q0 14548370 22 14.806235 Anserini +test1249 Q0 18255225 23 14.791343 Anserini +test1249 Q0 16563600 24 14.779140 Anserini +test1249 Q0 3235962 25 14.731464 Anserini +test1249 Q0 14548381 26 14.546771 Anserini +test1249 Q0 3134789 27 14.533222 Anserini +test1249 Q0 14548389 28 14.507947 Anserini +test1249 Q0 19966038 29 14.501758 Anserini +test1249 Q0 16563603 30 14.463507 Anserini +test125 Q0 13973097 1 24.106071 Anserini +test125 Q0 2506838 2 23.023159 Anserini +test125 Q0 631957 3 23.019661 Anserini +test125 Q0 18782196 4 22.969551 Anserini +test125 Q0 5109454 5 22.629591 Anserini +test125 Q0 15629148 6 22.431093 Anserini +test125 Q0 15629137 7 22.431093 Anserini +test125 Q0 13973098 8 22.383116 Anserini +test125 Q0 6481178 9 21.926163 Anserini +test125 Q0 7907431 10 21.729977 Anserini +test125 Q0 1348502 11 21.478516 Anserini +test125 Q0 5109456 12 21.130827 Anserini +test125 Q0 2349433 13 20.966722 Anserini +test125 Q0 2907911 14 20.913198 Anserini +test125 Q0 6107849 15 20.752785 Anserini +test125 Q0 2391493 16 20.367468 Anserini +test125 Q0 1348506 17 20.315601 Anserini +test125 Q0 6481179 18 20.302191 Anserini +test125 Q0 2314694 19 20.142138 Anserini +test125 Q0 7907449 20 20.067156 Anserini +test125 Q0 1394785 21 20.013979 Anserini +test125 Q0 2391491 22 19.977051 Anserini +test125 Q0 2314692 23 19.931591 Anserini +test125 Q0 14780601 24 19.748055 Anserini +test125 Q0 5096501 25 19.671144 Anserini +test125 Q0 5109053 26 19.648125 Anserini +test125 Q0 12727451 27 19.480841 Anserini +test125 Q0 12561005 28 19.329006 Anserini +test125 Q0 7404748 29 19.073908 Anserini +test125 Q0 17291924 30 18.995077 Anserini +test1250 Q0 19450004 1 14.040509 Anserini +test1250 Q0 3726101 2 13.945456 Anserini +test1250 Q0 3726103 3 13.809309 Anserini +test1250 Q0 6942193 4 13.565325 Anserini +test1250 Q0 19691549 5 13.314861 Anserini +test1250 Q0 14263136 6 13.287291 Anserini +test1250 Q0 12576697 7 13.276359 Anserini +test1250 Q0 20625849 8 12.989330 Anserini +test1250 Q0 13312565 9 12.965907 Anserini +test1250 Q0 16106121 10 12.916130 Anserini +test1250 Q0 16350040 11 12.909024 Anserini +test1250 Q0 20480536 12 12.903357 Anserini +test1250 Q0 20432552 13 12.866896 Anserini +test1250 Q0 7072853 14 12.717382 Anserini +test1250 Q0 7490796 15 12.707473 Anserini +test1250 Q0 17470708 16 12.660625 Anserini +test1250 Q0 4642973 17 12.655601 Anserini +test1250 Q0 13005906 18 12.599648 Anserini +test1250 Q0 13005904 19 12.599648 Anserini +test1250 Q0 11862384 20 12.580578 Anserini +test1250 Q0 19450002 21 12.493419 Anserini +test1250 Q0 17852298 22 12.451106 Anserini +test1250 Q0 20448166 23 12.435256 Anserini +test1250 Q0 20941868 24 12.422303 Anserini +test1250 Q0 13312566 25 12.411545 Anserini +test1250 Q0 11771829 26 12.394273 Anserini +test1250 Q0 15272391 27 12.389398 Anserini +test1250 Q0 4732252 28 12.383778 Anserini +test1250 Q0 80737 29 12.373365 Anserini +test1250 Q0 15417760 30 12.342117 Anserini +test1251 Q0 2813040 1 34.167149 Anserini +test1251 Q0 6511823 2 29.465696 Anserini +test1251 Q0 4902901 3 28.442959 Anserini +test1251 Q0 15002561 4 28.269239 Anserini +test1251 Q0 2813039 5 28.118118 Anserini +test1251 Q0 304056 6 27.807516 Anserini +test1251 Q0 13213979 7 27.245161 Anserini +test1251 Q0 6511824 8 27.030170 Anserini +test1251 Q0 6511822 9 26.646149 Anserini +test1251 Q0 6511871 10 26.150728 Anserini +test1251 Q0 1843950 11 25.985228 Anserini +test1251 Q0 893757 12 25.477552 Anserini +test1251 Q0 7469425 13 24.543381 Anserini +test1251 Q0 20914147 14 24.525944 Anserini +test1251 Q0 893721 15 23.818602 Anserini +test1251 Q0 1843948 16 23.565826 Anserini +test1251 Q0 1843946 17 23.505999 Anserini +test1251 Q0 6511870 18 23.100210 Anserini +test1251 Q0 13213978 19 23.095440 Anserini +test1251 Q0 11426846 20 22.911858 Anserini +test1251 Q0 3377436 21 22.846809 Anserini +test1251 Q0 13213982 22 22.835505 Anserini +test1251 Q0 5472899 23 22.072689 Anserini +test1251 Q0 2813046 24 21.783556 Anserini +test1251 Q0 1406163 25 21.740818 Anserini +test1251 Q0 5047147 26 21.322186 Anserini +test1251 Q0 2813045 27 21.038198 Anserini +test1251 Q0 1843944 28 20.990549 Anserini +test1251 Q0 3888510 29 20.840567 Anserini +test1251 Q0 2813041 30 20.710745 Anserini +test1252 Q0 10482364 1 18.773520 Anserini +test1252 Q0 15209709 2 18.470327 Anserini +test1252 Q0 9864187 3 17.871056 Anserini +test1252 Q0 11528487 4 17.748926 Anserini +test1252 Q0 8727371 5 17.663864 Anserini +test1252 Q0 9863673 6 17.283020 Anserini +test1252 Q0 9620022 7 17.221937 Anserini +test1252 Q0 7017689 8 16.923691 Anserini +test1252 Q0 9209368 9 16.805756 Anserini +test1252 Q0 12848875 10 16.738808 Anserini +test1252 Q0 9902968 11 16.719654 Anserini +test1252 Q0 13195404 12 16.639662 Anserini +test1252 Q0 18033307 13 16.570507 Anserini +test1252 Q0 6359911 14 16.470316 Anserini +test1252 Q0 8727360 15 16.453468 Anserini +test1252 Q0 11383207 16 16.422592 Anserini +test1252 Q0 5214709 17 16.391724 Anserini +test1252 Q0 4315069 18 16.269880 Anserini +test1252 Q0 8493274 19 16.185417 Anserini +test1252 Q0 10482363 20 16.175163 Anserini +test1252 Q0 8724600 21 16.172806 Anserini +test1252 Q0 8724597 22 16.069786 Anserini +test1252 Q0 9864160 23 16.050261 Anserini +test1252 Q0 4644384 24 15.934465 Anserini +test1252 Q0 17736826 25 15.934465 Anserini +test1252 Q0 8724188 26 15.903455 Anserini +test1252 Q0 9915481 27 15.886881 Anserini +test1252 Q0 9410712 28 15.846973 Anserini +test1252 Q0 8721600 29 15.811255 Anserini +test1252 Q0 11312896 30 15.769918 Anserini +test1253 Q0 203820 1 12.109489 Anserini +test1253 Q0 20825561 2 12.042516 Anserini +test1253 Q0 12753896 3 12.009356 Anserini +test1253 Q0 19317001 4 11.830424 Anserini +test1253 Q0 19317005 5 11.830424 Anserini +test1253 Q0 19864428 6 11.778985 Anserini +test1253 Q0 19352095 7 11.620680 Anserini +test1253 Q0 16890303 8 11.524590 Anserini +test1253 Q0 7296778 9 11.449941 Anserini +test1253 Q0 17673917 10 11.404734 Anserini +test1253 Q0 20846982 11 11.353003 Anserini +test1253 Q0 12753895 12 11.331924 Anserini +test1253 Q0 779083 13 11.331782 Anserini +test1253 Q0 20841287 14 11.276385 Anserini +test1253 Q0 13504694 15 11.203276 Anserini +test1253 Q0 12565744 16 10.964092 Anserini +test1253 Q0 165702 17 10.926053 Anserini +test1253 Q0 7476719 18 10.895529 Anserini +test1253 Q0 15557019 19 10.865602 Anserini +test1253 Q0 19352093 20 10.817121 Anserini +test1253 Q0 17163211 21 10.774270 Anserini +test1253 Q0 165662 22 10.748655 Anserini +test1253 Q0 9016410 23 10.650859 Anserini +test1253 Q0 12565746 24 10.636622 Anserini +test1253 Q0 18439889 25 10.582803 Anserini +test1253 Q0 19986367 26 10.542359 Anserini +test1253 Q0 7261223 27 10.517590 Anserini +test1253 Q0 15557013 28 10.512981 Anserini +test1253 Q0 2452134 29 10.512796 Anserini +test1253 Q0 16975293 30 10.480027 Anserini +test1254 Q0 17308157 1 14.704891 Anserini +test1254 Q0 17308160 2 13.741269 Anserini +test1254 Q0 17308162 3 13.711725 Anserini +test1254 Q0 17308159 4 13.145423 Anserini +test1254 Q0 16596625 5 13.071388 Anserini +test1254 Q0 16596634 6 13.071388 Anserini +test1254 Q0 16596632 7 12.897942 Anserini +test1254 Q0 5820870 8 12.514857 Anserini +test1254 Q0 13491064 9 12.383114 Anserini +test1254 Q0 17308161 10 12.336228 Anserini +test1254 Q0 16596627 11 12.336228 Anserini +test1254 Q0 9973858 12 12.307110 Anserini +test1254 Q0 16596631 13 12.299480 Anserini +test1254 Q0 16596626 14 12.115684 Anserini +test1254 Q0 16596628 15 12.115684 Anserini +test1254 Q0 16596629 16 12.115684 Anserini +test1254 Q0 9973856 17 12.058113 Anserini +test1254 Q0 12751586 18 12.027926 Anserini +test1254 Q0 17308158 19 11.757612 Anserini +test1254 Q0 11359066 20 11.722341 Anserini +test1254 Q0 9597480 21 11.040424 Anserini +test1254 Q0 7334107 22 10.918278 Anserini +test1254 Q0 17058936 23 10.876050 Anserini +test1254 Q0 18248658 24 10.580045 Anserini +test1254 Q0 10209508 25 10.571739 Anserini +test1254 Q0 20559310 26 10.564050 Anserini +test1254 Q0 10453578 27 10.526669 Anserini +test1254 Q0 10209501 28 10.504292 Anserini +test1254 Q0 9597481 29 10.478539 Anserini +test1254 Q0 17735054 30 10.478539 Anserini +test1255 Q0 18082816 1 11.512549 Anserini +test1255 Q0 16445905 2 10.934026 Anserini +test1255 Q0 13759328 3 10.876465 Anserini +test1255 Q0 17400185 4 10.662177 Anserini +test1255 Q0 20716022 5 10.626510 Anserini +test1255 Q0 14367328 6 10.619275 Anserini +test1255 Q0 3948609 7 10.585149 Anserini +test1255 Q0 10695060 8 10.537054 Anserini +test1255 Q0 8879254 9 10.485625 Anserini +test1255 Q0 18851982 10 10.458755 Anserini +test1255 Q0 5029154 11 10.371720 Anserini +test1255 Q0 15412396 12 10.369458 Anserini +test1255 Q0 12051979 13 10.212862 Anserini +test1255 Q0 3915708 14 10.200231 Anserini +test1255 Q0 8868940 15 10.153426 Anserini +test1255 Q0 15117099 16 10.125136 Anserini +test1255 Q0 9169622 17 10.119797 Anserini +test1255 Q0 18903480 18 10.107222 Anserini +test1255 Q0 17400178 19 10.090815 Anserini +test1255 Q0 13306223 20 10.017247 Anserini +test1255 Q0 10755764 21 9.966894 Anserini +test1255 Q0 17532817 22 9.963460 Anserini +test1255 Q0 8446714 23 9.957451 Anserini +test1255 Q0 7580984 24 9.954216 Anserini +test1255 Q0 3183012 25 9.944991 Anserini +test1255 Q0 17594648 26 9.928046 Anserini +test1255 Q0 6575282 27 9.909503 Anserini +test1255 Q0 16181367 28 9.850534 Anserini +test1255 Q0 17936255 29 9.840877 Anserini +test1255 Q0 17725089 30 9.821372 Anserini +test1256 Q0 13924335 1 11.556921 Anserini +test1256 Q0 11748403 2 11.112340 Anserini +test1256 Q0 924787 3 10.596765 Anserini +test1256 Q0 11500364 4 10.548208 Anserini +test1256 Q0 11500368 5 10.548208 Anserini +test1256 Q0 8658937 6 10.427370 Anserini +test1256 Q0 1465165 7 10.399613 Anserini +test1256 Q0 12728287 8 10.003178 Anserini +test1256 Q0 1465154 9 9.978039 Anserini +test1256 Q0 6795234 10 9.957106 Anserini +test1256 Q0 7177989 11 9.941206 Anserini +test1256 Q0 15958393 12 9.892159 Anserini +test1256 Q0 6342581 13 9.877804 Anserini +test1256 Q0 12728285 14 9.873131 Anserini +test1256 Q0 16844773 15 9.852717 Anserini +test1256 Q0 5335623 16 9.848983 Anserini +test1256 Q0 11408858 17 9.848983 Anserini +test1256 Q0 15018923 18 9.814350 Anserini +test1256 Q0 5207480 19 9.785590 Anserini +test1256 Q0 16844774 20 9.679756 Anserini +test1256 Q0 6729170 21 9.562469 Anserini +test1256 Q0 4532064 22 9.533965 Anserini +test1256 Q0 11938950 23 9.521997 Anserini +test1256 Q0 8409975 24 9.505015 Anserini +test1256 Q0 4532065 25 9.485195 Anserini +test1256 Q0 3282597 26 9.451802 Anserini +test1256 Q0 14248510 27 9.434941 Anserini +test1256 Q0 12842778 28 9.411701 Anserini +test1256 Q0 1234844 29 9.407475 Anserini +test1256 Q0 2805196 30 9.373476 Anserini +test1257 Q0 8357733 1 13.432470 Anserini +test1257 Q0 16801485 2 12.709614 Anserini +test1257 Q0 11702897 3 11.362001 Anserini +test1257 Q0 17895738 4 11.272582 Anserini +test1257 Q0 7303526 5 11.264701 Anserini +test1257 Q0 7303522 6 11.097487 Anserini +test1257 Q0 8357735 7 11.030052 Anserini +test1257 Q0 11702898 8 10.562133 Anserini +test1257 Q0 14625101 9 10.294371 Anserini +test1257 Q0 7292901 10 10.124679 Anserini +test1257 Q0 19506421 11 9.929240 Anserini +test1257 Q0 11702899 12 9.879508 Anserini +test1257 Q0 19465390 13 9.817818 Anserini +test1257 Q0 13825922 14 9.817498 Anserini +test1257 Q0 8357734 15 9.787206 Anserini +test1257 Q0 17895739 16 9.764487 Anserini +test1257 Q0 10515651 17 9.719393 Anserini +test1257 Q0 17895736 18 9.718597 Anserini +test1257 Q0 20885549 19 9.711485 Anserini +test1257 Q0 17100357 20 9.698475 Anserini +test1257 Q0 14148514 21 9.674946 Anserini +test1257 Q0 13588736 22 9.600595 Anserini +test1257 Q0 5611732 23 9.598650 Anserini +test1257 Q0 18547615 24 9.563497 Anserini +test1257 Q0 12973217 25 9.379731 Anserini +test1257 Q0 10549021 26 9.368740 Anserini +test1257 Q0 4380998 27 9.320324 Anserini +test1257 Q0 15831322 28 9.279395 Anserini +test1257 Q0 6240548 29 9.278031 Anserini +test1257 Q0 17895740 30 9.278031 Anserini +test1258 Q0 9220024 1 13.543420 Anserini +test1258 Q0 9220026 2 12.965311 Anserini +test1258 Q0 10723858 3 12.918366 Anserini +test1258 Q0 12225211 4 12.601276 Anserini +test1258 Q0 11895647 5 12.586828 Anserini +test1258 Q0 3064827 6 12.544743 Anserini +test1258 Q0 6378126 7 12.512023 Anserini +test1258 Q0 6378131 8 12.512023 Anserini +test1258 Q0 16227182 9 12.459009 Anserini +test1258 Q0 7774844 10 12.213824 Anserini +test1258 Q0 18657770 11 12.196736 Anserini +test1258 Q0 16626550 12 12.173663 Anserini +test1258 Q0 16626549 13 12.131896 Anserini +test1258 Q0 2189110 14 12.090819 Anserini +test1258 Q0 11895649 15 12.040163 Anserini +test1258 Q0 74311 16 11.976380 Anserini +test1258 Q0 16370962 17 11.919866 Anserini +test1258 Q0 15476216 18 11.904296 Anserini +test1258 Q0 6321966 19 11.861350 Anserini +test1258 Q0 16370964 20 11.840247 Anserini +test1258 Q0 6360110 21 11.709150 Anserini +test1258 Q0 12696439 22 11.694565 Anserini +test1258 Q0 12696443 23 11.656693 Anserini +test1258 Q0 392318 24 11.623750 Anserini +test1258 Q0 2188755 25 11.620117 Anserini +test1258 Q0 4770942 26 11.601252 Anserini +test1258 Q0 16370865 27 11.584691 Anserini +test1258 Q0 8305794 28 11.580055 Anserini +test1258 Q0 19072697 29 11.495193 Anserini +test1258 Q0 5458170 30 11.460374 Anserini +test1259 Q0 20624609 1 17.715149 Anserini +test1259 Q0 20624637 2 16.649332 Anserini +test1259 Q0 20624629 3 16.430038 Anserini +test1259 Q0 20624636 4 15.991400 Anserini +test1259 Q0 20624613 5 15.863201 Anserini +test1259 Q0 20624611 6 15.710403 Anserini +test1259 Q0 20624627 7 15.034935 Anserini +test1259 Q0 20624614 8 14.788193 Anserini +test1259 Q0 20624610 9 14.661564 Anserini +test1259 Q0 20624612 10 14.485187 Anserini +test1259 Q0 1994411 11 14.274171 Anserini +test1259 Q0 1764120 12 13.970385 Anserini +test1259 Q0 2369853 13 13.753106 Anserini +test1259 Q0 20624630 14 13.723921 Anserini +test1259 Q0 15923983 15 13.553568 Anserini +test1259 Q0 20624631 16 13.448517 Anserini +test1259 Q0 20624621 17 13.375919 Anserini +test1259 Q0 10248433 18 13.371064 Anserini +test1259 Q0 3745913 19 13.309859 Anserini +test1259 Q0 20624628 20 13.230675 Anserini +test1259 Q0 19839843 21 13.224093 Anserini +test1259 Q0 20624626 22 13.121615 Anserini +test1259 Q0 20624619 23 13.107351 Anserini +test1259 Q0 17128788 24 13.080225 Anserini +test1259 Q0 19839841 25 13.060307 Anserini +test1259 Q0 15321327 26 13.045753 Anserini +test1259 Q0 20624615 27 13.014654 Anserini +test1259 Q0 3121052 28 13.008235 Anserini +test1259 Q0 20624618 29 12.879768 Anserini +test1259 Q0 20624625 30 12.879768 Anserini +test126 Q0 20128718 1 25.825300 Anserini +test126 Q0 20128698 2 25.825300 Anserini +test126 Q0 15702161 3 19.812027 Anserini +test126 Q0 19527653 4 19.761868 Anserini +test126 Q0 12272511 5 19.384235 Anserini +test126 Q0 19739681 6 19.094749 Anserini +test126 Q0 10241904 7 19.029573 Anserini +test126 Q0 18755019 8 19.029573 Anserini +test126 Q0 19527640 9 18.964844 Anserini +test126 Q0 13899137 10 18.964844 Anserini +test126 Q0 15715493 11 18.900549 Anserini +test126 Q0 19739698 12 18.900549 Anserini +test126 Q0 15207801 13 18.836691 Anserini +test126 Q0 12272508 14 18.617838 Anserini +test126 Q0 17478890 15 18.431940 Anserini +test126 Q0 13899151 16 18.431940 Anserini +test126 Q0 17478881 17 18.356083 Anserini +test126 Q0 12300173 18 18.356083 Anserini +test126 Q0 13610232 19 18.356083 Anserini +test126 Q0 15702167 20 18.356083 Anserini +test126 Q0 15207818 21 18.310604 Anserini +test126 Q0 14306295 22 18.280846 Anserini +test126 Q0 14306296 23 18.280846 Anserini +test126 Q0 12300168 24 18.280846 Anserini +test126 Q0 18018590 25 18.280846 Anserini +test126 Q0 12184097 26 18.280846 Anserini +test126 Q0 14777603 27 18.280846 Anserini +test126 Q0 15692658 28 18.280846 Anserini +test126 Q0 18755011 29 18.280846 Anserini +test126 Q0 15715509 30 18.280846 Anserini +test1260 Q0 7189378 1 13.722965 Anserini +test1260 Q0 7189375 2 12.711675 Anserini +test1260 Q0 11923191 3 12.641598 Anserini +test1260 Q0 2496731 4 12.547523 Anserini +test1260 Q0 7189374 5 12.498281 Anserini +test1260 Q0 14051843 6 12.280199 Anserini +test1260 Q0 624872 7 12.277443 Anserini +test1260 Q0 2935980 8 12.195573 Anserini +test1260 Q0 2901198 9 12.059573 Anserini +test1260 Q0 5158174 10 11.902817 Anserini +test1260 Q0 4839868 11 11.873558 Anserini +test1260 Q0 1435458 12 11.827697 Anserini +test1260 Q0 8152783 13 11.813743 Anserini +test1260 Q0 10093725 14 11.802124 Anserini +test1260 Q0 1546175 15 11.801848 Anserini +test1260 Q0 18225811 16 11.769487 Anserini +test1260 Q0 10481650 17 11.762159 Anserini +test1260 Q0 7373978 18 11.718842 Anserini +test1260 Q0 3242919 19 11.706704 Anserini +test1260 Q0 16823651 20 11.684223 Anserini +test1260 Q0 1546182 21 11.524903 Anserini +test1260 Q0 10240814 22 11.428092 Anserini +test1260 Q0 1546178 23 11.422791 Anserini +test1260 Q0 4162685 24 11.372712 Anserini +test1260 Q0 15920030 25 11.349620 Anserini +test1260 Q0 7952008 26 11.237085 Anserini +test1260 Q0 4410034 27 11.229116 Anserini +test1260 Q0 15938706 28 11.162226 Anserini +test1260 Q0 13286174 29 11.134718 Anserini +test1260 Q0 8069918 30 11.134718 Anserini +test1261 Q0 613831 1 19.175049 Anserini +test1261 Q0 9960426 2 18.862928 Anserini +test1261 Q0 16722830 3 18.655409 Anserini +test1261 Q0 6938085 4 18.440081 Anserini +test1261 Q0 6938092 5 18.399513 Anserini +test1261 Q0 9960425 6 17.516758 Anserini +test1261 Q0 6938089 7 17.420095 Anserini +test1261 Q0 5878882 8 16.950668 Anserini +test1261 Q0 165999 9 16.803741 Anserini +test1261 Q0 181548 10 16.723564 Anserini +test1261 Q0 17109873 11 16.718086 Anserini +test1261 Q0 165991 12 16.687805 Anserini +test1261 Q0 1772437 13 16.629723 Anserini +test1261 Q0 1772429 14 16.454866 Anserini +test1261 Q0 5323905 15 16.399469 Anserini +test1261 Q0 15271752 16 16.383867 Anserini +test1261 Q0 12832346 17 16.283436 Anserini +test1261 Q0 7901859 18 16.253027 Anserini +test1261 Q0 165978 19 16.226233 Anserini +test1261 Q0 9262835 20 16.181877 Anserini +test1261 Q0 17697805 21 16.151489 Anserini +test1261 Q0 882026 22 16.131178 Anserini +test1261 Q0 1996009 23 16.128599 Anserini +test1261 Q0 20580386 24 16.107925 Anserini +test1261 Q0 20763127 25 16.069202 Anserini +test1261 Q0 1654313 26 16.003754 Anserini +test1261 Q0 181513 27 15.990725 Anserini +test1261 Q0 9960423 28 15.984003 Anserini +test1261 Q0 1369695 29 15.963658 Anserini +test1261 Q0 16753893 30 15.959271 Anserini +test1262 Q0 6782846 1 13.459243 Anserini +test1262 Q0 15283600 2 13.455304 Anserini +test1262 Q0 18263872 3 13.427859 Anserini +test1262 Q0 13365405 4 13.379931 Anserini +test1262 Q0 18157968 5 13.348688 Anserini +test1262 Q0 6782828 6 13.247812 Anserini +test1262 Q0 11802931 7 13.234890 Anserini +test1262 Q0 6782845 8 13.206513 Anserini +test1262 Q0 18176143 9 13.178771 Anserini +test1262 Q0 5716301 10 13.096924 Anserini +test1262 Q0 18157972 11 13.066332 Anserini +test1262 Q0 18143197 12 13.053358 Anserini +test1262 Q0 6782833 13 13.039998 Anserini +test1262 Q0 18263870 14 13.022089 Anserini +test1262 Q0 3898205 15 12.993304 Anserini +test1262 Q0 9679069 16 12.991096 Anserini +test1262 Q0 15633819 17 12.987293 Anserini +test1262 Q0 14556899 18 12.952710 Anserini +test1262 Q0 5498117 19 12.923935 Anserini +test1262 Q0 18680770 20 12.891941 Anserini +test1262 Q0 5498126 21 12.888269 Anserini +test1262 Q0 11802929 22 12.846958 Anserini +test1262 Q0 19928597 23 12.812129 Anserini +test1262 Q0 14206052 24 12.707113 Anserini +test1262 Q0 18157971 25 12.691021 Anserini +test1262 Q0 12810355 26 12.665802 Anserini +test1262 Q0 6845772 27 12.657082 Anserini +test1262 Q0 16497206 28 12.646409 Anserini +test1262 Q0 11095343 29 12.635780 Anserini +test1262 Q0 5716304 30 12.628540 Anserini +test1263 Q0 2496732 1 22.487566 Anserini +test1263 Q0 15287526 2 20.355537 Anserini +test1263 Q0 15287522 3 20.355537 Anserini +test1263 Q0 1477662 4 17.334978 Anserini +test1263 Q0 9420633 5 17.226137 Anserini +test1263 Q0 12967435 6 16.209967 Anserini +test1263 Q0 10057271 7 15.879129 Anserini +test1263 Q0 4845230 8 14.005337 Anserini +test1263 Q0 12554879 9 14.004845 Anserini +test1263 Q0 14660350 10 13.744562 Anserini +test1263 Q0 17441528 11 13.702736 Anserini +test1263 Q0 12733366 12 13.632843 Anserini +test1263 Q0 1873402 13 13.577233 Anserini +test1263 Q0 15388416 14 13.459254 Anserini +test1263 Q0 14918560 15 13.150477 Anserini +test1263 Q0 16987069 16 13.122867 Anserini +test1263 Q0 14108273 17 13.083741 Anserini +test1263 Q0 1399349 18 13.047570 Anserini +test1263 Q0 8626262 19 12.882529 Anserini +test1263 Q0 1423837 20 12.879072 Anserini +test1263 Q0 6193359 21 12.865548 Anserini +test1263 Q0 4606204 22 12.779263 Anserini +test1263 Q0 15622122 23 12.666937 Anserini +test1263 Q0 5354659 24 12.603230 Anserini +test1263 Q0 15287523 25 12.575231 Anserini +test1263 Q0 1436383 26 12.572687 Anserini +test1263 Q0 1427879 27 12.459062 Anserini +test1263 Q0 8323923 28 12.456995 Anserini +test1263 Q0 6247081 29 12.433993 Anserini +test1263 Q0 18908817 30 12.406487 Anserini +test1264 Q0 15100922 1 15.241653 Anserini +test1264 Q0 3109370 2 14.940583 Anserini +test1264 Q0 18234132 3 14.638830 Anserini +test1264 Q0 18234165 4 14.638830 Anserini +test1264 Q0 19732562 5 14.479288 Anserini +test1264 Q0 3950231 6 14.449955 Anserini +test1264 Q0 8513952 7 14.335773 Anserini +test1264 Q0 11016831 8 14.328209 Anserini +test1264 Q0 7087410 9 14.318486 Anserini +test1264 Q0 16398679 10 14.275478 Anserini +test1264 Q0 2837172 11 14.270287 Anserini +test1264 Q0 16398637 12 14.265270 Anserini +test1264 Q0 4600336 13 14.173258 Anserini +test1264 Q0 8881659 14 14.146473 Anserini +test1264 Q0 6587019 15 13.966908 Anserini +test1264 Q0 4542352 16 13.921608 Anserini +test1264 Q0 6391867 17 13.860518 Anserini +test1264 Q0 16232654 18 13.820791 Anserini +test1264 Q0 17179376 19 13.802171 Anserini +test1264 Q0 16398675 20 13.744318 Anserini +test1264 Q0 4964736 21 13.651585 Anserini +test1264 Q0 544175 22 13.618988 Anserini +test1264 Q0 2837194 23 13.583202 Anserini +test1264 Q0 544181 24 13.577116 Anserini +test1264 Q0 4542263 25 13.567716 Anserini +test1264 Q0 544190 26 13.522479 Anserini +test1264 Q0 7644891 27 13.517726 Anserini +test1264 Q0 4508147 28 13.497176 Anserini +test1264 Q0 7644889 29 13.471341 Anserini +test1264 Q0 19365330 30 13.462406 Anserini +test1265 Q0 16810696 1 14.549544 Anserini +test1265 Q0 16519849 2 14.195315 Anserini +test1265 Q0 15884782 3 13.769432 Anserini +test1265 Q0 6711898 4 13.766900 Anserini +test1265 Q0 15634477 5 13.741177 Anserini +test1265 Q0 6571374 6 13.732046 Anserini +test1265 Q0 16452511 7 13.646054 Anserini +test1265 Q0 18167350 8 13.502403 Anserini +test1265 Q0 9992865 9 13.335922 Anserini +test1265 Q0 6711899 10 13.123497 Anserini +test1265 Q0 9927390 11 13.123305 Anserini +test1265 Q0 9927400 12 12.959225 Anserini +test1265 Q0 15884783 13 12.827740 Anserini +test1265 Q0 3639247 14 12.820990 Anserini +test1265 Q0 16385749 15 12.432157 Anserini +test1265 Q0 9601260 16 12.377958 Anserini +test1265 Q0 3307317 17 12.353448 Anserini +test1265 Q0 9927387 18 12.311606 Anserini +test1265 Q0 6711892 19 12.285865 Anserini +test1265 Q0 12455732 20 12.239167 Anserini +test1265 Q0 15884800 21 12.229674 Anserini +test1265 Q0 15884775 22 12.229674 Anserini +test1265 Q0 16810695 23 12.223265 Anserini +test1265 Q0 10393401 24 12.155154 Anserini +test1265 Q0 15884794 25 11.920385 Anserini +test1265 Q0 721527 26 11.902764 Anserini +test1265 Q0 18759659 27 11.856986 Anserini +test1265 Q0 18945307 28 11.780876 Anserini +test1265 Q0 17661650 29 11.667459 Anserini +test1265 Q0 9992859 30 11.568674 Anserini +test1266 Q0 2505494 1 11.576310 Anserini +test1266 Q0 1328355 2 10.677182 Anserini +test1266 Q0 7842327 3 10.649055 Anserini +test1266 Q0 3948674 4 10.473183 Anserini +test1266 Q0 2505535 5 10.405214 Anserini +test1266 Q0 15151097 6 10.343863 Anserini +test1266 Q0 287865 7 10.190429 Anserini +test1266 Q0 325192 8 10.081158 Anserini +test1266 Q0 3284709 9 10.081158 Anserini +test1266 Q0 9579467 10 10.081158 Anserini +test1266 Q0 287861 11 10.046660 Anserini +test1266 Q0 1863172 12 10.046660 Anserini +test1266 Q0 12801824 13 10.046660 Anserini +test1266 Q0 1981454 14 10.046660 Anserini +test1266 Q0 752934 15 10.009001 Anserini +test1266 Q0 9345589 16 9.983372 Anserini +test1266 Q0 1494414 17 9.966229 Anserini +test1266 Q0 9616069 18 9.952324 Anserini +test1266 Q0 1441230 19 9.914089 Anserini +test1266 Q0 3223607 20 9.901101 Anserini +test1266 Q0 8624545 21 9.828150 Anserini +test1266 Q0 3485290 22 9.820312 Anserini +test1266 Q0 18249994 23 9.729259 Anserini +test1266 Q0 3531745 24 9.708260 Anserini +test1266 Q0 4598469 25 9.681089 Anserini +test1266 Q0 3701187 26 9.677449 Anserini +test1266 Q0 20601552 27 9.641191 Anserini +test1266 Q0 13740494 28 9.624228 Anserini +test1266 Q0 12369107 29 9.580236 Anserini +test1266 Q0 3040596 30 9.552743 Anserini +test1267 Q0 13187249 1 13.642178 Anserini +test1267 Q0 2518566 2 13.013027 Anserini +test1267 Q0 16294971 3 12.698446 Anserini +test1267 Q0 14317880 4 12.551841 Anserini +test1267 Q0 14499416 5 12.394098 Anserini +test1267 Q0 8230523 6 11.962734 Anserini +test1267 Q0 20342086 7 11.935287 Anserini +test1267 Q0 18013174 8 11.897293 Anserini +test1267 Q0 16715122 9 11.680431 Anserini +test1267 Q0 3938685 10 11.515634 Anserini +test1267 Q0 7418613 11 11.510016 Anserini +test1267 Q0 8382534 12 11.485651 Anserini +test1267 Q0 9689126 13 11.480021 Anserini +test1267 Q0 8421769 14 11.426016 Anserini +test1267 Q0 17522615 15 11.412382 Anserini +test1267 Q0 6336778 16 11.396172 Anserini +test1267 Q0 14532870 17 11.388956 Anserini +test1267 Q0 14078968 18 11.338799 Anserini +test1267 Q0 16081406 19 11.282680 Anserini +test1267 Q0 15915209 20 11.262317 Anserini +test1267 Q0 14614534 21 11.259792 Anserini +test1267 Q0 3261047 22 11.239374 Anserini +test1267 Q0 16273247 23 11.216531 Anserini +test1267 Q0 12397301 24 11.153800 Anserini +test1267 Q0 3852223 25 11.152356 Anserini +test1267 Q0 3205437 26 11.139226 Anserini +test1267 Q0 10316520 27 11.131120 Anserini +test1267 Q0 2388022 28 11.120560 Anserini +test1267 Q0 13078409 29 11.119728 Anserini +test1267 Q0 5552152 30 11.081482 Anserini +test1268 Q0 19148881 1 13.493144 Anserini +test1268 Q0 5583698 2 13.232528 Anserini +test1268 Q0 15608136 3 12.215487 Anserini +test1268 Q0 20472774 4 12.092505 Anserini +test1268 Q0 15608137 5 12.073931 Anserini +test1268 Q0 15608135 6 11.878042 Anserini +test1268 Q0 15630432 7 11.785070 Anserini +test1268 Q0 19383502 8 11.607836 Anserini +test1268 Q0 18839996 9 11.603234 Anserini +test1268 Q0 20567634 10 11.567948 Anserini +test1268 Q0 19148877 11 11.531345 Anserini +test1268 Q0 20567632 12 11.520096 Anserini +test1268 Q0 6188144 13 11.453242 Anserini +test1268 Q0 5583699 14 11.437235 Anserini +test1268 Q0 19148884 15 11.393724 Anserini +test1268 Q0 19148880 16 11.120891 Anserini +test1268 Q0 19198667 17 11.055964 Anserini +test1268 Q0 19198668 18 11.047419 Anserini +test1268 Q0 3954131 19 11.039371 Anserini +test1268 Q0 18649262 20 10.994011 Anserini +test1268 Q0 5174149 21 10.972968 Anserini +test1268 Q0 18943876 22 10.930107 Anserini +test1268 Q0 13641282 23 10.892451 Anserini +test1268 Q0 14416415 24 10.888550 Anserini +test1268 Q0 14416416 25 10.888550 Anserini +test1268 Q0 15608150 26 10.838429 Anserini +test1268 Q0 16200950 27 10.814592 Anserini +test1268 Q0 19148821 28 10.813050 Anserini +test1268 Q0 12174848 29 10.800465 Anserini +test1268 Q0 11090666 30 10.788669 Anserini +test1269 Q0 18761848 1 18.633627 Anserini +test1269 Q0 4811498 2 18.223944 Anserini +test1269 Q0 17491578 3 17.244524 Anserini +test1269 Q0 17314123 4 17.212597 Anserini +test1269 Q0 14636341 5 17.036291 Anserini +test1269 Q0 19289830 6 16.909639 Anserini +test1269 Q0 18022137 7 16.764812 Anserini +test1269 Q0 19061943 8 16.473455 Anserini +test1269 Q0 19061942 9 16.337852 Anserini +test1269 Q0 4811496 10 16.150879 Anserini +test1269 Q0 19061946 11 16.090948 Anserini +test1269 Q0 4811531 12 16.051758 Anserini +test1269 Q0 18863308 13 15.908677 Anserini +test1269 Q0 16467170 14 15.896465 Anserini +test1269 Q0 16665791 15 15.660178 Anserini +test1269 Q0 16633836 16 15.538768 Anserini +test1269 Q0 19087222 17 15.484080 Anserini +test1269 Q0 20929487 18 15.450593 Anserini +test1269 Q0 16812478 19 15.409777 Anserini +test1269 Q0 14636342 20 15.345306 Anserini +test1269 Q0 4811492 21 15.233674 Anserini +test1269 Q0 19061950 22 15.195295 Anserini +test1269 Q0 14636317 23 15.095031 Anserini +test1269 Q0 19087221 24 14.942599 Anserini +test1269 Q0 10185546 25 14.916360 Anserini +test1269 Q0 16665794 26 14.874266 Anserini +test1269 Q0 4811485 27 14.873849 Anserini +test1269 Q0 15029258 28 14.775192 Anserini +test1269 Q0 4811588 29 14.747373 Anserini +test1269 Q0 18022132 30 14.603098 Anserini +test127 Q0 5141946 1 12.754082 Anserini +test127 Q0 5141948 2 12.754082 Anserini +test127 Q0 12607144 3 12.566275 Anserini +test127 Q0 5626998 4 12.348875 Anserini +test127 Q0 7615246 5 12.251690 Anserini +test127 Q0 7540416 6 11.671870 Anserini +test127 Q0 7596276 7 11.577494 Anserini +test127 Q0 13267114 8 11.565501 Anserini +test127 Q0 17374045 9 11.529757 Anserini +test127 Q0 808563 10 11.529757 Anserini +test127 Q0 7479620 11 11.507424 Anserini +test127 Q0 5940039 12 11.482690 Anserini +test127 Q0 16730942 13 11.453627 Anserini +test127 Q0 5467398 14 11.447617 Anserini +test127 Q0 1971956 15 11.437249 Anserini +test127 Q0 9295541 16 11.307065 Anserini +test127 Q0 9992811 17 11.283111 Anserini +test127 Q0 2958151 18 11.224527 Anserini +test127 Q0 16036739 19 11.215802 Anserini +test127 Q0 11878509 20 11.194457 Anserini +test127 Q0 9295562 21 11.188036 Anserini +test127 Q0 9819245 22 11.165138 Anserini +test127 Q0 5627002 23 11.133615 Anserini +test127 Q0 11832210 24 11.074261 Anserini +test127 Q0 9582505 25 11.067689 Anserini +test127 Q0 4825179 26 11.062900 Anserini +test127 Q0 1827566 27 11.044737 Anserini +test127 Q0 8494744 28 11.032397 Anserini +test127 Q0 3719618 29 11.002766 Anserini +test127 Q0 8494750 30 10.960758 Anserini +test1270 Q0 7116056 1 22.731459 Anserini +test1270 Q0 7536290 2 22.098438 Anserini +test1270 Q0 3324748 3 21.806608 Anserini +test1270 Q0 8282916 4 21.796045 Anserini +test1270 Q0 7383817 5 21.779747 Anserini +test1270 Q0 9142720 6 21.673214 Anserini +test1270 Q0 8698892 7 21.366385 Anserini +test1270 Q0 8036812 8 21.227448 Anserini +test1270 Q0 582848 9 20.796772 Anserini +test1270 Q0 5621433 10 20.770103 Anserini +test1270 Q0 3553426 11 20.738073 Anserini +test1270 Q0 5621438 12 20.653868 Anserini +test1270 Q0 5649199 13 20.622925 Anserini +test1270 Q0 8698889 14 20.616205 Anserini +test1270 Q0 9144963 15 20.559322 Anserini +test1270 Q0 9144969 16 20.559322 Anserini +test1270 Q0 8036822 17 20.493294 Anserini +test1270 Q0 7505109 18 20.442240 Anserini +test1270 Q0 5296442 19 20.441879 Anserini +test1270 Q0 3089730 20 20.379913 Anserini +test1270 Q0 1789629 21 20.358862 Anserini +test1270 Q0 5588763 22 20.274183 Anserini +test1270 Q0 6636926 23 20.264397 Anserini +test1270 Q0 9142705 24 20.218124 Anserini +test1270 Q0 1458896 25 20.187664 Anserini +test1270 Q0 6636949 26 20.178118 Anserini +test1270 Q0 582814 27 20.169407 Anserini +test1270 Q0 13291773 28 20.143826 Anserini +test1270 Q0 5296374 29 20.137764 Anserini +test1270 Q0 3524068 30 20.135414 Anserini +test1271 Q0 14943419 1 16.874508 Anserini +test1271 Q0 14943396 2 16.682312 Anserini +test1271 Q0 20869350 3 16.527313 Anserini +test1271 Q0 20869357 4 16.527313 Anserini +test1271 Q0 20386041 5 16.423050 Anserini +test1271 Q0 20941734 6 16.372883 Anserini +test1271 Q0 19924937 7 16.319021 Anserini +test1271 Q0 19924941 8 16.307323 Anserini +test1271 Q0 19924939 9 16.274319 Anserini +test1271 Q0 20411068 10 16.247139 Anserini +test1271 Q0 17507911 11 16.210381 Anserini +test1271 Q0 20385928 12 16.184904 Anserini +test1271 Q0 20385932 13 16.095112 Anserini +test1271 Q0 20941733 14 16.050285 Anserini +test1271 Q0 18773757 15 15.241005 Anserini +test1271 Q0 17507912 16 15.184974 Anserini +test1271 Q0 20386034 17 15.126959 Anserini +test1271 Q0 17159617 18 14.994928 Anserini +test1271 Q0 20386035 19 14.896160 Anserini +test1271 Q0 14943420 20 14.837992 Anserini +test1271 Q0 19838805 21 14.732785 Anserini +test1271 Q0 17159603 22 14.677342 Anserini +test1271 Q0 19838819 23 14.652333 Anserini +test1271 Q0 18773756 24 14.587020 Anserini +test1271 Q0 20569177 25 14.571154 Anserini +test1271 Q0 20320593 26 14.448141 Anserini +test1271 Q0 20411071 27 14.365837 Anserini +test1271 Q0 14943409 28 14.332543 Anserini +test1271 Q0 14943418 29 14.300914 Anserini +test1271 Q0 17047433 30 14.291369 Anserini +test1272 Q0 16625653 1 16.412661 Anserini +test1272 Q0 3146950 2 14.643720 Anserini +test1272 Q0 3146970 3 14.629951 Anserini +test1272 Q0 14240683 4 14.122813 Anserini +test1272 Q0 20122770 5 13.849383 Anserini +test1272 Q0 12450747 6 13.283134 Anserini +test1272 Q0 3146968 7 12.989334 Anserini +test1272 Q0 3146956 8 12.851395 Anserini +test1272 Q0 16472005 9 12.740685 Anserini +test1272 Q0 8288169 10 12.727760 Anserini +test1272 Q0 3146945 11 12.716414 Anserini +test1272 Q0 3146955 12 12.441810 Anserini +test1272 Q0 20439492 13 12.198851 Anserini +test1272 Q0 10078200 14 12.175089 Anserini +test1272 Q0 7365134 15 12.033697 Anserini +test1272 Q0 1712151 16 11.954681 Anserini +test1272 Q0 9136689 17 11.903833 Anserini +test1272 Q0 10252212 18 11.793082 Anserini +test1272 Q0 2480880 19 11.713729 Anserini +test1272 Q0 10078201 20 11.679261 Anserini +test1272 Q0 3146969 21 11.609555 Anserini +test1272 Q0 13644514 22 11.581957 Anserini +test1272 Q0 20683267 23 11.580181 Anserini +test1272 Q0 3146958 24 11.579220 Anserini +test1272 Q0 8752952 25 11.549431 Anserini +test1272 Q0 16177823 26 11.548857 Anserini +test1272 Q0 16201904 27 11.512169 Anserini +test1272 Q0 16625651 28 11.510933 Anserini +test1272 Q0 10140703 29 11.500042 Anserini +test1272 Q0 10840481 30 11.456674 Anserini +test1273 Q0 408211 1 18.300364 Anserini +test1273 Q0 408198 2 16.893568 Anserini +test1273 Q0 408212 3 15.914059 Anserini +test1273 Q0 4765495 4 14.823669 Anserini +test1273 Q0 10028152 5 14.678526 Anserini +test1273 Q0 408223 6 14.650685 Anserini +test1273 Q0 15308723 7 14.600030 Anserini +test1273 Q0 408196 8 14.599867 Anserini +test1273 Q0 9823411 9 14.515545 Anserini +test1273 Q0 408199 10 14.376931 Anserini +test1273 Q0 1068601 11 14.323395 Anserini +test1273 Q0 408045 12 14.308680 Anserini +test1273 Q0 210977 13 14.306826 Anserini +test1273 Q0 10028163 14 14.222555 Anserini +test1273 Q0 408197 15 14.212484 Anserini +test1273 Q0 4530796 16 14.154638 Anserini +test1273 Q0 4765496 17 14.082190 Anserini +test1273 Q0 5947346 18 14.045534 Anserini +test1273 Q0 4752676 19 14.015110 Anserini +test1273 Q0 7697635 20 13.732613 Anserini +test1273 Q0 4765488 21 13.724157 Anserini +test1273 Q0 1068591 22 13.681766 Anserini +test1273 Q0 15919479 23 13.647570 Anserini +test1273 Q0 4752699 24 13.615514 Anserini +test1273 Q0 4765509 25 13.580359 Anserini +test1273 Q0 408216 26 13.563975 Anserini +test1273 Q0 4684349 27 13.495386 Anserini +test1273 Q0 9646938 28 13.481754 Anserini +test1273 Q0 5294206 29 13.450094 Anserini +test1273 Q0 15420890 30 13.434200 Anserini +test1274 Q0 20019916 1 10.219872 Anserini +test1274 Q0 9215238 2 10.014009 Anserini +test1274 Q0 7052811 3 9.962617 Anserini +test1274 Q0 5577211 4 9.960113 Anserini +test1274 Q0 3084325 5 9.795856 Anserini +test1274 Q0 3444602 6 9.618536 Anserini +test1274 Q0 9215244 7 9.591963 Anserini +test1274 Q0 3545865 8 9.560550 Anserini +test1274 Q0 9215241 9 9.560550 Anserini +test1274 Q0 5265351 10 9.476593 Anserini +test1274 Q0 4907578 11 9.476389 Anserini +test1274 Q0 7052823 12 9.395681 Anserini +test1274 Q0 9215240 13 9.344715 Anserini +test1274 Q0 440123 14 9.275026 Anserini +test1274 Q0 7052813 15 9.222009 Anserini +test1274 Q0 18053793 16 9.192137 Anserini +test1274 Q0 9676186 17 9.165052 Anserini +test1274 Q0 1922249 18 9.098083 Anserini +test1274 Q0 6358534 19 9.096708 Anserini +test1274 Q0 4475547 20 9.055905 Anserini +test1274 Q0 13821047 21 9.033870 Anserini +test1274 Q0 8957091 22 9.018188 Anserini +test1274 Q0 7694893 23 8.906875 Anserini +test1274 Q0 10046613 24 8.873291 Anserini +test1274 Q0 15695719 25 8.846554 Anserini +test1274 Q0 4572498 26 8.832887 Anserini +test1274 Q0 6231802 27 8.832887 Anserini +test1274 Q0 3084347 28 8.832887 Anserini +test1274 Q0 1922248 29 8.832887 Anserini +test1274 Q0 4775677 30 8.792971 Anserini +test1275 Q0 14483174 1 14.041746 Anserini +test1275 Q0 13474329 2 13.400501 Anserini +test1275 Q0 44533 3 13.298869 Anserini +test1275 Q0 4858951 4 13.193522 Anserini +test1275 Q0 8719429 5 12.922524 Anserini +test1275 Q0 13474393 6 12.773786 Anserini +test1275 Q0 9864569 7 12.701056 Anserini +test1275 Q0 16462243 8 12.536860 Anserini +test1275 Q0 16462234 9 12.434042 Anserini +test1275 Q0 14414932 10 12.254434 Anserini +test1275 Q0 7196178 11 12.114692 Anserini +test1275 Q0 397118 12 12.107366 Anserini +test1275 Q0 14414933 13 12.094419 Anserini +test1275 Q0 5059393 14 12.090647 Anserini +test1275 Q0 11372083 15 12.052303 Anserini +test1275 Q0 11895942 16 12.007560 Anserini +test1275 Q0 14414968 17 12.000751 Anserini +test1275 Q0 11368792 18 11.979090 Anserini +test1275 Q0 17981866 19 11.963130 Anserini +test1275 Q0 16180235 20 11.909277 Anserini +test1275 Q0 16462245 21 11.869473 Anserini +test1275 Q0 17883800 22 11.865298 Anserini +test1275 Q0 11366493 23 11.831641 Anserini +test1275 Q0 199680 24 11.790047 Anserini +test1275 Q0 11365051 25 11.776547 Anserini +test1275 Q0 6332893 26 11.775562 Anserini +test1275 Q0 11389058 27 11.748172 Anserini +test1275 Q0 811414 28 11.705810 Anserini +test1275 Q0 10401217 29 11.703490 Anserini +test1275 Q0 10032874 30 11.653131 Anserini +test1276 Q0 5182283 1 15.314638 Anserini +test1276 Q0 5182304 2 15.276785 Anserini +test1276 Q0 2076452 3 15.051111 Anserini +test1276 Q0 2076497 4 15.001415 Anserini +test1276 Q0 5402203 5 14.701351 Anserini +test1276 Q0 5182285 6 14.457674 Anserini +test1276 Q0 16903548 7 13.275887 Anserini +test1276 Q0 6281800 8 13.101970 Anserini +test1276 Q0 7866606 9 13.005522 Anserini +test1276 Q0 8797032 10 12.953654 Anserini +test1276 Q0 6281819 11 12.943430 Anserini +test1276 Q0 7776898 12 12.923528 Anserini +test1276 Q0 16249460 13 12.847559 Anserini +test1276 Q0 7776899 14 12.767346 Anserini +test1276 Q0 2076490 15 12.622871 Anserini +test1276 Q0 7127249 16 12.608656 Anserini +test1276 Q0 3320350 17 12.552462 Anserini +test1276 Q0 6183540 18 12.524710 Anserini +test1276 Q0 7929663 19 12.419240 Anserini +test1276 Q0 10215999 20 12.392300 Anserini +test1276 Q0 2076472 21 12.361809 Anserini +test1276 Q0 4993356 22 12.359781 Anserini +test1276 Q0 7160358 23 12.304600 Anserini +test1276 Q0 6183549 24 12.295464 Anserini +test1276 Q0 5182289 25 12.285971 Anserini +test1276 Q0 4261682 26 12.239524 Anserini +test1276 Q0 8797051 27 12.209694 Anserini +test1276 Q0 16903541 28 12.153659 Anserini +test1276 Q0 4827691 29 12.053901 Anserini +test1276 Q0 4712303 30 12.030957 Anserini +test1277 Q0 7396130 1 15.077065 Anserini +test1277 Q0 3165425 2 14.293048 Anserini +test1277 Q0 8251122 3 14.290221 Anserini +test1277 Q0 16827162 4 14.033937 Anserini +test1277 Q0 14759156 5 13.918744 Anserini +test1277 Q0 3165443 6 13.844728 Anserini +test1277 Q0 9017473 7 13.771119 Anserini +test1277 Q0 805953 8 13.768135 Anserini +test1277 Q0 4276534 9 13.698575 Anserini +test1277 Q0 9710825 10 13.639023 Anserini +test1277 Q0 1354280 11 13.635018 Anserini +test1277 Q0 10461815 12 13.614014 Anserini +test1277 Q0 13834519 13 13.551768 Anserini +test1277 Q0 3160454 14 13.529055 Anserini +test1277 Q0 13834494 15 13.505717 Anserini +test1277 Q0 3501749 16 13.491191 Anserini +test1277 Q0 10287313 17 13.434510 Anserini +test1277 Q0 5740625 18 13.358191 Anserini +test1277 Q0 14759155 19 13.335633 Anserini +test1277 Q0 7747566 20 13.326117 Anserini +test1277 Q0 10461787 21 13.216038 Anserini +test1277 Q0 7396132 22 13.216038 Anserini +test1277 Q0 16649313 23 13.173080 Anserini +test1277 Q0 10582202 24 13.169834 Anserini +test1277 Q0 3276460 25 13.162092 Anserini +test1277 Q0 1871090 26 13.142549 Anserini +test1277 Q0 3276431 27 13.137362 Anserini +test1277 Q0 10461891 28 13.118364 Anserini +test1277 Q0 19078093 29 13.097173 Anserini +test1277 Q0 5725263 30 13.008390 Anserini +test1278 Q0 989512 1 24.737202 Anserini +test1278 Q0 12366342 2 24.331419 Anserini +test1278 Q0 12638159 3 23.690756 Anserini +test1278 Q0 2341405 4 23.559662 Anserini +test1278 Q0 672659 5 23.229626 Anserini +test1278 Q0 1754000 6 22.937809 Anserini +test1278 Q0 672660 7 22.675854 Anserini +test1278 Q0 1754002 8 22.197796 Anserini +test1278 Q0 16416195 9 21.805712 Anserini +test1278 Q0 1459179 10 21.553368 Anserini +test1278 Q0 325265 11 21.505802 Anserini +test1278 Q0 561500 12 21.151892 Anserini +test1278 Q0 6403743 13 20.695803 Anserini +test1278 Q0 989511 14 20.606800 Anserini +test1278 Q0 5321531 15 20.562872 Anserini +test1278 Q0 737597 16 20.526920 Anserini +test1278 Q0 660073 17 20.429256 Anserini +test1278 Q0 3601660 18 20.276150 Anserini +test1278 Q0 6979731 19 20.179218 Anserini +test1278 Q0 4021386 20 19.849766 Anserini +test1278 Q0 5847854 21 19.785767 Anserini +test1278 Q0 325267 22 19.753654 Anserini +test1278 Q0 13143635 23 19.655392 Anserini +test1278 Q0 7236914 24 19.518913 Anserini +test1278 Q0 2744686 25 19.506451 Anserini +test1278 Q0 8503569 26 19.324694 Anserini +test1278 Q0 1664890 27 19.274754 Anserini +test1278 Q0 12367815 28 19.122709 Anserini +test1278 Q0 2963589 29 18.766176 Anserini +test1278 Q0 571616 30 18.671999 Anserini +test1279 Q0 10415574 1 14.747427 Anserini +test1279 Q0 9701268 2 14.458554 Anserini +test1279 Q0 3240408 3 14.202030 Anserini +test1279 Q0 3240419 4 14.114149 Anserini +test1279 Q0 1431040 5 13.244660 Anserini +test1279 Q0 10389639 6 13.117169 Anserini +test1279 Q0 7683655 7 13.035512 Anserini +test1279 Q0 12425432 8 12.941996 Anserini +test1279 Q0 10415576 9 12.926646 Anserini +test1279 Q0 3375689 10 12.873004 Anserini +test1279 Q0 17956622 11 12.689513 Anserini +test1279 Q0 4143255 12 12.633121 Anserini +test1279 Q0 1846900 13 12.595612 Anserini +test1279 Q0 10752125 14 12.476721 Anserini +test1279 Q0 16551927 15 12.432289 Anserini +test1279 Q0 11996778 16 12.296598 Anserini +test1279 Q0 1846888 17 12.273434 Anserini +test1279 Q0 17730299 18 12.260938 Anserini +test1279 Q0 9855025 19 12.231745 Anserini +test1279 Q0 10482241 20 12.175255 Anserini +test1279 Q0 20356208 21 12.043705 Anserini +test1279 Q0 16551926 22 12.020126 Anserini +test1279 Q0 1431038 23 11.963224 Anserini +test1279 Q0 458587 24 11.929590 Anserini +test1279 Q0 1431048 25 11.924557 Anserini +test1279 Q0 513369 26 11.901726 Anserini +test1279 Q0 10238236 27 11.827012 Anserini +test1279 Q0 16551924 28 11.819704 Anserini +test1279 Q0 377639 29 11.819664 Anserini +test1279 Q0 12904198 30 11.799346 Anserini +test128 Q0 20288760 1 14.335827 Anserini +test128 Q0 4729789 2 14.025494 Anserini +test128 Q0 4052609 3 13.952097 Anserini +test128 Q0 3667689 4 13.952097 Anserini +test128 Q0 9161909 5 13.761261 Anserini +test128 Q0 1746356 6 13.753963 Anserini +test128 Q0 1745749 7 13.668400 Anserini +test128 Q0 6085309 8 13.659251 Anserini +test128 Q0 10042999 9 13.608293 Anserini +test128 Q0 20290110 10 13.601617 Anserini +test128 Q0 14753264 11 13.575539 Anserini +test128 Q0 10018767 12 13.503872 Anserini +test128 Q0 3467300 13 13.336920 Anserini +test128 Q0 13430889 14 13.320765 Anserini +test128 Q0 1745750 15 13.296573 Anserini +test128 Q0 3783937 16 13.180824 Anserini +test128 Q0 3783892 17 13.180824 Anserini +test128 Q0 13430890 18 13.142239 Anserini +test128 Q0 9254020 19 13.137503 Anserini +test128 Q0 9022083 20 13.119801 Anserini +test128 Q0 18661996 21 13.103850 Anserini +test128 Q0 19994357 22 13.090971 Anserini +test128 Q0 12337062 23 13.079394 Anserini +test128 Q0 15566407 24 13.068005 Anserini +test128 Q0 20717210 25 13.037228 Anserini +test128 Q0 20726342 26 13.013844 Anserini +test128 Q0 20726341 27 13.012014 Anserini +test128 Q0 19994356 28 13.003770 Anserini +test128 Q0 6657502 29 12.999525 Anserini +test128 Q0 1721193 30 12.997730 Anserini +test1280 Q0 4289208 1 13.114081 Anserini +test1280 Q0 6302238 2 12.164197 Anserini +test1280 Q0 12346351 3 11.516670 Anserini +test1280 Q0 865885 4 11.146723 Anserini +test1280 Q0 16399502 5 11.005223 Anserini +test1280 Q0 20224563 6 10.968710 Anserini +test1280 Q0 17027161 7 10.397802 Anserini +test1280 Q0 5488424 8 10.381466 Anserini +test1280 Q0 5581810 9 10.247433 Anserini +test1280 Q0 19805858 10 10.243948 Anserini +test1280 Q0 15224663 11 10.134001 Anserini +test1280 Q0 15146169 12 10.131431 Anserini +test1280 Q0 13427283 13 10.123616 Anserini +test1280 Q0 17919203 14 10.074943 Anserini +test1280 Q0 9392581 15 10.070687 Anserini +test1280 Q0 8147409 16 10.063721 Anserini +test1280 Q0 14023377 17 10.048058 Anserini +test1280 Q0 16509191 18 10.028318 Anserini +test1280 Q0 19887785 19 9.990042 Anserini +test1280 Q0 1857710 20 9.958721 Anserini +test1280 Q0 15871306 21 9.958221 Anserini +test1280 Q0 5780138 22 9.893788 Anserini +test1280 Q0 8791281 23 9.796139 Anserini +test1280 Q0 7169125 24 9.780025 Anserini +test1280 Q0 4080951 25 9.750173 Anserini +test1280 Q0 4712335 26 9.715633 Anserini +test1280 Q0 20456020 27 9.685686 Anserini +test1280 Q0 18900214 28 9.647532 Anserini +test1280 Q0 3654549 29 9.645483 Anserini +test1280 Q0 12665564 30 9.636349 Anserini +test1281 Q0 2061372 1 12.557541 Anserini +test1281 Q0 2061362 2 12.134512 Anserini +test1281 Q0 11739497 3 11.432950 Anserini +test1281 Q0 10663070 4 11.427450 Anserini +test1281 Q0 2061370 5 10.920129 Anserini +test1281 Q0 2061358 6 10.575851 Anserini +test1281 Q0 16449041 7 10.552860 Anserini +test1281 Q0 2061373 8 10.421293 Anserini +test1281 Q0 393075 9 9.982168 Anserini +test1281 Q0 2061367 10 9.804719 Anserini +test1281 Q0 6224967 11 9.791319 Anserini +test1281 Q0 2061376 12 9.721815 Anserini +test1281 Q0 2061356 13 9.721815 Anserini +test1281 Q0 2643589 14 9.654179 Anserini +test1281 Q0 1109577 15 9.560516 Anserini +test1281 Q0 2061361 16 9.481344 Anserini +test1281 Q0 11710556 17 9.479431 Anserini +test1281 Q0 2061368 18 9.466330 Anserini +test1281 Q0 4260254 19 9.449820 Anserini +test1281 Q0 6224966 20 9.411139 Anserini +test1281 Q0 4260168 21 9.408099 Anserini +test1281 Q0 6224963 22 9.355436 Anserini +test1281 Q0 2061363 23 9.300608 Anserini +test1281 Q0 2061369 24 9.286633 Anserini +test1281 Q0 2061364 25 9.174199 Anserini +test1281 Q0 1193994 26 9.174199 Anserini +test1281 Q0 4260172 27 9.076656 Anserini +test1281 Q0 8397618 28 8.962492 Anserini +test1281 Q0 2807228 29 8.948054 Anserini +test1281 Q0 1797434 30 8.943474 Anserini +test1282 Q0 15896856 1 23.237206 Anserini +test1282 Q0 16460585 2 22.725826 Anserini +test1282 Q0 8202476 3 22.179329 Anserini +test1282 Q0 15716043 4 21.878702 Anserini +test1282 Q0 8202472 5 21.688017 Anserini +test1282 Q0 8202498 6 21.615332 Anserini +test1282 Q0 15716048 7 21.385796 Anserini +test1282 Q0 8202496 8 21.238703 Anserini +test1282 Q0 8202547 9 21.191622 Anserini +test1282 Q0 8202501 10 21.122715 Anserini +test1282 Q0 8202504 11 21.071115 Anserini +test1282 Q0 8202474 12 21.032438 Anserini +test1282 Q0 8202483 13 21.014812 Anserini +test1282 Q0 15716045 14 20.989096 Anserini +test1282 Q0 8202536 15 20.863722 Anserini +test1282 Q0 8202546 16 20.824368 Anserini +test1282 Q0 8202549 17 20.803162 Anserini +test1282 Q0 15716057 18 20.798405 Anserini +test1282 Q0 15716049 19 20.760424 Anserini +test1282 Q0 15716047 20 20.646030 Anserini +test1282 Q0 8202540 21 20.642071 Anserini +test1282 Q0 8202543 22 20.486319 Anserini +test1282 Q0 8202539 23 20.472710 Anserini +test1282 Q0 8202542 24 20.409275 Anserini +test1282 Q0 15896855 25 20.400742 Anserini +test1282 Q0 8202541 26 20.349239 Anserini +test1282 Q0 17308048 27 20.346802 Anserini +test1282 Q0 15896842 28 20.328703 Anserini +test1282 Q0 12190514 29 20.279785 Anserini +test1282 Q0 12190513 30 20.277119 Anserini +test1283 Q0 9267155 1 12.595902 Anserini +test1283 Q0 5458248 2 11.024190 Anserini +test1283 Q0 3857163 3 11.007347 Anserini +test1283 Q0 3659992 4 10.866663 Anserini +test1283 Q0 13705601 5 10.698865 Anserini +test1283 Q0 5458230 6 10.620472 Anserini +test1283 Q0 15777492 7 10.613257 Anserini +test1283 Q0 1808822 8 10.525867 Anserini +test1283 Q0 12756422 9 10.450633 Anserini +test1283 Q0 9949026 10 10.274393 Anserini +test1283 Q0 9949027 11 10.274393 Anserini +test1283 Q0 9267157 12 9.927423 Anserini +test1283 Q0 12612736 13 9.926616 Anserini +test1283 Q0 16859456 14 9.921350 Anserini +test1283 Q0 3857162 15 9.836306 Anserini +test1283 Q0 8582564 16 9.816478 Anserini +test1283 Q0 8735768 17 9.815796 Anserini +test1283 Q0 9872806 18 9.762270 Anserini +test1283 Q0 9872812 19 9.762270 Anserini +test1283 Q0 20666214 20 9.712465 Anserini +test1283 Q0 6205888 21 9.683829 Anserini +test1283 Q0 5458246 22 9.626533 Anserini +test1283 Q0 12993263 23 9.601584 Anserini +test1283 Q0 8582593 24 9.593619 Anserini +test1283 Q0 5458245 25 9.566635 Anserini +test1283 Q0 5458244 26 9.553893 Anserini +test1283 Q0 5458234 27 9.517193 Anserini +test1283 Q0 18490545 28 9.517193 Anserini +test1283 Q0 13705602 29 9.391412 Anserini +test1283 Q0 1434086 30 9.317054 Anserini +test1284 Q0 4837539 1 13.538214 Anserini +test1284 Q0 6196134 2 13.524377 Anserini +test1284 Q0 6196126 3 13.488253 Anserini +test1284 Q0 9254120 4 12.997808 Anserini +test1284 Q0 6196138 5 12.059422 Anserini +test1284 Q0 20794976 6 11.985013 Anserini +test1284 Q0 6196133 7 11.924451 Anserini +test1284 Q0 16789898 8 11.878964 Anserini +test1284 Q0 6196136 9 11.729900 Anserini +test1284 Q0 13797024 10 11.642085 Anserini +test1284 Q0 13797013 11 11.642085 Anserini +test1284 Q0 5599335 12 11.642077 Anserini +test1284 Q0 16217237 13 11.535838 Anserini +test1284 Q0 17763403 14 11.517801 Anserini +test1284 Q0 20428451 15 11.456053 Anserini +test1284 Q0 16696628 16 11.410559 Anserini +test1284 Q0 11927503 17 11.363795 Anserini +test1284 Q0 19067853 18 11.265337 Anserini +test1284 Q0 2473534 19 11.175340 Anserini +test1284 Q0 6196123 20 11.166842 Anserini +test1284 Q0 6196145 21 11.166842 Anserini +test1284 Q0 6196137 22 11.157437 Anserini +test1284 Q0 15156498 23 11.150269 Anserini +test1284 Q0 9808866 24 11.147711 Anserini +test1284 Q0 8385859 25 11.014624 Anserini +test1284 Q0 6196140 26 10.939342 Anserini +test1284 Q0 6196139 27 10.939342 Anserini +test1284 Q0 11817465 28 10.927160 Anserini +test1284 Q0 20428461 29 10.915702 Anserini +test1284 Q0 9918991 30 10.865191 Anserini +test1285 Q0 8313330 1 16.645885 Anserini +test1285 Q0 8313335 2 16.635469 Anserini +test1285 Q0 8313333 3 16.288826 Anserini +test1285 Q0 8313331 4 14.773127 Anserini +test1285 Q0 8313334 5 14.633024 Anserini +test1285 Q0 6554655 6 14.299445 Anserini +test1285 Q0 4994821 7 14.244799 Anserini +test1285 Q0 14716143 8 14.098705 Anserini +test1285 Q0 814340 9 13.598249 Anserini +test1285 Q0 11895888 10 13.580915 Anserini +test1285 Q0 7045343 11 13.437440 Anserini +test1285 Q0 14686935 12 13.318905 Anserini +test1285 Q0 12514401 13 13.180372 Anserini +test1285 Q0 14381719 14 13.121736 Anserini +test1285 Q0 18930781 15 13.044366 Anserini +test1285 Q0 19499275 16 12.924303 Anserini +test1285 Q0 13034614 17 12.904490 Anserini +test1285 Q0 13612178 18 12.721394 Anserini +test1285 Q0 7580984 19 12.702260 Anserini +test1285 Q0 6866761 20 12.590423 Anserini +test1285 Q0 16659943 21 12.550370 Anserini +test1285 Q0 11960258 22 12.549011 Anserini +test1285 Q0 2054788 23 12.533655 Anserini +test1285 Q0 12344501 24 12.533314 Anserini +test1285 Q0 13383177 25 12.499706 Anserini +test1285 Q0 11960256 26 12.433239 Anserini +test1285 Q0 6076153 27 12.432184 Anserini +test1285 Q0 20491429 28 12.392690 Anserini +test1285 Q0 7945448 29 12.378922 Anserini +test1285 Q0 17281499 30 12.353048 Anserini +test1286 Q0 9256988 1 14.749910 Anserini +test1286 Q0 11494967 2 14.540139 Anserini +test1286 Q0 9901976 3 14.378013 Anserini +test1286 Q0 13860374 4 13.921727 Anserini +test1286 Q0 9737072 5 13.842807 Anserini +test1286 Q0 11274869 6 13.743901 Anserini +test1286 Q0 6551277 7 13.684262 Anserini +test1286 Q0 6015118 8 13.538456 Anserini +test1286 Q0 9809667 9 13.495665 Anserini +test1286 Q0 5425378 10 13.477670 Anserini +test1286 Q0 16794290 11 13.467929 Anserini +test1286 Q0 14585139 12 13.422765 Anserini +test1286 Q0 9329227 13 13.389128 Anserini +test1286 Q0 13860371 14 13.376216 Anserini +test1286 Q0 16794287 15 13.315567 Anserini +test1286 Q0 15047436 16 13.287257 Anserini +test1286 Q0 20811219 17 13.272826 Anserini +test1286 Q0 3795452 18 13.262163 Anserini +test1286 Q0 11817763 19 13.229863 Anserini +test1286 Q0 836721 20 13.213725 Anserini +test1286 Q0 6221462 21 13.203892 Anserini +test1286 Q0 17450061 22 13.187228 Anserini +test1286 Q0 3333667 23 13.180674 Anserini +test1286 Q0 12899237 24 13.171068 Anserini +test1286 Q0 20498506 25 13.142670 Anserini +test1286 Q0 15671935 26 13.106628 Anserini +test1286 Q0 13860378 27 13.067554 Anserini +test1286 Q0 384621 28 13.057851 Anserini +test1286 Q0 7278994 29 13.003870 Anserini +test1286 Q0 13860373 30 12.980023 Anserini +test1287 Q0 2199210 1 12.912806 Anserini +test1287 Q0 3176149 2 12.698821 Anserini +test1287 Q0 19985001 3 12.641616 Anserini +test1287 Q0 9452991 4 12.213398 Anserini +test1287 Q0 9200595 5 12.180880 Anserini +test1287 Q0 2690399 6 11.853460 Anserini +test1287 Q0 9003132 7 11.779357 Anserini +test1287 Q0 18467515 8 11.589222 Anserini +test1287 Q0 10211679 9 11.483855 Anserini +test1287 Q0 13570317 10 11.466026 Anserini +test1287 Q0 13570324 11 11.387290 Anserini +test1287 Q0 13570321 12 11.377216 Anserini +test1287 Q0 13464579 13 11.369714 Anserini +test1287 Q0 403153 14 11.347936 Anserini +test1287 Q0 13570323 15 11.347733 Anserini +test1287 Q0 503104 16 11.291010 Anserini +test1287 Q0 122762 17 11.281223 Anserini +test1287 Q0 1964562 18 11.264362 Anserini +test1287 Q0 3174331 19 11.183777 Anserini +test1287 Q0 760480 20 11.181188 Anserini +test1287 Q0 83667 21 11.179251 Anserini +test1287 Q0 85095 22 11.170784 Anserini +test1287 Q0 76075 23 11.120864 Anserini +test1287 Q0 11274596 24 11.117566 Anserini +test1287 Q0 7031491 25 11.095860 Anserini +test1287 Q0 13570314 26 11.046801 Anserini +test1287 Q0 13570332 27 11.046801 Anserini +test1287 Q0 4632757 28 11.046009 Anserini +test1287 Q0 6581656 29 11.030093 Anserini +test1287 Q0 13464573 30 10.991032 Anserini +test1288 Q0 500261 1 16.169266 Anserini +test1288 Q0 500254 2 14.698224 Anserini +test1288 Q0 500263 3 14.147436 Anserini +test1288 Q0 1736039 4 14.002609 Anserini +test1288 Q0 1736058 5 13.852481 Anserini +test1288 Q0 266095 6 13.814747 Anserini +test1288 Q0 902683 7 13.783789 Anserini +test1288 Q0 412643 8 13.774111 Anserini +test1288 Q0 500253 9 13.737640 Anserini +test1288 Q0 1736057 10 13.735306 Anserini +test1288 Q0 14157975 11 13.607510 Anserini +test1288 Q0 902684 12 13.581855 Anserini +test1288 Q0 13701530 13 13.535861 Anserini +test1288 Q0 2755128 14 13.510933 Anserini +test1288 Q0 4566913 15 13.429422 Anserini +test1288 Q0 99077 16 13.379166 Anserini +test1288 Q0 521219 17 13.339108 Anserini +test1288 Q0 1737686 18 13.328324 Anserini +test1288 Q0 9259286 19 13.287763 Anserini +test1288 Q0 902682 20 13.277826 Anserini +test1288 Q0 7851188 21 13.263444 Anserini +test1288 Q0 500262 22 13.209574 Anserini +test1288 Q0 5501545 23 13.172245 Anserini +test1288 Q0 3285539 24 13.169428 Anserini +test1288 Q0 14316176 25 13.165787 Anserini +test1288 Q0 1456269 26 13.163614 Anserini +test1288 Q0 13567027 27 13.118471 Anserini +test1288 Q0 12605745 28 13.110821 Anserini +test1288 Q0 13701528 29 13.094934 Anserini +test1288 Q0 14984023 30 13.063191 Anserini +test1289 Q0 11746753 1 14.929324 Anserini +test1289 Q0 668524 2 14.910587 Anserini +test1289 Q0 15530293 3 14.501800 Anserini +test1289 Q0 3740711 4 14.314688 Anserini +test1289 Q0 6379913 5 14.301626 Anserini +test1289 Q0 15530295 6 14.275628 Anserini +test1289 Q0 668516 7 13.985888 Anserini +test1289 Q0 668523 8 13.887171 Anserini +test1289 Q0 15530296 9 13.555743 Anserini +test1289 Q0 520938 10 13.533509 Anserini +test1289 Q0 668515 11 13.499989 Anserini +test1289 Q0 2219577 12 13.428414 Anserini +test1289 Q0 7940663 13 13.290407 Anserini +test1289 Q0 232278 14 13.269873 Anserini +test1289 Q0 3740724 15 13.247176 Anserini +test1289 Q0 587313 16 13.229748 Anserini +test1289 Q0 1277387 17 13.144331 Anserini +test1289 Q0 8102491 18 13.138948 Anserini +test1289 Q0 123332 19 13.132217 Anserini +test1289 Q0 417186 20 13.124830 Anserini +test1289 Q0 6885783 21 13.052794 Anserini +test1289 Q0 6379911 22 13.048179 Anserini +test1289 Q0 111109 23 12.971977 Anserini +test1289 Q0 1370482 24 12.883810 Anserini +test1289 Q0 906020 25 12.858788 Anserini +test1289 Q0 9950186 26 12.852913 Anserini +test1289 Q0 8102494 27 12.851359 Anserini +test1289 Q0 3609984 28 12.826840 Anserini +test1289 Q0 11389302 29 12.783208 Anserini +test1289 Q0 2314786 30 12.769211 Anserini +test129 Q0 15507759 1 9.420166 Anserini +test129 Q0 16946827 2 9.417383 Anserini +test129 Q0 5823127 3 9.383350 Anserini +test129 Q0 12271737 4 9.367104 Anserini +test129 Q0 15507877 5 9.336703 Anserini +test129 Q0 12655549 6 9.260441 Anserini +test129 Q0 18318853 7 9.219312 Anserini +test129 Q0 19091416 8 9.165159 Anserini +test129 Q0 11852445 9 9.165159 Anserini +test129 Q0 10427325 10 9.083806 Anserini +test129 Q0 6587795 11 9.046719 Anserini +test129 Q0 6587799 12 9.046719 Anserini +test129 Q0 19191807 13 8.942146 Anserini +test129 Q0 13782367 14 8.892071 Anserini +test129 Q0 9395197 15 8.881670 Anserini +test129 Q0 10427322 16 8.817472 Anserini +test129 Q0 1005591 17 8.743318 Anserini +test129 Q0 15491568 18 8.721022 Anserini +test129 Q0 20112307 19 8.712555 Anserini +test129 Q0 3208157 20 8.706977 Anserini +test129 Q0 1559844 21 8.665532 Anserini +test129 Q0 5178180 22 8.620838 Anserini +test129 Q0 20277621 23 8.601967 Anserini +test129 Q0 18772647 24 8.495178 Anserini +test129 Q0 10312936 25 8.475977 Anserini +test129 Q0 103734 26 8.401303 Anserini +test129 Q0 14975788 27 8.401303 Anserini +test129 Q0 8334916 28 8.328032 Anserini +test129 Q0 1864496 29 8.289657 Anserini +test129 Q0 3731267 30 8.210793 Anserini +test1290 Q0 14563942 1 17.179926 Anserini +test1290 Q0 14635814 2 16.732294 Anserini +test1290 Q0 3734191 3 16.346128 Anserini +test1290 Q0 10860764 4 16.123249 Anserini +test1290 Q0 3235819 5 16.106575 Anserini +test1290 Q0 8148336 6 16.022072 Anserini +test1290 Q0 4246034 7 15.747652 Anserini +test1290 Q0 3734264 8 15.723143 Anserini +test1290 Q0 16520560 9 15.575361 Anserini +test1290 Q0 18073339 10 15.493223 Anserini +test1290 Q0 17510000 11 15.425628 Anserini +test1290 Q0 16520556 12 15.425628 Anserini +test1290 Q0 12938488 13 15.320805 Anserini +test1290 Q0 3734227 14 15.072832 Anserini +test1290 Q0 3734201 15 14.909349 Anserini +test1290 Q0 9366930 16 14.827146 Anserini +test1290 Q0 12938487 17 14.804386 Anserini +test1290 Q0 3734261 18 14.734187 Anserini +test1290 Q0 9366938 19 14.722942 Anserini +test1290 Q0 14635810 20 14.706326 Anserini +test1290 Q0 19907398 21 14.706326 Anserini +test1290 Q0 6690086 22 14.687279 Anserini +test1290 Q0 19086523 23 14.674209 Anserini +test1290 Q0 3734205 24 14.499248 Anserini +test1290 Q0 4331792 25 14.429017 Anserini +test1290 Q0 12996444 26 14.421146 Anserini +test1290 Q0 16319845 27 14.368736 Anserini +test1290 Q0 3235824 28 14.341265 Anserini +test1290 Q0 19907403 29 14.314716 Anserini +test1290 Q0 3734214 30 14.228827 Anserini +test1291 Q0 4924636 1 16.570570 Anserini +test1291 Q0 17547655 2 15.661633 Anserini +test1291 Q0 17547656 3 15.600763 Anserini +test1291 Q0 20065915 4 15.525382 Anserini +test1291 Q0 8883737 5 15.516491 Anserini +test1291 Q0 17146709 6 14.540375 Anserini +test1291 Q0 10279972 7 14.534408 Anserini +test1291 Q0 5805154 8 14.407694 Anserini +test1291 Q0 20065916 9 14.274602 Anserini +test1291 Q0 18568712 10 14.162889 Anserini +test1291 Q0 16472567 11 14.156672 Anserini +test1291 Q0 10279976 12 14.148163 Anserini +test1291 Q0 15967900 13 14.148163 Anserini +test1291 Q0 15967901 14 14.148163 Anserini +test1291 Q0 10628215 15 14.125482 Anserini +test1291 Q0 10093600 16 14.052961 Anserini +test1291 Q0 18339910 17 14.050566 Anserini +test1291 Q0 18339913 18 13.971714 Anserini +test1291 Q0 5805155 19 13.922586 Anserini +test1291 Q0 17942625 20 13.893234 Anserini +test1291 Q0 10628225 21 13.860600 Anserini +test1291 Q0 18246980 22 13.622974 Anserini +test1291 Q0 18621636 23 13.612536 Anserini +test1291 Q0 18621640 24 13.612536 Anserini +test1291 Q0 4913020 25 13.600778 Anserini +test1291 Q0 18568713 26 13.596460 Anserini +test1291 Q0 19708798 27 13.566063 Anserini +test1291 Q0 9209204 28 13.565798 Anserini +test1291 Q0 16472564 29 13.549666 Anserini +test1291 Q0 19702817 30 13.450468 Anserini +test1292 Q0 15101566 1 13.124377 Anserini +test1292 Q0 5805204 2 12.775860 Anserini +test1292 Q0 18468388 3 12.302042 Anserini +test1292 Q0 16017491 4 12.078253 Anserini +test1292 Q0 9720618 5 11.993993 Anserini +test1292 Q0 7609311 6 11.940562 Anserini +test1292 Q0 17155800 7 11.910728 Anserini +test1292 Q0 11139081 8 11.762522 Anserini +test1292 Q0 182630 9 11.537930 Anserini +test1292 Q0 1935024 10 11.447357 Anserini +test1292 Q0 3968648 11 11.315456 Anserini +test1292 Q0 3968633 12 11.285025 Anserini +test1292 Q0 19037913 13 11.229902 Anserini +test1292 Q0 7780797 14 11.091271 Anserini +test1292 Q0 7780798 15 11.091271 Anserini +test1292 Q0 5805205 16 10.983456 Anserini +test1292 Q0 11153293 17 10.897505 Anserini +test1292 Q0 11840555 18 10.749863 Anserini +test1292 Q0 373309 19 10.664702 Anserini +test1292 Q0 11788842 20 10.656096 Anserini +test1292 Q0 1823810 21 10.600168 Anserini +test1292 Q0 414908 22 10.585623 Anserini +test1292 Q0 594382 23 10.498198 Anserini +test1292 Q0 4414837 24 10.450146 Anserini +test1292 Q0 13452941 25 10.340195 Anserini +test1292 Q0 14487790 26 10.253798 Anserini +test1292 Q0 2309921 27 10.177625 Anserini +test1292 Q0 1588319 28 10.160604 Anserini +test1292 Q0 5226796 29 10.155231 Anserini +test1292 Q0 20037486 30 10.144398 Anserini +test1293 Q0 337771 1 13.139261 Anserini +test1293 Q0 847363 2 13.025516 Anserini +test1293 Q0 337776 3 12.981428 Anserini +test1293 Q0 1951638 4 12.923627 Anserini +test1293 Q0 1951664 5 12.905633 Anserini +test1293 Q0 2943628 6 12.881503 Anserini +test1293 Q0 12269746 7 12.847938 Anserini +test1293 Q0 12989740 8 12.571757 Anserini +test1293 Q0 12689104 9 12.465816 Anserini +test1293 Q0 4917936 10 12.454857 Anserini +test1293 Q0 3848727 11 12.450200 Anserini +test1293 Q0 2951443 12 12.408138 Anserini +test1293 Q0 1951673 13 12.326918 Anserini +test1293 Q0 14725225 14 12.310420 Anserini +test1293 Q0 16441267 15 12.289713 Anserini +test1293 Q0 1951628 16 12.260350 Anserini +test1293 Q0 2648985 17 12.210295 Anserini +test1293 Q0 1951665 18 12.181188 Anserini +test1293 Q0 12972808 19 12.180052 Anserini +test1293 Q0 408273 20 12.177255 Anserini +test1293 Q0 6357997 21 12.167492 Anserini +test1293 Q0 273461 22 12.159967 Anserini +test1293 Q0 1284619 23 12.135674 Anserini +test1293 Q0 1284642 24 12.135674 Anserini +test1293 Q0 12269747 25 12.059730 Anserini +test1293 Q0 100160 26 12.048699 Anserini +test1293 Q0 13147704 27 11.998707 Anserini +test1293 Q0 4651766 28 11.992043 Anserini +test1293 Q0 1951639 29 11.983744 Anserini +test1293 Q0 3848731 30 11.929415 Anserini +test1294 Q0 1290877 1 15.614463 Anserini +test1294 Q0 15059458 2 15.282869 Anserini +test1294 Q0 15052623 3 14.437493 Anserini +test1294 Q0 15052539 4 14.397422 Anserini +test1294 Q0 15052587 5 14.258364 Anserini +test1294 Q0 15049906 6 14.198318 Anserini +test1294 Q0 15053998 7 14.198318 Anserini +test1294 Q0 15052577 8 14.198318 Anserini +test1294 Q0 15054059 9 14.069904 Anserini +test1294 Q0 15052520 10 13.931798 Anserini +test1294 Q0 15052598 11 13.931798 Anserini +test1294 Q0 15059475 12 13.894808 Anserini +test1294 Q0 15054015 13 13.784291 Anserini +test1294 Q0 15052488 14 13.784291 Anserini +test1294 Q0 15052506 15 13.784291 Anserini +test1294 Q0 15052597 16 13.784291 Anserini +test1294 Q0 15052613 17 13.784291 Anserini +test1294 Q0 15059456 18 13.783683 Anserini +test1294 Q0 15052590 19 13.618328 Anserini +test1294 Q0 4529720 20 13.272890 Anserini +test1294 Q0 15059454 21 13.134572 Anserini +test1294 Q0 4529722 22 13.025866 Anserini +test1294 Q0 15059459 23 13.003970 Anserini +test1294 Q0 5517685 24 12.964852 Anserini +test1294 Q0 14941076 25 12.959574 Anserini +test1294 Q0 15059461 26 12.942193 Anserini +test1294 Q0 1290868 27 12.940692 Anserini +test1294 Q0 15134602 28 12.869585 Anserini +test1294 Q0 15622501 29 12.868296 Anserini +test1294 Q0 5517686 30 12.844842 Anserini +test1295 Q0 6196145 1 15.908619 Anserini +test1295 Q0 16459468 2 15.546700 Anserini +test1295 Q0 6196123 3 15.447014 Anserini +test1295 Q0 6196134 4 15.388663 Anserini +test1295 Q0 20428451 5 15.154578 Anserini +test1295 Q0 6196126 6 14.862976 Anserini +test1295 Q0 6196138 7 14.861732 Anserini +test1295 Q0 16459470 8 14.738701 Anserini +test1295 Q0 6196124 9 14.716163 Anserini +test1295 Q0 6196133 10 14.603729 Anserini +test1295 Q0 6196142 11 14.556765 Anserini +test1295 Q0 11546924 12 14.466220 Anserini +test1295 Q0 9675169 13 14.241333 Anserini +test1295 Q0 6196132 14 13.934937 Anserini +test1295 Q0 6196130 15 13.903945 Anserini +test1295 Q0 6196140 16 13.487416 Anserini +test1295 Q0 6196139 17 13.487416 Anserini +test1295 Q0 9675148 18 13.419580 Anserini +test1295 Q0 6196125 19 13.116452 Anserini +test1295 Q0 20428465 20 13.014574 Anserini +test1295 Q0 10243757 21 12.979185 Anserini +test1295 Q0 20794976 22 12.959577 Anserini +test1295 Q0 15930001 23 12.958046 Anserini +test1295 Q0 6196128 24 12.843866 Anserini +test1295 Q0 6196143 25 12.837397 Anserini +test1295 Q0 16226131 26 12.695190 Anserini +test1295 Q0 6196137 27 12.627435 Anserini +test1295 Q0 6196141 28 12.550170 Anserini +test1295 Q0 9254120 29 12.517529 Anserini +test1295 Q0 10727453 30 12.495728 Anserini +test1296 Q0 15890497 1 11.779202 Anserini +test1296 Q0 15890496 2 11.718480 Anserini +test1296 Q0 2075068 3 11.485065 Anserini +test1296 Q0 19340002 4 10.667372 Anserini +test1296 Q0 15066408 5 10.648743 Anserini +test1296 Q0 5583306 6 10.638900 Anserini +test1296 Q0 17532744 7 10.638900 Anserini +test1296 Q0 17864470 8 10.635322 Anserini +test1296 Q0 19942466 9 10.571240 Anserini +test1296 Q0 19340000 10 10.508248 Anserini +test1296 Q0 13431994 11 10.447123 Anserini +test1296 Q0 14773356 12 10.431516 Anserini +test1296 Q0 19942463 13 10.425323 Anserini +test1296 Q0 20023229 14 10.359837 Anserini +test1296 Q0 19563306 15 10.241972 Anserini +test1296 Q0 18650127 16 10.221324 Anserini +test1296 Q0 18315040 17 10.198421 Anserini +test1296 Q0 16539399 18 10.125564 Anserini +test1296 Q0 3091493 19 10.115540 Anserini +test1296 Q0 18315039 20 10.046119 Anserini +test1296 Q0 17656824 21 10.041469 Anserini +test1296 Q0 13431974 22 9.924595 Anserini +test1296 Q0 10257502 23 9.905272 Anserini +test1296 Q0 2712011 24 9.901844 Anserini +test1296 Q0 19304913 25 9.890279 Anserini +test1296 Q0 10257506 26 9.857563 Anserini +test1296 Q0 11755573 27 9.854792 Anserini +test1296 Q0 6841391 28 9.852177 Anserini +test1296 Q0 20021604 29 9.825561 Anserini +test1296 Q0 3035343 30 9.768625 Anserini +test1297 Q0 20305902 1 17.853945 Anserini +test1297 Q0 20305899 2 17.853945 Anserini +test1297 Q0 17285311 3 17.263968 Anserini +test1297 Q0 17105605 4 17.263968 Anserini +test1297 Q0 16623322 5 16.944267 Anserini +test1297 Q0 20305901 6 16.511488 Anserini +test1297 Q0 15616855 7 16.040220 Anserini +test1297 Q0 15616865 8 15.696091 Anserini +test1297 Q0 17105602 9 15.661766 Anserini +test1297 Q0 19515902 10 15.574335 Anserini +test1297 Q0 20305900 11 14.808890 Anserini +test1297 Q0 3982774 12 14.413495 Anserini +test1297 Q0 12490600 13 14.230649 Anserini +test1297 Q0 12785597 14 13.956903 Anserini +test1297 Q0 16623320 15 13.759075 Anserini +test1297 Q0 18109815 16 13.596340 Anserini +test1297 Q0 17285309 17 13.472040 Anserini +test1297 Q0 9074660 18 13.406636 Anserini +test1297 Q0 15616863 19 13.191341 Anserini +test1297 Q0 2485358 20 13.143474 Anserini +test1297 Q0 15995805 21 13.068573 Anserini +test1297 Q0 17518562 22 13.034527 Anserini +test1297 Q0 15546618 23 13.032999 Anserini +test1297 Q0 5419769 24 12.864278 Anserini +test1297 Q0 13185492 25 12.726115 Anserini +test1297 Q0 11532247 26 12.699958 Anserini +test1297 Q0 6151418 27 12.652983 Anserini +test1297 Q0 15626947 28 12.618600 Anserini +test1297 Q0 3206354 29 12.473745 Anserini +test1297 Q0 15857671 30 12.457577 Anserini +test1298 Q0 7721176 1 20.395048 Anserini +test1298 Q0 7721177 2 19.992712 Anserini +test1298 Q0 16868675 3 18.010645 Anserini +test1298 Q0 16868680 4 17.185211 Anserini +test1298 Q0 14135934 5 15.906481 Anserini +test1298 Q0 8693130 6 15.518087 Anserini +test1298 Q0 8553808 7 15.287012 Anserini +test1298 Q0 6543002 8 14.202446 Anserini +test1298 Q0 19858309 9 14.107266 Anserini +test1298 Q0 18600196 10 14.093361 Anserini +test1298 Q0 6543007 11 13.963352 Anserini +test1298 Q0 110190 12 13.955089 Anserini +test1298 Q0 542896 13 13.864272 Anserini +test1298 Q0 5864479 14 13.819558 Anserini +test1298 Q0 9560147 15 13.587481 Anserini +test1298 Q0 542883 16 13.472197 Anserini +test1298 Q0 14647593 17 13.301409 Anserini +test1298 Q0 5864477 18 13.301409 Anserini +test1298 Q0 9631205 19 13.280046 Anserini +test1298 Q0 14647559 20 13.162842 Anserini +test1298 Q0 14647592 21 13.162842 Anserini +test1298 Q0 7727781 22 13.162842 Anserini +test1298 Q0 110172 23 13.162842 Anserini +test1298 Q0 7727783 24 13.162842 Anserini +test1298 Q0 4100469 25 12.918283 Anserini +test1298 Q0 119735 26 12.885248 Anserini +test1298 Q0 542909 27 12.558498 Anserini +test1298 Q0 3259834 28 12.449074 Anserini +test1298 Q0 9221880 29 12.290380 Anserini +test1298 Q0 16564972 30 12.203353 Anserini +test1299 Q0 2028098 1 18.663601 Anserini +test1299 Q0 4568549 2 17.947817 Anserini +test1299 Q0 18437150 3 15.950030 Anserini +test1299 Q0 10405982 4 13.505188 Anserini +test1299 Q0 18437149 5 13.072001 Anserini +test1299 Q0 4568545 6 12.559484 Anserini +test1299 Q0 19952064 7 12.020868 Anserini +test1299 Q0 19952066 8 11.922637 Anserini +test1299 Q0 4568547 9 11.881190 Anserini +test1299 Q0 17998278 10 11.626447 Anserini +test1299 Q0 5031671 11 11.490074 Anserini +test1299 Q0 19952065 12 11.393675 Anserini +test1299 Q0 4568536 13 11.359385 Anserini +test1299 Q0 20136139 14 11.269380 Anserini +test1299 Q0 5031680 15 11.266861 Anserini +test1299 Q0 6127099 16 11.243447 Anserini +test1299 Q0 4064092 17 11.212887 Anserini +test1299 Q0 2028095 18 11.212887 Anserini +test1299 Q0 11451419 19 11.190993 Anserini +test1299 Q0 2028094 20 11.181319 Anserini +test1299 Q0 16320466 21 11.146816 Anserini +test1299 Q0 11451421 22 11.136360 Anserini +test1299 Q0 5031682 23 11.115387 Anserini +test1299 Q0 5031676 24 11.031498 Anserini +test1299 Q0 4902692 25 11.015130 Anserini +test1299 Q0 4568541 26 10.909603 Anserini +test1299 Q0 4568538 27 10.879029 Anserini +test1299 Q0 5848883 28 10.877540 Anserini +test1299 Q0 2028096 29 10.866779 Anserini +test1299 Q0 7004461 30 10.763700 Anserini +test13 Q0 1614691 1 16.294550 Anserini +test13 Q0 1614710 2 16.169806 Anserini +test13 Q0 10107397 3 16.003963 Anserini +test13 Q0 10107410 4 15.913495 Anserini +test13 Q0 1614711 5 15.913495 Anserini +test13 Q0 17251548 6 15.887735 Anserini +test13 Q0 17251551 7 15.830583 Anserini +test13 Q0 11344180 8 15.797701 Anserini +test13 Q0 1614719 9 15.748627 Anserini +test13 Q0 14443651 10 15.596296 Anserini +test13 Q0 10281039 11 15.596296 Anserini +test13 Q0 1614712 12 15.382633 Anserini +test13 Q0 14443647 13 15.270537 Anserini +test13 Q0 1614706 14 15.166265 Anserini +test13 Q0 16203065 15 15.063496 Anserini +test13 Q0 10139559 16 15.063496 Anserini +test13 Q0 10139547 17 15.063496 Anserini +test13 Q0 1614688 18 15.024944 Anserini +test13 Q0 10281040 19 15.019064 Anserini +test13 Q0 10903025 20 14.998416 Anserini +test13 Q0 9784773 21 14.912266 Anserini +test13 Q0 12513223 22 14.744953 Anserini +test13 Q0 11344187 23 14.744953 Anserini +test13 Q0 5314484 24 14.660214 Anserini +test13 Q0 5314493 25 14.640013 Anserini +test13 Q0 11344175 26 14.635403 Anserini +test13 Q0 1614703 27 14.635403 Anserini +test13 Q0 19225520 28 14.527518 Anserini +test13 Q0 19225523 29 14.527518 Anserini +test13 Q0 1614738 30 14.374998 Anserini +test130 Q0 3343592 1 17.905638 Anserini +test130 Q0 4203941 2 16.451864 Anserini +test130 Q0 3760356 3 16.319132 Anserini +test130 Q0 19657701 4 15.987635 Anserini +test130 Q0 18489979 5 15.779331 Anserini +test130 Q0 20058235 6 15.731748 Anserini +test130 Q0 3760175 7 15.728439 Anserini +test130 Q0 12835191 8 15.450436 Anserini +test130 Q0 6786172 9 15.445267 Anserini +test130 Q0 17246347 10 15.339066 Anserini +test130 Q0 18519041 11 15.269580 Anserini +test130 Q0 6786165 12 15.155599 Anserini +test130 Q0 10680469 13 14.883061 Anserini +test130 Q0 6984345 14 14.804976 Anserini +test130 Q0 15948300 15 14.661206 Anserini +test130 Q0 7087466 16 14.631916 Anserini +test130 Q0 18518304 17 14.572197 Anserini +test130 Q0 6784579 18 14.548259 Anserini +test130 Q0 15948298 19 14.443541 Anserini +test130 Q0 3760220 20 14.374115 Anserini +test130 Q0 18489977 21 14.329676 Anserini +test130 Q0 18524553 22 14.260392 Anserini +test130 Q0 6841826 23 14.148594 Anserini +test130 Q0 17583717 24 14.110585 Anserini +test130 Q0 7491920 25 14.039600 Anserini +test130 Q0 6984366 26 14.030869 Anserini +test130 Q0 17292238 27 13.878607 Anserini +test130 Q0 14958218 28 13.797972 Anserini +test130 Q0 14958219 29 13.797972 Anserini +test130 Q0 11113959 30 13.773966 Anserini +test1300 Q0 6608441 1 16.978510 Anserini +test1300 Q0 3604602 2 16.880964 Anserini +test1300 Q0 20736177 3 16.444191 Anserini +test1300 Q0 20540004 4 16.422899 Anserini +test1300 Q0 10600812 5 16.399046 Anserini +test1300 Q0 547919 6 16.296989 Anserini +test1300 Q0 10600821 7 16.273170 Anserini +test1300 Q0 3276462 8 16.231098 Anserini +test1300 Q0 5618530 9 16.067152 Anserini +test1300 Q0 5725243 10 15.973417 Anserini +test1300 Q0 12048301 11 15.934144 Anserini +test1300 Q0 12048299 12 15.934144 Anserini +test1300 Q0 18343261 13 15.861113 Anserini +test1300 Q0 3126823 14 15.843409 Anserini +test1300 Q0 15648874 15 15.843409 Anserini +test1300 Q0 591531 16 15.838520 Anserini +test1300 Q0 5621453 17 15.825508 Anserini +test1300 Q0 17562339 18 15.812254 Anserini +test1300 Q0 18868165 19 15.803688 Anserini +test1300 Q0 558522 20 15.793351 Anserini +test1300 Q0 18868153 21 15.725952 Anserini +test1300 Q0 17562338 22 15.709384 Anserini +test1300 Q0 5725284 23 15.709072 Anserini +test1300 Q0 4999673 24 15.684135 Anserini +test1300 Q0 10838327 25 15.677679 Anserini +test1300 Q0 10838325 26 15.619999 Anserini +test1300 Q0 10758913 27 15.614428 Anserini +test1300 Q0 5643033 28 15.614428 Anserini +test1300 Q0 10838317 29 15.614428 Anserini +test1300 Q0 10582208 30 15.614428 Anserini +test1301 Q0 8173755 1 21.092255 Anserini +test1301 Q0 8173753 2 19.225433 Anserini +test1301 Q0 648759 3 18.122900 Anserini +test1301 Q0 1763452 4 16.133148 Anserini +test1301 Q0 1763459 5 16.133148 Anserini +test1301 Q0 13153657 6 15.965083 Anserini +test1301 Q0 5597056 7 15.178782 Anserini +test1301 Q0 5597053 8 14.865795 Anserini +test1301 Q0 10508773 9 14.315183 Anserini +test1301 Q0 20127031 10 13.966799 Anserini +test1301 Q0 4615074 11 12.935081 Anserini +test1301 Q0 20127030 12 12.835634 Anserini +test1301 Q0 3415258 13 12.782531 Anserini +test1301 Q0 5667648 14 12.448472 Anserini +test1301 Q0 5507548 15 12.396302 Anserini +test1301 Q0 2424492 16 12.319138 Anserini +test1301 Q0 10508762 17 12.308403 Anserini +test1301 Q0 19533277 18 12.294789 Anserini +test1301 Q0 10508774 19 12.174272 Anserini +test1301 Q0 10520423 20 12.048618 Anserini +test1301 Q0 2424452 21 11.926428 Anserini +test1301 Q0 20305713 22 11.899698 Anserini +test1301 Q0 3415239 23 11.722486 Anserini +test1301 Q0 16281718 24 11.478251 Anserini +test1301 Q0 5053143 25 11.308279 Anserini +test1301 Q0 9065386 26 11.283584 Anserini +test1301 Q0 19533275 27 11.268759 Anserini +test1301 Q0 6735460 28 11.268742 Anserini +test1301 Q0 503138 29 11.198984 Anserini +test1301 Q0 17161423 30 11.171694 Anserini +test1302 Q0 4702253 1 12.994358 Anserini +test1302 Q0 4130811 2 11.827739 Anserini +test1302 Q0 5920289 3 11.370666 Anserini +test1302 Q0 4130809 4 10.579672 Anserini +test1302 Q0 15212531 5 10.579672 Anserini +test1302 Q0 4130817 6 10.579672 Anserini +test1302 Q0 2180297 7 10.532473 Anserini +test1302 Q0 4130815 8 10.522662 Anserini +test1302 Q0 8681901 9 10.505680 Anserini +test1302 Q0 4775555 10 10.304951 Anserini +test1302 Q0 20766993 11 10.207332 Anserini +test1302 Q0 20766996 12 10.207332 Anserini +test1302 Q0 9636068 13 10.088050 Anserini +test1302 Q0 4702255 14 10.018856 Anserini +test1302 Q0 2068999 15 9.971334 Anserini +test1302 Q0 2894486 16 9.886949 Anserini +test1302 Q0 9945843 17 9.824609 Anserini +test1302 Q0 17210440 18 9.649738 Anserini +test1302 Q0 1016362 19 9.601419 Anserini +test1302 Q0 16808309 20 9.500851 Anserini +test1302 Q0 9636071 21 9.480125 Anserini +test1302 Q0 8705151 22 9.471344 Anserini +test1302 Q0 8705150 23 9.419126 Anserini +test1302 Q0 18475337 24 9.367612 Anserini +test1302 Q0 1661783 25 9.308649 Anserini +test1302 Q0 6613341 26 9.305635 Anserini +test1302 Q0 14758475 27 9.305635 Anserini +test1302 Q0 13436973 28 9.246853 Anserini +test1302 Q0 9959875 29 9.242783 Anserini +test1302 Q0 8625302 30 9.219045 Anserini +test1303 Q0 20991283 1 12.467161 Anserini +test1303 Q0 20991284 2 12.326223 Anserini +test1303 Q0 1583614 3 12.239316 Anserini +test1303 Q0 9159663 4 12.115840 Anserini +test1303 Q0 4709636 5 12.099574 Anserini +test1303 Q0 4645568 6 11.616961 Anserini +test1303 Q0 20172447 7 11.575458 Anserini +test1303 Q0 12021407 8 11.549029 Anserini +test1303 Q0 4709532 9 11.247623 Anserini +test1303 Q0 9194482 10 11.120155 Anserini +test1303 Q0 1719449 11 11.118311 Anserini +test1303 Q0 14960475 12 11.073038 Anserini +test1303 Q0 20172451 13 11.052815 Anserini +test1303 Q0 6519159 14 11.029039 Anserini +test1303 Q0 17126195 15 10.996460 Anserini +test1303 Q0 11820239 16 10.996423 Anserini +test1303 Q0 9216931 17 10.962934 Anserini +test1303 Q0 17095140 18 10.923956 Anserini +test1303 Q0 11820236 19 10.900990 Anserini +test1303 Q0 16014022 20 10.899803 Anserini +test1303 Q0 16014027 21 10.899803 Anserini +test1303 Q0 11087500 22 10.878382 Anserini +test1303 Q0 15004504 23 10.869772 Anserini +test1303 Q0 19458674 24 10.860799 Anserini +test1303 Q0 19458675 25 10.860799 Anserini +test1303 Q0 11820209 26 10.856480 Anserini +test1303 Q0 16600402 27 10.852606 Anserini +test1303 Q0 16965463 28 10.779585 Anserini +test1303 Q0 13551821 29 10.775721 Anserini +test1303 Q0 14174831 30 10.770184 Anserini +test1304 Q0 340299 1 12.038709 Anserini +test1304 Q0 3765296 2 11.816033 Anserini +test1304 Q0 12734168 3 11.206841 Anserini +test1304 Q0 18034081 4 10.586593 Anserini +test1304 Q0 17677296 5 10.552641 Anserini +test1304 Q0 8497079 6 10.271630 Anserini +test1304 Q0 13127685 7 10.130683 Anserini +test1304 Q0 15353955 8 10.059332 Anserini +test1304 Q0 15353967 9 10.020603 Anserini +test1304 Q0 17350318 10 9.936617 Anserini +test1304 Q0 4807728 11 9.738884 Anserini +test1304 Q0 6092136 12 9.653273 Anserini +test1304 Q0 6092138 13 9.653273 Anserini +test1304 Q0 392967 14 9.633925 Anserini +test1304 Q0 8833664 15 9.603817 Anserini +test1304 Q0 20540986 16 9.602532 Anserini +test1304 Q0 14652539 17 9.517162 Anserini +test1304 Q0 4807737 18 9.514826 Anserini +test1304 Q0 17031154 19 9.497144 Anserini +test1304 Q0 3270945 20 9.430888 Anserini +test1304 Q0 17558195 21 9.427839 Anserini +test1304 Q0 9268604 22 9.424288 Anserini +test1304 Q0 1663193 23 9.412200 Anserini +test1304 Q0 7711580 24 9.389466 Anserini +test1304 Q0 3270942 25 9.382035 Anserini +test1304 Q0 4620072 26 9.361564 Anserini +test1304 Q0 15686286 27 9.352172 Anserini +test1304 Q0 13754031 28 9.343779 Anserini +test1304 Q0 16160619 29 9.320435 Anserini +test1304 Q0 6512040 30 9.303813 Anserini +test1305 Q0 2436153 1 14.336802 Anserini +test1305 Q0 6236093 2 13.276005 Anserini +test1305 Q0 6236086 3 12.591887 Anserini +test1305 Q0 15362916 4 12.474640 Anserini +test1305 Q0 13434946 5 12.449593 Anserini +test1305 Q0 20684149 6 12.422636 Anserini +test1305 Q0 15992438 7 12.337095 Anserini +test1305 Q0 15473295 8 12.033249 Anserini +test1305 Q0 5771048 9 11.989492 Anserini +test1305 Q0 14749041 10 11.957255 Anserini +test1305 Q0 15992456 11 11.934556 Anserini +test1305 Q0 11544759 12 11.930436 Anserini +test1305 Q0 11544781 13 11.930436 Anserini +test1305 Q0 3990571 14 11.902660 Anserini +test1305 Q0 16014441 15 11.889245 Anserini +test1305 Q0 18759740 16 11.874753 Anserini +test1305 Q0 11887893 17 11.858087 Anserini +test1305 Q0 2436115 18 11.795776 Anserini +test1305 Q0 14469932 19 11.747180 Anserini +test1305 Q0 2436124 20 11.731475 Anserini +test1305 Q0 11545132 21 11.724557 Anserini +test1305 Q0 1840299 22 11.724557 Anserini +test1305 Q0 8805649 23 11.724552 Anserini +test1305 Q0 14469933 24 11.654450 Anserini +test1305 Q0 1840283 25 11.654450 Anserini +test1305 Q0 15992411 26 11.651501 Anserini +test1305 Q0 11545146 27 11.645920 Anserini +test1305 Q0 17261222 28 11.599934 Anserini +test1305 Q0 13328774 29 11.577785 Anserini +test1305 Q0 9918277 30 11.539780 Anserini +test1306 Q0 18394955 1 13.507411 Anserini +test1306 Q0 20176709 2 11.629034 Anserini +test1306 Q0 17191935 3 11.313778 Anserini +test1306 Q0 20176710 4 11.177843 Anserini +test1306 Q0 18832380 5 10.694962 Anserini +test1306 Q0 18829700 6 10.625507 Anserini +test1306 Q0 7932119 7 10.400291 Anserini +test1306 Q0 18816775 8 10.307215 Anserini +test1306 Q0 18829348 9 10.158854 Anserini +test1306 Q0 18829351 10 10.073834 Anserini +test1306 Q0 18827812 11 9.930217 Anserini +test1306 Q0 18564151 12 9.791395 Anserini +test1306 Q0 18827805 13 9.791395 Anserini +test1306 Q0 11244269 14 9.777444 Anserini +test1306 Q0 1496191 15 9.745211 Anserini +test1306 Q0 17191929 16 9.741335 Anserini +test1306 Q0 13595015 17 9.674987 Anserini +test1306 Q0 18827789 18 9.621689 Anserini +test1306 Q0 18041912 19 9.544434 Anserini +test1306 Q0 18041918 20 9.544434 Anserini +test1306 Q0 18821861 21 9.508844 Anserini +test1306 Q0 18779960 22 9.488292 Anserini +test1306 Q0 7082287 23 9.409667 Anserini +test1306 Q0 18041917 24 9.313478 Anserini +test1306 Q0 18829433 25 9.297101 Anserini +test1306 Q0 18827209 26 9.233941 Anserini +test1306 Q0 18829637 27 9.233941 Anserini +test1306 Q0 18827213 28 9.233941 Anserini +test1306 Q0 18825850 29 9.230536 Anserini +test1306 Q0 3734682 30 9.212961 Anserini +test1307 Q0 14297043 1 18.483868 Anserini +test1307 Q0 13754072 2 14.777908 Anserini +test1307 Q0 13754074 3 14.359873 Anserini +test1307 Q0 13754088 4 14.272335 Anserini +test1307 Q0 13754182 5 14.261724 Anserini +test1307 Q0 13754085 6 14.103402 Anserini +test1307 Q0 13754079 7 13.963149 Anserini +test1307 Q0 17043701 8 13.729408 Anserini +test1307 Q0 13754193 9 13.614259 Anserini +test1307 Q0 13754064 10 13.313296 Anserini +test1307 Q0 13754139 11 13.295933 Anserini +test1307 Q0 13754175 12 13.211802 Anserini +test1307 Q0 13754168 13 13.207478 Anserini +test1307 Q0 13754151 14 13.120338 Anserini +test1307 Q0 18982059 15 12.721341 Anserini +test1307 Q0 13754067 16 12.707764 Anserini +test1307 Q0 13754189 17 12.628615 Anserini +test1307 Q0 13754068 18 12.543182 Anserini +test1307 Q0 13754177 19 12.504699 Anserini +test1307 Q0 16982414 20 12.472383 Anserini +test1307 Q0 13754061 21 12.411140 Anserini +test1307 Q0 17719465 22 12.376242 Anserini +test1307 Q0 677684 23 12.261456 Anserini +test1307 Q0 9063497 24 12.102819 Anserini +test1307 Q0 13754060 25 12.098677 Anserini +test1307 Q0 13875163 26 12.058247 Anserini +test1307 Q0 17043708 27 11.801090 Anserini +test1307 Q0 677723 28 11.800207 Anserini +test1307 Q0 677724 29 11.749492 Anserini +test1307 Q0 17969495 30 11.747466 Anserini +test1308 Q0 10711652 1 12.115727 Anserini +test1308 Q0 3584827 2 12.084929 Anserini +test1308 Q0 19539906 3 11.549258 Anserini +test1308 Q0 3299507 4 11.007439 Anserini +test1308 Q0 5667659 5 10.905061 Anserini +test1308 Q0 17393211 6 10.903730 Anserini +test1308 Q0 15847993 7 10.375793 Anserini +test1308 Q0 4760491 8 10.375793 Anserini +test1308 Q0 5064589 9 10.213182 Anserini +test1308 Q0 2600262 10 10.182237 Anserini +test1308 Q0 17034222 11 10.138682 Anserini +test1308 Q0 15847994 12 10.060133 Anserini +test1308 Q0 17992068 13 10.027094 Anserini +test1308 Q0 18250024 14 10.009008 Anserini +test1308 Q0 9193468 15 9.889300 Anserini +test1308 Q0 18042935 16 9.796492 Anserini +test1308 Q0 18042923 17 9.796492 Anserini +test1308 Q0 8966035 18 9.780272 Anserini +test1308 Q0 1292377 19 9.756562 Anserini +test1308 Q0 15847990 20 9.756502 Anserini +test1308 Q0 15623435 21 9.698833 Anserini +test1308 Q0 17043534 22 9.693201 Anserini +test1308 Q0 19414761 23 9.607994 Anserini +test1308 Q0 6236735 24 9.607994 Anserini +test1308 Q0 12504884 25 9.574891 Anserini +test1308 Q0 2458587 26 9.554243 Anserini +test1308 Q0 18468289 27 9.537861 Anserini +test1308 Q0 20428020 28 9.531060 Anserini +test1308 Q0 19638587 29 9.524401 Anserini +test1308 Q0 358163 30 9.519608 Anserini +test1309 Q0 18608650 1 12.342394 Anserini +test1309 Q0 11933641 2 12.152430 Anserini +test1309 Q0 19950642 3 11.515073 Anserini +test1309 Q0 14706048 4 11.233301 Anserini +test1309 Q0 3170676 5 11.115799 Anserini +test1309 Q0 13181581 6 10.995854 Anserini +test1309 Q0 17758577 7 10.984671 Anserini +test1309 Q0 13248629 8 10.907876 Anserini +test1309 Q0 10833206 9 10.743264 Anserini +test1309 Q0 11949581 10 10.673510 Anserini +test1309 Q0 17326192 11 10.649630 Anserini +test1309 Q0 11330098 12 10.581962 Anserini +test1309 Q0 8016078 13 10.431635 Anserini +test1309 Q0 9932163 14 10.398169 Anserini +test1309 Q0 1033151 15 10.225595 Anserini +test1309 Q0 9560038 16 10.119705 Anserini +test1309 Q0 13804673 17 9.986927 Anserini +test1309 Q0 17007196 18 9.949715 Anserini +test1309 Q0 12152736 19 9.818014 Anserini +test1309 Q0 20747161 20 9.776662 Anserini +test1309 Q0 6284139 21 9.776662 Anserini +test1309 Q0 12222245 22 9.776662 Anserini +test1309 Q0 20747178 23 9.776662 Anserini +test1309 Q0 16857896 24 9.776662 Anserini +test1309 Q0 1124513 25 9.775229 Anserini +test1309 Q0 4164344 26 9.775229 Anserini +test1309 Q0 13601479 27 9.764230 Anserini +test1309 Q0 14711119 28 9.758640 Anserini +test1309 Q0 6619713 29 9.680996 Anserini +test1309 Q0 14752052 30 9.680996 Anserini +test131 Q0 853919 1 16.905794 Anserini +test131 Q0 2672739 2 16.820141 Anserini +test131 Q0 853934 3 16.598761 Anserini +test131 Q0 853927 4 15.815979 Anserini +test131 Q0 853928 5 15.771464 Anserini +test131 Q0 10310148 6 13.090254 Anserini +test131 Q0 15638834 7 12.996437 Anserini +test131 Q0 853916 8 12.856668 Anserini +test131 Q0 16690383 9 12.373497 Anserini +test131 Q0 15638836 10 12.283909 Anserini +test131 Q0 15877032 11 11.966305 Anserini +test131 Q0 853929 12 11.874472 Anserini +test131 Q0 6397850 13 11.783972 Anserini +test131 Q0 6397852 14 11.783972 Anserini +test131 Q0 5735001 15 11.742381 Anserini +test131 Q0 4438893 16 11.694891 Anserini +test131 Q0 20988724 17 11.693457 Anserini +test131 Q0 9951992 18 11.614682 Anserini +test131 Q0 12448579 19 11.599691 Anserini +test131 Q0 20988727 20 11.599691 Anserini +test131 Q0 8055631 21 11.560499 Anserini +test131 Q0 8055633 22 11.560499 Anserini +test131 Q0 853937 23 11.560499 Anserini +test131 Q0 5197034 24 11.534851 Anserini +test131 Q0 5734997 25 11.500099 Anserini +test131 Q0 16690377 26 11.483289 Anserini +test131 Q0 853917 27 11.483289 Anserini +test131 Q0 5197023 28 11.443289 Anserini +test131 Q0 20690317 29 11.357876 Anserini +test131 Q0 8814547 30 11.355808 Anserini +test1310 Q0 6501689 1 22.280199 Anserini +test1310 Q0 6501698 2 21.924061 Anserini +test1310 Q0 19146743 3 18.667982 Anserini +test1310 Q0 6501693 4 18.039618 Anserini +test1310 Q0 6501694 5 17.395433 Anserini +test1310 Q0 3614066 6 15.816445 Anserini +test1310 Q0 6501697 7 15.028468 Anserini +test1310 Q0 12487143 8 14.660069 Anserini +test1310 Q0 6501691 9 14.416328 Anserini +test1310 Q0 6501692 10 14.416328 Anserini +test1310 Q0 6501695 11 14.416328 Anserini +test1310 Q0 5460919 12 14.399243 Anserini +test1310 Q0 6501690 13 14.305863 Anserini +test1310 Q0 6501696 14 14.305863 Anserini +test1310 Q0 17159677 15 13.949236 Anserini +test1310 Q0 8970050 16 13.599974 Anserini +test1310 Q0 11156131 17 13.449736 Anserini +test1310 Q0 11156132 18 13.374299 Anserini +test1310 Q0 18768921 19 13.160499 Anserini +test1310 Q0 14935464 20 12.466629 Anserini +test1310 Q0 5937202 21 12.419166 Anserini +test1310 Q0 12687472 22 12.134864 Anserini +test1310 Q0 6821093 23 11.976840 Anserini +test1310 Q0 16970940 24 11.970546 Anserini +test1310 Q0 4183687 25 11.876657 Anserini +test1310 Q0 14935470 26 11.876657 Anserini +test1310 Q0 15072193 27 11.854916 Anserini +test1310 Q0 18922281 28 11.560708 Anserini +test1310 Q0 16970949 29 11.235362 Anserini +test1310 Q0 16970938 30 11.191593 Anserini +test1311 Q0 65374 1 20.100992 Anserini +test1311 Q0 18911910 2 20.010788 Anserini +test1311 Q0 283245 3 19.806746 Anserini +test1311 Q0 283191 4 19.640001 Anserini +test1311 Q0 174205 5 19.275206 Anserini +test1311 Q0 20222710 6 19.016512 Anserini +test1311 Q0 314668 7 18.928379 Anserini +test1311 Q0 76290 8 18.857525 Anserini +test1311 Q0 283246 9 18.557783 Anserini +test1311 Q0 4612121 10 18.492359 Anserini +test1311 Q0 76318 11 18.429977 Anserini +test1311 Q0 5010226 12 18.117554 Anserini +test1311 Q0 4612130 13 17.660913 Anserini +test1311 Q0 18911750 14 17.633448 Anserini +test1311 Q0 671268 15 17.459314 Anserini +test1311 Q0 11877139 16 17.440660 Anserini +test1311 Q0 11877209 17 17.440660 Anserini +test1311 Q0 12368014 18 17.073050 Anserini +test1311 Q0 120508 19 16.951775 Anserini +test1311 Q0 76276 20 16.950115 Anserini +test1311 Q0 9529405 21 16.881771 Anserini +test1311 Q0 174206 22 16.861210 Anserini +test1311 Q0 778567 23 16.782011 Anserini +test1311 Q0 2569541 24 16.781319 Anserini +test1311 Q0 3553721 25 16.780577 Anserini +test1311 Q0 283190 26 16.757168 Anserini +test1311 Q0 11916561 27 16.662275 Anserini +test1311 Q0 280054 28 16.613361 Anserini +test1311 Q0 5535080 29 16.596310 Anserini +test1311 Q0 308625 30 16.582724 Anserini +test1312 Q0 17834738 1 26.459036 Anserini +test1312 Q0 17834736 2 25.822628 Anserini +test1312 Q0 17834744 3 25.724552 Anserini +test1312 Q0 3839398 4 25.552559 Anserini +test1312 Q0 6019488 5 25.360647 Anserini +test1312 Q0 17834748 6 25.167881 Anserini +test1312 Q0 3839392 7 24.947731 Anserini +test1312 Q0 872012 8 24.539219 Anserini +test1312 Q0 17834742 9 24.338009 Anserini +test1312 Q0 601435 10 23.586195 Anserini +test1312 Q0 10134032 11 23.420977 Anserini +test1312 Q0 17024072 12 23.129803 Anserini +test1312 Q0 4723396 13 23.013033 Anserini +test1312 Q0 16632251 14 22.902664 Anserini +test1312 Q0 16632188 15 22.902664 Anserini +test1312 Q0 2753608 16 22.852695 Anserini +test1312 Q0 17834739 17 22.797325 Anserini +test1312 Q0 17834741 18 22.779640 Anserini +test1312 Q0 200810 19 22.687393 Anserini +test1312 Q0 3839399 20 22.534992 Anserini +test1312 Q0 3839400 21 22.342335 Anserini +test1312 Q0 6516312 22 22.304558 Anserini +test1312 Q0 6421948 23 21.404625 Anserini +test1312 Q0 2744192 24 21.377419 Anserini +test1312 Q0 3519601 25 21.307631 Anserini +test1312 Q0 19070986 26 21.158964 Anserini +test1312 Q0 17834745 27 21.158890 Anserini +test1312 Q0 4586613 28 20.992828 Anserini +test1312 Q0 17024094 29 20.949642 Anserini +test1312 Q0 3839397 30 20.924261 Anserini +test1313 Q0 3273086 1 11.649176 Anserini +test1313 Q0 20450190 2 10.785365 Anserini +test1313 Q0 2181573 3 10.123340 Anserini +test1313 Q0 3273092 4 10.097233 Anserini +test1313 Q0 20450186 5 10.026662 Anserini +test1313 Q0 3090402 6 9.977425 Anserini +test1313 Q0 1128130 7 9.938355 Anserini +test1313 Q0 2199908 8 9.784927 Anserini +test1313 Q0 9009713 9 9.718711 Anserini +test1313 Q0 3090401 10 9.651694 Anserini +test1313 Q0 2775345 11 9.626381 Anserini +test1313 Q0 17899 12 9.554042 Anserini +test1313 Q0 4050730 13 9.409042 Anserini +test1313 Q0 3090387 14 9.402292 Anserini +test1313 Q0 2299875 15 9.370060 Anserini +test1313 Q0 20440889 16 9.370060 Anserini +test1313 Q0 20450188 17 9.289965 Anserini +test1313 Q0 19825232 18 9.246855 Anserini +test1313 Q0 10886400 19 9.230471 Anserini +test1313 Q0 5528395 20 9.200951 Anserini +test1313 Q0 19825231 21 9.192470 Anserini +test1313 Q0 20477945 22 9.137033 Anserini +test1313 Q0 7965806 23 9.107904 Anserini +test1313 Q0 11319756 24 9.096415 Anserini +test1313 Q0 13004247 25 9.050689 Anserini +test1313 Q0 13584364 26 9.047301 Anserini +test1313 Q0 16090600 27 9.040169 Anserini +test1313 Q0 4869981 28 9.040169 Anserini +test1313 Q0 19202486 29 9.019991 Anserini +test1313 Q0 1533578 30 9.019991 Anserini +test1314 Q0 19792370 1 12.069520 Anserini +test1314 Q0 20726862 2 10.857783 Anserini +test1314 Q0 12798730 3 10.356107 Anserini +test1314 Q0 20056170 4 10.328479 Anserini +test1314 Q0 10722601 5 9.921232 Anserini +test1314 Q0 2785788 6 9.896908 Anserini +test1314 Q0 19745625 7 9.854515 Anserini +test1314 Q0 18661172 8 9.837770 Anserini +test1314 Q0 19745627 9 9.769558 Anserini +test1314 Q0 20056166 10 9.761318 Anserini +test1314 Q0 18385725 11 9.761318 Anserini +test1314 Q0 19532593 12 9.723660 Anserini +test1314 Q0 17843406 13 9.699548 Anserini +test1314 Q0 20056189 14 9.674136 Anserini +test1314 Q0 8074745 15 9.618799 Anserini +test1314 Q0 20705460 16 9.537060 Anserini +test1314 Q0 20287947 17 9.528184 Anserini +test1314 Q0 16888065 18 9.513888 Anserini +test1314 Q0 9238401 19 9.454015 Anserini +test1314 Q0 5693042 20 9.383670 Anserini +test1314 Q0 281142 21 9.379188 Anserini +test1314 Q0 12239180 22 9.362784 Anserini +test1314 Q0 15986146 23 9.347743 Anserini +test1314 Q0 16774791 24 9.220016 Anserini +test1314 Q0 20056188 25 9.157375 Anserini +test1314 Q0 8784034 26 9.157375 Anserini +test1314 Q0 19768919 27 9.122262 Anserini +test1314 Q0 9238396 28 9.098461 Anserini +test1314 Q0 19768920 29 9.074656 Anserini +test1314 Q0 20512243 30 9.043421 Anserini +test1315 Q0 978487 1 9.512863 Anserini +test1315 Q0 983954 2 9.280611 Anserini +test1315 Q0 7602728 3 9.157416 Anserini +test1315 Q0 18335258 4 9.004834 Anserini +test1315 Q0 14184800 5 8.936717 Anserini +test1315 Q0 4675577 6 8.892389 Anserini +test1315 Q0 4653198 7 8.892073 Anserini +test1315 Q0 9687983 8 8.791597 Anserini +test1315 Q0 10679944 9 8.727539 Anserini +test1315 Q0 10679928 10 8.727539 Anserini +test1315 Q0 19863415 11 8.678362 Anserini +test1315 Q0 6246306 12 8.604977 Anserini +test1315 Q0 18529578 13 8.578488 Anserini +test1315 Q0 18529577 14 8.578488 Anserini +test1315 Q0 3854020 15 8.577503 Anserini +test1315 Q0 19864932 16 8.523571 Anserini +test1315 Q0 20385966 17 8.368238 Anserini +test1315 Q0 277760 18 8.360790 Anserini +test1315 Q0 12263213 19 8.328188 Anserini +test1315 Q0 6946327 20 8.327456 Anserini +test1315 Q0 10164448 21 8.294853 Anserini +test1315 Q0 15574311 22 8.287768 Anserini +test1315 Q0 14077034 23 8.287405 Anserini +test1315 Q0 14077036 24 8.287405 Anserini +test1315 Q0 12202766 25 8.287405 Anserini +test1315 Q0 17697645 26 8.279351 Anserini +test1315 Q0 975122 27 8.270728 Anserini +test1315 Q0 974784 28 8.265121 Anserini +test1315 Q0 13881947 29 8.261320 Anserini +test1315 Q0 9830389 30 8.259230 Anserini +test1316 Q0 8251163 1 15.724619 Anserini +test1316 Q0 3356660 2 15.148097 Anserini +test1316 Q0 644684 3 15.115729 Anserini +test1316 Q0 1820783 4 15.043601 Anserini +test1316 Q0 644683 5 15.027332 Anserini +test1316 Q0 1820788 6 14.781712 Anserini +test1316 Q0 644700 7 14.553465 Anserini +test1316 Q0 650677 8 14.391769 Anserini +test1316 Q0 644686 9 14.013969 Anserini +test1316 Q0 1820785 10 13.948084 Anserini +test1316 Q0 644677 11 13.786901 Anserini +test1316 Q0 7294144 12 13.659236 Anserini +test1316 Q0 644698 13 13.566707 Anserini +test1316 Q0 1820792 14 13.498931 Anserini +test1316 Q0 644685 15 13.427249 Anserini +test1316 Q0 19223306 16 13.403696 Anserini +test1316 Q0 16713650 17 13.402827 Anserini +test1316 Q0 1820790 18 13.337772 Anserini +test1316 Q0 644694 19 13.198133 Anserini +test1316 Q0 17605924 20 13.169046 Anserini +test1316 Q0 1424574 21 13.059197 Anserini +test1316 Q0 220011 22 13.028706 Anserini +test1316 Q0 10857084 23 12.893567 Anserini +test1316 Q0 644688 24 12.866686 Anserini +test1316 Q0 644676 25 12.828074 Anserini +test1316 Q0 13543753 26 12.800340 Anserini +test1316 Q0 6105241 27 12.725748 Anserini +test1316 Q0 12257789 28 12.722123 Anserini +test1316 Q0 644673 29 12.681144 Anserini +test1316 Q0 644651 30 12.659637 Anserini +test1317 Q0 8533086 1 15.662093 Anserini +test1317 Q0 8533090 2 14.663294 Anserini +test1317 Q0 3643614 3 14.253359 Anserini +test1317 Q0 5239877 4 14.095223 Anserini +test1317 Q0 3643667 5 14.054545 Anserini +test1317 Q0 3643618 6 13.945980 Anserini +test1317 Q0 3643615 7 13.314306 Anserini +test1317 Q0 3643666 8 13.133944 Anserini +test1317 Q0 3643613 9 13.023784 Anserini +test1317 Q0 3643616 10 12.885742 Anserini +test1317 Q0 1722120 11 12.875964 Anserini +test1317 Q0 4699045 12 12.629103 Anserini +test1317 Q0 2996932 13 12.489225 Anserini +test1317 Q0 3643641 14 12.473929 Anserini +test1317 Q0 4699041 15 12.408639 Anserini +test1317 Q0 4699043 16 12.250589 Anserini +test1317 Q0 2213658 17 12.229234 Anserini +test1317 Q0 3643660 18 12.120285 Anserini +test1317 Q0 11200819 19 12.061331 Anserini +test1317 Q0 18688655 20 11.877563 Anserini +test1317 Q0 6356714 21 11.875982 Anserini +test1317 Q0 12137418 22 11.853405 Anserini +test1317 Q0 10713510 23 11.813999 Anserini +test1317 Q0 4699042 24 11.785810 Anserini +test1317 Q0 4699040 25 11.661964 Anserini +test1317 Q0 8763443 26 11.629880 Anserini +test1317 Q0 1722114 27 11.589727 Anserini +test1317 Q0 6074807 28 11.579467 Anserini +test1317 Q0 8109664 29 11.550964 Anserini +test1317 Q0 3643655 30 11.536519 Anserini +test1318 Q0 14816233 1 14.841766 Anserini +test1318 Q0 15833681 2 14.360600 Anserini +test1318 Q0 4008718 3 13.147515 Anserini +test1318 Q0 4008749 4 13.147515 Anserini +test1318 Q0 79159 5 13.106873 Anserini +test1318 Q0 79041 6 13.106873 Anserini +test1318 Q0 4402421 7 12.971466 Anserini +test1318 Q0 3622083 8 12.486876 Anserini +test1318 Q0 14273450 9 12.383915 Anserini +test1318 Q0 2754121 10 12.239270 Anserini +test1318 Q0 262305 11 11.991728 Anserini +test1318 Q0 3723802 12 11.710359 Anserini +test1318 Q0 1370418 13 11.694072 Anserini +test1318 Q0 11110364 14 11.658978 Anserini +test1318 Q0 720282 15 11.510058 Anserini +test1318 Q0 19446696 16 11.379862 Anserini +test1318 Q0 19446699 17 11.379862 Anserini +test1318 Q0 1394782 18 11.345459 Anserini +test1318 Q0 19930854 19 11.344023 Anserini +test1318 Q0 19930855 20 11.344023 Anserini +test1318 Q0 4821197 21 11.312340 Anserini +test1318 Q0 6762950 22 11.299582 Anserini +test1318 Q0 7272519 23 11.049037 Anserini +test1318 Q0 73611 24 10.976858 Anserini +test1318 Q0 3723809 25 10.938656 Anserini +test1318 Q0 6106718 26 10.878120 Anserini +test1318 Q0 11323494 27 10.815643 Anserini +test1318 Q0 11388902 28 10.815643 Anserini +test1318 Q0 11388904 29 10.815643 Anserini +test1318 Q0 11323479 30 10.812333 Anserini +test1319 Q0 10178291 1 13.193887 Anserini +test1319 Q0 10033729 2 12.948877 Anserini +test1319 Q0 14217621 3 12.768422 Anserini +test1319 Q0 17162836 4 12.407291 Anserini +test1319 Q0 2209482 5 12.248058 Anserini +test1319 Q0 7141241 6 12.234215 Anserini +test1319 Q0 9131897 7 12.214403 Anserini +test1319 Q0 18137426 8 12.084246 Anserini +test1319 Q0 12404954 9 11.880234 Anserini +test1319 Q0 7037339 10 11.764853 Anserini +test1319 Q0 10018950 11 11.617517 Anserini +test1319 Q0 8208734 12 11.596188 Anserini +test1319 Q0 15773491 13 11.374528 Anserini +test1319 Q0 12695230 14 11.296124 Anserini +test1319 Q0 17680132 15 11.292136 Anserini +test1319 Q0 14267940 16 11.289974 Anserini +test1319 Q0 17720565 17 11.224342 Anserini +test1319 Q0 10178286 18 11.207906 Anserini +test1319 Q0 4013956 19 11.207397 Anserini +test1319 Q0 12189714 20 11.187651 Anserini +test1319 Q0 9131896 21 11.157005 Anserini +test1319 Q0 16069362 22 11.107830 Anserini +test1319 Q0 20466117 23 11.107741 Anserini +test1319 Q0 11747635 24 11.103598 Anserini +test1319 Q0 838976 25 11.072857 Anserini +test1319 Q0 7211836 26 11.069184 Anserini +test1319 Q0 18704705 27 11.068781 Anserini +test1319 Q0 6469901 28 11.018930 Anserini +test1319 Q0 4692545 29 10.999508 Anserini +test1319 Q0 15891979 30 10.998959 Anserini +test132 Q0 20462726 1 12.377594 Anserini +test132 Q0 5127715 2 9.516935 Anserini +test132 Q0 15783891 3 7.943384 Anserini +test132 Q0 20545644 4 7.466010 Anserini +test132 Q0 3712260 5 7.410729 Anserini +test132 Q0 18270502 6 7.278693 Anserini +test132 Q0 1380563 7 7.242164 Anserini +test132 Q0 9764388 8 7.198660 Anserini +test132 Q0 5099312 9 7.107994 Anserini +test132 Q0 21010142 10 7.074114 Anserini +test132 Q0 21010162 11 7.073392 Anserini +test132 Q0 14148490 12 7.066182 Anserini +test132 Q0 20710395 13 7.058816 Anserini +test132 Q0 5836814 14 7.033389 Anserini +test132 Q0 15003815 15 6.998829 Anserini +test132 Q0 3874150 16 6.983512 Anserini +test132 Q0 3971323 17 6.983512 Anserini +test132 Q0 125526 18 6.974241 Anserini +test132 Q0 7373099 19 6.962247 Anserini +test132 Q0 12191484 20 6.932837 Anserini +test132 Q0 14098183 21 6.921009 Anserini +test132 Q0 12172545 22 6.920949 Anserini +test132 Q0 184654 23 6.920949 Anserini +test132 Q0 1814983 24 6.920949 Anserini +test132 Q0 9936371 25 6.883054 Anserini +test132 Q0 17981702 26 6.883054 Anserini +test132 Q0 17467692 27 6.880336 Anserini +test132 Q0 2708428 28 6.880336 Anserini +test132 Q0 8878696 29 6.880336 Anserini +test132 Q0 3873489 30 6.880336 Anserini +test1320 Q0 4461966 1 12.877728 Anserini +test1320 Q0 5044512 2 12.671858 Anserini +test1320 Q0 3569302 3 12.416053 Anserini +test1320 Q0 2640180 4 12.185661 Anserini +test1320 Q0 3194702 5 12.095474 Anserini +test1320 Q0 1918958 6 12.022466 Anserini +test1320 Q0 13384645 7 11.898436 Anserini +test1320 Q0 8335688 8 11.839732 Anserini +test1320 Q0 9164015 9 11.837498 Anserini +test1320 Q0 6236008 10 11.806043 Anserini +test1320 Q0 8274007 11 11.772343 Anserini +test1320 Q0 16524107 12 11.732622 Anserini +test1320 Q0 1449476 13 11.702785 Anserini +test1320 Q0 13338300 14 11.691705 Anserini +test1320 Q0 8884004 15 11.627900 Anserini +test1320 Q0 3380473 16 11.626308 Anserini +test1320 Q0 14217617 17 11.603415 Anserini +test1320 Q0 16324214 18 11.543503 Anserini +test1320 Q0 20163718 19 11.485627 Anserini +test1320 Q0 7168954 20 11.456923 Anserini +test1320 Q0 786934 21 11.456862 Anserini +test1320 Q0 19075239 22 11.441046 Anserini +test1320 Q0 388658 23 11.424438 Anserini +test1320 Q0 18720002 24 11.418767 Anserini +test1320 Q0 8217949 25 11.378655 Anserini +test1320 Q0 17031474 26 11.349198 Anserini +test1320 Q0 16627021 27 11.343103 Anserini +test1320 Q0 3143850 28 11.339048 Anserini +test1320 Q0 17301323 29 11.284558 Anserini +test1320 Q0 16175440 30 11.279342 Anserini +test1321 Q0 1592254 1 13.047189 Anserini +test1321 Q0 1592261 2 11.755700 Anserini +test1321 Q0 1592253 3 11.600748 Anserini +test1321 Q0 2930670 4 11.501845 Anserini +test1321 Q0 20270141 5 11.308450 Anserini +test1321 Q0 13594222 6 10.605742 Anserini +test1321 Q0 1592257 7 10.596078 Anserini +test1321 Q0 14448105 8 10.516607 Anserini +test1321 Q0 9513241 9 10.452656 Anserini +test1321 Q0 13594223 10 10.325852 Anserini +test1321 Q0 112504 11 10.244127 Anserini +test1321 Q0 3541049 12 10.168969 Anserini +test1321 Q0 10998580 13 10.063034 Anserini +test1321 Q0 9763869 14 10.015463 Anserini +test1321 Q0 13637867 15 9.858965 Anserini +test1321 Q0 16938758 16 9.560132 Anserini +test1321 Q0 18161267 17 9.488232 Anserini +test1321 Q0 9763870 18 9.469323 Anserini +test1321 Q0 17667838 19 9.423190 Anserini +test1321 Q0 20270145 20 9.356274 Anserini +test1321 Q0 20270138 21 9.356274 Anserini +test1321 Q0 17260667 22 9.338528 Anserini +test1321 Q0 19907524 23 9.322995 Anserini +test1321 Q0 19042337 24 9.309945 Anserini +test1321 Q0 1592259 25 9.309945 Anserini +test1321 Q0 20270139 26 9.292620 Anserini +test1321 Q0 20270142 27 9.252490 Anserini +test1321 Q0 20255627 28 9.252490 Anserini +test1321 Q0 20270143 29 9.212868 Anserini +test1321 Q0 20358893 30 9.169401 Anserini +test1322 Q0 5624365 1 13.192430 Anserini +test1322 Q0 1916929 2 12.939387 Anserini +test1322 Q0 5624371 3 12.315471 Anserini +test1322 Q0 14282833 4 12.199444 Anserini +test1322 Q0 1916915 5 12.156837 Anserini +test1322 Q0 338125 6 12.051229 Anserini +test1322 Q0 14282834 7 12.007357 Anserini +test1322 Q0 1916946 8 11.958342 Anserini +test1322 Q0 10578370 9 11.769637 Anserini +test1322 Q0 5624375 10 11.672337 Anserini +test1322 Q0 20545560 11 11.663361 Anserini +test1322 Q0 20632545 12 11.633422 Anserini +test1322 Q0 1916924 13 11.461249 Anserini +test1322 Q0 5624361 14 11.385201 Anserini +test1322 Q0 20632550 15 11.292418 Anserini +test1322 Q0 13908739 16 11.289704 Anserini +test1322 Q0 5624369 17 11.282853 Anserini +test1322 Q0 20632556 18 11.268419 Anserini +test1322 Q0 20632539 19 11.268419 Anserini +test1322 Q0 17252475 20 11.154036 Anserini +test1322 Q0 15601674 21 11.143326 Anserini +test1322 Q0 20632554 22 11.142004 Anserini +test1322 Q0 12762228 23 10.962066 Anserini +test1322 Q0 14949783 24 10.833256 Anserini +test1322 Q0 5994966 25 10.763680 Anserini +test1322 Q0 1916948 26 10.645555 Anserini +test1322 Q0 10578366 27 10.645555 Anserini +test1322 Q0 11302625 28 10.522364 Anserini +test1322 Q0 9980517 29 10.398790 Anserini +test1322 Q0 3598217 30 10.395029 Anserini +test1323 Q0 3060307 1 16.325663 Anserini +test1323 Q0 694154 2 16.016624 Anserini +test1323 Q0 639655 3 15.954302 Anserini +test1323 Q0 16876830 4 15.804081 Anserini +test1323 Q0 13447366 5 15.756917 Anserini +test1323 Q0 12007872 6 15.555649 Anserini +test1323 Q0 730619 7 15.380371 Anserini +test1323 Q0 10276300 8 15.213383 Anserini +test1323 Q0 2460999 9 15.035023 Anserini +test1323 Q0 9859332 10 15.029839 Anserini +test1323 Q0 11513354 11 15.005016 Anserini +test1323 Q0 16876849 12 14.959927 Anserini +test1323 Q0 4919167 13 14.935742 Anserini +test1323 Q0 699989 14 14.852812 Anserini +test1323 Q0 16876837 15 14.766205 Anserini +test1323 Q0 1485898 16 14.762193 Anserini +test1323 Q0 13447055 17 14.714493 Anserini +test1323 Q0 2460945 18 14.673437 Anserini +test1323 Q0 12007906 19 14.649348 Anserini +test1323 Q0 208409 20 14.646448 Anserini +test1323 Q0 1489813 21 14.626750 Anserini +test1323 Q0 12624652 22 14.486803 Anserini +test1323 Q0 17732281 23 14.479927 Anserini +test1323 Q0 12007842 24 14.419939 Anserini +test1323 Q0 12007918 25 14.419939 Anserini +test1323 Q0 12254281 26 14.411982 Anserini +test1323 Q0 402276 27 14.392010 Anserini +test1323 Q0 1731038 28 14.328265 Anserini +test1323 Q0 12007888 29 14.316149 Anserini +test1323 Q0 4919173 30 14.249727 Anserini +test1324 Q0 7122193 1 13.978976 Anserini +test1324 Q0 16655663 2 12.450174 Anserini +test1324 Q0 16655665 3 12.191239 Anserini +test1324 Q0 13850174 4 11.873346 Anserini +test1324 Q0 2709744 5 11.389763 Anserini +test1324 Q0 10245942 6 11.324213 Anserini +test1324 Q0 18604727 7 11.172230 Anserini +test1324 Q0 10245943 8 11.154421 Anserini +test1324 Q0 4365047 9 11.071523 Anserini +test1324 Q0 7012159 10 11.033861 Anserini +test1324 Q0 19312404 11 11.005926 Anserini +test1324 Q0 19312408 12 11.005926 Anserini +test1324 Q0 8158432 13 10.934505 Anserini +test1324 Q0 13081723 14 10.934505 Anserini +test1324 Q0 16116381 15 10.922776 Anserini +test1324 Q0 1443864 16 10.801228 Anserini +test1324 Q0 3482867 17 10.754078 Anserini +test1324 Q0 18585670 18 10.690479 Anserini +test1324 Q0 18156774 19 10.680462 Anserini +test1324 Q0 16058319 20 10.635908 Anserini +test1324 Q0 16058320 21 10.635908 Anserini +test1324 Q0 15677155 22 10.556344 Anserini +test1324 Q0 18840059 23 10.549431 Anserini +test1324 Q0 8037794 24 10.351347 Anserini +test1324 Q0 16116378 25 10.336862 Anserini +test1324 Q0 12328339 26 10.323813 Anserini +test1324 Q0 1660062 27 10.299289 Anserini +test1324 Q0 18840072 28 10.288355 Anserini +test1324 Q0 13975841 29 10.256887 Anserini +test1324 Q0 12910898 30 10.192711 Anserini +test1325 Q0 18436675 1 14.594513 Anserini +test1325 Q0 18436684 2 14.594513 Anserini +test1325 Q0 9245490 3 13.435909 Anserini +test1325 Q0 18436683 4 13.098379 Anserini +test1325 Q0 18436678 5 12.442650 Anserini +test1325 Q0 18436682 6 11.907598 Anserini +test1325 Q0 20137574 7 11.031399 Anserini +test1325 Q0 18376550 8 10.941652 Anserini +test1325 Q0 7273955 9 10.569372 Anserini +test1325 Q0 18436680 10 10.569372 Anserini +test1325 Q0 18678026 11 10.569372 Anserini +test1325 Q0 18678021 12 10.458109 Anserini +test1325 Q0 18436677 13 10.397383 Anserini +test1325 Q0 12538914 14 10.142279 Anserini +test1325 Q0 19559311 15 9.653194 Anserini +test1325 Q0 16145542 16 9.280524 Anserini +test1325 Q0 18436676 17 9.154718 Anserini +test1325 Q0 15251366 18 9.154718 Anserini +test1325 Q0 18436681 19 9.154718 Anserini +test1325 Q0 15936963 20 9.154718 Anserini +test1325 Q0 19927088 21 9.154718 Anserini +test1325 Q0 2291613 22 9.075538 Anserini +test1325 Q0 16239531 23 9.067144 Anserini +test1325 Q0 10736537 24 9.057322 Anserini +test1325 Q0 7192480 25 9.057322 Anserini +test1325 Q0 18436679 26 9.057322 Anserini +test1325 Q0 10718581 27 9.057322 Anserini +test1325 Q0 6977697 28 9.034946 Anserini +test1325 Q0 20229619 29 9.021841 Anserini +test1325 Q0 7308336 30 8.961975 Anserini +test1326 Q0 8147654 1 24.105215 Anserini +test1326 Q0 718982 2 23.801117 Anserini +test1326 Q0 718989 3 23.376839 Anserini +test1326 Q0 5989505 4 22.402315 Anserini +test1326 Q0 718930 5 22.292301 Anserini +test1326 Q0 718974 6 22.192881 Anserini +test1326 Q0 5989559 7 21.765308 Anserini +test1326 Q0 718929 8 21.592896 Anserini +test1326 Q0 718983 9 21.144009 Anserini +test1326 Q0 17604547 10 21.059898 Anserini +test1326 Q0 718975 11 20.753870 Anserini +test1326 Q0 5989506 12 20.691343 Anserini +test1326 Q0 718984 13 20.423878 Anserini +test1326 Q0 718990 14 20.302515 Anserini +test1326 Q0 5989555 15 20.231388 Anserini +test1326 Q0 718991 16 19.932629 Anserini +test1326 Q0 15900543 17 19.716265 Anserini +test1326 Q0 11780296 18 19.613571 Anserini +test1326 Q0 11780300 19 19.613571 Anserini +test1326 Q0 8147653 20 19.597612 Anserini +test1326 Q0 5989561 21 19.589531 Anserini +test1326 Q0 718996 22 19.485277 Anserini +test1326 Q0 13293646 23 19.459951 Anserini +test1326 Q0 16249354 24 19.373167 Anserini +test1326 Q0 718981 25 19.288761 Anserini +test1326 Q0 5960034 26 19.172415 Anserini +test1326 Q0 5989503 27 19.065668 Anserini +test1326 Q0 1793663 28 18.988525 Anserini +test1326 Q0 5960038 29 18.970268 Anserini +test1326 Q0 718986 30 18.927755 Anserini +test1327 Q0 12531392 1 15.782211 Anserini +test1327 Q0 9427262 2 15.606091 Anserini +test1327 Q0 11882383 3 15.580888 Anserini +test1327 Q0 18513575 4 15.460227 Anserini +test1327 Q0 18513572 5 15.392296 Anserini +test1327 Q0 4263254 6 15.241297 Anserini +test1327 Q0 17668194 7 15.030477 Anserini +test1327 Q0 12797578 8 14.859436 Anserini +test1327 Q0 19892944 9 14.758243 Anserini +test1327 Q0 2839186 10 14.319422 Anserini +test1327 Q0 6716287 11 14.312407 Anserini +test1327 Q0 16432269 12 14.262316 Anserini +test1327 Q0 7666117 13 14.145723 Anserini +test1327 Q0 18475577 14 14.137495 Anserini +test1327 Q0 19692311 15 14.093577 Anserini +test1327 Q0 12362744 16 14.033594 Anserini +test1327 Q0 16588630 17 14.033594 Anserini +test1327 Q0 9690336 18 14.028524 Anserini +test1327 Q0 20798304 19 14.004826 Anserini +test1327 Q0 20487422 20 13.920936 Anserini +test1327 Q0 15529963 21 13.888443 Anserini +test1327 Q0 17953155 22 13.881100 Anserini +test1327 Q0 17668192 23 13.841806 Anserini +test1327 Q0 12575739 24 13.771065 Anserini +test1327 Q0 13452039 25 13.759443 Anserini +test1327 Q0 18475580 26 13.723657 Anserini +test1327 Q0 14731083 27 13.708635 Anserini +test1327 Q0 6413890 28 13.705280 Anserini +test1327 Q0 12688975 29 13.704838 Anserini +test1327 Q0 7472530 30 13.688907 Anserini +test1328 Q0 3118699 1 15.699158 Anserini +test1328 Q0 3118703 2 15.699158 Anserini +test1328 Q0 2129156 3 14.955412 Anserini +test1328 Q0 4811816 4 13.514099 Anserini +test1328 Q0 4811819 5 13.277622 Anserini +test1328 Q0 19947376 6 12.596479 Anserini +test1328 Q0 4811814 7 12.395577 Anserini +test1328 Q0 4811815 8 11.962001 Anserini +test1328 Q0 9872071 9 11.804360 Anserini +test1328 Q0 3118700 10 11.464234 Anserini +test1328 Q0 17468133 11 11.315071 Anserini +test1328 Q0 5751896 12 11.031431 Anserini +test1328 Q0 3310085 13 10.885484 Anserini +test1328 Q0 17483432 14 10.858959 Anserini +test1328 Q0 14893997 15 10.569579 Anserini +test1328 Q0 18395746 16 10.565419 Anserini +test1328 Q0 19947374 17 10.553732 Anserini +test1328 Q0 19542203 18 10.550178 Anserini +test1328 Q0 12842844 19 10.550178 Anserini +test1328 Q0 12842847 20 10.550178 Anserini +test1328 Q0 3118702 21 10.528467 Anserini +test1328 Q0 16303859 22 10.465857 Anserini +test1328 Q0 20934483 23 10.458313 Anserini +test1328 Q0 19804425 24 10.420534 Anserini +test1328 Q0 16439214 25 10.362854 Anserini +test1328 Q0 16784721 26 10.336597 Anserini +test1328 Q0 16784723 27 10.336597 Anserini +test1328 Q0 12408850 28 10.164095 Anserini +test1328 Q0 2129157 29 10.071108 Anserini +test1328 Q0 11049764 30 9.970352 Anserini +test1329 Q0 2667495 1 19.461786 Anserini +test1329 Q0 2667506 2 19.461786 Anserini +test1329 Q0 8000292 3 16.653906 Anserini +test1329 Q0 20432160 4 16.472567 Anserini +test1329 Q0 9346542 5 16.332146 Anserini +test1329 Q0 9346540 6 16.332146 Anserini +test1329 Q0 6442147 7 15.441399 Anserini +test1329 Q0 4149208 8 14.646852 Anserini +test1329 Q0 3273397 9 13.924264 Anserini +test1329 Q0 2667496 10 13.467061 Anserini +test1329 Q0 2667499 11 13.467061 Anserini +test1329 Q0 18235699 12 13.232580 Anserini +test1329 Q0 3185627 13 12.474747 Anserini +test1329 Q0 18190962 14 12.456429 Anserini +test1329 Q0 16773872 15 12.390440 Anserini +test1329 Q0 3303410 16 12.357663 Anserini +test1329 Q0 998631 17 12.352541 Anserini +test1329 Q0 3303411 18 12.255167 Anserini +test1329 Q0 2667500 19 12.225739 Anserini +test1329 Q0 12858391 20 12.205579 Anserini +test1329 Q0 3273403 21 12.154535 Anserini +test1329 Q0 3185644 22 12.122025 Anserini +test1329 Q0 2454405 23 12.041666 Anserini +test1329 Q0 3185659 24 12.041666 Anserini +test1329 Q0 4289477 25 11.938378 Anserini +test1329 Q0 2667498 26 11.887039 Anserini +test1329 Q0 4148296 27 11.849142 Anserini +test1329 Q0 2794533 28 11.828003 Anserini +test1329 Q0 6054120 29 11.719727 Anserini +test1329 Q0 3417037 30 11.613491 Anserini +test133 Q0 2837434 1 12.373160 Anserini +test133 Q0 592669 2 12.327741 Anserini +test133 Q0 2343013 3 12.207243 Anserini +test133 Q0 2837433 4 12.124550 Anserini +test133 Q0 2837435 5 12.111797 Anserini +test133 Q0 10965731 6 10.891403 Anserini +test133 Q0 2343038 7 10.870875 Anserini +test133 Q0 2837432 8 10.648314 Anserini +test133 Q0 4336861 9 10.585426 Anserini +test133 Q0 10759246 10 10.572860 Anserini +test133 Q0 18712783 11 10.478270 Anserini +test133 Q0 8470490 12 10.459400 Anserini +test133 Q0 1825929 13 10.426704 Anserini +test133 Q0 592670 14 10.403093 Anserini +test133 Q0 2343033 15 10.330248 Anserini +test133 Q0 2343012 16 10.260174 Anserini +test133 Q0 2343044 17 10.180714 Anserini +test133 Q0 11014830 18 10.118632 Anserini +test133 Q0 3152412 19 10.024004 Anserini +test133 Q0 107660 20 9.942185 Anserini +test133 Q0 3111246 21 9.891875 Anserini +test133 Q0 10759247 22 9.886778 Anserini +test133 Q0 2760504 23 9.879034 Anserini +test133 Q0 2760503 24 9.709930 Anserini +test133 Q0 10170349 25 9.663490 Anserini +test133 Q0 12483605 26 9.637241 Anserini +test133 Q0 300900 27 9.628858 Anserini +test133 Q0 18712782 28 9.518873 Anserini +test133 Q0 8245020 29 9.518686 Anserini +test133 Q0 11014844 30 9.499423 Anserini +test1330 Q0 10176608 1 10.062152 Anserini +test1330 Q0 9173132 2 9.416240 Anserini +test1330 Q0 9173133 3 9.416240 Anserini +test1330 Q0 2501714 4 9.407304 Anserini +test1330 Q0 13063953 5 9.214867 Anserini +test1330 Q0 7713347 6 9.214867 Anserini +test1330 Q0 2807468 7 9.088034 Anserini +test1330 Q0 19845172 8 8.707791 Anserini +test1330 Q0 9406252 9 8.705227 Anserini +test1330 Q0 16253071 10 8.703279 Anserini +test1330 Q0 16198578 11 8.622959 Anserini +test1330 Q0 19845170 12 8.506045 Anserini +test1330 Q0 16198628 13 8.501303 Anserini +test1330 Q0 9751010 14 8.431258 Anserini +test1330 Q0 13416844 15 8.403339 Anserini +test1330 Q0 13063989 16 8.344570 Anserini +test1330 Q0 13063973 17 8.344570 Anserini +test1330 Q0 19845165 18 8.323974 Anserini +test1330 Q0 12074225 19 8.304984 Anserini +test1330 Q0 3828309 20 8.278425 Anserini +test1330 Q0 14041020 21 8.274199 Anserini +test1330 Q0 1343507 22 8.258879 Anserini +test1330 Q0 17986348 23 8.253395 Anserini +test1330 Q0 16231640 24 8.243151 Anserini +test1330 Q0 16746140 25 8.229464 Anserini +test1330 Q0 12074226 26 8.202646 Anserini +test1330 Q0 758026 27 8.197774 Anserini +test1330 Q0 19845153 28 8.181610 Anserini +test1330 Q0 12744092 29 8.176736 Anserini +test1330 Q0 14485466 30 8.173376 Anserini +test1331 Q0 17989620 1 16.649445 Anserini +test1331 Q0 15053450 2 16.606316 Anserini +test1331 Q0 13807980 3 15.723192 Anserini +test1331 Q0 13372662 4 15.697525 Anserini +test1331 Q0 17844568 5 15.365049 Anserini +test1331 Q0 16514423 6 15.352083 Anserini +test1331 Q0 18335247 7 15.021139 Anserini +test1331 Q0 17854201 8 14.816998 Anserini +test1331 Q0 17532932 9 14.816998 Anserini +test1331 Q0 17996076 10 14.653461 Anserini +test1331 Q0 18418814 11 14.650324 Anserini +test1331 Q0 17937889 12 14.650324 Anserini +test1331 Q0 18583695 13 14.610592 Anserini +test1331 Q0 16264647 14 14.520490 Anserini +test1331 Q0 18015782 15 14.511147 Anserini +test1331 Q0 13814020 16 14.478455 Anserini +test1331 Q0 13807968 17 14.470658 Anserini +test1331 Q0 6815413 18 14.458606 Anserini +test1331 Q0 16264658 19 14.435009 Anserini +test1331 Q0 17983195 20 14.415405 Anserini +test1331 Q0 16413045 21 14.215523 Anserini +test1331 Q0 17833217 22 14.177384 Anserini +test1331 Q0 16408396 23 14.131315 Anserini +test1331 Q0 16396061 24 14.103113 Anserini +test1331 Q0 18421973 25 14.082100 Anserini +test1331 Q0 6815408 26 14.008007 Anserini +test1331 Q0 17836699 27 13.991127 Anserini +test1331 Q0 14963051 28 13.940634 Anserini +test1331 Q0 18248892 29 13.939969 Anserini +test1331 Q0 17833213 30 13.937211 Anserini +test1332 Q0 142450 1 13.621803 Anserini +test1332 Q0 9587123 2 13.420613 Anserini +test1332 Q0 4120077 3 13.080784 Anserini +test1332 Q0 3319806 4 13.074423 Anserini +test1332 Q0 15683194 5 12.962943 Anserini +test1332 Q0 8476792 6 12.928416 Anserini +test1332 Q0 12042683 7 12.911885 Anserini +test1332 Q0 142455 8 12.908993 Anserini +test1332 Q0 13975894 9 12.839616 Anserini +test1332 Q0 5349274 10 12.804049 Anserini +test1332 Q0 12042688 11 12.774113 Anserini +test1332 Q0 11590250 12 12.765684 Anserini +test1332 Q0 1590233 13 12.751798 Anserini +test1332 Q0 9598012 14 12.732669 Anserini +test1332 Q0 4212959 15 12.723501 Anserini +test1332 Q0 11966863 16 12.674194 Anserini +test1332 Q0 11966865 17 12.674194 Anserini +test1332 Q0 12042650 18 12.641347 Anserini +test1332 Q0 15192045 19 12.593017 Anserini +test1332 Q0 15268724 20 12.585307 Anserini +test1332 Q0 9492027 21 12.583097 Anserini +test1332 Q0 8478598 22 12.437611 Anserini +test1332 Q0 17229570 23 12.402959 Anserini +test1332 Q0 12630292 24 12.401569 Anserini +test1332 Q0 15248710 25 12.383078 Anserini +test1332 Q0 13124941 26 12.368683 Anserini +test1332 Q0 11669618 27 12.324373 Anserini +test1332 Q0 13861316 28 12.322177 Anserini +test1332 Q0 11966854 29 12.312650 Anserini +test1332 Q0 9607709 30 12.309333 Anserini +test1333 Q0 8419601 1 11.042326 Anserini +test1333 Q0 19593232 2 10.894011 Anserini +test1333 Q0 19593229 3 10.849998 Anserini +test1333 Q0 13460618 4 10.728519 Anserini +test1333 Q0 4585128 5 10.620102 Anserini +test1333 Q0 17476176 6 10.529903 Anserini +test1333 Q0 5015220 7 10.503836 Anserini +test1333 Q0 19797759 8 10.443456 Anserini +test1333 Q0 20243728 9 10.214306 Anserini +test1333 Q0 5341667 10 10.211871 Anserini +test1333 Q0 7985055 11 10.157934 Anserini +test1333 Q0 16024469 12 10.047457 Anserini +test1333 Q0 4672738 13 10.007800 Anserini +test1333 Q0 20356803 14 10.002182 Anserini +test1333 Q0 13467809 15 9.965956 Anserini +test1333 Q0 7855431 16 9.918187 Anserini +test1333 Q0 17228653 17 9.880100 Anserini +test1333 Q0 211525 18 9.858953 Anserini +test1333 Q0 7855434 19 9.835652 Anserini +test1333 Q0 19734333 20 9.758134 Anserini +test1333 Q0 17441422 21 9.697104 Anserini +test1333 Q0 8700019 22 9.695528 Anserini +test1333 Q0 13100691 23 9.658615 Anserini +test1333 Q0 14296319 24 9.642120 Anserini +test1333 Q0 11479422 25 9.609662 Anserini +test1333 Q0 13090938 26 9.582053 Anserini +test1333 Q0 20218112 27 9.523844 Anserini +test1333 Q0 11958955 28 9.503917 Anserini +test1333 Q0 11958960 29 9.503917 Anserini +test1333 Q0 9864630 30 9.459700 Anserini +test1334 Q0 6302650 1 14.803439 Anserini +test1334 Q0 14728568 2 14.542410 Anserini +test1334 Q0 9024162 3 14.377693 Anserini +test1334 Q0 1630433 4 14.312213 Anserini +test1334 Q0 13486314 5 14.186199 Anserini +test1334 Q0 1850636 6 13.924878 Anserini +test1334 Q0 15345662 7 13.831237 Anserini +test1334 Q0 7331695 8 13.812282 Anserini +test1334 Q0 3475600 9 13.673485 Anserini +test1334 Q0 328704 10 13.670717 Anserini +test1334 Q0 328703 11 13.478726 Anserini +test1334 Q0 328701 12 13.443199 Anserini +test1334 Q0 305857 13 13.379595 Anserini +test1334 Q0 4056554 14 13.368279 Anserini +test1334 Q0 10736350 15 13.361900 Anserini +test1334 Q0 548523 16 13.222346 Anserini +test1334 Q0 15345670 17 13.193344 Anserini +test1334 Q0 305858 18 13.128933 Anserini +test1334 Q0 7463532 19 13.112773 Anserini +test1334 Q0 92370 20 13.031912 Anserini +test1334 Q0 7817686 21 12.909917 Anserini +test1334 Q0 9024163 22 12.855593 Anserini +test1334 Q0 14728567 23 12.812739 Anserini +test1334 Q0 411197 24 12.800767 Anserini +test1334 Q0 1746082 25 12.784492 Anserini +test1334 Q0 328702 26 12.648079 Anserini +test1334 Q0 4716528 27 12.632321 Anserini +test1334 Q0 5416718 28 12.607124 Anserini +test1334 Q0 14929041 29 12.587043 Anserini +test1334 Q0 4566010 30 12.554371 Anserini +test1335 Q0 9058257 1 12.547809 Anserini +test1335 Q0 11221725 2 12.380326 Anserini +test1335 Q0 843008 3 12.200887 Anserini +test1335 Q0 14685765 4 12.114649 Anserini +test1335 Q0 5715371 5 12.078630 Anserini +test1335 Q0 16485202 6 12.020520 Anserini +test1335 Q0 4662206 7 11.936377 Anserini +test1335 Q0 4696968 8 11.820513 Anserini +test1335 Q0 15606391 9 11.802735 Anserini +test1335 Q0 11483023 10 11.738188 Anserini +test1335 Q0 4150310 11 11.732019 Anserini +test1335 Q0 3182882 12 11.680380 Anserini +test1335 Q0 2880075 13 11.598763 Anserini +test1335 Q0 6938508 14 11.585706 Anserini +test1335 Q0 17498049 15 11.474215 Anserini +test1335 Q0 19348476 16 11.451740 Anserini +test1335 Q0 6677874 17 11.450159 Anserini +test1335 Q0 4211886 18 11.441020 Anserini +test1335 Q0 19676730 19 11.439636 Anserini +test1335 Q0 17018672 20 11.393485 Anserini +test1335 Q0 4249416 21 11.387265 Anserini +test1335 Q0 8297630 22 11.354472 Anserini +test1335 Q0 11661198 23 11.351603 Anserini +test1335 Q0 9058259 24 11.321804 Anserini +test1335 Q0 14482670 25 11.304590 Anserini +test1335 Q0 5922079 26 11.295406 Anserini +test1335 Q0 8794877 27 11.293927 Anserini +test1335 Q0 18019390 28 11.281077 Anserini +test1335 Q0 12331606 29 11.240426 Anserini +test1335 Q0 18402341 30 11.222426 Anserini +test1336 Q0 16570345 1 11.306309 Anserini +test1336 Q0 1764788 2 11.058110 Anserini +test1336 Q0 2360030 3 10.741171 Anserini +test1336 Q0 2360034 4 10.498544 Anserini +test1336 Q0 12041040 5 10.491622 Anserini +test1336 Q0 4886394 6 10.224928 Anserini +test1336 Q0 12041044 7 10.190716 Anserini +test1336 Q0 16893657 8 10.157279 Anserini +test1336 Q0 16410602 9 10.150956 Anserini +test1336 Q0 4113184 10 10.139545 Anserini +test1336 Q0 18350040 11 10.090686 Anserini +test1336 Q0 10296614 12 10.074821 Anserini +test1336 Q0 16570342 13 10.072432 Anserini +test1336 Q0 5171606 14 10.066200 Anserini +test1336 Q0 2360032 15 10.040440 Anserini +test1336 Q0 18350041 16 10.004847 Anserini +test1336 Q0 19681695 17 9.959356 Anserini +test1336 Q0 18707625 18 9.859818 Anserini +test1336 Q0 18177358 19 9.746271 Anserini +test1336 Q0 16570344 20 9.728487 Anserini +test1336 Q0 16166962 21 9.717174 Anserini +test1336 Q0 4888460 22 9.618688 Anserini +test1336 Q0 16893659 23 9.563118 Anserini +test1336 Q0 10296610 24 9.549211 Anserini +test1336 Q0 6071607 25 9.545548 Anserini +test1336 Q0 3911691 26 9.536253 Anserini +test1336 Q0 15978058 27 9.494744 Anserini +test1336 Q0 17475825 28 9.470495 Anserini +test1336 Q0 393981 29 9.378198 Anserini +test1336 Q0 6597336 30 9.357406 Anserini +test1337 Q0 1033071 1 16.501827 Anserini +test1337 Q0 1033124 2 15.979386 Anserini +test1337 Q0 1033085 3 15.710426 Anserini +test1337 Q0 17490548 4 15.589661 Anserini +test1337 Q0 1033068 5 15.471054 Anserini +test1337 Q0 9121710 6 15.142620 Anserini +test1337 Q0 17235085 7 15.036800 Anserini +test1337 Q0 4439440 8 14.914643 Anserini +test1337 Q0 11466538 9 14.838966 Anserini +test1337 Q0 805675 10 14.838839 Anserini +test1337 Q0 9121711 11 14.836166 Anserini +test1337 Q0 1033070 12 14.784996 Anserini +test1337 Q0 1033084 13 14.724697 Anserini +test1337 Q0 9922081 14 14.616131 Anserini +test1337 Q0 1033043 15 14.616131 Anserini +test1337 Q0 1033055 16 14.534401 Anserini +test1337 Q0 9922090 17 14.533047 Anserini +test1337 Q0 10938894 18 14.533047 Anserini +test1337 Q0 10938900 19 14.533047 Anserini +test1337 Q0 1033056 20 14.463964 Anserini +test1337 Q0 17235081 21 14.461800 Anserini +test1337 Q0 9913195 22 14.450979 Anserini +test1337 Q0 12397595 23 14.408531 Anserini +test1337 Q0 12397594 24 14.296698 Anserini +test1337 Q0 1033030 25 14.252721 Anserini +test1337 Q0 8960940 26 14.244130 Anserini +test1337 Q0 5163417 27 14.238767 Anserini +test1337 Q0 5163421 28 14.238767 Anserini +test1337 Q0 10902353 29 14.233219 Anserini +test1337 Q0 7234197 30 14.168611 Anserini +test1338 Q0 7630263 1 10.637342 Anserini +test1338 Q0 4539328 2 10.372868 Anserini +test1338 Q0 4022080 3 9.944934 Anserini +test1338 Q0 8190456 4 9.918189 Anserini +test1338 Q0 8947736 5 9.729734 Anserini +test1338 Q0 17064357 6 9.718009 Anserini +test1338 Q0 10331800 7 9.678884 Anserini +test1338 Q0 7630264 8 9.599027 Anserini +test1338 Q0 13061237 9 9.510749 Anserini +test1338 Q0 7442609 10 9.482812 Anserini +test1338 Q0 13816395 11 9.382528 Anserini +test1338 Q0 13816479 12 9.382528 Anserini +test1338 Q0 13816571 13 9.382528 Anserini +test1338 Q0 13816610 14 9.382528 Anserini +test1338 Q0 13815887 15 9.382528 Anserini +test1338 Q0 13815990 16 9.382528 Anserini +test1338 Q0 13815876 17 9.382528 Anserini +test1338 Q0 13815892 18 9.382528 Anserini +test1338 Q0 13816129 19 9.382528 Anserini +test1338 Q0 13816137 20 9.382528 Anserini +test1338 Q0 13816735 21 9.382528 Anserini +test1338 Q0 13816753 22 9.382528 Anserini +test1338 Q0 13816783 23 9.382528 Anserini +test1338 Q0 13816829 24 9.382528 Anserini +test1338 Q0 13821243 25 9.382528 Anserini +test1338 Q0 13821684 26 9.382528 Anserini +test1338 Q0 13815703 27 9.382528 Anserini +test1338 Q0 13815716 28 9.382528 Anserini +test1338 Q0 13815744 29 9.382528 Anserini +test1338 Q0 13815849 30 9.382528 Anserini +test1339 Q0 7402050 1 13.625009 Anserini +test1339 Q0 6679826 2 13.550442 Anserini +test1339 Q0 11898335 3 13.386086 Anserini +test1339 Q0 7402060 4 13.330424 Anserini +test1339 Q0 5569214 5 13.151952 Anserini +test1339 Q0 6679802 6 13.151038 Anserini +test1339 Q0 10622725 7 12.914622 Anserini +test1339 Q0 1324739 8 12.885287 Anserini +test1339 Q0 6679815 9 12.840325 Anserini +test1339 Q0 6679829 10 12.801945 Anserini +test1339 Q0 5002432 11 12.770564 Anserini +test1339 Q0 9703867 12 12.689982 Anserini +test1339 Q0 10615501 13 12.678814 Anserini +test1339 Q0 216119 14 12.519776 Anserini +test1339 Q0 19560927 15 12.518976 Anserini +test1339 Q0 17957326 16 12.496403 Anserini +test1339 Q0 12701227 17 12.492977 Anserini +test1339 Q0 1324748 18 12.490869 Anserini +test1339 Q0 10984583 19 12.476037 Anserini +test1339 Q0 13036583 20 12.469873 Anserini +test1339 Q0 14842311 21 12.466727 Anserini +test1339 Q0 17792309 22 12.375805 Anserini +test1339 Q0 8835984 23 12.363023 Anserini +test1339 Q0 19920522 24 12.336684 Anserini +test1339 Q0 18072104 25 12.299243 Anserini +test1339 Q0 13196368 26 12.293959 Anserini +test1339 Q0 15489239 27 12.198382 Anserini +test1339 Q0 13000906 28 12.130454 Anserini +test1339 Q0 16513093 29 12.123317 Anserini +test1339 Q0 3462633 30 12.107112 Anserini +test134 Q0 10076730 1 20.303440 Anserini +test134 Q0 8062402 2 18.305090 Anserini +test134 Q0 19807841 3 17.858589 Anserini +test134 Q0 8425136 4 17.849993 Anserini +test134 Q0 313848 5 17.592793 Anserini +test134 Q0 19807796 6 17.460657 Anserini +test134 Q0 17736270 7 17.274990 Anserini +test134 Q0 19629916 8 17.199427 Anserini +test134 Q0 10076725 9 17.169846 Anserini +test134 Q0 3200034 10 17.072618 Anserini +test134 Q0 12832957 11 16.972223 Anserini +test134 Q0 10076729 12 16.903063 Anserini +test134 Q0 20428530 13 16.843159 Anserini +test134 Q0 4700533 14 16.798338 Anserini +test134 Q0 17161894 15 16.667320 Anserini +test134 Q0 10076726 16 16.633156 Anserini +test134 Q0 313825 17 16.563372 Anserini +test134 Q0 3200087 18 16.560844 Anserini +test134 Q0 10152678 19 16.535929 Anserini +test134 Q0 12317158 20 16.424976 Anserini +test134 Q0 6224942 21 16.398867 Anserini +test134 Q0 10076724 22 16.315392 Anserini +test134 Q0 19481087 23 16.266100 Anserini +test134 Q0 18465624 24 16.264404 Anserini +test134 Q0 11822898 25 16.210903 Anserini +test134 Q0 19807846 26 16.205933 Anserini +test134 Q0 18419064 27 16.195230 Anserini +test134 Q0 10100179 28 16.193417 Anserini +test134 Q0 11381832 29 16.028746 Anserini +test134 Q0 11053194 30 16.025881 Anserini +test1340 Q0 14208021 1 14.358807 Anserini +test1340 Q0 14208018 2 14.141666 Anserini +test1340 Q0 14208011 3 13.978836 Anserini +test1340 Q0 14208019 4 13.683967 Anserini +test1340 Q0 14208014 5 13.030373 Anserini +test1340 Q0 14208013 6 12.893029 Anserini +test1340 Q0 14208012 7 12.773936 Anserini +test1340 Q0 14208015 8 12.692725 Anserini +test1340 Q0 14208020 9 12.013783 Anserini +test1340 Q0 12511819 10 11.668067 Anserini +test1340 Q0 7213661 11 11.167826 Anserini +test1340 Q0 9321098 12 11.122597 Anserini +test1340 Q0 15578456 13 11.119461 Anserini +test1340 Q0 8112701 14 11.061012 Anserini +test1340 Q0 20562827 15 10.979005 Anserini +test1340 Q0 14744282 16 10.939666 Anserini +test1340 Q0 17260616 17 10.912660 Anserini +test1340 Q0 19764578 18 10.791431 Anserini +test1340 Q0 19764579 19 10.791431 Anserini +test1340 Q0 5970583 20 10.769140 Anserini +test1340 Q0 4486296 21 10.603260 Anserini +test1340 Q0 14208017 22 10.577599 Anserini +test1340 Q0 14619677 23 10.568090 Anserini +test1340 Q0 15238053 24 10.558762 Anserini +test1340 Q0 15177742 25 10.551957 Anserini +test1340 Q0 11752339 26 10.503176 Anserini +test1340 Q0 14208016 27 10.489362 Anserini +test1340 Q0 183862 28 10.444042 Anserini +test1340 Q0 11674023 29 10.397875 Anserini +test1340 Q0 14605864 30 10.382549 Anserini +test1341 Q0 3285217 1 22.068947 Anserini +test1341 Q0 1311754 2 21.325218 Anserini +test1341 Q0 5966648 3 19.731478 Anserini +test1341 Q0 8956590 4 19.604837 Anserini +test1341 Q0 2243425 5 18.585646 Anserini +test1341 Q0 3285225 6 18.317217 Anserini +test1341 Q0 8798290 7 18.233196 Anserini +test1341 Q0 1311744 8 18.181707 Anserini +test1341 Q0 1311763 9 17.833637 Anserini +test1341 Q0 1311745 10 17.754267 Anserini +test1341 Q0 1311750 11 17.750742 Anserini +test1341 Q0 819426 12 17.548382 Anserini +test1341 Q0 6408339 13 17.473927 Anserini +test1341 Q0 1311749 14 17.388174 Anserini +test1341 Q0 10650179 15 17.341497 Anserini +test1341 Q0 4398550 16 17.282118 Anserini +test1341 Q0 380875 17 16.913946 Anserini +test1341 Q0 3424673 18 16.697771 Anserini +test1341 Q0 1357430 19 16.685558 Anserini +test1341 Q0 11414232 20 16.684908 Anserini +test1341 Q0 4398552 21 16.441767 Anserini +test1341 Q0 2085884 22 16.423998 Anserini +test1341 Q0 11414231 23 16.380182 Anserini +test1341 Q0 7359738 24 16.298258 Anserini +test1341 Q0 12990812 25 16.282867 Anserini +test1341 Q0 2243418 26 16.209238 Anserini +test1341 Q0 1311753 27 16.184748 Anserini +test1341 Q0 2243424 28 16.181061 Anserini +test1341 Q0 1311751 29 16.172888 Anserini +test1341 Q0 1666569 30 16.146351 Anserini +test1342 Q0 9187628 1 15.737795 Anserini +test1342 Q0 5596916 2 15.334637 Anserini +test1342 Q0 1319426 3 15.248940 Anserini +test1342 Q0 4632480 4 15.211169 Anserini +test1342 Q0 15647363 5 14.988218 Anserini +test1342 Q0 6455211 6 14.850817 Anserini +test1342 Q0 15647349 7 14.850817 Anserini +test1342 Q0 21011340 8 14.834650 Anserini +test1342 Q0 4212989 9 14.716007 Anserini +test1342 Q0 6651891 10 14.570165 Anserini +test1342 Q0 12747 11 14.564857 Anserini +test1342 Q0 6458926 12 14.387259 Anserini +test1342 Q0 9528831 13 14.108829 Anserini +test1342 Q0 290238 14 14.108829 Anserini +test1342 Q0 307603 15 14.053106 Anserini +test1342 Q0 542439 16 14.040653 Anserini +test1342 Q0 4222002 17 13.607704 Anserini +test1342 Q0 20355193 18 13.500800 Anserini +test1342 Q0 16447207 19 13.483232 Anserini +test1342 Q0 17502065 20 13.394526 Anserini +test1342 Q0 13911964 21 13.372156 Anserini +test1342 Q0 441524 22 13.367237 Anserini +test1342 Q0 10636025 23 13.184370 Anserini +test1342 Q0 111835 24 13.184370 Anserini +test1342 Q0 101911 25 13.182434 Anserini +test1342 Q0 4225785 26 13.182434 Anserini +test1342 Q0 20679584 27 13.104361 Anserini +test1342 Q0 2148651 28 13.004370 Anserini +test1342 Q0 3565516 29 12.918558 Anserini +test1342 Q0 433771 30 12.896631 Anserini +test1343 Q0 10686800 1 9.739895 Anserini +test1343 Q0 8617584 2 9.197813 Anserini +test1343 Q0 3324541 3 9.122284 Anserini +test1343 Q0 1818943 4 9.120943 Anserini +test1343 Q0 1818944 5 9.074078 Anserini +test1343 Q0 16376176 6 9.074078 Anserini +test1343 Q0 1818945 7 8.798450 Anserini +test1343 Q0 9839614 8 8.789190 Anserini +test1343 Q0 18895330 9 8.747131 Anserini +test1343 Q0 16627373 10 8.738018 Anserini +test1343 Q0 7874875 11 8.675473 Anserini +test1343 Q0 1922855 12 8.646033 Anserini +test1343 Q0 8587851 13 8.646033 Anserini +test1343 Q0 2638143 14 8.641588 Anserini +test1343 Q0 9542004 15 8.621544 Anserini +test1343 Q0 2638146 16 8.611509 Anserini +test1343 Q0 623334 17 8.597220 Anserini +test1343 Q0 7206299 18 8.568294 Anserini +test1343 Q0 4136922 19 8.515711 Anserini +test1343 Q0 2537340 20 8.468621 Anserini +test1343 Q0 2447109 21 8.394964 Anserini +test1343 Q0 2638142 22 8.380279 Anserini +test1343 Q0 9754540 23 8.359442 Anserini +test1343 Q0 14709099 24 8.352470 Anserini +test1343 Q0 12503561 25 8.249622 Anserini +test1343 Q0 8113037 26 8.228455 Anserini +test1343 Q0 12578473 27 8.186625 Anserini +test1343 Q0 15222317 28 8.186625 Anserini +test1343 Q0 12461378 29 8.141415 Anserini +test1343 Q0 17117955 30 8.126176 Anserini +test1344 Q0 17823572 1 18.173941 Anserini +test1344 Q0 16806598 2 16.383572 Anserini +test1344 Q0 13368126 3 15.690420 Anserini +test1344 Q0 20427806 4 15.605078 Anserini +test1344 Q0 5778919 5 15.237241 Anserini +test1344 Q0 15561210 6 15.200382 Anserini +test1344 Q0 9257009 7 14.921468 Anserini +test1344 Q0 7357770 8 14.832643 Anserini +test1344 Q0 14479971 9 14.775341 Anserini +test1344 Q0 17875419 10 14.557096 Anserini +test1344 Q0 19672067 11 14.447876 Anserini +test1344 Q0 14108532 12 14.442429 Anserini +test1344 Q0 15679856 13 14.391119 Anserini +test1344 Q0 4262570 14 14.325342 Anserini +test1344 Q0 15679857 15 14.234273 Anserini +test1344 Q0 18887824 16 13.964467 Anserini +test1344 Q0 2837165 17 13.935167 Anserini +test1344 Q0 9929002 18 13.929239 Anserini +test1344 Q0 16887666 19 13.919216 Anserini +test1344 Q0 16806681 20 13.894429 Anserini +test1344 Q0 18202337 21 13.885525 Anserini +test1344 Q0 14407426 22 13.865299 Anserini +test1344 Q0 16806683 23 13.816785 Anserini +test1344 Q0 4262571 24 13.792610 Anserini +test1344 Q0 12554575 25 13.760208 Anserini +test1344 Q0 20129621 26 13.730358 Anserini +test1344 Q0 17676435 27 13.726823 Anserini +test1344 Q0 18711995 28 13.686199 Anserini +test1344 Q0 5644547 29 13.591999 Anserini +test1344 Q0 9257011 30 13.552382 Anserini +test1345 Q0 4245444 1 27.191742 Anserini +test1345 Q0 4245434 2 27.191742 Anserini +test1345 Q0 3113273 3 26.242321 Anserini +test1345 Q0 7925788 4 24.239288 Anserini +test1345 Q0 4245442 5 24.005638 Anserini +test1345 Q0 1524165 6 23.752632 Anserini +test1345 Q0 5550844 7 23.443209 Anserini +test1345 Q0 17905030 8 22.684767 Anserini +test1345 Q0 9629545 9 22.643917 Anserini +test1345 Q0 13033252 10 22.255953 Anserini +test1345 Q0 7875024 11 22.094376 Anserini +test1345 Q0 2996392 12 22.074440 Anserini +test1345 Q0 4245437 13 22.055353 Anserini +test1345 Q0 1826809 14 21.977661 Anserini +test1345 Q0 4688733 15 21.891493 Anserini +test1345 Q0 12408024 16 21.664385 Anserini +test1345 Q0 4245438 17 21.610439 Anserini +test1345 Q0 14441413 18 21.553621 Anserini +test1345 Q0 14244272 19 21.550003 Anserini +test1345 Q0 17782738 20 21.545097 Anserini +test1345 Q0 9629551 21 21.515909 Anserini +test1345 Q0 2996379 22 21.499512 Anserini +test1345 Q0 14244276 23 21.469152 Anserini +test1345 Q0 14441419 24 21.388287 Anserini +test1345 Q0 4316491 25 21.356691 Anserini +test1345 Q0 15066092 26 21.283466 Anserini +test1345 Q0 4788775 27 21.184713 Anserini +test1345 Q0 2996393 28 21.174889 Anserini +test1345 Q0 12720107 29 21.143293 Anserini +test1345 Q0 13534370 30 21.075600 Anserini +test1346 Q0 14127801 1 12.694479 Anserini +test1346 Q0 11039618 2 12.450256 Anserini +test1346 Q0 6527330 3 11.923384 Anserini +test1346 Q0 5773422 4 11.910445 Anserini +test1346 Q0 11503291 5 11.884443 Anserini +test1346 Q0 15262963 6 11.649137 Anserini +test1346 Q0 6855395 7 11.557865 Anserini +test1346 Q0 2450980 8 11.520347 Anserini +test1346 Q0 18964894 9 11.455265 Anserini +test1346 Q0 19674697 10 11.321088 Anserini +test1346 Q0 145023 11 11.249808 Anserini +test1346 Q0 18001594 12 11.243542 Anserini +test1346 Q0 6505166 13 11.228889 Anserini +test1346 Q0 12820801 14 11.221820 Anserini +test1346 Q0 12395760 15 11.196447 Anserini +test1346 Q0 16774476 16 11.139542 Anserini +test1346 Q0 11810125 17 11.104794 Anserini +test1346 Q0 16781728 18 11.094889 Anserini +test1346 Q0 10961252 19 11.033710 Anserini +test1346 Q0 17827284 20 11.024426 Anserini +test1346 Q0 2989108 21 11.022810 Anserini +test1346 Q0 6660097 22 10.962502 Anserini +test1346 Q0 11110768 23 10.960856 Anserini +test1346 Q0 2540250 24 10.956741 Anserini +test1346 Q0 5538528 25 10.911041 Anserini +test1346 Q0 17301323 26 10.908264 Anserini +test1346 Q0 17585983 27 10.892284 Anserini +test1346 Q0 431779 28 10.883937 Anserini +test1346 Q0 14451669 29 10.883899 Anserini +test1346 Q0 16774480 30 10.876227 Anserini +test1347 Q0 15305074 1 15.008121 Anserini +test1347 Q0 3406974 2 14.714725 Anserini +test1347 Q0 17857012 3 14.298649 Anserini +test1347 Q0 3406982 4 13.225455 Anserini +test1347 Q0 4904330 5 13.142786 Anserini +test1347 Q0 3406976 6 13.140271 Anserini +test1347 Q0 13055293 7 13.136955 Anserini +test1347 Q0 4904323 8 12.740537 Anserini +test1347 Q0 2892142 9 12.523726 Anserini +test1347 Q0 2951809 10 12.482091 Anserini +test1347 Q0 2951801 11 12.482091 Anserini +test1347 Q0 3406977 12 12.443849 Anserini +test1347 Q0 17857000 13 12.212541 Anserini +test1347 Q0 20250031 14 12.140805 Anserini +test1347 Q0 17857009 15 12.028590 Anserini +test1347 Q0 12972478 16 11.988692 Anserini +test1347 Q0 1003617 17 11.915788 Anserini +test1347 Q0 2892141 18 11.899843 Anserini +test1347 Q0 4904300 19 11.805550 Anserini +test1347 Q0 3406975 20 11.721306 Anserini +test1347 Q0 20331664 21 11.638514 Anserini +test1347 Q0 9693275 22 11.438058 Anserini +test1347 Q0 13055291 23 11.407761 Anserini +test1347 Q0 14505285 24 11.393560 Anserini +test1347 Q0 14813702 25 11.362924 Anserini +test1347 Q0 9026089 26 11.316366 Anserini +test1347 Q0 9026090 27 11.316366 Anserini +test1347 Q0 12815292 28 11.263323 Anserini +test1347 Q0 15925002 29 11.206976 Anserini +test1347 Q0 15925004 30 11.206976 Anserini +test1348 Q0 10062640 1 19.310398 Anserini +test1348 Q0 10062636 2 18.783239 Anserini +test1348 Q0 10062644 3 18.497490 Anserini +test1348 Q0 10062637 4 18.151453 Anserini +test1348 Q0 10062642 5 17.532970 Anserini +test1348 Q0 10062641 6 17.094101 Anserini +test1348 Q0 10062638 7 16.886391 Anserini +test1348 Q0 1827237 8 15.890870 Anserini +test1348 Q0 1827244 9 15.873211 Anserini +test1348 Q0 19473320 10 15.729128 Anserini +test1348 Q0 10062643 11 15.480261 Anserini +test1348 Q0 4340619 12 15.201929 Anserini +test1348 Q0 8500632 13 14.814523 Anserini +test1348 Q0 19711896 14 14.492929 Anserini +test1348 Q0 9630049 15 14.187470 Anserini +test1348 Q0 4482674 16 14.184229 Anserini +test1348 Q0 1827238 17 14.112266 Anserini +test1348 Q0 13357400 18 13.957939 Anserini +test1348 Q0 15077865 19 13.743796 Anserini +test1348 Q0 1827245 20 13.713327 Anserini +test1348 Q0 19473319 21 13.681478 Anserini +test1348 Q0 19992917 22 13.619795 Anserini +test1348 Q0 19992918 23 13.619795 Anserini +test1348 Q0 5781330 24 13.565533 Anserini +test1348 Q0 20148527 25 13.546474 Anserini +test1348 Q0 19473318 26 13.517979 Anserini +test1348 Q0 18956667 27 13.517979 Anserini +test1348 Q0 18956668 28 13.517979 Anserini +test1348 Q0 1827236 29 13.463169 Anserini +test1348 Q0 9116742 30 13.458761 Anserini +test1349 Q0 17018954 1 27.573727 Anserini +test1349 Q0 19497548 2 27.072590 Anserini +test1349 Q0 12855628 3 26.909388 Anserini +test1349 Q0 11742860 4 26.661072 Anserini +test1349 Q0 17018950 5 26.344694 Anserini +test1349 Q0 14908179 6 26.073256 Anserini +test1349 Q0 15955903 7 26.058767 Anserini +test1349 Q0 18707572 8 25.979713 Anserini +test1349 Q0 15955908 9 25.749266 Anserini +test1349 Q0 8480448 10 25.588406 Anserini +test1349 Q0 19497547 11 25.558115 Anserini +test1349 Q0 18571122 12 25.471169 Anserini +test1349 Q0 17145902 13 25.397768 Anserini +test1349 Q0 314221 14 25.355860 Anserini +test1349 Q0 7384307 15 25.354687 Anserini +test1349 Q0 11742859 16 25.193647 Anserini +test1349 Q0 7042340 17 25.113640 Anserini +test1349 Q0 17750994 18 24.939558 Anserini +test1349 Q0 4369161 19 24.897753 Anserini +test1349 Q0 7551278 20 24.776817 Anserini +test1349 Q0 18092570 21 24.542767 Anserini +test1349 Q0 18026197 22 24.496868 Anserini +test1349 Q0 16455190 23 24.478247 Anserini +test1349 Q0 20964304 24 24.433378 Anserini +test1349 Q0 20724138 25 24.385181 Anserini +test1349 Q0 9469130 26 24.188925 Anserini +test1349 Q0 11010734 27 24.017866 Anserini +test1349 Q0 5950593 28 23.987442 Anserini +test1349 Q0 15955904 29 23.942354 Anserini +test1349 Q0 12999288 30 23.910610 Anserini +test135 Q0 534808 1 18.660830 Anserini +test135 Q0 3151622 2 18.544617 Anserini +test135 Q0 10436897 3 17.362152 Anserini +test135 Q0 13148083 4 16.432159 Anserini +test135 Q0 2844146 5 16.316439 Anserini +test135 Q0 4452658 6 16.166338 Anserini +test135 Q0 2555964 7 15.788877 Anserini +test135 Q0 534797 8 15.757804 Anserini +test135 Q0 1523319 9 15.609796 Anserini +test135 Q0 534795 10 15.393984 Anserini +test135 Q0 18037175 11 15.038422 Anserini +test135 Q0 534822 12 14.952223 Anserini +test135 Q0 11654922 13 14.849630 Anserini +test135 Q0 8822892 14 14.844511 Anserini +test135 Q0 13413198 15 14.823559 Anserini +test135 Q0 1694132 16 14.651206 Anserini +test135 Q0 18037219 17 14.603651 Anserini +test135 Q0 534792 18 14.577938 Anserini +test135 Q0 13148084 19 14.422563 Anserini +test135 Q0 6425622 20 14.302619 Anserini +test135 Q0 3151611 21 14.253552 Anserini +test135 Q0 15313574 22 14.235002 Anserini +test135 Q0 14000762 23 14.215452 Anserini +test135 Q0 9424706 24 14.159432 Anserini +test135 Q0 9424703 25 14.159432 Anserini +test135 Q0 2013582 26 14.142707 Anserini +test135 Q0 15338538 27 14.125446 Anserini +test135 Q0 534796 28 14.078892 Anserini +test135 Q0 6163517 29 14.043670 Anserini +test135 Q0 20032798 30 13.993822 Anserini +test1350 Q0 1328697 1 19.770760 Anserini +test1350 Q0 15487016 2 19.443851 Anserini +test1350 Q0 13286694 3 19.059950 Anserini +test1350 Q0 15930259 4 19.036194 Anserini +test1350 Q0 15020197 5 18.921230 Anserini +test1350 Q0 5215038 6 18.818546 Anserini +test1350 Q0 1612600 7 18.761629 Anserini +test1350 Q0 12612995 8 18.734274 Anserini +test1350 Q0 17279392 9 18.487415 Anserini +test1350 Q0 14803163 10 18.481285 Anserini +test1350 Q0 13505777 11 18.420259 Anserini +test1350 Q0 5076309 12 18.411966 Anserini +test1350 Q0 5180602 13 18.140226 Anserini +test1350 Q0 2681328 14 18.092781 Anserini +test1350 Q0 1999309 15 18.073509 Anserini +test1350 Q0 5236025 16 18.010443 Anserini +test1350 Q0 2681399 17 18.006748 Anserini +test1350 Q0 1612610 18 17.994114 Anserini +test1350 Q0 7093850 19 17.953695 Anserini +test1350 Q0 9086595 20 17.942972 Anserini +test1350 Q0 15774717 21 17.900537 Anserini +test1350 Q0 18576679 22 17.881372 Anserini +test1350 Q0 1732540 23 17.829695 Anserini +test1350 Q0 1906303 24 17.765902 Anserini +test1350 Q0 14860626 25 17.722889 Anserini +test1350 Q0 12137702 26 17.688601 Anserini +test1350 Q0 1820365 27 17.545553 Anserini +test1350 Q0 19612353 28 17.535292 Anserini +test1350 Q0 1612616 29 17.530014 Anserini +test1350 Q0 5211505 30 17.508484 Anserini +test1351 Q0 14798171 1 15.096443 Anserini +test1351 Q0 17425391 2 14.902041 Anserini +test1351 Q0 12903812 3 14.400761 Anserini +test1351 Q0 4450419 4 14.390985 Anserini +test1351 Q0 5958118 5 14.047337 Anserini +test1351 Q0 4630216 6 13.850416 Anserini +test1351 Q0 3135903 7 13.718101 Anserini +test1351 Q0 20917187 8 13.564541 Anserini +test1351 Q0 4450420 9 13.454037 Anserini +test1351 Q0 4758535 10 13.402049 Anserini +test1351 Q0 8915769 11 13.356050 Anserini +test1351 Q0 5671787 12 13.291371 Anserini +test1351 Q0 7167360 13 13.257174 Anserini +test1351 Q0 394703 14 13.224501 Anserini +test1351 Q0 7167364 15 13.218190 Anserini +test1351 Q0 9277484 16 13.206807 Anserini +test1351 Q0 16858105 17 13.193075 Anserini +test1351 Q0 8293847 18 13.182745 Anserini +test1351 Q0 286772 19 12.978367 Anserini +test1351 Q0 286695 20 12.973280 Anserini +test1351 Q0 376023 21 12.903137 Anserini +test1351 Q0 4450372 22 12.887486 Anserini +test1351 Q0 8852173 23 12.877025 Anserini +test1351 Q0 4450373 24 12.855347 Anserini +test1351 Q0 9383612 25 12.849792 Anserini +test1351 Q0 376024 26 12.840167 Anserini +test1351 Q0 18535111 27 12.789005 Anserini +test1351 Q0 11036384 28 12.784718 Anserini +test1351 Q0 15577699 29 12.749627 Anserini +test1351 Q0 375999 30 12.728677 Anserini +test1352 Q0 11953714 1 21.797840 Anserini +test1352 Q0 11953715 2 20.681562 Anserini +test1352 Q0 16545409 3 20.586737 Anserini +test1352 Q0 6477281 4 20.550972 Anserini +test1352 Q0 11952505 5 19.266081 Anserini +test1352 Q0 10998534 6 19.150845 Anserini +test1352 Q0 11046977 7 19.038315 Anserini +test1352 Q0 11044242 8 19.037441 Anserini +test1352 Q0 11044183 9 18.879606 Anserini +test1352 Q0 10034523 10 18.867748 Anserini +test1352 Q0 8243097 11 18.828255 Anserini +test1352 Q0 16273699 12 18.825827 Anserini +test1352 Q0 12822990 13 18.742575 Anserini +test1352 Q0 11041188 14 18.730780 Anserini +test1352 Q0 13329694 15 18.696566 Anserini +test1352 Q0 5174929 16 18.636690 Anserini +test1352 Q0 13265455 17 18.616886 Anserini +test1352 Q0 11044192 18 18.613630 Anserini +test1352 Q0 11008448 19 18.562143 Anserini +test1352 Q0 9371947 20 18.545891 Anserini +test1352 Q0 16545393 21 18.456306 Anserini +test1352 Q0 11008463 22 18.444948 Anserini +test1352 Q0 7495137 23 18.400846 Anserini +test1352 Q0 9371976 24 18.356951 Anserini +test1352 Q0 804011 25 18.167391 Anserini +test1352 Q0 10981153 26 18.127331 Anserini +test1352 Q0 11053504 27 18.085045 Anserini +test1352 Q0 804027 28 17.987492 Anserini +test1352 Q0 6477307 29 17.950672 Anserini +test1352 Q0 9375616 30 17.921301 Anserini +test1353 Q0 9688218 1 19.417856 Anserini +test1353 Q0 9688232 2 19.329884 Anserini +test1353 Q0 4925052 3 19.027332 Anserini +test1353 Q0 3622246 4 18.904478 Anserini +test1353 Q0 14860111 5 18.643158 Anserini +test1353 Q0 6159482 6 18.358948 Anserini +test1353 Q0 7328215 7 17.657337 Anserini +test1353 Q0 3245232 8 17.534954 Anserini +test1353 Q0 15598797 9 17.534826 Anserini +test1353 Q0 12840858 10 17.490566 Anserini +test1353 Q0 15545073 11 17.258312 Anserini +test1353 Q0 4126055 12 17.231712 Anserini +test1353 Q0 3623547 13 17.218012 Anserini +test1353 Q0 8124492 14 17.114328 Anserini +test1353 Q0 16520751 15 17.043667 Anserini +test1353 Q0 11961487 16 16.987148 Anserini +test1353 Q0 4921317 17 16.973085 Anserini +test1353 Q0 10816308 18 16.936712 Anserini +test1353 Q0 17843837 19 16.893509 Anserini +test1353 Q0 15410430 20 16.886482 Anserini +test1353 Q0 6294937 21 16.875143 Anserini +test1353 Q0 3478723 22 16.858725 Anserini +test1353 Q0 9294538 23 16.856281 Anserini +test1353 Q0 4924689 24 16.831169 Anserini +test1353 Q0 4924686 25 16.831169 Anserini +test1353 Q0 3609269 26 16.721895 Anserini +test1353 Q0 14860117 27 16.647169 Anserini +test1353 Q0 4831582 28 16.597366 Anserini +test1353 Q0 4389660 29 16.587818 Anserini +test1353 Q0 5710699 30 16.497183 Anserini +test1354 Q0 20353584 1 15.525336 Anserini +test1354 Q0 8372890 2 15.434044 Anserini +test1354 Q0 8372891 3 15.422516 Anserini +test1354 Q0 5884422 4 15.339055 Anserini +test1354 Q0 5884420 5 15.339055 Anserini +test1354 Q0 20330306 6 15.124514 Anserini +test1354 Q0 20353593 7 14.783854 Anserini +test1354 Q0 20330298 8 14.775133 Anserini +test1354 Q0 20330295 9 14.768856 Anserini +test1354 Q0 20353583 10 14.668619 Anserini +test1354 Q0 13193969 11 14.365236 Anserini +test1354 Q0 20330297 12 13.901923 Anserini +test1354 Q0 5884421 13 13.796281 Anserini +test1354 Q0 20330299 14 13.731806 Anserini +test1354 Q0 6867623 15 13.635804 Anserini +test1354 Q0 20353585 16 13.573018 Anserini +test1354 Q0 2524123 17 13.548728 Anserini +test1354 Q0 20331851 18 13.456763 Anserini +test1354 Q0 20330301 19 13.352034 Anserini +test1354 Q0 20331846 20 13.233777 Anserini +test1354 Q0 15887362 21 13.193458 Anserini +test1354 Q0 19258252 22 12.654018 Anserini +test1354 Q0 19421963 23 12.563763 Anserini +test1354 Q0 13131813 24 12.474008 Anserini +test1354 Q0 13131803 25 12.474008 Anserini +test1354 Q0 10596219 26 12.466491 Anserini +test1354 Q0 20330302 27 12.461475 Anserini +test1354 Q0 20170775 28 12.392358 Anserini +test1354 Q0 13818316 29 12.386338 Anserini +test1354 Q0 7393049 30 12.367095 Anserini +test1355 Q0 16493387 1 10.898939 Anserini +test1355 Q0 1843759 2 10.099078 Anserini +test1355 Q0 19990487 3 9.911379 Anserini +test1355 Q0 19990491 4 9.911379 Anserini +test1355 Q0 11946821 5 9.686919 Anserini +test1355 Q0 15593664 6 9.639022 Anserini +test1355 Q0 2919954 7 9.549934 Anserini +test1355 Q0 2919952 8 9.351892 Anserini +test1355 Q0 11698562 9 9.328485 Anserini +test1355 Q0 1924860 10 9.233892 Anserini +test1355 Q0 7226610 11 9.153268 Anserini +test1355 Q0 904790 12 9.148787 Anserini +test1355 Q0 16968567 13 9.116288 Anserini +test1355 Q0 1924863 14 9.104578 Anserini +test1355 Q0 1843739 15 9.104578 Anserini +test1355 Q0 5603479 16 9.042858 Anserini +test1355 Q0 904768 17 8.978416 Anserini +test1355 Q0 1843806 18 8.978416 Anserini +test1355 Q0 14222455 19 8.959744 Anserini +test1355 Q0 3172276 20 8.959744 Anserini +test1355 Q0 4612461 21 8.902973 Anserini +test1355 Q0 1477923 22 8.885105 Anserini +test1355 Q0 8215972 23 8.885105 Anserini +test1355 Q0 902646 24 8.885105 Anserini +test1355 Q0 7795134 25 8.873564 Anserini +test1355 Q0 4467743 26 8.803520 Anserini +test1355 Q0 12495801 27 8.789577 Anserini +test1355 Q0 3544751 28 8.771845 Anserini +test1355 Q0 3172299 29 8.754440 Anserini +test1355 Q0 1581911 30 8.726693 Anserini +test1356 Q0 13214551 1 13.618440 Anserini +test1356 Q0 7242861 2 13.440565 Anserini +test1356 Q0 18578928 3 12.972576 Anserini +test1356 Q0 5750564 4 12.382888 Anserini +test1356 Q0 2075874 5 12.164750 Anserini +test1356 Q0 18149246 6 12.031179 Anserini +test1356 Q0 16549679 7 11.697803 Anserini +test1356 Q0 4128900 8 11.580934 Anserini +test1356 Q0 1836807 9 11.528814 Anserini +test1356 Q0 15358180 10 11.508425 Anserini +test1356 Q0 11415501 11 11.499485 Anserini +test1356 Q0 12782020 12 11.328385 Anserini +test1356 Q0 14144114 13 11.325799 Anserini +test1356 Q0 8866198 14 10.922138 Anserini +test1356 Q0 7242863 15 10.922138 Anserini +test1356 Q0 7242877 16 10.919781 Anserini +test1356 Q0 13358802 17 10.916999 Anserini +test1356 Q0 18397073 18 10.898928 Anserini +test1356 Q0 18548913 19 10.850662 Anserini +test1356 Q0 14589371 20 10.812422 Anserini +test1356 Q0 6344288 21 10.792145 Anserini +test1356 Q0 3471453 22 10.786259 Anserini +test1356 Q0 10147836 23 10.766767 Anserini +test1356 Q0 14144113 24 10.757228 Anserini +test1356 Q0 12864238 25 10.703624 Anserini +test1356 Q0 18141915 26 10.652349 Anserini +test1356 Q0 3789627 27 10.647685 Anserini +test1356 Q0 10147831 28 10.562995 Anserini +test1356 Q0 12432087 29 10.537312 Anserini +test1356 Q0 7545726 30 10.523981 Anserini +test1357 Q0 8900638 1 11.943926 Anserini +test1357 Q0 596711 2 11.506236 Anserini +test1357 Q0 950624 3 11.472683 Anserini +test1357 Q0 3051266 4 11.409960 Anserini +test1357 Q0 950631 5 11.404764 Anserini +test1357 Q0 10041037 6 11.360620 Anserini +test1357 Q0 950712 7 11.315482 Anserini +test1357 Q0 596710 8 11.273361 Anserini +test1357 Q0 11184125 9 11.081120 Anserini +test1357 Q0 2009149 10 11.035209 Anserini +test1357 Q0 20196202 11 11.025485 Anserini +test1357 Q0 3569278 12 10.974195 Anserini +test1357 Q0 8900641 13 10.974195 Anserini +test1357 Q0 950970 14 10.812501 Anserini +test1357 Q0 16123958 15 10.783150 Anserini +test1357 Q0 951071 16 10.780727 Anserini +test1357 Q0 10636956 17 10.707834 Anserini +test1357 Q0 1046950 18 10.604758 Anserini +test1357 Q0 17995528 19 10.597087 Anserini +test1357 Q0 5220982 20 10.596720 Anserini +test1357 Q0 13940070 21 10.594350 Anserini +test1357 Q0 6927249 22 10.594044 Anserini +test1357 Q0 950981 23 10.538194 Anserini +test1357 Q0 8780687 24 10.537499 Anserini +test1357 Q0 950751 25 10.507990 Anserini +test1357 Q0 16215909 26 10.478784 Anserini +test1357 Q0 16938822 27 10.442716 Anserini +test1357 Q0 9143132 28 10.402097 Anserini +test1357 Q0 9143133 29 10.402097 Anserini +test1357 Q0 14681913 30 10.366635 Anserini +test1358 Q0 12895585 1 13.544436 Anserini +test1358 Q0 4866638 2 13.392531 Anserini +test1358 Q0 14051534 3 12.969475 Anserini +test1358 Q0 11310596 4 12.934370 Anserini +test1358 Q0 8041634 5 12.794462 Anserini +test1358 Q0 20219718 6 12.723280 Anserini +test1358 Q0 1940308 7 12.400514 Anserini +test1358 Q0 2103844 8 12.078915 Anserini +test1358 Q0 12493688 9 12.069034 Anserini +test1358 Q0 12750544 10 12.042223 Anserini +test1358 Q0 9542239 11 11.938838 Anserini +test1358 Q0 11288557 12 11.855385 Anserini +test1358 Q0 1823747 13 11.845559 Anserini +test1358 Q0 20043348 14 11.794684 Anserini +test1358 Q0 9832672 15 11.702685 Anserini +test1358 Q0 9420322 16 11.615705 Anserini +test1358 Q0 2601802 17 11.514599 Anserini +test1358 Q0 6479216 18 11.495211 Anserini +test1358 Q0 7697461 19 11.406334 Anserini +test1358 Q0 16076782 20 11.364614 Anserini +test1358 Q0 1920588 21 11.352668 Anserini +test1358 Q0 15877188 22 11.216257 Anserini +test1358 Q0 2155335 23 11.076460 Anserini +test1358 Q0 7616081 24 11.048832 Anserini +test1358 Q0 6433895 25 11.004914 Anserini +test1358 Q0 15632238 26 11.000764 Anserini +test1358 Q0 5585761 27 10.967155 Anserini +test1358 Q0 12010915 28 10.877908 Anserini +test1358 Q0 18025175 29 10.830482 Anserini +test1358 Q0 6722717 30 10.825048 Anserini +test1359 Q0 5636441 1 16.743395 Anserini +test1359 Q0 2397333 2 16.304047 Anserini +test1359 Q0 11560267 3 15.345760 Anserini +test1359 Q0 3957747 4 15.016524 Anserini +test1359 Q0 10517780 5 14.904257 Anserini +test1359 Q0 5174928 6 14.881903 Anserini +test1359 Q0 9023313 7 14.848850 Anserini +test1359 Q0 11044266 8 14.818778 Anserini +test1359 Q0 2103803 9 14.811135 Anserini +test1359 Q0 2397351 10 14.800930 Anserini +test1359 Q0 5070885 11 14.799492 Anserini +test1359 Q0 4062435 12 14.787011 Anserini +test1359 Q0 1309513 13 14.764822 Anserini +test1359 Q0 3589876 14 14.720820 Anserini +test1359 Q0 10517791 15 14.678452 Anserini +test1359 Q0 11667077 16 14.513327 Anserini +test1359 Q0 1361489 17 14.513327 Anserini +test1359 Q0 2615768 18 14.494141 Anserini +test1359 Q0 3377210 19 14.479549 Anserini +test1359 Q0 7248493 20 14.436026 Anserini +test1359 Q0 2523159 21 14.383430 Anserini +test1359 Q0 16944424 22 14.355673 Anserini +test1359 Q0 2615803 23 14.224729 Anserini +test1359 Q0 19095396 24 14.223865 Anserini +test1359 Q0 5070872 25 14.176172 Anserini +test1359 Q0 11461653 26 14.127154 Anserini +test1359 Q0 1361488 27 14.096548 Anserini +test1359 Q0 3552922 28 14.066463 Anserini +test1359 Q0 7281097 29 14.059282 Anserini +test1359 Q0 4091797 30 13.974152 Anserini +test136 Q0 17058713 1 14.574116 Anserini +test136 Q0 10138005 2 14.163062 Anserini +test136 Q0 15145809 3 14.112206 Anserini +test136 Q0 11320882 4 13.883430 Anserini +test136 Q0 18613896 5 13.770548 Anserini +test136 Q0 19741648 6 13.770548 Anserini +test136 Q0 13421831 7 13.770548 Anserini +test136 Q0 13421829 8 13.770548 Anserini +test136 Q0 19741647 9 13.714793 Anserini +test136 Q0 13289846 10 13.402921 Anserini +test136 Q0 7620319 11 13.367827 Anserini +test136 Q0 1700947 12 13.299017 Anserini +test136 Q0 7357208 13 13.226871 Anserini +test136 Q0 3916346 14 13.197546 Anserini +test136 Q0 10138004 15 13.096206 Anserini +test136 Q0 17058707 16 13.029039 Anserini +test136 Q0 11320906 17 13.029039 Anserini +test136 Q0 18613893 18 13.029039 Anserini +test136 Q0 18613903 19 13.029039 Anserini +test136 Q0 12590615 20 13.029039 Anserini +test136 Q0 12590624 21 13.029039 Anserini +test136 Q0 10424681 22 13.007337 Anserini +test136 Q0 14832929 23 13.006793 Anserini +test136 Q0 9039757 24 12.979643 Anserini +test136 Q0 15145812 25 12.962561 Anserini +test136 Q0 1700922 26 12.962561 Anserini +test136 Q0 11320901 27 12.962561 Anserini +test136 Q0 9039756 28 12.931403 Anserini +test136 Q0 1700940 29 12.789465 Anserini +test136 Q0 3709961 30 12.696575 Anserini +test1360 Q0 3633133 1 12.143332 Anserini +test1360 Q0 1418451 2 11.800184 Anserini +test1360 Q0 3633129 3 11.511724 Anserini +test1360 Q0 7477974 4 11.303265 Anserini +test1360 Q0 12418265 5 11.169263 Anserini +test1360 Q0 10995658 6 10.846031 Anserini +test1360 Q0 982962 7 10.838652 Anserini +test1360 Q0 11431051 8 10.727108 Anserini +test1360 Q0 3633139 9 10.687652 Anserini +test1360 Q0 19857223 10 10.618059 Anserini +test1360 Q0 2723286 11 10.482813 Anserini +test1360 Q0 4066649 12 10.317017 Anserini +test1360 Q0 8928352 13 10.267138 Anserini +test1360 Q0 18569840 14 10.216907 Anserini +test1360 Q0 3633130 15 10.210680 Anserini +test1360 Q0 3633138 16 10.196203 Anserini +test1360 Q0 12418256 17 10.175539 Anserini +test1360 Q0 10216476 18 10.161989 Anserini +test1360 Q0 18376172 19 10.145260 Anserini +test1360 Q0 5896135 20 10.140623 Anserini +test1360 Q0 11034994 21 10.116336 Anserini +test1360 Q0 8592423 22 10.060995 Anserini +test1360 Q0 71642 23 10.034634 Anserini +test1360 Q0 3633131 24 10.030203 Anserini +test1360 Q0 6793493 25 10.015182 Anserini +test1360 Q0 6793496 26 10.015182 Anserini +test1360 Q0 43304 27 9.977570 Anserini +test1360 Q0 3687640 28 9.967495 Anserini +test1360 Q0 7469885 29 9.962958 Anserini +test1360 Q0 19857222 30 9.958202 Anserini +test1361 Q0 816837 1 14.635313 Anserini +test1361 Q0 7872901 2 13.910165 Anserini +test1361 Q0 801750 3 13.694075 Anserini +test1361 Q0 2357575 4 13.527351 Anserini +test1361 Q0 4310745 5 13.417713 Anserini +test1361 Q0 793793 6 13.356766 Anserini +test1361 Q0 2768214 7 13.350397 Anserini +test1361 Q0 1639025 8 13.311851 Anserini +test1361 Q0 1609378 9 13.230042 Anserini +test1361 Q0 801848 10 13.230042 Anserini +test1361 Q0 1639020 11 13.137137 Anserini +test1361 Q0 4496739 12 13.116930 Anserini +test1361 Q0 482011 13 13.055765 Anserini +test1361 Q0 8282603 14 13.019549 Anserini +test1361 Q0 3991257 15 12.978813 Anserini +test1361 Q0 8267259 16 12.978505 Anserini +test1361 Q0 5813512 17 12.948714 Anserini +test1361 Q0 6995984 18 12.866070 Anserini +test1361 Q0 801837 19 12.847253 Anserini +test1361 Q0 18092751 20 12.784977 Anserini +test1361 Q0 9319947 21 12.784977 Anserini +test1361 Q0 6822526 22 12.774397 Anserini +test1361 Q0 18092749 23 12.681520 Anserini +test1361 Q0 5463212 24 12.638885 Anserini +test1361 Q0 2539858 25 12.635107 Anserini +test1361 Q0 8698419 26 12.602572 Anserini +test1361 Q0 9964127 27 12.584785 Anserini +test1361 Q0 13631861 28 12.565553 Anserini +test1361 Q0 793786 29 12.452402 Anserini +test1361 Q0 801763 30 12.377316 Anserini +test1362 Q0 17700366 1 18.884308 Anserini +test1362 Q0 16572842 2 16.632673 Anserini +test1362 Q0 17700356 3 15.108931 Anserini +test1362 Q0 17700357 4 15.063880 Anserini +test1362 Q0 4547290 5 14.783985 Anserini +test1362 Q0 17700367 6 14.524401 Anserini +test1362 Q0 17700360 7 14.472723 Anserini +test1362 Q0 3995644 8 14.472723 Anserini +test1362 Q0 3995646 9 13.708703 Anserini +test1362 Q0 6195577 10 13.184884 Anserini +test1362 Q0 17700365 11 12.977780 Anserini +test1362 Q0 17700364 12 12.838224 Anserini +test1362 Q0 1485942 13 12.701637 Anserini +test1362 Q0 6416992 14 12.701637 Anserini +test1362 Q0 13095902 15 11.751287 Anserini +test1362 Q0 6383520 16 11.668589 Anserini +test1362 Q0 1489775 17 11.430805 Anserini +test1362 Q0 3764709 18 11.177030 Anserini +test1362 Q0 13447468 19 11.149794 Anserini +test1362 Q0 8482698 20 10.963838 Anserini +test1362 Q0 2460945 21 10.916961 Anserini +test1362 Q0 13447366 22 10.902929 Anserini +test1362 Q0 639655 23 10.898577 Anserini +test1362 Q0 5259569 24 10.898577 Anserini +test1362 Q0 1489846 25 10.748090 Anserini +test1362 Q0 1489859 26 10.684633 Anserini +test1362 Q0 2460946 27 10.684633 Anserini +test1362 Q0 6416991 28 10.662734 Anserini +test1362 Q0 8473242 29 10.540488 Anserini +test1362 Q0 2566252 30 10.532210 Anserini +test1363 Q0 16792283 1 19.042606 Anserini +test1363 Q0 16792284 2 18.903193 Anserini +test1363 Q0 16792285 3 15.188727 Anserini +test1363 Q0 16792280 4 15.099877 Anserini +test1363 Q0 16792274 5 14.895576 Anserini +test1363 Q0 16792278 6 14.662401 Anserini +test1363 Q0 16792271 7 14.224186 Anserini +test1363 Q0 16792281 8 13.769906 Anserini +test1363 Q0 16792268 9 13.351879 Anserini +test1363 Q0 16792267 10 12.662832 Anserini +test1363 Q0 16792279 11 12.509089 Anserini +test1363 Q0 16792282 12 12.113457 Anserini +test1363 Q0 16792272 13 12.042130 Anserini +test1363 Q0 16792275 14 12.042130 Anserini +test1363 Q0 16792273 15 11.599214 Anserini +test1363 Q0 16792266 16 11.540165 Anserini +test1363 Q0 16792277 17 11.524854 Anserini +test1363 Q0 3905031 18 11.201232 Anserini +test1363 Q0 4655156 19 11.177036 Anserini +test1363 Q0 16406262 20 11.008495 Anserini +test1363 Q0 16792269 21 10.987376 Anserini +test1363 Q0 16792270 22 10.987376 Anserini +test1363 Q0 6298996 23 10.840762 Anserini +test1363 Q0 8673677 24 10.764606 Anserini +test1363 Q0 10928410 25 10.745330 Anserini +test1363 Q0 16406264 26 10.723519 Anserini +test1363 Q0 2421940 27 10.589735 Anserini +test1363 Q0 11109288 28 10.578904 Anserini +test1363 Q0 16792265 29 10.522780 Anserini +test1363 Q0 16792286 30 10.414845 Anserini +test1364 Q0 12116637 1 12.762139 Anserini +test1364 Q0 12116651 2 12.760033 Anserini +test1364 Q0 17523089 3 12.138792 Anserini +test1364 Q0 12116657 4 12.138792 Anserini +test1364 Q0 12116625 5 12.050003 Anserini +test1364 Q0 12116658 6 11.910549 Anserini +test1364 Q0 12116641 7 11.824124 Anserini +test1364 Q0 17444984 8 11.659260 Anserini +test1364 Q0 20632104 9 11.626987 Anserini +test1364 Q0 12116642 10 11.329720 Anserini +test1364 Q0 12116644 11 11.248061 Anserini +test1364 Q0 12116656 12 11.228157 Anserini +test1364 Q0 12116649 13 11.119637 Anserini +test1364 Q0 10406085 14 11.014730 Anserini +test1364 Q0 12116648 15 10.978388 Anserini +test1364 Q0 12116652 16 10.972013 Anserini +test1364 Q0 12116645 17 10.966597 Anserini +test1364 Q0 12116650 18 10.868104 Anserini +test1364 Q0 14202287 19 10.843805 Anserini +test1364 Q0 13302318 20 10.738855 Anserini +test1364 Q0 4147691 21 10.738855 Anserini +test1364 Q0 2746911 22 10.705764 Anserini +test1364 Q0 12116654 23 10.688935 Anserini +test1364 Q0 1174256 24 10.668348 Anserini +test1364 Q0 12116655 25 10.647393 Anserini +test1364 Q0 12116646 26 10.562866 Anserini +test1364 Q0 12116634 27 10.484018 Anserini +test1364 Q0 12116640 28 10.259308 Anserini +test1364 Q0 1296594 29 10.224985 Anserini +test1364 Q0 17868590 30 10.224868 Anserini +test1365 Q0 12139154 1 17.958687 Anserini +test1365 Q0 12139155 2 17.958687 Anserini +test1365 Q0 8502450 3 17.253021 Anserini +test1365 Q0 8502449 4 17.201147 Anserini +test1365 Q0 8502458 5 17.029192 Anserini +test1365 Q0 8502452 6 16.681192 Anserini +test1365 Q0 8502453 7 13.209965 Anserini +test1365 Q0 8502451 8 13.111323 Anserini +test1365 Q0 8502454 9 13.077579 Anserini +test1365 Q0 8502455 10 13.008089 Anserini +test1365 Q0 7545917 11 12.867053 Anserini +test1365 Q0 10667857 12 12.354458 Anserini +test1365 Q0 8502457 13 12.224402 Anserini +test1365 Q0 10595447 14 11.972335 Anserini +test1365 Q0 8502456 15 11.972335 Anserini +test1365 Q0 16427435 16 11.951637 Anserini +test1365 Q0 16427437 17 11.544674 Anserini +test1365 Q0 18729161 18 11.505478 Anserini +test1365 Q0 7545916 19 11.486697 Anserini +test1365 Q0 16211539 20 11.120888 Anserini +test1365 Q0 10692878 21 11.072051 Anserini +test1365 Q0 17098950 22 11.056011 Anserini +test1365 Q0 16211540 23 11.046637 Anserini +test1365 Q0 17390152 24 11.025585 Anserini +test1365 Q0 16211536 25 11.014708 Anserini +test1365 Q0 18729157 26 10.924997 Anserini +test1365 Q0 18039194 27 10.903124 Anserini +test1365 Q0 13845449 28 10.890185 Anserini +test1365 Q0 18039195 29 10.847492 Anserini +test1365 Q0 19110090 30 10.837766 Anserini +test1366 Q0 16588133 1 13.488342 Anserini +test1366 Q0 16588132 2 13.427238 Anserini +test1366 Q0 16556609 3 13.280454 Anserini +test1366 Q0 16588134 4 12.987524 Anserini +test1366 Q0 20014084 5 12.623981 Anserini +test1366 Q0 582360 6 12.551713 Anserini +test1366 Q0 16588130 7 12.488473 Anserini +test1366 Q0 16588137 8 12.345901 Anserini +test1366 Q0 20356226 9 12.139715 Anserini +test1366 Q0 1703981 10 11.491612 Anserini +test1366 Q0 5810701 11 11.477304 Anserini +test1366 Q0 19854545 12 11.451756 Anserini +test1366 Q0 57276 13 11.399014 Anserini +test1366 Q0 582355 14 11.286655 Anserini +test1366 Q0 16556608 15 11.281296 Anserini +test1366 Q0 582359 16 11.270307 Anserini +test1366 Q0 582372 17 11.230144 Anserini +test1366 Q0 63224 18 11.079425 Anserini +test1366 Q0 16588129 19 11.050264 Anserini +test1366 Q0 366173 20 11.037119 Anserini +test1366 Q0 20965962 21 11.017550 Anserini +test1366 Q0 1666326 22 10.794122 Anserini +test1366 Q0 2886348 23 10.755752 Anserini +test1366 Q0 397386 24 10.648506 Anserini +test1366 Q0 19160343 25 10.525847 Anserini +test1366 Q0 19107798 26 10.505181 Anserini +test1366 Q0 1704005 27 10.457150 Anserini +test1366 Q0 5328274 28 10.452955 Anserini +test1366 Q0 15622771 29 10.415487 Anserini +test1366 Q0 17352453 30 10.376528 Anserini +test1367 Q0 19723529 1 25.810072 Anserini +test1367 Q0 19975753 2 23.380373 Anserini +test1367 Q0 18872604 3 23.340096 Anserini +test1367 Q0 17245281 4 23.230473 Anserini +test1367 Q0 18085255 5 22.888281 Anserini +test1367 Q0 18085262 6 22.888281 Anserini +test1367 Q0 17228347 7 22.460567 Anserini +test1367 Q0 20767946 8 21.910572 Anserini +test1367 Q0 19723518 9 21.610800 Anserini +test1367 Q0 17228379 10 21.608284 Anserini +test1367 Q0 19723523 11 21.560202 Anserini +test1367 Q0 19723530 12 21.202734 Anserini +test1367 Q0 18872611 13 21.042542 Anserini +test1367 Q0 20766283 14 20.888102 Anserini +test1367 Q0 17228351 15 20.757507 Anserini +test1367 Q0 20766284 16 20.755981 Anserini +test1367 Q0 19723519 17 20.721691 Anserini +test1367 Q0 19975756 18 20.647715 Anserini +test1367 Q0 18085256 19 20.616859 Anserini +test1367 Q0 17245283 20 20.450336 Anserini +test1367 Q0 17228350 21 20.399618 Anserini +test1367 Q0 19975754 22 19.667759 Anserini +test1367 Q0 17228364 23 19.570278 Anserini +test1367 Q0 13746198 24 19.472477 Anserini +test1367 Q0 17228354 25 19.471863 Anserini +test1367 Q0 12509844 26 18.896648 Anserini +test1367 Q0 17228368 27 18.877249 Anserini +test1367 Q0 18085259 28 18.837921 Anserini +test1367 Q0 18872607 29 18.813175 Anserini +test1367 Q0 20767947 30 18.734777 Anserini +test1368 Q0 19009525 1 21.057428 Anserini +test1368 Q0 19009526 2 21.057428 Anserini +test1368 Q0 823292 3 20.485111 Anserini +test1368 Q0 823308 4 20.431189 Anserini +test1368 Q0 19010214 5 19.513561 Anserini +test1368 Q0 19010215 6 19.383181 Anserini +test1368 Q0 823305 7 18.971361 Anserini +test1368 Q0 4328248 8 18.720556 Anserini +test1368 Q0 11993407 9 18.320715 Anserini +test1368 Q0 11993401 10 18.320715 Anserini +test1368 Q0 823293 11 18.268969 Anserini +test1368 Q0 823306 12 17.888203 Anserini +test1368 Q0 823298 13 17.423855 Anserini +test1368 Q0 823304 14 17.414831 Anserini +test1368 Q0 823294 15 17.257755 Anserini +test1368 Q0 4944841 16 17.162893 Anserini +test1368 Q0 14343499 17 16.648718 Anserini +test1368 Q0 5813873 18 16.539650 Anserini +test1368 Q0 4328247 19 15.809028 Anserini +test1368 Q0 4204842 20 14.951095 Anserini +test1368 Q0 17517453 21 14.712367 Anserini +test1368 Q0 539287 22 14.496310 Anserini +test1368 Q0 2095575 23 14.480265 Anserini +test1368 Q0 7791385 24 14.467442 Anserini +test1368 Q0 3194427 25 14.463496 Anserini +test1368 Q0 823307 26 14.462715 Anserini +test1368 Q0 4328235 27 14.196436 Anserini +test1368 Q0 14343495 28 14.191757 Anserini +test1368 Q0 4104960 29 14.191010 Anserini +test1368 Q0 4070844 30 14.191010 Anserini +test1369 Q0 2424145 1 12.612014 Anserini +test1369 Q0 18553298 2 12.218415 Anserini +test1369 Q0 5642610 3 12.198339 Anserini +test1369 Q0 5282247 4 12.168803 Anserini +test1369 Q0 8079181 5 12.071107 Anserini +test1369 Q0 8079192 6 12.071107 Anserini +test1369 Q0 20409532 7 11.757011 Anserini +test1369 Q0 20071633 8 11.652878 Anserini +test1369 Q0 8053364 9 11.612211 Anserini +test1369 Q0 5282256 10 11.416912 Anserini +test1369 Q0 3790098 11 11.408466 Anserini +test1369 Q0 11174635 12 11.407081 Anserini +test1369 Q0 20071637 13 11.395717 Anserini +test1369 Q0 8053367 14 11.378914 Anserini +test1369 Q0 7411071 15 11.374825 Anserini +test1369 Q0 6915921 16 11.309541 Anserini +test1369 Q0 18035834 17 11.302989 Anserini +test1369 Q0 18820345 18 11.302454 Anserini +test1369 Q0 5282276 19 11.283545 Anserini +test1369 Q0 6915993 20 11.273343 Anserini +test1369 Q0 11174672 21 11.265965 Anserini +test1369 Q0 2679607 22 11.254224 Anserini +test1369 Q0 14172377 23 11.249290 Anserini +test1369 Q0 20071669 24 11.247731 Anserini +test1369 Q0 11174640 25 11.229630 Anserini +test1369 Q0 7426413 26 11.220471 Anserini +test1369 Q0 6915952 27 11.218590 Anserini +test1369 Q0 12123634 28 11.122725 Anserini +test1369 Q0 4187287 29 11.121286 Anserini +test1369 Q0 5420227 30 11.099428 Anserini +test137 Q0 2886625 1 11.635995 Anserini +test137 Q0 4797477 2 11.368011 Anserini +test137 Q0 7405964 3 11.061916 Anserini +test137 Q0 15102375 4 10.977559 Anserini +test137 Q0 6877072 5 10.781398 Anserini +test137 Q0 2548913 6 10.712771 Anserini +test137 Q0 2548912 7 10.540009 Anserini +test137 Q0 12368177 8 10.507091 Anserini +test137 Q0 7048493 9 10.252113 Anserini +test137 Q0 9194134 10 10.216781 Anserini +test137 Q0 14697737 11 10.168536 Anserini +test137 Q0 14240077 12 10.114525 Anserini +test137 Q0 13626222 13 10.063439 Anserini +test137 Q0 5050977 14 10.061863 Anserini +test137 Q0 4214155 15 10.045787 Anserini +test137 Q0 2294916 16 9.980810 Anserini +test137 Q0 4307660 17 9.965946 Anserini +test137 Q0 7989213 18 9.963562 Anserini +test137 Q0 8819508 19 9.957639 Anserini +test137 Q0 3990193 20 9.925522 Anserini +test137 Q0 5390033 21 9.917992 Anserini +test137 Q0 14104319 22 9.901466 Anserini +test137 Q0 11692489 23 9.858774 Anserini +test137 Q0 1080480 24 9.838859 Anserini +test137 Q0 418833 25 9.806010 Anserini +test137 Q0 1562657 26 9.791983 Anserini +test137 Q0 13384689 27 9.702822 Anserini +test137 Q0 2886649 28 9.701016 Anserini +test137 Q0 4214148 29 9.694877 Anserini +test137 Q0 13214415 30 9.689060 Anserini +test1370 Q0 8306456 1 12.178669 Anserini +test1370 Q0 6990459 2 11.151892 Anserini +test1370 Q0 8306457 3 11.136996 Anserini +test1370 Q0 11837561 4 11.095512 Anserini +test1370 Q0 9382772 5 11.076956 Anserini +test1370 Q0 16461384 6 10.880856 Anserini +test1370 Q0 16461379 7 10.880856 Anserini +test1370 Q0 10394436 8 10.692712 Anserini +test1370 Q0 20836126 9 10.649795 Anserini +test1370 Q0 9258680 10 10.551012 Anserini +test1370 Q0 14231064 11 10.494231 Anserini +test1370 Q0 8671194 12 10.490052 Anserini +test1370 Q0 5392231 13 10.425375 Anserini +test1370 Q0 1840163 14 10.403895 Anserini +test1370 Q0 5509288 15 10.351280 Anserini +test1370 Q0 10082036 16 10.291861 Anserini +test1370 Q0 16798309 17 10.267768 Anserini +test1370 Q0 18257359 18 10.267768 Anserini +test1370 Q0 5509289 19 10.264092 Anserini +test1370 Q0 9975226 20 10.260624 Anserini +test1370 Q0 9300998 21 10.249388 Anserini +test1370 Q0 16798306 22 10.219808 Anserini +test1370 Q0 5070673 23 10.179739 Anserini +test1370 Q0 1840162 24 10.176937 Anserini +test1370 Q0 11210526 25 10.126645 Anserini +test1370 Q0 7436645 26 10.042176 Anserini +test1370 Q0 18257360 27 10.041763 Anserini +test1370 Q0 11210524 28 9.959098 Anserini +test1370 Q0 4407127 29 9.922958 Anserini +test1370 Q0 3749999 30 9.897373 Anserini +test1371 Q0 2278650 1 11.812051 Anserini +test1371 Q0 2278662 2 10.315122 Anserini +test1371 Q0 10850242 3 10.038315 Anserini +test1371 Q0 10850247 4 10.001569 Anserini +test1371 Q0 9164984 5 9.874763 Anserini +test1371 Q0 2278660 6 9.781712 Anserini +test1371 Q0 19362050 7 9.620275 Anserini +test1371 Q0 13368821 8 9.531030 Anserini +test1371 Q0 9819269 9 9.443479 Anserini +test1371 Q0 7151899 10 9.397882 Anserini +test1371 Q0 18940739 11 9.373609 Anserini +test1371 Q0 17305785 12 9.213877 Anserini +test1371 Q0 5128662 13 9.037177 Anserini +test1371 Q0 16282669 14 9.030725 Anserini +test1371 Q0 13362543 15 8.939996 Anserini +test1371 Q0 16282665 16 8.914853 Anserini +test1371 Q0 3440103 17 8.906413 Anserini +test1371 Q0 12445101 18 8.878672 Anserini +test1371 Q0 12637438 19 8.844882 Anserini +test1371 Q0 10810993 20 8.844882 Anserini +test1371 Q0 10810998 21 8.844882 Anserini +test1371 Q0 13692551 22 8.835424 Anserini +test1371 Q0 18114678 23 8.832078 Anserini +test1371 Q0 13362544 24 8.765606 Anserini +test1371 Q0 19353677 25 8.751773 Anserini +test1371 Q0 19353687 26 8.751773 Anserini +test1371 Q0 13368817 27 8.751773 Anserini +test1371 Q0 19072916 28 8.751773 Anserini +test1371 Q0 3898861 29 8.723138 Anserini +test1371 Q0 18761782 30 8.622488 Anserini +test1372 Q0 5880020 1 13.951016 Anserini +test1372 Q0 1730855 2 13.872979 Anserini +test1372 Q0 5121760 3 13.690039 Anserini +test1372 Q0 1730859 4 13.279208 Anserini +test1372 Q0 5121765 5 13.078676 Anserini +test1372 Q0 5121759 6 12.957453 Anserini +test1372 Q0 5121771 7 12.895853 Anserini +test1372 Q0 7275359 8 12.870373 Anserini +test1372 Q0 5312094 9 12.798679 Anserini +test1372 Q0 1730867 10 12.667292 Anserini +test1372 Q0 5121762 11 12.643003 Anserini +test1372 Q0 264662 12 12.490541 Anserini +test1372 Q0 5121763 13 12.229760 Anserini +test1372 Q0 9051338 14 12.214277 Anserini +test1372 Q0 4926687 15 12.194319 Anserini +test1372 Q0 4923637 16 12.194319 Anserini +test1372 Q0 7275360 17 12.167234 Anserini +test1372 Q0 5121764 18 12.167234 Anserini +test1372 Q0 5121768 19 12.074236 Anserini +test1372 Q0 5121770 20 12.011053 Anserini +test1372 Q0 5121769 21 11.956030 Anserini +test1372 Q0 20292805 22 11.868757 Anserini +test1372 Q0 6397589 23 11.758518 Anserini +test1372 Q0 12375292 24 11.728101 Anserini +test1372 Q0 5121766 25 11.718643 Anserini +test1372 Q0 5406242 26 11.674992 Anserini +test1372 Q0 5121767 27 11.619863 Anserini +test1372 Q0 6926479 28 11.566026 Anserini +test1372 Q0 13635935 29 11.527425 Anserini +test1372 Q0 5812276 30 11.389631 Anserini +test1373 Q0 11472813 1 16.647131 Anserini +test1373 Q0 176020 2 16.613811 Anserini +test1373 Q0 176010 3 15.690163 Anserini +test1373 Q0 9106566 4 15.615458 Anserini +test1373 Q0 13701539 5 15.602401 Anserini +test1373 Q0 176023 6 15.592977 Anserini +test1373 Q0 17270087 7 15.561188 Anserini +test1373 Q0 224981 8 15.401616 Anserini +test1373 Q0 3818618 9 15.289954 Anserini +test1373 Q0 176031 10 15.237611 Anserini +test1373 Q0 176019 11 15.212972 Anserini +test1373 Q0 176024 12 15.114360 Anserini +test1373 Q0 107177 13 14.993176 Anserini +test1373 Q0 462213 14 14.973824 Anserini +test1373 Q0 176012 15 14.792230 Anserini +test1373 Q0 5550481 16 14.718331 Anserini +test1373 Q0 2559932 17 14.676334 Anserini +test1373 Q0 3809863 18 14.619690 Anserini +test1373 Q0 7034 19 14.603603 Anserini +test1373 Q0 305270 20 14.577909 Anserini +test1373 Q0 13701547 21 14.539534 Anserini +test1373 Q0 13701517 22 14.538848 Anserini +test1373 Q0 17356725 23 14.521587 Anserini +test1373 Q0 679040 24 14.456033 Anserini +test1373 Q0 1811658 25 14.374744 Anserini +test1373 Q0 91888 26 14.257063 Anserini +test1373 Q0 176018 27 14.220819 Anserini +test1373 Q0 176017 28 14.178108 Anserini +test1373 Q0 126713 29 14.158298 Anserini +test1373 Q0 7946219 30 14.132843 Anserini +test1374 Q0 14308067 1 17.537420 Anserini +test1374 Q0 5120396 2 17.074194 Anserini +test1374 Q0 5233611 3 16.862722 Anserini +test1374 Q0 5120401 4 16.839548 Anserini +test1374 Q0 12393536 5 16.360538 Anserini +test1374 Q0 12393521 6 15.737076 Anserini +test1374 Q0 5233624 7 15.660051 Anserini +test1374 Q0 7498643 8 15.306394 Anserini +test1374 Q0 12393537 9 15.263795 Anserini +test1374 Q0 5233618 10 15.223278 Anserini +test1374 Q0 5233614 11 15.172238 Anserini +test1374 Q0 5233619 12 14.857092 Anserini +test1374 Q0 17178392 13 14.646747 Anserini +test1374 Q0 5120400 14 14.582462 Anserini +test1374 Q0 18108659 15 14.495949 Anserini +test1374 Q0 18108658 16 14.361701 Anserini +test1374 Q0 3728709 17 14.334506 Anserini +test1374 Q0 5941798 18 14.060950 Anserini +test1374 Q0 5410280 19 13.789804 Anserini +test1374 Q0 5120397 20 13.789804 Anserini +test1374 Q0 15785137 21 13.651605 Anserini +test1374 Q0 5233613 22 13.607961 Anserini +test1374 Q0 19869418 23 13.496383 Anserini +test1374 Q0 19869419 24 13.496383 Anserini +test1374 Q0 5233617 25 13.354306 Anserini +test1374 Q0 16684639 26 13.292063 Anserini +test1374 Q0 12393520 27 13.215189 Anserini +test1374 Q0 13856811 28 13.128257 Anserini +test1374 Q0 13856812 29 13.128257 Anserini +test1374 Q0 9830481 30 13.052135 Anserini +test1375 Q0 334887 1 19.017153 Anserini +test1375 Q0 12454186 2 18.763647 Anserini +test1375 Q0 11821233 3 17.760201 Anserini +test1375 Q0 13810647 4 17.484085 Anserini +test1375 Q0 20595720 5 16.924952 Anserini +test1375 Q0 12262533 6 16.923279 Anserini +test1375 Q0 11821222 7 16.746449 Anserini +test1375 Q0 5729851 8 16.600523 Anserini +test1375 Q0 334928 9 16.508606 Anserini +test1375 Q0 5729854 10 16.338003 Anserini +test1375 Q0 11371452 11 16.308149 Anserini +test1375 Q0 11371435 12 16.240021 Anserini +test1375 Q0 5942510 13 16.235687 Anserini +test1375 Q0 13800709 14 16.203318 Anserini +test1375 Q0 7609733 15 16.150131 Anserini +test1375 Q0 20916334 16 16.148201 Anserini +test1375 Q0 7609752 17 16.140039 Anserini +test1375 Q0 5003930 18 15.960463 Anserini +test1375 Q0 7090045 19 15.869297 Anserini +test1375 Q0 18208945 20 15.704774 Anserini +test1375 Q0 18208941 21 15.591142 Anserini +test1375 Q0 20939738 22 15.573977 Anserini +test1375 Q0 64111 23 15.559848 Anserini +test1375 Q0 850512 24 15.516972 Anserini +test1375 Q0 13767500 25 15.373815 Anserini +test1375 Q0 8196191 26 15.334166 Anserini +test1375 Q0 8539594 27 15.332722 Anserini +test1375 Q0 334906 28 15.142973 Anserini +test1375 Q0 13075240 29 15.140943 Anserini +test1375 Q0 409032 30 15.099865 Anserini +test1376 Q0 2564465 1 12.660326 Anserini +test1376 Q0 1435340 2 11.602606 Anserini +test1376 Q0 11163689 3 11.523564 Anserini +test1376 Q0 1937271 4 11.366220 Anserini +test1376 Q0 2564470 5 11.297100 Anserini +test1376 Q0 2564450 6 11.018732 Anserini +test1376 Q0 2564467 7 10.796947 Anserini +test1376 Q0 7842415 8 10.409085 Anserini +test1376 Q0 18472565 9 10.381517 Anserini +test1376 Q0 2564469 10 10.347118 Anserini +test1376 Q0 9572387 11 10.317308 Anserini +test1376 Q0 7282741 12 10.188757 Anserini +test1376 Q0 17087184 13 10.133320 Anserini +test1376 Q0 2564480 14 9.911719 Anserini +test1376 Q0 258861 15 9.853809 Anserini +test1376 Q0 10651294 16 9.794844 Anserini +test1376 Q0 12572093 17 9.638855 Anserini +test1376 Q0 2564458 18 9.515671 Anserini +test1376 Q0 11163693 19 9.439104 Anserini +test1376 Q0 17003241 20 9.409880 Anserini +test1376 Q0 19802947 21 9.348261 Anserini +test1376 Q0 11163707 22 9.322655 Anserini +test1376 Q0 15886841 23 9.239079 Anserini +test1376 Q0 2291249 24 9.202245 Anserini +test1376 Q0 13826736 25 9.175492 Anserini +test1376 Q0 6043146 26 9.131079 Anserini +test1376 Q0 13826740 27 9.103849 Anserini +test1376 Q0 1703776 28 9.077406 Anserini +test1376 Q0 14218695 29 9.009734 Anserini +test1376 Q0 11972422 30 8.977891 Anserini +test1377 Q0 18155038 1 16.679745 Anserini +test1377 Q0 15771542 2 16.505533 Anserini +test1377 Q0 9426694 3 16.304962 Anserini +test1377 Q0 7496793 4 16.287998 Anserini +test1377 Q0 5253278 5 16.222635 Anserini +test1377 Q0 5180921 6 16.167992 Anserini +test1377 Q0 7315806 7 16.158695 Anserini +test1377 Q0 1594697 8 16.147646 Anserini +test1377 Q0 15771540 9 15.982915 Anserini +test1377 Q0 12350608 10 15.970454 Anserini +test1377 Q0 9609516 11 15.787006 Anserini +test1377 Q0 7315804 12 15.712428 Anserini +test1377 Q0 5253280 13 15.630754 Anserini +test1377 Q0 18885127 14 15.543327 Anserini +test1377 Q0 5180946 15 15.537007 Anserini +test1377 Q0 6428480 16 15.520434 Anserini +test1377 Q0 7496795 17 15.501427 Anserini +test1377 Q0 8110662 18 15.473052 Anserini +test1377 Q0 13951154 19 15.393435 Anserini +test1377 Q0 10577137 20 15.329807 Anserini +test1377 Q0 10577138 21 15.319695 Anserini +test1377 Q0 9500885 22 15.276098 Anserini +test1377 Q0 18885125 23 15.257496 Anserini +test1377 Q0 17037884 24 15.243848 Anserini +test1377 Q0 10498859 25 15.207341 Anserini +test1377 Q0 16198733 26 15.181906 Anserini +test1377 Q0 18403286 27 15.171733 Anserini +test1377 Q0 8161909 28 15.129557 Anserini +test1377 Q0 11872461 29 15.119904 Anserini +test1377 Q0 8415406 30 14.984474 Anserini +test1378 Q0 2413749 1 10.455338 Anserini +test1378 Q0 17177216 2 10.244353 Anserini +test1378 Q0 11982643 3 10.191871 Anserini +test1378 Q0 20117681 4 9.967803 Anserini +test1378 Q0 3789627 5 9.850471 Anserini +test1378 Q0 19420363 6 9.679790 Anserini +test1378 Q0 5260636 7 9.534240 Anserini +test1378 Q0 394667 8 9.502986 Anserini +test1378 Q0 3938334 9 9.462496 Anserini +test1378 Q0 12721824 10 9.346064 Anserini +test1378 Q0 6072565 11 9.283472 Anserini +test1378 Q0 7031705 12 9.158398 Anserini +test1378 Q0 3201593 13 9.047177 Anserini +test1378 Q0 14984791 14 9.046000 Anserini +test1378 Q0 398568 15 9.004313 Anserini +test1378 Q0 3095972 16 8.991576 Anserini +test1378 Q0 17865054 17 8.990865 Anserini +test1378 Q0 4278804 18 8.955502 Anserini +test1378 Q0 12557733 19 8.915997 Anserini +test1378 Q0 8662572 20 8.907947 Anserini +test1378 Q0 20229059 21 8.903463 Anserini +test1378 Q0 4266614 22 8.887432 Anserini +test1378 Q0 5576597 23 8.875524 Anserini +test1378 Q0 5024123 24 8.865707 Anserini +test1378 Q0 7536523 25 8.830078 Anserini +test1378 Q0 8429112 26 8.817242 Anserini +test1378 Q0 15523526 27 8.800706 Anserini +test1378 Q0 20468041 28 8.778483 Anserini +test1378 Q0 554803 29 8.742874 Anserini +test1378 Q0 17180034 30 8.737120 Anserini +test1379 Q0 6030858 1 11.826632 Anserini +test1379 Q0 2378314 2 11.732809 Anserini +test1379 Q0 13895936 3 11.436208 Anserini +test1379 Q0 13834594 4 11.429530 Anserini +test1379 Q0 13834593 5 11.368290 Anserini +test1379 Q0 12980592 6 11.220489 Anserini +test1379 Q0 2876946 7 11.077284 Anserini +test1379 Q0 2890214 8 10.932619 Anserini +test1379 Q0 975496 9 10.817897 Anserini +test1379 Q0 5016901 10 10.738308 Anserini +test1379 Q0 12761271 11 10.722668 Anserini +test1379 Q0 8340447 12 10.661004 Anserini +test1379 Q0 14820690 13 10.648950 Anserini +test1379 Q0 2378302 14 10.363708 Anserini +test1379 Q0 4049861 15 10.361214 Anserini +test1379 Q0 12827720 16 10.350856 Anserini +test1379 Q0 6887818 17 10.290181 Anserini +test1379 Q0 3926509 18 10.250731 Anserini +test1379 Q0 13146778 19 10.237367 Anserini +test1379 Q0 18122268 20 10.229467 Anserini +test1379 Q0 8756224 21 10.185866 Anserini +test1379 Q0 7643720 22 10.072890 Anserini +test1379 Q0 19331802 23 10.052359 Anserini +test1379 Q0 573279 24 10.022858 Anserini +test1379 Q0 2699556 25 10.013112 Anserini +test1379 Q0 16233610 26 10.005856 Anserini +test1379 Q0 14295301 27 9.966917 Anserini +test1379 Q0 14237660 28 9.941348 Anserini +test1379 Q0 247585 29 9.933663 Anserini +test1379 Q0 14093393 30 9.893689 Anserini +test138 Q0 6056807 1 11.530710 Anserini +test138 Q0 8788627 2 11.297391 Anserini +test138 Q0 497620 3 10.901474 Anserini +test138 Q0 3663790 4 10.828773 Anserini +test138 Q0 10064483 5 10.749165 Anserini +test138 Q0 15813831 6 10.319173 Anserini +test138 Q0 4971031 7 10.299911 Anserini +test138 Q0 3549948 8 10.159640 Anserini +test138 Q0 2014684 9 10.140279 Anserini +test138 Q0 3912454 10 10.062535 Anserini +test138 Q0 3549949 11 9.999345 Anserini +test138 Q0 2024566 12 9.650122 Anserini +test138 Q0 9141482 13 9.630538 Anserini +test138 Q0 956274 14 9.623348 Anserini +test138 Q0 20269816 15 9.589383 Anserini +test138 Q0 4654663 16 9.520471 Anserini +test138 Q0 14879913 17 9.482944 Anserini +test138 Q0 13518075 18 9.429766 Anserini +test138 Q0 3353917 19 9.335507 Anserini +test138 Q0 3951872 20 9.334194 Anserini +test138 Q0 9597252 21 9.309070 Anserini +test138 Q0 4369813 22 9.268491 Anserini +test138 Q0 17816414 23 9.261543 Anserini +test138 Q0 11493014 24 9.246895 Anserini +test138 Q0 17816406 25 9.192309 Anserini +test138 Q0 5026105 26 9.175188 Anserini +test138 Q0 9597253 27 9.142834 Anserini +test138 Q0 1619513 28 9.139366 Anserini +test138 Q0 6426862 29 9.105576 Anserini +test138 Q0 10810674 30 9.100605 Anserini +test1380 Q0 13275183 1 11.162166 Anserini +test1380 Q0 1375381 2 10.713692 Anserini +test1380 Q0 6010616 3 10.604781 Anserini +test1380 Q0 6010618 4 10.403728 Anserini +test1380 Q0 10628563 5 10.329586 Anserini +test1380 Q0 17251305 6 10.154537 Anserini +test1380 Q0 19450738 7 10.154537 Anserini +test1380 Q0 14763185 8 10.133976 Anserini +test1380 Q0 3132447 9 10.126832 Anserini +test1380 Q0 9694093 10 10.086498 Anserini +test1380 Q0 14510546 11 10.049438 Anserini +test1380 Q0 8487786 12 10.043246 Anserini +test1380 Q0 9521639 13 10.042091 Anserini +test1380 Q0 7440645 14 10.011576 Anserini +test1380 Q0 3157996 15 10.000581 Anserini +test1380 Q0 3158034 16 10.000581 Anserini +test1380 Q0 14221364 17 9.979963 Anserini +test1380 Q0 15281692 18 9.974866 Anserini +test1380 Q0 11728308 19 9.916492 Anserini +test1380 Q0 3228318 20 9.911180 Anserini +test1380 Q0 9265054 21 9.862039 Anserini +test1380 Q0 13275193 22 9.853763 Anserini +test1380 Q0 9265062 23 9.828506 Anserini +test1380 Q0 9694095 24 9.828083 Anserini +test1380 Q0 11728330 25 9.828019 Anserini +test1380 Q0 1375390 26 9.818886 Anserini +test1380 Q0 363533 27 9.771052 Anserini +test1380 Q0 8008409 28 9.759670 Anserini +test1380 Q0 19428637 29 9.729000 Anserini +test1380 Q0 8008408 30 9.708682 Anserini +test1381 Q0 5962140 1 16.510941 Anserini +test1381 Q0 9096238 2 16.409521 Anserini +test1381 Q0 16206980 3 15.849672 Anserini +test1381 Q0 11272288 4 15.306723 Anserini +test1381 Q0 8644142 5 15.157770 Anserini +test1381 Q0 1455140 6 14.988568 Anserini +test1381 Q0 11143934 7 14.945486 Anserini +test1381 Q0 6525274 8 14.855533 Anserini +test1381 Q0 1455117 9 14.820293 Anserini +test1381 Q0 1455139 10 14.812472 Anserini +test1381 Q0 1455136 11 14.780137 Anserini +test1381 Q0 16165425 12 14.771342 Anserini +test1381 Q0 7178948 13 14.700494 Anserini +test1381 Q0 5027896 14 14.470427 Anserini +test1381 Q0 7178947 15 14.453015 Anserini +test1381 Q0 2450418 16 14.442301 Anserini +test1381 Q0 3258327 17 14.410710 Anserini +test1381 Q0 13758612 18 14.407893 Anserini +test1381 Q0 4402960 19 14.361629 Anserini +test1381 Q0 12486055 20 14.279543 Anserini +test1381 Q0 7743347 21 14.273060 Anserini +test1381 Q0 3785869 22 14.193293 Anserini +test1381 Q0 5027897 23 14.174304 Anserini +test1381 Q0 1455134 24 14.137706 Anserini +test1381 Q0 5533766 25 14.101519 Anserini +test1381 Q0 1455137 26 14.055315 Anserini +test1381 Q0 10140075 27 14.007719 Anserini +test1381 Q0 6401962 28 13.924598 Anserini +test1381 Q0 2450420 29 13.895989 Anserini +test1381 Q0 3136343 30 13.851553 Anserini +test1382 Q0 9598038 1 21.018599 Anserini +test1382 Q0 142445 2 20.463631 Anserini +test1382 Q0 142444 3 19.614502 Anserini +test1382 Q0 6657508 4 19.243765 Anserini +test1382 Q0 9610719 5 19.072430 Anserini +test1382 Q0 11299915 6 18.614769 Anserini +test1382 Q0 2580897 7 18.413628 Anserini +test1382 Q0 9077083 8 17.721535 Anserini +test1382 Q0 2174575 9 17.678436 Anserini +test1382 Q0 3652184 10 17.642015 Anserini +test1382 Q0 9077077 11 17.582827 Anserini +test1382 Q0 10369547 12 17.531971 Anserini +test1382 Q0 142405 13 17.176741 Anserini +test1382 Q0 7171236 14 16.957052 Anserini +test1382 Q0 11299918 15 16.854830 Anserini +test1382 Q0 8731565 16 16.831623 Anserini +test1382 Q0 2119256 17 16.813116 Anserini +test1382 Q0 19470097 18 16.779894 Anserini +test1382 Q0 14457086 19 16.641172 Anserini +test1382 Q0 11588764 20 16.627129 Anserini +test1382 Q0 12079879 21 16.275505 Anserini +test1382 Q0 9610764 22 16.253731 Anserini +test1382 Q0 1506385 23 16.190527 Anserini +test1382 Q0 3824143 24 16.186571 Anserini +test1382 Q0 9772287 25 16.135851 Anserini +test1382 Q0 7548213 26 16.088583 Anserini +test1382 Q0 96985 27 15.992338 Anserini +test1382 Q0 17526380 28 15.816763 Anserini +test1382 Q0 7070018 29 15.798345 Anserini +test1382 Q0 6642721 30 15.783438 Anserini +test1383 Q0 6085454 1 11.848381 Anserini +test1383 Q0 1407046 2 11.405898 Anserini +test1383 Q0 262093 3 11.213743 Anserini +test1383 Q0 19393796 4 11.123142 Anserini +test1383 Q0 13424305 5 11.107919 Anserini +test1383 Q0 7344905 6 11.107919 Anserini +test1383 Q0 15283566 7 11.095648 Anserini +test1383 Q0 16812819 8 11.027030 Anserini +test1383 Q0 5869419 9 11.025073 Anserini +test1383 Q0 15946637 10 11.013058 Anserini +test1383 Q0 3403799 11 10.989383 Anserini +test1383 Q0 14647999 12 10.918783 Anserini +test1383 Q0 10938714 13 10.868336 Anserini +test1383 Q0 10938717 14 10.856042 Anserini +test1383 Q0 1554617 15 10.822920 Anserini +test1383 Q0 5131908 16 10.673992 Anserini +test1383 Q0 10897545 17 10.656071 Anserini +test1383 Q0 15739312 18 10.543852 Anserini +test1383 Q0 474985 19 10.420911 Anserini +test1383 Q0 3177926 20 10.383265 Anserini +test1383 Q0 2777834 21 10.375732 Anserini +test1383 Q0 19313349 22 10.354814 Anserini +test1383 Q0 936494 23 10.333075 Anserini +test1383 Q0 18912191 24 10.322397 Anserini +test1383 Q0 1601960 25 10.276022 Anserini +test1383 Q0 1944009 26 10.267079 Anserini +test1383 Q0 11164081 27 10.202263 Anserini +test1383 Q0 13459612 28 10.183675 Anserini +test1383 Q0 7598918 29 10.176011 Anserini +test1383 Q0 10511189 30 10.136901 Anserini +test1384 Q0 10364122 1 18.949484 Anserini +test1384 Q0 10364116 2 18.765678 Anserini +test1384 Q0 2382635 3 17.896702 Anserini +test1384 Q0 2382580 4 17.748148 Anserini +test1384 Q0 10586011 5 17.094604 Anserini +test1384 Q0 10586020 6 16.651882 Anserini +test1384 Q0 11574511 7 16.326057 Anserini +test1384 Q0 19391704 8 16.259024 Anserini +test1384 Q0 3618027 9 16.240437 Anserini +test1384 Q0 2382586 10 16.148373 Anserini +test1384 Q0 2382616 11 16.011301 Anserini +test1384 Q0 5849337 12 15.917761 Anserini +test1384 Q0 2382620 13 15.843864 Anserini +test1384 Q0 13322394 14 15.619918 Anserini +test1384 Q0 9173044 15 15.556537 Anserini +test1384 Q0 13322395 16 15.505280 Anserini +test1384 Q0 19431971 17 15.381918 Anserini +test1384 Q0 937189 18 15.373594 Anserini +test1384 Q0 10586016 19 15.369678 Anserini +test1384 Q0 18306904 20 15.340973 Anserini +test1384 Q0 3195188 21 14.965747 Anserini +test1384 Q0 11309549 22 14.958755 Anserini +test1384 Q0 14198114 23 14.956431 Anserini +test1384 Q0 20662255 24 14.710437 Anserini +test1384 Q0 14430668 25 14.617654 Anserini +test1384 Q0 10364120 26 14.596365 Anserini +test1384 Q0 11250549 27 14.575424 Anserini +test1384 Q0 4683782 28 14.572445 Anserini +test1384 Q0 19407891 29 14.556184 Anserini +test1384 Q0 9824609 30 14.544836 Anserini +test1385 Q0 20467803 1 19.880135 Anserini +test1385 Q0 15183691 2 19.377634 Anserini +test1385 Q0 3492567 3 19.182127 Anserini +test1385 Q0 20467830 4 19.036221 Anserini +test1385 Q0 15183686 5 18.805058 Anserini +test1385 Q0 8086621 6 18.793123 Anserini +test1385 Q0 13683650 7 18.265339 Anserini +test1385 Q0 3492568 8 18.205503 Anserini +test1385 Q0 15092423 9 17.960417 Anserini +test1385 Q0 13876533 10 17.888908 Anserini +test1385 Q0 16370385 11 17.879599 Anserini +test1385 Q0 20467806 12 17.858805 Anserini +test1385 Q0 13231574 13 17.808731 Anserini +test1385 Q0 3129911 14 17.753380 Anserini +test1385 Q0 15183690 15 17.582895 Anserini +test1385 Q0 13069146 16 17.416292 Anserini +test1385 Q0 20467800 17 17.388088 Anserini +test1385 Q0 2222718 18 17.229904 Anserini +test1385 Q0 15183689 19 17.190529 Anserini +test1385 Q0 15183684 20 17.044735 Anserini +test1385 Q0 13069157 21 16.889528 Anserini +test1385 Q0 3492564 22 16.795786 Anserini +test1385 Q0 8702463 23 16.660883 Anserini +test1385 Q0 19966302 24 16.639408 Anserini +test1385 Q0 13876531 25 16.521027 Anserini +test1385 Q0 12501886 26 16.458004 Anserini +test1385 Q0 17245469 27 16.443769 Anserini +test1385 Q0 20467836 28 16.430223 Anserini +test1385 Q0 9720987 29 16.349709 Anserini +test1385 Q0 19859508 30 16.349648 Anserini +test1386 Q0 14817408 1 13.819440 Anserini +test1386 Q0 17308157 2 12.584605 Anserini +test1386 Q0 20601853 3 12.122303 Anserini +test1386 Q0 16596633 4 11.981174 Anserini +test1386 Q0 9882869 5 11.958241 Anserini +test1386 Q0 12751586 6 11.818243 Anserini +test1386 Q0 13454206 7 11.739063 Anserini +test1386 Q0 10453581 8 11.705114 Anserini +test1386 Q0 4662531 9 11.696205 Anserini +test1386 Q0 11135741 10 11.688005 Anserini +test1386 Q0 17308162 11 11.647412 Anserini +test1386 Q0 8555375 12 11.644183 Anserini +test1386 Q0 10453609 13 11.544656 Anserini +test1386 Q0 19269104 14 11.544656 Anserini +test1386 Q0 9043614 15 11.517599 Anserini +test1386 Q0 7270593 16 11.513270 Anserini +test1386 Q0 7334101 17 11.420801 Anserini +test1386 Q0 6642199 18 11.411678 Anserini +test1386 Q0 19249453 19 11.319700 Anserini +test1386 Q0 16393192 20 11.308311 Anserini +test1386 Q0 16062954 21 11.208460 Anserini +test1386 Q0 12761264 22 11.165751 Anserini +test1386 Q0 9973856 23 11.144880 Anserini +test1386 Q0 18259367 24 11.052114 Anserini +test1386 Q0 13962923 25 11.046958 Anserini +test1386 Q0 14505487 26 11.027680 Anserini +test1386 Q0 19249447 27 10.999116 Anserini +test1386 Q0 19631771 28 10.945965 Anserini +test1386 Q0 16596625 29 10.941938 Anserini +test1386 Q0 16596634 30 10.941938 Anserini +test1387 Q0 576081 1 15.595972 Anserini +test1387 Q0 576088 2 15.566124 Anserini +test1387 Q0 14649769 3 14.794287 Anserini +test1387 Q0 576084 4 14.057876 Anserini +test1387 Q0 576100 5 13.993961 Anserini +test1387 Q0 3694268 6 13.872293 Anserini +test1387 Q0 576087 7 13.850945 Anserini +test1387 Q0 576102 8 13.836522 Anserini +test1387 Q0 151355 9 13.645288 Anserini +test1387 Q0 16687345 10 13.559605 Anserini +test1387 Q0 576099 11 13.543746 Anserini +test1387 Q0 576082 12 13.406540 Anserini +test1387 Q0 6885933 13 13.208454 Anserini +test1387 Q0 576085 14 13.136120 Anserini +test1387 Q0 576092 15 13.005589 Anserini +test1387 Q0 576091 16 12.979796 Anserini +test1387 Q0 576093 17 12.851780 Anserini +test1387 Q0 576101 18 12.645201 Anserini +test1387 Q0 1320285 19 12.615768 Anserini +test1387 Q0 6885932 20 12.589697 Anserini +test1387 Q0 17274476 21 12.495848 Anserini +test1387 Q0 17274481 22 12.495848 Anserini +test1387 Q0 576086 23 12.444345 Anserini +test1387 Q0 13292460 24 12.159230 Anserini +test1387 Q0 1320300 25 12.073244 Anserini +test1387 Q0 10160392 26 12.070218 Anserini +test1387 Q0 151356 27 12.029337 Anserini +test1387 Q0 151357 28 12.008003 Anserini +test1387 Q0 11632812 29 11.919923 Anserini +test1387 Q0 11632814 30 11.919923 Anserini +test1388 Q0 19939411 1 14.073438 Anserini +test1388 Q0 20185383 2 14.063029 Anserini +test1388 Q0 20430403 3 14.045055 Anserini +test1388 Q0 20185373 4 14.030602 Anserini +test1388 Q0 17475339 5 14.029387 Anserini +test1388 Q0 20329363 6 13.997543 Anserini +test1388 Q0 19939729 7 13.997085 Anserini +test1388 Q0 20329364 8 13.987219 Anserini +test1388 Q0 20430396 9 13.936737 Anserini +test1388 Q0 20662448 10 13.926200 Anserini +test1388 Q0 20662449 11 13.926200 Anserini +test1388 Q0 20172845 12 13.922538 Anserini +test1388 Q0 17466152 13 13.922538 Anserini +test1388 Q0 17475335 14 13.922538 Anserini +test1388 Q0 17466160 15 13.922538 Anserini +test1388 Q0 20172856 16 13.903262 Anserini +test1388 Q0 20172844 17 13.858555 Anserini +test1388 Q0 20266075 18 13.858555 Anserini +test1388 Q0 20266076 19 13.858555 Anserini +test1388 Q0 17458687 20 13.858555 Anserini +test1388 Q0 20084922 21 13.858555 Anserini +test1388 Q0 20084923 22 13.858555 Anserini +test1388 Q0 20173031 23 13.858555 Anserini +test1388 Q0 20173033 24 13.858555 Anserini +test1388 Q0 20172855 25 13.858555 Anserini +test1388 Q0 20906463 26 13.858555 Anserini +test1388 Q0 17264025 27 13.828753 Anserini +test1388 Q0 20601953 28 13.818816 Anserini +test1388 Q0 20629169 29 13.576785 Anserini +test1388 Q0 15695725 30 13.486999 Anserini +test1389 Q0 13423897 1 24.200546 Anserini +test1389 Q0 11705180 2 23.990343 Anserini +test1389 Q0 13423881 3 21.736000 Anserini +test1389 Q0 7707210 4 21.239998 Anserini +test1389 Q0 7707203 5 20.960293 Anserini +test1389 Q0 11705181 6 20.648788 Anserini +test1389 Q0 9175852 7 20.429916 Anserini +test1389 Q0 7902041 8 20.300295 Anserini +test1389 Q0 13423883 9 20.177946 Anserini +test1389 Q0 7902040 10 20.175093 Anserini +test1389 Q0 7902057 11 20.109688 Anserini +test1389 Q0 8750175 12 20.014257 Anserini +test1389 Q0 9175844 13 19.978003 Anserini +test1389 Q0 7902043 14 19.459288 Anserini +test1389 Q0 2418804 15 19.359503 Anserini +test1389 Q0 7707216 16 19.166265 Anserini +test1389 Q0 7902053 17 18.966156 Anserini +test1389 Q0 13423896 18 18.894953 Anserini +test1389 Q0 7707228 19 18.803120 Anserini +test1389 Q0 7707205 20 18.791344 Anserini +test1389 Q0 7707213 21 18.750963 Anserini +test1389 Q0 8750167 22 18.687525 Anserini +test1389 Q0 11705178 23 18.632475 Anserini +test1389 Q0 13423885 24 18.625978 Anserini +test1389 Q0 7616658 25 18.408228 Anserini +test1389 Q0 7707211 26 18.230686 Anserini +test1389 Q0 7902045 27 18.102467 Anserini +test1389 Q0 12909011 28 18.076996 Anserini +test1389 Q0 7902056 29 18.041996 Anserini +test1389 Q0 13423884 30 18.023853 Anserini +test139 Q0 9511158 1 11.217762 Anserini +test139 Q0 3334432 2 11.177867 Anserini +test139 Q0 15932456 3 10.858797 Anserini +test139 Q0 16591372 4 10.360798 Anserini +test139 Q0 18232754 5 10.279516 Anserini +test139 Q0 10105617 6 10.182028 Anserini +test139 Q0 1891202 7 10.176035 Anserini +test139 Q0 9511159 8 10.091553 Anserini +test139 Q0 9990490 9 9.970718 Anserini +test139 Q0 9708833 10 9.916977 Anserini +test139 Q0 16591374 11 9.806567 Anserini +test139 Q0 9880124 12 9.786077 Anserini +test139 Q0 7596202 13 9.593895 Anserini +test139 Q0 6831991 14 9.538886 Anserini +test139 Q0 2001426 15 9.447091 Anserini +test139 Q0 9721031 16 9.441988 Anserini +test139 Q0 8214765 17 9.403946 Anserini +test139 Q0 15693130 18 9.302079 Anserini +test139 Q0 20868077 19 9.261312 Anserini +test139 Q0 4584981 20 9.184573 Anserini +test139 Q0 511766 21 9.183573 Anserini +test139 Q0 9873296 22 9.171227 Anserini +test139 Q0 4703959 23 9.167078 Anserini +test139 Q0 4206104 24 9.161796 Anserini +test139 Q0 16591382 25 9.157522 Anserini +test139 Q0 511746 26 9.151199 Anserini +test139 Q0 4262414 27 9.144955 Anserini +test139 Q0 4262415 28 9.144955 Anserini +test139 Q0 2807492 29 9.130923 Anserini +test139 Q0 11461589 30 9.107294 Anserini +test1390 Q0 19691437 1 12.556663 Anserini +test1390 Q0 20895470 2 12.497454 Anserini +test1390 Q0 19701766 3 12.462557 Anserini +test1390 Q0 20302696 4 12.343146 Anserini +test1390 Q0 19916948 5 12.068335 Anserini +test1390 Q0 11467471 6 12.012655 Anserini +test1390 Q0 18575343 7 12.012242 Anserini +test1390 Q0 10779895 8 11.989200 Anserini +test1390 Q0 18723750 9 11.940052 Anserini +test1390 Q0 18784855 10 11.917135 Anserini +test1390 Q0 10285428 11 11.810178 Anserini +test1390 Q0 19691419 12 11.806224 Anserini +test1390 Q0 18723751 13 11.715106 Anserini +test1390 Q0 14016772 14 11.715106 Anserini +test1390 Q0 3092842 15 11.681514 Anserini +test1390 Q0 18784850 16 11.681514 Anserini +test1390 Q0 17671424 17 11.670094 Anserini +test1390 Q0 20062282 18 11.663030 Anserini +test1390 Q0 19596470 19 11.649000 Anserini +test1390 Q0 12731618 20 11.619569 Anserini +test1390 Q0 19964938 21 11.592783 Anserini +test1390 Q0 12124256 22 11.592783 Anserini +test1390 Q0 12632915 23 11.558505 Anserini +test1390 Q0 12784470 24 11.554668 Anserini +test1390 Q0 10779894 25 11.554668 Anserini +test1390 Q0 19691434 26 11.549870 Anserini +test1390 Q0 19691439 27 11.549870 Anserini +test1390 Q0 19964939 28 11.523434 Anserini +test1390 Q0 1794635 29 11.513108 Anserini +test1390 Q0 12632919 30 11.498297 Anserini +test1391 Q0 20878147 1 8.197659 Anserini +test1391 Q0 15347880 2 8.032187 Anserini +test1391 Q0 13361817 3 7.885709 Anserini +test1391 Q0 13361819 4 7.885709 Anserini +test1391 Q0 9699630 5 7.750112 Anserini +test1391 Q0 2875525 6 7.521262 Anserini +test1391 Q0 805167 7 7.475656 Anserini +test1391 Q0 13361818 8 7.469058 Anserini +test1391 Q0 14258908 9 7.396504 Anserini +test1391 Q0 9799342 10 7.389715 Anserini +test1391 Q0 1597983 11 7.337045 Anserini +test1391 Q0 5348358 12 7.314557 Anserini +test1391 Q0 12303188 13 7.299408 Anserini +test1391 Q0 1440984 14 7.248024 Anserini +test1391 Q0 19767469 15 7.162192 Anserini +test1391 Q0 617006 16 7.130693 Anserini +test1391 Q0 13558930 17 7.122284 Anserini +test1391 Q0 18133930 18 7.095566 Anserini +test1391 Q0 19253944 19 7.070782 Anserini +test1391 Q0 16355796 20 7.070782 Anserini +test1391 Q0 16795286 21 7.026257 Anserini +test1391 Q0 2078545 22 7.015284 Anserini +test1391 Q0 6262367 23 6.988513 Anserini +test1391 Q0 4119972 24 6.954931 Anserini +test1391 Q0 11243936 25 6.952940 Anserini +test1391 Q0 279200 26 6.908183 Anserini +test1391 Q0 14013881 27 6.905679 Anserini +test1391 Q0 16260709 28 6.899625 Anserini +test1391 Q0 5679159 29 6.894389 Anserini +test1391 Q0 6935943 30 6.867282 Anserini +test1392 Q0 17477855 1 18.981396 Anserini +test1392 Q0 17253830 2 17.527245 Anserini +test1392 Q0 17477816 3 17.411421 Anserini +test1392 Q0 17498927 4 17.353662 Anserini +test1392 Q0 12444564 5 17.304543 Anserini +test1392 Q0 17477853 6 16.734728 Anserini +test1392 Q0 19626950 7 16.342531 Anserini +test1392 Q0 19626938 8 16.342531 Anserini +test1392 Q0 14760399 9 16.084436 Anserini +test1392 Q0 11738174 10 15.998546 Anserini +test1392 Q0 3159698 11 15.746860 Anserini +test1392 Q0 17673834 12 15.709562 Anserini +test1392 Q0 17460654 13 15.699455 Anserini +test1392 Q0 17477821 14 15.698942 Anserini +test1392 Q0 17477825 15 15.658058 Anserini +test1392 Q0 14760433 16 15.614401 Anserini +test1392 Q0 18215780 17 15.355485 Anserini +test1392 Q0 19626942 18 15.031948 Anserini +test1392 Q0 17477851 19 14.955305 Anserini +test1392 Q0 15314654 20 14.922520 Anserini +test1392 Q0 15314658 21 14.922520 Anserini +test1392 Q0 19626944 22 14.701284 Anserini +test1392 Q0 16124888 23 14.439747 Anserini +test1392 Q0 17590832 24 14.309595 Anserini +test1392 Q0 17623101 25 14.159789 Anserini +test1392 Q0 17512859 26 14.063394 Anserini +test1392 Q0 12444567 27 13.996436 Anserini +test1392 Q0 18925508 28 13.995378 Anserini +test1392 Q0 20147524 29 13.926475 Anserini +test1392 Q0 11738173 30 13.900743 Anserini +test1393 Q0 12491875 1 15.790246 Anserini +test1393 Q0 284618 2 15.741926 Anserini +test1393 Q0 6733857 3 15.733706 Anserini +test1393 Q0 7194218 4 15.682411 Anserini +test1393 Q0 12495527 5 15.589649 Anserini +test1393 Q0 13663785 6 15.548342 Anserini +test1393 Q0 3037962 7 15.400253 Anserini +test1393 Q0 11880252 8 15.257303 Anserini +test1393 Q0 1955146 9 15.198104 Anserini +test1393 Q0 4961053 10 15.125040 Anserini +test1393 Q0 3243900 11 15.117002 Anserini +test1393 Q0 12495526 12 15.070738 Anserini +test1393 Q0 3243898 13 15.057266 Anserini +test1393 Q0 19481067 14 15.011741 Anserini +test1393 Q0 15799813 15 14.987882 Anserini +test1393 Q0 6958430 16 14.978795 Anserini +test1393 Q0 6733856 17 14.894575 Anserini +test1393 Q0 12324521 18 14.881968 Anserini +test1393 Q0 9560642 19 14.851007 Anserini +test1393 Q0 6733846 20 14.811234 Anserini +test1393 Q0 10872966 21 14.795913 Anserini +test1393 Q0 14937903 22 14.752520 Anserini +test1393 Q0 7194217 23 14.665425 Anserini +test1393 Q0 6733845 24 14.596405 Anserini +test1393 Q0 9844386 25 14.582672 Anserini +test1393 Q0 6733919 26 14.570584 Anserini +test1393 Q0 14937897 27 14.558368 Anserini +test1393 Q0 6777664 28 14.531080 Anserini +test1393 Q0 11779838 29 14.529713 Anserini +test1393 Q0 17970865 30 14.516602 Anserini +test1394 Q0 12037692 1 17.964699 Anserini +test1394 Q0 739371 2 17.571674 Anserini +test1394 Q0 5830826 3 17.535337 Anserini +test1394 Q0 15218477 4 17.041100 Anserini +test1394 Q0 861625 5 16.299994 Anserini +test1394 Q0 15310106 6 16.287745 Anserini +test1394 Q0 2830360 7 16.234661 Anserini +test1394 Q0 861616 8 16.197330 Anserini +test1394 Q0 2556138 9 16.183273 Anserini +test1394 Q0 2556133 10 16.129299 Anserini +test1394 Q0 3027634 11 16.014006 Anserini +test1394 Q0 6132805 12 15.924858 Anserini +test1394 Q0 7527944 13 15.681174 Anserini +test1394 Q0 10288256 14 15.620559 Anserini +test1394 Q0 10981376 15 15.365662 Anserini +test1394 Q0 608474 16 15.340567 Anserini +test1394 Q0 11291645 17 15.274582 Anserini +test1394 Q0 8086484 18 15.257133 Anserini +test1394 Q0 6302253 19 15.183275 Anserini +test1394 Q0 14317951 20 15.043664 Anserini +test1394 Q0 10981378 21 15.033691 Anserini +test1394 Q0 6735112 22 15.023676 Anserini +test1394 Q0 2556136 23 14.943671 Anserini +test1394 Q0 11363695 24 14.941764 Anserini +test1394 Q0 608471 25 14.931621 Anserini +test1394 Q0 1008139 26 14.849528 Anserini +test1394 Q0 11363686 27 14.793080 Anserini +test1394 Q0 4675226 28 14.759048 Anserini +test1394 Q0 7071159 29 14.750956 Anserini +test1394 Q0 7416860 30 14.685132 Anserini +test1395 Q0 4767517 1 18.282198 Anserini +test1395 Q0 4767528 2 18.155031 Anserini +test1395 Q0 4767521 3 17.599308 Anserini +test1395 Q0 4767524 4 17.496019 Anserini +test1395 Q0 4767525 5 16.833809 Anserini +test1395 Q0 9146615 6 16.745110 Anserini +test1395 Q0 4767519 7 16.630011 Anserini +test1395 Q0 3492442 8 16.348228 Anserini +test1395 Q0 9146622 9 16.089087 Anserini +test1395 Q0 2850546 10 15.937727 Anserini +test1395 Q0 4109442 11 15.885717 Anserini +test1395 Q0 1313465 12 15.169994 Anserini +test1395 Q0 3413922 13 15.112084 Anserini +test1395 Q0 9146617 14 15.046000 Anserini +test1395 Q0 2850542 15 14.922466 Anserini +test1395 Q0 4767526 16 14.700180 Anserini +test1395 Q0 7801652 17 14.627503 Anserini +test1395 Q0 2850545 18 14.414559 Anserini +test1395 Q0 17116079 19 14.388432 Anserini +test1395 Q0 3066261 20 14.371484 Anserini +test1395 Q0 5193030 21 14.279060 Anserini +test1395 Q0 740534 22 14.269534 Anserini +test1395 Q0 5693064 23 14.244575 Anserini +test1395 Q0 6525116 24 14.229722 Anserini +test1395 Q0 300194 25 14.156596 Anserini +test1395 Q0 6174046 26 14.053121 Anserini +test1395 Q0 5642938 27 13.741884 Anserini +test1395 Q0 4315754 28 13.710238 Anserini +test1395 Q0 7979652 29 13.671644 Anserini +test1395 Q0 1299916 30 13.614697 Anserini +test1396 Q0 9562275 1 23.404627 Anserini +test1396 Q0 11160394 2 23.383896 Anserini +test1396 Q0 14420823 3 23.260651 Anserini +test1396 Q0 15262430 4 22.957577 Anserini +test1396 Q0 15262429 5 22.572105 Anserini +test1396 Q0 9562277 6 22.506510 Anserini +test1396 Q0 15246782 7 22.163328 Anserini +test1396 Q0 15246783 8 22.163328 Anserini +test1396 Q0 7962204 9 21.903912 Anserini +test1396 Q0 15379195 10 21.754976 Anserini +test1396 Q0 15962092 11 21.743454 Anserini +test1396 Q0 10848855 12 21.507988 Anserini +test1396 Q0 15379196 13 21.459396 Anserini +test1396 Q0 14335855 14 21.145061 Anserini +test1396 Q0 15920774 15 20.874193 Anserini +test1396 Q0 16819015 16 20.705093 Anserini +test1396 Q0 8587878 17 20.681519 Anserini +test1396 Q0 7267826 18 20.629715 Anserini +test1396 Q0 4307048 19 20.374365 Anserini +test1396 Q0 8270647 20 20.363598 Anserini +test1396 Q0 13017220 21 20.343777 Anserini +test1396 Q0 4536313 22 20.336407 Anserini +test1396 Q0 6950521 23 20.206810 Anserini +test1396 Q0 9731823 24 20.112648 Anserini +test1396 Q0 9731824 25 20.112648 Anserini +test1396 Q0 8776417 26 20.054836 Anserini +test1396 Q0 11160392 27 20.024145 Anserini +test1396 Q0 4548801 28 20.021448 Anserini +test1396 Q0 16439886 29 20.016459 Anserini +test1396 Q0 4307052 30 19.948420 Anserini +test1397 Q0 5182304 1 16.109768 Anserini +test1397 Q0 5182283 2 16.109768 Anserini +test1397 Q0 2076497 3 15.866678 Anserini +test1397 Q0 2076452 4 15.866678 Anserini +test1397 Q0 5182285 5 14.584256 Anserini +test1397 Q0 3320350 6 14.359386 Anserini +test1397 Q0 7160358 7 13.741098 Anserini +test1397 Q0 8797051 8 13.636147 Anserini +test1397 Q0 8797030 9 13.402683 Anserini +test1397 Q0 5288499 10 13.054797 Anserini +test1397 Q0 12148077 11 12.546118 Anserini +test1397 Q0 2076456 12 12.441616 Anserini +test1397 Q0 7428376 13 12.367278 Anserini +test1397 Q0 32622 14 12.223901 Anserini +test1397 Q0 8440881 15 12.187727 Anserini +test1397 Q0 3320355 16 12.160268 Anserini +test1397 Q0 5402203 17 12.133228 Anserini +test1397 Q0 4827684 18 12.079245 Anserini +test1397 Q0 4827691 19 12.053901 Anserini +test1397 Q0 4434380 20 11.953819 Anserini +test1397 Q0 12221998 21 11.860200 Anserini +test1397 Q0 655390 22 11.851780 Anserini +test1397 Q0 8944360 23 11.643507 Anserini +test1397 Q0 9388620 24 11.589940 Anserini +test1397 Q0 7160355 25 11.557322 Anserini +test1397 Q0 6281800 26 11.517861 Anserini +test1397 Q0 5402199 27 11.504400 Anserini +test1397 Q0 8481457 28 11.478927 Anserini +test1397 Q0 20755345 29 11.462953 Anserini +test1397 Q0 7866606 30 11.404560 Anserini +test1398 Q0 6671520 1 10.844406 Anserini +test1398 Q0 7955647 2 10.797717 Anserini +test1398 Q0 6671530 3 10.483249 Anserini +test1398 Q0 6671527 4 10.049646 Anserini +test1398 Q0 495133 5 9.891992 Anserini +test1398 Q0 4259486 6 9.795639 Anserini +test1398 Q0 4259475 7 9.701200 Anserini +test1398 Q0 7955636 8 9.671094 Anserini +test1398 Q0 20399143 9 9.619272 Anserini +test1398 Q0 14304050 10 9.619272 Anserini +test1398 Q0 4852695 11 9.619272 Anserini +test1398 Q0 15933497 12 9.437149 Anserini +test1398 Q0 161197 13 9.229894 Anserini +test1398 Q0 9687319 14 9.202193 Anserini +test1398 Q0 12372997 15 9.193277 Anserini +test1398 Q0 909526 16 9.156123 Anserini +test1398 Q0 15921802 17 9.067818 Anserini +test1398 Q0 15933499 18 9.066560 Anserini +test1398 Q0 5816182 19 9.056327 Anserini +test1398 Q0 2667025 20 9.024068 Anserini +test1398 Q0 18050196 21 9.018768 Anserini +test1398 Q0 232969 22 8.990426 Anserini +test1398 Q0 19402548 23 8.990426 Anserini +test1398 Q0 19533000 24 8.972478 Anserini +test1398 Q0 249457 25 8.962014 Anserini +test1398 Q0 7220176 26 8.937235 Anserini +test1398 Q0 20146870 27 8.926622 Anserini +test1398 Q0 1587365 28 8.880131 Anserini +test1398 Q0 4992837 29 8.879383 Anserini +test1398 Q0 145834 30 8.861455 Anserini +test1399 Q0 15265932 1 17.775661 Anserini +test1399 Q0 15265933 2 17.625044 Anserini +test1399 Q0 15265931 3 17.359325 Anserini +test1399 Q0 226182 4 14.949940 Anserini +test1399 Q0 5016327 5 14.792933 Anserini +test1399 Q0 5795793 6 14.765974 Anserini +test1399 Q0 7956486 7 14.658007 Anserini +test1399 Q0 5279468 8 14.379607 Anserini +test1399 Q0 2793988 9 13.695071 Anserini +test1399 Q0 16630994 10 13.470502 Anserini +test1399 Q0 11990260 11 13.300129 Anserini +test1399 Q0 5223948 12 13.289639 Anserini +test1399 Q0 617657 13 13.218699 Anserini +test1399 Q0 5795797 14 13.041482 Anserini +test1399 Q0 8979103 15 12.927122 Anserini +test1399 Q0 5795794 16 12.898930 Anserini +test1399 Q0 5223941 17 12.855602 Anserini +test1399 Q0 4071890 18 12.661818 Anserini +test1399 Q0 3636244 19 12.605548 Anserini +test1399 Q0 264162 20 12.519992 Anserini +test1399 Q0 494499 21 12.515135 Anserini +test1399 Q0 11329620 22 12.510493 Anserini +test1399 Q0 15352001 23 12.416447 Anserini +test1399 Q0 1363631 24 12.411417 Anserini +test1399 Q0 3925861 25 12.404352 Anserini +test1399 Q0 5761786 26 12.352371 Anserini +test1399 Q0 11990255 27 12.326244 Anserini +test1399 Q0 1387042 28 12.299434 Anserini +test1399 Q0 9661640 29 12.288473 Anserini +test1399 Q0 5795795 30 12.269783 Anserini +test14 Q0 1352700 1 17.941570 Anserini +test14 Q0 1352697 2 16.161148 Anserini +test14 Q0 1352702 3 14.392748 Anserini +test14 Q0 1352705 4 14.297624 Anserini +test14 Q0 3743091 5 14.275793 Anserini +test14 Q0 5136644 6 13.833549 Anserini +test14 Q0 3291148 7 12.820850 Anserini +test14 Q0 1352708 8 12.743359 Anserini +test14 Q0 1352586 9 12.686530 Anserini +test14 Q0 12146279 10 12.609954 Anserini +test14 Q0 2565576 11 12.249065 Anserini +test14 Q0 1352707 12 12.134572 Anserini +test14 Q0 1352701 13 12.127983 Anserini +test14 Q0 1352516 14 12.123183 Anserini +test14 Q0 13078379 15 11.668974 Anserini +test14 Q0 13078385 16 11.668974 Anserini +test14 Q0 1352585 17 11.582892 Anserini +test14 Q0 1352706 18 11.512098 Anserini +test14 Q0 1352699 19 11.461304 Anserini +test14 Q0 1352704 20 11.452445 Anserini +test14 Q0 19259849 21 11.284545 Anserini +test14 Q0 465267 22 10.450774 Anserini +test14 Q0 9437931 23 10.386294 Anserini +test14 Q0 3647314 24 10.026614 Anserini +test14 Q0 1352578 25 9.991117 Anserini +test14 Q0 1352590 26 9.991117 Anserini +test14 Q0 11128142 27 9.800271 Anserini +test14 Q0 13293057 28 9.634691 Anserini +test14 Q0 465211 29 9.600401 Anserini +test14 Q0 4877539 30 9.527232 Anserini +test140 Q0 11726331 1 13.340818 Anserini +test140 Q0 419657 2 12.994243 Anserini +test140 Q0 419665 3 12.892838 Anserini +test140 Q0 11738320 4 12.557738 Anserini +test140 Q0 11738317 5 12.458660 Anserini +test140 Q0 17910446 6 12.378376 Anserini +test140 Q0 855731 7 12.377480 Anserini +test140 Q0 7550913 8 12.287077 Anserini +test140 Q0 6088270 9 12.281048 Anserini +test140 Q0 419666 10 12.232599 Anserini +test140 Q0 12378910 11 12.228079 Anserini +test140 Q0 1428229 12 12.185481 Anserini +test140 Q0 419566 13 12.072988 Anserini +test140 Q0 3937357 14 12.002213 Anserini +test140 Q0 9692482 15 11.984040 Anserini +test140 Q0 15920023 16 11.954939 Anserini +test140 Q0 6896560 17 11.951134 Anserini +test140 Q0 19572470 18 11.910945 Anserini +test140 Q0 7930867 19 11.834188 Anserini +test140 Q0 8716262 20 11.799087 Anserini +test140 Q0 4395630 21 11.766202 Anserini +test140 Q0 855732 22 11.738436 Anserini +test140 Q0 11216893 23 11.672222 Anserini +test140 Q0 10556261 24 11.641077 Anserini +test140 Q0 8807297 25 11.636181 Anserini +test140 Q0 12027050 26 11.635687 Anserini +test140 Q0 12027052 27 11.635687 Anserini +test140 Q0 1676781 28 11.602991 Anserini +test140 Q0 6445681 29 11.574725 Anserini +test140 Q0 8470930 30 11.554770 Anserini +test1400 Q0 6492481 1 20.383451 Anserini +test1400 Q0 15241385 2 20.204494 Anserini +test1400 Q0 19543810 3 20.008413 Anserini +test1400 Q0 9378472 4 19.969589 Anserini +test1400 Q0 19198491 5 19.828796 Anserini +test1400 Q0 6650031 6 19.680752 Anserini +test1400 Q0 8783828 7 19.630657 Anserini +test1400 Q0 10153925 8 19.050480 Anserini +test1400 Q0 1064188 9 18.954395 Anserini +test1400 Q0 14359959 10 18.867014 Anserini +test1400 Q0 2101681 11 18.752756 Anserini +test1400 Q0 12276577 12 18.741949 Anserini +test1400 Q0 4071797 13 18.484304 Anserini +test1400 Q0 12671647 14 18.465687 Anserini +test1400 Q0 3664841 15 18.391586 Anserini +test1400 Q0 16124791 16 18.325356 Anserini +test1400 Q0 17762185 17 18.261934 Anserini +test1400 Q0 6611545 18 18.241400 Anserini +test1400 Q0 15947592 19 18.132710 Anserini +test1400 Q0 14793704 20 18.025789 Anserini +test1400 Q0 16477606 21 17.956005 Anserini +test1400 Q0 11070356 22 17.952873 Anserini +test1400 Q0 15024357 23 17.857447 Anserini +test1400 Q0 4831696 24 17.725010 Anserini +test1400 Q0 17887685 25 17.676580 Anserini +test1400 Q0 3439221 26 17.601418 Anserini +test1400 Q0 12111406 27 17.556234 Anserini +test1400 Q0 17212176 28 17.550209 Anserini +test1400 Q0 3114354 29 17.459957 Anserini +test1400 Q0 19774280 30 17.445578 Anserini +test1401 Q0 16971881 1 11.831562 Anserini +test1401 Q0 20427701 2 11.786791 Anserini +test1401 Q0 16021145 3 11.478494 Anserini +test1401 Q0 16438657 4 11.129493 Anserini +test1401 Q0 10756490 5 10.626513 Anserini +test1401 Q0 16971899 6 10.511225 Anserini +test1401 Q0 8501006 7 10.360325 Anserini +test1401 Q0 11181713 8 10.182445 Anserini +test1401 Q0 18543110 9 9.922578 Anserini +test1401 Q0 20427703 10 9.762396 Anserini +test1401 Q0 16438660 11 9.747941 Anserini +test1401 Q0 16393934 12 9.714647 Anserini +test1401 Q0 18632954 13 9.689161 Anserini +test1401 Q0 10756485 14 9.591785 Anserini +test1401 Q0 6430489 15 9.538848 Anserini +test1401 Q0 16822042 16 9.437530 Anserini +test1401 Q0 13345572 17 9.433606 Anserini +test1401 Q0 13345575 18 9.433606 Anserini +test1401 Q0 16822040 19 9.419926 Anserini +test1401 Q0 16021152 20 9.404484 Anserini +test1401 Q0 18632952 21 9.386540 Anserini +test1401 Q0 17959936 22 9.370922 Anserini +test1401 Q0 13150612 23 9.341661 Anserini +test1401 Q0 19591762 24 9.291826 Anserini +test1401 Q0 8501009 25 9.272275 Anserini +test1401 Q0 16393935 26 9.189137 Anserini +test1401 Q0 13377712 27 9.031495 Anserini +test1401 Q0 6643413 28 9.015526 Anserini +test1401 Q0 6430491 29 9.007242 Anserini +test1401 Q0 9512126 30 8.986706 Anserini +test1402 Q0 163177 1 14.836031 Anserini +test1402 Q0 13001121 2 14.639728 Anserini +test1402 Q0 2808208 3 14.280247 Anserini +test1402 Q0 12828186 4 14.277586 Anserini +test1402 Q0 16138042 5 14.083710 Anserini +test1402 Q0 17098251 6 14.023506 Anserini +test1402 Q0 163136 7 13.951959 Anserini +test1402 Q0 8828995 8 13.879350 Anserini +test1402 Q0 16211125 9 13.793753 Anserini +test1402 Q0 7074370 10 13.790977 Anserini +test1402 Q0 12828193 11 13.783097 Anserini +test1402 Q0 11144720 12 13.761909 Anserini +test1402 Q0 16142454 13 13.724586 Anserini +test1402 Q0 18558677 14 13.578328 Anserini +test1402 Q0 16117977 15 13.435744 Anserini +test1402 Q0 163173 16 13.402741 Anserini +test1402 Q0 546372 17 13.354519 Anserini +test1402 Q0 12828218 18 13.187879 Anserini +test1402 Q0 13213164 19 13.086742 Anserini +test1402 Q0 7069884 20 13.027528 Anserini +test1402 Q0 4013876 21 12.950756 Anserini +test1402 Q0 19646599 22 12.940919 Anserini +test1402 Q0 19971839 23 12.927790 Anserini +test1402 Q0 7069888 24 12.911740 Anserini +test1402 Q0 15702449 25 12.879084 Anserini +test1402 Q0 4206401 26 12.877433 Anserini +test1402 Q0 3257211 27 12.851692 Anserini +test1402 Q0 2551845 28 12.807530 Anserini +test1402 Q0 13263574 29 12.780299 Anserini +test1402 Q0 1413629 30 12.751770 Anserini +test1403 Q0 13803078 1 17.241840 Anserini +test1403 Q0 17863215 2 17.209927 Anserini +test1403 Q0 11879012 3 16.933201 Anserini +test1403 Q0 18469889 4 16.001263 Anserini +test1403 Q0 18469895 5 15.891708 Anserini +test1403 Q0 18261824 6 15.831398 Anserini +test1403 Q0 7715190 7 14.695604 Anserini +test1403 Q0 18398417 8 14.686255 Anserini +test1403 Q0 13803080 9 14.555190 Anserini +test1403 Q0 648111 10 14.512742 Anserini +test1403 Q0 1767526 11 14.315304 Anserini +test1403 Q0 6760459 12 14.311110 Anserini +test1403 Q0 13803093 13 14.307395 Anserini +test1403 Q0 5544045 14 14.211668 Anserini +test1403 Q0 13803077 15 14.129572 Anserini +test1403 Q0 6760455 16 14.127462 Anserini +test1403 Q0 18006430 17 14.116476 Anserini +test1403 Q0 2434808 18 14.023775 Anserini +test1403 Q0 19952136 19 13.990692 Anserini +test1403 Q0 18646177 20 13.982300 Anserini +test1403 Q0 18006433 21 13.896771 Anserini +test1403 Q0 4864914 22 13.883232 Anserini +test1403 Q0 17273168 23 13.862595 Anserini +test1403 Q0 13803081 24 13.659889 Anserini +test1403 Q0 2914858 25 13.529718 Anserini +test1403 Q0 19306533 26 13.443705 Anserini +test1403 Q0 14084613 27 13.294220 Anserini +test1403 Q0 6215545 28 13.289289 Anserini +test1403 Q0 20770808 29 13.289289 Anserini +test1403 Q0 8767228 30 13.215331 Anserini +test1404 Q0 20056182 1 12.804448 Anserini +test1404 Q0 14501333 2 12.217454 Anserini +test1404 Q0 21002677 3 12.091191 Anserini +test1404 Q0 20056188 4 12.077030 Anserini +test1404 Q0 19792374 5 12.016873 Anserini +test1404 Q0 20056166 6 11.997637 Anserini +test1404 Q0 20056189 7 11.910456 Anserini +test1404 Q0 11819850 8 11.710760 Anserini +test1404 Q0 19858868 9 11.707657 Anserini +test1404 Q0 19858859 10 11.703669 Anserini +test1404 Q0 20056181 11 11.600315 Anserini +test1404 Q0 18545351 12 11.351290 Anserini +test1404 Q0 19667544 13 11.342605 Anserini +test1404 Q0 19792363 14 11.299664 Anserini +test1404 Q0 17704646 15 11.271947 Anserini +test1404 Q0 9243431 16 11.250549 Anserini +test1404 Q0 19882434 17 11.135594 Anserini +test1404 Q0 14416506 18 11.107059 Anserini +test1404 Q0 20056170 19 11.102464 Anserini +test1404 Q0 17554104 20 11.047751 Anserini +test1404 Q0 12489123 21 11.040691 Anserini +test1404 Q0 9951910 22 10.994530 Anserini +test1404 Q0 19270558 23 10.845485 Anserini +test1404 Q0 15567561 24 10.839955 Anserini +test1404 Q0 13031121 25 10.805411 Anserini +test1404 Q0 17843408 26 10.801025 Anserini +test1404 Q0 19877161 27 10.796971 Anserini +test1404 Q0 21002678 28 10.777658 Anserini +test1404 Q0 10072200 29 10.754013 Anserini +test1404 Q0 21002673 30 10.731564 Anserini +test1405 Q0 17004562 1 16.417435 Anserini +test1405 Q0 11371618 2 15.665396 Anserini +test1405 Q0 17058917 3 14.178769 Anserini +test1405 Q0 15890145 4 14.154825 Anserini +test1405 Q0 14894325 5 13.936623 Anserini +test1405 Q0 17004563 6 13.630915 Anserini +test1405 Q0 9010423 7 12.958132 Anserini +test1405 Q0 19364209 8 12.954919 Anserini +test1405 Q0 16792910 9 12.866256 Anserini +test1405 Q0 14894328 10 12.783618 Anserini +test1405 Q0 19364212 11 12.751408 Anserini +test1405 Q0 7220901 12 12.705713 Anserini +test1405 Q0 16212578 13 12.438273 Anserini +test1405 Q0 15890143 14 12.328580 Anserini +test1405 Q0 15890147 15 12.328580 Anserini +test1405 Q0 14894337 16 12.223316 Anserini +test1405 Q0 14894339 17 12.169683 Anserini +test1405 Q0 14744278 18 12.136950 Anserini +test1405 Q0 9749531 19 12.124838 Anserini +test1405 Q0 9631004 20 12.058903 Anserini +test1405 Q0 9749543 21 12.025585 Anserini +test1405 Q0 16318550 22 12.025585 Anserini +test1405 Q0 16837351 23 11.859962 Anserini +test1405 Q0 16837354 24 11.859962 Anserini +test1405 Q0 17187611 25 11.738576 Anserini +test1405 Q0 17500406 26 11.687353 Anserini +test1405 Q0 17058919 27 11.681150 Anserini +test1405 Q0 16407549 28 11.676981 Anserini +test1405 Q0 16212577 29 11.623808 Anserini +test1405 Q0 17058916 30 11.576027 Anserini +test1406 Q0 1027037 1 12.230443 Anserini +test1406 Q0 8375536 2 11.999971 Anserini +test1406 Q0 2444911 3 11.532826 Anserini +test1406 Q0 2444925 4 11.532826 Anserini +test1406 Q0 8372962 5 10.914518 Anserini +test1406 Q0 19621028 6 10.699218 Anserini +test1406 Q0 16653954 7 10.648596 Anserini +test1406 Q0 15756374 8 10.557487 Anserini +test1406 Q0 16595223 9 10.553867 Anserini +test1406 Q0 5617233 10 10.516636 Anserini +test1406 Q0 18736832 11 10.451983 Anserini +test1406 Q0 8375538 12 10.413995 Anserini +test1406 Q0 16653951 13 10.356231 Anserini +test1406 Q0 15756373 14 10.346222 Anserini +test1406 Q0 5617236 15 10.336986 Anserini +test1406 Q0 4807361 16 10.169547 Anserini +test1406 Q0 5617243 17 10.106352 Anserini +test1406 Q0 5617231 18 10.106352 Anserini +test1406 Q0 7974542 19 10.079908 Anserini +test1406 Q0 18030074 20 10.070814 Anserini +test1406 Q0 7974520 21 10.047582 Anserini +test1406 Q0 955957 22 9.978362 Anserini +test1406 Q0 7869481 23 9.922981 Anserini +test1406 Q0 5617234 24 9.908977 Anserini +test1406 Q0 955963 25 9.893697 Anserini +test1406 Q0 11214790 26 9.863497 Anserini +test1406 Q0 10582570 27 9.861189 Anserini +test1406 Q0 12692092 28 9.798481 Anserini +test1406 Q0 8372963 29 9.769679 Anserini +test1406 Q0 5773135 30 9.740252 Anserini +test1407 Q0 769849 1 17.128023 Anserini +test1407 Q0 20302846 2 16.782415 Anserini +test1407 Q0 769853 3 16.074867 Anserini +test1407 Q0 769833 4 15.916538 Anserini +test1407 Q0 10162699 5 15.904218 Anserini +test1407 Q0 769844 6 15.710795 Anserini +test1407 Q0 12516575 7 15.436108 Anserini +test1407 Q0 20302847 8 15.343425 Anserini +test1407 Q0 20302844 9 15.298658 Anserini +test1407 Q0 769840 10 15.298658 Anserini +test1407 Q0 769852 11 15.254156 Anserini +test1407 Q0 19786140 12 15.098931 Anserini +test1407 Q0 769850 13 15.056310 Anserini +test1407 Q0 769851 14 14.881182 Anserini +test1407 Q0 769847 15 14.798191 Anserini +test1407 Q0 769848 16 14.689039 Anserini +test1407 Q0 3045561 17 14.476522 Anserini +test1407 Q0 769839 18 14.393265 Anserini +test1407 Q0 769841 19 14.393265 Anserini +test1407 Q0 769842 20 14.393265 Anserini +test1407 Q0 20302845 21 14.334512 Anserini +test1407 Q0 3045551 22 14.263008 Anserini +test1407 Q0 769837 23 14.090233 Anserini +test1407 Q0 3315445 24 14.009750 Anserini +test1407 Q0 9008696 25 13.766277 Anserini +test1407 Q0 769845 26 13.531843 Anserini +test1407 Q0 769843 27 13.438578 Anserini +test1407 Q0 19786141 28 13.426178 Anserini +test1407 Q0 3045559 29 13.419058 Anserini +test1407 Q0 769836 30 13.403679 Anserini +test1408 Q0 19743027 1 17.451202 Anserini +test1408 Q0 18757590 2 17.141279 Anserini +test1408 Q0 16365466 3 16.939066 Anserini +test1408 Q0 4440680 4 16.901232 Anserini +test1408 Q0 18758547 5 16.835321 Anserini +test1408 Q0 18757591 6 16.814316 Anserini +test1408 Q0 341786 7 16.809313 Anserini +test1408 Q0 18758555 8 16.721102 Anserini +test1408 Q0 16365464 9 16.654472 Anserini +test1408 Q0 18049948 10 16.555063 Anserini +test1408 Q0 7457434 11 16.472095 Anserini +test1408 Q0 18868751 12 16.332575 Anserini +test1408 Q0 18868745 13 16.253588 Anserini +test1408 Q0 8631081 14 16.236511 Anserini +test1408 Q0 18847636 15 16.101536 Anserini +test1408 Q0 8631074 16 16.089048 Anserini +test1408 Q0 8201190 17 16.019260 Anserini +test1408 Q0 17126035 18 15.969225 Anserini +test1408 Q0 17616078 19 15.958766 Anserini +test1408 Q0 14442339 20 15.927608 Anserini +test1408 Q0 3695833 21 15.797475 Anserini +test1408 Q0 20146947 22 15.746871 Anserini +test1408 Q0 11629466 23 15.744314 Anserini +test1408 Q0 6904116 24 15.731814 Anserini +test1408 Q0 341722 25 15.671038 Anserini +test1408 Q0 18949764 26 15.623806 Anserini +test1408 Q0 18847637 27 15.600676 Anserini +test1408 Q0 7988570 28 15.487918 Anserini +test1408 Q0 19013033 29 15.461397 Anserini +test1408 Q0 18946078 30 15.413563 Anserini +test1409 Q0 7814778 1 12.060643 Anserini +test1409 Q0 7814654 2 11.273950 Anserini +test1409 Q0 8587095 3 9.961123 Anserini +test1409 Q0 16708788 4 9.961123 Anserini +test1409 Q0 3267937 5 9.941566 Anserini +test1409 Q0 165172 6 9.873645 Anserini +test1409 Q0 204208 7 9.870422 Anserini +test1409 Q0 14506873 8 9.835552 Anserini +test1409 Q0 9437078 9 9.829082 Anserini +test1409 Q0 14634823 10 9.659922 Anserini +test1409 Q0 432778 11 9.628596 Anserini +test1409 Q0 14201041 12 9.618573 Anserini +test1409 Q0 10202136 13 9.525128 Anserini +test1409 Q0 12753768 14 9.498359 Anserini +test1409 Q0 8971447 15 9.441004 Anserini +test1409 Q0 6176567 16 9.401189 Anserini +test1409 Q0 12245645 17 9.365162 Anserini +test1409 Q0 8495168 18 9.365089 Anserini +test1409 Q0 20603099 19 9.365089 Anserini +test1409 Q0 17335756 20 9.354554 Anserini +test1409 Q0 7814660 21 9.337217 Anserini +test1409 Q0 4686919 22 9.329931 Anserini +test1409 Q0 2494263 23 9.314126 Anserini +test1409 Q0 5036361 24 9.314126 Anserini +test1409 Q0 15655130 25 9.314126 Anserini +test1409 Q0 15655129 26 9.314126 Anserini +test1409 Q0 3466246 27 9.300815 Anserini +test1409 Q0 14506868 28 9.269352 Anserini +test1409 Q0 13227591 29 9.245914 Anserini +test1409 Q0 9178616 30 9.219409 Anserini +test141 Q0 15577800 1 15.663791 Anserini +test141 Q0 3346005 2 13.086585 Anserini +test141 Q0 13377094 3 13.082632 Anserini +test141 Q0 3224232 4 13.065792 Anserini +test141 Q0 16027027 5 12.959768 Anserini +test141 Q0 3594048 6 12.865602 Anserini +test141 Q0 11418281 7 12.092892 Anserini +test141 Q0 1746070 8 12.060252 Anserini +test141 Q0 16027026 9 11.912393 Anserini +test141 Q0 2384603 10 11.872090 Anserini +test141 Q0 12647641 11 11.845586 Anserini +test141 Q0 5523574 12 11.692785 Anserini +test141 Q0 55664 13 11.629381 Anserini +test141 Q0 1296634 14 11.627439 Anserini +test141 Q0 3224236 15 11.500486 Anserini +test141 Q0 3260268 16 11.410253 Anserini +test141 Q0 5504989 17 11.303042 Anserini +test141 Q0 15577748 18 11.292179 Anserini +test141 Q0 2056152 19 11.170127 Anserini +test141 Q0 2073524 20 11.153145 Anserini +test141 Q0 55690 21 11.149486 Anserini +test141 Q0 179874 22 11.149486 Anserini +test141 Q0 17698326 23 11.069534 Anserini +test141 Q0 8112067 24 11.054796 Anserini +test141 Q0 11263382 25 10.984234 Anserini +test141 Q0 3609620 26 10.984234 Anserini +test141 Q0 505945 27 10.950499 Anserini +test141 Q0 2286760 28 10.774376 Anserini +test141 Q0 2436816 29 10.771665 Anserini +test141 Q0 327758 30 10.757376 Anserini +test1410 Q0 7095465 1 12.878241 Anserini +test1410 Q0 2039943 2 12.107782 Anserini +test1410 Q0 16414480 3 11.545483 Anserini +test1410 Q0 3903905 4 11.517072 Anserini +test1410 Q0 6632800 5 11.427520 Anserini +test1410 Q0 7095471 6 11.230186 Anserini +test1410 Q0 4914884 7 10.775541 Anserini +test1410 Q0 19418433 8 10.692635 Anserini +test1410 Q0 16414371 9 10.515995 Anserini +test1410 Q0 7095434 10 10.453517 Anserini +test1410 Q0 16414482 11 10.363836 Anserini +test1410 Q0 12356371 12 10.308599 Anserini +test1410 Q0 7095472 13 10.305784 Anserini +test1410 Q0 2068966 14 10.305695 Anserini +test1410 Q0 7095443 15 10.274851 Anserini +test1410 Q0 16414479 16 10.039943 Anserini +test1410 Q0 18138436 17 9.955011 Anserini +test1410 Q0 8471149 18 9.935679 Anserini +test1410 Q0 2039898 19 9.895855 Anserini +test1410 Q0 4640167 20 9.856142 Anserini +test1410 Q0 9528032 21 9.779016 Anserini +test1410 Q0 11023488 22 9.657211 Anserini +test1410 Q0 11023491 23 9.657211 Anserini +test1410 Q0 4796972 24 9.636819 Anserini +test1410 Q0 9528034 25 9.629088 Anserini +test1410 Q0 9313316 26 9.617633 Anserini +test1410 Q0 9313319 27 9.617633 Anserini +test1410 Q0 7095435 28 9.532265 Anserini +test1410 Q0 12315065 29 9.525763 Anserini +test1410 Q0 7095448 30 9.494476 Anserini +test1411 Q0 13102928 1 16.576866 Anserini +test1411 Q0 16923014 2 16.131680 Anserini +test1411 Q0 7670363 3 16.021141 Anserini +test1411 Q0 6906175 4 15.463017 Anserini +test1411 Q0 12753993 5 15.408793 Anserini +test1411 Q0 2258972 6 14.916113 Anserini +test1411 Q0 9675260 7 14.856046 Anserini +test1411 Q0 12753991 8 14.843129 Anserini +test1411 Q0 14778665 9 14.803680 Anserini +test1411 Q0 4880368 10 14.705317 Anserini +test1411 Q0 4741712 11 14.649634 Anserini +test1411 Q0 20082036 12 14.634318 Anserini +test1411 Q0 12753992 13 14.579937 Anserini +test1411 Q0 8202867 14 14.491468 Anserini +test1411 Q0 6187545 15 14.474741 Anserini +test1411 Q0 9675201 16 14.386517 Anserini +test1411 Q0 8522074 17 14.372717 Anserini +test1411 Q0 6572511 18 14.361258 Anserini +test1411 Q0 16450327 19 14.319397 Anserini +test1411 Q0 10132277 20 14.255897 Anserini +test1411 Q0 6990221 21 14.172237 Anserini +test1411 Q0 7164824 22 14.139194 Anserini +test1411 Q0 13487565 23 14.112269 Anserini +test1411 Q0 2507590 24 14.108862 Anserini +test1411 Q0 19334590 25 14.087833 Anserini +test1411 Q0 5272590 26 14.066568 Anserini +test1411 Q0 9504266 27 14.059810 Anserini +test1411 Q0 10232408 28 14.043558 Anserini +test1411 Q0 331642 29 14.035643 Anserini +test1411 Q0 20797370 30 14.028897 Anserini +test1412 Q0 4465597 1 21.221348 Anserini +test1412 Q0 20567821 2 20.800510 Anserini +test1412 Q0 1756307 3 20.239435 Anserini +test1412 Q0 1756331 4 19.833702 Anserini +test1412 Q0 10453 5 18.729399 Anserini +test1412 Q0 5046703 6 18.607334 Anserini +test1412 Q0 6122525 7 18.291349 Anserini +test1412 Q0 284529 8 18.263914 Anserini +test1412 Q0 17732571 9 18.085001 Anserini +test1412 Q0 5046704 10 18.037895 Anserini +test1412 Q0 14142312 11 18.021429 Anserini +test1412 Q0 552176 12 17.445118 Anserini +test1412 Q0 1689278 13 17.173422 Anserini +test1412 Q0 1695022 14 17.083748 Anserini +test1412 Q0 1756311 15 16.837488 Anserini +test1412 Q0 7416727 16 16.799717 Anserini +test1412 Q0 30862 17 16.470764 Anserini +test1412 Q0 16140502 18 16.261915 Anserini +test1412 Q0 462478 19 16.244392 Anserini +test1412 Q0 7559990 20 16.224277 Anserini +test1412 Q0 664780 21 15.896166 Anserini +test1412 Q0 15562121 22 15.889980 Anserini +test1412 Q0 9786223 23 15.666094 Anserini +test1412 Q0 13334184 24 15.568106 Anserini +test1412 Q0 6715979 25 15.453437 Anserini +test1412 Q0 116991 26 15.421653 Anserini +test1412 Q0 8727612 27 15.382800 Anserini +test1412 Q0 6617164 28 15.310487 Anserini +test1412 Q0 116956 29 15.285237 Anserini +test1412 Q0 238085 30 15.181907 Anserini +test1413 Q0 18357716 1 12.021464 Anserini +test1413 Q0 753577 2 11.882656 Anserini +test1413 Q0 10090959 3 11.558369 Anserini +test1413 Q0 76596 4 11.492855 Anserini +test1413 Q0 229555 5 11.468369 Anserini +test1413 Q0 13071358 6 11.439153 Anserini +test1413 Q0 11669561 7 11.424743 Anserini +test1413 Q0 5653008 8 11.409749 Anserini +test1413 Q0 4428260 9 11.387229 Anserini +test1413 Q0 18654200 10 11.327913 Anserini +test1413 Q0 4856837 11 11.298866 Anserini +test1413 Q0 4383302 12 11.293538 Anserini +test1413 Q0 1426225 13 11.120016 Anserini +test1413 Q0 8570788 14 11.034763 Anserini +test1413 Q0 19888151 15 11.030042 Anserini +test1413 Q0 11767679 16 11.005185 Anserini +test1413 Q0 9704799 17 11.005185 Anserini +test1413 Q0 3967085 18 10.993712 Anserini +test1413 Q0 15267279 19 10.974561 Anserini +test1413 Q0 15579459 20 10.943050 Anserini +test1413 Q0 3325639 21 10.937837 Anserini +test1413 Q0 12788344 22 10.905213 Anserini +test1413 Q0 2705331 23 10.900783 Anserini +test1413 Q0 10502651 24 10.859331 Anserini +test1413 Q0 2954005 25 10.822922 Anserini +test1413 Q0 13563227 26 10.820608 Anserini +test1413 Q0 2282307 27 10.813763 Anserini +test1413 Q0 20256202 28 10.813763 Anserini +test1413 Q0 9559637 29 10.812738 Anserini +test1413 Q0 2524403 30 10.792609 Anserini +test1414 Q0 4996922 1 16.864681 Anserini +test1414 Q0 582626 2 15.544552 Anserini +test1414 Q0 7314548 3 15.382841 Anserini +test1414 Q0 3100285 4 15.305585 Anserini +test1414 Q0 20159408 5 14.630193 Anserini +test1414 Q0 12566325 6 14.112803 Anserini +test1414 Q0 12232992 7 14.109101 Anserini +test1414 Q0 6190206 8 14.102499 Anserini +test1414 Q0 4996923 9 13.660077 Anserini +test1414 Q0 7314545 10 13.582239 Anserini +test1414 Q0 2670532 11 13.448602 Anserini +test1414 Q0 6190205 12 13.285439 Anserini +test1414 Q0 673019 13 13.259247 Anserini +test1414 Q0 673010 14 13.033645 Anserini +test1414 Q0 19048870 15 13.029684 Anserini +test1414 Q0 654573 16 12.968082 Anserini +test1414 Q0 2055715 17 12.960134 Anserini +test1414 Q0 2978386 18 12.959931 Anserini +test1414 Q0 124579 19 12.892775 Anserini +test1414 Q0 1596175 20 12.818396 Anserini +test1414 Q0 1424025 21 12.753322 Anserini +test1414 Q0 5875580 22 12.704214 Anserini +test1414 Q0 19750916 23 12.684104 Anserini +test1414 Q0 9293000 24 12.673040 Anserini +test1414 Q0 4073456 25 12.654412 Anserini +test1414 Q0 8189312 26 12.562075 Anserini +test1414 Q0 4870190 27 12.543447 Anserini +test1414 Q0 13578250 28 12.527602 Anserini +test1414 Q0 19007288 29 12.513551 Anserini +test1414 Q0 8189315 30 12.498041 Anserini +test1415 Q0 121752 1 15.509498 Anserini +test1415 Q0 121751 2 15.478601 Anserini +test1415 Q0 4920906 3 15.441302 Anserini +test1415 Q0 18030111 4 14.893950 Anserini +test1415 Q0 4920902 5 14.648530 Anserini +test1415 Q0 13175800 6 14.569510 Anserini +test1415 Q0 121755 7 14.231107 Anserini +test1415 Q0 13172844 8 13.620961 Anserini +test1415 Q0 2364280 9 13.566924 Anserini +test1415 Q0 4920917 10 13.455374 Anserini +test1415 Q0 4920907 11 13.311175 Anserini +test1415 Q0 121750 12 13.240044 Anserini +test1415 Q0 299631 13 13.182900 Anserini +test1415 Q0 100446 14 13.149719 Anserini +test1415 Q0 4920905 15 12.990292 Anserini +test1415 Q0 4920923 16 12.811300 Anserini +test1415 Q0 8153039 17 12.718876 Anserini +test1415 Q0 299683 18 12.653437 Anserini +test1415 Q0 646309 19 12.406162 Anserini +test1415 Q0 299653 20 12.394220 Anserini +test1415 Q0 13175746 21 12.372456 Anserini +test1415 Q0 14657775 22 12.264645 Anserini +test1415 Q0 299634 23 12.246846 Anserini +test1415 Q0 13175745 24 12.211390 Anserini +test1415 Q0 13172841 25 12.185013 Anserini +test1415 Q0 17127921 26 12.087530 Anserini +test1415 Q0 13140595 27 12.004253 Anserini +test1415 Q0 646308 28 11.990051 Anserini +test1415 Q0 59141 29 11.974977 Anserini +test1415 Q0 4920903 30 11.969657 Anserini +test1416 Q0 11467454 1 15.379165 Anserini +test1416 Q0 11467459 2 15.188075 Anserini +test1416 Q0 4921442 3 14.960809 Anserini +test1416 Q0 10877405 4 14.517183 Anserini +test1416 Q0 10877406 5 14.417049 Anserini +test1416 Q0 4050457 6 14.289929 Anserini +test1416 Q0 4921438 7 13.962011 Anserini +test1416 Q0 9565257 8 13.954929 Anserini +test1416 Q0 11397184 9 13.939957 Anserini +test1416 Q0 15133065 10 13.650512 Anserini +test1416 Q0 11467455 11 13.644110 Anserini +test1416 Q0 1937940 12 13.625839 Anserini +test1416 Q0 11467456 13 13.590019 Anserini +test1416 Q0 10749127 14 13.444531 Anserini +test1416 Q0 1811551 15 13.409800 Anserini +test1416 Q0 1811616 16 13.326547 Anserini +test1416 Q0 13154769 17 13.316261 Anserini +test1416 Q0 16726029 18 13.272095 Anserini +test1416 Q0 1356244 19 13.263687 Anserini +test1416 Q0 274479 20 13.221301 Anserini +test1416 Q0 1309450 21 13.191195 Anserini +test1416 Q0 8725282 22 13.190136 Anserini +test1416 Q0 7793509 23 13.155703 Anserini +test1416 Q0 14554855 24 13.155291 Anserini +test1416 Q0 9255811 25 13.114972 Anserini +test1416 Q0 7187959 26 13.076002 Anserini +test1416 Q0 802872 27 13.068726 Anserini +test1416 Q0 2802831 28 13.029375 Anserini +test1416 Q0 15065805 29 13.023571 Anserini +test1416 Q0 18634380 30 12.989907 Anserini +test1417 Q0 14408162 1 13.323584 Anserini +test1417 Q0 7253575 2 12.472334 Anserini +test1417 Q0 12324019 3 11.354213 Anserini +test1417 Q0 9687811 4 11.002118 Anserini +test1417 Q0 13576634 5 10.985868 Anserini +test1417 Q0 13576635 6 10.961010 Anserini +test1417 Q0 20356212 7 10.891617 Anserini +test1417 Q0 925811 8 10.707075 Anserini +test1417 Q0 19101039 9 10.625183 Anserini +test1417 Q0 111089 10 10.580146 Anserini +test1417 Q0 902687 11 10.568178 Anserini +test1417 Q0 14432150 12 10.535742 Anserini +test1417 Q0 8440980 13 10.518145 Anserini +test1417 Q0 10752137 14 10.512568 Anserini +test1417 Q0 16231656 15 10.504498 Anserini +test1417 Q0 10265641 16 10.422457 Anserini +test1417 Q0 582666 17 10.418125 Anserini +test1417 Q0 17795738 18 10.370878 Anserini +test1417 Q0 12764750 19 10.360084 Anserini +test1417 Q0 7918609 20 10.344152 Anserini +test1417 Q0 1424028 21 10.344094 Anserini +test1417 Q0 12132690 22 10.325378 Anserini +test1417 Q0 8440979 23 10.263849 Anserini +test1417 Q0 10275056 24 10.248832 Anserini +test1417 Q0 16198582 25 10.217724 Anserini +test1417 Q0 10238234 26 10.195631 Anserini +test1417 Q0 2110459 27 10.179074 Anserini +test1417 Q0 8440981 28 10.153109 Anserini +test1417 Q0 14910491 29 10.140684 Anserini +test1417 Q0 9163577 30 10.139895 Anserini +test1418 Q0 34666 1 11.574483 Anserini +test1418 Q0 331332 2 11.508464 Anserini +test1418 Q0 331320 3 11.054633 Anserini +test1418 Q0 8518963 4 10.802229 Anserini +test1418 Q0 6959344 5 10.744229 Anserini +test1418 Q0 6469661 6 10.339728 Anserini +test1418 Q0 6786432 7 9.923362 Anserini +test1418 Q0 2436188 8 9.671074 Anserini +test1418 Q0 679010 9 9.591853 Anserini +test1418 Q0 17154345 10 9.589513 Anserini +test1418 Q0 5720979 11 9.449761 Anserini +test1418 Q0 9503183 12 9.434517 Anserini +test1418 Q0 10600165 13 9.432024 Anserini +test1418 Q0 8997943 14 9.420544 Anserini +test1418 Q0 1541201 15 9.417586 Anserini +test1418 Q0 1358683 16 9.372880 Anserini +test1418 Q0 4516755 17 9.362207 Anserini +test1418 Q0 1358684 18 9.324261 Anserini +test1418 Q0 31998 19 9.307422 Anserini +test1418 Q0 331314 20 9.299218 Anserini +test1418 Q0 331337 21 9.250139 Anserini +test1418 Q0 1695598 22 9.248236 Anserini +test1418 Q0 10553690 23 9.217831 Anserini +test1418 Q0 186767 24 9.139980 Anserini +test1418 Q0 173390 25 9.138220 Anserini +test1418 Q0 17116218 26 9.120754 Anserini +test1418 Q0 17276968 27 9.120754 Anserini +test1418 Q0 331313 28 9.114548 Anserini +test1418 Q0 2191619 29 8.994328 Anserini +test1418 Q0 17154352 30 8.935799 Anserini +test1419 Q0 1437821 1 21.220737 Anserini +test1419 Q0 4955912 2 19.973936 Anserini +test1419 Q0 291429 3 19.910124 Anserini +test1419 Q0 1496605 4 19.399927 Anserini +test1419 Q0 295464 5 19.197428 Anserini +test1419 Q0 4179372 6 19.101391 Anserini +test1419 Q0 6731660 7 19.005035 Anserini +test1419 Q0 20402914 8 18.903160 Anserini +test1419 Q0 295437 9 18.885483 Anserini +test1419 Q0 6485209 10 18.833155 Anserini +test1419 Q0 295431 11 18.652346 Anserini +test1419 Q0 296978 12 18.613638 Anserini +test1419 Q0 291413 13 18.535763 Anserini +test1419 Q0 291366 14 18.470930 Anserini +test1419 Q0 4179356 15 18.452520 Anserini +test1419 Q0 3225125 16 18.384329 Anserini +test1419 Q0 14658681 17 18.353472 Anserini +test1419 Q0 8787983 18 18.341471 Anserini +test1419 Q0 10381149 19 18.294888 Anserini +test1419 Q0 4174744 20 18.283245 Anserini +test1419 Q0 2444282 21 18.233875 Anserini +test1419 Q0 296584 22 18.205233 Anserini +test1419 Q0 350073 23 18.160566 Anserini +test1419 Q0 296891 24 18.115379 Anserini +test1419 Q0 1437815 25 18.109180 Anserini +test1419 Q0 4179357 26 18.107395 Anserini +test1419 Q0 4157126 27 18.098526 Anserini +test1419 Q0 12817667 28 18.095652 Anserini +test1419 Q0 295460 29 18.094170 Anserini +test1419 Q0 2448046 30 18.030670 Anserini +test142 Q0 8021309 1 19.328371 Anserini +test142 Q0 8021303 2 19.196934 Anserini +test142 Q0 7401258 3 18.119448 Anserini +test142 Q0 14771218 4 17.816973 Anserini +test142 Q0 2367256 5 16.514898 Anserini +test142 Q0 4773761 6 16.258202 Anserini +test142 Q0 4305083 7 16.155104 Anserini +test142 Q0 3628670 8 16.014826 Anserini +test142 Q0 6098482 9 15.880739 Anserini +test142 Q0 19312597 10 15.715996 Anserini +test142 Q0 12179696 11 15.699345 Anserini +test142 Q0 10174829 12 15.673433 Anserini +test142 Q0 2674195 13 15.518601 Anserini +test142 Q0 19324621 14 15.507236 Anserini +test142 Q0 8405022 15 15.367377 Anserini +test142 Q0 16859136 16 15.292324 Anserini +test142 Q0 1470115 17 15.216959 Anserini +test142 Q0 1316797 18 15.119081 Anserini +test142 Q0 858793 19 15.113334 Anserini +test142 Q0 9562186 20 15.106264 Anserini +test142 Q0 14840653 21 15.100681 Anserini +test142 Q0 10766094 22 15.003753 Anserini +test142 Q0 17061366 23 14.955799 Anserini +test142 Q0 4444129 24 14.949330 Anserini +test142 Q0 18018902 25 14.897578 Anserini +test142 Q0 14486746 26 14.887207 Anserini +test142 Q0 19839591 27 14.825827 Anserini +test142 Q0 16101725 28 14.822583 Anserini +test142 Q0 9502217 29 14.814281 Anserini +test142 Q0 9502218 30 14.814281 Anserini +test1420 Q0 7997378 1 14.287366 Anserini +test1420 Q0 12690428 2 13.726444 Anserini +test1420 Q0 11056464 3 13.600132 Anserini +test1420 Q0 9842716 4 13.403566 Anserini +test1420 Q0 14332155 5 12.447778 Anserini +test1420 Q0 14333225 6 12.273861 Anserini +test1420 Q0 8664015 7 12.234847 Anserini +test1420 Q0 5728953 8 12.103104 Anserini +test1420 Q0 13812969 9 12.091791 Anserini +test1420 Q0 16385523 10 12.058955 Anserini +test1420 Q0 14323656 11 11.943619 Anserini +test1420 Q0 10928195 12 11.653381 Anserini +test1420 Q0 18313989 13 11.628824 Anserini +test1420 Q0 19983544 14 11.611778 Anserini +test1420 Q0 1383180 15 11.536543 Anserini +test1420 Q0 8498900 16 11.500134 Anserini +test1420 Q0 4154898 17 11.489658 Anserini +test1420 Q0 18015821 18 11.459373 Anserini +test1420 Q0 9695324 19 11.423999 Anserini +test1420 Q0 6078412 20 11.423999 Anserini +test1420 Q0 14323655 21 11.344596 Anserini +test1420 Q0 11056460 22 11.115768 Anserini +test1420 Q0 19743945 23 11.087156 Anserini +test1420 Q0 730100 24 11.084879 Anserini +test1420 Q0 14316766 25 11.081670 Anserini +test1420 Q0 9825515 26 11.056030 Anserini +test1420 Q0 15112333 27 11.030252 Anserini +test1420 Q0 9549037 28 11.016924 Anserini +test1420 Q0 11056465 29 11.016924 Anserini +test1420 Q0 18015823 30 11.016924 Anserini +test1421 Q0 20458444 1 12.493028 Anserini +test1421 Q0 13515906 2 12.475142 Anserini +test1421 Q0 17521550 3 12.351607 Anserini +test1421 Q0 1949282 4 12.201603 Anserini +test1421 Q0 5116945 5 12.135603 Anserini +test1421 Q0 16701615 6 12.027861 Anserini +test1421 Q0 14076412 7 12.007962 Anserini +test1421 Q0 14248429 8 11.935534 Anserini +test1421 Q0 16619464 9 11.809284 Anserini +test1421 Q0 5056133 10 11.798534 Anserini +test1421 Q0 1949283 11 11.781518 Anserini +test1421 Q0 8075668 12 11.766557 Anserini +test1421 Q0 7322346 13 11.753930 Anserini +test1421 Q0 9114168 14 11.703471 Anserini +test1421 Q0 10198750 15 11.700556 Anserini +test1421 Q0 7152183 16 11.699807 Anserini +test1421 Q0 12127187 17 11.663751 Anserini +test1421 Q0 7430699 18 11.661422 Anserini +test1421 Q0 16117422 19 11.658848 Anserini +test1421 Q0 4644684 20 11.632910 Anserini +test1421 Q0 4282563 21 11.609088 Anserini +test1421 Q0 9932559 22 11.603539 Anserini +test1421 Q0 8326624 23 11.549252 Anserini +test1421 Q0 4435149 24 11.498262 Anserini +test1421 Q0 3091169 25 11.446244 Anserini +test1421 Q0 9632693 26 11.426624 Anserini +test1421 Q0 2332445 27 11.414112 Anserini +test1421 Q0 6816936 28 11.404219 Anserini +test1421 Q0 2954108 29 11.397944 Anserini +test1421 Q0 7322345 30 11.397554 Anserini +test1422 Q0 7901245 1 13.492572 Anserini +test1422 Q0 9617008 2 13.285547 Anserini +test1422 Q0 16967734 3 12.934874 Anserini +test1422 Q0 2437101 4 12.496545 Anserini +test1422 Q0 13879602 5 12.122087 Anserini +test1422 Q0 19022035 6 11.742976 Anserini +test1422 Q0 20380077 7 11.696379 Anserini +test1422 Q0 17229447 8 11.596385 Anserini +test1422 Q0 7689319 9 11.503187 Anserini +test1422 Q0 17197461 10 11.488803 Anserini +test1422 Q0 18728479 11 11.471470 Anserini +test1422 Q0 19116594 12 11.444367 Anserini +test1422 Q0 8157507 13 11.391338 Anserini +test1422 Q0 18742063 14 11.380506 Anserini +test1422 Q0 16135385 15 11.375508 Anserini +test1422 Q0 17991750 16 11.375276 Anserini +test1422 Q0 18728486 17 11.344788 Anserini +test1422 Q0 7267339 18 11.341652 Anserini +test1422 Q0 6002716 19 11.292799 Anserini +test1422 Q0 17229465 20 11.290856 Anserini +test1422 Q0 3584827 21 11.290370 Anserini +test1422 Q0 11069410 22 11.266184 Anserini +test1422 Q0 18728488 23 11.255080 Anserini +test1422 Q0 16560873 24 11.089464 Anserini +test1422 Q0 14773568 25 11.063806 Anserini +test1422 Q0 14773569 26 11.063806 Anserini +test1422 Q0 17991894 27 11.062885 Anserini +test1422 Q0 18886811 28 11.041912 Anserini +test1422 Q0 18542629 29 11.032288 Anserini +test1422 Q0 15064568 30 10.967965 Anserini +test1423 Q0 723338 1 13.419922 Anserini +test1423 Q0 3236164 2 12.992234 Anserini +test1423 Q0 719221 3 12.791573 Anserini +test1423 Q0 19868892 4 12.571603 Anserini +test1423 Q0 12734643 5 12.435884 Anserini +test1423 Q0 16586264 6 12.421952 Anserini +test1423 Q0 1968081 7 12.291240 Anserini +test1423 Q0 723335 8 12.280607 Anserini +test1423 Q0 867261 9 12.226211 Anserini +test1423 Q0 7407830 10 12.124180 Anserini +test1423 Q0 1371910 11 12.080285 Anserini +test1423 Q0 12358224 12 12.071384 Anserini +test1423 Q0 7401258 13 12.056008 Anserini +test1423 Q0 4759974 14 12.034390 Anserini +test1423 Q0 19289351 15 11.938591 Anserini +test1423 Q0 8405022 16 11.935294 Anserini +test1423 Q0 11902784 17 11.920822 Anserini +test1423 Q0 1591174 18 11.885373 Anserini +test1423 Q0 7165635 19 11.884277 Anserini +test1423 Q0 651682 20 11.833031 Anserini +test1423 Q0 5830268 21 11.785524 Anserini +test1423 Q0 608590 22 11.774493 Anserini +test1423 Q0 1271808 23 11.738798 Anserini +test1423 Q0 4708432 24 11.715595 Anserini +test1423 Q0 718865 25 11.705030 Anserini +test1423 Q0 19888917 26 11.703547 Anserini +test1423 Q0 17163887 27 11.700652 Anserini +test1423 Q0 16648516 28 11.675960 Anserini +test1423 Q0 2467186 29 11.631322 Anserini +test1423 Q0 720238 30 11.551181 Anserini +test1424 Q0 12833063 1 13.777623 Anserini +test1424 Q0 10686126 2 13.712539 Anserini +test1424 Q0 8342056 3 13.620400 Anserini +test1424 Q0 9684449 4 13.468424 Anserini +test1424 Q0 12833061 5 13.454348 Anserini +test1424 Q0 9684441 6 13.387690 Anserini +test1424 Q0 20948376 7 13.300579 Anserini +test1424 Q0 16372431 8 13.300579 Anserini +test1424 Q0 14544924 9 13.300579 Anserini +test1424 Q0 20934566 10 13.300579 Anserini +test1424 Q0 20934677 11 13.300579 Anserini +test1424 Q0 20934663 12 13.227478 Anserini +test1424 Q0 20948370 13 13.227478 Anserini +test1424 Q0 13087803 14 13.227478 Anserini +test1424 Q0 13087810 15 13.227478 Anserini +test1424 Q0 12106443 16 13.227478 Anserini +test1424 Q0 14475374 17 13.227478 Anserini +test1424 Q0 20948293 18 13.227478 Anserini +test1424 Q0 20948295 19 13.227478 Anserini +test1424 Q0 20948361 20 13.227478 Anserini +test1424 Q0 9645610 21 13.155868 Anserini +test1424 Q0 10686117 22 13.155270 Anserini +test1424 Q0 14544933 23 13.070656 Anserini +test1424 Q0 3820333 24 12.874367 Anserini +test1424 Q0 3387833 25 12.855091 Anserini +test1424 Q0 12106455 26 12.853872 Anserini +test1424 Q0 20948371 27 12.780552 Anserini +test1424 Q0 20939419 28 12.754994 Anserini +test1424 Q0 20939438 29 12.754994 Anserini +test1424 Q0 14475381 30 12.642703 Anserini +test1425 Q0 469202 1 11.997340 Anserini +test1425 Q0 6232049 2 11.865967 Anserini +test1425 Q0 6644435 3 11.328215 Anserini +test1425 Q0 625946 4 11.187069 Anserini +test1425 Q0 7196136 5 11.064655 Anserini +test1425 Q0 7196130 6 10.981359 Anserini +test1425 Q0 286113 7 10.972742 Anserini +test1425 Q0 645269 8 10.883105 Anserini +test1425 Q0 4965530 9 10.866240 Anserini +test1425 Q0 14403951 10 10.777146 Anserini +test1425 Q0 1870463 11 10.717918 Anserini +test1425 Q0 1530276 12 10.708783 Anserini +test1425 Q0 645248 13 10.696883 Anserini +test1425 Q0 6717508 14 10.680965 Anserini +test1425 Q0 3209144 15 10.639172 Anserini +test1425 Q0 5264224 16 10.625490 Anserini +test1425 Q0 5099402 17 10.611737 Anserini +test1425 Q0 1530274 18 10.599489 Anserini +test1425 Q0 10151899 19 10.560705 Anserini +test1425 Q0 15584557 20 10.526357 Anserini +test1425 Q0 13744190 21 10.446115 Anserini +test1425 Q0 1556877 22 10.436022 Anserini +test1425 Q0 5605755 23 10.420897 Anserini +test1425 Q0 15308475 24 10.413733 Anserini +test1425 Q0 13744189 25 10.393406 Anserini +test1425 Q0 6325325 26 10.319828 Anserini +test1425 Q0 1556897 27 10.216854 Anserini +test1425 Q0 673333 28 10.196965 Anserini +test1425 Q0 6232046 29 10.161346 Anserini +test1425 Q0 645262 30 10.125173 Anserini +test1426 Q0 8013457 1 20.421577 Anserini +test1426 Q0 8013461 2 17.865383 Anserini +test1426 Q0 8013452 3 17.725784 Anserini +test1426 Q0 2197733 4 17.360924 Anserini +test1426 Q0 4555585 5 16.979633 Anserini +test1426 Q0 3341787 6 16.666069 Anserini +test1426 Q0 5524400 7 16.290871 Anserini +test1426 Q0 1219863 8 16.048258 Anserini +test1426 Q0 5513065 9 15.984889 Anserini +test1426 Q0 12062306 10 15.734094 Anserini +test1426 Q0 709652 11 15.539733 Anserini +test1426 Q0 5250138 12 15.517761 Anserini +test1426 Q0 231002 13 15.434330 Anserini +test1426 Q0 5672588 14 15.318713 Anserini +test1426 Q0 8609895 15 15.314474 Anserini +test1426 Q0 8013454 16 15.185363 Anserini +test1426 Q0 3926531 17 15.107178 Anserini +test1426 Q0 1220551 18 15.050653 Anserini +test1426 Q0 9938502 19 14.939333 Anserini +test1426 Q0 8738417 20 14.867771 Anserini +test1426 Q0 8609921 21 14.794119 Anserini +test1426 Q0 16956787 22 14.767171 Anserini +test1426 Q0 5636103 23 14.743088 Anserini +test1426 Q0 8800019 24 14.742356 Anserini +test1426 Q0 2441589 25 14.709050 Anserini +test1426 Q0 8013455 26 14.672647 Anserini +test1426 Q0 16989262 27 14.590361 Anserini +test1426 Q0 6628232 28 14.464477 Anserini +test1426 Q0 1221470 29 14.373482 Anserini +test1426 Q0 19169050 30 14.365889 Anserini +test1427 Q0 12592828 1 16.464674 Anserini +test1427 Q0 16340601 2 15.774453 Anserini +test1427 Q0 8696652 3 15.432016 Anserini +test1427 Q0 21011325 4 15.160772 Anserini +test1427 Q0 17950677 5 15.135453 Anserini +test1427 Q0 11703872 6 15.125053 Anserini +test1427 Q0 10233993 7 15.079247 Anserini +test1427 Q0 11974303 8 14.909434 Anserini +test1427 Q0 9064650 9 14.833216 Anserini +test1427 Q0 13179327 10 14.707710 Anserini +test1427 Q0 20099516 11 14.668191 Anserini +test1427 Q0 5632203 12 14.611365 Anserini +test1427 Q0 14525568 13 14.577374 Anserini +test1427 Q0 20404707 14 14.545512 Anserini +test1427 Q0 3186468 15 14.413667 Anserini +test1427 Q0 8723999 16 14.371624 Anserini +test1427 Q0 9064780 17 14.338709 Anserini +test1427 Q0 12353799 18 14.257594 Anserini +test1427 Q0 19946614 19 14.229710 Anserini +test1427 Q0 4599437 20 14.158913 Anserini +test1427 Q0 13179325 21 14.074765 Anserini +test1427 Q0 12383474 22 14.072628 Anserini +test1427 Q0 16660739 23 13.963712 Anserini +test1427 Q0 12436940 24 13.945766 Anserini +test1427 Q0 5497949 25 13.939939 Anserini +test1427 Q0 18887325 26 13.921269 Anserini +test1427 Q0 4076466 27 13.898746 Anserini +test1427 Q0 4076464 28 13.898746 Anserini +test1427 Q0 9064641 29 13.894257 Anserini +test1427 Q0 18778870 30 13.877955 Anserini +test1428 Q0 8699977 1 10.792300 Anserini +test1428 Q0 19507993 2 10.744319 Anserini +test1428 Q0 13120854 3 10.325351 Anserini +test1428 Q0 13120855 4 10.325351 Anserini +test1428 Q0 6453408 5 10.110564 Anserini +test1428 Q0 3246900 6 10.110564 Anserini +test1428 Q0 17534799 7 9.820006 Anserini +test1428 Q0 8699976 8 9.779799 Anserini +test1428 Q0 7668672 9 9.745928 Anserini +test1428 Q0 19507986 10 9.729642 Anserini +test1428 Q0 9680005 11 9.726501 Anserini +test1428 Q0 19582958 12 9.270442 Anserini +test1428 Q0 19582959 13 9.248052 Anserini +test1428 Q0 9325023 14 9.195021 Anserini +test1428 Q0 8750020 15 9.090425 Anserini +test1428 Q0 6001250 16 9.058870 Anserini +test1428 Q0 1982587 17 9.000588 Anserini +test1428 Q0 6001251 18 8.918518 Anserini +test1428 Q0 3395609 19 8.907409 Anserini +test1428 Q0 15933668 20 8.858093 Anserini +test1428 Q0 15740636 21 8.829309 Anserini +test1428 Q0 12710708 22 8.819565 Anserini +test1428 Q0 11821863 23 8.789671 Anserini +test1428 Q0 20946208 24 8.723104 Anserini +test1428 Q0 16057437 25 8.722959 Anserini +test1428 Q0 2857560 26 8.658022 Anserini +test1428 Q0 14457247 27 8.649067 Anserini +test1428 Q0 9931946 28 8.614197 Anserini +test1428 Q0 2404201 29 8.599757 Anserini +test1428 Q0 13841626 30 8.560625 Anserini +test1429 Q0 3171322 1 12.566918 Anserini +test1429 Q0 7420268 2 11.996716 Anserini +test1429 Q0 7420255 3 11.820971 Anserini +test1429 Q0 6107310 4 11.730526 Anserini +test1429 Q0 8879402 5 11.702261 Anserini +test1429 Q0 3171324 6 11.634893 Anserini +test1429 Q0 5400934 7 11.329023 Anserini +test1429 Q0 330739 8 11.321891 Anserini +test1429 Q0 16639200 9 11.321891 Anserini +test1429 Q0 330703 10 11.225059 Anserini +test1429 Q0 14961449 11 11.200440 Anserini +test1429 Q0 7792806 12 11.153039 Anserini +test1429 Q0 8010137 13 11.149714 Anserini +test1429 Q0 15332780 14 11.119558 Anserini +test1429 Q0 330751 15 11.112829 Anserini +test1429 Q0 9150785 16 11.014686 Anserini +test1429 Q0 12433211 17 11.007922 Anserini +test1429 Q0 14961450 18 10.977509 Anserini +test1429 Q0 14915801 19 10.958157 Anserini +test1429 Q0 3179235 20 10.950612 Anserini +test1429 Q0 12433214 21 10.931599 Anserini +test1429 Q0 6107324 22 10.931599 Anserini +test1429 Q0 9123218 23 10.912646 Anserini +test1429 Q0 3990024 24 10.827129 Anserini +test1429 Q0 4509745 25 10.825567 Anserini +test1429 Q0 5727396 26 10.825567 Anserini +test1429 Q0 9150787 27 10.812556 Anserini +test1429 Q0 3171416 28 10.812556 Anserini +test1429 Q0 9123217 29 10.812556 Anserini +test1429 Q0 3171412 30 10.812556 Anserini +test143 Q0 19486313 1 23.689732 Anserini +test143 Q0 19486323 2 23.500740 Anserini +test143 Q0 19486312 3 23.284704 Anserini +test143 Q0 2905509 4 23.156349 Anserini +test143 Q0 3211912 5 22.323841 Anserini +test143 Q0 19486314 6 21.837641 Anserini +test143 Q0 2905525 7 21.434431 Anserini +test143 Q0 19486318 8 21.431316 Anserini +test143 Q0 7723668 9 21.344631 Anserini +test143 Q0 19486315 10 21.301603 Anserini +test143 Q0 3211915 11 20.835463 Anserini +test143 Q0 3211898 12 20.729527 Anserini +test143 Q0 15335405 13 20.593353 Anserini +test143 Q0 6162729 14 20.410671 Anserini +test143 Q0 13734824 15 20.149666 Anserini +test143 Q0 2905521 16 19.749117 Anserini +test143 Q0 531951 17 19.729250 Anserini +test143 Q0 2905523 18 19.624611 Anserini +test143 Q0 8108951 19 19.539173 Anserini +test143 Q0 2905510 20 19.511726 Anserini +test143 Q0 12080277 21 19.498299 Anserini +test143 Q0 2905516 22 19.448505 Anserini +test143 Q0 6168708 23 19.406952 Anserini +test143 Q0 6168711 24 19.406952 Anserini +test143 Q0 12050698 25 19.378113 Anserini +test143 Q0 20843405 26 19.265818 Anserini +test143 Q0 531965 27 19.252893 Anserini +test143 Q0 7723674 28 19.231554 Anserini +test143 Q0 9686307 29 19.184353 Anserini +test143 Q0 15335413 30 19.150799 Anserini +test1430 Q0 10150388 1 12.208661 Anserini +test1430 Q0 10150370 2 10.978872 Anserini +test1430 Q0 10150382 3 10.871132 Anserini +test1430 Q0 10150389 4 10.782784 Anserini +test1430 Q0 10150381 5 10.782244 Anserini +test1430 Q0 10150391 6 10.782244 Anserini +test1430 Q0 10150372 7 10.476639 Anserini +test1430 Q0 10150380 8 10.476639 Anserini +test1430 Q0 10150387 9 10.167373 Anserini +test1430 Q0 10150385 10 10.167373 Anserini +test1430 Q0 10150383 11 10.120676 Anserini +test1430 Q0 5504614 12 10.089083 Anserini +test1430 Q0 10150374 13 10.079119 Anserini +test1430 Q0 14237358 14 10.049110 Anserini +test1430 Q0 10150373 15 9.986467 Anserini +test1430 Q0 10150371 16 9.935301 Anserini +test1430 Q0 17851925 17 9.849250 Anserini +test1430 Q0 15703164 18 9.845882 Anserini +test1430 Q0 10150390 19 9.772923 Anserini +test1430 Q0 10150386 20 9.759611 Anserini +test1430 Q0 10150384 21 9.735920 Anserini +test1430 Q0 10150378 22 9.729239 Anserini +test1430 Q0 10150379 23 9.713108 Anserini +test1430 Q0 14634260 24 9.621591 Anserini +test1430 Q0 14237359 25 9.490282 Anserini +test1430 Q0 11966043 26 9.376473 Anserini +test1430 Q0 10150375 27 9.246747 Anserini +test1430 Q0 10150377 28 9.119678 Anserini +test1430 Q0 10150376 29 9.088922 Anserini +test1430 Q0 7302877 30 8.893848 Anserini +test1431 Q0 14240066 1 16.745571 Anserini +test1431 Q0 13238090 2 16.707449 Anserini +test1431 Q0 13238097 3 16.707449 Anserini +test1431 Q0 3613535 4 15.893069 Anserini +test1431 Q0 16969048 5 15.885139 Anserini +test1431 Q0 16969047 6 15.843866 Anserini +test1431 Q0 11232689 7 15.785893 Anserini +test1431 Q0 14240065 8 15.763024 Anserini +test1431 Q0 19609013 9 15.285780 Anserini +test1431 Q0 19609020 10 15.234135 Anserini +test1431 Q0 13238096 11 15.051931 Anserini +test1431 Q0 14816281 12 14.982344 Anserini +test1431 Q0 3162056 13 14.971401 Anserini +test1431 Q0 6102865 14 14.917678 Anserini +test1431 Q0 2792744 15 14.856262 Anserini +test1431 Q0 9507967 16 14.790145 Anserini +test1431 Q0 17843073 17 14.664387 Anserini +test1431 Q0 5233612 18 14.578386 Anserini +test1431 Q0 12039527 19 14.495423 Anserini +test1431 Q0 7698702 20 14.359406 Anserini +test1431 Q0 4737422 21 14.053515 Anserini +test1431 Q0 6344792 22 14.037251 Anserini +test1431 Q0 16883492 23 14.009093 Anserini +test1431 Q0 5687156 24 13.997101 Anserini +test1431 Q0 10759582 25 13.805152 Anserini +test1431 Q0 18246982 26 13.804895 Anserini +test1431 Q0 17843072 27 13.803952 Anserini +test1431 Q0 12059162 28 13.731559 Anserini +test1431 Q0 19034316 29 13.705391 Anserini +test1431 Q0 19609018 30 13.661222 Anserini +test1432 Q0 7171027 1 13.369543 Anserini +test1432 Q0 19683127 2 12.802901 Anserini +test1432 Q0 17882149 3 12.680220 Anserini +test1432 Q0 17735293 4 12.354164 Anserini +test1432 Q0 8883575 5 12.198317 Anserini +test1432 Q0 6923258 6 12.128310 Anserini +test1432 Q0 752524 7 12.044635 Anserini +test1432 Q0 16611012 8 11.779771 Anserini +test1432 Q0 17473369 9 11.773506 Anserini +test1432 Q0 17824533 10 11.766178 Anserini +test1432 Q0 17824531 11 11.766178 Anserini +test1432 Q0 17093195 12 11.736307 Anserini +test1432 Q0 17473367 13 11.696098 Anserini +test1432 Q0 12608584 14 11.615577 Anserini +test1432 Q0 14285463 15 11.614946 Anserini +test1432 Q0 11365087 16 11.598415 Anserini +test1432 Q0 5173673 17 11.580766 Anserini +test1432 Q0 14277175 18 11.560795 Anserini +test1432 Q0 17093198 19 11.508936 Anserini +test1432 Q0 17397636 20 11.501046 Anserini +test1432 Q0 17209417 21 11.470060 Anserini +test1432 Q0 17740388 22 11.470060 Anserini +test1432 Q0 17740392 23 11.425675 Anserini +test1432 Q0 17781217 24 11.421319 Anserini +test1432 Q0 14285459 25 11.391781 Anserini +test1432 Q0 17794223 26 11.381652 Anserini +test1432 Q0 800581 27 11.379711 Anserini +test1432 Q0 11365086 28 11.346180 Anserini +test1432 Q0 16676605 29 11.286947 Anserini +test1432 Q0 12177844 30 11.262782 Anserini +test1433 Q0 3200168 1 21.290590 Anserini +test1433 Q0 9688802 2 20.841459 Anserini +test1433 Q0 376012 3 20.767262 Anserini +test1433 Q0 1661129 4 20.492912 Anserini +test1433 Q0 376024 5 20.317904 Anserini +test1433 Q0 14178501 6 20.033285 Anserini +test1433 Q0 7167385 7 19.829458 Anserini +test1433 Q0 376018 8 19.742661 Anserini +test1433 Q0 5106165 9 19.583027 Anserini +test1433 Q0 394928 10 19.402981 Anserini +test1433 Q0 3200108 11 19.362606 Anserini +test1433 Q0 403892 12 19.312510 Anserini +test1433 Q0 393895 13 19.312510 Anserini +test1433 Q0 4453863 14 19.275669 Anserini +test1433 Q0 394751 15 19.271332 Anserini +test1433 Q0 4245732 16 19.228394 Anserini +test1433 Q0 394931 17 19.188616 Anserini +test1433 Q0 106436 18 19.185026 Anserini +test1433 Q0 393932 19 19.139097 Anserini +test1433 Q0 393968 20 19.138058 Anserini +test1433 Q0 395020 21 19.112228 Anserini +test1433 Q0 394177 22 19.108057 Anserini +test1433 Q0 4185059 23 19.093948 Anserini +test1433 Q0 20116476 24 19.079777 Anserini +test1433 Q0 20547432 25 19.022570 Anserini +test1433 Q0 19775696 26 18.994627 Anserini +test1433 Q0 393823 27 18.990211 Anserini +test1433 Q0 17473834 28 18.893557 Anserini +test1433 Q0 394491 29 18.836687 Anserini +test1433 Q0 4450439 30 18.788673 Anserini +test1434 Q0 173004 1 9.413176 Anserini +test1434 Q0 9833986 2 8.764641 Anserini +test1434 Q0 260566 3 8.598877 Anserini +test1434 Q0 14908235 4 8.540639 Anserini +test1434 Q0 9412407 5 8.481357 Anserini +test1434 Q0 11157754 6 8.443226 Anserini +test1434 Q0 19983732 7 8.256037 Anserini +test1434 Q0 16370200 8 8.248995 Anserini +test1434 Q0 10769058 9 8.224815 Anserini +test1434 Q0 3628726 10 8.209786 Anserini +test1434 Q0 5804277 11 8.178738 Anserini +test1434 Q0 17134563 12 8.175892 Anserini +test1434 Q0 18848423 13 8.092031 Anserini +test1434 Q0 17134570 14 8.088256 Anserini +test1434 Q0 2695447 15 8.079268 Anserini +test1434 Q0 12409177 16 8.060637 Anserini +test1434 Q0 12409178 17 8.060637 Anserini +test1434 Q0 19045251 18 8.039712 Anserini +test1434 Q0 6566896 19 8.012046 Anserini +test1434 Q0 5664567 20 8.002308 Anserini +test1434 Q0 13992690 21 7.990042 Anserini +test1434 Q0 13992691 22 7.990042 Anserini +test1434 Q0 13438033 23 7.988954 Anserini +test1434 Q0 4280440 24 7.980740 Anserini +test1434 Q0 200244 25 7.961506 Anserini +test1434 Q0 13438032 26 7.944946 Anserini +test1434 Q0 864581 27 7.944620 Anserini +test1434 Q0 11803161 28 7.937788 Anserini +test1434 Q0 11058965 29 7.927897 Anserini +test1434 Q0 4677665 30 7.885323 Anserini +test1435 Q0 11526632 1 15.642107 Anserini +test1435 Q0 10055559 2 15.163802 Anserini +test1435 Q0 15444592 3 15.014128 Anserini +test1435 Q0 16341346 4 14.884283 Anserini +test1435 Q0 16341347 5 14.851387 Anserini +test1435 Q0 12633166 6 14.577563 Anserini +test1435 Q0 10759074 7 14.501116 Anserini +test1435 Q0 14803905 8 14.478640 Anserini +test1435 Q0 12232401 9 14.456223 Anserini +test1435 Q0 20157463 10 14.383894 Anserini +test1435 Q0 12232404 11 14.351305 Anserini +test1435 Q0 15454118 12 14.282930 Anserini +test1435 Q0 16341353 13 14.236946 Anserini +test1435 Q0 9344155 14 14.174283 Anserini +test1435 Q0 11702065 15 14.163052 Anserini +test1435 Q0 12298612 16 14.161219 Anserini +test1435 Q0 14803874 17 14.128766 Anserini +test1435 Q0 11576516 18 14.119503 Anserini +test1435 Q0 17757340 19 14.011045 Anserini +test1435 Q0 11576505 20 13.983046 Anserini +test1435 Q0 16341354 21 13.983046 Anserini +test1435 Q0 9209775 22 13.969077 Anserini +test1435 Q0 12298618 23 13.908404 Anserini +test1435 Q0 6436478 24 13.878462 Anserini +test1435 Q0 20413798 25 13.865548 Anserini +test1435 Q0 20413807 26 13.865548 Anserini +test1435 Q0 15444586 27 13.848506 Anserini +test1435 Q0 7189532 28 13.813385 Anserini +test1435 Q0 11576506 29 13.786598 Anserini +test1435 Q0 11576503 30 13.775173 Anserini +test1436 Q0 8491769 1 16.232073 Anserini +test1436 Q0 8491747 2 16.232073 Anserini +test1436 Q0 8109261 3 14.235841 Anserini +test1436 Q0 8491752 4 14.199842 Anserini +test1436 Q0 1633687 5 14.085981 Anserini +test1436 Q0 8491761 6 13.788267 Anserini +test1436 Q0 8491759 7 13.602283 Anserini +test1436 Q0 8491763 8 13.602283 Anserini +test1436 Q0 8491766 9 13.602283 Anserini +test1436 Q0 8491760 10 13.477013 Anserini +test1436 Q0 8491762 11 13.477013 Anserini +test1436 Q0 8491753 12 13.309422 Anserini +test1436 Q0 8491756 13 13.309422 Anserini +test1436 Q0 8491768 14 13.215960 Anserini +test1436 Q0 8491748 15 13.073705 Anserini +test1436 Q0 8870084 16 12.925697 Anserini +test1436 Q0 8870074 17 12.820776 Anserini +test1436 Q0 8491757 18 12.755040 Anserini +test1436 Q0 1579439 19 12.717726 Anserini +test1436 Q0 12156811 20 12.717726 Anserini +test1436 Q0 8491767 21 12.677565 Anserini +test1436 Q0 8491765 22 12.532587 Anserini +test1436 Q0 8491755 23 12.451437 Anserini +test1436 Q0 8491751 24 12.450182 Anserini +test1436 Q0 8491758 25 12.371670 Anserini +test1436 Q0 8491754 26 12.308008 Anserini +test1436 Q0 8491764 27 12.308008 Anserini +test1436 Q0 14679749 28 12.254313 Anserini +test1436 Q0 1579435 29 12.226941 Anserini +test1436 Q0 8870083 30 12.217864 Anserini +test1437 Q0 13980603 1 15.830748 Anserini +test1437 Q0 8536498 2 15.667606 Anserini +test1437 Q0 17498477 3 15.623471 Anserini +test1437 Q0 8536415 4 15.537132 Anserini +test1437 Q0 8355199 5 15.264944 Anserini +test1437 Q0 11211164 6 15.236441 Anserini +test1437 Q0 50117 7 15.224251 Anserini +test1437 Q0 18277510 8 15.112069 Anserini +test1437 Q0 2251924 9 15.008208 Anserini +test1437 Q0 4703801 10 15.005103 Anserini +test1437 Q0 14689815 11 14.855018 Anserini +test1437 Q0 8536459 12 14.850120 Anserini +test1437 Q0 11763604 13 14.690804 Anserini +test1437 Q0 20806408 14 14.608380 Anserini +test1437 Q0 20450337 15 14.550873 Anserini +test1437 Q0 15472223 16 14.499870 Anserini +test1437 Q0 17498486 17 14.483287 Anserini +test1437 Q0 18698718 18 14.410168 Anserini +test1437 Q0 18277529 19 14.400311 Anserini +test1437 Q0 16728180 20 14.391500 Anserini +test1437 Q0 19587663 21 14.362138 Anserini +test1437 Q0 6848788 22 14.353906 Anserini +test1437 Q0 6848787 23 14.353741 Anserini +test1437 Q0 18962547 24 14.296647 Anserini +test1437 Q0 6920635 25 14.271177 Anserini +test1437 Q0 5771883 26 14.254989 Anserini +test1437 Q0 15802361 27 14.251291 Anserini +test1437 Q0 19711382 28 14.217055 Anserini +test1437 Q0 19978925 29 14.155342 Anserini +test1437 Q0 7933001 30 14.134628 Anserini +test1438 Q0 9868994 1 14.580259 Anserini +test1438 Q0 79921 2 14.515621 Anserini +test1438 Q0 7973155 3 14.180480 Anserini +test1438 Q0 8155782 4 13.917811 Anserini +test1438 Q0 18084470 5 13.774172 Anserini +test1438 Q0 3200082 6 13.629869 Anserini +test1438 Q0 3200044 7 13.589292 Anserini +test1438 Q0 8724712 8 13.424617 Anserini +test1438 Q0 7219606 9 13.356036 Anserini +test1438 Q0 393936 10 13.201362 Anserini +test1438 Q0 8724685 11 13.188241 Anserini +test1438 Q0 394315 12 12.960105 Anserini +test1438 Q0 394221 13 12.960105 Anserini +test1438 Q0 9869659 14 12.931859 Anserini +test1438 Q0 9868174 15 12.877359 Anserini +test1438 Q0 11126522 16 12.876979 Anserini +test1438 Q0 18481642 17 12.873536 Anserini +test1438 Q0 7511031 18 12.837923 Anserini +test1438 Q0 4160523 19 12.745518 Anserini +test1438 Q0 394703 20 12.741679 Anserini +test1438 Q0 5811150 21 12.723038 Anserini +test1438 Q0 394776 22 12.719366 Anserini +test1438 Q0 2527998 23 12.669249 Anserini +test1438 Q0 394889 24 12.605097 Anserini +test1438 Q0 16934614 25 12.567207 Anserini +test1438 Q0 6517992 26 12.543593 Anserini +test1438 Q0 5691663 27 12.509377 Anserini +test1438 Q0 6573297 28 12.440332 Anserini +test1438 Q0 8915816 29 12.426085 Anserini +test1438 Q0 393752 30 12.349909 Anserini +test1439 Q0 12064957 1 19.254299 Anserini +test1439 Q0 4465325 2 18.137985 Anserini +test1439 Q0 16067948 3 16.435837 Anserini +test1439 Q0 3512633 4 15.649986 Anserini +test1439 Q0 7839453 5 15.389427 Anserini +test1439 Q0 16067945 6 15.232066 Anserini +test1439 Q0 4665236 7 15.231144 Anserini +test1439 Q0 6333761 8 15.004827 Anserini +test1439 Q0 16896719 9 14.913729 Anserini +test1439 Q0 581352 10 14.691311 Anserini +test1439 Q0 9776851 11 14.565272 Anserini +test1439 Q0 17461432 12 14.530391 Anserini +test1439 Q0 12064958 13 14.472665 Anserini +test1439 Q0 3512637 14 14.403444 Anserini +test1439 Q0 801142 15 14.263790 Anserini +test1439 Q0 492678 16 14.157575 Anserini +test1439 Q0 16067962 17 14.155552 Anserini +test1439 Q0 8232692 18 14.087725 Anserini +test1439 Q0 16810082 19 14.074064 Anserini +test1439 Q0 19786654 20 13.977025 Anserini +test1439 Q0 20964581 21 13.928654 Anserini +test1439 Q0 4363518 22 13.337892 Anserini +test1439 Q0 845515 23 13.125009 Anserini +test1439 Q0 4111531 24 13.097166 Anserini +test1439 Q0 19350076 25 13.036006 Anserini +test1439 Q0 17539157 26 13.025805 Anserini +test1439 Q0 15273133 27 13.024031 Anserini +test1439 Q0 1645029 28 13.008925 Anserini +test1439 Q0 4665242 29 12.960144 Anserini +test1439 Q0 4465328 30 12.947096 Anserini +test144 Q0 2930266 1 14.515678 Anserini +test144 Q0 4003978 2 14.147892 Anserini +test144 Q0 20521298 3 13.713812 Anserini +test144 Q0 17362818 4 13.643872 Anserini +test144 Q0 10883531 5 13.577840 Anserini +test144 Q0 15461292 6 13.502899 Anserini +test144 Q0 4142608 7 13.483068 Anserini +test144 Q0 9883242 8 13.382545 Anserini +test144 Q0 322439 9 13.378075 Anserini +test144 Q0 20521300 10 13.315467 Anserini +test144 Q0 1802470 11 13.207869 Anserini +test144 Q0 322434 12 13.113257 Anserini +test144 Q0 14676618 13 13.096831 Anserini +test144 Q0 11139498 14 13.082933 Anserini +test144 Q0 6095178 15 13.025209 Anserini +test144 Q0 9890064 16 12.995955 Anserini +test144 Q0 9890066 17 12.995955 Anserini +test144 Q0 1364502 18 12.955871 Anserini +test144 Q0 9879105 19 12.940048 Anserini +test144 Q0 9163460 20 12.797900 Anserini +test144 Q0 1730460 21 12.789454 Anserini +test144 Q0 3748489 22 12.774182 Anserini +test144 Q0 9890043 23 12.771821 Anserini +test144 Q0 9879103 24 12.771821 Anserini +test144 Q0 20405052 25 12.769356 Anserini +test144 Q0 16531935 26 12.763830 Anserini +test144 Q0 9883401 27 12.729125 Anserini +test144 Q0 719464 28 12.709039 Anserini +test144 Q0 9881404 29 12.651656 Anserini +test144 Q0 2932269 30 12.649984 Anserini +test1440 Q0 14718200 1 25.482834 Anserini +test1440 Q0 14718196 2 24.967798 Anserini +test1440 Q0 14718201 3 24.238451 Anserini +test1440 Q0 20157249 4 20.544823 Anserini +test1440 Q0 14591434 5 19.892994 Anserini +test1440 Q0 14718198 6 16.300684 Anserini +test1440 Q0 13583688 7 16.017544 Anserini +test1440 Q0 8199197 8 15.752752 Anserini +test1440 Q0 14718199 9 15.474200 Anserini +test1440 Q0 14718197 10 15.173013 Anserini +test1440 Q0 19035205 11 13.996947 Anserini +test1440 Q0 1571174 12 13.948455 Anserini +test1440 Q0 2204173 13 13.864511 Anserini +test1440 Q0 6677067 14 13.687721 Anserini +test1440 Q0 1571171 15 13.637656 Anserini +test1440 Q0 12996864 16 13.536688 Anserini +test1440 Q0 3415238 17 13.486899 Anserini +test1440 Q0 20730270 18 13.326668 Anserini +test1440 Q0 5510598 19 13.272914 Anserini +test1440 Q0 8199196 20 13.036692 Anserini +test1440 Q0 3817720 21 12.989141 Anserini +test1440 Q0 13400653 22 12.910566 Anserini +test1440 Q0 10462415 23 12.866016 Anserini +test1440 Q0 9693371 24 12.834216 Anserini +test1440 Q0 15780403 25 12.826123 Anserini +test1440 Q0 173491 26 12.817535 Anserini +test1440 Q0 20730269 27 12.802001 Anserini +test1440 Q0 5656574 28 12.790890 Anserini +test1440 Q0 18613825 29 12.758347 Anserini +test1440 Q0 5675333 30 12.745412 Anserini +test1441 Q0 9066080 1 11.904004 Anserini +test1441 Q0 11459522 2 11.800199 Anserini +test1441 Q0 16788247 3 11.289683 Anserini +test1441 Q0 9514615 4 10.937719 Anserini +test1441 Q0 8932177 5 10.818894 Anserini +test1441 Q0 8518334 6 10.759870 Anserini +test1441 Q0 1666818 7 10.732533 Anserini +test1441 Q0 8930363 8 10.711169 Anserini +test1441 Q0 8930377 9 10.648882 Anserini +test1441 Q0 3633066 10 10.599962 Anserini +test1441 Q0 10505879 11 10.569500 Anserini +test1441 Q0 1518745 12 10.505157 Anserini +test1441 Q0 15075906 13 10.408680 Anserini +test1441 Q0 8930369 14 10.001458 Anserini +test1441 Q0 2294939 15 9.972875 Anserini +test1441 Q0 2582663 16 9.925359 Anserini +test1441 Q0 8131777 17 9.913603 Anserini +test1441 Q0 13900570 18 9.888458 Anserini +test1441 Q0 8131775 19 9.765463 Anserini +test1441 Q0 13895599 20 9.722580 Anserini +test1441 Q0 5863305 21 9.584394 Anserini +test1441 Q0 14153155 22 9.583043 Anserini +test1441 Q0 3633073 23 9.513597 Anserini +test1441 Q0 2095799 24 9.511780 Anserini +test1441 Q0 107306 25 9.482424 Anserini +test1441 Q0 18556591 26 9.479875 Anserini +test1441 Q0 6174600 27 9.394241 Anserini +test1441 Q0 18193051 28 9.379256 Anserini +test1441 Q0 19968068 29 9.374469 Anserini +test1441 Q0 895821 30 9.332656 Anserini +test1442 Q0 9535062 1 12.377187 Anserini +test1442 Q0 4274614 2 11.516942 Anserini +test1442 Q0 9868735 3 11.280424 Anserini +test1442 Q0 20186113 4 11.216663 Anserini +test1442 Q0 1792329 5 11.002310 Anserini +test1442 Q0 2005700 6 10.986822 Anserini +test1442 Q0 12112109 7 10.852604 Anserini +test1442 Q0 9651941 8 10.801341 Anserini +test1442 Q0 1860615 9 10.741743 Anserini +test1442 Q0 11313338 10 10.674754 Anserini +test1442 Q0 20569704 11 10.593155 Anserini +test1442 Q0 9869175 12 10.558846 Anserini +test1442 Q0 16769155 13 10.552194 Anserini +test1442 Q0 7261321 14 10.550180 Anserini +test1442 Q0 18615877 15 10.515217 Anserini +test1442 Q0 3088917 16 10.460492 Anserini +test1442 Q0 2528102 17 10.452358 Anserini +test1442 Q0 15148797 18 10.449712 Anserini +test1442 Q0 10829391 19 10.406985 Anserini +test1442 Q0 2108328 20 10.399993 Anserini +test1442 Q0 11521507 21 10.399331 Anserini +test1442 Q0 17692112 22 10.386608 Anserini +test1442 Q0 5155664 23 10.362412 Anserini +test1442 Q0 3057814 24 10.354208 Anserini +test1442 Q0 11450204 25 10.349847 Anserini +test1442 Q0 6089854 26 10.311050 Anserini +test1442 Q0 3058206 27 10.297464 Anserini +test1442 Q0 5030699 28 10.233478 Anserini +test1442 Q0 19269283 29 10.210484 Anserini +test1442 Q0 2655122 30 10.173541 Anserini +test1443 Q0 4524892 1 18.823885 Anserini +test1443 Q0 797497 2 18.561052 Anserini +test1443 Q0 15002936 3 18.382765 Anserini +test1443 Q0 16528975 4 17.313808 Anserini +test1443 Q0 4524899 5 16.849958 Anserini +test1443 Q0 10723316 6 16.600346 Anserini +test1443 Q0 2978639 7 16.289047 Anserini +test1443 Q0 1687421 8 15.856071 Anserini +test1443 Q0 13026823 9 15.743680 Anserini +test1443 Q0 18759821 10 14.772232 Anserini +test1443 Q0 1516002 11 14.615068 Anserini +test1443 Q0 15002948 12 14.615068 Anserini +test1443 Q0 17190435 13 14.615068 Anserini +test1443 Q0 8461823 14 14.604219 Anserini +test1443 Q0 1377291 15 14.461216 Anserini +test1443 Q0 4013297 16 14.461216 Anserini +test1443 Q0 5164746 17 14.461216 Anserini +test1443 Q0 17031085 18 14.461216 Anserini +test1443 Q0 9516688 19 14.310568 Anserini +test1443 Q0 18549866 20 14.310568 Anserini +test1443 Q0 4271461 21 14.163025 Anserini +test1443 Q0 1860128 22 14.163025 Anserini +test1443 Q0 6346372 23 14.163025 Anserini +test1443 Q0 4524896 24 13.894070 Anserini +test1443 Q0 2978638 25 13.348631 Anserini +test1443 Q0 797508 26 13.346868 Anserini +test1443 Q0 8265990 27 13.119245 Anserini +test1443 Q0 797513 28 12.963124 Anserini +test1443 Q0 8461818 29 12.846708 Anserini +test1443 Q0 2136602 30 12.838257 Anserini +test1444 Q0 18871525 1 10.933170 Anserini +test1444 Q0 13892108 2 10.179124 Anserini +test1444 Q0 18326031 3 10.179124 Anserini +test1444 Q0 17720738 4 10.148487 Anserini +test1444 Q0 148985 5 10.126172 Anserini +test1444 Q0 17384582 6 10.105616 Anserini +test1444 Q0 16848958 7 9.975618 Anserini +test1444 Q0 9364806 8 9.890725 Anserini +test1444 Q0 9000350 9 9.869400 Anserini +test1444 Q0 18871526 10 9.869400 Anserini +test1444 Q0 18871503 11 9.817256 Anserini +test1444 Q0 4095053 12 9.781681 Anserini +test1444 Q0 366075 13 9.768181 Anserini +test1444 Q0 3436444 14 9.657942 Anserini +test1444 Q0 16769534 15 9.612508 Anserini +test1444 Q0 4095052 16 9.596026 Anserini +test1444 Q0 13892130 17 9.591336 Anserini +test1444 Q0 18953690 18 9.591336 Anserini +test1444 Q0 19764480 19 9.530181 Anserini +test1444 Q0 17300893 20 9.513836 Anserini +test1444 Q0 19952512 21 9.513836 Anserini +test1444 Q0 299891 22 9.461273 Anserini +test1444 Q0 2774188 23 9.413375 Anserini +test1444 Q0 7312400 24 9.413289 Anserini +test1444 Q0 2783398 25 9.406222 Anserini +test1444 Q0 356414 26 9.353127 Anserini +test1444 Q0 20116365 27 9.347327 Anserini +test1444 Q0 4622637 28 9.345444 Anserini +test1444 Q0 10810203 29 9.307264 Anserini +test1444 Q0 18955068 30 9.307264 Anserini +test1445 Q0 16041352 1 17.836275 Anserini +test1445 Q0 7826701 2 16.976059 Anserini +test1445 Q0 11075660 3 16.384108 Anserini +test1445 Q0 14653093 4 16.306810 Anserini +test1445 Q0 2386382 5 15.652596 Anserini +test1445 Q0 10869494 6 15.553628 Anserini +test1445 Q0 7826709 7 15.528208 Anserini +test1445 Q0 2386388 8 15.213385 Anserini +test1445 Q0 7514197 9 14.912451 Anserini +test1445 Q0 14535102 10 14.751987 Anserini +test1445 Q0 14663072 11 14.506298 Anserini +test1445 Q0 2694892 12 14.472569 Anserini +test1445 Q0 1810142 13 14.461353 Anserini +test1445 Q0 6688982 14 14.425859 Anserini +test1445 Q0 7826693 15 14.160442 Anserini +test1445 Q0 5063606 16 14.037155 Anserini +test1445 Q0 2694894 17 13.995464 Anserini +test1445 Q0 11246067 18 13.990074 Anserini +test1445 Q0 6485093 19 13.935860 Anserini +test1445 Q0 17619849 20 13.921533 Anserini +test1445 Q0 1810153 21 13.894799 Anserini +test1445 Q0 14727490 22 13.851311 Anserini +test1445 Q0 14085648 23 13.792605 Anserini +test1445 Q0 6688983 24 13.764482 Anserini +test1445 Q0 7826692 25 13.692502 Anserini +test1445 Q0 9150974 26 13.677661 Anserini +test1445 Q0 8267129 27 13.669509 Anserini +test1445 Q0 11714655 28 13.665123 Anserini +test1445 Q0 2869379 29 13.630770 Anserini +test1445 Q0 20299796 30 13.624754 Anserini +test1446 Q0 10219876 1 13.512813 Anserini +test1446 Q0 10219882 2 13.512813 Anserini +test1446 Q0 1623394 3 13.479816 Anserini +test1446 Q0 13515906 4 13.460224 Anserini +test1446 Q0 6946706 5 13.306953 Anserini +test1446 Q0 6946707 6 13.306953 Anserini +test1446 Q0 4198740 7 13.081975 Anserini +test1446 Q0 16985419 8 12.805033 Anserini +test1446 Q0 14105047 9 12.801340 Anserini +test1446 Q0 19822286 10 12.758053 Anserini +test1446 Q0 19822287 11 12.758053 Anserini +test1446 Q0 8844256 12 12.642694 Anserini +test1446 Q0 2012422 13 12.608997 Anserini +test1446 Q0 5888935 14 12.606582 Anserini +test1446 Q0 14124694 15 12.588336 Anserini +test1446 Q0 13515910 16 12.467639 Anserini +test1446 Q0 20945787 17 12.467622 Anserini +test1446 Q0 18524836 18 12.429804 Anserini +test1446 Q0 19158977 19 12.349046 Anserini +test1446 Q0 3963573 20 12.339510 Anserini +test1446 Q0 19290931 21 12.204224 Anserini +test1446 Q0 5674649 22 12.123358 Anserini +test1446 Q0 8735912 23 12.122488 Anserini +test1446 Q0 7474368 24 12.071959 Anserini +test1446 Q0 14076412 25 12.046281 Anserini +test1446 Q0 7818411 26 12.019658 Anserini +test1446 Q0 1521669 27 11.981221 Anserini +test1446 Q0 1895112 28 11.980291 Anserini +test1446 Q0 15853212 29 11.944122 Anserini +test1446 Q0 13869663 30 11.834947 Anserini +test1447 Q0 4067047 1 16.445040 Anserini +test1447 Q0 5653882 2 13.323205 Anserini +test1447 Q0 689360 3 13.153617 Anserini +test1447 Q0 278270 4 12.680202 Anserini +test1447 Q0 278262 5 12.483937 Anserini +test1447 Q0 5543324 6 12.239645 Anserini +test1447 Q0 185671 7 12.239645 Anserini +test1447 Q0 8788171 8 11.800935 Anserini +test1447 Q0 17379874 9 11.641713 Anserini +test1447 Q0 19596104 10 11.601482 Anserini +test1447 Q0 13216317 11 11.350834 Anserini +test1447 Q0 11100120 12 11.224991 Anserini +test1447 Q0 16546860 13 11.074800 Anserini +test1447 Q0 1551714 14 11.064310 Anserini +test1447 Q0 173526 15 11.057270 Anserini +test1447 Q0 278240 16 10.997208 Anserini +test1447 Q0 16106307 17 10.970767 Anserini +test1447 Q0 11846109 18 10.967293 Anserini +test1447 Q0 18085184 19 10.942087 Anserini +test1447 Q0 278243 20 10.910518 Anserini +test1447 Q0 278271 21 10.769924 Anserini +test1447 Q0 17889642 22 10.751220 Anserini +test1447 Q0 609790 23 10.727222 Anserini +test1447 Q0 1798750 24 10.709433 Anserini +test1447 Q0 1651603 25 10.684236 Anserini +test1447 Q0 4493849 26 10.644405 Anserini +test1447 Q0 15168243 27 10.569153 Anserini +test1447 Q0 477739 28 10.553135 Anserini +test1447 Q0 1651609 29 10.552508 Anserini +test1447 Q0 2551348 30 10.488731 Anserini +test1448 Q0 13038356 1 13.711727 Anserini +test1448 Q0 4504554 2 12.079398 Anserini +test1448 Q0 7641526 3 11.767700 Anserini +test1448 Q0 13038357 4 11.155936 Anserini +test1448 Q0 13038354 5 11.155936 Anserini +test1448 Q0 6745780 6 10.887676 Anserini +test1448 Q0 3578443 7 10.605237 Anserini +test1448 Q0 2265888 8 10.524898 Anserini +test1448 Q0 2164940 9 10.484025 Anserini +test1448 Q0 13038355 10 10.437501 Anserini +test1448 Q0 16604712 11 10.414151 Anserini +test1448 Q0 2164943 12 10.337315 Anserini +test1448 Q0 6707630 13 10.296675 Anserini +test1448 Q0 11071198 14 10.260990 Anserini +test1448 Q0 20070739 15 10.175354 Anserini +test1448 Q0 5085771 16 10.126215 Anserini +test1448 Q0 3656144 17 10.103288 Anserini +test1448 Q0 7641522 18 9.840704 Anserini +test1448 Q0 19199569 19 9.821373 Anserini +test1448 Q0 2265886 20 9.715036 Anserini +test1448 Q0 4504563 21 9.702012 Anserini +test1448 Q0 4504551 22 9.686155 Anserini +test1448 Q0 2265885 23 9.683844 Anserini +test1448 Q0 6779407 24 9.677376 Anserini +test1448 Q0 20644751 25 9.541702 Anserini +test1448 Q0 5289943 26 9.375778 Anserini +test1448 Q0 2265893 27 9.338709 Anserini +test1448 Q0 17003667 28 9.337699 Anserini +test1448 Q0 4504562 29 9.316660 Anserini +test1448 Q0 5585871 30 9.222843 Anserini +test1449 Q0 345035 1 10.456992 Anserini +test1449 Q0 12258481 2 10.450766 Anserini +test1449 Q0 14123513 3 10.131667 Anserini +test1449 Q0 15089030 4 10.116239 Anserini +test1449 Q0 2490327 5 10.105503 Anserini +test1449 Q0 473755 6 10.054408 Anserini +test1449 Q0 6507242 7 10.052113 Anserini +test1449 Q0 16536918 8 9.967896 Anserini +test1449 Q0 6709656 9 9.947822 Anserini +test1449 Q0 17864801 10 9.939843 Anserini +test1449 Q0 8631564 11 9.922317 Anserini +test1449 Q0 84502 12 9.905121 Anserini +test1449 Q0 4218003 13 9.898764 Anserini +test1449 Q0 18885144 14 9.865170 Anserini +test1449 Q0 8097952 15 9.862166 Anserini +test1449 Q0 16606512 16 9.838535 Anserini +test1449 Q0 5175666 17 9.823700 Anserini +test1449 Q0 16548290 18 9.777315 Anserini +test1449 Q0 10639767 19 9.741371 Anserini +test1449 Q0 17245352 20 9.707741 Anserini +test1449 Q0 2350808 21 9.698666 Anserini +test1449 Q0 8833916 22 9.685259 Anserini +test1449 Q0 2933034 23 9.682611 Anserini +test1449 Q0 12875549 24 9.674161 Anserini +test1449 Q0 1918550 25 9.624451 Anserini +test1449 Q0 3959447 26 9.609189 Anserini +test1449 Q0 7573387 27 9.583292 Anserini +test1449 Q0 625384 28 9.582607 Anserini +test1449 Q0 84495 29 9.579878 Anserini +test1449 Q0 7206145 30 9.566522 Anserini +test145 Q0 712381 1 15.290031 Anserini +test145 Q0 4404204 2 14.547068 Anserini +test145 Q0 15290593 3 14.361839 Anserini +test145 Q0 10063371 4 14.132377 Anserini +test145 Q0 2435250 5 13.877513 Anserini +test145 Q0 4404201 6 13.715250 Anserini +test145 Q0 2487927 7 13.653396 Anserini +test145 Q0 10063373 8 13.581025 Anserini +test145 Q0 4969567 9 13.271460 Anserini +test145 Q0 11344590 10 13.163861 Anserini +test145 Q0 999907 11 13.156419 Anserini +test145 Q0 712377 12 13.137160 Anserini +test145 Q0 10482030 13 13.085260 Anserini +test145 Q0 999925 14 13.049763 Anserini +test145 Q0 712376 15 13.032802 Anserini +test145 Q0 12807452 16 13.028159 Anserini +test145 Q0 1004207 17 12.964145 Anserini +test145 Q0 712390 18 12.766681 Anserini +test145 Q0 12509281 19 12.756778 Anserini +test145 Q0 119083 20 12.707909 Anserini +test145 Q0 3822816 21 12.600516 Anserini +test145 Q0 412017 22 12.512595 Anserini +test145 Q0 7696028 23 12.507587 Anserini +test145 Q0 712383 24 12.464899 Anserini +test145 Q0 4457344 25 12.450040 Anserini +test145 Q0 712385 26 12.390259 Anserini +test145 Q0 6102389 27 12.312056 Anserini +test145 Q0 2138616 28 12.309719 Anserini +test145 Q0 13174991 29 12.211970 Anserini +test145 Q0 5326530 30 12.204906 Anserini +test1450 Q0 16291663 1 16.963438 Anserini +test1450 Q0 15755704 2 16.336050 Anserini +test1450 Q0 14510379 3 16.100227 Anserini +test1450 Q0 8199999 4 16.020170 Anserini +test1450 Q0 12057442 5 16.006660 Anserini +test1450 Q0 12299660 6 15.961371 Anserini +test1450 Q0 1303666 7 15.744118 Anserini +test1450 Q0 20236480 8 15.661305 Anserini +test1450 Q0 14770186 9 15.649921 Anserini +test1450 Q0 5456012 10 15.573515 Anserini +test1450 Q0 15114230 11 15.527568 Anserini +test1450 Q0 1303668 12 15.507088 Anserini +test1450 Q0 20338635 13 15.442247 Anserini +test1450 Q0 8504363 14 15.376606 Anserini +test1450 Q0 10235311 15 15.314877 Anserini +test1450 Q0 8230887 16 15.307459 Anserini +test1450 Q0 16600696 17 15.260006 Anserini +test1450 Q0 18145475 18 15.254850 Anserini +test1450 Q0 13385477 19 15.254842 Anserini +test1450 Q0 16771040 20 15.246989 Anserini +test1450 Q0 12772263 21 15.220460 Anserini +test1450 Q0 8656605 22 15.204957 Anserini +test1450 Q0 14065926 23 15.175902 Anserini +test1450 Q0 9968303 24 15.154123 Anserini +test1450 Q0 9783383 25 15.125193 Anserini +test1450 Q0 8378961 26 15.018767 Anserini +test1450 Q0 8660444 27 14.960131 Anserini +test1450 Q0 12074275 28 14.952738 Anserini +test1450 Q0 10434002 29 14.945809 Anserini +test1450 Q0 10874005 30 14.917901 Anserini +test1451 Q0 20133277 1 10.946777 Anserini +test1451 Q0 2595304 2 10.919721 Anserini +test1451 Q0 10290561 3 10.397527 Anserini +test1451 Q0 2595317 4 10.387940 Anserini +test1451 Q0 11477153 5 9.680391 Anserini +test1451 Q0 809181 6 9.613865 Anserini +test1451 Q0 809189 7 9.507132 Anserini +test1451 Q0 809173 8 9.507132 Anserini +test1451 Q0 20133278 9 9.438475 Anserini +test1451 Q0 20133274 10 9.438475 Anserini +test1451 Q0 7971523 11 9.387808 Anserini +test1451 Q0 18055618 12 9.256156 Anserini +test1451 Q0 8211746 13 9.230688 Anserini +test1451 Q0 18296719 14 9.185844 Anserini +test1451 Q0 20133276 15 9.170229 Anserini +test1451 Q0 11553775 16 9.119850 Anserini +test1451 Q0 18979240 17 9.119028 Anserini +test1451 Q0 19683536 18 9.107178 Anserini +test1451 Q0 19683535 19 8.999907 Anserini +test1451 Q0 16852880 20 8.974405 Anserini +test1451 Q0 4676463 21 8.974405 Anserini +test1451 Q0 10290555 22 8.883068 Anserini +test1451 Q0 18979236 23 8.852957 Anserini +test1451 Q0 15483661 24 8.831835 Anserini +test1451 Q0 9346766 25 8.826654 Anserini +test1451 Q0 19181665 26 8.765127 Anserini +test1451 Q0 16852881 27 8.755130 Anserini +test1451 Q0 3774452 28 8.739830 Anserini +test1451 Q0 19527430 29 8.722819 Anserini +test1451 Q0 17687664 30 8.722819 Anserini +test1452 Q0 3942528 1 25.582434 Anserini +test1452 Q0 15623080 2 24.844282 Anserini +test1452 Q0 20115153 3 24.241962 Anserini +test1452 Q0 8617188 4 24.113844 Anserini +test1452 Q0 465345 5 23.923658 Anserini +test1452 Q0 15520765 6 23.904505 Anserini +test1452 Q0 15623081 7 23.362398 Anserini +test1452 Q0 20115154 8 23.347523 Anserini +test1452 Q0 447070 9 23.208853 Anserini +test1452 Q0 8617189 10 23.201960 Anserini +test1452 Q0 3942537 11 23.093826 Anserini +test1452 Q0 19823362 12 22.998608 Anserini +test1452 Q0 15481851 13 22.898380 Anserini +test1452 Q0 19525164 14 22.861040 Anserini +test1452 Q0 3942525 15 22.814529 Anserini +test1452 Q0 2067868 16 22.644680 Anserini +test1452 Q0 447069 17 22.515936 Anserini +test1452 Q0 15520776 18 22.455189 Anserini +test1452 Q0 447106 19 22.403757 Anserini +test1452 Q0 15520797 20 22.341976 Anserini +test1452 Q0 3942526 21 22.267712 Anserini +test1452 Q0 18442788 22 22.266359 Anserini +test1452 Q0 15537394 23 22.214741 Anserini +test1452 Q0 3942529 24 22.149303 Anserini +test1452 Q0 19361776 25 22.068266 Anserini +test1452 Q0 20843823 26 22.068266 Anserini +test1452 Q0 5056765 27 22.022110 Anserini +test1452 Q0 15003906 28 22.007271 Anserini +test1452 Q0 8500467 29 22.001987 Anserini +test1452 Q0 16136589 30 21.851698 Anserini +test1453 Q0 13142720 1 21.697987 Anserini +test1453 Q0 13142771 2 21.673626 Anserini +test1453 Q0 10248535 3 19.764263 Anserini +test1453 Q0 12038747 4 19.094471 Anserini +test1453 Q0 14852804 5 17.970100 Anserini +test1453 Q0 8161705 6 17.412582 Anserini +test1453 Q0 3538189 7 17.023924 Anserini +test1453 Q0 13142747 8 16.920534 Anserini +test1453 Q0 15603123 9 16.876833 Anserini +test1453 Q0 14572615 10 16.773401 Anserini +test1453 Q0 14852802 11 16.758905 Anserini +test1453 Q0 14572584 12 16.752283 Anserini +test1453 Q0 13142721 13 16.682590 Anserini +test1453 Q0 566372 14 16.458216 Anserini +test1453 Q0 16043806 15 16.249874 Anserini +test1453 Q0 17831804 16 16.077641 Anserini +test1453 Q0 17831805 17 16.077641 Anserini +test1453 Q0 13142750 18 15.963025 Anserini +test1453 Q0 14572614 19 15.963025 Anserini +test1453 Q0 9878555 20 15.855763 Anserini +test1453 Q0 14572597 21 15.838714 Anserini +test1453 Q0 13142743 22 15.787312 Anserini +test1453 Q0 10248577 23 15.728975 Anserini +test1453 Q0 13142756 24 15.724204 Anserini +test1453 Q0 13142766 25 15.688048 Anserini +test1453 Q0 13142745 26 15.517218 Anserini +test1453 Q0 13142727 27 15.426911 Anserini +test1453 Q0 13142744 28 15.327737 Anserini +test1453 Q0 13142729 29 15.327737 Anserini +test1453 Q0 13142731 30 15.099871 Anserini +test1454 Q0 8422541 1 16.716396 Anserini +test1454 Q0 8422843 2 15.711545 Anserini +test1454 Q0 1827245 3 15.000559 Anserini +test1454 Q0 1827236 4 14.764095 Anserini +test1454 Q0 8422842 5 14.647625 Anserini +test1454 Q0 18951481 6 14.413836 Anserini +test1454 Q0 18951485 7 14.413836 Anserini +test1454 Q0 19638137 8 14.149889 Anserini +test1454 Q0 10461661 9 14.149889 Anserini +test1454 Q0 1827238 10 14.112266 Anserini +test1454 Q0 10062644 11 13.743796 Anserini +test1454 Q0 10062636 12 13.743796 Anserini +test1454 Q0 15077865 13 13.743796 Anserini +test1454 Q0 4449118 14 13.692568 Anserini +test1454 Q0 19473319 15 13.681478 Anserini +test1454 Q0 19992917 16 13.619795 Anserini +test1454 Q0 19992918 17 13.619795 Anserini +test1454 Q0 5781330 18 13.565533 Anserini +test1454 Q0 19473318 19 13.517979 Anserini +test1454 Q0 18956667 20 13.517979 Anserini +test1454 Q0 18956668 21 13.517979 Anserini +test1454 Q0 9116742 22 13.458761 Anserini +test1454 Q0 13671248 23 13.427951 Anserini +test1454 Q0 10062637 24 13.348237 Anserini +test1454 Q0 14377631 25 13.298115 Anserini +test1454 Q0 14377649 26 13.298115 Anserini +test1454 Q0 14073587 27 13.280066 Anserini +test1454 Q0 1827237 28 13.275084 Anserini +test1454 Q0 1827241 29 13.257425 Anserini +test1454 Q0 1827244 30 13.257425 Anserini +test1455 Q0 1501455 1 13.995967 Anserini +test1455 Q0 11159385 2 13.533753 Anserini +test1455 Q0 11159378 3 13.414544 Anserini +test1455 Q0 1501457 4 13.387773 Anserini +test1455 Q0 9392582 5 12.954520 Anserini +test1455 Q0 650305 6 12.747324 Anserini +test1455 Q0 11275892 7 12.460701 Anserini +test1455 Q0 2641916 8 12.433935 Anserini +test1455 Q0 7513034 9 12.422796 Anserini +test1455 Q0 14102859 10 12.360130 Anserini +test1455 Q0 14173403 11 12.180084 Anserini +test1455 Q0 6626036 12 12.118573 Anserini +test1455 Q0 1337536 13 12.065462 Anserini +test1455 Q0 12424978 14 11.963668 Anserini +test1455 Q0 1501446 15 11.905959 Anserini +test1455 Q0 12861165 16 11.903409 Anserini +test1455 Q0 7513035 17 11.864878 Anserini +test1455 Q0 1032363 18 11.864878 Anserini +test1455 Q0 1355680 19 11.860724 Anserini +test1455 Q0 1501456 20 11.776626 Anserini +test1455 Q0 8945336 21 11.526756 Anserini +test1455 Q0 12345257 22 11.498865 Anserini +test1455 Q0 15931345 23 11.494512 Anserini +test1455 Q0 20672409 24 11.453086 Anserini +test1455 Q0 13980783 25 11.404449 Anserini +test1455 Q0 14173402 26 11.346935 Anserini +test1455 Q0 9328711 27 11.326561 Anserini +test1455 Q0 17635802 28 11.321160 Anserini +test1455 Q0 1733983 29 11.309482 Anserini +test1455 Q0 4658277 30 11.287891 Anserini +test1456 Q0 787345 1 9.553050 Anserini +test1456 Q0 1004001 2 9.435024 Anserini +test1456 Q0 1003994 3 9.435024 Anserini +test1456 Q0 1666726 4 9.430995 Anserini +test1456 Q0 7523660 5 9.353489 Anserini +test1456 Q0 2213506 6 9.312930 Anserini +test1456 Q0 14049187 7 9.163582 Anserini +test1456 Q0 3553628 8 9.149655 Anserini +test1456 Q0 3553629 9 9.149655 Anserini +test1456 Q0 5087823 10 9.090992 Anserini +test1456 Q0 3808180 11 9.040492 Anserini +test1456 Q0 10637367 12 8.943699 Anserini +test1456 Q0 9928975 13 8.943699 Anserini +test1456 Q0 10049444 14 8.937675 Anserini +test1456 Q0 6436384 15 8.907681 Anserini +test1456 Q0 13095898 16 8.839206 Anserini +test1456 Q0 10108656 17 8.824522 Anserini +test1456 Q0 17100292 18 8.813545 Anserini +test1456 Q0 11499061 19 8.796869 Anserini +test1456 Q0 15450873 20 8.776780 Anserini +test1456 Q0 1545831 21 8.762002 Anserini +test1456 Q0 19812971 22 8.756918 Anserini +test1456 Q0 6723838 23 8.732322 Anserini +test1456 Q0 7103602 24 8.732322 Anserini +test1456 Q0 19334153 25 8.692705 Anserini +test1456 Q0 4438688 26 8.643381 Anserini +test1456 Q0 7914347 27 8.470503 Anserini +test1456 Q0 509997 28 8.387057 Anserini +test1456 Q0 10068815 29 8.353592 Anserini +test1456 Q0 9357342 30 8.341043 Anserini +test1457 Q0 735262 1 19.301346 Anserini +test1457 Q0 5665713 2 19.014715 Anserini +test1457 Q0 663191 3 18.020340 Anserini +test1457 Q0 16585981 4 17.736340 Anserini +test1457 Q0 735251 5 17.618177 Anserini +test1457 Q0 16585984 6 17.442722 Anserini +test1457 Q0 1064138 7 17.255804 Anserini +test1457 Q0 11511454 8 17.102461 Anserini +test1457 Q0 7258811 9 16.998762 Anserini +test1457 Q0 459947 10 16.928623 Anserini +test1457 Q0 368664 11 16.528437 Anserini +test1457 Q0 20708872 12 16.528412 Anserini +test1457 Q0 5469164 13 16.387192 Anserini +test1457 Q0 6602970 14 16.365730 Anserini +test1457 Q0 15322823 15 16.350798 Anserini +test1457 Q0 16549715 16 16.330179 Anserini +test1457 Q0 800587 17 16.252342 Anserini +test1457 Q0 8507777 18 16.234404 Anserini +test1457 Q0 8952542 19 16.162971 Anserini +test1457 Q0 19772692 20 16.131805 Anserini +test1457 Q0 3630301 21 16.062374 Anserini +test1457 Q0 19772691 22 16.046080 Anserini +test1457 Q0 19767414 23 15.976385 Anserini +test1457 Q0 1800601 24 15.951411 Anserini +test1457 Q0 735263 25 15.920063 Anserini +test1457 Q0 10232650 26 15.780151 Anserini +test1457 Q0 6908989 27 15.723773 Anserini +test1457 Q0 798768 28 15.697821 Anserini +test1457 Q0 19505674 29 15.645980 Anserini +test1457 Q0 17382691 30 15.624860 Anserini +test1458 Q0 4810030 1 19.732836 Anserini +test1458 Q0 591531 2 19.090652 Anserini +test1458 Q0 2083330 3 18.436747 Anserini +test1458 Q0 2083329 4 18.332933 Anserini +test1458 Q0 3160313 5 18.330099 Anserini +test1458 Q0 3160356 6 18.330099 Anserini +test1458 Q0 8425017 7 18.145317 Anserini +test1458 Q0 7747574 8 17.938641 Anserini +test1458 Q0 7747565 9 17.938641 Anserini +test1458 Q0 591578 10 17.790871 Anserini +test1458 Q0 8425013 11 17.711338 Anserini +test1458 Q0 4810054 12 17.711338 Anserini +test1458 Q0 3535474 13 17.659737 Anserini +test1458 Q0 3160347 14 17.427513 Anserini +test1458 Q0 5725281 15 17.324478 Anserini +test1458 Q0 5725231 16 17.229910 Anserini +test1458 Q0 5725229 17 17.170118 Anserini +test1458 Q0 4810038 18 17.162926 Anserini +test1458 Q0 16649313 19 16.889421 Anserini +test1458 Q0 3276409 20 16.827787 Anserini +test1458 Q0 3100961 21 16.701015 Anserini +test1458 Q0 13003911 22 16.662786 Anserini +test1458 Q0 3381436 23 16.662786 Anserini +test1458 Q0 3160449 24 16.617733 Anserini +test1458 Q0 4810034 25 16.567295 Anserini +test1458 Q0 5725274 26 16.510061 Anserini +test1458 Q0 3381428 27 16.502247 Anserini +test1458 Q0 1871098 28 16.491379 Anserini +test1458 Q0 591575 29 16.480907 Anserini +test1458 Q0 3161082 30 16.439741 Anserini +test1459 Q0 18872650 1 16.114576 Anserini +test1459 Q0 19289468 2 15.236355 Anserini +test1459 Q0 16565327 3 14.826529 Anserini +test1459 Q0 20332395 4 14.207012 Anserini +test1459 Q0 18747375 5 14.203449 Anserini +test1459 Q0 19623041 6 14.170235 Anserini +test1459 Q0 20332405 7 14.152781 Anserini +test1459 Q0 20270729 8 14.125148 Anserini +test1459 Q0 20270732 9 14.125148 Anserini +test1459 Q0 18872651 10 14.003456 Anserini +test1459 Q0 16565325 11 13.984007 Anserini +test1459 Q0 18747374 12 13.638680 Anserini +test1459 Q0 16331402 13 13.510910 Anserini +test1459 Q0 16331407 14 13.493841 Anserini +test1459 Q0 168612 15 13.343493 Anserini +test1459 Q0 18713337 16 13.234508 Anserini +test1459 Q0 20332396 17 13.228085 Anserini +test1459 Q0 16331410 18 13.175920 Anserini +test1459 Q0 19797749 19 13.145157 Anserini +test1459 Q0 20332400 20 13.085020 Anserini +test1459 Q0 16565339 21 13.052056 Anserini +test1459 Q0 16573899 22 13.015614 Anserini +test1459 Q0 16331409 23 12.850039 Anserini +test1459 Q0 18527867 24 12.823139 Anserini +test1459 Q0 19623040 25 12.797850 Anserini +test1459 Q0 19623043 26 12.797850 Anserini +test1459 Q0 18527864 27 12.736658 Anserini +test1459 Q0 20296531 28 12.728233 Anserini +test1459 Q0 20296533 29 12.728233 Anserini +test1459 Q0 17267349 30 12.708382 Anserini +test146 Q0 5945478 1 10.239914 Anserini +test146 Q0 5945490 2 10.157648 Anserini +test146 Q0 15982 3 9.504488 Anserini +test146 Q0 63203 4 8.967343 Anserini +test146 Q0 2716352 5 8.853592 Anserini +test146 Q0 5037460 6 8.820573 Anserini +test146 Q0 19791798 7 8.662385 Anserini +test146 Q0 6571438 8 8.619559 Anserini +test146 Q0 13563319 9 8.469708 Anserini +test146 Q0 2171309 10 8.447072 Anserini +test146 Q0 1508603 11 8.435582 Anserini +test146 Q0 16353374 12 8.414142 Anserini +test146 Q0 11814828 13 8.384838 Anserini +test146 Q0 18263352 14 8.379816 Anserini +test146 Q0 5775800 15 8.373694 Anserini +test146 Q0 5618632 16 8.369968 Anserini +test146 Q0 5710973 17 8.360083 Anserini +test146 Q0 9575986 18 8.334433 Anserini +test146 Q0 337441 19 8.313147 Anserini +test146 Q0 4523352 20 8.303427 Anserini +test146 Q0 375738 21 8.301911 Anserini +test146 Q0 13621838 22 8.301911 Anserini +test146 Q0 15804630 23 8.294594 Anserini +test146 Q0 19978053 24 8.227007 Anserini +test146 Q0 5729247 25 8.218871 Anserini +test146 Q0 62342 26 8.186169 Anserini +test146 Q0 18645245 27 8.178041 Anserini +test146 Q0 17215139 28 8.176973 Anserini +test146 Q0 1080516 29 8.171823 Anserini +test146 Q0 3315406 30 8.166531 Anserini +test1460 Q0 1326863 1 22.086727 Anserini +test1460 Q0 8221913 2 20.893293 Anserini +test1460 Q0 13377229 3 17.495461 Anserini +test1460 Q0 12314838 4 17.407839 Anserini +test1460 Q0 11081773 5 17.407839 Anserini +test1460 Q0 7743038 6 17.407839 Anserini +test1460 Q0 8400930 7 17.311626 Anserini +test1460 Q0 12251253 8 17.075209 Anserini +test1460 Q0 2584082 9 17.039488 Anserini +test1460 Q0 14457088 10 17.010031 Anserini +test1460 Q0 6542568 11 16.923077 Anserini +test1460 Q0 1326878 12 16.707170 Anserini +test1460 Q0 14251385 13 16.591946 Anserini +test1460 Q0 6166258 14 16.585772 Anserini +test1460 Q0 9066344 15 16.570587 Anserini +test1460 Q0 1317844 16 16.398180 Anserini +test1460 Q0 6664769 17 16.316593 Anserini +test1460 Q0 8178668 18 16.301321 Anserini +test1460 Q0 12252680 19 16.295378 Anserini +test1460 Q0 6664744 20 16.291405 Anserini +test1460 Q0 14251389 21 16.252432 Anserini +test1460 Q0 1342159 22 16.075653 Anserini +test1460 Q0 7597019 23 15.998535 Anserini +test1460 Q0 8178664 24 15.854659 Anserini +test1460 Q0 14250088 25 15.731633 Anserini +test1460 Q0 12251247 26 15.695181 Anserini +test1460 Q0 13094744 27 15.690714 Anserini +test1460 Q0 13094748 28 15.690714 Anserini +test1460 Q0 15260038 29 15.681823 Anserini +test1460 Q0 17554829 30 15.681823 Anserini +test1461 Q0 5498969 1 17.935652 Anserini +test1461 Q0 9453242 2 17.723579 Anserini +test1461 Q0 9453238 3 17.633146 Anserini +test1461 Q0 18538630 4 16.290646 Anserini +test1461 Q0 13197272 5 16.104284 Anserini +test1461 Q0 5498961 6 15.668592 Anserini +test1461 Q0 16290793 7 15.631542 Anserini +test1461 Q0 16290792 8 15.545519 Anserini +test1461 Q0 5415913 9 15.394444 Anserini +test1461 Q0 20013262 10 15.367245 Anserini +test1461 Q0 16312240 11 15.138956 Anserini +test1461 Q0 17410078 12 15.084885 Anserini +test1461 Q0 17410079 13 15.084885 Anserini +test1461 Q0 12422847 14 14.853885 Anserini +test1461 Q0 13617511 15 14.761528 Anserini +test1461 Q0 14119024 16 14.714808 Anserini +test1461 Q0 3651309 17 14.542961 Anserini +test1461 Q0 8945284 18 14.514518 Anserini +test1461 Q0 13093584 19 14.459976 Anserini +test1461 Q0 12422850 20 14.340499 Anserini +test1461 Q0 20416670 21 14.283766 Anserini +test1461 Q0 8606239 22 14.181669 Anserini +test1461 Q0 18367398 23 14.131101 Anserini +test1461 Q0 7902528 24 14.109958 Anserini +test1461 Q0 12422848 25 13.848822 Anserini +test1461 Q0 5498968 26 13.813764 Anserini +test1461 Q0 19248056 27 13.806355 Anserini +test1461 Q0 14895074 28 13.750111 Anserini +test1461 Q0 14324601 29 13.704630 Anserini +test1461 Q0 16117227 30 13.579984 Anserini +test1462 Q0 3092418 1 18.663292 Anserini +test1462 Q0 3164640 2 17.936117 Anserini +test1462 Q0 3092431 3 17.553183 Anserini +test1462 Q0 9335349 4 16.909216 Anserini +test1462 Q0 18135690 5 16.752029 Anserini +test1462 Q0 18139616 6 16.082460 Anserini +test1462 Q0 17099012 7 15.885291 Anserini +test1462 Q0 5277501 8 15.399118 Anserini +test1462 Q0 20329230 9 15.282622 Anserini +test1462 Q0 5156071 10 14.973270 Anserini +test1462 Q0 9679420 11 14.892905 Anserini +test1462 Q0 9532457 12 14.706230 Anserini +test1462 Q0 17378234 13 14.629978 Anserini +test1462 Q0 9532413 14 14.557743 Anserini +test1462 Q0 3092422 15 14.451637 Anserini +test1462 Q0 16004903 16 14.441222 Anserini +test1462 Q0 16885044 17 14.375944 Anserini +test1462 Q0 9532426 18 14.363478 Anserini +test1462 Q0 20715001 19 14.334554 Anserini +test1462 Q0 3324118 20 14.164245 Anserini +test1462 Q0 18135688 21 14.134872 Anserini +test1462 Q0 16300822 22 14.128118 Anserini +test1462 Q0 17976797 23 14.128118 Anserini +test1462 Q0 3538252 24 14.118519 Anserini +test1462 Q0 14507578 25 14.118519 Anserini +test1462 Q0 20693683 26 14.072124 Anserini +test1462 Q0 17227551 27 14.060869 Anserini +test1462 Q0 16054649 28 14.040760 Anserini +test1462 Q0 3164639 29 14.019846 Anserini +test1462 Q0 17976795 30 13.991650 Anserini +test1463 Q0 2339340 1 17.315199 Anserini +test1463 Q0 3208399 2 17.187048 Anserini +test1463 Q0 3208395 3 17.068321 Anserini +test1463 Q0 14654088 4 16.427429 Anserini +test1463 Q0 3577892 5 16.233997 Anserini +test1463 Q0 698385 6 16.156147 Anserini +test1463 Q0 14235629 7 16.005455 Anserini +test1463 Q0 8038931 8 15.857775 Anserini +test1463 Q0 18424337 9 15.829794 Anserini +test1463 Q0 17277692 10 15.440709 Anserini +test1463 Q0 5408281 11 15.294597 Anserini +test1463 Q0 15254440 12 15.293517 Anserini +test1463 Q0 8849810 13 15.192000 Anserini +test1463 Q0 6829564 14 15.102658 Anserini +test1463 Q0 15254439 15 15.089251 Anserini +test1463 Q0 14249556 16 15.079452 Anserini +test1463 Q0 578596 17 15.044500 Anserini +test1463 Q0 8788002 18 15.031453 Anserini +test1463 Q0 20141899 19 14.977249 Anserini +test1463 Q0 1758969 20 14.895825 Anserini +test1463 Q0 12962755 21 14.890750 Anserini +test1463 Q0 8877661 22 14.888125 Anserini +test1463 Q0 16493982 23 14.882915 Anserini +test1463 Q0 12477038 24 14.825941 Anserini +test1463 Q0 4546711 25 14.819055 Anserini +test1463 Q0 14516486 26 14.801459 Anserini +test1463 Q0 8788010 27 14.756869 Anserini +test1463 Q0 9432693 28 14.736990 Anserini +test1463 Q0 7019990 29 14.732508 Anserini +test1463 Q0 10003886 30 14.694998 Anserini +test1464 Q0 10242536 1 9.756344 Anserini +test1464 Q0 15003732 2 9.090308 Anserini +test1464 Q0 4220320 3 8.943068 Anserini +test1464 Q0 12706707 4 8.866382 Anserini +test1464 Q0 4665918 5 8.756197 Anserini +test1464 Q0 17330319 6 8.754646 Anserini +test1464 Q0 5569360 7 8.708504 Anserini +test1464 Q0 14365659 8 8.666742 Anserini +test1464 Q0 20633330 9 8.619893 Anserini +test1464 Q0 6580587 10 8.481769 Anserini +test1464 Q0 8487216 11 8.460299 Anserini +test1464 Q0 15283289 12 8.460299 Anserini +test1464 Q0 9357508 13 8.456001 Anserini +test1464 Q0 18415197 14 8.432538 Anserini +test1464 Q0 17703452 15 8.424885 Anserini +test1464 Q0 5610679 16 8.422014 Anserini +test1464 Q0 6161427 17 8.413818 Anserini +test1464 Q0 2321779 18 8.409699 Anserini +test1464 Q0 13513503 19 8.364369 Anserini +test1464 Q0 19852021 20 8.342878 Anserini +test1464 Q0 5366986 21 8.314519 Anserini +test1464 Q0 385531 22 8.298347 Anserini +test1464 Q0 12103743 23 8.264550 Anserini +test1464 Q0 8707532 24 8.245375 Anserini +test1464 Q0 18660661 25 8.242896 Anserini +test1464 Q0 20707448 26 8.219938 Anserini +test1464 Q0 6147949 27 8.216809 Anserini +test1464 Q0 6611987 28 8.212137 Anserini +test1464 Q0 7748549 29 8.210373 Anserini +test1464 Q0 13898579 30 8.203860 Anserini +test1465 Q0 14899155 1 13.031000 Anserini +test1465 Q0 2097318 2 11.667253 Anserini +test1465 Q0 14899172 3 10.749013 Anserini +test1465 Q0 401555 4 10.728776 Anserini +test1465 Q0 4159697 5 10.631574 Anserini +test1465 Q0 17051732 6 10.536182 Anserini +test1465 Q0 20436025 7 10.521358 Anserini +test1465 Q0 6775613 8 10.503028 Anserini +test1465 Q0 13112100 9 10.348564 Anserini +test1465 Q0 18316237 10 10.100854 Anserini +test1465 Q0 5568489 11 10.024469 Anserini +test1465 Q0 10930355 12 9.894796 Anserini +test1465 Q0 6294397 13 9.818369 Anserini +test1465 Q0 8313820 14 9.676519 Anserini +test1465 Q0 14899152 15 9.627218 Anserini +test1465 Q0 5733936 16 9.600718 Anserini +test1465 Q0 20187007 17 9.589243 Anserini +test1465 Q0 16436571 18 9.525608 Anserini +test1465 Q0 290440 19 9.511523 Anserini +test1465 Q0 12989332 20 9.413920 Anserini +test1465 Q0 5520263 21 9.359525 Anserini +test1465 Q0 401541 22 9.347531 Anserini +test1465 Q0 1520604 23 9.280489 Anserini +test1465 Q0 13376076 24 9.274424 Anserini +test1465 Q0 19954178 25 9.258127 Anserini +test1465 Q0 4404212 26 9.138748 Anserini +test1465 Q0 18631117 27 9.134193 Anserini +test1465 Q0 17568707 28 9.103828 Anserini +test1465 Q0 15570357 29 9.103828 Anserini +test1465 Q0 17325686 30 9.077087 Anserini +test1466 Q0 1430918 1 19.734552 Anserini +test1466 Q0 17916281 2 19.288158 Anserini +test1466 Q0 17916277 3 17.471357 Anserini +test1466 Q0 17916260 4 17.362242 Anserini +test1466 Q0 1430942 5 17.269104 Anserini +test1466 Q0 2243996 6 17.207109 Anserini +test1466 Q0 1729317 7 17.090996 Anserini +test1466 Q0 1373629 8 17.063509 Anserini +test1466 Q0 2243998 9 16.893654 Anserini +test1466 Q0 2244000 10 16.711388 Anserini +test1466 Q0 2243995 11 16.615704 Anserini +test1466 Q0 17916274 12 16.162636 Anserini +test1466 Q0 3275775 13 15.955734 Anserini +test1466 Q0 2823931 14 15.811244 Anserini +test1466 Q0 2243999 15 15.749756 Anserini +test1466 Q0 17916278 16 15.715642 Anserini +test1466 Q0 1373630 17 15.599871 Anserini +test1466 Q0 17916275 18 15.599871 Anserini +test1466 Q0 1430952 19 15.179057 Anserini +test1466 Q0 18345382 20 15.039672 Anserini +test1466 Q0 8009866 21 15.023986 Anserini +test1466 Q0 697630 22 14.979204 Anserini +test1466 Q0 17916276 23 14.927494 Anserini +test1466 Q0 17916280 24 14.761227 Anserini +test1466 Q0 46758 25 14.726831 Anserini +test1466 Q0 967695 26 14.724361 Anserini +test1466 Q0 17916231 27 14.533045 Anserini +test1466 Q0 14080192 28 14.472865 Anserini +test1466 Q0 17916266 29 14.460770 Anserini +test1466 Q0 510303 30 14.418595 Anserini +test1467 Q0 4284163 1 12.414139 Anserini +test1467 Q0 4284155 2 11.818802 Anserini +test1467 Q0 7332162 3 11.404159 Anserini +test1467 Q0 11707603 4 11.403270 Anserini +test1467 Q0 11018462 5 11.201799 Anserini +test1467 Q0 11018464 6 11.201799 Anserini +test1467 Q0 4284161 7 11.112849 Anserini +test1467 Q0 4284156 8 10.791798 Anserini +test1467 Q0 14288219 9 10.727950 Anserini +test1467 Q0 8573634 10 10.707238 Anserini +test1467 Q0 7576075 11 10.531589 Anserini +test1467 Q0 2498395 12 10.515347 Anserini +test1467 Q0 13205471 13 10.484447 Anserini +test1467 Q0 16954685 14 10.417137 Anserini +test1467 Q0 14288217 15 10.357058 Anserini +test1467 Q0 7576074 16 10.165748 Anserini +test1467 Q0 4284157 17 10.163582 Anserini +test1467 Q0 18232323 18 10.126961 Anserini +test1467 Q0 4163667 19 9.932516 Anserini +test1467 Q0 4284158 20 9.816905 Anserini +test1467 Q0 7970959 21 9.812383 Anserini +test1467 Q0 18776612 22 9.763430 Anserini +test1467 Q0 10979764 23 9.681490 Anserini +test1467 Q0 10105242 24 9.658052 Anserini +test1467 Q0 7096255 25 9.571653 Anserini +test1467 Q0 10122901 26 9.570783 Anserini +test1467 Q0 982659 27 9.549759 Anserini +test1467 Q0 6189441 28 9.526872 Anserini +test1467 Q0 20177805 29 9.509140 Anserini +test1467 Q0 7096254 30 9.486847 Anserini +test1468 Q0 14060400 1 17.983128 Anserini +test1468 Q0 14060397 2 17.694973 Anserini +test1468 Q0 6118267 3 15.705519 Anserini +test1468 Q0 16023542 4 15.601627 Anserini +test1468 Q0 16023548 5 15.601627 Anserini +test1468 Q0 16301968 6 15.335091 Anserini +test1468 Q0 14060399 7 14.703090 Anserini +test1468 Q0 20541873 8 14.688976 Anserini +test1468 Q0 17680490 9 14.665790 Anserini +test1468 Q0 9588124 10 14.232753 Anserini +test1468 Q0 18635589 11 14.046133 Anserini +test1468 Q0 13336339 12 13.957289 Anserini +test1468 Q0 209728 13 13.661831 Anserini +test1468 Q0 14060398 14 13.661831 Anserini +test1468 Q0 9083871 15 13.557879 Anserini +test1468 Q0 8151452 16 13.494270 Anserini +test1468 Q0 18656989 17 13.323271 Anserini +test1468 Q0 5525435 18 13.190805 Anserini +test1468 Q0 15164657 19 13.122494 Anserini +test1468 Q0 2584503 20 13.040284 Anserini +test1468 Q0 1509860 21 12.958921 Anserini +test1468 Q0 13613801 22 12.908488 Anserini +test1468 Q0 9717585 23 12.791770 Anserini +test1468 Q0 5439776 24 12.791770 Anserini +test1468 Q0 6039006 25 12.755668 Anserini +test1468 Q0 306627 26 12.673861 Anserini +test1468 Q0 11589579 27 12.659617 Anserini +test1468 Q0 5273180 28 12.657111 Anserini +test1468 Q0 2561103 29 12.607183 Anserini +test1468 Q0 16301965 30 12.525256 Anserini +test1469 Q0 16198588 1 12.828623 Anserini +test1469 Q0 8611854 2 12.403641 Anserini +test1469 Q0 8611850 3 12.403641 Anserini +test1469 Q0 9596120 4 12.343536 Anserini +test1469 Q0 111088 5 12.302253 Anserini +test1469 Q0 14432146 6 12.244049 Anserini +test1469 Q0 18625879 7 12.153490 Anserini +test1469 Q0 2108105 8 12.103870 Anserini +test1469 Q0 17669626 9 12.079008 Anserini +test1469 Q0 5649964 10 12.061868 Anserini +test1469 Q0 5649965 11 12.039825 Anserini +test1469 Q0 1623638 12 12.033356 Anserini +test1469 Q0 10692281 13 11.963043 Anserini +test1469 Q0 6088569 14 11.783991 Anserini +test1469 Q0 15579631 15 11.701743 Anserini +test1469 Q0 16280649 16 11.606523 Anserini +test1469 Q0 11881282 17 11.574906 Anserini +test1469 Q0 10036578 18 11.498728 Anserini +test1469 Q0 6398553 19 11.380548 Anserini +test1469 Q0 11569913 20 11.374174 Anserini +test1469 Q0 11741774 21 11.374174 Anserini +test1469 Q0 549062 22 11.353025 Anserini +test1469 Q0 549082 23 11.353025 Anserini +test1469 Q0 854624 24 11.338902 Anserini +test1469 Q0 13063884 25 11.259375 Anserini +test1469 Q0 13039353 26 11.215186 Anserini +test1469 Q0 16128016 27 11.215186 Anserini +test1469 Q0 17591891 28 11.195730 Anserini +test1469 Q0 4369628 29 11.170120 Anserini +test1469 Q0 20290344 30 11.082150 Anserini +test147 Q0 20702478 1 12.276936 Anserini +test147 Q0 10024654 2 11.192533 Anserini +test147 Q0 5450832 3 10.778208 Anserini +test147 Q0 12661497 4 10.767884 Anserini +test147 Q0 13999488 5 10.509428 Anserini +test147 Q0 16825356 6 10.455696 Anserini +test147 Q0 19178310 7 10.436375 Anserini +test147 Q0 3342070 8 10.436329 Anserini +test147 Q0 19550923 9 10.377144 Anserini +test147 Q0 16438509 10 10.287550 Anserini +test147 Q0 11030237 11 10.261473 Anserini +test147 Q0 18470184 12 10.228078 Anserini +test147 Q0 18850380 13 10.186416 Anserini +test147 Q0 18068448 14 10.177891 Anserini +test147 Q0 20750355 15 10.158169 Anserini +test147 Q0 16492080 16 10.131765 Anserini +test147 Q0 11822698 17 10.037105 Anserini +test147 Q0 17225169 18 10.015153 Anserini +test147 Q0 20402585 19 10.005943 Anserini +test147 Q0 10137178 20 9.997171 Anserini +test147 Q0 10137180 21 9.997171 Anserini +test147 Q0 995994 22 9.964876 Anserini +test147 Q0 13370905 23 9.951803 Anserini +test147 Q0 17512062 24 9.917928 Anserini +test147 Q0 5780611 25 9.881086 Anserini +test147 Q0 13578211 26 9.856172 Anserini +test147 Q0 16793174 27 9.848059 Anserini +test147 Q0 4714684 28 9.847977 Anserini +test147 Q0 16523095 29 9.837013 Anserini +test147 Q0 16284245 30 9.818918 Anserini +test1470 Q0 20049005 1 11.846622 Anserini +test1470 Q0 20048998 2 11.764729 Anserini +test1470 Q0 18135456 3 10.973837 Anserini +test1470 Q0 4481681 4 10.675424 Anserini +test1470 Q0 20048999 5 10.430931 Anserini +test1470 Q0 18135453 6 10.343750 Anserini +test1470 Q0 18135434 7 10.291328 Anserini +test1470 Q0 19665779 8 9.915742 Anserini +test1470 Q0 19665777 9 9.882127 Anserini +test1470 Q0 19665778 10 9.882127 Anserini +test1470 Q0 18939003 11 9.837445 Anserini +test1470 Q0 19665765 12 9.828560 Anserini +test1470 Q0 16263714 13 9.810678 Anserini +test1470 Q0 18135478 14 9.810678 Anserini +test1470 Q0 16263738 15 9.645297 Anserini +test1470 Q0 19559328 16 9.627007 Anserini +test1470 Q0 18135455 17 9.607598 Anserini +test1470 Q0 16430646 18 9.607598 Anserini +test1470 Q0 20290574 19 9.605143 Anserini +test1470 Q0 17142235 20 9.570194 Anserini +test1470 Q0 19665770 21 9.558115 Anserini +test1470 Q0 18939007 22 9.533082 Anserini +test1470 Q0 19665776 23 9.519100 Anserini +test1470 Q0 15562743 24 9.513965 Anserini +test1470 Q0 17774888 25 9.511703 Anserini +test1470 Q0 19484592 26 9.494211 Anserini +test1470 Q0 19665775 27 9.480401 Anserini +test1470 Q0 19665780 28 9.480401 Anserini +test1470 Q0 18218785 29 9.447683 Anserini +test1470 Q0 15562731 30 9.425995 Anserini +test1471 Q0 9323168 1 17.591848 Anserini +test1471 Q0 9323173 2 17.506809 Anserini +test1471 Q0 9323170 3 17.064516 Anserini +test1471 Q0 9323171 4 16.941542 Anserini +test1471 Q0 485680 5 16.220304 Anserini +test1471 Q0 9323169 6 16.082649 Anserini +test1471 Q0 9323172 7 15.076256 Anserini +test1471 Q0 4675240 8 15.027467 Anserini +test1471 Q0 1393646 9 14.483408 Anserini +test1471 Q0 6751083 10 14.461308 Anserini +test1471 Q0 1700154 11 14.142529 Anserini +test1471 Q0 17772994 12 13.507172 Anserini +test1471 Q0 9867060 13 13.124758 Anserini +test1471 Q0 15581286 14 12.677606 Anserini +test1471 Q0 13312569 15 12.648458 Anserini +test1471 Q0 5111873 16 12.386250 Anserini +test1471 Q0 12713009 17 12.318501 Anserini +test1471 Q0 9867059 18 12.247736 Anserini +test1471 Q0 564503 19 12.139317 Anserini +test1471 Q0 5027104 20 12.094509 Anserini +test1471 Q0 5027087 21 11.955264 Anserini +test1471 Q0 17531111 22 11.952168 Anserini +test1471 Q0 14240658 23 11.839421 Anserini +test1471 Q0 6751082 24 11.612211 Anserini +test1471 Q0 5614710 25 11.500022 Anserini +test1471 Q0 12829361 26 11.462392 Anserini +test1471 Q0 5614711 27 11.438346 Anserini +test1471 Q0 11458957 28 11.428295 Anserini +test1471 Q0 5786901 29 11.356987 Anserini +test1471 Q0 10982499 30 11.236731 Anserini +test1472 Q0 3345043 1 19.659986 Anserini +test1472 Q0 7498595 2 19.267199 Anserini +test1472 Q0 3048354 3 18.708534 Anserini +test1472 Q0 1976223 4 18.654951 Anserini +test1472 Q0 3374762 5 18.184370 Anserini +test1472 Q0 13733521 6 18.141382 Anserini +test1472 Q0 1976218 7 17.870188 Anserini +test1472 Q0 7498605 8 17.796175 Anserini +test1472 Q0 1976232 9 17.726538 Anserini +test1472 Q0 7320409 10 17.710300 Anserini +test1472 Q0 7212991 11 17.643995 Anserini +test1472 Q0 13733525 12 17.630419 Anserini +test1472 Q0 20787360 13 17.600658 Anserini +test1472 Q0 11924722 14 17.596151 Anserini +test1472 Q0 5044107 15 17.526962 Anserini +test1472 Q0 1976219 16 17.432711 Anserini +test1472 Q0 6616354 17 17.352921 Anserini +test1472 Q0 15873114 18 17.331419 Anserini +test1472 Q0 434467 19 17.251261 Anserini +test1472 Q0 9222155 20 17.080202 Anserini +test1472 Q0 7498598 21 17.069628 Anserini +test1472 Q0 1970881 22 17.000563 Anserini +test1472 Q0 470008 23 16.981016 Anserini +test1472 Q0 12636261 24 16.969938 Anserini +test1472 Q0 6293642 25 16.902647 Anserini +test1472 Q0 7498601 26 16.901325 Anserini +test1472 Q0 151196 27 16.881777 Anserini +test1472 Q0 8486177 28 16.860777 Anserini +test1472 Q0 12669684 29 16.860777 Anserini +test1472 Q0 2178244 30 16.789465 Anserini +test1473 Q0 19639351 1 8.829916 Anserini +test1473 Q0 19639349 2 8.708337 Anserini +test1473 Q0 16428528 3 8.686217 Anserini +test1473 Q0 16428546 4 8.514205 Anserini +test1473 Q0 11013909 5 8.404627 Anserini +test1473 Q0 7533508 6 8.310537 Anserini +test1473 Q0 19827633 7 8.302071 Anserini +test1473 Q0 13672469 8 8.295829 Anserini +test1473 Q0 12038237 9 8.267682 Anserini +test1473 Q0 15924895 10 8.251919 Anserini +test1473 Q0 18259865 11 8.212642 Anserini +test1473 Q0 10280741 12 8.207901 Anserini +test1473 Q0 19953603 13 8.207901 Anserini +test1473 Q0 16027499 14 8.170731 Anserini +test1473 Q0 16027501 15 8.170731 Anserini +test1473 Q0 6772628 16 8.159922 Anserini +test1473 Q0 13672464 17 8.125624 Anserini +test1473 Q0 9459422 18 8.109537 Anserini +test1473 Q0 20015388 19 8.095200 Anserini +test1473 Q0 13794457 20 8.084666 Anserini +test1473 Q0 15014682 21 8.078760 Anserini +test1473 Q0 13212922 22 8.063728 Anserini +test1473 Q0 10277568 23 8.049475 Anserini +test1473 Q0 17339227 24 8.016672 Anserini +test1473 Q0 11491323 25 7.995068 Anserini +test1473 Q0 1590217 26 7.984165 Anserini +test1473 Q0 17332786 27 7.978127 Anserini +test1473 Q0 12950703 28 7.978127 Anserini +test1473 Q0 19872113 29 7.971909 Anserini +test1473 Q0 7014999 30 7.971002 Anserini +test1474 Q0 644425 1 20.173168 Anserini +test1474 Q0 8826770 2 18.137310 Anserini +test1474 Q0 4969258 3 17.932144 Anserini +test1474 Q0 644339 4 17.900410 Anserini +test1474 Q0 4023965 5 17.847988 Anserini +test1474 Q0 581883 6 17.719141 Anserini +test1474 Q0 644379 7 17.620783 Anserini +test1474 Q0 358239 8 17.511028 Anserini +test1474 Q0 644319 9 17.359936 Anserini +test1474 Q0 1659345 10 17.256029 Anserini +test1474 Q0 1659422 11 17.118202 Anserini +test1474 Q0 16074501 12 17.105661 Anserini +test1474 Q0 9785097 13 17.015930 Anserini +test1474 Q0 3951908 14 17.001177 Anserini +test1474 Q0 13970500 15 16.980597 Anserini +test1474 Q0 644356 16 16.974913 Anserini +test1474 Q0 644344 17 16.808994 Anserini +test1474 Q0 8714886 18 16.638128 Anserini +test1474 Q0 9612194 19 16.537510 Anserini +test1474 Q0 4142121 20 16.533127 Anserini +test1474 Q0 7752869 21 16.531616 Anserini +test1474 Q0 644424 22 16.528479 Anserini +test1474 Q0 640362 23 16.509338 Anserini +test1474 Q0 2406778 24 16.474871 Anserini +test1474 Q0 4254954 25 16.471430 Anserini +test1474 Q0 7058275 26 16.457170 Anserini +test1474 Q0 1288061 27 16.404316 Anserini +test1474 Q0 16082420 28 16.383110 Anserini +test1474 Q0 19669647 29 16.361708 Anserini +test1474 Q0 1659335 30 16.333710 Anserini +test1475 Q0 20468762 1 13.373310 Anserini +test1475 Q0 11420259 2 13.064986 Anserini +test1475 Q0 5795534 3 12.998649 Anserini +test1475 Q0 11521521 4 11.753759 Anserini +test1475 Q0 11305096 5 11.753527 Anserini +test1475 Q0 13288895 6 11.751904 Anserini +test1475 Q0 393807 7 11.574897 Anserini +test1475 Q0 14270969 8 11.540791 Anserini +test1475 Q0 11521515 9 11.470407 Anserini +test1475 Q0 9508580 10 11.351153 Anserini +test1475 Q0 11521531 11 11.339563 Anserini +test1475 Q0 11521526 12 11.114621 Anserini +test1475 Q0 4213490 13 11.065933 Anserini +test1475 Q0 4174842 14 11.050128 Anserini +test1475 Q0 3348179 15 10.958357 Anserini +test1475 Q0 5795532 16 10.932660 Anserini +test1475 Q0 11521507 17 10.920550 Anserini +test1475 Q0 8819338 18 10.911187 Anserini +test1475 Q0 10057059 19 10.910492 Anserini +test1475 Q0 5187910 20 10.904706 Anserini +test1475 Q0 19820312 21 10.841154 Anserini +test1475 Q0 5038950 22 10.838449 Anserini +test1475 Q0 11521513 23 10.834087 Anserini +test1475 Q0 8252249 24 10.811658 Anserini +test1475 Q0 1400714 25 10.767490 Anserini +test1475 Q0 6005486 26 10.761518 Anserini +test1475 Q0 6332910 27 10.748102 Anserini +test1475 Q0 11521530 28 10.737242 Anserini +test1475 Q0 5726958 29 10.734428 Anserini +test1475 Q0 4213475 30 10.679878 Anserini +test1476 Q0 17151920 1 21.961178 Anserini +test1476 Q0 19675701 2 20.228615 Anserini +test1476 Q0 20489 3 20.192965 Anserini +test1476 Q0 198075 4 19.672771 Anserini +test1476 Q0 20509 5 19.412443 Anserini +test1476 Q0 858653 6 18.951517 Anserini +test1476 Q0 20521 7 18.709692 Anserini +test1476 Q0 1656220 8 18.557665 Anserini +test1476 Q0 1656235 9 18.557665 Anserini +test1476 Q0 20507 10 18.442654 Anserini +test1476 Q0 80976 11 18.106247 Anserini +test1476 Q0 20492 12 17.584667 Anserini +test1476 Q0 20491 13 17.396351 Anserini +test1476 Q0 20515 14 17.193064 Anserini +test1476 Q0 858647 15 17.100662 Anserini +test1476 Q0 7826933 16 17.061420 Anserini +test1476 Q0 7826934 17 17.061420 Anserini +test1476 Q0 10758651 18 17.012819 Anserini +test1476 Q0 19448292 19 16.956673 Anserini +test1476 Q0 18019096 20 16.897669 Anserini +test1476 Q0 7787852 21 16.893654 Anserini +test1476 Q0 858634 22 16.820267 Anserini +test1476 Q0 3790295 23 16.796528 Anserini +test1476 Q0 20494 24 16.740425 Anserini +test1476 Q0 19675707 25 16.731960 Anserini +test1476 Q0 7787855 26 16.672649 Anserini +test1476 Q0 20528 27 16.619017 Anserini +test1476 Q0 8424183 28 16.563828 Anserini +test1476 Q0 8424179 29 16.563828 Anserini +test1476 Q0 20520 30 16.300699 Anserini +test1477 Q0 1860073 1 17.118149 Anserini +test1477 Q0 1860051 2 13.965066 Anserini +test1477 Q0 4837704 3 13.774104 Anserini +test1477 Q0 1860061 4 13.528587 Anserini +test1477 Q0 4837713 5 13.510137 Anserini +test1477 Q0 20642758 6 13.282965 Anserini +test1477 Q0 19028510 7 13.240481 Anserini +test1477 Q0 1860071 8 13.238453 Anserini +test1477 Q0 1860050 9 13.198820 Anserini +test1477 Q0 16887692 10 13.095175 Anserini +test1477 Q0 1860056 11 12.919457 Anserini +test1477 Q0 1860067 12 12.831464 Anserini +test1477 Q0 13402497 13 12.800868 Anserini +test1477 Q0 20642759 14 12.753495 Anserini +test1477 Q0 14009645 15 12.699002 Anserini +test1477 Q0 8512877 16 12.691660 Anserini +test1477 Q0 5822522 17 12.557363 Anserini +test1477 Q0 9977497 18 12.399167 Anserini +test1477 Q0 1860057 19 12.383552 Anserini +test1477 Q0 8512880 20 12.383369 Anserini +test1477 Q0 17838512 21 12.336278 Anserini +test1477 Q0 17580760 22 12.332765 Anserini +test1477 Q0 18152899 23 12.304747 Anserini +test1477 Q0 7739546 24 12.304747 Anserini +test1477 Q0 8558235 25 12.283138 Anserini +test1477 Q0 13402496 26 12.264299 Anserini +test1477 Q0 1860062 27 12.221359 Anserini +test1477 Q0 17838499 28 12.213290 Anserini +test1477 Q0 4837711 29 12.197227 Anserini +test1477 Q0 16015462 30 12.183440 Anserini +test1478 Q0 16886771 1 12.420290 Anserini +test1478 Q0 19475271 2 11.487057 Anserini +test1478 Q0 920848 3 11.478559 Anserini +test1478 Q0 4858561 4 11.474116 Anserini +test1478 Q0 17844759 5 11.470159 Anserini +test1478 Q0 8856444 6 11.383686 Anserini +test1478 Q0 16661479 7 11.293685 Anserini +test1478 Q0 5236654 8 11.245096 Anserini +test1478 Q0 18313301 9 11.161690 Anserini +test1478 Q0 12567529 10 10.902882 Anserini +test1478 Q0 16596559 11 10.848601 Anserini +test1478 Q0 14418981 12 10.763385 Anserini +test1478 Q0 11143908 13 10.728751 Anserini +test1478 Q0 2074615 14 10.707766 Anserini +test1478 Q0 1844060 15 10.703429 Anserini +test1478 Q0 2515503 16 10.689929 Anserini +test1478 Q0 11485678 17 10.627639 Anserini +test1478 Q0 4015232 18 10.546383 Anserini +test1478 Q0 829402 19 10.520912 Anserini +test1478 Q0 14542968 20 10.500722 Anserini +test1478 Q0 9080225 21 10.467196 Anserini +test1478 Q0 14602011 22 10.464058 Anserini +test1478 Q0 3906206 23 10.435102 Anserini +test1478 Q0 19685968 24 10.419356 Anserini +test1478 Q0 8677554 25 10.419165 Anserini +test1478 Q0 19193562 26 10.407208 Anserini +test1478 Q0 9169622 27 10.385131 Anserini +test1478 Q0 6462932 28 10.369628 Anserini +test1478 Q0 18764742 29 10.321524 Anserini +test1478 Q0 9932817 30 10.303513 Anserini +test1479 Q0 16984196 1 19.323994 Anserini +test1479 Q0 17671452 2 18.886190 Anserini +test1479 Q0 16984200 3 18.846647 Anserini +test1479 Q0 7663014 4 18.731289 Anserini +test1479 Q0 3053874 5 18.122744 Anserini +test1479 Q0 18252771 6 18.042095 Anserini +test1479 Q0 19345189 7 18.039814 Anserini +test1479 Q0 16287278 8 17.973503 Anserini +test1479 Q0 16500367 9 17.826248 Anserini +test1479 Q0 15064297 10 17.826248 Anserini +test1479 Q0 15952417 11 17.826248 Anserini +test1479 Q0 3053855 12 17.826033 Anserini +test1479 Q0 17671455 13 17.814600 Anserini +test1479 Q0 16500400 14 17.793184 Anserini +test1479 Q0 19748164 15 17.789835 Anserini +test1479 Q0 20905699 16 17.789835 Anserini +test1479 Q0 7663015 17 17.678162 Anserini +test1479 Q0 16287274 18 17.657797 Anserini +test1479 Q0 17263335 19 17.643013 Anserini +test1479 Q0 7662953 20 17.511822 Anserini +test1479 Q0 19681617 21 17.508410 Anserini +test1479 Q0 7662947 22 17.508410 Anserini +test1479 Q0 11669637 23 17.502592 Anserini +test1479 Q0 12750137 24 17.423719 Anserini +test1479 Q0 12750141 25 17.423719 Anserini +test1479 Q0 20905701 26 17.405987 Anserini +test1479 Q0 17263332 27 17.354927 Anserini +test1479 Q0 16908541 28 17.354927 Anserini +test1479 Q0 8020603 29 17.332703 Anserini +test1479 Q0 19748166 30 17.258833 Anserini +test148 Q0 853995 1 13.230233 Anserini +test148 Q0 443448 2 12.974393 Anserini +test148 Q0 4825016 3 12.742014 Anserini +test148 Q0 4824987 4 12.723036 Anserini +test148 Q0 20952233 5 12.693994 Anserini +test148 Q0 13005648 6 12.607594 Anserini +test148 Q0 11757581 7 12.595934 Anserini +test148 Q0 895135 8 12.579327 Anserini +test148 Q0 17748657 9 12.562115 Anserini +test148 Q0 11757577 10 12.543804 Anserini +test148 Q0 284360 11 12.527327 Anserini +test148 Q0 3058241 12 12.495670 Anserini +test148 Q0 12771935 13 12.492434 Anserini +test148 Q0 13811338 14 12.466338 Anserini +test148 Q0 14655694 15 12.415794 Anserini +test148 Q0 6361511 16 12.401800 Anserini +test148 Q0 6361518 17 12.401800 Anserini +test148 Q0 742016 18 12.377194 Anserini +test148 Q0 20952195 19 12.368492 Anserini +test148 Q0 11149089 20 12.235424 Anserini +test148 Q0 6178245 21 12.165901 Anserini +test148 Q0 151480 22 12.150458 Anserini +test148 Q0 8046012 23 12.145003 Anserini +test148 Q0 2781146 24 12.144405 Anserini +test148 Q0 20145072 25 12.142382 Anserini +test148 Q0 12364140 26 12.113491 Anserini +test148 Q0 14655715 27 12.095289 Anserini +test148 Q0 20952194 28 12.095108 Anserini +test148 Q0 18397848 29 12.086851 Anserini +test148 Q0 12371008 30 12.053723 Anserini +test1480 Q0 5885808 1 16.066328 Anserini +test1480 Q0 5885815 2 15.765466 Anserini +test1480 Q0 5885816 3 15.469523 Anserini +test1480 Q0 8076306 4 15.259892 Anserini +test1480 Q0 5885807 5 15.145158 Anserini +test1480 Q0 5885802 6 14.800205 Anserini +test1480 Q0 5885809 7 14.740038 Anserini +test1480 Q0 5885817 8 14.740038 Anserini +test1480 Q0 8076301 9 14.740038 Anserini +test1480 Q0 5885814 10 14.229976 Anserini +test1480 Q0 5885803 11 14.017376 Anserini +test1480 Q0 5885813 12 13.946989 Anserini +test1480 Q0 16700425 13 13.877356 Anserini +test1480 Q0 8076288 14 13.832078 Anserini +test1480 Q0 8076309 15 13.732170 Anserini +test1480 Q0 5885812 16 13.410331 Anserini +test1480 Q0 5885810 17 13.333789 Anserini +test1480 Q0 4241166 18 13.124676 Anserini +test1480 Q0 5885804 19 12.767748 Anserini +test1480 Q0 13337580 20 12.590405 Anserini +test1480 Q0 14164016 21 12.417921 Anserini +test1480 Q0 2823917 22 12.406695 Anserini +test1480 Q0 5885811 23 12.310143 Anserini +test1480 Q0 8924386 24 12.120383 Anserini +test1480 Q0 10957309 25 11.617184 Anserini +test1480 Q0 20390816 26 11.495670 Anserini +test1480 Q0 20556360 27 11.494274 Anserini +test1480 Q0 5885805 28 11.403379 Anserini +test1480 Q0 5885806 29 11.403379 Anserini +test1480 Q0 16700426 30 11.312620 Anserini +test1481 Q0 7074838 1 17.390152 Anserini +test1481 Q0 2773359 2 16.999840 Anserini +test1481 Q0 7457650 3 16.890772 Anserini +test1481 Q0 7121074 4 16.826712 Anserini +test1481 Q0 17150343 5 16.257782 Anserini +test1481 Q0 6968058 6 16.210312 Anserini +test1481 Q0 10009002 7 15.707778 Anserini +test1481 Q0 7217547 8 15.691707 Anserini +test1481 Q0 11728142 9 15.647787 Anserini +test1481 Q0 7345557 10 15.578839 Anserini +test1481 Q0 7457651 11 15.544365 Anserini +test1481 Q0 19102374 12 15.508044 Anserini +test1481 Q0 16106121 13 15.376729 Anserini +test1481 Q0 14136555 14 15.366408 Anserini +test1481 Q0 12576694 15 15.338762 Anserini +test1481 Q0 7196594 16 15.313542 Anserini +test1481 Q0 11728419 17 15.242686 Anserini +test1481 Q0 10009001 18 15.237694 Anserini +test1481 Q0 6402616 19 15.236584 Anserini +test1481 Q0 14151778 20 15.216271 Anserini +test1481 Q0 10678298 21 15.202525 Anserini +test1481 Q0 14013637 22 15.183011 Anserini +test1481 Q0 13193977 23 15.129102 Anserini +test1481 Q0 16385240 24 15.124887 Anserini +test1481 Q0 19692028 25 15.123711 Anserini +test1481 Q0 80675 26 15.119085 Anserini +test1481 Q0 17855132 27 15.099501 Anserini +test1481 Q0 6849089 28 15.078321 Anserini +test1481 Q0 15435208 29 15.076174 Anserini +test1481 Q0 4661473 30 15.048311 Anserini +test1482 Q0 20431172 1 20.237093 Anserini +test1482 Q0 20431174 2 20.173893 Anserini +test1482 Q0 20431169 3 19.778942 Anserini +test1482 Q0 20431173 4 19.714415 Anserini +test1482 Q0 20431184 5 19.408306 Anserini +test1482 Q0 18327655 6 18.429564 Anserini +test1482 Q0 20431175 7 17.963247 Anserini +test1482 Q0 18327656 8 17.512426 Anserini +test1482 Q0 3304421 9 16.907270 Anserini +test1482 Q0 20431178 10 16.573410 Anserini +test1482 Q0 20431179 11 16.573410 Anserini +test1482 Q0 20431170 12 16.523729 Anserini +test1482 Q0 20431183 13 16.355846 Anserini +test1482 Q0 20431177 14 16.255960 Anserini +test1482 Q0 20431176 15 16.145170 Anserini +test1482 Q0 2117430 16 15.816882 Anserini +test1482 Q0 20431181 17 15.802340 Anserini +test1482 Q0 18327650 18 15.428407 Anserini +test1482 Q0 2702708 19 15.340377 Anserini +test1482 Q0 19368750 20 15.256180 Anserini +test1482 Q0 18327649 21 15.019018 Anserini +test1482 Q0 18327659 22 14.972438 Anserini +test1482 Q0 3304422 23 14.971130 Anserini +test1482 Q0 9881382 24 14.856241 Anserini +test1482 Q0 3304430 25 14.819616 Anserini +test1482 Q0 8319693 26 14.817039 Anserini +test1482 Q0 3304427 27 14.740004 Anserini +test1482 Q0 2117417 28 14.695050 Anserini +test1482 Q0 2702698 29 14.695050 Anserini +test1482 Q0 20431182 30 14.584599 Anserini +test1483 Q0 18277320 1 14.449375 Anserini +test1483 Q0 18277319 2 13.524225 Anserini +test1483 Q0 7005044 3 13.219316 Anserini +test1483 Q0 3171008 4 13.209393 Anserini +test1483 Q0 12833055 5 13.009288 Anserini +test1483 Q0 14277745 6 12.815443 Anserini +test1483 Q0 920910 7 12.794186 Anserini +test1483 Q0 961649 8 12.761260 Anserini +test1483 Q0 3519925 9 12.703413 Anserini +test1483 Q0 14101483 10 12.703413 Anserini +test1483 Q0 2721798 11 12.550671 Anserini +test1483 Q0 5458444 12 12.547733 Anserini +test1483 Q0 5218931 13 12.500344 Anserini +test1483 Q0 5218932 14 12.500344 Anserini +test1483 Q0 14277748 15 12.478854 Anserini +test1483 Q0 4863613 16 12.302340 Anserini +test1483 Q0 6128580 17 12.262209 Anserini +test1483 Q0 17188889 18 12.253105 Anserini +test1483 Q0 1393858 19 12.222481 Anserini +test1483 Q0 8139031 20 12.206736 Anserini +test1483 Q0 8139029 21 12.165632 Anserini +test1483 Q0 20322426 22 12.106543 Anserini +test1483 Q0 1393850 23 12.019399 Anserini +test1483 Q0 3968991 24 11.998184 Anserini +test1483 Q0 1393861 25 11.914427 Anserini +test1483 Q0 3968997 26 11.906761 Anserini +test1483 Q0 18170235 27 11.885456 Anserini +test1483 Q0 3524125 28 11.880283 Anserini +test1483 Q0 8139030 29 11.848212 Anserini +test1483 Q0 8462514 30 11.833984 Anserini +test1484 Q0 12790514 1 14.693274 Anserini +test1484 Q0 5345779 2 14.543039 Anserini +test1484 Q0 160591 3 14.468746 Anserini +test1484 Q0 1294142 4 14.300844 Anserini +test1484 Q0 1639877 5 14.109965 Anserini +test1484 Q0 307245 6 13.849002 Anserini +test1484 Q0 12982476 7 13.768520 Anserini +test1484 Q0 17554229 8 13.765901 Anserini +test1484 Q0 12982492 9 13.688663 Anserini +test1484 Q0 2641683 10 13.591041 Anserini +test1484 Q0 735865 11 13.572710 Anserini +test1484 Q0 3075220 12 13.451008 Anserini +test1484 Q0 6088570 13 13.422776 Anserini +test1484 Q0 11685059 14 13.382999 Anserini +test1484 Q0 12982535 15 13.382999 Anserini +test1484 Q0 1639925 16 13.363485 Anserini +test1484 Q0 1957047 17 13.346557 Anserini +test1484 Q0 1846898 18 13.268984 Anserini +test1484 Q0 3675584 19 13.172038 Anserini +test1484 Q0 17730299 20 13.130224 Anserini +test1484 Q0 1639880 21 13.060944 Anserini +test1484 Q0 12982478 22 12.998954 Anserini +test1484 Q0 1639915 23 12.955856 Anserini +test1484 Q0 7749518 24 12.920776 Anserini +test1484 Q0 7749517 25 12.916733 Anserini +test1484 Q0 1639916 26 12.868286 Anserini +test1484 Q0 5809392 27 12.771019 Anserini +test1484 Q0 2886337 28 12.745409 Anserini +test1484 Q0 484827 29 12.716729 Anserini +test1484 Q0 485035 30 12.716729 Anserini +test1485 Q0 12843346 1 11.773687 Anserini +test1485 Q0 12843342 2 11.058571 Anserini +test1485 Q0 3521445 3 10.821833 Anserini +test1485 Q0 674699 4 10.607913 Anserini +test1485 Q0 12084519 5 10.602326 Anserini +test1485 Q0 6923575 6 10.559620 Anserini +test1485 Q0 10844394 7 10.515616 Anserini +test1485 Q0 6923574 8 10.484360 Anserini +test1485 Q0 4928931 9 10.370707 Anserini +test1485 Q0 12843345 10 10.369249 Anserini +test1485 Q0 17051517 11 10.229895 Anserini +test1485 Q0 13067159 12 10.084056 Anserini +test1485 Q0 16448231 13 10.023251 Anserini +test1485 Q0 16815430 14 9.991040 Anserini +test1485 Q0 11834021 15 9.964603 Anserini +test1485 Q0 15557135 16 9.883537 Anserini +test1485 Q0 8552131 17 9.852118 Anserini +test1485 Q0 20909493 18 9.831227 Anserini +test1485 Q0 8552134 19 9.734869 Anserini +test1485 Q0 908892 20 9.688181 Anserini +test1485 Q0 10148666 21 9.661709 Anserini +test1485 Q0 17535709 22 9.625610 Anserini +test1485 Q0 1605650 23 9.583391 Anserini +test1485 Q0 12453300 24 9.552920 Anserini +test1485 Q0 18160640 25 9.537539 Anserini +test1485 Q0 4928934 26 9.410131 Anserini +test1485 Q0 19817918 27 9.366240 Anserini +test1485 Q0 4962878 28 9.334917 Anserini +test1485 Q0 16886304 29 9.329002 Anserini +test1485 Q0 742356 30 9.324810 Anserini +test1486 Q0 4510484 1 14.810594 Anserini +test1486 Q0 2039020 2 13.882160 Anserini +test1486 Q0 6910133 3 13.858218 Anserini +test1486 Q0 17732812 4 13.698803 Anserini +test1486 Q0 4510482 5 13.404592 Anserini +test1486 Q0 2038987 6 13.121078 Anserini +test1486 Q0 6910135 7 13.112795 Anserini +test1486 Q0 3757751 8 12.978896 Anserini +test1486 Q0 3758232 9 12.825716 Anserini +test1486 Q0 6845156 10 12.508159 Anserini +test1486 Q0 2038994 11 12.497558 Anserini +test1486 Q0 6845155 12 12.497558 Anserini +test1486 Q0 6395718 13 12.344664 Anserini +test1486 Q0 1144956 14 12.221841 Anserini +test1486 Q0 4647012 15 12.118814 Anserini +test1486 Q0 16877132 16 12.011235 Anserini +test1486 Q0 741791 17 11.999144 Anserini +test1486 Q0 1841915 18 11.999144 Anserini +test1486 Q0 4510485 19 11.936215 Anserini +test1486 Q0 3757752 20 11.857100 Anserini +test1486 Q0 5848223 21 11.718137 Anserini +test1486 Q0 6395719 22 11.676814 Anserini +test1486 Q0 925442 23 11.568796 Anserini +test1486 Q0 2039014 24 11.541951 Anserini +test1486 Q0 6910130 25 11.511039 Anserini +test1486 Q0 1144953 26 11.510167 Anserini +test1486 Q0 925438 27 11.485414 Anserini +test1486 Q0 17824638 28 11.457693 Anserini +test1486 Q0 20896306 29 11.433736 Anserini +test1486 Q0 523748 30 11.416882 Anserini +test1487 Q0 1084884 1 13.589458 Anserini +test1487 Q0 232456 2 13.094461 Anserini +test1487 Q0 13358787 3 12.746048 Anserini +test1487 Q0 1862175 4 12.745945 Anserini +test1487 Q0 5709770 5 12.441669 Anserini +test1487 Q0 232425 6 12.391460 Anserini +test1487 Q0 3031156 7 12.379198 Anserini +test1487 Q0 1027519 8 12.230878 Anserini +test1487 Q0 10081361 9 12.210364 Anserini +test1487 Q0 17985968 10 12.012507 Anserini +test1487 Q0 9723999 11 12.004916 Anserini +test1487 Q0 17438317 12 11.989619 Anserini +test1487 Q0 9724005 13 11.882289 Anserini +test1487 Q0 10045022 14 11.825233 Anserini +test1487 Q0 917262 15 11.766606 Anserini +test1487 Q0 12080590 16 11.692807 Anserini +test1487 Q0 1970824 17 11.570283 Anserini +test1487 Q0 9915913 18 11.528456 Anserini +test1487 Q0 4602692 19 11.474759 Anserini +test1487 Q0 2756963 20 11.453248 Anserini +test1487 Q0 5248571 21 11.434385 Anserini +test1487 Q0 5383012 22 11.427944 Anserini +test1487 Q0 9388086 23 11.423090 Anserini +test1487 Q0 1932284 24 11.423090 Anserini +test1487 Q0 232437 25 11.412876 Anserini +test1487 Q0 934206 26 11.345287 Anserini +test1487 Q0 13131359 27 11.271105 Anserini +test1487 Q0 1067309 28 11.255764 Anserini +test1487 Q0 14494030 29 11.227161 Anserini +test1487 Q0 954743 30 11.202842 Anserini +test1488 Q0 13177270 1 9.795975 Anserini +test1488 Q0 2836134 2 9.551844 Anserini +test1488 Q0 12329378 3 9.464050 Anserini +test1488 Q0 20849329 4 9.456911 Anserini +test1488 Q0 12500383 5 9.450918 Anserini +test1488 Q0 6920325 6 9.423462 Anserini +test1488 Q0 15061633 7 9.402305 Anserini +test1488 Q0 8608430 8 9.358844 Anserini +test1488 Q0 9358869 9 9.342225 Anserini +test1488 Q0 20242568 10 9.270037 Anserini +test1488 Q0 5922853 11 9.198641 Anserini +test1488 Q0 10442375 12 9.164051 Anserini +test1488 Q0 14819633 13 9.150998 Anserini +test1488 Q0 2279774 14 9.138252 Anserini +test1488 Q0 20394424 15 9.136418 Anserini +test1488 Q0 4671506 16 9.135018 Anserini +test1488 Q0 2784491 17 9.125007 Anserini +test1488 Q0 10567949 18 9.119482 Anserini +test1488 Q0 16191114 19 8.968934 Anserini +test1488 Q0 16217050 20 8.964222 Anserini +test1488 Q0 13978970 21 8.951397 Anserini +test1488 Q0 8596765 22 8.908427 Anserini +test1488 Q0 19740178 23 8.844075 Anserini +test1488 Q0 17115814 24 8.840243 Anserini +test1488 Q0 5994605 25 8.839589 Anserini +test1488 Q0 5858179 26 8.836044 Anserini +test1488 Q0 7381000 27 8.831451 Anserini +test1488 Q0 5725566 28 8.820310 Anserini +test1488 Q0 7178513 29 8.785419 Anserini +test1488 Q0 13109800 30 8.773656 Anserini +test1489 Q0 20302478 1 13.666857 Anserini +test1489 Q0 19956520 2 13.286373 Anserini +test1489 Q0 12677616 3 13.200903 Anserini +test1489 Q0 1344312 4 13.140972 Anserini +test1489 Q0 18255249 5 12.898790 Anserini +test1489 Q0 19956516 6 12.870305 Anserini +test1489 Q0 18255217 7 12.735385 Anserini +test1489 Q0 13813728 8 12.584651 Anserini +test1489 Q0 14548395 9 12.581577 Anserini +test1489 Q0 13813682 10 12.266400 Anserini +test1489 Q0 13813734 11 12.238670 Anserini +test1489 Q0 20302482 12 12.232032 Anserini +test1489 Q0 13813740 13 12.110638 Anserini +test1489 Q0 7204774 14 12.035060 Anserini +test1489 Q0 16756804 15 11.957559 Anserini +test1489 Q0 18255218 16 11.938692 Anserini +test1489 Q0 19966037 17 11.736854 Anserini +test1489 Q0 18255240 18 11.723736 Anserini +test1489 Q0 1434272 19 11.716868 Anserini +test1489 Q0 10369817 20 11.656800 Anserini +test1489 Q0 18414518 21 11.652751 Anserini +test1489 Q0 18255221 22 11.641684 Anserini +test1489 Q0 5316396 23 11.639626 Anserini +test1489 Q0 18054996 24 11.617451 Anserini +test1489 Q0 14548381 25 11.610847 Anserini +test1489 Q0 3772310 26 11.585724 Anserini +test1489 Q0 12677631 27 11.556786 Anserini +test1489 Q0 12258590 28 11.544567 Anserini +test1489 Q0 18414523 29 11.501932 Anserini +test1489 Q0 10517520 30 11.473790 Anserini +test149 Q0 8061151 1 11.915941 Anserini +test149 Q0 13031132 2 11.427258 Anserini +test149 Q0 20734816 3 11.236283 Anserini +test149 Q0 6459402 4 11.207649 Anserini +test149 Q0 5548350 5 11.004621 Anserini +test149 Q0 3221243 6 10.927165 Anserini +test149 Q0 13031137 7 10.845840 Anserini +test149 Q0 5046681 8 10.839848 Anserini +test149 Q0 2748888 9 10.728415 Anserini +test149 Q0 12732455 10 10.637461 Anserini +test149 Q0 1537706 11 10.598755 Anserini +test149 Q0 3089128 12 10.591736 Anserini +test149 Q0 1589064 13 10.528676 Anserini +test149 Q0 1700463 14 10.487990 Anserini +test149 Q0 669959 15 10.481503 Anserini +test149 Q0 3089138 16 10.368459 Anserini +test149 Q0 4704884 17 10.328599 Anserini +test149 Q0 490490 18 10.325352 Anserini +test149 Q0 3689219 19 10.278501 Anserini +test149 Q0 13017765 20 10.243907 Anserini +test149 Q0 2748889 21 10.225130 Anserini +test149 Q0 14098185 22 10.177105 Anserini +test149 Q0 6722171 23 10.151492 Anserini +test149 Q0 14098182 24 10.076298 Anserini +test149 Q0 10002668 25 10.055717 Anserini +test149 Q0 6260504 26 10.003931 Anserini +test149 Q0 3710990 27 10.001616 Anserini +test149 Q0 3812684 28 9.987450 Anserini +test149 Q0 14298539 29 9.968344 Anserini +test149 Q0 667162 30 9.966207 Anserini +test1490 Q0 803338 1 12.246213 Anserini +test1490 Q0 1811607 2 11.795801 Anserini +test1490 Q0 15589316 3 11.561860 Anserini +test1490 Q0 803348 4 11.470513 Anserini +test1490 Q0 14744962 5 11.429067 Anserini +test1490 Q0 20167369 6 11.212672 Anserini +test1490 Q0 17996939 7 11.080793 Anserini +test1490 Q0 11043366 8 11.026083 Anserini +test1490 Q0 1811551 9 10.963397 Anserini +test1490 Q0 17996872 10 10.870231 Anserini +test1490 Q0 5174858 11 10.744378 Anserini +test1490 Q0 5878187 12 10.710132 Anserini +test1490 Q0 3569458 13 10.682378 Anserini +test1490 Q0 14744977 14 10.576070 Anserini +test1490 Q0 4911523 15 10.534494 Anserini +test1490 Q0 11640802 16 10.481260 Anserini +test1490 Q0 13328440 17 10.433114 Anserini +test1490 Q0 11043865 18 10.423597 Anserini +test1490 Q0 19095387 19 10.395414 Anserini +test1490 Q0 802150 20 10.327934 Anserini +test1490 Q0 1811572 21 10.315010 Anserini +test1490 Q0 802851 22 10.289373 Anserini +test1490 Q0 17996889 23 10.218269 Anserini +test1490 Q0 20133319 24 10.211082 Anserini +test1490 Q0 17996966 25 10.179227 Anserini +test1490 Q0 18090407 26 10.096231 Anserini +test1490 Q0 16463894 27 10.096231 Anserini +test1490 Q0 11043861 28 10.095038 Anserini +test1490 Q0 5885769 29 10.063755 Anserini +test1490 Q0 17342539 30 10.063755 Anserini +test1491 Q0 10630892 1 13.943167 Anserini +test1491 Q0 10630891 2 13.464254 Anserini +test1491 Q0 18467176 3 13.313569 Anserini +test1491 Q0 14038875 4 12.675514 Anserini +test1491 Q0 17521016 5 12.475872 Anserini +test1491 Q0 14038874 6 12.370997 Anserini +test1491 Q0 18600550 7 12.264832 Anserini +test1491 Q0 11931279 8 12.227952 Anserini +test1491 Q0 10425371 9 11.527822 Anserini +test1491 Q0 4452972 10 11.330443 Anserini +test1491 Q0 16513475 11 11.234428 Anserini +test1491 Q0 10807020 12 11.177993 Anserini +test1491 Q0 16495361 13 11.159792 Anserini +test1491 Q0 19915180 14 11.089606 Anserini +test1491 Q0 12403619 15 11.066210 Anserini +test1491 Q0 1552986 16 11.039173 Anserini +test1491 Q0 14733403 17 10.945504 Anserini +test1491 Q0 6346703 18 10.938358 Anserini +test1491 Q0 17317742 19 10.918637 Anserini +test1491 Q0 1548662 20 10.909129 Anserini +test1491 Q0 12448868 21 10.903301 Anserini +test1491 Q0 19349975 22 10.891615 Anserini +test1491 Q0 17268096 23 10.870016 Anserini +test1491 Q0 20194570 24 10.800228 Anserini +test1491 Q0 18916777 25 10.797773 Anserini +test1491 Q0 6255713 26 10.784592 Anserini +test1491 Q0 18201720 27 10.772497 Anserini +test1491 Q0 2824896 28 10.772497 Anserini +test1491 Q0 2926999 29 10.772497 Anserini +test1491 Q0 16644873 30 10.766381 Anserini +test1492 Q0 2421601 1 15.489174 Anserini +test1492 Q0 6622511 2 15.419798 Anserini +test1492 Q0 2421644 3 15.333488 Anserini +test1492 Q0 10375735 4 15.328697 Anserini +test1492 Q0 18618827 5 15.133074 Anserini +test1492 Q0 10375734 6 14.859416 Anserini +test1492 Q0 2421578 7 14.858340 Anserini +test1492 Q0 2421642 8 14.721843 Anserini +test1492 Q0 6308482 9 14.546839 Anserini +test1492 Q0 9000490 10 14.451726 Anserini +test1492 Q0 9790711 11 14.268412 Anserini +test1492 Q0 2421646 12 14.086109 Anserini +test1492 Q0 15995021 13 14.008112 Anserini +test1492 Q0 2166836 14 13.999995 Anserini +test1492 Q0 14335532 15 13.963951 Anserini +test1492 Q0 18618832 16 13.919275 Anserini +test1492 Q0 9790697 17 13.894287 Anserini +test1492 Q0 9790698 18 13.892043 Anserini +test1492 Q0 2421598 19 13.852645 Anserini +test1492 Q0 7337477 20 13.834884 Anserini +test1492 Q0 9956070 21 13.683064 Anserini +test1492 Q0 2421607 22 13.637377 Anserini +test1492 Q0 9790712 23 13.632970 Anserini +test1492 Q0 1413154 24 13.565641 Anserini +test1492 Q0 1795848 25 13.529223 Anserini +test1492 Q0 7337473 26 13.519721 Anserini +test1492 Q0 2166853 27 13.330240 Anserini +test1492 Q0 14335560 28 13.287892 Anserini +test1492 Q0 1855514 29 13.185405 Anserini +test1492 Q0 20405722 30 13.179488 Anserini +test1493 Q0 11214075 1 21.154606 Anserini +test1493 Q0 15938389 2 20.932034 Anserini +test1493 Q0 16603818 3 20.161304 Anserini +test1493 Q0 16603813 4 20.013237 Anserini +test1493 Q0 8819305 5 19.702904 Anserini +test1493 Q0 14211063 6 19.526201 Anserini +test1493 Q0 14211062 7 19.335377 Anserini +test1493 Q0 16371758 8 19.275509 Anserini +test1493 Q0 3813905 9 19.196877 Anserini +test1493 Q0 2106486 10 18.767775 Anserini +test1493 Q0 11213951 11 18.722982 Anserini +test1493 Q0 14211061 12 18.693508 Anserini +test1493 Q0 13573909 13 18.663570 Anserini +test1493 Q0 11214068 14 18.661366 Anserini +test1493 Q0 11114938 15 18.601425 Anserini +test1493 Q0 8818607 16 18.504200 Anserini +test1493 Q0 1291523 17 18.471500 Anserini +test1493 Q0 11213948 18 18.338196 Anserini +test1493 Q0 18618583 19 17.948437 Anserini +test1493 Q0 13189532 20 17.824570 Anserini +test1493 Q0 8819304 21 17.760124 Anserini +test1493 Q0 15563130 22 17.646755 Anserini +test1493 Q0 1291533 23 17.472788 Anserini +test1493 Q0 15228074 24 17.464706 Anserini +test1493 Q0 1971368 25 17.438961 Anserini +test1493 Q0 4361050 26 17.342550 Anserini +test1493 Q0 4361059 27 17.237175 Anserini +test1493 Q0 1882092 28 17.127861 Anserini +test1493 Q0 4868434 29 17.051380 Anserini +test1493 Q0 4051207 30 17.027761 Anserini +test1494 Q0 11861886 1 11.167892 Anserini +test1494 Q0 16782873 2 10.758931 Anserini +test1494 Q0 20791324 3 10.513795 Anserini +test1494 Q0 5409021 4 10.478790 Anserini +test1494 Q0 15742795 5 10.476233 Anserini +test1494 Q0 6306118 6 10.436752 Anserini +test1494 Q0 3705540 7 10.427259 Anserini +test1494 Q0 10097596 8 10.396729 Anserini +test1494 Q0 783956 9 10.315748 Anserini +test1494 Q0 17762997 10 10.246514 Anserini +test1494 Q0 783983 11 10.170568 Anserini +test1494 Q0 10925869 12 10.111566 Anserini +test1494 Q0 4533578 13 10.069896 Anserini +test1494 Q0 783936 14 10.027233 Anserini +test1494 Q0 18399298 15 10.009147 Anserini +test1494 Q0 783929 16 10.007498 Anserini +test1494 Q0 1541306 17 9.985628 Anserini +test1494 Q0 12347594 18 9.958797 Anserini +test1494 Q0 5235477 19 9.942227 Anserini +test1494 Q0 1926620 20 9.916107 Anserini +test1494 Q0 8776940 21 9.898962 Anserini +test1494 Q0 15509367 22 9.865182 Anserini +test1494 Q0 783927 23 9.859750 Anserini +test1494 Q0 2427001 24 9.854500 Anserini +test1494 Q0 783990 25 9.851873 Anserini +test1494 Q0 12347595 26 9.814366 Anserini +test1494 Q0 13622950 27 9.808392 Anserini +test1494 Q0 15601064 28 9.799184 Anserini +test1494 Q0 9183040 29 9.778282 Anserini +test1494 Q0 10742334 30 9.750326 Anserini +test1495 Q0 20125279 1 13.210347 Anserini +test1495 Q0 16086059 2 12.923487 Anserini +test1495 Q0 19971128 3 12.658932 Anserini +test1495 Q0 20125280 4 12.540883 Anserini +test1495 Q0 16086060 5 11.559523 Anserini +test1495 Q0 2359181 6 11.542641 Anserini +test1495 Q0 2359179 7 11.542641 Anserini +test1495 Q0 18285627 8 11.335683 Anserini +test1495 Q0 18285632 9 11.335683 Anserini +test1495 Q0 11309076 10 11.283195 Anserini +test1495 Q0 11309078 11 11.037386 Anserini +test1495 Q0 12929022 12 11.017883 Anserini +test1495 Q0 9066442 13 11.010993 Anserini +test1495 Q0 20381432 14 10.927459 Anserini +test1495 Q0 12929020 15 10.925247 Anserini +test1495 Q0 15731366 16 10.807230 Anserini +test1495 Q0 7405541 17 10.736502 Anserini +test1495 Q0 2359180 18 10.729324 Anserini +test1495 Q0 9560773 19 10.642417 Anserini +test1495 Q0 4381737 20 10.630541 Anserini +test1495 Q0 12929031 21 10.627682 Anserini +test1495 Q0 8250916 22 10.579906 Anserini +test1495 Q0 9509713 23 10.547647 Anserini +test1495 Q0 20381434 24 10.419151 Anserini +test1495 Q0 6690995 25 10.379802 Anserini +test1495 Q0 16070731 26 10.338344 Anserini +test1495 Q0 18123471 27 10.330921 Anserini +test1495 Q0 12929028 28 10.323488 Anserini +test1495 Q0 1472532 29 10.285592 Anserini +test1495 Q0 8560086 30 10.258635 Anserini +test1496 Q0 9380842 1 11.604027 Anserini +test1496 Q0 6602308 2 11.353718 Anserini +test1496 Q0 6602310 3 11.220277 Anserini +test1496 Q0 95509 4 10.856138 Anserini +test1496 Q0 17019794 5 10.832648 Anserini +test1496 Q0 6602316 6 10.586624 Anserini +test1496 Q0 6602306 7 10.526981 Anserini +test1496 Q0 1427394 8 10.494475 Anserini +test1496 Q0 6602307 9 10.416721 Anserini +test1496 Q0 6260130 10 10.050453 Anserini +test1496 Q0 12445421 11 9.953804 Anserini +test1496 Q0 6602311 12 9.901123 Anserini +test1496 Q0 12830373 13 9.793768 Anserini +test1496 Q0 12696100 14 9.732873 Anserini +test1496 Q0 9845611 15 9.681565 Anserini +test1496 Q0 3839116 16 9.641360 Anserini +test1496 Q0 9399911 17 9.641360 Anserini +test1496 Q0 12128762 18 9.500586 Anserini +test1496 Q0 3855021 19 9.500586 Anserini +test1496 Q0 6602315 20 9.391905 Anserini +test1496 Q0 11174678 21 9.360187 Anserini +test1496 Q0 1563256 22 9.342425 Anserini +test1496 Q0 1563294 23 9.342425 Anserini +test1496 Q0 18970756 24 9.342425 Anserini +test1496 Q0 5311190 25 9.318023 Anserini +test1496 Q0 9195373 26 9.258579 Anserini +test1496 Q0 6602309 27 9.258579 Anserini +test1496 Q0 1427347 28 9.238038 Anserini +test1496 Q0 6602314 29 9.211201 Anserini +test1496 Q0 1887756 30 9.202238 Anserini +test1497 Q0 13145593 1 18.708405 Anserini +test1497 Q0 8427639 2 16.603338 Anserini +test1497 Q0 303317 3 16.503265 Anserini +test1497 Q0 11720174 4 16.439316 Anserini +test1497 Q0 12517168 5 16.397514 Anserini +test1497 Q0 11779426 6 16.339638 Anserini +test1497 Q0 18937838 7 16.331903 Anserini +test1497 Q0 9039756 8 16.326883 Anserini +test1497 Q0 17406647 9 16.323271 Anserini +test1497 Q0 2522755 10 15.987852 Anserini +test1497 Q0 14637836 11 15.923910 Anserini +test1497 Q0 20201054 12 15.915104 Anserini +test1497 Q0 14388099 13 15.781576 Anserini +test1497 Q0 19867372 14 15.663643 Anserini +test1497 Q0 15912795 15 15.643001 Anserini +test1497 Q0 13320935 16 15.613335 Anserini +test1497 Q0 14972276 17 15.562267 Anserini +test1497 Q0 4303803 18 15.544870 Anserini +test1497 Q0 12769188 19 15.492957 Anserini +test1497 Q0 349127 20 15.438938 Anserini +test1497 Q0 12990037 21 15.433547 Anserini +test1497 Q0 15289282 22 15.401974 Anserini +test1497 Q0 2142547 23 15.329626 Anserini +test1497 Q0 17455973 24 15.328028 Anserini +test1497 Q0 18794063 25 15.296400 Anserini +test1497 Q0 1880328 26 15.285389 Anserini +test1497 Q0 8481312 27 15.257796 Anserini +test1497 Q0 10456152 28 15.244460 Anserini +test1497 Q0 18749839 29 15.237023 Anserini +test1497 Q0 18749840 30 15.237023 Anserini +test1498 Q0 18062679 1 9.503368 Anserini +test1498 Q0 18062678 2 9.426368 Anserini +test1498 Q0 7844756 3 8.856706 Anserini +test1498 Q0 5017967 4 8.741513 Anserini +test1498 Q0 11421028 5 8.638731 Anserini +test1498 Q0 699110 6 8.601357 Anserini +test1498 Q0 11370017 7 8.582553 Anserini +test1498 Q0 6150339 8 8.581094 Anserini +test1498 Q0 20144735 9 8.581094 Anserini +test1498 Q0 5030964 10 8.581094 Anserini +test1498 Q0 5019685 11 8.581094 Anserini +test1498 Q0 5037113 12 8.581094 Anserini +test1498 Q0 197326 13 8.532509 Anserini +test1498 Q0 20144733 14 8.527273 Anserini +test1498 Q0 5019689 15 8.527273 Anserini +test1498 Q0 8919057 16 8.517128 Anserini +test1498 Q0 11371856 17 8.472801 Anserini +test1498 Q0 7270409 18 8.461847 Anserini +test1498 Q0 11371853 19 8.435966 Anserini +test1498 Q0 6150341 20 8.367676 Anserini +test1498 Q0 5045726 21 8.259628 Anserini +test1498 Q0 1277439 22 8.259345 Anserini +test1498 Q0 5020546 23 8.200058 Anserini +test1498 Q0 11421031 24 8.193800 Anserini +test1498 Q0 3551276 25 8.193782 Anserini +test1498 Q0 1920272 26 8.193691 Anserini +test1498 Q0 11370020 27 8.171898 Anserini +test1498 Q0 12032348 28 8.145813 Anserini +test1498 Q0 5045722 29 8.113904 Anserini +test1498 Q0 4996733 30 8.079125 Anserini +test1499 Q0 396685 1 13.802317 Anserini +test1499 Q0 20881443 2 12.593221 Anserini +test1499 Q0 374414 3 12.503401 Anserini +test1499 Q0 17257915 4 12.489787 Anserini +test1499 Q0 19946507 5 12.192685 Anserini +test1499 Q0 13645392 6 12.050789 Anserini +test1499 Q0 761328 7 12.026304 Anserini +test1499 Q0 105743 8 11.978101 Anserini +test1499 Q0 3760364 9 11.877252 Anserini +test1499 Q0 4080741 10 11.854769 Anserini +test1499 Q0 3202973 11 11.739853 Anserini +test1499 Q0 13938128 12 11.699574 Anserini +test1499 Q0 10811684 13 11.596717 Anserini +test1499 Q0 693427 14 11.536981 Anserini +test1499 Q0 1784942 15 11.518423 Anserini +test1499 Q0 11323618 16 11.484874 Anserini +test1499 Q0 674396 17 11.458700 Anserini +test1499 Q0 69209 18 11.433517 Anserini +test1499 Q0 5631826 19 11.416790 Anserini +test1499 Q0 10911112 20 11.415402 Anserini +test1499 Q0 13310610 21 11.375749 Anserini +test1499 Q0 2743872 22 11.188867 Anserini +test1499 Q0 105749 23 11.176210 Anserini +test1499 Q0 3365609 24 11.153564 Anserini +test1499 Q0 8262259 25 11.113155 Anserini +test1499 Q0 2280618 26 11.080671 Anserini +test1499 Q0 469638 27 11.077496 Anserini +test1499 Q0 19532129 28 11.046257 Anserini +test1499 Q0 10263645 29 11.036954 Anserini +test1499 Q0 243723 30 11.022643 Anserini +test15 Q0 8089729 1 11.151446 Anserini +test15 Q0 17810475 2 11.075746 Anserini +test15 Q0 9463803 3 10.922743 Anserini +test15 Q0 203952 4 10.861826 Anserini +test15 Q0 4640518 5 10.587472 Anserini +test15 Q0 18324900 6 10.035569 Anserini +test15 Q0 4815991 7 9.883664 Anserini +test15 Q0 8089726 8 9.755575 Anserini +test15 Q0 8089760 9 9.705157 Anserini +test15 Q0 203951 10 9.582448 Anserini +test15 Q0 8089730 11 9.492405 Anserini +test15 Q0 10292124 12 9.336905 Anserini +test15 Q0 4466873 13 9.291144 Anserini +test15 Q0 8089727 14 9.275349 Anserini +test15 Q0 11485048 15 9.274721 Anserini +test15 Q0 15299169 16 9.249132 Anserini +test15 Q0 9463805 17 9.233735 Anserini +test15 Q0 11881202 18 9.196357 Anserini +test15 Q0 15940224 19 9.174874 Anserini +test15 Q0 7864539 20 9.116296 Anserini +test15 Q0 13000021 21 9.084751 Anserini +test15 Q0 953811 22 9.055671 Anserini +test15 Q0 19864148 23 9.024245 Anserini +test15 Q0 1709448 24 8.984748 Anserini +test15 Q0 5389548 25 8.965090 Anserini +test15 Q0 12555130 26 8.929102 Anserini +test15 Q0 6659039 27 8.873942 Anserini +test15 Q0 7546710 28 8.846697 Anserini +test15 Q0 3536145 29 8.806143 Anserini +test15 Q0 9215191 30 8.703109 Anserini +test150 Q0 6219306 1 15.270262 Anserini +test150 Q0 8633450 2 14.636750 Anserini +test150 Q0 6219286 3 13.947845 Anserini +test150 Q0 5788818 4 13.854864 Anserini +test150 Q0 9303848 5 13.791457 Anserini +test150 Q0 4623662 6 13.708736 Anserini +test150 Q0 1654940 7 13.641812 Anserini +test150 Q0 10442827 8 13.575304 Anserini +test150 Q0 10442829 9 13.575304 Anserini +test150 Q0 7446788 10 13.473667 Anserini +test150 Q0 5056133 11 13.411033 Anserini +test150 Q0 9057135 12 13.358445 Anserini +test150 Q0 6054044 13 13.346864 Anserini +test150 Q0 2408017 14 13.236700 Anserini +test150 Q0 9911253 15 13.223416 Anserini +test150 Q0 6344057 16 13.131822 Anserini +test150 Q0 12261657 17 13.094680 Anserini +test150 Q0 6261182 18 13.090169 Anserini +test150 Q0 8703110 19 13.041558 Anserini +test150 Q0 4982674 20 13.023110 Anserini +test150 Q0 15361333 21 12.916266 Anserini +test150 Q0 12074240 22 12.869961 Anserini +test150 Q0 16625637 23 12.864124 Anserini +test150 Q0 10100078 24 12.854643 Anserini +test150 Q0 9719358 25 12.837993 Anserini +test150 Q0 19822286 26 12.788316 Anserini +test150 Q0 19822287 27 12.788316 Anserini +test150 Q0 3008962 28 12.787332 Anserini +test150 Q0 6606776 29 12.713237 Anserini +test150 Q0 1665458 30 12.684023 Anserini +test1500 Q0 4636251 1 20.895969 Anserini +test1500 Q0 7154777 2 20.702547 Anserini +test1500 Q0 18937042 3 20.306549 Anserini +test1500 Q0 5699578 4 19.952991 Anserini +test1500 Q0 7771966 5 19.758066 Anserini +test1500 Q0 7154815 6 19.712244 Anserini +test1500 Q0 6257280 7 19.629227 Anserini +test1500 Q0 5699580 8 19.554235 Anserini +test1500 Q0 3807995 9 19.476131 Anserini +test1500 Q0 4469152 10 19.451752 Anserini +test1500 Q0 1485351 11 19.248358 Anserini +test1500 Q0 5699609 12 19.223751 Anserini +test1500 Q0 7317792 13 19.223751 Anserini +test1500 Q0 10276728 14 19.141254 Anserini +test1500 Q0 5699864 15 19.129560 Anserini +test1500 Q0 5699579 16 19.124039 Anserini +test1500 Q0 5599523 17 19.040230 Anserini +test1500 Q0 4994802 18 18.877098 Anserini +test1500 Q0 14468785 19 18.864538 Anserini +test1500 Q0 4636276 20 18.864538 Anserini +test1500 Q0 20173353 21 18.864538 Anserini +test1500 Q0 2670470 22 18.778736 Anserini +test1500 Q0 5599526 23 18.739761 Anserini +test1500 Q0 1496963 24 18.634874 Anserini +test1500 Q0 5699606 25 18.631861 Anserini +test1500 Q0 7154833 26 18.557606 Anserini +test1500 Q0 3808005 27 18.544937 Anserini +test1500 Q0 5699390 28 18.542566 Anserini +test1500 Q0 4636257 29 18.537678 Anserini +test1500 Q0 1317400 30 18.537678 Anserini +test1501 Q0 1732422 1 11.192684 Anserini +test1501 Q0 2576494 2 10.958583 Anserini +test1501 Q0 3870609 3 10.791825 Anserini +test1501 Q0 6683451 4 10.604778 Anserini +test1501 Q0 4506380 5 10.549841 Anserini +test1501 Q0 13476539 6 10.538116 Anserini +test1501 Q0 4220320 7 10.457015 Anserini +test1501 Q0 740764 8 10.307956 Anserini +test1501 Q0 18958815 9 10.236980 Anserini +test1501 Q0 740728 10 10.192381 Anserini +test1501 Q0 3169089 11 10.155069 Anserini +test1501 Q0 13476544 12 10.066638 Anserini +test1501 Q0 740725 13 10.020082 Anserini +test1501 Q0 2685957 14 9.964739 Anserini +test1501 Q0 13209447 15 9.955095 Anserini +test1501 Q0 740729 16 9.938646 Anserini +test1501 Q0 8599705 17 9.913767 Anserini +test1501 Q0 2175751 18 9.858723 Anserini +test1501 Q0 5719182 19 9.781522 Anserini +test1501 Q0 13229612 20 9.773752 Anserini +test1501 Q0 13229622 21 9.773752 Anserini +test1501 Q0 3591934 22 9.754940 Anserini +test1501 Q0 4408058 23 9.742737 Anserini +test1501 Q0 3169107 24 9.726674 Anserini +test1501 Q0 9270026 25 9.703013 Anserini +test1501 Q0 9270028 26 9.703013 Anserini +test1501 Q0 4668461 27 9.691895 Anserini +test1501 Q0 11953329 28 9.588441 Anserini +test1501 Q0 19009123 29 9.572209 Anserini +test1501 Q0 396850 30 9.522330 Anserini +test1502 Q0 13673589 1 11.899363 Anserini +test1502 Q0 13673578 2 11.740050 Anserini +test1502 Q0 16220978 3 11.289036 Anserini +test1502 Q0 13673580 4 11.159569 Anserini +test1502 Q0 9755191 5 10.729131 Anserini +test1502 Q0 13673588 6 10.229204 Anserini +test1502 Q0 10539678 7 10.094255 Anserini +test1502 Q0 17667064 8 10.034239 Anserini +test1502 Q0 14337991 9 9.849544 Anserini +test1502 Q0 8477577 10 9.782552 Anserini +test1502 Q0 7994978 11 9.702589 Anserini +test1502 Q0 17579686 12 9.702101 Anserini +test1502 Q0 10534127 13 9.702101 Anserini +test1502 Q0 8477576 14 9.696246 Anserini +test1502 Q0 15888739 15 9.624008 Anserini +test1502 Q0 16752688 16 9.621996 Anserini +test1502 Q0 1979333 17 9.508237 Anserini +test1502 Q0 3784428 18 9.432690 Anserini +test1502 Q0 14787396 19 9.347159 Anserini +test1502 Q0 10557214 20 9.258375 Anserini +test1502 Q0 13673585 21 9.251127 Anserini +test1502 Q0 9755195 22 9.192584 Anserini +test1502 Q0 9935107 23 9.188948 Anserini +test1502 Q0 1641231 24 9.166078 Anserini +test1502 Q0 1940306 25 9.080414 Anserini +test1502 Q0 377214 26 9.076608 Anserini +test1502 Q0 14337994 27 9.064195 Anserini +test1502 Q0 8246614 28 9.004232 Anserini +test1502 Q0 11313795 29 8.969084 Anserini +test1502 Q0 496481 30 8.928459 Anserini +test1503 Q0 3061168 1 14.225180 Anserini +test1503 Q0 4966176 2 13.945812 Anserini +test1503 Q0 5570275 3 13.771518 Anserini +test1503 Q0 7773166 4 13.755795 Anserini +test1503 Q0 3299243 5 13.553543 Anserini +test1503 Q0 4204471 6 13.400968 Anserini +test1503 Q0 3059126 7 13.347723 Anserini +test1503 Q0 3060953 8 13.345621 Anserini +test1503 Q0 17248808 9 13.345621 Anserini +test1503 Q0 3059086 10 13.247403 Anserini +test1503 Q0 6413648 11 13.097338 Anserini +test1503 Q0 6413652 12 13.097338 Anserini +test1503 Q0 20526514 13 13.070676 Anserini +test1503 Q0 20526498 14 12.896300 Anserini +test1503 Q0 3566464 15 12.890888 Anserini +test1503 Q0 3059123 16 12.643821 Anserini +test1503 Q0 20526512 17 12.630766 Anserini +test1503 Q0 4424059 18 12.617135 Anserini +test1503 Q0 4966165 19 12.602335 Anserini +test1503 Q0 5183607 20 12.580114 Anserini +test1503 Q0 11079399 21 12.580114 Anserini +test1503 Q0 11098137 22 12.500142 Anserini +test1503 Q0 3835944 23 12.453773 Anserini +test1503 Q0 20526516 24 12.394103 Anserini +test1503 Q0 3059110 25 12.329805 Anserini +test1503 Q0 3566453 26 12.318047 Anserini +test1503 Q0 20526511 27 12.304719 Anserini +test1503 Q0 3299343 28 12.268827 Anserini +test1503 Q0 3682774 29 12.234100 Anserini +test1503 Q0 3566467 30 12.222120 Anserini +test1504 Q0 8144303 1 15.575676 Anserini +test1504 Q0 16612509 2 15.032902 Anserini +test1504 Q0 8144307 3 15.002577 Anserini +test1504 Q0 4742584 4 14.752996 Anserini +test1504 Q0 14124198 5 14.701436 Anserini +test1504 Q0 15365922 6 14.556826 Anserini +test1504 Q0 12117655 7 14.343321 Anserini +test1504 Q0 2365861 8 14.083311 Anserini +test1504 Q0 2365871 9 13.958818 Anserini +test1504 Q0 15183992 10 13.958179 Anserini +test1504 Q0 2365890 11 13.903985 Anserini +test1504 Q0 14799026 12 13.892196 Anserini +test1504 Q0 14799186 13 13.859218 Anserini +test1504 Q0 2365863 14 13.809505 Anserini +test1504 Q0 9572706 15 13.783300 Anserini +test1504 Q0 14124211 16 13.619361 Anserini +test1504 Q0 2365886 17 13.611122 Anserini +test1504 Q0 14124200 18 13.603391 Anserini +test1504 Q0 2365889 19 13.525485 Anserini +test1504 Q0 14799016 20 13.508047 Anserini +test1504 Q0 20168319 21 13.494632 Anserini +test1504 Q0 14373002 22 13.454221 Anserini +test1504 Q0 20994730 23 13.413488 Anserini +test1504 Q0 9299403 24 13.396558 Anserini +test1504 Q0 14798872 25 13.330133 Anserini +test1504 Q0 3694203 26 13.321466 Anserini +test1504 Q0 11057957 27 13.309917 Anserini +test1504 Q0 11057960 28 13.309917 Anserini +test1504 Q0 11262201 29 13.289871 Anserini +test1504 Q0 16412432 30 13.281736 Anserini +test1505 Q0 20056186 1 14.234876 Anserini +test1505 Q0 9400333 2 14.183545 Anserini +test1505 Q0 20056184 3 14.165647 Anserini +test1505 Q0 19877161 4 13.608559 Anserini +test1505 Q0 15686286 5 13.328071 Anserini +test1505 Q0 17715708 6 13.315191 Anserini +test1505 Q0 17554104 7 13.253149 Anserini +test1505 Q0 10105729 8 12.887472 Anserini +test1505 Q0 19316343 9 12.857224 Anserini +test1505 Q0 15202302 10 12.850741 Anserini +test1505 Q0 9346849 11 12.803016 Anserini +test1505 Q0 9346851 12 12.803016 Anserini +test1505 Q0 15523866 13 12.791327 Anserini +test1505 Q0 18105915 14 12.741065 Anserini +test1505 Q0 18105912 15 12.669935 Anserini +test1505 Q0 19792356 16 12.622440 Anserini +test1505 Q0 20287938 17 12.576174 Anserini +test1505 Q0 20723301 18 12.576174 Anserini +test1505 Q0 20056170 19 12.564798 Anserini +test1505 Q0 14443596 20 12.526452 Anserini +test1505 Q0 19140484 21 12.495674 Anserini +test1505 Q0 16936854 22 12.450860 Anserini +test1505 Q0 10072200 23 12.415607 Anserini +test1505 Q0 7921653 24 12.377058 Anserini +test1505 Q0 19835273 25 12.337988 Anserini +test1505 Q0 20651606 26 12.263207 Anserini +test1505 Q0 19858868 27 12.243495 Anserini +test1505 Q0 10651021 28 12.210645 Anserini +test1505 Q0 2870495 29 12.124196 Anserini +test1505 Q0 20828008 30 12.110276 Anserini +test1506 Q0 17842505 1 10.720881 Anserini +test1506 Q0 1412082 2 10.355472 Anserini +test1506 Q0 10762042 3 10.108061 Anserini +test1506 Q0 5882465 4 9.738294 Anserini +test1506 Q0 10762055 5 9.671031 Anserini +test1506 Q0 658224 6 9.563545 Anserini +test1506 Q0 3334088 7 9.510530 Anserini +test1506 Q0 776183 8 9.478408 Anserini +test1506 Q0 16754247 9 9.286655 Anserini +test1506 Q0 776208 10 9.153933 Anserini +test1506 Q0 14331297 11 9.136408 Anserini +test1506 Q0 2893927 12 9.096557 Anserini +test1506 Q0 1645551 13 9.090202 Anserini +test1506 Q0 776189 14 9.030360 Anserini +test1506 Q0 776191 15 8.974491 Anserini +test1506 Q0 7009730 16 8.936847 Anserini +test1506 Q0 6886098 17 8.919390 Anserini +test1506 Q0 10424678 18 8.857320 Anserini +test1506 Q0 2206051 19 8.830731 Anserini +test1506 Q0 9795074 20 8.830731 Anserini +test1506 Q0 9645955 21 8.781414 Anserini +test1506 Q0 11189183 22 8.770476 Anserini +test1506 Q0 12575800 23 8.752657 Anserini +test1506 Q0 17398161 24 8.752657 Anserini +test1506 Q0 5997116 25 8.752396 Anserini +test1506 Q0 20999882 26 8.745227 Anserini +test1506 Q0 3713194 27 8.723246 Anserini +test1506 Q0 4034596 28 8.676858 Anserini +test1506 Q0 16778759 29 8.656952 Anserini +test1506 Q0 10062255 30 8.654823 Anserini +test1507 Q0 1371195 1 12.618137 Anserini +test1507 Q0 10233189 2 12.402598 Anserini +test1507 Q0 10957037 3 12.031107 Anserini +test1507 Q0 10424193 4 11.894414 Anserini +test1507 Q0 7729445 5 11.547296 Anserini +test1507 Q0 2541909 6 11.547296 Anserini +test1507 Q0 5151627 7 11.520912 Anserini +test1507 Q0 6881649 8 11.462276 Anserini +test1507 Q0 7308478 9 11.399042 Anserini +test1507 Q0 7873633 10 10.940321 Anserini +test1507 Q0 1999300 11 10.903949 Anserini +test1507 Q0 19594181 12 10.845404 Anserini +test1507 Q0 401903 13 10.841434 Anserini +test1507 Q0 6881681 14 10.786372 Anserini +test1507 Q0 10233188 15 10.772467 Anserini +test1507 Q0 7873636 16 10.758200 Anserini +test1507 Q0 10233192 17 10.628419 Anserini +test1507 Q0 2541919 18 10.535780 Anserini +test1507 Q0 13316208 19 10.457752 Anserini +test1507 Q0 404698 20 10.372504 Anserini +test1507 Q0 3047498 21 10.357724 Anserini +test1507 Q0 4907199 22 10.245970 Anserini +test1507 Q0 1829412 23 10.219583 Anserini +test1507 Q0 1830019 24 10.212644 Anserini +test1507 Q0 3121919 25 10.204451 Anserini +test1507 Q0 17811619 26 10.184825 Anserini +test1507 Q0 16326542 27 10.132094 Anserini +test1507 Q0 16326545 28 10.132094 Anserini +test1507 Q0 401902 29 10.087947 Anserini +test1507 Q0 15091505 30 10.069219 Anserini +test1508 Q0 2671513 1 11.808390 Anserini +test1508 Q0 17340605 2 11.381934 Anserini +test1508 Q0 5675630 3 11.313420 Anserini +test1508 Q0 991673 4 11.185784 Anserini +test1508 Q0 2671511 5 10.755377 Anserini +test1508 Q0 2671514 6 10.755377 Anserini +test1508 Q0 174689 7 10.644738 Anserini +test1508 Q0 18649561 8 10.577246 Anserini +test1508 Q0 10365918 9 10.537757 Anserini +test1508 Q0 10365925 10 10.482352 Anserini +test1508 Q0 6926947 11 10.288163 Anserini +test1508 Q0 10603124 12 10.197264 Anserini +test1508 Q0 12380150 13 10.153738 Anserini +test1508 Q0 18649562 14 10.147263 Anserini +test1508 Q0 991672 15 10.093181 Anserini +test1508 Q0 190474 16 10.073133 Anserini +test1508 Q0 10077884 17 10.018600 Anserini +test1508 Q0 3009194 18 9.978869 Anserini +test1508 Q0 5462291 19 9.882421 Anserini +test1508 Q0 6876444 20 9.857155 Anserini +test1508 Q0 13550718 21 9.823607 Anserini +test1508 Q0 17340606 22 9.799897 Anserini +test1508 Q0 2163973 23 9.658643 Anserini +test1508 Q0 11229586 24 9.621589 Anserini +test1508 Q0 19544747 25 9.600859 Anserini +test1508 Q0 9125781 26 9.600859 Anserini +test1508 Q0 3558815 27 9.595961 Anserini +test1508 Q0 9852547 28 9.592043 Anserini +test1508 Q0 10587641 29 9.584417 Anserini +test1508 Q0 12469530 30 9.549899 Anserini +test1509 Q0 18163576 1 17.425587 Anserini +test1509 Q0 5385141 2 14.641891 Anserini +test1509 Q0 18163574 3 14.306589 Anserini +test1509 Q0 5385132 4 12.343817 Anserini +test1509 Q0 5385139 5 12.293430 Anserini +test1509 Q0 5385143 6 12.293430 Anserini +test1509 Q0 5385140 7 12.192115 Anserini +test1509 Q0 5385142 8 11.989764 Anserini +test1509 Q0 15407826 9 11.856794 Anserini +test1509 Q0 5385135 10 11.704227 Anserini +test1509 Q0 5385137 11 11.643892 Anserini +test1509 Q0 18163575 12 11.643892 Anserini +test1509 Q0 9149023 13 11.536371 Anserini +test1509 Q0 4670374 14 10.965687 Anserini +test1509 Q0 11343951 15 10.898871 Anserini +test1509 Q0 9711449 16 10.531050 Anserini +test1509 Q0 5385134 17 10.531050 Anserini +test1509 Q0 14119566 18 10.531050 Anserini +test1509 Q0 18653274 19 10.457912 Anserini +test1509 Q0 9268887 20 10.457912 Anserini +test1509 Q0 18769111 21 10.457912 Anserini +test1509 Q0 8524310 22 10.385783 Anserini +test1509 Q0 5385138 23 10.314643 Anserini +test1509 Q0 21008983 24 10.314643 Anserini +test1509 Q0 18181880 25 10.314643 Anserini +test1509 Q0 3767138 26 10.314643 Anserini +test1509 Q0 9904502 27 9.826218 Anserini +test1509 Q0 4670376 28 9.641088 Anserini +test1509 Q0 8749887 29 9.505722 Anserini +test1509 Q0 10587061 30 9.409962 Anserini +test151 Q0 8169073 1 10.142562 Anserini +test151 Q0 15409978 2 10.002010 Anserini +test151 Q0 2462500 3 9.815477 Anserini +test151 Q0 19659318 4 9.059275 Anserini +test151 Q0 9834516 5 9.029244 Anserini +test151 Q0 10332059 6 8.997220 Anserini +test151 Q0 3419670 7 8.950731 Anserini +test151 Q0 11407830 8 8.941181 Anserini +test151 Q0 12268948 9 8.939617 Anserini +test151 Q0 16001372 10 8.875492 Anserini +test151 Q0 17193128 11 8.848136 Anserini +test151 Q0 10118180 12 8.848136 Anserini +test151 Q0 5044581 13 8.842757 Anserini +test151 Q0 19145421 14 8.775002 Anserini +test151 Q0 4364675 15 8.752837 Anserini +test151 Q0 17625932 16 8.746461 Anserini +test151 Q0 10509245 17 8.725673 Anserini +test151 Q0 6969126 18 8.725673 Anserini +test151 Q0 16001378 19 8.723164 Anserini +test151 Q0 19659317 20 8.660165 Anserini +test151 Q0 12409459 21 8.628504 Anserini +test151 Q0 11407826 22 8.610109 Anserini +test151 Q0 15723931 23 8.520317 Anserini +test151 Q0 19145419 24 8.471876 Anserini +test151 Q0 7169351 25 8.461234 Anserini +test151 Q0 17785863 26 8.437153 Anserini +test151 Q0 3495953 27 8.402712 Anserini +test151 Q0 16001380 28 8.402712 Anserini +test151 Q0 8500364 29 8.402712 Anserini +test151 Q0 16001373 30 8.402712 Anserini +test1510 Q0 1488850 1 12.135410 Anserini +test1510 Q0 3674012 2 11.677134 Anserini +test1510 Q0 280021 3 11.192031 Anserini +test1510 Q0 12539125 4 11.165942 Anserini +test1510 Q0 12539134 5 11.164946 Anserini +test1510 Q0 1488863 6 10.929524 Anserini +test1510 Q0 190054 7 10.540342 Anserini +test1510 Q0 16726673 8 10.492654 Anserini +test1510 Q0 280023 9 10.488849 Anserini +test1510 Q0 12539132 10 10.342412 Anserini +test1510 Q0 407888 11 10.297573 Anserini +test1510 Q0 17922929 12 10.263259 Anserini +test1510 Q0 1488851 13 10.187510 Anserini +test1510 Q0 21628 14 10.184274 Anserini +test1510 Q0 18998129 15 10.087654 Anserini +test1510 Q0 8847989 16 9.908463 Anserini +test1510 Q0 5016 17 9.857265 Anserini +test1510 Q0 8847995 18 9.661193 Anserini +test1510 Q0 280040 19 9.634232 Anserini +test1510 Q0 13837537 20 9.598636 Anserini +test1510 Q0 12126875 21 9.525684 Anserini +test1510 Q0 1720294 22 9.506574 Anserini +test1510 Q0 12539139 23 9.496800 Anserini +test1510 Q0 4357420 24 9.467904 Anserini +test1510 Q0 5007695 25 9.428190 Anserini +test1510 Q0 4300102 26 9.424345 Anserini +test1510 Q0 12539120 27 9.363506 Anserini +test1510 Q0 15362499 28 9.346898 Anserini +test1510 Q0 18955302 29 9.341588 Anserini +test1510 Q0 619043 30 9.312974 Anserini +test1511 Q0 1194503 1 13.937563 Anserini +test1511 Q0 1194505 2 13.178692 Anserini +test1511 Q0 1194509 3 13.032469 Anserini +test1511 Q0 1227793 4 12.644521 Anserini +test1511 Q0 1227802 5 12.496750 Anserini +test1511 Q0 3209426 6 12.439080 Anserini +test1511 Q0 13573930 7 12.339426 Anserini +test1511 Q0 1190499 8 12.290328 Anserini +test1511 Q0 1190594 9 12.179691 Anserini +test1511 Q0 5262200 10 12.077463 Anserini +test1511 Q0 300959 11 12.070109 Anserini +test1511 Q0 6561296 12 12.063208 Anserini +test1511 Q0 1190462 13 12.015253 Anserini +test1511 Q0 1192042 14 11.940031 Anserini +test1511 Q0 3209430 15 11.893956 Anserini +test1511 Q0 1228037 16 11.880611 Anserini +test1511 Q0 1239417 17 11.875887 Anserini +test1511 Q0 2527741 18 11.870675 Anserini +test1511 Q0 8256755 19 11.867822 Anserini +test1511 Q0 1229979 20 11.866083 Anserini +test1511 Q0 1229998 21 11.866083 Anserini +test1511 Q0 13573931 22 11.858318 Anserini +test1511 Q0 1596209 23 11.848375 Anserini +test1511 Q0 402360 24 11.679828 Anserini +test1511 Q0 913430 25 11.626816 Anserini +test1511 Q0 939128 26 11.626816 Anserini +test1511 Q0 11797029 27 11.620284 Anserini +test1511 Q0 11797034 28 11.620284 Anserini +test1511 Q0 1228032 29 11.613008 Anserini +test1511 Q0 1191521 30 11.601826 Anserini +test1512 Q0 17284308 1 14.949345 Anserini +test1512 Q0 14159346 2 14.893351 Anserini +test1512 Q0 15242768 3 14.590701 Anserini +test1512 Q0 16927107 4 13.658804 Anserini +test1512 Q0 12662677 5 13.611226 Anserini +test1512 Q0 16927106 6 13.413221 Anserini +test1512 Q0 6169762 7 13.238248 Anserini +test1512 Q0 14159409 8 13.093079 Anserini +test1512 Q0 14159356 9 12.917562 Anserini +test1512 Q0 10236609 10 12.846193 Anserini +test1512 Q0 2150745 11 12.745411 Anserini +test1512 Q0 16943176 12 12.563225 Anserini +test1512 Q0 18607740 13 12.447591 Anserini +test1512 Q0 14159371 14 12.430338 Anserini +test1512 Q0 3057732 15 12.425052 Anserini +test1512 Q0 14159374 16 12.273025 Anserini +test1512 Q0 14159352 17 12.257411 Anserini +test1512 Q0 2150746 18 12.255003 Anserini +test1512 Q0 9098977 19 12.197288 Anserini +test1512 Q0 19050265 20 12.164968 Anserini +test1512 Q0 9098976 21 12.126913 Anserini +test1512 Q0 8623356 22 11.966274 Anserini +test1512 Q0 3150069 23 11.965345 Anserini +test1512 Q0 3503170 24 11.838614 Anserini +test1512 Q0 2190655 25 11.826338 Anserini +test1512 Q0 19678041 26 11.803128 Anserini +test1512 Q0 16572660 27 11.685069 Anserini +test1512 Q0 327038 28 11.596012 Anserini +test1512 Q0 14159355 29 11.551660 Anserini +test1512 Q0 15299007 30 11.459505 Anserini +test1513 Q0 17779971 1 12.104950 Anserini +test1513 Q0 17779970 2 11.666644 Anserini +test1513 Q0 11550044 3 11.598544 Anserini +test1513 Q0 8774343 4 10.983160 Anserini +test1513 Q0 3319942 5 10.792669 Anserini +test1513 Q0 15126017 6 10.778878 Anserini +test1513 Q0 1687178 7 10.770716 Anserini +test1513 Q0 7945294 8 10.580338 Anserini +test1513 Q0 19502741 9 10.349712 Anserini +test1513 Q0 7981521 10 10.323660 Anserini +test1513 Q0 8455594 11 10.302423 Anserini +test1513 Q0 4571992 12 10.286734 Anserini +test1513 Q0 9433228 13 10.241132 Anserini +test1513 Q0 8170391 14 10.213459 Anserini +test1513 Q0 1448502 15 10.132642 Anserini +test1513 Q0 8681400 16 10.094994 Anserini +test1513 Q0 8452338 17 10.012604 Anserini +test1513 Q0 11638994 18 10.002989 Anserini +test1513 Q0 4459921 19 9.982260 Anserini +test1513 Q0 7596056 20 9.976567 Anserini +test1513 Q0 1835362 21 9.966063 Anserini +test1513 Q0 16146266 22 9.921548 Anserini +test1513 Q0 6203805 23 9.915535 Anserini +test1513 Q0 14012831 24 9.897267 Anserini +test1513 Q0 9521350 25 9.888950 Anserini +test1513 Q0 19718076 26 9.878369 Anserini +test1513 Q0 15530561 27 9.840191 Anserini +test1513 Q0 14359481 28 9.828512 Anserini +test1513 Q0 6501499 29 9.825898 Anserini +test1513 Q0 1468060 30 9.825898 Anserini +test1514 Q0 12711881 1 17.030725 Anserini +test1514 Q0 12711875 2 15.604689 Anserini +test1514 Q0 12711879 3 11.954144 Anserini +test1514 Q0 12711876 4 11.396528 Anserini +test1514 Q0 7672272 5 11.159755 Anserini +test1514 Q0 7434064 6 10.882931 Anserini +test1514 Q0 12711878 7 10.685135 Anserini +test1514 Q0 13996559 8 10.388417 Anserini +test1514 Q0 13996557 9 10.388417 Anserini +test1514 Q0 18345505 10 10.358163 Anserini +test1514 Q0 18226344 11 10.276156 Anserini +test1514 Q0 8855799 12 10.164931 Anserini +test1514 Q0 11371511 13 10.164931 Anserini +test1514 Q0 11581914 14 10.100235 Anserini +test1514 Q0 16875103 15 10.099066 Anserini +test1514 Q0 6788277 16 10.057982 Anserini +test1514 Q0 16435893 17 9.907028 Anserini +test1514 Q0 4757595 18 9.804344 Anserini +test1514 Q0 12871345 19 9.804344 Anserini +test1514 Q0 17016272 20 9.783887 Anserini +test1514 Q0 7046882 21 9.743953 Anserini +test1514 Q0 18535329 22 9.737952 Anserini +test1514 Q0 6788276 23 9.688266 Anserini +test1514 Q0 8190026 24 9.686336 Anserini +test1514 Q0 1369301 25 9.672570 Anserini +test1514 Q0 20116650 26 9.589482 Anserini +test1514 Q0 6847071 27 9.564638 Anserini +test1514 Q0 20116646 28 9.515599 Anserini +test1514 Q0 6788278 29 9.489782 Anserini +test1514 Q0 20091502 30 9.476509 Anserini +test1515 Q0 552095 1 13.349669 Anserini +test1515 Q0 12982302 2 12.775904 Anserini +test1515 Q0 552150 3 12.709992 Anserini +test1515 Q0 765568 4 12.487154 Anserini +test1515 Q0 17820579 5 12.481838 Anserini +test1515 Q0 7503713 6 12.452402 Anserini +test1515 Q0 2433615 7 12.332014 Anserini +test1515 Q0 552119 8 12.279512 Anserini +test1515 Q0 310053 9 12.208815 Anserini +test1515 Q0 16942347 10 12.089177 Anserini +test1515 Q0 552097 11 11.998652 Anserini +test1515 Q0 16604582 12 11.994331 Anserini +test1515 Q0 17769541 13 11.926380 Anserini +test1515 Q0 11145857 14 11.819468 Anserini +test1515 Q0 17820566 15 11.811954 Anserini +test1515 Q0 15127576 16 11.784598 Anserini +test1515 Q0 6530935 17 11.779980 Anserini +test1515 Q0 17820552 18 11.742106 Anserini +test1515 Q0 552132 19 11.720814 Anserini +test1515 Q0 20175162 20 11.701797 Anserini +test1515 Q0 17820561 21 11.680843 Anserini +test1515 Q0 16942349 22 11.671570 Anserini +test1515 Q0 2433616 23 11.670326 Anserini +test1515 Q0 16604575 24 11.646809 Anserini +test1515 Q0 17772082 25 11.627633 Anserini +test1515 Q0 17772076 26 11.627633 Anserini +test1515 Q0 20934815 27 11.624065 Anserini +test1515 Q0 3236753 28 11.591081 Anserini +test1515 Q0 2781853 29 11.591081 Anserini +test1515 Q0 552111 30 11.584263 Anserini +test1516 Q0 7495297 1 18.085365 Anserini +test1516 Q0 5181318 2 17.239717 Anserini +test1516 Q0 5181317 3 16.853855 Anserini +test1516 Q0 5181305 4 16.853855 Anserini +test1516 Q0 9353429 5 16.775698 Anserini +test1516 Q0 7495319 6 16.762211 Anserini +test1516 Q0 7495218 7 16.582033 Anserini +test1516 Q0 9353428 8 15.807844 Anserini +test1516 Q0 5181316 9 15.807844 Anserini +test1516 Q0 16574478 10 15.807844 Anserini +test1516 Q0 16574477 11 15.807844 Anserini +test1516 Q0 3215993 12 15.728786 Anserini +test1516 Q0 7495314 13 15.727185 Anserini +test1516 Q0 10240599 14 15.568312 Anserini +test1516 Q0 10240622 15 15.568312 Anserini +test1516 Q0 7495303 16 15.345635 Anserini +test1516 Q0 7495292 17 15.320930 Anserini +test1516 Q0 7495307 18 15.019856 Anserini +test1516 Q0 7495311 19 14.907630 Anserini +test1516 Q0 7495252 20 14.811160 Anserini +test1516 Q0 7495280 21 14.752810 Anserini +test1516 Q0 7495251 22 14.701354 Anserini +test1516 Q0 7495318 23 14.574599 Anserini +test1516 Q0 18667222 24 14.471953 Anserini +test1516 Q0 7495266 25 14.421672 Anserini +test1516 Q0 10240609 26 14.370743 Anserini +test1516 Q0 10240602 27 14.370743 Anserini +test1516 Q0 10240604 28 14.370743 Anserini +test1516 Q0 20913133 29 14.370743 Anserini +test1516 Q0 15533246 30 14.370558 Anserini +test1517 Q0 20235331 1 14.769907 Anserini +test1517 Q0 7458099 2 12.817050 Anserini +test1517 Q0 20235332 3 12.121341 Anserini +test1517 Q0 5625789 4 12.089960 Anserini +test1517 Q0 8666708 5 11.899806 Anserini +test1517 Q0 20227709 6 11.880240 Anserini +test1517 Q0 20499017 7 11.684768 Anserini +test1517 Q0 12881535 8 11.664527 Anserini +test1517 Q0 20499011 9 11.562868 Anserini +test1517 Q0 8792996 10 11.548509 Anserini +test1517 Q0 16834127 11 11.520884 Anserini +test1517 Q0 16834122 12 11.440916 Anserini +test1517 Q0 5433695 13 11.252321 Anserini +test1517 Q0 11690817 14 11.153537 Anserini +test1517 Q0 1601907 15 11.126618 Anserini +test1517 Q0 14346310 16 11.106885 Anserini +test1517 Q0 4998178 17 11.062346 Anserini +test1517 Q0 4998182 18 11.062346 Anserini +test1517 Q0 15354012 19 10.993486 Anserini +test1517 Q0 402649 20 10.911358 Anserini +test1517 Q0 19190260 21 10.894789 Anserini +test1517 Q0 3524124 22 10.853935 Anserini +test1517 Q0 3732925 23 10.853839 Anserini +test1517 Q0 4531493 24 10.850957 Anserini +test1517 Q0 5015857 25 10.806908 Anserini +test1517 Q0 3526764 26 10.800754 Anserini +test1517 Q0 1799647 27 10.780944 Anserini +test1517 Q0 8360888 28 10.758018 Anserini +test1517 Q0 18876655 29 10.750830 Anserini +test1517 Q0 16782210 30 10.733504 Anserini +test1518 Q0 18652158 1 14.816906 Anserini +test1518 Q0 20217816 2 14.589404 Anserini +test1518 Q0 19862360 3 14.004851 Anserini +test1518 Q0 2432740 4 13.841775 Anserini +test1518 Q0 4758592 5 13.835802 Anserini +test1518 Q0 20362605 6 13.498550 Anserini +test1518 Q0 19862358 7 13.470199 Anserini +test1518 Q0 20095287 8 13.440001 Anserini +test1518 Q0 10623502 9 13.413574 Anserini +test1518 Q0 18477952 10 13.395320 Anserini +test1518 Q0 20000049 11 13.313421 Anserini +test1518 Q0 18652163 12 13.299512 Anserini +test1518 Q0 7235625 13 13.195477 Anserini +test1518 Q0 3342045 14 13.113425 Anserini +test1518 Q0 19808979 15 13.105638 Anserini +test1518 Q0 15295178 16 13.073558 Anserini +test1518 Q0 9570169 17 13.057308 Anserini +test1518 Q0 18870018 18 13.033218 Anserini +test1518 Q0 17452262 19 13.003786 Anserini +test1518 Q0 13698297 20 13.000308 Anserini +test1518 Q0 18372758 21 12.907905 Anserini +test1518 Q0 13698290 22 12.892587 Anserini +test1518 Q0 3342358 23 12.868707 Anserini +test1518 Q0 1540348 24 12.867120 Anserini +test1518 Q0 1527953 25 12.817174 Anserini +test1518 Q0 14665049 26 12.813042 Anserini +test1518 Q0 20249682 27 12.791378 Anserini +test1518 Q0 20275810 28 12.785699 Anserini +test1518 Q0 19651516 29 12.785326 Anserini +test1518 Q0 20218816 30 12.763280 Anserini +test1519 Q0 4051156 1 12.098299 Anserini +test1519 Q0 2766516 2 11.504451 Anserini +test1519 Q0 3187935 3 10.759518 Anserini +test1519 Q0 18727300 4 10.721506 Anserini +test1519 Q0 8640061 5 10.696016 Anserini +test1519 Q0 16347875 6 10.687574 Anserini +test1519 Q0 20327545 7 10.622461 Anserini +test1519 Q0 19708969 8 10.609825 Anserini +test1519 Q0 7697487 9 10.606606 Anserini +test1519 Q0 4051157 10 10.596881 Anserini +test1519 Q0 13100917 11 10.563490 Anserini +test1519 Q0 13100916 12 10.526583 Anserini +test1519 Q0 2766524 13 10.488598 Anserini +test1519 Q0 18836225 14 10.287892 Anserini +test1519 Q0 15077668 15 10.272902 Anserini +test1519 Q0 20327547 16 10.250214 Anserini +test1519 Q0 10244003 17 10.196728 Anserini +test1519 Q0 19708973 18 10.191540 Anserini +test1519 Q0 18533007 19 10.119692 Anserini +test1519 Q0 16043052 20 10.096725 Anserini +test1519 Q0 18182019 21 10.082166 Anserini +test1519 Q0 18836227 22 10.072181 Anserini +test1519 Q0 3437813 23 10.031914 Anserini +test1519 Q0 3437830 24 10.031914 Anserini +test1519 Q0 14489061 25 10.030711 Anserini +test1519 Q0 3781858 26 10.030711 Anserini +test1519 Q0 18836228 27 10.002665 Anserini +test1519 Q0 18354137 28 9.952033 Anserini +test1519 Q0 15284944 29 9.947477 Anserini +test1519 Q0 16669126 30 9.937499 Anserini +test152 Q0 4171747 1 16.331532 Anserini +test152 Q0 2907501 2 16.003794 Anserini +test152 Q0 4169751 3 14.440219 Anserini +test152 Q0 10180969 4 14.339140 Anserini +test152 Q0 13271983 5 14.094931 Anserini +test152 Q0 20768510 6 14.080044 Anserini +test152 Q0 20401143 7 14.023629 Anserini +test152 Q0 8326188 8 13.934669 Anserini +test152 Q0 4200548 9 13.801476 Anserini +test152 Q0 7193193 10 13.660948 Anserini +test152 Q0 5748404 11 13.553275 Anserini +test152 Q0 11021289 12 13.553271 Anserini +test152 Q0 4171953 13 13.296214 Anserini +test152 Q0 183847 14 13.219025 Anserini +test152 Q0 17375181 15 13.195531 Anserini +test152 Q0 17401685 16 13.177045 Anserini +test152 Q0 10180884 17 13.125958 Anserini +test152 Q0 4200521 18 13.108404 Anserini +test152 Q0 8036298 19 12.957087 Anserini +test152 Q0 20768490 20 12.939494 Anserini +test152 Q0 4866858 21 12.898571 Anserini +test152 Q0 19533454 22 12.688222 Anserini +test152 Q0 4200526 23 12.587336 Anserini +test152 Q0 10316342 24 12.571625 Anserini +test152 Q0 10180970 25 12.546528 Anserini +test152 Q0 10679652 26 12.538424 Anserini +test152 Q0 20012298 27 12.521476 Anserini +test152 Q0 4200527 28 12.485273 Anserini +test152 Q0 4200522 29 12.483106 Anserini +test152 Q0 18990192 30 12.425814 Anserini +test1520 Q0 18925636 1 14.147019 Anserini +test1520 Q0 2092759 2 14.147015 Anserini +test1520 Q0 14711836 3 13.814239 Anserini +test1520 Q0 18925634 4 13.758245 Anserini +test1520 Q0 14711867 5 13.507152 Anserini +test1520 Q0 496053 6 13.454687 Anserini +test1520 Q0 10748979 7 13.401399 Anserini +test1520 Q0 3767709 8 13.390495 Anserini +test1520 Q0 10315145 9 13.348048 Anserini +test1520 Q0 2227480 10 13.331014 Anserini +test1520 Q0 2227452 11 13.329508 Anserini +test1520 Q0 12430997 12 13.173286 Anserini +test1520 Q0 3578652 13 13.106157 Anserini +test1520 Q0 8275267 14 12.970839 Anserini +test1520 Q0 14277420 15 12.937887 Anserini +test1520 Q0 15339598 16 12.915793 Anserini +test1520 Q0 11798415 17 12.895623 Anserini +test1520 Q0 10026911 18 12.862557 Anserini +test1520 Q0 3909898 19 12.860394 Anserini +test1520 Q0 14728704 20 12.827513 Anserini +test1520 Q0 13569437 21 12.718656 Anserini +test1520 Q0 3578595 22 12.497716 Anserini +test1520 Q0 2041794 23 12.481039 Anserini +test1520 Q0 10315144 24 12.456731 Anserini +test1520 Q0 2041795 25 12.452370 Anserini +test1520 Q0 4643452 26 12.425498 Anserini +test1520 Q0 18925635 27 12.424740 Anserini +test1520 Q0 7780576 28 12.394102 Anserini +test1520 Q0 19405255 29 12.382135 Anserini +test1520 Q0 513798 30 12.371445 Anserini +test1521 Q0 461111 1 13.214149 Anserini +test1521 Q0 8374926 2 12.882168 Anserini +test1521 Q0 12064500 3 12.654640 Anserini +test1521 Q0 14585946 4 11.940025 Anserini +test1521 Q0 4897249 5 11.811634 Anserini +test1521 Q0 14585931 6 11.810974 Anserini +test1521 Q0 461196 7 11.639766 Anserini +test1521 Q0 14585947 8 11.617341 Anserini +test1521 Q0 18475868 9 11.460428 Anserini +test1521 Q0 697380 10 11.450331 Anserini +test1521 Q0 15701330 11 11.303802 Anserini +test1521 Q0 3199216 12 11.211495 Anserini +test1521 Q0 1847721 13 11.038730 Anserini +test1521 Q0 2496449 14 11.038730 Anserini +test1521 Q0 8374925 15 10.962595 Anserini +test1521 Q0 16104681 16 10.848627 Anserini +test1521 Q0 4733017 17 10.823509 Anserini +test1521 Q0 9040356 18 10.710756 Anserini +test1521 Q0 2476302 19 10.637085 Anserini +test1521 Q0 12905458 20 10.637085 Anserini +test1521 Q0 1828046 21 10.608358 Anserini +test1521 Q0 6954114 22 10.438572 Anserini +test1521 Q0 4720834 23 10.421197 Anserini +test1521 Q0 1689269 24 10.402396 Anserini +test1521 Q0 15892045 25 10.280044 Anserini +test1521 Q0 8376693 26 10.155483 Anserini +test1521 Q0 4374849 27 10.108894 Anserini +test1521 Q0 63195 28 10.104666 Anserini +test1521 Q0 14479075 29 10.029836 Anserini +test1521 Q0 461179 30 9.981829 Anserini +test1522 Q0 7152290 1 13.024918 Anserini +test1522 Q0 1379510 2 13.005098 Anserini +test1522 Q0 5234269 3 12.773146 Anserini +test1522 Q0 18202194 4 12.687456 Anserini +test1522 Q0 81693 5 12.634600 Anserini +test1522 Q0 3061556 6 12.490022 Anserini +test1522 Q0 4343761 7 12.441963 Anserini +test1522 Q0 2770433 8 12.370153 Anserini +test1522 Q0 3016275 9 12.280674 Anserini +test1522 Q0 2044110 10 12.238432 Anserini +test1522 Q0 18908627 11 12.090853 Anserini +test1522 Q0 13729304 12 12.090569 Anserini +test1522 Q0 19369610 13 11.901765 Anserini +test1522 Q0 9369817 14 11.850721 Anserini +test1522 Q0 449016 15 11.805354 Anserini +test1522 Q0 117028 16 11.798128 Anserini +test1522 Q0 261960 17 11.569345 Anserini +test1522 Q0 2874013 18 11.516788 Anserini +test1522 Q0 13283191 19 11.461016 Anserini +test1522 Q0 2003819 20 11.459658 Anserini +test1522 Q0 6377399 21 11.429192 Anserini +test1522 Q0 10402570 22 11.354898 Anserini +test1522 Q0 16951299 23 11.350264 Anserini +test1522 Q0 16387153 24 11.307012 Anserini +test1522 Q0 3061578 25 11.258644 Anserini +test1522 Q0 1752042 26 11.250497 Anserini +test1522 Q0 2273786 27 11.243004 Anserini +test1522 Q0 1926005 28 11.179752 Anserini +test1522 Q0 5653049 29 11.066461 Anserini +test1522 Q0 7483601 30 11.057810 Anserini +test1523 Q0 11420259 1 11.954987 Anserini +test1523 Q0 11521515 2 11.470407 Anserini +test1523 Q0 19269292 3 11.349932 Anserini +test1523 Q0 19000829 4 11.122528 Anserini +test1523 Q0 11521526 5 11.114621 Anserini +test1523 Q0 7550250 6 11.088278 Anserini +test1523 Q0 4213490 7 11.065933 Anserini +test1523 Q0 4174842 8 11.050128 Anserini +test1523 Q0 19269293 9 11.017384 Anserini +test1523 Q0 13288895 10 10.970491 Anserini +test1523 Q0 11521521 11 10.955720 Anserini +test1523 Q0 5795534 12 10.848842 Anserini +test1523 Q0 11521513 13 10.834087 Anserini +test1523 Q0 11521530 14 10.737242 Anserini +test1523 Q0 4213475 15 10.679878 Anserini +test1523 Q0 11521508 16 10.620789 Anserini +test1523 Q0 11521519 17 10.586980 Anserini +test1523 Q0 15206093 18 10.586842 Anserini +test1523 Q0 9508580 19 10.561515 Anserini +test1523 Q0 19700007 20 10.499815 Anserini +test1523 Q0 11521528 21 10.450273 Anserini +test1523 Q0 11521520 22 10.422809 Anserini +test1523 Q0 376057 23 10.416693 Anserini +test1523 Q0 4639810 24 10.382147 Anserini +test1523 Q0 20423930 25 10.351283 Anserini +test1523 Q0 6553508 26 10.311201 Anserini +test1523 Q0 284586 27 10.296434 Anserini +test1523 Q0 19269301 28 10.278683 Anserini +test1523 Q0 11450176 29 10.275261 Anserini +test1523 Q0 20130660 30 10.273510 Anserini +test1524 Q0 1486701 1 14.159735 Anserini +test1524 Q0 1486708 2 13.053102 Anserini +test1524 Q0 1486704 3 13.021964 Anserini +test1524 Q0 1486703 4 12.919369 Anserini +test1524 Q0 7757500 5 12.727153 Anserini +test1524 Q0 11122793 6 12.722736 Anserini +test1524 Q0 8070938 7 12.612807 Anserini +test1524 Q0 8070936 8 12.350822 Anserini +test1524 Q0 1486702 9 12.292885 Anserini +test1524 Q0 11881071 10 12.111530 Anserini +test1524 Q0 291281 11 12.070588 Anserini +test1524 Q0 12466995 12 12.045986 Anserini +test1524 Q0 20515413 13 11.968996 Anserini +test1524 Q0 12700692 14 11.953115 Anserini +test1524 Q0 8412275 15 11.947903 Anserini +test1524 Q0 19039688 16 11.888194 Anserini +test1524 Q0 2764569 17 11.883256 Anserini +test1524 Q0 2537512 18 11.809325 Anserini +test1524 Q0 18785315 19 11.703220 Anserini +test1524 Q0 1486705 20 11.686620 Anserini +test1524 Q0 12159698 21 11.653078 Anserini +test1524 Q0 13421827 22 11.648727 Anserini +test1524 Q0 9971577 23 11.648727 Anserini +test1524 Q0 4744851 24 11.632472 Anserini +test1524 Q0 8070937 25 11.617397 Anserini +test1524 Q0 6304979 26 11.560680 Anserini +test1524 Q0 7757501 27 11.507535 Anserini +test1524 Q0 4744849 28 11.485342 Anserini +test1524 Q0 19902021 29 11.472191 Anserini +test1524 Q0 12466989 30 11.471704 Anserini +test1525 Q0 7616881 1 14.341022 Anserini +test1525 Q0 12959771 2 11.968405 Anserini +test1525 Q0 8792343 3 11.720963 Anserini +test1525 Q0 219496 4 11.713738 Anserini +test1525 Q0 8792344 5 11.649367 Anserini +test1525 Q0 19267464 6 11.532149 Anserini +test1525 Q0 5314174 7 11.495757 Anserini +test1525 Q0 219520 8 11.469686 Anserini +test1525 Q0 13620445 9 11.067614 Anserini +test1525 Q0 498037 10 11.053885 Anserini +test1525 Q0 9809761 11 10.828428 Anserini +test1525 Q0 2422667 12 10.816302 Anserini +test1525 Q0 10207141 13 10.538523 Anserini +test1525 Q0 10079664 14 10.536875 Anserini +test1525 Q0 17033384 15 10.516503 Anserini +test1525 Q0 4581712 16 10.359064 Anserini +test1525 Q0 8567581 17 10.194543 Anserini +test1525 Q0 7585164 18 10.177755 Anserini +test1525 Q0 3217775 19 10.177755 Anserini +test1525 Q0 3480470 20 10.129108 Anserini +test1525 Q0 9479125 21 10.068311 Anserini +test1525 Q0 219515 22 10.054758 Anserini +test1525 Q0 6551647 23 9.965704 Anserini +test1525 Q0 6551651 24 9.965704 Anserini +test1525 Q0 10065189 25 9.965704 Anserini +test1525 Q0 7743532 26 9.952107 Anserini +test1525 Q0 7116250 27 9.873475 Anserini +test1525 Q0 332007 28 9.873475 Anserini +test1525 Q0 3480453 29 9.865635 Anserini +test1525 Q0 17092203 30 9.853223 Anserini +test1526 Q0 394974 1 13.997929 Anserini +test1526 Q0 394783 2 13.820771 Anserini +test1526 Q0 10272717 3 13.805842 Anserini +test1526 Q0 7002539 4 13.778182 Anserini +test1526 Q0 394623 5 13.709425 Anserini +test1526 Q0 4570879 6 13.624912 Anserini +test1526 Q0 394776 7 13.527345 Anserini +test1526 Q0 376041 8 13.504831 Anserini +test1526 Q0 313774 9 13.502760 Anserini +test1526 Q0 18798748 10 13.460133 Anserini +test1526 Q0 20469780 11 13.306592 Anserini +test1526 Q0 19807797 12 13.214610 Anserini +test1526 Q0 11856836 13 13.152023 Anserini +test1526 Q0 17555413 14 13.143834 Anserini +test1526 Q0 20468759 15 13.107353 Anserini +test1526 Q0 6224943 16 13.048285 Anserini +test1526 Q0 5799140 17 12.945608 Anserini +test1526 Q0 7167356 18 12.942645 Anserini +test1526 Q0 375991 19 12.897608 Anserini +test1526 Q0 5201049 20 12.891983 Anserini +test1526 Q0 394221 21 12.881863 Anserini +test1526 Q0 376050 22 12.872170 Anserini +test1526 Q0 10271205 23 12.811736 Anserini +test1526 Q0 8352905 24 12.809632 Anserini +test1526 Q0 12066102 25 12.798141 Anserini +test1526 Q0 981648 26 12.793563 Anserini +test1526 Q0 14383345 27 12.761604 Anserini +test1526 Q0 4245797 28 12.695721 Anserini +test1526 Q0 20550652 29 12.691429 Anserini +test1526 Q0 376006 30 12.685152 Anserini +test1527 Q0 20748960 1 10.262897 Anserini +test1527 Q0 5877815 2 10.064294 Anserini +test1527 Q0 212536 3 10.004867 Anserini +test1527 Q0 15932298 4 9.761589 Anserini +test1527 Q0 19806859 5 9.688272 Anserini +test1527 Q0 9380983 6 9.520223 Anserini +test1527 Q0 7523611 7 9.520118 Anserini +test1527 Q0 2520396 8 9.511142 Anserini +test1527 Q0 503777 9 9.343126 Anserini +test1527 Q0 11968712 10 9.251973 Anserini +test1527 Q0 17531682 11 9.196655 Anserini +test1527 Q0 12647403 12 9.155520 Anserini +test1527 Q0 5394941 13 9.133269 Anserini +test1527 Q0 13114096 14 9.110292 Anserini +test1527 Q0 3372297 15 9.100534 Anserini +test1527 Q0 13110230 16 9.099773 Anserini +test1527 Q0 9225922 17 9.099773 Anserini +test1527 Q0 15916237 18 9.021641 Anserini +test1527 Q0 503783 19 9.003449 Anserini +test1527 Q0 9157805 20 8.994534 Anserini +test1527 Q0 18473625 21 8.991426 Anserini +test1527 Q0 12176339 22 8.949199 Anserini +test1527 Q0 9157809 23 8.922730 Anserini +test1527 Q0 11228443 24 8.910892 Anserini +test1527 Q0 5775253 25 8.906399 Anserini +test1527 Q0 18125797 26 8.902815 Anserini +test1527 Q0 12647404 27 8.885250 Anserini +test1527 Q0 11228108 28 8.884145 Anserini +test1527 Q0 11228161 29 8.861341 Anserini +test1527 Q0 2105880 30 8.852140 Anserini +test1528 Q0 410107 1 9.963811 Anserini +test1528 Q0 13446980 2 9.938093 Anserini +test1528 Q0 686446 3 9.865386 Anserini +test1528 Q0 732773 4 9.641523 Anserini +test1528 Q0 13456410 5 9.628451 Anserini +test1528 Q0 4367389 6 9.628281 Anserini +test1528 Q0 741257 7 9.577427 Anserini +test1528 Q0 1840983 8 9.553620 Anserini +test1528 Q0 4367382 9 9.535755 Anserini +test1528 Q0 694156 10 9.351387 Anserini +test1528 Q0 6763686 11 9.349968 Anserini +test1528 Q0 18000047 12 9.300641 Anserini +test1528 Q0 694154 13 9.288454 Anserini +test1528 Q0 1485939 14 9.265977 Anserini +test1528 Q0 13446987 15 9.185265 Anserini +test1528 Q0 2460945 16 9.185265 Anserini +test1528 Q0 17720003 17 9.111329 Anserini +test1528 Q0 208416 18 9.072856 Anserini +test1528 Q0 694176 19 9.069889 Anserini +test1528 Q0 410109 20 9.011171 Anserini +test1528 Q0 732574 21 8.988918 Anserini +test1528 Q0 2770308 22 8.988918 Anserini +test1528 Q0 13446973 23 8.941081 Anserini +test1528 Q0 16876834 24 8.931766 Anserini +test1528 Q0 402239 25 8.931766 Anserini +test1528 Q0 12007878 26 8.878551 Anserini +test1528 Q0 12007875 27 8.875426 Anserini +test1528 Q0 17952054 28 8.838223 Anserini +test1528 Q0 402240 29 8.816891 Anserini +test1528 Q0 17720008 30 8.814476 Anserini +test1529 Q0 1670021 1 19.235332 Anserini +test1529 Q0 20734672 2 19.206301 Anserini +test1529 Q0 7624375 3 18.765789 Anserini +test1529 Q0 14605319 4 18.717882 Anserini +test1529 Q0 14605320 5 18.717882 Anserini +test1529 Q0 1611547 6 18.662802 Anserini +test1529 Q0 9968586 7 18.625784 Anserini +test1529 Q0 8787122 8 18.513613 Anserini +test1529 Q0 1670101 9 18.412674 Anserini +test1529 Q0 20734674 10 18.380352 Anserini +test1529 Q0 1611546 11 18.306641 Anserini +test1529 Q0 20734671 12 18.251976 Anserini +test1529 Q0 15632586 13 18.223537 Anserini +test1529 Q0 20486043 14 17.836166 Anserini +test1529 Q0 9968576 15 17.597002 Anserini +test1529 Q0 1670081 16 17.577143 Anserini +test1529 Q0 14229958 17 17.522394 Anserini +test1529 Q0 8922036 18 17.522394 Anserini +test1529 Q0 14229957 19 17.452576 Anserini +test1529 Q0 20486044 20 17.452576 Anserini +test1529 Q0 15758318 21 17.373800 Anserini +test1529 Q0 15758299 22 17.207993 Anserini +test1529 Q0 8846861 23 17.150970 Anserini +test1529 Q0 13759315 24 17.144094 Anserini +test1529 Q0 13158775 25 17.144094 Anserini +test1529 Q0 8922037 26 17.063868 Anserini +test1529 Q0 15758323 27 17.061911 Anserini +test1529 Q0 11529687 28 16.979473 Anserini +test1529 Q0 8922003 29 16.905632 Anserini +test1529 Q0 13759312 30 16.858442 Anserini +test153 Q0 10313721 1 15.660567 Anserini +test153 Q0 10313774 2 15.172935 Anserini +test153 Q0 247761 3 15.095181 Anserini +test153 Q0 10313724 4 15.082450 Anserini +test153 Q0 10313737 5 14.807051 Anserini +test153 Q0 10313728 6 14.540120 Anserini +test153 Q0 10313727 7 14.384853 Anserini +test153 Q0 10313718 8 14.253772 Anserini +test153 Q0 9677846 9 14.017654 Anserini +test153 Q0 10313761 10 14.005552 Anserini +test153 Q0 17439215 11 14.001684 Anserini +test153 Q0 17439222 12 14.001684 Anserini +test153 Q0 247803 13 13.984480 Anserini +test153 Q0 10313769 14 13.721082 Anserini +test153 Q0 10462604 15 13.643806 Anserini +test153 Q0 10462603 16 13.585974 Anserini +test153 Q0 10313743 17 13.572065 Anserini +test153 Q0 247766 18 13.553483 Anserini +test153 Q0 17969923 19 13.553483 Anserini +test153 Q0 13322150 20 13.509405 Anserini +test153 Q0 10313731 21 13.493952 Anserini +test153 Q0 16124780 22 13.491882 Anserini +test153 Q0 12343192 23 13.467880 Anserini +test153 Q0 10313771 24 13.447101 Anserini +test153 Q0 10313723 25 13.436257 Anserini +test153 Q0 10313749 26 13.434047 Anserini +test153 Q0 2919714 27 13.394463 Anserini +test153 Q0 10313773 28 13.384872 Anserini +test153 Q0 19171651 29 13.362407 Anserini +test153 Q0 16890036 30 13.303761 Anserini +test1530 Q0 16387138 1 15.212029 Anserini +test1530 Q0 7279749 2 13.471920 Anserini +test1530 Q0 17718645 3 13.310302 Anserini +test1530 Q0 2777279 4 13.213819 Anserini +test1530 Q0 467681 5 13.165992 Anserini +test1530 Q0 121422 6 13.051047 Anserini +test1530 Q0 17718647 7 12.994035 Anserini +test1530 Q0 129712 8 12.899181 Anserini +test1530 Q0 3842612 9 12.846859 Anserini +test1530 Q0 8706383 10 12.704246 Anserini +test1530 Q0 7279751 11 12.658195 Anserini +test1530 Q0 3897496 12 12.639709 Anserini +test1530 Q0 520859 13 12.612480 Anserini +test1530 Q0 1815449 14 12.406271 Anserini +test1530 Q0 16387171 15 12.331571 Anserini +test1530 Q0 11991077 16 12.280382 Anserini +test1530 Q0 7279752 17 12.260635 Anserini +test1530 Q0 6293758 18 12.182207 Anserini +test1530 Q0 467680 19 12.160849 Anserini +test1530 Q0 16387136 20 12.119009 Anserini +test1530 Q0 2052823 21 12.104275 Anserini +test1530 Q0 467750 22 12.015577 Anserini +test1530 Q0 8706388 23 11.996922 Anserini +test1530 Q0 9369813 24 11.913976 Anserini +test1530 Q0 7279739 25 11.875879 Anserini +test1530 Q0 467683 26 11.698273 Anserini +test1530 Q0 8706384 27 11.684881 Anserini +test1530 Q0 7636904 28 11.681367 Anserini +test1530 Q0 467679 29 11.627283 Anserini +test1530 Q0 4143136 30 11.627283 Anserini +test1531 Q0 1631461 1 16.409960 Anserini +test1531 Q0 1631462 2 16.176105 Anserini +test1531 Q0 1631473 3 16.043047 Anserini +test1531 Q0 19619596 4 15.479511 Anserini +test1531 Q0 1631430 5 15.368652 Anserini +test1531 Q0 10882663 6 14.899684 Anserini +test1531 Q0 1631441 7 14.870543 Anserini +test1531 Q0 12013281 8 14.841520 Anserini +test1531 Q0 2193795 9 14.573177 Anserini +test1531 Q0 1631458 10 14.241545 Anserini +test1531 Q0 1631472 11 14.213020 Anserini +test1531 Q0 1631440 12 13.999065 Anserini +test1531 Q0 1631433 13 13.872274 Anserini +test1531 Q0 12427071 14 13.795812 Anserini +test1531 Q0 1631445 15 13.702847 Anserini +test1531 Q0 11490686 16 13.675553 Anserini +test1531 Q0 1631319 17 13.669924 Anserini +test1531 Q0 17742173 18 13.641397 Anserini +test1531 Q0 17742182 19 13.641397 Anserini +test1531 Q0 233940 20 13.614388 Anserini +test1531 Q0 8537999 21 13.595474 Anserini +test1531 Q0 1631308 22 13.492442 Anserini +test1531 Q0 521335 23 13.340744 Anserini +test1531 Q0 6966275 24 13.302109 Anserini +test1531 Q0 1631442 25 13.298594 Anserini +test1531 Q0 1631329 26 13.251657 Anserini +test1531 Q0 20759269 27 13.230288 Anserini +test1531 Q0 5163980 28 13.156985 Anserini +test1531 Q0 4876809 29 13.021159 Anserini +test1531 Q0 396241 30 12.639711 Anserini +test1532 Q0 4673017 1 22.018551 Anserini +test1532 Q0 12377185 2 20.108135 Anserini +test1532 Q0 3358929 3 19.658052 Anserini +test1532 Q0 10616198 4 19.463646 Anserini +test1532 Q0 5003036 5 19.315655 Anserini +test1532 Q0 4673012 6 19.131372 Anserini +test1532 Q0 231052 7 18.994198 Anserini +test1532 Q0 13323006 8 18.262283 Anserini +test1532 Q0 12236209 9 18.010612 Anserini +test1532 Q0 186442 10 18.003016 Anserini +test1532 Q0 482227 11 17.746593 Anserini +test1532 Q0 4356700 12 17.552170 Anserini +test1532 Q0 6550881 13 17.515381 Anserini +test1532 Q0 2253575 14 17.507933 Anserini +test1532 Q0 8898766 15 17.417845 Anserini +test1532 Q0 4673013 16 17.348560 Anserini +test1532 Q0 540160 17 17.300781 Anserini +test1532 Q0 371676 18 17.288776 Anserini +test1532 Q0 11382148 19 17.238554 Anserini +test1532 Q0 7691971 20 17.219252 Anserini +test1532 Q0 33809 21 17.165449 Anserini +test1532 Q0 13323005 22 17.157660 Anserini +test1532 Q0 11727860 23 17.119955 Anserini +test1532 Q0 8898767 24 17.033384 Anserini +test1532 Q0 2627729 25 17.021944 Anserini +test1532 Q0 5591538 26 17.020185 Anserini +test1532 Q0 91403 27 17.019575 Anserini +test1532 Q0 4653615 28 17.010519 Anserini +test1532 Q0 17538712 29 16.882906 Anserini +test1532 Q0 13738930 30 16.864983 Anserini +test1533 Q0 92383 1 11.055160 Anserini +test1533 Q0 2977247 2 10.970959 Anserini +test1533 Q0 10041847 3 10.712847 Anserini +test1533 Q0 2014376 4 10.585468 Anserini +test1533 Q0 2977286 5 10.407168 Anserini +test1533 Q0 2392758 6 10.288891 Anserini +test1533 Q0 2977255 7 10.215453 Anserini +test1533 Q0 17079713 8 10.151611 Anserini +test1533 Q0 2443819 9 10.128829 Anserini +test1533 Q0 7316271 10 10.119746 Anserini +test1533 Q0 5143152 11 10.013991 Anserini +test1533 Q0 2731950 12 9.894131 Anserini +test1533 Q0 7675653 13 9.891760 Anserini +test1533 Q0 2537878 14 9.877182 Anserini +test1533 Q0 19237930 15 9.874740 Anserini +test1533 Q0 667286 16 9.871458 Anserini +test1533 Q0 4100703 17 9.814860 Anserini +test1533 Q0 5086746 18 9.814307 Anserini +test1533 Q0 2537872 19 9.805572 Anserini +test1533 Q0 18112746 20 9.789740 Anserini +test1533 Q0 942860 21 9.758709 Anserini +test1533 Q0 9899326 22 9.695441 Anserini +test1533 Q0 4998455 23 9.675145 Anserini +test1533 Q0 19237934 24 9.667645 Anserini +test1533 Q0 1510038 25 9.614803 Anserini +test1533 Q0 2977285 26 9.585652 Anserini +test1533 Q0 1512063 27 9.565184 Anserini +test1533 Q0 4447161 28 9.496760 Anserini +test1533 Q0 2129267 29 9.493947 Anserini +test1533 Q0 14566245 30 9.479020 Anserini +test1534 Q0 5006898 1 21.706520 Anserini +test1534 Q0 5006905 2 20.545446 Anserini +test1534 Q0 2176329 3 20.071421 Anserini +test1534 Q0 12019808 4 19.977781 Anserini +test1534 Q0 11466787 5 19.439224 Anserini +test1534 Q0 2176330 6 19.397652 Anserini +test1534 Q0 5131291 7 19.231369 Anserini +test1534 Q0 12038131 8 19.070704 Anserini +test1534 Q0 19111383 9 18.978289 Anserini +test1534 Q0 2630574 10 18.967714 Anserini +test1534 Q0 5149683 11 18.905979 Anserini +test1534 Q0 2176344 12 18.891201 Anserini +test1534 Q0 10216707 13 18.781897 Anserini +test1534 Q0 4814885 14 18.752079 Anserini +test1534 Q0 5149679 15 18.713066 Anserini +test1534 Q0 6962513 16 18.683601 Anserini +test1534 Q0 2176349 17 18.637867 Anserini +test1534 Q0 20461241 18 18.634102 Anserini +test1534 Q0 2068919 19 18.531282 Anserini +test1534 Q0 17430317 20 18.456141 Anserini +test1534 Q0 5371910 21 18.429075 Anserini +test1534 Q0 5371901 22 18.429075 Anserini +test1534 Q0 2067708 23 18.422028 Anserini +test1534 Q0 4156544 24 18.420101 Anserini +test1534 Q0 2176338 25 18.350594 Anserini +test1534 Q0 6962510 26 18.318020 Anserini +test1534 Q0 15658370 27 18.316736 Anserini +test1534 Q0 5132851 28 18.281834 Anserini +test1534 Q0 20461256 29 18.265125 Anserini +test1534 Q0 2176392 30 18.230621 Anserini +test1535 Q0 9431007 1 20.271313 Anserini +test1535 Q0 9431008 2 19.132755 Anserini +test1535 Q0 2258565 3 18.794329 Anserini +test1535 Q0 2258499 4 18.780508 Anserini +test1535 Q0 9431009 5 18.285452 Anserini +test1535 Q0 15200539 6 17.754150 Anserini +test1535 Q0 7240728 7 17.136259 Anserini +test1535 Q0 10751560 8 17.071896 Anserini +test1535 Q0 6322107 9 16.711250 Anserini +test1535 Q0 9713060 10 16.658642 Anserini +test1535 Q0 13395346 11 16.586924 Anserini +test1535 Q0 15780696 12 16.586924 Anserini +test1535 Q0 15780709 13 16.565475 Anserini +test1535 Q0 3010768 14 16.514467 Anserini +test1535 Q0 3010767 15 16.439466 Anserini +test1535 Q0 15200545 16 16.073469 Anserini +test1535 Q0 10244835 17 16.055225 Anserini +test1535 Q0 10244815 18 16.055225 Anserini +test1535 Q0 6549635 19 16.024385 Anserini +test1535 Q0 13395360 20 15.976530 Anserini +test1535 Q0 7791763 21 15.565228 Anserini +test1535 Q0 6322115 22 15.446137 Anserini +test1535 Q0 3333455 23 15.385367 Anserini +test1535 Q0 2258534 24 15.273009 Anserini +test1535 Q0 13395347 25 15.250860 Anserini +test1535 Q0 11762658 26 15.187985 Anserini +test1535 Q0 11762659 27 15.187985 Anserini +test1535 Q0 2258541 28 15.176620 Anserini +test1535 Q0 7753958 29 15.160874 Anserini +test1535 Q0 6520164 30 15.138432 Anserini +test1536 Q0 7284627 1 13.289806 Anserini +test1536 Q0 4594684 2 13.076797 Anserini +test1536 Q0 11723683 3 12.604663 Anserini +test1536 Q0 14259792 4 12.529525 Anserini +test1536 Q0 15334740 5 12.506726 Anserini +test1536 Q0 4892098 6 12.068401 Anserini +test1536 Q0 1299416 7 12.059608 Anserini +test1536 Q0 11272525 8 11.956572 Anserini +test1536 Q0 17283919 9 11.911076 Anserini +test1536 Q0 5505853 10 11.801497 Anserini +test1536 Q0 12051290 11 11.728392 Anserini +test1536 Q0 11017520 12 11.613193 Anserini +test1536 Q0 5845158 13 11.542181 Anserini +test1536 Q0 4541159 14 11.428329 Anserini +test1536 Q0 11078454 15 11.366833 Anserini +test1536 Q0 8785200 16 11.321037 Anserini +test1536 Q0 18103419 17 11.195193 Anserini +test1536 Q0 826366 18 11.191043 Anserini +test1536 Q0 11099609 19 11.145803 Anserini +test1536 Q0 883251 20 11.131842 Anserini +test1536 Q0 379748 21 11.119212 Anserini +test1536 Q0 7837077 22 11.064761 Anserini +test1536 Q0 5845155 23 11.048179 Anserini +test1536 Q0 15889698 24 11.039581 Anserini +test1536 Q0 3158255 25 10.909289 Anserini +test1536 Q0 11099608 26 10.881583 Anserini +test1536 Q0 19243280 27 10.852518 Anserini +test1536 Q0 10679237 28 10.840108 Anserini +test1536 Q0 10679238 29 10.840108 Anserini +test1536 Q0 18915999 30 10.833990 Anserini +test1537 Q0 13553568 1 14.303813 Anserini +test1537 Q0 13553567 2 14.029110 Anserini +test1537 Q0 13553579 3 13.774070 Anserini +test1537 Q0 3135991 4 13.773742 Anserini +test1537 Q0 18920438 5 13.761408 Anserini +test1537 Q0 13553589 6 13.613554 Anserini +test1537 Q0 3942712 7 13.257614 Anserini +test1537 Q0 13553578 8 12.817383 Anserini +test1537 Q0 13553580 9 12.728428 Anserini +test1537 Q0 13553583 10 12.728428 Anserini +test1537 Q0 5476409 11 12.388771 Anserini +test1537 Q0 7461532 12 12.330625 Anserini +test1537 Q0 3250378 13 12.330625 Anserini +test1537 Q0 3250383 14 12.329935 Anserini +test1537 Q0 17803975 15 12.298993 Anserini +test1537 Q0 13553587 16 12.216154 Anserini +test1537 Q0 905786 17 12.189357 Anserini +test1537 Q0 18920442 18 12.036613 Anserini +test1537 Q0 13553584 19 12.030337 Anserini +test1537 Q0 905774 20 11.955939 Anserini +test1537 Q0 11722234 21 11.950131 Anserini +test1537 Q0 10641728 22 11.883887 Anserini +test1537 Q0 8297280 23 11.856337 Anserini +test1537 Q0 3135978 24 11.851122 Anserini +test1537 Q0 228573 25 11.794079 Anserini +test1537 Q0 9755075 26 11.759013 Anserini +test1537 Q0 3333364 27 11.742896 Anserini +test1537 Q0 8297285 28 11.730297 Anserini +test1537 Q0 13553572 29 11.728375 Anserini +test1537 Q0 3250381 30 11.691782 Anserini +test1538 Q0 14535422 1 12.533429 Anserini +test1538 Q0 6545502 2 12.454049 Anserini +test1538 Q0 11164818 3 12.155485 Anserini +test1538 Q0 10722130 4 11.652614 Anserini +test1538 Q0 20635949 5 11.590919 Anserini +test1538 Q0 11654329 6 11.590919 Anserini +test1538 Q0 11654369 7 11.590919 Anserini +test1538 Q0 660925 8 11.555690 Anserini +test1538 Q0 4635830 9 11.555690 Anserini +test1538 Q0 660972 10 11.543094 Anserini +test1538 Q0 830408 11 11.422430 Anserini +test1538 Q0 660924 12 11.387994 Anserini +test1538 Q0 20635946 13 11.385646 Anserini +test1538 Q0 4165729 14 11.336058 Anserini +test1538 Q0 660889 15 11.282621 Anserini +test1538 Q0 12351119 16 11.223823 Anserini +test1538 Q0 660904 17 11.202661 Anserini +test1538 Q0 12351121 18 11.165735 Anserini +test1538 Q0 660930 19 11.156062 Anserini +test1538 Q0 11654362 20 11.043650 Anserini +test1538 Q0 11654352 21 11.034576 Anserini +test1538 Q0 2039289 22 11.010588 Anserini +test1538 Q0 15297419 23 10.952788 Anserini +test1538 Q0 660918 24 10.943793 Anserini +test1538 Q0 660885 25 10.914886 Anserini +test1538 Q0 11654331 26 10.910679 Anserini +test1538 Q0 10722127 27 10.887373 Anserini +test1538 Q0 660888 28 10.884561 Anserini +test1538 Q0 11654360 29 10.831272 Anserini +test1538 Q0 15297420 30 10.823825 Anserini +test1539 Q0 3082368 1 14.696021 Anserini +test1539 Q0 9105421 2 14.156786 Anserini +test1539 Q0 20309058 3 13.606321 Anserini +test1539 Q0 1608487 4 13.452116 Anserini +test1539 Q0 20309062 5 13.294147 Anserini +test1539 Q0 5035054 6 13.258007 Anserini +test1539 Q0 12026642 7 13.253549 Anserini +test1539 Q0 6598512 8 13.244117 Anserini +test1539 Q0 19883402 9 13.087065 Anserini +test1539 Q0 14363268 10 12.935987 Anserini +test1539 Q0 9105427 11 12.864000 Anserini +test1539 Q0 2929781 12 12.846640 Anserini +test1539 Q0 7951744 13 12.808355 Anserini +test1539 Q0 9105425 14 12.798649 Anserini +test1539 Q0 5035060 15 12.787335 Anserini +test1539 Q0 6719123 16 12.775557 Anserini +test1539 Q0 6135630 17 12.747769 Anserini +test1539 Q0 18597181 18 12.740268 Anserini +test1539 Q0 3197026 19 12.714540 Anserini +test1539 Q0 8207922 20 12.622293 Anserini +test1539 Q0 2379130 21 12.613119 Anserini +test1539 Q0 13195062 22 12.545911 Anserini +test1539 Q0 10169683 23 12.498525 Anserini +test1539 Q0 5142868 24 12.395251 Anserini +test1539 Q0 8207924 25 12.378819 Anserini +test1539 Q0 244276 26 12.373293 Anserini +test1539 Q0 193805 27 12.221720 Anserini +test1539 Q0 3692361 28 12.203485 Anserini +test1539 Q0 17234688 29 12.186230 Anserini +test1539 Q0 2732248 30 12.174890 Anserini +test154 Q0 8297630 1 13.266117 Anserini +test154 Q0 17193713 2 12.738822 Anserini +test154 Q0 12577179 3 12.513064 Anserini +test154 Q0 1265132 4 12.387169 Anserini +test154 Q0 18846586 5 11.879529 Anserini +test154 Q0 11386539 6 11.805326 Anserini +test154 Q0 3748208 7 11.726639 Anserini +test154 Q0 14121156 8 11.473103 Anserini +test154 Q0 12248252 9 11.296002 Anserini +test154 Q0 19316643 10 11.191379 Anserini +test154 Q0 2097626 11 11.171220 Anserini +test154 Q0 11852704 12 11.156307 Anserini +test154 Q0 6005291 13 11.112435 Anserini +test154 Q0 2923156 14 11.078387 Anserini +test154 Q0 19398304 15 11.046805 Anserini +test154 Q0 18846588 16 11.042068 Anserini +test154 Q0 11852703 17 11.024102 Anserini +test154 Q0 1423302 18 10.999772 Anserini +test154 Q0 16803383 19 10.999144 Anserini +test154 Q0 20642018 20 10.992122 Anserini +test154 Q0 8642477 21 10.976395 Anserini +test154 Q0 19316640 22 10.942129 Anserini +test154 Q0 6691346 23 10.925366 Anserini +test154 Q0 19516391 24 10.867111 Anserini +test154 Q0 19516393 25 10.867111 Anserini +test154 Q0 9272821 26 10.827599 Anserini +test154 Q0 16955742 27 10.746876 Anserini +test154 Q0 7179164 28 10.665795 Anserini +test154 Q0 6577705 29 10.660997 Anserini +test154 Q0 13268331 30 10.586630 Anserini +test1540 Q0 13610232 1 22.741783 Anserini +test1540 Q0 14306295 2 22.630116 Anserini +test1540 Q0 16558330 3 22.410482 Anserini +test1540 Q0 15702161 4 22.369211 Anserini +test1540 Q0 19527653 5 22.075127 Anserini +test1540 Q0 12272509 6 21.436649 Anserini +test1540 Q0 19739681 7 21.212521 Anserini +test1540 Q0 20128718 8 21.132534 Anserini +test1540 Q0 15715493 9 20.974501 Anserini +test1540 Q0 17478890 10 20.781347 Anserini +test1540 Q0 15702167 11 20.693317 Anserini +test1540 Q0 10241904 12 20.646358 Anserini +test1540 Q0 20128698 13 20.646358 Anserini +test1540 Q0 18755019 14 20.646358 Anserini +test1540 Q0 19527640 15 20.564426 Anserini +test1540 Q0 13899137 16 20.564426 Anserini +test1540 Q0 17478881 17 20.459044 Anserini +test1540 Q0 15207801 18 20.402946 Anserini +test1540 Q0 12184097 19 20.386978 Anserini +test1540 Q0 12272508 20 20.167946 Anserini +test1540 Q0 12272516 21 20.132223 Anserini +test1540 Q0 13899151 22 20.066298 Anserini +test1540 Q0 11831354 23 19.980556 Anserini +test1540 Q0 12300173 24 19.972866 Anserini +test1540 Q0 12300168 25 19.880428 Anserini +test1540 Q0 18018590 26 19.880428 Anserini +test1540 Q0 14777603 27 19.880428 Anserini +test1540 Q0 15692658 28 19.880428 Anserini +test1540 Q0 18755011 29 19.880428 Anserini +test1540 Q0 12272507 30 19.869736 Anserini +test1541 Q0 11857590 1 9.637457 Anserini +test1541 Q0 14814697 2 9.192416 Anserini +test1541 Q0 1628965 3 8.828403 Anserini +test1541 Q0 9907650 4 8.734545 Anserini +test1541 Q0 2376994 5 8.671267 Anserini +test1541 Q0 3223165 6 8.645551 Anserini +test1541 Q0 4546163 7 8.572699 Anserini +test1541 Q0 17370783 8 8.571412 Anserini +test1541 Q0 19022377 9 8.559347 Anserini +test1541 Q0 314999 10 8.513761 Anserini +test1541 Q0 14346972 11 8.433461 Anserini +test1541 Q0 16296925 12 8.429894 Anserini +test1541 Q0 19380997 13 8.348999 Anserini +test1541 Q0 14185308 14 8.330640 Anserini +test1541 Q0 4654429 15 8.316432 Anserini +test1541 Q0 12099886 16 8.305165 Anserini +test1541 Q0 19314648 17 8.297416 Anserini +test1541 Q0 9822510 18 8.284227 Anserini +test1541 Q0 11718379 19 8.264117 Anserini +test1541 Q0 19089276 20 8.215705 Anserini +test1541 Q0 5544121 21 8.202205 Anserini +test1541 Q0 2371637 22 8.186518 Anserini +test1541 Q0 16197499 23 8.186389 Anserini +test1541 Q0 123174 24 8.186389 Anserini +test1541 Q0 16510676 25 8.181102 Anserini +test1541 Q0 18213203 26 8.152180 Anserini +test1541 Q0 9718488 27 8.098400 Anserini +test1541 Q0 20413402 28 8.070331 Anserini +test1541 Q0 11439417 29 8.050728 Anserini +test1541 Q0 11341378 30 8.043287 Anserini +test1542 Q0 16513931 1 16.000946 Anserini +test1542 Q0 15053870 2 15.365374 Anserini +test1542 Q0 15844260 3 15.279556 Anserini +test1542 Q0 16513933 4 15.249094 Anserini +test1542 Q0 15053722 5 14.714774 Anserini +test1542 Q0 15053875 6 14.601823 Anserini +test1542 Q0 15053719 7 14.595437 Anserini +test1542 Q0 15382507 8 14.546143 Anserini +test1542 Q0 5661596 9 14.517269 Anserini +test1542 Q0 15053720 10 14.405923 Anserini +test1542 Q0 2771422 11 14.350578 Anserini +test1542 Q0 15053863 12 14.185398 Anserini +test1542 Q0 15053868 13 14.126369 Anserini +test1542 Q0 1004485 14 14.073617 Anserini +test1542 Q0 471296 15 13.852154 Anserini +test1542 Q0 9015862 16 13.836370 Anserini +test1542 Q0 2771423 17 13.822346 Anserini +test1542 Q0 8007126 18 13.741476 Anserini +test1542 Q0 5398352 19 13.734522 Anserini +test1542 Q0 10107239 20 13.653904 Anserini +test1542 Q0 18156557 21 13.464712 Anserini +test1542 Q0 18156560 22 13.464712 Anserini +test1542 Q0 14998838 23 13.353570 Anserini +test1542 Q0 3049531 24 13.276802 Anserini +test1542 Q0 9015864 25 13.169619 Anserini +test1542 Q0 11585970 26 13.157130 Anserini +test1542 Q0 9226552 27 12.988602 Anserini +test1542 Q0 15053864 28 12.966053 Anserini +test1542 Q0 4239999 29 12.965988 Anserini +test1542 Q0 65098 30 12.938757 Anserini +test1543 Q0 652613 1 17.709520 Anserini +test1543 Q0 4673697 2 16.060316 Anserini +test1543 Q0 652621 3 15.230869 Anserini +test1543 Q0 652618 4 13.850722 Anserini +test1543 Q0 652619 5 13.619086 Anserini +test1543 Q0 14880730 6 13.510853 Anserini +test1543 Q0 4228718 7 13.458507 Anserini +test1543 Q0 652624 8 13.113632 Anserini +test1543 Q0 2360538 9 13.049154 Anserini +test1543 Q0 8446824 10 12.947306 Anserini +test1543 Q0 7797543 11 12.829413 Anserini +test1543 Q0 652620 12 12.734503 Anserini +test1543 Q0 16757252 13 12.531495 Anserini +test1543 Q0 2545929 14 12.527543 Anserini +test1543 Q0 652626 15 12.487395 Anserini +test1543 Q0 8767519 16 12.443150 Anserini +test1543 Q0 1215974 17 12.372794 Anserini +test1543 Q0 652625 18 12.239334 Anserini +test1543 Q0 7797542 19 12.150430 Anserini +test1543 Q0 9554852 20 12.008659 Anserini +test1543 Q0 20978001 21 11.970389 Anserini +test1543 Q0 652614 22 11.944508 Anserini +test1543 Q0 13911536 23 11.798897 Anserini +test1543 Q0 1836454 24 11.779681 Anserini +test1543 Q0 10426537 25 11.779681 Anserini +test1543 Q0 10218807 26 11.749535 Anserini +test1543 Q0 3160137 27 11.749535 Anserini +test1543 Q0 652615 28 11.735162 Anserini +test1543 Q0 652622 29 11.705725 Anserini +test1543 Q0 16326545 30 11.679722 Anserini +test1544 Q0 19120546 1 19.422119 Anserini +test1544 Q0 19120550 2 19.422119 Anserini +test1544 Q0 6240034 3 18.911953 Anserini +test1544 Q0 19749929 4 16.324228 Anserini +test1544 Q0 6240033 5 15.973146 Anserini +test1544 Q0 18729507 6 14.170362 Anserini +test1544 Q0 15249579 7 13.725292 Anserini +test1544 Q0 5887710 8 13.710368 Anserini +test1544 Q0 6239993 9 13.624578 Anserini +test1544 Q0 7210138 10 13.444718 Anserini +test1544 Q0 19120530 11 13.338121 Anserini +test1544 Q0 6240040 12 13.284163 Anserini +test1544 Q0 11502768 13 13.262186 Anserini +test1544 Q0 20634077 14 13.164133 Anserini +test1544 Q0 14135687 15 13.121634 Anserini +test1544 Q0 12435376 16 13.103453 Anserini +test1544 Q0 19120529 17 13.095454 Anserini +test1544 Q0 12435375 18 13.024786 Anserini +test1544 Q0 13884947 19 13.021681 Anserini +test1544 Q0 5947660 20 12.564882 Anserini +test1544 Q0 6239999 21 12.546855 Anserini +test1544 Q0 6240003 22 12.454693 Anserini +test1544 Q0 3871273 23 12.439074 Anserini +test1544 Q0 6240008 24 12.050338 Anserini +test1544 Q0 11552621 25 12.020067 Anserini +test1544 Q0 13629496 26 11.985106 Anserini +test1544 Q0 12671341 27 11.977108 Anserini +test1544 Q0 6240028 28 11.977108 Anserini +test1544 Q0 5984754 29 11.963816 Anserini +test1544 Q0 7997951 30 11.886822 Anserini +test1545 Q0 9962693 1 20.007286 Anserini +test1545 Q0 9962691 2 19.735664 Anserini +test1545 Q0 9962695 3 19.448814 Anserini +test1545 Q0 9962689 4 17.865786 Anserini +test1545 Q0 1290175 5 17.689365 Anserini +test1545 Q0 9962690 6 17.451519 Anserini +test1545 Q0 1290174 7 17.344351 Anserini +test1545 Q0 12450485 8 17.002007 Anserini +test1545 Q0 13819435 9 16.941797 Anserini +test1545 Q0 10190240 10 16.685804 Anserini +test1545 Q0 12037896 11 16.638872 Anserini +test1545 Q0 4616841 12 16.591627 Anserini +test1545 Q0 9962694 13 16.563606 Anserini +test1545 Q0 4503280 14 16.563606 Anserini +test1545 Q0 19187304 15 16.472307 Anserini +test1545 Q0 9048385 16 16.357609 Anserini +test1545 Q0 4616839 17 16.318132 Anserini +test1545 Q0 9088808 18 16.183422 Anserini +test1545 Q0 19542677 19 16.069735 Anserini +test1545 Q0 13893744 20 16.047146 Anserini +test1545 Q0 7335565 21 15.914631 Anserini +test1545 Q0 19663058 22 15.900387 Anserini +test1545 Q0 11707225 23 15.879349 Anserini +test1545 Q0 9191424 24 15.805046 Anserini +test1545 Q0 18698498 25 15.799397 Anserini +test1545 Q0 1970111 26 15.778522 Anserini +test1545 Q0 14479890 27 15.772886 Anserini +test1545 Q0 16848890 28 15.734794 Anserini +test1545 Q0 17715784 29 15.699627 Anserini +test1545 Q0 9098925 30 15.689042 Anserini +test1546 Q0 7523171 1 10.723272 Anserini +test1546 Q0 7523172 2 10.433689 Anserini +test1546 Q0 7602581 3 10.407354 Anserini +test1546 Q0 2724608 4 10.268033 Anserini +test1546 Q0 545233 5 10.216260 Anserini +test1546 Q0 4690167 6 10.214014 Anserini +test1546 Q0 17344928 7 10.112841 Anserini +test1546 Q0 34333 8 10.064674 Anserini +test1546 Q0 3560812 9 9.980831 Anserini +test1546 Q0 4068974 10 9.884656 Anserini +test1546 Q0 123051 11 9.806324 Anserini +test1546 Q0 14123512 12 9.794594 Anserini +test1546 Q0 9183347 13 9.783391 Anserini +test1546 Q0 14705113 14 9.766896 Anserini +test1546 Q0 8615791 15 9.732505 Anserini +test1546 Q0 4902905 16 9.629587 Anserini +test1546 Q0 1515483 17 9.615051 Anserini +test1546 Q0 5758744 18 9.597682 Anserini +test1546 Q0 7543282 19 9.586742 Anserini +test1546 Q0 12587353 20 9.584069 Anserini +test1546 Q0 7415275 21 9.571311 Anserini +test1546 Q0 14540861 22 9.570435 Anserini +test1546 Q0 3624129 23 9.562368 Anserini +test1546 Q0 4056551 24 9.509335 Anserini +test1546 Q0 2742542 25 9.506577 Anserini +test1546 Q0 9437669 26 9.503208 Anserini +test1546 Q0 17261 27 9.503208 Anserini +test1546 Q0 7610537 28 9.469687 Anserini +test1546 Q0 2320304 29 9.455587 Anserini +test1546 Q0 20855029 30 9.430841 Anserini +test1547 Q0 2432710 1 17.322851 Anserini +test1547 Q0 2432708 2 16.971647 Anserini +test1547 Q0 8765847 3 16.883123 Anserini +test1547 Q0 2432702 4 16.241734 Anserini +test1547 Q0 19638819 5 14.553576 Anserini +test1547 Q0 2894321 6 13.746044 Anserini +test1547 Q0 10969208 7 13.628351 Anserini +test1547 Q0 20825010 8 13.441234 Anserini +test1547 Q0 12581624 9 13.416378 Anserini +test1547 Q0 16297243 10 13.367812 Anserini +test1547 Q0 3182088 11 12.891099 Anserini +test1547 Q0 5604353 12 12.686507 Anserini +test1547 Q0 12016419 13 12.598686 Anserini +test1547 Q0 7206595 14 12.453060 Anserini +test1547 Q0 9360438 15 12.444563 Anserini +test1547 Q0 18969863 16 12.318712 Anserini +test1547 Q0 8744939 17 12.285659 Anserini +test1547 Q0 11739697 18 12.241664 Anserini +test1547 Q0 10494159 19 12.222018 Anserini +test1547 Q0 8911963 20 12.195309 Anserini +test1547 Q0 18969862 21 12.112489 Anserini +test1547 Q0 17350123 22 12.048255 Anserini +test1547 Q0 20932329 23 12.008634 Anserini +test1547 Q0 3744767 24 11.960231 Anserini +test1547 Q0 8695648 25 11.925588 Anserini +test1547 Q0 13820335 26 11.910959 Anserini +test1547 Q0 3342366 27 11.901629 Anserini +test1547 Q0 5458694 28 11.847234 Anserini +test1547 Q0 20762160 29 11.826307 Anserini +test1547 Q0 340134 30 11.782526 Anserini +test1548 Q0 7319702 1 11.460278 Anserini +test1548 Q0 7319705 2 10.410703 Anserini +test1548 Q0 7319704 3 9.978976 Anserini +test1548 Q0 17094513 4 9.056993 Anserini +test1548 Q0 2475160 5 9.045642 Anserini +test1548 Q0 4866504 6 8.949198 Anserini +test1548 Q0 4119450 7 8.918291 Anserini +test1548 Q0 14568884 8 8.823880 Anserini +test1548 Q0 4866494 9 8.804894 Anserini +test1548 Q0 13160355 10 8.624355 Anserini +test1548 Q0 18516151 11 8.587211 Anserini +test1548 Q0 9678256 12 8.513535 Anserini +test1548 Q0 11741113 13 8.498702 Anserini +test1548 Q0 5333261 14 8.498702 Anserini +test1548 Q0 7710723 15 8.422386 Anserini +test1548 Q0 13884533 16 8.418682 Anserini +test1548 Q0 3348065 17 8.355395 Anserini +test1548 Q0 11536794 18 8.319416 Anserini +test1548 Q0 17482561 19 8.312782 Anserini +test1548 Q0 1860276 20 8.253046 Anserini +test1548 Q0 6089131 21 8.232625 Anserini +test1548 Q0 1860281 22 8.196209 Anserini +test1548 Q0 14088373 23 8.176634 Anserini +test1548 Q0 9607217 24 8.081139 Anserini +test1548 Q0 18428825 25 8.068306 Anserini +test1548 Q0 6066792 26 8.058344 Anserini +test1548 Q0 16237065 27 8.058344 Anserini +test1548 Q0 14573520 28 8.031272 Anserini +test1548 Q0 4208742 29 8.026520 Anserini +test1548 Q0 3844964 30 8.007568 Anserini +test1549 Q0 1402668 1 13.405372 Anserini +test1549 Q0 13587964 2 12.513984 Anserini +test1549 Q0 767943 3 12.462309 Anserini +test1549 Q0 2277925 4 12.018412 Anserini +test1549 Q0 3039873 5 12.010180 Anserini +test1549 Q0 712407 6 11.890546 Anserini +test1549 Q0 13618383 7 11.884302 Anserini +test1549 Q0 10392 8 11.814170 Anserini +test1549 Q0 4195813 9 11.757919 Anserini +test1549 Q0 197015 10 11.735742 Anserini +test1549 Q0 5292871 11 11.696501 Anserini +test1549 Q0 157089 12 11.554804 Anserini +test1549 Q0 5292878 13 11.551532 Anserini +test1549 Q0 4732887 14 11.488663 Anserini +test1549 Q0 7210599 15 11.354781 Anserini +test1549 Q0 1402662 16 10.862434 Anserini +test1549 Q0 4977679 17 10.833834 Anserini +test1549 Q0 14521803 18 10.785879 Anserini +test1549 Q0 45639 19 10.727668 Anserini +test1549 Q0 311787 20 10.687803 Anserini +test1549 Q0 9421 21 10.687803 Anserini +test1549 Q0 14057356 22 10.636215 Anserini +test1549 Q0 9306 23 10.604420 Anserini +test1549 Q0 984093 24 10.604420 Anserini +test1549 Q0 9420 25 10.596138 Anserini +test1549 Q0 3039876 26 10.596138 Anserini +test1549 Q0 4195827 27 10.584023 Anserini +test1549 Q0 19938314 28 10.539980 Anserini +test1549 Q0 879691 29 10.536725 Anserini +test1549 Q0 984102 30 10.506104 Anserini +test155 Q0 9768396 1 22.688040 Anserini +test155 Q0 9768397 2 22.688040 Anserini +test155 Q0 8782487 3 20.174484 Anserini +test155 Q0 9769504 4 19.296926 Anserini +test155 Q0 9769518 5 18.457293 Anserini +test155 Q0 8656324 6 18.377096 Anserini +test155 Q0 7421609 7 18.213898 Anserini +test155 Q0 9769542 8 17.899292 Anserini +test155 Q0 9162472 9 17.880659 Anserini +test155 Q0 9769534 10 17.552406 Anserini +test155 Q0 8417241 11 17.067699 Anserini +test155 Q0 10365105 12 16.822683 Anserini +test155 Q0 967488 13 16.566256 Anserini +test155 Q0 9769514 14 16.501114 Anserini +test155 Q0 9162470 15 16.430328 Anserini +test155 Q0 9769545 16 16.413889 Anserini +test155 Q0 13371335 17 16.246960 Anserini +test155 Q0 11797898 18 15.137163 Anserini +test155 Q0 9769526 19 14.251760 Anserini +test155 Q0 7421610 20 14.133755 Anserini +test155 Q0 9769546 21 13.387655 Anserini +test155 Q0 8417240 22 13.294480 Anserini +test155 Q0 15578316 23 13.201457 Anserini +test155 Q0 14550642 24 13.116931 Anserini +test155 Q0 10046969 25 12.822803 Anserini +test155 Q0 1521817 26 12.769559 Anserini +test155 Q0 7312939 27 12.554095 Anserini +test155 Q0 9769544 28 12.527960 Anserini +test155 Q0 9700865 29 12.445293 Anserini +test155 Q0 11051438 30 12.424684 Anserini +test1550 Q0 16786833 1 14.471070 Anserini +test1550 Q0 9590195 2 13.896477 Anserini +test1550 Q0 18943640 3 13.417253 Anserini +test1550 Q0 19238858 4 13.354498 Anserini +test1550 Q0 20179727 5 13.271852 Anserini +test1550 Q0 7181400 6 13.215233 Anserini +test1550 Q0 11593857 7 13.025737 Anserini +test1550 Q0 15205694 8 12.978758 Anserini +test1550 Q0 19252115 9 12.976943 Anserini +test1550 Q0 15848200 10 12.961716 Anserini +test1550 Q0 12836407 11 12.947083 Anserini +test1550 Q0 9403316 12 12.947083 Anserini +test1550 Q0 9403317 13 12.947083 Anserini +test1550 Q0 3589835 14 12.938815 Anserini +test1550 Q0 9795972 15 12.921551 Anserini +test1550 Q0 8226776 16 12.919736 Anserini +test1550 Q0 5878350 17 12.913222 Anserini +test1550 Q0 17032813 18 12.893070 Anserini +test1550 Q0 18684490 19 12.861809 Anserini +test1550 Q0 372841 20 12.853984 Anserini +test1550 Q0 15770516 21 12.841595 Anserini +test1550 Q0 18625035 22 12.838651 Anserini +test1550 Q0 10442093 23 12.813890 Anserini +test1550 Q0 20430301 24 12.809104 Anserini +test1550 Q0 6411753 25 12.787800 Anserini +test1550 Q0 13863298 26 12.782340 Anserini +test1550 Q0 14511479 27 12.717436 Anserini +test1550 Q0 12046223 28 12.716168 Anserini +test1550 Q0 17009953 29 12.675365 Anserini +test1550 Q0 9598871 30 12.660843 Anserini +test1551 Q0 3213577 1 19.510580 Anserini +test1551 Q0 3364829 2 18.694330 Anserini +test1551 Q0 3364843 3 18.298405 Anserini +test1551 Q0 6152697 4 16.932722 Anserini +test1551 Q0 17215934 5 16.591105 Anserini +test1551 Q0 2988198 6 16.528936 Anserini +test1551 Q0 3048019 7 16.339582 Anserini +test1551 Q0 3048082 8 16.339582 Anserini +test1551 Q0 17215938 9 16.117311 Anserini +test1551 Q0 2988207 10 16.046040 Anserini +test1551 Q0 404956 11 15.864948 Anserini +test1551 Q0 404984 12 15.864948 Anserini +test1551 Q0 5233482 13 15.859005 Anserini +test1551 Q0 404981 14 15.389206 Anserini +test1551 Q0 7498593 15 15.332117 Anserini +test1551 Q0 3048029 16 15.122000 Anserini +test1551 Q0 7498580 17 15.122000 Anserini +test1551 Q0 3048028 18 14.974224 Anserini +test1551 Q0 7063151 19 14.903539 Anserini +test1551 Q0 8397874 20 14.887189 Anserini +test1551 Q0 1426034 21 14.887189 Anserini +test1551 Q0 5233493 22 14.624698 Anserini +test1551 Q0 7836065 23 14.546520 Anserini +test1551 Q0 7836073 24 14.546520 Anserini +test1551 Q0 3048074 25 14.542361 Anserini +test1551 Q0 1426033 26 14.443264 Anserini +test1551 Q0 12818426 27 14.355921 Anserini +test1551 Q0 26419 28 14.345175 Anserini +test1551 Q0 6885372 29 14.181957 Anserini +test1551 Q0 404967 30 14.148447 Anserini +test1552 Q0 182201 1 9.023924 Anserini +test1552 Q0 1499557 2 8.853761 Anserini +test1552 Q0 3972110 3 8.725361 Anserini +test1552 Q0 9887108 4 8.654514 Anserini +test1552 Q0 20105779 5 8.645117 Anserini +test1552 Q0 14478846 6 8.638394 Anserini +test1552 Q0 7311055 7 8.630207 Anserini +test1552 Q0 9885283 8 8.532120 Anserini +test1552 Q0 9267950 9 8.381183 Anserini +test1552 Q0 1499574 10 8.381183 Anserini +test1552 Q0 15656413 11 8.373455 Anserini +test1552 Q0 150045 12 8.276285 Anserini +test1552 Q0 148754 13 8.218330 Anserini +test1552 Q0 12972041 14 8.182326 Anserini +test1552 Q0 4174232 15 8.178370 Anserini +test1552 Q0 9424985 16 8.152091 Anserini +test1552 Q0 7849785 17 8.145454 Anserini +test1552 Q0 2549222 18 8.111994 Anserini +test1552 Q0 2549225 19 8.111994 Anserini +test1552 Q0 975093 20 8.095841 Anserini +test1552 Q0 10135294 21 8.077307 Anserini +test1552 Q0 12972037 22 8.064590 Anserini +test1552 Q0 14206224 23 8.058794 Anserini +test1552 Q0 10316966 24 8.055599 Anserini +test1552 Q0 3832284 25 8.013632 Anserini +test1552 Q0 3832296 26 8.013632 Anserini +test1552 Q0 7098588 27 7.990679 Anserini +test1552 Q0 9338297 28 7.973960 Anserini +test1552 Q0 20124335 29 7.973960 Anserini +test1552 Q0 14972702 30 7.973960 Anserini +test1553 Q0 16900797 1 10.422074 Anserini +test1553 Q0 8315089 2 9.926059 Anserini +test1553 Q0 14890451 3 9.392130 Anserini +test1553 Q0 5923092 4 9.333082 Anserini +test1553 Q0 910142 5 9.321977 Anserini +test1553 Q0 3916741 6 9.273239 Anserini +test1553 Q0 1744205 7 8.985339 Anserini +test1553 Q0 4581505 8 8.771111 Anserini +test1553 Q0 6681525 9 8.771111 Anserini +test1553 Q0 9579212 10 8.752251 Anserini +test1553 Q0 8232620 11 8.742175 Anserini +test1553 Q0 19391746 12 8.696161 Anserini +test1553 Q0 19526659 13 8.654123 Anserini +test1553 Q0 6465068 14 8.647408 Anserini +test1553 Q0 9364455 15 8.606673 Anserini +test1553 Q0 590856 16 8.547388 Anserini +test1553 Q0 16124249 17 8.530327 Anserini +test1553 Q0 90659 18 8.530327 Anserini +test1553 Q0 16794227 19 8.498327 Anserini +test1553 Q0 3598547 20 8.490977 Anserini +test1553 Q0 8871082 21 8.398891 Anserini +test1553 Q0 12218965 22 8.395595 Anserini +test1553 Q0 5749257 23 8.395595 Anserini +test1553 Q0 18615732 24 8.381250 Anserini +test1553 Q0 7502373 25 8.373640 Anserini +test1553 Q0 2550643 26 8.371380 Anserini +test1553 Q0 7322056 27 8.363997 Anserini +test1553 Q0 551945 28 8.308729 Anserini +test1553 Q0 2725191 29 8.262673 Anserini +test1553 Q0 16197627 30 8.243124 Anserini +test1554 Q0 17532929 1 12.014170 Anserini +test1554 Q0 17861151 2 11.883825 Anserini +test1554 Q0 18111552 3 11.689593 Anserini +test1554 Q0 17963671 4 11.661418 Anserini +test1554 Q0 18111536 5 11.605968 Anserini +test1554 Q0 15619995 6 11.529298 Anserini +test1554 Q0 5238682 7 11.465100 Anserini +test1554 Q0 18422294 8 11.451547 Anserini +test1554 Q0 15053451 9 11.439287 Anserini +test1554 Q0 18039637 10 11.367277 Anserini +test1554 Q0 18039635 11 11.239131 Anserini +test1554 Q0 15014697 12 11.079578 Anserini +test1554 Q0 11549256 13 11.051878 Anserini +test1554 Q0 18111544 14 10.963145 Anserini +test1554 Q0 17716321 15 10.929608 Anserini +test1554 Q0 16972129 16 10.877465 Anserini +test1554 Q0 17897593 17 10.862481 Anserini +test1554 Q0 19278802 18 10.669469 Anserini +test1554 Q0 18422296 19 10.524642 Anserini +test1554 Q0 17833214 20 10.519607 Anserini +test1554 Q0 17996069 21 10.470695 Anserini +test1554 Q0 17892654 22 10.466257 Anserini +test1554 Q0 18583695 23 10.419066 Anserini +test1554 Q0 17996058 24 10.412093 Anserini +test1554 Q0 17989613 25 10.370856 Anserini +test1554 Q0 17989629 26 10.370856 Anserini +test1554 Q0 8459791 27 10.351473 Anserini +test1554 Q0 14445239 28 10.337316 Anserini +test1554 Q0 9082616 29 10.328000 Anserini +test1554 Q0 18039640 30 10.325008 Anserini +test1555 Q0 11793915 1 11.251492 Anserini +test1555 Q0 6155843 2 10.651076 Anserini +test1555 Q0 4780957 3 10.358907 Anserini +test1555 Q0 16363482 4 10.305514 Anserini +test1555 Q0 16823043 5 10.206374 Anserini +test1555 Q0 6009116 6 10.141747 Anserini +test1555 Q0 1418693 7 10.123298 Anserini +test1555 Q0 11728823 8 10.085625 Anserini +test1555 Q0 9137060 9 10.039940 Anserini +test1555 Q0 11677189 10 10.031654 Anserini +test1555 Q0 7884342 11 10.012452 Anserini +test1555 Q0 18738564 12 9.981222 Anserini +test1555 Q0 16747955 13 9.976355 Anserini +test1555 Q0 7052756 14 9.958821 Anserini +test1555 Q0 5348982 15 9.912666 Anserini +test1555 Q0 14657354 16 9.892622 Anserini +test1555 Q0 2859955 17 9.888700 Anserini +test1555 Q0 11979121 18 9.843292 Anserini +test1555 Q0 11728821 19 9.773239 Anserini +test1555 Q0 16822490 20 9.698754 Anserini +test1555 Q0 4780958 21 9.658543 Anserini +test1555 Q0 6812325 22 9.655403 Anserini +test1555 Q0 421002 23 9.613273 Anserini +test1555 Q0 813083 24 9.609884 Anserini +test1555 Q0 12469183 25 9.603153 Anserini +test1555 Q0 11015061 26 9.581465 Anserini +test1555 Q0 420947 27 9.571328 Anserini +test1555 Q0 8859512 28 9.569543 Anserini +test1555 Q0 10013184 29 9.565636 Anserini +test1555 Q0 2560587 30 9.563968 Anserini +test1556 Q0 6356144 1 33.783119 Anserini +test1556 Q0 16178510 2 33.554993 Anserini +test1556 Q0 19253142 3 32.441193 Anserini +test1556 Q0 6356146 4 32.349316 Anserini +test1556 Q0 6356233 5 32.226078 Anserini +test1556 Q0 6356147 6 31.777473 Anserini +test1556 Q0 6356145 7 31.461681 Anserini +test1556 Q0 1802091 8 31.252373 Anserini +test1556 Q0 6356232 9 31.132057 Anserini +test1556 Q0 15992769 10 30.880444 Anserini +test1556 Q0 19253143 11 30.680540 Anserini +test1556 Q0 1802096 12 30.439116 Anserini +test1556 Q0 1938645 13 30.166500 Anserini +test1556 Q0 483629 14 29.850752 Anserini +test1556 Q0 15061694 15 29.248569 Anserini +test1556 Q0 18664769 16 29.127857 Anserini +test1556 Q0 19253141 17 29.082466 Anserini +test1556 Q0 1948473 18 28.820503 Anserini +test1556 Q0 6356148 19 28.771589 Anserini +test1556 Q0 1597514 20 28.523190 Anserini +test1556 Q0 1597512 21 28.380793 Anserini +test1556 Q0 18664768 22 27.804989 Anserini +test1556 Q0 2952789 23 27.804989 Anserini +test1556 Q0 7418541 24 27.453638 Anserini +test1556 Q0 9501414 25 27.344135 Anserini +test1556 Q0 6356217 26 26.519972 Anserini +test1556 Q0 18664767 27 26.519972 Anserini +test1556 Q0 2267647 28 26.215149 Anserini +test1556 Q0 9501412 29 26.059452 Anserini +test1556 Q0 734692 30 25.901138 Anserini +test1557 Q0 3347600 1 13.279812 Anserini +test1557 Q0 2833986 2 12.803288 Anserini +test1557 Q0 8713698 3 12.763496 Anserini +test1557 Q0 20098644 4 12.506704 Anserini +test1557 Q0 10163552 5 12.488457 Anserini +test1557 Q0 19445601 6 12.311124 Anserini +test1557 Q0 3144863 7 12.133989 Anserini +test1557 Q0 7425030 8 12.047421 Anserini +test1557 Q0 484503 9 11.869410 Anserini +test1557 Q0 311059 10 11.639812 Anserini +test1557 Q0 9461664 11 11.587709 Anserini +test1557 Q0 3144891 12 11.586661 Anserini +test1557 Q0 11113187 13 11.585911 Anserini +test1557 Q0 12674942 14 11.572078 Anserini +test1557 Q0 20392973 15 11.536670 Anserini +test1557 Q0 263463 16 11.518215 Anserini +test1557 Q0 7078116 17 11.472520 Anserini +test1557 Q0 15634757 18 11.449320 Anserini +test1557 Q0 5207990 19 11.419052 Anserini +test1557 Q0 311063 20 11.410819 Anserini +test1557 Q0 311082 21 11.398837 Anserini +test1557 Q0 552856 22 11.207408 Anserini +test1557 Q0 19339753 23 11.191853 Anserini +test1557 Q0 9039638 24 11.185083 Anserini +test1557 Q0 9039649 25 11.185083 Anserini +test1557 Q0 15913980 26 11.157608 Anserini +test1557 Q0 4825466 27 11.137228 Anserini +test1557 Q0 552867 28 11.136635 Anserini +test1557 Q0 4713593 29 11.100540 Anserini +test1557 Q0 6960200 30 11.078289 Anserini +test1558 Q0 20587896 1 13.414483 Anserini +test1558 Q0 20007327 2 12.794955 Anserini +test1558 Q0 1995612 3 12.573500 Anserini +test1558 Q0 3019087 4 12.447181 Anserini +test1558 Q0 12893132 5 12.423866 Anserini +test1558 Q0 20587538 6 12.374500 Anserini +test1558 Q0 12893131 7 12.317253 Anserini +test1558 Q0 20613555 8 12.257494 Anserini +test1558 Q0 6013103 9 12.092622 Anserini +test1558 Q0 3487259 10 11.903933 Anserini +test1558 Q0 20616555 11 11.878561 Anserini +test1558 Q0 3487254 12 11.646536 Anserini +test1558 Q0 20613554 13 11.598281 Anserini +test1558 Q0 5909706 14 11.587250 Anserini +test1558 Q0 20624786 15 11.521341 Anserini +test1558 Q0 20634950 16 11.521341 Anserini +test1558 Q0 15710757 17 11.508730 Anserini +test1558 Q0 20632884 18 11.470660 Anserini +test1558 Q0 20622416 19 11.448766 Anserini +test1558 Q0 3487258 20 11.417736 Anserini +test1558 Q0 20634949 21 11.407660 Anserini +test1558 Q0 15710758 22 11.407660 Anserini +test1558 Q0 20610262 23 11.380819 Anserini +test1558 Q0 20610263 24 11.380819 Anserini +test1558 Q0 14461500 25 11.351940 Anserini +test1558 Q0 1866466 26 11.240828 Anserini +test1558 Q0 20632885 27 11.211430 Anserini +test1558 Q0 5909715 28 11.182737 Anserini +test1558 Q0 20624785 29 11.178436 Anserini +test1558 Q0 4785601 30 11.169787 Anserini +test1559 Q0 7000426 1 13.010161 Anserini +test1559 Q0 19022035 2 12.962913 Anserini +test1559 Q0 18177104 3 12.655060 Anserini +test1559 Q0 18886814 4 12.533362 Anserini +test1559 Q0 18905147 5 12.349747 Anserini +test1559 Q0 17348635 6 12.325385 Anserini +test1559 Q0 16967751 7 12.243069 Anserini +test1559 Q0 9272826 8 12.208944 Anserini +test1559 Q0 17348616 9 12.197735 Anserini +test1559 Q0 17991896 10 11.939991 Anserini +test1559 Q0 13267083 11 11.910062 Anserini +test1559 Q0 16967729 12 11.865632 Anserini +test1559 Q0 8084719 13 11.832463 Anserini +test1559 Q0 18828553 14 11.777088 Anserini +test1559 Q0 18828564 15 11.777088 Anserini +test1559 Q0 18886813 16 11.739930 Anserini +test1559 Q0 17560580 17 11.737230 Anserini +test1559 Q0 4703008 18 11.732960 Anserini +test1559 Q0 16967716 19 11.716434 Anserini +test1559 Q0 17533789 20 11.707676 Anserini +test1559 Q0 17991904 21 11.692974 Anserini +test1559 Q0 17968443 22 11.681947 Anserini +test1559 Q0 17991683 23 11.629488 Anserini +test1559 Q0 15622070 24 11.597155 Anserini +test1559 Q0 15212080 25 11.574917 Anserini +test1559 Q0 17270771 26 11.512135 Anserini +test1559 Q0 16908942 27 11.483915 Anserini +test1559 Q0 2929602 28 11.475546 Anserini +test1559 Q0 12518800 29 11.414111 Anserini +test1559 Q0 17533788 30 11.399927 Anserini +test156 Q0 13610232 1 17.119717 Anserini +test156 Q0 16558330 2 16.605425 Anserini +test156 Q0 14306295 3 16.527203 Anserini +test156 Q0 12272509 4 15.913184 Anserini +test156 Q0 19527653 5 15.863447 Anserini +test156 Q0 20128718 6 15.202620 Anserini +test156 Q0 17478890 7 15.134089 Anserini +test156 Q0 12272516 8 15.079518 Anserini +test156 Q0 15702161 9 15.039065 Anserini +test156 Q0 12272507 10 14.817031 Anserini +test156 Q0 11831354 11 14.816580 Anserini +test156 Q0 19739681 12 14.769314 Anserini +test156 Q0 19527640 13 14.654682 Anserini +test156 Q0 20128698 14 14.618465 Anserini +test156 Q0 17478881 15 14.590256 Anserini +test156 Q0 10241912 16 14.550940 Anserini +test156 Q0 10241904 17 14.469722 Anserini +test156 Q0 18755019 18 14.469722 Anserini +test156 Q0 12300173 19 14.350801 Anserini +test156 Q0 12300168 20 14.283336 Anserini +test156 Q0 12272510 21 14.205782 Anserini +test156 Q0 14777603 22 14.183830 Anserini +test156 Q0 15692658 23 14.183830 Anserini +test156 Q0 18755011 24 14.183830 Anserini +test156 Q0 15692650 25 14.150670 Anserini +test156 Q0 15702167 26 14.047232 Anserini +test156 Q0 15715493 27 14.042819 Anserini +test156 Q0 18018590 28 14.033032 Anserini +test156 Q0 15702164 29 14.016675 Anserini +test156 Q0 14777591 30 13.962815 Anserini +test1560 Q0 6602316 1 19.554363 Anserini +test1560 Q0 6602306 2 19.494720 Anserini +test1560 Q0 6602308 3 17.268082 Anserini +test1560 Q0 6602310 4 17.265306 Anserini +test1560 Q0 6602307 5 17.088207 Anserini +test1560 Q0 6602311 6 16.982092 Anserini +test1560 Q0 9195373 7 16.894794 Anserini +test1560 Q0 9380842 8 16.802788 Anserini +test1560 Q0 3395796 9 16.536148 Anserini +test1560 Q0 15233140 10 15.688410 Anserini +test1560 Q0 20452025 11 15.658309 Anserini +test1560 Q0 6602309 12 15.523796 Anserini +test1560 Q0 4386459 13 15.193257 Anserini +test1560 Q0 6602314 14 15.003937 Anserini +test1560 Q0 2014136 15 14.966410 Anserini +test1560 Q0 8366022 16 14.776699 Anserini +test1560 Q0 6602315 17 14.746077 Anserini +test1560 Q0 1155286 18 14.743965 Anserini +test1560 Q0 15257211 19 14.549308 Anserini +test1560 Q0 17633337 20 14.461614 Anserini +test1560 Q0 12939918 21 14.443611 Anserini +test1560 Q0 12908982 22 14.434804 Anserini +test1560 Q0 14094868 23 14.389770 Anserini +test1560 Q0 95502 24 14.384560 Anserini +test1560 Q0 1427394 25 14.365927 Anserini +test1560 Q0 12908983 26 14.300444 Anserini +test1560 Q0 18209753 27 14.282335 Anserini +test1560 Q0 1883557 28 14.229219 Anserini +test1560 Q0 15257212 29 14.056854 Anserini +test1560 Q0 6192465 30 13.924468 Anserini +test1561 Q0 207831 1 12.683647 Anserini +test1561 Q0 14924410 2 11.595997 Anserini +test1561 Q0 1394323 3 11.297829 Anserini +test1561 Q0 356962 4 11.063226 Anserini +test1561 Q0 12362593 5 10.992482 Anserini +test1561 Q0 309970 6 10.653026 Anserini +test1561 Q0 11830696 7 10.350062 Anserini +test1561 Q0 7083220 8 10.344311 Anserini +test1561 Q0 3424218 9 10.343270 Anserini +test1561 Q0 13095360 10 10.286157 Anserini +test1561 Q0 9745539 11 10.249540 Anserini +test1561 Q0 254539 12 10.078003 Anserini +test1561 Q0 7666836 13 10.045163 Anserini +test1561 Q0 309813 14 10.029765 Anserini +test1561 Q0 315615 15 9.990280 Anserini +test1561 Q0 16029623 16 9.978275 Anserini +test1561 Q0 16029612 17 9.978275 Anserini +test1561 Q0 2022347 18 9.929982 Anserini +test1561 Q0 13095365 19 9.906112 Anserini +test1561 Q0 16924451 20 9.905052 Anserini +test1561 Q0 2022351 21 9.887189 Anserini +test1561 Q0 415670 22 9.806224 Anserini +test1561 Q0 666076 23 9.780668 Anserini +test1561 Q0 61578 24 9.762890 Anserini +test1561 Q0 154831 25 9.758440 Anserini +test1561 Q0 433844 26 9.750574 Anserini +test1561 Q0 18671649 27 9.749811 Anserini +test1561 Q0 20372146 28 9.736453 Anserini +test1561 Q0 120446 29 9.736453 Anserini +test1561 Q0 11496154 30 9.735334 Anserini +test1562 Q0 15046636 1 17.858917 Anserini +test1562 Q0 999594 2 17.857185 Anserini +test1562 Q0 999617 3 17.681931 Anserini +test1562 Q0 19659766 4 17.655279 Anserini +test1562 Q0 2565532 5 17.474573 Anserini +test1562 Q0 19659768 6 17.355009 Anserini +test1562 Q0 999650 7 17.284414 Anserini +test1562 Q0 11026409 8 16.950171 Anserini +test1562 Q0 999574 9 16.931740 Anserini +test1562 Q0 8261933 10 16.921535 Anserini +test1562 Q0 4379797 11 16.883501 Anserini +test1562 Q0 15046625 12 16.811689 Anserini +test1562 Q0 2570000 13 16.780014 Anserini +test1562 Q0 9757452 14 16.773205 Anserini +test1562 Q0 9757444 15 16.773205 Anserini +test1562 Q0 999601 16 16.656645 Anserini +test1562 Q0 12347188 17 16.533056 Anserini +test1562 Q0 4735280 18 16.509481 Anserini +test1562 Q0 15046637 19 16.493193 Anserini +test1562 Q0 999649 20 16.484278 Anserini +test1562 Q0 999600 21 16.435822 Anserini +test1562 Q0 19659770 22 16.428875 Anserini +test1562 Q0 927364 23 16.423069 Anserini +test1562 Q0 10615088 24 16.282661 Anserini +test1562 Q0 17855951 25 16.253170 Anserini +test1562 Q0 4379805 26 16.233646 Anserini +test1562 Q0 12051493 27 16.201384 Anserini +test1562 Q0 12051494 28 16.201384 Anserini +test1562 Q0 4735265 29 16.107313 Anserini +test1562 Q0 17855944 30 16.021574 Anserini +test1563 Q0 8995906 1 15.659603 Anserini +test1563 Q0 8995908 2 15.267825 Anserini +test1563 Q0 9865803 3 12.841822 Anserini +test1563 Q0 2623072 4 12.784112 Anserini +test1563 Q0 17953815 5 12.438919 Anserini +test1563 Q0 18365548 6 12.185633 Anserini +test1563 Q0 8995907 7 12.152287 Anserini +test1563 Q0 3649332 8 12.057002 Anserini +test1563 Q0 4812111 9 12.040323 Anserini +test1563 Q0 9865802 10 12.026960 Anserini +test1563 Q0 19269872 11 11.926774 Anserini +test1563 Q0 11937422 12 11.878702 Anserini +test1563 Q0 1338819 13 11.803691 Anserini +test1563 Q0 18321429 14 11.789466 Anserini +test1563 Q0 15057925 15 11.731152 Anserini +test1563 Q0 14604437 16 11.616693 Anserini +test1563 Q0 13673995 17 11.537393 Anserini +test1563 Q0 14376975 18 11.513800 Anserini +test1563 Q0 13911310 19 11.321155 Anserini +test1563 Q0 16369599 20 11.319620 Anserini +test1563 Q0 2067696 21 11.293821 Anserini +test1563 Q0 18734729 22 11.253192 Anserini +test1563 Q0 3787711 23 11.243257 Anserini +test1563 Q0 20579883 24 11.238596 Anserini +test1563 Q0 6523103 25 11.228082 Anserini +test1563 Q0 5229686 26 11.224835 Anserini +test1563 Q0 8958919 27 11.142315 Anserini +test1563 Q0 10239965 28 11.139526 Anserini +test1563 Q0 11012332 29 11.094924 Anserini +test1563 Q0 9882004 30 11.062854 Anserini +test1564 Q0 9626408 1 13.059818 Anserini +test1564 Q0 15440730 2 13.043001 Anserini +test1564 Q0 9626409 3 12.537408 Anserini +test1564 Q0 20392043 4 11.747034 Anserini +test1564 Q0 15600304 5 11.446656 Anserini +test1564 Q0 14319424 6 11.085313 Anserini +test1564 Q0 15534837 7 11.014634 Anserini +test1564 Q0 4227332 8 10.902380 Anserini +test1564 Q0 15534838 9 10.843315 Anserini +test1564 Q0 13393455 10 10.806583 Anserini +test1564 Q0 5126093 11 10.737169 Anserini +test1564 Q0 6924097 12 10.735171 Anserini +test1564 Q0 14319426 13 10.654983 Anserini +test1564 Q0 7302644 14 10.595946 Anserini +test1564 Q0 13393456 15 10.522847 Anserini +test1564 Q0 16053336 16 10.374157 Anserini +test1564 Q0 14319428 17 10.360669 Anserini +test1564 Q0 14319411 18 10.360669 Anserini +test1564 Q0 4075958 19 10.315726 Anserini +test1564 Q0 4075926 20 10.256877 Anserini +test1564 Q0 20392044 21 10.252920 Anserini +test1564 Q0 14310557 22 10.195164 Anserini +test1564 Q0 20414332 23 10.154955 Anserini +test1564 Q0 20414330 24 10.114609 Anserini +test1564 Q0 1348005 25 10.109617 Anserini +test1564 Q0 15440729 26 10.080651 Anserini +test1564 Q0 11904920 27 10.062016 Anserini +test1564 Q0 16591523 28 10.044328 Anserini +test1564 Q0 4076013 29 10.010273 Anserini +test1564 Q0 15791179 30 9.901850 Anserini +test1565 Q0 9318804 1 11.975417 Anserini +test1565 Q0 8449784 2 11.058231 Anserini +test1565 Q0 13659463 3 10.831576 Anserini +test1565 Q0 15646188 4 10.366416 Anserini +test1565 Q0 6723710 5 10.363123 Anserini +test1565 Q0 15897741 6 10.308841 Anserini +test1565 Q0 19080644 7 10.299361 Anserini +test1565 Q0 772777 8 10.209924 Anserini +test1565 Q0 6314851 9 10.080516 Anserini +test1565 Q0 16276762 10 10.066293 Anserini +test1565 Q0 17661477 11 10.058722 Anserini +test1565 Q0 2129699 12 10.041618 Anserini +test1565 Q0 16241241 13 10.038706 Anserini +test1565 Q0 11265580 14 10.019163 Anserini +test1565 Q0 3805523 15 10.019163 Anserini +test1565 Q0 18650498 16 10.003081 Anserini +test1565 Q0 8481385 17 9.996926 Anserini +test1565 Q0 4073301 18 9.971786 Anserini +test1565 Q0 16860129 19 9.877741 Anserini +test1565 Q0 6690996 20 9.819483 Anserini +test1565 Q0 371202 21 9.806372 Anserini +test1565 Q0 9318818 22 9.776622 Anserini +test1565 Q0 6217078 23 9.775714 Anserini +test1565 Q0 8858248 24 9.714956 Anserini +test1565 Q0 18645546 25 9.708360 Anserini +test1565 Q0 1932555 26 9.650467 Anserini +test1565 Q0 8587174 27 9.632431 Anserini +test1565 Q0 9318817 28 9.619538 Anserini +test1565 Q0 7696738 29 9.610336 Anserini +test1565 Q0 19336414 30 9.571856 Anserini +test1566 Q0 3901503 1 13.137465 Anserini +test1566 Q0 3901496 2 12.886648 Anserini +test1566 Q0 3901491 3 12.065565 Anserini +test1566 Q0 20674806 4 11.638266 Anserini +test1566 Q0 3901494 5 11.638266 Anserini +test1566 Q0 4664548 6 11.164524 Anserini +test1566 Q0 18946976 7 11.064877 Anserini +test1566 Q0 10959413 8 10.780445 Anserini +test1566 Q0 20674808 9 10.718797 Anserini +test1566 Q0 3901495 10 10.572470 Anserini +test1566 Q0 2706342 11 10.450805 Anserini +test1566 Q0 2722377 12 10.335785 Anserini +test1566 Q0 3901498 13 10.299240 Anserini +test1566 Q0 402733 14 10.237430 Anserini +test1566 Q0 19365482 15 10.194032 Anserini +test1566 Q0 19969872 16 10.191563 Anserini +test1566 Q0 11161618 17 10.176383 Anserini +test1566 Q0 3918993 18 10.148359 Anserini +test1566 Q0 9423732 19 10.007217 Anserini +test1566 Q0 2722378 20 9.985442 Anserini +test1566 Q0 11366697 21 9.966741 Anserini +test1566 Q0 2277206 22 9.864006 Anserini +test1566 Q0 20152991 23 9.798879 Anserini +test1566 Q0 2040750 24 9.724469 Anserini +test1566 Q0 11737787 25 9.704020 Anserini +test1566 Q0 16521715 26 9.702019 Anserini +test1566 Q0 18992616 27 9.689087 Anserini +test1566 Q0 20306854 28 9.617733 Anserini +test1566 Q0 11161624 29 9.595188 Anserini +test1566 Q0 3901497 30 9.569637 Anserini +test1567 Q0 3000582 1 17.715813 Anserini +test1567 Q0 440452 2 17.345497 Anserini +test1567 Q0 8999849 3 16.984411 Anserini +test1567 Q0 15183188 4 15.079117 Anserini +test1567 Q0 8888168 5 14.991141 Anserini +test1567 Q0 3000584 6 14.983440 Anserini +test1567 Q0 5120966 7 14.947951 Anserini +test1567 Q0 7528770 8 14.617602 Anserini +test1567 Q0 15183190 9 14.595878 Anserini +test1567 Q0 3000583 10 14.186833 Anserini +test1567 Q0 1987918 11 14.009935 Anserini +test1567 Q0 14220306 12 14.008467 Anserini +test1567 Q0 8999848 13 13.963932 Anserini +test1567 Q0 5178111 14 13.960861 Anserini +test1567 Q0 12002872 15 13.940199 Anserini +test1567 Q0 3000577 16 13.894037 Anserini +test1567 Q0 3000586 17 13.850209 Anserini +test1567 Q0 3000579 18 13.840416 Anserini +test1567 Q0 14304708 19 13.830168 Anserini +test1567 Q0 7528772 20 13.691292 Anserini +test1567 Q0 19091196 21 13.600061 Anserini +test1567 Q0 3000593 22 13.547244 Anserini +test1567 Q0 11729565 23 13.496531 Anserini +test1567 Q0 12090186 24 13.482484 Anserini +test1567 Q0 13482182 25 13.462557 Anserini +test1567 Q0 11276987 26 13.367860 Anserini +test1567 Q0 8888191 27 13.327620 Anserini +test1567 Q0 8888187 28 13.312201 Anserini +test1567 Q0 18942540 29 13.297318 Anserini +test1567 Q0 15322947 30 13.284033 Anserini +test1568 Q0 3232436 1 20.347439 Anserini +test1568 Q0 16660278 2 20.207605 Anserini +test1568 Q0 20119073 3 20.116652 Anserini +test1568 Q0 3232431 4 19.752993 Anserini +test1568 Q0 15723098 5 19.743567 Anserini +test1568 Q0 3232441 6 19.679295 Anserini +test1568 Q0 5239481 7 19.509829 Anserini +test1568 Q0 1488139 8 19.393835 Anserini +test1568 Q0 3232450 9 19.292173 Anserini +test1568 Q0 19752453 10 18.732819 Anserini +test1568 Q0 3232440 11 18.455612 Anserini +test1568 Q0 3232432 12 18.444651 Anserini +test1568 Q0 15723093 13 18.339458 Anserini +test1568 Q0 15723110 14 18.339458 Anserini +test1568 Q0 1488136 15 18.281021 Anserini +test1568 Q0 4273950 16 18.258944 Anserini +test1568 Q0 3232442 17 18.247023 Anserini +test1568 Q0 1488140 18 18.114599 Anserini +test1568 Q0 20119072 19 18.078117 Anserini +test1568 Q0 16869145 20 18.059114 Anserini +test1568 Q0 16869147 21 17.785812 Anserini +test1568 Q0 3232434 22 17.697731 Anserini +test1568 Q0 1488131 23 17.686913 Anserini +test1568 Q0 16869143 24 17.682579 Anserini +test1568 Q0 427555 25 17.632679 Anserini +test1568 Q0 16660279 26 17.612320 Anserini +test1568 Q0 16660267 27 17.489925 Anserini +test1568 Q0 773955 28 17.456129 Anserini +test1568 Q0 20119076 29 17.423920 Anserini +test1568 Q0 3877057 30 17.411501 Anserini +test1569 Q0 9835993 1 13.433616 Anserini +test1569 Q0 91151 2 13.329155 Anserini +test1569 Q0 278111 3 12.073726 Anserini +test1569 Q0 14355667 4 12.024290 Anserini +test1569 Q0 8078910 5 11.597185 Anserini +test1569 Q0 16464282 6 11.531946 Anserini +test1569 Q0 12804398 7 11.515544 Anserini +test1569 Q0 20127791 8 11.497571 Anserini +test1569 Q0 14082931 9 11.467773 Anserini +test1569 Q0 3356422 10 11.171095 Anserini +test1569 Q0 17512960 11 11.113005 Anserini +test1569 Q0 262319 12 11.095774 Anserini +test1569 Q0 91182 13 11.076214 Anserini +test1569 Q0 91145 14 11.067572 Anserini +test1569 Q0 91168 15 11.055386 Anserini +test1569 Q0 6920462 16 11.039045 Anserini +test1569 Q0 251328 17 11.033995 Anserini +test1569 Q0 91184 18 11.028355 Anserini +test1569 Q0 294496 19 11.025434 Anserini +test1569 Q0 15650278 20 10.994745 Anserini +test1569 Q0 7331282 21 10.971260 Anserini +test1569 Q0 91146 22 10.894282 Anserini +test1569 Q0 17402083 23 10.878767 Anserini +test1569 Q0 3489018 24 10.878767 Anserini +test1569 Q0 18406218 25 10.821064 Anserini +test1569 Q0 9606264 26 10.800959 Anserini +test1569 Q0 1731834 27 10.800959 Anserini +test1569 Q0 91149 28 10.784002 Anserini +test1569 Q0 2950666 29 10.777582 Anserini +test1569 Q0 7327551 30 10.750764 Anserini +test157 Q0 13743153 1 17.483774 Anserini +test157 Q0 13743150 2 15.456022 Anserini +test157 Q0 5815158 3 12.673878 Anserini +test157 Q0 3379661 4 12.555336 Anserini +test157 Q0 16733978 5 12.510536 Anserini +test157 Q0 7132405 6 12.447165 Anserini +test157 Q0 2174790 7 11.824071 Anserini +test157 Q0 17893311 8 11.735749 Anserini +test157 Q0 7689658 9 11.636793 Anserini +test157 Q0 14688203 10 11.595238 Anserini +test157 Q0 7767092 11 11.211960 Anserini +test157 Q0 7035209 12 11.168418 Anserini +test157 Q0 14711331 13 11.093212 Anserini +test157 Q0 4741676 14 11.012633 Anserini +test157 Q0 8003909 15 10.974712 Anserini +test157 Q0 9151940 16 10.887959 Anserini +test157 Q0 13759035 17 10.849795 Anserini +test157 Q0 6292893 18 10.829988 Anserini +test157 Q0 3414940 19 10.750394 Anserini +test157 Q0 19410912 20 10.735882 Anserini +test157 Q0 15104138 21 10.688363 Anserini +test157 Q0 4287976 22 10.663909 Anserini +test157 Q0 15694988 23 10.588410 Anserini +test157 Q0 4818709 24 10.582424 Anserini +test157 Q0 13919793 25 10.579719 Anserini +test157 Q0 12375414 26 10.579109 Anserini +test157 Q0 13553011 27 10.552104 Anserini +test157 Q0 8003908 28 10.516522 Anserini +test157 Q0 7598758 29 10.508636 Anserini +test157 Q0 4454556 30 10.505751 Anserini +test1570 Q0 6931411 1 15.561001 Anserini +test1570 Q0 9213284 2 15.433707 Anserini +test1570 Q0 18983815 3 15.000777 Anserini +test1570 Q0 9213278 4 14.800913 Anserini +test1570 Q0 8952976 5 14.787636 Anserini +test1570 Q0 13208441 6 14.309103 Anserini +test1570 Q0 6933362 7 13.803946 Anserini +test1570 Q0 9213277 8 13.800306 Anserini +test1570 Q0 19042803 9 13.597580 Anserini +test1570 Q0 6933355 10 13.568839 Anserini +test1570 Q0 6931408 11 13.474665 Anserini +test1570 Q0 9213287 12 13.285542 Anserini +test1570 Q0 3814269 13 13.218944 Anserini +test1570 Q0 838177 14 13.187158 Anserini +test1570 Q0 13208051 15 13.181814 Anserini +test1570 Q0 13208057 16 13.066401 Anserini +test1570 Q0 6933363 17 13.053883 Anserini +test1570 Q0 6931392 18 12.955058 Anserini +test1570 Q0 6931412 19 12.912339 Anserini +test1570 Q0 13566388 20 12.907471 Anserini +test1570 Q0 8952979 21 12.898429 Anserini +test1570 Q0 19042801 22 12.898429 Anserini +test1570 Q0 2982564 23 12.898429 Anserini +test1570 Q0 18983816 24 12.898429 Anserini +test1570 Q0 6931404 25 12.826818 Anserini +test1570 Q0 19042788 26 12.732803 Anserini +test1570 Q0 5592434 27 12.727812 Anserini +test1570 Q0 3807976 28 12.561695 Anserini +test1570 Q0 838165 29 12.532628 Anserini +test1570 Q0 7733088 30 12.482576 Anserini +test1571 Q0 698031 1 14.465711 Anserini +test1571 Q0 17669271 2 14.422634 Anserini +test1571 Q0 3959878 3 13.783686 Anserini +test1571 Q0 9433 4 13.069660 Anserini +test1571 Q0 9494 5 12.580956 Anserini +test1571 Q0 20611444 6 12.453785 Anserini +test1571 Q0 20426219 7 12.425636 Anserini +test1571 Q0 9434 8 12.325593 Anserini +test1571 Q0 9044208 9 12.243263 Anserini +test1571 Q0 15200095 10 11.814065 Anserini +test1571 Q0 10811704 11 11.775414 Anserini +test1571 Q0 12042728 12 11.660097 Anserini +test1571 Q0 8971437 13 11.617241 Anserini +test1571 Q0 13242861 14 11.616925 Anserini +test1571 Q0 57532 15 11.613715 Anserini +test1571 Q0 136973 16 11.410427 Anserini +test1571 Q0 9634837 17 11.376593 Anserini +test1571 Q0 369463 18 11.131686 Anserini +test1571 Q0 363878 19 11.082079 Anserini +test1571 Q0 16028909 20 11.075359 Anserini +test1571 Q0 17582363 21 11.071638 Anserini +test1571 Q0 5142606 22 11.062643 Anserini +test1571 Q0 14148770 23 11.036507 Anserini +test1571 Q0 4445578 24 10.888404 Anserini +test1571 Q0 7674755 25 10.887400 Anserini +test1571 Q0 14148787 26 10.732609 Anserini +test1571 Q0 8049189 27 10.705988 Anserini +test1571 Q0 16396082 28 10.703283 Anserini +test1571 Q0 16396084 29 10.703283 Anserini +test1571 Q0 20813748 30 10.638214 Anserini +test1572 Q0 11196063 1 11.248434 Anserini +test1572 Q0 9802492 2 10.948615 Anserini +test1572 Q0 1278598 3 10.622305 Anserini +test1572 Q0 13566657 4 9.841729 Anserini +test1572 Q0 7603874 5 9.565382 Anserini +test1572 Q0 9337723 6 9.329366 Anserini +test1572 Q0 6663406 7 9.152940 Anserini +test1572 Q0 19996299 8 9.127331 Anserini +test1572 Q0 20562007 9 9.048883 Anserini +test1572 Q0 7683604 10 9.011757 Anserini +test1572 Q0 13566649 11 8.956002 Anserini +test1572 Q0 819339 12 8.904872 Anserini +test1572 Q0 6663408 13 8.901240 Anserini +test1572 Q0 12172530 14 8.862988 Anserini +test1572 Q0 4681697 15 8.849363 Anserini +test1572 Q0 6689132 16 8.833751 Anserini +test1572 Q0 2948062 17 8.821253 Anserini +test1572 Q0 11949256 18 8.805073 Anserini +test1572 Q0 10732097 19 8.793435 Anserini +test1572 Q0 7201366 20 8.760699 Anserini +test1572 Q0 4450641 21 8.744872 Anserini +test1572 Q0 3348218 22 8.678763 Anserini +test1572 Q0 12171491 23 8.632947 Anserini +test1572 Q0 11678582 24 8.621645 Anserini +test1572 Q0 8436386 25 8.608074 Anserini +test1572 Q0 12864112 26 8.553799 Anserini +test1572 Q0 839830 27 8.518161 Anserini +test1572 Q0 6756513 28 8.497809 Anserini +test1572 Q0 8151086 29 8.477298 Anserini +test1572 Q0 2514675 30 8.377038 Anserini +test1573 Q0 13313913 1 13.155606 Anserini +test1573 Q0 11986323 2 12.658139 Anserini +test1573 Q0 1300658 3 12.199743 Anserini +test1573 Q0 8238674 4 12.067738 Anserini +test1573 Q0 1300674 5 12.027636 Anserini +test1573 Q0 11103271 6 11.797081 Anserini +test1573 Q0 1320912 7 11.584444 Anserini +test1573 Q0 10987561 8 11.571123 Anserini +test1573 Q0 9910218 9 11.523433 Anserini +test1573 Q0 768420 10 11.497601 Anserini +test1573 Q0 17505517 11 11.263539 Anserini +test1573 Q0 4449182 12 11.255000 Anserini +test1573 Q0 4589436 13 11.233457 Anserini +test1573 Q0 14882259 14 11.154761 Anserini +test1573 Q0 18422514 15 11.127320 Anserini +test1573 Q0 1299104 16 11.049416 Anserini +test1573 Q0 1632867 17 11.041905 Anserini +test1573 Q0 15003127 18 10.999369 Anserini +test1573 Q0 8013458 19 10.990870 Anserini +test1573 Q0 18918579 20 10.980021 Anserini +test1573 Q0 1517851 21 10.966964 Anserini +test1573 Q0 140522 22 10.962071 Anserini +test1573 Q0 8039740 23 10.915380 Anserini +test1573 Q0 4449139 24 10.908940 Anserini +test1573 Q0 11553197 25 10.883535 Anserini +test1573 Q0 17399257 26 10.861166 Anserini +test1573 Q0 11103280 27 10.845556 Anserini +test1573 Q0 2441520 28 10.844459 Anserini +test1573 Q0 15230852 29 10.820610 Anserini +test1573 Q0 14631150 30 10.744743 Anserini +test1574 Q0 10651065 1 14.458191 Anserini +test1574 Q0 10651066 2 14.458191 Anserini +test1574 Q0 11984109 3 14.284968 Anserini +test1574 Q0 5840913 4 14.140701 Anserini +test1574 Q0 8458336 5 13.262552 Anserini +test1574 Q0 8458343 6 13.226295 Anserini +test1574 Q0 8458341 7 12.912386 Anserini +test1574 Q0 12039635 8 12.889535 Anserini +test1574 Q0 12545637 9 12.624654 Anserini +test1574 Q0 12545639 10 12.624654 Anserini +test1574 Q0 10682428 11 12.360847 Anserini +test1574 Q0 15456938 12 12.342816 Anserini +test1574 Q0 18561774 13 12.318870 Anserini +test1574 Q0 5416610 14 12.083757 Anserini +test1574 Q0 20264070 15 12.061992 Anserini +test1574 Q0 10732666 16 12.014160 Anserini +test1574 Q0 12378901 17 11.902468 Anserini +test1574 Q0 4114297 18 11.771773 Anserini +test1574 Q0 18013954 19 11.726462 Anserini +test1574 Q0 3902812 20 11.701493 Anserini +test1574 Q0 4114295 21 11.696038 Anserini +test1574 Q0 12039637 22 11.535807 Anserini +test1574 Q0 13197303 23 11.534565 Anserini +test1574 Q0 17973829 24 11.507573 Anserini +test1574 Q0 13177111 25 11.402617 Anserini +test1574 Q0 16803302 26 11.381886 Anserini +test1574 Q0 1774086 27 11.364173 Anserini +test1574 Q0 6469469 28 11.311889 Anserini +test1574 Q0 6469470 29 11.311889 Anserini +test1574 Q0 4783301 30 11.296306 Anserini +test1575 Q0 17995904 1 16.099882 Anserini +test1575 Q0 17995908 2 15.800483 Anserini +test1575 Q0 20823847 3 15.111855 Anserini +test1575 Q0 6877950 4 14.348029 Anserini +test1575 Q0 10315909 5 14.098737 Anserini +test1575 Q0 10145782 6 14.078762 Anserini +test1575 Q0 2199960 7 14.038586 Anserini +test1575 Q0 12400688 8 13.647775 Anserini +test1575 Q0 7700825 9 13.291228 Anserini +test1575 Q0 5421452 10 13.212049 Anserini +test1575 Q0 17364831 11 13.121878 Anserini +test1575 Q0 2199966 12 12.914522 Anserini +test1575 Q0 8367349 13 12.796572 Anserini +test1575 Q0 7297592 14 12.796441 Anserini +test1575 Q0 5710108 15 12.755633 Anserini +test1575 Q0 4538305 16 12.702420 Anserini +test1575 Q0 6617213 17 12.682258 Anserini +test1575 Q0 5710113 18 12.677371 Anserini +test1575 Q0 10806300 19 12.564799 Anserini +test1575 Q0 2199969 20 12.535681 Anserini +test1575 Q0 2200091 21 12.528834 Anserini +test1575 Q0 10871103 22 12.475878 Anserini +test1575 Q0 11770558 23 12.468049 Anserini +test1575 Q0 16344513 24 12.450740 Anserini +test1575 Q0 16344516 25 12.450740 Anserini +test1575 Q0 17684772 26 12.427445 Anserini +test1575 Q0 9502181 27 12.257257 Anserini +test1575 Q0 2199970 28 12.247229 Anserini +test1575 Q0 2542823 29 12.221962 Anserini +test1575 Q0 12336960 30 12.217914 Anserini +test1576 Q0 611594 1 19.769253 Anserini +test1576 Q0 422811 2 19.457451 Anserini +test1576 Q0 650704 3 18.081408 Anserini +test1576 Q0 310493 4 18.081284 Anserini +test1576 Q0 15091199 5 17.904396 Anserini +test1576 Q0 310490 6 17.464088 Anserini +test1576 Q0 1639058 7 17.229042 Anserini +test1576 Q0 1639046 8 16.676052 Anserini +test1576 Q0 1639047 9 16.568510 Anserini +test1576 Q0 405386 10 16.404535 Anserini +test1576 Q0 650702 11 16.147984 Anserini +test1576 Q0 1639054 12 15.918321 Anserini +test1576 Q0 2991266 13 15.793606 Anserini +test1576 Q0 26020 14 15.692877 Anserini +test1576 Q0 12961195 15 15.656343 Anserini +test1576 Q0 1639055 16 15.631420 Anserini +test1576 Q0 244135 17 15.485701 Anserini +test1576 Q0 592638 18 15.420135 Anserini +test1576 Q0 16916806 19 15.406112 Anserini +test1576 Q0 16907987 20 15.392307 Anserini +test1576 Q0 2652418 21 15.360678 Anserini +test1576 Q0 1720877 22 15.246494 Anserini +test1576 Q0 1961165 23 15.239450 Anserini +test1576 Q0 18134971 24 15.106396 Anserini +test1576 Q0 13590638 25 15.085749 Anserini +test1576 Q0 17778297 26 15.040748 Anserini +test1576 Q0 6206734 27 14.982060 Anserini +test1576 Q0 310494 28 14.978227 Anserini +test1576 Q0 1830953 29 14.956611 Anserini +test1576 Q0 310485 30 14.813603 Anserini +test1577 Q0 7397280 1 13.316760 Anserini +test1577 Q0 12432292 2 13.256413 Anserini +test1577 Q0 309995 3 13.132941 Anserini +test1577 Q0 475110 4 13.112873 Anserini +test1577 Q0 7397279 5 13.086845 Anserini +test1577 Q0 15979087 6 12.610509 Anserini +test1577 Q0 19465156 7 12.499547 Anserini +test1577 Q0 475122 8 12.484914 Anserini +test1577 Q0 9620188 9 12.236743 Anserini +test1577 Q0 9620189 10 12.236743 Anserini +test1577 Q0 1433331 11 12.210943 Anserini +test1577 Q0 10460308 12 12.138741 Anserini +test1577 Q0 18700427 13 12.071805 Anserini +test1577 Q0 7102461 14 12.059179 Anserini +test1577 Q0 10281384 15 12.049326 Anserini +test1577 Q0 9995074 16 11.883950 Anserini +test1577 Q0 13146546 17 11.838766 Anserini +test1577 Q0 13146549 18 11.815668 Anserini +test1577 Q0 442986 19 11.795021 Anserini +test1577 Q0 18410085 20 11.787677 Anserini +test1577 Q0 11153906 21 11.622797 Anserini +test1577 Q0 13170462 22 11.560551 Anserini +test1577 Q0 11580644 23 11.542036 Anserini +test1577 Q0 13170460 24 11.416039 Anserini +test1577 Q0 13170463 25 11.416039 Anserini +test1577 Q0 2798638 26 11.343004 Anserini +test1577 Q0 15111161 27 11.316331 Anserini +test1577 Q0 475138 28 11.285992 Anserini +test1577 Q0 1350534 29 11.261823 Anserini +test1577 Q0 15234926 30 11.158893 Anserini +test1578 Q0 510022 1 13.492699 Anserini +test1578 Q0 8972234 2 13.479183 Anserini +test1578 Q0 1036273 3 13.336891 Anserini +test1578 Q0 510030 4 12.664919 Anserini +test1578 Q0 19029147 5 12.581330 Anserini +test1578 Q0 1371856 6 12.481913 Anserini +test1578 Q0 510021 7 12.113982 Anserini +test1578 Q0 510020 8 12.013367 Anserini +test1578 Q0 10227515 9 11.964643 Anserini +test1578 Q0 9057696 10 11.941160 Anserini +test1578 Q0 17912151 11 11.774141 Anserini +test1578 Q0 510017 12 11.697743 Anserini +test1578 Q0 16111630 13 11.624004 Anserini +test1578 Q0 510018 14 11.417953 Anserini +test1578 Q0 10952785 15 11.273272 Anserini +test1578 Q0 18301695 16 11.255767 Anserini +test1578 Q0 12034213 17 11.236120 Anserini +test1578 Q0 12647563 18 11.171736 Anserini +test1578 Q0 12647564 19 11.171736 Anserini +test1578 Q0 17124093 20 11.089014 Anserini +test1578 Q0 11027450 21 11.043324 Anserini +test1578 Q0 11027452 22 11.043324 Anserini +test1578 Q0 6539502 23 11.025800 Anserini +test1578 Q0 57577 24 11.005282 Anserini +test1578 Q0 15097005 25 10.852299 Anserini +test1578 Q0 14284032 26 10.772086 Anserini +test1578 Q0 10952784 27 10.738465 Anserini +test1578 Q0 1015854 28 10.736071 Anserini +test1578 Q0 510026 29 10.692410 Anserini +test1578 Q0 17859813 30 10.677982 Anserini +test1579 Q0 773024 1 14.425595 Anserini +test1579 Q0 9660962 2 14.034992 Anserini +test1579 Q0 6490778 3 14.029998 Anserini +test1579 Q0 7516178 4 13.943834 Anserini +test1579 Q0 6271970 5 13.727386 Anserini +test1579 Q0 6490775 6 13.712482 Anserini +test1579 Q0 3878791 7 13.590360 Anserini +test1579 Q0 9001956 8 13.388130 Anserini +test1579 Q0 20484367 9 13.363390 Anserini +test1579 Q0 14280759 10 13.357901 Anserini +test1579 Q0 20970131 11 13.309548 Anserini +test1579 Q0 11290510 12 13.222223 Anserini +test1579 Q0 9522602 13 13.191031 Anserini +test1579 Q0 4174805 14 12.995688 Anserini +test1579 Q0 783400 15 12.937415 Anserini +test1579 Q0 7155959 16 12.889683 Anserini +test1579 Q0 4767827 17 12.882470 Anserini +test1579 Q0 8803320 18 12.818337 Anserini +test1579 Q0 5192799 19 12.750726 Anserini +test1579 Q0 11321873 20 12.740539 Anserini +test1579 Q0 7516188 21 12.727100 Anserini +test1579 Q0 9765550 22 12.715501 Anserini +test1579 Q0 7155961 23 12.698790 Anserini +test1579 Q0 7022161 24 12.658745 Anserini +test1579 Q0 10591964 25 12.596447 Anserini +test1579 Q0 9747343 26 12.576713 Anserini +test1579 Q0 5094989 27 12.453349 Anserini +test1579 Q0 11606625 28 12.365314 Anserini +test1579 Q0 14680835 29 12.358938 Anserini +test1579 Q0 17525629 30 12.328779 Anserini +test158 Q0 1602825 1 13.971591 Anserini +test158 Q0 2143551 2 12.554887 Anserini +test158 Q0 4344453 3 12.415614 Anserini +test158 Q0 11813181 4 12.345471 Anserini +test158 Q0 7088612 5 12.340656 Anserini +test158 Q0 18019756 6 12.335382 Anserini +test158 Q0 18019740 7 12.335382 Anserini +test158 Q0 7084274 8 12.300558 Anserini +test158 Q0 661380 9 12.209182 Anserini +test158 Q0 11813171 10 12.190590 Anserini +test158 Q0 17991485 11 12.142160 Anserini +test158 Q0 2736653 12 12.141935 Anserini +test158 Q0 4552674 13 12.027645 Anserini +test158 Q0 11779879 14 11.979126 Anserini +test158 Q0 16893347 15 11.882756 Anserini +test158 Q0 9889494 16 11.856485 Anserini +test158 Q0 20417239 17 11.851098 Anserini +test158 Q0 94993 18 11.846379 Anserini +test158 Q0 2847483 19 11.842809 Anserini +test158 Q0 16893350 20 11.816512 Anserini +test158 Q0 4736775 21 11.807502 Anserini +test158 Q0 3150686 22 11.787820 Anserini +test158 Q0 15309223 23 11.775780 Anserini +test158 Q0 412382 24 11.770502 Anserini +test158 Q0 2594393 25 11.734683 Anserini +test158 Q0 4741990 26 11.705061 Anserini +test158 Q0 3346124 27 11.697562 Anserini +test158 Q0 7671919 28 11.695780 Anserini +test158 Q0 11740400 29 11.694947 Anserini +test158 Q0 3150683 30 11.688279 Anserini +test1580 Q0 1563345 1 10.498522 Anserini +test1580 Q0 1965657 2 10.438143 Anserini +test1580 Q0 13934525 3 10.398148 Anserini +test1580 Q0 13934537 4 10.398148 Anserini +test1580 Q0 13908722 5 10.263220 Anserini +test1580 Q0 1563367 6 10.217248 Anserini +test1580 Q0 19881541 7 10.217248 Anserini +test1580 Q0 13908743 8 10.217248 Anserini +test1580 Q0 1563321 9 10.171819 Anserini +test1580 Q0 19881561 10 10.171819 Anserini +test1580 Q0 1563348 11 10.061506 Anserini +test1580 Q0 1563370 12 10.021557 Anserini +test1580 Q0 14115962 13 10.005509 Anserini +test1580 Q0 14421776 14 9.896901 Anserini +test1580 Q0 14115973 15 9.853111 Anserini +test1580 Q0 1563322 16 9.853111 Anserini +test1580 Q0 13934533 17 9.853111 Anserini +test1580 Q0 4595076 18 9.669003 Anserini +test1580 Q0 13908732 19 9.669003 Anserini +test1580 Q0 1563347 20 9.615402 Anserini +test1580 Q0 9347129 21 9.484754 Anserini +test1580 Q0 19881555 22 9.427478 Anserini +test1580 Q0 8842006 23 9.370965 Anserini +test1580 Q0 1563346 24 9.370965 Anserini +test1580 Q0 4614734 25 9.325504 Anserini +test1580 Q0 1563360 26 9.306664 Anserini +test1580 Q0 14421773 27 9.290066 Anserini +test1580 Q0 1563368 28 9.287704 Anserini +test1580 Q0 1563358 29 9.235000 Anserini +test1580 Q0 1563362 30 9.235000 Anserini +test1581 Q0 17876208 1 15.914344 Anserini +test1581 Q0 11812867 2 15.883327 Anserini +test1581 Q0 498982 3 15.836727 Anserini +test1581 Q0 8422616 4 15.821795 Anserini +test1581 Q0 19692028 5 15.637363 Anserini +test1581 Q0 6131970 6 15.533154 Anserini +test1581 Q0 7032783 7 15.386125 Anserini +test1581 Q0 19140373 8 15.369189 Anserini +test1581 Q0 17090251 9 15.337121 Anserini +test1581 Q0 11280746 10 15.305970 Anserini +test1581 Q0 14233774 11 15.195899 Anserini +test1581 Q0 16484141 12 15.158838 Anserini +test1581 Q0 19789918 13 15.128510 Anserini +test1581 Q0 5078249 14 15.087136 Anserini +test1581 Q0 17090249 15 15.077888 Anserini +test1581 Q0 12823121 16 15.077888 Anserini +test1581 Q0 9725253 17 14.995787 Anserini +test1581 Q0 9725254 18 14.995787 Anserini +test1581 Q0 19140374 19 14.980038 Anserini +test1581 Q0 14263439 20 14.951114 Anserini +test1581 Q0 10132317 21 14.885131 Anserini +test1581 Q0 20312245 22 14.844307 Anserini +test1581 Q0 15829575 23 14.818793 Anserini +test1581 Q0 17876224 24 14.813612 Anserini +test1581 Q0 19789916 25 14.772159 Anserini +test1581 Q0 20312246 26 14.766866 Anserini +test1581 Q0 16520748 27 14.737100 Anserini +test1581 Q0 1413912 28 14.727077 Anserini +test1581 Q0 15971861 29 14.726595 Anserini +test1581 Q0 16772489 30 14.709305 Anserini +test1582 Q0 10511367 1 12.105527 Anserini +test1582 Q0 10511368 2 11.826926 Anserini +test1582 Q0 20806163 3 11.753852 Anserini +test1582 Q0 7401410 4 10.905149 Anserini +test1582 Q0 15179394 5 10.802019 Anserini +test1582 Q0 7846362 6 10.556021 Anserini +test1582 Q0 2358671 7 10.201271 Anserini +test1582 Q0 10166317 8 10.196356 Anserini +test1582 Q0 5103743 9 10.046128 Anserini +test1582 Q0 20840815 10 10.019022 Anserini +test1582 Q0 15598326 11 9.977106 Anserini +test1582 Q0 4836296 12 9.902273 Anserini +test1582 Q0 17060029 13 9.899991 Anserini +test1582 Q0 17059992 14 9.892587 Anserini +test1582 Q0 17060018 15 9.871087 Anserini +test1582 Q0 17059994 16 9.864044 Anserini +test1582 Q0 13581069 17 9.860154 Anserini +test1582 Q0 9750144 18 9.825127 Anserini +test1582 Q0 15176486 19 9.808379 Anserini +test1582 Q0 17069253 20 9.750825 Anserini +test1582 Q0 17069245 21 9.750825 Anserini +test1582 Q0 4259492 22 9.654749 Anserini +test1582 Q0 12701466 23 9.496009 Anserini +test1582 Q0 17258545 24 9.495063 Anserini +test1582 Q0 19318396 25 9.471437 Anserini +test1582 Q0 17069249 26 9.458288 Anserini +test1582 Q0 17060006 27 9.456305 Anserini +test1582 Q0 20038249 28 9.456305 Anserini +test1582 Q0 20038250 29 9.456305 Anserini +test1582 Q0 17796182 30 9.417862 Anserini +test1583 Q0 12713513 1 15.434734 Anserini +test1583 Q0 1369561 2 14.835707 Anserini +test1583 Q0 9788085 3 13.846948 Anserini +test1583 Q0 4129786 4 13.578166 Anserini +test1583 Q0 4129790 5 13.578166 Anserini +test1583 Q0 18960214 6 13.191348 Anserini +test1583 Q0 3269233 7 12.853336 Anserini +test1583 Q0 1583465 8 12.461642 Anserini +test1583 Q0 11696739 9 12.354400 Anserini +test1583 Q0 24737 10 12.080137 Anserini +test1583 Q0 12576579 11 12.080137 Anserini +test1583 Q0 13510365 12 11.995467 Anserini +test1583 Q0 3795915 13 11.952970 Anserini +test1583 Q0 295698 14 11.952970 Anserini +test1583 Q0 8610935 15 11.952970 Anserini +test1583 Q0 20001224 16 11.952970 Anserini +test1583 Q0 1369562 17 11.925731 Anserini +test1583 Q0 1369563 18 11.873343 Anserini +test1583 Q0 1583453 19 11.714903 Anserini +test1583 Q0 601275 20 11.431281 Anserini +test1583 Q0 1768086 21 11.425640 Anserini +test1583 Q0 14263464 22 11.158388 Anserini +test1583 Q0 17416659 23 11.155031 Anserini +test1583 Q0 1369545 24 11.067553 Anserini +test1583 Q0 10065359 25 10.967014 Anserini +test1583 Q0 4098439 26 10.740874 Anserini +test1583 Q0 1369550 27 10.655830 Anserini +test1583 Q0 1369551 28 10.477921 Anserini +test1583 Q0 1369552 29 10.404287 Anserini +test1583 Q0 3310572 30 10.358219 Anserini +test1584 Q0 10551513 1 11.131674 Anserini +test1584 Q0 11853100 2 10.407154 Anserini +test1584 Q0 20289346 3 10.360435 Anserini +test1584 Q0 17022141 4 10.133021 Anserini +test1584 Q0 18720306 5 10.126134 Anserini +test1584 Q0 9232185 6 10.105195 Anserini +test1584 Q0 5655642 7 10.046123 Anserini +test1584 Q0 8315449 8 9.746134 Anserini +test1584 Q0 4471019 9 9.728908 Anserini +test1584 Q0 11853099 10 9.724464 Anserini +test1584 Q0 5191395 11 9.673488 Anserini +test1584 Q0 3250766 12 9.645124 Anserini +test1584 Q0 9418249 13 9.563940 Anserini +test1584 Q0 17990626 14 9.563940 Anserini +test1584 Q0 11560527 15 9.519976 Anserini +test1584 Q0 8304291 16 9.488913 Anserini +test1584 Q0 10345470 17 9.484170 Anserini +test1584 Q0 17990616 18 9.484170 Anserini +test1584 Q0 1467716 19 9.480988 Anserini +test1584 Q0 5248892 20 9.451172 Anserini +test1584 Q0 3909276 21 9.445871 Anserini +test1584 Q0 14352791 22 9.428078 Anserini +test1584 Q0 15926448 23 9.405779 Anserini +test1584 Q0 17670777 24 9.390234 Anserini +test1584 Q0 18056359 25 9.335255 Anserini +test1584 Q0 6383083 26 9.326834 Anserini +test1584 Q0 5779978 27 9.274969 Anserini +test1584 Q0 2751127 28 9.262217 Anserini +test1584 Q0 12800419 29 9.259974 Anserini +test1584 Q0 6915648 30 9.252980 Anserini +test1585 Q0 14448927 1 24.962780 Anserini +test1585 Q0 20123682 2 24.889095 Anserini +test1585 Q0 7183087 3 24.754889 Anserini +test1585 Q0 7183086 4 24.426191 Anserini +test1585 Q0 15796701 5 23.766773 Anserini +test1585 Q0 15796697 6 23.740351 Anserini +test1585 Q0 10306391 7 22.946836 Anserini +test1585 Q0 13408190 8 21.529016 Anserini +test1585 Q0 10167444 9 21.362280 Anserini +test1585 Q0 7286456 10 21.285168 Anserini +test1585 Q0 9032337 11 21.079580 Anserini +test1585 Q0 9032338 12 21.079580 Anserini +test1585 Q0 257406 13 20.941383 Anserini +test1585 Q0 7286448 14 20.805218 Anserini +test1585 Q0 11077556 15 20.798082 Anserini +test1585 Q0 257410 16 20.434566 Anserini +test1585 Q0 19806427 17 19.811510 Anserini +test1585 Q0 4315636 18 19.495260 Anserini +test1585 Q0 11942047 19 19.495260 Anserini +test1585 Q0 6546180 20 19.351364 Anserini +test1585 Q0 4549368 21 19.341156 Anserini +test1585 Q0 1413681 22 19.341156 Anserini +test1585 Q0 9895577 23 19.341156 Anserini +test1585 Q0 5978106 24 19.341156 Anserini +test1585 Q0 1752547 25 19.275290 Anserini +test1585 Q0 5130881 26 19.189568 Anserini +test1585 Q0 3870964 27 19.082548 Anserini +test1585 Q0 7286449 28 19.035370 Anserini +test1585 Q0 6269630 29 18.787399 Anserini +test1585 Q0 13408185 30 18.630335 Anserini +test1586 Q0 12004728 1 20.229849 Anserini +test1586 Q0 10042998 2 19.193888 Anserini +test1586 Q0 7762256 3 19.016432 Anserini +test1586 Q0 3048867 4 18.441872 Anserini +test1586 Q0 10200890 5 18.317900 Anserini +test1586 Q0 9796314 6 18.137455 Anserini +test1586 Q0 7971307 7 18.020271 Anserini +test1586 Q0 10762117 8 18.011166 Anserini +test1586 Q0 10762146 9 17.987589 Anserini +test1586 Q0 3048752 10 17.932774 Anserini +test1586 Q0 10200883 11 17.700243 Anserini +test1586 Q0 9542430 12 17.691536 Anserini +test1586 Q0 10823428 13 17.610346 Anserini +test1586 Q0 12004842 14 17.604458 Anserini +test1586 Q0 3048854 15 17.601461 Anserini +test1586 Q0 20951832 16 17.431942 Anserini +test1586 Q0 3048846 17 17.418652 Anserini +test1586 Q0 3048780 18 17.382963 Anserini +test1586 Q0 10619948 19 17.332479 Anserini +test1586 Q0 10823397 20 17.320862 Anserini +test1586 Q0 3048756 21 17.279676 Anserini +test1586 Q0 16513440 22 17.273014 Anserini +test1586 Q0 10466878 23 17.041540 Anserini +test1586 Q0 10619939 24 17.018686 Anserini +test1586 Q0 10762134 25 16.974035 Anserini +test1586 Q0 12004763 26 16.965687 Anserini +test1586 Q0 17964389 27 16.916412 Anserini +test1586 Q0 10200880 28 16.912174 Anserini +test1586 Q0 10619970 29 16.904530 Anserini +test1586 Q0 12004784 30 16.836182 Anserini +test1587 Q0 2292791 1 14.645380 Anserini +test1587 Q0 3402406 2 14.581066 Anserini +test1587 Q0 16752242 3 14.311213 Anserini +test1587 Q0 2292784 4 14.267894 Anserini +test1587 Q0 2292776 5 14.187330 Anserini +test1587 Q0 6569340 6 13.998034 Anserini +test1587 Q0 13558347 7 13.575747 Anserini +test1587 Q0 6569337 8 13.436615 Anserini +test1587 Q0 12498789 9 13.427408 Anserini +test1587 Q0 7245403 10 13.309469 Anserini +test1587 Q0 18470393 11 13.240312 Anserini +test1587 Q0 15435487 12 12.971037 Anserini +test1587 Q0 2292855 13 12.921810 Anserini +test1587 Q0 9651925 14 12.919168 Anserini +test1587 Q0 7346191 15 12.914268 Anserini +test1587 Q0 15435472 16 12.880565 Anserini +test1587 Q0 9257722 17 12.876356 Anserini +test1587 Q0 2292783 18 12.859989 Anserini +test1587 Q0 2292787 19 12.795333 Anserini +test1587 Q0 8718793 20 12.786937 Anserini +test1587 Q0 16752231 21 12.734743 Anserini +test1587 Q0 9651923 22 12.586711 Anserini +test1587 Q0 2292790 23 12.575017 Anserini +test1587 Q0 3592343 24 12.564621 Anserini +test1587 Q0 8609046 25 12.564621 Anserini +test1587 Q0 15945114 26 12.466578 Anserini +test1587 Q0 15435488 27 12.392324 Anserini +test1587 Q0 17084791 28 12.351612 Anserini +test1587 Q0 4529531 29 12.253120 Anserini +test1587 Q0 2292781 30 12.252385 Anserini +test1588 Q0 388424 1 15.165522 Anserini +test1588 Q0 388431 2 14.953973 Anserini +test1588 Q0 2595479 3 14.829066 Anserini +test1588 Q0 2649627 4 14.743898 Anserini +test1588 Q0 388425 5 14.314033 Anserini +test1588 Q0 107006 6 13.882170 Anserini +test1588 Q0 8106691 7 13.639693 Anserini +test1588 Q0 1243532 8 13.105783 Anserini +test1588 Q0 5175522 9 12.961563 Anserini +test1588 Q0 11033682 10 12.594014 Anserini +test1588 Q0 387787 11 12.583672 Anserini +test1588 Q0 19719538 12 12.568839 Anserini +test1588 Q0 3248831 13 12.477281 Anserini +test1588 Q0 19719537 14 12.458227 Anserini +test1588 Q0 11033685 15 12.415121 Anserini +test1588 Q0 2365471 16 12.132545 Anserini +test1588 Q0 11934521 17 12.119394 Anserini +test1588 Q0 16470280 18 12.022318 Anserini +test1588 Q0 19719532 19 11.966301 Anserini +test1588 Q0 17833744 20 11.940185 Anserini +test1588 Q0 16470284 21 11.896969 Anserini +test1588 Q0 3083944 22 11.872080 Anserini +test1588 Q0 17786062 23 11.736536 Anserini +test1588 Q0 18277310 24 11.658844 Anserini +test1588 Q0 8920643 25 11.619271 Anserini +test1588 Q0 20674676 26 11.592556 Anserini +test1588 Q0 17715881 27 11.438385 Anserini +test1588 Q0 1943424 28 11.422256 Anserini +test1588 Q0 714213 29 11.337814 Anserini +test1588 Q0 795366 30 11.336415 Anserini +test1589 Q0 10870101 1 20.130039 Anserini +test1589 Q0 1268428 2 19.971844 Anserini +test1589 Q0 10870100 3 19.733597 Anserini +test1589 Q0 12472140 4 19.707785 Anserini +test1589 Q0 6984565 5 19.303362 Anserini +test1589 Q0 6106863 6 19.029499 Anserini +test1589 Q0 6984574 7 18.974634 Anserini +test1589 Q0 3322708 8 18.923815 Anserini +test1589 Q0 6984584 9 18.821651 Anserini +test1589 Q0 4581663 10 18.554594 Anserini +test1589 Q0 3322682 11 18.490349 Anserini +test1589 Q0 2388834 12 18.469564 Anserini +test1589 Q0 18204966 13 18.464674 Anserini +test1589 Q0 19795923 14 18.397362 Anserini +test1589 Q0 895667 15 18.376656 Anserini +test1589 Q0 2129563 16 18.316313 Anserini +test1589 Q0 4581662 17 18.209183 Anserini +test1589 Q0 2129569 18 18.165516 Anserini +test1589 Q0 18204969 19 18.123781 Anserini +test1589 Q0 6835714 20 18.123781 Anserini +test1589 Q0 7345307 21 18.105837 Anserini +test1589 Q0 6835726 22 17.995516 Anserini +test1589 Q0 19094072 23 17.903770 Anserini +test1589 Q0 18204964 24 17.788704 Anserini +test1589 Q0 15323436 25 17.707294 Anserini +test1589 Q0 4581668 26 17.676495 Anserini +test1589 Q0 19049094 27 17.640076 Anserini +test1589 Q0 19769721 28 17.639362 Anserini +test1589 Q0 2129564 29 17.621853 Anserini +test1589 Q0 4310772 30 17.585619 Anserini +test159 Q0 3085778 1 9.260292 Anserini +test159 Q0 16352208 2 9.213186 Anserini +test159 Q0 21031 3 9.092082 Anserini +test159 Q0 4288315 4 9.029115 Anserini +test159 Q0 18684441 5 8.983303 Anserini +test159 Q0 13315955 6 8.887615 Anserini +test159 Q0 17053704 7 8.885580 Anserini +test159 Q0 17762184 8 8.881946 Anserini +test159 Q0 18700041 9 8.817871 Anserini +test159 Q0 19854353 10 8.794200 Anserini +test159 Q0 8205609 11 8.792043 Anserini +test159 Q0 4616298 12 8.780204 Anserini +test159 Q0 11637376 13 8.738311 Anserini +test159 Q0 10039970 14 8.703659 Anserini +test159 Q0 4712344 15 8.702116 Anserini +test159 Q0 5191001 16 8.690558 Anserini +test159 Q0 4642186 17 8.659154 Anserini +test159 Q0 2513031 18 8.659154 Anserini +test159 Q0 9049419 19 8.605717 Anserini +test159 Q0 12591747 20 8.592594 Anserini +test159 Q0 8727916 21 8.591516 Anserini +test159 Q0 6902416 22 8.587084 Anserini +test159 Q0 9049529 23 8.553062 Anserini +test159 Q0 9049545 24 8.553062 Anserini +test159 Q0 9049561 25 8.553062 Anserini +test159 Q0 7656737 26 8.553062 Anserini +test159 Q0 18017237 27 8.519535 Anserini +test159 Q0 12140834 28 8.510051 Anserini +test159 Q0 5190567 29 8.467709 Anserini +test159 Q0 16195938 30 8.441803 Anserini +test1590 Q0 3191904 1 15.265590 Anserini +test1590 Q0 21008652 2 15.141476 Anserini +test1590 Q0 19969097 3 14.277769 Anserini +test1590 Q0 10382342 4 14.066357 Anserini +test1590 Q0 21008650 5 13.907934 Anserini +test1590 Q0 20504137 6 13.907934 Anserini +test1590 Q0 19969096 7 13.791349 Anserini +test1590 Q0 19503262 8 13.741199 Anserini +test1590 Q0 21008651 9 13.587833 Anserini +test1590 Q0 20504138 10 13.587833 Anserini +test1590 Q0 20504145 11 13.472220 Anserini +test1590 Q0 20073519 12 13.013885 Anserini +test1590 Q0 11573980 13 12.991586 Anserini +test1590 Q0 11574132 14 12.871908 Anserini +test1590 Q0 3191907 15 12.651752 Anserini +test1590 Q0 13397093 16 12.624314 Anserini +test1590 Q0 5841795 17 12.595037 Anserini +test1590 Q0 11573977 18 12.551435 Anserini +test1590 Q0 20073515 19 12.481249 Anserini +test1590 Q0 10382529 20 12.453614 Anserini +test1590 Q0 6417909 21 12.445558 Anserini +test1590 Q0 8663610 22 12.082342 Anserini +test1590 Q0 10382528 23 12.044462 Anserini +test1590 Q0 3191912 24 12.042883 Anserini +test1590 Q0 3191905 25 11.896021 Anserini +test1590 Q0 19969109 26 11.812984 Anserini +test1590 Q0 10382596 27 11.771389 Anserini +test1590 Q0 19969098 28 11.770624 Anserini +test1590 Q0 3184713 29 11.733887 Anserini +test1590 Q0 8735859 30 11.689627 Anserini +test1591 Q0 11951790 1 19.331354 Anserini +test1591 Q0 11951793 2 16.608740 Anserini +test1591 Q0 11951842 3 16.585846 Anserini +test1591 Q0 11951801 4 16.022724 Anserini +test1591 Q0 11951751 5 15.997271 Anserini +test1591 Q0 5596869 6 15.785386 Anserini +test1591 Q0 11951776 7 15.686069 Anserini +test1591 Q0 7090204 8 15.612443 Anserini +test1591 Q0 7253271 9 15.417786 Anserini +test1591 Q0 12451917 10 15.406414 Anserini +test1591 Q0 11951794 11 15.122140 Anserini +test1591 Q0 11951792 12 15.018940 Anserini +test1591 Q0 5596845 13 15.008257 Anserini +test1591 Q0 11951814 14 14.966506 Anserini +test1591 Q0 5931137 15 14.919292 Anserini +test1591 Q0 17836656 16 14.918238 Anserini +test1591 Q0 11951805 17 14.695066 Anserini +test1591 Q0 11951748 18 14.639430 Anserini +test1591 Q0 11951762 19 14.589001 Anserini +test1591 Q0 12451919 20 14.448847 Anserini +test1591 Q0 12451913 21 14.400194 Anserini +test1591 Q0 11951786 22 14.373912 Anserini +test1591 Q0 7510615 23 14.369928 Anserini +test1591 Q0 11951804 24 14.355959 Anserini +test1591 Q0 4657535 25 14.342614 Anserini +test1591 Q0 12412237 26 14.314439 Anserini +test1591 Q0 11951849 27 14.180653 Anserini +test1591 Q0 11951838 28 14.180653 Anserini +test1591 Q0 185951 29 14.150658 Anserini +test1591 Q0 5596829 30 14.121254 Anserini +test1592 Q0 8430191 1 15.689691 Anserini +test1592 Q0 1851781 2 15.417193 Anserini +test1592 Q0 2093955 3 15.395720 Anserini +test1592 Q0 1297055 4 15.178880 Anserini +test1592 Q0 1851782 5 14.466582 Anserini +test1592 Q0 2093961 6 14.091417 Anserini +test1592 Q0 4563928 7 13.991942 Anserini +test1592 Q0 2093962 8 13.745259 Anserini +test1592 Q0 4164352 9 13.505468 Anserini +test1592 Q0 16327790 10 13.438170 Anserini +test1592 Q0 13147470 11 13.079658 Anserini +test1592 Q0 13147450 12 13.027858 Anserini +test1592 Q0 2093982 13 13.012661 Anserini +test1592 Q0 13495852 14 12.971643 Anserini +test1592 Q0 1297045 15 12.961210 Anserini +test1592 Q0 2093964 16 12.957424 Anserini +test1592 Q0 2093988 17 12.941833 Anserini +test1592 Q0 4608683 18 12.893541 Anserini +test1592 Q0 2093973 19 12.883534 Anserini +test1592 Q0 2093981 20 12.883534 Anserini +test1592 Q0 18218134 21 12.694536 Anserini +test1592 Q0 2093983 22 12.688190 Anserini +test1592 Q0 8116293 23 12.595840 Anserini +test1592 Q0 17089586 24 12.393913 Anserini +test1592 Q0 1381650 25 12.382301 Anserini +test1592 Q0 4453644 26 12.343554 Anserini +test1592 Q0 2093972 27 12.279363 Anserini +test1592 Q0 13495853 28 12.257980 Anserini +test1592 Q0 4962916 29 12.240684 Anserini +test1592 Q0 9863161 30 12.120565 Anserini +test1593 Q0 18526941 1 16.506121 Anserini +test1593 Q0 18526927 2 15.899147 Anserini +test1593 Q0 18526936 3 14.479324 Anserini +test1593 Q0 18526931 4 14.223393 Anserini +test1593 Q0 18526924 5 14.177396 Anserini +test1593 Q0 18526932 6 14.074125 Anserini +test1593 Q0 18526926 7 13.981059 Anserini +test1593 Q0 18526930 8 13.129745 Anserini +test1593 Q0 18526925 9 12.697074 Anserini +test1593 Q0 18526929 10 12.648258 Anserini +test1593 Q0 18526938 11 12.330626 Anserini +test1593 Q0 18526937 12 12.246164 Anserini +test1593 Q0 2072330 13 12.197087 Anserini +test1593 Q0 18526933 14 12.009666 Anserini +test1593 Q0 18526928 15 11.926477 Anserini +test1593 Q0 17584656 16 11.924862 Anserini +test1593 Q0 4523687 17 11.653530 Anserini +test1593 Q0 6126929 18 11.609706 Anserini +test1593 Q0 18938954 19 11.594927 Anserini +test1593 Q0 3634397 20 11.472780 Anserini +test1593 Q0 18242536 21 11.359131 Anserini +test1593 Q0 4113363 22 11.311275 Anserini +test1593 Q0 18442210 23 11.247750 Anserini +test1593 Q0 18407522 24 11.193889 Anserini +test1593 Q0 18407525 25 11.193889 Anserini +test1593 Q0 18526939 26 11.102162 Anserini +test1593 Q0 18526940 27 11.102162 Anserini +test1593 Q0 1470077 28 11.102162 Anserini +test1593 Q0 15083628 29 11.013463 Anserini +test1593 Q0 19017194 30 11.013463 Anserini +test1594 Q0 5552609 1 21.513269 Anserini +test1594 Q0 5552629 2 21.198715 Anserini +test1594 Q0 5552621 3 20.198410 Anserini +test1594 Q0 2436287 4 19.797871 Anserini +test1594 Q0 5552625 5 18.551830 Anserini +test1594 Q0 2732910 6 17.667789 Anserini +test1594 Q0 5552620 7 17.458694 Anserini +test1594 Q0 2732951 8 17.303579 Anserini +test1594 Q0 4380779 9 17.288792 Anserini +test1594 Q0 12435966 10 16.851938 Anserini +test1594 Q0 5552611 11 16.492764 Anserini +test1594 Q0 2732954 12 16.211861 Anserini +test1594 Q0 5552618 13 15.609877 Anserini +test1594 Q0 2175432 14 15.609877 Anserini +test1594 Q0 5552616 15 15.445551 Anserini +test1594 Q0 2271449 16 15.284648 Anserini +test1594 Q0 5552619 17 14.780094 Anserini +test1594 Q0 5552613 18 14.102074 Anserini +test1594 Q0 5552614 19 13.808077 Anserini +test1594 Q0 7192249 20 13.298607 Anserini +test1594 Q0 5552610 21 13.115164 Anserini +test1594 Q0 2732953 22 13.110788 Anserini +test1594 Q0 2436271 23 12.758213 Anserini +test1594 Q0 18529348 24 12.713681 Anserini +test1594 Q0 6111948 25 12.657132 Anserini +test1594 Q0 5552615 26 12.314438 Anserini +test1594 Q0 6561788 27 11.964187 Anserini +test1594 Q0 18992368 28 11.912910 Anserini +test1594 Q0 18992372 29 11.771278 Anserini +test1594 Q0 3476613 30 11.545042 Anserini +test1595 Q0 18846680 1 15.292590 Anserini +test1595 Q0 20081816 2 15.292590 Anserini +test1595 Q0 18101300 3 14.929776 Anserini +test1595 Q0 18101320 4 14.646614 Anserini +test1595 Q0 18101281 5 14.245294 Anserini +test1595 Q0 18101321 6 14.054008 Anserini +test1595 Q0 3754412 7 13.386383 Anserini +test1595 Q0 20489668 8 12.839962 Anserini +test1595 Q0 18101271 9 12.483620 Anserini +test1595 Q0 18101323 10 12.419923 Anserini +test1595 Q0 18101285 11 12.237207 Anserini +test1595 Q0 7019409 12 12.209826 Anserini +test1595 Q0 18101274 13 12.136425 Anserini +test1595 Q0 18101287 14 12.125330 Anserini +test1595 Q0 2555094 15 11.994945 Anserini +test1595 Q0 16042665 16 11.959777 Anserini +test1595 Q0 8848211 17 11.900156 Anserini +test1595 Q0 18101307 18 11.862622 Anserini +test1595 Q0 2477501 19 11.698641 Anserini +test1595 Q0 11529909 20 11.513042 Anserini +test1595 Q0 15094299 21 11.455394 Anserini +test1595 Q0 18101283 22 11.348909 Anserini +test1595 Q0 16042668 23 11.344202 Anserini +test1595 Q0 19052169 24 11.276443 Anserini +test1595 Q0 18101322 25 11.269909 Anserini +test1595 Q0 18101272 26 11.231152 Anserini +test1595 Q0 18101297 27 11.192180 Anserini +test1595 Q0 19698296 28 11.192180 Anserini +test1595 Q0 15447284 29 11.175313 Anserini +test1595 Q0 3617079 30 11.110115 Anserini +test1596 Q0 9708007 1 18.884457 Anserini +test1596 Q0 7227134 2 18.567772 Anserini +test1596 Q0 7227141 3 18.242804 Anserini +test1596 Q0 2761827 4 17.972704 Anserini +test1596 Q0 3888463 5 17.660122 Anserini +test1596 Q0 20518266 6 17.406549 Anserini +test1596 Q0 20525830 7 17.392061 Anserini +test1596 Q0 10761960 8 17.091131 Anserini +test1596 Q0 15358058 9 17.045366 Anserini +test1596 Q0 11170696 10 16.999792 Anserini +test1596 Q0 189885 11 16.954222 Anserini +test1596 Q0 9294548 12 16.936209 Anserini +test1596 Q0 15358059 13 16.910021 Anserini +test1596 Q0 4065952 14 16.874243 Anserini +test1596 Q0 3680157 15 16.852592 Anserini +test1596 Q0 17753593 16 16.848305 Anserini +test1596 Q0 9765669 17 16.816185 Anserini +test1596 Q0 10850908 18 16.785540 Anserini +test1596 Q0 15648061 19 16.746359 Anserini +test1596 Q0 14347860 20 16.736954 Anserini +test1596 Q0 14295279 21 16.658798 Anserini +test1596 Q0 7239835 22 16.596502 Anserini +test1596 Q0 9407940 23 16.570074 Anserini +test1596 Q0 2761829 24 16.450281 Anserini +test1596 Q0 3680158 25 16.199984 Anserini +test1596 Q0 6987073 26 16.182110 Anserini +test1596 Q0 6591596 27 16.055454 Anserini +test1596 Q0 20518270 28 16.012705 Anserini +test1596 Q0 6591595 29 16.011049 Anserini +test1596 Q0 10288749 30 16.005369 Anserini +test1597 Q0 4838067 1 12.846954 Anserini +test1597 Q0 4838068 2 12.846954 Anserini +test1597 Q0 2004603 3 12.066028 Anserini +test1597 Q0 3447239 4 11.891067 Anserini +test1597 Q0 9094397 5 11.779213 Anserini +test1597 Q0 2498256 6 11.374481 Anserini +test1597 Q0 3447243 7 11.317400 Anserini +test1597 Q0 2960991 8 11.315807 Anserini +test1597 Q0 2960992 9 11.315807 Anserini +test1597 Q0 6524700 10 11.277445 Anserini +test1597 Q0 3447230 11 11.268252 Anserini +test1597 Q0 3447240 12 11.128750 Anserini +test1597 Q0 8436126 13 11.071563 Anserini +test1597 Q0 2004606 14 11.029401 Anserini +test1597 Q0 3447241 15 10.618307 Anserini +test1597 Q0 9041635 16 10.589659 Anserini +test1597 Q0 10026787 17 10.539715 Anserini +test1597 Q0 4826137 18 10.476917 Anserini +test1597 Q0 19444400 19 10.342508 Anserini +test1597 Q0 19444410 20 10.342508 Anserini +test1597 Q0 16900068 21 10.335855 Anserini +test1597 Q0 16518448 22 10.325868 Anserini +test1597 Q0 6524705 23 10.289192 Anserini +test1597 Q0 6037356 24 10.242474 Anserini +test1597 Q0 16650913 25 10.059018 Anserini +test1597 Q0 2745995 26 10.032865 Anserini +test1597 Q0 3447237 27 9.960369 Anserini +test1597 Q0 1490975 28 9.951027 Anserini +test1597 Q0 20385394 29 9.937974 Anserini +test1597 Q0 1369340 30 9.936880 Anserini +test1598 Q0 593801 1 20.693476 Anserini +test1598 Q0 593799 2 19.886875 Anserini +test1598 Q0 278111 3 19.729479 Anserini +test1598 Q0 576710 4 19.064075 Anserini +test1598 Q0 91155 5 18.350258 Anserini +test1598 Q0 278110 6 17.709038 Anserini +test1598 Q0 107185 7 17.441671 Anserini +test1598 Q0 9928334 8 17.379789 Anserini +test1598 Q0 83940 9 17.359579 Anserini +test1598 Q0 13973538 10 17.234787 Anserini +test1598 Q0 15904843 11 16.868784 Anserini +test1598 Q0 16423894 12 16.757065 Anserini +test1598 Q0 1414965 13 16.620932 Anserini +test1598 Q0 13471166 14 16.619703 Anserini +test1598 Q0 18924548 15 16.540699 Anserini +test1598 Q0 81388 16 16.255287 Anserini +test1598 Q0 15228438 17 16.198677 Anserini +test1598 Q0 4785135 18 16.189779 Anserini +test1598 Q0 16423895 19 16.128109 Anserini +test1598 Q0 11661731 20 16.122337 Anserini +test1598 Q0 19881421 21 15.760802 Anserini +test1598 Q0 91156 22 15.711394 Anserini +test1598 Q0 3164909 23 15.662535 Anserini +test1598 Q0 10754004 24 15.568951 Anserini +test1598 Q0 16224406 25 15.302511 Anserini +test1598 Q0 10468 26 15.291371 Anserini +test1598 Q0 77537 27 15.264503 Anserini +test1598 Q0 13316013 28 15.223026 Anserini +test1598 Q0 295481 29 15.206092 Anserini +test1598 Q0 2620383 30 15.162407 Anserini +test1599 Q0 7754802 1 15.771481 Anserini +test1599 Q0 3482747 2 15.757635 Anserini +test1599 Q0 13985519 3 15.296215 Anserini +test1599 Q0 15800736 4 15.079001 Anserini +test1599 Q0 1654882 5 15.060753 Anserini +test1599 Q0 786712 6 13.863207 Anserini +test1599 Q0 3482737 7 13.821224 Anserini +test1599 Q0 11270057 8 13.759536 Anserini +test1599 Q0 17405193 9 13.623993 Anserini +test1599 Q0 3482741 10 13.002952 Anserini +test1599 Q0 1725221 11 12.585223 Anserini +test1599 Q0 3482746 12 12.452322 Anserini +test1599 Q0 14077045 13 12.421555 Anserini +test1599 Q0 9223091 14 12.320252 Anserini +test1599 Q0 4157918 15 12.220280 Anserini +test1599 Q0 17404734 16 12.191907 Anserini +test1599 Q0 18697722 17 12.067284 Anserini +test1599 Q0 3482740 18 11.845988 Anserini +test1599 Q0 4712176 19 11.609924 Anserini +test1599 Q0 1199705 20 11.432497 Anserini +test1599 Q0 8731791 21 11.326989 Anserini +test1599 Q0 8608024 22 11.235534 Anserini +test1599 Q0 3482743 23 11.227134 Anserini +test1599 Q0 10525083 24 11.184921 Anserini +test1599 Q0 2130364 25 11.068152 Anserini +test1599 Q0 3442130 26 11.038321 Anserini +test1599 Q0 15723812 27 11.016794 Anserini +test1599 Q0 1985681 28 10.949361 Anserini +test1599 Q0 607506 29 10.898216 Anserini +test1599 Q0 11986731 30 10.832870 Anserini +test16 Q0 17771467 1 17.235178 Anserini +test16 Q0 17771463 2 16.006266 Anserini +test16 Q0 20242388 3 15.325207 Anserini +test16 Q0 17201022 4 13.705741 Anserini +test16 Q0 9076710 5 13.012209 Anserini +test16 Q0 19871746 6 12.715832 Anserini +test16 Q0 19871748 7 12.611849 Anserini +test16 Q0 7877870 8 12.458479 Anserini +test16 Q0 6831336 9 12.226499 Anserini +test16 Q0 17771464 10 12.073321 Anserini +test16 Q0 15818092 11 11.858213 Anserini +test16 Q0 17771466 12 11.730577 Anserini +test16 Q0 15818094 13 11.471580 Anserini +test16 Q0 1599405 14 11.345551 Anserini +test16 Q0 14779827 15 11.265233 Anserini +test16 Q0 14421887 16 11.082974 Anserini +test16 Q0 8605924 17 11.051575 Anserini +test16 Q0 11110545 18 11.032835 Anserini +test16 Q0 14582142 19 10.991920 Anserini +test16 Q0 869903 20 10.973113 Anserini +test16 Q0 14450990 21 10.962990 Anserini +test16 Q0 10207716 22 10.891081 Anserini +test16 Q0 11110544 23 10.889174 Anserini +test16 Q0 18049549 24 10.884417 Anserini +test16 Q0 17201032 25 10.882624 Anserini +test16 Q0 16940217 26 10.794556 Anserini +test16 Q0 2867706 27 10.781042 Anserini +test16 Q0 2136587 28 10.676502 Anserini +test16 Q0 5809470 29 10.538854 Anserini +test16 Q0 16553454 30 10.459447 Anserini +test160 Q0 7740268 1 23.130878 Anserini +test160 Q0 4098594 2 21.790606 Anserini +test160 Q0 17680851 3 20.480509 Anserini +test160 Q0 17680835 4 20.148539 Anserini +test160 Q0 12964566 5 19.775812 Anserini +test160 Q0 12964562 6 19.616983 Anserini +test160 Q0 2901165 7 19.051538 Anserini +test160 Q0 1348496 8 18.676233 Anserini +test160 Q0 1435150 9 18.593798 Anserini +test160 Q0 5109053 10 18.581600 Anserini +test160 Q0 12964563 11 18.559319 Anserini +test160 Q0 17680838 12 18.512548 Anserini +test160 Q0 12964564 13 18.441475 Anserini +test160 Q0 13166546 14 18.430325 Anserini +test160 Q0 294311 15 18.396509 Anserini +test160 Q0 1821691 16 18.343586 Anserini +test160 Q0 7907436 17 18.341660 Anserini +test160 Q0 7907432 18 18.269569 Anserini +test160 Q0 476417 19 18.204189 Anserini +test160 Q0 14237763 20 18.165232 Anserini +test160 Q0 5774061 21 18.160742 Anserini +test160 Q0 12964555 22 18.114433 Anserini +test160 Q0 17680837 23 18.107471 Anserini +test160 Q0 11276878 24 18.098040 Anserini +test160 Q0 11276877 25 18.035072 Anserini +test160 Q0 1348501 26 17.998205 Anserini +test160 Q0 2708448 27 17.898386 Anserini +test160 Q0 1348507 28 17.860994 Anserini +test160 Q0 2314694 29 17.828987 Anserini +test160 Q0 9590089 30 17.736048 Anserini +test1600 Q0 7465832 1 13.873447 Anserini +test1600 Q0 12817419 2 13.345880 Anserini +test1600 Q0 376994 3 13.050984 Anserini +test1600 Q0 376981 4 13.050984 Anserini +test1600 Q0 10160987 5 12.882667 Anserini +test1600 Q0 4332158 6 12.698290 Anserini +test1600 Q0 4332161 7 12.698290 Anserini +test1600 Q0 13670155 8 12.301869 Anserini +test1600 Q0 4958853 9 11.921579 Anserini +test1600 Q0 18964924 10 11.892718 Anserini +test1600 Q0 11968599 11 11.560591 Anserini +test1600 Q0 11968598 12 11.525037 Anserini +test1600 Q0 20961816 13 11.469413 Anserini +test1600 Q0 376982 14 11.062123 Anserini +test1600 Q0 3814304 15 11.030440 Anserini +test1600 Q0 17988758 16 11.020623 Anserini +test1600 Q0 17988759 17 10.986088 Anserini +test1600 Q0 4332160 18 10.869050 Anserini +test1600 Q0 19228430 19 10.791280 Anserini +test1600 Q0 9334144 20 10.610306 Anserini +test1600 Q0 19228428 21 10.566076 Anserini +test1600 Q0 19228429 22 10.512709 Anserini +test1600 Q0 2784511 23 10.441870 Anserini +test1600 Q0 376987 24 10.342934 Anserini +test1600 Q0 376985 25 10.336884 Anserini +test1600 Q0 376986 26 10.290977 Anserini +test1600 Q0 376989 27 10.200500 Anserini +test1600 Q0 741022 28 10.166546 Anserini +test1600 Q0 376984 29 10.114259 Anserini +test1600 Q0 16414150 30 10.087690 Anserini +test1601 Q0 9932010 1 16.843014 Anserini +test1601 Q0 15446888 2 14.745575 Anserini +test1601 Q0 15446887 3 14.419691 Anserini +test1601 Q0 11365222 4 14.235847 Anserini +test1601 Q0 3634196 5 14.126550 Anserini +test1601 Q0 10703365 6 13.772963 Anserini +test1601 Q0 11365221 7 12.971515 Anserini +test1601 Q0 11365264 8 12.680025 Anserini +test1601 Q0 13637885 9 12.675182 Anserini +test1601 Q0 11673427 10 12.360782 Anserini +test1601 Q0 10703368 11 12.271999 Anserini +test1601 Q0 11365232 12 12.265610 Anserini +test1601 Q0 11365275 13 11.925151 Anserini +test1601 Q0 3905213 14 11.796521 Anserini +test1601 Q0 10084297 15 11.648630 Anserini +test1601 Q0 11365243 16 11.648630 Anserini +test1601 Q0 3672759 17 11.396824 Anserini +test1601 Q0 11365223 18 11.396824 Anserini +test1601 Q0 11365236 19 11.396824 Anserini +test1601 Q0 11365248 20 11.396824 Anserini +test1601 Q0 9932007 21 11.396824 Anserini +test1601 Q0 10703366 22 11.304862 Anserini +test1601 Q0 11365231 23 11.304862 Anserini +test1601 Q0 11365228 24 11.259750 Anserini +test1601 Q0 18531454 25 11.082012 Anserini +test1601 Q0 11365239 26 10.979404 Anserini +test1601 Q0 9774322 27 10.924898 Anserini +test1601 Q0 4127689 28 10.849548 Anserini +test1601 Q0 11673428 29 10.846983 Anserini +test1601 Q0 3864257 30 10.619604 Anserini +test1602 Q0 544038 1 14.919866 Anserini +test1602 Q0 5114646 2 14.810791 Anserini +test1602 Q0 3453584 3 13.955345 Anserini +test1602 Q0 3326805 4 13.859094 Anserini +test1602 Q0 217474 5 13.764161 Anserini +test1602 Q0 9031085 6 12.390410 Anserini +test1602 Q0 4043158 7 11.530985 Anserini +test1602 Q0 18860440 8 11.530985 Anserini +test1602 Q0 6336972 9 11.424237 Anserini +test1602 Q0 7299548 10 11.410862 Anserini +test1602 Q0 8318366 11 11.223569 Anserini +test1602 Q0 4658038 12 11.119315 Anserini +test1602 Q0 571716 13 11.027732 Anserini +test1602 Q0 18679916 14 10.914470 Anserini +test1602 Q0 18730386 15 10.864820 Anserini +test1602 Q0 217475 16 10.804088 Anserini +test1602 Q0 3271388 17 10.696890 Anserini +test1602 Q0 16318120 18 10.588187 Anserini +test1602 Q0 16883267 19 10.576618 Anserini +test1602 Q0 2555445 20 10.567697 Anserini +test1602 Q0 1825090 21 10.522426 Anserini +test1602 Q0 8655983 22 10.464653 Anserini +test1602 Q0 9270700 23 10.418010 Anserini +test1602 Q0 7299547 24 10.358527 Anserini +test1602 Q0 6323437 25 10.358527 Anserini +test1602 Q0 4945811 26 10.355172 Anserini +test1602 Q0 10177893 27 10.272873 Anserini +test1602 Q0 17973249 28 10.272873 Anserini +test1602 Q0 1636825 29 10.035639 Anserini +test1602 Q0 15443279 30 10.023008 Anserini +test1603 Q0 3763837 1 18.810352 Anserini +test1603 Q0 3763833 2 18.403711 Anserini +test1603 Q0 17441592 3 16.877981 Anserini +test1603 Q0 3763822 4 14.106985 Anserini +test1603 Q0 3763835 5 13.569864 Anserini +test1603 Q0 3763836 6 13.311743 Anserini +test1603 Q0 3763827 7 13.255386 Anserini +test1603 Q0 12992370 8 12.377439 Anserini +test1603 Q0 9450233 9 12.280597 Anserini +test1603 Q0 8541872 10 12.143433 Anserini +test1603 Q0 3763823 11 12.015487 Anserini +test1603 Q0 3763828 12 11.826140 Anserini +test1603 Q0 4467183 13 11.710746 Anserini +test1603 Q0 4467185 14 11.612058 Anserini +test1603 Q0 3763830 15 11.539536 Anserini +test1603 Q0 3763831 16 11.389015 Anserini +test1603 Q0 3763832 17 11.366777 Anserini +test1603 Q0 18678937 18 11.337756 Anserini +test1603 Q0 18678940 19 11.337756 Anserini +test1603 Q0 9195581 20 11.327785 Anserini +test1603 Q0 9195582 21 11.327785 Anserini +test1603 Q0 3763834 22 11.139861 Anserini +test1603 Q0 3763825 23 11.118903 Anserini +test1603 Q0 15693501 24 11.099447 Anserini +test1603 Q0 3763824 25 11.040594 Anserini +test1603 Q0 14003201 26 11.011627 Anserini +test1603 Q0 10871417 27 10.849874 Anserini +test1603 Q0 20463381 28 10.782619 Anserini +test1603 Q0 12627189 29 10.539236 Anserini +test1603 Q0 8540456 30 10.399161 Anserini +test1604 Q0 7700927 1 16.160269 Anserini +test1604 Q0 16991895 2 16.007500 Anserini +test1604 Q0 14388946 3 15.921999 Anserini +test1604 Q0 4923173 4 15.884929 Anserini +test1604 Q0 645618 5 15.791378 Anserini +test1604 Q0 8418006 6 15.648963 Anserini +test1604 Q0 11378039 7 14.993505 Anserini +test1604 Q0 5330738 8 14.993505 Anserini +test1604 Q0 645621 9 14.823142 Anserini +test1604 Q0 645616 10 14.731220 Anserini +test1604 Q0 6578726 11 14.683554 Anserini +test1604 Q0 4036507 12 14.610872 Anserini +test1604 Q0 645634 13 14.604324 Anserini +test1604 Q0 645599 14 14.604324 Anserini +test1604 Q0 1534775 15 14.551786 Anserini +test1604 Q0 645612 16 14.519132 Anserini +test1604 Q0 1534773 17 14.462921 Anserini +test1604 Q0 645620 18 14.445024 Anserini +test1604 Q0 13365047 19 14.297275 Anserini +test1604 Q0 645628 20 14.290441 Anserini +test1604 Q0 15370137 21 14.185912 Anserini +test1604 Q0 976778 22 14.185912 Anserini +test1604 Q0 645608 23 14.133727 Anserini +test1604 Q0 645627 24 14.092866 Anserini +test1604 Q0 10337246 25 14.054550 Anserini +test1604 Q0 8450858 26 13.999859 Anserini +test1604 Q0 12519878 27 13.934460 Anserini +test1604 Q0 645629 28 13.788967 Anserini +test1604 Q0 4916392 29 13.710154 Anserini +test1604 Q0 248007 30 13.667543 Anserini +test1605 Q0 4205279 1 16.384321 Anserini +test1605 Q0 11584868 2 16.269566 Anserini +test1605 Q0 11584864 3 16.182528 Anserini +test1605 Q0 11778654 4 14.882565 Anserini +test1605 Q0 3071228 5 14.749393 Anserini +test1605 Q0 3071235 6 14.340221 Anserini +test1605 Q0 4205282 7 14.308529 Anserini +test1605 Q0 11778652 8 14.122168 Anserini +test1605 Q0 11778653 9 13.907552 Anserini +test1605 Q0 3071224 10 13.779118 Anserini +test1605 Q0 14866307 11 13.772367 Anserini +test1605 Q0 12339837 12 13.540629 Anserini +test1605 Q0 12339838 13 13.540629 Anserini +test1605 Q0 14866306 14 13.416531 Anserini +test1605 Q0 17727636 15 12.531964 Anserini +test1605 Q0 14866301 16 12.527218 Anserini +test1605 Q0 17714702 17 12.415856 Anserini +test1605 Q0 11613057 18 12.353600 Anserini +test1605 Q0 11873230 19 12.330595 Anserini +test1605 Q0 11613056 20 12.175992 Anserini +test1605 Q0 17799394 21 12.108405 Anserini +test1605 Q0 3071234 22 12.043391 Anserini +test1605 Q0 11613055 23 11.943177 Anserini +test1605 Q0 18254371 24 11.856882 Anserini +test1605 Q0 16946772 25 11.733456 Anserini +test1605 Q0 11613058 26 11.711197 Anserini +test1605 Q0 3071236 27 11.703930 Anserini +test1605 Q0 17911956 28 11.496902 Anserini +test1605 Q0 8870774 29 11.483340 Anserini +test1605 Q0 4291875 30 11.465082 Anserini +test1606 Q0 12384694 1 23.314398 Anserini +test1606 Q0 97064 2 22.852154 Anserini +test1606 Q0 8938836 3 20.444275 Anserini +test1606 Q0 3494625 4 16.839163 Anserini +test1606 Q0 13605714 5 15.666720 Anserini +test1606 Q0 12865885 6 15.471350 Anserini +test1606 Q0 12865886 7 15.391630 Anserini +test1606 Q0 14752774 8 14.304441 Anserini +test1606 Q0 5410372 9 14.102341 Anserini +test1606 Q0 10792125 10 13.794398 Anserini +test1606 Q0 10215243 11 13.442222 Anserini +test1606 Q0 10215244 12 13.442222 Anserini +test1606 Q0 7391424 13 12.604748 Anserini +test1606 Q0 7391423 14 12.150149 Anserini +test1606 Q0 10792124 15 11.451371 Anserini +test1606 Q0 14752766 16 11.262680 Anserini +test1606 Q0 9535043 17 11.242058 Anserini +test1606 Q0 7391136 18 11.045896 Anserini +test1606 Q0 12832577 19 10.837321 Anserini +test1606 Q0 7391425 20 10.825094 Anserini +test1606 Q0 7391428 21 10.822838 Anserini +test1606 Q0 18782444 22 10.728209 Anserini +test1606 Q0 13817067 23 10.626023 Anserini +test1606 Q0 13817065 24 10.527061 Anserini +test1606 Q0 7391426 25 10.508581 Anserini +test1606 Q0 18782446 26 10.508581 Anserini +test1606 Q0 7391421 27 10.491930 Anserini +test1606 Q0 12276165 28 10.421528 Anserini +test1606 Q0 20667868 29 10.411428 Anserini +test1606 Q0 19426007 30 10.364423 Anserini +test1607 Q0 1377968 1 15.331485 Anserini +test1607 Q0 13035179 2 14.979185 Anserini +test1607 Q0 9779363 3 14.887678 Anserini +test1607 Q0 9824940 4 14.227905 Anserini +test1607 Q0 13323366 5 14.160236 Anserini +test1607 Q0 9316938 6 14.111031 Anserini +test1607 Q0 5165594 7 13.895492 Anserini +test1607 Q0 9824942 8 13.813382 Anserini +test1607 Q0 10367089 9 13.796556 Anserini +test1607 Q0 2127783 10 13.752668 Anserini +test1607 Q0 9779362 11 13.685596 Anserini +test1607 Q0 10367093 12 13.674653 Anserini +test1607 Q0 7899064 13 13.671337 Anserini +test1607 Q0 9905590 14 13.639473 Anserini +test1607 Q0 13035178 15 13.610658 Anserini +test1607 Q0 5034309 16 13.548899 Anserini +test1607 Q0 9905377 17 13.543489 Anserini +test1607 Q0 15182305 18 13.496547 Anserini +test1607 Q0 9905586 19 13.490541 Anserini +test1607 Q0 9299202 20 13.480098 Anserini +test1607 Q0 9905295 21 13.452255 Anserini +test1607 Q0 12156303 22 13.427227 Anserini +test1607 Q0 621140 23 13.251243 Anserini +test1607 Q0 7803057 24 13.234715 Anserini +test1607 Q0 11031940 25 13.174334 Anserini +test1607 Q0 11031941 26 13.174334 Anserini +test1607 Q0 12156310 27 13.160646 Anserini +test1607 Q0 12156299 28 13.160646 Anserini +test1607 Q0 9905437 29 13.160646 Anserini +test1607 Q0 1446015 30 13.151114 Anserini +test1608 Q0 394249 1 18.867851 Anserini +test1608 Q0 394355 2 17.991583 Anserini +test1608 Q0 394320 3 17.708197 Anserini +test1608 Q0 1362039 4 17.609816 Anserini +test1608 Q0 4671740 5 17.519802 Anserini +test1608 Q0 393813 6 17.450205 Anserini +test1608 Q0 4245794 7 17.438725 Anserini +test1608 Q0 7167414 8 17.384865 Anserini +test1608 Q0 395016 9 17.130157 Anserini +test1608 Q0 394571 10 17.093857 Anserini +test1608 Q0 395050 11 17.080769 Anserini +test1608 Q0 394775 12 17.069853 Anserini +test1608 Q0 7874524 13 17.020361 Anserini +test1608 Q0 393936 14 16.982325 Anserini +test1608 Q0 7167415 15 16.922813 Anserini +test1608 Q0 394967 16 16.894464 Anserini +test1608 Q0 9941957 17 16.861977 Anserini +test1608 Q0 394003 18 16.841007 Anserini +test1608 Q0 393965 19 16.781340 Anserini +test1608 Q0 394621 20 16.772537 Anserini +test1608 Q0 3200158 21 16.710342 Anserini +test1608 Q0 394281 22 16.671576 Anserini +test1608 Q0 394723 23 16.656610 Anserini +test1608 Q0 394965 24 16.616116 Anserini +test1608 Q0 5732067 25 16.573709 Anserini +test1608 Q0 394150 26 16.538074 Anserini +test1608 Q0 2748834 27 16.529636 Anserini +test1608 Q0 16858101 28 16.521105 Anserini +test1608 Q0 17473876 29 16.518045 Anserini +test1608 Q0 7024302 30 16.508938 Anserini +test1609 Q0 15975453 1 24.786158 Anserini +test1609 Q0 12551610 2 24.315464 Anserini +test1609 Q0 14985156 3 22.167290 Anserini +test1609 Q0 12551627 4 22.006105 Anserini +test1609 Q0 147498 5 21.742413 Anserini +test1609 Q0 12551612 6 21.376074 Anserini +test1609 Q0 3223498 7 21.157253 Anserini +test1609 Q0 12785301 8 20.561144 Anserini +test1609 Q0 15597367 9 20.215982 Anserini +test1609 Q0 16627379 10 20.151793 Anserini +test1609 Q0 16627378 11 20.001175 Anserini +test1609 Q0 12551611 12 19.669746 Anserini +test1609 Q0 48672 13 19.645260 Anserini +test1609 Q0 12158818 14 19.625835 Anserini +test1609 Q0 147497 15 19.426659 Anserini +test1609 Q0 26307 16 19.407436 Anserini +test1609 Q0 19716853 17 19.068676 Anserini +test1609 Q0 14985157 18 18.840157 Anserini +test1609 Q0 60070 19 18.724379 Anserini +test1609 Q0 7308451 20 18.478476 Anserini +test1609 Q0 462242 21 18.246874 Anserini +test1609 Q0 1328262 22 18.234564 Anserini +test1609 Q0 15597368 23 18.108290 Anserini +test1609 Q0 3084497 24 17.891180 Anserini +test1609 Q0 9651547 25 17.716976 Anserini +test1609 Q0 9651548 26 17.716976 Anserini +test1609 Q0 12551625 27 17.648312 Anserini +test1609 Q0 500261 28 17.611547 Anserini +test1609 Q0 12785346 29 17.530581 Anserini +test1609 Q0 12785348 30 17.490061 Anserini +test161 Q0 3407490 1 10.999167 Anserini +test161 Q0 3608291 2 10.898436 Anserini +test161 Q0 501619 3 10.141314 Anserini +test161 Q0 102783 4 9.806873 Anserini +test161 Q0 3236629 5 9.806873 Anserini +test161 Q0 3857640 6 9.534634 Anserini +test161 Q0 10821641 7 9.430824 Anserini +test161 Q0 15518166 8 9.167728 Anserini +test161 Q0 15518222 9 9.167728 Anserini +test161 Q0 7283810 10 8.960156 Anserini +test161 Q0 1373773 11 8.957734 Anserini +test161 Q0 2162386 12 8.942642 Anserini +test161 Q0 10647971 13 8.930810 Anserini +test161 Q0 20561121 14 8.928988 Anserini +test161 Q0 11623865 15 8.923021 Anserini +test161 Q0 19787616 16 8.913305 Anserini +test161 Q0 3033770 17 8.896029 Anserini +test161 Q0 3463108 18 8.887170 Anserini +test161 Q0 3855169 19 8.874306 Anserini +test161 Q0 8654555 20 8.862890 Anserini +test161 Q0 11575662 21 8.862890 Anserini +test161 Q0 3236627 22 8.835305 Anserini +test161 Q0 15962756 23 8.806504 Anserini +test161 Q0 8021134 24 8.769590 Anserini +test161 Q0 420427 25 8.759776 Anserini +test161 Q0 1383909 26 8.738372 Anserini +test161 Q0 10905813 27 8.730316 Anserini +test161 Q0 2014221 28 8.726291 Anserini +test161 Q0 420440 29 8.722655 Anserini +test161 Q0 19012733 30 8.717811 Anserini +test1610 Q0 7517008 1 13.930937 Anserini +test1610 Q0 7517006 2 12.954669 Anserini +test1610 Q0 13586549 3 12.766734 Anserini +test1610 Q0 9741276 4 12.743078 Anserini +test1610 Q0 20309230 5 12.723282 Anserini +test1610 Q0 308516 6 12.714692 Anserini +test1610 Q0 4928372 7 12.713367 Anserini +test1610 Q0 308557 8 12.610444 Anserini +test1610 Q0 2930695 9 12.585903 Anserini +test1610 Q0 2930691 10 12.534837 Anserini +test1610 Q0 3926104 11 12.491607 Anserini +test1610 Q0 16663949 12 12.400144 Anserini +test1610 Q0 13645545 13 12.382623 Anserini +test1610 Q0 19980035 14 12.185037 Anserini +test1610 Q0 19980042 15 12.185037 Anserini +test1610 Q0 457194 16 12.169752 Anserini +test1610 Q0 6346264 17 12.116850 Anserini +test1610 Q0 4286968 18 12.105008 Anserini +test1610 Q0 11885241 19 12.092021 Anserini +test1610 Q0 17430927 20 12.020075 Anserini +test1610 Q0 391688 21 12.013520 Anserini +test1610 Q0 17773542 22 11.984584 Anserini +test1610 Q0 13772125 23 11.953429 Anserini +test1610 Q0 17751561 24 11.907000 Anserini +test1610 Q0 10986474 25 11.889372 Anserini +test1610 Q0 9004635 26 11.881559 Anserini +test1610 Q0 8305590 27 11.877467 Anserini +test1610 Q0 4599523 28 11.874646 Anserini +test1610 Q0 1882223 29 11.855051 Anserini +test1610 Q0 4707916 30 11.823263 Anserini +test1611 Q0 10469282 1 12.568483 Anserini +test1611 Q0 6217657 2 11.676014 Anserini +test1611 Q0 6203855 3 11.346688 Anserini +test1611 Q0 19963387 4 11.236504 Anserini +test1611 Q0 19599743 5 11.017239 Anserini +test1611 Q0 5632221 6 10.999981 Anserini +test1611 Q0 10471157 7 10.815277 Anserini +test1611 Q0 3553062 8 10.522812 Anserini +test1611 Q0 12409279 9 10.458328 Anserini +test1611 Q0 9097469 10 10.418724 Anserini +test1611 Q0 1873402 11 10.366796 Anserini +test1611 Q0 3103368 12 10.334382 Anserini +test1611 Q0 1504195 13 10.332368 Anserini +test1611 Q0 4236794 14 10.320354 Anserini +test1611 Q0 5570346 15 10.188283 Anserini +test1611 Q0 14839288 16 10.173200 Anserini +test1611 Q0 16214368 17 10.167279 Anserini +test1611 Q0 9711046 18 10.092111 Anserini +test1611 Q0 12715619 19 10.076105 Anserini +test1611 Q0 5022 20 10.042826 Anserini +test1611 Q0 18988651 21 9.999413 Anserini +test1611 Q0 16779050 22 9.968468 Anserini +test1611 Q0 18734623 23 9.958910 Anserini +test1611 Q0 10880446 24 9.933873 Anserini +test1611 Q0 4637704 25 9.929872 Anserini +test1611 Q0 18025567 26 9.909255 Anserini +test1611 Q0 8556041 27 9.890184 Anserini +test1611 Q0 9552520 28 9.889004 Anserini +test1611 Q0 5208873 29 9.857429 Anserini +test1611 Q0 15358180 30 9.854918 Anserini +test1612 Q0 2131074 1 20.130646 Anserini +test1612 Q0 2131087 2 19.855209 Anserini +test1612 Q0 1828746 3 19.730015 Anserini +test1612 Q0 1828745 4 19.660954 Anserini +test1612 Q0 14055514 5 18.288858 Anserini +test1612 Q0 10087780 6 18.214802 Anserini +test1612 Q0 5766685 7 18.214802 Anserini +test1612 Q0 2131084 8 18.197342 Anserini +test1612 Q0 10014754 9 18.001751 Anserini +test1612 Q0 18485134 10 18.001751 Anserini +test1612 Q0 356458 11 17.685137 Anserini +test1612 Q0 10087777 12 17.680864 Anserini +test1612 Q0 6784451 13 17.662237 Anserini +test1612 Q0 7701929 14 17.575209 Anserini +test1612 Q0 4733631 15 17.538980 Anserini +test1612 Q0 20182206 16 17.499640 Anserini +test1612 Q0 1630678 17 17.445202 Anserini +test1612 Q0 1828767 18 17.397797 Anserini +test1612 Q0 6277386 19 17.343830 Anserini +test1612 Q0 17760731 20 17.220955 Anserini +test1612 Q0 6828993 21 17.197943 Anserini +test1612 Q0 2191172 22 17.133986 Anserini +test1612 Q0 3929306 23 17.098812 Anserini +test1612 Q0 15339121 24 17.044075 Anserini +test1612 Q0 5993 25 16.859650 Anserini +test1612 Q0 2131086 26 16.706108 Anserini +test1612 Q0 5803120 27 16.627085 Anserini +test1612 Q0 14083957 28 16.361385 Anserini +test1612 Q0 11545726 29 16.257984 Anserini +test1612 Q0 9289793 30 16.238760 Anserini +test1613 Q0 7800842 1 16.708578 Anserini +test1613 Q0 7800844 2 16.708578 Anserini +test1613 Q0 7800843 3 14.118787 Anserini +test1613 Q0 2672652 4 13.698625 Anserini +test1613 Q0 7918823 5 13.020272 Anserini +test1613 Q0 3159360 6 12.948970 Anserini +test1613 Q0 15611491 7 12.851546 Anserini +test1613 Q0 8778171 8 12.609696 Anserini +test1613 Q0 20784526 9 12.520096 Anserini +test1613 Q0 2486242 10 12.456348 Anserini +test1613 Q0 12944343 11 12.446011 Anserini +test1613 Q0 3367180 12 12.440919 Anserini +test1613 Q0 564545 13 12.267330 Anserini +test1613 Q0 12953244 14 11.899844 Anserini +test1613 Q0 10119474 15 11.862612 Anserini +test1613 Q0 4864383 16 11.803349 Anserini +test1613 Q0 10400978 17 11.774128 Anserini +test1613 Q0 13743295 18 11.743695 Anserini +test1613 Q0 14326873 19 11.740635 Anserini +test1613 Q0 12650133 20 11.650213 Anserini +test1613 Q0 2078097 21 11.561596 Anserini +test1613 Q0 12047472 22 11.504507 Anserini +test1613 Q0 8712711 23 11.494462 Anserini +test1613 Q0 1323114 24 11.354042 Anserini +test1613 Q0 12684723 25 11.352635 Anserini +test1613 Q0 11525788 26 11.336703 Anserini +test1613 Q0 9631400 27 11.248711 Anserini +test1613 Q0 13713464 28 11.247778 Anserini +test1613 Q0 15388229 29 11.191671 Anserini +test1613 Q0 12686437 30 11.185678 Anserini +test1614 Q0 3808230 1 14.888433 Anserini +test1614 Q0 705454 2 13.483922 Anserini +test1614 Q0 361333 3 12.878299 Anserini +test1614 Q0 8936289 4 12.735960 Anserini +test1614 Q0 11390443 5 12.637951 Anserini +test1614 Q0 7623036 6 12.434978 Anserini +test1614 Q0 9839097 7 12.399906 Anserini +test1614 Q0 705487 8 12.350410 Anserini +test1614 Q0 12819978 9 12.347869 Anserini +test1614 Q0 18679875 10 12.005391 Anserini +test1614 Q0 705453 11 11.970050 Anserini +test1614 Q0 12202677 12 11.965853 Anserini +test1614 Q0 437952 13 11.828003 Anserini +test1614 Q0 705484 14 11.697748 Anserini +test1614 Q0 5435259 15 11.303310 Anserini +test1614 Q0 730716 16 11.240884 Anserini +test1614 Q0 1336647 17 11.229674 Anserini +test1614 Q0 453537 18 11.134204 Anserini +test1614 Q0 12202697 19 11.111864 Anserini +test1614 Q0 13127493 20 11.098165 Anserini +test1614 Q0 705480 21 11.011231 Anserini +test1614 Q0 12202687 22 10.970887 Anserini +test1614 Q0 15893323 23 10.880351 Anserini +test1614 Q0 16338920 24 10.825871 Anserini +test1614 Q0 1075686 25 10.746398 Anserini +test1614 Q0 7623037 26 10.711502 Anserini +test1614 Q0 18939939 27 10.688276 Anserini +test1614 Q0 18939946 28 10.688276 Anserini +test1614 Q0 17463881 29 10.672405 Anserini +test1614 Q0 12819982 30 10.600001 Anserini +test1615 Q0 17762126 1 11.426277 Anserini +test1615 Q0 7801945 2 10.514286 Anserini +test1615 Q0 7801946 3 10.514286 Anserini +test1615 Q0 9468498 4 10.219219 Anserini +test1615 Q0 18085145 5 9.695385 Anserini +test1615 Q0 6527853 6 9.606681 Anserini +test1615 Q0 6527857 7 9.577238 Anserini +test1615 Q0 6527863 8 9.479002 Anserini +test1615 Q0 3941521 9 9.468195 Anserini +test1615 Q0 6527847 10 9.430636 Anserini +test1615 Q0 11401224 11 9.327327 Anserini +test1615 Q0 8419333 12 9.181977 Anserini +test1615 Q0 2580759 13 9.074287 Anserini +test1615 Q0 12597999 14 9.021444 Anserini +test1615 Q0 9960136 15 8.989244 Anserini +test1615 Q0 5722218 16 8.956713 Anserini +test1615 Q0 8067733 17 8.926718 Anserini +test1615 Q0 6527849 18 8.878718 Anserini +test1615 Q0 9960116 19 8.804488 Anserini +test1615 Q0 8067708 20 8.783629 Anserini +test1615 Q0 19465920 21 8.677590 Anserini +test1615 Q0 10154187 22 8.599104 Anserini +test1615 Q0 13126493 23 8.599104 Anserini +test1615 Q0 10057115 24 8.588652 Anserini +test1615 Q0 6527848 25 8.498392 Anserini +test1615 Q0 6527852 26 8.498392 Anserini +test1615 Q0 6527858 27 8.498392 Anserini +test1615 Q0 6527862 28 8.498392 Anserini +test1615 Q0 10323570 29 8.489435 Anserini +test1615 Q0 15164448 30 8.473660 Anserini +test1616 Q0 10084429 1 11.881838 Anserini +test1616 Q0 10084434 2 11.419834 Anserini +test1616 Q0 4786268 3 10.826838 Anserini +test1616 Q0 9640191 4 10.270415 Anserini +test1616 Q0 4786287 5 10.246039 Anserini +test1616 Q0 11830491 6 9.988284 Anserini +test1616 Q0 6354698 7 9.853779 Anserini +test1616 Q0 8312438 8 9.789327 Anserini +test1616 Q0 4786276 9 9.772196 Anserini +test1616 Q0 10963631 10 9.647089 Anserini +test1616 Q0 8312437 11 9.603251 Anserini +test1616 Q0 14625555 12 9.581900 Anserini +test1616 Q0 18094639 13 9.578022 Anserini +test1616 Q0 15394970 14 9.575809 Anserini +test1616 Q0 13205561 15 9.528189 Anserini +test1616 Q0 15394969 16 9.525220 Anserini +test1616 Q0 8299812 17 9.514953 Anserini +test1616 Q0 7265839 18 9.454983 Anserini +test1616 Q0 9221423 19 9.448915 Anserini +test1616 Q0 11131590 20 9.337531 Anserini +test1616 Q0 13634758 21 9.327929 Anserini +test1616 Q0 16229093 22 9.267365 Anserini +test1616 Q0 1526728 23 9.267365 Anserini +test1616 Q0 1003617 24 9.262143 Anserini +test1616 Q0 8607527 25 9.226842 Anserini +test1616 Q0 8620372 26 9.224053 Anserini +test1616 Q0 9649543 27 9.201199 Anserini +test1616 Q0 8599384 28 9.185455 Anserini +test1616 Q0 10957769 29 9.148840 Anserini +test1616 Q0 17153831 30 9.131872 Anserini +test1617 Q0 2846454 1 20.415634 Anserini +test1617 Q0 2846523 2 20.027718 Anserini +test1617 Q0 733958 3 19.950253 Anserini +test1617 Q0 733963 4 19.872807 Anserini +test1617 Q0 9477552 5 19.245895 Anserini +test1617 Q0 733964 6 19.179926 Anserini +test1617 Q0 6063747 7 18.880278 Anserini +test1617 Q0 2846526 8 17.679535 Anserini +test1617 Q0 6694566 9 17.658813 Anserini +test1617 Q0 10582870 10 17.459866 Anserini +test1617 Q0 2846525 11 17.448107 Anserini +test1617 Q0 13983906 12 17.351177 Anserini +test1617 Q0 2846519 13 17.313387 Anserini +test1617 Q0 16968529 14 17.299128 Anserini +test1617 Q0 13983911 15 17.255714 Anserini +test1617 Q0 13983910 16 16.962128 Anserini +test1617 Q0 733957 17 16.932999 Anserini +test1617 Q0 13983907 18 16.513889 Anserini +test1617 Q0 6694569 19 16.489227 Anserini +test1617 Q0 6694576 20 16.446920 Anserini +test1617 Q0 13983909 21 16.232531 Anserini +test1617 Q0 5759417 22 16.051155 Anserini +test1617 Q0 10582872 23 15.964486 Anserini +test1617 Q0 10582871 24 15.753967 Anserini +test1617 Q0 2846527 25 15.474292 Anserini +test1617 Q0 2846529 26 15.450468 Anserini +test1617 Q0 2846516 27 15.367359 Anserini +test1617 Q0 15429711 28 15.365070 Anserini +test1617 Q0 5349135 29 15.318666 Anserini +test1617 Q0 2846533 30 15.237632 Anserini +test1618 Q0 4462756 1 26.072687 Anserini +test1618 Q0 9997255 2 24.968887 Anserini +test1618 Q0 13226824 3 24.267239 Anserini +test1618 Q0 6569540 4 24.045055 Anserini +test1618 Q0 5333143 5 23.910353 Anserini +test1618 Q0 20264374 6 23.682289 Anserini +test1618 Q0 15276207 7 23.488825 Anserini +test1618 Q0 7773304 8 23.051868 Anserini +test1618 Q0 12236798 9 22.886280 Anserini +test1618 Q0 5333067 10 22.867754 Anserini +test1618 Q0 11011551 11 22.853909 Anserini +test1618 Q0 2026713 12 22.707846 Anserini +test1618 Q0 15589458 13 22.615978 Anserini +test1618 Q0 12254651 14 22.551889 Anserini +test1618 Q0 12365363 15 22.434282 Anserini +test1618 Q0 18116095 16 22.372501 Anserini +test1618 Q0 10223910 17 22.207523 Anserini +test1618 Q0 16880628 18 22.205175 Anserini +test1618 Q0 2026772 19 21.921526 Anserini +test1618 Q0 2281111 20 21.906422 Anserini +test1618 Q0 8964747 21 21.824097 Anserini +test1618 Q0 13052189 22 21.812162 Anserini +test1618 Q0 15589452 23 21.796230 Anserini +test1618 Q0 16880634 24 21.738710 Anserini +test1618 Q0 362820 25 21.597673 Anserini +test1618 Q0 13052416 26 21.559505 Anserini +test1618 Q0 6678785 27 21.547205 Anserini +test1618 Q0 11180201 28 21.523407 Anserini +test1618 Q0 2026740 29 21.515051 Anserini +test1618 Q0 13298139 30 21.491169 Anserini +test1619 Q0 5498557 1 21.766321 Anserini +test1619 Q0 84008 2 21.583126 Anserini +test1619 Q0 874634 3 21.336687 Anserini +test1619 Q0 874647 4 21.231091 Anserini +test1619 Q0 87437 5 20.890739 Anserini +test1619 Q0 3435631 6 19.631472 Anserini +test1619 Q0 651020 7 19.561310 Anserini +test1619 Q0 6704725 8 19.525574 Anserini +test1619 Q0 11647779 9 19.388060 Anserini +test1619 Q0 87431 10 19.259869 Anserini +test1619 Q0 3435629 11 19.238253 Anserini +test1619 Q0 874645 12 18.989994 Anserini +test1619 Q0 567753 13 18.943268 Anserini +test1619 Q0 637266 14 18.765850 Anserini +test1619 Q0 20070782 15 18.741577 Anserini +test1619 Q0 651017 16 18.671528 Anserini +test1619 Q0 651035 17 18.659828 Anserini +test1619 Q0 18063845 18 18.506323 Anserini +test1619 Q0 567743 19 18.487717 Anserini +test1619 Q0 637311 20 18.230736 Anserini +test1619 Q0 7455028 21 18.129496 Anserini +test1619 Q0 9305907 22 17.957335 Anserini +test1619 Q0 87458 23 17.836693 Anserini +test1619 Q0 3959646 24 17.328390 Anserini +test1619 Q0 5329465 25 17.315214 Anserini +test1619 Q0 14624071 26 17.243759 Anserini +test1619 Q0 637310 27 17.216625 Anserini +test1619 Q0 567758 28 17.211987 Anserini +test1619 Q0 3435708 29 17.154194 Anserini +test1619 Q0 14003521 30 17.105534 Anserini +test162 Q0 6919930 1 12.455563 Anserini +test162 Q0 10255606 2 12.364766 Anserini +test162 Q0 6920006 3 12.353062 Anserini +test162 Q0 12659550 4 12.101175 Anserini +test162 Q0 7676540 5 11.992525 Anserini +test162 Q0 12577482 6 11.898907 Anserini +test162 Q0 12577481 7 11.898907 Anserini +test162 Q0 14365852 8 11.869799 Anserini +test162 Q0 13875921 9 11.805689 Anserini +test162 Q0 6919929 10 11.761117 Anserini +test162 Q0 12861357 11 11.683315 Anserini +test162 Q0 12856474 12 11.639428 Anserini +test162 Q0 12856477 13 11.639428 Anserini +test162 Q0 491551 14 11.561328 Anserini +test162 Q0 10855482 15 11.561328 Anserini +test162 Q0 11064860 16 11.495001 Anserini +test162 Q0 5733008 17 11.455898 Anserini +test162 Q0 12637771 18 11.455898 Anserini +test162 Q0 12637772 19 11.455898 Anserini +test162 Q0 11064880 20 11.394527 Anserini +test162 Q0 15264877 21 11.290912 Anserini +test162 Q0 2655544 22 11.266752 Anserini +test162 Q0 20478618 23 11.252832 Anserini +test162 Q0 14887340 24 11.233218 Anserini +test162 Q0 20204564 25 11.211644 Anserini +test162 Q0 11064873 26 11.122903 Anserini +test162 Q0 14711986 27 11.122903 Anserini +test162 Q0 5733007 28 11.088171 Anserini +test162 Q0 3186039 29 11.088171 Anserini +test162 Q0 8606136 30 11.088171 Anserini +test1620 Q0 6527857 1 10.535816 Anserini +test1620 Q0 7801945 2 10.514286 Anserini +test1620 Q0 7801946 3 10.514286 Anserini +test1620 Q0 9599663 4 10.422780 Anserini +test1620 Q0 6527853 5 9.606681 Anserini +test1620 Q0 7627345 6 9.575653 Anserini +test1620 Q0 15535163 7 9.545990 Anserini +test1620 Q0 15303424 8 9.508751 Anserini +test1620 Q0 6527863 9 9.479002 Anserini +test1620 Q0 3941521 10 9.468195 Anserini +test1620 Q0 6527858 11 9.436788 Anserini +test1620 Q0 6527847 12 9.430636 Anserini +test1620 Q0 20152206 13 9.365442 Anserini +test1620 Q0 18809333 14 9.316889 Anserini +test1620 Q0 20152208 15 9.301895 Anserini +test1620 Q0 20468770 16 9.205892 Anserini +test1620 Q0 11779906 17 9.205892 Anserini +test1620 Q0 18903355 18 9.188836 Anserini +test1620 Q0 4108704 19 9.186533 Anserini +test1620 Q0 8724997 20 9.167851 Anserini +test1620 Q0 9737095 21 9.164232 Anserini +test1620 Q0 5208639 22 9.138795 Anserini +test1620 Q0 14168351 23 9.121769 Anserini +test1620 Q0 14662529 24 9.048347 Anserini +test1620 Q0 16177875 25 9.015152 Anserini +test1620 Q0 11408599 26 8.991747 Anserini +test1620 Q0 9507934 27 8.957510 Anserini +test1620 Q0 6224940 28 8.951642 Anserini +test1620 Q0 3797704 29 8.943592 Anserini +test1620 Q0 11381865 30 8.943592 Anserini +test1621 Q0 6919483 1 13.010161 Anserini +test1621 Q0 3765132 2 12.370466 Anserini +test1621 Q0 7906653 3 12.275058 Anserini +test1621 Q0 133078 4 11.842175 Anserini +test1621 Q0 6919494 5 11.551345 Anserini +test1621 Q0 10595776 6 11.531890 Anserini +test1621 Q0 12738211 7 11.502151 Anserini +test1621 Q0 8779137 8 11.493585 Anserini +test1621 Q0 6919490 9 11.401971 Anserini +test1621 Q0 865897 10 11.326863 Anserini +test1621 Q0 6452579 11 11.265015 Anserini +test1621 Q0 10625938 12 11.229424 Anserini +test1621 Q0 17676645 13 11.198164 Anserini +test1621 Q0 4457368 14 11.137282 Anserini +test1621 Q0 7906652 15 11.101452 Anserini +test1621 Q0 3225576 16 11.035562 Anserini +test1621 Q0 17749373 17 11.034484 Anserini +test1621 Q0 10452987 18 10.958640 Anserini +test1621 Q0 1298064 19 10.953782 Anserini +test1621 Q0 10455231 20 10.882473 Anserini +test1621 Q0 14811920 21 10.879520 Anserini +test1621 Q0 18043309 22 10.847621 Anserini +test1621 Q0 133010 23 10.840475 Anserini +test1621 Q0 3225575 24 10.822038 Anserini +test1621 Q0 6666218 25 10.821798 Anserini +test1621 Q0 9505158 26 10.816151 Anserini +test1621 Q0 1472546 27 10.771874 Anserini +test1621 Q0 1991529 28 10.742481 Anserini +test1621 Q0 9777695 29 10.705259 Anserini +test1621 Q0 15119202 30 10.675324 Anserini +test1622 Q0 8368107 1 10.637472 Anserini +test1622 Q0 1537530 2 10.351537 Anserini +test1622 Q0 19803958 3 10.239171 Anserini +test1622 Q0 360351 4 10.177612 Anserini +test1622 Q0 4222873 5 10.113344 Anserini +test1622 Q0 8035078 6 10.050262 Anserini +test1622 Q0 1905443 7 10.001944 Anserini +test1622 Q0 1310143 8 9.985717 Anserini +test1622 Q0 16676064 9 9.909382 Anserini +test1622 Q0 14648594 10 9.891527 Anserini +test1622 Q0 20962444 11 9.844090 Anserini +test1622 Q0 17809017 12 9.756323 Anserini +test1622 Q0 20149609 13 9.737029 Anserini +test1622 Q0 20419684 14 9.708001 Anserini +test1622 Q0 2945398 15 9.704632 Anserini +test1622 Q0 14414704 16 9.671471 Anserini +test1622 Q0 17512119 17 9.651509 Anserini +test1622 Q0 290870 18 9.630987 Anserini +test1622 Q0 9046509 19 9.570312 Anserini +test1622 Q0 16635833 20 9.521719 Anserini +test1622 Q0 633994 21 9.501398 Anserini +test1622 Q0 16944183 22 9.473505 Anserini +test1622 Q0 14061721 23 9.441720 Anserini +test1622 Q0 16216889 24 9.436234 Anserini +test1622 Q0 3853018 25 9.426135 Anserini +test1622 Q0 2035939 26 9.414417 Anserini +test1622 Q0 9345058 27 9.385285 Anserini +test1622 Q0 17944619 28 9.338877 Anserini +test1622 Q0 16985170 29 9.338877 Anserini +test1622 Q0 3766525 30 9.336355 Anserini +test1623 Q0 10600581 1 14.880612 Anserini +test1623 Q0 6217021 2 13.980974 Anserini +test1623 Q0 14822081 3 13.938915 Anserini +test1623 Q0 10401040 4 13.833118 Anserini +test1623 Q0 10401041 5 13.833118 Anserini +test1623 Q0 7973153 6 13.589676 Anserini +test1623 Q0 4659172 7 13.429667 Anserini +test1623 Q0 4659165 8 13.305111 Anserini +test1623 Q0 7389643 9 13.183402 Anserini +test1623 Q0 7360670 10 13.178969 Anserini +test1623 Q0 10609660 11 13.127994 Anserini +test1623 Q0 10665043 12 12.994491 Anserini +test1623 Q0 11048512 13 12.987160 Anserini +test1623 Q0 3060902 14 12.580485 Anserini +test1623 Q0 10599812 15 12.531868 Anserini +test1623 Q0 6215920 16 12.471870 Anserini +test1623 Q0 15269419 17 12.439927 Anserini +test1623 Q0 13003660 18 12.354158 Anserini +test1623 Q0 10047031 19 12.316792 Anserini +test1623 Q0 19071077 20 12.256778 Anserini +test1623 Q0 814702 21 12.244464 Anserini +test1623 Q0 114554 22 12.244358 Anserini +test1623 Q0 10950460 23 12.207986 Anserini +test1623 Q0 10192936 24 12.164415 Anserini +test1623 Q0 6277562 25 12.141171 Anserini +test1623 Q0 6277571 26 12.141171 Anserini +test1623 Q0 5612590 27 12.125770 Anserini +test1623 Q0 20209670 28 12.078124 Anserini +test1623 Q0 8202606 29 12.056593 Anserini +test1623 Q0 16640102 30 12.050266 Anserini +test1624 Q0 6135853 1 14.861257 Anserini +test1624 Q0 6135855 2 14.404932 Anserini +test1624 Q0 6135868 3 13.757245 Anserini +test1624 Q0 6135864 4 12.319925 Anserini +test1624 Q0 8419344 5 12.038385 Anserini +test1624 Q0 6135858 6 12.015238 Anserini +test1624 Q0 6135854 7 11.970586 Anserini +test1624 Q0 6135878 8 11.857801 Anserini +test1624 Q0 6135862 9 11.768935 Anserini +test1624 Q0 17583312 10 11.752258 Anserini +test1624 Q0 14121664 11 11.732131 Anserini +test1624 Q0 14453562 12 11.708711 Anserini +test1624 Q0 14453556 13 11.708711 Anserini +test1624 Q0 15764417 14 11.607821 Anserini +test1624 Q0 6135859 15 11.600533 Anserini +test1624 Q0 535360 16 11.404672 Anserini +test1624 Q0 6135857 17 11.380280 Anserini +test1624 Q0 6135866 18 11.287962 Anserini +test1624 Q0 14775242 19 11.276832 Anserini +test1624 Q0 17690769 20 11.233018 Anserini +test1624 Q0 6135865 21 11.126510 Anserini +test1624 Q0 16751721 22 11.074828 Anserini +test1624 Q0 15145590 23 10.972132 Anserini +test1624 Q0 20136313 24 10.965158 Anserini +test1624 Q0 6135861 25 10.963100 Anserini +test1624 Q0 7241784 26 10.848734 Anserini +test1624 Q0 13285862 27 10.748157 Anserini +test1624 Q0 6135870 28 10.646166 Anserini +test1624 Q0 4314245 29 10.616628 Anserini +test1624 Q0 6135867 30 10.591261 Anserini +test1625 Q0 13419009 1 18.116800 Anserini +test1625 Q0 13046454 2 17.734867 Anserini +test1625 Q0 13419010 3 17.314882 Anserini +test1625 Q0 13046453 4 17.297375 Anserini +test1625 Q0 11538917 5 17.166428 Anserini +test1625 Q0 13434147 6 17.119038 Anserini +test1625 Q0 16218516 7 16.989317 Anserini +test1625 Q0 9651559 8 16.512339 Anserini +test1625 Q0 4828021 9 16.279699 Anserini +test1625 Q0 14630546 10 16.075548 Anserini +test1625 Q0 16218522 11 16.024796 Anserini +test1625 Q0 10898631 12 16.000126 Anserini +test1625 Q0 9651551 13 15.990954 Anserini +test1625 Q0 14597403 14 15.916195 Anserini +test1625 Q0 14744278 15 15.912360 Anserini +test1625 Q0 11983596 16 15.733768 Anserini +test1625 Q0 13046456 17 15.718996 Anserini +test1625 Q0 13750281 18 15.718996 Anserini +test1625 Q0 13046437 19 15.446837 Anserini +test1625 Q0 13434150 20 15.446837 Anserini +test1625 Q0 13750282 21 15.446837 Anserini +test1625 Q0 13434148 22 15.383739 Anserini +test1625 Q0 9651556 23 15.283741 Anserini +test1625 Q0 14597404 24 15.245387 Anserini +test1625 Q0 11538918 25 15.177710 Anserini +test1625 Q0 13046452 26 15.164754 Anserini +test1625 Q0 17163094 27 15.109987 Anserini +test1625 Q0 10864357 28 15.080170 Anserini +test1625 Q0 14597402 29 15.071501 Anserini +test1625 Q0 8683190 30 15.062484 Anserini +test1626 Q0 5929247 1 17.345810 Anserini +test1626 Q0 11843999 2 16.213886 Anserini +test1626 Q0 542109 3 15.446173 Anserini +test1626 Q0 807474 4 15.241284 Anserini +test1626 Q0 807473 5 15.059464 Anserini +test1626 Q0 151351 6 14.992831 Anserini +test1626 Q0 161459 7 14.978187 Anserini +test1626 Q0 20801202 8 14.949967 Anserini +test1626 Q0 596466 9 14.941535 Anserini +test1626 Q0 2320362 10 14.926069 Anserini +test1626 Q0 5631344 11 14.849900 Anserini +test1626 Q0 161480 12 14.849900 Anserini +test1626 Q0 3776002 13 14.813087 Anserini +test1626 Q0 19120106 14 14.534971 Anserini +test1626 Q0 17216827 15 14.515194 Anserini +test1626 Q0 6433221 16 14.480021 Anserini +test1626 Q0 9122002 17 14.475451 Anserini +test1626 Q0 2320355 18 14.420530 Anserini +test1626 Q0 14913880 19 14.374838 Anserini +test1626 Q0 151345 20 14.327149 Anserini +test1626 Q0 2517721 21 14.265425 Anserini +test1626 Q0 2517728 22 14.209041 Anserini +test1626 Q0 364444 23 14.135496 Anserini +test1626 Q0 17216826 24 14.121097 Anserini +test1626 Q0 3712967 25 14.095490 Anserini +test1626 Q0 5631343 26 14.033835 Anserini +test1626 Q0 15860833 27 14.030570 Anserini +test1626 Q0 161438 28 14.020451 Anserini +test1626 Q0 17216821 29 13.968515 Anserini +test1626 Q0 5929272 30 13.967385 Anserini +test1627 Q0 16793556 1 16.567078 Anserini +test1627 Q0 16793555 2 16.419102 Anserini +test1627 Q0 16793552 3 15.836137 Anserini +test1627 Q0 16793539 4 15.811178 Anserini +test1627 Q0 16793561 5 15.419218 Anserini +test1627 Q0 20576122 6 14.795209 Anserini +test1627 Q0 20576115 7 14.746246 Anserini +test1627 Q0 16793542 8 14.704533 Anserini +test1627 Q0 16793540 9 14.638844 Anserini +test1627 Q0 20576102 10 14.224602 Anserini +test1627 Q0 20576113 11 14.179054 Anserini +test1627 Q0 20576108 12 13.570661 Anserini +test1627 Q0 16793547 13 13.008053 Anserini +test1627 Q0 20576112 14 12.895473 Anserini +test1627 Q0 20576101 15 12.785964 Anserini +test1627 Q0 16793550 16 12.718984 Anserini +test1627 Q0 9100382 17 12.597872 Anserini +test1627 Q0 16793549 18 12.596828 Anserini +test1627 Q0 20823937 19 12.540500 Anserini +test1627 Q0 20950927 20 12.452148 Anserini +test1627 Q0 20576120 21 12.422970 Anserini +test1627 Q0 16793546 22 12.224620 Anserini +test1627 Q0 16793560 23 12.122074 Anserini +test1627 Q0 15857090 24 12.105899 Anserini +test1627 Q0 6340078 25 12.022746 Anserini +test1627 Q0 16444421 26 11.872489 Anserini +test1627 Q0 16793557 27 11.839639 Anserini +test1627 Q0 12037950 28 11.832084 Anserini +test1627 Q0 16793559 29 11.828712 Anserini +test1627 Q0 9593737 30 11.809763 Anserini +test1628 Q0 9975727 1 18.486021 Anserini +test1628 Q0 4283807 2 18.414766 Anserini +test1628 Q0 10244785 3 18.147511 Anserini +test1628 Q0 9949851 4 18.056715 Anserini +test1628 Q0 12952107 5 17.776371 Anserini +test1628 Q0 10244787 6 17.695787 Anserini +test1628 Q0 14256490 7 17.630238 Anserini +test1628 Q0 10192496 8 17.428757 Anserini +test1628 Q0 10192498 9 17.428757 Anserini +test1628 Q0 9703094 10 17.414530 Anserini +test1628 Q0 14900245 11 17.352972 Anserini +test1628 Q0 1732159 12 17.322784 Anserini +test1628 Q0 10193720 13 17.271788 Anserini +test1628 Q0 7659830 14 17.223812 Anserini +test1628 Q0 365782 15 17.192974 Anserini +test1628 Q0 6096431 16 17.149214 Anserini +test1628 Q0 8311123 17 17.108047 Anserini +test1628 Q0 8023447 18 16.998562 Anserini +test1628 Q0 10367883 19 16.917883 Anserini +test1628 Q0 10193721 20 16.877178 Anserini +test1628 Q0 10021816 21 16.868303 Anserini +test1628 Q0 10254559 22 16.862923 Anserini +test1628 Q0 2164794 23 16.855127 Anserini +test1628 Q0 20691028 24 16.801722 Anserini +test1628 Q0 4980532 25 16.776707 Anserini +test1628 Q0 9703093 26 16.753780 Anserini +test1628 Q0 6700517 27 16.736052 Anserini +test1628 Q0 10239859 28 16.697552 Anserini +test1628 Q0 9975728 29 16.676239 Anserini +test1628 Q0 17097458 30 16.608540 Anserini +test1629 Q0 101362 1 16.496614 Anserini +test1629 Q0 2159307 2 15.126989 Anserini +test1629 Q0 2159326 3 14.996354 Anserini +test1629 Q0 20402 4 14.949450 Anserini +test1629 Q0 3488620 5 14.711088 Anserini +test1629 Q0 434499 6 14.615650 Anserini +test1629 Q0 620057 7 14.209822 Anserini +test1629 Q0 2733961 8 14.073071 Anserini +test1629 Q0 425535 9 13.881531 Anserini +test1629 Q0 15731079 10 13.754790 Anserini +test1629 Q0 9101892 11 13.681863 Anserini +test1629 Q0 434496 12 13.650249 Anserini +test1629 Q0 497021 13 13.626587 Anserini +test1629 Q0 9490224 14 13.531858 Anserini +test1629 Q0 2159310 15 13.293133 Anserini +test1629 Q0 2440957 16 13.268892 Anserini +test1629 Q0 11524464 17 13.234226 Anserini +test1629 Q0 2440959 18 13.139961 Anserini +test1629 Q0 434521 19 13.138379 Anserini +test1629 Q0 2159318 20 13.100052 Anserini +test1629 Q0 214373 21 12.970160 Anserini +test1629 Q0 400080 22 12.926834 Anserini +test1629 Q0 3905575 23 12.887170 Anserini +test1629 Q0 1557007 24 12.756275 Anserini +test1629 Q0 15235113 25 12.694736 Anserini +test1629 Q0 434495 26 12.561768 Anserini +test1629 Q0 6298820 27 12.496694 Anserini +test1629 Q0 11404841 28 12.489503 Anserini +test1629 Q0 110565 29 12.484908 Anserini +test1629 Q0 12547664 30 12.445539 Anserini +test163 Q0 20110827 1 22.611300 Anserini +test163 Q0 20110834 2 21.582479 Anserini +test163 Q0 9737949 3 20.903881 Anserini +test163 Q0 9737947 4 20.682522 Anserini +test163 Q0 9737996 5 19.961449 Anserini +test163 Q0 9817011 6 19.747126 Anserini +test163 Q0 2753179 7 19.643759 Anserini +test163 Q0 9737994 8 19.410566 Anserini +test163 Q0 4665547 9 19.335814 Anserini +test163 Q0 19738119 10 19.103405 Anserini +test163 Q0 9817013 11 19.096941 Anserini +test163 Q0 20252166 12 19.039179 Anserini +test163 Q0 9737948 13 19.027937 Anserini +test163 Q0 18705211 14 18.734154 Anserini +test163 Q0 18712001 15 18.723249 Anserini +test163 Q0 20110832 16 18.556595 Anserini +test163 Q0 9737982 17 18.245342 Anserini +test163 Q0 9822521 18 18.242729 Anserini +test163 Q0 7560175 19 18.038143 Anserini +test163 Q0 7357570 20 18.000137 Anserini +test163 Q0 11472631 21 17.955778 Anserini +test163 Q0 8743375 22 17.915731 Anserini +test163 Q0 18464068 23 17.904554 Anserini +test163 Q0 4160526 24 17.887636 Anserini +test163 Q0 20110830 25 17.854477 Anserini +test163 Q0 19177606 26 17.835974 Anserini +test163 Q0 7357766 27 17.728973 Anserini +test163 Q0 17967932 28 17.614027 Anserini +test163 Q0 4821823 29 17.595461 Anserini +test163 Q0 16642731 30 17.580862 Anserini +test1630 Q0 9342377 1 10.093153 Anserini +test1630 Q0 13451365 2 9.571129 Anserini +test1630 Q0 2212375 3 9.368944 Anserini +test1630 Q0 3453471 4 9.296883 Anserini +test1630 Q0 3467204 5 9.272674 Anserini +test1630 Q0 740764 6 9.067632 Anserini +test1630 Q0 8676189 7 9.000515 Anserini +test1630 Q0 10610200 8 8.859278 Anserini +test1630 Q0 8251911 9 8.818599 Anserini +test1630 Q0 3453479 10 8.796234 Anserini +test1630 Q0 6346118 11 8.673136 Anserini +test1630 Q0 9996860 12 8.665844 Anserini +test1630 Q0 4598406 13 8.630110 Anserini +test1630 Q0 14569492 14 8.618404 Anserini +test1630 Q0 1451682 15 8.601042 Anserini +test1630 Q0 4103280 16 8.582384 Anserini +test1630 Q0 697540 17 8.575411 Anserini +test1630 Q0 4300168 18 8.573368 Anserini +test1630 Q0 1689326 19 8.572807 Anserini +test1630 Q0 3946829 20 8.568951 Anserini +test1630 Q0 8668702 21 8.563231 Anserini +test1630 Q0 20508607 22 8.544610 Anserini +test1630 Q0 9670696 23 8.538523 Anserini +test1630 Q0 20544194 24 8.502621 Anserini +test1630 Q0 9962779 25 8.497743 Anserini +test1630 Q0 4746482 26 8.497212 Anserini +test1630 Q0 19922889 27 8.489490 Anserini +test1630 Q0 2050396 28 8.489490 Anserini +test1630 Q0 20492437 29 8.465004 Anserini +test1630 Q0 2420625 30 8.464892 Anserini +test1631 Q0 2277746 1 15.917300 Anserini +test1631 Q0 13366976 2 15.801720 Anserini +test1631 Q0 5536485 3 15.594404 Anserini +test1631 Q0 12808027 4 15.159109 Anserini +test1631 Q0 4599564 5 14.579007 Anserini +test1631 Q0 19406696 6 13.974417 Anserini +test1631 Q0 18177783 7 13.809329 Anserini +test1631 Q0 14933351 8 13.717600 Anserini +test1631 Q0 10020086 9 13.459861 Anserini +test1631 Q0 18115179 10 13.454371 Anserini +test1631 Q0 8862211 11 13.433497 Anserini +test1631 Q0 20012345 12 13.350409 Anserini +test1631 Q0 9891277 13 13.212379 Anserini +test1631 Q0 7157815 14 13.169126 Anserini +test1631 Q0 20414624 15 13.101666 Anserini +test1631 Q0 12558958 16 13.086153 Anserini +test1631 Q0 990881 17 13.037133 Anserini +test1631 Q0 7466297 18 12.966842 Anserini +test1631 Q0 2901930 19 12.918924 Anserini +test1631 Q0 11385318 20 12.834648 Anserini +test1631 Q0 419258 21 12.821880 Anserini +test1631 Q0 4645530 22 12.725669 Anserini +test1631 Q0 8862210 23 12.708950 Anserini +test1631 Q0 17435883 24 12.629435 Anserini +test1631 Q0 18877754 25 12.614918 Anserini +test1631 Q0 13609190 26 12.606747 Anserini +test1631 Q0 7083418 27 12.543299 Anserini +test1631 Q0 5264205 28 12.511502 Anserini +test1631 Q0 15208397 29 12.491111 Anserini +test1631 Q0 16876282 30 12.450296 Anserini +test1632 Q0 19244966 1 20.321411 Anserini +test1632 Q0 19915961 2 20.118500 Anserini +test1632 Q0 19124191 3 19.281286 Anserini +test1632 Q0 19124195 4 19.281286 Anserini +test1632 Q0 19244972 5 18.791868 Anserini +test1632 Q0 10493143 6 17.287645 Anserini +test1632 Q0 12357524 7 16.985207 Anserini +test1632 Q0 19244969 8 16.893888 Anserini +test1632 Q0 19401132 9 16.891277 Anserini +test1632 Q0 3314282 10 16.268661 Anserini +test1632 Q0 8184479 11 16.209717 Anserini +test1632 Q0 19120084 12 15.782320 Anserini +test1632 Q0 14969492 13 15.644173 Anserini +test1632 Q0 6662145 14 15.279944 Anserini +test1632 Q0 7609056 15 14.974670 Anserini +test1632 Q0 15305090 16 14.869316 Anserini +test1632 Q0 5711815 17 14.677138 Anserini +test1632 Q0 20022924 18 14.672135 Anserini +test1632 Q0 19167423 19 14.639204 Anserini +test1632 Q0 15648203 20 14.126643 Anserini +test1632 Q0 14643151 21 14.077292 Anserini +test1632 Q0 12120700 22 14.074123 Anserini +test1632 Q0 701197 23 14.040083 Anserini +test1632 Q0 19554042 24 14.022010 Anserini +test1632 Q0 14995492 25 14.000495 Anserini +test1632 Q0 8803199 26 13.986824 Anserini +test1632 Q0 8803201 27 13.916774 Anserini +test1632 Q0 7609055 28 13.854621 Anserini +test1632 Q0 8123266 29 13.851132 Anserini +test1632 Q0 4304661 30 13.775500 Anserini +test1633 Q0 6240223 1 16.637300 Anserini +test1633 Q0 14938240 2 16.108107 Anserini +test1633 Q0 6240220 3 15.309097 Anserini +test1633 Q0 14330857 4 14.851043 Anserini +test1633 Q0 6240242 5 14.792247 Anserini +test1633 Q0 16861888 6 14.669072 Anserini +test1633 Q0 9169646 7 14.421064 Anserini +test1633 Q0 9169644 8 14.360642 Anserini +test1633 Q0 6240219 9 14.109664 Anserini +test1633 Q0 17066244 10 14.027787 Anserini +test1633 Q0 12541646 11 13.910187 Anserini +test1633 Q0 6240247 12 13.766294 Anserini +test1633 Q0 16222452 13 13.677054 Anserini +test1633 Q0 12690639 14 13.675807 Anserini +test1633 Q0 9169669 15 13.657080 Anserini +test1633 Q0 7158988 16 13.635336 Anserini +test1633 Q0 9171568 17 13.632153 Anserini +test1633 Q0 6240221 18 13.620150 Anserini +test1633 Q0 9169653 19 13.613632 Anserini +test1633 Q0 12567539 20 13.560783 Anserini +test1633 Q0 17206796 21 13.523037 Anserini +test1633 Q0 17163349 22 13.385646 Anserini +test1633 Q0 9169650 23 13.301728 Anserini +test1633 Q0 7168914 24 13.287505 Anserini +test1633 Q0 11829960 25 13.226320 Anserini +test1633 Q0 8760711 26 13.165813 Anserini +test1633 Q0 10863794 27 13.154707 Anserini +test1633 Q0 7300670 28 13.154707 Anserini +test1633 Q0 11807738 29 13.151655 Anserini +test1633 Q0 10939278 30 13.075066 Anserini +test1634 Q0 16136621 1 16.108526 Anserini +test1634 Q0 20785608 2 15.078417 Anserini +test1634 Q0 16136656 3 14.940747 Anserini +test1634 Q0 16136618 4 14.829637 Anserini +test1634 Q0 16136651 5 14.776214 Anserini +test1634 Q0 16136645 6 14.722888 Anserini +test1634 Q0 16136634 7 14.614947 Anserini +test1634 Q0 20785607 8 14.491117 Anserini +test1634 Q0 20785610 9 14.379428 Anserini +test1634 Q0 20621480 10 14.140210 Anserini +test1634 Q0 16136642 11 14.078732 Anserini +test1634 Q0 16136640 12 13.827517 Anserini +test1634 Q0 16136654 13 13.788644 Anserini +test1634 Q0 16136646 14 13.741918 Anserini +test1634 Q0 16136647 15 13.570544 Anserini +test1634 Q0 16136638 16 13.486012 Anserini +test1634 Q0 20785601 17 13.471457 Anserini +test1634 Q0 16136635 18 13.275482 Anserini +test1634 Q0 16136643 19 13.242093 Anserini +test1634 Q0 16136655 20 13.044478 Anserini +test1634 Q0 16136649 21 13.041812 Anserini +test1634 Q0 20785604 22 12.914363 Anserini +test1634 Q0 16136639 23 12.860912 Anserini +test1634 Q0 20789674 24 12.814268 Anserini +test1634 Q0 16136652 25 12.800678 Anserini +test1634 Q0 16136620 26 12.625314 Anserini +test1634 Q0 16136637 27 12.523593 Anserini +test1634 Q0 16136650 28 12.502903 Anserini +test1634 Q0 16136630 29 11.888488 Anserini +test1634 Q0 16136629 30 11.857814 Anserini +test1635 Q0 8548474 1 13.375786 Anserini +test1635 Q0 8548472 2 12.998302 Anserini +test1635 Q0 8548477 3 11.918759 Anserini +test1635 Q0 8548499 4 11.835011 Anserini +test1635 Q0 1067970 5 11.763378 Anserini +test1635 Q0 8548490 6 11.532442 Anserini +test1635 Q0 19040967 7 11.489248 Anserini +test1635 Q0 1067923 8 11.271385 Anserini +test1635 Q0 8548489 9 11.113397 Anserini +test1635 Q0 8548473 10 11.094783 Anserini +test1635 Q0 5858187 11 10.778452 Anserini +test1635 Q0 209468 12 10.593367 Anserini +test1635 Q0 20977487 13 10.460346 Anserini +test1635 Q0 8548486 14 10.455551 Anserini +test1635 Q0 15194882 15 10.364767 Anserini +test1635 Q0 3358581 16 10.270981 Anserini +test1635 Q0 8548493 17 10.259647 Anserini +test1635 Q0 18566981 18 10.206237 Anserini +test1635 Q0 19040964 19 10.178938 Anserini +test1635 Q0 8548476 20 10.150850 Anserini +test1635 Q0 19040965 21 10.135887 Anserini +test1635 Q0 8548497 22 10.135887 Anserini +test1635 Q0 8548488 23 10.048263 Anserini +test1635 Q0 1616806 24 10.040701 Anserini +test1635 Q0 6827173 25 9.943031 Anserini +test1635 Q0 17809108 26 9.943031 Anserini +test1635 Q0 4721706 27 9.929817 Anserini +test1635 Q0 8548478 28 9.907536 Anserini +test1635 Q0 18161371 29 9.887764 Anserini +test1635 Q0 6846842 30 9.863382 Anserini +test1636 Q0 4270852 1 13.105859 Anserini +test1636 Q0 16384876 2 11.365136 Anserini +test1636 Q0 14095406 3 11.203396 Anserini +test1636 Q0 13600707 4 11.153801 Anserini +test1636 Q0 4039291 5 11.106979 Anserini +test1636 Q0 4054584 6 11.101257 Anserini +test1636 Q0 16384884 7 11.015510 Anserini +test1636 Q0 1628541 8 10.947942 Anserini +test1636 Q0 1047009 9 10.919437 Anserini +test1636 Q0 8333983 10 10.915520 Anserini +test1636 Q0 2109915 11 10.908463 Anserini +test1636 Q0 13341520 12 10.847122 Anserini +test1636 Q0 19788162 13 10.762949 Anserini +test1636 Q0 10285485 14 10.710798 Anserini +test1636 Q0 10285491 15 10.710798 Anserini +test1636 Q0 13617030 16 10.697735 Anserini +test1636 Q0 13617109 17 10.697735 Anserini +test1636 Q0 2906194 18 10.564114 Anserini +test1636 Q0 560460 19 10.491598 Anserini +test1636 Q0 3229201 20 10.488018 Anserini +test1636 Q0 1569856 21 10.476657 Anserini +test1636 Q0 10748000 22 10.334975 Anserini +test1636 Q0 18110294 23 10.285397 Anserini +test1636 Q0 6945998 24 10.257032 Anserini +test1636 Q0 7052323 25 10.257032 Anserini +test1636 Q0 1714233 26 10.249557 Anserini +test1636 Q0 4826937 27 10.242777 Anserini +test1636 Q0 17012433 28 10.193870 Anserini +test1636 Q0 3415612 29 10.189661 Anserini +test1636 Q0 6810922 30 10.188282 Anserini +test1637 Q0 12655597 1 16.777571 Anserini +test1637 Q0 12655598 2 16.777571 Anserini +test1637 Q0 16474943 3 16.675154 Anserini +test1637 Q0 451765 4 16.177742 Anserini +test1637 Q0 174934 5 15.982627 Anserini +test1637 Q0 14124376 6 15.974741 Anserini +test1637 Q0 6622016 7 15.628417 Anserini +test1637 Q0 174948 8 15.588158 Anserini +test1637 Q0 6622018 9 15.586106 Anserini +test1637 Q0 488538 10 15.325881 Anserini +test1637 Q0 5599159 11 15.289127 Anserini +test1637 Q0 5243233 12 14.881105 Anserini +test1637 Q0 3256573 13 14.857625 Anserini +test1637 Q0 846750 14 14.847534 Anserini +test1637 Q0 13364606 15 14.838413 Anserini +test1637 Q0 4176455 16 14.818400 Anserini +test1637 Q0 19489612 17 14.797256 Anserini +test1637 Q0 19903373 18 14.593557 Anserini +test1637 Q0 7764999 19 14.580189 Anserini +test1637 Q0 5599160 20 14.574018 Anserini +test1637 Q0 19489605 21 14.546669 Anserini +test1637 Q0 174950 22 14.499887 Anserini +test1637 Q0 19903374 23 14.487213 Anserini +test1637 Q0 15881753 24 14.452454 Anserini +test1637 Q0 174926 25 14.382066 Anserini +test1637 Q0 2172351 26 14.302748 Anserini +test1637 Q0 6915565 27 14.268720 Anserini +test1637 Q0 174931 28 14.192212 Anserini +test1637 Q0 14653868 29 14.120340 Anserini +test1637 Q0 9722427 30 14.116053 Anserini +test1638 Q0 19794876 1 25.237848 Anserini +test1638 Q0 18330537 2 22.881254 Anserini +test1638 Q0 17014225 3 21.634037 Anserini +test1638 Q0 20117282 4 21.383865 Anserini +test1638 Q0 19514170 5 20.866713 Anserini +test1638 Q0 20117272 6 20.622482 Anserini +test1638 Q0 20117283 7 20.376596 Anserini +test1638 Q0 17014226 8 20.160213 Anserini +test1638 Q0 2089968 9 19.213955 Anserini +test1638 Q0 9958932 10 18.824081 Anserini +test1638 Q0 2089962 11 18.632227 Anserini +test1638 Q0 20117279 12 18.514532 Anserini +test1638 Q0 2090017 13 18.426054 Anserini +test1638 Q0 13930446 14 18.368814 Anserini +test1638 Q0 18717187 15 18.338118 Anserini +test1638 Q0 16109756 16 18.335396 Anserini +test1638 Q0 1469786 17 18.181465 Anserini +test1638 Q0 20117273 18 18.179632 Anserini +test1638 Q0 17899755 19 17.847900 Anserini +test1638 Q0 16109757 20 17.840359 Anserini +test1638 Q0 8574495 21 17.656090 Anserini +test1638 Q0 3617723 22 17.607111 Anserini +test1638 Q0 20601106 23 17.591141 Anserini +test1638 Q0 2089969 24 17.559938 Anserini +test1638 Q0 2089976 25 17.536850 Anserini +test1638 Q0 5341680 26 17.524158 Anserini +test1638 Q0 5388000 27 17.387810 Anserini +test1638 Q0 2089995 28 17.314650 Anserini +test1638 Q0 2522251 29 17.260092 Anserini +test1638 Q0 9958934 30 17.215973 Anserini +test1639 Q0 19910120 1 13.197844 Anserini +test1639 Q0 19910119 2 12.971733 Anserini +test1639 Q0 19910118 3 12.761076 Anserini +test1639 Q0 16209441 4 12.229912 Anserini +test1639 Q0 16559300 5 12.107364 Anserini +test1639 Q0 7544786 6 11.850440 Anserini +test1639 Q0 9819146 7 11.734857 Anserini +test1639 Q0 5480197 8 11.727121 Anserini +test1639 Q0 5060513 9 11.632097 Anserini +test1639 Q0 9509713 10 11.628501 Anserini +test1639 Q0 3392404 11 11.616139 Anserini +test1639 Q0 18949141 12 11.571383 Anserini +test1639 Q0 1425012 13 11.487696 Anserini +test1639 Q0 8793742 14 11.432112 Anserini +test1639 Q0 1425007 15 11.430676 Anserini +test1639 Q0 5480199 16 11.386509 Anserini +test1639 Q0 4346842 17 11.229431 Anserini +test1639 Q0 4421158 18 11.155447 Anserini +test1639 Q0 18991290 19 11.153995 Anserini +test1639 Q0 18991292 20 11.153995 Anserini +test1639 Q0 14767913 21 11.144442 Anserini +test1639 Q0 19958345 22 11.144382 Anserini +test1639 Q0 3807524 23 11.138897 Anserini +test1639 Q0 1283819 24 11.134567 Anserini +test1639 Q0 19994461 25 11.114780 Anserini +test1639 Q0 19958391 26 11.111837 Anserini +test1639 Q0 10588532 27 10.986550 Anserini +test1639 Q0 16387022 28 10.947225 Anserini +test1639 Q0 19574443 29 10.931233 Anserini +test1639 Q0 19574446 30 10.931233 Anserini +test164 Q0 11954010 1 15.891720 Anserini +test164 Q0 5789221 2 15.755377 Anserini +test164 Q0 5789216 3 15.517733 Anserini +test164 Q0 5789220 4 15.266930 Anserini +test164 Q0 11017898 5 15.124850 Anserini +test164 Q0 4263286 6 15.123880 Anserini +test164 Q0 7584843 7 15.054947 Anserini +test164 Q0 9538833 8 14.889744 Anserini +test164 Q0 7701650 9 14.725060 Anserini +test164 Q0 16847238 10 14.714767 Anserini +test164 Q0 2126955 11 14.632635 Anserini +test164 Q0 9081354 12 14.620596 Anserini +test164 Q0 7584844 13 14.357450 Anserini +test164 Q0 8889703 14 14.331219 Anserini +test164 Q0 445002 15 14.292111 Anserini +test164 Q0 19142476 16 14.154209 Anserini +test164 Q0 2206609 17 14.145221 Anserini +test164 Q0 6059523 18 14.054139 Anserini +test164 Q0 1684685 19 13.972588 Anserini +test164 Q0 3926063 20 13.869576 Anserini +test164 Q0 9081356 21 13.828624 Anserini +test164 Q0 12553987 22 13.815653 Anserini +test164 Q0 1356974 23 13.787870 Anserini +test164 Q0 417889 24 13.768399 Anserini +test164 Q0 3034059 25 13.760039 Anserini +test164 Q0 496528 26 13.745023 Anserini +test164 Q0 417896 27 13.697132 Anserini +test164 Q0 2486903 28 13.658269 Anserini +test164 Q0 2634699 29 13.625019 Anserini +test164 Q0 15129521 30 13.614695 Anserini +test1640 Q0 20630129 1 13.291473 Anserini +test1640 Q0 19554914 2 12.284784 Anserini +test1640 Q0 19553775 3 12.085904 Anserini +test1640 Q0 19554834 4 11.726515 Anserini +test1640 Q0 19554865 5 11.672063 Anserini +test1640 Q0 20456197 6 11.650704 Anserini +test1640 Q0 20456194 7 11.650704 Anserini +test1640 Q0 18821680 8 11.379816 Anserini +test1640 Q0 19553768 9 11.241363 Anserini +test1640 Q0 18880938 10 11.204947 Anserini +test1640 Q0 19553777 11 11.187666 Anserini +test1640 Q0 19554898 12 11.112972 Anserini +test1640 Q0 19554891 13 11.056270 Anserini +test1640 Q0 19554842 14 11.056270 Anserini +test1640 Q0 6509362 15 11.036228 Anserini +test1640 Q0 8149771 16 10.810666 Anserini +test1640 Q0 20959514 17 10.710893 Anserini +test1640 Q0 19554835 18 10.710893 Anserini +test1640 Q0 19217318 19 10.511741 Anserini +test1640 Q0 18271116 20 10.397832 Anserini +test1640 Q0 5002077 21 10.379580 Anserini +test1640 Q0 5995312 22 10.338783 Anserini +test1640 Q0 5121005 23 10.336332 Anserini +test1640 Q0 20532576 24 10.309608 Anserini +test1640 Q0 19554845 25 10.257698 Anserini +test1640 Q0 929124 26 10.240857 Anserini +test1640 Q0 19554899 27 10.174698 Anserini +test1640 Q0 19554840 28 10.171596 Anserini +test1640 Q0 2924227 29 10.114025 Anserini +test1640 Q0 19554883 30 10.102686 Anserini +test1641 Q0 8318338 1 14.565597 Anserini +test1641 Q0 17503563 2 14.248963 Anserini +test1641 Q0 879752 3 14.228514 Anserini +test1641 Q0 391952 4 14.034397 Anserini +test1641 Q0 17503566 5 13.820375 Anserini +test1641 Q0 4052814 6 12.503390 Anserini +test1641 Q0 11294473 7 12.493237 Anserini +test1641 Q0 3335058 8 12.429113 Anserini +test1641 Q0 4122301 9 12.395014 Anserini +test1641 Q0 8133565 10 12.352197 Anserini +test1641 Q0 4122153 11 12.346319 Anserini +test1641 Q0 1962891 12 12.015200 Anserini +test1641 Q0 354337 13 11.904706 Anserini +test1641 Q0 13707367 14 11.814978 Anserini +test1641 Q0 4122259 15 11.731622 Anserini +test1641 Q0 20529521 16 11.532739 Anserini +test1641 Q0 16204235 17 11.532739 Anserini +test1641 Q0 16812083 18 11.386102 Anserini +test1641 Q0 17503568 19 11.258810 Anserini +test1641 Q0 1326727 20 11.145194 Anserini +test1641 Q0 140174 21 11.093781 Anserini +test1641 Q0 2845959 22 11.037423 Anserini +test1641 Q0 12181930 23 10.975454 Anserini +test1641 Q0 16995388 24 10.958436 Anserini +test1641 Q0 16790156 25 10.881453 Anserini +test1641 Q0 10511396 26 10.857290 Anserini +test1641 Q0 20691347 27 10.781345 Anserini +test1641 Q0 20683528 28 10.781345 Anserini +test1641 Q0 20686219 29 10.781345 Anserini +test1641 Q0 7454383 30 10.742192 Anserini +test1642 Q0 9517324 1 11.338815 Anserini +test1642 Q0 8045587 2 11.099834 Anserini +test1642 Q0 20770477 3 10.712208 Anserini +test1642 Q0 20770478 4 10.712208 Anserini +test1642 Q0 13597153 5 10.605317 Anserini +test1642 Q0 13597152 6 10.514252 Anserini +test1642 Q0 12372554 7 10.433324 Anserini +test1642 Q0 3457724 8 10.326835 Anserini +test1642 Q0 19633707 9 10.324434 Anserini +test1642 Q0 10743889 10 10.296326 Anserini +test1642 Q0 4298670 11 10.240876 Anserini +test1642 Q0 8045574 12 10.226141 Anserini +test1642 Q0 15016660 13 10.217484 Anserini +test1642 Q0 8574082 14 10.217365 Anserini +test1642 Q0 8834075 15 10.189882 Anserini +test1642 Q0 11838249 16 10.164836 Anserini +test1642 Q0 18290827 17 10.134353 Anserini +test1642 Q0 4259079 18 10.126465 Anserini +test1642 Q0 16012241 19 10.125816 Anserini +test1642 Q0 8834077 20 10.123875 Anserini +test1642 Q0 13538566 21 10.095620 Anserini +test1642 Q0 15879895 22 10.064911 Anserini +test1642 Q0 5097759 23 10.035631 Anserini +test1642 Q0 14838331 24 9.960344 Anserini +test1642 Q0 18290595 25 9.926260 Anserini +test1642 Q0 19630679 26 9.840783 Anserini +test1642 Q0 3653653 27 9.811286 Anserini +test1642 Q0 12447893 28 9.719266 Anserini +test1642 Q0 9041639 29 9.706669 Anserini +test1642 Q0 13973445 30 9.678814 Anserini +test1643 Q0 16743438 1 11.797506 Anserini +test1643 Q0 3612115 2 11.685822 Anserini +test1643 Q0 16743443 3 11.670419 Anserini +test1643 Q0 16743132 4 11.345194 Anserini +test1643 Q0 4654528 5 11.194777 Anserini +test1643 Q0 13354949 6 11.020692 Anserini +test1643 Q0 17279560 7 10.950703 Anserini +test1643 Q0 2579538 8 10.766570 Anserini +test1643 Q0 2579536 9 10.758677 Anserini +test1643 Q0 13336590 10 10.639860 Anserini +test1643 Q0 11096617 11 10.617215 Anserini +test1643 Q0 19982461 12 10.609556 Anserini +test1643 Q0 17278742 13 10.594366 Anserini +test1643 Q0 19737639 14 10.555182 Anserini +test1643 Q0 17279557 15 10.270620 Anserini +test1643 Q0 11692205 16 10.230777 Anserini +test1643 Q0 20966431 17 10.227247 Anserini +test1643 Q0 1779443 18 10.147785 Anserini +test1643 Q0 16743133 19 10.053428 Anserini +test1643 Q0 21005730 20 10.025178 Anserini +test1643 Q0 19006663 21 9.969453 Anserini +test1643 Q0 20618590 22 9.967432 Anserini +test1643 Q0 13328937 23 9.939576 Anserini +test1643 Q0 20618591 24 9.885843 Anserini +test1643 Q0 20979394 25 9.881956 Anserini +test1643 Q0 20618592 26 9.880019 Anserini +test1643 Q0 11692203 27 9.866211 Anserini +test1643 Q0 13232304 28 9.865454 Anserini +test1643 Q0 20675687 29 9.849274 Anserini +test1643 Q0 19982465 30 9.819634 Anserini +test1644 Q0 2749441 1 22.534653 Anserini +test1644 Q0 15771571 2 18.927996 Anserini +test1644 Q0 297819 3 18.006031 Anserini +test1644 Q0 262267 4 17.433718 Anserini +test1644 Q0 17040976 5 17.264355 Anserini +test1644 Q0 773202 6 16.788191 Anserini +test1644 Q0 899809 7 15.986473 Anserini +test1644 Q0 303359 8 15.986473 Anserini +test1644 Q0 10480489 9 15.887067 Anserini +test1644 Q0 6099928 10 15.494610 Anserini +test1644 Q0 6099930 11 15.494610 Anserini +test1644 Q0 999724 12 15.397249 Anserini +test1644 Q0 1787603 13 15.336132 Anserini +test1644 Q0 348350 14 15.302012 Anserini +test1644 Q0 710259 15 15.275469 Anserini +test1644 Q0 2761686 16 15.029432 Anserini +test1644 Q0 13963741 17 14.793551 Anserini +test1644 Q0 303208 18 14.735579 Anserini +test1644 Q0 89998 19 14.667002 Anserini +test1644 Q0 5090235 20 14.658587 Anserini +test1644 Q0 348342 21 14.517401 Anserini +test1644 Q0 161048 22 14.466084 Anserini +test1644 Q0 2394531 23 14.410944 Anserini +test1644 Q0 8350937 24 14.320368 Anserini +test1644 Q0 303193 25 14.288137 Anserini +test1644 Q0 20379828 26 14.128122 Anserini +test1644 Q0 14517351 27 14.080807 Anserini +test1644 Q0 6489512 28 14.077456 Anserini +test1644 Q0 4430322 29 14.023080 Anserini +test1644 Q0 3647737 30 13.989041 Anserini +test1645 Q0 11234285 1 17.654877 Anserini +test1645 Q0 7088681 2 15.454003 Anserini +test1645 Q0 11234284 3 15.370634 Anserini +test1645 Q0 14348873 4 14.327112 Anserini +test1645 Q0 20155276 5 14.217779 Anserini +test1645 Q0 9635365 6 14.180596 Anserini +test1645 Q0 7549283 7 13.940421 Anserini +test1645 Q0 7649927 8 13.880135 Anserini +test1645 Q0 18691691 9 13.816048 Anserini +test1645 Q0 19107344 10 13.699394 Anserini +test1645 Q0 11285291 11 13.696647 Anserini +test1645 Q0 13939741 12 13.644514 Anserini +test1645 Q0 15679726 13 13.377242 Anserini +test1645 Q0 19662323 14 13.372025 Anserini +test1645 Q0 18691690 15 13.365351 Anserini +test1645 Q0 6351922 16 13.354025 Anserini +test1645 Q0 15226181 17 13.340750 Anserini +test1645 Q0 15159712 18 13.290169 Anserini +test1645 Q0 19541784 19 13.281893 Anserini +test1645 Q0 13934205 20 13.280831 Anserini +test1645 Q0 13934199 21 13.280831 Anserini +test1645 Q0 19955136 22 13.265082 Anserini +test1645 Q0 20155278 23 13.227161 Anserini +test1645 Q0 15509025 24 13.184605 Anserini +test1645 Q0 1985182 25 13.150292 Anserini +test1645 Q0 10236429 26 13.116508 Anserini +test1645 Q0 3282852 27 13.078230 Anserini +test1645 Q0 11285296 28 13.012033 Anserini +test1645 Q0 9678308 29 12.999295 Anserini +test1645 Q0 20693328 30 12.896358 Anserini +test1646 Q0 14337077 1 13.735434 Anserini +test1646 Q0 16641480 2 13.214607 Anserini +test1646 Q0 8658073 3 13.195453 Anserini +test1646 Q0 19743540 4 12.547255 Anserini +test1646 Q0 1285034 5 12.497083 Anserini +test1646 Q0 14071994 6 12.458893 Anserini +test1646 Q0 16796156 7 12.449533 Anserini +test1646 Q0 7988575 8 12.419930 Anserini +test1646 Q0 18715061 9 12.381909 Anserini +test1646 Q0 7334902 10 12.361794 Anserini +test1646 Q0 15321892 11 12.298063 Anserini +test1646 Q0 8696664 12 12.284174 Anserini +test1646 Q0 11076395 13 12.170562 Anserini +test1646 Q0 2356729 14 12.134929 Anserini +test1646 Q0 20157069 15 12.120829 Anserini +test1646 Q0 11643187 16 12.091583 Anserini +test1646 Q0 15735976 17 12.081663 Anserini +test1646 Q0 7628427 18 12.037685 Anserini +test1646 Q0 20802562 19 12.024060 Anserini +test1646 Q0 18059940 20 11.948636 Anserini +test1646 Q0 8864154 21 11.912196 Anserini +test1646 Q0 16629886 22 11.902985 Anserini +test1646 Q0 8851343 23 11.885704 Anserini +test1646 Q0 14179196 24 11.863870 Anserini +test1646 Q0 8696654 25 11.850070 Anserini +test1646 Q0 920900 26 11.848713 Anserini +test1646 Q0 2580446 27 11.837815 Anserini +test1646 Q0 12894798 28 11.828997 Anserini +test1646 Q0 13857639 29 11.826094 Anserini +test1646 Q0 11115279 30 11.760820 Anserini +test1647 Q0 20190891 1 12.471052 Anserini +test1647 Q0 20190892 2 12.471052 Anserini +test1647 Q0 9065398 3 11.812201 Anserini +test1647 Q0 6654521 4 11.541040 Anserini +test1647 Q0 6654523 5 11.541040 Anserini +test1647 Q0 12881803 6 11.382521 Anserini +test1647 Q0 12813552 7 11.299046 Anserini +test1647 Q0 6247115 8 11.036597 Anserini +test1647 Q0 11646809 9 10.861137 Anserini +test1647 Q0 20179327 10 10.819620 Anserini +test1647 Q0 18377557 11 10.782335 Anserini +test1647 Q0 12813321 12 10.781166 Anserini +test1647 Q0 12815063 13 10.781166 Anserini +test1647 Q0 11646810 14 10.764019 Anserini +test1647 Q0 8859166 15 10.752063 Anserini +test1647 Q0 14906103 16 10.736380 Anserini +test1647 Q0 12828355 17 10.699757 Anserini +test1647 Q0 1171367 18 10.652213 Anserini +test1647 Q0 13263053 19 10.650541 Anserini +test1647 Q0 13258932 20 10.650541 Anserini +test1647 Q0 15657576 21 10.565400 Anserini +test1647 Q0 8410567 22 10.531553 Anserini +test1647 Q0 16044338 23 10.525029 Anserini +test1647 Q0 1283661 24 10.519490 Anserini +test1647 Q0 12813283 25 10.518028 Anserini +test1647 Q0 13258499 26 10.483543 Anserini +test1647 Q0 19434468 27 10.483543 Anserini +test1647 Q0 3711387 28 10.441277 Anserini +test1647 Q0 14489455 29 10.441277 Anserini +test1647 Q0 4199026 30 10.441277 Anserini +test1648 Q0 19896213 1 17.614429 Anserini +test1648 Q0 16556384 2 17.155663 Anserini +test1648 Q0 19896203 3 17.035830 Anserini +test1648 Q0 19526009 4 14.584990 Anserini +test1648 Q0 19896212 5 14.488498 Anserini +test1648 Q0 5495395 6 12.962056 Anserini +test1648 Q0 6221015 7 12.878298 Anserini +test1648 Q0 19526008 8 12.827024 Anserini +test1648 Q0 19472634 9 12.811155 Anserini +test1648 Q0 11075709 10 12.719074 Anserini +test1648 Q0 9989867 11 12.571963 Anserini +test1648 Q0 18611577 12 12.562355 Anserini +test1648 Q0 19896207 13 12.494204 Anserini +test1648 Q0 18569326 14 12.451220 Anserini +test1648 Q0 19472635 15 12.373692 Anserini +test1648 Q0 9037235 16 12.281379 Anserini +test1648 Q0 19896211 17 12.249845 Anserini +test1648 Q0 20477456 18 12.238220 Anserini +test1648 Q0 19896208 19 12.195350 Anserini +test1648 Q0 12799921 20 12.142856 Anserini +test1648 Q0 16832191 21 12.116630 Anserini +test1648 Q0 7306918 22 12.085398 Anserini +test1648 Q0 20338347 23 11.980858 Anserini +test1648 Q0 5495373 24 11.980780 Anserini +test1648 Q0 2784874 25 11.912488 Anserini +test1648 Q0 15568264 26 11.749479 Anserini +test1648 Q0 8098888 27 11.709351 Anserini +test1648 Q0 19896205 28 11.684806 Anserini +test1648 Q0 19235101 29 11.527781 Anserini +test1648 Q0 6976958 30 11.499024 Anserini +test1649 Q0 15401422 1 15.913717 Anserini +test1649 Q0 8818321 2 15.477906 Anserini +test1649 Q0 18799685 3 15.271315 Anserini +test1649 Q0 18799690 4 14.991166 Anserini +test1649 Q0 7304264 5 14.955781 Anserini +test1649 Q0 1291799 6 14.862169 Anserini +test1649 Q0 667253 7 14.464638 Anserini +test1649 Q0 2036379 8 14.430992 Anserini +test1649 Q0 10099142 9 14.409379 Anserini +test1649 Q0 11581616 10 14.393562 Anserini +test1649 Q0 11363966 11 14.281877 Anserini +test1649 Q0 10757577 12 14.138363 Anserini +test1649 Q0 6459546 13 14.030156 Anserini +test1649 Q0 2036390 14 13.961790 Anserini +test1649 Q0 3139184 15 13.859141 Anserini +test1649 Q0 6818493 16 13.821895 Anserini +test1649 Q0 14479449 17 13.615898 Anserini +test1649 Q0 1683187 18 13.548668 Anserini +test1649 Q0 2564217 19 13.527325 Anserini +test1649 Q0 20976267 20 13.325783 Anserini +test1649 Q0 17757888 21 13.267621 Anserini +test1649 Q0 20310960 22 13.239455 Anserini +test1649 Q0 12334697 23 13.213110 Anserini +test1649 Q0 9942399 24 13.193497 Anserini +test1649 Q0 1851823 25 13.077630 Anserini +test1649 Q0 29095 26 13.060741 Anserini +test1649 Q0 14587037 27 13.060741 Anserini +test1649 Q0 4852601 28 13.056591 Anserini +test1649 Q0 5662763 29 13.056591 Anserini +test1649 Q0 11305571 30 13.038332 Anserini +test165 Q0 283413 1 12.498804 Anserini +test165 Q0 106394 2 12.431050 Anserini +test165 Q0 10737719 3 12.314222 Anserini +test165 Q0 2141862 4 12.264913 Anserini +test165 Q0 7793873 5 12.062887 Anserini +test165 Q0 357994 6 12.007019 Anserini +test165 Q0 358001 7 12.007019 Anserini +test165 Q0 16081488 8 11.980653 Anserini +test165 Q0 7793874 9 11.809258 Anserini +test165 Q0 187185 10 11.801850 Anserini +test165 Q0 2008306 11 11.746484 Anserini +test165 Q0 238551 12 11.651983 Anserini +test165 Q0 16081459 13 11.642765 Anserini +test165 Q0 8840401 14 11.562731 Anserini +test165 Q0 2141814 15 11.562731 Anserini +test165 Q0 19897839 16 11.463511 Anserini +test165 Q0 20013475 17 11.353908 Anserini +test165 Q0 9422375 18 11.353908 Anserini +test165 Q0 4799087 19 11.339214 Anserini +test165 Q0 2141801 20 11.336163 Anserini +test165 Q0 2141871 21 11.314350 Anserini +test165 Q0 2141808 22 11.191215 Anserini +test165 Q0 1638571 23 11.187258 Anserini +test165 Q0 16081485 24 11.185274 Anserini +test165 Q0 2141866 25 11.185274 Anserini +test165 Q0 1638582 26 11.144027 Anserini +test165 Q0 357996 27 11.142855 Anserini +test165 Q0 10370271 28 11.069242 Anserini +test165 Q0 2141802 29 11.059748 Anserini +test165 Q0 19886813 30 11.052565 Anserini +test1650 Q0 20362536 1 15.491184 Anserini +test1650 Q0 12192908 2 15.225657 Anserini +test1650 Q0 12192907 3 14.988987 Anserini +test1650 Q0 20362544 4 14.639610 Anserini +test1650 Q0 1720287 5 14.319994 Anserini +test1650 Q0 9026533 6 14.193576 Anserini +test1650 Q0 11861071 7 13.836659 Anserini +test1650 Q0 8291980 8 13.718204 Anserini +test1650 Q0 15225107 9 13.687435 Anserini +test1650 Q0 628513 10 13.616670 Anserini +test1650 Q0 619055 11 13.589486 Anserini +test1650 Q0 825373 12 13.244755 Anserini +test1650 Q0 7237560 13 13.106778 Anserini +test1650 Q0 8800775 14 13.072304 Anserini +test1650 Q0 1150055 15 13.029222 Anserini +test1650 Q0 628339 16 12.989771 Anserini +test1650 Q0 2049579 17 12.989771 Anserini +test1650 Q0 15840014 18 12.903512 Anserini +test1650 Q0 15840003 19 12.892733 Anserini +test1650 Q0 825367 20 12.713913 Anserini +test1650 Q0 16036981 21 12.543204 Anserini +test1650 Q0 14063466 22 12.540372 Anserini +test1650 Q0 9213356 23 12.456770 Anserini +test1650 Q0 13737295 24 12.454105 Anserini +test1650 Q0 7880255 25 12.441402 Anserini +test1650 Q0 2607170 26 12.439906 Anserini +test1650 Q0 627599 27 12.388300 Anserini +test1650 Q0 10339470 28 12.358991 Anserini +test1650 Q0 628174 29 12.352935 Anserini +test1650 Q0 10846893 30 12.246419 Anserini +test1651 Q0 3768250 1 13.988235 Anserini +test1651 Q0 3768257 2 12.597481 Anserini +test1651 Q0 93960 3 12.318062 Anserini +test1651 Q0 662223 4 12.190151 Anserini +test1651 Q0 10204656 5 12.077690 Anserini +test1651 Q0 93999 6 12.057673 Anserini +test1651 Q0 14751016 7 11.981487 Anserini +test1651 Q0 14751013 8 11.880415 Anserini +test1651 Q0 1446335 9 11.808920 Anserini +test1651 Q0 3141568 10 11.799217 Anserini +test1651 Q0 93959 11 11.718311 Anserini +test1651 Q0 2701998 12 11.430056 Anserini +test1651 Q0 8168030 13 11.346284 Anserini +test1651 Q0 5405703 14 11.322083 Anserini +test1651 Q0 93978 15 11.277443 Anserini +test1651 Q0 5405707 16 11.266261 Anserini +test1651 Q0 14750998 17 11.090459 Anserini +test1651 Q0 586045 18 11.051801 Anserini +test1651 Q0 5405701 19 11.022039 Anserini +test1651 Q0 118602 20 10.944887 Anserini +test1651 Q0 5340944 21 10.942812 Anserini +test1651 Q0 5340950 22 10.881481 Anserini +test1651 Q0 4607842 23 10.854216 Anserini +test1651 Q0 6964682 24 10.758748 Anserini +test1651 Q0 2025780 25 10.719903 Anserini +test1651 Q0 5405716 26 10.701851 Anserini +test1651 Q0 3950900 27 10.650141 Anserini +test1651 Q0 5405715 28 10.594021 Anserini +test1651 Q0 16992747 29 10.535897 Anserini +test1651 Q0 93945 30 10.527679 Anserini +test1652 Q0 8008041 1 13.636153 Anserini +test1652 Q0 18694918 2 13.487099 Anserini +test1652 Q0 5463861 3 13.290355 Anserini +test1652 Q0 9102346 4 13.180664 Anserini +test1652 Q0 8008017 5 12.836704 Anserini +test1652 Q0 19877189 6 12.593172 Anserini +test1652 Q0 10931322 7 12.556371 Anserini +test1652 Q0 19877153 8 12.508423 Anserini +test1652 Q0 245984 9 12.375922 Anserini +test1652 Q0 17724475 10 12.351187 Anserini +test1652 Q0 20788826 11 12.340142 Anserini +test1652 Q0 19745622 12 12.336989 Anserini +test1652 Q0 18558237 13 12.266603 Anserini +test1652 Q0 18694929 14 12.194731 Anserini +test1652 Q0 17843406 15 12.149940 Anserini +test1652 Q0 8008039 16 12.099544 Anserini +test1652 Q0 18661114 17 12.040367 Anserini +test1652 Q0 19877161 18 11.996363 Anserini +test1652 Q0 16507909 19 11.948526 Anserini +test1652 Q0 8008030 20 11.948259 Anserini +test1652 Q0 19745625 21 11.938131 Anserini +test1652 Q0 19745611 22 11.873445 Anserini +test1652 Q0 9102347 23 11.868224 Anserini +test1652 Q0 17843399 24 11.848242 Anserini +test1652 Q0 10913229 25 11.792444 Anserini +test1652 Q0 17843424 26 11.791957 Anserini +test1652 Q0 19882417 27 11.780720 Anserini +test1652 Q0 8008047 28 11.690805 Anserini +test1652 Q0 811740 29 11.680921 Anserini +test1652 Q0 19667553 30 11.647555 Anserini +test1653 Q0 6794556 1 12.134907 Anserini +test1653 Q0 7308472 2 11.336946 Anserini +test1653 Q0 18623138 3 11.272036 Anserini +test1653 Q0 6794553 4 10.887650 Anserini +test1653 Q0 18623143 5 10.522799 Anserini +test1653 Q0 12257660 6 10.403688 Anserini +test1653 Q0 11496928 7 10.373758 Anserini +test1653 Q0 7308463 8 10.280411 Anserini +test1653 Q0 11371367 9 10.094281 Anserini +test1653 Q0 6217454 10 10.075756 Anserini +test1653 Q0 15548201 11 9.951693 Anserini +test1653 Q0 419048 12 9.917781 Anserini +test1653 Q0 6217445 13 9.842051 Anserini +test1653 Q0 18767552 14 9.765708 Anserini +test1653 Q0 18767551 15 9.646888 Anserini +test1653 Q0 14111978 16 9.638515 Anserini +test1653 Q0 419025 17 9.608624 Anserini +test1653 Q0 16428476 18 9.439930 Anserini +test1653 Q0 419047 19 9.372326 Anserini +test1653 Q0 15548192 20 9.194766 Anserini +test1653 Q0 4394457 21 9.178604 Anserini +test1653 Q0 20179123 22 9.165879 Anserini +test1653 Q0 18100465 23 9.165879 Anserini +test1653 Q0 15548194 24 9.161679 Anserini +test1653 Q0 6794554 25 9.102112 Anserini +test1653 Q0 15548198 26 9.080551 Anserini +test1653 Q0 15298517 27 9.049964 Anserini +test1653 Q0 1971276 28 8.915070 Anserini +test1653 Q0 5279002 29 8.910587 Anserini +test1653 Q0 16860389 30 8.811962 Anserini +test1654 Q0 7234528 1 12.639273 Anserini +test1654 Q0 7334759 2 12.239630 Anserini +test1654 Q0 1763600 3 11.906308 Anserini +test1654 Q0 12670325 4 11.890318 Anserini +test1654 Q0 1336666 5 11.877567 Anserini +test1654 Q0 15696306 6 11.614514 Anserini +test1654 Q0 1518374 7 11.399323 Anserini +test1654 Q0 11272781 8 11.251960 Anserini +test1654 Q0 18479947 9 11.207527 Anserini +test1654 Q0 15886462 10 11.051322 Anserini +test1654 Q0 11506068 11 11.029108 Anserini +test1654 Q0 11681682 12 11.029108 Anserini +test1654 Q0 5321936 13 11.011728 Anserini +test1654 Q0 17588425 14 10.978256 Anserini +test1654 Q0 1336681 15 10.909633 Anserini +test1654 Q0 13468122 16 10.867025 Anserini +test1654 Q0 15365008 17 10.849908 Anserini +test1654 Q0 5839727 18 10.780255 Anserini +test1654 Q0 13438772 19 10.744720 Anserini +test1654 Q0 14990878 20 10.716709 Anserini +test1654 Q0 5241017 21 10.699928 Anserini +test1654 Q0 12670317 22 10.688578 Anserini +test1654 Q0 17074770 23 10.664783 Anserini +test1654 Q0 12701241 24 10.657888 Anserini +test1654 Q0 4995922 25 10.609407 Anserini +test1654 Q0 17198247 26 10.587901 Anserini +test1654 Q0 17202390 27 10.581746 Anserini +test1654 Q0 9336101 28 10.547691 Anserini +test1654 Q0 4090702 29 10.545566 Anserini +test1654 Q0 14724707 30 10.545566 Anserini +test1655 Q0 97576 1 13.187284 Anserini +test1655 Q0 1879390 2 13.164679 Anserini +test1655 Q0 97579 3 12.730051 Anserini +test1655 Q0 18063468 4 12.636918 Anserini +test1655 Q0 2896225 5 12.628852 Anserini +test1655 Q0 9305517 6 12.061642 Anserini +test1655 Q0 9305520 7 11.814863 Anserini +test1655 Q0 12950176 8 11.735873 Anserini +test1655 Q0 12950182 9 11.735873 Anserini +test1655 Q0 4578435 10 11.710822 Anserini +test1655 Q0 175328 11 11.584114 Anserini +test1655 Q0 6900316 12 11.530594 Anserini +test1655 Q0 901319 13 11.462969 Anserini +test1655 Q0 8700084 14 11.399929 Anserini +test1655 Q0 8575752 15 11.387718 Anserini +test1655 Q0 10949392 16 11.383130 Anserini +test1655 Q0 547360 17 11.354033 Anserini +test1655 Q0 43420 18 11.344109 Anserini +test1655 Q0 664288 19 11.331861 Anserini +test1655 Q0 11608761 20 11.329115 Anserini +test1655 Q0 7276705 21 11.302610 Anserini +test1655 Q0 97595 22 11.233723 Anserini +test1655 Q0 10454837 23 11.227892 Anserini +test1655 Q0 20053094 24 11.216732 Anserini +test1655 Q0 354631 25 11.204018 Anserini +test1655 Q0 2868027 26 11.195192 Anserini +test1655 Q0 6377321 27 11.187120 Anserini +test1655 Q0 7276691 28 11.163259 Anserini +test1655 Q0 1447635 29 11.139488 Anserini +test1655 Q0 1391904 30 11.108923 Anserini +test1656 Q0 11258626 1 11.438984 Anserini +test1656 Q0 17882866 2 10.846482 Anserini +test1656 Q0 11258624 3 10.605633 Anserini +test1656 Q0 8335005 4 10.567163 Anserini +test1656 Q0 10907321 5 10.510275 Anserini +test1656 Q0 15255884 6 10.491396 Anserini +test1656 Q0 7725251 7 10.467138 Anserini +test1656 Q0 19028376 8 10.410900 Anserini +test1656 Q0 7725213 9 10.384387 Anserini +test1656 Q0 708547 10 10.381805 Anserini +test1656 Q0 12600884 11 10.351164 Anserini +test1656 Q0 7725240 12 10.288784 Anserini +test1656 Q0 10395582 13 10.250277 Anserini +test1656 Q0 17676000 14 10.218101 Anserini +test1656 Q0 16728166 15 10.089372 Anserini +test1656 Q0 18578742 16 10.059474 Anserini +test1656 Q0 19594031 17 10.038243 Anserini +test1656 Q0 11438675 18 10.012671 Anserini +test1656 Q0 18982765 19 9.983331 Anserini +test1656 Q0 5989389 20 9.957839 Anserini +test1656 Q0 7949483 21 9.926169 Anserini +test1656 Q0 8539955 22 9.893066 Anserini +test1656 Q0 7980588 23 9.879196 Anserini +test1656 Q0 8292268 24 9.877630 Anserini +test1656 Q0 18575409 25 9.807602 Anserini +test1656 Q0 15606741 26 9.785042 Anserini +test1656 Q0 5913230 27 9.681347 Anserini +test1656 Q0 17882863 28 9.590061 Anserini +test1656 Q0 3099159 29 9.590061 Anserini +test1656 Q0 20334989 30 9.586635 Anserini +test1657 Q0 16755342 1 11.487714 Anserini +test1657 Q0 16023601 2 11.473922 Anserini +test1657 Q0 15530365 3 11.307508 Anserini +test1657 Q0 15530366 4 11.292245 Anserini +test1657 Q0 16118559 5 11.214228 Anserini +test1657 Q0 16023599 6 11.198349 Anserini +test1657 Q0 16118564 7 11.176554 Anserini +test1657 Q0 15530363 8 11.070061 Anserini +test1657 Q0 16118568 9 11.066532 Anserini +test1657 Q0 16118569 10 11.066532 Anserini +test1657 Q0 9727985 11 10.917761 Anserini +test1657 Q0 15711456 12 10.889043 Anserini +test1657 Q0 4664939 13 10.812390 Anserini +test1657 Q0 15711471 14 10.776306 Anserini +test1657 Q0 4664926 15 10.732149 Anserini +test1657 Q0 15530372 16 10.591018 Anserini +test1657 Q0 13229796 17 10.573594 Anserini +test1657 Q0 13231620 18 10.539114 Anserini +test1657 Q0 14940012 19 10.539114 Anserini +test1657 Q0 7105239 20 10.521708 Anserini +test1657 Q0 15711467 21 10.492220 Anserini +test1657 Q0 9727988 22 10.454100 Anserini +test1657 Q0 15711460 23 10.335791 Anserini +test1657 Q0 11927811 24 10.335791 Anserini +test1657 Q0 4664908 25 10.224667 Anserini +test1657 Q0 16470422 26 10.168835 Anserini +test1657 Q0 18533526 27 10.168835 Anserini +test1657 Q0 17236021 28 10.168835 Anserini +test1657 Q0 17236019 29 10.113752 Anserini +test1657 Q0 11928132 30 10.036782 Anserini +test1658 Q0 10053470 1 17.128983 Anserini +test1658 Q0 9936151 2 15.966393 Anserini +test1658 Q0 9936138 3 15.955382 Anserini +test1658 Q0 9936130 4 15.799500 Anserini +test1658 Q0 18754161 5 15.649916 Anserini +test1658 Q0 18754168 6 15.649916 Anserini +test1658 Q0 4811534 7 15.555607 Anserini +test1658 Q0 16812490 8 15.430129 Anserini +test1658 Q0 4811587 9 15.196407 Anserini +test1658 Q0 16609752 10 15.100516 Anserini +test1658 Q0 4811506 11 14.874560 Anserini +test1658 Q0 4811518 12 14.872303 Anserini +test1658 Q0 19523331 13 14.861433 Anserini +test1658 Q0 11079615 14 14.795911 Anserini +test1658 Q0 16665792 15 14.469787 Anserini +test1658 Q0 17314123 16 14.420343 Anserini +test1658 Q0 19087225 17 14.379904 Anserini +test1658 Q0 9936131 18 14.357128 Anserini +test1658 Q0 9936135 19 14.341960 Anserini +test1658 Q0 18742989 20 14.281370 Anserini +test1658 Q0 18843754 21 14.193722 Anserini +test1658 Q0 18843760 22 14.193722 Anserini +test1658 Q0 13034802 23 14.124585 Anserini +test1658 Q0 20158593 24 14.015553 Anserini +test1658 Q0 20153197 25 14.015553 Anserini +test1658 Q0 14775062 26 13.869767 Anserini +test1658 Q0 10235326 27 13.863433 Anserini +test1658 Q0 10235329 28 13.863433 Anserini +test1658 Q0 12716819 29 13.766774 Anserini +test1658 Q0 14418202 30 13.743729 Anserini +test1659 Q0 15023012 1 13.452132 Anserini +test1659 Q0 408045 2 13.088255 Anserini +test1659 Q0 742983 3 12.832259 Anserini +test1659 Q0 6170670 4 12.441135 Anserini +test1659 Q0 1734894 5 12.190898 Anserini +test1659 Q0 742997 6 12.005774 Anserini +test1659 Q0 741533 7 11.858835 Anserini +test1659 Q0 4389406 8 11.733480 Anserini +test1659 Q0 7692215 9 11.695847 Anserini +test1659 Q0 4136806 10 11.634995 Anserini +test1659 Q0 742988 11 11.516121 Anserini +test1659 Q0 408211 12 11.496401 Anserini +test1659 Q0 10028159 13 11.340519 Anserini +test1659 Q0 1068611 14 11.313931 Anserini +test1659 Q0 1068640 15 11.313931 Anserini +test1659 Q0 12664403 16 11.303686 Anserini +test1659 Q0 742999 17 11.236531 Anserini +test1659 Q0 7692302 18 11.111635 Anserini +test1659 Q0 12997624 19 11.093588 Anserini +test1659 Q0 4915957 20 11.075644 Anserini +test1659 Q0 8445202 21 11.053888 Anserini +test1659 Q0 741438 22 10.941507 Anserini +test1659 Q0 743001 23 10.814605 Anserini +test1659 Q0 1771948 24 10.767490 Anserini +test1659 Q0 9359917 25 10.740515 Anserini +test1659 Q0 741454 26 10.485147 Anserini +test1659 Q0 17990233 27 10.449473 Anserini +test1659 Q0 10028152 28 10.382258 Anserini +test1659 Q0 20877010 29 10.378894 Anserini +test1659 Q0 20877016 30 10.378894 Anserini +test166 Q0 6650339 1 16.183733 Anserini +test166 Q0 3544060 2 15.145833 Anserini +test166 Q0 6650345 3 13.483947 Anserini +test166 Q0 6650336 4 13.259849 Anserini +test166 Q0 3100555 5 12.327534 Anserini +test166 Q0 3100558 6 12.327534 Anserini +test166 Q0 6812287 7 12.212839 Anserini +test166 Q0 972478 8 12.165073 Anserini +test166 Q0 13088011 9 12.070284 Anserini +test166 Q0 2835979 10 12.027661 Anserini +test166 Q0 20281458 11 12.026276 Anserini +test166 Q0 5278033 12 11.952581 Anserini +test166 Q0 8023806 13 11.832417 Anserini +test166 Q0 14087810 14 11.748606 Anserini +test166 Q0 2232137 15 11.738254 Anserini +test166 Q0 6650352 16 11.586878 Anserini +test166 Q0 10416258 17 11.498536 Anserini +test166 Q0 15241834 18 11.391535 Anserini +test166 Q0 11083203 19 11.306606 Anserini +test166 Q0 8023805 20 11.281101 Anserini +test166 Q0 20281459 21 11.181769 Anserini +test166 Q0 9276240 22 11.174928 Anserini +test166 Q0 10689932 23 11.036717 Anserini +test166 Q0 10641556 24 11.017144 Anserini +test166 Q0 2410042 25 10.958697 Anserini +test166 Q0 20281461 26 10.931999 Anserini +test166 Q0 4089255 27 10.925797 Anserini +test166 Q0 1319983 28 10.882820 Anserini +test166 Q0 14506289 29 10.862405 Anserini +test166 Q0 20075756 30 10.838286 Anserini +test1660 Q0 16133348 1 12.083812 Anserini +test1660 Q0 15494554 2 12.060559 Anserini +test1660 Q0 14879701 3 11.913071 Anserini +test1660 Q0 1472895 4 11.868502 Anserini +test1660 Q0 1472908 5 11.828527 Anserini +test1660 Q0 13002353 6 11.739195 Anserini +test1660 Q0 9030231 7 11.725864 Anserini +test1660 Q0 15382719 8 11.553490 Anserini +test1660 Q0 2314238 9 11.540305 Anserini +test1660 Q0 2314206 10 11.540305 Anserini +test1660 Q0 15382715 11 11.516171 Anserini +test1660 Q0 17479185 12 11.471869 Anserini +test1660 Q0 12664566 13 11.412879 Anserini +test1660 Q0 11011812 14 11.302063 Anserini +test1660 Q0 15382696 15 11.262902 Anserini +test1660 Q0 17438626 16 11.245318 Anserini +test1660 Q0 4924642 17 11.200465 Anserini +test1660 Q0 7727089 18 11.052665 Anserini +test1660 Q0 21001621 19 11.052665 Anserini +test1660 Q0 14890636 20 11.047602 Anserini +test1660 Q0 13583510 21 11.015719 Anserini +test1660 Q0 13583506 22 11.015719 Anserini +test1660 Q0 3170467 23 10.988627 Anserini +test1660 Q0 4068445 24 10.946197 Anserini +test1660 Q0 18697182 25 10.914678 Anserini +test1660 Q0 4996727 26 10.914678 Anserini +test1660 Q0 12906124 27 10.857858 Anserini +test1660 Q0 9455023 28 10.856505 Anserini +test1660 Q0 1472902 29 10.854459 Anserini +test1660 Q0 15846450 30 10.820035 Anserini +test1661 Q0 5098280 1 11.579782 Anserini +test1661 Q0 95731 2 11.572068 Anserini +test1661 Q0 246681 3 11.246335 Anserini +test1661 Q0 20048990 4 10.916233 Anserini +test1661 Q0 13347671 5 10.877707 Anserini +test1661 Q0 2309957 6 10.874006 Anserini +test1661 Q0 12940321 7 10.822677 Anserini +test1661 Q0 11949238 8 10.822677 Anserini +test1661 Q0 11949248 9 10.822677 Anserini +test1661 Q0 5007714 10 10.792445 Anserini +test1661 Q0 4739028 11 10.724533 Anserini +test1661 Q0 13933781 12 10.572310 Anserini +test1661 Q0 17806054 13 10.555856 Anserini +test1661 Q0 20175607 14 10.496946 Anserini +test1661 Q0 1693617 15 10.459986 Anserini +test1661 Q0 12402150 16 10.399754 Anserini +test1661 Q0 12450099 17 10.313703 Anserini +test1661 Q0 7774856 18 10.288139 Anserini +test1661 Q0 438017 19 10.274000 Anserini +test1661 Q0 2735888 20 10.186874 Anserini +test1661 Q0 18399388 21 10.181839 Anserini +test1661 Q0 7928528 22 10.174324 Anserini +test1661 Q0 10942945 23 10.164999 Anserini +test1661 Q0 13933779 24 10.118336 Anserini +test1661 Q0 3610435 25 10.109879 Anserini +test1661 Q0 11957870 26 9.999675 Anserini +test1661 Q0 15840218 27 9.920312 Anserini +test1661 Q0 196210 28 9.895735 Anserini +test1661 Q0 19040405 29 9.895735 Anserini +test1661 Q0 2735866 30 9.895735 Anserini +test1662 Q0 7412670 1 17.670553 Anserini +test1662 Q0 7412674 2 17.372875 Anserini +test1662 Q0 7412664 3 17.372875 Anserini +test1662 Q0 7412665 4 16.206213 Anserini +test1662 Q0 7412669 5 15.583588 Anserini +test1662 Q0 7412667 6 15.373554 Anserini +test1662 Q0 9878677 7 14.544184 Anserini +test1662 Q0 16079877 8 14.335012 Anserini +test1662 Q0 16081660 9 13.466042 Anserini +test1662 Q0 3058656 10 13.397337 Anserini +test1662 Q0 12374141 11 13.352538 Anserini +test1662 Q0 7412668 12 13.352538 Anserini +test1662 Q0 17232016 13 13.240112 Anserini +test1662 Q0 17032017 14 13.092349 Anserini +test1662 Q0 17232017 15 13.021141 Anserini +test1662 Q0 18212243 16 12.735605 Anserini +test1662 Q0 8413752 17 12.341189 Anserini +test1662 Q0 11436629 18 12.341189 Anserini +test1662 Q0 14408608 19 12.089955 Anserini +test1662 Q0 16079878 20 11.970582 Anserini +test1662 Q0 13627390 21 11.737535 Anserini +test1662 Q0 13627391 22 11.549912 Anserini +test1662 Q0 7412671 23 11.413934 Anserini +test1662 Q0 4193232 24 11.241837 Anserini +test1662 Q0 20036593 25 11.175012 Anserini +test1662 Q0 14970084 26 11.146903 Anserini +test1662 Q0 11436649 27 11.056443 Anserini +test1662 Q0 11436632 28 10.714304 Anserini +test1662 Q0 3820910 29 10.654877 Anserini +test1662 Q0 20891867 30 10.517344 Anserini +test1663 Q0 91221 1 9.575285 Anserini +test1663 Q0 20321242 2 9.461312 Anserini +test1663 Q0 8300710 3 9.284022 Anserini +test1663 Q0 8982691 4 9.275503 Anserini +test1663 Q0 5704934 5 9.221078 Anserini +test1663 Q0 18607819 6 9.149444 Anserini +test1663 Q0 20963904 7 8.966653 Anserini +test1663 Q0 2253744 8 8.937531 Anserini +test1663 Q0 12634961 9 8.922625 Anserini +test1663 Q0 13218301 10 8.809842 Anserini +test1663 Q0 3686862 11 8.769691 Anserini +test1663 Q0 19423499 12 8.741340 Anserini +test1663 Q0 5310704 13 8.728580 Anserini +test1663 Q0 717790 14 8.727432 Anserini +test1663 Q0 9311087 15 8.712988 Anserini +test1663 Q0 10783313 16 8.657519 Anserini +test1663 Q0 16173428 17 8.653654 Anserini +test1663 Q0 12348128 18 8.642908 Anserini +test1663 Q0 3717978 19 8.584829 Anserini +test1663 Q0 20971985 20 8.561225 Anserini +test1663 Q0 2524075 21 8.553500 Anserini +test1663 Q0 15922415 22 8.547719 Anserini +test1663 Q0 16454288 23 8.473690 Anserini +test1663 Q0 16183642 24 8.405445 Anserini +test1663 Q0 15811404 25 8.393175 Anserini +test1663 Q0 6326976 26 8.390795 Anserini +test1663 Q0 19430901 27 8.378130 Anserini +test1663 Q0 2687330 28 8.353741 Anserini +test1663 Q0 13508643 29 8.326384 Anserini +test1663 Q0 18604335 30 8.323623 Anserini +test1664 Q0 1748042 1 10.840706 Anserini +test1664 Q0 5581262 2 10.390224 Anserini +test1664 Q0 1165461 3 10.185816 Anserini +test1664 Q0 5062410 4 9.701576 Anserini +test1664 Q0 5846293 5 9.618032 Anserini +test1664 Q0 3613112 6 9.518794 Anserini +test1664 Q0 7079211 7 9.472237 Anserini +test1664 Q0 20229102 8 9.328503 Anserini +test1664 Q0 685475 9 9.326612 Anserini +test1664 Q0 15091247 10 9.325537 Anserini +test1664 Q0 2561412 11 9.308893 Anserini +test1664 Q0 17811036 12 9.294590 Anserini +test1664 Q0 3662842 13 9.292246 Anserini +test1664 Q0 16242866 14 9.200224 Anserini +test1664 Q0 3783709 15 9.172757 Anserini +test1664 Q0 6387093 16 9.145702 Anserini +test1664 Q0 3783712 17 9.118998 Anserini +test1664 Q0 5959546 18 9.107355 Anserini +test1664 Q0 7320416 19 9.090652 Anserini +test1664 Q0 5133828 20 9.074387 Anserini +test1664 Q0 8694292 21 9.022512 Anserini +test1664 Q0 9523449 22 8.878733 Anserini +test1664 Q0 8800511 23 8.853209 Anserini +test1664 Q0 17726017 24 8.840332 Anserini +test1664 Q0 10119907 25 8.812332 Anserini +test1664 Q0 17382696 26 8.805532 Anserini +test1664 Q0 1513067 27 8.799823 Anserini +test1664 Q0 17274299 28 8.781700 Anserini +test1664 Q0 16155689 29 8.763175 Anserini +test1664 Q0 8106109 30 8.759018 Anserini +test1665 Q0 1977986 1 22.038082 Anserini +test1665 Q0 14252440 2 19.538740 Anserini +test1665 Q0 1701033 3 19.306400 Anserini +test1665 Q0 8388064 4 19.265423 Anserini +test1665 Q0 13433195 5 18.274876 Anserini +test1665 Q0 560128 6 17.789085 Anserini +test1665 Q0 13987498 7 17.759390 Anserini +test1665 Q0 3745436 8 17.659302 Anserini +test1665 Q0 6891232 9 17.404892 Anserini +test1665 Q0 8383927 10 17.083416 Anserini +test1665 Q0 1244771 11 16.920309 Anserini +test1665 Q0 895347 12 16.909885 Anserini +test1665 Q0 2837046 13 16.814983 Anserini +test1665 Q0 3433327 14 16.785994 Anserini +test1665 Q0 280030 15 16.760557 Anserini +test1665 Q0 9035977 16 16.732479 Anserini +test1665 Q0 17903235 17 16.703512 Anserini +test1665 Q0 12773115 18 16.486736 Anserini +test1665 Q0 848806 19 16.474630 Anserini +test1665 Q0 15880158 20 16.438787 Anserini +test1665 Q0 13530510 21 16.368378 Anserini +test1665 Q0 339421 22 16.216417 Anserini +test1665 Q0 8661445 23 16.170635 Anserini +test1665 Q0 882329 24 16.150223 Anserini +test1665 Q0 1822140 25 16.119230 Anserini +test1665 Q0 15414771 26 16.028444 Anserini +test1665 Q0 4099399 27 15.958581 Anserini +test1665 Q0 15284433 28 15.951567 Anserini +test1665 Q0 2679631 29 15.942113 Anserini +test1665 Q0 14960398 30 15.912973 Anserini +test1666 Q0 19121501 1 10.723728 Anserini +test1666 Q0 20608792 2 10.509888 Anserini +test1666 Q0 5641322 3 10.438051 Anserini +test1666 Q0 10637365 4 10.366858 Anserini +test1666 Q0 12018630 5 10.249507 Anserini +test1666 Q0 8613147 6 10.231653 Anserini +test1666 Q0 5674969 7 10.195813 Anserini +test1666 Q0 5674971 8 10.195813 Anserini +test1666 Q0 17653892 9 10.174698 Anserini +test1666 Q0 979219 10 10.076507 Anserini +test1666 Q0 5625091 11 9.910633 Anserini +test1666 Q0 9268604 12 9.875683 Anserini +test1666 Q0 8967903 13 9.794106 Anserini +test1666 Q0 18947610 14 9.719356 Anserini +test1666 Q0 20864282 15 9.674970 Anserini +test1666 Q0 4408944 16 9.654842 Anserini +test1666 Q0 13041502 17 9.653962 Anserini +test1666 Q0 5593205 18 9.639822 Anserini +test1666 Q0 16298816 19 9.638944 Anserini +test1666 Q0 18559439 20 9.587560 Anserini +test1666 Q0 2569097 21 9.563943 Anserini +test1666 Q0 1423502 22 9.557830 Anserini +test1666 Q0 9233116 23 9.545563 Anserini +test1666 Q0 8084709 24 9.543047 Anserini +test1666 Q0 17368971 25 9.468147 Anserini +test1666 Q0 9617020 26 9.431286 Anserini +test1666 Q0 3609701 27 9.429213 Anserini +test1666 Q0 10479678 28 9.417500 Anserini +test1666 Q0 12691709 29 9.405044 Anserini +test1666 Q0 5947179 30 9.387404 Anserini +test1667 Q0 12520151 1 14.961503 Anserini +test1667 Q0 20092910 2 14.928246 Anserini +test1667 Q0 2484121 3 14.610092 Anserini +test1667 Q0 4887919 4 14.484526 Anserini +test1667 Q0 4058989 5 14.437958 Anserini +test1667 Q0 16974587 6 14.340381 Anserini +test1667 Q0 2157983 7 14.186496 Anserini +test1667 Q0 20335916 8 14.176732 Anserini +test1667 Q0 20335918 9 14.176732 Anserini +test1667 Q0 4910677 10 14.153069 Anserini +test1667 Q0 9314431 11 14.104707 Anserini +test1667 Q0 12314129 12 14.012458 Anserini +test1667 Q0 7173082 13 13.983310 Anserini +test1667 Q0 19473133 14 13.937267 Anserini +test1667 Q0 4531190 15 13.909687 Anserini +test1667 Q0 8878683 16 13.905411 Anserini +test1667 Q0 182093 17 13.885269 Anserini +test1667 Q0 7457383 18 13.867394 Anserini +test1667 Q0 2193815 19 13.830389 Anserini +test1667 Q0 4395893 20 13.758235 Anserini +test1667 Q0 15118238 21 13.723456 Anserini +test1667 Q0 9427190 22 13.714096 Anserini +test1667 Q0 9427191 23 13.714096 Anserini +test1667 Q0 19006213 24 13.707737 Anserini +test1667 Q0 79150 25 13.704872 Anserini +test1667 Q0 11265140 26 13.668557 Anserini +test1667 Q0 11918292 27 13.653053 Anserini +test1667 Q0 1874383 28 13.578713 Anserini +test1667 Q0 15118246 29 13.577084 Anserini +test1667 Q0 19354419 30 13.476851 Anserini +test1668 Q0 11149994 1 15.463567 Anserini +test1668 Q0 3186434 2 15.129259 Anserini +test1668 Q0 3186471 3 14.671752 Anserini +test1668 Q0 4411120 4 14.192188 Anserini +test1668 Q0 4411106 5 14.062611 Anserini +test1668 Q0 3186448 6 13.909685 Anserini +test1668 Q0 12760339 7 13.542548 Anserini +test1668 Q0 4990275 8 13.219149 Anserini +test1668 Q0 3186472 9 13.181203 Anserini +test1668 Q0 9471814 10 13.157906 Anserini +test1668 Q0 3186439 11 13.142509 Anserini +test1668 Q0 3186431 12 12.580923 Anserini +test1668 Q0 4078436 13 12.577420 Anserini +test1668 Q0 11149993 14 12.404637 Anserini +test1668 Q0 14456477 15 12.377291 Anserini +test1668 Q0 11149995 16 12.334945 Anserini +test1668 Q0 13544651 17 12.300354 Anserini +test1668 Q0 11983598 18 12.300354 Anserini +test1668 Q0 3186482 19 12.082712 Anserini +test1668 Q0 5335386 20 12.063994 Anserini +test1668 Q0 3186444 21 11.945937 Anserini +test1668 Q0 3186463 22 11.938105 Anserini +test1668 Q0 8065480 23 11.871824 Anserini +test1668 Q0 19390571 24 11.753402 Anserini +test1668 Q0 16913132 25 11.701226 Anserini +test1668 Q0 17382724 26 11.669903 Anserini +test1668 Q0 3186433 27 11.659322 Anserini +test1668 Q0 9298104 28 11.577697 Anserini +test1668 Q0 3186435 29 11.519152 Anserini +test1668 Q0 3186440 30 11.402957 Anserini +test1669 Q0 16793556 1 16.567078 Anserini +test1669 Q0 16793555 2 16.419102 Anserini +test1669 Q0 16793552 3 15.836137 Anserini +test1669 Q0 16793539 4 15.811178 Anserini +test1669 Q0 16793561 5 15.419218 Anserini +test1669 Q0 20576122 6 14.795209 Anserini +test1669 Q0 20576115 7 14.746246 Anserini +test1669 Q0 16793542 8 14.704533 Anserini +test1669 Q0 16793540 9 14.638844 Anserini +test1669 Q0 20576102 10 14.224602 Anserini +test1669 Q0 20576113 11 14.179054 Anserini +test1669 Q0 20576108 12 13.570661 Anserini +test1669 Q0 16793547 13 13.008053 Anserini +test1669 Q0 20576112 14 12.895473 Anserini +test1669 Q0 20576101 15 12.785964 Anserini +test1669 Q0 16793550 16 12.718984 Anserini +test1669 Q0 9100382 17 12.597872 Anserini +test1669 Q0 16793549 18 12.596828 Anserini +test1669 Q0 20823937 19 12.540500 Anserini +test1669 Q0 20950927 20 12.452148 Anserini +test1669 Q0 20576120 21 12.422970 Anserini +test1669 Q0 16793546 22 12.224620 Anserini +test1669 Q0 16793560 23 12.122074 Anserini +test1669 Q0 15857090 24 12.105899 Anserini +test1669 Q0 6340078 25 12.022746 Anserini +test1669 Q0 16444421 26 11.872489 Anserini +test1669 Q0 16793557 27 11.839639 Anserini +test1669 Q0 12037950 28 11.832084 Anserini +test1669 Q0 16793559 29 11.828712 Anserini +test1669 Q0 9593737 30 11.809763 Anserini +test167 Q0 1163797 1 14.946833 Anserini +test167 Q0 563917 2 14.666464 Anserini +test167 Q0 290189 3 14.261131 Anserini +test167 Q0 5864042 4 14.026310 Anserini +test167 Q0 9754994 5 13.988596 Anserini +test167 Q0 13522049 6 13.973144 Anserini +test167 Q0 3100458 7 13.971138 Anserini +test167 Q0 13441238 8 13.720978 Anserini +test167 Q0 13441239 9 13.720978 Anserini +test167 Q0 14357779 10 13.704027 Anserini +test167 Q0 12181048 11 13.689206 Anserini +test167 Q0 4384921 12 13.668883 Anserini +test167 Q0 14297101 13 13.617134 Anserini +test167 Q0 3132317 14 13.595293 Anserini +test167 Q0 19807574 15 13.568803 Anserini +test167 Q0 12486010 16 13.508494 Anserini +test167 Q0 19340340 17 13.485201 Anserini +test167 Q0 13591949 18 13.425227 Anserini +test167 Q0 4839337 19 13.409363 Anserini +test167 Q0 547065 20 13.409363 Anserini +test167 Q0 9044174 21 13.402681 Anserini +test167 Q0 10527766 22 13.397099 Anserini +test167 Q0 11312074 23 13.372569 Anserini +test167 Q0 4713400 24 13.351185 Anserini +test167 Q0 3143390 25 13.341218 Anserini +test167 Q0 11959598 26 13.304350 Anserini +test167 Q0 12715897 27 13.256443 Anserini +test167 Q0 20584623 28 13.252423 Anserini +test167 Q0 10056127 29 13.223552 Anserini +test167 Q0 11832040 30 13.196882 Anserini +test1670 Q0 16015502 1 16.758690 Anserini +test1670 Q0 12448743 2 15.827028 Anserini +test1670 Q0 5578236 3 15.753413 Anserini +test1670 Q0 15618445 4 15.440701 Anserini +test1670 Q0 4898843 5 15.355808 Anserini +test1670 Q0 18432347 6 15.180581 Anserini +test1670 Q0 12448738 7 15.147685 Anserini +test1670 Q0 12448818 8 15.120874 Anserini +test1670 Q0 1983486 9 15.103510 Anserini +test1670 Q0 1983519 10 15.103510 Anserini +test1670 Q0 3423882 11 14.908444 Anserini +test1670 Q0 19638549 12 14.661098 Anserini +test1670 Q0 3591714 13 14.613850 Anserini +test1670 Q0 14960842 14 14.571464 Anserini +test1670 Q0 490363 15 14.480052 Anserini +test1670 Q0 3425259 16 14.278428 Anserini +test1670 Q0 952727 17 14.267982 Anserini +test1670 Q0 2796107 18 14.054707 Anserini +test1670 Q0 2796090 19 14.012487 Anserini +test1670 Q0 913103 20 13.957899 Anserini +test1670 Q0 5561894 21 13.941229 Anserini +test1670 Q0 6637877 22 13.930541 Anserini +test1670 Q0 6637900 23 13.930541 Anserini +test1670 Q0 2940349 24 13.901085 Anserini +test1670 Q0 10011650 25 13.878325 Anserini +test1670 Q0 1983501 26 13.840712 Anserini +test1670 Q0 14055215 27 13.822458 Anserini +test1670 Q0 12741808 28 13.754267 Anserini +test1670 Q0 2940265 29 13.689693 Anserini +test1670 Q0 12995561 30 13.675425 Anserini +test1671 Q0 9365930 1 25.004730 Anserini +test1671 Q0 9365815 2 21.259453 Anserini +test1671 Q0 6618727 3 20.321117 Anserini +test1671 Q0 6618730 4 20.221600 Anserini +test1671 Q0 6103980 5 18.549044 Anserini +test1671 Q0 11341402 6 18.530771 Anserini +test1671 Q0 6618728 7 18.084480 Anserini +test1671 Q0 18322067 8 17.779852 Anserini +test1671 Q0 13096083 9 17.555555 Anserini +test1671 Q0 19619443 10 17.436350 Anserini +test1671 Q0 12181055 11 17.387661 Anserini +test1671 Q0 5017207 12 17.292652 Anserini +test1671 Q0 19341475 13 17.193241 Anserini +test1671 Q0 11341403 14 17.179340 Anserini +test1671 Q0 5017205 15 16.351040 Anserini +test1671 Q0 12852080 16 16.273209 Anserini +test1671 Q0 16623830 17 16.269819 Anserini +test1671 Q0 12181057 18 16.250448 Anserini +test1671 Q0 8583824 19 16.236099 Anserini +test1671 Q0 15839443 20 16.185698 Anserini +test1671 Q0 12181056 21 16.139387 Anserini +test1671 Q0 6467813 22 16.063747 Anserini +test1671 Q0 5923173 23 15.931268 Anserini +test1671 Q0 16623829 24 15.930103 Anserini +test1671 Q0 6103592 25 15.919070 Anserini +test1671 Q0 4337215 26 15.863891 Anserini +test1671 Q0 6921526 27 15.853863 Anserini +test1671 Q0 17371374 28 15.783175 Anserini +test1671 Q0 11656788 29 15.781673 Anserini +test1671 Q0 12187294 30 15.542212 Anserini +test1672 Q0 4473668 1 16.221680 Anserini +test1672 Q0 4473649 2 16.189875 Anserini +test1672 Q0 17024242 3 13.986609 Anserini +test1672 Q0 4473666 4 13.489935 Anserini +test1672 Q0 5634917 5 12.744818 Anserini +test1672 Q0 17024227 6 12.424402 Anserini +test1672 Q0 17024244 7 12.424402 Anserini +test1672 Q0 4473655 8 12.214139 Anserini +test1672 Q0 20236365 9 12.046810 Anserini +test1672 Q0 4473657 10 11.701962 Anserini +test1672 Q0 4473656 11 11.379356 Anserini +test1672 Q0 4473660 12 11.343092 Anserini +test1672 Q0 12055429 13 11.079339 Anserini +test1672 Q0 5288920 14 11.044780 Anserini +test1672 Q0 6134616 15 10.976552 Anserini +test1672 Q0 4473651 16 10.976552 Anserini +test1672 Q0 5387952 17 10.924479 Anserini +test1672 Q0 4473659 18 10.890617 Anserini +test1672 Q0 4028499 19 10.833044 Anserini +test1672 Q0 4473662 20 10.809767 Anserini +test1672 Q0 4473658 21 10.793198 Anserini +test1672 Q0 20236364 22 10.793198 Anserini +test1672 Q0 17466457 23 10.779072 Anserini +test1672 Q0 17024243 24 10.703901 Anserini +test1672 Q0 4473661 25 10.685532 Anserini +test1672 Q0 4473665 26 10.685532 Anserini +test1672 Q0 4473653 27 10.616134 Anserini +test1672 Q0 4664998 28 10.506555 Anserini +test1672 Q0 11686986 29 10.506555 Anserini +test1672 Q0 5868732 30 10.475539 Anserini +test1673 Q0 145640 1 14.333494 Anserini +test1673 Q0 145652 2 14.333494 Anserini +test1673 Q0 145644 3 13.941488 Anserini +test1673 Q0 2329896 4 13.287339 Anserini +test1673 Q0 418375 5 12.820177 Anserini +test1673 Q0 145642 6 12.782635 Anserini +test1673 Q0 302126 7 12.768526 Anserini +test1673 Q0 1529145 8 12.751471 Anserini +test1673 Q0 4607642 9 12.232482 Anserini +test1673 Q0 4607644 10 12.232482 Anserini +test1673 Q0 3253219 11 12.180040 Anserini +test1673 Q0 14330988 12 12.116259 Anserini +test1673 Q0 388663 13 12.073236 Anserini +test1673 Q0 327780 14 11.855124 Anserini +test1673 Q0 6534432 15 11.855124 Anserini +test1673 Q0 6534438 16 11.855124 Anserini +test1673 Q0 388654 17 11.852156 Anserini +test1673 Q0 418373 18 11.781561 Anserini +test1673 Q0 418395 19 11.731224 Anserini +test1673 Q0 145650 20 11.719336 Anserini +test1673 Q0 145646 21 11.680732 Anserini +test1673 Q0 505944 22 11.374645 Anserini +test1673 Q0 2384601 23 11.316413 Anserini +test1673 Q0 127031 24 11.307524 Anserini +test1673 Q0 418374 25 11.291927 Anserini +test1673 Q0 127029 26 11.248063 Anserini +test1673 Q0 418391 27 11.127499 Anserini +test1673 Q0 145624 28 11.086499 Anserini +test1673 Q0 418387 29 11.081096 Anserini +test1673 Q0 418390 30 11.053828 Anserini +test1674 Q0 8070120 1 14.008379 Anserini +test1674 Q0 3485429 2 12.709183 Anserini +test1674 Q0 402000 3 12.312899 Anserini +test1674 Q0 401919 4 12.251169 Anserini +test1674 Q0 11758899 5 12.210628 Anserini +test1674 Q0 11526655 6 12.174206 Anserini +test1674 Q0 8070147 7 11.742114 Anserini +test1674 Q0 17755311 8 11.668991 Anserini +test1674 Q0 9691819 9 11.629897 Anserini +test1674 Q0 18627520 10 11.523183 Anserini +test1674 Q0 11526648 11 11.326653 Anserini +test1674 Q0 8184580 12 11.231064 Anserini +test1674 Q0 17755319 13 11.193644 Anserini +test1674 Q0 13905984 14 11.070227 Anserini +test1674 Q0 19374067 15 11.039525 Anserini +test1674 Q0 8613967 16 10.835896 Anserini +test1674 Q0 10302050 17 10.801126 Anserini +test1674 Q0 14891289 18 10.789513 Anserini +test1674 Q0 3373454 19 10.728774 Anserini +test1674 Q0 5757092 20 10.727629 Anserini +test1674 Q0 10302051 21 10.714546 Anserini +test1674 Q0 11713292 22 10.708925 Anserini +test1674 Q0 8184548 23 10.706675 Anserini +test1674 Q0 4461428 24 10.692006 Anserini +test1674 Q0 11195364 25 10.663460 Anserini +test1674 Q0 1474220 26 10.659237 Anserini +test1674 Q0 19282822 27 10.546010 Anserini +test1674 Q0 9103761 28 10.535818 Anserini +test1674 Q0 17072915 29 10.520548 Anserini +test1674 Q0 5757075 30 10.459860 Anserini +test1675 Q0 1830490 1 14.820795 Anserini +test1675 Q0 6873139 2 14.815735 Anserini +test1675 Q0 1830496 3 14.795616 Anserini +test1675 Q0 12325005 4 13.536499 Anserini +test1675 Q0 3199436 5 13.036393 Anserini +test1675 Q0 6187740 6 12.989468 Anserini +test1675 Q0 6500654 7 12.946754 Anserini +test1675 Q0 5742303 8 12.945223 Anserini +test1675 Q0 12325003 9 12.945223 Anserini +test1675 Q0 7483583 10 12.481848 Anserini +test1675 Q0 1910990 11 12.396040 Anserini +test1675 Q0 14448498 12 12.382204 Anserini +test1675 Q0 14448521 13 12.380831 Anserini +test1675 Q0 3660636 14 12.366992 Anserini +test1675 Q0 14448460 15 11.959438 Anserini +test1675 Q0 531348 16 11.770781 Anserini +test1675 Q0 12325001 17 11.718176 Anserini +test1675 Q0 7484279 18 11.718176 Anserini +test1675 Q0 12325007 19 11.718176 Anserini +test1675 Q0 1946254 20 11.718176 Anserini +test1675 Q0 13045354 21 11.621719 Anserini +test1675 Q0 6500657 22 11.600536 Anserini +test1675 Q0 14448478 23 11.391720 Anserini +test1675 Q0 14448456 24 11.270720 Anserini +test1675 Q0 14448505 25 11.270720 Anserini +test1675 Q0 19204378 26 11.179504 Anserini +test1675 Q0 3199434 27 11.179504 Anserini +test1675 Q0 1350657 28 11.179504 Anserini +test1675 Q0 1830493 29 10.839029 Anserini +test1675 Q0 14448461 30 10.634911 Anserini +test1676 Q0 15865403 1 12.784376 Anserini +test1676 Q0 4361157 2 12.755538 Anserini +test1676 Q0 11250603 3 12.433085 Anserini +test1676 Q0 13805075 4 11.966789 Anserini +test1676 Q0 857131 5 11.963017 Anserini +test1676 Q0 19325749 6 11.921001 Anserini +test1676 Q0 13835634 7 11.860365 Anserini +test1676 Q0 5333781 8 11.783852 Anserini +test1676 Q0 20470195 9 11.624147 Anserini +test1676 Q0 9597825 10 11.480280 Anserini +test1676 Q0 19514131 11 11.376049 Anserini +test1676 Q0 13360584 12 11.311665 Anserini +test1676 Q0 8563732 13 11.269468 Anserini +test1676 Q0 275943 14 11.259809 Anserini +test1676 Q0 13371060 15 11.253691 Anserini +test1676 Q0 2603362 16 11.180135 Anserini +test1676 Q0 16547066 17 11.143867 Anserini +test1676 Q0 4318734 18 11.130225 Anserini +test1676 Q0 857088 19 11.128775 Anserini +test1676 Q0 4946710 20 11.109065 Anserini +test1676 Q0 11468778 21 11.105609 Anserini +test1676 Q0 2457603 22 11.007551 Anserini +test1676 Q0 8815806 23 10.963309 Anserini +test1676 Q0 16530191 24 10.893543 Anserini +test1676 Q0 18709554 25 10.863976 Anserini +test1676 Q0 4714419 26 10.830070 Anserini +test1676 Q0 5743754 27 10.822414 Anserini +test1676 Q0 14413630 28 10.821419 Anserini +test1676 Q0 11515475 29 10.813151 Anserini +test1676 Q0 8586203 30 10.792744 Anserini +test1677 Q0 1415610 1 22.945225 Anserini +test1677 Q0 1415608 2 19.900141 Anserini +test1677 Q0 1415609 3 18.182451 Anserini +test1677 Q0 16995400 4 16.396915 Anserini +test1677 Q0 14691819 5 14.321580 Anserini +test1677 Q0 13514832 6 14.171564 Anserini +test1677 Q0 2201968 7 14.027665 Anserini +test1677 Q0 8254893 8 13.766818 Anserini +test1677 Q0 5654642 9 13.218252 Anserini +test1677 Q0 20730541 10 12.878023 Anserini +test1677 Q0 12426905 11 12.690151 Anserini +test1677 Q0 16566008 12 12.588048 Anserini +test1677 Q0 9338789 13 12.415956 Anserini +test1677 Q0 1677218 14 12.347849 Anserini +test1677 Q0 19051563 15 12.282252 Anserini +test1677 Q0 18214738 16 12.159918 Anserini +test1677 Q0 8841993 17 12.159370 Anserini +test1677 Q0 4819767 18 12.158113 Anserini +test1677 Q0 3213510 19 12.111561 Anserini +test1677 Q0 18436898 20 11.963263 Anserini +test1677 Q0 9150359 21 11.830537 Anserini +test1677 Q0 20488303 22 11.793192 Anserini +test1677 Q0 7416872 23 11.732479 Anserini +test1677 Q0 5506333 24 11.631837 Anserini +test1677 Q0 14802473 25 11.625561 Anserini +test1677 Q0 18097894 26 11.575004 Anserini +test1677 Q0 12123326 27 11.574154 Anserini +test1677 Q0 5200566 28 11.552292 Anserini +test1677 Q0 15775483 29 11.515851 Anserini +test1677 Q0 2290567 30 11.454156 Anserini +test1678 Q0 14044329 1 18.615671 Anserini +test1678 Q0 14044318 2 15.998476 Anserini +test1678 Q0 13653385 3 15.701019 Anserini +test1678 Q0 20097232 4 15.506084 Anserini +test1678 Q0 14044295 5 15.201243 Anserini +test1678 Q0 20428340 6 14.805785 Anserini +test1678 Q0 14044292 7 14.761121 Anserini +test1678 Q0 14044300 8 14.549658 Anserini +test1678 Q0 18586587 9 14.511114 Anserini +test1678 Q0 18532514 10 14.475426 Anserini +test1678 Q0 14044294 11 14.433696 Anserini +test1678 Q0 1494404 12 14.433696 Anserini +test1678 Q0 20409742 13 14.411716 Anserini +test1678 Q0 14044301 14 14.407129 Anserini +test1678 Q0 20566813 15 14.181392 Anserini +test1678 Q0 20097253 16 14.134792 Anserini +test1678 Q0 18167087 17 13.947812 Anserini +test1678 Q0 13340306 18 13.695398 Anserini +test1678 Q0 20121141 19 13.469141 Anserini +test1678 Q0 15610256 20 13.387987 Anserini +test1678 Q0 17169150 21 13.381161 Anserini +test1678 Q0 9918833 22 13.377089 Anserini +test1678 Q0 20635397 23 13.377089 Anserini +test1678 Q0 16158525 24 13.166417 Anserini +test1678 Q0 4665499 25 13.044430 Anserini +test1678 Q0 12129117 26 12.831732 Anserini +test1678 Q0 14044321 27 12.695214 Anserini +test1678 Q0 18779839 28 12.695214 Anserini +test1678 Q0 20181968 29 12.647430 Anserini +test1678 Q0 20699752 30 12.561571 Anserini +test1679 Q0 465387 1 10.513987 Anserini +test1679 Q0 10251035 2 10.237761 Anserini +test1679 Q0 5234184 3 10.170886 Anserini +test1679 Q0 14888051 4 10.023289 Anserini +test1679 Q0 12207627 5 10.014947 Anserini +test1679 Q0 2141038 6 10.004923 Anserini +test1679 Q0 12943157 7 9.983972 Anserini +test1679 Q0 3227584 8 9.937307 Anserini +test1679 Q0 17118966 9 9.831172 Anserini +test1679 Q0 3228360 10 9.809936 Anserini +test1679 Q0 399787 11 9.492781 Anserini +test1679 Q0 2257724 12 9.475348 Anserini +test1679 Q0 6877554 13 9.453339 Anserini +test1679 Q0 19343885 14 9.432453 Anserini +test1679 Q0 461490 15 9.383238 Anserini +test1679 Q0 4038567 16 9.320307 Anserini +test1679 Q0 14141416 17 9.295058 Anserini +test1679 Q0 399823 18 9.251006 Anserini +test1679 Q0 18135484 19 9.223098 Anserini +test1679 Q0 7993073 20 9.212028 Anserini +test1679 Q0 4937989 21 9.161607 Anserini +test1679 Q0 3680133 22 9.127579 Anserini +test1679 Q0 2746009 23 8.917444 Anserini +test1679 Q0 4517139 24 8.901728 Anserini +test1679 Q0 8157972 25 8.901728 Anserini +test1679 Q0 280493 26 8.886587 Anserini +test1679 Q0 7804797 27 8.863977 Anserini +test1679 Q0 17124067 28 8.863702 Anserini +test1679 Q0 1268190 29 8.835299 Anserini +test1679 Q0 482207 30 8.832799 Anserini +test168 Q0 4402194 1 20.147554 Anserini +test168 Q0 4402172 2 18.011398 Anserini +test168 Q0 4402173 3 18.011398 Anserini +test168 Q0 4901675 4 18.011398 Anserini +test168 Q0 4402188 5 17.165501 Anserini +test168 Q0 4402189 6 17.141382 Anserini +test168 Q0 4402185 7 17.019653 Anserini +test168 Q0 4402179 8 16.910179 Anserini +test168 Q0 11479513 9 16.793047 Anserini +test168 Q0 2704202 10 16.637392 Anserini +test168 Q0 1502926 11 16.176861 Anserini +test168 Q0 10096428 12 16.176861 Anserini +test168 Q0 4402175 13 16.176861 Anserini +test168 Q0 6051906 14 16.176861 Anserini +test168 Q0 4402184 15 16.176861 Anserini +test168 Q0 4402186 16 16.176861 Anserini +test168 Q0 4402187 17 16.176861 Anserini +test168 Q0 1502952 18 16.065287 Anserini +test168 Q0 4402181 19 16.065287 Anserini +test168 Q0 5980172 20 16.046553 Anserini +test168 Q0 6051911 21 15.846697 Anserini +test168 Q0 3688891 22 15.761886 Anserini +test168 Q0 1502947 23 15.594193 Anserini +test168 Q0 4402190 24 15.430034 Anserini +test168 Q0 13978026 25 15.430034 Anserini +test168 Q0 4402183 26 14.506811 Anserini +test168 Q0 4402176 27 14.269414 Anserini +test168 Q0 1320576 28 14.221433 Anserini +test168 Q0 6460459 29 14.071724 Anserini +test168 Q0 6460458 30 14.071724 Anserini +test1680 Q0 6969183 1 18.621843 Anserini +test1680 Q0 8346579 2 15.355862 Anserini +test1680 Q0 20382074 3 14.933941 Anserini +test1680 Q0 1528197 4 14.834034 Anserini +test1680 Q0 1764297 5 14.672514 Anserini +test1680 Q0 20824478 6 14.658337 Anserini +test1680 Q0 351776 7 14.650952 Anserini +test1680 Q0 2346061 8 14.613297 Anserini +test1680 Q0 8925450 9 14.479707 Anserini +test1680 Q0 459750 10 14.234529 Anserini +test1680 Q0 16777082 11 14.139400 Anserini +test1680 Q0 16578844 12 14.084626 Anserini +test1680 Q0 8464851 13 13.899873 Anserini +test1680 Q0 6837714 14 13.839622 Anserini +test1680 Q0 8935483 15 13.624113 Anserini +test1680 Q0 10708306 16 13.528399 Anserini +test1680 Q0 17129674 17 13.369186 Anserini +test1680 Q0 18786398 18 13.351259 Anserini +test1680 Q0 6969182 19 13.295395 Anserini +test1680 Q0 3117831 20 13.294051 Anserini +test1680 Q0 3117843 21 13.271815 Anserini +test1680 Q0 11226646 22 13.120262 Anserini +test1680 Q0 3945510 23 13.045161 Anserini +test1680 Q0 5363713 24 12.922252 Anserini +test1680 Q0 13982160 25 12.891953 Anserini +test1680 Q0 12213152 26 12.844214 Anserini +test1680 Q0 6815141 27 12.766968 Anserini +test1680 Q0 1534944 28 12.642593 Anserini +test1680 Q0 11413526 29 12.626143 Anserini +test1680 Q0 3117850 30 12.609056 Anserini +test1681 Q0 2546705 1 19.026951 Anserini +test1681 Q0 9389546 2 18.381388 Anserini +test1681 Q0 10968135 3 17.127533 Anserini +test1681 Q0 837091 4 16.666344 Anserini +test1681 Q0 5734228 5 16.572212 Anserini +test1681 Q0 2546721 6 16.355753 Anserini +test1681 Q0 398720 7 15.653791 Anserini +test1681 Q0 8318373 8 15.524022 Anserini +test1681 Q0 12890428 9 15.404275 Anserini +test1681 Q0 9389627 10 15.353059 Anserini +test1681 Q0 837073 11 15.328286 Anserini +test1681 Q0 2203910 12 15.279193 Anserini +test1681 Q0 14314668 13 15.153438 Anserini +test1681 Q0 858109 14 15.049198 Anserini +test1681 Q0 8694013 15 14.883345 Anserini +test1681 Q0 8448858 16 14.866809 Anserini +test1681 Q0 1584114 17 14.786033 Anserini +test1681 Q0 9389552 18 14.536520 Anserini +test1681 Q0 11039726 19 14.427103 Anserini +test1681 Q0 5997071 20 14.316060 Anserini +test1681 Q0 17919162 21 14.212353 Anserini +test1681 Q0 1850910 22 14.160335 Anserini +test1681 Q0 34955 23 14.160335 Anserini +test1681 Q0 9389625 24 14.075524 Anserini +test1681 Q0 6382516 25 14.070466 Anserini +test1681 Q0 6434702 26 13.917979 Anserini +test1681 Q0 6434701 27 13.917979 Anserini +test1681 Q0 2130388 28 13.917979 Anserini +test1681 Q0 4142236 29 13.913710 Anserini +test1681 Q0 2018533 30 13.824943 Anserini +test1682 Q0 7627975 1 15.065783 Anserini +test1682 Q0 4470197 2 13.912598 Anserini +test1682 Q0 9197575 3 13.896587 Anserini +test1682 Q0 8930223 4 13.298872 Anserini +test1682 Q0 1972206 5 13.239080 Anserini +test1682 Q0 541239 6 13.227100 Anserini +test1682 Q0 224754 7 13.205734 Anserini +test1682 Q0 9172883 8 12.976772 Anserini +test1682 Q0 1972188 9 12.918250 Anserini +test1682 Q0 16062244 10 12.913550 Anserini +test1682 Q0 1492483 11 12.769135 Anserini +test1682 Q0 1972201 12 12.709629 Anserini +test1682 Q0 2298421 13 12.633588 Anserini +test1682 Q0 1972187 14 12.572604 Anserini +test1682 Q0 6010369 15 12.541817 Anserini +test1682 Q0 5380277 16 12.303955 Anserini +test1682 Q0 15817321 17 12.261502 Anserini +test1682 Q0 14696561 18 12.231629 Anserini +test1682 Q0 1972185 19 11.939253 Anserini +test1682 Q0 2047760 20 11.905262 Anserini +test1682 Q0 1972208 21 11.905111 Anserini +test1682 Q0 1972202 22 11.862337 Anserini +test1682 Q0 1972192 23 11.827850 Anserini +test1682 Q0 9172882 24 11.822372 Anserini +test1682 Q0 10524047 25 11.818190 Anserini +test1682 Q0 1441979 26 11.816964 Anserini +test1682 Q0 13447447 27 11.793564 Anserini +test1682 Q0 10937868 28 11.776372 Anserini +test1682 Q0 17028872 29 11.766626 Anserini +test1682 Q0 1972193 30 11.730820 Anserini +test1683 Q0 20738728 1 25.831652 Anserini +test1683 Q0 13380778 2 23.166790 Anserini +test1683 Q0 17094026 3 21.680464 Anserini +test1683 Q0 13862483 4 21.123566 Anserini +test1683 Q0 13380775 5 20.745296 Anserini +test1683 Q0 19489368 6 20.563227 Anserini +test1683 Q0 15547602 7 19.922600 Anserini +test1683 Q0 20381506 8 19.617521 Anserini +test1683 Q0 18981173 9 19.486555 Anserini +test1683 Q0 18981174 10 19.486555 Anserini +test1683 Q0 17884007 11 19.157122 Anserini +test1683 Q0 17716455 12 19.136127 Anserini +test1683 Q0 12082228 13 18.886974 Anserini +test1683 Q0 20264017 14 18.758997 Anserini +test1683 Q0 20264018 15 18.758997 Anserini +test1683 Q0 4006448 16 17.801352 Anserini +test1683 Q0 4270218 17 17.294256 Anserini +test1683 Q0 10967030 18 17.103176 Anserini +test1683 Q0 17883115 19 16.919670 Anserini +test1683 Q0 18763711 20 16.919670 Anserini +test1683 Q0 12354591 21 16.677225 Anserini +test1683 Q0 17854027 22 16.615913 Anserini +test1683 Q0 19800812 23 16.379839 Anserini +test1683 Q0 14973193 24 16.378792 Anserini +test1683 Q0 15547599 25 16.352291 Anserini +test1683 Q0 17884002 26 16.352291 Anserini +test1683 Q0 20738727 27 16.352291 Anserini +test1683 Q0 20618984 28 16.283009 Anserini +test1683 Q0 19096416 29 16.283009 Anserini +test1683 Q0 12354588 30 16.183077 Anserini +test1684 Q0 5038602 1 18.580362 Anserini +test1684 Q0 5038596 2 18.580362 Anserini +test1684 Q0 5038600 3 16.531816 Anserini +test1684 Q0 5038601 4 16.524101 Anserini +test1684 Q0 5038597 5 15.454922 Anserini +test1684 Q0 5038598 6 14.024712 Anserini +test1684 Q0 5038599 7 13.541406 Anserini +test1684 Q0 7168873 8 13.165257 Anserini +test1684 Q0 16437537 9 12.398540 Anserini +test1684 Q0 3243282 10 12.167343 Anserini +test1684 Q0 14065652 11 11.893491 Anserini +test1684 Q0 9800170 12 11.659698 Anserini +test1684 Q0 9312342 13 11.637535 Anserini +test1684 Q0 16984014 14 11.601158 Anserini +test1684 Q0 12174702 15 11.529998 Anserini +test1684 Q0 6547968 16 11.467513 Anserini +test1684 Q0 8460105 17 11.357347 Anserini +test1684 Q0 16437536 18 11.309811 Anserini +test1684 Q0 10926368 19 11.220720 Anserini +test1684 Q0 19840684 20 11.097886 Anserini +test1684 Q0 6320993 21 11.052184 Anserini +test1684 Q0 12856484 22 11.043684 Anserini +test1684 Q0 3885663 23 11.030782 Anserini +test1684 Q0 12394434 24 10.994523 Anserini +test1684 Q0 10772792 25 10.951674 Anserini +test1684 Q0 12910668 26 10.868751 Anserini +test1684 Q0 7558672 27 10.828196 Anserini +test1684 Q0 7974644 28 10.824646 Anserini +test1684 Q0 4743451 29 10.794606 Anserini +test1684 Q0 10926369 30 10.767899 Anserini +test1685 Q0 2857839 1 29.502495 Anserini +test1685 Q0 7590048 2 28.061832 Anserini +test1685 Q0 2857834 3 28.010250 Anserini +test1685 Q0 2857838 4 26.760246 Anserini +test1685 Q0 7590049 5 25.719900 Anserini +test1685 Q0 2857833 6 25.057293 Anserini +test1685 Q0 2857845 7 25.057293 Anserini +test1685 Q0 7590050 8 24.666729 Anserini +test1685 Q0 2857842 9 24.624197 Anserini +test1685 Q0 2857837 10 24.336866 Anserini +test1685 Q0 20400758 11 23.532944 Anserini +test1685 Q0 8265759 12 22.213676 Anserini +test1685 Q0 2857836 13 21.920515 Anserini +test1685 Q0 2857841 14 21.857845 Anserini +test1685 Q0 69531 15 21.400394 Anserini +test1685 Q0 2087852 16 21.290195 Anserini +test1685 Q0 4732509 17 21.067698 Anserini +test1685 Q0 2857843 18 20.945606 Anserini +test1685 Q0 12035754 19 20.526493 Anserini +test1685 Q0 4538898 20 19.992125 Anserini +test1685 Q0 4538892 21 19.992125 Anserini +test1685 Q0 4538893 22 19.840656 Anserini +test1685 Q0 12035755 23 19.469248 Anserini +test1685 Q0 2169857 24 19.311489 Anserini +test1685 Q0 13924501 25 19.088661 Anserini +test1685 Q0 12201640 26 19.065037 Anserini +test1685 Q0 19123551 27 19.054745 Anserini +test1685 Q0 12035752 28 19.054745 Anserini +test1685 Q0 2857835 29 18.915272 Anserini +test1685 Q0 4538895 30 18.475927 Anserini +test1686 Q0 262448 1 20.162420 Anserini +test1686 Q0 393936 2 19.550173 Anserini +test1686 Q0 9975608 3 19.508560 Anserini +test1686 Q0 394492 4 19.389162 Anserini +test1686 Q0 393942 5 19.260435 Anserini +test1686 Q0 9862135 6 19.257807 Anserini +test1686 Q0 11856835 7 19.158014 Anserini +test1686 Q0 394009 8 18.801134 Anserini +test1686 Q0 9975473 9 18.526636 Anserini +test1686 Q0 271630 10 18.502968 Anserini +test1686 Q0 9852288 11 18.498859 Anserini +test1686 Q0 9862168 12 17.974501 Anserini +test1686 Q0 17473839 13 17.958347 Anserini +test1686 Q0 3152669 14 17.868628 Anserini +test1686 Q0 394038 15 17.790880 Anserini +test1686 Q0 9975453 16 17.695629 Anserini +test1686 Q0 9868174 17 17.668016 Anserini +test1686 Q0 9975485 18 17.621365 Anserini +test1686 Q0 4245759 19 17.593172 Anserini +test1686 Q0 20468601 20 17.572269 Anserini +test1686 Q0 394575 21 17.559940 Anserini +test1686 Q0 20468616 22 17.500347 Anserini +test1686 Q0 19820625 23 17.452106 Anserini +test1686 Q0 9975454 24 17.450981 Anserini +test1686 Q0 286716 25 17.450668 Anserini +test1686 Q0 19820630 26 17.432903 Anserini +test1686 Q0 3200082 27 17.158949 Anserini +test1686 Q0 271676 28 17.129807 Anserini +test1686 Q0 393932 29 16.954489 Anserini +test1686 Q0 3336602 30 16.929682 Anserini +test1687 Q0 10966171 1 8.183321 Anserini +test1687 Q0 9763697 2 7.476194 Anserini +test1687 Q0 18941041 3 7.376659 Anserini +test1687 Q0 1610818 4 7.351243 Anserini +test1687 Q0 21008443 5 7.291364 Anserini +test1687 Q0 1430312 6 7.275005 Anserini +test1687 Q0 18728652 7 7.208786 Anserini +test1687 Q0 20751945 8 7.208786 Anserini +test1687 Q0 8877730 9 7.204872 Anserini +test1687 Q0 9042872 10 7.200774 Anserini +test1687 Q0 16836910 11 7.152768 Anserini +test1687 Q0 6634609 12 7.068734 Anserini +test1687 Q0 15704729 13 7.050999 Anserini +test1687 Q0 19090249 14 7.021879 Anserini +test1687 Q0 4768719 15 7.011467 Anserini +test1687 Q0 20558968 16 6.991051 Anserini +test1687 Q0 1561587 17 6.976839 Anserini +test1687 Q0 20783372 18 6.947063 Anserini +test1687 Q0 12789952 19 6.947063 Anserini +test1687 Q0 4000499 20 6.932213 Anserini +test1687 Q0 20186876 21 6.929166 Anserini +test1687 Q0 14608722 22 6.922363 Anserini +test1687 Q0 8464447 23 6.887853 Anserini +test1687 Q0 17637843 24 6.874452 Anserini +test1687 Q0 8132817 25 6.860194 Anserini +test1687 Q0 534035 26 6.817736 Anserini +test1687 Q0 8128039 27 6.799178 Anserini +test1687 Q0 16276217 28 6.799178 Anserini +test1687 Q0 8675609 29 6.799178 Anserini +test1687 Q0 19101203 30 6.799178 Anserini +test1688 Q0 9640191 1 23.052048 Anserini +test1688 Q0 11291059 2 21.719784 Anserini +test1688 Q0 9640207 3 21.506569 Anserini +test1688 Q0 9640197 4 20.652761 Anserini +test1688 Q0 11291060 5 20.300343 Anserini +test1688 Q0 9640195 6 19.460705 Anserini +test1688 Q0 9640201 7 19.026312 Anserini +test1688 Q0 9640202 8 18.549913 Anserini +test1688 Q0 9640193 9 18.258009 Anserini +test1688 Q0 9640200 10 18.258009 Anserini +test1688 Q0 9640203 11 18.257515 Anserini +test1688 Q0 9640194 12 18.133873 Anserini +test1688 Q0 9640205 13 17.624832 Anserini +test1688 Q0 9640196 14 17.564438 Anserini +test1688 Q0 9640199 15 17.564438 Anserini +test1688 Q0 9640198 16 17.455969 Anserini +test1688 Q0 9640204 17 15.835971 Anserini +test1688 Q0 15579290 18 14.871450 Anserini +test1688 Q0 9640206 19 14.561606 Anserini +test1688 Q0 9640192 20 14.411476 Anserini +test1688 Q0 2065286 21 12.962294 Anserini +test1688 Q0 5968833 22 12.908209 Anserini +test1688 Q0 5699319 23 11.510778 Anserini +test1688 Q0 20721403 24 11.186537 Anserini +test1688 Q0 11517523 25 11.129224 Anserini +test1688 Q0 2988470 26 10.735945 Anserini +test1688 Q0 8633312 27 10.722264 Anserini +test1688 Q0 12587212 28 10.722264 Anserini +test1688 Q0 15269930 29 10.714886 Anserini +test1688 Q0 9558399 30 10.634345 Anserini +test1689 Q0 19636250 1 14.751483 Anserini +test1689 Q0 6809032 2 13.370983 Anserini +test1689 Q0 19153585 3 12.485115 Anserini +test1689 Q0 17016312 4 12.207709 Anserini +test1689 Q0 16283202 5 11.920444 Anserini +test1689 Q0 7439116 6 11.901106 Anserini +test1689 Q0 19469383 7 11.867316 Anserini +test1689 Q0 19846673 8 11.525130 Anserini +test1689 Q0 8633237 9 11.342599 Anserini +test1689 Q0 19134481 10 11.100649 Anserini +test1689 Q0 15821900 11 11.063917 Anserini +test1689 Q0 16072940 12 11.052961 Anserini +test1689 Q0 17135433 13 10.962851 Anserini +test1689 Q0 9808372 14 10.887453 Anserini +test1689 Q0 19636259 15 10.865561 Anserini +test1689 Q0 19996477 16 10.845049 Anserini +test1689 Q0 14551664 17 10.824335 Anserini +test1689 Q0 19396445 18 10.752967 Anserini +test1689 Q0 19223868 19 10.742825 Anserini +test1689 Q0 18415586 20 10.607420 Anserini +test1689 Q0 9808400 21 10.600612 Anserini +test1689 Q0 6262299 22 10.598465 Anserini +test1689 Q0 18442040 23 10.582984 Anserini +test1689 Q0 19740986 24 10.570448 Anserini +test1689 Q0 19469409 25 10.538339 Anserini +test1689 Q0 11826198 26 10.523703 Anserini +test1689 Q0 20700574 27 10.471408 Anserini +test1689 Q0 20700577 28 10.471408 Anserini +test1689 Q0 17135441 29 10.447918 Anserini +test1689 Q0 18527130 30 10.429742 Anserini +test169 Q0 18682748 1 17.304316 Anserini +test169 Q0 6114885 2 12.416580 Anserini +test169 Q0 14099545 3 12.264541 Anserini +test169 Q0 18682746 4 12.195580 Anserini +test169 Q0 9658618 5 12.188004 Anserini +test169 Q0 3168322 6 12.067271 Anserini +test169 Q0 20650752 7 12.003065 Anserini +test169 Q0 15910852 8 11.943590 Anserini +test169 Q0 20124337 9 11.889832 Anserini +test169 Q0 5166400 10 11.864071 Anserini +test169 Q0 20822151 11 11.745735 Anserini +test169 Q0 16971368 12 11.735215 Anserini +test169 Q0 1583384 13 11.644874 Anserini +test169 Q0 441196 14 11.614088 Anserini +test169 Q0 4946874 15 11.600348 Anserini +test169 Q0 6439379 16 11.598488 Anserini +test169 Q0 19243564 17 11.548107 Anserini +test169 Q0 17724160 18 11.478703 Anserini +test169 Q0 6394423 19 11.475302 Anserini +test169 Q0 5015321 20 11.452072 Anserini +test169 Q0 18345116 21 11.395680 Anserini +test169 Q0 13282795 22 11.365437 Anserini +test169 Q0 16212371 23 11.333179 Anserini +test169 Q0 16522678 24 11.329397 Anserini +test169 Q0 5052388 25 11.323154 Anserini +test169 Q0 9084033 26 11.316051 Anserini +test169 Q0 17036634 27 11.285417 Anserini +test169 Q0 18682750 28 11.278753 Anserini +test169 Q0 2084413 29 11.275106 Anserini +test169 Q0 16248607 30 11.259567 Anserini +test1690 Q0 12613624 1 12.010542 Anserini +test1690 Q0 12613641 2 11.847585 Anserini +test1690 Q0 16717989 3 9.667840 Anserini +test1690 Q0 8541422 4 9.524748 Anserini +test1690 Q0 12613625 5 9.407302 Anserini +test1690 Q0 15605852 6 9.400670 Anserini +test1690 Q0 10228269 7 9.007731 Anserini +test1690 Q0 13205561 8 8.928576 Anserini +test1690 Q0 6213731 9 8.879065 Anserini +test1690 Q0 8767102 10 8.695235 Anserini +test1690 Q0 18712386 11 8.656693 Anserini +test1690 Q0 457356 12 8.602725 Anserini +test1690 Q0 10506462 13 8.602725 Anserini +test1690 Q0 667426 14 8.602725 Anserini +test1690 Q0 16071177 15 8.602725 Anserini +test1690 Q0 9408125 16 8.558279 Anserini +test1690 Q0 8731084 17 8.529409 Anserini +test1690 Q0 1452928 18 8.512165 Anserini +test1690 Q0 12824951 19 8.494259 Anserini +test1690 Q0 644595 20 8.461281 Anserini +test1690 Q0 3491019 21 8.442781 Anserini +test1690 Q0 18917290 22 8.423490 Anserini +test1690 Q0 3491006 23 8.412125 Anserini +test1690 Q0 8541428 24 8.256699 Anserini +test1690 Q0 18094639 25 8.218602 Anserini +test1690 Q0 19418562 26 8.145274 Anserini +test1690 Q0 12613636 27 8.112566 Anserini +test1690 Q0 14741836 28 8.057916 Anserini +test1690 Q0 18564030 29 7.964055 Anserini +test1690 Q0 18564012 30 7.964055 Anserini +test1691 Q0 13208346 1 16.489685 Anserini +test1691 Q0 13208359 2 15.217408 Anserini +test1691 Q0 5985033 3 13.602649 Anserini +test1691 Q0 4736198 4 13.207414 Anserini +test1691 Q0 5665037 5 13.132215 Anserini +test1691 Q0 13208344 6 12.910975 Anserini +test1691 Q0 4649629 7 12.859677 Anserini +test1691 Q0 11241356 8 12.788598 Anserini +test1691 Q0 5985034 9 12.769124 Anserini +test1691 Q0 13208363 10 12.726939 Anserini +test1691 Q0 13587958 11 12.461573 Anserini +test1691 Q0 5321011 12 12.452179 Anserini +test1691 Q0 13208360 13 12.451952 Anserini +test1691 Q0 13208367 14 12.084772 Anserini +test1691 Q0 12841216 15 11.961781 Anserini +test1691 Q0 4649647 16 11.956742 Anserini +test1691 Q0 17423017 17 11.576197 Anserini +test1691 Q0 2291891 18 11.563389 Anserini +test1691 Q0 13208362 19 11.554710 Anserini +test1691 Q0 13208353 20 11.528837 Anserini +test1691 Q0 13208349 21 11.512636 Anserini +test1691 Q0 5082610 22 11.432044 Anserini +test1691 Q0 16861446 23 11.289761 Anserini +test1691 Q0 13545824 24 11.243128 Anserini +test1691 Q0 4744253 25 11.212332 Anserini +test1691 Q0 3346016 26 11.092351 Anserini +test1691 Q0 3346036 27 11.092351 Anserini +test1691 Q0 3771894 28 11.081085 Anserini +test1691 Q0 11114880 29 10.972858 Anserini +test1691 Q0 5321008 30 10.954291 Anserini +test1692 Q0 13243155 1 15.946786 Anserini +test1692 Q0 15272612 2 15.254343 Anserini +test1692 Q0 16039258 3 14.551397 Anserini +test1692 Q0 11601206 4 14.486004 Anserini +test1692 Q0 1068989 5 14.424056 Anserini +test1692 Q0 13159556 6 14.397151 Anserini +test1692 Q0 13591345 7 14.381177 Anserini +test1692 Q0 3396933 8 14.355506 Anserini +test1692 Q0 13159557 9 14.342405 Anserini +test1692 Q0 13243193 10 14.267962 Anserini +test1692 Q0 10136958 11 14.174714 Anserini +test1692 Q0 12722215 12 14.171016 Anserini +test1692 Q0 1069004 13 14.152604 Anserini +test1692 Q0 3885463 14 14.137962 Anserini +test1692 Q0 12722216 15 14.117203 Anserini +test1692 Q0 4231724 16 14.083165 Anserini +test1692 Q0 13243191 17 14.077823 Anserini +test1692 Q0 17474403 18 14.028119 Anserini +test1692 Q0 14549380 19 14.023512 Anserini +test1692 Q0 19663632 20 14.014479 Anserini +test1692 Q0 1388973 21 13.909944 Anserini +test1692 Q0 10803306 22 13.901178 Anserini +test1692 Q0 20763781 23 13.895531 Anserini +test1692 Q0 19051072 24 13.838564 Anserini +test1692 Q0 18932712 25 13.833529 Anserini +test1692 Q0 9893703 26 13.827093 Anserini +test1692 Q0 9893704 27 13.819364 Anserini +test1692 Q0 9737417 28 13.794611 Anserini +test1692 Q0 15272611 29 13.767198 Anserini +test1692 Q0 17753983 30 13.751341 Anserini +test1693 Q0 8417739 1 12.141272 Anserini +test1693 Q0 15402113 2 12.126393 Anserini +test1693 Q0 18088862 3 11.626040 Anserini +test1693 Q0 18088864 4 11.626040 Anserini +test1693 Q0 6339067 5 11.470868 Anserini +test1693 Q0 9495000 6 11.249698 Anserini +test1693 Q0 2247921 7 11.189737 Anserini +test1693 Q0 13913844 8 11.148956 Anserini +test1693 Q0 9941046 9 10.796080 Anserini +test1693 Q0 5463289 10 10.686011 Anserini +test1693 Q0 15402114 11 10.607217 Anserini +test1693 Q0 15402111 12 10.572152 Anserini +test1693 Q0 7682555 13 10.488365 Anserini +test1693 Q0 16207342 14 10.326160 Anserini +test1693 Q0 11813327 15 10.305827 Anserini +test1693 Q0 4637852 16 10.296468 Anserini +test1693 Q0 4762984 17 10.265888 Anserini +test1693 Q0 1823108 18 10.265722 Anserini +test1693 Q0 2293011 19 10.243140 Anserini +test1693 Q0 375719 20 10.229172 Anserini +test1693 Q0 4630546 21 10.211199 Anserini +test1693 Q0 1432876 22 10.191643 Anserini +test1693 Q0 17241666 23 10.162968 Anserini +test1693 Q0 3332668 24 10.143851 Anserini +test1693 Q0 6929998 25 10.136974 Anserini +test1693 Q0 815942 26 10.090727 Anserini +test1693 Q0 11202523 27 10.021038 Anserini +test1693 Q0 375688 28 10.009258 Anserini +test1693 Q0 12043421 29 10.007191 Anserini +test1693 Q0 6210679 30 9.892091 Anserini +test1694 Q0 19461662 1 12.931149 Anserini +test1694 Q0 7104761 2 12.304512 Anserini +test1694 Q0 627338 3 12.256490 Anserini +test1694 Q0 16635083 4 12.104508 Anserini +test1694 Q0 16635157 5 12.104508 Anserini +test1694 Q0 9689462 6 12.075471 Anserini +test1694 Q0 20198198 7 11.993329 Anserini +test1694 Q0 2874600 8 11.908072 Anserini +test1694 Q0 14911702 9 11.877484 Anserini +test1694 Q0 8857315 10 11.855672 Anserini +test1694 Q0 14687782 11 11.842705 Anserini +test1694 Q0 8857325 12 11.819934 Anserini +test1694 Q0 4461957 13 11.728368 Anserini +test1694 Q0 19461604 14 11.705942 Anserini +test1694 Q0 148966 15 11.577982 Anserini +test1694 Q0 14673576 16 11.561905 Anserini +test1694 Q0 9536920 17 11.507006 Anserini +test1694 Q0 2602130 18 11.467475 Anserini +test1694 Q0 312885 19 11.431359 Anserini +test1694 Q0 15515665 20 11.422338 Anserini +test1694 Q0 6201568 21 11.356425 Anserini +test1694 Q0 7442383 22 11.335342 Anserini +test1694 Q0 988783 23 11.307568 Anserini +test1694 Q0 7442385 24 11.290963 Anserini +test1694 Q0 6100029 25 11.282879 Anserini +test1694 Q0 14416421 26 11.244854 Anserini +test1694 Q0 5330657 27 11.231190 Anserini +test1694 Q0 1679758 28 11.222266 Anserini +test1694 Q0 19852 29 11.200366 Anserini +test1694 Q0 2315835 30 11.198769 Anserini +test1695 Q0 4200533 1 16.393011 Anserini +test1695 Q0 16934540 2 15.909131 Anserini +test1695 Q0 8435606 3 15.635830 Anserini +test1695 Q0 3960938 4 15.534513 Anserini +test1695 Q0 3601790 5 15.237225 Anserini +test1695 Q0 17581416 6 15.140173 Anserini +test1695 Q0 10891198 7 14.975350 Anserini +test1695 Q0 3289703 8 14.899211 Anserini +test1695 Q0 3471520 9 14.670533 Anserini +test1695 Q0 4169922 10 14.629550 Anserini +test1695 Q0 6308270 11 14.559383 Anserini +test1695 Q0 3171058 12 14.543586 Anserini +test1695 Q0 16795921 13 14.525342 Anserini +test1695 Q0 12886735 14 14.511182 Anserini +test1695 Q0 4172039 15 14.480925 Anserini +test1695 Q0 14915954 16 14.435878 Anserini +test1695 Q0 9696776 17 14.298455 Anserini +test1695 Q0 16257029 18 14.248610 Anserini +test1695 Q0 16795942 19 14.135045 Anserini +test1695 Q0 10050240 20 14.114539 Anserini +test1695 Q0 3307461 21 14.026628 Anserini +test1695 Q0 15126677 22 13.974246 Anserini +test1695 Q0 6308273 23 13.784854 Anserini +test1695 Q0 4169918 24 13.734514 Anserini +test1695 Q0 4200532 25 13.734514 Anserini +test1695 Q0 6363615 26 13.587411 Anserini +test1695 Q0 18801369 27 13.578156 Anserini +test1695 Q0 5431028 28 13.572814 Anserini +test1695 Q0 8347884 29 13.571441 Anserini +test1695 Q0 11132844 30 13.559607 Anserini +test1696 Q0 820496 1 11.787749 Anserini +test1696 Q0 5579705 2 11.665299 Anserini +test1696 Q0 5579709 3 11.665299 Anserini +test1696 Q0 821032 4 11.632385 Anserini +test1696 Q0 16590402 5 11.478683 Anserini +test1696 Q0 3886085 6 11.302223 Anserini +test1696 Q0 4095196 7 11.263369 Anserini +test1696 Q0 10219725 8 11.159302 Anserini +test1696 Q0 3709966 9 11.001867 Anserini +test1696 Q0 4349149 10 10.898361 Anserini +test1696 Q0 17731575 11 10.873929 Anserini +test1696 Q0 5579841 12 10.856515 Anserini +test1696 Q0 16590403 13 10.746616 Anserini +test1696 Q0 5559784 14 10.735858 Anserini +test1696 Q0 4059398 15 10.629719 Anserini +test1696 Q0 7921323 16 10.574289 Anserini +test1696 Q0 16813871 17 10.517286 Anserini +test1696 Q0 8969810 18 10.494680 Anserini +test1696 Q0 820505 19 10.437419 Anserini +test1696 Q0 4349145 20 10.422188 Anserini +test1696 Q0 13750708 21 10.420664 Anserini +test1696 Q0 820406 22 10.420660 Anserini +test1696 Q0 5579843 23 10.416367 Anserini +test1696 Q0 820494 24 10.413007 Anserini +test1696 Q0 5566412 25 10.399027 Anserini +test1696 Q0 16813869 26 10.313364 Anserini +test1696 Q0 5655304 27 10.302778 Anserini +test1696 Q0 402641 28 10.280617 Anserini +test1696 Q0 19792039 29 10.262274 Anserini +test1696 Q0 5655309 30 10.244026 Anserini +test1697 Q0 17016160 1 19.098219 Anserini +test1697 Q0 17016163 2 19.098219 Anserini +test1697 Q0 18545951 3 14.871574 Anserini +test1697 Q0 5412801 4 14.752776 Anserini +test1697 Q0 10956399 5 14.751319 Anserini +test1697 Q0 11329437 6 14.696281 Anserini +test1697 Q0 17016161 7 14.527343 Anserini +test1697 Q0 14840293 8 14.478264 Anserini +test1697 Q0 1836758 9 14.078609 Anserini +test1697 Q0 8993474 10 14.053155 Anserini +test1697 Q0 16676738 11 14.026249 Anserini +test1697 Q0 8993475 12 13.970651 Anserini +test1697 Q0 6496500 13 13.799325 Anserini +test1697 Q0 5026063 14 13.684177 Anserini +test1697 Q0 20369590 15 13.606308 Anserini +test1697 Q0 12792503 16 13.533388 Anserini +test1697 Q0 6937961 17 13.524553 Anserini +test1697 Q0 8360887 18 13.515884 Anserini +test1697 Q0 8814556 19 13.491492 Anserini +test1697 Q0 11020632 20 13.413015 Anserini +test1697 Q0 20196614 21 13.397594 Anserini +test1697 Q0 5580632 22 13.374439 Anserini +test1697 Q0 17290077 23 13.361143 Anserini +test1697 Q0 11457019 24 13.360488 Anserini +test1697 Q0 9330047 25 13.276862 Anserini +test1697 Q0 19236385 26 13.251774 Anserini +test1697 Q0 7581749 27 13.224360 Anserini +test1697 Q0 6509869 28 13.210398 Anserini +test1697 Q0 12961928 29 13.200316 Anserini +test1697 Q0 16527839 30 13.138400 Anserini +test1698 Q0 19648285 1 17.851376 Anserini +test1698 Q0 19648286 2 17.851376 Anserini +test1698 Q0 7236650 3 14.114623 Anserini +test1698 Q0 2508608 4 13.715239 Anserini +test1698 Q0 7236647 5 13.661514 Anserini +test1698 Q0 20711962 6 12.857839 Anserini +test1698 Q0 6511599 7 12.836867 Anserini +test1698 Q0 20711965 8 12.707909 Anserini +test1698 Q0 4894687 9 12.545804 Anserini +test1698 Q0 19099823 10 12.541739 Anserini +test1698 Q0 9415938 11 12.402105 Anserini +test1698 Q0 16895509 12 12.208525 Anserini +test1698 Q0 7236640 13 12.164539 Anserini +test1698 Q0 3616336 14 12.114870 Anserini +test1698 Q0 20711194 15 12.078675 Anserini +test1698 Q0 9286385 16 11.984207 Anserini +test1698 Q0 20711966 17 11.946978 Anserini +test1698 Q0 21011843 18 11.892059 Anserini +test1698 Q0 18586144 19 11.863983 Anserini +test1698 Q0 18874772 20 11.821818 Anserini +test1698 Q0 20711967 21 11.798395 Anserini +test1698 Q0 13275297 22 11.779445 Anserini +test1698 Q0 19135034 23 11.703986 Anserini +test1698 Q0 10369217 24 11.601004 Anserini +test1698 Q0 6205465 25 11.596176 Anserini +test1698 Q0 16852647 26 11.572151 Anserini +test1698 Q0 11644261 27 11.556690 Anserini +test1698 Q0 10583852 28 11.476712 Anserini +test1698 Q0 4021064 29 11.406937 Anserini +test1698 Q0 8328809 30 11.403340 Anserini +test1699 Q0 295785 1 13.780478 Anserini +test1699 Q0 5061299 2 12.942663 Anserini +test1699 Q0 15232232 3 12.801979 Anserini +test1699 Q0 9284185 4 12.684642 Anserini +test1699 Q0 7676519 5 12.508822 Anserini +test1699 Q0 11443839 6 12.286876 Anserini +test1699 Q0 9955606 7 12.150249 Anserini +test1699 Q0 295794 8 12.120207 Anserini +test1699 Q0 2019736 9 11.960659 Anserini +test1699 Q0 9284187 10 11.958878 Anserini +test1699 Q0 4799487 11 11.855528 Anserini +test1699 Q0 14568757 12 11.848873 Anserini +test1699 Q0 9284188 13 11.848873 Anserini +test1699 Q0 14568764 14 11.848873 Anserini +test1699 Q0 3809235 15 11.848565 Anserini +test1699 Q0 3696091 16 11.816281 Anserini +test1699 Q0 9220250 17 11.812563 Anserini +test1699 Q0 2884284 18 11.812563 Anserini +test1699 Q0 4248061 19 11.778451 Anserini +test1699 Q0 6383520 20 11.766026 Anserini +test1699 Q0 4753870 21 11.659629 Anserini +test1699 Q0 5405473 22 11.615335 Anserini +test1699 Q0 7331335 23 11.571759 Anserini +test1699 Q0 16832615 24 11.571759 Anserini +test1699 Q0 4990422 25 11.566231 Anserini +test1699 Q0 3937405 26 11.531298 Anserini +test1699 Q0 15475190 27 11.525195 Anserini +test1699 Q0 4816088 28 11.476354 Anserini +test1699 Q0 20958148 29 11.457651 Anserini +test1699 Q0 3249566 30 11.384984 Anserini +test17 Q0 12587281 1 16.609371 Anserini +test17 Q0 18821630 2 15.885140 Anserini +test17 Q0 18615251 3 15.565775 Anserini +test17 Q0 4771319 4 14.526335 Anserini +test17 Q0 17916268 5 14.405332 Anserini +test17 Q0 3099559 6 14.170726 Anserini +test17 Q0 3099567 7 14.170726 Anserini +test17 Q0 3796932 8 13.982056 Anserini +test17 Q0 20443251 9 13.955262 Anserini +test17 Q0 18615252 10 13.632297 Anserini +test17 Q0 16143924 11 13.536772 Anserini +test17 Q0 10422223 12 13.447012 Anserini +test17 Q0 621268 13 13.408073 Anserini +test17 Q0 12072669 14 13.369505 Anserini +test17 Q0 20583704 15 13.322307 Anserini +test17 Q0 5511537 16 13.223935 Anserini +test17 Q0 4154844 17 13.171879 Anserini +test17 Q0 15113870 18 12.954222 Anserini +test17 Q0 441493 19 12.853706 Anserini +test17 Q0 3343378 20 12.831942 Anserini +test17 Q0 2114653 21 12.816401 Anserini +test17 Q0 13346389 22 12.765450 Anserini +test17 Q0 18757548 23 12.699642 Anserini +test17 Q0 9094912 24 12.681482 Anserini +test17 Q0 3863883 25 12.634510 Anserini +test17 Q0 4095331 26 12.554240 Anserini +test17 Q0 20583702 27 12.529716 Anserini +test17 Q0 20977461 28 12.464926 Anserini +test17 Q0 18615250 29 12.293246 Anserini +test17 Q0 8956423 30 12.287473 Anserini +test170 Q0 1614738 1 16.936428 Anserini +test170 Q0 16203068 2 15.956337 Anserini +test170 Q0 1614695 3 15.946778 Anserini +test170 Q0 12628974 4 15.703444 Anserini +test170 Q0 18030339 5 15.592072 Anserini +test170 Q0 1614700 6 15.538035 Anserini +test170 Q0 12426048 7 15.374823 Anserini +test170 Q0 1614701 8 15.306852 Anserini +test170 Q0 10903034 9 15.097384 Anserini +test170 Q0 9784783 10 15.097384 Anserini +test170 Q0 5188067 11 15.071802 Anserini +test170 Q0 16203098 12 14.931540 Anserini +test170 Q0 1614737 13 14.903515 Anserini +test170 Q0 8275924 14 14.897140 Anserini +test170 Q0 19306127 15 14.894279 Anserini +test170 Q0 20107868 16 14.892162 Anserini +test170 Q0 10903022 17 14.810246 Anserini +test170 Q0 1614729 18 14.786289 Anserini +test170 Q0 16517482 19 14.734075 Anserini +test170 Q0 9824931 20 14.729321 Anserini +test170 Q0 9808294 21 14.661508 Anserini +test170 Q0 18550844 22 14.592453 Anserini +test170 Q0 15610183 23 14.567106 Anserini +test170 Q0 14535248 24 14.297544 Anserini +test170 Q0 2956094 25 14.110570 Anserini +test170 Q0 20817338 26 14.058301 Anserini +test170 Q0 13476260 27 14.043533 Anserini +test170 Q0 15610212 28 13.991662 Anserini +test170 Q0 16203069 29 13.979183 Anserini +test170 Q0 1614688 30 13.930866 Anserini +test1700 Q0 3128102 1 13.134369 Anserini +test1700 Q0 569702 2 12.468530 Anserini +test1700 Q0 1703834 3 11.785390 Anserini +test1700 Q0 61586 4 11.763151 Anserini +test1700 Q0 7358151 5 11.669037 Anserini +test1700 Q0 6488050 6 11.291472 Anserini +test1700 Q0 19292915 7 11.162936 Anserini +test1700 Q0 10318267 8 11.153172 Anserini +test1700 Q0 20370314 9 11.128634 Anserini +test1700 Q0 12423323 10 11.039188 Anserini +test1700 Q0 764778 11 11.000734 Anserini +test1700 Q0 4418035 12 10.902673 Anserini +test1700 Q0 5675048 13 10.885323 Anserini +test1700 Q0 779766 14 10.875893 Anserini +test1700 Q0 8275355 15 10.817980 Anserini +test1700 Q0 16597281 16 10.785666 Anserini +test1700 Q0 674856 17 10.736237 Anserini +test1700 Q0 10073913 18 10.714332 Anserini +test1700 Q0 10569350 19 10.694856 Anserini +test1700 Q0 15079444 20 10.678184 Anserini +test1700 Q0 10911853 21 10.677015 Anserini +test1700 Q0 5152031 22 10.610959 Anserini +test1700 Q0 20039599 23 10.536424 Anserini +test1700 Q0 3844804 24 10.534616 Anserini +test1700 Q0 13608243 25 10.532516 Anserini +test1700 Q0 778313 26 10.523053 Anserini +test1700 Q0 6070682 27 10.517366 Anserini +test1700 Q0 9493866 28 10.464872 Anserini +test1700 Q0 5624153 29 10.460227 Anserini +test1700 Q0 347290 30 10.457556 Anserini +test1701 Q0 13116072 1 14.265052 Anserini +test1701 Q0 761542 2 13.522687 Anserini +test1701 Q0 7513893 3 12.757646 Anserini +test1701 Q0 1292306 4 12.372569 Anserini +test1701 Q0 7825443 5 11.754672 Anserini +test1701 Q0 4569530 6 11.709270 Anserini +test1701 Q0 16692177 7 11.629331 Anserini +test1701 Q0 4569537 8 11.611897 Anserini +test1701 Q0 8428168 9 11.605865 Anserini +test1701 Q0 10971161 10 11.563877 Anserini +test1701 Q0 20583434 11 11.528521 Anserini +test1701 Q0 4569526 12 11.323464 Anserini +test1701 Q0 13047939 13 11.317654 Anserini +test1701 Q0 7513889 14 11.264887 Anserini +test1701 Q0 20336136 15 11.226449 Anserini +test1701 Q0 1403600 16 11.187174 Anserini +test1701 Q0 8330543 17 11.140827 Anserini +test1701 Q0 20548215 18 11.075570 Anserini +test1701 Q0 102352 19 11.014942 Anserini +test1701 Q0 8428169 20 10.996688 Anserini +test1701 Q0 4569540 21 10.856524 Anserini +test1701 Q0 4569524 22 10.856524 Anserini +test1701 Q0 4882553 23 10.837760 Anserini +test1701 Q0 17186426 24 10.824900 Anserini +test1701 Q0 20336137 25 10.814036 Anserini +test1701 Q0 6789658 26 10.812434 Anserini +test1701 Q0 7692385 27 10.775858 Anserini +test1701 Q0 9474518 28 10.698185 Anserini +test1701 Q0 10427984 29 10.596279 Anserini +test1701 Q0 1520066 30 10.581789 Anserini +test1702 Q0 6289955 1 14.270866 Anserini +test1702 Q0 6289951 2 13.290866 Anserini +test1702 Q0 6530248 3 11.799014 Anserini +test1702 Q0 14074502 4 11.522511 Anserini +test1702 Q0 4366124 5 11.392523 Anserini +test1702 Q0 4366110 6 10.991461 Anserini +test1702 Q0 7447675 7 10.749390 Anserini +test1702 Q0 4602878 8 10.561350 Anserini +test1702 Q0 15665038 9 10.502714 Anserini +test1702 Q0 7447673 10 10.466295 Anserini +test1702 Q0 7447670 11 10.442463 Anserini +test1702 Q0 7447672 12 10.302036 Anserini +test1702 Q0 14074503 13 10.237660 Anserini +test1702 Q0 4602873 14 10.168922 Anserini +test1702 Q0 3889288 15 10.160578 Anserini +test1702 Q0 7447674 16 10.160578 Anserini +test1702 Q0 9705856 17 10.126484 Anserini +test1702 Q0 8543388 18 10.084628 Anserini +test1702 Q0 15879974 19 10.080535 Anserini +test1702 Q0 19020735 20 10.056340 Anserini +test1702 Q0 19167581 21 9.992480 Anserini +test1702 Q0 15879975 22 9.971198 Anserini +test1702 Q0 10300163 23 9.934936 Anserini +test1702 Q0 636999 24 9.923989 Anserini +test1702 Q0 18197765 25 9.902061 Anserini +test1702 Q0 4630760 26 9.849092 Anserini +test1702 Q0 4366111 27 9.763798 Anserini +test1702 Q0 10300172 28 9.724520 Anserini +test1702 Q0 8219004 29 9.720740 Anserini +test1702 Q0 20274758 30 9.689220 Anserini +test1703 Q0 12353764 1 17.503012 Anserini +test1703 Q0 12353768 2 17.503012 Anserini +test1703 Q0 740966 3 16.233109 Anserini +test1703 Q0 740956 4 16.034391 Anserini +test1703 Q0 740959 5 14.555051 Anserini +test1703 Q0 3678088 6 14.290393 Anserini +test1703 Q0 3678084 7 13.915820 Anserini +test1703 Q0 5587019 8 13.871251 Anserini +test1703 Q0 740965 9 13.249002 Anserini +test1703 Q0 3678090 10 13.242409 Anserini +test1703 Q0 17637993 11 13.178287 Anserini +test1703 Q0 3678082 12 13.145372 Anserini +test1703 Q0 3678095 13 12.943455 Anserini +test1703 Q0 14388334 14 12.712261 Anserini +test1703 Q0 15583916 15 12.468221 Anserini +test1703 Q0 3678093 16 12.462025 Anserini +test1703 Q0 3678092 17 12.353330 Anserini +test1703 Q0 12383058 18 12.344224 Anserini +test1703 Q0 12396633 19 12.083819 Anserini +test1703 Q0 13035626 20 12.013741 Anserini +test1703 Q0 12383055 21 11.757894 Anserini +test1703 Q0 9698617 22 11.672284 Anserini +test1703 Q0 16462678 23 11.523795 Anserini +test1703 Q0 10308333 24 11.519161 Anserini +test1703 Q0 9082768 25 11.502693 Anserini +test1703 Q0 15583909 26 11.452636 Anserini +test1703 Q0 13035625 27 11.177033 Anserini +test1703 Q0 3556642 28 11.110748 Anserini +test1703 Q0 6551690 29 11.077199 Anserini +test1703 Q0 16883173 30 11.051922 Anserini +test1704 Q0 18309905 1 11.349746 Anserini +test1704 Q0 9769293 2 10.936744 Anserini +test1704 Q0 9932983 3 10.736565 Anserini +test1704 Q0 8095197 4 10.157326 Anserini +test1704 Q0 20533644 5 10.033967 Anserini +test1704 Q0 3083695 6 9.876422 Anserini +test1704 Q0 6841421 7 9.810004 Anserini +test1704 Q0 19039922 8 9.753637 Anserini +test1704 Q0 658475 9 9.616527 Anserini +test1704 Q0 9769299 10 9.410728 Anserini +test1704 Q0 658470 11 9.410002 Anserini +test1704 Q0 3566973 12 9.396992 Anserini +test1704 Q0 4086904 13 9.362020 Anserini +test1704 Q0 16495180 14 9.345371 Anserini +test1704 Q0 4089649 15 9.238304 Anserini +test1704 Q0 4086899 16 9.183956 Anserini +test1704 Q0 10492031 17 9.156702 Anserini +test1704 Q0 4089652 18 9.134481 Anserini +test1704 Q0 5613020 19 9.126089 Anserini +test1704 Q0 6914705 20 8.984575 Anserini +test1704 Q0 13081917 21 8.971826 Anserini +test1704 Q0 11836935 22 8.957826 Anserini +test1704 Q0 658464 23 8.931656 Anserini +test1704 Q0 5048679 24 8.894090 Anserini +test1704 Q0 658477 25 8.860247 Anserini +test1704 Q0 4089650 26 8.818164 Anserini +test1704 Q0 4086908 27 8.805821 Anserini +test1704 Q0 658478 28 8.800804 Anserini +test1704 Q0 9974374 29 8.729836 Anserini +test1704 Q0 339886 30 8.692666 Anserini +test1705 Q0 19554805 1 16.914412 Anserini +test1705 Q0 19554811 2 16.264757 Anserini +test1705 Q0 12676173 3 16.009840 Anserini +test1705 Q0 19331339 4 15.583522 Anserini +test1705 Q0 19331328 5 15.155936 Anserini +test1705 Q0 20029903 6 14.730715 Anserini +test1705 Q0 17200659 7 14.664455 Anserini +test1705 Q0 20375209 8 14.516043 Anserini +test1705 Q0 19361404 9 14.444028 Anserini +test1705 Q0 11591563 10 14.233147 Anserini +test1705 Q0 3237108 11 13.979454 Anserini +test1705 Q0 19483738 12 13.976130 Anserini +test1705 Q0 13021652 13 13.920091 Anserini +test1705 Q0 20379252 14 13.903061 Anserini +test1705 Q0 12407347 15 13.895548 Anserini +test1705 Q0 12659150 16 13.894226 Anserini +test1705 Q0 9416804 17 13.879784 Anserini +test1705 Q0 12659149 18 13.855453 Anserini +test1705 Q0 11540213 19 13.827511 Anserini +test1705 Q0 19665107 20 13.820627 Anserini +test1705 Q0 19331340 21 13.817150 Anserini +test1705 Q0 8260376 22 13.817098 Anserini +test1705 Q0 12676193 23 13.813718 Anserini +test1705 Q0 12429068 24 13.779779 Anserini +test1705 Q0 8260381 25 13.763524 Anserini +test1705 Q0 19331325 26 13.740972 Anserini +test1705 Q0 10982595 27 13.730284 Anserini +test1705 Q0 12429069 28 13.717731 Anserini +test1705 Q0 1970536 29 13.717291 Anserini +test1705 Q0 12947794 30 13.706804 Anserini +test1706 Q0 19632144 1 19.019707 Anserini +test1706 Q0 19632146 2 19.007397 Anserini +test1706 Q0 14665438 3 18.898586 Anserini +test1706 Q0 17379405 4 18.887123 Anserini +test1706 Q0 1774449 5 18.327690 Anserini +test1706 Q0 17379406 6 18.185785 Anserini +test1706 Q0 1774452 7 17.856737 Anserini +test1706 Q0 1774466 8 17.788462 Anserini +test1706 Q0 17645027 9 17.414141 Anserini +test1706 Q0 1774453 10 17.367464 Anserini +test1706 Q0 6267986 11 17.153818 Anserini +test1706 Q0 11950643 12 16.990757 Anserini +test1706 Q0 4498925 13 16.928539 Anserini +test1706 Q0 10615743 14 16.898027 Anserini +test1706 Q0 19434808 15 16.791523 Anserini +test1706 Q0 19562932 16 16.791523 Anserini +test1706 Q0 20346146 17 16.754459 Anserini +test1706 Q0 19187664 18 16.749508 Anserini +test1706 Q0 2445569 19 16.742874 Anserini +test1706 Q0 20303346 20 16.721352 Anserini +test1706 Q0 20303323 21 16.701426 Anserini +test1706 Q0 20362632 22 16.701426 Anserini +test1706 Q0 20362633 23 16.701426 Anserini +test1706 Q0 20307665 24 16.701426 Anserini +test1706 Q0 20362977 25 16.677851 Anserini +test1706 Q0 20360965 26 16.677851 Anserini +test1706 Q0 20307607 27 16.677851 Anserini +test1706 Q0 20362931 28 16.677851 Anserini +test1706 Q0 20362962 29 16.677851 Anserini +test1706 Q0 20307562 30 16.677851 Anserini +test1707 Q0 18049634 1 15.577302 Anserini +test1707 Q0 20298334 2 14.692253 Anserini +test1707 Q0 20298341 3 14.662182 Anserini +test1707 Q0 18049633 4 14.500796 Anserini +test1707 Q0 2510041 5 14.497910 Anserini +test1707 Q0 15886709 6 14.304856 Anserini +test1707 Q0 509836 7 14.106453 Anserini +test1707 Q0 509823 8 14.090661 Anserini +test1707 Q0 14335237 9 13.882282 Anserini +test1707 Q0 19278103 10 13.867126 Anserini +test1707 Q0 5555947 11 13.617497 Anserini +test1707 Q0 14335259 12 13.482627 Anserini +test1707 Q0 3808732 13 13.309642 Anserini +test1707 Q0 16645483 14 13.254817 Anserini +test1707 Q0 20726955 15 13.202762 Anserini +test1707 Q0 509826 16 13.106314 Anserini +test1707 Q0 509804 17 12.925345 Anserini +test1707 Q0 14335264 18 12.867040 Anserini +test1707 Q0 509834 19 12.812445 Anserini +test1707 Q0 15775074 20 12.794893 Anserini +test1707 Q0 1959042 21 12.773562 Anserini +test1707 Q0 509827 22 12.619174 Anserini +test1707 Q0 17430629 23 12.524754 Anserini +test1707 Q0 3468325 24 12.513060 Anserini +test1707 Q0 14335238 25 12.500124 Anserini +test1707 Q0 14335242 26 12.433710 Anserini +test1707 Q0 19411879 27 12.411195 Anserini +test1707 Q0 509807 28 12.361305 Anserini +test1707 Q0 14335246 29 12.316629 Anserini +test1707 Q0 10079178 30 12.297445 Anserini +test1708 Q0 11545118 1 17.938648 Anserini +test1708 Q0 1830432 2 17.634893 Anserini +test1708 Q0 17261209 3 16.761415 Anserini +test1708 Q0 1830446 4 16.740068 Anserini +test1708 Q0 2436106 5 16.545183 Anserini +test1708 Q0 2436125 6 16.545183 Anserini +test1708 Q0 11544759 7 16.424204 Anserini +test1708 Q0 11544781 8 16.424204 Anserini +test1708 Q0 11887894 9 16.356964 Anserini +test1708 Q0 15608605 10 16.337961 Anserini +test1708 Q0 15608649 11 16.337961 Anserini +test1708 Q0 16014441 12 16.335705 Anserini +test1708 Q0 1840283 13 16.148216 Anserini +test1708 Q0 11544780 14 16.055218 Anserini +test1708 Q0 15608648 15 15.984901 Anserini +test1708 Q0 1830440 16 15.967070 Anserini +test1708 Q0 11545115 17 15.808127 Anserini +test1708 Q0 1840304 18 15.766771 Anserini +test1708 Q0 14749005 19 15.684961 Anserini +test1708 Q0 17261237 20 15.665106 Anserini +test1708 Q0 1830438 21 15.588442 Anserini +test1708 Q0 11545112 22 15.480855 Anserini +test1708 Q0 1830441 23 15.436909 Anserini +test1708 Q0 15362916 24 15.379917 Anserini +test1708 Q0 11544768 25 15.324621 Anserini +test1708 Q0 1840295 26 15.169463 Anserini +test1708 Q0 11545113 27 15.125582 Anserini +test1708 Q0 1830451 28 15.120941 Anserini +test1708 Q0 2821505 29 14.997025 Anserini +test1708 Q0 14574086 30 14.705176 Anserini +test1709 Q0 2834519 1 14.761001 Anserini +test1709 Q0 15108132 2 13.755851 Anserini +test1709 Q0 2784178 3 13.580613 Anserini +test1709 Q0 10291206 4 13.548703 Anserini +test1709 Q0 1466160 5 13.361431 Anserini +test1709 Q0 8423897 6 13.323019 Anserini +test1709 Q0 9669068 7 13.284906 Anserini +test1709 Q0 1371910 8 13.233417 Anserini +test1709 Q0 11609338 9 13.079285 Anserini +test1709 Q0 784825 10 13.059498 Anserini +test1709 Q0 723338 11 12.963828 Anserini +test1709 Q0 554814 12 12.885493 Anserini +test1709 Q0 6096431 13 12.782799 Anserini +test1709 Q0 269004 14 12.705759 Anserini +test1709 Q0 1394080 15 12.607889 Anserini +test1709 Q0 11408704 16 12.607077 Anserini +test1709 Q0 643628 17 12.593455 Anserini +test1709 Q0 3236164 18 12.545865 Anserini +test1709 Q0 723335 19 12.543058 Anserini +test1709 Q0 19359652 20 12.514469 Anserini +test1709 Q0 2009026 21 12.502902 Anserini +test1709 Q0 1394345 22 12.499507 Anserini +test1709 Q0 19868892 23 12.427464 Anserini +test1709 Q0 957022 24 12.401753 Anserini +test1709 Q0 6745471 25 12.365794 Anserini +test1709 Q0 1466352 26 12.299436 Anserini +test1709 Q0 1406376 27 12.280856 Anserini +test1709 Q0 210973 28 12.272392 Anserini +test1709 Q0 11942761 29 12.228453 Anserini +test1709 Q0 346763 30 12.211200 Anserini +test171 Q0 5886196 1 19.380144 Anserini +test171 Q0 17916241 2 19.064999 Anserini +test171 Q0 6556249 3 18.626930 Anserini +test171 Q0 1430916 4 18.394754 Anserini +test171 Q0 10017131 5 18.364628 Anserini +test171 Q0 375916 6 18.353867 Anserini +test171 Q0 14614240 7 17.850765 Anserini +test171 Q0 195134 8 17.719246 Anserini +test171 Q0 7282612 9 17.719246 Anserini +test171 Q0 6926969 10 17.518408 Anserini +test171 Q0 6556250 11 17.500641 Anserini +test171 Q0 6556245 12 17.415781 Anserini +test171 Q0 2243161 13 17.254690 Anserini +test171 Q0 1490958 14 17.254143 Anserini +test171 Q0 6556248 15 17.164976 Anserini +test171 Q0 490482 16 16.942619 Anserini +test171 Q0 14614242 17 16.942619 Anserini +test171 Q0 325278 18 16.902946 Anserini +test171 Q0 935185 19 16.884699 Anserini +test171 Q0 4609115 20 16.869778 Anserini +test171 Q0 10335746 21 16.838644 Anserini +test171 Q0 935192 22 16.765453 Anserini +test171 Q0 2697559 23 16.592052 Anserini +test171 Q0 278158 24 16.541719 Anserini +test171 Q0 2668654 25 16.475790 Anserini +test171 Q0 2852718 26 16.306456 Anserini +test171 Q0 2838562 27 16.206261 Anserini +test171 Q0 7072442 28 16.205772 Anserini +test171 Q0 1430940 29 16.205772 Anserini +test171 Q0 41063 30 16.063604 Anserini +test1710 Q0 2451826 1 12.421014 Anserini +test1710 Q0 997846 2 12.388942 Anserini +test1710 Q0 1270184 3 12.365799 Anserini +test1710 Q0 358148 4 12.069265 Anserini +test1710 Q0 3312970 5 12.066999 Anserini +test1710 Q0 2846174 6 12.017722 Anserini +test1710 Q0 16515492 7 11.938355 Anserini +test1710 Q0 20604110 8 11.858190 Anserini +test1710 Q0 9641626 9 11.783207 Anserini +test1710 Q0 9021820 10 11.766044 Anserini +test1710 Q0 1548595 11 11.719273 Anserini +test1710 Q0 1949306 12 11.715723 Anserini +test1710 Q0 20168896 13 11.652664 Anserini +test1710 Q0 1385082 14 11.641772 Anserini +test1710 Q0 9376082 15 11.622506 Anserini +test1710 Q0 817974 16 11.579181 Anserini +test1710 Q0 1949280 17 11.551178 Anserini +test1710 Q0 15157174 18 11.513280 Anserini +test1710 Q0 6601437 19 11.425820 Anserini +test1710 Q0 1556382 20 11.422891 Anserini +test1710 Q0 3851286 21 11.413823 Anserini +test1710 Q0 11807732 22 11.374155 Anserini +test1710 Q0 8971510 23 11.373805 Anserini +test1710 Q0 17380697 24 11.357994 Anserini +test1710 Q0 1486504 25 11.307087 Anserini +test1710 Q0 2641699 26 11.230250 Anserini +test1710 Q0 16278493 27 11.228518 Anserini +test1710 Q0 15413169 28 11.212733 Anserini +test1710 Q0 13900607 29 11.151530 Anserini +test1710 Q0 17410570 30 11.146550 Anserini +test1711 Q0 1851603 1 12.823923 Anserini +test1711 Q0 4368165 2 12.460143 Anserini +test1711 Q0 13412828 3 12.205032 Anserini +test1711 Q0 14333474 4 12.173646 Anserini +test1711 Q0 1740211 5 12.039937 Anserini +test1711 Q0 6781211 6 11.896400 Anserini +test1711 Q0 13412822 7 11.729442 Anserini +test1711 Q0 12650521 8 11.656384 Anserini +test1711 Q0 6163848 9 11.375232 Anserini +test1711 Q0 4357847 10 11.326911 Anserini +test1711 Q0 14664080 11 11.270101 Anserini +test1711 Q0 17017455 12 11.253143 Anserini +test1711 Q0 9222536 13 11.202523 Anserini +test1711 Q0 15354380 14 11.164108 Anserini +test1711 Q0 10468423 15 10.946923 Anserini +test1711 Q0 17156745 16 10.899714 Anserini +test1711 Q0 8359750 17 10.882240 Anserini +test1711 Q0 12716290 18 10.858926 Anserini +test1711 Q0 10326208 19 10.840809 Anserini +test1711 Q0 15723311 20 10.785994 Anserini +test1711 Q0 11395954 21 10.773345 Anserini +test1711 Q0 12917939 22 10.671270 Anserini +test1711 Q0 4343273 23 10.624679 Anserini +test1711 Q0 13142826 24 10.619802 Anserini +test1711 Q0 20480967 25 10.617459 Anserini +test1711 Q0 17367828 26 10.596385 Anserini +test1711 Q0 17017458 27 10.564767 Anserini +test1711 Q0 8359759 28 10.471242 Anserini +test1711 Q0 5359568 29 10.368644 Anserini +test1711 Q0 1687055 30 10.309341 Anserini +test1712 Q0 3200087 1 15.581686 Anserini +test1712 Q0 3200081 2 15.546094 Anserini +test1712 Q0 17025369 3 15.458944 Anserini +test1712 Q0 313805 4 15.358632 Anserini +test1712 Q0 20259594 5 15.344940 Anserini +test1712 Q0 11779866 6 15.154404 Anserini +test1712 Q0 15096547 7 15.076996 Anserini +test1712 Q0 6224942 8 15.063629 Anserini +test1712 Q0 10271204 9 15.015940 Anserini +test1712 Q0 313849 10 14.939937 Anserini +test1712 Q0 19011682 11 14.919214 Anserini +test1712 Q0 16409522 12 14.773431 Anserini +test1712 Q0 16607460 13 14.767426 Anserini +test1712 Q0 3200035 14 14.716578 Anserini +test1712 Q0 15096554 15 14.686896 Anserini +test1712 Q0 19807841 16 14.636813 Anserini +test1712 Q0 19807797 17 14.503746 Anserini +test1712 Q0 19807796 18 14.453936 Anserini +test1712 Q0 19807846 19 14.388765 Anserini +test1712 Q0 9403913 20 14.371017 Anserini +test1712 Q0 313880 21 14.336371 Anserini +test1712 Q0 4043001 22 14.332110 Anserini +test1712 Q0 3753302 23 14.272672 Anserini +test1712 Q0 14067253 24 14.236651 Anserini +test1712 Q0 6224943 25 14.164209 Anserini +test1712 Q0 394206 26 14.162534 Anserini +test1712 Q0 6079336 27 14.097481 Anserini +test1712 Q0 19984358 28 14.090698 Anserini +test1712 Q0 9862649 29 14.089355 Anserini +test1712 Q0 20468759 30 14.007771 Anserini +test1713 Q0 387031 1 14.412594 Anserini +test1713 Q0 387100 2 14.033426 Anserini +test1713 Q0 387035 3 13.643303 Anserini +test1713 Q0 387032 4 13.528625 Anserini +test1713 Q0 390078 5 13.121761 Anserini +test1713 Q0 387020 6 13.102866 Anserini +test1713 Q0 4701386 7 12.131648 Anserini +test1713 Q0 6946731 8 12.082367 Anserini +test1713 Q0 5173884 9 12.040340 Anserini +test1713 Q0 1818116 10 11.964525 Anserini +test1713 Q0 6242166 11 11.700388 Anserini +test1713 Q0 609364 12 11.619128 Anserini +test1713 Q0 14151010 13 11.610444 Anserini +test1713 Q0 413324 14 11.450403 Anserini +test1713 Q0 3232488 15 11.396819 Anserini +test1713 Q0 705019 16 11.394846 Anserini +test1713 Q0 8959820 17 11.370512 Anserini +test1713 Q0 16726271 18 11.240164 Anserini +test1713 Q0 18497106 19 11.192899 Anserini +test1713 Q0 14988688 20 11.147992 Anserini +test1713 Q0 8624111 21 11.133970 Anserini +test1713 Q0 3455519 22 11.097115 Anserini +test1713 Q0 857731 23 11.026609 Anserini +test1713 Q0 4509784 24 10.996017 Anserini +test1713 Q0 387030 25 10.993015 Anserini +test1713 Q0 5492903 26 10.928806 Anserini +test1713 Q0 6542850 27 10.862489 Anserini +test1713 Q0 10754238 28 10.854877 Anserini +test1713 Q0 10172612 29 10.782516 Anserini +test1713 Q0 15043186 30 10.761065 Anserini +test1714 Q0 10219876 1 15.442746 Anserini +test1714 Q0 10219882 2 15.442746 Anserini +test1714 Q0 4519171 3 15.275294 Anserini +test1714 Q0 4519173 4 14.939195 Anserini +test1714 Q0 4519172 5 14.810580 Anserini +test1714 Q0 7123934 6 14.635441 Anserini +test1714 Q0 8516635 7 14.615348 Anserini +test1714 Q0 1623394 8 14.335338 Anserini +test1714 Q0 8516684 9 14.315408 Anserini +test1714 Q0 8516680 10 14.156692 Anserini +test1714 Q0 3605670 11 14.000188 Anserini +test1714 Q0 4519176 12 13.961525 Anserini +test1714 Q0 8516678 13 13.815359 Anserini +test1714 Q0 839315 14 13.807991 Anserini +test1714 Q0 8516677 15 13.793069 Anserini +test1714 Q0 839353 16 13.726099 Anserini +test1714 Q0 5313725 17 13.607621 Anserini +test1714 Q0 4288457 18 13.552559 Anserini +test1714 Q0 8652817 19 13.550812 Anserini +test1714 Q0 4397907 20 13.436397 Anserini +test1714 Q0 4288449 21 13.413178 Anserini +test1714 Q0 15940303 22 13.373297 Anserini +test1714 Q0 839349 23 13.367579 Anserini +test1714 Q0 4381345 24 13.246388 Anserini +test1714 Q0 10561206 25 13.180536 Anserini +test1714 Q0 6423711 26 13.145350 Anserini +test1714 Q0 8516679 27 13.128137 Anserini +test1714 Q0 713432 28 13.125226 Anserini +test1714 Q0 4519175 29 13.058768 Anserini +test1714 Q0 208232 30 13.044029 Anserini +test1715 Q0 20583702 1 19.273842 Anserini +test1715 Q0 441509 2 18.998573 Anserini +test1715 Q0 662889 3 17.719339 Anserini +test1715 Q0 441493 4 17.351603 Anserini +test1715 Q0 441513 5 16.915443 Anserini +test1715 Q0 441494 6 16.663946 Anserini +test1715 Q0 7521600 7 16.568544 Anserini +test1715 Q0 441511 8 16.489357 Anserini +test1715 Q0 1520939 9 16.292803 Anserini +test1715 Q0 1322749 10 16.278240 Anserini +test1715 Q0 7521598 11 16.159863 Anserini +test1715 Q0 14083995 12 15.842569 Anserini +test1715 Q0 6675108 13 15.688261 Anserini +test1715 Q0 662891 14 15.655855 Anserini +test1715 Q0 14956952 15 15.623951 Anserini +test1715 Q0 14956955 16 15.623951 Anserini +test1715 Q0 6675119 17 15.603193 Anserini +test1715 Q0 9046873 18 15.530226 Anserini +test1715 Q0 662896 19 15.474221 Anserini +test1715 Q0 12138940 20 15.471808 Anserini +test1715 Q0 439989 21 15.347733 Anserini +test1715 Q0 1389536 22 15.284495 Anserini +test1715 Q0 2163615 23 15.257517 Anserini +test1715 Q0 9664135 24 15.214881 Anserini +test1715 Q0 4020356 25 15.189681 Anserini +test1715 Q0 19330842 26 15.189075 Anserini +test1715 Q0 2170899 27 15.168212 Anserini +test1715 Q0 1389586 28 15.154090 Anserini +test1715 Q0 441503 29 15.127670 Anserini +test1715 Q0 6127049 30 15.106182 Anserini +test1716 Q0 647575 1 20.983418 Anserini +test1716 Q0 1956292 2 20.160191 Anserini +test1716 Q0 11181896 3 19.234465 Anserini +test1716 Q0 11181903 4 18.952553 Anserini +test1716 Q0 10466188 5 18.921753 Anserini +test1716 Q0 4538728 6 18.569687 Anserini +test1716 Q0 2521183 7 18.319580 Anserini +test1716 Q0 9184586 8 18.228006 Anserini +test1716 Q0 18823626 9 18.146854 Anserini +test1716 Q0 10466206 10 18.070627 Anserini +test1716 Q0 5703866 11 17.907019 Anserini +test1716 Q0 2812556 12 17.901134 Anserini +test1716 Q0 637507 13 17.876547 Anserini +test1716 Q0 7841364 14 17.818062 Anserini +test1716 Q0 10466200 15 17.792515 Anserini +test1716 Q0 9184596 16 17.772558 Anserini +test1716 Q0 4538725 17 17.744072 Anserini +test1716 Q0 1956289 18 17.674892 Anserini +test1716 Q0 647607 19 17.644226 Anserini +test1716 Q0 20522260 20 17.614468 Anserini +test1716 Q0 1526917 21 17.588755 Anserini +test1716 Q0 11181905 22 17.487310 Anserini +test1716 Q0 9408290 23 17.481253 Anserini +test1716 Q0 18975646 24 17.400154 Anserini +test1716 Q0 9184599 25 17.384750 Anserini +test1716 Q0 647611 26 17.295095 Anserini +test1716 Q0 2242234 27 17.175962 Anserini +test1716 Q0 8593985 28 17.015596 Anserini +test1716 Q0 7841366 29 16.852333 Anserini +test1716 Q0 10466189 30 16.787031 Anserini +test1717 Q0 6693619 1 27.755207 Anserini +test1717 Q0 6693622 2 26.936115 Anserini +test1717 Q0 6693621 3 23.670687 Anserini +test1717 Q0 9317471 4 23.584587 Anserini +test1717 Q0 6012938 5 21.382797 Anserini +test1717 Q0 6693620 6 18.975519 Anserini +test1717 Q0 909006 7 18.438145 Anserini +test1717 Q0 10138208 8 18.246067 Anserini +test1717 Q0 3310332 9 18.246067 Anserini +test1717 Q0 5211640 10 18.246067 Anserini +test1717 Q0 7025303 11 18.246067 Anserini +test1717 Q0 7025304 12 18.057951 Anserini +test1717 Q0 16150557 13 15.505389 Anserini +test1717 Q0 12057651 14 15.419128 Anserini +test1717 Q0 12057649 15 15.184473 Anserini +test1717 Q0 10027095 16 15.090876 Anserini +test1717 Q0 10482015 17 14.735495 Anserini +test1717 Q0 20155858 18 14.327777 Anserini +test1717 Q0 7004714 19 13.448610 Anserini +test1717 Q0 15668032 20 13.448348 Anserini +test1717 Q0 2408091 21 13.310492 Anserini +test1717 Q0 210877 22 13.214978 Anserini +test1717 Q0 3915710 23 12.906185 Anserini +test1717 Q0 18036197 24 12.719588 Anserini +test1717 Q0 11034545 25 12.477719 Anserini +test1717 Q0 10504533 26 12.365993 Anserini +test1717 Q0 18250433 27 12.297737 Anserini +test1717 Q0 10868917 28 12.282116 Anserini +test1717 Q0 2731368 29 12.151631 Anserini +test1717 Q0 6012941 30 12.126890 Anserini +test1718 Q0 4347787 1 13.123273 Anserini +test1718 Q0 4347786 2 12.947685 Anserini +test1718 Q0 46454 3 12.554483 Anserini +test1718 Q0 3621341 4 12.508357 Anserini +test1718 Q0 9081890 5 12.465425 Anserini +test1718 Q0 10584446 6 12.459957 Anserini +test1718 Q0 46432 7 12.440174 Anserini +test1718 Q0 46425 8 12.246189 Anserini +test1718 Q0 46420 9 12.200596 Anserini +test1718 Q0 46428 10 12.174926 Anserini +test1718 Q0 46446 11 12.071476 Anserini +test1718 Q0 46422 12 11.962132 Anserini +test1718 Q0 46452 13 11.950647 Anserini +test1718 Q0 16786651 14 11.801623 Anserini +test1718 Q0 4004370 15 11.791245 Anserini +test1718 Q0 46424 16 11.777601 Anserini +test1718 Q0 7091065 17 11.745805 Anserini +test1718 Q0 46412 18 11.590865 Anserini +test1718 Q0 46431 19 11.528585 Anserini +test1718 Q0 46433 20 11.506581 Anserini +test1718 Q0 7550503 21 11.431129 Anserini +test1718 Q0 46430 22 11.431129 Anserini +test1718 Q0 52021 23 11.341429 Anserini +test1718 Q0 46436 24 11.314093 Anserini +test1718 Q0 20049951 25 11.305081 Anserini +test1718 Q0 1897189 26 11.305081 Anserini +test1718 Q0 46435 27 11.305081 Anserini +test1718 Q0 498252 28 11.305081 Anserini +test1718 Q0 12670348 29 11.305081 Anserini +test1718 Q0 12669868 30 11.300193 Anserini +test1719 Q0 6602316 1 14.827621 Anserini +test1719 Q0 6602306 2 14.767979 Anserini +test1719 Q0 6602307 3 13.267986 Anserini +test1719 Q0 6602308 4 12.977667 Anserini +test1719 Q0 6602310 5 12.974892 Anserini +test1719 Q0 6602311 6 12.612762 Anserini +test1719 Q0 9380842 7 11.873125 Anserini +test1719 Q0 3395796 8 11.825377 Anserini +test1719 Q0 6602315 9 11.810555 Anserini +test1719 Q0 20452025 10 11.785027 Anserini +test1719 Q0 9195373 11 11.677228 Anserini +test1719 Q0 6602309 12 11.677228 Anserini +test1719 Q0 6602314 13 11.613283 Anserini +test1719 Q0 12128762 14 11.528426 Anserini +test1719 Q0 15254873 15 11.451233 Anserini +test1719 Q0 18209753 16 11.346812 Anserini +test1719 Q0 1155286 17 11.281164 Anserini +test1719 Q0 20452006 18 11.108636 Anserini +test1719 Q0 21006930 19 11.072211 Anserini +test1719 Q0 3938612 20 11.029233 Anserini +test1719 Q0 20452033 21 10.817050 Anserini +test1719 Q0 20452050 22 10.817050 Anserini +test1719 Q0 1427387 23 10.778164 Anserini +test1719 Q0 1883557 24 10.766418 Anserini +test1719 Q0 1427353 25 10.760468 Anserini +test1719 Q0 1427394 26 10.751553 Anserini +test1719 Q0 1427337 27 10.704890 Anserini +test1719 Q0 15233140 28 10.691475 Anserini +test1719 Q0 2014136 29 10.691475 Anserini +test1719 Q0 20452056 30 10.652487 Anserini +test172 Q0 3262258 1 19.253649 Anserini +test172 Q0 3262260 2 19.168219 Anserini +test172 Q0 1966778 3 18.535545 Anserini +test172 Q0 6892771 4 17.254034 Anserini +test172 Q0 4930223 5 16.806572 Anserini +test172 Q0 12476893 6 16.612677 Anserini +test172 Q0 20566696 7 16.021271 Anserini +test172 Q0 1966777 8 15.711567 Anserini +test172 Q0 12242699 9 15.640025 Anserini +test172 Q0 20321137 10 15.270014 Anserini +test172 Q0 16482392 11 14.548105 Anserini +test172 Q0 8047271 12 14.392241 Anserini +test172 Q0 2694884 13 14.325056 Anserini +test172 Q0 10744832 14 14.126694 Anserini +test172 Q0 20421756 15 14.061096 Anserini +test172 Q0 20321140 16 13.827608 Anserini +test172 Q0 4930224 17 13.801638 Anserini +test172 Q0 13984132 18 13.680953 Anserini +test172 Q0 8047273 19 13.646678 Anserini +test172 Q0 8548763 20 13.625814 Anserini +test172 Q0 1966783 21 13.575701 Anserini +test172 Q0 2694887 22 13.548062 Anserini +test172 Q0 3672757 23 13.439901 Anserini +test172 Q0 11458414 24 13.286865 Anserini +test172 Q0 20512059 25 13.248015 Anserini +test172 Q0 16717148 26 13.193796 Anserini +test172 Q0 7219434 27 13.172721 Anserini +test172 Q0 387826 28 13.132160 Anserini +test172 Q0 2859992 29 12.927278 Anserini +test172 Q0 12951830 30 12.873066 Anserini +test1720 Q0 11390187 1 18.529163 Anserini +test1720 Q0 17725314 2 18.447147 Anserini +test1720 Q0 3581224 3 17.299883 Anserini +test1720 Q0 20541731 4 16.815754 Anserini +test1720 Q0 340700 5 16.751608 Anserini +test1720 Q0 18961678 6 16.441206 Anserini +test1720 Q0 12088936 7 16.238512 Anserini +test1720 Q0 13155382 8 16.099876 Anserini +test1720 Q0 13155418 9 16.013365 Anserini +test1720 Q0 13015061 10 15.938225 Anserini +test1720 Q0 7051910 11 15.936481 Anserini +test1720 Q0 18961699 12 15.834599 Anserini +test1720 Q0 16176397 13 15.796504 Anserini +test1720 Q0 1618389 14 15.772965 Anserini +test1720 Q0 19562362 15 15.741650 Anserini +test1720 Q0 1615336 16 15.711585 Anserini +test1720 Q0 13015057 17 15.631830 Anserini +test1720 Q0 12445535 18 15.595485 Anserini +test1720 Q0 20288590 19 15.548640 Anserini +test1720 Q0 18023812 20 15.515088 Anserini +test1720 Q0 3457643 21 15.463079 Anserini +test1720 Q0 2433935 22 15.436606 Anserini +test1720 Q0 7392768 23 15.436606 Anserini +test1720 Q0 19792146 24 15.422079 Anserini +test1720 Q0 8068503 25 15.392154 Anserini +test1720 Q0 18611458 26 15.370736 Anserini +test1720 Q0 340771 27 15.286718 Anserini +test1720 Q0 12957918 28 15.282529 Anserini +test1720 Q0 9608327 29 15.256189 Anserini +test1720 Q0 9010333 30 15.241389 Anserini +test1721 Q0 9948371 1 10.528502 Anserini +test1721 Q0 8837388 2 10.400411 Anserini +test1721 Q0 18942893 3 10.246239 Anserini +test1721 Q0 20259287 4 10.105612 Anserini +test1721 Q0 414499 5 10.075181 Anserini +test1721 Q0 2233538 6 10.057556 Anserini +test1721 Q0 207831 7 9.988205 Anserini +test1721 Q0 2233706 8 9.912452 Anserini +test1721 Q0 7589019 9 9.854406 Anserini +test1721 Q0 6684563 10 9.776602 Anserini +test1721 Q0 11860372 11 9.757936 Anserini +test1721 Q0 9706 12 9.727386 Anserini +test1721 Q0 20430001 13 9.716687 Anserini +test1721 Q0 4339803 14 9.679542 Anserini +test1721 Q0 4339805 15 9.679542 Anserini +test1721 Q0 390617 16 9.656006 Anserini +test1721 Q0 19142413 17 9.630725 Anserini +test1721 Q0 18942899 18 9.628538 Anserini +test1721 Q0 7439244 19 9.612315 Anserini +test1721 Q0 192317 20 9.599393 Anserini +test1721 Q0 11686254 21 9.585766 Anserini +test1721 Q0 7916830 22 9.524605 Anserini +test1721 Q0 817492 23 9.512129 Anserini +test1721 Q0 13902657 24 9.498465 Anserini +test1721 Q0 7380495 25 9.489557 Anserini +test1721 Q0 207996 26 9.462177 Anserini +test1721 Q0 192467 27 9.441152 Anserini +test1721 Q0 18942894 28 9.435705 Anserini +test1721 Q0 18080215 29 9.422113 Anserini +test1721 Q0 3513805 30 9.411437 Anserini +test1722 Q0 17897583 1 18.671255 Anserini +test1722 Q0 18335854 2 18.321293 Anserini +test1722 Q0 18332593 3 18.221619 Anserini +test1722 Q0 18332603 4 17.905882 Anserini +test1722 Q0 18335844 5 17.809124 Anserini +test1722 Q0 17532929 6 17.761982 Anserini +test1722 Q0 17841643 7 17.743750 Anserini +test1722 Q0 17846898 8 17.626528 Anserini +test1722 Q0 17861158 9 17.562185 Anserini +test1722 Q0 17861137 10 17.457308 Anserini +test1722 Q0 17830720 11 17.445354 Anserini +test1722 Q0 17645030 12 17.353895 Anserini +test1722 Q0 17618187 13 17.251915 Anserini +test1722 Q0 15053458 14 17.224955 Anserini +test1722 Q0 18046561 15 17.224955 Anserini +test1722 Q0 15053435 16 17.121027 Anserini +test1722 Q0 18046536 17 17.121027 Anserini +test1722 Q0 18730862 18 17.029549 Anserini +test1722 Q0 17719360 19 17.029549 Anserini +test1722 Q0 18354130 20 16.940727 Anserini +test1722 Q0 17719374 21 16.923016 Anserini +test1722 Q0 15619965 22 16.923016 Anserini +test1722 Q0 15619978 23 16.923016 Anserini +test1722 Q0 17910765 24 16.725424 Anserini +test1722 Q0 16865839 25 16.721949 Anserini +test1722 Q0 18449627 26 16.674791 Anserini +test1722 Q0 17041804 27 16.649279 Anserini +test1722 Q0 18730873 28 16.626469 Anserini +test1722 Q0 17833604 29 16.626469 Anserini +test1722 Q0 18092012 30 16.626469 Anserini +test1723 Q0 10380999 1 14.741852 Anserini +test1723 Q0 8117936 2 14.408819 Anserini +test1723 Q0 3237196 3 14.045762 Anserini +test1723 Q0 16373002 4 13.680529 Anserini +test1723 Q0 4576205 5 13.527280 Anserini +test1723 Q0 16347523 6 13.426116 Anserini +test1723 Q0 9353751 7 13.219986 Anserini +test1723 Q0 10380996 8 13.130500 Anserini +test1723 Q0 16347458 9 13.128551 Anserini +test1723 Q0 3237195 10 13.012923 Anserini +test1723 Q0 17556506 11 12.947748 Anserini +test1723 Q0 8117933 12 12.942401 Anserini +test1723 Q0 3271741 13 12.903762 Anserini +test1723 Q0 8117969 14 12.843513 Anserini +test1723 Q0 16367403 15 12.806670 Anserini +test1723 Q0 8141604 16 12.747241 Anserini +test1723 Q0 10381006 17 12.736104 Anserini +test1723 Q0 10381015 18 12.661560 Anserini +test1723 Q0 8141606 19 12.650962 Anserini +test1723 Q0 10118985 20 12.382374 Anserini +test1723 Q0 16367405 21 12.309447 Anserini +test1723 Q0 8117966 22 12.260889 Anserini +test1723 Q0 16347460 23 12.243961 Anserini +test1723 Q0 8164794 24 12.206093 Anserini +test1723 Q0 9169255 25 12.206093 Anserini +test1723 Q0 16367415 26 12.138270 Anserini +test1723 Q0 17556482 27 12.109286 Anserini +test1723 Q0 9819245 28 12.065195 Anserini +test1723 Q0 16347500 29 12.056869 Anserini +test1723 Q0 9819252 30 12.031693 Anserini +test1724 Q0 355985 1 12.592510 Anserini +test1724 Q0 11545614 2 11.746349 Anserini +test1724 Q0 8130404 3 11.383525 Anserini +test1724 Q0 12824222 4 11.206678 Anserini +test1724 Q0 15276081 5 11.101616 Anserini +test1724 Q0 8444788 6 11.089535 Anserini +test1724 Q0 12650276 7 10.967076 Anserini +test1724 Q0 1819900 8 10.933640 Anserini +test1724 Q0 18215347 9 10.884265 Anserini +test1724 Q0 8325882 10 10.800748 Anserini +test1724 Q0 12605937 11 10.779776 Anserini +test1724 Q0 2203287 12 10.741907 Anserini +test1724 Q0 4988241 13 10.721035 Anserini +test1724 Q0 2203293 14 10.694313 Anserini +test1724 Q0 10105302 15 10.688921 Anserini +test1724 Q0 3368631 16 10.687640 Anserini +test1724 Q0 9315278 17 10.665343 Anserini +test1724 Q0 12663782 18 10.657513 Anserini +test1724 Q0 12402055 19 10.643009 Anserini +test1724 Q0 412999 20 10.627441 Anserini +test1724 Q0 12397368 21 10.607592 Anserini +test1724 Q0 17404282 22 10.595575 Anserini +test1724 Q0 14453733 23 10.521723 Anserini +test1724 Q0 12918720 24 10.486935 Anserini +test1724 Q0 10704399 25 10.463816 Anserini +test1724 Q0 8449872 26 10.417652 Anserini +test1724 Q0 12514563 27 10.405980 Anserini +test1724 Q0 4907397 28 10.403061 Anserini +test1724 Q0 9758637 29 10.399725 Anserini +test1724 Q0 1759723 30 10.377025 Anserini +test1725 Q0 17413211 1 11.254847 Anserini +test1725 Q0 17413205 2 11.046835 Anserini +test1725 Q0 11266305 3 11.044244 Anserini +test1725 Q0 158287 4 10.831635 Anserini +test1725 Q0 7851254 5 10.642654 Anserini +test1725 Q0 20701232 6 10.446179 Anserini +test1725 Q0 1865844 7 10.351406 Anserini +test1725 Q0 14598142 8 10.143405 Anserini +test1725 Q0 13945999 9 10.128336 Anserini +test1725 Q0 17351047 10 10.021834 Anserini +test1725 Q0 20598133 11 10.003018 Anserini +test1725 Q0 2673073 12 9.964007 Anserini +test1725 Q0 17285919 13 9.839752 Anserini +test1725 Q0 13089207 14 9.713800 Anserini +test1725 Q0 13346169 15 9.629633 Anserini +test1725 Q0 10049785 16 9.556689 Anserini +test1725 Q0 19047607 17 9.487675 Anserini +test1725 Q0 2673080 18 9.478449 Anserini +test1725 Q0 5470292 19 9.429848 Anserini +test1725 Q0 12140725 20 9.427201 Anserini +test1725 Q0 12287524 21 9.413009 Anserini +test1725 Q0 5674999 22 9.413009 Anserini +test1725 Q0 13269167 23 9.407433 Anserini +test1725 Q0 2673087 24 9.384214 Anserini +test1725 Q0 4332820 25 9.118495 Anserini +test1725 Q0 4403644 26 9.103779 Anserini +test1725 Q0 13687789 27 9.032704 Anserini +test1725 Q0 3440923 28 9.006325 Anserini +test1725 Q0 15113823 29 8.988578 Anserini +test1725 Q0 16251804 30 8.974617 Anserini +test1726 Q0 1023354 1 12.332012 Anserini +test1726 Q0 14277708 2 12.153821 Anserini +test1726 Q0 14603462 3 11.962152 Anserini +test1726 Q0 12219137 4 11.866280 Anserini +test1726 Q0 14277725 5 11.722188 Anserini +test1726 Q0 18136997 6 11.562380 Anserini +test1726 Q0 14444052 7 11.502975 Anserini +test1726 Q0 10622742 8 11.486505 Anserini +test1726 Q0 19329659 9 11.485736 Anserini +test1726 Q0 19329664 10 11.485736 Anserini +test1726 Q0 8727655 11 11.386221 Anserini +test1726 Q0 934000 12 11.386065 Anserini +test1726 Q0 20435378 13 11.335831 Anserini +test1726 Q0 18136996 14 11.264604 Anserini +test1726 Q0 18136999 15 11.257811 Anserini +test1726 Q0 11707464 16 11.229557 Anserini +test1726 Q0 15556286 17 11.229557 Anserini +test1726 Q0 10622741 18 11.091939 Anserini +test1726 Q0 13975489 19 11.013520 Anserini +test1726 Q0 1190750 20 10.923202 Anserini +test1726 Q0 14331612 21 10.873332 Anserini +test1726 Q0 18137009 22 10.795501 Anserini +test1726 Q0 20546311 23 10.737061 Anserini +test1726 Q0 7613802 24 10.691551 Anserini +test1726 Q0 16362129 25 10.635533 Anserini +test1726 Q0 16598939 26 10.616846 Anserini +test1726 Q0 14331605 27 10.519957 Anserini +test1726 Q0 1193608 28 10.515303 Anserini +test1726 Q0 18136992 29 10.479968 Anserini +test1726 Q0 14189274 30 10.436427 Anserini +test1727 Q0 9653498 1 11.340818 Anserini +test1727 Q0 13395994 2 10.797676 Anserini +test1727 Q0 13395990 3 10.394425 Anserini +test1727 Q0 13510572 4 9.873129 Anserini +test1727 Q0 18748927 5 9.692630 Anserini +test1727 Q0 8758844 6 9.642811 Anserini +test1727 Q0 18765326 7 9.625577 Anserini +test1727 Q0 13764820 8 9.522541 Anserini +test1727 Q0 3393294 9 9.459990 Anserini +test1727 Q0 10355461 10 9.350417 Anserini +test1727 Q0 5211179 11 9.324584 Anserini +test1727 Q0 20893314 12 9.287243 Anserini +test1727 Q0 8493410 13 9.243122 Anserini +test1727 Q0 18583520 14 9.217245 Anserini +test1727 Q0 15206836 15 9.182772 Anserini +test1727 Q0 15046463 16 9.148665 Anserini +test1727 Q0 636996 17 9.064922 Anserini +test1727 Q0 13395991 18 9.044969 Anserini +test1727 Q0 4927548 19 8.990484 Anserini +test1727 Q0 17819366 20 8.981748 Anserini +test1727 Q0 5867682 21 8.971656 Anserini +test1727 Q0 1782483 22 8.971656 Anserini +test1727 Q0 5867691 23 8.949990 Anserini +test1727 Q0 3470434 24 8.935775 Anserini +test1727 Q0 4927559 25 8.930857 Anserini +test1727 Q0 6720551 26 8.916541 Anserini +test1727 Q0 11986099 27 8.850616 Anserini +test1727 Q0 2601900 28 8.850217 Anserini +test1727 Q0 18135879 29 8.827049 Anserini +test1727 Q0 8493411 30 8.827049 Anserini +test1728 Q0 8316065 1 15.756746 Anserini +test1728 Q0 7426413 2 15.604304 Anserini +test1728 Q0 4187287 3 15.134520 Anserini +test1728 Q0 7426497 4 15.002661 Anserini +test1728 Q0 18553291 5 14.550053 Anserini +test1728 Q0 7426452 6 14.363828 Anserini +test1728 Q0 5282228 7 14.280783 Anserini +test1728 Q0 7912635 8 14.269649 Anserini +test1728 Q0 4187288 9 14.183006 Anserini +test1728 Q0 11174635 10 14.138871 Anserini +test1728 Q0 7426480 11 14.138039 Anserini +test1728 Q0 11174673 12 14.105696 Anserini +test1728 Q0 1208639 13 14.019536 Anserini +test1728 Q0 7426473 14 14.016138 Anserini +test1728 Q0 20071645 15 13.881397 Anserini +test1728 Q0 6915952 16 13.861381 Anserini +test1728 Q0 8316033 17 13.803285 Anserini +test1728 Q0 8426533 18 13.791679 Anserini +test1728 Q0 15974794 19 13.771580 Anserini +test1728 Q0 8316073 20 13.731667 Anserini +test1728 Q0 7426463 21 13.708740 Anserini +test1728 Q0 7426496 22 13.666319 Anserini +test1728 Q0 7426445 23 13.636503 Anserini +test1728 Q0 13805365 24 13.631515 Anserini +test1728 Q0 16862033 25 13.615833 Anserini +test1728 Q0 16862037 26 13.553409 Anserini +test1728 Q0 8316049 27 13.506368 Anserini +test1728 Q0 18553351 28 13.502507 Anserini +test1728 Q0 8316062 29 13.501975 Anserini +test1728 Q0 7426474 30 13.489350 Anserini +test1729 Q0 5227698 1 16.545498 Anserini +test1729 Q0 3830630 2 13.815363 Anserini +test1729 Q0 9040467 3 13.605470 Anserini +test1729 Q0 1951780 4 13.390844 Anserini +test1729 Q0 12879358 5 13.275103 Anserini +test1729 Q0 1951764 6 13.222662 Anserini +test1729 Q0 13681882 7 13.085760 Anserini +test1729 Q0 135409 8 12.979191 Anserini +test1729 Q0 6373107 9 12.915992 Anserini +test1729 Q0 6373106 10 12.903017 Anserini +test1729 Q0 8346457 11 12.799834 Anserini +test1729 Q0 13687342 12 12.735765 Anserini +test1729 Q0 5543526 13 12.709095 Anserini +test1729 Q0 6254079 14 12.599390 Anserini +test1729 Q0 5227699 15 12.561083 Anserini +test1729 Q0 1951768 16 12.488468 Anserini +test1729 Q0 16769396 17 12.484621 Anserini +test1729 Q0 7864862 18 12.316537 Anserini +test1729 Q0 18823008 19 12.194249 Anserini +test1729 Q0 5227693 20 12.173114 Anserini +test1729 Q0 14220870 21 12.085073 Anserini +test1729 Q0 2932853 22 12.067702 Anserini +test1729 Q0 5860595 23 12.059680 Anserini +test1729 Q0 409549 24 12.040290 Anserini +test1729 Q0 2053564 25 11.993202 Anserini +test1729 Q0 19220879 26 11.983766 Anserini +test1729 Q0 14220871 27 11.944233 Anserini +test1729 Q0 6452289 28 11.819449 Anserini +test1729 Q0 12284596 29 11.697521 Anserini +test1729 Q0 2347031 30 11.693561 Anserini +test173 Q0 4666861 1 13.292416 Anserini +test173 Q0 13964267 2 11.877302 Anserini +test173 Q0 6581306 3 11.856955 Anserini +test173 Q0 9722389 4 11.756289 Anserini +test173 Q0 17285170 5 11.746178 Anserini +test173 Q0 11982830 6 11.657453 Anserini +test173 Q0 2343371 7 11.514698 Anserini +test173 Q0 7409682 8 11.431958 Anserini +test173 Q0 7409684 9 11.431958 Anserini +test173 Q0 19843407 10 11.423112 Anserini +test173 Q0 11189526 11 11.418136 Anserini +test173 Q0 2335767 12 11.368618 Anserini +test173 Q0 17569322 13 11.301872 Anserini +test173 Q0 10238528 14 11.148712 Anserini +test173 Q0 10059876 15 11.142546 Anserini +test173 Q0 4849988 16 11.065386 Anserini +test173 Q0 9938304 17 11.000539 Anserini +test173 Q0 18838109 18 10.959864 Anserini +test173 Q0 8691580 19 10.958387 Anserini +test173 Q0 995794 20 10.952339 Anserini +test173 Q0 15295696 21 10.849441 Anserini +test173 Q0 19478569 22 10.846965 Anserini +test173 Q0 3201415 23 10.817184 Anserini +test173 Q0 12937091 24 10.792578 Anserini +test173 Q0 19988457 25 10.748517 Anserini +test173 Q0 18788809 26 10.710325 Anserini +test173 Q0 18300415 27 10.677754 Anserini +test173 Q0 17587083 28 10.677754 Anserini +test173 Q0 1775306 29 10.664539 Anserini +test173 Q0 9491318 30 10.657082 Anserini +test1730 Q0 11716359 1 16.707853 Anserini +test1730 Q0 15559478 2 16.384401 Anserini +test1730 Q0 11716409 3 16.190516 Anserini +test1730 Q0 11716394 4 14.430528 Anserini +test1730 Q0 11716405 5 14.033468 Anserini +test1730 Q0 13129429 6 13.799258 Anserini +test1730 Q0 11716407 7 13.067613 Anserini +test1730 Q0 11716374 8 12.818213 Anserini +test1730 Q0 11716383 9 12.724578 Anserini +test1730 Q0 11716371 10 12.639575 Anserini +test1730 Q0 3748671 11 12.574573 Anserini +test1730 Q0 12434359 12 12.368466 Anserini +test1730 Q0 8156637 13 12.351110 Anserini +test1730 Q0 14862459 14 12.079258 Anserini +test1730 Q0 12434365 15 12.042315 Anserini +test1730 Q0 15763682 16 11.983928 Anserini +test1730 Q0 16076784 17 11.900288 Anserini +test1730 Q0 19720137 18 11.836609 Anserini +test1730 Q0 6118116 19 11.745317 Anserini +test1730 Q0 17264534 20 11.732268 Anserini +test1730 Q0 15559473 21 11.707672 Anserini +test1730 Q0 17264539 22 11.673938 Anserini +test1730 Q0 13614793 23 11.553851 Anserini +test1730 Q0 10603318 24 11.500602 Anserini +test1730 Q0 20445117 25 11.468816 Anserini +test1730 Q0 15559480 26 11.381786 Anserini +test1730 Q0 11716376 27 11.373059 Anserini +test1730 Q0 11716352 28 11.362420 Anserini +test1730 Q0 1981305 29 11.314510 Anserini +test1730 Q0 17448187 30 11.264736 Anserini +test1731 Q0 727105 1 17.353409 Anserini +test1731 Q0 740105 2 16.821917 Anserini +test1731 Q0 8504075 3 16.723793 Anserini +test1731 Q0 8504080 4 15.803722 Anserini +test1731 Q0 1297566 5 15.708311 Anserini +test1731 Q0 727104 6 15.108210 Anserini +test1731 Q0 8504078 7 14.943730 Anserini +test1731 Q0 1941811 8 14.195248 Anserini +test1731 Q0 4364207 9 13.996407 Anserini +test1731 Q0 3784797 10 13.939948 Anserini +test1731 Q0 740044 11 13.863714 Anserini +test1731 Q0 8504072 12 13.828249 Anserini +test1731 Q0 6214222 13 13.758322 Anserini +test1731 Q0 740039 14 13.735830 Anserini +test1731 Q0 6214220 15 13.636249 Anserini +test1731 Q0 2945727 16 13.467087 Anserini +test1731 Q0 1294245 17 13.353878 Anserini +test1731 Q0 1294250 18 13.276327 Anserini +test1731 Q0 4283860 19 13.171398 Anserini +test1731 Q0 1957977 20 13.138342 Anserini +test1731 Q0 4031524 21 13.097548 Anserini +test1731 Q0 14228245 22 13.049219 Anserini +test1731 Q0 12629656 23 12.992595 Anserini +test1731 Q0 740109 24 12.982582 Anserini +test1731 Q0 3023560 25 12.938925 Anserini +test1731 Q0 1960150 26 12.932150 Anserini +test1731 Q0 1293704 27 12.892395 Anserini +test1731 Q0 20174723 28 12.875719 Anserini +test1731 Q0 1942139 29 12.848647 Anserini +test1731 Q0 20174724 30 12.848608 Anserini +test1732 Q0 2065763 1 18.567373 Anserini +test1732 Q0 2065743 2 18.238510 Anserini +test1732 Q0 6731108 3 17.915127 Anserini +test1732 Q0 10359246 4 17.811760 Anserini +test1732 Q0 2065742 5 17.765461 Anserini +test1732 Q0 13900571 6 17.444132 Anserini +test1732 Q0 3744025 7 17.288797 Anserini +test1732 Q0 2065744 8 17.084257 Anserini +test1732 Q0 2065751 9 16.956676 Anserini +test1732 Q0 6731080 10 16.813030 Anserini +test1732 Q0 2366763 11 16.784897 Anserini +test1732 Q0 3744019 12 16.714367 Anserini +test1732 Q0 15197192 13 16.479216 Anserini +test1732 Q0 3744065 14 16.424973 Anserini +test1732 Q0 15197189 15 16.365345 Anserini +test1732 Q0 3744034 16 16.147469 Anserini +test1732 Q0 14153160 17 16.144247 Anserini +test1732 Q0 3744047 18 16.098045 Anserini +test1732 Q0 10359244 19 16.094116 Anserini +test1732 Q0 6731103 20 16.055380 Anserini +test1732 Q0 3744053 21 16.033518 Anserini +test1732 Q0 16606548 22 15.944973 Anserini +test1732 Q0 6731097 23 15.867599 Anserini +test1732 Q0 895756 24 15.839506 Anserini +test1732 Q0 11577434 25 15.802969 Anserini +test1732 Q0 14153159 26 15.709280 Anserini +test1732 Q0 3744043 27 15.664622 Anserini +test1732 Q0 15197157 28 15.654984 Anserini +test1732 Q0 15197215 29 15.654984 Anserini +test1732 Q0 15197214 30 15.646141 Anserini +test1733 Q0 10381164 1 9.561045 Anserini +test1733 Q0 14000878 2 9.439583 Anserini +test1733 Q0 8330304 3 8.975307 Anserini +test1733 Q0 5153792 4 8.875023 Anserini +test1733 Q0 17314342 5 8.740927 Anserini +test1733 Q0 13777642 6 8.692645 Anserini +test1733 Q0 13183395 7 8.685420 Anserini +test1733 Q0 17673990 8 8.678185 Anserini +test1733 Q0 697198 9 8.604199 Anserini +test1733 Q0 18108331 10 8.592617 Anserini +test1733 Q0 11083485 11 8.495998 Anserini +test1733 Q0 5649585 12 8.472885 Anserini +test1733 Q0 16864433 13 8.465513 Anserini +test1733 Q0 2487014 14 8.396748 Anserini +test1733 Q0 16415238 15 8.323321 Anserini +test1733 Q0 12246360 16 8.323321 Anserini +test1733 Q0 13232886 17 8.314686 Anserini +test1733 Q0 4891134 18 8.314055 Anserini +test1733 Q0 14033835 19 8.293115 Anserini +test1733 Q0 8870449 20 8.245920 Anserini +test1733 Q0 7255157 21 8.241426 Anserini +test1733 Q0 5481361 22 8.210570 Anserini +test1733 Q0 4435765 23 8.206500 Anserini +test1733 Q0 17441040 24 8.174206 Anserini +test1733 Q0 13735080 25 8.153744 Anserini +test1733 Q0 15379288 26 8.153744 Anserini +test1733 Q0 1524762 27 8.152592 Anserini +test1733 Q0 13245243 28 8.138354 Anserini +test1733 Q0 5606805 29 8.136950 Anserini +test1733 Q0 1524764 30 8.127233 Anserini +test1734 Q0 13173143 1 15.433714 Anserini +test1734 Q0 13173144 2 15.433714 Anserini +test1734 Q0 6018839 3 13.994545 Anserini +test1734 Q0 17211767 4 13.423964 Anserini +test1734 Q0 6018929 5 13.211340 Anserini +test1734 Q0 17227697 6 13.035686 Anserini +test1734 Q0 17211762 7 12.941711 Anserini +test1734 Q0 6018961 8 12.886257 Anserini +test1734 Q0 16862917 9 12.882198 Anserini +test1734 Q0 17626166 10 12.882198 Anserini +test1734 Q0 17211764 11 12.612350 Anserini +test1734 Q0 6577571 12 12.594533 Anserini +test1734 Q0 9672960 13 12.537459 Anserini +test1734 Q0 10203522 14 12.537459 Anserini +test1734 Q0 17288451 15 12.524347 Anserini +test1734 Q0 17097538 16 12.476604 Anserini +test1734 Q0 17626171 17 12.476604 Anserini +test1734 Q0 13507378 18 12.136480 Anserini +test1734 Q0 3160140 19 12.091372 Anserini +test1734 Q0 6018949 20 12.020870 Anserini +test1734 Q0 16877873 21 11.915606 Anserini +test1734 Q0 17211768 22 11.915606 Anserini +test1734 Q0 17211766 23 11.833423 Anserini +test1734 Q0 6018966 24 11.773388 Anserini +test1734 Q0 6018942 25 11.773388 Anserini +test1734 Q0 14075424 26 11.752367 Anserini +test1734 Q0 12606195 27 11.752367 Anserini +test1734 Q0 16805073 28 11.684829 Anserini +test1734 Q0 17498686 29 11.684829 Anserini +test1734 Q0 17211763 30 11.597734 Anserini +test1735 Q0 3396356 1 12.753962 Anserini +test1735 Q0 13776945 2 11.918077 Anserini +test1735 Q0 3396385 3 11.915533 Anserini +test1735 Q0 3251042 4 11.691080 Anserini +test1735 Q0 13249833 5 11.635572 Anserini +test1735 Q0 4591945 6 11.608506 Anserini +test1735 Q0 14259461 7 11.572909 Anserini +test1735 Q0 19220230 8 11.513250 Anserini +test1735 Q0 3396383 9 11.437999 Anserini +test1735 Q0 13369029 10 11.407440 Anserini +test1735 Q0 19220227 11 11.388615 Anserini +test1735 Q0 16407935 12 11.244475 Anserini +test1735 Q0 14770008 13 11.180174 Anserini +test1735 Q0 12094367 14 11.082604 Anserini +test1735 Q0 446397 15 10.993529 Anserini +test1735 Q0 19028163 16 10.948803 Anserini +test1735 Q0 974297 17 10.927660 Anserini +test1735 Q0 2934529 18 10.826103 Anserini +test1735 Q0 18112690 19 10.825542 Anserini +test1735 Q0 2503555 20 10.760889 Anserini +test1735 Q0 10518496 21 10.723040 Anserini +test1735 Q0 14368346 22 10.661692 Anserini +test1735 Q0 15992384 23 10.649452 Anserini +test1735 Q0 10034332 24 10.538673 Anserini +test1735 Q0 812910 25 10.498757 Anserini +test1735 Q0 6655792 26 10.494789 Anserini +test1735 Q0 15125350 27 10.429823 Anserini +test1735 Q0 5628923 28 10.388095 Anserini +test1735 Q0 7868265 29 10.350988 Anserini +test1735 Q0 1741457 30 10.331066 Anserini +test1736 Q0 6461021 1 14.038066 Anserini +test1736 Q0 4882278 2 12.695661 Anserini +test1736 Q0 16345464 3 12.575522 Anserini +test1736 Q0 4670817 4 12.503734 Anserini +test1736 Q0 16180872 5 12.246730 Anserini +test1736 Q0 16361802 6 12.151020 Anserini +test1736 Q0 13425179 7 12.068962 Anserini +test1736 Q0 14773465 8 12.023201 Anserini +test1736 Q0 12409168 9 11.988907 Anserini +test1736 Q0 12409169 10 11.871368 Anserini +test1736 Q0 13559022 11 11.826581 Anserini +test1736 Q0 13425181 12 11.776850 Anserini +test1736 Q0 16361806 13 11.751135 Anserini +test1736 Q0 5266215 14 11.741721 Anserini +test1736 Q0 12409160 15 11.695819 Anserini +test1736 Q0 13425182 16 11.635929 Anserini +test1736 Q0 12409162 17 11.623610 Anserini +test1736 Q0 12409124 18 11.620949 Anserini +test1736 Q0 12409163 19 11.519472 Anserini +test1736 Q0 6546170 20 11.468299 Anserini +test1736 Q0 12409173 21 11.447524 Anserini +test1736 Q0 13425171 22 11.433707 Anserini +test1736 Q0 12111056 23 11.395445 Anserini +test1736 Q0 18557236 24 11.395445 Anserini +test1736 Q0 16539713 25 11.355831 Anserini +test1736 Q0 13423387 26 11.315714 Anserini +test1736 Q0 8993289 27 11.285976 Anserini +test1736 Q0 12455511 28 11.256410 Anserini +test1736 Q0 1907123 29 11.243412 Anserini +test1736 Q0 2695450 30 11.165572 Anserini +test1737 Q0 11315554 1 19.750507 Anserini +test1737 Q0 2387180 2 19.107079 Anserini +test1737 Q0 8295459 3 18.544689 Anserini +test1737 Q0 9960521 4 18.481287 Anserini +test1737 Q0 2387158 5 17.962217 Anserini +test1737 Q0 8295455 6 17.910603 Anserini +test1737 Q0 2387155 7 16.142923 Anserini +test1737 Q0 2387151 8 14.299392 Anserini +test1737 Q0 11315550 9 13.975682 Anserini +test1737 Q0 2387156 10 13.861692 Anserini +test1737 Q0 8295453 11 13.782599 Anserini +test1737 Q0 8295468 12 13.731085 Anserini +test1737 Q0 4968131 13 13.718685 Anserini +test1737 Q0 2387185 14 13.709268 Anserini +test1737 Q0 16727618 15 13.574269 Anserini +test1737 Q0 2387176 16 13.537687 Anserini +test1737 Q0 2387183 17 13.296075 Anserini +test1737 Q0 7570445 18 13.294368 Anserini +test1737 Q0 2387177 19 13.077041 Anserini +test1737 Q0 2387148 20 13.008938 Anserini +test1737 Q0 8295467 21 12.836674 Anserini +test1737 Q0 8295466 22 12.759756 Anserini +test1737 Q0 11315555 23 12.664471 Anserini +test1737 Q0 8295461 24 12.646900 Anserini +test1737 Q0 2387181 25 12.516744 Anserini +test1737 Q0 11315551 26 12.516744 Anserini +test1737 Q0 2387182 27 12.355405 Anserini +test1737 Q0 11315553 28 12.338365 Anserini +test1737 Q0 9960517 29 12.293414 Anserini +test1737 Q0 4019445 30 12.214138 Anserini +test1738 Q0 2551393 1 21.179831 Anserini +test1738 Q0 2124603 2 20.763121 Anserini +test1738 Q0 11141539 3 20.306238 Anserini +test1738 Q0 2212612 4 20.273785 Anserini +test1738 Q0 1373898 5 20.220476 Anserini +test1738 Q0 4979115 6 20.212379 Anserini +test1738 Q0 4653127 7 19.768471 Anserini +test1738 Q0 2551344 8 19.747089 Anserini +test1738 Q0 2551358 9 19.594055 Anserini +test1738 Q0 2773392 10 19.553514 Anserini +test1738 Q0 15833780 11 19.418633 Anserini +test1738 Q0 2551433 12 19.134346 Anserini +test1738 Q0 43636 13 19.037264 Anserini +test1738 Q0 11322561 14 18.986700 Anserini +test1738 Q0 11141544 15 18.968277 Anserini +test1738 Q0 1373897 16 18.953005 Anserini +test1738 Q0 15339801 17 18.948458 Anserini +test1738 Q0 2124616 18 18.902205 Anserini +test1738 Q0 15673447 19 18.820017 Anserini +test1738 Q0 1373912 20 18.805517 Anserini +test1738 Q0 13577594 21 18.735075 Anserini +test1738 Q0 1373910 22 18.687729 Anserini +test1738 Q0 11318985 23 18.563513 Anserini +test1738 Q0 20619405 24 18.526964 Anserini +test1738 Q0 7215026 25 18.492844 Anserini +test1738 Q0 1373890 26 18.434658 Anserini +test1738 Q0 4979143 27 18.173805 Anserini +test1738 Q0 18882596 28 18.160362 Anserini +test1738 Q0 2124600 29 17.989010 Anserini +test1738 Q0 12532625 30 17.903795 Anserini +test1739 Q0 6522868 1 10.338028 Anserini +test1739 Q0 3214374 2 9.412783 Anserini +test1739 Q0 3470237 3 9.353960 Anserini +test1739 Q0 20304498 4 9.335277 Anserini +test1739 Q0 20448877 5 9.301401 Anserini +test1739 Q0 14121570 6 9.288133 Anserini +test1739 Q0 5201736 7 9.204091 Anserini +test1739 Q0 4745226 8 9.134742 Anserini +test1739 Q0 6953718 9 9.017521 Anserini +test1739 Q0 11340251 10 8.991251 Anserini +test1739 Q0 10559562 11 8.957648 Anserini +test1739 Q0 3371923 12 8.925991 Anserini +test1739 Q0 8548479 13 8.924654 Anserini +test1739 Q0 13349721 14 8.879053 Anserini +test1739 Q0 5159947 15 8.843307 Anserini +test1739 Q0 9625416 16 8.833165 Anserini +test1739 Q0 8462743 17 8.738247 Anserini +test1739 Q0 6740418 18 8.690001 Anserini +test1739 Q0 13647648 19 8.673861 Anserini +test1739 Q0 18724058 20 8.653821 Anserini +test1739 Q0 7030810 21 8.606806 Anserini +test1739 Q0 18143965 22 8.586283 Anserini +test1739 Q0 7720615 23 8.573431 Anserini +test1739 Q0 3322384 24 8.541587 Anserini +test1739 Q0 2595601 25 8.494570 Anserini +test1739 Q0 4553444 26 8.441527 Anserini +test1739 Q0 255449 27 8.441527 Anserini +test1739 Q0 7082623 28 8.438951 Anserini +test1739 Q0 8081406 29 8.436162 Anserini +test1739 Q0 8548499 30 8.412369 Anserini +test174 Q0 17828140 1 14.074216 Anserini +test174 Q0 19777301 2 13.854462 Anserini +test174 Q0 5507556 3 13.802884 Anserini +test174 Q0 16335970 4 13.622876 Anserini +test174 Q0 16889873 5 13.536226 Anserini +test174 Q0 19777297 6 13.363364 Anserini +test174 Q0 18290669 7 13.221877 Anserini +test174 Q0 19688927 8 13.029016 Anserini +test174 Q0 19328271 9 12.986354 Anserini +test174 Q0 5507576 10 12.894990 Anserini +test174 Q0 16601335 11 12.746096 Anserini +test174 Q0 18290704 12 12.601128 Anserini +test174 Q0 16335792 13 12.507758 Anserini +test174 Q0 20935995 14 12.451688 Anserini +test174 Q0 7275036 15 12.429399 Anserini +test174 Q0 17304451 16 12.405659 Anserini +test174 Q0 15133254 17 12.405659 Anserini +test174 Q0 20467273 18 12.309783 Anserini +test174 Q0 5507559 19 12.309429 Anserini +test174 Q0 2902942 20 12.260322 Anserini +test174 Q0 18290699 21 12.055201 Anserini +test174 Q0 19777287 22 12.045076 Anserini +test174 Q0 16163285 23 12.002403 Anserini +test174 Q0 17813970 24 11.989453 Anserini +test174 Q0 16335927 25 11.903589 Anserini +test174 Q0 15783502 26 11.903589 Anserini +test174 Q0 19093602 27 11.866274 Anserini +test174 Q0 12125019 28 11.808546 Anserini +test174 Q0 19785574 29 11.801080 Anserini +test174 Q0 19093600 30 11.792425 Anserini +test1740 Q0 276015 1 23.163443 Anserini +test1740 Q0 7186049 2 21.848703 Anserini +test1740 Q0 512813 3 21.392183 Anserini +test1740 Q0 348038 4 21.325493 Anserini +test1740 Q0 519089 5 20.868156 Anserini +test1740 Q0 1600608 6 20.523340 Anserini +test1740 Q0 7710080 7 20.464590 Anserini +test1740 Q0 5216512 8 20.374443 Anserini +test1740 Q0 196304 9 20.344542 Anserini +test1740 Q0 108796 10 20.297264 Anserini +test1740 Q0 4047958 11 20.070786 Anserini +test1740 Q0 2125074 12 20.002815 Anserini +test1740 Q0 976970 13 19.905991 Anserini +test1740 Q0 10032344 14 19.904156 Anserini +test1740 Q0 9781869 15 19.887142 Anserini +test1740 Q0 2603776 16 19.851759 Anserini +test1740 Q0 1600609 17 19.851686 Anserini +test1740 Q0 590166 18 19.834188 Anserini +test1740 Q0 1325475 19 19.800465 Anserini +test1740 Q0 5399972 20 19.730152 Anserini +test1740 Q0 3826201 21 19.485249 Anserini +test1740 Q0 6743730 22 19.479040 Anserini +test1740 Q0 10486002 23 19.342991 Anserini +test1740 Q0 6056776 24 19.257078 Anserini +test1740 Q0 9175696 25 18.864574 Anserini +test1740 Q0 494441 26 18.840864 Anserini +test1740 Q0 201449 27 18.817461 Anserini +test1740 Q0 6179054 28 18.743364 Anserini +test1740 Q0 10032345 29 18.649794 Anserini +test1740 Q0 5399977 30 18.648006 Anserini +test1741 Q0 1213768 1 16.496302 Anserini +test1741 Q0 1213785 2 16.417059 Anserini +test1741 Q0 3833167 3 15.903971 Anserini +test1741 Q0 1213778 4 15.152235 Anserini +test1741 Q0 15748681 5 14.556726 Anserini +test1741 Q0 1213772 6 14.543712 Anserini +test1741 Q0 1213783 7 14.522323 Anserini +test1741 Q0 3390657 8 14.081808 Anserini +test1741 Q0 1213781 9 13.874155 Anserini +test1741 Q0 523093 10 13.796931 Anserini +test1741 Q0 9835631 11 13.665343 Anserini +test1741 Q0 1213769 12 13.535522 Anserini +test1741 Q0 2546785 13 13.499182 Anserini +test1741 Q0 2546845 14 13.462704 Anserini +test1741 Q0 2396997 15 13.438748 Anserini +test1741 Q0 9508930 16 13.425260 Anserini +test1741 Q0 470006 17 13.362274 Anserini +test1741 Q0 9001720 18 13.237530 Anserini +test1741 Q0 1754772 19 13.215965 Anserini +test1741 Q0 11985655 20 13.167247 Anserini +test1741 Q0 6973653 21 13.144301 Anserini +test1741 Q0 1857238 22 13.092082 Anserini +test1741 Q0 341099 23 13.016484 Anserini +test1741 Q0 3786781 24 13.004160 Anserini +test1741 Q0 2260408 25 12.851466 Anserini +test1741 Q0 16804484 26 12.851466 Anserini +test1741 Q0 19195635 27 12.851417 Anserini +test1741 Q0 2876258 28 12.846696 Anserini +test1741 Q0 1054358 29 12.780865 Anserini +test1741 Q0 15456992 30 12.780865 Anserini +test1742 Q0 19691268 1 8.752682 Anserini +test1742 Q0 13497967 2 8.413324 Anserini +test1742 Q0 14833505 3 8.185380 Anserini +test1742 Q0 8955194 4 7.917540 Anserini +test1742 Q0 5955391 5 7.841484 Anserini +test1742 Q0 18913028 6 7.621568 Anserini +test1742 Q0 5499387 7 7.602425 Anserini +test1742 Q0 4757663 8 7.570978 Anserini +test1742 Q0 14550953 9 7.487617 Anserini +test1742 Q0 5499389 10 7.361487 Anserini +test1742 Q0 5137019 11 7.342949 Anserini +test1742 Q0 660270 12 7.327953 Anserini +test1742 Q0 3406845 13 7.258253 Anserini +test1742 Q0 4757671 14 7.186076 Anserini +test1742 Q0 660261 15 7.155112 Anserini +test1742 Q0 19530736 16 7.153740 Anserini +test1742 Q0 14550956 17 7.061657 Anserini +test1742 Q0 20358622 18 7.040762 Anserini +test1742 Q0 18136410 19 7.040762 Anserini +test1742 Q0 4514625 20 7.029113 Anserini +test1742 Q0 9742605 21 7.027945 Anserini +test1742 Q0 11228635 22 7.027945 Anserini +test1742 Q0 14550954 23 7.027945 Anserini +test1742 Q0 5337312 24 6.994046 Anserini +test1742 Q0 4751298 25 6.986650 Anserini +test1742 Q0 2280978 26 6.973441 Anserini +test1742 Q0 10682016 27 6.935658 Anserini +test1742 Q0 8316193 28 6.932072 Anserini +test1742 Q0 1944244 29 6.932072 Anserini +test1742 Q0 4757664 30 6.919780 Anserini +test1743 Q0 4132951 1 9.810367 Anserini +test1743 Q0 2129169 2 9.591312 Anserini +test1743 Q0 14243102 3 9.505508 Anserini +test1743 Q0 14257127 4 9.499721 Anserini +test1743 Q0 12866245 5 9.475881 Anserini +test1743 Q0 4824080 6 9.447033 Anserini +test1743 Q0 14257125 7 9.397299 Anserini +test1743 Q0 20979100 8 9.348778 Anserini +test1743 Q0 6559238 9 9.313808 Anserini +test1743 Q0 289394 10 9.176680 Anserini +test1743 Q0 9333979 11 9.095989 Anserini +test1743 Q0 5939459 12 9.042154 Anserini +test1743 Q0 18376767 13 8.951560 Anserini +test1743 Q0 5078099 14 8.708483 Anserini +test1743 Q0 7045922 15 8.686474 Anserini +test1743 Q0 4543660 16 8.680646 Anserini +test1743 Q0 2083176 17 8.678600 Anserini +test1743 Q0 1424157 18 8.670753 Anserini +test1743 Q0 5400573 19 8.646382 Anserini +test1743 Q0 1540553 20 8.606140 Anserini +test1743 Q0 2714978 21 8.604464 Anserini +test1743 Q0 10386092 22 8.549895 Anserini +test1743 Q0 16945946 23 8.453276 Anserini +test1743 Q0 16698128 24 8.453223 Anserini +test1743 Q0 7552110 25 8.446717 Anserini +test1743 Q0 17981285 26 8.438729 Anserini +test1743 Q0 2517416 27 8.430986 Anserini +test1743 Q0 7050645 28 8.423739 Anserini +test1743 Q0 20541829 29 8.416166 Anserini +test1743 Q0 5224511 30 8.416166 Anserini +test1744 Q0 9786 1 14.915108 Anserini +test1744 Q0 9770 2 14.606454 Anserini +test1744 Q0 428187 3 13.351089 Anserini +test1744 Q0 428038 4 13.225270 Anserini +test1744 Q0 9778 5 12.978511 Anserini +test1744 Q0 428340 6 12.776211 Anserini +test1744 Q0 6003977 7 12.416455 Anserini +test1744 Q0 11812949 8 12.415889 Anserini +test1744 Q0 494136 9 12.363751 Anserini +test1744 Q0 5999230 10 12.298688 Anserini +test1744 Q0 12503522 11 12.160692 Anserini +test1744 Q0 428195 12 11.919489 Anserini +test1744 Q0 15625262 13 11.814002 Anserini +test1744 Q0 3033295 14 11.721728 Anserini +test1744 Q0 14343658 15 11.705413 Anserini +test1744 Q0 6726334 16 11.696429 Anserini +test1744 Q0 14343659 17 11.692180 Anserini +test1744 Q0 6149755 18 11.646497 Anserini +test1744 Q0 1971583 19 11.562518 Anserini +test1744 Q0 19948420 20 11.391856 Anserini +test1744 Q0 18133653 21 11.332169 Anserini +test1744 Q0 512468 22 11.325846 Anserini +test1744 Q0 19459073 23 11.313906 Anserini +test1744 Q0 2628647 24 11.256924 Anserini +test1744 Q0 14215151 25 11.220614 Anserini +test1744 Q0 512471 26 11.160720 Anserini +test1744 Q0 6003777 27 11.145884 Anserini +test1744 Q0 19948412 28 11.130239 Anserini +test1744 Q0 427808 29 11.095145 Anserini +test1744 Q0 13102583 30 11.049195 Anserini +test1745 Q0 8359911 1 9.073747 Anserini +test1745 Q0 13813442 2 8.982049 Anserini +test1745 Q0 8761450 3 8.900306 Anserini +test1745 Q0 5123744 4 8.888933 Anserini +test1745 Q0 18729412 5 8.881798 Anserini +test1745 Q0 1518672 6 8.876469 Anserini +test1745 Q0 4511789 7 8.804305 Anserini +test1745 Q0 5397672 8 8.793590 Anserini +test1745 Q0 2629366 9 8.784315 Anserini +test1745 Q0 14039528 10 8.748877 Anserini +test1745 Q0 6135095 11 8.686941 Anserini +test1745 Q0 20315999 12 8.651402 Anserini +test1745 Q0 1935535 13 8.621841 Anserini +test1745 Q0 20755399 14 8.618364 Anserini +test1745 Q0 9362185 15 8.576205 Anserini +test1745 Q0 4673971 16 8.563061 Anserini +test1745 Q0 13733336 17 8.554669 Anserini +test1745 Q0 5542952 18 8.495331 Anserini +test1745 Q0 10392023 19 8.478448 Anserini +test1745 Q0 17740568 20 8.472643 Anserini +test1745 Q0 7158075 21 8.426772 Anserini +test1745 Q0 3697448 22 8.423360 Anserini +test1745 Q0 13813430 23 8.414742 Anserini +test1745 Q0 17740566 24 8.404142 Anserini +test1745 Q0 10978777 25 8.399944 Anserini +test1745 Q0 10193292 26 8.387468 Anserini +test1745 Q0 9471827 27 8.345345 Anserini +test1745 Q0 21523 28 8.320173 Anserini +test1745 Q0 12885065 29 8.298610 Anserini +test1745 Q0 12721462 30 8.280781 Anserini +test1746 Q0 13189263 1 22.844959 Anserini +test1746 Q0 13189267 2 22.773544 Anserini +test1746 Q0 21012742 3 20.261436 Anserini +test1746 Q0 4325313 4 19.727171 Anserini +test1746 Q0 13189264 5 17.450426 Anserini +test1746 Q0 13189266 6 17.350746 Anserini +test1746 Q0 721681 7 17.280001 Anserini +test1746 Q0 13189265 8 17.195631 Anserini +test1746 Q0 721706 9 16.671936 Anserini +test1746 Q0 721705 10 16.371504 Anserini +test1746 Q0 2658843 11 15.625805 Anserini +test1746 Q0 15062305 12 15.387171 Anserini +test1746 Q0 14115465 13 14.526666 Anserini +test1746 Q0 95505 14 14.046276 Anserini +test1746 Q0 11173663 15 14.043280 Anserini +test1746 Q0 13962626 16 13.734322 Anserini +test1746 Q0 14107547 17 13.667256 Anserini +test1746 Q0 3305139 18 13.448814 Anserini +test1746 Q0 681651 19 13.338332 Anserini +test1746 Q0 285481 20 13.207236 Anserini +test1746 Q0 9039552 21 12.851051 Anserini +test1746 Q0 11846181 22 12.684817 Anserini +test1746 Q0 14115464 23 12.604276 Anserini +test1746 Q0 9039556 24 12.601931 Anserini +test1746 Q0 721707 25 12.526121 Anserini +test1746 Q0 6627578 26 12.442154 Anserini +test1746 Q0 20994490 27 12.356092 Anserini +test1746 Q0 8149168 28 12.321478 Anserini +test1746 Q0 14102538 29 12.321478 Anserini +test1746 Q0 10863856 30 12.282671 Anserini +test1747 Q0 15015010 1 14.421461 Anserini +test1747 Q0 11408718 2 13.048683 Anserini +test1747 Q0 1000411 3 12.674436 Anserini +test1747 Q0 11408702 4 12.040161 Anserini +test1747 Q0 1000410 5 11.391712 Anserini +test1747 Q0 3104594 6 11.138618 Anserini +test1747 Q0 11408717 7 11.102541 Anserini +test1747 Q0 14038405 8 11.025434 Anserini +test1747 Q0 5758620 9 10.911801 Anserini +test1747 Q0 5835408 10 10.911801 Anserini +test1747 Q0 3247949 11 10.857168 Anserini +test1747 Q0 11408722 12 10.855532 Anserini +test1747 Q0 1088765 13 10.804498 Anserini +test1747 Q0 5835403 14 10.741027 Anserini +test1747 Q0 11408716 15 10.679467 Anserini +test1747 Q0 12093317 16 10.596988 Anserini +test1747 Q0 10262229 17 10.414599 Anserini +test1747 Q0 14038403 18 10.338099 Anserini +test1747 Q0 1000405 19 10.327244 Anserini +test1747 Q0 11408720 20 10.292601 Anserini +test1747 Q0 10557416 21 10.292601 Anserini +test1747 Q0 11408704 22 10.221840 Anserini +test1747 Q0 15692999 23 10.146935 Anserini +test1747 Q0 15692995 24 10.145305 Anserini +test1747 Q0 11408719 25 10.009607 Anserini +test1747 Q0 15692994 26 9.955661 Anserini +test1747 Q0 15692997 27 9.882837 Anserini +test1747 Q0 5194701 28 9.822808 Anserini +test1747 Q0 5194703 29 9.822808 Anserini +test1747 Q0 12177639 30 9.789681 Anserini +test1748 Q0 742614 1 27.321568 Anserini +test1748 Q0 200519 2 27.274536 Anserini +test1748 Q0 520360 3 26.533234 Anserini +test1748 Q0 200500 4 26.430260 Anserini +test1748 Q0 200502 5 25.822628 Anserini +test1748 Q0 520361 6 25.771364 Anserini +test1748 Q0 3833833 7 24.566387 Anserini +test1748 Q0 200498 8 24.552660 Anserini +test1748 Q0 200523 9 23.606977 Anserini +test1748 Q0 200497 10 22.606268 Anserini +test1748 Q0 724679 11 22.199917 Anserini +test1748 Q0 200516 12 22.159351 Anserini +test1748 Q0 5760908 13 21.609249 Anserini +test1748 Q0 3833835 14 21.436136 Anserini +test1748 Q0 200528 15 21.096241 Anserini +test1748 Q0 488455 16 21.025145 Anserini +test1748 Q0 520359 17 20.911926 Anserini +test1748 Q0 2047843 18 20.701796 Anserini +test1748 Q0 18217332 19 20.455856 Anserini +test1748 Q0 12628399 20 20.416527 Anserini +test1748 Q0 200521 21 20.117220 Anserini +test1748 Q0 2658916 22 19.874563 Anserini +test1748 Q0 200501 23 19.733133 Anserini +test1748 Q0 2658919 24 19.718925 Anserini +test1748 Q0 17311835 25 19.569109 Anserini +test1748 Q0 200495 26 19.355576 Anserini +test1748 Q0 323353 27 19.275417 Anserini +test1748 Q0 538753 28 19.188725 Anserini +test1748 Q0 488454 29 19.188725 Anserini +test1748 Q0 2798364 30 19.173687 Anserini +test1749 Q0 953550 1 16.646103 Anserini +test1749 Q0 15243332 2 16.298660 Anserini +test1749 Q0 11251840 3 14.651401 Anserini +test1749 Q0 9950292 4 14.362320 Anserini +test1749 Q0 1695251 5 14.352613 Anserini +test1749 Q0 231236 6 14.341516 Anserini +test1749 Q0 2897692 7 14.324654 Anserini +test1749 Q0 2897672 8 14.319052 Anserini +test1749 Q0 1451986 9 14.247130 Anserini +test1749 Q0 7477541 10 14.247130 Anserini +test1749 Q0 11181159 11 14.247130 Anserini +test1749 Q0 11146146 12 14.065265 Anserini +test1749 Q0 2967927 13 13.969157 Anserini +test1749 Q0 6992891 14 13.859915 Anserini +test1749 Q0 11251839 15 13.454443 Anserini +test1749 Q0 8076922 16 13.230067 Anserini +test1749 Q0 499513 17 13.121359 Anserini +test1749 Q0 15727787 18 13.008198 Anserini +test1749 Q0 11074298 19 13.008198 Anserini +test1749 Q0 733811 20 12.911581 Anserini +test1749 Q0 7120719 21 12.911581 Anserini +test1749 Q0 20487896 22 12.902620 Anserini +test1749 Q0 15822219 23 12.898781 Anserini +test1749 Q0 10151527 24 12.791366 Anserini +test1749 Q0 7120729 25 12.681749 Anserini +test1749 Q0 2975995 26 12.668219 Anserini +test1749 Q0 9840395 27 12.668026 Anserini +test1749 Q0 9840397 28 12.668026 Anserini +test1749 Q0 12243503 29 12.606043 Anserini +test1749 Q0 4122872 30 12.570122 Anserini +test175 Q0 5752475 1 11.984547 Anserini +test175 Q0 16285714 2 11.882514 Anserini +test175 Q0 2727583 3 11.538892 Anserini +test175 Q0 5752498 4 11.472936 Anserini +test175 Q0 16285715 5 11.406157 Anserini +test175 Q0 16285707 6 11.345821 Anserini +test175 Q0 9137451 7 11.017492 Anserini +test175 Q0 16285712 8 10.722162 Anserini +test175 Q0 5752486 9 10.640793 Anserini +test175 Q0 16285713 10 10.360040 Anserini +test175 Q0 5123973 11 10.283032 Anserini +test175 Q0 6835060 12 10.076242 Anserini +test175 Q0 1597677 13 10.037984 Anserini +test175 Q0 4598637 14 9.989435 Anserini +test175 Q0 5752482 15 9.938054 Anserini +test175 Q0 5752479 16 9.801836 Anserini +test175 Q0 6977807 17 9.676494 Anserini +test175 Q0 12491453 18 9.639875 Anserini +test175 Q0 8678674 19 9.446670 Anserini +test175 Q0 6353876 20 9.433167 Anserini +test175 Q0 11411179 21 9.406869 Anserini +test175 Q0 11411177 22 9.406869 Anserini +test175 Q0 9662373 23 9.319507 Anserini +test175 Q0 3562139 24 9.300995 Anserini +test175 Q0 19808972 25 9.210262 Anserini +test175 Q0 15519992 26 9.123547 Anserini +test175 Q0 2345073 27 9.087186 Anserini +test175 Q0 19361677 28 8.996283 Anserini +test175 Q0 19361679 29 8.996283 Anserini +test175 Q0 19808971 30 8.996163 Anserini +test1750 Q0 15148088 1 17.760132 Anserini +test1750 Q0 15148089 2 17.383680 Anserini +test1750 Q0 871541 3 17.320404 Anserini +test1750 Q0 17361115 4 17.180931 Anserini +test1750 Q0 17361119 5 17.129684 Anserini +test1750 Q0 12766240 6 17.055285 Anserini +test1750 Q0 15148091 7 16.989391 Anserini +test1750 Q0 20269018 8 16.859386 Anserini +test1750 Q0 2305455 9 16.722826 Anserini +test1750 Q0 2261690 10 16.611645 Anserini +test1750 Q0 20269020 11 16.577427 Anserini +test1750 Q0 871556 12 16.204542 Anserini +test1750 Q0 6549204 13 15.918038 Anserini +test1750 Q0 871520 14 15.581133 Anserini +test1750 Q0 871545 15 15.563349 Anserini +test1750 Q0 871518 16 15.551372 Anserini +test1750 Q0 871519 17 15.506502 Anserini +test1750 Q0 871553 18 15.400276 Anserini +test1750 Q0 10918373 19 15.352087 Anserini +test1750 Q0 9829740 20 15.338914 Anserini +test1750 Q0 19323738 21 15.317807 Anserini +test1750 Q0 5250008 22 15.271345 Anserini +test1750 Q0 12092996 23 15.260893 Anserini +test1750 Q0 19323739 24 15.254934 Anserini +test1750 Q0 2305442 25 15.160427 Anserini +test1750 Q0 20269019 26 15.117463 Anserini +test1750 Q0 14874315 27 15.048535 Anserini +test1750 Q0 12191371 28 15.037285 Anserini +test1750 Q0 6549208 29 15.024438 Anserini +test1750 Q0 10918365 30 15.024438 Anserini +test1751 Q0 13882089 1 20.830572 Anserini +test1751 Q0 18032520 2 19.985603 Anserini +test1751 Q0 3366362 3 19.628098 Anserini +test1751 Q0 19885680 4 19.467907 Anserini +test1751 Q0 4819470 5 19.408079 Anserini +test1751 Q0 3461828 6 19.401297 Anserini +test1751 Q0 19089429 7 19.349384 Anserini +test1751 Q0 19089430 8 19.349384 Anserini +test1751 Q0 19885682 9 19.335932 Anserini +test1751 Q0 13473272 10 19.273521 Anserini +test1751 Q0 2258967 11 19.157784 Anserini +test1751 Q0 13545494 12 19.130560 Anserini +test1751 Q0 16991296 13 19.122816 Anserini +test1751 Q0 18736824 14 19.113350 Anserini +test1751 Q0 10028349 15 19.095497 Anserini +test1751 Q0 5944348 16 19.074541 Anserini +test1751 Q0 19366784 17 19.065615 Anserini +test1751 Q0 2626116 18 19.043150 Anserini +test1751 Q0 17963734 19 19.029842 Anserini +test1751 Q0 7670363 20 19.015110 Anserini +test1751 Q0 17018954 21 19.003820 Anserini +test1751 Q0 433265 22 18.995485 Anserini +test1751 Q0 12198905 23 18.964794 Anserini +test1751 Q0 10028348 24 18.964302 Anserini +test1751 Q0 5551718 25 18.954252 Anserini +test1751 Q0 7551278 26 18.951975 Anserini +test1751 Q0 20886772 27 18.892960 Anserini +test1751 Q0 2626114 28 18.851944 Anserini +test1751 Q0 19945409 29 18.793398 Anserini +test1751 Q0 6741878 30 18.792952 Anserini +test1752 Q0 3458490 1 12.762117 Anserini +test1752 Q0 3458507 2 12.543149 Anserini +test1752 Q0 11036931 3 12.285830 Anserini +test1752 Q0 9109992 4 11.250420 Anserini +test1752 Q0 11131202 5 11.218324 Anserini +test1752 Q0 11131210 6 10.987853 Anserini +test1752 Q0 8184017 7 10.932461 Anserini +test1752 Q0 408293 8 10.724690 Anserini +test1752 Q0 8464447 9 10.644070 Anserini +test1752 Q0 10457793 10 10.594433 Anserini +test1752 Q0 9766257 11 10.499665 Anserini +test1752 Q0 11131206 12 10.366583 Anserini +test1752 Q0 11131205 13 10.227226 Anserini +test1752 Q0 801169 14 10.118172 Anserini +test1752 Q0 19525300 15 10.062149 Anserini +test1752 Q0 3458501 16 10.052055 Anserini +test1752 Q0 203165 17 10.051758 Anserini +test1752 Q0 801147 18 10.036484 Anserini +test1752 Q0 11131207 19 9.938963 Anserini +test1752 Q0 801164 20 9.903820 Anserini +test1752 Q0 8664945 21 9.892136 Anserini +test1752 Q0 17033666 22 9.710257 Anserini +test1752 Q0 13269774 23 9.696030 Anserini +test1752 Q0 1954015 24 9.631535 Anserini +test1752 Q0 5848782 25 9.580665 Anserini +test1752 Q0 801155 26 9.520106 Anserini +test1752 Q0 14351116 27 9.453258 Anserini +test1752 Q0 398778 28 9.453258 Anserini +test1752 Q0 14652385 29 9.378469 Anserini +test1752 Q0 2531678 30 9.338976 Anserini +test1753 Q0 19726464 1 19.292749 Anserini +test1753 Q0 19726460 2 18.253885 Anserini +test1753 Q0 10709325 3 16.988628 Anserini +test1753 Q0 20942322 4 16.442390 Anserini +test1753 Q0 8789641 5 16.222277 Anserini +test1753 Q0 8146808 6 16.163000 Anserini +test1753 Q0 159826 7 15.736464 Anserini +test1753 Q0 8146809 8 15.732615 Anserini +test1753 Q0 12421235 9 15.420328 Anserini +test1753 Q0 11257890 10 15.323811 Anserini +test1753 Q0 18366831 11 15.230494 Anserini +test1753 Q0 7580984 12 15.222450 Anserini +test1753 Q0 18366822 13 15.152782 Anserini +test1753 Q0 15888367 14 15.152782 Anserini +test1753 Q0 19945093 15 15.147979 Anserini +test1753 Q0 15888371 16 15.075858 Anserini +test1753 Q0 16441913 17 15.024772 Anserini +test1753 Q0 10906661 18 14.993526 Anserini +test1753 Q0 17521550 19 14.927717 Anserini +test1753 Q0 5056908 20 14.874372 Anserini +test1753 Q0 11748633 21 14.816706 Anserini +test1753 Q0 15888368 22 14.701363 Anserini +test1753 Q0 15372069 23 14.683517 Anserini +test1753 Q0 16629886 24 14.622152 Anserini +test1753 Q0 18339915 25 14.586131 Anserini +test1753 Q0 6252820 26 14.442637 Anserini +test1753 Q0 18877988 27 14.415907 Anserini +test1753 Q0 2101555 28 14.370690 Anserini +test1753 Q0 18328290 29 14.286384 Anserini +test1753 Q0 13351132 30 14.280269 Anserini +test1754 Q0 4520356 1 12.760009 Anserini +test1754 Q0 20847174 2 12.460117 Anserini +test1754 Q0 8459385 3 11.940882 Anserini +test1754 Q0 17336350 4 11.768148 Anserini +test1754 Q0 3093312 5 11.607272 Anserini +test1754 Q0 8954606 6 11.548804 Anserini +test1754 Q0 8954609 7 11.483835 Anserini +test1754 Q0 13270523 8 11.423660 Anserini +test1754 Q0 15199649 9 11.358284 Anserini +test1754 Q0 18600324 10 11.290878 Anserini +test1754 Q0 8459365 11 11.276265 Anserini +test1754 Q0 8134111 12 11.268513 Anserini +test1754 Q0 8134122 13 11.268513 Anserini +test1754 Q0 5258895 14 11.211376 Anserini +test1754 Q0 12681788 15 11.167152 Anserini +test1754 Q0 5990344 16 11.149882 Anserini +test1754 Q0 8459372 17 11.134548 Anserini +test1754 Q0 5258892 18 11.128939 Anserini +test1754 Q0 16129412 19 11.117719 Anserini +test1754 Q0 13270522 20 11.112446 Anserini +test1754 Q0 15337365 21 11.086788 Anserini +test1754 Q0 11497011 22 11.062944 Anserini +test1754 Q0 17336347 23 10.979817 Anserini +test1754 Q0 9821118 24 10.961588 Anserini +test1754 Q0 7452824 25 10.940612 Anserini +test1754 Q0 11137700 26 10.883945 Anserini +test1754 Q0 16409545 27 10.808814 Anserini +test1754 Q0 16409547 28 10.808814 Anserini +test1754 Q0 5258889 29 10.804849 Anserini +test1754 Q0 16550349 30 10.742424 Anserini +test1755 Q0 19015249 1 20.914444 Anserini +test1755 Q0 16365555 2 20.725327 Anserini +test1755 Q0 2717896 3 20.655727 Anserini +test1755 Q0 2717893 4 20.350447 Anserini +test1755 Q0 10851069 5 20.008984 Anserini +test1755 Q0 112529 6 19.934093 Anserini +test1755 Q0 10261247 7 19.581629 Anserini +test1755 Q0 10261236 8 19.455683 Anserini +test1755 Q0 16959105 9 19.245344 Anserini +test1755 Q0 112525 10 19.231871 Anserini +test1755 Q0 2717894 11 19.161116 Anserini +test1755 Q0 4301874 12 18.996101 Anserini +test1755 Q0 9835242 13 18.930393 Anserini +test1755 Q0 14900300 14 18.900547 Anserini +test1755 Q0 14900301 15 18.900547 Anserini +test1755 Q0 9835935 16 18.854122 Anserini +test1755 Q0 319034 17 18.728922 Anserini +test1755 Q0 319021 18 18.728922 Anserini +test1755 Q0 9314606 19 18.592665 Anserini +test1755 Q0 16151286 20 18.580339 Anserini +test1755 Q0 2754304 21 18.515081 Anserini +test1755 Q0 12459975 22 18.465839 Anserini +test1755 Q0 2748569 23 18.432196 Anserini +test1755 Q0 7766400 24 18.404581 Anserini +test1755 Q0 1787583 25 18.284433 Anserini +test1755 Q0 4008730 26 18.274729 Anserini +test1755 Q0 89999 27 18.271641 Anserini +test1755 Q0 7285185 28 18.245090 Anserini +test1755 Q0 9835975 29 18.194510 Anserini +test1755 Q0 10454860 30 18.188250 Anserini +test1756 Q0 8538773 1 21.658657 Anserini +test1756 Q0 8160259 2 21.222038 Anserini +test1756 Q0 4614344 3 19.153711 Anserini +test1756 Q0 676751 4 19.042871 Anserini +test1756 Q0 9652334 5 18.787453 Anserini +test1756 Q0 12903638 6 18.754646 Anserini +test1756 Q0 8498626 7 17.785706 Anserini +test1756 Q0 676762 8 17.621841 Anserini +test1756 Q0 8160261 9 17.475899 Anserini +test1756 Q0 11846241 10 17.318197 Anserini +test1756 Q0 6552019 11 17.137785 Anserini +test1756 Q0 676785 12 16.769209 Anserini +test1756 Q0 6921740 13 16.715765 Anserini +test1756 Q0 2074245 14 16.537924 Anserini +test1756 Q0 6552017 15 16.537924 Anserini +test1756 Q0 4464672 16 16.363831 Anserini +test1756 Q0 8558013 17 16.363831 Anserini +test1756 Q0 7579477 18 16.363831 Anserini +test1756 Q0 8538770 19 16.363831 Anserini +test1756 Q0 5993915 20 16.363831 Anserini +test1756 Q0 13061154 21 16.193361 Anserini +test1756 Q0 7050300 22 16.193361 Anserini +test1756 Q0 18347047 23 16.193361 Anserini +test1756 Q0 8160260 24 15.712936 Anserini +test1756 Q0 676730 25 14.888365 Anserini +test1756 Q0 15630129 26 14.778486 Anserini +test1756 Q0 8558012 27 14.653772 Anserini +test1756 Q0 1377916 28 14.523479 Anserini +test1756 Q0 9896024 29 14.376530 Anserini +test1756 Q0 2079102 30 14.304272 Anserini +test1757 Q0 9625852 1 11.241887 Anserini +test1757 Q0 14798792 2 11.215080 Anserini +test1757 Q0 6155554 3 10.831196 Anserini +test1757 Q0 16926121 4 10.746816 Anserini +test1757 Q0 14797484 5 10.526916 Anserini +test1757 Q0 14797857 6 10.306327 Anserini +test1757 Q0 19624354 7 10.266588 Anserini +test1757 Q0 14797477 8 10.257726 Anserini +test1757 Q0 14800930 9 10.252204 Anserini +test1757 Q0 9768052 10 10.112270 Anserini +test1757 Q0 14797479 11 10.090652 Anserini +test1757 Q0 14540505 12 9.974402 Anserini +test1757 Q0 14801153 13 9.934729 Anserini +test1757 Q0 14335643 14 9.852695 Anserini +test1757 Q0 10315736 15 9.838881 Anserini +test1757 Q0 9768072 16 9.800932 Anserini +test1757 Q0 14800923 17 9.748529 Anserini +test1757 Q0 14800931 18 9.748529 Anserini +test1757 Q0 6740940 19 9.721857 Anserini +test1757 Q0 7374805 20 9.720635 Anserini +test1757 Q0 2775282 21 9.687891 Anserini +test1757 Q0 14798795 22 9.674829 Anserini +test1757 Q0 9392770 23 9.616186 Anserini +test1757 Q0 8001724 24 9.538507 Anserini +test1757 Q0 828951 25 9.535802 Anserini +test1757 Q0 18953338 26 9.523943 Anserini +test1757 Q0 7425525 27 9.484528 Anserini +test1757 Q0 11106338 28 9.408314 Anserini +test1757 Q0 13998880 29 9.408314 Anserini +test1757 Q0 13942401 30 9.371647 Anserini +test1758 Q0 8246679 1 19.711807 Anserini +test1758 Q0 3939689 2 18.538746 Anserini +test1758 Q0 4823003 3 18.222160 Anserini +test1758 Q0 8201693 4 17.966515 Anserini +test1758 Q0 10647190 5 17.761383 Anserini +test1758 Q0 17246440 6 17.745825 Anserini +test1758 Q0 17246443 7 17.745825 Anserini +test1758 Q0 4822995 8 17.642456 Anserini +test1758 Q0 2284435 9 17.039021 Anserini +test1758 Q0 4822997 10 16.972462 Anserini +test1758 Q0 715373 11 16.825844 Anserini +test1758 Q0 2284436 12 16.723946 Anserini +test1758 Q0 9508677 13 16.674580 Anserini +test1758 Q0 15459007 14 16.654814 Anserini +test1758 Q0 15459010 15 16.620031 Anserini +test1758 Q0 715384 16 16.620031 Anserini +test1758 Q0 7697019 17 16.616859 Anserini +test1758 Q0 10647197 18 16.485420 Anserini +test1758 Q0 5279003 19 16.476833 Anserini +test1758 Q0 7542286 20 16.464622 Anserini +test1758 Q0 4822999 21 16.464622 Anserini +test1758 Q0 4823000 22 16.413910 Anserini +test1758 Q0 17932703 23 16.360868 Anserini +test1758 Q0 7658915 24 16.276064 Anserini +test1758 Q0 7731878 25 16.248089 Anserini +test1758 Q0 7542276 26 16.245522 Anserini +test1758 Q0 2754091 27 16.205460 Anserini +test1758 Q0 17971492 28 16.205460 Anserini +test1758 Q0 4822998 29 16.201305 Anserini +test1758 Q0 7542277 30 16.191500 Anserini +test1759 Q0 19661071 1 17.792162 Anserini +test1759 Q0 18421976 2 14.688701 Anserini +test1759 Q0 19661073 3 14.249290 Anserini +test1759 Q0 19661074 4 14.049212 Anserini +test1759 Q0 15913372 5 13.857277 Anserini +test1759 Q0 20005568 6 13.726347 Anserini +test1759 Q0 13552261 7 13.596169 Anserini +test1759 Q0 19661075 8 13.154364 Anserini +test1759 Q0 19661078 9 13.009382 Anserini +test1759 Q0 19661076 10 12.903847 Anserini +test1759 Q0 5842016 11 12.830629 Anserini +test1759 Q0 15913370 12 12.797042 Anserini +test1759 Q0 4788310 13 12.788714 Anserini +test1759 Q0 19661072 14 12.726396 Anserini +test1759 Q0 13552260 15 12.565172 Anserini +test1759 Q0 14079179 16 12.510077 Anserini +test1759 Q0 12718269 17 12.446997 Anserini +test1759 Q0 17084128 18 12.417240 Anserini +test1759 Q0 7778419 19 12.398958 Anserini +test1759 Q0 17139592 20 12.366269 Anserini +test1759 Q0 15471221 21 12.356388 Anserini +test1759 Q0 708677 22 12.313903 Anserini +test1759 Q0 17139583 23 12.308643 Anserini +test1759 Q0 9959636 24 12.291265 Anserini +test1759 Q0 9015661 25 12.244454 Anserini +test1759 Q0 18940984 26 12.239148 Anserini +test1759 Q0 14284974 27 12.153568 Anserini +test1759 Q0 7374625 28 12.124996 Anserini +test1759 Q0 8850558 29 12.101188 Anserini +test1759 Q0 12383475 30 12.100599 Anserini +test176 Q0 12077117 1 15.611827 Anserini +test176 Q0 12077123 2 15.378275 Anserini +test176 Q0 4735770 3 15.232211 Anserini +test176 Q0 12077127 4 14.969872 Anserini +test176 Q0 7361453 5 14.794933 Anserini +test176 Q0 12077120 6 14.684118 Anserini +test176 Q0 12077124 7 14.251176 Anserini +test176 Q0 12077119 8 14.237178 Anserini +test176 Q0 13678507 9 14.181497 Anserini +test176 Q0 12077116 10 14.132634 Anserini +test176 Q0 12186126 11 13.955338 Anserini +test176 Q0 12186129 12 13.955338 Anserini +test176 Q0 12077122 13 13.947666 Anserini +test176 Q0 6506040 14 13.942867 Anserini +test176 Q0 12186127 15 13.684820 Anserini +test176 Q0 12077132 16 13.493196 Anserini +test176 Q0 12077114 17 13.372128 Anserini +test176 Q0 12077118 18 13.211960 Anserini +test176 Q0 12077144 19 13.156597 Anserini +test176 Q0 12924904 20 13.083424 Anserini +test176 Q0 15685647 21 12.943827 Anserini +test176 Q0 15685648 22 12.862308 Anserini +test176 Q0 545423 23 12.798505 Anserini +test176 Q0 12924905 24 12.707598 Anserini +test176 Q0 13185770 25 12.674932 Anserini +test176 Q0 13185775 26 12.645191 Anserini +test176 Q0 13185766 27 12.583396 Anserini +test176 Q0 12924902 28 12.583396 Anserini +test176 Q0 7494316 29 12.519046 Anserini +test176 Q0 12077130 30 12.448275 Anserini +test1760 Q0 19984499 1 17.373642 Anserini +test1760 Q0 19984498 2 16.399984 Anserini +test1760 Q0 14353145 3 16.292887 Anserini +test1760 Q0 3728156 4 16.015779 Anserini +test1760 Q0 14239668 5 15.934114 Anserini +test1760 Q0 10894768 6 15.853009 Anserini +test1760 Q0 14239667 7 15.851310 Anserini +test1760 Q0 10850908 8 15.818302 Anserini +test1760 Q0 9895559 9 15.780652 Anserini +test1760 Q0 5090780 10 15.707568 Anserini +test1760 Q0 5959203 11 15.675148 Anserini +test1760 Q0 14353149 12 15.673050 Anserini +test1760 Q0 9895560 13 15.643326 Anserini +test1760 Q0 7239815 14 15.641945 Anserini +test1760 Q0 8832553 15 15.588038 Anserini +test1760 Q0 11170696 16 15.438601 Anserini +test1760 Q0 12954117 17 15.428736 Anserini +test1760 Q0 7227135 18 15.400494 Anserini +test1760 Q0 9708006 19 15.334932 Anserini +test1760 Q0 7239823 20 15.300884 Anserini +test1760 Q0 17947819 21 15.288286 Anserini +test1760 Q0 9895974 22 15.237138 Anserini +test1760 Q0 7309613 23 15.237138 Anserini +test1760 Q0 10192557 24 15.190769 Anserini +test1760 Q0 19465817 25 15.160188 Anserini +test1760 Q0 17689811 26 15.097759 Anserini +test1760 Q0 11813558 27 15.074532 Anserini +test1760 Q0 4584979 28 15.056408 Anserini +test1760 Q0 20518266 29 14.958982 Anserini +test1760 Q0 17753593 30 14.911882 Anserini +test1761 Q0 7874561 1 11.379815 Anserini +test1761 Q0 5392475 2 11.076662 Anserini +test1761 Q0 5919283 3 10.617027 Anserini +test1761 Q0 8995772 4 10.606913 Anserini +test1761 Q0 10065376 5 10.595951 Anserini +test1761 Q0 11355354 6 10.537574 Anserini +test1761 Q0 14362801 7 10.528042 Anserini +test1761 Q0 471463 8 10.470666 Anserini +test1761 Q0 13370617 9 10.459593 Anserini +test1761 Q0 5608630 10 10.413645 Anserini +test1761 Q0 15143312 11 10.402947 Anserini +test1761 Q0 7997454 12 10.402885 Anserini +test1761 Q0 9952371 13 10.364873 Anserini +test1761 Q0 4005207 14 10.362791 Anserini +test1761 Q0 17725368 15 10.311826 Anserini +test1761 Q0 961064 16 10.254880 Anserini +test1761 Q0 15255326 17 10.236596 Anserini +test1761 Q0 11685003 18 10.207894 Anserini +test1761 Q0 15275872 19 10.159603 Anserini +test1761 Q0 8739581 20 10.132644 Anserini +test1761 Q0 1849118 21 10.056518 Anserini +test1761 Q0 4501636 22 9.977105 Anserini +test1761 Q0 13370620 23 9.962940 Anserini +test1761 Q0 5049744 24 9.937083 Anserini +test1761 Q0 4695284 25 9.915527 Anserini +test1761 Q0 2942141 26 9.908800 Anserini +test1761 Q0 5573381 27 9.899364 Anserini +test1761 Q0 14549278 28 9.871030 Anserini +test1761 Q0 5608651 29 9.822833 Anserini +test1761 Q0 15122435 30 9.821169 Anserini +test1762 Q0 6169525 1 12.221512 Anserini +test1762 Q0 18290650 2 11.828054 Anserini +test1762 Q0 17581476 3 11.420711 Anserini +test1762 Q0 17581477 4 11.391673 Anserini +test1762 Q0 17507555 5 11.183747 Anserini +test1762 Q0 7465755 6 11.093091 Anserini +test1762 Q0 16595191 7 11.040992 Anserini +test1762 Q0 2227470 8 11.032982 Anserini +test1762 Q0 17437752 9 10.904474 Anserini +test1762 Q0 17437744 10 10.896812 Anserini +test1762 Q0 20792363 11 10.892581 Anserini +test1762 Q0 17437663 12 10.819657 Anserini +test1762 Q0 15584399 13 10.819657 Anserini +test1762 Q0 14915934 14 10.807446 Anserini +test1762 Q0 3385796 15 10.795807 Anserini +test1762 Q0 3761477 16 10.750843 Anserini +test1762 Q0 7833924 17 10.747305 Anserini +test1762 Q0 12825980 18 10.747305 Anserini +test1762 Q0 7511194 19 10.665303 Anserini +test1762 Q0 16259473 20 10.600440 Anserini +test1762 Q0 6089577 21 10.593181 Anserini +test1762 Q0 17962683 22 10.585259 Anserini +test1762 Q0 17863079 23 10.563899 Anserini +test1762 Q0 16825453 24 10.503632 Anserini +test1762 Q0 2387899 25 10.500730 Anserini +test1762 Q0 20342111 26 10.496497 Anserini +test1762 Q0 14698966 27 10.496497 Anserini +test1762 Q0 13544768 28 10.484715 Anserini +test1762 Q0 16477420 29 10.470792 Anserini +test1762 Q0 13805917 30 10.434459 Anserini +test1763 Q0 3764182 1 15.787629 Anserini +test1763 Q0 3340299 2 14.675396 Anserini +test1763 Q0 3702914 3 14.591269 Anserini +test1763 Q0 13251221 4 14.463879 Anserini +test1763 Q0 11088817 5 13.874257 Anserini +test1763 Q0 15276079 6 13.865362 Anserini +test1763 Q0 4440699 7 13.650015 Anserini +test1763 Q0 9762079 8 13.558688 Anserini +test1763 Q0 19009679 9 13.556874 Anserini +test1763 Q0 21003083 10 13.547601 Anserini +test1763 Q0 8130393 11 13.526833 Anserini +test1763 Q0 7186887 12 13.480210 Anserini +test1763 Q0 21003085 13 13.385280 Anserini +test1763 Q0 9060345 14 13.328123 Anserini +test1763 Q0 7060251 15 13.181123 Anserini +test1763 Q0 2098930 16 13.174652 Anserini +test1763 Q0 10567860 17 13.149365 Anserini +test1763 Q0 3695815 18 13.140011 Anserini +test1763 Q0 10989017 19 13.100684 Anserini +test1763 Q0 3340277 20 13.053816 Anserini +test1763 Q0 8130394 21 12.855734 Anserini +test1763 Q0 15908034 22 12.830205 Anserini +test1763 Q0 19323723 23 12.742041 Anserini +test1763 Q0 7726026 24 12.728679 Anserini +test1763 Q0 19323724 25 12.657790 Anserini +test1763 Q0 19009663 26 12.649890 Anserini +test1763 Q0 18671784 27 12.643975 Anserini +test1763 Q0 7915906 28 12.622200 Anserini +test1763 Q0 3204872 29 12.605619 Anserini +test1763 Q0 3340281 30 12.528229 Anserini +test1764 Q0 8028892 1 15.089596 Anserini +test1764 Q0 8028890 2 13.146633 Anserini +test1764 Q0 8437768 3 12.646323 Anserini +test1764 Q0 20514388 4 12.361087 Anserini +test1764 Q0 1634484 5 12.305568 Anserini +test1764 Q0 19973359 6 11.750834 Anserini +test1764 Q0 6795644 7 11.687958 Anserini +test1764 Q0 19973358 8 11.683725 Anserini +test1764 Q0 4636682 9 11.366434 Anserini +test1764 Q0 4039217 10 11.356894 Anserini +test1764 Q0 8028891 11 10.868242 Anserini +test1764 Q0 20273626 12 10.576946 Anserini +test1764 Q0 10339326 13 10.525812 Anserini +test1764 Q0 1839912 14 10.522478 Anserini +test1764 Q0 2079779 15 10.439628 Anserini +test1764 Q0 15569430 16 10.409640 Anserini +test1764 Q0 15569423 17 10.349625 Anserini +test1764 Q0 9149304 18 10.295774 Anserini +test1764 Q0 3775436 19 10.247296 Anserini +test1764 Q0 2035675 20 10.242865 Anserini +test1764 Q0 7294135 21 10.019947 Anserini +test1764 Q0 13213258 22 10.008812 Anserini +test1764 Q0 12761231 23 9.973074 Anserini +test1764 Q0 14163698 24 9.948780 Anserini +test1764 Q0 15892185 25 9.946374 Anserini +test1764 Q0 9995078 26 9.886950 Anserini +test1764 Q0 1152527 27 9.862144 Anserini +test1764 Q0 19773066 28 9.829532 Anserini +test1764 Q0 597926 29 9.770193 Anserini +test1764 Q0 4681089 30 9.749602 Anserini +test1765 Q0 190963 1 14.050728 Anserini +test1765 Q0 7710754 2 10.339102 Anserini +test1765 Q0 19491478 3 10.330564 Anserini +test1765 Q0 4411652 4 10.166615 Anserini +test1765 Q0 12756584 5 10.146415 Anserini +test1765 Q0 18483281 6 10.016880 Anserini +test1765 Q0 1196418 7 9.818754 Anserini +test1765 Q0 17656648 8 9.815360 Anserini +test1765 Q0 222460 9 9.804883 Anserini +test1765 Q0 2229870 10 9.733272 Anserini +test1765 Q0 15033351 11 9.699447 Anserini +test1765 Q0 13041675 12 9.699447 Anserini +test1765 Q0 15364891 13 9.699447 Anserini +test1765 Q0 1627378 14 9.666141 Anserini +test1765 Q0 190986 15 9.627957 Anserini +test1765 Q0 886143 16 9.596253 Anserini +test1765 Q0 15033355 17 9.596253 Anserini +test1765 Q0 7176638 18 9.596253 Anserini +test1765 Q0 190960 19 9.560091 Anserini +test1765 Q0 10804278 20 9.547682 Anserini +test1765 Q0 190958 21 9.539566 Anserini +test1765 Q0 17499275 22 9.524960 Anserini +test1765 Q0 10804282 23 9.511252 Anserini +test1765 Q0 336035 24 9.497830 Anserini +test1765 Q0 20270762 25 9.495234 Anserini +test1765 Q0 6651935 26 9.483192 Anserini +test1765 Q0 10176550 27 9.396317 Anserini +test1765 Q0 19022206 28 9.396317 Anserini +test1765 Q0 14116906 29 9.396317 Anserini +test1765 Q0 11303652 30 9.396317 Anserini +test1766 Q0 18693478 1 13.078707 Anserini +test1766 Q0 18693511 2 12.261407 Anserini +test1766 Q0 13610762 3 12.224131 Anserini +test1766 Q0 19303598 4 12.011813 Anserini +test1766 Q0 18693505 5 11.747856 Anserini +test1766 Q0 18693494 6 11.677427 Anserini +test1766 Q0 19905956 7 11.614860 Anserini +test1766 Q0 18693499 8 11.427799 Anserini +test1766 Q0 18693497 9 11.364436 Anserini +test1766 Q0 12360624 10 11.286116 Anserini +test1766 Q0 18693504 11 11.283884 Anserini +test1766 Q0 11880523 12 11.099056 Anserini +test1766 Q0 19887791 13 11.077303 Anserini +test1766 Q0 17692848 14 11.073209 Anserini +test1766 Q0 18693498 15 11.073209 Anserini +test1766 Q0 17692845 16 11.073209 Anserini +test1766 Q0 7588668 17 11.044508 Anserini +test1766 Q0 19894294 18 11.010145 Anserini +test1766 Q0 19905957 19 10.982664 Anserini +test1766 Q0 18959482 20 10.905958 Anserini +test1766 Q0 18693483 21 10.896278 Anserini +test1766 Q0 18693502 22 10.884491 Anserini +test1766 Q0 19115267 23 10.816558 Anserini +test1766 Q0 18693490 24 10.742901 Anserini +test1766 Q0 15324856 25 10.714499 Anserini +test1766 Q0 1092096 26 10.615385 Anserini +test1766 Q0 7588663 27 10.615385 Anserini +test1766 Q0 18693496 28 10.465319 Anserini +test1766 Q0 3232347 29 10.329021 Anserini +test1766 Q0 19887792 30 10.323300 Anserini +test1767 Q0 8433431 1 19.735773 Anserini +test1767 Q0 442721 2 18.336988 Anserini +test1767 Q0 6564088 3 18.096836 Anserini +test1767 Q0 6295590 4 17.895044 Anserini +test1767 Q0 6295597 5 17.403257 Anserini +test1767 Q0 3784618 6 17.254406 Anserini +test1767 Q0 2875660 7 16.678169 Anserini +test1767 Q0 6809789 8 16.647539 Anserini +test1767 Q0 2377376 9 16.333744 Anserini +test1767 Q0 5679684 10 16.134830 Anserini +test1767 Q0 2875669 11 16.051567 Anserini +test1767 Q0 6295592 12 15.930070 Anserini +test1767 Q0 6295593 13 15.867343 Anserini +test1767 Q0 15288631 14 15.858309 Anserini +test1767 Q0 13456256 15 15.813067 Anserini +test1767 Q0 15320506 16 15.806622 Anserini +test1767 Q0 6295596 17 15.795387 Anserini +test1767 Q0 6686006 18 15.619068 Anserini +test1767 Q0 1415633 19 15.435493 Anserini +test1767 Q0 5679683 20 15.333932 Anserini +test1767 Q0 4852536 21 15.320122 Anserini +test1767 Q0 3784623 22 15.280917 Anserini +test1767 Q0 9718973 23 15.270866 Anserini +test1767 Q0 2246852 24 15.080319 Anserini +test1767 Q0 1884209 25 15.065918 Anserini +test1767 Q0 13045267 26 14.828007 Anserini +test1767 Q0 8320981 27 14.701508 Anserini +test1767 Q0 572624 28 14.655048 Anserini +test1767 Q0 3782850 29 14.578912 Anserini +test1767 Q0 12029916 30 14.560213 Anserini +test1768 Q0 2463642 1 14.317169 Anserini +test1768 Q0 2463666 2 14.037888 Anserini +test1768 Q0 2463640 3 13.831047 Anserini +test1768 Q0 8489306 4 13.478445 Anserini +test1768 Q0 2463653 5 13.147585 Anserini +test1768 Q0 2463664 6 13.069010 Anserini +test1768 Q0 2463647 7 13.045952 Anserini +test1768 Q0 2463662 8 12.931391 Anserini +test1768 Q0 8489308 9 12.734340 Anserini +test1768 Q0 3185501 10 12.284631 Anserini +test1768 Q0 2463649 11 12.241266 Anserini +test1768 Q0 2463648 12 12.236991 Anserini +test1768 Q0 6071762 13 12.214712 Anserini +test1768 Q0 2463646 14 12.188764 Anserini +test1768 Q0 2463663 15 12.132668 Anserini +test1768 Q0 8489311 16 12.049605 Anserini +test1768 Q0 2285443 17 11.683088 Anserini +test1768 Q0 2285438 18 11.683088 Anserini +test1768 Q0 8489342 19 11.572389 Anserini +test1768 Q0 2285442 20 11.566403 Anserini +test1768 Q0 2463661 21 11.483338 Anserini +test1768 Q0 3888545 22 11.434672 Anserini +test1768 Q0 2463641 23 11.398644 Anserini +test1768 Q0 7751918 24 11.351592 Anserini +test1768 Q0 2463654 25 11.159544 Anserini +test1768 Q0 2463652 26 11.155495 Anserini +test1768 Q0 2463657 27 11.067545 Anserini +test1768 Q0 2463656 28 10.990951 Anserini +test1768 Q0 5759757 29 10.871237 Anserini +test1768 Q0 20874624 30 10.871237 Anserini +test1769 Q0 2951136 1 11.374941 Anserini +test1769 Q0 9522168 2 11.321832 Anserini +test1769 Q0 413839 3 10.217037 Anserini +test1769 Q0 18953611 4 10.200155 Anserini +test1769 Q0 5817451 5 10.050323 Anserini +test1769 Q0 19496618 6 9.942447 Anserini +test1769 Q0 8406598 7 9.831703 Anserini +test1769 Q0 19484773 8 9.776552 Anserini +test1769 Q0 2951139 9 9.574472 Anserini +test1769 Q0 6683205 10 9.419424 Anserini +test1769 Q0 2951131 11 9.407452 Anserini +test1769 Q0 20414480 12 9.397865 Anserini +test1769 Q0 20414479 13 9.392973 Anserini +test1769 Q0 12989106 14 9.333403 Anserini +test1769 Q0 9414320 15 9.269253 Anserini +test1769 Q0 19149878 16 9.262324 Anserini +test1769 Q0 20793500 17 9.244779 Anserini +test1769 Q0 19558837 18 9.238706 Anserini +test1769 Q0 19496613 19 9.070036 Anserini +test1769 Q0 7834552 20 9.066133 Anserini +test1769 Q0 16463106 21 9.039720 Anserini +test1769 Q0 19830379 22 9.037018 Anserini +test1769 Q0 5325944 23 9.014279 Anserini +test1769 Q0 1786957 24 8.989819 Anserini +test1769 Q0 4129560 25 8.979324 Anserini +test1769 Q0 20737480 26 8.967806 Anserini +test1769 Q0 11637681 27 8.896168 Anserini +test1769 Q0 2951138 28 8.896168 Anserini +test1769 Q0 1974134 29 8.869547 Anserini +test1769 Q0 15862912 30 8.848740 Anserini +test177 Q0 6870742 1 15.313996 Anserini +test177 Q0 6870743 2 15.168562 Anserini +test177 Q0 4899726 3 13.182604 Anserini +test177 Q0 1442351 4 12.987343 Anserini +test177 Q0 9059359 5 12.657514 Anserini +test177 Q0 12149741 6 12.375945 Anserini +test177 Q0 12149749 7 12.375945 Anserini +test177 Q0 1442356 8 12.272064 Anserini +test177 Q0 2624362 9 12.143229 Anserini +test177 Q0 1442355 10 12.138909 Anserini +test177 Q0 16594479 11 11.574757 Anserini +test177 Q0 13678523 12 11.570171 Anserini +test177 Q0 19195704 13 11.412807 Anserini +test177 Q0 9059365 14 11.320893 Anserini +test177 Q0 7476440 15 11.274367 Anserini +test177 Q0 2996845 16 11.252569 Anserini +test177 Q0 7805616 17 11.252569 Anserini +test177 Q0 2691878 18 11.202958 Anserini +test177 Q0 2691911 19 11.202958 Anserini +test177 Q0 1446049 20 10.865248 Anserini +test177 Q0 1858394 21 10.841790 Anserini +test177 Q0 1442350 22 10.808884 Anserini +test177 Q0 1442360 23 10.741837 Anserini +test177 Q0 11093314 24 10.730012 Anserini +test177 Q0 10302106 25 10.548507 Anserini +test177 Q0 11190295 26 10.509491 Anserini +test177 Q0 4349712 27 10.490074 Anserini +test177 Q0 5369362 28 10.418133 Anserini +test177 Q0 1442354 29 10.306080 Anserini +test177 Q0 9931190 30 10.136960 Anserini +test1770 Q0 12940895 1 27.528408 Anserini +test1770 Q0 12940897 2 24.797283 Anserini +test1770 Q0 12940894 3 24.247190 Anserini +test1770 Q0 12940896 4 22.466024 Anserini +test1770 Q0 12085699 5 20.524797 Anserini +test1770 Q0 11732505 6 14.586020 Anserini +test1770 Q0 12085695 7 14.215097 Anserini +test1770 Q0 10471978 8 13.433015 Anserini +test1770 Q0 20379440 9 12.971804 Anserini +test1770 Q0 281048 10 12.700540 Anserini +test1770 Q0 4011825 11 12.553037 Anserini +test1770 Q0 7190051 12 12.534447 Anserini +test1770 Q0 3826475 13 12.471428 Anserini +test1770 Q0 7221348 14 12.343641 Anserini +test1770 Q0 15850256 15 12.265144 Anserini +test1770 Q0 18547304 16 12.246287 Anserini +test1770 Q0 8771914 17 12.178812 Anserini +test1770 Q0 16566413 18 12.108718 Anserini +test1770 Q0 2686487 19 12.073044 Anserini +test1770 Q0 8197453 20 12.017633 Anserini +test1770 Q0 8279562 21 11.959517 Anserini +test1770 Q0 5842287 22 11.893722 Anserini +test1770 Q0 14628129 23 11.890530 Anserini +test1770 Q0 6693782 24 11.692280 Anserini +test1770 Q0 5667900 25 11.634401 Anserini +test1770 Q0 13652148 26 11.577842 Anserini +test1770 Q0 7014953 27 11.566467 Anserini +test1770 Q0 15719896 28 11.553964 Anserini +test1770 Q0 3050381 29 11.532720 Anserini +test1770 Q0 457290 30 11.529961 Anserini +test1771 Q0 18762263 1 16.464828 Anserini +test1771 Q0 5787850 2 16.367235 Anserini +test1771 Q0 7540032 3 16.068529 Anserini +test1771 Q0 16788614 4 15.468136 Anserini +test1771 Q0 19036451 5 15.191421 Anserini +test1771 Q0 17350572 6 15.021206 Anserini +test1771 Q0 16672610 7 14.940809 Anserini +test1771 Q0 16788615 8 14.745649 Anserini +test1771 Q0 2873136 9 14.677953 Anserini +test1771 Q0 17350573 10 14.665842 Anserini +test1771 Q0 19036449 11 14.660748 Anserini +test1771 Q0 20900815 12 14.654010 Anserini +test1771 Q0 17350603 13 14.610339 Anserini +test1771 Q0 5787854 14 14.508343 Anserini +test1771 Q0 13235146 15 14.262263 Anserini +test1771 Q0 16788613 16 14.262182 Anserini +test1771 Q0 15556341 17 14.234748 Anserini +test1771 Q0 12845965 18 14.219493 Anserini +test1771 Q0 16788616 19 14.147873 Anserini +test1771 Q0 16788612 20 14.121254 Anserini +test1771 Q0 18983592 21 14.111856 Anserini +test1771 Q0 12888814 22 14.097378 Anserini +test1771 Q0 19036448 23 13.942289 Anserini +test1771 Q0 17350602 24 13.894245 Anserini +test1771 Q0 12888912 25 13.810635 Anserini +test1771 Q0 3439619 26 13.702976 Anserini +test1771 Q0 16672612 27 13.418390 Anserini +test1771 Q0 15910792 28 13.344887 Anserini +test1771 Q0 15910773 29 13.344887 Anserini +test1771 Q0 11433680 30 13.323728 Anserini +test1772 Q0 935184 1 20.182554 Anserini +test1772 Q0 375902 2 19.430460 Anserini +test1772 Q0 18926886 3 19.105928 Anserini +test1772 Q0 375896 4 18.796623 Anserini +test1772 Q0 167809 5 18.485216 Anserini +test1772 Q0 8360126 6 18.370701 Anserini +test1772 Q0 11903491 7 17.917315 Anserini +test1772 Q0 167817 8 17.833694 Anserini +test1772 Q0 2852718 9 15.919279 Anserini +test1772 Q0 1685225 10 15.724010 Anserini +test1772 Q0 2844397 11 15.195770 Anserini +test1772 Q0 6730424 12 15.185976 Anserini +test1772 Q0 19581861 13 15.086917 Anserini +test1772 Q0 6191988 14 14.827681 Anserini +test1772 Q0 13144897 15 14.818360 Anserini +test1772 Q0 13144899 16 14.725902 Anserini +test1772 Q0 1991974 17 14.723045 Anserini +test1772 Q0 6296770 18 14.719700 Anserini +test1772 Q0 375903 19 14.719124 Anserini +test1772 Q0 2844398 20 14.717939 Anserini +test1772 Q0 1451785 21 14.702991 Anserini +test1772 Q0 7569514 22 14.566945 Anserini +test1772 Q0 325279 23 14.496486 Anserini +test1772 Q0 19581860 24 14.476736 Anserini +test1772 Q0 6820246 25 14.249214 Anserini +test1772 Q0 4714625 26 14.088576 Anserini +test1772 Q0 1451794 27 13.901641 Anserini +test1772 Q0 325273 28 13.864703 Anserini +test1772 Q0 7569516 29 13.818103 Anserini +test1772 Q0 2076726 30 13.803382 Anserini +test1773 Q0 8214974 1 15.203485 Anserini +test1773 Q0 4993427 2 13.868107 Anserini +test1773 Q0 4993456 3 13.387394 Anserini +test1773 Q0 4993426 4 13.285137 Anserini +test1773 Q0 20315678 5 13.046463 Anserini +test1773 Q0 18231922 6 13.012190 Anserini +test1773 Q0 18656037 7 12.845405 Anserini +test1773 Q0 17045290 8 12.638684 Anserini +test1773 Q0 10994489 9 12.407539 Anserini +test1773 Q0 14914912 10 12.405704 Anserini +test1773 Q0 15899630 11 12.385578 Anserini +test1773 Q0 13750180 12 12.354084 Anserini +test1773 Q0 12077590 13 12.353174 Anserini +test1773 Q0 4993455 14 12.353174 Anserini +test1773 Q0 13955978 15 12.328093 Anserini +test1773 Q0 4993436 16 12.323049 Anserini +test1773 Q0 16606309 17 12.261371 Anserini +test1773 Q0 7240642 18 12.258406 Anserini +test1773 Q0 12077594 19 12.227274 Anserini +test1773 Q0 17045291 20 12.164911 Anserini +test1773 Q0 15899629 21 12.163796 Anserini +test1773 Q0 4329091 22 12.123430 Anserini +test1773 Q0 7236985 23 12.118548 Anserini +test1773 Q0 18968493 24 12.071268 Anserini +test1773 Q0 3742069 25 12.048455 Anserini +test1773 Q0 20717478 26 12.037570 Anserini +test1773 Q0 14384154 27 11.939580 Anserini +test1773 Q0 10458565 28 11.856081 Anserini +test1773 Q0 10458567 29 11.856081 Anserini +test1773 Q0 6042505 30 11.850653 Anserini +test1774 Q0 4925467 1 12.041510 Anserini +test1774 Q0 1793391 2 11.596420 Anserini +test1774 Q0 15907938 3 11.445557 Anserini +test1774 Q0 12418652 4 11.402489 Anserini +test1774 Q0 1805367 5 11.263685 Anserini +test1774 Q0 10134997 6 11.185806 Anserini +test1774 Q0 1805379 7 11.133554 Anserini +test1774 Q0 20016769 8 11.058305 Anserini +test1774 Q0 15907937 9 11.054251 Anserini +test1774 Q0 1805178 10 10.977783 Anserini +test1774 Q0 10130092 11 10.781240 Anserini +test1774 Q0 4317677 12 10.622976 Anserini +test1774 Q0 1805380 13 10.491903 Anserini +test1774 Q0 9038511 14 10.450735 Anserini +test1774 Q0 3873334 15 10.415180 Anserini +test1774 Q0 12418647 16 10.326476 Anserini +test1774 Q0 2925893 17 10.280766 Anserini +test1774 Q0 3058320 18 10.246724 Anserini +test1774 Q0 985462 19 10.202126 Anserini +test1774 Q0 19041407 20 10.170339 Anserini +test1774 Q0 20016762 21 10.157982 Anserini +test1774 Q0 3058321 22 10.143766 Anserini +test1774 Q0 4662081 23 10.103863 Anserini +test1774 Q0 19843296 24 10.097869 Anserini +test1774 Q0 19843291 25 10.006034 Anserini +test1774 Q0 5231861 26 10.003838 Anserini +test1774 Q0 19153130 27 9.965253 Anserini +test1774 Q0 12418645 28 9.965253 Anserini +test1774 Q0 2454637 29 9.961821 Anserini +test1774 Q0 1805337 30 9.947336 Anserini +test1775 Q0 615570 1 12.555141 Anserini +test1775 Q0 534555 2 11.933054 Anserini +test1775 Q0 19908395 3 11.498946 Anserini +test1775 Q0 12781031 4 11.347516 Anserini +test1775 Q0 615571 5 11.318424 Anserini +test1775 Q0 3030576 6 11.317303 Anserini +test1775 Q0 19908401 7 11.305002 Anserini +test1775 Q0 19908396 8 11.202932 Anserini +test1775 Q0 11335199 9 10.686757 Anserini +test1775 Q0 3030579 10 10.619213 Anserini +test1775 Q0 12392901 11 10.557633 Anserini +test1775 Q0 19931013 12 10.542330 Anserini +test1775 Q0 14444304 13 10.457445 Anserini +test1775 Q0 19908397 14 10.307404 Anserini +test1775 Q0 15935869 15 10.259580 Anserini +test1775 Q0 10388863 16 10.181162 Anserini +test1775 Q0 4002152 17 10.112921 Anserini +test1775 Q0 50614 18 10.044335 Anserini +test1775 Q0 3915793 19 10.013319 Anserini +test1775 Q0 4709056 20 9.964615 Anserini +test1775 Q0 3819866 21 9.950266 Anserini +test1775 Q0 6908115 22 9.940296 Anserini +test1775 Q0 11335196 23 9.922112 Anserini +test1775 Q0 19725605 24 9.885584 Anserini +test1775 Q0 11024228 25 9.871104 Anserini +test1775 Q0 17839244 26 9.864061 Anserini +test1775 Q0 10341414 27 9.856706 Anserini +test1775 Q0 9037188 28 9.789086 Anserini +test1775 Q0 11024223 29 9.740986 Anserini +test1775 Q0 3806464 30 9.706398 Anserini +test1776 Q0 1280357 1 14.047880 Anserini +test1776 Q0 7940655 2 12.778971 Anserini +test1776 Q0 596944 3 12.735411 Anserini +test1776 Q0 18242683 4 11.894739 Anserini +test1776 Q0 3070586 5 11.758119 Anserini +test1776 Q0 3070589 6 11.614357 Anserini +test1776 Q0 5504380 7 11.567410 Anserini +test1776 Q0 1918805 8 11.378839 Anserini +test1776 Q0 3070590 9 11.357653 Anserini +test1776 Q0 8395099 10 11.267063 Anserini +test1776 Q0 3832799 11 11.155443 Anserini +test1776 Q0 3209170 12 10.999931 Anserini +test1776 Q0 264330 13 10.739278 Anserini +test1776 Q0 578454 14 10.720668 Anserini +test1776 Q0 449560 15 10.614216 Anserini +test1776 Q0 6090267 16 10.313877 Anserini +test1776 Q0 578340 17 10.239132 Anserini +test1776 Q0 17111150 18 10.214561 Anserini +test1776 Q0 7683689 19 10.207935 Anserini +test1776 Q0 12477160 20 10.175057 Anserini +test1776 Q0 5304858 21 10.170879 Anserini +test1776 Q0 7940669 22 10.105788 Anserini +test1776 Q0 1828974 23 10.094855 Anserini +test1776 Q0 17808643 24 10.050608 Anserini +test1776 Q0 290014 25 10.030725 Anserini +test1776 Q0 1280092 26 10.009740 Anserini +test1776 Q0 9692771 27 9.966982 Anserini +test1776 Q0 3070613 28 9.942893 Anserini +test1776 Q0 6777712 29 9.919402 Anserini +test1776 Q0 7084111 30 9.917312 Anserini +test1777 Q0 13892513 1 16.779242 Anserini +test1777 Q0 16607494 2 16.649712 Anserini +test1777 Q0 810223 3 16.500832 Anserini +test1777 Q0 16907931 4 16.465374 Anserini +test1777 Q0 2507897 5 16.388229 Anserini +test1777 Q0 15209174 6 16.292740 Anserini +test1777 Q0 12331460 7 16.250628 Anserini +test1777 Q0 222779 8 16.250628 Anserini +test1777 Q0 2507922 9 16.124540 Anserini +test1777 Q0 10192956 10 16.112677 Anserini +test1777 Q0 4269553 11 16.018478 Anserini +test1777 Q0 1746580 12 15.947814 Anserini +test1777 Q0 434352 13 15.929273 Anserini +test1777 Q0 1602825 14 15.884579 Anserini +test1777 Q0 428163 15 15.763290 Anserini +test1777 Q0 3325527 16 15.750645 Anserini +test1777 Q0 1832795 17 15.692546 Anserini +test1777 Q0 2445761 18 15.638129 Anserini +test1777 Q0 4468275 19 15.561084 Anserini +test1777 Q0 730436 20 15.458637 Anserini +test1777 Q0 3114680 21 15.273197 Anserini +test1777 Q0 5384009 22 15.258270 Anserini +test1777 Q0 3242119 23 15.252270 Anserini +test1777 Q0 1746594 24 15.219718 Anserini +test1777 Q0 2155560 25 15.106439 Anserini +test1777 Q0 1718896 26 15.051830 Anserini +test1777 Q0 810225 27 14.956161 Anserini +test1777 Q0 18342603 28 14.951361 Anserini +test1777 Q0 427992 29 14.872592 Anserini +test1777 Q0 5489914 30 14.869764 Anserini +test1778 Q0 729499 1 17.471889 Anserini +test1778 Q0 18599200 2 17.414131 Anserini +test1778 Q0 18599175 3 16.870308 Anserini +test1778 Q0 18674297 4 16.678976 Anserini +test1778 Q0 729506 5 16.487568 Anserini +test1778 Q0 729513 6 16.059109 Anserini +test1778 Q0 729423 7 16.050827 Anserini +test1778 Q0 18599202 8 15.960110 Anserini +test1778 Q0 16203855 9 15.653363 Anserini +test1778 Q0 729398 10 15.553056 Anserini +test1778 Q0 729419 11 15.493599 Anserini +test1778 Q0 18599198 12 15.406931 Anserini +test1778 Q0 18599176 13 15.036328 Anserini +test1778 Q0 15688723 14 14.991019 Anserini +test1778 Q0 729421 15 14.927995 Anserini +test1778 Q0 18599182 16 14.883083 Anserini +test1778 Q0 12540118 17 14.827985 Anserini +test1778 Q0 18674292 18 14.792701 Anserini +test1778 Q0 19090034 19 14.777856 Anserini +test1778 Q0 19090037 20 14.692704 Anserini +test1778 Q0 15378287 21 14.643368 Anserini +test1778 Q0 18599132 22 14.608614 Anserini +test1778 Q0 729428 23 14.591175 Anserini +test1778 Q0 18599197 24 14.552584 Anserini +test1778 Q0 729427 25 14.462534 Anserini +test1778 Q0 18599109 26 14.427821 Anserini +test1778 Q0 18599192 27 14.373631 Anserini +test1778 Q0 18599211 28 14.337977 Anserini +test1778 Q0 18599177 29 14.249146 Anserini +test1778 Q0 18599194 30 14.247173 Anserini +test1779 Q0 6660667 1 11.935018 Anserini +test1779 Q0 1713512 2 11.573689 Anserini +test1779 Q0 16368308 3 11.216555 Anserini +test1779 Q0 8118102 4 11.127304 Anserini +test1779 Q0 753520 5 11.046660 Anserini +test1779 Q0 2759076 6 11.014818 Anserini +test1779 Q0 335669 7 10.895939 Anserini +test1779 Q0 9402547 8 10.876974 Anserini +test1779 Q0 4381499 9 10.831114 Anserini +test1779 Q0 8296591 10 10.781569 Anserini +test1779 Q0 9400127 11 10.781569 Anserini +test1779 Q0 4959570 12 10.760531 Anserini +test1779 Q0 5131959 13 10.682999 Anserini +test1779 Q0 17958801 14 10.655975 Anserini +test1779 Q0 9400108 15 10.653324 Anserini +test1779 Q0 9400124 16 10.653324 Anserini +test1779 Q0 9400136 17 10.653324 Anserini +test1779 Q0 19919943 18 10.613581 Anserini +test1779 Q0 1713503 19 10.588200 Anserini +test1779 Q0 16380566 20 10.587091 Anserini +test1779 Q0 4224150 21 10.528206 Anserini +test1779 Q0 1713505 22 10.471987 Anserini +test1779 Q0 322252 23 10.469898 Anserini +test1779 Q0 1713507 24 10.465652 Anserini +test1779 Q0 1841121 25 10.452615 Anserini +test1779 Q0 17958804 26 10.448763 Anserini +test1779 Q0 17875230 27 10.416568 Anserini +test1779 Q0 4238596 28 10.395645 Anserini +test1779 Q0 17602624 29 10.374693 Anserini +test1779 Q0 2416476 30 10.360203 Anserini +test178 Q0 8930701 1 16.614069 Anserini +test178 Q0 8930702 2 16.413488 Anserini +test178 Q0 20773454 3 14.881963 Anserini +test178 Q0 20773453 4 14.796845 Anserini +test178 Q0 8930712 5 14.519931 Anserini +test178 Q0 13559294 6 14.086148 Anserini +test178 Q0 7581284 7 13.762522 Anserini +test178 Q0 17925025 8 13.666580 Anserini +test178 Q0 11193603 9 13.595027 Anserini +test178 Q0 7581572 10 13.534886 Anserini +test178 Q0 4522652 11 13.453404 Anserini +test178 Q0 4522642 12 13.436956 Anserini +test178 Q0 7581274 13 13.243843 Anserini +test178 Q0 4522658 14 12.985698 Anserini +test178 Q0 8930730 15 12.964671 Anserini +test178 Q0 11193605 16 12.906958 Anserini +test178 Q0 4522673 17 12.571433 Anserini +test178 Q0 8930693 18 12.493981 Anserini +test178 Q0 4915452 19 12.477069 Anserini +test178 Q0 4522653 20 12.374032 Anserini +test178 Q0 2955850 21 12.264840 Anserini +test178 Q0 7581278 22 12.144728 Anserini +test178 Q0 7581280 23 12.082788 Anserini +test178 Q0 11193604 24 12.003861 Anserini +test178 Q0 11455355 25 11.955894 Anserini +test178 Q0 3818549 26 11.894571 Anserini +test178 Q0 501094 27 11.891526 Anserini +test178 Q0 1358308 28 11.876301 Anserini +test178 Q0 6844507 29 11.777359 Anserini +test178 Q0 501077 30 11.743959 Anserini +test1780 Q0 20956019 1 14.581683 Anserini +test1780 Q0 7008877 2 14.132053 Anserini +test1780 Q0 20956021 3 13.938434 Anserini +test1780 Q0 20993276 4 13.526109 Anserini +test1780 Q0 4134155 5 12.937777 Anserini +test1780 Q0 3576414 6 12.836491 Anserini +test1780 Q0 13856370 7 12.831782 Anserini +test1780 Q0 3576415 8 12.797679 Anserini +test1780 Q0 20965844 9 12.793363 Anserini +test1780 Q0 13856376 10 12.786152 Anserini +test1780 Q0 20973081 11 12.573460 Anserini +test1780 Q0 20970455 12 12.546268 Anserini +test1780 Q0 11918108 13 12.533034 Anserini +test1780 Q0 20970559 14 12.513575 Anserini +test1780 Q0 20976509 15 12.492870 Anserini +test1780 Q0 20976510 16 12.492870 Anserini +test1780 Q0 20987171 17 12.490395 Anserini +test1780 Q0 19330339 18 12.439460 Anserini +test1780 Q0 12172395 19 12.415599 Anserini +test1780 Q0 12172396 20 12.415599 Anserini +test1780 Q0 16748035 21 12.346752 Anserini +test1780 Q0 15678088 22 12.346745 Anserini +test1780 Q0 20910720 23 12.341757 Anserini +test1780 Q0 15678092 24 12.300051 Anserini +test1780 Q0 20987175 25 12.283337 Anserini +test1780 Q0 20985265 26 12.205732 Anserini +test1780 Q0 20910721 27 12.195500 Anserini +test1780 Q0 20964653 28 12.195500 Anserini +test1780 Q0 20993270 29 12.195500 Anserini +test1780 Q0 20944253 30 12.189112 Anserini +test1781 Q0 17813599 1 11.346787 Anserini +test1781 Q0 15422614 2 11.257122 Anserini +test1781 Q0 15422615 3 11.257122 Anserini +test1781 Q0 3305001 4 11.018713 Anserini +test1781 Q0 3631263 5 10.934213 Anserini +test1781 Q0 9894054 6 10.823306 Anserini +test1781 Q0 14551688 7 10.784407 Anserini +test1781 Q0 5963016 8 10.768092 Anserini +test1781 Q0 18858286 9 10.715466 Anserini +test1781 Q0 20256069 10 10.659280 Anserini +test1781 Q0 855552 11 10.583685 Anserini +test1781 Q0 11303730 12 10.522280 Anserini +test1781 Q0 8779753 13 10.489334 Anserini +test1781 Q0 6029232 14 10.488724 Anserini +test1781 Q0 4693404 15 10.434683 Anserini +test1781 Q0 1606905 16 10.433289 Anserini +test1781 Q0 10423552 17 10.356203 Anserini +test1781 Q0 17339273 18 10.328480 Anserini +test1781 Q0 1651777 19 10.306746 Anserini +test1781 Q0 3523072 20 10.158506 Anserini +test1781 Q0 19752948 21 10.151957 Anserini +test1781 Q0 11067851 22 10.151176 Anserini +test1781 Q0 17340570 23 9.991813 Anserini +test1781 Q0 16267338 24 9.970703 Anserini +test1781 Q0 12317329 25 9.963132 Anserini +test1781 Q0 13832022 26 9.962536 Anserini +test1781 Q0 11451970 27 9.961157 Anserini +test1781 Q0 12439134 28 9.945599 Anserini +test1781 Q0 11288212 29 9.890520 Anserini +test1781 Q0 11288206 30 9.890520 Anserini +test1782 Q0 14657944 1 15.044983 Anserini +test1782 Q0 10738964 2 13.948405 Anserini +test1782 Q0 3151797 3 13.112959 Anserini +test1782 Q0 872740 4 13.069098 Anserini +test1782 Q0 2088750 5 12.790854 Anserini +test1782 Q0 8281331 6 12.744809 Anserini +test1782 Q0 11681999 7 12.726555 Anserini +test1782 Q0 4446037 8 12.462328 Anserini +test1782 Q0 17998079 9 12.345006 Anserini +test1782 Q0 2097679 10 12.284836 Anserini +test1782 Q0 17998077 11 12.212125 Anserini +test1782 Q0 15669472 12 12.123654 Anserini +test1782 Q0 6336305 13 12.119140 Anserini +test1782 Q0 8281328 14 12.046537 Anserini +test1782 Q0 12977219 15 11.864155 Anserini +test1782 Q0 9179964 16 11.856476 Anserini +test1782 Q0 11142667 17 11.849449 Anserini +test1782 Q0 11142668 18 11.849449 Anserini +test1782 Q0 11564960 19 11.849449 Anserini +test1782 Q0 12977232 20 11.735979 Anserini +test1782 Q0 10915897 21 11.684484 Anserini +test1782 Q0 1688445 22 11.533920 Anserini +test1782 Q0 20876746 23 11.475140 Anserini +test1782 Q0 18058381 24 11.454324 Anserini +test1782 Q0 18058382 25 11.454324 Anserini +test1782 Q0 19206913 26 11.436694 Anserini +test1782 Q0 2293715 27 11.356794 Anserini +test1782 Q0 5175168 28 11.294666 Anserini +test1782 Q0 1688436 29 11.233299 Anserini +test1782 Q0 1408408 30 11.210732 Anserini +test1783 Q0 13174159 1 20.034388 Anserini +test1783 Q0 16038605 2 19.968918 Anserini +test1783 Q0 4818715 3 19.936129 Anserini +test1783 Q0 3832361 4 19.901777 Anserini +test1783 Q0 3377869 5 19.589928 Anserini +test1783 Q0 10672344 6 19.383059 Anserini +test1783 Q0 18231439 7 18.990189 Anserini +test1783 Q0 3807941 8 18.876699 Anserini +test1783 Q0 12917509 9 18.586824 Anserini +test1783 Q0 20040002 10 18.397879 Anserini +test1783 Q0 14631670 11 18.274975 Anserini +test1783 Q0 6618618 12 18.261229 Anserini +test1783 Q0 14973847 13 18.051443 Anserini +test1783 Q0 3807929 14 18.038994 Anserini +test1783 Q0 6723592 15 18.038040 Anserini +test1783 Q0 3807931 16 18.032061 Anserini +test1783 Q0 3807944 17 18.022341 Anserini +test1783 Q0 12216582 18 17.978949 Anserini +test1783 Q0 14973848 19 17.930088 Anserini +test1783 Q0 3828083 20 17.918039 Anserini +test1783 Q0 16187118 21 17.845655 Anserini +test1783 Q0 20040003 22 17.843088 Anserini +test1783 Q0 8848024 23 17.798515 Anserini +test1783 Q0 4390172 24 17.705315 Anserini +test1783 Q0 65344 25 17.588898 Anserini +test1783 Q0 15662021 26 17.437845 Anserini +test1783 Q0 15675345 27 17.406834 Anserini +test1783 Q0 17309384 28 17.393940 Anserini +test1783 Q0 20040001 29 17.390924 Anserini +test1783 Q0 16119464 30 17.249012 Anserini +test1784 Q0 12014133 1 11.458315 Anserini +test1784 Q0 11956449 2 11.289486 Anserini +test1784 Q0 14585376 3 11.128318 Anserini +test1784 Q0 8875223 4 10.986839 Anserini +test1784 Q0 8081860 5 10.919601 Anserini +test1784 Q0 6646469 6 10.857697 Anserini +test1784 Q0 15993223 7 10.641710 Anserini +test1784 Q0 19993842 8 10.600353 Anserini +test1784 Q0 20262515 9 10.496737 Anserini +test1784 Q0 5078627 10 10.485371 Anserini +test1784 Q0 130256 11 10.195635 Anserini +test1784 Q0 4530444 12 10.162416 Anserini +test1784 Q0 18512559 13 10.130848 Anserini +test1784 Q0 13476917 14 10.091894 Anserini +test1784 Q0 7411731 15 10.073677 Anserini +test1784 Q0 6646477 16 10.055759 Anserini +test1784 Q0 1277186 17 10.047838 Anserini +test1784 Q0 6646489 18 10.014971 Anserini +test1784 Q0 14441766 19 10.004696 Anserini +test1784 Q0 18066687 20 9.969418 Anserini +test1784 Q0 10760579 21 9.923782 Anserini +test1784 Q0 4194141 22 9.904021 Anserini +test1784 Q0 8358425 23 9.775496 Anserini +test1784 Q0 14799628 24 9.754315 Anserini +test1784 Q0 11344234 25 9.700839 Anserini +test1784 Q0 4530439 26 9.700839 Anserini +test1784 Q0 10588703 27 9.678246 Anserini +test1784 Q0 16083718 28 9.675148 Anserini +test1784 Q0 9896773 29 9.626364 Anserini +test1784 Q0 4530447 30 9.620896 Anserini +test1785 Q0 439902 1 12.586352 Anserini +test1785 Q0 15436602 2 12.577513 Anserini +test1785 Q0 1878272 3 12.191306 Anserini +test1785 Q0 4941980 4 12.091281 Anserini +test1785 Q0 6862725 5 11.987315 Anserini +test1785 Q0 2370833 6 11.860783 Anserini +test1785 Q0 2281563 7 11.836509 Anserini +test1785 Q0 16638485 8 11.769589 Anserini +test1785 Q0 327696 9 11.751202 Anserini +test1785 Q0 327699 10 11.708637 Anserini +test1785 Q0 16638483 11 11.702838 Anserini +test1785 Q0 327670 12 11.628712 Anserini +test1785 Q0 1878290 13 11.627808 Anserini +test1785 Q0 741657 14 11.622945 Anserini +test1785 Q0 7429892 15 11.549328 Anserini +test1785 Q0 1878273 16 11.449202 Anserini +test1785 Q0 10482280 17 11.371482 Anserini +test1785 Q0 2370826 18 11.350775 Anserini +test1785 Q0 3058268 19 11.346113 Anserini +test1785 Q0 2782523 20 11.330664 Anserini +test1785 Q0 7429899 21 11.277450 Anserini +test1785 Q0 10482315 22 11.179422 Anserini +test1785 Q0 11782028 23 11.161532 Anserini +test1785 Q0 1901320 24 11.067275 Anserini +test1785 Q0 4873648 25 11.050609 Anserini +test1785 Q0 14079930 26 11.029787 Anserini +test1785 Q0 1878284 27 11.012004 Anserini +test1785 Q0 7749412 28 11.005239 Anserini +test1785 Q0 13766632 29 11.005239 Anserini +test1785 Q0 20517785 30 10.951733 Anserini +test1786 Q0 15959463 1 20.298275 Anserini +test1786 Q0 1333833 2 18.531189 Anserini +test1786 Q0 9630962 3 18.262135 Anserini +test1786 Q0 6052608 4 18.184292 Anserini +test1786 Q0 15156822 5 17.935163 Anserini +test1786 Q0 15156814 6 17.771399 Anserini +test1786 Q0 8904013 7 17.417881 Anserini +test1786 Q0 9414111 8 17.410553 Anserini +test1786 Q0 2100295 9 17.331053 Anserini +test1786 Q0 7586917 10 17.253187 Anserini +test1786 Q0 12875409 11 16.948483 Anserini +test1786 Q0 1333841 12 16.876438 Anserini +test1786 Q0 15156811 13 16.841053 Anserini +test1786 Q0 15156820 14 16.522150 Anserini +test1786 Q0 6333213 15 16.521284 Anserini +test1786 Q0 7586921 16 16.268419 Anserini +test1786 Q0 1186649 17 16.189215 Anserini +test1786 Q0 1333796 18 16.160112 Anserini +test1786 Q0 9762808 19 16.158188 Anserini +test1786 Q0 17321336 20 16.096575 Anserini +test1786 Q0 5682279 21 16.084513 Anserini +test1786 Q0 1333811 22 15.835546 Anserini +test1786 Q0 1188533 23 15.741135 Anserini +test1786 Q0 17321345 24 15.740869 Anserini +test1786 Q0 15156817 25 15.602660 Anserini +test1786 Q0 15156836 26 15.503546 Anserini +test1786 Q0 15156808 27 15.503546 Anserini +test1786 Q0 15156809 28 15.452775 Anserini +test1786 Q0 15156816 29 15.433118 Anserini +test1786 Q0 1186698 30 15.387450 Anserini +test1787 Q0 2382846 1 15.648422 Anserini +test1787 Q0 677808 2 13.998352 Anserini +test1787 Q0 334999 3 13.723692 Anserini +test1787 Q0 2100145 4 13.472946 Anserini +test1787 Q0 334960 5 13.440883 Anserini +test1787 Q0 9704664 6 13.331721 Anserini +test1787 Q0 6782822 7 13.206633 Anserini +test1787 Q0 6782825 8 13.162170 Anserini +test1787 Q0 7248084 9 13.149872 Anserini +test1787 Q0 334997 10 13.111036 Anserini +test1787 Q0 5013136 11 13.090853 Anserini +test1787 Q0 7997989 12 13.054753 Anserini +test1787 Q0 4721276 13 13.037927 Anserini +test1787 Q0 4721274 14 13.037927 Anserini +test1787 Q0 6198457 15 12.874310 Anserini +test1787 Q0 7530594 16 12.873438 Anserini +test1787 Q0 18269883 17 12.742895 Anserini +test1787 Q0 1655695 18 12.528881 Anserini +test1787 Q0 6198453 19 12.511145 Anserini +test1787 Q0 3691774 20 12.499952 Anserini +test1787 Q0 11196016 21 12.445631 Anserini +test1787 Q0 13615442 22 12.445631 Anserini +test1787 Q0 8878769 23 12.414795 Anserini +test1787 Q0 6782823 24 12.372452 Anserini +test1787 Q0 13132155 25 12.324119 Anserini +test1787 Q0 2859383 26 12.320189 Anserini +test1787 Q0 335031 27 12.299973 Anserini +test1787 Q0 6782824 28 12.268758 Anserini +test1787 Q0 2100146 29 12.243606 Anserini +test1787 Q0 18720378 30 12.187357 Anserini +test1788 Q0 2304241 1 13.021260 Anserini +test1788 Q0 5207744 2 12.897551 Anserini +test1788 Q0 2304243 3 12.161373 Anserini +test1788 Q0 5207738 4 12.152607 Anserini +test1788 Q0 1308051 5 12.098579 Anserini +test1788 Q0 2304229 6 11.501885 Anserini +test1788 Q0 2304240 7 11.467062 Anserini +test1788 Q0 5112364 8 11.416817 Anserini +test1788 Q0 1654262 9 11.353228 Anserini +test1788 Q0 2484286 10 11.317503 Anserini +test1788 Q0 900750 11 11.082360 Anserini +test1788 Q0 5207742 12 10.877048 Anserini +test1788 Q0 6526006 13 10.869436 Anserini +test1788 Q0 4528162 14 10.570042 Anserini +test1788 Q0 13167427 15 10.532350 Anserini +test1788 Q0 964107 16 10.497952 Anserini +test1788 Q0 2304233 17 10.312127 Anserini +test1788 Q0 867860 18 10.266480 Anserini +test1788 Q0 14573371 19 10.228296 Anserini +test1788 Q0 5050979 20 10.206190 Anserini +test1788 Q0 379211 21 10.200780 Anserini +test1788 Q0 867831 22 10.148651 Anserini +test1788 Q0 3479544 23 10.146666 Anserini +test1788 Q0 11276929 24 10.088229 Anserini +test1788 Q0 6617010 25 10.077587 Anserini +test1788 Q0 5489555 26 10.074596 Anserini +test1788 Q0 2288691 27 10.074064 Anserini +test1788 Q0 14427046 28 10.064054 Anserini +test1788 Q0 9886945 29 10.061474 Anserini +test1788 Q0 224960 30 10.012636 Anserini +test1789 Q0 19558190 1 11.954387 Anserini +test1789 Q0 18019974 2 11.638226 Anserini +test1789 Q0 18019982 3 11.244543 Anserini +test1789 Q0 15388775 4 10.486773 Anserini +test1789 Q0 19558191 5 10.403374 Anserini +test1789 Q0 19558192 6 10.351835 Anserini +test1789 Q0 15388781 7 10.069028 Anserini +test1789 Q0 10725741 8 10.043057 Anserini +test1789 Q0 10725729 9 10.043057 Anserini +test1789 Q0 12023534 10 9.966150 Anserini +test1789 Q0 18850182 11 9.655380 Anserini +test1789 Q0 10725740 12 9.532098 Anserini +test1789 Q0 18414059 13 9.391623 Anserini +test1789 Q0 14007193 14 9.325812 Anserini +test1789 Q0 18611254 15 9.315468 Anserini +test1789 Q0 14007197 16 9.204875 Anserini +test1789 Q0 18850189 17 9.203247 Anserini +test1789 Q0 7639797 18 9.171057 Anserini +test1789 Q0 8147412 19 9.148302 Anserini +test1789 Q0 20224563 20 9.137484 Anserini +test1789 Q0 15936335 21 9.119189 Anserini +test1789 Q0 18611251 22 9.114105 Anserini +test1789 Q0 18611250 23 9.083103 Anserini +test1789 Q0 17545986 24 9.070705 Anserini +test1789 Q0 5384371 25 9.070705 Anserini +test1789 Q0 18019981 26 9.021726 Anserini +test1789 Q0 19028935 27 8.846625 Anserini +test1789 Q0 11695602 28 8.845057 Anserini +test1789 Q0 1072476 29 8.827871 Anserini +test1789 Q0 16509199 30 8.808096 Anserini +test179 Q0 9327303 1 15.374038 Anserini +test179 Q0 9327299 2 15.287626 Anserini +test179 Q0 15956267 3 13.106112 Anserini +test179 Q0 15909488 4 12.556687 Anserini +test179 Q0 1770431 5 11.890823 Anserini +test179 Q0 6447837 6 11.739641 Anserini +test179 Q0 9327300 7 11.436123 Anserini +test179 Q0 2820524 8 11.335787 Anserini +test179 Q0 15758710 9 11.252175 Anserini +test179 Q0 10839707 10 11.225001 Anserini +test179 Q0 2792755 11 11.112322 Anserini +test179 Q0 6447838 12 11.024394 Anserini +test179 Q0 1274122 13 10.988668 Anserini +test179 Q0 10889157 14 10.988668 Anserini +test179 Q0 7648723 15 10.988668 Anserini +test179 Q0 15729770 16 10.943184 Anserini +test179 Q0 15758707 17 10.912024 Anserini +test179 Q0 9991678 18 10.896229 Anserini +test179 Q0 13587936 19 10.882069 Anserini +test179 Q0 4857593 20 10.874368 Anserini +test179 Q0 3153384 21 10.803193 Anserini +test179 Q0 9857674 22 10.788877 Anserini +test179 Q0 13813811 23 10.774907 Anserini +test179 Q0 10889164 24 10.652257 Anserini +test179 Q0 9857683 25 10.627490 Anserini +test179 Q0 16048402 26 10.425227 Anserini +test179 Q0 6576841 27 10.395300 Anserini +test179 Q0 8782167 28 10.386511 Anserini +test179 Q0 8495802 29 10.359322 Anserini +test179 Q0 11384238 30 10.345549 Anserini +test1790 Q0 9571152 1 13.311922 Anserini +test1790 Q0 2254605 2 13.219174 Anserini +test1790 Q0 807630 3 13.092497 Anserini +test1790 Q0 9148832 4 13.013614 Anserini +test1790 Q0 13049436 5 12.977021 Anserini +test1790 Q0 369827 6 12.541151 Anserini +test1790 Q0 11763243 7 12.401503 Anserini +test1790 Q0 7482712 8 12.355866 Anserini +test1790 Q0 16235626 9 12.346594 Anserini +test1790 Q0 17284260 10 12.269995 Anserini +test1790 Q0 13518715 11 12.132860 Anserini +test1790 Q0 15010741 12 12.117828 Anserini +test1790 Q0 3149803 13 12.054189 Anserini +test1790 Q0 17427352 14 12.034380 Anserini +test1790 Q0 4910127 15 12.009665 Anserini +test1790 Q0 10117372 16 11.965599 Anserini +test1790 Q0 16344094 17 11.896029 Anserini +test1790 Q0 12690504 18 11.889360 Anserini +test1790 Q0 7814814 19 11.881349 Anserini +test1790 Q0 2955626 20 11.824919 Anserini +test1790 Q0 3105288 21 11.778295 Anserini +test1790 Q0 3176900 22 11.709481 Anserini +test1790 Q0 5268081 23 11.693574 Anserini +test1790 Q0 9489416 24 11.596401 Anserini +test1790 Q0 40578 25 11.581568 Anserini +test1790 Q0 5593433 26 11.577807 Anserini +test1790 Q0 5593428 27 11.577807 Anserini +test1790 Q0 12238933 28 11.574655 Anserini +test1790 Q0 437883 29 11.550677 Anserini +test1790 Q0 10418262 30 11.534643 Anserini +test1791 Q0 11001532 1 13.688788 Anserini +test1791 Q0 2556827 2 13.288345 Anserini +test1791 Q0 15084942 3 13.061819 Anserini +test1791 Q0 3151507 4 13.023409 Anserini +test1791 Q0 1511064 5 12.844660 Anserini +test1791 Q0 16232012 6 12.619474 Anserini +test1791 Q0 12310570 7 12.591971 Anserini +test1791 Q0 7613551 8 12.486990 Anserini +test1791 Q0 498976 9 12.395754 Anserini +test1791 Q0 8065540 10 12.339165 Anserini +test1791 Q0 13983441 11 12.332626 Anserini +test1791 Q0 835408 12 12.326210 Anserini +test1791 Q0 2388828 13 12.254594 Anserini +test1791 Q0 16237144 14 12.159211 Anserini +test1791 Q0 15955120 15 12.112421 Anserini +test1791 Q0 3810648 16 12.044594 Anserini +test1791 Q0 7107627 17 12.008724 Anserini +test1791 Q0 9104544 18 11.964500 Anserini +test1791 Q0 16694251 19 11.954526 Anserini +test1791 Q0 5618053 20 11.896513 Anserini +test1791 Q0 1064861 21 11.887242 Anserini +test1791 Q0 11029237 22 11.883250 Anserini +test1791 Q0 20567981 23 11.871290 Anserini +test1791 Q0 15053569 24 11.867237 Anserini +test1791 Q0 20799006 25 11.862593 Anserini +test1791 Q0 7296952 26 11.862196 Anserini +test1791 Q0 20051980 27 11.857267 Anserini +test1791 Q0 15743265 28 11.846638 Anserini +test1791 Q0 15409918 29 11.841846 Anserini +test1791 Q0 15955441 30 11.827790 Anserini +test1792 Q0 17643069 1 13.386876 Anserini +test1792 Q0 13066099 2 12.976838 Anserini +test1792 Q0 17093447 3 12.597380 Anserini +test1792 Q0 19232623 4 12.496054 Anserini +test1792 Q0 14785429 5 12.474761 Anserini +test1792 Q0 10995318 6 12.440817 Anserini +test1792 Q0 10368574 7 12.312180 Anserini +test1792 Q0 9591020 8 12.203731 Anserini +test1792 Q0 5372521 9 12.180140 Anserini +test1792 Q0 9085320 10 12.133221 Anserini +test1792 Q0 15610248 11 12.122922 Anserini +test1792 Q0 13236271 12 12.115908 Anserini +test1792 Q0 17500406 13 12.105525 Anserini +test1792 Q0 8575400 14 12.061441 Anserini +test1792 Q0 12613878 15 12.040943 Anserini +test1792 Q0 5794042 16 11.987070 Anserini +test1792 Q0 14271299 17 11.971371 Anserini +test1792 Q0 9285789 18 11.895025 Anserini +test1792 Q0 20994537 19 11.894527 Anserini +test1792 Q0 7228867 20 11.866877 Anserini +test1792 Q0 17643074 21 11.866076 Anserini +test1792 Q0 14271300 22 11.854807 Anserini +test1792 Q0 17643070 23 11.832737 Anserini +test1792 Q0 11484771 24 11.809435 Anserini +test1792 Q0 8099902 25 11.808352 Anserini +test1792 Q0 10305648 26 11.766671 Anserini +test1792 Q0 15039272 27 11.763206 Anserini +test1792 Q0 8559703 28 11.750034 Anserini +test1792 Q0 20720166 29 11.735687 Anserini +test1792 Q0 10272404 30 11.696935 Anserini +test1793 Q0 20963112 1 14.681658 Anserini +test1793 Q0 12430370 2 14.403138 Anserini +test1793 Q0 18602904 3 13.956456 Anserini +test1793 Q0 17517988 4 13.821695 Anserini +test1793 Q0 19829437 5 13.821233 Anserini +test1793 Q0 17517981 6 13.789429 Anserini +test1793 Q0 19864344 7 13.721172 Anserini +test1793 Q0 5320883 8 13.554935 Anserini +test1793 Q0 19674850 9 13.367216 Anserini +test1793 Q0 1501421 10 13.269293 Anserini +test1793 Q0 20307022 11 13.214664 Anserini +test1793 Q0 372807 12 13.180577 Anserini +test1793 Q0 16378610 13 13.155674 Anserini +test1793 Q0 9853565 14 13.091370 Anserini +test1793 Q0 9853566 15 13.091370 Anserini +test1793 Q0 16165316 16 13.054797 Anserini +test1793 Q0 16165317 17 13.054797 Anserini +test1793 Q0 15674962 18 13.054797 Anserini +test1793 Q0 15674963 19 13.054797 Anserini +test1793 Q0 17052587 20 13.054797 Anserini +test1793 Q0 17052588 21 13.054797 Anserini +test1793 Q0 19530921 22 13.054797 Anserini +test1793 Q0 14279004 23 13.054797 Anserini +test1793 Q0 8141034 24 13.020237 Anserini +test1793 Q0 14279005 25 13.002364 Anserini +test1793 Q0 19530922 26 13.002364 Anserini +test1793 Q0 5320890 27 12.941830 Anserini +test1793 Q0 7681646 28 12.909957 Anserini +test1793 Q0 19674852 29 12.906511 Anserini +test1793 Q0 3110509 30 12.868165 Anserini +test1794 Q0 7876531 1 9.137964 Anserini +test1794 Q0 7635636 2 9.094861 Anserini +test1794 Q0 7078794 3 8.965339 Anserini +test1794 Q0 3498150 4 8.944643 Anserini +test1794 Q0 1684717 5 8.762053 Anserini +test1794 Q0 19739229 6 8.742169 Anserini +test1794 Q0 8607390 7 8.686923 Anserini +test1794 Q0 7094949 8 8.600381 Anserini +test1794 Q0 15520009 9 8.553304 Anserini +test1794 Q0 1412933 10 8.444604 Anserini +test1794 Q0 2804704 11 8.435146 Anserini +test1794 Q0 3379038 12 8.265455 Anserini +test1794 Q0 570927 13 8.244692 Anserini +test1794 Q0 7876530 14 8.140724 Anserini +test1794 Q0 1526400 15 8.054343 Anserini +test1794 Q0 13753953 16 8.046225 Anserini +test1794 Q0 15146823 17 8.036235 Anserini +test1794 Q0 7366815 18 7.900386 Anserini +test1794 Q0 1526417 19 7.892525 Anserini +test1794 Q0 448802 20 7.832488 Anserini +test1794 Q0 1525089 21 7.750035 Anserini +test1794 Q0 10521354 22 7.750035 Anserini +test1794 Q0 7005174 23 7.700826 Anserini +test1794 Q0 3837123 24 7.695599 Anserini +test1794 Q0 20448075 25 7.681478 Anserini +test1794 Q0 20448078 26 7.681478 Anserini +test1794 Q0 1987092 27 7.681478 Anserini +test1794 Q0 9910911 28 7.674959 Anserini +test1794 Q0 9877282 29 7.670847 Anserini +test1794 Q0 7798415 30 7.669300 Anserini +test1795 Q0 4878420 1 14.139643 Anserini +test1795 Q0 6508703 2 14.097417 Anserini +test1795 Q0 2081405 3 14.056957 Anserini +test1795 Q0 13470640 4 13.727893 Anserini +test1795 Q0 1924349 5 12.983593 Anserini +test1795 Q0 5213317 6 12.257150 Anserini +test1795 Q0 2081431 7 12.231227 Anserini +test1795 Q0 11919510 8 12.178349 Anserini +test1795 Q0 6685804 9 11.839390 Anserini +test1795 Q0 4878416 10 11.779793 Anserini +test1795 Q0 11069461 11 11.758574 Anserini +test1795 Q0 4878417 12 11.626635 Anserini +test1795 Q0 783648 13 11.593918 Anserini +test1795 Q0 14569748 14 11.484172 Anserini +test1795 Q0 8188211 15 11.441297 Anserini +test1795 Q0 5977944 16 11.425206 Anserini +test1795 Q0 14569749 17 11.392105 Anserini +test1795 Q0 1145387 18 11.336498 Anserini +test1795 Q0 1524827 19 11.336498 Anserini +test1795 Q0 5848767 20 11.241838 Anserini +test1795 Q0 7030768 21 11.184573 Anserini +test1795 Q0 6936968 22 11.170467 Anserini +test1795 Q0 18957245 23 11.169602 Anserini +test1795 Q0 16000840 24 11.145107 Anserini +test1795 Q0 7624766 25 11.104030 Anserini +test1795 Q0 12606878 26 11.096452 Anserini +test1795 Q0 9168828 27 11.046956 Anserini +test1795 Q0 16869589 28 10.994568 Anserini +test1795 Q0 9168827 29 10.953848 Anserini +test1795 Q0 1741900 30 10.920457 Anserini +test1796 Q0 405651 1 15.930267 Anserini +test1796 Q0 405547 2 15.853197 Anserini +test1796 Q0 7132615 3 15.509201 Anserini +test1796 Q0 11855604 4 15.300827 Anserini +test1796 Q0 4669337 5 15.273533 Anserini +test1796 Q0 16150461 6 15.255810 Anserini +test1796 Q0 405605 7 15.040654 Anserini +test1796 Q0 16062844 8 15.029834 Anserini +test1796 Q0 753559 9 14.975518 Anserini +test1796 Q0 2438037 10 14.886157 Anserini +test1796 Q0 11077610 11 14.829375 Anserini +test1796 Q0 14705231 12 14.795313 Anserini +test1796 Q0 5500574 13 14.715199 Anserini +test1796 Q0 18129226 14 14.632092 Anserini +test1796 Q0 9215953 15 14.607775 Anserini +test1796 Q0 1819288 16 14.539438 Anserini +test1796 Q0 7594743 17 14.503239 Anserini +test1796 Q0 9052682 18 14.485216 Anserini +test1796 Q0 18037292 19 14.452810 Anserini +test1796 Q0 2315422 20 14.376002 Anserini +test1796 Q0 11077608 21 14.206299 Anserini +test1796 Q0 450897 22 14.173433 Anserini +test1796 Q0 4669333 23 14.019146 Anserini +test1796 Q0 284654 24 14.019146 Anserini +test1796 Q0 9052752 25 13.980061 Anserini +test1796 Q0 4865821 26 13.976215 Anserini +test1796 Q0 4669347 27 13.935735 Anserini +test1796 Q0 11077613 28 13.928915 Anserini +test1796 Q0 4524559 29 13.903434 Anserini +test1796 Q0 405548 30 13.885952 Anserini +test1797 Q0 119134 1 13.585526 Anserini +test1797 Q0 1320123 2 13.294315 Anserini +test1797 Q0 13372262 3 12.954356 Anserini +test1797 Q0 1320024 4 12.617618 Anserini +test1797 Q0 4914632 5 12.617618 Anserini +test1797 Q0 8030649 6 12.605373 Anserini +test1797 Q0 12893987 7 12.112897 Anserini +test1797 Q0 8710011 8 12.006278 Anserini +test1797 Q0 6739913 9 11.974205 Anserini +test1797 Q0 13879795 10 11.812193 Anserini +test1797 Q0 7587919 11 11.764648 Anserini +test1797 Q0 4785351 12 11.617108 Anserini +test1797 Q0 17081593 13 11.472267 Anserini +test1797 Q0 3661496 14 11.371680 Anserini +test1797 Q0 1679509 15 11.364439 Anserini +test1797 Q0 11698094 16 11.323267 Anserini +test1797 Q0 10415641 17 11.314800 Anserini +test1797 Q0 2794927 18 11.305803 Anserini +test1797 Q0 18770462 19 11.286445 Anserini +test1797 Q0 9409024 20 11.275148 Anserini +test1797 Q0 2756090 21 11.266380 Anserini +test1797 Q0 3427041 22 11.221074 Anserini +test1797 Q0 1391196 23 11.209394 Anserini +test1797 Q0 662394 24 11.197123 Anserini +test1797 Q0 12697161 25 11.190144 Anserini +test1797 Q0 3970306 26 11.189865 Anserini +test1797 Q0 16303225 27 11.189810 Anserini +test1797 Q0 6941958 28 11.148282 Anserini +test1797 Q0 1346401 29 11.112303 Anserini +test1797 Q0 6739914 30 11.090862 Anserini +test1798 Q0 1320597 1 12.602767 Anserini +test1798 Q0 1598388 2 11.712714 Anserini +test1798 Q0 5544126 3 11.056097 Anserini +test1798 Q0 3406047 4 10.824228 Anserini +test1798 Q0 20988405 5 10.710091 Anserini +test1798 Q0 2284582 6 10.417992 Anserini +test1798 Q0 15686628 7 10.407860 Anserini +test1798 Q0 8127777 8 10.407105 Anserini +test1798 Q0 5384153 9 10.234566 Anserini +test1798 Q0 2680470 10 10.143071 Anserini +test1798 Q0 9374041 11 9.986147 Anserini +test1798 Q0 5652998 12 9.920527 Anserini +test1798 Q0 10289783 13 9.916937 Anserini +test1798 Q0 3818572 14 9.890617 Anserini +test1798 Q0 2175418 15 9.869871 Anserini +test1798 Q0 14972731 16 9.865695 Anserini +test1798 Q0 18217988 17 9.824417 Anserini +test1798 Q0 9402879 18 9.815013 Anserini +test1798 Q0 20759012 19 9.795637 Anserini +test1798 Q0 3336429 20 9.788336 Anserini +test1798 Q0 15410708 21 9.690506 Anserini +test1798 Q0 19149002 22 9.688105 Anserini +test1798 Q0 20009511 23 9.688105 Anserini +test1798 Q0 437919 24 9.686798 Anserini +test1798 Q0 8690038 25 9.686798 Anserini +test1798 Q0 10906577 26 9.679392 Anserini +test1798 Q0 18683803 27 9.674382 Anserini +test1798 Q0 19537876 28 9.672333 Anserini +test1798 Q0 5244070 29 9.653414 Anserini +test1798 Q0 12199863 30 9.643465 Anserini +test1799 Q0 1820255 1 11.218567 Anserini +test1799 Q0 1820231 2 11.183059 Anserini +test1799 Q0 1820253 3 10.463269 Anserini +test1799 Q0 5620955 4 9.968456 Anserini +test1799 Q0 16989105 5 9.876644 Anserini +test1799 Q0 10861915 6 9.318494 Anserini +test1799 Q0 524131 7 9.202805 Anserini +test1799 Q0 11539462 8 9.159803 Anserini +test1799 Q0 16731742 9 9.131665 Anserini +test1799 Q0 11539453 10 9.109038 Anserini +test1799 Q0 1565882 11 9.040156 Anserini +test1799 Q0 10861909 12 9.023772 Anserini +test1799 Q0 19885582 13 8.951727 Anserini +test1799 Q0 5620965 14 8.939086 Anserini +test1799 Q0 5513273 15 8.845867 Anserini +test1799 Q0 4695063 16 8.794495 Anserini +test1799 Q0 4695068 17 8.794495 Anserini +test1799 Q0 10226149 18 8.790911 Anserini +test1799 Q0 721857 19 8.773617 Anserini +test1799 Q0 19885571 20 8.769452 Anserini +test1799 Q0 15441728 21 8.762577 Anserini +test1799 Q0 10226148 22 8.742945 Anserini +test1799 Q0 20073332 23 8.739445 Anserini +test1799 Q0 20073331 24 8.681881 Anserini +test1799 Q0 5529156 25 8.675882 Anserini +test1799 Q0 5529154 26 8.675882 Anserini +test1799 Q0 3510353 27 8.659260 Anserini +test1799 Q0 3006392 28 8.618753 Anserini +test1799 Q0 18650198 29 8.615634 Anserini +test1799 Q0 9255829 30 8.595881 Anserini +test18 Q0 6822835 1 10.545891 Anserini +test18 Q0 11043217 2 10.532856 Anserini +test18 Q0 17652493 3 10.191091 Anserini +test18 Q0 2315321 4 9.936632 Anserini +test18 Q0 6600303 5 9.888721 Anserini +test18 Q0 2315334 6 9.683278 Anserini +test18 Q0 11043218 7 9.667712 Anserini +test18 Q0 2273567 8 9.513891 Anserini +test18 Q0 5510028 9 9.485176 Anserini +test18 Q0 12813956 10 9.457246 Anserini +test18 Q0 15448459 11 9.407739 Anserini +test18 Q0 7149992 12 9.397876 Anserini +test18 Q0 598891 13 9.350793 Anserini +test18 Q0 8704883 14 9.286160 Anserini +test18 Q0 15448461 15 9.275364 Anserini +test18 Q0 15983776 16 9.275055 Anserini +test18 Q0 18061373 17 9.273223 Anserini +test18 Q0 12973823 18 9.238039 Anserini +test18 Q0 1528280 19 9.222756 Anserini +test18 Q0 3440914 20 9.217701 Anserini +test18 Q0 11043219 21 9.202783 Anserini +test18 Q0 5515699 22 9.178162 Anserini +test18 Q0 88540 23 9.155193 Anserini +test18 Q0 15345864 24 9.120903 Anserini +test18 Q0 2329020 25 9.110210 Anserini +test18 Q0 4738872 26 9.083435 Anserini +test18 Q0 1528293 27 9.068187 Anserini +test18 Q0 18661298 28 9.053227 Anserini +test18 Q0 15447538 29 9.027786 Anserini +test18 Q0 14723996 30 9.015769 Anserini +test180 Q0 7996633 1 20.445393 Anserini +test180 Q0 7996648 2 20.361675 Anserini +test180 Q0 6307471 3 19.129211 Anserini +test180 Q0 7996638 4 18.840942 Anserini +test180 Q0 13143649 5 18.698984 Anserini +test180 Q0 1872434 6 18.561369 Anserini +test180 Q0 1872436 7 18.361498 Anserini +test180 Q0 9856172 8 18.271048 Anserini +test180 Q0 7996634 9 18.267487 Anserini +test180 Q0 12399305 10 18.239716 Anserini +test180 Q0 12399307 11 18.239716 Anserini +test180 Q0 9856173 12 18.225727 Anserini +test180 Q0 1518459 13 17.544306 Anserini +test180 Q0 1518469 14 17.418470 Anserini +test180 Q0 7996637 15 17.362812 Anserini +test180 Q0 1518466 16 17.101208 Anserini +test180 Q0 19228795 17 16.916012 Anserini +test180 Q0 7996636 18 16.899694 Anserini +test180 Q0 1518460 19 16.722569 Anserini +test180 Q0 7996642 20 16.356783 Anserini +test180 Q0 19228798 21 16.231125 Anserini +test180 Q0 7996639 22 16.149448 Anserini +test180 Q0 19228802 23 16.061214 Anserini +test180 Q0 7292050 24 16.052645 Anserini +test180 Q0 7996647 25 15.398666 Anserini +test180 Q0 1518465 26 15.280784 Anserini +test180 Q0 7744642 27 15.273460 Anserini +test180 Q0 6469881 28 15.258253 Anserini +test180 Q0 8696248 29 15.151335 Anserini +test180 Q0 7996641 30 15.098961 Anserini +test1800 Q0 4285331 1 20.329136 Anserini +test1800 Q0 12087473 2 20.110149 Anserini +test1800 Q0 14414839 3 20.110149 Anserini +test1800 Q0 20572198 4 20.068705 Anserini +test1800 Q0 11353652 5 19.832439 Anserini +test1800 Q0 4285333 6 19.795937 Anserini +test1800 Q0 11414291 7 19.742657 Anserini +test1800 Q0 11353655 8 19.485672 Anserini +test1800 Q0 20562604 9 19.476242 Anserini +test1800 Q0 16096816 10 19.466488 Anserini +test1800 Q0 11414289 11 19.279308 Anserini +test1800 Q0 18704580 12 19.204575 Anserini +test1800 Q0 20562603 13 19.204575 Anserini +test1800 Q0 11380394 14 19.125130 Anserini +test1800 Q0 16096804 15 19.121906 Anserini +test1800 Q0 2109234 16 19.119520 Anserini +test1800 Q0 5485961 17 19.114307 Anserini +test1800 Q0 18733772 18 18.913517 Anserini +test1800 Q0 18704578 19 18.853577 Anserini +test1800 Q0 20572197 20 18.847893 Anserini +test1800 Q0 16443387 21 18.822508 Anserini +test1800 Q0 14414842 22 18.786110 Anserini +test1800 Q0 16443378 23 18.615963 Anserini +test1800 Q0 20056156 24 18.550785 Anserini +test1800 Q0 13103382 25 18.547909 Anserini +test1800 Q0 11424582 26 18.478746 Anserini +test1800 Q0 11424400 27 18.478746 Anserini +test1800 Q0 11424405 28 18.478746 Anserini +test1800 Q0 12511471 29 18.478746 Anserini +test1800 Q0 4285403 30 18.350174 Anserini +test1801 Q0 268034 1 35.512367 Anserini +test1801 Q0 43984 2 32.998623 Anserini +test1801 Q0 3934423 3 29.964453 Anserini +test1801 Q0 4327544 4 27.965536 Anserini +test1801 Q0 268045 5 26.582504 Anserini +test1801 Q0 6089063 6 24.339916 Anserini +test1801 Q0 1784831 7 24.100885 Anserini +test1801 Q0 13139172 8 23.981907 Anserini +test1801 Q0 2254560 9 23.495743 Anserini +test1801 Q0 252449 10 23.011259 Anserini +test1801 Q0 19770875 11 22.089211 Anserini +test1801 Q0 3036507 12 22.089211 Anserini +test1801 Q0 10482211 13 21.633730 Anserini +test1801 Q0 14971266 14 20.931122 Anserini +test1801 Q0 43921 15 20.715322 Anserini +test1801 Q0 17211414 16 20.715322 Anserini +test1801 Q0 6230676 17 20.159515 Anserini +test1801 Q0 6089794 18 19.671581 Anserini +test1801 Q0 5958531 19 18.280098 Anserini +test1801 Q0 2256801 20 18.101131 Anserini +test1801 Q0 10969601 21 18.016329 Anserini +test1801 Q0 4279051 22 17.925987 Anserini +test1801 Q0 6089785 23 17.893759 Anserini +test1801 Q0 268026 24 17.776978 Anserini +test1801 Q0 268053 25 17.717871 Anserini +test1801 Q0 2470019 26 17.585690 Anserini +test1801 Q0 5958526 27 17.413036 Anserini +test1801 Q0 18519566 28 17.400566 Anserini +test1801 Q0 18519562 29 17.400566 Anserini +test1801 Q0 2469952 30 17.400566 Anserini +test1802 Q0 2721436 1 13.007538 Anserini +test1802 Q0 14920250 2 11.955451 Anserini +test1802 Q0 2721432 3 11.712106 Anserini +test1802 Q0 19817011 4 11.533705 Anserini +test1802 Q0 14973449 5 11.410990 Anserini +test1802 Q0 19817003 6 11.239742 Anserini +test1802 Q0 7845254 7 11.187315 Anserini +test1802 Q0 2721442 8 10.968716 Anserini +test1802 Q0 2065631 9 10.913670 Anserini +test1802 Q0 4735771 10 10.888234 Anserini +test1802 Q0 2721439 11 10.790807 Anserini +test1802 Q0 3264028 12 10.730799 Anserini +test1802 Q0 2721429 13 10.726931 Anserini +test1802 Q0 14624383 14 10.669413 Anserini +test1802 Q0 20512980 15 10.609052 Anserini +test1802 Q0 2721427 16 10.603188 Anserini +test1802 Q0 12474813 17 10.455335 Anserini +test1802 Q0 10186945 18 10.386924 Anserini +test1802 Q0 14973548 19 10.340464 Anserini +test1802 Q0 11398205 20 10.274074 Anserini +test1802 Q0 2065600 21 10.271104 Anserini +test1802 Q0 7845255 22 10.258789 Anserini +test1802 Q0 14920247 23 10.229278 Anserini +test1802 Q0 12043058 24 10.222346 Anserini +test1802 Q0 4828014 25 10.172031 Anserini +test1802 Q0 18615747 26 10.162991 Anserini +test1802 Q0 14914368 27 10.139904 Anserini +test1802 Q0 12043061 28 10.079248 Anserini +test1802 Q0 3769480 29 9.917734 Anserini +test1802 Q0 15860534 30 9.894709 Anserini +test1803 Q0 8623499 1 23.349483 Anserini +test1803 Q0 3248272 2 22.284218 Anserini +test1803 Q0 3248277 3 22.148790 Anserini +test1803 Q0 12661956 4 21.763783 Anserini +test1803 Q0 4081552 5 21.741894 Anserini +test1803 Q0 2903806 6 21.298738 Anserini +test1803 Q0 6770400 7 20.114468 Anserini +test1803 Q0 8501899 8 19.853588 Anserini +test1803 Q0 2903812 9 19.751152 Anserini +test1803 Q0 1369547 10 19.031864 Anserini +test1803 Q0 2903816 11 18.923691 Anserini +test1803 Q0 18683027 12 18.903328 Anserini +test1803 Q0 3248276 13 18.897755 Anserini +test1803 Q0 3099259 14 18.050358 Anserini +test1803 Q0 11147855 15 17.902168 Anserini +test1803 Q0 3099254 16 17.472525 Anserini +test1803 Q0 865716 17 17.415461 Anserini +test1803 Q0 7130032 18 16.909222 Anserini +test1803 Q0 2903814 19 16.719351 Anserini +test1803 Q0 12969906 20 16.612589 Anserini +test1803 Q0 15247129 21 16.529465 Anserini +test1803 Q0 3799310 22 16.255108 Anserini +test1803 Q0 5647300 23 16.115753 Anserini +test1803 Q0 3248275 24 16.079014 Anserini +test1803 Q0 2344499 25 16.074291 Anserini +test1803 Q0 22218 26 16.074291 Anserini +test1803 Q0 2918964 27 15.944173 Anserini +test1803 Q0 2918966 28 15.831882 Anserini +test1803 Q0 4994600 29 15.754170 Anserini +test1803 Q0 4633139 30 15.721160 Anserini +test1804 Q0 19158689 1 11.207578 Anserini +test1804 Q0 4917052 2 11.162271 Anserini +test1804 Q0 4917058 3 11.162271 Anserini +test1804 Q0 19158685 4 11.149474 Anserini +test1804 Q0 12793941 5 10.819046 Anserini +test1804 Q0 8912822 6 10.680887 Anserini +test1804 Q0 1414838 7 10.658381 Anserini +test1804 Q0 6502886 8 10.494681 Anserini +test1804 Q0 17148442 9 10.474407 Anserini +test1804 Q0 18769461 10 10.463744 Anserini +test1804 Q0 9777818 11 10.375793 Anserini +test1804 Q0 18313571 12 10.363901 Anserini +test1804 Q0 16041952 13 10.353431 Anserini +test1804 Q0 10391886 14 10.280544 Anserini +test1804 Q0 740553 15 10.194059 Anserini +test1804 Q0 15125508 16 10.127111 Anserini +test1804 Q0 13856891 17 10.008153 Anserini +test1804 Q0 16675044 18 9.964839 Anserini +test1804 Q0 8263606 19 9.935760 Anserini +test1804 Q0 4562463 20 9.920710 Anserini +test1804 Q0 12252428 21 9.912037 Anserini +test1804 Q0 10391883 22 9.769168 Anserini +test1804 Q0 15419315 23 9.769168 Anserini +test1804 Q0 4917048 24 9.757689 Anserini +test1804 Q0 20080703 25 9.711125 Anserini +test1804 Q0 12904025 26 9.700438 Anserini +test1804 Q0 10526332 27 9.641523 Anserini +test1804 Q0 13157657 28 9.586986 Anserini +test1804 Q0 1414839 29 9.567149 Anserini +test1804 Q0 4917043 30 9.566228 Anserini +test1805 Q0 6693571 1 16.486498 Anserini +test1805 Q0 4157259 2 16.110123 Anserini +test1805 Q0 107432 3 15.930251 Anserini +test1805 Q0 6693574 4 15.611989 Anserini +test1805 Q0 1297745 5 14.810893 Anserini +test1805 Q0 107382 6 14.661181 Anserini +test1805 Q0 11086036 7 14.599120 Anserini +test1805 Q0 5465548 8 14.451159 Anserini +test1805 Q0 5465540 9 14.335905 Anserini +test1805 Q0 17558736 10 14.335905 Anserini +test1805 Q0 6384884 11 14.222552 Anserini +test1805 Q0 13972695 12 14.111053 Anserini +test1805 Q0 107371 13 13.865562 Anserini +test1805 Q0 7114769 14 13.689039 Anserini +test1805 Q0 11110703 15 13.529702 Anserini +test1805 Q0 11110704 16 13.477587 Anserini +test1805 Q0 10477652 17 13.371687 Anserini +test1805 Q0 4993071 18 13.371687 Anserini +test1805 Q0 18596777 19 13.254272 Anserini +test1805 Q0 5758314 20 13.240963 Anserini +test1805 Q0 4811310 21 13.170067 Anserini +test1805 Q0 17016336 22 13.163772 Anserini +test1805 Q0 17016333 23 13.163772 Anserini +test1805 Q0 107430 24 13.059019 Anserini +test1805 Q0 16876684 25 13.039164 Anserini +test1805 Q0 17759918 26 13.017035 Anserini +test1805 Q0 4010528 27 12.995047 Anserini +test1805 Q0 8571078 28 12.919925 Anserini +test1805 Q0 2421403 29 12.907790 Anserini +test1805 Q0 16214216 30 12.878546 Anserini +test1806 Q0 19243009 1 15.566887 Anserini +test1806 Q0 19342063 2 14.380399 Anserini +test1806 Q0 4950865 3 13.190912 Anserini +test1806 Q0 19243005 4 13.146348 Anserini +test1806 Q0 7516196 5 13.127051 Anserini +test1806 Q0 19243007 6 12.339293 Anserini +test1806 Q0 4574896 7 12.167711 Anserini +test1806 Q0 14470379 8 11.948696 Anserini +test1806 Q0 12026093 9 11.729513 Anserini +test1806 Q0 13788541 10 11.634656 Anserini +test1806 Q0 6636933 11 11.488622 Anserini +test1806 Q0 20528569 12 11.484406 Anserini +test1806 Q0 2713006 13 11.475879 Anserini +test1806 Q0 10244003 14 11.472301 Anserini +test1806 Q0 484696 15 11.379637 Anserini +test1806 Q0 18370429 16 11.320967 Anserini +test1806 Q0 3646325 17 11.320967 Anserini +test1806 Q0 13132706 18 11.278648 Anserini +test1806 Q0 10054118 19 11.260559 Anserini +test1806 Q0 3412066 20 11.254174 Anserini +test1806 Q0 16380331 21 11.223072 Anserini +test1806 Q0 19243014 22 11.185885 Anserini +test1806 Q0 19342061 23 11.128811 Anserini +test1806 Q0 14597422 24 11.106492 Anserini +test1806 Q0 18389428 25 11.037814 Anserini +test1806 Q0 14597419 26 11.027805 Anserini +test1806 Q0 15129510 27 11.019828 Anserini +test1806 Q0 20561016 28 11.018417 Anserini +test1806 Q0 7269271 29 11.017338 Anserini +test1806 Q0 12898786 30 10.967695 Anserini +test1807 Q0 12453246 1 14.386202 Anserini +test1807 Q0 2374048 2 12.416037 Anserini +test1807 Q0 3328733 3 12.303227 Anserini +test1807 Q0 12453208 4 12.238989 Anserini +test1807 Q0 20114891 5 12.039930 Anserini +test1807 Q0 11475278 6 11.951641 Anserini +test1807 Q0 9272835 7 11.910455 Anserini +test1807 Q0 2374060 8 11.893763 Anserini +test1807 Q0 8618861 9 11.873280 Anserini +test1807 Q0 9465754 10 11.811384 Anserini +test1807 Q0 20582669 11 11.467483 Anserini +test1807 Q0 19040828 12 11.352578 Anserini +test1807 Q0 14026383 13 11.333839 Anserini +test1807 Q0 2374063 14 11.118848 Anserini +test1807 Q0 12160690 15 11.107635 Anserini +test1807 Q0 9686511 16 11.107635 Anserini +test1807 Q0 6077030 17 10.987329 Anserini +test1807 Q0 13096766 18 10.986112 Anserini +test1807 Q0 8618860 19 10.984550 Anserini +test1807 Q0 10180350 20 10.983428 Anserini +test1807 Q0 8618859 21 10.754372 Anserini +test1807 Q0 9468678 22 10.738358 Anserini +test1807 Q0 11752750 23 10.733123 Anserini +test1807 Q0 13099600 24 10.669752 Anserini +test1807 Q0 3328729 25 10.665550 Anserini +test1807 Q0 2374044 26 10.659886 Anserini +test1807 Q0 15949514 27 10.639022 Anserini +test1807 Q0 7692312 28 10.588814 Anserini +test1807 Q0 3670304 29 10.588385 Anserini +test1807 Q0 15949510 30 10.566802 Anserini +test1808 Q0 13616188 1 12.413135 Anserini +test1808 Q0 7447355 2 12.322648 Anserini +test1808 Q0 13616196 3 10.360761 Anserini +test1808 Q0 13616208 4 9.579147 Anserini +test1808 Q0 17215504 5 9.530020 Anserini +test1808 Q0 17858029 6 9.481394 Anserini +test1808 Q0 17362185 7 9.481394 Anserini +test1808 Q0 13616192 8 8.903503 Anserini +test1808 Q0 13616201 9 8.724656 Anserini +test1808 Q0 16559714 10 8.724656 Anserini +test1808 Q0 6718866 11 8.724656 Anserini +test1808 Q0 19016416 12 8.712017 Anserini +test1808 Q0 4260973 13 8.712017 Anserini +test1808 Q0 13616207 14 8.663640 Anserini +test1808 Q0 13616191 15 8.663640 Anserini +test1808 Q0 7170405 16 8.603471 Anserini +test1808 Q0 3379173 17 8.603471 Anserini +test1808 Q0 12123946 18 8.544132 Anserini +test1808 Q0 13616202 19 8.544132 Anserini +test1808 Q0 7196826 20 8.351616 Anserini +test1808 Q0 540777 21 8.268922 Anserini +test1808 Q0 14657339 22 8.181874 Anserini +test1808 Q0 7586721 23 7.570773 Anserini +test1808 Q0 17811099 24 7.465059 Anserini +test1808 Q0 12093352 25 7.380500 Anserini +test1808 Q0 15153725 26 7.337808 Anserini +test1808 Q0 19448124 27 7.321984 Anserini +test1808 Q0 18196310 28 7.307786 Anserini +test1808 Q0 15335724 29 7.289249 Anserini +test1808 Q0 20605131 30 7.257817 Anserini +test1809 Q0 17586633 1 24.946697 Anserini +test1809 Q0 17586629 2 24.713614 Anserini +test1809 Q0 17740390 3 23.198961 Anserini +test1809 Q0 17928259 4 22.653242 Anserini +test1809 Q0 17150378 5 21.915346 Anserini +test1809 Q0 17093104 6 21.848415 Anserini +test1809 Q0 14407398 7 21.837658 Anserini +test1809 Q0 3574862 8 21.492079 Anserini +test1809 Q0 20490246 9 21.457733 Anserini +test1809 Q0 11322689 10 21.402870 Anserini +test1809 Q0 17093169 11 21.364008 Anserini +test1809 Q0 17739830 12 21.352734 Anserini +test1809 Q0 3574864 13 21.278641 Anserini +test1809 Q0 11151794 14 21.231129 Anserini +test1809 Q0 17093110 15 21.215656 Anserini +test1809 Q0 17738806 16 21.209612 Anserini +test1809 Q0 17813305 17 21.118040 Anserini +test1809 Q0 17739821 18 21.095175 Anserini +test1809 Q0 7245701 19 21.091553 Anserini +test1809 Q0 17738801 20 21.000244 Anserini +test1809 Q0 12417063 21 20.790503 Anserini +test1809 Q0 3574857 22 20.779945 Anserini +test1809 Q0 17867157 23 20.729033 Anserini +test1809 Q0 19173463 24 20.561613 Anserini +test1809 Q0 16503662 25 20.532476 Anserini +test1809 Q0 17617886 26 20.522659 Anserini +test1809 Q0 459612 27 20.497316 Anserini +test1809 Q0 16288992 28 20.453903 Anserini +test1809 Q0 17781215 29 20.428856 Anserini +test1809 Q0 17781218 30 20.428856 Anserini +test181 Q0 20636304 1 13.108499 Anserini +test181 Q0 3269936 2 12.336445 Anserini +test181 Q0 8675710 3 11.889813 Anserini +test181 Q0 8675699 4 11.768890 Anserini +test181 Q0 18561829 5 11.750121 Anserini +test181 Q0 1424743 6 11.567303 Anserini +test181 Q0 13812777 7 11.494517 Anserini +test181 Q0 3269941 8 11.383017 Anserini +test181 Q0 2831234 9 11.083359 Anserini +test181 Q0 4717492 10 10.922472 Anserini +test181 Q0 3269940 11 10.793211 Anserini +test181 Q0 1473848 12 10.760719 Anserini +test181 Q0 10457980 13 10.760719 Anserini +test181 Q0 8675700 14 10.737572 Anserini +test181 Q0 762737 15 10.720925 Anserini +test181 Q0 19844940 16 10.693815 Anserini +test181 Q0 16022930 17 10.479571 Anserini +test181 Q0 16802319 18 10.453034 Anserini +test181 Q0 8478433 19 10.371219 Anserini +test181 Q0 7857065 20 10.322170 Anserini +test181 Q0 20450899 21 10.245427 Anserini +test181 Q0 2733282 22 10.219519 Anserini +test181 Q0 20450898 23 10.202468 Anserini +test181 Q0 9979658 24 10.167211 Anserini +test181 Q0 1473845 25 10.167211 Anserini +test181 Q0 405035 26 10.150687 Anserini +test181 Q0 4452805 27 10.125011 Anserini +test181 Q0 8675703 28 10.087191 Anserini +test181 Q0 2599077 29 10.056591 Anserini +test181 Q0 1326830 30 10.026705 Anserini +test1810 Q0 18938990 1 14.540265 Anserini +test1810 Q0 7736800 2 14.443204 Anserini +test1810 Q0 15553946 3 13.954331 Anserini +test1810 Q0 18938987 4 13.883604 Anserini +test1810 Q0 18939007 5 13.752735 Anserini +test1810 Q0 18938999 6 13.667914 Anserini +test1810 Q0 18668996 7 13.423676 Anserini +test1810 Q0 18668995 8 13.423676 Anserini +test1810 Q0 18134132 9 13.288453 Anserini +test1810 Q0 15773939 10 13.179729 Anserini +test1810 Q0 10430613 11 13.091701 Anserini +test1810 Q0 4481681 12 12.983046 Anserini +test1810 Q0 18637809 13 12.589548 Anserini +test1810 Q0 19539694 14 12.554542 Anserini +test1810 Q0 16453116 15 12.536809 Anserini +test1810 Q0 17263302 16 12.481660 Anserini +test1810 Q0 20300002 17 12.458365 Anserini +test1810 Q0 16528218 18 12.458365 Anserini +test1810 Q0 12801025 19 12.415005 Anserini +test1810 Q0 20048998 20 12.394142 Anserini +test1810 Q0 18680088 21 12.394142 Anserini +test1810 Q0 18680102 22 12.352718 Anserini +test1810 Q0 17928526 23 12.331146 Anserini +test1810 Q0 19586874 24 12.330577 Anserini +test1810 Q0 17142234 25 12.295036 Anserini +test1810 Q0 17263290 26 12.289280 Anserini +test1810 Q0 15804667 27 12.286600 Anserini +test1810 Q0 18754706 28 12.211905 Anserini +test1810 Q0 18135455 29 12.172011 Anserini +test1810 Q0 19484611 30 12.157312 Anserini +test1811 Q0 2050496 1 17.403011 Anserini +test1811 Q0 12826192 2 17.093494 Anserini +test1811 Q0 15760109 3 16.477985 Anserini +test1811 Q0 18824630 4 16.124298 Anserini +test1811 Q0 11420171 5 15.906065 Anserini +test1811 Q0 6206778 6 15.748486 Anserini +test1811 Q0 12811245 7 15.602153 Anserini +test1811 Q0 6219821 8 15.546993 Anserini +test1811 Q0 4335939 9 15.507174 Anserini +test1811 Q0 11807360 10 15.498940 Anserini +test1811 Q0 15760108 11 15.449060 Anserini +test1811 Q0 15760111 12 15.420285 Anserini +test1811 Q0 6059443 13 15.358375 Anserini +test1811 Q0 4335894 14 15.295915 Anserini +test1811 Q0 5894450 15 15.287455 Anserini +test1811 Q0 4331259 16 15.275353 Anserini +test1811 Q0 5483288 17 15.151582 Anserini +test1811 Q0 3583708 18 15.007041 Anserini +test1811 Q0 15532617 19 14.977422 Anserini +test1811 Q0 8574756 20 14.972820 Anserini +test1811 Q0 15760106 21 14.926417 Anserini +test1811 Q0 16757363 22 14.877676 Anserini +test1811 Q0 2325429 23 14.854473 Anserini +test1811 Q0 10089221 24 14.833982 Anserini +test1811 Q0 12899659 25 14.823771 Anserini +test1811 Q0 6989227 26 14.794786 Anserini +test1811 Q0 2466869 27 14.785099 Anserini +test1811 Q0 6837417 28 14.705700 Anserini +test1811 Q0 6402093 29 14.698277 Anserini +test1811 Q0 6525519 30 14.615708 Anserini +test1812 Q0 8839854 1 11.617439 Anserini +test1812 Q0 16760948 2 11.275408 Anserini +test1812 Q0 16760949 3 11.275408 Anserini +test1812 Q0 8567178 4 11.129902 Anserini +test1812 Q0 8411301 5 11.029676 Anserini +test1812 Q0 20261104 6 11.029026 Anserini +test1812 Q0 798430 7 10.834579 Anserini +test1812 Q0 6491233 8 10.787356 Anserini +test1812 Q0 6491234 9 10.697793 Anserini +test1812 Q0 19572022 10 10.647581 Anserini +test1812 Q0 17525048 11 10.484549 Anserini +test1812 Q0 4800340 12 10.414045 Anserini +test1812 Q0 178463 13 10.248930 Anserini +test1812 Q0 6958726 14 10.077921 Anserini +test1812 Q0 14384014 15 10.006371 Anserini +test1812 Q0 17525052 16 9.983167 Anserini +test1812 Q0 14237949 17 9.963383 Anserini +test1812 Q0 1652842 18 9.949339 Anserini +test1812 Q0 16662235 19 9.929178 Anserini +test1812 Q0 4800335 20 9.886497 Anserini +test1812 Q0 2474393 21 9.869473 Anserini +test1812 Q0 2933730 22 9.856380 Anserini +test1812 Q0 12181639 23 9.845734 Anserini +test1812 Q0 5372614 24 9.814095 Anserini +test1812 Q0 6158873 25 9.758179 Anserini +test1812 Q0 496328 26 9.623770 Anserini +test1812 Q0 2080787 27 9.610658 Anserini +test1812 Q0 12259039 28 9.548771 Anserini +test1812 Q0 12259036 29 9.548771 Anserini +test1812 Q0 4800338 30 9.525556 Anserini +test1813 Q0 15643682 1 16.608356 Anserini +test1813 Q0 15643674 2 16.249001 Anserini +test1813 Q0 15643708 3 16.164261 Anserini +test1813 Q0 15643672 4 15.967537 Anserini +test1813 Q0 15643659 5 15.721108 Anserini +test1813 Q0 15643671 6 15.303358 Anserini +test1813 Q0 15643685 7 15.118851 Anserini +test1813 Q0 15643664 8 15.011679 Anserini +test1813 Q0 15643689 9 15.011679 Anserini +test1813 Q0 15643683 10 15.008998 Anserini +test1813 Q0 15643666 11 14.931112 Anserini +test1813 Q0 15643687 12 14.931112 Anserini +test1813 Q0 15643663 13 14.931112 Anserini +test1813 Q0 15643684 14 14.851416 Anserini +test1813 Q0 20232886 15 14.788611 Anserini +test1813 Q0 15643677 16 14.779501 Anserini +test1813 Q0 15643662 17 14.579363 Anserini +test1813 Q0 16890311 18 14.428851 Anserini +test1813 Q0 15643678 19 14.390317 Anserini +test1813 Q0 15643707 20 14.390317 Anserini +test1813 Q0 15643703 21 14.308281 Anserini +test1813 Q0 17571608 22 14.301402 Anserini +test1813 Q0 8604279 23 14.294168 Anserini +test1813 Q0 15643675 24 14.288729 Anserini +test1813 Q0 15643670 25 14.267335 Anserini +test1813 Q0 10305034 26 14.174765 Anserini +test1813 Q0 7070488 27 14.166329 Anserini +test1813 Q0 15643676 28 14.086203 Anserini +test1813 Q0 15252988 29 14.077051 Anserini +test1813 Q0 15643668 30 14.045887 Anserini +test1814 Q0 10648529 1 10.164352 Anserini +test1814 Q0 12995604 2 9.957547 Anserini +test1814 Q0 9909014 3 9.840232 Anserini +test1814 Q0 13464760 4 9.733822 Anserini +test1814 Q0 7003986 5 9.625615 Anserini +test1814 Q0 207714 6 9.575729 Anserini +test1814 Q0 7285535 7 9.516351 Anserini +test1814 Q0 12566624 8 9.454494 Anserini +test1814 Q0 4100597 9 9.451153 Anserini +test1814 Q0 7511897 10 9.350451 Anserini +test1814 Q0 1441387 11 9.298524 Anserini +test1814 Q0 6776412 12 9.121320 Anserini +test1814 Q0 1900458 13 9.067780 Anserini +test1814 Q0 12661176 14 9.064093 Anserini +test1814 Q0 8781123 15 9.045292 Anserini +test1814 Q0 1972786 16 8.992113 Anserini +test1814 Q0 6491520 17 8.968533 Anserini +test1814 Q0 15306856 18 8.922632 Anserini +test1814 Q0 454794 19 8.907112 Anserini +test1814 Q0 4720520 20 8.905561 Anserini +test1814 Q0 9909013 21 8.903437 Anserini +test1814 Q0 10860359 22 8.901534 Anserini +test1814 Q0 1982070 23 8.875687 Anserini +test1814 Q0 16133898 24 8.777945 Anserini +test1814 Q0 4737638 25 8.749039 Anserini +test1814 Q0 15583119 26 8.749039 Anserini +test1814 Q0 11737266 27 8.745863 Anserini +test1814 Q0 17466760 28 8.707500 Anserini +test1814 Q0 661766 29 8.700799 Anserini +test1814 Q0 10783853 30 8.697013 Anserini +test1815 Q0 17032440 1 24.759178 Anserini +test1815 Q0 17032456 2 24.043917 Anserini +test1815 Q0 17032438 3 17.756081 Anserini +test1815 Q0 12027925 4 13.136566 Anserini +test1815 Q0 3218534 5 13.135262 Anserini +test1815 Q0 13021689 6 12.853320 Anserini +test1815 Q0 12027926 7 12.830545 Anserini +test1815 Q0 667882 8 12.827288 Anserini +test1815 Q0 861077 9 12.773571 Anserini +test1815 Q0 277308 10 12.694602 Anserini +test1815 Q0 277304 11 12.628977 Anserini +test1815 Q0 861076 12 12.544744 Anserini +test1815 Q0 861078 13 12.495874 Anserini +test1815 Q0 17032455 14 12.332829 Anserini +test1815 Q0 12027936 15 12.012002 Anserini +test1815 Q0 17032442 16 11.986329 Anserini +test1815 Q0 17032443 17 11.815709 Anserini +test1815 Q0 17032441 18 11.728265 Anserini +test1815 Q0 17032445 19 11.642277 Anserini +test1815 Q0 5152093 20 11.628414 Anserini +test1815 Q0 10091307 21 11.449826 Anserini +test1815 Q0 10091306 22 11.386521 Anserini +test1815 Q0 17882670 23 11.277717 Anserini +test1815 Q0 17882672 24 11.277717 Anserini +test1815 Q0 277305 25 11.203058 Anserini +test1815 Q0 277293 26 11.180765 Anserini +test1815 Q0 17032444 27 11.114702 Anserini +test1815 Q0 14981294 28 11.103399 Anserini +test1815 Q0 4080515 29 11.041149 Anserini +test1815 Q0 7708512 30 10.946526 Anserini +test1816 Q0 10115653 1 15.509296 Anserini +test1816 Q0 10115656 2 15.509296 Anserini +test1816 Q0 15551131 3 14.689849 Anserini +test1816 Q0 20603029 4 14.621375 Anserini +test1816 Q0 15551159 5 14.561858 Anserini +test1816 Q0 6096079 6 14.524815 Anserini +test1816 Q0 8673195 7 14.515554 Anserini +test1816 Q0 12324157 8 14.322106 Anserini +test1816 Q0 3086862 9 14.227524 Anserini +test1816 Q0 15037090 10 14.064772 Anserini +test1816 Q0 7454060 11 13.813943 Anserini +test1816 Q0 4654977 12 13.749463 Anserini +test1816 Q0 10669409 13 13.693662 Anserini +test1816 Q0 3086875 14 13.617689 Anserini +test1816 Q0 7454059 15 13.596448 Anserini +test1816 Q0 15110981 16 13.562183 Anserini +test1816 Q0 12324240 17 13.493547 Anserini +test1816 Q0 15624175 18 13.431851 Anserini +test1816 Q0 9938338 19 13.393374 Anserini +test1816 Q0 203755 20 13.342316 Anserini +test1816 Q0 12324169 21 13.341973 Anserini +test1816 Q0 8068306 22 13.301270 Anserini +test1816 Q0 8619758 23 13.262230 Anserini +test1816 Q0 13960151 24 13.245251 Anserini +test1816 Q0 12324128 25 13.228661 Anserini +test1816 Q0 15788221 26 13.133722 Anserini +test1816 Q0 15551156 27 13.133362 Anserini +test1816 Q0 10471230 28 13.126260 Anserini +test1816 Q0 8360179 29 13.124943 Anserini +test1816 Q0 5093615 30 13.080937 Anserini +test1817 Q0 9730662 1 18.978367 Anserini +test1817 Q0 9730650 2 18.741083 Anserini +test1817 Q0 20548546 3 18.266394 Anserini +test1817 Q0 19966275 4 18.087658 Anserini +test1817 Q0 19966280 5 17.829828 Anserini +test1817 Q0 2784614 6 17.455862 Anserini +test1817 Q0 2056368 7 16.872301 Anserini +test1817 Q0 20122894 8 16.746342 Anserini +test1817 Q0 9730663 9 16.094700 Anserini +test1817 Q0 2564249 10 15.969869 Anserini +test1817 Q0 18554244 11 15.912128 Anserini +test1817 Q0 8197912 12 15.848465 Anserini +test1817 Q0 11296594 13 15.837306 Anserini +test1817 Q0 9730642 14 15.792681 Anserini +test1817 Q0 9730660 15 15.753213 Anserini +test1817 Q0 9730659 16 15.708467 Anserini +test1817 Q0 15863923 17 15.639977 Anserini +test1817 Q0 15863905 18 15.633825 Anserini +test1817 Q0 3057808 19 15.622047 Anserini +test1817 Q0 13408360 20 15.519925 Anserini +test1817 Q0 7476920 21 15.519925 Anserini +test1817 Q0 9730655 22 15.452390 Anserini +test1817 Q0 8198406 23 15.451061 Anserini +test1817 Q0 8198396 24 15.451061 Anserini +test1817 Q0 17027452 25 15.334579 Anserini +test1817 Q0 9730653 26 15.283161 Anserini +test1817 Q0 6897225 27 15.279708 Anserini +test1817 Q0 12201673 28 15.254939 Anserini +test1817 Q0 6878499 29 15.254939 Anserini +test1817 Q0 4368995 30 15.254939 Anserini +test1818 Q0 7925996 1 12.926283 Anserini +test1818 Q0 2921063 2 11.228664 Anserini +test1818 Q0 1811451 3 11.006857 Anserini +test1818 Q0 13496911 4 10.948962 Anserini +test1818 Q0 5275259 5 10.852991 Anserini +test1818 Q0 8933303 6 10.838739 Anserini +test1818 Q0 13496910 7 10.660176 Anserini +test1818 Q0 8679409 8 10.296162 Anserini +test1818 Q0 19743380 9 10.254474 Anserini +test1818 Q0 10963554 10 10.192467 Anserini +test1818 Q0 5315896 11 9.984612 Anserini +test1818 Q0 16192651 12 9.935982 Anserini +test1818 Q0 17270038 13 9.906730 Anserini +test1818 Q0 205142 14 9.867487 Anserini +test1818 Q0 8679413 15 9.791960 Anserini +test1818 Q0 5764361 16 9.776084 Anserini +test1818 Q0 3738146 17 9.761936 Anserini +test1818 Q0 6856222 18 9.731336 Anserini +test1818 Q0 3403411 19 9.627407 Anserini +test1818 Q0 2604445 20 9.538521 Anserini +test1818 Q0 5764363 21 9.488718 Anserini +test1818 Q0 2921078 22 9.454412 Anserini +test1818 Q0 18976533 23 9.450505 Anserini +test1818 Q0 5275257 24 9.342455 Anserini +test1818 Q0 6760352 25 9.252640 Anserini +test1818 Q0 4348805 26 9.230581 Anserini +test1818 Q0 15542819 27 9.230581 Anserini +test1818 Q0 19811469 28 9.230581 Anserini +test1818 Q0 5028256 29 9.192490 Anserini +test1818 Q0 2489566 30 9.077364 Anserini +test1819 Q0 427873 1 13.000737 Anserini +test1819 Q0 4305814 2 12.737429 Anserini +test1819 Q0 20417423 3 12.528828 Anserini +test1819 Q0 10815701 4 12.116518 Anserini +test1819 Q0 17561035 5 11.430440 Anserini +test1819 Q0 3153503 6 11.299751 Anserini +test1819 Q0 428199 7 11.173116 Anserini +test1819 Q0 14117737 8 11.172407 Anserini +test1819 Q0 16798785 9 11.079664 Anserini +test1819 Q0 139034 10 11.057988 Anserini +test1819 Q0 18822605 11 11.025533 Anserini +test1819 Q0 12349208 12 10.959125 Anserini +test1819 Q0 16636083 13 10.954813 Anserini +test1819 Q0 17968312 14 10.925966 Anserini +test1819 Q0 2566181 15 10.908271 Anserini +test1819 Q0 2592359 16 10.867278 Anserini +test1819 Q0 10227273 17 10.857805 Anserini +test1819 Q0 18463865 18 10.846997 Anserini +test1819 Q0 20543513 19 10.812652 Anserini +test1819 Q0 1477032 20 10.806848 Anserini +test1819 Q0 9592039 21 10.803145 Anserini +test1819 Q0 13831575 22 10.791138 Anserini +test1819 Q0 2949404 23 10.785279 Anserini +test1819 Q0 20676984 24 10.771833 Anserini +test1819 Q0 6286668 25 10.750169 Anserini +test1819 Q0 1452108 26 10.744165 Anserini +test1819 Q0 428287 27 10.720873 Anserini +test1819 Q0 428337 28 10.707641 Anserini +test1819 Q0 2566198 29 10.681784 Anserini +test1819 Q0 20676980 30 10.675025 Anserini +test182 Q0 284053 1 12.629282 Anserini +test182 Q0 7321413 2 12.421243 Anserini +test182 Q0 284023 3 12.262253 Anserini +test182 Q0 284056 4 12.262253 Anserini +test182 Q0 14101490 5 11.901731 Anserini +test182 Q0 19733281 6 11.842776 Anserini +test182 Q0 10879964 7 11.774314 Anserini +test182 Q0 14101489 8 11.640555 Anserini +test182 Q0 17625280 9 11.311808 Anserini +test182 Q0 284045 10 10.913005 Anserini +test182 Q0 8881667 11 10.885253 Anserini +test182 Q0 284050 12 10.825678 Anserini +test182 Q0 7095738 13 10.825678 Anserini +test182 Q0 6652026 14 10.825678 Anserini +test182 Q0 14383409 15 10.715492 Anserini +test182 Q0 14528412 16 10.699811 Anserini +test182 Q0 5735355 17 10.631807 Anserini +test182 Q0 11473301 18 10.588856 Anserini +test182 Q0 4296049 19 10.549918 Anserini +test182 Q0 11307650 20 10.526190 Anserini +test182 Q0 4641465 21 10.504757 Anserini +test182 Q0 339061 22 10.428824 Anserini +test182 Q0 1958422 23 10.391052 Anserini +test182 Q0 9026738 24 10.389004 Anserini +test182 Q0 7871800 25 10.365917 Anserini +test182 Q0 3696089 26 10.349078 Anserini +test182 Q0 8746345 27 10.342638 Anserini +test182 Q0 8439740 28 10.299905 Anserini +test182 Q0 16703625 29 10.241164 Anserini +test182 Q0 8439750 30 10.213942 Anserini +test1820 Q0 19835113 1 18.856092 Anserini +test1820 Q0 16973718 2 18.788435 Anserini +test1820 Q0 472785 3 18.705059 Anserini +test1820 Q0 639669 4 18.539604 Anserini +test1820 Q0 588391 5 17.957895 Anserini +test1820 Q0 541136 6 17.926540 Anserini +test1820 Q0 473075 7 17.912186 Anserini +test1820 Q0 3416506 8 17.783298 Anserini +test1820 Q0 472793 9 17.581762 Anserini +test1820 Q0 10020303 10 17.472219 Anserini +test1820 Q0 2763028 11 17.443045 Anserini +test1820 Q0 472791 12 17.440968 Anserini +test1820 Q0 6330657 13 17.407587 Anserini +test1820 Q0 14398125 14 17.374979 Anserini +test1820 Q0 473125 15 17.174141 Anserini +test1820 Q0 472786 16 17.081884 Anserini +test1820 Q0 472788 17 17.045607 Anserini +test1820 Q0 648890 18 17.037611 Anserini +test1820 Q0 12928791 19 17.016600 Anserini +test1820 Q0 22206 20 16.862061 Anserini +test1820 Q0 639661 21 16.806402 Anserini +test1820 Q0 639683 22 16.799057 Anserini +test1820 Q0 304728 23 16.770679 Anserini +test1820 Q0 677634 24 16.727644 Anserini +test1820 Q0 5336586 25 16.697544 Anserini +test1820 Q0 1469021 26 16.596369 Anserini +test1820 Q0 1600158 27 16.595034 Anserini +test1820 Q0 35723 28 16.527714 Anserini +test1820 Q0 677613 29 16.454765 Anserini +test1820 Q0 14811275 30 16.452803 Anserini +test1821 Q0 1462287 1 18.532572 Anserini +test1821 Q0 17131193 2 18.126034 Anserini +test1821 Q0 8195835 3 18.007349 Anserini +test1821 Q0 7083203 4 17.666262 Anserini +test1821 Q0 190256 5 17.635658 Anserini +test1821 Q0 8195866 6 17.157610 Anserini +test1821 Q0 11266636 7 17.133577 Anserini +test1821 Q0 743197 8 17.018791 Anserini +test1821 Q0 12629619 9 16.894529 Anserini +test1821 Q0 15935844 10 16.883446 Anserini +test1821 Q0 15935887 11 16.883446 Anserini +test1821 Q0 1886530 12 16.801067 Anserini +test1821 Q0 14843455 13 16.766153 Anserini +test1821 Q0 15921343 14 16.691404 Anserini +test1821 Q0 15935858 15 16.691404 Anserini +test1821 Q0 15940743 16 16.691404 Anserini +test1821 Q0 7083204 17 16.651217 Anserini +test1821 Q0 15917448 18 16.586143 Anserini +test1821 Q0 9655126 19 16.468008 Anserini +test1821 Q0 1025198 20 16.456570 Anserini +test1821 Q0 16706743 21 16.451694 Anserini +test1821 Q0 15921387 22 16.449640 Anserini +test1821 Q0 15917494 23 16.426903 Anserini +test1821 Q0 15940775 24 16.426903 Anserini +test1821 Q0 595546 25 16.383360 Anserini +test1821 Q0 12977026 26 16.376089 Anserini +test1821 Q0 15821386 27 16.376089 Anserini +test1821 Q0 15822351 28 16.376089 Anserini +test1821 Q0 9655002 29 16.306719 Anserini +test1821 Q0 15877771 30 16.306719 Anserini +test1822 Q0 3629099 1 9.619630 Anserini +test1822 Q0 7291984 2 9.462666 Anserini +test1822 Q0 11611379 3 9.214157 Anserini +test1822 Q0 8898063 4 9.016583 Anserini +test1822 Q0 16409473 5 9.006682 Anserini +test1822 Q0 19712173 6 9.006682 Anserini +test1822 Q0 20866625 7 8.953238 Anserini +test1822 Q0 6690497 8 8.929854 Anserini +test1822 Q0 7092408 9 8.924830 Anserini +test1822 Q0 14331772 10 8.903208 Anserini +test1822 Q0 13891078 11 8.823710 Anserini +test1822 Q0 9469653 12 8.801622 Anserini +test1822 Q0 16800783 13 8.690786 Anserini +test1822 Q0 8315051 14 8.685874 Anserini +test1822 Q0 14946162 15 8.685874 Anserini +test1822 Q0 811637 16 8.678285 Anserini +test1822 Q0 5278789 17 8.660522 Anserini +test1822 Q0 18190419 18 8.612216 Anserini +test1822 Q0 8917911 19 8.592113 Anserini +test1822 Q0 8874244 20 8.589933 Anserini +test1822 Q0 3125958 21 8.589624 Anserini +test1822 Q0 3125985 22 8.589624 Anserini +test1822 Q0 6690275 23 8.586018 Anserini +test1822 Q0 3317666 24 8.559011 Anserini +test1822 Q0 7334970 25 8.524094 Anserini +test1822 Q0 7334974 26 8.524094 Anserini +test1822 Q0 3832326 27 8.522164 Anserini +test1822 Q0 19681655 28 8.510261 Anserini +test1822 Q0 15250820 29 8.509740 Anserini +test1822 Q0 16738158 30 8.497904 Anserini +test1823 Q0 2202776 1 14.768299 Anserini +test1823 Q0 2331265 2 14.688169 Anserini +test1823 Q0 564194 3 14.573884 Anserini +test1823 Q0 2331270 4 13.990372 Anserini +test1823 Q0 2331267 5 13.923182 Anserini +test1823 Q0 2512089 6 13.882705 Anserini +test1823 Q0 18442073 7 13.773774 Anserini +test1823 Q0 2970878 8 13.732770 Anserini +test1823 Q0 726897 9 13.664664 Anserini +test1823 Q0 10628440 10 13.308245 Anserini +test1823 Q0 5168805 11 13.197745 Anserini +test1823 Q0 1916016 12 13.062011 Anserini +test1823 Q0 2849394 13 12.788981 Anserini +test1823 Q0 12246933 14 12.773454 Anserini +test1823 Q0 6697824 15 12.633451 Anserini +test1823 Q0 10944763 16 12.506472 Anserini +test1823 Q0 14277017 17 12.484383 Anserini +test1823 Q0 16902187 18 12.442059 Anserini +test1823 Q0 10197324 19 12.400022 Anserini +test1823 Q0 16902168 20 12.400022 Anserini +test1823 Q0 6612651 21 12.395884 Anserini +test1823 Q0 11452661 22 12.382071 Anserini +test1823 Q0 3072995 23 12.382071 Anserini +test1823 Q0 1897884 24 12.382071 Anserini +test1823 Q0 6954565 25 12.358267 Anserini +test1823 Q0 526062 26 12.347260 Anserini +test1823 Q0 6954579 27 12.316792 Anserini +test1823 Q0 2576952 28 12.283618 Anserini +test1823 Q0 9323490 29 12.229512 Anserini +test1823 Q0 14277020 30 12.034114 Anserini +test1824 Q0 15418988 1 14.964741 Anserini +test1824 Q0 5543682 2 13.458763 Anserini +test1824 Q0 3833668 3 13.241893 Anserini +test1824 Q0 559294 4 13.204823 Anserini +test1824 Q0 15963891 5 12.570303 Anserini +test1824 Q0 12023670 6 12.524267 Anserini +test1824 Q0 3418000 7 12.294608 Anserini +test1824 Q0 11998504 8 12.069769 Anserini +test1824 Q0 15418987 9 12.050203 Anserini +test1824 Q0 6909686 10 12.042847 Anserini +test1824 Q0 3114041 11 12.042338 Anserini +test1824 Q0 1702758 12 12.027793 Anserini +test1824 Q0 3928474 13 12.003985 Anserini +test1824 Q0 694658 14 11.969570 Anserini +test1824 Q0 18116263 15 11.850787 Anserini +test1824 Q0 16292075 16 11.820405 Anserini +test1824 Q0 3115687 17 11.809122 Anserini +test1824 Q0 4358191 18 11.801115 Anserini +test1824 Q0 10062358 19 11.748311 Anserini +test1824 Q0 9118913 20 11.704336 Anserini +test1824 Q0 3108382 21 11.624774 Anserini +test1824 Q0 520908 22 11.603397 Anserini +test1824 Q0 11289639 23 11.598093 Anserini +test1824 Q0 3108343 24 11.562092 Anserini +test1824 Q0 297402 25 11.498796 Anserini +test1824 Q0 412119 26 11.495934 Anserini +test1824 Q0 3114047 27 11.493931 Anserini +test1824 Q0 1720854 28 11.493615 Anserini +test1824 Q0 18116260 29 11.394855 Anserini +test1824 Q0 12211899 30 11.316308 Anserini +test1825 Q0 2957076 1 18.423433 Anserini +test1825 Q0 6242850 2 15.288893 Anserini +test1825 Q0 6242838 3 14.489523 Anserini +test1825 Q0 18046332 4 14.358909 Anserini +test1825 Q0 6936431 5 14.195574 Anserini +test1825 Q0 6242847 6 13.989253 Anserini +test1825 Q0 5845107 7 13.645089 Anserini +test1825 Q0 6242829 8 13.539358 Anserini +test1825 Q0 6242825 9 13.530632 Anserini +test1825 Q0 9622369 10 13.386344 Anserini +test1825 Q0 6242834 11 13.305395 Anserini +test1825 Q0 6936398 12 13.253497 Anserini +test1825 Q0 13657321 13 13.244982 Anserini +test1825 Q0 6242842 14 13.054266 Anserini +test1825 Q0 8703456 15 13.048323 Anserini +test1825 Q0 6242826 16 13.033607 Anserini +test1825 Q0 6242840 17 12.886898 Anserini +test1825 Q0 2957048 18 12.883444 Anserini +test1825 Q0 5576552 19 12.869659 Anserini +test1825 Q0 2957035 20 12.831121 Anserini +test1825 Q0 2957080 21 12.831121 Anserini +test1825 Q0 10758554 22 12.807240 Anserini +test1825 Q0 6242828 23 12.689739 Anserini +test1825 Q0 9622372 24 12.645231 Anserini +test1825 Q0 11375007 25 12.645231 Anserini +test1825 Q0 20086150 26 12.629429 Anserini +test1825 Q0 20086152 27 12.625905 Anserini +test1825 Q0 4508951 28 12.616936 Anserini +test1825 Q0 4109813 29 12.610415 Anserini +test1825 Q0 2957061 30 12.569786 Anserini +test1826 Q0 1687727 1 15.836482 Anserini +test1826 Q0 3724415 2 13.642736 Anserini +test1826 Q0 2895076 3 13.529928 Anserini +test1826 Q0 658535 4 13.416397 Anserini +test1826 Q0 6158777 5 13.378182 Anserini +test1826 Q0 9521414 6 12.885329 Anserini +test1826 Q0 7568174 7 11.968463 Anserini +test1826 Q0 4048874 8 11.957464 Anserini +test1826 Q0 7100782 9 11.910559 Anserini +test1826 Q0 6262736 10 11.726629 Anserini +test1826 Q0 6262741 11 11.726629 Anserini +test1826 Q0 540618 12 11.703348 Anserini +test1826 Q0 4152352 13 11.663950 Anserini +test1826 Q0 540620 14 11.582159 Anserini +test1826 Q0 6053650 15 11.529023 Anserini +test1826 Q0 4048879 16 11.516344 Anserini +test1826 Q0 10012127 17 11.432562 Anserini +test1826 Q0 4880858 18 11.432324 Anserini +test1826 Q0 5308772 19 11.406364 Anserini +test1826 Q0 5535540 20 11.406364 Anserini +test1826 Q0 8246242 21 11.406364 Anserini +test1826 Q0 540643 22 11.365934 Anserini +test1826 Q0 1687726 23 11.286290 Anserini +test1826 Q0 2973192 24 11.237156 Anserini +test1826 Q0 2196869 25 11.168715 Anserini +test1826 Q0 9445694 26 11.112116 Anserini +test1826 Q0 1357177 27 11.091997 Anserini +test1826 Q0 5495489 28 11.079451 Anserini +test1826 Q0 9237511 29 11.073688 Anserini +test1826 Q0 20168615 30 10.927667 Anserini +test1827 Q0 13024866 1 11.546961 Anserini +test1827 Q0 17112816 2 11.546961 Anserini +test1827 Q0 3694366 3 11.264472 Anserini +test1827 Q0 10946932 4 11.209677 Anserini +test1827 Q0 17010039 5 11.118432 Anserini +test1827 Q0 10946933 6 11.090239 Anserini +test1827 Q0 13386630 7 10.743759 Anserini +test1827 Q0 17303305 8 10.603367 Anserini +test1827 Q0 15029007 9 10.603367 Anserini +test1827 Q0 3763607 10 10.603367 Anserini +test1827 Q0 14100731 11 10.596283 Anserini +test1827 Q0 18661469 12 10.527582 Anserini +test1827 Q0 19876159 13 10.493184 Anserini +test1827 Q0 13622264 14 10.479522 Anserini +test1827 Q0 18661472 15 10.464056 Anserini +test1827 Q0 9838636 16 10.355371 Anserini +test1827 Q0 17010046 17 10.340951 Anserini +test1827 Q0 16316334 18 10.218131 Anserini +test1827 Q0 16316339 19 10.218131 Anserini +test1827 Q0 11179311 20 10.217040 Anserini +test1827 Q0 12009640 21 10.176735 Anserini +test1827 Q0 3763633 22 10.161832 Anserini +test1827 Q0 14949339 23 10.114561 Anserini +test1827 Q0 13386639 24 10.113918 Anserini +test1827 Q0 11114067 25 10.113115 Anserini +test1827 Q0 14988490 26 10.113115 Anserini +test1827 Q0 19876166 27 10.095529 Anserini +test1827 Q0 17010038 28 10.069308 Anserini +test1827 Q0 14820103 29 10.069308 Anserini +test1827 Q0 13070093 30 10.067015 Anserini +test1828 Q0 18642038 1 12.482919 Anserini +test1828 Q0 3709332 2 11.886664 Anserini +test1828 Q0 16786169 3 11.663631 Anserini +test1828 Q0 15772454 4 11.612134 Anserini +test1828 Q0 2586033 5 11.609133 Anserini +test1828 Q0 6269927 6 11.169210 Anserini +test1828 Q0 11514322 7 11.122217 Anserini +test1828 Q0 6269933 8 10.719986 Anserini +test1828 Q0 17011769 9 10.682256 Anserini +test1828 Q0 16590295 10 10.629629 Anserini +test1828 Q0 12526154 11 10.580825 Anserini +test1828 Q0 4705918 12 10.518085 Anserini +test1828 Q0 5487945 13 10.409307 Anserini +test1828 Q0 6807690 14 10.376329 Anserini +test1828 Q0 13703098 15 10.339332 Anserini +test1828 Q0 2586010 16 10.285024 Anserini +test1828 Q0 6639326 17 10.163276 Anserini +test1828 Q0 5782801 18 10.068653 Anserini +test1828 Q0 2586004 19 10.038803 Anserini +test1828 Q0 2585997 20 10.027598 Anserini +test1828 Q0 17259817 21 10.001748 Anserini +test1828 Q0 5937791 22 9.987611 Anserini +test1828 Q0 4043096 23 9.980229 Anserini +test1828 Q0 2147552 24 9.882329 Anserini +test1828 Q0 2586001 25 9.864120 Anserini +test1828 Q0 9153415 26 9.780301 Anserini +test1828 Q0 6161693 27 9.751337 Anserini +test1828 Q0 6025837 28 9.743955 Anserini +test1828 Q0 13796866 29 9.743172 Anserini +test1828 Q0 3416415 30 9.733817 Anserini +test1829 Q0 18867425 1 12.797503 Anserini +test1829 Q0 18867423 2 12.238754 Anserini +test1829 Q0 5290597 3 12.070790 Anserini +test1829 Q0 636014 4 11.138985 Anserini +test1829 Q0 636011 5 10.901312 Anserini +test1829 Q0 17268009 6 10.842103 Anserini +test1829 Q0 11930291 7 10.679039 Anserini +test1829 Q0 12152845 8 10.541606 Anserini +test1829 Q0 2982413 9 10.487473 Anserini +test1829 Q0 3266254 10 10.409179 Anserini +test1829 Q0 3266256 11 10.407623 Anserini +test1829 Q0 8775431 12 10.388167 Anserini +test1829 Q0 6479980 13 10.289282 Anserini +test1829 Q0 5290589 14 10.160855 Anserini +test1829 Q0 636018 15 10.016706 Anserini +test1829 Q0 18880344 16 10.008467 Anserini +test1829 Q0 6048681 17 9.955528 Anserini +test1829 Q0 2595092 18 9.927131 Anserini +test1829 Q0 14883433 19 9.900841 Anserini +test1829 Q0 6712346 20 9.881616 Anserini +test1829 Q0 6048680 21 9.878437 Anserini +test1829 Q0 7942377 22 9.822900 Anserini +test1829 Q0 635959 23 9.724998 Anserini +test1829 Q0 635997 24 9.724998 Anserini +test1829 Q0 636020 25 9.704966 Anserini +test1829 Q0 10220283 26 9.704966 Anserini +test1829 Q0 4434420 27 9.692389 Anserini +test1829 Q0 5290587 28 9.648611 Anserini +test1829 Q0 16305920 29 9.576332 Anserini +test1829 Q0 18867416 30 9.573463 Anserini +test183 Q0 2888754 1 16.888496 Anserini +test183 Q0 15180730 2 16.157629 Anserini +test183 Q0 4588198 3 14.927470 Anserini +test183 Q0 654688 4 14.897975 Anserini +test183 Q0 15238274 5 14.497849 Anserini +test183 Q0 12647999 6 14.313174 Anserini +test183 Q0 1456253 7 14.235305 Anserini +test183 Q0 12627176 8 14.222811 Anserini +test183 Q0 7301089 9 14.159898 Anserini +test183 Q0 9008115 10 14.133344 Anserini +test183 Q0 5826589 11 14.094549 Anserini +test183 Q0 10215735 12 13.854748 Anserini +test183 Q0 15790485 13 13.814827 Anserini +test183 Q0 4588203 14 13.719224 Anserini +test183 Q0 15790486 15 13.650279 Anserini +test183 Q0 2302125 16 13.581482 Anserini +test183 Q0 5838348 17 13.565601 Anserini +test183 Q0 5838357 18 13.565601 Anserini +test183 Q0 15180728 19 13.464972 Anserini +test183 Q0 1295627 20 13.439017 Anserini +test183 Q0 14372579 21 13.439017 Anserini +test183 Q0 6193350 22 13.425263 Anserini +test183 Q0 6193361 23 13.425263 Anserini +test183 Q0 2763075 24 13.418977 Anserini +test183 Q0 2351092 25 13.372944 Anserini +test183 Q0 2490484 26 13.369167 Anserini +test183 Q0 8155668 27 13.301038 Anserini +test183 Q0 654683 28 13.289939 Anserini +test183 Q0 2611646 29 13.207830 Anserini +test183 Q0 8155667 30 13.175251 Anserini +test1830 Q0 5210735 1 14.493694 Anserini +test1830 Q0 2799763 2 13.689799 Anserini +test1830 Q0 2799764 3 13.398386 Anserini +test1830 Q0 2799768 4 13.249355 Anserini +test1830 Q0 2799761 5 13.064379 Anserini +test1830 Q0 16598636 6 12.970380 Anserini +test1830 Q0 2799762 7 12.907116 Anserini +test1830 Q0 5210733 8 12.871689 Anserini +test1830 Q0 16598634 9 12.827290 Anserini +test1830 Q0 5210736 10 12.312975 Anserini +test1830 Q0 16598635 11 12.232006 Anserini +test1830 Q0 2799765 12 11.787539 Anserini +test1830 Q0 2799754 13 11.498446 Anserini +test1830 Q0 2799755 14 11.426273 Anserini +test1830 Q0 2678308 15 11.424376 Anserini +test1830 Q0 7118852 16 11.424376 Anserini +test1830 Q0 432519 17 11.393837 Anserini +test1830 Q0 3488104 18 11.267338 Anserini +test1830 Q0 3464625 19 11.177921 Anserini +test1830 Q0 2048064 20 11.031680 Anserini +test1830 Q0 14538497 21 10.993788 Anserini +test1830 Q0 2799803 22 10.983277 Anserini +test1830 Q0 16060369 23 10.931417 Anserini +test1830 Q0 669933 24 10.850288 Anserini +test1830 Q0 336602 25 10.837965 Anserini +test1830 Q0 6007493 26 10.607823 Anserini +test1830 Q0 992744 27 10.589222 Anserini +test1830 Q0 14538507 28 10.568394 Anserini +test1830 Q0 2786101 29 10.521310 Anserini +test1830 Q0 11921329 30 10.401615 Anserini +test1831 Q0 8291999 1 11.234892 Anserini +test1831 Q0 495315 2 11.223100 Anserini +test1831 Q0 495301 3 11.137703 Anserini +test1831 Q0 17984163 4 10.732615 Anserini +test1831 Q0 9524519 5 10.612261 Anserini +test1831 Q0 3796689 6 10.531958 Anserini +test1831 Q0 9524520 7 10.459754 Anserini +test1831 Q0 4320847 8 10.292208 Anserini +test1831 Q0 1467967 9 10.217821 Anserini +test1831 Q0 4320842 10 10.069859 Anserini +test1831 Q0 4320844 11 9.999852 Anserini +test1831 Q0 6864854 12 9.980327 Anserini +test1831 Q0 4320838 13 9.980327 Anserini +test1831 Q0 4464030 14 9.973990 Anserini +test1831 Q0 9679723 15 9.913894 Anserini +test1831 Q0 16985289 16 9.873181 Anserini +test1831 Q0 16985291 17 9.873181 Anserini +test1831 Q0 9369068 18 9.873181 Anserini +test1831 Q0 3796685 19 9.830244 Anserini +test1831 Q0 17093907 20 9.756860 Anserini +test1831 Q0 4464022 21 9.652773 Anserini +test1831 Q0 9750618 22 9.605920 Anserini +test1831 Q0 4320839 23 9.594581 Anserini +test1831 Q0 3328086 24 9.594581 Anserini +test1831 Q0 3328087 25 9.594581 Anserini +test1831 Q0 8292000 26 9.584986 Anserini +test1831 Q0 9369071 27 9.568846 Anserini +test1831 Q0 8380180 28 9.529306 Anserini +test1831 Q0 8233723 29 9.524506 Anserini +test1831 Q0 3328088 30 9.493350 Anserini +test1832 Q0 2121132 1 14.547361 Anserini +test1832 Q0 5131516 2 11.134913 Anserini +test1832 Q0 18773511 3 10.063681 Anserini +test1832 Q0 5131514 4 9.990482 Anserini +test1832 Q0 3714670 5 9.515039 Anserini +test1832 Q0 6453524 6 9.490465 Anserini +test1832 Q0 1954529 7 9.211893 Anserini +test1832 Q0 11206690 8 9.006084 Anserini +test1832 Q0 6453523 9 8.970018 Anserini +test1832 Q0 9091793 10 8.915835 Anserini +test1832 Q0 784987 11 8.902747 Anserini +test1832 Q0 18689624 12 8.874497 Anserini +test1832 Q0 6446322 13 8.832979 Anserini +test1832 Q0 12598258 14 8.807176 Anserini +test1832 Q0 8063514 15 8.777196 Anserini +test1832 Q0 11756132 16 8.766272 Anserini +test1832 Q0 10430332 17 8.707557 Anserini +test1832 Q0 14680608 18 8.666034 Anserini +test1832 Q0 6055780 19 8.666034 Anserini +test1832 Q0 12992933 20 8.624151 Anserini +test1832 Q0 17584064 21 8.594715 Anserini +test1832 Q0 14680609 22 8.574806 Anserini +test1832 Q0 15621498 23 8.574806 Anserini +test1832 Q0 2822908 24 8.522857 Anserini +test1832 Q0 383959 25 8.517962 Anserini +test1832 Q0 16873788 26 8.507381 Anserini +test1832 Q0 4880973 27 8.500983 Anserini +test1832 Q0 11756253 28 8.492142 Anserini +test1832 Q0 11434342 29 8.439607 Anserini +test1832 Q0 18689626 30 8.431169 Anserini +test1833 Q0 470805 1 13.985360 Anserini +test1833 Q0 2901584 2 13.657609 Anserini +test1833 Q0 16014358 3 13.559934 Anserini +test1833 Q0 470675 4 13.158831 Anserini +test1833 Q0 629512 5 13.038866 Anserini +test1833 Q0 16014357 6 12.760479 Anserini +test1833 Q0 12318130 7 12.329853 Anserini +test1833 Q0 716657 8 12.223662 Anserini +test1833 Q0 12318134 9 12.022196 Anserini +test1833 Q0 514585 10 11.975239 Anserini +test1833 Q0 470703 11 11.893370 Anserini +test1833 Q0 2755783 12 11.875582 Anserini +test1833 Q0 2901576 13 11.858181 Anserini +test1833 Q0 2277180 14 11.843328 Anserini +test1833 Q0 470804 15 11.743922 Anserini +test1833 Q0 19294145 16 11.677196 Anserini +test1833 Q0 7567678 17 11.626153 Anserini +test1833 Q0 610244 18 11.614470 Anserini +test1833 Q0 6168782 19 11.596097 Anserini +test1833 Q0 9371596 20 11.594271 Anserini +test1833 Q0 2920457 21 11.490633 Anserini +test1833 Q0 470802 22 11.481944 Anserini +test1833 Q0 6825468 23 11.477153 Anserini +test1833 Q0 7032198 24 11.446404 Anserini +test1833 Q0 9360695 25 11.417613 Anserini +test1833 Q0 470671 26 11.402378 Anserini +test1833 Q0 5285137 27 11.381029 Anserini +test1833 Q0 12018196 28 11.377186 Anserini +test1833 Q0 773657 29 11.375970 Anserini +test1833 Q0 629513 30 11.374262 Anserini +test1834 Q0 19671953 1 15.995031 Anserini +test1834 Q0 19671954 2 15.795411 Anserini +test1834 Q0 20636075 3 14.936707 Anserini +test1834 Q0 16638611 4 14.342678 Anserini +test1834 Q0 19691547 5 14.239149 Anserini +test1834 Q0 20636072 6 14.170403 Anserini +test1834 Q0 2388828 7 14.091834 Anserini +test1834 Q0 20480787 8 14.049788 Anserini +test1834 Q0 20636071 9 14.049393 Anserini +test1834 Q0 16701448 10 14.025358 Anserini +test1834 Q0 20460327 11 13.922650 Anserini +test1834 Q0 3705044 12 13.913773 Anserini +test1834 Q0 14787647 13 13.801287 Anserini +test1834 Q0 20636074 14 13.696232 Anserini +test1834 Q0 19450004 15 13.634047 Anserini +test1834 Q0 20480833 16 13.542799 Anserini +test1834 Q0 20539161 17 13.526924 Anserini +test1834 Q0 19998394 18 13.492249 Anserini +test1834 Q0 19692037 19 13.450865 Anserini +test1834 Q0 19691562 20 13.407330 Anserini +test1834 Q0 18444077 21 13.389337 Anserini +test1834 Q0 12608582 22 13.362029 Anserini +test1834 Q0 12608569 23 13.310202 Anserini +test1834 Q0 12608573 24 13.210822 Anserini +test1834 Q0 9293231 25 13.191989 Anserini +test1834 Q0 12608574 26 13.168959 Anserini +test1834 Q0 6848806 27 13.150929 Anserini +test1834 Q0 14953336 28 13.146807 Anserini +test1834 Q0 20813741 29 13.112350 Anserini +test1834 Q0 20797980 30 13.090423 Anserini +test1835 Q0 17068210 1 8.350334 Anserini +test1835 Q0 11342946 2 7.936472 Anserini +test1835 Q0 14470106 3 7.931082 Anserini +test1835 Q0 20215575 4 7.878143 Anserini +test1835 Q0 7457998 5 7.783233 Anserini +test1835 Q0 13637276 6 7.782465 Anserini +test1835 Q0 14142353 7 7.775971 Anserini +test1835 Q0 293047 8 7.775345 Anserini +test1835 Q0 8785109 9 7.757875 Anserini +test1835 Q0 492622 10 7.752946 Anserini +test1835 Q0 6412937 11 7.716298 Anserini +test1835 Q0 11631757 12 7.702073 Anserini +test1835 Q0 1392051 13 7.679665 Anserini +test1835 Q0 13011056 14 7.671219 Anserini +test1835 Q0 14209335 15 7.663945 Anserini +test1835 Q0 434745 16 7.644098 Anserini +test1835 Q0 3693034 17 7.588955 Anserini +test1835 Q0 2392615 18 7.581215 Anserini +test1835 Q0 13980175 19 7.576986 Anserini +test1835 Q0 435704 20 7.571367 Anserini +test1835 Q0 6659305 21 7.570163 Anserini +test1835 Q0 7792835 22 7.569420 Anserini +test1835 Q0 20770087 23 7.559028 Anserini +test1835 Q0 3022974 24 7.554433 Anserini +test1835 Q0 291131 25 7.541542 Anserini +test1835 Q0 4089888 26 7.535988 Anserini +test1835 Q0 6967398 27 7.530375 Anserini +test1835 Q0 10229452 28 7.528612 Anserini +test1835 Q0 10229401 29 7.528612 Anserini +test1835 Q0 11693126 30 7.523696 Anserini +test1836 Q0 13895307 1 10.077176 Anserini +test1836 Q0 17058181 2 9.462393 Anserini +test1836 Q0 15398457 3 9.296021 Anserini +test1836 Q0 15825700 4 9.005581 Anserini +test1836 Q0 7964642 5 8.853045 Anserini +test1836 Q0 20679181 6 8.816504 Anserini +test1836 Q0 12265107 7 8.735215 Anserini +test1836 Q0 16601058 8 8.725929 Anserini +test1836 Q0 5109389 9 8.725238 Anserini +test1836 Q0 16174285 10 8.709709 Anserini +test1836 Q0 12265109 11 8.667744 Anserini +test1836 Q0 19635909 12 8.646482 Anserini +test1836 Q0 5109385 13 8.624293 Anserini +test1836 Q0 15971187 14 8.543999 Anserini +test1836 Q0 11509410 15 8.515931 Anserini +test1836 Q0 18253680 16 8.445758 Anserini +test1836 Q0 16717148 17 8.417463 Anserini +test1836 Q0 556161 18 8.396858 Anserini +test1836 Q0 15232614 19 8.395056 Anserini +test1836 Q0 15705912 20 8.332109 Anserini +test1836 Q0 14408552 21 8.330410 Anserini +test1836 Q0 9048400 22 8.308760 Anserini +test1836 Q0 10116075 23 8.308760 Anserini +test1836 Q0 10116077 24 8.308760 Anserini +test1836 Q0 308463 25 8.280257 Anserini +test1836 Q0 15966140 26 8.265562 Anserini +test1836 Q0 14073670 27 8.229765 Anserini +test1836 Q0 14651445 28 8.191431 Anserini +test1836 Q0 10162559 29 8.167399 Anserini +test1836 Q0 4150905 30 8.152601 Anserini +test1837 Q0 13894410 1 16.442047 Anserini +test1837 Q0 14195232 2 16.214273 Anserini +test1837 Q0 7189504 3 16.010498 Anserini +test1837 Q0 6649267 4 15.526474 Anserini +test1837 Q0 14436411 5 15.435374 Anserini +test1837 Q0 15087812 6 15.394712 Anserini +test1837 Q0 6912297 7 15.365735 Anserini +test1837 Q0 13228232 8 15.356854 Anserini +test1837 Q0 16222450 9 15.325580 Anserini +test1837 Q0 6649269 10 14.899302 Anserini +test1837 Q0 6649285 11 14.806865 Anserini +test1837 Q0 8955275 12 14.671946 Anserini +test1837 Q0 6912298 13 14.658524 Anserini +test1837 Q0 16968632 14 14.638638 Anserini +test1837 Q0 6313476 15 14.442460 Anserini +test1837 Q0 14272267 16 14.439976 Anserini +test1837 Q0 17185383 17 14.414839 Anserini +test1837 Q0 12818412 18 14.414839 Anserini +test1837 Q0 15999025 19 14.406876 Anserini +test1837 Q0 8760710 20 14.054280 Anserini +test1837 Q0 15218121 21 14.040152 Anserini +test1837 Q0 7534970 22 14.013672 Anserini +test1837 Q0 17240702 23 14.012024 Anserini +test1837 Q0 12558309 24 13.975406 Anserini +test1837 Q0 14995001 25 13.866764 Anserini +test1837 Q0 10094759 26 13.860199 Anserini +test1837 Q0 16767478 27 13.855981 Anserini +test1837 Q0 9171599 28 13.822177 Anserini +test1837 Q0 9853552 29 13.730216 Anserini +test1837 Q0 13903011 30 13.672894 Anserini +test1838 Q0 13586911 1 16.482870 Anserini +test1838 Q0 20873449 2 15.366182 Anserini +test1838 Q0 20726613 3 15.017793 Anserini +test1838 Q0 6904218 4 14.899784 Anserini +test1838 Q0 5503551 5 14.552721 Anserini +test1838 Q0 5493404 6 13.895415 Anserini +test1838 Q0 12483793 7 13.629757 Anserini +test1838 Q0 20488609 8 13.456796 Anserini +test1838 Q0 9856022 9 13.398555 Anserini +test1838 Q0 5146710 10 13.135722 Anserini +test1838 Q0 6097086 11 13.088339 Anserini +test1838 Q0 2365876 12 13.005115 Anserini +test1838 Q0 5898639 13 12.990294 Anserini +test1838 Q0 13586909 14 12.916500 Anserini +test1838 Q0 20876696 15 12.835695 Anserini +test1838 Q0 18067166 16 12.727964 Anserini +test1838 Q0 18067189 17 12.716307 Anserini +test1838 Q0 5094674 18 12.640350 Anserini +test1838 Q0 14272396 19 12.603848 Anserini +test1838 Q0 5324661 20 12.597812 Anserini +test1838 Q0 4585400 21 12.474844 Anserini +test1838 Q0 494187 22 12.437515 Anserini +test1838 Q0 20504598 23 12.385131 Anserini +test1838 Q0 12680698 24 12.340697 Anserini +test1838 Q0 18414828 25 12.244553 Anserini +test1838 Q0 16101574 26 12.185997 Anserini +test1838 Q0 13913910 27 12.092903 Anserini +test1838 Q0 18067186 28 11.957607 Anserini +test1838 Q0 5669113 29 11.918991 Anserini +test1838 Q0 18067167 30 11.884006 Anserini +test1839 Q0 20346959 1 11.313248 Anserini +test1839 Q0 6448498 2 11.243340 Anserini +test1839 Q0 5051500 3 10.605597 Anserini +test1839 Q0 4606255 4 10.302183 Anserini +test1839 Q0 9025675 5 10.204558 Anserini +test1839 Q0 7101222 6 10.014112 Anserini +test1839 Q0 2191287 7 10.014112 Anserini +test1839 Q0 6073761 8 9.968132 Anserini +test1839 Q0 12989512 9 9.968132 Anserini +test1839 Q0 2481244 10 9.803714 Anserini +test1839 Q0 1764448 11 9.759212 Anserini +test1839 Q0 16988195 12 9.739738 Anserini +test1839 Q0 1291582 13 9.621868 Anserini +test1839 Q0 6045167 14 9.526958 Anserini +test1839 Q0 20970714 15 9.408731 Anserini +test1839 Q0 3820531 16 9.408731 Anserini +test1839 Q0 1430546 17 9.355594 Anserini +test1839 Q0 11431925 18 9.324355 Anserini +test1839 Q0 8017975 19 9.258132 Anserini +test1839 Q0 1291544 20 9.244227 Anserini +test1839 Q0 11578187 21 9.162681 Anserini +test1839 Q0 45518 22 9.162681 Anserini +test1839 Q0 15401831 23 9.112122 Anserini +test1839 Q0 16581793 24 9.112122 Anserini +test1839 Q0 16495493 25 9.112122 Anserini +test1839 Q0 260605 26 9.108250 Anserini +test1839 Q0 1291537 27 9.073391 Anserini +test1839 Q0 1487776 28 9.055827 Anserini +test1839 Q0 13545243 29 9.038172 Anserini +test1839 Q0 8361114 30 9.032276 Anserini +test184 Q0 1437841 1 21.350538 Anserini +test184 Q0 250818 2 18.012678 Anserini +test184 Q0 1437844 3 16.656338 Anserini +test184 Q0 250817 4 15.047873 Anserini +test184 Q0 8700620 5 14.937738 Anserini +test184 Q0 8700627 6 14.937738 Anserini +test184 Q0 12323590 7 14.862493 Anserini +test184 Q0 5897969 8 14.500399 Anserini +test184 Q0 1437842 9 14.396839 Anserini +test184 Q0 1437837 10 14.262012 Anserini +test184 Q0 7124323 11 14.213663 Anserini +test184 Q0 7124328 12 14.213663 Anserini +test184 Q0 5379636 13 14.173197 Anserini +test184 Q0 1437843 14 14.093248 Anserini +test184 Q0 1770349 15 13.897256 Anserini +test184 Q0 1770363 16 13.897256 Anserini +test184 Q0 2847704 17 13.839600 Anserini +test184 Q0 1437840 18 13.747631 Anserini +test184 Q0 1437839 19 13.676723 Anserini +test184 Q0 11833817 20 13.516211 Anserini +test184 Q0 9137419 21 13.497863 Anserini +test184 Q0 8404517 22 13.365414 Anserini +test184 Q0 8404511 23 13.365414 Anserini +test184 Q0 11833815 24 13.336698 Anserini +test184 Q0 19326211 25 13.320232 Anserini +test184 Q0 8700623 26 13.035304 Anserini +test184 Q0 5897966 27 12.835768 Anserini +test184 Q0 5897968 28 12.835768 Anserini +test184 Q0 17725859 29 12.770607 Anserini +test184 Q0 17725870 30 12.770607 Anserini +test1840 Q0 20818594 1 12.793659 Anserini +test1840 Q0 15929152 2 12.667138 Anserini +test1840 Q0 323515 3 12.580769 Anserini +test1840 Q0 9991063 4 12.409527 Anserini +test1840 Q0 323524 5 12.386649 Anserini +test1840 Q0 18237958 6 12.364884 Anserini +test1840 Q0 191457 7 12.310358 Anserini +test1840 Q0 978118 8 12.238364 Anserini +test1840 Q0 18237957 9 12.214236 Anserini +test1840 Q0 19554387 10 12.196564 Anserini +test1840 Q0 20195049 11 12.079356 Anserini +test1840 Q0 7712771 12 11.820967 Anserini +test1840 Q0 20940153 13 11.818586 Anserini +test1840 Q0 10216241 14 11.768780 Anserini +test1840 Q0 7370177 15 11.688657 Anserini +test1840 Q0 18595347 16 11.678744 Anserini +test1840 Q0 3011195 17 11.617718 Anserini +test1840 Q0 17039450 18 11.571737 Anserini +test1840 Q0 12693305 19 11.570944 Anserini +test1840 Q0 18178017 20 11.566682 Anserini +test1840 Q0 13419779 21 11.563569 Anserini +test1840 Q0 17723750 22 11.553923 Anserini +test1840 Q0 297110 23 11.547179 Anserini +test1840 Q0 6816501 24 11.536613 Anserini +test1840 Q0 1283647 25 11.475640 Anserini +test1840 Q0 13580905 26 11.470411 Anserini +test1840 Q0 5272022 27 11.433199 Anserini +test1840 Q0 5232748 28 11.427803 Anserini +test1840 Q0 17702257 29 11.395840 Anserini +test1840 Q0 323510 30 11.375631 Anserini +test1841 Q0 1692473 1 10.408630 Anserini +test1841 Q0 6298060 2 10.145334 Anserini +test1841 Q0 20252519 3 9.854671 Anserini +test1841 Q0 16603781 4 9.829601 Anserini +test1841 Q0 16604820 5 9.780820 Anserini +test1841 Q0 16613826 6 9.705942 Anserini +test1841 Q0 4952424 7 9.663915 Anserini +test1841 Q0 13236135 8 9.571679 Anserini +test1841 Q0 18725802 9 9.456347 Anserini +test1841 Q0 3306094 10 9.429143 Anserini +test1841 Q0 8284229 11 9.426838 Anserini +test1841 Q0 19134717 12 9.418848 Anserini +test1841 Q0 5613582 13 9.387519 Anserini +test1841 Q0 17311223 14 9.332842 Anserini +test1841 Q0 1981563 15 9.325906 Anserini +test1841 Q0 6239729 16 9.303238 Anserini +test1841 Q0 10668570 17 9.277938 Anserini +test1841 Q0 9293315 18 9.250931 Anserini +test1841 Q0 20758682 19 9.214723 Anserini +test1841 Q0 20483918 20 9.204033 Anserini +test1841 Q0 4281301 21 9.180813 Anserini +test1841 Q0 7358898 22 9.173362 Anserini +test1841 Q0 5220872 23 9.170507 Anserini +test1841 Q0 10457963 24 9.170507 Anserini +test1841 Q0 4365915 25 9.155670 Anserini +test1841 Q0 10780432 26 9.128480 Anserini +test1841 Q0 13590013 27 9.112251 Anserini +test1841 Q0 6373915 28 9.102182 Anserini +test1841 Q0 10094714 29 9.101315 Anserini +test1841 Q0 12079799 30 9.052552 Anserini +test1842 Q0 11696497 1 19.005602 Anserini +test1842 Q0 14533817 2 18.077305 Anserini +test1842 Q0 14533778 3 17.875525 Anserini +test1842 Q0 11696504 4 17.048233 Anserini +test1842 Q0 14533801 5 16.781256 Anserini +test1842 Q0 10169084 6 16.769236 Anserini +test1842 Q0 14533810 7 16.560329 Anserini +test1842 Q0 14533798 8 16.545473 Anserini +test1842 Q0 11696464 9 16.484621 Anserini +test1842 Q0 14533816 10 16.475832 Anserini +test1842 Q0 14533811 11 16.149664 Anserini +test1842 Q0 16917510 12 16.115543 Anserini +test1842 Q0 11223212 13 16.074415 Anserini +test1842 Q0 14533781 14 15.965526 Anserini +test1842 Q0 14533808 15 15.938891 Anserini +test1842 Q0 14533787 16 15.886308 Anserini +test1842 Q0 11696503 17 15.632631 Anserini +test1842 Q0 14533803 18 15.570433 Anserini +test1842 Q0 14533805 19 15.483433 Anserini +test1842 Q0 14533814 20 15.441957 Anserini +test1842 Q0 4757075 21 15.424834 Anserini +test1842 Q0 14533797 22 15.396976 Anserini +test1842 Q0 14533799 23 15.384049 Anserini +test1842 Q0 11696496 24 15.318897 Anserini +test1842 Q0 14533800 25 15.272315 Anserini +test1842 Q0 11696473 26 15.248824 Anserini +test1842 Q0 14533813 27 15.160849 Anserini +test1842 Q0 14533793 28 15.088566 Anserini +test1842 Q0 11696521 29 15.054820 Anserini +test1842 Q0 14533806 30 14.950266 Anserini +test1843 Q0 18264382 1 19.862473 Anserini +test1843 Q0 1605738 2 19.035290 Anserini +test1843 Q0 18264372 3 19.009945 Anserini +test1843 Q0 1605754 4 17.511288 Anserini +test1843 Q0 5129745 5 16.871445 Anserini +test1843 Q0 11737307 6 16.823229 Anserini +test1843 Q0 5129736 7 16.823229 Anserini +test1843 Q0 18264378 8 16.324497 Anserini +test1843 Q0 11737305 9 16.207975 Anserini +test1843 Q0 11708993 10 16.207975 Anserini +test1843 Q0 4999384 11 15.067544 Anserini +test1843 Q0 1605744 12 15.038298 Anserini +test1843 Q0 11394313 13 14.863176 Anserini +test1843 Q0 9432358 14 14.831414 Anserini +test1843 Q0 5014562 15 14.729616 Anserini +test1843 Q0 1605745 16 14.606788 Anserini +test1843 Q0 1751133 17 14.550395 Anserini +test1843 Q0 11602616 18 14.509581 Anserini +test1843 Q0 7337472 19 14.145802 Anserini +test1843 Q0 8044049 20 14.144465 Anserini +test1843 Q0 1605743 21 14.123285 Anserini +test1843 Q0 2531305 22 14.047282 Anserini +test1843 Q0 4999385 23 14.039685 Anserini +test1843 Q0 10116651 24 14.032573 Anserini +test1843 Q0 7014016 25 14.004452 Anserini +test1843 Q0 11394312 26 13.900570 Anserini +test1843 Q0 10979062 27 13.898198 Anserini +test1843 Q0 4530207 28 13.898198 Anserini +test1843 Q0 8290897 29 13.854115 Anserini +test1843 Q0 4172103 30 13.833538 Anserini +test1844 Q0 16835048 1 13.651733 Anserini +test1844 Q0 4416243 2 12.247576 Anserini +test1844 Q0 9995044 3 11.446379 Anserini +test1844 Q0 11501985 4 11.439064 Anserini +test1844 Q0 4416242 5 11.400430 Anserini +test1844 Q0 13385596 6 11.398102 Anserini +test1844 Q0 4416245 7 11.174161 Anserini +test1844 Q0 12118911 8 10.950527 Anserini +test1844 Q0 13385598 9 10.930567 Anserini +test1844 Q0 13416352 10 10.874475 Anserini +test1844 Q0 16720455 11 10.799473 Anserini +test1844 Q0 7509567 12 10.799473 Anserini +test1844 Q0 18421939 13 10.799473 Anserini +test1844 Q0 10405296 14 10.700281 Anserini +test1844 Q0 16214599 15 10.652531 Anserini +test1844 Q0 12575181 16 10.580548 Anserini +test1844 Q0 837739 17 10.179953 Anserini +test1844 Q0 12626458 18 10.072788 Anserini +test1844 Q0 9079600 19 9.897917 Anserini +test1844 Q0 3852059 20 9.801336 Anserini +test1844 Q0 12486377 21 9.653182 Anserini +test1844 Q0 19209930 22 9.623636 Anserini +test1844 Q0 4440896 23 9.487228 Anserini +test1844 Q0 19218170 24 9.419742 Anserini +test1844 Q0 15114231 25 9.363367 Anserini +test1844 Q0 13385597 26 9.363367 Anserini +test1844 Q0 6906405 27 9.355406 Anserini +test1844 Q0 16482056 28 9.245584 Anserini +test1844 Q0 10916675 29 9.242238 Anserini +test1844 Q0 19065103 30 9.239812 Anserini +test1845 Q0 19306228 1 11.825908 Anserini +test1845 Q0 18412269 2 10.786247 Anserini +test1845 Q0 17251558 3 10.651916 Anserini +test1845 Q0 18722250 4 10.599402 Anserini +test1845 Q0 18412287 5 10.355373 Anserini +test1845 Q0 18030339 6 10.334126 Anserini +test1845 Q0 289278 7 10.113455 Anserini +test1845 Q0 18412272 8 10.093827 Anserini +test1845 Q0 18722249 9 9.823936 Anserini +test1845 Q0 16840364 10 9.811755 Anserini +test1845 Q0 18774464 11 9.707910 Anserini +test1845 Q0 18609110 12 9.563270 Anserini +test1845 Q0 18715627 13 9.420503 Anserini +test1845 Q0 17284675 14 9.394387 Anserini +test1845 Q0 18722247 15 9.376617 Anserini +test1845 Q0 18722253 16 9.340956 Anserini +test1845 Q0 13248512 17 9.252207 Anserini +test1845 Q0 20004816 18 9.198429 Anserini +test1845 Q0 18862858 19 9.190310 Anserini +test1845 Q0 291011 20 9.048302 Anserini +test1845 Q0 1614701 21 9.041388 Anserini +test1845 Q0 1985694 22 8.898318 Anserini +test1845 Q0 18412273 23 8.827063 Anserini +test1845 Q0 18862859 24 8.816766 Anserini +test1845 Q0 19789928 25 8.757494 Anserini +test1845 Q0 18606045 26 8.671673 Anserini +test1845 Q0 9025325 27 8.664693 Anserini +test1845 Q0 14830055 28 8.658754 Anserini +test1845 Q0 18722093 29 8.636562 Anserini +test1845 Q0 20004815 30 8.614119 Anserini +test1846 Q0 20701063 1 16.686310 Anserini +test1846 Q0 112367 2 16.631491 Anserini +test1846 Q0 20701067 3 16.619442 Anserini +test1846 Q0 112378 4 15.976562 Anserini +test1846 Q0 112328 5 15.881035 Anserini +test1846 Q0 112309 6 15.843136 Anserini +test1846 Q0 112335 7 15.722858 Anserini +test1846 Q0 15815221 8 15.637551 Anserini +test1846 Q0 14774478 9 15.499475 Anserini +test1846 Q0 2613589 10 15.289341 Anserini +test1846 Q0 112366 11 15.270425 Anserini +test1846 Q0 112321 12 15.257620 Anserini +test1846 Q0 3452959 13 15.228640 Anserini +test1846 Q0 4520670 14 15.158470 Anserini +test1846 Q0 112347 15 15.107046 Anserini +test1846 Q0 112375 16 15.094919 Anserini +test1846 Q0 112288 17 15.094919 Anserini +test1846 Q0 112319 18 14.942158 Anserini +test1846 Q0 5374606 19 14.934202 Anserini +test1846 Q0 19443159 20 14.588436 Anserini +test1846 Q0 4110495 21 14.502172 Anserini +test1846 Q0 4110498 22 14.345566 Anserini +test1846 Q0 112339 23 14.264923 Anserini +test1846 Q0 112336 24 14.168948 Anserini +test1846 Q0 112324 25 14.150496 Anserini +test1846 Q0 10573187 26 14.055317 Anserini +test1846 Q0 13729252 27 14.035131 Anserini +test1846 Q0 20701066 28 13.869337 Anserini +test1846 Q0 112374 29 13.754401 Anserini +test1846 Q0 2613634 30 13.709089 Anserini +test1847 Q0 5643059 1 16.749590 Anserini +test1847 Q0 5643064 2 16.648153 Anserini +test1847 Q0 5643062 3 15.268417 Anserini +test1847 Q0 5762874 4 14.892587 Anserini +test1847 Q0 13286447 5 14.591417 Anserini +test1847 Q0 5643060 6 13.920357 Anserini +test1847 Q0 3539768 7 13.470268 Anserini +test1847 Q0 16275750 8 13.148010 Anserini +test1847 Q0 5559771 9 13.142982 Anserini +test1847 Q0 1264868 10 13.123491 Anserini +test1847 Q0 11550067 11 13.044831 Anserini +test1847 Q0 10196979 12 12.811009 Anserini +test1847 Q0 2793655 13 12.780464 Anserini +test1847 Q0 349769 14 12.618918 Anserini +test1847 Q0 4311820 15 12.607080 Anserini +test1847 Q0 464862 16 12.565710 Anserini +test1847 Q0 11701727 17 12.498392 Anserini +test1847 Q0 220028 18 12.487750 Anserini +test1847 Q0 4473980 19 12.444850 Anserini +test1847 Q0 5566414 20 12.427928 Anserini +test1847 Q0 5566461 21 12.350377 Anserini +test1847 Q0 5566457 22 12.350377 Anserini +test1847 Q0 8387077 23 12.345673 Anserini +test1847 Q0 9460991 24 12.321420 Anserini +test1847 Q0 10196977 25 12.239196 Anserini +test1847 Q0 1365137 26 12.237361 Anserini +test1847 Q0 9460980 27 12.192919 Anserini +test1847 Q0 5580464 28 12.154824 Anserini +test1847 Q0 6896554 29 12.136532 Anserini +test1847 Q0 5655304 30 12.063302 Anserini +test1848 Q0 16142138 1 13.527311 Anserini +test1848 Q0 1811568 2 13.477470 Anserini +test1848 Q0 1811582 3 13.155649 Anserini +test1848 Q0 1701621 4 12.980780 Anserini +test1848 Q0 8064561 5 12.887625 Anserini +test1848 Q0 17996889 6 12.887625 Anserini +test1848 Q0 17996903 7 12.436354 Anserini +test1848 Q0 17996969 8 12.396807 Anserini +test1848 Q0 16949850 9 12.279681 Anserini +test1848 Q0 19083247 10 12.176945 Anserini +test1848 Q0 4410862 11 11.979683 Anserini +test1848 Q0 17996966 12 11.909209 Anserini +test1848 Q0 20167374 13 11.900111 Anserini +test1848 Q0 13874110 14 11.737466 Anserini +test1848 Q0 3543409 15 11.709249 Anserini +test1848 Q0 14699784 16 11.680081 Anserini +test1848 Q0 1811575 17 11.634359 Anserini +test1848 Q0 16195242 18 11.610449 Anserini +test1848 Q0 16195199 19 11.599309 Anserini +test1848 Q0 19423250 20 11.575505 Anserini +test1848 Q0 13977087 21 11.520024 Anserini +test1848 Q0 5037208 22 11.462459 Anserini +test1848 Q0 3543282 23 11.441175 Anserini +test1848 Q0 18809943 24 11.441175 Anserini +test1848 Q0 19433745 25 11.441083 Anserini +test1848 Q0 3543388 26 11.389050 Anserini +test1848 Q0 13571461 27 11.350659 Anserini +test1848 Q0 16195245 28 11.339756 Anserini +test1848 Q0 5923825 29 11.324944 Anserini +test1848 Q0 17249644 30 11.304092 Anserini +test1849 Q0 465456 1 18.262737 Anserini +test1849 Q0 465461 2 18.162493 Anserini +test1849 Q0 465441 3 17.454628 Anserini +test1849 Q0 7541381 4 17.381290 Anserini +test1849 Q0 214404 5 17.363787 Anserini +test1849 Q0 13683561 6 17.240946 Anserini +test1849 Q0 465440 7 16.740429 Anserini +test1849 Q0 5304888 8 16.637280 Anserini +test1849 Q0 465466 9 16.109535 Anserini +test1849 Q0 14459220 10 15.622038 Anserini +test1849 Q0 7978978 11 15.576788 Anserini +test1849 Q0 13404347 12 15.426271 Anserini +test1849 Q0 465434 13 15.426271 Anserini +test1849 Q0 13404356 14 15.393110 Anserini +test1849 Q0 465447 15 15.381293 Anserini +test1849 Q0 14459218 16 15.381293 Anserini +test1849 Q0 214403 17 15.370432 Anserini +test1849 Q0 17557231 18 15.358728 Anserini +test1849 Q0 8452364 19 15.252335 Anserini +test1849 Q0 2701276 20 15.136103 Anserini +test1849 Q0 13845317 21 15.005062 Anserini +test1849 Q0 465462 22 14.954021 Anserini +test1849 Q0 13845313 23 14.954021 Anserini +test1849 Q0 7541254 24 14.903325 Anserini +test1849 Q0 7541335 25 14.903325 Anserini +test1849 Q0 465437 26 14.764924 Anserini +test1849 Q0 12309260 27 14.743878 Anserini +test1849 Q0 465458 28 14.688763 Anserini +test1849 Q0 3606684 29 14.679939 Anserini +test1849 Q0 7598892 30 14.624475 Anserini +test185 Q0 12244018 1 11.842506 Anserini +test185 Q0 16624732 2 11.805147 Anserini +test185 Q0 9697190 3 11.392404 Anserini +test185 Q0 18938658 4 11.220030 Anserini +test185 Q0 5713954 5 10.956136 Anserini +test185 Q0 10713509 6 10.866628 Anserini +test185 Q0 6384464 7 10.769589 Anserini +test185 Q0 1722115 8 10.515286 Anserini +test185 Q0 2335838 9 10.452842 Anserini +test185 Q0 5477480 10 10.418532 Anserini +test185 Q0 5609623 11 10.288991 Anserini +test185 Q0 5477483 12 10.256333 Anserini +test185 Q0 16636116 13 10.250319 Anserini +test185 Q0 6599845 14 10.221760 Anserini +test185 Q0 8927502 15 10.080528 Anserini +test185 Q0 14882616 16 10.044903 Anserini +test185 Q0 5477482 17 10.028762 Anserini +test185 Q0 16624733 18 10.027842 Anserini +test185 Q0 8383277 19 10.002275 Anserini +test185 Q0 16909674 20 9.980111 Anserini +test185 Q0 5758911 21 9.978042 Anserini +test185 Q0 17216058 22 9.950507 Anserini +test185 Q0 4695284 23 9.915527 Anserini +test185 Q0 20594168 24 9.904338 Anserini +test185 Q0 1722113 25 9.889027 Anserini +test185 Q0 9755067 26 9.876202 Anserini +test185 Q0 7752594 27 9.859454 Anserini +test185 Q0 5599061 28 9.856524 Anserini +test185 Q0 7944332 29 9.841720 Anserini +test185 Q0 9908546 30 9.838696 Anserini +test1850 Q0 7192637 1 18.362041 Anserini +test1850 Q0 6218476 2 18.185135 Anserini +test1850 Q0 6218473 3 17.879633 Anserini +test1850 Q0 9179663 4 17.690601 Anserini +test1850 Q0 17423248 5 17.548368 Anserini +test1850 Q0 17423262 6 17.548368 Anserini +test1850 Q0 18202998 7 17.515394 Anserini +test1850 Q0 17423256 8 17.261333 Anserini +test1850 Q0 14450872 9 17.033386 Anserini +test1850 Q0 17839473 10 17.018862 Anserini +test1850 Q0 13162211 11 16.968979 Anserini +test1850 Q0 9179664 12 16.905931 Anserini +test1850 Q0 7193307 13 16.788670 Anserini +test1850 Q0 9851467 14 16.654413 Anserini +test1850 Q0 13109851 15 16.630707 Anserini +test1850 Q0 13109853 16 16.630707 Anserini +test1850 Q0 7193304 17 16.611580 Anserini +test1850 Q0 16761407 18 16.455870 Anserini +test1850 Q0 13977973 19 16.400320 Anserini +test1850 Q0 17562068 20 16.361052 Anserini +test1850 Q0 10403569 21 16.335897 Anserini +test1850 Q0 7192639 22 16.295860 Anserini +test1850 Q0 19515114 23 16.264614 Anserini +test1850 Q0 15725714 24 16.237118 Anserini +test1850 Q0 2352265 25 16.207996 Anserini +test1850 Q0 18758229 26 16.183363 Anserini +test1850 Q0 7192720 27 16.038288 Anserini +test1850 Q0 9848856 28 16.035498 Anserini +test1850 Q0 6183600 29 15.918571 Anserini +test1850 Q0 16991950 30 15.917919 Anserini +test1851 Q0 3575785 1 11.208015 Anserini +test1851 Q0 20658676 2 10.552620 Anserini +test1851 Q0 15738884 3 10.313058 Anserini +test1851 Q0 309340 4 10.274128 Anserini +test1851 Q0 17063697 5 10.068995 Anserini +test1851 Q0 17063702 6 10.068995 Anserini +test1851 Q0 8090103 7 10.058821 Anserini +test1851 Q0 2049536 8 10.038254 Anserini +test1851 Q0 11832045 9 10.006737 Anserini +test1851 Q0 5184725 10 9.958010 Anserini +test1851 Q0 15169898 11 9.859497 Anserini +test1851 Q0 247041 12 9.749962 Anserini +test1851 Q0 6558343 13 9.673835 Anserini +test1851 Q0 5884667 14 9.562353 Anserini +test1851 Q0 10079406 15 9.401925 Anserini +test1851 Q0 17680188 16 9.368518 Anserini +test1851 Q0 7938231 17 9.271532 Anserini +test1851 Q0 1373248 18 9.262569 Anserini +test1851 Q0 12575740 19 9.214259 Anserini +test1851 Q0 8467483 20 9.204012 Anserini +test1851 Q0 3204332 21 9.184587 Anserini +test1851 Q0 4384919 22 9.161969 Anserini +test1851 Q0 1760132 23 9.161882 Anserini +test1851 Q0 3075098 24 9.123773 Anserini +test1851 Q0 309304 25 9.085437 Anserini +test1851 Q0 52532 26 9.063361 Anserini +test1851 Q0 185312 27 9.063361 Anserini +test1851 Q0 12658812 28 8.966935 Anserini +test1851 Q0 7709612 29 8.959999 Anserini +test1851 Q0 11601190 30 8.948183 Anserini +test1852 Q0 12836055 1 12.820313 Anserini +test1852 Q0 20412794 2 12.201566 Anserini +test1852 Q0 20412793 3 12.045423 Anserini +test1852 Q0 1248265 4 11.668754 Anserini +test1852 Q0 12110597 5 11.339141 Anserini +test1852 Q0 5501837 6 11.116233 Anserini +test1852 Q0 19202554 7 11.082748 Anserini +test1852 Q0 3185060 8 10.802259 Anserini +test1852 Q0 589363 9 10.623494 Anserini +test1852 Q0 589383 10 10.585491 Anserini +test1852 Q0 10223449 11 10.581759 Anserini +test1852 Q0 10223450 12 10.581759 Anserini +test1852 Q0 3990641 13 10.520916 Anserini +test1852 Q0 8859793 14 10.474785 Anserini +test1852 Q0 16565973 15 10.322796 Anserini +test1852 Q0 11893488 16 10.320536 Anserini +test1852 Q0 16296483 17 10.312854 Anserini +test1852 Q0 7322214 18 10.257165 Anserini +test1852 Q0 1075751 19 10.236443 Anserini +test1852 Q0 13472840 20 10.178736 Anserini +test1852 Q0 192747 21 10.131226 Anserini +test1852 Q0 16276305 22 10.131103 Anserini +test1852 Q0 5280311 23 10.112199 Anserini +test1852 Q0 13472841 24 10.104751 Anserini +test1852 Q0 269334 25 10.092002 Anserini +test1852 Q0 14053169 26 10.062206 Anserini +test1852 Q0 14915805 27 10.052267 Anserini +test1852 Q0 14915808 28 10.052267 Anserini +test1852 Q0 19764860 29 10.050139 Anserini +test1852 Q0 16981690 30 10.028361 Anserini +test1853 Q0 11293885 1 13.805348 Anserini +test1853 Q0 577591 2 11.857747 Anserini +test1853 Q0 18840173 3 11.756368 Anserini +test1853 Q0 577582 4 11.713470 Anserini +test1853 Q0 577581 5 11.699710 Anserini +test1853 Q0 11293883 6 11.660243 Anserini +test1853 Q0 13124048 7 11.660243 Anserini +test1853 Q0 1101484 8 11.565959 Anserini +test1853 Q0 12671960 9 11.536571 Anserini +test1853 Q0 10722681 10 11.498766 Anserini +test1853 Q0 12418201 11 11.323378 Anserini +test1853 Q0 10722680 12 11.023872 Anserini +test1853 Q0 9320362 13 10.918093 Anserini +test1853 Q0 20503239 14 10.918093 Anserini +test1853 Q0 577595 15 10.763087 Anserini +test1853 Q0 332805 16 10.590122 Anserini +test1853 Q0 13647476 17 10.586905 Anserini +test1853 Q0 9444855 18 10.497782 Anserini +test1853 Q0 9444849 19 10.450796 Anserini +test1853 Q0 577594 20 10.441481 Anserini +test1853 Q0 3015316 21 10.413412 Anserini +test1853 Q0 577583 22 10.369918 Anserini +test1853 Q0 332763 23 10.369918 Anserini +test1853 Q0 3795111 24 10.361553 Anserini +test1853 Q0 3795116 25 10.361553 Anserini +test1853 Q0 4965794 26 10.175086 Anserini +test1853 Q0 4965795 27 10.175086 Anserini +test1853 Q0 4529711 28 10.173862 Anserini +test1853 Q0 157834 29 10.138709 Anserini +test1853 Q0 7022307 30 10.122221 Anserini +test1854 Q0 2711341 1 15.605789 Anserini +test1854 Q0 15515606 2 14.858828 Anserini +test1854 Q0 15515623 3 14.820375 Anserini +test1854 Q0 15515617 4 14.291139 Anserini +test1854 Q0 300896 5 14.241346 Anserini +test1854 Q0 15515616 6 13.594223 Anserini +test1854 Q0 819844 7 13.501982 Anserini +test1854 Q0 819838 8 13.264010 Anserini +test1854 Q0 2711336 9 12.695243 Anserini +test1854 Q0 15515624 10 12.486216 Anserini +test1854 Q0 2711344 11 12.261972 Anserini +test1854 Q0 13677826 12 12.261972 Anserini +test1854 Q0 2711338 13 11.877318 Anserini +test1854 Q0 17064538 14 11.829831 Anserini +test1854 Q0 5275756 15 11.718185 Anserini +test1854 Q0 4210282 16 11.648252 Anserini +test1854 Q0 5449500 17 11.501300 Anserini +test1854 Q0 16737176 18 11.447418 Anserini +test1854 Q0 13969123 19 11.347189 Anserini +test1854 Q0 2711334 20 11.278753 Anserini +test1854 Q0 15515619 21 11.181698 Anserini +test1854 Q0 3522216 22 11.104981 Anserini +test1854 Q0 12832789 23 11.101223 Anserini +test1854 Q0 4141591 24 11.042414 Anserini +test1854 Q0 14816300 25 11.004698 Anserini +test1854 Q0 19725903 26 10.953358 Anserini +test1854 Q0 1529870 27 10.932877 Anserini +test1854 Q0 13677827 28 10.888788 Anserini +test1854 Q0 3522217 29 10.823995 Anserini +test1854 Q0 2057821 30 10.823995 Anserini +test1855 Q0 19733837 1 17.450428 Anserini +test1855 Q0 17632413 2 16.989687 Anserini +test1855 Q0 17632426 3 16.989687 Anserini +test1855 Q0 19733848 4 16.888613 Anserini +test1855 Q0 14605864 5 15.680232 Anserini +test1855 Q0 14605877 6 15.527609 Anserini +test1855 Q0 8157432 7 15.497081 Anserini +test1855 Q0 14022714 8 14.921641 Anserini +test1855 Q0 19052951 9 14.682199 Anserini +test1855 Q0 13363568 10 14.447650 Anserini +test1855 Q0 20126837 11 14.401410 Anserini +test1855 Q0 17632424 12 14.384687 Anserini +test1855 Q0 13363553 13 14.234825 Anserini +test1855 Q0 8157433 14 14.210839 Anserini +test1855 Q0 17632423 15 14.143948 Anserini +test1855 Q0 16655155 16 14.042220 Anserini +test1855 Q0 19148056 17 14.021195 Anserini +test1855 Q0 19148057 18 14.021195 Anserini +test1855 Q0 14605866 19 13.955942 Anserini +test1855 Q0 14786716 20 13.944114 Anserini +test1855 Q0 20716007 21 13.816820 Anserini +test1855 Q0 19259179 22 13.793268 Anserini +test1855 Q0 14341050 23 13.771624 Anserini +test1855 Q0 5291792 24 13.674218 Anserini +test1855 Q0 13863999 25 13.566589 Anserini +test1855 Q0 19733838 26 13.448419 Anserini +test1855 Q0 13964217 27 13.366489 Anserini +test1855 Q0 16557578 28 13.321561 Anserini +test1855 Q0 20835727 29 13.321561 Anserini +test1855 Q0 20835728 30 13.321561 Anserini +test1856 Q0 19387312 1 18.264853 Anserini +test1856 Q0 18008515 2 15.673548 Anserini +test1856 Q0 19436668 3 15.214964 Anserini +test1856 Q0 15973683 4 14.912569 Anserini +test1856 Q0 20720450 5 14.907156 Anserini +test1856 Q0 19071496 6 14.600723 Anserini +test1856 Q0 19434036 7 14.461182 Anserini +test1856 Q0 19434049 8 14.461182 Anserini +test1856 Q0 19387315 9 14.330154 Anserini +test1856 Q0 16998147 10 14.199172 Anserini +test1856 Q0 19434039 11 14.152099 Anserini +test1856 Q0 19456886 12 13.932229 Anserini +test1856 Q0 19045590 13 13.570844 Anserini +test1856 Q0 19045574 14 13.570844 Anserini +test1856 Q0 17415123 15 13.424613 Anserini +test1856 Q0 19436658 16 13.415844 Anserini +test1856 Q0 19387304 17 12.936039 Anserini +test1856 Q0 19387318 18 12.936039 Anserini +test1856 Q0 15973686 19 12.723384 Anserini +test1856 Q0 15973652 20 12.561429 Anserini +test1856 Q0 19436652 21 12.441330 Anserini +test1856 Q0 15973690 22 12.299858 Anserini +test1856 Q0 19404851 23 12.238943 Anserini +test1856 Q0 19436659 24 12.230981 Anserini +test1856 Q0 15973678 25 12.230981 Anserini +test1856 Q0 15973698 26 12.189656 Anserini +test1856 Q0 19434045 27 12.177979 Anserini +test1856 Q0 15973679 28 11.998971 Anserini +test1856 Q0 19434043 29 11.962738 Anserini +test1856 Q0 15973672 30 11.934431 Anserini +test1857 Q0 2696995 1 18.027716 Anserini +test1857 Q0 2697006 2 18.025469 Anserini +test1857 Q0 2696999 3 18.002676 Anserini +test1857 Q0 5812205 4 17.947338 Anserini +test1857 Q0 5812217 5 17.727711 Anserini +test1857 Q0 2696998 6 17.447803 Anserini +test1857 Q0 2696997 7 16.967840 Anserini +test1857 Q0 605602 8 16.862171 Anserini +test1857 Q0 20827577 9 16.810207 Anserini +test1857 Q0 20827574 10 16.810207 Anserini +test1857 Q0 1988411 11 16.784365 Anserini +test1857 Q0 1988442 12 16.784365 Anserini +test1857 Q0 2696996 13 16.703777 Anserini +test1857 Q0 18386542 14 16.687021 Anserini +test1857 Q0 13259059 15 16.408792 Anserini +test1857 Q0 18096535 16 16.356579 Anserini +test1857 Q0 294300 17 16.321777 Anserini +test1857 Q0 1297922 18 16.298162 Anserini +test1857 Q0 7698973 19 15.897589 Anserini +test1857 Q0 338341 20 15.837772 Anserini +test1857 Q0 14310137 21 15.788986 Anserini +test1857 Q0 1489036 22 15.713847 Anserini +test1857 Q0 2189278 23 15.712308 Anserini +test1857 Q0 12505454 24 15.700858 Anserini +test1857 Q0 8699730 25 15.653267 Anserini +test1857 Q0 3429837 26 15.564939 Anserini +test1857 Q0 1593548 27 15.505624 Anserini +test1857 Q0 5909221 28 15.453918 Anserini +test1857 Q0 294298 29 15.447599 Anserini +test1857 Q0 44900 30 15.408046 Anserini +test1858 Q0 15827282 1 15.002903 Anserini +test1858 Q0 20657761 2 14.818631 Anserini +test1858 Q0 4755526 3 14.757421 Anserini +test1858 Q0 20516920 4 14.611425 Anserini +test1858 Q0 18544514 5 14.509210 Anserini +test1858 Q0 7976681 6 14.506409 Anserini +test1858 Q0 20123621 7 14.481593 Anserini +test1858 Q0 15823167 8 14.443269 Anserini +test1858 Q0 12828739 9 14.406543 Anserini +test1858 Q0 9928992 10 14.170179 Anserini +test1858 Q0 14716143 11 14.167531 Anserini +test1858 Q0 16405713 12 14.139635 Anserini +test1858 Q0 10481484 13 14.065985 Anserini +test1858 Q0 16264811 14 14.034023 Anserini +test1858 Q0 3196096 15 14.001449 Anserini +test1858 Q0 12709544 16 13.820249 Anserini +test1858 Q0 9903892 17 13.788763 Anserini +test1858 Q0 10545041 18 13.586025 Anserini +test1858 Q0 19217933 19 13.576820 Anserini +test1858 Q0 16276491 20 13.576458 Anserini +test1858 Q0 18160729 21 13.462209 Anserini +test1858 Q0 18873953 22 13.427352 Anserini +test1858 Q0 18126593 23 13.402373 Anserini +test1858 Q0 16587820 24 13.378792 Anserini +test1858 Q0 16400947 25 13.316377 Anserini +test1858 Q0 2356729 26 13.297792 Anserini +test1858 Q0 1737332 27 13.276244 Anserini +test1858 Q0 7374572 28 13.267019 Anserini +test1858 Q0 1449475 29 13.261647 Anserini +test1858 Q0 8157013 30 13.252114 Anserini +test1859 Q0 10212263 1 14.405869 Anserini +test1859 Q0 2096779 2 12.763225 Anserini +test1859 Q0 10363967 3 12.513815 Anserini +test1859 Q0 12135006 4 12.322453 Anserini +test1859 Q0 12122662 5 12.257828 Anserini +test1859 Q0 105398 6 12.225564 Anserini +test1859 Q0 18352250 7 12.217614 Anserini +test1859 Q0 12783177 8 12.151730 Anserini +test1859 Q0 20199754 9 12.125605 Anserini +test1859 Q0 15157178 10 12.102436 Anserini +test1859 Q0 20115790 11 12.022590 Anserini +test1859 Q0 12609034 12 11.858775 Anserini +test1859 Q0 12122667 13 11.795704 Anserini +test1859 Q0 16683545 14 11.793229 Anserini +test1859 Q0 8086210 15 11.786474 Anserini +test1859 Q0 105449 16 11.548305 Anserini +test1859 Q0 5228893 17 11.548305 Anserini +test1859 Q0 12315142 18 11.526020 Anserini +test1859 Q0 16683546 19 11.493324 Anserini +test1859 Q0 9094336 20 11.471560 Anserini +test1859 Q0 3773355 21 11.467361 Anserini +test1859 Q0 3773357 22 11.467361 Anserini +test1859 Q0 3349267 23 11.455214 Anserini +test1859 Q0 2096816 24 11.385157 Anserini +test1859 Q0 12315139 25 11.369585 Anserini +test1859 Q0 2595188 26 11.340660 Anserini +test1859 Q0 17376274 27 11.340628 Anserini +test1859 Q0 17706978 28 11.293149 Anserini +test1859 Q0 5535337 29 11.287554 Anserini +test1859 Q0 5535338 30 11.287554 Anserini +test186 Q0 2491214 1 13.975093 Anserini +test186 Q0 15380595 2 13.087152 Anserini +test186 Q0 2491213 3 13.075826 Anserini +test186 Q0 15380598 4 13.074587 Anserini +test186 Q0 2491193 5 12.553111 Anserini +test186 Q0 2491196 6 12.229768 Anserini +test186 Q0 12358229 7 12.137288 Anserini +test186 Q0 2491206 8 11.973127 Anserini +test186 Q0 9790674 9 11.824884 Anserini +test186 Q0 2491210 10 11.579062 Anserini +test186 Q0 15380600 11 11.396877 Anserini +test186 Q0 2491203 12 11.168810 Anserini +test186 Q0 15380603 13 11.168810 Anserini +test186 Q0 2491205 14 11.086690 Anserini +test186 Q0 15380636 15 11.060753 Anserini +test186 Q0 4757878 16 10.980125 Anserini +test186 Q0 15380601 17 10.901751 Anserini +test186 Q0 1830638 18 10.736151 Anserini +test186 Q0 2491199 19 10.536686 Anserini +test186 Q0 20942037 20 10.515607 Anserini +test186 Q0 406831 21 10.486595 Anserini +test186 Q0 14552725 22 10.325152 Anserini +test186 Q0 14552726 23 10.325152 Anserini +test186 Q0 4127026 24 10.286338 Anserini +test186 Q0 15380615 25 10.242154 Anserini +test186 Q0 4953780 26 10.242154 Anserini +test186 Q0 15380626 27 10.160537 Anserini +test186 Q0 15380635 28 10.160537 Anserini +test186 Q0 12358209 29 10.160537 Anserini +test186 Q0 2491204 30 10.097800 Anserini +test1860 Q0 2606411 1 12.197262 Anserini +test1860 Q0 6223401 2 11.902419 Anserini +test1860 Q0 4231170 3 11.780716 Anserini +test1860 Q0 2046261 4 11.525904 Anserini +test1860 Q0 1904023 5 11.323926 Anserini +test1860 Q0 14651393 6 11.293062 Anserini +test1860 Q0 10909869 7 10.964684 Anserini +test1860 Q0 10728001 8 10.907668 Anserini +test1860 Q0 7736226 9 10.901017 Anserini +test1860 Q0 7203549 10 10.854470 Anserini +test1860 Q0 428039 11 10.785196 Anserini +test1860 Q0 13621156 12 10.686995 Anserini +test1860 Q0 1904022 13 10.670374 Anserini +test1860 Q0 4231175 14 10.655340 Anserini +test1860 Q0 1611315 15 10.650223 Anserini +test1860 Q0 14105530 16 10.585818 Anserini +test1860 Q0 629602 17 10.514200 Anserini +test1860 Q0 1670973 18 10.500215 Anserini +test1860 Q0 459302 19 10.485744 Anserini +test1860 Q0 7736233 20 10.470394 Anserini +test1860 Q0 6149754 21 10.465780 Anserini +test1860 Q0 20647675 22 10.411964 Anserini +test1860 Q0 14924916 23 10.352192 Anserini +test1860 Q0 20090247 24 10.351768 Anserini +test1860 Q0 11080006 25 10.332899 Anserini +test1860 Q0 7429375 26 10.319518 Anserini +test1860 Q0 14736560 27 10.304815 Anserini +test1860 Q0 11826353 28 10.301110 Anserini +test1860 Q0 14924915 29 10.277767 Anserini +test1860 Q0 15717331 30 10.245897 Anserini +test1861 Q0 13242263 1 17.077946 Anserini +test1861 Q0 14513502 2 15.392817 Anserini +test1861 Q0 13242264 3 13.984646 Anserini +test1861 Q0 863489 4 13.596453 Anserini +test1861 Q0 20612988 5 13.169592 Anserini +test1861 Q0 14513514 6 12.821442 Anserini +test1861 Q0 9981996 7 12.544969 Anserini +test1861 Q0 7193169 8 12.528208 Anserini +test1861 Q0 9390262 9 12.436858 Anserini +test1861 Q0 9949162 10 12.429954 Anserini +test1861 Q0 4070650 11 12.366640 Anserini +test1861 Q0 13996553 12 12.357097 Anserini +test1861 Q0 9182558 13 12.315138 Anserini +test1861 Q0 15222318 14 12.297994 Anserini +test1861 Q0 3140199 15 12.297342 Anserini +test1861 Q0 20686577 16 12.290659 Anserini +test1861 Q0 9873407 17 12.201262 Anserini +test1861 Q0 5669405 18 12.184162 Anserini +test1861 Q0 17008824 19 12.076111 Anserini +test1861 Q0 14896022 20 12.070765 Anserini +test1861 Q0 14513505 21 12.051306 Anserini +test1861 Q0 6282358 22 12.032722 Anserini +test1861 Q0 17455973 23 11.954483 Anserini +test1861 Q0 14182340 24 11.929974 Anserini +test1861 Q0 1327491 25 11.809247 Anserini +test1861 Q0 8425872 26 11.789817 Anserini +test1861 Q0 2315061 27 11.785031 Anserini +test1861 Q0 16861124 28 11.767117 Anserini +test1861 Q0 7326846 29 11.730232 Anserini +test1861 Q0 17231852 30 11.722033 Anserini +test1862 Q0 3211001 1 13.437009 Anserini +test1862 Q0 14599562 2 11.448564 Anserini +test1862 Q0 3211000 3 11.118746 Anserini +test1862 Q0 2091890 4 11.001039 Anserini +test1862 Q0 12292528 5 10.907639 Anserini +test1862 Q0 12681577 6 10.784609 Anserini +test1862 Q0 17873691 7 10.650983 Anserini +test1862 Q0 12292524 8 10.645470 Anserini +test1862 Q0 7251989 9 10.519773 Anserini +test1862 Q0 13147798 10 10.420937 Anserini +test1862 Q0 18403548 11 10.414798 Anserini +test1862 Q0 2005078 12 10.382086 Anserini +test1862 Q0 9269786 13 10.267118 Anserini +test1862 Q0 17964906 14 10.227695 Anserini +test1862 Q0 19577870 15 10.157225 Anserini +test1862 Q0 9989066 16 9.960119 Anserini +test1862 Q0 6150002 17 9.946802 Anserini +test1862 Q0 6926124 18 9.875433 Anserini +test1862 Q0 11453471 19 9.820491 Anserini +test1862 Q0 20744893 20 9.792248 Anserini +test1862 Q0 16360518 21 9.786552 Anserini +test1862 Q0 216558 22 9.786552 Anserini +test1862 Q0 12012341 23 9.786552 Anserini +test1862 Q0 7853049 24 9.721775 Anserini +test1862 Q0 2792753 25 9.703953 Anserini +test1862 Q0 16413868 26 9.678438 Anserini +test1862 Q0 4851830 27 9.641629 Anserini +test1862 Q0 3362614 28 9.641417 Anserini +test1862 Q0 15446123 29 9.621089 Anserini +test1862 Q0 11963556 30 9.576553 Anserini +test1863 Q0 18615865 1 21.479324 Anserini +test1863 Q0 18615867 2 20.743210 Anserini +test1863 Q0 18615888 3 20.390579 Anserini +test1863 Q0 18615866 4 19.015079 Anserini +test1863 Q0 19692135 5 18.740299 Anserini +test1863 Q0 18615868 6 18.365414 Anserini +test1863 Q0 18798743 7 18.232073 Anserini +test1863 Q0 860304 8 18.163620 Anserini +test1863 Q0 20186094 9 18.145887 Anserini +test1863 Q0 3807476 10 18.086637 Anserini +test1863 Q0 10912220 11 18.024113 Anserini +test1863 Q0 18615887 12 17.763548 Anserini +test1863 Q0 18615884 13 17.748629 Anserini +test1863 Q0 7920119 14 17.664473 Anserini +test1863 Q0 20955380 15 17.660616 Anserini +test1863 Q0 15342052 16 17.653643 Anserini +test1863 Q0 2815020 17 17.588299 Anserini +test1863 Q0 8318980 18 17.561533 Anserini +test1863 Q0 10912247 19 17.548077 Anserini +test1863 Q0 1019114 20 17.349539 Anserini +test1863 Q0 19043774 21 17.326517 Anserini +test1863 Q0 10721715 22 17.307995 Anserini +test1863 Q0 3222650 23 17.186287 Anserini +test1863 Q0 3359386 24 17.127048 Anserini +test1863 Q0 3807477 25 16.983171 Anserini +test1863 Q0 19128099 26 16.967926 Anserini +test1863 Q0 13518853 27 16.967926 Anserini +test1863 Q0 18615869 28 16.780952 Anserini +test1863 Q0 5751539 29 16.729708 Anserini +test1863 Q0 374879 30 16.693857 Anserini +test1864 Q0 783937 1 15.647500 Anserini +test1864 Q0 783955 2 15.381292 Anserini +test1864 Q0 783944 3 14.817475 Anserini +test1864 Q0 20117080 4 14.790854 Anserini +test1864 Q0 784230 5 14.753952 Anserini +test1864 Q0 20283418 6 14.625015 Anserini +test1864 Q0 784223 7 14.205204 Anserini +test1864 Q0 5748433 8 14.115780 Anserini +test1864 Q0 783954 9 14.047916 Anserini +test1864 Q0 784228 10 14.047916 Anserini +test1864 Q0 10240666 11 14.016797 Anserini +test1864 Q0 783928 12 13.978207 Anserini +test1864 Q0 784234 13 13.931683 Anserini +test1864 Q0 784224 14 13.870800 Anserini +test1864 Q0 2812619 15 13.815755 Anserini +test1864 Q0 2812622 16 13.815755 Anserini +test1864 Q0 783984 17 13.722615 Anserini +test1864 Q0 784193 18 13.688267 Anserini +test1864 Q0 783934 19 13.660011 Anserini +test1864 Q0 784182 20 13.630091 Anserini +test1864 Q0 784227 21 13.596828 Anserini +test1864 Q0 13749790 22 13.548513 Anserini +test1864 Q0 783962 23 13.508555 Anserini +test1864 Q0 784205 24 13.508555 Anserini +test1864 Q0 784243 25 13.498897 Anserini +test1864 Q0 783959 26 13.425491 Anserini +test1864 Q0 784202 27 13.381382 Anserini +test1864 Q0 784216 28 13.319553 Anserini +test1864 Q0 783947 29 13.318701 Anserini +test1864 Q0 784194 30 13.318701 Anserini +test1865 Q0 4803521 1 14.098686 Anserini +test1865 Q0 7865339 2 13.367011 Anserini +test1865 Q0 12010611 3 13.091427 Anserini +test1865 Q0 5313743 4 13.079131 Anserini +test1865 Q0 16586963 5 13.012375 Anserini +test1865 Q0 5218835 6 12.678763 Anserini +test1865 Q0 8411399 7 12.501318 Anserini +test1865 Q0 6477893 8 12.381458 Anserini +test1865 Q0 2397282 9 12.314339 Anserini +test1865 Q0 10759228 10 12.311846 Anserini +test1865 Q0 4803528 11 12.305997 Anserini +test1865 Q0 12010605 12 12.226007 Anserini +test1865 Q0 20846950 13 12.189733 Anserini +test1865 Q0 15668961 14 12.104425 Anserini +test1865 Q0 436047 15 11.789346 Anserini +test1865 Q0 4139070 16 11.701562 Anserini +test1865 Q0 12010606 17 11.679848 Anserini +test1865 Q0 803844 18 11.541821 Anserini +test1865 Q0 20846949 19 11.535138 Anserini +test1865 Q0 2341833 20 11.446632 Anserini +test1865 Q0 20846951 21 11.430182 Anserini +test1865 Q0 8411440 22 11.377586 Anserini +test1865 Q0 3364477 23 11.237539 Anserini +test1865 Q0 4927270 24 11.188482 Anserini +test1865 Q0 13614426 25 11.153577 Anserini +test1865 Q0 12010607 26 11.128158 Anserini +test1865 Q0 6001538 27 11.117561 Anserini +test1865 Q0 2393867 28 11.116262 Anserini +test1865 Q0 12156400 29 11.038054 Anserini +test1865 Q0 1309500 30 11.037398 Anserini +test1866 Q0 12999907 1 12.535237 Anserini +test1866 Q0 8664929 2 12.243730 Anserini +test1866 Q0 6965525 3 12.095661 Anserini +test1866 Q0 11036948 4 11.888781 Anserini +test1866 Q0 13140633 5 11.829128 Anserini +test1866 Q0 11036927 6 11.755470 Anserini +test1866 Q0 5203752 7 11.510688 Anserini +test1866 Q0 11036924 8 11.094410 Anserini +test1866 Q0 4552285 9 11.060298 Anserini +test1866 Q0 13140632 10 10.968536 Anserini +test1866 Q0 190248 11 10.929933 Anserini +test1866 Q0 14812234 12 10.903066 Anserini +test1866 Q0 16591240 13 10.824365 Anserini +test1866 Q0 191143 14 10.793569 Anserini +test1866 Q0 15836499 15 10.768890 Anserini +test1866 Q0 11036928 16 10.707249 Anserini +test1866 Q0 155071 17 10.554564 Anserini +test1866 Q0 6638802 18 10.511757 Anserini +test1866 Q0 11241756 19 10.427771 Anserini +test1866 Q0 4498662 20 10.427062 Anserini +test1866 Q0 18145182 21 10.338434 Anserini +test1866 Q0 15978321 22 10.288488 Anserini +test1866 Q0 12880115 23 10.272992 Anserini +test1866 Q0 4171257 24 10.255106 Anserini +test1866 Q0 414933 25 10.228413 Anserini +test1866 Q0 8901701 26 10.185514 Anserini +test1866 Q0 11036936 27 10.173921 Anserini +test1866 Q0 222288 28 10.163240 Anserini +test1866 Q0 14812235 29 10.145676 Anserini +test1866 Q0 227892 30 10.130154 Anserini +test1867 Q0 6817192 1 27.743652 Anserini +test1867 Q0 18820628 2 26.877350 Anserini +test1867 Q0 19702150 3 26.231800 Anserini +test1867 Q0 19702149 4 26.141949 Anserini +test1867 Q0 3825355 5 26.029715 Anserini +test1867 Q0 3825372 6 26.029715 Anserini +test1867 Q0 6817186 7 26.029715 Anserini +test1867 Q0 7855164 8 25.971214 Anserini +test1867 Q0 8950781 9 25.946524 Anserini +test1867 Q0 19681588 10 25.695024 Anserini +test1867 Q0 19979513 11 25.624474 Anserini +test1867 Q0 873987 12 25.522892 Anserini +test1867 Q0 6817199 13 25.489609 Anserini +test1867 Q0 6817196 14 25.438110 Anserini +test1867 Q0 6817191 15 25.386820 Anserini +test1867 Q0 3033883 16 25.386820 Anserini +test1867 Q0 6817198 17 25.358486 Anserini +test1867 Q0 3825356 18 25.284857 Anserini +test1867 Q0 2962329 19 25.208935 Anserini +test1867 Q0 2962322 20 25.152281 Anserini +test1867 Q0 19979525 21 25.095881 Anserini +test1867 Q0 19681587 22 25.056950 Anserini +test1867 Q0 12769559 23 25.039734 Anserini +test1867 Q0 12769555 24 25.039734 Anserini +test1867 Q0 8160270 25 24.794088 Anserini +test1867 Q0 20064215 26 24.788168 Anserini +test1867 Q0 6127654 27 24.731472 Anserini +test1867 Q0 10540118 28 24.487118 Anserini +test1867 Q0 5650060 29 24.473963 Anserini +test1867 Q0 20064216 30 24.452351 Anserini +test1868 Q0 15608145 1 13.790683 Anserini +test1868 Q0 15608158 2 11.898497 Anserini +test1868 Q0 3509314 3 11.722768 Anserini +test1868 Q0 18968422 4 11.684160 Anserini +test1868 Q0 15608155 5 11.664469 Anserini +test1868 Q0 7140466 6 11.631111 Anserini +test1868 Q0 20472774 7 11.579158 Anserini +test1868 Q0 15608144 8 11.565701 Anserini +test1868 Q0 8664424 9 11.279550 Anserini +test1868 Q0 7010359 10 11.269258 Anserini +test1868 Q0 15279280 11 11.164704 Anserini +test1868 Q0 8664434 12 11.107114 Anserini +test1868 Q0 18791389 13 11.095705 Anserini +test1868 Q0 15608154 14 10.945599 Anserini +test1868 Q0 19188295 15 10.874558 Anserini +test1868 Q0 2250297 16 10.826518 Anserini +test1868 Q0 20567634 17 10.812104 Anserini +test1868 Q0 8273150 18 10.804346 Anserini +test1868 Q0 18968418 19 10.776515 Anserini +test1868 Q0 15608132 20 10.767297 Anserini +test1868 Q0 20567632 21 10.764251 Anserini +test1868 Q0 20732847 22 10.718052 Anserini +test1868 Q0 11643727 23 10.648475 Anserini +test1868 Q0 5713958 24 10.648475 Anserini +test1868 Q0 16002673 25 10.627257 Anserini +test1868 Q0 19383502 26 10.602772 Anserini +test1868 Q0 7150752 27 10.543759 Anserini +test1868 Q0 15608130 28 10.468950 Anserini +test1868 Q0 15608148 29 10.449552 Anserini +test1868 Q0 14383646 30 10.441540 Anserini +test1869 Q0 5423099 1 17.069645 Anserini +test1869 Q0 6904439 2 11.507553 Anserini +test1869 Q0 7309674 3 11.474260 Anserini +test1869 Q0 5088954 4 11.421160 Anserini +test1869 Q0 11423292 5 11.302242 Anserini +test1869 Q0 4988102 6 11.201113 Anserini +test1869 Q0 2887939 7 10.824890 Anserini +test1869 Q0 12902217 8 10.751205 Anserini +test1869 Q0 8930763 9 10.714688 Anserini +test1869 Q0 16595107 10 10.714688 Anserini +test1869 Q0 3407318 11 10.701535 Anserini +test1869 Q0 1740224 12 10.598822 Anserini +test1869 Q0 15563624 13 10.595485 Anserini +test1869 Q0 18190316 14 10.528558 Anserini +test1869 Q0 5423096 15 10.499059 Anserini +test1869 Q0 20482300 16 10.452440 Anserini +test1869 Q0 12728490 17 10.435178 Anserini +test1869 Q0 17959338 18 10.381655 Anserini +test1869 Q0 7547987 19 10.372577 Anserini +test1869 Q0 13371438 20 10.372016 Anserini +test1869 Q0 20213358 21 10.333508 Anserini +test1869 Q0 10930075 22 10.333120 Anserini +test1869 Q0 13388831 23 10.331785 Anserini +test1869 Q0 11258096 24 10.317208 Anserini +test1869 Q0 2262288 25 10.269981 Anserini +test1869 Q0 12006267 26 10.243204 Anserini +test1869 Q0 2194840 27 10.217313 Anserini +test1869 Q0 19317401 28 10.213112 Anserini +test1869 Q0 19093182 29 10.208343 Anserini +test1869 Q0 20083392 30 10.204384 Anserini +test187 Q0 159869 1 21.610298 Anserini +test187 Q0 159861 2 20.002281 Anserini +test187 Q0 159860 3 19.758852 Anserini +test187 Q0 14611427 4 19.468056 Anserini +test187 Q0 7831799 5 19.347740 Anserini +test187 Q0 159874 6 18.951138 Anserini +test187 Q0 159893 7 18.935387 Anserini +test187 Q0 159828 8 18.935387 Anserini +test187 Q0 418205 9 18.880930 Anserini +test187 Q0 2293086 10 18.691040 Anserini +test187 Q0 159836 11 18.434540 Anserini +test187 Q0 16485191 12 18.324833 Anserini +test187 Q0 159867 13 18.134962 Anserini +test187 Q0 12079541 14 18.114443 Anserini +test187 Q0 159891 15 17.920763 Anserini +test187 Q0 159866 16 17.865131 Anserini +test187 Q0 159864 17 17.846901 Anserini +test187 Q0 31792 18 17.838673 Anserini +test187 Q0 12265335 19 17.643259 Anserini +test187 Q0 20031988 20 17.625555 Anserini +test187 Q0 5251360 21 17.616743 Anserini +test187 Q0 4420929 22 17.574476 Anserini +test187 Q0 159837 23 17.571253 Anserini +test187 Q0 27038 24 17.571150 Anserini +test187 Q0 5623535 25 17.458231 Anserini +test187 Q0 159865 26 17.367142 Anserini +test187 Q0 10788857 27 17.262262 Anserini +test187 Q0 1793567 28 17.187878 Anserini +test187 Q0 10788852 29 17.175568 Anserini +test187 Q0 20311535 30 17.153574 Anserini +test1870 Q0 17990712 1 10.658048 Anserini +test1870 Q0 8549362 2 10.219965 Anserini +test1870 Q0 14523859 3 9.922120 Anserini +test1870 Q0 2236533 4 9.793326 Anserini +test1870 Q0 17494152 5 9.749132 Anserini +test1870 Q0 18295545 6 9.688931 Anserini +test1870 Q0 19540115 7 9.625717 Anserini +test1870 Q0 20183168 8 9.619645 Anserini +test1870 Q0 20183169 9 9.479619 Anserini +test1870 Q0 5643274 10 9.473361 Anserini +test1870 Q0 19100931 11 9.391571 Anserini +test1870 Q0 19420040 12 9.318757 Anserini +test1870 Q0 17716652 13 9.314414 Anserini +test1870 Q0 509821 14 9.312002 Anserini +test1870 Q0 7574788 15 9.177508 Anserini +test1870 Q0 20413185 16 9.158874 Anserini +test1870 Q0 18702627 17 9.126771 Anserini +test1870 Q0 14819301 18 9.098709 Anserini +test1870 Q0 6403652 19 9.029985 Anserini +test1870 Q0 20785313 20 9.021101 Anserini +test1870 Q0 20387741 21 8.999264 Anserini +test1870 Q0 20183167 22 8.995966 Anserini +test1870 Q0 19029649 23 8.923313 Anserini +test1870 Q0 8579362 24 8.911114 Anserini +test1870 Q0 20974126 25 8.889938 Anserini +test1870 Q0 13405347 26 8.884832 Anserini +test1870 Q0 17716653 27 8.871984 Anserini +test1870 Q0 13464040 28 8.833280 Anserini +test1870 Q0 14819302 29 8.828404 Anserini +test1870 Q0 935831 30 8.819721 Anserini +test1871 Q0 13051893 1 16.230259 Anserini +test1871 Q0 15566407 2 15.926241 Anserini +test1871 Q0 142733 3 15.735049 Anserini +test1871 Q0 1745749 4 15.664716 Anserini +test1871 Q0 20722463 5 15.614172 Anserini +test1871 Q0 9022083 6 15.569599 Anserini +test1871 Q0 20722464 7 15.484657 Anserini +test1871 Q0 14464220 8 15.476492 Anserini +test1871 Q0 4048552 9 15.238115 Anserini +test1871 Q0 19994356 10 15.213107 Anserini +test1871 Q0 7439138 11 15.207901 Anserini +test1871 Q0 10781749 12 15.177460 Anserini +test1871 Q0 681111 13 15.155831 Anserini +test1871 Q0 19843434 14 15.153286 Anserini +test1871 Q0 3442361 15 15.076961 Anserini +test1871 Q0 19994357 16 15.065049 Anserini +test1871 Q0 10018581 17 15.058574 Anserini +test1871 Q0 3837810 18 15.029440 Anserini +test1871 Q0 13296890 19 15.018447 Anserini +test1871 Q0 6662936 20 14.987172 Anserini +test1871 Q0 14552433 21 14.938205 Anserini +test1871 Q0 12304701 22 14.858656 Anserini +test1871 Q0 4496760 23 14.850296 Anserini +test1871 Q0 8167908 24 14.824461 Anserini +test1871 Q0 13070294 25 14.823895 Anserini +test1871 Q0 7072936 26 14.817602 Anserini +test1871 Q0 8967486 27 14.786916 Anserini +test1871 Q0 17273205 28 14.764108 Anserini +test1871 Q0 17983801 29 14.763346 Anserini +test1871 Q0 5088556 30 14.760140 Anserini +test1872 Q0 1964073 1 14.791114 Anserini +test1872 Q0 15957651 2 14.723304 Anserini +test1872 Q0 12898323 3 12.606682 Anserini +test1872 Q0 11057736 4 12.200644 Anserini +test1872 Q0 12898332 5 12.085300 Anserini +test1872 Q0 4149768 6 11.996202 Anserini +test1872 Q0 12898319 7 11.851420 Anserini +test1872 Q0 17882239 8 11.835249 Anserini +test1872 Q0 17196187 9 11.772966 Anserini +test1872 Q0 2819713 10 11.741447 Anserini +test1872 Q0 18349026 11 11.737563 Anserini +test1872 Q0 5299169 12 11.694967 Anserini +test1872 Q0 20723798 13 11.662106 Anserini +test1872 Q0 6672562 14 11.548025 Anserini +test1872 Q0 17192722 15 11.494040 Anserini +test1872 Q0 11270305 16 11.422722 Anserini +test1872 Q0 11270266 17 11.336931 Anserini +test1872 Q0 1611324 18 11.319491 Anserini +test1872 Q0 15588156 19 11.289835 Anserini +test1872 Q0 19464434 20 11.094947 Anserini +test1872 Q0 11270296 21 11.088004 Anserini +test1872 Q0 11324247 22 11.039844 Anserini +test1872 Q0 11270291 23 11.010244 Anserini +test1872 Q0 11324252 24 10.947598 Anserini +test1872 Q0 1383077 25 10.937474 Anserini +test1872 Q0 3022171 26 10.929688 Anserini +test1872 Q0 12898320 27 10.909907 Anserini +test1872 Q0 10076876 28 10.897766 Anserini +test1872 Q0 4916681 29 10.848718 Anserini +test1872 Q0 9013116 30 10.832337 Anserini +test1873 Q0 20397314 1 17.141958 Anserini +test1873 Q0 20397310 2 17.072269 Anserini +test1873 Q0 17399500 3 15.934184 Anserini +test1873 Q0 20723451 4 15.822400 Anserini +test1873 Q0 17399501 5 15.379929 Anserini +test1873 Q0 8101193 6 14.992025 Anserini +test1873 Q0 20397313 7 14.888825 Anserini +test1873 Q0 19527733 8 14.582513 Anserini +test1873 Q0 19527734 9 13.936307 Anserini +test1873 Q0 6917295 10 12.852263 Anserini +test1873 Q0 17399499 11 12.815242 Anserini +test1873 Q0 5699231 12 12.705859 Anserini +test1873 Q0 17399571 13 12.705859 Anserini +test1873 Q0 19527731 14 12.598410 Anserini +test1873 Q0 16425115 15 12.598410 Anserini +test1873 Q0 17402367 16 12.289603 Anserini +test1873 Q0 19527730 17 12.160231 Anserini +test1873 Q0 6358100 18 12.122072 Anserini +test1873 Q0 8101195 19 11.629722 Anserini +test1873 Q0 17399572 20 11.289635 Anserini +test1873 Q0 20397312 21 11.169523 Anserini +test1873 Q0 20734345 22 11.169523 Anserini +test1873 Q0 20734343 23 11.169523 Anserini +test1873 Q0 19527740 24 11.169523 Anserini +test1873 Q0 16325811 25 11.169523 Anserini +test1873 Q0 6917294 26 11.149363 Anserini +test1873 Q0 20397311 27 11.051942 Anserini +test1873 Q0 20734341 28 11.051942 Anserini +test1873 Q0 1007267 29 11.051942 Anserini +test1873 Q0 19527727 30 10.936809 Anserini +test1874 Q0 4853726 1 22.848696 Anserini +test1874 Q0 4853714 2 22.721859 Anserini +test1874 Q0 13443870 3 22.278563 Anserini +test1874 Q0 13443858 4 21.066662 Anserini +test1874 Q0 4420363 5 20.396414 Anserini +test1874 Q0 13443872 6 20.146345 Anserini +test1874 Q0 5228632 7 20.016993 Anserini +test1874 Q0 13443879 8 19.996544 Anserini +test1874 Q0 4420354 9 19.836075 Anserini +test1874 Q0 13443877 10 19.771984 Anserini +test1874 Q0 13443868 11 19.305801 Anserini +test1874 Q0 4846066 12 18.872665 Anserini +test1874 Q0 7591874 13 18.779177 Anserini +test1874 Q0 13443875 14 18.478973 Anserini +test1874 Q0 4853725 15 18.041927 Anserini +test1874 Q0 13443867 16 18.036983 Anserini +test1874 Q0 4853724 17 17.801331 Anserini +test1874 Q0 16211871 18 17.612871 Anserini +test1874 Q0 5228633 19 17.508936 Anserini +test1874 Q0 4853723 20 17.437466 Anserini +test1874 Q0 13443861 21 17.392979 Anserini +test1874 Q0 7591876 22 17.385798 Anserini +test1874 Q0 4420362 23 17.366575 Anserini +test1874 Q0 5228631 24 17.143919 Anserini +test1874 Q0 13443864 25 17.099823 Anserini +test1874 Q0 13443876 26 17.059927 Anserini +test1874 Q0 4853718 27 17.054728 Anserini +test1874 Q0 13443871 28 16.941446 Anserini +test1874 Q0 13443874 29 16.824600 Anserini +test1874 Q0 13443873 30 16.709354 Anserini +test1875 Q0 18809333 1 14.791005 Anserini +test1875 Q0 18085145 2 11.947579 Anserini +test1875 Q0 6527858 3 11.633161 Anserini +test1875 Q0 6639687 4 11.476891 Anserini +test1875 Q0 3941521 5 11.109802 Anserini +test1875 Q0 10229639 6 10.919991 Anserini +test1875 Q0 12190194 7 10.759037 Anserini +test1875 Q0 20668818 8 10.608278 Anserini +test1875 Q0 9960471 9 10.582231 Anserini +test1875 Q0 6527857 10 10.535816 Anserini +test1875 Q0 305604 11 10.526103 Anserini +test1875 Q0 7801945 12 10.514286 Anserini +test1875 Q0 7801946 13 10.514286 Anserini +test1875 Q0 13069533 14 10.412134 Anserini +test1875 Q0 11370834 15 10.344561 Anserini +test1875 Q0 10275245 16 10.326249 Anserini +test1875 Q0 18388929 17 10.154362 Anserini +test1875 Q0 13700648 18 10.058837 Anserini +test1875 Q0 305602 19 9.941721 Anserini +test1875 Q0 2168464 20 9.913693 Anserini +test1875 Q0 18328727 21 9.829865 Anserini +test1875 Q0 14165452 22 9.816424 Anserini +test1875 Q0 20668822 23 9.796842 Anserini +test1875 Q0 11119613 24 9.701854 Anserini +test1875 Q0 6653640 25 9.637774 Anserini +test1875 Q0 5163733 26 9.637774 Anserini +test1875 Q0 6527853 27 9.606681 Anserini +test1875 Q0 11254711 28 9.590129 Anserini +test1875 Q0 12844618 29 9.562177 Anserini +test1875 Q0 8399666 30 9.553112 Anserini +test1876 Q0 16623320 1 25.004269 Anserini +test1876 Q0 15616868 2 24.389635 Anserini +test1876 Q0 15616854 3 22.867226 Anserini +test1876 Q0 17285309 4 21.654190 Anserini +test1876 Q0 17105602 5 21.654190 Anserini +test1876 Q0 12490600 6 21.318291 Anserini +test1876 Q0 15616855 7 21.011951 Anserini +test1876 Q0 20305902 8 20.510281 Anserini +test1876 Q0 20305899 9 20.510281 Anserini +test1876 Q0 17285310 10 19.841776 Anserini +test1876 Q0 17105605 11 19.432289 Anserini +test1876 Q0 5419769 12 19.232193 Anserini +test1876 Q0 15989361 13 18.911234 Anserini +test1876 Q0 15616860 14 18.722898 Anserini +test1876 Q0 12490599 15 18.666203 Anserini +test1876 Q0 15616857 16 18.023424 Anserini +test1876 Q0 17105604 17 17.929447 Anserini +test1876 Q0 16623321 18 17.884504 Anserini +test1876 Q0 16623322 19 17.848759 Anserini +test1876 Q0 15616858 20 17.848703 Anserini +test1876 Q0 15616861 21 17.686600 Anserini +test1876 Q0 12785591 22 17.548586 Anserini +test1876 Q0 15616856 23 17.533325 Anserini +test1876 Q0 12785602 24 17.398228 Anserini +test1876 Q0 17285311 25 17.193071 Anserini +test1876 Q0 13619013 26 17.077814 Anserini +test1876 Q0 15616862 27 16.973745 Anserini +test1876 Q0 20246988 28 16.734812 Anserini +test1876 Q0 15616859 29 16.505138 Anserini +test1876 Q0 8089140 30 16.505138 Anserini +test1877 Q0 10719775 1 13.068429 Anserini +test1877 Q0 12138082 2 12.849107 Anserini +test1877 Q0 8262068 3 12.510208 Anserini +test1877 Q0 2650312 4 12.258595 Anserini +test1877 Q0 2316289 5 12.072886 Anserini +test1877 Q0 924234 6 12.021632 Anserini +test1877 Q0 924226 7 11.913387 Anserini +test1877 Q0 293621 8 11.713717 Anserini +test1877 Q0 5686116 9 11.410458 Anserini +test1877 Q0 11985058 10 11.369286 Anserini +test1877 Q0 10741743 11 11.337863 Anserini +test1877 Q0 1970810 12 11.168432 Anserini +test1877 Q0 14218675 13 11.079987 Anserini +test1877 Q0 14218681 14 11.079987 Anserini +test1877 Q0 18844319 15 11.039330 Anserini +test1877 Q0 2237643 16 10.921882 Anserini +test1877 Q0 10799769 17 10.829212 Anserini +test1877 Q0 9129340 18 10.806907 Anserini +test1877 Q0 14277958 19 10.750826 Anserini +test1877 Q0 10989045 20 10.669075 Anserini +test1877 Q0 14277961 21 10.660729 Anserini +test1877 Q0 9251680 22 10.656857 Anserini +test1877 Q0 11844121 23 10.649532 Anserini +test1877 Q0 16721548 24 10.608390 Anserini +test1877 Q0 10719774 25 10.579423 Anserini +test1877 Q0 2650321 26 10.568872 Anserini +test1877 Q0 816884 27 10.484503 Anserini +test1877 Q0 911474 28 10.475912 Anserini +test1877 Q0 2373518 29 10.473552 Anserini +test1877 Q0 10741749 30 10.298896 Anserini +test1878 Q0 2014377 1 13.042052 Anserini +test1878 Q0 2360170 2 12.426192 Anserini +test1878 Q0 2014356 3 12.406048 Anserini +test1878 Q0 8749311 4 12.050797 Anserini +test1878 Q0 2014373 5 11.223705 Anserini +test1878 Q0 2014363 6 11.016466 Anserini +test1878 Q0 2014349 7 10.689824 Anserini +test1878 Q0 18817814 8 10.401749 Anserini +test1878 Q0 2014368 9 10.363228 Anserini +test1878 Q0 111692 10 10.332604 Anserini +test1878 Q0 7586607 11 10.272317 Anserini +test1878 Q0 8811393 12 10.167787 Anserini +test1878 Q0 2014358 13 10.122898 Anserini +test1878 Q0 12414425 14 9.961379 Anserini +test1878 Q0 828570 15 9.936135 Anserini +test1878 Q0 2014350 16 9.916569 Anserini +test1878 Q0 3454523 17 9.916569 Anserini +test1878 Q0 3998068 18 9.865973 Anserini +test1878 Q0 2014367 19 9.800905 Anserini +test1878 Q0 3998071 20 9.637360 Anserini +test1878 Q0 2014365 21 9.564701 Anserini +test1878 Q0 7964372 22 9.533296 Anserini +test1878 Q0 317562 23 9.497350 Anserini +test1878 Q0 602826 24 9.493640 Anserini +test1878 Q0 50058 25 9.473849 Anserini +test1878 Q0 4923063 26 9.451594 Anserini +test1878 Q0 50057 27 9.442245 Anserini +test1878 Q0 552061 28 9.376415 Anserini +test1878 Q0 3203007 29 9.366246 Anserini +test1878 Q0 17507596 30 9.332431 Anserini +test1879 Q0 18599759 1 15.549408 Anserini +test1879 Q0 7847417 2 15.513590 Anserini +test1879 Q0 7847399 3 15.472479 Anserini +test1879 Q0 1396222 4 15.451530 Anserini +test1879 Q0 9152425 5 15.167439 Anserini +test1879 Q0 525407 6 15.052506 Anserini +test1879 Q0 525577 7 15.052506 Anserini +test1879 Q0 15902736 8 14.919250 Anserini +test1879 Q0 8370866 9 14.722561 Anserini +test1879 Q0 15957051 10 14.621069 Anserini +test1879 Q0 14964593 11 14.613921 Anserini +test1879 Q0 277584 12 14.480897 Anserini +test1879 Q0 1706993 13 14.377125 Anserini +test1879 Q0 3157115 14 14.334499 Anserini +test1879 Q0 12841653 15 14.316414 Anserini +test1879 Q0 8703322 16 14.292843 Anserini +test1879 Q0 525504 17 14.221664 Anserini +test1879 Q0 2345630 18 14.200378 Anserini +test1879 Q0 10982671 19 14.175258 Anserini +test1879 Q0 9983239 20 14.111878 Anserini +test1879 Q0 18745027 21 14.088765 Anserini +test1879 Q0 14152715 22 14.070520 Anserini +test1879 Q0 7846869 23 14.055413 Anserini +test1879 Q0 17211863 24 14.030232 Anserini +test1879 Q0 19068991 25 13.955291 Anserini +test1879 Q0 4232804 26 13.905095 Anserini +test1879 Q0 11853762 27 13.897353 Anserini +test1879 Q0 17548033 28 13.839952 Anserini +test1879 Q0 20114810 29 13.839190 Anserini +test1879 Q0 1650644 30 13.836459 Anserini +test188 Q0 5285719 1 11.385874 Anserini +test188 Q0 5285716 2 10.994117 Anserini +test188 Q0 16212297 3 10.580458 Anserini +test188 Q0 2306757 4 10.522806 Anserini +test188 Q0 1527905 5 10.507263 Anserini +test188 Q0 12785414 6 10.177499 Anserini +test188 Q0 13678185 7 10.162188 Anserini +test188 Q0 18139586 8 10.161128 Anserini +test188 Q0 828762 9 10.143974 Anserini +test188 Q0 64496 10 10.128183 Anserini +test188 Q0 17058421 11 9.967045 Anserini +test188 Q0 5719365 12 9.911528 Anserini +test188 Q0 9104350 13 9.899696 Anserini +test188 Q0 2773367 14 9.869013 Anserini +test188 Q0 17029615 15 9.758039 Anserini +test188 Q0 5821314 16 9.720544 Anserini +test188 Q0 3966552 17 9.693740 Anserini +test188 Q0 17794733 18 9.685278 Anserini +test188 Q0 6131474 19 9.684361 Anserini +test188 Q0 13549746 20 9.669914 Anserini +test188 Q0 13539273 21 9.669914 Anserini +test188 Q0 4459529 22 9.623822 Anserini +test188 Q0 12612620 23 9.612560 Anserini +test188 Q0 652938 24 9.611506 Anserini +test188 Q0 6781736 25 9.599610 Anserini +test188 Q0 1568968 26 9.599192 Anserini +test188 Q0 6317436 27 9.598228 Anserini +test188 Q0 463519 28 9.593241 Anserini +test188 Q0 1521195 29 9.585713 Anserini +test188 Q0 539191 30 9.561597 Anserini +test1880 Q0 8000562 1 16.020649 Anserini +test1880 Q0 15461582 2 15.594337 Anserini +test1880 Q0 17964900 3 15.475980 Anserini +test1880 Q0 15461580 4 15.089090 Anserini +test1880 Q0 8000563 5 14.949886 Anserini +test1880 Q0 9623463 6 14.509143 Anserini +test1880 Q0 10220052 7 14.424477 Anserini +test1880 Q0 9623464 8 14.376318 Anserini +test1880 Q0 17964879 9 14.262132 Anserini +test1880 Q0 17964899 10 14.262132 Anserini +test1880 Q0 5811346 11 13.963129 Anserini +test1880 Q0 4581095 12 13.936987 Anserini +test1880 Q0 1306190 13 13.922802 Anserini +test1880 Q0 18909190 14 13.838688 Anserini +test1880 Q0 15461583 15 13.725246 Anserini +test1880 Q0 17877435 16 13.578559 Anserini +test1880 Q0 19771567 17 13.565377 Anserini +test1880 Q0 208593 18 13.278719 Anserini +test1880 Q0 15365871 19 13.151356 Anserini +test1880 Q0 7457150 20 13.018579 Anserini +test1880 Q0 15608252 21 12.967271 Anserini +test1880 Q0 17311619 22 12.882044 Anserini +test1880 Q0 3767032 23 12.855946 Anserini +test1880 Q0 11822157 24 12.479728 Anserini +test1880 Q0 4470788 25 12.345632 Anserini +test1880 Q0 7293100 26 12.207491 Anserini +test1880 Q0 17311618 27 12.203792 Anserini +test1880 Q0 2224998 28 12.175043 Anserini +test1880 Q0 17070575 29 12.173756 Anserini +test1880 Q0 5030287 30 12.130342 Anserini +test1881 Q0 2581616 1 12.406073 Anserini +test1881 Q0 465980 2 12.072307 Anserini +test1881 Q0 10731640 3 11.707669 Anserini +test1881 Q0 10731641 4 11.694586 Anserini +test1881 Q0 466371 5 11.528131 Anserini +test1881 Q0 466448 6 10.889080 Anserini +test1881 Q0 20868269 7 10.670797 Anserini +test1881 Q0 1979320 8 10.598638 Anserini +test1881 Q0 8536214 9 10.581173 Anserini +test1881 Q0 466451 10 10.581173 Anserini +test1881 Q0 18476768 11 10.419498 Anserini +test1881 Q0 465974 12 10.411239 Anserini +test1881 Q0 466001 13 10.366034 Anserini +test1881 Q0 11053135 14 10.324162 Anserini +test1881 Q0 18459549 15 10.130256 Anserini +test1881 Q0 16682787 16 10.030262 Anserini +test1881 Q0 16682788 17 10.030262 Anserini +test1881 Q0 18020217 18 9.994100 Anserini +test1881 Q0 12667729 19 9.984111 Anserini +test1881 Q0 15170879 20 9.980659 Anserini +test1881 Q0 15266004 21 9.940857 Anserini +test1881 Q0 19348646 22 9.817122 Anserini +test1881 Q0 11882421 23 9.755166 Anserini +test1881 Q0 15170873 24 9.722180 Anserini +test1881 Q0 465960 25 9.667953 Anserini +test1881 Q0 15170883 26 9.646988 Anserini +test1881 Q0 10120222 27 9.594858 Anserini +test1881 Q0 18517162 28 9.554007 Anserini +test1881 Q0 13762453 29 9.534406 Anserini +test1881 Q0 11127964 30 9.531500 Anserini +test1882 Q0 9354069 1 19.729156 Anserini +test1882 Q0 896214 2 17.985298 Anserini +test1882 Q0 17423159 3 17.759199 Anserini +test1882 Q0 9354072 4 17.576965 Anserini +test1882 Q0 16583734 5 16.575401 Anserini +test1882 Q0 896213 6 16.106586 Anserini +test1882 Q0 896187 7 15.848761 Anserini +test1882 Q0 9354071 8 15.565210 Anserini +test1882 Q0 12242919 9 15.547266 Anserini +test1882 Q0 9354070 10 15.246314 Anserini +test1882 Q0 13388444 11 14.812005 Anserini +test1882 Q0 12339506 12 14.144444 Anserini +test1882 Q0 16071938 13 14.103372 Anserini +test1882 Q0 16041995 14 13.057920 Anserini +test1882 Q0 650412 15 13.057920 Anserini +test1882 Q0 19550790 16 12.736420 Anserini +test1882 Q0 18697667 17 12.449508 Anserini +test1882 Q0 9981263 18 12.391175 Anserini +test1882 Q0 9981284 19 12.391175 Anserini +test1882 Q0 896159 20 12.385275 Anserini +test1882 Q0 7446801 21 12.313786 Anserini +test1882 Q0 18152169 22 12.257950 Anserini +test1882 Q0 18697672 23 12.219764 Anserini +test1882 Q0 17298062 24 12.160728 Anserini +test1882 Q0 2683667 25 12.082720 Anserini +test1882 Q0 896232 26 12.036172 Anserini +test1882 Q0 8744912 27 12.029202 Anserini +test1882 Q0 12421070 28 11.975477 Anserini +test1882 Q0 2827595 29 11.901432 Anserini +test1882 Q0 4725236 30 11.884470 Anserini +test1883 Q0 556260 1 15.935305 Anserini +test1883 Q0 556257 2 15.472817 Anserini +test1883 Q0 502202 3 14.984735 Anserini +test1883 Q0 579696 4 14.921438 Anserini +test1883 Q0 1917603 5 14.755631 Anserini +test1883 Q0 6447614 6 14.302567 Anserini +test1883 Q0 8787105 7 14.238697 Anserini +test1883 Q0 8638451 8 14.217416 Anserini +test1883 Q0 574136 9 14.114899 Anserini +test1883 Q0 12594335 10 14.095617 Anserini +test1883 Q0 8593205 11 14.056313 Anserini +test1883 Q0 15351807 12 13.944482 Anserini +test1883 Q0 396311 13 13.884338 Anserini +test1883 Q0 12594343 14 13.786335 Anserini +test1883 Q0 13999018 15 13.715901 Anserini +test1883 Q0 19719008 16 13.680947 Anserini +test1883 Q0 518376 17 13.657703 Anserini +test1883 Q0 643525 18 13.508690 Anserini +test1883 Q0 574135 19 13.474955 Anserini +test1883 Q0 10946520 20 13.398174 Anserini +test1883 Q0 10442314 21 13.355124 Anserini +test1883 Q0 643521 22 13.341130 Anserini +test1883 Q0 386559 23 13.339693 Anserini +test1883 Q0 7135035 24 13.332637 Anserini +test1883 Q0 19719005 25 13.307989 Anserini +test1883 Q0 514070 26 13.135163 Anserini +test1883 Q0 16424926 27 13.103487 Anserini +test1883 Q0 556262 28 13.092003 Anserini +test1883 Q0 556251 29 13.078198 Anserini +test1883 Q0 12062726 30 13.018664 Anserini +test1884 Q0 18534539 1 13.500629 Anserini +test1884 Q0 18534565 2 13.387313 Anserini +test1884 Q0 8182145 3 13.100638 Anserini +test1884 Q0 18534561 4 13.004581 Anserini +test1884 Q0 19086471 5 12.686161 Anserini +test1884 Q0 18534557 6 12.407482 Anserini +test1884 Q0 18687784 7 12.139648 Anserini +test1884 Q0 18095833 8 12.091969 Anserini +test1884 Q0 18534564 9 11.881577 Anserini +test1884 Q0 19138626 10 11.792485 Anserini +test1884 Q0 15630432 11 11.785070 Anserini +test1884 Q0 18534541 12 11.764871 Anserini +test1884 Q0 18534558 13 11.764871 Anserini +test1884 Q0 19138639 14 11.740637 Anserini +test1884 Q0 10290561 15 11.680405 Anserini +test1884 Q0 18071248 16 11.649158 Anserini +test1884 Q0 18071241 17 11.514394 Anserini +test1884 Q0 17467724 18 11.502580 Anserini +test1884 Q0 20459275 19 11.500883 Anserini +test1884 Q0 18095836 20 11.468325 Anserini +test1884 Q0 18534545 21 11.453954 Anserini +test1884 Q0 19169501 22 11.338744 Anserini +test1884 Q0 18687792 23 11.338301 Anserini +test1884 Q0 8203798 24 11.313412 Anserini +test1884 Q0 19138640 25 11.313337 Anserini +test1884 Q0 1271619 26 11.302317 Anserini +test1884 Q0 18082121 27 11.269766 Anserini +test1884 Q0 20143944 28 11.251948 Anserini +test1884 Q0 19169508 29 11.234474 Anserini +test1884 Q0 17467725 30 11.214369 Anserini +test1885 Q0 18636074 1 14.278038 Anserini +test1885 Q0 16163302 2 14.075529 Anserini +test1885 Q0 5507572 3 13.516754 Anserini +test1885 Q0 5507571 4 13.348825 Anserini +test1885 Q0 20057468 5 13.181662 Anserini +test1885 Q0 4885609 6 13.166409 Anserini +test1885 Q0 18845844 7 13.136838 Anserini +test1885 Q0 17195521 8 12.889513 Anserini +test1885 Q0 20409131 9 12.814040 Anserini +test1885 Q0 20458088 10 12.735796 Anserini +test1885 Q0 5507556 11 12.682237 Anserini +test1885 Q0 14642311 12 12.647060 Anserini +test1885 Q0 14642325 13 12.620673 Anserini +test1885 Q0 18180615 14 12.590187 Anserini +test1885 Q0 18371405 15 12.563965 Anserini +test1885 Q0 16898897 16 12.538577 Anserini +test1885 Q0 5507555 17 12.513613 Anserini +test1885 Q0 16631334 18 12.492438 Anserini +test1885 Q0 4697246 19 12.481493 Anserini +test1885 Q0 16889872 20 12.463098 Anserini +test1885 Q0 15783484 21 12.459057 Anserini +test1885 Q0 5507085 22 12.456748 Anserini +test1885 Q0 14642324 23 12.454709 Anserini +test1885 Q0 18989086 24 12.347154 Anserini +test1885 Q0 14642301 25 12.326366 Anserini +test1885 Q0 18989093 26 12.312204 Anserini +test1885 Q0 5507559 27 12.309429 Anserini +test1885 Q0 5507557 28 12.296506 Anserini +test1885 Q0 16654228 29 12.238075 Anserini +test1885 Q0 18180611 30 12.221832 Anserini +test1886 Q0 13678507 1 17.294769 Anserini +test1886 Q0 13185770 2 15.788203 Anserini +test1886 Q0 12216232 3 14.685259 Anserini +test1886 Q0 12216234 4 14.656794 Anserini +test1886 Q0 12077117 5 14.220201 Anserini +test1886 Q0 12077132 6 13.493196 Anserini +test1886 Q0 12077114 7 13.372128 Anserini +test1886 Q0 10296422 8 13.193623 Anserini +test1886 Q0 12077144 9 13.156597 Anserini +test1886 Q0 12077123 10 13.020439 Anserini +test1886 Q0 15685647 11 12.943827 Anserini +test1886 Q0 15685648 12 12.862308 Anserini +test1886 Q0 12077120 13 12.736093 Anserini +test1886 Q0 12924905 14 12.707598 Anserini +test1886 Q0 13185775 15 12.645191 Anserini +test1886 Q0 13185766 16 12.583396 Anserini +test1886 Q0 12924902 17 12.583396 Anserini +test1886 Q0 12077125 18 12.502086 Anserini +test1886 Q0 12077124 19 12.461875 Anserini +test1886 Q0 12924904 20 12.459901 Anserini +test1886 Q0 12077130 21 12.448275 Anserini +test1886 Q0 6371965 22 12.181050 Anserini +test1886 Q0 12077122 23 12.153710 Anserini +test1886 Q0 12077140 24 11.924209 Anserini +test1886 Q0 13185771 25 11.897933 Anserini +test1886 Q0 3261319 26 11.895102 Anserini +test1886 Q0 10700952 27 11.873660 Anserini +test1886 Q0 12216231 28 11.769882 Anserini +test1886 Q0 12077133 29 11.768484 Anserini +test1886 Q0 19364860 30 11.751703 Anserini +test1887 Q0 5115729 1 11.154181 Anserini +test1887 Q0 16163956 2 10.698250 Anserini +test1887 Q0 13870398 3 10.428855 Anserini +test1887 Q0 13870405 4 10.131329 Anserini +test1887 Q0 13870409 5 10.085893 Anserini +test1887 Q0 18909981 6 10.085893 Anserini +test1887 Q0 6294658 7 10.063328 Anserini +test1887 Q0 13870400 8 9.964603 Anserini +test1887 Q0 13423621 9 9.827320 Anserini +test1887 Q0 13870410 10 9.807352 Anserini +test1887 Q0 10983662 11 9.778923 Anserini +test1887 Q0 5115728 12 9.778923 Anserini +test1887 Q0 13870406 13 9.750658 Anserini +test1887 Q0 13794759 14 9.666834 Anserini +test1887 Q0 13794761 15 9.666834 Anserini +test1887 Q0 14548470 16 9.660125 Anserini +test1887 Q0 13870404 17 9.595357 Anserini +test1887 Q0 5115725 18 9.562717 Anserini +test1887 Q0 18909978 19 9.562717 Anserini +test1887 Q0 13870412 20 9.340311 Anserini +test1887 Q0 13794760 21 9.255759 Anserini +test1887 Q0 15288842 22 9.255759 Anserini +test1887 Q0 15288848 23 9.255759 Anserini +test1887 Q0 18362246 24 9.255759 Anserini +test1887 Q0 18909980 25 9.217823 Anserini +test1887 Q0 15223017 26 9.217823 Anserini +test1887 Q0 16703828 27 9.217823 Anserini +test1887 Q0 16703829 28 9.217823 Anserini +test1887 Q0 18362252 29 9.217823 Anserini +test1887 Q0 10983659 30 9.180197 Anserini +test1888 Q0 18559573 1 13.799243 Anserini +test1888 Q0 6180490 2 11.776283 Anserini +test1888 Q0 3340380 3 11.731056 Anserini +test1888 Q0 5593368 4 11.652147 Anserini +test1888 Q0 15562842 5 11.501221 Anserini +test1888 Q0 17796069 6 11.288871 Anserini +test1888 Q0 2035344 7 11.181623 Anserini +test1888 Q0 11154652 8 11.062022 Anserini +test1888 Q0 267740 9 11.039130 Anserini +test1888 Q0 17796071 10 10.989220 Anserini +test1888 Q0 731766 11 10.923431 Anserini +test1888 Q0 17796070 12 10.781443 Anserini +test1888 Q0 17797847 13 10.781443 Anserini +test1888 Q0 20327745 14 10.727144 Anserini +test1888 Q0 10466578 15 10.649891 Anserini +test1888 Q0 20327742 16 10.517601 Anserini +test1888 Q0 6552905 17 10.503654 Anserini +test1888 Q0 14739299 18 10.498092 Anserini +test1888 Q0 6710950 19 10.489797 Anserini +test1888 Q0 3432230 20 10.468539 Anserini +test1888 Q0 20027688 21 10.467550 Anserini +test1888 Q0 1866626 22 10.322512 Anserini +test1888 Q0 1491619 23 10.253663 Anserini +test1888 Q0 8036184 24 10.127834 Anserini +test1888 Q0 11329937 25 10.087561 Anserini +test1888 Q0 5006518 26 10.076396 Anserini +test1888 Q0 4119156 27 10.044830 Anserini +test1888 Q0 6847471 28 9.951761 Anserini +test1888 Q0 18995033 29 9.947485 Anserini +test1888 Q0 91033 30 9.930841 Anserini +test1889 Q0 13322290 1 21.895014 Anserini +test1889 Q0 13322289 2 21.029087 Anserini +test1889 Q0 8003296 3 20.263641 Anserini +test1889 Q0 4287973 4 19.729830 Anserini +test1889 Q0 4287974 5 18.091305 Anserini +test1889 Q0 4287964 6 17.902840 Anserini +test1889 Q0 18459531 7 16.580534 Anserini +test1889 Q0 12799924 8 15.240734 Anserini +test1889 Q0 12799921 9 14.321965 Anserini +test1889 Q0 2195032 10 14.166829 Anserini +test1889 Q0 3398833 11 14.166829 Anserini +test1889 Q0 13354795 12 14.166829 Anserini +test1889 Q0 19299332 13 14.019247 Anserini +test1889 Q0 19299335 14 14.019247 Anserini +test1889 Q0 8092824 15 13.960148 Anserini +test1889 Q0 12799925 16 13.588371 Anserini +test1889 Q0 18566168 17 13.304033 Anserini +test1889 Q0 18663444 18 13.280054 Anserini +test1889 Q0 16164682 19 13.149931 Anserini +test1889 Q0 18315397 20 12.977590 Anserini +test1889 Q0 18315392 21 12.872072 Anserini +test1889 Q0 19992817 22 12.659309 Anserini +test1889 Q0 18242327 23 12.622597 Anserini +test1889 Q0 9834432 24 12.565550 Anserini +test1889 Q0 10891324 25 12.451069 Anserini +test1889 Q0 7221432 26 12.446698 Anserini +test1889 Q0 10961651 27 12.395891 Anserini +test1889 Q0 16866000 28 12.345498 Anserini +test1889 Q0 18663442 29 12.305161 Anserini +test1889 Q0 16866001 30 12.044708 Anserini +test189 Q0 516174 1 11.934386 Anserini +test189 Q0 16399579 2 11.349503 Anserini +test189 Q0 9378556 3 11.195862 Anserini +test189 Q0 6695848 4 10.984169 Anserini +test189 Q0 4836187 5 10.969469 Anserini +test189 Q0 20908787 6 10.702533 Anserini +test189 Q0 1710862 7 10.695548 Anserini +test189 Q0 3901550 8 10.618389 Anserini +test189 Q0 1853409 9 10.566579 Anserini +test189 Q0 16278002 10 10.548253 Anserini +test189 Q0 6194661 11 10.460103 Anserini +test189 Q0 5054462 12 10.454249 Anserini +test189 Q0 16399594 13 10.304835 Anserini +test189 Q0 15350865 14 10.249859 Anserini +test189 Q0 17262589 15 10.222879 Anserini +test189 Q0 16399606 16 10.133521 Anserini +test189 Q0 7575720 17 10.118910 Anserini +test189 Q0 501064 18 10.114196 Anserini +test189 Q0 14848923 19 10.109423 Anserini +test189 Q0 4445357 20 10.078890 Anserini +test189 Q0 20178571 21 10.016995 Anserini +test189 Q0 501065 22 9.951601 Anserini +test189 Q0 6874917 23 9.923344 Anserini +test189 Q0 19071661 24 9.888320 Anserini +test189 Q0 694586 25 9.879766 Anserini +test189 Q0 8849372 26 9.800219 Anserini +test189 Q0 1309843 27 9.785336 Anserini +test189 Q0 1486101 28 9.783219 Anserini +test189 Q0 290025 29 9.767204 Anserini +test189 Q0 6556019 30 9.761348 Anserini +test1890 Q0 11562765 1 14.313005 Anserini +test1890 Q0 485969 2 14.303838 Anserini +test1890 Q0 17129694 3 13.577459 Anserini +test1890 Q0 20529523 4 13.434162 Anserini +test1890 Q0 11136754 5 13.235108 Anserini +test1890 Q0 17129695 6 13.204392 Anserini +test1890 Q0 20529522 7 13.020921 Anserini +test1890 Q0 13702900 8 12.872946 Anserini +test1890 Q0 20529819 9 12.867261 Anserini +test1890 Q0 11448611 10 12.846541 Anserini +test1890 Q0 20529524 11 12.719745 Anserini +test1890 Q0 6489601 12 12.658882 Anserini +test1890 Q0 12657238 13 12.557892 Anserini +test1890 Q0 5522330 14 12.541302 Anserini +test1890 Q0 5522331 15 12.541302 Anserini +test1890 Q0 11448602 16 12.523068 Anserini +test1890 Q0 10400307 17 12.496580 Anserini +test1890 Q0 11585819 18 12.466066 Anserini +test1890 Q0 485961 19 12.379216 Anserini +test1890 Q0 11554344 20 12.343890 Anserini +test1890 Q0 16338429 21 12.301331 Anserini +test1890 Q0 13976607 22 12.264119 Anserini +test1890 Q0 16686945 23 12.255618 Anserini +test1890 Q0 11431678 24 12.226809 Anserini +test1890 Q0 12657227 25 12.214070 Anserini +test1890 Q0 11562760 26 12.214070 Anserini +test1890 Q0 13976701 27 12.200482 Anserini +test1890 Q0 7273014 28 12.200482 Anserini +test1890 Q0 13976714 29 12.200482 Anserini +test1890 Q0 6489600 30 12.172804 Anserini +test1891 Q0 20428451 1 14.335401 Anserini +test1891 Q0 20428465 2 13.652089 Anserini +test1891 Q0 20428464 3 13.450311 Anserini +test1891 Q0 6196126 4 13.051874 Anserini +test1891 Q0 16459468 5 12.911759 Anserini +test1891 Q0 5461870 6 12.755117 Anserini +test1891 Q0 18138180 7 12.629163 Anserini +test1891 Q0 20428457 8 12.609337 Anserini +test1891 Q0 16459470 9 12.341141 Anserini +test1891 Q0 13632176 10 11.759908 Anserini +test1891 Q0 20428462 11 11.742963 Anserini +test1891 Q0 4704197 12 11.664314 Anserini +test1891 Q0 20780403 13 11.340613 Anserini +test1891 Q0 13284499 14 11.340613 Anserini +test1891 Q0 15930001 15 11.300356 Anserini +test1891 Q0 10465142 16 11.230186 Anserini +test1891 Q0 20428461 17 11.192997 Anserini +test1891 Q0 6196123 18 11.166842 Anserini +test1891 Q0 6196145 19 11.166842 Anserini +test1891 Q0 6196134 20 11.147837 Anserini +test1891 Q0 5599335 21 11.144197 Anserini +test1891 Q0 5675837 22 11.103354 Anserini +test1891 Q0 19929159 23 11.102942 Anserini +test1891 Q0 7122702 24 11.041059 Anserini +test1891 Q0 5682735 25 11.010986 Anserini +test1891 Q0 6196140 26 10.939342 Anserini +test1891 Q0 6196138 27 10.939342 Anserini +test1891 Q0 6196139 28 10.939342 Anserini +test1891 Q0 12255139 29 10.897827 Anserini +test1891 Q0 11546920 30 10.884264 Anserini +test1892 Q0 5569016 1 9.532574 Anserini +test1892 Q0 16958401 2 9.465817 Anserini +test1892 Q0 1866216 3 9.411140 Anserini +test1892 Q0 512169 4 9.218451 Anserini +test1892 Q0 245344 5 9.182476 Anserini +test1892 Q0 4112913 6 9.182476 Anserini +test1892 Q0 6388658 7 9.087481 Anserini +test1892 Q0 2293737 8 9.065352 Anserini +test1892 Q0 18401669 9 9.026314 Anserini +test1892 Q0 17105962 10 8.990949 Anserini +test1892 Q0 11683167 11 8.963796 Anserini +test1892 Q0 20178274 12 8.960946 Anserini +test1892 Q0 20286962 13 8.893121 Anserini +test1892 Q0 19829664 14 8.865530 Anserini +test1892 Q0 1919802 15 8.850535 Anserini +test1892 Q0 5399110 16 8.825026 Anserini +test1892 Q0 4244743 17 8.807801 Anserini +test1892 Q0 1355217 18 8.806132 Anserini +test1892 Q0 14699931 19 8.740355 Anserini +test1892 Q0 236439 20 8.657347 Anserini +test1892 Q0 19843044 21 8.657347 Anserini +test1892 Q0 117625 22 8.618231 Anserini +test1892 Q0 11891434 23 8.599810 Anserini +test1892 Q0 421047 24 8.575950 Anserini +test1892 Q0 11961412 25 8.570757 Anserini +test1892 Q0 3667549 26 8.554539 Anserini +test1892 Q0 4206058 27 8.520425 Anserini +test1892 Q0 1862343 28 8.503770 Anserini +test1892 Q0 3561814 29 8.499262 Anserini +test1892 Q0 2645442 30 8.496116 Anserini +test1893 Q0 5027093 1 15.166836 Anserini +test1893 Q0 3255561 2 14.159943 Anserini +test1893 Q0 18908817 3 13.673623 Anserini +test1893 Q0 3995178 4 13.606102 Anserini +test1893 Q0 3054971 5 13.538746 Anserini +test1893 Q0 13361433 6 13.410781 Anserini +test1893 Q0 542414 7 13.379845 Anserini +test1893 Q0 4845230 8 13.332815 Anserini +test1893 Q0 13871164 9 13.330407 Anserini +test1893 Q0 11662528 10 13.307002 Anserini +test1893 Q0 356157 11 13.274010 Anserini +test1893 Q0 5939378 12 13.262126 Anserini +test1893 Q0 1598276 13 12.902579 Anserini +test1893 Q0 8080692 14 12.735868 Anserini +test1893 Q0 8669651 15 12.728565 Anserini +test1893 Q0 5508920 16 12.727381 Anserini +test1893 Q0 6247081 17 12.719255 Anserini +test1893 Q0 14672248 18 12.682941 Anserini +test1893 Q0 8669652 19 12.669288 Anserini +test1893 Q0 1910784 20 12.608932 Anserini +test1893 Q0 3582965 21 12.594901 Anserini +test1893 Q0 8083292 22 12.567838 Anserini +test1893 Q0 235407 23 12.353659 Anserini +test1893 Q0 3697838 24 12.344038 Anserini +test1893 Q0 8387089 25 12.260164 Anserini +test1893 Q0 13087320 26 12.225796 Anserini +test1893 Q0 13303154 27 12.223920 Anserini +test1893 Q0 1432329 28 12.219894 Anserini +test1893 Q0 13081163 29 12.132277 Anserini +test1893 Q0 12240933 30 12.113070 Anserini +test1894 Q0 925686 1 9.823157 Anserini +test1894 Q0 3282093 2 9.377232 Anserini +test1894 Q0 6999039 3 9.318101 Anserini +test1894 Q0 16948009 4 9.242227 Anserini +test1894 Q0 18789376 5 9.138228 Anserini +test1894 Q0 14314349 6 9.129699 Anserini +test1894 Q0 10621572 7 9.110603 Anserini +test1894 Q0 6599416 8 9.080547 Anserini +test1894 Q0 3282095 9 9.053767 Anserini +test1894 Q0 7409894 10 9.052052 Anserini +test1894 Q0 13296587 11 9.049936 Anserini +test1894 Q0 16948010 12 9.049936 Anserini +test1894 Q0 9977378 13 9.032864 Anserini +test1894 Q0 5593366 14 9.016612 Anserini +test1894 Q0 11664707 15 9.008178 Anserini +test1894 Q0 17209441 16 9.004784 Anserini +test1894 Q0 15684477 17 8.937002 Anserini +test1894 Q0 2270337 18 8.878595 Anserini +test1894 Q0 2070254 19 8.878595 Anserini +test1894 Q0 1260309 20 8.852579 Anserini +test1894 Q0 13441238 21 8.835937 Anserini +test1894 Q0 13441239 22 8.835937 Anserini +test1894 Q0 1497591 23 8.804441 Anserini +test1894 Q0 5995833 24 8.801991 Anserini +test1894 Q0 13664951 25 8.795055 Anserini +test1894 Q0 8950758 26 8.759306 Anserini +test1894 Q0 14695563 27 8.721905 Anserini +test1894 Q0 19996647 28 8.721457 Anserini +test1894 Q0 18879077 29 8.670665 Anserini +test1894 Q0 18879125 30 8.670665 Anserini +test1895 Q0 23502 1 14.955516 Anserini +test1895 Q0 8252562 2 14.768579 Anserini +test1895 Q0 16162514 3 14.536886 Anserini +test1895 Q0 16546687 4 14.163853 Anserini +test1895 Q0 5387293 5 14.142138 Anserini +test1895 Q0 12212924 6 14.100631 Anserini +test1895 Q0 23556 7 14.097073 Anserini +test1895 Q0 5973010 8 13.760225 Anserini +test1895 Q0 16546710 9 13.671573 Anserini +test1895 Q0 16496669 10 13.592195 Anserini +test1895 Q0 12644331 11 13.584865 Anserini +test1895 Q0 17973604 12 13.547802 Anserini +test1895 Q0 546643 13 13.477296 Anserini +test1895 Q0 546642 14 13.385442 Anserini +test1895 Q0 16546686 15 13.273682 Anserini +test1895 Q0 7164635 16 13.180329 Anserini +test1895 Q0 10419773 17 13.135263 Anserini +test1895 Q0 18804006 18 13.119977 Anserini +test1895 Q0 1721157 19 12.984835 Anserini +test1895 Q0 2988584 20 12.925326 Anserini +test1895 Q0 16546691 21 12.898051 Anserini +test1895 Q0 2464059 22 12.887894 Anserini +test1895 Q0 19521785 23 12.875365 Anserini +test1895 Q0 13502667 24 12.840377 Anserini +test1895 Q0 7519975 25 12.809586 Anserini +test1895 Q0 5900801 26 12.801700 Anserini +test1895 Q0 13738294 27 12.779425 Anserini +test1895 Q0 15021744 28 12.764778 Anserini +test1895 Q0 8661610 29 12.738332 Anserini +test1895 Q0 9055303 30 12.738332 Anserini +test1896 Q0 516592 1 13.753300 Anserini +test1896 Q0 516586 2 13.516315 Anserini +test1896 Q0 15427320 3 13.181813 Anserini +test1896 Q0 5685468 4 12.719057 Anserini +test1896 Q0 516710 5 12.570119 Anserini +test1896 Q0 3482860 6 12.485819 Anserini +test1896 Q0 516582 7 12.425983 Anserini +test1896 Q0 516609 8 12.381376 Anserini +test1896 Q0 1977890 9 12.162370 Anserini +test1896 Q0 6789910 10 12.102755 Anserini +test1896 Q0 1418444 11 11.830923 Anserini +test1896 Q0 19017919 12 11.646292 Anserini +test1896 Q0 13126986 13 11.496381 Anserini +test1896 Q0 3633139 14 11.467905 Anserini +test1896 Q0 5255161 15 11.467132 Anserini +test1896 Q0 10186758 16 11.274756 Anserini +test1896 Q0 9200103 17 11.130016 Anserini +test1896 Q0 516709 18 11.125097 Anserini +test1896 Q0 2282726 19 11.104802 Anserini +test1896 Q0 6104401 20 10.940939 Anserini +test1896 Q0 6510522 21 10.827154 Anserini +test1896 Q0 9161149 22 10.820157 Anserini +test1896 Q0 3633130 23 10.807917 Anserini +test1896 Q0 15429581 24 10.648849 Anserini +test1896 Q0 19316352 25 10.579968 Anserini +test1896 Q0 18437407 26 10.548008 Anserini +test1896 Q0 19547793 27 10.541243 Anserini +test1896 Q0 8605076 28 10.537634 Anserini +test1896 Q0 5742286 29 10.420566 Anserini +test1896 Q0 5817531 30 10.417307 Anserini +test1897 Q0 16157218 1 18.694643 Anserini +test1897 Q0 16989687 2 18.419308 Anserini +test1897 Q0 16989683 3 18.357605 Anserini +test1897 Q0 2827165 4 17.863045 Anserini +test1897 Q0 859614 5 17.792095 Anserini +test1897 Q0 859615 6 17.697666 Anserini +test1897 Q0 4957122 7 17.334787 Anserini +test1897 Q0 1010870 8 17.294449 Anserini +test1897 Q0 1010878 9 17.294449 Anserini +test1897 Q0 16989681 10 17.234146 Anserini +test1897 Q0 8315375 11 17.139936 Anserini +test1897 Q0 4957106 12 17.128368 Anserini +test1897 Q0 962403 13 17.103176 Anserini +test1897 Q0 920016 14 16.953608 Anserini +test1897 Q0 15731793 15 16.734900 Anserini +test1897 Q0 920019 16 16.717239 Anserini +test1897 Q0 16157221 17 16.681547 Anserini +test1897 Q0 16989682 18 16.596979 Anserini +test1897 Q0 11692144 19 16.593657 Anserini +test1897 Q0 19543102 20 16.578655 Anserini +test1897 Q0 1011741 21 16.534901 Anserini +test1897 Q0 1011730 22 16.518574 Anserini +test1897 Q0 9114991 23 16.425510 Anserini +test1897 Q0 859613 24 16.407475 Anserini +test1897 Q0 14947273 25 16.393736 Anserini +test1897 Q0 11692151 26 16.371395 Anserini +test1897 Q0 19543104 27 16.359879 Anserini +test1897 Q0 16988328 28 16.353949 Anserini +test1897 Q0 859631 29 16.347445 Anserini +test1897 Q0 1025982 30 16.324900 Anserini +test1898 Q0 1621244 1 12.273901 Anserini +test1898 Q0 1621254 2 12.229562 Anserini +test1898 Q0 1604295 3 12.000018 Anserini +test1898 Q0 702811 4 11.829664 Anserini +test1898 Q0 879599 5 11.706090 Anserini +test1898 Q0 1402628 6 11.697483 Anserini +test1898 Q0 1533289 7 11.697483 Anserini +test1898 Q0 774251 8 11.688263 Anserini +test1898 Q0 879688 9 11.583971 Anserini +test1898 Q0 311786 10 11.565370 Anserini +test1898 Q0 311748 11 11.548716 Anserini +test1898 Q0 879694 12 11.425425 Anserini +test1898 Q0 879686 13 11.390292 Anserini +test1898 Q0 4465556 14 11.371357 Anserini +test1898 Q0 3039871 15 11.314892 Anserini +test1898 Q0 311747 16 11.215268 Anserini +test1898 Q0 9687948 17 11.156191 Anserini +test1898 Q0 311749 18 11.148187 Anserini +test1898 Q0 774306 19 11.147847 Anserini +test1898 Q0 6593729 20 11.135338 Anserini +test1898 Q0 3055917 21 11.129202 Anserini +test1898 Q0 6593728 22 11.059271 Anserini +test1898 Q0 12279254 23 11.054914 Anserini +test1898 Q0 3039873 24 11.027920 Anserini +test1898 Q0 1621217 25 11.020580 Anserini +test1898 Q0 774325 26 11.007336 Anserini +test1898 Q0 774244 27 10.993051 Anserini +test1898 Q0 14388286 28 10.985272 Anserini +test1898 Q0 1604321 29 10.969076 Anserini +test1898 Q0 15446435 30 10.967037 Anserini +test1899 Q0 3213900 1 23.217970 Anserini +test1899 Q0 11026400 2 22.849442 Anserini +test1899 Q0 4265898 3 22.377575 Anserini +test1899 Q0 7224613 4 21.766623 Anserini +test1899 Q0 7224604 5 21.686455 Anserini +test1899 Q0 2284323 6 21.425770 Anserini +test1899 Q0 1936747 7 21.402681 Anserini +test1899 Q0 10615088 8 21.377895 Anserini +test1899 Q0 10615090 9 21.359459 Anserini +test1899 Q0 17945900 10 21.284264 Anserini +test1899 Q0 12012524 11 21.235765 Anserini +test1899 Q0 7224611 12 20.704170 Anserini +test1899 Q0 4265869 13 20.024010 Anserini +test1899 Q0 3213901 14 19.881975 Anserini +test1899 Q0 17855951 15 19.847532 Anserini +test1899 Q0 4265876 16 19.768841 Anserini +test1899 Q0 1933797 17 19.693249 Anserini +test1899 Q0 17855944 18 19.615934 Anserini +test1899 Q0 7224612 19 19.366686 Anserini +test1899 Q0 4265896 20 19.066151 Anserini +test1899 Q0 17910526 21 19.005991 Anserini +test1899 Q0 17988451 22 18.603571 Anserini +test1899 Q0 17910522 23 18.584078 Anserini +test1899 Q0 14155139 24 18.390846 Anserini +test1899 Q0 3213937 25 18.117897 Anserini +test1899 Q0 3213893 26 18.117897 Anserini +test1899 Q0 7224610 27 18.110455 Anserini +test1899 Q0 8411784 28 17.742134 Anserini +test1899 Q0 4899665 29 17.742134 Anserini +test1899 Q0 368492 30 17.167387 Anserini +test19 Q0 18212128 1 11.465785 Anserini +test19 Q0 18272461 2 10.854529 Anserini +test19 Q0 9196906 3 10.618325 Anserini +test19 Q0 14569076 4 10.471906 Anserini +test19 Q0 16096264 5 9.976013 Anserini +test19 Q0 18318954 6 9.914789 Anserini +test19 Q0 17783055 7 9.914724 Anserini +test19 Q0 14706666 8 9.908716 Anserini +test19 Q0 5266861 9 9.837105 Anserini +test19 Q0 18318955 10 9.813608 Anserini +test19 Q0 10624464 11 9.736373 Anserini +test19 Q0 18240517 12 9.727695 Anserini +test19 Q0 7234445 13 9.684780 Anserini +test19 Q0 10674984 14 9.683874 Anserini +test19 Q0 18496771 15 9.678797 Anserini +test19 Q0 16690170 16 9.640361 Anserini +test19 Q0 15900714 17 9.631403 Anserini +test19 Q0 17924742 18 9.625759 Anserini +test19 Q0 14036239 19 9.604291 Anserini +test19 Q0 3973545 20 9.539643 Anserini +test19 Q0 13738320 21 9.528585 Anserini +test19 Q0 15401053 22 9.500764 Anserini +test19 Q0 3834902 23 9.481942 Anserini +test19 Q0 17837686 24 9.441530 Anserini +test19 Q0 10973600 25 9.385512 Anserini +test19 Q0 8371160 26 9.368913 Anserini +test19 Q0 18212126 27 9.351536 Anserini +test19 Q0 17940150 28 9.339863 Anserini +test19 Q0 18221494 29 9.295673 Anserini +test19 Q0 3834649 30 9.272892 Anserini +test190 Q0 3667771 1 13.050328 Anserini +test190 Q0 12466795 2 12.977044 Anserini +test190 Q0 4516945 3 12.492725 Anserini +test190 Q0 15435081 4 12.243016 Anserini +test190 Q0 1430008 5 12.226626 Anserini +test190 Q0 8348765 6 11.979977 Anserini +test190 Q0 2889472 7 11.923616 Anserini +test190 Q0 5077442 8 11.842419 Anserini +test190 Q0 5077440 9 11.806378 Anserini +test190 Q0 11581831 10 11.539264 Anserini +test190 Q0 10894650 11 11.486514 Anserini +test190 Q0 1965367 12 11.438782 Anserini +test190 Q0 16415106 13 11.382498 Anserini +test190 Q0 13262279 14 11.335956 Anserini +test190 Q0 34231 15 11.265572 Anserini +test190 Q0 20791470 16 11.235704 Anserini +test190 Q0 34228 17 11.216903 Anserini +test190 Q0 15435052 18 11.165276 Anserini +test190 Q0 11524960 19 11.120790 Anserini +test190 Q0 1987419 20 11.082088 Anserini +test190 Q0 14939207 21 11.041960 Anserini +test190 Q0 5077487 22 10.967624 Anserini +test190 Q0 4891949 23 10.947199 Anserini +test190 Q0 447433 24 10.933774 Anserini +test190 Q0 15442045 25 10.921614 Anserini +test190 Q0 14299480 26 10.906765 Anserini +test190 Q0 15589584 27 10.876404 Anserini +test190 Q0 14427130 28 10.864346 Anserini +test190 Q0 512124 29 10.844685 Anserini +test190 Q0 2659136 30 10.820956 Anserini +test1900 Q0 11790077 1 11.811017 Anserini +test1900 Q0 11790074 2 10.757150 Anserini +test1900 Q0 11932950 3 10.524942 Anserini +test1900 Q0 7344893 4 10.474285 Anserini +test1900 Q0 9391820 5 10.434851 Anserini +test1900 Q0 8749312 6 10.399284 Anserini +test1900 Q0 9391817 7 10.336377 Anserini +test1900 Q0 9391819 8 10.296207 Anserini +test1900 Q0 7573733 9 10.285406 Anserini +test1900 Q0 469796 10 10.122400 Anserini +test1900 Q0 14136761 11 10.097715 Anserini +test1900 Q0 6419594 12 10.079691 Anserini +test1900 Q0 1819335 13 10.068491 Anserini +test1900 Q0 1504176 14 10.030632 Anserini +test1900 Q0 4027669 15 10.022559 Anserini +test1900 Q0 7743355 16 10.010697 Anserini +test1900 Q0 11067914 17 9.954725 Anserini +test1900 Q0 10855762 18 9.917909 Anserini +test1900 Q0 7132393 19 9.886745 Anserini +test1900 Q0 3151744 20 9.866783 Anserini +test1900 Q0 329993 21 9.751079 Anserini +test1900 Q0 19249507 22 9.749764 Anserini +test1900 Q0 8658012 23 9.747994 Anserini +test1900 Q0 19242419 24 9.732860 Anserini +test1900 Q0 15666378 25 9.725080 Anserini +test1900 Q0 4467305 26 9.710859 Anserini +test1900 Q0 9172247 27 9.625317 Anserini +test1900 Q0 6976474 28 9.624878 Anserini +test1900 Q0 18609273 29 9.621799 Anserini +test1900 Q0 1587828 30 9.597700 Anserini +test1901 Q0 16159643 1 21.249367 Anserini +test1901 Q0 16159646 2 20.225086 Anserini +test1901 Q0 1478202 3 19.172245 Anserini +test1901 Q0 1478210 4 18.407213 Anserini +test1901 Q0 9756069 5 17.649752 Anserini +test1901 Q0 267243 6 17.117939 Anserini +test1901 Q0 1478209 7 16.809994 Anserini +test1901 Q0 6200460 8 16.667503 Anserini +test1901 Q0 12817409 9 16.527517 Anserini +test1901 Q0 12817410 10 16.527517 Anserini +test1901 Q0 14203006 11 16.424807 Anserini +test1901 Q0 11815868 12 16.389967 Anserini +test1901 Q0 8518921 13 14.496414 Anserini +test1901 Q0 15450719 14 14.262710 Anserini +test1901 Q0 12274974 15 14.228939 Anserini +test1901 Q0 8518922 16 14.065575 Anserini +test1901 Q0 986540 17 13.835960 Anserini +test1901 Q0 15450720 18 13.726513 Anserini +test1901 Q0 10533344 19 13.143497 Anserini +test1901 Q0 10853515 20 12.996944 Anserini +test1901 Q0 10854992 21 12.996944 Anserini +test1901 Q0 5790858 22 12.996944 Anserini +test1901 Q0 10853541 23 12.996944 Anserini +test1901 Q0 1430485 24 12.482924 Anserini +test1901 Q0 16159644 25 12.147350 Anserini +test1901 Q0 17533822 26 12.147161 Anserini +test1901 Q0 2348368 27 12.065573 Anserini +test1901 Q0 6243900 28 11.463121 Anserini +test1901 Q0 14065906 29 11.423932 Anserini +test1901 Q0 4258544 30 11.417192 Anserini +test1902 Q0 2564254 1 18.585144 Anserini +test1902 Q0 8198073 2 18.126383 Anserini +test1902 Q0 8197923 3 18.086788 Anserini +test1902 Q0 9730645 4 17.903887 Anserini +test1902 Q0 7476921 5 17.897575 Anserini +test1902 Q0 8198444 6 17.875517 Anserini +test1902 Q0 2222596 7 17.693821 Anserini +test1902 Q0 2564250 8 17.494474 Anserini +test1902 Q0 4368996 9 17.472950 Anserini +test1902 Q0 8197907 10 17.453768 Anserini +test1902 Q0 12201674 11 17.421812 Anserini +test1902 Q0 6878500 12 17.353416 Anserini +test1902 Q0 9720965 13 17.216970 Anserini +test1902 Q0 8198466 14 17.025198 Anserini +test1902 Q0 3768911 15 16.943575 Anserini +test1902 Q0 9730656 16 16.942127 Anserini +test1902 Q0 16393141 17 16.787477 Anserini +test1902 Q0 6878513 18 16.769623 Anserini +test1902 Q0 15863905 19 16.755037 Anserini +test1902 Q0 6897225 20 16.644289 Anserini +test1902 Q0 8144864 21 16.626253 Anserini +test1902 Q0 18972183 22 16.577215 Anserini +test1902 Q0 18259896 23 16.555302 Anserini +test1902 Q0 9730663 24 16.517715 Anserini +test1902 Q0 8198411 25 16.508556 Anserini +test1902 Q0 19966275 26 16.452911 Anserini +test1902 Q0 5303392 27 16.408949 Anserini +test1902 Q0 18259897 28 16.261137 Anserini +test1902 Q0 2067649 29 16.220776 Anserini +test1902 Q0 9730642 30 16.215696 Anserini +test1903 Q0 17045361 1 14.751222 Anserini +test1903 Q0 19427963 2 12.853142 Anserini +test1903 Q0 7498515 3 12.695318 Anserini +test1903 Q0 17045358 4 12.606778 Anserini +test1903 Q0 6732283 5 12.506643 Anserini +test1903 Q0 6732284 6 12.230691 Anserini +test1903 Q0 16142656 7 12.008511 Anserini +test1903 Q0 457977 8 11.835995 Anserini +test1903 Q0 16828220 9 11.818197 Anserini +test1903 Q0 17045359 10 11.645109 Anserini +test1903 Q0 457968 11 11.502462 Anserini +test1903 Q0 457943 12 11.260577 Anserini +test1903 Q0 7498506 13 11.188387 Anserini +test1903 Q0 19504158 14 11.003080 Anserini +test1903 Q0 19992917 15 10.974858 Anserini +test1903 Q0 18421938 16 10.940462 Anserini +test1903 Q0 20197113 17 10.936550 Anserini +test1903 Q0 7498503 18 10.936550 Anserini +test1903 Q0 457933 19 10.912642 Anserini +test1903 Q0 9318796 20 10.879885 Anserini +test1903 Q0 457958 21 10.769958 Anserini +test1903 Q0 16142658 22 10.747681 Anserini +test1903 Q0 13150340 23 10.563225 Anserini +test1903 Q0 457941 24 10.452229 Anserini +test1903 Q0 7733094 25 10.426525 Anserini +test1903 Q0 1631535 26 10.371298 Anserini +test1903 Q0 12891895 27 10.354517 Anserini +test1903 Q0 12611366 28 10.258998 Anserini +test1903 Q0 18280494 29 10.068539 Anserini +test1903 Q0 9193639 30 9.993600 Anserini +test1904 Q0 151960 1 15.325096 Anserini +test1904 Q0 239986 2 14.209138 Anserini +test1904 Q0 10495474 3 13.856840 Anserini +test1904 Q0 280068 4 13.764648 Anserini +test1904 Q0 2580809 5 13.568732 Anserini +test1904 Q0 12196953 6 13.531908 Anserini +test1904 Q0 11781759 7 13.483905 Anserini +test1904 Q0 240015 8 13.409235 Anserini +test1904 Q0 3277160 9 13.319643 Anserini +test1904 Q0 2726776 10 13.289344 Anserini +test1904 Q0 2726771 11 13.212924 Anserini +test1904 Q0 239951 12 13.093830 Anserini +test1904 Q0 3277170 13 13.091743 Anserini +test1904 Q0 2100292 14 12.994234 Anserini +test1904 Q0 83627 15 12.951118 Anserini +test1904 Q0 1851299 16 12.924067 Anserini +test1904 Q0 1742031 17 12.802618 Anserini +test1904 Q0 239822 18 12.696507 Anserini +test1904 Q0 16336738 19 12.621828 Anserini +test1904 Q0 12704403 20 12.541590 Anserini +test1904 Q0 10668162 21 12.529392 Anserini +test1904 Q0 502585 22 12.525612 Anserini +test1904 Q0 239977 23 12.474155 Anserini +test1904 Q0 1712541 24 12.451843 Anserini +test1904 Q0 2940816 25 12.435596 Anserini +test1904 Q0 1267327 26 12.381950 Anserini +test1904 Q0 3196450 27 12.212234 Anserini +test1904 Q0 1267395 28 12.164954 Anserini +test1904 Q0 3777872 29 12.110384 Anserini +test1904 Q0 152029 30 12.064394 Anserini +test1905 Q0 20687278 1 14.817357 Anserini +test1905 Q0 6840999 2 14.231532 Anserini +test1905 Q0 6840959 3 14.129854 Anserini +test1905 Q0 8600697 4 14.096226 Anserini +test1905 Q0 2276920 5 14.055133 Anserini +test1905 Q0 20875687 6 13.954235 Anserini +test1905 Q0 20875674 7 13.954235 Anserini +test1905 Q0 11232492 8 13.673527 Anserini +test1905 Q0 17287368 9 13.608845 Anserini +test1905 Q0 3573846 10 13.600998 Anserini +test1905 Q0 18563276 11 13.587050 Anserini +test1905 Q0 7151533 12 13.555510 Anserini +test1905 Q0 19877838 13 13.485469 Anserini +test1905 Q0 20642592 14 13.477920 Anserini +test1905 Q0 328579 15 13.452082 Anserini +test1905 Q0 171702 16 13.421451 Anserini +test1905 Q0 140109 17 13.420269 Anserini +test1905 Q0 3536809 18 13.419138 Anserini +test1905 Q0 1619914 19 13.389254 Anserini +test1905 Q0 10362008 20 13.341940 Anserini +test1905 Q0 3670396 21 13.339346 Anserini +test1905 Q0 3020056 22 13.322093 Anserini +test1905 Q0 3358891 23 13.304609 Anserini +test1905 Q0 11618354 24 13.199799 Anserini +test1905 Q0 2049366 25 13.194160 Anserini +test1905 Q0 16485509 26 13.184217 Anserini +test1905 Q0 11968350 27 13.165113 Anserini +test1905 Q0 20876470 28 13.124695 Anserini +test1905 Q0 15899086 29 13.085649 Anserini +test1905 Q0 10394004 30 13.056330 Anserini +test1906 Q0 5186816 1 11.058226 Anserini +test1906 Q0 6507485 2 10.861218 Anserini +test1906 Q0 6465548 3 10.660227 Anserini +test1906 Q0 18640726 4 10.628611 Anserini +test1906 Q0 12811764 5 10.622324 Anserini +test1906 Q0 15914844 6 10.596035 Anserini +test1906 Q0 4771174 7 10.541235 Anserini +test1906 Q0 8121405 8 10.539792 Anserini +test1906 Q0 4321752 9 10.482809 Anserini +test1906 Q0 19023591 10 10.461009 Anserini +test1906 Q0 13841063 11 10.441502 Anserini +test1906 Q0 7977179 12 10.413896 Anserini +test1906 Q0 10587105 13 10.413303 Anserini +test1906 Q0 4626611 14 10.393474 Anserini +test1906 Q0 19767407 15 10.370499 Anserini +test1906 Q0 6174631 16 10.285388 Anserini +test1906 Q0 4798579 17 10.226274 Anserini +test1906 Q0 11828532 18 10.123407 Anserini +test1906 Q0 4007826 19 10.076951 Anserini +test1906 Q0 19254037 20 10.075463 Anserini +test1906 Q0 100003 21 10.074199 Anserini +test1906 Q0 7633290 22 10.058912 Anserini +test1906 Q0 12134698 23 9.995983 Anserini +test1906 Q0 12502333 24 9.988610 Anserini +test1906 Q0 14950440 25 9.986375 Anserini +test1906 Q0 19416536 26 9.983494 Anserini +test1906 Q0 8583424 27 9.937474 Anserini +test1906 Q0 14255757 28 9.912189 Anserini +test1906 Q0 14645577 29 9.905815 Anserini +test1906 Q0 21005535 30 9.892291 Anserini +test1907 Q0 15327188 1 13.178250 Anserini +test1907 Q0 12617561 2 12.254347 Anserini +test1907 Q0 2515576 3 12.143517 Anserini +test1907 Q0 8100002 4 11.572571 Anserini +test1907 Q0 384672 5 11.553034 Anserini +test1907 Q0 19813332 6 11.504812 Anserini +test1907 Q0 6996632 7 11.460997 Anserini +test1907 Q0 8335630 8 11.427197 Anserini +test1907 Q0 7519890 9 11.379095 Anserini +test1907 Q0 8335631 10 11.359035 Anserini +test1907 Q0 6238335 11 11.288454 Anserini +test1907 Q0 6927936 12 11.257581 Anserini +test1907 Q0 5692387 13 11.228092 Anserini +test1907 Q0 2515597 14 11.174246 Anserini +test1907 Q0 6607316 15 11.120784 Anserini +test1907 Q0 14136371 16 11.112471 Anserini +test1907 Q0 6555061 17 11.081855 Anserini +test1907 Q0 14292804 18 10.976497 Anserini +test1907 Q0 2565313 19 10.971315 Anserini +test1907 Q0 18981217 20 10.948163 Anserini +test1907 Q0 18981215 21 10.870271 Anserini +test1907 Q0 901412 22 10.769767 Anserini +test1907 Q0 7196192 23 10.759666 Anserini +test1907 Q0 901422 24 10.698775 Anserini +test1907 Q0 19508933 25 10.688201 Anserini +test1907 Q0 12439381 26 10.583440 Anserini +test1907 Q0 2014489 27 10.557573 Anserini +test1907 Q0 6873170 28 10.540545 Anserini +test1907 Q0 6602713 29 10.503691 Anserini +test1907 Q0 20714955 30 10.447966 Anserini +test1908 Q0 3297255 1 13.697299 Anserini +test1908 Q0 3297246 2 13.458334 Anserini +test1908 Q0 3297248 3 13.018267 Anserini +test1908 Q0 3297247 4 12.932424 Anserini +test1908 Q0 3297254 5 12.893168 Anserini +test1908 Q0 7807997 6 12.893168 Anserini +test1908 Q0 3297239 7 12.542142 Anserini +test1908 Q0 1965657 8 12.242419 Anserini +test1908 Q0 3297243 9 12.151776 Anserini +test1908 Q0 3297242 10 11.359986 Anserini +test1908 Q0 3297250 11 11.126016 Anserini +test1908 Q0 7994257 12 10.753375 Anserini +test1908 Q0 3297245 13 10.710253 Anserini +test1908 Q0 3297252 14 10.710253 Anserini +test1908 Q0 7253658 15 10.548708 Anserini +test1908 Q0 3297253 16 10.538159 Anserini +test1908 Q0 2357574 17 10.484113 Anserini +test1908 Q0 4234641 18 10.484113 Anserini +test1908 Q0 3297237 19 10.484113 Anserini +test1908 Q0 16973852 20 10.451715 Anserini +test1908 Q0 18476187 21 10.273402 Anserini +test1908 Q0 3297251 22 10.142084 Anserini +test1908 Q0 6324061 23 10.136288 Anserini +test1908 Q0 6513950 24 10.136101 Anserini +test1908 Q0 13146660 25 10.074916 Anserini +test1908 Q0 15261637 26 10.029584 Anserini +test1908 Q0 9941018 27 9.911138 Anserini +test1908 Q0 6216518 28 9.901963 Anserini +test1908 Q0 4819113 29 9.891953 Anserini +test1908 Q0 3297240 30 9.866003 Anserini +test1909 Q0 17482405 1 17.046452 Anserini +test1909 Q0 17482404 2 15.627729 Anserini +test1909 Q0 19517179 3 15.525659 Anserini +test1909 Q0 16662921 4 15.222937 Anserini +test1909 Q0 16546488 5 15.120597 Anserini +test1909 Q0 16546489 6 15.120597 Anserini +test1909 Q0 11295734 7 14.977055 Anserini +test1909 Q0 9371459 8 14.922527 Anserini +test1909 Q0 19517188 9 14.700754 Anserini +test1909 Q0 8248728 10 14.692207 Anserini +test1909 Q0 14756198 11 14.630005 Anserini +test1909 Q0 19423218 12 14.628621 Anserini +test1909 Q0 18864058 13 14.614792 Anserini +test1909 Q0 19517189 14 14.544223 Anserini +test1909 Q0 15655497 15 14.520881 Anserini +test1909 Q0 15655498 16 14.520881 Anserini +test1909 Q0 8425116 17 14.477065 Anserini +test1909 Q0 9376505 18 14.477047 Anserini +test1909 Q0 17996938 19 14.473076 Anserini +test1909 Q0 19517187 20 14.470802 Anserini +test1909 Q0 14622949 21 14.434028 Anserini +test1909 Q0 9375551 22 14.321082 Anserini +test1909 Q0 9371704 23 14.309491 Anserini +test1909 Q0 19423232 24 14.074197 Anserini +test1909 Q0 10559047 25 14.021364 Anserini +test1909 Q0 10474966 26 14.011661 Anserini +test1909 Q0 803855 27 13.954767 Anserini +test1909 Q0 803897 28 13.892092 Anserini +test1909 Q0 802718 29 13.883286 Anserini +test1909 Q0 14669652 30 13.873945 Anserini +test191 Q0 18563346 1 20.624285 Anserini +test191 Q0 2734539 2 20.467800 Anserini +test191 Q0 12810379 3 20.219831 Anserini +test191 Q0 18567743 4 19.890644 Anserini +test191 Q0 20550658 5 19.829691 Anserini +test191 Q0 17079291 6 19.796362 Anserini +test191 Q0 20550654 7 19.764414 Anserini +test191 Q0 17076837 8 19.726013 Anserini +test191 Q0 397171 9 19.317350 Anserini +test191 Q0 18567776 10 19.305103 Anserini +test191 Q0 18567737 11 19.219372 Anserini +test191 Q0 2734472 12 19.217243 Anserini +test191 Q0 17079304 13 19.130283 Anserini +test191 Q0 18567794 14 19.045851 Anserini +test191 Q0 19152710 15 18.985762 Anserini +test191 Q0 16858082 16 18.949379 Anserini +test191 Q0 17076829 17 18.929270 Anserini +test191 Q0 394608 18 18.877914 Anserini +test191 Q0 12810383 19 18.874371 Anserini +test191 Q0 17079303 20 18.814631 Anserini +test191 Q0 18567775 21 18.745192 Anserini +test191 Q0 394665 22 18.719908 Anserini +test191 Q0 18084512 23 18.626341 Anserini +test191 Q0 17079299 24 18.484047 Anserini +test191 Q0 394711 25 18.483492 Anserini +test191 Q0 6982255 26 18.475307 Anserini +test191 Q0 4450419 27 18.328861 Anserini +test191 Q0 12810378 28 18.281746 Anserini +test191 Q0 4243442 29 18.085440 Anserini +test191 Q0 18567781 30 18.073320 Anserini +test1910 Q0 16196497 1 15.409452 Anserini +test1910 Q0 16196496 2 14.510528 Anserini +test1910 Q0 16906042 3 13.221896 Anserini +test1910 Q0 16196508 4 12.990519 Anserini +test1910 Q0 16196477 5 12.410641 Anserini +test1910 Q0 16196478 6 12.159972 Anserini +test1910 Q0 16196469 7 11.713266 Anserini +test1910 Q0 7679251 8 11.602689 Anserini +test1910 Q0 3574660 9 11.577279 Anserini +test1910 Q0 19004287 10 11.455122 Anserini +test1910 Q0 2574993 11 11.455122 Anserini +test1910 Q0 16196506 12 11.406987 Anserini +test1910 Q0 19721444 13 11.369522 Anserini +test1910 Q0 4845246 14 11.346619 Anserini +test1910 Q0 16259772 15 11.304066 Anserini +test1910 Q0 5183884 16 11.234561 Anserini +test1910 Q0 11604046 17 11.209027 Anserini +test1910 Q0 16196480 18 11.162580 Anserini +test1910 Q0 16196472 19 11.094382 Anserini +test1910 Q0 16196474 20 11.094382 Anserini +test1910 Q0 5810927 21 11.074800 Anserini +test1910 Q0 16694005 22 11.053702 Anserini +test1910 Q0 2011194 23 11.050977 Anserini +test1910 Q0 9775019 24 11.033297 Anserini +test1910 Q0 1473929 25 11.022115 Anserini +test1910 Q0 4072833 26 11.002822 Anserini +test1910 Q0 16196470 27 10.985782 Anserini +test1910 Q0 16196488 28 10.981165 Anserini +test1910 Q0 16196512 29 10.981165 Anserini +test1910 Q0 16259777 30 10.850015 Anserini +test1911 Q0 1543416 1 13.361773 Anserini +test1911 Q0 16272537 2 13.235413 Anserini +test1911 Q0 90680 3 12.817554 Anserini +test1911 Q0 459288 4 12.794357 Anserini +test1911 Q0 7488642 5 12.750919 Anserini +test1911 Q0 352822 6 12.688650 Anserini +test1911 Q0 7506381 7 12.472108 Anserini +test1911 Q0 10379289 8 12.384448 Anserini +test1911 Q0 612708 9 12.373140 Anserini +test1911 Q0 18178345 10 12.315560 Anserini +test1911 Q0 16272541 11 12.270892 Anserini +test1911 Q0 6633038 12 12.112392 Anserini +test1911 Q0 14805656 13 12.056390 Anserini +test1911 Q0 7101847 14 11.988314 Anserini +test1911 Q0 16111320 15 11.932803 Anserini +test1911 Q0 503784 16 11.908325 Anserini +test1911 Q0 1716938 17 11.902194 Anserini +test1911 Q0 7101851 18 11.889828 Anserini +test1911 Q0 7488678 19 11.869676 Anserini +test1911 Q0 17550817 20 11.812025 Anserini +test1911 Q0 18327767 21 11.742276 Anserini +test1911 Q0 9383187 22 11.701687 Anserini +test1911 Q0 5079711 23 11.658854 Anserini +test1911 Q0 7488657 24 11.644916 Anserini +test1911 Q0 2508234 25 11.633879 Anserini +test1911 Q0 503785 26 11.626082 Anserini +test1911 Q0 510835 27 11.618999 Anserini +test1911 Q0 12281707 28 11.609499 Anserini +test1911 Q0 3110859 29 11.607585 Anserini +test1911 Q0 626567 30 11.532537 Anserini +test1912 Q0 19443627 1 12.969208 Anserini +test1912 Q0 19595734 2 12.020259 Anserini +test1912 Q0 19595878 3 11.387718 Anserini +test1912 Q0 19581992 4 10.945797 Anserini +test1912 Q0 19730170 5 10.511077 Anserini +test1912 Q0 19684942 6 10.423584 Anserini +test1912 Q0 19575638 7 10.422093 Anserini +test1912 Q0 17863290 8 10.363644 Anserini +test1912 Q0 19439670 9 10.289383 Anserini +test1912 Q0 19510556 10 10.128362 Anserini +test1912 Q0 12069721 11 10.116002 Anserini +test1912 Q0 5468733 12 10.107316 Anserini +test1912 Q0 19814312 13 10.027955 Anserini +test1912 Q0 19585351 14 10.013277 Anserini +test1912 Q0 14805747 15 9.982979 Anserini +test1912 Q0 20134190 16 9.959656 Anserini +test1912 Q0 19595727 17 9.958956 Anserini +test1912 Q0 16843082 18 9.941667 Anserini +test1912 Q0 12288189 19 9.931910 Anserini +test1912 Q0 6778010 20 9.918158 Anserini +test1912 Q0 20095910 21 9.908825 Anserini +test1912 Q0 19790221 22 9.894959 Anserini +test1912 Q0 19814306 23 9.892850 Anserini +test1912 Q0 19439674 24 9.867168 Anserini +test1912 Q0 15349714 25 9.830908 Anserini +test1912 Q0 19439663 26 9.830014 Anserini +test1912 Q0 19550767 27 9.830014 Anserini +test1912 Q0 19005147 28 9.825717 Anserini +test1912 Q0 19836143 29 9.819408 Anserini +test1912 Q0 19524199 30 9.814102 Anserini +test1913 Q0 5075669 1 14.329687 Anserini +test1913 Q0 6305830 2 14.120292 Anserini +test1913 Q0 5075690 3 13.817222 Anserini +test1913 Q0 566547 4 13.451652 Anserini +test1913 Q0 5075677 5 11.988863 Anserini +test1913 Q0 224083 6 11.985663 Anserini +test1913 Q0 10043349 7 11.836832 Anserini +test1913 Q0 589791 8 11.667559 Anserini +test1913 Q0 275947 9 11.633951 Anserini +test1913 Q0 10266892 10 11.563897 Anserini +test1913 Q0 1765916 11 11.415734 Anserini +test1913 Q0 12667905 12 11.364413 Anserini +test1913 Q0 871220 13 11.348401 Anserini +test1913 Q0 4720789 14 11.253374 Anserini +test1913 Q0 5075671 15 11.150314 Anserini +test1913 Q0 6145115 16 11.149951 Anserini +test1913 Q0 5153904 17 11.149951 Anserini +test1913 Q0 388113 18 11.149951 Anserini +test1913 Q0 7308990 19 11.048486 Anserini +test1913 Q0 14236674 20 11.048486 Anserini +test1913 Q0 10786365 21 11.048486 Anserini +test1913 Q0 6510017 22 11.007023 Anserini +test1913 Q0 5075675 23 10.895439 Anserini +test1913 Q0 11816184 24 10.795874 Anserini +test1913 Q0 561824 25 10.231781 Anserini +test1913 Q0 6762313 26 10.219316 Anserini +test1913 Q0 9685696 27 10.185555 Anserini +test1913 Q0 2526191 28 10.167265 Anserini +test1913 Q0 3396006 29 10.138905 Anserini +test1913 Q0 2301586 30 10.106256 Anserini +test1914 Q0 14118001 1 11.138889 Anserini +test1914 Q0 20322013 2 10.542653 Anserini +test1914 Q0 6011260 3 10.438454 Anserini +test1914 Q0 20686750 4 10.347543 Anserini +test1914 Q0 5373173 5 10.214801 Anserini +test1914 Q0 773202 6 10.014347 Anserini +test1914 Q0 3572890 7 9.933686 Anserini +test1914 Q0 6496128 8 9.833558 Anserini +test1914 Q0 1780852 9 9.825938 Anserini +test1914 Q0 2582053 10 9.728264 Anserini +test1914 Q0 6217918 11 9.728264 Anserini +test1914 Q0 14118000 12 9.708406 Anserini +test1914 Q0 9659975 13 9.690781 Anserini +test1914 Q0 2563918 14 9.616467 Anserini +test1914 Q0 15771571 15 9.578811 Anserini +test1914 Q0 6011258 16 9.577078 Anserini +test1914 Q0 16365551 17 9.462659 Anserini +test1914 Q0 13983383 18 9.447068 Anserini +test1914 Q0 5373170 19 9.447068 Anserini +test1914 Q0 20686743 20 9.429880 Anserini +test1914 Q0 11323771 21 9.384142 Anserini +test1914 Q0 535913 22 9.383022 Anserini +test1914 Q0 7264188 23 9.337834 Anserini +test1914 Q0 10347098 24 9.319920 Anserini +test1914 Q0 20492392 25 9.298318 Anserini +test1914 Q0 3572888 26 9.285399 Anserini +test1914 Q0 11323788 27 9.282866 Anserini +test1914 Q0 7264187 28 9.280429 Anserini +test1914 Q0 20492388 29 9.258818 Anserini +test1914 Q0 17596411 30 9.240578 Anserini +test1915 Q0 9007268 1 12.170020 Anserini +test1915 Q0 358054 2 11.503657 Anserini +test1915 Q0 709157 3 11.100433 Anserini +test1915 Q0 7725272 4 10.722977 Anserini +test1915 Q0 5278194 5 10.531984 Anserini +test1915 Q0 5024347 6 10.497214 Anserini +test1915 Q0 14513502 7 10.387859 Anserini +test1915 Q0 20976700 8 10.375430 Anserini +test1915 Q0 18734454 9 10.263652 Anserini +test1915 Q0 18734460 10 10.263652 Anserini +test1915 Q0 8890455 11 10.251837 Anserini +test1915 Q0 14402330 12 10.244921 Anserini +test1915 Q0 18734458 13 10.061504 Anserini +test1915 Q0 7890528 14 9.933533 Anserini +test1915 Q0 1887725 15 9.814151 Anserini +test1915 Q0 9906398 16 9.780564 Anserini +test1915 Q0 11457321 17 9.776847 Anserini +test1915 Q0 688977 18 9.727757 Anserini +test1915 Q0 2111418 19 9.658052 Anserini +test1915 Q0 1558123 20 9.646276 Anserini +test1915 Q0 9167910 21 9.603195 Anserini +test1915 Q0 10325470 22 9.560168 Anserini +test1915 Q0 11575474 23 9.505956 Anserini +test1915 Q0 6012120 24 9.493209 Anserini +test1915 Q0 15685058 25 9.486240 Anserini +test1915 Q0 11239386 26 9.477855 Anserini +test1915 Q0 6714604 27 9.469615 Anserini +test1915 Q0 9234180 28 9.414365 Anserini +test1915 Q0 3747112 29 9.412304 Anserini +test1915 Q0 17938193 30 9.365237 Anserini +test1916 Q0 10560171 1 10.882257 Anserini +test1916 Q0 6915924 2 10.679449 Anserini +test1916 Q0 6915944 3 10.332220 Anserini +test1916 Q0 5646983 4 10.301572 Anserini +test1916 Q0 9726712 5 10.300390 Anserini +test1916 Q0 6915922 6 10.208150 Anserini +test1916 Q0 20071634 7 10.183235 Anserini +test1916 Q0 6915921 8 10.044230 Anserini +test1916 Q0 4737084 9 10.033203 Anserini +test1916 Q0 16315141 10 10.021942 Anserini +test1916 Q0 7426445 11 9.912186 Anserini +test1916 Q0 3639226 12 9.867146 Anserini +test1916 Q0 16462023 13 9.803899 Anserini +test1916 Q0 10758768 14 9.783231 Anserini +test1916 Q0 13805365 15 9.747849 Anserini +test1916 Q0 8805141 16 9.685831 Anserini +test1916 Q0 4737085 17 9.666139 Anserini +test1916 Q0 17628851 18 9.629828 Anserini +test1916 Q0 7855411 19 9.598032 Anserini +test1916 Q0 20071645 20 9.589541 Anserini +test1916 Q0 15352887 21 9.572425 Anserini +test1916 Q0 6002698 22 9.544323 Anserini +test1916 Q0 6002704 23 9.489887 Anserini +test1916 Q0 10758771 24 9.483397 Anserini +test1916 Q0 20071642 25 9.384727 Anserini +test1916 Q0 16550511 26 9.384542 Anserini +test1916 Q0 6600351 27 9.372986 Anserini +test1916 Q0 4737083 28 9.342957 Anserini +test1916 Q0 5090810 29 9.331848 Anserini +test1916 Q0 18545310 30 9.331192 Anserini +test1917 Q0 9847790 1 16.092419 Anserini +test1917 Q0 18553606 2 13.740414 Anserini +test1917 Q0 9847796 3 13.133342 Anserini +test1917 Q0 9847792 4 12.838985 Anserini +test1917 Q0 18553605 5 11.803833 Anserini +test1917 Q0 12115563 6 11.602898 Anserini +test1917 Q0 10077434 7 11.469429 Anserini +test1917 Q0 7679396 8 11.411812 Anserini +test1917 Q0 11809818 9 10.736945 Anserini +test1917 Q0 19960988 10 10.682366 Anserini +test1917 Q0 3969043 11 10.682366 Anserini +test1917 Q0 9847791 12 10.652896 Anserini +test1917 Q0 2412234 13 10.625697 Anserini +test1917 Q0 7377749 14 10.614680 Anserini +test1917 Q0 2412240 15 10.612812 Anserini +test1917 Q0 14029788 16 10.559727 Anserini +test1917 Q0 7392496 17 10.479498 Anserini +test1917 Q0 8814214 18 10.457088 Anserini +test1917 Q0 6534822 19 10.430495 Anserini +test1917 Q0 12054718 20 10.341809 Anserini +test1917 Q0 7377752 21 10.322028 Anserini +test1917 Q0 20326998 22 10.250367 Anserini +test1917 Q0 3649689 23 10.241100 Anserini +test1917 Q0 3439479 24 10.216755 Anserini +test1917 Q0 12115555 25 10.216755 Anserini +test1917 Q0 2857766 26 10.151542 Anserini +test1917 Q0 2412250 27 10.016684 Anserini +test1917 Q0 2412241 28 9.965770 Anserini +test1917 Q0 20463213 29 9.928182 Anserini +test1917 Q0 2412231 30 9.887849 Anserini +test1918 Q0 9596142 1 17.404015 Anserini +test1918 Q0 9596151 2 17.175728 Anserini +test1918 Q0 14837086 3 16.659168 Anserini +test1918 Q0 13296730 4 16.568726 Anserini +test1918 Q0 12042666 5 16.555239 Anserini +test1918 Q0 11856740 6 16.525305 Anserini +test1918 Q0 9596143 7 16.500261 Anserini +test1918 Q0 8022869 8 16.491446 Anserini +test1918 Q0 17683112 9 16.482367 Anserini +test1918 Q0 12042615 10 16.476925 Anserini +test1918 Q0 17700738 11 16.354828 Anserini +test1918 Q0 16135071 12 16.257162 Anserini +test1918 Q0 11589501 13 16.169510 Anserini +test1918 Q0 13780121 14 16.150011 Anserini +test1918 Q0 3156798 15 16.095140 Anserini +test1918 Q0 20245543 16 16.094774 Anserini +test1918 Q0 2593121 17 16.089323 Anserini +test1918 Q0 11637956 18 16.051933 Anserini +test1918 Q0 9596150 19 16.018345 Anserini +test1918 Q0 12415593 20 15.973295 Anserini +test1918 Q0 12042653 21 15.946625 Anserini +test1918 Q0 12471135 22 15.926020 Anserini +test1918 Q0 11870634 23 15.914736 Anserini +test1918 Q0 3948489 24 15.807377 Anserini +test1918 Q0 9596147 25 15.804020 Anserini +test1918 Q0 11589669 26 15.786965 Anserini +test1918 Q0 12429874 27 15.764035 Anserini +test1918 Q0 11299903 28 15.763548 Anserini +test1918 Q0 10906107 29 15.759647 Anserini +test1918 Q0 9230005 30 15.663729 Anserini +test1919 Q0 7938726 1 11.328425 Anserini +test1919 Q0 17868087 2 11.322987 Anserini +test1919 Q0 4554 3 11.043303 Anserini +test1919 Q0 11695157 4 10.866210 Anserini +test1919 Q0 8610083 5 10.823410 Anserini +test1919 Q0 2977583 6 10.705563 Anserini +test1919 Q0 12547155 7 10.456234 Anserini +test1919 Q0 3835177 8 10.283212 Anserini +test1919 Q0 571870 9 10.261925 Anserini +test1919 Q0 7938727 10 10.261374 Anserini +test1919 Q0 12444669 11 10.194419 Anserini +test1919 Q0 4839506 12 10.161178 Anserini +test1919 Q0 148964 13 10.148167 Anserini +test1919 Q0 16740596 14 10.122552 Anserini +test1919 Q0 922055 15 10.098383 Anserini +test1919 Q0 6585953 16 10.086501 Anserini +test1919 Q0 3364200 17 10.028472 Anserini +test1919 Q0 3252524 18 10.010922 Anserini +test1919 Q0 841344 19 9.916315 Anserini +test1919 Q0 10998493 20 9.898246 Anserini +test1919 Q0 14998645 21 9.898246 Anserini +test1919 Q0 16227350 22 9.835437 Anserini +test1919 Q0 9828698 23 9.829603 Anserini +test1919 Q0 15688490 24 9.822612 Anserini +test1919 Q0 4897713 25 9.821699 Anserini +test1919 Q0 18376731 26 9.799173 Anserini +test1919 Q0 2094915 27 9.799173 Anserini +test1919 Q0 12300686 28 9.799173 Anserini +test1919 Q0 12209837 29 9.724618 Anserini +test1919 Q0 19394989 30 9.713275 Anserini +test192 Q0 3047336 1 13.666375 Anserini +test192 Q0 13294881 2 13.245363 Anserini +test192 Q0 3047340 3 12.924478 Anserini +test192 Q0 3047337 4 12.915454 Anserini +test192 Q0 3047345 5 12.377889 Anserini +test192 Q0 3047335 6 12.129768 Anserini +test192 Q0 3047339 7 12.014708 Anserini +test192 Q0 3047344 8 11.585121 Anserini +test192 Q0 12148518 9 11.138432 Anserini +test192 Q0 5872111 10 11.106837 Anserini +test192 Q0 12148523 11 10.561545 Anserini +test192 Q0 3047342 12 10.215782 Anserini +test192 Q0 13294888 13 10.132381 Anserini +test192 Q0 12148528 14 10.132381 Anserini +test192 Q0 13294889 15 10.132381 Anserini +test192 Q0 13294878 16 10.091190 Anserini +test192 Q0 12310594 17 9.954933 Anserini +test192 Q0 11420582 18 9.828626 Anserini +test192 Q0 7322577 19 9.653570 Anserini +test192 Q0 9408538 20 9.652975 Anserini +test192 Q0 13294882 21 9.597025 Anserini +test192 Q0 12148509 22 9.499088 Anserini +test192 Q0 7943843 23 9.089465 Anserini +test192 Q0 12148525 24 8.905804 Anserini +test192 Q0 5869446 25 8.900088 Anserini +test192 Q0 15343333 26 8.751148 Anserini +test192 Q0 6898286 27 8.734859 Anserini +test192 Q0 15343331 28 8.698999 Anserini +test192 Q0 9408537 29 8.698608 Anserini +test192 Q0 968375 30 8.682827 Anserini +test1920 Q0 1961156 1 17.629389 Anserini +test1920 Q0 19030895 2 17.263432 Anserini +test1920 Q0 19030871 3 16.498779 Anserini +test1920 Q0 19030881 4 16.375462 Anserini +test1920 Q0 19030875 5 16.259268 Anserini +test1920 Q0 19030893 6 16.093800 Anserini +test1920 Q0 19030897 7 16.042757 Anserini +test1920 Q0 19030884 8 15.593032 Anserini +test1920 Q0 19030898 9 15.588369 Anserini +test1920 Q0 19030877 10 15.489064 Anserini +test1920 Q0 19030887 11 15.401070 Anserini +test1920 Q0 19030874 12 15.242575 Anserini +test1920 Q0 12918858 13 15.200743 Anserini +test1920 Q0 19030873 14 15.077106 Anserini +test1920 Q0 4483260 15 14.657161 Anserini +test1920 Q0 19030886 16 14.369544 Anserini +test1920 Q0 19030876 17 14.369544 Anserini +test1920 Q0 8867755 18 14.303409 Anserini +test1920 Q0 19030882 19 14.251823 Anserini +test1920 Q0 16219716 20 14.190708 Anserini +test1920 Q0 19030878 21 14.144601 Anserini +test1920 Q0 16219717 22 14.079842 Anserini +test1920 Q0 19030879 23 14.079842 Anserini +test1920 Q0 19341268 24 14.029330 Anserini +test1920 Q0 3796338 25 13.841379 Anserini +test1920 Q0 19030888 26 13.174014 Anserini +test1920 Q0 19030872 27 13.174014 Anserini +test1920 Q0 17053646 28 13.017930 Anserini +test1920 Q0 16219715 29 12.975033 Anserini +test1920 Q0 19030880 30 12.975033 Anserini +test1921 Q0 5914430 1 20.904064 Anserini +test1921 Q0 5914435 2 20.759045 Anserini +test1921 Q0 18062908 3 20.511417 Anserini +test1921 Q0 5914433 4 19.727676 Anserini +test1921 Q0 5914431 5 18.852678 Anserini +test1921 Q0 5914434 6 18.701872 Anserini +test1921 Q0 5914432 7 17.731623 Anserini +test1921 Q0 18062907 8 17.099934 Anserini +test1921 Q0 4269424 9 16.918287 Anserini +test1921 Q0 2710179 10 16.678110 Anserini +test1921 Q0 2710180 11 16.678110 Anserini +test1921 Q0 10969055 12 15.588322 Anserini +test1921 Q0 19839082 13 15.381298 Anserini +test1921 Q0 12668381 14 14.999299 Anserini +test1921 Q0 5835244 15 14.989012 Anserini +test1921 Q0 9322545 16 14.775560 Anserini +test1921 Q0 4009806 17 14.659544 Anserini +test1921 Q0 210439 18 14.469872 Anserini +test1921 Q0 13818441 19 14.461078 Anserini +test1921 Q0 13818445 20 14.425029 Anserini +test1921 Q0 5625493 21 14.392988 Anserini +test1921 Q0 4009809 22 14.290737 Anserini +test1921 Q0 210456 23 14.220698 Anserini +test1921 Q0 8242274 24 14.188530 Anserini +test1921 Q0 8242272 25 14.188530 Anserini +test1921 Q0 9169505 26 14.188530 Anserini +test1921 Q0 1423240 27 14.188530 Anserini +test1921 Q0 11844618 28 14.096204 Anserini +test1921 Q0 20446313 29 14.091924 Anserini +test1921 Q0 2394141 30 14.052018 Anserini +test1922 Q0 1833887 1 10.429927 Anserini +test1922 Q0 13856762 2 10.039513 Anserini +test1922 Q0 3667761 3 9.978840 Anserini +test1922 Q0 20078737 4 9.524340 Anserini +test1922 Q0 165303 5 9.520357 Anserini +test1922 Q0 11321382 6 9.332249 Anserini +test1922 Q0 18459639 7 9.268236 Anserini +test1922 Q0 11448054 8 9.246977 Anserini +test1922 Q0 12801263 9 9.246977 Anserini +test1922 Q0 3667762 10 9.205790 Anserini +test1922 Q0 14448022 11 9.176412 Anserini +test1922 Q0 5014165 12 9.164835 Anserini +test1922 Q0 11448046 13 9.163310 Anserini +test1922 Q0 11524122 14 9.133966 Anserini +test1922 Q0 19817842 15 9.133966 Anserini +test1922 Q0 7523088 16 9.064619 Anserini +test1922 Q0 19489281 17 8.968727 Anserini +test1922 Q0 18233810 18 8.962976 Anserini +test1922 Q0 5014180 19 8.897008 Anserini +test1922 Q0 8935935 20 8.897008 Anserini +test1922 Q0 8854318 21 8.883339 Anserini +test1922 Q0 8791115 22 8.881159 Anserini +test1922 Q0 5014176 23 8.820875 Anserini +test1922 Q0 2230552 24 8.768897 Anserini +test1922 Q0 4055323 25 8.709405 Anserini +test1922 Q0 5045446 26 8.671552 Anserini +test1922 Q0 8791116 27 8.647494 Anserini +test1922 Q0 14936757 28 8.620170 Anserini +test1922 Q0 8829723 29 8.616094 Anserini +test1922 Q0 8829725 30 8.616094 Anserini +test1923 Q0 892207 1 19.922169 Anserini +test1923 Q0 892270 2 18.798983 Anserini +test1923 Q0 892254 3 18.744318 Anserini +test1923 Q0 892264 4 18.243946 Anserini +test1923 Q0 892251 5 18.235186 Anserini +test1923 Q0 892258 6 17.989447 Anserini +test1923 Q0 892269 7 17.890015 Anserini +test1923 Q0 892273 8 17.807653 Anserini +test1923 Q0 892274 9 17.777729 Anserini +test1923 Q0 892257 10 17.597231 Anserini +test1923 Q0 15596082 11 17.486498 Anserini +test1923 Q0 5303789 12 17.281651 Anserini +test1923 Q0 2729473 13 17.272308 Anserini +test1923 Q0 5303785 14 17.187197 Anserini +test1923 Q0 892211 15 16.928299 Anserini +test1923 Q0 892271 16 16.910206 Anserini +test1923 Q0 15118346 17 16.892977 Anserini +test1923 Q0 3727058 18 16.870760 Anserini +test1923 Q0 892246 19 16.863981 Anserini +test1923 Q0 892218 20 16.827719 Anserini +test1923 Q0 892209 21 16.748812 Anserini +test1923 Q0 6215742 22 16.748499 Anserini +test1923 Q0 3057126 23 16.692554 Anserini +test1923 Q0 1621345 24 16.625282 Anserini +test1923 Q0 892212 25 16.548872 Anserini +test1923 Q0 892266 26 16.396721 Anserini +test1923 Q0 3191928 27 16.376541 Anserini +test1923 Q0 1621344 28 16.355831 Anserini +test1923 Q0 892216 29 16.156401 Anserini +test1923 Q0 3256188 30 16.099333 Anserini +test1924 Q0 1829473 1 17.221912 Anserini +test1924 Q0 1829510 2 16.889740 Anserini +test1924 Q0 1829479 3 14.658033 Anserini +test1924 Q0 1829478 4 14.545378 Anserini +test1924 Q0 5997612 5 13.274087 Anserini +test1924 Q0 1829501 6 13.120718 Anserini +test1924 Q0 12830261 7 13.110684 Anserini +test1924 Q0 1829502 8 13.034109 Anserini +test1924 Q0 1829500 9 13.020859 Anserini +test1924 Q0 1829505 10 12.319719 Anserini +test1924 Q0 5997611 11 12.319719 Anserini +test1924 Q0 18040569 12 11.999602 Anserini +test1924 Q0 8342586 13 11.905829 Anserini +test1924 Q0 8342588 14 11.905829 Anserini +test1924 Q0 20360463 15 11.571855 Anserini +test1924 Q0 20360465 16 11.534524 Anserini +test1924 Q0 1829509 17 11.274955 Anserini +test1924 Q0 1829504 18 11.164628 Anserini +test1924 Q0 20146789 19 11.121991 Anserini +test1924 Q0 1829499 20 11.121945 Anserini +test1924 Q0 1829507 21 11.121945 Anserini +test1924 Q0 4272388 22 11.105185 Anserini +test1924 Q0 1829475 23 11.090169 Anserini +test1924 Q0 12722906 24 10.969578 Anserini +test1924 Q0 1829498 25 10.969578 Anserini +test1924 Q0 1829508 26 10.969578 Anserini +test1924 Q0 14533805 27 10.915694 Anserini +test1924 Q0 11146836 28 10.857282 Anserini +test1924 Q0 8151453 29 10.819693 Anserini +test1924 Q0 952218 30 10.779918 Anserini +test1925 Q0 12455248 1 10.398026 Anserini +test1925 Q0 14717109 2 10.169950 Anserini +test1925 Q0 13960772 3 10.057624 Anserini +test1925 Q0 12236581 4 9.896328 Anserini +test1925 Q0 2363109 5 9.837197 Anserini +test1925 Q0 2170760 6 9.794760 Anserini +test1925 Q0 2085901 7 9.688829 Anserini +test1925 Q0 11936251 8 9.667089 Anserini +test1925 Q0 6297138 9 9.625332 Anserini +test1925 Q0 12818882 10 9.540707 Anserini +test1925 Q0 11389731 11 9.488369 Anserini +test1925 Q0 9295640 12 9.434563 Anserini +test1925 Q0 10941002 13 9.392093 Anserini +test1925 Q0 2144179 14 9.346687 Anserini +test1925 Q0 17552732 15 9.346687 Anserini +test1925 Q0 1419248 16 9.296439 Anserini +test1925 Q0 18764327 17 9.289387 Anserini +test1925 Q0 1530295 18 9.251876 Anserini +test1925 Q0 6186339 19 9.202024 Anserini +test1925 Q0 3349335 20 9.191594 Anserini +test1925 Q0 19303818 21 9.180194 Anserini +test1925 Q0 2351941 22 9.156343 Anserini +test1925 Q0 4477845 23 9.115260 Anserini +test1925 Q0 3165075 24 9.109579 Anserini +test1925 Q0 8508034 25 9.087929 Anserini +test1925 Q0 14060240 26 9.043199 Anserini +test1925 Q0 16342806 27 9.040300 Anserini +test1925 Q0 1564996 28 8.970895 Anserini +test1925 Q0 19469475 29 8.966353 Anserini +test1925 Q0 19546561 30 8.954987 Anserini +test1926 Q0 16691982 1 13.276901 Anserini +test1926 Q0 16488947 2 12.476685 Anserini +test1926 Q0 14111341 3 11.781540 Anserini +test1926 Q0 19530210 4 11.664635 Anserini +test1926 Q0 6773059 5 11.411209 Anserini +test1926 Q0 1589131 6 11.328798 Anserini +test1926 Q0 8025837 7 11.043317 Anserini +test1926 Q0 7323604 8 10.974159 Anserini +test1926 Q0 5830287 9 10.974159 Anserini +test1926 Q0 17419850 10 10.974159 Anserini +test1926 Q0 11576979 11 10.769737 Anserini +test1926 Q0 2154460 12 10.755389 Anserini +test1926 Q0 16691983 13 10.733076 Anserini +test1926 Q0 9556463 14 10.590560 Anserini +test1926 Q0 755268 15 10.590560 Anserini +test1926 Q0 15414752 16 10.518476 Anserini +test1926 Q0 15414772 17 10.518476 Anserini +test1926 Q0 666058 18 10.463371 Anserini +test1926 Q0 6773011 19 10.414415 Anserini +test1926 Q0 5594596 20 10.215567 Anserini +test1926 Q0 3045473 21 10.118513 Anserini +test1926 Q0 20666021 22 10.072472 Anserini +test1926 Q0 3398302 23 9.915771 Anserini +test1926 Q0 16460395 24 9.911604 Anserini +test1926 Q0 5541128 25 9.835419 Anserini +test1926 Q0 8358006 26 9.808060 Anserini +test1926 Q0 11633196 27 9.729654 Anserini +test1926 Q0 17711865 28 9.718876 Anserini +test1926 Q0 13025031 29 9.692442 Anserini +test1926 Q0 6712561 30 9.676189 Anserini +test1927 Q0 4895638 1 14.985476 Anserini +test1927 Q0 14829403 2 14.694208 Anserini +test1927 Q0 658812 3 14.632517 Anserini +test1927 Q0 11886118 4 13.946603 Anserini +test1927 Q0 459679 5 13.931849 Anserini +test1927 Q0 2500111 6 13.773137 Anserini +test1927 Q0 11793397 7 13.524877 Anserini +test1927 Q0 2733126 8 13.378884 Anserini +test1927 Q0 5295349 9 13.311662 Anserini +test1927 Q0 2480144 10 13.115355 Anserini +test1927 Q0 705077 11 13.011952 Anserini +test1927 Q0 6760056 12 13.004929 Anserini +test1927 Q0 1426935 13 12.995956 Anserini +test1927 Q0 2500276 14 12.797742 Anserini +test1927 Q0 13721922 15 12.627424 Anserini +test1927 Q0 2356695 16 12.627424 Anserini +test1927 Q0 2314850 17 12.619762 Anserini +test1927 Q0 4895667 18 12.577902 Anserini +test1927 Q0 2500226 19 12.561512 Anserini +test1927 Q0 6349989 20 12.551353 Anserini +test1927 Q0 6831440 21 12.485287 Anserini +test1927 Q0 10297665 22 12.428813 Anserini +test1927 Q0 2500106 23 12.423057 Anserini +test1927 Q0 6261976 24 12.319316 Anserini +test1927 Q0 1269285 25 12.302579 Anserini +test1927 Q0 11793393 26 12.249602 Anserini +test1927 Q0 4884660 27 12.243449 Anserini +test1927 Q0 864009 28 12.216894 Anserini +test1927 Q0 6261977 29 12.215446 Anserini +test1927 Q0 9165839 30 12.205899 Anserini +test1928 Q0 12553515 1 16.743692 Anserini +test1928 Q0 2802423 2 16.306334 Anserini +test1928 Q0 11095629 3 15.621344 Anserini +test1928 Q0 11095630 4 15.134738 Anserini +test1928 Q0 120076 5 15.103842 Anserini +test1928 Q0 17611458 6 14.955046 Anserini +test1928 Q0 11716172 7 14.933184 Anserini +test1928 Q0 12553516 8 14.736034 Anserini +test1928 Q0 12941436 9 13.869558 Anserini +test1928 Q0 16002942 10 13.788979 Anserini +test1928 Q0 2381504 11 13.664373 Anserini +test1928 Q0 7842461 12 13.652683 Anserini +test1928 Q0 9660789 13 13.558876 Anserini +test1928 Q0 6788554 14 13.436082 Anserini +test1928 Q0 190083 15 13.303415 Anserini +test1928 Q0 11716146 16 13.188206 Anserini +test1928 Q0 356859 17 13.156803 Anserini +test1928 Q0 19642937 18 13.053043 Anserini +test1928 Q0 72506 19 13.014225 Anserini +test1928 Q0 7548015 20 13.014026 Anserini +test1928 Q0 3192749 21 13.002008 Anserini +test1928 Q0 8627078 22 12.993464 Anserini +test1928 Q0 671435 23 12.919310 Anserini +test1928 Q0 12592253 24 12.911798 Anserini +test1928 Q0 1919393 25 12.851035 Anserini +test1928 Q0 18045707 26 12.792154 Anserini +test1928 Q0 6075672 27 12.778353 Anserini +test1928 Q0 357021 28 12.775510 Anserini +test1928 Q0 5716291 29 12.765639 Anserini +test1928 Q0 12937424 30 12.764922 Anserini +test1929 Q0 20964266 1 11.807177 Anserini +test1929 Q0 20964269 2 11.263361 Anserini +test1929 Q0 16891293 3 11.142702 Anserini +test1929 Q0 16891292 4 11.058269 Anserini +test1929 Q0 20964268 5 11.002075 Anserini +test1929 Q0 15683659 6 10.908958 Anserini +test1929 Q0 15683660 7 10.908958 Anserini +test1929 Q0 15683663 8 10.841062 Anserini +test1929 Q0 15683676 9 10.549818 Anserini +test1929 Q0 15683686 10 10.456491 Anserini +test1929 Q0 17194306 11 10.378746 Anserini +test1929 Q0 3814939 12 10.370855 Anserini +test1929 Q0 2546972 13 10.326737 Anserini +test1929 Q0 15683675 14 10.232770 Anserini +test1929 Q0 15683692 15 10.230075 Anserini +test1929 Q0 15683696 16 10.206997 Anserini +test1929 Q0 10836449 17 10.110722 Anserini +test1929 Q0 20129021 18 9.996254 Anserini +test1929 Q0 13560639 19 9.959743 Anserini +test1929 Q0 15683685 20 9.893436 Anserini +test1929 Q0 15683666 21 9.885591 Anserini +test1929 Q0 15683661 22 9.848938 Anserini +test1929 Q0 13226879 23 9.839939 Anserini +test1929 Q0 6225006 24 9.618554 Anserini +test1929 Q0 15683693 25 9.603765 Anserini +test1929 Q0 16968525 26 9.555304 Anserini +test1929 Q0 15683665 27 9.522679 Anserini +test1929 Q0 8798445 28 9.500974 Anserini +test1929 Q0 2895073 29 9.466068 Anserini +test1929 Q0 15608338 30 9.463238 Anserini +test193 Q0 3337220 1 16.282154 Anserini +test193 Q0 3337235 2 16.165155 Anserini +test193 Q0 4266606 3 14.969409 Anserini +test193 Q0 11798607 4 14.597002 Anserini +test193 Q0 12211911 5 14.546436 Anserini +test193 Q0 5156687 6 14.513330 Anserini +test193 Q0 1618932 7 14.370691 Anserini +test193 Q0 6533612 8 14.338358 Anserini +test193 Q0 11798614 9 14.220484 Anserini +test193 Q0 1618994 10 14.104360 Anserini +test193 Q0 3519619 11 14.080087 Anserini +test193 Q0 1618923 12 13.832051 Anserini +test193 Q0 15196760 13 13.674245 Anserini +test193 Q0 11198422 14 13.665846 Anserini +test193 Q0 11798624 15 13.552515 Anserini +test193 Q0 15618773 16 13.483980 Anserini +test193 Q0 15618783 17 13.483980 Anserini +test193 Q0 5733940 18 13.476954 Anserini +test193 Q0 7452477 19 13.399627 Anserini +test193 Q0 1903206 20 13.354292 Anserini +test193 Q0 4724270 21 13.323536 Anserini +test193 Q0 9350181 22 13.313405 Anserini +test193 Q0 15695483 23 13.289845 Anserini +test193 Q0 3778364 24 13.276861 Anserini +test193 Q0 8092268 25 13.261305 Anserini +test193 Q0 4817506 26 13.253813 Anserini +test193 Q0 6533616 27 13.235974 Anserini +test193 Q0 12574953 28 13.198983 Anserini +test193 Q0 11798627 29 13.198616 Anserini +test193 Q0 1618926 30 13.172510 Anserini +test1930 Q0 6427200 1 17.275356 Anserini +test1930 Q0 380171 2 16.773611 Anserini +test1930 Q0 3500290 3 16.555820 Anserini +test1930 Q0 3141329 4 15.536876 Anserini +test1930 Q0 1659809 5 15.137943 Anserini +test1930 Q0 6426932 6 15.074844 Anserini +test1930 Q0 8592912 7 14.885740 Anserini +test1930 Q0 16392306 8 14.643564 Anserini +test1930 Q0 5628222 9 14.595804 Anserini +test1930 Q0 5877503 10 14.563639 Anserini +test1930 Q0 12394175 11 14.543967 Anserini +test1930 Q0 14569890 12 14.502977 Anserini +test1930 Q0 7510360 13 14.448632 Anserini +test1930 Q0 12238926 14 14.345516 Anserini +test1930 Q0 2584505 15 14.125626 Anserini +test1930 Q0 12097228 16 14.110510 Anserini +test1930 Q0 19057536 17 14.105278 Anserini +test1930 Q0 14569886 18 14.073494 Anserini +test1930 Q0 15939456 19 14.065499 Anserini +test1930 Q0 5803087 20 14.040642 Anserini +test1930 Q0 15329543 21 14.026423 Anserini +test1930 Q0 17469479 22 14.017864 Anserini +test1930 Q0 559807 23 13.915148 Anserini +test1930 Q0 14339802 24 13.718370 Anserini +test1930 Q0 13857575 25 13.682790 Anserini +test1930 Q0 17731869 26 13.660578 Anserini +test1930 Q0 17256426 27 13.596423 Anserini +test1930 Q0 12109671 28 13.577603 Anserini +test1930 Q0 2029310 29 13.576412 Anserini +test1930 Q0 15147077 30 13.520436 Anserini +test1931 Q0 11322472 1 16.531202 Anserini +test1931 Q0 8845858 2 16.495321 Anserini +test1931 Q0 7012111 3 16.417774 Anserini +test1931 Q0 11449830 4 16.409883 Anserini +test1931 Q0 10002025 5 16.405907 Anserini +test1931 Q0 9407681 6 16.381737 Anserini +test1931 Q0 9407680 7 16.302195 Anserini +test1931 Q0 20526053 8 16.222269 Anserini +test1931 Q0 20526052 9 16.216669 Anserini +test1931 Q0 15613746 10 16.183834 Anserini +test1931 Q0 5571953 11 16.156225 Anserini +test1931 Q0 9977083 12 16.055946 Anserini +test1931 Q0 6788631 13 16.015978 Anserini +test1931 Q0 11923056 14 15.993996 Anserini +test1931 Q0 17915181 15 15.879745 Anserini +test1931 Q0 6837542 16 15.878249 Anserini +test1931 Q0 9269536 17 15.832728 Anserini +test1931 Q0 11729971 18 15.823199 Anserini +test1931 Q0 6848646 19 15.800262 Anserini +test1931 Q0 233108 20 15.679708 Anserini +test1931 Q0 3623503 21 15.675574 Anserini +test1931 Q0 17843837 22 15.579007 Anserini +test1931 Q0 11001532 23 15.555003 Anserini +test1931 Q0 9246552 24 15.542044 Anserini +test1931 Q0 16313480 25 15.535154 Anserini +test1931 Q0 3591690 26 15.474788 Anserini +test1931 Q0 16313479 27 15.460490 Anserini +test1931 Q0 9294529 28 15.410896 Anserini +test1931 Q0 12238525 29 15.398385 Anserini +test1931 Q0 3633557 30 15.372640 Anserini +test1932 Q0 5966045 1 13.611715 Anserini +test1932 Q0 8074380 2 13.435036 Anserini +test1932 Q0 3235972 3 13.381684 Anserini +test1932 Q0 7204776 4 13.236290 Anserini +test1932 Q0 18255236 5 13.072759 Anserini +test1932 Q0 15070315 6 13.069783 Anserini +test1932 Q0 15070314 7 12.861952 Anserini +test1932 Q0 7204763 8 12.745169 Anserini +test1932 Q0 8074379 9 12.654354 Anserini +test1932 Q0 4626642 10 12.639271 Anserini +test1932 Q0 16563621 11 12.623011 Anserini +test1932 Q0 1344315 12 12.515282 Anserini +test1932 Q0 4626646 13 12.458961 Anserini +test1932 Q0 7204774 14 12.418930 Anserini +test1932 Q0 7204775 15 12.283404 Anserini +test1932 Q0 4626640 16 12.151677 Anserini +test1932 Q0 5966087 17 11.995442 Anserini +test1932 Q0 7204772 18 11.914017 Anserini +test1932 Q0 13813710 19 11.884338 Anserini +test1932 Q0 12677622 20 11.704358 Anserini +test1932 Q0 10803082 21 11.676354 Anserini +test1932 Q0 19069255 22 11.576977 Anserini +test1932 Q0 1418060 23 11.576977 Anserini +test1932 Q0 9203450 24 11.523826 Anserini +test1932 Q0 3772310 25 11.503423 Anserini +test1932 Q0 170672 26 11.492646 Anserini +test1932 Q0 12258581 27 11.490520 Anserini +test1932 Q0 8745681 28 11.464534 Anserini +test1932 Q0 5316386 29 11.462765 Anserini +test1932 Q0 9988166 30 11.435673 Anserini +test1933 Q0 331341 1 11.903500 Anserini +test1933 Q0 331332 2 11.850060 Anserini +test1933 Q0 331338 3 11.709834 Anserini +test1933 Q0 331312 4 11.085922 Anserini +test1933 Q0 331313 5 11.024818 Anserini +test1933 Q0 20258725 6 10.779503 Anserini +test1933 Q0 331351 7 10.716421 Anserini +test1933 Q0 2436188 8 10.434587 Anserini +test1933 Q0 331330 9 10.401728 Anserini +test1933 Q0 11223952 10 10.366038 Anserini +test1933 Q0 3140077 11 10.361868 Anserini +test1933 Q0 1673807 12 10.088811 Anserini +test1933 Q0 331340 13 10.055738 Anserini +test1933 Q0 1873663 14 10.003141 Anserini +test1933 Q0 16600565 15 9.987722 Anserini +test1933 Q0 4479289 16 9.876831 Anserini +test1933 Q0 4479312 17 9.876831 Anserini +test1933 Q0 331337 18 9.839655 Anserini +test1933 Q0 1419873 19 9.832154 Anserini +test1933 Q0 61377 20 9.822809 Anserini +test1933 Q0 6208003 21 9.651825 Anserini +test1933 Q0 679040 22 9.589705 Anserini +test1933 Q0 13632364 23 9.550970 Anserini +test1933 Q0 19776890 24 9.509775 Anserini +test1933 Q0 331331 25 9.409226 Anserini +test1933 Q0 2818909 26 9.347254 Anserini +test1933 Q0 331333 27 9.344915 Anserini +test1933 Q0 34666 28 9.303556 Anserini +test1933 Q0 874334 29 9.229443 Anserini +test1933 Q0 16320409 30 9.154853 Anserini +test1934 Q0 15950260 1 17.950054 Anserini +test1934 Q0 1848150 2 17.695793 Anserini +test1934 Q0 15950259 3 17.679220 Anserini +test1934 Q0 5495556 4 16.895401 Anserini +test1934 Q0 1848171 5 16.712545 Anserini +test1934 Q0 1848176 6 16.355934 Anserini +test1934 Q0 1848148 7 16.293392 Anserini +test1934 Q0 1848172 8 15.974398 Anserini +test1934 Q0 1848161 9 15.966206 Anserini +test1934 Q0 1848151 10 15.707676 Anserini +test1934 Q0 4842236 11 15.631226 Anserini +test1934 Q0 6261977 12 15.565186 Anserini +test1934 Q0 1848165 13 15.495904 Anserini +test1934 Q0 1848147 14 15.428875 Anserini +test1934 Q0 1848170 15 15.321430 Anserini +test1934 Q0 1848149 16 15.215780 Anserini +test1934 Q0 1848173 17 15.053514 Anserini +test1934 Q0 1848178 18 14.846191 Anserini +test1934 Q0 1848152 19 14.831325 Anserini +test1934 Q0 6261976 20 14.574085 Anserini +test1934 Q0 1848162 21 14.573896 Anserini +test1934 Q0 1848168 22 14.492336 Anserini +test1934 Q0 8020725 23 14.490649 Anserini +test1934 Q0 13659846 24 14.490649 Anserini +test1934 Q0 13659847 25 14.490649 Anserini +test1934 Q0 15887832 26 14.485470 Anserini +test1934 Q0 1848159 27 14.460057 Anserini +test1934 Q0 1848181 28 14.333246 Anserini +test1934 Q0 9086557 29 14.234491 Anserini +test1934 Q0 10123482 30 14.166681 Anserini +test1935 Q0 19750793 1 17.960331 Anserini +test1935 Q0 19750816 2 17.960331 Anserini +test1935 Q0 1657413 3 17.660938 Anserini +test1935 Q0 1657414 4 17.614408 Anserini +test1935 Q0 19750794 5 17.597063 Anserini +test1935 Q0 3686259 6 17.523428 Anserini +test1935 Q0 3686246 7 17.469505 Anserini +test1935 Q0 19750804 8 17.438623 Anserini +test1935 Q0 19750802 9 17.292843 Anserini +test1935 Q0 1657405 10 17.174026 Anserini +test1935 Q0 3686256 11 17.163898 Anserini +test1935 Q0 1657419 12 17.126633 Anserini +test1935 Q0 13403400 13 17.077950 Anserini +test1935 Q0 13403404 14 17.015564 Anserini +test1935 Q0 19750806 15 17.015564 Anserini +test1935 Q0 1657422 16 16.901831 Anserini +test1935 Q0 20443669 17 16.734972 Anserini +test1935 Q0 19750805 18 16.487885 Anserini +test1935 Q0 1657417 19 16.422295 Anserini +test1935 Q0 1657407 20 16.419666 Anserini +test1935 Q0 19750808 21 16.357090 Anserini +test1935 Q0 20443671 22 16.348478 Anserini +test1935 Q0 3686254 23 16.078671 Anserini +test1935 Q0 19750814 24 15.817348 Anserini +test1935 Q0 3686255 25 15.761726 Anserini +test1935 Q0 13403403 26 15.702470 Anserini +test1935 Q0 15602734 27 15.680475 Anserini +test1935 Q0 19750812 28 15.677325 Anserini +test1935 Q0 1657411 29 15.632447 Anserini +test1935 Q0 19750803 30 15.404844 Anserini +test1936 Q0 18218704 1 13.026196 Anserini +test1936 Q0 18218705 2 13.000977 Anserini +test1936 Q0 19093800 3 11.669396 Anserini +test1936 Q0 5571990 4 11.492162 Anserini +test1936 Q0 19406378 5 11.342060 Anserini +test1936 Q0 7445151 6 11.191960 Anserini +test1936 Q0 803565 7 10.944420 Anserini +test1936 Q0 9756392 8 10.909586 Anserini +test1936 Q0 803826 9 10.855548 Anserini +test1936 Q0 4476002 10 10.715723 Anserini +test1936 Q0 802835 11 10.649698 Anserini +test1936 Q0 18278429 12 10.554761 Anserini +test1936 Q0 5014362 13 10.449978 Anserini +test1936 Q0 19423220 14 10.403189 Anserini +test1936 Q0 5014367 15 10.346857 Anserini +test1936 Q0 2220337 16 10.335306 Anserini +test1936 Q0 20174151 17 10.327995 Anserini +test1936 Q0 12159664 18 10.321365 Anserini +test1936 Q0 20108736 19 10.285891 Anserini +test1936 Q0 802942 20 10.244761 Anserini +test1936 Q0 9461672 21 10.236053 Anserini +test1936 Q0 5803558 22 10.141212 Anserini +test1936 Q0 18553709 23 10.057464 Anserini +test1936 Q0 3027520 24 10.043563 Anserini +test1936 Q0 12714389 25 10.041336 Anserini +test1936 Q0 9793465 26 9.996164 Anserini +test1936 Q0 20178741 27 9.953267 Anserini +test1936 Q0 12446798 28 9.943087 Anserini +test1936 Q0 13712082 29 9.926321 Anserini +test1936 Q0 3253473 30 9.874454 Anserini +test1937 Q0 1052555 1 14.888308 Anserini +test1937 Q0 8623943 2 14.632715 Anserini +test1937 Q0 9263359 3 14.622182 Anserini +test1937 Q0 20170374 4 14.558337 Anserini +test1937 Q0 15997930 5 14.364781 Anserini +test1937 Q0 7630896 6 14.215360 Anserini +test1937 Q0 15997897 7 14.188622 Anserini +test1937 Q0 7057195 8 14.173806 Anserini +test1937 Q0 18936370 9 14.167019 Anserini +test1937 Q0 12066194 10 14.158642 Anserini +test1937 Q0 4623620 11 14.123528 Anserini +test1937 Q0 5108823 12 14.097354 Anserini +test1937 Q0 4455455 13 14.055870 Anserini +test1937 Q0 13027919 14 14.051291 Anserini +test1937 Q0 9462011 15 14.026309 Anserini +test1937 Q0 6323216 16 14.015587 Anserini +test1937 Q0 4455459 17 13.988163 Anserini +test1937 Q0 2599724 18 13.879188 Anserini +test1937 Q0 18777279 19 13.834766 Anserini +test1937 Q0 20647050 20 13.780277 Anserini +test1937 Q0 20531629 21 13.760691 Anserini +test1937 Q0 3373605 22 13.720848 Anserini +test1937 Q0 1052688 23 13.711731 Anserini +test1937 Q0 11135207 24 13.631587 Anserini +test1937 Q0 7653001 25 13.574136 Anserini +test1937 Q0 8677029 26 13.433794 Anserini +test1937 Q0 4455461 27 13.383296 Anserini +test1937 Q0 18936363 28 13.313031 Anserini +test1937 Q0 3390464 29 13.292952 Anserini +test1937 Q0 9462033 30 13.268359 Anserini +test1938 Q0 19106865 1 12.485854 Anserini +test1938 Q0 19758079 2 12.378796 Anserini +test1938 Q0 20247147 3 12.162994 Anserini +test1938 Q0 16382192 4 11.944079 Anserini +test1938 Q0 17162655 5 11.382458 Anserini +test1938 Q0 18817968 6 11.051235 Anserini +test1938 Q0 16382212 7 11.014008 Anserini +test1938 Q0 18094418 8 10.977675 Anserini +test1938 Q0 16382201 9 10.817255 Anserini +test1938 Q0 10827207 10 10.709228 Anserini +test1938 Q0 17485795 11 10.653775 Anserini +test1938 Q0 10827205 12 10.613571 Anserini +test1938 Q0 12550113 13 10.599928 Anserini +test1938 Q0 17485846 14 10.599167 Anserini +test1938 Q0 18580006 15 10.590383 Anserini +test1938 Q0 20001594 16 10.531322 Anserini +test1938 Q0 17485802 17 10.511913 Anserini +test1938 Q0 18817962 18 10.472849 Anserini +test1938 Q0 17485824 19 10.444177 Anserini +test1938 Q0 16382213 20 10.429399 Anserini +test1938 Q0 14279045 21 10.425499 Anserini +test1938 Q0 17185430 22 10.417308 Anserini +test1938 Q0 2946780 23 10.390156 Anserini +test1938 Q0 17162653 24 10.379488 Anserini +test1938 Q0 16382180 25 10.320183 Anserini +test1938 Q0 19225307 26 10.262921 Anserini +test1938 Q0 16382197 27 10.183529 Anserini +test1938 Q0 17422622 28 10.160766 Anserini +test1938 Q0 17422638 29 10.160766 Anserini +test1938 Q0 14279050 30 10.090847 Anserini +test1939 Q0 6309954 1 30.123878 Anserini +test1939 Q0 6309958 2 26.021473 Anserini +test1939 Q0 6309953 3 25.715277 Anserini +test1939 Q0 11013183 4 24.267395 Anserini +test1939 Q0 15068684 5 24.251833 Anserini +test1939 Q0 2088524 6 23.134916 Anserini +test1939 Q0 737967 7 23.036045 Anserini +test1939 Q0 6702968 8 22.366053 Anserini +test1939 Q0 10754005 9 21.889843 Anserini +test1939 Q0 11013191 10 21.418682 Anserini +test1939 Q0 11013181 11 21.301622 Anserini +test1939 Q0 2088519 12 21.283831 Anserini +test1939 Q0 251333 13 20.103868 Anserini +test1939 Q0 6456199 14 19.675556 Anserini +test1939 Q0 2088512 15 19.526566 Anserini +test1939 Q0 15015776 16 19.386494 Anserini +test1939 Q0 1380522 17 19.341993 Anserini +test1939 Q0 2088529 18 19.292753 Anserini +test1939 Q0 5835662 19 19.187775 Anserini +test1939 Q0 1292941 20 19.013649 Anserini +test1939 Q0 5981335 21 18.996391 Anserini +test1939 Q0 1831151 22 18.862503 Anserini +test1939 Q0 1292942 23 18.756718 Anserini +test1939 Q0 1292946 24 18.679398 Anserini +test1939 Q0 5407973 25 18.633774 Anserini +test1939 Q0 278134 26 18.630735 Anserini +test1939 Q0 13708327 27 18.602556 Anserini +test1939 Q0 6309956 28 18.498112 Anserini +test1939 Q0 2678824 29 18.469238 Anserini +test1939 Q0 9346288 30 18.438261 Anserini +test194 Q0 5958590 1 19.644133 Anserini +test194 Q0 13210089 2 19.498995 Anserini +test194 Q0 3650598 3 19.286812 Anserini +test194 Q0 478864 4 19.271477 Anserini +test194 Q0 478868 5 19.064354 Anserini +test194 Q0 15357665 6 19.056355 Anserini +test194 Q0 4546501 7 18.923384 Anserini +test194 Q0 4546508 8 18.923384 Anserini +test194 Q0 13703706 9 18.895109 Anserini +test194 Q0 5962237 10 18.836681 Anserini +test194 Q0 5958597 11 18.813313 Anserini +test194 Q0 5962126 12 18.798084 Anserini +test194 Q0 5956098 13 18.784704 Anserini +test194 Q0 5958595 14 18.594311 Anserini +test194 Q0 5962124 15 18.589314 Anserini +test194 Q0 20648740 16 18.582422 Anserini +test194 Q0 13210077 17 18.579704 Anserini +test194 Q0 478892 18 18.548710 Anserini +test194 Q0 4064093 19 18.542845 Anserini +test194 Q0 4063992 20 18.414112 Anserini +test194 Q0 478870 21 18.393751 Anserini +test194 Q0 5962127 22 18.355774 Anserini +test194 Q0 7665474 23 18.235027 Anserini +test194 Q0 4546505 24 18.181917 Anserini +test194 Q0 5958593 25 18.152615 Anserini +test194 Q0 5959437 26 18.121126 Anserini +test194 Q0 5958594 27 18.110126 Anserini +test194 Q0 478891 28 18.094315 Anserini +test194 Q0 3673341 29 17.932158 Anserini +test194 Q0 5966521 30 17.906105 Anserini +test1940 Q0 19540867 1 9.835185 Anserini +test1940 Q0 18061025 2 9.345914 Anserini +test1940 Q0 14911656 3 9.247530 Anserini +test1940 Q0 14758362 4 9.227983 Anserini +test1940 Q0 18133874 5 9.219309 Anserini +test1940 Q0 15151257 6 9.177374 Anserini +test1940 Q0 12376980 7 9.073461 Anserini +test1940 Q0 20227721 8 9.025379 Anserini +test1940 Q0 2336751 9 8.925694 Anserini +test1940 Q0 2428126 10 8.820069 Anserini +test1940 Q0 5454111 11 8.731607 Anserini +test1940 Q0 17592114 12 8.662005 Anserini +test1940 Q0 10265239 13 8.657167 Anserini +test1940 Q0 193175 14 8.634540 Anserini +test1940 Q0 8493240 15 8.624358 Anserini +test1940 Q0 8583273 16 8.538722 Anserini +test1940 Q0 7283182 17 8.507364 Anserini +test1940 Q0 15473202 18 8.487527 Anserini +test1940 Q0 19643061 19 8.458316 Anserini +test1940 Q0 11800924 20 8.442568 Anserini +test1940 Q0 10956565 21 8.424140 Anserini +test1940 Q0 11596678 22 8.385928 Anserini +test1940 Q0 20107404 23 8.364945 Anserini +test1940 Q0 16369081 24 8.345283 Anserini +test1940 Q0 8915348 25 8.345283 Anserini +test1940 Q0 18565103 26 8.317624 Anserini +test1940 Q0 15522982 27 8.298115 Anserini +test1940 Q0 1806151 28 8.284732 Anserini +test1940 Q0 18909268 29 8.267229 Anserini +test1940 Q0 10581258 30 8.238503 Anserini +test1941 Q0 2539604 1 11.494721 Anserini +test1941 Q0 13386775 2 11.252990 Anserini +test1941 Q0 8553980 3 10.356111 Anserini +test1941 Q0 11743750 4 10.325935 Anserini +test1941 Q0 18306656 5 10.216370 Anserini +test1941 Q0 6324070 6 10.054791 Anserini +test1941 Q0 15641904 7 9.817151 Anserini +test1941 Q0 7507881 8 9.813405 Anserini +test1941 Q0 3614573 9 9.805724 Anserini +test1941 Q0 7956359 10 9.730922 Anserini +test1941 Q0 10169495 11 9.692278 Anserini +test1941 Q0 2519307 12 9.625543 Anserini +test1941 Q0 15641901 13 9.432883 Anserini +test1941 Q0 1553420 14 9.428608 Anserini +test1941 Q0 7507879 15 9.357686 Anserini +test1941 Q0 16560877 16 9.354589 Anserini +test1941 Q0 7507883 17 9.277327 Anserini +test1941 Q0 13738531 18 9.235669 Anserini +test1941 Q0 9469034 19 9.184083 Anserini +test1941 Q0 9025147 20 9.175056 Anserini +test1941 Q0 10483477 21 9.123365 Anserini +test1941 Q0 11958887 22 9.099992 Anserini +test1941 Q0 11226519 23 9.042578 Anserini +test1941 Q0 16894409 24 8.993672 Anserini +test1941 Q0 20389720 25 8.961717 Anserini +test1941 Q0 8553983 26 8.877315 Anserini +test1941 Q0 11780237 27 8.784840 Anserini +test1941 Q0 13181380 28 8.776554 Anserini +test1941 Q0 8495517 29 8.763006 Anserini +test1941 Q0 2539600 30 8.754884 Anserini +test1942 Q0 18246576 1 26.268480 Anserini +test1942 Q0 18246583 2 21.857285 Anserini +test1942 Q0 9999163 3 20.981686 Anserini +test1942 Q0 18246580 4 19.745752 Anserini +test1942 Q0 18506223 5 19.015190 Anserini +test1942 Q0 9999147 6 18.532452 Anserini +test1942 Q0 17140458 7 18.452980 Anserini +test1942 Q0 9999169 8 17.880062 Anserini +test1942 Q0 9999148 9 17.685188 Anserini +test1942 Q0 17533538 10 17.468197 Anserini +test1942 Q0 17533539 11 17.369341 Anserini +test1942 Q0 20040000 12 17.361313 Anserini +test1942 Q0 20039992 13 17.361313 Anserini +test1942 Q0 17140456 14 17.014103 Anserini +test1942 Q0 17533545 15 16.028671 Anserini +test1942 Q0 18506229 16 16.028671 Anserini +test1942 Q0 9999167 17 16.028671 Anserini +test1942 Q0 20038704 18 15.811789 Anserini +test1942 Q0 17533542 19 15.717010 Anserini +test1942 Q0 18246581 20 15.677935 Anserini +test1942 Q0 18246582 21 15.541252 Anserini +test1942 Q0 7269636 22 15.157568 Anserini +test1942 Q0 18506227 23 14.854735 Anserini +test1942 Q0 9999164 24 14.808344 Anserini +test1942 Q0 20038700 25 14.782906 Anserini +test1942 Q0 7269635 26 14.566221 Anserini +test1942 Q0 20039999 27 14.410930 Anserini +test1942 Q0 18246579 28 14.338809 Anserini +test1942 Q0 18246577 29 14.187864 Anserini +test1942 Q0 18246578 30 13.895310 Anserini +test1943 Q0 377595 1 14.690495 Anserini +test1943 Q0 495586 2 14.495155 Anserini +test1943 Q0 3861470 3 14.370403 Anserini +test1943 Q0 8226976 4 14.344788 Anserini +test1943 Q0 8488282 5 14.194684 Anserini +test1943 Q0 5049126 6 14.092406 Anserini +test1943 Q0 15051813 7 14.040405 Anserini +test1943 Q0 6865501 8 13.984221 Anserini +test1943 Q0 15051815 9 13.914524 Anserini +test1943 Q0 2809323 10 13.914409 Anserini +test1943 Q0 2733726 11 13.884081 Anserini +test1943 Q0 20587399 12 13.803853 Anserini +test1943 Q0 1541213 13 13.787831 Anserini +test1943 Q0 8017566 14 13.749703 Anserini +test1943 Q0 6865494 15 13.730378 Anserini +test1943 Q0 495617 16 13.699564 Anserini +test1943 Q0 3185368 17 13.686634 Anserini +test1943 Q0 11148445 18 13.665428 Anserini +test1943 Q0 7100243 19 13.619942 Anserini +test1943 Q0 9118563 20 13.607875 Anserini +test1943 Q0 2809402 21 13.595114 Anserini +test1943 Q0 5444186 22 13.564098 Anserini +test1943 Q0 17678713 23 13.534431 Anserini +test1943 Q0 10631223 24 13.501587 Anserini +test1943 Q0 5444178 25 13.488443 Anserini +test1943 Q0 2872779 26 13.485725 Anserini +test1943 Q0 1527347 27 13.476708 Anserini +test1943 Q0 15119927 28 13.459277 Anserini +test1943 Q0 4670002 29 13.442088 Anserini +test1943 Q0 5072533 30 13.440497 Anserini +test1944 Q0 12898356 1 23.004318 Anserini +test1944 Q0 18901182 2 21.532427 Anserini +test1944 Q0 18901180 3 21.421436 Anserini +test1944 Q0 12898353 4 19.948759 Anserini +test1944 Q0 16088957 5 19.638355 Anserini +test1944 Q0 12898352 6 19.478029 Anserini +test1944 Q0 12898355 7 19.242901 Anserini +test1944 Q0 1993332 8 19.180761 Anserini +test1944 Q0 12898354 9 19.104256 Anserini +test1944 Q0 1993335 10 19.103943 Anserini +test1944 Q0 1993315 11 19.049685 Anserini +test1944 Q0 1993319 12 18.787415 Anserini +test1944 Q0 659831 13 18.294685 Anserini +test1944 Q0 4728534 14 17.852201 Anserini +test1944 Q0 5384230 15 17.746822 Anserini +test1944 Q0 7776257 16 17.449078 Anserini +test1944 Q0 19018206 17 17.434765 Anserini +test1944 Q0 10838647 18 17.343601 Anserini +test1944 Q0 13357486 19 17.285486 Anserini +test1944 Q0 16995230 20 17.155380 Anserini +test1944 Q0 3087108 21 16.941687 Anserini +test1944 Q0 5904600 22 16.828501 Anserini +test1944 Q0 6511076 23 16.514238 Anserini +test1944 Q0 18815504 24 16.455505 Anserini +test1944 Q0 4790266 25 16.429882 Anserini +test1944 Q0 18796069 26 16.234888 Anserini +test1944 Q0 6452506 27 16.231604 Anserini +test1944 Q0 17006818 28 16.189360 Anserini +test1944 Q0 18096733 29 15.962734 Anserini +test1944 Q0 23576 30 15.802278 Anserini +test1945 Q0 8652872 1 15.740364 Anserini +test1945 Q0 10123549 2 13.938193 Anserini +test1945 Q0 421524 3 13.816218 Anserini +test1945 Q0 16356800 4 13.816218 Anserini +test1945 Q0 4770552 5 13.619671 Anserini +test1945 Q0 5226689 6 13.304501 Anserini +test1945 Q0 16356784 7 13.147763 Anserini +test1945 Q0 4770560 8 13.083140 Anserini +test1945 Q0 5226685 9 13.033085 Anserini +test1945 Q0 10123548 10 12.950596 Anserini +test1945 Q0 6229964 11 12.754591 Anserini +test1945 Q0 6229961 12 12.708921 Anserini +test1945 Q0 6437994 13 12.702239 Anserini +test1945 Q0 4770559 14 12.702239 Anserini +test1945 Q0 10121880 15 12.678232 Anserini +test1945 Q0 421493 16 12.618564 Anserini +test1945 Q0 421526 17 12.476158 Anserini +test1945 Q0 421496 18 12.469966 Anserini +test1945 Q0 16356766 19 12.392224 Anserini +test1945 Q0 8652871 20 12.368198 Anserini +test1945 Q0 10123551 21 12.368198 Anserini +test1945 Q0 16356805 22 12.368198 Anserini +test1945 Q0 16356795 23 12.368198 Anserini +test1945 Q0 421525 24 12.358375 Anserini +test1945 Q0 421523 25 12.318015 Anserini +test1945 Q0 4770548 26 12.317712 Anserini +test1945 Q0 421495 27 12.183243 Anserini +test1945 Q0 421494 28 12.130289 Anserini +test1945 Q0 737320 29 12.077801 Anserini +test1945 Q0 2943811 30 11.973274 Anserini +test1946 Q0 6866902 1 13.990402 Anserini +test1946 Q0 2180878 2 12.327484 Anserini +test1946 Q0 12455753 3 12.218092 Anserini +test1946 Q0 4360149 4 12.061049 Anserini +test1946 Q0 4409014 5 11.713522 Anserini +test1946 Q0 4399863 6 11.347347 Anserini +test1946 Q0 20381281 7 10.965792 Anserini +test1946 Q0 20381268 8 10.938119 Anserini +test1946 Q0 8545222 9 10.803654 Anserini +test1946 Q0 15884799 10 10.797256 Anserini +test1946 Q0 17775480 11 10.787767 Anserini +test1946 Q0 9933631 12 10.711071 Anserini +test1946 Q0 2475874 13 10.529746 Anserini +test1946 Q0 20287948 14 10.484112 Anserini +test1946 Q0 7875390 15 10.483597 Anserini +test1946 Q0 20381270 16 10.453689 Anserini +test1946 Q0 3913389 17 10.376059 Anserini +test1946 Q0 12226483 18 10.339349 Anserini +test1946 Q0 20381264 19 10.299374 Anserini +test1946 Q0 17079661 20 10.214174 Anserini +test1946 Q0 16896620 21 10.192613 Anserini +test1946 Q0 13444772 22 10.182507 Anserini +test1946 Q0 8380679 23 10.178660 Anserini +test1946 Q0 12455757 24 10.172884 Anserini +test1946 Q0 6866903 25 10.164840 Anserini +test1946 Q0 8380693 26 10.141723 Anserini +test1946 Q0 13790672 27 10.137734 Anserini +test1946 Q0 2038849 28 10.101749 Anserini +test1946 Q0 637763 29 10.091908 Anserini +test1946 Q0 15912691 30 10.091402 Anserini +test1947 Q0 9864789 1 15.294569 Anserini +test1947 Q0 10058348 2 15.167211 Anserini +test1947 Q0 18414291 3 15.071184 Anserini +test1947 Q0 10057749 4 15.068298 Anserini +test1947 Q0 79337 5 14.961001 Anserini +test1947 Q0 9005738 6 14.764532 Anserini +test1947 Q0 10056922 7 14.503551 Anserini +test1947 Q0 19389154 8 14.431844 Anserini +test1947 Q0 17736756 9 14.363626 Anserini +test1947 Q0 10057935 10 14.322387 Anserini +test1947 Q0 9381650 11 14.312876 Anserini +test1947 Q0 10058216 12 14.304676 Anserini +test1947 Q0 18414307 13 14.157890 Anserini +test1947 Q0 10056771 14 14.035302 Anserini +test1947 Q0 10057977 15 13.914545 Anserini +test1947 Q0 10057836 16 13.913812 Anserini +test1947 Q0 811411 17 13.904747 Anserini +test1947 Q0 9915312 18 13.887116 Anserini +test1947 Q0 9864889 19 13.881261 Anserini +test1947 Q0 10056959 20 13.873449 Anserini +test1947 Q0 9864769 21 13.732336 Anserini +test1947 Q0 10058032 22 13.714345 Anserini +test1947 Q0 9864747 23 13.711179 Anserini +test1947 Q0 17736769 24 13.662536 Anserini +test1947 Q0 12845022 25 13.581947 Anserini +test1947 Q0 9864763 26 13.570639 Anserini +test1947 Q0 9620035 27 13.517296 Anserini +test1947 Q0 10057643 28 13.473827 Anserini +test1947 Q0 10057830 29 13.468989 Anserini +test1947 Q0 12845010 30 13.448808 Anserini +test1948 Q0 525490 1 19.808702 Anserini +test1948 Q0 16867255 2 18.757175 Anserini +test1948 Q0 10317712 3 18.109301 Anserini +test1948 Q0 19531905 4 17.801165 Anserini +test1948 Q0 18745027 5 17.779907 Anserini +test1948 Q0 525472 6 17.651688 Anserini +test1948 Q0 12762977 7 17.498631 Anserini +test1948 Q0 19068993 8 17.402180 Anserini +test1948 Q0 9359850 9 17.311769 Anserini +test1948 Q0 7847417 10 17.215376 Anserini +test1948 Q0 525503 11 17.193554 Anserini +test1948 Q0 18661801 12 17.180084 Anserini +test1948 Q0 20171200 13 17.102280 Anserini +test1948 Q0 525441 14 17.035677 Anserini +test1948 Q0 19067805 15 16.855551 Anserini +test1948 Q0 525535 16 16.821068 Anserini +test1948 Q0 18661813 17 16.778681 Anserini +test1948 Q0 18913485 18 16.752687 Anserini +test1948 Q0 9990753 19 16.751163 Anserini +test1948 Q0 4536291 20 16.705795 Anserini +test1948 Q0 4536293 21 16.705795 Anserini +test1948 Q0 525459 22 16.655369 Anserini +test1948 Q0 525471 23 16.639915 Anserini +test1948 Q0 20166544 24 16.437426 Anserini +test1948 Q0 525577 25 16.391684 Anserini +test1948 Q0 20473670 26 16.371193 Anserini +test1948 Q0 525480 27 16.331314 Anserini +test1948 Q0 16627805 28 16.292561 Anserini +test1948 Q0 7614655 29 16.288631 Anserini +test1948 Q0 7824011 30 16.266626 Anserini +test1949 Q0 8076434 1 14.310916 Anserini +test1949 Q0 13544793 2 13.368157 Anserini +test1949 Q0 2949223 3 13.165051 Anserini +test1949 Q0 3939250 4 12.732043 Anserini +test1949 Q0 9423666 5 12.652637 Anserini +test1949 Q0 6039160 6 12.427610 Anserini +test1949 Q0 3964271 7 12.405986 Anserini +test1949 Q0 4341639 8 12.330697 Anserini +test1949 Q0 12544419 9 12.319319 Anserini +test1949 Q0 16873910 10 12.182629 Anserini +test1949 Q0 7764561 11 12.178939 Anserini +test1949 Q0 3952619 12 12.147534 Anserini +test1949 Q0 4169933 13 12.103837 Anserini +test1949 Q0 4676005 14 12.002067 Anserini +test1949 Q0 16525522 15 11.980308 Anserini +test1949 Q0 17568159 16 11.968580 Anserini +test1949 Q0 4098016 17 11.956350 Anserini +test1949 Q0 3939276 18 11.911203 Anserini +test1949 Q0 13544743 19 11.894777 Anserini +test1949 Q0 4169866 20 11.892959 Anserini +test1949 Q0 3909909 21 11.858727 Anserini +test1949 Q0 15975538 22 11.836322 Anserini +test1949 Q0 2344056 23 11.827983 Anserini +test1949 Q0 7478041 24 11.813078 Anserini +test1949 Q0 20117064 25 11.800547 Anserini +test1949 Q0 20430410 26 11.792780 Anserini +test1949 Q0 16555293 27 11.743187 Anserini +test1949 Q0 10883231 28 11.741911 Anserini +test1949 Q0 13192601 29 11.734542 Anserini +test1949 Q0 16547363 30 11.727919 Anserini +test195 Q0 4171953 1 15.224009 Anserini +test195 Q0 17401685 2 14.853215 Anserini +test195 Q0 10984460 3 14.697525 Anserini +test195 Q0 4171747 4 14.189840 Anserini +test195 Q0 4169751 5 13.897408 Anserini +test195 Q0 4876679 6 13.855060 Anserini +test195 Q0 11021289 7 13.380349 Anserini +test195 Q0 4169665 8 13.283594 Anserini +test195 Q0 10180969 9 13.177796 Anserini +test195 Q0 13939994 10 13.069693 Anserini +test195 Q0 11973648 11 12.974312 Anserini +test195 Q0 19533481 12 12.911129 Anserini +test195 Q0 4866858 13 12.897273 Anserini +test195 Q0 10316342 14 12.890275 Anserini +test195 Q0 9786954 15 12.852825 Anserini +test195 Q0 8326188 16 12.841365 Anserini +test195 Q0 2381647 17 12.794188 Anserini +test195 Q0 16566189 18 12.732841 Anserini +test195 Q0 5503957 19 12.712073 Anserini +test195 Q0 8087012 20 12.699098 Anserini +test195 Q0 7210750 21 12.680505 Anserini +test195 Q0 7961044 22 12.635623 Anserini +test195 Q0 11021454 23 12.553202 Anserini +test195 Q0 4200552 24 12.522182 Anserini +test195 Q0 20830061 25 12.451378 Anserini +test195 Q0 13271983 26 12.450629 Anserini +test195 Q0 13648500 27 12.434982 Anserini +test195 Q0 17375181 28 12.386226 Anserini +test195 Q0 2907501 29 12.359983 Anserini +test195 Q0 4200521 30 12.347439 Anserini +test1950 Q0 18210870 1 12.060419 Anserini +test1950 Q0 2631888 2 11.435025 Anserini +test1950 Q0 5353597 3 11.345152 Anserini +test1950 Q0 5863891 4 10.870597 Anserini +test1950 Q0 11873283 5 10.710602 Anserini +test1950 Q0 5463289 6 10.686011 Anserini +test1950 Q0 18210897 7 10.684437 Anserini +test1950 Q0 18210958 8 10.611528 Anserini +test1950 Q0 5513327 9 10.576998 Anserini +test1950 Q0 10549919 10 10.538247 Anserini +test1950 Q0 12936756 11 10.359870 Anserini +test1950 Q0 18210866 12 10.343646 Anserini +test1950 Q0 11813327 13 10.305827 Anserini +test1950 Q0 1848159 14 10.280815 Anserini +test1950 Q0 8892087 15 10.148115 Anserini +test1950 Q0 6929998 16 10.136974 Anserini +test1950 Q0 5958830 17 10.125166 Anserini +test1950 Q0 14127953 18 10.100543 Anserini +test1950 Q0 2552290 19 9.959551 Anserini +test1950 Q0 17862460 20 9.934364 Anserini +test1950 Q0 8008038 21 9.920752 Anserini +test1950 Q0 15479924 22 9.888949 Anserini +test1950 Q0 18887965 23 9.879725 Anserini +test1950 Q0 18210956 24 9.858363 Anserini +test1950 Q0 13873592 25 9.847657 Anserini +test1950 Q0 14858781 26 9.845530 Anserini +test1950 Q0 4770182 27 9.780897 Anserini +test1950 Q0 5849745 28 9.751057 Anserini +test1950 Q0 5593174 29 9.748624 Anserini +test1950 Q0 8656937 30 9.720544 Anserini +test1951 Q0 13712012 1 14.621028 Anserini +test1951 Q0 13712008 2 12.648289 Anserini +test1951 Q0 13712010 3 11.963371 Anserini +test1951 Q0 1317531 4 11.776508 Anserini +test1951 Q0 13712007 5 11.503863 Anserini +test1951 Q0 10040996 6 11.098870 Anserini +test1951 Q0 1317493 7 10.982550 Anserini +test1951 Q0 11815516 8 10.700899 Anserini +test1951 Q0 10040999 9 10.631699 Anserini +test1951 Q0 11815517 10 10.588251 Anserini +test1951 Q0 9786275 11 10.479267 Anserini +test1951 Q0 17493213 12 10.448693 Anserini +test1951 Q0 14496077 13 10.399073 Anserini +test1951 Q0 2901945 14 10.361616 Anserini +test1951 Q0 9786276 15 10.170412 Anserini +test1951 Q0 9786277 16 10.067873 Anserini +test1951 Q0 1317539 17 10.045609 Anserini +test1951 Q0 8749898 18 10.044476 Anserini +test1951 Q0 6556977 19 10.024794 Anserini +test1951 Q0 3999177 20 9.980836 Anserini +test1951 Q0 1317500 21 9.938154 Anserini +test1951 Q0 1317492 22 9.938154 Anserini +test1951 Q0 3725603 23 9.906650 Anserini +test1951 Q0 4660442 24 9.893911 Anserini +test1951 Q0 11925987 25 9.847808 Anserini +test1951 Q0 12877231 26 9.841079 Anserini +test1951 Q0 3673310 27 9.817023 Anserini +test1951 Q0 19600921 28 9.736379 Anserini +test1951 Q0 19600924 29 9.726009 Anserini +test1951 Q0 20313868 30 9.710043 Anserini +test1952 Q0 11874766 1 13.660810 Anserini +test1952 Q0 17295153 2 13.017256 Anserini +test1952 Q0 17237050 3 12.576890 Anserini +test1952 Q0 322434 4 12.456675 Anserini +test1952 Q0 17237053 5 12.173498 Anserini +test1952 Q0 10124137 6 11.943657 Anserini +test1952 Q0 16134792 7 11.844326 Anserini +test1952 Q0 17670932 8 11.831491 Anserini +test1952 Q0 2782525 9 11.754042 Anserini +test1952 Q0 323508 10 11.710378 Anserini +test1952 Q0 14723063 11 11.548229 Anserini +test1952 Q0 12071830 12 11.292526 Anserini +test1952 Q0 3781655 13 11.274659 Anserini +test1952 Q0 16638485 14 11.271474 Anserini +test1952 Q0 20556359 15 11.259398 Anserini +test1952 Q0 13139266 16 11.251518 Anserini +test1952 Q0 5592274 17 11.250606 Anserini +test1952 Q0 10233396 18 11.218229 Anserini +test1952 Q0 1675435 19 11.203364 Anserini +test1952 Q0 19862796 20 11.161889 Anserini +test1952 Q0 8781551 21 11.034641 Anserini +test1952 Q0 7511087 22 11.024827 Anserini +test1952 Q0 12490527 23 10.994518 Anserini +test1952 Q0 12569584 24 10.946779 Anserini +test1952 Q0 2276034 25 10.928671 Anserini +test1952 Q0 17807692 26 10.925660 Anserini +test1952 Q0 16602739 27 10.918190 Anserini +test1952 Q0 3397846 28 10.904675 Anserini +test1952 Q0 432976 29 10.854363 Anserini +test1952 Q0 10353618 30 10.838396 Anserini +test1953 Q0 6801008 1 15.505484 Anserini +test1953 Q0 5467689 2 14.046997 Anserini +test1953 Q0 17065287 3 13.882730 Anserini +test1953 Q0 7837691 4 13.700570 Anserini +test1953 Q0 13285560 5 13.509279 Anserini +test1953 Q0 7837681 6 13.464746 Anserini +test1953 Q0 6854666 7 13.455779 Anserini +test1953 Q0 8879425 8 13.142999 Anserini +test1953 Q0 10569125 9 12.979293 Anserini +test1953 Q0 12021686 10 12.916667 Anserini +test1953 Q0 5673278 11 12.915495 Anserini +test1953 Q0 16744550 12 12.845898 Anserini +test1953 Q0 16453192 13 12.819612 Anserini +test1953 Q0 10766019 14 12.383229 Anserini +test1953 Q0 111583 15 12.371761 Anserini +test1953 Q0 5467686 16 12.358656 Anserini +test1953 Q0 12021690 17 12.345530 Anserini +test1953 Q0 13401037 18 12.320219 Anserini +test1953 Q0 10633131 19 12.279559 Anserini +test1953 Q0 11192307 20 12.162019 Anserini +test1953 Q0 5226576 21 12.161956 Anserini +test1953 Q0 1596680 22 12.092895 Anserini +test1953 Q0 4741167 23 12.081804 Anserini +test1953 Q0 16483863 24 12.048445 Anserini +test1953 Q0 10861165 25 12.020585 Anserini +test1953 Q0 2205053 26 12.014443 Anserini +test1953 Q0 5772401 27 11.997591 Anserini +test1953 Q0 4291948 28 11.995972 Anserini +test1953 Q0 7735999 29 11.927741 Anserini +test1953 Q0 7735997 30 11.927741 Anserini +test1954 Q0 2109980 1 15.044309 Anserini +test1954 Q0 2109983 2 13.693378 Anserini +test1954 Q0 4261733 3 13.464924 Anserini +test1954 Q0 4261734 4 12.211633 Anserini +test1954 Q0 1668372 5 11.939612 Anserini +test1954 Q0 9540859 6 11.931892 Anserini +test1954 Q0 2109992 7 11.829008 Anserini +test1954 Q0 43679 8 11.670938 Anserini +test1954 Q0 18616234 9 11.636984 Anserini +test1954 Q0 20885204 10 11.551349 Anserini +test1954 Q0 2301188 11 11.488281 Anserini +test1954 Q0 2109981 12 11.484970 Anserini +test1954 Q0 214379 13 11.359860 Anserini +test1954 Q0 1782930 14 11.312695 Anserini +test1954 Q0 2109996 15 11.224604 Anserini +test1954 Q0 110970 16 11.205027 Anserini +test1954 Q0 14452765 17 11.199704 Anserini +test1954 Q0 630335 18 11.080112 Anserini +test1954 Q0 8283518 19 10.926768 Anserini +test1954 Q0 5352221 20 10.817680 Anserini +test1954 Q0 2109987 21 10.794547 Anserini +test1954 Q0 9540858 22 10.794547 Anserini +test1954 Q0 4531157 23 10.794547 Anserini +test1954 Q0 6100235 24 10.724955 Anserini +test1954 Q0 1668375 25 10.724955 Anserini +test1954 Q0 8790788 26 10.691746 Anserini +test1954 Q0 11402155 27 10.521550 Anserini +test1954 Q0 612240 28 10.473975 Anserini +test1954 Q0 4261735 29 10.419572 Anserini +test1954 Q0 13192567 30 10.352319 Anserini +test1955 Q0 6723029 1 20.849110 Anserini +test1955 Q0 10552937 2 20.782597 Anserini +test1955 Q0 17580675 3 20.749010 Anserini +test1955 Q0 1693454 4 20.282322 Anserini +test1955 Q0 4479885 5 20.045656 Anserini +test1955 Q0 4467482 6 20.008537 Anserini +test1955 Q0 9604285 7 19.856974 Anserini +test1955 Q0 7314086 8 19.686165 Anserini +test1955 Q0 10552935 9 19.684111 Anserini +test1955 Q0 5747886 10 19.679441 Anserini +test1955 Q0 9523954 11 19.569183 Anserini +test1955 Q0 40502 12 19.459608 Anserini +test1955 Q0 7604914 13 19.436453 Anserini +test1955 Q0 8449158 14 19.338961 Anserini +test1955 Q0 18290552 15 19.205681 Anserini +test1955 Q0 7533740 16 19.144138 Anserini +test1955 Q0 7604909 17 19.142559 Anserini +test1955 Q0 5747888 18 19.130545 Anserini +test1955 Q0 20376695 19 18.947168 Anserini +test1955 Q0 13807763 20 18.930189 Anserini +test1955 Q0 6046539 21 18.902853 Anserini +test1955 Q0 19071264 22 18.796364 Anserini +test1955 Q0 10554380 23 18.769987 Anserini +test1955 Q0 8160835 24 18.689190 Anserini +test1955 Q0 18290546 25 18.674889 Anserini +test1955 Q0 2241107 26 18.665983 Anserini +test1955 Q0 10550293 27 18.600615 Anserini +test1955 Q0 10550383 28 18.600615 Anserini +test1955 Q0 10550395 29 18.600615 Anserini +test1955 Q0 10550397 30 18.600615 Anserini +test1956 Q0 111213 1 14.804094 Anserini +test1956 Q0 14532074 2 14.287200 Anserini +test1956 Q0 14430973 3 13.410724 Anserini +test1956 Q0 15574840 4 13.302684 Anserini +test1956 Q0 111210 5 13.015657 Anserini +test1956 Q0 111233 6 12.993292 Anserini +test1956 Q0 111235 7 12.764708 Anserini +test1956 Q0 111199 8 12.738008 Anserini +test1956 Q0 15574841 9 12.700321 Anserini +test1956 Q0 16425668 10 12.451894 Anserini +test1956 Q0 111225 11 12.451604 Anserini +test1956 Q0 111188 12 12.362448 Anserini +test1956 Q0 111206 13 12.362448 Anserini +test1956 Q0 16955919 14 12.362448 Anserini +test1956 Q0 111228 15 12.350026 Anserini +test1956 Q0 111224 16 12.307805 Anserini +test1956 Q0 111207 17 12.307805 Anserini +test1956 Q0 111216 18 12.247910 Anserini +test1956 Q0 16425665 19 12.243093 Anserini +test1956 Q0 111201 20 12.221729 Anserini +test1956 Q0 4770363 21 12.044027 Anserini +test1956 Q0 18952145 22 12.026900 Anserini +test1956 Q0 19461710 23 12.005022 Anserini +test1956 Q0 111184 24 12.005022 Anserini +test1956 Q0 124114 25 11.998432 Anserini +test1956 Q0 19149705 26 11.970444 Anserini +test1956 Q0 19149703 27 11.966270 Anserini +test1956 Q0 6822412 28 11.854979 Anserini +test1956 Q0 12017687 29 11.806267 Anserini +test1956 Q0 7998709 30 11.806267 Anserini +test1957 Q0 8479544 1 14.935864 Anserini +test1957 Q0 8479537 2 14.448157 Anserini +test1957 Q0 8479543 3 13.754095 Anserini +test1957 Q0 20021686 4 13.165864 Anserini +test1957 Q0 20021696 5 12.702113 Anserini +test1957 Q0 8479524 6 12.494456 Anserini +test1957 Q0 5289368 7 12.482064 Anserini +test1957 Q0 19214517 8 12.389650 Anserini +test1957 Q0 8479539 9 12.347689 Anserini +test1957 Q0 8479551 10 12.219648 Anserini +test1957 Q0 8479540 11 12.126930 Anserini +test1957 Q0 8479536 12 11.942357 Anserini +test1957 Q0 20683329 13 11.868103 Anserini +test1957 Q0 15399639 14 11.834315 Anserini +test1957 Q0 17243730 15 11.833142 Anserini +test1957 Q0 16426875 16 11.831429 Anserini +test1957 Q0 8479534 17 11.643216 Anserini +test1957 Q0 20683328 18 11.580401 Anserini +test1957 Q0 8479525 19 11.445379 Anserini +test1957 Q0 8479538 20 11.325998 Anserini +test1957 Q0 5289370 21 11.256273 Anserini +test1957 Q0 8479535 22 11.116652 Anserini +test1957 Q0 8479527 23 11.070254 Anserini +test1957 Q0 20021693 24 10.865225 Anserini +test1957 Q0 8479546 25 10.789166 Anserini +test1957 Q0 15399643 26 10.741527 Anserini +test1957 Q0 17243734 27 10.724895 Anserini +test1957 Q0 19214518 28 10.714235 Anserini +test1957 Q0 15399673 29 10.680132 Anserini +test1957 Q0 18373661 30 10.646948 Anserini +test1958 Q0 11357803 1 13.899641 Anserini +test1958 Q0 11357804 2 13.899641 Anserini +test1958 Q0 3852161 3 13.464690 Anserini +test1958 Q0 20508175 4 13.231231 Anserini +test1958 Q0 17041651 5 13.193906 Anserini +test1958 Q0 7276255 6 13.085676 Anserini +test1958 Q0 20508174 7 12.467870 Anserini +test1958 Q0 17041653 8 12.404254 Anserini +test1958 Q0 7163982 9 12.404254 Anserini +test1958 Q0 7882675 10 12.198236 Anserini +test1958 Q0 13031480 11 12.116996 Anserini +test1958 Q0 17041652 12 12.027159 Anserini +test1958 Q0 2153132 13 11.916610 Anserini +test1958 Q0 7874561 14 11.718536 Anserini +test1958 Q0 17009773 15 11.569692 Anserini +test1958 Q0 2665418 16 11.346598 Anserini +test1958 Q0 1394687 17 11.255692 Anserini +test1958 Q0 14935639 18 11.255692 Anserini +test1958 Q0 11629900 19 11.249855 Anserini +test1958 Q0 19487070 20 11.228194 Anserini +test1958 Q0 7882674 21 11.178060 Anserini +test1958 Q0 2153140 22 11.154822 Anserini +test1958 Q0 7584141 23 11.101492 Anserini +test1958 Q0 9903854 24 11.060422 Anserini +test1958 Q0 17041654 25 11.025967 Anserini +test1958 Q0 17041655 26 11.025967 Anserini +test1958 Q0 7163981 27 11.025967 Anserini +test1958 Q0 2665421 28 10.969770 Anserini +test1958 Q0 2153144 29 10.969702 Anserini +test1958 Q0 4812612 30 10.860676 Anserini +test1959 Q0 5202406 1 21.463987 Anserini +test1959 Q0 15334711 2 18.815132 Anserini +test1959 Q0 5614733 3 18.695915 Anserini +test1959 Q0 520396 4 18.243540 Anserini +test1959 Q0 976969 5 18.234062 Anserini +test1959 Q0 206801 6 18.223312 Anserini +test1959 Q0 4297689 7 18.165340 Anserini +test1959 Q0 4297687 8 18.165340 Anserini +test1959 Q0 538759 9 17.946218 Anserini +test1959 Q0 7059110 10 17.849377 Anserini +test1959 Q0 7059109 11 17.843719 Anserini +test1959 Q0 849750 12 17.843071 Anserini +test1959 Q0 519004 13 17.831144 Anserini +test1959 Q0 12493434 14 17.794676 Anserini +test1959 Q0 12493400 15 17.751148 Anserini +test1959 Q0 7059112 16 17.739157 Anserini +test1959 Q0 11706015 17 17.622883 Anserini +test1959 Q0 117376 18 17.561621 Anserini +test1959 Q0 518974 19 17.549370 Anserini +test1959 Q0 206802 20 17.372833 Anserini +test1959 Q0 546659 21 17.186003 Anserini +test1959 Q0 4272254 22 17.102926 Anserini +test1959 Q0 206783 23 17.068398 Anserini +test1959 Q0 1765642 24 17.061607 Anserini +test1959 Q0 546661 25 17.045881 Anserini +test1959 Q0 458296 26 16.958427 Anserini +test1959 Q0 2602252 27 16.920967 Anserini +test1959 Q0 206787 28 16.865395 Anserini +test1959 Q0 19406600 29 16.743498 Anserini +test1959 Q0 6996403 30 16.741913 Anserini +test196 Q0 1707624 1 10.368963 Anserini +test196 Q0 1781513 2 9.974219 Anserini +test196 Q0 1707610 3 9.844276 Anserini +test196 Q0 1707625 4 9.808060 Anserini +test196 Q0 1707618 5 9.677071 Anserini +test196 Q0 2340403 6 9.622632 Anserini +test196 Q0 1707615 7 9.569336 Anserini +test196 Q0 13533049 8 9.449554 Anserini +test196 Q0 2340417 9 9.363299 Anserini +test196 Q0 17501454 10 9.265491 Anserini +test196 Q0 2874752 11 9.221338 Anserini +test196 Q0 15806294 12 9.201472 Anserini +test196 Q0 1707616 13 9.152595 Anserini +test196 Q0 9960519 14 9.140762 Anserini +test196 Q0 4812264 15 8.963122 Anserini +test196 Q0 5604971 16 8.855110 Anserini +test196 Q0 15913463 17 8.799559 Anserini +test196 Q0 12205891 18 8.770121 Anserini +test196 Q0 6010373 19 8.702030 Anserini +test196 Q0 17258055 20 8.658112 Anserini +test196 Q0 19981450 21 8.658112 Anserini +test196 Q0 15648346 22 8.554408 Anserini +test196 Q0 12042039 23 8.548621 Anserini +test196 Q0 2147054 24 8.503502 Anserini +test196 Q0 6945071 25 8.450137 Anserini +test196 Q0 10100459 26 8.401889 Anserini +test196 Q0 3135764 27 8.401889 Anserini +test196 Q0 4214180 28 8.386636 Anserini +test196 Q0 1707620 29 8.386636 Anserini +test196 Q0 2340131 30 8.360147 Anserini +test1960 Q0 15562751 1 15.339748 Anserini +test1960 Q0 18939005 2 14.562178 Anserini +test1960 Q0 17142234 3 13.915007 Anserini +test1960 Q0 157544 4 13.820613 Anserini +test1960 Q0 12800988 5 13.291445 Anserini +test1960 Q0 12800987 6 13.157100 Anserini +test1960 Q0 18135479 7 13.154276 Anserini +test1960 Q0 18939004 8 13.034184 Anserini +test1960 Q0 15773951 9 12.875275 Anserini +test1960 Q0 17906621 10 12.820322 Anserini +test1960 Q0 927563 11 12.738988 Anserini +test1960 Q0 12800986 12 12.672172 Anserini +test1960 Q0 2266782 13 12.360553 Anserini +test1960 Q0 18135454 14 12.291002 Anserini +test1960 Q0 2542223 15 12.256361 Anserini +test1960 Q0 4481681 16 12.164943 Anserini +test1960 Q0 16263737 17 12.021235 Anserini +test1960 Q0 16528227 18 11.935328 Anserini +test1960 Q0 18939007 19 11.932684 Anserini +test1960 Q0 19665779 20 11.878245 Anserini +test1960 Q0 18177104 21 11.803486 Anserini +test1960 Q0 9789591 22 11.692620 Anserini +test1960 Q0 18938987 23 11.687837 Anserini +test1960 Q0 4169378 24 11.609558 Anserini +test1960 Q0 16430645 25 11.549377 Anserini +test1960 Q0 890853 26 11.543473 Anserini +test1960 Q0 4399770 27 11.540325 Anserini +test1960 Q0 10139466 28 11.513441 Anserini +test1960 Q0 17445498 29 11.505829 Anserini +test1960 Q0 9512651 30 11.492425 Anserini +test1961 Q0 1463255 1 18.265993 Anserini +test1961 Q0 1463252 2 18.151913 Anserini +test1961 Q0 7216130 3 18.046349 Anserini +test1961 Q0 1463256 4 17.343449 Anserini +test1961 Q0 1463263 5 16.981274 Anserini +test1961 Q0 17446723 6 16.919353 Anserini +test1961 Q0 15626925 7 16.919353 Anserini +test1961 Q0 1463265 8 16.919353 Anserini +test1961 Q0 17446724 9 16.832134 Anserini +test1961 Q0 15626926 10 16.832134 Anserini +test1961 Q0 1463267 11 16.832134 Anserini +test1961 Q0 1463264 12 16.745808 Anserini +test1961 Q0 1463251 13 16.745808 Anserini +test1961 Q0 15080754 14 16.660366 Anserini +test1961 Q0 15080755 15 16.660366 Anserini +test1961 Q0 6958970 16 16.450024 Anserini +test1961 Q0 1463258 17 16.121731 Anserini +test1961 Q0 3123432 18 16.007347 Anserini +test1961 Q0 1463259 19 15.223437 Anserini +test1961 Q0 2277230 20 15.117710 Anserini +test1961 Q0 7216127 21 15.117710 Anserini +test1961 Q0 7216128 22 15.117710 Anserini +test1961 Q0 1463254 23 15.117710 Anserini +test1961 Q0 7216174 24 15.117710 Anserini +test1961 Q0 10653539 25 15.066451 Anserini +test1961 Q0 2089590 26 15.013442 Anserini +test1961 Q0 3123428 27 15.013442 Anserini +test1961 Q0 19935265 28 15.013442 Anserini +test1961 Q0 2089592 29 14.910604 Anserini +test1961 Q0 14446097 30 14.910604 Anserini +test1962 Q0 16032677 1 15.939444 Anserini +test1962 Q0 4257345 2 15.469801 Anserini +test1962 Q0 8155665 3 15.369815 Anserini +test1962 Q0 5813687 4 15.295382 Anserini +test1962 Q0 3082701 5 15.111654 Anserini +test1962 Q0 7405998 6 14.859473 Anserini +test1962 Q0 7439951 7 14.723906 Anserini +test1962 Q0 20071373 8 14.376736 Anserini +test1962 Q0 7139614 9 14.064065 Anserini +test1962 Q0 5093530 10 13.832763 Anserini +test1962 Q0 2316724 11 13.742965 Anserini +test1962 Q0 2756085 12 13.632106 Anserini +test1962 Q0 2298825 13 13.601246 Anserini +test1962 Q0 5008016 14 13.562984 Anserini +test1962 Q0 2351089 15 13.524811 Anserini +test1962 Q0 5237073 16 13.504871 Anserini +test1962 Q0 654676 17 13.316624 Anserini +test1962 Q0 7405992 18 13.316624 Anserini +test1962 Q0 2895714 19 13.315142 Anserini +test1962 Q0 6377280 20 13.219857 Anserini +test1962 Q0 7239052 21 13.195890 Anserini +test1962 Q0 2351090 22 13.167866 Anserini +test1962 Q0 5813688 23 13.147417 Anserini +test1962 Q0 12645984 24 13.085321 Anserini +test1962 Q0 2895717 25 13.079652 Anserini +test1962 Q0 13561071 26 13.058506 Anserini +test1962 Q0 14226877 27 13.023906 Anserini +test1962 Q0 1622065 28 13.007296 Anserini +test1962 Q0 1000496 29 12.995089 Anserini +test1962 Q0 655405 30 12.989148 Anserini +test1963 Q0 5801178 1 11.113585 Anserini +test1963 Q0 5801180 2 10.990656 Anserini +test1963 Q0 8200666 3 10.571368 Anserini +test1963 Q0 12428502 4 10.237504 Anserini +test1963 Q0 6625733 5 10.125514 Anserini +test1963 Q0 15133323 6 10.055373 Anserini +test1963 Q0 88508 7 10.032710 Anserini +test1963 Q0 16222786 8 9.941175 Anserini +test1963 Q0 16217174 9 9.902215 Anserini +test1963 Q0 16205803 10 9.902215 Anserini +test1963 Q0 16244055 11 9.902215 Anserini +test1963 Q0 16244956 12 9.902215 Anserini +test1963 Q0 16213888 13 9.902215 Anserini +test1963 Q0 16270587 14 9.902215 Anserini +test1963 Q0 16270588 15 9.902215 Anserini +test1963 Q0 11683441 16 9.882640 Anserini +test1963 Q0 4084036 17 9.854735 Anserini +test1963 Q0 16245088 18 9.838590 Anserini +test1963 Q0 15600964 19 9.833837 Anserini +test1963 Q0 1394643 20 9.770572 Anserini +test1963 Q0 16789857 21 9.767240 Anserini +test1963 Q0 15591912 22 9.767240 Anserini +test1963 Q0 15600965 23 9.767240 Anserini +test1963 Q0 16789858 24 9.763584 Anserini +test1963 Q0 20328080 25 9.729071 Anserini +test1963 Q0 4084034 26 9.651915 Anserini +test1963 Q0 1394635 27 9.617000 Anserini +test1963 Q0 5898156 28 9.601284 Anserini +test1963 Q0 11332949 29 9.589249 Anserini +test1963 Q0 441754 30 9.571883 Anserini +test1964 Q0 6647275 1 15.196348 Anserini +test1964 Q0 14239338 2 14.226110 Anserini +test1964 Q0 6846830 3 13.743708 Anserini +test1964 Q0 5078252 4 13.743685 Anserini +test1964 Q0 17093064 5 13.702139 Anserini +test1964 Q0 19691548 6 13.702139 Anserini +test1964 Q0 12348206 7 13.442739 Anserini +test1964 Q0 6846833 8 13.417839 Anserini +test1964 Q0 6647295 9 13.408553 Anserini +test1964 Q0 19691551 10 13.391875 Anserini +test1964 Q0 17916608 11 13.190924 Anserini +test1964 Q0 6647277 12 13.147941 Anserini +test1964 Q0 20066667 13 13.128241 Anserini +test1964 Q0 14729564 14 13.034400 Anserini +test1964 Q0 14239339 15 13.020159 Anserini +test1964 Q0 6647278 16 12.967511 Anserini +test1964 Q0 20518947 17 12.930085 Anserini +test1964 Q0 6647279 18 12.869491 Anserini +test1964 Q0 5571955 19 12.782164 Anserini +test1964 Q0 3633503 20 12.701159 Anserini +test1964 Q0 1511054 21 12.689156 Anserini +test1964 Q0 6647287 22 12.683703 Anserini +test1964 Q0 1565059 23 12.650231 Anserini +test1964 Q0 1739106 24 12.624047 Anserini +test1964 Q0 7111586 25 12.604225 Anserini +test1964 Q0 17150343 26 12.462267 Anserini +test1964 Q0 3609268 27 12.412166 Anserini +test1964 Q0 8448878 28 12.322060 Anserini +test1964 Q0 3633578 29 12.264229 Anserini +test1964 Q0 15197837 30 12.222496 Anserini +test1965 Q0 1097653 1 12.031732 Anserini +test1965 Q0 4320431 2 12.019566 Anserini +test1965 Q0 8888843 3 11.819521 Anserini +test1965 Q0 8888844 4 11.783340 Anserini +test1965 Q0 10382812 5 11.780087 Anserini +test1965 Q0 6317440 6 11.375921 Anserini +test1965 Q0 4967804 7 11.309332 Anserini +test1965 Q0 19410977 8 11.300730 Anserini +test1965 Q0 9353581 9 11.146159 Anserini +test1965 Q0 20075246 10 11.040213 Anserini +test1965 Q0 12632956 11 10.866603 Anserini +test1965 Q0 19435317 12 10.795008 Anserini +test1965 Q0 784300 13 10.771306 Anserini +test1965 Q0 10382813 14 10.660007 Anserini +test1965 Q0 8114008 15 10.655936 Anserini +test1965 Q0 19435325 16 10.645533 Anserini +test1965 Q0 63455 17 10.639202 Anserini +test1965 Q0 4296847 18 10.619969 Anserini +test1965 Q0 19415722 19 10.589489 Anserini +test1965 Q0 13132195 20 10.453716 Anserini +test1965 Q0 20003230 21 10.386789 Anserini +test1965 Q0 567888 22 10.379743 Anserini +test1965 Q0 11775147 23 10.303116 Anserini +test1965 Q0 15140087 24 10.290015 Anserini +test1965 Q0 131263 25 10.023360 Anserini +test1965 Q0 14444055 26 10.013741 Anserini +test1965 Q0 6317402 27 10.011831 Anserini +test1965 Q0 13644110 28 9.999667 Anserini +test1965 Q0 131168 29 9.924243 Anserini +test1965 Q0 662496 30 9.919843 Anserini +test1966 Q0 11916375 1 15.582836 Anserini +test1966 Q0 11784306 2 13.913032 Anserini +test1966 Q0 20044014 3 13.823766 Anserini +test1966 Q0 7867090 4 13.632323 Anserini +test1966 Q0 7512232 5 13.627625 Anserini +test1966 Q0 9877004 6 13.418581 Anserini +test1966 Q0 3437160 7 13.313042 Anserini +test1966 Q0 2978641 8 13.238590 Anserini +test1966 Q0 6931247 9 13.159904 Anserini +test1966 Q0 16667185 10 13.132942 Anserini +test1966 Q0 6931253 11 13.049829 Anserini +test1966 Q0 12803300 12 13.049829 Anserini +test1966 Q0 9145640 13 13.046807 Anserini +test1966 Q0 10023479 14 13.036493 Anserini +test1966 Q0 10123491 15 12.988992 Anserini +test1966 Q0 9169149 16 12.943176 Anserini +test1966 Q0 7137718 17 12.939467 Anserini +test1966 Q0 6636693 18 12.939226 Anserini +test1966 Q0 20044015 19 12.904049 Anserini +test1966 Q0 20642221 20 12.895276 Anserini +test1966 Q0 8697892 21 12.818831 Anserini +test1966 Q0 17840827 22 12.811135 Anserini +test1966 Q0 15171332 23 12.803998 Anserini +test1966 Q0 7173926 24 12.791400 Anserini +test1966 Q0 10489066 25 12.775598 Anserini +test1966 Q0 20613275 26 12.767767 Anserini +test1966 Q0 11217501 27 12.766959 Anserini +test1966 Q0 17562986 28 12.757715 Anserini +test1966 Q0 6544254 29 12.747437 Anserini +test1966 Q0 7863740 30 12.741700 Anserini +test1967 Q0 141919 1 16.373322 Anserini +test1967 Q0 13712487 2 16.322308 Anserini +test1967 Q0 164832 3 15.587246 Anserini +test1967 Q0 1654288 4 15.355277 Anserini +test1967 Q0 1498523 5 14.868305 Anserini +test1967 Q0 141910 6 14.597669 Anserini +test1967 Q0 617762 7 14.558933 Anserini +test1967 Q0 18807432 8 14.535968 Anserini +test1967 Q0 18562887 9 14.443998 Anserini +test1967 Q0 15117537 10 14.378107 Anserini +test1967 Q0 3401957 11 14.346925 Anserini +test1967 Q0 355362 12 14.338108 Anserini +test1967 Q0 8151495 13 14.173143 Anserini +test1967 Q0 617709 14 14.128975 Anserini +test1967 Q0 6033294 15 14.080375 Anserini +test1967 Q0 8336725 16 14.041153 Anserini +test1967 Q0 1654293 17 13.880590 Anserini +test1967 Q0 2273189 18 13.732122 Anserini +test1967 Q0 15466488 19 13.699473 Anserini +test1967 Q0 721797 20 13.683972 Anserini +test1967 Q0 8336724 21 13.676317 Anserini +test1967 Q0 1775250 22 13.633148 Anserini +test1967 Q0 2276727 23 13.633148 Anserini +test1967 Q0 8459764 24 13.630678 Anserini +test1967 Q0 345065 25 13.592771 Anserini +test1967 Q0 12021407 26 13.585810 Anserini +test1967 Q0 182481 27 13.572415 Anserini +test1967 Q0 1654301 28 13.564983 Anserini +test1967 Q0 6037546 29 13.519450 Anserini +test1967 Q0 89691 30 13.510827 Anserini +test1968 Q0 5884023 1 11.190299 Anserini +test1968 Q0 5884041 2 10.881678 Anserini +test1968 Q0 3576220 3 10.392646 Anserini +test1968 Q0 8121564 4 10.206835 Anserini +test1968 Q0 12285226 5 10.007677 Anserini +test1968 Q0 5884032 6 9.857850 Anserini +test1968 Q0 8299689 7 9.829244 Anserini +test1968 Q0 5884022 8 9.798628 Anserini +test1968 Q0 3576216 9 9.730517 Anserini +test1968 Q0 6597390 10 9.617787 Anserini +test1968 Q0 9869418 11 9.555632 Anserini +test1968 Q0 8661863 12 9.431217 Anserini +test1968 Q0 829485 13 9.381364 Anserini +test1968 Q0 1766225 14 9.348133 Anserini +test1968 Q0 16407935 15 9.323751 Anserini +test1968 Q0 5884067 16 9.313816 Anserini +test1968 Q0 15992814 17 9.311356 Anserini +test1968 Q0 13661866 18 9.233297 Anserini +test1968 Q0 13661841 19 9.233297 Anserini +test1968 Q0 12453266 20 9.127500 Anserini +test1968 Q0 956716 21 9.117102 Anserini +test1968 Q0 737032 22 9.100862 Anserini +test1968 Q0 13666138 23 9.100155 Anserini +test1968 Q0 8428429 24 9.096803 Anserini +test1968 Q0 571036 25 9.002996 Anserini +test1968 Q0 2676630 26 8.988770 Anserini +test1968 Q0 9548723 27 8.918204 Anserini +test1968 Q0 510211 28 8.918204 Anserini +test1968 Q0 12736327 29 8.918204 Anserini +test1968 Q0 6819915 30 8.907212 Anserini +test1969 Q0 20654945 1 13.313980 Anserini +test1969 Q0 1947872 2 13.267534 Anserini +test1969 Q0 7830871 3 12.920375 Anserini +test1969 Q0 20734312 4 12.800928 Anserini +test1969 Q0 18498106 5 12.747345 Anserini +test1969 Q0 20654962 6 12.653519 Anserini +test1969 Q0 17875799 7 12.494706 Anserini +test1969 Q0 20734337 8 12.393455 Anserini +test1969 Q0 13510729 9 12.386663 Anserini +test1969 Q0 17028748 10 12.381109 Anserini +test1969 Q0 20734328 11 12.366641 Anserini +test1969 Q0 759982 12 12.345100 Anserini +test1969 Q0 17867689 13 12.284252 Anserini +test1969 Q0 7830913 14 12.258967 Anserini +test1969 Q0 19894142 15 12.225323 Anserini +test1969 Q0 20845038 16 12.174836 Anserini +test1969 Q0 19612233 17 12.156403 Anserini +test1969 Q0 17506092 18 11.994069 Anserini +test1969 Q0 20662293 19 11.889078 Anserini +test1969 Q0 4951469 20 11.831043 Anserini +test1969 Q0 16334544 21 11.759377 Anserini +test1969 Q0 11782030 22 11.720989 Anserini +test1969 Q0 18163475 23 11.631874 Anserini +test1969 Q0 16983053 24 11.620008 Anserini +test1969 Q0 20496036 25 11.620008 Anserini +test1969 Q0 10639766 26 11.556893 Anserini +test1969 Q0 1947854 27 11.556177 Anserini +test1969 Q0 1947873 28 11.556177 Anserini +test1969 Q0 4951437 29 11.535213 Anserini +test1969 Q0 20738811 30 11.501512 Anserini +test197 Q0 8925471 1 20.608421 Anserini +test197 Q0 8925515 2 18.434130 Anserini +test197 Q0 3451144 3 18.074421 Anserini +test197 Q0 19983831 4 17.521652 Anserini +test197 Q0 8925484 5 16.936731 Anserini +test197 Q0 16347433 6 16.620098 Anserini +test197 Q0 8925477 7 15.864326 Anserini +test197 Q0 17272471 8 15.701479 Anserini +test197 Q0 8870052 9 15.701479 Anserini +test197 Q0 7090889 10 15.544115 Anserini +test197 Q0 1579448 11 15.369792 Anserini +test197 Q0 1579411 12 15.166042 Anserini +test197 Q0 8925475 13 14.884065 Anserini +test197 Q0 8925472 14 14.747112 Anserini +test197 Q0 16367476 15 14.719088 Anserini +test197 Q0 13149140 16 14.678871 Anserini +test197 Q0 12156807 17 14.272649 Anserini +test197 Q0 10380998 18 14.019132 Anserini +test197 Q0 12156847 19 13.611823 Anserini +test197 Q0 3451148 20 13.468531 Anserini +test197 Q0 14098288 21 13.468531 Anserini +test197 Q0 8167963 22 13.468531 Anserini +test197 Q0 14098304 23 13.468531 Anserini +test197 Q0 8167984 24 13.468531 Anserini +test197 Q0 14098278 25 13.328223 Anserini +test197 Q0 8925473 26 13.328223 Anserini +test197 Q0 8491760 27 12.997281 Anserini +test197 Q0 17272457 28 12.409387 Anserini +test197 Q0 18956583 29 12.350492 Anserini +test197 Q0 14679759 30 12.282923 Anserini +test1970 Q0 13991396 1 10.440906 Anserini +test1970 Q0 4101835 2 9.727998 Anserini +test1970 Q0 2324086 3 9.722544 Anserini +test1970 Q0 3297721 4 9.704922 Anserini +test1970 Q0 13496915 5 9.517877 Anserini +test1970 Q0 14317945 6 9.506445 Anserini +test1970 Q0 15415353 7 9.374403 Anserini +test1970 Q0 18880238 8 9.252482 Anserini +test1970 Q0 1827732 9 9.223896 Anserini +test1970 Q0 11358882 10 9.070340 Anserini +test1970 Q0 14594455 11 8.957608 Anserini +test1970 Q0 18798528 12 8.920828 Anserini +test1970 Q0 4960980 13 8.904907 Anserini +test1970 Q0 2795579 14 8.844088 Anserini +test1970 Q0 13991384 15 8.766241 Anserini +test1970 Q0 18479638 16 8.668921 Anserini +test1970 Q0 7124656 17 8.626383 Anserini +test1970 Q0 2153159 18 8.615928 Anserini +test1970 Q0 2238100 19 8.572281 Anserini +test1970 Q0 1197864 20 8.564008 Anserini +test1970 Q0 15531269 21 8.478367 Anserini +test1970 Q0 3181396 22 8.467071 Anserini +test1970 Q0 916583 23 8.457065 Anserini +test1970 Q0 592070 24 8.417475 Anserini +test1970 Q0 19363251 25 8.367327 Anserini +test1970 Q0 1827717 26 8.359022 Anserini +test1970 Q0 12913898 27 8.349638 Anserini +test1970 Q0 9158931 28 8.316362 Anserini +test1970 Q0 3181384 29 8.315740 Anserini +test1970 Q0 14248985 30 8.277716 Anserini +test1971 Q0 13095618 1 26.013533 Anserini +test1971 Q0 13095616 2 24.508566 Anserini +test1971 Q0 10449376 3 23.634720 Anserini +test1971 Q0 3758264 4 23.586540 Anserini +test1971 Q0 10449366 5 22.904930 Anserini +test1971 Q0 10449362 6 21.687994 Anserini +test1971 Q0 9007257 7 21.056929 Anserini +test1971 Q0 10449375 8 20.479359 Anserini +test1971 Q0 10449368 9 19.996777 Anserini +test1971 Q0 13095617 10 19.910250 Anserini +test1971 Q0 10449367 11 19.847687 Anserini +test1971 Q0 10449371 12 19.742937 Anserini +test1971 Q0 16090864 13 19.735577 Anserini +test1971 Q0 15537943 14 19.487150 Anserini +test1971 Q0 16090859 15 19.314344 Anserini +test1971 Q0 10449374 16 18.892799 Anserini +test1971 Q0 9259370 17 18.558823 Anserini +test1971 Q0 1684314 18 18.219250 Anserini +test1971 Q0 5078318 19 18.219250 Anserini +test1971 Q0 10260376 20 18.084206 Anserini +test1971 Q0 4995221 21 17.930931 Anserini +test1971 Q0 4995223 22 17.790310 Anserini +test1971 Q0 13292113 23 17.386477 Anserini +test1971 Q0 9007255 24 17.352657 Anserini +test1971 Q0 10849781 25 16.911406 Anserini +test1971 Q0 14430739 26 16.885790 Anserini +test1971 Q0 8259944 27 16.375921 Anserini +test1971 Q0 4822881 28 16.254515 Anserini +test1971 Q0 14383434 29 15.766973 Anserini +test1971 Q0 15212794 30 15.431482 Anserini +test1972 Q0 880494 1 26.451151 Anserini +test1972 Q0 13447913 2 26.245430 Anserini +test1972 Q0 959836 3 26.160997 Anserini +test1972 Q0 959841 4 24.105679 Anserini +test1972 Q0 2671923 5 23.963148 Anserini +test1972 Q0 880481 6 22.953510 Anserini +test1972 Q0 880489 7 22.905355 Anserini +test1972 Q0 2671924 8 22.501017 Anserini +test1972 Q0 880488 9 21.697145 Anserini +test1972 Q0 8364743 10 21.499237 Anserini +test1972 Q0 9729006 11 21.458099 Anserini +test1972 Q0 880487 12 21.356203 Anserini +test1972 Q0 12713341 13 20.659946 Anserini +test1972 Q0 13447911 14 19.755016 Anserini +test1972 Q0 959919 15 19.084755 Anserini +test1972 Q0 959876 16 18.521936 Anserini +test1972 Q0 877382 17 18.385786 Anserini +test1972 Q0 877380 18 18.385786 Anserini +test1972 Q0 2671919 19 18.342821 Anserini +test1972 Q0 505710 20 17.825737 Anserini +test1972 Q0 959848 21 17.752335 Anserini +test1972 Q0 7458746 22 17.277735 Anserini +test1972 Q0 896014 23 17.226772 Anserini +test1972 Q0 4513470 24 17.222351 Anserini +test1972 Q0 390721 25 17.214478 Anserini +test1972 Q0 13900802 26 17.144964 Anserini +test1972 Q0 7458762 27 16.976305 Anserini +test1972 Q0 2671918 28 16.906101 Anserini +test1972 Q0 1298094 29 16.723829 Anserini +test1972 Q0 959833 30 16.546406 Anserini +test1973 Q0 15830172 1 18.927221 Anserini +test1973 Q0 6848783 2 18.485851 Anserini +test1973 Q0 16728164 3 18.395247 Anserini +test1973 Q0 6848785 4 18.223808 Anserini +test1973 Q0 17802868 5 18.175842 Anserini +test1973 Q0 15898391 6 18.152157 Anserini +test1973 Q0 19050356 7 17.772480 Anserini +test1973 Q0 19050354 8 17.761158 Anserini +test1973 Q0 8536476 9 17.635275 Anserini +test1973 Q0 15503675 10 17.541553 Anserini +test1973 Q0 15503699 11 17.541553 Anserini +test1973 Q0 16402617 12 17.495485 Anserini +test1973 Q0 20450323 13 17.483541 Anserini +test1973 Q0 20806403 14 17.379383 Anserini +test1973 Q0 17802849 15 17.279947 Anserini +test1973 Q0 16388314 16 17.229221 Anserini +test1973 Q0 16402616 17 16.897430 Anserini +test1973 Q0 16728180 18 16.676680 Anserini +test1973 Q0 16402632 19 16.654829 Anserini +test1973 Q0 6848790 20 16.652719 Anserini +test1973 Q0 13980603 21 16.604809 Anserini +test1973 Q0 17498492 22 16.584187 Anserini +test1973 Q0 8536498 23 16.574106 Anserini +test1973 Q0 8536479 24 16.473585 Anserini +test1973 Q0 9219351 25 16.450796 Anserini +test1973 Q0 9219341 26 16.450796 Anserini +test1973 Q0 17174520 27 16.418171 Anserini +test1973 Q0 18698703 28 16.299545 Anserini +test1973 Q0 18698706 29 16.293617 Anserini +test1973 Q0 17498473 30 16.232740 Anserini +test1974 Q0 13491903 1 19.422392 Anserini +test1974 Q0 7441254 2 18.314325 Anserini +test1974 Q0 2025902 3 17.741467 Anserini +test1974 Q0 13491891 4 17.741467 Anserini +test1974 Q0 13491928 5 17.741467 Anserini +test1974 Q0 7719182 6 17.732586 Anserini +test1974 Q0 1351703 7 17.683800 Anserini +test1974 Q0 13491907 8 17.616123 Anserini +test1974 Q0 19985751 9 17.216454 Anserini +test1974 Q0 6343188 10 17.142796 Anserini +test1974 Q0 6343226 11 17.142796 Anserini +test1974 Q0 6343189 12 16.974298 Anserini +test1974 Q0 2025919 13 16.974298 Anserini +test1974 Q0 19985761 14 16.873322 Anserini +test1974 Q0 13491894 15 16.864441 Anserini +test1974 Q0 13491933 16 16.828886 Anserini +test1974 Q0 13491939 17 16.675291 Anserini +test1974 Q0 15575886 18 16.390184 Anserini +test1974 Q0 6343224 19 16.094299 Anserini +test1974 Q0 6343205 20 16.022236 Anserini +test1974 Q0 15575870 21 15.983719 Anserini +test1974 Q0 6343219 22 15.983719 Anserini +test1974 Q0 2025921 23 15.974838 Anserini +test1974 Q0 10947153 24 15.912486 Anserini +test1974 Q0 2025933 25 15.829551 Anserini +test1974 Q0 16849831 26 15.766052 Anserini +test1974 Q0 7719177 27 15.697559 Anserini +test1974 Q0 6343197 28 15.682874 Anserini +test1974 Q0 15575869 29 15.477880 Anserini +test1974 Q0 15944262 30 15.437081 Anserini +test1975 Q0 3300883 1 8.832393 Anserini +test1975 Q0 4310599 2 8.712416 Anserini +test1975 Q0 4310603 3 8.659451 Anserini +test1975 Q0 17053734 4 8.206112 Anserini +test1975 Q0 8526406 5 8.193442 Anserini +test1975 Q0 4851010 6 8.120625 Anserini +test1975 Q0 7425337 7 8.120625 Anserini +test1975 Q0 14773557 8 8.082419 Anserini +test1975 Q0 14651473 9 8.064989 Anserini +test1975 Q0 15900006 10 8.035809 Anserini +test1975 Q0 13292451 11 8.011246 Anserini +test1975 Q0 17160926 12 8.001968 Anserini +test1975 Q0 911474 13 7.989563 Anserini +test1975 Q0 2398430 14 7.963061 Anserini +test1975 Q0 5932809 15 7.939373 Anserini +test1975 Q0 11824380 16 7.905591 Anserini +test1975 Q0 8871792 17 7.905205 Anserini +test1975 Q0 19482805 18 7.872857 Anserini +test1975 Q0 4802714 19 7.856540 Anserini +test1975 Q0 5578990 20 7.851413 Anserini +test1975 Q0 19411478 21 7.851000 Anserini +test1975 Q0 19411476 22 7.851000 Anserini +test1975 Q0 8342199 23 7.850074 Anserini +test1975 Q0 12002432 24 7.781873 Anserini +test1975 Q0 12189913 25 7.729907 Anserini +test1975 Q0 5148215 26 7.729907 Anserini +test1975 Q0 5578991 27 7.725816 Anserini +test1975 Q0 15929473 28 7.704317 Anserini +test1975 Q0 12002424 29 7.682966 Anserini +test1975 Q0 14773556 30 7.680952 Anserini +test1976 Q0 19587397 1 10.677023 Anserini +test1976 Q0 19587395 2 10.677023 Anserini +test1976 Q0 1965866 3 10.433940 Anserini +test1976 Q0 9198059 4 10.336521 Anserini +test1976 Q0 18787081 5 10.205157 Anserini +test1976 Q0 20959647 6 10.158085 Anserini +test1976 Q0 5241072 7 10.105426 Anserini +test1976 Q0 5241083 8 10.105426 Anserini +test1976 Q0 9198051 9 9.941580 Anserini +test1976 Q0 16235476 10 9.864948 Anserini +test1976 Q0 16235536 11 9.864948 Anserini +test1976 Q0 20959645 12 9.712502 Anserini +test1976 Q0 14172014 13 9.683154 Anserini +test1976 Q0 10574027 14 9.632608 Anserini +test1976 Q0 19663464 15 9.582776 Anserini +test1976 Q0 16168151 16 9.492376 Anserini +test1976 Q0 16103087 17 9.490799 Anserini +test1976 Q0 16103095 18 9.490799 Anserini +test1976 Q0 16636133 19 9.428791 Anserini +test1976 Q0 14172016 20 9.426548 Anserini +test1976 Q0 20962842 21 9.372001 Anserini +test1976 Q0 15420042 22 9.346516 Anserini +test1976 Q0 2370353 23 9.332593 Anserini +test1976 Q0 20183295 24 9.318233 Anserini +test1976 Q0 13432408 25 9.318233 Anserini +test1976 Q0 16235531 26 9.279045 Anserini +test1976 Q0 7048718 27 9.240637 Anserini +test1976 Q0 12167042 28 9.104209 Anserini +test1976 Q0 1965864 29 9.036986 Anserini +test1976 Q0 21003233 30 8.980927 Anserini +test1977 Q0 16658203 1 12.267222 Anserini +test1977 Q0 18807434 2 11.802393 Anserini +test1977 Q0 12661178 3 11.645035 Anserini +test1977 Q0 18109339 4 11.412636 Anserini +test1977 Q0 5827792 5 10.830430 Anserini +test1977 Q0 16658199 6 10.518049 Anserini +test1977 Q0 16658193 7 10.123787 Anserini +test1977 Q0 9432688 8 9.781741 Anserini +test1977 Q0 9603970 9 9.726364 Anserini +test1977 Q0 6883629 10 9.723633 Anserini +test1977 Q0 17948605 11 9.665385 Anserini +test1977 Q0 20632016 12 9.603806 Anserini +test1977 Q0 17822370 13 9.596433 Anserini +test1977 Q0 17822368 14 9.531170 Anserini +test1977 Q0 19916911 15 9.520860 Anserini +test1977 Q0 5045693 16 9.514320 Anserini +test1977 Q0 11742640 17 9.479294 Anserini +test1977 Q0 17134947 18 9.459698 Anserini +test1977 Q0 4268287 19 9.353544 Anserini +test1977 Q0 20324344 20 9.295237 Anserini +test1977 Q0 17775688 21 9.293481 Anserini +test1977 Q0 191443 22 9.280319 Anserini +test1977 Q0 16658202 23 9.220117 Anserini +test1977 Q0 18378218 24 9.209968 Anserini +test1977 Q0 19618729 25 9.120353 Anserini +test1977 Q0 18150355 26 9.079460 Anserini +test1977 Q0 18365686 27 9.063024 Anserini +test1977 Q0 18534936 28 9.003809 Anserini +test1977 Q0 18534938 29 8.952611 Anserini +test1977 Q0 13578647 30 8.897084 Anserini +test1978 Q0 17834646 1 18.273546 Anserini +test1978 Q0 189932 2 18.171341 Anserini +test1978 Q0 3163932 3 17.658289 Anserini +test1978 Q0 17834643 4 17.562460 Anserini +test1978 Q0 14476319 5 16.893887 Anserini +test1978 Q0 14476322 6 16.782080 Anserini +test1978 Q0 14476320 7 16.585283 Anserini +test1978 Q0 9678593 8 16.428265 Anserini +test1978 Q0 3168510 9 16.419516 Anserini +test1978 Q0 3203971 10 16.088234 Anserini +test1978 Q0 5719032 11 16.033920 Anserini +test1978 Q0 6013449 12 15.888754 Anserini +test1978 Q0 9678594 13 15.884874 Anserini +test1978 Q0 3168239 14 15.861807 Anserini +test1978 Q0 3163930 15 15.742384 Anserini +test1978 Q0 2118721 16 15.684624 Anserini +test1978 Q0 5442691 17 15.662491 Anserini +test1978 Q0 3203975 18 15.623589 Anserini +test1978 Q0 349624 19 15.580398 Anserini +test1978 Q0 1068913 20 15.474098 Anserini +test1978 Q0 1082116 21 15.318682 Anserini +test1978 Q0 15632102 22 15.142341 Anserini +test1978 Q0 19896902 23 15.128641 Anserini +test1978 Q0 15156189 24 15.066355 Anserini +test1978 Q0 6013452 25 15.035257 Anserini +test1978 Q0 14481546 26 15.001650 Anserini +test1978 Q0 1068959 27 14.954634 Anserini +test1978 Q0 15632103 28 14.853310 Anserini +test1978 Q0 14481567 29 14.850941 Anserini +test1978 Q0 1068912 30 14.841558 Anserini +test1979 Q0 14537121 1 12.666331 Anserini +test1979 Q0 14537123 2 12.614992 Anserini +test1979 Q0 979373 3 12.177888 Anserini +test1979 Q0 979372 4 11.915812 Anserini +test1979 Q0 2101887 5 11.729099 Anserini +test1979 Q0 979375 6 11.523983 Anserini +test1979 Q0 17154902 7 11.503288 Anserini +test1979 Q0 17154901 8 11.384573 Anserini +test1979 Q0 6271161 9 11.231312 Anserini +test1979 Q0 17496835 10 11.218270 Anserini +test1979 Q0 9132987 11 11.174817 Anserini +test1979 Q0 20572760 12 11.068813 Anserini +test1979 Q0 7324852 13 11.039576 Anserini +test1979 Q0 2069541 14 11.012718 Anserini +test1979 Q0 15514168 15 10.921946 Anserini +test1979 Q0 12322030 16 10.913436 Anserini +test1979 Q0 5596663 17 10.864798 Anserini +test1979 Q0 1961631 18 10.851529 Anserini +test1979 Q0 979393 19 10.845839 Anserini +test1979 Q0 10720780 20 10.835876 Anserini +test1979 Q0 1961642 21 10.787473 Anserini +test1979 Q0 1786796 22 10.787473 Anserini +test1979 Q0 9593684 23 10.766430 Anserini +test1979 Q0 12322020 24 10.646742 Anserini +test1979 Q0 20448785 25 10.593700 Anserini +test1979 Q0 937181 26 10.529345 Anserini +test1979 Q0 20714715 27 10.521355 Anserini +test1979 Q0 6586677 28 10.506508 Anserini +test1979 Q0 19498205 29 10.496143 Anserini +test1979 Q0 979383 30 10.477448 Anserini +test198 Q0 8078967 1 18.281734 Anserini +test198 Q0 2224468 2 18.001196 Anserini +test198 Q0 12981600 3 17.924603 Anserini +test198 Q0 12981604 4 17.865768 Anserini +test198 Q0 1410573 5 17.705070 Anserini +test198 Q0 12384260 6 17.655293 Anserini +test198 Q0 1410606 7 17.239231 Anserini +test198 Q0 18791263 8 16.546110 Anserini +test198 Q0 1299567 9 16.487095 Anserini +test198 Q0 2736215 10 16.332012 Anserini +test198 Q0 18791265 11 16.250542 Anserini +test198 Q0 2766288 12 16.180325 Anserini +test198 Q0 10458298 13 16.129534 Anserini +test198 Q0 8572043 14 16.112284 Anserini +test198 Q0 4652461 15 16.080341 Anserini +test198 Q0 5946049 16 16.080341 Anserini +test198 Q0 2449612 17 16.048071 Anserini +test198 Q0 2736221 18 16.039118 Anserini +test198 Q0 2736222 19 16.036268 Anserini +test198 Q0 4815752 20 16.012804 Anserini +test198 Q0 2449619 21 15.952353 Anserini +test198 Q0 18791232 22 15.877360 Anserini +test198 Q0 4801858 23 15.860054 Anserini +test198 Q0 10586174 24 15.852806 Anserini +test198 Q0 2736213 25 15.757314 Anserini +test198 Q0 575747 26 15.744289 Anserini +test198 Q0 635940 27 15.704384 Anserini +test198 Q0 3811524 28 15.673954 Anserini +test198 Q0 3811528 29 15.673954 Anserini +test198 Q0 4652462 30 15.657392 Anserini +test1980 Q0 20802945 1 17.627022 Anserini +test1980 Q0 20807071 2 14.910364 Anserini +test1980 Q0 20802940 3 14.758203 Anserini +test1980 Q0 18694928 4 14.756701 Anserini +test1980 Q0 20802946 5 14.633110 Anserini +test1980 Q0 20802937 6 14.531171 Anserini +test1980 Q0 20891813 7 14.349062 Anserini +test1980 Q0 18694908 8 14.001973 Anserini +test1980 Q0 5424789 9 13.676283 Anserini +test1980 Q0 20802944 10 13.663166 Anserini +test1980 Q0 19835261 11 13.561837 Anserini +test1980 Q0 18694925 12 13.550914 Anserini +test1980 Q0 20788828 13 12.986471 Anserini +test1980 Q0 18041123 14 12.822840 Anserini +test1980 Q0 20705468 15 12.778048 Anserini +test1980 Q0 20234950 16 12.710023 Anserini +test1980 Q0 20788827 17 12.649153 Anserini +test1980 Q0 18694930 18 12.627055 Anserini +test1980 Q0 20802938 19 12.562267 Anserini +test1980 Q0 20788826 20 12.466709 Anserini +test1980 Q0 18425012 21 12.423132 Anserini +test1980 Q0 20705460 22 12.408884 Anserini +test1980 Q0 20705469 23 12.353847 Anserini +test1980 Q0 20788818 24 12.353847 Anserini +test1980 Q0 20802941 25 12.202056 Anserini +test1980 Q0 20807060 26 12.162190 Anserini +test1980 Q0 20802942 27 12.155740 Anserini +test1980 Q0 20788829 28 12.108721 Anserini +test1980 Q0 20802939 29 12.083389 Anserini +test1980 Q0 7717546 30 11.983690 Anserini +test1981 Q0 3064091 1 23.514956 Anserini +test1981 Q0 3064089 2 19.699635 Anserini +test1981 Q0 604700 3 19.690504 Anserini +test1981 Q0 3302597 4 19.687176 Anserini +test1981 Q0 604693 5 19.322447 Anserini +test1981 Q0 16399454 6 19.155907 Anserini +test1981 Q0 3064090 7 19.100885 Anserini +test1981 Q0 232321 8 18.261816 Anserini +test1981 Q0 12201605 9 18.241316 Anserini +test1981 Q0 604685 10 18.170506 Anserini +test1981 Q0 604701 11 18.170506 Anserini +test1981 Q0 2560753 12 18.086443 Anserini +test1981 Q0 11663664 13 17.896936 Anserini +test1981 Q0 2560760 14 17.877512 Anserini +test1981 Q0 2612881 15 17.862278 Anserini +test1981 Q0 2560751 16 17.682369 Anserini +test1981 Q0 604692 17 17.656448 Anserini +test1981 Q0 9519681 18 17.656448 Anserini +test1981 Q0 521347 19 17.617878 Anserini +test1981 Q0 2560756 20 17.617878 Anserini +test1981 Q0 432515 21 17.567291 Anserini +test1981 Q0 17935979 22 17.489281 Anserini +test1981 Q0 3184169 23 17.433784 Anserini +test1981 Q0 16446343 24 17.354156 Anserini +test1981 Q0 16446344 25 17.354156 Anserini +test1981 Q0 578577 26 17.314438 Anserini +test1981 Q0 6210604 27 17.297676 Anserini +test1981 Q0 232313 28 17.264900 Anserini +test1981 Q0 1297425 29 17.262775 Anserini +test1981 Q0 2560752 30 17.209436 Anserini +test1982 Q0 6881099 1 14.092615 Anserini +test1982 Q0 6881102 2 14.092615 Anserini +test1982 Q0 20045551 3 12.992863 Anserini +test1982 Q0 12488826 4 12.917822 Anserini +test1982 Q0 2069062 5 12.804055 Anserini +test1982 Q0 20045549 6 12.726701 Anserini +test1982 Q0 6630918 7 12.538276 Anserini +test1982 Q0 2880311 8 12.469749 Anserini +test1982 Q0 10987014 9 12.206357 Anserini +test1982 Q0 12488827 10 12.105570 Anserini +test1982 Q0 4126013 11 12.051693 Anserini +test1982 Q0 78074 12 12.037367 Anserini +test1982 Q0 20217950 13 11.989840 Anserini +test1982 Q0 12488830 14 11.816381 Anserini +test1982 Q0 671506 15 11.816381 Anserini +test1982 Q0 6630927 16 11.741921 Anserini +test1982 Q0 4401484 17 11.719895 Anserini +test1982 Q0 4401493 18 11.719895 Anserini +test1982 Q0 20217957 19 11.682809 Anserini +test1982 Q0 6606418 20 11.575958 Anserini +test1982 Q0 20017363 21 11.521869 Anserini +test1982 Q0 13556059 22 11.416121 Anserini +test1982 Q0 4126018 23 11.391548 Anserini +test1982 Q0 887547 24 11.372890 Anserini +test1982 Q0 8906158 25 11.325715 Anserini +test1982 Q0 10987015 26 11.309935 Anserini +test1982 Q0 1448469 27 11.289100 Anserini +test1982 Q0 10647940 28 11.287434 Anserini +test1982 Q0 9787284 29 11.284145 Anserini +test1982 Q0 20217954 30 11.284145 Anserini +test1983 Q0 18989041 1 15.690197 Anserini +test1983 Q0 17721202 2 14.687144 Anserini +test1983 Q0 10075190 3 13.884912 Anserini +test1983 Q0 19560392 4 13.877131 Anserini +test1983 Q0 19852830 5 13.727987 Anserini +test1983 Q0 17397158 6 13.610333 Anserini +test1983 Q0 19940469 7 13.325782 Anserini +test1983 Q0 2623072 8 13.259905 Anserini +test1983 Q0 17721201 9 13.092819 Anserini +test1983 Q0 16401725 10 12.859241 Anserini +test1983 Q0 5206143 11 12.839290 Anserini +test1983 Q0 18288089 12 12.740553 Anserini +test1983 Q0 5883466 13 12.654466 Anserini +test1983 Q0 8712426 14 12.576200 Anserini +test1983 Q0 7926500 15 12.569923 Anserini +test1983 Q0 14790854 16 12.548996 Anserini +test1983 Q0 4173863 17 12.513258 Anserini +test1983 Q0 16972318 18 12.425338 Anserini +test1983 Q0 8323046 19 12.405476 Anserini +test1983 Q0 15019028 20 12.377757 Anserini +test1983 Q0 5239082 21 12.359954 Anserini +test1983 Q0 10931607 22 12.299984 Anserini +test1983 Q0 19354353 23 12.252486 Anserini +test1983 Q0 8037794 24 12.230951 Anserini +test1983 Q0 14442970 25 12.207802 Anserini +test1983 Q0 16599165 26 12.141015 Anserini +test1983 Q0 16791036 27 12.109720 Anserini +test1983 Q0 9233116 28 12.092226 Anserini +test1983 Q0 6866517 29 12.033960 Anserini +test1983 Q0 9603388 30 12.022314 Anserini +test1984 Q0 7832876 1 15.218440 Anserini +test1984 Q0 7832883 2 14.829899 Anserini +test1984 Q0 7832893 3 14.549270 Anserini +test1984 Q0 13098159 4 13.878274 Anserini +test1984 Q0 7832884 5 13.604671 Anserini +test1984 Q0 7832889 6 12.502387 Anserini +test1984 Q0 13098147 7 12.388754 Anserini +test1984 Q0 16209610 8 12.296309 Anserini +test1984 Q0 16209612 9 11.622182 Anserini +test1984 Q0 13098154 10 11.576910 Anserini +test1984 Q0 13098178 11 11.464517 Anserini +test1984 Q0 13098183 12 11.412185 Anserini +test1984 Q0 7832906 13 11.250477 Anserini +test1984 Q0 7832887 14 11.114705 Anserini +test1984 Q0 13098172 15 11.031892 Anserini +test1984 Q0 13098167 16 10.946617 Anserini +test1984 Q0 13098152 17 10.900877 Anserini +test1984 Q0 13098151 18 10.885002 Anserini +test1984 Q0 13098188 19 10.867292 Anserini +test1984 Q0 13098173 20 10.850207 Anserini +test1984 Q0 18944761 21 10.834247 Anserini +test1984 Q0 15657302 22 10.778173 Anserini +test1984 Q0 18944762 23 10.594645 Anserini +test1984 Q0 13098155 24 10.470387 Anserini +test1984 Q0 6502256 25 10.464622 Anserini +test1984 Q0 15657298 26 10.426517 Anserini +test1984 Q0 16362814 27 10.278390 Anserini +test1984 Q0 2427288 28 10.258640 Anserini +test1984 Q0 15657303 29 10.155905 Anserini +test1984 Q0 13098184 30 10.129485 Anserini +test1985 Q0 7188336 1 18.736378 Anserini +test1985 Q0 8229875 2 17.654907 Anserini +test1985 Q0 9824539 3 17.379194 Anserini +test1985 Q0 7188333 4 16.953438 Anserini +test1985 Q0 8491113 5 15.928757 Anserini +test1985 Q0 14342609 6 15.694527 Anserini +test1985 Q0 7188335 7 15.471452 Anserini +test1985 Q0 1636984 8 15.372849 Anserini +test1985 Q0 11147939 9 14.584318 Anserini +test1985 Q0 11151520 10 14.400013 Anserini +test1985 Q0 11151521 11 14.400013 Anserini +test1985 Q0 7188334 12 14.305813 Anserini +test1985 Q0 166367 13 14.020473 Anserini +test1985 Q0 129562 14 13.897436 Anserini +test1985 Q0 15433039 15 13.749645 Anserini +test1985 Q0 2318734 16 13.202391 Anserini +test1985 Q0 11389069 17 13.084547 Anserini +test1985 Q0 11147938 18 13.058601 Anserini +test1985 Q0 166366 19 12.239488 Anserini +test1985 Q0 8818079 20 12.109270 Anserini +test1985 Q0 8229873 21 11.937002 Anserini +test1985 Q0 9566899 22 11.831893 Anserini +test1985 Q0 15115935 23 11.586487 Anserini +test1985 Q0 11306329 24 11.522456 Anserini +test1985 Q0 4583815 25 11.509113 Anserini +test1985 Q0 11306985 26 11.413274 Anserini +test1985 Q0 5080439 27 11.266799 Anserini +test1985 Q0 11317172 28 11.257581 Anserini +test1985 Q0 17432569 29 11.245811 Anserini +test1985 Q0 11320504 30 11.235258 Anserini +test1986 Q0 4180169 1 9.908817 Anserini +test1986 Q0 6092516 2 9.492016 Anserini +test1986 Q0 288207 3 9.359510 Anserini +test1986 Q0 105071 4 9.243267 Anserini +test1986 Q0 8499942 5 9.137370 Anserini +test1986 Q0 1847734 6 8.993278 Anserini +test1986 Q0 297455 7 8.876087 Anserini +test1986 Q0 13594372 8 8.861591 Anserini +test1986 Q0 11577761 9 8.850563 Anserini +test1986 Q0 197744 10 8.721516 Anserini +test1986 Q0 9062638 11 8.644780 Anserini +test1986 Q0 701006 12 8.636185 Anserini +test1986 Q0 4753014 13 8.594549 Anserini +test1986 Q0 18137427 14 8.582649 Anserini +test1986 Q0 14113238 15 8.555946 Anserini +test1986 Q0 19700708 16 8.522907 Anserini +test1986 Q0 5869143 17 8.454323 Anserini +test1986 Q0 1606086 18 8.442616 Anserini +test1986 Q0 5783761 19 8.416222 Anserini +test1986 Q0 3646438 20 8.402632 Anserini +test1986 Q0 13697896 21 8.335998 Anserini +test1986 Q0 63794 22 8.333161 Anserini +test1986 Q0 678185 23 8.310961 Anserini +test1986 Q0 16279896 24 8.301937 Anserini +test1986 Q0 7460180 25 8.257826 Anserini +test1986 Q0 4753021 26 8.211212 Anserini +test1986 Q0 13012757 27 8.191802 Anserini +test1986 Q0 1769920 28 8.178145 Anserini +test1986 Q0 19228771 29 8.147493 Anserini +test1986 Q0 839243 30 8.140252 Anserini +test1987 Q0 6953679 1 11.311223 Anserini +test1987 Q0 572364 2 10.636338 Anserini +test1987 Q0 16838277 3 10.147484 Anserini +test1987 Q0 12672551 4 10.097365 Anserini +test1987 Q0 1868245 5 9.785855 Anserini +test1987 Q0 12107173 6 9.670564 Anserini +test1987 Q0 16838274 7 9.580872 Anserini +test1987 Q0 5816088 8 9.531422 Anserini +test1987 Q0 5489377 9 9.399467 Anserini +test1987 Q0 1741820 10 9.391037 Anserini +test1987 Q0 1936093 11 9.390109 Anserini +test1987 Q0 2503042 12 9.329327 Anserini +test1987 Q0 13688321 13 9.317846 Anserini +test1987 Q0 1728858 14 9.259815 Anserini +test1987 Q0 911299 15 9.237933 Anserini +test1987 Q0 911292 16 9.237933 Anserini +test1987 Q0 2503031 17 9.214496 Anserini +test1987 Q0 19104313 18 9.201632 Anserini +test1987 Q0 20487167 19 9.197049 Anserini +test1987 Q0 1741826 20 9.148952 Anserini +test1987 Q0 6493691 21 9.123933 Anserini +test1987 Q0 11089857 22 9.122725 Anserini +test1987 Q0 2651255 23 9.117544 Anserini +test1987 Q0 2444777 24 9.112982 Anserini +test1987 Q0 6674305 25 9.102865 Anserini +test1987 Q0 8560945 26 9.102865 Anserini +test1987 Q0 11247488 27 9.102865 Anserini +test1987 Q0 11199686 28 9.102865 Anserini +test1987 Q0 18529551 29 9.102865 Anserini +test1987 Q0 17264573 30 9.075844 Anserini +test1988 Q0 4274420 1 16.581081 Anserini +test1988 Q0 4274429 2 16.574265 Anserini +test1988 Q0 4274427 3 16.472939 Anserini +test1988 Q0 4274425 4 16.338455 Anserini +test1988 Q0 4274419 5 16.332441 Anserini +test1988 Q0 2379418 6 16.079767 Anserini +test1988 Q0 4274426 7 15.615911 Anserini +test1988 Q0 4274421 8 15.429437 Anserini +test1988 Q0 4274423 9 15.239511 Anserini +test1988 Q0 9008973 10 15.205280 Anserini +test1988 Q0 3468788 11 14.879060 Anserini +test1988 Q0 4274428 12 14.861430 Anserini +test1988 Q0 4274324 13 14.352308 Anserini +test1988 Q0 9171589 14 13.847438 Anserini +test1988 Q0 4274424 15 13.615305 Anserini +test1988 Q0 18040006 16 13.386917 Anserini +test1988 Q0 2781814 17 13.302032 Anserini +test1988 Q0 5069375 18 13.036764 Anserini +test1988 Q0 8572973 19 12.936400 Anserini +test1988 Q0 2379421 20 12.627550 Anserini +test1988 Q0 11807742 21 12.518287 Anserini +test1988 Q0 3927511 22 12.427086 Anserini +test1988 Q0 11807738 23 12.385104 Anserini +test1988 Q0 2781809 24 12.312950 Anserini +test1988 Q0 4274422 25 12.233684 Anserini +test1988 Q0 11210145 26 12.181952 Anserini +test1988 Q0 9988117 27 11.953590 Anserini +test1988 Q0 4265803 28 11.703078 Anserini +test1988 Q0 15022042 29 11.667161 Anserini +test1988 Q0 10639835 30 11.601139 Anserini +test1989 Q0 5021377 1 16.995123 Anserini +test1989 Q0 6145264 2 16.370056 Anserini +test1989 Q0 3094423 3 16.030058 Anserini +test1989 Q0 6583741 4 15.572784 Anserini +test1989 Q0 1068323 5 15.512080 Anserini +test1989 Q0 3094454 6 15.421640 Anserini +test1989 Q0 5926682 7 14.744526 Anserini +test1989 Q0 6372075 8 14.653843 Anserini +test1989 Q0 2846172 9 14.585688 Anserini +test1989 Q0 3094446 10 14.529909 Anserini +test1989 Q0 5021354 11 14.422659 Anserini +test1989 Q0 1068306 12 14.413257 Anserini +test1989 Q0 1068305 13 14.406938 Anserini +test1989 Q0 11844559 14 14.373509 Anserini +test1989 Q0 8756555 15 14.265576 Anserini +test1989 Q0 8756554 16 14.235380 Anserini +test1989 Q0 1068331 17 13.900320 Anserini +test1989 Q0 5033085 18 13.895043 Anserini +test1989 Q0 4836074 19 13.797746 Anserini +test1989 Q0 1068283 20 13.728955 Anserini +test1989 Q0 7282994 21 13.709417 Anserini +test1989 Q0 1068336 22 13.709417 Anserini +test1989 Q0 5021353 23 13.684129 Anserini +test1989 Q0 17186418 24 13.683404 Anserini +test1989 Q0 1068325 25 13.574506 Anserini +test1989 Q0 9446316 26 13.497259 Anserini +test1989 Q0 4876512 27 13.476315 Anserini +test1989 Q0 5021376 28 13.451107 Anserini +test1989 Q0 5021363 29 13.431286 Anserini +test1989 Q0 1068295 30 13.430913 Anserini +test199 Q0 20105294 1 12.614762 Anserini +test199 Q0 20105280 2 12.412305 Anserini +test199 Q0 20105293 3 12.342296 Anserini +test199 Q0 1528271 4 11.785192 Anserini +test199 Q0 20105289 5 11.734630 Anserini +test199 Q0 4932683 6 11.456001 Anserini +test199 Q0 4234598 7 11.403746 Anserini +test199 Q0 1859275 8 11.309093 Anserini +test199 Q0 20105288 9 11.297758 Anserini +test199 Q0 20105273 10 11.297017 Anserini +test199 Q0 1528273 11 11.094514 Anserini +test199 Q0 2035114 12 11.022395 Anserini +test199 Q0 9437215 13 11.013316 Anserini +test199 Q0 2761504 14 10.999369 Anserini +test199 Q0 16590471 15 10.892251 Anserini +test199 Q0 17413205 16 10.885921 Anserini +test199 Q0 13460665 17 10.837582 Anserini +test199 Q0 19704878 18 10.819700 Anserini +test199 Q0 20105299 19 10.791368 Anserini +test199 Q0 6015517 20 10.791132 Anserini +test199 Q0 20105278 21 10.773868 Anserini +test199 Q0 6574995 22 10.770465 Anserini +test199 Q0 2079328 23 10.612816 Anserini +test199 Q0 2761496 24 10.588139 Anserini +test199 Q0 12271090 25 10.505549 Anserini +test199 Q0 12271092 26 10.505549 Anserini +test199 Q0 2521935 27 10.488256 Anserini +test199 Q0 4365498 28 10.467875 Anserini +test199 Q0 3928876 29 10.440901 Anserini +test199 Q0 7816266 30 10.423426 Anserini +test1990 Q0 5513889 1 12.958265 Anserini +test1990 Q0 11790768 2 12.436279 Anserini +test1990 Q0 9792674 3 12.207110 Anserini +test1990 Q0 11137039 4 12.206438 Anserini +test1990 Q0 5270593 5 12.086556 Anserini +test1990 Q0 961602 6 11.802677 Anserini +test1990 Q0 5513888 7 11.785087 Anserini +test1990 Q0 8579362 8 11.704000 Anserini +test1990 Q0 5270587 9 11.682198 Anserini +test1990 Q0 961604 10 11.595240 Anserini +test1990 Q0 5956394 11 11.551538 Anserini +test1990 Q0 961548 12 11.522189 Anserini +test1990 Q0 8022970 13 11.480744 Anserini +test1990 Q0 8845907 14 11.422931 Anserini +test1990 Q0 5270595 15 11.230831 Anserini +test1990 Q0 7360224 16 11.211998 Anserini +test1990 Q0 5270588 17 11.154335 Anserini +test1990 Q0 13692969 18 11.095510 Anserini +test1990 Q0 6679875 19 11.070813 Anserini +test1990 Q0 9410439 20 11.031984 Anserini +test1990 Q0 5270592 21 10.997384 Anserini +test1990 Q0 10533222 22 10.982089 Anserini +test1990 Q0 11491752 23 10.970950 Anserini +test1990 Q0 3465342 24 10.968894 Anserini +test1990 Q0 3278964 25 10.943119 Anserini +test1990 Q0 16405306 26 10.924698 Anserini +test1990 Q0 17753361 27 10.923445 Anserini +test1990 Q0 9808818 28 10.868961 Anserini +test1990 Q0 4899963 29 10.830175 Anserini +test1990 Q0 7074246 30 10.822508 Anserini +test1991 Q0 15583812 1 12.367517 Anserini +test1991 Q0 10522445 2 11.209415 Anserini +test1991 Q0 14455695 3 11.055910 Anserini +test1991 Q0 4104000 4 11.037530 Anserini +test1991 Q0 5205576 5 10.948951 Anserini +test1991 Q0 17624177 6 10.939838 Anserini +test1991 Q0 6824 7 10.913225 Anserini +test1991 Q0 17624183 8 10.877952 Anserini +test1991 Q0 11969634 9 10.867186 Anserini +test1991 Q0 5205571 10 10.821876 Anserini +test1991 Q0 16993050 11 10.766375 Anserini +test1991 Q0 16993051 12 10.766375 Anserini +test1991 Q0 11752812 13 10.648250 Anserini +test1991 Q0 12614598 14 10.472431 Anserini +test1991 Q0 8764927 15 10.457967 Anserini +test1991 Q0 12555290 16 10.331747 Anserini +test1991 Q0 4266614 17 10.326429 Anserini +test1991 Q0 14021779 18 10.296731 Anserini +test1991 Q0 786934 19 10.259323 Anserini +test1991 Q0 16568342 20 10.243605 Anserini +test1991 Q0 920875 21 10.154604 Anserini +test1991 Q0 7049623 22 10.138577 Anserini +test1991 Q0 4523947 23 10.134810 Anserini +test1991 Q0 20556017 24 10.124001 Anserini +test1991 Q0 13869656 25 10.097307 Anserini +test1991 Q0 9164015 26 10.056547 Anserini +test1991 Q0 13550452 27 10.030240 Anserini +test1991 Q0 8636852 28 10.012470 Anserini +test1991 Q0 17436930 29 9.999963 Anserini +test1991 Q0 13384645 30 9.982861 Anserini +test1992 Q0 18882250 1 11.523787 Anserini +test1992 Q0 7903575 2 11.290646 Anserini +test1992 Q0 8109384 3 11.256633 Anserini +test1992 Q0 20750936 4 11.183645 Anserini +test1992 Q0 6760459 5 11.020640 Anserini +test1992 Q0 20043195 6 11.016817 Anserini +test1992 Q0 20043197 7 11.016817 Anserini +test1992 Q0 16308646 8 10.829456 Anserini +test1992 Q0 7896424 9 10.761855 Anserini +test1992 Q0 3337616 10 10.751771 Anserini +test1992 Q0 19999799 11 10.694320 Anserini +test1992 Q0 17018104 12 10.612998 Anserini +test1992 Q0 19598636 13 10.595513 Anserini +test1992 Q0 18084002 14 10.592585 Anserini +test1992 Q0 2875655 15 10.552290 Anserini +test1992 Q0 1445788 16 10.509264 Anserini +test1992 Q0 14279947 17 10.509264 Anserini +test1992 Q0 467855 18 10.496999 Anserini +test1992 Q0 17605658 19 10.489907 Anserini +test1992 Q0 17722723 20 10.380936 Anserini +test1992 Q0 13535829 21 10.380936 Anserini +test1992 Q0 19490302 22 10.371712 Anserini +test1992 Q0 17899350 23 10.340726 Anserini +test1992 Q0 20827493 24 10.316010 Anserini +test1992 Q0 18758423 25 10.297947 Anserini +test1992 Q0 19666205 26 10.242422 Anserini +test1992 Q0 19043709 27 10.217031 Anserini +test1992 Q0 16355126 28 10.170483 Anserini +test1992 Q0 528535 29 10.157065 Anserini +test1992 Q0 17626369 30 10.153350 Anserini +test1993 Q0 20711270 1 17.181755 Anserini +test1993 Q0 19733689 2 16.524818 Anserini +test1993 Q0 8320727 3 15.129364 Anserini +test1993 Q0 8320731 4 14.568295 Anserini +test1993 Q0 19733727 5 14.339746 Anserini +test1993 Q0 19733732 6 14.319686 Anserini +test1993 Q0 11745396 7 14.304280 Anserini +test1993 Q0 19733783 8 14.283800 Anserini +test1993 Q0 19733692 9 14.243511 Anserini +test1993 Q0 20882346 10 14.165435 Anserini +test1993 Q0 19733693 11 14.106598 Anserini +test1993 Q0 11745405 12 14.043368 Anserini +test1993 Q0 19733760 13 13.641612 Anserini +test1993 Q0 11745404 14 13.195968 Anserini +test1993 Q0 8320728 15 12.978285 Anserini +test1993 Q0 19733779 16 12.917839 Anserini +test1993 Q0 19733771 17 12.889540 Anserini +test1993 Q0 19733720 18 12.874112 Anserini +test1993 Q0 5881707 19 12.853881 Anserini +test1993 Q0 19733748 20 12.846805 Anserini +test1993 Q0 19733756 21 12.779108 Anserini +test1993 Q0 3220920 22 12.763611 Anserini +test1993 Q0 19733702 23 12.718789 Anserini +test1993 Q0 19733696 24 12.703443 Anserini +test1993 Q0 19733745 25 12.670311 Anserini +test1993 Q0 11745402 26 12.641693 Anserini +test1993 Q0 19733697 27 12.576028 Anserini +test1993 Q0 19733708 28 12.555008 Anserini +test1993 Q0 19733759 29 12.518857 Anserini +test1993 Q0 11745400 30 12.481180 Anserini +test1994 Q0 211170 1 15.932081 Anserini +test1994 Q0 211169 2 15.841476 Anserini +test1994 Q0 16214477 3 15.631016 Anserini +test1994 Q0 6610788 4 15.594214 Anserini +test1994 Q0 211192 5 15.543973 Anserini +test1994 Q0 16063522 6 14.959426 Anserini +test1994 Q0 721906 7 14.899482 Anserini +test1994 Q0 211194 8 14.872038 Anserini +test1994 Q0 12448846 9 14.245534 Anserini +test1994 Q0 721915 10 14.179391 Anserini +test1994 Q0 211191 11 14.120635 Anserini +test1994 Q0 4737122 12 14.069574 Anserini +test1994 Q0 211165 13 14.029803 Anserini +test1994 Q0 721893 14 13.937114 Anserini +test1994 Q0 211155 15 13.925547 Anserini +test1994 Q0 211156 16 13.871925 Anserini +test1994 Q0 17550749 17 13.869729 Anserini +test1994 Q0 16214479 18 13.853268 Anserini +test1994 Q0 9404435 19 13.838120 Anserini +test1994 Q0 211206 20 13.799468 Anserini +test1994 Q0 13018600 21 13.752748 Anserini +test1994 Q0 211172 22 13.742503 Anserini +test1994 Q0 18679866 23 13.690287 Anserini +test1994 Q0 211154 24 13.393517 Anserini +test1994 Q0 530435 25 13.341875 Anserini +test1994 Q0 2463439 26 13.335043 Anserini +test1994 Q0 4741673 27 13.312605 Anserini +test1994 Q0 211158 28 13.018840 Anserini +test1994 Q0 895247 29 12.949495 Anserini +test1994 Q0 3046610 30 12.932968 Anserini +test1995 Q0 3091229 1 18.462948 Anserini +test1995 Q0 2899123 2 17.853310 Anserini +test1995 Q0 15154729 3 17.168695 Anserini +test1995 Q0 18945404 4 16.987574 Anserini +test1995 Q0 15154731 5 16.715839 Anserini +test1995 Q0 2899124 6 16.537645 Anserini +test1995 Q0 43644 7 16.510096 Anserini +test1995 Q0 10146124 8 15.875858 Anserini +test1995 Q0 15154727 9 15.846313 Anserini +test1995 Q0 29925 10 15.730170 Anserini +test1995 Q0 2119944 11 15.628386 Anserini +test1995 Q0 15355408 12 15.589568 Anserini +test1995 Q0 765885 13 15.537262 Anserini +test1995 Q0 1585413 14 15.361568 Anserini +test1995 Q0 14072823 15 15.103681 Anserini +test1995 Q0 15154730 16 15.001750 Anserini +test1995 Q0 15154733 17 14.890713 Anserini +test1995 Q0 15154732 18 14.750289 Anserini +test1995 Q0 13513082 19 14.655696 Anserini +test1995 Q0 12409728 20 14.519659 Anserini +test1995 Q0 10884352 21 14.387536 Anserini +test1995 Q0 20129270 22 14.358478 Anserini +test1995 Q0 576728 23 14.263308 Anserini +test1995 Q0 11518994 24 14.256606 Anserini +test1995 Q0 13821925 25 14.183439 Anserini +test1995 Q0 278112 26 14.131433 Anserini +test1995 Q0 13916266 27 14.131182 Anserini +test1995 Q0 15691431 28 14.024179 Anserini +test1995 Q0 295484 29 13.958557 Anserini +test1995 Q0 17227117 30 13.861079 Anserini +test1996 Q0 13425902 1 44.721695 Anserini +test1996 Q0 13425908 2 44.240646 Anserini +test1996 Q0 14394562 3 42.248085 Anserini +test1996 Q0 16012683 4 41.998707 Anserini +test1996 Q0 14394564 5 41.939838 Anserini +test1996 Q0 12545149 6 40.078773 Anserini +test1996 Q0 14394563 7 37.400059 Anserini +test1996 Q0 13425906 8 36.962708 Anserini +test1996 Q0 16237603 9 36.459774 Anserini +test1996 Q0 18584585 10 36.213406 Anserini +test1996 Q0 19772599 11 34.903774 Anserini +test1996 Q0 18193817 12 34.641022 Anserini +test1996 Q0 19106234 13 34.127598 Anserini +test1996 Q0 19106235 14 34.127598 Anserini +test1996 Q0 14359547 15 34.006233 Anserini +test1996 Q0 16012682 16 33.919094 Anserini +test1996 Q0 16012685 17 33.919094 Anserini +test1996 Q0 14359548 18 33.659206 Anserini +test1996 Q0 16513694 19 32.947956 Anserini +test1996 Q0 16513693 20 32.941872 Anserini +test1996 Q0 13425905 21 32.520214 Anserini +test1996 Q0 13425903 22 32.468216 Anserini +test1996 Q0 16513692 23 31.299107 Anserini +test1996 Q0 18584588 24 30.836432 Anserini +test1996 Q0 17983720 25 30.421747 Anserini +test1996 Q0 17983722 26 29.324209 Anserini +test1996 Q0 20797106 27 29.214565 Anserini +test1996 Q0 5885847 28 29.128122 Anserini +test1996 Q0 5885848 29 29.128122 Anserini +test1996 Q0 18721194 30 28.921911 Anserini +test1997 Q0 16156012 1 15.062483 Anserini +test1997 Q0 16156013 2 13.631410 Anserini +test1997 Q0 16156015 3 13.567069 Anserini +test1997 Q0 6438213 4 13.421094 Anserini +test1997 Q0 3568636 5 13.310001 Anserini +test1997 Q0 1874066 6 12.789252 Anserini +test1997 Q0 4290098 7 12.621775 Anserini +test1997 Q0 16156014 8 12.501677 Anserini +test1997 Q0 778318 9 12.456623 Anserini +test1997 Q0 14572514 10 12.125269 Anserini +test1997 Q0 1911623 11 12.024021 Anserini +test1997 Q0 5077033 12 11.854285 Anserini +test1997 Q0 52153 13 11.704374 Anserini +test1997 Q0 4656063 14 11.606900 Anserini +test1997 Q0 1955563 15 11.597481 Anserini +test1997 Q0 12999870 16 11.369695 Anserini +test1997 Q0 2327274 17 11.239615 Anserini +test1997 Q0 8108416 18 10.854292 Anserini +test1997 Q0 10272589 19 10.827667 Anserini +test1997 Q0 14359832 20 10.823446 Anserini +test1997 Q0 3568635 21 10.817010 Anserini +test1997 Q0 16615412 22 10.696720 Anserini +test1997 Q0 6782773 23 10.665081 Anserini +test1997 Q0 9286386 24 10.605080 Anserini +test1997 Q0 12654010 25 10.530893 Anserini +test1997 Q0 16156024 26 10.405717 Anserini +test1997 Q0 8934941 27 10.244041 Anserini +test1997 Q0 6229745 28 10.230308 Anserini +test1997 Q0 14083478 29 10.134940 Anserini +test1997 Q0 11964542 30 10.090554 Anserini +test1998 Q0 7645969 1 8.776320 Anserini +test1998 Q0 14025016 2 8.243445 Anserini +test1998 Q0 13763913 3 8.044545 Anserini +test1998 Q0 6143214 4 7.994046 Anserini +test1998 Q0 12449436 5 7.955431 Anserini +test1998 Q0 3586332 6 7.928356 Anserini +test1998 Q0 1269120 7 7.894565 Anserini +test1998 Q0 4417450 8 7.893457 Anserini +test1998 Q0 4469641 9 7.889500 Anserini +test1998 Q0 307694 10 7.888014 Anserini +test1998 Q0 15147145 11 7.821379 Anserini +test1998 Q0 4676279 12 7.815475 Anserini +test1998 Q0 11349468 13 7.710431 Anserini +test1998 Q0 11389959 14 7.658422 Anserini +test1998 Q0 1269106 15 7.599945 Anserini +test1998 Q0 18979662 16 7.597858 Anserini +test1998 Q0 17352379 17 7.575572 Anserini +test1998 Q0 4417451 18 7.570449 Anserini +test1998 Q0 4440837 19 7.532611 Anserini +test1998 Q0 3284916 20 7.525179 Anserini +test1998 Q0 9527605 21 7.525179 Anserini +test1998 Q0 15147210 22 7.525179 Anserini +test1998 Q0 14240531 23 7.525179 Anserini +test1998 Q0 2958578 24 7.525179 Anserini +test1998 Q0 1254446 25 7.495618 Anserini +test1998 Q0 939314 26 7.495618 Anserini +test1998 Q0 6582206 27 7.445118 Anserini +test1998 Q0 8479182 28 7.445118 Anserini +test1998 Q0 16970703 29 7.445118 Anserini +test1998 Q0 1269116 30 7.380867 Anserini +test1999 Q0 4547719 1 18.890802 Anserini +test1999 Q0 4547716 2 17.249146 Anserini +test1999 Q0 633114 3 16.741707 Anserini +test1999 Q0 4547718 4 16.558212 Anserini +test1999 Q0 5612688 5 16.137566 Anserini +test1999 Q0 5612689 6 16.024536 Anserini +test1999 Q0 6401454 7 15.582743 Anserini +test1999 Q0 633113 8 15.514645 Anserini +test1999 Q0 19959330 9 14.958944 Anserini +test1999 Q0 633106 10 14.949190 Anserini +test1999 Q0 633121 11 14.618491 Anserini +test1999 Q0 18812387 12 14.605871 Anserini +test1999 Q0 7718989 13 14.497707 Anserini +test1999 Q0 633111 14 14.399536 Anserini +test1999 Q0 18812384 15 14.360988 Anserini +test1999 Q0 7718988 16 14.278676 Anserini +test1999 Q0 4067299 17 14.228448 Anserini +test1999 Q0 633105 18 14.054110 Anserini +test1999 Q0 4067304 19 14.020653 Anserini +test1999 Q0 7718963 20 14.005995 Anserini +test1999 Q0 6401457 21 13.936530 Anserini +test1999 Q0 633131 22 13.891893 Anserini +test1999 Q0 633110 23 13.887353 Anserini +test1999 Q0 4799774 24 13.793197 Anserini +test1999 Q0 4799767 25 13.779787 Anserini +test1999 Q0 4547717 26 13.779451 Anserini +test1999 Q0 633115 27 13.778739 Anserini +test1999 Q0 4541702 28 13.761092 Anserini +test1999 Q0 5207642 29 13.729634 Anserini +test1999 Q0 3705930 30 13.562181 Anserini +test2 Q0 4222345 1 14.251537 Anserini +test2 Q0 9496184 2 13.644800 Anserini +test2 Q0 5420549 3 13.215161 Anserini +test2 Q0 12601352 4 12.937867 Anserini +test2 Q0 2633798 5 12.875674 Anserini +test2 Q0 520921 6 12.655104 Anserini +test2 Q0 20667933 7 12.616635 Anserini +test2 Q0 17749385 8 12.607007 Anserini +test2 Q0 1511776 9 12.599833 Anserini +test2 Q0 4599315 10 12.246901 Anserini +test2 Q0 2392394 11 12.232876 Anserini +test2 Q0 18773582 12 12.184446 Anserini +test2 Q0 1397785 13 12.159570 Anserini +test2 Q0 1954747 14 12.157771 Anserini +test2 Q0 17749387 15 12.114801 Anserini +test2 Q0 443607 16 12.077376 Anserini +test2 Q0 483706 17 12.005417 Anserini +test2 Q0 1480348 18 11.967418 Anserini +test2 Q0 18773577 19 11.848868 Anserini +test2 Q0 10301314 20 11.838587 Anserini +test2 Q0 4311966 21 11.745979 Anserini +test2 Q0 4599314 22 11.745680 Anserini +test2 Q0 16745936 23 11.706784 Anserini +test2 Q0 16587520 24 11.611269 Anserini +test2 Q0 7156852 25 11.568183 Anserini +test2 Q0 9947724 26 11.514177 Anserini +test2 Q0 3599082 27 11.238553 Anserini +test2 Q0 3999981 28 11.236997 Anserini +test2 Q0 991862 29 11.236833 Anserini +test2 Q0 1450312 30 11.215782 Anserini +test20 Q0 309430 1 15.248784 Anserini +test20 Q0 10114703 2 14.114455 Anserini +test20 Q0 18913740 3 14.053786 Anserini +test20 Q0 5516199 4 14.049574 Anserini +test20 Q0 14018025 5 13.876678 Anserini +test20 Q0 9361439 6 13.863780 Anserini +test20 Q0 9361452 7 13.810623 Anserini +test20 Q0 10850049 8 13.797299 Anserini +test20 Q0 14018024 9 13.622729 Anserini +test20 Q0 16192003 10 13.576886 Anserini +test20 Q0 1631253 11 13.388357 Anserini +test20 Q0 232083 12 13.328817 Anserini +test20 Q0 1631236 13 13.314667 Anserini +test20 Q0 12391482 14 13.314667 Anserini +test20 Q0 232091 15 13.111755 Anserini +test20 Q0 5466846 16 13.081883 Anserini +test20 Q0 9964832 17 12.935714 Anserini +test20 Q0 5442004 18 12.917376 Anserini +test20 Q0 9361440 19 12.866907 Anserini +test20 Q0 1650272 20 12.850679 Anserini +test20 Q0 5512758 21 12.827065 Anserini +test20 Q0 17643182 22 12.822609 Anserini +test20 Q0 18738838 23 12.768792 Anserini +test20 Q0 1631303 24 12.656219 Anserini +test20 Q0 10067269 25 12.631056 Anserini +test20 Q0 232052 26 12.615738 Anserini +test20 Q0 1631230 27 12.589259 Anserini +test20 Q0 1544882 28 12.566791 Anserini +test20 Q0 12391488 29 12.563311 Anserini +test20 Q0 12228695 30 12.539233 Anserini +test200 Q0 4552392 1 11.784709 Anserini +test200 Q0 4552287 2 11.341972 Anserini +test200 Q0 4739033 3 11.073456 Anserini +test200 Q0 11635785 4 11.042780 Anserini +test200 Q0 4171254 5 11.032673 Anserini +test200 Q0 8282152 6 10.963047 Anserini +test200 Q0 10131465 7 10.832611 Anserini +test200 Q0 16644464 8 10.698959 Anserini +test200 Q0 12994260 9 10.665680 Anserini +test200 Q0 12427565 10 10.617613 Anserini +test200 Q0 20734297 11 10.609802 Anserini +test200 Q0 10592707 12 10.560347 Anserini +test200 Q0 16582578 13 10.505854 Anserini +test200 Q0 13301481 14 10.500248 Anserini +test200 Q0 7475495 15 10.384062 Anserini +test200 Q0 20194412 16 10.383321 Anserini +test200 Q0 4552294 17 10.374256 Anserini +test200 Q0 18242547 18 10.337143 Anserini +test200 Q0 20183793 19 10.265609 Anserini +test200 Q0 10129935 20 10.139806 Anserini +test200 Q0 1255878 21 10.097328 Anserini +test200 Q0 12995561 22 10.097328 Anserini +test200 Q0 17382008 23 10.093725 Anserini +test200 Q0 17382010 24 10.093725 Anserini +test200 Q0 11132117 25 10.025089 Anserini +test200 Q0 5959550 26 9.988302 Anserini +test200 Q0 3288686 27 9.965124 Anserini +test200 Q0 4171259 28 9.925806 Anserini +test200 Q0 4340440 29 9.908590 Anserini +test200 Q0 17330259 30 9.901557 Anserini +test2000 Q0 17228347 1 15.216820 Anserini +test2000 Q0 17228379 2 15.050432 Anserini +test2000 Q0 14617208 3 14.362901 Anserini +test2000 Q0 19975753 4 13.953698 Anserini +test2000 Q0 20827257 5 13.937305 Anserini +test2000 Q0 19975756 6 13.790981 Anserini +test2000 Q0 19723529 7 13.414617 Anserini +test2000 Q0 18872604 8 13.225821 Anserini +test2000 Q0 17228349 9 13.028673 Anserini +test2000 Q0 17228354 10 12.762449 Anserini +test2000 Q0 20827255 11 12.692114 Anserini +test2000 Q0 16416765 12 12.627031 Anserini +test2000 Q0 17825389 13 12.519835 Anserini +test2000 Q0 17228356 14 12.314139 Anserini +test2000 Q0 20767947 15 12.058089 Anserini +test2000 Q0 9947373 16 12.001317 Anserini +test2000 Q0 9654569 17 11.947584 Anserini +test2000 Q0 2968807 18 11.943486 Anserini +test2000 Q0 17228370 19 11.934699 Anserini +test2000 Q0 17228376 20 11.924060 Anserini +test2000 Q0 19975754 21 11.909225 Anserini +test2000 Q0 19723518 22 11.785761 Anserini +test2000 Q0 17228366 23 11.716016 Anserini +test2000 Q0 5210426 24 11.632874 Anserini +test2000 Q0 18872611 25 11.618193 Anserini +test2000 Q0 20548040 26 11.610395 Anserini +test2000 Q0 19723530 27 11.596495 Anserini +test2000 Q0 17245281 28 11.593725 Anserini +test2000 Q0 18085259 29 11.495916 Anserini +test2000 Q0 4293007 30 11.490984 Anserini +test2001 Q0 1780173 1 20.952656 Anserini +test2001 Q0 20487318 2 20.344879 Anserini +test2001 Q0 1780175 3 19.534523 Anserini +test2001 Q0 20487319 4 18.354328 Anserini +test2001 Q0 17779187 5 18.251776 Anserini +test2001 Q0 7117496 6 17.207645 Anserini +test2001 Q0 15785440 7 16.805731 Anserini +test2001 Q0 15631974 8 16.591574 Anserini +test2001 Q0 1780179 9 16.304781 Anserini +test2001 Q0 6356376 10 16.181622 Anserini +test2001 Q0 6367396 11 16.178864 Anserini +test2001 Q0 7530131 12 16.033276 Anserini +test2001 Q0 1780178 13 15.943707 Anserini +test2001 Q0 8011048 14 15.855929 Anserini +test2001 Q0 8011049 15 15.855929 Anserini +test2001 Q0 2297126 16 15.678029 Anserini +test2001 Q0 7067767 17 15.594728 Anserini +test2001 Q0 7117491 18 15.590990 Anserini +test2001 Q0 15653904 19 15.566422 Anserini +test2001 Q0 2756791 20 15.424219 Anserini +test2001 Q0 508861 21 15.415821 Anserini +test2001 Q0 9553656 22 15.312239 Anserini +test2001 Q0 3969757 23 15.278680 Anserini +test2001 Q0 8277608 24 15.236238 Anserini +test2001 Q0 2297127 25 15.229313 Anserini +test2001 Q0 6416642 26 15.174488 Anserini +test2001 Q0 6416638 27 15.140409 Anserini +test2001 Q0 7607851 28 15.060584 Anserini +test2001 Q0 5691286 29 14.952137 Anserini +test2001 Q0 1780174 30 14.853771 Anserini +test2002 Q0 18032518 1 12.339822 Anserini +test2002 Q0 14316989 2 12.043192 Anserini +test2002 Q0 19223314 3 12.028979 Anserini +test2002 Q0 4968019 4 11.930743 Anserini +test2002 Q0 6557243 5 11.891775 Anserini +test2002 Q0 7797281 6 11.714701 Anserini +test2002 Q0 6106452 7 11.651340 Anserini +test2002 Q0 13684687 8 11.628645 Anserini +test2002 Q0 8745 9 11.517260 Anserini +test2002 Q0 9259845 10 11.501829 Anserini +test2002 Q0 1300577 11 11.459368 Anserini +test2002 Q0 6506803 12 11.455824 Anserini +test2002 Q0 11460085 13 11.376167 Anserini +test2002 Q0 18142214 14 11.307811 Anserini +test2002 Q0 6229843 15 11.302309 Anserini +test2002 Q0 13410964 16 11.259915 Anserini +test2002 Q0 20667365 17 11.228300 Anserini +test2002 Q0 20667366 18 11.226981 Anserini +test2002 Q0 7211002 19 11.222614 Anserini +test2002 Q0 2731006 20 11.218083 Anserini +test2002 Q0 8839716 21 11.146977 Anserini +test2002 Q0 8365837 22 11.140823 Anserini +test2002 Q0 9405066 23 11.130505 Anserini +test2002 Q0 4139017 24 11.124614 Anserini +test2002 Q0 835887 25 11.108414 Anserini +test2002 Q0 8989883 26 11.094186 Anserini +test2002 Q0 14776446 27 11.077015 Anserini +test2002 Q0 12111201 28 11.024436 Anserini +test2002 Q0 6568873 29 10.994671 Anserini +test2002 Q0 6810178 30 10.993214 Anserini +test2003 Q0 12167092 1 12.567089 Anserini +test2003 Q0 16443892 2 11.684721 Anserini +test2003 Q0 15024802 3 10.948025 Anserini +test2003 Q0 6927293 4 10.945961 Anserini +test2003 Q0 592780 5 10.765638 Anserini +test2003 Q0 3048851 6 10.752935 Anserini +test2003 Q0 16443905 7 10.740295 Anserini +test2003 Q0 15558170 8 10.727433 Anserini +test2003 Q0 19348457 9 10.651983 Anserini +test2003 Q0 17650939 10 10.533158 Anserini +test2003 Q0 14769980 11 10.492315 Anserini +test2003 Q0 11460841 12 10.375937 Anserini +test2003 Q0 6927335 13 10.368163 Anserini +test2003 Q0 15558218 14 10.352845 Anserini +test2003 Q0 20818597 15 10.347508 Anserini +test2003 Q0 18100729 16 10.328747 Anserini +test2003 Q0 15558196 17 10.324272 Anserini +test2003 Q0 3596344 18 10.308234 Anserini +test2003 Q0 20433802 19 10.296885 Anserini +test2003 Q0 19471995 20 10.292364 Anserini +test2003 Q0 20654077 21 10.210295 Anserini +test2003 Q0 592777 22 10.207450 Anserini +test2003 Q0 10253254 23 10.114957 Anserini +test2003 Q0 14058638 24 10.092526 Anserini +test2003 Q0 19416680 25 10.078148 Anserini +test2003 Q0 19052134 26 10.061531 Anserini +test2003 Q0 3278400 27 10.051481 Anserini +test2003 Q0 20772362 28 9.985575 Anserini +test2003 Q0 19077551 29 9.974351 Anserini +test2003 Q0 19842706 30 9.904214 Anserini +test2004 Q0 5886640 1 15.245708 Anserini +test2004 Q0 11579805 2 14.123023 Anserini +test2004 Q0 250709 3 14.017240 Anserini +test2004 Q0 5402808 4 13.524205 Anserini +test2004 Q0 5886649 5 13.434428 Anserini +test2004 Q0 451500 6 13.428213 Anserini +test2004 Q0 12680390 7 13.414761 Anserini +test2004 Q0 13308421 8 13.399504 Anserini +test2004 Q0 250749 9 13.274338 Anserini +test2004 Q0 250707 10 13.197191 Anserini +test2004 Q0 250712 11 13.035227 Anserini +test2004 Q0 250752 12 13.009784 Anserini +test2004 Q0 11635468 13 12.857562 Anserini +test2004 Q0 250721 14 12.842054 Anserini +test2004 Q0 8505621 15 12.826521 Anserini +test2004 Q0 5409248 16 12.758038 Anserini +test2004 Q0 359882 17 12.747490 Anserini +test2004 Q0 8088298 18 12.746495 Anserini +test2004 Q0 4235640 19 12.669172 Anserini +test2004 Q0 16670038 20 12.618991 Anserini +test2004 Q0 12073651 21 12.592242 Anserini +test2004 Q0 8125196 22 12.585027 Anserini +test2004 Q0 9490419 23 12.534090 Anserini +test2004 Q0 62340 24 12.512823 Anserini +test2004 Q0 250731 25 12.506517 Anserini +test2004 Q0 5878213 26 12.468606 Anserini +test2004 Q0 250723 27 12.429225 Anserini +test2004 Q0 873590 28 12.412011 Anserini +test2004 Q0 14158240 29 12.412011 Anserini +test2004 Q0 8088297 30 12.409285 Anserini +test2005 Q0 789658 1 14.529442 Anserini +test2005 Q0 20840622 2 13.786585 Anserini +test2005 Q0 667647 3 13.466930 Anserini +test2005 Q0 817098 4 13.268887 Anserini +test2005 Q0 20691703 5 13.153785 Anserini +test2005 Q0 15244803 6 12.814980 Anserini +test2005 Q0 17966177 7 12.776465 Anserini +test2005 Q0 12961666 8 12.661119 Anserini +test2005 Q0 6276532 9 12.539364 Anserini +test2005 Q0 16970659 10 12.359848 Anserini +test2005 Q0 14581921 11 12.331038 Anserini +test2005 Q0 18126832 12 12.326645 Anserini +test2005 Q0 2377161 13 12.275360 Anserini +test2005 Q0 17539223 14 12.184648 Anserini +test2005 Q0 740495 15 12.105351 Anserini +test2005 Q0 3762282 16 12.085157 Anserini +test2005 Q0 5266637 17 12.084974 Anserini +test2005 Q0 864925 18 12.077178 Anserini +test2005 Q0 7933430 19 12.050594 Anserini +test2005 Q0 8657157 20 12.031641 Anserini +test2005 Q0 15888916 21 12.028525 Anserini +test2005 Q0 6369608 22 11.997026 Anserini +test2005 Q0 17321466 23 11.995646 Anserini +test2005 Q0 17870705 24 11.951741 Anserini +test2005 Q0 19353451 25 11.913525 Anserini +test2005 Q0 16438709 26 11.842519 Anserini +test2005 Q0 6369609 27 11.837110 Anserini +test2005 Q0 3784651 28 11.833950 Anserini +test2005 Q0 8945327 29 11.808175 Anserini +test2005 Q0 5215385 30 11.763291 Anserini +test2006 Q0 7415905 1 12.605314 Anserini +test2006 Q0 20639248 2 12.572801 Anserini +test2006 Q0 7480554 3 12.514844 Anserini +test2006 Q0 5264204 4 12.011848 Anserini +test2006 Q0 3673879 5 11.843118 Anserini +test2006 Q0 15533333 6 11.778052 Anserini +test2006 Q0 11296563 7 11.298551 Anserini +test2006 Q0 19470322 8 11.179611 Anserini +test2006 Q0 10889069 9 11.070534 Anserini +test2006 Q0 18160077 10 10.831444 Anserini +test2006 Q0 18885616 11 10.628244 Anserini +test2006 Q0 5264194 12 10.583076 Anserini +test2006 Q0 13071305 13 10.520784 Anserini +test2006 Q0 7301456 14 10.495810 Anserini +test2006 Q0 17715645 15 10.484521 Anserini +test2006 Q0 12678761 16 10.388060 Anserini +test2006 Q0 11150197 17 10.375749 Anserini +test2006 Q0 11150198 18 10.375749 Anserini +test2006 Q0 5189763 19 10.367307 Anserini +test2006 Q0 14279969 20 10.295120 Anserini +test2006 Q0 7260974 21 10.291637 Anserini +test2006 Q0 11355673 22 10.276707 Anserini +test2006 Q0 13071302 23 10.266535 Anserini +test2006 Q0 4654969 24 10.150809 Anserini +test2006 Q0 15533864 25 10.136662 Anserini +test2006 Q0 9167132 26 10.106179 Anserini +test2006 Q0 96741 27 10.014980 Anserini +test2006 Q0 3912716 28 10.014385 Anserini +test2006 Q0 5101846 29 9.940554 Anserini +test2006 Q0 5264206 30 9.940554 Anserini +test2007 Q0 6805705 1 14.235869 Anserini +test2007 Q0 15368944 2 13.387880 Anserini +test2007 Q0 8079108 3 12.093184 Anserini +test2007 Q0 9215981 4 11.939419 Anserini +test2007 Q0 9540860 5 11.856086 Anserini +test2007 Q0 6805753 6 11.796024 Anserini +test2007 Q0 6657300 7 11.707082 Anserini +test2007 Q0 9215986 8 11.275437 Anserini +test2007 Q0 8079114 9 11.171587 Anserini +test2007 Q0 14048586 10 11.150321 Anserini +test2007 Q0 19264995 11 10.945630 Anserini +test2007 Q0 19264992 12 10.920210 Anserini +test2007 Q0 20301721 13 10.763588 Anserini +test2007 Q0 6657299 14 10.735172 Anserini +test2007 Q0 6805750 15 10.725786 Anserini +test2007 Q0 20522849 16 10.702127 Anserini +test2007 Q0 15311280 17 10.659206 Anserini +test2007 Q0 6805708 18 10.570045 Anserini +test2007 Q0 8819632 19 10.568930 Anserini +test2007 Q0 17968246 20 10.535662 Anserini +test2007 Q0 6805749 21 10.494779 Anserini +test2007 Q0 6805751 22 10.375521 Anserini +test2007 Q0 20522851 23 10.370582 Anserini +test2007 Q0 8079098 24 10.369788 Anserini +test2007 Q0 15400336 25 10.296413 Anserini +test2007 Q0 19952426 26 10.294305 Anserini +test2007 Q0 13827227 27 10.212294 Anserini +test2007 Q0 20381952 28 10.117870 Anserini +test2007 Q0 6805754 29 10.089237 Anserini +test2007 Q0 8079109 30 10.033329 Anserini +test2008 Q0 16206357 1 13.941495 Anserini +test2008 Q0 16206268 2 12.840116 Anserini +test2008 Q0 3135610 3 12.674066 Anserini +test2008 Q0 16206348 4 12.416814 Anserini +test2008 Q0 16951505 5 12.391545 Anserini +test2008 Q0 16206351 6 12.283670 Anserini +test2008 Q0 16206350 7 12.174949 Anserini +test2008 Q0 9819245 8 12.065195 Anserini +test2008 Q0 9819252 9 12.031693 Anserini +test2008 Q0 16206355 10 11.995753 Anserini +test2008 Q0 14708147 11 11.940536 Anserini +test2008 Q0 16206353 12 11.852229 Anserini +test2008 Q0 16206267 13 11.655359 Anserini +test2008 Q0 9184097 14 11.475315 Anserini +test2008 Q0 16206354 15 11.348445 Anserini +test2008 Q0 10380998 16 11.319934 Anserini +test2008 Q0 5538084 17 11.222446 Anserini +test2008 Q0 10380997 18 11.143499 Anserini +test2008 Q0 3135605 19 10.823689 Anserini +test2008 Q0 7254889 20 10.730553 Anserini +test2008 Q0 3135612 21 10.710935 Anserini +test2008 Q0 3451146 22 10.705312 Anserini +test2008 Q0 16206352 23 10.697116 Anserini +test2008 Q0 16206356 24 10.697116 Anserini +test2008 Q0 15853379 25 10.697116 Anserini +test2008 Q0 5985291 26 10.653042 Anserini +test2008 Q0 5985293 27 10.653042 Anserini +test2008 Q0 20920596 28 10.576666 Anserini +test2008 Q0 10380976 29 10.550475 Anserini +test2008 Q0 14819020 30 10.496655 Anserini +test2009 Q0 19369758 1 12.345834 Anserini +test2009 Q0 1499945 2 12.250912 Anserini +test2009 Q0 5686405 3 11.924383 Anserini +test2009 Q0 5686408 4 11.870336 Anserini +test2009 Q0 9502900 5 11.808736 Anserini +test2009 Q0 3591960 6 11.739379 Anserini +test2009 Q0 16633875 7 11.708981 Anserini +test2009 Q0 10982272 8 11.688946 Anserini +test2009 Q0 18542862 9 11.514172 Anserini +test2009 Q0 5758372 10 11.367688 Anserini +test2009 Q0 1394439 11 11.255892 Anserini +test2009 Q0 13314301 12 11.200773 Anserini +test2009 Q0 18542865 13 11.197887 Anserini +test2009 Q0 4524984 14 11.192944 Anserini +test2009 Q0 407668 15 11.174582 Anserini +test2009 Q0 9936480 16 11.169459 Anserini +test2009 Q0 19597448 17 11.157217 Anserini +test2009 Q0 12717975 18 11.125689 Anserini +test2009 Q0 4578292 19 11.060406 Anserini +test2009 Q0 3386430 20 11.032098 Anserini +test2009 Q0 7675894 21 11.016729 Anserini +test2009 Q0 7675897 22 11.016729 Anserini +test2009 Q0 19369186 23 10.998476 Anserini +test2009 Q0 5294549 24 10.974056 Anserini +test2009 Q0 18064921 25 10.964778 Anserini +test2009 Q0 13065232 26 10.903501 Anserini +test2009 Q0 2430667 27 10.895108 Anserini +test2009 Q0 7190651 28 10.895108 Anserini +test2009 Q0 14393803 29 10.891138 Anserini +test2009 Q0 407684 30 10.878016 Anserini +test201 Q0 10202730 1 14.937542 Anserini +test201 Q0 19992817 2 14.461321 Anserini +test201 Q0 19379964 3 14.353683 Anserini +test201 Q0 19992810 4 14.026090 Anserini +test201 Q0 18207916 5 13.735809 Anserini +test201 Q0 5668363 6 13.561704 Anserini +test201 Q0 6640653 7 13.525329 Anserini +test201 Q0 7602922 8 13.321902 Anserini +test201 Q0 5637985 9 13.105421 Anserini +test201 Q0 3257296 10 13.049028 Anserini +test201 Q0 20117550 11 12.910043 Anserini +test201 Q0 1306557 12 12.891893 Anserini +test201 Q0 14378214 13 12.873644 Anserini +test201 Q0 19992804 14 12.868592 Anserini +test201 Q0 16666519 15 12.868592 Anserini +test201 Q0 13492069 16 12.855434 Anserini +test201 Q0 16228785 17 12.843173 Anserini +test201 Q0 8288816 18 12.776402 Anserini +test201 Q0 5674364 19 12.763978 Anserini +test201 Q0 13492058 20 12.763645 Anserini +test201 Q0 4464264 21 12.726462 Anserini +test201 Q0 8258445 22 12.701546 Anserini +test201 Q0 3769090 23 12.601419 Anserini +test201 Q0 15169975 24 12.580772 Anserini +test201 Q0 17247989 25 12.568857 Anserini +test201 Q0 16126861 26 12.562512 Anserini +test201 Q0 18076517 27 12.561188 Anserini +test201 Q0 10513482 28 12.540452 Anserini +test201 Q0 15169976 29 12.526751 Anserini +test201 Q0 15275739 30 12.523715 Anserini +test2010 Q0 19876814 1 12.857893 Anserini +test2010 Q0 19992545 2 12.855523 Anserini +test2010 Q0 19876806 3 12.029515 Anserini +test2010 Q0 16769186 4 12.009388 Anserini +test2010 Q0 19964318 5 11.910042 Anserini +test2010 Q0 19967358 6 11.868306 Anserini +test2010 Q0 13640457 7 11.788507 Anserini +test2010 Q0 20160675 8 11.779476 Anserini +test2010 Q0 19964322 9 11.719826 Anserini +test2010 Q0 5649755 10 11.626206 Anserini +test2010 Q0 19876758 11 11.603683 Anserini +test2010 Q0 19876759 12 11.603683 Anserini +test2010 Q0 19698554 13 11.560696 Anserini +test2010 Q0 20031073 14 11.543323 Anserini +test2010 Q0 9884794 15 11.507763 Anserini +test2010 Q0 19219533 16 11.494739 Anserini +test2010 Q0 19876813 17 11.492956 Anserini +test2010 Q0 20113435 18 11.464352 Anserini +test2010 Q0 19928916 19 11.456213 Anserini +test2010 Q0 19953603 20 11.446870 Anserini +test2010 Q0 19968101 21 11.436193 Anserini +test2010 Q0 20031075 22 11.409164 Anserini +test2010 Q0 20241376 23 11.372835 Anserini +test2010 Q0 20241377 24 11.372835 Anserini +test2010 Q0 18759413 25 11.327570 Anserini +test2010 Q0 305096 26 11.319172 Anserini +test2010 Q0 19975462 27 11.272498 Anserini +test2010 Q0 20252598 28 11.253510 Anserini +test2010 Q0 19711140 29 11.250072 Anserini +test2010 Q0 8742727 30 11.245060 Anserini +test2011 Q0 11021289 1 13.380349 Anserini +test2011 Q0 17401685 2 13.177045 Anserini +test2011 Q0 4171953 3 13.027636 Anserini +test2011 Q0 10984460 4 13.003522 Anserini +test2011 Q0 10316342 5 12.890275 Anserini +test2011 Q0 4171747 6 12.495837 Anserini +test2011 Q0 2907501 7 12.359983 Anserini +test2011 Q0 20401143 8 12.340022 Anserini +test2011 Q0 5748404 9 12.268424 Anserini +test2011 Q0 4169751 10 12.185189 Anserini +test2011 Q0 4876679 11 12.142840 Anserini +test2011 Q0 183847 12 11.920504 Anserini +test2011 Q0 11207275 13 11.823994 Anserini +test2011 Q0 20012298 14 11.723436 Anserini +test2011 Q0 10180884 15 11.678056 Anserini +test2011 Q0 11021270 16 11.629176 Anserini +test2011 Q0 4169665 17 11.607424 Anserini +test2011 Q0 10180969 18 11.483794 Anserini +test2011 Q0 10180945 19 11.373580 Anserini +test2011 Q0 11973648 20 11.298141 Anserini +test2011 Q0 20768510 21 11.286547 Anserini +test2011 Q0 13939995 22 11.283865 Anserini +test2011 Q0 10180970 23 11.275062 Anserini +test2011 Q0 10679652 24 11.239904 Anserini +test2011 Q0 3939299 25 11.239393 Anserini +test2011 Q0 18290636 26 11.237940 Anserini +test2011 Q0 19533481 27 11.234959 Anserini +test2011 Q0 4866858 28 11.203271 Anserini +test2011 Q0 5549718 29 11.194280 Anserini +test2011 Q0 11021278 30 11.187412 Anserini +test2012 Q0 3581433 1 13.139441 Anserini +test2012 Q0 10579520 2 13.092173 Anserini +test2012 Q0 3854414 3 12.570256 Anserini +test2012 Q0 3581430 4 12.368832 Anserini +test2012 Q0 10579530 5 12.281912 Anserini +test2012 Q0 6423307 6 12.157595 Anserini +test2012 Q0 6106575 7 12.055925 Anserini +test2012 Q0 13107259 8 12.039441 Anserini +test2012 Q0 1775085 9 11.997579 Anserini +test2012 Q0 6910266 10 11.895931 Anserini +test2012 Q0 8616017 11 11.739552 Anserini +test2012 Q0 6106579 12 11.736894 Anserini +test2012 Q0 3581426 13 11.679609 Anserini +test2012 Q0 5263864 14 11.645620 Anserini +test2012 Q0 1323271 15 11.609224 Anserini +test2012 Q0 13589311 16 11.499509 Anserini +test2012 Q0 3018223 17 11.446975 Anserini +test2012 Q0 3567109 18 11.419408 Anserini +test2012 Q0 3567039 19 11.309244 Anserini +test2012 Q0 14424834 20 11.252792 Anserini +test2012 Q0 1323270 21 11.250679 Anserini +test2012 Q0 18968978 22 11.244806 Anserini +test2012 Q0 6106629 23 11.224400 Anserini +test2012 Q0 3567035 24 11.122147 Anserini +test2012 Q0 2392993 25 11.095016 Anserini +test2012 Q0 12691053 26 11.095016 Anserini +test2012 Q0 14220202 27 11.035091 Anserini +test2012 Q0 2656956 28 11.020194 Anserini +test2012 Q0 14220205 29 10.938128 Anserini +test2012 Q0 19424414 30 10.916411 Anserini +test2013 Q0 163090 1 17.886131 Anserini +test2013 Q0 15593806 2 15.851846 Anserini +test2013 Q0 2450653 3 15.244643 Anserini +test2013 Q0 4989680 4 14.593947 Anserini +test2013 Q0 18198868 5 14.364574 Anserini +test2013 Q0 11204398 6 14.263672 Anserini +test2013 Q0 16164307 7 14.103656 Anserini +test2013 Q0 163125 8 13.884926 Anserini +test2013 Q0 12828208 9 13.795919 Anserini +test2013 Q0 13213164 10 13.770473 Anserini +test2013 Q0 15171200 11 13.561840 Anserini +test2013 Q0 16159354 12 13.509720 Anserini +test2013 Q0 163174 13 13.464900 Anserini +test2013 Q0 163161 14 13.380273 Anserini +test2013 Q0 6308825 15 13.371163 Anserini +test2013 Q0 163168 16 13.271755 Anserini +test2013 Q0 7421551 17 13.253064 Anserini +test2013 Q0 163178 18 13.239424 Anserini +test2013 Q0 18558677 19 13.225084 Anserini +test2013 Q0 9859246 20 13.214321 Anserini +test2013 Q0 16134443 21 13.165730 Anserini +test2013 Q0 163136 22 12.990151 Anserini +test2013 Q0 15171476 23 12.978663 Anserini +test2013 Q0 12828215 24 12.828218 Anserini +test2013 Q0 163130 25 12.809996 Anserini +test2013 Q0 3456025 26 12.804284 Anserini +test2013 Q0 11204399 27 12.798192 Anserini +test2013 Q0 20113785 28 12.745479 Anserini +test2013 Q0 163180 29 12.706820 Anserini +test2013 Q0 18915214 30 12.686456 Anserini +test2014 Q0 19876812 1 18.981152 Anserini +test2014 Q0 6534366 2 18.813742 Anserini +test2014 Q0 11907592 3 18.746513 Anserini +test2014 Q0 20113433 4 18.605619 Anserini +test2014 Q0 5722339 5 18.537668 Anserini +test2014 Q0 17509543 6 18.389975 Anserini +test2014 Q0 6534357 7 18.348061 Anserini +test2014 Q0 18050079 8 18.136847 Anserini +test2014 Q0 6500433 9 18.121056 Anserini +test2014 Q0 8210456 10 18.050037 Anserini +test2014 Q0 6534354 11 17.960739 Anserini +test2014 Q0 17509540 12 17.875832 Anserini +test2014 Q0 20598807 13 17.580097 Anserini +test2014 Q0 5722759 14 17.436337 Anserini +test2014 Q0 16633893 15 17.383558 Anserini +test2014 Q0 17069443 16 17.353148 Anserini +test2014 Q0 19876811 17 17.226160 Anserini +test2014 Q0 6534358 18 17.159916 Anserini +test2014 Q0 11404129 19 17.148655 Anserini +test2014 Q0 17509542 20 17.099133 Anserini +test2014 Q0 19381492 21 17.077354 Anserini +test2014 Q0 6500440 22 17.004427 Anserini +test2014 Q0 17896999 23 16.966660 Anserini +test2014 Q0 20113434 24 16.957024 Anserini +test2014 Q0 14060231 25 16.943403 Anserini +test2014 Q0 19219539 26 16.795853 Anserini +test2014 Q0 12778781 27 16.768749 Anserini +test2014 Q0 14151374 28 16.750603 Anserini +test2014 Q0 11786022 29 16.732422 Anserini +test2014 Q0 19975468 30 16.685017 Anserini +test2015 Q0 510302 1 14.673391 Anserini +test2015 Q0 332087 2 12.892250 Anserini +test2015 Q0 13497971 3 12.685387 Anserini +test2015 Q0 14733629 4 12.591673 Anserini +test2015 Q0 6904961 5 12.427412 Anserini +test2015 Q0 677354 6 11.777575 Anserini +test2015 Q0 11253371 7 11.547289 Anserini +test2015 Q0 11324348 8 11.467249 Anserini +test2015 Q0 8496537 9 11.434306 Anserini +test2015 Q0 19604271 10 11.385050 Anserini +test2015 Q0 1452443 11 11.046968 Anserini +test2015 Q0 1452442 12 10.958632 Anserini +test2015 Q0 11253373 13 10.942586 Anserini +test2015 Q0 2648610 14 10.712200 Anserini +test2015 Q0 19604273 15 10.669088 Anserini +test2015 Q0 12101882 16 10.631716 Anserini +test2015 Q0 18972816 17 10.413407 Anserini +test2015 Q0 2898567 18 10.157566 Anserini +test2015 Q0 3058707 19 9.997202 Anserini +test2015 Q0 15676383 20 9.809448 Anserini +test2015 Q0 1623671 21 9.779478 Anserini +test2015 Q0 4186021 22 9.758517 Anserini +test2015 Q0 8496539 23 9.744098 Anserini +test2015 Q0 332091 24 9.696914 Anserini +test2015 Q0 18407704 25 9.676887 Anserini +test2015 Q0 18786633 26 9.541200 Anserini +test2015 Q0 13603404 27 9.516956 Anserini +test2015 Q0 8035919 28 9.497299 Anserini +test2015 Q0 5248188 29 9.479311 Anserini +test2015 Q0 8285857 30 9.479311 Anserini +test2016 Q0 20177860 1 17.145695 Anserini +test2016 Q0 5192814 2 16.017021 Anserini +test2016 Q0 9701542 3 15.651151 Anserini +test2016 Q0 16487569 4 15.382721 Anserini +test2016 Q0 16487570 5 15.382721 Anserini +test2016 Q0 525477 6 15.154228 Anserini +test2016 Q0 19290867 7 15.047010 Anserini +test2016 Q0 525503 8 14.666894 Anserini +test2016 Q0 525504 9 14.550845 Anserini +test2016 Q0 20166558 10 14.544752 Anserini +test2016 Q0 19290869 11 14.460990 Anserini +test2016 Q0 19247306 12 14.425156 Anserini +test2016 Q0 5723266 13 14.311293 Anserini +test2016 Q0 13876666 14 14.266380 Anserini +test2016 Q0 15774150 15 14.209614 Anserini +test2016 Q0 11992545 16 14.047280 Anserini +test2016 Q0 7846861 17 13.911795 Anserini +test2016 Q0 7846869 18 13.911795 Anserini +test2016 Q0 2278728 19 13.874401 Anserini +test2016 Q0 525472 20 13.842482 Anserini +test2016 Q0 20166555 21 13.840321 Anserini +test2016 Q0 1739928 22 13.813107 Anserini +test2016 Q0 19573378 23 13.807916 Anserini +test2016 Q0 525491 24 13.776794 Anserini +test2016 Q0 7847395 25 13.711897 Anserini +test2016 Q0 15774149 26 13.691540 Anserini +test2016 Q0 19505785 27 13.667971 Anserini +test2016 Q0 20171018 28 13.631167 Anserini +test2016 Q0 18974658 29 13.520440 Anserini +test2016 Q0 20171017 30 13.497056 Anserini +test2017 Q0 12369125 1 17.554621 Anserini +test2017 Q0 5332208 2 16.914310 Anserini +test2017 Q0 10764865 3 16.407206 Anserini +test2017 Q0 2291356 4 16.239479 Anserini +test2017 Q0 4957867 5 15.884281 Anserini +test2017 Q0 2288882 6 15.618752 Anserini +test2017 Q0 5102914 7 15.600397 Anserini +test2017 Q0 4935659 8 15.268053 Anserini +test2017 Q0 3580935 9 15.257435 Anserini +test2017 Q0 5102906 10 15.236818 Anserini +test2017 Q0 2288924 11 15.236721 Anserini +test2017 Q0 12369105 12 15.220088 Anserini +test2017 Q0 7174799 13 15.151279 Anserini +test2017 Q0 12368178 14 15.027365 Anserini +test2017 Q0 2288917 15 14.820262 Anserini +test2017 Q0 7235391 16 14.684771 Anserini +test2017 Q0 2288897 17 14.634280 Anserini +test2017 Q0 3686539 18 14.595291 Anserini +test2017 Q0 12369184 19 14.554312 Anserini +test2017 Q0 14790071 20 14.462671 Anserini +test2017 Q0 173583 21 14.316102 Anserini +test2017 Q0 13390270 22 14.308842 Anserini +test2017 Q0 2649767 23 14.241732 Anserini +test2017 Q0 15244850 24 14.197469 Anserini +test2017 Q0 3890292 25 14.181689 Anserini +test2017 Q0 12369221 26 14.128351 Anserini +test2017 Q0 2288898 27 14.070189 Anserini +test2017 Q0 12368175 28 14.049007 Anserini +test2017 Q0 15244868 29 14.049007 Anserini +test2017 Q0 7235396 30 14.045459 Anserini +test2018 Q0 20414407 1 10.852583 Anserini +test2018 Q0 20869670 2 10.754579 Anserini +test2018 Q0 20869671 3 10.754579 Anserini +test2018 Q0 18672002 4 10.655916 Anserini +test2018 Q0 3639670 5 10.523917 Anserini +test2018 Q0 343451 6 10.300754 Anserini +test2018 Q0 3763486 7 10.253122 Anserini +test2018 Q0 311951 8 10.144038 Anserini +test2018 Q0 6612841 9 10.100528 Anserini +test2018 Q0 15608693 10 9.992568 Anserini +test2018 Q0 1530967 11 9.831654 Anserini +test2018 Q0 2114943 12 9.816480 Anserini +test2018 Q0 7109786 13 9.740402 Anserini +test2018 Q0 4104428 14 9.723148 Anserini +test2018 Q0 20941712 15 9.673866 Anserini +test2018 Q0 818543 16 9.673866 Anserini +test2018 Q0 333382 17 9.560026 Anserini +test2018 Q0 9162040 18 9.555750 Anserini +test2018 Q0 7455735 19 9.529544 Anserini +test2018 Q0 4732938 20 9.527234 Anserini +test2018 Q0 17457675 21 9.439610 Anserini +test2018 Q0 14607061 22 9.409902 Anserini +test2018 Q0 18109690 23 9.393295 Anserini +test2018 Q0 18109691 24 9.393295 Anserini +test2018 Q0 7426634 25 9.381944 Anserini +test2018 Q0 13077817 26 9.370941 Anserini +test2018 Q0 605237 27 9.311438 Anserini +test2018 Q0 5430053 28 9.306149 Anserini +test2018 Q0 14867002 29 9.278805 Anserini +test2018 Q0 10751970 30 9.260439 Anserini +test2019 Q0 4396456 1 15.234175 Anserini +test2019 Q0 15185797 2 14.577071 Anserini +test2019 Q0 13961910 3 14.425253 Anserini +test2019 Q0 8063883 4 13.582376 Anserini +test2019 Q0 7799080 5 12.899052 Anserini +test2019 Q0 2983428 6 12.817489 Anserini +test2019 Q0 20162748 7 12.808204 Anserini +test2019 Q0 8063912 8 12.595957 Anserini +test2019 Q0 13629441 9 12.200180 Anserini +test2019 Q0 9187 10 12.012436 Anserini +test2019 Q0 17293891 11 12.001813 Anserini +test2019 Q0 4744178 12 11.991093 Anserini +test2019 Q0 6670091 13 11.896624 Anserini +test2019 Q0 11719009 14 11.894320 Anserini +test2019 Q0 4482210 15 11.830198 Anserini +test2019 Q0 16121538 16 11.810057 Anserini +test2019 Q0 9087936 17 11.697013 Anserini +test2019 Q0 2163189 18 11.677012 Anserini +test2019 Q0 2501928 19 11.600223 Anserini +test2019 Q0 20941887 20 11.573679 Anserini +test2019 Q0 17758726 21 11.428895 Anserini +test2019 Q0 2358317 22 11.428080 Anserini +test2019 Q0 1858781 23 11.419931 Anserini +test2019 Q0 17942823 24 11.333726 Anserini +test2019 Q0 8455723 25 11.264208 Anserini +test2019 Q0 9183 26 11.230169 Anserini +test2019 Q0 10526303 27 11.218536 Anserini +test2019 Q0 17942819 28 11.199960 Anserini +test2019 Q0 16858618 29 11.186552 Anserini +test2019 Q0 17200883 30 11.171008 Anserini +test202 Q0 6652541 1 12.227623 Anserini +test202 Q0 6051725 2 11.734989 Anserini +test202 Q0 802341 3 11.331511 Anserini +test202 Q0 6617049 4 11.290607 Anserini +test202 Q0 6611224 5 11.290607 Anserini +test202 Q0 6623767 6 11.290607 Anserini +test202 Q0 6363946 7 11.290607 Anserini +test202 Q0 6627149 8 11.290607 Anserini +test202 Q0 6604683 9 11.290607 Anserini +test202 Q0 6088196 10 11.290607 Anserini +test202 Q0 6411255 11 11.290607 Anserini +test202 Q0 6415652 12 11.290607 Anserini +test202 Q0 6386785 13 11.290607 Anserini +test202 Q0 20010330 14 11.253196 Anserini +test202 Q0 6350491 15 11.169852 Anserini +test202 Q0 6350193 16 11.169852 Anserini +test202 Q0 6523450 17 11.169852 Anserini +test202 Q0 6528672 18 11.169852 Anserini +test202 Q0 6088011 19 11.101723 Anserini +test202 Q0 6083162 20 11.101723 Anserini +test202 Q0 802942 21 11.008877 Anserini +test202 Q0 11768504 22 10.978152 Anserini +test202 Q0 16017941 23 10.932832 Anserini +test202 Q0 3066070 24 10.930435 Anserini +test202 Q0 16139813 25 10.925330 Anserini +test202 Q0 19528719 26 10.868940 Anserini +test202 Q0 9747591 27 10.812871 Anserini +test202 Q0 6082953 28 10.807426 Anserini +test202 Q0 5211771 29 10.799528 Anserini +test202 Q0 6094432 30 10.778594 Anserini +test2020 Q0 11916326 1 15.753340 Anserini +test2020 Q0 11916329 2 14.961759 Anserini +test2020 Q0 1621643 3 12.139012 Anserini +test2020 Q0 11916327 4 11.439141 Anserini +test2020 Q0 18214492 5 11.034300 Anserini +test2020 Q0 6883533 6 10.561731 Anserini +test2020 Q0 7968393 7 10.521202 Anserini +test2020 Q0 19224180 8 10.439397 Anserini +test2020 Q0 2185623 9 10.316568 Anserini +test2020 Q0 6840144 10 10.313758 Anserini +test2020 Q0 13193694 11 10.254608 Anserini +test2020 Q0 6101624 12 10.145370 Anserini +test2020 Q0 1357318 13 10.072852 Anserini +test2020 Q0 801021 14 9.969993 Anserini +test2020 Q0 6002817 15 9.966496 Anserini +test2020 Q0 4552214 16 9.927533 Anserini +test2020 Q0 15717177 17 9.911395 Anserini +test2020 Q0 1649714 18 9.830911 Anserini +test2020 Q0 11916328 19 9.815841 Anserini +test2020 Q0 5531026 20 9.786148 Anserini +test2020 Q0 9997949 21 9.782452 Anserini +test2020 Q0 8994841 22 9.711865 Anserini +test2020 Q0 744736 23 9.693327 Anserini +test2020 Q0 3483326 24 9.689690 Anserini +test2020 Q0 4396886 25 9.649395 Anserini +test2020 Q0 875305 26 9.602757 Anserini +test2020 Q0 19511935 27 9.540194 Anserini +test2020 Q0 16773931 28 9.523884 Anserini +test2020 Q0 15801047 29 9.491986 Anserini +test2020 Q0 18650757 30 9.479100 Anserini +test2021 Q0 19468986 1 16.702843 Anserini +test2021 Q0 19469030 2 15.264393 Anserini +test2021 Q0 7140419 3 15.073689 Anserini +test2021 Q0 6384464 4 14.298705 Anserini +test2021 Q0 7411076 5 14.245145 Anserini +test2021 Q0 1941192 6 14.022893 Anserini +test2021 Q0 19468985 7 14.019545 Anserini +test2021 Q0 7140420 8 13.877938 Anserini +test2021 Q0 5469402 9 13.620282 Anserini +test2021 Q0 16290758 10 13.591704 Anserini +test2021 Q0 5469403 11 13.537740 Anserini +test2021 Q0 384837 12 13.384715 Anserini +test2021 Q0 11508731 13 13.378498 Anserini +test2021 Q0 7411086 14 13.337501 Anserini +test2021 Q0 19469029 15 13.250597 Anserini +test2021 Q0 3479456 16 13.249576 Anserini +test2021 Q0 5053242 17 13.159316 Anserini +test2021 Q0 5306793 18 12.948111 Anserini +test2021 Q0 7411074 19 12.918772 Anserini +test2021 Q0 4347071 20 12.909304 Anserini +test2021 Q0 13641644 21 12.837566 Anserini +test2021 Q0 5947824 22 12.707093 Anserini +test2021 Q0 4136358 23 12.707093 Anserini +test2021 Q0 7411083 24 12.645618 Anserini +test2021 Q0 40153 25 12.628474 Anserini +test2021 Q0 2093456 26 12.605841 Anserini +test2021 Q0 14202317 27 12.555583 Anserini +test2021 Q0 2711121 28 12.531094 Anserini +test2021 Q0 19579990 29 12.526774 Anserini +test2021 Q0 7140418 30 12.509766 Anserini +test2022 Q0 14985610 1 10.836692 Anserini +test2022 Q0 12303123 2 10.589911 Anserini +test2022 Q0 18902042 3 9.816883 Anserini +test2022 Q0 12303119 4 9.719875 Anserini +test2022 Q0 7316350 5 9.639773 Anserini +test2022 Q0 7264675 6 9.600492 Anserini +test2022 Q0 11096534 7 9.481311 Anserini +test2022 Q0 19271949 8 9.352049 Anserini +test2022 Q0 12303130 9 9.325073 Anserini +test2022 Q0 1414839 10 9.263578 Anserini +test2022 Q0 16055999 11 9.185370 Anserini +test2022 Q0 11714417 12 9.169605 Anserini +test2022 Q0 11714419 13 9.169605 Anserini +test2022 Q0 16903339 14 9.127881 Anserini +test2022 Q0 12784914 15 9.127881 Anserini +test2022 Q0 11548328 16 9.057612 Anserini +test2022 Q0 16687669 17 9.031793 Anserini +test2022 Q0 14868421 18 9.031793 Anserini +test2022 Q0 10409566 19 9.016845 Anserini +test2022 Q0 9382509 20 8.969733 Anserini +test2022 Q0 1622883 21 8.963240 Anserini +test2022 Q0 9650365 22 8.956459 Anserini +test2022 Q0 18820072 23 8.924317 Anserini +test2022 Q0 10391886 24 8.865360 Anserini +test2022 Q0 18947622 25 8.848713 Anserini +test2022 Q0 14213658 26 8.820412 Anserini +test2022 Q0 8868787 27 8.820412 Anserini +test2022 Q0 6490512 28 8.794432 Anserini +test2022 Q0 15218659 29 8.764932 Anserini +test2022 Q0 2383534 30 8.756190 Anserini +test2023 Q0 18588714 1 16.814814 Anserini +test2023 Q0 18588715 2 15.586914 Anserini +test2023 Q0 4009331 3 14.642021 Anserini +test2023 Q0 4009315 4 13.774926 Anserini +test2023 Q0 6686057 5 13.012113 Anserini +test2023 Q0 4009311 6 12.515698 Anserini +test2023 Q0 6686054 7 12.258160 Anserini +test2023 Q0 6125474 8 12.059136 Anserini +test2023 Q0 6125477 9 12.051055 Anserini +test2023 Q0 6125469 10 12.051055 Anserini +test2023 Q0 1312077 11 11.810125 Anserini +test2023 Q0 4009314 12 11.625583 Anserini +test2023 Q0 4009325 13 11.193981 Anserini +test2023 Q0 6125475 14 11.172688 Anserini +test2023 Q0 8065105 15 10.943933 Anserini +test2023 Q0 17716369 16 10.943933 Anserini +test2023 Q0 6125472 17 10.834089 Anserini +test2023 Q0 10652845 18 10.828727 Anserini +test2023 Q0 5232154 19 10.774550 Anserini +test2023 Q0 4009324 20 10.768509 Anserini +test2023 Q0 6686053 21 10.615320 Anserini +test2023 Q0 4464329 22 10.462017 Anserini +test2023 Q0 17845695 23 10.451108 Anserini +test2023 Q0 20796728 24 10.442000 Anserini +test2023 Q0 6125473 25 10.389471 Anserini +test2023 Q0 4009323 26 10.389471 Anserini +test2023 Q0 11703827 27 10.285694 Anserini +test2023 Q0 13436526 28 10.112533 Anserini +test2023 Q0 4009329 29 10.105656 Anserini +test2023 Q0 4009313 30 10.034248 Anserini +test2024 Q0 12663065 1 15.776913 Anserini +test2024 Q0 8341316 2 13.699824 Anserini +test2024 Q0 16332480 3 13.008322 Anserini +test2024 Q0 2671166 4 12.926224 Anserini +test2024 Q0 12390893 5 12.834698 Anserini +test2024 Q0 15019222 6 12.618224 Anserini +test2024 Q0 9203080 7 12.402427 Anserini +test2024 Q0 10650897 8 12.360230 Anserini +test2024 Q0 745845 9 12.312681 Anserini +test2024 Q0 9203084 10 12.312681 Anserini +test2024 Q0 19317868 11 12.309418 Anserini +test2024 Q0 7454960 12 12.241149 Anserini +test2024 Q0 16477698 13 12.179392 Anserini +test2024 Q0 7299 14 12.158541 Anserini +test2024 Q0 7982311 15 12.114214 Anserini +test2024 Q0 10010369 16 12.004950 Anserini +test2024 Q0 7454958 17 11.999307 Anserini +test2024 Q0 223937 18 11.892856 Anserini +test2024 Q0 7351153 19 11.840633 Anserini +test2024 Q0 1465077 20 11.840633 Anserini +test2024 Q0 20106972 21 11.746169 Anserini +test2024 Q0 9207848 22 11.746169 Anserini +test2024 Q0 17166951 23 11.703041 Anserini +test2024 Q0 7586354 24 11.587811 Anserini +test2024 Q0 5322601 25 11.585766 Anserini +test2024 Q0 1880767 26 11.388474 Anserini +test2024 Q0 12644005 27 11.281490 Anserini +test2024 Q0 10081342 28 11.238711 Anserini +test2024 Q0 9988921 29 11.217547 Anserini +test2024 Q0 8902862 30 11.216545 Anserini +test2025 Q0 611310 1 13.344723 Anserini +test2025 Q0 17777245 2 13.255196 Anserini +test2025 Q0 611336 3 12.322559 Anserini +test2025 Q0 30831 4 12.091118 Anserini +test2025 Q0 17154097 5 11.974348 Anserini +test2025 Q0 10451 6 11.927624 Anserini +test2025 Q0 9450068 7 11.847603 Anserini +test2025 Q0 12215822 8 11.819070 Anserini +test2025 Q0 11154108 9 11.808996 Anserini +test2025 Q0 7051278 10 11.773998 Anserini +test2025 Q0 11940670 11 11.698530 Anserini +test2025 Q0 2730311 12 11.498296 Anserini +test2025 Q0 4372050 13 11.417412 Anserini +test2025 Q0 291741 14 11.351748 Anserini +test2025 Q0 4273861 15 11.327897 Anserini +test2025 Q0 10792245 16 11.309067 Anserini +test2025 Q0 13139539 17 11.092118 Anserini +test2025 Q0 624345 18 11.083046 Anserini +test2025 Q0 7051280 19 11.058519 Anserini +test2025 Q0 5410365 20 11.030475 Anserini +test2025 Q0 5121736 21 10.996779 Anserini +test2025 Q0 262726 22 10.938295 Anserini +test2025 Q0 333213 23 10.912256 Anserini +test2025 Q0 17677401 24 10.907930 Anserini +test2025 Q0 6537399 25 10.862532 Anserini +test2025 Q0 6881951 26 10.855565 Anserini +test2025 Q0 339467 27 10.819709 Anserini +test2025 Q0 12613277 28 10.813750 Anserini +test2025 Q0 17677386 29 10.786348 Anserini +test2025 Q0 766359 30 10.758240 Anserini +test2026 Q0 9558968 1 16.994392 Anserini +test2026 Q0 9558950 2 16.446022 Anserini +test2026 Q0 9558977 3 16.372328 Anserini +test2026 Q0 9148825 4 16.358665 Anserini +test2026 Q0 9558960 5 15.851967 Anserini +test2026 Q0 18260894 6 15.843527 Anserini +test2026 Q0 3088875 7 15.693101 Anserini +test2026 Q0 11271180 8 15.616510 Anserini +test2026 Q0 9148840 9 15.476788 Anserini +test2026 Q0 5858631 10 15.428926 Anserini +test2026 Q0 10790140 11 15.306196 Anserini +test2026 Q0 9148812 12 15.233416 Anserini +test2026 Q0 9148827 13 15.123049 Anserini +test2026 Q0 9148822 14 15.083365 Anserini +test2026 Q0 8986648 15 15.044095 Anserini +test2026 Q0 16136969 16 15.016745 Anserini +test2026 Q0 9558956 17 14.915799 Anserini +test2026 Q0 8233872 18 14.876896 Anserini +test2026 Q0 14232373 19 14.813427 Anserini +test2026 Q0 9558974 20 14.793353 Anserini +test2026 Q0 3088927 21 14.773730 Anserini +test2026 Q0 9148814 22 14.700993 Anserini +test2026 Q0 9148838 23 14.672669 Anserini +test2026 Q0 837484 24 14.632273 Anserini +test2026 Q0 9558951 25 14.594262 Anserini +test2026 Q0 9148837 26 14.585232 Anserini +test2026 Q0 9558955 27 14.574616 Anserini +test2026 Q0 8986641 28 14.568388 Anserini +test2026 Q0 10998528 29 14.515103 Anserini +test2026 Q0 11840159 30 14.473628 Anserini +test2027 Q0 8134269 1 17.282953 Anserini +test2027 Q0 8134271 2 15.604932 Anserini +test2027 Q0 20972325 3 13.448179 Anserini +test2027 Q0 6260080 4 13.169186 Anserini +test2027 Q0 6260081 5 13.111277 Anserini +test2027 Q0 12443159 6 12.871925 Anserini +test2027 Q0 5146069 7 12.865179 Anserini +test2027 Q0 15507241 8 12.764583 Anserini +test2027 Q0 20972306 9 12.715710 Anserini +test2027 Q0 4109066 10 12.666323 Anserini +test2027 Q0 1605138 11 12.561642 Anserini +test2027 Q0 9760297 12 11.993255 Anserini +test2027 Q0 15095325 13 11.923903 Anserini +test2027 Q0 16104073 14 11.542173 Anserini +test2027 Q0 6550779 15 11.519513 Anserini +test2027 Q0 4718992 16 11.478103 Anserini +test2027 Q0 18277411 17 11.467881 Anserini +test2027 Q0 12310974 18 11.448067 Anserini +test2027 Q0 12310978 19 11.415847 Anserini +test2027 Q0 18277414 20 11.361260 Anserini +test2027 Q0 15932293 21 11.348629 Anserini +test2027 Q0 7161664 22 11.327637 Anserini +test2027 Q0 9584293 23 11.306034 Anserini +test2027 Q0 9584294 24 11.223579 Anserini +test2027 Q0 18844389 25 11.212575 Anserini +test2027 Q0 20972326 26 11.201821 Anserini +test2027 Q0 11819784 27 11.168967 Anserini +test2027 Q0 8652856 28 11.159475 Anserini +test2027 Q0 17052684 29 11.128968 Anserini +test2027 Q0 17142350 30 11.109585 Anserini +test2028 Q0 20740418 1 12.074173 Anserini +test2028 Q0 151489 2 11.910923 Anserini +test2028 Q0 20182995 3 11.887402 Anserini +test2028 Q0 1762150 4 11.651802 Anserini +test2028 Q0 2888077 5 11.518899 Anserini +test2028 Q0 17586718 6 11.501238 Anserini +test2028 Q0 20182994 7 11.459922 Anserini +test2028 Q0 2719175 8 11.421549 Anserini +test2028 Q0 9101598 9 11.391689 Anserini +test2028 Q0 8321353 10 11.133310 Anserini +test2028 Q0 2719165 11 11.039520 Anserini +test2028 Q0 19469320 12 10.833992 Anserini +test2028 Q0 20354777 13 10.747733 Anserini +test2028 Q0 14112914 14 10.729130 Anserini +test2028 Q0 151487 15 10.703609 Anserini +test2028 Q0 13896427 16 10.639347 Anserini +test2028 Q0 2719174 17 10.607166 Anserini +test2028 Q0 9101585 18 10.357810 Anserini +test2028 Q0 2526535 19 10.349387 Anserini +test2028 Q0 15608008 20 10.298196 Anserini +test2028 Q0 2654776 21 10.264759 Anserini +test2028 Q0 3168714 22 10.248290 Anserini +test2028 Q0 19019423 23 10.221033 Anserini +test2028 Q0 8321351 24 10.116304 Anserini +test2028 Q0 6098468 25 10.068958 Anserini +test2028 Q0 2527326 26 10.045832 Anserini +test2028 Q0 1762170 27 9.934680 Anserini +test2028 Q0 18420878 28 9.918249 Anserini +test2028 Q0 9460627 29 9.878339 Anserini +test2028 Q0 11951725 30 9.841468 Anserini +test2029 Q0 6603629 1 12.917517 Anserini +test2029 Q0 6603645 2 12.665754 Anserini +test2029 Q0 3668798 3 12.482388 Anserini +test2029 Q0 6603630 4 11.636298 Anserini +test2029 Q0 13863155 5 11.237835 Anserini +test2029 Q0 6603640 6 11.212054 Anserini +test2029 Q0 6603628 7 11.099400 Anserini +test2029 Q0 6603647 8 10.948428 Anserini +test2029 Q0 6603641 9 10.948428 Anserini +test2029 Q0 5053450 10 10.772909 Anserini +test2029 Q0 4985862 11 10.451479 Anserini +test2029 Q0 19759654 12 10.422855 Anserini +test2029 Q0 19160427 13 10.283215 Anserini +test2029 Q0 13020217 14 10.209650 Anserini +test2029 Q0 5717066 15 10.141395 Anserini +test2029 Q0 6603644 16 10.140185 Anserini +test2029 Q0 5562918 17 10.026555 Anserini +test2029 Q0 6603632 18 9.911474 Anserini +test2029 Q0 4817610 19 9.750763 Anserini +test2029 Q0 2420386 20 9.598665 Anserini +test2029 Q0 3449549 21 9.598665 Anserini +test2029 Q0 9005573 22 9.513136 Anserini +test2029 Q0 9100378 23 9.506372 Anserini +test2029 Q0 1315062 24 9.487214 Anserini +test2029 Q0 8581973 25 9.376263 Anserini +test2029 Q0 1900918 26 9.364920 Anserini +test2029 Q0 807384 27 9.345532 Anserini +test2029 Q0 10633504 28 9.325754 Anserini +test2029 Q0 18432498 29 9.304001 Anserini +test2029 Q0 10603638 30 9.275380 Anserini +test203 Q0 99871 1 15.873872 Anserini +test203 Q0 1510457 2 15.440348 Anserini +test203 Q0 4995178 3 15.264484 Anserini +test203 Q0 9406176 4 14.639114 Anserini +test203 Q0 19848521 5 14.300542 Anserini +test203 Q0 12402999 6 14.109865 Anserini +test203 Q0 12403000 7 14.015272 Anserini +test203 Q0 5635904 8 14.004382 Anserini +test203 Q0 15972354 9 13.762609 Anserini +test203 Q0 15972360 10 13.762609 Anserini +test203 Q0 12542327 11 13.609152 Anserini +test203 Q0 13166743 12 13.352923 Anserini +test203 Q0 4104558 13 13.323223 Anserini +test203 Q0 9854908 14 13.265949 Anserini +test203 Q0 7754396 15 13.232928 Anserini +test203 Q0 6866136 16 13.230666 Anserini +test203 Q0 6788475 17 13.220497 Anserini +test203 Q0 826699 18 13.217957 Anserini +test203 Q0 6012396 19 13.213093 Anserini +test203 Q0 9413342 20 13.154751 Anserini +test203 Q0 4995351 21 13.154751 Anserini +test203 Q0 1510468 22 13.126242 Anserini +test203 Q0 14005239 23 13.049297 Anserini +test203 Q0 826711 24 13.022509 Anserini +test203 Q0 4995355 25 12.990561 Anserini +test203 Q0 6866135 26 12.968367 Anserini +test203 Q0 18219434 27 12.904728 Anserini +test203 Q0 8845421 28 12.897438 Anserini +test203 Q0 1510441 29 12.855658 Anserini +test203 Q0 10111005 30 12.846710 Anserini +test2030 Q0 272168 1 29.047424 Anserini +test2030 Q0 432122 2 28.808371 Anserini +test2030 Q0 16156404 3 28.558029 Anserini +test2030 Q0 10158832 4 28.267708 Anserini +test2030 Q0 10158837 5 28.042276 Anserini +test2030 Q0 272195 6 27.762363 Anserini +test2030 Q0 16156400 7 27.701616 Anserini +test2030 Q0 16279273 8 27.653614 Anserini +test2030 Q0 2801459 9 27.490183 Anserini +test2030 Q0 16156399 10 27.223883 Anserini +test2030 Q0 2801460 11 27.114582 Anserini +test2030 Q0 16193980 12 26.650558 Anserini +test2030 Q0 432115 13 26.332159 Anserini +test2030 Q0 432117 14 26.252905 Anserini +test2030 Q0 16156398 15 26.127300 Anserini +test2030 Q0 2595861 16 26.115118 Anserini +test2030 Q0 12373040 17 25.752394 Anserini +test2030 Q0 1434195 18 24.942600 Anserini +test2030 Q0 16156402 19 24.724339 Anserini +test2030 Q0 432116 20 24.672766 Anserini +test2030 Q0 4274550 21 24.186199 Anserini +test2030 Q0 19127300 22 24.150234 Anserini +test2030 Q0 19127298 23 23.964968 Anserini +test2030 Q0 19127301 24 23.964968 Anserini +test2030 Q0 432118 25 23.814978 Anserini +test2030 Q0 20178648 26 23.447456 Anserini +test2030 Q0 432119 27 23.245090 Anserini +test2030 Q0 17666247 28 23.106979 Anserini +test2030 Q0 432121 29 23.052048 Anserini +test2030 Q0 16156401 30 22.956957 Anserini +test2031 Q0 8114668 1 15.392315 Anserini +test2031 Q0 2186100 2 14.705905 Anserini +test2031 Q0 8114667 3 13.672115 Anserini +test2031 Q0 8929791 4 13.161085 Anserini +test2031 Q0 8114665 5 13.054256 Anserini +test2031 Q0 9926087 6 12.311045 Anserini +test2031 Q0 3072492 7 12.307652 Anserini +test2031 Q0 3072491 8 11.924078 Anserini +test2031 Q0 6855039 9 11.488264 Anserini +test2031 Q0 10535622 10 11.385853 Anserini +test2031 Q0 20159439 11 11.246801 Anserini +test2031 Q0 12084360 12 11.236446 Anserini +test2031 Q0 3072493 13 11.138393 Anserini +test2031 Q0 12447975 14 11.060711 Anserini +test2031 Q0 820326 15 11.008220 Anserini +test2031 Q0 5733635 16 10.972912 Anserini +test2031 Q0 12667912 17 10.852845 Anserini +test2031 Q0 3072501 18 10.755442 Anserini +test2031 Q0 8929789 19 10.653592 Anserini +test2031 Q0 19572543 20 10.601553 Anserini +test2031 Q0 17462874 21 10.593763 Anserini +test2031 Q0 4525331 22 10.582196 Anserini +test2031 Q0 15372074 23 10.542609 Anserini +test2031 Q0 20819166 24 10.523110 Anserini +test2031 Q0 14044151 25 10.498510 Anserini +test2031 Q0 6135167 26 10.440680 Anserini +test2031 Q0 9073403 27 10.305140 Anserini +test2031 Q0 8336271 28 10.301924 Anserini +test2031 Q0 6134265 29 10.301924 Anserini +test2031 Q0 20122722 30 10.278746 Anserini +test2032 Q0 12428288 1 11.252817 Anserini +test2032 Q0 13471027 2 11.171297 Anserini +test2032 Q0 13590136 3 10.873733 Anserini +test2032 Q0 8246675 4 10.562885 Anserini +test2032 Q0 18325450 5 10.463315 Anserini +test2032 Q0 15360405 6 10.336540 Anserini +test2032 Q0 9518752 7 10.335117 Anserini +test2032 Q0 158036 8 10.316717 Anserini +test2032 Q0 12167450 9 10.209010 Anserini +test2032 Q0 2842470 10 10.207687 Anserini +test2032 Q0 19614196 11 10.206956 Anserini +test2032 Q0 18816549 12 10.183308 Anserini +test2032 Q0 4210694 13 10.084883 Anserini +test2032 Q0 12650521 14 9.865272 Anserini +test2032 Q0 8976362 15 9.813513 Anserini +test2032 Q0 19396889 16 9.741401 Anserini +test2032 Q0 15807358 17 9.723248 Anserini +test2032 Q0 10306829 18 9.686995 Anserini +test2032 Q0 20214600 19 9.646887 Anserini +test2032 Q0 10306825 20 9.575510 Anserini +test2032 Q0 18389428 21 9.560792 Anserini +test2032 Q0 12016195 22 9.554556 Anserini +test2032 Q0 2452406 23 9.533730 Anserini +test2032 Q0 6824462 24 9.525520 Anserini +test2032 Q0 11556377 25 9.486208 Anserini +test2032 Q0 9515328 26 9.481684 Anserini +test2032 Q0 9111869 27 9.429982 Anserini +test2032 Q0 16533118 28 9.416833 Anserini +test2032 Q0 8349254 29 9.390872 Anserini +test2032 Q0 13520444 30 9.359397 Anserini +test2033 Q0 20897790 1 23.480026 Anserini +test2033 Q0 20897797 2 23.126089 Anserini +test2033 Q0 20897794 3 22.302837 Anserini +test2033 Q0 2628083 4 22.232130 Anserini +test2033 Q0 3407856 5 21.350525 Anserini +test2033 Q0 3407848 6 21.057461 Anserini +test2033 Q0 3407854 7 20.819695 Anserini +test2033 Q0 20897792 8 20.131645 Anserini +test2033 Q0 2628092 9 19.889524 Anserini +test2033 Q0 15357983 10 19.301746 Anserini +test2033 Q0 621402 11 18.933659 Anserini +test2033 Q0 2017680 12 18.689590 Anserini +test2033 Q0 485533 13 18.552235 Anserini +test2033 Q0 18909326 14 18.109446 Anserini +test2033 Q0 7697409 15 17.689709 Anserini +test2033 Q0 3407849 16 17.673344 Anserini +test2033 Q0 13544665 17 17.615393 Anserini +test2033 Q0 485528 18 17.595842 Anserini +test2033 Q0 7697410 19 17.435383 Anserini +test2033 Q0 3407855 20 17.317373 Anserini +test2033 Q0 15170960 21 17.307772 Anserini +test2033 Q0 2628085 22 17.143448 Anserini +test2033 Q0 3407851 23 17.097376 Anserini +test2033 Q0 16561775 24 16.921114 Anserini +test2033 Q0 13473418 25 16.910353 Anserini +test2033 Q0 12834611 26 16.795214 Anserini +test2033 Q0 16004599 27 16.746298 Anserini +test2033 Q0 16970487 28 16.727169 Anserini +test2033 Q0 1961261 29 16.640501 Anserini +test2033 Q0 8176510 30 16.640501 Anserini +test2034 Q0 165218 1 11.202808 Anserini +test2034 Q0 15509742 2 11.073488 Anserini +test2034 Q0 45007 3 11.006042 Anserini +test2034 Q0 45052 4 10.891562 Anserini +test2034 Q0 20412944 5 10.712310 Anserini +test2034 Q0 18119539 6 10.676097 Anserini +test2034 Q0 7981835 7 10.606715 Anserini +test2034 Q0 6873543 8 10.591114 Anserini +test2034 Q0 1816573 9 10.558110 Anserini +test2034 Q0 45080 10 10.449931 Anserini +test2034 Q0 6053007 11 10.418561 Anserini +test2034 Q0 20509609 12 10.367678 Anserini +test2034 Q0 14572251 13 10.332177 Anserini +test2034 Q0 3659996 14 10.293409 Anserini +test2034 Q0 16553776 15 10.273126 Anserini +test2034 Q0 45053 16 10.254202 Anserini +test2034 Q0 9795891 17 10.174665 Anserini +test2034 Q0 169483 18 10.124794 Anserini +test2034 Q0 7139067 19 10.096743 Anserini +test2034 Q0 2230395 20 10.084511 Anserini +test2034 Q0 18098282 21 10.056856 Anserini +test2034 Q0 9737246 22 10.045909 Anserini +test2034 Q0 3503135 23 10.034726 Anserini +test2034 Q0 20130827 24 10.000837 Anserini +test2034 Q0 169492 25 9.998990 Anserini +test2034 Q0 3305499 26 9.966732 Anserini +test2034 Q0 18965271 27 9.959801 Anserini +test2034 Q0 9737514 28 9.953731 Anserini +test2034 Q0 19362160 29 9.925616 Anserini +test2034 Q0 7132624 30 9.884240 Anserini +test2035 Q0 18936692 1 20.424406 Anserini +test2035 Q0 14943385 2 20.087402 Anserini +test2035 Q0 17047411 3 19.996990 Anserini +test2035 Q0 18936676 4 19.513016 Anserini +test2035 Q0 16034239 5 19.272062 Anserini +test2035 Q0 19667222 6 18.747911 Anserini +test2035 Q0 20941733 7 18.214773 Anserini +test2035 Q0 17483341 8 18.192661 Anserini +test2035 Q0 17047403 9 18.106817 Anserini +test2035 Q0 19838805 10 18.045837 Anserini +test2035 Q0 19838819 11 17.972925 Anserini +test2035 Q0 14943401 12 17.968241 Anserini +test2035 Q0 18202980 13 17.728205 Anserini +test2035 Q0 14943400 14 17.716740 Anserini +test2035 Q0 14943387 15 17.618374 Anserini +test2035 Q0 20855903 16 17.565239 Anserini +test2035 Q0 20988581 17 17.519062 Anserini +test2035 Q0 17047408 18 17.165209 Anserini +test2035 Q0 14943421 19 17.061317 Anserini +test2035 Q0 14943415 20 17.025555 Anserini +test2035 Q0 17047446 21 16.997719 Anserini +test2035 Q0 20941734 22 16.995560 Anserini +test2035 Q0 20641860 23 16.951223 Anserini +test2035 Q0 16969378 24 16.860378 Anserini +test2035 Q0 20855915 25 16.828424 Anserini +test2035 Q0 18202976 26 16.767744 Anserini +test2035 Q0 17047443 27 16.636990 Anserini +test2035 Q0 16969382 28 16.621071 Anserini +test2035 Q0 19436340 29 16.506584 Anserini +test2035 Q0 14943396 30 16.449837 Anserini +test2036 Q0 17549481 1 17.774036 Anserini +test2036 Q0 9976273 2 16.026009 Anserini +test2036 Q0 3764499 3 15.373603 Anserini +test2036 Q0 19847895 4 15.258514 Anserini +test2036 Q0 416935 5 15.151987 Anserini +test2036 Q0 16745400 6 15.099653 Anserini +test2036 Q0 14617053 7 15.052166 Anserini +test2036 Q0 7804710 8 15.030995 Anserini +test2036 Q0 5131938 9 15.025311 Anserini +test2036 Q0 17539906 10 15.013196 Anserini +test2036 Q0 6676269 11 15.000793 Anserini +test2036 Q0 3247707 12 14.902828 Anserini +test2036 Q0 10464762 13 14.838917 Anserini +test2036 Q0 16717841 14 14.819696 Anserini +test2036 Q0 435529 15 14.806158 Anserini +test2036 Q0 10883455 16 14.772655 Anserini +test2036 Q0 1491546 17 14.739561 Anserini +test2036 Q0 435471 18 14.722521 Anserini +test2036 Q0 10984591 19 14.710487 Anserini +test2036 Q0 6676277 20 14.629064 Anserini +test2036 Q0 3764498 21 14.568531 Anserini +test2036 Q0 8496963 22 14.539912 Anserini +test2036 Q0 9615649 23 14.513818 Anserini +test2036 Q0 333502 24 14.502474 Anserini +test2036 Q0 4656770 25 14.390527 Anserini +test2036 Q0 17451144 26 14.356958 Anserini +test2036 Q0 4361656 27 14.231927 Anserini +test2036 Q0 10866488 28 14.116945 Anserini +test2036 Q0 10866487 29 14.018303 Anserini +test2036 Q0 435895 30 13.998891 Anserini +test2037 Q0 12833860 1 18.654737 Anserini +test2037 Q0 5823696 2 17.969070 Anserini +test2037 Q0 5823700 3 17.550493 Anserini +test2037 Q0 1612293 4 17.523354 Anserini +test2037 Q0 1612302 5 17.514402 Anserini +test2037 Q0 1612301 6 17.447954 Anserini +test2037 Q0 5823699 7 17.289593 Anserini +test2037 Q0 5823701 8 16.940132 Anserini +test2037 Q0 1612314 9 16.873434 Anserini +test2037 Q0 1612316 10 16.657923 Anserini +test2037 Q0 17123106 11 16.533136 Anserini +test2037 Q0 8103866 12 16.476200 Anserini +test2037 Q0 14410657 13 16.466389 Anserini +test2037 Q0 13482621 14 16.118286 Anserini +test2037 Q0 1612299 15 16.084393 Anserini +test2037 Q0 1612300 16 16.076986 Anserini +test2037 Q0 5823698 17 15.966895 Anserini +test2037 Q0 16801944 18 15.819132 Anserini +test2037 Q0 1612306 19 15.706682 Anserini +test2037 Q0 1932562 20 15.542339 Anserini +test2037 Q0 12833857 21 15.495329 Anserini +test2037 Q0 1612317 22 15.480768 Anserini +test2037 Q0 1612338 23 15.425883 Anserini +test2037 Q0 16801941 24 15.388946 Anserini +test2037 Q0 1612296 25 15.242668 Anserini +test2037 Q0 14410650 26 15.095010 Anserini +test2037 Q0 14410652 27 15.079538 Anserini +test2037 Q0 1612337 28 15.074387 Anserini +test2037 Q0 17491687 29 15.002375 Anserini +test2037 Q0 1612298 30 14.897431 Anserini +test2038 Q0 13891287 1 18.553383 Anserini +test2038 Q0 16008599 2 18.330139 Anserini +test2038 Q0 16812525 3 18.244318 Anserini +test2038 Q0 13196326 4 18.087088 Anserini +test2038 Q0 13196327 5 17.865507 Anserini +test2038 Q0 16812532 6 17.290358 Anserini +test2038 Q0 16008597 7 16.839211 Anserini +test2038 Q0 16008598 8 16.259859 Anserini +test2038 Q0 5729112 9 15.489132 Anserini +test2038 Q0 15124786 10 15.358793 Anserini +test2038 Q0 16008603 11 15.074408 Anserini +test2038 Q0 5521844 12 15.074408 Anserini +test2038 Q0 18640500 13 15.024252 Anserini +test2038 Q0 11641599 14 15.017533 Anserini +test2038 Q0 13891286 15 14.933582 Anserini +test2038 Q0 18640501 16 14.844517 Anserini +test2038 Q0 13359695 17 14.769477 Anserini +test2038 Q0 16713074 18 14.659911 Anserini +test2038 Q0 16008589 19 14.632116 Anserini +test2038 Q0 10329539 20 14.632116 Anserini +test2038 Q0 10329543 21 14.558398 Anserini +test2038 Q0 11884816 22 14.396330 Anserini +test2038 Q0 5521856 23 14.240173 Anserini +test2038 Q0 7612689 24 14.149449 Anserini +test2038 Q0 20003884 25 14.149449 Anserini +test2038 Q0 11641601 26 14.149449 Anserini +test2038 Q0 20003891 27 14.092390 Anserini +test2038 Q0 6401168 28 14.045530 Anserini +test2038 Q0 7612694 29 14.019572 Anserini +test2038 Q0 5521837 30 14.017651 Anserini +test2039 Q0 5820756 1 13.073132 Anserini +test2039 Q0 15717165 2 12.934663 Anserini +test2039 Q0 15494754 3 12.604136 Anserini +test2039 Q0 18370426 4 12.414484 Anserini +test2039 Q0 18370436 5 12.414484 Anserini +test2039 Q0 5820757 6 11.980472 Anserini +test2039 Q0 15717170 7 11.771807 Anserini +test2039 Q0 20182610 8 11.554153 Anserini +test2039 Q0 19571730 9 11.508800 Anserini +test2039 Q0 19571733 10 11.456402 Anserini +test2039 Q0 19571722 11 11.456402 Anserini +test2039 Q0 15717166 12 11.456402 Anserini +test2039 Q0 19571731 13 11.384102 Anserini +test2039 Q0 3106211 14 11.280394 Anserini +test2039 Q0 15494748 15 11.207605 Anserini +test2039 Q0 16731900 16 10.728263 Anserini +test2039 Q0 16731896 17 10.728263 Anserini +test2039 Q0 15216167 18 10.693336 Anserini +test2039 Q0 20411672 19 10.495207 Anserini +test2039 Q0 13644785 20 10.486225 Anserini +test2039 Q0 20411671 21 10.467188 Anserini +test2039 Q0 3646321 22 10.252253 Anserini +test2039 Q0 19571732 23 10.084208 Anserini +test2039 Q0 14037785 24 9.957293 Anserini +test2039 Q0 18725884 25 9.890229 Anserini +test2039 Q0 15494753 26 9.890229 Anserini +test2039 Q0 5216821 27 9.855296 Anserini +test2039 Q0 19571729 28 9.637897 Anserini +test2039 Q0 12366585 29 9.533961 Anserini +test2039 Q0 13129802 30 9.471555 Anserini +test204 Q0 13793272 1 12.677700 Anserini +test204 Q0 15583721 2 11.769995 Anserini +test204 Q0 451385 3 11.608419 Anserini +test204 Q0 15583729 4 11.512812 Anserini +test204 Q0 15583718 5 11.434565 Anserini +test204 Q0 15583725 6 11.264457 Anserini +test204 Q0 13361597 7 11.013110 Anserini +test204 Q0 15583722 8 10.929544 Anserini +test204 Q0 13924647 9 10.912743 Anserini +test204 Q0 19367857 10 10.810462 Anserini +test204 Q0 7323080 11 10.772888 Anserini +test204 Q0 4093816 12 10.731287 Anserini +test204 Q0 4093817 13 10.600396 Anserini +test204 Q0 12432245 14 10.590200 Anserini +test204 Q0 15998808 15 10.291756 Anserini +test204 Q0 3809825 16 10.111123 Anserini +test204 Q0 12432244 17 9.996685 Anserini +test204 Q0 4093809 18 9.886503 Anserini +test204 Q0 15998809 19 9.844062 Anserini +test204 Q0 13924646 20 9.727651 Anserini +test204 Q0 10897563 21 9.713177 Anserini +test204 Q0 10412705 22 9.704494 Anserini +test204 Q0 12432243 23 9.684813 Anserini +test204 Q0 4093805 24 9.622998 Anserini +test204 Q0 10938720 25 9.622725 Anserini +test204 Q0 12356161 26 9.609372 Anserini +test204 Q0 15446491 27 9.584518 Anserini +test204 Q0 15446487 28 9.559959 Anserini +test204 Q0 15409668 29 9.501776 Anserini +test204 Q0 11484240 30 9.474666 Anserini +test2040 Q0 894966 1 16.484789 Anserini +test2040 Q0 5350072 2 15.262001 Anserini +test2040 Q0 7649202 3 14.469303 Anserini +test2040 Q0 3261027 4 14.413771 Anserini +test2040 Q0 732877 5 13.979405 Anserini +test2040 Q0 272513 6 13.803672 Anserini +test2040 Q0 4814832 7 13.457842 Anserini +test2040 Q0 5566426 8 13.249375 Anserini +test2040 Q0 371365 9 13.218089 Anserini +test2040 Q0 18711920 10 13.140307 Anserini +test2040 Q0 272488 11 13.088558 Anserini +test2040 Q0 49672 12 13.049051 Anserini +test2040 Q0 1383439 13 13.018838 Anserini +test2040 Q0 4883396 14 12.970966 Anserini +test2040 Q0 6512279 15 12.855420 Anserini +test2040 Q0 12053147 16 12.804687 Anserini +test2040 Q0 13528523 17 12.669750 Anserini +test2040 Q0 4152711 18 12.625285 Anserini +test2040 Q0 1689134 19 12.599083 Anserini +test2040 Q0 2796142 20 12.577611 Anserini +test2040 Q0 1494516 21 12.464640 Anserini +test2040 Q0 194028 22 12.446435 Anserini +test2040 Q0 14014131 23 12.425154 Anserini +test2040 Q0 749024 24 12.364896 Anserini +test2040 Q0 6106133 25 12.360031 Anserini +test2040 Q0 14837446 26 12.358587 Anserini +test2040 Q0 16916850 27 12.322983 Anserini +test2040 Q0 5448156 28 12.163959 Anserini +test2040 Q0 5532880 29 12.117084 Anserini +test2040 Q0 9237244 30 12.052256 Anserini +test2041 Q0 561351 1 16.524000 Anserini +test2041 Q0 960030 2 15.559270 Anserini +test2041 Q0 871885 3 14.949049 Anserini +test2041 Q0 960017 4 14.891943 Anserini +test2041 Q0 960047 5 14.491352 Anserini +test2041 Q0 655545 6 14.183903 Anserini +test2041 Q0 11749257 7 13.897020 Anserini +test2041 Q0 1285472 8 13.843036 Anserini +test2041 Q0 1993513 9 13.647044 Anserini +test2041 Q0 13597144 10 13.630586 Anserini +test2041 Q0 8896884 11 13.619561 Anserini +test2041 Q0 761585 12 13.609032 Anserini +test2041 Q0 1285493 13 13.595724 Anserini +test2041 Q0 7184127 14 13.284132 Anserini +test2041 Q0 17893592 15 13.253642 Anserini +test2041 Q0 19463147 16 13.169424 Anserini +test2041 Q0 15127574 17 13.109621 Anserini +test2041 Q0 6592054 18 12.944401 Anserini +test2041 Q0 761599 19 12.938675 Anserini +test2041 Q0 2444500 20 12.936197 Anserini +test2041 Q0 2736033 21 12.926922 Anserini +test2041 Q0 5827934 22 12.896083 Anserini +test2041 Q0 655591 23 12.815781 Anserini +test2041 Q0 13281529 24 12.815781 Anserini +test2041 Q0 555128 25 12.776590 Anserini +test2041 Q0 3704520 26 12.667250 Anserini +test2041 Q0 9813860 27 12.660974 Anserini +test2041 Q0 13532298 28 12.654431 Anserini +test2041 Q0 17682049 29 12.649931 Anserini +test2041 Q0 3335640 30 12.602764 Anserini +test2042 Q0 14331235 1 18.110271 Anserini +test2042 Q0 3699433 2 17.672707 Anserini +test2042 Q0 16482728 3 17.112116 Anserini +test2042 Q0 7055829 4 16.986683 Anserini +test2042 Q0 13483744 5 16.590015 Anserini +test2042 Q0 12674934 6 16.552408 Anserini +test2042 Q0 11788 7 16.549505 Anserini +test2042 Q0 16942975 8 16.496986 Anserini +test2042 Q0 16942977 9 16.496986 Anserini +test2042 Q0 18343048 10 16.444910 Anserini +test2042 Q0 3947751 11 16.429085 Anserini +test2042 Q0 8831976 12 16.191759 Anserini +test2042 Q0 3987382 13 16.126101 Anserini +test2042 Q0 2651370 14 16.112061 Anserini +test2042 Q0 6816801 15 16.076023 Anserini +test2042 Q0 3314301 16 16.000772 Anserini +test2042 Q0 15703579 17 15.923818 Anserini +test2042 Q0 10751469 18 15.894656 Anserini +test2042 Q0 6157691 19 15.891500 Anserini +test2042 Q0 10687358 20 15.854821 Anserini +test2042 Q0 10334750 21 15.839829 Anserini +test2042 Q0 13991970 22 15.803907 Anserini +test2042 Q0 7727742 23 15.767757 Anserini +test2042 Q0 2065081 24 15.738905 Anserini +test2042 Q0 17633928 25 15.661602 Anserini +test2042 Q0 19491955 26 15.649473 Anserini +test2042 Q0 11952341 27 15.639498 Anserini +test2042 Q0 501627 28 15.590639 Anserini +test2042 Q0 3971734 29 15.575818 Anserini +test2042 Q0 5436598 30 15.518134 Anserini +test2043 Q0 16522549 1 18.255442 Anserini +test2043 Q0 16522550 2 17.739334 Anserini +test2043 Q0 15665040 3 15.846422 Anserini +test2043 Q0 13356444 4 15.559614 Anserini +test2043 Q0 17873176 5 14.434134 Anserini +test2043 Q0 15665045 6 14.288148 Anserini +test2043 Q0 3935975 7 13.997498 Anserini +test2043 Q0 3886148 8 13.784710 Anserini +test2043 Q0 13356458 9 13.562777 Anserini +test2043 Q0 4839926 10 13.406692 Anserini +test2043 Q0 14602031 11 13.275984 Anserini +test2043 Q0 13356461 12 13.275984 Anserini +test2043 Q0 17278894 13 13.275984 Anserini +test2043 Q0 17278895 14 13.275984 Anserini +test2043 Q0 14602047 15 13.275984 Anserini +test2043 Q0 14602053 16 13.275984 Anserini +test2043 Q0 14450013 17 13.266323 Anserini +test2043 Q0 14602039 18 13.208927 Anserini +test2043 Q0 17873175 19 13.208927 Anserini +test2043 Q0 5495463 20 13.173126 Anserini +test2043 Q0 13356456 21 12.849034 Anserini +test2043 Q0 3849148 22 12.721644 Anserini +test2043 Q0 12331519 23 12.606811 Anserini +test2043 Q0 13356445 24 12.434396 Anserini +test2043 Q0 13798248 25 12.305096 Anserini +test2043 Q0 12331517 26 12.208055 Anserini +test2043 Q0 17295077 27 12.037686 Anserini +test2043 Q0 13356450 28 12.024660 Anserini +test2043 Q0 13356452 29 12.024660 Anserini +test2043 Q0 13356451 30 12.024660 Anserini +test2044 Q0 17849843 1 15.632635 Anserini +test2044 Q0 17849823 2 15.547054 Anserini +test2044 Q0 6657866 3 14.075588 Anserini +test2044 Q0 5613628 4 13.689757 Anserini +test2044 Q0 1577422 5 13.612144 Anserini +test2044 Q0 15661066 6 13.531420 Anserini +test2044 Q0 18792105 7 13.449547 Anserini +test2044 Q0 15661056 8 13.417480 Anserini +test2044 Q0 18792106 9 13.268909 Anserini +test2044 Q0 13487573 10 13.229516 Anserini +test2044 Q0 12955487 11 13.036310 Anserini +test2044 Q0 5221810 12 12.838075 Anserini +test2044 Q0 13487568 13 12.830759 Anserini +test2044 Q0 18963266 14 12.712667 Anserini +test2044 Q0 18773203 15 12.586935 Anserini +test2044 Q0 11799878 16 12.498073 Anserini +test2044 Q0 10688195 17 12.436331 Anserini +test2044 Q0 1281673 18 12.430859 Anserini +test2044 Q0 17207633 19 12.339201 Anserini +test2044 Q0 18759272 20 12.331117 Anserini +test2044 Q0 15661062 21 12.259843 Anserini +test2044 Q0 14603605 22 12.233849 Anserini +test2044 Q0 17947635 23 12.232850 Anserini +test2044 Q0 18845905 24 12.216552 Anserini +test2044 Q0 18845922 25 12.216552 Anserini +test2044 Q0 521499 26 12.205261 Anserini +test2044 Q0 9366549 27 12.192614 Anserini +test2044 Q0 17070789 28 12.132872 Anserini +test2044 Q0 18845913 29 12.099129 Anserini +test2044 Q0 16151404 30 12.099129 Anserini +test2045 Q0 16930120 1 16.440598 Anserini +test2045 Q0 16252578 2 15.807607 Anserini +test2045 Q0 15216572 3 15.035751 Anserini +test2045 Q0 14320396 4 15.008801 Anserini +test2045 Q0 793403 5 14.725095 Anserini +test2045 Q0 15216570 6 14.701752 Anserini +test2045 Q0 17517362 7 14.632878 Anserini +test2045 Q0 13477498 8 14.630379 Anserini +test2045 Q0 5629094 9 14.478839 Anserini +test2045 Q0 3592565 10 14.437130 Anserini +test2045 Q0 12110134 11 14.285989 Anserini +test2045 Q0 7873306 12 14.156694 Anserini +test2045 Q0 8619604 13 14.025167 Anserini +test2045 Q0 8619619 14 13.909113 Anserini +test2045 Q0 11369592 15 13.626493 Anserini +test2045 Q0 15560232 16 13.596285 Anserini +test2045 Q0 6030268 17 13.587534 Anserini +test2045 Q0 5433767 18 13.508629 Anserini +test2045 Q0 17112459 19 13.463383 Anserini +test2045 Q0 16316254 20 13.383581 Anserini +test2045 Q0 6974088 21 13.318316 Anserini +test2045 Q0 3511606 22 13.308227 Anserini +test2045 Q0 3619337 23 13.281940 Anserini +test2045 Q0 15463926 24 13.189061 Anserini +test2045 Q0 3592586 25 12.907885 Anserini +test2045 Q0 3619336 26 12.900373 Anserini +test2045 Q0 7447891 27 12.826585 Anserini +test2045 Q0 19800311 28 12.711358 Anserini +test2045 Q0 20717679 29 12.686513 Anserini +test2045 Q0 20717680 30 12.686513 Anserini +test2046 Q0 18500999 1 13.256767 Anserini +test2046 Q0 18501000 2 13.256767 Anserini +test2046 Q0 245574 3 12.240660 Anserini +test2046 Q0 200713 4 12.132795 Anserini +test2046 Q0 257516 5 11.894767 Anserini +test2046 Q0 257518 6 11.793514 Anserini +test2046 Q0 20595370 7 11.681707 Anserini +test2046 Q0 2628532 8 11.545435 Anserini +test2046 Q0 1538256 9 11.403178 Anserini +test2046 Q0 7341453 10 11.243014 Anserini +test2046 Q0 3078844 11 11.217275 Anserini +test2046 Q0 20595377 12 11.186778 Anserini +test2046 Q0 12981648 13 11.113856 Anserini +test2046 Q0 7104255 14 10.970379 Anserini +test2046 Q0 4858357 15 10.942118 Anserini +test2046 Q0 1680511 16 10.920691 Anserini +test2046 Q0 15178208 17 10.882852 Anserini +test2046 Q0 11166263 18 10.853847 Anserini +test2046 Q0 9358880 19 10.815951 Anserini +test2046 Q0 11166266 20 10.761696 Anserini +test2046 Q0 8052051 21 10.728649 Anserini +test2046 Q0 11238806 22 10.696676 Anserini +test2046 Q0 1223064 23 10.688246 Anserini +test2046 Q0 750408 24 10.680680 Anserini +test2046 Q0 627628 25 10.595062 Anserini +test2046 Q0 14617070 26 10.594534 Anserini +test2046 Q0 16174355 27 10.578723 Anserini +test2046 Q0 9615841 28 10.577762 Anserini +test2046 Q0 1730653 29 10.570420 Anserini +test2046 Q0 14722016 30 10.539433 Anserini +test2047 Q0 7067538 1 10.315705 Anserini +test2047 Q0 7060307 2 9.877050 Anserini +test2047 Q0 447831 3 9.357897 Anserini +test2047 Q0 8978142 4 9.263376 Anserini +test2047 Q0 9983111 5 9.248904 Anserini +test2047 Q0 4436085 6 9.164849 Anserini +test2047 Q0 965023 7 8.961920 Anserini +test2047 Q0 962659 8 8.843122 Anserini +test2047 Q0 8567837 9 8.806349 Anserini +test2047 Q0 4931769 10 8.788673 Anserini +test2047 Q0 7060981 11 8.778408 Anserini +test2047 Q0 7051540 12 8.769808 Anserini +test2047 Q0 6653958 13 8.755014 Anserini +test2047 Q0 6768127 14 8.737104 Anserini +test2047 Q0 9887205 15 8.727224 Anserini +test2047 Q0 19954748 16 8.716528 Anserini +test2047 Q0 20167349 17 8.707178 Anserini +test2047 Q0 20167357 18 8.707178 Anserini +test2047 Q0 20324547 19 8.695080 Anserini +test2047 Q0 7056318 20 8.656165 Anserini +test2047 Q0 7061044 21 8.656165 Anserini +test2047 Q0 10464622 22 8.656165 Anserini +test2047 Q0 5553829 23 8.649015 Anserini +test2047 Q0 16694089 24 8.649015 Anserini +test2047 Q0 3848388 25 8.642804 Anserini +test2047 Q0 8567835 26 8.637300 Anserini +test2047 Q0 447824 27 8.611413 Anserini +test2047 Q0 8447975 28 8.609722 Anserini +test2047 Q0 7061143 29 8.562804 Anserini +test2047 Q0 7051650 30 8.562804 Anserini +test2048 Q0 1105778 1 12.606967 Anserini +test2048 Q0 1105781 2 12.513003 Anserini +test2048 Q0 19038242 3 12.215009 Anserini +test2048 Q0 17461910 4 12.005726 Anserini +test2048 Q0 4275485 5 11.720020 Anserini +test2048 Q0 9646882 6 11.695897 Anserini +test2048 Q0 225220 7 11.623560 Anserini +test2048 Q0 2380311 8 11.564200 Anserini +test2048 Q0 6636165 9 11.528748 Anserini +test2048 Q0 19106797 10 11.524940 Anserini +test2048 Q0 2803505 11 11.479598 Anserini +test2048 Q0 448796 12 11.460217 Anserini +test2048 Q0 20594432 13 11.400221 Anserini +test2048 Q0 225307 14 11.396450 Anserini +test2048 Q0 8003808 15 11.379818 Anserini +test2048 Q0 10614224 16 11.379818 Anserini +test2048 Q0 6636166 17 11.352524 Anserini +test2048 Q0 20654598 18 11.238476 Anserini +test2048 Q0 7620602 19 11.220621 Anserini +test2048 Q0 9041307 20 11.200422 Anserini +test2048 Q0 12387190 21 11.177360 Anserini +test2048 Q0 12387189 22 11.177360 Anserini +test2048 Q0 16623084 23 11.158480 Anserini +test2048 Q0 15277603 24 11.151886 Anserini +test2048 Q0 7711367 25 11.072570 Anserini +test2048 Q0 20034075 26 11.031966 Anserini +test2048 Q0 20392660 27 11.031966 Anserini +test2048 Q0 20392661 28 11.031966 Anserini +test2048 Q0 13883835 29 10.974691 Anserini +test2048 Q0 4299717 30 10.904343 Anserini +test2049 Q0 11661752 1 17.731279 Anserini +test2049 Q0 1616413 2 17.634872 Anserini +test2049 Q0 1616407 3 17.513876 Anserini +test2049 Q0 2462593 4 17.482536 Anserini +test2049 Q0 16136057 5 17.316418 Anserini +test2049 Q0 4661671 6 17.014109 Anserini +test2049 Q0 1650340 7 16.972349 Anserini +test2049 Q0 17637554 8 16.923115 Anserini +test2049 Q0 11661748 9 16.766705 Anserini +test2049 Q0 16246866 10 16.738043 Anserini +test2049 Q0 13299457 11 16.635069 Anserini +test2049 Q0 7045885 12 16.422604 Anserini +test2049 Q0 11888339 13 16.386141 Anserini +test2049 Q0 2456428 14 16.342480 Anserini +test2049 Q0 16625463 15 16.331329 Anserini +test2049 Q0 6242177 16 16.330866 Anserini +test2049 Q0 3669236 17 16.287060 Anserini +test2049 Q0 4381061 18 16.202435 Anserini +test2049 Q0 9025648 19 16.188486 Anserini +test2049 Q0 9203226 20 16.173138 Anserini +test2049 Q0 1598072 21 16.130053 Anserini +test2049 Q0 1598073 22 16.112921 Anserini +test2049 Q0 5372548 23 16.073528 Anserini +test2049 Q0 1774064 24 16.071819 Anserini +test2049 Q0 3224202 25 16.062370 Anserini +test2049 Q0 1616412 26 16.037790 Anserini +test2049 Q0 17414771 27 16.020803 Anserini +test2049 Q0 9025645 28 15.992624 Anserini +test2049 Q0 11661755 29 15.903281 Anserini +test2049 Q0 15099578 30 15.882589 Anserini +test205 Q0 1871762 1 10.712640 Anserini +test205 Q0 15346487 2 9.534696 Anserini +test205 Q0 1416074 3 9.511697 Anserini +test205 Q0 6283092 4 9.436243 Anserini +test205 Q0 15819637 5 9.361372 Anserini +test205 Q0 3982908 6 9.331685 Anserini +test205 Q0 3653073 7 9.316228 Anserini +test205 Q0 16358170 8 9.122710 Anserini +test205 Q0 1349451 9 9.107030 Anserini +test205 Q0 15346486 10 9.105404 Anserini +test205 Q0 766000 11 9.075092 Anserini +test205 Q0 5531314 12 9.050028 Anserini +test205 Q0 4779161 13 9.043022 Anserini +test205 Q0 12867472 14 8.953175 Anserini +test205 Q0 15985119 15 8.934593 Anserini +test205 Q0 2351496 16 8.848957 Anserini +test205 Q0 2175662 17 8.815395 Anserini +test205 Q0 16076234 18 8.797695 Anserini +test205 Q0 5687858 19 8.769240 Anserini +test205 Q0 4220812 20 8.753697 Anserini +test205 Q0 4250268 21 8.735465 Anserini +test205 Q0 14581466 22 8.713536 Anserini +test205 Q0 14537753 23 8.713536 Anserini +test205 Q0 14319479 24 8.701225 Anserini +test205 Q0 9513298 25 8.690087 Anserini +test205 Q0 10244059 26 8.632980 Anserini +test205 Q0 12242976 27 8.632771 Anserini +test205 Q0 699010 28 8.630651 Anserini +test205 Q0 6632555 29 8.608166 Anserini +test205 Q0 17620051 30 8.585042 Anserini +test2050 Q0 4624403 1 11.682692 Anserini +test2050 Q0 4609612 2 10.555991 Anserini +test2050 Q0 4624404 3 9.980535 Anserini +test2050 Q0 19585715 4 9.056984 Anserini +test2050 Q0 7975050 5 8.936041 Anserini +test2050 Q0 10358276 6 8.926695 Anserini +test2050 Q0 18788450 7 8.623569 Anserini +test2050 Q0 14177737 8 8.485539 Anserini +test2050 Q0 5835212 9 8.413429 Anserini +test2050 Q0 14177734 10 8.410089 Anserini +test2050 Q0 11344213 11 8.375906 Anserini +test2050 Q0 10393993 12 8.352986 Anserini +test2050 Q0 10003460 13 8.314893 Anserini +test2050 Q0 10871673 14 8.263663 Anserini +test2050 Q0 6215133 15 8.251977 Anserini +test2050 Q0 7155177 16 8.206843 Anserini +test2050 Q0 6756993 17 8.206366 Anserini +test2050 Q0 15841377 18 8.167845 Anserini +test2050 Q0 11025029 19 8.129343 Anserini +test2050 Q0 11792678 20 8.127985 Anserini +test2050 Q0 14527801 21 8.116982 Anserini +test2050 Q0 6467406 22 8.098650 Anserini +test2050 Q0 5234572 23 8.082857 Anserini +test2050 Q0 7936733 24 8.082857 Anserini +test2050 Q0 2414247 25 8.010515 Anserini +test2050 Q0 4610822 26 7.993228 Anserini +test2050 Q0 15542817 27 7.992142 Anserini +test2050 Q0 10992981 28 7.990839 Anserini +test2050 Q0 1743247 29 7.983819 Anserini +test2050 Q0 19241346 30 7.983819 Anserini +test2051 Q0 7710521 1 17.507860 Anserini +test2051 Q0 7710528 2 17.507860 Anserini +test2051 Q0 20519439 3 15.631973 Anserini +test2051 Q0 20937114 4 15.605566 Anserini +test2051 Q0 20618236 5 15.591212 Anserini +test2051 Q0 9581194 6 15.538994 Anserini +test2051 Q0 20937123 7 15.495759 Anserini +test2051 Q0 20937113 8 15.445320 Anserini +test2051 Q0 20937124 9 15.427466 Anserini +test2051 Q0 19752913 10 15.425544 Anserini +test2051 Q0 7720553 11 14.869431 Anserini +test2051 Q0 11491839 12 14.808949 Anserini +test2051 Q0 20863124 13 14.750457 Anserini +test2051 Q0 20618235 14 14.656504 Anserini +test2051 Q0 20095347 15 14.563837 Anserini +test2051 Q0 17926703 16 14.563837 Anserini +test2051 Q0 17915784 17 14.252741 Anserini +test2051 Q0 20519443 18 13.958353 Anserini +test2051 Q0 20670919 19 13.868616 Anserini +test2051 Q0 20670921 20 13.868616 Anserini +test2051 Q0 18716034 21 13.815860 Anserini +test2051 Q0 17915786 22 13.719929 Anserini +test2051 Q0 20937791 23 13.677924 Anserini +test2051 Q0 20937790 24 13.558533 Anserini +test2051 Q0 7710523 25 13.541286 Anserini +test2051 Q0 777629 26 13.532111 Anserini +test2051 Q0 5201777 27 13.446815 Anserini +test2051 Q0 18522213 28 13.434887 Anserini +test2051 Q0 3111266 29 13.297679 Anserini +test2051 Q0 18654249 30 13.255194 Anserini +test2052 Q0 13464040 1 17.203287 Anserini +test2052 Q0 4551878 2 16.373495 Anserini +test2052 Q0 4410411 3 16.031242 Anserini +test2052 Q0 5363372 4 15.661057 Anserini +test2052 Q0 5155713 5 15.637742 Anserini +test2052 Q0 13793625 6 15.152712 Anserini +test2052 Q0 79961 7 15.062716 Anserini +test2052 Q0 8715206 8 14.991272 Anserini +test2052 Q0 11515978 9 14.969615 Anserini +test2052 Q0 313800 10 14.917940 Anserini +test2052 Q0 431711 11 14.792898 Anserini +test2052 Q0 4777358 12 14.537487 Anserini +test2052 Q0 305588 13 14.346312 Anserini +test2052 Q0 13518895 14 14.276323 Anserini +test2052 Q0 3299248 15 14.248974 Anserini +test2052 Q0 284608 16 14.228598 Anserini +test2052 Q0 16553629 17 14.228225 Anserini +test2052 Q0 9016266 18 14.145096 Anserini +test2052 Q0 5652777 19 14.130895 Anserini +test2052 Q0 13356153 20 14.089626 Anserini +test2052 Q0 18465644 21 14.076915 Anserini +test2052 Q0 3845587 22 14.019344 Anserini +test2052 Q0 4053751 23 13.978671 Anserini +test2052 Q0 10755236 24 13.879716 Anserini +test2052 Q0 12662639 25 13.873490 Anserini +test2052 Q0 6291803 26 13.864789 Anserini +test2052 Q0 9016263 27 13.847304 Anserini +test2052 Q0 7492116 28 13.828208 Anserini +test2052 Q0 7530316 29 13.607581 Anserini +test2052 Q0 9016228 30 13.555292 Anserini +test2053 Q0 19927168 1 13.200108 Anserini +test2053 Q0 9418553 2 12.653803 Anserini +test2053 Q0 17676890 3 12.595823 Anserini +test2053 Q0 8249443 4 12.269020 Anserini +test2053 Q0 16817917 5 11.976374 Anserini +test2053 Q0 20300197 6 11.952054 Anserini +test2053 Q0 8258418 7 11.859632 Anserini +test2053 Q0 9297236 8 11.798835 Anserini +test2053 Q0 17632774 9 11.792961 Anserini +test2053 Q0 12453246 10 11.587502 Anserini +test2053 Q0 18835956 11 11.480292 Anserini +test2053 Q0 9418552 12 11.423902 Anserini +test2053 Q0 2995874 13 11.410466 Anserini +test2053 Q0 16324941 14 11.402391 Anserini +test2053 Q0 12698520 15 11.372760 Anserini +test2053 Q0 3246678 16 11.223700 Anserini +test2053 Q0 5017575 17 11.210435 Anserini +test2053 Q0 5661028 18 11.146475 Anserini +test2053 Q0 7724222 19 11.144450 Anserini +test2053 Q0 2623072 20 11.124196 Anserini +test2053 Q0 328745 21 11.085854 Anserini +test2053 Q0 17088853 22 11.076366 Anserini +test2053 Q0 14150800 23 10.981704 Anserini +test2053 Q0 15085554 24 10.960767 Anserini +test2053 Q0 13867550 25 10.958023 Anserini +test2053 Q0 8888904 26 10.913515 Anserini +test2053 Q0 12659965 27 10.905395 Anserini +test2053 Q0 17587616 28 10.887553 Anserini +test2053 Q0 14074449 29 10.862919 Anserini +test2053 Q0 17324737 30 10.849071 Anserini +test2054 Q0 7195454 1 11.765872 Anserini +test2054 Q0 10932498 2 11.201155 Anserini +test2054 Q0 2902308 3 10.917976 Anserini +test2054 Q0 16921327 4 10.758388 Anserini +test2054 Q0 18490892 5 10.508512 Anserini +test2054 Q0 12497712 6 10.450593 Anserini +test2054 Q0 3069056 7 10.351046 Anserini +test2054 Q0 13677323 8 10.200867 Anserini +test2054 Q0 16824426 9 9.983906 Anserini +test2054 Q0 5955429 10 9.939845 Anserini +test2054 Q0 3777414 11 9.933395 Anserini +test2054 Q0 4126350 12 9.928686 Anserini +test2054 Q0 9052824 13 9.897971 Anserini +test2054 Q0 3820278 14 9.879345 Anserini +test2054 Q0 9052822 15 9.857086 Anserini +test2054 Q0 2265840 16 9.831232 Anserini +test2054 Q0 14904035 17 9.823054 Anserini +test2054 Q0 15865316 18 9.799687 Anserini +test2054 Q0 10012910 19 9.787466 Anserini +test2054 Q0 9542321 20 9.738821 Anserini +test2054 Q0 1640989 21 9.738090 Anserini +test2054 Q0 19217022 22 9.711890 Anserini +test2054 Q0 8583686 23 9.707560 Anserini +test2054 Q0 20785134 24 9.702188 Anserini +test2054 Q0 20785136 25 9.702188 Anserini +test2054 Q0 10012913 26 9.631674 Anserini +test2054 Q0 17500907 27 9.590104 Anserini +test2054 Q0 9758737 28 9.570981 Anserini +test2054 Q0 19192921 29 9.570803 Anserini +test2054 Q0 8667578 30 9.395835 Anserini +test2055 Q0 16392730 1 14.894873 Anserini +test2055 Q0 16392732 2 14.894873 Anserini +test2055 Q0 16392731 3 12.517838 Anserini +test2055 Q0 17353498 4 11.409416 Anserini +test2055 Q0 17912252 5 11.327990 Anserini +test2055 Q0 17091866 6 11.272339 Anserini +test2055 Q0 15387536 7 11.221231 Anserini +test2055 Q0 14317164 8 11.217933 Anserini +test2055 Q0 19137914 9 11.113490 Anserini +test2055 Q0 3011196 10 11.068214 Anserini +test2055 Q0 17241232 11 11.067019 Anserini +test2055 Q0 20362179 12 11.062729 Anserini +test2055 Q0 12940995 13 11.056472 Anserini +test2055 Q0 19327112 14 11.021763 Anserini +test2055 Q0 17977748 15 11.016281 Anserini +test2055 Q0 19310310 16 10.935167 Anserini +test2055 Q0 17241228 17 10.894196 Anserini +test2055 Q0 20637800 18 10.883535 Anserini +test2055 Q0 20588097 19 10.691295 Anserini +test2055 Q0 13974239 20 10.667456 Anserini +test2055 Q0 17091865 21 10.596724 Anserini +test2055 Q0 3011203 22 10.568922 Anserini +test2055 Q0 12940994 23 10.398017 Anserini +test2055 Q0 18680889 24 10.358444 Anserini +test2055 Q0 6839399 25 10.308202 Anserini +test2055 Q0 6839393 26 10.308202 Anserini +test2055 Q0 19888792 27 10.250726 Anserini +test2055 Q0 13373291 28 10.170086 Anserini +test2055 Q0 16811007 29 10.016043 Anserini +test2055 Q0 2099038 30 10.010256 Anserini +test2056 Q0 6477349 1 14.791451 Anserini +test2056 Q0 274489 2 14.327155 Anserini +test2056 Q0 274520 3 14.238892 Anserini +test2056 Q0 2135169 4 14.020175 Anserini +test2056 Q0 274546 5 13.979004 Anserini +test2056 Q0 274478 6 13.932956 Anserini +test2056 Q0 274507 7 13.719759 Anserini +test2056 Q0 11041079 8 13.713009 Anserini +test2056 Q0 9364532 9 13.713009 Anserini +test2056 Q0 13503491 10 13.620252 Anserini +test2056 Q0 274476 11 13.578685 Anserini +test2056 Q0 11071815 12 13.570537 Anserini +test2056 Q0 274518 13 13.509933 Anserini +test2056 Q0 6094434 14 13.475149 Anserini +test2056 Q0 1690544 15 13.443247 Anserini +test2056 Q0 4889500 16 13.304848 Anserini +test2056 Q0 5014260 17 13.290545 Anserini +test2056 Q0 6477352 18 13.259146 Anserini +test2056 Q0 6094432 19 13.241200 Anserini +test2056 Q0 11856204 20 13.215569 Anserini +test2056 Q0 5544489 21 13.173816 Anserini +test2056 Q0 18588160 22 13.159952 Anserini +test2056 Q0 5014258 23 13.100471 Anserini +test2056 Q0 5014281 24 13.080301 Anserini +test2056 Q0 5772415 25 13.047454 Anserini +test2056 Q0 274515 26 12.980688 Anserini +test2056 Q0 274514 27 12.978445 Anserini +test2056 Q0 14687294 28 12.962423 Anserini +test2056 Q0 15883962 29 12.906887 Anserini +test2056 Q0 803084 30 12.884000 Anserini +test2057 Q0 18081074 1 11.626525 Anserini +test2057 Q0 11107328 2 10.857841 Anserini +test2057 Q0 11848674 3 10.833389 Anserini +test2057 Q0 1911781 4 10.474888 Anserini +test2057 Q0 12274844 5 10.474566 Anserini +test2057 Q0 15134582 6 10.304092 Anserini +test2057 Q0 11848677 7 10.175220 Anserini +test2057 Q0 8547540 8 10.057209 Anserini +test2057 Q0 8547532 9 10.022998 Anserini +test2057 Q0 11848671 10 10.022998 Anserini +test2057 Q0 11848678 11 10.022998 Anserini +test2057 Q0 14937247 12 9.975724 Anserini +test2057 Q0 4665914 13 9.970127 Anserini +test2057 Q0 8965944 14 9.951270 Anserini +test2057 Q0 17307908 15 9.800097 Anserini +test2057 Q0 6901233 16 9.771223 Anserini +test2057 Q0 11848705 17 9.754246 Anserini +test2057 Q0 11160057 18 9.713411 Anserini +test2057 Q0 11299342 19 9.703688 Anserini +test2057 Q0 18081071 20 9.701265 Anserini +test2057 Q0 7615057 21 9.585554 Anserini +test2057 Q0 20443830 22 9.526695 Anserini +test2057 Q0 13563709 23 9.506727 Anserini +test2057 Q0 6688721 24 9.499004 Anserini +test2057 Q0 18508463 25 9.486072 Anserini +test2057 Q0 20298929 26 9.449636 Anserini +test2057 Q0 8547541 27 9.440071 Anserini +test2057 Q0 7970039 28 9.416868 Anserini +test2057 Q0 1820853 29 9.416868 Anserini +test2057 Q0 18081075 30 9.378473 Anserini +test2058 Q0 1638014 1 11.843263 Anserini +test2058 Q0 14649861 2 11.043252 Anserini +test2058 Q0 15714078 3 10.928894 Anserini +test2058 Q0 17920909 4 10.222326 Anserini +test2058 Q0 13075276 5 10.143785 Anserini +test2058 Q0 10335997 6 10.142808 Anserini +test2058 Q0 2453562 7 10.111284 Anserini +test2058 Q0 10734580 8 9.906575 Anserini +test2058 Q0 4770239 9 9.813229 Anserini +test2058 Q0 889183 10 9.752119 Anserini +test2058 Q0 14649865 11 9.748842 Anserini +test2058 Q0 20512730 12 9.744835 Anserini +test2058 Q0 4781380 13 9.704741 Anserini +test2058 Q0 18894669 14 9.672289 Anserini +test2058 Q0 14649882 15 9.560231 Anserini +test2058 Q0 14649872 16 9.545679 Anserini +test2058 Q0 19869368 17 9.495529 Anserini +test2058 Q0 15477732 18 9.481973 Anserini +test2058 Q0 2909779 19 9.481973 Anserini +test2058 Q0 10734578 20 9.479191 Anserini +test2058 Q0 14649868 21 9.387683 Anserini +test2058 Q0 14649866 22 9.364812 Anserini +test2058 Q0 1638017 23 9.326741 Anserini +test2058 Q0 6117606 24 9.320828 Anserini +test2058 Q0 9558015 25 9.295345 Anserini +test2058 Q0 870406 26 9.276035 Anserini +test2058 Q0 5192379 27 9.264997 Anserini +test2058 Q0 5561026 28 9.264997 Anserini +test2058 Q0 3770154 29 9.264997 Anserini +test2058 Q0 14908807 30 9.247391 Anserini +test2059 Q0 14897922 1 12.950181 Anserini +test2059 Q0 14900820 2 12.892772 Anserini +test2059 Q0 11792456 3 12.655537 Anserini +test2059 Q0 5979898 4 12.504621 Anserini +test2059 Q0 11035649 5 12.253390 Anserini +test2059 Q0 14888099 6 12.203042 Anserini +test2059 Q0 18978571 7 11.846034 Anserini +test2059 Q0 5056133 8 11.832062 Anserini +test2059 Q0 10554031 9 11.827675 Anserini +test2059 Q0 14531414 10 11.775043 Anserini +test2059 Q0 14454151 11 11.512989 Anserini +test2059 Q0 13069702 12 11.495710 Anserini +test2059 Q0 9814762 13 11.480726 Anserini +test2059 Q0 6261181 14 11.444319 Anserini +test2059 Q0 6897999 15 11.423230 Anserini +test2059 Q0 3964634 16 11.356647 Anserini +test2059 Q0 8280557 17 11.353954 Anserini +test2059 Q0 8297630 18 11.343847 Anserini +test2059 Q0 11588844 19 11.341887 Anserini +test2059 Q0 10487675 20 11.324383 Anserini +test2059 Q0 20468587 21 11.323103 Anserini +test2059 Q0 15686537 22 11.308733 Anserini +test2059 Q0 13356613 23 11.286886 Anserini +test2059 Q0 13959146 24 11.286148 Anserini +test2059 Q0 6829725 25 11.270316 Anserini +test2059 Q0 6054044 26 11.145372 Anserini +test2059 Q0 12880646 27 11.071060 Anserini +test2059 Q0 14989519 28 11.012078 Anserini +test2059 Q0 13268331 29 10.979438 Anserini +test2059 Q0 7845634 30 10.963112 Anserini +test206 Q0 12960802 1 16.339560 Anserini +test206 Q0 19070406 2 15.868958 Anserini +test206 Q0 19070407 3 15.733895 Anserini +test206 Q0 12960801 4 15.591626 Anserini +test206 Q0 12925474 5 15.591626 Anserini +test206 Q0 12925475 6 15.574573 Anserini +test206 Q0 12961052 7 15.530970 Anserini +test206 Q0 12962778 8 15.530970 Anserini +test206 Q0 14347856 9 15.029315 Anserini +test206 Q0 7254895 10 14.958333 Anserini +test206 Q0 11989247 11 14.881435 Anserini +test206 Q0 9456047 12 14.761569 Anserini +test206 Q0 11989192 13 14.698313 Anserini +test206 Q0 12961053 14 14.671283 Anserini +test206 Q0 11989274 15 14.671283 Anserini +test206 Q0 20525225 16 14.573412 Anserini +test206 Q0 3765816 17 14.573412 Anserini +test206 Q0 10858403 18 14.522966 Anserini +test206 Q0 1413920 19 14.447978 Anserini +test206 Q0 13426831 20 14.434383 Anserini +test206 Q0 17801268 21 14.434383 Anserini +test206 Q0 17801264 22 14.434383 Anserini +test206 Q0 17801266 23 14.434383 Anserini +test206 Q0 9980016 24 14.376372 Anserini +test206 Q0 17801269 25 14.354455 Anserini +test206 Q0 17801270 26 14.354455 Anserini +test206 Q0 17801271 27 14.354455 Anserini +test206 Q0 14347860 28 14.136778 Anserini +test206 Q0 16747048 29 14.126631 Anserini +test206 Q0 20530437 30 14.121678 Anserini +test2060 Q0 19127876 1 12.662743 Anserini +test2060 Q0 1804086 2 12.072520 Anserini +test2060 Q0 7346103 3 12.034692 Anserini +test2060 Q0 18419128 4 11.786458 Anserini +test2060 Q0 460178 5 11.713275 Anserini +test2060 Q0 460300 6 11.666687 Anserini +test2060 Q0 11409629 7 11.553684 Anserini +test2060 Q0 11880249 8 11.502367 Anserini +test2060 Q0 460204 9 11.476196 Anserini +test2060 Q0 11400359 10 11.427210 Anserini +test2060 Q0 16478984 11 11.392481 Anserini +test2060 Q0 11400360 12 11.341605 Anserini +test2060 Q0 11402386 13 11.308475 Anserini +test2060 Q0 11274763 14 11.305372 Anserini +test2060 Q0 11274699 15 11.255156 Anserini +test2060 Q0 7346083 16 11.254295 Anserini +test2060 Q0 460252 17 11.229708 Anserini +test2060 Q0 460181 18 11.229708 Anserini +test2060 Q0 19807855 19 11.228273 Anserini +test2060 Q0 11402394 20 11.208180 Anserini +test2060 Q0 11274764 21 11.178898 Anserini +test2060 Q0 11274813 22 11.178898 Anserini +test2060 Q0 19127867 23 11.178898 Anserini +test2060 Q0 16185909 24 11.175760 Anserini +test2060 Q0 460199 25 11.129848 Anserini +test2060 Q0 17952218 26 11.078050 Anserini +test2060 Q0 9855597 27 11.006681 Anserini +test2060 Q0 10146885 28 10.991068 Anserini +test2060 Q0 17386808 29 10.969238 Anserini +test2060 Q0 11393664 30 10.917364 Anserini +test2061 Q0 7024437 1 12.290505 Anserini +test2061 Q0 1733023 2 11.820047 Anserini +test2061 Q0 4375363 3 11.634073 Anserini +test2061 Q0 16020758 4 11.545899 Anserini +test2061 Q0 6108310 5 11.433964 Anserini +test2061 Q0 1755311 6 11.272017 Anserini +test2061 Q0 655118 7 11.196113 Anserini +test2061 Q0 6108311 8 11.181702 Anserini +test2061 Q0 10954918 9 11.176651 Anserini +test2061 Q0 655111 10 11.122663 Anserini +test2061 Q0 1243945 11 11.104305 Anserini +test2061 Q0 16781646 12 11.102302 Anserini +test2061 Q0 5096733 13 11.094054 Anserini +test2061 Q0 8923991 14 11.070120 Anserini +test2061 Q0 10227599 15 10.995215 Anserini +test2061 Q0 14148580 16 10.995215 Anserini +test2061 Q0 13750621 17 10.895517 Anserini +test2061 Q0 655024 18 10.806049 Anserini +test2061 Q0 1755321 19 10.803425 Anserini +test2061 Q0 11507211 20 10.722642 Anserini +test2061 Q0 13843937 21 10.720057 Anserini +test2061 Q0 1648057 22 10.717555 Anserini +test2061 Q0 655082 23 10.711759 Anserini +test2061 Q0 4823012 24 10.707375 Anserini +test2061 Q0 8025456 25 10.707308 Anserini +test2061 Q0 1755313 26 10.678857 Anserini +test2061 Q0 9059966 27 10.652961 Anserini +test2061 Q0 11940897 28 10.620714 Anserini +test2061 Q0 1755320 29 10.584256 Anserini +test2061 Q0 3222837 30 10.518021 Anserini +test2062 Q0 19152711 1 21.890974 Anserini +test2062 Q0 2734472 2 19.630857 Anserini +test2062 Q0 18567794 3 19.541071 Anserini +test2062 Q0 18567776 4 19.301010 Anserini +test2062 Q0 18563346 5 19.039547 Anserini +test2062 Q0 19152710 6 18.981670 Anserini +test2062 Q0 2734539 7 18.127243 Anserini +test2062 Q0 4450419 8 18.008923 Anserini +test2062 Q0 18329778 9 17.926880 Anserini +test2062 Q0 18798746 10 17.904774 Anserini +test2062 Q0 2734559 11 17.901821 Anserini +test2062 Q0 12810379 12 17.867208 Anserini +test2062 Q0 17836780 13 17.858295 Anserini +test2062 Q0 20550658 14 17.759817 Anserini +test2062 Q0 17079291 15 17.726490 Anserini +test2062 Q0 20550654 16 17.680363 Anserini +test2062 Q0 18329784 17 17.597666 Anserini +test2062 Q0 18563356 18 17.580259 Anserini +test2062 Q0 17079304 19 17.577888 Anserini +test2062 Q0 18329765 20 17.520308 Anserini +test2062 Q0 18567782 21 17.445585 Anserini +test2062 Q0 2734530 22 17.397913 Anserini +test2062 Q0 17076837 23 17.385456 Anserini +test2062 Q0 2734573 24 17.379025 Anserini +test2062 Q0 17076868 25 17.327465 Anserini +test2062 Q0 12810383 26 17.255913 Anserini +test2062 Q0 15201074 27 17.064325 Anserini +test2062 Q0 5552835 28 17.026154 Anserini +test2062 Q0 18084512 29 17.024920 Anserini +test2062 Q0 17836795 30 16.968971 Anserini +test2063 Q0 11428466 1 23.283272 Anserini +test2063 Q0 4757440 2 21.754959 Anserini +test2063 Q0 11428458 3 21.578770 Anserini +test2063 Q0 17330566 4 21.125378 Anserini +test2063 Q0 16427237 5 20.885736 Anserini +test2063 Q0 11264133 6 20.348932 Anserini +test2063 Q0 16427258 7 20.234058 Anserini +test2063 Q0 17286732 8 19.906408 Anserini +test2063 Q0 10560501 9 19.604324 Anserini +test2063 Q0 11277118 10 19.556503 Anserini +test2063 Q0 11264123 11 19.346460 Anserini +test2063 Q0 11264134 12 19.346460 Anserini +test2063 Q0 11277112 13 19.304594 Anserini +test2063 Q0 12208141 14 19.289572 Anserini +test2063 Q0 11428463 15 19.225607 Anserini +test2063 Q0 11277120 16 19.213530 Anserini +test2063 Q0 4757442 17 19.142372 Anserini +test2063 Q0 14736203 18 19.048445 Anserini +test2063 Q0 17286735 19 18.885593 Anserini +test2063 Q0 4757455 20 18.656914 Anserini +test2063 Q0 16607800 21 18.656914 Anserini +test2063 Q0 14345820 22 18.635191 Anserini +test2063 Q0 11428465 23 18.629946 Anserini +test2063 Q0 11428464 24 18.601780 Anserini +test2063 Q0 17826874 25 18.582729 Anserini +test2063 Q0 20600493 26 18.270819 Anserini +test2063 Q0 11428459 27 18.261568 Anserini +test2063 Q0 11428460 28 18.239767 Anserini +test2063 Q0 4757469 29 18.222748 Anserini +test2063 Q0 11264126 30 18.188608 Anserini +test2064 Q0 6051258 1 19.173395 Anserini +test2064 Q0 6051263 2 14.922125 Anserini +test2064 Q0 1426010 3 14.405118 Anserini +test2064 Q0 10394522 4 13.689530 Anserini +test2064 Q0 10394519 5 13.598752 Anserini +test2064 Q0 11406955 6 13.577421 Anserini +test2064 Q0 6643103 7 12.537369 Anserini +test2064 Q0 16162913 8 12.424242 Anserini +test2064 Q0 8657147 9 11.903754 Anserini +test2064 Q0 13763545 10 11.813167 Anserini +test2064 Q0 13763546 11 11.813167 Anserini +test2064 Q0 19299708 12 11.723325 Anserini +test2064 Q0 15709347 13 11.716422 Anserini +test2064 Q0 8657149 14 11.715534 Anserini +test2064 Q0 6051261 15 11.689253 Anserini +test2064 Q0 18416209 16 11.594147 Anserini +test2064 Q0 11199375 17 11.551670 Anserini +test2064 Q0 18416210 18 11.546821 Anserini +test2064 Q0 19367716 19 11.518889 Anserini +test2064 Q0 15155187 20 11.465266 Anserini +test2064 Q0 19367715 21 11.443803 Anserini +test2064 Q0 7809446 22 11.427045 Anserini +test2064 Q0 20004390 23 11.399133 Anserini +test2064 Q0 12466417 24 11.384108 Anserini +test2064 Q0 1490750 25 11.303174 Anserini +test2064 Q0 4661691 26 11.273812 Anserini +test2064 Q0 8454756 27 11.272062 Anserini +test2064 Q0 9007617 28 11.227321 Anserini +test2064 Q0 10502814 29 11.161077 Anserini +test2064 Q0 4827538 30 11.159296 Anserini +test2065 Q0 6188534 1 19.401176 Anserini +test2065 Q0 6188532 2 18.699463 Anserini +test2065 Q0 6188533 3 18.342091 Anserini +test2065 Q0 6188536 4 17.982109 Anserini +test2065 Q0 6188535 5 17.739872 Anserini +test2065 Q0 18217026 6 17.698805 Anserini +test2065 Q0 15741966 7 16.238480 Anserini +test2065 Q0 17596716 8 15.883255 Anserini +test2065 Q0 1355674 9 15.779833 Anserini +test2065 Q0 15392257 10 15.465456 Anserini +test2065 Q0 11550065 11 15.377825 Anserini +test2065 Q0 14439016 12 15.246274 Anserini +test2065 Q0 19198912 13 15.233726 Anserini +test2065 Q0 5027090 14 15.221798 Anserini +test2065 Q0 2732401 15 15.137386 Anserini +test2065 Q0 8578536 16 15.063912 Anserini +test2065 Q0 20753590 17 14.932317 Anserini +test2065 Q0 17295887 18 14.925898 Anserini +test2065 Q0 7803763 19 14.829186 Anserini +test2065 Q0 18307502 20 14.654059 Anserini +test2065 Q0 5053663 21 14.637386 Anserini +test2065 Q0 15392400 22 14.617524 Anserini +test2065 Q0 10328833 23 14.523076 Anserini +test2065 Q0 11335802 24 14.397662 Anserini +test2065 Q0 4713100 25 14.355608 Anserini +test2065 Q0 8583824 26 14.222716 Anserini +test2065 Q0 20596568 27 14.149744 Anserini +test2065 Q0 12730752 28 14.129465 Anserini +test2065 Q0 16801570 29 14.079230 Anserini +test2065 Q0 14008956 30 14.060614 Anserini +test2066 Q0 15858897 1 14.270338 Anserini +test2066 Q0 20635012 2 13.695654 Anserini +test2066 Q0 16085626 3 13.365773 Anserini +test2066 Q0 14203812 4 12.855704 Anserini +test2066 Q0 20760990 5 12.663687 Anserini +test2066 Q0 4501585 6 12.463826 Anserini +test2066 Q0 16590099 7 12.463048 Anserini +test2066 Q0 17162850 8 12.412944 Anserini +test2066 Q0 19401577 9 12.359984 Anserini +test2066 Q0 16709294 10 12.299272 Anserini +test2066 Q0 15858896 11 12.222898 Anserini +test2066 Q0 18790625 12 12.193883 Anserini +test2066 Q0 12977624 13 12.185040 Anserini +test2066 Q0 7189932 14 12.145300 Anserini +test2066 Q0 15440310 15 12.138470 Anserini +test2066 Q0 20734692 16 12.126415 Anserini +test2066 Q0 19412880 17 12.110938 Anserini +test2066 Q0 20398101 18 12.110071 Anserini +test2066 Q0 18069335 19 12.095016 Anserini +test2066 Q0 15561829 20 12.077519 Anserini +test2066 Q0 9527074 21 12.049203 Anserini +test2066 Q0 18069333 22 12.037132 Anserini +test2066 Q0 17633846 23 12.035172 Anserini +test2066 Q0 10696346 24 11.977669 Anserini +test2066 Q0 5014692 25 11.934844 Anserini +test2066 Q0 15804045 26 11.879963 Anserini +test2066 Q0 4368512 27 11.864122 Anserini +test2066 Q0 13186651 28 11.861530 Anserini +test2066 Q0 8164653 29 11.848645 Anserini +test2066 Q0 13968352 30 11.785498 Anserini +test2067 Q0 19067853 1 13.865973 Anserini +test2067 Q0 20428451 2 12.390740 Anserini +test2067 Q0 20428463 3 11.912272 Anserini +test2067 Q0 20428465 4 11.707429 Anserini +test2067 Q0 9675169 5 11.332009 Anserini +test2067 Q0 6196132 6 11.332009 Anserini +test2067 Q0 20428458 7 11.269255 Anserini +test2067 Q0 6196123 8 11.166842 Anserini +test2067 Q0 6196145 9 11.166842 Anserini +test2067 Q0 6196134 10 11.147837 Anserini +test2067 Q0 5599335 11 11.144197 Anserini +test2067 Q0 6196126 12 11.086955 Anserini +test2067 Q0 20428457 13 11.007916 Anserini +test2067 Q0 6196140 14 10.939342 Anserini +test2067 Q0 6196138 15 10.939342 Anserini +test2067 Q0 6196139 16 10.939342 Anserini +test2067 Q0 12843030 17 10.932054 Anserini +test2067 Q0 4031752 18 10.833851 Anserini +test2067 Q0 16459468 19 10.827708 Anserini +test2067 Q0 6196142 20 10.827708 Anserini +test2067 Q0 6196133 21 10.827708 Anserini +test2067 Q0 16070326 22 10.784052 Anserini +test2067 Q0 16226131 23 10.772741 Anserini +test2067 Q0 16459470 24 10.772741 Anserini +test2067 Q0 20428459 25 10.772741 Anserini +test2067 Q0 9836779 26 10.750560 Anserini +test2067 Q0 9675148 27 10.634949 Anserini +test2067 Q0 6196129 28 10.575293 Anserini +test2067 Q0 3129244 29 10.478573 Anserini +test2067 Q0 11546920 30 10.468938 Anserini +test2068 Q0 2544412 1 17.680025 Anserini +test2068 Q0 13096952 2 12.246883 Anserini +test2068 Q0 8898430 3 12.162730 Anserini +test2068 Q0 20482761 4 11.489102 Anserini +test2068 Q0 20482762 5 11.489102 Anserini +test2068 Q0 11897077 6 11.341480 Anserini +test2068 Q0 13038471 7 11.281602 Anserini +test2068 Q0 13254905 8 10.951395 Anserini +test2068 Q0 13154874 9 10.850420 Anserini +test2068 Q0 13154877 10 10.850420 Anserini +test2068 Q0 5726316 11 10.731813 Anserini +test2068 Q0 7743129 12 10.717156 Anserini +test2068 Q0 12843294 13 10.714954 Anserini +test2068 Q0 12843301 14 10.714954 Anserini +test2068 Q0 11507203 15 10.700821 Anserini +test2068 Q0 8638371 16 10.482105 Anserini +test2068 Q0 12843320 17 10.413154 Anserini +test2068 Q0 3568908 18 10.371191 Anserini +test2068 Q0 3568878 19 10.371191 Anserini +test2068 Q0 2051443 20 10.284981 Anserini +test2068 Q0 3094339 21 10.276274 Anserini +test2068 Q0 18891853 22 10.128254 Anserini +test2068 Q0 12843318 23 10.124971 Anserini +test2068 Q0 12843322 24 10.124971 Anserini +test2068 Q0 13521530 25 10.122131 Anserini +test2068 Q0 13923001 26 10.122131 Anserini +test2068 Q0 10863369 27 10.122131 Anserini +test2068 Q0 6452811 28 10.110785 Anserini +test2068 Q0 9918268 29 10.037311 Anserini +test2068 Q0 10046928 30 10.023935 Anserini +test2069 Q0 6848646 1 12.938847 Anserini +test2069 Q0 15557629 2 12.730386 Anserini +test2069 Q0 9249095 3 12.590158 Anserini +test2069 Q0 14860211 4 12.545712 Anserini +test2069 Q0 13750762 5 12.504428 Anserini +test2069 Q0 2990060 6 12.451849 Anserini +test2069 Q0 6591595 7 12.374005 Anserini +test2069 Q0 11366390 8 12.369531 Anserini +test2069 Q0 18928911 9 12.355462 Anserini +test2069 Q0 7148053 10 12.332767 Anserini +test2069 Q0 7148054 11 12.180970 Anserini +test2069 Q0 10762024 12 12.177162 Anserini +test2069 Q0 3281581 13 12.176646 Anserini +test2069 Q0 1630138 14 12.140682 Anserini +test2069 Q0 4909928 15 12.116035 Anserini +test2069 Q0 15478667 16 12.101871 Anserini +test2069 Q0 12350315 17 12.088857 Anserini +test2069 Q0 525708 18 12.038592 Anserini +test2069 Q0 15450050 19 12.037652 Anserini +test2069 Q0 7012111 20 12.028080 Anserini +test2069 Q0 3719630 21 11.999388 Anserini +test2069 Q0 7121083 22 11.993479 Anserini +test2069 Q0 5508190 23 11.923693 Anserini +test2069 Q0 6926225 24 11.881270 Anserini +test2069 Q0 5278789 25 11.837287 Anserini +test2069 Q0 2690633 26 11.825926 Anserini +test2069 Q0 1307288 27 11.825926 Anserini +test2069 Q0 9424987 28 11.823929 Anserini +test2069 Q0 19671970 29 11.817137 Anserini +test2069 Q0 15532458 30 11.815824 Anserini +test207 Q0 18517966 1 14.136876 Anserini +test207 Q0 9309388 2 13.069673 Anserini +test207 Q0 12494877 3 12.829876 Anserini +test207 Q0 12494874 4 12.635609 Anserini +test207 Q0 6471865 5 12.535614 Anserini +test207 Q0 12415137 6 12.370234 Anserini +test207 Q0 12415148 7 12.346507 Anserini +test207 Q0 18417551 8 12.267876 Anserini +test207 Q0 10879780 9 12.200850 Anserini +test207 Q0 6584686 10 12.166240 Anserini +test207 Q0 4255562 11 12.161057 Anserini +test207 Q0 4255558 12 12.106507 Anserini +test207 Q0 20395722 13 12.071058 Anserini +test207 Q0 20569703 14 12.042644 Anserini +test207 Q0 7690238 15 12.035277 Anserini +test207 Q0 12415160 16 12.012311 Anserini +test207 Q0 18489245 17 11.928426 Anserini +test207 Q0 6584685 18 11.926697 Anserini +test207 Q0 18417552 19 11.906919 Anserini +test207 Q0 12415172 20 11.848759 Anserini +test207 Q0 12415171 21 11.747229 Anserini +test207 Q0 9067279 22 11.744148 Anserini +test207 Q0 12879421 23 11.679010 Anserini +test207 Q0 18517964 24 11.640982 Anserini +test207 Q0 12415138 25 11.633625 Anserini +test207 Q0 10146497 26 11.594991 Anserini +test207 Q0 12879454 27 11.578272 Anserini +test207 Q0 6303428 28 11.532316 Anserini +test207 Q0 5525660 29 11.424334 Anserini +test207 Q0 8496713 30 11.412054 Anserini +test2070 Q0 4965684 1 15.838552 Anserini +test2070 Q0 2934176 2 15.430429 Anserini +test2070 Q0 633015 3 15.366648 Anserini +test2070 Q0 4965706 4 15.167981 Anserini +test2070 Q0 4965683 5 14.931919 Anserini +test2070 Q0 2934177 6 14.597955 Anserini +test2070 Q0 4965695 7 14.568243 Anserini +test2070 Q0 7867778 8 14.324812 Anserini +test2070 Q0 7867802 9 14.320653 Anserini +test2070 Q0 2934174 10 14.128801 Anserini +test2070 Q0 4965702 11 14.057304 Anserini +test2070 Q0 4965688 12 14.054971 Anserini +test2070 Q0 12943255 13 13.946477 Anserini +test2070 Q0 7867786 14 13.919652 Anserini +test2070 Q0 4965700 15 13.849268 Anserini +test2070 Q0 10345156 16 13.669254 Anserini +test2070 Q0 8538190 17 13.619316 Anserini +test2070 Q0 4965703 18 13.591832 Anserini +test2070 Q0 8538180 19 13.505313 Anserini +test2070 Q0 8538217 20 13.505313 Anserini +test2070 Q0 2934138 21 13.492952 Anserini +test2070 Q0 8538213 22 13.344163 Anserini +test2070 Q0 4376577 23 13.257755 Anserini +test2070 Q0 5465582 24 13.218829 Anserini +test2070 Q0 5465587 25 13.218829 Anserini +test2070 Q0 10345154 26 13.070269 Anserini +test2070 Q0 7867800 27 13.056002 Anserini +test2070 Q0 6696465 28 13.012447 Anserini +test2070 Q0 16656225 29 12.936118 Anserini +test2070 Q0 16656236 30 12.936118 Anserini +test2071 Q0 13465742 1 12.528322 Anserini +test2071 Q0 11000318 2 12.221963 Anserini +test2071 Q0 297005 3 12.119282 Anserini +test2071 Q0 9165631 4 11.902929 Anserini +test2071 Q0 12111887 5 11.827700 Anserini +test2071 Q0 5808299 6 11.781919 Anserini +test2071 Q0 15477211 7 11.765474 Anserini +test2071 Q0 9558182 8 11.718328 Anserini +test2071 Q0 11535215 9 11.627974 Anserini +test2071 Q0 9738329 10 11.624890 Anserini +test2071 Q0 6314093 11 11.555635 Anserini +test2071 Q0 10586199 12 11.427003 Anserini +test2071 Q0 6314158 13 11.426373 Anserini +test2071 Q0 12440909 14 11.413505 Anserini +test2071 Q0 20411239 15 11.321699 Anserini +test2071 Q0 16599214 16 11.319717 Anserini +test2071 Q0 6129977 17 11.304059 Anserini +test2071 Q0 12215817 18 11.250536 Anserini +test2071 Q0 2823596 19 11.236829 Anserini +test2071 Q0 291415 20 11.236455 Anserini +test2071 Q0 7115858 21 11.216123 Anserini +test2071 Q0 7115850 22 11.169635 Anserini +test2071 Q0 6006293 23 11.117101 Anserini +test2071 Q0 11657626 24 11.108849 Anserini +test2071 Q0 16662904 25 11.094718 Anserini +test2071 Q0 480945 26 11.090956 Anserini +test2071 Q0 18691565 27 11.057664 Anserini +test2071 Q0 2506927 28 11.051360 Anserini +test2071 Q0 10941633 29 11.040319 Anserini +test2071 Q0 13742545 30 11.013859 Anserini +test2072 Q0 313849 1 19.111397 Anserini +test2072 Q0 394459 2 16.913168 Anserini +test2072 Q0 313805 3 16.122967 Anserini +test2072 Q0 11779866 4 15.987704 Anserini +test2072 Q0 20259594 5 15.764357 Anserini +test2072 Q0 19807796 6 15.713050 Anserini +test2072 Q0 9862649 7 15.680000 Anserini +test2072 Q0 376026 8 15.642148 Anserini +test2072 Q0 2717804 9 15.510263 Anserini +test2072 Q0 10272801 10 15.429552 Anserini +test2072 Q0 19807846 11 15.404406 Anserini +test2072 Q0 19807797 12 15.307700 Anserini +test2072 Q0 17473814 13 15.154420 Anserini +test2072 Q0 9403913 14 15.127305 Anserini +test2072 Q0 8457884 15 15.116323 Anserini +test2072 Q0 17161894 16 15.114336 Anserini +test2072 Q0 313880 17 15.092659 Anserini +test2072 Q0 10100179 18 15.060474 Anserini +test2072 Q0 19629916 19 14.905812 Anserini +test2072 Q0 2168461 20 14.876830 Anserini +test2072 Q0 12980589 21 14.847105 Anserini +test2072 Q0 1996289 22 14.837065 Anserini +test2072 Q0 15218773 23 14.771842 Anserini +test2072 Q0 12832941 24 14.743448 Anserini +test2072 Q0 15282877 25 14.697897 Anserini +test2072 Q0 6224942 26 14.629132 Anserini +test2072 Q0 13816911 27 14.602641 Anserini +test2072 Q0 6224844 28 14.593544 Anserini +test2072 Q0 18414064 29 14.572452 Anserini +test2072 Q0 20917218 30 14.530035 Anserini +test2073 Q0 10336646 1 13.823164 Anserini +test2073 Q0 10336640 2 13.723784 Anserini +test2073 Q0 10336642 3 13.394781 Anserini +test2073 Q0 10336645 4 13.331306 Anserini +test2073 Q0 15943453 5 13.291308 Anserini +test2073 Q0 10159667 6 12.999771 Anserini +test2073 Q0 12890208 7 12.516364 Anserini +test2073 Q0 9955039 8 12.459136 Anserini +test2073 Q0 17728799 9 12.451205 Anserini +test2073 Q0 10336641 10 12.387267 Anserini +test2073 Q0 10336644 11 12.345503 Anserini +test2073 Q0 17776955 12 12.164065 Anserini +test2073 Q0 2383801 13 12.159862 Anserini +test2073 Q0 9963275 14 12.089391 Anserini +test2073 Q0 9963735 15 12.003684 Anserini +test2073 Q0 9966173 16 11.939085 Anserini +test2073 Q0 10022854 17 11.793680 Anserini +test2073 Q0 15947475 18 11.614304 Anserini +test2073 Q0 9966043 19 11.408443 Anserini +test2073 Q0 5713613 20 11.381916 Anserini +test2073 Q0 14608058 21 11.374256 Anserini +test2073 Q0 10336643 22 11.346357 Anserini +test2073 Q0 17185590 23 11.339201 Anserini +test2073 Q0 14608059 24 11.321730 Anserini +test2073 Q0 6514247 25 11.238080 Anserini +test2073 Q0 12612089 26 11.229699 Anserini +test2073 Q0 17776967 27 11.166510 Anserini +test2073 Q0 7819403 28 10.864594 Anserini +test2073 Q0 11614321 29 10.864594 Anserini +test2073 Q0 675981 30 10.838826 Anserini +test2074 Q0 13303335 1 11.402069 Anserini +test2074 Q0 2000694 2 11.353249 Anserini +test2074 Q0 10901703 3 10.947856 Anserini +test2074 Q0 7783604 4 10.626272 Anserini +test2074 Q0 7248641 5 10.564496 Anserini +test2074 Q0 1978890 6 10.194661 Anserini +test2074 Q0 16326077 7 10.021852 Anserini +test2074 Q0 9032038 8 9.997493 Anserini +test2074 Q0 7291781 9 9.911274 Anserini +test2074 Q0 7374157 10 9.724091 Anserini +test2074 Q0 7001055 11 9.634870 Anserini +test2074 Q0 19805199 12 9.634644 Anserini +test2074 Q0 15236431 13 9.631839 Anserini +test2074 Q0 2975851 14 9.631226 Anserini +test2074 Q0 2975855 15 9.631226 Anserini +test2074 Q0 9497377 16 9.582105 Anserini +test2074 Q0 7961435 17 9.534099 Anserini +test2074 Q0 13454803 18 9.528332 Anserini +test2074 Q0 13732425 19 9.524990 Anserini +test2074 Q0 1531449 20 9.490760 Anserini +test2074 Q0 12645395 21 9.479515 Anserini +test2074 Q0 16433269 22 9.385516 Anserini +test2074 Q0 18489727 23 9.354795 Anserini +test2074 Q0 12340109 24 9.337198 Anserini +test2074 Q0 4986739 25 9.319993 Anserini +test2074 Q0 2203355 26 9.272511 Anserini +test2074 Q0 9336690 27 9.271316 Anserini +test2074 Q0 10082036 28 9.256329 Anserini +test2074 Q0 10163600 29 9.246386 Anserini +test2074 Q0 10217845 30 9.239738 Anserini +test2075 Q0 1375372 1 14.834220 Anserini +test2075 Q0 1375361 2 13.094232 Anserini +test2075 Q0 1820695 3 12.914966 Anserini +test2075 Q0 1375373 4 12.855464 Anserini +test2075 Q0 3132468 5 12.585190 Anserini +test2075 Q0 11733930 6 12.420319 Anserini +test2075 Q0 1375354 7 12.276039 Anserini +test2075 Q0 1375371 8 12.130375 Anserini +test2075 Q0 11728875 9 12.073879 Anserini +test2075 Q0 11736263 10 12.044142 Anserini +test2075 Q0 11736250 11 12.044142 Anserini +test2075 Q0 4175379 12 11.883451 Anserini +test2075 Q0 13923144 13 11.762576 Anserini +test2075 Q0 3132467 14 11.740986 Anserini +test2075 Q0 9265055 15 11.680847 Anserini +test2075 Q0 11728889 16 11.630847 Anserini +test2075 Q0 11728551 17 11.620629 Anserini +test2075 Q0 12585860 18 11.546164 Anserini +test2075 Q0 17494838 19 11.404759 Anserini +test2075 Q0 12580509 20 11.384880 Anserini +test2075 Q0 1375360 21 11.375359 Anserini +test2075 Q0 10938161 22 11.309250 Anserini +test2075 Q0 11736297 23 11.290318 Anserini +test2075 Q0 10802914 24 11.209633 Anserini +test2075 Q0 4393360 25 11.209633 Anserini +test2075 Q0 10838695 26 11.189108 Anserini +test2075 Q0 11665689 27 11.189108 Anserini +test2075 Q0 12585862 28 11.182923 Anserini +test2075 Q0 11728331 29 11.151043 Anserini +test2075 Q0 10936808 30 11.098010 Anserini +test2076 Q0 6048063 1 12.606746 Anserini +test2076 Q0 19793847 2 9.874998 Anserini +test2076 Q0 6048062 3 9.869968 Anserini +test2076 Q0 7692072 4 9.754333 Anserini +test2076 Q0 19552727 5 9.614272 Anserini +test2076 Q0 15323070 6 9.573819 Anserini +test2076 Q0 6048060 7 9.495066 Anserini +test2076 Q0 4383476 8 9.414117 Anserini +test2076 Q0 8930834 9 9.285948 Anserini +test2076 Q0 13149329 10 9.158440 Anserini +test2076 Q0 10278230 11 9.140543 Anserini +test2076 Q0 2254753 12 9.106438 Anserini +test2076 Q0 9617244 13 9.096271 Anserini +test2076 Q0 8270459 14 9.035310 Anserini +test2076 Q0 20642418 15 9.018461 Anserini +test2076 Q0 17940119 16 8.968534 Anserini +test2076 Q0 13914367 17 8.964893 Anserini +test2076 Q0 5931801 18 8.803165 Anserini +test2076 Q0 9474297 19 8.749315 Anserini +test2076 Q0 8930832 20 8.725869 Anserini +test2076 Q0 4707375 21 8.712893 Anserini +test2076 Q0 16865435 22 8.711290 Anserini +test2076 Q0 18256335 23 8.709908 Anserini +test2076 Q0 762989 24 8.620278 Anserini +test2076 Q0 16857641 25 8.615757 Anserini +test2076 Q0 7078098 26 8.605666 Anserini +test2076 Q0 5784586 27 8.599506 Anserini +test2076 Q0 13922814 28 8.589357 Anserini +test2076 Q0 13922816 29 8.589357 Anserini +test2076 Q0 20037486 30 8.502171 Anserini +test2077 Q0 1638508 1 14.819713 Anserini +test2077 Q0 2762881 2 12.872453 Anserini +test2077 Q0 2762878 3 12.769451 Anserini +test2077 Q0 1638507 4 12.705479 Anserini +test2077 Q0 1638509 5 12.592064 Anserini +test2077 Q0 15251252 6 12.011788 Anserini +test2077 Q0 18894915 7 11.617168 Anserini +test2077 Q0 1377952 8 11.309597 Anserini +test2077 Q0 18894914 9 11.293345 Anserini +test2077 Q0 4361924 10 11.257390 Anserini +test2077 Q0 10496199 11 11.150442 Anserini +test2077 Q0 1391443 12 11.087170 Anserini +test2077 Q0 15830752 13 10.788270 Anserini +test2077 Q0 15251259 14 10.771973 Anserini +test2077 Q0 907208 15 10.540565 Anserini +test2077 Q0 4809115 16 10.503938 Anserini +test2077 Q0 15787731 17 10.438097 Anserini +test2077 Q0 18039742 18 10.380875 Anserini +test2077 Q0 12375268 19 10.245678 Anserini +test2077 Q0 9521017 20 10.192861 Anserini +test2077 Q0 13363541 21 10.162735 Anserini +test2077 Q0 15251246 22 10.161177 Anserini +test2077 Q0 6557821 23 9.926679 Anserini +test2077 Q0 1951296 24 9.892514 Anserini +test2077 Q0 15574640 25 9.879153 Anserini +test2077 Q0 4773374 26 9.832375 Anserini +test2077 Q0 2378020 27 9.832375 Anserini +test2077 Q0 6683449 28 9.812579 Anserini +test2077 Q0 8055053 29 9.786323 Anserini +test2077 Q0 8055051 30 9.784032 Anserini +test2078 Q0 3693733 1 20.531725 Anserini +test2078 Q0 3693734 2 19.644659 Anserini +test2078 Q0 3693748 3 19.291475 Anserini +test2078 Q0 19966239 4 18.989323 Anserini +test2078 Q0 3693742 5 18.407152 Anserini +test2078 Q0 3693736 6 18.241137 Anserini +test2078 Q0 3693746 7 17.818027 Anserini +test2078 Q0 3693744 8 17.691639 Anserini +test2078 Q0 19966240 9 17.181545 Anserini +test2078 Q0 3693737 10 16.786234 Anserini +test2078 Q0 3693735 11 16.495642 Anserini +test2078 Q0 3693739 12 15.968114 Anserini +test2078 Q0 3693743 13 15.935593 Anserini +test2078 Q0 3693740 14 15.658566 Anserini +test2078 Q0 3693738 15 15.582079 Anserini +test2078 Q0 3266743 16 14.937081 Anserini +test2078 Q0 3693747 17 14.767744 Anserini +test2078 Q0 3693741 18 14.543717 Anserini +test2078 Q0 12735850 19 14.062986 Anserini +test2078 Q0 14189774 20 13.689839 Anserini +test2078 Q0 3693745 21 13.428342 Anserini +test2078 Q0 9902381 22 13.322845 Anserini +test2078 Q0 18506275 23 12.841229 Anserini +test2078 Q0 19257789 24 12.137770 Anserini +test2078 Q0 9257577 25 11.513347 Anserini +test2078 Q0 14669355 26 11.401737 Anserini +test2078 Q0 3946063 27 11.383727 Anserini +test2078 Q0 89287 28 11.188747 Anserini +test2078 Q0 4540157 29 11.165524 Anserini +test2078 Q0 2899720 30 11.088675 Anserini +test2079 Q0 11495772 1 13.081668 Anserini +test2079 Q0 652232 2 12.865351 Anserini +test2079 Q0 6565711 3 12.773916 Anserini +test2079 Q0 11495770 4 12.664532 Anserini +test2079 Q0 20644074 5 12.418718 Anserini +test2079 Q0 4653341 6 12.211275 Anserini +test2079 Q0 5183776 7 11.967429 Anserini +test2079 Q0 5183781 8 11.967429 Anserini +test2079 Q0 9782207 9 11.940932 Anserini +test2079 Q0 18448643 10 11.907485 Anserini +test2079 Q0 205146 11 11.753630 Anserini +test2079 Q0 15967603 12 11.535155 Anserini +test2079 Q0 9991520 13 11.508624 Anserini +test2079 Q0 10799174 14 11.491323 Anserini +test2079 Q0 14491577 15 11.472776 Anserini +test2079 Q0 17603545 16 11.406398 Anserini +test2079 Q0 7445696 17 11.331407 Anserini +test2079 Q0 7445697 18 11.331407 Anserini +test2079 Q0 7574971 19 11.272958 Anserini +test2079 Q0 7574972 20 11.272958 Anserini +test2079 Q0 11037553 21 11.263236 Anserini +test2079 Q0 3186552 22 11.226713 Anserini +test2079 Q0 11037552 23 11.203155 Anserini +test2079 Q0 9351254 24 11.180168 Anserini +test2079 Q0 360793 25 11.173923 Anserini +test2079 Q0 1361207 26 11.156753 Anserini +test2079 Q0 16711013 27 11.143955 Anserini +test2079 Q0 14472478 28 11.097133 Anserini +test2079 Q0 8201687 29 11.067950 Anserini +test2079 Q0 5350028 30 11.047585 Anserini +test208 Q0 927348 1 11.085595 Anserini +test208 Q0 7187463 2 10.777716 Anserini +test208 Q0 13312713 3 10.704992 Anserini +test208 Q0 14725744 4 10.191515 Anserini +test208 Q0 927346 5 10.055242 Anserini +test208 Q0 17100057 6 10.030108 Anserini +test208 Q0 5359667 7 10.030108 Anserini +test208 Q0 18851950 8 9.960264 Anserini +test208 Q0 18851951 9 9.960264 Anserini +test208 Q0 15155969 10 9.876506 Anserini +test208 Q0 6001593 11 9.795775 Anserini +test208 Q0 15155960 12 9.774324 Anserini +test208 Q0 2843659 13 9.716645 Anserini +test208 Q0 3841113 14 9.701136 Anserini +test208 Q0 12397805 15 9.671570 Anserini +test208 Q0 6001633 16 9.659208 Anserini +test208 Q0 708412 17 9.658759 Anserini +test208 Q0 7625779 18 9.624753 Anserini +test208 Q0 16332893 19 9.594750 Anserini +test208 Q0 16332894 20 9.594750 Anserini +test208 Q0 13740623 21 9.584574 Anserini +test208 Q0 6013548 22 9.534732 Anserini +test208 Q0 9492692 23 9.532641 Anserini +test208 Q0 19717606 24 9.523314 Anserini +test208 Q0 13345572 25 9.337865 Anserini +test208 Q0 13345575 26 9.337865 Anserini +test208 Q0 12429217 27 9.300437 Anserini +test208 Q0 9807402 28 9.279332 Anserini +test208 Q0 6013552 29 9.279332 Anserini +test208 Q0 8005886 30 9.260452 Anserini +test2080 Q0 20716007 1 18.061653 Anserini +test2080 Q0 20650846 2 17.897907 Anserini +test2080 Q0 20650856 3 17.784592 Anserini +test2080 Q0 20716008 4 17.520603 Anserini +test2080 Q0 16146380 5 16.987450 Anserini +test2080 Q0 11959539 6 16.387470 Anserini +test2080 Q0 11959526 7 16.387470 Anserini +test2080 Q0 8157422 8 16.357649 Anserini +test2080 Q0 16655155 9 16.314236 Anserini +test2080 Q0 19733837 10 15.632841 Anserini +test2080 Q0 13363553 11 15.562414 Anserini +test2080 Q0 14605864 12 15.559357 Anserini +test2080 Q0 13363568 13 15.477674 Anserini +test2080 Q0 20159573 14 15.423677 Anserini +test2080 Q0 14605877 15 15.409226 Anserini +test2080 Q0 8483054 16 15.324039 Anserini +test2080 Q0 18965285 17 15.275062 Anserini +test2080 Q0 18965297 18 15.275062 Anserini +test2080 Q0 18270371 19 15.275062 Anserini +test2080 Q0 17632413 20 15.229698 Anserini +test2080 Q0 17632426 21 15.229698 Anserini +test2080 Q0 14829817 22 15.192053 Anserini +test2080 Q0 19733848 23 15.078736 Anserini +test2080 Q0 8157433 24 15.078736 Anserini +test2080 Q0 14829828 25 15.078736 Anserini +test2080 Q0 12281385 26 15.066451 Anserini +test2080 Q0 12027313 27 15.066451 Anserini +test2080 Q0 7633656 28 15.049358 Anserini +test2080 Q0 7633712 29 14.978321 Anserini +test2080 Q0 8483064 30 14.937761 Anserini +test2081 Q0 13601498 1 13.355208 Anserini +test2081 Q0 13601499 2 13.281898 Anserini +test2081 Q0 6831693 3 12.540097 Anserini +test2081 Q0 19159329 4 11.868257 Anserini +test2081 Q0 14867556 5 11.792629 Anserini +test2081 Q0 4471506 6 11.711534 Anserini +test2081 Q0 19159328 7 11.330070 Anserini +test2081 Q0 14255853 8 10.999174 Anserini +test2081 Q0 17117863 9 10.679366 Anserini +test2081 Q0 16039030 10 10.473589 Anserini +test2081 Q0 159920 11 10.449402 Anserini +test2081 Q0 16039031 12 10.378035 Anserini +test2081 Q0 13635410 13 10.251913 Anserini +test2081 Q0 9871504 14 10.151258 Anserini +test2081 Q0 15541833 15 10.056665 Anserini +test2081 Q0 14024249 16 10.005510 Anserini +test2081 Q0 11200578 17 10.005510 Anserini +test2081 Q0 12315354 18 9.992109 Anserini +test2081 Q0 16771699 19 9.894494 Anserini +test2081 Q0 19573874 20 9.866333 Anserini +test2081 Q0 17003639 21 9.828041 Anserini +test2081 Q0 2383717 22 9.826959 Anserini +test2081 Q0 14556126 23 9.817497 Anserini +test2081 Q0 2172803 24 9.817497 Anserini +test2081 Q0 19579348 25 9.817497 Anserini +test2081 Q0 7313271 26 9.813663 Anserini +test2081 Q0 15541832 27 9.813663 Anserini +test2081 Q0 20492242 28 9.813663 Anserini +test2081 Q0 1726505 29 9.813663 Anserini +test2081 Q0 4057034 30 9.760475 Anserini +test2082 Q0 49576 1 12.529665 Anserini +test2082 Q0 14133628 2 12.454762 Anserini +test2082 Q0 2481995 3 12.234894 Anserini +test2082 Q0 5246349 4 12.060627 Anserini +test2082 Q0 11385345 5 11.671890 Anserini +test2082 Q0 8035647 6 11.330002 Anserini +test2082 Q0 10148929 7 11.170025 Anserini +test2082 Q0 4800370 8 11.147545 Anserini +test2082 Q0 1701952 9 11.016745 Anserini +test2082 Q0 6719022 10 10.936204 Anserini +test2082 Q0 4800361 11 10.763465 Anserini +test2082 Q0 6825816 12 10.685474 Anserini +test2082 Q0 10528632 13 10.620160 Anserini +test2082 Q0 17159966 14 10.611974 Anserini +test2082 Q0 391635 15 10.597355 Anserini +test2082 Q0 6739995 16 10.577574 Anserini +test2082 Q0 12791471 17 10.525022 Anserini +test2082 Q0 10793649 18 10.485985 Anserini +test2082 Q0 8980043 19 10.473311 Anserini +test2082 Q0 8980052 20 10.473311 Anserini +test2082 Q0 12454403 21 10.469042 Anserini +test2082 Q0 17159970 22 10.420219 Anserini +test2082 Q0 12243979 23 10.327844 Anserini +test2082 Q0 10068322 24 10.326473 Anserini +test2082 Q0 6838977 25 10.322118 Anserini +test2082 Q0 12739073 26 10.276690 Anserini +test2082 Q0 2267155 27 10.265309 Anserini +test2082 Q0 9886829 28 10.264683 Anserini +test2082 Q0 11246500 29 10.252775 Anserini +test2082 Q0 11246498 30 10.252775 Anserini +test2083 Q0 6143284 1 12.979184 Anserini +test2083 Q0 8767813 2 12.640467 Anserini +test2083 Q0 4962779 3 12.355116 Anserini +test2083 Q0 4962784 4 11.978699 Anserini +test2083 Q0 17653566 5 11.698776 Anserini +test2083 Q0 6143287 6 11.677807 Anserini +test2083 Q0 10056329 7 11.623712 Anserini +test2083 Q0 3509120 8 11.622573 Anserini +test2083 Q0 11812782 9 11.489584 Anserini +test2083 Q0 5866493 10 11.460485 Anserini +test2083 Q0 11138051 11 11.424346 Anserini +test2083 Q0 15429633 12 11.383280 Anserini +test2083 Q0 16797219 13 11.372396 Anserini +test2083 Q0 19042017 14 11.318644 Anserini +test2083 Q0 14132469 15 11.318493 Anserini +test2083 Q0 15251275 16 11.126259 Anserini +test2083 Q0 15531720 17 11.118814 Anserini +test2083 Q0 17077573 18 11.076557 Anserini +test2083 Q0 4020058 19 11.076372 Anserini +test2083 Q0 18772223 20 11.062008 Anserini +test2083 Q0 4348113 21 11.055000 Anserini +test2083 Q0 1865361 22 11.044509 Anserini +test2083 Q0 1865371 23 11.044509 Anserini +test2083 Q0 4153323 24 10.991771 Anserini +test2083 Q0 4530098 25 10.987396 Anserini +test2083 Q0 6930990 26 10.975091 Anserini +test2083 Q0 13083295 27 10.974791 Anserini +test2083 Q0 20734629 28 10.969707 Anserini +test2083 Q0 8767811 29 10.959133 Anserini +test2083 Q0 20775006 30 10.957023 Anserini +test2084 Q0 5359175 1 14.440575 Anserini +test2084 Q0 13421076 2 14.192734 Anserini +test2084 Q0 18501907 3 13.641531 Anserini +test2084 Q0 433443 4 13.640830 Anserini +test2084 Q0 18504406 5 13.635461 Anserini +test2084 Q0 14074822 6 13.587704 Anserini +test2084 Q0 18493287 7 13.423401 Anserini +test2084 Q0 18499315 8 13.234010 Anserini +test2084 Q0 9139102 9 13.204263 Anserini +test2084 Q0 10759224 10 13.154194 Anserini +test2084 Q0 9498734 11 13.133057 Anserini +test2084 Q0 1812597 12 13.115606 Anserini +test2084 Q0 8381432 13 13.083861 Anserini +test2084 Q0 8429970 14 13.002810 Anserini +test2084 Q0 4771156 15 12.995992 Anserini +test2084 Q0 17512706 16 12.952587 Anserini +test2084 Q0 19287693 17 12.832054 Anserini +test2084 Q0 18500441 18 12.799846 Anserini +test2084 Q0 18503118 19 12.799846 Anserini +test2084 Q0 17508843 20 12.772208 Anserini +test2084 Q0 17508845 21 12.732800 Anserini +test2084 Q0 2900929 22 12.714286 Anserini +test2084 Q0 18500454 23 12.711390 Anserini +test2084 Q0 18499202 24 12.711390 Anserini +test2084 Q0 13220401 25 12.668885 Anserini +test2084 Q0 17484013 26 12.656096 Anserini +test2084 Q0 10966627 27 12.650505 Anserini +test2084 Q0 5283788 28 12.628409 Anserini +test2084 Q0 18503138 29 12.626191 Anserini +test2084 Q0 8126223 30 12.562003 Anserini +test2085 Q0 1447888 1 12.443368 Anserini +test2085 Q0 18704926 2 12.116251 Anserini +test2085 Q0 12656096 3 11.651210 Anserini +test2085 Q0 9993488 4 11.177813 Anserini +test2085 Q0 14371833 5 11.028381 Anserini +test2085 Q0 10937364 6 10.992781 Anserini +test2085 Q0 8285772 7 10.884401 Anserini +test2085 Q0 19945556 8 10.857216 Anserini +test2085 Q0 7181190 9 10.840947 Anserini +test2085 Q0 17468306 10 10.818148 Anserini +test2085 Q0 12148879 11 10.802117 Anserini +test2085 Q0 19945557 12 10.796326 Anserini +test2085 Q0 3309696 13 10.769810 Anserini +test2085 Q0 20560578 14 10.728279 Anserini +test2085 Q0 9046676 15 10.687700 Anserini +test2085 Q0 20101840 16 10.670130 Anserini +test2085 Q0 10068756 17 10.625684 Anserini +test2085 Q0 16453442 18 10.557001 Anserini +test2085 Q0 19608585 19 10.517851 Anserini +test2085 Q0 15365667 20 10.480017 Anserini +test2085 Q0 9848200 21 10.471415 Anserini +test2085 Q0 9939502 22 10.467909 Anserini +test2085 Q0 13775143 23 10.408114 Anserini +test2085 Q0 18161631 24 10.335933 Anserini +test2085 Q0 8425297 25 10.316095 Anserini +test2085 Q0 743506 26 10.264280 Anserini +test2085 Q0 18001638 27 10.264280 Anserini +test2085 Q0 18603018 28 10.240981 Anserini +test2085 Q0 15323613 29 10.219505 Anserini +test2085 Q0 3402283 30 10.219505 Anserini +test2086 Q0 14438298 1 14.408219 Anserini +test2086 Q0 12568701 2 13.365857 Anserini +test2086 Q0 7371257 3 13.342147 Anserini +test2086 Q0 2577547 4 13.134305 Anserini +test2086 Q0 2577524 5 13.134305 Anserini +test2086 Q0 20023500 6 13.068020 Anserini +test2086 Q0 16823027 7 12.954436 Anserini +test2086 Q0 11228550 8 12.687483 Anserini +test2086 Q0 841758 9 12.687483 Anserini +test2086 Q0 948405 10 12.641906 Anserini +test2086 Q0 17840875 11 12.431821 Anserini +test2086 Q0 948409 12 12.418871 Anserini +test2086 Q0 17580849 13 12.206242 Anserini +test2086 Q0 17860331 14 12.181513 Anserini +test2086 Q0 13110453 15 12.171618 Anserini +test2086 Q0 12978795 16 12.164580 Anserini +test2086 Q0 17855888 17 12.106900 Anserini +test2086 Q0 17275547 18 12.088503 Anserini +test2086 Q0 20314488 19 11.980210 Anserini +test2086 Q0 13258782 20 11.964804 Anserini +test2086 Q0 13313805 21 11.907852 Anserini +test2086 Q0 17390487 22 11.891407 Anserini +test2086 Q0 13313807 23 11.880007 Anserini +test2086 Q0 7371256 24 11.831284 Anserini +test2086 Q0 18292123 25 11.802247 Anserini +test2086 Q0 1707036 26 11.790526 Anserini +test2086 Q0 9949072 27 11.790526 Anserini +test2086 Q0 13110454 28 11.661943 Anserini +test2086 Q0 12952247 29 11.660161 Anserini +test2086 Q0 13258723 30 11.600307 Anserini +test2087 Q0 13557475 1 14.622255 Anserini +test2087 Q0 6852477 2 14.434539 Anserini +test2087 Q0 6852481 3 14.215471 Anserini +test2087 Q0 8657173 4 13.894379 Anserini +test2087 Q0 10243311 5 13.884885 Anserini +test2087 Q0 12225327 6 13.859326 Anserini +test2087 Q0 12225330 7 13.801601 Anserini +test2087 Q0 10243316 8 13.776733 Anserini +test2087 Q0 17913935 9 13.585853 Anserini +test2087 Q0 17913938 10 13.523999 Anserini +test2087 Q0 9358804 11 13.395480 Anserini +test2087 Q0 17632910 12 13.373018 Anserini +test2087 Q0 10057640 13 13.364269 Anserini +test2087 Q0 14525405 14 13.326047 Anserini +test2087 Q0 5772108 15 13.295307 Anserini +test2087 Q0 4441728 16 13.146494 Anserini +test2087 Q0 11531690 17 13.125089 Anserini +test2087 Q0 13557541 18 13.101732 Anserini +test2087 Q0 7935730 19 13.040639 Anserini +test2087 Q0 4441732 20 12.945539 Anserini +test2087 Q0 1253726 21 12.936539 Anserini +test2087 Q0 11759290 22 12.930519 Anserini +test2087 Q0 10953280 23 12.881446 Anserini +test2087 Q0 14426017 24 12.854319 Anserini +test2087 Q0 5523621 25 12.825685 Anserini +test2087 Q0 1253734 26 12.790585 Anserini +test2087 Q0 13157911 27 12.790565 Anserini +test2087 Q0 5040073 28 12.752613 Anserini +test2087 Q0 18456773 29 12.738475 Anserini +test2087 Q0 20192456 30 12.735991 Anserini +test2088 Q0 9103098 1 12.820376 Anserini +test2088 Q0 5449978 2 12.292036 Anserini +test2088 Q0 17759004 3 12.290365 Anserini +test2088 Q0 11105198 4 12.250636 Anserini +test2088 Q0 11105190 5 12.250636 Anserini +test2088 Q0 5951803 6 12.187916 Anserini +test2088 Q0 688957 7 12.186606 Anserini +test2088 Q0 5585670 8 12.169415 Anserini +test2088 Q0 9105885 9 12.086727 Anserini +test2088 Q0 7766894 10 12.073819 Anserini +test2088 Q0 9105884 11 12.067009 Anserini +test2088 Q0 9103099 12 12.046900 Anserini +test2088 Q0 5585672 13 12.023662 Anserini +test2088 Q0 17719514 14 11.829355 Anserini +test2088 Q0 5449979 15 11.750995 Anserini +test2088 Q0 5163211 16 11.702743 Anserini +test2088 Q0 11105191 17 11.632923 Anserini +test2088 Q0 8507241 18 11.611283 Anserini +test2088 Q0 12667378 19 11.596975 Anserini +test2088 Q0 12667379 20 11.596975 Anserini +test2088 Q0 8507240 21 11.532118 Anserini +test2088 Q0 19084542 22 11.509817 Anserini +test2088 Q0 17434494 23 11.452185 Anserini +test2088 Q0 16629136 24 11.253517 Anserini +test2088 Q0 20997674 25 11.224776 Anserini +test2088 Q0 16629135 26 11.149508 Anserini +test2088 Q0 11105195 27 11.098233 Anserini +test2088 Q0 14988231 28 11.089523 Anserini +test2088 Q0 17923612 29 10.966178 Anserini +test2088 Q0 6819159 30 10.951657 Anserini +test2089 Q0 461266 1 13.701361 Anserini +test2089 Q0 1278357 2 13.538138 Anserini +test2089 Q0 1278356 3 12.469554 Anserini +test2089 Q0 14333335 4 12.438507 Anserini +test2089 Q0 1278355 5 12.372438 Anserini +test2089 Q0 19600230 6 11.423752 Anserini +test2089 Q0 1582141 7 11.403446 Anserini +test2089 Q0 19895207 8 11.297609 Anserini +test2089 Q0 1278340 9 11.205679 Anserini +test2089 Q0 12969308 10 11.157402 Anserini +test2089 Q0 7222067 11 11.088190 Anserini +test2089 Q0 93926 12 10.835203 Anserini +test2089 Q0 1278353 13 10.797590 Anserini +test2089 Q0 1278341 14 10.663607 Anserini +test2089 Q0 6325517 15 10.641644 Anserini +test2089 Q0 10341424 16 10.573661 Anserini +test2089 Q0 15327165 17 10.562407 Anserini +test2089 Q0 16813187 18 10.558195 Anserini +test2089 Q0 16813180 19 10.548698 Anserini +test2089 Q0 16813200 20 10.548698 Anserini +test2089 Q0 97194 21 10.530096 Anserini +test2089 Q0 16813184 22 10.450474 Anserini +test2089 Q0 6597386 23 10.434266 Anserini +test2089 Q0 528606 24 10.308580 Anserini +test2089 Q0 11017512 25 10.245811 Anserini +test2089 Q0 15427993 26 10.240650 Anserini +test2089 Q0 16813188 27 10.143224 Anserini +test2089 Q0 19107489 28 10.046151 Anserini +test2089 Q0 2809539 29 10.046151 Anserini +test2089 Q0 11017513 30 10.040584 Anserini +test209 Q0 10568198 1 20.799416 Anserini +test209 Q0 162536 2 19.628403 Anserini +test209 Q0 10568199 3 19.102701 Anserini +test209 Q0 983010 4 19.076904 Anserini +test209 Q0 1695247 5 18.460121 Anserini +test209 Q0 167845 6 17.860834 Anserini +test209 Q0 2538424 7 17.815338 Anserini +test209 Q0 2538002 8 17.751497 Anserini +test209 Q0 11785839 9 17.622196 Anserini +test209 Q0 10568204 10 17.113209 Anserini +test209 Q0 923265 11 17.076889 Anserini +test209 Q0 162535 12 16.997000 Anserini +test209 Q0 16747563 13 16.984615 Anserini +test209 Q0 16021434 14 16.703144 Anserini +test209 Q0 1695245 15 16.661150 Anserini +test209 Q0 10568202 16 16.407129 Anserini +test209 Q0 983008 17 16.251516 Anserini +test209 Q0 10568200 18 16.176996 Anserini +test209 Q0 2356896 19 16.122757 Anserini +test209 Q0 1626665 20 15.982115 Anserini +test209 Q0 983016 21 15.904861 Anserini +test209 Q0 1535994 22 15.871586 Anserini +test209 Q0 1536009 23 15.662074 Anserini +test209 Q0 3270607 24 15.632529 Anserini +test209 Q0 11447756 25 15.521509 Anserini +test209 Q0 19339779 26 15.497373 Anserini +test209 Q0 983005 27 15.383972 Anserini +test209 Q0 10731740 28 15.376391 Anserini +test209 Q0 10118580 29 15.267365 Anserini +test209 Q0 10568201 30 15.137953 Anserini +test2090 Q0 434501 1 11.754169 Anserini +test2090 Q0 15717321 2 11.473576 Anserini +test2090 Q0 3384599 3 11.193914 Anserini +test2090 Q0 678343 4 11.182775 Anserini +test2090 Q0 15717322 5 11.180949 Anserini +test2090 Q0 18501222 6 11.045026 Anserini +test2090 Q0 20903774 7 11.000709 Anserini +test2090 Q0 922153 8 10.981657 Anserini +test2090 Q0 764459 9 10.946198 Anserini +test2090 Q0 15717320 10 10.917618 Anserini +test2090 Q0 8523378 11 10.916839 Anserini +test2090 Q0 408822 12 10.711919 Anserini +test2090 Q0 434502 13 10.658529 Anserini +test2090 Q0 5224381 14 10.593349 Anserini +test2090 Q0 2722530 15 10.558316 Anserini +test2090 Q0 5333139 16 10.534415 Anserini +test2090 Q0 16737251 17 10.493118 Anserini +test2090 Q0 2095232 18 10.313368 Anserini +test2090 Q0 2899350 19 10.278955 Anserini +test2090 Q0 10354123 20 10.276880 Anserini +test2090 Q0 4259849 21 10.096216 Anserini +test2090 Q0 8154475 22 10.088171 Anserini +test2090 Q0 463662 23 10.010771 Anserini +test2090 Q0 15717319 24 9.979049 Anserini +test2090 Q0 19452684 25 9.912031 Anserini +test2090 Q0 15717332 26 9.861250 Anserini +test2090 Q0 14713672 27 9.827650 Anserini +test2090 Q0 6620158 28 9.803137 Anserini +test2090 Q0 6620156 29 9.803137 Anserini +test2090 Q0 1900196 30 9.778354 Anserini +test2091 Q0 17974992 1 14.597399 Anserini +test2091 Q0 188112 2 14.100965 Anserini +test2091 Q0 1878425 3 13.349933 Anserini +test2091 Q0 19058953 4 12.560297 Anserini +test2091 Q0 63113 5 12.265190 Anserini +test2091 Q0 17777639 6 12.211957 Anserini +test2091 Q0 8702432 7 12.193445 Anserini +test2091 Q0 14650266 8 12.118247 Anserini +test2091 Q0 4556797 9 11.902402 Anserini +test2091 Q0 883159 10 11.650892 Anserini +test2091 Q0 883133 11 11.650892 Anserini +test2091 Q0 6397265 12 11.630985 Anserini +test2091 Q0 7020833 13 11.628622 Anserini +test2091 Q0 2216459 14 11.556485 Anserini +test2091 Q0 1477676 15 11.543220 Anserini +test2091 Q0 1737441 16 11.535764 Anserini +test2091 Q0 7947309 17 11.507721 Anserini +test2091 Q0 1878408 18 11.486908 Anserini +test2091 Q0 9838764 19 11.362190 Anserini +test2091 Q0 9838860 20 11.362190 Anserini +test2091 Q0 1740775 21 11.311264 Anserini +test2091 Q0 7752067 22 11.305091 Anserini +test2091 Q0 4931551 23 11.304021 Anserini +test2091 Q0 1477688 24 11.247029 Anserini +test2091 Q0 7478419 25 11.229170 Anserini +test2091 Q0 511500 26 11.132936 Anserini +test2091 Q0 3611849 27 11.112830 Anserini +test2091 Q0 17326589 28 11.104324 Anserini +test2091 Q0 657672 29 11.069720 Anserini +test2091 Q0 7789704 30 11.059292 Anserini +test2092 Q0 18245761 1 12.664514 Anserini +test2092 Q0 18245781 2 12.467324 Anserini +test2092 Q0 18245778 3 12.427726 Anserini +test2092 Q0 5150861 4 11.937628 Anserini +test2092 Q0 18245760 5 11.634750 Anserini +test2092 Q0 18245797 6 11.595215 Anserini +test2092 Q0 18245779 7 11.452824 Anserini +test2092 Q0 18245757 8 11.447010 Anserini +test2092 Q0 11000971 9 11.258155 Anserini +test2092 Q0 16597968 10 11.253821 Anserini +test2092 Q0 18245776 11 11.162793 Anserini +test2092 Q0 12478634 12 11.142075 Anserini +test2092 Q0 16597883 13 11.081621 Anserini +test2092 Q0 18245756 14 10.998915 Anserini +test2092 Q0 18245770 15 10.970607 Anserini +test2092 Q0 8440170 16 10.922639 Anserini +test2092 Q0 8440186 17 10.922639 Anserini +test2092 Q0 16763926 18 10.896848 Anserini +test2092 Q0 17926773 19 10.818998 Anserini +test2092 Q0 18245789 20 10.704136 Anserini +test2092 Q0 18245772 21 10.586424 Anserini +test2092 Q0 18245763 22 10.426686 Anserini +test2092 Q0 18245758 23 10.426686 Anserini +test2092 Q0 18245759 24 10.377095 Anserini +test2092 Q0 18245765 25 10.377095 Anserini +test2092 Q0 8772461 26 10.367746 Anserini +test2092 Q0 8323847 27 10.355385 Anserini +test2092 Q0 18245764 28 10.313020 Anserini +test2092 Q0 18245773 29 10.313020 Anserini +test2092 Q0 9173690 30 10.309396 Anserini +test2093 Q0 6843600 1 10.388176 Anserini +test2093 Q0 12590433 2 10.335351 Anserini +test2093 Q0 18477737 3 8.946280 Anserini +test2093 Q0 6606961 4 8.898932 Anserini +test2093 Q0 12590434 5 8.837130 Anserini +test2093 Q0 2462495 6 8.776179 Anserini +test2093 Q0 16884008 7 8.757929 Anserini +test2093 Q0 1359192 8 8.684817 Anserini +test2093 Q0 12986013 9 8.614025 Anserini +test2093 Q0 20821067 10 8.369207 Anserini +test2093 Q0 8440604 11 8.327961 Anserini +test2093 Q0 7633217 12 8.282921 Anserini +test2093 Q0 10690137 13 8.226280 Anserini +test2093 Q0 13166387 14 8.202195 Anserini +test2093 Q0 16610513 15 8.137820 Anserini +test2093 Q0 14991056 16 8.125592 Anserini +test2093 Q0 6685178 17 8.114032 Anserini +test2093 Q0 11038173 18 8.097421 Anserini +test2093 Q0 13981808 19 8.004675 Anserini +test2093 Q0 11038172 20 7.999113 Anserini +test2093 Q0 1781479 21 7.974918 Anserini +test2093 Q0 4109014 22 7.966486 Anserini +test2093 Q0 20001501 23 7.966486 Anserini +test2093 Q0 4314962 24 7.966486 Anserini +test2093 Q0 12282431 25 7.960173 Anserini +test2093 Q0 19901928 26 7.891919 Anserini +test2093 Q0 18260152 27 7.888948 Anserini +test2093 Q0 11224922 28 7.809267 Anserini +test2093 Q0 14453035 29 7.802217 Anserini +test2093 Q0 2905437 30 7.774724 Anserini +test2094 Q0 15668331 1 11.565441 Anserini +test2094 Q0 15126385 2 11.539493 Anserini +test2094 Q0 10878193 3 11.384876 Anserini +test2094 Q0 12692222 4 11.338115 Anserini +test2094 Q0 8155782 5 11.088031 Anserini +test2094 Q0 18735680 6 11.010283 Anserini +test2094 Q0 3840079 7 10.919950 Anserini +test2094 Q0 1367277 8 10.879544 Anserini +test2094 Q0 16122660 9 10.866610 Anserini +test2094 Q0 12571567 10 10.835774 Anserini +test2094 Q0 13028310 11 10.809181 Anserini +test2094 Q0 5790084 12 10.809106 Anserini +test2094 Q0 7987534 13 10.756661 Anserini +test2094 Q0 18735683 14 10.754665 Anserini +test2094 Q0 14354811 15 10.702818 Anserini +test2094 Q0 18240861 16 10.688290 Anserini +test2094 Q0 16122646 17 10.537281 Anserini +test2094 Q0 18240859 18 10.514011 Anserini +test2094 Q0 5741603 19 10.471506 Anserini +test2094 Q0 4608413 20 10.442245 Anserini +test2094 Q0 8332580 21 10.394050 Anserini +test2094 Q0 3981673 22 10.389358 Anserini +test2094 Q0 9673658 23 10.338524 Anserini +test2094 Q0 15668330 24 10.333809 Anserini +test2094 Q0 18776811 25 10.314930 Anserini +test2094 Q0 18776812 26 10.314930 Anserini +test2094 Q0 9017947 27 10.310770 Anserini +test2094 Q0 3852070 28 10.290832 Anserini +test2094 Q0 6829719 29 10.288173 Anserini +test2094 Q0 8604335 30 10.261392 Anserini +test2095 Q0 2932035 1 9.197744 Anserini +test2095 Q0 895172 2 9.163725 Anserini +test2095 Q0 14214765 3 9.118754 Anserini +test2095 Q0 13618167 4 9.050941 Anserini +test2095 Q0 14222582 5 9.039028 Anserini +test2095 Q0 9588376 6 9.012428 Anserini +test2095 Q0 13808028 7 8.933915 Anserini +test2095 Q0 8003588 8 8.900071 Anserini +test2095 Q0 739796 9 8.897000 Anserini +test2095 Q0 845137 10 8.854978 Anserini +test2095 Q0 13898448 11 8.850205 Anserini +test2095 Q0 492947 12 8.849363 Anserini +test2095 Q0 20642076 13 8.844407 Anserini +test2095 Q0 1593389 14 8.823238 Anserini +test2095 Q0 2025894 15 8.772785 Anserini +test2095 Q0 2952625 16 8.770492 Anserini +test2095 Q0 5021338 17 8.728490 Anserini +test2095 Q0 8844738 18 8.702333 Anserini +test2095 Q0 4609205 19 8.701735 Anserini +test2095 Q0 4077050 20 8.695145 Anserini +test2095 Q0 5289766 21 8.661377 Anserini +test2095 Q0 4206058 22 8.613869 Anserini +test2095 Q0 11419854 23 8.599792 Anserini +test2095 Q0 504555 24 8.594521 Anserini +test2095 Q0 11878226 25 8.585223 Anserini +test2095 Q0 3143316 26 8.583105 Anserini +test2095 Q0 3566622 27 8.571221 Anserini +test2095 Q0 17266241 28 8.568216 Anserini +test2095 Q0 19747777 29 8.564707 Anserini +test2095 Q0 1916105 30 8.553822 Anserini +test2096 Q0 20669384 1 12.483667 Anserini +test2096 Q0 19080645 2 11.295219 Anserini +test2096 Q0 15898018 3 11.255100 Anserini +test2096 Q0 14507305 4 11.137882 Anserini +test2096 Q0 11533632 5 10.871478 Anserini +test2096 Q0 10805323 6 10.806713 Anserini +test2096 Q0 10805325 7 10.806713 Anserini +test2096 Q0 15898017 8 10.796975 Anserini +test2096 Q0 20669383 9 10.683335 Anserini +test2096 Q0 7157915 10 10.680386 Anserini +test2096 Q0 11336728 11 10.324485 Anserini +test2096 Q0 17610138 12 10.294101 Anserini +test2096 Q0 13682304 13 10.280770 Anserini +test2096 Q0 10262473 14 10.237067 Anserini +test2096 Q0 9162543 15 10.192174 Anserini +test2096 Q0 11336729 16 10.191915 Anserini +test2096 Q0 9162544 17 10.149221 Anserini +test2096 Q0 11918206 18 10.127027 Anserini +test2096 Q0 19078652 19 10.100269 Anserini +test2096 Q0 17610122 20 10.025580 Anserini +test2096 Q0 4714918 21 10.009906 Anserini +test2096 Q0 5360188 22 10.007761 Anserini +test2096 Q0 2566077 23 9.906882 Anserini +test2096 Q0 13682307 24 9.878428 Anserini +test2096 Q0 18069640 25 9.858970 Anserini +test2096 Q0 16817541 26 9.858970 Anserini +test2096 Q0 19080646 27 9.823326 Anserini +test2096 Q0 19797806 28 9.780636 Anserini +test2096 Q0 17288207 29 9.763804 Anserini +test2096 Q0 8878786 30 9.762014 Anserini +test2097 Q0 7461439 1 11.918439 Anserini +test2097 Q0 18218704 2 11.736261 Anserini +test2097 Q0 18218705 3 11.717659 Anserini +test2097 Q0 15683399 4 9.939519 Anserini +test2097 Q0 6702350 5 9.849453 Anserini +test2097 Q0 17691286 6 9.749686 Anserini +test2097 Q0 17691280 7 9.749686 Anserini +test2097 Q0 9116402 8 9.662696 Anserini +test2097 Q0 13329697 9 9.501480 Anserini +test2097 Q0 6802826 10 9.348372 Anserini +test2097 Q0 11043273 11 9.334456 Anserini +test2097 Q0 2455713 12 9.295486 Anserini +test2097 Q0 2455814 13 9.295486 Anserini +test2097 Q0 12164846 14 9.282829 Anserini +test2097 Q0 15389658 15 9.263385 Anserini +test2097 Q0 13794166 16 9.217257 Anserini +test2097 Q0 1304376 17 9.191462 Anserini +test2097 Q0 6477270 18 9.134274 Anserini +test2097 Q0 5234478 19 9.076065 Anserini +test2097 Q0 12446798 20 9.065034 Anserini +test2097 Q0 7461440 21 9.062663 Anserini +test2097 Q0 12159554 22 8.939372 Anserini +test2097 Q0 8592421 23 8.924451 Anserini +test2097 Q0 2082745 24 8.901259 Anserini +test2097 Q0 803076 25 8.872306 Anserini +test2097 Q0 12055597 26 8.747294 Anserini +test2097 Q0 13035900 27 8.747294 Anserini +test2097 Q0 15573822 28 8.733396 Anserini +test2097 Q0 5948269 29 8.724281 Anserini +test2097 Q0 296029 30 8.672628 Anserini +test2098 Q0 20514112 1 13.965877 Anserini +test2098 Q0 381508 2 13.077336 Anserini +test2098 Q0 5024875 3 13.045359 Anserini +test2098 Q0 14683638 4 12.914157 Anserini +test2098 Q0 19382497 5 12.880741 Anserini +test2098 Q0 388362 6 12.716496 Anserini +test2098 Q0 10802427 7 12.546606 Anserini +test2098 Q0 4829581 8 12.094115 Anserini +test2098 Q0 381522 9 12.071367 Anserini +test2098 Q0 817001 10 12.005311 Anserini +test2098 Q0 73621 11 11.953545 Anserini +test2098 Q0 5917478 12 11.904513 Anserini +test2098 Q0 411205 13 11.818974 Anserini +test2098 Q0 8582718 14 11.802488 Anserini +test2098 Q0 8589772 15 11.745123 Anserini +test2098 Q0 565135 16 11.513851 Anserini +test2098 Q0 15559034 17 11.477266 Anserini +test2098 Q0 388382 18 11.377587 Anserini +test2098 Q0 9095511 19 11.370047 Anserini +test2098 Q0 7575433 20 11.287643 Anserini +test2098 Q0 9703669 21 11.281908 Anserini +test2098 Q0 19789209 22 11.255527 Anserini +test2098 Q0 8571454 23 11.255527 Anserini +test2098 Q0 411207 24 11.196301 Anserini +test2098 Q0 384531 25 11.196301 Anserini +test2098 Q0 4817173 26 11.181325 Anserini +test2098 Q0 5814144 27 11.158697 Anserini +test2098 Q0 13562401 28 11.133236 Anserini +test2098 Q0 3018714 29 11.127727 Anserini +test2098 Q0 7284768 30 11.114353 Anserini +test2099 Q0 19872986 1 26.616341 Anserini +test2099 Q0 13495015 2 25.675388 Anserini +test2099 Q0 13495014 3 25.188051 Anserini +test2099 Q0 19872964 4 24.959148 Anserini +test2099 Q0 19872968 5 24.760731 Anserini +test2099 Q0 20096028 6 24.084383 Anserini +test2099 Q0 19872981 7 23.605934 Anserini +test2099 Q0 19873005 8 23.605934 Anserini +test2099 Q0 19873000 9 23.186842 Anserini +test2099 Q0 19891311 10 23.160648 Anserini +test2099 Q0 19872973 11 23.159328 Anserini +test2099 Q0 20096026 12 23.122145 Anserini +test2099 Q0 19891179 13 23.010399 Anserini +test2099 Q0 19891173 14 22.956703 Anserini +test2099 Q0 19872991 15 22.887182 Anserini +test2099 Q0 19891181 16 22.799320 Anserini +test2099 Q0 19891309 17 22.767063 Anserini +test2099 Q0 19891184 18 22.743769 Anserini +test2099 Q0 15234881 19 22.739267 Anserini +test2099 Q0 19872978 20 22.498264 Anserini +test2099 Q0 19873001 21 22.411938 Anserini +test2099 Q0 19872966 22 22.369066 Anserini +test2099 Q0 19872989 23 22.367847 Anserini +test2099 Q0 19891175 24 22.256151 Anserini +test2099 Q0 19872990 25 22.185104 Anserini +test2099 Q0 19872987 26 22.016003 Anserini +test2099 Q0 13495013 27 22.008026 Anserini +test2099 Q0 19872984 28 21.977669 Anserini +test2099 Q0 19891182 29 21.837439 Anserini +test2099 Q0 13495012 30 21.436123 Anserini +test21 Q0 19899023 1 13.593906 Anserini +test21 Q0 7967235 2 13.398109 Anserini +test21 Q0 14875568 3 13.056375 Anserini +test21 Q0 11592569 4 12.868545 Anserini +test21 Q0 17932940 5 12.383090 Anserini +test21 Q0 3888527 6 12.241864 Anserini +test21 Q0 14008069 7 12.090940 Anserini +test21 Q0 5600455 8 11.869100 Anserini +test21 Q0 15932070 9 11.781877 Anserini +test21 Q0 14008091 10 11.731730 Anserini +test21 Q0 3156501 11 11.721666 Anserini +test21 Q0 15936366 12 11.459096 Anserini +test21 Q0 14499358 13 11.405994 Anserini +test21 Q0 2390774 14 11.377064 Anserini +test21 Q0 14215217 15 11.343223 Anserini +test21 Q0 14008070 16 11.300695 Anserini +test21 Q0 7080679 17 11.261897 Anserini +test21 Q0 2911134 18 11.165686 Anserini +test21 Q0 14008073 19 11.040195 Anserini +test21 Q0 18960073 20 11.035443 Anserini +test21 Q0 5600479 21 11.020178 Anserini +test21 Q0 11003408 22 11.005322 Anserini +test21 Q0 5600490 23 10.989242 Anserini +test21 Q0 7967236 24 10.966535 Anserini +test21 Q0 16043719 25 10.948807 Anserini +test21 Q0 17013676 26 10.845750 Anserini +test21 Q0 2100032 27 10.809402 Anserini +test21 Q0 6512839 28 10.794441 Anserini +test21 Q0 15932069 29 10.737617 Anserini +test21 Q0 4110125 30 10.682559 Anserini +test210 Q0 3648822 1 16.336975 Anserini +test210 Q0 12947761 2 16.186579 Anserini +test210 Q0 1918748 3 15.724745 Anserini +test210 Q0 9683503 4 15.183827 Anserini +test210 Q0 727549 5 14.986970 Anserini +test210 Q0 1698338 6 14.588216 Anserini +test210 Q0 727545 7 14.561646 Anserini +test210 Q0 3648823 8 14.188999 Anserini +test210 Q0 4088157 9 14.115269 Anserini +test210 Q0 18050421 10 13.956863 Anserini +test210 Q0 1918753 11 13.940708 Anserini +test210 Q0 3114836 12 13.890079 Anserini +test210 Q0 1346814 13 13.863209 Anserini +test210 Q0 8917512 14 13.797312 Anserini +test210 Q0 1346810 15 13.627115 Anserini +test210 Q0 5339094 16 13.531162 Anserini +test210 Q0 3410600 17 13.511112 Anserini +test210 Q0 5339084 18 13.377223 Anserini +test210 Q0 1346808 19 13.259948 Anserini +test210 Q0 7304025 20 13.184422 Anserini +test210 Q0 13004495 21 13.157027 Anserini +test210 Q0 11289355 22 13.157027 Anserini +test210 Q0 1611636 23 13.151737 Anserini +test210 Q0 727546 24 13.108720 Anserini +test210 Q0 1821613 25 13.094824 Anserini +test210 Q0 178065 26 12.995115 Anserini +test210 Q0 12947766 27 12.798705 Anserini +test210 Q0 8917519 28 12.797426 Anserini +test210 Q0 5277332 29 12.750942 Anserini +test210 Q0 17817724 30 12.711438 Anserini +test2100 Q0 13003655 1 11.502988 Anserini +test2100 Q0 1765314 2 11.200345 Anserini +test2100 Q0 4806838 3 10.934945 Anserini +test2100 Q0 12865995 4 10.856320 Anserini +test2100 Q0 4806845 5 10.399770 Anserini +test2100 Q0 1929353 6 10.293954 Anserini +test2100 Q0 1736290 7 9.992953 Anserini +test2100 Q0 3720840 8 9.897909 Anserini +test2100 Q0 3720842 9 9.897909 Anserini +test2100 Q0 1736308 10 9.870519 Anserini +test2100 Q0 19195861 11 9.804868 Anserini +test2100 Q0 1528509 12 9.802502 Anserini +test2100 Q0 2748579 13 9.709230 Anserini +test2100 Q0 1528504 14 9.648263 Anserini +test2100 Q0 12464279 15 9.617950 Anserini +test2100 Q0 1057339 16 9.467562 Anserini +test2100 Q0 3213114 17 9.358900 Anserini +test2100 Q0 13003657 18 9.338239 Anserini +test2100 Q0 262181 19 9.303187 Anserini +test2100 Q0 1837101 20 9.275058 Anserini +test2100 Q0 1867107 21 9.273002 Anserini +test2100 Q0 9217301 22 9.250055 Anserini +test2100 Q0 1167817 23 9.247280 Anserini +test2100 Q0 4240010 24 9.216725 Anserini +test2100 Q0 3213127 25 9.216479 Anserini +test2100 Q0 708660 26 9.172297 Anserini +test2100 Q0 3227524 27 9.166364 Anserini +test2100 Q0 1837107 28 9.137084 Anserini +test2100 Q0 19801197 29 9.124194 Anserini +test2100 Q0 3227516 30 9.085972 Anserini +test2101 Q0 12578607 1 14.142262 Anserini +test2101 Q0 2024467 2 13.832535 Anserini +test2101 Q0 4473205 3 13.527213 Anserini +test2101 Q0 6652016 4 13.387083 Anserini +test2101 Q0 4473211 5 12.989170 Anserini +test2101 Q0 4473210 6 12.903893 Anserini +test2101 Q0 4473213 7 12.109101 Anserini +test2101 Q0 13657567 8 11.874997 Anserini +test2101 Q0 12373912 9 11.430079 Anserini +test2101 Q0 5880781 10 10.698199 Anserini +test2101 Q0 5880785 11 10.698199 Anserini +test2101 Q0 3198553 12 10.659283 Anserini +test2101 Q0 12373911 13 10.554171 Anserini +test2101 Q0 20972370 14 10.524074 Anserini +test2101 Q0 17704245 15 10.362411 Anserini +test2101 Q0 890048 16 9.994656 Anserini +test2101 Q0 2612919 17 9.861464 Anserini +test2101 Q0 8426238 18 9.811652 Anserini +test2101 Q0 4473208 19 9.769001 Anserini +test2101 Q0 20649623 20 9.715482 Anserini +test2101 Q0 3439327 21 9.365840 Anserini +test2101 Q0 498128 22 9.100759 Anserini +test2101 Q0 5944933 23 8.990313 Anserini +test2101 Q0 1783473 24 8.955596 Anserini +test2101 Q0 8556229 25 8.935076 Anserini +test2101 Q0 17562756 26 8.935076 Anserini +test2101 Q0 11163048 27 8.929709 Anserini +test2101 Q0 2265741 28 8.929555 Anserini +test2101 Q0 7457587 29 8.922440 Anserini +test2101 Q0 16121457 30 8.917402 Anserini +test2102 Q0 3135990 1 15.711853 Anserini +test2102 Q0 8297280 2 15.597670 Anserini +test2102 Q0 8297285 3 15.471630 Anserini +test2102 Q0 13553585 4 15.015820 Anserini +test2102 Q0 3976922 5 14.487299 Anserini +test2102 Q0 3135991 6 13.891129 Anserini +test2102 Q0 5686427 7 13.839905 Anserini +test2102 Q0 228573 8 13.678804 Anserini +test2102 Q0 7159322 9 13.569759 Anserini +test2102 Q0 3976919 10 13.540158 Anserini +test2102 Q0 3976921 11 13.517865 Anserini +test2102 Q0 8970004 12 13.475574 Anserini +test2102 Q0 5686429 13 13.475574 Anserini +test2102 Q0 905782 14 13.405297 Anserini +test2102 Q0 3129230 15 13.387900 Anserini +test2102 Q0 3250392 16 13.360586 Anserini +test2102 Q0 905786 17 13.287847 Anserini +test2102 Q0 3976911 18 13.255358 Anserini +test2102 Q0 8297281 19 13.213086 Anserini +test2102 Q0 3135988 20 13.184493 Anserini +test2102 Q0 9755056 21 12.928992 Anserini +test2102 Q0 1294795 22 12.865866 Anserini +test2102 Q0 13553583 23 12.845816 Anserini +test2102 Q0 13762847 24 12.689886 Anserini +test2102 Q0 11804704 25 12.678665 Anserini +test2102 Q0 7167918 26 12.665086 Anserini +test2102 Q0 14252360 27 12.519796 Anserini +test2102 Q0 7352260 28 12.502674 Anserini +test2102 Q0 20263165 29 12.492291 Anserini +test2102 Q0 3135986 30 12.477226 Anserini +test2103 Q0 9363171 1 11.149240 Anserini +test2103 Q0 15255080 2 10.634292 Anserini +test2103 Q0 6460946 3 10.371987 Anserini +test2103 Q0 2122742 4 10.180276 Anserini +test2103 Q0 5235400 5 9.897488 Anserini +test2103 Q0 6460934 6 9.790622 Anserini +test2103 Q0 7764932 7 9.550707 Anserini +test2103 Q0 1395686 8 9.498098 Anserini +test2103 Q0 4319344 9 9.483849 Anserini +test2103 Q0 17624847 10 9.474675 Anserini +test2103 Q0 17140044 11 9.426996 Anserini +test2103 Q0 6450793 12 9.390322 Anserini +test2103 Q0 3344723 13 9.390322 Anserini +test2103 Q0 483615 14 9.337402 Anserini +test2103 Q0 5273166 15 9.337402 Anserini +test2103 Q0 3616272 16 9.266044 Anserini +test2103 Q0 6399864 17 9.238956 Anserini +test2103 Q0 17624844 18 9.229782 Anserini +test2103 Q0 10063632 19 9.207747 Anserini +test2103 Q0 2122737 20 9.143797 Anserini +test2103 Q0 9363174 21 9.095622 Anserini +test2103 Q0 3616273 22 9.095622 Anserini +test2103 Q0 5235399 23 9.058879 Anserini +test2103 Q0 12682963 24 9.058879 Anserini +test2103 Q0 3616268 25 9.040219 Anserini +test2103 Q0 5558485 26 9.019838 Anserini +test2103 Q0 12393059 27 8.933371 Anserini +test2103 Q0 5488566 28 8.763156 Anserini +test2103 Q0 9140056 29 8.747431 Anserini +test2103 Q0 20887324 30 8.747431 Anserini +test2104 Q0 14078041 1 13.308858 Anserini +test2104 Q0 15958889 2 12.698546 Anserini +test2104 Q0 10603306 3 12.322355 Anserini +test2104 Q0 9013998 4 12.132873 Anserini +test2104 Q0 8222451 5 11.978335 Anserini +test2104 Q0 11645223 6 11.883977 Anserini +test2104 Q0 7778459 7 11.552322 Anserini +test2104 Q0 12057459 8 11.429634 Anserini +test2104 Q0 14329152 9 11.359876 Anserini +test2104 Q0 5129305 10 11.338135 Anserini +test2104 Q0 4327516 11 11.285718 Anserini +test2104 Q0 16261572 12 11.247619 Anserini +test2104 Q0 17982801 13 11.151361 Anserini +test2104 Q0 11717331 14 11.095358 Anserini +test2104 Q0 17467137 15 10.992683 Anserini +test2104 Q0 17262944 16 10.964005 Anserini +test2104 Q0 17609098 17 10.937498 Anserini +test2104 Q0 3180582 18 10.885604 Anserini +test2104 Q0 9770161 19 10.875731 Anserini +test2104 Q0 6541886 20 10.875731 Anserini +test2104 Q0 18039626 21 10.864484 Anserini +test2104 Q0 16536299 22 10.848995 Anserini +test2104 Q0 17863921 23 10.782974 Anserini +test2104 Q0 5097035 24 10.781160 Anserini +test2104 Q0 19818261 25 10.769074 Anserini +test2104 Q0 5487610 26 10.761242 Anserini +test2104 Q0 15625375 27 10.761242 Anserini +test2104 Q0 8582358 28 10.745034 Anserini +test2104 Q0 19744085 29 10.679081 Anserini +test2104 Q0 20371297 30 10.676999 Anserini +test2105 Q0 14721687 1 13.547390 Anserini +test2105 Q0 14721688 2 11.039016 Anserini +test2105 Q0 2290165 3 11.036903 Anserini +test2105 Q0 15596353 4 10.910403 Anserini +test2105 Q0 14721690 5 10.848328 Anserini +test2105 Q0 15471792 6 10.831766 Anserini +test2105 Q0 13197394 7 10.676960 Anserini +test2105 Q0 3871419 8 10.670590 Anserini +test2105 Q0 1949294 9 10.670590 Anserini +test2105 Q0 13097967 10 10.562232 Anserini +test2105 Q0 11988985 11 10.530836 Anserini +test2105 Q0 1949292 12 10.468967 Anserini +test2105 Q0 4905913 13 10.407455 Anserini +test2105 Q0 9417648 14 10.331159 Anserini +test2105 Q0 5175800 15 10.267461 Anserini +test2105 Q0 3871409 16 10.170187 Anserini +test2105 Q0 1556382 17 10.163761 Anserini +test2105 Q0 19208949 18 10.134892 Anserini +test2105 Q0 11829462 19 10.122769 Anserini +test2105 Q0 3549396 20 10.106070 Anserini +test2105 Q0 4905926 21 10.029896 Anserini +test2105 Q0 5175670 22 10.022705 Anserini +test2105 Q0 1949290 23 9.978479 Anserini +test2105 Q0 5292006 24 9.857479 Anserini +test2105 Q0 6398057 25 9.844985 Anserini +test2105 Q0 1949280 26 9.838020 Anserini +test2105 Q0 1949302 27 9.601848 Anserini +test2105 Q0 5239433 28 9.592576 Anserini +test2105 Q0 695361 29 9.485797 Anserini +test2105 Q0 17324737 30 9.446414 Anserini +test2106 Q0 16684087 1 11.536823 Anserini +test2106 Q0 9424839 2 11.080916 Anserini +test2106 Q0 20621537 3 10.690999 Anserini +test2106 Q0 4885903 4 10.396085 Anserini +test2106 Q0 17194309 5 10.347720 Anserini +test2106 Q0 5334403 6 10.290533 Anserini +test2106 Q0 13186497 7 10.250684 Anserini +test2106 Q0 14838650 8 10.241518 Anserini +test2106 Q0 15414967 9 10.072766 Anserini +test2106 Q0 4946854 10 9.986807 Anserini +test2106 Q0 2837128 11 9.983143 Anserini +test2106 Q0 11746260 12 9.960664 Anserini +test2106 Q0 6770946 13 9.943675 Anserini +test2106 Q0 2621486 14 9.926447 Anserini +test2106 Q0 12183728 15 9.895384 Anserini +test2106 Q0 11419314 16 9.864528 Anserini +test2106 Q0 10839819 17 9.808288 Anserini +test2106 Q0 14347255 18 9.734735 Anserini +test2106 Q0 19638187 19 9.728602 Anserini +test2106 Q0 16682544 20 9.728602 Anserini +test2106 Q0 1061868 21 9.689192 Anserini +test2106 Q0 9227473 22 9.686908 Anserini +test2106 Q0 15704630 23 9.626815 Anserini +test2106 Q0 19638202 24 9.540782 Anserini +test2106 Q0 19638225 25 9.540782 Anserini +test2106 Q0 10327416 26 9.537552 Anserini +test2106 Q0 8523185 27 9.492353 Anserini +test2106 Q0 5856118 28 9.486841 Anserini +test2106 Q0 16958353 29 9.484329 Anserini +test2106 Q0 19640711 30 9.456101 Anserini +test2107 Q0 8834016 1 20.601877 Anserini +test2107 Q0 8803578 2 19.298592 Anserini +test2107 Q0 17139356 3 18.759132 Anserini +test2107 Q0 8381454 4 18.682787 Anserini +test2107 Q0 14171368 5 18.635523 Anserini +test2107 Q0 12063876 6 18.611673 Anserini +test2107 Q0 19193977 7 18.599083 Anserini +test2107 Q0 8834019 8 18.521460 Anserini +test2107 Q0 8834020 9 18.390825 Anserini +test2107 Q0 17139355 10 18.308954 Anserini +test2107 Q0 845948 11 18.246010 Anserini +test2107 Q0 8803581 12 18.221058 Anserini +test2107 Q0 4216036 13 18.172987 Anserini +test2107 Q0 8803592 14 18.139053 Anserini +test2107 Q0 4216055 15 18.087008 Anserini +test2107 Q0 13049640 16 18.087008 Anserini +test2107 Q0 13049621 17 18.055874 Anserini +test2107 Q0 16027134 18 17.856417 Anserini +test2107 Q0 8834014 19 17.811903 Anserini +test2107 Q0 19193975 20 17.806414 Anserini +test2107 Q0 12063867 21 17.798553 Anserini +test2107 Q0 8340146 22 17.727997 Anserini +test2107 Q0 4216146 23 17.691040 Anserini +test2107 Q0 8340155 24 17.685019 Anserini +test2107 Q0 12063890 25 17.679495 Anserini +test2107 Q0 11206139 26 17.554026 Anserini +test2107 Q0 12063865 27 17.478796 Anserini +test2107 Q0 20113341 28 17.464516 Anserini +test2107 Q0 4751444 29 17.442842 Anserini +test2107 Q0 17139353 30 17.406084 Anserini +test2108 Q0 17537186 1 13.669992 Anserini +test2108 Q0 19306228 2 13.007229 Anserini +test2108 Q0 18189165 3 12.803520 Anserini +test2108 Q0 7272418 4 12.770247 Anserini +test2108 Q0 16503425 5 12.656147 Anserini +test2108 Q0 18134621 6 12.303747 Anserini +test2108 Q0 18030339 7 12.144897 Anserini +test2108 Q0 18095642 8 11.751453 Anserini +test2108 Q0 18134622 9 11.698595 Anserini +test2108 Q0 20153045 10 11.557550 Anserini +test2108 Q0 20153046 11 11.557550 Anserini +test2108 Q0 2694094 12 11.522779 Anserini +test2108 Q0 17537184 13 11.467757 Anserini +test2108 Q0 17510310 14 11.467757 Anserini +test2108 Q0 18412257 15 11.451368 Anserini +test2108 Q0 16878516 16 11.407402 Anserini +test2108 Q0 1834355 17 11.319019 Anserini +test2108 Q0 20375281 18 11.275058 Anserini +test2108 Q0 5692088 19 11.271805 Anserini +test2108 Q0 16503420 20 11.262458 Anserini +test2108 Q0 18715611 21 11.233428 Anserini +test2108 Q0 18095645 22 11.151007 Anserini +test2108 Q0 10319784 23 11.143948 Anserini +test2108 Q0 17537185 24 11.126728 Anserini +test2108 Q0 14416506 25 11.107059 Anserini +test2108 Q0 20879918 26 11.084813 Anserini +test2108 Q0 20879919 27 11.084813 Anserini +test2108 Q0 18412273 28 11.063654 Anserini +test2108 Q0 12489123 29 11.040691 Anserini +test2108 Q0 18738771 30 11.025927 Anserini +test2109 Q0 11492880 1 17.710627 Anserini +test2109 Q0 11492876 2 17.685411 Anserini +test2109 Q0 11492879 3 17.190657 Anserini +test2109 Q0 4451952 4 15.173388 Anserini +test2109 Q0 10681777 5 14.373062 Anserini +test2109 Q0 11492877 6 14.170543 Anserini +test2109 Q0 9625771 7 13.314322 Anserini +test2109 Q0 10681778 8 13.269880 Anserini +test2109 Q0 2750152 9 13.002052 Anserini +test2109 Q0 907182 10 13.002052 Anserini +test2109 Q0 3038839 11 12.323931 Anserini +test2109 Q0 10681779 12 12.235867 Anserini +test2109 Q0 19691778 13 11.943555 Anserini +test2109 Q0 10202730 14 11.886138 Anserini +test2109 Q0 5321260 15 11.858004 Anserini +test2109 Q0 10681776 16 11.823148 Anserini +test2109 Q0 2512726 17 11.822528 Anserini +test2109 Q0 10681775 18 11.777496 Anserini +test2109 Q0 9625770 19 11.774043 Anserini +test2109 Q0 5851972 20 11.676872 Anserini +test2109 Q0 11492878 21 11.640339 Anserini +test2109 Q0 10696346 22 11.601075 Anserini +test2109 Q0 14886763 23 11.542965 Anserini +test2109 Q0 9864714 24 11.532352 Anserini +test2109 Q0 8413678 25 11.409741 Anserini +test2109 Q0 13351819 26 11.404454 Anserini +test2109 Q0 2900411 27 11.375267 Anserini +test2109 Q0 5511841 28 11.213095 Anserini +test2109 Q0 5321258 29 11.152885 Anserini +test2109 Q0 11142680 30 11.139710 Anserini +test211 Q0 19242247 1 17.935595 Anserini +test211 Q0 19987815 2 15.274256 Anserini +test211 Q0 12551226 3 15.244391 Anserini +test211 Q0 4484954 4 15.087822 Anserini +test211 Q0 19529624 5 14.668289 Anserini +test211 Q0 18748041 6 14.465235 Anserini +test211 Q0 18112350 7 14.437602 Anserini +test211 Q0 17430083 8 14.258703 Anserini +test211 Q0 1930219 9 14.229531 Anserini +test211 Q0 15289051 10 14.224607 Anserini +test211 Q0 1456753 11 14.186821 Anserini +test211 Q0 14058609 12 14.154000 Anserini +test211 Q0 1392207 13 14.149757 Anserini +test211 Q0 11628138 14 14.037569 Anserini +test211 Q0 1358345 15 13.995065 Anserini +test211 Q0 18886068 16 13.891091 Anserini +test211 Q0 17875286 17 13.850037 Anserini +test211 Q0 20276751 18 13.834595 Anserini +test211 Q0 16347876 19 13.824687 Anserini +test211 Q0 10529525 20 13.774061 Anserini +test211 Q0 19832007 21 13.720617 Anserini +test211 Q0 16595624 22 13.666132 Anserini +test211 Q0 7090000 23 13.635815 Anserini +test211 Q0 9491762 24 13.511853 Anserini +test211 Q0 19588826 25 13.429056 Anserini +test211 Q0 19999526 26 13.301032 Anserini +test211 Q0 2595702 27 13.280214 Anserini +test211 Q0 19242245 28 13.238722 Anserini +test211 Q0 4711882 29 13.214344 Anserini +test211 Q0 16366921 30 13.213696 Anserini +test2110 Q0 18077079 1 10.893065 Anserini +test2110 Q0 17905908 2 10.508545 Anserini +test2110 Q0 2084698 3 9.898342 Anserini +test2110 Q0 18094220 4 9.883965 Anserini +test2110 Q0 19674442 5 9.863436 Anserini +test2110 Q0 15630432 6 9.801928 Anserini +test2110 Q0 17391705 7 9.734032 Anserini +test2110 Q0 16982066 8 9.658779 Anserini +test2110 Q0 18440141 9 9.650418 Anserini +test2110 Q0 17889027 10 9.632182 Anserini +test2110 Q0 15623834 11 9.626559 Anserini +test2110 Q0 14085361 12 9.523311 Anserini +test2110 Q0 17807369 13 9.511652 Anserini +test2110 Q0 16515926 14 9.509121 Anserini +test2110 Q0 14416506 15 9.451118 Anserini +test2110 Q0 17697067 16 9.451118 Anserini +test2110 Q0 6306728 17 9.391249 Anserini +test2110 Q0 12489123 18 9.349515 Anserini +test2110 Q0 9951910 19 9.338589 Anserini +test2110 Q0 20477546 20 9.316592 Anserini +test2110 Q0 2114765 21 9.305048 Anserini +test2110 Q0 12174848 22 9.287022 Anserini +test2110 Q0 20020752 23 9.277698 Anserini +test2110 Q0 12602804 24 9.267102 Anserini +test2110 Q0 11633571 25 9.210715 Anserini +test2110 Q0 20130123 26 9.191495 Anserini +test2110 Q0 10709530 27 9.177083 Anserini +test2110 Q0 14421564 28 9.174833 Anserini +test2110 Q0 16255351 29 9.151372 Anserini +test2110 Q0 15567561 30 9.148779 Anserini +test2111 Q0 7039088 1 15.084483 Anserini +test2111 Q0 2173140 2 14.827396 Anserini +test2111 Q0 2973079 3 14.658091 Anserini +test2111 Q0 2173114 4 14.242440 Anserini +test2111 Q0 2173143 5 14.102900 Anserini +test2111 Q0 11174335 6 13.937099 Anserini +test2111 Q0 3780815 7 13.857857 Anserini +test2111 Q0 2852293 8 13.733015 Anserini +test2111 Q0 2173152 9 13.443898 Anserini +test2111 Q0 7481827 10 13.440935 Anserini +test2111 Q0 1880369 11 13.386453 Anserini +test2111 Q0 4704067 12 13.354169 Anserini +test2111 Q0 4705691 13 13.281580 Anserini +test2111 Q0 4705712 14 13.281580 Anserini +test2111 Q0 2173137 15 13.281244 Anserini +test2111 Q0 3545692 16 13.260143 Anserini +test2111 Q0 2482641 17 13.212461 Anserini +test2111 Q0 4704035 18 13.195904 Anserini +test2111 Q0 2973075 19 13.129934 Anserini +test2111 Q0 4529883 20 13.118591 Anserini +test2111 Q0 2173153 21 13.066971 Anserini +test2111 Q0 20551828 22 13.057096 Anserini +test2111 Q0 2973078 23 12.991147 Anserini +test2111 Q0 18215205 24 12.985546 Anserini +test2111 Q0 10541578 25 12.967041 Anserini +test2111 Q0 4086543 26 12.929540 Anserini +test2111 Q0 7039113 27 12.914386 Anserini +test2111 Q0 15022059 28 12.824720 Anserini +test2111 Q0 4047988 29 12.824720 Anserini +test2111 Q0 7039111 30 12.817037 Anserini +test2112 Q0 2426225 1 31.676357 Anserini +test2112 Q0 2426217 2 31.343197 Anserini +test2112 Q0 10745750 3 30.736603 Anserini +test2112 Q0 20189086 4 28.785561 Anserini +test2112 Q0 15182249 5 28.213146 Anserini +test2112 Q0 15223633 6 27.852629 Anserini +test2112 Q0 15223634 7 27.794704 Anserini +test2112 Q0 15131588 8 27.508741 Anserini +test2112 Q0 9702555 9 27.285912 Anserini +test2112 Q0 15132819 10 27.124901 Anserini +test2112 Q0 15175699 11 26.943935 Anserini +test2112 Q0 15132812 12 26.938242 Anserini +test2112 Q0 15175690 13 26.803839 Anserini +test2112 Q0 6615066 14 26.515381 Anserini +test2112 Q0 15131589 15 26.515381 Anserini +test2112 Q0 11556331 16 26.341742 Anserini +test2112 Q0 15133650 17 26.079620 Anserini +test2112 Q0 15133651 18 26.024427 Anserini +test2112 Q0 15132941 19 25.803938 Anserini +test2112 Q0 20724134 20 25.757565 Anserini +test2112 Q0 15132946 21 25.683924 Anserini +test2112 Q0 15182250 22 25.550364 Anserini +test2112 Q0 15130461 23 25.401184 Anserini +test2112 Q0 15130460 24 25.326111 Anserini +test2112 Q0 6615070 25 25.202368 Anserini +test2112 Q0 2426221 26 25.150192 Anserini +test2112 Q0 15182575 27 25.089201 Anserini +test2112 Q0 15182576 28 25.089201 Anserini +test2112 Q0 15182472 29 24.638069 Anserini +test2112 Q0 2426216 30 24.067759 Anserini +test2113 Q0 2624207 1 14.440185 Anserini +test2113 Q0 734591 2 13.970612 Anserini +test2113 Q0 1398613 3 13.854382 Anserini +test2113 Q0 2624199 4 13.716751 Anserini +test2113 Q0 6763688 5 13.657034 Anserini +test2113 Q0 734605 6 13.551277 Anserini +test2113 Q0 13447461 7 13.404603 Anserini +test2113 Q0 13447860 8 13.249630 Anserini +test2113 Q0 6763687 9 13.166306 Anserini +test2113 Q0 734590 10 13.160728 Anserini +test2113 Q0 13446953 11 13.137331 Anserini +test2113 Q0 735610 12 13.077290 Anserini +test2113 Q0 5259549 13 12.987411 Anserini +test2113 Q0 6041794 14 12.903627 Anserini +test2113 Q0 2547490 15 12.900503 Anserini +test2113 Q0 11575231 16 12.895252 Anserini +test2113 Q0 9567022 17 12.764997 Anserini +test2113 Q0 13410170 18 12.633469 Anserini +test2113 Q0 14397760 19 12.633469 Anserini +test2113 Q0 13164007 20 12.606818 Anserini +test2113 Q0 3995579 21 12.573992 Anserini +test2113 Q0 13447246 22 12.559134 Anserini +test2113 Q0 6892966 23 12.549201 Anserini +test2113 Q0 13448082 24 12.483542 Anserini +test2113 Q0 734587 25 12.476180 Anserini +test2113 Q0 1843234 26 12.405899 Anserini +test2113 Q0 735609 27 12.346994 Anserini +test2113 Q0 13447503 28 12.311061 Anserini +test2113 Q0 9859332 29 12.283953 Anserini +test2113 Q0 732614 30 12.253117 Anserini +test2114 Q0 4735855 1 23.539391 Anserini +test2114 Q0 1961663 2 21.118364 Anserini +test2114 Q0 51234 3 21.030668 Anserini +test2114 Q0 1892091 4 20.257072 Anserini +test2114 Q0 4735852 5 19.893267 Anserini +test2114 Q0 6248013 6 19.331356 Anserini +test2114 Q0 6248019 7 19.331356 Anserini +test2114 Q0 5946895 8 18.874342 Anserini +test2114 Q0 4403315 9 18.508293 Anserini +test2114 Q0 4403252 10 18.413124 Anserini +test2114 Q0 9327775 11 18.235920 Anserini +test2114 Q0 562597 12 17.869324 Anserini +test2114 Q0 8457335 13 17.817293 Anserini +test2114 Q0 984392 14 17.817293 Anserini +test2114 Q0 7417160 15 17.794806 Anserini +test2114 Q0 1950973 16 17.722944 Anserini +test2114 Q0 7495904 17 17.701437 Anserini +test2114 Q0 6758379 18 17.506765 Anserini +test2114 Q0 2743882 19 17.416885 Anserini +test2114 Q0 9522393 20 17.363184 Anserini +test2114 Q0 1943889 21 17.350847 Anserini +test2114 Q0 7455820 22 17.210291 Anserini +test2114 Q0 17484439 23 17.142570 Anserini +test2114 Q0 4735856 24 17.142570 Anserini +test2114 Q0 7417161 25 17.081871 Anserini +test2114 Q0 2743887 26 16.991762 Anserini +test2114 Q0 7594321 27 16.893379 Anserini +test2114 Q0 543737 28 16.837444 Anserini +test2114 Q0 12980286 29 16.794668 Anserini +test2114 Q0 9698615 30 16.754742 Anserini +test2115 Q0 1794898 1 9.583769 Anserini +test2115 Q0 17009494 2 9.162819 Anserini +test2115 Q0 14824816 3 8.919918 Anserini +test2115 Q0 13511913 4 8.804753 Anserini +test2115 Q0 16152534 5 8.750152 Anserini +test2115 Q0 18155252 6 8.728544 Anserini +test2115 Q0 2030841 7 8.650444 Anserini +test2115 Q0 16182157 8 8.574518 Anserini +test2115 Q0 7803745 9 8.454821 Anserini +test2115 Q0 19839724 10 8.436775 Anserini +test2115 Q0 9864955 11 8.434770 Anserini +test2115 Q0 2014228 12 8.429337 Anserini +test2115 Q0 16108950 13 8.391409 Anserini +test2115 Q0 8888548 14 8.356057 Anserini +test2115 Q0 6566904 15 8.277594 Anserini +test2115 Q0 20894223 16 8.276918 Anserini +test2115 Q0 1880178 17 8.229599 Anserini +test2115 Q0 9000595 18 8.207964 Anserini +test2115 Q0 408033 19 8.189809 Anserini +test2115 Q0 11725379 20 8.162193 Anserini +test2115 Q0 4828015 21 8.134905 Anserini +test2115 Q0 4422455 22 8.130537 Anserini +test2115 Q0 4834859 23 8.115515 Anserini +test2115 Q0 10790154 24 8.070970 Anserini +test2115 Q0 5612423 25 8.049687 Anserini +test2115 Q0 5151780 26 8.047506 Anserini +test2115 Q0 3800535 27 8.026685 Anserini +test2115 Q0 18556590 28 8.019577 Anserini +test2115 Q0 3737792 29 7.990318 Anserini +test2115 Q0 9729139 30 7.969212 Anserini +test2116 Q0 99606 1 14.545823 Anserini +test2116 Q0 597544 2 13.228842 Anserini +test2116 Q0 11109786 3 12.899490 Anserini +test2116 Q0 5883868 4 12.733589 Anserini +test2116 Q0 17168792 5 12.370647 Anserini +test2116 Q0 3208733 6 12.329711 Anserini +test2116 Q0 18107052 7 12.295034 Anserini +test2116 Q0 9727900 8 12.264292 Anserini +test2116 Q0 18477495 9 12.009911 Anserini +test2116 Q0 18107057 10 11.882629 Anserini +test2116 Q0 5723240 11 11.813352 Anserini +test2116 Q0 12725868 12 11.793694 Anserini +test2116 Q0 12641212 13 11.684748 Anserini +test2116 Q0 8312293 14 11.670188 Anserini +test2116 Q0 14887104 15 11.646668 Anserini +test2116 Q0 16081353 16 11.622999 Anserini +test2116 Q0 1610105 17 11.618057 Anserini +test2116 Q0 617558 18 11.600466 Anserini +test2116 Q0 19500261 19 11.581138 Anserini +test2116 Q0 14380309 20 11.581138 Anserini +test2116 Q0 13427779 21 11.557853 Anserini +test2116 Q0 19325455 22 11.533410 Anserini +test2116 Q0 11254375 23 11.494992 Anserini +test2116 Q0 20637140 24 11.488438 Anserini +test2116 Q0 3756323 25 11.428024 Anserini +test2116 Q0 2412249 26 11.418200 Anserini +test2116 Q0 438116 27 11.391970 Anserini +test2116 Q0 149742 28 11.389368 Anserini +test2116 Q0 2045101 29 11.385958 Anserini +test2116 Q0 4274386 30 11.350918 Anserini +test2117 Q0 15391773 1 16.854240 Anserini +test2117 Q0 15391772 2 16.076658 Anserini +test2117 Q0 7241315 3 14.678134 Anserini +test2117 Q0 12834306 4 14.585712 Anserini +test2117 Q0 14591044 5 14.451497 Anserini +test2117 Q0 786480 6 14.362906 Anserini +test2117 Q0 18828237 7 13.949228 Anserini +test2117 Q0 7241287 8 13.875185 Anserini +test2117 Q0 8064098 9 13.694200 Anserini +test2117 Q0 6835194 10 13.603415 Anserini +test2117 Q0 5700661 11 13.462478 Anserini +test2117 Q0 13343408 12 13.449532 Anserini +test2117 Q0 16558741 13 13.433528 Anserini +test2117 Q0 12910818 14 13.414076 Anserini +test2117 Q0 19560027 15 13.352569 Anserini +test2117 Q0 12834304 16 13.309213 Anserini +test2117 Q0 17334896 17 13.283661 Anserini +test2117 Q0 786493 18 13.235595 Anserini +test2117 Q0 9407472 19 13.228180 Anserini +test2117 Q0 9407471 20 13.105416 Anserini +test2117 Q0 16558742 21 13.034061 Anserini +test2117 Q0 13343406 22 13.023370 Anserini +test2117 Q0 9631776 23 12.971395 Anserini +test2117 Q0 8464134 24 12.950596 Anserini +test2117 Q0 2175112 25 12.841466 Anserini +test2117 Q0 14009887 26 12.815079 Anserini +test2117 Q0 9466112 27 12.761364 Anserini +test2117 Q0 786492 28 12.604803 Anserini +test2117 Q0 786470 29 12.572309 Anserini +test2117 Q0 9876404 30 12.558589 Anserini +test2118 Q0 16021391 1 20.730352 Anserini +test2118 Q0 16021376 2 20.730352 Anserini +test2118 Q0 16021378 3 20.234407 Anserini +test2118 Q0 16021381 4 20.211823 Anserini +test2118 Q0 3188771 5 20.210556 Anserini +test2118 Q0 3449557 6 20.097582 Anserini +test2118 Q0 3449575 7 20.018551 Anserini +test2118 Q0 3449574 8 19.797747 Anserini +test2118 Q0 3449567 9 19.622316 Anserini +test2118 Q0 589435 10 19.580410 Anserini +test2118 Q0 1555511 11 19.400324 Anserini +test2118 Q0 16021386 12 19.224295 Anserini +test2118 Q0 16021384 13 18.763506 Anserini +test2118 Q0 16021390 14 18.751617 Anserini +test2118 Q0 16021382 15 18.712542 Anserini +test2118 Q0 3449568 16 18.626648 Anserini +test2118 Q0 3449564 17 18.591393 Anserini +test2118 Q0 3449565 18 18.591393 Anserini +test2118 Q0 16021377 19 18.530319 Anserini +test2118 Q0 3449559 20 18.498505 Anserini +test2118 Q0 3449560 21 18.483509 Anserini +test2118 Q0 587163 22 18.423454 Anserini +test2118 Q0 3449573 23 18.253721 Anserini +test2118 Q0 3449569 24 18.188358 Anserini +test2118 Q0 3449558 25 17.823845 Anserini +test2118 Q0 15621354 26 17.801960 Anserini +test2118 Q0 935338 27 17.752268 Anserini +test2118 Q0 16021380 28 17.663717 Anserini +test2118 Q0 16021388 29 17.663717 Anserini +test2118 Q0 16021379 30 17.634377 Anserini +test2119 Q0 801773 1 18.374008 Anserini +test2119 Q0 1370598 2 18.307728 Anserini +test2119 Q0 812291 3 17.981972 Anserini +test2119 Q0 1370590 4 17.904152 Anserini +test2119 Q0 1824454 5 17.846523 Anserini +test2119 Q0 1370580 6 17.295031 Anserini +test2119 Q0 1577947 7 16.937893 Anserini +test2119 Q0 1370579 8 16.427206 Anserini +test2119 Q0 1370584 9 16.219118 Anserini +test2119 Q0 1824445 10 16.034416 Anserini +test2119 Q0 7011931 11 15.726536 Anserini +test2119 Q0 801843 12 15.670624 Anserini +test2119 Q0 1824448 13 15.579003 Anserini +test2119 Q0 1824460 14 15.457809 Anserini +test2119 Q0 1370587 15 15.391395 Anserini +test2119 Q0 1370620 16 15.272449 Anserini +test2119 Q0 1370600 17 15.272449 Anserini +test2119 Q0 801862 18 15.205199 Anserini +test2119 Q0 1370622 19 15.057404 Anserini +test2119 Q0 812288 20 14.989853 Anserini +test2119 Q0 1370586 21 14.974551 Anserini +test2119 Q0 1370585 22 14.953256 Anserini +test2119 Q0 1370626 23 14.894892 Anserini +test2119 Q0 7011940 24 14.879356 Anserini +test2119 Q0 1370623 25 14.847629 Anserini +test2119 Q0 1370624 26 14.818859 Anserini +test2119 Q0 801861 27 14.750393 Anserini +test2119 Q0 1370581 28 14.725599 Anserini +test2119 Q0 6335980 29 14.720219 Anserini +test2119 Q0 1824450 30 14.715528 Anserini +test212 Q0 8285812 1 19.250713 Anserini +test212 Q0 14966268 2 18.939634 Anserini +test212 Q0 14966258 3 18.939634 Anserini +test212 Q0 6527726 4 17.895428 Anserini +test212 Q0 8940064 5 17.751226 Anserini +test212 Q0 19496633 6 17.655802 Anserini +test212 Q0 5116528 7 17.579712 Anserini +test212 Q0 932370 8 17.307381 Anserini +test212 Q0 14966249 9 17.292206 Anserini +test212 Q0 3211158 10 17.180325 Anserini +test212 Q0 21009813 11 17.167046 Anserini +test212 Q0 18172661 12 17.034666 Anserini +test212 Q0 14966265 13 17.034666 Anserini +test212 Q0 15087574 14 17.032738 Anserini +test212 Q0 14966264 15 17.016592 Anserini +test212 Q0 14966262 16 16.886898 Anserini +test212 Q0 14966267 17 16.863213 Anserini +test212 Q0 11986712 18 16.800224 Anserini +test212 Q0 932368 19 16.748373 Anserini +test212 Q0 11986714 20 16.683243 Anserini +test212 Q0 8940063 21 16.664204 Anserini +test212 Q0 3211159 22 16.627838 Anserini +test212 Q0 11986717 23 16.564316 Anserini +test212 Q0 14966261 24 16.357296 Anserini +test212 Q0 10887116 25 16.345642 Anserini +test212 Q0 15087572 26 16.332489 Anserini +test212 Q0 932371 27 16.295700 Anserini +test212 Q0 9103461 28 16.283344 Anserini +test212 Q0 14966263 29 16.260365 Anserini +test212 Q0 11520130 30 16.259079 Anserini +test2120 Q0 17778501 1 18.925915 Anserini +test2120 Q0 18873896 2 18.219202 Anserini +test2120 Q0 8921992 3 17.872831 Anserini +test2120 Q0 18873898 4 17.697929 Anserini +test2120 Q0 8441986 5 17.662046 Anserini +test2120 Q0 5923176 6 17.481226 Anserini +test2120 Q0 5923173 7 17.178127 Anserini +test2120 Q0 14810136 8 17.130064 Anserini +test2120 Q0 18177113 9 17.024199 Anserini +test2120 Q0 18177109 10 17.024199 Anserini +test2120 Q0 18015618 11 17.013517 Anserini +test2120 Q0 15913375 12 16.952040 Anserini +test2120 Q0 338979 13 16.829273 Anserini +test2120 Q0 4385159 14 16.361975 Anserini +test2120 Q0 13057702 15 16.130672 Anserini +test2120 Q0 11988587 16 15.996181 Anserini +test2120 Q0 4385163 17 15.974961 Anserini +test2120 Q0 15762621 18 15.964314 Anserini +test2120 Q0 2808446 19 15.963809 Anserini +test2120 Q0 6229560 20 15.946991 Anserini +test2120 Q0 13057700 21 15.946819 Anserini +test2120 Q0 14188948 22 15.939185 Anserini +test2120 Q0 9774642 23 15.886463 Anserini +test2120 Q0 9774655 24 15.853402 Anserini +test2120 Q0 17778502 25 15.794197 Anserini +test2120 Q0 11520720 26 15.681217 Anserini +test2120 Q0 6426596 27 15.670305 Anserini +test2120 Q0 20006190 28 15.654462 Anserini +test2120 Q0 9774647 29 15.624679 Anserini +test2120 Q0 14167387 30 15.596586 Anserini +test2121 Q0 14999011 1 12.495228 Anserini +test2121 Q0 532207 2 12.274302 Anserini +test2121 Q0 1366182 3 12.133677 Anserini +test2121 Q0 4390120 4 12.000285 Anserini +test2121 Q0 3735018 5 11.826883 Anserini +test2121 Q0 1687746 6 11.648890 Anserini +test2121 Q0 14999016 7 11.642612 Anserini +test2121 Q0 5900165 8 11.631234 Anserini +test2121 Q0 1687792 9 11.525315 Anserini +test2121 Q0 1687742 10 11.519865 Anserini +test2121 Q0 1687772 11 11.463407 Anserini +test2121 Q0 1687738 12 11.424725 Anserini +test2121 Q0 4390122 13 11.242943 Anserini +test2121 Q0 1687788 14 11.182553 Anserini +test2121 Q0 14999017 15 11.162642 Anserini +test2121 Q0 532202 16 11.113469 Anserini +test2121 Q0 5900152 17 11.051520 Anserini +test2121 Q0 5900159 18 10.982013 Anserini +test2121 Q0 4390137 19 10.916631 Anserini +test2121 Q0 532209 20 10.844306 Anserini +test2121 Q0 17808209 21 10.766567 Anserini +test2121 Q0 5900157 22 10.740931 Anserini +test2121 Q0 5563375 23 10.731155 Anserini +test2121 Q0 532248 24 10.708930 Anserini +test2121 Q0 19761551 25 10.682774 Anserini +test2121 Q0 4390118 26 10.678092 Anserini +test2121 Q0 10474970 27 10.659884 Anserini +test2121 Q0 5339329 28 10.629607 Anserini +test2121 Q0 1687757 29 10.622502 Anserini +test2121 Q0 5900160 30 10.549761 Anserini +test2122 Q0 4585401 1 14.846045 Anserini +test2122 Q0 4936529 2 13.855234 Anserini +test2122 Q0 15294748 3 13.660855 Anserini +test2122 Q0 9065183 4 13.607027 Anserini +test2122 Q0 13913910 5 13.394123 Anserini +test2122 Q0 20726662 6 13.328016 Anserini +test2122 Q0 8290274 7 13.035887 Anserini +test2122 Q0 8290283 8 13.035887 Anserini +test2122 Q0 10485062 9 12.706648 Anserini +test2122 Q0 9620300 10 12.633064 Anserini +test2122 Q0 13550683 11 12.615215 Anserini +test2122 Q0 20488787 12 12.537969 Anserini +test2122 Q0 20735785 13 12.517545 Anserini +test2122 Q0 20575922 14 12.506773 Anserini +test2122 Q0 20735793 15 12.506773 Anserini +test2122 Q0 11229043 16 12.475822 Anserini +test2122 Q0 14729209 17 12.430304 Anserini +test2122 Q0 10659611 18 12.412148 Anserini +test2122 Q0 20726665 19 12.412148 Anserini +test2122 Q0 13586910 20 12.329367 Anserini +test2122 Q0 3579284 21 12.247861 Anserini +test2122 Q0 1525767 22 12.198324 Anserini +test2122 Q0 6597582 23 12.164217 Anserini +test2122 Q0 12002272 24 12.090054 Anserini +test2122 Q0 20726663 25 12.090054 Anserini +test2122 Q0 3631869 26 12.090016 Anserini +test2122 Q0 13550471 27 12.063482 Anserini +test2122 Q0 20726647 28 12.008583 Anserini +test2122 Q0 20876696 29 11.951302 Anserini +test2122 Q0 866602 30 11.900710 Anserini +test2123 Q0 18380737 1 39.687027 Anserini +test2123 Q0 18380731 2 37.314579 Anserini +test2123 Q0 9411739 3 35.812431 Anserini +test2123 Q0 19858706 4 35.016384 Anserini +test2123 Q0 16575890 5 32.909920 Anserini +test2123 Q0 18380732 6 32.404236 Anserini +test2123 Q0 15791612 7 31.480478 Anserini +test2123 Q0 18380733 8 31.377897 Anserini +test2123 Q0 18739727 9 31.214439 Anserini +test2123 Q0 14756301 10 31.096590 Anserini +test2123 Q0 19125360 11 30.829353 Anserini +test2123 Q0 18380736 12 30.038719 Anserini +test2123 Q0 19150296 13 29.273115 Anserini +test2123 Q0 14579475 14 28.998159 Anserini +test2123 Q0 20726159 15 28.912043 Anserini +test2123 Q0 18563217 16 28.462908 Anserini +test2123 Q0 18380735 17 28.265007 Anserini +test2123 Q0 18553602 18 28.207933 Anserini +test2123 Q0 18348893 19 27.691376 Anserini +test2123 Q0 18739728 20 27.520283 Anserini +test2123 Q0 18380734 21 27.343775 Anserini +test2123 Q0 6629589 22 26.959141 Anserini +test2123 Q0 19678875 23 26.092861 Anserini +test2123 Q0 20046912 24 26.053841 Anserini +test2123 Q0 17760904 25 26.053841 Anserini +test2123 Q0 20424663 26 25.904539 Anserini +test2123 Q0 17427565 27 25.826260 Anserini +test2123 Q0 20819358 28 25.602787 Anserini +test2123 Q0 19055628 29 25.383307 Anserini +test2123 Q0 18954972 30 24.716793 Anserini +test2124 Q0 19489385 1 15.545040 Anserini +test2124 Q0 10933097 2 12.663238 Anserini +test2124 Q0 1531603 3 12.180417 Anserini +test2124 Q0 1531592 4 12.083999 Anserini +test2124 Q0 3383103 5 11.860983 Anserini +test2124 Q0 20579096 6 11.373880 Anserini +test2124 Q0 19532507 7 11.300375 Anserini +test2124 Q0 8109943 8 11.290681 Anserini +test2124 Q0 19532508 9 11.022221 Anserini +test2124 Q0 18533007 10 10.951670 Anserini +test2124 Q0 12607614 11 10.822726 Anserini +test2124 Q0 19442153 12 10.589046 Anserini +test2124 Q0 20262315 13 10.544067 Anserini +test2124 Q0 13386418 14 10.507030 Anserini +test2124 Q0 13931316 15 10.434423 Anserini +test2124 Q0 17968994 16 10.408936 Anserini +test2124 Q0 11219534 17 10.335726 Anserini +test2124 Q0 18533112 18 10.327841 Anserini +test2124 Q0 18615504 19 10.292941 Anserini +test2124 Q0 5269423 20 10.274969 Anserini +test2124 Q0 20493641 21 10.251963 Anserini +test2124 Q0 19275270 22 10.206730 Anserini +test2124 Q0 6659817 23 10.204874 Anserini +test2124 Q0 19489394 24 10.110645 Anserini +test2124 Q0 12607626 25 10.110645 Anserini +test2124 Q0 12609630 26 10.076485 Anserini +test2124 Q0 12607612 27 10.076485 Anserini +test2124 Q0 12607615 28 10.076485 Anserini +test2124 Q0 17521371 29 10.065648 Anserini +test2124 Q0 12713422 30 10.022147 Anserini +test2125 Q0 10411265 1 19.233738 Anserini +test2125 Q0 3453127 2 19.197178 Anserini +test2125 Q0 10411228 3 18.968908 Anserini +test2125 Q0 17917021 4 18.328585 Anserini +test2125 Q0 451465 5 18.258583 Anserini +test2125 Q0 15686665 6 18.220032 Anserini +test2125 Q0 18813279 7 18.023088 Anserini +test2125 Q0 9100713 8 17.883190 Anserini +test2125 Q0 10860338 9 17.868382 Anserini +test2125 Q0 4978730 10 17.839310 Anserini +test2125 Q0 5735313 11 17.828709 Anserini +test2125 Q0 10860396 12 17.825974 Anserini +test2125 Q0 10411230 13 17.771988 Anserini +test2125 Q0 11229224 14 17.764463 Anserini +test2125 Q0 10860367 15 17.689655 Anserini +test2125 Q0 9172917 16 17.628946 Anserini +test2125 Q0 9486010 17 17.596304 Anserini +test2125 Q0 3453157 18 17.570709 Anserini +test2125 Q0 10860337 19 17.492765 Anserini +test2125 Q0 2208708 20 17.455315 Anserini +test2125 Q0 7479516 21 17.410603 Anserini +test2125 Q0 13412731 22 17.382765 Anserini +test2125 Q0 255987 23 17.253559 Anserini +test2125 Q0 1622994 24 17.237850 Anserini +test2125 Q0 10860340 25 17.227135 Anserini +test2125 Q0 10860390 26 17.224316 Anserini +test2125 Q0 1814669 27 17.223619 Anserini +test2125 Q0 9100717 28 17.202564 Anserini +test2125 Q0 19590988 29 17.118561 Anserini +test2125 Q0 13607669 30 17.014402 Anserini +test2126 Q0 11189616 1 10.588086 Anserini +test2126 Q0 452638 2 10.500642 Anserini +test2126 Q0 5128700 3 10.441128 Anserini +test2126 Q0 832801 4 10.406017 Anserini +test2126 Q0 2425309 5 10.344720 Anserini +test2126 Q0 452680 6 10.101913 Anserini +test2126 Q0 2627947 7 10.083290 Anserini +test2126 Q0 14750757 8 10.026655 Anserini +test2126 Q0 14750752 9 9.916106 Anserini +test2126 Q0 452612 10 9.888676 Anserini +test2126 Q0 17510287 11 9.873371 Anserini +test2126 Q0 10470901 12 9.761376 Anserini +test2126 Q0 452683 13 9.747244 Anserini +test2126 Q0 2873417 14 9.720967 Anserini +test2126 Q0 11189623 15 9.680986 Anserini +test2126 Q0 8616300 16 9.670614 Anserini +test2126 Q0 452689 17 9.658911 Anserini +test2126 Q0 3705112 18 9.639574 Anserini +test2126 Q0 17144227 19 9.629699 Anserini +test2126 Q0 3012792 20 9.625241 Anserini +test2126 Q0 7178820 21 9.593000 Anserini +test2126 Q0 15175554 22 9.578483 Anserini +test2126 Q0 18082821 23 9.567838 Anserini +test2126 Q0 3847296 24 9.560714 Anserini +test2126 Q0 9658451 25 9.536141 Anserini +test2126 Q0 14453143 26 9.533812 Anserini +test2126 Q0 11640394 27 9.496505 Anserini +test2126 Q0 3646039 28 9.477351 Anserini +test2126 Q0 11189625 29 9.450919 Anserini +test2126 Q0 11189624 30 9.408034 Anserini +test2127 Q0 10763200 1 15.112349 Anserini +test2127 Q0 17270985 2 14.545122 Anserini +test2127 Q0 5392390 3 14.226557 Anserini +test2127 Q0 5411800 4 14.150806 Anserini +test2127 Q0 20279211 5 14.011120 Anserini +test2127 Q0 17270978 6 13.803735 Anserini +test2127 Q0 2952932 7 13.427611 Anserini +test2127 Q0 12539149 8 13.147727 Anserini +test2127 Q0 3926450 9 13.062688 Anserini +test2127 Q0 10728887 10 12.890666 Anserini +test2127 Q0 10728915 11 12.890666 Anserini +test2127 Q0 18859524 12 12.886223 Anserini +test2127 Q0 18285463 13 12.807153 Anserini +test2127 Q0 1377387 14 12.801724 Anserini +test2127 Q0 19586069 15 12.759427 Anserini +test2127 Q0 10560695 16 12.748932 Anserini +test2127 Q0 10560693 17 12.748932 Anserini +test2127 Q0 18285474 18 12.710629 Anserini +test2127 Q0 17454687 19 12.592646 Anserini +test2127 Q0 17454690 20 12.592646 Anserini +test2127 Q0 15192358 21 12.553178 Anserini +test2127 Q0 15192361 22 12.553178 Anserini +test2127 Q0 18581383 23 12.474170 Anserini +test2127 Q0 4332239 24 12.468044 Anserini +test2127 Q0 20255253 25 12.389287 Anserini +test2127 Q0 20255251 26 12.389287 Anserini +test2127 Q0 18581390 27 12.373069 Anserini +test2127 Q0 4332240 28 12.319393 Anserini +test2127 Q0 19694252 29 12.276340 Anserini +test2127 Q0 12071268 30 12.150240 Anserini +test2128 Q0 9671533 1 10.145869 Anserini +test2128 Q0 18709073 2 10.103114 Anserini +test2128 Q0 5618049 3 10.040202 Anserini +test2128 Q0 12829589 4 10.031380 Anserini +test2128 Q0 15046494 5 9.738474 Anserini +test2128 Q0 15046496 6 9.738474 Anserini +test2128 Q0 5544106 7 9.738474 Anserini +test2128 Q0 5331174 8 9.605701 Anserini +test2128 Q0 539478 9 9.475408 Anserini +test2128 Q0 9651940 10 9.362444 Anserini +test2128 Q0 16070430 11 9.350956 Anserini +test2128 Q0 7194277 12 9.331840 Anserini +test2128 Q0 18412051 13 9.331840 Anserini +test2128 Q0 4062966 14 9.317192 Anserini +test2128 Q0 2197740 15 9.313272 Anserini +test2128 Q0 804273 16 9.296429 Anserini +test2128 Q0 14860150 17 9.279490 Anserini +test2128 Q0 14146954 18 9.249128 Anserini +test2128 Q0 5289399 19 9.215720 Anserini +test2128 Q0 19316930 20 9.197500 Anserini +test2128 Q0 14146938 21 9.167930 Anserini +test2128 Q0 1833210 22 9.162942 Anserini +test2128 Q0 2615803 23 9.151242 Anserini +test2128 Q0 4540762 24 9.151242 Anserini +test2128 Q0 12159665 25 9.118723 Anserini +test2128 Q0 12159664 26 9.115510 Anserini +test2128 Q0 7256471 27 9.097312 Anserini +test2128 Q0 8865569 28 9.059020 Anserini +test2128 Q0 3279166 29 9.002149 Anserini +test2128 Q0 802436 30 8.998963 Anserini +test2129 Q0 262329 1 13.969410 Anserini +test2129 Q0 901305 2 13.707031 Anserini +test2129 Q0 8387550 3 13.648273 Anserini +test2129 Q0 5651173 4 13.307389 Anserini +test2129 Q0 19490814 5 13.247942 Anserini +test2129 Q0 3649765 6 12.773287 Anserini +test2129 Q0 6331231 7 11.955980 Anserini +test2129 Q0 15281315 8 11.955980 Anserini +test2129 Q0 9329441 9 11.918580 Anserini +test2129 Q0 19490813 10 11.902641 Anserini +test2129 Q0 10071098 11 11.802582 Anserini +test2129 Q0 13494270 12 11.801582 Anserini +test2129 Q0 10527808 13 11.440988 Anserini +test2129 Q0 576723 14 11.413206 Anserini +test2129 Q0 17279941 15 11.334122 Anserini +test2129 Q0 1394067 16 11.309048 Anserini +test2129 Q0 17211467 17 11.278538 Anserini +test2129 Q0 4442447 18 11.114830 Anserini +test2129 Q0 13217864 19 11.053616 Anserini +test2129 Q0 4499197 20 11.034981 Anserini +test2129 Q0 5732514 21 10.969383 Anserini +test2129 Q0 11047113 22 10.886589 Anserini +test2129 Q0 12212480 23 10.805194 Anserini +test2129 Q0 17273012 24 10.725160 Anserini +test2129 Q0 901312 25 10.592853 Anserini +test2129 Q0 5644077 26 10.502514 Anserini +test2129 Q0 160553 27 10.502514 Anserini +test2129 Q0 12212479 28 10.413773 Anserini +test2129 Q0 11388974 29 10.359550 Anserini +test2129 Q0 369471 30 10.359550 Anserini +test213 Q0 15715611 1 21.366043 Anserini +test213 Q0 15715602 2 20.021353 Anserini +test213 Q0 15445899 3 19.281591 Anserini +test213 Q0 15445910 4 19.281591 Anserini +test213 Q0 15715612 5 19.172550 Anserini +test213 Q0 4305875 6 18.892920 Anserini +test213 Q0 4305865 7 18.622429 Anserini +test213 Q0 15445906 8 17.065777 Anserini +test213 Q0 15715610 9 16.314051 Anserini +test213 Q0 4305868 10 15.883957 Anserini +test213 Q0 15445903 11 15.837175 Anserini +test213 Q0 15715604 12 15.746603 Anserini +test213 Q0 4305873 13 15.707981 Anserini +test213 Q0 15445901 14 15.271458 Anserini +test213 Q0 15715609 15 14.585991 Anserini +test213 Q0 4305871 16 14.530512 Anserini +test213 Q0 15445902 17 14.483775 Anserini +test213 Q0 15715607 18 14.468302 Anserini +test213 Q0 15445904 19 14.468302 Anserini +test213 Q0 15445908 20 14.408554 Anserini +test213 Q0 15715603 21 14.286886 Anserini +test213 Q0 15445905 22 14.286886 Anserini +test213 Q0 4305879 23 14.277775 Anserini +test213 Q0 15445900 24 14.270205 Anserini +test213 Q0 15715606 25 14.262875 Anserini +test213 Q0 15715605 26 14.136702 Anserini +test213 Q0 4305870 27 14.136702 Anserini +test213 Q0 4305866 28 14.012915 Anserini +test213 Q0 15445907 29 14.012915 Anserini +test213 Q0 15445909 30 13.679669 Anserini +test2130 Q0 1481383 1 21.173586 Anserini +test2130 Q0 10618081 2 19.392117 Anserini +test2130 Q0 1695157 3 18.425215 Anserini +test2130 Q0 7643578 4 18.164080 Anserini +test2130 Q0 6192707 5 18.083633 Anserini +test2130 Q0 4025681 6 17.775463 Anserini +test2130 Q0 18284537 7 17.693111 Anserini +test2130 Q0 381079 8 17.518488 Anserini +test2130 Q0 9088923 9 17.406879 Anserini +test2130 Q0 705266 10 17.347771 Anserini +test2130 Q0 6197298 11 17.271076 Anserini +test2130 Q0 2019785 12 17.098288 Anserini +test2130 Q0 705259 13 16.646587 Anserini +test2130 Q0 9341434 14 16.635748 Anserini +test2130 Q0 1962205 15 16.547148 Anserini +test2130 Q0 1481377 16 16.523710 Anserini +test2130 Q0 14628123 17 16.432932 Anserini +test2130 Q0 1481385 18 16.391836 Anserini +test2130 Q0 6188309 19 16.275330 Anserini +test2130 Q0 8448992 20 16.242012 Anserini +test2130 Q0 6188792 21 16.208235 Anserini +test2130 Q0 17405421 22 16.075512 Anserini +test2130 Q0 1695154 23 16.071775 Anserini +test2130 Q0 1481384 24 16.059061 Anserini +test2130 Q0 4086932 25 16.039600 Anserini +test2130 Q0 3243703 26 16.016930 Anserini +test2130 Q0 2938484 27 16.005913 Anserini +test2130 Q0 5708722 28 15.953396 Anserini +test2130 Q0 1481375 29 15.771189 Anserini +test2130 Q0 12609127 30 15.696948 Anserini +test2131 Q0 11028971 1 18.123152 Anserini +test2131 Q0 11028937 2 16.001371 Anserini +test2131 Q0 11028926 3 15.134541 Anserini +test2131 Q0 11028965 4 14.904936 Anserini +test2131 Q0 11028968 5 14.871936 Anserini +test2131 Q0 11028963 6 14.650716 Anserini +test2131 Q0 11028955 7 14.447477 Anserini +test2131 Q0 19548556 8 14.364668 Anserini +test2131 Q0 11028941 9 14.281361 Anserini +test2131 Q0 11028972 10 14.011529 Anserini +test2131 Q0 11028943 11 13.997131 Anserini +test2131 Q0 11905537 12 13.940210 Anserini +test2131 Q0 17056363 13 13.904899 Anserini +test2131 Q0 11028938 14 13.817033 Anserini +test2131 Q0 11028939 15 13.802593 Anserini +test2131 Q0 11936943 16 13.693716 Anserini +test2131 Q0 12488673 17 13.557700 Anserini +test2131 Q0 11936939 18 13.557700 Anserini +test2131 Q0 13367745 19 13.355379 Anserini +test2131 Q0 14606354 20 13.325278 Anserini +test2131 Q0 11028967 21 13.310549 Anserini +test2131 Q0 11028942 22 13.256571 Anserini +test2131 Q0 13367742 23 13.218087 Anserini +test2131 Q0 11028948 24 13.217155 Anserini +test2131 Q0 12488667 25 13.167046 Anserini +test2131 Q0 11028954 26 13.125847 Anserini +test2131 Q0 11028950 27 13.029828 Anserini +test2131 Q0 11028952 28 12.935238 Anserini +test2131 Q0 18691116 29 12.919166 Anserini +test2131 Q0 11028927 30 12.900353 Anserini +test2132 Q0 4725377 1 15.807008 Anserini +test2132 Q0 15879353 2 14.431414 Anserini +test2132 Q0 15879361 3 14.201537 Anserini +test2132 Q0 368647 4 13.832924 Anserini +test2132 Q0 8845857 5 13.823196 Anserini +test2132 Q0 15657504 6 13.634196 Anserini +test2132 Q0 368646 7 13.391731 Anserini +test2132 Q0 1064856 8 13.305694 Anserini +test2132 Q0 16339880 9 13.182518 Anserini +test2132 Q0 931084 10 13.096095 Anserini +test2132 Q0 1916898 11 13.033058 Anserini +test2132 Q0 525710 12 13.009752 Anserini +test2132 Q0 1463169 13 12.964126 Anserini +test2132 Q0 368643 14 12.927279 Anserini +test2132 Q0 14375499 15 12.909483 Anserini +test2132 Q0 931085 16 12.901469 Anserini +test2132 Q0 19043756 17 12.823687 Anserini +test2132 Q0 3705167 18 12.696481 Anserini +test2132 Q0 15005306 19 12.684956 Anserini +test2132 Q0 18579211 20 12.591198 Anserini +test2132 Q0 18563497 21 12.572074 Anserini +test2132 Q0 20510459 22 12.532237 Anserini +test2132 Q0 8618826 23 12.528690 Anserini +test2132 Q0 368645 24 12.510530 Anserini +test2132 Q0 10056636 25 12.488509 Anserini +test2132 Q0 15099403 26 12.435010 Anserini +test2132 Q0 20510454 27 12.384721 Anserini +test2132 Q0 2084615 28 12.369595 Anserini +test2132 Q0 8971380 29 12.366627 Anserini +test2132 Q0 13098 30 12.357315 Anserini +test2133 Q0 3789264 1 13.343699 Anserini +test2133 Q0 1581500 2 13.258281 Anserini +test2133 Q0 20916509 3 12.593354 Anserini +test2133 Q0 20883638 4 12.588348 Anserini +test2133 Q0 3470466 5 12.491834 Anserini +test2133 Q0 7029738 6 12.491834 Anserini +test2133 Q0 20653164 7 12.465827 Anserini +test2133 Q0 14274672 8 12.308115 Anserini +test2133 Q0 4185098 9 12.221731 Anserini +test2133 Q0 20653161 10 12.221731 Anserini +test2133 Q0 128211 11 11.849607 Anserini +test2133 Q0 570949 12 11.811560 Anserini +test2133 Q0 2717141 13 11.807179 Anserini +test2133 Q0 15254914 14 11.606970 Anserini +test2133 Q0 10548545 15 11.543143 Anserini +test2133 Q0 16560557 16 11.485795 Anserini +test2133 Q0 16858081 17 11.456297 Anserini +test2133 Q0 18196447 18 11.410964 Anserini +test2133 Q0 7378592 19 11.400414 Anserini +test2133 Q0 7378590 20 11.318541 Anserini +test2133 Q0 4661785 21 11.317265 Anserini +test2133 Q0 19303539 22 11.315530 Anserini +test2133 Q0 20632661 23 11.290930 Anserini +test2133 Q0 4245777 24 11.272701 Anserini +test2133 Q0 65125 25 11.268652 Anserini +test2133 Q0 20632660 26 11.176695 Anserini +test2133 Q0 17896974 27 11.176632 Anserini +test2133 Q0 15149939 28 11.176632 Anserini +test2133 Q0 3417362 29 11.113682 Anserini +test2133 Q0 8101881 30 11.091382 Anserini +test2134 Q0 661299 1 18.152449 Anserini +test2134 Q0 2576328 2 17.372755 Anserini +test2134 Q0 4612717 3 16.616947 Anserini +test2134 Q0 13560001 4 16.332340 Anserini +test2134 Q0 2350311 5 16.155224 Anserini +test2134 Q0 19549413 6 16.037287 Anserini +test2134 Q0 13124870 7 15.643703 Anserini +test2134 Q0 6050434 8 15.546986 Anserini +test2134 Q0 4046821 9 15.285885 Anserini +test2134 Q0 1525872 10 15.099699 Anserini +test2134 Q0 2576605 11 14.984176 Anserini +test2134 Q0 13000081 12 14.816730 Anserini +test2134 Q0 2576327 13 14.743119 Anserini +test2134 Q0 16357336 14 14.715653 Anserini +test2134 Q0 2051582 15 14.697620 Anserini +test2134 Q0 17906923 16 14.675640 Anserini +test2134 Q0 12623820 17 14.645602 Anserini +test2134 Q0 2576321 18 14.561116 Anserini +test2134 Q0 3926573 19 14.497346 Anserini +test2134 Q0 12297140 20 14.236870 Anserini +test2134 Q0 12199169 21 14.038857 Anserini +test2134 Q0 2051580 22 14.015885 Anserini +test2134 Q0 5650993 23 13.977368 Anserini +test2134 Q0 4109149 24 13.970544 Anserini +test2134 Q0 3531623 25 13.941362 Anserini +test2134 Q0 11172684 26 13.770874 Anserini +test2134 Q0 3926550 27 13.732506 Anserini +test2134 Q0 2576322 28 13.688211 Anserini +test2134 Q0 2437897 29 13.576648 Anserini +test2134 Q0 6059392 30 13.560146 Anserini +test2135 Q0 19135832 1 12.024246 Anserini +test2135 Q0 305575 2 12.003107 Anserini +test2135 Q0 19276614 3 11.727484 Anserini +test2135 Q0 9234021 4 11.541168 Anserini +test2135 Q0 9050259 5 11.356045 Anserini +test2135 Q0 9050262 6 11.092934 Anserini +test2135 Q0 9234022 7 11.064361 Anserini +test2135 Q0 2176577 8 11.044112 Anserini +test2135 Q0 11450238 9 11.031822 Anserini +test2135 Q0 8711504 10 10.991207 Anserini +test2135 Q0 20077195 11 10.991207 Anserini +test2135 Q0 20077179 12 10.868892 Anserini +test2135 Q0 17074617 13 10.835798 Anserini +test2135 Q0 17084760 14 10.835798 Anserini +test2135 Q0 305556 15 10.775735 Anserini +test2135 Q0 305573 16 10.747139 Anserini +test2135 Q0 7336116 17 10.743248 Anserini +test2135 Q0 305580 18 10.731944 Anserini +test2135 Q0 19796953 19 10.727006 Anserini +test2135 Q0 20077178 20 10.660711 Anserini +test2135 Q0 3372480 21 10.629661 Anserini +test2135 Q0 305574 22 10.609296 Anserini +test2135 Q0 18064200 23 10.609296 Anserini +test2135 Q0 20186127 24 10.567665 Anserini +test2135 Q0 20186121 25 10.557889 Anserini +test2135 Q0 305627 26 10.540682 Anserini +test2135 Q0 9936811 27 10.502776 Anserini +test2135 Q0 20077184 28 10.490132 Anserini +test2135 Q0 17084820 29 10.488779 Anserini +test2135 Q0 226106 30 10.480385 Anserini +test2136 Q0 9950829 1 18.006895 Anserini +test2136 Q0 7403945 2 17.883272 Anserini +test2136 Q0 14153136 3 16.406622 Anserini +test2136 Q0 2227207 4 15.837992 Anserini +test2136 Q0 895760 5 15.525231 Anserini +test2136 Q0 895820 6 15.525225 Anserini +test2136 Q0 8740843 7 15.273064 Anserini +test2136 Q0 7195795 8 15.178620 Anserini +test2136 Q0 14153165 9 15.129230 Anserini +test2136 Q0 2366752 10 15.108101 Anserini +test2136 Q0 2227214 11 15.108101 Anserini +test2136 Q0 11015038 12 15.031641 Anserini +test2136 Q0 7403962 13 14.996838 Anserini +test2136 Q0 8290511 14 14.995000 Anserini +test2136 Q0 2366769 15 14.963096 Anserini +test2136 Q0 7403947 16 14.827755 Anserini +test2136 Q0 14153141 17 14.816727 Anserini +test2136 Q0 6528865 18 14.740773 Anserini +test2136 Q0 18246331 19 14.604084 Anserini +test2136 Q0 2227208 20 14.519875 Anserini +test2136 Q0 6731107 21 14.510646 Anserini +test2136 Q0 9312411 22 14.482727 Anserini +test2136 Q0 2366757 23 14.474814 Anserini +test2136 Q0 1939321 24 14.340128 Anserini +test2136 Q0 14153179 25 14.277436 Anserini +test2136 Q0 895821 26 14.213051 Anserini +test2136 Q0 2366760 27 14.152706 Anserini +test2136 Q0 1803408 28 14.106611 Anserini +test2136 Q0 3744045 29 14.094887 Anserini +test2136 Q0 2366753 30 14.062722 Anserini +test2137 Q0 18385723 1 11.777098 Anserini +test2137 Q0 20005863 2 11.560159 Anserini +test2137 Q0 19877164 3 11.503327 Anserini +test2137 Q0 19877189 4 11.217053 Anserini +test2137 Q0 523914 5 11.050902 Anserini +test2137 Q0 19877153 6 10.788055 Anserini +test2137 Q0 20723307 7 10.697206 Anserini +test2137 Q0 18841715 8 10.671728 Anserini +test2137 Q0 15398459 9 10.596751 Anserini +test2137 Q0 21002673 10 10.588708 Anserini +test2137 Q0 3148836 11 10.536659 Anserini +test2137 Q0 18545355 12 10.484479 Anserini +test2137 Q0 19792366 13 10.419239 Anserini +test2137 Q0 18841714 14 10.406459 Anserini +test2137 Q0 17724417 15 10.361934 Anserini +test2137 Q0 7494171 16 10.298832 Anserini +test2137 Q0 20733158 17 10.234192 Anserini +test2137 Q0 13197354 18 10.219994 Anserini +test2137 Q0 9617790 19 10.200644 Anserini +test2137 Q0 19877173 20 10.145078 Anserini +test2137 Q0 20060234 21 10.064479 Anserini +test2137 Q0 5585527 22 10.021281 Anserini +test2137 Q0 5824132 23 10.007446 Anserini +test2137 Q0 20805504 24 9.990547 Anserini +test2137 Q0 19877168 25 9.981515 Anserini +test2137 Q0 20723301 26 9.981409 Anserini +test2137 Q0 20005874 27 9.981409 Anserini +test2137 Q0 15978307 28 9.965693 Anserini +test2137 Q0 20903447 29 9.941300 Anserini +test2137 Q0 20060224 30 9.932602 Anserini +test2138 Q0 895172 1 9.460588 Anserini +test2138 Q0 9013725 2 9.068383 Anserini +test2138 Q0 3602758 3 9.021699 Anserini +test2138 Q0 3426084 4 8.991961 Anserini +test2138 Q0 16205469 5 8.853936 Anserini +test2138 Q0 14203722 6 8.801414 Anserini +test2138 Q0 892155 7 8.763130 Anserini +test2138 Q0 3620152 8 8.756145 Anserini +test2138 Q0 16461664 9 8.721436 Anserini +test2138 Q0 12969226 10 8.721436 Anserini +test2138 Q0 7222988 11 8.668775 Anserini +test2138 Q0 6487308 12 8.654209 Anserini +test2138 Q0 19302077 13 8.635212 Anserini +test2138 Q0 15263222 14 8.621750 Anserini +test2138 Q0 4828425 15 8.618795 Anserini +test2138 Q0 13430121 16 8.566043 Anserini +test2138 Q0 11443120 17 8.553014 Anserini +test2138 Q0 5806870 18 8.548252 Anserini +test2138 Q0 11508159 19 8.531113 Anserini +test2138 Q0 17786812 20 8.507943 Anserini +test2138 Q0 7127015 21 8.494923 Anserini +test2138 Q0 2344556 22 8.463943 Anserini +test2138 Q0 8097054 23 8.460546 Anserini +test2138 Q0 3104192 24 8.460546 Anserini +test2138 Q0 17650662 25 8.431365 Anserini +test2138 Q0 14255906 26 8.424156 Anserini +test2138 Q0 867231 27 8.422994 Anserini +test2138 Q0 20913894 28 8.417424 Anserini +test2138 Q0 13210765 29 8.391259 Anserini +test2138 Q0 16589876 30 8.391259 Anserini +test2139 Q0 6183196 1 11.966377 Anserini +test2139 Q0 16033237 2 10.966351 Anserini +test2139 Q0 2366705 3 10.609711 Anserini +test2139 Q0 8783150 4 10.258868 Anserini +test2139 Q0 2361676 5 10.233064 Anserini +test2139 Q0 10403814 6 10.169287 Anserini +test2139 Q0 2366720 7 10.102945 Anserini +test2139 Q0 18124193 8 9.949350 Anserini +test2139 Q0 5843503 9 9.851765 Anserini +test2139 Q0 4196048 10 9.775740 Anserini +test2139 Q0 13795606 11 9.775740 Anserini +test2139 Q0 1160484 12 9.730965 Anserini +test2139 Q0 1194429 13 9.724677 Anserini +test2139 Q0 9604081 14 9.658249 Anserini +test2139 Q0 10864429 15 9.618785 Anserini +test2139 Q0 14883653 16 9.564492 Anserini +test2139 Q0 10388353 17 9.547350 Anserini +test2139 Q0 6183206 18 9.534256 Anserini +test2139 Q0 6673157 19 9.533326 Anserini +test2139 Q0 1194421 20 9.529263 Anserini +test2139 Q0 16033240 21 9.529263 Anserini +test2139 Q0 13999496 22 9.501293 Anserini +test2139 Q0 2768102 23 9.394295 Anserini +test2139 Q0 14883663 24 9.347618 Anserini +test2139 Q0 8594396 25 9.299370 Anserini +test2139 Q0 13416064 26 9.239376 Anserini +test2139 Q0 14883647 27 9.200915 Anserini +test2139 Q0 11540755 28 9.200915 Anserini +test2139 Q0 6162447 29 9.200915 Anserini +test2139 Q0 8594391 30 9.156515 Anserini +test214 Q0 6391967 1 16.035677 Anserini +test214 Q0 11098384 2 14.083379 Anserini +test214 Q0 3930533 3 13.910228 Anserini +test214 Q0 12483557 4 12.833991 Anserini +test214 Q0 6894033 5 12.806894 Anserini +test214 Q0 16703402 6 12.638054 Anserini +test214 Q0 17152923 7 12.461900 Anserini +test214 Q0 8002157 8 12.322187 Anserini +test214 Q0 5706544 9 12.306256 Anserini +test214 Q0 959164 10 12.223444 Anserini +test214 Q0 20527333 11 12.133598 Anserini +test214 Q0 282294 12 12.059649 Anserini +test214 Q0 7315143 13 11.929407 Anserini +test214 Q0 3530442 14 11.820365 Anserini +test214 Q0 19494560 15 11.729239 Anserini +test214 Q0 11181864 16 11.728909 Anserini +test214 Q0 15885921 17 11.715539 Anserini +test214 Q0 3305382 18 11.662556 Anserini +test214 Q0 15936813 19 11.565031 Anserini +test214 Q0 10636671 20 11.512756 Anserini +test214 Q0 16705747 21 11.438233 Anserini +test214 Q0 16974507 22 11.417079 Anserini +test214 Q0 11903279 23 11.401287 Anserini +test214 Q0 571654 24 11.390170 Anserini +test214 Q0 18419693 25 11.369432 Anserini +test214 Q0 17478656 26 11.363734 Anserini +test214 Q0 9709245 27 11.349860 Anserini +test214 Q0 8571277 28 11.340115 Anserini +test214 Q0 10111692 29 11.285190 Anserini +test214 Q0 17912991 30 11.259026 Anserini +test2140 Q0 10885331 1 17.044649 Anserini +test2140 Q0 20035434 2 15.728476 Anserini +test2140 Q0 18666392 3 14.975509 Anserini +test2140 Q0 20207365 4 14.973306 Anserini +test2140 Q0 7682285 5 14.938773 Anserini +test2140 Q0 3696056 6 14.896853 Anserini +test2140 Q0 3318502 7 14.740141 Anserini +test2140 Q0 20207367 8 14.662199 Anserini +test2140 Q0 12441979 9 14.655325 Anserini +test2140 Q0 19912117 10 14.559505 Anserini +test2140 Q0 19919867 11 14.397270 Anserini +test2140 Q0 2454051 12 14.381579 Anserini +test2140 Q0 13736916 13 14.373705 Anserini +test2140 Q0 9048157 14 14.313381 Anserini +test2140 Q0 11116570 15 14.247246 Anserini +test2140 Q0 19938653 16 14.247025 Anserini +test2140 Q0 8679757 17 14.219331 Anserini +test2140 Q0 19761562 18 14.158561 Anserini +test2140 Q0 15358244 19 14.135639 Anserini +test2140 Q0 14384758 20 14.056005 Anserini +test2140 Q0 15761730 21 14.053402 Anserini +test2140 Q0 19909779 22 14.020978 Anserini +test2140 Q0 19099787 23 14.007595 Anserini +test2140 Q0 4945247 24 14.005513 Anserini +test2140 Q0 8969045 25 13.986877 Anserini +test2140 Q0 4704119 26 13.945458 Anserini +test2140 Q0 12857492 27 13.915643 Anserini +test2140 Q0 10302643 28 13.832352 Anserini +test2140 Q0 19221765 29 13.829701 Anserini +test2140 Q0 11119001 30 13.825296 Anserini +test2141 Q0 11330518 1 14.738422 Anserini +test2141 Q0 4151683 2 12.363831 Anserini +test2141 Q0 14147448 3 12.175257 Anserini +test2141 Q0 4151713 4 12.129688 Anserini +test2141 Q0 12787791 5 11.863104 Anserini +test2141 Q0 12787799 6 11.739601 Anserini +test2141 Q0 15577735 7 11.729169 Anserini +test2141 Q0 7764454 8 11.669605 Anserini +test2141 Q0 13741925 9 11.590948 Anserini +test2141 Q0 16638947 10 11.519605 Anserini +test2141 Q0 7764456 11 11.415147 Anserini +test2141 Q0 19380226 12 11.368356 Anserini +test2141 Q0 16902205 13 11.345964 Anserini +test2141 Q0 7473418 14 11.306344 Anserini +test2141 Q0 8757655 15 11.305918 Anserini +test2141 Q0 16634012 16 11.293107 Anserini +test2141 Q0 14147451 17 11.220890 Anserini +test2141 Q0 6425538 18 11.168400 Anserini +test2141 Q0 10746205 19 11.124388 Anserini +test2141 Q0 5428267 20 11.036796 Anserini +test2141 Q0 14147449 21 11.015598 Anserini +test2141 Q0 1832602 22 11.006653 Anserini +test2141 Q0 2786302 23 10.999306 Anserini +test2141 Q0 809128 24 10.988237 Anserini +test2141 Q0 923703 25 10.981476 Anserini +test2141 Q0 4151687 26 10.958019 Anserini +test2141 Q0 7316393 27 10.929028 Anserini +test2141 Q0 874316 28 10.928708 Anserini +test2141 Q0 17671087 29 10.896949 Anserini +test2141 Q0 845902 30 10.845857 Anserini +test2142 Q0 13352588 1 9.988550 Anserini +test2142 Q0 4735664 2 9.370843 Anserini +test2142 Q0 3723887 3 9.250680 Anserini +test2142 Q0 912396 4 8.892829 Anserini +test2142 Q0 3632128 5 8.853897 Anserini +test2142 Q0 17920275 6 8.797551 Anserini +test2142 Q0 9181161 7 8.740695 Anserini +test2142 Q0 15810693 8 8.689407 Anserini +test2142 Q0 15810703 9 8.689407 Anserini +test2142 Q0 12047660 10 8.680958 Anserini +test2142 Q0 10146648 11 8.628965 Anserini +test2142 Q0 9181162 12 8.628965 Anserini +test2142 Q0 1767215 13 8.628965 Anserini +test2142 Q0 15345442 14 8.591224 Anserini +test2142 Q0 18753945 15 8.591224 Anserini +test2142 Q0 16170196 16 8.565709 Anserini +test2142 Q0 4760889 17 8.504670 Anserini +test2142 Q0 5536575 18 8.503345 Anserini +test2142 Q0 2343533 19 8.499821 Anserini +test2142 Q0 5470359 20 8.490196 Anserini +test2142 Q0 8856090 21 8.470806 Anserini +test2142 Q0 8507201 22 8.470806 Anserini +test2142 Q0 10706242 23 8.459543 Anserini +test2142 Q0 6908120 24 8.446383 Anserini +test2142 Q0 11520593 25 8.422279 Anserini +test2142 Q0 9740326 26 8.416061 Anserini +test2142 Q0 11713894 27 8.411274 Anserini +test2142 Q0 18650323 28 8.397063 Anserini +test2142 Q0 2588580 29 8.377742 Anserini +test2142 Q0 12825341 30 8.316359 Anserini +test2143 Q0 11904865 1 17.355389 Anserini +test2143 Q0 569171 2 17.184719 Anserini +test2143 Q0 9502565 3 16.905720 Anserini +test2143 Q0 569208 4 16.022827 Anserini +test2143 Q0 569193 5 15.880682 Anserini +test2143 Q0 11776717 6 15.880682 Anserini +test2143 Q0 569192 7 15.614322 Anserini +test2143 Q0 15704302 8 15.496614 Anserini +test2143 Q0 15704305 9 15.276195 Anserini +test2143 Q0 5189203 10 15.240198 Anserini +test2143 Q0 12858083 11 15.240198 Anserini +test2143 Q0 17409935 12 15.196823 Anserini +test2143 Q0 16036173 13 14.086942 Anserini +test2143 Q0 1543088 14 14.002241 Anserini +test2143 Q0 11924984 15 13.934103 Anserini +test2143 Q0 18108090 16 13.845811 Anserini +test2143 Q0 15545244 17 13.534368 Anserini +test2143 Q0 19812205 18 13.519737 Anserini +test2143 Q0 6968041 19 13.509812 Anserini +test2143 Q0 11764586 20 13.360089 Anserini +test2143 Q0 569213 21 13.184859 Anserini +test2143 Q0 569187 22 13.095760 Anserini +test2143 Q0 3943713 23 13.026266 Anserini +test2143 Q0 16036174 24 13.008765 Anserini +test2143 Q0 16036160 25 13.008765 Anserini +test2143 Q0 14273147 26 12.843822 Anserini +test2143 Q0 8028063 27 12.662174 Anserini +test2143 Q0 14199116 28 12.559499 Anserini +test2143 Q0 6486630 29 12.542203 Anserini +test2143 Q0 9426664 30 12.542203 Anserini +test2144 Q0 20991681 1 13.729089 Anserini +test2144 Q0 6863434 2 13.546364 Anserini +test2144 Q0 9954537 3 13.361477 Anserini +test2144 Q0 12130553 4 13.211564 Anserini +test2144 Q0 12130554 5 13.196913 Anserini +test2144 Q0 6863448 6 13.154072 Anserini +test2144 Q0 3344381 7 13.080024 Anserini +test2144 Q0 6863441 8 12.991971 Anserini +test2144 Q0 1991756 9 12.765654 Anserini +test2144 Q0 5536962 10 12.758793 Anserini +test2144 Q0 9954535 11 12.704402 Anserini +test2144 Q0 3344383 12 12.661623 Anserini +test2144 Q0 5536961 13 12.661623 Anserini +test2144 Q0 16598959 14 12.551580 Anserini +test2144 Q0 756107 15 12.462095 Anserini +test2144 Q0 1991747 16 12.340901 Anserini +test2144 Q0 1991739 17 12.268405 Anserini +test2144 Q0 17466296 18 12.204880 Anserini +test2144 Q0 6863447 19 12.124240 Anserini +test2144 Q0 1991741 20 12.123217 Anserini +test2144 Q0 6863442 21 12.085909 Anserini +test2144 Q0 6863439 22 12.078493 Anserini +test2144 Q0 5979869 23 12.075023 Anserini +test2144 Q0 6133314 24 12.064177 Anserini +test2144 Q0 6863446 25 12.054216 Anserini +test2144 Q0 6863436 26 12.045866 Anserini +test2144 Q0 6863646 27 11.920795 Anserini +test2144 Q0 6133313 28 11.918177 Anserini +test2144 Q0 6863437 29 11.893623 Anserini +test2144 Q0 107360 30 11.689772 Anserini +test2145 Q0 19017166 1 11.872009 Anserini +test2145 Q0 18714682 2 10.835056 Anserini +test2145 Q0 19017167 3 10.674412 Anserini +test2145 Q0 17742830 4 10.410222 Anserini +test2145 Q0 13887600 5 10.068817 Anserini +test2145 Q0 12345393 6 10.057885 Anserini +test2145 Q0 7866021 7 9.381389 Anserini +test2145 Q0 10754398 8 9.277691 Anserini +test2145 Q0 10255843 9 9.235745 Anserini +test2145 Q0 19316959 10 9.190100 Anserini +test2145 Q0 510166 11 9.130437 Anserini +test2145 Q0 13275807 12 9.104205 Anserini +test2145 Q0 6583031 13 9.104049 Anserini +test2145 Q0 12469774 14 9.023181 Anserini +test2145 Q0 20477054 15 8.987620 Anserini +test2145 Q0 8843940 16 8.976251 Anserini +test2145 Q0 10145992 17 8.885820 Anserini +test2145 Q0 1354126 18 8.852402 Anserini +test2145 Q0 8643189 19 8.799222 Anserini +test2145 Q0 18882759 20 8.799222 Anserini +test2145 Q0 18882774 21 8.799222 Anserini +test2145 Q0 3215496 22 8.799222 Anserini +test2145 Q0 15423793 23 8.799222 Anserini +test2145 Q0 10146000 24 8.799222 Anserini +test2145 Q0 14325470 25 8.786084 Anserini +test2145 Q0 6914300 26 8.754879 Anserini +test2145 Q0 4819071 27 8.749252 Anserini +test2145 Q0 17657052 28 8.749252 Anserini +test2145 Q0 15665911 29 8.749252 Anserini +test2145 Q0 2160059 30 8.739806 Anserini +test2146 Q0 4864957 1 14.712940 Anserini +test2146 Q0 4864964 2 14.644279 Anserini +test2146 Q0 18235693 3 14.092268 Anserini +test2146 Q0 13735669 4 13.591524 Anserini +test2146 Q0 11279734 5 13.429236 Anserini +test2146 Q0 3551094 6 12.381100 Anserini +test2146 Q0 19447006 7 12.266405 Anserini +test2146 Q0 5320111 8 12.254172 Anserini +test2146 Q0 3111543 9 12.163203 Anserini +test2146 Q0 7534863 10 12.023254 Anserini +test2146 Q0 9985758 11 11.964200 Anserini +test2146 Q0 5060544 12 11.899338 Anserini +test2146 Q0 1674931 13 11.896803 Anserini +test2146 Q0 3811948 14 11.741251 Anserini +test2146 Q0 18650306 15 11.684392 Anserini +test2146 Q0 1674945 16 11.679531 Anserini +test2146 Q0 10860736 17 11.585167 Anserini +test2146 Q0 18155027 18 11.499059 Anserini +test2146 Q0 8998368 19 11.477184 Anserini +test2146 Q0 13084914 20 11.423820 Anserini +test2146 Q0 6010373 21 11.406885 Anserini +test2146 Q0 1626386 22 11.384826 Anserini +test2146 Q0 14096323 23 11.377917 Anserini +test2146 Q0 8998367 24 11.340455 Anserini +test2146 Q0 4289477 25 11.301445 Anserini +test2146 Q0 3535629 26 11.257542 Anserini +test2146 Q0 16042673 27 11.257542 Anserini +test2146 Q0 15938538 28 11.224911 Anserini +test2146 Q0 8723089 29 11.204084 Anserini +test2146 Q0 12044980 30 11.156035 Anserini +test2147 Q0 6460502 1 15.764990 Anserini +test2147 Q0 3012332 2 14.807035 Anserini +test2147 Q0 6190759 3 14.394162 Anserini +test2147 Q0 14496270 4 13.520026 Anserini +test2147 Q0 17709237 5 13.327890 Anserini +test2147 Q0 8559476 6 13.081040 Anserini +test2147 Q0 6875614 7 13.068650 Anserini +test2147 Q0 6460501 8 12.958115 Anserini +test2147 Q0 20586759 9 12.828384 Anserini +test2147 Q0 3632473 10 12.801311 Anserini +test2147 Q0 3169460 11 12.568853 Anserini +test2147 Q0 17530607 12 12.552686 Anserini +test2147 Q0 9355714 13 12.294266 Anserini +test2147 Q0 5816583 14 12.286183 Anserini +test2147 Q0 4366339 15 12.233250 Anserini +test2147 Q0 13703248 16 12.226132 Anserini +test2147 Q0 7321650 17 12.202443 Anserini +test2147 Q0 11061636 18 12.138383 Anserini +test2147 Q0 17530608 19 12.134950 Anserini +test2147 Q0 19662832 20 12.114432 Anserini +test2147 Q0 10650029 21 12.096938 Anserini +test2147 Q0 9926212 22 12.092102 Anserini +test2147 Q0 14613127 23 12.092102 Anserini +test2147 Q0 11109986 24 12.090836 Anserini +test2147 Q0 8387099 25 12.072990 Anserini +test2147 Q0 12932668 26 12.068216 Anserini +test2147 Q0 12584844 27 12.032125 Anserini +test2147 Q0 5469281 28 11.979741 Anserini +test2147 Q0 9926211 29 11.963884 Anserini +test2147 Q0 14613129 30 11.963444 Anserini +test2148 Q0 966784 1 15.240134 Anserini +test2148 Q0 17653112 2 14.189261 Anserini +test2148 Q0 12726493 3 14.181338 Anserini +test2148 Q0 17653113 4 13.814104 Anserini +test2148 Q0 5675634 5 13.788936 Anserini +test2148 Q0 3107764 6 13.567881 Anserini +test2148 Q0 3107765 7 13.530122 Anserini +test2148 Q0 7503531 8 13.405129 Anserini +test2148 Q0 2647292 9 13.399626 Anserini +test2148 Q0 3107771 10 13.353726 Anserini +test2148 Q0 17822760 11 13.339468 Anserini +test2148 Q0 966790 12 13.307165 Anserini +test2148 Q0 19466066 13 13.237376 Anserini +test2148 Q0 5390697 14 12.985153 Anserini +test2148 Q0 13861825 15 12.916236 Anserini +test2148 Q0 12021711 16 12.902005 Anserini +test2148 Q0 3107767 17 12.855010 Anserini +test2148 Q0 2993365 18 12.844409 Anserini +test2148 Q0 787789 19 12.801682 Anserini +test2148 Q0 7543609 20 12.773681 Anserini +test2148 Q0 4100436 21 12.664411 Anserini +test2148 Q0 16447037 22 12.646945 Anserini +test2148 Q0 966786 23 12.631077 Anserini +test2148 Q0 16445166 24 12.618702 Anserini +test2148 Q0 17158861 25 12.512331 Anserini +test2148 Q0 10179678 26 12.486044 Anserini +test2148 Q0 966793 27 12.406105 Anserini +test2148 Q0 3283781 28 12.320712 Anserini +test2148 Q0 5005570 29 12.267059 Anserini +test2148 Q0 3036938 30 12.199151 Anserini +test2149 Q0 7189481 1 10.827730 Anserini +test2149 Q0 7189475 2 10.389978 Anserini +test2149 Q0 2943709 3 10.201393 Anserini +test2149 Q0 7189476 4 9.706235 Anserini +test2149 Q0 8842244 5 9.391260 Anserini +test2149 Q0 7189479 6 9.380792 Anserini +test2149 Q0 9004993 7 9.339287 Anserini +test2149 Q0 15500400 8 9.315084 Anserini +test2149 Q0 7187387 9 9.175038 Anserini +test2149 Q0 662445 10 9.161251 Anserini +test2149 Q0 20738519 11 9.071642 Anserini +test2149 Q0 20293377 12 9.065318 Anserini +test2149 Q0 7611652 13 9.024083 Anserini +test2149 Q0 7189480 14 9.018503 Anserini +test2149 Q0 13298576 15 8.936238 Anserini +test2149 Q0 1449389 16 8.897640 Anserini +test2149 Q0 19117585 17 8.897221 Anserini +test2149 Q0 11943123 18 8.865804 Anserini +test2149 Q0 808442 19 8.846388 Anserini +test2149 Q0 20751057 20 8.830354 Anserini +test2149 Q0 13920109 21 8.824927 Anserini +test2149 Q0 6974503 22 8.728570 Anserini +test2149 Q0 17224223 23 8.716699 Anserini +test2149 Q0 4980536 24 8.669407 Anserini +test2149 Q0 12396246 25 8.668043 Anserini +test2149 Q0 1853512 26 8.665203 Anserini +test2149 Q0 18953682 27 8.652061 Anserini +test2149 Q0 12867091 28 8.644514 Anserini +test2149 Q0 15380335 29 8.630274 Anserini +test2149 Q0 7611654 30 8.595445 Anserini +test215 Q0 10556544 1 17.443979 Anserini +test215 Q0 19035197 2 14.845736 Anserini +test215 Q0 15047035 3 14.632972 Anserini +test215 Q0 5002651 4 14.600526 Anserini +test215 Q0 18008339 5 14.073003 Anserini +test215 Q0 20003323 6 13.449297 Anserini +test215 Q0 17033874 7 13.392571 Anserini +test215 Q0 10556545 8 13.104810 Anserini +test215 Q0 17194401 9 13.054166 Anserini +test215 Q0 6104515 10 12.988706 Anserini +test215 Q0 6662566 11 12.983582 Anserini +test215 Q0 8283148 12 12.946200 Anserini +test215 Q0 7384701 13 12.884958 Anserini +test215 Q0 19968320 14 12.832173 Anserini +test215 Q0 12524834 15 12.806300 Anserini +test215 Q0 8532668 16 12.546623 Anserini +test215 Q0 9693817 17 12.506024 Anserini +test215 Q0 7891616 18 12.496813 Anserini +test215 Q0 772744 19 12.482275 Anserini +test215 Q0 8975184 20 12.474325 Anserini +test215 Q0 15023324 21 12.443749 Anserini +test215 Q0 16753640 22 12.418589 Anserini +test215 Q0 9120495 23 12.373637 Anserini +test215 Q0 7237324 24 12.265963 Anserini +test215 Q0 537446 25 12.265854 Anserini +test215 Q0 7891615 26 12.231797 Anserini +test215 Q0 18012842 27 12.213140 Anserini +test215 Q0 1275759 28 12.134373 Anserini +test215 Q0 8975182 29 12.126951 Anserini +test215 Q0 18126593 30 12.119043 Anserini +test2150 Q0 2559001 1 13.812510 Anserini +test2150 Q0 2902471 2 13.437099 Anserini +test2150 Q0 1667779 3 13.249255 Anserini +test2150 Q0 1667747 4 13.178547 Anserini +test2150 Q0 2902472 5 13.083396 Anserini +test2150 Q0 1201716 6 12.992395 Anserini +test2150 Q0 5032460 7 12.952779 Anserini +test2150 Q0 2558991 8 12.941488 Anserini +test2150 Q0 154839 9 12.877931 Anserini +test2150 Q0 1667778 10 12.870924 Anserini +test2150 Q0 1202126 11 12.551855 Anserini +test2150 Q0 1202143 12 12.551855 Anserini +test2150 Q0 13074 13 12.319403 Anserini +test2150 Q0 2232382 14 12.314481 Anserini +test2150 Q0 9502420 15 12.299368 Anserini +test2150 Q0 9502426 16 12.299368 Anserini +test2150 Q0 2811764 17 12.249616 Anserini +test2150 Q0 4100814 18 12.244657 Anserini +test2150 Q0 10048227 19 12.225694 Anserini +test2150 Q0 13073 20 12.189212 Anserini +test2150 Q0 523009 21 12.180532 Anserini +test2150 Q0 86607 22 11.951910 Anserini +test2150 Q0 5259810 23 11.901896 Anserini +test2150 Q0 1201714 24 11.897823 Anserini +test2150 Q0 154842 25 11.877721 Anserini +test2150 Q0 590039 26 11.855152 Anserini +test2150 Q0 2360268 27 11.828187 Anserini +test2150 Q0 11806201 28 11.821907 Anserini +test2150 Q0 6394256 29 11.708192 Anserini +test2150 Q0 12680067 30 11.668800 Anserini +test2151 Q0 8879254 1 16.839739 Anserini +test2151 Q0 6048132 2 15.667830 Anserini +test2151 Q0 16540560 3 15.620312 Anserini +test2151 Q0 8879256 4 15.494224 Anserini +test2151 Q0 18497077 5 15.401608 Anserini +test2151 Q0 12572215 6 15.377234 Anserini +test2151 Q0 6048130 7 15.074947 Anserini +test2151 Q0 8879260 8 15.000818 Anserini +test2151 Q0 19367562 9 14.979430 Anserini +test2151 Q0 17834236 10 14.971013 Anserini +test2151 Q0 19348516 11 14.939834 Anserini +test2151 Q0 6048134 12 14.879344 Anserini +test2151 Q0 19367561 13 14.834702 Anserini +test2151 Q0 7580984 14 14.785949 Anserini +test2151 Q0 16262598 15 14.755840 Anserini +test2151 Q0 18671009 16 14.678928 Anserini +test2151 Q0 19348519 17 14.619440 Anserini +test2151 Q0 17688836 18 14.609479 Anserini +test2151 Q0 15637067 19 14.377307 Anserini +test2151 Q0 14759945 20 14.247206 Anserini +test2151 Q0 8273204 21 14.228334 Anserini +test2151 Q0 16540561 22 14.209736 Anserini +test2151 Q0 18790625 23 14.184631 Anserini +test2151 Q0 16540562 24 14.135363 Anserini +test2151 Q0 16540563 25 14.135363 Anserini +test2151 Q0 19348525 26 14.135363 Anserini +test2151 Q0 8879252 27 14.135363 Anserini +test2151 Q0 16540557 28 14.107195 Anserini +test2151 Q0 16540552 29 14.063238 Anserini +test2151 Q0 17668739 30 14.063238 Anserini +test2152 Q0 9740662 1 17.118792 Anserini +test2152 Q0 4700296 2 17.074406 Anserini +test2152 Q0 3036072 3 16.575941 Anserini +test2152 Q0 4700297 4 16.437908 Anserini +test2152 Q0 39272 5 16.374664 Anserini +test2152 Q0 4262862 6 15.090883 Anserini +test2152 Q0 4262867 7 15.080814 Anserini +test2152 Q0 3036087 8 14.841508 Anserini +test2152 Q0 9375105 9 14.668065 Anserini +test2152 Q0 12654653 10 14.590591 Anserini +test2152 Q0 12551512 11 14.575457 Anserini +test2152 Q0 2542718 12 14.514367 Anserini +test2152 Q0 3036073 13 14.474136 Anserini +test2152 Q0 9894906 14 14.318769 Anserini +test2152 Q0 39274 15 14.313728 Anserini +test2152 Q0 4262865 16 14.300911 Anserini +test2152 Q0 18987633 17 14.264207 Anserini +test2152 Q0 122512 18 14.254828 Anserini +test2152 Q0 10781853 19 14.184182 Anserini +test2152 Q0 1494023 20 14.176276 Anserini +test2152 Q0 9833065 21 14.174448 Anserini +test2152 Q0 10352815 22 14.026541 Anserini +test2152 Q0 9894907 23 14.022483 Anserini +test2152 Q0 4262866 24 13.994989 Anserini +test2152 Q0 3036064 25 13.880680 Anserini +test2152 Q0 8380920 26 13.873923 Anserini +test2152 Q0 9600499 27 13.848204 Anserini +test2152 Q0 2545095 28 13.844124 Anserini +test2152 Q0 3036080 29 13.826026 Anserini +test2152 Q0 15362304 30 13.785492 Anserini +test2153 Q0 8572698 1 26.024338 Anserini +test2153 Q0 7874326 2 25.879444 Anserini +test2153 Q0 7874338 3 25.368137 Anserini +test2153 Q0 7874330 4 25.121572 Anserini +test2153 Q0 7874331 5 25.079912 Anserini +test2153 Q0 18251245 6 24.858498 Anserini +test2153 Q0 5698986 7 24.858498 Anserini +test2153 Q0 7874327 8 24.661692 Anserini +test2153 Q0 1419417 9 24.294348 Anserini +test2153 Q0 10941216 10 23.890570 Anserini +test2153 Q0 7874336 11 23.726929 Anserini +test2153 Q0 7874339 12 23.726929 Anserini +test2153 Q0 12358968 13 23.333437 Anserini +test2153 Q0 16610512 14 23.333437 Anserini +test2153 Q0 7874335 15 23.191010 Anserini +test2153 Q0 18610440 16 23.112238 Anserini +test2153 Q0 7874337 17 23.017845 Anserini +test2153 Q0 17635044 18 22.839987 Anserini +test2153 Q0 15530559 19 22.666742 Anserini +test2153 Q0 15530564 20 22.666742 Anserini +test2153 Q0 7874332 21 22.284315 Anserini +test2153 Q0 17635052 22 22.284315 Anserini +test2153 Q0 12287164 23 22.284315 Anserini +test2153 Q0 18251235 24 22.178333 Anserini +test2153 Q0 18251244 25 22.178333 Anserini +test2153 Q0 6873224 26 22.151505 Anserini +test2153 Q0 18234048 27 21.597080 Anserini +test2153 Q0 3572757 28 21.466015 Anserini +test2153 Q0 3559043 29 21.462769 Anserini +test2153 Q0 8785759 30 21.403931 Anserini +test2154 Q0 1797409 1 16.142061 Anserini +test2154 Q0 1741994 2 15.648819 Anserini +test2154 Q0 239951 3 15.630661 Anserini +test2154 Q0 15399747 4 15.626591 Anserini +test2154 Q0 17414958 5 15.559541 Anserini +test2154 Q0 17414963 6 15.559541 Anserini +test2154 Q0 1451826 7 15.515821 Anserini +test2154 Q0 1258373 8 15.448701 Anserini +test2154 Q0 3866403 9 15.436063 Anserini +test2154 Q0 7000318 10 15.382259 Anserini +test2154 Q0 241872 11 15.352352 Anserini +test2154 Q0 4059490 12 15.331551 Anserini +test2154 Q0 12196968 13 15.310145 Anserini +test2154 Q0 16056382 14 15.236015 Anserini +test2154 Q0 7442822 15 15.223001 Anserini +test2154 Q0 7442825 16 15.223001 Anserini +test2154 Q0 7983818 17 15.166810 Anserini +test2154 Q0 5992459 18 15.158237 Anserini +test2154 Q0 3713223 19 15.112599 Anserini +test2154 Q0 17005014 20 14.967419 Anserini +test2154 Q0 1267327 21 14.955298 Anserini +test2154 Q0 9931278 22 14.924213 Anserini +test2154 Q0 1067403 23 14.894907 Anserini +test2154 Q0 10273632 24 14.894484 Anserini +test2154 Q0 2378953 25 14.889811 Anserini +test2154 Q0 6166656 26 14.878540 Anserini +test2154 Q0 20866901 27 14.866515 Anserini +test2154 Q0 999947 28 14.717615 Anserini +test2154 Q0 7906677 29 14.709565 Anserini +test2154 Q0 2632820 30 14.701520 Anserini +test2155 Q0 741675 1 14.904860 Anserini +test2155 Q0 16638485 2 14.132326 Anserini +test2155 Q0 6862725 3 13.765009 Anserini +test2155 Q0 327682 4 13.653255 Anserini +test2155 Q0 3377221 5 13.516094 Anserini +test2155 Q0 824606 6 13.464684 Anserini +test2155 Q0 327672 7 13.446019 Anserini +test2155 Q0 2445756 8 13.382656 Anserini +test2155 Q0 741634 9 13.380179 Anserini +test2155 Q0 327670 10 13.310632 Anserini +test2155 Q0 3469132 11 13.118843 Anserini +test2155 Q0 3066020 12 13.079442 Anserini +test2155 Q0 2370826 13 12.996906 Anserini +test2155 Q0 1878272 14 12.949175 Anserini +test2155 Q0 16638483 15 12.882776 Anserini +test2155 Q0 3293666 16 12.831246 Anserini +test2155 Q0 3058268 17 12.776470 Anserini +test2155 Q0 3058269 18 12.776470 Anserini +test2155 Q0 180472 19 12.771791 Anserini +test2155 Q0 2370833 20 12.726616 Anserini +test2155 Q0 731947 21 12.692315 Anserini +test2155 Q0 3482230 22 12.657969 Anserini +test2155 Q0 322267 23 12.656784 Anserini +test2155 Q0 3066016 24 12.607347 Anserini +test2155 Q0 10482280 25 12.546742 Anserini +test2155 Q0 2281563 26 12.518120 Anserini +test2155 Q0 2782523 27 12.515271 Anserini +test2155 Q0 2370827 28 12.500000 Anserini +test2155 Q0 20548326 29 12.479774 Anserini +test2155 Q0 2336223 30 12.446697 Anserini +test2156 Q0 9317180 1 15.095755 Anserini +test2156 Q0 623612 2 13.410591 Anserini +test2156 Q0 3115843 3 13.339167 Anserini +test2156 Q0 3115860 4 13.233562 Anserini +test2156 Q0 3115857 5 12.732751 Anserini +test2156 Q0 16249954 6 12.497679 Anserini +test2156 Q0 7440955 7 12.392985 Anserini +test2156 Q0 19128500 8 11.933082 Anserini +test2156 Q0 2820466 9 11.874017 Anserini +test2156 Q0 3115852 10 11.717579 Anserini +test2156 Q0 2582221 11 11.455161 Anserini +test2156 Q0 3115844 12 11.360832 Anserini +test2156 Q0 3115848 13 11.317416 Anserini +test2156 Q0 720265 14 11.290353 Anserini +test2156 Q0 3115859 15 11.250794 Anserini +test2156 Q0 2203959 16 11.234230 Anserini +test2156 Q0 19128504 17 11.231998 Anserini +test2156 Q0 12156766 18 11.231296 Anserini +test2156 Q0 18413133 19 11.165611 Anserini +test2156 Q0 6783916 20 10.806700 Anserini +test2156 Q0 18413132 21 10.788641 Anserini +test2156 Q0 19128503 22 10.785616 Anserini +test2156 Q0 6991946 23 10.711884 Anserini +test2156 Q0 8260163 24 10.694121 Anserini +test2156 Q0 6920215 25 10.694121 Anserini +test2156 Q0 3115856 26 10.649998 Anserini +test2156 Q0 17747297 27 10.637006 Anserini +test2156 Q0 3115851 28 10.620985 Anserini +test2156 Q0 12011097 29 10.452353 Anserini +test2156 Q0 12011104 30 10.452353 Anserini +test2157 Q0 18761850 1 13.901268 Anserini +test2157 Q0 10235326 2 13.863433 Anserini +test2157 Q0 10235329 3 13.863433 Anserini +test2157 Q0 7261401 4 13.745278 Anserini +test2157 Q0 15029278 5 13.600531 Anserini +test2157 Q0 11729803 6 13.439112 Anserini +test2157 Q0 19087234 7 13.068705 Anserini +test2157 Q0 13545799 8 12.986679 Anserini +test2157 Q0 11970983 9 12.974085 Anserini +test2157 Q0 15687785 10 12.891098 Anserini +test2157 Q0 13034483 11 12.854948 Anserini +test2157 Q0 19087221 12 12.794092 Anserini +test2157 Q0 14775084 13 12.716930 Anserini +test2157 Q0 14775054 14 12.651374 Anserini +test2157 Q0 19087240 15 12.586490 Anserini +test2157 Q0 4811559 16 12.539077 Anserini +test2157 Q0 11970967 17 12.458698 Anserini +test2157 Q0 20161225 18 12.414805 Anserini +test2157 Q0 18761857 19 12.381378 Anserini +test2157 Q0 1449275 20 12.342544 Anserini +test2157 Q0 9936138 21 12.273176 Anserini +test2157 Q0 9037412 22 12.246442 Anserini +test2157 Q0 19061953 23 12.193544 Anserini +test2157 Q0 7310953 24 12.190001 Anserini +test2157 Q0 9667105 25 12.185684 Anserini +test2157 Q0 15029266 26 12.178947 Anserini +test2157 Q0 15021562 27 12.137630 Anserini +test2157 Q0 4811597 28 12.136465 Anserini +test2157 Q0 19061952 29 12.077397 Anserini +test2157 Q0 13545803 30 12.064487 Anserini +test2158 Q0 484737 1 17.599096 Anserini +test2158 Q0 4976228 2 16.521402 Anserini +test2158 Q0 6879093 3 16.430725 Anserini +test2158 Q0 5894443 4 15.576092 Anserini +test2158 Q0 5894437 5 15.557341 Anserini +test2158 Q0 3321134 6 15.428934 Anserini +test2158 Q0 1681275 7 15.376345 Anserini +test2158 Q0 6487840 8 15.148090 Anserini +test2158 Q0 1681267 9 14.700568 Anserini +test2158 Q0 6487688 10 14.698297 Anserini +test2158 Q0 5570853 11 14.572636 Anserini +test2158 Q0 3321143 12 14.439685 Anserini +test2158 Q0 1860824 13 14.420587 Anserini +test2158 Q0 5908081 14 14.310425 Anserini +test2158 Q0 484729 15 14.280201 Anserini +test2158 Q0 6487689 16 14.256702 Anserini +test2158 Q0 484698 17 14.229172 Anserini +test2158 Q0 6890917 18 14.163650 Anserini +test2158 Q0 4976236 19 14.131236 Anserini +test2158 Q0 6487757 20 14.044614 Anserini +test2158 Q0 5894435 21 13.964890 Anserini +test2158 Q0 484735 22 13.947032 Anserini +test2158 Q0 1681274 23 13.885536 Anserini +test2158 Q0 484738 24 13.871329 Anserini +test2158 Q0 12047096 25 13.861322 Anserini +test2158 Q0 6109338 26 13.836642 Anserini +test2158 Q0 6879094 27 13.739987 Anserini +test2158 Q0 484727 28 13.533659 Anserini +test2158 Q0 6487842 29 13.498521 Anserini +test2158 Q0 484739 30 13.477479 Anserini +test2159 Q0 577756 1 10.988196 Anserini +test2159 Q0 1740717 2 9.725111 Anserini +test2159 Q0 18307567 3 9.483377 Anserini +test2159 Q0 5491808 4 9.417827 Anserini +test2159 Q0 16214450 5 9.167856 Anserini +test2159 Q0 1740722 6 9.133401 Anserini +test2159 Q0 14564285 7 9.087745 Anserini +test2159 Q0 10248963 8 9.007572 Anserini +test2159 Q0 2911100 9 8.928333 Anserini +test2159 Q0 13125578 10 8.920438 Anserini +test2159 Q0 8650798 11 8.862785 Anserini +test2159 Q0 7169507 12 8.859032 Anserini +test2159 Q0 14581253 13 8.822906 Anserini +test2159 Q0 5074956 14 8.770070 Anserini +test2159 Q0 10471022 15 8.762474 Anserini +test2159 Q0 577702 16 8.753554 Anserini +test2159 Q0 14133912 17 8.747078 Anserini +test2159 Q0 15224421 18 8.724026 Anserini +test2159 Q0 14513337 19 8.693208 Anserini +test2159 Q0 20577991 20 8.633143 Anserini +test2159 Q0 3775819 21 8.610681 Anserini +test2159 Q0 8437977 22 8.601256 Anserini +test2159 Q0 3165849 23 8.599435 Anserini +test2159 Q0 16760666 24 8.586125 Anserini +test2159 Q0 11573403 25 8.562775 Anserini +test2159 Q0 5237263 26 8.548574 Anserini +test2159 Q0 1622831 27 8.541634 Anserini +test2159 Q0 14051585 28 8.539028 Anserini +test2159 Q0 688410 29 8.538576 Anserini +test2159 Q0 11089472 30 8.527548 Anserini +test216 Q0 3373039 1 16.009007 Anserini +test216 Q0 11120393 2 15.889059 Anserini +test216 Q0 4732581 3 15.748124 Anserini +test216 Q0 15119821 4 15.694332 Anserini +test216 Q0 20844237 5 15.668600 Anserini +test216 Q0 20820309 6 15.479527 Anserini +test216 Q0 8209975 7 15.367063 Anserini +test216 Q0 4224883 8 15.207863 Anserini +test216 Q0 7584333 9 15.054841 Anserini +test216 Q0 707625 10 14.957088 Anserini +test216 Q0 1310173 11 14.941390 Anserini +test216 Q0 10547379 12 14.853955 Anserini +test216 Q0 1375511 13 14.778741 Anserini +test216 Q0 1375541 14 14.778741 Anserini +test216 Q0 20335275 15 14.762149 Anserini +test216 Q0 17612467 16 14.741920 Anserini +test216 Q0 17724729 17 14.728594 Anserini +test216 Q0 4513283 18 14.706204 Anserini +test216 Q0 3355791 19 14.671700 Anserini +test216 Q0 4168921 20 14.664571 Anserini +test216 Q0 13418830 21 14.658172 Anserini +test216 Q0 20335265 22 14.631126 Anserini +test216 Q0 1448665 23 14.601923 Anserini +test216 Q0 14533614 24 14.599064 Anserini +test216 Q0 20844236 25 14.598286 Anserini +test216 Q0 17270922 26 14.551417 Anserini +test216 Q0 20844227 27 14.512939 Anserini +test216 Q0 15417808 28 14.505855 Anserini +test216 Q0 2016615 29 14.487794 Anserini +test216 Q0 20734660 30 14.487388 Anserini +test2160 Q0 5386523 1 11.570468 Anserini +test2160 Q0 17913476 2 10.697495 Anserini +test2160 Q0 12689320 3 10.540552 Anserini +test2160 Q0 17224448 4 10.449517 Anserini +test2160 Q0 10084429 5 10.266476 Anserini +test2160 Q0 17609300 6 10.162004 Anserini +test2160 Q0 976321 7 10.118048 Anserini +test2160 Q0 13010934 8 10.026613 Anserini +test2160 Q0 7226417 9 9.962367 Anserini +test2160 Q0 14913788 10 9.958658 Anserini +test2160 Q0 13280892 11 9.942099 Anserini +test2160 Q0 7053635 12 9.936954 Anserini +test2160 Q0 20482300 13 9.851617 Anserini +test2160 Q0 16595107 14 9.851617 Anserini +test2160 Q0 11662714 15 9.837667 Anserini +test2160 Q0 2755591 16 9.833437 Anserini +test2160 Q0 3006341 17 9.800668 Anserini +test2160 Q0 16745455 18 9.771441 Anserini +test2160 Q0 19564025 19 9.736321 Anserini +test2160 Q0 6600351 20 9.724159 Anserini +test2160 Q0 14314009 21 9.654928 Anserini +test2160 Q0 9636072 22 9.603836 Anserini +test2160 Q0 18080983 23 9.597809 Anserini +test2160 Q0 14988526 24 9.591247 Anserini +test2160 Q0 1646948 25 9.551968 Anserini +test2160 Q0 1599783 26 9.514767 Anserini +test2160 Q0 10084434 27 9.504072 Anserini +test2160 Q0 6447568 28 9.478941 Anserini +test2160 Q0 8637071 29 9.474612 Anserini +test2160 Q0 7182916 30 9.455844 Anserini +test2161 Q0 16282499 1 16.910074 Anserini +test2161 Q0 14071637 2 16.403288 Anserini +test2161 Q0 14135625 3 16.307493 Anserini +test2161 Q0 8269 4 15.938148 Anserini +test2161 Q0 479398 5 15.911385 Anserini +test2161 Q0 16282508 6 15.753464 Anserini +test2161 Q0 18280198 7 15.686097 Anserini +test2161 Q0 406428 8 15.435390 Anserini +test2161 Q0 13375922 9 15.399854 Anserini +test2161 Q0 479366 10 15.106445 Anserini +test2161 Q0 19337048 11 15.074553 Anserini +test2161 Q0 479364 12 15.048182 Anserini +test2161 Q0 18280205 13 15.046486 Anserini +test2161 Q0 5128384 14 14.820698 Anserini +test2161 Q0 82378 15 14.776404 Anserini +test2161 Q0 864642 16 14.611386 Anserini +test2161 Q0 3118643 17 14.601855 Anserini +test2161 Q0 12787910 18 14.226478 Anserini +test2161 Q0 5128387 19 14.137466 Anserini +test2161 Q0 14068456 20 13.986947 Anserini +test2161 Q0 5128386 21 13.920535 Anserini +test2161 Q0 14068457 22 13.761584 Anserini +test2161 Q0 5128383 23 13.702668 Anserini +test2161 Q0 442512 24 13.626875 Anserini +test2161 Q0 16649719 25 13.517281 Anserini +test2161 Q0 20177358 26 13.430058 Anserini +test2161 Q0 11980791 27 13.342592 Anserini +test2161 Q0 14071638 28 13.335284 Anserini +test2161 Q0 18280197 29 13.319204 Anserini +test2161 Q0 5128382 30 13.299142 Anserini +test2162 Q0 1317508 1 11.308325 Anserini +test2162 Q0 2712011 2 11.141704 Anserini +test2162 Q0 11923336 3 10.931637 Anserini +test2162 Q0 5798137 4 10.477463 Anserini +test2162 Q0 14162774 5 10.317850 Anserini +test2162 Q0 8507733 6 10.269183 Anserini +test2162 Q0 15880220 7 10.112889 Anserini +test2162 Q0 11720869 8 10.083227 Anserini +test2162 Q0 75643 9 9.973902 Anserini +test2162 Q0 17321287 10 9.934243 Anserini +test2162 Q0 13646362 11 9.896123 Anserini +test2162 Q0 1317522 12 9.887839 Anserini +test2162 Q0 14119844 13 9.864175 Anserini +test2162 Q0 9886052 14 9.797481 Anserini +test2162 Q0 1317526 15 9.777088 Anserini +test2162 Q0 13762623 16 9.766523 Anserini +test2162 Q0 11935412 17 9.727987 Anserini +test2162 Q0 11833969 18 9.723764 Anserini +test2162 Q0 18319495 19 9.707550 Anserini +test2162 Q0 4027835 20 9.641804 Anserini +test2162 Q0 19743038 21 9.589159 Anserini +test2162 Q0 13676138 22 9.528204 Anserini +test2162 Q0 11642633 23 9.502590 Anserini +test2162 Q0 15769755 24 9.441236 Anserini +test2162 Q0 11439190 25 9.421959 Anserini +test2162 Q0 11720871 26 9.417328 Anserini +test2162 Q0 20397206 27 9.415644 Anserini +test2162 Q0 5239082 28 9.401929 Anserini +test2162 Q0 11773392 29 9.401929 Anserini +test2162 Q0 9400335 30 9.396836 Anserini +test2163 Q0 2859922 1 9.197137 Anserini +test2163 Q0 2587580 2 8.848454 Anserini +test2163 Q0 6801249 3 8.733319 Anserini +test2163 Q0 4280440 4 8.632369 Anserini +test2163 Q0 3834458 5 8.564690 Anserini +test2163 Q0 11894213 6 8.469194 Anserini +test2163 Q0 18331017 7 8.463139 Anserini +test2163 Q0 11167239 8 8.439589 Anserini +test2163 Q0 16482896 9 8.378561 Anserini +test2163 Q0 15198189 10 8.374047 Anserini +test2163 Q0 871971 11 8.347796 Anserini +test2163 Q0 3667786 12 8.289056 Anserini +test2163 Q0 10739958 13 8.286812 Anserini +test2163 Q0 370741 14 8.286812 Anserini +test2163 Q0 3834422 15 8.260652 Anserini +test2163 Q0 12738506 16 8.196846 Anserini +test2163 Q0 4945100 17 8.146043 Anserini +test2163 Q0 70609 18 8.119792 Anserini +test2163 Q0 7678603 19 8.108199 Anserini +test2163 Q0 15435080 20 8.092273 Anserini +test2163 Q0 2127375 21 8.076197 Anserini +test2163 Q0 15706288 22 8.074980 Anserini +test2163 Q0 2574268 23 8.064793 Anserini +test2163 Q0 3834416 24 8.033339 Anserini +test2163 Q0 19034225 25 8.031573 Anserini +test2163 Q0 15435052 26 7.977123 Anserini +test2163 Q0 10445254 27 7.955733 Anserini +test2163 Q0 2121032 28 7.949459 Anserini +test2163 Q0 15662135 29 7.949459 Anserini +test2163 Q0 9619055 30 7.924891 Anserini +test2164 Q0 15648567 1 12.315117 Anserini +test2164 Q0 3859176 2 12.205090 Anserini +test2164 Q0 8279202 3 11.767978 Anserini +test2164 Q0 4765347 4 11.434248 Anserini +test2164 Q0 1275073 5 11.345428 Anserini +test2164 Q0 5655172 6 11.158634 Anserini +test2164 Q0 5022797 7 11.158634 Anserini +test2164 Q0 4319608 8 11.066635 Anserini +test2164 Q0 7179362 9 10.945898 Anserini +test2164 Q0 10448515 10 10.888802 Anserini +test2164 Q0 17109873 11 10.761413 Anserini +test2164 Q0 4832223 12 10.735446 Anserini +test2164 Q0 1973345 13 10.726631 Anserini +test2164 Q0 19752237 14 10.705869 Anserini +test2164 Q0 10448507 15 10.611128 Anserini +test2164 Q0 2544628 16 10.597902 Anserini +test2164 Q0 5022780 17 10.597902 Anserini +test2164 Q0 8532351 18 10.597902 Anserini +test2164 Q0 8532343 19 10.515177 Anserini +test2164 Q0 10432131 20 10.515177 Anserini +test2164 Q0 19902975 21 10.465911 Anserini +test2164 Q0 19902927 22 10.465911 Anserini +test2164 Q0 17109876 23 10.433782 Anserini +test2164 Q0 2315174 24 10.433782 Anserini +test2164 Q0 3515386 25 10.353683 Anserini +test2164 Q0 5022906 26 10.351891 Anserini +test2164 Q0 984946 27 10.351891 Anserini +test2164 Q0 15876358 28 10.351488 Anserini +test2164 Q0 2742198 29 10.327330 Anserini +test2164 Q0 19730124 30 10.272784 Anserini +test2165 Q0 20220890 1 20.157070 Anserini +test2165 Q0 18464036 2 15.050703 Anserini +test2165 Q0 19102205 3 14.399504 Anserini +test2165 Q0 19102206 4 14.246306 Anserini +test2165 Q0 19213053 5 14.246306 Anserini +test2165 Q0 19102215 6 14.064969 Anserini +test2165 Q0 11305780 7 13.646419 Anserini +test2165 Q0 20220889 8 12.537406 Anserini +test2165 Q0 20220895 9 12.494103 Anserini +test2165 Q0 20220888 10 12.494103 Anserini +test2165 Q0 20220891 11 12.145787 Anserini +test2165 Q0 20220894 12 12.124164 Anserini +test2165 Q0 19102203 13 12.095134 Anserini +test2165 Q0 20220893 14 12.080750 Anserini +test2165 Q0 2165854 15 11.387164 Anserini +test2165 Q0 18293478 16 11.238241 Anserini +test2165 Q0 13556532 17 11.202928 Anserini +test2165 Q0 9013858 18 10.974962 Anserini +test2165 Q0 18293520 19 10.924500 Anserini +test2165 Q0 20220892 20 10.868928 Anserini +test2165 Q0 219968 21 10.736870 Anserini +test2165 Q0 4416456 22 10.381814 Anserini +test2165 Q0 19333657 23 10.370749 Anserini +test2165 Q0 13556537 24 10.176348 Anserini +test2165 Q0 7535747 25 10.172249 Anserini +test2165 Q0 2165855 26 10.093115 Anserini +test2165 Q0 219961 27 10.033267 Anserini +test2165 Q0 6038358 28 10.022854 Anserini +test2165 Q0 1353804 29 10.015975 Anserini +test2165 Q0 20502439 30 9.993170 Anserini +test2166 Q0 14259085 1 14.361963 Anserini +test2166 Q0 20634719 2 13.989166 Anserini +test2166 Q0 19120529 3 13.853872 Anserini +test2166 Q0 7997951 4 13.823669 Anserini +test2166 Q0 20634715 5 13.613775 Anserini +test2166 Q0 18729503 6 13.613775 Anserini +test2166 Q0 20879914 7 13.598045 Anserini +test2166 Q0 11419739 8 13.491907 Anserini +test2166 Q0 18729507 9 13.458567 Anserini +test2166 Q0 6240028 10 13.385050 Anserini +test2166 Q0 6240035 11 13.279942 Anserini +test2166 Q0 16691479 12 12.927605 Anserini +test2166 Q0 11552617 13 12.871008 Anserini +test2166 Q0 6240003 14 12.760808 Anserini +test2166 Q0 5544845 15 12.755665 Anserini +test2166 Q0 13644963 16 12.735526 Anserini +test2166 Q0 6240002 17 12.731779 Anserini +test2166 Q0 11425414 18 12.663837 Anserini +test2166 Q0 20879915 19 12.575050 Anserini +test2166 Q0 19120546 20 12.491771 Anserini +test2166 Q0 19120550 21 12.491771 Anserini +test2166 Q0 5544838 22 12.462910 Anserini +test2166 Q0 20634076 23 12.409600 Anserini +test2166 Q0 19120542 24 12.409600 Anserini +test2166 Q0 18729506 25 12.387588 Anserini +test2166 Q0 19120531 26 12.328516 Anserini +test2166 Q0 4205124 27 12.304655 Anserini +test2166 Q0 462320 28 12.258299 Anserini +test2166 Q0 14490860 29 12.252611 Anserini +test2166 Q0 11502768 30 12.252611 Anserini +test2167 Q0 19795923 1 21.971390 Anserini +test2167 Q0 19795926 2 20.496729 Anserini +test2167 Q0 6106863 3 20.408524 Anserini +test2167 Q0 2129563 4 20.257267 Anserini +test2167 Q0 2129567 5 20.117052 Anserini +test2167 Q0 2129569 6 20.106470 Anserini +test2167 Q0 12472140 7 20.062052 Anserini +test2167 Q0 6106870 8 19.693678 Anserini +test2167 Q0 19049094 9 19.601902 Anserini +test2167 Q0 19769721 10 19.559883 Anserini +test2167 Q0 6106877 11 19.543856 Anserini +test2167 Q0 19049033 12 19.412441 Anserini +test2167 Q0 19049035 13 19.412441 Anserini +test2167 Q0 3322710 14 19.312225 Anserini +test2167 Q0 12472150 15 19.261589 Anserini +test2167 Q0 18204966 16 19.043299 Anserini +test2167 Q0 9382968 17 18.910542 Anserini +test2167 Q0 20332105 18 18.794500 Anserini +test2167 Q0 18204965 19 18.654419 Anserini +test2167 Q0 3322708 20 18.575855 Anserini +test2167 Q0 1348453 21 18.472353 Anserini +test2167 Q0 9131098 22 18.431572 Anserini +test2167 Q0 18204952 23 18.397816 Anserini +test2167 Q0 19049096 24 18.383387 Anserini +test2167 Q0 895667 25 18.376656 Anserini +test2167 Q0 9382929 26 18.254295 Anserini +test2167 Q0 6207650 27 18.205875 Anserini +test2167 Q0 1268428 28 18.164616 Anserini +test2167 Q0 18204969 29 18.123781 Anserini +test2167 Q0 6835714 30 18.123781 Anserini +test2168 Q0 918777 1 22.278486 Anserini +test2168 Q0 918791 2 22.192656 Anserini +test2168 Q0 920227 3 21.298817 Anserini +test2168 Q0 13691833 4 21.099066 Anserini +test2168 Q0 918784 5 21.031399 Anserini +test2168 Q0 918779 6 20.841433 Anserini +test2168 Q0 1673593 7 20.222401 Anserini +test2168 Q0 918786 8 19.858727 Anserini +test2168 Q0 15907496 9 19.786037 Anserini +test2168 Q0 6145865 10 19.715858 Anserini +test2168 Q0 918783 11 19.708372 Anserini +test2168 Q0 13691847 12 19.679070 Anserini +test2168 Q0 304649 13 19.621231 Anserini +test2168 Q0 304662 14 19.432356 Anserini +test2168 Q0 920224 15 19.329939 Anserini +test2168 Q0 918776 16 19.274340 Anserini +test2168 Q0 6145864 17 19.230379 Anserini +test2168 Q0 3511825 18 19.012054 Anserini +test2168 Q0 918767 19 18.997293 Anserini +test2168 Q0 918764 20 18.795614 Anserini +test2168 Q0 6516569 21 18.510542 Anserini +test2168 Q0 18644122 22 18.459114 Anserini +test2168 Q0 918780 23 18.433397 Anserini +test2168 Q0 918792 24 18.362223 Anserini +test2168 Q0 918765 25 18.057795 Anserini +test2168 Q0 5535494 26 18.038452 Anserini +test2168 Q0 920231 27 17.943815 Anserini +test2168 Q0 3511839 28 17.827097 Anserini +test2168 Q0 10185406 29 17.774397 Anserini +test2168 Q0 331493 30 17.699873 Anserini +test2169 Q0 9469929 1 11.719575 Anserini +test2169 Q0 9469869 2 11.598493 Anserini +test2169 Q0 6964806 3 10.523447 Anserini +test2169 Q0 6964799 4 10.412538 Anserini +test2169 Q0 10148177 5 10.256714 Anserini +test2169 Q0 12578997 6 10.248084 Anserini +test2169 Q0 12185963 7 9.281137 Anserini +test2169 Q0 16595838 8 9.257745 Anserini +test2169 Q0 10363385 9 9.235434 Anserini +test2169 Q0 10773182 10 9.207684 Anserini +test2169 Q0 6390073 11 9.205444 Anserini +test2169 Q0 9469895 12 9.044130 Anserini +test2169 Q0 9981903 13 8.967854 Anserini +test2169 Q0 16374748 14 8.966491 Anserini +test2169 Q0 16374715 15 8.961555 Anserini +test2169 Q0 5549922 16 8.910723 Anserini +test2169 Q0 6779891 17 8.902086 Anserini +test2169 Q0 9469872 18 8.874509 Anserini +test2169 Q0 15867844 19 8.862802 Anserini +test2169 Q0 2611566 20 8.847860 Anserini +test2169 Q0 9469920 21 8.821598 Anserini +test2169 Q0 9469888 22 8.819322 Anserini +test2169 Q0 9374848 23 8.804734 Anserini +test2169 Q0 11671259 24 8.748200 Anserini +test2169 Q0 17259227 25 8.739507 Anserini +test2169 Q0 18630056 26 8.739507 Anserini +test2169 Q0 9667303 27 8.736016 Anserini +test2169 Q0 17659498 28 8.728447 Anserini +test2169 Q0 12578998 29 8.677808 Anserini +test2169 Q0 18355027 30 8.676280 Anserini +test217 Q0 3146732 1 27.079004 Anserini +test217 Q0 14753084 2 25.162601 Anserini +test217 Q0 14753085 3 25.162601 Anserini +test217 Q0 3146731 4 23.588936 Anserini +test217 Q0 3146743 5 23.160088 Anserini +test217 Q0 3146741 6 21.930798 Anserini +test217 Q0 3146736 7 21.788969 Anserini +test217 Q0 3146738 8 19.731422 Anserini +test217 Q0 3146737 9 19.659546 Anserini +test217 Q0 604334 10 19.299046 Anserini +test217 Q0 3146733 11 19.057861 Anserini +test217 Q0 13792740 12 18.768654 Anserini +test217 Q0 13792742 13 18.715822 Anserini +test217 Q0 2546968 14 17.748861 Anserini +test217 Q0 3146734 15 17.296432 Anserini +test217 Q0 604332 16 16.868185 Anserini +test217 Q0 20599140 17 16.860554 Anserini +test217 Q0 13518214 18 16.717815 Anserini +test217 Q0 2829884 19 16.568115 Anserini +test217 Q0 12363203 20 16.372404 Anserini +test217 Q0 3146735 21 16.181446 Anserini +test217 Q0 665094 22 16.045441 Anserini +test217 Q0 3856525 23 16.009058 Anserini +test217 Q0 18231543 24 15.934037 Anserini +test217 Q0 13518219 25 15.671605 Anserini +test217 Q0 11796447 26 15.660824 Anserini +test217 Q0 2829882 27 15.599785 Anserini +test217 Q0 474194 28 15.450079 Anserini +test217 Q0 12768281 29 15.376612 Anserini +test217 Q0 17475103 30 15.248791 Anserini +test2170 Q0 3266258 1 14.142715 Anserini +test2170 Q0 15217819 2 13.715931 Anserini +test2170 Q0 15217813 3 13.697568 Anserini +test2170 Q0 4447725 4 13.004414 Anserini +test2170 Q0 8169927 5 12.943754 Anserini +test2170 Q0 16024848 6 12.504427 Anserini +test2170 Q0 7613093 7 12.228472 Anserini +test2170 Q0 11479643 8 12.183426 Anserini +test2170 Q0 15217815 9 11.952985 Anserini +test2170 Q0 636005 10 11.940413 Anserini +test2170 Q0 15217814 11 11.785904 Anserini +test2170 Q0 636004 12 11.583195 Anserini +test2170 Q0 3266251 13 11.281058 Anserini +test2170 Q0 5290586 14 11.240283 Anserini +test2170 Q0 455612 15 11.018810 Anserini +test2170 Q0 15217818 16 10.899628 Anserini +test2170 Q0 12152845 17 10.664189 Anserini +test2170 Q0 18867425 18 10.655779 Anserini +test2170 Q0 8149341 19 10.641729 Anserini +test2170 Q0 16353528 20 10.595410 Anserini +test2170 Q0 16353529 21 10.595410 Anserini +test2170 Q0 15217816 22 10.580090 Anserini +test2170 Q0 8169926 23 10.562701 Anserini +test2170 Q0 6048697 24 10.527626 Anserini +test2170 Q0 7613094 25 10.480516 Anserini +test2170 Q0 8020028 26 10.468554 Anserini +test2170 Q0 636008 27 10.460812 Anserini +test2170 Q0 18867414 28 10.458260 Anserini +test2170 Q0 3236244 29 10.353103 Anserini +test2170 Q0 20773377 30 10.298752 Anserini +test2171 Q0 2368334 1 14.846741 Anserini +test2171 Q0 14351037 2 14.051720 Anserini +test2171 Q0 2368344 3 13.034598 Anserini +test2171 Q0 14346749 4 12.729988 Anserini +test2171 Q0 2368333 5 12.384350 Anserini +test2171 Q0 2106730 6 12.312208 Anserini +test2171 Q0 2560687 7 12.171529 Anserini +test2171 Q0 2368347 8 12.052956 Anserini +test2171 Q0 2368335 9 11.814592 Anserini +test2171 Q0 14725081 10 11.799046 Anserini +test2171 Q0 17119584 11 11.751781 Anserini +test2171 Q0 2368342 12 11.647366 Anserini +test2171 Q0 2368339 13 11.629923 Anserini +test2171 Q0 2989875 14 11.628696 Anserini +test2171 Q0 14725078 15 11.418310 Anserini +test2171 Q0 2368340 16 11.293028 Anserini +test2171 Q0 2368343 17 11.208503 Anserini +test2171 Q0 17605342 18 11.206791 Anserini +test2171 Q0 12238833 19 11.086849 Anserini +test2171 Q0 12238837 20 11.086849 Anserini +test2171 Q0 1103892 21 11.084598 Anserini +test2171 Q0 2368336 22 11.053868 Anserini +test2171 Q0 178705 23 11.045289 Anserini +test2171 Q0 14351036 24 11.028045 Anserini +test2171 Q0 7118229 25 10.963767 Anserini +test2171 Q0 17605339 26 10.804823 Anserini +test2171 Q0 390698 27 10.671350 Anserini +test2171 Q0 14026329 28 10.614035 Anserini +test2171 Q0 10687886 29 10.604528 Anserini +test2171 Q0 8899137 30 10.544385 Anserini +test2172 Q0 16600315 1 12.419453 Anserini +test2172 Q0 16600313 2 12.419453 Anserini +test2172 Q0 7203042 3 11.664363 Anserini +test2172 Q0 18596260 4 11.640065 Anserini +test2172 Q0 18596261 5 11.640065 Anserini +test2172 Q0 16600322 6 11.640065 Anserini +test2172 Q0 17453041 7 11.592552 Anserini +test2172 Q0 10949250 8 11.360434 Anserini +test2172 Q0 17453042 9 11.357001 Anserini +test2172 Q0 16600290 10 11.305714 Anserini +test2172 Q0 7710485 11 11.179226 Anserini +test2172 Q0 7710482 12 11.126107 Anserini +test2172 Q0 17386475 13 10.980045 Anserini +test2172 Q0 16600314 14 10.923733 Anserini +test2172 Q0 16600303 15 10.867995 Anserini +test2172 Q0 5758543 16 10.817796 Anserini +test2172 Q0 16600317 17 10.690594 Anserini +test2172 Q0 2006594 18 10.687678 Anserini +test2172 Q0 11269896 19 10.469261 Anserini +test2172 Q0 1469198 20 10.448551 Anserini +test2172 Q0 16600311 21 10.421791 Anserini +test2172 Q0 508180 22 10.412690 Anserini +test2172 Q0 20949647 23 10.335867 Anserini +test2172 Q0 20949642 24 10.335867 Anserini +test2172 Q0 19094029 25 10.127031 Anserini +test2172 Q0 456714 26 10.073480 Anserini +test2172 Q0 4493883 27 9.967436 Anserini +test2172 Q0 3369005 28 9.967436 Anserini +test2172 Q0 16543077 29 9.967436 Anserini +test2172 Q0 12247497 30 9.950306 Anserini +test2173 Q0 8264589 1 10.223516 Anserini +test2173 Q0 15835663 2 9.860104 Anserini +test2173 Q0 7471210 3 9.734179 Anserini +test2173 Q0 2615712 4 9.544276 Anserini +test2173 Q0 3564736 5 9.327865 Anserini +test2173 Q0 1840267 6 9.145872 Anserini +test2173 Q0 8550642 7 9.135659 Anserini +test2173 Q0 6627957 8 9.046528 Anserini +test2173 Q0 9651614 9 9.042882 Anserini +test2173 Q0 4881190 10 9.042882 Anserini +test2173 Q0 16879820 11 9.028120 Anserini +test2173 Q0 15835656 12 9.028069 Anserini +test2173 Q0 10680285 13 9.016537 Anserini +test2173 Q0 15835662 14 8.897109 Anserini +test2173 Q0 2088827 15 8.890044 Anserini +test2173 Q0 17544308 16 8.879829 Anserini +test2173 Q0 15835664 17 8.861916 Anserini +test2173 Q0 15835653 18 8.830753 Anserini +test2173 Q0 16665310 19 8.752522 Anserini +test2173 Q0 3823570 20 8.752522 Anserini +test2173 Q0 1295014 21 8.700108 Anserini +test2173 Q0 11178507 22 8.685293 Anserini +test2173 Q0 11178496 23 8.685293 Anserini +test2173 Q0 858062 24 8.683987 Anserini +test2173 Q0 19195923 25 8.642071 Anserini +test2173 Q0 16880232 26 8.599329 Anserini +test2173 Q0 15151148 27 8.591020 Anserini +test2173 Q0 18848113 28 8.579209 Anserini +test2173 Q0 18798112 29 8.579209 Anserini +test2173 Q0 11687317 30 8.560946 Anserini +test2174 Q0 1816237 1 10.979597 Anserini +test2174 Q0 12882220 2 10.761068 Anserini +test2174 Q0 8986833 3 10.525108 Anserini +test2174 Q0 12324436 4 10.457954 Anserini +test2174 Q0 8647000 5 10.269268 Anserini +test2174 Q0 2645372 6 10.165071 Anserini +test2174 Q0 717685 7 10.085452 Anserini +test2174 Q0 1306873 8 9.627919 Anserini +test2174 Q0 20883529 9 9.601063 Anserini +test2174 Q0 13149592 10 9.489511 Anserini +test2174 Q0 6784881 11 9.390243 Anserini +test2174 Q0 6064244 12 9.334425 Anserini +test2174 Q0 5031740 13 9.317482 Anserini +test2174 Q0 4134701 14 9.309889 Anserini +test2174 Q0 14927071 15 9.289316 Anserini +test2174 Q0 5079293 16 9.164071 Anserini +test2174 Q0 19148101 17 9.110317 Anserini +test2174 Q0 14183460 18 9.058326 Anserini +test2174 Q0 6842159 19 9.010794 Anserini +test2174 Q0 6784885 20 8.985394 Anserini +test2174 Q0 9776510 21 8.985394 Anserini +test2174 Q0 11367766 22 8.985394 Anserini +test2174 Q0 20089255 23 8.955866 Anserini +test2174 Q0 13737842 24 8.953328 Anserini +test2174 Q0 6469241 25 8.929607 Anserini +test2174 Q0 5480405 26 8.917118 Anserini +test2174 Q0 2997581 27 8.897015 Anserini +test2174 Q0 2513032 28 8.870705 Anserini +test2174 Q0 7165718 29 8.810598 Anserini +test2174 Q0 14183462 30 8.785834 Anserini +test2175 Q0 2304093 1 12.912154 Anserini +test2175 Q0 17562985 2 12.767342 Anserini +test2175 Q0 4185089 3 12.685900 Anserini +test2175 Q0 1945990 4 12.571754 Anserini +test2175 Q0 5282786 5 12.528876 Anserini +test2175 Q0 394220 6 12.325270 Anserini +test2175 Q0 284598 7 12.293667 Anserini +test2175 Q0 3114562 8 12.254462 Anserini +test2175 Q0 4185098 9 12.214865 Anserini +test2175 Q0 403926 10 12.210147 Anserini +test2175 Q0 394037 11 12.159157 Anserini +test2175 Q0 703818 12 12.022687 Anserini +test2175 Q0 11856833 13 12.020590 Anserini +test2175 Q0 5732107 14 11.991465 Anserini +test2175 Q0 1996289 15 11.817789 Anserini +test2175 Q0 10617530 16 11.817492 Anserini +test2175 Q0 4243422 17 11.807829 Anserini +test2175 Q0 376027 18 11.782908 Anserini +test2175 Q0 16858054 19 11.774536 Anserini +test2175 Q0 1996288 20 11.746893 Anserini +test2175 Q0 395056 21 11.743805 Anserini +test2175 Q0 403928 22 11.664235 Anserini +test2175 Q0 1996287 23 11.663241 Anserini +test2175 Q0 394439 24 11.635599 Anserini +test2175 Q0 394243 25 11.569173 Anserini +test2175 Q0 394760 26 11.558511 Anserini +test2175 Q0 376041 27 11.532401 Anserini +test2175 Q0 394783 28 11.518622 Anserini +test2175 Q0 10912246 29 11.480155 Anserini +test2175 Q0 375993 30 11.473122 Anserini +test2176 Q0 2671364 1 10.999103 Anserini +test2176 Q0 8653847 2 10.167717 Anserini +test2176 Q0 18421809 3 10.036575 Anserini +test2176 Q0 18421794 4 9.695024 Anserini +test2176 Q0 8653848 5 9.667399 Anserini +test2176 Q0 11562855 6 9.559661 Anserini +test2176 Q0 12555553 7 9.532459 Anserini +test2176 Q0 3466189 8 9.460175 Anserini +test2176 Q0 3206927 9 9.358768 Anserini +test2176 Q0 7570970 10 9.315164 Anserini +test2176 Q0 8281762 11 9.254632 Anserini +test2176 Q0 19251382 12 9.216640 Anserini +test2176 Q0 13595400 13 9.046623 Anserini +test2176 Q0 14114795 14 9.041548 Anserini +test2176 Q0 3466162 15 9.032418 Anserini +test2176 Q0 745227 16 9.030333 Anserini +test2176 Q0 19145066 17 8.980083 Anserini +test2176 Q0 15359384 18 8.954713 Anserini +test2176 Q0 16054229 19 8.948997 Anserini +test2176 Q0 14353261 20 8.935575 Anserini +test2176 Q0 12555614 21 8.935218 Anserini +test2176 Q0 658301 22 8.896934 Anserini +test2176 Q0 1434776 23 8.854770 Anserini +test2176 Q0 1310306 24 8.835857 Anserini +test2176 Q0 12555541 25 8.804651 Anserini +test2176 Q0 15288342 26 8.797664 Anserini +test2176 Q0 12555570 27 8.788452 Anserini +test2176 Q0 1394537 28 8.770990 Anserini +test2176 Q0 12555602 29 8.764440 Anserini +test2176 Q0 12555572 30 8.740906 Anserini +test2177 Q0 18019978 1 12.982720 Anserini +test2177 Q0 19558192 2 12.280190 Anserini +test2177 Q0 18508033 3 12.234714 Anserini +test2177 Q0 7162195 4 12.148314 Anserini +test2177 Q0 20678648 5 11.815309 Anserini +test2177 Q0 18778093 6 11.594712 Anserini +test2177 Q0 17586437 7 11.407350 Anserini +test2177 Q0 18342428 8 11.275983 Anserini +test2177 Q0 20678640 9 11.258611 Anserini +test2177 Q0 18019977 10 10.879741 Anserini +test2177 Q0 13875169 11 10.815574 Anserini +test2177 Q0 19718411 12 10.797367 Anserini +test2177 Q0 19718417 13 10.797367 Anserini +test2177 Q0 18019980 14 10.759581 Anserini +test2177 Q0 7345913 15 10.689148 Anserini +test2177 Q0 19558191 16 10.680229 Anserini +test2177 Q0 13853189 17 10.661037 Anserini +test2177 Q0 19925554 18 10.646147 Anserini +test2177 Q0 2072159 19 10.599995 Anserini +test2177 Q0 5424789 20 10.577642 Anserini +test2177 Q0 3634219 21 10.543556 Anserini +test2177 Q0 17073852 22 10.505204 Anserini +test2177 Q0 11528027 23 10.433552 Anserini +test2177 Q0 1292385 24 10.414920 Anserini +test2177 Q0 7230533 25 10.404716 Anserini +test2177 Q0 14812392 26 10.401875 Anserini +test2177 Q0 18019975 27 10.377405 Anserini +test2177 Q0 12069748 28 10.373084 Anserini +test2177 Q0 14896631 29 10.358557 Anserini +test2177 Q0 6834382 30 10.317712 Anserini +test2178 Q0 14301200 1 14.638666 Anserini +test2178 Q0 10336207 2 14.018600 Anserini +test2178 Q0 1438973 3 13.548372 Anserini +test2178 Q0 1406521 4 13.145697 Anserini +test2178 Q0 5697239 5 13.138504 Anserini +test2178 Q0 1406522 6 12.984518 Anserini +test2178 Q0 14301203 7 12.771288 Anserini +test2178 Q0 14301178 8 12.702346 Anserini +test2178 Q0 5241636 9 12.537296 Anserini +test2178 Q0 1539913 10 12.410334 Anserini +test2178 Q0 1240106 11 12.410334 Anserini +test2178 Q0 1406544 12 12.273613 Anserini +test2178 Q0 10336214 13 12.242035 Anserini +test2178 Q0 10336215 14 12.201271 Anserini +test2178 Q0 1238162 15 12.151297 Anserini +test2178 Q0 1238167 16 12.151297 Anserini +test2178 Q0 5241634 17 12.147393 Anserini +test2178 Q0 1406543 18 12.147393 Anserini +test2178 Q0 13861178 19 11.927992 Anserini +test2178 Q0 10903520 20 11.679850 Anserini +test2178 Q0 16219080 21 11.463798 Anserini +test2178 Q0 14301195 22 11.274065 Anserini +test2178 Q0 7480721 23 11.250220 Anserini +test2178 Q0 10336216 24 11.130398 Anserini +test2178 Q0 9938046 25 11.130398 Anserini +test2178 Q0 18786649 26 11.084964 Anserini +test2178 Q0 15398952 27 11.039900 Anserini +test2178 Q0 10336862 28 10.995200 Anserini +test2178 Q0 10336863 29 10.995200 Anserini +test2178 Q0 8398522 30 10.826769 Anserini +test2179 Q0 6448754 1 14.557714 Anserini +test2179 Q0 4173555 2 14.371469 Anserini +test2179 Q0 10564745 3 14.350571 Anserini +test2179 Q0 16329257 4 14.311920 Anserini +test2179 Q0 6957390 5 14.242176 Anserini +test2179 Q0 12505464 6 14.204146 Anserini +test2179 Q0 18988276 7 14.198920 Anserini +test2179 Q0 9081275 8 14.009170 Anserini +test2179 Q0 11722719 9 13.952370 Anserini +test2179 Q0 8759388 10 13.951109 Anserini +test2179 Q0 2675111 11 13.942871 Anserini +test2179 Q0 3448112 12 13.891256 Anserini +test2179 Q0 20692219 13 13.856789 Anserini +test2179 Q0 11479681 14 13.784428 Anserini +test2179 Q0 12127691 15 13.736775 Anserini +test2179 Q0 11722716 16 13.655293 Anserini +test2179 Q0 20986473 17 13.622630 Anserini +test2179 Q0 20793 18 13.601116 Anserini +test2179 Q0 20798 19 13.600571 Anserini +test2179 Q0 14157508 20 13.569277 Anserini +test2179 Q0 18584365 21 13.542105 Anserini +test2179 Q0 11854571 22 13.515339 Anserini +test2179 Q0 3398715 23 13.479399 Anserini +test2179 Q0 18848252 24 13.479399 Anserini +test2179 Q0 20219960 25 13.435288 Anserini +test2179 Q0 438223 26 13.382389 Anserini +test2179 Q0 20724867 27 13.372414 Anserini +test2179 Q0 10344026 28 13.352240 Anserini +test2179 Q0 19599917 29 13.331442 Anserini +test2179 Q0 9493805 30 13.307888 Anserini +test218 Q0 9869015 1 13.378593 Anserini +test218 Q0 14198451 2 12.790740 Anserini +test218 Q0 9861162 3 12.281851 Anserini +test218 Q0 9868952 4 12.229136 Anserini +test218 Q0 18809333 5 12.227238 Anserini +test218 Q0 5666287 6 11.998997 Anserini +test218 Q0 8721519 7 11.981297 Anserini +test218 Q0 3093075 8 11.955410 Anserini +test218 Q0 11428634 9 11.851851 Anserini +test218 Q0 5666288 10 11.813771 Anserini +test218 Q0 14206624 11 11.752059 Anserini +test218 Q0 9915127 12 11.730143 Anserini +test218 Q0 9868989 13 11.712098 Anserini +test218 Q0 4235507 14 11.712098 Anserini +test218 Q0 8721493 15 11.565436 Anserini +test218 Q0 12898733 16 11.544015 Anserini +test218 Q0 9868976 17 11.485740 Anserini +test218 Q0 16934591 18 11.485740 Anserini +test218 Q0 8727331 19 11.422777 Anserini +test218 Q0 9915479 20 11.284712 Anserini +test218 Q0 3941521 21 11.109802 Anserini +test218 Q0 431636 22 11.076936 Anserini +test218 Q0 14144997 23 11.067757 Anserini +test218 Q0 8721496 24 10.991944 Anserini +test218 Q0 8724572 25 10.991944 Anserini +test218 Q0 11466726 26 10.991944 Anserini +test218 Q0 9844411 27 10.991944 Anserini +test218 Q0 11523244 28 10.991944 Anserini +test218 Q0 14179297 29 10.991944 Anserini +test218 Q0 14179369 30 10.991944 Anserini +test2180 Q0 18835956 1 12.000176 Anserini +test2180 Q0 16299321 2 11.299337 Anserini +test2180 Q0 4906990 3 11.277319 Anserini +test2180 Q0 15328743 4 11.259644 Anserini +test2180 Q0 167649 5 11.258022 Anserini +test2180 Q0 4906979 6 11.150434 Anserini +test2180 Q0 2562876 7 10.810588 Anserini +test2180 Q0 15621760 8 10.779728 Anserini +test2180 Q0 18034288 9 10.763154 Anserini +test2180 Q0 20952444 10 10.744457 Anserini +test2180 Q0 14519562 11 10.687911 Anserini +test2180 Q0 8798604 12 10.685349 Anserini +test2180 Q0 845412 13 10.650594 Anserini +test2180 Q0 2562874 14 10.620175 Anserini +test2180 Q0 17134197 15 10.578268 Anserini +test2180 Q0 5336531 16 10.543830 Anserini +test2180 Q0 930514 17 10.392734 Anserini +test2180 Q0 11678514 18 10.384234 Anserini +test2180 Q0 11418338 19 10.288404 Anserini +test2180 Q0 13359481 20 10.286953 Anserini +test2180 Q0 17768488 21 10.281706 Anserini +test2180 Q0 7282626 22 10.253057 Anserini +test2180 Q0 9418157 23 10.151355 Anserini +test2180 Q0 3853410 24 10.130723 Anserini +test2180 Q0 3133390 25 10.122839 Anserini +test2180 Q0 19904274 26 10.121256 Anserini +test2180 Q0 2247865 27 10.108161 Anserini +test2180 Q0 14249603 28 10.060459 Anserini +test2180 Q0 12650521 29 10.059942 Anserini +test2180 Q0 1815483 30 10.017611 Anserini +test2181 Q0 20915160 1 20.168568 Anserini +test2181 Q0 18349066 2 20.096573 Anserini +test2181 Q0 20915158 3 20.002583 Anserini +test2181 Q0 14989822 4 19.990765 Anserini +test2181 Q0 20850611 5 19.812855 Anserini +test2181 Q0 14989820 6 19.769760 Anserini +test2181 Q0 18349109 7 19.674589 Anserini +test2181 Q0 20756905 8 19.415520 Anserini +test2181 Q0 459591 9 19.413139 Anserini +test2181 Q0 360347 10 19.199587 Anserini +test2181 Q0 18349108 11 19.135693 Anserini +test2181 Q0 15135307 12 19.090841 Anserini +test2181 Q0 15135940 13 19.090841 Anserini +test2181 Q0 6518253 14 19.038208 Anserini +test2181 Q0 18349065 15 19.021915 Anserini +test2181 Q0 18305565 16 18.856363 Anserini +test2181 Q0 18287450 17 18.855330 Anserini +test2181 Q0 18287474 18 18.855330 Anserini +test2181 Q0 15133165 19 18.847885 Anserini +test2181 Q0 15135191 20 18.847885 Anserini +test2181 Q0 15131727 21 18.847885 Anserini +test2181 Q0 15131848 22 18.847885 Anserini +test2181 Q0 15131849 23 18.847885 Anserini +test2181 Q0 15136062 24 18.847885 Anserini +test2181 Q0 15134350 25 18.847885 Anserini +test2181 Q0 14279173 26 18.688795 Anserini +test2181 Q0 18249353 27 18.648129 Anserini +test2181 Q0 18350345 28 18.610813 Anserini +test2181 Q0 18350200 29 18.610813 Anserini +test2181 Q0 6573846 30 18.609903 Anserini +test2182 Q0 15605694 1 12.583676 Anserini +test2182 Q0 15605719 2 12.583676 Anserini +test2182 Q0 20904724 3 11.405089 Anserini +test2182 Q0 20904723 4 11.106236 Anserini +test2182 Q0 16586136 5 10.640209 Anserini +test2182 Q0 10564501 6 10.627391 Anserini +test2182 Q0 10719492 7 10.525715 Anserini +test2182 Q0 19727362 8 10.241558 Anserini +test2182 Q0 11482611 9 10.118343 Anserini +test2182 Q0 7911881 10 10.063645 Anserini +test2182 Q0 9970928 11 10.042251 Anserini +test2182 Q0 15186400 12 10.040910 Anserini +test2182 Q0 15186403 13 10.040910 Anserini +test2182 Q0 11560097 14 10.023630 Anserini +test2182 Q0 19909924 15 9.950485 Anserini +test2182 Q0 10319588 16 9.832738 Anserini +test2182 Q0 12498831 17 9.830770 Anserini +test2182 Q0 8082483 18 9.752374 Anserini +test2182 Q0 16586135 19 9.752374 Anserini +test2182 Q0 9555998 20 9.664982 Anserini +test2182 Q0 8999935 21 9.621381 Anserini +test2182 Q0 16785896 22 9.616152 Anserini +test2182 Q0 12073374 23 9.593736 Anserini +test2182 Q0 14154559 24 9.581350 Anserini +test2182 Q0 7267851 25 9.517783 Anserini +test2182 Q0 6029857 26 9.492987 Anserini +test2182 Q0 5442662 27 9.489194 Anserini +test2182 Q0 5464640 28 9.475694 Anserini +test2182 Q0 15605695 29 9.456264 Anserini +test2182 Q0 19727359 30 9.441772 Anserini +test2183 Q0 19362572 1 12.869251 Anserini +test2183 Q0 19863173 2 12.410321 Anserini +test2183 Q0 19195003 3 12.336927 Anserini +test2183 Q0 19782504 4 12.143178 Anserini +test2183 Q0 20154731 5 12.004876 Anserini +test2183 Q0 20180473 6 11.934057 Anserini +test2183 Q0 19288769 7 11.851175 Anserini +test2183 Q0 13248506 8 11.846799 Anserini +test2183 Q0 5242497 9 11.808716 Anserini +test2183 Q0 19795382 10 11.776797 Anserini +test2183 Q0 19531135 11 11.751828 Anserini +test2183 Q0 19468110 12 11.716323 Anserini +test2183 Q0 20269269 13 11.706442 Anserini +test2183 Q0 17570287 14 11.669096 Anserini +test2183 Q0 14619508 15 11.597059 Anserini +test2183 Q0 9755067 16 11.578032 Anserini +test2183 Q0 20122252 17 11.511899 Anserini +test2183 Q0 18435086 18 11.508789 Anserini +test2183 Q0 18656013 19 11.308458 Anserini +test2183 Q0 19468111 20 11.289802 Anserini +test2183 Q0 20154730 21 11.126563 Anserini +test2183 Q0 19795399 22 11.102052 Anserini +test2183 Q0 13366001 23 11.093726 Anserini +test2183 Q0 18435038 24 11.083847 Anserini +test2183 Q0 3173389 25 11.054213 Anserini +test2183 Q0 8987061 26 11.034219 Anserini +test2183 Q0 11104804 27 11.012262 Anserini +test2183 Q0 11104805 28 11.012262 Anserini +test2183 Q0 19227588 29 10.999969 Anserini +test2183 Q0 19772003 30 10.956123 Anserini +test2184 Q0 3507953 1 8.489343 Anserini +test2184 Q0 14395143 2 8.413774 Anserini +test2184 Q0 18198369 3 8.299455 Anserini +test2184 Q0 5638425 4 8.296360 Anserini +test2184 Q0 7919590 5 8.266184 Anserini +test2184 Q0 11639823 6 8.041239 Anserini +test2184 Q0 19490526 7 7.963868 Anserini +test2184 Q0 8998606 8 7.930213 Anserini +test2184 Q0 10470344 9 7.927873 Anserini +test2184 Q0 11921830 10 7.863731 Anserini +test2184 Q0 15307027 11 7.818450 Anserini +test2184 Q0 11826054 12 7.761658 Anserini +test2184 Q0 11759801 13 7.725150 Anserini +test2184 Q0 12279385 14 7.692625 Anserini +test2184 Q0 17013326 15 7.689372 Anserini +test2184 Q0 11759783 16 7.654276 Anserini +test2184 Q0 11639824 17 7.632370 Anserini +test2184 Q0 11639830 18 7.632370 Anserini +test2184 Q0 16586410 19 7.619183 Anserini +test2184 Q0 6922272 20 7.618471 Anserini +test2184 Q0 12844145 21 7.611742 Anserini +test2184 Q0 20853958 22 7.595181 Anserini +test2184 Q0 2320254 23 7.587712 Anserini +test2184 Q0 5186336 24 7.570830 Anserini +test2184 Q0 12404106 25 7.548913 Anserini +test2184 Q0 17013328 26 7.548913 Anserini +test2184 Q0 8433892 27 7.543929 Anserini +test2184 Q0 3417054 28 7.522507 Anserini +test2184 Q0 18978922 29 7.517135 Anserini +test2184 Q0 12974055 30 7.512758 Anserini +test2185 Q0 13558361 1 16.654879 Anserini +test2185 Q0 13558362 2 15.707304 Anserini +test2185 Q0 14694483 3 15.268449 Anserini +test2185 Q0 14694476 4 14.986681 Anserini +test2185 Q0 14694482 5 14.930332 Anserini +test2185 Q0 14694487 6 14.819314 Anserini +test2185 Q0 5884547 7 14.810916 Anserini +test2185 Q0 20307994 8 13.816588 Anserini +test2185 Q0 14694485 9 13.769782 Anserini +test2185 Q0 14694477 10 13.661109 Anserini +test2185 Q0 14694480 11 13.548941 Anserini +test2185 Q0 14694479 12 13.534144 Anserini +test2185 Q0 2907471 13 13.139994 Anserini +test2185 Q0 14694486 14 12.842365 Anserini +test2185 Q0 13558363 15 12.734621 Anserini +test2185 Q0 10703455 16 12.617027 Anserini +test2185 Q0 14694481 17 12.555266 Anserini +test2185 Q0 20307995 18 12.378547 Anserini +test2185 Q0 11200932 19 12.322189 Anserini +test2185 Q0 14694478 20 12.252376 Anserini +test2185 Q0 20224920 21 12.218129 Anserini +test2185 Q0 5201572 22 12.155265 Anserini +test2185 Q0 20756973 23 12.098343 Anserini +test2185 Q0 4540807 24 12.060952 Anserini +test2185 Q0 19589093 25 12.021505 Anserini +test2185 Q0 17334255 26 12.021505 Anserini +test2185 Q0 11200109 27 11.969247 Anserini +test2185 Q0 1938160 28 11.959979 Anserini +test2185 Q0 11155968 29 11.873880 Anserini +test2185 Q0 17988918 30 11.801650 Anserini +test2186 Q0 475772 1 12.126297 Anserini +test2186 Q0 18787754 2 10.811061 Anserini +test2186 Q0 16477937 3 10.810402 Anserini +test2186 Q0 11856926 4 10.769375 Anserini +test2186 Q0 6498364 5 10.754147 Anserini +test2186 Q0 7948620 6 10.573818 Anserini +test2186 Q0 8247220 7 10.568157 Anserini +test2186 Q0 7908128 8 10.469233 Anserini +test2186 Q0 3510917 9 10.464975 Anserini +test2186 Q0 2785631 10 10.343958 Anserini +test2186 Q0 20176842 11 10.330862 Anserini +test2186 Q0 7948621 12 10.304784 Anserini +test2186 Q0 9504397 13 10.225093 Anserini +test2186 Q0 5030624 14 10.214558 Anserini +test2186 Q0 16477939 15 9.998008 Anserini +test2186 Q0 3155081 16 9.925952 Anserini +test2186 Q0 577564 17 9.881528 Anserini +test2186 Q0 475783 18 9.790179 Anserini +test2186 Q0 19308325 19 9.755623 Anserini +test2186 Q0 2019094 20 9.754507 Anserini +test2186 Q0 19670817 21 9.737659 Anserini +test2186 Q0 8247217 22 9.610895 Anserini +test2186 Q0 2279816 23 9.567336 Anserini +test2186 Q0 15145847 24 9.561525 Anserini +test2186 Q0 3155077 25 9.551654 Anserini +test2186 Q0 20420456 26 9.536160 Anserini +test2186 Q0 4461832 27 9.514579 Anserini +test2186 Q0 4314816 28 9.507233 Anserini +test2186 Q0 919195 29 9.417856 Anserini +test2186 Q0 7908138 30 9.402730 Anserini +test2187 Q0 21353 1 17.993792 Anserini +test2187 Q0 2848385 2 16.702597 Anserini +test2187 Q0 572093 3 15.888523 Anserini +test2187 Q0 2848383 4 15.468699 Anserini +test2187 Q0 18696699 5 14.582914 Anserini +test2187 Q0 631191 6 14.345541 Anserini +test2187 Q0 631195 7 14.002842 Anserini +test2187 Q0 21354 8 12.901848 Anserini +test2187 Q0 572092 9 12.671259 Anserini +test2187 Q0 3065919 10 12.607576 Anserini +test2187 Q0 773996 11 12.468996 Anserini +test2187 Q0 719078 12 12.456441 Anserini +test2187 Q0 123690 13 12.152878 Anserini +test2187 Q0 3065918 14 12.084956 Anserini +test2187 Q0 2848387 15 12.052319 Anserini +test2187 Q0 572102 16 11.690657 Anserini +test2187 Q0 2848384 17 11.537657 Anserini +test2187 Q0 12858621 18 11.514397 Anserini +test2187 Q0 2811766 19 11.379677 Anserini +test2187 Q0 7407931 20 11.320071 Anserini +test2187 Q0 2848382 21 11.062572 Anserini +test2187 Q0 685288 22 10.991812 Anserini +test2187 Q0 13642159 23 10.932282 Anserini +test2187 Q0 18696700 24 10.928714 Anserini +test2187 Q0 2635197 25 10.762710 Anserini +test2187 Q0 2848389 26 10.746822 Anserini +test2187 Q0 8209496 27 10.729654 Anserini +test2187 Q0 6473620 28 10.698314 Anserini +test2187 Q0 10085371 29 10.686536 Anserini +test2187 Q0 19258766 30 10.648204 Anserini +test2188 Q0 19424420 1 9.358721 Anserini +test2188 Q0 19424391 2 9.191152 Anserini +test2188 Q0 17199011 3 9.174432 Anserini +test2188 Q0 16059169 4 8.957886 Anserini +test2188 Q0 623766 5 8.936600 Anserini +test2188 Q0 1594699 6 8.640350 Anserini +test2188 Q0 11103592 7 8.559760 Anserini +test2188 Q0 4338408 8 8.510796 Anserini +test2188 Q0 1403395 9 8.508663 Anserini +test2188 Q0 19152779 10 8.480776 Anserini +test2188 Q0 6106694 11 8.468936 Anserini +test2188 Q0 9316582 12 8.335847 Anserini +test2188 Q0 12672229 13 8.317677 Anserini +test2188 Q0 15792261 14 8.301927 Anserini +test2188 Q0 17176549 15 8.266641 Anserini +test2188 Q0 5404354 16 8.219794 Anserini +test2188 Q0 11166989 17 8.216035 Anserini +test2188 Q0 1970952 18 8.194286 Anserini +test2188 Q0 4661401 19 8.134378 Anserini +test2188 Q0 2192596 20 8.125922 Anserini +test2188 Q0 1779709 21 8.072190 Anserini +test2188 Q0 855760 22 8.071957 Anserini +test2188 Q0 8321655 23 8.060785 Anserini +test2188 Q0 19715120 24 8.060785 Anserini +test2188 Q0 13701159 25 8.060785 Anserini +test2188 Q0 662829 26 8.056043 Anserini +test2188 Q0 10051222 27 8.048623 Anserini +test2188 Q0 6712660 28 8.045240 Anserini +test2188 Q0 19424427 29 8.039330 Anserini +test2188 Q0 19424435 30 8.035257 Anserini +test2189 Q0 11425556 1 18.594631 Anserini +test2189 Q0 18591821 2 17.491070 Anserini +test2189 Q0 8105355 3 16.772562 Anserini +test2189 Q0 18478412 4 16.518288 Anserini +test2189 Q0 20575715 5 15.668363 Anserini +test2189 Q0 2288760 6 15.408158 Anserini +test2189 Q0 16470107 7 15.357709 Anserini +test2189 Q0 15173726 8 15.182880 Anserini +test2189 Q0 15108448 9 15.085137 Anserini +test2189 Q0 6957821 10 15.070645 Anserini +test2189 Q0 20839029 11 15.037506 Anserini +test2189 Q0 5165732 12 15.001189 Anserini +test2189 Q0 7635064 13 14.970480 Anserini +test2189 Q0 13534840 14 14.911451 Anserini +test2189 Q0 3233226 15 14.911451 Anserini +test2189 Q0 16893305 16 14.839920 Anserini +test2189 Q0 13343126 17 14.810090 Anserini +test2189 Q0 616381 18 14.706867 Anserini +test2189 Q0 11519225 19 14.691592 Anserini +test2189 Q0 6552934 20 14.654771 Anserini +test2189 Q0 20883576 21 14.581823 Anserini +test2189 Q0 1695970 22 14.467403 Anserini +test2189 Q0 16817874 23 14.445753 Anserini +test2189 Q0 11704560 24 14.442267 Anserini +test2189 Q0 19669306 25 14.338951 Anserini +test2189 Q0 8924911 26 14.282389 Anserini +test2189 Q0 9737110 27 14.225781 Anserini +test2189 Q0 18915390 28 14.194356 Anserini +test2189 Q0 16773630 29 14.161339 Anserini +test2189 Q0 3272505 30 14.021739 Anserini +test219 Q0 4321006 1 14.624397 Anserini +test219 Q0 5420040 2 13.686829 Anserini +test219 Q0 86272 3 13.631619 Anserini +test219 Q0 5464111 4 13.610784 Anserini +test219 Q0 86252 5 12.880610 Anserini +test219 Q0 3770729 6 12.867522 Anserini +test219 Q0 7594617 7 12.680548 Anserini +test219 Q0 6167072 8 12.638577 Anserini +test219 Q0 165755 9 12.455371 Anserini +test219 Q0 284632 10 12.432388 Anserini +test219 Q0 14622496 11 12.367447 Anserini +test219 Q0 16352612 12 12.351608 Anserini +test219 Q0 3427163 13 12.236564 Anserini +test219 Q0 20983201 14 12.216998 Anserini +test219 Q0 4514044 15 12.177669 Anserini +test219 Q0 7575042 16 12.145656 Anserini +test219 Q0 20830994 17 12.073552 Anserini +test219 Q0 8622720 18 12.053319 Anserini +test219 Q0 8419395 19 11.954995 Anserini +test219 Q0 708079 20 11.899471 Anserini +test219 Q0 8092198 21 11.748735 Anserini +test219 Q0 51522 22 11.737434 Anserini +test219 Q0 980907 23 11.730709 Anserini +test219 Q0 3831775 24 11.728169 Anserini +test219 Q0 4316915 25 11.696434 Anserini +test219 Q0 7594615 26 11.575960 Anserini +test219 Q0 182704 27 11.549211 Anserini +test219 Q0 14180481 28 11.513760 Anserini +test219 Q0 2207274 29 11.478880 Anserini +test219 Q0 15216608 30 11.450690 Anserini +test2190 Q0 4096871 1 28.202097 Anserini +test2190 Q0 4096858 2 27.574923 Anserini +test2190 Q0 3622037 3 25.163006 Anserini +test2190 Q0 4096868 4 24.962559 Anserini +test2190 Q0 4096859 5 24.642353 Anserini +test2190 Q0 8477993 6 24.642353 Anserini +test2190 Q0 4096864 7 23.523273 Anserini +test2190 Q0 7751865 8 23.330746 Anserini +test2190 Q0 6664348 9 22.996054 Anserini +test2190 Q0 9667428 10 22.348518 Anserini +test2190 Q0 4950472 11 21.621763 Anserini +test2190 Q0 4096860 12 21.575747 Anserini +test2190 Q0 6088796 13 21.007240 Anserini +test2190 Q0 7751864 14 20.812454 Anserini +test2190 Q0 12380970 15 20.812454 Anserini +test2190 Q0 9538934 16 20.772005 Anserini +test2190 Q0 4096865 17 20.621380 Anserini +test2190 Q0 4096861 18 20.433903 Anserini +test2190 Q0 4096869 19 20.185251 Anserini +test2190 Q0 4788928 20 20.056459 Anserini +test2190 Q0 5839225 21 20.056459 Anserini +test2190 Q0 15400440 22 19.970497 Anserini +test2190 Q0 16968344 23 19.970497 Anserini +test2190 Q0 16968356 24 19.970497 Anserini +test2190 Q0 8600041 25 19.760269 Anserini +test2190 Q0 7751862 26 19.760269 Anserini +test2190 Q0 3622038 27 19.723450 Anserini +test2190 Q0 1682778 28 19.723450 Anserini +test2190 Q0 10336118 29 19.554417 Anserini +test2190 Q0 17472752 30 19.554417 Anserini +test2191 Q0 19361195 1 17.281303 Anserini +test2191 Q0 19361198 2 17.253017 Anserini +test2191 Q0 19361194 3 17.221004 Anserini +test2191 Q0 19361203 4 16.965769 Anserini +test2191 Q0 19361200 5 16.791164 Anserini +test2191 Q0 17932789 6 16.627819 Anserini +test2191 Q0 16821420 7 16.151133 Anserini +test2191 Q0 5946061 8 15.851237 Anserini +test2191 Q0 15988452 9 15.579195 Anserini +test2191 Q0 4338 10 15.512177 Anserini +test2191 Q0 9485487 11 15.498598 Anserini +test2191 Q0 20338879 12 15.164879 Anserini +test2191 Q0 15988426 13 15.083014 Anserini +test2191 Q0 4391 14 15.016838 Anserini +test2191 Q0 19361197 15 14.975031 Anserini +test2191 Q0 9485506 16 14.970200 Anserini +test2191 Q0 17539224 17 14.755773 Anserini +test2191 Q0 17464378 18 14.605586 Anserini +test2191 Q0 19361202 19 14.524134 Anserini +test2191 Q0 3193972 20 14.490021 Anserini +test2191 Q0 19361199 21 14.423264 Anserini +test2191 Q0 12839067 22 14.233886 Anserini +test2191 Q0 18950814 23 14.093389 Anserini +test2191 Q0 13550351 24 13.817285 Anserini +test2191 Q0 16439296 25 13.773643 Anserini +test2191 Q0 9485507 26 13.747396 Anserini +test2191 Q0 4498156 27 13.739629 Anserini +test2191 Q0 15960681 28 13.723475 Anserini +test2191 Q0 15988431 29 13.723475 Anserini +test2191 Q0 15636526 30 13.475191 Anserini +test2192 Q0 15053439 1 19.384996 Anserini +test2192 Q0 18332597 2 16.112165 Anserini +test2192 Q0 15053444 3 15.368994 Anserini +test2192 Q0 7073251 4 14.813545 Anserini +test2192 Q0 5611161 5 14.767647 Anserini +test2192 Q0 17989619 6 14.697309 Anserini +test2192 Q0 14007954 7 13.781341 Anserini +test2192 Q0 14963054 8 13.697561 Anserini +test2192 Q0 17841628 9 13.690225 Anserini +test2192 Q0 13779292 10 13.347334 Anserini +test2192 Q0 20047728 11 13.202054 Anserini +test2192 Q0 5127145 12 13.064108 Anserini +test2192 Q0 442597 13 13.044822 Anserini +test2192 Q0 17983196 14 13.001370 Anserini +test2192 Q0 8559942 15 12.965503 Anserini +test2192 Q0 15053445 16 12.927412 Anserini +test2192 Q0 15053450 17 12.553585 Anserini +test2192 Q0 14843206 18 12.500872 Anserini +test2192 Q0 17983193 19 12.473903 Anserini +test2192 Q0 2885551 20 12.421871 Anserini +test2192 Q0 18015253 21 12.394340 Anserini +test2192 Q0 15053448 22 12.362753 Anserini +test2192 Q0 17841631 23 12.344583 Anserini +test2192 Q0 17983197 24 12.306962 Anserini +test2192 Q0 12727993 25 12.289852 Anserini +test2192 Q0 14689289 26 12.254113 Anserini +test2192 Q0 4177822 27 12.205564 Anserini +test2192 Q0 5103559 28 12.142643 Anserini +test2192 Q0 17854210 29 12.056792 Anserini +test2192 Q0 17841636 30 12.055911 Anserini +test2193 Q0 494136 1 15.592514 Anserini +test2193 Q0 12503522 2 14.754300 Anserini +test2193 Q0 6003977 3 14.736295 Anserini +test2193 Q0 5999230 4 14.594610 Anserini +test2193 Q0 11826347 5 14.590648 Anserini +test2193 Q0 9759 6 14.495205 Anserini +test2193 Q0 19459073 7 14.332432 Anserini +test2193 Q0 428038 8 13.947875 Anserini +test2193 Q0 18133653 9 13.902652 Anserini +test2193 Q0 11812949 10 13.703490 Anserini +test2193 Q0 5991286 11 13.606189 Anserini +test2193 Q0 9770 12 13.452472 Anserini +test2193 Q0 6726334 13 13.443044 Anserini +test2193 Q0 2432744 14 13.437263 Anserini +test2193 Q0 427808 15 13.397201 Anserini +test2193 Q0 15625262 16 13.393453 Anserini +test2193 Q0 9778 17 13.280124 Anserini +test2193 Q0 13102583 18 13.140313 Anserini +test2193 Q0 11826400 19 13.068824 Anserini +test2193 Q0 9811 20 13.005175 Anserini +test2193 Q0 6149755 21 12.989940 Anserini +test2193 Q0 19948412 22 12.950396 Anserini +test2193 Q0 7406892 23 12.938188 Anserini +test2193 Q0 88502 24 12.929877 Anserini +test2193 Q0 427834 25 12.923265 Anserini +test2193 Q0 5999280 26 12.919584 Anserini +test2193 Q0 5747020 27 12.898524 Anserini +test2193 Q0 9238037 28 12.881394 Anserini +test2193 Q0 15333854 29 12.854103 Anserini +test2193 Q0 5999351 30 12.809568 Anserini +test2194 Q0 16405306 1 10.982649 Anserini +test2194 Q0 3846985 2 10.028986 Anserini +test2194 Q0 13248098 3 9.748441 Anserini +test2194 Q0 16405305 4 9.684128 Anserini +test2194 Q0 3846984 5 9.630583 Anserini +test2194 Q0 15490529 6 9.515739 Anserini +test2194 Q0 17609027 7 9.435438 Anserini +test2194 Q0 17077374 8 9.094302 Anserini +test2194 Q0 10097757 9 9.058720 Anserini +test2194 Q0 20145904 10 8.924475 Anserini +test2194 Q0 20145906 11 8.924475 Anserini +test2194 Q0 19804045 12 8.854267 Anserini +test2194 Q0 9015831 13 8.853675 Anserini +test2194 Q0 803012 14 8.830467 Anserini +test2194 Q0 13324204 15 8.805363 Anserini +test2194 Q0 12897762 16 8.802354 Anserini +test2194 Q0 8845907 17 8.765346 Anserini +test2194 Q0 9015830 18 8.755462 Anserini +test2194 Q0 15725883 19 8.733544 Anserini +test2194 Q0 11032707 20 8.705652 Anserini +test2194 Q0 8819032 21 8.701279 Anserini +test2194 Q0 6158120 22 8.691017 Anserini +test2194 Q0 17605735 23 8.660561 Anserini +test2194 Q0 20055124 24 8.658049 Anserini +test2194 Q0 6158123 25 8.648460 Anserini +test2194 Q0 2981548 26 8.622100 Anserini +test2194 Q0 6153842 27 8.602427 Anserini +test2194 Q0 11449904 28 8.497301 Anserini +test2194 Q0 17202858 29 8.487187 Anserini +test2194 Q0 17437925 30 8.457887 Anserini +test2195 Q0 8155850 1 15.105652 Anserini +test2195 Q0 8155851 2 11.792169 Anserini +test2195 Q0 4637973 3 11.097547 Anserini +test2195 Q0 8155842 4 11.001753 Anserini +test2195 Q0 8155848 5 10.827976 Anserini +test2195 Q0 2893276 6 10.374400 Anserini +test2195 Q0 8155827 7 10.112307 Anserini +test2195 Q0 16566159 8 10.027583 Anserini +test2195 Q0 20279637 9 9.940549 Anserini +test2195 Q0 6703791 10 9.586810 Anserini +test2195 Q0 4637981 11 9.397132 Anserini +test2195 Q0 4637972 12 9.397132 Anserini +test2195 Q0 8155825 13 9.373219 Anserini +test2195 Q0 16826067 14 9.366893 Anserini +test2195 Q0 16566160 15 9.302203 Anserini +test2195 Q0 2893275 16 9.257768 Anserini +test2195 Q0 15523158 17 9.257768 Anserini +test2195 Q0 13226238 18 9.245241 Anserini +test2195 Q0 6703776 19 9.214023 Anserini +test2195 Q0 8155830 20 9.214023 Anserini +test2195 Q0 16566156 21 9.204242 Anserini +test2195 Q0 4637977 22 9.178585 Anserini +test2195 Q0 8155840 23 9.178585 Anserini +test2195 Q0 16566153 24 9.099225 Anserini +test2195 Q0 4637975 25 9.010939 Anserini +test2195 Q0 5518798 26 9.002659 Anserini +test2195 Q0 4637979 27 8.980182 Anserini +test2195 Q0 8155826 28 8.949635 Anserini +test2195 Q0 8155833 29 8.949635 Anserini +test2195 Q0 8155846 30 8.949635 Anserini +test2196 Q0 16858042 1 17.378445 Anserini +test2196 Q0 3200034 2 17.089727 Anserini +test2196 Q0 17736394 3 16.960899 Anserini +test2196 Q0 7002540 4 16.916882 Anserini +test2196 Q0 394104 5 16.916437 Anserini +test2196 Q0 3200083 6 16.660688 Anserini +test2196 Q0 4243386 7 16.634130 Anserini +test2196 Q0 394375 8 16.551765 Anserini +test2196 Q0 5253698 9 16.456089 Anserini +test2196 Q0 7002472 10 16.417074 Anserini +test2196 Q0 12304556 11 16.411055 Anserini +test2196 Q0 394863 12 16.406698 Anserini +test2196 Q0 403942 13 16.403383 Anserini +test2196 Q0 7000834 14 16.306725 Anserini +test2196 Q0 3200087 15 16.181967 Anserini +test2196 Q0 397189 16 16.160797 Anserini +test2196 Q0 9338449 17 16.160700 Anserini +test2196 Q0 4243418 18 16.053690 Anserini +test2196 Q0 2554655 19 16.028124 Anserini +test2196 Q0 4243475 20 15.988955 Anserini +test2196 Q0 19481087 21 15.988955 Anserini +test2196 Q0 13303389 22 15.938910 Anserini +test2196 Q0 2515105 23 15.933751 Anserini +test2196 Q0 4698628 24 15.907971 Anserini +test2196 Q0 18779851 25 15.876390 Anserini +test2196 Q0 10076518 26 15.854692 Anserini +test2196 Q0 17473814 27 15.852910 Anserini +test2196 Q0 17736274 28 15.851051 Anserini +test2196 Q0 15876405 29 15.797455 Anserini +test2196 Q0 18759130 30 15.777473 Anserini +test2197 Q0 7776574 1 12.842785 Anserini +test2197 Q0 2199491 2 11.690170 Anserini +test2197 Q0 7791654 3 11.543895 Anserini +test2197 Q0 16480104 4 11.539088 Anserini +test2197 Q0 17416721 5 11.298632 Anserini +test2197 Q0 20884170 6 11.254900 Anserini +test2197 Q0 15722477 7 11.060518 Anserini +test2197 Q0 18433689 8 10.968318 Anserini +test2197 Q0 6232837 9 10.850643 Anserini +test2197 Q0 3645387 10 10.763803 Anserini +test2197 Q0 15351157 11 10.748594 Anserini +test2197 Q0 12516203 12 10.727247 Anserini +test2197 Q0 9258700 13 10.621448 Anserini +test2197 Q0 18566253 14 10.536382 Anserini +test2197 Q0 17954170 15 10.527811 Anserini +test2197 Q0 15320317 16 10.491923 Anserini +test2197 Q0 5736106 17 10.490753 Anserini +test2197 Q0 4036689 18 10.480743 Anserini +test2197 Q0 16496133 19 10.474918 Anserini +test2197 Q0 1434614 20 10.470928 Anserini +test2197 Q0 13702484 21 10.448736 Anserini +test2197 Q0 1542390 22 10.394523 Anserini +test2197 Q0 10783417 23 10.379016 Anserini +test2197 Q0 6481395 24 10.373020 Anserini +test2197 Q0 15221695 25 10.364649 Anserini +test2197 Q0 11419690 26 10.364649 Anserini +test2197 Q0 19305376 27 10.363793 Anserini +test2197 Q0 4945765 28 10.325415 Anserini +test2197 Q0 9151579 29 10.318836 Anserini +test2197 Q0 12426501 30 10.264377 Anserini +test2198 Q0 17161296 1 14.975065 Anserini +test2198 Q0 9166890 2 14.077864 Anserini +test2198 Q0 14786851 3 13.959872 Anserini +test2198 Q0 3544011 4 13.754855 Anserini +test2198 Q0 2017423 5 13.326746 Anserini +test2198 Q0 12322172 6 12.966736 Anserini +test2198 Q0 3468188 7 12.914853 Anserini +test2198 Q0 12192830 8 12.895685 Anserini +test2198 Q0 17161291 9 12.735548 Anserini +test2198 Q0 13314131 10 12.668718 Anserini +test2198 Q0 19002095 11 12.617875 Anserini +test2198 Q0 19002094 12 12.466281 Anserini +test2198 Q0 4717423 13 12.392872 Anserini +test2198 Q0 430425 14 12.390741 Anserini +test2198 Q0 4271105 15 12.366067 Anserini +test2198 Q0 8395976 16 12.330375 Anserini +test2198 Q0 12322173 17 12.312864 Anserini +test2198 Q0 210044 18 12.308502 Anserini +test2198 Q0 11203488 19 12.307038 Anserini +test2198 Q0 7595554 20 12.245261 Anserini +test2198 Q0 12057076 21 12.213523 Anserini +test2198 Q0 7882187 22 12.187759 Anserini +test2198 Q0 12825393 23 12.182473 Anserini +test2198 Q0 15015938 24 12.152104 Anserini +test2198 Q0 556204 25 12.102117 Anserini +test2198 Q0 6172223 26 12.092539 Anserini +test2198 Q0 5561284 27 11.937358 Anserini +test2198 Q0 14832898 28 11.827863 Anserini +test2198 Q0 17161305 29 11.809318 Anserini +test2198 Q0 12758429 30 11.671287 Anserini +test2199 Q0 10503191 1 12.026378 Anserini +test2199 Q0 10503190 2 11.751349 Anserini +test2199 Q0 10503188 3 11.714302 Anserini +test2199 Q0 17816315 4 11.566136 Anserini +test2199 Q0 6915925 5 11.391079 Anserini +test2199 Q0 3829327 6 11.281137 Anserini +test2199 Q0 5282218 7 11.124412 Anserini +test2199 Q0 17816316 8 11.024305 Anserini +test2199 Q0 18035715 9 10.918511 Anserini +test2199 Q0 18035828 10 10.918511 Anserini +test2199 Q0 18035836 11 10.918511 Anserini +test2199 Q0 7426497 12 10.918511 Anserini +test2199 Q0 1824929 13 10.873145 Anserini +test2199 Q0 6915974 14 10.866064 Anserini +test2199 Q0 1208643 15 10.807848 Anserini +test2199 Q0 6915957 16 10.743414 Anserini +test2199 Q0 6915986 17 10.743414 Anserini +test2199 Q0 5282183 18 10.743414 Anserini +test2199 Q0 2424152 19 10.679823 Anserini +test2199 Q0 8426533 20 10.483314 Anserini +test2199 Q0 8079181 21 10.482880 Anserini +test2199 Q0 8079192 22 10.482880 Anserini +test2199 Q0 1208633 23 10.422164 Anserini +test2199 Q0 16351126 24 10.422164 Anserini +test2199 Q0 1208641 25 10.422164 Anserini +test2199 Q0 9331957 26 10.413323 Anserini +test2199 Q0 6915930 27 10.386634 Anserini +test2199 Q0 5282204 28 10.386634 Anserini +test2199 Q0 8053364 29 10.361654 Anserini +test2199 Q0 5282267 30 10.344760 Anserini +test22 Q0 13332605 1 10.603059 Anserini +test22 Q0 7038375 2 10.145387 Anserini +test22 Q0 15687105 3 10.093009 Anserini +test22 Q0 7861574 4 9.432740 Anserini +test22 Q0 6979182 5 9.025496 Anserini +test22 Q0 17234648 6 8.867408 Anserini +test22 Q0 19896567 7 8.826730 Anserini +test22 Q0 17744272 8 8.805303 Anserini +test22 Q0 4399702 9 8.783439 Anserini +test22 Q0 12198004 10 8.778091 Anserini +test22 Q0 3471556 11 8.769588 Anserini +test22 Q0 14860161 12 8.713574 Anserini +test22 Q0 12064254 13 8.711208 Anserini +test22 Q0 1696637 14 8.664259 Anserini +test22 Q0 14679042 15 8.650155 Anserini +test22 Q0 12102754 16 8.634463 Anserini +test22 Q0 12645714 17 8.623737 Anserini +test22 Q0 2227856 18 8.516616 Anserini +test22 Q0 10131770 19 8.503439 Anserini +test22 Q0 14006156 20 8.420642 Anserini +test22 Q0 13398062 21 8.397824 Anserini +test22 Q0 17992935 22 8.397824 Anserini +test22 Q0 1844004 23 8.236878 Anserini +test22 Q0 713410 24 8.161726 Anserini +test22 Q0 5521231 25 8.153948 Anserini +test22 Q0 3848306 26 8.152397 Anserini +test22 Q0 18474900 27 8.102242 Anserini +test22 Q0 4709194 28 8.087605 Anserini +test22 Q0 20278161 29 8.080004 Anserini +test22 Q0 680201 30 8.077291 Anserini +test220 Q0 2556162 1 17.952345 Anserini +test220 Q0 2556161 2 16.945990 Anserini +test220 Q0 9602713 3 16.649069 Anserini +test220 Q0 5320721 4 15.418707 Anserini +test220 Q0 9602716 5 15.002537 Anserini +test220 Q0 9602714 6 14.946822 Anserini +test220 Q0 11078051 7 14.939280 Anserini +test220 Q0 5320720 8 14.869605 Anserini +test220 Q0 2556163 9 14.800800 Anserini +test220 Q0 9602712 10 14.800800 Anserini +test220 Q0 9273437 11 14.716903 Anserini +test220 Q0 13650641 12 14.513337 Anserini +test220 Q0 2556166 13 14.479997 Anserini +test220 Q0 13650630 14 14.428178 Anserini +test220 Q0 9602715 15 14.027113 Anserini +test220 Q0 6128087 16 13.912145 Anserini +test220 Q0 2556165 17 13.220003 Anserini +test220 Q0 7691960 18 13.197886 Anserini +test220 Q0 6128086 19 13.041341 Anserini +test220 Q0 2558176 20 12.964178 Anserini +test220 Q0 856863 21 12.964178 Anserini +test220 Q0 1007886 22 12.953969 Anserini +test220 Q0 1095614 23 12.940523 Anserini +test220 Q0 1095621 24 12.841127 Anserini +test220 Q0 9273432 25 12.807599 Anserini +test220 Q0 369795 26 12.773924 Anserini +test220 Q0 2556169 27 12.713938 Anserini +test220 Q0 1095615 28 12.482315 Anserini +test220 Q0 16245274 29 12.440388 Anserini +test220 Q0 16245275 30 12.440388 Anserini +test2200 Q0 6454322 1 14.929653 Anserini +test2200 Q0 6454332 2 14.908815 Anserini +test2200 Q0 7134497 3 13.999699 Anserini +test2200 Q0 15689724 4 13.911728 Anserini +test2200 Q0 6454339 5 13.593278 Anserini +test2200 Q0 13596838 6 13.185545 Anserini +test2200 Q0 6454331 7 12.975566 Anserini +test2200 Q0 4073418 8 12.820683 Anserini +test2200 Q0 7134503 9 12.679880 Anserini +test2200 Q0 5614900 10 12.238099 Anserini +test2200 Q0 3424657 11 12.179389 Anserini +test2200 Q0 9079143 12 12.082332 Anserini +test2200 Q0 6454317 13 12.067032 Anserini +test2200 Q0 9079142 14 11.984299 Anserini +test2200 Q0 5198463 15 11.775260 Anserini +test2200 Q0 15646146 16 11.621994 Anserini +test2200 Q0 20965452 17 11.618912 Anserini +test2200 Q0 6222649 18 11.616676 Anserini +test2200 Q0 2178775 19 11.532824 Anserini +test2200 Q0 10209833 20 11.482151 Anserini +test2200 Q0 13596834 21 11.348497 Anserini +test2200 Q0 16265121 22 11.304660 Anserini +test2200 Q0 9312647 23 11.262089 Anserini +test2200 Q0 6454350 24 11.247684 Anserini +test2200 Q0 19035458 25 10.897637 Anserini +test2200 Q0 4537156 26 10.897637 Anserini +test2200 Q0 11267079 27 10.869277 Anserini +test2200 Q0 13408924 28 10.865705 Anserini +test2200 Q0 15689717 29 10.821407 Anserini +test2200 Q0 3405207 30 10.804711 Anserini +test2201 Q0 18070454 1 18.776091 Anserini +test2201 Q0 11174681 2 17.593016 Anserini +test2201 Q0 18553344 3 17.262531 Anserini +test2201 Q0 18553291 4 17.068497 Anserini +test2201 Q0 18070425 5 16.941217 Anserini +test2201 Q0 5282272 6 16.814217 Anserini +test2201 Q0 5282262 7 16.366234 Anserini +test2201 Q0 1208691 8 16.281414 Anserini +test2201 Q0 18553284 9 16.103664 Anserini +test2201 Q0 17628852 10 16.059153 Anserini +test2201 Q0 18553347 11 15.592939 Anserini +test2201 Q0 5282200 12 15.571354 Anserini +test2201 Q0 4410972 13 15.316785 Anserini +test2201 Q0 5282224 14 15.274106 Anserini +test2201 Q0 18553333 15 15.089046 Anserini +test2201 Q0 5282261 16 15.026798 Anserini +test2201 Q0 10644729 17 14.857571 Anserini +test2201 Q0 10644739 18 14.857571 Anserini +test2201 Q0 5282237 19 14.828514 Anserini +test2201 Q0 5282246 20 14.828514 Anserini +test2201 Q0 9220103 21 14.769778 Anserini +test2201 Q0 11264471 22 14.612641 Anserini +test2201 Q0 8828988 23 14.612641 Anserini +test2201 Q0 5282241 24 14.577589 Anserini +test2201 Q0 11174678 25 14.558438 Anserini +test2201 Q0 5282222 26 14.286503 Anserini +test2201 Q0 5282242 27 14.286503 Anserini +test2201 Q0 5282250 28 14.286503 Anserini +test2201 Q0 5282251 29 14.286503 Anserini +test2201 Q0 1208701 30 14.267660 Anserini +test2202 Q0 3377836 1 12.931634 Anserini +test2202 Q0 659008 2 11.868856 Anserini +test2202 Q0 8299689 3 11.819074 Anserini +test2202 Q0 4994775 4 11.108269 Anserini +test2202 Q0 15221661 5 11.104481 Anserini +test2202 Q0 4714790 6 10.781744 Anserini +test2202 Q0 8948217 7 10.690944 Anserini +test2202 Q0 12287416 8 10.537993 Anserini +test2202 Q0 424496 9 10.436852 Anserini +test2202 Q0 659014 10 10.265882 Anserini +test2202 Q0 7322563 11 10.256304 Anserini +test2202 Q0 16911324 12 10.252443 Anserini +test2202 Q0 6345067 13 10.241408 Anserini +test2202 Q0 8481051 14 10.133598 Anserini +test2202 Q0 659004 15 10.091851 Anserini +test2202 Q0 8162424 16 10.082166 Anserini +test2202 Q0 20570099 17 10.081273 Anserini +test2202 Q0 7621658 18 10.052666 Anserini +test2202 Q0 14333336 19 9.965786 Anserini +test2202 Q0 20570104 20 9.965786 Anserini +test2202 Q0 17832751 21 9.943687 Anserini +test2202 Q0 13543305 22 9.881643 Anserini +test2202 Q0 11348757 23 9.879120 Anserini +test2202 Q0 4994794 24 9.827619 Anserini +test2202 Q0 4994778 25 9.797953 Anserini +test2202 Q0 18617706 26 9.750399 Anserini +test2202 Q0 13004518 27 9.719701 Anserini +test2202 Q0 5622723 28 9.635885 Anserini +test2202 Q0 7781529 29 9.635885 Anserini +test2202 Q0 4994774 30 9.577337 Anserini +test2203 Q0 8429112 1 11.197313 Anserini +test2203 Q0 5524571 2 10.808084 Anserini +test2203 Q0 9347365 3 10.603648 Anserini +test2203 Q0 20458444 4 10.457035 Anserini +test2203 Q0 11670042 5 10.395510 Anserini +test2203 Q0 16028187 6 10.351532 Anserini +test2203 Q0 19943127 7 10.259130 Anserini +test2203 Q0 14953266 8 10.234606 Anserini +test2203 Q0 13550452 9 10.212140 Anserini +test2203 Q0 3966334 10 10.205587 Anserini +test2203 Q0 17660732 11 10.143400 Anserini +test2203 Q0 19547736 12 10.140720 Anserini +test2203 Q0 20403670 13 10.107824 Anserini +test2203 Q0 6529291 14 10.044203 Anserini +test2203 Q0 13724620 15 10.044203 Anserini +test2203 Q0 8671393 16 10.040495 Anserini +test2203 Q0 5558491 17 10.022841 Anserini +test2203 Q0 3966330 18 9.994178 Anserini +test2203 Q0 8429114 19 9.985729 Anserini +test2203 Q0 4845621 20 9.983202 Anserini +test2203 Q0 3162056 21 9.925142 Anserini +test2203 Q0 15422954 22 9.909605 Anserini +test2203 Q0 9568693 23 9.891035 Anserini +test2203 Q0 20158527 24 9.862371 Anserini +test2203 Q0 13119581 25 9.850792 Anserini +test2203 Q0 8556484 26 9.814748 Anserini +test2203 Q0 18880799 27 9.775458 Anserini +test2203 Q0 8580211 28 9.774117 Anserini +test2203 Q0 12102644 29 9.772991 Anserini +test2203 Q0 11944969 30 9.765676 Anserini +test2204 Q0 1459103 1 17.559578 Anserini +test2204 Q0 1459112 2 17.489969 Anserini +test2204 Q0 1459075 3 17.112471 Anserini +test2204 Q0 7112340 4 17.049469 Anserini +test2204 Q0 5483527 5 17.015829 Anserini +test2204 Q0 1459085 6 16.970165 Anserini +test2204 Q0 7112344 7 16.896433 Anserini +test2204 Q0 5483533 8 16.720978 Anserini +test2204 Q0 1459119 9 16.658937 Anserini +test2204 Q0 6622070 10 16.477123 Anserini +test2204 Q0 3874749 11 16.410721 Anserini +test2204 Q0 8120190 12 16.280035 Anserini +test2204 Q0 1459097 13 16.215702 Anserini +test2204 Q0 13893686 14 16.187820 Anserini +test2204 Q0 1459118 15 16.161560 Anserini +test2204 Q0 17237432 16 16.160009 Anserini +test2204 Q0 1459117 17 16.094410 Anserini +test2204 Q0 10048135 18 16.094410 Anserini +test2204 Q0 1459109 19 16.084194 Anserini +test2204 Q0 1459077 20 16.009987 Anserini +test2204 Q0 3874727 21 15.985655 Anserini +test2204 Q0 1459091 22 15.969777 Anserini +test2204 Q0 1459081 23 15.951174 Anserini +test2204 Q0 7112341 24 15.941439 Anserini +test2204 Q0 1459086 25 15.850506 Anserini +test2204 Q0 1459114 26 15.835548 Anserini +test2204 Q0 7112343 27 15.828120 Anserini +test2204 Q0 1459115 28 15.808064 Anserini +test2204 Q0 1459110 29 15.776251 Anserini +test2204 Q0 1459098 30 15.714381 Anserini +test2205 Q0 15701997 1 21.708324 Anserini +test2205 Q0 15701996 2 20.395971 Anserini +test2205 Q0 10714763 3 17.399809 Anserini +test2205 Q0 16453773 4 17.081034 Anserini +test2205 Q0 16453775 5 17.081034 Anserini +test2205 Q0 7306917 6 16.729002 Anserini +test2205 Q0 8054614 7 16.289034 Anserini +test2205 Q0 13799927 8 16.277447 Anserini +test2205 Q0 19055116 9 16.204729 Anserini +test2205 Q0 12570063 10 16.201382 Anserini +test2205 Q0 11076395 11 15.980578 Anserini +test2205 Q0 18362159 12 15.668878 Anserini +test2205 Q0 16054899 13 15.668770 Anserini +test2205 Q0 18151928 14 15.623017 Anserini +test2205 Q0 16587820 15 15.543347 Anserini +test2205 Q0 17111139 16 15.521175 Anserini +test2205 Q0 14831514 17 15.501373 Anserini +test2205 Q0 7550986 18 15.468767 Anserini +test2205 Q0 12846155 19 15.458198 Anserini +test2205 Q0 18899094 20 15.418024 Anserini +test2205 Q0 10714765 21 15.353570 Anserini +test2205 Q0 2462312 22 15.308851 Anserini +test2205 Q0 15780810 23 15.275997 Anserini +test2205 Q0 15505634 24 15.203435 Anserini +test2205 Q0 16979543 25 15.193937 Anserini +test2205 Q0 5354652 26 15.168514 Anserini +test2205 Q0 14719501 27 15.157656 Anserini +test2205 Q0 17819245 28 15.154440 Anserini +test2205 Q0 15505608 29 15.108825 Anserini +test2205 Q0 2654023 30 15.071100 Anserini +test2206 Q0 374025 1 9.971562 Anserini +test2206 Q0 14222680 2 9.824118 Anserini +test2206 Q0 1513846 3 9.689718 Anserini +test2206 Q0 10244648 4 9.448898 Anserini +test2206 Q0 311783 5 9.225978 Anserini +test2206 Q0 2553869 6 9.203297 Anserini +test2206 Q0 13280750 7 9.157927 Anserini +test2206 Q0 156926 8 9.104665 Anserini +test2206 Q0 17049895 9 9.096033 Anserini +test2206 Q0 20195677 10 8.996553 Anserini +test2206 Q0 344868 11 8.962332 Anserini +test2206 Q0 13989169 12 8.857920 Anserini +test2206 Q0 2699459 13 8.832995 Anserini +test2206 Q0 14258289 14 8.817607 Anserini +test2206 Q0 15135995 15 8.807610 Anserini +test2206 Q0 17138185 16 8.733607 Anserini +test2206 Q0 6100223 17 8.671487 Anserini +test2206 Q0 5392708 18 8.659769 Anserini +test2206 Q0 965654 19 8.643836 Anserini +test2206 Q0 7262940 20 8.618498 Anserini +test2206 Q0 7491035 21 8.509521 Anserini +test2206 Q0 424514 22 8.496984 Anserini +test2206 Q0 1402651 23 8.474957 Anserini +test2206 Q0 18795068 24 8.451018 Anserini +test2206 Q0 906180 25 8.433816 Anserini +test2206 Q0 5178004 26 8.430538 Anserini +test2206 Q0 14006095 27 8.430538 Anserini +test2206 Q0 703801 28 8.430538 Anserini +test2206 Q0 374009 29 8.411651 Anserini +test2206 Q0 474422 30 8.403395 Anserini +test2207 Q0 3990571 1 9.773930 Anserini +test2207 Q0 11396506 2 9.693246 Anserini +test2207 Q0 12041594 3 9.612867 Anserini +test2207 Q0 8565212 4 9.562289 Anserini +test2207 Q0 448628 5 9.365568 Anserini +test2207 Q0 6275069 6 9.345665 Anserini +test2207 Q0 11681296 7 9.308141 Anserini +test2207 Q0 11777989 8 9.147100 Anserini +test2207 Q0 19716000 9 9.146835 Anserini +test2207 Q0 157108 10 9.101673 Anserini +test2207 Q0 4108151 11 9.083670 Anserini +test2207 Q0 9836989 12 8.941155 Anserini +test2207 Q0 9836993 13 8.941155 Anserini +test2207 Q0 3972282 14 8.879869 Anserini +test2207 Q0 13418288 15 8.871883 Anserini +test2207 Q0 1442646 16 8.819528 Anserini +test2207 Q0 8565213 17 8.808248 Anserini +test2207 Q0 13636921 18 8.740900 Anserini +test2207 Q0 8486286 19 8.701063 Anserini +test2207 Q0 13795191 20 8.695890 Anserini +test2207 Q0 17228948 21 8.693651 Anserini +test2207 Q0 8959076 22 8.649566 Anserini +test2207 Q0 7235733 23 8.637925 Anserini +test2207 Q0 12041595 24 8.628359 Anserini +test2207 Q0 3186917 25 8.595435 Anserini +test2207 Q0 8868975 26 8.592262 Anserini +test2207 Q0 7680480 27 8.587075 Anserini +test2207 Q0 5996752 28 8.575965 Anserini +test2207 Q0 18473306 29 8.548704 Anserini +test2207 Q0 16123015 30 8.548704 Anserini +test2208 Q0 9324235 1 19.813423 Anserini +test2208 Q0 9324238 2 19.787348 Anserini +test2208 Q0 1972382 3 18.830997 Anserini +test2208 Q0 1972397 4 17.650661 Anserini +test2208 Q0 8898037 5 17.032772 Anserini +test2208 Q0 8083438 6 16.929628 Anserini +test2208 Q0 16100702 7 16.805628 Anserini +test2208 Q0 1972392 8 16.615007 Anserini +test2208 Q0 93178 9 16.508728 Anserini +test2208 Q0 1972388 10 16.207422 Anserini +test2208 Q0 4707181 11 16.207422 Anserini +test2208 Q0 1972395 12 16.080856 Anserini +test2208 Q0 10153962 13 15.854280 Anserini +test2208 Q0 8083441 14 15.685150 Anserini +test2208 Q0 93126 15 14.972569 Anserini +test2208 Q0 249204 16 14.972569 Anserini +test2208 Q0 10153970 17 14.972569 Anserini +test2208 Q0 2961749 18 14.972569 Anserini +test2208 Q0 10153960 19 14.891879 Anserini +test2208 Q0 1779610 20 14.879095 Anserini +test2208 Q0 9324236 21 14.870009 Anserini +test2208 Q0 20632519 22 14.870009 Anserini +test2208 Q0 15334227 23 14.863864 Anserini +test2208 Q0 9857829 24 14.585476 Anserini +test2208 Q0 18163531 25 14.533405 Anserini +test2208 Q0 1972389 26 14.489488 Anserini +test2208 Q0 6522294 27 14.426184 Anserini +test2208 Q0 3010414 28 14.376631 Anserini +test2208 Q0 4820081 29 14.376631 Anserini +test2208 Q0 1447297 30 14.339698 Anserini +test2209 Q0 18829304 1 11.793664 Anserini +test2209 Q0 5398955 2 11.789893 Anserini +test2209 Q0 12734652 3 11.734772 Anserini +test2209 Q0 5940224 4 11.608159 Anserini +test2209 Q0 19707179 5 11.422217 Anserini +test2209 Q0 19804710 6 11.330315 Anserini +test2209 Q0 809108 7 11.266006 Anserini +test2209 Q0 809120 8 11.266006 Anserini +test2209 Q0 809142 9 10.831600 Anserini +test2209 Q0 5398956 10 10.725109 Anserini +test2209 Q0 809134 11 10.648790 Anserini +test2209 Q0 3909227 12 10.619922 Anserini +test2209 Q0 920364 13 10.543430 Anserini +test2209 Q0 5374316 14 10.509077 Anserini +test2209 Q0 809125 15 10.429182 Anserini +test2209 Q0 10245080 16 10.422017 Anserini +test2209 Q0 17986467 17 10.406090 Anserini +test2209 Q0 2796397 18 10.324599 Anserini +test2209 Q0 809135 19 10.300894 Anserini +test2209 Q0 9640151 20 10.257406 Anserini +test2209 Q0 5940220 21 10.239655 Anserini +test2209 Q0 5940221 22 10.239655 Anserini +test2209 Q0 10098433 23 10.221612 Anserini +test2209 Q0 13101933 24 10.169940 Anserini +test2209 Q0 3483586 25 10.168314 Anserini +test2209 Q0 809129 26 10.125566 Anserini +test2209 Q0 809143 27 10.125566 Anserini +test2209 Q0 18829311 28 10.125566 Anserini +test2209 Q0 496285 29 10.116420 Anserini +test2209 Q0 13796559 30 10.059284 Anserini +test221 Q0 3480989 1 12.614817 Anserini +test221 Q0 4874315 2 12.291741 Anserini +test221 Q0 4803521 3 11.059285 Anserini +test221 Q0 7865340 4 10.250507 Anserini +test221 Q0 4948677 5 10.149076 Anserini +test221 Q0 2116060 6 9.814300 Anserini +test221 Q0 18575245 7 9.649654 Anserini +test221 Q0 7166514 8 9.646983 Anserini +test221 Q0 13126286 9 9.608134 Anserini +test221 Q0 4401349 10 9.564251 Anserini +test221 Q0 2439725 11 9.487041 Anserini +test221 Q0 2909374 12 9.452693 Anserini +test221 Q0 9199974 13 9.369308 Anserini +test221 Q0 42585 14 9.304298 Anserini +test221 Q0 19148848 15 9.287610 Anserini +test221 Q0 12340682 16 9.245468 Anserini +test221 Q0 12859182 17 9.078951 Anserini +test221 Q0 7991248 18 9.072426 Anserini +test221 Q0 6060974 19 9.058443 Anserini +test221 Q0 145301 20 9.024265 Anserini +test221 Q0 12198790 21 9.022444 Anserini +test221 Q0 316063 22 9.017040 Anserini +test221 Q0 10387032 23 9.010773 Anserini +test221 Q0 7865338 24 9.010315 Anserini +test221 Q0 18443898 25 9.002836 Anserini +test221 Q0 130051 26 8.994504 Anserini +test221 Q0 8311482 27 8.993086 Anserini +test221 Q0 9169155 28 8.967024 Anserini +test221 Q0 8446596 29 8.937228 Anserini +test221 Q0 2693430 30 8.932553 Anserini +test2210 Q0 15765216 1 10.355807 Anserini +test2210 Q0 15099601 2 10.309344 Anserini +test2210 Q0 14749077 3 10.277632 Anserini +test2210 Q0 20217169 4 10.270222 Anserini +test2210 Q0 8931195 5 10.267792 Anserini +test2210 Q0 12054804 6 10.208511 Anserini +test2210 Q0 19458 7 10.134498 Anserini +test2210 Q0 2639262 8 10.083555 Anserini +test2210 Q0 15797625 9 10.063008 Anserini +test2210 Q0 4530097 10 10.054882 Anserini +test2210 Q0 8015862 11 9.826056 Anserini +test2210 Q0 16648995 12 9.777607 Anserini +test2210 Q0 9672593 13 9.736672 Anserini +test2210 Q0 13545078 14 9.719870 Anserini +test2210 Q0 2507923 15 9.696329 Anserini +test2210 Q0 9544066 16 9.543917 Anserini +test2210 Q0 11680436 17 9.511477 Anserini +test2210 Q0 12691617 18 9.506502 Anserini +test2210 Q0 4167068 19 9.495421 Anserini +test2210 Q0 16365920 20 9.464598 Anserini +test2210 Q0 11074312 21 9.460443 Anserini +test2210 Q0 15548444 22 9.453988 Anserini +test2210 Q0 262433 23 9.437753 Anserini +test2210 Q0 4321990 24 9.436269 Anserini +test2210 Q0 16396098 25 9.431253 Anserini +test2210 Q0 7209729 26 9.424149 Anserini +test2210 Q0 2323574 27 9.422209 Anserini +test2210 Q0 12991310 28 9.395935 Anserini +test2210 Q0 12991300 29 9.395935 Anserini +test2210 Q0 13901682 30 9.395935 Anserini +test2211 Q0 13459637 1 17.412365 Anserini +test2211 Q0 1975067 2 17.388319 Anserini +test2211 Q0 8419358 3 17.102844 Anserini +test2211 Q0 803630 4 16.547033 Anserini +test2211 Q0 11747094 5 16.434233 Anserini +test2211 Q0 11747080 6 16.414465 Anserini +test2211 Q0 13459635 7 16.349426 Anserini +test2211 Q0 13459641 8 16.338293 Anserini +test2211 Q0 11747081 9 16.286289 Anserini +test2211 Q0 18743291 10 16.206570 Anserini +test2211 Q0 1322980 11 16.153324 Anserini +test2211 Q0 15258520 12 16.125778 Anserini +test2211 Q0 2015505 13 16.073879 Anserini +test2211 Q0 11667091 14 16.052217 Anserini +test2211 Q0 12159653 15 16.037872 Anserini +test2211 Q0 14684322 16 16.024019 Anserini +test2211 Q0 15101108 17 15.927620 Anserini +test2211 Q0 11747046 18 15.791620 Anserini +test2211 Q0 14308432 19 15.658584 Anserini +test2211 Q0 2674562 20 15.615382 Anserini +test2211 Q0 13459638 21 15.593477 Anserini +test2211 Q0 3127393 22 15.584245 Anserini +test2211 Q0 19692896 23 15.550499 Anserini +test2211 Q0 8552983 24 15.547769 Anserini +test2211 Q0 17911774 25 15.475988 Anserini +test2211 Q0 13459642 26 15.345856 Anserini +test2211 Q0 5518008 27 15.313698 Anserini +test2211 Q0 13459648 28 15.269959 Anserini +test2211 Q0 15258524 29 15.245302 Anserini +test2211 Q0 10037951 30 15.241554 Anserini +test2212 Q0 9997393 1 8.249893 Anserini +test2212 Q0 9450279 2 8.140486 Anserini +test2212 Q0 11524928 3 7.963021 Anserini +test2212 Q0 16446130 4 7.820645 Anserini +test2212 Q0 16446133 5 7.820645 Anserini +test2212 Q0 10388353 6 7.764414 Anserini +test2212 Q0 1227430 7 7.758706 Anserini +test2212 Q0 11053874 8 7.748410 Anserini +test2212 Q0 1336306 9 7.717623 Anserini +test2212 Q0 9997392 10 7.687419 Anserini +test2212 Q0 14383327 11 7.682634 Anserini +test2212 Q0 11958164 12 7.669218 Anserini +test2212 Q0 15311579 13 7.657401 Anserini +test2212 Q0 13999496 14 7.657401 Anserini +test2212 Q0 15319815 15 7.646938 Anserini +test2212 Q0 14246241 16 7.613334 Anserini +test2212 Q0 3854641 17 7.592642 Anserini +test2212 Q0 9349126 18 7.583642 Anserini +test2212 Q0 9349127 19 7.583642 Anserini +test2212 Q0 15460132 20 7.578674 Anserini +test2212 Q0 11703126 21 7.563940 Anserini +test2212 Q0 1228283 22 7.533823 Anserini +test2212 Q0 1336311 23 7.519083 Anserini +test2212 Q0 3572332 24 7.517053 Anserini +test2212 Q0 1230246 25 7.516002 Anserini +test2212 Q0 20251357 26 7.515282 Anserini +test2212 Q0 2807468 27 7.485662 Anserini +test2212 Q0 1229431 28 7.483265 Anserini +test2212 Q0 1336810 29 7.474859 Anserini +test2212 Q0 20251356 30 7.471986 Anserini +test2213 Q0 14775593 1 17.792549 Anserini +test2213 Q0 12939982 2 17.146009 Anserini +test2213 Q0 12415280 3 16.891224 Anserini +test2213 Q0 15356183 4 16.395590 Anserini +test2213 Q0 9086129 5 16.145555 Anserini +test2213 Q0 16875291 6 15.705131 Anserini +test2213 Q0 17381450 7 15.610868 Anserini +test2213 Q0 15359743 8 15.515338 Anserini +test2213 Q0 17538102 9 15.350727 Anserini +test2213 Q0 311461 10 15.234546 Anserini +test2213 Q0 4164406 11 15.136889 Anserini +test2213 Q0 7447333 12 15.030155 Anserini +test2213 Q0 3832735 13 15.024266 Anserini +test2213 Q0 2806321 14 14.859581 Anserini +test2213 Q0 13306721 15 14.764884 Anserini +test2213 Q0 15356140 16 14.763868 Anserini +test2213 Q0 17361900 17 14.711823 Anserini +test2213 Q0 19439945 18 14.672890 Anserini +test2213 Q0 316272 19 14.598592 Anserini +test2213 Q0 311489 20 14.582822 Anserini +test2213 Q0 4962932 21 14.567482 Anserini +test2213 Q0 1004543 22 14.557406 Anserini +test2213 Q0 3127906 23 14.557406 Anserini +test2213 Q0 13001734 24 14.550775 Anserini +test2213 Q0 17062700 25 14.536759 Anserini +test2213 Q0 1677945 26 14.492858 Anserini +test2213 Q0 6553824 27 14.492381 Anserini +test2213 Q0 4395401 28 14.468840 Anserini +test2213 Q0 2117629 29 14.468438 Anserini +test2213 Q0 2613118 30 14.468438 Anserini +test2214 Q0 6517311 1 15.763945 Anserini +test2214 Q0 13635999 2 14.691528 Anserini +test2214 Q0 6239993 3 14.590806 Anserini +test2214 Q0 12435375 4 14.547200 Anserini +test2214 Q0 6517325 5 14.321066 Anserini +test2214 Q0 6240003 6 14.172851 Anserini +test2214 Q0 12557893 7 14.159718 Anserini +test2214 Q0 15133151 8 13.983586 Anserini +test2214 Q0 7527272 9 13.979424 Anserini +test2214 Q0 11399292 10 13.931700 Anserini +test2214 Q0 8057073 11 13.922306 Anserini +test2214 Q0 12435376 12 13.719852 Anserini +test2214 Q0 11558697 13 13.633057 Anserini +test2214 Q0 7543159 14 13.528251 Anserini +test2214 Q0 19471517 15 13.496614 Anserini +test2214 Q0 12820755 16 13.494922 Anserini +test2214 Q0 12820754 17 13.494922 Anserini +test2214 Q0 7527273 18 13.448960 Anserini +test2214 Q0 6240029 19 13.417150 Anserini +test2214 Q0 11502768 20 13.410144 Anserini +test2214 Q0 12394240 21 13.391451 Anserini +test2214 Q0 12671341 22 13.379000 Anserini +test2214 Q0 6239997 23 13.301235 Anserini +test2214 Q0 7997951 24 13.280269 Anserini +test2214 Q0 13884949 25 13.258235 Anserini +test2214 Q0 7543185 26 13.232100 Anserini +test2214 Q0 6240004 27 13.176845 Anserini +test2214 Q0 7543183 28 13.157864 Anserini +test2214 Q0 969804 29 13.137967 Anserini +test2214 Q0 14490860 30 13.078854 Anserini +test2215 Q0 5068552 1 17.367199 Anserini +test2215 Q0 8519013 2 17.191982 Anserini +test2215 Q0 4567737 3 16.960918 Anserini +test2215 Q0 7862110 4 16.084570 Anserini +test2215 Q0 7862114 5 15.721828 Anserini +test2215 Q0 4567743 6 15.254687 Anserini +test2215 Q0 4567740 7 14.500106 Anserini +test2215 Q0 12559853 8 14.171570 Anserini +test2215 Q0 4567742 9 14.134148 Anserini +test2215 Q0 13665420 10 14.074944 Anserini +test2215 Q0 4567739 11 12.776267 Anserini +test2215 Q0 9153966 12 12.594261 Anserini +test2215 Q0 4567741 13 12.508408 Anserini +test2215 Q0 9506898 14 12.480057 Anserini +test2215 Q0 3282685 15 12.453189 Anserini +test2215 Q0 11234613 16 12.289387 Anserini +test2215 Q0 7862111 17 11.985221 Anserini +test2215 Q0 14589628 18 11.957131 Anserini +test2215 Q0 14589631 19 11.946357 Anserini +test2215 Q0 4567738 20 11.881341 Anserini +test2215 Q0 9506896 21 11.770946 Anserini +test2215 Q0 17602195 22 11.764238 Anserini +test2215 Q0 5389583 23 11.711048 Anserini +test2215 Q0 423106 24 11.609509 Anserini +test2215 Q0 17232848 25 11.495914 Anserini +test2215 Q0 20154172 26 11.480757 Anserini +test2215 Q0 17166354 27 11.446797 Anserini +test2215 Q0 20287359 28 11.429505 Anserini +test2215 Q0 20154174 29 11.422247 Anserini +test2215 Q0 18810968 30 11.272957 Anserini +test2216 Q0 341831 1 14.377998 Anserini +test2216 Q0 12403187 2 13.924007 Anserini +test2216 Q0 4752235 3 13.462612 Anserini +test2216 Q0 7924933 4 13.408145 Anserini +test2216 Q0 19698430 5 13.384350 Anserini +test2216 Q0 1362555 6 13.352332 Anserini +test2216 Q0 4752230 7 13.250397 Anserini +test2216 Q0 16732465 8 13.023477 Anserini +test2216 Q0 17635375 9 12.925224 Anserini +test2216 Q0 1714535 10 12.919306 Anserini +test2216 Q0 4666668 11 12.875561 Anserini +test2216 Q0 17635381 12 12.841880 Anserini +test2216 Q0 17430313 13 12.833693 Anserini +test2216 Q0 9643359 14 12.789995 Anserini +test2216 Q0 15746953 15 12.757591 Anserini +test2216 Q0 1906319 16 12.703895 Anserini +test2216 Q0 2970971 17 12.664882 Anserini +test2216 Q0 1769906 18 12.653178 Anserini +test2216 Q0 13008002 19 12.621199 Anserini +test2216 Q0 5288052 20 12.615478 Anserini +test2216 Q0 6902038 21 12.579031 Anserini +test2216 Q0 2339050 22 12.576681 Anserini +test2216 Q0 7924935 23 12.527209 Anserini +test2216 Q0 5741166 24 12.495590 Anserini +test2216 Q0 3344847 25 12.464825 Anserini +test2216 Q0 19175951 26 12.464825 Anserini +test2216 Q0 12476608 27 12.439712 Anserini +test2216 Q0 14465527 28 12.427183 Anserini +test2216 Q0 15031848 29 12.415229 Anserini +test2216 Q0 17242978 30 12.410986 Anserini +test2217 Q0 18748927 1 20.771189 Anserini +test2217 Q0 18748929 2 18.734299 Anserini +test2217 Q0 18748924 3 17.252449 Anserini +test2217 Q0 18748925 4 17.124405 Anserini +test2217 Q0 18748938 5 16.685097 Anserini +test2217 Q0 18748933 6 16.513533 Anserini +test2217 Q0 10190716 7 16.443518 Anserini +test2217 Q0 18748932 8 16.428392 Anserini +test2217 Q0 10190710 9 16.123421 Anserini +test2217 Q0 20797323 10 15.885770 Anserini +test2217 Q0 4455546 11 15.563173 Anserini +test2217 Q0 1815397 12 15.406714 Anserini +test2217 Q0 14986216 13 15.370470 Anserini +test2217 Q0 18748937 14 15.311375 Anserini +test2217 Q0 20397470 15 15.083408 Anserini +test2217 Q0 18748926 16 15.034933 Anserini +test2217 Q0 4455529 17 15.021432 Anserini +test2217 Q0 4955923 18 14.911381 Anserini +test2217 Q0 4955929 19 14.844521 Anserini +test2217 Q0 6388841 20 14.754251 Anserini +test2217 Q0 8276704 21 14.710833 Anserini +test2217 Q0 10190719 22 14.710833 Anserini +test2217 Q0 4671984 23 14.686494 Anserini +test2217 Q0 8101343 24 14.646887 Anserini +test2217 Q0 16668129 25 14.602129 Anserini +test2217 Q0 1904706 26 14.555126 Anserini +test2217 Q0 18748934 27 14.546282 Anserini +test2217 Q0 12236465 28 14.545770 Anserini +test2217 Q0 20397468 29 14.529609 Anserini +test2217 Q0 18748923 30 14.437160 Anserini +test2218 Q0 4198738 1 15.504149 Anserini +test2218 Q0 2916572 2 12.484517 Anserini +test2218 Q0 2916560 3 12.484517 Anserini +test2218 Q0 2916570 4 11.941630 Anserini +test2218 Q0 15189581 5 11.918850 Anserini +test2218 Q0 4198743 6 11.741150 Anserini +test2218 Q0 2207017 7 11.667910 Anserini +test2218 Q0 2916569 8 11.291334 Anserini +test2218 Q0 2916565 9 11.291334 Anserini +test2218 Q0 19568702 10 11.231678 Anserini +test2218 Q0 2916566 11 11.212917 Anserini +test2218 Q0 2916567 12 11.059303 Anserini +test2218 Q0 9505670 13 10.759015 Anserini +test2218 Q0 9505667 14 10.673939 Anserini +test2218 Q0 2916571 15 10.111782 Anserini +test2218 Q0 920592 16 10.092817 Anserini +test2218 Q0 2916568 17 9.954391 Anserini +test2218 Q0 13091032 18 9.821246 Anserini +test2218 Q0 2640180 19 9.781074 Anserini +test2218 Q0 18296955 20 9.760782 Anserini +test2218 Q0 10346739 21 9.703465 Anserini +test2218 Q0 4725875 22 9.655820 Anserini +test2218 Q0 4198737 23 9.553091 Anserini +test2218 Q0 530156 24 9.553091 Anserini +test2218 Q0 15844539 25 9.553091 Anserini +test2218 Q0 2916564 26 9.553091 Anserini +test2218 Q0 530145 27 9.452526 Anserini +test2218 Q0 13898859 28 9.257614 Anserini +test2218 Q0 530152 29 9.243388 Anserini +test2218 Q0 9924553 30 9.032184 Anserini +test2219 Q0 20815020 1 17.424828 Anserini +test2219 Q0 10078418 2 17.062860 Anserini +test2219 Q0 1821448 3 17.033340 Anserini +test2219 Q0 9429659 4 16.877794 Anserini +test2219 Q0 20815017 5 16.700130 Anserini +test2219 Q0 17780085 6 16.483814 Anserini +test2219 Q0 1462700 7 16.400110 Anserini +test2219 Q0 17780084 8 16.343651 Anserini +test2219 Q0 6575350 9 16.340771 Anserini +test2219 Q0 11387 10 16.258663 Anserini +test2219 Q0 10912178 11 16.005713 Anserini +test2219 Q0 11370 12 15.750270 Anserini +test2219 Q0 1978277 13 15.692649 Anserini +test2219 Q0 1854400 14 15.640821 Anserini +test2219 Q0 17800008 15 15.631612 Anserini +test2219 Q0 13065795 16 15.570238 Anserini +test2219 Q0 11674233 17 15.533802 Anserini +test2219 Q0 4690129 18 15.405248 Anserini +test2219 Q0 7313516 19 15.386950 Anserini +test2219 Q0 1462675 20 15.383259 Anserini +test2219 Q0 2349771 21 15.235291 Anserini +test2219 Q0 18020335 22 15.196558 Anserini +test2219 Q0 5662262 23 15.177659 Anserini +test2219 Q0 9384468 24 15.157204 Anserini +test2219 Q0 18020333 25 15.085252 Anserini +test2219 Q0 3685216 26 15.036783 Anserini +test2219 Q0 6940170 27 15.033876 Anserini +test2219 Q0 10432715 28 15.002754 Anserini +test2219 Q0 11385 29 14.997019 Anserini +test2219 Q0 12404063 30 14.987968 Anserini +test222 Q0 5092128 1 14.941660 Anserini +test222 Q0 5092106 2 14.477746 Anserini +test222 Q0 20154812 3 14.220223 Anserini +test222 Q0 5092127 4 13.828232 Anserini +test222 Q0 10903031 5 13.754748 Anserini +test222 Q0 1483921 6 13.322227 Anserini +test222 Q0 5092109 7 13.317193 Anserini +test222 Q0 5092113 8 13.317193 Anserini +test222 Q0 16911868 9 13.051085 Anserini +test222 Q0 14156569 10 13.049607 Anserini +test222 Q0 16144274 11 12.689940 Anserini +test222 Q0 1455222 12 12.588818 Anserini +test222 Q0 11073998 13 12.588818 Anserini +test222 Q0 8275910 14 12.587257 Anserini +test222 Q0 16144276 15 12.494210 Anserini +test222 Q0 5617246 16 12.396085 Anserini +test222 Q0 13476266 17 12.301144 Anserini +test222 Q0 5092121 18 12.289207 Anserini +test222 Q0 8783413 19 12.273688 Anserini +test222 Q0 10521381 20 12.264261 Anserini +test222 Q0 20721718 21 12.201396 Anserini +test222 Q0 5093504 22 12.190182 Anserini +test222 Q0 2672709 23 12.171036 Anserini +test222 Q0 15308866 24 12.072639 Anserini +test222 Q0 4613487 25 12.029358 Anserini +test222 Q0 5294437 26 11.847543 Anserini +test222 Q0 5419392 27 11.831513 Anserini +test222 Q0 11482348 28 11.783175 Anserini +test222 Q0 17313408 29 11.705055 Anserini +test222 Q0 5053554 30 11.509995 Anserini +test2220 Q0 11424721 1 14.203599 Anserini +test2220 Q0 13366116 2 14.141814 Anserini +test2220 Q0 2583244 3 13.865911 Anserini +test2220 Q0 15744788 4 13.490446 Anserini +test2220 Q0 13366122 5 13.475790 Anserini +test2220 Q0 162189 6 13.265398 Anserini +test2220 Q0 15744789 7 13.236867 Anserini +test2220 Q0 5548821 8 13.147692 Anserini +test2220 Q0 13366114 9 13.142615 Anserini +test2220 Q0 7541105 10 12.983270 Anserini +test2220 Q0 3377910 11 12.903016 Anserini +test2220 Q0 15495625 12 12.852514 Anserini +test2220 Q0 19308508 13 12.800892 Anserini +test2220 Q0 11459754 14 12.578800 Anserini +test2220 Q0 13456813 15 12.531143 Anserini +test2220 Q0 13366112 16 12.465715 Anserini +test2220 Q0 6743944 17 12.441975 Anserini +test2220 Q0 16976165 18 12.215019 Anserini +test2220 Q0 10902342 19 12.077461 Anserini +test2220 Q0 17968805 20 12.069665 Anserini +test2220 Q0 5548820 21 12.006416 Anserini +test2220 Q0 12542949 22 11.858238 Anserini +test2220 Q0 9321881 23 11.820704 Anserini +test2220 Q0 16258458 24 11.759641 Anserini +test2220 Q0 13776210 25 11.707893 Anserini +test2220 Q0 13352535 26 11.559679 Anserini +test2220 Q0 11424728 27 11.548591 Anserini +test2220 Q0 13366117 28 11.501612 Anserini +test2220 Q0 14581107 29 11.497592 Anserini +test2220 Q0 14581094 30 11.497592 Anserini +test2221 Q0 5094489 1 20.407587 Anserini +test2221 Q0 2001729 2 19.042051 Anserini +test2221 Q0 2001727 3 18.729036 Anserini +test2221 Q0 2001730 4 17.563351 Anserini +test2221 Q0 2001723 5 17.392662 Anserini +test2221 Q0 2001733 6 17.195370 Anserini +test2221 Q0 2001731 7 16.732067 Anserini +test2221 Q0 16788467 8 16.656105 Anserini +test2221 Q0 11804994 9 16.575642 Anserini +test2221 Q0 2470071 10 16.551952 Anserini +test2221 Q0 19444906 11 16.304554 Anserini +test2221 Q0 10357283 12 16.222750 Anserini +test2221 Q0 15583490 13 16.105797 Anserini +test2221 Q0 3437805 14 16.076405 Anserini +test2221 Q0 16148872 15 16.035004 Anserini +test2221 Q0 18653000 16 16.003952 Anserini +test2221 Q0 6669327 17 15.990669 Anserini +test2221 Q0 11804993 18 15.984302 Anserini +test2221 Q0 7004480 19 15.898019 Anserini +test2221 Q0 14975005 20 15.811876 Anserini +test2221 Q0 20508125 21 15.781349 Anserini +test2221 Q0 20508124 22 15.743326 Anserini +test2221 Q0 5587003 23 15.627760 Anserini +test2221 Q0 13053006 24 15.558088 Anserini +test2221 Q0 5587010 25 15.505766 Anserini +test2221 Q0 20494090 26 15.488333 Anserini +test2221 Q0 8475951 27 15.330420 Anserini +test2221 Q0 11804992 28 15.295817 Anserini +test2221 Q0 15583493 29 15.262992 Anserini +test2221 Q0 20515697 30 15.218624 Anserini +test2222 Q0 5308025 1 17.809877 Anserini +test2222 Q0 17783061 2 17.754059 Anserini +test2222 Q0 4823256 3 17.712263 Anserini +test2222 Q0 8718969 4 17.367996 Anserini +test2222 Q0 3242310 5 17.076153 Anserini +test2222 Q0 15240830 6 17.039309 Anserini +test2222 Q0 15240822 7 16.780359 Anserini +test2222 Q0 9088418 8 16.639204 Anserini +test2222 Q0 10329521 9 16.541559 Anserini +test2222 Q0 19790340 10 16.473511 Anserini +test2222 Q0 15833876 11 16.316528 Anserini +test2222 Q0 4502057 12 16.208031 Anserini +test2222 Q0 13070291 13 16.164476 Anserini +test2222 Q0 13070294 14 16.164476 Anserini +test2222 Q0 3790958 15 16.161144 Anserini +test2222 Q0 11004985 16 16.144663 Anserini +test2222 Q0 8062861 17 16.123398 Anserini +test2222 Q0 8231816 18 16.121826 Anserini +test2222 Q0 8745385 19 16.117956 Anserini +test2222 Q0 7932390 20 16.109493 Anserini +test2222 Q0 4404384 21 16.059164 Anserini +test2222 Q0 6662936 22 16.058033 Anserini +test2222 Q0 6657502 23 16.012295 Anserini +test2222 Q0 14060035 24 16.004551 Anserini +test2222 Q0 14552434 25 15.956111 Anserini +test2222 Q0 4653718 26 15.921862 Anserini +test2222 Q0 15520067 27 15.917347 Anserini +test2222 Q0 4326861 28 15.787059 Anserini +test2222 Q0 18252420 29 15.740950 Anserini +test2222 Q0 8355621 30 15.716663 Anserini +test2223 Q0 2375928 1 15.390275 Anserini +test2223 Q0 2375923 2 15.102782 Anserini +test2223 Q0 2375936 3 14.857572 Anserini +test2223 Q0 2375934 4 14.818307 Anserini +test2223 Q0 4580896 5 14.267984 Anserini +test2223 Q0 1414190 6 14.102352 Anserini +test2223 Q0 17298604 7 13.929040 Anserini +test2223 Q0 17298597 8 13.929040 Anserini +test2223 Q0 2375940 9 13.798023 Anserini +test2223 Q0 5499641 10 13.764965 Anserini +test2223 Q0 2375938 11 13.498743 Anserini +test2223 Q0 2375935 12 13.481543 Anserini +test2223 Q0 3080797 13 13.212093 Anserini +test2223 Q0 2375933 14 13.212093 Anserini +test2223 Q0 3355649 15 13.061264 Anserini +test2223 Q0 2375927 16 13.051473 Anserini +test2223 Q0 2361601 17 12.997313 Anserini +test2223 Q0 2375926 18 12.839075 Anserini +test2223 Q0 6487170 19 12.739692 Anserini +test2223 Q0 1414169 20 12.739692 Anserini +test2223 Q0 742894 21 12.605791 Anserini +test2223 Q0 2375932 22 12.580406 Anserini +test2223 Q0 9876937 23 12.516541 Anserini +test2223 Q0 11493781 24 12.491951 Anserini +test2223 Q0 7294908 25 12.455215 Anserini +test2223 Q0 2361604 26 12.387697 Anserini +test2223 Q0 912791 27 12.369688 Anserini +test2223 Q0 3407306 28 12.198564 Anserini +test2223 Q0 12035858 29 12.139099 Anserini +test2223 Q0 4697747 30 12.050494 Anserini +test2224 Q0 16902187 1 18.340311 Anserini +test2224 Q0 16902168 2 18.278742 Anserini +test2224 Q0 10197324 3 18.257797 Anserini +test2224 Q0 16902182 4 18.197689 Anserini +test2224 Q0 6954565 5 18.196320 Anserini +test2224 Q0 6954579 6 18.135252 Anserini +test2224 Q0 6956028 7 17.719034 Anserini +test2224 Q0 10727527 8 17.696358 Anserini +test2224 Q0 17686537 9 17.646706 Anserini +test2224 Q0 10197325 10 17.646706 Anserini +test2224 Q0 10727526 11 17.625368 Anserini +test2224 Q0 17686542 12 17.574966 Anserini +test2224 Q0 12338138 13 17.383087 Anserini +test2224 Q0 2576944 14 17.245663 Anserini +test2224 Q0 2576939 15 17.134048 Anserini +test2224 Q0 17686541 16 17.056715 Anserini +test2224 Q0 20623778 17 16.816774 Anserini +test2224 Q0 20623779 18 16.816774 Anserini +test2224 Q0 16902170 19 16.757666 Anserini +test2224 Q0 20322913 20 16.748684 Anserini +test2224 Q0 2576941 21 16.714321 Anserini +test2224 Q0 2576937 22 16.672522 Anserini +test2224 Q0 6954566 23 16.640736 Anserini +test2224 Q0 17686540 24 16.628601 Anserini +test2224 Q0 16902171 25 16.628601 Anserini +test2224 Q0 2576932 26 16.543755 Anserini +test2224 Q0 16902169 27 16.543755 Anserini +test2224 Q0 2576946 28 16.504810 Anserini +test2224 Q0 16686218 29 16.384090 Anserini +test2224 Q0 20623777 30 16.315762 Anserini +test2225 Q0 7801945 1 11.563414 Anserini +test2225 Q0 7801946 2 11.563414 Anserini +test2225 Q0 14367436 3 11.518471 Anserini +test2225 Q0 19832961 4 10.691709 Anserini +test2225 Q0 19118120 5 10.317865 Anserini +test2225 Q0 11380572 6 10.192411 Anserini +test2225 Q0 14367439 7 10.163342 Anserini +test2225 Q0 18513863 8 10.085567 Anserini +test2225 Q0 2206458 9 10.073050 Anserini +test2225 Q0 2308374 10 10.023356 Anserini +test2225 Q0 6676367 11 9.956351 Anserini +test2225 Q0 6527858 12 9.844174 Anserini +test2225 Q0 6527860 13 9.822761 Anserini +test2225 Q0 9828867 14 9.741767 Anserini +test2225 Q0 11638872 15 9.735469 Anserini +test2225 Q0 11522939 16 9.719382 Anserini +test2225 Q0 572095 17 9.678851 Anserini +test2225 Q0 6527853 18 9.606681 Anserini +test2225 Q0 9627097 19 9.596016 Anserini +test2225 Q0 6527857 20 9.577238 Anserini +test2225 Q0 11382044 21 9.482742 Anserini +test2225 Q0 6527863 22 9.479002 Anserini +test2225 Q0 3941521 23 9.468195 Anserini +test2225 Q0 12596158 24 9.445457 Anserini +test2225 Q0 6527847 25 9.430636 Anserini +test2225 Q0 8277840 26 9.412398 Anserini +test2225 Q0 19215757 27 9.370336 Anserini +test2225 Q0 2507134 28 9.354443 Anserini +test2225 Q0 12596162 29 9.342697 Anserini +test2225 Q0 11997902 30 9.299177 Anserini +test2226 Q0 439930 1 14.161681 Anserini +test2226 Q0 439916 2 13.518005 Anserini +test2226 Q0 9607553 3 13.075874 Anserini +test2226 Q0 439923 4 12.637434 Anserini +test2226 Q0 9607559 5 12.063450 Anserini +test2226 Q0 16648189 6 11.735315 Anserini +test2226 Q0 5174204 7 11.573437 Anserini +test2226 Q0 94532 8 10.981822 Anserini +test2226 Q0 9153634 9 10.927404 Anserini +test2226 Q0 439922 10 10.894392 Anserini +test2226 Q0 439925 11 10.808399 Anserini +test2226 Q0 9251958 12 10.808399 Anserini +test2226 Q0 150206 13 10.808399 Anserini +test2226 Q0 439927 14 10.723810 Anserini +test2226 Q0 96910 15 10.636303 Anserini +test2226 Q0 6310780 16 10.506865 Anserini +test2226 Q0 9607549 17 10.268404 Anserini +test2226 Q0 156159 18 10.268404 Anserini +test2226 Q0 962965 19 10.199928 Anserini +test2226 Q0 5931499 20 9.975455 Anserini +test2226 Q0 9607551 21 9.956483 Anserini +test2226 Q0 96942 22 9.890797 Anserini +test2226 Q0 17373641 23 9.890797 Anserini +test2226 Q0 3992802 24 9.863190 Anserini +test2226 Q0 2847220 25 9.863190 Anserini +test2226 Q0 96919 26 9.681936 Anserini +test2226 Q0 9607555 27 9.593873 Anserini +test2226 Q0 1541969 28 9.220571 Anserini +test2226 Q0 4443823 29 9.184610 Anserini +test2226 Q0 9607557 30 9.120340 Anserini +test2227 Q0 8736110 1 22.619249 Anserini +test2227 Q0 8736098 2 20.959717 Anserini +test2227 Q0 8736105 3 20.163052 Anserini +test2227 Q0 8736101 4 18.830738 Anserini +test2227 Q0 1605018 5 18.099358 Anserini +test2227 Q0 8736107 6 17.529610 Anserini +test2227 Q0 8736103 7 17.489870 Anserini +test2227 Q0 8736104 8 17.368404 Anserini +test2227 Q0 8736100 9 17.248613 Anserini +test2227 Q0 8736102 10 17.130463 Anserini +test2227 Q0 8736099 11 15.589917 Anserini +test2227 Q0 6308424 12 15.327652 Anserini +test2227 Q0 8736109 13 15.237388 Anserini +test2227 Q0 2579149 14 14.741802 Anserini +test2227 Q0 6425959 15 14.481629 Anserini +test2227 Q0 5674364 16 14.425709 Anserini +test2227 Q0 9493727 17 14.330768 Anserini +test2227 Q0 13839361 18 14.314960 Anserini +test2227 Q0 13839363 19 14.314960 Anserini +test2227 Q0 19016132 20 13.848711 Anserini +test2227 Q0 8736106 21 13.303387 Anserini +test2227 Q0 423039 22 13.303387 Anserini +test2227 Q0 18226401 23 13.284177 Anserini +test2227 Q0 20907972 24 13.183554 Anserini +test2227 Q0 3159285 25 13.074242 Anserini +test2227 Q0 8736108 26 13.026213 Anserini +test2227 Q0 7269267 27 13.026213 Anserini +test2227 Q0 7243393 28 13.026213 Anserini +test2227 Q0 11239869 29 13.026213 Anserini +test2227 Q0 17246552 30 13.008801 Anserini +test2228 Q0 5878188 1 20.166868 Anserini +test2228 Q0 5878168 2 18.936375 Anserini +test2228 Q0 3447084 3 18.908869 Anserini +test2228 Q0 5878170 4 18.840326 Anserini +test2228 Q0 5126841 5 18.494081 Anserini +test2228 Q0 5425724 6 18.164345 Anserini +test2228 Q0 5878189 7 17.748756 Anserini +test2228 Q0 5878190 8 17.580179 Anserini +test2228 Q0 20317782 9 17.534063 Anserini +test2228 Q0 9545422 10 17.400240 Anserini +test2228 Q0 6877774 11 17.119209 Anserini +test2228 Q0 4288696 12 16.988579 Anserini +test2228 Q0 5126843 13 16.946560 Anserini +test2228 Q0 14686705 14 16.829159 Anserini +test2228 Q0 5126842 15 16.828880 Anserini +test2228 Q0 2802830 16 16.805796 Anserini +test2228 Q0 8232437 17 16.756729 Anserini +test2228 Q0 8850769 18 16.750837 Anserini +test2228 Q0 9446700 19 16.744574 Anserini +test2228 Q0 3037937 20 16.682001 Anserini +test2228 Q0 4071198 21 16.616400 Anserini +test2228 Q0 5479775 22 16.548405 Anserini +test2228 Q0 2586828 23 16.496269 Anserini +test2228 Q0 5340878 24 16.474731 Anserini +test2228 Q0 12613000 25 16.452950 Anserini +test2228 Q0 5126844 26 16.255962 Anserini +test2228 Q0 20554153 27 16.247774 Anserini +test2228 Q0 7899618 28 16.246729 Anserini +test2228 Q0 2721178 29 16.186758 Anserini +test2228 Q0 8232436 30 16.175705 Anserini +test2229 Q0 4396910 1 11.633319 Anserini +test2229 Q0 5631092 2 11.525808 Anserini +test2229 Q0 3754133 3 11.100238 Anserini +test2229 Q0 13703098 4 11.018007 Anserini +test2229 Q0 10845130 5 10.669424 Anserini +test2229 Q0 10836336 6 10.390085 Anserini +test2229 Q0 12562181 7 10.352556 Anserini +test2229 Q0 3448676 8 10.278191 Anserini +test2229 Q0 1970746 9 10.222914 Anserini +test2229 Q0 281830 10 10.221484 Anserini +test2229 Q0 98785 11 10.215702 Anserini +test2229 Q0 7426351 12 10.168994 Anserini +test2229 Q0 4697541 13 10.123862 Anserini +test2229 Q0 1007375 14 10.089383 Anserini +test2229 Q0 11921042 15 10.088287 Anserini +test2229 Q0 1970692 16 10.082737 Anserini +test2229 Q0 4662537 17 10.070105 Anserini +test2229 Q0 6745433 18 9.998969 Anserini +test2229 Q0 6745447 19 9.998969 Anserini +test2229 Q0 14834454 20 9.997976 Anserini +test2229 Q0 378488 21 9.983102 Anserini +test2229 Q0 6038258 22 9.970245 Anserini +test2229 Q0 20888750 23 9.930210 Anserini +test2229 Q0 8013525 24 9.888145 Anserini +test2229 Q0 5937791 25 9.857554 Anserini +test2229 Q0 1036722 26 9.814192 Anserini +test2229 Q0 6066525 27 9.811212 Anserini +test2229 Q0 4790046 28 9.757219 Anserini +test2229 Q0 11303391 29 9.745110 Anserini +test2229 Q0 5224781 30 9.732942 Anserini +test223 Q0 17537749 1 12.562750 Anserini +test223 Q0 17537760 2 12.562750 Anserini +test223 Q0 19714402 3 11.605725 Anserini +test223 Q0 19714403 4 10.936929 Anserini +test223 Q0 19714397 5 10.936929 Anserini +test223 Q0 17537753 6 10.714278 Anserini +test223 Q0 10607160 7 10.438650 Anserini +test223 Q0 11535052 8 10.161368 Anserini +test223 Q0 7518918 9 9.981239 Anserini +test223 Q0 17537755 10 9.974831 Anserini +test223 Q0 9939690 11 9.888421 Anserini +test223 Q0 7664658 12 9.833068 Anserini +test223 Q0 14980143 13 9.808176 Anserini +test223 Q0 10788763 14 9.789412 Anserini +test223 Q0 49878 15 9.744997 Anserini +test223 Q0 9302711 16 9.608278 Anserini +test223 Q0 9302728 17 9.608278 Anserini +test223 Q0 9302718 18 9.602318 Anserini +test223 Q0 2486666 19 9.563812 Anserini +test223 Q0 9302713 20 9.526976 Anserini +test223 Q0 17054634 21 9.517470 Anserini +test223 Q0 6626220 22 9.472696 Anserini +test223 Q0 18380112 23 9.446943 Anserini +test223 Q0 8717891 24 9.337838 Anserini +test223 Q0 19423063 25 9.326328 Anserini +test223 Q0 11704245 26 9.317738 Anserini +test223 Q0 11704251 27 9.252433 Anserini +test223 Q0 20502580 28 9.223357 Anserini +test223 Q0 17470923 29 9.215261 Anserini +test223 Q0 12557885 30 9.214314 Anserini +test2230 Q0 8462513 1 13.952120 Anserini +test2230 Q0 6312808 2 13.196257 Anserini +test2230 Q0 8729759 3 13.146780 Anserini +test2230 Q0 17454423 4 13.078602 Anserini +test2230 Q0 8462514 5 13.037637 Anserini +test2230 Q0 9445391 6 12.915272 Anserini +test2230 Q0 4325407 7 12.908233 Anserini +test2230 Q0 15119440 8 12.752423 Anserini +test2230 Q0 16341838 9 12.748560 Anserini +test2230 Q0 14962370 10 12.629551 Anserini +test2230 Q0 4232677 11 12.496904 Anserini +test2230 Q0 16341835 12 12.378826 Anserini +test2230 Q0 18405167 13 12.373585 Anserini +test2230 Q0 10914409 14 12.347368 Anserini +test2230 Q0 4590208 15 12.327392 Anserini +test2230 Q0 2682636 16 12.310822 Anserini +test2230 Q0 6601460 17 12.263711 Anserini +test2230 Q0 4276754 18 12.260938 Anserini +test2230 Q0 5631451 19 12.227304 Anserini +test2230 Q0 10407143 20 12.210960 Anserini +test2230 Q0 16099625 21 12.204615 Anserini +test2230 Q0 13996556 22 12.187557 Anserini +test2230 Q0 12114025 23 12.153501 Anserini +test2230 Q0 19501081 24 12.131543 Anserini +test2230 Q0 19752184 25 12.131353 Anserini +test2230 Q0 13940096 26 12.131353 Anserini +test2230 Q0 4707873 27 12.116749 Anserini +test2230 Q0 1549299 28 12.073383 Anserini +test2230 Q0 18482001 29 12.069911 Anserini +test2230 Q0 10533425 30 12.050019 Anserini +test2231 Q0 10180861 1 18.233391 Anserini +test2231 Q0 10984450 2 17.112911 Anserini +test2231 Q0 15198060 3 16.771315 Anserini +test2231 Q0 41819 4 16.399851 Anserini +test2231 Q0 41914 5 16.243654 Anserini +test2231 Q0 18990192 6 16.060999 Anserini +test2231 Q0 10984461 7 15.675026 Anserini +test2231 Q0 20105823 8 15.634104 Anserini +test2231 Q0 183773 9 15.584606 Anserini +test2231 Q0 20768489 10 15.548049 Anserini +test2231 Q0 16823238 11 15.454615 Anserini +test2231 Q0 10180998 12 15.376964 Anserini +test2231 Q0 183872 13 15.350386 Anserini +test2231 Q0 183784 14 15.208273 Anserini +test2231 Q0 11021392 15 15.144979 Anserini +test2231 Q0 6148299 16 15.122980 Anserini +test2231 Q0 16788175 17 15.059595 Anserini +test2231 Q0 13544804 18 14.952226 Anserini +test2231 Q0 11029755 19 14.924831 Anserini +test2231 Q0 11029758 20 14.924831 Anserini +test2231 Q0 19092327 21 14.841724 Anserini +test2231 Q0 41891 22 14.814501 Anserini +test2231 Q0 5543479 23 14.726065 Anserini +test2231 Q0 20102759 24 14.717716 Anserini +test2231 Q0 10873758 25 14.656156 Anserini +test2231 Q0 11796648 26 14.515069 Anserini +test2231 Q0 19734799 27 14.514914 Anserini +test2231 Q0 11999355 28 14.487421 Anserini +test2231 Q0 14746958 29 14.326644 Anserini +test2231 Q0 5803577 30 14.315883 Anserini +test2232 Q0 10412083 1 13.216416 Anserini +test2232 Q0 10684171 2 13.010244 Anserini +test2232 Q0 10412082 3 12.789659 Anserini +test2232 Q0 10549121 4 12.372281 Anserini +test2232 Q0 10684173 5 12.355013 Anserini +test2232 Q0 2959790 6 12.208382 Anserini +test2232 Q0 6537448 7 11.609827 Anserini +test2232 Q0 1347506 8 11.503212 Anserini +test2232 Q0 6213603 9 11.499570 Anserini +test2232 Q0 7784948 10 11.331544 Anserini +test2232 Q0 16243941 11 11.297283 Anserini +test2232 Q0 3650592 12 11.238306 Anserini +test2232 Q0 7784962 13 11.238306 Anserini +test2232 Q0 2541660 14 11.221020 Anserini +test2232 Q0 4344866 15 11.047488 Anserini +test2232 Q0 8358420 16 11.047071 Anserini +test2232 Q0 7784932 17 11.037174 Anserini +test2232 Q0 5158597 18 10.980037 Anserini +test2232 Q0 6537440 19 10.957073 Anserini +test2232 Q0 3650590 20 10.870475 Anserini +test2232 Q0 1842376 21 10.806734 Anserini +test2232 Q0 4414560 22 10.763184 Anserini +test2232 Q0 17470856 23 10.748171 Anserini +test2232 Q0 7009730 24 10.716171 Anserini +test2232 Q0 16251025 25 10.611763 Anserini +test2232 Q0 16243951 26 10.593626 Anserini +test2232 Q0 11713690 27 10.504437 Anserini +test2232 Q0 11713691 28 10.504437 Anserini +test2232 Q0 8205879 29 10.459782 Anserini +test2232 Q0 15593910 30 10.412517 Anserini +test2233 Q0 2933759 1 12.054498 Anserini +test2233 Q0 7326303 2 11.506779 Anserini +test2233 Q0 7833041 3 11.339461 Anserini +test2233 Q0 7769832 4 11.194202 Anserini +test2233 Q0 7769835 5 11.194202 Anserini +test2233 Q0 7769723 6 11.141377 Anserini +test2233 Q0 7769745 7 11.141377 Anserini +test2233 Q0 2049450 8 10.819899 Anserini +test2233 Q0 8150804 9 10.754130 Anserini +test2233 Q0 6732438 10 10.500249 Anserini +test2233 Q0 7769729 11 10.251836 Anserini +test2233 Q0 388544 12 10.203886 Anserini +test2233 Q0 7769943 13 9.969389 Anserini +test2233 Q0 16635961 14 9.947756 Anserini +test2233 Q0 7769731 15 9.830914 Anserini +test2233 Q0 7769742 16 9.830914 Anserini +test2233 Q0 7769744 17 9.830914 Anserini +test2233 Q0 7769734 18 9.763110 Anserini +test2233 Q0 13513712 19 9.656166 Anserini +test2233 Q0 11506895 20 9.639037 Anserini +test2233 Q0 7769632 21 9.493544 Anserini +test2233 Q0 9210969 22 9.493544 Anserini +test2233 Q0 7769834 23 9.481508 Anserini +test2233 Q0 388580 24 9.452321 Anserini +test2233 Q0 6765117 25 9.334943 Anserini +test2233 Q0 7832831 26 9.281884 Anserini +test2233 Q0 16613094 27 9.281884 Anserini +test2233 Q0 5314854 28 9.281499 Anserini +test2233 Q0 388599 29 9.281499 Anserini +test2233 Q0 990285 30 9.239140 Anserini +test2234 Q0 16852525 1 25.362640 Anserini +test2234 Q0 16852530 2 21.975908 Anserini +test2234 Q0 16852529 3 21.661760 Anserini +test2234 Q0 16852528 4 20.799427 Anserini +test2234 Q0 16852527 5 19.869009 Anserini +test2234 Q0 17408821 6 17.902309 Anserini +test2234 Q0 10165169 7 17.861237 Anserini +test2234 Q0 7486522 8 17.679588 Anserini +test2234 Q0 2252360 9 16.951077 Anserini +test2234 Q0 7486515 10 16.572865 Anserini +test2234 Q0 4235204 11 15.379818 Anserini +test2234 Q0 12181357 12 14.495996 Anserini +test2234 Q0 9661549 13 14.430515 Anserini +test2234 Q0 2252345 14 14.297758 Anserini +test2234 Q0 16742733 15 14.293265 Anserini +test2234 Q0 10687667 16 14.071177 Anserini +test2234 Q0 12181355 17 13.980657 Anserini +test2234 Q0 2252361 18 13.961439 Anserini +test2234 Q0 16933489 19 13.949306 Anserini +test2234 Q0 12197308 20 13.928594 Anserini +test2234 Q0 10165167 21 13.901707 Anserini +test2234 Q0 1500153 22 13.778605 Anserini +test2234 Q0 10165168 23 13.737835 Anserini +test2234 Q0 1500155 24 13.678944 Anserini +test2234 Q0 16371591 25 13.675450 Anserini +test2234 Q0 7178987 26 13.527413 Anserini +test2234 Q0 10165165 27 13.507966 Anserini +test2234 Q0 10165171 28 13.464770 Anserini +test2234 Q0 4157487 29 13.403623 Anserini +test2234 Q0 17007807 30 13.386142 Anserini +test2235 Q0 7354352 1 19.627682 Anserini +test2235 Q0 2129825 2 18.858450 Anserini +test2235 Q0 2129841 3 18.463087 Anserini +test2235 Q0 2129824 4 18.074087 Anserini +test2235 Q0 2129862 5 18.009832 Anserini +test2235 Q0 4455044 6 17.831036 Anserini +test2235 Q0 4294505 7 17.589348 Anserini +test2235 Q0 5552958 8 17.555264 Anserini +test2235 Q0 20094494 9 17.438217 Anserini +test2235 Q0 9235617 10 17.347944 Anserini +test2235 Q0 1784754 11 17.324678 Anserini +test2235 Q0 13634989 12 17.193636 Anserini +test2235 Q0 6191041 13 17.082531 Anserini +test2235 Q0 4819150 14 17.011572 Anserini +test2235 Q0 8258133 15 16.996658 Anserini +test2235 Q0 5847828 16 16.854912 Anserini +test2235 Q0 2771774 17 16.733660 Anserini +test2235 Q0 15186397 18 16.662977 Anserini +test2235 Q0 2129819 19 16.462744 Anserini +test2235 Q0 7386301 20 16.319202 Anserini +test2235 Q0 16144356 21 16.289705 Anserini +test2235 Q0 12835148 22 16.057161 Anserini +test2235 Q0 16144352 23 15.965767 Anserini +test2235 Q0 2450848 24 15.930326 Anserini +test2235 Q0 13028719 25 15.879929 Anserini +test2235 Q0 3712866 26 15.849596 Anserini +test2235 Q0 4508585 27 15.735260 Anserini +test2235 Q0 16144355 28 15.691506 Anserini +test2235 Q0 7719629 29 15.691051 Anserini +test2235 Q0 11920232 30 15.500769 Anserini +test2236 Q0 16806103 1 13.574249 Anserini +test2236 Q0 19449802 2 13.121180 Anserini +test2236 Q0 19659478 3 13.093186 Anserini +test2236 Q0 19449801 4 12.907410 Anserini +test2236 Q0 15487016 5 12.575234 Anserini +test2236 Q0 3651168 6 12.447479 Anserini +test2236 Q0 13568103 7 12.434160 Anserini +test2236 Q0 11507820 8 12.351048 Anserini +test2236 Q0 6768302 9 12.135562 Anserini +test2236 Q0 13592517 10 12.094186 Anserini +test2236 Q0 20502303 11 12.014580 Anserini +test2236 Q0 5683268 12 11.972136 Anserini +test2236 Q0 14987100 13 11.842691 Anserini +test2236 Q0 8141065 14 11.836256 Anserini +test2236 Q0 17484628 15 11.816854 Anserini +test2236 Q0 11525817 16 11.801887 Anserini +test2236 Q0 6846833 17 11.799640 Anserini +test2236 Q0 10860791 18 11.755554 Anserini +test2236 Q0 10860792 19 11.755554 Anserini +test2236 Q0 15714961 20 11.733603 Anserini +test2236 Q0 12526670 21 11.718226 Anserini +test2236 Q0 20389028 22 11.695063 Anserini +test2236 Q0 5683267 23 11.689327 Anserini +test2236 Q0 3646365 24 11.676649 Anserini +test2236 Q0 14370769 25 11.627541 Anserini +test2236 Q0 3651164 26 11.619843 Anserini +test2236 Q0 6690498 27 11.544028 Anserini +test2236 Q0 3647787 28 11.540583 Anserini +test2236 Q0 11591328 29 11.539499 Anserini +test2236 Q0 14679951 30 11.537442 Anserini +test2237 Q0 13476911 1 17.093519 Anserini +test2237 Q0 4196557 2 15.366821 Anserini +test2237 Q0 191105 3 13.978699 Anserini +test2237 Q0 17209555 4 13.280276 Anserini +test2237 Q0 1919066 5 13.212448 Anserini +test2237 Q0 11956449 6 13.109570 Anserini +test2237 Q0 584322 7 13.101450 Anserini +test2237 Q0 13476916 8 12.877754 Anserini +test2237 Q0 10532431 9 12.848355 Anserini +test2237 Q0 19418920 10 12.828496 Anserini +test2237 Q0 11280992 11 12.531962 Anserini +test2237 Q0 4530443 12 12.505683 Anserini +test2237 Q0 20259277 13 12.399311 Anserini +test2237 Q0 12009744 14 12.395710 Anserini +test2237 Q0 20233057 15 12.179975 Anserini +test2237 Q0 6646478 16 12.148458 Anserini +test2237 Q0 18188295 17 12.135357 Anserini +test2237 Q0 11848285 18 12.072788 Anserini +test2237 Q0 10063507 19 12.059471 Anserini +test2237 Q0 14665470 20 12.024822 Anserini +test2237 Q0 8081860 21 11.874023 Anserini +test2237 Q0 2223675 22 11.814226 Anserini +test2237 Q0 2223654 23 11.814226 Anserini +test2237 Q0 5140462 24 11.783369 Anserini +test2237 Q0 17209554 25 11.773326 Anserini +test2237 Q0 4530440 26 11.773326 Anserini +test2237 Q0 6870704 27 11.715965 Anserini +test2237 Q0 6646477 28 11.695940 Anserini +test2237 Q0 11952998 29 11.652658 Anserini +test2237 Q0 4530445 30 11.628124 Anserini +test2238 Q0 19999293 1 15.316049 Anserini +test2238 Q0 971320 2 14.911098 Anserini +test2238 Q0 17770302 3 14.358669 Anserini +test2238 Q0 4816397 4 12.815511 Anserini +test2238 Q0 13567024 5 12.720706 Anserini +test2238 Q0 19400015 6 12.610758 Anserini +test2238 Q0 19400017 7 12.555014 Anserini +test2238 Q0 368599 8 12.487284 Anserini +test2238 Q0 6625658 9 11.914131 Anserini +test2238 Q0 6161114 10 11.902171 Anserini +test2238 Q0 18250092 11 11.357234 Anserini +test2238 Q0 20944559 12 11.329007 Anserini +test2238 Q0 18250088 13 11.259341 Anserini +test2238 Q0 4816383 14 11.133409 Anserini +test2238 Q0 8956651 15 11.032234 Anserini +test2238 Q0 8956645 16 11.032234 Anserini +test2238 Q0 13567023 17 10.919815 Anserini +test2238 Q0 1835233 18 10.843109 Anserini +test2238 Q0 6161109 19 10.741740 Anserini +test2238 Q0 12625455 20 10.700272 Anserini +test2238 Q0 15216227 21 10.627458 Anserini +test2238 Q0 15671082 22 10.620481 Anserini +test2238 Q0 18807475 23 10.515582 Anserini +test2238 Q0 20944561 24 10.345702 Anserini +test2238 Q0 17542841 25 10.317593 Anserini +test2238 Q0 20233047 26 10.291238 Anserini +test2238 Q0 13294603 27 10.283694 Anserini +test2238 Q0 19999292 28 10.153622 Anserini +test2238 Q0 4471552 29 10.121707 Anserini +test2238 Q0 6161111 30 10.041972 Anserini +test2239 Q0 13975155 1 10.071818 Anserini +test2239 Q0 7477709 2 10.041261 Anserini +test2239 Q0 2095226 3 9.626964 Anserini +test2239 Q0 2095225 4 9.502805 Anserini +test2239 Q0 2095221 5 9.166533 Anserini +test2239 Q0 2440957 6 9.150841 Anserini +test2239 Q0 15176181 7 9.150841 Anserini +test2239 Q0 12570291 8 9.122560 Anserini +test2239 Q0 434511 9 9.101164 Anserini +test2239 Q0 2440959 10 9.066194 Anserini +test2239 Q0 9677489 11 9.023480 Anserini +test2239 Q0 9677484 12 9.023480 Anserini +test2239 Q0 4534594 13 9.021201 Anserini +test2239 Q0 9283794 14 9.006641 Anserini +test2239 Q0 2095243 15 8.944678 Anserini +test2239 Q0 14713665 16 8.897367 Anserini +test2239 Q0 2078390 17 8.873783 Anserini +test2239 Q0 12625558 18 8.873783 Anserini +test2239 Q0 10028561 19 8.871815 Anserini +test2239 Q0 11438499 20 8.869583 Anserini +test2239 Q0 1398568 21 8.868159 Anserini +test2239 Q0 434485 22 8.821352 Anserini +test2239 Q0 10203562 23 8.780466 Anserini +test2239 Q0 10203550 24 8.780466 Anserini +test2239 Q0 19452689 25 8.760845 Anserini +test2239 Q0 12999517 26 8.739037 Anserini +test2239 Q0 1428722 27 8.727174 Anserini +test2239 Q0 2167013 28 8.712107 Anserini +test2239 Q0 4985928 29 8.666527 Anserini +test2239 Q0 18087598 30 8.641233 Anserini +test224 Q0 18697062 1 13.111334 Anserini +test224 Q0 19742955 2 13.107538 Anserini +test224 Q0 18697064 3 13.101668 Anserini +test224 Q0 20853838 4 12.426569 Anserini +test224 Q0 18697023 5 11.842846 Anserini +test224 Q0 19638792 6 11.838943 Anserini +test224 Q0 18697006 7 11.776533 Anserini +test224 Q0 18630682 8 11.680044 Anserini +test224 Q0 16363896 9 11.368924 Anserini +test224 Q0 18697082 10 11.146275 Anserini +test224 Q0 18697083 11 11.024233 Anserini +test224 Q0 18697004 12 11.016442 Anserini +test224 Q0 4885629 13 10.969755 Anserini +test224 Q0 19384843 14 10.907083 Anserini +test224 Q0 13792015 15 10.830245 Anserini +test224 Q0 18697084 16 10.747817 Anserini +test224 Q0 19387322 17 10.661291 Anserini +test224 Q0 20472493 18 10.405337 Anserini +test224 Q0 19788106 19 10.351754 Anserini +test224 Q0 18697063 20 10.319053 Anserini +test224 Q0 18697085 21 10.306479 Anserini +test224 Q0 18697027 22 10.301611 Anserini +test224 Q0 18697039 23 10.269268 Anserini +test224 Q0 20472503 24 10.209931 Anserini +test224 Q0 17980647 25 10.191088 Anserini +test224 Q0 10016221 26 10.143504 Anserini +test224 Q0 18697060 27 10.120000 Anserini +test224 Q0 18697019 28 10.112681 Anserini +test224 Q0 18697054 29 10.112681 Anserini +test224 Q0 16172201 30 10.102146 Anserini +test2240 Q0 9314444 1 11.825878 Anserini +test2240 Q0 9314415 2 11.825878 Anserini +test2240 Q0 11862002 3 11.379898 Anserini +test2240 Q0 77544 4 10.933948 Anserini +test2240 Q0 175325 5 10.882769 Anserini +test2240 Q0 175343 6 10.882769 Anserini +test2240 Q0 15229867 7 10.822309 Anserini +test2240 Q0 13973539 8 10.692076 Anserini +test2240 Q0 19158318 9 10.280746 Anserini +test2240 Q0 15229872 10 10.041819 Anserini +test2240 Q0 4269634 11 9.607082 Anserini +test2240 Q0 19441838 12 9.595593 Anserini +test2240 Q0 2135259 13 9.473785 Anserini +test2240 Q0 1610308 14 9.473785 Anserini +test2240 Q0 9970052 15 9.392245 Anserini +test2240 Q0 331465 16 9.333570 Anserini +test2240 Q0 3755972 17 9.317960 Anserini +test2240 Q0 4785784 18 9.317960 Anserini +test2240 Q0 13973540 19 9.317960 Anserini +test2240 Q0 16002070 20 9.074358 Anserini +test2240 Q0 9590508 21 9.074358 Anserini +test2240 Q0 576929 22 8.998031 Anserini +test2240 Q0 594716 23 8.998031 Anserini +test2240 Q0 10391701 24 8.998031 Anserini +test2240 Q0 77543 25 8.998031 Anserini +test2240 Q0 111272 26 8.923111 Anserini +test2240 Q0 10391699 27 8.923111 Anserini +test2240 Q0 594717 28 8.849558 Anserini +test2240 Q0 97576 29 8.780451 Anserini +test2240 Q0 3863429 30 8.706299 Anserini +test2241 Q0 9213373 1 13.081801 Anserini +test2241 Q0 14040944 2 12.688845 Anserini +test2241 Q0 17070736 3 12.650629 Anserini +test2241 Q0 17640890 4 11.955295 Anserini +test2241 Q0 19655043 5 11.706198 Anserini +test2241 Q0 17640891 6 11.423795 Anserini +test2241 Q0 17661575 7 11.397785 Anserini +test2241 Q0 20211446 8 11.249923 Anserini +test2241 Q0 165637 9 11.152184 Anserini +test2241 Q0 17640892 10 11.152184 Anserini +test2241 Q0 577612 11 11.073776 Anserini +test2241 Q0 4282951 12 11.037921 Anserini +test2241 Q0 19264068 13 11.026548 Anserini +test2241 Q0 9298514 14 11.013197 Anserini +test2241 Q0 17661582 15 10.868348 Anserini +test2241 Q0 5248441 16 10.821527 Anserini +test2241 Q0 165649 17 10.771939 Anserini +test2241 Q0 21000877 18 10.738231 Anserini +test2241 Q0 3449515 19 10.716083 Anserini +test2241 Q0 13807050 20 10.629890 Anserini +test2241 Q0 11966270 21 10.581501 Anserini +test2241 Q0 1316040 22 10.560151 Anserini +test2241 Q0 11966263 23 10.463614 Anserini +test2241 Q0 5606913 24 10.398801 Anserini +test2241 Q0 5606929 25 10.398801 Anserini +test2241 Q0 17640878 26 10.344556 Anserini +test2241 Q0 11966264 27 10.309891 Anserini +test2241 Q0 4282952 28 10.042243 Anserini +test2241 Q0 5606927 29 9.840403 Anserini +test2241 Q0 5606924 30 9.821506 Anserini +test2242 Q0 3253478 1 20.613319 Anserini +test2242 Q0 3253479 2 19.637093 Anserini +test2242 Q0 2049832 3 17.713768 Anserini +test2242 Q0 4629666 4 16.031214 Anserini +test2242 Q0 5522587 5 15.525216 Anserini +test2242 Q0 3253474 6 15.164729 Anserini +test2242 Q0 4917163 7 15.066692 Anserini +test2242 Q0 10321252 8 15.066692 Anserini +test2242 Q0 4223238 9 14.908086 Anserini +test2242 Q0 3253469 10 14.908086 Anserini +test2242 Q0 3393539 11 14.828762 Anserini +test2242 Q0 3253472 12 14.667634 Anserini +test2242 Q0 3253477 13 14.120828 Anserini +test2242 Q0 16339669 14 14.015739 Anserini +test2242 Q0 9586721 15 13.247637 Anserini +test2242 Q0 6706660 16 13.164701 Anserini +test2242 Q0 4917154 17 13.156837 Anserini +test2242 Q0 9028789 18 12.633615 Anserini +test2242 Q0 2568496 19 12.539569 Anserini +test2242 Q0 7543764 20 12.464292 Anserini +test2242 Q0 7544212 21 12.338908 Anserini +test2242 Q0 5017363 22 12.225189 Anserini +test2242 Q0 20402122 23 12.097132 Anserini +test2242 Q0 16708761 24 12.081291 Anserini +test2242 Q0 16708765 25 12.014125 Anserini +test2242 Q0 3253467 26 11.772350 Anserini +test2242 Q0 12554445 27 11.772350 Anserini +test2242 Q0 12284077 28 11.649712 Anserini +test2242 Q0 14793252 29 11.649712 Anserini +test2242 Q0 14793250 30 11.649712 Anserini +test2243 Q0 10755242 1 20.753407 Anserini +test2243 Q0 10755236 2 20.573246 Anserini +test2243 Q0 10755243 3 20.496645 Anserini +test2243 Q0 17448049 4 19.873343 Anserini +test2243 Q0 9016231 5 19.465717 Anserini +test2243 Q0 9016234 6 18.879574 Anserini +test2243 Q0 10755239 7 18.798601 Anserini +test2243 Q0 5187961 8 18.725861 Anserini +test2243 Q0 9016222 9 18.716423 Anserini +test2243 Q0 10755241 10 18.547915 Anserini +test2243 Q0 9016223 11 18.513252 Anserini +test2243 Q0 11036364 12 18.497221 Anserini +test2243 Q0 9016270 13 18.321558 Anserini +test2243 Q0 12466804 14 18.286919 Anserini +test2243 Q0 284608 15 18.272144 Anserini +test2243 Q0 9016272 16 18.251720 Anserini +test2243 Q0 9016269 17 18.206167 Anserini +test2243 Q0 5970462 18 18.102901 Anserini +test2243 Q0 284591 19 18.058973 Anserini +test2243 Q0 8715206 20 17.960281 Anserini +test2243 Q0 7140500 21 17.918915 Anserini +test2243 Q0 9016232 22 17.769854 Anserini +test2243 Q0 5970463 23 17.755802 Anserini +test2243 Q0 9016237 24 17.659496 Anserini +test2243 Q0 20468462 25 17.620821 Anserini +test2243 Q0 1602209 26 17.559465 Anserini +test2243 Q0 7143914 27 17.555744 Anserini +test2243 Q0 9016230 28 17.464561 Anserini +test2243 Q0 11515985 29 17.455568 Anserini +test2243 Q0 284607 30 17.434435 Anserini +test2244 Q0 2527326 1 13.441912 Anserini +test2244 Q0 13754813 2 13.222719 Anserini +test2244 Q0 8631186 3 12.511202 Anserini +test2244 Q0 9101585 4 12.010812 Anserini +test2244 Q0 12623905 5 11.274622 Anserini +test2244 Q0 2486248 6 11.010637 Anserini +test2244 Q0 20182995 7 10.997353 Anserini +test2244 Q0 20211553 8 10.956379 Anserini +test2244 Q0 11681238 9 10.890472 Anserini +test2244 Q0 17334141 10 10.763695 Anserini +test2244 Q0 8432027 11 10.644130 Anserini +test2244 Q0 1762170 12 10.509393 Anserini +test2244 Q0 2719175 13 10.390697 Anserini +test2244 Q0 1457635 14 10.385291 Anserini +test2244 Q0 18710048 15 10.361243 Anserini +test2244 Q0 20182993 16 10.348801 Anserini +test2244 Q0 10719488 17 10.336596 Anserini +test2244 Q0 13889781 18 10.327841 Anserini +test2244 Q0 20211556 19 10.315809 Anserini +test2244 Q0 178667 20 10.269417 Anserini +test2244 Q0 8062163 21 10.226373 Anserini +test2244 Q0 1318549 22 10.225353 Anserini +test2244 Q0 3426829 23 10.217962 Anserini +test2244 Q0 4864315 24 10.185620 Anserini +test2244 Q0 16178612 25 10.171570 Anserini +test2244 Q0 8116179 26 10.135862 Anserini +test2244 Q0 17025920 27 10.123621 Anserini +test2244 Q0 1617208 28 10.096002 Anserini +test2244 Q0 2291899 29 10.063985 Anserini +test2244 Q0 6286340 30 10.056412 Anserini +test2245 Q0 17153299 1 23.226620 Anserini +test2245 Q0 19387559 2 21.916029 Anserini +test2245 Q0 6255517 3 21.727993 Anserini +test2245 Q0 15317472 4 21.524181 Anserini +test2245 Q0 16364813 5 20.932707 Anserini +test2245 Q0 5140831 6 20.839434 Anserini +test2245 Q0 14618260 7 20.492393 Anserini +test2245 Q0 15307063 8 20.398243 Anserini +test2245 Q0 15178343 9 19.748520 Anserini +test2245 Q0 9483542 10 19.737028 Anserini +test2245 Q0 11103921 11 19.721004 Anserini +test2245 Q0 14618249 12 19.489462 Anserini +test2245 Q0 9830193 13 19.474337 Anserini +test2245 Q0 17788100 14 19.422558 Anserini +test2245 Q0 14618258 15 19.343683 Anserini +test2245 Q0 16364814 16 19.267025 Anserini +test2245 Q0 6415327 17 19.173941 Anserini +test2245 Q0 9438310 18 19.060085 Anserini +test2245 Q0 15994860 19 19.012772 Anserini +test2245 Q0 15638221 20 18.930384 Anserini +test2245 Q0 15638222 21 18.922966 Anserini +test2245 Q0 16043935 22 18.889973 Anserini +test2245 Q0 5457476 23 18.889626 Anserini +test2245 Q0 13544738 24 18.775366 Anserini +test2245 Q0 5457475 25 18.771015 Anserini +test2245 Q0 14882697 26 18.754475 Anserini +test2245 Q0 14618248 27 18.587868 Anserini +test2245 Q0 12999477 28 18.574224 Anserini +test2245 Q0 13511111 29 18.544437 Anserini +test2245 Q0 16533175 30 18.391243 Anserini +test2246 Q0 1508164 1 16.984928 Anserini +test2246 Q0 1508166 2 16.445610 Anserini +test2246 Q0 4134835 3 15.784532 Anserini +test2246 Q0 2630608 4 15.725508 Anserini +test2246 Q0 1508153 5 15.662187 Anserini +test2246 Q0 8442371 6 15.605536 Anserini +test2246 Q0 7250548 7 15.442138 Anserini +test2246 Q0 1508150 8 15.356647 Anserini +test2246 Q0 1508167 9 15.356647 Anserini +test2246 Q0 13963506 10 15.254424 Anserini +test2246 Q0 7250549 11 15.065802 Anserini +test2246 Q0 17059383 12 14.997701 Anserini +test2246 Q0 20142389 13 14.989882 Anserini +test2246 Q0 1836214 14 14.772035 Anserini +test2246 Q0 2612457 15 14.589173 Anserini +test2246 Q0 1508160 16 14.257003 Anserini +test2246 Q0 13968181 17 14.038922 Anserini +test2246 Q0 2612459 18 13.927724 Anserini +test2246 Q0 13963505 19 13.915245 Anserini +test2246 Q0 20142390 20 13.898051 Anserini +test2246 Q0 6933754 21 13.880013 Anserini +test2246 Q0 10847896 22 13.767995 Anserini +test2246 Q0 8502274 23 13.756660 Anserini +test2246 Q0 8626552 24 13.747654 Anserini +test2246 Q0 1508165 25 13.736204 Anserini +test2246 Q0 11335099 26 13.711905 Anserini +test2246 Q0 1508162 27 13.680725 Anserini +test2246 Q0 14746129 28 13.589079 Anserini +test2246 Q0 17787017 29 13.513874 Anserini +test2246 Q0 17787016 30 13.513874 Anserini +test2247 Q0 13043420 1 9.875807 Anserini +test2247 Q0 9340366 2 9.745856 Anserini +test2247 Q0 12491250 3 9.642274 Anserini +test2247 Q0 19635042 4 9.491352 Anserini +test2247 Q0 3168289 5 9.350453 Anserini +test2247 Q0 2941243 6 9.319098 Anserini +test2247 Q0 20877010 7 9.286213 Anserini +test2247 Q0 20877016 8 9.286213 Anserini +test2247 Q0 13447512 9 9.274450 Anserini +test2247 Q0 7341341 10 9.210711 Anserini +test2247 Q0 14956606 11 9.201382 Anserini +test2247 Q0 6939171 12 9.126613 Anserini +test2247 Q0 9961391 13 9.101023 Anserini +test2247 Q0 3141081 14 8.954114 Anserini +test2247 Q0 14055822 15 8.886271 Anserini +test2247 Q0 5227841 16 8.791730 Anserini +test2247 Q0 17029972 17 8.781935 Anserini +test2247 Q0 9669734 18 8.773211 Anserini +test2247 Q0 9669737 19 8.773211 Anserini +test2247 Q0 7369367 20 8.731259 Anserini +test2247 Q0 20383629 21 8.699438 Anserini +test2247 Q0 4386761 22 8.699180 Anserini +test2247 Q0 10896652 23 8.699180 Anserini +test2247 Q0 12438902 24 8.666698 Anserini +test2247 Q0 12438901 25 8.666698 Anserini +test2247 Q0 5893159 26 8.648623 Anserini +test2247 Q0 18073433 27 8.636982 Anserini +test2247 Q0 12294162 28 8.611958 Anserini +test2247 Q0 8489130 29 8.569984 Anserini +test2247 Q0 5501731 30 8.539355 Anserini +test2248 Q0 17901365 1 9.555984 Anserini +test2248 Q0 11473537 2 9.478438 Anserini +test2248 Q0 17091473 3 9.469551 Anserini +test2248 Q0 19876232 4 9.141321 Anserini +test2248 Q0 1806288 5 9.088358 Anserini +test2248 Q0 18291786 6 9.088358 Anserini +test2248 Q0 3377957 7 9.014737 Anserini +test2248 Q0 18291788 8 9.008640 Anserini +test2248 Q0 18515141 9 8.889311 Anserini +test2248 Q0 13588726 10 8.782794 Anserini +test2248 Q0 17069189 11 8.776505 Anserini +test2248 Q0 17234523 12 8.547416 Anserini +test2248 Q0 14397921 13 8.381783 Anserini +test2248 Q0 10468613 14 8.364618 Anserini +test2248 Q0 3377955 15 8.354239 Anserini +test2248 Q0 10895651 16 8.308382 Anserini +test2248 Q0 10866637 17 8.289474 Anserini +test2248 Q0 5840278 18 8.277393 Anserini +test2248 Q0 20018866 19 8.264080 Anserini +test2248 Q0 109567 20 8.237481 Anserini +test2248 Q0 16026450 21 8.216213 Anserini +test2248 Q0 8064253 22 8.165101 Anserini +test2248 Q0 9560600 23 8.162152 Anserini +test2248 Q0 9560616 24 8.162152 Anserini +test2248 Q0 8650978 25 8.133990 Anserini +test2248 Q0 6725589 26 8.133990 Anserini +test2248 Q0 18600241 27 8.125633 Anserini +test2248 Q0 18600253 28 8.125633 Anserini +test2248 Q0 13635310 29 8.081782 Anserini +test2248 Q0 10297930 30 8.065475 Anserini +test2249 Q0 5768454 1 12.440187 Anserini +test2249 Q0 5628384 2 12.306665 Anserini +test2249 Q0 1365658 3 12.276957 Anserini +test2249 Q0 5628385 4 12.032551 Anserini +test2249 Q0 2620344 5 11.999449 Anserini +test2249 Q0 2937994 6 11.871748 Anserini +test2249 Q0 12785308 7 11.871748 Anserini +test2249 Q0 12785358 8 11.871748 Anserini +test2249 Q0 645304 9 11.774813 Anserini +test2249 Q0 12378354 10 11.649418 Anserini +test2249 Q0 12378332 11 11.625323 Anserini +test2249 Q0 585587 12 11.550813 Anserini +test2249 Q0 11025032 13 11.487394 Anserini +test2249 Q0 15432053 14 11.480000 Anserini +test2249 Q0 1452533 15 11.477433 Anserini +test2249 Q0 2201280 16 11.477433 Anserini +test2249 Q0 1286409 17 11.410670 Anserini +test2249 Q0 1797239 18 11.407287 Anserini +test2249 Q0 18549125 19 11.399715 Anserini +test2249 Q0 585590 20 11.378584 Anserini +test2249 Q0 6236553 21 11.333633 Anserini +test2249 Q0 2468675 22 11.242989 Anserini +test2249 Q0 585589 23 11.227007 Anserini +test2249 Q0 864835 24 11.186604 Anserini +test2249 Q0 2937991 25 11.093098 Anserini +test2249 Q0 8861247 26 11.093098 Anserini +test2249 Q0 11231620 27 11.069798 Anserini +test2249 Q0 17713322 28 11.032770 Anserini +test2249 Q0 18233236 29 11.008285 Anserini +test2249 Q0 1310751 30 10.916628 Anserini +test225 Q0 7874326 1 25.879444 Anserini +test225 Q0 7874338 2 25.368137 Anserini +test225 Q0 7874330 3 25.121572 Anserini +test225 Q0 18251245 4 24.858498 Anserini +test225 Q0 5698986 5 24.858498 Anserini +test225 Q0 8572698 6 24.752871 Anserini +test225 Q0 7874327 7 24.661692 Anserini +test225 Q0 1419417 8 24.294348 Anserini +test225 Q0 10941216 9 23.890570 Anserini +test225 Q0 7874331 10 23.808447 Anserini +test225 Q0 7874336 11 23.726929 Anserini +test225 Q0 7874339 12 23.726929 Anserini +test225 Q0 7874335 13 23.191010 Anserini +test225 Q0 7874337 14 23.017845 Anserini +test225 Q0 15530559 15 22.666742 Anserini +test225 Q0 15530564 16 22.666742 Anserini +test225 Q0 7874332 17 22.284315 Anserini +test225 Q0 17635052 18 22.284315 Anserini +test225 Q0 12287164 19 22.284315 Anserini +test225 Q0 18251235 20 22.178333 Anserini +test225 Q0 18251244 21 22.178333 Anserini +test225 Q0 12358968 22 22.034918 Anserini +test225 Q0 16610512 23 22.034918 Anserini +test225 Q0 18610440 24 21.866722 Anserini +test225 Q0 18234048 25 21.597080 Anserini +test225 Q0 17635044 26 21.527504 Anserini +test225 Q0 3572757 27 21.466015 Anserini +test225 Q0 6601566 28 21.224928 Anserini +test225 Q0 6601563 29 21.174431 Anserini +test225 Q0 7874333 30 21.035776 Anserini +test2250 Q0 12362078 1 19.167433 Anserini +test2250 Q0 17150242 2 17.721045 Anserini +test2250 Q0 17150230 3 17.586582 Anserini +test2250 Q0 16045670 4 17.097038 Anserini +test2250 Q0 17868720 5 16.745720 Anserini +test2250 Q0 6555887 6 16.401684 Anserini +test2250 Q0 17261212 7 15.205032 Anserini +test2250 Q0 18828767 8 15.192564 Anserini +test2250 Q0 13955801 9 15.137405 Anserini +test2250 Q0 18828768 10 15.133568 Anserini +test2250 Q0 17021919 11 15.077726 Anserini +test2250 Q0 14825932 12 14.963574 Anserini +test2250 Q0 12362076 13 14.941452 Anserini +test2250 Q0 19247064 14 14.848480 Anserini +test2250 Q0 2700124 15 14.784889 Anserini +test2250 Q0 17271450 16 14.736186 Anserini +test2250 Q0 12519287 17 14.736186 Anserini +test2250 Q0 19063404 18 14.713858 Anserini +test2250 Q0 13434961 19 14.713858 Anserini +test2250 Q0 14879097 20 14.694355 Anserini +test2250 Q0 15914415 21 14.662017 Anserini +test2250 Q0 13955802 22 14.570539 Anserini +test2250 Q0 11756584 23 14.458933 Anserini +test2250 Q0 20369504 24 14.423924 Anserini +test2250 Q0 13841537 25 14.423924 Anserini +test2250 Q0 13841556 26 14.423924 Anserini +test2250 Q0 19905261 27 14.376454 Anserini +test2250 Q0 17167660 28 14.360949 Anserini +test2250 Q0 12519265 29 14.360949 Anserini +test2250 Q0 12362097 30 14.316750 Anserini +test2251 Q0 19743659 1 14.639231 Anserini +test2251 Q0 19943481 2 13.949075 Anserini +test2251 Q0 19144883 3 13.254221 Anserini +test2251 Q0 17942221 4 12.762806 Anserini +test2251 Q0 19205017 5 12.760987 Anserini +test2251 Q0 16865991 6 12.605371 Anserini +test2251 Q0 16369342 7 12.602634 Anserini +test2251 Q0 19743646 8 12.347674 Anserini +test2251 Q0 15451009 9 12.248925 Anserini +test2251 Q0 17163281 10 12.235078 Anserini +test2251 Q0 15451041 11 12.233798 Anserini +test2251 Q0 19144882 12 12.232174 Anserini +test2251 Q0 19771744 13 12.147707 Anserini +test2251 Q0 19943471 14 12.143110 Anserini +test2251 Q0 16108914 15 12.111602 Anserini +test2251 Q0 17163265 16 12.099472 Anserini +test2251 Q0 19771730 17 12.099472 Anserini +test2251 Q0 18614341 18 12.049601 Anserini +test2251 Q0 16369361 19 12.007032 Anserini +test2251 Q0 17942215 20 11.935924 Anserini +test2251 Q0 17942230 21 11.935924 Anserini +test2251 Q0 15450961 22 11.929744 Anserini +test2251 Q0 19144902 23 11.921494 Anserini +test2251 Q0 20856605 24 11.879157 Anserini +test2251 Q0 15451042 25 11.849436 Anserini +test2251 Q0 18614348 26 11.820941 Anserini +test2251 Q0 16369360 27 11.798885 Anserini +test2251 Q0 18614307 28 11.771347 Anserini +test2251 Q0 19144874 29 11.722200 Anserini +test2251 Q0 20334119 30 11.609360 Anserini +test2252 Q0 14719653 1 13.319977 Anserini +test2252 Q0 16404753 2 13.138122 Anserini +test2252 Q0 14719655 3 13.047605 Anserini +test2252 Q0 8523606 4 12.704672 Anserini +test2252 Q0 10418443 5 12.698273 Anserini +test2252 Q0 14835926 6 12.683841 Anserini +test2252 Q0 19602128 7 12.623566 Anserini +test2252 Q0 14907343 8 12.620887 Anserini +test2252 Q0 19602287 9 12.616109 Anserini +test2252 Q0 19602277 10 12.616109 Anserini +test2252 Q0 5098383 11 12.598274 Anserini +test2252 Q0 14907346 12 12.596813 Anserini +test2252 Q0 3294212 13 12.554822 Anserini +test2252 Q0 20091859 14 12.533871 Anserini +test2252 Q0 1914942 15 12.409040 Anserini +test2252 Q0 13191652 16 12.341700 Anserini +test2252 Q0 19602199 17 12.315682 Anserini +test2252 Q0 5323168 18 12.237764 Anserini +test2252 Q0 4851723 19 12.217772 Anserini +test2252 Q0 16404752 20 12.183755 Anserini +test2252 Q0 8541860 21 12.163596 Anserini +test2252 Q0 9998469 22 12.054506 Anserini +test2252 Q0 13577641 23 12.043310 Anserini +test2252 Q0 11857175 24 12.043310 Anserini +test2252 Q0 16836575 25 11.971130 Anserini +test2252 Q0 6336030 26 11.968854 Anserini +test2252 Q0 11180936 27 11.888476 Anserini +test2252 Q0 8752600 28 11.888135 Anserini +test2252 Q0 20797569 29 11.879845 Anserini +test2252 Q0 4157327 30 11.845170 Anserini +test2253 Q0 4870174 1 19.553585 Anserini +test2253 Q0 2827677 2 19.479523 Anserini +test2253 Q0 6891584 3 19.313431 Anserini +test2253 Q0 6891571 4 18.413519 Anserini +test2253 Q0 16601386 5 18.372982 Anserini +test2253 Q0 11896077 6 18.232840 Anserini +test2253 Q0 3573663 7 17.826160 Anserini +test2253 Q0 10308116 8 17.772200 Anserini +test2253 Q0 2504410 9 17.728327 Anserini +test2253 Q0 1936788 10 17.711506 Anserini +test2253 Q0 14333795 11 17.703396 Anserini +test2253 Q0 10308118 12 17.587976 Anserini +test2253 Q0 1936873 13 17.551146 Anserini +test2253 Q0 2838140 14 17.482681 Anserini +test2253 Q0 1572629 15 17.458372 Anserini +test2253 Q0 4205091 16 17.432560 Anserini +test2253 Q0 5226420 17 17.378269 Anserini +test2253 Q0 6785446 18 17.358145 Anserini +test2253 Q0 14414057 19 17.354202 Anserini +test2253 Q0 2706860 20 17.270504 Anserini +test2253 Q0 1936798 21 17.207655 Anserini +test2253 Q0 4411063 22 17.156803 Anserini +test2253 Q0 1590894 23 17.108944 Anserini +test2253 Q0 16601395 24 17.030254 Anserini +test2253 Q0 2838143 25 16.984112 Anserini +test2253 Q0 14855074 26 16.977163 Anserini +test2253 Q0 3827711 27 16.901817 Anserini +test2253 Q0 9630654 28 16.859360 Anserini +test2253 Q0 12490093 29 16.842264 Anserini +test2253 Q0 12823245 30 16.827606 Anserini +test2254 Q0 13800713 1 12.226058 Anserini +test2254 Q0 20761580 2 12.171456 Anserini +test2254 Q0 18910670 3 11.906507 Anserini +test2254 Q0 13810651 4 11.903613 Anserini +test2254 Q0 312469 5 11.797685 Anserini +test2254 Q0 3597621 6 11.772657 Anserini +test2254 Q0 9052553 7 11.528510 Anserini +test2254 Q0 10743503 8 11.525524 Anserini +test2254 Q0 11575014 9 11.513465 Anserini +test2254 Q0 5704198 10 11.498544 Anserini +test2254 Q0 8939142 11 11.481976 Anserini +test2254 Q0 7954961 12 11.470809 Anserini +test2254 Q0 559932 13 11.450473 Anserini +test2254 Q0 13810649 14 11.357491 Anserini +test2254 Q0 7650840 15 11.326036 Anserini +test2254 Q0 10601006 16 11.309926 Anserini +test2254 Q0 2118216 17 11.294678 Anserini +test2254 Q0 11678216 18 11.283081 Anserini +test2254 Q0 312479 19 11.223264 Anserini +test2254 Q0 15401081 20 11.216211 Anserini +test2254 Q0 3014231 21 11.207202 Anserini +test2254 Q0 11783124 22 11.182562 Anserini +test2254 Q0 9824386 23 11.174699 Anserini +test2254 Q0 7959968 24 11.115565 Anserini +test2254 Q0 20916831 25 11.092404 Anserini +test2254 Q0 5824278 26 11.071552 Anserini +test2254 Q0 20747531 27 11.013588 Anserini +test2254 Q0 19609907 28 10.994231 Anserini +test2254 Q0 16605449 29 10.957238 Anserini +test2254 Q0 4759289 30 10.957238 Anserini +test2255 Q0 5166444 1 14.696783 Anserini +test2255 Q0 16995201 2 14.326278 Anserini +test2255 Q0 5322140 3 13.431709 Anserini +test2255 Q0 1434184 4 13.378117 Anserini +test2255 Q0 19231937 5 13.157990 Anserini +test2255 Q0 19231935 6 12.876755 Anserini +test2255 Q0 19231933 7 12.668547 Anserini +test2255 Q0 5321915 8 12.621796 Anserini +test2255 Q0 5321899 9 12.611522 Anserini +test2255 Q0 15429168 10 12.599154 Anserini +test2255 Q0 2790640 11 12.597383 Anserini +test2255 Q0 14519117 12 12.597113 Anserini +test2255 Q0 16530459 13 12.522359 Anserini +test2255 Q0 8665210 14 12.442175 Anserini +test2255 Q0 14665959 15 12.411325 Anserini +test2255 Q0 14665954 16 12.411325 Anserini +test2255 Q0 14630029 17 12.408865 Anserini +test2255 Q0 14630037 18 12.318769 Anserini +test2255 Q0 16323180 19 12.233196 Anserini +test2255 Q0 7014458 20 12.124836 Anserini +test2255 Q0 17572748 21 12.096735 Anserini +test2255 Q0 16995204 22 12.089891 Anserini +test2255 Q0 10069449 23 12.088751 Anserini +test2255 Q0 8167298 24 12.082973 Anserini +test2255 Q0 3745862 25 12.068824 Anserini +test2255 Q0 11648803 26 12.030745 Anserini +test2255 Q0 6880716 27 12.024005 Anserini +test2255 Q0 10307208 28 11.924650 Anserini +test2255 Q0 18381778 29 11.845215 Anserini +test2255 Q0 5497741 30 11.837857 Anserini +test2256 Q0 421493 1 16.217678 Anserini +test2256 Q0 421526 2 16.113161 Anserini +test2256 Q0 5226685 3 15.880450 Anserini +test2256 Q0 5226689 4 15.558005 Anserini +test2256 Q0 421494 5 15.431969 Anserini +test2256 Q0 421496 6 15.287669 Anserini +test2256 Q0 10123548 7 15.228077 Anserini +test2256 Q0 10123549 8 14.719605 Anserini +test2256 Q0 16356784 9 14.545980 Anserini +test2256 Q0 421502 10 14.154647 Anserini +test2256 Q0 6437994 11 14.115492 Anserini +test2256 Q0 421504 12 14.048691 Anserini +test2256 Q0 8652872 13 14.047078 Anserini +test2256 Q0 737320 14 13.982843 Anserini +test2256 Q0 4770560 15 13.864552 Anserini +test2256 Q0 16356766 16 13.805477 Anserini +test2256 Q0 8652871 17 13.766417 Anserini +test2256 Q0 16356805 18 13.766417 Anserini +test2256 Q0 16356795 19 13.766417 Anserini +test2256 Q0 16356775 20 13.673955 Anserini +test2256 Q0 421514 21 13.543884 Anserini +test2256 Q0 421506 22 13.487728 Anserini +test2256 Q0 5226686 23 13.463515 Anserini +test2256 Q0 421523 24 13.359905 Anserini +test2256 Q0 4770558 25 13.303483 Anserini +test2256 Q0 6438000 26 13.253663 Anserini +test2256 Q0 4345453 27 13.222696 Anserini +test2256 Q0 16356778 28 13.138934 Anserini +test2256 Q0 4345428 29 13.075446 Anserini +test2256 Q0 421508 30 13.073776 Anserini +test2257 Q0 8014043 1 23.149321 Anserini +test2257 Q0 8014049 2 23.149321 Anserini +test2257 Q0 8014047 3 21.034893 Anserini +test2257 Q0 1453929 4 20.952799 Anserini +test2257 Q0 16578835 5 20.789589 Anserini +test2257 Q0 12082032 6 20.559761 Anserini +test2257 Q0 8014044 7 20.431570 Anserini +test2257 Q0 8014045 8 20.353004 Anserini +test2257 Q0 3334924 9 19.914082 Anserini +test2257 Q0 17172231 10 19.686909 Anserini +test2257 Q0 1322094 11 19.481665 Anserini +test2257 Q0 18725723 12 18.853802 Anserini +test2257 Q0 18725722 13 18.763775 Anserini +test2257 Q0 1448931 14 18.157619 Anserini +test2257 Q0 4222730 15 16.663956 Anserini +test2257 Q0 7067539 16 16.550461 Anserini +test2257 Q0 3205064 17 16.432875 Anserini +test2257 Q0 3334922 18 16.361660 Anserini +test2257 Q0 1320587 19 16.278193 Anserini +test2257 Q0 8541198 20 16.185717 Anserini +test2257 Q0 1320588 21 16.185717 Anserini +test2257 Q0 11437269 22 16.185717 Anserini +test2257 Q0 1453924 23 16.138216 Anserini +test2257 Q0 5513324 24 16.013515 Anserini +test2257 Q0 1453911 25 16.013515 Anserini +test2257 Q0 7303293 26 16.013515 Anserini +test2257 Q0 1453910 27 15.844942 Anserini +test2257 Q0 7655510 28 15.844942 Anserini +test2257 Q0 1325705 29 15.810110 Anserini +test2257 Q0 4189515 30 15.797763 Anserini +test2258 Q0 3145516 1 12.593616 Anserini +test2258 Q0 2718237 2 12.588617 Anserini +test2258 Q0 13592841 3 11.756887 Anserini +test2258 Q0 9445895 4 11.683021 Anserini +test2258 Q0 2718214 5 11.629095 Anserini +test2258 Q0 2718217 6 11.624531 Anserini +test2258 Q0 6329101 7 10.841558 Anserini +test2258 Q0 2718223 8 10.583001 Anserini +test2258 Q0 1519043 9 10.533978 Anserini +test2258 Q0 3566931 10 10.517668 Anserini +test2258 Q0 19168448 11 10.517643 Anserini +test2258 Q0 8307480 12 10.505544 Anserini +test2258 Q0 2718171 13 10.464049 Anserini +test2258 Q0 2718244 14 10.452415 Anserini +test2258 Q0 2718218 15 10.399102 Anserini +test2258 Q0 3956490 16 10.354755 Anserini +test2258 Q0 6329100 17 10.322671 Anserini +test2258 Q0 2718222 18 10.306137 Anserini +test2258 Q0 3145524 19 10.301535 Anserini +test2258 Q0 2718241 20 10.301535 Anserini +test2258 Q0 14185793 21 10.258023 Anserini +test2258 Q0 2718240 22 10.215135 Anserini +test2258 Q0 8426604 23 10.162313 Anserini +test2258 Q0 713232 24 10.127986 Anserini +test2258 Q0 2718234 25 10.061704 Anserini +test2258 Q0 4349083 26 10.031606 Anserini +test2258 Q0 5510143 27 10.031606 Anserini +test2258 Q0 16261618 28 10.031606 Anserini +test2258 Q0 16261619 29 10.031606 Anserini +test2258 Q0 2718204 30 10.031606 Anserini +test2259 Q0 3462187 1 23.720348 Anserini +test2259 Q0 3462226 2 22.340103 Anserini +test2259 Q0 3462193 3 22.013369 Anserini +test2259 Q0 5766284 4 21.016998 Anserini +test2259 Q0 3462192 5 19.402391 Anserini +test2259 Q0 4908764 6 19.011213 Anserini +test2259 Q0 4341267 7 18.472059 Anserini +test2259 Q0 4908769 8 18.375952 Anserini +test2259 Q0 2317621 9 17.873442 Anserini +test2259 Q0 5680005 10 17.768335 Anserini +test2259 Q0 4341269 11 17.172235 Anserini +test2259 Q0 5680000 12 16.626921 Anserini +test2259 Q0 5680003 13 16.626921 Anserini +test2259 Q0 4908767 14 16.337681 Anserini +test2259 Q0 5766285 15 15.886179 Anserini +test2259 Q0 4908768 16 15.411182 Anserini +test2259 Q0 3462191 17 15.373161 Anserini +test2259 Q0 3462201 18 14.910488 Anserini +test2259 Q0 1284573 19 14.556429 Anserini +test2259 Q0 3462219 20 14.518420 Anserini +test2259 Q0 4908763 21 14.387486 Anserini +test2259 Q0 4908773 22 14.073252 Anserini +test2259 Q0 5766281 23 14.005682 Anserini +test2259 Q0 5766296 24 14.005682 Anserini +test2259 Q0 20879909 25 13.924946 Anserini +test2259 Q0 4341266 26 13.909359 Anserini +test2259 Q0 4341278 27 13.833139 Anserini +test2259 Q0 20879908 28 13.795616 Anserini +test2259 Q0 5766288 29 13.520123 Anserini +test2259 Q0 4908770 30 13.514860 Anserini +test226 Q0 15935116 1 16.490553 Anserini +test226 Q0 12031527 2 16.356346 Anserini +test226 Q0 2698753 3 15.405945 Anserini +test226 Q0 6613247 4 15.168140 Anserini +test226 Q0 2126374 5 15.139039 Anserini +test226 Q0 20019710 6 15.122495 Anserini +test226 Q0 15127301 7 14.953991 Anserini +test226 Q0 6055772 8 14.900696 Anserini +test226 Q0 6613231 9 14.845750 Anserini +test226 Q0 12602397 10 14.794115 Anserini +test226 Q0 12261825 11 14.727924 Anserini +test226 Q0 12261867 12 14.727924 Anserini +test226 Q0 6613251 13 14.712327 Anserini +test226 Q0 1569630 14 14.603116 Anserini +test226 Q0 6613254 15 14.602061 Anserini +test226 Q0 9455754 16 14.536745 Anserini +test226 Q0 19502533 17 14.472104 Anserini +test226 Q0 16421155 18 14.372577 Anserini +test226 Q0 16421174 19 14.286783 Anserini +test226 Q0 12671861 20 14.275867 Anserini +test226 Q0 12261832 21 14.228274 Anserini +test226 Q0 503297 22 14.216281 Anserini +test226 Q0 19183468 23 14.070994 Anserini +test226 Q0 2235975 24 14.016250 Anserini +test226 Q0 6613249 25 13.979993 Anserini +test226 Q0 6613260 26 13.970544 Anserini +test226 Q0 1712845 27 13.951441 Anserini +test226 Q0 12759695 28 13.948551 Anserini +test226 Q0 16421639 29 13.892267 Anserini +test226 Q0 16421628 30 13.892267 Anserini +test2260 Q0 5590340 1 21.705050 Anserini +test2260 Q0 5590348 2 20.864082 Anserini +test2260 Q0 4287186 3 20.580870 Anserini +test2260 Q0 5590344 4 20.352079 Anserini +test2260 Q0 5590343 5 19.574593 Anserini +test2260 Q0 7976677 6 19.521574 Anserini +test2260 Q0 2411951 7 19.506269 Anserini +test2260 Q0 16640434 8 19.299643 Anserini +test2260 Q0 13984405 9 19.084316 Anserini +test2260 Q0 7976682 10 18.956081 Anserini +test2260 Q0 10986245 11 18.730946 Anserini +test2260 Q0 5590342 12 18.620226 Anserini +test2260 Q0 13984406 13 18.485447 Anserini +test2260 Q0 1478329 14 18.385349 Anserini +test2260 Q0 11126042 15 18.377733 Anserini +test2260 Q0 10970646 16 18.345377 Anserini +test2260 Q0 10970647 17 18.345377 Anserini +test2260 Q0 8462514 18 18.336205 Anserini +test2260 Q0 5590345 19 18.236210 Anserini +test2260 Q0 7976684 20 18.208313 Anserini +test2260 Q0 7976676 21 18.208313 Anserini +test2260 Q0 5348191 22 18.182741 Anserini +test2260 Q0 18738970 23 18.151461 Anserini +test2260 Q0 13160217 24 18.135223 Anserini +test2260 Q0 2637404 25 17.931246 Anserini +test2260 Q0 8925477 26 17.797817 Anserini +test2260 Q0 6426596 27 17.780420 Anserini +test2260 Q0 17344042 28 17.746033 Anserini +test2260 Q0 16048500 29 17.725143 Anserini +test2260 Q0 8780279 30 17.724987 Anserini +test2261 Q0 18003111 1 32.186039 Anserini +test2261 Q0 18003105 2 31.839703 Anserini +test2261 Q0 9481505 3 22.966280 Anserini +test2261 Q0 1808458 4 22.455217 Anserini +test2261 Q0 1808467 5 22.455217 Anserini +test2261 Q0 19125668 6 21.973669 Anserini +test2261 Q0 19125662 7 21.973669 Anserini +test2261 Q0 18003110 8 21.696213 Anserini +test2261 Q0 16541548 9 21.544277 Anserini +test2261 Q0 11475248 10 21.455961 Anserini +test2261 Q0 9847021 11 21.445469 Anserini +test2261 Q0 18107123 12 21.360981 Anserini +test2261 Q0 19416360 13 20.972633 Anserini +test2261 Q0 1808103 14 20.744684 Anserini +test2261 Q0 11475244 15 20.528383 Anserini +test2261 Q0 2833682 16 20.336781 Anserini +test2261 Q0 10168608 17 20.311728 Anserini +test2261 Q0 597068 18 20.261715 Anserini +test2261 Q0 18003106 19 20.009825 Anserini +test2261 Q0 14630062 20 19.944481 Anserini +test2261 Q0 7276299 21 19.884789 Anserini +test2261 Q0 18003108 22 19.841576 Anserini +test2261 Q0 18107032 23 19.813065 Anserini +test2261 Q0 7584021 24 19.794424 Anserini +test2261 Q0 11475234 25 19.755928 Anserini +test2261 Q0 18107078 26 19.717836 Anserini +test2261 Q0 10512597 27 19.712826 Anserini +test2261 Q0 2156566 28 19.707415 Anserini +test2261 Q0 9481488 29 19.669382 Anserini +test2261 Q0 12641221 30 19.655142 Anserini +test2262 Q0 19379451 1 20.247652 Anserini +test2262 Q0 3083453 2 19.459627 Anserini +test2262 Q0 19438343 3 19.433546 Anserini +test2262 Q0 10660882 4 19.409428 Anserini +test2262 Q0 4698288 5 19.287582 Anserini +test2262 Q0 3252176 6 19.247719 Anserini +test2262 Q0 10947497 7 19.225780 Anserini +test2262 Q0 9079852 8 19.148886 Anserini +test2262 Q0 15681086 9 19.144247 Anserini +test2262 Q0 20705538 10 19.097605 Anserini +test2262 Q0 7705182 11 18.970324 Anserini +test2262 Q0 13853488 12 18.960878 Anserini +test2262 Q0 332117 13 18.900007 Anserini +test2262 Q0 4698316 14 18.834545 Anserini +test2262 Q0 4698280 15 18.812904 Anserini +test2262 Q0 7303452 16 18.812904 Anserini +test2262 Q0 4698278 17 18.796078 Anserini +test2262 Q0 19302355 18 18.746971 Anserini +test2262 Q0 1440117 19 18.677261 Anserini +test2262 Q0 19302350 20 18.665359 Anserini +test2262 Q0 14723435 21 18.660007 Anserini +test2262 Q0 20705532 22 18.632338 Anserini +test2262 Q0 6566401 23 18.601633 Anserini +test2262 Q0 19379468 24 18.601633 Anserini +test2262 Q0 1440075 25 18.493464 Anserini +test2262 Q0 4698315 26 18.463408 Anserini +test2262 Q0 4698320 27 18.412067 Anserini +test2262 Q0 4698309 28 18.301416 Anserini +test2262 Q0 19379471 29 18.242582 Anserini +test2262 Q0 4698291 30 18.238319 Anserini +test2263 Q0 3733967 1 23.598263 Anserini +test2263 Q0 3733974 2 22.670494 Anserini +test2263 Q0 3733969 3 21.449606 Anserini +test2263 Q0 3733972 4 21.292700 Anserini +test2263 Q0 3733968 5 21.023861 Anserini +test2263 Q0 3733973 6 20.451784 Anserini +test2263 Q0 11361129 7 20.089291 Anserini +test2263 Q0 3733970 8 18.140720 Anserini +test2263 Q0 11361105 9 16.933378 Anserini +test2263 Q0 10381475 10 14.378744 Anserini +test2263 Q0 11361099 11 13.042221 Anserini +test2263 Q0 8105624 12 12.718513 Anserini +test2263 Q0 3733971 13 12.283543 Anserini +test2263 Q0 7222257 14 12.153513 Anserini +test2263 Q0 11104164 15 11.971384 Anserini +test2263 Q0 15928495 16 11.959334 Anserini +test2263 Q0 18807216 17 11.658854 Anserini +test2263 Q0 7222242 18 11.558783 Anserini +test2263 Q0 8481381 19 11.473576 Anserini +test2263 Q0 18735028 20 11.351813 Anserini +test2263 Q0 11104169 21 11.311714 Anserini +test2263 Q0 11104126 22 11.230395 Anserini +test2263 Q0 11361122 23 11.207965 Anserini +test2263 Q0 5804865 24 11.178670 Anserini +test2263 Q0 7100953 25 11.177240 Anserini +test2263 Q0 11104125 26 11.166423 Anserini +test2263 Q0 10556564 27 11.166051 Anserini +test2263 Q0 15928487 28 11.125755 Anserini +test2263 Q0 1601963 29 11.102196 Anserini +test2263 Q0 15928471 30 11.074829 Anserini +test2264 Q0 15185741 1 20.629894 Anserini +test2264 Q0 15185747 2 16.841700 Anserini +test2264 Q0 15185732 3 15.870842 Anserini +test2264 Q0 15185734 4 15.259823 Anserini +test2264 Q0 15185742 5 15.245747 Anserini +test2264 Q0 15185739 6 15.116864 Anserini +test2264 Q0 16987987 7 14.523684 Anserini +test2264 Q0 16987994 8 14.508700 Anserini +test2264 Q0 15185740 9 14.490395 Anserini +test2264 Q0 15185735 10 13.926179 Anserini +test2264 Q0 15185738 11 13.809196 Anserini +test2264 Q0 15185748 12 13.712397 Anserini +test2264 Q0 15185745 13 13.672907 Anserini +test2264 Q0 15185736 14 13.616216 Anserini +test2264 Q0 15185746 15 13.585836 Anserini +test2264 Q0 15185743 16 13.308027 Anserini +test2264 Q0 15185744 17 12.919975 Anserini +test2264 Q0 12887640 18 12.656581 Anserini +test2264 Q0 13942612 19 12.498911 Anserini +test2264 Q0 15185733 20 12.280118 Anserini +test2264 Q0 1829490 21 11.813473 Anserini +test2264 Q0 10161930 22 11.645501 Anserini +test2264 Q0 19991730 23 11.469321 Anserini +test2264 Q0 11324644 24 11.431241 Anserini +test2264 Q0 15185737 25 11.315126 Anserini +test2264 Q0 10902039 26 11.219413 Anserini +test2264 Q0 16987992 27 11.162167 Anserini +test2264 Q0 12887638 28 10.984585 Anserini +test2264 Q0 12887641 29 10.906078 Anserini +test2264 Q0 15185749 30 10.858544 Anserini +test2265 Q0 15339092 1 16.002121 Anserini +test2265 Q0 18645556 2 15.756180 Anserini +test2265 Q0 12727568 3 15.255623 Anserini +test2265 Q0 6864938 4 14.903730 Anserini +test2265 Q0 836405 5 14.384584 Anserini +test2265 Q0 10388452 6 14.259393 Anserini +test2265 Q0 10388451 7 14.259393 Anserini +test2265 Q0 19905157 8 14.234266 Anserini +test2265 Q0 10161416 9 14.066540 Anserini +test2265 Q0 7025754 10 13.980062 Anserini +test2265 Q0 5698013 11 13.889480 Anserini +test2265 Q0 6058824 12 13.771484 Anserini +test2265 Q0 836407 13 13.641128 Anserini +test2265 Q0 19388693 14 13.591106 Anserini +test2265 Q0 836406 15 13.536373 Anserini +test2265 Q0 2919661 16 13.516218 Anserini +test2265 Q0 5170405 17 13.241793 Anserini +test2265 Q0 4646294 18 13.132881 Anserini +test2265 Q0 15339091 19 13.111441 Anserini +test2265 Q0 1709583 20 12.994764 Anserini +test2265 Q0 836404 21 12.932465 Anserini +test2265 Q0 18645560 22 12.920327 Anserini +test2265 Q0 5145220 23 12.905355 Anserini +test2265 Q0 4422247 24 12.902553 Anserini +test2265 Q0 6603015 25 12.686851 Anserini +test2265 Q0 15793964 26 12.667294 Anserini +test2265 Q0 4397559 27 12.501421 Anserini +test2265 Q0 19663004 28 12.450861 Anserini +test2265 Q0 5006307 29 12.366186 Anserini +test2265 Q0 11013862 30 12.356219 Anserini +test2266 Q0 9307821 1 11.841313 Anserini +test2266 Q0 19258686 2 11.454080 Anserini +test2266 Q0 495078 3 11.017526 Anserini +test2266 Q0 15612992 4 10.784574 Anserini +test2266 Q0 17171333 5 10.653625 Anserini +test2266 Q0 495076 6 10.469499 Anserini +test2266 Q0 2717189 7 10.428400 Anserini +test2266 Q0 8552256 8 10.239299 Anserini +test2266 Q0 1652985 9 10.105751 Anserini +test2266 Q0 5536990 10 10.015345 Anserini +test2266 Q0 5701408 11 9.950558 Anserini +test2266 Q0 12144602 12 9.914259 Anserini +test2266 Q0 19734632 13 9.914259 Anserini +test2266 Q0 12707277 14 9.908848 Anserini +test2266 Q0 19992933 15 9.844432 Anserini +test2266 Q0 495088 16 9.805185 Anserini +test2266 Q0 6046048 17 9.790401 Anserini +test2266 Q0 9307842 18 9.783779 Anserini +test2266 Q0 4748362 19 9.756333 Anserini +test2266 Q0 12577211 20 9.706723 Anserini +test2266 Q0 515309 21 9.681884 Anserini +test2266 Q0 15169704 22 9.676149 Anserini +test2266 Q0 17514699 23 9.644988 Anserini +test2266 Q0 14020983 24 9.488974 Anserini +test2266 Q0 14486510 25 9.473578 Anserini +test2266 Q0 1510000 26 9.456373 Anserini +test2266 Q0 4255163 27 9.398856 Anserini +test2266 Q0 2979604 28 9.391267 Anserini +test2266 Q0 12469022 29 9.371705 Anserini +test2266 Q0 654431 30 9.335668 Anserini +test2267 Q0 4299618 1 17.469793 Anserini +test2267 Q0 4693270 2 16.848610 Anserini +test2267 Q0 4344902 3 15.397429 Anserini +test2267 Q0 3119148 4 15.390074 Anserini +test2267 Q0 6881163 5 15.261066 Anserini +test2267 Q0 4052952 6 15.071941 Anserini +test2267 Q0 3949055 7 14.955799 Anserini +test2267 Q0 6710394 8 14.824245 Anserini +test2267 Q0 4768177 9 14.764441 Anserini +test2267 Q0 4052951 10 14.620408 Anserini +test2267 Q0 1680524 11 14.459274 Anserini +test2267 Q0 4764273 12 14.411551 Anserini +test2267 Q0 4177941 13 14.206755 Anserini +test2267 Q0 1937704 14 14.140678 Anserini +test2267 Q0 5017350 15 14.115118 Anserini +test2267 Q0 7024418 16 14.071286 Anserini +test2267 Q0 53605 17 13.997269 Anserini +test2267 Q0 4344901 18 13.846013 Anserini +test2267 Q0 6893004 19 13.692122 Anserini +test2267 Q0 4403643 20 13.677429 Anserini +test2267 Q0 6893005 21 13.428354 Anserini +test2267 Q0 11208809 22 13.409477 Anserini +test2267 Q0 1937701 23 13.097771 Anserini +test2267 Q0 5015469 24 13.093214 Anserini +test2267 Q0 2798151 25 12.960727 Anserini +test2267 Q0 6881162 26 12.853848 Anserini +test2267 Q0 2719131 27 12.853848 Anserini +test2267 Q0 5712082 28 12.716711 Anserini +test2267 Q0 19490070 29 12.606770 Anserini +test2267 Q0 2798078 30 12.579903 Anserini +test2268 Q0 18864067 1 21.747400 Anserini +test2268 Q0 19517179 2 21.051144 Anserini +test2268 Q0 11875605 3 20.788897 Anserini +test2268 Q0 17996871 4 20.546970 Anserini +test2268 Q0 19423235 5 20.415625 Anserini +test2268 Q0 803910 6 20.050940 Anserini +test2268 Q0 20162774 7 19.969101 Anserini +test2268 Q0 19517178 8 19.918816 Anserini +test2268 Q0 18081588 9 19.822226 Anserini +test2268 Q0 14622999 10 19.562094 Anserini +test2268 Q0 20162777 11 19.553423 Anserini +test2268 Q0 14622995 12 19.539913 Anserini +test2268 Q0 18081593 13 19.522316 Anserini +test2268 Q0 19517189 14 19.517099 Anserini +test2268 Q0 18833851 15 19.106846 Anserini +test2268 Q0 74050 16 19.001705 Anserini +test2268 Q0 20162775 17 19.001507 Anserini +test2268 Q0 19423218 18 18.995831 Anserini +test2268 Q0 14622994 19 18.991508 Anserini +test2268 Q0 803915 20 18.888588 Anserini +test2268 Q0 5761807 21 18.831535 Anserini +test2268 Q0 803345 22 18.759428 Anserini +test2268 Q0 7395236 23 18.750818 Anserini +test2268 Q0 19423232 24 18.732639 Anserini +test2268 Q0 16546488 25 18.663351 Anserini +test2268 Q0 16546489 26 18.663351 Anserini +test2268 Q0 14756198 27 18.491066 Anserini +test2268 Q0 11875575 28 18.411314 Anserini +test2268 Q0 11875604 29 18.316692 Anserini +test2268 Q0 10802278 30 18.269857 Anserini +test2269 Q0 58240 1 10.850904 Anserini +test2269 Q0 8874846 2 10.219185 Anserini +test2269 Q0 549271 3 9.644566 Anserini +test2269 Q0 8058636 4 9.641848 Anserini +test2269 Q0 10170149 5 9.468096 Anserini +test2269 Q0 10170155 6 9.468096 Anserini +test2269 Q0 10164509 7 9.441148 Anserini +test2269 Q0 3496135 8 9.389425 Anserini +test2269 Q0 1530828 9 9.384199 Anserini +test2269 Q0 18114355 10 9.095712 Anserini +test2269 Q0 6796741 11 9.083523 Anserini +test2269 Q0 17811550 12 8.990173 Anserini +test2269 Q0 18382638 13 8.974444 Anserini +test2269 Q0 19377470 14 8.857922 Anserini +test2269 Q0 10626303 15 8.844633 Anserini +test2269 Q0 17500360 16 8.837695 Anserini +test2269 Q0 17242014 17 8.767917 Anserini +test2269 Q0 1914526 18 8.733834 Anserini +test2269 Q0 227741 19 8.637499 Anserini +test2269 Q0 11995990 20 8.627500 Anserini +test2269 Q0 1590471 21 8.625620 Anserini +test2269 Q0 652009 22 8.619895 Anserini +test2269 Q0 12813268 23 8.588671 Anserini +test2269 Q0 15464271 24 8.588671 Anserini +test2269 Q0 1945359 25 8.571482 Anserini +test2269 Q0 16809860 26 8.561732 Anserini +test2269 Q0 7017834 27 8.548028 Anserini +test2269 Q0 4116728 28 8.524576 Anserini +test2269 Q0 10164566 29 8.524145 Anserini +test2269 Q0 8010349 30 8.402233 Anserini +test227 Q0 20341449 1 16.984610 Anserini +test227 Q0 20341451 2 16.537434 Anserini +test227 Q0 20231021 3 15.920444 Anserini +test227 Q0 19450122 4 15.784296 Anserini +test227 Q0 20236963 5 15.234177 Anserini +test227 Q0 19240483 6 15.144637 Anserini +test227 Q0 19235076 7 15.017797 Anserini +test227 Q0 20231022 8 14.999018 Anserini +test227 Q0 19640673 9 14.993250 Anserini +test227 Q0 19988724 10 14.939555 Anserini +test227 Q0 20149496 11 14.937854 Anserini +test227 Q0 19450120 12 14.923915 Anserini +test227 Q0 20021580 13 14.906257 Anserini +test227 Q0 19746464 14 14.899851 Anserini +test227 Q0 20236964 15 14.889387 Anserini +test227 Q0 20153117 16 14.876758 Anserini +test227 Q0 20149539 17 14.856399 Anserini +test227 Q0 19596389 18 14.849607 Anserini +test227 Q0 19640665 19 14.849607 Anserini +test227 Q0 19746462 20 14.827926 Anserini +test227 Q0 16685056 21 14.764488 Anserini +test227 Q0 20126546 22 14.753227 Anserini +test227 Q0 20126545 23 14.746657 Anserini +test227 Q0 11987725 24 14.740573 Anserini +test227 Q0 20153116 25 14.716132 Anserini +test227 Q0 19596354 26 14.669712 Anserini +test227 Q0 20152813 27 14.650750 Anserini +test227 Q0 20149540 28 14.548777 Anserini +test227 Q0 20131230 29 14.501312 Anserini +test227 Q0 19596352 30 14.401296 Anserini +test2270 Q0 20028073 1 14.918071 Anserini +test2270 Q0 11685130 2 14.858067 Anserini +test2270 Q0 20028078 3 14.741102 Anserini +test2270 Q0 20907800 4 14.592344 Anserini +test2270 Q0 20028061 5 14.403481 Anserini +test2270 Q0 20028071 6 14.369603 Anserini +test2270 Q0 20028076 7 14.292187 Anserini +test2270 Q0 20028058 8 14.262691 Anserini +test2270 Q0 20028063 9 14.210125 Anserini +test2270 Q0 13433609 10 14.154333 Anserini +test2270 Q0 13433612 11 14.139998 Anserini +test2270 Q0 4894702 12 14.065197 Anserini +test2270 Q0 20028072 13 13.764706 Anserini +test2270 Q0 13433615 14 13.762118 Anserini +test2270 Q0 20028067 15 13.745388 Anserini +test2270 Q0 20028062 16 13.710822 Anserini +test2270 Q0 19272212 17 13.683037 Anserini +test2270 Q0 280073 18 13.683037 Anserini +test2270 Q0 4721728 19 13.628589 Anserini +test2270 Q0 12640527 20 13.612518 Anserini +test2270 Q0 10229450 21 13.580156 Anserini +test2270 Q0 295315 22 13.338958 Anserini +test2270 Q0 295313 23 13.288401 Anserini +test2270 Q0 20907811 24 13.288401 Anserini +test2270 Q0 20028069 25 13.282544 Anserini +test2270 Q0 11255782 26 13.261383 Anserini +test2270 Q0 20907801 27 13.247978 Anserini +test2270 Q0 14466858 28 13.208758 Anserini +test2270 Q0 13542028 29 13.137938 Anserini +test2270 Q0 295337 30 13.091517 Anserini +test2271 Q0 12490639 1 22.163725 Anserini +test2271 Q0 12490636 2 20.710526 Anserini +test2271 Q0 8958045 3 20.385561 Anserini +test2271 Q0 19400431 4 19.948425 Anserini +test2271 Q0 19400429 5 19.439301 Anserini +test2271 Q0 14908577 6 18.602728 Anserini +test2271 Q0 6346245 7 17.917648 Anserini +test2271 Q0 8122610 8 17.832376 Anserini +test2271 Q0 8174519 9 17.200211 Anserini +test2271 Q0 8185617 10 16.625706 Anserini +test2271 Q0 12490637 11 16.387112 Anserini +test2271 Q0 6069463 12 16.110949 Anserini +test2271 Q0 12490638 13 15.851591 Anserini +test2271 Q0 9557412 14 15.695321 Anserini +test2271 Q0 6069474 15 15.625371 Anserini +test2271 Q0 8940274 16 15.457268 Anserini +test2271 Q0 15793439 17 15.400993 Anserini +test2271 Q0 6711720 18 15.283580 Anserini +test2271 Q0 10331972 19 15.164776 Anserini +test2271 Q0 9557402 20 15.147850 Anserini +test2271 Q0 9557400 21 15.056911 Anserini +test2271 Q0 2998056 22 15.012275 Anserini +test2271 Q0 4453819 23 14.995919 Anserini +test2271 Q0 6711752 24 14.995769 Anserini +test2271 Q0 12663698 25 14.955922 Anserini +test2271 Q0 5237300 26 14.914115 Anserini +test2271 Q0 10331980 27 14.887532 Anserini +test2271 Q0 5237303 28 14.722870 Anserini +test2271 Q0 6738321 29 14.668514 Anserini +test2271 Q0 15833472 30 14.656178 Anserini +test2272 Q0 11708825 1 15.397751 Anserini +test2272 Q0 1843234 2 14.269329 Anserini +test2272 Q0 6414709 3 14.150469 Anserini +test2272 Q0 6041797 4 13.964299 Anserini +test2272 Q0 13410173 5 13.821224 Anserini +test2272 Q0 14397763 6 13.821224 Anserini +test2272 Q0 3995582 7 13.821224 Anserini +test2272 Q0 6763688 8 13.625496 Anserini +test2272 Q0 5687507 9 13.442495 Anserini +test2272 Q0 402277 10 13.351499 Anserini +test2272 Q0 6041794 11 13.341084 Anserini +test2272 Q0 13164007 12 13.329598 Anserini +test2272 Q0 5259551 13 13.307437 Anserini +test2272 Q0 12022760 14 13.305536 Anserini +test2272 Q0 124738 15 13.189495 Anserini +test2272 Q0 7978098 16 13.086870 Anserini +test2272 Q0 13410170 17 13.070925 Anserini +test2272 Q0 14397760 18 13.070925 Anserini +test2272 Q0 3995579 19 12.997275 Anserini +test2272 Q0 732427 20 12.921628 Anserini +test2272 Q0 6530331 21 12.914069 Anserini +test2272 Q0 2393159 22 12.833740 Anserini +test2272 Q0 11142551 23 12.732483 Anserini +test2272 Q0 5259549 24 12.682158 Anserini +test2272 Q0 13410171 25 12.682158 Anserini +test2272 Q0 3995580 26 12.682158 Anserini +test2272 Q0 1485878 27 12.676479 Anserini +test2272 Q0 13447258 28 12.672032 Anserini +test2272 Q0 9270451 29 12.667255 Anserini +test2272 Q0 11569985 30 12.613986 Anserini +test2273 Q0 2056236 1 15.036145 Anserini +test2273 Q0 13813681 2 14.810106 Anserini +test2273 Q0 13813740 3 14.715066 Anserini +test2273 Q0 3134784 4 14.612478 Anserini +test2273 Q0 19506707 5 14.612478 Anserini +test2273 Q0 14548369 6 14.612266 Anserini +test2273 Q0 19506705 7 14.587102 Anserini +test2273 Q0 1434272 8 14.168655 Anserini +test2273 Q0 2056219 9 14.042440 Anserini +test2273 Q0 1344295 10 14.042440 Anserini +test2273 Q0 12258570 11 13.995461 Anserini +test2273 Q0 12677631 12 13.977282 Anserini +test2273 Q0 3235960 13 13.908427 Anserini +test2273 Q0 8074380 14 13.841972 Anserini +test2273 Q0 16563595 15 13.809254 Anserini +test2273 Q0 13813703 16 13.799641 Anserini +test2273 Q0 3235977 17 13.744566 Anserini +test2273 Q0 13813715 18 13.743042 Anserini +test2273 Q0 18054989 19 13.704178 Anserini +test2273 Q0 12677638 20 13.675127 Anserini +test2273 Q0 14548395 21 13.654591 Anserini +test2273 Q0 13813728 22 13.635074 Anserini +test2273 Q0 3134800 23 13.579793 Anserini +test2273 Q0 12677635 24 13.542864 Anserini +test2273 Q0 7204773 25 13.528504 Anserini +test2273 Q0 14548381 26 13.417063 Anserini +test2273 Q0 12351871 27 13.410600 Anserini +test2273 Q0 4626635 28 13.261099 Anserini +test2273 Q0 12258592 29 13.246952 Anserini +test2273 Q0 18255218 30 13.109332 Anserini +test2274 Q0 14358555 1 11.469656 Anserini +test2274 Q0 14358563 2 10.608074 Anserini +test2274 Q0 20700431 3 9.795952 Anserini +test2274 Q0 10663821 4 9.599334 Anserini +test2274 Q0 8136869 5 9.254997 Anserini +test2274 Q0 9310074 6 9.201632 Anserini +test2274 Q0 7163077 7 9.117785 Anserini +test2274 Q0 2141374 8 9.071341 Anserini +test2274 Q0 14434377 9 9.053671 Anserini +test2274 Q0 10127630 10 8.865888 Anserini +test2274 Q0 14762658 11 8.778909 Anserini +test2274 Q0 871216 12 8.760056 Anserini +test2274 Q0 19706050 13 8.712561 Anserini +test2274 Q0 16512153 14 8.712410 Anserini +test2274 Q0 4252084 15 8.708185 Anserini +test2274 Q0 11669816 16 8.655656 Anserini +test2274 Q0 18418813 17 8.632073 Anserini +test2274 Q0 17500784 18 8.624841 Anserini +test2274 Q0 11674972 19 8.623700 Anserini +test2274 Q0 6001067 20 8.563887 Anserini +test2274 Q0 14144703 21 8.563376 Anserini +test2274 Q0 16512159 22 8.555831 Anserini +test2274 Q0 4434310 23 8.514108 Anserini +test2274 Q0 12063529 24 8.510625 Anserini +test2274 Q0 11242359 25 8.492920 Anserini +test2274 Q0 10668963 26 8.486612 Anserini +test2274 Q0 2430853 27 8.438920 Anserini +test2274 Q0 16887468 28 8.411261 Anserini +test2274 Q0 2141380 29 8.372038 Anserini +test2274 Q0 4908926 30 8.348777 Anserini +test2275 Q0 12973660 1 15.202286 Anserini +test2275 Q0 18872094 2 13.429299 Anserini +test2275 Q0 18872093 3 13.378543 Anserini +test2275 Q0 1953625 4 13.234903 Anserini +test2275 Q0 12973677 5 13.150475 Anserini +test2275 Q0 13011295 6 12.856041 Anserini +test2275 Q0 12973669 7 12.845890 Anserini +test2275 Q0 20937307 8 12.665369 Anserini +test2275 Q0 18117695 9 12.574533 Anserini +test2275 Q0 12973657 10 12.495751 Anserini +test2275 Q0 20958955 11 12.318075 Anserini +test2275 Q0 3245777 12 12.227312 Anserini +test2275 Q0 18327139 13 12.196939 Anserini +test2275 Q0 20946748 14 12.196939 Anserini +test2275 Q0 12973661 15 12.196196 Anserini +test2275 Q0 13610987 16 12.195018 Anserini +test2275 Q0 14012428 17 12.123785 Anserini +test2275 Q0 1953619 18 12.017591 Anserini +test2275 Q0 13011308 19 11.959130 Anserini +test2275 Q0 2960501 20 11.958181 Anserini +test2275 Q0 12973676 21 11.852409 Anserini +test2275 Q0 13011323 22 11.772511 Anserini +test2275 Q0 13011313 23 11.769219 Anserini +test2275 Q0 12973651 24 11.756443 Anserini +test2275 Q0 12973675 25 11.756443 Anserini +test2275 Q0 1953624 26 11.662685 Anserini +test2275 Q0 18204468 27 11.586283 Anserini +test2275 Q0 12973649 28 11.586283 Anserini +test2275 Q0 12973680 29 11.565183 Anserini +test2275 Q0 5153515 30 11.532984 Anserini +test2276 Q0 808834 1 15.080851 Anserini +test2276 Q0 16520955 2 15.080851 Anserini +test2276 Q0 808841 3 14.596519 Anserini +test2276 Q0 808886 4 14.289203 Anserini +test2276 Q0 11778226 5 13.486521 Anserini +test2276 Q0 808836 6 13.341494 Anserini +test2276 Q0 808820 7 13.199553 Anserini +test2276 Q0 808866 8 13.199553 Anserini +test2276 Q0 16520956 9 13.199553 Anserini +test2276 Q0 808835 10 13.060600 Anserini +test2276 Q0 808840 11 13.060600 Anserini +test2276 Q0 6955612 12 13.060600 Anserini +test2276 Q0 18572101 13 13.060600 Anserini +test2276 Q0 7501664 14 12.037123 Anserini +test2276 Q0 7501687 15 11.980383 Anserini +test2276 Q0 20997805 16 11.929046 Anserini +test2276 Q0 6861389 17 11.666014 Anserini +test2276 Q0 20790984 18 11.545513 Anserini +test2276 Q0 20790986 19 11.545513 Anserini +test2276 Q0 808847 20 11.311291 Anserini +test2276 Q0 20535970 21 11.260710 Anserini +test2276 Q0 11413878 22 11.058841 Anserini +test2276 Q0 11413876 23 11.037893 Anserini +test2276 Q0 5636231 24 10.965431 Anserini +test2276 Q0 5636233 25 10.965431 Anserini +test2276 Q0 20645684 26 10.963370 Anserini +test2276 Q0 808876 27 10.897486 Anserini +test2276 Q0 808877 28 10.897486 Anserini +test2276 Q0 9473015 29 10.897486 Anserini +test2276 Q0 9473017 30 10.897486 Anserini +test2277 Q0 20105822 1 13.596031 Anserini +test2277 Q0 11059599 2 13.595813 Anserini +test2277 Q0 6475125 3 13.394382 Anserini +test2277 Q0 6028235 4 13.361901 Anserini +test2277 Q0 85858 5 13.130116 Anserini +test2277 Q0 4041609 6 13.021081 Anserini +test2277 Q0 20105837 7 12.907969 Anserini +test2277 Q0 13245221 8 12.886373 Anserini +test2277 Q0 5165393 9 12.660630 Anserini +test2277 Q0 8326188 10 12.515902 Anserini +test2277 Q0 4978465 11 12.503176 Anserini +test2277 Q0 5172422 12 12.460551 Anserini +test2277 Q0 10614211 13 12.345256 Anserini +test2277 Q0 11445422 14 12.279821 Anserini +test2277 Q0 10237239 15 12.213705 Anserini +test2277 Q0 11009392 16 12.207579 Anserini +test2277 Q0 11009400 17 12.197325 Anserini +test2277 Q0 6327842 18 12.183913 Anserini +test2277 Q0 18276909 19 12.181553 Anserini +test2277 Q0 11141859 20 12.144754 Anserini +test2277 Q0 13528505 21 12.129730 Anserini +test2277 Q0 11009372 22 12.122131 Anserini +test2277 Q0 5502425 23 12.080084 Anserini +test2277 Q0 11445425 24 12.047878 Anserini +test2277 Q0 8425100 25 12.025373 Anserini +test2277 Q0 5130708 26 12.000144 Anserini +test2277 Q0 6992219 27 11.975475 Anserini +test2277 Q0 7797860 28 11.967062 Anserini +test2277 Q0 698065 29 11.957091 Anserini +test2277 Q0 2694957 30 11.944845 Anserini +test2278 Q0 2347857 1 12.710083 Anserini +test2278 Q0 1574631 2 12.132155 Anserini +test2278 Q0 650595 3 11.877591 Anserini +test2278 Q0 3621383 4 11.836092 Anserini +test2278 Q0 650572 5 11.712159 Anserini +test2278 Q0 3115833 6 11.612843 Anserini +test2278 Q0 2331004 7 11.609971 Anserini +test2278 Q0 9220845 8 11.547223 Anserini +test2278 Q0 15140822 9 11.532763 Anserini +test2278 Q0 20687440 10 11.357691 Anserini +test2278 Q0 2416176 11 11.320228 Anserini +test2278 Q0 43898 12 11.317208 Anserini +test2278 Q0 17026336 13 11.292499 Anserini +test2278 Q0 6191765 14 11.185850 Anserini +test2278 Q0 4764685 15 11.139593 Anserini +test2278 Q0 20059564 16 11.136065 Anserini +test2278 Q0 17026331 17 11.090646 Anserini +test2278 Q0 19137599 18 11.081254 Anserini +test2278 Q0 2347858 19 11.010981 Anserini +test2278 Q0 143975 20 10.944571 Anserini +test2278 Q0 10282574 21 10.938375 Anserini +test2278 Q0 14378461 22 10.909057 Anserini +test2278 Q0 20536729 23 10.881115 Anserini +test2278 Q0 6623584 24 10.846766 Anserini +test2278 Q0 820298 25 10.753534 Anserini +test2278 Q0 650582 26 10.730742 Anserini +test2278 Q0 4717610 27 10.692358 Anserini +test2278 Q0 14564965 28 10.689855 Anserini +test2278 Q0 2331017 29 10.687997 Anserini +test2278 Q0 5690236 30 10.621325 Anserini +test2279 Q0 19978606 1 13.872474 Anserini +test2279 Q0 12544123 2 13.272122 Anserini +test2279 Q0 1777354 3 13.076794 Anserini +test2279 Q0 12544122 4 12.864886 Anserini +test2279 Q0 5752140 5 12.369618 Anserini +test2279 Q0 1648152 6 12.236603 Anserini +test2279 Q0 1648144 7 12.236603 Anserini +test2279 Q0 3199234 8 12.106416 Anserini +test2279 Q0 8882841 9 12.067391 Anserini +test2279 Q0 6483932 10 12.034279 Anserini +test2279 Q0 15314277 11 11.402083 Anserini +test2279 Q0 4219046 12 11.397410 Anserini +test2279 Q0 6801826 13 11.335179 Anserini +test2279 Q0 10073935 14 10.770180 Anserini +test2279 Q0 1435141 15 10.695382 Anserini +test2279 Q0 9566925 16 10.621614 Anserini +test2279 Q0 16382467 17 10.240977 Anserini +test2279 Q0 17927836 18 10.146839 Anserini +test2279 Q0 601463 19 10.133171 Anserini +test2279 Q0 12731763 20 9.973880 Anserini +test2279 Q0 16365249 21 9.924225 Anserini +test2279 Q0 7060942 22 9.822950 Anserini +test2279 Q0 326593 23 9.822950 Anserini +test2279 Q0 17153379 24 9.805643 Anserini +test2279 Q0 3846708 25 9.521932 Anserini +test2279 Q0 8322195 26 9.492360 Anserini +test2279 Q0 9459464 27 9.492360 Anserini +test2279 Q0 7905695 28 9.491446 Anserini +test2279 Q0 20039196 29 9.435510 Anserini +test2279 Q0 9566914 30 9.391282 Anserini +test228 Q0 9351241 1 14.072964 Anserini +test228 Q0 11567073 2 13.265818 Anserini +test228 Q0 7218571 3 12.980774 Anserini +test228 Q0 8342468 4 12.980622 Anserini +test228 Q0 6362731 5 12.633856 Anserini +test228 Q0 10927140 6 12.357435 Anserini +test228 Q0 19337053 7 12.225554 Anserini +test228 Q0 8577380 8 12.205590 Anserini +test228 Q0 18782261 9 12.201607 Anserini +test228 Q0 2186117 10 12.194776 Anserini +test228 Q0 14701401 11 12.187878 Anserini +test228 Q0 12786770 12 12.137257 Anserini +test228 Q0 17106910 13 12.007978 Anserini +test228 Q0 9275631 14 11.789691 Anserini +test228 Q0 9842230 15 11.723208 Anserini +test228 Q0 15551225 16 11.659119 Anserini +test228 Q0 3988024 17 11.620631 Anserini +test228 Q0 6362741 18 11.528934 Anserini +test228 Q0 13314866 19 11.523434 Anserini +test228 Q0 18237646 20 11.465784 Anserini +test228 Q0 3988023 21 11.409489 Anserini +test228 Q0 2666778 22 11.384317 Anserini +test228 Q0 16801432 23 11.363179 Anserini +test228 Q0 17004945 24 11.264469 Anserini +test228 Q0 3171302 25 11.242180 Anserini +test228 Q0 1806705 26 11.234306 Anserini +test228 Q0 1347611 27 11.182831 Anserini +test228 Q0 6362734 28 11.175828 Anserini +test228 Q0 7295372 29 11.138829 Anserini +test228 Q0 10540593 30 11.123080 Anserini +test2280 Q0 681954 1 11.477893 Anserini +test2280 Q0 906680 2 11.204363 Anserini +test2280 Q0 1245472 3 10.642349 Anserini +test2280 Q0 19932328 4 10.601326 Anserini +test2280 Q0 906520 5 10.512331 Anserini +test2280 Q0 682056 6 10.382972 Anserini +test2280 Q0 1244719 7 10.382972 Anserini +test2280 Q0 1244729 8 10.382972 Anserini +test2280 Q0 682031 9 10.327322 Anserini +test2280 Q0 1335608 10 10.181300 Anserini +test2280 Q0 681999 11 10.000902 Anserini +test2280 Q0 939199 12 9.998620 Anserini +test2280 Q0 682006 13 9.982041 Anserini +test2280 Q0 906686 14 9.925507 Anserini +test2280 Q0 681960 15 9.903030 Anserini +test2280 Q0 1079965 16 9.844627 Anserini +test2280 Q0 681994 17 9.789581 Anserini +test2280 Q0 681967 18 9.783502 Anserini +test2280 Q0 10284367 19 9.774117 Anserini +test2280 Q0 7579532 20 9.750197 Anserini +test2280 Q0 10284366 21 9.744018 Anserini +test2280 Q0 682002 22 9.737504 Anserini +test2280 Q0 681996 23 9.730772 Anserini +test2280 Q0 7579539 24 9.661722 Anserini +test2280 Q0 681972 25 9.581539 Anserini +test2280 Q0 1079955 26 9.552871 Anserini +test2280 Q0 681953 27 9.502782 Anserini +test2280 Q0 1249226 28 9.495786 Anserini +test2280 Q0 1223849 29 9.447486 Anserini +test2280 Q0 1223853 30 9.447486 Anserini +test2281 Q0 20415379 1 14.101895 Anserini +test2281 Q0 20415376 2 12.696867 Anserini +test2281 Q0 20415384 3 11.733193 Anserini +test2281 Q0 7479137 4 11.491812 Anserini +test2281 Q0 20181910 5 11.461501 Anserini +test2281 Q0 20181914 6 11.461501 Anserini +test2281 Q0 17733878 7 11.443834 Anserini +test2281 Q0 17268423 8 11.405709 Anserini +test2281 Q0 17268432 9 11.405709 Anserini +test2281 Q0 4270805 10 11.297502 Anserini +test2281 Q0 17268431 11 11.276190 Anserini +test2281 Q0 8567985 12 11.211022 Anserini +test2281 Q0 2418775 13 11.182362 Anserini +test2281 Q0 20415382 14 11.124981 Anserini +test2281 Q0 9381061 15 10.787530 Anserini +test2281 Q0 18247594 16 10.719258 Anserini +test2281 Q0 10151218 17 10.713186 Anserini +test2281 Q0 16626207 18 10.559171 Anserini +test2281 Q0 811425 19 10.549333 Anserini +test2281 Q0 3654569 20 10.513456 Anserini +test2281 Q0 14013409 21 10.501954 Anserini +test2281 Q0 4331090 22 10.501878 Anserini +test2281 Q0 10464112 23 10.487392 Anserini +test2281 Q0 19380996 24 10.484972 Anserini +test2281 Q0 17733881 25 10.383244 Anserini +test2281 Q0 8270099 26 10.364285 Anserini +test2281 Q0 16626213 27 10.330897 Anserini +test2281 Q0 8304640 28 10.314238 Anserini +test2281 Q0 9861519 29 10.314152 Anserini +test2281 Q0 17268430 30 10.276942 Anserini +test2282 Q0 4368249 1 15.384727 Anserini +test2282 Q0 4368242 2 14.269908 Anserini +test2282 Q0 14918036 3 13.577617 Anserini +test2282 Q0 7719941 4 13.377022 Anserini +test2282 Q0 4368247 5 13.305127 Anserini +test2282 Q0 2069034 6 13.077164 Anserini +test2282 Q0 18735793 7 13.069301 Anserini +test2282 Q0 18056822 8 12.956148 Anserini +test2282 Q0 918556 9 12.956148 Anserini +test2282 Q0 19094466 10 12.879762 Anserini +test2282 Q0 1240114 11 12.876226 Anserini +test2282 Q0 2069072 12 12.815490 Anserini +test2282 Q0 14918039 13 12.719642 Anserini +test2282 Q0 9649798 14 12.571825 Anserini +test2282 Q0 3654408 15 12.529987 Anserini +test2282 Q0 10162878 16 12.470551 Anserini +test2282 Q0 1010557 17 12.443566 Anserini +test2282 Q0 1021058 18 12.437117 Anserini +test2282 Q0 3654409 19 12.358331 Anserini +test2282 Q0 1010568 20 12.270092 Anserini +test2282 Q0 18705404 21 12.214941 Anserini +test2282 Q0 6308532 22 12.214941 Anserini +test2282 Q0 10133656 23 12.159330 Anserini +test2282 Q0 1010569 24 12.133138 Anserini +test2282 Q0 10920644 25 12.120264 Anserini +test2282 Q0 10920646 26 12.120264 Anserini +test2282 Q0 14632919 27 12.103117 Anserini +test2282 Q0 14911496 28 12.103117 Anserini +test2282 Q0 20255341 29 12.103117 Anserini +test2282 Q0 18705402 30 12.071552 Anserini +test2283 Q0 8690408 1 20.896948 Anserini +test2283 Q0 8690387 2 20.805668 Anserini +test2283 Q0 8690394 3 20.264872 Anserini +test2283 Q0 8690397 4 20.084696 Anserini +test2283 Q0 13079548 5 19.881943 Anserini +test2283 Q0 16716734 6 19.427839 Anserini +test2283 Q0 10382907 7 19.356030 Anserini +test2283 Q0 8690392 8 19.312662 Anserini +test2283 Q0 8690391 9 19.092882 Anserini +test2283 Q0 8690407 10 18.494328 Anserini +test2283 Q0 8690399 11 18.389713 Anserini +test2283 Q0 7319802 12 18.143425 Anserini +test2283 Q0 8690403 13 18.006920 Anserini +test2283 Q0 8717271 14 18.006920 Anserini +test2283 Q0 8690405 15 18.006920 Anserini +test2283 Q0 10079894 16 17.963675 Anserini +test2283 Q0 3189743 17 17.861731 Anserini +test2283 Q0 10079881 18 17.836617 Anserini +test2283 Q0 20136962 19 17.693260 Anserini +test2283 Q0 18154451 20 17.684608 Anserini +test2283 Q0 8690388 21 17.641888 Anserini +test2283 Q0 20136954 22 17.607523 Anserini +test2283 Q0 16716733 23 17.605680 Anserini +test2283 Q0 8690398 24 17.549690 Anserini +test2283 Q0 8690400 25 17.468624 Anserini +test2283 Q0 8690401 26 17.468624 Anserini +test2283 Q0 9376738 27 17.276415 Anserini +test2283 Q0 13079549 28 16.858433 Anserini +test2283 Q0 13274851 29 16.470798 Anserini +test2283 Q0 5823833 30 16.325123 Anserini +test2284 Q0 14156772 1 12.243624 Anserini +test2284 Q0 9040727 2 12.234149 Anserini +test2284 Q0 14156773 3 12.033957 Anserini +test2284 Q0 7349508 4 11.811409 Anserini +test2284 Q0 7235929 5 11.729951 Anserini +test2284 Q0 9040728 6 11.577176 Anserini +test2284 Q0 9040729 7 11.199638 Anserini +test2284 Q0 12309526 8 11.132251 Anserini +test2284 Q0 4915565 9 10.956631 Anserini +test2284 Q0 20742075 10 10.885691 Anserini +test2284 Q0 7349513 11 10.878674 Anserini +test2284 Q0 599271 12 10.875163 Anserini +test2284 Q0 7632254 13 10.861670 Anserini +test2284 Q0 7349509 14 10.809867 Anserini +test2284 Q0 16622747 15 10.768308 Anserini +test2284 Q0 7235930 16 10.702295 Anserini +test2284 Q0 1368504 17 10.562856 Anserini +test2284 Q0 19267097 18 10.479120 Anserini +test2284 Q0 5496696 19 10.423183 Anserini +test2284 Q0 17779932 20 10.421129 Anserini +test2284 Q0 17779933 21 10.421129 Anserini +test2284 Q0 16243097 22 10.408278 Anserini +test2284 Q0 16243099 23 10.408278 Anserini +test2284 Q0 6038107 24 10.363194 Anserini +test2284 Q0 4200798 25 10.363087 Anserini +test2284 Q0 7083362 26 10.352503 Anserini +test2284 Q0 14953336 27 10.347308 Anserini +test2284 Q0 13556622 28 10.325070 Anserini +test2284 Q0 17779674 29 10.325070 Anserini +test2284 Q0 13556494 30 10.271456 Anserini +test2285 Q0 2371449 1 16.397545 Anserini +test2285 Q0 8877 2 14.718502 Anserini +test2285 Q0 9650887 3 14.549019 Anserini +test2285 Q0 9650837 4 14.549019 Anserini +test2285 Q0 8860 5 14.428814 Anserini +test2285 Q0 8856 6 14.220190 Anserini +test2285 Q0 9650841 7 13.906944 Anserini +test2285 Q0 3746575 8 12.964815 Anserini +test2285 Q0 16188171 9 12.786893 Anserini +test2285 Q0 8874 10 12.067258 Anserini +test2285 Q0 16188169 11 11.832829 Anserini +test2285 Q0 9896973 12 11.749269 Anserini +test2285 Q0 8890 13 11.728291 Anserini +test2285 Q0 8875 14 11.512568 Anserini +test2285 Q0 9896974 15 11.434893 Anserini +test2285 Q0 3681320 16 11.411131 Anserini +test2285 Q0 4825463 17 11.186597 Anserini +test2285 Q0 8859 18 11.152561 Anserini +test2285 Q0 7149506 19 11.113836 Anserini +test2285 Q0 8873 20 11.094209 Anserini +test2285 Q0 8885 21 11.022717 Anserini +test2285 Q0 3746574 22 10.985474 Anserini +test2285 Q0 8861 23 10.934924 Anserini +test2285 Q0 3681302 24 10.873766 Anserini +test2285 Q0 10457578 25 10.840919 Anserini +test2285 Q0 3681304 26 10.813450 Anserini +test2285 Q0 8854 27 10.784659 Anserini +test2285 Q0 4828501 28 10.612673 Anserini +test2285 Q0 20728420 29 10.610194 Anserini +test2285 Q0 12984198 30 10.608027 Anserini +test2286 Q0 7510443 1 16.157518 Anserini +test2286 Q0 18279631 2 15.223485 Anserini +test2286 Q0 714036 3 15.111391 Anserini +test2286 Q0 5647758 4 14.923045 Anserini +test2286 Q0 9324838 5 14.767434 Anserini +test2286 Q0 10138243 6 14.308441 Anserini +test2286 Q0 7510458 7 14.223094 Anserini +test2286 Q0 15922540 8 13.990942 Anserini +test2286 Q0 9638857 9 13.903246 Anserini +test2286 Q0 9832377 10 13.893297 Anserini +test2286 Q0 2400299 11 13.885835 Anserini +test2286 Q0 4739953 12 13.858599 Anserini +test2286 Q0 7510455 13 13.840443 Anserini +test2286 Q0 4873901 14 13.752214 Anserini +test2286 Q0 9638858 15 13.673313 Anserini +test2286 Q0 7510452 16 13.651501 Anserini +test2286 Q0 9832382 17 13.375157 Anserini +test2286 Q0 7637040 18 13.218561 Anserini +test2286 Q0 6458983 19 13.181046 Anserini +test2286 Q0 15922538 20 13.173847 Anserini +test2286 Q0 18991866 21 13.089640 Anserini +test2286 Q0 14493910 22 13.037744 Anserini +test2286 Q0 7510446 23 13.031785 Anserini +test2286 Q0 15398983 24 12.963776 Anserini +test2286 Q0 7510453 25 12.932384 Anserini +test2286 Q0 7510456 26 12.875554 Anserini +test2286 Q0 9832381 27 12.874234 Anserini +test2286 Q0 9193965 28 12.836502 Anserini +test2286 Q0 15398984 29 12.825512 Anserini +test2286 Q0 16047560 30 12.750310 Anserini +test2287 Q0 8746319 1 21.399858 Anserini +test2287 Q0 9439020 2 21.230957 Anserini +test2287 Q0 961617 3 21.184103 Anserini +test2287 Q0 16568339 4 20.600445 Anserini +test2287 Q0 128600 5 20.452604 Anserini +test2287 Q0 1427575 6 20.451389 Anserini +test2287 Q0 3022855 7 20.182970 Anserini +test2287 Q0 9571854 8 20.181181 Anserini +test2287 Q0 3471689 9 19.841328 Anserini +test2287 Q0 20516429 10 19.785259 Anserini +test2287 Q0 4454485 11 19.778185 Anserini +test2287 Q0 1825373 12 19.770229 Anserini +test2287 Q0 5946114 13 19.753613 Anserini +test2287 Q0 7758909 14 19.685026 Anserini +test2287 Q0 402645 15 19.646818 Anserini +test2287 Q0 1427972 16 19.641098 Anserini +test2287 Q0 211385 17 19.606722 Anserini +test2287 Q0 10482030 18 19.516479 Anserini +test2287 Q0 2316714 19 19.262495 Anserini +test2287 Q0 402520 20 19.247169 Anserini +test2287 Q0 4049947 21 19.176561 Anserini +test2287 Q0 5811349 22 19.176311 Anserini +test2287 Q0 1320646 23 19.054838 Anserini +test2287 Q0 13263551 24 18.786240 Anserini +test2287 Q0 1181668 25 18.731905 Anserini +test2287 Q0 1840471 26 18.724796 Anserini +test2287 Q0 4496406 27 18.707253 Anserini +test2287 Q0 11028497 28 18.654079 Anserini +test2287 Q0 211490 29 18.653666 Anserini +test2287 Q0 1304576 30 18.641407 Anserini +test2288 Q0 9512929 1 12.461332 Anserini +test2288 Q0 10709260 2 12.008470 Anserini +test2288 Q0 3157704 3 11.835504 Anserini +test2288 Q0 10490945 4 11.802136 Anserini +test2288 Q0 8163437 5 11.688940 Anserini +test2288 Q0 4820772 6 11.545596 Anserini +test2288 Q0 5460049 7 11.414878 Anserini +test2288 Q0 4293120 8 11.341149 Anserini +test2288 Q0 18719546 9 11.251236 Anserini +test2288 Q0 18719551 10 11.251236 Anserini +test2288 Q0 9406212 11 11.233984 Anserini +test2288 Q0 19578203 12 11.060897 Anserini +test2288 Q0 8172742 13 10.940032 Anserini +test2288 Q0 14305502 14 10.861430 Anserini +test2288 Q0 770077 15 10.855766 Anserini +test2288 Q0 9378353 16 10.806277 Anserini +test2288 Q0 3374976 17 10.782001 Anserini +test2288 Q0 17474245 18 10.774117 Anserini +test2288 Q0 3157723 19 10.750756 Anserini +test2288 Q0 10709234 20 10.739877 Anserini +test2288 Q0 19516411 21 10.707984 Anserini +test2288 Q0 6639284 22 10.637132 Anserini +test2288 Q0 15275525 23 10.616727 Anserini +test2288 Q0 8008145 24 10.585342 Anserini +test2288 Q0 19578209 25 10.566985 Anserini +test2288 Q0 11204356 26 10.566985 Anserini +test2288 Q0 3157705 27 10.551048 Anserini +test2288 Q0 5153867 28 10.426564 Anserini +test2288 Q0 3157731 29 10.392685 Anserini +test2288 Q0 18840673 30 10.391268 Anserini +test2289 Q0 14368949 1 14.929404 Anserini +test2289 Q0 4049841 2 13.777476 Anserini +test2289 Q0 6868051 3 13.630294 Anserini +test2289 Q0 5936238 4 13.237744 Anserini +test2289 Q0 6013187 5 13.153385 Anserini +test2289 Q0 8706062 6 13.110065 Anserini +test2289 Q0 631457 7 13.083214 Anserini +test2289 Q0 6606409 8 12.756588 Anserini +test2289 Q0 12357414 9 12.478549 Anserini +test2289 Q0 11889138 10 12.372441 Anserini +test2289 Q0 2192318 11 12.262481 Anserini +test2289 Q0 12391060 12 12.025817 Anserini +test2289 Q0 628172 13 12.006385 Anserini +test2289 Q0 20314653 14 11.953014 Anserini +test2289 Q0 7504625 15 11.913631 Anserini +test2289 Q0 2697792 16 11.909314 Anserini +test2289 Q0 17385240 17 11.869829 Anserini +test2289 Q0 13916537 18 11.857192 Anserini +test2289 Q0 1622102 19 11.850524 Anserini +test2289 Q0 1622124 20 11.850524 Anserini +test2289 Q0 688279 21 11.796151 Anserini +test2289 Q0 10066364 22 11.738543 Anserini +test2289 Q0 16547899 23 11.704466 Anserini +test2289 Q0 750254 24 11.696458 Anserini +test2289 Q0 10993233 25 11.620018 Anserini +test2289 Q0 10993218 26 11.620018 Anserini +test2289 Q0 628771 27 11.598307 Anserini +test2289 Q0 280247 28 11.579901 Anserini +test2289 Q0 4683394 29 11.570572 Anserini +test2289 Q0 750211 30 11.503442 Anserini +test229 Q0 18385723 1 11.777098 Anserini +test229 Q0 20005863 2 11.560159 Anserini +test229 Q0 19877164 3 11.503327 Anserini +test229 Q0 19877189 4 11.217053 Anserini +test229 Q0 523914 5 11.050902 Anserini +test229 Q0 19877153 6 10.788055 Anserini +test229 Q0 20723307 7 10.697206 Anserini +test229 Q0 18841715 8 10.671728 Anserini +test229 Q0 15398459 9 10.596751 Anserini +test229 Q0 21002673 10 10.588708 Anserini +test229 Q0 3148836 11 10.536659 Anserini +test229 Q0 18545355 12 10.484479 Anserini +test229 Q0 19792366 13 10.419239 Anserini +test229 Q0 18841714 14 10.406459 Anserini +test229 Q0 17724417 15 10.361934 Anserini +test229 Q0 7494171 16 10.298832 Anserini +test229 Q0 20733158 17 10.234192 Anserini +test229 Q0 13197354 18 10.219994 Anserini +test229 Q0 9617790 19 10.200644 Anserini +test229 Q0 19877173 20 10.145078 Anserini +test229 Q0 20060234 21 10.064479 Anserini +test229 Q0 5585527 22 10.021281 Anserini +test229 Q0 5824132 23 10.007446 Anserini +test229 Q0 20805504 24 9.990547 Anserini +test229 Q0 19877168 25 9.981515 Anserini +test229 Q0 20723301 26 9.981409 Anserini +test229 Q0 20005874 27 9.981409 Anserini +test229 Q0 15978307 28 9.965693 Anserini +test229 Q0 20903447 29 9.941300 Anserini +test229 Q0 20060224 30 9.932602 Anserini +test2290 Q0 13862041 1 11.965595 Anserini +test2290 Q0 5956130 2 11.336553 Anserini +test2290 Q0 315302 3 11.093673 Anserini +test2290 Q0 5713006 4 10.579309 Anserini +test2290 Q0 6003814 5 10.559380 Anserini +test2290 Q0 11812742 6 10.497943 Anserini +test2290 Q0 5241768 7 10.448596 Anserini +test2290 Q0 16907929 8 10.418339 Anserini +test2290 Q0 685936 9 10.378395 Anserini +test2290 Q0 6411302 10 10.367869 Anserini +test2290 Q0 2693067 11 10.362765 Anserini +test2290 Q0 685915 12 10.303436 Anserini +test2290 Q0 5713013 13 10.242102 Anserini +test2290 Q0 451350 14 10.233678 Anserini +test2290 Q0 13953878 15 10.198263 Anserini +test2290 Q0 14786712 16 10.189116 Anserini +test2290 Q0 465789 17 10.188648 Anserini +test2290 Q0 11812749 18 10.188648 Anserini +test2290 Q0 5401085 19 10.141850 Anserini +test2290 Q0 5974305 20 10.105760 Anserini +test2290 Q0 5401100 21 10.096674 Anserini +test2290 Q0 7429077 22 10.096539 Anserini +test2290 Q0 6927626 23 10.058166 Anserini +test2290 Q0 14978966 24 10.058013 Anserini +test2290 Q0 11550388 25 10.055757 Anserini +test2290 Q0 360246 26 10.046485 Anserini +test2290 Q0 62728 27 10.022876 Anserini +test2290 Q0 13819072 28 10.019559 Anserini +test2290 Q0 12888388 29 9.961796 Anserini +test2290 Q0 19134468 30 9.933373 Anserini +test2291 Q0 9244170 1 14.409313 Anserini +test2291 Q0 11404659 2 14.372489 Anserini +test2291 Q0 8718849 3 14.297823 Anserini +test2291 Q0 11522975 4 14.020696 Anserini +test2291 Q0 15204761 5 13.908260 Anserini +test2291 Q0 19396347 6 13.820970 Anserini +test2291 Q0 17736686 7 13.658002 Anserini +test2291 Q0 11404648 8 13.509768 Anserini +test2291 Q0 11404661 9 13.303617 Anserini +test2291 Q0 10146198 10 13.234487 Anserini +test2291 Q0 20468605 11 13.101127 Anserini +test2291 Q0 9852302 12 12.985459 Anserini +test2291 Q0 9975566 13 12.919662 Anserini +test2291 Q0 12843975 14 12.896358 Anserini +test2291 Q0 10580414 15 12.879704 Anserini +test2291 Q0 11404664 16 12.844504 Anserini +test2291 Q0 11393528 17 12.799921 Anserini +test2291 Q0 9852231 18 12.759151 Anserini +test2291 Q0 12843967 19 12.611511 Anserini +test2291 Q0 14140346 20 12.607178 Anserini +test2291 Q0 12843972 21 12.563117 Anserini +test2291 Q0 4254451 22 12.550127 Anserini +test2291 Q0 9852201 23 12.425332 Anserini +test2291 Q0 11428661 24 12.356669 Anserini +test2291 Q0 9852217 25 12.313750 Anserini +test2291 Q0 11721352 26 12.280191 Anserini +test2291 Q0 9852214 27 12.253914 Anserini +test2291 Q0 19127874 28 12.244864 Anserini +test2291 Q0 19775692 29 12.210176 Anserini +test2291 Q0 9862143 30 12.195498 Anserini +test2292 Q0 15743265 1 14.917186 Anserini +test2292 Q0 2388818 2 14.854460 Anserini +test2292 Q0 3705082 3 13.794643 Anserini +test2292 Q0 13071653 4 13.687527 Anserini +test2292 Q0 3705044 5 13.577537 Anserini +test2292 Q0 20138356 6 13.389689 Anserini +test2292 Q0 20138357 7 13.207182 Anserini +test2292 Q0 15743266 8 13.140341 Anserini +test2292 Q0 20243872 9 13.138588 Anserini +test2292 Q0 20243894 10 13.138588 Anserini +test2292 Q0 20369820 11 13.102424 Anserini +test2292 Q0 20369821 12 13.102424 Anserini +test2292 Q0 20502116 13 13.020696 Anserini +test2292 Q0 19671976 14 12.995020 Anserini +test2292 Q0 20397814 15 12.995020 Anserini +test2292 Q0 3705078 16 12.977611 Anserini +test2292 Q0 20502117 17 12.960219 Anserini +test2292 Q0 8016179 18 12.937536 Anserini +test2292 Q0 3574867 19 12.912483 Anserini +test2292 Q0 12422154 20 12.847284 Anserini +test2292 Q0 20490252 21 12.808077 Anserini +test2292 Q0 7967838 22 12.800316 Anserini +test2292 Q0 19671953 23 12.798657 Anserini +test2292 Q0 19691552 24 12.742592 Anserini +test2292 Q0 20079335 25 12.733466 Anserini +test2292 Q0 15464702 26 12.653336 Anserini +test2292 Q0 20530388 27 12.412582 Anserini +test2292 Q0 3117855 28 12.388287 Anserini +test2292 Q0 7327438 29 12.370380 Anserini +test2292 Q0 20507506 30 12.356147 Anserini +test2293 Q0 6689139 1 20.147532 Anserini +test2293 Q0 6689149 2 19.222706 Anserini +test2293 Q0 6905053 3 18.497648 Anserini +test2293 Q0 4930082 4 16.992979 Anserini +test2293 Q0 4930083 5 16.882767 Anserini +test2293 Q0 12728544 6 16.810461 Anserini +test2293 Q0 1912497 7 16.711763 Anserini +test2293 Q0 6689141 8 16.467009 Anserini +test2293 Q0 6596433 9 16.073822 Anserini +test2293 Q0 12728536 10 15.795585 Anserini +test2293 Q0 6689142 11 15.587968 Anserini +test2293 Q0 1068144 12 15.485688 Anserini +test2293 Q0 6596422 13 15.247980 Anserini +test2293 Q0 558751 14 14.940152 Anserini +test2293 Q0 12942623 15 14.691376 Anserini +test2293 Q0 6689145 16 14.580533 Anserini +test2293 Q0 10156869 17 14.412883 Anserini +test2293 Q0 6689148 18 14.412883 Anserini +test2293 Q0 3018968 19 14.379474 Anserini +test2293 Q0 6689146 20 14.109433 Anserini +test2293 Q0 4627012 21 14.109433 Anserini +test2293 Q0 1912496 22 14.061702 Anserini +test2293 Q0 1912491 23 14.031546 Anserini +test2293 Q0 1912493 24 13.809677 Anserini +test2293 Q0 1615742 25 13.283273 Anserini +test2293 Q0 3265899 26 13.192161 Anserini +test2293 Q0 9193513 27 13.112288 Anserini +test2293 Q0 601405 28 13.102307 Anserini +test2293 Q0 12728537 29 13.093907 Anserini +test2293 Q0 1881284 30 12.730973 Anserini +test2294 Q0 805509 1 13.235345 Anserini +test2294 Q0 361911 2 12.527719 Anserini +test2294 Q0 628171 3 12.285482 Anserini +test2294 Q0 1839697 4 12.120173 Anserini +test2294 Q0 245315 5 11.728180 Anserini +test2294 Q0 2544283 6 11.708589 Anserini +test2294 Q0 619110 7 11.458297 Anserini +test2294 Q0 4289615 8 11.323461 Anserini +test2294 Q0 2103476 9 11.294127 Anserini +test2294 Q0 12837321 10 11.075431 Anserini +test2294 Q0 12837317 11 11.075431 Anserini +test2294 Q0 3204223 12 10.894974 Anserini +test2294 Q0 15083270 13 10.887134 Anserini +test2294 Q0 796555 14 10.823305 Anserini +test2294 Q0 13671977 15 10.706198 Anserini +test2294 Q0 8792472 16 10.612619 Anserini +test2294 Q0 2874509 17 10.591069 Anserini +test2294 Q0 21622 18 10.522141 Anserini +test2294 Q0 1621148 19 10.484006 Anserini +test2294 Q0 628514 20 10.478390 Anserini +test2294 Q0 619109 21 10.439552 Anserini +test2294 Q0 11236833 22 10.395329 Anserini +test2294 Q0 19404191 23 10.360817 Anserini +test2294 Q0 619108 24 10.360136 Anserini +test2294 Q0 1935075 25 10.345041 Anserini +test2294 Q0 553469 26 10.322081 Anserini +test2294 Q0 694586 27 10.230956 Anserini +test2294 Q0 11832046 28 10.172598 Anserini +test2294 Q0 5184725 29 10.169996 Anserini +test2294 Q0 1757705 30 10.127186 Anserini +test2295 Q0 7024714 1 25.572388 Anserini +test2295 Q0 18620091 2 24.608997 Anserini +test2295 Q0 29115 3 23.168926 Anserini +test2295 Q0 20128114 4 23.147608 Anserini +test2295 Q0 18620090 5 22.868822 Anserini +test2295 Q0 18620096 6 22.027979 Anserini +test2295 Q0 18620092 7 21.657455 Anserini +test2295 Q0 11328182 8 21.014885 Anserini +test2295 Q0 9846955 9 20.366808 Anserini +test2295 Q0 11328178 10 20.113392 Anserini +test2295 Q0 7367029 11 19.985636 Anserini +test2295 Q0 10012665 12 19.703985 Anserini +test2295 Q0 17449635 13 19.374462 Anserini +test2295 Q0 20306702 14 18.171337 Anserini +test2295 Q0 11353627 15 18.073658 Anserini +test2295 Q0 29113 16 17.951780 Anserini +test2295 Q0 10012664 17 17.904230 Anserini +test2295 Q0 29116 18 17.897154 Anserini +test2295 Q0 12596520 19 17.849913 Anserini +test2295 Q0 7024718 20 17.049942 Anserini +test2295 Q0 11973235 21 16.944382 Anserini +test2295 Q0 29114 22 16.648994 Anserini +test2295 Q0 2708765 23 16.546066 Anserini +test2295 Q0 18620094 24 16.478518 Anserini +test2295 Q0 8041895 25 16.461100 Anserini +test2295 Q0 7024717 26 16.451080 Anserini +test2295 Q0 29117 27 16.418030 Anserini +test2295 Q0 18620093 28 16.402353 Anserini +test2295 Q0 29121 29 16.074152 Anserini +test2295 Q0 11322654 30 15.967064 Anserini +test2296 Q0 11967569 1 17.974445 Anserini +test2296 Q0 11967570 2 17.974445 Anserini +test2296 Q0 12284724 3 17.076351 Anserini +test2296 Q0 20702439 4 16.349316 Anserini +test2296 Q0 20702440 5 16.138830 Anserini +test2296 Q0 19665026 6 16.002644 Anserini +test2296 Q0 10134412 7 15.633593 Anserini +test2296 Q0 14458723 8 15.630658 Anserini +test2296 Q0 10136792 9 15.567181 Anserini +test2296 Q0 10134428 10 15.437881 Anserini +test2296 Q0 10136793 11 15.418836 Anserini +test2296 Q0 10134357 12 15.374588 Anserini +test2296 Q0 10259618 13 15.366619 Anserini +test2296 Q0 13282390 14 15.355160 Anserini +test2296 Q0 12689101 15 15.239520 Anserini +test2296 Q0 14660008 16 14.987742 Anserini +test2296 Q0 10134476 17 14.915661 Anserini +test2296 Q0 15478400 18 14.878071 Anserini +test2296 Q0 15871638 19 14.869184 Anserini +test2296 Q0 5420547 20 14.641633 Anserini +test2296 Q0 10134356 21 14.578508 Anserini +test2296 Q0 10137178 22 14.558693 Anserini +test2296 Q0 10137180 23 14.558693 Anserini +test2296 Q0 8785767 24 14.558693 Anserini +test2296 Q0 8371870 25 14.551060 Anserini +test2296 Q0 12136347 26 14.512066 Anserini +test2296 Q0 17021220 27 14.496351 Anserini +test2296 Q0 8785768 28 14.466511 Anserini +test2296 Q0 8649575 29 14.412132 Anserini +test2296 Q0 361518 30 14.379865 Anserini +test2297 Q0 12767513 1 9.944269 Anserini +test2297 Q0 13638588 2 9.932074 Anserini +test2297 Q0 13638556 3 9.890631 Anserini +test2297 Q0 5309897 4 9.766266 Anserini +test2297 Q0 16195251 5 9.743849 Anserini +test2297 Q0 20785648 6 9.612967 Anserini +test2297 Q0 13638583 7 9.536119 Anserini +test2297 Q0 7746408 8 9.524570 Anserini +test2297 Q0 5598641 9 9.308641 Anserini +test2297 Q0 5111650 10 9.212402 Anserini +test2297 Q0 9061096 11 9.211805 Anserini +test2297 Q0 16590484 12 9.188098 Anserini +test2297 Q0 10897908 13 9.133883 Anserini +test2297 Q0 12767506 14 9.064802 Anserini +test2297 Q0 5111652 15 9.021004 Anserini +test2297 Q0 16212113 16 9.021004 Anserini +test2297 Q0 12767519 17 8.951025 Anserini +test2297 Q0 3438182 18 8.913971 Anserini +test2297 Q0 2395801 19 8.855022 Anserini +test2297 Q0 18783332 20 8.833901 Anserini +test2297 Q0 17642158 21 8.824189 Anserini +test2297 Q0 1935022 22 8.820061 Anserini +test2297 Q0 17205490 23 8.797502 Anserini +test2297 Q0 12451092 24 8.775232 Anserini +test2297 Q0 1561905 25 8.741921 Anserini +test2297 Q0 4799331 26 8.730393 Anserini +test2297 Q0 4799332 27 8.730393 Anserini +test2297 Q0 12767511 28 8.710612 Anserini +test2297 Q0 12907682 29 8.707657 Anserini +test2297 Q0 11999351 30 8.664615 Anserini +test2298 Q0 19401428 1 17.407772 Anserini +test2298 Q0 4839448 2 16.596460 Anserini +test2298 Q0 19401423 3 16.452986 Anserini +test2298 Q0 8784037 4 15.357486 Anserini +test2298 Q0 19401427 5 14.929534 Anserini +test2298 Q0 19401426 6 14.826563 Anserini +test2298 Q0 14127760 7 14.203476 Anserini +test2298 Q0 7638386 8 14.115816 Anserini +test2298 Q0 14127761 9 14.023893 Anserini +test2298 Q0 15128846 10 13.943027 Anserini +test2298 Q0 19401424 11 13.889371 Anserini +test2298 Q0 19401425 12 13.889371 Anserini +test2298 Q0 5544685 13 13.698366 Anserini +test2298 Q0 15128850 14 13.696852 Anserini +test2298 Q0 8784025 15 13.541616 Anserini +test2298 Q0 8314415 16 13.446861 Anserini +test2298 Q0 8604694 17 13.378771 Anserini +test2298 Q0 8604700 18 13.344983 Anserini +test2298 Q0 6671552 19 13.279968 Anserini +test2298 Q0 4832596 20 13.274677 Anserini +test2298 Q0 3129287 21 13.216166 Anserini +test2298 Q0 8314446 22 13.179663 Anserini +test2298 Q0 9388155 23 13.091519 Anserini +test2298 Q0 8314445 24 13.053788 Anserini +test2298 Q0 8314421 25 12.933605 Anserini +test2298 Q0 8314423 26 12.883009 Anserini +test2298 Q0 18309503 27 12.870780 Anserini +test2298 Q0 3129281 28 12.870349 Anserini +test2298 Q0 5016302 29 12.839186 Anserini +test2298 Q0 8314440 30 12.839186 Anserini +test2299 Q0 13181676 1 16.339617 Anserini +test2299 Q0 5219058 2 16.002079 Anserini +test2299 Q0 11092551 3 15.396343 Anserini +test2299 Q0 11092562 4 15.282462 Anserini +test2299 Q0 13181677 5 15.141975 Anserini +test2299 Q0 13181656 6 14.800549 Anserini +test2299 Q0 11092556 7 14.647735 Anserini +test2299 Q0 5219049 8 14.544449 Anserini +test2299 Q0 5219050 9 14.395959 Anserini +test2299 Q0 13181672 10 14.394514 Anserini +test2299 Q0 5219068 11 14.127529 Anserini +test2299 Q0 20081841 12 13.856277 Anserini +test2299 Q0 12867735 13 13.847235 Anserini +test2299 Q0 5219081 14 13.651153 Anserini +test2299 Q0 13411756 15 13.651116 Anserini +test2299 Q0 11092568 16 13.576775 Anserini +test2299 Q0 13181657 17 13.503715 Anserini +test2299 Q0 11092543 18 13.455646 Anserini +test2299 Q0 20081812 19 13.433476 Anserini +test2299 Q0 5219079 20 13.394820 Anserini +test2299 Q0 20081819 21 13.329392 Anserini +test2299 Q0 12867734 22 13.287106 Anserini +test2299 Q0 11092561 23 13.272455 Anserini +test2299 Q0 11092552 24 13.268149 Anserini +test2299 Q0 11092542 25 13.266072 Anserini +test2299 Q0 11092566 26 13.197334 Anserini +test2299 Q0 13406094 27 13.138392 Anserini +test2299 Q0 11092549 28 13.127144 Anserini +test2299 Q0 20081851 29 13.090651 Anserini +test2299 Q0 5219056 30 13.045107 Anserini +test23 Q0 7516100 1 21.828360 Anserini +test23 Q0 7516104 2 20.886747 Anserini +test23 Q0 5171793 3 20.507456 Anserini +test23 Q0 7516070 4 20.054564 Anserini +test23 Q0 7516068 5 19.551453 Anserini +test23 Q0 7516075 6 18.738258 Anserini +test23 Q0 7516067 7 18.479668 Anserini +test23 Q0 5946325 8 17.906061 Anserini +test23 Q0 3085094 9 17.143511 Anserini +test23 Q0 5171790 10 16.966627 Anserini +test23 Q0 7100626 11 16.918442 Anserini +test23 Q0 684375 12 16.834360 Anserini +test23 Q0 7356703 13 16.714909 Anserini +test23 Q0 7546810 14 16.627748 Anserini +test23 Q0 6495747 15 16.344257 Anserini +test23 Q0 41575 16 16.000748 Anserini +test23 Q0 1450725 17 15.599674 Anserini +test23 Q0 7516073 18 15.584786 Anserini +test23 Q0 18976537 19 15.559521 Anserini +test23 Q0 1450730 20 15.516008 Anserini +test23 Q0 6265692 21 15.451460 Anserini +test23 Q0 14492672 22 15.358191 Anserini +test23 Q0 8148826 23 15.173567 Anserini +test23 Q0 7099711 24 15.058583 Anserini +test23 Q0 7099709 25 15.058583 Anserini +test23 Q0 7876461 26 14.920276 Anserini +test23 Q0 3994118 27 14.850702 Anserini +test23 Q0 608119 28 14.831199 Anserini +test23 Q0 7525230 29 14.797688 Anserini +test23 Q0 3994117 30 14.694369 Anserini +test230 Q0 8823968 1 13.079710 Anserini +test230 Q0 1958575 2 11.290022 Anserini +test230 Q0 2255070 3 10.654825 Anserini +test230 Q0 1657040 4 10.385777 Anserini +test230 Q0 8144962 5 10.077577 Anserini +test230 Q0 8144956 6 10.056541 Anserini +test230 Q0 7655856 7 10.014179 Anserini +test230 Q0 20672444 8 9.891207 Anserini +test230 Q0 18087659 9 9.868770 Anserini +test230 Q0 16310515 10 9.646048 Anserini +test230 Q0 16310521 11 9.646048 Anserini +test230 Q0 19068608 12 9.486003 Anserini +test230 Q0 2319593 13 9.402693 Anserini +test230 Q0 15195948 14 9.394945 Anserini +test230 Q0 4472439 15 9.156776 Anserini +test230 Q0 19090563 16 9.147839 Anserini +test230 Q0 4472441 17 9.147839 Anserini +test230 Q0 2303684 18 9.146837 Anserini +test230 Q0 15152839 19 9.110388 Anserini +test230 Q0 15152851 20 9.110388 Anserini +test230 Q0 19090564 21 9.101856 Anserini +test230 Q0 16955642 22 9.101856 Anserini +test230 Q0 1015505 23 9.092445 Anserini +test230 Q0 5730570 24 9.084441 Anserini +test230 Q0 8143094 25 9.056643 Anserini +test230 Q0 20520256 26 9.056643 Anserini +test230 Q0 9060344 27 9.056643 Anserini +test230 Q0 9060338 28 9.056643 Anserini +test230 Q0 5730546 29 9.004870 Anserini +test230 Q0 2221286 30 8.993121 Anserini +test2300 Q0 15010921 1 20.890617 Anserini +test2300 Q0 4161817 2 16.943924 Anserini +test2300 Q0 4161814 3 16.920732 Anserini +test2300 Q0 2099781 4 16.112366 Anserini +test2300 Q0 9762476 5 16.060284 Anserini +test2300 Q0 19553313 6 15.966365 Anserini +test2300 Q0 19553312 7 15.884897 Anserini +test2300 Q0 19553314 8 15.884897 Anserini +test2300 Q0 624874 9 15.356901 Anserini +test2300 Q0 11209250 10 15.145243 Anserini +test2300 Q0 19702150 11 15.105383 Anserini +test2300 Q0 19702149 12 15.045853 Anserini +test2300 Q0 10854649 13 14.656609 Anserini +test2300 Q0 4599912 14 14.502318 Anserini +test2300 Q0 10854640 15 14.502318 Anserini +test2300 Q0 4161815 16 14.414047 Anserini +test2300 Q0 11209249 17 14.123384 Anserini +test2300 Q0 1515992 18 13.711607 Anserini +test2300 Q0 7574223 19 13.656273 Anserini +test2300 Q0 9696850 20 13.460765 Anserini +test2300 Q0 7487755 21 13.117724 Anserini +test2300 Q0 4161816 22 12.605817 Anserini +test2300 Q0 3984020 23 12.604364 Anserini +test2300 Q0 3344760 24 12.597370 Anserini +test2300 Q0 12559461 25 12.447797 Anserini +test2300 Q0 15221188 26 12.364697 Anserini +test2300 Q0 8589444 27 12.235888 Anserini +test2300 Q0 17224544 28 12.136288 Anserini +test2300 Q0 14910759 29 12.103552 Anserini +test2300 Q0 12559449 30 12.091629 Anserini +test2301 Q0 18406688 1 16.154921 Anserini +test2301 Q0 18406687 2 15.774426 Anserini +test2301 Q0 18406689 3 15.640653 Anserini +test2301 Q0 18406700 4 14.459871 Anserini +test2301 Q0 2879961 5 14.011717 Anserini +test2301 Q0 20221884 6 11.535109 Anserini +test2301 Q0 20221882 7 11.470742 Anserini +test2301 Q0 3290751 8 10.968394 Anserini +test2301 Q0 18406725 9 10.917093 Anserini +test2301 Q0 18406683 10 10.868873 Anserini +test2301 Q0 18406723 11 10.860194 Anserini +test2301 Q0 4958009 12 10.718584 Anserini +test2301 Q0 18406708 13 10.516376 Anserini +test2301 Q0 18406711 14 10.516376 Anserini +test2301 Q0 16837164 15 10.325908 Anserini +test2301 Q0 18406692 16 10.278263 Anserini +test2301 Q0 16837165 17 10.277208 Anserini +test2301 Q0 18406706 18 10.203026 Anserini +test2301 Q0 12738380 19 10.142572 Anserini +test2301 Q0 12738381 20 10.142572 Anserini +test2301 Q0 6889248 21 10.134257 Anserini +test2301 Q0 18406705 22 10.077322 Anserini +test2301 Q0 190851 23 10.024433 Anserini +test2301 Q0 20703350 24 10.024433 Anserini +test2301 Q0 20703357 25 10.024433 Anserini +test2301 Q0 190854 26 9.966456 Anserini +test2301 Q0 18406722 27 9.963241 Anserini +test2301 Q0 3884100 28 9.958604 Anserini +test2301 Q0 6210096 29 9.845328 Anserini +test2301 Q0 13694413 30 9.822615 Anserini +test2302 Q0 1793239 1 19.029839 Anserini +test2302 Q0 3378821 2 17.574291 Anserini +test2302 Q0 18502010 3 17.294546 Anserini +test2302 Q0 1793282 4 16.592068 Anserini +test2302 Q0 136889 5 16.576256 Anserini +test2302 Q0 1793234 6 16.450294 Anserini +test2302 Q0 1793280 7 16.316322 Anserini +test2302 Q0 1793235 8 16.042624 Anserini +test2302 Q0 1793242 9 15.732249 Anserini +test2302 Q0 8665490 10 15.407836 Anserini +test2302 Q0 1793247 11 15.345299 Anserini +test2302 Q0 2025875 12 15.324512 Anserini +test2302 Q0 5587426 13 15.132006 Anserini +test2302 Q0 1793244 14 14.998155 Anserini +test2302 Q0 1369040 15 14.885892 Anserini +test2302 Q0 3378822 16 14.490313 Anserini +test2302 Q0 5725233 17 14.359769 Anserini +test2302 Q0 18502009 18 14.334246 Anserini +test2302 Q0 1793248 19 14.290039 Anserini +test2302 Q0 20262720 20 14.176664 Anserini +test2302 Q0 1793278 21 14.135250 Anserini +test2302 Q0 1793237 22 13.951387 Anserini +test2302 Q0 1793266 23 13.946611 Anserini +test2302 Q0 10461782 24 13.823769 Anserini +test2302 Q0 12970527 25 13.712794 Anserini +test2302 Q0 1793258 26 13.686682 Anserini +test2302 Q0 1793250 27 13.646754 Anserini +test2302 Q0 1793260 28 13.638231 Anserini +test2302 Q0 1793245 29 13.602820 Anserini +test2302 Q0 1793241 30 13.550611 Anserini +test2303 Q0 18842064 1 19.356972 Anserini +test2303 Q0 20161241 2 18.532398 Anserini +test2303 Q0 18742971 3 18.270241 Anserini +test2303 Q0 18742990 4 18.167122 Anserini +test2303 Q0 20161215 5 18.110548 Anserini +test2303 Q0 14773696 6 17.289827 Anserini +test2303 Q0 18022123 7 17.275486 Anserini +test2303 Q0 15029258 8 17.151966 Anserini +test2303 Q0 18842053 9 17.151966 Anserini +test2303 Q0 4811591 10 17.030991 Anserini +test2303 Q0 19523340 11 17.002022 Anserini +test2303 Q0 12510233 12 16.979483 Anserini +test2303 Q0 5551033 13 16.860844 Anserini +test2303 Q0 18022152 14 16.742783 Anserini +test2303 Q0 8235758 15 16.736511 Anserini +test2303 Q0 18747416 16 16.723476 Anserini +test2303 Q0 7310960 17 16.714334 Anserini +test2303 Q0 19087235 18 16.666864 Anserini +test2303 Q0 18842060 19 16.655693 Anserini +test2303 Q0 12510221 20 16.491024 Anserini +test2303 Q0 18022146 21 16.430811 Anserini +test2303 Q0 7310961 22 16.391102 Anserini +test2303 Q0 4811580 23 16.296936 Anserini +test2303 Q0 15021311 24 16.251158 Anserini +test2303 Q0 18022145 25 16.209198 Anserini +test2303 Q0 18022151 26 16.200586 Anserini +test2303 Q0 18761842 27 16.192410 Anserini +test2303 Q0 4811587 28 16.178524 Anserini +test2303 Q0 18761849 29 16.093264 Anserini +test2303 Q0 4811581 30 16.076979 Anserini +test2304 Q0 3790755 1 10.455830 Anserini +test2304 Q0 4381341 2 10.382934 Anserini +test2304 Q0 13711775 3 10.358658 Anserini +test2304 Q0 13896271 4 9.638002 Anserini +test2304 Q0 736985 5 9.591309 Anserini +test2304 Q0 6229472 6 9.585851 Anserini +test2304 Q0 13259231 7 9.551635 Anserini +test2304 Q0 5574547 8 9.383361 Anserini +test2304 Q0 18708629 9 9.344925 Anserini +test2304 Q0 20492905 10 9.344925 Anserini +test2304 Q0 8817676 11 9.289253 Anserini +test2304 Q0 20005925 12 9.282943 Anserini +test2304 Q0 20005921 13 9.217441 Anserini +test2304 Q0 5134759 14 9.193495 Anserini +test2304 Q0 11758450 15 9.070963 Anserini +test2304 Q0 8338228 16 9.011784 Anserini +test2304 Q0 3557605 17 8.957253 Anserini +test2304 Q0 12166829 18 8.936831 Anserini +test2304 Q0 12166830 19 8.936831 Anserini +test2304 Q0 14293526 20 8.930626 Anserini +test2304 Q0 3113612 21 8.927812 Anserini +test2304 Q0 10146065 22 8.819546 Anserini +test2304 Q0 15058617 23 8.765575 Anserini +test2304 Q0 12245368 24 8.765575 Anserini +test2304 Q0 18273228 25 8.765575 Anserini +test2304 Q0 6453238 26 8.765575 Anserini +test2304 Q0 16847649 27 8.731916 Anserini +test2304 Q0 11758448 28 8.710080 Anserini +test2304 Q0 11506434 29 8.685450 Anserini +test2304 Q0 15920010 30 8.673300 Anserini +test2305 Q0 1306311 1 14.132358 Anserini +test2305 Q0 1420830 2 13.738750 Anserini +test2305 Q0 12150714 3 12.982648 Anserini +test2305 Q0 5099414 4 12.919056 Anserini +test2305 Q0 5099412 5 12.763847 Anserini +test2305 Q0 8052049 6 12.274120 Anserini +test2305 Q0 1420930 7 12.122708 Anserini +test2305 Q0 8052050 8 11.791744 Anserini +test2305 Q0 11126395 9 11.721674 Anserini +test2305 Q0 19794627 10 11.635355 Anserini +test2305 Q0 18251240 11 11.546879 Anserini +test2305 Q0 871922 12 11.543068 Anserini +test2305 Q0 5189219 13 11.509829 Anserini +test2305 Q0 5617244 14 11.451876 Anserini +test2305 Q0 9943135 15 11.436506 Anserini +test2305 Q0 9942519 16 11.426590 Anserini +test2305 Q0 5617250 17 11.264890 Anserini +test2305 Q0 1226162 18 11.075939 Anserini +test2305 Q0 12039633 19 11.032095 Anserini +test2305 Q0 8352132 20 10.928766 Anserini +test2305 Q0 14383909 21 10.905124 Anserini +test2305 Q0 5090626 22 10.899607 Anserini +test2305 Q0 9943133 23 10.899607 Anserini +test2305 Q0 9943134 24 10.810985 Anserini +test2305 Q0 1768707 25 10.777745 Anserini +test2305 Q0 1420822 26 10.675259 Anserini +test2305 Q0 1226158 27 10.601551 Anserini +test2305 Q0 5674968 28 10.527424 Anserini +test2305 Q0 8373626 29 10.449609 Anserini +test2305 Q0 12681121 30 10.439586 Anserini +test2306 Q0 15229843 1 18.553701 Anserini +test2306 Q0 15229898 2 18.398134 Anserini +test2306 Q0 465885 3 15.623455 Anserini +test2306 Q0 8165393 4 15.553889 Anserini +test2306 Q0 1435417 5 13.515814 Anserini +test2306 Q0 111261 6 13.290954 Anserini +test2306 Q0 16956839 7 13.257537 Anserini +test2306 Q0 231664 8 13.074605 Anserini +test2306 Q0 103796 9 12.495162 Anserini +test2306 Q0 11937636 10 12.442753 Anserini +test2306 Q0 5193767 11 12.313559 Anserini +test2306 Q0 10323831 12 12.073157 Anserini +test2306 Q0 11568294 13 12.064817 Anserini +test2306 Q0 16724755 14 12.026320 Anserini +test2306 Q0 16724747 15 12.026320 Anserini +test2306 Q0 5071203 16 12.003557 Anserini +test2306 Q0 255376 17 11.938383 Anserini +test2306 Q0 2828626 18 11.915127 Anserini +test2306 Q0 175332 19 11.869642 Anserini +test2306 Q0 7929428 20 11.850258 Anserini +test2306 Q0 15229891 21 11.821114 Anserini +test2306 Q0 462042 22 11.818768 Anserini +test2306 Q0 3992838 23 11.731434 Anserini +test2306 Q0 8712023 24 11.691850 Anserini +test2306 Q0 8712008 25 11.691850 Anserini +test2306 Q0 5357251 26 11.584175 Anserini +test2306 Q0 1854747 27 11.533438 Anserini +test2306 Q0 1854749 28 11.423348 Anserini +test2306 Q0 1577122 29 11.389826 Anserini +test2306 Q0 2730516 30 11.379332 Anserini +test2307 Q0 12101879 1 13.364625 Anserini +test2307 Q0 4153950 2 12.802342 Anserini +test2307 Q0 8493524 3 12.486320 Anserini +test2307 Q0 9247475 4 12.438234 Anserini +test2307 Q0 8493525 5 12.438234 Anserini +test2307 Q0 1991343 6 12.386916 Anserini +test2307 Q0 17916256 7 12.317102 Anserini +test2307 Q0 780008 8 12.192778 Anserini +test2307 Q0 17069782 9 12.086575 Anserini +test2307 Q0 18121855 10 11.704694 Anserini +test2307 Q0 7440312 11 11.585896 Anserini +test2307 Q0 14113255 12 11.211086 Anserini +test2307 Q0 2319922 13 11.048683 Anserini +test2307 Q0 2383608 14 11.048683 Anserini +test2307 Q0 14113248 15 11.041562 Anserini +test2307 Q0 473060 16 11.039528 Anserini +test2307 Q0 18794378 17 10.862207 Anserini +test2307 Q0 9247470 18 10.821253 Anserini +test2307 Q0 3080272 19 10.778316 Anserini +test2307 Q0 6905528 20 10.730974 Anserini +test2307 Q0 1623669 21 10.717119 Anserini +test2307 Q0 11305121 22 10.653728 Anserini +test2307 Q0 6943051 23 10.468420 Anserini +test2307 Q0 18118951 24 10.452435 Anserini +test2307 Q0 7577880 25 10.365219 Anserini +test2307 Q0 17203826 26 10.350190 Anserini +test2307 Q0 7825063 27 10.337092 Anserini +test2307 Q0 20773395 28 10.302998 Anserini +test2307 Q0 9212503 29 10.230152 Anserini +test2307 Q0 15545577 30 10.216364 Anserini +test2308 Q0 6318877 1 26.361740 Anserini +test2308 Q0 6651469 2 24.850546 Anserini +test2308 Q0 20220654 3 24.325407 Anserini +test2308 Q0 13468187 4 24.290262 Anserini +test2308 Q0 20220659 5 23.576256 Anserini +test2308 Q0 6651470 6 23.515343 Anserini +test2308 Q0 13314103 7 23.240734 Anserini +test2308 Q0 7741393 8 20.412329 Anserini +test2308 Q0 8425722 9 20.178272 Anserini +test2308 Q0 8425712 10 20.013803 Anserini +test2308 Q0 19927590 11 19.897511 Anserini +test2308 Q0 6318880 12 19.808596 Anserini +test2308 Q0 13314104 13 19.707090 Anserini +test2308 Q0 19927595 14 19.691515 Anserini +test2308 Q0 17141878 15 19.556889 Anserini +test2308 Q0 6318882 16 19.498888 Anserini +test2308 Q0 17761539 17 19.203384 Anserini +test2308 Q0 9946102 18 19.168388 Anserini +test2308 Q0 2166902 19 19.012066 Anserini +test2308 Q0 790772 20 17.687901 Anserini +test2308 Q0 790759 21 17.502491 Anserini +test2308 Q0 14003994 22 17.367844 Anserini +test2308 Q0 757467 23 17.171701 Anserini +test2308 Q0 8593992 24 16.757095 Anserini +test2308 Q0 9188922 25 16.575880 Anserini +test2308 Q0 13314105 26 16.514700 Anserini +test2308 Q0 13921425 27 16.251110 Anserini +test2308 Q0 3140983 28 16.074303 Anserini +test2308 Q0 4816239 29 16.031279 Anserini +test2308 Q0 2683928 30 15.923267 Anserini +test2309 Q0 4111642 1 16.230839 Anserini +test2309 Q0 5490732 2 16.008196 Anserini +test2309 Q0 4111650 3 14.491510 Anserini +test2309 Q0 5490734 4 13.895655 Anserini +test2309 Q0 5490749 5 13.809061 Anserini +test2309 Q0 4111651 6 13.776027 Anserini +test2309 Q0 6191551 7 13.155611 Anserini +test2309 Q0 5490745 8 12.569782 Anserini +test2309 Q0 5490735 9 12.496614 Anserini +test2309 Q0 5490747 10 12.357649 Anserini +test2309 Q0 5490736 11 12.250504 Anserini +test2309 Q0 9346217 12 11.715234 Anserini +test2309 Q0 6201812 13 11.436282 Anserini +test2309 Q0 12170165 14 11.210555 Anserini +test2309 Q0 19921493 15 11.138613 Anserini +test2309 Q0 1935241 16 11.132355 Anserini +test2309 Q0 4111647 17 10.879196 Anserini +test2309 Q0 8345159 18 10.835069 Anserini +test2309 Q0 6191549 19 10.738634 Anserini +test2309 Q0 9346216 20 10.719792 Anserini +test2309 Q0 13808394 21 10.719792 Anserini +test2309 Q0 5490740 22 10.606945 Anserini +test2309 Q0 5490748 23 10.606945 Anserini +test2309 Q0 5490743 24 10.496449 Anserini +test2309 Q0 5490744 25 10.496449 Anserini +test2309 Q0 5123739 26 10.466385 Anserini +test2309 Q0 8894868 27 10.414625 Anserini +test2309 Q0 5490738 28 10.388230 Anserini +test2309 Q0 5490746 29 10.388230 Anserini +test2309 Q0 10142505 30 10.353120 Anserini +test231 Q0 18744271 1 15.557352 Anserini +test231 Q0 17999303 2 15.343866 Anserini +test231 Q0 17151901 3 15.056462 Anserini +test231 Q0 20349672 4 14.409582 Anserini +test231 Q0 20349674 5 14.409582 Anserini +test231 Q0 17151906 6 14.205739 Anserini +test231 Q0 17151898 7 14.027802 Anserini +test231 Q0 17151911 8 13.541052 Anserini +test231 Q0 19414764 9 13.460923 Anserini +test231 Q0 19414779 10 13.460923 Anserini +test231 Q0 17151896 11 13.460923 Anserini +test231 Q0 18744272 12 13.412107 Anserini +test231 Q0 16934222 13 13.343306 Anserini +test231 Q0 16843073 14 13.337698 Anserini +test231 Q0 17151897 15 13.254129 Anserini +test231 Q0 17999309 16 13.171601 Anserini +test231 Q0 16843076 17 13.160554 Anserini +test231 Q0 17999302 18 13.047091 Anserini +test231 Q0 16934223 19 13.004240 Anserini +test231 Q0 17137599 20 12.973856 Anserini +test231 Q0 17999308 21 12.950575 Anserini +test231 Q0 18744270 22 12.905496 Anserini +test231 Q0 17999300 23 12.849866 Anserini +test231 Q0 19414770 24 12.825193 Anserini +test231 Q0 19078563 25 12.766171 Anserini +test231 Q0 17151904 26 12.753806 Anserini +test231 Q0 16934220 27 12.750901 Anserini +test231 Q0 18744273 28 12.750901 Anserini +test231 Q0 19414766 29 12.729149 Anserini +test231 Q0 19080601 30 12.712989 Anserini +test2310 Q0 2777351 1 12.165343 Anserini +test2310 Q0 261263 2 11.098015 Anserini +test2310 Q0 17768873 3 10.816473 Anserini +test2310 Q0 10662698 4 10.804577 Anserini +test2310 Q0 20686932 5 10.730955 Anserini +test2310 Q0 12754025 6 10.564355 Anserini +test2310 Q0 16191419 7 10.402853 Anserini +test2310 Q0 20686935 8 10.391359 Anserini +test2310 Q0 20686926 9 10.391359 Anserini +test2310 Q0 4305879 10 10.227496 Anserini +test2310 Q0 12163627 11 10.227302 Anserini +test2310 Q0 17874446 12 10.192897 Anserini +test2310 Q0 4796342 13 10.085596 Anserini +test2310 Q0 6556602 14 10.001289 Anserini +test2310 Q0 4420550 15 9.989310 Anserini +test2310 Q0 20290112 16 9.914524 Anserini +test2310 Q0 15162635 17 9.863045 Anserini +test2310 Q0 13492862 18 9.863045 Anserini +test2310 Q0 9763625 19 9.776495 Anserini +test2310 Q0 11574158 20 9.716181 Anserini +test2310 Q0 4375936 21 9.625750 Anserini +test2310 Q0 20686931 22 9.618659 Anserini +test2310 Q0 5176909 23 9.606070 Anserini +test2310 Q0 1429658 24 9.591702 Anserini +test2310 Q0 8858230 25 9.526085 Anserini +test2310 Q0 15829193 26 9.516936 Anserini +test2310 Q0 20686930 27 9.515634 Anserini +test2310 Q0 12057102 28 9.462323 Anserini +test2310 Q0 8813184 29 9.428234 Anserini +test2310 Q0 2203355 30 9.415700 Anserini +test2311 Q0 4389776 1 10.937922 Anserini +test2311 Q0 20200734 2 10.818304 Anserini +test2311 Q0 4508445 3 10.687338 Anserini +test2311 Q0 19203128 4 10.508664 Anserini +test2311 Q0 14419762 5 10.471017 Anserini +test2311 Q0 3920250 6 10.429121 Anserini +test2311 Q0 4626476 7 10.367939 Anserini +test2311 Q0 12167081 8 10.351459 Anserini +test2311 Q0 6405663 9 10.343407 Anserini +test2311 Q0 15747229 10 10.330271 Anserini +test2311 Q0 11969730 11 10.316162 Anserini +test2311 Q0 20200736 12 10.228086 Anserini +test2311 Q0 18475607 13 10.124519 Anserini +test2311 Q0 9221499 14 10.119086 Anserini +test2311 Q0 7074119 15 10.077005 Anserini +test2311 Q0 5208983 16 10.021431 Anserini +test2311 Q0 4508429 17 9.959414 Anserini +test2311 Q0 20200738 18 9.942616 Anserini +test2311 Q0 173692 19 9.899959 Anserini +test2311 Q0 7766415 20 9.871027 Anserini +test2311 Q0 15680960 21 9.861691 Anserini +test2311 Q0 4624178 22 9.856807 Anserini +test2311 Q0 20919024 23 9.819639 Anserini +test2311 Q0 18542222 24 9.818913 Anserini +test2311 Q0 20919023 25 9.745623 Anserini +test2311 Q0 12698528 26 9.691513 Anserini +test2311 Q0 8976029 27 9.689502 Anserini +test2311 Q0 4608897 28 9.677705 Anserini +test2311 Q0 12785604 29 9.637917 Anserini +test2311 Q0 18170163 30 9.636297 Anserini +test2312 Q0 12634497 1 13.831015 Anserini +test2312 Q0 20786066 2 13.691689 Anserini +test2312 Q0 8529512 3 13.447648 Anserini +test2312 Q0 11747224 4 13.302669 Anserini +test2312 Q0 20054455 5 13.232985 Anserini +test2312 Q0 6486346 6 13.174013 Anserini +test2312 Q0 3740676 7 13.106842 Anserini +test2312 Q0 7285293 8 13.097152 Anserini +test2312 Q0 20786068 9 12.967653 Anserini +test2312 Q0 3685492 10 12.809178 Anserini +test2312 Q0 13526658 11 12.794864 Anserini +test2312 Q0 10354560 12 12.755224 Anserini +test2312 Q0 14747312 13 12.731938 Anserini +test2312 Q0 14747313 14 12.731938 Anserini +test2312 Q0 3686440 15 12.709185 Anserini +test2312 Q0 11800695 16 12.701124 Anserini +test2312 Q0 17413295 17 12.674288 Anserini +test2312 Q0 14644113 18 12.585640 Anserini +test2312 Q0 17408447 19 12.526525 Anserini +test2312 Q0 18836919 20 12.500080 Anserini +test2312 Q0 11736463 21 12.487584 Anserini +test2312 Q0 17362304 22 12.444586 Anserini +test2312 Q0 5093230 23 12.432390 Anserini +test2312 Q0 20803748 24 12.427296 Anserini +test2312 Q0 4409986 25 12.418758 Anserini +test2312 Q0 12059484 26 12.399200 Anserini +test2312 Q0 7106912 27 12.374392 Anserini +test2312 Q0 7106907 28 12.374392 Anserini +test2312 Q0 10354562 29 12.351798 Anserini +test2312 Q0 17362301 30 12.348248 Anserini +test2313 Q0 6822701 1 11.710273 Anserini +test2313 Q0 15148370 2 11.218448 Anserini +test2313 Q0 13214143 3 11.216507 Anserini +test2313 Q0 13070176 4 11.205556 Anserini +test2313 Q0 13834100 5 11.152971 Anserini +test2313 Q0 5896014 6 10.976023 Anserini +test2313 Q0 9179740 7 10.903845 Anserini +test2313 Q0 19302314 8 10.713493 Anserini +test2313 Q0 19512592 9 10.558535 Anserini +test2313 Q0 13834098 10 10.491780 Anserini +test2313 Q0 9996368 11 10.468780 Anserini +test2313 Q0 3454752 12 10.385331 Anserini +test2313 Q0 6740366 13 10.341792 Anserini +test2313 Q0 16189389 14 10.322536 Anserini +test2313 Q0 14615529 15 10.145845 Anserini +test2313 Q0 15940183 16 10.144934 Anserini +test2313 Q0 19390312 17 10.113241 Anserini +test2313 Q0 9050063 18 10.071671 Anserini +test2313 Q0 5798137 19 10.016545 Anserini +test2313 Q0 16460404 20 10.013742 Anserini +test2313 Q0 18307256 21 10.001270 Anserini +test2313 Q0 16374509 22 9.992395 Anserini +test2313 Q0 11118369 23 9.958500 Anserini +test2313 Q0 10450717 24 9.948123 Anserini +test2313 Q0 20026930 25 9.948123 Anserini +test2313 Q0 5896009 26 9.946527 Anserini +test2313 Q0 13587554 27 9.921864 Anserini +test2313 Q0 6066250 28 9.916359 Anserini +test2313 Q0 17233385 29 9.911282 Anserini +test2313 Q0 6446262 30 9.835100 Anserini +test2314 Q0 7493158 1 15.139400 Anserini +test2314 Q0 12394977 2 14.096840 Anserini +test2314 Q0 1356338 3 13.176190 Anserini +test2314 Q0 7841713 4 12.725151 Anserini +test2314 Q0 18856382 5 12.666734 Anserini +test2314 Q0 17954072 6 12.246360 Anserini +test2314 Q0 17764479 7 12.085483 Anserini +test2314 Q0 17798081 8 12.030269 Anserini +test2314 Q0 12352888 9 12.011790 Anserini +test2314 Q0 652647 10 11.996787 Anserini +test2314 Q0 1849843 11 11.781363 Anserini +test2314 Q0 7468630 12 11.698735 Anserini +test2314 Q0 5156033 13 11.641635 Anserini +test2314 Q0 6289177 14 11.265135 Anserini +test2314 Q0 15410985 15 11.263677 Anserini +test2314 Q0 17764480 16 11.208941 Anserini +test2314 Q0 9898448 17 11.188816 Anserini +test2314 Q0 16286661 18 11.181529 Anserini +test2314 Q0 1276434 19 11.098206 Anserini +test2314 Q0 6944975 20 10.944891 Anserini +test2314 Q0 10025607 21 10.944891 Anserini +test2314 Q0 6240127 22 10.867180 Anserini +test2314 Q0 17764481 23 10.867180 Anserini +test2314 Q0 17764482 24 10.867180 Anserini +test2314 Q0 17798079 25 10.862049 Anserini +test2314 Q0 12754357 26 10.829675 Anserini +test2314 Q0 17764478 27 10.811159 Anserini +test2314 Q0 20337597 28 10.800879 Anserini +test2314 Q0 11642298 29 10.773859 Anserini +test2314 Q0 12394987 30 10.689044 Anserini +test2315 Q0 2708419 1 21.467785 Anserini +test2315 Q0 13585708 2 19.710285 Anserini +test2315 Q0 13585715 3 19.566380 Anserini +test2315 Q0 13585707 4 19.224489 Anserini +test2315 Q0 7309623 5 18.774748 Anserini +test2315 Q0 2650887 6 18.632599 Anserini +test2315 Q0 13585720 7 18.354197 Anserini +test2315 Q0 13585714 8 17.831158 Anserini +test2315 Q0 7309646 9 17.774536 Anserini +test2315 Q0 13585706 10 17.661917 Anserini +test2315 Q0 13585730 11 17.661917 Anserini +test2315 Q0 13585716 12 17.625303 Anserini +test2315 Q0 13585722 13 17.438629 Anserini +test2315 Q0 589573 14 17.335054 Anserini +test2315 Q0 15773600 15 17.324318 Anserini +test2315 Q0 15773601 16 17.270100 Anserini +test2315 Q0 7309634 17 17.203341 Anserini +test2315 Q0 2708445 18 17.174278 Anserini +test2315 Q0 15773602 19 17.143986 Anserini +test2315 Q0 5115306 20 17.036219 Anserini +test2315 Q0 1770235 21 16.969288 Anserini +test2315 Q0 7309633 22 16.805550 Anserini +test2315 Q0 6414369 23 16.789114 Anserini +test2315 Q0 10043543 24 16.714636 Anserini +test2315 Q0 2690491 25 16.660055 Anserini +test2315 Q0 690294 26 16.656797 Anserini +test2315 Q0 2486845 27 16.539244 Anserini +test2315 Q0 8316574 28 16.412817 Anserini +test2315 Q0 7309624 29 16.388004 Anserini +test2315 Q0 5109051 30 16.348936 Anserini +test2316 Q0 18781433 1 15.720749 Anserini +test2316 Q0 546995 2 15.129024 Anserini +test2316 Q0 2846728 3 15.105274 Anserini +test2316 Q0 3718756 4 15.051031 Anserini +test2316 Q0 2846740 5 14.957564 Anserini +test2316 Q0 14920739 6 14.443748 Anserini +test2316 Q0 6860674 7 14.440625 Anserini +test2316 Q0 15138146 8 14.424755 Anserini +test2316 Q0 6139081 9 14.403281 Anserini +test2316 Q0 2911070 10 14.320981 Anserini +test2316 Q0 11301224 11 14.176527 Anserini +test2316 Q0 14920736 12 14.099344 Anserini +test2316 Q0 13539218 13 14.054519 Anserini +test2316 Q0 20088464 14 14.049156 Anserini +test2316 Q0 20088473 15 13.922228 Anserini +test2316 Q0 16990226 16 13.865688 Anserini +test2316 Q0 13849472 17 13.824753 Anserini +test2316 Q0 13465676 18 13.761248 Anserini +test2316 Q0 16972728 19 13.699857 Anserini +test2316 Q0 4958476 20 13.675400 Anserini +test2316 Q0 7496359 21 13.656988 Anserini +test2316 Q0 16491449 22 13.622841 Anserini +test2316 Q0 13749623 23 13.549308 Anserini +test2316 Q0 13849471 24 13.527332 Anserini +test2316 Q0 20228100 25 13.469233 Anserini +test2316 Q0 17833480 26 13.393270 Anserini +test2316 Q0 12487366 27 13.361907 Anserini +test2316 Q0 546951 28 13.361907 Anserini +test2316 Q0 16858543 29 13.332836 Anserini +test2316 Q0 9640777 30 13.273254 Anserini +test2317 Q0 16536903 1 10.960271 Anserini +test2317 Q0 16380475 2 9.983989 Anserini +test2317 Q0 5575110 3 9.900989 Anserini +test2317 Q0 13251505 4 9.718553 Anserini +test2317 Q0 5953730 5 9.556958 Anserini +test2317 Q0 17580019 6 9.470971 Anserini +test2317 Q0 9566319 7 9.430443 Anserini +test2317 Q0 6251988 8 9.375106 Anserini +test2317 Q0 846613 9 9.375106 Anserini +test2317 Q0 14115215 10 9.322864 Anserini +test2317 Q0 19639043 11 9.319510 Anserini +test2317 Q0 5307562 12 9.242002 Anserini +test2317 Q0 15215402 13 9.189167 Anserini +test2317 Q0 15215420 14 9.189167 Anserini +test2317 Q0 6245978 15 9.175495 Anserini +test2317 Q0 6246012 16 9.123157 Anserini +test2317 Q0 18561073 17 9.026674 Anserini +test2317 Q0 10583094 18 9.019353 Anserini +test2317 Q0 3663645 19 9.019353 Anserini +test2317 Q0 11948560 20 9.014545 Anserini +test2317 Q0 5734004 21 8.981681 Anserini +test2317 Q0 18956447 22 8.969100 Anserini +test2317 Q0 19087632 23 8.911516 Anserini +test2317 Q0 11629103 24 8.877363 Anserini +test2317 Q0 214043 25 8.867876 Anserini +test2317 Q0 14025965 26 8.833972 Anserini +test2317 Q0 3426212 27 8.833972 Anserini +test2317 Q0 18622478 28 8.829458 Anserini +test2317 Q0 15987856 29 8.829458 Anserini +test2317 Q0 13537907 30 8.802270 Anserini +test2318 Q0 13508086 1 24.226469 Anserini +test2318 Q0 13508073 2 24.137108 Anserini +test2318 Q0 13508082 3 21.786957 Anserini +test2318 Q0 13508080 4 21.072340 Anserini +test2318 Q0 13508077 5 20.929792 Anserini +test2318 Q0 6386408 6 20.517941 Anserini +test2318 Q0 13508081 7 20.399654 Anserini +test2318 Q0 6843761 8 19.813480 Anserini +test2318 Q0 2420092 9 19.709560 Anserini +test2318 Q0 6386398 10 18.927704 Anserini +test2318 Q0 13508083 11 18.927704 Anserini +test2318 Q0 1400555 12 18.411041 Anserini +test2318 Q0 13508085 13 18.411041 Anserini +test2318 Q0 13508079 14 18.411041 Anserini +test2318 Q0 13508075 15 18.115688 Anserini +test2318 Q0 5761182 16 17.971689 Anserini +test2318 Q0 3571809 17 17.036928 Anserini +test2318 Q0 16955466 18 16.775908 Anserini +test2318 Q0 12338929 19 16.137806 Anserini +test2318 Q0 2420071 20 16.128805 Anserini +test2318 Q0 13508078 21 15.516666 Anserini +test2318 Q0 6843762 22 15.516666 Anserini +test2318 Q0 7999805 23 15.367758 Anserini +test2318 Q0 12637458 24 15.353322 Anserini +test2318 Q0 5659069 25 15.353322 Anserini +test2318 Q0 12557322 26 15.353322 Anserini +test2318 Q0 15130208 27 15.353322 Anserini +test2318 Q0 4543813 28 15.353322 Anserini +test2318 Q0 13508074 29 15.353322 Anserini +test2318 Q0 13508084 30 15.353322 Anserini +test2319 Q0 3666853 1 19.753777 Anserini +test2319 Q0 15292087 2 19.069189 Anserini +test2319 Q0 15286807 3 18.596832 Anserini +test2319 Q0 15286808 4 18.509346 Anserini +test2319 Q0 15282538 5 18.451180 Anserini +test2319 Q0 18251211 6 18.337873 Anserini +test2319 Q0 15282529 7 18.156458 Anserini +test2319 Q0 18251209 8 18.156458 Anserini +test2319 Q0 18251217 9 18.156458 Anserini +test2319 Q0 15767243 10 18.156458 Anserini +test2319 Q0 15767229 11 18.107655 Anserini +test2319 Q0 18251207 12 18.076128 Anserini +test2319 Q0 15282528 13 18.052818 Anserini +test2319 Q0 15282844 14 17.881533 Anserini +test2319 Q0 3666855 15 17.796459 Anserini +test2319 Q0 1275039 16 17.630831 Anserini +test2319 Q0 18251213 17 17.590574 Anserini +test2319 Q0 15322571 18 17.551054 Anserini +test2319 Q0 15433256 19 17.547220 Anserini +test2319 Q0 15292088 20 17.471575 Anserini +test2319 Q0 15286803 21 17.378849 Anserini +test2319 Q0 3666857 22 17.255585 Anserini +test2319 Q0 6520164 23 17.252228 Anserini +test2319 Q0 15433260 24 17.181633 Anserini +test2319 Q0 16842142 25 17.052155 Anserini +test2319 Q0 16390038 26 17.010508 Anserini +test2319 Q0 19494447 27 16.888132 Anserini +test2319 Q0 15282841 28 16.841259 Anserini +test2319 Q0 17900336 29 16.826414 Anserini +test2319 Q0 15433259 30 16.813471 Anserini +test232 Q0 12758518 1 14.854799 Anserini +test232 Q0 12758532 2 14.432359 Anserini +test232 Q0 3401001 3 14.090628 Anserini +test232 Q0 13773733 4 14.084679 Anserini +test232 Q0 12758496 5 13.911713 Anserini +test232 Q0 14822547 6 13.868454 Anserini +test232 Q0 12758515 7 13.858184 Anserini +test232 Q0 8599092 8 13.797708 Anserini +test232 Q0 16475305 9 13.411404 Anserini +test232 Q0 12758497 10 13.388012 Anserini +test232 Q0 3939130 11 13.144838 Anserini +test232 Q0 4219010 12 13.120408 Anserini +test232 Q0 17084794 13 13.011913 Anserini +test232 Q0 7700510 14 13.003721 Anserini +test232 Q0 3400998 15 12.919961 Anserini +test232 Q0 4191705 16 12.836808 Anserini +test232 Q0 7700499 17 12.822290 Anserini +test232 Q0 10037935 18 12.809566 Anserini +test232 Q0 20428053 19 12.688364 Anserini +test232 Q0 12758517 20 12.648799 Anserini +test232 Q0 7570192 21 12.500344 Anserini +test232 Q0 20132743 22 12.486706 Anserini +test232 Q0 12758513 23 12.433763 Anserini +test232 Q0 16475306 24 12.412793 Anserini +test232 Q0 6880147 25 12.371370 Anserini +test232 Q0 11208582 26 12.319500 Anserini +test232 Q0 16471051 27 12.240431 Anserini +test232 Q0 13773739 28 12.204786 Anserini +test232 Q0 18787211 29 12.194027 Anserini +test232 Q0 3037957 30 12.163782 Anserini +test2320 Q0 2416827 1 15.314981 Anserini +test2320 Q0 10186883 2 14.697921 Anserini +test2320 Q0 2363222 3 14.495334 Anserini +test2320 Q0 5398243 4 14.345602 Anserini +test2320 Q0 6853984 5 14.246476 Anserini +test2320 Q0 12962915 6 14.150917 Anserini +test2320 Q0 5995408 7 14.000121 Anserini +test2320 Q0 7096941 8 13.974854 Anserini +test2320 Q0 13683537 9 13.938708 Anserini +test2320 Q0 4584482 10 13.897145 Anserini +test2320 Q0 3704796 11 13.837158 Anserini +test2320 Q0 8446756 12 13.756493 Anserini +test2320 Q0 11384474 13 13.625872 Anserini +test2320 Q0 4494785 14 13.543011 Anserini +test2320 Q0 6163451 15 13.518559 Anserini +test2320 Q0 4314251 16 13.339954 Anserini +test2320 Q0 4254384 17 13.298388 Anserini +test2320 Q0 5012299 18 13.256264 Anserini +test2320 Q0 7163729 19 13.253321 Anserini +test2320 Q0 4254395 20 13.226134 Anserini +test2320 Q0 7756781 21 13.156653 Anserini +test2320 Q0 403898 22 13.084926 Anserini +test2320 Q0 18527337 23 13.083170 Anserini +test2320 Q0 7937241 24 13.070766 Anserini +test2320 Q0 6631487 25 13.026805 Anserini +test2320 Q0 9303296 26 13.013735 Anserini +test2320 Q0 6090137 27 12.982108 Anserini +test2320 Q0 16931577 28 12.935260 Anserini +test2320 Q0 5797828 29 12.895726 Anserini +test2320 Q0 4078728 30 12.894944 Anserini +test2321 Q0 8446338 1 9.093567 Anserini +test2321 Q0 10381688 2 9.093567 Anserini +test2321 Q0 18435900 3 8.913692 Anserini +test2321 Q0 280042 4 8.793534 Anserini +test2321 Q0 619047 5 8.778315 Anserini +test2321 Q0 15900222 6 8.674946 Anserini +test2321 Q0 2476950 7 8.650611 Anserini +test2321 Q0 8604186 8 8.539663 Anserini +test2321 Q0 18363981 9 8.539663 Anserini +test2321 Q0 15785304 10 8.539663 Anserini +test2321 Q0 3929768 11 8.539663 Anserini +test2321 Q0 6012433 12 8.528098 Anserini +test2321 Q0 10593540 13 8.521491 Anserini +test2321 Q0 16934770 14 8.414621 Anserini +test2321 Q0 8992537 15 8.365252 Anserini +test2321 Q0 677346 16 8.354706 Anserini +test2321 Q0 6379540 17 8.323936 Anserini +test2321 Q0 14647461 18 8.317726 Anserini +test2321 Q0 16354957 19 8.301937 Anserini +test2321 Q0 677343 20 8.286808 Anserini +test2321 Q0 14354391 21 8.221578 Anserini +test2321 Q0 20718093 22 8.208385 Anserini +test2321 Q0 247307 23 8.145499 Anserini +test2321 Q0 14152884 24 8.145499 Anserini +test2321 Q0 18523672 25 8.142663 Anserini +test2321 Q0 19234316 26 8.126442 Anserini +test2321 Q0 4068332 27 8.119779 Anserini +test2321 Q0 12999586 28 8.076755 Anserini +test2321 Q0 9276281 29 8.069544 Anserini +test2321 Q0 9273971 30 8.069544 Anserini +test2322 Q0 17762126 1 11.426277 Anserini +test2322 Q0 11401224 2 11.010086 Anserini +test2322 Q0 9960136 3 10.689718 Anserini +test2322 Q0 7801945 4 10.514286 Anserini +test2322 Q0 7801946 5 10.514286 Anserini +test2322 Q0 19465920 6 10.414636 Anserini +test2322 Q0 9468498 7 10.219219 Anserini +test2322 Q0 10641406 8 10.155656 Anserini +test2322 Q0 2841020 9 10.050513 Anserini +test2322 Q0 18085145 10 9.695385 Anserini +test2322 Q0 6224863 11 9.675053 Anserini +test2322 Q0 6527853 12 9.606681 Anserini +test2322 Q0 6527857 13 9.577238 Anserini +test2322 Q0 15096554 14 9.522926 Anserini +test2322 Q0 6527863 15 9.479002 Anserini +test2322 Q0 3941521 16 9.468195 Anserini +test2322 Q0 19239278 17 9.454941 Anserini +test2322 Q0 6527847 18 9.430636 Anserini +test2322 Q0 3243418 19 9.306264 Anserini +test2322 Q0 17520955 20 9.290033 Anserini +test2322 Q0 11799936 21 9.271939 Anserini +test2322 Q0 6224915 22 9.193573 Anserini +test2322 Q0 8419333 23 9.181977 Anserini +test2322 Q0 7163743 24 9.148591 Anserini +test2322 Q0 13803193 25 9.113354 Anserini +test2322 Q0 2580759 26 9.074287 Anserini +test2322 Q0 15072504 27 9.072145 Anserini +test2322 Q0 14005280 28 9.058960 Anserini +test2322 Q0 6637921 29 9.047367 Anserini +test2322 Q0 5208638 30 9.047367 Anserini +test2323 Q0 255838 1 16.131071 Anserini +test2323 Q0 377647 2 15.540840 Anserini +test2323 Q0 576324 3 15.439809 Anserini +test2323 Q0 16810082 4 14.013056 Anserini +test2323 Q0 17338763 5 13.756096 Anserini +test2323 Q0 8981533 6 13.207620 Anserini +test2323 Q0 7730966 7 13.123084 Anserini +test2323 Q0 1368633 8 13.115827 Anserini +test2323 Q0 626995 9 12.920149 Anserini +test2323 Q0 437944 10 12.697838 Anserini +test2323 Q0 2327809 11 12.678560 Anserini +test2323 Q0 14275178 12 12.557876 Anserini +test2323 Q0 10131010 13 12.375556 Anserini +test2323 Q0 1978 14 12.318455 Anserini +test2323 Q0 2327812 15 12.296803 Anserini +test2323 Q0 18060633 16 12.288115 Anserini +test2323 Q0 20097412 17 12.251554 Anserini +test2323 Q0 2327810 18 12.216996 Anserini +test2323 Q0 5671161 19 12.208318 Anserini +test2323 Q0 1268642 20 12.169155 Anserini +test2323 Q0 2580290 21 12.166456 Anserini +test2323 Q0 2431196 22 12.138243 Anserini +test2323 Q0 11027177 23 12.107536 Anserini +test2323 Q0 12367907 24 12.007004 Anserini +test2323 Q0 14358559 25 11.993739 Anserini +test2323 Q0 14447926 26 11.987595 Anserini +test2323 Q0 16907392 27 11.978724 Anserini +test2323 Q0 7001 28 11.967753 Anserini +test2323 Q0 864207 29 11.941422 Anserini +test2323 Q0 4687923 30 11.934546 Anserini +test2324 Q0 2351451 1 11.007483 Anserini +test2324 Q0 13778255 2 10.947219 Anserini +test2324 Q0 9031828 3 10.833336 Anserini +test2324 Q0 2351464 4 10.733286 Anserini +test2324 Q0 19954554 5 10.708141 Anserini +test2324 Q0 17054447 6 10.539272 Anserini +test2324 Q0 2349122 7 10.273081 Anserini +test2324 Q0 157474 8 10.222823 Anserini +test2324 Q0 9031843 9 10.146986 Anserini +test2324 Q0 12753287 10 10.065287 Anserini +test2324 Q0 11087096 11 10.044505 Anserini +test2324 Q0 9031898 12 9.946000 Anserini +test2324 Q0 9980409 13 9.780010 Anserini +test2324 Q0 13226239 14 9.685433 Anserini +test2324 Q0 7258019 15 9.682708 Anserini +test2324 Q0 2943129 16 9.620438 Anserini +test2324 Q0 14746090 17 9.602784 Anserini +test2324 Q0 11350031 18 9.588042 Anserini +test2324 Q0 2468161 19 9.581034 Anserini +test2324 Q0 7622352 20 9.558693 Anserini +test2324 Q0 3490525 21 9.543574 Anserini +test2324 Q0 6600914 22 9.538411 Anserini +test2324 Q0 6522801 23 9.535042 Anserini +test2324 Q0 6163417 24 9.512846 Anserini +test2324 Q0 9031899 25 9.495955 Anserini +test2324 Q0 14906064 26 9.382462 Anserini +test2324 Q0 7498885 27 9.364097 Anserini +test2324 Q0 11990206 28 9.331732 Anserini +test2324 Q0 10136212 29 9.308313 Anserini +test2324 Q0 6593385 30 9.274673 Anserini +test2325 Q0 6349259 1 12.128912 Anserini +test2325 Q0 20283886 2 11.899202 Anserini +test2325 Q0 20283884 3 11.872705 Anserini +test2325 Q0 16534773 4 11.740931 Anserini +test2325 Q0 15165324 5 11.412851 Anserini +test2325 Q0 3211628 6 11.275925 Anserini +test2325 Q0 17082717 7 11.024407 Anserini +test2325 Q0 3211632 8 11.005076 Anserini +test2325 Q0 16534769 9 10.938672 Anserini +test2325 Q0 14487208 10 10.869205 Anserini +test2325 Q0 15107535 11 10.865043 Anserini +test2325 Q0 12753117 12 10.807072 Anserini +test2325 Q0 573243 13 10.734250 Anserini +test2325 Q0 3225881 14 10.645793 Anserini +test2325 Q0 3211631 15 10.627098 Anserini +test2325 Q0 5141888 16 10.624935 Anserini +test2325 Q0 20704306 17 10.546155 Anserini +test2325 Q0 20283885 18 10.520144 Anserini +test2325 Q0 573275 19 10.464096 Anserini +test2325 Q0 13476697 20 10.424797 Anserini +test2325 Q0 12864437 21 10.421824 Anserini +test2325 Q0 10427542 22 10.366074 Anserini +test2325 Q0 4228509 23 10.364347 Anserini +test2325 Q0 14587548 24 10.293092 Anserini +test2325 Q0 19990405 25 10.290701 Anserini +test2325 Q0 13476696 26 10.252804 Anserini +test2325 Q0 17082713 27 10.204069 Anserini +test2325 Q0 13639202 28 10.162893 Anserini +test2325 Q0 573244 29 10.150921 Anserini +test2325 Q0 573261 30 10.142253 Anserini +test2326 Q0 4198935 1 10.457918 Anserini +test2326 Q0 1504630 2 10.331564 Anserini +test2326 Q0 12271365 3 10.167292 Anserini +test2326 Q0 10063733 4 9.993460 Anserini +test2326 Q0 12271366 5 9.903255 Anserini +test2326 Q0 16101559 6 9.748470 Anserini +test2326 Q0 5974684 7 9.697774 Anserini +test2326 Q0 15937412 8 9.608272 Anserini +test2326 Q0 11161512 9 9.532680 Anserini +test2326 Q0 8445381 10 9.500912 Anserini +test2326 Q0 18053351 11 9.419760 Anserini +test2326 Q0 1668588 12 9.399831 Anserini +test2326 Q0 6997657 13 9.300879 Anserini +test2326 Q0 10063734 14 9.248663 Anserini +test2326 Q0 16614701 15 9.203988 Anserini +test2326 Q0 6380494 16 9.197854 Anserini +test2326 Q0 9402262 17 9.192232 Anserini +test2326 Q0 7872707 18 9.178558 Anserini +test2326 Q0 10785873 19 9.123879 Anserini +test2326 Q0 13050320 20 9.109095 Anserini +test2326 Q0 4591406 21 9.053316 Anserini +test2326 Q0 5431994 22 9.034296 Anserini +test2326 Q0 15937419 23 8.979083 Anserini +test2326 Q0 12691350 24 8.976712 Anserini +test2326 Q0 11875745 25 8.906835 Anserini +test2326 Q0 17028498 26 8.898427 Anserini +test2326 Q0 5875433 27 8.885668 Anserini +test2326 Q0 13528399 28 8.878000 Anserini +test2326 Q0 2911726 29 8.863115 Anserini +test2326 Q0 17579362 30 8.815455 Anserini +test2327 Q0 1811616 1 17.563980 Anserini +test2327 Q0 15069479 2 16.490679 Anserini +test2327 Q0 15403706 3 16.369068 Anserini +test2327 Q0 6263828 4 16.268574 Anserini +test2327 Q0 3065997 5 16.142185 Anserini +test2327 Q0 15069478 6 16.039650 Anserini +test2327 Q0 11902853 7 15.921688 Anserini +test2327 Q0 15065805 8 15.860454 Anserini +test2327 Q0 11467459 9 15.749701 Anserini +test2327 Q0 3065993 10 15.694655 Anserini +test2327 Q0 11467454 11 15.649077 Anserini +test2327 Q0 804013 12 15.591820 Anserini +test2327 Q0 3174062 13 15.445705 Anserini +test2327 Q0 3326098 14 15.436265 Anserini +test2327 Q0 20286251 15 15.343651 Anserini +test2327 Q0 3326099 16 15.335395 Anserini +test2327 Q0 5340783 17 15.211996 Anserini +test2327 Q0 5571988 18 15.150600 Anserini +test2327 Q0 8725282 19 15.144090 Anserini +test2327 Q0 18856252 20 15.142024 Anserini +test2327 Q0 19517180 21 15.042643 Anserini +test2327 Q0 3130583 22 15.040812 Anserini +test2327 Q0 7899514 23 15.038714 Anserini +test2327 Q0 657732 24 15.007342 Anserini +test2327 Q0 5340888 25 14.808312 Anserini +test2327 Q0 2241760 26 14.709352 Anserini +test2327 Q0 15133065 27 14.637053 Anserini +test2327 Q0 3130579 28 14.622951 Anserini +test2327 Q0 6477860 29 14.617596 Anserini +test2327 Q0 11467455 30 14.592896 Anserini +test2328 Q0 13425908 1 44.240646 Anserini +test2328 Q0 13425902 2 42.504299 Anserini +test2328 Q0 12545149 3 40.078773 Anserini +test2328 Q0 16012683 4 39.781311 Anserini +test2328 Q0 13425906 5 38.845333 Anserini +test2328 Q0 18584585 6 38.038399 Anserini +test2328 Q0 14394564 7 37.653942 Anserini +test2328 Q0 14394563 8 37.400059 Anserini +test2328 Q0 14394562 9 36.962708 Anserini +test2328 Q0 16237603 10 36.459774 Anserini +test2328 Q0 19772599 11 36.154331 Anserini +test2328 Q0 18193817 12 34.641022 Anserini +test2328 Q0 19106234 13 34.127598 Anserini +test2328 Q0 19106235 14 34.127598 Anserini +test2328 Q0 16513694 15 32.947956 Anserini +test2328 Q0 16513693 16 32.941872 Anserini +test2328 Q0 18584588 17 32.661423 Anserini +test2328 Q0 13425905 18 32.520214 Anserini +test2328 Q0 16513692 19 32.253475 Anserini +test2328 Q0 16012682 20 31.655016 Anserini +test2328 Q0 16012685 21 31.655016 Anserini +test2328 Q0 17983720 22 29.472851 Anserini +test2328 Q0 17983721 23 29.472851 Anserini +test2328 Q0 17983722 24 29.324209 Anserini +test2328 Q0 5885847 25 29.128122 Anserini +test2328 Q0 5885848 26 29.128122 Anserini +test2328 Q0 17730819 27 28.561256 Anserini +test2328 Q0 17941739 28 28.561256 Anserini +test2328 Q0 17675977 29 28.547638 Anserini +test2328 Q0 17675978 30 28.547638 Anserini +test2329 Q0 629212 1 13.759494 Anserini +test2329 Q0 4235797 2 13.533438 Anserini +test2329 Q0 5261662 3 13.134491 Anserini +test2329 Q0 10651657 4 13.051914 Anserini +test2329 Q0 629280 5 12.846656 Anserini +test2329 Q0 10615976 6 12.702388 Anserini +test2329 Q0 371459 7 12.611290 Anserini +test2329 Q0 10651672 8 12.600765 Anserini +test2329 Q0 3287384 9 12.395035 Anserini +test2329 Q0 15135201 10 12.392637 Anserini +test2329 Q0 7681529 11 12.354376 Anserini +test2329 Q0 6859437 12 12.248676 Anserini +test2329 Q0 4640877 13 12.186858 Anserini +test2329 Q0 10234102 14 12.107930 Anserini +test2329 Q0 4379244 15 11.908628 Anserini +test2329 Q0 12958915 16 11.808898 Anserini +test2329 Q0 1793699 17 11.657394 Anserini +test2329 Q0 18180898 18 11.600906 Anserini +test2329 Q0 18180900 19 11.600906 Anserini +test2329 Q0 10651662 20 11.599531 Anserini +test2329 Q0 9362143 21 11.541637 Anserini +test2329 Q0 4235786 22 11.514449 Anserini +test2329 Q0 18180890 23 11.509170 Anserini +test2329 Q0 18180897 24 11.509170 Anserini +test2329 Q0 2702139 25 11.463033 Anserini +test2329 Q0 10453960 26 11.460683 Anserini +test2329 Q0 2432235 27 11.444719 Anserini +test2329 Q0 18294672 28 11.399970 Anserini +test2329 Q0 3385151 29 11.397977 Anserini +test2329 Q0 3994904 30 11.360654 Anserini +test233 Q0 4455741 1 10.907949 Anserini +test233 Q0 4455740 2 10.889656 Anserini +test233 Q0 4455742 3 10.854165 Anserini +test233 Q0 17634314 4 10.711035 Anserini +test233 Q0 18300897 5 10.474748 Anserini +test233 Q0 15200617 6 10.474658 Anserini +test233 Q0 18166065 7 10.474658 Anserini +test233 Q0 7390513 8 10.444735 Anserini +test233 Q0 15200619 9 10.371330 Anserini +test233 Q0 6564818 10 10.299789 Anserini +test233 Q0 1404476 11 10.282779 Anserini +test233 Q0 18166069 12 10.281862 Anserini +test233 Q0 15536109 13 10.242015 Anserini +test233 Q0 5464283 14 10.240530 Anserini +test233 Q0 15536110 15 10.230649 Anserini +test233 Q0 6535356 16 10.177188 Anserini +test233 Q0 9263582 17 10.082874 Anserini +test233 Q0 6648426 18 10.045439 Anserini +test233 Q0 17915365 19 9.948753 Anserini +test233 Q0 1404475 20 9.944410 Anserini +test233 Q0 5765682 21 9.921369 Anserini +test233 Q0 17855126 22 9.920629 Anserini +test233 Q0 18300898 23 9.920348 Anserini +test233 Q0 17839149 24 9.916165 Anserini +test233 Q0 17839145 25 9.916165 Anserini +test233 Q0 2087497 26 9.895360 Anserini +test233 Q0 8681373 27 9.880820 Anserini +test233 Q0 13373681 28 9.872920 Anserini +test233 Q0 19517751 29 9.848634 Anserini +test233 Q0 7045712 30 9.729090 Anserini +test2330 Q0 514290 1 12.887794 Anserini +test2330 Q0 206399 2 12.604210 Anserini +test2330 Q0 19698413 3 12.115667 Anserini +test2330 Q0 5856014 4 12.009736 Anserini +test2330 Q0 3502027 5 11.976504 Anserini +test2330 Q0 13761923 6 11.871164 Anserini +test2330 Q0 10688692 7 11.784001 Anserini +test2330 Q0 1767568 8 11.771215 Anserini +test2330 Q0 3501993 9 11.492396 Anserini +test2330 Q0 770797 10 11.481490 Anserini +test2330 Q0 15635000 11 11.477916 Anserini +test2330 Q0 19136270 12 11.439017 Anserini +test2330 Q0 10430680 13 11.406387 Anserini +test2330 Q0 15635001 14 11.393210 Anserini +test2330 Q0 19698414 15 11.304336 Anserini +test2330 Q0 413550 16 11.296160 Anserini +test2330 Q0 16218142 17 11.287044 Anserini +test2330 Q0 11076510 18 11.272169 Anserini +test2330 Q0 25396 19 11.215486 Anserini +test2330 Q0 770924 20 11.210382 Anserini +test2330 Q0 1470156 21 11.164714 Anserini +test2330 Q0 14927271 22 11.087375 Anserini +test2330 Q0 206480 23 11.081451 Anserini +test2330 Q0 14786368 24 11.074692 Anserini +test2330 Q0 12602646 25 11.028227 Anserini +test2330 Q0 6738755 26 10.892329 Anserini +test2330 Q0 19698415 27 10.880163 Anserini +test2330 Q0 413575 28 10.838888 Anserini +test2330 Q0 6738753 29 10.823513 Anserini +test2330 Q0 12602632 30 10.793052 Anserini +test2331 Q0 8916225 1 11.515426 Anserini +test2331 Q0 1458563 2 11.119745 Anserini +test2331 Q0 18911971 3 11.099463 Anserini +test2331 Q0 15005009 4 10.850956 Anserini +test2331 Q0 3509128 5 10.739541 Anserini +test2331 Q0 7815529 6 10.710441 Anserini +test2331 Q0 19879633 7 10.653152 Anserini +test2331 Q0 18441929 8 10.644596 Anserini +test2331 Q0 19879635 9 10.603450 Anserini +test2331 Q0 5319660 10 10.568937 Anserini +test2331 Q0 1913671 11 10.527254 Anserini +test2331 Q0 18441879 12 10.525391 Anserini +test2331 Q0 2960647 13 10.515380 Anserini +test2331 Q0 17253668 14 10.503651 Anserini +test2331 Q0 12317341 15 10.503408 Anserini +test2331 Q0 1458543 16 10.365279 Anserini +test2331 Q0 18693473 17 10.315649 Anserini +test2331 Q0 1458565 18 10.287988 Anserini +test2331 Q0 18441883 19 10.227950 Anserini +test2331 Q0 18911963 20 10.227950 Anserini +test2331 Q0 18912019 21 10.227950 Anserini +test2331 Q0 6247206 22 10.215247 Anserini +test2331 Q0 4916098 23 10.212854 Anserini +test2331 Q0 5319662 24 10.140094 Anserini +test2331 Q0 1387615 25 10.120570 Anserini +test2331 Q0 18912021 26 10.107058 Anserini +test2331 Q0 3509135 27 10.103783 Anserini +test2331 Q0 1387626 28 10.049499 Anserini +test2331 Q0 5569388 29 10.039949 Anserini +test2331 Q0 1387621 30 10.017067 Anserini +test2332 Q0 2054268 1 11.914652 Anserini +test2332 Q0 2054272 2 11.731972 Anserini +test2332 Q0 10133370 3 10.780587 Anserini +test2332 Q0 333485 4 10.762616 Anserini +test2332 Q0 2054269 5 10.551403 Anserini +test2332 Q0 2054270 6 10.241289 Anserini +test2332 Q0 8371881 7 10.017787 Anserini +test2332 Q0 1974032 8 10.017787 Anserini +test2332 Q0 2054274 9 9.997635 Anserini +test2332 Q0 14932487 10 9.621799 Anserini +test2332 Q0 2671470 11 9.494456 Anserini +test2332 Q0 13272026 12 9.374766 Anserini +test2332 Q0 10291941 13 9.306936 Anserini +test2332 Q0 13003906 14 9.299000 Anserini +test2332 Q0 13209371 15 9.284504 Anserini +test2332 Q0 1659944 16 9.255103 Anserini +test2332 Q0 1659947 17 9.255103 Anserini +test2332 Q0 10291937 18 9.255103 Anserini +test2332 Q0 8148716 19 9.203980 Anserini +test2332 Q0 2671463 20 9.202272 Anserini +test2332 Q0 13272019 21 9.159424 Anserini +test2332 Q0 17019070 22 9.153552 Anserini +test2332 Q0 8989920 23 9.152536 Anserini +test2332 Q0 8989912 24 9.152536 Anserini +test2332 Q0 2907531 25 9.114058 Anserini +test2332 Q0 12501643 26 9.103802 Anserini +test2332 Q0 12501644 27 9.103802 Anserini +test2332 Q0 14932483 28 9.103802 Anserini +test2332 Q0 10444165 29 9.089012 Anserini +test2332 Q0 8935736 30 9.089012 Anserini +test2333 Q0 7498599 1 20.317469 Anserini +test2333 Q0 12636268 2 19.563824 Anserini +test2333 Q0 7498629 3 19.550215 Anserini +test2333 Q0 10421888 4 19.550215 Anserini +test2333 Q0 217537 5 19.427876 Anserini +test2333 Q0 7498594 6 18.690405 Anserini +test2333 Q0 13822541 7 18.630938 Anserini +test2333 Q0 7498633 8 18.569527 Anserini +test2333 Q0 7498632 9 18.541870 Anserini +test2333 Q0 7498631 10 18.441862 Anserini +test2333 Q0 12636258 11 18.418837 Anserini +test2333 Q0 7498603 12 18.383661 Anserini +test2333 Q0 7498595 13 18.241936 Anserini +test2333 Q0 7212991 14 18.165005 Anserini +test2333 Q0 12669690 15 18.164049 Anserini +test2333 Q0 12669683 16 17.996777 Anserini +test2333 Q0 7498620 17 17.980268 Anserini +test2333 Q0 13148231 18 17.849945 Anserini +test2333 Q0 13349986 19 17.673723 Anserini +test2333 Q0 13733525 20 17.652719 Anserini +test2333 Q0 6463201 21 17.635149 Anserini +test2333 Q0 6748196 22 17.633213 Anserini +test2333 Q0 8486178 23 17.600554 Anserini +test2333 Q0 19859644 24 17.595310 Anserini +test2333 Q0 13349987 25 17.564869 Anserini +test2333 Q0 1775766 26 17.543230 Anserini +test2333 Q0 3345042 27 17.540525 Anserini +test2333 Q0 19859643 28 17.523193 Anserini +test2333 Q0 11182412 29 17.479771 Anserini +test2333 Q0 11182409 30 17.477961 Anserini +test2334 Q0 545998 1 20.590092 Anserini +test2334 Q0 12369000 2 19.285624 Anserini +test2334 Q0 546012 3 19.170504 Anserini +test2334 Q0 19692404 4 19.146038 Anserini +test2334 Q0 546056 5 18.744949 Anserini +test2334 Q0 11886285 6 18.742126 Anserini +test2334 Q0 12542279 7 18.476572 Anserini +test2334 Q0 12368999 8 18.308403 Anserini +test2334 Q0 546058 9 18.075310 Anserini +test2334 Q0 12369016 10 18.012785 Anserini +test2334 Q0 5725444 11 17.769348 Anserini +test2334 Q0 12369017 12 17.733103 Anserini +test2334 Q0 11092226 13 17.628983 Anserini +test2334 Q0 268072 14 16.572184 Anserini +test2334 Q0 546016 15 16.281324 Anserini +test2334 Q0 546053 16 16.019255 Anserini +test2334 Q0 4966715 17 15.986844 Anserini +test2334 Q0 546054 18 15.813734 Anserini +test2334 Q0 8772913 19 15.769443 Anserini +test2334 Q0 2478867 20 15.769443 Anserini +test2334 Q0 545996 21 15.646057 Anserini +test2334 Q0 307055 22 15.632407 Anserini +test2334 Q0 546065 23 15.421663 Anserini +test2334 Q0 2379213 24 15.393488 Anserini +test2334 Q0 10911862 25 15.338369 Anserini +test2334 Q0 2738925 26 15.317592 Anserini +test2334 Q0 546010 27 15.176557 Anserini +test2334 Q0 17597253 28 15.027926 Anserini +test2334 Q0 17597255 29 14.910161 Anserini +test2334 Q0 546051 30 14.878609 Anserini +test2335 Q0 436915 1 15.471230 Anserini +test2335 Q0 12622255 2 15.279495 Anserini +test2335 Q0 12640679 3 14.520037 Anserini +test2335 Q0 9952213 4 13.755140 Anserini +test2335 Q0 36392 5 13.714524 Anserini +test2335 Q0 13185370 6 13.182088 Anserini +test2335 Q0 238985 7 13.158514 Anserini +test2335 Q0 12644441 8 12.940658 Anserini +test2335 Q0 15482939 9 12.936766 Anserini +test2335 Q0 10744975 10 12.784735 Anserini +test2335 Q0 11184309 11 12.661122 Anserini +test2335 Q0 19049438 12 12.641666 Anserini +test2335 Q0 19049439 13 12.641666 Anserini +test2335 Q0 12622254 14 12.478619 Anserini +test2335 Q0 13078094 15 12.336793 Anserini +test2335 Q0 18687850 16 12.271668 Anserini +test2335 Q0 17106985 17 12.240205 Anserini +test2335 Q0 4161475 18 12.098032 Anserini +test2335 Q0 3777533 19 12.092008 Anserini +test2335 Q0 16647288 20 12.091471 Anserini +test2335 Q0 18754319 21 12.089519 Anserini +test2335 Q0 346850 22 11.884655 Anserini +test2335 Q0 12640680 23 11.869341 Anserini +test2335 Q0 345966 24 11.688002 Anserini +test2335 Q0 18651448 25 11.634657 Anserini +test2335 Q0 17654807 26 11.621114 Anserini +test2335 Q0 236114 27 11.608067 Anserini +test2335 Q0 13211274 28 11.511326 Anserini +test2335 Q0 17669369 29 11.511326 Anserini +test2335 Q0 8720048 30 11.509546 Anserini +test2336 Q0 12259396 1 14.841098 Anserini +test2336 Q0 3378808 2 14.544908 Anserini +test2336 Q0 4567225 3 14.306128 Anserini +test2336 Q0 12667932 4 14.235187 Anserini +test2336 Q0 4490407 5 13.912585 Anserini +test2336 Q0 12594811 6 13.859071 Anserini +test2336 Q0 18769920 7 13.691957 Anserini +test2336 Q0 18345932 8 13.606824 Anserini +test2336 Q0 18209502 9 13.601955 Anserini +test2336 Q0 15122426 10 13.505991 Anserini +test2336 Q0 15122425 11 13.401810 Anserini +test2336 Q0 18796128 12 13.367167 Anserini +test2336 Q0 4046305 13 13.325075 Anserini +test2336 Q0 18161780 14 13.308959 Anserini +test2336 Q0 18161784 15 13.308959 Anserini +test2336 Q0 14232148 16 13.214375 Anserini +test2336 Q0 4046330 17 13.117845 Anserini +test2336 Q0 14132757 18 13.093628 Anserini +test2336 Q0 1443387 19 13.061809 Anserini +test2336 Q0 12700091 20 13.059967 Anserini +test2336 Q0 12700089 21 13.059967 Anserini +test2336 Q0 960907 22 12.942635 Anserini +test2336 Q0 2602538 23 12.939191 Anserini +test2336 Q0 8079836 24 12.878325 Anserini +test2336 Q0 18796129 25 12.853884 Anserini +test2336 Q0 7765864 26 12.850693 Anserini +test2336 Q0 6196024 27 12.838690 Anserini +test2336 Q0 18209346 28 12.809093 Anserini +test2336 Q0 4366419 29 12.800822 Anserini +test2336 Q0 8361732 30 12.783897 Anserini +test2337 Q0 19698126 1 20.891901 Anserini +test2337 Q0 3021242 2 19.630346 Anserini +test2337 Q0 4389131 3 19.591988 Anserini +test2337 Q0 4389137 4 19.591988 Anserini +test2337 Q0 19698125 5 19.406479 Anserini +test2337 Q0 3021240 6 18.937698 Anserini +test2337 Q0 11635193 7 18.819586 Anserini +test2337 Q0 6407915 8 18.810799 Anserini +test2337 Q0 4699500 9 18.399546 Anserini +test2337 Q0 4389134 10 18.227325 Anserini +test2337 Q0 3580448 11 18.211336 Anserini +test2337 Q0 4389135 12 18.077452 Anserini +test2337 Q0 4699495 13 18.056555 Anserini +test2337 Q0 14526333 14 17.671118 Anserini +test2337 Q0 14526331 15 17.492971 Anserini +test2337 Q0 4389132 16 17.402061 Anserini +test2337 Q0 4488394 17 17.253386 Anserini +test2337 Q0 4389133 18 16.964495 Anserini +test2337 Q0 41182 19 16.926882 Anserini +test2337 Q0 13128459 20 16.913298 Anserini +test2337 Q0 4389136 21 16.608028 Anserini +test2337 Q0 13305366 22 16.520765 Anserini +test2337 Q0 13582303 23 16.380198 Anserini +test2337 Q0 13305305 24 16.165974 Anserini +test2337 Q0 6205615 25 15.920462 Anserini +test2337 Q0 6205616 26 15.920462 Anserini +test2337 Q0 14011674 27 15.493227 Anserini +test2337 Q0 2051382 28 15.346087 Anserini +test2337 Q0 3021241 29 15.279519 Anserini +test2337 Q0 14337884 30 15.102113 Anserini +test2338 Q0 18807264 1 20.523838 Anserini +test2338 Q0 19290931 2 16.692497 Anserini +test2338 Q0 8632220 3 16.407068 Anserini +test2338 Q0 16773962 4 16.080696 Anserini +test2338 Q0 18807263 5 15.978131 Anserini +test2338 Q0 3111553 6 15.874537 Anserini +test2338 Q0 20773432 7 15.829136 Anserini +test2338 Q0 11375105 8 15.277618 Anserini +test2338 Q0 13498963 9 15.272206 Anserini +test2338 Q0 5268907 10 14.895345 Anserini +test2338 Q0 11047232 11 14.769375 Anserini +test2338 Q0 8232266 12 14.763776 Anserini +test2338 Q0 527908 13 14.630665 Anserini +test2338 Q0 3190044 14 14.595508 Anserini +test2338 Q0 8283989 15 14.567868 Anserini +test2338 Q0 19756882 16 14.197622 Anserini +test2338 Q0 10864293 17 14.157459 Anserini +test2338 Q0 16729789 18 14.099442 Anserini +test2338 Q0 9931930 19 14.062356 Anserini +test2338 Q0 8667888 20 14.027378 Anserini +test2338 Q0 13534846 21 13.935791 Anserini +test2338 Q0 11121656 22 13.935461 Anserini +test2338 Q0 17593326 23 13.905376 Anserini +test2338 Q0 8632219 24 13.851786 Anserini +test2338 Q0 9883000 25 13.794557 Anserini +test2338 Q0 4573609 26 13.736538 Anserini +test2338 Q0 11472411 27 13.720065 Anserini +test2338 Q0 8796396 28 13.677845 Anserini +test2338 Q0 18695976 29 13.656145 Anserini +test2338 Q0 14785424 30 13.641243 Anserini +test2339 Q0 5527165 1 11.958304 Anserini +test2339 Q0 6035611 2 11.727454 Anserini +test2339 Q0 12692021 3 11.303355 Anserini +test2339 Q0 14121605 4 11.070236 Anserini +test2339 Q0 3779005 5 10.842939 Anserini +test2339 Q0 12314481 6 10.790449 Anserini +test2339 Q0 17779792 7 10.749301 Anserini +test2339 Q0 13320605 8 10.697600 Anserini +test2339 Q0 13320601 9 10.697600 Anserini +test2339 Q0 13192593 10 10.597955 Anserini +test2339 Q0 12692022 11 10.548187 Anserini +test2339 Q0 17496679 12 10.534628 Anserini +test2339 Q0 14467821 13 10.514278 Anserini +test2339 Q0 6035612 14 10.509660 Anserini +test2339 Q0 3778995 15 10.502643 Anserini +test2339 Q0 18547208 16 10.466620 Anserini +test2339 Q0 14246532 17 10.456836 Anserini +test2339 Q0 19370521 18 10.447813 Anserini +test2339 Q0 4235608 19 10.371907 Anserini +test2339 Q0 6617078 20 10.199536 Anserini +test2339 Q0 19256919 21 10.156628 Anserini +test2339 Q0 9159158 22 10.116126 Anserini +test2339 Q0 4299348 23 10.086936 Anserini +test2339 Q0 14470959 24 10.081402 Anserini +test2339 Q0 14467822 25 10.065017 Anserini +test2339 Q0 18918698 26 10.059772 Anserini +test2339 Q0 3799261 27 9.986591 Anserini +test2339 Q0 14969406 28 9.952901 Anserini +test2339 Q0 14888311 29 9.930783 Anserini +test2339 Q0 20691550 30 9.914684 Anserini +test234 Q0 14806143 1 11.344327 Anserini +test234 Q0 13991520 2 10.600361 Anserini +test234 Q0 15155519 3 10.457773 Anserini +test234 Q0 20853992 4 9.972662 Anserini +test234 Q0 12158011 5 9.938854 Anserini +test234 Q0 12158012 6 9.938854 Anserini +test234 Q0 15733844 7 9.868452 Anserini +test234 Q0 10761077 8 9.767208 Anserini +test234 Q0 19139848 9 9.666508 Anserini +test234 Q0 7225029 10 9.613894 Anserini +test234 Q0 20853995 11 9.573743 Anserini +test234 Q0 20853994 12 9.573743 Anserini +test234 Q0 15539424 13 9.325974 Anserini +test234 Q0 2641850 14 9.185698 Anserini +test234 Q0 15198355 15 9.046430 Anserini +test234 Q0 12010902 16 9.044070 Anserini +test234 Q0 10439355 17 9.029783 Anserini +test234 Q0 12199720 18 8.975367 Anserini +test234 Q0 12669674 19 8.946766 Anserini +test234 Q0 11714392 20 8.946766 Anserini +test234 Q0 20091958 21 8.912764 Anserini +test234 Q0 11477918 22 8.853939 Anserini +test234 Q0 3683308 23 8.760733 Anserini +test234 Q0 14692335 24 8.708540 Anserini +test234 Q0 18641973 25 8.666265 Anserini +test234 Q0 9928992 26 8.575455 Anserini +test234 Q0 4510663 27 8.556400 Anserini +test234 Q0 16787559 28 8.503762 Anserini +test234 Q0 13691290 29 8.461426 Anserini +test234 Q0 9339234 30 8.434771 Anserini +test2340 Q0 2277746 1 15.917300 Anserini +test2340 Q0 13366976 2 15.801720 Anserini +test2340 Q0 5536485 3 15.594404 Anserini +test2340 Q0 12808027 4 15.159109 Anserini +test2340 Q0 4599564 5 14.579007 Anserini +test2340 Q0 19406696 6 13.974417 Anserini +test2340 Q0 18177783 7 13.809329 Anserini +test2340 Q0 14933351 8 13.717600 Anserini +test2340 Q0 10020086 9 13.459861 Anserini +test2340 Q0 18115179 10 13.454371 Anserini +test2340 Q0 8862211 11 13.433497 Anserini +test2340 Q0 20012345 12 13.350409 Anserini +test2340 Q0 9891277 13 13.212379 Anserini +test2340 Q0 7157815 14 13.169126 Anserini +test2340 Q0 20414624 15 13.101666 Anserini +test2340 Q0 12558958 16 13.086153 Anserini +test2340 Q0 990881 17 13.037133 Anserini +test2340 Q0 7466297 18 12.966842 Anserini +test2340 Q0 2901930 19 12.918924 Anserini +test2340 Q0 11385318 20 12.834648 Anserini +test2340 Q0 419258 21 12.821880 Anserini +test2340 Q0 4645530 22 12.725669 Anserini +test2340 Q0 8862210 23 12.708950 Anserini +test2340 Q0 17435883 24 12.629435 Anserini +test2340 Q0 18877754 25 12.614918 Anserini +test2340 Q0 13609190 26 12.606747 Anserini +test2340 Q0 7083418 27 12.543299 Anserini +test2340 Q0 5264205 28 12.511502 Anserini +test2340 Q0 15208397 29 12.491111 Anserini +test2340 Q0 16876282 30 12.450296 Anserini +test2341 Q0 2867297 1 16.472401 Anserini +test2341 Q0 253024 2 15.055268 Anserini +test2341 Q0 5496512 3 14.391290 Anserini +test2341 Q0 2867296 4 14.107553 Anserini +test2341 Q0 16280645 5 13.440814 Anserini +test2341 Q0 20356212 6 13.274358 Anserini +test2341 Q0 111088 7 12.696393 Anserini +test2341 Q0 20325224 8 12.636259 Anserini +test2341 Q0 19478851 9 12.618505 Anserini +test2341 Q0 13116322 10 12.493237 Anserini +test2341 Q0 4204241 11 12.367383 Anserini +test2341 Q0 1870967 12 12.238619 Anserini +test2341 Q0 5897332 13 12.066579 Anserini +test2341 Q0 20356231 14 11.982779 Anserini +test2341 Q0 16559633 15 11.867660 Anserini +test2341 Q0 2549765 16 11.836340 Anserini +test2341 Q0 1623638 17 11.819902 Anserini +test2341 Q0 13039353 18 11.705051 Anserini +test2341 Q0 16128016 19 11.705051 Anserini +test2341 Q0 233905 20 11.703849 Anserini +test2341 Q0 14883621 21 11.689551 Anserini +test2341 Q0 10692281 22 11.647481 Anserini +test2341 Q0 16286107 23 11.587344 Anserini +test2341 Q0 6562454 24 11.513074 Anserini +test2341 Q0 559177 25 11.510417 Anserini +test2341 Q0 14591308 26 11.479576 Anserini +test2341 Q0 20719486 27 11.458662 Anserini +test2341 Q0 1957031 28 11.455729 Anserini +test2341 Q0 1604301 29 11.372657 Anserini +test2341 Q0 4846543 30 11.372641 Anserini +test2342 Q0 15934460 1 15.333797 Anserini +test2342 Q0 1903407 2 12.770983 Anserini +test2342 Q0 3537913 3 12.324338 Anserini +test2342 Q0 3962921 4 12.324338 Anserini +test2342 Q0 3537898 5 12.303360 Anserini +test2342 Q0 4023340 6 12.208519 Anserini +test2342 Q0 1903398 7 12.192688 Anserini +test2342 Q0 3537914 8 11.924504 Anserini +test2342 Q0 16723932 9 11.912731 Anserini +test2342 Q0 972207 10 11.901104 Anserini +test2342 Q0 16723933 11 11.825237 Anserini +test2342 Q0 19731952 12 11.682463 Anserini +test2342 Q0 19731970 13 11.682463 Anserini +test2342 Q0 15017046 14 11.358451 Anserini +test2342 Q0 3306486 15 11.340408 Anserini +test2342 Q0 15554508 16 11.323002 Anserini +test2342 Q0 2895817 17 11.322246 Anserini +test2342 Q0 8370694 18 11.320105 Anserini +test2342 Q0 4023347 19 11.263819 Anserini +test2342 Q0 3537900 20 11.225413 Anserini +test2342 Q0 16723823 21 11.139539 Anserini +test2342 Q0 16723824 22 11.139539 Anserini +test2342 Q0 4050550 23 11.127511 Anserini +test2342 Q0 10878703 24 11.060504 Anserini +test2342 Q0 8311493 25 11.054396 Anserini +test2342 Q0 15017049 26 11.044886 Anserini +test2342 Q0 1267230 27 11.030594 Anserini +test2342 Q0 226740 28 11.029783 Anserini +test2342 Q0 3537921 29 11.029724 Anserini +test2342 Q0 3537923 30 11.029724 Anserini +test2343 Q0 18131212 1 22.786915 Anserini +test2343 Q0 19575201 2 21.876696 Anserini +test2343 Q0 1804745 3 21.804274 Anserini +test2343 Q0 1804695 4 21.341112 Anserini +test2343 Q0 11817763 5 20.644291 Anserini +test2343 Q0 16026736 6 20.110182 Anserini +test2343 Q0 16026735 7 19.923147 Anserini +test2343 Q0 15180434 8 19.712490 Anserini +test2343 Q0 17501314 9 19.479643 Anserini +test2343 Q0 11817742 10 19.422525 Anserini +test2343 Q0 14722537 11 19.214188 Anserini +test2343 Q0 16026729 12 19.162451 Anserini +test2343 Q0 15180408 13 19.102430 Anserini +test2343 Q0 18131210 14 19.050777 Anserini +test2343 Q0 13373043 15 19.028984 Anserini +test2343 Q0 17501306 16 18.935465 Anserini +test2343 Q0 11817774 17 18.816498 Anserini +test2343 Q0 15180418 18 18.786024 Anserini +test2343 Q0 19435957 19 18.780878 Anserini +test2343 Q0 14722542 20 18.643843 Anserini +test2343 Q0 13373079 21 18.585241 Anserini +test2343 Q0 15180438 22 18.426365 Anserini +test2343 Q0 6509435 23 18.398808 Anserini +test2343 Q0 13373072 24 18.394640 Anserini +test2343 Q0 16026727 25 18.333454 Anserini +test2343 Q0 5105349 26 18.333393 Anserini +test2343 Q0 14722554 27 18.322021 Anserini +test2343 Q0 18958071 28 18.189598 Anserini +test2343 Q0 19575195 29 18.137598 Anserini +test2343 Q0 5765658 30 18.126465 Anserini +test2344 Q0 1160100 1 14.988282 Anserini +test2344 Q0 14580594 2 14.857377 Anserini +test2344 Q0 3933909 3 14.517759 Anserini +test2344 Q0 13274804 4 14.397508 Anserini +test2344 Q0 7276386 5 14.376112 Anserini +test2344 Q0 3731612 6 14.254051 Anserini +test2344 Q0 13178295 7 14.036079 Anserini +test2344 Q0 10601935 8 13.958546 Anserini +test2344 Q0 4704704 9 13.781652 Anserini +test2344 Q0 2931377 10 13.767467 Anserini +test2344 Q0 9437872 11 13.736089 Anserini +test2344 Q0 9437873 12 13.736089 Anserini +test2344 Q0 9694827 13 13.556064 Anserini +test2344 Q0 359698 14 13.506045 Anserini +test2344 Q0 11484833 15 13.489697 Anserini +test2344 Q0 3900953 16 13.467996 Anserini +test2344 Q0 3933910 17 13.463478 Anserini +test2344 Q0 8266692 18 13.456734 Anserini +test2344 Q0 714154 19 13.435234 Anserini +test2344 Q0 15140590 20 13.430633 Anserini +test2344 Q0 12670970 21 13.428776 Anserini +test2344 Q0 5087804 22 13.428608 Anserini +test2344 Q0 9694791 23 13.428608 Anserini +test2344 Q0 12512872 24 13.428207 Anserini +test2344 Q0 18634978 25 13.369550 Anserini +test2344 Q0 14580606 26 13.356185 Anserini +test2344 Q0 10747904 27 13.302366 Anserini +test2344 Q0 15295178 28 13.155483 Anserini +test2344 Q0 18632674 29 13.144516 Anserini +test2344 Q0 18327909 30 13.142960 Anserini +test2345 Q0 18421693 1 14.614480 Anserini +test2345 Q0 18421661 2 13.482489 Anserini +test2345 Q0 18421697 3 13.482489 Anserini +test2345 Q0 389141 4 13.343042 Anserini +test2345 Q0 18421691 5 13.270433 Anserini +test2345 Q0 18421669 6 12.453768 Anserini +test2345 Q0 18421686 7 12.453768 Anserini +test2345 Q0 18421672 8 12.450267 Anserini +test2345 Q0 546586 9 12.360401 Anserini +test2345 Q0 20014441 10 12.207480 Anserini +test2345 Q0 20014436 11 12.119783 Anserini +test2345 Q0 18421667 12 12.119783 Anserini +test2345 Q0 18421674 13 12.033360 Anserini +test2345 Q0 18421682 14 11.586136 Anserini +test2345 Q0 18421676 15 11.566124 Anserini +test2345 Q0 6287022 16 11.544190 Anserini +test2345 Q0 18421689 17 11.242960 Anserini +test2345 Q0 18421695 18 11.242960 Anserini +test2345 Q0 18421687 19 11.242960 Anserini +test2345 Q0 18421692 20 11.242960 Anserini +test2345 Q0 18421694 21 11.165417 Anserini +test2345 Q0 18421684 22 11.165417 Anserini +test2345 Q0 18421685 23 11.165417 Anserini +test2345 Q0 18421662 24 11.088935 Anserini +test2345 Q0 18421690 25 11.088935 Anserini +test2345 Q0 7035644 26 11.052768 Anserini +test2345 Q0 7035647 27 10.876912 Anserini +test2345 Q0 8292674 28 10.760146 Anserini +test2345 Q0 15543951 29 10.411343 Anserini +test2345 Q0 18421668 30 10.407726 Anserini +test2346 Q0 8036142 1 16.875633 Anserini +test2346 Q0 8888581 2 16.197945 Anserini +test2346 Q0 99153 3 15.665255 Anserini +test2346 Q0 3187672 4 15.496212 Anserini +test2346 Q0 14832065 5 15.097993 Anserini +test2346 Q0 99106 6 15.049270 Anserini +test2346 Q0 10889009 7 15.042749 Anserini +test2346 Q0 10888993 8 15.000862 Anserini +test2346 Q0 5292779 9 14.914780 Anserini +test2346 Q0 7153018 10 14.882300 Anserini +test2346 Q0 8888573 11 14.845050 Anserini +test2346 Q0 10888995 12 14.833331 Anserini +test2346 Q0 19070271 13 14.810823 Anserini +test2346 Q0 14075054 14 14.651748 Anserini +test2346 Q0 3769400 15 14.560178 Anserini +test2346 Q0 2368853 16 14.514633 Anserini +test2346 Q0 14832067 17 14.505256 Anserini +test2346 Q0 7153025 18 14.449493 Anserini +test2346 Q0 19070278 19 14.443071 Anserini +test2346 Q0 19070270 20 14.443071 Anserini +test2346 Q0 11904940 21 14.434606 Anserini +test2346 Q0 3769418 22 14.401777 Anserini +test2346 Q0 14075051 23 14.285157 Anserini +test2346 Q0 5292789 24 14.233490 Anserini +test2346 Q0 7153019 25 14.166795 Anserini +test2346 Q0 7153022 26 14.164595 Anserini +test2346 Q0 3769401 27 14.157326 Anserini +test2346 Q0 99096 28 14.099476 Anserini +test2346 Q0 15191870 29 14.099476 Anserini +test2346 Q0 10889002 30 14.097376 Anserini +test2347 Q0 6846866 1 15.300073 Anserini +test2347 Q0 16740973 2 15.158964 Anserini +test2347 Q0 7962359 3 14.777874 Anserini +test2347 Q0 16740976 4 14.451115 Anserini +test2347 Q0 20569176 5 13.785462 Anserini +test2347 Q0 11461361 6 13.777344 Anserini +test2347 Q0 12612979 7 13.764202 Anserini +test2347 Q0 13093359 8 13.738213 Anserini +test2347 Q0 8671111 9 13.616732 Anserini +test2347 Q0 19677080 10 13.487803 Anserini +test2347 Q0 8709695 11 13.312351 Anserini +test2347 Q0 16110457 12 13.280005 Anserini +test2347 Q0 20544581 13 13.147766 Anserini +test2347 Q0 11758194 14 13.143366 Anserini +test2347 Q0 3792115 15 13.059331 Anserini +test2347 Q0 18248039 16 13.021398 Anserini +test2347 Q0 12612987 17 12.968070 Anserini +test2347 Q0 21011033 18 12.837448 Anserini +test2347 Q0 16078495 19 12.792589 Anserini +test2347 Q0 13452224 20 12.767417 Anserini +test2347 Q0 7966533 21 12.746842 Anserini +test2347 Q0 5078268 22 12.730849 Anserini +test2347 Q0 17303269 23 12.697673 Anserini +test2347 Q0 7344420 24 12.648267 Anserini +test2347 Q0 11812869 25 12.620756 Anserini +test2347 Q0 16680626 26 12.593787 Anserini +test2347 Q0 20567226 27 12.480197 Anserini +test2347 Q0 12417063 28 12.433934 Anserini +test2347 Q0 19677154 29 12.426767 Anserini +test2347 Q0 3792126 30 12.426380 Anserini +test2348 Q0 16687022 1 16.564653 Anserini +test2348 Q0 16687021 2 16.025982 Anserini +test2348 Q0 8005973 3 15.851293 Anserini +test2348 Q0 8005981 4 15.681712 Anserini +test2348 Q0 18965436 5 15.638656 Anserini +test2348 Q0 18965435 6 15.558479 Anserini +test2348 Q0 8005964 7 15.220106 Anserini +test2348 Q0 8005975 8 15.184993 Anserini +test2348 Q0 8751651 9 15.134542 Anserini +test2348 Q0 18823022 10 15.134542 Anserini +test2348 Q0 20169926 11 14.498401 Anserini +test2348 Q0 10741439 12 14.485937 Anserini +test2348 Q0 10741440 13 14.485937 Anserini +test2348 Q0 18823025 14 14.293562 Anserini +test2348 Q0 18993204 15 13.900776 Anserini +test2348 Q0 8179229 16 13.799444 Anserini +test2348 Q0 8005972 17 13.732744 Anserini +test2348 Q0 8751652 18 13.732744 Anserini +test2348 Q0 18823028 19 13.699614 Anserini +test2348 Q0 5505107 20 13.375725 Anserini +test2348 Q0 2842528 21 13.322062 Anserini +test2348 Q0 18823024 22 13.027567 Anserini +test2348 Q0 18823026 23 12.988046 Anserini +test2348 Q0 18823023 24 12.744490 Anserini +test2348 Q0 10483498 25 12.387877 Anserini +test2348 Q0 8005977 26 12.312082 Anserini +test2348 Q0 10907112 27 12.272431 Anserini +test2348 Q0 9045002 28 12.264009 Anserini +test2348 Q0 8005967 29 12.227747 Anserini +test2348 Q0 8005965 30 12.227747 Anserini +test2349 Q0 8331770 1 12.395232 Anserini +test2349 Q0 17026576 2 12.383212 Anserini +test2349 Q0 19160742 3 12.350474 Anserini +test2349 Q0 4259020 4 12.091759 Anserini +test2349 Q0 14934847 5 11.927328 Anserini +test2349 Q0 19603765 6 11.914065 Anserini +test2349 Q0 701790 7 11.813099 Anserini +test2349 Q0 701812 8 11.813099 Anserini +test2349 Q0 16903135 9 11.769972 Anserini +test2349 Q0 12850508 10 11.682592 Anserini +test2349 Q0 17587995 11 11.615450 Anserini +test2349 Q0 2883460 12 11.594596 Anserini +test2349 Q0 3368169 13 11.563577 Anserini +test2349 Q0 7754876 14 11.495229 Anserini +test2349 Q0 14934846 15 11.476981 Anserini +test2349 Q0 3832169 16 11.383601 Anserini +test2349 Q0 11792536 17 11.342344 Anserini +test2349 Q0 11792516 18 11.309152 Anserini +test2349 Q0 15676910 19 11.291216 Anserini +test2349 Q0 17971096 20 11.287773 Anserini +test2349 Q0 5618062 21 11.281441 Anserini +test2349 Q0 21002600 22 11.279099 Anserini +test2349 Q0 18847776 23 11.277597 Anserini +test2349 Q0 7962360 24 11.258589 Anserini +test2349 Q0 12529929 25 11.203853 Anserini +test2349 Q0 16051144 26 11.157323 Anserini +test2349 Q0 12611618 27 11.116440 Anserini +test2349 Q0 16951758 28 11.106697 Anserini +test2349 Q0 19664995 29 11.060880 Anserini +test2349 Q0 11201683 30 11.057293 Anserini +test235 Q0 9797538 1 12.709267 Anserini +test235 Q0 19653387 2 12.677860 Anserini +test235 Q0 17754958 3 11.924147 Anserini +test235 Q0 5676989 4 11.830434 Anserini +test235 Q0 6653145 5 11.807958 Anserini +test235 Q0 20022871 6 11.658952 Anserini +test235 Q0 20626668 7 11.600572 Anserini +test235 Q0 20748041 8 11.458471 Anserini +test235 Q0 18552566 9 11.427999 Anserini +test235 Q0 15758903 10 11.354238 Anserini +test235 Q0 9993876 11 11.351233 Anserini +test235 Q0 16785630 12 11.338691 Anserini +test235 Q0 7619435 13 11.331820 Anserini +test235 Q0 13601104 14 11.326552 Anserini +test235 Q0 19414161 15 11.310747 Anserini +test235 Q0 15758897 16 11.310453 Anserini +test235 Q0 10081965 17 11.276860 Anserini +test235 Q0 1557982 18 11.225127 Anserini +test235 Q0 10917450 19 11.195382 Anserini +test235 Q0 19399959 20 11.194446 Anserini +test235 Q0 17000997 21 11.120151 Anserini +test235 Q0 20626656 22 11.088634 Anserini +test235 Q0 18467362 23 11.048995 Anserini +test235 Q0 15568898 24 11.042290 Anserini +test235 Q0 19399962 25 11.016509 Anserini +test235 Q0 13406897 26 10.969870 Anserini +test235 Q0 14866767 27 10.968189 Anserini +test235 Q0 16341663 28 10.939121 Anserini +test235 Q0 18511548 29 10.832676 Anserini +test235 Q0 11721518 30 10.787958 Anserini +test2350 Q0 5206989 1 9.511230 Anserini +test2350 Q0 10769679 2 9.068168 Anserini +test2350 Q0 14723270 3 9.068168 Anserini +test2350 Q0 19950663 4 8.894135 Anserini +test2350 Q0 20442102 5 8.822297 Anserini +test2350 Q0 309923 6 8.822297 Anserini +test2350 Q0 3808283 7 8.751736 Anserini +test2350 Q0 11902950 8 8.654856 Anserini +test2350 Q0 200256 9 8.512214 Anserini +test2350 Q0 10866031 10 8.499270 Anserini +test2350 Q0 6601648 11 8.446331 Anserini +test2350 Q0 19346427 12 8.427923 Anserini +test2350 Q0 4594555 13 8.406863 Anserini +test2350 Q0 7350491 14 8.406863 Anserini +test2350 Q0 9013718 15 8.406863 Anserini +test2350 Q0 4594554 16 8.406863 Anserini +test2350 Q0 10768991 17 8.320845 Anserini +test2350 Q0 15470692 18 8.293993 Anserini +test2350 Q0 9485534 19 8.293993 Anserini +test2350 Q0 19834281 20 8.233919 Anserini +test2350 Q0 2024926 21 8.216910 Anserini +test2350 Q0 18526302 22 8.198992 Anserini +test2350 Q0 10168048 23 8.198992 Anserini +test2350 Q0 12037928 24 8.196619 Anserini +test2350 Q0 15073752 25 8.196619 Anserini +test2350 Q0 3752180 26 8.176799 Anserini +test2350 Q0 10018949 27 8.176799 Anserini +test2350 Q0 8570241 28 8.159672 Anserini +test2350 Q0 6891693 29 8.074083 Anserini +test2350 Q0 3923697 30 8.068930 Anserini +test2351 Q0 10756094 1 13.415972 Anserini +test2351 Q0 2760404 2 12.800152 Anserini +test2351 Q0 10155520 3 12.396545 Anserini +test2351 Q0 750320 4 12.354546 Anserini +test2351 Q0 2167229 5 12.147058 Anserini +test2351 Q0 2167219 6 12.139993 Anserini +test2351 Q0 2167218 7 11.906332 Anserini +test2351 Q0 2167216 8 11.906332 Anserini +test2351 Q0 2167217 9 11.906332 Anserini +test2351 Q0 10756089 10 11.663719 Anserini +test2351 Q0 2167223 11 11.414770 Anserini +test2351 Q0 20903202 12 11.194571 Anserini +test2351 Q0 17673815 13 11.086323 Anserini +test2351 Q0 10155513 14 11.065750 Anserini +test2351 Q0 2167213 15 10.946514 Anserini +test2351 Q0 3488981 16 10.827853 Anserini +test2351 Q0 4650942 17 10.698891 Anserini +test2351 Q0 10155514 18 10.615192 Anserini +test2351 Q0 2167225 19 10.574430 Anserini +test2351 Q0 2167230 20 10.569703 Anserini +test2351 Q0 5721890 21 10.350847 Anserini +test2351 Q0 11324654 22 10.281109 Anserini +test2351 Q0 17673811 23 10.245942 Anserini +test2351 Q0 10756092 24 10.198213 Anserini +test2351 Q0 15884582 25 10.140423 Anserini +test2351 Q0 15884580 26 10.108565 Anserini +test2351 Q0 10756095 27 10.020926 Anserini +test2351 Q0 17673816 28 9.949077 Anserini +test2351 Q0 11324655 29 9.923229 Anserini +test2351 Q0 5721893 30 9.910422 Anserini +test2352 Q0 13701560 1 16.336060 Anserini +test2352 Q0 923191 2 15.584372 Anserini +test2352 Q0 14479239 3 15.333075 Anserini +test2352 Q0 10584589 4 14.631435 Anserini +test2352 Q0 12477036 5 14.520242 Anserini +test2352 Q0 15155021 6 14.476572 Anserini +test2352 Q0 33480 7 14.418692 Anserini +test2352 Q0 68421 8 14.324978 Anserini +test2352 Q0 2427858 9 13.879379 Anserini +test2352 Q0 10067269 10 13.786484 Anserini +test2352 Q0 1145965 11 13.723862 Anserini +test2352 Q0 1535292 12 13.681173 Anserini +test2352 Q0 20052343 13 13.679201 Anserini +test2352 Q0 486697 14 13.679201 Anserini +test2352 Q0 20234863 15 13.677768 Anserini +test2352 Q0 18315233 16 13.641966 Anserini +test2352 Q0 4928472 17 13.554498 Anserini +test2352 Q0 17021123 18 13.457052 Anserini +test2352 Q0 11472813 19 13.455326 Anserini +test2352 Q0 5507624 20 13.411081 Anserini +test2352 Q0 5345797 21 13.368209 Anserini +test2352 Q0 1785102 22 13.331504 Anserini +test2352 Q0 7554391 23 13.273054 Anserini +test2352 Q0 4772935 24 13.146187 Anserini +test2352 Q0 10584588 25 13.143861 Anserini +test2352 Q0 20069104 26 13.087996 Anserini +test2352 Q0 5373360 27 13.056848 Anserini +test2352 Q0 5373357 28 13.056848 Anserini +test2352 Q0 4856378 29 13.045694 Anserini +test2352 Q0 1973265 30 13.014975 Anserini +test2353 Q0 15717320 1 19.701532 Anserini +test2353 Q0 1900131 2 18.678648 Anserini +test2353 Q0 366003 3 18.572006 Anserini +test2353 Q0 2092269 4 18.064924 Anserini +test2353 Q0 1900183 5 18.002510 Anserini +test2353 Q0 3384597 6 17.758167 Anserini +test2353 Q0 20370 7 17.557468 Anserini +test2353 Q0 5188925 8 17.504425 Anserini +test2353 Q0 1896424 9 17.320118 Anserini +test2353 Q0 5220936 10 17.106480 Anserini +test2353 Q0 494134 11 17.041706 Anserini +test2353 Q0 434502 12 16.928785 Anserini +test2353 Q0 4904548 13 16.796173 Anserini +test2353 Q0 3384598 14 16.735750 Anserini +test2353 Q0 5336695 15 16.701395 Anserini +test2353 Q0 5220935 16 16.565994 Anserini +test2353 Q0 2095230 17 16.432249 Anserini +test2353 Q0 494127 18 16.416826 Anserini +test2353 Q0 2293882 19 16.410547 Anserini +test2353 Q0 5018 20 16.303589 Anserini +test2353 Q0 423141 21 16.143267 Anserini +test2353 Q0 1896364 22 16.034927 Anserini +test2353 Q0 15717321 23 15.973119 Anserini +test2353 Q0 5256887 24 15.936973 Anserini +test2353 Q0 434483 25 15.884390 Anserini +test2353 Q0 1762253 26 15.843815 Anserini +test2353 Q0 2783306 27 15.835989 Anserini +test2353 Q0 2092268 28 15.744583 Anserini +test2353 Q0 434491 29 15.553699 Anserini +test2353 Q0 11924537 30 15.516583 Anserini +test2354 Q0 9992865 1 15.120942 Anserini +test2354 Q0 2122335 2 13.764724 Anserini +test2354 Q0 6454444 3 13.541982 Anserini +test2354 Q0 6454448 4 13.429554 Anserini +test2354 Q0 2122332 5 13.222506 Anserini +test2354 Q0 10175561 6 13.032154 Anserini +test2354 Q0 8924549 7 12.967121 Anserini +test2354 Q0 3910309 8 12.765720 Anserini +test2354 Q0 12455630 9 12.765720 Anserini +test2354 Q0 4519056 10 12.726726 Anserini +test2354 Q0 12455746 11 12.709569 Anserini +test2354 Q0 8924536 12 12.682529 Anserini +test2354 Q0 7793016 13 12.638898 Anserini +test2354 Q0 8924558 14 12.600572 Anserini +test2354 Q0 9992866 15 12.534266 Anserini +test2354 Q0 3954131 16 12.497946 Anserini +test2354 Q0 9992859 17 12.497946 Anserini +test2354 Q0 6449238 18 12.421651 Anserini +test2354 Q0 4659997 19 12.372554 Anserini +test2354 Q0 15884796 20 12.240141 Anserini +test2354 Q0 16485609 21 12.104353 Anserini +test2354 Q0 16002679 22 12.096564 Anserini +test2354 Q0 15768836 23 12.077543 Anserini +test2354 Q0 3936785 24 12.054640 Anserini +test2354 Q0 10475581 25 12.025636 Anserini +test2354 Q0 16459802 26 11.996951 Anserini +test2354 Q0 4145954 27 11.920520 Anserini +test2354 Q0 8924540 28 11.920520 Anserini +test2354 Q0 12455739 29 11.847320 Anserini +test2354 Q0 15884794 30 11.841322 Anserini +test2355 Q0 5540688 1 20.704807 Anserini +test2355 Q0 5540686 2 18.809771 Anserini +test2355 Q0 8459524 3 18.569111 Anserini +test2355 Q0 8459537 4 17.600138 Anserini +test2355 Q0 8459538 5 17.419668 Anserini +test2355 Q0 1422187 6 17.210424 Anserini +test2355 Q0 8459530 7 17.165979 Anserini +test2355 Q0 5540685 8 17.112644 Anserini +test2355 Q0 2193986 9 16.719860 Anserini +test2355 Q0 8459527 10 16.700491 Anserini +test2355 Q0 8459534 11 16.680859 Anserini +test2355 Q0 14064282 12 16.557497 Anserini +test2355 Q0 5540694 13 16.513681 Anserini +test2355 Q0 11903361 14 16.345760 Anserini +test2355 Q0 1435846 15 16.024588 Anserini +test2355 Q0 8459541 16 15.935021 Anserini +test2355 Q0 19572141 17 15.903673 Anserini +test2355 Q0 8459533 18 15.625889 Anserini +test2355 Q0 2193989 19 15.583055 Anserini +test2355 Q0 5540693 20 15.577324 Anserini +test2355 Q0 6165745 21 15.547054 Anserini +test2355 Q0 8459523 22 15.392626 Anserini +test2355 Q0 8459531 23 15.374251 Anserini +test2355 Q0 1729942 24 15.352158 Anserini +test2355 Q0 15837238 25 15.313239 Anserini +test2355 Q0 2281210 26 15.289607 Anserini +test2355 Q0 4942997 27 14.963154 Anserini +test2355 Q0 20348072 28 14.908149 Anserini +test2355 Q0 4756539 29 14.747806 Anserini +test2355 Q0 5609115 30 14.710666 Anserini +test2356 Q0 7783604 1 13.120346 Anserini +test2356 Q0 14277306 2 13.109875 Anserini +test2356 Q0 11518150 3 13.021910 Anserini +test2356 Q0 9561892 4 12.965429 Anserini +test2356 Q0 12419059 5 12.584713 Anserini +test2356 Q0 6350851 6 12.576053 Anserini +test2356 Q0 13303335 7 12.378492 Anserini +test2356 Q0 11914563 8 11.978051 Anserini +test2356 Q0 852231 9 11.886455 Anserini +test2356 Q0 16121928 10 11.874760 Anserini +test2356 Q0 7900048 11 11.642097 Anserini +test2356 Q0 15440489 12 11.623837 Anserini +test2356 Q0 3597884 13 11.603198 Anserini +test2356 Q0 9600083 14 11.567186 Anserini +test2356 Q0 8086487 15 11.558846 Anserini +test2356 Q0 19600475 16 11.544018 Anserini +test2356 Q0 8742169 17 11.532179 Anserini +test2356 Q0 18352384 18 11.398298 Anserini +test2356 Q0 4775619 19 11.384424 Anserini +test2356 Q0 16121929 20 11.341965 Anserini +test2356 Q0 17285175 21 11.308460 Anserini +test2356 Q0 17285172 22 11.308460 Anserini +test2356 Q0 11982216 23 11.291475 Anserini +test2356 Q0 19654596 24 11.271729 Anserini +test2356 Q0 4775621 25 11.232489 Anserini +test2356 Q0 9561895 26 11.154528 Anserini +test2356 Q0 11518149 27 11.066745 Anserini +test2356 Q0 13693556 28 10.932144 Anserini +test2356 Q0 13693557 29 10.932144 Anserini +test2356 Q0 10917969 30 10.785356 Anserini +test2357 Q0 11365086 1 13.573787 Anserini +test2357 Q0 7171027 2 13.263032 Anserini +test2357 Q0 19648542 3 13.044300 Anserini +test2357 Q0 19546334 4 12.991146 Anserini +test2357 Q0 16709124 5 12.779213 Anserini +test2357 Q0 18462780 6 12.709787 Anserini +test2357 Q0 6647289 7 12.674433 Anserini +test2357 Q0 12608601 8 12.663742 Anserini +test2357 Q0 752524 9 12.643120 Anserini +test2357 Q0 19454245 10 12.573709 Anserini +test2357 Q0 16724981 11 12.482499 Anserini +test2357 Q0 19880738 12 12.474195 Anserini +test2357 Q0 17882149 13 12.330801 Anserini +test2357 Q0 18242232 14 12.273303 Anserini +test2357 Q0 16724980 15 12.256935 Anserini +test2357 Q0 3676555 16 12.255446 Anserini +test2357 Q0 18363270 17 12.137611 Anserini +test2357 Q0 20623279 18 12.091245 Anserini +test2357 Q0 20460327 19 12.076606 Anserini +test2357 Q0 16119841 20 12.074236 Anserini +test2357 Q0 16730681 21 12.063310 Anserini +test2357 Q0 9282622 22 12.036779 Anserini +test2357 Q0 3680014 23 12.018045 Anserini +test2357 Q0 6573700 24 12.003316 Anserini +test2357 Q0 19470856 25 11.969235 Anserini +test2357 Q0 16680150 26 11.954329 Anserini +test2357 Q0 3619466 27 11.954329 Anserini +test2357 Q0 11365083 28 11.954329 Anserini +test2357 Q0 11365085 29 11.954329 Anserini +test2357 Q0 19692037 30 11.902078 Anserini +test2358 Q0 19589135 1 12.878616 Anserini +test2358 Q0 19589128 2 12.411682 Anserini +test2358 Q0 19800645 3 12.313455 Anserini +test2358 Q0 16513882 4 12.040065 Anserini +test2358 Q0 18212900 5 11.897938 Anserini +test2358 Q0 18212898 6 11.778351 Anserini +test2358 Q0 17716332 7 11.679648 Anserini +test2358 Q0 16232461 8 11.578507 Anserini +test2358 Q0 11900082 9 11.525518 Anserini +test2358 Q0 16232462 10 11.466485 Anserini +test2358 Q0 15025766 11 11.455069 Anserini +test2358 Q0 6384013 12 11.449165 Anserini +test2358 Q0 16513874 13 11.385197 Anserini +test2358 Q0 11300103 14 11.345079 Anserini +test2358 Q0 4717918 15 11.339664 Anserini +test2358 Q0 19581992 16 11.337212 Anserini +test2358 Q0 18141502 17 11.313274 Anserini +test2358 Q0 16731071 18 11.275967 Anserini +test2358 Q0 15529796 19 11.155332 Anserini +test2358 Q0 4566090 20 11.143127 Anserini +test2358 Q0 2266927 21 11.132442 Anserini +test2358 Q0 17317763 22 11.082486 Anserini +test2358 Q0 3467205 23 11.073406 Anserini +test2358 Q0 19062047 24 11.055212 Anserini +test2358 Q0 9471055 25 11.031736 Anserini +test2358 Q0 8073828 26 11.019954 Anserini +test2358 Q0 5860111 27 11.013533 Anserini +test2358 Q0 17395677 28 10.990338 Anserini +test2358 Q0 13520456 29 10.895926 Anserini +test2358 Q0 13159095 30 10.883337 Anserini +test2359 Q0 12441970 1 19.609447 Anserini +test2359 Q0 17488770 2 19.609447 Anserini +test2359 Q0 19712182 3 19.553371 Anserini +test2359 Q0 19712185 4 18.608946 Anserini +test2359 Q0 19712186 5 18.608946 Anserini +test2359 Q0 17488769 6 18.608946 Anserini +test2359 Q0 19712183 7 18.514477 Anserini +test2359 Q0 12441972 8 18.514477 Anserini +test2359 Q0 19387330 9 18.337948 Anserini +test2359 Q0 14742695 10 16.769402 Anserini +test2359 Q0 19655650 11 16.541229 Anserini +test2359 Q0 19655651 12 16.429455 Anserini +test2359 Q0 700584 13 16.253458 Anserini +test2359 Q0 6845387 14 15.844777 Anserini +test2359 Q0 5637896 15 15.189112 Anserini +test2359 Q0 12462111 16 15.017340 Anserini +test2359 Q0 7822790 17 15.014310 Anserini +test2359 Q0 8242945 18 14.942492 Anserini +test2359 Q0 10382555 19 14.884622 Anserini +test2359 Q0 18173328 20 14.684669 Anserini +test2359 Q0 14859530 21 14.646028 Anserini +test2359 Q0 19712184 22 14.490368 Anserini +test2359 Q0 14268173 23 14.392170 Anserini +test2359 Q0 17431411 24 14.334804 Anserini +test2359 Q0 15514466 25 14.159510 Anserini +test2359 Q0 17521550 26 14.155280 Anserini +test2359 Q0 17008043 27 14.133497 Anserini +test2359 Q0 18366631 28 13.883445 Anserini +test2359 Q0 17008044 29 13.859869 Anserini +test2359 Q0 19946614 30 13.807912 Anserini +test236 Q0 14296873 1 9.144297 Anserini +test236 Q0 16128468 2 9.079208 Anserini +test236 Q0 13778213 3 9.010560 Anserini +test236 Q0 14880688 4 8.909769 Anserini +test236 Q0 9351410 5 8.842712 Anserini +test236 Q0 9351405 6 8.842712 Anserini +test236 Q0 7466250 7 8.837149 Anserini +test236 Q0 7490821 8 8.754961 Anserini +test236 Q0 8418147 9 8.721404 Anserini +test236 Q0 13636747 10 8.647017 Anserini +test236 Q0 13636767 11 8.647017 Anserini +test236 Q0 3369059 12 8.647017 Anserini +test236 Q0 19583890 13 8.575796 Anserini +test236 Q0 8695728 14 8.555990 Anserini +test236 Q0 9475512 15 8.537651 Anserini +test236 Q0 18054127 16 8.532134 Anserini +test236 Q0 14065422 17 8.510574 Anserini +test236 Q0 19746688 18 8.466859 Anserini +test236 Q0 9890888 19 8.446251 Anserini +test236 Q0 5624090 20 8.320538 Anserini +test236 Q0 15733630 21 8.296833 Anserini +test236 Q0 20821184 22 8.279734 Anserini +test236 Q0 18804754 23 8.253899 Anserini +test236 Q0 10499653 24 8.241426 Anserini +test236 Q0 14065426 25 8.234282 Anserini +test236 Q0 17353435 26 8.224631 Anserini +test236 Q0 337444 27 8.209101 Anserini +test236 Q0 18935320 28 8.184534 Anserini +test236 Q0 13484854 29 8.183739 Anserini +test236 Q0 11685081 30 8.178782 Anserini +test2360 Q0 12324149 1 11.768401 Anserini +test2360 Q0 2441437 2 11.594734 Anserini +test2360 Q0 19463730 3 10.895201 Anserini +test2360 Q0 19747712 4 10.402320 Anserini +test2360 Q0 88395 5 10.127725 Anserini +test2360 Q0 2679137 6 9.931497 Anserini +test2360 Q0 18088890 7 9.843978 Anserini +test2360 Q0 9636000 8 9.833046 Anserini +test2360 Q0 4092064 9 9.807880 Anserini +test2360 Q0 1003822 10 9.807880 Anserini +test2360 Q0 12474191 11 9.422672 Anserini +test2360 Q0 7837594 12 9.379280 Anserini +test2360 Q0 4739143 13 9.379280 Anserini +test2360 Q0 13507713 14 9.291883 Anserini +test2360 Q0 13507720 15 9.291883 Anserini +test2360 Q0 15121853 16 9.259160 Anserini +test2360 Q0 13344078 17 9.236267 Anserini +test2360 Q0 15121910 18 9.236267 Anserini +test2360 Q0 4091510 19 9.186295 Anserini +test2360 Q0 4091507 20 9.186295 Anserini +test2360 Q0 256059 21 9.183865 Anserini +test2360 Q0 3495621 22 9.125137 Anserini +test2360 Q0 18813377 23 9.100886 Anserini +test2360 Q0 122422 24 9.056799 Anserini +test2360 Q0 2327301 25 9.040950 Anserini +test2360 Q0 7262499 26 8.878717 Anserini +test2360 Q0 3463157 27 8.874356 Anserini +test2360 Q0 14008379 28 8.864858 Anserini +test2360 Q0 20675298 29 8.861881 Anserini +test2360 Q0 1174378 30 8.856105 Anserini +test2361 Q0 18448857 1 21.343393 Anserini +test2361 Q0 4919124 2 20.233992 Anserini +test2361 Q0 16011346 3 20.083801 Anserini +test2361 Q0 3170929 4 19.609756 Anserini +test2361 Q0 7353013 5 18.836754 Anserini +test2361 Q0 10946271 6 18.718298 Anserini +test2361 Q0 9503182 7 18.658218 Anserini +test2361 Q0 4919123 8 18.651289 Anserini +test2361 Q0 1702701 9 18.565937 Anserini +test2361 Q0 18337460 10 18.406357 Anserini +test2361 Q0 4619523 11 18.170664 Anserini +test2361 Q0 3038466 12 18.086161 Anserini +test2361 Q0 3085687 13 17.944386 Anserini +test2361 Q0 10946015 14 17.723881 Anserini +test2361 Q0 6628064 15 17.719292 Anserini +test2361 Q0 18999721 16 17.601068 Anserini +test2361 Q0 11844058 17 17.466545 Anserini +test2361 Q0 759265 18 17.301949 Anserini +test2361 Q0 15469112 19 17.283642 Anserini +test2361 Q0 20555196 20 17.254227 Anserini +test2361 Q0 15659612 21 17.168179 Anserini +test2361 Q0 6857721 22 17.126890 Anserini +test2361 Q0 484902 23 17.098833 Anserini +test2361 Q0 6671349 24 17.050432 Anserini +test2361 Q0 744627 25 17.038221 Anserini +test2361 Q0 484833 26 16.837921 Anserini +test2361 Q0 484835 27 16.836720 Anserini +test2361 Q0 484921 28 16.789825 Anserini +test2361 Q0 6917314 29 16.773367 Anserini +test2361 Q0 15970643 30 16.634262 Anserini +test2362 Q0 15952152 1 12.745228 Anserini +test2362 Q0 14979415 2 12.520226 Anserini +test2362 Q0 10905334 3 12.358901 Anserini +test2362 Q0 17602991 4 11.485812 Anserini +test2362 Q0 5714646 5 11.380760 Anserini +test2362 Q0 1723400 6 11.356071 Anserini +test2362 Q0 16721345 7 10.967607 Anserini +test2362 Q0 17580490 8 10.700775 Anserini +test2362 Q0 5000844 9 10.613844 Anserini +test2362 Q0 17581235 10 10.471676 Anserini +test2362 Q0 10631840 11 10.453292 Anserini +test2362 Q0 15865082 12 10.416601 Anserini +test2362 Q0 6404124 13 10.312931 Anserini +test2362 Q0 6625610 14 10.191942 Anserini +test2362 Q0 18290824 15 10.166115 Anserini +test2362 Q0 19766152 16 10.166115 Anserini +test2362 Q0 2900349 17 10.134976 Anserini +test2362 Q0 16831278 18 10.133125 Anserini +test2362 Q0 7177013 19 10.080942 Anserini +test2362 Q0 7536879 20 10.013025 Anserini +test2362 Q0 17585263 21 9.977748 Anserini +test2362 Q0 13228334 22 9.977748 Anserini +test2362 Q0 10361686 23 9.925573 Anserini +test2362 Q0 3201767 24 9.832376 Anserini +test2362 Q0 4352585 25 9.816834 Anserini +test2362 Q0 19980606 26 9.740737 Anserini +test2362 Q0 11401317 27 9.708210 Anserini +test2362 Q0 13930391 28 9.659763 Anserini +test2362 Q0 13478320 29 9.646348 Anserini +test2362 Q0 4943433 30 9.608209 Anserini +test2363 Q0 14212706 1 12.831326 Anserini +test2363 Q0 8651969 2 11.841256 Anserini +test2363 Q0 19333715 3 11.702547 Anserini +test2363 Q0 1850817 4 11.422337 Anserini +test2363 Q0 1850820 5 11.418744 Anserini +test2363 Q0 18996340 6 11.339248 Anserini +test2363 Q0 12377740 7 11.299730 Anserini +test2363 Q0 16942655 8 11.093390 Anserini +test2363 Q0 16942654 9 11.005015 Anserini +test2363 Q0 15636340 10 10.791946 Anserini +test2363 Q0 15438116 11 10.718108 Anserini +test2363 Q0 17523566 12 10.684845 Anserini +test2363 Q0 4548020 13 10.684845 Anserini +test2363 Q0 14194506 14 10.639231 Anserini +test2363 Q0 18707197 15 10.577091 Anserini +test2363 Q0 11798598 16 10.558440 Anserini +test2363 Q0 19333714 17 10.548764 Anserini +test2363 Q0 6673835 18 10.526654 Anserini +test2363 Q0 18707195 19 10.514971 Anserini +test2363 Q0 19125673 20 10.502131 Anserini +test2363 Q0 14981869 21 10.373081 Anserini +test2363 Q0 14798304 22 10.356256 Anserini +test2363 Q0 7021932 23 10.299372 Anserini +test2363 Q0 15427650 24 10.287216 Anserini +test2363 Q0 4348827 25 10.244416 Anserini +test2363 Q0 6876128 26 10.228911 Anserini +test2363 Q0 14212716 27 10.105644 Anserini +test2363 Q0 17926138 28 10.093742 Anserini +test2363 Q0 20690554 29 10.057537 Anserini +test2363 Q0 19066458 30 10.041889 Anserini +test2364 Q0 4680981 1 11.818411 Anserini +test2364 Q0 183634 2 11.548262 Anserini +test2364 Q0 9059158 3 11.542468 Anserini +test2364 Q0 20920807 4 11.542411 Anserini +test2364 Q0 183558 5 11.498000 Anserini +test2364 Q0 2544226 6 11.057305 Anserini +test2364 Q0 14551554 7 11.025705 Anserini +test2364 Q0 6544309 8 10.913554 Anserini +test2364 Q0 7133552 9 10.885074 Anserini +test2364 Q0 183605 10 10.859886 Anserini +test2364 Q0 6589400 11 10.779955 Anserini +test2364 Q0 8186576 12 10.711830 Anserini +test2364 Q0 171722 13 10.672388 Anserini +test2364 Q0 1850920 14 10.672237 Anserini +test2364 Q0 1214783 15 10.666474 Anserini +test2364 Q0 6589427 16 10.666474 Anserini +test2364 Q0 183683 17 10.633238 Anserini +test2364 Q0 20780062 18 10.586358 Anserini +test2364 Q0 10464513 19 10.432283 Anserini +test2364 Q0 3344552 20 10.428576 Anserini +test2364 Q0 15526150 21 10.404500 Anserini +test2364 Q0 12895367 22 10.399307 Anserini +test2364 Q0 2450478 23 10.334475 Anserini +test2364 Q0 24012 24 10.327631 Anserini +test2364 Q0 15357914 25 10.320541 Anserini +test2364 Q0 15765421 26 10.310418 Anserini +test2364 Q0 4060978 27 10.188559 Anserini +test2364 Q0 5704599 28 10.187884 Anserini +test2364 Q0 26593 29 10.163161 Anserini +test2364 Q0 13541576 30 10.126351 Anserini +test2365 Q0 5084105 1 13.788072 Anserini +test2365 Q0 5084106 2 12.740110 Anserini +test2365 Q0 13773160 3 12.601627 Anserini +test2365 Q0 1742569 4 11.459505 Anserini +test2365 Q0 7898764 5 10.337503 Anserini +test2365 Q0 8752476 6 10.303816 Anserini +test2365 Q0 13600108 7 10.263452 Anserini +test2365 Q0 5730706 8 10.008329 Anserini +test2365 Q0 17283435 9 9.970620 Anserini +test2365 Q0 6906207 10 9.951961 Anserini +test2365 Q0 3935782 11 9.948468 Anserini +test2365 Q0 8069304 12 9.913461 Anserini +test2365 Q0 3853892 13 9.878513 Anserini +test2365 Q0 3396529 14 9.853709 Anserini +test2365 Q0 13114733 15 9.743423 Anserini +test2365 Q0 18818588 16 9.743423 Anserini +test2365 Q0 3935788 17 9.704930 Anserini +test2365 Q0 6927320 18 9.702958 Anserini +test2365 Q0 1475752 19 9.648712 Anserini +test2365 Q0 8677936 20 9.641628 Anserini +test2365 Q0 8235969 21 9.593670 Anserini +test2365 Q0 12208821 22 9.538414 Anserini +test2365 Q0 3853895 23 9.527707 Anserini +test2365 Q0 8235970 24 9.511838 Anserini +test2365 Q0 6290904 25 9.383194 Anserini +test2365 Q0 15286083 26 9.359541 Anserini +test2365 Q0 17833861 27 9.326992 Anserini +test2365 Q0 6290905 28 9.323658 Anserini +test2365 Q0 18158558 29 9.280541 Anserini +test2365 Q0 5277127 30 9.238046 Anserini +test2366 Q0 3558668 1 11.477842 Anserini +test2366 Q0 3558669 2 10.849718 Anserini +test2366 Q0 3558663 3 10.849718 Anserini +test2366 Q0 6880058 4 10.742643 Anserini +test2366 Q0 16062294 5 10.530048 Anserini +test2366 Q0 2167903 6 10.113482 Anserini +test2366 Q0 1909198 7 9.980797 Anserini +test2366 Q0 14898900 8 9.950846 Anserini +test2366 Q0 8865803 9 9.840302 Anserini +test2366 Q0 1707344 10 9.777567 Anserini +test2366 Q0 4857554 11 9.769447 Anserini +test2366 Q0 3816050 12 9.731119 Anserini +test2366 Q0 4831149 13 9.684545 Anserini +test2366 Q0 398495 14 9.575081 Anserini +test2366 Q0 3816053 15 9.575081 Anserini +test2366 Q0 11821324 16 9.575081 Anserini +test2366 Q0 748287 17 9.521714 Anserini +test2366 Q0 2488454 18 9.503724 Anserini +test2366 Q0 3816062 19 9.466678 Anserini +test2366 Q0 17485619 20 9.105202 Anserini +test2366 Q0 17991829 21 9.036115 Anserini +test2366 Q0 13717301 22 8.982695 Anserini +test2366 Q0 16062289 23 8.937431 Anserini +test2366 Q0 6880065 24 8.822374 Anserini +test2366 Q0 2605234 25 8.781294 Anserini +test2366 Q0 12786874 26 8.671514 Anserini +test2366 Q0 14240090 27 8.576481 Anserini +test2366 Q0 2167885 28 8.576481 Anserini +test2366 Q0 19974404 29 8.459810 Anserini +test2366 Q0 2608656 30 8.459810 Anserini +test2367 Q0 7993836 1 20.601751 Anserini +test2367 Q0 14338704 2 20.509756 Anserini +test2367 Q0 7993839 3 20.027216 Anserini +test2367 Q0 2957170 4 17.746445 Anserini +test2367 Q0 14452384 5 17.643845 Anserini +test2367 Q0 13443206 6 17.486084 Anserini +test2367 Q0 20158702 7 17.342800 Anserini +test2367 Q0 15321852 8 17.145445 Anserini +test2367 Q0 13443208 9 16.745510 Anserini +test2367 Q0 8502826 10 16.725842 Anserini +test2367 Q0 7703941 11 16.675497 Anserini +test2367 Q0 20158730 12 16.558502 Anserini +test2367 Q0 14452380 13 16.541424 Anserini +test2367 Q0 19213760 14 16.541088 Anserini +test2367 Q0 13182220 15 16.484180 Anserini +test2367 Q0 2107454 16 16.475090 Anserini +test2367 Q0 2107448 17 16.317318 Anserini +test2367 Q0 9698875 18 16.261326 Anserini +test2367 Q0 13076659 19 16.240112 Anserini +test2367 Q0 15968224 20 16.198919 Anserini +test2367 Q0 9106726 21 16.183807 Anserini +test2367 Q0 13182213 22 16.091286 Anserini +test2367 Q0 3138194 23 16.057636 Anserini +test2367 Q0 3477650 24 16.024546 Anserini +test2367 Q0 9386575 25 15.946535 Anserini +test2367 Q0 17868205 26 15.944981 Anserini +test2367 Q0 20158711 27 15.883002 Anserini +test2367 Q0 14275595 28 15.823689 Anserini +test2367 Q0 6334326 29 15.664598 Anserini +test2367 Q0 18559426 30 15.586823 Anserini +test2368 Q0 8824802 1 11.572515 Anserini +test2368 Q0 1289211 2 11.484381 Anserini +test2368 Q0 4144520 3 11.475726 Anserini +test2368 Q0 12770383 4 11.418694 Anserini +test2368 Q0 187366 5 11.168321 Anserini +test2368 Q0 2255046 6 11.128672 Anserini +test2368 Q0 9668427 7 11.000893 Anserini +test2368 Q0 4224875 8 10.842568 Anserini +test2368 Q0 1863913 9 10.758726 Anserini +test2368 Q0 6670317 10 10.745594 Anserini +test2368 Q0 454857 11 10.745379 Anserini +test2368 Q0 12770384 12 10.711894 Anserini +test2368 Q0 8838382 13 10.711483 Anserini +test2368 Q0 2009502 14 10.701261 Anserini +test2368 Q0 20314891 15 10.673169 Anserini +test2368 Q0 1563069 16 10.545338 Anserini +test2368 Q0 20086419 17 10.451905 Anserini +test2368 Q0 187363 18 10.442343 Anserini +test2368 Q0 11939649 19 10.422195 Anserini +test2368 Q0 7333062 20 10.387710 Anserini +test2368 Q0 9683294 21 10.362517 Anserini +test2368 Q0 3019435 22 10.329124 Anserini +test2368 Q0 1289206 23 10.303549 Anserini +test2368 Q0 14856241 24 10.279496 Anserini +test2368 Q0 11274096 25 10.275431 Anserini +test2368 Q0 3045768 26 10.272907 Anserini +test2368 Q0 18946064 27 10.179358 Anserini +test2368 Q0 7309165 28 10.153849 Anserini +test2368 Q0 815676 29 10.148084 Anserini +test2368 Q0 11923613 30 10.146040 Anserini +test2369 Q0 19158601 1 13.338731 Anserini +test2369 Q0 765059 2 12.670233 Anserini +test2369 Q0 191130 3 12.443123 Anserini +test2369 Q0 10230681 4 11.325569 Anserini +test2369 Q0 9962857 5 10.852855 Anserini +test2369 Q0 1626030 6 10.736625 Anserini +test2369 Q0 6523488 7 10.725140 Anserini +test2369 Q0 765068 8 10.718729 Anserini +test2369 Q0 765061 9 10.688608 Anserini +test2369 Q0 13721381 10 10.669925 Anserini +test2369 Q0 17331066 11 10.621464 Anserini +test2369 Q0 6218988 12 10.426346 Anserini +test2369 Q0 9461693 13 10.418909 Anserini +test2369 Q0 114053 14 10.348854 Anserini +test2369 Q0 555421 15 10.267451 Anserini +test2369 Q0 13947528 16 10.172677 Anserini +test2369 Q0 12439836 17 10.073626 Anserini +test2369 Q0 13445194 18 10.039560 Anserini +test2369 Q0 14197956 19 9.965256 Anserini +test2369 Q0 6523491 20 9.965256 Anserini +test2369 Q0 14197955 21 9.965256 Anserini +test2369 Q0 15048287 22 9.936182 Anserini +test2369 Q0 1033628 23 9.894383 Anserini +test2369 Q0 13947531 24 9.843560 Anserini +test2369 Q0 4950022 25 9.820300 Anserini +test2369 Q0 15329173 26 9.757631 Anserini +test2369 Q0 669030 27 9.700827 Anserini +test2369 Q0 4067544 28 9.691142 Anserini +test2369 Q0 13568797 29 9.681148 Anserini +test2369 Q0 6918049 30 9.680390 Anserini +test237 Q0 2035590 1 19.409315 Anserini +test237 Q0 9473043 2 17.399044 Anserini +test237 Q0 2035585 3 16.902624 Anserini +test237 Q0 16774291 4 16.268658 Anserini +test237 Q0 17063325 5 15.445139 Anserini +test237 Q0 9473049 6 15.342747 Anserini +test237 Q0 9473050 7 14.215200 Anserini +test237 Q0 2530834 8 13.939913 Anserini +test237 Q0 9473044 9 13.825747 Anserini +test237 Q0 14525568 10 13.259672 Anserini +test237 Q0 9473041 11 13.254403 Anserini +test237 Q0 13321756 12 13.239714 Anserini +test237 Q0 20157069 13 13.050255 Anserini +test237 Q0 12848221 14 12.912967 Anserini +test237 Q0 16087875 15 12.687243 Anserini +test237 Q0 9574269 16 12.496600 Anserini +test237 Q0 9685892 17 12.362289 Anserini +test237 Q0 15858897 18 12.274058 Anserini +test237 Q0 4172717 19 12.243807 Anserini +test237 Q0 9452697 20 12.241145 Anserini +test237 Q0 9473047 21 12.237277 Anserini +test237 Q0 16587740 22 11.984273 Anserini +test237 Q0 1786058 23 11.938406 Anserini +test237 Q0 9603388 24 11.933450 Anserini +test237 Q0 15249045 25 11.922843 Anserini +test237 Q0 13744042 26 11.910432 Anserini +test237 Q0 5746553 27 11.872526 Anserini +test237 Q0 4417775 28 11.804122 Anserini +test237 Q0 18646433 29 11.777031 Anserini +test237 Q0 17380679 30 11.743348 Anserini +test2370 Q0 15002784 1 16.488047 Anserini +test2370 Q0 14151778 2 16.435915 Anserini +test2370 Q0 7542761 3 16.001793 Anserini +test2370 Q0 7345558 4 15.908769 Anserini +test2370 Q0 19691549 5 15.892262 Anserini +test2370 Q0 20494571 6 15.813064 Anserini +test2370 Q0 19984718 7 15.809314 Anserini +test2370 Q0 6402615 8 15.798391 Anserini +test2370 Q0 19450002 9 15.766832 Anserini +test2370 Q0 19450004 10 15.756073 Anserini +test2370 Q0 7058652 11 15.734192 Anserini +test2370 Q0 18672958 12 15.708094 Anserini +test2370 Q0 17864534 13 15.660082 Anserini +test2370 Q0 20860374 14 15.652633 Anserini +test2370 Q0 11719879 15 15.437907 Anserini +test2370 Q0 20485062 16 15.425645 Anserini +test2370 Q0 20485063 17 15.425645 Anserini +test2370 Q0 12576697 18 15.400576 Anserini +test2370 Q0 16832564 19 15.344773 Anserini +test2370 Q0 19984724 20 15.214700 Anserini +test2370 Q0 20448166 21 15.208554 Anserini +test2370 Q0 20367270 22 15.172199 Anserini +test2370 Q0 19450034 23 15.022801 Anserini +test2370 Q0 20367271 24 14.986634 Anserini +test2370 Q0 20432552 25 14.946855 Anserini +test2370 Q0 80674 26 14.932327 Anserini +test2370 Q0 20982835 27 14.815897 Anserini +test2370 Q0 20860378 28 14.717944 Anserini +test2370 Q0 16106121 29 14.592299 Anserini +test2370 Q0 2773359 30 14.490976 Anserini +test2371 Q0 9835053 1 15.271668 Anserini +test2371 Q0 15923506 2 14.871664 Anserini +test2371 Q0 16709294 3 14.655491 Anserini +test2371 Q0 14912236 4 14.569724 Anserini +test2371 Q0 19017911 5 14.513920 Anserini +test2371 Q0 10709675 6 14.028271 Anserini +test2371 Q0 9785876 7 14.017709 Anserini +test2371 Q0 14273665 8 13.956964 Anserini +test2371 Q0 18790625 9 13.906193 Anserini +test2371 Q0 12441127 10 13.872777 Anserini +test2371 Q0 9120859 11 13.792848 Anserini +test2371 Q0 8949667 12 13.789315 Anserini +test2371 Q0 2507343 13 13.677496 Anserini +test2371 Q0 6166095 14 13.605237 Anserini +test2371 Q0 16716200 15 13.560561 Anserini +test2371 Q0 4961070 16 13.490111 Anserini +test2371 Q0 19653755 17 13.442306 Anserini +test2371 Q0 14105729 18 13.239859 Anserini +test2371 Q0 16341818 19 13.051238 Anserini +test2371 Q0 9835044 20 12.943981 Anserini +test2371 Q0 15610252 21 12.871412 Anserini +test2371 Q0 9049679 22 12.847391 Anserini +test2371 Q0 3189807 23 12.843366 Anserini +test2371 Q0 17440844 24 12.812281 Anserini +test2371 Q0 18012845 25 12.776817 Anserini +test2371 Q0 10569931 26 12.730401 Anserini +test2371 Q0 11484767 27 12.719790 Anserini +test2371 Q0 8247183 28 12.664498 Anserini +test2371 Q0 18040053 29 12.626552 Anserini +test2371 Q0 8651620 30 12.610384 Anserini +test2372 Q0 1383493 1 20.191044 Anserini +test2372 Q0 1383482 2 19.403912 Anserini +test2372 Q0 1383488 3 18.793751 Anserini +test2372 Q0 1383492 4 18.626999 Anserini +test2372 Q0 11643631 5 17.716263 Anserini +test2372 Q0 1383486 6 17.657192 Anserini +test2372 Q0 11643638 7 17.624195 Anserini +test2372 Q0 1383490 8 17.299078 Anserini +test2372 Q0 17696456 9 17.290386 Anserini +test2372 Q0 16773902 10 17.049761 Anserini +test2372 Q0 1383487 11 16.905975 Anserini +test2372 Q0 16773897 12 16.855837 Anserini +test2372 Q0 16773901 13 16.798536 Anserini +test2372 Q0 13211483 14 16.549435 Anserini +test2372 Q0 1383483 15 16.520149 Anserini +test2372 Q0 1383485 16 16.515530 Anserini +test2372 Q0 13211475 17 16.452370 Anserini +test2372 Q0 11643637 18 16.233450 Anserini +test2372 Q0 1042216 19 15.685234 Anserini +test2372 Q0 1383489 20 15.573523 Anserini +test2372 Q0 1383491 21 15.400906 Anserini +test2372 Q0 9935658 22 15.368579 Anserini +test2372 Q0 18941551 23 15.109762 Anserini +test2372 Q0 2730401 24 14.899993 Anserini +test2372 Q0 3894438 25 14.373834 Anserini +test2372 Q0 14316904 26 14.373834 Anserini +test2372 Q0 14316905 27 14.253739 Anserini +test2372 Q0 8371301 28 14.252216 Anserini +test2372 Q0 7314663 29 14.190483 Anserini +test2372 Q0 2855432 30 13.973968 Anserini +test2373 Q0 11796232 1 16.363852 Anserini +test2373 Q0 7199557 2 15.845161 Anserini +test2373 Q0 11796233 3 15.567174 Anserini +test2373 Q0 12991318 4 15.337887 Anserini +test2373 Q0 14298898 5 15.229157 Anserini +test2373 Q0 14904422 6 15.224033 Anserini +test2373 Q0 450842 7 15.124218 Anserini +test2373 Q0 13655350 8 15.109138 Anserini +test2373 Q0 13655359 9 14.933884 Anserini +test2373 Q0 9888188 10 14.915220 Anserini +test2373 Q0 7941185 11 14.772497 Anserini +test2373 Q0 14904424 12 14.647627 Anserini +test2373 Q0 17375354 13 14.644304 Anserini +test2373 Q0 16077194 14 14.592530 Anserini +test2373 Q0 9830638 15 14.501314 Anserini +test2373 Q0 15575479 16 14.462087 Anserini +test2373 Q0 5412088 17 14.458795 Anserini +test2373 Q0 17879993 18 14.258965 Anserini +test2373 Q0 18908365 19 14.255198 Anserini +test2373 Q0 16415809 20 14.206512 Anserini +test2373 Q0 3544678 21 14.154521 Anserini +test2373 Q0 160961 22 14.153341 Anserini +test2373 Q0 11796228 23 14.136034 Anserini +test2373 Q0 160940 24 13.943444 Anserini +test2373 Q0 16415801 25 13.913545 Anserini +test2373 Q0 3544691 26 13.905660 Anserini +test2373 Q0 16415825 27 13.904924 Anserini +test2373 Q0 20735094 28 13.852955 Anserini +test2373 Q0 15825390 29 13.831428 Anserini +test2373 Q0 19420999 30 13.823639 Anserini +test2374 Q0 16497153 1 14.512434 Anserini +test2374 Q0 16497155 2 14.000556 Anserini +test2374 Q0 16497162 3 13.334399 Anserini +test2374 Q0 4663 4 13.319306 Anserini +test2374 Q0 15660987 5 12.530178 Anserini +test2374 Q0 13520447 6 12.153172 Anserini +test2374 Q0 8342671 7 11.982607 Anserini +test2374 Q0 9727185 8 11.932696 Anserini +test2374 Q0 7697898 9 11.927226 Anserini +test2374 Q0 16497163 10 11.913864 Anserini +test2374 Q0 10840665 11 11.705079 Anserini +test2374 Q0 14089451 12 11.684830 Anserini +test2374 Q0 13520449 13 11.641485 Anserini +test2374 Q0 8335977 14 11.631383 Anserini +test2374 Q0 15660986 15 11.474172 Anserini +test2374 Q0 3172464 16 11.427600 Anserini +test2374 Q0 16497154 17 11.350766 Anserini +test2374 Q0 8335990 18 11.048100 Anserini +test2374 Q0 8638429 19 10.888393 Anserini +test2374 Q0 14398669 20 10.888393 Anserini +test2374 Q0 879898 21 10.887271 Anserini +test2374 Q0 4786469 22 10.859142 Anserini +test2374 Q0 14398667 23 10.777144 Anserini +test2374 Q0 10840679 24 10.750055 Anserini +test2374 Q0 15660985 25 10.692520 Anserini +test2374 Q0 8499801 26 10.647371 Anserini +test2374 Q0 18987085 27 10.487807 Anserini +test2374 Q0 10840671 28 10.445837 Anserini +test2374 Q0 14398670 29 10.445837 Anserini +test2374 Q0 8499799 30 10.437165 Anserini +test2375 Q0 309007 1 14.711898 Anserini +test2375 Q0 7064037 2 13.051201 Anserini +test2375 Q0 7064047 3 13.051201 Anserini +test2375 Q0 4494556 4 12.975792 Anserini +test2375 Q0 7345913 5 12.791144 Anserini +test2375 Q0 7240522 6 12.732297 Anserini +test2375 Q0 13674780 7 12.527582 Anserini +test2375 Q0 19798289 8 12.522238 Anserini +test2375 Q0 19798294 9 12.522238 Anserini +test2375 Q0 14601821 10 12.283039 Anserini +test2375 Q0 14601818 11 12.283039 Anserini +test2375 Q0 13674783 12 12.259173 Anserini +test2375 Q0 16107631 13 12.194117 Anserini +test2375 Q0 9272826 14 12.186408 Anserini +test2375 Q0 6219274 15 12.043911 Anserini +test2375 Q0 7611109 16 12.022334 Anserini +test2375 Q0 16757254 17 12.021308 Anserini +test2375 Q0 19877301 18 12.020640 Anserini +test2375 Q0 20493621 19 11.961410 Anserini +test2375 Q0 7230533 20 11.902995 Anserini +test2375 Q0 8910736 21 11.893441 Anserini +test2375 Q0 4319831 22 11.804624 Anserini +test2375 Q0 17412332 23 11.780784 Anserini +test2375 Q0 14832124 24 11.780090 Anserini +test2375 Q0 16315967 25 11.776623 Anserini +test2375 Q0 2112613 26 11.761168 Anserini +test2375 Q0 15380645 27 11.756625 Anserini +test2375 Q0 18852702 28 11.752308 Anserini +test2375 Q0 18537808 29 11.747965 Anserini +test2375 Q0 12657192 30 11.689118 Anserini +test2376 Q0 1755321 1 17.977016 Anserini +test2376 Q0 8025456 2 16.542629 Anserini +test2376 Q0 1755322 3 15.972659 Anserini +test2376 Q0 655118 4 15.711971 Anserini +test2376 Q0 6108310 5 15.438679 Anserini +test2376 Q0 655024 6 15.241370 Anserini +test2376 Q0 1755269 7 15.158186 Anserini +test2376 Q0 655111 8 15.039621 Anserini +test2376 Q0 6108311 9 14.984154 Anserini +test2376 Q0 655117 10 14.928875 Anserini +test2376 Q0 1243945 11 14.906757 Anserini +test2376 Q0 1755326 12 14.890148 Anserini +test2376 Q0 13843937 13 14.802155 Anserini +test2376 Q0 1755313 14 14.741321 Anserini +test2376 Q0 913043 15 14.585256 Anserini +test2376 Q0 1755315 16 14.482722 Anserini +test2376 Q0 911099 17 14.338745 Anserini +test2376 Q0 8627288 18 14.135291 Anserini +test2376 Q0 16550401 19 14.104323 Anserini +test2376 Q0 19529630 20 14.082252 Anserini +test2376 Q0 5934645 21 14.062023 Anserini +test2376 Q0 1755317 22 14.052452 Anserini +test2376 Q0 1755323 23 14.037134 Anserini +test2376 Q0 16274407 24 14.021493 Anserini +test2376 Q0 16020758 25 14.012554 Anserini +test2376 Q0 14148580 26 14.006206 Anserini +test2376 Q0 5934643 27 13.963157 Anserini +test2376 Q0 15659577 28 13.963157 Anserini +test2376 Q0 655112 29 13.950741 Anserini +test2376 Q0 12937672 30 13.930519 Anserini +test2377 Q0 19735105 1 19.324865 Anserini +test2377 Q0 19735111 2 17.284687 Anserini +test2377 Q0 18509403 3 17.057491 Anserini +test2377 Q0 18509412 4 16.578676 Anserini +test2377 Q0 19735107 5 16.382095 Anserini +test2377 Q0 19504260 6 16.171457 Anserini +test2377 Q0 19504256 7 16.164553 Anserini +test2377 Q0 5323180 8 16.102045 Anserini +test2377 Q0 3514821 9 15.972173 Anserini +test2377 Q0 3514823 10 15.949867 Anserini +test2377 Q0 7036028 11 15.840691 Anserini +test2377 Q0 20130469 12 15.757318 Anserini +test2377 Q0 3514822 13 15.745234 Anserini +test2377 Q0 19553380 14 15.721099 Anserini +test2377 Q0 2068917 15 15.489758 Anserini +test2377 Q0 3768789 16 15.397773 Anserini +test2377 Q0 5323179 17 15.284004 Anserini +test2377 Q0 3769145 18 15.024891 Anserini +test2377 Q0 19735110 19 14.919952 Anserini +test2377 Q0 3514825 20 14.824663 Anserini +test2377 Q0 20564988 21 14.809964 Anserini +test2377 Q0 10238062 22 14.804703 Anserini +test2377 Q0 7856385 23 14.736889 Anserini +test2377 Q0 8261755 24 14.675974 Anserini +test2377 Q0 5323170 25 14.665667 Anserini +test2377 Q0 1842001 26 14.558365 Anserini +test2377 Q0 3760186 27 14.522444 Anserini +test2377 Q0 11204824 28 14.375859 Anserini +test2377 Q0 8261809 29 14.370795 Anserini +test2377 Q0 19438296 30 14.362386 Anserini +test2378 Q0 14772662 1 25.303978 Anserini +test2378 Q0 1891124 2 19.772198 Anserini +test2378 Q0 1979452 3 17.830423 Anserini +test2378 Q0 2042785 4 17.408659 Anserini +test2378 Q0 1891123 5 16.444139 Anserini +test2378 Q0 1979451 6 16.390778 Anserini +test2378 Q0 7534324 7 16.367340 Anserini +test2378 Q0 7533781 8 15.754503 Anserini +test2378 Q0 1891098 9 15.324651 Anserini +test2378 Q0 1979457 10 14.984122 Anserini +test2378 Q0 17012537 11 14.930439 Anserini +test2378 Q0 4369843 12 14.706304 Anserini +test2378 Q0 1979453 13 14.331039 Anserini +test2378 Q0 1979447 14 14.233701 Anserini +test2378 Q0 1979450 15 14.173659 Anserini +test2378 Q0 1891126 16 14.096345 Anserini +test2378 Q0 1891125 17 13.963022 Anserini +test2378 Q0 1979445 18 13.927468 Anserini +test2378 Q0 15043258 19 13.889903 Anserini +test2378 Q0 9985500 20 13.736259 Anserini +test2378 Q0 20588255 21 13.585179 Anserini +test2378 Q0 1979454 22 13.581715 Anserini +test2378 Q0 20358230 23 13.401982 Anserini +test2378 Q0 19272093 24 13.397579 Anserini +test2378 Q0 12960312 25 13.397579 Anserini +test2378 Q0 10614845 26 13.397579 Anserini +test2378 Q0 8984838 27 13.358227 Anserini +test2378 Q0 1891127 28 13.206093 Anserini +test2378 Q0 20365324 29 13.197489 Anserini +test2378 Q0 7375456 30 13.154676 Anserini +test2379 Q0 13015044 1 14.576973 Anserini +test2379 Q0 8438646 2 14.505746 Anserini +test2379 Q0 7263188 3 14.236971 Anserini +test2379 Q0 18961389 4 13.506561 Anserini +test2379 Q0 20885216 5 13.372406 Anserini +test2379 Q0 16154897 6 13.286347 Anserini +test2379 Q0 11858387 7 13.171590 Anserini +test2379 Q0 11390200 8 13.116945 Anserini +test2379 Q0 17987463 9 13.007179 Anserini +test2379 Q0 1068434 10 12.972335 Anserini +test2379 Q0 5971796 11 12.930564 Anserini +test2379 Q0 20863556 12 12.854375 Anserini +test2379 Q0 11390203 13 12.758213 Anserini +test2379 Q0 16024146 14 12.740817 Anserini +test2379 Q0 16316869 15 12.681798 Anserini +test2379 Q0 16380555 16 12.665180 Anserini +test2379 Q0 5996296 17 12.662779 Anserini +test2379 Q0 537117 18 12.650402 Anserini +test2379 Q0 11390187 19 12.628819 Anserini +test2379 Q0 15766750 20 12.615086 Anserini +test2379 Q0 9030262 21 12.555089 Anserini +test2379 Q0 20885202 22 12.492939 Anserini +test2379 Q0 18033300 23 12.489654 Anserini +test2379 Q0 850747 24 12.480445 Anserini +test2379 Q0 658012 25 12.460393 Anserini +test2379 Q0 4049553 26 12.405695 Anserini +test2379 Q0 9416772 27 12.397606 Anserini +test2379 Q0 17452792 28 12.393257 Anserini +test2379 Q0 11390219 29 12.386992 Anserini +test2379 Q0 14804102 30 12.379350 Anserini +test238 Q0 977062 1 15.394561 Anserini +test238 Q0 18978189 2 15.349630 Anserini +test238 Q0 19646276 3 14.667910 Anserini +test238 Q0 14865610 4 14.320353 Anserini +test238 Q0 14865615 5 14.320353 Anserini +test238 Q0 977051 6 14.054234 Anserini +test238 Q0 853908 7 14.007729 Anserini +test238 Q0 17727989 8 13.999649 Anserini +test238 Q0 2148149 9 13.940161 Anserini +test238 Q0 12647152 10 13.930758 Anserini +test238 Q0 12647154 11 13.879244 Anserini +test238 Q0 8656152 12 13.809395 Anserini +test238 Q0 13696618 13 13.781320 Anserini +test238 Q0 10529733 14 13.708576 Anserini +test238 Q0 16374129 15 13.672157 Anserini +test238 Q0 13696620 16 13.647319 Anserini +test238 Q0 15529273 17 13.616326 Anserini +test238 Q0 19795802 18 13.586772 Anserini +test238 Q0 12299455 19 13.578983 Anserini +test238 Q0 12299453 20 13.521916 Anserini +test238 Q0 15137645 21 13.421089 Anserini +test238 Q0 7197816 22 13.420725 Anserini +test238 Q0 6455407 23 13.420551 Anserini +test238 Q0 14476096 24 13.380513 Anserini +test238 Q0 16966155 25 13.355007 Anserini +test238 Q0 12361208 26 13.346014 Anserini +test238 Q0 20398588 27 13.334781 Anserini +test238 Q0 17813127 28 13.333375 Anserini +test238 Q0 977052 29 13.324960 Anserini +test238 Q0 13950367 30 13.323484 Anserini +test2380 Q0 3153851 1 27.873844 Anserini +test2380 Q0 3153828 2 26.842089 Anserini +test2380 Q0 3153854 3 26.729509 Anserini +test2380 Q0 4543573 4 25.271637 Anserini +test2380 Q0 16679409 5 24.702509 Anserini +test2380 Q0 18375174 6 23.200079 Anserini +test2380 Q0 7696632 7 21.760981 Anserini +test2380 Q0 18472318 8 20.401123 Anserini +test2380 Q0 3153853 9 20.056465 Anserini +test2380 Q0 3226420 10 19.895565 Anserini +test2380 Q0 3153852 11 19.869244 Anserini +test2380 Q0 8898479 12 19.601667 Anserini +test2380 Q0 13225263 13 19.574947 Anserini +test2380 Q0 485528 14 19.481047 Anserini +test2380 Q0 18939033 15 17.708729 Anserini +test2380 Q0 3153855 16 17.657019 Anserini +test2380 Q0 2011387 17 17.482752 Anserini +test2380 Q0 18375177 18 16.812674 Anserini +test2380 Q0 909357 19 16.812674 Anserini +test2380 Q0 621417 20 16.751659 Anserini +test2380 Q0 19749522 21 16.633802 Anserini +test2380 Q0 3153841 22 16.458698 Anserini +test2380 Q0 9124021 23 15.911198 Anserini +test2380 Q0 3153850 24 15.908030 Anserini +test2380 Q0 3153840 25 15.866638 Anserini +test2380 Q0 17840607 26 15.802553 Anserini +test2380 Q0 5206867 27 15.579997 Anserini +test2380 Q0 6392967 28 15.579691 Anserini +test2380 Q0 19915936 29 15.579691 Anserini +test2380 Q0 17840608 30 15.474471 Anserini +test2381 Q0 10191154 1 13.208351 Anserini +test2381 Q0 3575106 2 13.144703 Anserini +test2381 Q0 4563152 3 12.930285 Anserini +test2381 Q0 15187916 4 12.312697 Anserini +test2381 Q0 15187913 5 12.285940 Anserini +test2381 Q0 3208059 6 12.222292 Anserini +test2381 Q0 15022787 7 12.027271 Anserini +test2381 Q0 6644842 8 11.923478 Anserini +test2381 Q0 8901401 9 11.843610 Anserini +test2381 Q0 8793021 10 11.676329 Anserini +test2381 Q0 10191155 11 11.478997 Anserini +test2381 Q0 4563138 12 11.266283 Anserini +test2381 Q0 8793022 13 11.153524 Anserini +test2381 Q0 18156273 14 11.066498 Anserini +test2381 Q0 3358191 15 11.033716 Anserini +test2381 Q0 3860078 16 10.926706 Anserini +test2381 Q0 17500614 17 10.903764 Anserini +test2381 Q0 5322339 18 10.843522 Anserini +test2381 Q0 17306685 19 10.821801 Anserini +test2381 Q0 2260682 20 10.736263 Anserini +test2381 Q0 9617877 21 10.556586 Anserini +test2381 Q0 1904448 22 10.556586 Anserini +test2381 Q0 10708620 23 10.528126 Anserini +test2381 Q0 8519646 24 10.467051 Anserini +test2381 Q0 11678411 25 10.449466 Anserini +test2381 Q0 1534440 26 10.444273 Anserini +test2381 Q0 351898 27 10.387080 Anserini +test2381 Q0 537201 28 10.336155 Anserini +test2381 Q0 20478045 29 10.334327 Anserini +test2381 Q0 10348632 30 10.334327 Anserini +test2382 Q0 1125012 1 13.247998 Anserini +test2382 Q0 12762579 2 12.731406 Anserini +test2382 Q0 945361 3 12.725554 Anserini +test2382 Q0 8227987 4 12.685153 Anserini +test2382 Q0 12762577 5 12.624403 Anserini +test2382 Q0 8227988 6 12.131662 Anserini +test2382 Q0 8938942 7 11.950607 Anserini +test2382 Q0 15189943 8 11.760170 Anserini +test2382 Q0 375295 9 11.670692 Anserini +test2382 Q0 20943951 10 11.646194 Anserini +test2382 Q0 16046299 11 11.615729 Anserini +test2382 Q0 8226574 12 11.569821 Anserini +test2382 Q0 14106012 13 11.555272 Anserini +test2382 Q0 13920923 14 11.514657 Anserini +test2382 Q0 5071080 15 11.495627 Anserini +test2382 Q0 3813300 16 11.412403 Anserini +test2382 Q0 1336446 17 11.399985 Anserini +test2382 Q0 8226576 18 11.395399 Anserini +test2382 Q0 1336823 19 11.390693 Anserini +test2382 Q0 2609935 20 11.289777 Anserini +test2382 Q0 1231074 21 11.247492 Anserini +test2382 Q0 3973670 22 11.177873 Anserini +test2382 Q0 16046301 23 11.153371 Anserini +test2382 Q0 12352256 24 11.152122 Anserini +test2382 Q0 12726622 25 11.127053 Anserini +test2382 Q0 10847424 26 11.123695 Anserini +test2382 Q0 1228462 27 11.119258 Anserini +test2382 Q0 14157963 28 11.047687 Anserini +test2382 Q0 20205384 29 11.029530 Anserini +test2382 Q0 793575 30 11.018757 Anserini +test2383 Q0 15833681 1 16.830465 Anserini +test2383 Q0 331483 2 16.271669 Anserini +test2383 Q0 13691849 3 15.825059 Anserini +test2383 Q0 11447752 4 15.795630 Anserini +test2383 Q0 331492 5 15.769687 Anserini +test2383 Q0 15671598 6 15.658604 Anserini +test2383 Q0 331484 7 15.630360 Anserini +test2383 Q0 1289866 8 15.603701 Anserini +test2383 Q0 19148231 9 15.530161 Anserini +test2383 Q0 1673593 10 15.521310 Anserini +test2383 Q0 15833682 11 15.317787 Anserini +test2383 Q0 6516567 12 15.228142 Anserini +test2383 Q0 3967137 13 15.087391 Anserini +test2383 Q0 3967149 14 15.043202 Anserini +test2383 Q0 79132 15 14.844280 Anserini +test2383 Q0 4378147 16 14.833295 Anserini +test2383 Q0 13691836 17 14.538134 Anserini +test2383 Q0 331525 18 14.288073 Anserini +test2383 Q0 3967138 19 14.259438 Anserini +test2383 Q0 331523 20 14.186703 Anserini +test2383 Q0 18997660 21 14.110578 Anserini +test2383 Q0 5009781 22 14.102497 Anserini +test2383 Q0 331505 23 14.051384 Anserini +test2383 Q0 4011708 24 14.048485 Anserini +test2383 Q0 79122 25 14.022682 Anserini +test2383 Q0 7994075 26 13.990048 Anserini +test2383 Q0 13691850 27 13.947541 Anserini +test2383 Q0 20289502 28 13.934214 Anserini +test2383 Q0 4872973 29 13.932093 Anserini +test2383 Q0 78050 30 13.906857 Anserini +test2384 Q0 6685201 1 12.440178 Anserini +test2384 Q0 862562 2 12.343638 Anserini +test2384 Q0 7536831 3 11.713786 Anserini +test2384 Q0 4650209 4 11.685208 Anserini +test2384 Q0 4525813 5 11.657478 Anserini +test2384 Q0 2489391 6 11.555854 Anserini +test2384 Q0 4745326 7 11.447731 Anserini +test2384 Q0 7536832 8 11.397923 Anserini +test2384 Q0 11647781 9 11.365706 Anserini +test2384 Q0 15795389 10 11.224777 Anserini +test2384 Q0 1133307 11 11.221869 Anserini +test2384 Q0 5216217 12 11.144128 Anserini +test2384 Q0 2138726 13 11.047436 Anserini +test2384 Q0 15239334 14 10.994635 Anserini +test2384 Q0 6245037 15 10.976156 Anserini +test2384 Q0 15770824 16 10.975682 Anserini +test2384 Q0 15756311 17 10.942639 Anserini +test2384 Q0 5216221 18 10.892187 Anserini +test2384 Q0 11072625 19 10.841852 Anserini +test2384 Q0 5216195 20 10.783283 Anserini +test2384 Q0 19954267 21 10.771241 Anserini +test2384 Q0 11647784 22 10.717019 Anserini +test2384 Q0 2489396 23 10.691172 Anserini +test2384 Q0 5216197 24 10.689206 Anserini +test2384 Q0 4595605 25 10.685329 Anserini +test2384 Q0 15800590 26 10.681020 Anserini +test2384 Q0 5718448 27 10.642813 Anserini +test2384 Q0 6245035 28 10.608011 Anserini +test2384 Q0 2494698 29 10.579777 Anserini +test2384 Q0 18051304 30 10.560207 Anserini +test2385 Q0 6172846 1 16.018957 Anserini +test2385 Q0 17967170 2 15.228983 Anserini +test2385 Q0 8837011 3 13.992315 Anserini +test2385 Q0 3807960 4 13.238828 Anserini +test2385 Q0 20309997 5 13.049572 Anserini +test2385 Q0 427937 6 13.019623 Anserini +test2385 Q0 428164 7 12.969893 Anserini +test2385 Q0 2451745 8 12.963120 Anserini +test2385 Q0 15346387 9 12.877246 Anserini +test2385 Q0 555896 10 12.772783 Anserini +test2385 Q0 9534048 11 12.720627 Anserini +test2385 Q0 7510770 12 12.691489 Anserini +test2385 Q0 1957631 13 12.634528 Anserini +test2385 Q0 11339429 14 12.565586 Anserini +test2385 Q0 6965504 15 12.553146 Anserini +test2385 Q0 7224489 16 12.532715 Anserini +test2385 Q0 3012405 17 12.455194 Anserini +test2385 Q0 20036498 18 12.439529 Anserini +test2385 Q0 6111764 19 12.307365 Anserini +test2385 Q0 17903056 20 12.267905 Anserini +test2385 Q0 12503537 21 12.265956 Anserini +test2385 Q0 18866537 22 12.259185 Anserini +test2385 Q0 15692321 23 12.200501 Anserini +test2385 Q0 1024026 24 12.182229 Anserini +test2385 Q0 2543549 25 12.118438 Anserini +test2385 Q0 9867795 26 12.084636 Anserini +test2385 Q0 10402159 27 12.082617 Anserini +test2385 Q0 7768521 28 12.059331 Anserini +test2385 Q0 6440075 29 12.023412 Anserini +test2385 Q0 5586674 30 11.996639 Anserini +test2386 Q0 17254118 1 15.113203 Anserini +test2386 Q0 17254119 2 14.917634 Anserini +test2386 Q0 17254117 3 14.675449 Anserini +test2386 Q0 19080452 4 13.761490 Anserini +test2386 Q0 799424 5 13.008591 Anserini +test2386 Q0 17254116 6 12.972277 Anserini +test2386 Q0 7896765 7 12.792384 Anserini +test2386 Q0 6873293 8 12.244723 Anserini +test2386 Q0 10745176 9 11.778908 Anserini +test2386 Q0 20364999 10 11.698774 Anserini +test2386 Q0 20235163 11 11.361983 Anserini +test2386 Q0 20235168 12 11.361983 Anserini +test2386 Q0 1984270 13 11.329791 Anserini +test2386 Q0 874906 14 11.193900 Anserini +test2386 Q0 13953171 15 11.132314 Anserini +test2386 Q0 7972918 16 10.954239 Anserini +test2386 Q0 1041192 17 10.945851 Anserini +test2386 Q0 874970 18 10.892858 Anserini +test2386 Q0 951356 19 10.867247 Anserini +test2386 Q0 5029582 20 10.836267 Anserini +test2386 Q0 1041196 21 10.830625 Anserini +test2386 Q0 799412 22 10.830625 Anserini +test2386 Q0 9515019 23 10.746394 Anserini +test2386 Q0 18088378 24 10.693687 Anserini +test2386 Q0 874912 25 10.669062 Anserini +test2386 Q0 7009744 26 10.664436 Anserini +test2386 Q0 5029588 27 10.658066 Anserini +test2386 Q0 20979981 28 10.658066 Anserini +test2386 Q0 10884847 29 10.657854 Anserini +test2386 Q0 810060 30 10.645393 Anserini +test2387 Q0 6752582 1 16.615288 Anserini +test2387 Q0 17732811 2 16.350405 Anserini +test2387 Q0 16794288 3 15.984818 Anserini +test2387 Q0 3050917 4 15.896902 Anserini +test2387 Q0 4809166 5 15.451858 Anserini +test2387 Q0 19186392 6 15.247148 Anserini +test2387 Q0 17732822 7 14.946661 Anserini +test2387 Q0 17732816 8 14.516753 Anserini +test2387 Q0 18528493 9 14.514299 Anserini +test2387 Q0 3050927 10 14.510441 Anserini +test2387 Q0 6752588 11 14.486349 Anserini +test2387 Q0 5778885 12 14.409595 Anserini +test2387 Q0 14861399 13 14.358229 Anserini +test2387 Q0 11112781 14 14.259028 Anserini +test2387 Q0 766601 15 14.145384 Anserini +test2387 Q0 17732813 16 14.048251 Anserini +test2387 Q0 4359950 17 13.942492 Anserini +test2387 Q0 766575 18 13.912416 Anserini +test2387 Q0 12442645 19 13.900912 Anserini +test2387 Q0 11017216 20 13.888126 Anserini +test2387 Q0 6752589 21 13.888126 Anserini +test2387 Q0 6752614 22 13.850114 Anserini +test2387 Q0 766599 23 13.838178 Anserini +test2387 Q0 3050928 24 13.807022 Anserini +test2387 Q0 11112782 25 13.796352 Anserini +test2387 Q0 8262970 26 13.756691 Anserini +test2387 Q0 766586 27 13.742794 Anserini +test2387 Q0 6752580 28 13.584185 Anserini +test2387 Q0 765606 29 13.569875 Anserini +test2387 Q0 6752615 30 13.493896 Anserini +test2388 Q0 458949 1 21.086103 Anserini +test2388 Q0 290883 2 20.617918 Anserini +test2388 Q0 10230680 3 20.286478 Anserini +test2388 Q0 5582959 4 19.942627 Anserini +test2388 Q0 681869 5 19.447512 Anserini +test2388 Q0 15364901 6 19.447512 Anserini +test2388 Q0 5300084 7 19.297302 Anserini +test2388 Q0 864855 8 19.068226 Anserini +test2388 Q0 7915970 9 19.060402 Anserini +test2388 Q0 11243737 10 18.689220 Anserini +test2388 Q0 7313236 11 18.556799 Anserini +test2388 Q0 588120 12 18.423321 Anserini +test2388 Q0 16590551 13 18.386206 Anserini +test2388 Q0 19824588 14 18.244545 Anserini +test2388 Q0 12365247 15 18.174957 Anserini +test2388 Q0 11606853 16 18.168253 Anserini +test2388 Q0 190225 17 18.117788 Anserini +test2388 Q0 5722954 18 17.997293 Anserini +test2388 Q0 10381880 19 17.760643 Anserini +test2388 Q0 15660155 20 17.722927 Anserini +test2388 Q0 5951681 21 17.722927 Anserini +test2388 Q0 9533427 22 17.616125 Anserini +test2388 Q0 14514081 23 17.569597 Anserini +test2388 Q0 9432644 24 17.356411 Anserini +test2388 Q0 7685062 25 17.287172 Anserini +test2388 Q0 14395723 26 17.185577 Anserini +test2388 Q0 6409731 27 17.097250 Anserini +test2388 Q0 4387278 28 17.002735 Anserini +test2388 Q0 14106115 29 16.975540 Anserini +test2388 Q0 8312774 30 16.831707 Anserini +test2389 Q0 20917225 1 21.499613 Anserini +test2389 Q0 20917179 2 21.326054 Anserini +test2389 Q0 2199961 3 19.648581 Anserini +test2389 Q0 17995904 4 19.433731 Anserini +test2389 Q0 2199978 5 19.270817 Anserini +test2389 Q0 17995908 6 19.134333 Anserini +test2389 Q0 7005065 7 18.425489 Anserini +test2389 Q0 17473833 8 18.354576 Anserini +test2389 Q0 4314201 9 17.928549 Anserini +test2389 Q0 15206542 10 17.928549 Anserini +test2389 Q0 20917193 11 17.895216 Anserini +test2389 Q0 7000831 12 17.625557 Anserini +test2389 Q0 2200050 13 17.561148 Anserini +test2389 Q0 2199960 14 17.546606 Anserini +test2389 Q0 16977000 15 17.448463 Anserini +test2389 Q0 19117834 16 17.419949 Anserini +test2389 Q0 19942525 17 17.305454 Anserini +test2389 Q0 7000837 18 17.212418 Anserini +test2389 Q0 19081711 19 17.150671 Anserini +test2389 Q0 4915259 20 17.139595 Anserini +test2389 Q0 19118156 21 17.125256 Anserini +test2389 Q0 2200015 22 17.121693 Anserini +test2389 Q0 20553970 23 17.115740 Anserini +test2389 Q0 15206558 24 17.101954 Anserini +test2389 Q0 15206572 25 17.101954 Anserini +test2389 Q0 106569 26 17.018682 Anserini +test2389 Q0 16475157 27 16.971851 Anserini +test2389 Q0 19081709 28 16.964228 Anserini +test2389 Q0 2200064 29 16.949308 Anserini +test2389 Q0 2200079 30 16.823574 Anserini +test239 Q0 20634719 1 13.989166 Anserini +test239 Q0 5544847 2 13.927742 Anserini +test239 Q0 7498052 3 13.872679 Anserini +test239 Q0 19120546 4 13.868028 Anserini +test239 Q0 19120550 5 13.868028 Anserini +test239 Q0 19120529 6 13.853872 Anserini +test239 Q0 5544838 7 13.839167 Anserini +test239 Q0 5544849 8 13.735610 Anserini +test239 Q0 20634715 9 13.613775 Anserini +test239 Q0 18729503 10 13.613775 Anserini +test239 Q0 20879914 11 13.598045 Anserini +test239 Q0 18729507 12 13.458567 Anserini +test239 Q0 20634717 13 13.413549 Anserini +test239 Q0 6240012 14 13.413549 Anserini +test239 Q0 13644963 15 12.735526 Anserini +test239 Q0 11425414 16 12.663837 Anserini +test239 Q0 5544843 17 12.611374 Anserini +test239 Q0 20879915 18 12.575050 Anserini +test239 Q0 20634076 19 12.409600 Anserini +test239 Q0 19120542 20 12.409600 Anserini +test239 Q0 19120531 21 12.328516 Anserini +test239 Q0 14490860 22 12.252611 Anserini +test239 Q0 11502768 23 12.252611 Anserini +test239 Q0 4724466 24 12.248498 Anserini +test239 Q0 19276705 25 12.235041 Anserini +test239 Q0 19120545 26 12.235041 Anserini +test239 Q0 13884947 27 12.235041 Anserini +test239 Q0 20774482 28 12.235041 Anserini +test239 Q0 7543159 29 12.170799 Anserini +test239 Q0 8057073 30 12.150068 Anserini +test2390 Q0 11429955 1 14.508636 Anserini +test2390 Q0 17688836 2 14.426376 Anserini +test2390 Q0 16540562 3 14.268182 Anserini +test2390 Q0 16972677 4 14.106546 Anserini +test2390 Q0 8704546 5 13.947303 Anserini +test2390 Q0 16916044 6 13.931836 Anserini +test2390 Q0 11429954 7 13.633430 Anserini +test2390 Q0 20065915 8 13.478945 Anserini +test2390 Q0 17942625 9 13.295192 Anserini +test2390 Q0 20055912 10 13.273212 Anserini +test2390 Q0 8470295 11 13.210350 Anserini +test2390 Q0 5166687 12 13.174397 Anserini +test2390 Q0 16378331 13 13.129833 Anserini +test2390 Q0 8704572 14 13.126945 Anserini +test2390 Q0 5625786 15 13.043016 Anserini +test2390 Q0 20592930 16 12.905012 Anserini +test2390 Q0 20592932 17 12.905012 Anserini +test2390 Q0 16543090 18 12.898573 Anserini +test2390 Q0 15759565 19 12.877284 Anserini +test2390 Q0 5924504 20 12.861177 Anserini +test2390 Q0 16540561 21 12.851415 Anserini +test2390 Q0 8704548 22 12.832661 Anserini +test2390 Q0 10546992 23 12.801020 Anserini +test2390 Q0 13238097 24 12.769843 Anserini +test2390 Q0 13238096 25 12.730888 Anserini +test2390 Q0 5356518 26 12.717313 Anserini +test2390 Q0 19665918 27 12.697544 Anserini +test2390 Q0 13238090 28 12.665747 Anserini +test2390 Q0 5299840 29 12.658114 Anserini +test2390 Q0 11086772 30 12.631377 Anserini +test2391 Q0 14835511 1 10.368054 Anserini +test2391 Q0 8644361 2 10.367761 Anserini +test2391 Q0 7468147 3 10.094946 Anserini +test2391 Q0 19754309 4 9.781401 Anserini +test2391 Q0 9593088 5 9.499109 Anserini +test2391 Q0 10593010 6 9.488977 Anserini +test2391 Q0 10428539 7 9.487989 Anserini +test2391 Q0 10160909 8 9.461060 Anserini +test2391 Q0 9868941 9 9.459051 Anserini +test2391 Q0 14835515 10 9.394640 Anserini +test2391 Q0 14197199 11 9.295604 Anserini +test2391 Q0 29003 12 9.294566 Anserini +test2391 Q0 393741 13 9.270152 Anserini +test2391 Q0 19344104 14 9.262403 Anserini +test2391 Q0 4243404 15 9.203291 Anserini +test2391 Q0 11345572 16 9.195640 Anserini +test2391 Q0 10395502 17 9.138879 Anserini +test2391 Q0 17005341 18 9.084263 Anserini +test2391 Q0 18489254 19 9.054710 Anserini +test2391 Q0 18953160 20 9.017513 Anserini +test2391 Q0 10904548 21 9.007523 Anserini +test2391 Q0 18392309 22 8.994813 Anserini +test2391 Q0 4858936 23 8.989242 Anserini +test2391 Q0 18849992 24 8.988633 Anserini +test2391 Q0 20475091 25 8.973357 Anserini +test2391 Q0 2687384 26 8.968762 Anserini +test2391 Q0 14930120 27 8.940931 Anserini +test2391 Q0 4560251 28 8.877607 Anserini +test2391 Q0 10160936 29 8.875502 Anserini +test2391 Q0 18392315 30 8.875502 Anserini +test2392 Q0 3583449 1 20.630978 Anserini +test2392 Q0 12045231 2 20.038542 Anserini +test2392 Q0 3265162 3 19.950289 Anserini +test2392 Q0 20346519 4 19.518034 Anserini +test2392 Q0 1516099 5 19.145563 Anserini +test2392 Q0 11793891 6 18.828024 Anserini +test2392 Q0 3583448 7 18.340416 Anserini +test2392 Q0 3352224 8 17.960430 Anserini +test2392 Q0 1033188 9 17.922245 Anserini +test2392 Q0 13465747 10 17.882229 Anserini +test2392 Q0 810000 11 17.588251 Anserini +test2392 Q0 13727042 12 17.447384 Anserini +test2392 Q0 1035030 13 17.380983 Anserini +test2392 Q0 13727043 14 17.144350 Anserini +test2392 Q0 12015714 15 17.048069 Anserini +test2392 Q0 33214 16 16.884291 Anserini +test2392 Q0 3583455 17 16.828354 Anserini +test2392 Q0 9964385 18 16.697376 Anserini +test2392 Q0 20329429 19 16.679285 Anserini +test2392 Q0 13727040 20 16.652695 Anserini +test2392 Q0 3583464 21 16.618288 Anserini +test2392 Q0 3583458 22 16.514849 Anserini +test2392 Q0 20337798 23 16.467443 Anserini +test2392 Q0 3265142 24 16.406012 Anserini +test2392 Q0 810001 25 16.103466 Anserini +test2392 Q0 13727051 26 15.899792 Anserini +test2392 Q0 13727039 27 15.839747 Anserini +test2392 Q0 792041 28 15.674064 Anserini +test2392 Q0 1875741 29 15.630499 Anserini +test2392 Q0 1035572 30 15.528324 Anserini +test2393 Q0 16277162 1 12.777105 Anserini +test2393 Q0 15327163 2 12.372932 Anserini +test2393 Q0 14705487 3 12.286763 Anserini +test2393 Q0 352582 4 12.246216 Anserini +test2393 Q0 12775915 5 12.242050 Anserini +test2393 Q0 12775907 6 12.138345 Anserini +test2393 Q0 49803 7 12.109982 Anserini +test2393 Q0 6325513 8 12.078768 Anserini +test2393 Q0 12775923 9 12.077991 Anserini +test2393 Q0 6325517 10 12.012440 Anserini +test2393 Q0 8002142 11 12.004321 Anserini +test2393 Q0 19255883 12 11.983614 Anserini +test2393 Q0 49857 13 11.975327 Anserini +test2393 Q0 19211110 14 11.915569 Anserini +test2393 Q0 14127852 15 11.900993 Anserini +test2393 Q0 858211 16 11.770152 Anserini +test2393 Q0 12775911 17 11.718607 Anserini +test2393 Q0 352587 18 11.664364 Anserini +test2393 Q0 1482296 19 11.630952 Anserini +test2393 Q0 19255866 20 11.606176 Anserini +test2393 Q0 14510317 21 11.581988 Anserini +test2393 Q0 49851 22 11.521029 Anserini +test2393 Q0 12775919 23 11.509151 Anserini +test2393 Q0 19254116 24 11.486163 Anserini +test2393 Q0 19255865 25 11.391031 Anserini +test2393 Q0 696281 26 11.269859 Anserini +test2393 Q0 73614 27 11.251947 Anserini +test2393 Q0 10177979 28 11.223696 Anserini +test2393 Q0 8160736 29 11.190989 Anserini +test2393 Q0 13661868 30 11.185503 Anserini +test2394 Q0 19551959 1 16.620903 Anserini +test2394 Q0 19551920 2 16.378279 Anserini +test2394 Q0 12049657 3 15.594379 Anserini +test2394 Q0 12049658 4 15.594379 Anserini +test2394 Q0 6003444 5 14.973143 Anserini +test2394 Q0 19551894 6 14.756675 Anserini +test2394 Q0 19551849 7 14.719031 Anserini +test2394 Q0 6002697 8 14.696705 Anserini +test2394 Q0 6003462 9 14.671985 Anserini +test2394 Q0 6357694 10 14.471426 Anserini +test2394 Q0 13859545 11 14.297513 Anserini +test2394 Q0 19551926 12 14.266945 Anserini +test2394 Q0 6173002 13 14.237649 Anserini +test2394 Q0 19551943 14 14.136216 Anserini +test2394 Q0 6357695 15 14.071936 Anserini +test2394 Q0 2612473 16 14.034677 Anserini +test2394 Q0 19551974 17 14.018328 Anserini +test2394 Q0 6357707 18 13.923079 Anserini +test2394 Q0 19551930 19 13.920427 Anserini +test2394 Q0 18546235 20 13.915545 Anserini +test2394 Q0 18546237 21 13.862308 Anserini +test2394 Q0 19551960 22 13.823404 Anserini +test2394 Q0 2976125 23 13.578342 Anserini +test2394 Q0 6357706 24 13.547222 Anserini +test2394 Q0 6003451 25 13.510948 Anserini +test2394 Q0 19551982 26 13.456269 Anserini +test2394 Q0 6357690 27 13.377911 Anserini +test2394 Q0 19551981 28 13.364723 Anserini +test2394 Q0 19551947 29 13.348454 Anserini +test2394 Q0 19551958 30 13.318001 Anserini +test2395 Q0 11467454 1 13.163293 Anserini +test2395 Q0 17103963 2 12.207106 Anserini +test2395 Q0 1937929 3 11.926719 Anserini +test2395 Q0 1965064 4 11.810450 Anserini +test2395 Q0 12531022 5 11.774322 Anserini +test2395 Q0 1965049 6 11.744670 Anserini +test2395 Q0 11217867 7 11.604495 Anserini +test2395 Q0 19943853 8 11.558228 Anserini +test2395 Q0 14825586 9 11.524606 Anserini +test2395 Q0 16280712 10 11.472792 Anserini +test2395 Q0 11467455 11 11.450233 Anserini +test2395 Q0 14825584 12 11.437618 Anserini +test2395 Q0 18488377 13 11.420273 Anserini +test2395 Q0 8607987 14 11.412197 Anserini +test2395 Q0 14534119 15 11.410810 Anserini +test2395 Q0 7511577 16 11.293822 Anserini +test2395 Q0 17572995 17 11.293822 Anserini +test2395 Q0 10515279 18 11.262538 Anserini +test2395 Q0 13544677 19 11.257236 Anserini +test2395 Q0 1522861 20 11.196490 Anserini +test2395 Q0 10692430 21 11.171452 Anserini +test2395 Q0 1937912 22 11.162770 Anserini +test2395 Q0 1965273 23 11.116699 Anserini +test2395 Q0 15099873 24 11.053607 Anserini +test2395 Q0 2177605 25 11.041180 Anserini +test2395 Q0 9527648 26 11.034426 Anserini +test2395 Q0 18520833 27 10.994176 Anserini +test2395 Q0 15496828 28 10.986131 Anserini +test2395 Q0 14542137 29 10.967875 Anserini +test2395 Q0 16476547 30 10.947783 Anserini +test2396 Q0 1910162 1 15.504597 Anserini +test2396 Q0 1910172 2 14.977094 Anserini +test2396 Q0 5711606 3 14.311640 Anserini +test2396 Q0 1910176 4 13.968163 Anserini +test2396 Q0 16648441 5 13.876828 Anserini +test2396 Q0 6538533 6 13.758603 Anserini +test2396 Q0 1879072 7 13.678932 Anserini +test2396 Q0 6814461 8 13.678699 Anserini +test2396 Q0 1910175 9 13.561877 Anserini +test2396 Q0 12065564 10 13.470090 Anserini +test2396 Q0 13767676 11 13.402401 Anserini +test2396 Q0 6814463 12 13.384154 Anserini +test2396 Q0 17361322 13 13.315033 Anserini +test2396 Q0 18785647 14 13.276025 Anserini +test2396 Q0 1910177 15 13.147751 Anserini +test2396 Q0 18785643 16 13.009831 Anserini +test2396 Q0 12065568 17 13.006340 Anserini +test2396 Q0 18785644 18 12.884680 Anserini +test2396 Q0 18906453 19 12.826561 Anserini +test2396 Q0 16648426 20 12.729918 Anserini +test2396 Q0 1879057 21 12.649848 Anserini +test2396 Q0 6524727 22 12.618713 Anserini +test2396 Q0 13767672 23 12.603444 Anserini +test2396 Q0 16648451 24 12.538971 Anserini +test2396 Q0 859793 25 12.471365 Anserini +test2396 Q0 1910185 26 12.402781 Anserini +test2396 Q0 16648439 27 12.360337 Anserini +test2396 Q0 7671395 28 12.351757 Anserini +test2396 Q0 2321449 29 12.351757 Anserini +test2396 Q0 1910186 30 12.238447 Anserini +test2397 Q0 2926022 1 25.200905 Anserini +test2397 Q0 2926012 2 25.200905 Anserini +test2397 Q0 8210155 3 21.329645 Anserini +test2397 Q0 2926020 4 19.991367 Anserini +test2397 Q0 2926019 5 19.749697 Anserini +test2397 Q0 6951891 6 19.278898 Anserini +test2397 Q0 2711230 7 19.199196 Anserini +test2397 Q0 2926014 8 19.071218 Anserini +test2397 Q0 8000550 9 18.133785 Anserini +test2397 Q0 12482513 10 17.963728 Anserini +test2397 Q0 5860608 11 17.674519 Anserini +test2397 Q0 4742393 12 17.502327 Anserini +test2397 Q0 2926021 13 17.502327 Anserini +test2397 Q0 2926018 14 17.446798 Anserini +test2397 Q0 2533036 15 17.245434 Anserini +test2397 Q0 5236599 16 17.245434 Anserini +test2397 Q0 11715335 17 17.245434 Anserini +test2397 Q0 12860268 18 17.245434 Anserini +test2397 Q0 8208850 19 17.061956 Anserini +test2397 Q0 4451955 20 17.061956 Anserini +test2397 Q0 2926015 21 16.882347 Anserini +test2397 Q0 2926016 22 16.882347 Anserini +test2397 Q0 2926017 23 16.882347 Anserini +test2397 Q0 12482517 24 16.882347 Anserini +test2397 Q0 11068009 25 16.882347 Anserini +test2397 Q0 8856754 26 16.882347 Anserini +test2397 Q0 8856756 27 16.882347 Anserini +test2397 Q0 5369138 28 16.882347 Anserini +test2397 Q0 5369143 29 16.882347 Anserini +test2397 Q0 7643229 30 16.882347 Anserini +test2398 Q0 3011051 1 29.542654 Anserini +test2398 Q0 28395 2 26.788792 Anserini +test2398 Q0 13174716 3 26.161900 Anserini +test2398 Q0 28397 4 24.739470 Anserini +test2398 Q0 4514264 5 24.579847 Anserini +test2398 Q0 2652047 6 24.546095 Anserini +test2398 Q0 1435153 7 24.474497 Anserini +test2398 Q0 3011049 8 24.466114 Anserini +test2398 Q0 2943224 9 24.186636 Anserini +test2398 Q0 16511270 10 24.137632 Anserini +test2398 Q0 16682858 11 24.065439 Anserini +test2398 Q0 9838138 12 23.992029 Anserini +test2398 Q0 28381 13 23.770304 Anserini +test2398 Q0 10331026 14 23.717443 Anserini +test2398 Q0 13088602 15 23.584465 Anserini +test2398 Q0 15419798 16 23.140755 Anserini +test2398 Q0 3308891 17 22.734600 Anserini +test2398 Q0 2675150 18 22.611765 Anserini +test2398 Q0 16511271 19 22.509594 Anserini +test2398 Q0 4514263 20 22.451702 Anserini +test2398 Q0 1593519 21 22.426138 Anserini +test2398 Q0 1593521 22 22.381107 Anserini +test2398 Q0 2647430 23 22.226694 Anserini +test2398 Q0 11517456 24 22.005945 Anserini +test2398 Q0 11517432 25 21.957949 Anserini +test2398 Q0 11318529 26 21.883505 Anserini +test2398 Q0 16511272 27 21.809399 Anserini +test2398 Q0 2652051 28 21.683310 Anserini +test2398 Q0 4702949 29 21.610378 Anserini +test2398 Q0 28403 30 21.307152 Anserini +test2399 Q0 16736199 1 16.446581 Anserini +test2399 Q0 2160080 2 15.058208 Anserini +test2399 Q0 424460 3 14.850788 Anserini +test2399 Q0 4717168 4 14.676536 Anserini +test2399 Q0 3300161 5 14.646793 Anserini +test2399 Q0 6910547 6 14.550307 Anserini +test2399 Q0 424510 7 14.506824 Anserini +test2399 Q0 424476 8 14.031090 Anserini +test2399 Q0 424513 9 13.911047 Anserini +test2399 Q0 5412448 10 13.873338 Anserini +test2399 Q0 6345109 11 13.854371 Anserini +test2399 Q0 6214146 12 13.814240 Anserini +test2399 Q0 5109318 13 13.777566 Anserini +test2399 Q0 424515 14 13.708618 Anserini +test2399 Q0 13214681 15 13.633085 Anserini +test2399 Q0 2160102 16 13.585327 Anserini +test2399 Q0 4717172 17 13.476568 Anserini +test2399 Q0 3271639 18 13.416586 Anserini +test2399 Q0 6910548 19 13.358032 Anserini +test2399 Q0 6910546 20 13.292892 Anserini +test2399 Q0 424502 21 13.269318 Anserini +test2399 Q0 5113664 22 13.203331 Anserini +test2399 Q0 6910532 23 13.203331 Anserini +test2399 Q0 3549169 24 13.194076 Anserini +test2399 Q0 6910536 25 13.178890 Anserini +test2399 Q0 4381242 26 13.176462 Anserini +test2399 Q0 8427086 27 13.173454 Anserini +test2399 Q0 424451 28 13.147044 Anserini +test2399 Q0 6910530 29 13.147044 Anserini +test2399 Q0 3207370 30 13.146106 Anserini +test24 Q0 2897000 1 14.031851 Anserini +test24 Q0 3464877 2 11.166320 Anserini +test24 Q0 12951033 3 11.072481 Anserini +test24 Q0 5477049 4 10.808405 Anserini +test24 Q0 7590427 5 10.640291 Anserini +test24 Q0 7590425 6 10.594714 Anserini +test24 Q0 12951032 7 10.499228 Anserini +test24 Q0 7590426 8 9.975871 Anserini +test24 Q0 2897003 9 9.855217 Anserini +test24 Q0 2281882 10 9.779077 Anserini +test24 Q0 11867267 11 9.679158 Anserini +test24 Q0 7592888 12 9.607635 Anserini +test24 Q0 7592884 13 9.578377 Anserini +test24 Q0 11867270 14 9.495321 Anserini +test24 Q0 8592745 15 9.357703 Anserini +test24 Q0 2897005 16 9.357703 Anserini +test24 Q0 3464878 17 9.312302 Anserini +test24 Q0 6486083 18 9.292650 Anserini +test24 Q0 3464872 19 9.280732 Anserini +test24 Q0 9476462 20 9.127796 Anserini +test24 Q0 2896999 21 9.096030 Anserini +test24 Q0 12568531 22 9.017935 Anserini +test24 Q0 12568535 23 9.017935 Anserini +test24 Q0 3464869 24 8.976439 Anserini +test24 Q0 3464873 25 8.976439 Anserini +test24 Q0 12951035 26 8.976439 Anserini +test24 Q0 12951036 27 8.976439 Anserini +test24 Q0 3464876 28 8.939798 Anserini +test24 Q0 6724908 29 8.903455 Anserini +test24 Q0 3830755 30 8.821467 Anserini +test240 Q0 1612083 1 11.686355 Anserini +test240 Q0 20003799 2 11.348312 Anserini +test240 Q0 18010063 3 10.904013 Anserini +test240 Q0 14143032 4 10.679067 Anserini +test240 Q0 18010038 5 10.666399 Anserini +test240 Q0 3268924 6 10.627620 Anserini +test240 Q0 3268937 7 10.627620 Anserini +test240 Q0 18010111 8 10.546690 Anserini +test240 Q0 15210120 9 10.510538 Anserini +test240 Q0 9634048 10 10.401688 Anserini +test240 Q0 989857 11 10.393410 Anserini +test240 Q0 5863278 12 10.367987 Anserini +test240 Q0 7942200 13 10.303073 Anserini +test240 Q0 18010037 14 10.270192 Anserini +test240 Q0 16640669 15 9.985164 Anserini +test240 Q0 15210118 16 9.825727 Anserini +test240 Q0 10995589 17 9.825222 Anserini +test240 Q0 6696936 18 9.812918 Anserini +test240 Q0 18099311 19 9.803604 Anserini +test240 Q0 2587291 20 9.787885 Anserini +test240 Q0 14678548 21 9.747743 Anserini +test240 Q0 3665147 22 9.668636 Anserini +test240 Q0 15156502 23 9.666786 Anserini +test240 Q0 5810866 24 9.639386 Anserini +test240 Q0 7747669 25 9.613350 Anserini +test240 Q0 989856 26 9.591786 Anserini +test240 Q0 18010065 27 9.578426 Anserini +test240 Q0 18010071 28 9.564075 Anserini +test240 Q0 14631619 29 9.564075 Anserini +test240 Q0 19525232 30 9.556013 Anserini +test2400 Q0 982863 1 16.480709 Anserini +test2400 Q0 982854 2 15.906180 Anserini +test2400 Q0 2135257 3 13.697916 Anserini +test2400 Q0 9590496 4 13.081080 Anserini +test2400 Q0 9590491 5 12.883722 Anserini +test2400 Q0 465885 6 12.795740 Anserini +test2400 Q0 1854763 7 12.673454 Anserini +test2400 Q0 43630 8 12.513582 Anserini +test2400 Q0 982866 9 12.451305 Anserini +test2400 Q0 5044643 10 12.223996 Anserini +test2400 Q0 63812 11 12.080318 Anserini +test2400 Q0 405841 12 12.018424 Anserini +test2400 Q0 11402151 13 11.913692 Anserini +test2400 Q0 13493543 14 11.881702 Anserini +test2400 Q0 175336 15 11.810022 Anserini +test2400 Q0 2940133 16 11.741879 Anserini +test2400 Q0 2940135 17 11.741879 Anserini +test2400 Q0 1386689 18 11.664068 Anserini +test2400 Q0 14037176 19 11.645817 Anserini +test2400 Q0 10201808 20 11.619826 Anserini +test2400 Q0 620043 21 11.598081 Anserini +test2400 Q0 9238426 22 11.580688 Anserini +test2400 Q0 14587225 23 11.571458 Anserini +test2400 Q0 12009475 24 11.549876 Anserini +test2400 Q0 4104213 25 11.549302 Anserini +test2400 Q0 982864 26 11.525398 Anserini +test2400 Q0 143038 27 11.523346 Anserini +test2400 Q0 1870885 28 11.474611 Anserini +test2400 Q0 3615316 29 11.473168 Anserini +test2400 Q0 14587210 30 11.472383 Anserini +test2401 Q0 3174155 1 11.156311 Anserini +test2401 Q0 2093260 2 11.017171 Anserini +test2401 Q0 17193713 3 10.915441 Anserini +test2401 Q0 5946701 4 10.476769 Anserini +test2401 Q0 9598259 5 10.441542 Anserini +test2401 Q0 14026345 6 10.336397 Anserini +test2401 Q0 14051962 7 10.290960 Anserini +test2401 Q0 5898423 8 10.219814 Anserini +test2401 Q0 8240419 9 10.216895 Anserini +test2401 Q0 5117298 10 10.147223 Anserini +test2401 Q0 16180624 11 10.070626 Anserini +test2401 Q0 16087590 12 10.055840 Anserini +test2401 Q0 14618406 13 10.000055 Anserini +test2401 Q0 13313565 14 9.986469 Anserini +test2401 Q0 4808626 15 9.985156 Anserini +test2401 Q0 14572051 16 9.978202 Anserini +test2401 Q0 18462188 17 9.975344 Anserini +test2401 Q0 407403 18 9.964067 Anserini +test2401 Q0 19034600 19 9.909946 Anserini +test2401 Q0 9808869 20 9.888803 Anserini +test2401 Q0 13313563 21 9.879081 Anserini +test2401 Q0 6165520 22 9.871152 Anserini +test2401 Q0 3180354 23 9.761780 Anserini +test2401 Q0 5117296 24 9.749105 Anserini +test2401 Q0 9192408 25 9.736261 Anserini +test2401 Q0 507725 26 9.731157 Anserini +test2401 Q0 8550694 27 9.670880 Anserini +test2401 Q0 11263304 28 9.651057 Anserini +test2401 Q0 9808862 29 9.651057 Anserini +test2401 Q0 16825418 30 9.647112 Anserini +test2402 Q0 8078574 1 13.534646 Anserini +test2402 Q0 10245997 2 13.346268 Anserini +test2402 Q0 11170064 3 13.257569 Anserini +test2402 Q0 105819 4 13.195965 Anserini +test2402 Q0 9415658 5 13.175452 Anserini +test2402 Q0 12144507 6 13.076614 Anserini +test2402 Q0 16241122 7 13.040880 Anserini +test2402 Q0 418783 8 13.036119 Anserini +test2402 Q0 15706698 9 13.024017 Anserini +test2402 Q0 10709681 10 12.828377 Anserini +test2402 Q0 7405964 11 12.727796 Anserini +test2402 Q0 4279243 12 12.612975 Anserini +test2402 Q0 2548912 13 12.555149 Anserini +test2402 Q0 13401866 14 12.452036 Anserini +test2402 Q0 10241638 15 12.450715 Anserini +test2402 Q0 14212645 16 12.366261 Anserini +test2402 Q0 3432640 17 12.346506 Anserini +test2402 Q0 7185569 18 12.338152 Anserini +test2402 Q0 20177056 19 12.274427 Anserini +test2402 Q0 19408981 20 12.233068 Anserini +test2402 Q0 5806016 21 12.215613 Anserini +test2402 Q0 10949207 22 12.202085 Anserini +test2402 Q0 1808252 23 12.176379 Anserini +test2402 Q0 2548913 24 12.006960 Anserini +test2402 Q0 14104342 25 11.907093 Anserini +test2402 Q0 9620697 26 11.900430 Anserini +test2402 Q0 7136452 27 11.874009 Anserini +test2402 Q0 13134868 28 11.826841 Anserini +test2402 Q0 19587042 29 11.816299 Anserini +test2402 Q0 3972263 30 11.810541 Anserini +test2403 Q0 18874908 1 13.966036 Anserini +test2403 Q0 475201 2 12.730248 Anserini +test2403 Q0 9359090 3 12.475431 Anserini +test2403 Q0 18514391 4 12.455285 Anserini +test2403 Q0 17359689 5 12.045028 Anserini +test2403 Q0 9359088 6 11.876683 Anserini +test2403 Q0 640668 7 10.857060 Anserini +test2403 Q0 9856884 8 10.815921 Anserini +test2403 Q0 11283913 9 10.804133 Anserini +test2403 Q0 9359089 10 10.699466 Anserini +test2403 Q0 19134249 11 10.548399 Anserini +test2403 Q0 357490 12 10.547604 Anserini +test2403 Q0 3205232 13 10.534569 Anserini +test2403 Q0 18396342 14 10.475666 Anserini +test2403 Q0 13951137 15 10.432142 Anserini +test2403 Q0 8791839 16 10.364612 Anserini +test2403 Q0 20456293 17 10.352026 Anserini +test2403 Q0 12506830 18 10.310215 Anserini +test2403 Q0 3342988 19 10.281805 Anserini +test2403 Q0 13091271 20 10.251005 Anserini +test2403 Q0 19436693 21 10.248157 Anserini +test2403 Q0 3174475 22 10.157276 Anserini +test2403 Q0 7376124 23 10.155844 Anserini +test2403 Q0 7557613 24 10.126052 Anserini +test2403 Q0 13016941 25 10.051866 Anserini +test2403 Q0 12603023 26 10.045571 Anserini +test2403 Q0 10840775 27 10.024444 Anserini +test2403 Q0 6552532 28 10.020163 Anserini +test2403 Q0 16833725 29 9.990307 Anserini +test2403 Q0 16378336 30 9.956782 Anserini +test2404 Q0 20110827 1 14.705879 Anserini +test2404 Q0 14883957 2 14.574749 Anserini +test2404 Q0 20110834 3 14.372043 Anserini +test2404 Q0 13337037 4 14.143576 Anserini +test2404 Q0 20110828 5 14.035210 Anserini +test2404 Q0 13363188 6 13.528610 Anserini +test2404 Q0 6691572 7 13.447545 Anserini +test2404 Q0 11817608 8 13.368791 Anserini +test2404 Q0 2753179 9 13.337736 Anserini +test2404 Q0 16902363 10 13.292741 Anserini +test2404 Q0 15277349 11 13.226434 Anserini +test2404 Q0 11817612 12 13.139534 Anserini +test2404 Q0 16397721 13 13.081942 Anserini +test2404 Q0 12401017 14 13.062078 Anserini +test2404 Q0 9498734 15 13.054117 Anserini +test2404 Q0 11356520 16 13.045220 Anserini +test2404 Q0 9902054 17 12.941275 Anserini +test2404 Q0 19428581 18 12.877929 Anserini +test2404 Q0 9901976 19 12.875799 Anserini +test2404 Q0 17524730 20 12.798397 Anserini +test2404 Q0 20530266 21 12.786330 Anserini +test2404 Q0 9902049 22 12.769909 Anserini +test2404 Q0 2813424 23 12.737360 Anserini +test2404 Q0 10077576 24 12.736935 Anserini +test2404 Q0 11185264 25 12.646525 Anserini +test2404 Q0 14884086 26 12.612502 Anserini +test2404 Q0 15429835 27 12.569659 Anserini +test2404 Q0 15435545 28 12.558389 Anserini +test2404 Q0 10264364 29 12.549394 Anserini +test2404 Q0 17678188 30 12.539528 Anserini +test2405 Q0 19317648 1 13.131529 Anserini +test2405 Q0 19317654 2 13.001926 Anserini +test2405 Q0 11631927 3 12.710632 Anserini +test2405 Q0 18833639 4 12.243422 Anserini +test2405 Q0 20219880 5 12.077799 Anserini +test2405 Q0 18833616 6 12.064995 Anserini +test2405 Q0 16686922 7 11.553704 Anserini +test2405 Q0 14258386 8 11.304985 Anserini +test2405 Q0 10852329 9 11.218630 Anserini +test2405 Q0 14127764 10 11.152134 Anserini +test2405 Q0 10852332 11 10.925767 Anserini +test2405 Q0 2115666 12 10.622777 Anserini +test2405 Q0 9417493 13 10.534319 Anserini +test2405 Q0 15593853 14 10.455779 Anserini +test2405 Q0 15593855 15 10.348792 Anserini +test2405 Q0 12465801 16 10.335621 Anserini +test2405 Q0 9417486 17 10.168222 Anserini +test2405 Q0 9773604 18 10.148524 Anserini +test2405 Q0 9417496 19 9.814164 Anserini +test2405 Q0 2758711 20 9.506528 Anserini +test2405 Q0 14422573 21 9.414534 Anserini +test2405 Q0 12465802 22 9.405387 Anserini +test2405 Q0 5615441 23 9.403228 Anserini +test2405 Q0 2034577 24 9.366446 Anserini +test2405 Q0 18898816 25 9.348150 Anserini +test2405 Q0 2034583 26 9.334816 Anserini +test2405 Q0 13191674 27 9.316462 Anserini +test2405 Q0 12660182 28 9.306376 Anserini +test2405 Q0 14067900 29 9.306376 Anserini +test2405 Q0 14067904 30 9.306376 Anserini +test2406 Q0 100657 1 11.243598 Anserini +test2406 Q0 20786941 2 10.136683 Anserini +test2406 Q0 14076775 3 10.090424 Anserini +test2406 Q0 20110932 4 10.026690 Anserini +test2406 Q0 18567405 5 9.698767 Anserini +test2406 Q0 2428138 6 9.679856 Anserini +test2406 Q0 17209832 7 9.519859 Anserini +test2406 Q0 3130626 8 9.397141 Anserini +test2406 Q0 512222 9 9.379612 Anserini +test2406 Q0 13304527 10 9.373693 Anserini +test2406 Q0 18681811 11 9.372777 Anserini +test2406 Q0 2173919 12 9.368819 Anserini +test2406 Q0 6341073 13 9.337747 Anserini +test2406 Q0 18567409 14 9.265806 Anserini +test2406 Q0 11730150 15 9.229399 Anserini +test2406 Q0 11089498 16 9.213093 Anserini +test2406 Q0 10410967 17 9.183246 Anserini +test2406 Q0 1410390 18 9.137019 Anserini +test2406 Q0 14203142 19 9.114481 Anserini +test2406 Q0 13304529 20 9.107259 Anserini +test2406 Q0 918679 21 9.099709 Anserini +test2406 Q0 14776596 22 9.061362 Anserini +test2406 Q0 5030452 23 9.041471 Anserini +test2406 Q0 3130627 24 9.005841 Anserini +test2406 Q0 16712739 25 9.001201 Anserini +test2406 Q0 12062390 26 8.986572 Anserini +test2406 Q0 2620785 27 8.975372 Anserini +test2406 Q0 19044132 28 8.951330 Anserini +test2406 Q0 4075289 29 8.946910 Anserini +test2406 Q0 13530229 30 8.923189 Anserini +test2407 Q0 5395647 1 10.139262 Anserini +test2407 Q0 9601665 2 9.918593 Anserini +test2407 Q0 5395639 3 9.918593 Anserini +test2407 Q0 9608242 4 9.848082 Anserini +test2407 Q0 16727679 5 9.529188 Anserini +test2407 Q0 4930753 6 9.442677 Anserini +test2407 Q0 9051261 7 9.309654 Anserini +test2407 Q0 4401753 8 9.296818 Anserini +test2407 Q0 9255075 9 9.118813 Anserini +test2407 Q0 17621246 10 8.979317 Anserini +test2407 Q0 17203506 11 8.868881 Anserini +test2407 Q0 5586408 12 8.784022 Anserini +test2407 Q0 198782 13 8.784022 Anserini +test2407 Q0 5027468 14 8.774632 Anserini +test2407 Q0 9174760 15 8.725569 Anserini +test2407 Q0 17561632 16 8.577456 Anserini +test2407 Q0 14132114 17 8.575087 Anserini +test2407 Q0 9608241 18 8.516284 Anserini +test2407 Q0 8072065 19 8.502804 Anserini +test2407 Q0 3335039 20 8.452217 Anserini +test2407 Q0 6953523 21 8.426544 Anserini +test2407 Q0 7571736 22 8.375687 Anserini +test2407 Q0 13055257 23 8.375687 Anserini +test2407 Q0 7849730 24 8.375687 Anserini +test2407 Q0 16457614 25 8.302774 Anserini +test2407 Q0 9487617 26 8.300587 Anserini +test2407 Q0 2165613 27 8.259974 Anserini +test2407 Q0 13971554 28 8.235589 Anserini +test2407 Q0 533265 29 8.112173 Anserini +test2407 Q0 4591429 30 8.067981 Anserini +test2408 Q0 1624193 1 10.522821 Anserini +test2408 Q0 945395 2 10.202439 Anserini +test2408 Q0 2382761 3 10.189478 Anserini +test2408 Q0 1624194 4 10.110835 Anserini +test2408 Q0 93060 5 9.998590 Anserini +test2408 Q0 348196 6 9.701237 Anserini +test2408 Q0 4210202 7 9.535671 Anserini +test2408 Q0 12444299 8 9.521794 Anserini +test2408 Q0 97646 9 9.337893 Anserini +test2408 Q0 97688 10 9.269523 Anserini +test2408 Q0 4233564 11 9.269523 Anserini +test2408 Q0 15356786 12 9.117039 Anserini +test2408 Q0 17931877 13 9.088964 Anserini +test2408 Q0 16139856 14 9.039885 Anserini +test2408 Q0 4290499 15 8.994972 Anserini +test2408 Q0 13002976 16 8.970193 Anserini +test2408 Q0 13002985 17 8.970193 Anserini +test2408 Q0 15067919 18 8.970193 Anserini +test2408 Q0 6383671 19 8.911535 Anserini +test2408 Q0 2094088 20 8.901608 Anserini +test2408 Q0 13003795 21 8.814855 Anserini +test2408 Q0 2361344 22 8.814855 Anserini +test2408 Q0 13266301 23 8.770123 Anserini +test2408 Q0 5213146 24 8.741779 Anserini +test2408 Q0 13639314 25 8.687504 Anserini +test2408 Q0 4079391 26 8.679439 Anserini +test2408 Q0 19717230 27 8.679439 Anserini +test2408 Q0 4883534 28 8.656224 Anserini +test2408 Q0 191431 29 8.646006 Anserini +test2408 Q0 627311 30 8.600566 Anserini +test2409 Q0 949117 1 23.022406 Anserini +test2409 Q0 949116 2 22.780441 Anserini +test2409 Q0 949114 3 17.850655 Anserini +test2409 Q0 949118 4 17.629005 Anserini +test2409 Q0 20931715 5 17.438126 Anserini +test2409 Q0 8524221 6 16.904263 Anserini +test2409 Q0 1603080 7 14.803285 Anserini +test2409 Q0 12100340 8 14.441351 Anserini +test2409 Q0 8524244 9 14.004291 Anserini +test2409 Q0 7490916 10 14.002586 Anserini +test2409 Q0 1779710 11 13.814033 Anserini +test2409 Q0 12659940 12 13.723425 Anserini +test2409 Q0 16586410 13 13.685169 Anserini +test2409 Q0 3131376 14 13.506129 Anserini +test2409 Q0 7933323 15 13.482345 Anserini +test2409 Q0 63837 16 13.471103 Anserini +test2409 Q0 7933329 17 13.376513 Anserini +test2409 Q0 3664570 18 13.351472 Anserini +test2409 Q0 3616519 19 13.258827 Anserini +test2409 Q0 2429267 20 13.156885 Anserini +test2409 Q0 20440941 21 13.027493 Anserini +test2409 Q0 3521164 22 13.006174 Anserini +test2409 Q0 2419623 23 12.943954 Anserini +test2409 Q0 14760986 24 12.927588 Anserini +test2409 Q0 17880428 25 12.899203 Anserini +test2409 Q0 11121140 26 12.854400 Anserini +test2409 Q0 2040230 27 12.812677 Anserini +test2409 Q0 19789547 28 12.799105 Anserini +test2409 Q0 908759 29 12.726694 Anserini +test2409 Q0 19943953 30 12.720620 Anserini +test241 Q0 846866 1 15.675538 Anserini +test241 Q0 846870 2 15.467586 Anserini +test241 Q0 846868 3 15.253786 Anserini +test241 Q0 846865 4 14.956671 Anserini +test241 Q0 6580217 5 14.801165 Anserini +test241 Q0 846867 6 14.170033 Anserini +test241 Q0 6580216 7 14.040999 Anserini +test241 Q0 846862 8 13.840902 Anserini +test241 Q0 846864 9 13.559657 Anserini +test241 Q0 846869 10 13.193049 Anserini +test241 Q0 1675540 11 13.060110 Anserini +test241 Q0 846861 12 12.865214 Anserini +test241 Q0 6580218 13 12.593019 Anserini +test241 Q0 846871 14 11.816333 Anserini +test241 Q0 6580227 15 11.781061 Anserini +test241 Q0 11861381 16 11.646966 Anserini +test241 Q0 11861385 17 11.646966 Anserini +test241 Q0 6580219 18 11.440949 Anserini +test241 Q0 846860 19 11.349999 Anserini +test241 Q0 6580222 20 11.349999 Anserini +test241 Q0 846872 21 11.142195 Anserini +test241 Q0 5821937 22 11.025640 Anserini +test241 Q0 723855 23 10.879962 Anserini +test241 Q0 15284544 24 10.768843 Anserini +test241 Q0 6580220 25 10.752981 Anserini +test241 Q0 846873 26 10.444948 Anserini +test241 Q0 15284542 27 10.422216 Anserini +test241 Q0 12689979 28 10.267656 Anserini +test241 Q0 10268169 29 10.080151 Anserini +test241 Q0 12689978 30 9.827494 Anserini +test2410 Q0 13595071 1 14.413588 Anserini +test2410 Q0 15915660 2 13.040001 Anserini +test2410 Q0 4689197 3 12.828807 Anserini +test2410 Q0 2627506 4 12.764278 Anserini +test2410 Q0 769603 5 12.503582 Anserini +test2410 Q0 9866439 6 12.467224 Anserini +test2410 Q0 19132446 7 12.434281 Anserini +test2410 Q0 2511484 8 12.403369 Anserini +test2410 Q0 6306265 9 12.394854 Anserini +test2410 Q0 19659980 10 12.302865 Anserini +test2410 Q0 14325791 11 12.259354 Anserini +test2410 Q0 15348178 12 12.211080 Anserini +test2410 Q0 15348181 13 12.211080 Anserini +test2410 Q0 1707293 14 12.202436 Anserini +test2410 Q0 12273885 15 12.153581 Anserini +test2410 Q0 20920176 16 12.115198 Anserini +test2410 Q0 11613476 17 12.111732 Anserini +test2410 Q0 18166774 18 12.050428 Anserini +test2410 Q0 2740443 19 12.028678 Anserini +test2410 Q0 12540831 20 12.011515 Anserini +test2410 Q0 3521221 21 11.975102 Anserini +test2410 Q0 15922149 22 11.888743 Anserini +test2410 Q0 13609607 23 11.755934 Anserini +test2410 Q0 2511300 24 11.754871 Anserini +test2410 Q0 5473312 25 11.750919 Anserini +test2410 Q0 18477893 26 11.748897 Anserini +test2410 Q0 3521220 27 11.706168 Anserini +test2410 Q0 7219442 28 11.696807 Anserini +test2410 Q0 6724674 29 11.674276 Anserini +test2410 Q0 5565785 30 11.666568 Anserini +test2411 Q0 7191061 1 18.328234 Anserini +test2411 Q0 14083058 2 17.681950 Anserini +test2411 Q0 16833265 3 17.624542 Anserini +test2411 Q0 19694 4 17.410709 Anserini +test2411 Q0 10697762 5 17.009958 Anserini +test2411 Q0 20919103 6 16.570076 Anserini +test2411 Q0 20919101 7 16.556990 Anserini +test2411 Q0 17808272 8 16.493294 Anserini +test2411 Q0 476688 9 16.427631 Anserini +test2411 Q0 1457996 10 16.407837 Anserini +test2411 Q0 10697759 11 16.194723 Anserini +test2411 Q0 20056382 12 16.110285 Anserini +test2411 Q0 13777836 13 15.920088 Anserini +test2411 Q0 20640893 14 15.747017 Anserini +test2411 Q0 19136624 15 15.709011 Anserini +test2411 Q0 10697761 16 15.651424 Anserini +test2411 Q0 15424500 17 15.607747 Anserini +test2411 Q0 5014308 18 15.603947 Anserini +test2411 Q0 16833304 19 15.404558 Anserini +test2411 Q0 20919099 20 15.328455 Anserini +test2411 Q0 16022334 21 15.282271 Anserini +test2411 Q0 2128347 22 15.272528 Anserini +test2411 Q0 10697769 23 15.184200 Anserini +test2411 Q0 8950718 24 14.921270 Anserini +test2411 Q0 11312771 25 14.885555 Anserini +test2411 Q0 10548280 26 14.851974 Anserini +test2411 Q0 11136167 27 14.760570 Anserini +test2411 Q0 9451590 28 14.739377 Anserini +test2411 Q0 12021437 29 14.694733 Anserini +test2411 Q0 20919104 30 14.661885 Anserini +test2412 Q0 20467806 1 17.090549 Anserini +test2412 Q0 20467801 2 15.294005 Anserini +test2412 Q0 18463843 3 15.188654 Anserini +test2412 Q0 17416274 4 15.000533 Anserini +test2412 Q0 10238110 5 14.899746 Anserini +test2412 Q0 15886647 6 14.754342 Anserini +test2412 Q0 15092423 7 14.337392 Anserini +test2412 Q0 3492568 8 14.185552 Anserini +test2412 Q0 2086954 9 14.090900 Anserini +test2412 Q0 2073351 10 14.025138 Anserini +test2412 Q0 13683635 11 13.899443 Anserini +test2412 Q0 5089751 12 13.888456 Anserini +test2412 Q0 2530956 13 13.867310 Anserini +test2412 Q0 3492562 14 13.845881 Anserini +test2412 Q0 19966301 15 13.843213 Anserini +test2412 Q0 13683650 16 13.834951 Anserini +test2412 Q0 8109127 17 13.708100 Anserini +test2412 Q0 6675527 18 13.549637 Anserini +test2412 Q0 15183686 19 13.389300 Anserini +test2412 Q0 20467803 20 13.325529 Anserini +test2412 Q0 13876530 21 13.297957 Anserini +test2412 Q0 13069147 22 13.257444 Anserini +test2412 Q0 11067242 23 13.244164 Anserini +test2412 Q0 2222680 24 13.170774 Anserini +test2412 Q0 16931467 25 13.166468 Anserini +test2412 Q0 13069157 26 13.146970 Anserini +test2412 Q0 5568814 27 13.142163 Anserini +test2412 Q0 10700811 28 13.137114 Anserini +test2412 Q0 17416275 29 13.095787 Anserini +test2412 Q0 20467812 30 13.053307 Anserini +test2413 Q0 20120467 1 14.278294 Anserini +test2413 Q0 1948577 2 13.719718 Anserini +test2413 Q0 19681318 3 12.333117 Anserini +test2413 Q0 19681317 4 12.319719 Anserini +test2413 Q0 8930559 5 12.241156 Anserini +test2413 Q0 13891023 6 12.241156 Anserini +test2413 Q0 3084307 7 12.192686 Anserini +test2413 Q0 1948615 8 12.172616 Anserini +test2413 Q0 1948603 9 12.116991 Anserini +test2413 Q0 1948627 10 11.914141 Anserini +test2413 Q0 2943672 11 11.743946 Anserini +test2413 Q0 7973548 12 11.681940 Anserini +test2413 Q0 20120465 13 11.642602 Anserini +test2413 Q0 6416555 14 11.537123 Anserini +test2413 Q0 515557 15 11.479692 Anserini +test2413 Q0 7459551 16 11.437016 Anserini +test2413 Q0 15348981 17 11.404722 Anserini +test2413 Q0 7505759 18 11.391759 Anserini +test2413 Q0 1948584 19 11.378456 Anserini +test2413 Q0 12057423 20 11.373622 Anserini +test2413 Q0 3084308 21 11.333855 Anserini +test2413 Q0 8907091 22 11.314672 Anserini +test2413 Q0 14381755 23 11.306278 Anserini +test2413 Q0 1948594 24 11.263744 Anserini +test2413 Q0 1948614 25 11.262389 Anserini +test2413 Q0 15621725 26 11.226388 Anserini +test2413 Q0 6462101 27 11.203238 Anserini +test2413 Q0 20120469 28 11.196584 Anserini +test2413 Q0 15953098 29 11.183228 Anserini +test2413 Q0 16958226 30 11.160196 Anserini +test2414 Q0 2578534 1 17.506996 Anserini +test2414 Q0 2578533 2 16.192097 Anserini +test2414 Q0 19673368 3 13.561675 Anserini +test2414 Q0 10747520 4 12.488407 Anserini +test2414 Q0 2578539 5 12.332011 Anserini +test2414 Q0 8912311 6 12.046549 Anserini +test2414 Q0 2578554 7 11.549536 Anserini +test2414 Q0 5638839 8 11.449173 Anserini +test2414 Q0 5954246 9 11.386022 Anserini +test2414 Q0 5043683 10 11.386022 Anserini +test2414 Q0 4155325 11 11.358660 Anserini +test2414 Q0 2575418 12 11.322830 Anserini +test2414 Q0 11516732 13 11.316506 Anserini +test2414 Q0 5954243 14 11.261136 Anserini +test2414 Q0 10962185 15 10.949121 Anserini +test2414 Q0 13334287 16 10.827059 Anserini +test2414 Q0 8792581 17 10.632271 Anserini +test2414 Q0 3778590 18 10.582223 Anserini +test2414 Q0 2578540 19 10.568054 Anserini +test2414 Q0 2578548 20 10.563206 Anserini +test2414 Q0 2578536 21 10.404540 Anserini +test2414 Q0 4658473 22 10.249095 Anserini +test2414 Q0 15471310 23 10.213823 Anserini +test2414 Q0 1959003 24 10.204412 Anserini +test2414 Q0 13955567 25 10.158585 Anserini +test2414 Q0 4034414 26 10.139930 Anserini +test2414 Q0 4034412 27 10.139930 Anserini +test2414 Q0 20628587 28 10.132728 Anserini +test2414 Q0 19514883 29 10.064744 Anserini +test2414 Q0 4665564 30 10.008967 Anserini +test2415 Q0 14382849 1 14.235859 Anserini +test2415 Q0 14382834 2 13.885065 Anserini +test2415 Q0 14382835 3 13.790804 Anserini +test2415 Q0 14382850 4 13.725062 Anserini +test2415 Q0 1996470 5 13.452067 Anserini +test2415 Q0 10603892 6 13.155316 Anserini +test2415 Q0 20415403 7 12.988544 Anserini +test2415 Q0 14382848 8 12.881024 Anserini +test2415 Q0 5890599 9 12.529332 Anserini +test2415 Q0 7138739 10 12.371026 Anserini +test2415 Q0 11032881 11 12.114843 Anserini +test2415 Q0 770671 12 12.105597 Anserini +test2415 Q0 1791514 13 11.923973 Anserini +test2415 Q0 17541265 14 11.856953 Anserini +test2415 Q0 1600096 15 11.734214 Anserini +test2415 Q0 685638 16 11.654798 Anserini +test2415 Q0 8551355 17 11.561173 Anserini +test2415 Q0 5728207 18 11.442331 Anserini +test2415 Q0 18175144 19 11.215318 Anserini +test2415 Q0 14600853 20 11.164760 Anserini +test2415 Q0 833275 21 10.983816 Anserini +test2415 Q0 3461191 22 10.902075 Anserini +test2415 Q0 699656 23 10.900318 Anserini +test2415 Q0 12084155 24 10.787310 Anserini +test2415 Q0 692853 25 10.786900 Anserini +test2415 Q0 20580539 26 10.635427 Anserini +test2415 Q0 14382840 27 10.568586 Anserini +test2415 Q0 14382841 28 10.522325 Anserini +test2415 Q0 8676527 29 10.443676 Anserini +test2415 Q0 13877137 30 10.399787 Anserini +test2416 Q0 8294178 1 14.653696 Anserini +test2416 Q0 1812563 2 14.534785 Anserini +test2416 Q0 19773136 3 14.518080 Anserini +test2416 Q0 14798995 4 14.159768 Anserini +test2416 Q0 14799008 5 13.969748 Anserini +test2416 Q0 14798994 6 13.911972 Anserini +test2416 Q0 8414460 7 13.793302 Anserini +test2416 Q0 19138033 8 13.628136 Anserini +test2416 Q0 14798998 9 13.531600 Anserini +test2416 Q0 20005100 10 13.518060 Anserini +test2416 Q0 19977086 11 13.494363 Anserini +test2416 Q0 19138036 12 13.486398 Anserini +test2416 Q0 19980613 13 13.443425 Anserini +test2416 Q0 19977085 14 13.443425 Anserini +test2416 Q0 19977089 15 13.443425 Anserini +test2416 Q0 20601625 16 13.393757 Anserini +test2416 Q0 8379498 17 13.376064 Anserini +test2416 Q0 17617794 18 13.361355 Anserini +test2416 Q0 8414406 19 13.361328 Anserini +test2416 Q0 9902054 20 13.317562 Anserini +test2416 Q0 20601624 21 13.292858 Anserini +test2416 Q0 18408687 22 13.291576 Anserini +test2416 Q0 16692067 23 13.285543 Anserini +test2416 Q0 16692071 24 13.285543 Anserini +test2416 Q0 19084462 25 13.269871 Anserini +test2416 Q0 17617801 26 13.242300 Anserini +test2416 Q0 19992071 27 13.185884 Anserini +test2416 Q0 19138034 28 13.151230 Anserini +test2416 Q0 15517658 29 13.142409 Anserini +test2416 Q0 18731979 30 13.137468 Anserini +test2417 Q0 4675156 1 9.759146 Anserini +test2417 Q0 2493747 2 9.686339 Anserini +test2417 Q0 12401778 3 9.572479 Anserini +test2417 Q0 4789096 4 9.062396 Anserini +test2417 Q0 6139869 5 9.008026 Anserini +test2417 Q0 13158350 6 8.949591 Anserini +test2417 Q0 17107733 7 8.783357 Anserini +test2417 Q0 6778683 8 8.739832 Anserini +test2417 Q0 13158348 9 8.721526 Anserini +test2417 Q0 6216643 10 8.715748 Anserini +test2417 Q0 1576407 11 8.688766 Anserini +test2417 Q0 5706391 12 8.681086 Anserini +test2417 Q0 12694614 13 8.666368 Anserini +test2417 Q0 1349610 14 8.638381 Anserini +test2417 Q0 15296952 15 8.620498 Anserini +test2417 Q0 13158347 16 8.613651 Anserini +test2417 Q0 17540823 17 8.605437 Anserini +test2417 Q0 316683 18 8.599743 Anserini +test2417 Q0 7555629 19 8.558610 Anserini +test2417 Q0 6464908 20 8.539783 Anserini +test2417 Q0 8353890 21 8.487473 Anserini +test2417 Q0 5202321 22 8.474834 Anserini +test2417 Q0 263428 23 8.474834 Anserini +test2417 Q0 12694616 24 8.338165 Anserini +test2417 Q0 4816230 25 8.317329 Anserini +test2417 Q0 15250284 26 8.294130 Anserini +test2417 Q0 2932789 27 8.294130 Anserini +test2417 Q0 14389749 28 8.293291 Anserini +test2417 Q0 13158349 29 8.285320 Anserini +test2417 Q0 15250283 30 8.271235 Anserini +test2418 Q0 3976753 1 19.833410 Anserini +test2418 Q0 1780066 2 18.832087 Anserini +test2418 Q0 599977 3 18.648121 Anserini +test2418 Q0 1780060 4 18.452482 Anserini +test2418 Q0 9090841 5 18.132160 Anserini +test2418 Q0 4804 6 18.125071 Anserini +test2418 Q0 4117253 7 17.881426 Anserini +test2418 Q0 599981 8 17.873217 Anserini +test2418 Q0 311040 9 17.618776 Anserini +test2418 Q0 599983 10 17.577023 Anserini +test2418 Q0 3976754 11 17.476187 Anserini +test2418 Q0 55926 12 17.359871 Anserini +test2418 Q0 15077942 13 17.074594 Anserini +test2418 Q0 5567230 14 16.730906 Anserini +test2418 Q0 2126492 15 16.643587 Anserini +test2418 Q0 17028769 16 16.509199 Anserini +test2418 Q0 3976758 17 16.333540 Anserini +test2418 Q0 3976750 18 16.226122 Anserini +test2418 Q0 7949079 19 16.066608 Anserini +test2418 Q0 2285784 20 15.990088 Anserini +test2418 Q0 7473520 21 15.796566 Anserini +test2418 Q0 1831156 22 15.652001 Anserini +test2418 Q0 9522826 23 15.621274 Anserini +test2418 Q0 2454066 24 15.584827 Anserini +test2418 Q0 1068120 25 15.333386 Anserini +test2418 Q0 4814 26 15.068815 Anserini +test2418 Q0 8964158 27 14.974533 Anserini +test2418 Q0 4481518 28 14.904220 Anserini +test2418 Q0 187193 29 14.723368 Anserini +test2418 Q0 2009160 30 14.697475 Anserini +test2419 Q0 19876973 1 13.051338 Anserini +test2419 Q0 22346 2 12.877707 Anserini +test2419 Q0 5129110 3 12.813783 Anserini +test2419 Q0 1937641 4 12.576521 Anserini +test2419 Q0 2741780 5 12.248364 Anserini +test2419 Q0 3330329 6 11.937481 Anserini +test2419 Q0 11429695 7 11.833716 Anserini +test2419 Q0 15151378 8 11.775574 Anserini +test2419 Q0 16200516 9 11.773616 Anserini +test2419 Q0 10456438 10 11.769607 Anserini +test2419 Q0 22311 11 11.711485 Anserini +test2419 Q0 15151355 12 11.706580 Anserini +test2419 Q0 15172683 13 11.693642 Anserini +test2419 Q0 9234010 14 11.661574 Anserini +test2419 Q0 10387972 15 11.546046 Anserini +test2419 Q0 2741818 16 11.488621 Anserini +test2419 Q0 12236308 17 11.411788 Anserini +test2419 Q0 3330331 18 11.324806 Anserini +test2419 Q0 16769155 19 11.322113 Anserini +test2419 Q0 10856705 20 11.299604 Anserini +test2419 Q0 3330322 21 11.272007 Anserini +test2419 Q0 2911643 22 11.257005 Anserini +test2419 Q0 19876967 23 11.238772 Anserini +test2419 Q0 22312 24 11.206952 Anserini +test2419 Q0 10456437 25 11.173656 Anserini +test2419 Q0 11430375 26 11.157150 Anserini +test2419 Q0 3330333 27 11.144064 Anserini +test2419 Q0 10065037 28 11.142910 Anserini +test2419 Q0 15151376 29 11.081918 Anserini +test2419 Q0 2311604 30 11.079777 Anserini +test242 Q0 5660646 1 12.776043 Anserini +test242 Q0 480439 2 11.736129 Anserini +test242 Q0 9730840 3 10.931561 Anserini +test242 Q0 9270847 4 10.860605 Anserini +test242 Q0 13877609 5 10.641097 Anserini +test242 Q0 7845169 6 10.628071 Anserini +test242 Q0 4556512 7 10.613717 Anserini +test242 Q0 3582668 8 10.592259 Anserini +test242 Q0 2656072 9 10.566175 Anserini +test242 Q0 17517514 10 10.514715 Anserini +test242 Q0 1954321 11 10.270316 Anserini +test242 Q0 516226 12 10.243628 Anserini +test242 Q0 2664452 13 10.199530 Anserini +test242 Q0 5896223 14 9.974397 Anserini +test242 Q0 1954331 15 9.971356 Anserini +test242 Q0 3835826 16 9.956717 Anserini +test242 Q0 2597836 17 9.950120 Anserini +test242 Q0 8481890 18 9.881643 Anserini +test242 Q0 1828192 19 9.875115 Anserini +test242 Q0 6403212 20 9.875115 Anserini +test242 Q0 5896234 21 9.806438 Anserini +test242 Q0 330651 22 9.780092 Anserini +test242 Q0 10650435 23 9.768852 Anserini +test242 Q0 15556103 24 9.725920 Anserini +test242 Q0 8927981 25 9.693215 Anserini +test242 Q0 12941629 26 9.685441 Anserini +test242 Q0 6062637 27 9.683779 Anserini +test242 Q0 5508982 28 9.681843 Anserini +test242 Q0 9282030 29 9.661314 Anserini +test242 Q0 9282026 30 9.661314 Anserini +test2420 Q0 13336256 1 16.643774 Anserini +test2420 Q0 814886 2 16.641516 Anserini +test2420 Q0 814935 3 16.586302 Anserini +test2420 Q0 9788311 4 16.253422 Anserini +test2420 Q0 18556922 5 15.831051 Anserini +test2420 Q0 1836221 6 15.728075 Anserini +test2420 Q0 10444243 7 15.552785 Anserini +test2420 Q0 8201448 8 15.505289 Anserini +test2420 Q0 9788305 9 15.502905 Anserini +test2420 Q0 814937 10 15.469913 Anserini +test2420 Q0 11080684 11 15.430843 Anserini +test2420 Q0 13336253 12 15.385416 Anserini +test2420 Q0 11159566 13 15.376390 Anserini +test2420 Q0 9240944 14 15.364979 Anserini +test2420 Q0 13336282 15 15.307999 Anserini +test2420 Q0 15196356 16 15.305119 Anserini +test2420 Q0 15527866 17 15.203905 Anserini +test2420 Q0 10674790 18 15.176130 Anserini +test2420 Q0 13336289 19 15.140353 Anserini +test2420 Q0 13336322 20 15.113045 Anserini +test2420 Q0 11988969 21 15.094292 Anserini +test2420 Q0 13547527 22 15.069159 Anserini +test2420 Q0 641380 23 15.054526 Anserini +test2420 Q0 11159563 24 15.045216 Anserini +test2420 Q0 13336307 25 15.045216 Anserini +test2420 Q0 10396500 26 15.018925 Anserini +test2420 Q0 13336285 27 14.992236 Anserini +test2420 Q0 7241302 28 14.984306 Anserini +test2420 Q0 2813265 29 14.966248 Anserini +test2420 Q0 11159560 30 14.908237 Anserini +test2421 Q0 11715639 1 10.826928 Anserini +test2421 Q0 8926370 2 10.729206 Anserini +test2421 Q0 8088555 3 10.586169 Anserini +test2421 Q0 13494461 4 10.501667 Anserini +test2421 Q0 2618876 5 10.469373 Anserini +test2421 Q0 10931517 6 10.419955 Anserini +test2421 Q0 7818550 7 10.136874 Anserini +test2421 Q0 9898096 8 10.016219 Anserini +test2421 Q0 11583988 9 9.920350 Anserini +test2421 Q0 16812925 10 9.858892 Anserini +test2421 Q0 6085955 11 9.853825 Anserini +test2421 Q0 1614775 12 9.774017 Anserini +test2421 Q0 16532378 13 9.759272 Anserini +test2421 Q0 1196152 14 9.668486 Anserini +test2421 Q0 3350035 15 9.668486 Anserini +test2421 Q0 19376380 16 9.637517 Anserini +test2421 Q0 20261050 17 9.583545 Anserini +test2421 Q0 11159164 18 9.508972 Anserini +test2421 Q0 10381124 19 9.502567 Anserini +test2421 Q0 19569131 20 9.392570 Anserini +test2421 Q0 11536691 21 9.346376 Anserini +test2421 Q0 14361752 22 9.335594 Anserini +test2421 Q0 18142582 23 9.211407 Anserini +test2421 Q0 18008822 24 9.205054 Anserini +test2421 Q0 17630568 25 9.205054 Anserini +test2421 Q0 16014726 26 9.198302 Anserini +test2421 Q0 19392265 27 9.198302 Anserini +test2421 Q0 4355295 28 9.190952 Anserini +test2421 Q0 14626346 29 9.182891 Anserini +test2421 Q0 17199498 30 9.179244 Anserini +test2422 Q0 16142154 1 15.157695 Anserini +test2422 Q0 16142155 2 15.084914 Anserini +test2422 Q0 3195766 3 11.691959 Anserini +test2422 Q0 10485282 4 11.057257 Anserini +test2422 Q0 4950592 5 10.856662 Anserini +test2422 Q0 12858276 6 10.829815 Anserini +test2422 Q0 14497441 7 10.812788 Anserini +test2422 Q0 18489513 8 10.711897 Anserini +test2422 Q0 15342812 9 10.668674 Anserini +test2422 Q0 10189565 10 10.602178 Anserini +test2422 Q0 4713832 11 10.502779 Anserini +test2422 Q0 12858275 12 10.452707 Anserini +test2422 Q0 14807562 13 10.331532 Anserini +test2422 Q0 19820922 14 10.331532 Anserini +test2422 Q0 14341251 15 10.217910 Anserini +test2422 Q0 14582512 16 10.179297 Anserini +test2422 Q0 4043511 17 10.173588 Anserini +test2422 Q0 2663045 18 10.149794 Anserini +test2422 Q0 8993928 19 10.123279 Anserini +test2422 Q0 14543363 20 10.116278 Anserini +test2422 Q0 20998999 21 10.116278 Anserini +test2422 Q0 20681111 22 10.090695 Anserini +test2422 Q0 1487868 23 10.043582 Anserini +test2422 Q0 16160440 24 10.038965 Anserini +test2422 Q0 9713443 25 10.011979 Anserini +test2422 Q0 5384696 26 9.974006 Anserini +test2422 Q0 17019102 27 9.895381 Anserini +test2422 Q0 1487869 28 9.880369 Anserini +test2422 Q0 14582511 29 9.880369 Anserini +test2422 Q0 10884296 30 9.753032 Anserini +test2423 Q0 5800683 1 12.403575 Anserini +test2423 Q0 15145467 2 10.931452 Anserini +test2423 Q0 7925997 3 10.542988 Anserini +test2423 Q0 9996499 4 10.513402 Anserini +test2423 Q0 14695492 5 10.501574 Anserini +test2423 Q0 19436384 6 10.447713 Anserini +test2423 Q0 8417525 7 10.431325 Anserini +test2423 Q0 4172629 8 10.360850 Anserini +test2423 Q0 19052066 9 10.351378 Anserini +test2423 Q0 4752216 10 10.266907 Anserini +test2423 Q0 13895101 11 10.248996 Anserini +test2423 Q0 6327951 12 10.186419 Anserini +test2423 Q0 12900427 13 10.131865 Anserini +test2423 Q0 20180811 14 10.095614 Anserini +test2423 Q0 4903182 15 10.094816 Anserini +test2423 Q0 8652768 16 10.071015 Anserini +test2423 Q0 5068459 17 10.016532 Anserini +test2423 Q0 10030658 18 10.003325 Anserini +test2423 Q0 17926847 19 9.997245 Anserini +test2423 Q0 2091013 20 9.989277 Anserini +test2423 Q0 17173262 21 9.954405 Anserini +test2423 Q0 19496346 22 9.893075 Anserini +test2423 Q0 1848403 23 9.891544 Anserini +test2423 Q0 20231270 24 9.853745 Anserini +test2423 Q0 8417524 25 9.841067 Anserini +test2423 Q0 19496371 26 9.802903 Anserini +test2423 Q0 13804909 27 9.786625 Anserini +test2423 Q0 13137634 28 9.778539 Anserini +test2423 Q0 8417536 29 9.747206 Anserini +test2423 Q0 3457911 30 9.741167 Anserini +test2424 Q0 20631030 1 13.595053 Anserini +test2424 Q0 18363170 2 13.586691 Anserini +test2424 Q0 14927264 3 13.317678 Anserini +test2424 Q0 18838247 4 13.250773 Anserini +test2424 Q0 12815858 5 13.207127 Anserini +test2424 Q0 7757993 6 13.187826 Anserini +test2424 Q0 18955691 7 12.932693 Anserini +test2424 Q0 18920099 8 12.777879 Anserini +test2424 Q0 19021217 9 12.760271 Anserini +test2424 Q0 18884293 10 12.694503 Anserini +test2424 Q0 7501143 11 12.684565 Anserini +test2424 Q0 18799522 12 12.622807 Anserini +test2424 Q0 3927926 13 12.610789 Anserini +test2424 Q0 18866270 14 12.547250 Anserini +test2424 Q0 19408058 15 12.529751 Anserini +test2424 Q0 18871177 16 12.481631 Anserini +test2424 Q0 18866267 17 12.422912 Anserini +test2424 Q0 11521998 18 12.414691 Anserini +test2424 Q0 17366748 19 12.344759 Anserini +test2424 Q0 18221885 20 12.335425 Anserini +test2424 Q0 18818894 21 12.208061 Anserini +test2424 Q0 18964169 22 12.193629 Anserini +test2424 Q0 17258311 23 12.101135 Anserini +test2424 Q0 19318148 24 12.098997 Anserini +test2424 Q0 19020840 25 12.065699 Anserini +test2424 Q0 2999664 26 12.039560 Anserini +test2424 Q0 13822031 27 12.037963 Anserini +test2424 Q0 18300375 28 12.025458 Anserini +test2424 Q0 20459280 29 11.966669 Anserini +test2424 Q0 19156115 30 11.961172 Anserini +test2425 Q0 4278926 1 11.637865 Anserini +test2425 Q0 12439268 2 11.600750 Anserini +test2425 Q0 14881716 3 11.236453 Anserini +test2425 Q0 8740667 4 11.141395 Anserini +test2425 Q0 1737660 5 10.684549 Anserini +test2425 Q0 14439544 6 10.537857 Anserini +test2425 Q0 954590 7 10.374619 Anserini +test2425 Q0 1784220 8 10.339431 Anserini +test2425 Q0 970340 9 10.306066 Anserini +test2425 Q0 1549724 10 10.303398 Anserini +test2425 Q0 954496 11 10.214418 Anserini +test2425 Q0 1121197 12 10.176874 Anserini +test2425 Q0 13466520 13 10.164521 Anserini +test2425 Q0 1737680 14 10.150414 Anserini +test2425 Q0 13411546 15 10.120387 Anserini +test2425 Q0 4471312 16 10.103113 Anserini +test2425 Q0 7661740 17 9.969988 Anserini +test2425 Q0 15668853 18 9.957006 Anserini +test2425 Q0 4164737 19 9.956116 Anserini +test2425 Q0 13314883 20 9.948845 Anserini +test2425 Q0 1198377 21 9.929039 Anserini +test2425 Q0 14103138 22 9.924646 Anserini +test2425 Q0 4117021 23 9.888700 Anserini +test2425 Q0 852038 24 9.882010 Anserini +test2425 Q0 1395147 25 9.840229 Anserini +test2425 Q0 15758551 26 9.833295 Anserini +test2425 Q0 502511 27 9.793159 Anserini +test2425 Q0 4177399 28 9.790432 Anserini +test2425 Q0 507396 29 9.781317 Anserini +test2425 Q0 2802 30 9.778239 Anserini +test2426 Q0 14665404 1 19.162012 Anserini +test2426 Q0 14665389 2 19.084112 Anserini +test2426 Q0 9821380 3 18.900967 Anserini +test2426 Q0 9821374 4 18.379454 Anserini +test2426 Q0 14615672 5 18.301050 Anserini +test2426 Q0 9821369 6 18.298990 Anserini +test2426 Q0 9821345 7 18.262852 Anserini +test2426 Q0 14615686 8 18.247162 Anserini +test2426 Q0 15648881 9 18.208908 Anserini +test2426 Q0 15648876 10 18.126850 Anserini +test2426 Q0 9821370 11 18.080626 Anserini +test2426 Q0 9821384 12 18.056482 Anserini +test2426 Q0 14615674 13 18.056482 Anserini +test2426 Q0 13835961 14 18.056482 Anserini +test2426 Q0 9821375 15 17.840693 Anserini +test2426 Q0 20238739 16 17.736340 Anserini +test2426 Q0 9821346 17 17.667444 Anserini +test2426 Q0 9821364 18 17.646727 Anserini +test2426 Q0 9821356 19 17.516609 Anserini +test2426 Q0 15648301 20 17.512560 Anserini +test2426 Q0 15646871 21 17.512560 Anserini +test2426 Q0 15668845 22 17.417681 Anserini +test2426 Q0 1320538 23 17.303318 Anserini +test2426 Q0 14665403 24 17.248589 Anserini +test2426 Q0 1386118 25 17.142893 Anserini +test2426 Q0 14665393 26 16.907154 Anserini +test2426 Q0 14615673 27 16.902945 Anserini +test2426 Q0 9821365 28 16.768467 Anserini +test2426 Q0 14615678 29 16.669706 Anserini +test2426 Q0 9821362 30 16.598282 Anserini +test2427 Q0 1846403 1 12.275187 Anserini +test2427 Q0 6427251 2 11.152792 Anserini +test2427 Q0 20880110 3 10.906043 Anserini +test2427 Q0 19954722 4 10.895438 Anserini +test2427 Q0 4360896 5 10.641574 Anserini +test2427 Q0 15808461 6 10.581544 Anserini +test2427 Q0 6429126 7 10.537271 Anserini +test2427 Q0 17039195 8 10.439531 Anserini +test2427 Q0 11338040 9 10.427381 Anserini +test2427 Q0 8171469 10 10.369365 Anserini +test2427 Q0 4480900 11 10.337929 Anserini +test2427 Q0 796383 12 10.294514 Anserini +test2427 Q0 6196379 13 10.228944 Anserini +test2427 Q0 15377989 14 10.193493 Anserini +test2427 Q0 7523734 15 10.128271 Anserini +test2427 Q0 6482451 16 10.104795 Anserini +test2427 Q0 17378351 17 10.045235 Anserini +test2427 Q0 10174897 18 10.006655 Anserini +test2427 Q0 1743733 19 9.955843 Anserini +test2427 Q0 19990555 20 9.941203 Anserini +test2427 Q0 10311883 21 9.867579 Anserini +test2427 Q0 2529063 22 9.843840 Anserini +test2427 Q0 9551408 23 9.840330 Anserini +test2427 Q0 1415779 24 9.763638 Anserini +test2427 Q0 17541729 25 9.751201 Anserini +test2427 Q0 7081691 26 9.697729 Anserini +test2427 Q0 18132502 27 9.694649 Anserini +test2427 Q0 15609270 28 9.665453 Anserini +test2427 Q0 10672117 29 9.653881 Anserini +test2427 Q0 1652507 30 9.624014 Anserini +test2428 Q0 5182283 1 15.314638 Anserini +test2428 Q0 5182304 2 15.276785 Anserini +test2428 Q0 2076452 3 15.051111 Anserini +test2428 Q0 2076497 4 15.001415 Anserini +test2428 Q0 5402203 5 14.701351 Anserini +test2428 Q0 5182285 6 14.457674 Anserini +test2428 Q0 16903548 7 13.275887 Anserini +test2428 Q0 6281800 8 13.101970 Anserini +test2428 Q0 7866606 9 13.005522 Anserini +test2428 Q0 8797032 10 12.953654 Anserini +test2428 Q0 6281819 11 12.943430 Anserini +test2428 Q0 7776898 12 12.923528 Anserini +test2428 Q0 16249460 13 12.847559 Anserini +test2428 Q0 7776899 14 12.767346 Anserini +test2428 Q0 2076490 15 12.622871 Anserini +test2428 Q0 7127249 16 12.608656 Anserini +test2428 Q0 3320350 17 12.552462 Anserini +test2428 Q0 6183540 18 12.524710 Anserini +test2428 Q0 7929663 19 12.419240 Anserini +test2428 Q0 10215999 20 12.392300 Anserini +test2428 Q0 2076472 21 12.361809 Anserini +test2428 Q0 4993356 22 12.359781 Anserini +test2428 Q0 7160358 23 12.304600 Anserini +test2428 Q0 6183549 24 12.295464 Anserini +test2428 Q0 5182289 25 12.285971 Anserini +test2428 Q0 4261682 26 12.239524 Anserini +test2428 Q0 8797051 27 12.209694 Anserini +test2428 Q0 16903541 28 12.153659 Anserini +test2428 Q0 4827691 29 12.053901 Anserini +test2428 Q0 4712303 30 12.030957 Anserini +test2429 Q0 13501986 1 15.109848 Anserini +test2429 Q0 1936863 2 14.683142 Anserini +test2429 Q0 8916548 3 14.398195 Anserini +test2429 Q0 9980578 4 14.257858 Anserini +test2429 Q0 610950 5 14.007704 Anserini +test2429 Q0 610951 6 13.905816 Anserini +test2429 Q0 9793667 7 13.565015 Anserini +test2429 Q0 2265387 8 13.321282 Anserini +test2429 Q0 12602677 9 13.169950 Anserini +test2429 Q0 16485633 10 13.028242 Anserini +test2429 Q0 13197661 11 12.975449 Anserini +test2429 Q0 19178277 12 12.851715 Anserini +test2429 Q0 4066627 13 12.727264 Anserini +test2429 Q0 2905606 14 12.722074 Anserini +test2429 Q0 3037365 15 12.618013 Anserini +test2429 Q0 2230575 16 12.569123 Anserini +test2429 Q0 338744 17 12.535225 Anserini +test2429 Q0 667357 18 12.509422 Anserini +test2429 Q0 12602672 19 12.437645 Anserini +test2429 Q0 2827676 20 12.366302 Anserini +test2429 Q0 10856260 21 12.352360 Anserini +test2429 Q0 4459682 22 12.325035 Anserini +test2429 Q0 8916559 23 12.318972 Anserini +test2429 Q0 8988851 24 12.298563 Anserini +test2429 Q0 8916554 25 12.293201 Anserini +test2429 Q0 12195433 26 12.269919 Anserini +test2429 Q0 9324479 27 12.268643 Anserini +test2429 Q0 338780 28 12.266825 Anserini +test2429 Q0 10856244 29 12.244062 Anserini +test2429 Q0 12195418 30 12.221248 Anserini +test243 Q0 1479365 1 13.892441 Anserini +test243 Q0 8427565 2 13.832739 Anserini +test243 Q0 11628865 3 13.483767 Anserini +test243 Q0 1479370 4 13.427491 Anserini +test243 Q0 3716718 5 13.254220 Anserini +test243 Q0 4927181 6 13.202809 Anserini +test243 Q0 4927187 7 13.168535 Anserini +test243 Q0 7358663 8 13.130074 Anserini +test243 Q0 4927220 9 13.066414 Anserini +test243 Q0 4971492 10 13.057877 Anserini +test243 Q0 1531302 11 13.021270 Anserini +test243 Q0 1637621 12 12.925712 Anserini +test243 Q0 7358676 13 12.915422 Anserini +test243 Q0 4927198 14 12.804287 Anserini +test243 Q0 4927180 15 12.798690 Anserini +test243 Q0 4927184 16 12.721970 Anserini +test243 Q0 300017 17 12.608328 Anserini +test243 Q0 4927179 18 12.578624 Anserini +test243 Q0 11628859 19 12.578604 Anserini +test243 Q0 1782126 20 12.576959 Anserini +test243 Q0 5191465 21 12.572148 Anserini +test243 Q0 14639638 22 12.531092 Anserini +test243 Q0 12631988 23 12.528380 Anserini +test243 Q0 6732816 24 12.456980 Anserini +test243 Q0 4927185 25 12.442369 Anserini +test243 Q0 3716723 26 12.429249 Anserini +test243 Q0 11628858 27 12.396666 Anserini +test243 Q0 4406236 28 12.387912 Anserini +test243 Q0 12306098 29 12.340840 Anserini +test243 Q0 1637663 30 12.325132 Anserini +test2430 Q0 20227726 1 17.943014 Anserini +test2430 Q0 15687789 2 14.151631 Anserini +test2430 Q0 15687798 3 13.095694 Anserini +test2430 Q0 15968247 4 12.534721 Anserini +test2430 Q0 17883621 5 12.391031 Anserini +test2430 Q0 20227723 6 12.256256 Anserini +test2430 Q0 11051316 7 11.930547 Anserini +test2430 Q0 9000509 8 11.794043 Anserini +test2430 Q0 6495173 9 11.782823 Anserini +test2430 Q0 7487922 10 11.718246 Anserini +test2430 Q0 3075127 11 11.714425 Anserini +test2430 Q0 13185206 12 11.712972 Anserini +test2430 Q0 17789600 13 11.657541 Anserini +test2430 Q0 5424789 14 11.460325 Anserini +test2430 Q0 6017346 15 11.451534 Anserini +test2430 Q0 20051758 16 11.172676 Anserini +test2430 Q0 20051765 17 11.172676 Anserini +test2430 Q0 11051325 18 11.109246 Anserini +test2430 Q0 2182201 19 11.037449 Anserini +test2430 Q0 13922346 20 10.800396 Anserini +test2430 Q0 2182193 21 10.773669 Anserini +test2430 Q0 13185207 22 10.773669 Anserini +test2430 Q0 7459742 23 10.746367 Anserini +test2430 Q0 6904793 24 10.726744 Anserini +test2430 Q0 9049723 25 10.673566 Anserini +test2430 Q0 9049722 26 10.673566 Anserini +test2430 Q0 2182204 27 10.660788 Anserini +test2430 Q0 15952420 28 10.659820 Anserini +test2430 Q0 14625153 29 10.645318 Anserini +test2430 Q0 12528736 30 10.645318 Anserini +test2431 Q0 386027 1 15.311131 Anserini +test2431 Q0 4108209 2 14.746637 Anserini +test2431 Q0 16317897 3 14.448174 Anserini +test2431 Q0 1395863 4 13.825029 Anserini +test2431 Q0 386030 5 13.762912 Anserini +test2431 Q0 386029 6 13.728785 Anserini +test2431 Q0 1417586 7 13.589583 Anserini +test2431 Q0 512788 8 13.451791 Anserini +test2431 Q0 487240 9 13.428172 Anserini +test2431 Q0 13328105 10 13.335978 Anserini +test2431 Q0 487236 11 13.209955 Anserini +test2431 Q0 6202254 12 13.131104 Anserini +test2431 Q0 7982241 13 13.045416 Anserini +test2431 Q0 386091 14 12.977441 Anserini +test2431 Q0 386085 15 12.902753 Anserini +test2431 Q0 7232642 16 12.854232 Anserini +test2431 Q0 1417588 17 12.822815 Anserini +test2431 Q0 4925438 18 12.756907 Anserini +test2431 Q0 2089585 19 12.699402 Anserini +test2431 Q0 1417593 20 12.669762 Anserini +test2431 Q0 20589109 21 12.449680 Anserini +test2431 Q0 12775402 22 12.428532 Anserini +test2431 Q0 4108211 23 12.414659 Anserini +test2431 Q0 4108213 24 12.409188 Anserini +test2431 Q0 1223192 25 12.294314 Anserini +test2431 Q0 386081 26 12.270146 Anserini +test2431 Q0 3992774 27 12.248592 Anserini +test2431 Q0 10435236 28 12.238958 Anserini +test2431 Q0 7982240 29 12.111312 Anserini +test2431 Q0 11188622 30 12.111102 Anserini +test2432 Q0 3555214 1 14.273782 Anserini +test2432 Q0 3555276 2 14.223647 Anserini +test2432 Q0 3555249 3 13.675020 Anserini +test2432 Q0 3555194 4 13.508815 Anserini +test2432 Q0 3555250 5 13.182205 Anserini +test2432 Q0 11956131 6 13.050285 Anserini +test2432 Q0 257490 7 12.959309 Anserini +test2432 Q0 3555217 8 12.660725 Anserini +test2432 Q0 3555246 9 12.640648 Anserini +test2432 Q0 3555219 10 12.629007 Anserini +test2432 Q0 3555238 11 12.541739 Anserini +test2432 Q0 13079722 12 12.459443 Anserini +test2432 Q0 15877532 13 12.429625 Anserini +test2432 Q0 3555212 14 12.346886 Anserini +test2432 Q0 3552062 15 12.293453 Anserini +test2432 Q0 3555248 16 12.213014 Anserini +test2432 Q0 6035014 17 12.201860 Anserini +test2432 Q0 3555232 18 12.171763 Anserini +test2432 Q0 19258035 19 12.114183 Anserini +test2432 Q0 3555241 20 12.112730 Anserini +test2432 Q0 3555196 21 12.107100 Anserini +test2432 Q0 3555240 22 12.089911 Anserini +test2432 Q0 3555221 23 12.049780 Anserini +test2432 Q0 8854016 24 11.994704 Anserini +test2432 Q0 3555198 25 11.943354 Anserini +test2432 Q0 9997741 26 11.938886 Anserini +test2432 Q0 11956127 27 11.907700 Anserini +test2432 Q0 3555253 28 11.903616 Anserini +test2432 Q0 257500 29 11.870418 Anserini +test2432 Q0 6713632 30 11.869083 Anserini +test2433 Q0 4783208 1 21.371264 Anserini +test2433 Q0 4783190 2 21.244871 Anserini +test2433 Q0 4837287 3 20.614634 Anserini +test2433 Q0 15020790 4 19.930378 Anserini +test2433 Q0 4837290 5 19.843212 Anserini +test2433 Q0 2888824 6 19.750313 Anserini +test2433 Q0 6006344 7 19.430304 Anserini +test2433 Q0 6006347 8 19.430304 Anserini +test2433 Q0 13361900 9 19.332359 Anserini +test2433 Q0 5064289 10 19.310276 Anserini +test2433 Q0 4210625 11 19.122700 Anserini +test2433 Q0 4837329 12 19.122700 Anserini +test2433 Q0 14701587 13 18.973112 Anserini +test2433 Q0 6752887 14 18.913845 Anserini +test2433 Q0 4360741 15 18.894348 Anserini +test2433 Q0 13858393 16 18.885534 Anserini +test2433 Q0 13361904 17 18.786030 Anserini +test2433 Q0 11336040 18 18.673513 Anserini +test2433 Q0 4837286 19 18.671873 Anserini +test2433 Q0 3655711 20 18.552210 Anserini +test2433 Q0 13858380 21 18.418184 Anserini +test2433 Q0 3663710 22 18.266518 Anserini +test2433 Q0 3663703 23 18.266518 Anserini +test2433 Q0 3655717 24 18.229996 Anserini +test2433 Q0 2971457 25 18.210581 Anserini +test2433 Q0 4837380 26 18.162746 Anserini +test2433 Q0 17883950 27 18.150753 Anserini +test2433 Q0 2888753 28 18.107267 Anserini +test2433 Q0 4210707 29 18.089809 Anserini +test2433 Q0 5093539 30 17.990276 Anserini +test2434 Q0 2641378 1 12.203851 Anserini +test2434 Q0 1580854 2 12.108709 Anserini +test2434 Q0 12088912 3 12.031427 Anserini +test2434 Q0 1580775 4 11.958685 Anserini +test2434 Q0 8018304 5 11.863575 Anserini +test2434 Q0 7833739 6 11.853822 Anserini +test2434 Q0 8436566 7 11.678474 Anserini +test2434 Q0 8436565 8 11.605499 Anserini +test2434 Q0 1580746 9 11.569867 Anserini +test2434 Q0 10198752 10 11.556889 Anserini +test2434 Q0 9728089 11 11.366475 Anserini +test2434 Q0 11875925 12 11.348222 Anserini +test2434 Q0 18781288 13 11.347996 Anserini +test2434 Q0 9851883 14 11.338296 Anserini +test2434 Q0 1580861 15 11.324566 Anserini +test2434 Q0 12167080 16 11.313593 Anserini +test2434 Q0 6936361 17 11.254427 Anserini +test2434 Q0 20468039 18 11.236435 Anserini +test2434 Q0 7143229 19 11.222765 Anserini +test2434 Q0 1580734 20 11.177896 Anserini +test2434 Q0 13348574 21 11.167541 Anserini +test2434 Q0 3195054 22 11.150344 Anserini +test2434 Q0 11875921 23 11.122008 Anserini +test2434 Q0 13636637 24 11.066822 Anserini +test2434 Q0 10518363 25 11.066822 Anserini +test2434 Q0 7873063 26 11.012322 Anserini +test2434 Q0 15437952 27 11.002986 Anserini +test2434 Q0 2462504 28 10.991548 Anserini +test2434 Q0 10541342 29 10.910680 Anserini +test2434 Q0 8253502 30 10.909256 Anserini +test2435 Q0 17184398 1 12.637675 Anserini +test2435 Q0 2440 2 11.724430 Anserini +test2435 Q0 10933102 3 11.644447 Anserini +test2435 Q0 13894870 4 11.640772 Anserini +test2435 Q0 10287545 5 11.551918 Anserini +test2435 Q0 9160746 6 11.332911 Anserini +test2435 Q0 475012 7 11.302856 Anserini +test2435 Q0 18515824 8 11.257849 Anserini +test2435 Q0 14957162 9 11.246771 Anserini +test2435 Q0 739067 10 11.229891 Anserini +test2435 Q0 20376954 11 11.185984 Anserini +test2435 Q0 7050039 12 11.145057 Anserini +test2435 Q0 716464 13 11.115191 Anserini +test2435 Q0 1629863 14 11.115191 Anserini +test2435 Q0 13752938 15 11.072852 Anserini +test2435 Q0 13943863 16 11.062694 Anserini +test2435 Q0 16721175 17 11.045123 Anserini +test2435 Q0 20971603 18 11.022784 Anserini +test2435 Q0 16367166 19 10.948286 Anserini +test2435 Q0 1534279 20 10.936274 Anserini +test2435 Q0 9711794 21 10.909286 Anserini +test2435 Q0 4319427 22 10.902813 Anserini +test2435 Q0 11690472 23 10.900209 Anserini +test2435 Q0 7351181 24 10.896456 Anserini +test2435 Q0 18515809 25 10.896456 Anserini +test2435 Q0 20376948 26 10.892916 Anserini +test2435 Q0 13856794 27 10.892916 Anserini +test2435 Q0 1534373 28 10.880116 Anserini +test2435 Q0 3131414 29 10.866604 Anserini +test2435 Q0 20971597 30 10.849915 Anserini +test2436 Q0 9019719 1 19.297855 Anserini +test2436 Q0 3809350 2 18.122204 Anserini +test2436 Q0 3407370 3 14.262163 Anserini +test2436 Q0 14471658 4 14.117382 Anserini +test2436 Q0 7156201 5 14.001991 Anserini +test2436 Q0 7053428 6 13.634795 Anserini +test2436 Q0 3809346 7 13.406676 Anserini +test2436 Q0 2776947 8 13.215775 Anserini +test2436 Q0 10690549 9 12.958174 Anserini +test2436 Q0 1859115 10 12.910515 Anserini +test2436 Q0 2816612 11 12.841156 Anserini +test2436 Q0 19891724 12 12.829660 Anserini +test2436 Q0 8791829 13 12.641385 Anserini +test2436 Q0 8791845 14 12.575030 Anserini +test2436 Q0 15085892 15 12.564978 Anserini +test2436 Q0 9019720 16 12.564978 Anserini +test2436 Q0 7053427 17 12.471604 Anserini +test2436 Q0 19891686 18 12.406608 Anserini +test2436 Q0 2047586 19 12.373072 Anserini +test2436 Q0 2875397 20 12.373072 Anserini +test2436 Q0 2095485 21 12.310369 Anserini +test2436 Q0 7156195 22 12.056231 Anserini +test2436 Q0 183599 23 11.953991 Anserini +test2436 Q0 3378378 24 11.953991 Anserini +test2436 Q0 11205317 25 11.953991 Anserini +test2436 Q0 1859112 26 11.933947 Anserini +test2436 Q0 8016702 27 11.754857 Anserini +test2436 Q0 12869431 28 11.730000 Anserini +test2436 Q0 6009345 29 11.659650 Anserini +test2436 Q0 3701607 30 11.658301 Anserini +test2437 Q0 491528 1 15.210350 Anserini +test2437 Q0 12577482 2 14.389646 Anserini +test2437 Q0 12577481 3 14.389646 Anserini +test2437 Q0 12670342 4 14.292831 Anserini +test2437 Q0 6919930 5 14.197346 Anserini +test2437 Q0 12672968 6 14.154076 Anserini +test2437 Q0 6920006 7 13.614338 Anserini +test2437 Q0 6919885 8 13.604980 Anserini +test2437 Q0 491547 9 13.604494 Anserini +test2437 Q0 12540316 10 13.379348 Anserini +test2437 Q0 995994 11 13.334000 Anserini +test2437 Q0 12659550 12 13.108547 Anserini +test2437 Q0 8626766 13 13.089728 Anserini +test2437 Q0 6919898 14 13.052096 Anserini +test2437 Q0 11064860 15 13.042200 Anserini +test2437 Q0 5733008 16 12.997835 Anserini +test2437 Q0 12637771 17 12.997835 Anserini +test2437 Q0 12637772 18 12.997835 Anserini +test2437 Q0 6919992 19 12.890820 Anserini +test2437 Q0 11438425 20 12.849787 Anserini +test2437 Q0 14887340 21 12.713476 Anserini +test2437 Q0 6919957 22 12.689795 Anserini +test2437 Q0 6458319 23 12.594456 Anserini +test2437 Q0 12672961 24 12.594456 Anserini +test2437 Q0 5733007 25 12.580612 Anserini +test2437 Q0 3186039 26 12.580612 Anserini +test2437 Q0 8606136 27 12.580612 Anserini +test2437 Q0 12654916 28 12.580612 Anserini +test2437 Q0 12654920 29 12.580612 Anserini +test2437 Q0 12670340 30 12.580612 Anserini +test2438 Q0 5588549 1 11.036070 Anserini +test2438 Q0 3005820 2 10.430445 Anserini +test2438 Q0 17960066 3 10.098742 Anserini +test2438 Q0 6837702 4 9.911745 Anserini +test2438 Q0 8503645 5 9.576893 Anserini +test2438 Q0 14118711 6 9.476078 Anserini +test2438 Q0 13735301 7 9.185973 Anserini +test2438 Q0 11776345 8 9.090827 Anserini +test2438 Q0 20309771 9 9.041821 Anserini +test2438 Q0 17004056 10 9.025287 Anserini +test2438 Q0 17960065 11 8.984850 Anserini +test2438 Q0 20847238 12 8.762065 Anserini +test2438 Q0 2319701 13 8.748013 Anserini +test2438 Q0 7488663 14 8.666247 Anserini +test2438 Q0 20707001 15 8.587120 Anserini +test2438 Q0 17960067 16 8.542276 Anserini +test2438 Q0 13359231 17 8.506609 Anserini +test2438 Q0 5387836 18 8.504732 Anserini +test2438 Q0 16530228 19 8.504732 Anserini +test2438 Q0 15484252 20 8.504732 Anserini +test2438 Q0 6704096 21 8.504732 Anserini +test2438 Q0 685041 22 8.465096 Anserini +test2438 Q0 685044 23 8.464508 Anserini +test2438 Q0 19051957 24 8.390433 Anserini +test2438 Q0 13656146 25 8.373536 Anserini +test2438 Q0 5623775 26 8.370865 Anserini +test2438 Q0 178012 27 8.362516 Anserini +test2438 Q0 20776237 28 8.313253 Anserini +test2438 Q0 11776344 29 8.288948 Anserini +test2438 Q0 9932359 30 8.235576 Anserini +test2439 Q0 370333 1 14.418344 Anserini +test2439 Q0 4026717 2 14.172409 Anserini +test2439 Q0 12977045 3 13.810911 Anserini +test2439 Q0 363837 4 13.747900 Anserini +test2439 Q0 8611028 5 13.678752 Anserini +test2439 Q0 99605 6 13.416823 Anserini +test2439 Q0 18685364 7 13.319395 Anserini +test2439 Q0 18107011 8 13.198619 Anserini +test2439 Q0 3187158 9 12.672148 Anserini +test2439 Q0 10098225 10 12.643431 Anserini +test2439 Q0 16306428 11 12.585184 Anserini +test2439 Q0 10014016 12 12.583020 Anserini +test2439 Q0 184088 13 12.493042 Anserini +test2439 Q0 7499895 14 12.282577 Anserini +test2439 Q0 6676319 15 12.252941 Anserini +test2439 Q0 17682586 16 12.242198 Anserini +test2439 Q0 18107119 17 12.169630 Anserini +test2439 Q0 13235875 18 12.144157 Anserini +test2439 Q0 99623 19 12.114987 Anserini +test2439 Q0 5615399 20 12.082470 Anserini +test2439 Q0 6140788 21 12.069768 Anserini +test2439 Q0 14546196 22 12.047287 Anserini +test2439 Q0 2817039 23 12.029119 Anserini +test2439 Q0 7618129 24 12.009138 Anserini +test2439 Q0 10040829 25 11.985119 Anserini +test2439 Q0 13013946 26 11.951035 Anserini +test2439 Q0 296367 27 11.941346 Anserini +test2439 Q0 6676330 28 11.936185 Anserini +test2439 Q0 10586045 29 11.839390 Anserini +test2439 Q0 8123582 30 11.811340 Anserini +test244 Q0 8892087 1 23.699038 Anserini +test244 Q0 1439581 2 23.510147 Anserini +test244 Q0 8892094 3 21.973454 Anserini +test244 Q0 8892085 4 21.973454 Anserini +test244 Q0 2794226 5 21.752729 Anserini +test244 Q0 8892090 6 19.700283 Anserini +test244 Q0 8892088 7 19.241093 Anserini +test244 Q0 8851261 8 18.962578 Anserini +test244 Q0 2794208 9 18.711777 Anserini +test244 Q0 6726691 10 18.673536 Anserini +test244 Q0 2794206 11 18.607990 Anserini +test244 Q0 4233468 12 18.562849 Anserini +test244 Q0 11712076 13 18.451628 Anserini +test244 Q0 8892093 14 18.251688 Anserini +test244 Q0 8892091 15 17.990396 Anserini +test244 Q0 8892089 16 17.795719 Anserini +test244 Q0 8892092 17 17.793367 Anserini +test244 Q0 6493119 18 17.562943 Anserini +test244 Q0 9540381 19 17.439011 Anserini +test244 Q0 12217180 20 17.381868 Anserini +test244 Q0 3479119 21 17.032312 Anserini +test244 Q0 1439582 22 16.793463 Anserini +test244 Q0 18396621 23 16.793463 Anserini +test244 Q0 12631378 24 16.618517 Anserini +test244 Q0 15869622 25 16.158813 Anserini +test244 Q0 8892086 26 15.988709 Anserini +test244 Q0 19248054 27 15.988709 Anserini +test244 Q0 2794227 28 15.896707 Anserini +test244 Q0 12167131 29 15.659022 Anserini +test244 Q0 15869623 30 15.659022 Anserini +test2440 Q0 17208628 1 11.571636 Anserini +test2440 Q0 433443 2 11.569097 Anserini +test2440 Q0 13486380 3 11.360541 Anserini +test2440 Q0 7200670 4 11.287910 Anserini +test2440 Q0 9139102 5 11.233119 Anserini +test2440 Q0 5359175 6 11.227990 Anserini +test2440 Q0 8429970 7 11.164450 Anserini +test2440 Q0 13421076 8 11.150536 Anserini +test2440 Q0 11586869 9 11.058269 Anserini +test2440 Q0 17562880 10 11.019901 Anserini +test2440 Q0 11687035 11 10.997785 Anserini +test2440 Q0 5283788 12 10.951574 Anserini +test2440 Q0 17508843 13 10.946441 Anserini +test2440 Q0 6691572 14 10.898584 Anserini +test2440 Q0 17508845 15 10.894441 Anserini +test2440 Q0 2753179 16 10.815056 Anserini +test2440 Q0 13220588 17 10.807663 Anserini +test2440 Q0 12932447 18 10.780791 Anserini +test2440 Q0 12932450 19 10.780791 Anserini +test2440 Q0 16902363 20 10.770061 Anserini +test2440 Q0 10281095 21 10.761892 Anserini +test2440 Q0 20110827 22 10.759064 Anserini +test2440 Q0 17508844 23 10.714852 Anserini +test2440 Q0 11687034 24 10.705753 Anserini +test2440 Q0 5283777 25 10.695253 Anserini +test2440 Q0 12963614 26 10.675220 Anserini +test2440 Q0 8430000 27 10.670636 Anserini +test2440 Q0 20570522 28 10.626112 Anserini +test2440 Q0 14883957 29 10.611953 Anserini +test2440 Q0 8531647 30 10.525303 Anserini +test2441 Q0 20329945 1 16.208143 Anserini +test2441 Q0 20329953 2 16.208143 Anserini +test2441 Q0 19790396 3 15.936049 Anserini +test2441 Q0 8615348 4 15.455155 Anserini +test2441 Q0 1604734 5 15.340292 Anserini +test2441 Q0 1604720 6 14.930688 Anserini +test2441 Q0 18455978 7 14.919087 Anserini +test2441 Q0 18455977 8 14.908955 Anserini +test2441 Q0 19549921 9 14.895057 Anserini +test2441 Q0 19549923 10 14.800827 Anserini +test2441 Q0 20924459 11 14.731196 Anserini +test2441 Q0 16903946 12 14.625601 Anserini +test2441 Q0 8610477 13 14.621052 Anserini +test2441 Q0 20163747 14 14.406587 Anserini +test2441 Q0 4269072 15 14.168104 Anserini +test2441 Q0 20163753 16 14.053039 Anserini +test2441 Q0 2185110 17 13.990757 Anserini +test2441 Q0 12132305 18 13.976089 Anserini +test2441 Q0 2910799 19 13.971936 Anserini +test2441 Q0 18418851 20 13.965305 Anserini +test2441 Q0 18418850 21 13.952807 Anserini +test2441 Q0 20020649 22 13.940683 Anserini +test2441 Q0 13310449 23 13.931305 Anserini +test2441 Q0 11011941 24 13.917706 Anserini +test2441 Q0 1604733 25 13.748612 Anserini +test2441 Q0 2055495 26 13.748612 Anserini +test2441 Q0 16146991 27 13.663853 Anserini +test2441 Q0 16944209 28 13.510019 Anserini +test2441 Q0 18463815 29 13.492969 Anserini +test2441 Q0 8537303 30 13.408163 Anserini +test2442 Q0 7923258 1 9.646491 Anserini +test2442 Q0 1890075 2 9.158690 Anserini +test2442 Q0 1039031 3 9.080695 Anserini +test2442 Q0 11498395 4 9.014221 Anserini +test2442 Q0 1184587 5 8.999735 Anserini +test2442 Q0 1069936 6 8.959051 Anserini +test2442 Q0 7625282 7 8.957674 Anserini +test2442 Q0 12037596 8 8.803170 Anserini +test2442 Q0 6979939 9 8.785536 Anserini +test2442 Q0 12287039 10 8.634156 Anserini +test2442 Q0 4063656 11 8.588158 Anserini +test2442 Q0 12212216 12 8.584182 Anserini +test2442 Q0 343507 13 8.574905 Anserini +test2442 Q0 15566715 14 8.514021 Anserini +test2442 Q0 1170324 15 8.493303 Anserini +test2442 Q0 2923856 16 8.443475 Anserini +test2442 Q0 6436323 17 8.436568 Anserini +test2442 Q0 20234139 18 8.382538 Anserini +test2442 Q0 13799012 19 8.357579 Anserini +test2442 Q0 13051802 20 8.355105 Anserini +test2442 Q0 13051832 21 8.309069 Anserini +test2442 Q0 19422507 22 8.281526 Anserini +test2442 Q0 10079761 23 8.280124 Anserini +test2442 Q0 4057404 24 8.267684 Anserini +test2442 Q0 5845609 25 8.255353 Anserini +test2442 Q0 1170323 26 8.255129 Anserini +test2442 Q0 1170332 27 8.255129 Anserini +test2442 Q0 16956223 28 8.234386 Anserini +test2442 Q0 7785517 29 8.234386 Anserini +test2442 Q0 7992766 30 8.221502 Anserini +test2443 Q0 17745248 1 8.211790 Anserini +test2443 Q0 11016101 2 8.172749 Anserini +test2443 Q0 4239964 3 8.113236 Anserini +test2443 Q0 3455217 4 7.958341 Anserini +test2443 Q0 2168165 5 7.947059 Anserini +test2443 Q0 8304685 6 7.838902 Anserini +test2443 Q0 905212 7 7.779015 Anserini +test2443 Q0 3880154 8 7.770331 Anserini +test2443 Q0 18693745 9 7.725809 Anserini +test2443 Q0 15820215 10 7.725809 Anserini +test2443 Q0 2184822 11 7.703055 Anserini +test2443 Q0 5439632 12 7.699659 Anserini +test2443 Q0 18791642 13 7.655125 Anserini +test2443 Q0 18725405 14 7.655125 Anserini +test2443 Q0 15629553 15 7.655125 Anserini +test2443 Q0 20705007 16 7.655125 Anserini +test2443 Q0 6145343 17 7.600632 Anserini +test2443 Q0 251942 18 7.600632 Anserini +test2443 Q0 19641540 19 7.591581 Anserini +test2443 Q0 17965394 20 7.585773 Anserini +test2443 Q0 11291652 21 7.455706 Anserini +test2443 Q0 5381214 22 7.381429 Anserini +test2443 Q0 1598521 23 7.285294 Anserini +test2443 Q0 13480128 24 7.282929 Anserini +test2443 Q0 371187 25 7.244880 Anserini +test2443 Q0 8815888 26 7.195304 Anserini +test2443 Q0 2367816 27 7.159363 Anserini +test2443 Q0 16852139 28 7.159363 Anserini +test2443 Q0 8569031 29 7.131363 Anserini +test2443 Q0 12783608 30 7.131363 Anserini +test2444 Q0 8620372 1 12.655404 Anserini +test2444 Q0 19354928 2 12.527205 Anserini +test2444 Q0 16071015 3 12.438375 Anserini +test2444 Q0 19354924 4 12.295403 Anserini +test2444 Q0 16071013 5 12.225638 Anserini +test2444 Q0 20902053 6 12.189457 Anserini +test2444 Q0 14642306 7 12.189260 Anserini +test2444 Q0 19354931 8 12.142745 Anserini +test2444 Q0 15133249 9 12.080286 Anserini +test2444 Q0 18177866 10 11.995327 Anserini +test2444 Q0 16654210 11 11.981511 Anserini +test2444 Q0 20462914 12 11.968438 Anserini +test2444 Q0 20462923 13 11.866041 Anserini +test2444 Q0 14140504 14 11.848855 Anserini +test2444 Q0 17195542 15 11.767859 Anserini +test2444 Q0 15133263 16 11.656719 Anserini +test2444 Q0 19354929 17 11.649468 Anserini +test2444 Q0 20795868 18 11.630643 Anserini +test2444 Q0 18487433 19 11.626532 Anserini +test2444 Q0 14642302 20 11.594386 Anserini +test2444 Q0 20902036 21 11.559675 Anserini +test2444 Q0 18346070 22 11.509052 Anserini +test2444 Q0 16073624 23 11.385877 Anserini +test2444 Q0 16954416 24 11.338280 Anserini +test2444 Q0 20658540 25 11.338280 Anserini +test2444 Q0 3217228 26 11.301769 Anserini +test2444 Q0 14642303 27 11.289225 Anserini +test2444 Q0 20629938 28 11.266437 Anserini +test2444 Q0 10790088 29 11.237657 Anserini +test2444 Q0 20798422 30 11.207818 Anserini +test2445 Q0 1610513 1 14.855791 Anserini +test2445 Q0 1610512 2 14.577025 Anserini +test2445 Q0 11707037 3 14.366776 Anserini +test2445 Q0 13650158 4 14.259957 Anserini +test2445 Q0 13650161 5 14.256068 Anserini +test2445 Q0 11707040 6 14.158140 Anserini +test2445 Q0 8236496 7 14.135417 Anserini +test2445 Q0 11707041 8 13.812957 Anserini +test2445 Q0 322385 9 13.551580 Anserini +test2445 Q0 322384 10 13.387338 Anserini +test2445 Q0 17198671 11 13.211849 Anserini +test2445 Q0 9407468 12 13.141919 Anserini +test2445 Q0 3944241 13 13.134199 Anserini +test2445 Q0 687320 14 13.094341 Anserini +test2445 Q0 687312 15 13.038493 Anserini +test2445 Q0 4690207 16 12.831246 Anserini +test2445 Q0 100716 17 12.799917 Anserini +test2445 Q0 7760610 18 12.798134 Anserini +test2445 Q0 322386 19 12.679515 Anserini +test2445 Q0 449726 20 12.672629 Anserini +test2445 Q0 1299945 21 12.529554 Anserini +test2445 Q0 13363089 22 12.437306 Anserini +test2445 Q0 12196509 23 12.430004 Anserini +test2445 Q0 20337227 24 12.424176 Anserini +test2445 Q0 18319439 25 12.354400 Anserini +test2445 Q0 9407467 26 12.187231 Anserini +test2445 Q0 11707038 27 12.168289 Anserini +test2445 Q0 5499009 28 12.060066 Anserini +test2445 Q0 16490602 29 12.060066 Anserini +test2445 Q0 1610511 30 11.933390 Anserini +test2446 Q0 127528 1 12.244355 Anserini +test2446 Q0 127591 2 12.075930 Anserini +test2446 Q0 127557 3 11.792219 Anserini +test2446 Q0 127570 4 11.554014 Anserini +test2446 Q0 127568 5 11.484572 Anserini +test2446 Q0 15168550 6 11.425673 Anserini +test2446 Q0 127585 7 11.425673 Anserini +test2446 Q0 15168555 8 11.425673 Anserini +test2446 Q0 127571 9 11.425673 Anserini +test2446 Q0 127531 10 11.372875 Anserini +test2446 Q0 127541 11 11.361851 Anserini +test2446 Q0 127563 12 11.198046 Anserini +test2446 Q0 20192577 13 11.038987 Anserini +test2446 Q0 127553 14 11.038987 Anserini +test2446 Q0 6227236 15 10.940900 Anserini +test2446 Q0 11294206 16 10.929561 Anserini +test2446 Q0 20344683 17 10.905031 Anserini +test2446 Q0 12704847 18 10.795603 Anserini +test2446 Q0 5936983 19 10.765522 Anserini +test2446 Q0 14623365 20 10.706493 Anserini +test2446 Q0 18609696 21 10.547812 Anserini +test2446 Q0 127532 22 10.495325 Anserini +test2446 Q0 127535 23 10.495325 Anserini +test2446 Q0 127586 24 10.432577 Anserini +test2446 Q0 20999406 25 10.382431 Anserini +test2446 Q0 20358551 26 10.368648 Anserini +test2446 Q0 5419299 27 10.335063 Anserini +test2446 Q0 127580 28 10.314821 Anserini +test2446 Q0 127584 29 10.314821 Anserini +test2446 Q0 127589 30 10.314821 Anserini +test2447 Q0 9614011 1 11.959947 Anserini +test2447 Q0 8498404 2 10.676858 Anserini +test2447 Q0 13984700 3 10.471739 Anserini +test2447 Q0 4690736 4 10.292823 Anserini +test2447 Q0 3517300 5 10.230176 Anserini +test2447 Q0 9158451 6 10.188641 Anserini +test2447 Q0 4690751 7 10.184484 Anserini +test2447 Q0 8471311 8 10.026811 Anserini +test2447 Q0 6871834 9 9.894614 Anserini +test2447 Q0 2882672 10 9.875667 Anserini +test2447 Q0 4500146 11 9.861262 Anserini +test2447 Q0 2882711 12 9.820951 Anserini +test2447 Q0 8197419 13 9.817706 Anserini +test2447 Q0 3876304 14 9.776966 Anserini +test2447 Q0 12712401 15 9.755365 Anserini +test2447 Q0 2547438 16 9.696557 Anserini +test2447 Q0 5833048 17 9.635841 Anserini +test2447 Q0 12235072 18 9.627227 Anserini +test2447 Q0 20334053 19 9.613369 Anserini +test2447 Q0 5815454 20 9.590251 Anserini +test2447 Q0 14917578 21 9.530439 Anserini +test2447 Q0 10036410 22 9.467526 Anserini +test2447 Q0 20443734 23 9.467526 Anserini +test2447 Q0 15426071 24 9.431273 Anserini +test2447 Q0 2569191 25 9.421724 Anserini +test2447 Q0 18826472 26 9.421724 Anserini +test2447 Q0 8890939 27 9.402771 Anserini +test2447 Q0 17256455 28 9.398792 Anserini +test2447 Q0 15426068 29 9.385207 Anserini +test2447 Q0 7374766 30 9.357768 Anserini +test2448 Q0 17771467 1 17.540539 Anserini +test2448 Q0 19871746 2 16.003740 Anserini +test2448 Q0 19871748 3 15.865147 Anserini +test2448 Q0 17771463 4 15.687467 Anserini +test2448 Q0 17771466 5 15.310671 Anserini +test2448 Q0 17201025 6 13.853301 Anserini +test2448 Q0 5541547 7 12.887820 Anserini +test2448 Q0 8329602 8 12.439266 Anserini +test2448 Q0 16643548 9 12.206314 Anserini +test2448 Q0 15093300 10 12.174508 Anserini +test2448 Q0 16036255 11 11.559285 Anserini +test2448 Q0 388602 12 11.300050 Anserini +test2448 Q0 18886814 13 11.240129 Anserini +test2448 Q0 11775857 14 11.232897 Anserini +test2448 Q0 16515926 15 11.230531 Anserini +test2448 Q0 20011611 16 11.184738 Anserini +test2448 Q0 20863775 17 11.151016 Anserini +test2448 Q0 11775852 18 11.059107 Anserini +test2448 Q0 869903 19 10.973113 Anserini +test2448 Q0 14528327 20 10.915509 Anserini +test2448 Q0 15567561 21 10.888503 Anserini +test2448 Q0 17426181 22 10.825589 Anserini +test2448 Q0 8988997 23 10.777370 Anserini +test2448 Q0 12370601 24 10.776014 Anserini +test2448 Q0 15380038 25 10.722116 Anserini +test2448 Q0 11720889 26 10.721781 Anserini +test2448 Q0 17426174 27 10.666599 Anserini +test2448 Q0 20463738 28 10.663125 Anserini +test2448 Q0 13195861 29 10.659635 Anserini +test2448 Q0 9388170 30 10.584229 Anserini +test2449 Q0 456929 1 22.463936 Anserini +test2449 Q0 154177 2 19.098213 Anserini +test2449 Q0 15549630 3 18.764816 Anserini +test2449 Q0 3717632 4 17.714697 Anserini +test2449 Q0 1706765 5 17.595903 Anserini +test2449 Q0 3114608 6 17.575439 Anserini +test2449 Q0 2418515 7 16.791319 Anserini +test2449 Q0 6106743 8 16.590971 Anserini +test2449 Q0 2919766 9 16.395859 Anserini +test2449 Q0 15549637 10 16.322550 Anserini +test2449 Q0 13979929 11 16.262321 Anserini +test2449 Q0 15549640 12 15.770571 Anserini +test2449 Q0 8293398 13 15.511644 Anserini +test2449 Q0 6106742 14 15.499325 Anserini +test2449 Q0 13340364 15 15.355309 Anserini +test2449 Q0 10288665 16 15.340938 Anserini +test2449 Q0 15549634 17 15.101036 Anserini +test2449 Q0 154201 18 14.916752 Anserini +test2449 Q0 154172 19 14.781136 Anserini +test2449 Q0 18306423 20 14.626884 Anserini +test2449 Q0 10288666 21 14.491453 Anserini +test2449 Q0 1616622 22 14.472218 Anserini +test2449 Q0 18306420 23 14.457468 Anserini +test2449 Q0 16605435 24 14.430967 Anserini +test2449 Q0 19918244 25 14.304255 Anserini +test2449 Q0 154191 26 14.115411 Anserini +test2449 Q0 17128368 27 13.875864 Anserini +test2449 Q0 19542693 28 13.875864 Anserini +test2449 Q0 15824736 29 13.797005 Anserini +test2449 Q0 10288667 30 13.747219 Anserini +test245 Q0 4523970 1 14.205963 Anserini +test245 Q0 11240915 2 12.375521 Anserini +test245 Q0 583862 3 11.782698 Anserini +test245 Q0 17432274 4 11.701864 Anserini +test245 Q0 9665520 5 11.648412 Anserini +test245 Q0 4187994 6 11.257092 Anserini +test245 Q0 583867 7 11.249613 Anserini +test245 Q0 13098194 8 10.930395 Anserini +test245 Q0 439978 9 10.630823 Anserini +test245 Q0 1297545 10 10.282414 Anserini +test245 Q0 10868012 11 10.222735 Anserini +test245 Q0 602504 12 10.176581 Anserini +test245 Q0 11072901 13 10.064772 Anserini +test245 Q0 602516 14 10.024481 Anserini +test245 Q0 18340125 15 10.001037 Anserini +test245 Q0 4501239 16 9.962929 Anserini +test245 Q0 9773238 17 9.940308 Anserini +test245 Q0 13098147 18 9.913897 Anserini +test245 Q0 583876 19 9.848978 Anserini +test245 Q0 2968831 20 9.845380 Anserini +test245 Q0 969214 21 9.784634 Anserini +test245 Q0 4523972 22 9.715528 Anserini +test245 Q0 8344014 23 9.680534 Anserini +test245 Q0 13933030 24 9.680534 Anserini +test245 Q0 583865 25 9.639261 Anserini +test245 Q0 6004720 26 9.628798 Anserini +test245 Q0 3281434 27 9.610994 Anserini +test245 Q0 7587036 28 9.610994 Anserini +test245 Q0 15425128 29 9.591447 Anserini +test245 Q0 17755620 30 9.527435 Anserini +test2450 Q0 5834288 1 15.212322 Anserini +test2450 Q0 11758193 2 15.132306 Anserini +test2450 Q0 12612979 3 14.837973 Anserini +test2450 Q0 17916163 4 14.200615 Anserini +test2450 Q0 12612983 5 14.191453 Anserini +test2450 Q0 8671111 6 14.167880 Anserini +test2450 Q0 14944008 7 14.000319 Anserini +test2450 Q0 525725 8 13.989478 Anserini +test2450 Q0 6846866 9 13.951838 Anserini +test2450 Q0 19292182 10 13.885053 Anserini +test2450 Q0 8671113 11 13.820212 Anserini +test2450 Q0 15900084 12 13.705928 Anserini +test2450 Q0 8588618 13 13.702717 Anserini +test2450 Q0 16492040 14 13.527946 Anserini +test2450 Q0 16492123 15 13.499989 Anserini +test2450 Q0 17916164 16 13.499789 Anserini +test2450 Q0 12612980 17 13.452682 Anserini +test2450 Q0 19637431 18 13.433854 Anserini +test2450 Q0 20661439 19 13.402773 Anserini +test2450 Q0 16489135 20 13.386015 Anserini +test2450 Q0 6846871 21 13.314708 Anserini +test2450 Q0 11637856 22 13.276739 Anserini +test2450 Q0 12612982 23 13.268622 Anserini +test2450 Q0 14537089 24 13.261342 Anserini +test2450 Q0 6846872 25 13.244046 Anserini +test2450 Q0 11758194 26 13.242170 Anserini +test2450 Q0 7962358 27 13.238405 Anserini +test2450 Q0 7963445 28 13.233889 Anserini +test2450 Q0 16492120 29 13.227944 Anserini +test2450 Q0 14944007 30 13.210423 Anserini +test2451 Q0 6233266 1 15.506744 Anserini +test2451 Q0 446509 2 15.001317 Anserini +test2451 Q0 15627514 3 14.159142 Anserini +test2451 Q0 5587474 4 13.986258 Anserini +test2451 Q0 6233259 5 13.145763 Anserini +test2451 Q0 1894343 6 12.912630 Anserini +test2451 Q0 19507106 7 12.853484 Anserini +test2451 Q0 6804631 8 12.776699 Anserini +test2451 Q0 8494137 9 12.643599 Anserini +test2451 Q0 7748168 10 12.414055 Anserini +test2451 Q0 8432942 11 12.323168 Anserini +test2451 Q0 13414044 12 12.237441 Anserini +test2451 Q0 13414010 13 12.237441 Anserini +test2451 Q0 13601709 14 12.233962 Anserini +test2451 Q0 1263373 15 12.177108 Anserini +test2451 Q0 2441589 16 12.136307 Anserini +test2451 Q0 10892499 17 12.110437 Anserini +test2451 Q0 6804635 18 12.107995 Anserini +test2451 Q0 4712529 19 11.912098 Anserini +test2451 Q0 3263367 20 11.803275 Anserini +test2451 Q0 9387108 21 11.733012 Anserini +test2451 Q0 4688328 22 11.691099 Anserini +test2451 Q0 1894353 23 11.535192 Anserini +test2451 Q0 15688490 24 11.456081 Anserini +test2451 Q0 7170260 25 11.393352 Anserini +test2451 Q0 7938702 26 11.341014 Anserini +test2451 Q0 8610039 27 11.301720 Anserini +test2451 Q0 11303157 28 11.287146 Anserini +test2451 Q0 12816873 29 11.265868 Anserini +test2451 Q0 15688502 30 11.255876 Anserini +test2452 Q0 4643034 1 14.345126 Anserini +test2452 Q0 4643033 2 13.168229 Anserini +test2452 Q0 4643032 3 13.153736 Anserini +test2452 Q0 4643031 4 12.780947 Anserini +test2452 Q0 19915986 5 12.753609 Anserini +test2452 Q0 6965565 6 12.638737 Anserini +test2452 Q0 16466866 7 12.619114 Anserini +test2452 Q0 2448768 8 12.565422 Anserini +test2452 Q0 6965557 9 12.355493 Anserini +test2452 Q0 10981903 10 12.286351 Anserini +test2452 Q0 6928187 11 12.123490 Anserini +test2452 Q0 3436458 12 12.087431 Anserini +test2452 Q0 4643024 13 12.026680 Anserini +test2452 Q0 2613275 14 11.908784 Anserini +test2452 Q0 15022329 15 11.693973 Anserini +test2452 Q0 6860904 16 11.597093 Anserini +test2452 Q0 6860893 17 11.597093 Anserini +test2452 Q0 4643038 18 11.586573 Anserini +test2452 Q0 16972147 19 11.513057 Anserini +test2452 Q0 4643030 20 11.480563 Anserini +test2452 Q0 3790566 21 11.433900 Anserini +test2452 Q0 15075339 22 11.395600 Anserini +test2452 Q0 4630820 23 11.370114 Anserini +test2452 Q0 18236395 24 11.368450 Anserini +test2452 Q0 2677685 25 11.342979 Anserini +test2452 Q0 16890283 26 11.329239 Anserini +test2452 Q0 5444632 27 11.297193 Anserini +test2452 Q0 2448803 28 11.277884 Anserini +test2452 Q0 14260431 29 11.230633 Anserini +test2452 Q0 16265220 30 11.219105 Anserini +test2453 Q0 15283927 1 11.804213 Anserini +test2453 Q0 2022647 2 11.175413 Anserini +test2453 Q0 9580607 3 11.158768 Anserini +test2453 Q0 795229 4 11.035460 Anserini +test2453 Q0 17631307 5 10.787985 Anserini +test2453 Q0 795225 6 10.693706 Anserini +test2453 Q0 9580611 7 10.586537 Anserini +test2453 Q0 5596244 8 10.475658 Anserini +test2453 Q0 6285268 9 10.455050 Anserini +test2453 Q0 11944111 10 10.281905 Anserini +test2453 Q0 11944112 11 10.281905 Anserini +test2453 Q0 16066621 12 10.279970 Anserini +test2453 Q0 16066620 13 10.279970 Anserini +test2453 Q0 2725113 14 10.240129 Anserini +test2453 Q0 17935117 15 10.211798 Anserini +test2453 Q0 795246 16 10.211798 Anserini +test2453 Q0 10041103 17 10.142979 Anserini +test2453 Q0 849823 18 10.079349 Anserini +test2453 Q0 795224 19 10.005651 Anserini +test2453 Q0 2581869 20 9.984264 Anserini +test2453 Q0 849634 21 9.915295 Anserini +test2453 Q0 18065689 22 9.873497 Anserini +test2453 Q0 9859640 23 9.820377 Anserini +test2453 Q0 2147649 24 9.816128 Anserini +test2453 Q0 18368370 25 9.792412 Anserini +test2453 Q0 2618447 26 9.690369 Anserini +test2453 Q0 9298034 27 9.664387 Anserini +test2453 Q0 2478246 28 9.647560 Anserini +test2453 Q0 6198610 29 9.585884 Anserini +test2453 Q0 7063212 30 9.575584 Anserini +test2454 Q0 1710919 1 18.044485 Anserini +test2454 Q0 8730383 2 17.756411 Anserini +test2454 Q0 18063092 3 15.984980 Anserini +test2454 Q0 1505224 4 15.565243 Anserini +test2454 Q0 1911183 5 15.550863 Anserini +test2454 Q0 1505220 6 15.232362 Anserini +test2454 Q0 430745 7 15.223575 Anserini +test2454 Q0 448573 8 14.771057 Anserini +test2454 Q0 14165991 9 14.342803 Anserini +test2454 Q0 7461950 10 14.162468 Anserini +test2454 Q0 19216468 11 14.161657 Anserini +test2454 Q0 17950129 12 14.161331 Anserini +test2454 Q0 12608717 13 14.145847 Anserini +test2454 Q0 19216471 14 14.067945 Anserini +test2454 Q0 10116727 15 13.803349 Anserini +test2454 Q0 20321995 16 13.795038 Anserini +test2454 Q0 8011727 17 13.781651 Anserini +test2454 Q0 19216466 18 13.740738 Anserini +test2454 Q0 10265062 19 13.724359 Anserini +test2454 Q0 3667189 20 13.706382 Anserini +test2454 Q0 1372074 21 13.706299 Anserini +test2454 Q0 16388197 22 13.680200 Anserini +test2454 Q0 8828192 23 13.655651 Anserini +test2454 Q0 3325157 24 13.605892 Anserini +test2454 Q0 2351667 25 13.591546 Anserini +test2454 Q0 13979272 26 13.526546 Anserini +test2454 Q0 19216469 27 13.457627 Anserini +test2454 Q0 5501161 28 13.345489 Anserini +test2454 Q0 7818381 29 13.241144 Anserini +test2454 Q0 10335927 30 13.178667 Anserini +test2455 Q0 3344199 1 10.905095 Anserini +test2455 Q0 7772693 2 10.101015 Anserini +test2455 Q0 10528189 3 9.776124 Anserini +test2455 Q0 892889 4 9.712296 Anserini +test2455 Q0 19340382 5 9.585741 Anserini +test2455 Q0 242648 6 9.526224 Anserini +test2455 Q0 892895 7 9.448511 Anserini +test2455 Q0 1474843 8 9.331842 Anserini +test2455 Q0 892908 9 9.285784 Anserini +test2455 Q0 14622657 10 9.204322 Anserini +test2455 Q0 892885 11 9.204322 Anserini +test2455 Q0 8712650 12 9.187063 Anserini +test2455 Q0 1684064 13 9.111445 Anserini +test2455 Q0 18040774 14 9.111445 Anserini +test2455 Q0 17649578 15 9.028471 Anserini +test2455 Q0 3344198 16 9.003017 Anserini +test2455 Q0 14622656 17 8.973493 Anserini +test2455 Q0 12963491 18 8.973493 Anserini +test2455 Q0 516186 19 8.967151 Anserini +test2455 Q0 3890074 20 8.967151 Anserini +test2455 Q0 406183 21 8.957640 Anserini +test2455 Q0 455581 22 8.948318 Anserini +test2455 Q0 13105880 23 8.934418 Anserini +test2455 Q0 892914 24 8.912809 Anserini +test2455 Q0 5350903 25 8.912809 Anserini +test2455 Q0 14622722 26 8.902212 Anserini +test2455 Q0 1533340 27 8.896774 Anserini +test2455 Q0 13124107 28 8.865613 Anserini +test2455 Q0 117060 29 8.832103 Anserini +test2455 Q0 14622625 30 8.832103 Anserini +test2456 Q0 5869662 1 10.444447 Anserini +test2456 Q0 1273644 2 9.857190 Anserini +test2456 Q0 16099570 3 9.793011 Anserini +test2456 Q0 2146247 4 9.545311 Anserini +test2456 Q0 14610620 5 9.449971 Anserini +test2456 Q0 5869619 6 9.294734 Anserini +test2456 Q0 5869620 7 9.281495 Anserini +test2456 Q0 6889486 8 9.212043 Anserini +test2456 Q0 12998802 9 9.205430 Anserini +test2456 Q0 14358973 10 9.135269 Anserini +test2456 Q0 2537883 11 9.120810 Anserini +test2456 Q0 6090204 12 9.047197 Anserini +test2456 Q0 4221953 13 9.039865 Anserini +test2456 Q0 13459006 14 8.977051 Anserini +test2456 Q0 10803938 15 8.939990 Anserini +test2456 Q0 260360 16 8.891723 Anserini +test2456 Q0 7212049 17 8.874586 Anserini +test2456 Q0 14719868 18 8.784441 Anserini +test2456 Q0 6090210 19 8.780794 Anserini +test2456 Q0 2749398 20 8.766738 Anserini +test2456 Q0 214253 21 8.761927 Anserini +test2456 Q0 2256443 22 8.761832 Anserini +test2456 Q0 3952534 23 8.759989 Anserini +test2456 Q0 5478300 24 8.738104 Anserini +test2456 Q0 6249565 25 8.734540 Anserini +test2456 Q0 8243666 26 8.702247 Anserini +test2456 Q0 543652 27 8.673468 Anserini +test2456 Q0 14396542 28 8.633688 Anserini +test2456 Q0 4320957 29 8.630483 Anserini +test2456 Q0 617499 30 8.616098 Anserini +test2457 Q0 1276429 1 15.716819 Anserini +test2457 Q0 2191041 2 15.390826 Anserini +test2457 Q0 6079037 3 14.662394 Anserini +test2457 Q0 8844644 4 13.812388 Anserini +test2457 Q0 1276428 5 13.493597 Anserini +test2457 Q0 1991954 6 13.395277 Anserini +test2457 Q0 2465187 7 13.229987 Anserini +test2457 Q0 1276404 8 12.658129 Anserini +test2457 Q0 2191034 9 12.196176 Anserini +test2457 Q0 18192745 10 12.093371 Anserini +test2457 Q0 16983888 11 12.090641 Anserini +test2457 Q0 19440958 12 11.860364 Anserini +test2457 Q0 18192741 13 11.812710 Anserini +test2457 Q0 1276418 14 11.781267 Anserini +test2457 Q0 640086 15 11.758021 Anserini +test2457 Q0 15871307 16 11.643929 Anserini +test2457 Q0 1276416 17 11.618275 Anserini +test2457 Q0 6079033 18 11.559865 Anserini +test2457 Q0 20123697 19 11.479497 Anserini +test2457 Q0 19934472 20 11.459916 Anserini +test2457 Q0 1276410 21 11.459916 Anserini +test2457 Q0 7412070 22 11.352113 Anserini +test2457 Q0 16346430 23 11.347463 Anserini +test2457 Q0 7822150 24 11.292276 Anserini +test2457 Q0 18105328 25 11.291353 Anserini +test2457 Q0 3429329 26 11.222260 Anserini +test2457 Q0 1276443 27 11.210251 Anserini +test2457 Q0 18009605 28 11.178169 Anserini +test2457 Q0 9745600 29 11.140066 Anserini +test2457 Q0 1276403 30 11.140066 Anserini +test2458 Q0 7174100 1 23.557564 Anserini +test2458 Q0 7174097 2 21.764660 Anserini +test2458 Q0 6505383 3 21.151579 Anserini +test2458 Q0 14136814 4 20.124380 Anserini +test2458 Q0 20143074 5 20.041849 Anserini +test2458 Q0 15641665 6 19.736328 Anserini +test2458 Q0 12695981 7 19.404432 Anserini +test2458 Q0 5636983 8 19.104656 Anserini +test2458 Q0 11173611 9 18.820490 Anserini +test2458 Q0 15627213 10 18.484314 Anserini +test2458 Q0 17270728 11 18.294426 Anserini +test2458 Q0 19574983 12 18.091009 Anserini +test2458 Q0 20168384 13 18.042328 Anserini +test2458 Q0 15436316 14 18.008196 Anserini +test2458 Q0 16491024 15 17.493460 Anserini +test2458 Q0 12062006 16 17.416075 Anserini +test2458 Q0 13066682 17 17.382534 Anserini +test2458 Q0 13953114 18 17.368237 Anserini +test2458 Q0 7399248 19 17.327765 Anserini +test2458 Q0 13778032 20 17.270945 Anserini +test2458 Q0 20456950 21 16.779177 Anserini +test2458 Q0 12871771 22 16.625736 Anserini +test2458 Q0 12871770 23 16.440174 Anserini +test2458 Q0 7399247 24 16.299137 Anserini +test2458 Q0 7776369 25 16.241005 Anserini +test2458 Q0 7174099 26 16.240759 Anserini +test2458 Q0 20139554 27 16.171684 Anserini +test2458 Q0 19777651 28 16.171684 Anserini +test2458 Q0 20801789 29 16.109020 Anserini +test2458 Q0 7174098 30 15.883464 Anserini +test2459 Q0 5077341 1 14.383861 Anserini +test2459 Q0 17233067 2 14.109547 Anserini +test2459 Q0 9284010 3 14.054428 Anserini +test2459 Q0 15430424 4 13.971930 Anserini +test2459 Q0 20270884 5 13.786129 Anserini +test2459 Q0 2611452 6 13.756615 Anserini +test2459 Q0 12145678 7 13.557549 Anserini +test2459 Q0 9284005 8 13.509812 Anserini +test2459 Q0 3561089 9 13.480555 Anserini +test2459 Q0 9284004 10 13.475954 Anserini +test2459 Q0 12145675 11 13.255924 Anserini +test2459 Q0 12145676 12 13.192083 Anserini +test2459 Q0 9284006 13 13.154975 Anserini +test2459 Q0 12145677 14 13.092201 Anserini +test2459 Q0 5463955 15 13.068775 Anserini +test2459 Q0 18239323 16 13.051824 Anserini +test2459 Q0 4385095 17 12.920349 Anserini +test2459 Q0 18981800 18 12.793592 Anserini +test2459 Q0 4339402 19 12.657102 Anserini +test2459 Q0 9284009 20 12.657102 Anserini +test2459 Q0 2611458 21 12.618951 Anserini +test2459 Q0 12556735 22 12.582367 Anserini +test2459 Q0 18239325 23 12.530966 Anserini +test2459 Q0 12145681 24 12.485630 Anserini +test2459 Q0 12850160 25 12.455418 Anserini +test2459 Q0 12145688 26 12.439989 Anserini +test2459 Q0 9284002 27 12.431005 Anserini +test2459 Q0 5816012 28 12.385743 Anserini +test2459 Q0 4490185 29 12.279717 Anserini +test2459 Q0 4385088 30 12.250557 Anserini +test246 Q0 238721 1 13.336416 Anserini +test246 Q0 16292 2 12.756905 Anserini +test246 Q0 236209 3 12.155292 Anserini +test246 Q0 238774 4 12.016985 Anserini +test246 Q0 254511 5 11.945463 Anserini +test246 Q0 3924292 6 11.908581 Anserini +test246 Q0 254581 7 11.372971 Anserini +test246 Q0 9247220 8 11.280392 Anserini +test246 Q0 343450 9 11.166800 Anserini +test246 Q0 4861844 10 11.072349 Anserini +test246 Q0 9247221 11 10.978936 Anserini +test246 Q0 2295400 12 10.934623 Anserini +test246 Q0 415167 13 10.846357 Anserini +test246 Q0 111474 14 10.784798 Anserini +test246 Q0 11505717 15 10.737573 Anserini +test246 Q0 3184993 16 10.430961 Anserini +test246 Q0 7718348 17 10.424185 Anserini +test246 Q0 942521 18 10.401510 Anserini +test246 Q0 238777 19 10.320543 Anserini +test246 Q0 238756 20 10.294393 Anserini +test246 Q0 7760787 21 10.243279 Anserini +test246 Q0 10828160 22 10.193977 Anserini +test246 Q0 10828155 23 10.193977 Anserini +test246 Q0 12197865 24 10.193963 Anserini +test246 Q0 1405779 25 10.193178 Anserini +test246 Q0 5872134 26 10.183179 Anserini +test246 Q0 15940399 27 10.183179 Anserini +test246 Q0 1839411 28 10.132794 Anserini +test246 Q0 372547 29 10.101433 Anserini +test246 Q0 257619 30 10.090056 Anserini +test2460 Q0 9819245 1 12.065195 Anserini +test2460 Q0 9819252 2 12.031693 Anserini +test2460 Q0 14708147 3 11.940536 Anserini +test2460 Q0 9184097 4 11.475315 Anserini +test2460 Q0 10380998 5 11.319934 Anserini +test2460 Q0 10380997 6 11.143499 Anserini +test2460 Q0 7254889 7 10.730553 Anserini +test2460 Q0 3451146 8 10.705312 Anserini +test2460 Q0 5985291 9 10.653042 Anserini +test2460 Q0 5985293 10 10.653042 Anserini +test2460 Q0 20920596 11 10.576666 Anserini +test2460 Q0 10380976 12 10.550475 Anserini +test2460 Q0 14819020 13 10.496655 Anserini +test2460 Q0 10380979 14 10.414552 Anserini +test2460 Q0 1579518 15 10.333773 Anserini +test2460 Q0 17031363 16 10.333773 Anserini +test2460 Q0 20831299 17 10.333773 Anserini +test2460 Q0 20831296 18 10.333773 Anserini +test2460 Q0 11161191 19 10.284514 Anserini +test2460 Q0 1579412 20 10.284514 Anserini +test2460 Q0 3237196 21 10.284514 Anserini +test2460 Q0 7263725 22 10.284514 Anserini +test2460 Q0 8116032 23 10.254286 Anserini +test2460 Q0 8154808 24 10.237316 Anserini +test2460 Q0 3312468 25 10.224758 Anserini +test2460 Q0 17985191 26 10.190464 Anserini +test2460 Q0 13195024 27 10.176057 Anserini +test2460 Q0 12743227 28 10.176057 Anserini +test2460 Q0 16372916 29 10.099056 Anserini +test2460 Q0 3592445 30 10.093094 Anserini +test2461 Q0 7961528 1 20.340168 Anserini +test2461 Q0 1901253 2 20.110159 Anserini +test2461 Q0 1901268 3 20.110159 Anserini +test2461 Q0 7961524 4 19.904238 Anserini +test2461 Q0 7961523 5 19.904238 Anserini +test2461 Q0 1901265 6 18.256439 Anserini +test2461 Q0 8969129 7 17.996035 Anserini +test2461 Q0 1901263 8 17.908777 Anserini +test2461 Q0 7961526 9 17.338934 Anserini +test2461 Q0 1901266 10 17.154335 Anserini +test2461 Q0 6436381 11 17.122906 Anserini +test2461 Q0 2707120 12 16.744961 Anserini +test2461 Q0 354275 13 16.711264 Anserini +test2461 Q0 17592225 14 16.675911 Anserini +test2461 Q0 17592220 15 16.437731 Anserini +test2461 Q0 7961527 16 16.201693 Anserini +test2461 Q0 354290 17 16.146242 Anserini +test2461 Q0 19078653 18 16.005178 Anserini +test2461 Q0 1901262 19 15.950123 Anserini +test2461 Q0 1901258 20 15.728370 Anserini +test2461 Q0 10318254 21 15.522514 Anserini +test2461 Q0 1901259 22 15.475084 Anserini +test2461 Q0 5997333 23 15.259334 Anserini +test2461 Q0 1901260 24 15.252672 Anserini +test2461 Q0 1901257 25 15.135748 Anserini +test2461 Q0 12385375 26 15.130162 Anserini +test2461 Q0 1901254 27 15.130162 Anserini +test2461 Q0 2880206 28 15.130162 Anserini +test2461 Q0 1901256 29 15.117033 Anserini +test2461 Q0 15300071 30 15.003254 Anserini +test2462 Q0 5282431 1 15.871243 Anserini +test2462 Q0 16092359 2 15.659540 Anserini +test2462 Q0 983606 3 15.659540 Anserini +test2462 Q0 10757989 4 15.618755 Anserini +test2462 Q0 4193998 5 15.543962 Anserini +test2462 Q0 16125407 6 15.502272 Anserini +test2462 Q0 4638742 7 15.495887 Anserini +test2462 Q0 16055397 8 15.474376 Anserini +test2462 Q0 16106604 9 15.470629 Anserini +test2462 Q0 20533417 10 15.377352 Anserini +test2462 Q0 6544097 11 15.292440 Anserini +test2462 Q0 4493462 12 15.109195 Anserini +test2462 Q0 1382040 13 15.057190 Anserini +test2462 Q0 17297527 14 14.994059 Anserini +test2462 Q0 6496884 15 14.935367 Anserini +test2462 Q0 4510563 16 14.908101 Anserini +test2462 Q0 6179695 17 14.828332 Anserini +test2462 Q0 10434841 18 14.797280 Anserini +test2462 Q0 17061043 19 14.774933 Anserini +test2462 Q0 15713339 20 14.760028 Anserini +test2462 Q0 3728024 21 14.754379 Anserini +test2462 Q0 13530224 22 14.706053 Anserini +test2462 Q0 16106233 23 14.702708 Anserini +test2462 Q0 3350522 24 14.667038 Anserini +test2462 Q0 7510032 25 14.665374 Anserini +test2462 Q0 2764908 26 14.654220 Anserini +test2462 Q0 12375952 27 14.654220 Anserini +test2462 Q0 3350587 28 14.644703 Anserini +test2462 Q0 19931292 29 14.556054 Anserini +test2462 Q0 20878112 30 14.544003 Anserini +test2463 Q0 8126576 1 13.350612 Anserini +test2463 Q0 14022819 2 13.132420 Anserini +test2463 Q0 14022818 3 13.130572 Anserini +test2463 Q0 4752432 4 13.083351 Anserini +test2463 Q0 1676623 5 13.063192 Anserini +test2463 Q0 1873252 6 12.937485 Anserini +test2463 Q0 1676624 7 12.829909 Anserini +test2463 Q0 8126580 8 12.801591 Anserini +test2463 Q0 20514414 9 12.783773 Anserini +test2463 Q0 1676626 10 12.704678 Anserini +test2463 Q0 15315927 11 12.615186 Anserini +test2463 Q0 9381898 12 12.454870 Anserini +test2463 Q0 1676616 13 12.366895 Anserini +test2463 Q0 140911 14 12.347182 Anserini +test2463 Q0 9395348 15 12.276582 Anserini +test2463 Q0 13879384 16 12.236038 Anserini +test2463 Q0 20839071 17 12.224479 Anserini +test2463 Q0 1718966 18 12.169491 Anserini +test2463 Q0 8449088 19 12.165640 Anserini +test2463 Q0 19556301 20 12.147003 Anserini +test2463 Q0 13226968 21 12.134676 Anserini +test2463 Q0 9399418 22 12.055853 Anserini +test2463 Q0 6411318 23 12.047146 Anserini +test2463 Q0 19975122 24 12.024462 Anserini +test2463 Q0 13353786 25 11.912219 Anserini +test2463 Q0 59765 26 11.832510 Anserini +test2463 Q0 8449093 27 11.807700 Anserini +test2463 Q0 17669302 28 11.759673 Anserini +test2463 Q0 8126584 29 11.739368 Anserini +test2463 Q0 1676629 30 11.737648 Anserini +test2464 Q0 1688484 1 16.697275 Anserini +test2464 Q0 2223848 2 15.723607 Anserini +test2464 Q0 15324367 3 14.494727 Anserini +test2464 Q0 14152926 4 14.358704 Anserini +test2464 Q0 2223824 5 13.797362 Anserini +test2464 Q0 15324387 6 13.744837 Anserini +test2464 Q0 2223800 7 13.669868 Anserini +test2464 Q0 12932653 8 13.403101 Anserini +test2464 Q0 2223829 9 13.091764 Anserini +test2464 Q0 2223846 10 13.091764 Anserini +test2464 Q0 7162059 11 12.722855 Anserini +test2464 Q0 2739836 12 12.461446 Anserini +test2464 Q0 15324382 13 12.347989 Anserini +test2464 Q0 1688527 14 12.264358 Anserini +test2464 Q0 2223801 15 12.058224 Anserini +test2464 Q0 2223825 16 11.968713 Anserini +test2464 Q0 2223805 17 11.926569 Anserini +test2464 Q0 15324369 18 11.923007 Anserini +test2464 Q0 16298225 19 11.817019 Anserini +test2464 Q0 7475636 20 11.743560 Anserini +test2464 Q0 1688470 21 11.682354 Anserini +test2464 Q0 2739832 22 11.627903 Anserini +test2464 Q0 6656822 23 11.560163 Anserini +test2464 Q0 2223847 24 11.496925 Anserini +test2464 Q0 2223896 25 11.417847 Anserini +test2464 Q0 8074749 26 11.394640 Anserini +test2464 Q0 2223822 27 11.375314 Anserini +test2464 Q0 2223799 28 11.315344 Anserini +test2464 Q0 2223751 29 11.315344 Anserini +test2464 Q0 2223827 30 11.286280 Anserini +test2465 Q0 6902897 1 21.778494 Anserini +test2465 Q0 6902883 2 21.516483 Anserini +test2465 Q0 6902888 3 21.072247 Anserini +test2465 Q0 6902890 4 17.713781 Anserini +test2465 Q0 9562062 5 16.899612 Anserini +test2465 Q0 6902892 6 16.873707 Anserini +test2465 Q0 6902884 7 16.733406 Anserini +test2465 Q0 6902889 8 16.387512 Anserini +test2465 Q0 14102958 9 16.378733 Anserini +test2465 Q0 8141559 10 16.375246 Anserini +test2465 Q0 6834874 11 16.289728 Anserini +test2465 Q0 6902895 12 16.008253 Anserini +test2465 Q0 6902893 13 15.629122 Anserini +test2465 Q0 6902891 14 15.531532 Anserini +test2465 Q0 6902896 15 15.521944 Anserini +test2465 Q0 6834878 16 15.467676 Anserini +test2465 Q0 5887704 17 15.325712 Anserini +test2465 Q0 3268606 18 15.325368 Anserini +test2465 Q0 3268617 19 15.325368 Anserini +test2465 Q0 4122146 20 15.166301 Anserini +test2465 Q0 3268612 21 15.006376 Anserini +test2465 Q0 4993701 22 14.794743 Anserini +test2465 Q0 6902886 23 14.790677 Anserini +test2465 Q0 1904161 24 14.633671 Anserini +test2465 Q0 8141563 25 14.559793 Anserini +test2465 Q0 1904121 26 14.545259 Anserini +test2465 Q0 5363406 27 14.489947 Anserini +test2465 Q0 3809369 28 14.476588 Anserini +test2465 Q0 4802888 29 14.463965 Anserini +test2465 Q0 3809362 30 14.357022 Anserini +test2466 Q0 2611418 1 15.435026 Anserini +test2466 Q0 434087 2 13.818285 Anserini +test2466 Q0 9585661 3 13.052137 Anserini +test2466 Q0 6464453 4 12.950830 Anserini +test2466 Q0 2390973 5 12.907394 Anserini +test2466 Q0 5597466 6 12.586683 Anserini +test2466 Q0 7314300 7 12.573148 Anserini +test2466 Q0 5203730 8 12.483486 Anserini +test2466 Q0 15625278 9 12.353865 Anserini +test2466 Q0 7225431 10 12.333080 Anserini +test2466 Q0 9019257 11 12.303316 Anserini +test2466 Q0 12287540 12 12.282988 Anserini +test2466 Q0 2856843 13 12.244691 Anserini +test2466 Q0 482534 14 12.238197 Anserini +test2466 Q0 4273311 15 12.231470 Anserini +test2466 Q0 15618450 16 12.196276 Anserini +test2466 Q0 6052649 17 12.128334 Anserini +test2466 Q0 5547186 18 12.117916 Anserini +test2466 Q0 1528301 19 12.104381 Anserini +test2466 Q0 5235772 20 12.055715 Anserini +test2466 Q0 2611419 21 12.015699 Anserini +test2466 Q0 660832 22 11.990855 Anserini +test2466 Q0 16299357 23 11.967235 Anserini +test2466 Q0 12287535 24 11.964680 Anserini +test2466 Q0 129088 25 11.943086 Anserini +test2466 Q0 6036037 26 11.934982 Anserini +test2466 Q0 482559 27 11.924442 Anserini +test2466 Q0 854273 28 11.913380 Anserini +test2466 Q0 504360 29 11.872863 Anserini +test2466 Q0 1701664 30 11.846031 Anserini +test2467 Q0 11090579 1 19.020670 Anserini +test2467 Q0 7775486 2 19.006399 Anserini +test2467 Q0 7775487 3 18.577351 Anserini +test2467 Q0 9880378 4 18.434803 Anserini +test2467 Q0 17936351 5 17.979122 Anserini +test2467 Q0 4726326 6 17.940456 Anserini +test2467 Q0 8185852 7 17.658642 Anserini +test2467 Q0 8185840 8 17.658642 Anserini +test2467 Q0 4726334 9 17.658501 Anserini +test2467 Q0 7802698 10 17.441202 Anserini +test2467 Q0 7775481 11 17.230453 Anserini +test2467 Q0 5326273 12 16.793327 Anserini +test2467 Q0 20694609 13 16.683607 Anserini +test2467 Q0 6528710 14 16.663641 Anserini +test2467 Q0 9239421 15 16.594847 Anserini +test2467 Q0 11090589 16 16.528566 Anserini +test2467 Q0 17936345 17 16.501066 Anserini +test2467 Q0 7802697 18 16.493660 Anserini +test2467 Q0 9239437 19 16.395094 Anserini +test2467 Q0 7775492 20 16.255560 Anserini +test2467 Q0 7775480 21 16.255560 Anserini +test2467 Q0 10255122 22 16.171762 Anserini +test2467 Q0 20694608 23 16.171762 Anserini +test2467 Q0 9880381 24 16.171762 Anserini +test2467 Q0 7388882 25 16.108030 Anserini +test2467 Q0 9993546 26 16.108030 Anserini +test2467 Q0 11090587 27 16.103188 Anserini +test2467 Q0 11090580 28 15.880830 Anserini +test2467 Q0 8517517 29 15.823121 Anserini +test2467 Q0 4726329 30 15.519064 Anserini +test2468 Q0 592780 1 10.765638 Anserini +test2468 Q0 15558170 2 10.727433 Anserini +test2468 Q0 19348457 3 10.651983 Anserini +test2468 Q0 12167092 4 10.614742 Anserini +test2468 Q0 6927335 5 10.368163 Anserini +test2468 Q0 15558218 6 10.352845 Anserini +test2468 Q0 18100729 7 10.328747 Anserini +test2468 Q0 15558196 8 10.324272 Anserini +test2468 Q0 19471995 9 10.292364 Anserini +test2468 Q0 592777 10 10.207450 Anserini +test2468 Q0 14058638 11 10.092526 Anserini +test2468 Q0 20772362 12 9.985575 Anserini +test2468 Q0 16443892 13 9.946335 Anserini +test2468 Q0 19044841 14 9.837207 Anserini +test2468 Q0 20497315 15 9.770647 Anserini +test2468 Q0 19763972 16 9.758658 Anserini +test2468 Q0 15558198 17 9.697616 Anserini +test2468 Q0 18361241 18 9.643449 Anserini +test2468 Q0 6927293 19 9.595944 Anserini +test2468 Q0 15024802 20 9.583490 Anserini +test2468 Q0 18283579 21 9.522322 Anserini +test2468 Q0 19350395 22 9.469258 Anserini +test2468 Q0 11738156 23 9.464644 Anserini +test2468 Q0 17730027 24 9.448786 Anserini +test2468 Q0 18594613 25 9.442575 Anserini +test2468 Q0 20985918 26 9.401651 Anserini +test2468 Q0 18594610 27 9.396580 Anserini +test2468 Q0 19062991 28 9.321722 Anserini +test2468 Q0 17713073 29 9.321722 Anserini +test2468 Q0 5512890 30 9.279537 Anserini +test2469 Q0 6522635 1 11.362247 Anserini +test2469 Q0 6522277 2 9.838898 Anserini +test2469 Q0 984003 3 9.750517 Anserini +test2469 Q0 1563786 4 9.510887 Anserini +test2469 Q0 6522502 5 9.475755 Anserini +test2469 Q0 9591875 6 9.446404 Anserini +test2469 Q0 3281174 7 9.364908 Anserini +test2469 Q0 4944882 8 9.303936 Anserini +test2469 Q0 5446673 9 9.294748 Anserini +test2469 Q0 978585 10 9.246122 Anserini +test2469 Q0 5281633 11 9.192928 Anserini +test2469 Q0 4521907 12 9.190219 Anserini +test2469 Q0 11264019 13 9.177159 Anserini +test2469 Q0 5281646 14 9.131407 Anserini +test2469 Q0 4176118 15 9.119774 Anserini +test2469 Q0 18096929 16 9.095251 Anserini +test2469 Q0 6857761 17 9.095238 Anserini +test2469 Q0 1982446 18 9.080635 Anserini +test2469 Q0 3500902 19 9.046469 Anserini +test2469 Q0 4828176 20 9.022212 Anserini +test2469 Q0 10538893 21 8.990285 Anserini +test2469 Q0 19915991 22 8.984873 Anserini +test2469 Q0 8195836 23 8.953069 Anserini +test2469 Q0 4369117 24 8.920258 Anserini +test2469 Q0 6522282 25 8.864395 Anserini +test2469 Q0 6522007 26 8.864395 Anserini +test2469 Q0 20552938 27 8.852902 Anserini +test2469 Q0 1283916 28 8.823301 Anserini +test2469 Q0 6522008 29 8.820025 Anserini +test2469 Q0 11759660 30 8.814341 Anserini +test247 Q0 18322635 1 18.203737 Anserini +test247 Q0 18322653 2 18.085127 Anserini +test247 Q0 20458106 3 16.719307 Anserini +test247 Q0 17719049 4 16.457121 Anserini +test247 Q0 18322639 5 16.329350 Anserini +test247 Q0 18373807 6 16.329350 Anserini +test247 Q0 18452161 7 16.195818 Anserini +test247 Q0 18373794 8 15.797119 Anserini +test247 Q0 20458111 9 15.056311 Anserini +test247 Q0 20458103 10 14.662169 Anserini +test247 Q0 17999483 11 14.596315 Anserini +test247 Q0 18373798 12 14.568054 Anserini +test247 Q0 18356735 13 13.654560 Anserini +test247 Q0 18322637 14 13.561809 Anserini +test247 Q0 20458108 15 13.522479 Anserini +test247 Q0 18307479 16 13.398146 Anserini +test247 Q0 18433608 17 13.349215 Anserini +test247 Q0 18356728 18 13.270409 Anserini +test247 Q0 18322638 19 13.027698 Anserini +test247 Q0 20458266 20 12.935046 Anserini +test247 Q0 18261190 21 12.830121 Anserini +test247 Q0 17829296 22 12.776962 Anserini +test247 Q0 18322646 23 12.727568 Anserini +test247 Q0 18322645 24 12.636273 Anserini +test247 Q0 18307246 25 12.393508 Anserini +test247 Q0 18356738 26 12.290194 Anserini +test247 Q0 17999476 27 12.286597 Anserini +test247 Q0 18322642 28 12.267752 Anserini +test247 Q0 17829295 29 12.232289 Anserini +test247 Q0 20458105 30 12.165564 Anserini +test2470 Q0 18066323 1 10.903817 Anserini +test2470 Q0 1385120 2 10.701989 Anserini +test2470 Q0 12047321 3 10.523067 Anserini +test2470 Q0 10278683 4 10.440341 Anserini +test2470 Q0 4758297 5 10.266628 Anserini +test2470 Q0 8896551 6 10.249264 Anserini +test2470 Q0 18066242 7 10.244241 Anserini +test2470 Q0 18066244 8 10.196465 Anserini +test2470 Q0 18066256 9 10.189249 Anserini +test2470 Q0 239300 10 10.166552 Anserini +test2470 Q0 11599784 11 10.147151 Anserini +test2470 Q0 9976824 12 9.916376 Anserini +test2470 Q0 16442512 13 9.895648 Anserini +test2470 Q0 7861212 14 9.863552 Anserini +test2470 Q0 2440952 15 9.773067 Anserini +test2470 Q0 13152121 16 9.767980 Anserini +test2470 Q0 1711218 17 9.761401 Anserini +test2470 Q0 12047252 18 9.588936 Anserini +test2470 Q0 8896574 19 9.526044 Anserini +test2470 Q0 3979350 20 9.458685 Anserini +test2470 Q0 18066284 21 9.452584 Anserini +test2470 Q0 10142146 22 9.421272 Anserini +test2470 Q0 4356178 23 9.333740 Anserini +test2470 Q0 16334182 24 9.333740 Anserini +test2470 Q0 18066254 25 9.297202 Anserini +test2470 Q0 9524277 26 9.282598 Anserini +test2470 Q0 12038744 27 9.277225 Anserini +test2470 Q0 16306971 28 9.216020 Anserini +test2470 Q0 12046769 29 9.193396 Anserini +test2470 Q0 13528188 30 9.180185 Anserini +test2471 Q0 14538229 1 18.366062 Anserini +test2471 Q0 14264045 2 17.102514 Anserini +test2471 Q0 12449874 3 16.395906 Anserini +test2471 Q0 14858834 4 16.033478 Anserini +test2471 Q0 18332594 5 15.901265 Anserini +test2471 Q0 16413051 6 15.821541 Anserini +test2471 Q0 14858839 7 15.538915 Anserini +test2471 Q0 20776614 8 15.364489 Anserini +test2471 Q0 15964784 9 15.329659 Anserini +test2471 Q0 15844757 10 14.876744 Anserini +test2471 Q0 14858809 11 14.615953 Anserini +test2471 Q0 14858802 12 14.295465 Anserini +test2471 Q0 12449647 13 14.272676 Anserini +test2471 Q0 17264532 14 14.243422 Anserini +test2471 Q0 19029445 15 14.223014 Anserini +test2471 Q0 17264492 16 14.153121 Anserini +test2471 Q0 16203862 17 14.061845 Anserini +test2471 Q0 13970420 18 14.008315 Anserini +test2471 Q0 15137917 19 13.923868 Anserini +test2471 Q0 14858841 20 13.909888 Anserini +test2471 Q0 15769745 21 13.866415 Anserini +test2471 Q0 14858827 22 13.817272 Anserini +test2471 Q0 6675048 23 13.678060 Anserini +test2471 Q0 9252123 24 13.610719 Anserini +test2471 Q0 17264537 25 13.576362 Anserini +test2471 Q0 18070170 26 13.568504 Anserini +test2471 Q0 14538090 27 13.560329 Anserini +test2471 Q0 3579969 28 13.538206 Anserini +test2471 Q0 15459795 29 13.492640 Anserini +test2471 Q0 17833218 30 13.466572 Anserini +test2472 Q0 20057864 1 13.889447 Anserini +test2472 Q0 14109927 2 13.075583 Anserini +test2472 Q0 10772299 3 12.076441 Anserini +test2472 Q0 13396273 4 11.996992 Anserini +test2472 Q0 9738998 5 11.977615 Anserini +test2472 Q0 18148850 6 11.975716 Anserini +test2472 Q0 20665039 7 11.918000 Anserini +test2472 Q0 14109925 8 11.848836 Anserini +test2472 Q0 18148853 9 11.838370 Anserini +test2472 Q0 17973862 10 11.652936 Anserini +test2472 Q0 17443938 11 11.651359 Anserini +test2472 Q0 8497205 12 11.486416 Anserini +test2472 Q0 18804363 13 11.470797 Anserini +test2472 Q0 17678533 14 11.447130 Anserini +test2472 Q0 14183943 15 11.443904 Anserini +test2472 Q0 18603100 16 11.428366 Anserini +test2472 Q0 11783978 17 11.395175 Anserini +test2472 Q0 14109922 18 11.357446 Anserini +test2472 Q0 13460895 19 11.155276 Anserini +test2472 Q0 19199130 20 11.144834 Anserini +test2472 Q0 11811591 21 11.123983 Anserini +test2472 Q0 19199123 22 11.106579 Anserini +test2472 Q0 19032563 23 11.086371 Anserini +test2472 Q0 20684170 24 11.059075 Anserini +test2472 Q0 16283500 25 10.960231 Anserini +test2472 Q0 18250768 26 10.885541 Anserini +test2472 Q0 15089209 27 10.850119 Anserini +test2472 Q0 17990689 28 10.850119 Anserini +test2472 Q0 11400322 29 10.834160 Anserini +test2472 Q0 18408339 30 10.804626 Anserini +test2473 Q0 16793555 1 12.727293 Anserini +test2473 Q0 17991798 2 12.326899 Anserini +test2473 Q0 7697650 3 12.032001 Anserini +test2473 Q0 18474427 4 12.015649 Anserini +test2473 Q0 17991846 5 11.993069 Anserini +test2473 Q0 6034826 6 11.958369 Anserini +test2473 Q0 8713316 7 11.954067 Anserini +test2473 Q0 1843220 8 11.926726 Anserini +test2473 Q0 17293595 9 11.854699 Anserini +test2473 Q0 8713317 10 11.851078 Anserini +test2473 Q0 17476769 11 11.832889 Anserini +test2473 Q0 14933353 12 11.822764 Anserini +test2473 Q0 7697642 13 11.751104 Anserini +test2473 Q0 961600 14 11.686282 Anserini +test2473 Q0 16431003 15 11.571872 Anserini +test2473 Q0 17991750 16 11.560530 Anserini +test2473 Q0 16460591 17 11.470177 Anserini +test2473 Q0 14814182 18 11.438162 Anserini +test2473 Q0 20224450 19 11.421153 Anserini +test2473 Q0 18135454 20 11.357003 Anserini +test2473 Q0 13823433 21 11.357003 Anserini +test2473 Q0 3223811 22 11.339329 Anserini +test2473 Q0 17991730 23 11.323456 Anserini +test2473 Q0 12174888 24 11.316857 Anserini +test2473 Q0 17475930 25 11.292212 Anserini +test2473 Q0 12174847 26 11.289793 Anserini +test2473 Q0 7310961 27 11.262410 Anserini +test2473 Q0 17991878 28 11.261219 Anserini +test2473 Q0 17991788 29 11.261219 Anserini +test2473 Q0 3352201 30 11.249841 Anserini +test2474 Q0 6428403 1 11.603994 Anserini +test2474 Q0 16336241 2 11.548196 Anserini +test2474 Q0 17881859 3 11.486400 Anserini +test2474 Q0 7895789 4 11.476055 Anserini +test2474 Q0 12868511 5 11.452874 Anserini +test2474 Q0 15284944 6 11.449153 Anserini +test2474 Q0 17391705 7 11.434505 Anserini +test2474 Q0 17800720 8 11.307693 Anserini +test2474 Q0 17800696 9 11.307693 Anserini +test2474 Q0 16926632 10 11.289118 Anserini +test2474 Q0 15248887 11 11.122692 Anserini +test2474 Q0 14416506 12 11.107059 Anserini +test2474 Q0 15247394 13 11.095322 Anserini +test2474 Q0 17999479 14 11.063334 Anserini +test2474 Q0 12489123 15 11.040691 Anserini +test2474 Q0 5136198 16 11.000900 Anserini +test2474 Q0 9951910 17 10.994530 Anserini +test2474 Q0 14372353 18 10.935342 Anserini +test2474 Q0 7697487 19 10.858600 Anserini +test2474 Q0 18836227 20 10.849411 Anserini +test2474 Q0 15203138 21 10.841353 Anserini +test2474 Q0 15567561 22 10.839955 Anserini +test2474 Q0 17235759 23 10.812729 Anserini +test2474 Q0 20260327 24 10.780162 Anserini +test2474 Q0 16887336 25 10.757837 Anserini +test2474 Q0 15628119 26 10.736977 Anserini +test2474 Q0 18022152 27 10.736623 Anserini +test2474 Q0 16491279 28 10.704503 Anserini +test2474 Q0 5410666 29 10.640950 Anserini +test2474 Q0 8268419 30 10.633475 Anserini +test2475 Q0 8481457 1 13.586989 Anserini +test2475 Q0 7127230 2 13.161071 Anserini +test2475 Q0 1408411 3 11.942606 Anserini +test2475 Q0 8797051 4 11.862757 Anserini +test2475 Q0 5182287 5 11.786253 Anserini +test2475 Q0 6281800 6 11.671782 Anserini +test2475 Q0 2076668 7 11.617362 Anserini +test2475 Q0 4827691 8 11.613138 Anserini +test2475 Q0 2077007 9 11.565952 Anserini +test2475 Q0 16903548 10 11.555746 Anserini +test2475 Q0 6281804 11 11.458514 Anserini +test2475 Q0 2076663 12 11.165019 Anserini +test2475 Q0 7127239 13 11.114554 Anserini +test2475 Q0 2076679 14 11.058844 Anserini +test2475 Q0 2076973 15 11.057543 Anserini +test2475 Q0 2076666 16 11.039268 Anserini +test2475 Q0 2076685 17 11.032335 Anserini +test2475 Q0 5182288 18 11.003582 Anserini +test2475 Q0 2076452 19 10.993672 Anserini +test2475 Q0 2076990 20 10.991734 Anserini +test2475 Q0 12221938 21 10.976015 Anserini +test2475 Q0 4752529 22 10.966368 Anserini +test2475 Q0 11316032 23 10.952386 Anserini +test2475 Q0 2076472 24 10.922501 Anserini +test2475 Q0 763758 25 10.838163 Anserini +test2475 Q0 8066588 26 10.823833 Anserini +test2475 Q0 7160358 27 10.799524 Anserini +test2475 Q0 4752531 28 10.771735 Anserini +test2475 Q0 18998021 29 10.728152 Anserini +test2475 Q0 5182290 30 10.728152 Anserini +test2476 Q0 7739425 1 15.474140 Anserini +test2476 Q0 7739427 2 14.720790 Anserini +test2476 Q0 17907052 3 14.559718 Anserini +test2476 Q0 7209452 4 14.435566 Anserini +test2476 Q0 15668308 5 14.291273 Anserini +test2476 Q0 5701015 6 14.129954 Anserini +test2476 Q0 12486864 7 14.013183 Anserini +test2476 Q0 8833760 8 13.979908 Anserini +test2476 Q0 2860656 9 13.902054 Anserini +test2476 Q0 3324480 10 13.849614 Anserini +test2476 Q0 8833757 11 13.848412 Anserini +test2476 Q0 7209451 12 13.839237 Anserini +test2476 Q0 2674154 13 13.826052 Anserini +test2476 Q0 5758703 14 13.708296 Anserini +test2476 Q0 7209455 15 13.692870 Anserini +test2476 Q0 13065211 16 13.630524 Anserini +test2476 Q0 2860658 17 13.612763 Anserini +test2476 Q0 5562059 18 13.522904 Anserini +test2476 Q0 2860662 19 13.456388 Anserini +test2476 Q0 2501293 20 13.400953 Anserini +test2476 Q0 3324487 21 13.371289 Anserini +test2476 Q0 5348421 22 13.264050 Anserini +test2476 Q0 17101783 23 13.254987 Anserini +test2476 Q0 2501301 24 13.246960 Anserini +test2476 Q0 12806115 25 13.214467 Anserini +test2476 Q0 17101789 26 13.213424 Anserini +test2476 Q0 7209454 27 13.169827 Anserini +test2476 Q0 9432867 28 13.149687 Anserini +test2476 Q0 2368517 29 13.081561 Anserini +test2476 Q0 18703663 30 13.079233 Anserini +test2477 Q0 5301436 1 11.396490 Anserini +test2477 Q0 5301431 2 11.191776 Anserini +test2477 Q0 6362443 3 10.922549 Anserini +test2477 Q0 19179447 4 10.760845 Anserini +test2477 Q0 6362445 5 10.714264 Anserini +test2477 Q0 3956440 6 10.613987 Anserini +test2477 Q0 16606834 7 10.388906 Anserini +test2477 Q0 5301429 8 10.383591 Anserini +test2477 Q0 17980262 9 10.154417 Anserini +test2477 Q0 15664174 10 10.112397 Anserini +test2477 Q0 12198618 11 10.060825 Anserini +test2477 Q0 9009464 12 10.047838 Anserini +test2477 Q0 8802528 13 10.032348 Anserini +test2477 Q0 7057855 14 9.991959 Anserini +test2477 Q0 6245426 15 9.930892 Anserini +test2477 Q0 17729736 16 9.904603 Anserini +test2477 Q0 12518434 17 9.899912 Anserini +test2477 Q0 12199721 18 9.840655 Anserini +test2477 Q0 15412146 19 9.782746 Anserini +test2477 Q0 12355237 20 9.734876 Anserini +test2477 Q0 5301433 21 9.688590 Anserini +test2477 Q0 11258970 22 9.657004 Anserini +test2477 Q0 18519256 23 9.579653 Anserini +test2477 Q0 13019786 24 9.567953 Anserini +test2477 Q0 3400315 25 9.509989 Anserini +test2477 Q0 3430947 26 9.465449 Anserini +test2477 Q0 16131711 27 9.448804 Anserini +test2477 Q0 17208525 28 9.448508 Anserini +test2477 Q0 3767315 29 9.430086 Anserini +test2477 Q0 18857915 30 9.425001 Anserini +test2478 Q0 17454356 1 12.372516 Anserini +test2478 Q0 4102203 2 12.172600 Anserini +test2478 Q0 17413082 3 12.139595 Anserini +test2478 Q0 17454359 4 11.984289 Anserini +test2478 Q0 9940797 5 11.850004 Anserini +test2478 Q0 3983171 6 11.753073 Anserini +test2478 Q0 17260211 7 11.738881 Anserini +test2478 Q0 6871607 8 11.603725 Anserini +test2478 Q0 7817279 9 11.540850 Anserini +test2478 Q0 12266555 10 11.489922 Anserini +test2478 Q0 563762 11 11.469893 Anserini +test2478 Q0 19698689 12 11.422817 Anserini +test2478 Q0 7817283 13 11.421770 Anserini +test2478 Q0 1926559 14 11.378241 Anserini +test2478 Q0 4905990 15 11.345753 Anserini +test2478 Q0 11279433 16 11.340455 Anserini +test2478 Q0 10871680 17 11.310883 Anserini +test2478 Q0 7817281 18 11.297141 Anserini +test2478 Q0 4905989 19 11.294382 Anserini +test2478 Q0 13100319 20 11.233544 Anserini +test2478 Q0 10207149 21 11.157325 Anserini +test2478 Q0 8309110 22 11.153044 Anserini +test2478 Q0 7817286 23 11.152576 Anserini +test2478 Q0 6235292 24 11.151993 Anserini +test2478 Q0 17413093 25 11.103828 Anserini +test2478 Q0 6552682 26 11.098699 Anserini +test2478 Q0 6870490 27 11.096623 Anserini +test2478 Q0 5511505 28 11.062193 Anserini +test2478 Q0 19859976 29 11.052376 Anserini +test2478 Q0 13637004 30 11.045099 Anserini +test2479 Q0 77459 1 10.631286 Anserini +test2479 Q0 3449871 2 10.508150 Anserini +test2479 Q0 12953552 3 10.223385 Anserini +test2479 Q0 5568225 4 10.098388 Anserini +test2479 Q0 15440125 5 9.937339 Anserini +test2479 Q0 77468 6 9.909874 Anserini +test2479 Q0 12953570 7 9.893838 Anserini +test2479 Q0 18191360 8 9.813490 Anserini +test2479 Q0 10953788 9 9.713248 Anserini +test2479 Q0 9141379 10 9.510718 Anserini +test2479 Q0 13293872 11 9.451729 Anserini +test2479 Q0 9141380 12 9.445990 Anserini +test2479 Q0 694531 13 9.346740 Anserini +test2479 Q0 2546202 14 9.292059 Anserini +test2479 Q0 20261961 15 9.208989 Anserini +test2479 Q0 6099097 16 9.184794 Anserini +test2479 Q0 2528233 17 9.157092 Anserini +test2479 Q0 20261958 18 9.078512 Anserini +test2479 Q0 61518 19 9.045940 Anserini +test2479 Q0 12969851 20 9.045940 Anserini +test2479 Q0 11192219 21 8.981693 Anserini +test2479 Q0 5478885 22 8.912405 Anserini +test2479 Q0 13966439 23 8.844218 Anserini +test2479 Q0 15571124 24 8.832723 Anserini +test2479 Q0 15440669 25 8.832723 Anserini +test2479 Q0 13682972 26 8.751499 Anserini +test2479 Q0 8261953 27 8.740969 Anserini +test2479 Q0 12372566 28 8.739409 Anserini +test2479 Q0 8180560 29 8.738783 Anserini +test2479 Q0 3042541 30 8.695646 Anserini +test248 Q0 6264363 1 14.679670 Anserini +test248 Q0 13717310 2 13.136594 Anserini +test248 Q0 16999841 3 12.467410 Anserini +test248 Q0 5653140 4 12.205483 Anserini +test248 Q0 16999842 5 12.201755 Anserini +test248 Q0 7335805 6 12.113943 Anserini +test248 Q0 2623406 7 11.916399 Anserini +test248 Q0 13717304 8 11.777623 Anserini +test248 Q0 18493221 9 11.653024 Anserini +test248 Q0 17821482 10 11.533425 Anserini +test248 Q0 8084835 11 11.473139 Anserini +test248 Q0 7214843 12 11.415121 Anserini +test248 Q0 12701206 13 11.353956 Anserini +test248 Q0 17730775 14 11.344681 Anserini +test248 Q0 15347112 15 11.276467 Anserini +test248 Q0 14596499 16 11.178831 Anserini +test248 Q0 5653144 17 11.122994 Anserini +test248 Q0 20225684 18 11.023215 Anserini +test248 Q0 7214472 19 10.884069 Anserini +test248 Q0 4151793 20 10.844158 Anserini +test248 Q0 8938492 21 10.831471 Anserini +test248 Q0 8084838 22 10.794090 Anserini +test248 Q0 3411752 23 10.759535 Anserini +test248 Q0 5653145 24 10.759535 Anserini +test248 Q0 11742637 25 10.676352 Anserini +test248 Q0 18493222 26 10.578590 Anserini +test248 Q0 8938490 27 10.570329 Anserini +test248 Q0 4875820 28 10.530879 Anserini +test248 Q0 15347113 29 10.530183 Anserini +test248 Q0 12222682 30 10.514589 Anserini +test2480 Q0 5240986 1 21.695133 Anserini +test2480 Q0 10011101 2 21.217367 Anserini +test2480 Q0 1874287 3 19.936134 Anserini +test2480 Q0 10011103 4 19.620281 Anserini +test2480 Q0 6346610 5 19.616558 Anserini +test2480 Q0 10178711 6 19.616558 Anserini +test2480 Q0 10956989 7 19.436556 Anserini +test2480 Q0 5240985 8 18.829239 Anserini +test2480 Q0 14602175 9 18.717239 Anserini +test2480 Q0 10178713 10 18.079269 Anserini +test2480 Q0 9545568 11 18.024376 Anserini +test2480 Q0 7641732 12 17.924665 Anserini +test2480 Q0 7641730 13 17.924665 Anserini +test2480 Q0 5240988 14 17.795017 Anserini +test2480 Q0 13795057 15 17.686991 Anserini +test2480 Q0 19055066 16 17.653902 Anserini +test2480 Q0 10371332 17 17.556322 Anserini +test2480 Q0 18465398 18 17.556322 Anserini +test2480 Q0 18465399 19 17.556322 Anserini +test2480 Q0 5240987 20 17.556322 Anserini +test2480 Q0 17148186 21 17.556322 Anserini +test2480 Q0 7488905 22 17.525948 Anserini +test2480 Q0 6664382 23 17.476048 Anserini +test2480 Q0 13381620 24 17.394272 Anserini +test2480 Q0 17148178 25 17.280191 Anserini +test2480 Q0 6367448 26 17.167933 Anserini +test2480 Q0 7894635 27 17.134760 Anserini +test2480 Q0 19544495 28 17.134760 Anserini +test2480 Q0 7894628 29 17.134760 Anserini +test2480 Q0 11742916 30 17.021416 Anserini +test2481 Q0 9037391 1 20.831347 Anserini +test2481 Q0 9936130 2 20.381790 Anserini +test2481 Q0 5470195 3 19.035175 Anserini +test2481 Q0 14987071 4 18.807936 Anserini +test2481 Q0 9037412 5 18.594042 Anserini +test2481 Q0 14418202 6 17.617668 Anserini +test2481 Q0 10930995 7 17.513222 Anserini +test2481 Q0 9015638 8 17.429224 Anserini +test2481 Q0 11970970 9 17.174553 Anserini +test2481 Q0 11970968 10 16.873867 Anserini +test2481 Q0 7311007 11 16.858870 Anserini +test2481 Q0 4811478 12 16.826782 Anserini +test2481 Q0 4811510 13 16.718616 Anserini +test2481 Q0 14775060 14 16.705862 Anserini +test2481 Q0 10053470 15 16.611536 Anserini +test2481 Q0 9015664 16 16.167404 Anserini +test2481 Q0 9037397 17 16.076939 Anserini +test2481 Q0 18757988 18 15.788827 Anserini +test2481 Q0 7311010 19 15.765801 Anserini +test2481 Q0 7310981 20 15.427982 Anserini +test2481 Q0 8397429 21 15.416342 Anserini +test2481 Q0 14773677 22 15.140015 Anserini +test2481 Q0 19087221 23 15.008593 Anserini +test2481 Q0 14418205 24 14.969495 Anserini +test2481 Q0 7310949 25 14.955044 Anserini +test2481 Q0 5697973 26 14.782248 Anserini +test2481 Q0 11970983 27 14.745272 Anserini +test2481 Q0 4811583 28 14.660059 Anserini +test2481 Q0 18761842 29 14.620604 Anserini +test2481 Q0 17314133 30 14.620496 Anserini +test2482 Q0 17335036 1 13.034135 Anserini +test2482 Q0 12880342 2 12.532578 Anserini +test2482 Q0 18302624 3 12.415473 Anserini +test2482 Q0 18517344 4 12.170622 Anserini +test2482 Q0 4814412 5 11.874174 Anserini +test2482 Q0 2410722 6 11.843371 Anserini +test2482 Q0 16447721 7 11.820110 Anserini +test2482 Q0 7867848 8 11.619582 Anserini +test2482 Q0 19518959 9 11.572975 Anserini +test2482 Q0 12738667 10 11.556654 Anserini +test2482 Q0 8950945 11 11.553174 Anserini +test2482 Q0 7516969 12 11.477167 Anserini +test2482 Q0 10777993 13 11.460490 Anserini +test2482 Q0 968929 14 11.330734 Anserini +test2482 Q0 11304269 15 11.300938 Anserini +test2482 Q0 18612944 16 11.298799 Anserini +test2482 Q0 10673332 17 11.279391 Anserini +test2482 Q0 15966445 18 11.171239 Anserini +test2482 Q0 2472603 19 11.153892 Anserini +test2482 Q0 7975066 20 10.978339 Anserini +test2482 Q0 16444109 21 10.968830 Anserini +test2482 Q0 662463 22 10.945152 Anserini +test2482 Q0 1004512 23 10.943252 Anserini +test2482 Q0 15212142 24 10.894853 Anserini +test2482 Q0 16407671 25 10.867092 Anserini +test2482 Q0 12322971 26 10.865519 Anserini +test2482 Q0 6152337 27 10.856373 Anserini +test2482 Q0 5157602 28 10.819468 Anserini +test2482 Q0 11639404 29 10.812154 Anserini +test2482 Q0 16119098 30 10.796976 Anserini +test2483 Q0 1964262 1 17.850361 Anserini +test2483 Q0 1551468 2 17.643471 Anserini +test2483 Q0 7273932 3 17.147474 Anserini +test2483 Q0 485495 4 16.789623 Anserini +test2483 Q0 5113585 5 16.612736 Anserini +test2483 Q0 18285723 6 16.152981 Anserini +test2483 Q0 4399161 7 15.987748 Anserini +test2483 Q0 10137537 8 15.954857 Anserini +test2483 Q0 14154336 9 15.951744 Anserini +test2483 Q0 11810426 10 15.868891 Anserini +test2483 Q0 1852696 11 15.814521 Anserini +test2483 Q0 12270282 12 15.688599 Anserini +test2483 Q0 621389 13 15.515160 Anserini +test2483 Q0 14731960 14 15.508179 Anserini +test2483 Q0 3105315 15 15.458800 Anserini +test2483 Q0 2620931 16 15.419857 Anserini +test2483 Q0 9728222 17 15.409250 Anserini +test2483 Q0 14852825 18 15.398730 Anserini +test2483 Q0 16520627 19 15.291798 Anserini +test2483 Q0 20037545 20 15.227583 Anserini +test2483 Q0 9558193 21 15.191288 Anserini +test2483 Q0 2986698 22 15.019395 Anserini +test2483 Q0 2279765 23 14.909254 Anserini +test2483 Q0 4412614 24 14.758318 Anserini +test2483 Q0 17622632 25 14.717556 Anserini +test2483 Q0 17350434 26 14.546376 Anserini +test2483 Q0 11810427 27 14.513818 Anserini +test2483 Q0 764659 28 14.448586 Anserini +test2483 Q0 258234 29 14.423656 Anserini +test2483 Q0 18660291 30 14.360806 Anserini +test2484 Q0 17006422 1 18.706238 Anserini +test2484 Q0 4825572 2 18.538172 Anserini +test2484 Q0 6447396 3 18.483200 Anserini +test2484 Q0 2228133 4 18.446392 Anserini +test2484 Q0 10366800 5 18.221014 Anserini +test2484 Q0 6494550 6 18.064375 Anserini +test2484 Q0 2098854 7 17.856855 Anserini +test2484 Q0 9696118 8 17.736101 Anserini +test2484 Q0 7951429 9 17.691452 Anserini +test2484 Q0 6494556 10 17.492487 Anserini +test2484 Q0 3038130 11 17.286055 Anserini +test2484 Q0 6314787 12 17.285284 Anserini +test2484 Q0 5085844 13 17.282005 Anserini +test2484 Q0 6722004 14 17.031937 Anserini +test2484 Q0 6302099 15 17.005114 Anserini +test2484 Q0 17006424 16 16.992849 Anserini +test2484 Q0 2283805 17 16.845507 Anserini +test2484 Q0 10058564 18 16.831341 Anserini +test2484 Q0 5568857 19 16.611412 Anserini +test2484 Q0 18181154 20 16.556931 Anserini +test2484 Q0 16493599 21 16.499763 Anserini +test2484 Q0 7924936 22 16.456493 Anserini +test2484 Q0 6447400 23 16.410534 Anserini +test2484 Q0 8535398 24 16.350748 Anserini +test2484 Q0 17756020 25 16.333780 Anserini +test2484 Q0 14644254 26 16.330276 Anserini +test2484 Q0 4093054 27 16.226595 Anserini +test2484 Q0 6722003 28 16.217924 Anserini +test2484 Q0 4580687 29 16.217869 Anserini +test2484 Q0 18946360 30 16.207436 Anserini +test2485 Q0 17649300 1 18.710024 Anserini +test2485 Q0 17649303 2 18.710024 Anserini +test2485 Q0 15591006 3 17.891405 Anserini +test2485 Q0 6458031 4 17.501438 Anserini +test2485 Q0 16010647 5 16.399002 Anserini +test2485 Q0 6115359 6 16.297785 Anserini +test2485 Q0 7998963 7 16.292013 Anserini +test2485 Q0 11048670 8 16.204199 Anserini +test2485 Q0 16779217 9 16.161079 Anserini +test2485 Q0 20249583 10 16.134050 Anserini +test2485 Q0 16888312 11 16.059549 Anserini +test2485 Q0 10602488 12 16.045050 Anserini +test2485 Q0 6115360 13 16.015289 Anserini +test2485 Q0 6306518 14 15.864767 Anserini +test2485 Q0 6514385 15 15.850195 Anserini +test2485 Q0 16888315 16 15.823626 Anserini +test2485 Q0 14451529 17 15.712319 Anserini +test2485 Q0 274720 18 15.537272 Anserini +test2485 Q0 12819841 19 15.507766 Anserini +test2485 Q0 4719500 20 15.484770 Anserini +test2485 Q0 20041567 21 15.469865 Anserini +test2485 Q0 16843889 22 15.439580 Anserini +test2485 Q0 9092139 23 15.360219 Anserini +test2485 Q0 11176502 24 15.357022 Anserini +test2485 Q0 4719495 25 15.209562 Anserini +test2485 Q0 15871140 26 15.150617 Anserini +test2485 Q0 274715 27 15.145581 Anserini +test2485 Q0 13995956 28 14.950840 Anserini +test2485 Q0 274745 29 14.931359 Anserini +test2485 Q0 274744 30 14.870588 Anserini +test2486 Q0 8762892 1 19.501331 Anserini +test2486 Q0 8762897 2 18.422188 Anserini +test2486 Q0 8762889 3 18.409620 Anserini +test2486 Q0 8762890 4 17.972879 Anserini +test2486 Q0 9774648 5 17.408655 Anserini +test2486 Q0 19622848 6 17.118238 Anserini +test2486 Q0 20278610 7 17.057810 Anserini +test2486 Q0 15795171 8 16.733564 Anserini +test2486 Q0 8762895 9 16.632181 Anserini +test2486 Q0 16047866 10 16.619280 Anserini +test2486 Q0 18611577 11 16.517176 Anserini +test2486 Q0 3648578 12 16.391876 Anserini +test2486 Q0 7407727 13 16.380003 Anserini +test2486 Q0 19021901 14 16.331745 Anserini +test2486 Q0 16823127 15 16.283010 Anserini +test2486 Q0 14208504 16 16.242348 Anserini +test2486 Q0 10205160 17 16.042410 Anserini +test2486 Q0 20278608 18 16.006613 Anserini +test2486 Q0 20282553 19 15.963564 Anserini +test2486 Q0 1209664 20 15.919768 Anserini +test2486 Q0 19968320 21 15.906610 Anserini +test2486 Q0 5842223 22 15.882523 Anserini +test2486 Q0 391729 23 15.839238 Anserini +test2486 Q0 20283611 24 15.837450 Anserini +test2486 Q0 6967711 25 15.837220 Anserini +test2486 Q0 13891987 26 15.830125 Anserini +test2486 Q0 20109586 27 15.815934 Anserini +test2486 Q0 19651525 28 15.790226 Anserini +test2486 Q0 17356840 29 15.783829 Anserini +test2486 Q0 20283628 30 15.657770 Anserini +test2487 Q0 20944452 1 11.173482 Anserini +test2487 Q0 12681951 2 10.615767 Anserini +test2487 Q0 1598019 3 9.917833 Anserini +test2487 Q0 9480658 4 9.880594 Anserini +test2487 Q0 9480659 5 9.824519 Anserini +test2487 Q0 4828214 6 9.809637 Anserini +test2487 Q0 4828193 7 9.694838 Anserini +test2487 Q0 1217814 8 9.693259 Anserini +test2487 Q0 1392965 9 9.603603 Anserini +test2487 Q0 17950465 10 9.486863 Anserini +test2487 Q0 14426742 11 9.386774 Anserini +test2487 Q0 10483572 12 9.354143 Anserini +test2487 Q0 19013205 13 9.348668 Anserini +test2487 Q0 10523370 14 9.286563 Anserini +test2487 Q0 10210055 15 9.265369 Anserini +test2487 Q0 10599695 16 9.221943 Anserini +test2487 Q0 18744189 17 9.198071 Anserini +test2487 Q0 17357299 18 9.194448 Anserini +test2487 Q0 16089276 19 9.181900 Anserini +test2487 Q0 1562784 20 9.180444 Anserini +test2487 Q0 10582154 21 9.177122 Anserini +test2487 Q0 8767504 22 9.145736 Anserini +test2487 Q0 17695554 23 9.040402 Anserini +test2487 Q0 18744190 24 9.040071 Anserini +test2487 Q0 1217819 25 8.989500 Anserini +test2487 Q0 4517070 26 8.964478 Anserini +test2487 Q0 1597983 27 8.942734 Anserini +test2487 Q0 12398846 28 8.939687 Anserini +test2487 Q0 9067519 29 8.921019 Anserini +test2487 Q0 12398843 30 8.890612 Anserini +test2488 Q0 4374800 1 17.350979 Anserini +test2488 Q0 5485952 2 16.478214 Anserini +test2488 Q0 230856 3 16.006086 Anserini +test2488 Q0 17452181 4 15.820067 Anserini +test2488 Q0 7241521 5 15.460627 Anserini +test2488 Q0 9139340 6 15.426785 Anserini +test2488 Q0 11921300 7 15.410135 Anserini +test2488 Q0 3705060 8 15.020096 Anserini +test2488 Q0 8681446 9 15.005388 Anserini +test2488 Q0 5988811 10 14.992208 Anserini +test2488 Q0 11921292 11 14.661976 Anserini +test2488 Q0 4303494 12 14.634059 Anserini +test2488 Q0 1656391 13 14.616478 Anserini +test2488 Q0 20799003 14 14.602032 Anserini +test2488 Q0 141257 15 14.446527 Anserini +test2488 Q0 12476512 16 14.345984 Anserini +test2488 Q0 3676333 17 14.265516 Anserini +test2488 Q0 4374794 18 14.067113 Anserini +test2488 Q0 12553877 19 14.067064 Anserini +test2488 Q0 12925401 20 14.063608 Anserini +test2488 Q0 12918891 21 14.024975 Anserini +test2488 Q0 16836411 22 14.024639 Anserini +test2488 Q0 12918814 23 13.984064 Anserini +test2488 Q0 19070406 24 13.960396 Anserini +test2488 Q0 13286416 25 13.951608 Anserini +test2488 Q0 509241 26 13.818325 Anserini +test2488 Q0 11921307 27 13.817398 Anserini +test2488 Q0 19070407 28 13.805450 Anserini +test2488 Q0 14347856 29 13.726330 Anserini +test2488 Q0 11117393 30 13.718856 Anserini +test2489 Q0 463186 1 11.496426 Anserini +test2489 Q0 18150721 2 10.925097 Anserini +test2489 Q0 14483724 3 10.747434 Anserini +test2489 Q0 11228824 4 10.676348 Anserini +test2489 Q0 1558592 5 10.573313 Anserini +test2489 Q0 199742 6 10.453736 Anserini +test2489 Q0 660979 7 10.431317 Anserini +test2489 Q0 16999369 8 10.418340 Anserini +test2489 Q0 6589817 9 10.314663 Anserini +test2489 Q0 20357541 10 10.201343 Anserini +test2489 Q0 12505716 11 10.166375 Anserini +test2489 Q0 5248593 12 10.126591 Anserini +test2489 Q0 823010 13 10.002225 Anserini +test2489 Q0 12433919 14 9.904905 Anserini +test2489 Q0 12505713 15 9.861032 Anserini +test2489 Q0 395647 16 9.790027 Anserini +test2489 Q0 5478325 17 9.768492 Anserini +test2489 Q0 19794954 18 9.663641 Anserini +test2489 Q0 12252917 19 9.634008 Anserini +test2489 Q0 17955550 20 9.573635 Anserini +test2489 Q0 10100461 21 9.539211 Anserini +test2489 Q0 10107237 22 9.539211 Anserini +test2489 Q0 15772439 23 9.526430 Anserini +test2489 Q0 4791654 24 9.482932 Anserini +test2489 Q0 6053290 25 9.456775 Anserini +test2489 Q0 10080576 26 9.443260 Anserini +test2489 Q0 13675103 27 9.425572 Anserini +test2489 Q0 13795985 28 9.417671 Anserini +test2489 Q0 9541106 29 9.408974 Anserini +test2489 Q0 17575212 30 9.359755 Anserini +test249 Q0 7860930 1 16.319803 Anserini +test249 Q0 3011532 2 15.869183 Anserini +test249 Q0 18419731 3 15.525592 Anserini +test249 Q0 18419730 4 15.270711 Anserini +test249 Q0 4680590 5 15.140960 Anserini +test249 Q0 3011535 6 14.550054 Anserini +test249 Q0 3011526 7 14.538967 Anserini +test249 Q0 4680591 8 14.377068 Anserini +test249 Q0 3244967 9 14.236763 Anserini +test249 Q0 3244955 10 14.218817 Anserini +test249 Q0 3011519 11 14.213911 Anserini +test249 Q0 11113159 12 14.183286 Anserini +test249 Q0 18419741 13 14.027658 Anserini +test249 Q0 11113153 14 13.759905 Anserini +test249 Q0 3244959 15 13.752141 Anserini +test249 Q0 3244968 16 13.667204 Anserini +test249 Q0 4680587 17 13.583437 Anserini +test249 Q0 18419735 18 13.306591 Anserini +test249 Q0 3011533 19 13.302626 Anserini +test249 Q0 6316388 20 13.189371 Anserini +test249 Q0 4680592 21 13.148466 Anserini +test249 Q0 6316395 22 12.843749 Anserini +test249 Q0 4680589 23 12.843749 Anserini +test249 Q0 3011534 24 12.840833 Anserini +test249 Q0 18419742 25 12.564804 Anserini +test249 Q0 6316389 26 12.485178 Anserini +test249 Q0 6316392 27 12.425530 Anserini +test249 Q0 3244957 28 12.425530 Anserini +test249 Q0 3244964 29 12.425530 Anserini +test249 Q0 3011528 30 12.425530 Anserini +test2490 Q0 11538788 1 21.286716 Anserini +test2490 Q0 11538790 2 21.286716 Anserini +test2490 Q0 14827079 3 20.781403 Anserini +test2490 Q0 14827082 4 20.705942 Anserini +test2490 Q0 5562919 5 18.884008 Anserini +test2490 Q0 5562908 6 18.765953 Anserini +test2490 Q0 2988904 7 18.425232 Anserini +test2490 Q0 2988887 8 18.260069 Anserini +test2490 Q0 2988906 9 18.224953 Anserini +test2490 Q0 16816225 10 18.146215 Anserini +test2490 Q0 8762598 11 18.136023 Anserini +test2490 Q0 2988900 12 18.100403 Anserini +test2490 Q0 16816223 13 17.952160 Anserini +test2490 Q0 10603635 14 17.808996 Anserini +test2490 Q0 6603640 15 17.720142 Anserini +test2490 Q0 10603629 16 17.685799 Anserini +test2490 Q0 5562935 17 17.499634 Anserini +test2490 Q0 5562933 18 17.433832 Anserini +test2490 Q0 9003416 19 17.389572 Anserini +test2490 Q0 9003413 20 17.292675 Anserini +test2490 Q0 1952772 21 17.201633 Anserini +test2490 Q0 10049052 22 17.056149 Anserini +test2490 Q0 11316140 23 16.993229 Anserini +test2490 Q0 7588139 24 16.947044 Anserini +test2490 Q0 11316138 25 16.843491 Anserini +test2490 Q0 2988901 26 16.786953 Anserini +test2490 Q0 5562912 27 16.759346 Anserini +test2490 Q0 5562921 28 16.719307 Anserini +test2490 Q0 14827081 29 16.630566 Anserini +test2490 Q0 5562930 30 16.594255 Anserini +test2491 Q0 10480953 1 12.045116 Anserini +test2491 Q0 20713287 2 11.689551 Anserini +test2491 Q0 5708609 3 11.627824 Anserini +test2491 Q0 19909635 4 11.537293 Anserini +test2491 Q0 19903696 5 11.537293 Anserini +test2491 Q0 19909660 6 11.537293 Anserini +test2491 Q0 14601401 7 11.429896 Anserini +test2491 Q0 20076924 8 11.429094 Anserini +test2491 Q0 15699917 9 11.279533 Anserini +test2491 Q0 17531137 10 11.269340 Anserini +test2491 Q0 19909706 11 11.214690 Anserini +test2491 Q0 19909696 12 11.214690 Anserini +test2491 Q0 19909704 13 11.214690 Anserini +test2491 Q0 19909694 14 11.214690 Anserini +test2491 Q0 15699922 15 11.162766 Anserini +test2491 Q0 19901917 16 11.111433 Anserini +test2491 Q0 19901920 17 11.111433 Anserini +test2491 Q0 19905183 18 11.111433 Anserini +test2491 Q0 19895406 19 11.111433 Anserini +test2491 Q0 19905167 20 11.111433 Anserini +test2491 Q0 19896801 21 11.111433 Anserini +test2491 Q0 19896803 22 11.111433 Anserini +test2491 Q0 15814329 23 10.894672 Anserini +test2491 Q0 10480956 24 10.780690 Anserini +test2491 Q0 20713289 25 10.774714 Anserini +test2491 Q0 6250760 26 10.706941 Anserini +test2491 Q0 6250754 27 10.631975 Anserini +test2491 Q0 6141521 28 10.583849 Anserini +test2491 Q0 17905963 29 10.533509 Anserini +test2491 Q0 15814327 30 10.491655 Anserini +test2492 Q0 20006002 1 13.116253 Anserini +test2492 Q0 5324986 2 12.168865 Anserini +test2492 Q0 7031706 3 11.982613 Anserini +test2492 Q0 15744029 4 11.467528 Anserini +test2492 Q0 403210 5 11.087965 Anserini +test2492 Q0 403190 6 11.081101 Anserini +test2492 Q0 20006004 7 10.944028 Anserini +test2492 Q0 403214 8 10.503407 Anserini +test2492 Q0 5520825 9 10.465662 Anserini +test2492 Q0 12120203 10 10.417078 Anserini +test2492 Q0 1706029 11 10.285035 Anserini +test2492 Q0 5520824 12 10.181146 Anserini +test2492 Q0 403198 13 10.090851 Anserini +test2492 Q0 3819995 14 9.894418 Anserini +test2492 Q0 13312028 15 9.686099 Anserini +test2492 Q0 5163379 16 9.684244 Anserini +test2492 Q0 403193 17 9.663702 Anserini +test2492 Q0 5520822 18 9.639297 Anserini +test2492 Q0 5520839 19 9.615015 Anserini +test2492 Q0 3819609 20 9.585195 Anserini +test2492 Q0 15744028 21 9.511199 Anserini +test2492 Q0 5527010 22 9.486371 Anserini +test2492 Q0 9167934 23 9.364766 Anserini +test2492 Q0 9149762 24 9.293306 Anserini +test2492 Q0 15744033 25 9.273952 Anserini +test2492 Q0 1616023 26 9.242512 Anserini +test2492 Q0 5520823 27 9.180268 Anserini +test2492 Q0 17097629 28 9.180077 Anserini +test2492 Q0 7137684 29 9.179737 Anserini +test2492 Q0 12022505 30 9.153722 Anserini +test2493 Q0 371854 1 10.612823 Anserini +test2493 Q0 12435956 2 10.480762 Anserini +test2493 Q0 3809158 3 10.297000 Anserini +test2493 Q0 15710591 4 10.241076 Anserini +test2493 Q0 1891330 5 10.222192 Anserini +test2493 Q0 18873604 6 10.141082 Anserini +test2493 Q0 7219569 7 10.060326 Anserini +test2493 Q0 17723382 8 10.049659 Anserini +test2493 Q0 11345234 9 9.897494 Anserini +test2493 Q0 11345235 10 9.897494 Anserini +test2493 Q0 3824208 11 9.849932 Anserini +test2493 Q0 3476604 12 9.826736 Anserini +test2493 Q0 8589812 13 9.800484 Anserini +test2493 Q0 12361991 14 9.705303 Anserini +test2493 Q0 15384506 15 9.644179 Anserini +test2493 Q0 3177093 16 9.578906 Anserini +test2493 Q0 11182197 17 9.570863 Anserini +test2493 Q0 11747635 18 9.552267 Anserini +test2493 Q0 16149600 19 9.481171 Anserini +test2493 Q0 15274629 20 9.471754 Anserini +test2493 Q0 1751090 21 9.467943 Anserini +test2493 Q0 13216876 22 9.445729 Anserini +test2493 Q0 935053 23 9.343509 Anserini +test2493 Q0 5783383 24 9.318420 Anserini +test2493 Q0 2707516 25 9.311566 Anserini +test2493 Q0 15803894 26 9.295406 Anserini +test2493 Q0 18463943 27 9.279344 Anserini +test2493 Q0 6118876 28 9.261741 Anserini +test2493 Q0 12978954 29 9.145603 Anserini +test2493 Q0 5912684 30 9.143782 Anserini +test2494 Q0 6880364 1 21.319538 Anserini +test2494 Q0 6880375 2 20.593546 Anserini +test2494 Q0 6880406 3 19.879946 Anserini +test2494 Q0 6880379 4 19.667292 Anserini +test2494 Q0 6880412 5 19.398188 Anserini +test2494 Q0 6880360 6 19.377584 Anserini +test2494 Q0 6880377 7 19.366661 Anserini +test2494 Q0 6880405 8 19.300913 Anserini +test2494 Q0 11452723 9 19.299707 Anserini +test2494 Q0 6880527 10 18.996368 Anserini +test2494 Q0 17066493 11 18.768650 Anserini +test2494 Q0 6880376 12 18.659422 Anserini +test2494 Q0 17066492 13 18.577286 Anserini +test2494 Q0 6880382 14 18.577286 Anserini +test2494 Q0 6880413 15 18.259779 Anserini +test2494 Q0 6880403 16 18.176327 Anserini +test2494 Q0 6880367 17 18.160900 Anserini +test2494 Q0 6880362 18 18.072201 Anserini +test2494 Q0 6880361 19 17.802200 Anserini +test2494 Q0 7518592 20 17.753338 Anserini +test2494 Q0 6880363 21 17.712990 Anserini +test2494 Q0 6880517 22 17.581434 Anserini +test2494 Q0 6880378 23 17.537457 Anserini +test2494 Q0 6880393 24 17.515114 Anserini +test2494 Q0 11047152 25 17.430296 Anserini +test2494 Q0 6880370 26 17.155962 Anserini +test2494 Q0 5946062 27 17.106480 Anserini +test2494 Q0 20389725 28 16.994400 Anserini +test2494 Q0 338669 29 16.957401 Anserini +test2494 Q0 6880400 30 16.913774 Anserini +test2495 Q0 5868304 1 23.151320 Anserini +test2495 Q0 2915128 2 22.208656 Anserini +test2495 Q0 7731220 3 22.047184 Anserini +test2495 Q0 12561001 4 21.992693 Anserini +test2495 Q0 1776823 5 21.262623 Anserini +test2495 Q0 3119344 6 21.058062 Anserini +test2495 Q0 7731231 7 20.724882 Anserini +test2495 Q0 3119350 8 20.683243 Anserini +test2495 Q0 7731219 9 20.653444 Anserini +test2495 Q0 1776810 10 20.192698 Anserini +test2495 Q0 12843684 11 19.858356 Anserini +test2495 Q0 3119346 12 19.794210 Anserini +test2495 Q0 3467651 13 19.717207 Anserini +test2495 Q0 14451061 14 19.420219 Anserini +test2495 Q0 1394784 15 19.226063 Anserini +test2495 Q0 14304996 16 19.085388 Anserini +test2495 Q0 6668437 17 18.997429 Anserini +test2495 Q0 9136910 18 18.972443 Anserini +test2495 Q0 1776816 19 18.893599 Anserini +test2495 Q0 15501871 20 18.893061 Anserini +test2495 Q0 857911 21 18.741930 Anserini +test2495 Q0 2981893 22 18.629513 Anserini +test2495 Q0 12843683 23 18.509605 Anserini +test2495 Q0 18851225 24 18.449202 Anserini +test2495 Q0 857961 25 18.296028 Anserini +test2495 Q0 14305000 26 18.274296 Anserini +test2495 Q0 11319342 27 18.258947 Anserini +test2495 Q0 3125350 28 18.228001 Anserini +test2495 Q0 2503325 29 18.203341 Anserini +test2495 Q0 20135736 30 18.143938 Anserini +test2496 Q0 7953293 1 11.628382 Anserini +test2496 Q0 18938965 2 11.327023 Anserini +test2496 Q0 15084251 3 10.798321 Anserini +test2496 Q0 16858946 4 10.767388 Anserini +test2496 Q0 5640710 5 10.692413 Anserini +test2496 Q0 16690405 6 10.613842 Anserini +test2496 Q0 14447218 7 10.478107 Anserini +test2496 Q0 12322817 8 10.460118 Anserini +test2496 Q0 13484468 9 10.337980 Anserini +test2496 Q0 7953292 10 10.321143 Anserini +test2496 Q0 13422980 11 10.284919 Anserini +test2496 Q0 14286728 12 10.185693 Anserini +test2496 Q0 14016008 13 10.182334 Anserini +test2496 Q0 11430279 14 10.127272 Anserini +test2496 Q0 160918 15 10.106251 Anserini +test2496 Q0 4902506 16 10.092217 Anserini +test2496 Q0 930125 17 10.066454 Anserini +test2496 Q0 13484464 18 10.004669 Anserini +test2496 Q0 3848775 19 9.993599 Anserini +test2496 Q0 15324867 20 9.988018 Anserini +test2496 Q0 14286726 21 9.922270 Anserini +test2496 Q0 4670635 22 9.879679 Anserini +test2496 Q0 13697523 23 9.874167 Anserini +test2496 Q0 3874395 24 9.813535 Anserini +test2496 Q0 12145658 25 9.794852 Anserini +test2496 Q0 10036913 26 9.793626 Anserini +test2496 Q0 6643262 27 9.788571 Anserini +test2496 Q0 1393318 28 9.733590 Anserini +test2496 Q0 12959688 29 9.733590 Anserini +test2496 Q0 4537989 30 9.724700 Anserini +test2497 Q0 4488755 1 10.867560 Anserini +test2497 Q0 16864163 2 10.850024 Anserini +test2497 Q0 4488757 3 10.721992 Anserini +test2497 Q0 6529702 4 10.420702 Anserini +test2497 Q0 17488384 5 10.327683 Anserini +test2497 Q0 20129035 6 10.266994 Anserini +test2497 Q0 16927003 7 10.219563 Anserini +test2497 Q0 2938904 8 10.212008 Anserini +test2497 Q0 19683203 9 9.987576 Anserini +test2497 Q0 4321438 10 9.982951 Anserini +test2497 Q0 11525411 11 9.631779 Anserini +test2497 Q0 828692 12 9.607727 Anserini +test2497 Q0 19683198 13 9.565174 Anserini +test2497 Q0 2357595 14 9.459842 Anserini +test2497 Q0 20305540 15 9.451632 Anserini +test2497 Q0 14725826 16 9.354709 Anserini +test2497 Q0 6862923 17 9.292899 Anserini +test2497 Q0 19683200 18 9.268833 Anserini +test2497 Q0 13263443 19 9.174010 Anserini +test2497 Q0 9947279 20 9.166283 Anserini +test2497 Q0 9160026 21 9.157669 Anserini +test2497 Q0 5282560 22 9.139206 Anserini +test2497 Q0 8145437 23 9.069616 Anserini +test2497 Q0 11104069 24 9.038131 Anserini +test2497 Q0 4488756 25 9.038131 Anserini +test2497 Q0 9852504 26 9.029790 Anserini +test2497 Q0 19696499 27 8.988442 Anserini +test2497 Q0 11756139 28 8.983304 Anserini +test2497 Q0 16899345 29 8.981560 Anserini +test2497 Q0 12802993 30 8.969124 Anserini +test2498 Q0 5517027 1 9.277371 Anserini +test2498 Q0 6411507 2 9.258886 Anserini +test2498 Q0 16395320 3 9.188643 Anserini +test2498 Q0 17649449 4 9.166386 Anserini +test2498 Q0 1833739 5 9.156593 Anserini +test2498 Q0 14603636 6 8.996307 Anserini +test2498 Q0 2650611 7 8.984094 Anserini +test2498 Q0 20939419 8 8.953505 Anserini +test2498 Q0 1510470 9 8.884029 Anserini +test2498 Q0 7364892 10 8.824823 Anserini +test2498 Q0 20939418 11 8.810049 Anserini +test2498 Q0 20123973 12 8.764832 Anserini +test2498 Q0 8141754 13 8.744261 Anserini +test2498 Q0 2876466 14 8.691823 Anserini +test2498 Q0 11333538 15 8.690233 Anserini +test2498 Q0 1725819 16 8.690233 Anserini +test2498 Q0 20123975 17 8.657766 Anserini +test2498 Q0 6584659 18 8.606829 Anserini +test2498 Q0 13375850 19 8.582592 Anserini +test2498 Q0 11370858 20 8.574446 Anserini +test2498 Q0 6584591 21 8.526161 Anserini +test2498 Q0 9335324 22 8.525414 Anserini +test2498 Q0 5808257 23 8.503666 Anserini +test2498 Q0 12967558 24 8.497917 Anserini +test2498 Q0 5117825 25 8.488894 Anserini +test2498 Q0 7869275 26 8.485399 Anserini +test2498 Q0 699822 27 8.473672 Anserini +test2498 Q0 15693403 28 8.449224 Anserini +test2498 Q0 17930757 29 8.443203 Anserini +test2498 Q0 20508766 30 8.426558 Anserini +test2499 Q0 12504046 1 18.769379 Anserini +test2499 Q0 5780605 2 15.104978 Anserini +test2499 Q0 5780616 3 13.996038 Anserini +test2499 Q0 15529467 4 13.685958 Anserini +test2499 Q0 5780618 5 13.607133 Anserini +test2499 Q0 2815810 6 13.566251 Anserini +test2499 Q0 13809600 7 13.439220 Anserini +test2499 Q0 5780608 8 13.429685 Anserini +test2499 Q0 5780610 9 13.365746 Anserini +test2499 Q0 5780607 10 13.172492 Anserini +test2499 Q0 5780615 11 12.962146 Anserini +test2499 Q0 5780611 12 12.828388 Anserini +test2499 Q0 13809599 13 12.668112 Anserini +test2499 Q0 12504051 14 12.170015 Anserini +test2499 Q0 6325931 15 12.053895 Anserini +test2499 Q0 15673449 16 12.003685 Anserini +test2499 Q0 20960289 17 11.929180 Anserini +test2499 Q0 5780612 18 11.854452 Anserini +test2499 Q0 5780613 19 11.605192 Anserini +test2499 Q0 6966153 20 11.441833 Anserini +test2499 Q0 13809576 21 11.143147 Anserini +test2499 Q0 15673455 22 11.143147 Anserini +test2499 Q0 20960285 23 10.940516 Anserini +test2499 Q0 5780617 24 10.864369 Anserini +test2499 Q0 13809582 25 10.857112 Anserini +test2499 Q0 8926648 26 10.768411 Anserini +test2499 Q0 15529468 27 10.669201 Anserini +test2499 Q0 5780609 28 10.630711 Anserini +test2499 Q0 12504065 29 10.455997 Anserini +test2499 Q0 12504045 30 10.358732 Anserini +test25 Q0 18754161 1 17.957600 Anserini +test25 Q0 18754168 2 17.957600 Anserini +test25 Q0 16531009 3 17.155413 Anserini +test25 Q0 16531013 4 16.258434 Anserini +test25 Q0 4811516 5 16.146822 Anserini +test25 Q0 15598697 6 15.262245 Anserini +test25 Q0 13034802 7 14.895350 Anserini +test25 Q0 16467174 8 14.366558 Anserini +test25 Q0 16531010 9 14.199268 Anserini +test25 Q0 16531015 10 14.189926 Anserini +test25 Q0 18754162 11 14.108097 Anserini +test25 Q0 18843754 12 13.926878 Anserini +test25 Q0 15691584 13 13.828918 Anserini +test25 Q0 16467167 14 13.797550 Anserini +test25 Q0 20158595 15 13.550908 Anserini +test25 Q0 9936143 16 13.509340 Anserini +test25 Q0 18891569 17 13.448283 Anserini +test25 Q0 16812476 18 13.422622 Anserini +test25 Q0 18754165 19 13.380847 Anserini +test25 Q0 9037216 20 13.296812 Anserini +test25 Q0 19087227 21 13.168969 Anserini +test25 Q0 18843760 22 13.042302 Anserini +test25 Q0 11094519 23 12.913018 Anserini +test25 Q0 16467169 24 12.840132 Anserini +test25 Q0 16467165 25 12.778063 Anserini +test25 Q0 9409672 26 12.633557 Anserini +test25 Q0 18757988 27 12.588867 Anserini +test25 Q0 13148720 28 12.573725 Anserini +test25 Q0 16467180 29 12.491863 Anserini +test25 Q0 18747407 30 12.491863 Anserini +test250 Q0 2412247 1 18.357325 Anserini +test250 Q0 2412235 2 17.227213 Anserini +test250 Q0 2412230 3 16.007435 Anserini +test250 Q0 2412236 4 15.776064 Anserini +test250 Q0 2412248 5 15.635444 Anserini +test250 Q0 2412229 6 15.468495 Anserini +test250 Q0 2412234 7 15.403713 Anserini +test250 Q0 2412250 8 14.816667 Anserini +test250 Q0 4852534 9 14.351828 Anserini +test250 Q0 12049370 10 14.232473 Anserini +test250 Q0 2570268 11 14.167621 Anserini +test250 Q0 15962331 12 14.062838 Anserini +test250 Q0 2983120 13 14.036407 Anserini +test250 Q0 6572922 14 13.892384 Anserini +test250 Q0 2412242 15 13.871618 Anserini +test250 Q0 2412245 16 13.808699 Anserini +test250 Q0 736683 17 13.783222 Anserini +test250 Q0 12049373 18 13.704202 Anserini +test250 Q0 110932 19 13.678699 Anserini +test250 Q0 13045271 20 13.556657 Anserini +test250 Q0 6572923 21 13.540822 Anserini +test250 Q0 15936265 22 13.313474 Anserini +test250 Q0 3476666 23 13.308104 Anserini +test250 Q0 563885 24 13.304585 Anserini +test250 Q0 2917746 25 13.204256 Anserini +test250 Q0 110930 26 13.145660 Anserini +test250 Q0 11518430 27 13.056774 Anserini +test250 Q0 2074959 28 13.048275 Anserini +test250 Q0 4189242 29 13.018477 Anserini +test250 Q0 18671386 30 12.996101 Anserini +test2500 Q0 17951535 1 19.170261 Anserini +test2500 Q0 17951542 2 18.406691 Anserini +test2500 Q0 17951536 3 16.223654 Anserini +test2500 Q0 17951539 4 16.098139 Anserini +test2500 Q0 6576836 5 15.131902 Anserini +test2500 Q0 3591018 6 15.031973 Anserini +test2500 Q0 6576843 7 14.884419 Anserini +test2500 Q0 17951537 8 14.671350 Anserini +test2500 Q0 17951538 9 14.671350 Anserini +test2500 Q0 3530301 10 14.463555 Anserini +test2500 Q0 11890634 11 14.030804 Anserini +test2500 Q0 6576837 12 13.355930 Anserini +test2500 Q0 11470508 13 13.222467 Anserini +test2500 Q0 17951541 14 13.158687 Anserini +test2500 Q0 1422755 15 13.141932 Anserini +test2500 Q0 6576839 16 13.035004 Anserini +test2500 Q0 18889831 17 12.909174 Anserini +test2500 Q0 1416985 18 12.640214 Anserini +test2500 Q0 6865225 19 12.525135 Anserini +test2500 Q0 13587936 20 12.261333 Anserini +test2500 Q0 4939548 21 12.214434 Anserini +test2500 Q0 6576838 22 11.985114 Anserini +test2500 Q0 954102 23 11.944654 Anserini +test2500 Q0 18905382 24 11.818913 Anserini +test2500 Q0 674516 25 11.818913 Anserini +test2500 Q0 17951540 26 11.818913 Anserini +test2500 Q0 7384692 27 11.793949 Anserini +test2500 Q0 20032270 28 11.695789 Anserini +test2500 Q0 17616177 29 11.650062 Anserini +test2500 Q0 14456527 30 11.397910 Anserini +test2501 Q0 190987 1 22.583006 Anserini +test2501 Q0 191008 2 22.583006 Anserini +test2501 Q0 2180401 3 22.420649 Anserini +test2501 Q0 20687829 4 21.760780 Anserini +test2501 Q0 191000 5 21.760780 Anserini +test2501 Q0 190999 6 21.647057 Anserini +test2501 Q0 15026783 7 21.278015 Anserini +test2501 Q0 190996 8 21.263386 Anserini +test2501 Q0 14261291 9 21.067112 Anserini +test2501 Q0 190997 10 20.906666 Anserini +test2501 Q0 191003 11 20.903961 Anserini +test2501 Q0 9137240 12 20.837156 Anserini +test2501 Q0 190998 13 20.555428 Anserini +test2501 Q0 190993 14 20.267475 Anserini +test2501 Q0 191004 15 19.925358 Anserini +test2501 Q0 355200 16 19.890676 Anserini +test2501 Q0 14002544 17 18.972435 Anserini +test2501 Q0 191007 18 18.901844 Anserini +test2501 Q0 14002543 19 18.895306 Anserini +test2501 Q0 1544106 20 18.528864 Anserini +test2501 Q0 191005 21 18.165327 Anserini +test2501 Q0 190988 22 18.037231 Anserini +test2501 Q0 190994 23 17.877970 Anserini +test2501 Q0 11217657 24 17.786621 Anserini +test2501 Q0 11217660 25 17.696327 Anserini +test2501 Q0 11217669 26 17.696327 Anserini +test2501 Q0 19303094 27 17.696327 Anserini +test2501 Q0 2180399 28 17.636616 Anserini +test2501 Q0 45049 29 17.267548 Anserini +test2501 Q0 3636916 30 17.181013 Anserini +test2502 Q0 2760404 1 18.209152 Anserini +test2502 Q0 750320 2 17.111397 Anserini +test2502 Q0 2167213 3 16.831289 Anserini +test2502 Q0 15884582 4 16.223278 Anserini +test2502 Q0 15884581 5 16.150846 Anserini +test2502 Q0 2167230 6 16.082920 Anserini +test2502 Q0 15884580 7 16.002674 Anserini +test2502 Q0 1003450 8 15.120010 Anserini +test2502 Q0 3047252 9 14.987743 Anserini +test2502 Q0 5721890 10 14.509358 Anserini +test2502 Q0 2760405 11 14.500041 Anserini +test2502 Q0 3460820 12 14.351312 Anserini +test2502 Q0 4650942 13 14.279024 Anserini +test2502 Q0 17673810 14 14.250175 Anserini +test2502 Q0 2760403 15 13.979778 Anserini +test2502 Q0 2167214 16 13.953793 Anserini +test2502 Q0 11324654 17 13.823946 Anserini +test2502 Q0 6558607 18 13.565165 Anserini +test2502 Q0 2167227 19 13.498366 Anserini +test2502 Q0 11324655 20 13.429540 Anserini +test2502 Q0 2760408 21 13.138510 Anserini +test2502 Q0 12859787 22 13.066599 Anserini +test2502 Q0 20695795 23 12.956017 Anserini +test2502 Q0 2503313 24 12.956017 Anserini +test2502 Q0 17673815 25 12.900140 Anserini +test2502 Q0 2167217 26 12.818942 Anserini +test2502 Q0 2167225 27 12.413616 Anserini +test2502 Q0 10155520 28 12.396545 Anserini +test2502 Q0 1394787 29 12.116380 Anserini +test2502 Q0 10155514 30 12.029184 Anserini +test2503 Q0 82279 1 13.067801 Anserini +test2503 Q0 2445194 2 12.226433 Anserini +test2503 Q0 3639733 3 12.097656 Anserini +test2503 Q0 8577893 4 12.019181 Anserini +test2503 Q0 161186 5 11.710526 Anserini +test2503 Q0 5136804 6 11.401604 Anserini +test2503 Q0 116331 7 11.395202 Anserini +test2503 Q0 5143345 8 11.386347 Anserini +test2503 Q0 6549867 9 11.381179 Anserini +test2503 Q0 1445265 10 11.309690 Anserini +test2503 Q0 17357151 11 11.279174 Anserini +test2503 Q0 18798240 12 11.178127 Anserini +test2503 Q0 16281482 13 11.105767 Anserini +test2503 Q0 16088886 14 11.064629 Anserini +test2503 Q0 6478762 15 11.064629 Anserini +test2503 Q0 2300995 16 11.020022 Anserini +test2503 Q0 3738677 17 10.968758 Anserini +test2503 Q0 9710002 18 10.962307 Anserini +test2503 Q0 20027181 19 10.851188 Anserini +test2503 Q0 876925 20 10.819968 Anserini +test2503 Q0 970051 21 10.789972 Anserini +test2503 Q0 12302389 22 10.784382 Anserini +test2503 Q0 20025692 23 10.764472 Anserini +test2503 Q0 579719 24 10.610703 Anserini +test2503 Q0 9710007 25 10.575978 Anserini +test2503 Q0 470807 26 10.560169 Anserini +test2503 Q0 486276 27 10.496351 Anserini +test2503 Q0 10547264 28 10.456490 Anserini +test2503 Q0 3886119 29 10.454486 Anserini +test2503 Q0 20855165 30 10.434653 Anserini +test2504 Q0 4365338 1 15.407570 Anserini +test2504 Q0 6286333 2 15.284422 Anserini +test2504 Q0 9696587 3 15.130474 Anserini +test2504 Q0 7015522 4 14.838029 Anserini +test2504 Q0 10760532 5 14.610208 Anserini +test2504 Q0 4455352 6 14.436628 Anserini +test2504 Q0 20703970 7 14.146406 Anserini +test2504 Q0 20703969 8 14.146406 Anserini +test2504 Q0 15974783 9 14.012801 Anserini +test2504 Q0 7755100 10 13.995001 Anserini +test2504 Q0 384728 11 13.662043 Anserini +test2504 Q0 4455347 12 13.573988 Anserini +test2504 Q0 17083265 13 13.545463 Anserini +test2504 Q0 7755101 14 13.495290 Anserini +test2504 Q0 17720083 15 13.486813 Anserini +test2504 Q0 384734 16 13.484434 Anserini +test2504 Q0 15974784 17 13.249098 Anserini +test2504 Q0 4455349 18 13.196827 Anserini +test2504 Q0 15470513 19 13.173239 Anserini +test2504 Q0 15974785 20 13.122455 Anserini +test2504 Q0 6286341 21 13.057011 Anserini +test2504 Q0 8156709 22 13.048712 Anserini +test2504 Q0 6286339 23 13.044827 Anserini +test2504 Q0 10761431 24 12.962694 Anserini +test2504 Q0 10761436 25 12.895949 Anserini +test2504 Q0 4455350 26 12.888656 Anserini +test2504 Q0 6286336 27 12.771152 Anserini +test2504 Q0 12503971 28 12.659532 Anserini +test2504 Q0 12275874 29 12.643368 Anserini +test2504 Q0 6286330 30 12.628597 Anserini +test2505 Q0 2828167 1 15.194656 Anserini +test2505 Q0 5167241 2 14.941410 Anserini +test2505 Q0 5562326 3 14.735497 Anserini +test2505 Q0 5242888 4 14.006752 Anserini +test2505 Q0 5242893 5 13.882807 Anserini +test2505 Q0 85869 6 13.779888 Anserini +test2505 Q0 3983483 7 13.690359 Anserini +test2505 Q0 4341599 8 13.529300 Anserini +test2505 Q0 3570765 9 13.439095 Anserini +test2505 Q0 15198068 10 13.345266 Anserini +test2505 Q0 2212398 11 13.319178 Anserini +test2505 Q0 85885 12 13.277723 Anserini +test2505 Q0 18248713 13 13.185927 Anserini +test2505 Q0 10188662 14 13.171271 Anserini +test2505 Q0 85855 15 13.166197 Anserini +test2505 Q0 4342174 16 13.044409 Anserini +test2505 Q0 6366357 17 12.994571 Anserini +test2505 Q0 4342199 18 12.937035 Anserini +test2505 Q0 2212407 19 12.893539 Anserini +test2505 Q0 14643469 20 12.877487 Anserini +test2505 Q0 12929378 21 12.868236 Anserini +test2505 Q0 5989083 22 12.826823 Anserini +test2505 Q0 2032901 23 12.823803 Anserini +test2505 Q0 19305687 24 12.779032 Anserini +test2505 Q0 5970409 25 12.719578 Anserini +test2505 Q0 10188577 26 12.559404 Anserini +test2505 Q0 12571771 27 12.554195 Anserini +test2505 Q0 4342447 28 12.545988 Anserini +test2505 Q0 13518759 29 12.536261 Anserini +test2505 Q0 2446883 30 12.502905 Anserini +test2506 Q0 19892712 1 14.253254 Anserini +test2506 Q0 15010781 2 13.012173 Anserini +test2506 Q0 19892710 3 11.392876 Anserini +test2506 Q0 19892711 4 11.348551 Anserini +test2506 Q0 17348623 5 10.748779 Anserini +test2506 Q0 19107622 6 10.724779 Anserini +test2506 Q0 7826613 7 10.627627 Anserini +test2506 Q0 11951088 8 10.538805 Anserini +test2506 Q0 20970643 9 10.355627 Anserini +test2506 Q0 4110912 10 10.138910 Anserini +test2506 Q0 19922809 11 9.969099 Anserini +test2506 Q0 19795070 12 9.872430 Anserini +test2506 Q0 9457483 13 9.870553 Anserini +test2506 Q0 10594211 14 9.788067 Anserini +test2506 Q0 7535299 15 9.756493 Anserini +test2506 Q0 10516388 16 9.738168 Anserini +test2506 Q0 7072789 17 9.569681 Anserini +test2506 Q0 17823894 18 9.522058 Anserini +test2506 Q0 3842560 19 9.493638 Anserini +test2506 Q0 18616045 20 9.475674 Anserini +test2506 Q0 15758045 21 9.402449 Anserini +test2506 Q0 5817010 22 9.382094 Anserini +test2506 Q0 18181354 23 9.366139 Anserini +test2506 Q0 5610334 24 9.286414 Anserini +test2506 Q0 13832049 25 9.263915 Anserini +test2506 Q0 5366540 26 9.251213 Anserini +test2506 Q0 6054943 27 9.156289 Anserini +test2506 Q0 7826615 28 9.149071 Anserini +test2506 Q0 5698990 29 9.118656 Anserini +test2506 Q0 1837969 30 9.094188 Anserini +test2507 Q0 2672197 1 17.182875 Anserini +test2507 Q0 15009245 2 14.430711 Anserini +test2507 Q0 15117788 3 14.221675 Anserini +test2507 Q0 12014901 4 14.026587 Anserini +test2507 Q0 7082575 5 13.732727 Anserini +test2507 Q0 15771073 6 13.506729 Anserini +test2507 Q0 14770376 7 13.300699 Anserini +test2507 Q0 13180190 8 13.249725 Anserini +test2507 Q0 4011751 9 13.012836 Anserini +test2507 Q0 11482207 10 13.009915 Anserini +test2507 Q0 15447033 11 12.901744 Anserini +test2507 Q0 18931591 12 12.896755 Anserini +test2507 Q0 4322342 13 12.675989 Anserini +test2507 Q0 12943734 14 12.562621 Anserini +test2507 Q0 17957808 15 12.386678 Anserini +test2507 Q0 19272554 16 12.360202 Anserini +test2507 Q0 19272553 17 12.343641 Anserini +test2507 Q0 3420286 18 12.301626 Anserini +test2507 Q0 6037275 19 12.249530 Anserini +test2507 Q0 15771058 20 12.237919 Anserini +test2507 Q0 998614 21 12.161501 Anserini +test2507 Q0 13931765 22 12.134270 Anserini +test2507 Q0 5079469 23 12.110823 Anserini +test2507 Q0 6037329 24 11.982300 Anserini +test2507 Q0 6037383 25 11.904724 Anserini +test2507 Q0 15117785 26 11.884961 Anserini +test2507 Q0 13931761 27 11.770388 Anserini +test2507 Q0 13820857 28 11.718518 Anserini +test2507 Q0 10680103 29 11.680671 Anserini +test2507 Q0 12562450 30 11.662389 Anserini +test2508 Q0 5834359 1 9.936314 Anserini +test2508 Q0 10770575 2 9.736804 Anserini +test2508 Q0 13847512 3 9.639259 Anserini +test2508 Q0 6767152 4 9.584871 Anserini +test2508 Q0 15573853 5 9.416553 Anserini +test2508 Q0 6767364 6 9.396811 Anserini +test2508 Q0 12569034 7 9.359591 Anserini +test2508 Q0 13242414 8 9.339281 Anserini +test2508 Q0 6766144 9 9.337263 Anserini +test2508 Q0 314248 10 9.320484 Anserini +test2508 Q0 227868 11 9.315071 Anserini +test2508 Q0 6772655 12 9.278031 Anserini +test2508 Q0 6772658 13 9.278031 Anserini +test2508 Q0 3760150 14 9.259151 Anserini +test2508 Q0 16480380 15 9.207586 Anserini +test2508 Q0 16101065 16 9.152053 Anserini +test2508 Q0 15573854 17 9.147493 Anserini +test2508 Q0 3760375 18 9.140795 Anserini +test2508 Q0 4822621 19 9.134890 Anserini +test2508 Q0 6805826 20 9.107026 Anserini +test2508 Q0 227953 21 9.092523 Anserini +test2508 Q0 2413895 22 9.065446 Anserini +test2508 Q0 4783984 23 9.045105 Anserini +test2508 Q0 5219521 24 8.986923 Anserini +test2508 Q0 8617764 25 8.986923 Anserini +test2508 Q0 3314372 26 8.958090 Anserini +test2508 Q0 7491836 27 8.850192 Anserini +test2508 Q0 5130607 28 8.807316 Anserini +test2508 Q0 6766443 29 8.787726 Anserini +test2508 Q0 6766382 30 8.726204 Anserini +test2509 Q0 18495083 1 16.135670 Anserini +test2509 Q0 18683563 2 15.433879 Anserini +test2509 Q0 15635355 3 14.886268 Anserini +test2509 Q0 13356997 4 14.551378 Anserini +test2509 Q0 18683558 5 14.445464 Anserini +test2509 Q0 18683559 6 14.424217 Anserini +test2509 Q0 8268296 7 13.912542 Anserini +test2509 Q0 1961708 8 13.221491 Anserini +test2509 Q0 18683557 9 13.122101 Anserini +test2509 Q0 18683570 10 13.122101 Anserini +test2509 Q0 6327042 11 13.110862 Anserini +test2509 Q0 6446262 12 12.491487 Anserini +test2509 Q0 20973403 13 12.467693 Anserini +test2509 Q0 19870435 14 12.318062 Anserini +test2509 Q0 19870436 15 12.318062 Anserini +test2509 Q0 17333085 16 12.190733 Anserini +test2509 Q0 12423242 17 12.154148 Anserini +test2509 Q0 6340078 18 12.022746 Anserini +test2509 Q0 7921653 19 12.021973 Anserini +test2509 Q0 5876566 20 11.991218 Anserini +test2509 Q0 14790323 21 11.961163 Anserini +test2509 Q0 2186120 22 11.890568 Anserini +test2509 Q0 18404265 23 11.870279 Anserini +test2509 Q0 18092441 24 11.854897 Anserini +test2509 Q0 18683569 25 11.817877 Anserini +test2509 Q0 18151796 26 11.755305 Anserini +test2509 Q0 16843603 27 11.717646 Anserini +test2509 Q0 15523866 28 11.708313 Anserini +test2509 Q0 1952120 29 11.684548 Anserini +test2509 Q0 17611272 30 11.682215 Anserini +test251 Q0 12503264 1 19.847794 Anserini +test251 Q0 12050341 2 19.686659 Anserini +test251 Q0 9622791 3 18.983112 Anserini +test251 Q0 10905728 4 18.203682 Anserini +test251 Q0 12548032 5 18.061666 Anserini +test251 Q0 20994324 6 17.627104 Anserini +test251 Q0 17082357 7 17.373777 Anserini +test251 Q0 13845164 8 17.238430 Anserini +test251 Q0 9906550 9 17.216696 Anserini +test251 Q0 15860543 10 17.128933 Anserini +test251 Q0 3066516 11 16.989862 Anserini +test251 Q0 13583506 12 16.952188 Anserini +test251 Q0 15860542 13 16.910217 Anserini +test251 Q0 15864314 14 16.870089 Anserini +test251 Q0 4113701 15 16.702291 Anserini +test251 Q0 13305764 16 16.553135 Anserini +test251 Q0 2343979 17 16.500910 Anserini +test251 Q0 17444237 18 16.464727 Anserini +test251 Q0 1011113 19 16.454205 Anserini +test251 Q0 17496332 20 16.436436 Anserini +test251 Q0 13845137 21 16.397440 Anserini +test251 Q0 12088512 22 16.335222 Anserini +test251 Q0 4113705 23 16.302156 Anserini +test251 Q0 9713594 24 16.230267 Anserini +test251 Q0 18234494 25 16.152399 Anserini +test251 Q0 12629506 26 16.113050 Anserini +test251 Q0 6709864 27 16.054581 Anserini +test251 Q0 3066528 28 15.957544 Anserini +test251 Q0 11925363 29 15.880736 Anserini +test251 Q0 11925366 30 15.880736 Anserini +test2510 Q0 18672931 1 11.242580 Anserini +test2510 Q0 41819 2 10.971317 Anserini +test2510 Q0 10984450 3 10.909607 Anserini +test2510 Q0 16555163 4 10.854937 Anserini +test2510 Q0 7549126 5 10.813747 Anserini +test2510 Q0 11631410 6 10.751102 Anserini +test2510 Q0 4512788 7 10.607706 Anserini +test2510 Q0 183861 8 10.566149 Anserini +test2510 Q0 4473109 9 10.434118 Anserini +test2510 Q0 10180861 10 10.434118 Anserini +test2510 Q0 10873758 11 10.398987 Anserini +test2510 Q0 3755939 12 10.398987 Anserini +test2510 Q0 388952 13 10.376500 Anserini +test2510 Q0 4616323 14 10.376500 Anserini +test2510 Q0 749347 15 10.344798 Anserini +test2510 Q0 5682686 16 10.323820 Anserini +test2510 Q0 6413044 17 10.278215 Anserini +test2510 Q0 10277522 18 10.248984 Anserini +test2510 Q0 10279141 19 10.233075 Anserini +test2510 Q0 4171953 20 10.221904 Anserini +test2510 Q0 19071808 21 10.210038 Anserini +test2510 Q0 20737452 22 10.203471 Anserini +test2510 Q0 2907494 23 10.168518 Anserini +test2510 Q0 16885798 24 10.149515 Anserini +test2510 Q0 6536523 25 10.134929 Anserini +test2510 Q0 10984461 26 10.081181 Anserini +test2510 Q0 7988505 27 10.052697 Anserini +test2510 Q0 793038 28 10.041668 Anserini +test2510 Q0 16918765 29 10.039284 Anserini +test2510 Q0 6536525 30 10.016365 Anserini +test2511 Q0 19664849 1 11.943888 Anserini +test2511 Q0 15472042 2 11.904055 Anserini +test2511 Q0 18742378 3 11.710262 Anserini +test2511 Q0 335979 4 11.630402 Anserini +test2511 Q0 4356356 5 11.328344 Anserini +test2511 Q0 16755661 6 10.726971 Anserini +test2511 Q0 16755665 7 10.688137 Anserini +test2511 Q0 2836576 8 10.575768 Anserini +test2511 Q0 1674019 9 10.444221 Anserini +test2511 Q0 6584774 10 10.346732 Anserini +test2511 Q0 15053387 11 10.307868 Anserini +test2511 Q0 446181 12 10.143742 Anserini +test2511 Q0 20350491 13 10.121758 Anserini +test2511 Q0 15972335 14 10.106600 Anserini +test2511 Q0 20888826 15 9.964550 Anserini +test2511 Q0 16755662 16 9.963040 Anserini +test2511 Q0 10007476 17 9.867386 Anserini +test2511 Q0 11136354 18 9.769021 Anserini +test2511 Q0 4612128 19 9.747650 Anserini +test2511 Q0 2790904 20 9.688513 Anserini +test2511 Q0 15140589 21 9.659559 Anserini +test2511 Q0 18276401 22 9.646603 Anserini +test2511 Q0 1795212 23 9.601839 Anserini +test2511 Q0 1860406 24 9.579733 Anserini +test2511 Q0 1860400 25 9.579733 Anserini +test2511 Q0 2805991 26 9.576523 Anserini +test2511 Q0 528798 27 9.552286 Anserini +test2511 Q0 2790905 28 9.550985 Anserini +test2511 Q0 11789191 29 9.546772 Anserini +test2511 Q0 2718547 30 9.527370 Anserini +test2512 Q0 3173973 1 11.088537 Anserini +test2512 Q0 5865855 2 9.728363 Anserini +test2512 Q0 8613615 3 9.540426 Anserini +test2512 Q0 9800949 4 9.491330 Anserini +test2512 Q0 412218 5 9.389850 Anserini +test2512 Q0 6036432 6 9.340023 Anserini +test2512 Q0 5865849 7 9.330822 Anserini +test2512 Q0 5865854 8 9.255453 Anserini +test2512 Q0 1404046 9 9.192352 Anserini +test2512 Q0 5342538 10 9.185092 Anserini +test2512 Q0 873984 11 9.173498 Anserini +test2512 Q0 1404054 12 9.154522 Anserini +test2512 Q0 1404059 13 9.154522 Anserini +test2512 Q0 16344993 14 9.154522 Anserini +test2512 Q0 16344994 15 9.154522 Anserini +test2512 Q0 4137110 16 9.150022 Anserini +test2512 Q0 4469843 17 9.118251 Anserini +test2512 Q0 5865850 18 9.101346 Anserini +test2512 Q0 11070257 19 9.047525 Anserini +test2512 Q0 3850173 20 9.046780 Anserini +test2512 Q0 3975490 21 8.976230 Anserini +test2512 Q0 8029740 22 8.950530 Anserini +test2512 Q0 6901006 23 8.927660 Anserini +test2512 Q0 11604909 24 8.924082 Anserini +test2512 Q0 11604917 25 8.924082 Anserini +test2512 Q0 20884153 26 8.915067 Anserini +test2512 Q0 5865851 27 8.884295 Anserini +test2512 Q0 8552272 28 8.879537 Anserini +test2512 Q0 1404057 29 8.768738 Anserini +test2512 Q0 10257039 30 8.764048 Anserini +test2513 Q0 1036589 1 12.338487 Anserini +test2513 Q0 322203 2 10.889850 Anserini +test2513 Q0 7276650 3 10.608027 Anserini +test2513 Q0 562657 4 10.176241 Anserini +test2513 Q0 172985 5 9.539186 Anserini +test2513 Q0 19865026 6 9.523618 Anserini +test2513 Q0 11649911 7 9.294499 Anserini +test2513 Q0 20875878 8 9.273559 Anserini +test2513 Q0 4516583 9 9.256084 Anserini +test2513 Q0 11649913 10 9.241773 Anserini +test2513 Q0 15736536 11 9.172263 Anserini +test2513 Q0 3255070 12 9.106358 Anserini +test2513 Q0 20038931 13 9.022961 Anserini +test2513 Q0 12974012 14 8.970198 Anserini +test2513 Q0 5232779 15 8.956112 Anserini +test2513 Q0 7211554 16 8.893174 Anserini +test2513 Q0 8624249 17 8.891459 Anserini +test2513 Q0 7636833 18 8.885839 Anserini +test2513 Q0 16031778 19 8.846922 Anserini +test2513 Q0 17455223 20 8.846287 Anserini +test2513 Q0 5232126 21 8.797591 Anserini +test2513 Q0 7383809 22 8.797591 Anserini +test2513 Q0 7383814 23 8.797591 Anserini +test2513 Q0 17680945 24 8.773172 Anserini +test2513 Q0 17594479 25 8.742109 Anserini +test2513 Q0 15822781 26 8.740576 Anserini +test2513 Q0 19517982 27 8.731450 Anserini +test2513 Q0 15349428 28 8.721066 Anserini +test2513 Q0 8874757 29 8.717868 Anserini +test2513 Q0 170872 30 8.703993 Anserini +test2514 Q0 13142113 1 6.760327 Anserini +test2514 Q0 5658674 2 6.630679 Anserini +test2514 Q0 5658676 3 6.612069 Anserini +test2514 Q0 763863 4 6.610589 Anserini +test2514 Q0 13836801 5 6.533702 Anserini +test2514 Q0 8230082 6 6.483135 Anserini +test2514 Q0 8839451 7 6.411489 Anserini +test2514 Q0 8839460 8 6.411489 Anserini +test2514 Q0 728901 9 6.411208 Anserini +test2514 Q0 13142112 10 6.343914 Anserini +test2514 Q0 9835091 11 6.331131 Anserini +test2514 Q0 8924375 12 6.328878 Anserini +test2514 Q0 17665909 13 6.325467 Anserini +test2514 Q0 728898 14 6.306401 Anserini +test2514 Q0 4977031 15 6.306401 Anserini +test2514 Q0 14950343 16 6.302611 Anserini +test2514 Q0 17665910 17 6.301395 Anserini +test2514 Q0 9549488 18 6.288637 Anserini +test2514 Q0 728904 19 6.279921 Anserini +test2514 Q0 1356446 20 6.271264 Anserini +test2514 Q0 17665912 21 6.218450 Anserini +test2514 Q0 9835081 22 6.218450 Anserini +test2514 Q0 2380634 23 6.215900 Anserini +test2514 Q0 14950360 24 6.206348 Anserini +test2514 Q0 10884887 25 6.194116 Anserini +test2514 Q0 605965 26 6.194116 Anserini +test2514 Q0 2380638 27 6.194116 Anserini +test2514 Q0 14950354 28 6.194116 Anserini +test2514 Q0 1606080 29 6.183558 Anserini +test2514 Q0 14467434 30 6.169979 Anserini +test2515 Q0 815252 1 18.190338 Anserini +test2515 Q0 15113581 2 17.571692 Anserini +test2515 Q0 815231 3 17.473724 Anserini +test2515 Q0 9937860 4 17.260002 Anserini +test2515 Q0 815254 5 17.107368 Anserini +test2515 Q0 13299881 6 16.880341 Anserini +test2515 Q0 2137668 7 16.824129 Anserini +test2515 Q0 1969510 8 16.440245 Anserini +test2515 Q0 19453249 9 16.377892 Anserini +test2515 Q0 6534902 10 16.325869 Anserini +test2515 Q0 815259 11 16.254385 Anserini +test2515 Q0 13299883 12 16.123709 Anserini +test2515 Q0 19802279 13 16.042652 Anserini +test2515 Q0 9726536 14 16.042652 Anserini +test2515 Q0 248555 15 15.988121 Anserini +test2515 Q0 14372561 16 15.958855 Anserini +test2515 Q0 10591508 17 15.939054 Anserini +test2515 Q0 9890047 18 15.757938 Anserini +test2515 Q0 8507263 19 15.485878 Anserini +test2515 Q0 815258 20 15.435489 Anserini +test2515 Q0 15548312 21 15.435489 Anserini +test2515 Q0 12634524 22 15.399930 Anserini +test2515 Q0 10958341 23 15.365150 Anserini +test2515 Q0 15548317 24 15.355398 Anserini +test2515 Q0 10958344 25 15.323593 Anserini +test2515 Q0 7376173 26 15.241618 Anserini +test2515 Q0 1996469 27 15.201014 Anserini +test2515 Q0 248548 28 15.197811 Anserini +test2515 Q0 248507 29 15.197811 Anserini +test2515 Q0 10961253 30 15.193447 Anserini +test2516 Q0 20164131 1 14.017855 Anserini +test2516 Q0 20164129 2 13.413735 Anserini +test2516 Q0 16347590 3 13.072679 Anserini +test2516 Q0 20164130 4 12.448584 Anserini +test2516 Q0 19319091 5 11.962633 Anserini +test2516 Q0 19319094 6 11.956686 Anserini +test2516 Q0 17234512 7 11.906560 Anserini +test2516 Q0 17234509 8 11.856905 Anserini +test2516 Q0 17990742 9 11.790702 Anserini +test2516 Q0 19507742 10 11.713708 Anserini +test2516 Q0 20020995 11 11.711260 Anserini +test2516 Q0 18549245 12 11.667972 Anserini +test2516 Q0 17990745 13 11.657429 Anserini +test2516 Q0 19319089 14 11.326182 Anserini +test2516 Q0 16347566 15 11.325235 Anserini +test2516 Q0 18549241 16 11.210691 Anserini +test2516 Q0 20020991 17 11.077051 Anserini +test2516 Q0 17990741 18 11.077051 Anserini +test2516 Q0 20036455 19 10.578938 Anserini +test2516 Q0 19034388 20 10.374933 Anserini +test2516 Q0 16347580 21 10.371644 Anserini +test2516 Q0 19054968 22 10.370740 Anserini +test2516 Q0 8878457 23 10.369659 Anserini +test2516 Q0 18193274 24 10.234590 Anserini +test2516 Q0 17234510 25 10.225075 Anserini +test2516 Q0 16347582 26 10.217698 Anserini +test2516 Q0 13044673 27 10.140001 Anserini +test2516 Q0 7202297 28 10.139488 Anserini +test2516 Q0 4758920 29 10.138325 Anserini +test2516 Q0 16846827 30 10.102573 Anserini +test2517 Q0 13825622 1 14.143490 Anserini +test2517 Q0 13825625 2 14.078196 Anserini +test2517 Q0 18917531 3 13.393298 Anserini +test2517 Q0 19485394 4 12.389940 Anserini +test2517 Q0 7823467 5 12.273059 Anserini +test2517 Q0 10639032 6 12.194219 Anserini +test2517 Q0 1919134 7 12.150563 Anserini +test2517 Q0 7823464 8 12.093203 Anserini +test2517 Q0 14846073 9 11.895461 Anserini +test2517 Q0 10974447 10 11.830434 Anserini +test2517 Q0 6914295 11 11.827939 Anserini +test2517 Q0 5692987 12 11.670568 Anserini +test2517 Q0 19485395 13 11.666951 Anserini +test2517 Q0 200323 14 11.666129 Anserini +test2517 Q0 14846044 15 11.663157 Anserini +test2517 Q0 18281867 16 11.656958 Anserini +test2517 Q0 19760346 17 11.623213 Anserini +test2517 Q0 19760291 18 11.581637 Anserini +test2517 Q0 18281862 19 11.577532 Anserini +test2517 Q0 16769230 20 11.575964 Anserini +test2517 Q0 6348717 21 11.494742 Anserini +test2517 Q0 7827505 22 11.492810 Anserini +test2517 Q0 16870445 23 11.471657 Anserini +test2517 Q0 19760342 24 11.453731 Anserini +test2517 Q0 13476911 25 11.422816 Anserini +test2517 Q0 16769229 26 11.391447 Anserini +test2517 Q0 9599494 27 11.384281 Anserini +test2517 Q0 12108871 28 11.345198 Anserini +test2517 Q0 1845462 29 11.333314 Anserini +test2517 Q0 17034606 30 11.263580 Anserini +test2518 Q0 18931018 1 12.728375 Anserini +test2518 Q0 2335331 2 12.192326 Anserini +test2518 Q0 2335314 3 11.852056 Anserini +test2518 Q0 3602694 4 11.845499 Anserini +test2518 Q0 3513928 5 11.814144 Anserini +test2518 Q0 16785107 6 11.814144 Anserini +test2518 Q0 7974802 7 11.803991 Anserini +test2518 Q0 14235159 8 11.623438 Anserini +test2518 Q0 9812 9 11.424047 Anserini +test2518 Q0 19914615 10 11.403180 Anserini +test2518 Q0 5226576 11 11.393095 Anserini +test2518 Q0 20936186 12 11.367448 Anserini +test2518 Q0 9881 13 11.312675 Anserini +test2518 Q0 6496446 14 11.230436 Anserini +test2518 Q0 16205906 15 11.204216 Anserini +test2518 Q0 9998812 16 11.171634 Anserini +test2518 Q0 386819 17 11.085652 Anserini +test2518 Q0 10656256 18 11.019574 Anserini +test2518 Q0 242767 19 10.984576 Anserini +test2518 Q0 406672 20 10.983467 Anserini +test2518 Q0 4245562 21 10.983232 Anserini +test2518 Q0 647675 22 10.938059 Anserini +test2518 Q0 9185944 23 10.907610 Anserini +test2518 Q0 406670 24 10.896770 Anserini +test2518 Q0 4245560 25 10.884576 Anserini +test2518 Q0 14235123 26 10.882284 Anserini +test2518 Q0 14235128 27 10.882284 Anserini +test2518 Q0 3475139 28 10.878765 Anserini +test2518 Q0 14624924 29 10.864472 Anserini +test2518 Q0 1857908 30 10.860830 Anserini +test2519 Q0 5786844 1 11.973226 Anserini +test2519 Q0 20175431 2 11.891409 Anserini +test2519 Q0 13037861 3 11.319478 Anserini +test2519 Q0 11811364 4 11.122128 Anserini +test2519 Q0 13037863 5 10.913681 Anserini +test2519 Q0 9409429 6 10.796239 Anserini +test2519 Q0 16061901 7 10.694613 Anserini +test2519 Q0 16061904 8 10.597619 Anserini +test2519 Q0 11524525 9 10.501090 Anserini +test2519 Q0 2181959 10 10.219044 Anserini +test2519 Q0 19133534 11 10.175693 Anserini +test2519 Q0 3576567 12 10.146550 Anserini +test2519 Q0 5997329 13 10.025225 Anserini +test2519 Q0 7514468 14 10.018821 Anserini +test2519 Q0 4240890 15 9.869659 Anserini +test2519 Q0 17207457 16 9.824745 Anserini +test2519 Q0 12907085 17 9.808006 Anserini +test2519 Q0 20175436 18 9.803899 Anserini +test2519 Q0 9837837 19 9.777425 Anserini +test2519 Q0 9837843 20 9.777425 Anserini +test2519 Q0 2089643 21 9.768379 Anserini +test2519 Q0 17207455 22 9.752080 Anserini +test2519 Q0 5876178 23 9.638040 Anserini +test2519 Q0 5801522 24 9.631454 Anserini +test2519 Q0 13888460 25 9.626322 Anserini +test2519 Q0 6029769 26 9.615047 Anserini +test2519 Q0 9162556 27 9.610416 Anserini +test2519 Q0 5801521 28 9.604868 Anserini +test2519 Q0 2327079 29 9.561325 Anserini +test2519 Q0 18664084 30 9.505155 Anserini +test252 Q0 18127767 1 13.335840 Anserini +test252 Q0 10914798 2 13.068436 Anserini +test252 Q0 19266970 3 12.830149 Anserini +test252 Q0 13296729 4 12.672464 Anserini +test252 Q0 14512850 5 12.653129 Anserini +test252 Q0 9017864 6 12.589280 Anserini +test252 Q0 13463798 7 12.580058 Anserini +test252 Q0 14469721 8 12.580058 Anserini +test252 Q0 4024988 9 12.540147 Anserini +test252 Q0 4224920 10 12.539200 Anserini +test252 Q0 13775874 11 12.536283 Anserini +test252 Q0 12514709 12 12.457983 Anserini +test252 Q0 3334129 13 12.447574 Anserini +test252 Q0 20602996 14 12.441047 Anserini +test252 Q0 8798821 15 12.438354 Anserini +test252 Q0 14131680 16 12.432940 Anserini +test252 Q0 17296874 17 12.384558 Anserini +test252 Q0 6271951 18 12.382341 Anserini +test252 Q0 16190468 19 12.367032 Anserini +test252 Q0 10309220 20 12.367032 Anserini +test252 Q0 4224919 21 12.364685 Anserini +test252 Q0 4674144 22 12.344873 Anserini +test252 Q0 5277569 23 12.313618 Anserini +test252 Q0 3506110 24 12.311184 Anserini +test252 Q0 6775471 25 12.311184 Anserini +test252 Q0 6297040 26 12.281887 Anserini +test252 Q0 17237445 27 12.266321 Anserini +test252 Q0 17258332 28 12.266321 Anserini +test252 Q0 17258330 29 12.266321 Anserini +test252 Q0 16189659 30 12.266321 Anserini +test2520 Q0 528683 1 19.525133 Anserini +test2520 Q0 12347478 2 19.398464 Anserini +test2520 Q0 528701 3 18.804228 Anserini +test2520 Q0 13438161 4 18.633797 Anserini +test2520 Q0 528697 5 18.012712 Anserini +test2520 Q0 230421 6 17.632582 Anserini +test2520 Q0 528699 7 17.423597 Anserini +test2520 Q0 230405 8 17.309170 Anserini +test2520 Q0 230383 9 17.164391 Anserini +test2520 Q0 18601092 10 16.681122 Anserini +test2520 Q0 6222731 11 16.606346 Anserini +test2520 Q0 17552803 12 16.389940 Anserini +test2520 Q0 2435107 13 16.176434 Anserini +test2520 Q0 7735833 14 15.903535 Anserini +test2520 Q0 18601088 15 15.720067 Anserini +test2520 Q0 18560259 16 15.349762 Anserini +test2520 Q0 528696 17 15.322863 Anserini +test2520 Q0 18601090 18 15.282097 Anserini +test2520 Q0 528693 19 15.260369 Anserini +test2520 Q0 6317047 20 15.144486 Anserini +test2520 Q0 398859 21 15.025461 Anserini +test2520 Q0 2045921 22 15.016878 Anserini +test2520 Q0 13472302 23 14.985542 Anserini +test2520 Q0 1412196 24 14.863886 Anserini +test2520 Q0 3389818 25 14.739926 Anserini +test2520 Q0 3634427 26 14.739926 Anserini +test2520 Q0 14265682 27 14.705748 Anserini +test2520 Q0 6317052 28 14.705748 Anserini +test2520 Q0 12347483 29 14.630968 Anserini +test2520 Q0 230408 30 14.618847 Anserini +test2521 Q0 11255789 1 14.026421 Anserini +test2521 Q0 5247261 2 13.849188 Anserini +test2521 Q0 14567607 3 13.537795 Anserini +test2521 Q0 12798249 4 13.530594 Anserini +test2521 Q0 129079 5 13.022825 Anserini +test2521 Q0 236226 6 12.998012 Anserini +test2521 Q0 239197 7 12.897017 Anserini +test2521 Q0 11255797 8 12.814580 Anserini +test2521 Q0 500760 9 12.805668 Anserini +test2521 Q0 10812062 10 12.711576 Anserini +test2521 Q0 3910482 11 12.682965 Anserini +test2521 Q0 4287931 12 12.677307 Anserini +test2521 Q0 11517065 13 12.648808 Anserini +test2521 Q0 16206069 14 12.616874 Anserini +test2521 Q0 3910474 15 12.558200 Anserini +test2521 Q0 6554127 16 12.557200 Anserini +test2521 Q0 11255786 17 12.553924 Anserini +test2521 Q0 1723799 18 12.507179 Anserini +test2521 Q0 3036693 19 12.488357 Anserini +test2521 Q0 2183510 20 12.445563 Anserini +test2521 Q0 3187812 21 12.382410 Anserini +test2521 Q0 12448727 22 12.330115 Anserini +test2521 Q0 3187744 23 12.239468 Anserini +test2521 Q0 1550174 24 12.232595 Anserini +test2521 Q0 1550205 25 12.232595 Anserini +test2521 Q0 13718631 26 12.223256 Anserini +test2521 Q0 13718634 27 12.223256 Anserini +test2521 Q0 1660899 28 12.202794 Anserini +test2521 Q0 12947056 29 12.143517 Anserini +test2521 Q0 6367408 30 12.034203 Anserini +test2522 Q0 6642773 1 19.403214 Anserini +test2522 Q0 8123340 2 18.696514 Anserini +test2522 Q0 8123342 3 18.494322 Anserini +test2522 Q0 9637875 4 18.387548 Anserini +test2522 Q0 8123341 5 17.737804 Anserini +test2522 Q0 2226136 6 17.245640 Anserini +test2522 Q0 6642776 7 17.190428 Anserini +test2522 Q0 8432920 8 17.159039 Anserini +test2522 Q0 8123343 9 16.979469 Anserini +test2522 Q0 2137555 10 16.726801 Anserini +test2522 Q0 6642769 11 16.714193 Anserini +test2522 Q0 6186315 12 16.061625 Anserini +test2522 Q0 4977982 13 16.037539 Anserini +test2522 Q0 17166666 14 15.530600 Anserini +test2522 Q0 8123356 15 15.496852 Anserini +test2522 Q0 241716 16 15.450895 Anserini +test2522 Q0 8124567 17 15.438414 Anserini +test2522 Q0 8123334 18 15.351407 Anserini +test2522 Q0 8123338 19 15.228602 Anserini +test2522 Q0 8123332 20 15.163682 Anserini +test2522 Q0 8124568 21 15.163682 Anserini +test2522 Q0 8123358 22 15.163682 Anserini +test2522 Q0 17166670 23 15.152243 Anserini +test2522 Q0 6186316 24 15.104755 Anserini +test2522 Q0 7970027 25 14.991706 Anserini +test2522 Q0 2853110 26 14.979030 Anserini +test2522 Q0 8123336 27 14.912106 Anserini +test2522 Q0 8123352 28 14.912106 Anserini +test2522 Q0 2137550 29 14.660503 Anserini +test2522 Q0 6642770 30 14.631950 Anserini +test2523 Q0 997911 1 10.192433 Anserini +test2523 Q0 9635966 2 9.768988 Anserini +test2523 Q0 13542032 3 9.757545 Anserini +test2523 Q0 19409520 4 9.605701 Anserini +test2523 Q0 1845344 5 9.507606 Anserini +test2523 Q0 1592572 6 9.491160 Anserini +test2523 Q0 1592601 7 9.491160 Anserini +test2523 Q0 5504646 8 9.437941 Anserini +test2523 Q0 10482764 9 9.437941 Anserini +test2523 Q0 11275519 10 9.317078 Anserini +test2523 Q0 291825 11 9.308247 Anserini +test2523 Q0 382160 12 9.201049 Anserini +test2523 Q0 1845334 13 9.166847 Anserini +test2523 Q0 5084102 14 9.161043 Anserini +test2523 Q0 11212407 15 9.161043 Anserini +test2523 Q0 291917 16 9.130435 Anserini +test2523 Q0 465766 17 9.055759 Anserini +test2523 Q0 465772 18 9.055759 Anserini +test2523 Q0 9600989 19 9.018035 Anserini +test2523 Q0 10841634 20 8.981930 Anserini +test2523 Q0 11957832 21 8.958963 Anserini +test2523 Q0 9526259 22 8.956784 Anserini +test2523 Q0 613281 23 8.901806 Anserini +test2523 Q0 16400853 24 8.873951 Anserini +test2523 Q0 6256694 25 8.814734 Anserini +test2523 Q0 14734137 26 8.814068 Anserini +test2523 Q0 2591595 27 8.808221 Anserini +test2523 Q0 8290552 28 8.807104 Anserini +test2523 Q0 7202473 29 8.741694 Anserini +test2523 Q0 14752742 30 8.738016 Anserini +test2524 Q0 12237789 1 17.035231 Anserini +test2524 Q0 12237790 2 16.826527 Anserini +test2524 Q0 12237801 3 15.997751 Anserini +test2524 Q0 12237808 4 15.764816 Anserini +test2524 Q0 12237804 5 15.670519 Anserini +test2524 Q0 12237809 6 15.484291 Anserini +test2524 Q0 12237802 7 15.279707 Anserini +test2524 Q0 12237807 8 15.267137 Anserini +test2524 Q0 12237794 9 15.153916 Anserini +test2524 Q0 8581902 10 14.953464 Anserini +test2524 Q0 12237800 11 14.953464 Anserini +test2524 Q0 3054856 12 14.613576 Anserini +test2524 Q0 8783540 13 14.561381 Anserini +test2524 Q0 12237805 14 14.495842 Anserini +test2524 Q0 12798473 15 14.495369 Anserini +test2524 Q0 12237795 16 14.389053 Anserini +test2524 Q0 4528613 17 14.284327 Anserini +test2524 Q0 8825392 18 14.189075 Anserini +test2524 Q0 8825376 19 14.181150 Anserini +test2524 Q0 6053535 20 14.083010 Anserini +test2524 Q0 1509703 21 13.869059 Anserini +test2524 Q0 8783539 22 13.845175 Anserini +test2524 Q0 12237803 23 13.771586 Anserini +test2524 Q0 13954373 24 13.685682 Anserini +test2524 Q0 4254733 25 13.622624 Anserini +test2524 Q0 12237806 26 13.622624 Anserini +test2524 Q0 4254732 27 13.566362 Anserini +test2524 Q0 12237793 28 13.540108 Anserini +test2524 Q0 12237792 29 13.458608 Anserini +test2524 Q0 8825382 30 13.453506 Anserini +test2525 Q0 18535631 1 11.684638 Anserini +test2525 Q0 4520918 2 11.469420 Anserini +test2525 Q0 18136001 3 11.169267 Anserini +test2525 Q0 20624983 4 11.120024 Anserini +test2525 Q0 20622169 5 11.092172 Anserini +test2525 Q0 18563454 6 10.909425 Anserini +test2525 Q0 18535632 7 10.851601 Anserini +test2525 Q0 5999212 8 10.738584 Anserini +test2525 Q0 11923166 9 10.684877 Anserini +test2525 Q0 5802245 10 10.670220 Anserini +test2525 Q0 8807799 11 10.642433 Anserini +test2525 Q0 17351222 12 10.607119 Anserini +test2525 Q0 10985413 13 10.604969 Anserini +test2525 Q0 12742677 14 10.581453 Anserini +test2525 Q0 17351221 15 10.557267 Anserini +test2525 Q0 12112120 16 10.534773 Anserini +test2525 Q0 8518222 17 10.497574 Anserini +test2525 Q0 20622171 18 10.490178 Anserini +test2525 Q0 17245190 19 10.489818 Anserini +test2525 Q0 15071030 20 10.472426 Anserini +test2525 Q0 6363192 21 10.427622 Anserini +test2525 Q0 20622170 22 10.395043 Anserini +test2525 Q0 15638343 23 10.375095 Anserini +test2525 Q0 9645369 24 10.366552 Anserini +test2525 Q0 13113180 25 10.364813 Anserini +test2525 Q0 10903650 26 10.342578 Anserini +test2525 Q0 3475383 27 10.328359 Anserini +test2525 Q0 11474831 28 10.327416 Anserini +test2525 Q0 18517015 29 10.320965 Anserini +test2525 Q0 10041169 30 10.306220 Anserini +test2526 Q0 5309012 1 28.870260 Anserini +test2526 Q0 5309001 2 28.282593 Anserini +test2526 Q0 5309007 3 26.755917 Anserini +test2526 Q0 5309009 4 26.198755 Anserini +test2526 Q0 5309002 5 26.088417 Anserini +test2526 Q0 5309008 6 25.586859 Anserini +test2526 Q0 2818460 7 25.481030 Anserini +test2526 Q0 5309005 8 24.459843 Anserini +test2526 Q0 5309006 9 22.979612 Anserini +test2526 Q0 5309004 10 22.253511 Anserini +test2526 Q0 16376980 11 21.306293 Anserini +test2526 Q0 13490226 12 21.046520 Anserini +test2526 Q0 13733511 13 20.891195 Anserini +test2526 Q0 19288363 14 20.602795 Anserini +test2526 Q0 13490239 15 20.524593 Anserini +test2526 Q0 16607849 16 20.436008 Anserini +test2526 Q0 16569719 17 20.386297 Anserini +test2526 Q0 15412928 18 20.351326 Anserini +test2526 Q0 188235 19 20.339006 Anserini +test2526 Q0 19479639 20 20.315063 Anserini +test2526 Q0 188229 21 20.229582 Anserini +test2526 Q0 9273413 22 20.229582 Anserini +test2526 Q0 17921851 23 20.216053 Anserini +test2526 Q0 188188 24 20.200924 Anserini +test2526 Q0 19719943 25 20.187729 Anserini +test2526 Q0 19557642 26 20.178623 Anserini +test2526 Q0 19557643 27 20.178623 Anserini +test2526 Q0 5346172 28 20.110086 Anserini +test2526 Q0 188228 29 20.002495 Anserini +test2526 Q0 2451248 30 19.988749 Anserini +test2527 Q0 15096554 1 17.172224 Anserini +test2527 Q0 15096547 2 16.777470 Anserini +test2527 Q0 19807841 3 16.337288 Anserini +test2527 Q0 6224933 4 16.198126 Anserini +test2527 Q0 19807846 5 16.071526 Anserini +test2527 Q0 9862649 6 15.754765 Anserini +test2527 Q0 3200087 7 15.581686 Anserini +test2527 Q0 3200081 8 15.546094 Anserini +test2527 Q0 17025369 9 15.458944 Anserini +test2527 Q0 17473835 10 15.405725 Anserini +test2527 Q0 376056 11 15.405725 Anserini +test2527 Q0 313805 12 15.358632 Anserini +test2527 Q0 20259594 13 15.344940 Anserini +test2527 Q0 11779866 14 15.154404 Anserini +test2527 Q0 6224942 15 15.063629 Anserini +test2527 Q0 10271204 16 15.015940 Anserini +test2527 Q0 313849 17 14.939937 Anserini +test2527 Q0 19011682 18 14.919214 Anserini +test2527 Q0 16409522 19 14.773431 Anserini +test2527 Q0 16607460 20 14.767426 Anserini +test2527 Q0 3200035 21 14.716578 Anserini +test2527 Q0 8711504 22 14.528200 Anserini +test2527 Q0 394787 23 14.525031 Anserini +test2527 Q0 19807797 24 14.503746 Anserini +test2527 Q0 4245756 25 14.496803 Anserini +test2527 Q0 12529215 26 14.485163 Anserini +test2527 Q0 19807796 27 14.453936 Anserini +test2527 Q0 2722709 28 14.399035 Anserini +test2527 Q0 9403913 29 14.371017 Anserini +test2527 Q0 11779868 30 14.341744 Anserini +test2528 Q0 5854321 1 13.377139 Anserini +test2528 Q0 5848906 2 12.556579 Anserini +test2528 Q0 6776873 3 12.480833 Anserini +test2528 Q0 9786477 4 12.414623 Anserini +test2528 Q0 1206082 5 12.327229 Anserini +test2528 Q0 12980370 6 12.250233 Anserini +test2528 Q0 57809 7 12.190794 Anserini +test2528 Q0 4601480 8 11.977952 Anserini +test2528 Q0 7088603 9 11.894669 Anserini +test2528 Q0 5946081 10 11.830946 Anserini +test2528 Q0 8777752 11 11.830270 Anserini +test2528 Q0 6285332 12 11.816273 Anserini +test2528 Q0 57895 13 11.758455 Anserini +test2528 Q0 4601463 14 11.739870 Anserini +test2528 Q0 12576687 15 11.739870 Anserini +test2528 Q0 13079114 16 11.709546 Anserini +test2528 Q0 5848920 17 11.630051 Anserini +test2528 Q0 17410222 18 11.630051 Anserini +test2528 Q0 17410226 19 11.630051 Anserini +test2528 Q0 13504327 20 11.618418 Anserini +test2528 Q0 12825833 21 11.599789 Anserini +test2528 Q0 13079151 22 11.590212 Anserini +test2528 Q0 8777770 23 11.586061 Anserini +test2528 Q0 19224884 24 11.474463 Anserini +test2528 Q0 4601455 25 11.311050 Anserini +test2528 Q0 5848902 26 11.265424 Anserini +test2528 Q0 1089983 27 11.205646 Anserini +test2528 Q0 57855 28 11.181671 Anserini +test2528 Q0 8608480 29 11.165485 Anserini +test2528 Q0 17422148 30 11.098627 Anserini +test2529 Q0 8870029 1 14.403284 Anserini +test2529 Q0 5447932 2 14.373343 Anserini +test2529 Q0 7571550 3 14.371516 Anserini +test2529 Q0 5447935 4 14.322144 Anserini +test2529 Q0 13061279 5 13.916119 Anserini +test2529 Q0 13657133 6 13.904753 Anserini +test2529 Q0 18170116 7 13.552170 Anserini +test2529 Q0 20439143 8 13.493425 Anserini +test2529 Q0 16650585 9 13.411180 Anserini +test2529 Q0 8342143 10 13.167208 Anserini +test2529 Q0 14519092 11 13.163750 Anserini +test2529 Q0 7148630 12 13.154234 Anserini +test2529 Q0 18862218 13 13.143502 Anserini +test2529 Q0 17382799 14 13.116287 Anserini +test2529 Q0 13762569 15 13.098236 Anserini +test2529 Q0 13762571 16 13.010339 Anserini +test2529 Q0 9162490 17 12.958075 Anserini +test2529 Q0 16686410 18 12.951953 Anserini +test2529 Q0 17349227 19 12.943400 Anserini +test2529 Q0 7148631 20 12.929525 Anserini +test2529 Q0 13344652 21 12.858742 Anserini +test2529 Q0 13554358 22 12.774076 Anserini +test2529 Q0 16801703 23 12.753864 Anserini +test2529 Q0 10208725 24 12.728501 Anserini +test2529 Q0 12915683 25 12.678472 Anserini +test2529 Q0 9324891 26 12.644178 Anserini +test2529 Q0 20439142 27 12.644178 Anserini +test2529 Q0 6943008 28 12.552588 Anserini +test2529 Q0 20439144 29 12.536448 Anserini +test2529 Q0 13348809 30 12.536448 Anserini +test253 Q0 7921653 1 13.695346 Anserini +test253 Q0 21002678 2 13.637156 Anserini +test253 Q0 19877186 3 13.360429 Anserini +test253 Q0 19792374 4 13.335161 Anserini +test253 Q0 10105729 5 12.887472 Anserini +test253 Q0 15202302 6 12.850741 Anserini +test253 Q0 18783689 7 12.840264 Anserini +test253 Q0 9346849 8 12.803016 Anserini +test253 Q0 9346851 9 12.803016 Anserini +test253 Q0 9238401 10 12.712155 Anserini +test253 Q0 20056186 11 12.590773 Anserini +test253 Q0 20287938 12 12.576174 Anserini +test253 Q0 20723301 13 12.576174 Anserini +test253 Q0 20056170 14 12.564798 Anserini +test253 Q0 20056184 15 12.486184 Anserini +test253 Q0 19835273 16 12.337988 Anserini +test253 Q0 19792376 17 12.330348 Anserini +test253 Q0 19858868 18 12.243495 Anserini +test253 Q0 10531634 19 12.093335 Anserini +test253 Q0 5752496 20 12.088107 Anserini +test253 Q0 20056175 21 12.087373 Anserini +test253 Q0 20056188 22 12.077030 Anserini +test253 Q0 20056166 23 11.997637 Anserini +test253 Q0 19877161 24 11.929096 Anserini +test253 Q0 20056189 25 11.910456 Anserini +test253 Q0 19882425 26 11.902131 Anserini +test253 Q0 18661141 27 11.780405 Anserini +test253 Q0 19877187 28 11.747774 Anserini +test253 Q0 16843603 29 11.717646 Anserini +test253 Q0 15523866 30 11.708313 Anserini +test2530 Q0 6763875 1 10.996070 Anserini +test2530 Q0 6763876 2 10.996070 Anserini +test2530 Q0 6977656 3 9.116768 Anserini +test2530 Q0 13453197 4 8.658412 Anserini +test2530 Q0 6624116 5 8.343818 Anserini +test2530 Q0 8205649 6 8.214575 Anserini +test2530 Q0 6624124 7 8.156366 Anserini +test2530 Q0 18574833 8 8.150658 Anserini +test2530 Q0 13711433 9 8.038959 Anserini +test2530 Q0 13966078 10 7.966819 Anserini +test2530 Q0 17214264 11 7.885029 Anserini +test2530 Q0 5507915 12 7.652100 Anserini +test2530 Q0 9981768 13 7.649828 Anserini +test2530 Q0 6453036 14 7.630082 Anserini +test2530 Q0 3620540 15 7.587410 Anserini +test2530 Q0 11411246 16 7.587410 Anserini +test2530 Q0 18182388 17 7.500111 Anserini +test2530 Q0 201188 18 7.459840 Anserini +test2530 Q0 2900615 19 7.432812 Anserini +test2530 Q0 2468318 20 7.416138 Anserini +test2530 Q0 6457586 21 7.407362 Anserini +test2530 Q0 4981559 22 7.393563 Anserini +test2530 Q0 6624126 23 7.393563 Anserini +test2530 Q0 9981769 24 7.382399 Anserini +test2530 Q0 9166241 25 7.378652 Anserini +test2530 Q0 3753100 26 7.365690 Anserini +test2530 Q0 16621350 27 7.345489 Anserini +test2530 Q0 1021816 28 7.316733 Anserini +test2530 Q0 3141754 29 7.316733 Anserini +test2530 Q0 11554972 30 7.294686 Anserini +test2531 Q0 17250827 1 12.635823 Anserini +test2531 Q0 6257721 2 12.229381 Anserini +test2531 Q0 6696174 3 10.693501 Anserini +test2531 Q0 863675 4 10.623416 Anserini +test2531 Q0 6217091 5 10.587420 Anserini +test2531 Q0 9400511 6 10.328867 Anserini +test2531 Q0 574934 7 10.284470 Anserini +test2531 Q0 762867 8 10.265846 Anserini +test2531 Q0 1502436 9 10.180015 Anserini +test2531 Q0 10313909 10 10.102185 Anserini +test2531 Q0 17030955 11 10.047408 Anserini +test2531 Q0 5849856 12 10.030176 Anserini +test2531 Q0 2909211 13 10.002188 Anserini +test2531 Q0 3217692 14 9.941639 Anserini +test2531 Q0 14693522 15 9.885821 Anserini +test2531 Q0 5295599 16 9.874864 Anserini +test2531 Q0 3432757 17 9.823330 Anserini +test2531 Q0 13123773 18 9.776491 Anserini +test2531 Q0 19012357 19 9.760576 Anserini +test2531 Q0 842622 20 9.673601 Anserini +test2531 Q0 7130834 21 9.609066 Anserini +test2531 Q0 5048382 22 9.586396 Anserini +test2531 Q0 15298496 23 9.560935 Anserini +test2531 Q0 20448447 24 9.528417 Anserini +test2531 Q0 19449394 25 9.501732 Anserini +test2531 Q0 3962924 26 9.486598 Anserini +test2531 Q0 10652364 27 9.474045 Anserini +test2531 Q0 6396110 28 9.470433 Anserini +test2531 Q0 18938271 29 9.441416 Anserini +test2531 Q0 4572808 30 9.437094 Anserini +test2532 Q0 4837236 1 10.233974 Anserini +test2532 Q0 10088211 2 9.285683 Anserini +test2532 Q0 3467725 3 8.961389 Anserini +test2532 Q0 18031719 4 8.750813 Anserini +test2532 Q0 16538109 5 8.745876 Anserini +test2532 Q0 9992846 6 8.721258 Anserini +test2532 Q0 6571374 7 8.639647 Anserini +test2532 Q0 16280324 8 8.537709 Anserini +test2532 Q0 1587916 9 8.494509 Anserini +test2532 Q0 13296898 10 8.487933 Anserini +test2532 Q0 13296900 11 8.487933 Anserini +test2532 Q0 10742396 12 8.440669 Anserini +test2532 Q0 19070553 13 8.333167 Anserini +test2532 Q0 14499457 14 8.204603 Anserini +test2532 Q0 875587 15 8.198264 Anserini +test2532 Q0 4837237 16 8.173878 Anserini +test2532 Q0 13575428 17 8.129248 Anserini +test2532 Q0 14179115 18 8.087524 Anserini +test2532 Q0 16538112 19 8.087524 Anserini +test2532 Q0 904847 20 8.087524 Anserini +test2532 Q0 3129423 21 8.080737 Anserini +test2532 Q0 8121264 22 8.078605 Anserini +test2532 Q0 9829992 23 8.061353 Anserini +test2532 Q0 17833772 24 8.037857 Anserini +test2532 Q0 10027431 25 8.023192 Anserini +test2532 Q0 13117921 26 8.023192 Anserini +test2532 Q0 1587911 27 8.013881 Anserini +test2532 Q0 10523140 28 7.999520 Anserini +test2532 Q0 18587690 29 7.975285 Anserini +test2532 Q0 15279399 30 7.966570 Anserini +test2533 Q0 14642319 1 10.837687 Anserini +test2533 Q0 13384136 2 10.552841 Anserini +test2533 Q0 20727675 3 10.542279 Anserini +test2533 Q0 20730689 4 10.429709 Anserini +test2533 Q0 2060682 5 10.332983 Anserini +test2533 Q0 20727672 6 10.315140 Anserini +test2533 Q0 20730693 7 10.291860 Anserini +test2533 Q0 5803518 8 10.224467 Anserini +test2533 Q0 16016426 9 10.210940 Anserini +test2533 Q0 18620158 10 10.105968 Anserini +test2533 Q0 11048001 11 10.035418 Anserini +test2533 Q0 16078011 12 9.968493 Anserini +test2533 Q0 20936005 13 9.950207 Anserini +test2533 Q0 17632320 14 9.892512 Anserini +test2533 Q0 17195521 15 9.808569 Anserini +test2533 Q0 20727674 16 9.758243 Anserini +test2533 Q0 16070053 17 9.747153 Anserini +test2533 Q0 9490585 18 9.645460 Anserini +test2533 Q0 12764228 19 9.645460 Anserini +test2533 Q0 20133631 20 9.639496 Anserini +test2533 Q0 16168707 21 9.639496 Anserini +test2533 Q0 20936003 22 9.634104 Anserini +test2533 Q0 12391583 23 9.575311 Anserini +test2533 Q0 18181312 24 9.545765 Anserini +test2533 Q0 12119793 25 9.495241 Anserini +test2533 Q0 16943299 26 9.465189 Anserini +test2533 Q0 10493338 27 9.448298 Anserini +test2533 Q0 20727673 28 9.443426 Anserini +test2533 Q0 12209727 29 9.406455 Anserini +test2533 Q0 12391576 30 9.396319 Anserini +test2534 Q0 12312376 1 12.634024 Anserini +test2534 Q0 20903224 2 12.508393 Anserini +test2534 Q0 13909972 3 12.465302 Anserini +test2534 Q0 19003437 4 12.378639 Anserini +test2534 Q0 15946637 5 12.376079 Anserini +test2534 Q0 13370228 6 12.122255 Anserini +test2534 Q0 5537860 7 12.053519 Anserini +test2534 Q0 3021674 8 12.033731 Anserini +test2534 Q0 2291897 9 12.021702 Anserini +test2534 Q0 5543277 10 12.019693 Anserini +test2534 Q0 2335758 11 11.994867 Anserini +test2534 Q0 13793271 12 11.986620 Anserini +test2534 Q0 20890647 13 11.926979 Anserini +test2534 Q0 20903239 14 11.913595 Anserini +test2534 Q0 14235154 15 11.877044 Anserini +test2534 Q0 3809825 16 11.840177 Anserini +test2534 Q0 4788255 17 11.807994 Anserini +test2534 Q0 7613063 18 11.745850 Anserini +test2534 Q0 13684659 19 11.678459 Anserini +test2534 Q0 1405079 20 11.637304 Anserini +test2534 Q0 12056895 21 11.526794 Anserini +test2534 Q0 19409615 22 11.507186 Anserini +test2534 Q0 14759958 23 11.457023 Anserini +test2534 Q0 15971003 24 11.447636 Anserini +test2534 Q0 6588685 25 11.428359 Anserini +test2534 Q0 7323077 26 11.388225 Anserini +test2534 Q0 2747603 27 11.379499 Anserini +test2534 Q0 15749762 28 11.332729 Anserini +test2534 Q0 13924632 29 11.305756 Anserini +test2534 Q0 19355997 30 11.286776 Anserini +test2535 Q0 6477292 1 16.288187 Anserini +test2535 Q0 11904475 2 16.224688 Anserini +test2535 Q0 11904485 3 15.901036 Anserini +test2535 Q0 6477303 4 15.660881 Anserini +test2535 Q0 6477329 5 15.590742 Anserini +test2535 Q0 11969679 6 15.407227 Anserini +test2535 Q0 6088196 7 15.307531 Anserini +test2535 Q0 804085 8 15.297254 Anserini +test2535 Q0 13465948 9 15.123575 Anserini +test2535 Q0 6088011 10 14.946724 Anserini +test2535 Q0 6477316 11 14.923999 Anserini +test2535 Q0 7799895 12 14.819881 Anserini +test2535 Q0 803803 13 14.453396 Anserini +test2535 Q0 17342535 14 14.384667 Anserini +test2535 Q0 11969698 15 14.304452 Anserini +test2535 Q0 9375705 16 14.296485 Anserini +test2535 Q0 8157637 17 14.266109 Anserini +test2535 Q0 3569443 18 14.221853 Anserini +test2535 Q0 802139 19 14.205957 Anserini +test2535 Q0 11044181 20 14.062040 Anserini +test2535 Q0 11008478 21 14.034260 Anserini +test2535 Q0 6477287 22 14.030879 Anserini +test2535 Q0 7745316 23 14.008355 Anserini +test2535 Q0 11989226 24 13.974429 Anserini +test2535 Q0 9371949 25 13.932500 Anserini +test2535 Q0 6477290 26 13.896313 Anserini +test2535 Q0 3569466 27 13.888460 Anserini +test2535 Q0 3569459 28 13.883972 Anserini +test2535 Q0 8157645 29 13.873909 Anserini +test2535 Q0 6477309 30 13.865433 Anserini +test2536 Q0 17035180 1 12.517475 Anserini +test2536 Q0 17251292 2 12.450199 Anserini +test2536 Q0 14310216 3 12.327761 Anserini +test2536 Q0 14310214 4 11.977124 Anserini +test2536 Q0 8389506 5 11.911530 Anserini +test2536 Q0 8389505 6 11.697775 Anserini +test2536 Q0 11853670 7 11.421329 Anserini +test2536 Q0 13573937 8 11.410829 Anserini +test2536 Q0 16832509 9 11.391703 Anserini +test2536 Q0 9270261 10 11.357161 Anserini +test2536 Q0 9270262 11 11.357161 Anserini +test2536 Q0 13573936 12 11.350050 Anserini +test2536 Q0 11853668 13 11.339018 Anserini +test2536 Q0 14310217 14 11.328333 Anserini +test2536 Q0 1739885 15 11.280524 Anserini +test2536 Q0 17252268 16 11.110509 Anserini +test2536 Q0 13573920 17 11.085886 Anserini +test2536 Q0 1739887 18 11.079031 Anserini +test2536 Q0 9885944 19 11.066447 Anserini +test2536 Q0 11844225 20 11.042642 Anserini +test2536 Q0 9378942 21 10.998879 Anserini +test2536 Q0 13368391 22 10.977212 Anserini +test2536 Q0 1739884 23 10.955660 Anserini +test2536 Q0 7972334 24 10.953708 Anserini +test2536 Q0 912909 25 10.935307 Anserini +test2536 Q0 10962242 26 10.894667 Anserini +test2536 Q0 5092744 27 10.800507 Anserini +test2536 Q0 1739894 28 10.774889 Anserini +test2536 Q0 16832505 29 10.770645 Anserini +test2536 Q0 12286691 30 10.749748 Anserini +test2537 Q0 17905981 1 15.797881 Anserini +test2537 Q0 2896348 2 15.559133 Anserini +test2537 Q0 2896347 3 15.535383 Anserini +test2537 Q0 4618944 4 15.274570 Anserini +test2537 Q0 6426091 5 14.677343 Anserini +test2537 Q0 13893340 6 14.506274 Anserini +test2537 Q0 12741774 7 14.071408 Anserini +test2537 Q0 8881087 8 13.920481 Anserini +test2537 Q0 13225993 9 13.733745 Anserini +test2537 Q0 5764706 10 13.662670 Anserini +test2537 Q0 8909472 11 13.630808 Anserini +test2537 Q0 14401149 12 13.271894 Anserini +test2537 Q0 15739458 13 13.165486 Anserini +test2537 Q0 1813473 14 13.042662 Anserini +test2537 Q0 11710259 15 12.917712 Anserini +test2537 Q0 18302933 16 12.811474 Anserini +test2537 Q0 12741775 17 12.543520 Anserini +test2537 Q0 5111229 18 12.319481 Anserini +test2537 Q0 17101142 19 12.102999 Anserini +test2537 Q0 16596681 20 11.888170 Anserini +test2537 Q0 5417384 21 11.796517 Anserini +test2537 Q0 18812604 22 11.727397 Anserini +test2537 Q0 11490336 23 11.725052 Anserini +test2537 Q0 20778928 24 11.669664 Anserini +test2537 Q0 6519909 25 11.669664 Anserini +test2537 Q0 19028143 26 11.628296 Anserini +test2537 Q0 14141950 27 11.541348 Anserini +test2537 Q0 16710955 28 11.531028 Anserini +test2537 Q0 17121345 29 11.524814 Anserini +test2537 Q0 81540 30 11.506877 Anserini +test2538 Q0 7939551 1 12.975842 Anserini +test2538 Q0 7939552 2 12.975842 Anserini +test2538 Q0 13812919 3 12.626363 Anserini +test2538 Q0 12725370 4 12.571052 Anserini +test2538 Q0 18040724 5 12.517591 Anserini +test2538 Q0 18040727 6 12.517591 Anserini +test2538 Q0 17256792 7 12.244569 Anserini +test2538 Q0 13791844 8 12.127226 Anserini +test2538 Q0 19840100 9 11.966290 Anserini +test2538 Q0 6108315 10 11.895223 Anserini +test2538 Q0 15220307 11 11.818526 Anserini +test2538 Q0 1797892 12 11.808739 Anserini +test2538 Q0 457274 13 11.796090 Anserini +test2538 Q0 399547 14 11.779842 Anserini +test2538 Q0 3606555 15 11.743614 Anserini +test2538 Q0 103236 16 11.704780 Anserini +test2538 Q0 3108589 17 11.664989 Anserini +test2538 Q0 123504 18 11.605238 Anserini +test2538 Q0 3606556 19 11.528517 Anserini +test2538 Q0 3105550 20 11.527574 Anserini +test2538 Q0 11741077 21 11.439716 Anserini +test2538 Q0 3533773 22 11.438862 Anserini +test2538 Q0 1875130 23 11.418038 Anserini +test2538 Q0 7689796 24 11.382509 Anserini +test2538 Q0 4265203 25 11.366673 Anserini +test2538 Q0 19840099 26 11.350225 Anserini +test2538 Q0 12725372 27 11.338703 Anserini +test2538 Q0 8453768 28 11.332544 Anserini +test2538 Q0 7061394 29 11.302924 Anserini +test2538 Q0 3105551 30 11.294310 Anserini +test2539 Q0 86260 1 11.881845 Anserini +test2539 Q0 13901426 2 11.078757 Anserini +test2539 Q0 459448 3 10.155007 Anserini +test2539 Q0 8272389 4 9.996149 Anserini +test2539 Q0 7938702 5 9.977855 Anserini +test2539 Q0 13612458 6 9.962418 Anserini +test2539 Q0 8272390 7 9.945145 Anserini +test2539 Q0 18486591 8 9.807186 Anserini +test2539 Q0 5463114 9 9.749602 Anserini +test2539 Q0 16996940 10 9.646969 Anserini +test2539 Q0 4991748 11 9.521377 Anserini +test2539 Q0 12861739 12 9.473769 Anserini +test2539 Q0 10976610 13 9.411061 Anserini +test2539 Q0 5572210 14 9.370658 Anserini +test2539 Q0 11647421 15 9.334411 Anserini +test2539 Q0 11244537 16 9.330909 Anserini +test2539 Q0 3281458 17 9.312458 Anserini +test2539 Q0 7535673 18 9.253325 Anserini +test2539 Q0 6223367 19 9.238437 Anserini +test2539 Q0 6060871 20 9.198925 Anserini +test2539 Q0 6587671 21 9.195701 Anserini +test2539 Q0 1824610 22 9.191784 Anserini +test2539 Q0 5714256 23 9.158338 Anserini +test2539 Q0 15717332 24 9.157693 Anserini +test2539 Q0 10724486 25 9.060192 Anserini +test2539 Q0 14144983 26 9.021600 Anserini +test2539 Q0 2403014 27 9.016268 Anserini +test2539 Q0 16088594 28 8.916032 Anserini +test2539 Q0 10958261 29 8.914209 Anserini +test2539 Q0 13960402 30 8.891842 Anserini +test254 Q0 10698780 1 12.205825 Anserini +test254 Q0 597391 2 11.903067 Anserini +test254 Q0 9179722 3 11.680219 Anserini +test254 Q0 6941086 4 11.606383 Anserini +test254 Q0 9688218 5 11.504053 Anserini +test254 Q0 18026722 6 11.380575 Anserini +test254 Q0 18026723 7 11.374149 Anserini +test254 Q0 3660530 8 11.340458 Anserini +test254 Q0 3806850 9 11.320702 Anserini +test254 Q0 9688232 10 11.312330 Anserini +test254 Q0 11485641 11 11.278237 Anserini +test254 Q0 16170168 12 11.270359 Anserini +test254 Q0 12410968 13 11.257674 Anserini +test254 Q0 19816156 14 11.097536 Anserini +test254 Q0 13039791 15 11.058008 Anserini +test254 Q0 10019499 16 11.029337 Anserini +test254 Q0 3543465 17 10.925072 Anserini +test254 Q0 4050492 18 10.868401 Anserini +test254 Q0 3553265 19 10.866263 Anserini +test254 Q0 6327701 20 10.782235 Anserini +test254 Q0 2110630 21 10.714498 Anserini +test254 Q0 16217349 22 10.688721 Anserini +test254 Q0 16655874 23 10.688721 Anserini +test254 Q0 16484541 24 10.688721 Anserini +test254 Q0 19587116 25 10.688721 Anserini +test254 Q0 7691810 26 10.665120 Anserini +test254 Q0 3638543 27 10.664121 Anserini +test254 Q0 58680 28 10.662790 Anserini +test254 Q0 17989286 29 10.654568 Anserini +test254 Q0 17989285 30 10.654568 Anserini +test2540 Q0 3919751 1 24.200659 Anserini +test2540 Q0 17066528 2 23.716984 Anserini +test2540 Q0 3314691 3 23.087563 Anserini +test2540 Q0 11782849 4 22.776152 Anserini +test2540 Q0 8149632 5 22.581341 Anserini +test2540 Q0 3201544 6 22.337324 Anserini +test2540 Q0 8216192 7 22.210953 Anserini +test2540 Q0 4804218 8 22.001455 Anserini +test2540 Q0 5894758 9 21.996271 Anserini +test2540 Q0 3782208 10 21.974171 Anserini +test2540 Q0 7630761 11 21.968267 Anserini +test2540 Q0 3201555 12 21.792002 Anserini +test2540 Q0 4804229 13 21.482796 Anserini +test2540 Q0 5294289 14 21.061672 Anserini +test2540 Q0 10255409 15 21.052937 Anserini +test2540 Q0 2197353 16 21.015911 Anserini +test2540 Q0 5985378 17 21.011063 Anserini +test2540 Q0 8049999 18 20.993874 Anserini +test2540 Q0 6374420 19 20.941528 Anserini +test2540 Q0 8757466 20 20.865082 Anserini +test2540 Q0 3079457 21 20.790119 Anserini +test2540 Q0 3201554 22 20.747522 Anserini +test2540 Q0 10140547 23 20.679159 Anserini +test2540 Q0 3201548 24 20.353840 Anserini +test2540 Q0 19183177 25 20.279808 Anserini +test2540 Q0 12945866 26 20.252960 Anserini +test2540 Q0 824158 27 20.223513 Anserini +test2540 Q0 4804213 28 20.185379 Anserini +test2540 Q0 1925527 29 20.167597 Anserini +test2540 Q0 17066549 30 20.164747 Anserini +test2541 Q0 5890427 1 19.464016 Anserini +test2541 Q0 5890405 2 19.303448 Anserini +test2541 Q0 6185819 3 19.048231 Anserini +test2541 Q0 10837019 4 18.591097 Anserini +test2541 Q0 6185784 5 18.379240 Anserini +test2541 Q0 2158071 6 18.093864 Anserini +test2541 Q0 6185783 7 18.093864 Anserini +test2541 Q0 2158065 8 16.963442 Anserini +test2541 Q0 5890420 9 16.708609 Anserini +test2541 Q0 5890407 10 16.708609 Anserini +test2541 Q0 5890416 11 16.557671 Anserini +test2541 Q0 17124608 12 16.381485 Anserini +test2541 Q0 6185771 13 16.265924 Anserini +test2541 Q0 5890412 14 16.248854 Anserini +test2541 Q0 5637206 15 15.995353 Anserini +test2541 Q0 1399214 16 15.981907 Anserini +test2541 Q0 5637221 17 15.932227 Anserini +test2541 Q0 19150057 18 15.781185 Anserini +test2541 Q0 5708686 19 15.600998 Anserini +test2541 Q0 5654208 20 15.593151 Anserini +test2541 Q0 2158028 21 15.578801 Anserini +test2541 Q0 5890413 22 15.559196 Anserini +test2541 Q0 5890422 23 15.498121 Anserini +test2541 Q0 5890419 24 15.498121 Anserini +test2541 Q0 6185827 25 15.489127 Anserini +test2541 Q0 5890423 26 15.325371 Anserini +test2541 Q0 5890411 27 15.294486 Anserini +test2541 Q0 5685357 28 15.288864 Anserini +test2541 Q0 8943870 29 15.265693 Anserini +test2541 Q0 7258654 30 15.259323 Anserini +test2542 Q0 6952189 1 18.321123 Anserini +test2542 Q0 6952169 2 17.484358 Anserini +test2542 Q0 6952191 3 17.302402 Anserini +test2542 Q0 6952184 4 17.108131 Anserini +test2542 Q0 6952190 5 16.921263 Anserini +test2542 Q0 6952172 6 16.863976 Anserini +test2542 Q0 13706510 7 16.741962 Anserini +test2542 Q0 1743610 8 15.649797 Anserini +test2542 Q0 6952170 9 15.347761 Anserini +test2542 Q0 13706511 10 15.281007 Anserini +test2542 Q0 6952180 11 15.172930 Anserini +test2542 Q0 7793351 12 14.977619 Anserini +test2542 Q0 6952173 13 14.956309 Anserini +test2542 Q0 15763640 14 14.904719 Anserini +test2542 Q0 15763696 15 14.904719 Anserini +test2542 Q0 6952171 16 14.863477 Anserini +test2542 Q0 6952183 17 14.606181 Anserini +test2542 Q0 15763648 18 14.319677 Anserini +test2542 Q0 6952178 19 14.141739 Anserini +test2542 Q0 9605366 20 14.033195 Anserini +test2542 Q0 12434351 21 13.862745 Anserini +test2542 Q0 11716356 22 13.748858 Anserini +test2542 Q0 6952175 23 13.659498 Anserini +test2542 Q0 6952174 24 13.608438 Anserini +test2542 Q0 6952187 25 13.608438 Anserini +test2542 Q0 6952182 26 13.497437 Anserini +test2542 Q0 1743609 27 13.436028 Anserini +test2542 Q0 12212663 28 13.297377 Anserini +test2542 Q0 6134143 29 12.984784 Anserini +test2542 Q0 14444026 30 12.856888 Anserini +test2543 Q0 16543350 1 16.609194 Anserini +test2543 Q0 16543361 2 16.113293 Anserini +test2543 Q0 16543352 3 15.249263 Anserini +test2543 Q0 16543362 4 15.114600 Anserini +test2543 Q0 16543353 5 14.674129 Anserini +test2543 Q0 16543368 6 14.570638 Anserini +test2543 Q0 16543349 7 14.570638 Anserini +test2543 Q0 16543366 8 14.394772 Anserini +test2543 Q0 12184694 9 14.108362 Anserini +test2543 Q0 12184696 10 14.098251 Anserini +test2543 Q0 16543359 11 13.602718 Anserini +test2543 Q0 16543357 12 13.444335 Anserini +test2543 Q0 16543367 13 13.424788 Anserini +test2543 Q0 3809997 14 13.115894 Anserini +test2543 Q0 16543360 15 12.973511 Anserini +test2543 Q0 5082344 16 12.940910 Anserini +test2543 Q0 16543351 17 12.891137 Anserini +test2543 Q0 16543358 18 12.818223 Anserini +test2543 Q0 16543354 19 12.601709 Anserini +test2543 Q0 13352947 20 12.585511 Anserini +test2543 Q0 16543356 21 12.435030 Anserini +test2543 Q0 3809986 22 12.076862 Anserini +test2543 Q0 16543355 23 12.024803 Anserini +test2543 Q0 3809992 24 12.016670 Anserini +test2543 Q0 16543364 25 11.938346 Anserini +test2543 Q0 13352948 26 11.931435 Anserini +test2543 Q0 15627984 27 11.885389 Anserini +test2543 Q0 15627996 28 11.787103 Anserini +test2543 Q0 16543363 29 11.602320 Anserini +test2543 Q0 3809989 30 11.269382 Anserini +test2544 Q0 6078697 1 14.347558 Anserini +test2544 Q0 10142601 2 13.249112 Anserini +test2544 Q0 18366306 3 12.665117 Anserini +test2544 Q0 7392910 4 12.618399 Anserini +test2544 Q0 17562985 5 12.558001 Anserini +test2544 Q0 11337958 6 12.306433 Anserini +test2544 Q0 4432257 7 12.204665 Anserini +test2544 Q0 1581784 8 12.091012 Anserini +test2544 Q0 7439523 9 12.009706 Anserini +test2544 Q0 13442995 10 11.958602 Anserini +test2544 Q0 7049649 11 11.946512 Anserini +test2544 Q0 3114563 12 11.910711 Anserini +test2544 Q0 2554650 13 11.891529 Anserini +test2544 Q0 18489240 14 11.841211 Anserini +test2544 Q0 9341080 15 11.772071 Anserini +test2544 Q0 2024629 16 11.766406 Anserini +test2544 Q0 2719427 17 11.757095 Anserini +test2544 Q0 5732070 18 11.733164 Anserini +test2544 Q0 20917187 19 11.730990 Anserini +test2544 Q0 13467840 20 11.721345 Anserini +test2544 Q0 20569714 21 11.680784 Anserini +test2544 Q0 3080634 22 11.672194 Anserini +test2544 Q0 12913926 23 11.580888 Anserini +test2544 Q0 8742764 24 11.504452 Anserini +test2544 Q0 3709893 25 11.502122 Anserini +test2544 Q0 11454022 26 11.492764 Anserini +test2544 Q0 460207 27 11.475740 Anserini +test2544 Q0 4163892 28 11.456039 Anserini +test2544 Q0 9145439 29 11.454146 Anserini +test2544 Q0 5471052 30 11.453229 Anserini +test2545 Q0 13957329 1 17.012253 Anserini +test2545 Q0 13167039 2 16.218189 Anserini +test2545 Q0 3342080 3 15.970994 Anserini +test2545 Q0 18730893 4 15.738806 Anserini +test2545 Q0 13562766 5 15.733882 Anserini +test2545 Q0 3211034 6 15.501347 Anserini +test2545 Q0 20538207 7 14.939680 Anserini +test2545 Q0 11594967 8 14.746971 Anserini +test2545 Q0 8765847 9 14.534054 Anserini +test2545 Q0 3586568 10 14.395010 Anserini +test2545 Q0 17965788 11 14.342484 Anserini +test2545 Q0 17965795 12 14.342484 Anserini +test2545 Q0 6369012 13 14.222300 Anserini +test2545 Q0 17965794 14 14.006287 Anserini +test2545 Q0 3342081 15 13.869803 Anserini +test2545 Q0 2570774 16 13.816986 Anserini +test2545 Q0 19834680 17 13.757709 Anserini +test2545 Q0 20275810 18 13.745777 Anserini +test2545 Q0 19001184 19 13.710478 Anserini +test2545 Q0 13502819 20 13.679759 Anserini +test2545 Q0 7552891 21 13.666164 Anserini +test2545 Q0 10623487 22 13.660363 Anserini +test2545 Q0 13502820 23 13.537251 Anserini +test2545 Q0 3342193 24 13.525476 Anserini +test2545 Q0 3341854 25 13.486426 Anserini +test2545 Q0 12820686 26 13.486070 Anserini +test2545 Q0 6393020 27 13.447890 Anserini +test2545 Q0 2432723 28 13.441966 Anserini +test2545 Q0 15109486 29 13.353843 Anserini +test2545 Q0 20052386 30 13.282524 Anserini +test2546 Q0 8522002 1 13.094800 Anserini +test2546 Q0 4951590 2 12.730078 Anserini +test2546 Q0 2319037 3 12.506824 Anserini +test2546 Q0 17248495 4 11.901890 Anserini +test2546 Q0 2319039 5 11.719622 Anserini +test2546 Q0 6519506 6 11.578650 Anserini +test2546 Q0 15873502 7 11.439465 Anserini +test2546 Q0 6371683 8 11.293736 Anserini +test2546 Q0 6070168 9 11.281296 Anserini +test2546 Q0 1387159 10 11.189833 Anserini +test2546 Q0 14993494 11 11.146889 Anserini +test2546 Q0 14324125 12 11.115355 Anserini +test2546 Q0 7648928 13 11.078766 Anserini +test2546 Q0 7648929 14 11.078766 Anserini +test2546 Q0 14324124 15 11.024165 Anserini +test2546 Q0 11494092 16 10.972181 Anserini +test2546 Q0 13064216 17 10.961268 Anserini +test2546 Q0 2840803 18 10.956386 Anserini +test2546 Q0 15873500 19 10.950919 Anserini +test2546 Q0 2484845 20 10.925210 Anserini +test2546 Q0 7472368 21 10.915028 Anserini +test2546 Q0 6657695 22 10.912277 Anserini +test2546 Q0 16444331 23 10.903272 Anserini +test2546 Q0 15501880 24 10.886238 Anserini +test2546 Q0 2324215 25 10.836757 Anserini +test2546 Q0 5886730 26 10.836757 Anserini +test2546 Q0 8382792 27 10.820042 Anserini +test2546 Q0 8900966 28 10.775604 Anserini +test2546 Q0 12242676 29 10.673099 Anserini +test2546 Q0 10875983 30 10.651728 Anserini +test2547 Q0 1461654 1 20.348524 Anserini +test2547 Q0 10471425 2 18.391621 Anserini +test2547 Q0 14523362 3 18.371357 Anserini +test2547 Q0 4984676 4 17.917513 Anserini +test2547 Q0 4984682 5 17.890841 Anserini +test2547 Q0 19051879 6 17.535273 Anserini +test2547 Q0 17348776 7 17.481192 Anserini +test2547 Q0 17348778 8 16.995199 Anserini +test2547 Q0 11381063 9 16.984583 Anserini +test2547 Q0 5079927 10 16.666626 Anserini +test2547 Q0 5079931 11 16.666626 Anserini +test2547 Q0 1461649 12 16.641525 Anserini +test2547 Q0 1461642 13 16.101269 Anserini +test2547 Q0 866990 14 16.083355 Anserini +test2547 Q0 13186141 15 16.071175 Anserini +test2547 Q0 1461656 16 15.988233 Anserini +test2547 Q0 19563709 17 15.798330 Anserini +test2547 Q0 11732537 18 15.700653 Anserini +test2547 Q0 1461651 19 15.389413 Anserini +test2547 Q0 14523359 20 15.254664 Anserini +test2547 Q0 4984680 21 15.169855 Anserini +test2547 Q0 10477635 22 15.125615 Anserini +test2547 Q0 13384448 23 15.099420 Anserini +test2547 Q0 13384449 24 15.099420 Anserini +test2547 Q0 15324634 25 14.949070 Anserini +test2547 Q0 5850017 26 14.949070 Anserini +test2547 Q0 3201581 27 14.915731 Anserini +test2547 Q0 14523358 28 14.841217 Anserini +test2547 Q0 8202167 29 14.810376 Anserini +test2547 Q0 13026404 30 14.683384 Anserini +test2548 Q0 8617567 1 20.691235 Anserini +test2548 Q0 8617569 2 15.804724 Anserini +test2548 Q0 8617564 3 15.804724 Anserini +test2548 Q0 1302090 4 15.157537 Anserini +test2548 Q0 1302089 5 13.457187 Anserini +test2548 Q0 16314210 6 12.812082 Anserini +test2548 Q0 1302078 7 12.567036 Anserini +test2548 Q0 16323944 8 11.801348 Anserini +test2548 Q0 2120592 9 11.552005 Anserini +test2548 Q0 16314213 10 11.474307 Anserini +test2548 Q0 4435613 11 11.461388 Anserini +test2548 Q0 7380865 12 11.383285 Anserini +test2548 Q0 10783867 13 11.257283 Anserini +test2548 Q0 6823104 14 11.247725 Anserini +test2548 Q0 16323945 15 11.197501 Anserini +test2548 Q0 16314212 16 11.183507 Anserini +test2548 Q0 2108618 17 11.086915 Anserini +test2548 Q0 2883751 18 11.020291 Anserini +test2548 Q0 16323943 19 11.013414 Anserini +test2548 Q0 16806532 20 10.989183 Anserini +test2548 Q0 7380937 21 10.981406 Anserini +test2548 Q0 1302091 22 10.928906 Anserini +test2548 Q0 1302098 23 10.810782 Anserini +test2548 Q0 9126636 24 10.771675 Anserini +test2548 Q0 7380873 25 10.766086 Anserini +test2548 Q0 8327586 26 10.702920 Anserini +test2548 Q0 2264339 27 10.643460 Anserini +test2548 Q0 2883747 28 10.643460 Anserini +test2548 Q0 1302095 29 10.572865 Anserini +test2548 Q0 16314216 30 10.572865 Anserini +test2549 Q0 8583824 1 15.768362 Anserini +test2549 Q0 4394468 2 15.215867 Anserini +test2549 Q0 8583820 3 14.182344 Anserini +test2549 Q0 4394469 4 14.094371 Anserini +test2549 Q0 8583825 5 13.704233 Anserini +test2549 Q0 8583821 6 13.559840 Anserini +test2549 Q0 614722 7 13.171967 Anserini +test2549 Q0 8583827 8 12.494962 Anserini +test2549 Q0 8583826 9 11.966721 Anserini +test2549 Q0 9619798 10 11.929918 Anserini +test2549 Q0 8583823 11 11.552872 Anserini +test2549 Q0 614723 12 11.451059 Anserini +test2549 Q0 7518983 13 11.343216 Anserini +test2549 Q0 9177238 14 11.075433 Anserini +test2549 Q0 11437231 15 10.807144 Anserini +test2549 Q0 13339340 16 10.669441 Anserini +test2549 Q0 13435270 17 10.654574 Anserini +test2549 Q0 13435266 18 10.394716 Anserini +test2549 Q0 9581063 19 10.388848 Anserini +test2549 Q0 1625799 20 10.280623 Anserini +test2549 Q0 15034572 21 10.186255 Anserini +test2549 Q0 714498 22 10.106462 Anserini +test2549 Q0 4818323 23 9.995934 Anserini +test2549 Q0 13319877 24 9.994661 Anserini +test2549 Q0 16011916 25 9.990801 Anserini +test2549 Q0 12325125 26 9.932919 Anserini +test2549 Q0 5187120 27 9.879374 Anserini +test2549 Q0 8516687 28 9.854671 Anserini +test2549 Q0 11233562 29 9.842110 Anserini +test2549 Q0 7697451 30 9.842110 Anserini +test255 Q0 14201326 1 17.116762 Anserini +test255 Q0 15573218 2 16.565289 Anserini +test255 Q0 15573222 3 16.494125 Anserini +test255 Q0 10492166 4 16.255241 Anserini +test255 Q0 20360290 5 16.237743 Anserini +test255 Q0 17159783 6 16.197935 Anserini +test255 Q0 20360293 7 15.878737 Anserini +test255 Q0 20227866 8 15.704127 Anserini +test255 Q0 19676415 9 15.704127 Anserini +test255 Q0 19369684 10 15.704127 Anserini +test255 Q0 19920781 11 15.625858 Anserini +test255 Q0 20219828 12 15.548431 Anserini +test255 Q0 15461435 13 15.451809 Anserini +test255 Q0 18301699 14 15.369040 Anserini +test255 Q0 16130495 15 15.243567 Anserini +test255 Q0 18080667 16 15.243567 Anserini +test255 Q0 14201343 17 15.181597 Anserini +test255 Q0 17937523 18 15.181597 Anserini +test255 Q0 17159774 19 15.152956 Anserini +test255 Q0 16863888 20 14.947045 Anserini +test255 Q0 16863890 21 14.947045 Anserini +test255 Q0 20116265 22 14.749761 Anserini +test255 Q0 19648420 23 14.749761 Anserini +test255 Q0 19701322 24 14.749761 Anserini +test255 Q0 16863889 25 14.670725 Anserini +test255 Q0 14201344 26 14.670725 Anserini +test255 Q0 14891587 27 14.670725 Anserini +test255 Q0 16998895 28 14.588565 Anserini +test255 Q0 14201337 29 14.512971 Anserini +test255 Q0 16998961 30 14.512971 Anserini +test2550 Q0 709897 1 12.235261 Anserini +test2550 Q0 6073822 2 11.738486 Anserini +test2550 Q0 2767437 3 11.668401 Anserini +test2550 Q0 709890 4 11.606171 Anserini +test2550 Q0 709898 5 11.606171 Anserini +test2550 Q0 709893 6 11.318467 Anserini +test2550 Q0 4542430 7 11.111806 Anserini +test2550 Q0 2497589 8 10.840736 Anserini +test2550 Q0 3175967 9 10.778158 Anserini +test2550 Q0 2170230 10 10.763074 Anserini +test2550 Q0 16101645 11 10.710251 Anserini +test2550 Q0 20949943 12 10.694961 Anserini +test2550 Q0 18317091 13 10.663801 Anserini +test2550 Q0 15009796 14 10.663801 Anserini +test2550 Q0 3989673 15 10.424033 Anserini +test2550 Q0 4731109 16 10.284197 Anserini +test2550 Q0 2962177 17 10.253284 Anserini +test2550 Q0 19668627 18 10.172734 Anserini +test2550 Q0 6652164 19 10.172734 Anserini +test2550 Q0 15009798 20 10.160945 Anserini +test2550 Q0 2142145 21 10.103626 Anserini +test2550 Q0 4765399 22 10.096025 Anserini +test2550 Q0 11471206 23 10.045664 Anserini +test2550 Q0 11471203 24 10.045664 Anserini +test2550 Q0 6237672 25 10.029897 Anserini +test2550 Q0 129384 26 9.978666 Anserini +test2550 Q0 709892 27 9.955030 Anserini +test2550 Q0 5200936 28 9.886369 Anserini +test2550 Q0 2170223 29 9.818649 Anserini +test2550 Q0 10041601 30 9.816280 Anserini +test2551 Q0 7238035 1 21.362389 Anserini +test2551 Q0 2976403 2 20.414650 Anserini +test2551 Q0 17417052 3 18.027851 Anserini +test2551 Q0 14273448 4 17.841513 Anserini +test2551 Q0 12418751 5 17.193703 Anserini +test2551 Q0 10585092 6 16.539478 Anserini +test2551 Q0 78512 7 16.120667 Anserini +test2551 Q0 18033826 8 16.096752 Anserini +test2551 Q0 9564125 9 15.271416 Anserini +test2551 Q0 278255 10 15.253230 Anserini +test2551 Q0 1101995 11 15.240488 Anserini +test2551 Q0 11162562 12 14.996994 Anserini +test2551 Q0 167610 13 14.710645 Anserini +test2551 Q0 12425342 14 14.637563 Anserini +test2551 Q0 18882594 15 14.481202 Anserini +test2551 Q0 18736112 16 14.477421 Anserini +test2551 Q0 9860268 17 14.417297 Anserini +test2551 Q0 7238047 18 14.378470 Anserini +test2551 Q0 7238036 19 14.354497 Anserini +test2551 Q0 3137824 20 14.302392 Anserini +test2551 Q0 16477463 21 14.286338 Anserini +test2551 Q0 18746725 22 14.220045 Anserini +test2551 Q0 14273446 23 14.055600 Anserini +test2551 Q0 8326669 24 14.007625 Anserini +test2551 Q0 78499 25 13.872967 Anserini +test2551 Q0 7238037 26 13.868660 Anserini +test2551 Q0 6262763 27 13.860209 Anserini +test2551 Q0 5051432 28 13.837160 Anserini +test2551 Q0 16477465 29 13.833331 Anserini +test2551 Q0 43642 30 13.695482 Anserini +test2552 Q0 14364215 1 13.623415 Anserini +test2552 Q0 16488824 2 13.297535 Anserini +test2552 Q0 8258020 3 13.033132 Anserini +test2552 Q0 2191657 4 12.977392 Anserini +test2552 Q0 16134 5 12.837976 Anserini +test2552 Q0 12453700 6 12.470521 Anserini +test2552 Q0 465610 7 12.300147 Anserini +test2552 Q0 1395522 8 12.068348 Anserini +test2552 Q0 483431 9 12.037162 Anserini +test2552 Q0 12335990 10 11.971551 Anserini +test2552 Q0 14935597 11 11.851752 Anserini +test2552 Q0 20535230 12 11.737088 Anserini +test2552 Q0 189084 13 11.681038 Anserini +test2552 Q0 8258006 14 11.656707 Anserini +test2552 Q0 11696458 15 11.615104 Anserini +test2552 Q0 3771939 16 11.555202 Anserini +test2552 Q0 6989056 17 11.459587 Anserini +test2552 Q0 4993211 18 11.405655 Anserini +test2552 Q0 12303 19 11.337668 Anserini +test2552 Q0 31455 20 11.337668 Anserini +test2552 Q0 9904117 21 11.318285 Anserini +test2552 Q0 846548 22 11.305250 Anserini +test2552 Q0 11706524 23 11.305250 Anserini +test2552 Q0 5819993 24 11.305250 Anserini +test2552 Q0 11706516 25 11.305250 Anserini +test2552 Q0 845625 26 11.257850 Anserini +test2552 Q0 465618 27 11.246327 Anserini +test2552 Q0 11696460 28 11.240629 Anserini +test2552 Q0 9877939 29 11.216957 Anserini +test2552 Q0 8258018 30 11.216957 Anserini +test2553 Q0 18255249 1 15.146678 Anserini +test2553 Q0 18255217 2 14.977388 Anserini +test2553 Q0 13813682 3 14.280158 Anserini +test2553 Q0 16563625 4 14.225998 Anserini +test2553 Q0 14548395 5 14.123270 Anserini +test2553 Q0 2056219 6 14.059579 Anserini +test2553 Q0 3235960 7 13.925939 Anserini +test2553 Q0 13813747 8 13.826392 Anserini +test2553 Q0 18255246 9 13.676919 Anserini +test2553 Q0 18255229 10 13.640944 Anserini +test2553 Q0 18255218 11 13.580237 Anserini +test2553 Q0 2056236 12 13.552481 Anserini +test2553 Q0 16756804 13 13.526595 Anserini +test2553 Q0 18255244 14 13.493702 Anserini +test2553 Q0 19966037 15 13.420020 Anserini +test2553 Q0 18255247 16 13.294314 Anserini +test2553 Q0 10517520 17 13.280031 Anserini +test2553 Q0 13813738 18 13.273609 Anserini +test2553 Q0 13813707 19 13.271533 Anserini +test2553 Q0 13813740 20 13.262639 Anserini +test2553 Q0 3134784 21 13.112686 Anserini +test2553 Q0 19506707 22 13.112686 Anserini +test2553 Q0 4626633 23 13.080065 Anserini +test2553 Q0 19506705 24 13.070827 Anserini +test2553 Q0 13813705 25 13.062951 Anserini +test2553 Q0 18255240 26 13.058622 Anserini +test2553 Q0 12677611 27 13.008849 Anserini +test2553 Q0 7204776 28 12.912212 Anserini +test2553 Q0 13813680 29 12.901926 Anserini +test2553 Q0 2227625 30 12.893284 Anserini +test2554 Q0 12976407 1 17.008055 Anserini +test2554 Q0 12976411 2 15.566210 Anserini +test2554 Q0 7902042 3 15.398198 Anserini +test2554 Q0 12976404 4 15.222573 Anserini +test2554 Q0 17260131 5 14.327425 Anserini +test2554 Q0 11705180 6 14.235067 Anserini +test2554 Q0 17094119 7 14.137245 Anserini +test2554 Q0 9175850 8 14.020387 Anserini +test2554 Q0 12976410 9 13.949657 Anserini +test2554 Q0 12976412 10 13.496164 Anserini +test2554 Q0 12976415 11 12.899500 Anserini +test2554 Q0 7707210 12 12.836851 Anserini +test2554 Q0 13423884 13 12.787086 Anserini +test2554 Q0 5186839 14 12.661619 Anserini +test2554 Q0 14305118 15 12.661619 Anserini +test2554 Q0 17527040 16 12.647899 Anserini +test2554 Q0 5186853 17 12.538640 Anserini +test2554 Q0 14723874 18 12.476060 Anserini +test2554 Q0 7309304 19 12.367571 Anserini +test2554 Q0 9175851 20 12.253138 Anserini +test2554 Q0 17094117 21 12.211029 Anserini +test2554 Q0 14723876 22 12.198637 Anserini +test2554 Q0 12976414 23 12.153789 Anserini +test2554 Q0 16632307 24 12.093498 Anserini +test2554 Q0 16423626 25 12.080788 Anserini +test2554 Q0 3645014 26 11.976513 Anserini +test2554 Q0 9175845 27 11.961641 Anserini +test2554 Q0 17336873 28 11.952255 Anserini +test2554 Q0 19170950 29 11.937014 Anserini +test2554 Q0 5773973 30 11.902633 Anserini +test2555 Q0 19076223 1 17.757082 Anserini +test2555 Q0 19076222 2 15.732790 Anserini +test2555 Q0 19411922 3 15.306198 Anserini +test2555 Q0 17840287 4 15.129351 Anserini +test2555 Q0 14611126 5 15.031097 Anserini +test2555 Q0 17840288 6 15.021901 Anserini +test2555 Q0 18245485 7 15.008691 Anserini +test2555 Q0 19076221 8 14.636456 Anserini +test2555 Q0 18245483 9 14.491605 Anserini +test2555 Q0 17840280 10 14.136483 Anserini +test2555 Q0 652730 11 13.998518 Anserini +test2555 Q0 17840289 12 13.935419 Anserini +test2555 Q0 19411921 13 13.864014 Anserini +test2555 Q0 19887444 14 13.687331 Anserini +test2555 Q0 17840281 15 13.554649 Anserini +test2555 Q0 17840283 16 13.536187 Anserini +test2555 Q0 17840282 17 13.415745 Anserini +test2555 Q0 13173144 18 13.414667 Anserini +test2555 Q0 18245484 19 13.155029 Anserini +test2555 Q0 17840284 20 12.745533 Anserini +test2555 Q0 13173143 21 12.470243 Anserini +test2555 Q0 17235762 22 12.157397 Anserini +test2555 Q0 14611125 23 11.966251 Anserini +test2555 Q0 18050929 24 11.877211 Anserini +test2555 Q0 18050932 25 11.839293 Anserini +test2555 Q0 19411905 26 11.802013 Anserini +test2555 Q0 18050925 27 11.745420 Anserini +test2555 Q0 14122029 28 11.691838 Anserini +test2555 Q0 9996027 29 11.625395 Anserini +test2555 Q0 14895055 30 11.549895 Anserini +test2556 Q0 318412 1 12.656395 Anserini +test2556 Q0 5894588 2 12.408997 Anserini +test2556 Q0 14716062 3 12.355772 Anserini +test2556 Q0 15610724 4 11.825992 Anserini +test2556 Q0 387388 5 11.791969 Anserini +test2556 Q0 15665256 6 11.712650 Anserini +test2556 Q0 4215504 7 11.658417 Anserini +test2556 Q0 373659 8 11.564217 Anserini +test2556 Q0 645208 9 11.485087 Anserini +test2556 Q0 5705069 10 11.083443 Anserini +test2556 Q0 15046882 11 11.015139 Anserini +test2556 Q0 17114230 12 10.882326 Anserini +test2556 Q0 15610719 13 10.862760 Anserini +test2556 Q0 3994957 14 10.834555 Anserini +test2556 Q0 7368877 15 10.824615 Anserini +test2556 Q0 9346789 16 10.766547 Anserini +test2556 Q0 10997830 17 10.739510 Anserini +test2556 Q0 5705070 18 10.584044 Anserini +test2556 Q0 12621347 19 10.495440 Anserini +test2556 Q0 1209089 20 10.476807 Anserini +test2556 Q0 7917937 21 10.470694 Anserini +test2556 Q0 13785501 22 10.447631 Anserini +test2556 Q0 9062245 23 10.033223 Anserini +test2556 Q0 9062247 24 9.980608 Anserini +test2556 Q0 16744099 25 9.934780 Anserini +test2556 Q0 9051597 26 9.925134 Anserini +test2556 Q0 13919610 27 9.919152 Anserini +test2556 Q0 4855384 28 9.914012 Anserini +test2556 Q0 5693723 29 9.914012 Anserini +test2556 Q0 4589444 30 9.909369 Anserini +test2557 Q0 11982921 1 15.759676 Anserini +test2557 Q0 11982917 2 15.759676 Anserini +test2557 Q0 7236642 3 15.660363 Anserini +test2557 Q0 869315 4 15.479430 Anserini +test2557 Q0 16322951 5 15.044743 Anserini +test2557 Q0 10255474 6 14.940731 Anserini +test2557 Q0 13436898 7 14.908416 Anserini +test2557 Q0 13756201 8 14.877007 Anserini +test2557 Q0 19881010 9 14.767134 Anserini +test2557 Q0 5191744 10 14.717111 Anserini +test2557 Q0 12787882 11 14.714628 Anserini +test2557 Q0 19705712 12 14.710918 Anserini +test2557 Q0 13324825 13 14.681019 Anserini +test2557 Q0 7022201 14 14.644958 Anserini +test2557 Q0 15261296 15 14.608118 Anserini +test2557 Q0 4777327 16 14.574535 Anserini +test2557 Q0 201063 17 14.443559 Anserini +test2557 Q0 4645151 18 14.315920 Anserini +test2557 Q0 9919514 19 14.249509 Anserini +test2557 Q0 14983579 20 14.181602 Anserini +test2557 Q0 6437756 21 14.175622 Anserini +test2557 Q0 2636262 22 14.109566 Anserini +test2557 Q0 6726338 23 14.102968 Anserini +test2557 Q0 715206 24 14.070974 Anserini +test2557 Q0 16469422 25 14.017985 Anserini +test2557 Q0 8366959 26 14.005754 Anserini +test2557 Q0 578549 27 13.987762 Anserini +test2557 Q0 410161 28 13.965283 Anserini +test2557 Q0 4882088 29 13.928280 Anserini +test2557 Q0 8056509 30 13.894608 Anserini +test2558 Q0 10378067 1 11.612228 Anserini +test2558 Q0 7313136 2 10.911457 Anserini +test2558 Q0 16427677 3 10.779015 Anserini +test2558 Q0 245289 4 10.746990 Anserini +test2558 Q0 2684645 5 10.639858 Anserini +test2558 Q0 490712 6 10.585953 Anserini +test2558 Q0 2818980 7 10.580428 Anserini +test2558 Q0 6983789 8 10.508804 Anserini +test2558 Q0 9375146 9 10.491672 Anserini +test2558 Q0 6822349 10 10.484911 Anserini +test2558 Q0 10488790 11 10.370793 Anserini +test2558 Q0 896720 12 10.269283 Anserini +test2558 Q0 10401767 13 10.213312 Anserini +test2558 Q0 13999387 14 10.157186 Anserini +test2558 Q0 7998890 15 10.142101 Anserini +test2558 Q0 1306856 16 10.119743 Anserini +test2558 Q0 3324629 17 9.989051 Anserini +test2558 Q0 13363385 18 9.984658 Anserini +test2558 Q0 11241222 19 9.974205 Anserini +test2558 Q0 20843699 20 9.935290 Anserini +test2558 Q0 11649340 21 9.933315 Anserini +test2558 Q0 7136122 22 9.914257 Anserini +test2558 Q0 3351714 23 9.912107 Anserini +test2558 Q0 2256443 24 9.897615 Anserini +test2558 Q0 18522692 25 9.883550 Anserini +test2558 Q0 18388956 26 9.883179 Anserini +test2558 Q0 490715 27 9.878921 Anserini +test2558 Q0 1404911 28 9.817554 Anserini +test2558 Q0 1282854 29 9.807716 Anserini +test2558 Q0 20146443 30 9.787694 Anserini +test2559 Q0 3908260 1 14.624656 Anserini +test2559 Q0 14249913 2 13.456551 Anserini +test2559 Q0 15396760 3 13.096816 Anserini +test2559 Q0 3800028 4 12.771971 Anserini +test2559 Q0 5533071 5 12.728199 Anserini +test2559 Q0 15975151 6 12.642252 Anserini +test2559 Q0 3428989 7 12.509954 Anserini +test2559 Q0 9798766 8 12.342623 Anserini +test2559 Q0 14104037 9 12.316641 Anserini +test2559 Q0 1415047 10 12.290208 Anserini +test2559 Q0 12642760 11 12.145054 Anserini +test2559 Q0 20072592 12 12.090693 Anserini +test2559 Q0 15578021 13 12.015430 Anserini +test2559 Q0 19953051 14 11.926843 Anserini +test2559 Q0 775504 15 11.887731 Anserini +test2559 Q0 14121335 16 11.879824 Anserini +test2559 Q0 11260703 17 11.846777 Anserini +test2559 Q0 19074348 18 11.838602 Anserini +test2559 Q0 10026202 19 11.803983 Anserini +test2559 Q0 4033498 20 11.803946 Anserini +test2559 Q0 11362680 21 11.792005 Anserini +test2559 Q0 6212640 22 11.784773 Anserini +test2559 Q0 12290848 23 11.746614 Anserini +test2559 Q0 3301003 24 11.651232 Anserini +test2559 Q0 6386404 25 11.640957 Anserini +test2559 Q0 9201835 26 11.631264 Anserini +test2559 Q0 3301014 27 11.598919 Anserini +test2559 Q0 7226665 28 11.581882 Anserini +test2559 Q0 18937838 29 11.581183 Anserini +test2559 Q0 19546204 30 11.505773 Anserini +test256 Q0 16041934 1 10.434233 Anserini +test256 Q0 6963108 2 9.899434 Anserini +test256 Q0 7289039 3 9.445820 Anserini +test256 Q0 15725127 4 9.377077 Anserini +test256 Q0 9360032 5 9.213214 Anserini +test256 Q0 1388035 6 9.035284 Anserini +test256 Q0 18123732 7 8.990340 Anserini +test256 Q0 12146310 8 8.892111 Anserini +test256 Q0 12025713 9 8.890671 Anserini +test256 Q0 15725121 10 8.832260 Anserini +test256 Q0 7537916 11 8.801853 Anserini +test256 Q0 20875671 12 8.730170 Anserini +test256 Q0 840860 13 8.720260 Anserini +test256 Q0 17247045 14 8.697390 Anserini +test256 Q0 12198325 15 8.665619 Anserini +test256 Q0 8083368 16 8.644361 Anserini +test256 Q0 17866164 17 8.636999 Anserini +test256 Q0 19501770 18 8.635622 Anserini +test256 Q0 3786964 19 8.631049 Anserini +test256 Q0 6841954 20 8.628895 Anserini +test256 Q0 10771212 21 8.628895 Anserini +test256 Q0 2915338 22 8.628895 Anserini +test256 Q0 403445 23 8.616378 Anserini +test256 Q0 21007376 24 8.589850 Anserini +test256 Q0 14885792 25 8.569496 Anserini +test256 Q0 1978824 26 8.565974 Anserini +test256 Q0 668821 27 8.537091 Anserini +test256 Q0 10709644 28 8.532914 Anserini +test256 Q0 6963106 29 8.505346 Anserini +test256 Q0 5081558 30 8.462952 Anserini +test2560 Q0 5821015 1 18.919151 Anserini +test2560 Q0 19547439 2 16.581398 Anserini +test2560 Q0 8470495 3 16.344833 Anserini +test2560 Q0 8705826 4 16.333010 Anserini +test2560 Q0 5674543 5 16.001972 Anserini +test2560 Q0 4578237 6 15.834417 Anserini +test2560 Q0 19311627 7 15.793804 Anserini +test2560 Q0 12562687 8 15.440814 Anserini +test2560 Q0 3538787 9 15.433454 Anserini +test2560 Q0 4419633 10 15.224583 Anserini +test2560 Q0 10729766 11 15.196583 Anserini +test2560 Q0 1763109 12 15.034807 Anserini +test2560 Q0 9667 13 15.026219 Anserini +test2560 Q0 20069961 14 14.847203 Anserini +test2560 Q0 19355162 15 14.814754 Anserini +test2560 Q0 5821012 16 14.670339 Anserini +test2560 Q0 12552701 17 14.642365 Anserini +test2560 Q0 8439947 18 14.518148 Anserini +test2560 Q0 4300299 19 14.473961 Anserini +test2560 Q0 4119949 20 14.338800 Anserini +test2560 Q0 11708472 21 14.330732 Anserini +test2560 Q0 4300300 22 14.307849 Anserini +test2560 Q0 6127882 23 14.227708 Anserini +test2560 Q0 152461 24 14.047677 Anserini +test2560 Q0 12048801 25 14.047677 Anserini +test2560 Q0 12562710 26 14.010515 Anserini +test2560 Q0 12562685 27 14.010515 Anserini +test2560 Q0 2630000 28 13.911401 Anserini +test2560 Q0 20933689 29 13.823921 Anserini +test2560 Q0 8959923 30 13.822472 Anserini +test2561 Q0 18764463 1 17.814449 Anserini +test2561 Q0 20596130 2 17.733328 Anserini +test2561 Q0 20652658 3 17.576004 Anserini +test2561 Q0 20596128 4 16.934803 Anserini +test2561 Q0 20589831 5 16.835695 Anserini +test2561 Q0 20589834 6 16.835695 Anserini +test2561 Q0 9923288 7 16.631578 Anserini +test2561 Q0 10418969 8 16.383667 Anserini +test2561 Q0 20596129 9 16.180567 Anserini +test2561 Q0 9923284 10 16.090784 Anserini +test2561 Q0 20589833 11 16.090784 Anserini +test2561 Q0 9923293 12 16.090784 Anserini +test2561 Q0 18764465 13 15.846981 Anserini +test2561 Q0 20589832 14 15.642272 Anserini +test2561 Q0 20584655 15 15.402475 Anserini +test2561 Q0 20584665 16 15.402475 Anserini +test2561 Q0 18764457 17 15.318813 Anserini +test2561 Q0 18764473 18 15.236105 Anserini +test2561 Q0 20584663 19 15.226199 Anserini +test2561 Q0 18764464 20 15.226199 Anserini +test2561 Q0 9923283 21 15.208551 Anserini +test2561 Q0 9923295 22 15.147221 Anserini +test2561 Q0 9923287 23 15.121902 Anserini +test2561 Q0 17947892 24 15.036014 Anserini +test2561 Q0 18148265 25 14.950048 Anserini +test2561 Q0 16281557 26 14.873690 Anserini +test2561 Q0 20584660 27 14.867167 Anserini +test2561 Q0 9923291 28 14.796320 Anserini +test2561 Q0 18764467 29 14.769512 Anserini +test2561 Q0 4578711 30 14.581108 Anserini +test2562 Q0 8618468 1 13.999533 Anserini +test2562 Q0 8618465 2 12.268666 Anserini +test2562 Q0 18629897 3 11.488315 Anserini +test2562 Q0 18629958 4 11.488315 Anserini +test2562 Q0 2872969 5 11.358516 Anserini +test2562 Q0 11955497 6 11.357364 Anserini +test2562 Q0 9753408 7 11.260925 Anserini +test2562 Q0 1445997 8 11.090161 Anserini +test2562 Q0 3223565 9 10.928093 Anserini +test2562 Q0 7331457 10 10.795652 Anserini +test2562 Q0 11424061 11 10.771702 Anserini +test2562 Q0 18582032 12 10.607712 Anserini +test2562 Q0 9275861 13 10.599472 Anserini +test2562 Q0 10933648 14 10.461759 Anserini +test2562 Q0 3746120 15 10.437941 Anserini +test2562 Q0 9190174 16 10.416814 Anserini +test2562 Q0 526043 17 10.380227 Anserini +test2562 Q0 14990118 18 10.375181 Anserini +test2562 Q0 8631680 19 10.349468 Anserini +test2562 Q0 6742139 20 10.340092 Anserini +test2562 Q0 3634378 21 10.305745 Anserini +test2562 Q0 8632379 22 10.264960 Anserini +test2562 Q0 9128622 23 10.254934 Anserini +test2562 Q0 13133420 24 10.247804 Anserini +test2562 Q0 13341014 25 10.204087 Anserini +test2562 Q0 11338652 26 10.169784 Anserini +test2562 Q0 4081335 27 10.157620 Anserini +test2562 Q0 13178869 28 10.154435 Anserini +test2562 Q0 2557051 29 10.152619 Anserini +test2562 Q0 11863935 30 10.139057 Anserini +test2563 Q0 12593098 1 12.478922 Anserini +test2563 Q0 13058950 2 11.597754 Anserini +test2563 Q0 12592548 3 11.506191 Anserini +test2563 Q0 11959791 4 11.498311 Anserini +test2563 Q0 13300035 5 11.455231 Anserini +test2563 Q0 6549026 6 11.253317 Anserini +test2563 Q0 20435383 7 11.166746 Anserini +test2563 Q0 17233060 8 11.113189 Anserini +test2563 Q0 20435376 9 11.009900 Anserini +test2563 Q0 17233061 10 10.857505 Anserini +test2563 Q0 11959830 11 10.636973 Anserini +test2563 Q0 5673507 12 10.574661 Anserini +test2563 Q0 19079742 13 10.553535 Anserini +test2563 Q0 11959794 14 10.529966 Anserini +test2563 Q0 13300045 15 10.490769 Anserini +test2563 Q0 13076233 16 10.490769 Anserini +test2563 Q0 9464499 17 10.418082 Anserini +test2563 Q0 16677753 18 10.389175 Anserini +test2563 Q0 13058956 19 10.384791 Anserini +test2563 Q0 2459975 20 10.345377 Anserini +test2563 Q0 13076242 21 10.249456 Anserini +test2563 Q0 13058957 22 10.223893 Anserini +test2563 Q0 12592533 23 10.223893 Anserini +test2563 Q0 19079741 24 10.201200 Anserini +test2563 Q0 12092897 25 10.187569 Anserini +test2563 Q0 13058958 26 10.168695 Anserini +test2563 Q0 4346075 27 10.149510 Anserini +test2563 Q0 16708461 28 10.117310 Anserini +test2563 Q0 11959792 29 10.091831 Anserini +test2563 Q0 11959803 30 10.087851 Anserini +test2564 Q0 18282155 1 12.652390 Anserini +test2564 Q0 18282153 2 12.003814 Anserini +test2564 Q0 18282143 3 11.799814 Anserini +test2564 Q0 18282157 4 11.563864 Anserini +test2564 Q0 18282142 5 11.498402 Anserini +test2564 Q0 18152428 6 11.291296 Anserini +test2564 Q0 18282156 7 10.856947 Anserini +test2564 Q0 18282154 8 10.530901 Anserini +test2564 Q0 18152419 9 10.371047 Anserini +test2564 Q0 6692953 10 10.115635 Anserini +test2564 Q0 6399718 11 9.936605 Anserini +test2564 Q0 1666309 12 9.694457 Anserini +test2564 Q0 7965311 13 9.525311 Anserini +test2564 Q0 13675837 14 9.491489 Anserini +test2564 Q0 15803099 15 9.382710 Anserini +test2564 Q0 18580582 16 9.345634 Anserini +test2564 Q0 723800 17 9.299930 Anserini +test2564 Q0 3669414 18 9.256752 Anserini +test2564 Q0 2902227 19 9.236839 Anserini +test2564 Q0 9371939 20 9.183590 Anserini +test2564 Q0 14550117 21 9.094191 Anserini +test2564 Q0 9995346 22 8.997076 Anserini +test2564 Q0 15830895 23 8.983294 Anserini +test2564 Q0 5233074 24 8.923615 Anserini +test2564 Q0 5233060 25 8.923615 Anserini +test2564 Q0 14725342 26 8.876704 Anserini +test2564 Q0 7567865 27 8.862738 Anserini +test2564 Q0 13707867 28 8.857960 Anserini +test2564 Q0 18714988 29 8.823801 Anserini +test2564 Q0 16838688 30 8.819328 Anserini +test2565 Q0 20940082 1 12.093313 Anserini +test2565 Q0 7338377 2 11.873631 Anserini +test2565 Q0 6272118 3 11.486216 Anserini +test2565 Q0 12502895 4 11.397789 Anserini +test2565 Q0 3580193 5 11.283765 Anserini +test2565 Q0 1799632 6 11.278896 Anserini +test2565 Q0 12502885 7 11.271337 Anserini +test2565 Q0 634438 8 11.235556 Anserini +test2565 Q0 17823186 9 11.141980 Anserini +test2565 Q0 9138037 10 11.130722 Anserini +test2565 Q0 13896536 11 10.697140 Anserini +test2565 Q0 7338379 12 10.680888 Anserini +test2565 Q0 9225770 13 10.655009 Anserini +test2565 Q0 3783154 14 10.625575 Anserini +test2565 Q0 12502904 15 10.578579 Anserini +test2565 Q0 329788 16 10.575944 Anserini +test2565 Q0 583875 17 10.529941 Anserini +test2565 Q0 13694399 18 10.506819 Anserini +test2565 Q0 12236979 19 10.506773 Anserini +test2565 Q0 15401768 20 10.473263 Anserini +test2565 Q0 3743637 21 10.414763 Anserini +test2565 Q0 13948184 22 10.406126 Anserini +test2565 Q0 16101125 23 10.307840 Anserini +test2565 Q0 13787759 24 10.197049 Anserini +test2565 Q0 16063599 25 10.145285 Anserini +test2565 Q0 14697512 26 10.142956 Anserini +test2565 Q0 11102966 27 10.119163 Anserini +test2565 Q0 3783150 28 10.101815 Anserini +test2565 Q0 15147810 29 10.101045 Anserini +test2565 Q0 20707012 30 10.094523 Anserini +test2566 Q0 17088853 1 13.189979 Anserini +test2566 Q0 18345567 2 12.061407 Anserini +test2566 Q0 18345569 3 12.052935 Anserini +test2566 Q0 16665941 4 11.933379 Anserini +test2566 Q0 12698513 5 11.781781 Anserini +test2566 Q0 12957334 6 11.299201 Anserini +test2566 Q0 18345576 7 11.289709 Anserini +test2566 Q0 5055214 8 11.161901 Anserini +test2566 Q0 20051756 9 11.108561 Anserini +test2566 Q0 10405759 10 11.108151 Anserini +test2566 Q0 17393211 11 10.970848 Anserini +test2566 Q0 13004363 12 10.915495 Anserini +test2566 Q0 14239266 13 10.910550 Anserini +test2566 Q0 14350391 14 10.701564 Anserini +test2566 Q0 3480451 15 10.572402 Anserini +test2566 Q0 12698520 16 10.550501 Anserini +test2566 Q0 6651046 17 10.488781 Anserini +test2566 Q0 17989122 18 10.394323 Anserini +test2566 Q0 2600262 19 10.182237 Anserini +test2566 Q0 19751091 20 10.094450 Anserini +test2566 Q0 20240390 21 10.069769 Anserini +test2566 Q0 11950053 22 10.002854 Anserini +test2566 Q0 17715717 23 9.995179 Anserini +test2566 Q0 19118973 24 9.978687 Anserini +test2566 Q0 2186120 25 9.956779 Anserini +test2566 Q0 15098726 26 9.908830 Anserini +test2566 Q0 6034365 27 9.898096 Anserini +test2566 Q0 18829981 28 9.884360 Anserini +test2566 Q0 7960473 29 9.883622 Anserini +test2566 Q0 18404265 30 9.853668 Anserini +test2567 Q0 809030 1 15.265672 Anserini +test2567 Q0 809061 2 15.057792 Anserini +test2567 Q0 12936844 3 15.006503 Anserini +test2567 Q0 11312174 4 14.575136 Anserini +test2567 Q0 9310286 5 14.447629 Anserini +test2567 Q0 809053 6 14.325336 Anserini +test2567 Q0 809054 7 14.199182 Anserini +test2567 Q0 15686623 8 13.937099 Anserini +test2567 Q0 13200942 9 13.800369 Anserini +test2567 Q0 387820 10 13.696522 Anserini +test2567 Q0 3901110 11 13.563567 Anserini +test2567 Q0 11312201 12 13.390344 Anserini +test2567 Q0 1361920 13 13.254612 Anserini +test2567 Q0 12876685 14 13.207443 Anserini +test2567 Q0 11312202 15 13.180495 Anserini +test2567 Q0 768826 16 13.180495 Anserini +test2567 Q0 2387614 17 13.164189 Anserini +test2567 Q0 12876677 18 13.163017 Anserini +test2567 Q0 4537520 19 13.036746 Anserini +test2567 Q0 13556909 20 12.972578 Anserini +test2567 Q0 809059 21 12.905443 Anserini +test2567 Q0 219704 22 12.836017 Anserini +test2567 Q0 11251505 23 12.836017 Anserini +test2567 Q0 6710795 24 12.786044 Anserini +test2567 Q0 13443050 25 12.662228 Anserini +test2567 Q0 4537514 26 12.662228 Anserini +test2567 Q0 12936828 27 12.662228 Anserini +test2567 Q0 3901112 28 12.611210 Anserini +test2567 Q0 11312205 29 12.597621 Anserini +test2567 Q0 11515054 30 12.580896 Anserini +test2568 Q0 2027593 1 13.088997 Anserini +test2568 Q0 1822754 2 12.137803 Anserini +test2568 Q0 1822762 3 11.076563 Anserini +test2568 Q0 11793454 4 10.702264 Anserini +test2568 Q0 1822747 5 10.363396 Anserini +test2568 Q0 4486549 6 10.234482 Anserini +test2568 Q0 1822755 7 10.138525 Anserini +test2568 Q0 12859488 8 9.895574 Anserini +test2568 Q0 20341875 9 9.704411 Anserini +test2568 Q0 10424358 10 9.645747 Anserini +test2568 Q0 11793451 11 9.576712 Anserini +test2568 Q0 2027592 12 9.576712 Anserini +test2568 Q0 4486548 13 9.576712 Anserini +test2568 Q0 4486553 14 9.576712 Anserini +test2568 Q0 14918840 15 9.474824 Anserini +test2568 Q0 15061895 16 9.474824 Anserini +test2568 Q0 13742757 17 9.474824 Anserini +test2568 Q0 933934 18 9.433300 Anserini +test2568 Q0 9262101 19 9.422812 Anserini +test2568 Q0 20341874 20 9.406081 Anserini +test2568 Q0 2150193 21 9.381380 Anserini +test2568 Q0 2150200 22 9.381380 Anserini +test2568 Q0 16225437 23 9.277418 Anserini +test2568 Q0 10424356 24 9.270075 Anserini +test2568 Q0 20118849 25 9.211458 Anserini +test2568 Q0 19944384 26 9.199570 Anserini +test2568 Q0 11016101 27 9.074669 Anserini +test2568 Q0 12783608 28 9.045774 Anserini +test2568 Q0 14000583 29 9.020431 Anserini +test2568 Q0 8599137 30 8.999225 Anserini +test2569 Q0 13462853 1 11.002734 Anserini +test2569 Q0 3748496 2 10.852839 Anserini +test2569 Q0 12498208 3 10.542891 Anserini +test2569 Q0 6748337 4 10.426953 Anserini +test2569 Q0 7060592 5 10.408409 Anserini +test2569 Q0 3499799 6 10.137620 Anserini +test2569 Q0 4701533 7 9.964495 Anserini +test2569 Q0 6999172 8 9.784674 Anserini +test2569 Q0 7060589 9 9.705045 Anserini +test2569 Q0 5692328 10 9.604080 Anserini +test2569 Q0 20961035 11 9.201406 Anserini +test2569 Q0 20961036 12 9.201406 Anserini +test2569 Q0 3499798 13 9.146272 Anserini +test2569 Q0 15465499 14 9.145210 Anserini +test2569 Q0 6594700 15 9.069793 Anserini +test2569 Q0 19487814 16 9.035082 Anserini +test2569 Q0 15172052 17 9.016025 Anserini +test2569 Q0 11819667 18 8.994696 Anserini +test2569 Q0 13169311 19 8.956940 Anserini +test2569 Q0 3748501 20 8.956940 Anserini +test2569 Q0 10804826 21 8.853045 Anserini +test2569 Q0 14547490 22 8.757858 Anserini +test2569 Q0 8801483 23 8.699207 Anserini +test2569 Q0 20494990 24 8.677076 Anserini +test2569 Q0 14547486 25 8.633139 Anserini +test2569 Q0 7582112 26 8.609559 Anserini +test2569 Q0 19722301 27 8.576367 Anserini +test2569 Q0 10154449 28 8.576342 Anserini +test2569 Q0 15030128 29 8.565675 Anserini +test2569 Q0 14754953 30 8.557683 Anserini +test257 Q0 19701171 1 15.573526 Anserini +test257 Q0 19701181 2 14.963114 Anserini +test257 Q0 19726551 3 13.741525 Anserini +test257 Q0 19701180 4 13.741525 Anserini +test257 Q0 1658594 5 12.457664 Anserini +test257 Q0 19701178 6 12.126959 Anserini +test257 Q0 19701172 7 12.110423 Anserini +test257 Q0 9839079 8 12.075621 Anserini +test257 Q0 18792605 9 11.629168 Anserini +test257 Q0 7778331 10 11.437355 Anserini +test257 Q0 406385 11 11.435330 Anserini +test257 Q0 11418210 12 11.206059 Anserini +test257 Q0 782634 13 11.198817 Anserini +test257 Q0 19701179 14 11.188751 Anserini +test257 Q0 19220508 15 11.167388 Anserini +test257 Q0 20529538 16 11.156354 Anserini +test257 Q0 782636 17 11.096570 Anserini +test257 Q0 1290006 18 11.096570 Anserini +test257 Q0 20454248 19 10.957116 Anserini +test257 Q0 19726552 20 10.936718 Anserini +test257 Q0 20231433 21 10.721488 Anserini +test257 Q0 20454249 22 10.721488 Anserini +test257 Q0 20231432 23 10.617083 Anserini +test257 Q0 3723676 24 10.458019 Anserini +test257 Q0 17411515 25 10.346755 Anserini +test257 Q0 809072 26 10.291542 Anserini +test257 Q0 13178659 27 10.272774 Anserini +test257 Q0 19701176 28 10.054188 Anserini +test257 Q0 2780372 29 9.955856 Anserini +test257 Q0 19701174 30 9.948348 Anserini +test2570 Q0 10685984 1 14.758332 Anserini +test2570 Q0 4569890 2 13.874753 Anserini +test2570 Q0 2435240 3 13.356398 Anserini +test2570 Q0 623016 4 13.343073 Anserini +test2570 Q0 16975874 5 13.175264 Anserini +test2570 Q0 137727 6 13.157334 Anserini +test2570 Q0 4058418 7 13.076768 Anserini +test2570 Q0 156604 8 12.828771 Anserini +test2570 Q0 10921985 9 12.785342 Anserini +test2570 Q0 1365151 10 12.705750 Anserini +test2570 Q0 16229497 11 12.648048 Anserini +test2570 Q0 5810020 12 12.443609 Anserini +test2570 Q0 469413 13 12.402767 Anserini +test2570 Q0 798964 14 12.382818 Anserini +test2570 Q0 119134 15 12.314082 Anserini +test2570 Q0 12116405 16 12.265735 Anserini +test2570 Q0 5810015 17 12.231554 Anserini +test2570 Q0 12296540 18 12.117569 Anserini +test2570 Q0 10878148 19 12.103179 Anserini +test2570 Q0 4974724 20 12.103012 Anserini +test2570 Q0 19722933 21 12.043522 Anserini +test2570 Q0 15219375 22 11.963094 Anserini +test2570 Q0 5762821 23 11.906811 Anserini +test2570 Q0 9616964 24 11.906811 Anserini +test2570 Q0 20670255 25 11.883060 Anserini +test2570 Q0 3463121 26 11.848668 Anserini +test2570 Q0 13121729 27 11.823341 Anserini +test2570 Q0 13121730 28 11.823341 Anserini +test2570 Q0 402561 29 11.820852 Anserini +test2570 Q0 11394187 30 11.806537 Anserini +test2571 Q0 10702086 1 9.589707 Anserini +test2571 Q0 20956053 2 9.495646 Anserini +test2571 Q0 8412816 3 9.382656 Anserini +test2571 Q0 3722940 4 8.925052 Anserini +test2571 Q0 1421739 5 8.835193 Anserini +test2571 Q0 2600537 6 8.721637 Anserini +test2571 Q0 9191197 7 8.701846 Anserini +test2571 Q0 18606117 8 8.699562 Anserini +test2571 Q0 3525007 9 8.484179 Anserini +test2571 Q0 3233058 10 8.440521 Anserini +test2571 Q0 5977417 11 8.418210 Anserini +test2571 Q0 15750647 12 8.415489 Anserini +test2571 Q0 15053866 13 8.374515 Anserini +test2571 Q0 15333136 14 8.306182 Anserini +test2571 Q0 4806256 15 8.292917 Anserini +test2571 Q0 19478547 16 8.249584 Anserini +test2571 Q0 9112078 17 8.245899 Anserini +test2571 Q0 10111303 18 8.221788 Anserini +test2571 Q0 20366928 19 8.218204 Anserini +test2571 Q0 20297035 20 8.143427 Anserini +test2571 Q0 20252802 21 8.143427 Anserini +test2571 Q0 20252803 22 8.143427 Anserini +test2571 Q0 5977445 23 8.142949 Anserini +test2571 Q0 5976993 24 8.077578 Anserini +test2571 Q0 3810439 25 8.071137 Anserini +test2571 Q0 20304079 26 8.071137 Anserini +test2571 Q0 2600532 27 8.006671 Anserini +test2571 Q0 20268058 28 7.997938 Anserini +test2571 Q0 20094969 29 7.992435 Anserini +test2571 Q0 15566822 30 7.992435 Anserini +test2572 Q0 4165375 1 16.178459 Anserini +test2572 Q0 5735313 2 15.130903 Anserini +test2572 Q0 3993062 3 15.130816 Anserini +test2572 Q0 16010632 4 14.918489 Anserini +test2572 Q0 7533322 5 14.237324 Anserini +test2572 Q0 17917025 6 13.849289 Anserini +test2572 Q0 4165342 7 13.620479 Anserini +test2572 Q0 4382446 8 13.498493 Anserini +test2572 Q0 1597892 9 13.491499 Anserini +test2572 Q0 2251096 10 13.381212 Anserini +test2572 Q0 2073679 11 13.289227 Anserini +test2572 Q0 3893232 12 13.277555 Anserini +test2572 Q0 4165376 13 13.152893 Anserini +test2572 Q0 9486010 14 13.103238 Anserini +test2572 Q0 2148648 15 13.070809 Anserini +test2572 Q0 3993056 16 13.056789 Anserini +test2572 Q0 241013 17 13.040933 Anserini +test2572 Q0 2991677 18 13.037114 Anserini +test2572 Q0 17917017 19 13.023331 Anserini +test2572 Q0 4388091 20 12.983381 Anserini +test2572 Q0 23372 21 12.944228 Anserini +test2572 Q0 1820370 22 12.751270 Anserini +test2572 Q0 3246477 23 12.633022 Anserini +test2572 Q0 1820407 24 12.609535 Anserini +test2572 Q0 506986 25 12.585800 Anserini +test2572 Q0 7890109 26 12.568836 Anserini +test2572 Q0 4985620 27 12.558109 Anserini +test2572 Q0 297067 28 12.545932 Anserini +test2572 Q0 3219898 29 12.545457 Anserini +test2572 Q0 1452710 30 12.539948 Anserini +test2573 Q0 17215249 1 14.105041 Anserini +test2573 Q0 14587334 2 13.789978 Anserini +test2573 Q0 14053415 3 13.399481 Anserini +test2573 Q0 14587330 4 12.931726 Anserini +test2573 Q0 17314121 5 12.243505 Anserini +test2573 Q0 2721190 6 11.883775 Anserini +test2573 Q0 15469261 7 11.577592 Anserini +test2573 Q0 20160087 8 11.543039 Anserini +test2573 Q0 14053410 9 11.433531 Anserini +test2573 Q0 14587333 10 11.310658 Anserini +test2573 Q0 14053416 11 11.271058 Anserini +test2573 Q0 7879540 12 11.138215 Anserini +test2573 Q0 14053419 13 11.088861 Anserini +test2573 Q0 18863309 14 11.018499 Anserini +test2573 Q0 20160090 15 10.994331 Anserini +test2573 Q0 4980277 16 10.993210 Anserini +test2573 Q0 17293425 17 10.981333 Anserini +test2573 Q0 8587197 18 10.970645 Anserini +test2573 Q0 4811532 19 10.910748 Anserini +test2573 Q0 14053414 20 10.902760 Anserini +test2573 Q0 14053405 21 10.870724 Anserini +test2573 Q0 17215251 22 10.821592 Anserini +test2573 Q0 4373235 23 10.717131 Anserini +test2573 Q0 4373240 24 10.717131 Anserini +test2573 Q0 8587192 25 10.630448 Anserini +test2573 Q0 14587331 26 10.613890 Anserini +test2573 Q0 9936139 27 10.563708 Anserini +test2573 Q0 14053411 28 10.560011 Anserini +test2573 Q0 4980273 29 10.559861 Anserini +test2573 Q0 14587332 30 10.541917 Anserini +test2574 Q0 13356924 1 17.216864 Anserini +test2574 Q0 13356926 2 15.505110 Anserini +test2574 Q0 13356921 3 15.388755 Anserini +test2574 Q0 19378959 4 14.152342 Anserini +test2574 Q0 5806887 5 14.133092 Anserini +test2574 Q0 18715621 6 13.934017 Anserini +test2574 Q0 8878839 7 13.695943 Anserini +test2574 Q0 1740413 8 13.609677 Anserini +test2574 Q0 5806916 9 13.405229 Anserini +test2574 Q0 19378953 10 13.360035 Anserini +test2574 Q0 2127896 11 13.182737 Anserini +test2574 Q0 5806906 12 13.029894 Anserini +test2574 Q0 7766106 13 12.961268 Anserini +test2574 Q0 5806914 14 12.899245 Anserini +test2574 Q0 18610349 15 12.826530 Anserini +test2574 Q0 5806889 16 12.776800 Anserini +test2574 Q0 5689436 17 12.716146 Anserini +test2574 Q0 19149193 18 12.711232 Anserini +test2574 Q0 11025766 19 12.689592 Anserini +test2574 Q0 5501234 20 12.675017 Anserini +test2574 Q0 18663308 21 12.646383 Anserini +test2574 Q0 7511667 22 12.645157 Anserini +test2574 Q0 13356922 23 12.596573 Anserini +test2574 Q0 7489855 24 12.593644 Anserini +test2574 Q0 17685287 25 12.567033 Anserini +test2574 Q0 14848015 26 12.551282 Anserini +test2574 Q0 2864051 27 12.522994 Anserini +test2574 Q0 8986617 28 12.509569 Anserini +test2574 Q0 17169274 29 12.445237 Anserini +test2574 Q0 6445109 30 12.426714 Anserini +test2575 Q0 6232663 1 14.431664 Anserini +test2575 Q0 7131839 2 14.310923 Anserini +test2575 Q0 7131834 3 14.227089 Anserini +test2575 Q0 7131858 4 14.066617 Anserini +test2575 Q0 6232417 5 13.765489 Anserini +test2575 Q0 6232665 6 12.867666 Anserini +test2575 Q0 14438455 7 12.588048 Anserini +test2575 Q0 8905257 8 12.467175 Anserini +test2575 Q0 7450822 9 12.324983 Anserini +test2575 Q0 7450818 10 12.324983 Anserini +test2575 Q0 20436095 11 12.320795 Anserini +test2575 Q0 12566445 12 12.318070 Anserini +test2575 Q0 7924153 13 12.208570 Anserini +test2575 Q0 5898672 14 12.198183 Anserini +test2575 Q0 9462807 15 12.195625 Anserini +test2575 Q0 13650549 16 12.063972 Anserini +test2575 Q0 6577186 17 12.057369 Anserini +test2575 Q0 10770852 18 11.970042 Anserini +test2575 Q0 13795511 19 11.970042 Anserini +test2575 Q0 8905249 20 11.962714 Anserini +test2575 Q0 14714168 21 11.890442 Anserini +test2575 Q0 16502084 22 11.884508 Anserini +test2575 Q0 13531192 23 11.872025 Anserini +test2575 Q0 10770828 24 11.799472 Anserini +test2575 Q0 6160243 25 11.794938 Anserini +test2575 Q0 19160888 26 11.787333 Anserini +test2575 Q0 1005987 27 11.756180 Anserini +test2575 Q0 16502120 28 11.742166 Anserini +test2575 Q0 13650548 29 11.730294 Anserini +test2575 Q0 595494 30 11.712914 Anserini +test2576 Q0 15054232 1 11.475871 Anserini +test2576 Q0 19633618 2 11.225414 Anserini +test2576 Q0 8354876 3 11.060024 Anserini +test2576 Q0 7038270 4 10.908299 Anserini +test2576 Q0 13286127 5 10.517291 Anserini +test2576 Q0 3202628 6 10.386072 Anserini +test2576 Q0 14343688 7 10.326550 Anserini +test2576 Q0 13499005 8 10.246614 Anserini +test2576 Q0 20661462 9 9.982844 Anserini +test2576 Q0 12973851 10 9.924968 Anserini +test2576 Q0 12270932 11 9.734116 Anserini +test2576 Q0 19168159 12 9.705534 Anserini +test2576 Q0 19168166 13 9.705534 Anserini +test2576 Q0 19633615 14 9.705534 Anserini +test2576 Q0 12973848 15 9.705534 Anserini +test2576 Q0 4083378 16 9.672630 Anserini +test2576 Q0 4587801 17 9.641128 Anserini +test2576 Q0 4386460 18 9.594201 Anserini +test2576 Q0 12270934 19 9.517313 Anserini +test2576 Q0 20661461 20 9.355488 Anserini +test2576 Q0 4083379 21 9.355488 Anserini +test2576 Q0 17854451 22 9.336650 Anserini +test2576 Q0 19007273 23 9.317299 Anserini +test2576 Q0 4083380 24 9.317299 Anserini +test2576 Q0 16425639 25 9.317299 Anserini +test2576 Q0 13466578 26 9.279421 Anserini +test2576 Q0 8354869 27 9.279421 Anserini +test2576 Q0 16425640 28 9.279421 Anserini +test2576 Q0 19007280 29 9.279421 Anserini +test2576 Q0 9681745 30 9.279421 Anserini +test2577 Q0 19112223 1 21.068245 Anserini +test2577 Q0 19718049 2 20.601561 Anserini +test2577 Q0 19081041 3 20.494787 Anserini +test2577 Q0 19718050 4 19.311190 Anserini +test2577 Q0 7482234 5 18.387032 Anserini +test2577 Q0 7153099 6 18.237312 Anserini +test2577 Q0 19332841 7 17.129784 Anserini +test2577 Q0 20312419 8 17.044243 Anserini +test2577 Q0 20017576 9 16.821802 Anserini +test2577 Q0 20511993 10 16.715427 Anserini +test2577 Q0 7430244 11 16.708887 Anserini +test2577 Q0 9194207 12 16.690233 Anserini +test2577 Q0 20312420 13 16.572149 Anserini +test2577 Q0 17073467 14 16.560099 Anserini +test2577 Q0 7430242 15 16.453283 Anserini +test2577 Q0 17682704 16 16.380648 Anserini +test2577 Q0 19855876 17 16.358723 Anserini +test2577 Q0 9874747 18 16.337347 Anserini +test2577 Q0 17147447 19 16.335085 Anserini +test2577 Q0 19866840 20 16.249290 Anserini +test2577 Q0 19589599 21 16.188692 Anserini +test2577 Q0 14663726 22 16.159609 Anserini +test2577 Q0 19355115 23 16.075535 Anserini +test2577 Q0 14812265 24 16.004936 Anserini +test2577 Q0 19866839 25 15.973341 Anserini +test2577 Q0 679292 26 15.906868 Anserini +test2577 Q0 19589600 27 15.868415 Anserini +test2577 Q0 20420066 28 15.842343 Anserini +test2577 Q0 7153870 29 15.712521 Anserini +test2577 Q0 19589596 30 15.698857 Anserini +test2578 Q0 8386824 1 20.001194 Anserini +test2578 Q0 8386826 2 19.756151 Anserini +test2578 Q0 17781939 3 18.244011 Anserini +test2578 Q0 17689602 4 18.009808 Anserini +test2578 Q0 16442452 5 17.692207 Anserini +test2578 Q0 7194486 6 17.555355 Anserini +test2578 Q0 8386827 7 17.470116 Anserini +test2578 Q0 8386825 8 17.412378 Anserini +test2578 Q0 18837989 9 17.190691 Anserini +test2578 Q0 16522177 10 17.089094 Anserini +test2578 Q0 5556074 11 17.068382 Anserini +test2578 Q0 7452190 12 16.985456 Anserini +test2578 Q0 17071086 13 16.859772 Anserini +test2578 Q0 16442459 14 16.783903 Anserini +test2578 Q0 16317837 15 16.644838 Anserini +test2578 Q0 392028 16 16.552958 Anserini +test2578 Q0 6896301 17 16.529377 Anserini +test2578 Q0 16442450 18 16.514563 Anserini +test2578 Q0 5474161 19 16.437031 Anserini +test2578 Q0 20955841 20 16.414722 Anserini +test2578 Q0 16442456 21 16.375332 Anserini +test2578 Q0 17689582 22 16.333206 Anserini +test2578 Q0 17071085 23 16.302345 Anserini +test2578 Q0 18958850 24 16.210567 Anserini +test2578 Q0 18958851 25 16.210567 Anserini +test2578 Q0 5474179 26 16.109211 Anserini +test2578 Q0 19656233 27 16.030363 Anserini +test2578 Q0 17071088 28 15.991541 Anserini +test2578 Q0 16442449 29 15.959696 Anserini +test2578 Q0 9150274 30 15.865167 Anserini +test2579 Q0 5969910 1 14.979547 Anserini +test2579 Q0 1861355 2 14.052339 Anserini +test2579 Q0 5969915 3 13.692147 Anserini +test2579 Q0 398737 4 13.171675 Anserini +test2579 Q0 140183 5 13.073810 Anserini +test2579 Q0 140173 6 13.001436 Anserini +test2579 Q0 15536956 7 12.872747 Anserini +test2579 Q0 14477159 8 12.836210 Anserini +test2579 Q0 16577453 9 12.766207 Anserini +test2579 Q0 6364690 10 12.604559 Anserini +test2579 Q0 286477 11 12.294473 Anserini +test2579 Q0 385613 12 12.259402 Anserini +test2579 Q0 13502912 13 12.037856 Anserini +test2579 Q0 10961377 14 11.984789 Anserini +test2579 Q0 15704027 15 11.968914 Anserini +test2579 Q0 19015612 16 11.884089 Anserini +test2579 Q0 2931332 17 11.809605 Anserini +test2579 Q0 3709240 18 11.750294 Anserini +test2579 Q0 8323088 19 11.593223 Anserini +test2579 Q0 14314684 20 11.589263 Anserini +test2579 Q0 4104034 21 11.273693 Anserini +test2579 Q0 972136 22 11.246312 Anserini +test2579 Q0 14477160 23 11.133095 Anserini +test2579 Q0 14855018 24 11.051019 Anserini +test2579 Q0 1476070 25 11.046229 Anserini +test2579 Q0 90596 26 11.040530 Anserini +test2579 Q0 2452257 27 11.006842 Anserini +test2579 Q0 16871625 28 10.981901 Anserini +test2579 Q0 261390 29 10.949563 Anserini +test2579 Q0 11645537 30 10.949563 Anserini +test258 Q0 13427365 1 16.155197 Anserini +test258 Q0 15377082 2 13.532770 Anserini +test258 Q0 1001811 3 13.353362 Anserini +test258 Q0 296544 4 13.214277 Anserini +test258 Q0 13427367 5 13.104634 Anserini +test258 Q0 2816250 6 12.753465 Anserini +test258 Q0 2798491 7 12.698050 Anserini +test258 Q0 10012546 8 12.675015 Anserini +test258 Q0 13591314 9 12.655469 Anserini +test258 Q0 14100396 10 12.596020 Anserini +test258 Q0 11148340 11 12.582539 Anserini +test258 Q0 3440743 12 12.528671 Anserini +test258 Q0 17348447 13 12.504601 Anserini +test258 Q0 4584633 14 12.490832 Anserini +test258 Q0 11241857 15 12.485133 Anserini +test258 Q0 3885396 16 12.371476 Anserini +test258 Q0 4519218 17 12.314632 Anserini +test258 Q0 375402 18 12.269491 Anserini +test258 Q0 12120914 19 12.116149 Anserini +test258 Q0 209757 20 12.074203 Anserini +test258 Q0 9122617 21 12.055658 Anserini +test258 Q0 15051286 22 12.035917 Anserini +test258 Q0 6020728 23 12.023924 Anserini +test258 Q0 11236736 24 11.964626 Anserini +test258 Q0 18330999 25 11.960571 Anserini +test258 Q0 4782639 26 11.953629 Anserini +test258 Q0 13591319 27 11.917969 Anserini +test258 Q0 16035806 28 11.908164 Anserini +test258 Q0 8471514 29 11.857443 Anserini +test258 Q0 12251998 30 11.836972 Anserini +test2580 Q0 16886090 1 17.383993 Anserini +test2580 Q0 16886092 2 16.994972 Anserini +test2580 Q0 17841632 3 16.350742 Anserini +test2580 Q0 19600596 4 16.174570 Anserini +test2580 Q0 17844568 5 15.807211 Anserini +test2580 Q0 18040609 6 15.807211 Anserini +test2580 Q0 14843212 7 15.734087 Anserini +test2580 Q0 18046556 8 15.710793 Anserini +test2580 Q0 15053439 9 15.545792 Anserini +test2580 Q0 16875531 10 15.452066 Anserini +test2580 Q0 19600597 11 15.377410 Anserini +test2580 Q0 18539608 12 15.145006 Anserini +test2580 Q0 17849271 13 15.144236 Anserini +test2580 Q0 17996076 14 15.142088 Anserini +test2580 Q0 18539606 15 15.072677 Anserini +test2580 Q0 17861153 16 14.963099 Anserini +test2580 Q0 18223099 17 14.942781 Anserini +test2580 Q0 17846893 18 14.877608 Anserini +test2580 Q0 17885512 19 14.869996 Anserini +test2580 Q0 14843199 20 14.756826 Anserini +test2580 Q0 16848066 21 14.546812 Anserini +test2580 Q0 14843218 22 14.512801 Anserini +test2580 Q0 18449627 23 14.437519 Anserini +test2580 Q0 16972129 24 14.340067 Anserini +test2580 Q0 16972125 25 14.340067 Anserini +test2580 Q0 15053435 26 14.290277 Anserini +test2580 Q0 18111552 27 14.231524 Anserini +test2580 Q0 18354140 28 14.189399 Anserini +test2580 Q0 18248886 29 14.045904 Anserini +test2580 Q0 19278793 30 13.986267 Anserini +test2581 Q0 4661698 1 14.165489 Anserini +test2581 Q0 13344672 2 14.077452 Anserini +test2581 Q0 18141475 3 13.997858 Anserini +test2581 Q0 18160575 4 13.678353 Anserini +test2581 Q0 17082993 5 13.614950 Anserini +test2581 Q0 18160576 6 13.593300 Anserini +test2581 Q0 18266136 7 13.524273 Anserini +test2581 Q0 17082990 8 13.501446 Anserini +test2581 Q0 18141613 9 13.378510 Anserini +test2581 Q0 898534 10 13.340530 Anserini +test2581 Q0 19313780 11 13.312208 Anserini +test2581 Q0 10347208 12 13.302824 Anserini +test2581 Q0 19502713 13 13.274708 Anserini +test2581 Q0 3028731 14 13.273723 Anserini +test2581 Q0 62537 15 13.166609 Anserini +test2581 Q0 10477554 16 13.150119 Anserini +test2581 Q0 7161397 17 13.131222 Anserini +test2581 Q0 1460406 18 13.067719 Anserini +test2581 Q0 18162512 19 13.053432 Anserini +test2581 Q0 10226371 20 12.976650 Anserini +test2581 Q0 19502820 21 12.972282 Anserini +test2581 Q0 10420148 22 12.959878 Anserini +test2581 Q0 16585091 23 12.957382 Anserini +test2581 Q0 4661708 24 12.938882 Anserini +test2581 Q0 10347209 25 12.917947 Anserini +test2581 Q0 19631461 26 12.877010 Anserini +test2581 Q0 19631464 27 12.877010 Anserini +test2581 Q0 18266135 28 12.856527 Anserini +test2581 Q0 18162670 29 12.844488 Anserini +test2581 Q0 4661738 30 12.809914 Anserini +test2582 Q0 1633400 1 21.796785 Anserini +test2582 Q0 8758508 2 21.270527 Anserini +test2582 Q0 8758513 3 18.965397 Anserini +test2582 Q0 12570531 4 17.491648 Anserini +test2582 Q0 8758511 5 16.702196 Anserini +test2582 Q0 5557055 6 15.454803 Anserini +test2582 Q0 16610999 7 14.807954 Anserini +test2582 Q0 8822935 8 14.738747 Anserini +test2582 Q0 8574493 9 14.735735 Anserini +test2582 Q0 8606131 10 14.692918 Anserini +test2582 Q0 8606136 11 14.692918 Anserini +test2582 Q0 13457825 12 14.579250 Anserini +test2582 Q0 8799634 13 14.571516 Anserini +test2582 Q0 8887523 14 14.555817 Anserini +test2582 Q0 8899775 15 14.536059 Anserini +test2582 Q0 8899781 16 14.536059 Anserini +test2582 Q0 8952259 17 14.534866 Anserini +test2582 Q0 13457826 18 14.496912 Anserini +test2582 Q0 9190447 19 14.495615 Anserini +test2582 Q0 8798961 20 14.494524 Anserini +test2582 Q0 9054426 21 14.482491 Anserini +test2582 Q0 8799633 22 14.441874 Anserini +test2582 Q0 2035277 23 14.423658 Anserini +test2582 Q0 8798967 24 14.373212 Anserini +test2582 Q0 9140376 25 14.373212 Anserini +test2582 Q0 8803868 26 14.373212 Anserini +test2582 Q0 9140382 27 14.373212 Anserini +test2582 Q0 8792143 28 14.373212 Anserini +test2582 Q0 8792047 29 14.373212 Anserini +test2582 Q0 8799174 30 14.373212 Anserini +test2583 Q0 4852591 1 12.395866 Anserini +test2583 Q0 15444013 2 11.828486 Anserini +test2583 Q0 5902927 3 11.706905 Anserini +test2583 Q0 2136599 4 11.542896 Anserini +test2583 Q0 9999707 5 11.388508 Anserini +test2583 Q0 8392414 6 11.240624 Anserini +test2583 Q0 6179422 7 11.239038 Anserini +test2583 Q0 6179412 8 11.159011 Anserini +test2583 Q0 5660093 9 11.120477 Anserini +test2583 Q0 4852560 10 11.057509 Anserini +test2583 Q0 3785510 11 11.005812 Anserini +test2583 Q0 3785544 12 11.005812 Anserini +test2583 Q0 9381800 13 10.943922 Anserini +test2583 Q0 10175384 14 10.941473 Anserini +test2583 Q0 13249540 15 10.941473 Anserini +test2583 Q0 12604898 16 10.932407 Anserini +test2583 Q0 12604907 17 10.932407 Anserini +test2583 Q0 20257126 18 10.913713 Anserini +test2583 Q0 15638688 19 10.913713 Anserini +test2583 Q0 13190121 20 10.779515 Anserini +test2583 Q0 15900792 21 10.723979 Anserini +test2583 Q0 9669332 22 10.714635 Anserini +test2583 Q0 4682861 23 10.702051 Anserini +test2583 Q0 7781376 24 10.683581 Anserini +test2583 Q0 9669336 25 10.683485 Anserini +test2583 Q0 7805551 26 10.683485 Anserini +test2583 Q0 12334509 27 10.651997 Anserini +test2583 Q0 8343160 28 10.618448 Anserini +test2583 Q0 8392412 29 10.582281 Anserini +test2583 Q0 20391532 30 10.570744 Anserini +test2584 Q0 12112986 1 11.533568 Anserini +test2584 Q0 12112988 2 11.212323 Anserini +test2584 Q0 6058102 3 11.005901 Anserini +test2584 Q0 4590661 4 10.820845 Anserini +test2584 Q0 4590681 5 10.820845 Anserini +test2584 Q0 5615701 6 10.080146 Anserini +test2584 Q0 19044552 7 10.073647 Anserini +test2584 Q0 11736342 8 10.025358 Anserini +test2584 Q0 10178736 9 9.913653 Anserini +test2584 Q0 11736337 10 9.831868 Anserini +test2584 Q0 12086695 11 9.728854 Anserini +test2584 Q0 1535110 12 9.695880 Anserini +test2584 Q0 10270428 13 9.654470 Anserini +test2584 Q0 3299039 14 9.613274 Anserini +test2584 Q0 9590851 15 9.601045 Anserini +test2584 Q0 7851772 16 9.565352 Anserini +test2584 Q0 18819409 17 9.561968 Anserini +test2584 Q0 16696300 18 9.561759 Anserini +test2584 Q0 5619119 19 9.546278 Anserini +test2584 Q0 2367098 20 9.526829 Anserini +test2584 Q0 5862538 21 9.471428 Anserini +test2584 Q0 9590845 22 9.469287 Anserini +test2584 Q0 5615704 23 9.457130 Anserini +test2584 Q0 7511422 24 9.409994 Anserini +test2584 Q0 5907903 25 9.399310 Anserini +test2584 Q0 4884019 26 9.395868 Anserini +test2584 Q0 7362051 27 9.332712 Anserini +test2584 Q0 7851410 28 9.254446 Anserini +test2584 Q0 15491740 29 9.210121 Anserini +test2584 Q0 16355835 30 9.108184 Anserini +test2585 Q0 10692229 1 18.526485 Anserini +test2585 Q0 10692226 2 18.040854 Anserini +test2585 Q0 15247139 3 16.589844 Anserini +test2585 Q0 18787506 4 15.511091 Anserini +test2585 Q0 15461583 5 15.177778 Anserini +test2585 Q0 20463850 6 15.119925 Anserini +test2585 Q0 20463851 7 15.020933 Anserini +test2585 Q0 4304709 8 14.038792 Anserini +test2585 Q0 13358929 9 13.943122 Anserini +test2585 Q0 12368633 10 13.706540 Anserini +test2585 Q0 5255679 11 13.626512 Anserini +test2585 Q0 529913 12 13.525999 Anserini +test2585 Q0 8604280 13 13.406466 Anserini +test2585 Q0 13817270 14 13.218161 Anserini +test2585 Q0 16280442 15 13.108141 Anserini +test2585 Q0 8249628 16 13.071653 Anserini +test2585 Q0 11622245 17 13.057219 Anserini +test2585 Q0 16398941 18 12.857672 Anserini +test2585 Q0 16883583 19 12.749045 Anserini +test2585 Q0 15645035 20 12.709179 Anserini +test2585 Q0 12993113 21 12.679224 Anserini +test2585 Q0 18522998 22 12.646814 Anserini +test2585 Q0 5804443 23 12.625595 Anserini +test2585 Q0 17041512 24 12.596672 Anserini +test2585 Q0 17198573 25 12.586899 Anserini +test2585 Q0 15717093 26 12.585056 Anserini +test2585 Q0 3960323 27 12.577833 Anserini +test2585 Q0 6530825 28 12.553192 Anserini +test2585 Q0 18294560 29 12.521355 Anserini +test2585 Q0 12231648 30 12.500829 Anserini +test2586 Q0 257108 1 12.698755 Anserini +test2586 Q0 13225988 2 12.097813 Anserini +test2586 Q0 257127 3 11.659588 Anserini +test2586 Q0 8621375 4 11.234056 Anserini +test2586 Q0 256198 5 10.940519 Anserini +test2586 Q0 11038551 6 10.922286 Anserini +test2586 Q0 5333446 7 10.825593 Anserini +test2586 Q0 1453050 8 10.743065 Anserini +test2586 Q0 257119 9 10.730631 Anserini +test2586 Q0 12208831 10 10.689060 Anserini +test2586 Q0 8344821 11 10.513513 Anserini +test2586 Q0 10683846 12 10.502614 Anserini +test2586 Q0 3513005 13 10.501235 Anserini +test2586 Q0 14070365 14 10.489252 Anserini +test2586 Q0 4435368 15 10.480326 Anserini +test2586 Q0 10683845 16 10.451740 Anserini +test2586 Q0 8477434 17 10.450118 Anserini +test2586 Q0 11420628 18 10.343415 Anserini +test2586 Q0 15777786 19 10.338480 Anserini +test2586 Q0 6442811 20 10.295752 Anserini +test2586 Q0 257115 21 10.281429 Anserini +test2586 Q0 256197 22 10.277000 Anserini +test2586 Q0 4272557 23 10.252322 Anserini +test2586 Q0 257125 24 10.235151 Anserini +test2586 Q0 13225997 25 10.200768 Anserini +test2586 Q0 10164184 26 10.199013 Anserini +test2586 Q0 6685626 27 10.189053 Anserini +test2586 Q0 338468 28 10.185480 Anserini +test2586 Q0 384614 29 10.126228 Anserini +test2586 Q0 4802196 30 10.121826 Anserini +test2587 Q0 16693952 1 18.095469 Anserini +test2587 Q0 16693944 2 17.942369 Anserini +test2587 Q0 1506166 3 17.560247 Anserini +test2587 Q0 1506172 4 17.560247 Anserini +test2587 Q0 16733511 5 17.446939 Anserini +test2587 Q0 16733519 6 16.284073 Anserini +test2587 Q0 15321991 7 15.010687 Anserini +test2587 Q0 1506167 8 14.606658 Anserini +test2587 Q0 1506168 9 14.577995 Anserini +test2587 Q0 16693947 10 14.377023 Anserini +test2587 Q0 12257183 11 14.370408 Anserini +test2587 Q0 16693945 12 14.080276 Anserini +test2587 Q0 16693946 13 14.029469 Anserini +test2587 Q0 15321981 14 13.655324 Anserini +test2587 Q0 1506165 15 13.518333 Anserini +test2587 Q0 12257181 16 13.370907 Anserini +test2587 Q0 10102402 17 12.757637 Anserini +test2587 Q0 15321982 18 12.592258 Anserini +test2587 Q0 1506171 19 12.567702 Anserini +test2587 Q0 16733518 20 12.502612 Anserini +test2587 Q0 16693951 21 12.337035 Anserini +test2587 Q0 16693950 22 12.244288 Anserini +test2587 Q0 11830719 23 12.241600 Anserini +test2587 Q0 16693948 24 12.162628 Anserini +test2587 Q0 16693949 25 11.802616 Anserini +test2587 Q0 15255831 26 11.743514 Anserini +test2587 Q0 16697937 27 11.704891 Anserini +test2587 Q0 16733514 28 11.674509 Anserini +test2587 Q0 18164931 29 11.603031 Anserini +test2587 Q0 332871 30 11.526417 Anserini +test2588 Q0 17711080 1 13.067264 Anserini +test2588 Q0 3563918 2 12.961493 Anserini +test2588 Q0 11502908 3 12.927073 Anserini +test2588 Q0 11789216 4 12.824361 Anserini +test2588 Q0 799265 5 12.764048 Anserini +test2588 Q0 2828084 6 12.756650 Anserini +test2588 Q0 8289910 7 12.705147 Anserini +test2588 Q0 11906992 8 12.518856 Anserini +test2588 Q0 7884980 9 12.254147 Anserini +test2588 Q0 5314740 10 12.147747 Anserini +test2588 Q0 5392753 11 12.116289 Anserini +test2588 Q0 1931294 12 11.966824 Anserini +test2588 Q0 17423326 13 11.938490 Anserini +test2588 Q0 7786378 14 11.907425 Anserini +test2588 Q0 796568 15 11.816582 Anserini +test2588 Q0 11851867 16 11.780563 Anserini +test2588 Q0 1974718 17 11.766478 Anserini +test2588 Q0 7786355 18 11.739105 Anserini +test2588 Q0 619059 19 11.723334 Anserini +test2588 Q0 972127 20 11.712565 Anserini +test2588 Q0 10039816 21 11.666886 Anserini +test2588 Q0 187352 22 11.627422 Anserini +test2588 Q0 677929 23 11.626465 Anserini +test2588 Q0 4915897 24 11.621507 Anserini +test2588 Q0 7275775 25 11.574599 Anserini +test2588 Q0 7786391 26 11.573862 Anserini +test2588 Q0 10920432 27 11.570895 Anserini +test2588 Q0 6800761 28 11.524475 Anserini +test2588 Q0 7779195 29 11.521858 Anserini +test2588 Q0 11851868 30 11.494164 Anserini +test2589 Q0 18889790 1 14.858880 Anserini +test2589 Q0 18889794 2 12.506913 Anserini +test2589 Q0 18889789 3 12.263303 Anserini +test2589 Q0 2153043 4 10.988748 Anserini +test2589 Q0 7552627 5 10.195076 Anserini +test2589 Q0 2566079 6 10.018219 Anserini +test2589 Q0 17747337 7 9.986917 Anserini +test2589 Q0 7552621 8 9.974463 Anserini +test2589 Q0 14358721 9 9.974463 Anserini +test2589 Q0 15975306 10 9.704250 Anserini +test2589 Q0 2242140 11 9.695490 Anserini +test2589 Q0 9534628 12 9.663803 Anserini +test2589 Q0 17573655 13 9.618306 Anserini +test2589 Q0 6298398 14 9.614874 Anserini +test2589 Q0 18889793 15 9.551070 Anserini +test2589 Q0 6298394 16 9.262115 Anserini +test2589 Q0 1907498 17 9.233433 Anserini +test2589 Q0 17468497 18 9.217291 Anserini +test2589 Q0 9818861 19 9.198485 Anserini +test2589 Q0 15975307 20 9.193832 Anserini +test2589 Q0 8283540 21 9.170989 Anserini +test2589 Q0 17957300 22 9.129162 Anserini +test2589 Q0 17957299 23 9.129162 Anserini +test2589 Q0 14016016 24 9.084599 Anserini +test2589 Q0 2153044 25 9.084599 Anserini +test2589 Q0 18020989 26 9.041097 Anserini +test2589 Q0 2153041 27 9.034050 Anserini +test2589 Q0 2566074 28 9.019415 Anserini +test2589 Q0 16762475 29 9.019415 Anserini +test2589 Q0 20419320 30 8.994210 Anserini +test259 Q0 1872896 1 24.543398 Anserini +test259 Q0 1872861 2 23.511795 Anserini +test259 Q0 3135880 3 22.038746 Anserini +test259 Q0 1959624 4 21.591702 Anserini +test259 Q0 3135894 5 21.508718 Anserini +test259 Q0 1959623 6 21.298468 Anserini +test259 Q0 6244695 7 21.259838 Anserini +test259 Q0 1872891 8 20.996174 Anserini +test259 Q0 17532929 9 20.969364 Anserini +test259 Q0 7193960 10 20.832474 Anserini +test259 Q0 3135881 11 20.823830 Anserini +test259 Q0 19190264 12 20.676098 Anserini +test259 Q0 11211127 13 20.676098 Anserini +test259 Q0 10988414 14 20.657906 Anserini +test259 Q0 17532937 15 20.536585 Anserini +test259 Q0 1872874 16 20.516350 Anserini +test259 Q0 7327697 17 20.505812 Anserini +test259 Q0 19190258 18 20.482437 Anserini +test259 Q0 2613109 19 20.332685 Anserini +test259 Q0 17532935 20 20.227583 Anserini +test259 Q0 7843870 21 20.055990 Anserini +test259 Q0 10555483 22 20.025843 Anserini +test259 Q0 1872895 23 19.880306 Anserini +test259 Q0 7327706 24 19.862072 Anserini +test259 Q0 20962640 25 19.724546 Anserini +test259 Q0 11211138 26 19.649584 Anserini +test259 Q0 19190261 27 19.621174 Anserini +test259 Q0 20643105 28 19.521566 Anserini +test259 Q0 20643107 29 19.521566 Anserini +test259 Q0 1872862 30 19.521566 Anserini +test2590 Q0 61280 1 12.063720 Anserini +test2590 Q0 2055947 2 11.603518 Anserini +test2590 Q0 2499195 3 11.119049 Anserini +test2590 Q0 10053401 4 11.000880 Anserini +test2590 Q0 8100595 5 10.167484 Anserini +test2590 Q0 14770418 6 9.913364 Anserini +test2590 Q0 5049866 7 9.556484 Anserini +test2590 Q0 17403531 8 9.531960 Anserini +test2590 Q0 5049861 9 9.522131 Anserini +test2590 Q0 8100596 10 9.470859 Anserini +test2590 Q0 18123931 11 9.444082 Anserini +test2590 Q0 18124025 12 9.444082 Anserini +test2590 Q0 1742314 13 9.422578 Anserini +test2590 Q0 2906624 14 9.361889 Anserini +test2590 Q0 9186095 15 9.357866 Anserini +test2590 Q0 5049862 16 9.337044 Anserini +test2590 Q0 5049864 17 9.320312 Anserini +test2590 Q0 14802994 18 9.273264 Anserini +test2590 Q0 19849776 19 9.273264 Anserini +test2590 Q0 5282216 20 9.107107 Anserini +test2590 Q0 4355607 21 8.887266 Anserini +test2590 Q0 16273694 22 8.887266 Anserini +test2590 Q0 6495833 23 8.830231 Anserini +test2590 Q0 2422022 24 8.822123 Anserini +test2590 Q0 10053412 25 8.822123 Anserini +test2590 Q0 18319842 26 8.822123 Anserini +test2590 Q0 13352239 27 8.818776 Anserini +test2590 Q0 13352237 28 8.773779 Anserini +test2590 Q0 14970060 29 8.768599 Anserini +test2590 Q0 5049865 30 8.743384 Anserini +test2591 Q0 10115653 1 14.570541 Anserini +test2591 Q0 10115656 2 14.570541 Anserini +test2591 Q0 16332997 3 13.600565 Anserini +test2591 Q0 10089723 4 13.512950 Anserini +test2591 Q0 9067111 5 13.439138 Anserini +test2591 Q0 12725509 6 13.296042 Anserini +test2591 Q0 20603029 7 13.256234 Anserini +test2591 Q0 10089715 8 13.224389 Anserini +test2591 Q0 6225193 9 13.223837 Anserini +test2591 Q0 14469864 10 13.134869 Anserini +test2591 Q0 6096079 11 13.091808 Anserini +test2591 Q0 12324128 12 13.079545 Anserini +test2591 Q0 10029125 13 13.074145 Anserini +test2591 Q0 17412071 14 13.054938 Anserini +test2591 Q0 12385774 15 13.048424 Anserini +test2591 Q0 15037090 16 12.990750 Anserini +test2591 Q0 19227570 17 12.845505 Anserini +test2591 Q0 9883167 18 12.763844 Anserini +test2591 Q0 13727817 19 12.731848 Anserini +test2591 Q0 8203002 20 12.712110 Anserini +test2591 Q0 17964047 21 12.666964 Anserini +test2591 Q0 2967942 22 12.534002 Anserini +test2591 Q0 8244675 23 12.531655 Anserini +test2591 Q0 19182575 24 12.506927 Anserini +test2591 Q0 9067110 25 12.500458 Anserini +test2591 Q0 15035525 26 12.489714 Anserini +test2591 Q0 6157398 27 12.454086 Anserini +test2591 Q0 10669409 28 12.454086 Anserini +test2591 Q0 9883166 29 12.452044 Anserini +test2591 Q0 6157415 30 12.439848 Anserini +test2592 Q0 400766 1 14.267088 Anserini +test2592 Q0 4384911 2 13.554087 Anserini +test2592 Q0 18777636 3 13.138757 Anserini +test2592 Q0 11681585 4 13.133139 Anserini +test2592 Q0 11681587 5 13.133139 Anserini +test2592 Q0 4384910 6 12.961203 Anserini +test2592 Q0 400710 7 12.780912 Anserini +test2592 Q0 400712 8 12.762357 Anserini +test2592 Q0 7419226 9 12.603926 Anserini +test2592 Q0 5724476 10 12.595187 Anserini +test2592 Q0 9117355 11 12.400551 Anserini +test2592 Q0 6971262 12 12.241527 Anserini +test2592 Q0 6971265 13 12.241527 Anserini +test2592 Q0 400732 14 12.198632 Anserini +test2592 Q0 2580423 15 12.025985 Anserini +test2592 Q0 12849191 16 12.024906 Anserini +test2592 Q0 5780014 17 11.954466 Anserini +test2592 Q0 7419225 18 11.942842 Anserini +test2592 Q0 7419229 19 11.914392 Anserini +test2592 Q0 20902500 20 11.851230 Anserini +test2592 Q0 7513983 21 11.814428 Anserini +test2592 Q0 18227103 22 11.814428 Anserini +test2592 Q0 2642622 23 11.808662 Anserini +test2592 Q0 4112974 24 11.754911 Anserini +test2592 Q0 18227084 25 11.719025 Anserini +test2592 Q0 4112939 26 11.662236 Anserini +test2592 Q0 4112941 27 11.628332 Anserini +test2592 Q0 19288322 28 11.627377 Anserini +test2592 Q0 12370430 29 11.600992 Anserini +test2592 Q0 9063628 30 11.594624 Anserini +test2593 Q0 20594504 1 14.270170 Anserini +test2593 Q0 10441890 2 12.670486 Anserini +test2593 Q0 18412868 3 12.071631 Anserini +test2593 Q0 9765429 4 11.765260 Anserini +test2593 Q0 14739176 5 11.719926 Anserini +test2593 Q0 7161621 6 11.383327 Anserini +test2593 Q0 17857347 7 11.263421 Anserini +test2593 Q0 17857352 8 11.113326 Anserini +test2593 Q0 7373854 9 11.113326 Anserini +test2593 Q0 7998275 10 11.113326 Anserini +test2593 Q0 20520727 11 11.084600 Anserini +test2593 Q0 7041374 12 10.868910 Anserini +test2593 Q0 17784484 13 10.823241 Anserini +test2593 Q0 16069163 14 10.704719 Anserini +test2593 Q0 12000848 15 10.699283 Anserini +test2593 Q0 18141311 16 10.587062 Anserini +test2593 Q0 5136983 17 10.209208 Anserini +test2593 Q0 7524396 18 10.138180 Anserini +test2593 Q0 5294963 19 10.111988 Anserini +test2593 Q0 961821 20 10.111988 Anserini +test2593 Q0 2515842 21 10.016649 Anserini +test2593 Q0 11320654 22 10.016649 Anserini +test2593 Q0 11320655 23 10.016649 Anserini +test2593 Q0 4777379 24 9.993605 Anserini +test2593 Q0 5163543 25 9.990569 Anserini +test2593 Q0 3328398 26 9.985490 Anserini +test2593 Q0 5120110 27 9.954254 Anserini +test2593 Q0 2979576 28 9.887329 Anserini +test2593 Q0 14109934 29 9.842558 Anserini +test2593 Q0 17559113 30 9.827958 Anserini +test2594 Q0 20422874 1 16.925219 Anserini +test2594 Q0 20085464 2 16.463079 Anserini +test2594 Q0 20945961 3 15.396614 Anserini +test2594 Q0 20945963 4 15.294469 Anserini +test2594 Q0 19304789 5 15.073069 Anserini +test2594 Q0 20801120 6 14.790995 Anserini +test2594 Q0 13189489 7 14.781833 Anserini +test2594 Q0 20801124 8 14.732163 Anserini +test2594 Q0 2398465 9 14.693439 Anserini +test2594 Q0 3957654 10 14.638874 Anserini +test2594 Q0 19825621 11 14.632192 Anserini +test2594 Q0 19884547 12 14.608241 Anserini +test2594 Q0 14010129 13 14.587296 Anserini +test2594 Q0 11918955 14 14.567041 Anserini +test2594 Q0 20801122 15 14.497764 Anserini +test2594 Q0 20986997 16 14.422394 Anserini +test2594 Q0 14960034 17 14.388692 Anserini +test2594 Q0 6441887 18 14.319161 Anserini +test2594 Q0 8780642 19 14.316971 Anserini +test2594 Q0 5798299 20 14.307730 Anserini +test2594 Q0 20456919 21 14.242641 Anserini +test2594 Q0 3342360 22 14.217859 Anserini +test2594 Q0 20668648 23 14.214898 Anserini +test2594 Q0 20668649 24 14.214898 Anserini +test2594 Q0 18870317 25 14.195439 Anserini +test2594 Q0 18558810 26 14.140902 Anserini +test2594 Q0 13189486 27 14.073782 Anserini +test2594 Q0 2398463 28 14.064913 Anserini +test2594 Q0 19304791 29 14.064913 Anserini +test2594 Q0 19768768 30 14.063643 Anserini +test2595 Q0 10428105 1 15.627354 Anserini +test2595 Q0 19179952 2 14.275726 Anserini +test2595 Q0 16088372 3 13.962488 Anserini +test2595 Q0 11862179 4 13.876456 Anserini +test2595 Q0 17740821 5 13.827098 Anserini +test2595 Q0 14013328 6 13.758349 Anserini +test2595 Q0 13226093 7 13.592615 Anserini +test2595 Q0 10428103 8 13.450280 Anserini +test2595 Q0 11307485 9 13.297275 Anserini +test2595 Q0 14569093 10 13.209478 Anserini +test2595 Q0 20713 11 13.114883 Anserini +test2595 Q0 16088163 12 13.108898 Anserini +test2595 Q0 16088165 13 13.108898 Anserini +test2595 Q0 10325970 14 13.043645 Anserini +test2595 Q0 11441011 15 13.043645 Anserini +test2595 Q0 17740820 16 13.018601 Anserini +test2595 Q0 10417537 17 12.943584 Anserini +test2595 Q0 2066539 18 12.887959 Anserini +test2595 Q0 7867686 19 12.768167 Anserini +test2595 Q0 11866424 20 12.768167 Anserini +test2595 Q0 15634932 21 12.760577 Anserini +test2595 Q0 11072767 22 12.755314 Anserini +test2595 Q0 14569088 23 12.737468 Anserini +test2595 Q0 20804 24 12.719704 Anserini +test2595 Q0 10981068 25 12.695542 Anserini +test2595 Q0 4189791 26 12.665577 Anserini +test2595 Q0 7086986 27 12.658209 Anserini +test2595 Q0 9251806 28 12.594596 Anserini +test2595 Q0 6169204 29 12.575952 Anserini +test2595 Q0 7086989 30 12.575952 Anserini +test2596 Q0 14293917 1 23.341408 Anserini +test2596 Q0 14293922 2 23.213205 Anserini +test2596 Q0 8020542 3 21.391293 Anserini +test2596 Q0 2342604 4 20.678114 Anserini +test2596 Q0 8020544 5 19.744427 Anserini +test2596 Q0 20997812 6 19.744427 Anserini +test2596 Q0 20997813 7 19.644192 Anserini +test2596 Q0 20997814 8 19.644192 Anserini +test2596 Q0 2764604 9 19.538992 Anserini +test2596 Q0 12852079 10 18.691988 Anserini +test2596 Q0 9731020 11 18.599403 Anserini +test2596 Q0 14293920 12 18.565701 Anserini +test2596 Q0 14293919 13 18.463575 Anserini +test2596 Q0 2808457 14 18.426147 Anserini +test2596 Q0 1425999 15 17.899645 Anserini +test2596 Q0 9077245 16 17.882954 Anserini +test2596 Q0 9199632 17 17.767199 Anserini +test2596 Q0 15996616 18 17.737894 Anserini +test2596 Q0 6643803 19 17.670759 Anserini +test2596 Q0 14530706 20 17.617891 Anserini +test2596 Q0 16629886 21 17.222557 Anserini +test2596 Q0 8457648 22 17.175819 Anserini +test2596 Q0 17204102 23 17.035770 Anserini +test2596 Q0 9077248 24 16.934570 Anserini +test2596 Q0 17491864 25 16.897718 Anserini +test2596 Q0 211366 26 16.869244 Anserini +test2596 Q0 17446436 27 16.839487 Anserini +test2596 Q0 5035027 28 16.790882 Anserini +test2596 Q0 17083934 29 16.549181 Anserini +test2596 Q0 4856114 30 16.544121 Anserini +test2597 Q0 12040188 1 21.971844 Anserini +test2597 Q0 14871635 2 21.509624 Anserini +test2597 Q0 14871636 3 21.509624 Anserini +test2597 Q0 1159906 4 21.364155 Anserini +test2597 Q0 7254893 5 21.287651 Anserini +test2597 Q0 1368502 6 21.174633 Anserini +test2597 Q0 12004262 7 20.656651 Anserini +test2597 Q0 12004260 8 20.616756 Anserini +test2597 Q0 8451830 9 20.555792 Anserini +test2597 Q0 15084942 10 20.549002 Anserini +test2597 Q0 17103730 11 20.407824 Anserini +test2597 Q0 1368504 12 20.357485 Anserini +test2597 Q0 1159910 13 20.342632 Anserini +test2597 Q0 12040190 14 20.276619 Anserini +test2597 Q0 1159911 15 20.038889 Anserini +test2597 Q0 17650663 16 19.958239 Anserini +test2597 Q0 7104038 17 19.908524 Anserini +test2597 Q0 7104035 18 19.908524 Anserini +test2597 Q0 1159909 19 19.691713 Anserini +test2597 Q0 1279736 20 19.536137 Anserini +test2597 Q0 2325628 21 18.908018 Anserini +test2597 Q0 2015525 22 18.832449 Anserini +test2597 Q0 2015564 23 18.832449 Anserini +test2597 Q0 17655719 24 18.785807 Anserini +test2597 Q0 6489586 25 18.784109 Anserini +test2597 Q0 1064871 26 18.691513 Anserini +test2597 Q0 14990440 27 18.662357 Anserini +test2597 Q0 12040189 28 18.640554 Anserini +test2597 Q0 11448602 29 18.553162 Anserini +test2597 Q0 17103731 30 18.468132 Anserini +test2598 Q0 15429796 1 10.310579 Anserini +test2598 Q0 595820 2 9.491125 Anserini +test2598 Q0 19978880 3 9.304548 Anserini +test2598 Q0 227418 4 9.156340 Anserini +test2598 Q0 5361826 5 9.081890 Anserini +test2598 Q0 5194990 6 9.049201 Anserini +test2598 Q0 307797 7 8.982861 Anserini +test2598 Q0 886392 8 8.914799 Anserini +test2598 Q0 404853 9 8.876884 Anserini +test2598 Q0 14097326 10 8.871305 Anserini +test2598 Q0 426358 11 8.818345 Anserini +test2598 Q0 15286888 12 8.809038 Anserini +test2598 Q0 3224633 13 8.729060 Anserini +test2598 Q0 12107282 14 8.616061 Anserini +test2598 Q0 8591881 15 8.572008 Anserini +test2598 Q0 2232095 16 8.519946 Anserini +test2598 Q0 2692278 17 8.501533 Anserini +test2598 Q0 9808256 18 8.473279 Anserini +test2598 Q0 5726258 19 8.433949 Anserini +test2598 Q0 458536 20 8.401905 Anserini +test2598 Q0 20034086 21 8.389729 Anserini +test2598 Q0 8618315 22 8.378710 Anserini +test2598 Q0 8618312 23 8.378710 Anserini +test2598 Q0 10388266 24 8.378126 Anserini +test2598 Q0 3654177 25 8.375323 Anserini +test2598 Q0 4980770 26 8.362413 Anserini +test2598 Q0 2325017 27 8.332884 Anserini +test2598 Q0 12646118 28 8.309534 Anserini +test2598 Q0 371222 29 8.308480 Anserini +test2598 Q0 4980752 30 8.276248 Anserini +test2599 Q0 11876420 1 14.314913 Anserini +test2599 Q0 2548699 2 13.182271 Anserini +test2599 Q0 2548712 3 13.096798 Anserini +test2599 Q0 7738583 4 12.378070 Anserini +test2599 Q0 1471677 5 12.218545 Anserini +test2599 Q0 2548700 6 12.195623 Anserini +test2599 Q0 10616661 7 11.847811 Anserini +test2599 Q0 320538 8 11.708530 Anserini +test2599 Q0 6128599 9 11.665475 Anserini +test2599 Q0 16842044 10 11.664631 Anserini +test2599 Q0 4032556 11 11.633585 Anserini +test2599 Q0 6128607 12 11.621806 Anserini +test2599 Q0 6647966 13 11.487662 Anserini +test2599 Q0 5919387 14 11.333854 Anserini +test2599 Q0 4548907 15 11.305654 Anserini +test2599 Q0 11182673 16 11.284117 Anserini +test2599 Q0 6128596 17 11.282896 Anserini +test2599 Q0 11876418 18 11.266651 Anserini +test2599 Q0 16332713 19 11.229012 Anserini +test2599 Q0 14423029 20 11.086166 Anserini +test2599 Q0 6128602 21 11.052185 Anserini +test2599 Q0 19098775 22 11.001090 Anserini +test2599 Q0 3192710 23 10.894937 Anserini +test2599 Q0 5244198 24 10.891843 Anserini +test2599 Q0 9721917 25 10.854075 Anserini +test2599 Q0 6128601 26 10.841521 Anserini +test2599 Q0 17792356 27 10.811043 Anserini +test2599 Q0 4548901 28 10.787502 Anserini +test2599 Q0 10616664 29 10.721779 Anserini +test2599 Q0 6128606 30 10.721779 Anserini +test26 Q0 4923638 1 10.733644 Anserini +test26 Q0 5291774 2 10.302700 Anserini +test26 Q0 4960999 3 9.914675 Anserini +test26 Q0 15938335 4 9.886312 Anserini +test26 Q0 2202754 5 9.836388 Anserini +test26 Q0 1315750 6 9.766282 Anserini +test26 Q0 20186093 7 9.756926 Anserini +test26 Q0 10994275 8 9.327314 Anserini +test26 Q0 9064921 9 9.315302 Anserini +test26 Q0 6746703 10 9.269224 Anserini +test26 Q0 8549890 11 9.188900 Anserini +test26 Q0 3168309 12 9.089151 Anserini +test26 Q0 12364819 13 9.086313 Anserini +test26 Q0 14164223 14 8.942575 Anserini +test26 Q0 3512073 15 8.936132 Anserini +test26 Q0 19766313 16 8.936132 Anserini +test26 Q0 194519 17 8.893204 Anserini +test26 Q0 194489 18 8.821627 Anserini +test26 Q0 13828845 19 8.819158 Anserini +test26 Q0 10782833 20 8.784931 Anserini +test26 Q0 9537447 21 8.697428 Anserini +test26 Q0 5848242 22 8.682625 Anserini +test26 Q0 10481190 23 8.678858 Anserini +test26 Q0 20824119 24 8.665868 Anserini +test26 Q0 10152848 25 8.611225 Anserini +test26 Q0 6727162 26 8.599713 Anserini +test26 Q0 6387384 27 8.599713 Anserini +test26 Q0 4226702 28 8.599713 Anserini +test26 Q0 15676988 29 8.556574 Anserini +test26 Q0 14700718 30 8.550718 Anserini +test260 Q0 15035863 1 11.314132 Anserini +test260 Q0 8908834 2 10.686726 Anserini +test260 Q0 643140 3 10.625873 Anserini +test260 Q0 13480141 4 10.250404 Anserini +test260 Q0 8908836 5 9.876833 Anserini +test260 Q0 13563640 6 9.620659 Anserini +test260 Q0 15035866 7 9.599392 Anserini +test260 Q0 6936747 8 9.554496 Anserini +test260 Q0 20048568 9 9.509831 Anserini +test260 Q0 16420004 10 9.423434 Anserini +test260 Q0 4459677 11 9.368320 Anserini +test260 Q0 9216611 12 9.305120 Anserini +test260 Q0 12765531 13 9.293680 Anserini +test260 Q0 8938421 14 9.260605 Anserini +test260 Q0 5148656 15 9.121260 Anserini +test260 Q0 7501816 16 9.036384 Anserini +test260 Q0 19269819 17 9.006421 Anserini +test260 Q0 19269820 18 9.006421 Anserini +test260 Q0 6936742 19 9.006421 Anserini +test260 Q0 7377521 20 8.966015 Anserini +test260 Q0 9755410 21 8.958161 Anserini +test260 Q0 5148654 22 8.946227 Anserini +test260 Q0 19937662 23 8.864790 Anserini +test260 Q0 14447569 24 8.767412 Anserini +test260 Q0 19268804 25 8.732144 Anserini +test260 Q0 15105105 26 8.728243 Anserini +test260 Q0 6936752 27 8.693950 Anserini +test260 Q0 6936737 28 8.693950 Anserini +test260 Q0 19502533 29 8.677148 Anserini +test260 Q0 18659020 30 8.654482 Anserini +test2600 Q0 20249682 1 20.502407 Anserini +test2600 Q0 19651512 2 19.728104 Anserini +test2600 Q0 7171155 3 19.693705 Anserini +test2600 Q0 19331039 4 19.189514 Anserini +test2600 Q0 18354690 5 18.892788 Anserini +test2600 Q0 9564360 6 18.796570 Anserini +test2600 Q0 18571264 7 18.724213 Anserini +test2600 Q0 20249683 8 18.619959 Anserini +test2600 Q0 15140952 9 18.525400 Anserini +test2600 Q0 19651516 10 18.465425 Anserini +test2600 Q0 7170494 11 18.272409 Anserini +test2600 Q0 16720295 12 18.270870 Anserini +test2600 Q0 15140955 13 18.000519 Anserini +test2600 Q0 18835130 14 17.933649 Anserini +test2600 Q0 19752914 15 17.915997 Anserini +test2600 Q0 19752913 16 17.915997 Anserini +test2600 Q0 18582040 17 17.881340 Anserini +test2600 Q0 19331036 18 17.866119 Anserini +test2600 Q0 19651515 19 17.826736 Anserini +test2600 Q0 18574816 20 17.549141 Anserini +test2600 Q0 20942423 21 17.522577 Anserini +test2600 Q0 18574813 22 17.460493 Anserini +test2600 Q0 14731784 23 17.435785 Anserini +test2600 Q0 15071030 24 17.435480 Anserini +test2600 Q0 20942422 25 17.432888 Anserini +test2600 Q0 20177240 26 17.430275 Anserini +test2600 Q0 20698831 27 17.428030 Anserini +test2600 Q0 7171167 28 17.396141 Anserini +test2600 Q0 7171168 29 17.396141 Anserini +test2600 Q0 20519443 30 17.341387 Anserini +test2601 Q0 2873146 1 12.131372 Anserini +test2601 Q0 218129 2 11.983112 Anserini +test2601 Q0 218141 3 11.356422 Anserini +test2601 Q0 552792 4 11.327963 Anserini +test2601 Q0 15449459 5 11.314480 Anserini +test2601 Q0 218087 6 11.005469 Anserini +test2601 Q0 218142 7 10.899369 Anserini +test2601 Q0 552810 8 10.694286 Anserini +test2601 Q0 163073 9 10.685052 Anserini +test2601 Q0 12568463 10 10.681563 Anserini +test2601 Q0 3436332 11 10.611295 Anserini +test2601 Q0 10046901 12 10.590112 Anserini +test2601 Q0 5632368 13 10.551008 Anserini +test2601 Q0 218127 14 10.310334 Anserini +test2601 Q0 10016183 15 10.206367 Anserini +test2601 Q0 14525100 16 10.137740 Anserini +test2601 Q0 14247598 17 10.113243 Anserini +test2601 Q0 163077 18 10.070187 Anserini +test2601 Q0 14525101 19 10.006895 Anserini +test2601 Q0 552797 20 9.853840 Anserini +test2601 Q0 6256859 21 9.853840 Anserini +test2601 Q0 3959497 22 9.819421 Anserini +test2601 Q0 20981255 23 9.815530 Anserini +test2601 Q0 10046899 24 9.809086 Anserini +test2601 Q0 552796 25 9.802860 Anserini +test2601 Q0 3138174 26 9.703850 Anserini +test2601 Q0 14247596 27 9.629251 Anserini +test2601 Q0 9423588 28 9.617446 Anserini +test2601 Q0 6598750 29 9.520244 Anserini +test2601 Q0 10311597 30 9.506732 Anserini +test2602 Q0 3540811 1 22.703466 Anserini +test2602 Q0 10411924 2 21.733622 Anserini +test2602 Q0 658622 3 21.068584 Anserini +test2602 Q0 8566956 4 20.967829 Anserini +test2602 Q0 3540812 5 20.915092 Anserini +test2602 Q0 3540808 6 20.807549 Anserini +test2602 Q0 3540807 7 20.698746 Anserini +test2602 Q0 3540813 8 20.532787 Anserini +test2602 Q0 10411940 9 20.473829 Anserini +test2602 Q0 14424671 10 20.396572 Anserini +test2602 Q0 3070631 11 20.363770 Anserini +test2602 Q0 14424661 12 20.279089 Anserini +test2602 Q0 3718396 13 20.165609 Anserini +test2602 Q0 3718249 14 19.984144 Anserini +test2602 Q0 8566948 15 19.918928 Anserini +test2602 Q0 14424668 16 19.644447 Anserini +test2602 Q0 14424670 17 19.616259 Anserini +test2602 Q0 12511082 18 19.492016 Anserini +test2602 Q0 6921897 19 19.390551 Anserini +test2602 Q0 13958745 20 19.019018 Anserini +test2602 Q0 3070628 21 19.009850 Anserini +test2602 Q0 10411927 22 19.005896 Anserini +test2602 Q0 2971461 23 18.915762 Anserini +test2602 Q0 8566947 24 18.852694 Anserini +test2602 Q0 13958747 25 18.850193 Anserini +test2602 Q0 2969321 26 18.803047 Anserini +test2602 Q0 12141440 27 18.498720 Anserini +test2602 Q0 12141435 28 18.497206 Anserini +test2602 Q0 658615 29 18.367620 Anserini +test2602 Q0 3718248 30 18.327360 Anserini +test2603 Q0 9496062 1 10.332245 Anserini +test2603 Q0 18323538 2 10.083974 Anserini +test2603 Q0 15577883 3 9.943980 Anserini +test2603 Q0 16234384 4 9.754437 Anserini +test2603 Q0 19569372 5 9.655022 Anserini +test2603 Q0 19569368 6 9.652755 Anserini +test2603 Q0 19569370 7 9.652755 Anserini +test2603 Q0 16268486 8 9.572575 Anserini +test2603 Q0 12590120 9 9.563866 Anserini +test2603 Q0 16899258 10 9.543165 Anserini +test2603 Q0 2478963 11 9.380592 Anserini +test2603 Q0 17991712 12 9.306498 Anserini +test2603 Q0 5353075 13 9.277530 Anserini +test2603 Q0 7239612 14 9.084328 Anserini +test2603 Q0 18320186 15 9.070185 Anserini +test2603 Q0 14609102 16 8.984870 Anserini +test2603 Q0 1848904 17 8.971407 Anserini +test2603 Q0 5714355 18 8.970192 Anserini +test2603 Q0 2916045 19 8.956146 Anserini +test2603 Q0 15622082 20 8.936403 Anserini +test2603 Q0 1870381 21 8.899353 Anserini +test2603 Q0 20472499 22 8.886003 Anserini +test2603 Q0 7479664 23 8.839375 Anserini +test2603 Q0 16566749 24 8.797413 Anserini +test2603 Q0 5714343 25 8.789953 Anserini +test2603 Q0 8669756 26 8.766737 Anserini +test2603 Q0 13082319 27 8.742305 Anserini +test2603 Q0 11864725 28 8.739964 Anserini +test2603 Q0 10245099 29 8.727052 Anserini +test2603 Q0 5238682 30 8.704224 Anserini +test2604 Q0 18103120 1 13.134744 Anserini +test2604 Q0 4649771 2 12.830249 Anserini +test2604 Q0 8620328 3 12.732833 Anserini +test2604 Q0 4090829 4 12.680645 Anserini +test2604 Q0 3515881 5 12.559616 Anserini +test2604 Q0 806982 6 12.484033 Anserini +test2604 Q0 5515784 7 12.463655 Anserini +test2604 Q0 12852657 8 12.433395 Anserini +test2604 Q0 3515866 9 12.371490 Anserini +test2604 Q0 5094645 10 12.209782 Anserini +test2604 Q0 5239473 11 12.194363 Anserini +test2604 Q0 18103117 12 12.157609 Anserini +test2604 Q0 5352526 13 12.127796 Anserini +test2604 Q0 5239478 14 12.123877 Anserini +test2604 Q0 2952055 15 12.113603 Anserini +test2604 Q0 10961658 16 12.063665 Anserini +test2604 Q0 5515808 17 12.025356 Anserini +test2604 Q0 3515884 18 12.020729 Anserini +test2604 Q0 10961659 19 12.005161 Anserini +test2604 Q0 3787387 20 12.000620 Anserini +test2604 Q0 3515858 21 12.000471 Anserini +test2604 Q0 3787382 22 12.000471 Anserini +test2604 Q0 6531577 23 11.975198 Anserini +test2604 Q0 6531576 24 11.975198 Anserini +test2604 Q0 5422914 25 11.950741 Anserini +test2604 Q0 5692679 26 11.946211 Anserini +test2604 Q0 3787389 27 11.907125 Anserini +test2604 Q0 8620327 28 11.892290 Anserini +test2604 Q0 2615541 29 11.873892 Anserini +test2604 Q0 2615555 30 11.792849 Anserini +test2605 Q0 17546762 1 12.779982 Anserini +test2605 Q0 17546763 2 12.164186 Anserini +test2605 Q0 6554540 3 11.294211 Anserini +test2605 Q0 11493207 4 11.168183 Anserini +test2605 Q0 11493202 5 11.168183 Anserini +test2605 Q0 7913802 6 11.006720 Anserini +test2605 Q0 16948338 7 10.691923 Anserini +test2605 Q0 1959614 8 10.684084 Anserini +test2605 Q0 9704302 9 10.418465 Anserini +test2605 Q0 17546760 10 10.391030 Anserini +test2605 Q0 4975843 11 10.324701 Anserini +test2605 Q0 8038295 12 10.256251 Anserini +test2605 Q0 5859583 13 10.141457 Anserini +test2605 Q0 10838773 14 10.053653 Anserini +test2605 Q0 14932264 15 10.045553 Anserini +test2605 Q0 4494547 16 9.976528 Anserini +test2605 Q0 10882388 17 9.955217 Anserini +test2605 Q0 7434536 18 9.955191 Anserini +test2605 Q0 15559468 19 9.846561 Anserini +test2605 Q0 15469043 20 9.719683 Anserini +test2605 Q0 4851873 21 9.663843 Anserini +test2605 Q0 9610072 22 9.486302 Anserini +test2605 Q0 5839645 23 9.480088 Anserini +test2605 Q0 13698027 24 9.458446 Anserini +test2605 Q0 19299984 25 9.424744 Anserini +test2605 Q0 7786891 26 9.423492 Anserini +test2605 Q0 8286967 27 9.423492 Anserini +test2605 Q0 15122475 28 9.393703 Anserini +test2605 Q0 8141299 29 9.355581 Anserini +test2605 Q0 3205939 30 9.325324 Anserini +test2606 Q0 3541560 1 16.811832 Anserini +test2606 Q0 3541558 2 16.411890 Anserini +test2606 Q0 15367457 3 16.029411 Anserini +test2606 Q0 3541559 4 15.924441 Anserini +test2606 Q0 3541562 5 15.613616 Anserini +test2606 Q0 14401112 6 15.580646 Anserini +test2606 Q0 14401118 7 15.580646 Anserini +test2606 Q0 3541577 8 15.348757 Anserini +test2606 Q0 3541572 9 14.727766 Anserini +test2606 Q0 3541585 10 14.646911 Anserini +test2606 Q0 3541586 11 14.079125 Anserini +test2606 Q0 7114526 12 13.958052 Anserini +test2606 Q0 7114525 13 13.773785 Anserini +test2606 Q0 19027250 14 13.725646 Anserini +test2606 Q0 8730183 15 13.620225 Anserini +test2606 Q0 7114527 16 13.411736 Anserini +test2606 Q0 7483580 17 13.395690 Anserini +test2606 Q0 3541578 18 13.327695 Anserini +test2606 Q0 16141577 19 13.327270 Anserini +test2606 Q0 3541567 20 13.170845 Anserini +test2606 Q0 8730186 21 13.075300 Anserini +test2606 Q0 3541561 22 12.945941 Anserini +test2606 Q0 3354593 23 12.892161 Anserini +test2606 Q0 3541571 24 12.878927 Anserini +test2606 Q0 3541570 25 12.868371 Anserini +test2606 Q0 8726574 26 12.817389 Anserini +test2606 Q0 15367460 27 12.774725 Anserini +test2606 Q0 3541574 28 12.772825 Anserini +test2606 Q0 3541575 29 12.630072 Anserini +test2606 Q0 8087526 30 12.549054 Anserini +test2607 Q0 4185098 1 20.789312 Anserini +test2607 Q0 16858081 2 19.431664 Anserini +test2607 Q0 4245777 3 18.970451 Anserini +test2607 Q0 4185097 4 18.840118 Anserini +test2607 Q0 394869 5 18.565575 Anserini +test2607 Q0 394466 6 18.196318 Anserini +test2607 Q0 395042 7 17.800535 Anserini +test2607 Q0 2717141 8 17.184649 Anserini +test2607 Q0 394809 9 17.171999 Anserini +test2607 Q0 7031705 10 17.109217 Anserini +test2607 Q0 4450417 11 17.049974 Anserini +test2607 Q0 1491924 12 16.917048 Anserini +test2607 Q0 393985 13 16.684357 Anserini +test2607 Q0 541787 14 16.646330 Anserini +test2607 Q0 394908 15 16.634825 Anserini +test2607 Q0 18084511 16 16.492006 Anserini +test2607 Q0 376035 17 16.289944 Anserini +test2607 Q0 2163445 18 15.993038 Anserini +test2607 Q0 5581744 19 15.982248 Anserini +test2607 Q0 394663 20 15.972288 Anserini +test2607 Q0 394025 21 15.939402 Anserini +test2607 Q0 2484660 22 15.852289 Anserini +test2607 Q0 394195 23 15.813805 Anserini +test2607 Q0 12051626 24 15.738177 Anserini +test2607 Q0 2515136 25 15.690399 Anserini +test2607 Q0 3159700 26 15.688553 Anserini +test2607 Q0 394759 27 15.453482 Anserini +test2607 Q0 5581731 28 15.403712 Anserini +test2607 Q0 394999 29 15.274060 Anserini +test2607 Q0 3200059 30 15.157797 Anserini +test2608 Q0 9041683 1 10.853601 Anserini +test2608 Q0 550618 2 10.696918 Anserini +test2608 Q0 6643750 3 10.413676 Anserini +test2608 Q0 9041684 4 10.357531 Anserini +test2608 Q0 9041689 5 10.351673 Anserini +test2608 Q0 13007497 6 10.336968 Anserini +test2608 Q0 10023938 7 10.309357 Anserini +test2608 Q0 6011393 8 10.239750 Anserini +test2608 Q0 726292 9 10.038411 Anserini +test2608 Q0 4995053 10 9.958951 Anserini +test2608 Q0 545113 11 9.945111 Anserini +test2608 Q0 7064039 12 9.851106 Anserini +test2608 Q0 6541683 13 9.828161 Anserini +test2608 Q0 7510208 14 9.827312 Anserini +test2608 Q0 14261597 15 9.737962 Anserini +test2608 Q0 18187956 16 9.710314 Anserini +test2608 Q0 12902628 17 9.675494 Anserini +test2608 Q0 368701 18 9.601627 Anserini +test2608 Q0 13470364 19 9.551247 Anserini +test2608 Q0 10279106 20 9.518459 Anserini +test2608 Q0 16579792 21 9.512983 Anserini +test2608 Q0 7746 22 9.403376 Anserini +test2608 Q0 3237743 23 9.403376 Anserini +test2608 Q0 6206618 24 9.389303 Anserini +test2608 Q0 7992338 25 9.281314 Anserini +test2608 Q0 7297839 26 9.272391 Anserini +test2608 Q0 457009 27 9.267271 Anserini +test2608 Q0 4011739 28 9.211332 Anserini +test2608 Q0 15061633 29 9.182768 Anserini +test2608 Q0 545108 30 9.156269 Anserini +test2609 Q0 17485836 1 16.529585 Anserini +test2609 Q0 17485841 2 16.468910 Anserini +test2609 Q0 18580006 3 15.841758 Anserini +test2609 Q0 17422624 4 15.816440 Anserini +test2609 Q0 16382213 5 15.612972 Anserini +test2609 Q0 18817968 6 15.610104 Anserini +test2609 Q0 16382212 7 15.596377 Anserini +test2609 Q0 18510469 8 15.401745 Anserini +test2609 Q0 17422622 9 15.398879 Anserini +test2609 Q0 17422638 10 15.398879 Anserini +test2609 Q0 16382180 11 15.308853 Anserini +test2609 Q0 18817962 12 15.271662 Anserini +test2609 Q0 17485795 13 15.212644 Anserini +test2609 Q0 17485846 14 15.134773 Anserini +test2609 Q0 17710359 15 15.051122 Anserini +test2609 Q0 17485824 16 15.026546 Anserini +test2609 Q0 17007141 17 14.940876 Anserini +test2609 Q0 17485839 18 14.886915 Anserini +test2609 Q0 14306000 19 14.886915 Anserini +test2609 Q0 18531403 20 14.846456 Anserini +test2609 Q0 18134014 21 14.789536 Anserini +test2609 Q0 18134025 22 14.789536 Anserini +test2609 Q0 17485802 23 14.776580 Anserini +test2609 Q0 18587244 24 14.731230 Anserini +test2609 Q0 16382195 25 14.666847 Anserini +test2609 Q0 16382192 26 14.642467 Anserini +test2609 Q0 17485842 27 14.640649 Anserini +test2609 Q0 17710357 28 14.513433 Anserini +test2609 Q0 19323009 29 14.513433 Anserini +test2609 Q0 16534670 30 14.388687 Anserini +test261 Q0 1862137 1 11.791497 Anserini +test261 Q0 16631712 2 11.366211 Anserini +test261 Q0 8079518 3 11.157211 Anserini +test261 Q0 1471381 4 10.495560 Anserini +test261 Q0 12448929 5 10.395370 Anserini +test261 Q0 10296538 6 10.323444 Anserini +test261 Q0 12449041 7 10.311056 Anserini +test261 Q0 12449035 8 10.260303 Anserini +test261 Q0 8393393 9 10.158040 Anserini +test261 Q0 3184420 10 10.156311 Anserini +test261 Q0 3945787 11 10.105868 Anserini +test261 Q0 6042049 12 10.098071 Anserini +test261 Q0 785953 13 10.078125 Anserini +test261 Q0 12448885 14 10.049156 Anserini +test261 Q0 2188036 15 9.983943 Anserini +test261 Q0 4318416 16 9.973312 Anserini +test261 Q0 10270537 17 9.941759 Anserini +test261 Q0 15262289 18 9.911981 Anserini +test261 Q0 543700 19 9.895388 Anserini +test261 Q0 11630254 20 9.859999 Anserini +test261 Q0 15151279 21 9.815450 Anserini +test261 Q0 12449040 22 9.797203 Anserini +test261 Q0 3089528 23 9.785345 Anserini +test261 Q0 1780324 24 9.772316 Anserini +test261 Q0 20567818 25 9.771874 Anserini +test261 Q0 12448935 26 9.731094 Anserini +test261 Q0 5528154 27 9.689270 Anserini +test261 Q0 7880162 28 9.679484 Anserini +test261 Q0 20055631 29 9.657016 Anserini +test261 Q0 19127394 30 9.650174 Anserini +test2610 Q0 15443310 1 9.726198 Anserini +test2610 Q0 16559553 2 9.665802 Anserini +test2610 Q0 15443327 3 9.526640 Anserini +test2610 Q0 12661220 4 9.526640 Anserini +test2610 Q0 17332651 5 9.489540 Anserini +test2610 Q0 15443259 6 9.479751 Anserini +test2610 Q0 14567030 7 9.436272 Anserini +test2610 Q0 17332632 8 9.326421 Anserini +test2610 Q0 12661195 9 9.192995 Anserini +test2610 Q0 5398368 10 9.159840 Anserini +test2610 Q0 14724559 11 9.110711 Anserini +test2610 Q0 14724566 12 9.090962 Anserini +test2610 Q0 14724579 13 9.056863 Anserini +test2610 Q0 3990935 14 8.937110 Anserini +test2610 Q0 15443399 15 8.814835 Anserini +test2610 Q0 15443394 16 8.801898 Anserini +test2610 Q0 5613626 17 8.801898 Anserini +test2610 Q0 17578302 18 8.801898 Anserini +test2610 Q0 16559519 19 8.789283 Anserini +test2610 Q0 16559558 20 8.789283 Anserini +test2610 Q0 20138254 21 8.774701 Anserini +test2610 Q0 14567072 22 8.757316 Anserini +test2610 Q0 14567078 23 8.640262 Anserini +test2610 Q0 20943720 24 8.606487 Anserini +test2610 Q0 14724524 25 8.594957 Anserini +test2610 Q0 15443378 26 8.594957 Anserini +test2610 Q0 6277616 27 8.570398 Anserini +test2610 Q0 15443377 28 8.565820 Anserini +test2610 Q0 15443325 29 8.565820 Anserini +test2610 Q0 17332610 30 8.565820 Anserini +test2611 Q0 15549075 1 21.134432 Anserini +test2611 Q0 15549074 2 20.549620 Anserini +test2611 Q0 15121312 3 20.168371 Anserini +test2611 Q0 9424176 4 20.144112 Anserini +test2611 Q0 18269611 5 20.072096 Anserini +test2611 Q0 19568500 6 19.924952 Anserini +test2611 Q0 15121309 7 19.795462 Anserini +test2611 Q0 12707366 8 19.608248 Anserini +test2611 Q0 9424174 9 19.478773 Anserini +test2611 Q0 12999950 10 19.368896 Anserini +test2611 Q0 16257478 11 19.365267 Anserini +test2611 Q0 9424173 12 19.322220 Anserini +test2611 Q0 12999953 13 19.294201 Anserini +test2611 Q0 15317015 14 19.004456 Anserini +test2611 Q0 12795753 15 18.922394 Anserini +test2611 Q0 4054267 16 18.753979 Anserini +test2611 Q0 16693926 17 18.529350 Anserini +test2611 Q0 11368695 18 18.507790 Anserini +test2611 Q0 8720677 19 18.482946 Anserini +test2611 Q0 11701029 20 18.417557 Anserini +test2611 Q0 10344003 21 18.310711 Anserini +test2611 Q0 12795752 22 18.244303 Anserini +test2611 Q0 12964437 23 18.175392 Anserini +test2611 Q0 648554 24 18.159758 Anserini +test2611 Q0 11106037 25 18.054026 Anserini +test2611 Q0 11106031 26 18.044994 Anserini +test2611 Q0 648526 27 18.020695 Anserini +test2611 Q0 154694 28 17.827713 Anserini +test2611 Q0 13919984 29 17.808157 Anserini +test2611 Q0 622611 30 17.787870 Anserini +test2612 Q0 17776134 1 15.852323 Anserini +test2612 Q0 17624447 2 14.808661 Anserini +test2612 Q0 8784079 3 14.388803 Anserini +test2612 Q0 13387870 4 14.235509 Anserini +test2612 Q0 13387842 5 14.235509 Anserini +test2612 Q0 12594410 6 14.180113 Anserini +test2612 Q0 12213597 7 14.081217 Anserini +test2612 Q0 6208892 8 13.771474 Anserini +test2612 Q0 9823655 9 13.693927 Anserini +test2612 Q0 8473313 10 13.651338 Anserini +test2612 Q0 487767 11 13.429324 Anserini +test2612 Q0 199616 12 13.411337 Anserini +test2612 Q0 2673909 13 13.367733 Anserini +test2612 Q0 17776147 14 13.358615 Anserini +test2612 Q0 8444836 15 13.358615 Anserini +test2612 Q0 2424139 16 13.322564 Anserini +test2612 Q0 2054509 17 13.291435 Anserini +test2612 Q0 1834771 18 13.282597 Anserini +test2612 Q0 377631 19 13.249459 Anserini +test2612 Q0 13389412 20 13.171735 Anserini +test2612 Q0 17776146 21 13.170841 Anserini +test2612 Q0 377604 22 13.140019 Anserini +test2612 Q0 2424124 23 13.139629 Anserini +test2612 Q0 17439415 24 13.108267 Anserini +test2612 Q0 8714171 25 13.093479 Anserini +test2612 Q0 9088782 26 13.091599 Anserini +test2612 Q0 19184569 27 13.078421 Anserini +test2612 Q0 19184570 28 13.078421 Anserini +test2612 Q0 3550500 29 13.068644 Anserini +test2612 Q0 4118345 30 13.026361 Anserini +test2613 Q0 18995594 1 19.399679 Anserini +test2613 Q0 5761169 2 17.162006 Anserini +test2613 Q0 9046421 3 16.243195 Anserini +test2613 Q0 9046418 4 16.147514 Anserini +test2613 Q0 12416392 5 16.086388 Anserini +test2613 Q0 11759601 6 15.795753 Anserini +test2613 Q0 17816432 7 15.656425 Anserini +test2613 Q0 7660743 8 15.604063 Anserini +test2613 Q0 11759604 9 15.539782 Anserini +test2613 Q0 7660734 10 15.516129 Anserini +test2613 Q0 7660730 11 15.241520 Anserini +test2613 Q0 18995602 12 14.096342 Anserini +test2613 Q0 16172237 13 14.020958 Anserini +test2613 Q0 9046420 14 13.893499 Anserini +test2613 Q0 7660732 15 13.887858 Anserini +test2613 Q0 17816429 16 13.749100 Anserini +test2613 Q0 257618 17 13.522187 Anserini +test2613 Q0 17816431 18 13.491406 Anserini +test2613 Q0 7660740 19 13.270235 Anserini +test2613 Q0 257607 20 13.208134 Anserini +test2613 Q0 257597 21 13.153004 Anserini +test2613 Q0 20504855 22 13.099613 Anserini +test2613 Q0 3820319 23 12.962708 Anserini +test2613 Q0 12416395 24 12.958745 Anserini +test2613 Q0 7660738 25 12.931787 Anserini +test2613 Q0 17816436 26 12.931787 Anserini +test2613 Q0 11375466 27 12.923059 Anserini +test2613 Q0 16172239 28 12.901505 Anserini +test2613 Q0 20593691 29 12.865805 Anserini +test2613 Q0 9328915 30 12.815063 Anserini +test2614 Q0 8508908 1 10.035530 Anserini +test2614 Q0 9930482 2 9.281775 Anserini +test2614 Q0 1403611 3 8.911589 Anserini +test2614 Q0 8367226 4 8.757298 Anserini +test2614 Q0 194083 5 8.564750 Anserini +test2614 Q0 19649394 6 8.511836 Anserini +test2614 Q0 9490916 7 8.484056 Anserini +test2614 Q0 20653164 8 8.425892 Anserini +test2614 Q0 9930481 9 8.327409 Anserini +test2614 Q0 19601699 10 8.305954 Anserini +test2614 Q0 2711215 11 8.238661 Anserini +test2614 Q0 5355541 12 8.231832 Anserini +test2614 Q0 7474360 13 8.202782 Anserini +test2614 Q0 20653161 14 8.202782 Anserini +test2614 Q0 19766717 15 8.198025 Anserini +test2614 Q0 13579989 16 8.130112 Anserini +test2614 Q0 15258988 17 8.108818 Anserini +test2614 Q0 18442005 18 8.030966 Anserini +test2614 Q0 3192274 19 8.026207 Anserini +test2614 Q0 20052963 20 8.021882 Anserini +test2614 Q0 10547089 21 7.980125 Anserini +test2614 Q0 18442004 22 7.960968 Anserini +test2614 Q0 8037869 23 7.955156 Anserini +test2614 Q0 18126059 24 7.955156 Anserini +test2614 Q0 9490915 25 7.940815 Anserini +test2614 Q0 12502298 26 7.940815 Anserini +test2614 Q0 18079220 27 7.891902 Anserini +test2614 Q0 5401539 28 7.886945 Anserini +test2614 Q0 11778214 29 7.886594 Anserini +test2614 Q0 8257640 30 7.884423 Anserini +test2615 Q0 12398828 1 10.905910 Anserini +test2615 Q0 12536474 2 10.386854 Anserini +test2615 Q0 485011 3 10.333526 Anserini +test2615 Q0 7642430 4 9.979629 Anserini +test2615 Q0 3014541 5 9.898861 Anserini +test2615 Q0 3901027 6 9.853095 Anserini +test2615 Q0 5320017 7 9.762257 Anserini +test2615 Q0 319054 8 9.723574 Anserini +test2615 Q0 319044 9 9.723574 Anserini +test2615 Q0 14720319 10 9.709309 Anserini +test2615 Q0 1878882 11 9.582623 Anserini +test2615 Q0 7370389 12 9.534886 Anserini +test2615 Q0 19556651 13 9.504720 Anserini +test2615 Q0 7228715 14 9.456270 Anserini +test2615 Q0 20699453 15 9.416127 Anserini +test2615 Q0 9309118 16 9.385281 Anserini +test2615 Q0 14073331 17 9.375939 Anserini +test2615 Q0 4142656 18 9.140622 Anserini +test2615 Q0 888488 19 9.140622 Anserini +test2615 Q0 4430321 20 9.126103 Anserini +test2615 Q0 16175939 21 9.116690 Anserini +test2615 Q0 4430324 22 9.080350 Anserini +test2615 Q0 12964259 23 9.074780 Anserini +test2615 Q0 11118299 24 8.995828 Anserini +test2615 Q0 14554 25 8.971501 Anserini +test2615 Q0 6800492 26 8.971501 Anserini +test2615 Q0 5794162 27 8.939769 Anserini +test2615 Q0 17488255 28 8.887820 Anserini +test2615 Q0 4680896 29 8.854235 Anserini +test2615 Q0 573192 30 8.820647 Anserini +test2616 Q0 4701349 1 12.801105 Anserini +test2616 Q0 251612 2 12.175604 Anserini +test2616 Q0 17562437 3 12.151972 Anserini +test2616 Q0 20095924 4 12.089319 Anserini +test2616 Q0 17562439 5 12.000584 Anserini +test2616 Q0 10134615 6 11.984756 Anserini +test2616 Q0 4845520 7 11.942275 Anserini +test2616 Q0 3873161 8 11.921652 Anserini +test2616 Q0 8818580 9 11.752011 Anserini +test2616 Q0 251613 10 11.526562 Anserini +test2616 Q0 10134616 11 11.403139 Anserini +test2616 Q0 10344888 12 11.227704 Anserini +test2616 Q0 7755513 13 11.140754 Anserini +test2616 Q0 7938674 14 11.113278 Anserini +test2616 Q0 8818582 15 10.986619 Anserini +test2616 Q0 10134617 16 10.951021 Anserini +test2616 Q0 10636787 17 10.881256 Anserini +test2616 Q0 10748310 18 10.848450 Anserini +test2616 Q0 8852504 19 10.822658 Anserini +test2616 Q0 20310258 20 10.798331 Anserini +test2616 Q0 20012684 21 10.662952 Anserini +test2616 Q0 20005425 22 10.662952 Anserini +test2616 Q0 17577181 23 10.641521 Anserini +test2616 Q0 409523 24 10.569292 Anserini +test2616 Q0 20022964 25 10.529634 Anserini +test2616 Q0 15386473 26 10.486157 Anserini +test2616 Q0 19998845 27 10.482449 Anserini +test2616 Q0 8862050 28 10.450797 Anserini +test2616 Q0 4539211 29 10.449242 Anserini +test2616 Q0 4369693 30 10.422102 Anserini +test2617 Q0 1917703 1 18.490210 Anserini +test2617 Q0 139968 2 17.734455 Anserini +test2617 Q0 20224515 3 16.954823 Anserini +test2617 Q0 1917706 4 16.831688 Anserini +test2617 Q0 1917682 5 16.563705 Anserini +test2617 Q0 13895108 6 16.364231 Anserini +test2617 Q0 9269516 7 16.212976 Anserini +test2617 Q0 1917702 8 16.170959 Anserini +test2617 Q0 2599146 9 15.777941 Anserini +test2617 Q0 2307184 10 15.318542 Anserini +test2617 Q0 1914048 11 15.241729 Anserini +test2617 Q0 139982 12 15.211064 Anserini +test2617 Q0 674609 13 15.140952 Anserini +test2617 Q0 1590935 14 15.126223 Anserini +test2617 Q0 13011477 15 15.066876 Anserini +test2617 Q0 8395458 16 15.066876 Anserini +test2617 Q0 1917705 17 14.967129 Anserini +test2617 Q0 1917707 18 14.904281 Anserini +test2617 Q0 1914035 19 14.866098 Anserini +test2617 Q0 238119 20 14.624666 Anserini +test2617 Q0 17298350 21 14.477908 Anserini +test2617 Q0 3152497 22 14.174850 Anserini +test2617 Q0 20335194 23 14.096405 Anserini +test2617 Q0 1917704 24 14.076485 Anserini +test2617 Q0 16191196 25 14.076359 Anserini +test2617 Q0 1380577 26 14.056334 Anserini +test2617 Q0 2665299 27 13.986444 Anserini +test2617 Q0 9711930 28 13.969667 Anserini +test2617 Q0 935186 29 13.824828 Anserini +test2617 Q0 292183 30 13.737396 Anserini +test2618 Q0 11532317 1 16.177984 Anserini +test2618 Q0 11532330 2 14.398548 Anserini +test2618 Q0 11532328 3 14.192060 Anserini +test2618 Q0 11532329 4 14.009028 Anserini +test2618 Q0 11532319 5 13.416000 Anserini +test2618 Q0 11532318 6 12.863836 Anserini +test2618 Q0 9297771 7 12.635206 Anserini +test2618 Q0 8512803 8 12.315319 Anserini +test2618 Q0 16843964 9 12.267805 Anserini +test2618 Q0 6928125 10 12.191099 Anserini +test2618 Q0 2984429 11 12.073403 Anserini +test2618 Q0 9604500 12 12.071154 Anserini +test2618 Q0 10077616 13 12.017550 Anserini +test2618 Q0 16152927 14 11.662994 Anserini +test2618 Q0 5653398 15 11.483432 Anserini +test2618 Q0 6681262 16 11.457214 Anserini +test2618 Q0 14036639 17 11.456952 Anserini +test2618 Q0 7117892 18 11.403713 Anserini +test2618 Q0 11800646 19 11.299309 Anserini +test2618 Q0 11361693 20 11.290483 Anserini +test2618 Q0 14081920 21 11.277406 Anserini +test2618 Q0 11887027 22 11.195600 Anserini +test2618 Q0 3136260 23 11.159855 Anserini +test2618 Q0 9810554 24 11.159855 Anserini +test2618 Q0 6358360 25 11.055703 Anserini +test2618 Q0 4649103 26 11.032906 Anserini +test2618 Q0 13765999 27 10.924227 Anserini +test2618 Q0 11532323 28 10.914581 Anserini +test2618 Q0 11532325 29 10.914581 Anserini +test2618 Q0 7626393 30 10.905899 Anserini +test2619 Q0 15934080 1 10.562442 Anserini +test2619 Q0 9284465 2 10.420692 Anserini +test2619 Q0 18343010 3 10.386134 Anserini +test2619 Q0 17827567 4 10.103049 Anserini +test2619 Q0 9515865 5 10.073769 Anserini +test2619 Q0 3126312 6 9.971694 Anserini +test2619 Q0 14127370 7 9.937933 Anserini +test2619 Q0 4186200 8 9.863884 Anserini +test2619 Q0 8047863 9 9.808067 Anserini +test2619 Q0 6723376 10 9.784777 Anserini +test2619 Q0 19121501 11 9.747341 Anserini +test2619 Q0 4164597 12 9.718204 Anserini +test2619 Q0 1525255 13 9.700975 Anserini +test2619 Q0 17417384 14 9.677839 Anserini +test2619 Q0 2892858 15 9.645312 Anserini +test2619 Q0 9523410 16 9.622497 Anserini +test2619 Q0 16011320 17 9.616293 Anserini +test2619 Q0 8160461 18 9.584454 Anserini +test2619 Q0 15235773 19 9.516116 Anserini +test2619 Q0 15289104 20 9.488491 Anserini +test2619 Q0 773841 21 9.488491 Anserini +test2619 Q0 13237010 22 9.484191 Anserini +test2619 Q0 18343011 23 9.458047 Anserini +test2619 Q0 20590867 24 9.440834 Anserini +test2619 Q0 13555069 25 9.372272 Anserini +test2619 Q0 483632 26 9.357885 Anserini +test2619 Q0 5544168 27 9.351300 Anserini +test2619 Q0 5544165 28 9.351300 Anserini +test2619 Q0 7387376 29 9.324051 Anserini +test2619 Q0 19512486 30 9.287621 Anserini +test262 Q0 15608648 1 15.486528 Anserini +test262 Q0 18392028 2 14.508218 Anserini +test262 Q0 17261239 3 14.289190 Anserini +test262 Q0 18391988 4 13.967857 Anserini +test262 Q0 17261262 5 13.967857 Anserini +test262 Q0 11545144 6 13.872587 Anserini +test262 Q0 11545146 7 13.853744 Anserini +test262 Q0 11545119 8 13.843306 Anserini +test262 Q0 6513488 9 13.803099 Anserini +test262 Q0 14749042 10 13.555346 Anserini +test262 Q0 20183152 11 13.275068 Anserini +test262 Q0 8239932 12 13.198031 Anserini +test262 Q0 18620529 13 13.169473 Anserini +test262 Q0 18391975 14 12.948286 Anserini +test262 Q0 18391995 15 12.926517 Anserini +test262 Q0 16413005 16 12.749704 Anserini +test262 Q0 11545145 17 12.727078 Anserini +test262 Q0 1367342 18 12.727078 Anserini +test262 Q0 16916874 19 12.700652 Anserini +test262 Q0 11544759 20 12.567430 Anserini +test262 Q0 11544781 21 12.567430 Anserini +test262 Q0 16014441 22 12.519533 Anserini +test262 Q0 2469214 23 12.451591 Anserini +test262 Q0 14749065 24 12.439168 Anserini +test262 Q0 11545148 25 12.418434 Anserini +test262 Q0 14469932 26 12.398022 Anserini +test262 Q0 11545138 27 12.363645 Anserini +test262 Q0 17304466 28 12.352229 Anserini +test262 Q0 1840304 29 12.305681 Anserini +test262 Q0 14469933 30 12.291444 Anserini +test2620 Q0 19105937 1 11.788074 Anserini +test2620 Q0 4699669 2 11.078012 Anserini +test2620 Q0 17777864 3 10.838812 Anserini +test2620 Q0 4291520 4 10.775968 Anserini +test2620 Q0 661098 5 10.425013 Anserini +test2620 Q0 4994117 6 10.399553 Anserini +test2620 Q0 4730885 7 10.322800 Anserini +test2620 Q0 2844138 8 10.306551 Anserini +test2620 Q0 659752 9 10.292929 Anserini +test2620 Q0 4291515 10 10.273532 Anserini +test2620 Q0 12174075 11 10.268877 Anserini +test2620 Q0 12562098 12 10.201366 Anserini +test2620 Q0 15625264 13 10.159411 Anserini +test2620 Q0 661106 14 10.067504 Anserini +test2620 Q0 12429522 15 9.969078 Anserini +test2620 Q0 1919350 16 9.946553 Anserini +test2620 Q0 8051602 17 9.934705 Anserini +test2620 Q0 11228367 18 9.928297 Anserini +test2620 Q0 15618418 19 9.902403 Anserini +test2620 Q0 5305124 20 9.863947 Anserini +test2620 Q0 2844137 21 9.839029 Anserini +test2620 Q0 659754 22 9.766739 Anserini +test2620 Q0 8051600 23 9.755930 Anserini +test2620 Q0 16994682 24 9.746918 Anserini +test2620 Q0 69264 25 9.727479 Anserini +test2620 Q0 4291527 26 9.697641 Anserini +test2620 Q0 11228188 27 9.686535 Anserini +test2620 Q0 19105938 28 9.656451 Anserini +test2620 Q0 4291517 29 9.637677 Anserini +test2620 Q0 11557350 30 9.620575 Anserini +test2621 Q0 11676781 1 12.556676 Anserini +test2621 Q0 16856776 2 12.454285 Anserini +test2621 Q0 11076529 3 11.644947 Anserini +test2621 Q0 12094367 4 11.039946 Anserini +test2621 Q0 5503 5 10.929001 Anserini +test2621 Q0 124119 6 10.883488 Anserini +test2621 Q0 7469609 7 10.733606 Anserini +test2621 Q0 13249832 8 10.566732 Anserini +test2621 Q0 15506442 9 10.552491 Anserini +test2621 Q0 19835326 10 10.504549 Anserini +test2621 Q0 20546507 11 10.459237 Anserini +test2621 Q0 13633253 12 10.453623 Anserini +test2621 Q0 13828148 13 10.417666 Anserini +test2621 Q0 3866214 14 10.245144 Anserini +test2621 Q0 778553 15 10.227458 Anserini +test2621 Q0 2676669 16 10.208968 Anserini +test2621 Q0 1498628 17 10.197825 Anserini +test2621 Q0 16750025 18 10.185043 Anserini +test2621 Q0 19591959 19 10.144674 Anserini +test2621 Q0 7860152 20 10.139394 Anserini +test2621 Q0 14140134 21 10.102989 Anserini +test2621 Q0 13188355 22 10.089589 Anserini +test2621 Q0 19886725 23 10.073977 Anserini +test2621 Q0 17887575 24 10.016809 Anserini +test2621 Q0 19835324 25 9.974073 Anserini +test2621 Q0 7575427 26 9.929267 Anserini +test2621 Q0 3285352 27 9.918047 Anserini +test2621 Q0 13544047 28 9.900308 Anserini +test2621 Q0 20242292 29 9.894865 Anserini +test2621 Q0 1127841 30 9.851621 Anserini +test2622 Q0 558566 1 24.838675 Anserini +test2622 Q0 591531 2 24.552174 Anserini +test2622 Q0 558594 3 24.393471 Anserini +test2622 Q0 8425013 4 23.087179 Anserini +test2622 Q0 558573 5 22.868980 Anserini +test2622 Q0 4810040 6 22.720755 Anserini +test2622 Q0 4810031 7 22.502979 Anserini +test2622 Q0 558630 8 22.396013 Anserini +test2622 Q0 558595 9 22.394670 Anserini +test2622 Q0 591545 10 22.306894 Anserini +test2622 Q0 5587408 11 22.198074 Anserini +test2622 Q0 5725192 12 22.186007 Anserini +test2622 Q0 591536 13 22.175749 Anserini +test2622 Q0 4810035 14 22.021381 Anserini +test2622 Q0 3160320 15 21.971609 Anserini +test2622 Q0 558574 16 21.872576 Anserini +test2622 Q0 591546 17 21.769135 Anserini +test2622 Q0 5725179 18 21.714695 Anserini +test2622 Q0 1884300 19 21.552608 Anserini +test2622 Q0 3160322 20 21.516932 Anserini +test2622 Q0 591543 21 21.429319 Anserini +test2622 Q0 558610 22 21.367254 Anserini +test2622 Q0 15757915 23 21.205786 Anserini +test2622 Q0 591550 24 21.199520 Anserini +test2622 Q0 3276413 25 21.185947 Anserini +test2622 Q0 1469642 26 21.181480 Anserini +test2622 Q0 3276414 27 21.019033 Anserini +test2622 Q0 4810039 28 20.887352 Anserini +test2622 Q0 557564 29 20.847372 Anserini +test2622 Q0 1975876 30 20.764851 Anserini +test2623 Q0 8474928 1 14.186048 Anserini +test2623 Q0 2456623 2 12.867760 Anserini +test2623 Q0 18747778 3 12.825077 Anserini +test2623 Q0 72953 4 12.654131 Anserini +test2623 Q0 17992950 5 12.280606 Anserini +test2623 Q0 18139261 6 12.202141 Anserini +test2623 Q0 16864834 7 12.186988 Anserini +test2623 Q0 16864839 8 12.110459 Anserini +test2623 Q0 8474940 9 12.008362 Anserini +test2623 Q0 8126437 10 12.006438 Anserini +test2623 Q0 3019912 11 11.971987 Anserini +test2623 Q0 2456605 12 11.960650 Anserini +test2623 Q0 12859834 13 11.842590 Anserini +test2623 Q0 11186524 14 11.784935 Anserini +test2623 Q0 18878690 15 11.783247 Anserini +test2623 Q0 866407 16 11.777639 Anserini +test2623 Q0 2560577 17 11.765211 Anserini +test2623 Q0 7750689 18 11.764853 Anserini +test2623 Q0 11196064 19 11.737903 Anserini +test2623 Q0 13639260 20 11.685001 Anserini +test2623 Q0 13640242 21 11.673716 Anserini +test2623 Q0 2459931 22 11.639409 Anserini +test2623 Q0 15188277 23 11.634272 Anserini +test2623 Q0 5592299 24 11.633413 Anserini +test2623 Q0 15246189 25 11.628518 Anserini +test2623 Q0 3367922 26 11.610191 Anserini +test2623 Q0 11343820 27 11.590181 Anserini +test2623 Q0 6450374 28 11.564544 Anserini +test2623 Q0 8474931 29 11.564544 Anserini +test2623 Q0 1368617 30 11.539577 Anserini +test2624 Q0 498982 1 12.287255 Anserini +test2624 Q0 8155977 2 10.774097 Anserini +test2624 Q0 19591663 3 9.997618 Anserini +test2624 Q0 13449592 4 9.903055 Anserini +test2624 Q0 3167943 5 9.795169 Anserini +test2624 Q0 3262046 6 9.671971 Anserini +test2624 Q0 21011041 7 9.624837 Anserini +test2624 Q0 19591665 8 9.599406 Anserini +test2624 Q0 18150604 9 9.573235 Anserini +test2624 Q0 16683722 10 9.550045 Anserini +test2624 Q0 8796370 11 9.507908 Anserini +test2624 Q0 8971380 12 9.502170 Anserini +test2624 Q0 17196765 13 9.464555 Anserini +test2624 Q0 13098 14 9.452995 Anserini +test2624 Q0 12841160 15 9.410017 Anserini +test2624 Q0 4423729 16 9.344385 Anserini +test2624 Q0 4248541 17 9.307673 Anserini +test2624 Q0 16683723 18 9.244406 Anserini +test2624 Q0 4137866 19 9.185829 Anserini +test2624 Q0 15148326 20 9.160905 Anserini +test2624 Q0 16973214 21 9.125099 Anserini +test2624 Q0 12612986 22 9.087444 Anserini +test2624 Q0 4725377 23 9.033630 Anserini +test2624 Q0 12262851 24 9.031443 Anserini +test2624 Q0 6942741 25 8.978479 Anserini +test2624 Q0 15057457 26 8.956507 Anserini +test2624 Q0 9061796 27 8.911390 Anserini +test2624 Q0 15897050 28 8.869320 Anserini +test2624 Q0 18802424 29 8.856009 Anserini +test2624 Q0 5081070 30 8.845812 Anserini +test2625 Q0 17562985 1 17.479465 Anserini +test2625 Q0 2199961 2 17.228043 Anserini +test2625 Q0 162700 3 16.951370 Anserini +test2625 Q0 393937 4 16.741003 Anserini +test2625 Q0 376007 5 16.659121 Anserini +test2625 Q0 284560 6 16.432535 Anserini +test2625 Q0 395013 7 16.247894 Anserini +test2625 Q0 3220792 8 16.160786 Anserini +test2625 Q0 394783 9 16.057203 Anserini +test2625 Q0 17386808 10 15.951508 Anserini +test2625 Q0 4288314 11 15.848232 Anserini +test2625 Q0 7678075 12 15.815507 Anserini +test2625 Q0 20017120 13 15.666527 Anserini +test2625 Q0 7392910 14 15.649553 Anserini +test2625 Q0 1996288 15 15.570829 Anserini +test2625 Q0 20550654 16 15.557502 Anserini +test2625 Q0 8330486 17 15.556516 Anserini +test2625 Q0 9862428 18 15.548285 Anserini +test2625 Q0 16858056 19 15.541530 Anserini +test2625 Q0 397088 20 15.491087 Anserini +test2625 Q0 17562986 21 15.484666 Anserini +test2625 Q0 4168943 22 15.474594 Anserini +test2625 Q0 5187956 23 15.455707 Anserini +test2625 Q0 2554649 24 15.389896 Anserini +test2625 Q0 19619489 25 15.340574 Anserini +test2625 Q0 4236252 26 15.322687 Anserini +test2625 Q0 394494 27 15.320136 Anserini +test2625 Q0 376058 28 15.312742 Anserini +test2625 Q0 284561 29 15.304432 Anserini +test2625 Q0 4281348 30 15.255363 Anserini +test2626 Q0 2260404 1 13.419345 Anserini +test2626 Q0 5661352 2 12.841476 Anserini +test2626 Q0 5661355 3 12.571543 Anserini +test2626 Q0 20483354 4 12.543597 Anserini +test2626 Q0 1687287 5 12.517891 Anserini +test2626 Q0 6145308 6 12.394414 Anserini +test2626 Q0 3753402 7 12.296967 Anserini +test2626 Q0 3753406 8 12.186539 Anserini +test2626 Q0 20483361 9 12.110258 Anserini +test2626 Q0 12596012 10 12.046246 Anserini +test2626 Q0 3753403 11 11.908250 Anserini +test2626 Q0 1420707 12 11.770727 Anserini +test2626 Q0 2094889 13 11.763052 Anserini +test2626 Q0 2762978 14 11.695503 Anserini +test2626 Q0 3501090 15 11.588537 Anserini +test2626 Q0 7316844 16 11.421082 Anserini +test2626 Q0 3501089 17 11.416422 Anserini +test2626 Q0 9213351 18 11.393142 Anserini +test2626 Q0 7154747 19 11.375115 Anserini +test2626 Q0 5443540 20 11.318466 Anserini +test2626 Q0 12509039 21 11.296412 Anserini +test2626 Q0 7774862 22 11.216293 Anserini +test2626 Q0 9133559 23 11.126506 Anserini +test2626 Q0 14040949 24 11.104012 Anserini +test2626 Q0 16864933 25 11.104012 Anserini +test2626 Q0 5974715 26 11.058230 Anserini +test2626 Q0 7154748 27 10.938562 Anserini +test2626 Q0 16409690 28 10.774811 Anserini +test2626 Q0 9779976 29 10.774478 Anserini +test2626 Q0 19381575 30 10.769604 Anserini +test2627 Q0 5280964 1 18.922081 Anserini +test2627 Q0 5280966 2 18.541243 Anserini +test2627 Q0 5280960 3 18.483196 Anserini +test2627 Q0 5280974 4 18.244631 Anserini +test2627 Q0 5280969 5 17.945591 Anserini +test2627 Q0 5280965 6 17.920437 Anserini +test2627 Q0 5280970 7 17.919285 Anserini +test2627 Q0 759262 8 17.629408 Anserini +test2627 Q0 325268 9 17.326229 Anserini +test2627 Q0 5280962 10 17.161970 Anserini +test2627 Q0 5280968 11 17.122349 Anserini +test2627 Q0 737596 12 16.685032 Anserini +test2627 Q0 5280973 13 16.350561 Anserini +test2627 Q0 989512 14 16.252121 Anserini +test2627 Q0 5280971 15 16.121012 Anserini +test2627 Q0 5280972 16 15.908131 Anserini +test2627 Q0 5280961 17 15.796086 Anserini +test2627 Q0 989513 18 15.627956 Anserini +test2627 Q0 14802554 19 15.175421 Anserini +test2627 Q0 14802556 20 15.175421 Anserini +test2627 Q0 737594 21 14.716902 Anserini +test2627 Q0 737595 22 14.611577 Anserini +test2627 Q0 5280967 23 14.531178 Anserini +test2627 Q0 1459179 24 14.363130 Anserini +test2627 Q0 10424375 25 13.973904 Anserini +test2627 Q0 5847854 26 13.799841 Anserini +test2627 Q0 5280963 27 13.781017 Anserini +test2627 Q0 11697166 28 13.664271 Anserini +test2627 Q0 77588 29 13.325067 Anserini +test2627 Q0 11697167 30 13.299986 Anserini +test2628 Q0 19695122 1 10.129283 Anserini +test2628 Q0 6918477 2 9.565293 Anserini +test2628 Q0 13445092 3 9.441742 Anserini +test2628 Q0 12928808 4 9.367466 Anserini +test2628 Q0 2956434 5 9.333291 Anserini +test2628 Q0 19337881 6 9.333264 Anserini +test2628 Q0 14311426 7 9.133759 Anserini +test2628 Q0 20072897 8 9.133759 Anserini +test2628 Q0 9064196 9 9.044603 Anserini +test2628 Q0 9737978 10 9.011651 Anserini +test2628 Q0 19310816 11 8.924459 Anserini +test2628 Q0 2014789 12 8.897780 Anserini +test2628 Q0 8092076 13 8.888421 Anserini +test2628 Q0 10740261 14 8.860371 Anserini +test2628 Q0 2358104 15 8.821037 Anserini +test2628 Q0 6388546 16 8.805547 Anserini +test2628 Q0 5313601 17 8.798409 Anserini +test2628 Q0 17996346 18 8.795013 Anserini +test2628 Q0 13733256 19 8.755161 Anserini +test2628 Q0 13323214 20 8.742778 Anserini +test2628 Q0 19453424 21 8.733264 Anserini +test2628 Q0 12919106 22 8.693213 Anserini +test2628 Q0 14034475 23 8.687845 Anserini +test2628 Q0 12229922 24 8.672109 Anserini +test2628 Q0 12506694 25 8.666275 Anserini +test2628 Q0 13080740 26 8.664654 Anserini +test2628 Q0 14311421 27 8.664654 Anserini +test2628 Q0 16314199 28 8.639202 Anserini +test2628 Q0 14463416 29 8.633906 Anserini +test2628 Q0 5577427 30 8.627266 Anserini +test2629 Q0 2080904 1 20.213997 Anserini +test2629 Q0 2080914 2 17.185610 Anserini +test2629 Q0 4743752 3 16.105156 Anserini +test2629 Q0 2080905 4 16.036760 Anserini +test2629 Q0 2080888 5 15.936874 Anserini +test2629 Q0 2080896 6 15.676412 Anserini +test2629 Q0 2631045 7 15.526639 Anserini +test2629 Q0 8106737 8 15.411416 Anserini +test2629 Q0 6267401 9 15.253605 Anserini +test2629 Q0 12759561 10 15.033407 Anserini +test2629 Q0 8064508 11 14.874166 Anserini +test2629 Q0 2080884 12 14.851494 Anserini +test2629 Q0 8054864 13 14.683003 Anserini +test2629 Q0 2080907 14 14.367798 Anserini +test2629 Q0 16069040 15 14.114088 Anserini +test2629 Q0 9052364 16 14.060410 Anserini +test2629 Q0 2080906 17 13.748486 Anserini +test2629 Q0 5065133 18 13.680277 Anserini +test2629 Q0 20089111 19 13.613478 Anserini +test2629 Q0 4743746 20 13.569498 Anserini +test2629 Q0 2080889 21 13.565868 Anserini +test2629 Q0 5065132 22 13.476095 Anserini +test2629 Q0 12287975 23 13.355420 Anserini +test2629 Q0 6696979 24 13.355420 Anserini +test2629 Q0 2080881 25 13.072128 Anserini +test2629 Q0 647513 26 13.072128 Anserini +test2629 Q0 2173704 27 13.072128 Anserini +test2629 Q0 4743767 28 13.009228 Anserini +test2629 Q0 7603022 29 12.911911 Anserini +test2629 Q0 12287979 30 12.731318 Anserini +test263 Q0 8457085 1 12.416387 Anserini +test263 Q0 14662455 2 12.233434 Anserini +test263 Q0 14325982 3 12.170467 Anserini +test263 Q0 7755241 4 11.817258 Anserini +test263 Q0 13131989 5 11.403989 Anserini +test263 Q0 7165021 6 11.374286 Anserini +test263 Q0 18769411 7 11.355146 Anserini +test263 Q0 12989069 8 11.310202 Anserini +test263 Q0 19084319 9 11.228024 Anserini +test263 Q0 3401877 10 11.213631 Anserini +test263 Q0 1610516 11 11.151697 Anserini +test263 Q0 17674067 12 11.043633 Anserini +test263 Q0 3876772 13 10.951576 Anserini +test263 Q0 20583048 14 10.940068 Anserini +test263 Q0 876767 15 10.938455 Anserini +test263 Q0 17070809 16 10.936844 Anserini +test263 Q0 540761 17 10.847491 Anserini +test263 Q0 15980902 18 10.845712 Anserini +test263 Q0 876790 19 10.843159 Anserini +test263 Q0 19864452 20 10.822781 Anserini +test263 Q0 20326437 21 10.800729 Anserini +test263 Q0 6993623 22 10.776603 Anserini +test263 Q0 7165019 23 10.741638 Anserini +test263 Q0 687312 24 10.740178 Anserini +test263 Q0 6993622 25 10.670990 Anserini +test263 Q0 345078 26 10.651657 Anserini +test263 Q0 20340305 27 10.609509 Anserini +test263 Q0 13718894 28 10.603996 Anserini +test263 Q0 8609900 29 10.571802 Anserini +test263 Q0 15706827 30 10.570843 Anserini +test2630 Q0 12132454 1 16.619167 Anserini +test2630 Q0 101373 2 16.299120 Anserini +test2630 Q0 12132460 3 15.925013 Anserini +test2630 Q0 20641233 4 15.918707 Anserini +test2630 Q0 101374 5 15.857235 Anserini +test2630 Q0 12132452 6 15.796476 Anserini +test2630 Q0 2436826 7 15.702337 Anserini +test2630 Q0 4534571 8 15.663002 Anserini +test2630 Q0 2920589 9 15.600983 Anserini +test2630 Q0 101380 10 15.596054 Anserini +test2630 Q0 4534599 11 15.591537 Anserini +test2630 Q0 4534569 12 15.591537 Anserini +test2630 Q0 101358 13 15.544011 Anserini +test2630 Q0 11431415 14 15.378783 Anserini +test2630 Q0 20641234 15 15.270937 Anserini +test2630 Q0 101377 16 15.242123 Anserini +test2630 Q0 434520 17 15.239441 Anserini +test2630 Q0 101360 18 14.774505 Anserini +test2630 Q0 6431701 19 14.695873 Anserini +test2630 Q0 829851 20 14.550671 Anserini +test2630 Q0 101375 21 14.428549 Anserini +test2630 Q0 2920670 22 14.391594 Anserini +test2630 Q0 12132453 23 14.387726 Anserini +test2630 Q0 101385 24 14.325625 Anserini +test2630 Q0 101365 25 14.282074 Anserini +test2630 Q0 1288580 26 14.278124 Anserini +test2630 Q0 4534576 27 14.247135 Anserini +test2630 Q0 1288582 28 14.206168 Anserini +test2630 Q0 9726001 29 14.204877 Anserini +test2630 Q0 101378 30 14.171829 Anserini +test2631 Q0 5529061 1 16.176138 Anserini +test2631 Q0 5529064 2 15.805698 Anserini +test2631 Q0 5529063 3 15.218130 Anserini +test2631 Q0 10814791 4 14.780025 Anserini +test2631 Q0 5529067 5 14.094790 Anserini +test2631 Q0 729611 6 13.423695 Anserini +test2631 Q0 5529068 7 12.915356 Anserini +test2631 Q0 10814790 8 12.751299 Anserini +test2631 Q0 10814794 9 12.100561 Anserini +test2631 Q0 7701768 10 11.691658 Anserini +test2631 Q0 5529062 11 11.471818 Anserini +test2631 Q0 5529065 12 11.307241 Anserini +test2631 Q0 5529066 13 11.289963 Anserini +test2631 Q0 7291952 14 11.265054 Anserini +test2631 Q0 10814801 15 11.027878 Anserini +test2631 Q0 10814792 16 10.950402 Anserini +test2631 Q0 6268569 17 10.908322 Anserini +test2631 Q0 14496676 18 10.786491 Anserini +test2631 Q0 6946965 19 10.432570 Anserini +test2631 Q0 2916968 20 10.103486 Anserini +test2631 Q0 11720826 21 10.012888 Anserini +test2631 Q0 10814805 22 9.938807 Anserini +test2631 Q0 98916 23 9.902908 Anserini +test2631 Q0 10814799 24 9.891018 Anserini +test2631 Q0 16015814 25 9.836473 Anserini +test2631 Q0 10814802 26 9.819297 Anserini +test2631 Q0 1953608 27 9.784389 Anserini +test2631 Q0 15937202 28 9.716358 Anserini +test2631 Q0 14048526 29 9.690896 Anserini +test2631 Q0 15582997 30 9.674582 Anserini +test2632 Q0 4841429 1 15.759542 Anserini +test2632 Q0 4841432 2 15.505321 Anserini +test2632 Q0 5173912 3 15.165333 Anserini +test2632 Q0 15434979 4 15.016352 Anserini +test2632 Q0 15294528 5 14.594347 Anserini +test2632 Q0 3093103 6 14.400883 Anserini +test2632 Q0 5173875 7 14.168681 Anserini +test2632 Q0 3670135 8 14.130971 Anserini +test2632 Q0 2916495 9 14.065255 Anserini +test2632 Q0 5297788 10 13.708613 Anserini +test2632 Q0 5173903 11 13.668204 Anserini +test2632 Q0 20596568 12 13.651958 Anserini +test2632 Q0 4841430 13 13.587818 Anserini +test2632 Q0 7186569 14 13.582327 Anserini +test2632 Q0 3483914 15 13.569597 Anserini +test2632 Q0 3093104 16 13.512914 Anserini +test2632 Q0 5174247 17 13.481887 Anserini +test2632 Q0 11302490 18 13.366743 Anserini +test2632 Q0 3092319 19 13.364470 Anserini +test2632 Q0 4737196 20 13.294440 Anserini +test2632 Q0 5173870 21 13.222570 Anserini +test2632 Q0 17431412 22 13.161075 Anserini +test2632 Q0 38869 23 13.065724 Anserini +test2632 Q0 2700362 24 12.978876 Anserini +test2632 Q0 5173876 25 12.969924 Anserini +test2632 Q0 38862 26 12.968596 Anserini +test2632 Q0 1628603 27 12.876077 Anserini +test2632 Q0 7685970 28 12.848482 Anserini +test2632 Q0 5896149 29 12.783271 Anserini +test2632 Q0 5776817 30 12.778834 Anserini +test2633 Q0 2401072 1 13.920550 Anserini +test2633 Q0 17669487 2 11.714092 Anserini +test2633 Q0 4866554 3 11.320021 Anserini +test2633 Q0 15885175 4 11.081409 Anserini +test2633 Q0 17219544 5 10.895947 Anserini +test2633 Q0 9861284 6 10.763382 Anserini +test2633 Q0 13624401 7 10.634985 Anserini +test2633 Q0 13944221 8 10.630702 Anserini +test2633 Q0 2401073 9 10.579391 Anserini +test2633 Q0 9120352 10 10.535605 Anserini +test2633 Q0 7347997 11 10.526756 Anserini +test2633 Q0 16647093 12 10.321201 Anserini +test2633 Q0 10575948 13 10.269164 Anserini +test2633 Q0 4528396 14 10.245439 Anserini +test2633 Q0 12455714 15 10.244682 Anserini +test2633 Q0 17811036 16 10.183079 Anserini +test2633 Q0 17283184 17 10.173841 Anserini +test2633 Q0 15718414 18 10.143537 Anserini +test2633 Q0 11793333 19 10.084124 Anserini +test2633 Q0 6182576 20 9.978470 Anserini +test2633 Q0 15540972 21 9.971088 Anserini +test2633 Q0 904847 22 9.951729 Anserini +test2633 Q0 20772497 23 9.934309 Anserini +test2633 Q0 14508781 24 9.929901 Anserini +test2633 Q0 674412 25 9.864608 Anserini +test2633 Q0 18366396 26 9.855833 Anserini +test2633 Q0 20059348 27 9.855563 Anserini +test2633 Q0 12800564 28 9.831723 Anserini +test2633 Q0 15398462 29 9.763457 Anserini +test2633 Q0 8965654 30 9.763457 Anserini +test2634 Q0 2663258 1 13.340059 Anserini +test2634 Q0 15530546 2 13.183068 Anserini +test2634 Q0 1749184 3 12.447099 Anserini +test2634 Q0 14795791 4 12.220211 Anserini +test2634 Q0 10681831 5 12.157553 Anserini +test2634 Q0 2202536 6 12.126394 Anserini +test2634 Q0 2292948 7 12.094492 Anserini +test2634 Q0 15203149 8 12.092764 Anserini +test2634 Q0 3147241 9 12.053832 Anserini +test2634 Q0 3147236 10 12.041862 Anserini +test2634 Q0 2344170 11 11.995289 Anserini +test2634 Q0 2344169 12 11.983685 Anserini +test2634 Q0 14269641 13 11.686996 Anserini +test2634 Q0 6710301 14 11.590968 Anserini +test2634 Q0 6702069 15 11.586065 Anserini +test2634 Q0 11276755 16 11.403005 Anserini +test2634 Q0 10681844 17 11.349343 Anserini +test2634 Q0 20175511 18 11.343904 Anserini +test2634 Q0 6710307 19 11.202600 Anserini +test2634 Q0 11276757 20 11.202600 Anserini +test2634 Q0 2202500 21 11.176873 Anserini +test2634 Q0 2202509 22 11.073108 Anserini +test2634 Q0 3457555 23 11.044200 Anserini +test2634 Q0 6803673 24 11.022588 Anserini +test2634 Q0 15530550 25 10.977671 Anserini +test2634 Q0 2292957 26 10.902458 Anserini +test2634 Q0 16750454 27 10.864883 Anserini +test2634 Q0 15626878 28 10.779087 Anserini +test2634 Q0 2202534 29 10.647739 Anserini +test2634 Q0 4683078 30 10.510212 Anserini +test2635 Q0 18921346 1 18.898205 Anserini +test2635 Q0 10830025 2 18.859535 Anserini +test2635 Q0 18921348 3 17.905554 Anserini +test2635 Q0 18921350 4 17.905554 Anserini +test2635 Q0 18921357 5 17.694775 Anserini +test2635 Q0 18921349 6 17.555704 Anserini +test2635 Q0 10830022 7 17.482193 Anserini +test2635 Q0 10830024 8 16.995066 Anserini +test2635 Q0 18921355 9 16.926464 Anserini +test2635 Q0 18921364 10 16.880516 Anserini +test2635 Q0 18921361 11 16.511602 Anserini +test2635 Q0 18921351 12 16.335840 Anserini +test2635 Q0 10830026 13 16.315521 Anserini +test2635 Q0 10830021 14 16.315521 Anserini +test2635 Q0 20179787 15 16.185875 Anserini +test2635 Q0 18921347 16 16.090244 Anserini +test2635 Q0 18921359 17 16.000450 Anserini +test2635 Q0 18921363 18 15.950890 Anserini +test2635 Q0 18921362 19 15.886778 Anserini +test2635 Q0 18921360 20 15.864845 Anserini +test2635 Q0 10830023 21 15.802961 Anserini +test2635 Q0 18921352 22 15.802961 Anserini +test2635 Q0 20179786 23 15.744205 Anserini +test2635 Q0 20179788 24 15.279877 Anserini +test2635 Q0 18921353 25 15.279877 Anserini +test2635 Q0 10600273 26 14.596395 Anserini +test2635 Q0 14320989 27 14.508171 Anserini +test2635 Q0 10290561 28 14.380157 Anserini +test2635 Q0 10290555 29 14.374525 Anserini +test2635 Q0 5768806 30 13.838800 Anserini +test2636 Q0 10626431 1 10.806777 Anserini +test2636 Q0 10521354 2 10.579250 Anserini +test2636 Q0 16331779 3 10.445695 Anserini +test2636 Q0 6106600 4 10.403206 Anserini +test2636 Q0 7002465 5 10.311792 Anserini +test2636 Q0 15025408 6 10.286935 Anserini +test2636 Q0 20519758 7 10.231529 Anserini +test2636 Q0 15025417 8 10.207474 Anserini +test2636 Q0 17257283 9 10.079846 Anserini +test2636 Q0 16206037 10 10.009256 Anserini +test2636 Q0 17031389 11 9.990857 Anserini +test2636 Q0 10382612 12 9.928020 Anserini +test2636 Q0 20666748 13 9.926935 Anserini +test2636 Q0 4695284 14 9.915527 Anserini +test2636 Q0 247819 15 9.807474 Anserini +test2636 Q0 18987676 16 9.783333 Anserini +test2636 Q0 9403693 17 9.749306 Anserini +test2636 Q0 7192215 18 9.747826 Anserini +test2636 Q0 20666749 19 9.730980 Anserini +test2636 Q0 10021147 20 9.700225 Anserini +test2636 Q0 12924798 21 9.678493 Anserini +test2636 Q0 17550519 22 9.667528 Anserini +test2636 Q0 8431646 23 9.654779 Anserini +test2636 Q0 17160621 24 9.637945 Anserini +test2636 Q0 14225414 25 9.571723 Anserini +test2636 Q0 6994039 26 9.561195 Anserini +test2636 Q0 9954620 27 9.543172 Anserini +test2636 Q0 7506061 28 9.534905 Anserini +test2636 Q0 5127078 29 9.515110 Anserini +test2636 Q0 5110681 30 9.480921 Anserini +test2637 Q0 14315643 1 12.461212 Anserini +test2637 Q0 2430426 2 11.601086 Anserini +test2637 Q0 14315646 3 11.341267 Anserini +test2637 Q0 11480667 4 11.166656 Anserini +test2637 Q0 19148874 5 11.126503 Anserini +test2637 Q0 19148872 6 11.002672 Anserini +test2637 Q0 19148867 7 10.902689 Anserini +test2637 Q0 19148875 8 10.902689 Anserini +test2637 Q0 19148869 9 10.568689 Anserini +test2637 Q0 387079 10 10.452999 Anserini +test2637 Q0 4219103 11 10.229425 Anserini +test2637 Q0 14342403 12 10.221994 Anserini +test2637 Q0 14072064 13 10.026766 Anserini +test2637 Q0 17490362 14 9.998383 Anserini +test2637 Q0 19148870 15 9.871044 Anserini +test2637 Q0 5821775 16 9.735959 Anserini +test2637 Q0 11359286 17 9.644813 Anserini +test2637 Q0 13354116 18 9.617181 Anserini +test2637 Q0 3845898 19 9.579247 Anserini +test2637 Q0 1523784 20 9.561744 Anserini +test2637 Q0 14732499 21 9.560062 Anserini +test2637 Q0 14342408 22 9.549229 Anserini +test2637 Q0 8903963 23 9.490078 Anserini +test2637 Q0 9786570 24 9.467443 Anserini +test2637 Q0 18770410 25 9.452435 Anserini +test2637 Q0 14342395 26 9.384436 Anserini +test2637 Q0 14342397 27 9.384436 Anserini +test2637 Q0 14342396 28 9.317154 Anserini +test2637 Q0 20077411 29 9.258394 Anserini +test2637 Q0 2430421 30 9.232924 Anserini +test2638 Q0 3127531 1 12.371366 Anserini +test2638 Q0 19029843 2 11.947256 Anserini +test2638 Q0 18074092 3 11.723268 Anserini +test2638 Q0 11658643 4 11.635900 Anserini +test2638 Q0 9562945 5 11.335268 Anserini +test2638 Q0 7769888 6 11.325463 Anserini +test2638 Q0 15487536 7 11.130956 Anserini +test2638 Q0 5417946 8 11.099315 Anserini +test2638 Q0 11060176 9 11.080586 Anserini +test2638 Q0 17414359 10 11.063361 Anserini +test2638 Q0 5080497 11 11.012391 Anserini +test2638 Q0 13363566 12 10.985958 Anserini +test2638 Q0 14330498 13 10.926671 Anserini +test2638 Q0 18433796 14 10.896134 Anserini +test2638 Q0 14980116 15 10.884459 Anserini +test2638 Q0 5316388 16 10.867299 Anserini +test2638 Q0 15571394 17 10.846584 Anserini +test2638 Q0 12054265 18 10.789884 Anserini +test2638 Q0 9589751 19 10.779125 Anserini +test2638 Q0 20558788 20 10.714852 Anserini +test2638 Q0 6526427 21 10.689118 Anserini +test2638 Q0 15974892 22 10.684734 Anserini +test2638 Q0 5417949 23 10.682542 Anserini +test2638 Q0 3128866 24 10.647397 Anserini +test2638 Q0 17325716 25 10.646824 Anserini +test2638 Q0 18830225 26 10.633793 Anserini +test2638 Q0 9136090 27 10.604733 Anserini +test2638 Q0 12947213 28 10.561678 Anserini +test2638 Q0 13381258 29 10.523188 Anserini +test2638 Q0 5070743 30 10.521694 Anserini +test2639 Q0 2209117 1 14.486832 Anserini +test2639 Q0 14776966 2 14.021349 Anserini +test2639 Q0 2209139 3 12.293670 Anserini +test2639 Q0 2209148 4 12.200279 Anserini +test2639 Q0 10268441 5 12.193934 Anserini +test2639 Q0 823565 6 12.108346 Anserini +test2639 Q0 2209147 7 11.728123 Anserini +test2639 Q0 2209154 8 11.666341 Anserini +test2639 Q0 2209153 9 11.650181 Anserini +test2639 Q0 1431698 10 11.487368 Anserini +test2639 Q0 823567 11 11.223868 Anserini +test2639 Q0 2209130 12 11.107194 Anserini +test2639 Q0 10268438 13 11.107194 Anserini +test2639 Q0 2209128 14 11.107194 Anserini +test2639 Q0 12227 15 10.978531 Anserini +test2639 Q0 9748526 16 10.949730 Anserini +test2639 Q0 1734891 17 10.932360 Anserini +test2639 Q0 17412789 18 10.846024 Anserini +test2639 Q0 9757262 19 10.798204 Anserini +test2639 Q0 5748349 20 10.694827 Anserini +test2639 Q0 605737 21 10.694827 Anserini +test2639 Q0 11600663 22 10.571807 Anserini +test2639 Q0 2209123 23 10.534314 Anserini +test2639 Q0 15155806 24 10.497073 Anserini +test2639 Q0 15155810 25 10.497073 Anserini +test2639 Q0 5598671 26 10.496137 Anserini +test2639 Q0 5361925 27 10.412554 Anserini +test2639 Q0 12716064 28 10.391734 Anserini +test2639 Q0 17194309 29 10.347720 Anserini +test2639 Q0 823573 30 10.209206 Anserini +test264 Q0 17854930 1 22.219797 Anserini +test264 Q0 17854948 2 22.124737 Anserini +test264 Q0 17854936 3 21.910114 Anserini +test264 Q0 17854935 4 21.009134 Anserini +test264 Q0 17211926 5 21.009134 Anserini +test264 Q0 20036020 6 20.780434 Anserini +test264 Q0 17854941 7 20.496088 Anserini +test264 Q0 17854932 8 20.157204 Anserini +test264 Q0 19695802 9 20.156557 Anserini +test264 Q0 19695801 10 20.081738 Anserini +test264 Q0 17854937 11 19.928247 Anserini +test264 Q0 17854946 12 19.856421 Anserini +test264 Q0 17854940 13 19.816431 Anserini +test264 Q0 17854939 14 19.755104 Anserini +test264 Q0 19695806 15 19.703131 Anserini +test264 Q0 17854933 16 19.605368 Anserini +test264 Q0 16204578 17 19.366013 Anserini +test264 Q0 19695812 18 19.366013 Anserini +test264 Q0 16204575 19 19.281689 Anserini +test264 Q0 19695809 20 19.267509 Anserini +test264 Q0 20104918 21 19.202190 Anserini +test264 Q0 17854938 22 19.197567 Anserini +test264 Q0 20104916 23 19.137312 Anserini +test264 Q0 19695804 24 19.090054 Anserini +test264 Q0 17854934 25 19.090054 Anserini +test264 Q0 19695811 26 19.090054 Anserini +test264 Q0 12798261 27 18.878315 Anserini +test264 Q0 9245367 28 18.726101 Anserini +test264 Q0 9245368 29 18.649033 Anserini +test264 Q0 17854942 30 18.571795 Anserini +test2640 Q0 13514259 1 17.758932 Anserini +test2640 Q0 13514261 2 16.733200 Anserini +test2640 Q0 4623023 3 16.703564 Anserini +test2640 Q0 12370804 4 16.694624 Anserini +test2640 Q0 284439 5 16.693411 Anserini +test2640 Q0 13514258 6 16.670229 Anserini +test2640 Q0 628713 7 16.633163 Anserini +test2640 Q0 898832 8 16.610125 Anserini +test2640 Q0 4147926 9 16.552237 Anserini +test2640 Q0 628725 10 16.492899 Anserini +test2640 Q0 3917515 11 16.439625 Anserini +test2640 Q0 4622904 12 16.390947 Anserini +test2640 Q0 13514260 13 16.314209 Anserini +test2640 Q0 13514244 14 16.252403 Anserini +test2640 Q0 5479651 15 16.244596 Anserini +test2640 Q0 11957884 16 16.188784 Anserini +test2640 Q0 13514217 17 16.154095 Anserini +test2640 Q0 2370975 18 16.141031 Anserini +test2640 Q0 14528659 19 16.074860 Anserini +test2640 Q0 360198 20 16.052803 Anserini +test2640 Q0 284438 21 15.990284 Anserini +test2640 Q0 7058249 22 15.965745 Anserini +test2640 Q0 13514216 23 15.879898 Anserini +test2640 Q0 6268300 24 15.812544 Anserini +test2640 Q0 13514249 25 15.803686 Anserini +test2640 Q0 13514226 26 15.658243 Anserini +test2640 Q0 13514229 27 15.577669 Anserini +test2640 Q0 1475263 28 15.538490 Anserini +test2640 Q0 628734 29 15.468727 Anserini +test2640 Q0 4622922 30 15.461185 Anserini +test2641 Q0 2625876 1 13.823612 Anserini +test2641 Q0 4501546 2 12.676850 Anserini +test2641 Q0 20365116 3 12.614237 Anserini +test2641 Q0 2623160 4 12.505871 Anserini +test2641 Q0 6451306 5 12.499532 Anserini +test2641 Q0 9940848 6 12.418482 Anserini +test2641 Q0 2080029 7 12.280047 Anserini +test2641 Q0 8604943 8 12.270535 Anserini +test2641 Q0 9940835 9 12.114400 Anserini +test2641 Q0 18068758 10 12.080664 Anserini +test2641 Q0 20365075 11 12.050702 Anserini +test2641 Q0 8167055 12 12.023036 Anserini +test2641 Q0 10455868 13 11.994760 Anserini +test2641 Q0 4598195 14 11.948521 Anserini +test2641 Q0 6455227 15 11.917803 Anserini +test2641 Q0 2616139 16 11.894016 Anserini +test2641 Q0 2126154 17 11.886548 Anserini +test2641 Q0 6549531 18 11.859724 Anserini +test2641 Q0 1979373 19 11.853859 Anserini +test2641 Q0 4403151 20 11.852420 Anserini +test2641 Q0 1979334 21 11.840020 Anserini +test2641 Q0 8604935 22 11.837294 Anserini +test2641 Q0 4601509 23 11.825015 Anserini +test2641 Q0 3282355 24 11.799301 Anserini +test2641 Q0 3809269 25 11.798209 Anserini +test2641 Q0 3105295 26 11.792280 Anserini +test2641 Q0 2616065 27 11.784685 Anserini +test2641 Q0 8697641 28 11.713814 Anserini +test2641 Q0 4603877 29 11.713814 Anserini +test2641 Q0 4571256 30 11.698625 Anserini +test2642 Q0 6630030 1 15.564102 Anserini +test2642 Q0 5887704 2 15.325712 Anserini +test2642 Q0 4760146 3 15.302406 Anserini +test2642 Q0 4122146 4 15.166301 Anserini +test2642 Q0 4353584 5 15.096876 Anserini +test2642 Q0 4962048 6 14.850423 Anserini +test2642 Q0 4993701 7 14.794743 Anserini +test2642 Q0 5693559 8 14.703074 Anserini +test2642 Q0 1904161 9 14.633671 Anserini +test2642 Q0 1860618 10 14.617852 Anserini +test2642 Q0 1904121 11 14.545259 Anserini +test2642 Q0 5363406 12 14.489947 Anserini +test2642 Q0 3809369 13 14.476588 Anserini +test2642 Q0 4802888 14 14.463965 Anserini +test2642 Q0 3809362 15 14.357022 Anserini +test2642 Q0 6902897 16 14.308983 Anserini +test2642 Q0 6902883 17 14.296979 Anserini +test2642 Q0 1904126 18 14.295115 Anserini +test2642 Q0 14894042 19 14.277235 Anserini +test2642 Q0 3233118 20 14.243654 Anserini +test2642 Q0 6902888 21 14.234194 Anserini +test2642 Q0 7358651 22 14.218079 Anserini +test2642 Q0 11498981 23 14.206251 Anserini +test2642 Q0 5138119 24 14.206251 Anserini +test2642 Q0 4353570 25 14.177264 Anserini +test2642 Q0 3153773 26 14.173191 Anserini +test2642 Q0 4802876 27 14.154394 Anserini +test2642 Q0 4726809 28 14.073095 Anserini +test2642 Q0 3222208 29 14.047451 Anserini +test2642 Q0 7358645 30 14.043890 Anserini +test2643 Q0 17995376 1 13.032535 Anserini +test2643 Q0 4346069 2 12.352978 Anserini +test2643 Q0 16703737 3 11.645054 Anserini +test2643 Q0 18815394 4 11.440462 Anserini +test2643 Q0 4346363 5 11.317579 Anserini +test2643 Q0 18815390 6 11.233904 Anserini +test2643 Q0 16193168 7 11.193505 Anserini +test2643 Q0 12909185 8 10.912764 Anserini +test2643 Q0 1870944 9 10.707911 Anserini +test2643 Q0 18815393 10 10.699494 Anserini +test2643 Q0 129310 11 10.610638 Anserini +test2643 Q0 16179621 12 10.601571 Anserini +test2643 Q0 20336168 13 10.522641 Anserini +test2643 Q0 12610650 14 10.514397 Anserini +test2643 Q0 14358771 15 10.488749 Anserini +test2643 Q0 20335047 16 10.488749 Anserini +test2643 Q0 16153447 17 10.481936 Anserini +test2643 Q0 15202635 18 10.410666 Anserini +test2643 Q0 20585029 19 10.410666 Anserini +test2643 Q0 4346067 20 10.279224 Anserini +test2643 Q0 9030209 21 10.200897 Anserini +test2643 Q0 9576194 22 10.143814 Anserini +test2643 Q0 13848394 23 10.143814 Anserini +test2643 Q0 2789183 24 10.125758 Anserini +test2643 Q0 2789184 25 10.121355 Anserini +test2643 Q0 15032017 26 10.074806 Anserini +test2643 Q0 10743553 27 10.074806 Anserini +test2643 Q0 15789162 28 10.074806 Anserini +test2643 Q0 17958179 29 10.065155 Anserini +test2643 Q0 16387291 30 10.040791 Anserini +test2644 Q0 6242850 1 16.888857 Anserini +test2644 Q0 10031985 2 16.865671 Anserini +test2644 Q0 6242825 3 16.759308 Anserini +test2644 Q0 15860791 4 16.746878 Anserini +test2644 Q0 15860790 5 16.654535 Anserini +test2644 Q0 8418918 6 16.641279 Anserini +test2644 Q0 860256 7 16.305140 Anserini +test2644 Q0 13982554 8 16.188534 Anserini +test2644 Q0 16330924 9 16.115507 Anserini +test2644 Q0 6615709 10 15.939137 Anserini +test2644 Q0 3688800 11 15.937799 Anserini +test2644 Q0 14820984 12 15.855599 Anserini +test2644 Q0 14652667 13 15.819909 Anserini +test2644 Q0 14089771 14 15.815464 Anserini +test2644 Q0 4764816 15 15.811495 Anserini +test2644 Q0 16535652 16 15.742324 Anserini +test2644 Q0 16535651 17 15.742324 Anserini +test2644 Q0 14881742 18 15.671929 Anserini +test2644 Q0 13657311 19 15.658535 Anserini +test2644 Q0 5844970 20 15.573606 Anserini +test2644 Q0 4685083 21 15.513748 Anserini +test2644 Q0 12389390 22 15.513480 Anserini +test2644 Q0 2054644 23 15.500402 Anserini +test2644 Q0 5027953 24 15.490788 Anserini +test2644 Q0 13521564 25 15.479588 Anserini +test2644 Q0 5842167 26 15.391407 Anserini +test2644 Q0 5844969 27 15.368986 Anserini +test2644 Q0 5828832 28 15.355801 Anserini +test2644 Q0 18421939 29 15.299668 Anserini +test2644 Q0 4688573 30 15.264125 Anserini +test2645 Q0 20160087 1 15.087381 Anserini +test2645 Q0 20160091 2 13.964327 Anserini +test2645 Q0 20160088 3 12.947203 Anserini +test2645 Q0 20160090 4 12.894961 Anserini +test2645 Q0 2166505 5 12.047463 Anserini +test2645 Q0 7387343 6 11.692896 Anserini +test2645 Q0 20160089 7 11.081458 Anserini +test2645 Q0 10964407 8 10.959764 Anserini +test2645 Q0 20158093 9 10.896472 Anserini +test2645 Q0 12586598 10 10.896472 Anserini +test2645 Q0 20158094 11 10.784130 Anserini +test2645 Q0 13313583 12 10.380876 Anserini +test2645 Q0 7809961 13 10.356802 Anserini +test2645 Q0 3157741 14 10.241817 Anserini +test2645 Q0 20088887 15 10.137364 Anserini +test2645 Q0 8433040 16 10.133362 Anserini +test2645 Q0 9566992 17 9.946762 Anserini +test2645 Q0 8433035 18 9.902494 Anserini +test2645 Q0 16855753 19 9.855989 Anserini +test2645 Q0 3197892 20 9.827015 Anserini +test2645 Q0 18757608 21 9.824244 Anserini +test2645 Q0 1419406 22 9.726362 Anserini +test2645 Q0 12391542 23 9.489450 Anserini +test2645 Q0 4414071 24 9.379562 Anserini +test2645 Q0 9727548 25 9.333582 Anserini +test2645 Q0 3288981 26 9.309866 Anserini +test2645 Q0 11426685 27 9.289003 Anserini +test2645 Q0 19582123 28 9.280695 Anserini +test2645 Q0 9237132 29 9.280695 Anserini +test2645 Q0 6780817 30 9.260382 Anserini +test2646 Q0 7227045 1 15.492905 Anserini +test2646 Q0 3635113 2 14.848867 Anserini +test2646 Q0 12357489 3 14.692867 Anserini +test2646 Q0 8060754 4 14.669827 Anserini +test2646 Q0 12357498 5 14.668727 Anserini +test2646 Q0 7227044 6 14.207702 Anserini +test2646 Q0 3635110 7 14.164503 Anserini +test2646 Q0 6130734 8 13.768051 Anserini +test2646 Q0 12274054 9 13.233269 Anserini +test2646 Q0 10172167 10 13.195290 Anserini +test2646 Q0 10172165 11 13.195290 Anserini +test2646 Q0 14113744 12 13.175209 Anserini +test2646 Q0 4778568 13 13.012191 Anserini +test2646 Q0 18132067 14 12.951385 Anserini +test2646 Q0 293312 15 12.908895 Anserini +test2646 Q0 293309 16 12.696248 Anserini +test2646 Q0 293331 17 12.694323 Anserini +test2646 Q0 7227039 18 12.459739 Anserini +test2646 Q0 6173260 19 12.338531 Anserini +test2646 Q0 12984692 20 12.309793 Anserini +test2646 Q0 6173261 21 12.148338 Anserini +test2646 Q0 98013 22 12.116966 Anserini +test2646 Q0 292198 23 12.101734 Anserini +test2646 Q0 12357499 24 12.096222 Anserini +test2646 Q0 14082287 25 12.070642 Anserini +test2646 Q0 8821397 26 12.061584 Anserini +test2646 Q0 3172133 27 12.050106 Anserini +test2646 Q0 14724227 28 12.015708 Anserini +test2646 Q0 4565230 29 12.013858 Anserini +test2646 Q0 4565226 30 12.013858 Anserini +test2647 Q0 20348129 1 15.127039 Anserini +test2647 Q0 3910781 2 14.911404 Anserini +test2647 Q0 11827309 3 14.525423 Anserini +test2647 Q0 17362143 4 14.479141 Anserini +test2647 Q0 1627964 5 13.971577 Anserini +test2647 Q0 19714138 6 12.016903 Anserini +test2647 Q0 20348130 7 11.918274 Anserini +test2647 Q0 11964442 8 11.531624 Anserini +test2647 Q0 2037806 9 11.500149 Anserini +test2647 Q0 11982709 10 11.408938 Anserini +test2647 Q0 12859718 11 11.390132 Anserini +test2647 Q0 6121134 12 11.390132 Anserini +test2647 Q0 6121132 13 11.390132 Anserini +test2647 Q0 1627968 14 11.293760 Anserini +test2647 Q0 3342918 15 11.282268 Anserini +test2647 Q0 713856 16 11.176494 Anserini +test2647 Q0 12170307 17 11.082142 Anserini +test2647 Q0 1504896 18 10.334469 Anserini +test2647 Q0 12285719 19 10.093241 Anserini +test2647 Q0 14838402 20 9.841912 Anserini +test2647 Q0 20019567 21 9.811010 Anserini +test2647 Q0 2086066 22 9.793231 Anserini +test2647 Q0 1733842 23 9.781304 Anserini +test2647 Q0 1733845 24 9.721275 Anserini +test2647 Q0 2037810 25 9.690557 Anserini +test2647 Q0 492359 26 9.535515 Anserini +test2647 Q0 263481 27 9.404831 Anserini +test2647 Q0 9577832 28 9.274910 Anserini +test2647 Q0 5059227 29 9.191518 Anserini +test2647 Q0 5059225 30 9.189520 Anserini +test2648 Q0 17804033 1 14.873599 Anserini +test2648 Q0 20273500 2 14.186862 Anserini +test2648 Q0 20273502 3 14.174501 Anserini +test2648 Q0 9380435 4 14.052300 Anserini +test2648 Q0 687631 5 14.008952 Anserini +test2648 Q0 4591683 6 13.927716 Anserini +test2648 Q0 19358874 7 13.881280 Anserini +test2648 Q0 1685793 8 13.855062 Anserini +test2648 Q0 10945018 9 13.855062 Anserini +test2648 Q0 14245786 10 13.793055 Anserini +test2648 Q0 687598 11 13.497800 Anserini +test2648 Q0 14243008 12 13.437067 Anserini +test2648 Q0 15279438 13 13.393946 Anserini +test2648 Q0 13576356 14 13.357717 Anserini +test2648 Q0 8266639 15 13.355684 Anserini +test2648 Q0 13155068 16 13.339622 Anserini +test2648 Q0 4591685 17 13.333116 Anserini +test2648 Q0 13866930 18 13.266936 Anserini +test2648 Q0 4076743 19 13.180851 Anserini +test2648 Q0 16557658 20 13.158874 Anserini +test2648 Q0 4591680 21 13.156282 Anserini +test2648 Q0 7110723 22 13.152076 Anserini +test2648 Q0 687606 23 13.149828 Anserini +test2648 Q0 17706025 24 13.129419 Anserini +test2648 Q0 17392734 25 13.108636 Anserini +test2648 Q0 687620 26 13.078470 Anserini +test2648 Q0 1685797 27 13.035227 Anserini +test2648 Q0 1678647 28 12.933904 Anserini +test2648 Q0 14243009 29 12.923319 Anserini +test2648 Q0 341958 30 12.915784 Anserini +test2649 Q0 7965988 1 16.393858 Anserini +test2649 Q0 2793497 2 16.253780 Anserini +test2649 Q0 9636185 3 16.103966 Anserini +test2649 Q0 2517024 4 15.181501 Anserini +test2649 Q0 7005240 5 15.145282 Anserini +test2649 Q0 2517029 6 15.093947 Anserini +test2649 Q0 15706830 7 14.929574 Anserini +test2649 Q0 6939566 8 14.867566 Anserini +test2649 Q0 6939567 9 14.867566 Anserini +test2649 Q0 15248963 10 14.828135 Anserini +test2649 Q0 12676160 11 14.793633 Anserini +test2649 Q0 7007864 12 14.675863 Anserini +test2649 Q0 7005239 13 14.592572 Anserini +test2649 Q0 14364624 14 14.535460 Anserini +test2649 Q0 3576170 15 14.501511 Anserini +test2649 Q0 7007865 16 14.498589 Anserini +test2649 Q0 14364629 17 14.376109 Anserini +test2649 Q0 9213175 18 14.345134 Anserini +test2649 Q0 2793490 19 14.300858 Anserini +test2649 Q0 9558322 20 14.295088 Anserini +test2649 Q0 7838718 21 14.199729 Anserini +test2649 Q0 1228319 22 14.162870 Anserini +test2649 Q0 7003308 23 14.139702 Anserini +test2649 Q0 14102357 24 14.096758 Anserini +test2649 Q0 2517025 25 14.061268 Anserini +test2649 Q0 7003300 26 13.929387 Anserini +test2649 Q0 9220172 27 13.884665 Anserini +test2649 Q0 9558327 28 13.856087 Anserini +test2649 Q0 434130 29 13.803558 Anserini +test2649 Q0 20843579 30 13.786769 Anserini +test265 Q0 8822935 1 18.637062 Anserini +test265 Q0 1633357 2 18.335932 Anserini +test265 Q0 5888104 3 17.671072 Anserini +test265 Q0 8646914 4 17.469269 Anserini +test265 Q0 8822941 5 17.368320 Anserini +test265 Q0 8763026 6 17.207264 Anserini +test265 Q0 8763033 7 16.760706 Anserini +test265 Q0 9522803 8 16.604801 Anserini +test265 Q0 8822937 9 16.101606 Anserini +test265 Q0 9521728 10 15.858041 Anserini +test265 Q0 5888107 11 15.838416 Anserini +test265 Q0 8646911 12 15.751262 Anserini +test265 Q0 8822940 13 15.733242 Anserini +test265 Q0 9522793 14 15.603929 Anserini +test265 Q0 8822938 15 15.599926 Anserini +test265 Q0 8646913 16 15.587347 Anserini +test265 Q0 8822936 17 15.462770 Anserini +test265 Q0 10122700 18 15.253805 Anserini +test265 Q0 8996153 19 14.963439 Anserini +test265 Q0 8679952 20 14.632980 Anserini +test265 Q0 8822939 21 14.518345 Anserini +test265 Q0 8225618 22 14.048634 Anserini +test265 Q0 8225619 23 14.048634 Anserini +test265 Q0 8799180 24 14.021493 Anserini +test265 Q0 8799175 25 13.775172 Anserini +test265 Q0 8646912 26 13.775172 Anserini +test265 Q0 13557303 27 13.552113 Anserini +test265 Q0 8758510 28 13.341284 Anserini +test265 Q0 9521729 29 13.202301 Anserini +test265 Q0 1633359 30 13.202301 Anserini +test2650 Q0 17306578 1 13.738595 Anserini +test2650 Q0 5004765 2 13.236044 Anserini +test2650 Q0 19120281 3 13.087885 Anserini +test2650 Q0 13293650 4 13.007816 Anserini +test2650 Q0 6551110 5 12.949941 Anserini +test2650 Q0 1793744 6 12.600458 Anserini +test2650 Q0 5993139 7 12.553161 Anserini +test2650 Q0 19878166 8 12.421015 Anserini +test2650 Q0 16737143 9 12.421015 Anserini +test2650 Q0 1521343 10 12.350560 Anserini +test2650 Q0 1861980 11 12.262143 Anserini +test2650 Q0 12495437 12 12.164892 Anserini +test2650 Q0 12514765 13 12.160041 Anserini +test2650 Q0 20153128 14 12.090530 Anserini +test2650 Q0 20153133 15 12.090530 Anserini +test2650 Q0 15125867 16 11.952188 Anserini +test2650 Q0 16985439 17 11.928747 Anserini +test2650 Q0 5840559 18 11.836621 Anserini +test2650 Q0 16083256 19 11.816419 Anserini +test2650 Q0 9582560 20 11.760555 Anserini +test2650 Q0 10962331 21 11.446027 Anserini +test2650 Q0 20836348 22 11.402794 Anserini +test2650 Q0 5989572 23 11.370735 Anserini +test2650 Q0 9784401 24 11.254641 Anserini +test2650 Q0 6384736 25 11.246733 Anserini +test2650 Q0 12016589 26 11.246733 Anserini +test2650 Q0 5478133 27 11.146453 Anserini +test2650 Q0 19436561 28 11.141675 Anserini +test2650 Q0 17380344 29 11.131068 Anserini +test2650 Q0 18850173 30 10.965303 Anserini +test2651 Q0 4739798 1 17.627663 Anserini +test2651 Q0 8600 2 16.183952 Anserini +test2651 Q0 8599 3 15.940682 Anserini +test2651 Q0 10586355 4 15.818834 Anserini +test2651 Q0 2202342 5 15.484044 Anserini +test2651 Q0 9834490 6 15.395704 Anserini +test2651 Q0 2202343 7 15.054063 Anserini +test2651 Q0 81947 8 14.871817 Anserini +test2651 Q0 9811824 9 14.677723 Anserini +test2651 Q0 10858927 10 14.334156 Anserini +test2651 Q0 15776037 11 13.973338 Anserini +test2651 Q0 10586347 12 13.723419 Anserini +test2651 Q0 366384 13 13.698851 Anserini +test2651 Q0 760610 14 13.656358 Anserini +test2651 Q0 29930 15 13.531856 Anserini +test2651 Q0 4791302 16 13.163084 Anserini +test2651 Q0 2122570 17 13.145885 Anserini +test2651 Q0 9811825 18 13.034233 Anserini +test2651 Q0 9124375 19 12.886806 Anserini +test2651 Q0 15054497 20 12.884615 Anserini +test2651 Q0 9834494 21 12.835605 Anserini +test2651 Q0 12590335 22 12.825508 Anserini +test2651 Q0 3727629 23 12.823500 Anserini +test2651 Q0 8293228 24 12.811574 Anserini +test2651 Q0 5450848 25 12.796957 Anserini +test2651 Q0 4496476 26 12.786623 Anserini +test2651 Q0 18945403 27 12.723511 Anserini +test2651 Q0 3727645 28 12.718795 Anserini +test2651 Q0 267098 29 12.600654 Anserini +test2651 Q0 12773531 30 12.578476 Anserini +test2652 Q0 19370996 1 21.782818 Anserini +test2652 Q0 19370988 2 21.677143 Anserini +test2652 Q0 20140286 3 21.221981 Anserini +test2652 Q0 18563196 4 20.930796 Anserini +test2652 Q0 16335042 5 20.829195 Anserini +test2652 Q0 19479425 6 19.968109 Anserini +test2652 Q0 1994553 7 18.752367 Anserini +test2652 Q0 14456163 8 18.661251 Anserini +test2652 Q0 15519610 9 18.645088 Anserini +test2652 Q0 6929071 10 18.621668 Anserini +test2652 Q0 20177304 11 18.427553 Anserini +test2652 Q0 14315137 12 18.305096 Anserini +test2652 Q0 18676907 13 18.235847 Anserini +test2652 Q0 18676908 14 18.235847 Anserini +test2652 Q0 15259523 15 18.090307 Anserini +test2652 Q0 20103291 16 18.079334 Anserini +test2652 Q0 13848928 17 18.025360 Anserini +test2652 Q0 13768077 18 18.016479 Anserini +test2652 Q0 16039540 19 17.991102 Anserini +test2652 Q0 16946050 20 17.914011 Anserini +test2652 Q0 18590043 21 17.864948 Anserini +test2652 Q0 18567730 22 17.858139 Anserini +test2652 Q0 14315138 23 17.831310 Anserini +test2652 Q0 20698696 24 17.717543 Anserini +test2652 Q0 19437519 25 17.549530 Anserini +test2652 Q0 17962888 26 17.502806 Anserini +test2652 Q0 8480624 27 17.404886 Anserini +test2652 Q0 19922392 28 17.400326 Anserini +test2652 Q0 20140287 29 17.382816 Anserini +test2652 Q0 14544484 30 17.375231 Anserini +test2653 Q0 12911470 1 25.593925 Anserini +test2653 Q0 6488167 2 23.927643 Anserini +test2653 Q0 17080840 3 23.179585 Anserini +test2653 Q0 17080844 4 22.989481 Anserini +test2653 Q0 8016177 5 22.913956 Anserini +test2653 Q0 7233624 6 22.704821 Anserini +test2653 Q0 16754536 7 22.508148 Anserini +test2653 Q0 12911469 8 22.484886 Anserini +test2653 Q0 17080789 9 22.447567 Anserini +test2653 Q0 17080737 10 22.385708 Anserini +test2653 Q0 17568214 11 22.143900 Anserini +test2653 Q0 17080769 12 21.807795 Anserini +test2653 Q0 7272498 13 21.444401 Anserini +test2653 Q0 5869044 14 21.428980 Anserini +test2653 Q0 4067867 15 21.330616 Anserini +test2653 Q0 20510999 16 21.214218 Anserini +test2653 Q0 6337180 17 21.140919 Anserini +test2653 Q0 8016179 18 21.127920 Anserini +test2653 Q0 4067868 19 21.052216 Anserini +test2653 Q0 7233623 20 21.043037 Anserini +test2653 Q0 8016178 21 21.033840 Anserini +test2653 Q0 12593780 22 20.926682 Anserini +test2653 Q0 5486046 23 20.614204 Anserini +test2653 Q0 7003172 24 20.597328 Anserini +test2653 Q0 6573103 25 20.569407 Anserini +test2653 Q0 17568226 26 20.518536 Anserini +test2653 Q0 7003173 27 20.518095 Anserini +test2653 Q0 17080794 28 20.508512 Anserini +test2653 Q0 5486043 29 20.432156 Anserini +test2653 Q0 6489446 30 20.424471 Anserini +test2654 Q0 1309631 1 21.520689 Anserini +test2654 Q0 3080041 2 19.708418 Anserini +test2654 Q0 3080053 3 19.568363 Anserini +test2654 Q0 5032038 4 19.326527 Anserini +test2654 Q0 3080045 5 18.915148 Anserini +test2654 Q0 11303401 6 16.328922 Anserini +test2654 Q0 5032042 7 15.108390 Anserini +test2654 Q0 5032034 8 14.583224 Anserini +test2654 Q0 18558202 9 14.110331 Anserini +test2654 Q0 5032040 10 14.082800 Anserini +test2654 Q0 5425720 11 13.826595 Anserini +test2654 Q0 3080119 12 13.622849 Anserini +test2654 Q0 7180616 13 13.566668 Anserini +test2654 Q0 1309632 14 13.479998 Anserini +test2654 Q0 6323591 15 13.363275 Anserini +test2654 Q0 5032039 16 13.323136 Anserini +test2654 Q0 20008812 17 13.221361 Anserini +test2654 Q0 5032030 18 13.185416 Anserini +test2654 Q0 5032043 19 13.132829 Anserini +test2654 Q0 2586837 20 12.974727 Anserini +test2654 Q0 5032037 21 12.912487 Anserini +test2654 Q0 5032048 22 12.912487 Anserini +test2654 Q0 5032050 23 12.912487 Anserini +test2654 Q0 19026446 24 12.880513 Anserini +test2654 Q0 5032060 25 12.841330 Anserini +test2654 Q0 8150417 26 12.681621 Anserini +test2654 Q0 20008811 27 12.523420 Anserini +test2654 Q0 2103829 28 12.463541 Anserini +test2654 Q0 11874376 29 12.449016 Anserini +test2654 Q0 5032049 30 12.444872 Anserini +test2655 Q0 4181717 1 14.243235 Anserini +test2655 Q0 13029422 2 13.867830 Anserini +test2655 Q0 20105248 3 13.675892 Anserini +test2655 Q0 13029409 4 13.597361 Anserini +test2655 Q0 14326522 5 13.565928 Anserini +test2655 Q0 20105253 6 13.484563 Anserini +test2655 Q0 20105250 7 13.442198 Anserini +test2655 Q0 14503260 8 13.297771 Anserini +test2655 Q0 7615858 9 13.072893 Anserini +test2655 Q0 15693090 10 13.058113 Anserini +test2655 Q0 93939 11 12.840395 Anserini +test2655 Q0 6526891 12 12.838770 Anserini +test2655 Q0 13029392 13 12.808077 Anserini +test2655 Q0 15693093 14 12.794992 Anserini +test2655 Q0 13029427 15 12.743099 Anserini +test2655 Q0 14337813 16 12.608662 Anserini +test2655 Q0 18047671 17 12.510205 Anserini +test2655 Q0 13029425 18 12.478195 Anserini +test2655 Q0 13029407 19 12.433199 Anserini +test2655 Q0 15110891 20 12.199374 Anserini +test2655 Q0 17099858 21 12.141209 Anserini +test2655 Q0 5933957 22 12.078621 Anserini +test2655 Q0 17099859 23 12.078621 Anserini +test2655 Q0 14155713 24 12.037991 Anserini +test2655 Q0 15693085 25 12.023211 Anserini +test2655 Q0 7615860 26 11.968442 Anserini +test2655 Q0 10472169 27 11.889077 Anserini +test2655 Q0 13029401 28 11.881829 Anserini +test2655 Q0 6526889 29 11.771996 Anserini +test2655 Q0 17003598 30 11.673616 Anserini +test2656 Q0 20255945 1 15.522947 Anserini +test2656 Q0 20255948 2 15.102613 Anserini +test2656 Q0 8876757 3 14.878614 Anserini +test2656 Q0 20255947 4 12.857093 Anserini +test2656 Q0 17035902 5 12.350548 Anserini +test2656 Q0 8876759 6 11.363096 Anserini +test2656 Q0 8994852 7 11.233972 Anserini +test2656 Q0 18775448 8 11.183556 Anserini +test2656 Q0 14224259 9 11.115802 Anserini +test2656 Q0 14907547 10 11.059502 Anserini +test2656 Q0 7356241 11 11.056951 Anserini +test2656 Q0 6564244 12 10.830872 Anserini +test2656 Q0 10501033 13 10.740798 Anserini +test2656 Q0 8876758 14 10.697730 Anserini +test2656 Q0 18866934 15 10.662814 Anserini +test2656 Q0 14907524 16 10.662638 Anserini +test2656 Q0 19993901 17 10.662494 Anserini +test2656 Q0 11260584 18 10.623545 Anserini +test2656 Q0 5262284 19 10.608552 Anserini +test2656 Q0 14420667 20 10.586740 Anserini +test2656 Q0 18862508 21 10.563732 Anserini +test2656 Q0 19006333 22 10.557627 Anserini +test2656 Q0 14907535 23 10.521995 Anserini +test2656 Q0 14825568 24 10.475473 Anserini +test2656 Q0 19251331 25 10.443589 Anserini +test2656 Q0 9906750 26 10.424386 Anserini +test2656 Q0 20075266 27 10.416677 Anserini +test2656 Q0 19006336 28 10.392939 Anserini +test2656 Q0 16794595 29 10.389755 Anserini +test2656 Q0 14825569 30 10.383291 Anserini +test2657 Q0 17446673 1 9.839382 Anserini +test2657 Q0 10992127 2 9.744429 Anserini +test2657 Q0 10992129 3 9.744429 Anserini +test2657 Q0 11174148 4 9.628983 Anserini +test2657 Q0 12480278 5 9.508001 Anserini +test2657 Q0 19436956 6 9.350574 Anserini +test2657 Q0 11174147 7 9.230026 Anserini +test2657 Q0 15412977 8 8.915407 Anserini +test2657 Q0 6949984 9 8.855934 Anserini +test2657 Q0 10360244 10 8.812654 Anserini +test2657 Q0 12278036 11 8.803070 Anserini +test2657 Q0 5500215 12 8.781857 Anserini +test2657 Q0 7295901 13 8.781857 Anserini +test2657 Q0 8936396 14 8.752274 Anserini +test2657 Q0 7295909 15 8.716926 Anserini +test2657 Q0 15209788 16 8.685100 Anserini +test2657 Q0 5377308 17 8.660313 Anserini +test2657 Q0 12278037 18 8.609355 Anserini +test2657 Q0 20673286 19 8.601778 Anserini +test2657 Q0 18797683 20 8.591794 Anserini +test2657 Q0 12963534 21 8.525264 Anserini +test2657 Q0 4554135 22 8.496840 Anserini +test2657 Q0 12963541 23 8.396994 Anserini +test2657 Q0 15523010 24 8.384783 Anserini +test2657 Q0 4939457 25 8.368029 Anserini +test2657 Q0 17446668 26 8.364122 Anserini +test2657 Q0 17668756 27 8.357628 Anserini +test2657 Q0 889183 28 8.305588 Anserini +test2657 Q0 7659685 29 8.305588 Anserini +test2657 Q0 14994716 30 8.305588 Anserini +test2658 Q0 7888252 1 16.578310 Anserini +test2658 Q0 7888246 2 14.952993 Anserini +test2658 Q0 1792019 3 14.794904 Anserini +test2658 Q0 12417302 4 13.889268 Anserini +test2658 Q0 6517732 5 13.822242 Anserini +test2658 Q0 12417300 6 13.753191 Anserini +test2658 Q0 645442 7 13.648840 Anserini +test2658 Q0 18580460 8 13.453203 Anserini +test2658 Q0 7382683 9 13.409732 Anserini +test2658 Q0 14339855 10 13.155528 Anserini +test2658 Q0 16227694 11 13.123723 Anserini +test2658 Q0 17571744 12 13.028658 Anserini +test2658 Q0 17571746 13 13.028658 Anserini +test2658 Q0 8893562 14 12.929959 Anserini +test2658 Q0 20426735 15 12.885731 Anserini +test2658 Q0 17043355 16 12.702682 Anserini +test2658 Q0 9990672 17 12.522876 Anserini +test2658 Q0 9657190 18 12.510098 Anserini +test2658 Q0 3572108 19 12.454886 Anserini +test2658 Q0 4877220 20 12.387545 Anserini +test2658 Q0 7774568 21 12.374861 Anserini +test2658 Q0 3251878 22 12.333879 Anserini +test2658 Q0 14353791 23 12.310470 Anserini +test2658 Q0 5073526 24 12.289359 Anserini +test2658 Q0 20350655 25 12.260827 Anserini +test2658 Q0 17043365 26 12.254755 Anserini +test2658 Q0 14353790 27 12.201160 Anserini +test2658 Q0 14164072 28 12.151072 Anserini +test2658 Q0 14164077 29 12.151072 Anserini +test2658 Q0 4366679 30 12.135686 Anserini +test2659 Q0 20376781 1 15.241076 Anserini +test2659 Q0 18290618 2 15.147444 Anserini +test2659 Q0 17568175 3 14.557958 Anserini +test2659 Q0 17931997 4 14.206761 Anserini +test2659 Q0 5713665 5 14.143205 Anserini +test2659 Q0 12026066 6 14.101227 Anserini +test2659 Q0 8242957 7 14.098566 Anserini +test2659 Q0 7065117 8 13.812909 Anserini +test2659 Q0 12026065 9 13.797525 Anserini +test2659 Q0 188301 10 13.701822 Anserini +test2659 Q0 5924906 11 13.668245 Anserini +test2659 Q0 16851572 12 13.586704 Anserini +test2659 Q0 16826768 13 13.551184 Anserini +test2659 Q0 7065115 14 13.478456 Anserini +test2659 Q0 11021302 15 13.327179 Anserini +test2659 Q0 7480388 16 13.254754 Anserini +test2659 Q0 16824707 17 13.232952 Anserini +test2659 Q0 17074996 18 13.061930 Anserini +test2659 Q0 13148999 19 13.024878 Anserini +test2659 Q0 14739955 20 12.999903 Anserini +test2659 Q0 2381641 21 12.957528 Anserini +test2659 Q0 13347514 22 12.901111 Anserini +test2659 Q0 16471954 23 12.871711 Anserini +test2659 Q0 4282979 24 12.845854 Anserini +test2659 Q0 17160910 25 12.824730 Anserini +test2659 Q0 5609786 26 12.821956 Anserini +test2659 Q0 17614772 27 12.716810 Anserini +test2659 Q0 4832823 28 12.636424 Anserini +test2659 Q0 20309548 29 12.585790 Anserini +test2659 Q0 18261589 30 12.557652 Anserini +test266 Q0 18026557 1 14.846449 Anserini +test266 Q0 13023442 2 14.424834 Anserini +test266 Q0 3508512 3 13.410573 Anserini +test266 Q0 411994 4 13.212877 Anserini +test266 Q0 3340516 5 13.112379 Anserini +test266 Q0 11228593 6 12.783532 Anserini +test266 Q0 2159896 7 12.766862 Anserini +test266 Q0 7917762 8 12.703724 Anserini +test266 Q0 3605899 9 12.688391 Anserini +test266 Q0 17203418 10 12.603287 Anserini +test266 Q0 17024858 11 12.582839 Anserini +test266 Q0 1761536 12 12.412692 Anserini +test266 Q0 1779282 13 12.324517 Anserini +test266 Q0 657835 14 12.129423 Anserini +test266 Q0 10073447 15 12.101551 Anserini +test266 Q0 8501984 16 11.880860 Anserini +test266 Q0 7910615 17 11.790003 Anserini +test266 Q0 18479355 18 11.753020 Anserini +test266 Q0 7888093 19 11.753020 Anserini +test266 Q0 17286597 20 11.703424 Anserini +test266 Q0 18998187 21 11.695139 Anserini +test266 Q0 8548277 22 11.688007 Anserini +test266 Q0 1779283 23 11.662824 Anserini +test266 Q0 20734633 24 11.655066 Anserini +test266 Q0 17189417 25 11.556361 Anserini +test266 Q0 15701185 26 11.532679 Anserini +test266 Q0 20329609 27 11.523369 Anserini +test266 Q0 8501983 28 11.460401 Anserini +test266 Q0 11780375 29 11.434384 Anserini +test266 Q0 1779288 30 11.423984 Anserini +test2660 Q0 11292708 1 10.104772 Anserini +test2660 Q0 3471534 2 10.100336 Anserini +test2660 Q0 12958213 3 9.586940 Anserini +test2660 Q0 9559003 4 9.540202 Anserini +test2660 Q0 7824268 5 9.507014 Anserini +test2660 Q0 7275948 6 9.471790 Anserini +test2660 Q0 8835816 7 9.187539 Anserini +test2660 Q0 6898100 8 9.174176 Anserini +test2660 Q0 6898099 9 9.174176 Anserini +test2660 Q0 19421488 10 9.074254 Anserini +test2660 Q0 14950250 11 9.063479 Anserini +test2660 Q0 807889 12 8.987906 Anserini +test2660 Q0 9683826 13 8.987906 Anserini +test2660 Q0 1066487 14 8.987906 Anserini +test2660 Q0 920245 15 8.987906 Anserini +test2660 Q0 2503712 16 8.913712 Anserini +test2660 Q0 478073 17 8.816081 Anserini +test2660 Q0 3417118 18 8.792315 Anserini +test2660 Q0 20302333 19 8.734233 Anserini +test2660 Q0 6893982 20 8.703772 Anserini +test2660 Q0 1273928 21 8.682325 Anserini +test2660 Q0 11291580 22 8.653948 Anserini +test2660 Q0 9869941 23 8.652895 Anserini +test2660 Q0 9320056 24 8.643348 Anserini +test2660 Q0 2233921 25 8.624413 Anserini +test2660 Q0 11615337 26 8.622419 Anserini +test2660 Q0 16096731 27 8.622052 Anserini +test2660 Q0 6840508 28 8.619013 Anserini +test2660 Q0 2400978 29 8.602592 Anserini +test2660 Q0 5607227 30 8.602592 Anserini +test2661 Q0 7623036 1 12.475978 Anserini +test2661 Q0 705480 2 12.257765 Anserini +test2661 Q0 705487 3 11.779781 Anserini +test2661 Q0 705488 4 11.721504 Anserini +test2661 Q0 12819985 5 11.652719 Anserini +test2661 Q0 7182560 6 11.460073 Anserini +test2661 Q0 705451 7 11.457352 Anserini +test2661 Q0 9069150 8 11.397072 Anserini +test2661 Q0 361333 9 11.384690 Anserini +test2661 Q0 11390443 10 11.305724 Anserini +test2661 Q0 17442666 11 11.081673 Anserini +test2661 Q0 12819976 12 11.038932 Anserini +test2661 Q0 705462 13 10.990648 Anserini +test2661 Q0 12367959 14 10.955331 Anserini +test2661 Q0 705482 15 10.948893 Anserini +test2661 Q0 10087216 16 10.935785 Anserini +test2661 Q0 10773942 17 10.923266 Anserini +test2661 Q0 12819977 18 10.889761 Anserini +test2661 Q0 9839097 19 10.812584 Anserini +test2661 Q0 9839096 20 10.812584 Anserini +test2661 Q0 13038042 21 10.793561 Anserini +test2661 Q0 14456766 22 10.751566 Anserini +test2661 Q0 14456770 23 10.751566 Anserini +test2661 Q0 7623037 24 10.711502 Anserini +test2661 Q0 705463 25 10.663202 Anserini +test2661 Q0 705464 26 10.607434 Anserini +test2661 Q0 12819982 27 10.600001 Anserini +test2661 Q0 705484 28 10.446534 Anserini +test2661 Q0 705486 29 10.390719 Anserini +test2661 Q0 14456767 30 10.361643 Anserini +test2662 Q0 4811478 1 17.246380 Anserini +test2662 Q0 12510224 2 17.045511 Anserini +test2662 Q0 4811506 3 16.805330 Anserini +test2662 Q0 4811521 4 16.246054 Anserini +test2662 Q0 18761857 5 15.878384 Anserini +test2662 Q0 14569070 6 15.774167 Anserini +test2662 Q0 4811534 7 15.716640 Anserini +test2662 Q0 8397429 8 15.601128 Anserini +test2662 Q0 8397424 9 15.554447 Anserini +test2662 Q0 18022127 10 15.436373 Anserini +test2662 Q0 18761834 11 15.284334 Anserini +test2662 Q0 10185548 12 15.197910 Anserini +test2662 Q0 4811510 13 15.012010 Anserini +test2662 Q0 18863330 14 14.829437 Anserini +test2662 Q0 10185544 15 14.811603 Anserini +test2662 Q0 14569060 16 14.783411 Anserini +test2662 Q0 15598690 17 14.757327 Anserini +test2662 Q0 18022150 18 14.673738 Anserini +test2662 Q0 10185547 19 14.656820 Anserini +test2662 Q0 7310940 20 14.528062 Anserini +test2662 Q0 9936130 21 14.502857 Anserini +test2662 Q0 13545784 22 14.424786 Anserini +test2662 Q0 4811472 23 14.415342 Anserini +test2662 Q0 18863327 24 14.348104 Anserini +test2662 Q0 20973571 25 14.344886 Anserini +test2662 Q0 20973581 26 14.344886 Anserini +test2662 Q0 12510221 27 14.341792 Anserini +test2662 Q0 13545806 28 14.334992 Anserini +test2662 Q0 18761836 29 14.294856 Anserini +test2662 Q0 20161216 30 14.294856 Anserini +test2663 Q0 18014259 1 25.455395 Anserini +test2663 Q0 18014258 2 25.332220 Anserini +test2663 Q0 13304923 3 23.102692 Anserini +test2663 Q0 13304922 4 22.939226 Anserini +test2663 Q0 15580334 5 22.709143 Anserini +test2663 Q0 15580338 6 22.077477 Anserini +test2663 Q0 20115272 7 21.720325 Anserini +test2663 Q0 14780180 8 21.613605 Anserini +test2663 Q0 9934610 9 21.142056 Anserini +test2663 Q0 12567698 10 20.641731 Anserini +test2663 Q0 12588406 11 20.420570 Anserini +test2663 Q0 12592486 12 20.222279 Anserini +test2663 Q0 13213642 13 19.958298 Anserini +test2663 Q0 18257178 14 19.244532 Anserini +test2663 Q0 19445552 15 19.147707 Anserini +test2663 Q0 19854113 16 18.914431 Anserini +test2663 Q0 11041900 17 18.791941 Anserini +test2663 Q0 17213162 18 18.736021 Anserini +test2663 Q0 17975637 19 18.736021 Anserini +test2663 Q0 17975639 20 18.736021 Anserini +test2663 Q0 11041898 21 18.732664 Anserini +test2663 Q0 11739004 22 18.589830 Anserini +test2663 Q0 8669784 23 18.520531 Anserini +test2663 Q0 5252703 24 18.442545 Anserini +test2663 Q0 18452975 25 18.411480 Anserini +test2663 Q0 20663795 26 18.411480 Anserini +test2663 Q0 20663792 27 18.411480 Anserini +test2663 Q0 19445554 28 18.411480 Anserini +test2663 Q0 18787749 29 18.350163 Anserini +test2663 Q0 14634890 30 18.333683 Anserini +test2664 Q0 9129787 1 15.797207 Anserini +test2664 Q0 10507048 2 14.549175 Anserini +test2664 Q0 12510522 3 13.927908 Anserini +test2664 Q0 10871520 4 12.909595 Anserini +test2664 Q0 10507047 5 12.901925 Anserini +test2664 Q0 3227190 6 12.269553 Anserini +test2664 Q0 6853572 7 12.213258 Anserini +test2664 Q0 12510530 8 12.099047 Anserini +test2664 Q0 3227187 9 12.068491 Anserini +test2664 Q0 6853571 10 12.063446 Anserini +test2664 Q0 10507051 11 11.997466 Anserini +test2664 Q0 10507054 12 11.982048 Anserini +test2664 Q0 2428211 13 11.952335 Anserini +test2664 Q0 6853574 14 11.924863 Anserini +test2664 Q0 5586351 15 11.915323 Anserini +test2664 Q0 6853576 16 11.873590 Anserini +test2664 Q0 12510519 17 11.873590 Anserini +test2664 Q0 3227193 18 11.873590 Anserini +test2664 Q0 12510520 19 11.839272 Anserini +test2664 Q0 10507046 20 11.791619 Anserini +test2664 Q0 6853568 21 11.790402 Anserini +test2664 Q0 13899681 22 11.764907 Anserini +test2664 Q0 13899682 23 11.764907 Anserini +test2664 Q0 3226282 24 11.728369 Anserini +test2664 Q0 3227188 25 11.728369 Anserini +test2664 Q0 10507045 26 11.716933 Anserini +test2664 Q0 10507052 27 11.691751 Anserini +test2664 Q0 20573181 28 11.668027 Anserini +test2664 Q0 8785065 29 11.656146 Anserini +test2664 Q0 8785067 30 11.656146 Anserini +test2665 Q0 679673 1 19.485512 Anserini +test2665 Q0 12261784 2 19.465078 Anserini +test2665 Q0 149086 3 19.007959 Anserini +test2665 Q0 3905927 4 18.392281 Anserini +test2665 Q0 7937265 5 18.171377 Anserini +test2665 Q0 17348437 6 17.943537 Anserini +test2665 Q0 8330685 7 17.852800 Anserini +test2665 Q0 149144 8 17.762079 Anserini +test2665 Q0 12261804 9 17.655638 Anserini +test2665 Q0 4627063 10 17.370880 Anserini +test2665 Q0 12261802 11 17.363945 Anserini +test2665 Q0 8191915 12 17.217337 Anserini +test2665 Q0 12261803 13 17.212379 Anserini +test2665 Q0 3728662 14 17.205582 Anserini +test2665 Q0 19993829 15 17.159201 Anserini +test2665 Q0 14980794 16 16.975981 Anserini +test2665 Q0 13225765 17 16.777248 Anserini +test2665 Q0 4283204 18 16.651838 Anserini +test2665 Q0 8925275 19 16.530619 Anserini +test2665 Q0 4846572 20 16.513317 Anserini +test2665 Q0 2560627 21 16.501877 Anserini +test2665 Q0 13225764 22 16.455622 Anserini +test2665 Q0 10948972 23 16.444151 Anserini +test2665 Q0 18052318 24 16.305479 Anserini +test2665 Q0 6878419 25 16.290552 Anserini +test2665 Q0 15716967 26 16.289787 Anserini +test2665 Q0 149091 27 16.259775 Anserini +test2665 Q0 1646340 28 16.208277 Anserini +test2665 Q0 404122 29 16.171726 Anserini +test2665 Q0 11604256 30 16.087086 Anserini +test2666 Q0 16196944 1 19.711914 Anserini +test2666 Q0 16196948 2 16.988859 Anserini +test2666 Q0 17917263 3 16.667801 Anserini +test2666 Q0 8927502 4 15.725857 Anserini +test2666 Q0 17917262 5 14.732726 Anserini +test2666 Q0 13630855 6 14.410877 Anserini +test2666 Q0 20694046 7 14.308224 Anserini +test2666 Q0 4164247 8 14.015380 Anserini +test2666 Q0 20694047 9 13.944445 Anserini +test2666 Q0 15071945 10 13.798090 Anserini +test2666 Q0 16196947 11 13.790079 Anserini +test2666 Q0 17917265 12 13.738429 Anserini +test2666 Q0 14458495 13 13.542747 Anserini +test2666 Q0 16196949 14 13.487240 Anserini +test2666 Q0 17917261 15 13.377579 Anserini +test2666 Q0 16486842 16 13.299439 Anserini +test2666 Q0 8927503 17 13.103148 Anserini +test2666 Q0 14458509 18 12.987571 Anserini +test2666 Q0 16196945 19 12.704480 Anserini +test2666 Q0 16196940 20 12.657230 Anserini +test2666 Q0 17917264 21 12.528721 Anserini +test2666 Q0 16196941 22 12.214525 Anserini +test2666 Q0 7518271 23 11.847908 Anserini +test2666 Q0 14458506 24 11.847908 Anserini +test2666 Q0 2156300 25 11.847908 Anserini +test2666 Q0 11719934 26 11.723185 Anserini +test2666 Q0 11719945 27 11.723185 Anserini +test2666 Q0 10758767 28 11.723185 Anserini +test2666 Q0 16290366 29 11.723185 Anserini +test2666 Q0 19395897 30 11.723185 Anserini +test2667 Q0 10031326 1 24.321703 Anserini +test2667 Q0 10031327 2 23.069157 Anserini +test2667 Q0 10586085 3 18.732981 Anserini +test2667 Q0 18247670 4 18.338657 Anserini +test2667 Q0 18247672 5 18.338657 Anserini +test2667 Q0 17437022 6 15.964319 Anserini +test2667 Q0 4731621 7 15.375865 Anserini +test2667 Q0 18247671 8 15.337261 Anserini +test2667 Q0 5239110 9 14.997506 Anserini +test2667 Q0 10586084 10 14.949624 Anserini +test2667 Q0 19674611 11 14.481156 Anserini +test2667 Q0 19397306 12 14.411032 Anserini +test2667 Q0 5025523 13 14.374887 Anserini +test2667 Q0 19300449 14 14.319646 Anserini +test2667 Q0 6452921 15 13.764936 Anserini +test2667 Q0 6452930 16 13.694119 Anserini +test2667 Q0 19673305 17 13.642689 Anserini +test2667 Q0 12218718 18 13.470876 Anserini +test2667 Q0 19673314 19 13.330118 Anserini +test2667 Q0 19673741 20 13.255739 Anserini +test2667 Q0 12218715 21 13.205900 Anserini +test2667 Q0 19673471 22 12.665127 Anserini +test2667 Q0 9609916 23 12.545199 Anserini +test2667 Q0 8124869 24 12.538827 Anserini +test2667 Q0 8124862 25 12.538827 Anserini +test2667 Q0 19311883 26 12.473446 Anserini +test2667 Q0 6102366 27 12.464924 Anserini +test2667 Q0 21014825 28 12.444362 Anserini +test2667 Q0 12218717 29 12.282347 Anserini +test2667 Q0 8122055 30 12.162457 Anserini +test2668 Q0 15118402 1 14.545381 Anserini +test2668 Q0 6697073 2 13.352770 Anserini +test2668 Q0 12355189 3 13.122701 Anserini +test2668 Q0 12355204 4 13.055283 Anserini +test2668 Q0 10233333 5 12.329062 Anserini +test2668 Q0 29425 6 12.288572 Anserini +test2668 Q0 7410065 7 11.832447 Anserini +test2668 Q0 12346674 8 11.789404 Anserini +test2668 Q0 4359583 9 11.593026 Anserini +test2668 Q0 14691063 10 11.524000 Anserini +test2668 Q0 7410075 11 11.440674 Anserini +test2668 Q0 10233332 12 11.340844 Anserini +test2668 Q0 1753810 13 11.135121 Anserini +test2668 Q0 29428 14 11.080285 Anserini +test2668 Q0 29418 15 11.080285 Anserini +test2668 Q0 13039828 16 11.060549 Anserini +test2668 Q0 6533437 17 10.974644 Anserini +test2668 Q0 19785690 18 10.878388 Anserini +test2668 Q0 4016458 19 10.863346 Anserini +test2668 Q0 1773832 20 10.831233 Anserini +test2668 Q0 12346659 21 10.788656 Anserini +test2668 Q0 16598212 22 10.769862 Anserini +test2668 Q0 1747451 23 10.708314 Anserini +test2668 Q0 12346634 24 10.691072 Anserini +test2668 Q0 5898992 25 10.656937 Anserini +test2668 Q0 8921774 26 10.603458 Anserini +test2668 Q0 11701372 27 10.601524 Anserini +test2668 Q0 11185063 28 10.599913 Anserini +test2668 Q0 7410078 29 10.574482 Anserini +test2668 Q0 14035775 30 10.552804 Anserini +test2669 Q0 6442780 1 12.863042 Anserini +test2669 Q0 9025200 2 12.597409 Anserini +test2669 Q0 2309338 3 12.541754 Anserini +test2669 Q0 2309342 4 12.231615 Anserini +test2669 Q0 4210564 5 12.161234 Anserini +test2669 Q0 14211981 6 12.158018 Anserini +test2669 Q0 10659629 7 11.960570 Anserini +test2669 Q0 10659639 8 11.960570 Anserini +test2669 Q0 3315534 9 11.806553 Anserini +test2669 Q0 6624644 10 11.733418 Anserini +test2669 Q0 4480562 11 11.716083 Anserini +test2669 Q0 6624647 12 11.446415 Anserini +test2669 Q0 11940836 13 11.337068 Anserini +test2669 Q0 18456555 14 11.188337 Anserini +test2669 Q0 2309315 15 11.086933 Anserini +test2669 Q0 13169402 16 11.041306 Anserini +test2669 Q0 13169403 17 11.041306 Anserini +test2669 Q0 4480561 18 10.996050 Anserini +test2669 Q0 4480574 19 10.996050 Anserini +test2669 Q0 820171 20 10.996050 Anserini +test2669 Q0 820178 21 10.996050 Anserini +test2669 Q0 11940833 22 10.996050 Anserini +test2669 Q0 11940834 23 10.989048 Anserini +test2669 Q0 1651904 24 10.790524 Anserini +test2669 Q0 10659636 25 10.709663 Anserini +test2669 Q0 9890266 26 10.704568 Anserini +test2669 Q0 2309322 27 10.557492 Anserini +test2669 Q0 4210569 28 10.535479 Anserini +test2669 Q0 2309343 29 10.480602 Anserini +test2669 Q0 4480571 30 10.426294 Anserini +test267 Q0 13680454 1 15.522301 Anserini +test267 Q0 15212366 2 15.355368 Anserini +test267 Q0 120534 3 14.896554 Anserini +test267 Q0 4484876 4 13.989214 Anserini +test267 Q0 15212352 5 13.627432 Anserini +test267 Q0 1416941 6 13.613211 Anserini +test267 Q0 5043460 7 13.577507 Anserini +test267 Q0 120532 8 13.531044 Anserini +test267 Q0 17197553 9 13.471520 Anserini +test267 Q0 10307040 10 13.435402 Anserini +test267 Q0 11179818 11 13.407256 Anserini +test267 Q0 9918259 12 13.319769 Anserini +test267 Q0 11271919 13 13.318152 Anserini +test267 Q0 120467 14 13.137756 Anserini +test267 Q0 120551 15 13.116933 Anserini +test267 Q0 120538 16 13.090305 Anserini +test267 Q0 11824803 17 13.004940 Anserini +test267 Q0 6148230 18 12.999331 Anserini +test267 Q0 17197556 19 12.989768 Anserini +test267 Q0 7440964 20 12.967653 Anserini +test267 Q0 7227270 21 12.922071 Anserini +test267 Q0 15649605 22 12.910826 Anserini +test267 Q0 11644862 23 12.833492 Anserini +test267 Q0 14511939 24 12.787946 Anserini +test267 Q0 15212363 25 12.752744 Anserini +test267 Q0 13321323 26 12.745655 Anserini +test267 Q0 15200999 27 12.744095 Anserini +test267 Q0 2000812 28 12.744095 Anserini +test267 Q0 10307031 29 12.743898 Anserini +test267 Q0 6148239 30 12.699639 Anserini +test2670 Q0 4669333 1 17.235893 Anserini +test2670 Q0 6072303 2 16.926266 Anserini +test2670 Q0 16062844 3 16.231319 Anserini +test2670 Q0 14966540 4 16.059893 Anserini +test2670 Q0 16814655 5 16.031464 Anserini +test2670 Q0 8106760 6 15.930206 Anserini +test2670 Q0 405651 7 15.676565 Anserini +test2670 Q0 405547 8 15.602193 Anserini +test2670 Q0 14705231 9 15.424239 Anserini +test2670 Q0 7132615 10 15.205466 Anserini +test2670 Q0 678753 11 15.184649 Anserini +test2670 Q0 2269251 12 15.080606 Anserini +test2670 Q0 70995 13 15.060320 Anserini +test2670 Q0 405605 14 14.959167 Anserini +test2670 Q0 4669341 15 14.953672 Anserini +test2670 Q0 753559 16 14.903726 Anserini +test2670 Q0 6690232 17 14.840595 Anserini +test2670 Q0 9215949 18 14.814802 Anserini +test2670 Q0 12363222 19 14.695446 Anserini +test2670 Q0 6690231 20 14.642884 Anserini +test2670 Q0 3766261 21 14.640622 Anserini +test2670 Q0 9215948 22 14.555370 Anserini +test2670 Q0 14705233 23 14.456217 Anserini +test2670 Q0 14705228 24 14.431080 Anserini +test2670 Q0 620287 25 14.390596 Anserini +test2670 Q0 17858293 26 14.373699 Anserini +test2670 Q0 17858268 27 14.367290 Anserini +test2670 Q0 9215953 28 14.354072 Anserini +test2670 Q0 405600 29 14.309637 Anserini +test2670 Q0 12165756 30 14.285607 Anserini +test2671 Q0 10843992 1 10.592038 Anserini +test2671 Q0 15917816 2 10.145555 Anserini +test2671 Q0 14051442 3 10.065746 Anserini +test2671 Q0 8058590 4 9.670093 Anserini +test2671 Q0 20935373 5 9.402459 Anserini +test2671 Q0 2008347 6 9.377110 Anserini +test2671 Q0 4089531 7 9.288013 Anserini +test2671 Q0 14447701 8 9.212812 Anserini +test2671 Q0 6124821 9 9.150790 Anserini +test2671 Q0 5569654 10 9.138961 Anserini +test2671 Q0 2822003 11 9.138961 Anserini +test2671 Q0 3857630 12 9.138961 Anserini +test2671 Q0 13538707 13 9.053434 Anserini +test2671 Q0 7698978 14 9.053434 Anserini +test2671 Q0 18386547 15 8.851320 Anserini +test2671 Q0 10179637 16 8.851320 Anserini +test2671 Q0 11245086 17 8.790105 Anserini +test2671 Q0 17636672 18 8.771150 Anserini +test2671 Q0 7534732 19 8.771150 Anserini +test2671 Q0 1629531 20 8.692478 Anserini +test2671 Q0 9838129 21 8.692478 Anserini +test2671 Q0 998368 22 8.692478 Anserini +test2671 Q0 1833518 23 8.648839 Anserini +test2671 Q0 15966060 24 8.615263 Anserini +test2671 Q0 4526180 25 8.539464 Anserini +test2671 Q0 17702127 26 8.539464 Anserini +test2671 Q0 3794380 27 8.539464 Anserini +test2671 Q0 11000994 28 8.524199 Anserini +test2671 Q0 15973725 29 8.518855 Anserini +test2671 Q0 14888495 30 8.465313 Anserini +test2672 Q0 5790027 1 15.146414 Anserini +test2672 Q0 17802238 2 15.021505 Anserini +test2672 Q0 9311403 3 14.903270 Anserini +test2672 Q0 427275 4 14.817289 Anserini +test2672 Q0 1547047 5 14.678526 Anserini +test2672 Q0 427241 6 14.547930 Anserini +test2672 Q0 2342331 7 14.399033 Anserini +test2672 Q0 12443278 8 14.320367 Anserini +test2672 Q0 10452870 9 14.082724 Anserini +test2672 Q0 6815221 10 14.048761 Anserini +test2672 Q0 17341994 11 13.983602 Anserini +test2672 Q0 17341995 12 13.983602 Anserini +test2672 Q0 19275849 13 13.812924 Anserini +test2672 Q0 6238908 14 13.650251 Anserini +test2672 Q0 4868989 15 13.482430 Anserini +test2672 Q0 9311404 16 13.433031 Anserini +test2672 Q0 7503003 17 13.410705 Anserini +test2672 Q0 17355247 18 13.368697 Anserini +test2672 Q0 11410496 19 13.339416 Anserini +test2672 Q0 7141409 20 13.330928 Anserini +test2672 Q0 10417470 21 13.286508 Anserini +test2672 Q0 11356219 22 13.231091 Anserini +test2672 Q0 988618 23 13.182755 Anserini +test2672 Q0 11356212 24 13.176265 Anserini +test2672 Q0 913071 25 13.144295 Anserini +test2672 Q0 3692412 26 13.122017 Anserini +test2672 Q0 9825794 27 13.122017 Anserini +test2672 Q0 1547053 28 13.101213 Anserini +test2672 Q0 3692418 29 13.068334 Anserini +test2672 Q0 9825796 30 13.068334 Anserini +test2673 Q0 16068649 1 12.787017 Anserini +test2673 Q0 721920 2 9.457222 Anserini +test2673 Q0 1280910 3 9.091785 Anserini +test2673 Q0 5062055 4 9.080711 Anserini +test2673 Q0 5846899 5 9.060779 Anserini +test2673 Q0 6945982 6 9.007700 Anserini +test2673 Q0 159468 7 8.957994 Anserini +test2673 Q0 8796035 8 8.894401 Anserini +test2673 Q0 19070928 9 8.795310 Anserini +test2673 Q0 8796041 10 8.766936 Anserini +test2673 Q0 12067668 11 8.750486 Anserini +test2673 Q0 13329498 12 8.660377 Anserini +test2673 Q0 5846908 13 8.522747 Anserini +test2673 Q0 7371302 14 8.513546 Anserini +test2673 Q0 7260902 15 8.476999 Anserini +test2673 Q0 1280915 16 8.382284 Anserini +test2673 Q0 1458845 17 8.364414 Anserini +test2673 Q0 10754304 18 8.344260 Anserini +test2673 Q0 5846896 19 8.314084 Anserini +test2673 Q0 11504689 20 8.291516 Anserini +test2673 Q0 7186673 21 8.291516 Anserini +test2673 Q0 14766052 22 8.287495 Anserini +test2673 Q0 16879721 23 8.271439 Anserini +test2673 Q0 15269769 24 8.271439 Anserini +test2673 Q0 2708601 25 8.271439 Anserini +test2673 Q0 2633223 26 8.269488 Anserini +test2673 Q0 5043096 27 8.194317 Anserini +test2673 Q0 11501640 28 8.194317 Anserini +test2673 Q0 15800569 29 8.181449 Anserini +test2673 Q0 1280906 30 8.166034 Anserini +test2674 Q0 1268700 1 20.011257 Anserini +test2674 Q0 795540 2 19.924374 Anserini +test2674 Q0 4613700 3 19.901680 Anserini +test2674 Q0 154743 4 19.755362 Anserini +test2674 Q0 4613724 5 19.549364 Anserini +test2674 Q0 154744 6 19.434225 Anserini +test2674 Q0 7691926 7 19.423447 Anserini +test2674 Q0 154788 8 19.338223 Anserini +test2674 Q0 4399968 9 19.321619 Anserini +test2674 Q0 12465482 10 19.254694 Anserini +test2674 Q0 6378587 11 19.094925 Anserini +test2674 Q0 10503317 12 19.009432 Anserini +test2674 Q0 13787916 13 18.640911 Anserini +test2674 Q0 4144372 14 18.599649 Anserini +test2674 Q0 8359886 15 18.553167 Anserini +test2674 Q0 18655131 16 18.540483 Anserini +test2674 Q0 8129935 17 18.510082 Anserini +test2674 Q0 18655089 18 18.450518 Anserini +test2674 Q0 8415015 19 18.360371 Anserini +test2674 Q0 1268703 20 18.242611 Anserini +test2674 Q0 6378589 21 18.207726 Anserini +test2674 Q0 8359876 22 18.050879 Anserini +test2674 Q0 8800432 23 18.008167 Anserini +test2674 Q0 1268693 24 17.823275 Anserini +test2674 Q0 12465484 25 17.683636 Anserini +test2674 Q0 6378590 26 17.628923 Anserini +test2674 Q0 15361950 27 17.620903 Anserini +test2674 Q0 606166 28 17.580154 Anserini +test2674 Q0 18976731 29 17.580154 Anserini +test2674 Q0 17662663 30 17.567686 Anserini +test2675 Q0 13383714 1 12.757975 Anserini +test2675 Q0 12274275 2 11.877140 Anserini +test2675 Q0 1721087 3 11.874033 Anserini +test2675 Q0 5543407 4 11.591923 Anserini +test2675 Q0 12274283 5 11.571209 Anserini +test2675 Q0 19153243 6 11.557137 Anserini +test2675 Q0 3291521 7 11.484683 Anserini +test2675 Q0 9328356 8 11.249320 Anserini +test2675 Q0 7101109 9 11.241272 Anserini +test2675 Q0 13383716 10 11.072094 Anserini +test2675 Q0 2840854 11 11.045358 Anserini +test2675 Q0 13136774 12 11.030064 Anserini +test2675 Q0 9569517 13 10.934999 Anserini +test2675 Q0 12987925 14 10.746614 Anserini +test2675 Q0 6284237 15 10.680086 Anserini +test2675 Q0 3881911 16 10.666576 Anserini +test2675 Q0 12987926 17 10.607609 Anserini +test2675 Q0 11861768 18 10.605807 Anserini +test2675 Q0 6284241 19 10.550583 Anserini +test2675 Q0 17349773 20 10.546747 Anserini +test2675 Q0 13509168 21 10.480917 Anserini +test2675 Q0 4172782 22 10.381775 Anserini +test2675 Q0 3291546 23 10.344614 Anserini +test2675 Q0 4976557 24 10.256975 Anserini +test2675 Q0 10036741 25 10.256483 Anserini +test2675 Q0 3291527 26 10.232332 Anserini +test2675 Q0 18713186 27 10.192747 Anserini +test2675 Q0 3729581 28 10.172225 Anserini +test2675 Q0 1448384 29 10.168681 Anserini +test2675 Q0 12450815 30 10.168681 Anserini +test2676 Q0 6057841 1 14.330850 Anserini +test2676 Q0 6057842 2 12.000207 Anserini +test2676 Q0 5956236 3 11.721915 Anserini +test2676 Q0 7863427 4 10.803711 Anserini +test2676 Q0 20234542 5 10.701389 Anserini +test2676 Q0 9047074 6 10.393814 Anserini +test2676 Q0 18286017 7 10.244028 Anserini +test2676 Q0 18286035 8 10.111938 Anserini +test2676 Q0 18960900 9 10.055386 Anserini +test2676 Q0 18286016 10 9.999611 Anserini +test2676 Q0 8594465 11 9.880171 Anserini +test2676 Q0 3910390 12 9.846500 Anserini +test2676 Q0 20964173 13 9.710386 Anserini +test2676 Q0 8890281 14 9.677356 Anserini +test2676 Q0 20964164 15 9.677340 Anserini +test2676 Q0 1550485 16 9.625325 Anserini +test2676 Q0 3203716 17 9.572133 Anserini +test2676 Q0 18286031 18 9.553154 Anserini +test2676 Q0 18286075 19 9.553154 Anserini +test2676 Q0 1550492 20 9.504647 Anserini +test2676 Q0 20964165 21 9.504647 Anserini +test2676 Q0 12888056 22 9.504647 Anserini +test2676 Q0 20964175 23 9.493627 Anserini +test2676 Q0 1550484 24 9.475301 Anserini +test2676 Q0 3203728 25 9.461235 Anserini +test2676 Q0 7921337 26 9.437467 Anserini +test2676 Q0 1550490 27 9.417231 Anserini +test2676 Q0 3203692 28 9.385429 Anserini +test2676 Q0 18544287 29 9.385429 Anserini +test2676 Q0 1550504 30 9.322800 Anserini +test2677 Q0 6188533 1 22.052017 Anserini +test2677 Q0 12706494 2 20.028036 Anserini +test2677 Q0 12706495 3 19.400047 Anserini +test2677 Q0 5193420 4 16.957886 Anserini +test2677 Q0 3387660 5 16.797972 Anserini +test2677 Q0 5362890 6 16.312763 Anserini +test2677 Q0 5362889 7 16.221140 Anserini +test2677 Q0 20843225 8 16.097765 Anserini +test2677 Q0 5197758 9 16.005434 Anserini +test2677 Q0 17731693 10 15.927219 Anserini +test2677 Q0 12704162 11 15.855650 Anserini +test2677 Q0 5197763 12 15.812837 Anserini +test2677 Q0 5197788 13 15.739907 Anserini +test2677 Q0 17731695 14 15.657319 Anserini +test2677 Q0 3709953 15 15.624066 Anserini +test2677 Q0 6188536 16 15.442892 Anserini +test2677 Q0 2225342 17 15.168772 Anserini +test2677 Q0 1918987 18 15.104215 Anserini +test2677 Q0 1245131 19 15.077396 Anserini +test2677 Q0 6188535 20 15.012617 Anserini +test2677 Q0 6188534 21 14.935623 Anserini +test2677 Q0 6188532 22 14.859415 Anserini +test2677 Q0 14965283 23 14.179333 Anserini +test2677 Q0 17731694 24 14.140434 Anserini +test2677 Q0 7327699 25 14.112561 Anserini +test2677 Q0 1918964 26 14.034443 Anserini +test2677 Q0 3135884 27 14.014859 Anserini +test2677 Q0 10496696 28 13.970858 Anserini +test2677 Q0 20753590 29 13.962929 Anserini +test2677 Q0 5291334 30 13.945589 Anserini +test2678 Q0 20484602 1 11.288723 Anserini +test2678 Q0 9919452 2 10.790426 Anserini +test2678 Q0 14731364 3 10.736973 Anserini +test2678 Q0 20484599 4 10.653239 Anserini +test2678 Q0 1209852 5 10.574932 Anserini +test2678 Q0 20484607 6 10.303946 Anserini +test2678 Q0 20484597 7 10.216902 Anserini +test2678 Q0 8980193 8 10.095428 Anserini +test2678 Q0 20484601 9 10.082231 Anserini +test2678 Q0 1209851 10 10.007666 Anserini +test2678 Q0 1209855 11 9.925060 Anserini +test2678 Q0 20117154 12 9.771939 Anserini +test2678 Q0 14731365 13 9.760587 Anserini +test2678 Q0 727731 14 9.616265 Anserini +test2678 Q0 10824625 15 9.572986 Anserini +test2678 Q0 429466 16 9.562305 Anserini +test2678 Q0 6718677 17 9.524618 Anserini +test2678 Q0 11155749 18 9.523780 Anserini +test2678 Q0 15698772 19 9.362009 Anserini +test2678 Q0 20484600 20 9.278645 Anserini +test2678 Q0 10824626 21 9.274639 Anserini +test2678 Q0 14734152 22 9.251629 Anserini +test2678 Q0 6463759 23 9.221273 Anserini +test2678 Q0 5833599 24 9.215141 Anserini +test2678 Q0 9919456 25 9.187788 Anserini +test2678 Q0 10375466 26 9.148486 Anserini +test2678 Q0 14734150 27 9.126524 Anserini +test2678 Q0 20484598 28 9.043390 Anserini +test2678 Q0 20484603 29 9.034378 Anserini +test2678 Q0 10910980 30 9.030568 Anserini +test2679 Q0 16597384 1 13.637343 Anserini +test2679 Q0 10885367 2 12.853315 Anserini +test2679 Q0 16597385 3 12.656406 Anserini +test2679 Q0 16597382 4 12.151590 Anserini +test2679 Q0 4507118 5 11.544171 Anserini +test2679 Q0 1846506 6 11.512598 Anserini +test2679 Q0 18644256 7 11.440970 Anserini +test2679 Q0 13764605 8 11.305002 Anserini +test2679 Q0 2545012 9 11.214972 Anserini +test2679 Q0 4994760 10 11.174715 Anserini +test2679 Q0 4994761 11 11.174715 Anserini +test2679 Q0 19616381 12 10.852530 Anserini +test2679 Q0 17339323 13 10.828173 Anserini +test2679 Q0 3365384 14 10.709373 Anserini +test2679 Q0 17481580 15 10.566307 Anserini +test2679 Q0 4978930 16 10.559466 Anserini +test2679 Q0 8202439 17 10.500171 Anserini +test2679 Q0 16597383 18 10.453847 Anserini +test2679 Q0 10880233 19 10.440853 Anserini +test2679 Q0 15598639 20 10.368742 Anserini +test2679 Q0 7466742 21 10.309772 Anserini +test2679 Q0 8934815 22 10.293797 Anserini +test2679 Q0 8934826 23 10.293797 Anserini +test2679 Q0 12654113 24 10.270845 Anserini +test2679 Q0 218295 25 10.237048 Anserini +test2679 Q0 5249539 26 10.218387 Anserini +test2679 Q0 11083438 27 10.201241 Anserini +test2679 Q0 19046511 28 10.201241 Anserini +test2679 Q0 4507116 29 10.152722 Anserini +test2679 Q0 17433010 30 10.149050 Anserini +test268 Q0 11224422 1 11.628407 Anserini +test268 Q0 11270837 2 10.994991 Anserini +test268 Q0 11283428 3 10.970888 Anserini +test268 Q0 18024264 4 10.600981 Anserini +test268 Q0 12887838 5 10.222741 Anserini +test268 Q0 7981980 6 10.207294 Anserini +test268 Q0 13922942 7 10.116070 Anserini +test268 Q0 15211868 8 10.105758 Anserini +test268 Q0 6915249 9 10.021789 Anserini +test268 Q0 11533218 10 9.888741 Anserini +test268 Q0 11422050 11 9.740335 Anserini +test268 Q0 11375502 12 9.734018 Anserini +test268 Q0 13997716 13 9.701611 Anserini +test268 Q0 6569858 14 9.691834 Anserini +test268 Q0 15180408 15 9.644726 Anserini +test268 Q0 11414395 16 9.628345 Anserini +test268 Q0 11242842 17 9.624592 Anserini +test268 Q0 11545575 18 9.624262 Anserini +test268 Q0 11230828 19 9.621424 Anserini +test268 Q0 19177861 20 9.562837 Anserini +test268 Q0 11375501 21 9.557396 Anserini +test268 Q0 12578902 22 9.517847 Anserini +test268 Q0 11283430 23 9.498680 Anserini +test268 Q0 20031448 24 9.491591 Anserini +test268 Q0 12518110 25 9.463857 Anserini +test268 Q0 11552024 26 9.459245 Anserini +test268 Q0 12331405 27 9.442754 Anserini +test268 Q0 11536920 28 9.432209 Anserini +test268 Q0 11401684 29 9.391624 Anserini +test268 Q0 11401686 30 9.391624 Anserini +test2680 Q0 564744 1 13.293296 Anserini +test2680 Q0 13233028 2 12.288710 Anserini +test2680 Q0 14138419 3 12.171150 Anserini +test2680 Q0 12935520 4 12.022798 Anserini +test2680 Q0 9053657 5 11.840911 Anserini +test2680 Q0 14138465 6 11.681599 Anserini +test2680 Q0 14138384 7 11.653269 Anserini +test2680 Q0 9053576 8 11.638073 Anserini +test2680 Q0 4660303 9 11.565260 Anserini +test2680 Q0 6489933 10 11.528619 Anserini +test2680 Q0 2950294 11 11.463575 Anserini +test2680 Q0 93042 12 11.421691 Anserini +test2680 Q0 93016 13 11.370065 Anserini +test2680 Q0 93089 14 11.370065 Anserini +test2680 Q0 9098946 15 11.359122 Anserini +test2680 Q0 93046 16 11.342985 Anserini +test2680 Q0 936932 17 11.332129 Anserini +test2680 Q0 20062358 18 11.324314 Anserini +test2680 Q0 19830370 19 11.324314 Anserini +test2680 Q0 5739513 20 11.262798 Anserini +test2680 Q0 10112566 21 11.258266 Anserini +test2680 Q0 7038388 22 11.238527 Anserini +test2680 Q0 9397885 23 11.128745 Anserini +test2680 Q0 669671 24 11.124938 Anserini +test2680 Q0 5016897 25 11.081486 Anserini +test2680 Q0 10592963 26 11.056798 Anserini +test2680 Q0 12021967 27 11.054426 Anserini +test2680 Q0 8615353 28 11.051937 Anserini +test2680 Q0 1776721 29 11.029077 Anserini +test2680 Q0 435704 30 11.020350 Anserini +test2681 Q0 10963329 1 11.935054 Anserini +test2681 Q0 3699298 2 11.241499 Anserini +test2681 Q0 4432488 3 10.938767 Anserini +test2681 Q0 16749430 4 10.853145 Anserini +test2681 Q0 2479825 5 10.810572 Anserini +test2681 Q0 1549959 6 10.805923 Anserini +test2681 Q0 16593383 7 10.746618 Anserini +test2681 Q0 7222089 8 10.680287 Anserini +test2681 Q0 2652353 9 10.652721 Anserini +test2681 Q0 15949765 10 10.641860 Anserini +test2681 Q0 14433348 11 10.607786 Anserini +test2681 Q0 16799965 12 10.508495 Anserini +test2681 Q0 11702895 13 10.507669 Anserini +test2681 Q0 16592957 14 10.500468 Anserini +test2681 Q0 18131057 15 10.386297 Anserini +test2681 Q0 7571427 16 10.335773 Anserini +test2681 Q0 10348781 17 10.335773 Anserini +test2681 Q0 18833647 18 10.295527 Anserini +test2681 Q0 12689845 19 10.284500 Anserini +test2681 Q0 3522735 20 10.234325 Anserini +test2681 Q0 18413472 21 10.213982 Anserini +test2681 Q0 2570851 22 10.204771 Anserini +test2681 Q0 12767222 23 10.184707 Anserini +test2681 Q0 20348625 24 10.107457 Anserini +test2681 Q0 4913462 25 10.098120 Anserini +test2681 Q0 1870918 26 10.074753 Anserini +test2681 Q0 18928437 27 10.073283 Anserini +test2681 Q0 13021046 28 10.026123 Anserini +test2681 Q0 1992141 29 10.014476 Anserini +test2681 Q0 11710442 30 10.006598 Anserini +test2682 Q0 14843217 1 15.609720 Anserini +test2682 Q0 18539606 2 15.542883 Anserini +test2682 Q0 17836711 3 15.169671 Anserini +test2682 Q0 15619976 4 15.007751 Anserini +test2682 Q0 17846882 5 14.785291 Anserini +test2682 Q0 15598646 6 14.773648 Anserini +test2682 Q0 18452646 7 14.539506 Anserini +test2682 Q0 17838447 8 14.455994 Anserini +test2682 Q0 14445357 9 14.400617 Anserini +test2682 Q0 16514417 10 14.293370 Anserini +test2682 Q0 17846898 11 14.229528 Anserini +test2682 Q0 18583695 12 14.100485 Anserini +test2682 Q0 17844568 13 14.100485 Anserini +test2682 Q0 17684613 14 14.100485 Anserini +test2682 Q0 13372666 15 14.055601 Anserini +test2682 Q0 18040624 16 14.026626 Anserini +test2682 Q0 18039624 17 14.007238 Anserini +test2682 Q0 17598723 18 14.007238 Anserini +test2682 Q0 17532937 19 13.957614 Anserini +test2682 Q0 15619973 20 13.933346 Anserini +test2682 Q0 18039641 21 13.915377 Anserini +test2682 Q0 18248898 22 13.841463 Anserini +test2682 Q0 17915464 23 13.841463 Anserini +test2682 Q0 13320000 24 13.824866 Anserini +test2682 Q0 17672058 25 13.750943 Anserini +test2682 Q0 17491218 26 13.750943 Anserini +test2682 Q0 17491232 27 13.750943 Anserini +test2682 Q0 17915449 28 13.750943 Anserini +test2682 Q0 16886090 29 13.631598 Anserini +test2682 Q0 19600596 30 13.427309 Anserini +test2683 Q0 6471618 1 12.235668 Anserini +test2683 Q0 19728065 2 12.158010 Anserini +test2683 Q0 11419669 3 11.489894 Anserini +test2683 Q0 17467241 4 11.469021 Anserini +test2683 Q0 6471617 5 11.231277 Anserini +test2683 Q0 5150366 6 11.178602 Anserini +test2683 Q0 20346935 7 10.948074 Anserini +test2683 Q0 8851149 8 10.527531 Anserini +test2683 Q0 8851185 9 10.527531 Anserini +test2683 Q0 8642015 10 10.412268 Anserini +test2683 Q0 6906048 11 10.315959 Anserini +test2683 Q0 8339598 12 10.272171 Anserini +test2683 Q0 17812182 13 10.232569 Anserini +test2683 Q0 5150365 14 10.184711 Anserini +test2683 Q0 17655174 15 10.159499 Anserini +test2683 Q0 20291257 16 10.096943 Anserini +test2683 Q0 2451668 17 10.083130 Anserini +test2683 Q0 19981038 18 10.080777 Anserini +test2683 Q0 8339577 19 10.074933 Anserini +test2683 Q0 8058967 20 10.072859 Anserini +test2683 Q0 17738815 21 10.017786 Anserini +test2683 Q0 1992262 22 9.945740 Anserini +test2683 Q0 926230 23 9.945004 Anserini +test2683 Q0 19981039 24 9.834246 Anserini +test2683 Q0 12281405 25 9.823763 Anserini +test2683 Q0 12382134 26 9.822617 Anserini +test2683 Q0 17467232 27 9.767042 Anserini +test2683 Q0 9235472 28 9.749335 Anserini +test2683 Q0 2451708 29 9.746899 Anserini +test2683 Q0 6471620 30 9.746478 Anserini +test2684 Q0 11725382 1 12.461455 Anserini +test2684 Q0 3415836 2 12.232361 Anserini +test2684 Q0 3681363 3 12.199135 Anserini +test2684 Q0 3681329 4 12.199135 Anserini +test2684 Q0 8050349 5 11.550603 Anserini +test2684 Q0 17672993 6 11.443814 Anserini +test2684 Q0 15125703 7 11.333845 Anserini +test2684 Q0 1317491 8 11.277862 Anserini +test2684 Q0 5144376 9 11.014071 Anserini +test2684 Q0 379458 10 10.979952 Anserini +test2684 Q0 15450139 11 10.849883 Anserini +test2684 Q0 3681359 12 10.795182 Anserini +test2684 Q0 9589766 13 10.782607 Anserini +test2684 Q0 4881776 14 10.782607 Anserini +test2684 Q0 16958077 15 10.714884 Anserini +test2684 Q0 4986247 16 10.670774 Anserini +test2684 Q0 17205357 17 10.557369 Anserini +test2684 Q0 14254917 18 10.538065 Anserini +test2684 Q0 3384646 19 10.462185 Anserini +test2684 Q0 1317493 20 10.445033 Anserini +test2684 Q0 13874100 21 10.330195 Anserini +test2684 Q0 3698680 22 10.273757 Anserini +test2684 Q0 13809973 23 10.241432 Anserini +test2684 Q0 3681331 24 10.238883 Anserini +test2684 Q0 16243218 25 10.228436 Anserini +test2684 Q0 14027312 26 10.196069 Anserini +test2684 Q0 2606847 27 10.192366 Anserini +test2684 Q0 1317504 28 10.121913 Anserini +test2684 Q0 8050378 29 10.090319 Anserini +test2684 Q0 14254899 30 10.065141 Anserini +test2685 Q0 19087240 1 16.220686 Anserini +test2685 Q0 19087229 2 14.833434 Anserini +test2685 Q0 20552590 3 14.511160 Anserini +test2685 Q0 20158602 4 14.482103 Anserini +test2685 Q0 19087228 5 14.482103 Anserini +test2685 Q0 18842054 6 14.077868 Anserini +test2685 Q0 10235326 7 13.863433 Anserini +test2685 Q0 10235329 8 13.863433 Anserini +test2685 Q0 20158593 9 13.649864 Anserini +test2685 Q0 20153197 10 13.649864 Anserini +test2685 Q0 18848005 11 13.646118 Anserini +test2685 Q0 20161230 12 13.496298 Anserini +test2685 Q0 8448896 13 13.473568 Anserini +test2685 Q0 20727477 14 13.378040 Anserini +test2685 Q0 19087222 15 13.293840 Anserini +test2685 Q0 20161233 16 13.215105 Anserini +test2685 Q0 19289830 17 13.080541 Anserini +test2685 Q0 19152381 18 13.078857 Anserini +test2685 Q0 19087234 19 13.068705 Anserini +test2685 Q0 20158601 20 13.038136 Anserini +test2685 Q0 11970983 21 12.974085 Anserini +test2685 Q0 19523329 22 12.902402 Anserini +test2685 Q0 19167770 23 12.828692 Anserini +test2685 Q0 20153205 24 12.828692 Anserini +test2685 Q0 19087221 25 12.794092 Anserini +test2685 Q0 14775084 26 12.716930 Anserini +test2685 Q0 19535009 27 12.716494 Anserini +test2685 Q0 20153206 28 12.713810 Anserini +test2685 Q0 14775054 29 12.651374 Anserini +test2685 Q0 20161234 30 12.597378 Anserini +test2686 Q0 2561443 1 20.812347 Anserini +test2686 Q0 3251936 2 19.549725 Anserini +test2686 Q0 3000002 3 19.532951 Anserini +test2686 Q0 16300034 4 19.025372 Anserini +test2686 Q0 20524998 5 18.774826 Anserini +test2686 Q0 3000001 6 18.355968 Anserini +test2686 Q0 9578599 7 18.311548 Anserini +test2686 Q0 9124958 8 18.098099 Anserini +test2686 Q0 13301283 9 17.840425 Anserini +test2686 Q0 3160952 10 17.753876 Anserini +test2686 Q0 2304301 11 17.741703 Anserini +test2686 Q0 1851719 12 17.687666 Anserini +test2686 Q0 6226400 13 17.653629 Anserini +test2686 Q0 16300044 14 17.430756 Anserini +test2686 Q0 1851707 15 17.412594 Anserini +test2686 Q0 13003546 16 17.388620 Anserini +test2686 Q0 14304989 17 17.245579 Anserini +test2686 Q0 8057510 18 17.207800 Anserini +test2686 Q0 14972067 19 17.134121 Anserini +test2686 Q0 13301282 20 17.103592 Anserini +test2686 Q0 6590260 21 16.949295 Anserini +test2686 Q0 3434404 22 16.929192 Anserini +test2686 Q0 566051 23 16.926561 Anserini +test2686 Q0 1819094 24 16.869148 Anserini +test2686 Q0 12827269 25 16.861101 Anserini +test2686 Q0 1851703 26 16.836489 Anserini +test2686 Q0 5639152 27 16.828165 Anserini +test2686 Q0 20524995 28 16.802299 Anserini +test2686 Q0 6669597 29 16.772812 Anserini +test2686 Q0 1851710 30 16.751713 Anserini +test2687 Q0 7423504 1 26.303570 Anserini +test2687 Q0 16278245 2 25.934525 Anserini +test2687 Q0 8920024 3 25.908190 Anserini +test2687 Q0 16278247 4 25.758652 Anserini +test2687 Q0 7423503 5 22.021894 Anserini +test2687 Q0 7423500 6 21.880241 Anserini +test2687 Q0 16187703 7 20.744455 Anserini +test2687 Q0 4639042 8 19.751005 Anserini +test2687 Q0 3303973 9 19.558907 Anserini +test2687 Q0 15920254 10 19.406595 Anserini +test2687 Q0 7423501 11 19.373510 Anserini +test2687 Q0 5524899 12 19.177364 Anserini +test2687 Q0 16187675 13 19.094685 Anserini +test2687 Q0 8920020 14 18.916840 Anserini +test2687 Q0 8920025 15 18.783237 Anserini +test2687 Q0 3303982 16 18.618000 Anserini +test2687 Q0 6805230 17 18.310324 Anserini +test2687 Q0 11788766 18 18.229467 Anserini +test2687 Q0 15757295 19 18.153400 Anserini +test2687 Q0 10749927 20 17.814472 Anserini +test2687 Q0 5131676 21 17.742630 Anserini +test2687 Q0 16187710 22 17.712799 Anserini +test2687 Q0 16187706 23 17.698662 Anserini +test2687 Q0 16920911 24 17.511715 Anserini +test2687 Q0 4639043 25 17.412392 Anserini +test2687 Q0 3303981 26 17.386005 Anserini +test2687 Q0 18736185 27 17.221312 Anserini +test2687 Q0 8920030 28 17.070477 Anserini +test2687 Q0 3005840 29 17.017496 Anserini +test2687 Q0 11414008 30 16.977201 Anserini +test2688 Q0 9066309 1 13.458283 Anserini +test2688 Q0 12613307 2 13.325941 Anserini +test2688 Q0 9271108 3 13.292601 Anserini +test2688 Q0 14714190 4 12.909956 Anserini +test2688 Q0 118682 5 12.612717 Anserini +test2688 Q0 18071040 6 12.599831 Anserini +test2688 Q0 4882968 7 12.570782 Anserini +test2688 Q0 4882964 8 12.570782 Anserini +test2688 Q0 7876500 9 12.350404 Anserini +test2688 Q0 14718539 10 12.213450 Anserini +test2688 Q0 11282854 11 12.165062 Anserini +test2688 Q0 14916579 12 12.137671 Anserini +test2688 Q0 2781335 13 12.072830 Anserini +test2688 Q0 8676073 14 11.984989 Anserini +test2688 Q0 2696473 15 11.924752 Anserini +test2688 Q0 2696472 16 11.922501 Anserini +test2688 Q0 2913342 17 11.900941 Anserini +test2688 Q0 13917417 18 11.847007 Anserini +test2688 Q0 4986609 19 11.831532 Anserini +test2688 Q0 4689079 20 11.819232 Anserini +test2688 Q0 15205469 21 11.809095 Anserini +test2688 Q0 19770630 22 11.782105 Anserini +test2688 Q0 118676 23 11.759718 Anserini +test2688 Q0 2696478 24 11.753780 Anserini +test2688 Q0 7062587 25 11.709950 Anserini +test2688 Q0 1811868 26 11.706958 Anserini +test2688 Q0 5803672 27 11.593733 Anserini +test2688 Q0 10429 28 11.590374 Anserini +test2688 Q0 11889454 29 11.558500 Anserini +test2688 Q0 7124850 30 11.503550 Anserini +test2689 Q0 18295195 1 13.354424 Anserini +test2689 Q0 18295183 2 12.982947 Anserini +test2689 Q0 18295176 3 12.807682 Anserini +test2689 Q0 2271292 4 12.748783 Anserini +test2689 Q0 2271315 5 12.711547 Anserini +test2689 Q0 18295194 6 12.335235 Anserini +test2689 Q0 18295184 7 12.111420 Anserini +test2689 Q0 18295196 8 12.021294 Anserini +test2689 Q0 2271290 9 11.963467 Anserini +test2689 Q0 18295178 10 11.699968 Anserini +test2689 Q0 2271313 11 11.652272 Anserini +test2689 Q0 2271306 12 11.447516 Anserini +test2689 Q0 18295188 13 11.447516 Anserini +test2689 Q0 18295191 14 11.385900 Anserini +test2689 Q0 2271299 15 11.296112 Anserini +test2689 Q0 18295182 16 11.212798 Anserini +test2689 Q0 18295186 17 11.189426 Anserini +test2689 Q0 18295180 18 11.152748 Anserini +test2689 Q0 4379324 19 11.062376 Anserini +test2689 Q0 8321419 20 11.046132 Anserini +test2689 Q0 18981126 21 10.995746 Anserini +test2689 Q0 5084911 22 10.897898 Anserini +test2689 Q0 2271294 23 10.879636 Anserini +test2689 Q0 2271311 24 10.765993 Anserini +test2689 Q0 3517260 25 10.740608 Anserini +test2689 Q0 9333347 26 10.655442 Anserini +test2689 Q0 2271300 27 10.603498 Anserini +test2689 Q0 2271312 28 10.603498 Anserini +test2689 Q0 18295192 29 10.458235 Anserini +test2689 Q0 18507656 30 10.433731 Anserini +test269 Q0 2356466 1 17.679874 Anserini +test269 Q0 2356491 2 17.592184 Anserini +test269 Q0 2356472 3 17.185110 Anserini +test269 Q0 2356473 4 16.980909 Anserini +test269 Q0 2356471 5 15.069652 Anserini +test269 Q0 3907766 6 14.457213 Anserini +test269 Q0 3125995 7 14.169593 Anserini +test269 Q0 2356490 8 14.133480 Anserini +test269 Q0 3907768 9 14.131014 Anserini +test269 Q0 3432285 10 13.837550 Anserini +test269 Q0 9768655 11 13.797726 Anserini +test269 Q0 1518047 12 13.755378 Anserini +test269 Q0 9451789 13 13.696886 Anserini +test269 Q0 9768654 14 13.480334 Anserini +test269 Q0 6636033 15 13.381272 Anserini +test269 Q0 13851492 16 13.381272 Anserini +test269 Q0 6515989 17 13.018748 Anserini +test269 Q0 9768657 18 13.015331 Anserini +test269 Q0 2356474 19 12.863186 Anserini +test269 Q0 6731206 20 12.615925 Anserini +test269 Q0 6636034 21 12.575100 Anserini +test269 Q0 4557578 22 12.261743 Anserini +test269 Q0 3125994 23 12.149334 Anserini +test269 Q0 9768652 24 12.056112 Anserini +test269 Q0 1367502 25 11.995243 Anserini +test269 Q0 2963832 26 11.893150 Anserini +test269 Q0 12084388 27 11.882091 Anserini +test269 Q0 19066829 28 11.876439 Anserini +test269 Q0 9768663 29 11.863406 Anserini +test269 Q0 9772596 30 11.826880 Anserini +test2690 Q0 16314491 1 19.084475 Anserini +test2690 Q0 17056917 2 18.793142 Anserini +test2690 Q0 20265777 3 18.593241 Anserini +test2690 Q0 10815796 4 18.577957 Anserini +test2690 Q0 3938935 5 18.439634 Anserini +test2690 Q0 10815778 6 18.415955 Anserini +test2690 Q0 20265775 7 18.136457 Anserini +test2690 Q0 17056923 8 18.087921 Anserini +test2690 Q0 8061960 9 18.001387 Anserini +test2690 Q0 7687771 10 17.849495 Anserini +test2690 Q0 7687775 11 17.782627 Anserini +test2690 Q0 3765560 12 17.433619 Anserini +test2690 Q0 19171838 13 17.269550 Anserini +test2690 Q0 19171840 14 17.269550 Anserini +test2690 Q0 16314494 15 17.203026 Anserini +test2690 Q0 15546996 16 16.911011 Anserini +test2690 Q0 2402748 17 16.911011 Anserini +test2690 Q0 10815780 18 16.858776 Anserini +test2690 Q0 9876250 19 16.694071 Anserini +test2690 Q0 3293962 20 16.664917 Anserini +test2690 Q0 3293964 21 16.664917 Anserini +test2690 Q0 9249673 22 16.547483 Anserini +test2690 Q0 16314497 23 16.497541 Anserini +test2690 Q0 7687774 24 16.485786 Anserini +test2690 Q0 4101812 25 16.440203 Anserini +test2690 Q0 4121267 26 16.429426 Anserini +test2690 Q0 16314493 27 16.413008 Anserini +test2690 Q0 10815786 28 16.401237 Anserini +test2690 Q0 7108989 29 16.349937 Anserini +test2690 Q0 1340303 30 16.339361 Anserini +test2691 Q0 17905710 1 12.388050 Anserini +test2691 Q0 16606914 2 12.346375 Anserini +test2691 Q0 17905722 3 12.295868 Anserini +test2691 Q0 1832878 4 12.258548 Anserini +test2691 Q0 16606912 5 11.642323 Anserini +test2691 Q0 757335 6 11.344878 Anserini +test2691 Q0 17905719 7 11.281939 Anserini +test2691 Q0 13858866 8 11.281939 Anserini +test2691 Q0 17905721 9 11.273907 Anserini +test2691 Q0 17905711 10 11.042881 Anserini +test2691 Q0 7631596 11 10.902533 Anserini +test2691 Q0 17905715 12 10.668464 Anserini +test2691 Q0 17905712 13 10.561625 Anserini +test2691 Q0 19456059 14 10.354870 Anserini +test2691 Q0 17905713 15 10.276607 Anserini +test2691 Q0 17905718 16 10.169635 Anserini +test2691 Q0 880653 17 10.070044 Anserini +test2691 Q0 18001533 18 10.056426 Anserini +test2691 Q0 20822192 19 9.980200 Anserini +test2691 Q0 8225541 20 9.907413 Anserini +test2691 Q0 11121887 21 9.867515 Anserini +test2691 Q0 18723694 22 9.856439 Anserini +test2691 Q0 7468365 23 9.746204 Anserini +test2691 Q0 11121884 24 9.730619 Anserini +test2691 Q0 18001526 25 9.669558 Anserini +test2691 Q0 18001549 26 9.604095 Anserini +test2691 Q0 19379250 27 9.586390 Anserini +test2691 Q0 15938801 28 9.518917 Anserini +test2691 Q0 13543799 29 9.485085 Anserini +test2691 Q0 7056285 30 9.475657 Anserini +test2692 Q0 14751826 1 9.467155 Anserini +test2692 Q0 12894220 2 9.034900 Anserini +test2692 Q0 5446114 3 8.939790 Anserini +test2692 Q0 14550350 4 8.885843 Anserini +test2692 Q0 14947199 5 8.885843 Anserini +test2692 Q0 6146462 6 8.682349 Anserini +test2692 Q0 6146459 7 8.631596 Anserini +test2692 Q0 14386882 8 8.602427 Anserini +test2692 Q0 12155541 9 8.515204 Anserini +test2692 Q0 12155533 10 8.515204 Anserini +test2692 Q0 18636152 11 8.491432 Anserini +test2692 Q0 9184631 12 8.391961 Anserini +test2692 Q0 15073595 13 8.345702 Anserini +test2692 Q0 10515601 14 8.337938 Anserini +test2692 Q0 18038981 15 8.269934 Anserini +test2692 Q0 16881858 16 8.236379 Anserini +test2692 Q0 6146460 17 8.187662 Anserini +test2692 Q0 16826547 18 8.166327 Anserini +test2692 Q0 19347196 19 8.129707 Anserini +test2692 Q0 17870500 20 8.088516 Anserini +test2692 Q0 5755554 21 8.070379 Anserini +test2692 Q0 7366565 22 8.027063 Anserini +test2692 Q0 716756 23 8.007524 Anserini +test2692 Q0 19057661 24 7.991657 Anserini +test2692 Q0 12429217 25 7.979604 Anserini +test2692 Q0 6226786 26 7.913927 Anserini +test2692 Q0 18342799 27 7.896366 Anserini +test2692 Q0 9786518 28 7.891697 Anserini +test2692 Q0 17870498 29 7.838377 Anserini +test2692 Q0 13305949 30 7.822336 Anserini +test2693 Q0 169801 1 12.103609 Anserini +test2693 Q0 169806 2 12.027514 Anserini +test2693 Q0 169800 3 11.957466 Anserini +test2693 Q0 11595182 4 11.752689 Anserini +test2693 Q0 169805 5 11.752110 Anserini +test2693 Q0 6798654 6 11.607720 Anserini +test2693 Q0 4260202 7 11.539517 Anserini +test2693 Q0 6570763 8 11.347178 Anserini +test2693 Q0 169802 9 11.314999 Anserini +test2693 Q0 11569275 10 11.293139 Anserini +test2693 Q0 9131016 11 11.184750 Anserini +test2693 Q0 9113093 12 11.122695 Anserini +test2693 Q0 10871564 13 10.980721 Anserini +test2693 Q0 20035102 14 10.966687 Anserini +test2693 Q0 2710920 15 10.928538 Anserini +test2693 Q0 12104887 16 10.926514 Anserini +test2693 Q0 754750 17 10.898907 Anserini +test2693 Q0 6345067 18 10.633984 Anserini +test2693 Q0 782603 19 10.625558 Anserini +test2693 Q0 2277914 20 10.601144 Anserini +test2693 Q0 9393550 21 10.594265 Anserini +test2693 Q0 18106115 22 10.581591 Anserini +test2693 Q0 10561479 23 10.561578 Anserini +test2693 Q0 754755 24 10.549526 Anserini +test2693 Q0 8055951 25 10.541426 Anserini +test2693 Q0 4260206 26 10.515182 Anserini +test2693 Q0 18624613 27 10.505889 Anserini +test2693 Q0 12367942 28 10.471121 Anserini +test2693 Q0 20716282 29 10.444527 Anserini +test2693 Q0 421061 30 10.431821 Anserini +test2694 Q0 5399501 1 13.337896 Anserini +test2694 Q0 20215590 2 12.979625 Anserini +test2694 Q0 5473090 3 12.677993 Anserini +test2694 Q0 9609927 4 12.279420 Anserini +test2694 Q0 7928682 5 12.185328 Anserini +test2694 Q0 3785982 6 12.088885 Anserini +test2694 Q0 3785998 7 12.072122 Anserini +test2694 Q0 9609929 8 12.016212 Anserini +test2694 Q0 3785989 9 11.834669 Anserini +test2694 Q0 9609928 10 11.732177 Anserini +test2694 Q0 11455025 11 11.599515 Anserini +test2694 Q0 14655517 12 11.304669 Anserini +test2694 Q0 3785987 13 11.304461 Anserini +test2694 Q0 3635801 14 11.231510 Anserini +test2694 Q0 4962926 15 11.223334 Anserini +test2694 Q0 7035726 16 11.223334 Anserini +test2694 Q0 3785988 17 11.223334 Anserini +test2694 Q0 9609930 18 11.202331 Anserini +test2694 Q0 15339949 19 11.139271 Anserini +test2694 Q0 13727820 20 11.139271 Anserini +test2694 Q0 4319075 21 11.047549 Anserini +test2694 Q0 3785990 22 11.046267 Anserini +test2694 Q0 10881078 23 11.016456 Anserini +test2694 Q0 7928686 24 11.005640 Anserini +test2694 Q0 2328456 25 10.928444 Anserini +test2694 Q0 11588518 26 10.926746 Anserini +test2694 Q0 15041346 27 10.733166 Anserini +test2694 Q0 10881079 28 10.687248 Anserini +test2694 Q0 2218960 29 10.640466 Anserini +test2694 Q0 9268844 30 10.564789 Anserini +test2695 Q0 15469106 1 21.714365 Anserini +test2695 Q0 15469108 2 19.804544 Anserini +test2695 Q0 15469107 3 19.615614 Anserini +test2695 Q0 15469112 4 19.361418 Anserini +test2695 Q0 15469113 5 19.197947 Anserini +test2695 Q0 15469109 6 18.508062 Anserini +test2695 Q0 7321018 7 16.407948 Anserini +test2695 Q0 15808762 8 16.261532 Anserini +test2695 Q0 484933 9 16.174156 Anserini +test2695 Q0 2051720 10 16.137230 Anserini +test2695 Q0 15469110 11 16.049686 Anserini +test2695 Q0 4919124 12 16.030350 Anserini +test2695 Q0 19708562 13 15.692964 Anserini +test2695 Q0 4919123 14 15.538145 Anserini +test2695 Q0 16244633 15 15.435209 Anserini +test2695 Q0 13396312 16 15.278561 Anserini +test2695 Q0 484934 17 15.098412 Anserini +test2695 Q0 10946265 18 14.972983 Anserini +test2695 Q0 15415543 19 14.851200 Anserini +test2695 Q0 573190 20 14.801334 Anserini +test2695 Q0 21009240 21 14.734989 Anserini +test2695 Q0 4420604 22 14.518250 Anserini +test2695 Q0 484911 23 14.497312 Anserini +test2695 Q0 10153403 24 14.396067 Anserini +test2695 Q0 698386 25 14.394249 Anserini +test2695 Q0 3610576 26 14.357014 Anserini +test2695 Q0 8126276 27 14.285728 Anserini +test2695 Q0 484894 28 14.251753 Anserini +test2695 Q0 16422140 29 14.155245 Anserini +test2695 Q0 17415444 30 14.118162 Anserini +test2696 Q0 9836004 1 21.973864 Anserini +test2696 Q0 2754313 2 21.556786 Anserini +test2696 Q0 9835936 3 20.376551 Anserini +test2696 Q0 9835932 4 20.297068 Anserini +test2696 Q0 9835988 5 20.192982 Anserini +test2696 Q0 9836006 6 19.749681 Anserini +test2696 Q0 112548 7 19.740627 Anserini +test2696 Q0 2754316 8 19.397110 Anserini +test2696 Q0 2754315 9 19.374535 Anserini +test2696 Q0 112538 10 19.272701 Anserini +test2696 Q0 7158556 11 19.170744 Anserini +test2696 Q0 9835989 12 19.138439 Anserini +test2696 Q0 16151269 13 19.118443 Anserini +test2696 Q0 9835939 14 18.904211 Anserini +test2696 Q0 9835940 15 18.844852 Anserini +test2696 Q0 2754318 16 18.778585 Anserini +test2696 Q0 9835976 17 18.763243 Anserini +test2696 Q0 112547 18 18.744350 Anserini +test2696 Q0 8933859 19 18.718618 Anserini +test2696 Q0 9835933 20 18.696985 Anserini +test2696 Q0 112539 21 18.558962 Anserini +test2696 Q0 15133216 22 18.557192 Anserini +test2696 Q0 14273447 23 18.482384 Anserini +test2696 Q0 15133215 24 18.410831 Anserini +test2696 Q0 4167265 25 18.370113 Anserini +test2696 Q0 9835937 26 18.288773 Anserini +test2696 Q0 9836007 27 18.238361 Anserini +test2696 Q0 9835961 28 18.230289 Anserini +test2696 Q0 9835934 29 18.109184 Anserini +test2696 Q0 9835958 30 18.087675 Anserini +test2697 Q0 8784299 1 12.452461 Anserini +test2697 Q0 8784300 2 12.130583 Anserini +test2697 Q0 8784304 3 11.508037 Anserini +test2697 Q0 19959918 4 11.409294 Anserini +test2697 Q0 12294573 5 11.221683 Anserini +test2697 Q0 8784303 6 11.220512 Anserini +test2697 Q0 19959921 7 11.180995 Anserini +test2697 Q0 5249667 8 11.035099 Anserini +test2697 Q0 5249639 9 10.973297 Anserini +test2697 Q0 20506832 10 10.870735 Anserini +test2697 Q0 11966720 11 10.847040 Anserini +test2697 Q0 7900198 12 10.748523 Anserini +test2697 Q0 19959919 13 10.639725 Anserini +test2697 Q0 19959917 14 10.580364 Anserini +test2697 Q0 8078795 15 10.532372 Anserini +test2697 Q0 20506831 16 10.454882 Anserini +test2697 Q0 20506833 17 10.449959 Anserini +test2697 Q0 11770420 18 10.405784 Anserini +test2697 Q0 11770423 19 10.320484 Anserini +test2697 Q0 5810894 20 10.300198 Anserini +test2697 Q0 11265490 21 10.278356 Anserini +test2697 Q0 1358557 22 10.208971 Anserini +test2697 Q0 8802993 23 10.141203 Anserini +test2697 Q0 9644716 24 10.101183 Anserini +test2697 Q0 8784302 25 10.042227 Anserini +test2697 Q0 7481723 26 10.036029 Anserini +test2697 Q0 4046404 27 9.985572 Anserini +test2697 Q0 1402519 28 9.925644 Anserini +test2697 Q0 7481722 29 9.894397 Anserini +test2697 Q0 17305082 30 9.784002 Anserini +test2698 Q0 9220 1 18.380268 Anserini +test2698 Q0 9280 2 18.143383 Anserini +test2698 Q0 9306 3 17.400028 Anserini +test2698 Q0 9340 4 17.348145 Anserini +test2698 Q0 311768 5 16.734884 Anserini +test2698 Q0 9251 6 16.319401 Anserini +test2698 Q0 9343 7 16.284306 Anserini +test2698 Q0 1402630 8 16.166122 Anserini +test2698 Q0 9328 9 16.103827 Anserini +test2698 Q0 592531 10 15.942243 Anserini +test2698 Q0 4719810 11 15.839081 Anserini +test2698 Q0 10667938 12 15.807281 Anserini +test2698 Q0 9345 13 15.766275 Anserini +test2698 Q0 9285 14 15.601912 Anserini +test2698 Q0 10667940 15 15.599903 Anserini +test2698 Q0 9324 16 15.508972 Anserini +test2698 Q0 9339 17 15.405653 Anserini +test2698 Q0 6738007 18 15.266155 Anserini +test2698 Q0 9231 19 15.258325 Anserini +test2698 Q0 6827404 20 15.193146 Anserini +test2698 Q0 4563306 21 15.193146 Anserini +test2698 Q0 763645 22 15.077503 Anserini +test2698 Q0 9305 23 15.077503 Anserini +test2698 Q0 879694 24 15.044977 Anserini +test2698 Q0 879686 25 15.009845 Anserini +test2698 Q0 69060 26 14.997555 Anserini +test2698 Q0 311822 27 14.974619 Anserini +test2698 Q0 1289650 28 14.873460 Anserini +test2698 Q0 9326 29 14.861584 Anserini +test2698 Q0 6593733 30 14.850607 Anserini +test2699 Q0 2522583 1 13.721664 Anserini +test2699 Q0 17193713 2 12.738822 Anserini +test2699 Q0 16318280 3 12.720491 Anserini +test2699 Q0 12533175 4 12.637642 Anserini +test2699 Q0 15096643 5 12.400291 Anserini +test2699 Q0 12139248 6 11.919437 Anserini +test2699 Q0 6174806 7 11.859194 Anserini +test2699 Q0 6680905 8 11.650106 Anserini +test2699 Q0 5219725 9 11.454216 Anserini +test2699 Q0 8280697 10 11.398000 Anserini +test2699 Q0 12248252 11 11.296002 Anserini +test2699 Q0 747454 12 11.289066 Anserini +test2699 Q0 1375722 13 11.180067 Anserini +test2699 Q0 4851202 14 11.180067 Anserini +test2699 Q0 2164082 15 11.158026 Anserini +test2699 Q0 13142152 16 11.154643 Anserini +test2699 Q0 2923156 17 11.078387 Anserini +test2699 Q0 4851204 18 11.073217 Anserini +test2699 Q0 5048265 19 10.968452 Anserini +test2699 Q0 7149432 20 10.968452 Anserini +test2699 Q0 19516391 21 10.867111 Anserini +test2699 Q0 19516393 22 10.867111 Anserini +test2699 Q0 9931621 23 10.773471 Anserini +test2699 Q0 6577705 24 10.660997 Anserini +test2699 Q0 17207831 25 10.660834 Anserini +test2699 Q0 8297630 26 10.639169 Anserini +test2699 Q0 5797436 27 10.551955 Anserini +test2699 Q0 6005293 28 10.496716 Anserini +test2699 Q0 14121156 29 10.496716 Anserini +test2699 Q0 13324300 30 10.423107 Anserini +test27 Q0 9844615 1 14.409257 Anserini +test27 Q0 9844613 2 14.173178 Anserini +test27 Q0 10196029 3 14.126836 Anserini +test27 Q0 10020488 4 13.919435 Anserini +test27 Q0 10247919 5 13.876803 Anserini +test27 Q0 8707651 6 13.704826 Anserini +test27 Q0 10277607 7 13.574780 Anserini +test27 Q0 16032677 8 13.542799 Anserini +test27 Q0 9844614 9 13.483753 Anserini +test27 Q0 10755654 10 13.449355 Anserini +test27 Q0 9844617 11 13.449355 Anserini +test27 Q0 9774632 12 13.391776 Anserini +test27 Q0 10268761 13 13.251366 Anserini +test27 Q0 9593578 14 13.221045 Anserini +test27 Q0 10247623 15 13.183442 Anserini +test27 Q0 10108054 16 13.116030 Anserini +test27 Q0 10360212 17 13.095224 Anserini +test27 Q0 10744274 18 13.075623 Anserini +test27 Q0 10360211 19 13.065443 Anserini +test27 Q0 10232638 20 13.034493 Anserini +test27 Q0 4409893 21 13.002389 Anserini +test27 Q0 10196024 22 12.951818 Anserini +test27 Q0 10330735 23 12.925659 Anserini +test27 Q0 10755658 24 12.909430 Anserini +test27 Q0 10196026 25 12.865725 Anserini +test27 Q0 10755656 26 12.814545 Anserini +test27 Q0 10277608 27 12.803644 Anserini +test27 Q0 3529853 28 12.737679 Anserini +test27 Q0 13875145 29 12.698840 Anserini +test27 Q0 9612340 30 12.682753 Anserini +test270 Q0 818700 1 12.724481 Anserini +test270 Q0 13215035 2 10.441161 Anserini +test270 Q0 799361 3 10.355398 Anserini +test270 Q0 855034 4 10.131983 Anserini +test270 Q0 805783 5 10.062971 Anserini +test270 Q0 1518408 6 9.935981 Anserini +test270 Q0 818735 7 9.935410 Anserini +test270 Q0 3390697 8 9.885313 Anserini +test270 Q0 809926 9 9.750670 Anserini +test270 Q0 14364073 10 9.684203 Anserini +test270 Q0 16850887 11 9.604892 Anserini +test270 Q0 791797 12 9.600960 Anserini +test270 Q0 11266687 13 9.587533 Anserini +test270 Q0 950667 14 9.538916 Anserini +test270 Q0 3594881 15 9.526436 Anserini +test270 Q0 686062 16 9.514414 Anserini +test270 Q0 5167961 17 9.503152 Anserini +test270 Q0 859444 18 9.479097 Anserini +test270 Q0 811267 19 9.412846 Anserini +test270 Q0 1035690 20 9.412846 Anserini +test270 Q0 16954766 21 9.382719 Anserini +test270 Q0 680922 22 9.379865 Anserini +test270 Q0 1040195 23 9.379307 Anserini +test270 Q0 7877802 24 9.379307 Anserini +test270 Q0 1033707 25 9.286152 Anserini +test270 Q0 6704611 26 9.278317 Anserini +test270 Q0 950461 27 9.251560 Anserini +test270 Q0 13361441 28 9.245533 Anserini +test270 Q0 6467065 29 9.233425 Anserini +test270 Q0 3883855 30 9.220882 Anserini +test2700 Q0 5222307 1 14.071695 Anserini +test2700 Q0 5222308 2 13.785994 Anserini +test2700 Q0 9423284 3 13.598851 Anserini +test2700 Q0 2493729 4 12.974921 Anserini +test2700 Q0 18364227 5 12.964186 Anserini +test2700 Q0 13533653 6 12.505548 Anserini +test2700 Q0 9423280 7 12.493631 Anserini +test2700 Q0 578283 8 12.253631 Anserini +test2700 Q0 5222311 9 12.237881 Anserini +test2700 Q0 9423283 10 12.038252 Anserini +test2700 Q0 5309349 11 11.910718 Anserini +test2700 Q0 5222310 12 11.896637 Anserini +test2700 Q0 578287 13 11.793010 Anserini +test2700 Q0 20130023 14 11.683228 Anserini +test2700 Q0 3457398 15 11.644887 Anserini +test2700 Q0 9423285 16 11.642729 Anserini +test2700 Q0 578305 17 11.542615 Anserini +test2700 Q0 9423282 18 11.371403 Anserini +test2700 Q0 13533654 19 11.358898 Anserini +test2700 Q0 13719023 20 11.332265 Anserini +test2700 Q0 13719026 21 11.332265 Anserini +test2700 Q0 578290 22 11.220757 Anserini +test2700 Q0 5373767 23 11.143856 Anserini +test2700 Q0 8054536 24 11.085673 Anserini +test2700 Q0 13961406 25 10.980612 Anserini +test2700 Q0 9376271 26 10.961798 Anserini +test2700 Q0 9423281 27 10.956211 Anserini +test2700 Q0 10516551 28 10.827950 Anserini +test2700 Q0 9058134 29 10.823179 Anserini +test2700 Q0 11445854 30 10.787575 Anserini +test2701 Q0 16541035 1 19.037199 Anserini +test2701 Q0 16541034 2 18.923458 Anserini +test2701 Q0 11918765 3 18.788139 Anserini +test2701 Q0 16541083 4 18.651138 Anserini +test2701 Q0 11918755 5 18.600758 Anserini +test2701 Q0 7745317 6 18.073191 Anserini +test2701 Q0 11918766 7 18.046839 Anserini +test2701 Q0 11918752 8 17.893684 Anserini +test2701 Q0 12872594 9 17.669319 Anserini +test2701 Q0 7802015 10 17.357149 Anserini +test2701 Q0 11918781 11 17.193216 Anserini +test2701 Q0 16536742 12 17.032997 Anserini +test2701 Q0 11918778 13 16.957136 Anserini +test2701 Q0 1701622 14 16.865080 Anserini +test2701 Q0 803405 15 16.827646 Anserini +test2701 Q0 9371458 16 16.821474 Anserini +test2701 Q0 803385 17 16.786953 Anserini +test2701 Q0 803370 18 16.717176 Anserini +test2701 Q0 14759555 19 16.623831 Anserini +test2701 Q0 15729488 20 16.589226 Anserini +test2701 Q0 803813 21 16.500490 Anserini +test2701 Q0 11918777 22 16.409924 Anserini +test2701 Q0 9370667 23 16.403881 Anserini +test2701 Q0 803401 24 16.214294 Anserini +test2701 Q0 11295734 25 16.182760 Anserini +test2701 Q0 14258953 26 15.990578 Anserini +test2701 Q0 15690774 27 15.978541 Anserini +test2701 Q0 803406 28 15.904208 Anserini +test2701 Q0 17249616 29 15.902419 Anserini +test2701 Q0 11944579 30 15.888113 Anserini +test2702 Q0 17387232 1 15.109563 Anserini +test2702 Q0 145166 2 14.308783 Anserini +test2702 Q0 11889194 3 14.191838 Anserini +test2702 Q0 13753821 4 13.923819 Anserini +test2702 Q0 8545347 5 13.880173 Anserini +test2702 Q0 5324641 6 13.785447 Anserini +test2702 Q0 10917182 7 13.512383 Anserini +test2702 Q0 10928814 8 13.396210 Anserini +test2702 Q0 15238337 9 13.324911 Anserini +test2702 Q0 11889186 10 13.319350 Anserini +test2702 Q0 2186185 11 13.240506 Anserini +test2702 Q0 145171 12 13.093859 Anserini +test2702 Q0 5641568 13 13.054236 Anserini +test2702 Q0 15059506 14 12.947927 Anserini +test2702 Q0 7559747 15 12.908934 Anserini +test2702 Q0 7482442 16 12.877663 Anserini +test2702 Q0 11889188 17 12.757091 Anserini +test2702 Q0 14863854 18 12.734111 Anserini +test2702 Q0 11889198 19 12.729699 Anserini +test2702 Q0 13918491 20 12.677836 Anserini +test2702 Q0 145168 21 12.600360 Anserini +test2702 Q0 5715854 22 12.549405 Anserini +test2702 Q0 3812445 23 12.545153 Anserini +test2702 Q0 14510913 24 12.376489 Anserini +test2702 Q0 14410940 25 12.346045 Anserini +test2702 Q0 17121106 26 12.335093 Anserini +test2702 Q0 2186176 27 12.322922 Anserini +test2702 Q0 10039162 28 12.291050 Anserini +test2702 Q0 8546874 29 12.287524 Anserini +test2702 Q0 11352038 30 12.252975 Anserini +test2703 Q0 1885786 1 20.897343 Anserini +test2703 Q0 12031527 2 19.726406 Anserini +test2703 Q0 4059232 3 18.255341 Anserini +test2703 Q0 5870401 4 18.126919 Anserini +test2703 Q0 12261825 5 17.811169 Anserini +test2703 Q0 12261867 6 17.811169 Anserini +test2703 Q0 2401953 7 17.805685 Anserini +test2703 Q0 10005016 8 17.772394 Anserini +test2703 Q0 20019710 9 17.740488 Anserini +test2703 Q0 205163 10 17.671797 Anserini +test2703 Q0 2401951 11 17.665956 Anserini +test2703 Q0 6055772 12 17.651445 Anserini +test2703 Q0 2956419 13 17.646704 Anserini +test2703 Q0 2956409 14 17.644030 Anserini +test2703 Q0 6613247 15 17.588835 Anserini +test2703 Q0 1885787 16 17.529345 Anserini +test2703 Q0 1712845 17 17.517967 Anserini +test2703 Q0 6613251 18 17.302467 Anserini +test2703 Q0 2956411 19 17.209599 Anserini +test2703 Q0 6613254 20 17.112089 Anserini +test2703 Q0 2403296 21 17.107035 Anserini +test2703 Q0 2403287 22 17.015783 Anserini +test2703 Q0 9455764 23 16.877535 Anserini +test2703 Q0 4316184 24 16.830074 Anserini +test2703 Q0 19502533 25 16.786705 Anserini +test2703 Q0 503310 26 16.759920 Anserini +test2703 Q0 1712767 27 16.757370 Anserini +test2703 Q0 3317087 28 16.699991 Anserini +test2703 Q0 2403291 29 16.693048 Anserini +test2703 Q0 9867614 30 16.527952 Anserini +test2704 Q0 5700639 1 16.305681 Anserini +test2704 Q0 13330115 2 16.002930 Anserini +test2704 Q0 9861359 3 15.256816 Anserini +test2704 Q0 12996310 4 15.189426 Anserini +test2704 Q0 12996311 5 14.960143 Anserini +test2704 Q0 20190355 6 14.904779 Anserini +test2704 Q0 13705851 7 14.897066 Anserini +test2704 Q0 289121 8 14.605772 Anserini +test2704 Q0 9685388 9 14.466949 Anserini +test2704 Q0 13330121 10 14.320170 Anserini +test2704 Q0 1938149 11 13.968587 Anserini +test2704 Q0 5700664 12 13.846804 Anserini +test2704 Q0 20204776 13 13.841410 Anserini +test2704 Q0 11117615 14 13.807034 Anserini +test2704 Q0 9823154 15 13.792084 Anserini +test2704 Q0 12850088 16 13.762204 Anserini +test2704 Q0 18029922 17 13.741286 Anserini +test2704 Q0 13664438 18 13.738154 Anserini +test2704 Q0 3904284 19 13.704898 Anserini +test2704 Q0 11311813 20 13.701053 Anserini +test2704 Q0 16514296 21 13.694186 Anserini +test2704 Q0 16977681 22 13.681440 Anserini +test2704 Q0 18029942 23 13.631157 Anserini +test2704 Q0 10057834 24 13.618873 Anserini +test2704 Q0 15634645 25 13.608536 Anserini +test2704 Q0 1918383 26 13.558266 Anserini +test2704 Q0 13664439 27 13.547813 Anserini +test2704 Q0 14913233 28 13.455989 Anserini +test2704 Q0 11159974 29 13.452683 Anserini +test2704 Q0 8064098 30 13.446131 Anserini +test2705 Q0 12924210 1 13.094643 Anserini +test2705 Q0 9011230 2 12.729451 Anserini +test2705 Q0 9011240 3 12.729451 Anserini +test2705 Q0 15252001 4 12.202637 Anserini +test2705 Q0 1889017 5 11.474123 Anserini +test2705 Q0 6949277 6 11.358347 Anserini +test2705 Q0 12201955 7 11.200409 Anserini +test2705 Q0 9012472 8 11.080410 Anserini +test2705 Q0 1079291 9 11.047219 Anserini +test2705 Q0 12201954 10 11.047205 Anserini +test2705 Q0 9301125 11 11.029111 Anserini +test2705 Q0 3326463 12 10.908641 Anserini +test2705 Q0 5668044 13 10.866246 Anserini +test2705 Q0 3326460 14 10.860039 Anserini +test2705 Q0 1139706 15 10.826488 Anserini +test2705 Q0 1139711 16 10.826488 Anserini +test2705 Q0 8234452 17 10.787144 Anserini +test2705 Q0 18779278 18 10.714741 Anserini +test2705 Q0 16923806 19 10.637774 Anserini +test2705 Q0 1895036 20 10.626207 Anserini +test2705 Q0 1079289 21 10.569732 Anserini +test2705 Q0 20418322 22 10.560267 Anserini +test2705 Q0 7327698 23 10.552050 Anserini +test2705 Q0 19876247 24 10.524094 Anserini +test2705 Q0 10991898 25 10.502385 Anserini +test2705 Q0 15251999 26 10.501619 Anserini +test2705 Q0 1889020 27 10.481384 Anserini +test2705 Q0 11348893 28 10.423294 Anserini +test2705 Q0 1845881 29 10.355284 Anserini +test2705 Q0 10991896 30 10.323309 Anserini +test2706 Q0 561416 1 18.054409 Anserini +test2706 Q0 879864 2 17.938519 Anserini +test2706 Q0 5039146 3 16.455420 Anserini +test2706 Q0 5764644 4 16.008642 Anserini +test2706 Q0 11756988 5 15.543411 Anserini +test2706 Q0 595042 6 15.179618 Anserini +test2706 Q0 7481869 7 14.820331 Anserini +test2706 Q0 5643725 8 14.706144 Anserini +test2706 Q0 4875259 9 14.601616 Anserini +test2706 Q0 3594455 10 14.366828 Anserini +test2706 Q0 6377572 11 14.148530 Anserini +test2706 Q0 936991 12 14.130869 Anserini +test2706 Q0 5039150 13 13.859402 Anserini +test2706 Q0 7738589 14 13.799174 Anserini +test2706 Q0 13973509 15 13.763618 Anserini +test2706 Q0 9937047 16 13.761318 Anserini +test2706 Q0 5039144 17 13.668594 Anserini +test2706 Q0 3262634 18 13.632198 Anserini +test2706 Q0 11608682 19 13.622170 Anserini +test2706 Q0 5039156 20 13.492823 Anserini +test2706 Q0 11320848 21 13.267903 Anserini +test2706 Q0 5039147 22 13.204396 Anserini +test2706 Q0 19776592 23 13.131020 Anserini +test2706 Q0 6409516 24 12.986866 Anserini +test2706 Q0 879861 25 12.968603 Anserini +test2706 Q0 4346362 26 12.903372 Anserini +test2706 Q0 4465507 27 12.824069 Anserini +test2706 Q0 879804 28 12.795795 Anserini +test2706 Q0 92490 29 12.741415 Anserini +test2706 Q0 13014381 30 12.632606 Anserini +test2707 Q0 3515043 1 12.241697 Anserini +test2707 Q0 9637133 2 11.971266 Anserini +test2707 Q0 172593 3 11.911622 Anserini +test2707 Q0 1027001 4 11.911622 Anserini +test2707 Q0 8405844 5 11.853900 Anserini +test2707 Q0 7200952 6 11.476940 Anserini +test2707 Q0 4021738 7 11.366291 Anserini +test2707 Q0 4457982 8 11.307856 Anserini +test2707 Q0 1341990 9 11.294023 Anserini +test2707 Q0 167057 10 11.243390 Anserini +test2707 Q0 2345106 11 11.064117 Anserini +test2707 Q0 20058686 12 11.028971 Anserini +test2707 Q0 20201947 13 10.936762 Anserini +test2707 Q0 9499113 14 10.923671 Anserini +test2707 Q0 20058685 15 10.886250 Anserini +test2707 Q0 1321713 16 10.819030 Anserini +test2707 Q0 13780795 17 10.800092 Anserini +test2707 Q0 9197568 18 10.786996 Anserini +test2707 Q0 16695194 19 10.781189 Anserini +test2707 Q0 4905985 20 10.767771 Anserini +test2707 Q0 5764232 21 10.751233 Anserini +test2707 Q0 12677644 22 10.745609 Anserini +test2707 Q0 5446354 23 10.699428 Anserini +test2707 Q0 2042025 24 10.670075 Anserini +test2707 Q0 8283620 25 10.620645 Anserini +test2707 Q0 7760889 26 10.617483 Anserini +test2707 Q0 11526193 27 10.583353 Anserini +test2707 Q0 10467015 28 10.572718 Anserini +test2707 Q0 19864315 29 10.522228 Anserini +test2707 Q0 3672146 30 10.519001 Anserini +test2708 Q0 16263725 1 16.493849 Anserini +test2708 Q0 13408262 2 12.503581 Anserini +test2708 Q0 13408263 3 12.173098 Anserini +test2708 Q0 17242378 4 12.146029 Anserini +test2708 Q0 5627149 5 11.757527 Anserini +test2708 Q0 4282544 6 11.499825 Anserini +test2708 Q0 17181177 7 11.338085 Anserini +test2708 Q0 16477468 8 11.191663 Anserini +test2708 Q0 16528367 9 11.105824 Anserini +test2708 Q0 13408259 10 11.101859 Anserini +test2708 Q0 19484591 11 11.081946 Anserini +test2708 Q0 16430638 12 10.987400 Anserini +test2708 Q0 12800947 13 10.987400 Anserini +test2708 Q0 4282549 14 10.591185 Anserini +test2708 Q0 16441856 15 10.321974 Anserini +test2708 Q0 19484578 16 10.142619 Anserini +test2708 Q0 16441859 17 10.127844 Anserini +test2708 Q0 17213172 18 10.104654 Anserini +test2708 Q0 3724744 19 10.007589 Anserini +test2708 Q0 9001499 20 9.761286 Anserini +test2708 Q0 16741740 21 9.695838 Anserini +test2708 Q0 12006443 22 9.663069 Anserini +test2708 Q0 15055072 23 9.553584 Anserini +test2708 Q0 12801012 24 9.530144 Anserini +test2708 Q0 4299269 25 9.481536 Anserini +test2708 Q0 4299280 26 9.481536 Anserini +test2708 Q0 7560991 27 9.453013 Anserini +test2708 Q0 7235070 28 9.386376 Anserini +test2708 Q0 16741739 29 9.383541 Anserini +test2708 Q0 17263290 30 9.355907 Anserini +test2709 Q0 7680990 1 13.106447 Anserini +test2709 Q0 12494515 2 12.867956 Anserini +test2709 Q0 2558239 3 12.765429 Anserini +test2709 Q0 2558270 4 12.765429 Anserini +test2709 Q0 5165249 5 12.608854 Anserini +test2709 Q0 5161257 6 12.549821 Anserini +test2709 Q0 7677799 7 12.495620 Anserini +test2709 Q0 10302520 8 12.306392 Anserini +test2709 Q0 7715731 9 12.246743 Anserini +test2709 Q0 5385021 10 12.186336 Anserini +test2709 Q0 5437371 11 12.125458 Anserini +test2709 Q0 9162511 12 12.124030 Anserini +test2709 Q0 3986586 13 12.035007 Anserini +test2709 Q0 6629084 14 11.964349 Anserini +test2709 Q0 5458016 15 11.899535 Anserini +test2709 Q0 5458020 16 11.899535 Anserini +test2709 Q0 7681003 17 11.840397 Anserini +test2709 Q0 7715746 18 11.805751 Anserini +test2709 Q0 7658557 19 11.783701 Anserini +test2709 Q0 7715977 20 11.740448 Anserini +test2709 Q0 6140057 21 11.723254 Anserini +test2709 Q0 6140059 22 11.679721 Anserini +test2709 Q0 29745 23 11.662004 Anserini +test2709 Q0 16186742 24 11.659159 Anserini +test2709 Q0 1216538 25 11.652654 Anserini +test2709 Q0 5096016 26 11.566508 Anserini +test2709 Q0 12494517 27 11.542904 Anserini +test2709 Q0 18290076 28 11.506668 Anserini +test2709 Q0 10895455 29 11.454279 Anserini +test2709 Q0 9756404 30 11.373903 Anserini +test271 Q0 5272211 1 16.489080 Anserini +test271 Q0 17164954 2 16.004492 Anserini +test271 Q0 6207123 3 15.648206 Anserini +test271 Q0 1721156 4 15.361143 Anserini +test271 Q0 9055287 5 15.300470 Anserini +test271 Q0 13604139 6 15.231009 Anserini +test271 Q0 1622607 7 15.003445 Anserini +test271 Q0 15859363 8 14.970652 Anserini +test271 Q0 7164635 9 14.838518 Anserini +test271 Q0 8441498 10 14.745599 Anserini +test271 Q0 6642725 11 14.681931 Anserini +test271 Q0 5206391 12 14.563304 Anserini +test271 Q0 1426859 13 14.534448 Anserini +test271 Q0 17549882 14 14.522211 Anserini +test271 Q0 11852461 15 14.522116 Anserini +test271 Q0 4258814 16 14.503881 Anserini +test271 Q0 2879123 17 14.503881 Anserini +test271 Q0 3680307 18 14.459406 Anserini +test271 Q0 19470097 19 14.442529 Anserini +test271 Q0 13604135 20 14.434535 Anserini +test271 Q0 20148256 21 14.378157 Anserini +test271 Q0 12087243 22 14.372050 Anserini +test271 Q0 18704414 23 14.327274 Anserini +test271 Q0 16496703 24 14.294686 Anserini +test271 Q0 16496705 25 14.285935 Anserini +test271 Q0 8858804 26 14.273113 Anserini +test271 Q0 7519975 27 14.216897 Anserini +test271 Q0 13423325 28 14.214223 Anserini +test271 Q0 15665499 29 14.205685 Anserini +test271 Q0 20148236 30 14.178238 Anserini +test2710 Q0 9624384 1 10.594057 Anserini +test2710 Q0 20331466 2 10.545734 Anserini +test2710 Q0 6612693 3 10.437775 Anserini +test2710 Q0 6220839 4 10.180716 Anserini +test2710 Q0 8607841 5 10.119863 Anserini +test2710 Q0 8614188 6 10.111737 Anserini +test2710 Q0 14553573 7 9.943243 Anserini +test2710 Q0 16867747 8 9.918057 Anserini +test2710 Q0 1811535 9 9.867219 Anserini +test2710 Q0 13152155 10 9.840304 Anserini +test2710 Q0 1388533 11 9.791853 Anserini +test2710 Q0 19719887 12 9.775549 Anserini +test2710 Q0 17516948 13 9.696107 Anserini +test2710 Q0 7632323 14 9.628077 Anserini +test2710 Q0 15174131 15 9.621762 Anserini +test2710 Q0 16809126 16 9.540859 Anserini +test2710 Q0 12739087 17 9.504146 Anserini +test2710 Q0 1811550 18 9.498510 Anserini +test2710 Q0 14686792 19 9.474629 Anserini +test2710 Q0 18269192 20 9.469951 Anserini +test2710 Q0 5620691 21 9.426288 Anserini +test2710 Q0 9360016 22 9.368052 Anserini +test2710 Q0 9477299 23 9.363533 Anserini +test2710 Q0 4548067 24 9.343142 Anserini +test2710 Q0 1965654 25 9.311810 Anserini +test2710 Q0 11996292 26 9.207955 Anserini +test2710 Q0 20024317 27 9.190481 Anserini +test2710 Q0 6902112 28 9.185562 Anserini +test2710 Q0 11569286 29 9.182594 Anserini +test2710 Q0 12435389 30 9.170220 Anserini +test2711 Q0 6880364 1 16.725157 Anserini +test2711 Q0 6880408 2 14.914045 Anserini +test2711 Q0 6880419 3 14.819728 Anserini +test2711 Q0 20745571 4 14.560487 Anserini +test2711 Q0 6880412 5 14.502415 Anserini +test2711 Q0 6880516 6 14.439180 Anserini +test2711 Q0 11452719 7 14.334093 Anserini +test2711 Q0 6880403 8 14.274263 Anserini +test2711 Q0 20389725 9 14.057815 Anserini +test2711 Q0 17565784 10 13.846884 Anserini +test2711 Q0 17066490 11 13.766333 Anserini +test2711 Q0 11428065 12 13.683640 Anserini +test2711 Q0 6880367 13 13.547915 Anserini +test2711 Q0 11428066 14 13.473640 Anserini +test2711 Q0 6880375 15 13.425556 Anserini +test2711 Q0 6880406 16 13.397226 Anserini +test2711 Q0 12384259 17 13.368139 Anserini +test2711 Q0 6880363 18 13.330660 Anserini +test2711 Q0 6880370 19 13.253899 Anserini +test2711 Q0 6880519 20 13.211819 Anserini +test2711 Q0 6880515 21 13.189875 Anserini +test2711 Q0 6880527 22 13.021624 Anserini +test2711 Q0 2772413 23 13.017098 Anserini +test2711 Q0 6880371 24 13.004020 Anserini +test2711 Q0 12384315 25 12.978721 Anserini +test2711 Q0 20903783 26 12.927541 Anserini +test2711 Q0 6880411 27 12.855553 Anserini +test2711 Q0 6880383 28 12.849258 Anserini +test2711 Q0 6880389 29 12.847892 Anserini +test2711 Q0 11209433 30 12.816516 Anserini +test2712 Q0 16072002 1 17.288029 Anserini +test2712 Q0 16197182 2 16.126202 Anserini +test2712 Q0 16071977 3 15.788274 Anserini +test2712 Q0 20372811 4 15.577845 Anserini +test2712 Q0 16887339 5 15.291336 Anserini +test2712 Q0 16887342 6 15.237040 Anserini +test2712 Q0 16071995 7 15.068336 Anserini +test2712 Q0 16070055 8 14.904476 Anserini +test2712 Q0 16070047 9 14.673429 Anserini +test2712 Q0 16819854 10 14.673429 Anserini +test2712 Q0 16740622 11 14.576341 Anserini +test2712 Q0 16819855 12 14.569908 Anserini +test2712 Q0 16819845 13 14.547110 Anserini +test2712 Q0 16819852 14 14.390214 Anserini +test2712 Q0 16260687 15 14.191607 Anserini +test2712 Q0 16072017 16 14.158242 Anserini +test2712 Q0 16943306 17 14.110031 Anserini +test2712 Q0 16429572 18 14.046343 Anserini +test2712 Q0 16429591 19 14.046343 Anserini +test2712 Q0 16819847 20 13.990093 Anserini +test2712 Q0 16163300 21 13.885807 Anserini +test2712 Q0 16335801 22 13.868280 Anserini +test2712 Q0 16131170 23 13.800656 Anserini +test2712 Q0 19097324 24 13.665174 Anserini +test2712 Q0 17050725 25 13.639576 Anserini +test2712 Q0 16819832 26 13.635920 Anserini +test2712 Q0 17589393 27 13.634334 Anserini +test2712 Q0 17195545 28 13.535854 Anserini +test2712 Q0 20902066 29 13.478764 Anserini +test2712 Q0 17828136 30 13.449193 Anserini +test2713 Q0 20645343 1 16.278202 Anserini +test2713 Q0 5338298 2 16.223904 Anserini +test2713 Q0 5338299 3 15.985989 Anserini +test2713 Q0 934760 4 15.849596 Anserini +test2713 Q0 5338301 5 15.729094 Anserini +test2713 Q0 934766 6 15.702131 Anserini +test2713 Q0 8161704 7 15.423303 Anserini +test2713 Q0 20771657 8 15.030890 Anserini +test2713 Q0 934755 9 14.919304 Anserini +test2713 Q0 934765 10 14.915075 Anserini +test2713 Q0 934752 11 14.573482 Anserini +test2713 Q0 934762 12 14.573482 Anserini +test2713 Q0 5338297 13 14.242998 Anserini +test2713 Q0 18857717 14 14.160823 Anserini +test2713 Q0 934777 15 14.160823 Anserini +test2713 Q0 934769 16 14.139491 Anserini +test2713 Q0 20645341 17 14.076523 Anserini +test2713 Q0 5338306 18 14.034719 Anserini +test2713 Q0 934759 19 13.993243 Anserini +test2713 Q0 5645491 20 13.863360 Anserini +test2713 Q0 934784 21 13.774351 Anserini +test2713 Q0 5338300 22 13.666210 Anserini +test2713 Q0 5338295 23 13.504782 Anserini +test2713 Q0 5338303 24 13.504782 Anserini +test2713 Q0 934774 25 13.478162 Anserini +test2713 Q0 16462448 26 13.230146 Anserini +test2713 Q0 16462450 27 13.230146 Anserini +test2713 Q0 5338292 28 12.984257 Anserini +test2713 Q0 5338293 29 12.984257 Anserini +test2713 Q0 13127837 30 12.984257 Anserini +test2714 Q0 20437850 1 21.800215 Anserini +test2714 Q0 1635636 2 21.723328 Anserini +test2714 Q0 20437852 3 20.971691 Anserini +test2714 Q0 20437851 4 20.699921 Anserini +test2714 Q0 10912539 5 20.692059 Anserini +test2714 Q0 16840985 6 20.526722 Anserini +test2714 Q0 868007 7 20.321892 Anserini +test2714 Q0 16840986 8 20.302437 Anserini +test2714 Q0 7227662 9 18.633976 Anserini +test2714 Q0 868009 10 18.206589 Anserini +test2714 Q0 7227659 11 18.161518 Anserini +test2714 Q0 16840995 12 18.125734 Anserini +test2714 Q0 10432385 13 17.855488 Anserini +test2714 Q0 10432386 14 17.855488 Anserini +test2714 Q0 10912561 15 17.636166 Anserini +test2714 Q0 3454475 16 17.198751 Anserini +test2714 Q0 3454476 17 17.198751 Anserini +test2714 Q0 868008 18 16.725449 Anserini +test2714 Q0 1852881 19 16.411531 Anserini +test2714 Q0 663245 20 16.300261 Anserini +test2714 Q0 20290904 21 16.270674 Anserini +test2714 Q0 663208 22 16.270674 Anserini +test2714 Q0 10912541 23 16.136005 Anserini +test2714 Q0 10079524 24 16.073658 Anserini +test2714 Q0 13263622 25 16.022362 Anserini +test2714 Q0 867998 26 16.022362 Anserini +test2714 Q0 1271634 27 15.910309 Anserini +test2714 Q0 868005 28 15.910309 Anserini +test2714 Q0 663232 29 15.799812 Anserini +test2714 Q0 3363494 30 15.799812 Anserini +test2715 Q0 17323703 1 11.287690 Anserini +test2715 Q0 1762412 2 11.153503 Anserini +test2715 Q0 17323714 3 11.020930 Anserini +test2715 Q0 2442786 4 11.002050 Anserini +test2715 Q0 12922722 5 10.789389 Anserini +test2715 Q0 13540128 6 10.765895 Anserini +test2715 Q0 4054002 7 10.559673 Anserini +test2715 Q0 12680779 8 10.553950 Anserini +test2715 Q0 9125966 9 10.514503 Anserini +test2715 Q0 314142 10 10.502347 Anserini +test2715 Q0 16672610 11 10.444719 Anserini +test2715 Q0 12922714 12 10.402977 Anserini +test2715 Q0 2486136 13 10.388253 Anserini +test2715 Q0 4505385 14 10.379444 Anserini +test2715 Q0 2442633 15 10.363841 Anserini +test2715 Q0 10109361 16 10.359239 Anserini +test2715 Q0 17323704 17 10.333185 Anserini +test2715 Q0 2425966 18 10.323310 Anserini +test2715 Q0 2486137 19 10.291840 Anserini +test2715 Q0 16761521 20 10.291840 Anserini +test2715 Q0 19672973 21 10.291593 Anserini +test2715 Q0 17444057 22 10.267977 Anserini +test2715 Q0 18855680 23 10.244995 Anserini +test2715 Q0 4505366 24 10.235440 Anserini +test2715 Q0 20604686 25 10.214901 Anserini +test2715 Q0 465157 26 10.208274 Anserini +test2715 Q0 4505389 27 10.163216 Anserini +test2715 Q0 12922725 28 10.160623 Anserini +test2715 Q0 12680676 29 10.158097 Anserini +test2715 Q0 3491353 30 10.107429 Anserini +test2716 Q0 14805302 1 13.027760 Anserini +test2716 Q0 19579318 2 12.120890 Anserini +test2716 Q0 13420619 3 12.057844 Anserini +test2716 Q0 14804379 4 11.635993 Anserini +test2716 Q0 15374730 5 11.498081 Anserini +test2716 Q0 13746309 6 11.282503 Anserini +test2716 Q0 15514083 7 11.146240 Anserini +test2716 Q0 17167910 8 11.034954 Anserini +test2716 Q0 8400469 9 10.988311 Anserini +test2716 Q0 7197965 10 10.980323 Anserini +test2716 Q0 10392589 11 10.906754 Anserini +test2716 Q0 17210017 12 10.900724 Anserini +test2716 Q0 4684543 13 10.889061 Anserini +test2716 Q0 16086698 14 10.887760 Anserini +test2716 Q0 8926786 15 10.883924 Anserini +test2716 Q0 20917374 16 10.880043 Anserini +test2716 Q0 8514759 17 10.850611 Anserini +test2716 Q0 810903 18 10.763876 Anserini +test2716 Q0 16066428 19 10.749096 Anserini +test2716 Q0 20131816 20 10.748575 Anserini +test2716 Q0 14530682 21 10.741900 Anserini +test2716 Q0 19114682 22 10.696880 Anserini +test2716 Q0 4028360 23 10.675392 Anserini +test2716 Q0 17517037 24 10.666245 Anserini +test2716 Q0 4244448 25 10.654378 Anserini +test2716 Q0 11923443 26 10.649127 Anserini +test2716 Q0 15839972 27 10.649127 Anserini +test2716 Q0 13217211 28 10.638479 Anserini +test2716 Q0 15516596 29 10.613687 Anserini +test2716 Q0 14530683 30 10.607523 Anserini +test2717 Q0 19943462 1 20.009064 Anserini +test2717 Q0 19943464 2 19.645699 Anserini +test2717 Q0 19943463 3 19.592987 Anserini +test2717 Q0 8837424 4 18.807764 Anserini +test2717 Q0 19943461 5 17.792007 Anserini +test2717 Q0 18626184 6 17.001461 Anserini +test2717 Q0 18626178 7 16.846514 Anserini +test2717 Q0 19916829 8 16.275843 Anserini +test2717 Q0 18626183 9 16.098425 Anserini +test2717 Q0 12036501 10 14.460385 Anserini +test2717 Q0 12036500 11 14.278592 Anserini +test2717 Q0 16225123 12 13.974022 Anserini +test2717 Q0 17994197 13 13.954115 Anserini +test2717 Q0 15129384 14 13.887466 Anserini +test2717 Q0 18664167 15 13.801038 Anserini +test2717 Q0 3759778 16 13.730635 Anserini +test2717 Q0 5327461 17 13.674283 Anserini +test2717 Q0 14366101 18 13.474122 Anserini +test2717 Q0 3297210 19 13.374001 Anserini +test2717 Q0 11600308 20 13.325647 Anserini +test2717 Q0 1783965 21 13.171775 Anserini +test2717 Q0 18946736 22 13.016404 Anserini +test2717 Q0 200797 23 12.947444 Anserini +test2717 Q0 16651344 24 12.939327 Anserini +test2717 Q0 18664161 25 12.869466 Anserini +test2717 Q0 6892209 26 12.860622 Anserini +test2717 Q0 19215137 27 12.820097 Anserini +test2717 Q0 20624342 28 12.820097 Anserini +test2717 Q0 17994195 29 12.819086 Anserini +test2717 Q0 17994198 30 12.772574 Anserini +test2718 Q0 10477529 1 20.665953 Anserini +test2718 Q0 10477528 2 19.700438 Anserini +test2718 Q0 15516496 3 17.972042 Anserini +test2718 Q0 18453322 4 17.858555 Anserini +test2718 Q0 8903177 5 17.148666 Anserini +test2718 Q0 20282522 6 16.655001 Anserini +test2718 Q0 18705375 7 16.137304 Anserini +test2718 Q0 15516472 8 15.053972 Anserini +test2718 Q0 15516495 9 14.936929 Anserini +test2718 Q0 11080634 10 14.932480 Anserini +test2718 Q0 9794929 11 14.784326 Anserini +test2718 Q0 15516473 12 14.726278 Anserini +test2718 Q0 15516486 13 14.562214 Anserini +test2718 Q0 18705376 14 14.069530 Anserini +test2718 Q0 15516485 15 13.872142 Anserini +test2718 Q0 18705366 16 13.369033 Anserini +test2718 Q0 15516494 17 13.174035 Anserini +test2718 Q0 15516540 18 13.049677 Anserini +test2718 Q0 7425297 19 12.912303 Anserini +test2718 Q0 16136155 20 10.936014 Anserini +test2718 Q0 20763752 21 10.582953 Anserini +test2718 Q0 16136124 22 10.186329 Anserini +test2718 Q0 810921 23 10.176558 Anserini +test2718 Q0 14089301 24 10.043558 Anserini +test2718 Q0 8485670 25 9.828400 Anserini +test2718 Q0 481038 26 9.777481 Anserini +test2718 Q0 13364717 27 9.684792 Anserini +test2718 Q0 12390023 28 9.604414 Anserini +test2718 Q0 7006696 29 9.549969 Anserini +test2718 Q0 5105792 30 9.345618 Anserini +test2719 Q0 10385118 1 22.323668 Anserini +test2719 Q0 10385109 2 22.323668 Anserini +test2719 Q0 12041355 3 19.738895 Anserini +test2719 Q0 2681024 4 19.713377 Anserini +test2719 Q0 18618996 5 18.975758 Anserini +test2719 Q0 2681051 6 18.612644 Anserini +test2719 Q0 10385112 7 18.606859 Anserini +test2719 Q0 2805390 8 18.584965 Anserini +test2719 Q0 11360082 9 18.558796 Anserini +test2719 Q0 2681056 10 18.175831 Anserini +test2719 Q0 2681052 11 18.068583 Anserini +test2719 Q0 3276652 12 17.891232 Anserini +test2719 Q0 10385114 13 17.888983 Anserini +test2719 Q0 10308727 14 17.717411 Anserini +test2719 Q0 10308728 15 17.717411 Anserini +test2719 Q0 12409009 16 17.547014 Anserini +test2719 Q0 10385111 17 17.522366 Anserini +test2719 Q0 5572463 18 17.137262 Anserini +test2719 Q0 16703332 19 17.081097 Anserini +test2719 Q0 9521109 20 16.776453 Anserini +test2719 Q0 5572462 21 16.776453 Anserini +test2719 Q0 8771350 22 16.776453 Anserini +test2719 Q0 17331139 23 16.601685 Anserini +test2719 Q0 10385110 24 15.988006 Anserini +test2719 Q0 5851194 25 14.729789 Anserini +test2719 Q0 11534188 26 14.673441 Anserini +test2719 Q0 3987952 27 14.506550 Anserini +test2719 Q0 2681027 28 14.459647 Anserini +test2719 Q0 8399026 29 14.189635 Anserini +test2719 Q0 17236027 30 13.808819 Anserini +test272 Q0 13443868 1 21.957184 Anserini +test272 Q0 4420360 2 19.972000 Anserini +test272 Q0 4420363 3 19.917496 Anserini +test272 Q0 5228633 4 19.878151 Anserini +test272 Q0 5228632 5 19.840429 Anserini +test272 Q0 5228631 6 19.538612 Anserini +test272 Q0 13443879 7 19.413712 Anserini +test272 Q0 13443872 8 19.268375 Anserini +test272 Q0 13443869 9 19.203619 Anserini +test272 Q0 7591876 10 18.858007 Anserini +test272 Q0 13443858 11 18.732141 Anserini +test272 Q0 13443876 12 18.489677 Anserini +test272 Q0 4420359 13 18.480227 Anserini +test272 Q0 13443874 14 18.394150 Anserini +test272 Q0 4420354 15 18.255424 Anserini +test272 Q0 4846066 16 18.212683 Anserini +test272 Q0 13443870 17 17.868898 Anserini +test272 Q0 4853720 18 17.859940 Anserini +test272 Q0 13443861 19 17.830811 Anserini +test272 Q0 4853724 20 17.801331 Anserini +test272 Q0 13443864 21 17.717432 Anserini +test272 Q0 13443867 22 17.537464 Anserini +test272 Q0 13443877 23 17.437466 Anserini +test272 Q0 4853723 24 17.437466 Anserini +test272 Q0 13443860 25 17.400011 Anserini +test272 Q0 4420362 26 17.366575 Anserini +test272 Q0 4853726 27 17.366575 Anserini +test272 Q0 13443863 28 17.358450 Anserini +test272 Q0 4853714 29 17.296261 Anserini +test272 Q0 4853719 30 17.246620 Anserini +test2720 Q0 4900472 1 10.548071 Anserini +test2720 Q0 20464196 2 10.478121 Anserini +test2720 Q0 14577605 3 10.137444 Anserini +test2720 Q0 18092249 4 9.987170 Anserini +test2720 Q0 4900479 5 9.924141 Anserini +test2720 Q0 5917725 6 9.560672 Anserini +test2720 Q0 3526764 7 9.532731 Anserini +test2720 Q0 13297739 8 9.239347 Anserini +test2720 Q0 12100356 9 9.226624 Anserini +test2720 Q0 6766246 10 9.226624 Anserini +test2720 Q0 10098200 11 9.207554 Anserini +test2720 Q0 15402692 12 9.206383 Anserini +test2720 Q0 12100339 13 9.141995 Anserini +test2720 Q0 11734283 14 9.084589 Anserini +test2720 Q0 427054 15 9.067303 Anserini +test2720 Q0 10523737 16 9.065070 Anserini +test2720 Q0 7931678 17 8.979658 Anserini +test2720 Q0 920595 18 8.969594 Anserini +test2720 Q0 12835109 19 8.955931 Anserini +test2720 Q0 9199659 20 8.934054 Anserini +test2720 Q0 9916137 21 8.934054 Anserini +test2720 Q0 10207270 22 8.888571 Anserini +test2720 Q0 11367495 23 8.881876 Anserini +test2720 Q0 4900477 24 8.824219 Anserini +test2720 Q0 2708531 25 8.784342 Anserini +test2720 Q0 4900476 26 8.758892 Anserini +test2720 Q0 3493270 27 8.741276 Anserini +test2720 Q0 4253991 28 8.684454 Anserini +test2720 Q0 12776597 29 8.683135 Anserini +test2720 Q0 7283023 30 8.676438 Anserini +test2721 Q0 13951939 1 13.127906 Anserini +test2721 Q0 13951944 2 13.036855 Anserini +test2721 Q0 454042 3 12.442019 Anserini +test2721 Q0 1624653 4 11.913684 Anserini +test2721 Q0 1624630 5 11.299476 Anserini +test2721 Q0 3637844 6 11.084227 Anserini +test2721 Q0 16211048 7 11.080301 Anserini +test2721 Q0 17376683 8 11.064320 Anserini +test2721 Q0 12018388 9 10.927914 Anserini +test2721 Q0 5610215 10 10.784132 Anserini +test2721 Q0 20522466 11 10.698894 Anserini +test2721 Q0 17263533 12 10.596062 Anserini +test2721 Q0 13951943 13 10.575851 Anserini +test2721 Q0 5555891 14 10.531437 Anserini +test2721 Q0 16576158 15 10.514147 Anserini +test2721 Q0 3637847 16 10.498444 Anserini +test2721 Q0 8156766 17 10.479321 Anserini +test2721 Q0 17261294 18 10.475078 Anserini +test2721 Q0 17261192 19 10.404737 Anserini +test2721 Q0 17261182 20 10.404737 Anserini +test2721 Q0 5555890 21 10.399809 Anserini +test2721 Q0 258932 22 10.380575 Anserini +test2721 Q0 2317561 23 10.362241 Anserini +test2721 Q0 17261268 24 10.350500 Anserini +test2721 Q0 16576157 25 10.350500 Anserini +test2721 Q0 17263547 26 10.350500 Anserini +test2721 Q0 17261389 27 10.340772 Anserini +test2721 Q0 2676901 28 10.324535 Anserini +test2721 Q0 2676899 29 10.324535 Anserini +test2721 Q0 17261062 30 10.296005 Anserini +test2722 Q0 7313515 1 7.058765 Anserini +test2722 Q0 3594034 2 6.932777 Anserini +test2722 Q0 13575320 3 6.855033 Anserini +test2722 Q0 2174674 4 6.844580 Anserini +test2722 Q0 13575326 5 6.809020 Anserini +test2722 Q0 6303707 6 6.675800 Anserini +test2722 Q0 13483777 7 6.636080 Anserini +test2722 Q0 13575324 8 6.623835 Anserini +test2722 Q0 14106713 9 6.556563 Anserini +test2722 Q0 1224368 10 6.553923 Anserini +test2722 Q0 1330975 11 6.520228 Anserini +test2722 Q0 996168 12 6.477622 Anserini +test2722 Q0 1016088 13 6.472836 Anserini +test2722 Q0 1132683 14 6.448922 Anserini +test2722 Q0 17954608 15 6.439194 Anserini +test2722 Q0 1206141 16 6.404736 Anserini +test2722 Q0 1115910 17 6.365278 Anserini +test2722 Q0 2144516 18 6.339890 Anserini +test2722 Q0 5940168 19 6.303038 Anserini +test2722 Q0 12358711 20 6.298294 Anserini +test2722 Q0 6546689 21 6.256581 Anserini +test2722 Q0 6303714 22 6.242104 Anserini +test2722 Q0 9926765 23 6.224157 Anserini +test2722 Q0 14106748 24 6.209140 Anserini +test2722 Q0 19106629 25 6.206981 Anserini +test2722 Q0 1147980 26 6.190180 Anserini +test2722 Q0 659637 27 6.152954 Anserini +test2722 Q0 1076459 28 6.146752 Anserini +test2722 Q0 1077675 29 6.146752 Anserini +test2722 Q0 1086368 30 6.146752 Anserini +test2723 Q0 836722 1 17.289173 Anserini +test2723 Q0 6569842 2 16.827150 Anserini +test2723 Q0 8126223 3 16.563292 Anserini +test2723 Q0 433440 4 15.729399 Anserini +test2723 Q0 9354350 5 15.408124 Anserini +test2723 Q0 11110602 6 15.251897 Anserini +test2723 Q0 6569852 7 14.934921 Anserini +test2723 Q0 9902032 8 14.915730 Anserini +test2723 Q0 17737362 9 14.813951 Anserini +test2723 Q0 8294188 10 14.727633 Anserini +test2723 Q0 8294157 11 14.713543 Anserini +test2723 Q0 5283786 12 14.667312 Anserini +test2723 Q0 14782742 13 14.616398 Anserini +test2723 Q0 9874236 14 14.598229 Anserini +test2723 Q0 6569835 15 14.584789 Anserini +test2723 Q0 6569811 16 14.559349 Anserini +test2723 Q0 836729 17 14.546201 Anserini +test2723 Q0 11379334 18 14.523556 Anserini +test2723 Q0 17784294 19 14.505354 Anserini +test2723 Q0 4842949 20 14.500262 Anserini +test2723 Q0 6776641 21 14.483130 Anserini +test2723 Q0 14169840 22 14.399477 Anserini +test2723 Q0 8294137 23 14.359804 Anserini +test2723 Q0 9354287 24 14.356961 Anserini +test2723 Q0 9138584 25 14.349700 Anserini +test2723 Q0 836719 26 14.337957 Anserini +test2723 Q0 8294177 27 14.333030 Anserini +test2723 Q0 5359175 28 14.259338 Anserini +test2723 Q0 9354330 29 14.258416 Anserini +test2723 Q0 8294132 30 14.258416 Anserini +test2724 Q0 1970692 1 12.718904 Anserini +test2724 Q0 12157615 2 12.577860 Anserini +test2724 Q0 14861564 3 11.892066 Anserini +test2724 Q0 4396910 4 11.633319 Anserini +test2724 Q0 1091747 5 11.615063 Anserini +test2724 Q0 15772454 6 11.327844 Anserini +test2724 Q0 3754133 7 11.100238 Anserini +test2724 Q0 4790038 8 11.093633 Anserini +test2724 Q0 13703098 9 11.018007 Anserini +test2724 Q0 12157629 10 10.836814 Anserini +test2724 Q0 6292044 11 10.777637 Anserini +test2724 Q0 10845130 12 10.669424 Anserini +test2724 Q0 12157626 13 10.573800 Anserini +test2724 Q0 6066518 14 10.554963 Anserini +test2724 Q0 12449070 15 10.524580 Anserini +test2724 Q0 2984296 16 10.497251 Anserini +test2724 Q0 12562181 17 10.352556 Anserini +test2724 Q0 3448676 18 10.278191 Anserini +test2724 Q0 1970746 19 10.222914 Anserini +test2724 Q0 98785 20 10.215702 Anserini +test2724 Q0 7426351 21 10.168994 Anserini +test2724 Q0 12157631 22 10.146856 Anserini +test2724 Q0 6807690 23 10.134345 Anserini +test2724 Q0 4697541 24 10.123862 Anserini +test2724 Q0 1007375 25 10.089383 Anserini +test2724 Q0 11921042 26 10.088287 Anserini +test2724 Q0 4662537 27 10.070105 Anserini +test2724 Q0 17787190 28 10.025789 Anserini +test2724 Q0 6745433 29 9.998969 Anserini +test2724 Q0 6745447 30 9.998969 Anserini +test2725 Q0 3570877 1 8.972258 Anserini +test2725 Q0 19973999 2 8.904488 Anserini +test2725 Q0 3243031 3 8.902168 Anserini +test2725 Q0 15732410 4 8.892856 Anserini +test2725 Q0 15732395 5 8.892856 Anserini +test2725 Q0 17638467 6 8.852605 Anserini +test2725 Q0 18127966 7 8.785509 Anserini +test2725 Q0 17696152 8 8.766853 Anserini +test2725 Q0 17696148 9 8.766853 Anserini +test2725 Q0 14669276 10 8.628417 Anserini +test2725 Q0 14669278 11 8.628417 Anserini +test2725 Q0 6004498 12 8.619948 Anserini +test2725 Q0 9767133 13 8.600538 Anserini +test2725 Q0 1612123 14 8.600538 Anserini +test2725 Q0 12701256 15 8.553823 Anserini +test2725 Q0 19164219 16 8.530558 Anserini +test2725 Q0 1612181 17 8.510942 Anserini +test2725 Q0 8504949 18 8.433675 Anserini +test2725 Q0 19164222 19 8.429750 Anserini +test2725 Q0 609655 20 8.420727 Anserini +test2725 Q0 19471902 21 8.404879 Anserini +test2725 Q0 18631695 22 8.400679 Anserini +test2725 Q0 17785157 23 8.291095 Anserini +test2725 Q0 12987110 24 8.291095 Anserini +test2725 Q0 9943513 25 8.266489 Anserini +test2725 Q0 8021814 26 8.208067 Anserini +test2725 Q0 2017394 27 8.200620 Anserini +test2725 Q0 14613664 28 8.180810 Anserini +test2725 Q0 10886753 29 8.135836 Anserini +test2725 Q0 3407675 30 8.111250 Anserini +test2726 Q0 2626712 1 15.360170 Anserini +test2726 Q0 8936776 2 14.219147 Anserini +test2726 Q0 16882311 3 13.953119 Anserini +test2726 Q0 16882326 4 13.326928 Anserini +test2726 Q0 16882329 5 13.225702 Anserini +test2726 Q0 16882328 6 13.139040 Anserini +test2726 Q0 11845087 7 13.134989 Anserini +test2726 Q0 16882337 8 13.001571 Anserini +test2726 Q0 9253828 9 12.645092 Anserini +test2726 Q0 16882308 10 11.981940 Anserini +test2726 Q0 19383537 11 11.786972 Anserini +test2726 Q0 11528396 12 11.363195 Anserini +test2726 Q0 8535367 13 11.352113 Anserini +test2726 Q0 16882336 14 11.316471 Anserini +test2726 Q0 18893219 15 11.306748 Anserini +test2726 Q0 9253825 16 11.147713 Anserini +test2726 Q0 9253826 17 11.092560 Anserini +test2726 Q0 8611399 18 11.028211 Anserini +test2726 Q0 2626720 19 11.025165 Anserini +test2726 Q0 2626714 20 11.002325 Anserini +test2726 Q0 2626711 21 10.931103 Anserini +test2726 Q0 16882310 22 10.906991 Anserini +test2726 Q0 18690012 23 10.894774 Anserini +test2726 Q0 14351791 24 10.887848 Anserini +test2726 Q0 11013508 25 10.861074 Anserini +test2726 Q0 20354776 26 10.842576 Anserini +test2726 Q0 18942763 27 10.826445 Anserini +test2726 Q0 20607875 28 10.799710 Anserini +test2726 Q0 11013503 29 10.703476 Anserini +test2726 Q0 14791723 30 10.686835 Anserini +test2727 Q0 6170822 1 8.719172 Anserini +test2727 Q0 13616327 2 8.509341 Anserini +test2727 Q0 2967486 3 8.415150 Anserini +test2727 Q0 14467032 4 8.349169 Anserini +test2727 Q0 7712730 5 8.334821 Anserini +test2727 Q0 8496539 6 8.321644 Anserini +test2727 Q0 18585858 7 8.274238 Anserini +test2727 Q0 7987682 8 8.218634 Anserini +test2727 Q0 8639677 9 8.211963 Anserini +test2727 Q0 8290168 10 8.208736 Anserini +test2727 Q0 19465547 11 8.208736 Anserini +test2727 Q0 16175630 12 8.171139 Anserini +test2727 Q0 4277156 13 8.171139 Anserini +test2727 Q0 15026595 14 8.152142 Anserini +test2727 Q0 16536750 15 8.067827 Anserini +test2727 Q0 16175631 16 8.021937 Anserini +test2727 Q0 19651684 17 8.015913 Anserini +test2727 Q0 7369902 18 7.959232 Anserini +test2727 Q0 13287813 19 7.955163 Anserini +test2727 Q0 18155578 20 7.936171 Anserini +test2727 Q0 3701372 21 7.863944 Anserini +test2727 Q0 3704932 22 7.860153 Anserini +test2727 Q0 494281 23 7.821592 Anserini +test2727 Q0 16405766 24 7.807520 Anserini +test2727 Q0 3284152 25 7.800228 Anserini +test2727 Q0 8800119 26 7.785918 Anserini +test2727 Q0 3085020 27 7.776844 Anserini +test2727 Q0 3179400 28 7.732047 Anserini +test2727 Q0 9556138 29 7.717902 Anserini +test2727 Q0 3039036 30 7.714654 Anserini +test2728 Q0 3688100 1 12.824807 Anserini +test2728 Q0 11483201 2 12.278008 Anserini +test2728 Q0 11483210 3 12.278008 Anserini +test2728 Q0 3688110 4 11.970340 Anserini +test2728 Q0 11258406 5 11.663241 Anserini +test2728 Q0 18300753 6 11.647519 Anserini +test2728 Q0 5298597 7 11.616116 Anserini +test2728 Q0 11258409 8 11.307220 Anserini +test2728 Q0 11749483 9 11.306170 Anserini +test2728 Q0 20782473 10 11.265162 Anserini +test2728 Q0 9651934 11 11.206334 Anserini +test2728 Q0 3794376 12 11.195440 Anserini +test2728 Q0 2250384 13 11.093325 Anserini +test2728 Q0 15524075 14 11.047529 Anserini +test2728 Q0 20456780 15 11.040130 Anserini +test2728 Q0 9747926 16 10.991271 Anserini +test2728 Q0 10559933 17 10.987793 Anserini +test2728 Q0 4203870 18 10.971490 Anserini +test2728 Q0 10665045 19 10.882921 Anserini +test2728 Q0 1912008 20 10.820681 Anserini +test2728 Q0 17543114 21 10.819415 Anserini +test2728 Q0 9980407 22 10.813221 Anserini +test2728 Q0 11339828 23 10.787242 Anserini +test2728 Q0 8144363 24 10.764948 Anserini +test2728 Q0 8227938 25 10.713601 Anserini +test2728 Q0 12673860 26 10.707905 Anserini +test2728 Q0 9362092 27 10.694119 Anserini +test2728 Q0 8800081 28 10.647956 Anserini +test2728 Q0 6516717 29 10.624285 Anserini +test2728 Q0 9747925 30 10.611006 Anserini +test2729 Q0 6831987 1 13.985006 Anserini +test2729 Q0 9118502 2 13.807929 Anserini +test2729 Q0 14688626 3 13.077944 Anserini +test2729 Q0 9522315 4 13.034001 Anserini +test2729 Q0 12073066 5 12.913800 Anserini +test2729 Q0 9367372 6 12.701085 Anserini +test2729 Q0 17621280 7 12.680628 Anserini +test2729 Q0 20227020 8 12.608660 Anserini +test2729 Q0 20227024 9 12.608660 Anserini +test2729 Q0 20868077 10 12.584833 Anserini +test2729 Q0 6832001 11 12.575111 Anserini +test2729 Q0 14060363 12 12.548292 Anserini +test2729 Q0 14334509 13 12.499361 Anserini +test2729 Q0 18244889 14 12.472291 Anserini +test2729 Q0 8214763 15 12.378885 Anserini +test2729 Q0 6831974 16 12.350343 Anserini +test2729 Q0 6831967 17 12.348167 Anserini +test2729 Q0 14334511 18 12.160040 Anserini +test2729 Q0 6831989 19 12.007857 Anserini +test2729 Q0 15932456 20 11.996253 Anserini +test2729 Q0 2140013 21 11.962524 Anserini +test2729 Q0 8437598 22 11.793863 Anserini +test2729 Q0 17452180 23 11.734921 Anserini +test2729 Q0 509241 24 11.726676 Anserini +test2729 Q0 511737 25 11.663902 Anserini +test2729 Q0 6831998 26 11.645359 Anserini +test2729 Q0 7200489 27 11.624481 Anserini +test2729 Q0 7200539 28 11.558839 Anserini +test2729 Q0 17751547 29 11.552340 Anserini +test2729 Q0 17751546 30 11.513954 Anserini +test273 Q0 5838978 1 17.062222 Anserini +test273 Q0 2953597 2 15.865522 Anserini +test273 Q0 17441040 3 15.565336 Anserini +test273 Q0 4428075 4 15.076629 Anserini +test273 Q0 5838987 5 15.010607 Anserini +test273 Q0 6405432 6 14.925850 Anserini +test273 Q0 5838979 7 14.711093 Anserini +test273 Q0 820571 8 14.694392 Anserini +test273 Q0 19929182 9 14.670376 Anserini +test273 Q0 5838983 10 14.635645 Anserini +test273 Q0 10290596 11 14.617033 Anserini +test273 Q0 18302624 12 14.535433 Anserini +test273 Q0 4383981 13 14.422918 Anserini +test273 Q0 8229158 14 14.296775 Anserini +test273 Q0 2684529 15 14.185753 Anserini +test273 Q0 2758288 16 13.831445 Anserini +test273 Q0 5206679 17 13.786625 Anserini +test273 Q0 15206293 18 13.562443 Anserini +test273 Q0 549703 19 13.490701 Anserini +test273 Q0 8323252 20 13.463857 Anserini +test273 Q0 17441784 21 13.408794 Anserini +test273 Q0 15347784 22 13.357405 Anserini +test273 Q0 4690294 23 13.349725 Anserini +test273 Q0 220030 24 13.333707 Anserini +test273 Q0 8299707 25 13.327902 Anserini +test273 Q0 13376224 26 13.292559 Anserini +test273 Q0 6848897 27 13.261988 Anserini +test273 Q0 10290244 28 13.260287 Anserini +test273 Q0 8396906 29 13.241369 Anserini +test273 Q0 12331277 30 13.238111 Anserini +test2730 Q0 15632871 1 11.008631 Anserini +test2730 Q0 17779971 2 11.005931 Anserini +test2730 Q0 14308170 3 10.919003 Anserini +test2730 Q0 9804947 4 10.618598 Anserini +test2730 Q0 8134117 5 10.475334 Anserini +test2730 Q0 17314747 6 10.229241 Anserini +test2730 Q0 2875136 7 10.127624 Anserini +test2730 Q0 4090076 8 10.088629 Anserini +test2730 Q0 17081260 9 10.057339 Anserini +test2730 Q0 7397381 10 10.048882 Anserini +test2730 Q0 17435562 11 10.009912 Anserini +test2730 Q0 6905458 12 9.874681 Anserini +test2730 Q0 4090068 13 9.869213 Anserini +test2730 Q0 13362654 14 9.845554 Anserini +test2730 Q0 3807414 15 9.783244 Anserini +test2730 Q0 6594827 16 9.698338 Anserini +test2730 Q0 4609048 17 9.685348 Anserini +test2730 Q0 5133838 18 9.679898 Anserini +test2730 Q0 19051778 19 9.671275 Anserini +test2730 Q0 1994353 20 9.659228 Anserini +test2730 Q0 7691519 21 9.633984 Anserini +test2730 Q0 9939399 22 9.589191 Anserini +test2730 Q0 1983459 23 9.571396 Anserini +test2730 Q0 12333462 24 9.527978 Anserini +test2730 Q0 17171333 25 9.510846 Anserini +test2730 Q0 5939907 26 9.453697 Anserini +test2730 Q0 11928342 27 9.453697 Anserini +test2730 Q0 1523764 28 9.436510 Anserini +test2730 Q0 12425502 29 9.436510 Anserini +test2730 Q0 19437844 30 9.387300 Anserini +test2731 Q0 435375 1 19.580826 Anserini +test2731 Q0 14016205 2 19.410753 Anserini +test2731 Q0 435388 3 19.253746 Anserini +test2731 Q0 1507834 4 16.653889 Anserini +test2731 Q0 517588 5 16.604149 Anserini +test2731 Q0 881128 6 16.259747 Anserini +test2731 Q0 201567 7 16.214643 Anserini +test2731 Q0 11967707 8 16.139446 Anserini +test2731 Q0 9339185 9 15.978855 Anserini +test2731 Q0 435377 10 15.691990 Anserini +test2731 Q0 5909142 11 15.539017 Anserini +test2731 Q0 11818481 12 15.303131 Anserini +test2731 Q0 5825897 13 14.715883 Anserini +test2731 Q0 5825899 14 14.715883 Anserini +test2731 Q0 7710082 15 14.692044 Anserini +test2731 Q0 10917571 16 14.554514 Anserini +test2731 Q0 17833090 17 14.516012 Anserini +test2731 Q0 3814861 18 14.516012 Anserini +test2731 Q0 4587333 19 14.429354 Anserini +test2731 Q0 4587332 20 14.348492 Anserini +test2731 Q0 5627380 21 14.323807 Anserini +test2731 Q0 517587 22 14.285217 Anserini +test2731 Q0 7594446 23 14.199189 Anserini +test2731 Q0 6608269 24 14.137151 Anserini +test2731 Q0 6608271 25 14.137151 Anserini +test2731 Q0 435376 26 14.053907 Anserini +test2731 Q0 201455 27 14.053907 Anserini +test2731 Q0 4587334 28 14.031221 Anserini +test2731 Q0 9339193 29 14.019657 Anserini +test2731 Q0 538906 30 13.965596 Anserini +test2732 Q0 17762120 1 17.172947 Anserini +test2732 Q0 17762123 2 16.530579 Anserini +test2732 Q0 17762126 3 15.975487 Anserini +test2732 Q0 17762127 4 15.297654 Anserini +test2732 Q0 17762125 5 15.015716 Anserini +test2732 Q0 8724341 6 14.850237 Anserini +test2732 Q0 19128131 7 14.798717 Anserini +test2732 Q0 16181527 8 14.749654 Anserini +test2732 Q0 8724314 9 14.413548 Anserini +test2732 Q0 9869665 10 14.368272 Anserini +test2732 Q0 385664 11 14.313864 Anserini +test2732 Q0 10897434 12 14.247917 Anserini +test2732 Q0 10897398 13 14.247917 Anserini +test2732 Q0 385665 14 14.244008 Anserini +test2732 Q0 8724312 15 14.181514 Anserini +test2732 Q0 10897184 16 14.146107 Anserini +test2732 Q0 10897380 17 14.058645 Anserini +test2732 Q0 10897432 18 13.976157 Anserini +test2732 Q0 14179008 19 13.956338 Anserini +test2732 Q0 10897397 20 13.901420 Anserini +test2732 Q0 10897330 21 13.880904 Anserini +test2732 Q0 10897197 22 13.876612 Anserini +test2732 Q0 15792512 23 13.863411 Anserini +test2732 Q0 10896977 24 13.831196 Anserini +test2732 Q0 8344593 25 13.805269 Anserini +test2732 Q0 10897198 26 13.774374 Anserini +test2732 Q0 6477339 27 13.744865 Anserini +test2732 Q0 8724339 28 13.733674 Anserini +test2732 Q0 8344589 29 13.730680 Anserini +test2732 Q0 7863017 30 13.610920 Anserini +test2733 Q0 11870333 1 18.118557 Anserini +test2733 Q0 5587429 2 17.902634 Anserini +test2733 Q0 5587400 3 17.470490 Anserini +test2733 Q0 5587394 4 17.446093 Anserini +test2733 Q0 5587401 5 17.217447 Anserini +test2733 Q0 547859 6 16.767298 Anserini +test2733 Q0 5545614 7 16.496668 Anserini +test2733 Q0 2083318 8 16.475979 Anserini +test2733 Q0 5587421 9 16.413864 Anserini +test2733 Q0 5587408 10 16.362343 Anserini +test2733 Q0 1371296 11 16.022940 Anserini +test2733 Q0 12295723 12 15.989022 Anserini +test2733 Q0 1470066 13 15.989022 Anserini +test2733 Q0 12295726 14 15.989022 Anserini +test2733 Q0 1371308 15 15.845587 Anserini +test2733 Q0 2375644 16 15.804423 Anserini +test2733 Q0 3501725 17 15.795252 Anserini +test2733 Q0 3276427 18 15.772172 Anserini +test2733 Q0 7100757 19 15.588413 Anserini +test2733 Q0 894073 20 15.588413 Anserini +test2733 Q0 3161126 21 15.536179 Anserini +test2733 Q0 558625 22 15.528152 Anserini +test2733 Q0 558594 23 15.528152 Anserini +test2733 Q0 9017514 24 15.297316 Anserini +test2733 Q0 10588082 25 15.277119 Anserini +test2733 Q0 3381407 26 15.257400 Anserini +test2733 Q0 558612 27 15.249163 Anserini +test2733 Q0 5725204 28 15.227007 Anserini +test2733 Q0 1371323 29 15.176810 Anserini +test2733 Q0 3679037 30 15.092190 Anserini +test2734 Q0 2919292 1 25.710951 Anserini +test2734 Q0 2022774 2 24.595615 Anserini +test2734 Q0 5259329 3 23.795269 Anserini +test2734 Q0 5259330 4 21.956125 Anserini +test2734 Q0 16651766 5 21.821402 Anserini +test2734 Q0 4671981 6 21.738049 Anserini +test2734 Q0 10546924 7 21.478653 Anserini +test2734 Q0 19727134 8 21.233227 Anserini +test2734 Q0 1828870 9 21.121836 Anserini +test2734 Q0 2919294 10 21.120817 Anserini +test2734 Q0 2919304 11 21.031837 Anserini +test2734 Q0 2919307 12 20.977409 Anserini +test2734 Q0 2919293 13 20.834152 Anserini +test2734 Q0 15305765 14 20.814884 Anserini +test2734 Q0 4671976 15 20.802612 Anserini +test2734 Q0 10546931 16 20.597919 Anserini +test2734 Q0 5205496 17 20.356508 Anserini +test2734 Q0 1920434 18 20.046803 Anserini +test2734 Q0 18408482 19 20.018547 Anserini +test2734 Q0 19727130 20 19.997234 Anserini +test2734 Q0 1815397 21 19.926926 Anserini +test2734 Q0 16651762 22 19.879313 Anserini +test2734 Q0 4671972 23 19.799109 Anserini +test2734 Q0 4671980 24 19.766087 Anserini +test2734 Q0 16651767 25 19.713741 Anserini +test2734 Q0 5427198 26 19.653603 Anserini +test2734 Q0 10996578 27 19.572809 Anserini +test2734 Q0 18928986 28 19.561432 Anserini +test2734 Q0 1842141 29 19.533596 Anserini +test2734 Q0 16651781 30 19.413919 Anserini +test2735 Q0 10732148 1 14.590556 Anserini +test2735 Q0 2734530 2 14.571416 Anserini +test2735 Q0 8937965 3 13.973545 Anserini +test2735 Q0 258375 4 13.732716 Anserini +test2735 Q0 1690746 5 13.148377 Anserini +test2735 Q0 6728531 6 13.001593 Anserini +test2735 Q0 19314921 7 12.980518 Anserini +test2735 Q0 19152711 8 12.590039 Anserini +test2735 Q0 16285876 9 12.535367 Anserini +test2735 Q0 13518817 10 12.373266 Anserini +test2735 Q0 4450419 11 12.183653 Anserini +test2735 Q0 18563346 12 12.053446 Anserini +test2735 Q0 11638471 13 12.010568 Anserini +test2735 Q0 11647828 14 11.982720 Anserini +test2735 Q0 16977219 15 11.982720 Anserini +test2735 Q0 1797580 16 11.684893 Anserini +test2735 Q0 2734539 17 11.628828 Anserini +test2735 Q0 15455370 18 11.613549 Anserini +test2735 Q0 393697 19 11.587879 Anserini +test2735 Q0 394425 20 11.541270 Anserini +test2735 Q0 11793036 21 11.534499 Anserini +test2735 Q0 2588354 22 11.498848 Anserini +test2735 Q0 17787565 23 11.480778 Anserini +test2735 Q0 6982256 24 11.463117 Anserini +test2735 Q0 6832606 25 11.357985 Anserini +test2735 Q0 772743 26 11.333669 Anserini +test2735 Q0 13675247 27 11.304117 Anserini +test2735 Q0 10691439 28 11.303220 Anserini +test2735 Q0 18563356 29 11.280808 Anserini +test2735 Q0 12810379 30 11.188929 Anserini +test2736 Q0 11586761 1 14.713055 Anserini +test2736 Q0 20314079 2 14.572128 Anserini +test2736 Q0 6810932 3 14.485041 Anserini +test2736 Q0 7924091 4 14.254195 Anserini +test2736 Q0 6810957 5 14.110632 Anserini +test2736 Q0 11586760 6 13.918812 Anserini +test2736 Q0 6810971 7 13.797996 Anserini +test2736 Q0 6810924 8 13.797996 Anserini +test2736 Q0 6810953 9 13.694212 Anserini +test2736 Q0 17004562 10 13.655189 Anserini +test2736 Q0 17333175 11 13.644983 Anserini +test2736 Q0 17211013 12 13.644983 Anserini +test2736 Q0 11586762 13 13.530404 Anserini +test2736 Q0 15780050 14 13.325043 Anserini +test2736 Q0 6810929 15 13.176111 Anserini +test2736 Q0 11586763 16 13.176111 Anserini +test2736 Q0 10031883 17 13.161999 Anserini +test2736 Q0 19541686 18 13.161999 Anserini +test2736 Q0 12371664 19 13.136828 Anserini +test2736 Q0 10627003 20 13.122094 Anserini +test2736 Q0 10627008 21 13.122094 Anserini +test2736 Q0 14079782 22 13.109973 Anserini +test2736 Q0 8507273 23 13.014797 Anserini +test2736 Q0 6810931 24 12.797915 Anserini +test2736 Q0 3734226 25 12.797305 Anserini +test2736 Q0 15043966 26 12.703403 Anserini +test2736 Q0 17004561 27 12.575916 Anserini +test2736 Q0 2306699 28 12.422286 Anserini +test2736 Q0 16385989 29 12.420014 Anserini +test2736 Q0 2517828 30 12.408682 Anserini +test2737 Q0 6269630 1 12.842783 Anserini +test2737 Q0 6269629 2 12.640800 Anserini +test2737 Q0 13408184 3 12.318133 Anserini +test2737 Q0 4292228 4 12.176461 Anserini +test2737 Q0 15937865 5 11.926656 Anserini +test2737 Q0 2059445 6 11.754022 Anserini +test2737 Q0 13408187 7 11.610602 Anserini +test2737 Q0 2024398 8 11.581223 Anserini +test2737 Q0 9310006 9 11.478073 Anserini +test2737 Q0 3743768 10 11.463930 Anserini +test2737 Q0 14361355 11 11.422561 Anserini +test2737 Q0 2235739 12 11.340739 Anserini +test2737 Q0 13408180 13 11.320643 Anserini +test2737 Q0 20014874 14 11.317461 Anserini +test2737 Q0 10732446 15 11.304913 Anserini +test2737 Q0 19175905 16 11.236889 Anserini +test2737 Q0 8656044 17 11.224832 Anserini +test2737 Q0 1567542 18 11.148329 Anserini +test2737 Q0 10418206 19 11.145058 Anserini +test2737 Q0 13408185 20 11.116142 Anserini +test2737 Q0 20881817 21 11.090384 Anserini +test2737 Q0 11289811 22 11.081183 Anserini +test2737 Q0 18566487 23 11.054632 Anserini +test2737 Q0 12328055 24 11.051562 Anserini +test2737 Q0 13408188 25 11.030404 Anserini +test2737 Q0 6615951 26 10.945834 Anserini +test2737 Q0 3754545 27 10.825131 Anserini +test2737 Q0 12443732 28 10.824488 Anserini +test2737 Q0 18705858 29 10.805445 Anserini +test2737 Q0 20123683 30 10.802353 Anserini +test2738 Q0 5939551 1 14.141862 Anserini +test2738 Q0 5939568 2 13.787284 Anserini +test2738 Q0 5939545 3 13.538546 Anserini +test2738 Q0 1761922 4 13.190907 Anserini +test2738 Q0 5939541 5 13.165441 Anserini +test2738 Q0 5939548 6 12.914201 Anserini +test2738 Q0 5939550 7 12.911198 Anserini +test2738 Q0 5939543 8 12.873714 Anserini +test2738 Q0 5939554 9 12.868589 Anserini +test2738 Q0 5939556 10 12.861755 Anserini +test2738 Q0 5939553 11 12.672503 Anserini +test2738 Q0 5939542 12 12.460565 Anserini +test2738 Q0 5939569 13 12.453049 Anserini +test2738 Q0 6116570 14 12.361062 Anserini +test2738 Q0 5939547 15 12.315928 Anserini +test2738 Q0 1761918 16 12.287688 Anserini +test2738 Q0 5939544 17 12.261150 Anserini +test2738 Q0 10814813 18 12.255487 Anserini +test2738 Q0 2832144 19 12.172925 Anserini +test2738 Q0 5939549 20 12.038801 Anserini +test2738 Q0 5939566 21 12.011202 Anserini +test2738 Q0 3972787 22 11.962220 Anserini +test2738 Q0 5939559 23 11.917297 Anserini +test2738 Q0 5939567 24 11.720270 Anserini +test2738 Q0 5939565 25 11.718596 Anserini +test2738 Q0 10151706 26 11.699616 Anserini +test2738 Q0 16984480 27 11.694220 Anserini +test2738 Q0 5939562 28 11.662448 Anserini +test2738 Q0 14898680 29 11.567744 Anserini +test2738 Q0 5939558 30 11.452898 Anserini +test2739 Q0 15743277 1 14.596569 Anserini +test2739 Q0 3705044 2 14.548246 Anserini +test2739 Q0 14345500 3 14.436976 Anserini +test2739 Q0 15461034 4 14.434429 Anserini +test2739 Q0 20913895 5 14.412465 Anserini +test2739 Q0 12422127 6 14.391211 Anserini +test2739 Q0 15743265 7 14.051430 Anserini +test2739 Q0 12422161 8 13.989824 Anserini +test2739 Q0 15464702 9 13.928553 Anserini +test2739 Q0 15743255 10 13.926321 Anserini +test2739 Q0 15743263 11 13.925634 Anserini +test2739 Q0 12422149 12 13.823137 Anserini +test2739 Q0 5049323 13 13.786694 Anserini +test2739 Q0 202594 14 13.682614 Anserini +test2739 Q0 19671974 15 13.630998 Anserini +test2739 Q0 18970721 16 13.624578 Anserini +test2739 Q0 16339882 17 13.567299 Anserini +test2739 Q0 15743250 18 13.534177 Anserini +test2739 Q0 3705047 19 13.495183 Anserini +test2739 Q0 15743266 20 13.451037 Anserini +test2739 Q0 20349173 21 13.414120 Anserini +test2739 Q0 20913893 22 13.406901 Anserini +test2739 Q0 17650662 23 13.401391 Anserini +test2739 Q0 15451314 24 13.396538 Anserini +test2739 Q0 20530480 25 13.387346 Anserini +test2739 Q0 14051618 26 13.384049 Anserini +test2739 Q0 18970717 27 13.333512 Anserini +test2739 Q0 15743254 28 13.327884 Anserini +test2739 Q0 20518690 29 13.324428 Anserini +test2739 Q0 20530484 30 13.264441 Anserini +test274 Q0 14476710 1 23.951431 Anserini +test274 Q0 1774594 2 23.317142 Anserini +test274 Q0 3556552 3 22.336292 Anserini +test274 Q0 3556540 4 21.869095 Anserini +test274 Q0 1774618 5 21.448223 Anserini +test274 Q0 15631966 6 21.231213 Anserini +test274 Q0 15921914 7 20.443420 Anserini +test274 Q0 18208711 8 19.557327 Anserini +test274 Q0 15921893 9 19.518021 Anserini +test274 Q0 15631965 10 19.261496 Anserini +test274 Q0 15785438 11 19.246439 Anserini +test274 Q0 14476712 12 18.918579 Anserini +test274 Q0 15921879 13 18.823185 Anserini +test274 Q0 5691284 14 18.619417 Anserini +test274 Q0 18743818 15 17.826529 Anserini +test274 Q0 14476715 16 17.691502 Anserini +test274 Q0 3556546 17 17.532494 Anserini +test274 Q0 3969722 18 17.340309 Anserini +test274 Q0 7613439 19 17.125288 Anserini +test274 Q0 15921888 20 16.963236 Anserini +test274 Q0 15921881 21 16.900434 Anserini +test274 Q0 497709 22 16.827507 Anserini +test274 Q0 14476725 23 16.804119 Anserini +test274 Q0 8395298 24 16.757675 Anserini +test274 Q0 6598521 25 16.694798 Anserini +test274 Q0 15785446 26 16.530598 Anserini +test274 Q0 5590753 27 16.256689 Anserini +test274 Q0 11472351 28 16.092339 Anserini +test274 Q0 18977391 29 15.897295 Anserini +test274 Q0 18977383 30 15.710162 Anserini +test2740 Q0 20598055 1 11.584643 Anserini +test2740 Q0 20669178 2 11.509649 Anserini +test2740 Q0 5493038 3 11.247628 Anserini +test2740 Q0 14452722 4 11.197039 Anserini +test2740 Q0 19935292 5 10.921799 Anserini +test2740 Q0 20079490 6 10.905016 Anserini +test2740 Q0 17952382 7 10.904447 Anserini +test2740 Q0 11588136 8 10.851137 Anserini +test2740 Q0 19116320 9 10.831106 Anserini +test2740 Q0 11732256 10 10.779043 Anserini +test2740 Q0 20706754 11 10.767930 Anserini +test2740 Q0 5546989 12 10.767708 Anserini +test2740 Q0 19887753 13 10.711967 Anserini +test2740 Q0 20817758 14 10.711967 Anserini +test2740 Q0 14952879 15 10.711516 Anserini +test2740 Q0 20229604 16 10.694408 Anserini +test2740 Q0 20833602 17 10.645265 Anserini +test2740 Q0 20575273 18 10.586128 Anserini +test2740 Q0 3330073 19 10.582611 Anserini +test2740 Q0 20725297 20 10.575055 Anserini +test2740 Q0 20950885 21 10.571930 Anserini +test2740 Q0 20657178 22 10.563148 Anserini +test2740 Q0 20088090 23 10.532901 Anserini +test2740 Q0 20657177 24 10.500205 Anserini +test2740 Q0 16356284 25 10.479643 Anserini +test2740 Q0 18281965 26 10.477495 Anserini +test2740 Q0 1094655 27 10.423491 Anserini +test2740 Q0 16917128 28 10.422230 Anserini +test2740 Q0 20627309 29 10.413007 Anserini +test2740 Q0 20121770 30 10.373881 Anserini +test2741 Q0 17154098 1 24.205940 Anserini +test2741 Q0 2375171 2 23.344048 Anserini +test2741 Q0 14448233 3 23.087601 Anserini +test2741 Q0 291759 4 23.050299 Anserini +test2741 Q0 6357248 5 22.945709 Anserini +test2741 Q0 51432 6 22.742870 Anserini +test2741 Q0 291382 7 22.419538 Anserini +test2741 Q0 5252168 8 22.396429 Anserini +test2741 Q0 2448046 9 22.282125 Anserini +test2741 Q0 294520 10 22.181124 Anserini +test2741 Q0 294519 11 22.134264 Anserini +test2741 Q0 291371 12 21.805578 Anserini +test2741 Q0 456457 13 21.655268 Anserini +test2741 Q0 14448261 14 21.625675 Anserini +test2741 Q0 3143517 15 21.567936 Anserini +test2741 Q0 18749465 16 21.515493 Anserini +test2741 Q0 14448240 17 21.360117 Anserini +test2741 Q0 13569917 18 21.205149 Anserini +test2741 Q0 51457 19 21.163309 Anserini +test2741 Q0 51434 20 21.160309 Anserini +test2741 Q0 487338 21 20.958920 Anserini +test2741 Q0 9755307 22 20.780714 Anserini +test2741 Q0 72968 23 20.671589 Anserini +test2741 Q0 313187 24 20.655603 Anserini +test2741 Q0 14521496 25 20.623171 Anserini +test2741 Q0 291389 26 20.606697 Anserini +test2741 Q0 12257349 27 20.566460 Anserini +test2741 Q0 12531601 28 20.478359 Anserini +test2741 Q0 291379 29 20.444235 Anserini +test2741 Q0 14448235 30 20.404089 Anserini +test2742 Q0 66960 1 16.105379 Anserini +test2742 Q0 20407208 2 15.666912 Anserini +test2742 Q0 20407221 3 14.321194 Anserini +test2742 Q0 11377965 4 13.635966 Anserini +test2742 Q0 7202771 5 13.623985 Anserini +test2742 Q0 66961 6 13.546773 Anserini +test2742 Q0 837642 7 13.512365 Anserini +test2742 Q0 11377974 8 13.456646 Anserini +test2742 Q0 20407231 9 13.290756 Anserini +test2742 Q0 20407223 10 13.147120 Anserini +test2742 Q0 20407225 11 12.984625 Anserini +test2742 Q0 20407249 12 12.812518 Anserini +test2742 Q0 7435428 13 12.810530 Anserini +test2742 Q0 20407232 14 12.810530 Anserini +test2742 Q0 20407224 15 12.776459 Anserini +test2742 Q0 19730966 16 12.318729 Anserini +test2742 Q0 6039619 17 12.207948 Anserini +test2742 Q0 20407209 18 12.147921 Anserini +test2742 Q0 20407207 19 12.111818 Anserini +test2742 Q0 13589788 20 12.111818 Anserini +test2742 Q0 5760181 21 11.990292 Anserini +test2742 Q0 20407222 22 11.555088 Anserini +test2742 Q0 20407212 23 11.536379 Anserini +test2742 Q0 13589785 24 11.166340 Anserini +test2742 Q0 20407219 25 11.160962 Anserini +test2742 Q0 13589791 26 11.153172 Anserini +test2742 Q0 655943 27 11.053810 Anserini +test2742 Q0 837648 28 11.042493 Anserini +test2742 Q0 13589789 29 10.964998 Anserini +test2742 Q0 11377968 30 10.960875 Anserini +test2743 Q0 20124513 1 13.188323 Anserini +test2743 Q0 1987364 2 11.932013 Anserini +test2743 Q0 1987366 3 11.648714 Anserini +test2743 Q0 10480566 4 10.684259 Anserini +test2743 Q0 8425482 5 10.480891 Anserini +test2743 Q0 8425477 6 10.471216 Anserini +test2743 Q0 8366439 7 10.402959 Anserini +test2743 Q0 8366440 8 10.402959 Anserini +test2743 Q0 1987372 9 10.253235 Anserini +test2743 Q0 1987363 10 10.253235 Anserini +test2743 Q0 8787250 11 9.928998 Anserini +test2743 Q0 8787252 12 9.928998 Anserini +test2743 Q0 2963235 13 9.866915 Anserini +test2743 Q0 1987368 14 9.751854 Anserini +test2743 Q0 8962489 15 9.733886 Anserini +test2743 Q0 79718 16 9.715342 Anserini +test2743 Q0 18352966 17 9.685556 Anserini +test2743 Q0 6546688 18 9.589353 Anserini +test2743 Q0 10393351 19 9.540004 Anserini +test2743 Q0 10980684 20 9.471445 Anserini +test2743 Q0 4978747 21 9.443162 Anserini +test2743 Q0 1987371 22 9.406717 Anserini +test2743 Q0 1987369 23 9.384136 Anserini +test2743 Q0 6914517 24 9.333011 Anserini +test2743 Q0 6914515 25 9.333011 Anserini +test2743 Q0 1987367 26 9.329922 Anserini +test2743 Q0 2588561 27 9.286474 Anserini +test2743 Q0 671723 28 9.209987 Anserini +test2743 Q0 19345653 29 9.179043 Anserini +test2743 Q0 11696287 30 9.173528 Anserini +test2744 Q0 9473015 1 15.718838 Anserini +test2744 Q0 9473018 2 15.718838 Anserini +test2744 Q0 9473016 3 14.825082 Anserini +test2744 Q0 808887 4 13.552659 Anserini +test2744 Q0 15316252 5 13.462299 Anserini +test2744 Q0 808796 6 13.119732 Anserini +test2744 Q0 9473017 7 12.898635 Anserini +test2744 Q0 808847 8 12.763539 Anserini +test2744 Q0 14339199 9 12.493413 Anserini +test2744 Q0 808862 10 11.916504 Anserini +test2744 Q0 5640222 11 11.318384 Anserini +test2744 Q0 11261311 12 11.175984 Anserini +test2744 Q0 808803 13 11.058493 Anserini +test2744 Q0 14288981 14 11.058493 Anserini +test2744 Q0 808854 15 10.956137 Anserini +test2744 Q0 808876 16 10.897486 Anserini +test2744 Q0 808877 17 10.897486 Anserini +test2744 Q0 5823884 18 10.880262 Anserini +test2744 Q0 5640209 19 10.880262 Anserini +test2744 Q0 808808 20 10.874085 Anserini +test2744 Q0 808859 21 10.873777 Anserini +test2744 Q0 14732295 22 10.872366 Anserini +test2744 Q0 5640196 23 10.829276 Anserini +test2744 Q0 3539351 24 10.815614 Anserini +test2744 Q0 7501664 25 10.808520 Anserini +test2744 Q0 16756424 26 10.792686 Anserini +test2744 Q0 7501687 27 10.764580 Anserini +test2744 Q0 5757768 28 10.736761 Anserini +test2744 Q0 11036019 29 10.716695 Anserini +test2744 Q0 808826 30 10.657047 Anserini +test2745 Q0 12287300 1 12.038806 Anserini +test2745 Q0 9356120 2 11.927846 Anserini +test2745 Q0 12237861 3 11.811218 Anserini +test2745 Q0 15307029 4 11.625002 Anserini +test2745 Q0 7709069 5 11.417213 Anserini +test2745 Q0 8109816 6 11.226936 Anserini +test2745 Q0 8101710 7 11.083818 Anserini +test2745 Q0 8202330 8 10.896570 Anserini +test2745 Q0 9432834 9 10.743882 Anserini +test2745 Q0 19094991 10 10.719500 Anserini +test2745 Q0 1168599 11 10.683599 Anserini +test2745 Q0 8714533 12 10.621972 Anserini +test2745 Q0 16237452 13 10.600480 Anserini +test2745 Q0 7367469 14 10.595490 Anserini +test2745 Q0 16304579 15 10.532242 Anserini +test2745 Q0 5570496 16 10.524599 Anserini +test2745 Q0 9695359 17 10.491048 Anserini +test2745 Q0 18844478 18 10.426691 Anserini +test2745 Q0 14528811 19 10.425998 Anserini +test2745 Q0 5393723 20 10.418370 Anserini +test2745 Q0 631465 21 10.418240 Anserini +test2745 Q0 15076382 22 10.398766 Anserini +test2745 Q0 10977137 23 10.383536 Anserini +test2745 Q0 5695616 24 10.360395 Anserini +test2745 Q0 8507427 25 10.328374 Anserini +test2745 Q0 20838355 26 10.268431 Anserini +test2745 Q0 2582506 27 10.257067 Anserini +test2745 Q0 4240969 28 10.236414 Anserini +test2745 Q0 4398297 29 10.216656 Anserini +test2745 Q0 14431709 30 10.198808 Anserini +test2746 Q0 18846478 1 18.984241 Anserini +test2746 Q0 20763073 2 18.980751 Anserini +test2746 Q0 20763076 3 17.885679 Anserini +test2746 Q0 18962210 4 16.915859 Anserini +test2746 Q0 8570414 5 16.321251 Anserini +test2746 Q0 9960103 6 16.035393 Anserini +test2746 Q0 18647136 7 15.786116 Anserini +test2746 Q0 8570415 8 15.721677 Anserini +test2746 Q0 5430294 9 14.989077 Anserini +test2746 Q0 18647137 10 14.968165 Anserini +test2746 Q0 18846481 11 14.891004 Anserini +test2746 Q0 6371800 12 14.891004 Anserini +test2746 Q0 17029208 13 14.664220 Anserini +test2746 Q0 17029209 14 14.664220 Anserini +test2746 Q0 15627331 15 14.287812 Anserini +test2746 Q0 4974329 16 14.182770 Anserini +test2746 Q0 18156546 17 14.177634 Anserini +test2746 Q0 2596866 18 14.052536 Anserini +test2746 Q0 17003969 19 14.048481 Anserini +test2746 Q0 20276982 20 13.910609 Anserini +test2746 Q0 18156544 21 13.656494 Anserini +test2746 Q0 18156548 22 13.656494 Anserini +test2746 Q0 5826 23 13.562677 Anserini +test2746 Q0 11948700 24 13.559265 Anserini +test2746 Q0 11948708 25 13.559265 Anserini +test2746 Q0 17070741 26 13.550785 Anserini +test2746 Q0 7442854 27 13.395319 Anserini +test2746 Q0 6371797 28 13.374292 Anserini +test2746 Q0 1800008 29 13.374292 Anserini +test2746 Q0 19572983 30 13.374292 Anserini +test2747 Q0 1064876 1 13.890570 Anserini +test2747 Q0 9478547 2 13.630089 Anserini +test2747 Q0 20522218 3 13.573204 Anserini +test2747 Q0 9781240 4 13.198183 Anserini +test2747 Q0 9317660 5 13.141622 Anserini +test2747 Q0 1511068 6 12.649174 Anserini +test2747 Q0 12139670 7 12.211916 Anserini +test2747 Q0 2710342 8 11.971972 Anserini +test2747 Q0 13085520 9 11.961040 Anserini +test2747 Q0 14728185 10 11.938388 Anserini +test2747 Q0 7022942 11 11.812581 Anserini +test2747 Q0 19068129 12 11.774034 Anserini +test2747 Q0 498529 13 11.774034 Anserini +test2747 Q0 693868 14 11.645943 Anserini +test2747 Q0 10520700 15 11.608110 Anserini +test2747 Q0 14304616 16 11.604775 Anserini +test2747 Q0 14304614 17 11.530765 Anserini +test2747 Q0 8568575 18 11.519945 Anserini +test2747 Q0 5472748 19 11.514210 Anserini +test2747 Q0 2648505 20 11.436527 Anserini +test2747 Q0 10208575 21 11.426198 Anserini +test2747 Q0 15718732 22 11.347465 Anserini +test2747 Q0 14348665 23 11.292356 Anserini +test2747 Q0 9644270 24 11.260981 Anserini +test2747 Q0 9456406 25 11.257549 Anserini +test2747 Q0 12139669 26 11.237744 Anserini +test2747 Q0 17236180 27 11.185351 Anserini +test2747 Q0 11308425 28 11.178379 Anserini +test2747 Q0 12155078 29 11.172386 Anserini +test2747 Q0 18167805 30 11.082903 Anserini +test2748 Q0 13570316 1 15.649372 Anserini +test2748 Q0 10667732 2 15.173502 Anserini +test2748 Q0 18231484 3 14.163784 Anserini +test2748 Q0 16320570 4 14.132705 Anserini +test2748 Q0 1368125 5 14.054809 Anserini +test2748 Q0 9014027 6 13.527721 Anserini +test2748 Q0 10229310 7 13.456094 Anserini +test2748 Q0 6655733 8 12.846175 Anserini +test2748 Q0 2318306 9 12.805089 Anserini +test2748 Q0 2968365 10 12.660830 Anserini +test2748 Q0 3804429 11 12.637682 Anserini +test2748 Q0 156428 12 12.560984 Anserini +test2748 Q0 4971707 13 12.538084 Anserini +test2748 Q0 9014033 14 12.538084 Anserini +test2748 Q0 15702797 15 12.447361 Anserini +test2748 Q0 326150 16 12.411955 Anserini +test2748 Q0 7039987 17 12.315597 Anserini +test2748 Q0 9402755 18 12.153284 Anserini +test2748 Q0 2749289 19 12.151360 Anserini +test2748 Q0 7919106 20 12.120440 Anserini +test2748 Q0 13337765 21 12.082720 Anserini +test2748 Q0 16381499 22 11.773226 Anserini +test2748 Q0 9406026 23 11.750168 Anserini +test2748 Q0 156432 24 11.684389 Anserini +test2748 Q0 6346232 25 11.584359 Anserini +test2748 Q0 6017352 26 11.486951 Anserini +test2748 Q0 4785334 27 11.435577 Anserini +test2748 Q0 562663 28 11.325471 Anserini +test2748 Q0 1383360 29 11.269415 Anserini +test2748 Q0 5237094 30 11.199450 Anserini +test2749 Q0 8951835 1 13.770248 Anserini +test2749 Q0 8323252 2 13.448914 Anserini +test2749 Q0 8951837 3 12.926085 Anserini +test2749 Q0 8951833 4 11.828384 Anserini +test2749 Q0 11687820 5 11.477018 Anserini +test2749 Q0 7727485 6 11.306394 Anserini +test2749 Q0 12543997 7 11.285467 Anserini +test2749 Q0 4270108 8 11.249617 Anserini +test2749 Q0 15895703 9 11.243404 Anserini +test2749 Q0 8951841 10 11.170061 Anserini +test2749 Q0 15952871 11 11.167391 Anserini +test2749 Q0 15252270 12 11.119008 Anserini +test2749 Q0 12543998 13 10.946760 Anserini +test2749 Q0 12780326 14 10.858109 Anserini +test2749 Q0 12544001 15 10.857332 Anserini +test2749 Q0 8137796 16 10.669207 Anserini +test2749 Q0 866634 17 10.576746 Anserini +test2749 Q0 1051944 18 10.551994 Anserini +test2749 Q0 9514748 19 10.487522 Anserini +test2749 Q0 10089353 20 10.453176 Anserini +test2749 Q0 866650 21 10.431953 Anserini +test2749 Q0 8951840 22 10.299417 Anserini +test2749 Q0 15952874 23 10.197480 Anserini +test2749 Q0 866645 24 10.153876 Anserini +test2749 Q0 20941220 25 10.152440 Anserini +test2749 Q0 20941209 26 10.152440 Anserini +test2749 Q0 7603466 27 10.075192 Anserini +test2749 Q0 5488862 28 10.065342 Anserini +test2749 Q0 9595126 29 10.042398 Anserini +test2749 Q0 5470962 30 10.031738 Anserini +test275 Q0 18314950 1 14.531905 Anserini +test275 Q0 10320716 2 14.441936 Anserini +test275 Q0 10320673 3 14.060700 Anserini +test275 Q0 18314986 4 14.058549 Anserini +test275 Q0 19793557 5 14.011051 Anserini +test275 Q0 19793564 6 13.963871 Anserini +test275 Q0 14237405 7 13.817117 Anserini +test275 Q0 19793529 8 13.817117 Anserini +test275 Q0 10320710 9 13.526855 Anserini +test275 Q0 18314952 10 13.432437 Anserini +test275 Q0 19793563 11 13.432437 Anserini +test275 Q0 19793550 12 13.432437 Anserini +test275 Q0 14237415 13 13.396141 Anserini +test275 Q0 14237407 14 13.385902 Anserini +test275 Q0 18314992 15 13.273060 Anserini +test275 Q0 18314959 16 13.248578 Anserini +test275 Q0 18314993 17 13.175152 Anserini +test275 Q0 10320707 18 13.174377 Anserini +test275 Q0 20997155 19 13.030045 Anserini +test275 Q0 20997159 20 13.030045 Anserini +test275 Q0 19793530 21 12.999220 Anserini +test275 Q0 18314988 22 12.826585 Anserini +test275 Q0 19793537 23 12.826585 Anserini +test275 Q0 19793538 24 12.826585 Anserini +test275 Q0 18314997 25 12.760803 Anserini +test275 Q0 18314987 26 12.760803 Anserini +test275 Q0 4420220 27 12.760803 Anserini +test275 Q0 19793556 28 12.760803 Anserini +test275 Q0 19793569 29 12.760803 Anserini +test275 Q0 14237420 30 12.711552 Anserini +test2750 Q0 6663587 1 12.732377 Anserini +test2750 Q0 18545009 2 12.558408 Anserini +test2750 Q0 16460237 3 12.438971 Anserini +test2750 Q0 20223130 4 12.198317 Anserini +test2750 Q0 18200173 5 11.974610 Anserini +test2750 Q0 16402696 6 11.944078 Anserini +test2750 Q0 11634491 7 11.735762 Anserini +test2750 Q0 7827836 8 11.669713 Anserini +test2750 Q0 7467701 9 11.631397 Anserini +test2750 Q0 11634492 10 11.587144 Anserini +test2750 Q0 13349006 11 11.524256 Anserini +test2750 Q0 7229863 12 11.243614 Anserini +test2750 Q0 2219042 13 11.137093 Anserini +test2750 Q0 6671396 14 11.100871 Anserini +test2750 Q0 8022452 15 11.046782 Anserini +test2750 Q0 14410946 16 10.922585 Anserini +test2750 Q0 16197149 17 10.769151 Anserini +test2750 Q0 13546857 18 10.649604 Anserini +test2750 Q0 17217633 19 10.603397 Anserini +test2750 Q0 14491573 20 10.564683 Anserini +test2750 Q0 18636067 21 10.502890 Anserini +test2750 Q0 8022454 22 10.461797 Anserini +test2750 Q0 7965260 23 10.424910 Anserini +test2750 Q0 14410948 24 10.384314 Anserini +test2750 Q0 15238315 25 10.371712 Anserini +test2750 Q0 18574648 26 10.354802 Anserini +test2750 Q0 6728543 27 10.347131 Anserini +test2750 Q0 9427126 28 10.332347 Anserini +test2750 Q0 15627633 29 10.322351 Anserini +test2750 Q0 11952464 30 10.294703 Anserini +test2751 Q0 3439065 1 17.922171 Anserini +test2751 Q0 3439068 2 17.047201 Anserini +test2751 Q0 16600937 3 16.124334 Anserini +test2751 Q0 15105319 4 15.962099 Anserini +test2751 Q0 15105321 5 15.853393 Anserini +test2751 Q0 3439063 6 15.623507 Anserini +test2751 Q0 3912455 7 15.576675 Anserini +test2751 Q0 18211647 8 15.514741 Anserini +test2751 Q0 14124886 9 15.347367 Anserini +test2751 Q0 19640040 10 15.305491 Anserini +test2751 Q0 7030684 11 15.279101 Anserini +test2751 Q0 9902543 12 15.237609 Anserini +test2751 Q0 20305707 13 15.192245 Anserini +test2751 Q0 8294231 14 15.035694 Anserini +test2751 Q0 20521321 15 14.912425 Anserini +test2751 Q0 15973051 16 14.750289 Anserini +test2751 Q0 17267160 17 14.730767 Anserini +test2751 Q0 13109663 18 14.724905 Anserini +test2751 Q0 18878334 19 14.712295 Anserini +test2751 Q0 10269291 20 14.671936 Anserini +test2751 Q0 16941411 21 14.645554 Anserini +test2751 Q0 8231281 22 14.638665 Anserini +test2751 Q0 11809906 23 14.626567 Anserini +test2751 Q0 9772279 24 14.621847 Anserini +test2751 Q0 17267161 25 14.621847 Anserini +test2751 Q0 19946014 26 14.612008 Anserini +test2751 Q0 15237110 27 14.552058 Anserini +test2751 Q0 19946031 28 14.547709 Anserini +test2751 Q0 16941400 29 14.520069 Anserini +test2751 Q0 17577793 30 14.516315 Anserini +test2752 Q0 80652 1 16.884932 Anserini +test2752 Q0 80640 2 16.555248 Anserini +test2752 Q0 80655 3 16.553177 Anserini +test2752 Q0 12207716 4 16.479584 Anserini +test2752 Q0 10883675 5 16.168253 Anserini +test2752 Q0 80644 6 15.929742 Anserini +test2752 Q0 80646 7 15.543678 Anserini +test2752 Q0 12207711 8 14.974672 Anserini +test2752 Q0 80656 9 14.859592 Anserini +test2752 Q0 80633 10 14.430463 Anserini +test2752 Q0 80628 11 14.353683 Anserini +test2752 Q0 13464292 12 14.253510 Anserini +test2752 Q0 39266 13 14.193443 Anserini +test2752 Q0 80657 14 14.147555 Anserini +test2752 Q0 80664 15 14.082804 Anserini +test2752 Q0 15479140 16 14.013341 Anserini +test2752 Q0 80648 17 13.972974 Anserini +test2752 Q0 8253237 18 13.366019 Anserini +test2752 Q0 3093225 19 13.247025 Anserini +test2752 Q0 80661 20 13.213309 Anserini +test2752 Q0 80647 21 13.045922 Anserini +test2752 Q0 2372592 22 12.631919 Anserini +test2752 Q0 2629206 23 12.583179 Anserini +test2752 Q0 80645 24 12.485574 Anserini +test2752 Q0 13464290 25 12.456871 Anserini +test2752 Q0 3036078 26 12.272485 Anserini +test2752 Q0 2299569 27 12.239185 Anserini +test2752 Q0 2299564 28 12.239185 Anserini +test2752 Q0 13847203 29 12.203081 Anserini +test2752 Q0 80642 30 12.048747 Anserini +test2753 Q0 1507730 1 13.519627 Anserini +test2753 Q0 2561187 2 12.391383 Anserini +test2753 Q0 11143180 3 12.121619 Anserini +test2753 Q0 1507727 4 12.081493 Anserini +test2753 Q0 20725968 5 11.758582 Anserini +test2753 Q0 1687721 6 11.509613 Anserini +test2753 Q0 1543054 7 11.481181 Anserini +test2753 Q0 14023401 8 11.372536 Anserini +test2753 Q0 11143184 9 11.360567 Anserini +test2753 Q0 8084020 10 11.357260 Anserini +test2753 Q0 10559019 11 11.222134 Anserini +test2753 Q0 2931086 12 11.132362 Anserini +test2753 Q0 8084021 13 11.091043 Anserini +test2753 Q0 6461642 14 11.055734 Anserini +test2753 Q0 2931088 15 10.854228 Anserini +test2753 Q0 14246544 16 10.839679 Anserini +test2753 Q0 16907856 17 10.753630 Anserini +test2753 Q0 2931075 18 10.748874 Anserini +test2753 Q0 17028271 19 10.556520 Anserini +test2753 Q0 7023340 20 10.428110 Anserini +test2753 Q0 10452560 21 10.427897 Anserini +test2753 Q0 1896991 22 10.415431 Anserini +test2753 Q0 3833525 23 10.366644 Anserini +test2753 Q0 1585178 24 10.245657 Anserini +test2753 Q0 16607582 25 10.136784 Anserini +test2753 Q0 19943784 26 10.127780 Anserini +test2753 Q0 846784 27 10.113888 Anserini +test2753 Q0 15612168 28 10.046341 Anserini +test2753 Q0 15795190 29 10.031004 Anserini +test2753 Q0 15795194 30 10.031004 Anserini +test2754 Q0 13283415 1 16.322153 Anserini +test2754 Q0 12263430 2 15.840708 Anserini +test2754 Q0 12263431 3 15.771907 Anserini +test2754 Q0 1953327 4 15.687862 Anserini +test2754 Q0 6999542 5 15.681118 Anserini +test2754 Q0 9528577 6 15.673735 Anserini +test2754 Q0 3788734 7 15.570818 Anserini +test2754 Q0 13259932 8 15.411571 Anserini +test2754 Q0 12099670 9 15.251075 Anserini +test2754 Q0 12099777 10 15.229382 Anserini +test2754 Q0 12099776 11 15.229382 Anserini +test2754 Q0 12183719 12 15.183873 Anserini +test2754 Q0 6766657 13 15.165808 Anserini +test2754 Q0 13257699 14 15.148713 Anserini +test2754 Q0 13478224 15 15.101547 Anserini +test2754 Q0 6766656 16 15.087057 Anserini +test2754 Q0 13478223 17 14.976490 Anserini +test2754 Q0 13259903 18 14.962501 Anserini +test2754 Q0 13622015 19 14.912940 Anserini +test2754 Q0 11646630 20 14.869573 Anserini +test2754 Q0 12922066 21 14.867424 Anserini +test2754 Q0 13297930 22 14.863901 Anserini +test2754 Q0 14572507 23 14.849727 Anserini +test2754 Q0 13408318 24 14.821039 Anserini +test2754 Q0 13630548 25 14.818399 Anserini +test2754 Q0 13630549 26 14.785795 Anserini +test2754 Q0 19036565 27 14.725338 Anserini +test2754 Q0 12263419 28 14.717654 Anserini +test2754 Q0 12236957 29 14.716916 Anserini +test2754 Q0 12236955 30 14.716916 Anserini +test2755 Q0 9263376 1 15.932410 Anserini +test2755 Q0 10956240 2 15.572251 Anserini +test2755 Q0 10956232 3 15.572251 Anserini +test2755 Q0 11441912 4 15.387294 Anserini +test2755 Q0 17148089 5 15.247752 Anserini +test2755 Q0 20352072 6 15.075715 Anserini +test2755 Q0 16665 7 15.068929 Anserini +test2755 Q0 909221 8 15.055792 Anserini +test2755 Q0 15767365 9 15.055792 Anserini +test2755 Q0 20352076 10 15.019342 Anserini +test2755 Q0 20352090 11 14.774602 Anserini +test2755 Q0 18493036 12 14.622680 Anserini +test2755 Q0 14409221 13 14.591916 Anserini +test2755 Q0 20352073 14 14.422773 Anserini +test2755 Q0 909231 15 14.418606 Anserini +test2755 Q0 20289706 16 14.401405 Anserini +test2755 Q0 16641 17 14.372506 Anserini +test2755 Q0 14409220 18 14.370833 Anserini +test2755 Q0 20558263 19 14.370833 Anserini +test2755 Q0 20076376 20 14.345201 Anserini +test2755 Q0 20352085 21 14.327794 Anserini +test2755 Q0 16648 22 14.301369 Anserini +test2755 Q0 20509694 23 14.250229 Anserini +test2755 Q0 909232 24 14.250229 Anserini +test2755 Q0 12694994 25 14.185354 Anserini +test2755 Q0 8012539 26 14.137114 Anserini +test2755 Q0 7331494 27 14.111412 Anserini +test2755 Q0 18952063 28 14.074552 Anserini +test2755 Q0 18502350 29 14.072608 Anserini +test2755 Q0 20558270 30 14.009045 Anserini +test2756 Q0 17446803 1 14.001075 Anserini +test2756 Q0 17657049 2 12.833642 Anserini +test2756 Q0 17025860 3 12.735621 Anserini +test2756 Q0 17025861 4 12.693487 Anserini +test2756 Q0 5316028 5 12.687786 Anserini +test2756 Q0 1369755 6 12.616950 Anserini +test2756 Q0 19675813 7 12.383556 Anserini +test2756 Q0 17657042 8 12.277300 Anserini +test2756 Q0 645487 9 12.135792 Anserini +test2756 Q0 8593815 10 11.988258 Anserini +test2756 Q0 16473901 11 11.840711 Anserini +test2756 Q0 8185062 12 11.783599 Anserini +test2756 Q0 14935952 13 11.642814 Anserini +test2756 Q0 4875310 14 11.626099 Anserini +test2756 Q0 1369740 15 11.620507 Anserini +test2756 Q0 4963625 16 11.596050 Anserini +test2756 Q0 17664153 17 11.540009 Anserini +test2756 Q0 17664154 18 11.540009 Anserini +test2756 Q0 16751920 19 11.528883 Anserini +test2756 Q0 13022004 20 11.527160 Anserini +test2756 Q0 5333717 21 11.421000 Anserini +test2756 Q0 16751921 22 11.376349 Anserini +test2756 Q0 16471615 23 11.357502 Anserini +test2756 Q0 16096403 24 11.352560 Anserini +test2756 Q0 17657046 25 11.343613 Anserini +test2756 Q0 11717926 26 11.209201 Anserini +test2756 Q0 7687709 27 11.172922 Anserini +test2756 Q0 6221526 28 11.157329 Anserini +test2756 Q0 16972973 29 11.079032 Anserini +test2756 Q0 19297133 30 11.071905 Anserini +test2757 Q0 1457203 1 14.219381 Anserini +test2757 Q0 7808074 2 13.636550 Anserini +test2757 Q0 1062402 3 12.680440 Anserini +test2757 Q0 1457191 4 12.573673 Anserini +test2757 Q0 6031717 5 12.565589 Anserini +test2757 Q0 1457201 6 12.366302 Anserini +test2757 Q0 1085934 7 12.357470 Anserini +test2757 Q0 18497363 8 12.354995 Anserini +test2757 Q0 20235782 9 12.241060 Anserini +test2757 Q0 1457174 10 12.139673 Anserini +test2757 Q0 14855427 11 12.075944 Anserini +test2757 Q0 1062407 12 11.932466 Anserini +test2757 Q0 1457175 13 11.833233 Anserini +test2757 Q0 1457206 14 11.826381 Anserini +test2757 Q0 8345227 15 11.786936 Anserini +test2757 Q0 8345230 16 11.786936 Anserini +test2757 Q0 3476371 17 11.656759 Anserini +test2757 Q0 1457184 18 11.610180 Anserini +test2757 Q0 19520006 19 11.477458 Anserini +test2757 Q0 1022864 20 11.286097 Anserini +test2757 Q0 1022872 21 11.286097 Anserini +test2757 Q0 1198579 22 11.286097 Anserini +test2757 Q0 9938777 23 11.280174 Anserini +test2757 Q0 2407766 24 11.267817 Anserini +test2757 Q0 11481064 25 11.189352 Anserini +test2757 Q0 11481065 26 11.189352 Anserini +test2757 Q0 20808872 27 11.187510 Anserini +test2757 Q0 13974145 28 11.105938 Anserini +test2757 Q0 1085940 29 11.076814 Anserini +test2757 Q0 1457179 30 11.060488 Anserini +test2758 Q0 16341551 1 15.199241 Anserini +test2758 Q0 15263411 2 14.518714 Anserini +test2758 Q0 5480059 3 14.439058 Anserini +test2758 Q0 12945925 4 13.294723 Anserini +test2758 Q0 4590059 5 13.242807 Anserini +test2758 Q0 17892996 6 12.876764 Anserini +test2758 Q0 17806993 7 12.849874 Anserini +test2758 Q0 1479723 8 12.644921 Anserini +test2758 Q0 7073643 9 12.212918 Anserini +test2758 Q0 5204005 10 11.893815 Anserini +test2758 Q0 2729220 11 11.893815 Anserini +test2758 Q0 10195477 12 11.737562 Anserini +test2758 Q0 3695180 13 11.736345 Anserini +test2758 Q0 5663983 14 11.642199 Anserini +test2758 Q0 8285088 15 11.601394 Anserini +test2758 Q0 1373375 16 11.594964 Anserini +test2758 Q0 9579447 17 11.514869 Anserini +test2758 Q0 2839504 18 11.505887 Anserini +test2758 Q0 3523430 19 11.491820 Anserini +test2758 Q0 8636590 20 11.437111 Anserini +test2758 Q0 11427646 21 11.431372 Anserini +test2758 Q0 5210182 22 11.429446 Anserini +test2758 Q0 2839536 23 11.424978 Anserini +test2758 Q0 2245021 24 11.424978 Anserini +test2758 Q0 5715883 25 11.360609 Anserini +test2758 Q0 16341562 26 11.335644 Anserini +test2758 Q0 16341523 27 11.290416 Anserini +test2758 Q0 8505628 28 11.288419 Anserini +test2758 Q0 4595046 29 11.252680 Anserini +test2758 Q0 5204538 30 11.252680 Anserini +test2759 Q0 251367 1 16.476984 Anserini +test2759 Q0 818056 2 16.154047 Anserini +test2759 Q0 1872162 3 16.072451 Anserini +test2759 Q0 8332573 4 14.938543 Anserini +test2759 Q0 8281063 5 14.274298 Anserini +test2759 Q0 2981411 6 14.200890 Anserini +test2759 Q0 10287263 7 14.108699 Anserini +test2759 Q0 1872165 8 13.970510 Anserini +test2759 Q0 3953765 9 13.682235 Anserini +test2759 Q0 251357 10 13.674693 Anserini +test2759 Q0 11052601 11 13.411622 Anserini +test2759 Q0 8281072 12 13.394063 Anserini +test2759 Q0 444916 13 13.328573 Anserini +test2759 Q0 7397060 14 13.277041 Anserini +test2759 Q0 10458299 15 13.224324 Anserini +test2759 Q0 2969069 16 13.117983 Anserini +test2759 Q0 7397061 17 13.073022 Anserini +test2759 Q0 553286 18 13.065044 Anserini +test2759 Q0 8281068 19 13.047894 Anserini +test2759 Q0 8331951 20 13.020033 Anserini +test2759 Q0 1477585 21 13.002719 Anserini +test2759 Q0 1477595 22 12.998064 Anserini +test2759 Q0 4148304 23 12.991719 Anserini +test2759 Q0 444899 24 12.885648 Anserini +test2759 Q0 2674683 25 12.885648 Anserini +test2759 Q0 2006765 26 12.865990 Anserini +test2759 Q0 4164873 27 12.858057 Anserini +test2759 Q0 4764472 28 12.770747 Anserini +test2759 Q0 8803788 29 12.747582 Anserini +test2759 Q0 8803792 30 12.747582 Anserini +test276 Q0 20562936 1 20.384781 Anserini +test276 Q0 9048483 2 19.980114 Anserini +test276 Q0 14178487 3 18.700069 Anserini +test276 Q0 16037488 4 17.804598 Anserini +test276 Q0 19049619 5 17.595928 Anserini +test276 Q0 9864250 6 17.300318 Anserini +test276 Q0 11150404 7 16.822508 Anserini +test276 Q0 2767161 8 16.523684 Anserini +test276 Q0 1793707 9 15.957175 Anserini +test276 Q0 20875607 10 15.473968 Anserini +test276 Q0 10698484 11 15.176667 Anserini +test276 Q0 17279789 12 14.906082 Anserini +test276 Q0 5840559 13 14.892053 Anserini +test276 Q0 12882988 14 14.730217 Anserini +test276 Q0 4711294 15 14.652348 Anserini +test276 Q0 15900548 16 14.637117 Anserini +test276 Q0 17380344 17 14.502798 Anserini +test276 Q0 1793699 18 14.434016 Anserini +test276 Q0 13293650 19 14.396217 Anserini +test276 Q0 12882981 20 14.338342 Anserini +test276 Q0 12882993 21 14.338342 Anserini +test276 Q0 5495662 22 14.311836 Anserini +test276 Q0 19391658 23 14.294303 Anserini +test276 Q0 19556438 24 14.272117 Anserini +test276 Q0 1793712 25 14.154486 Anserini +test276 Q0 7638766 26 14.051701 Anserini +test276 Q0 16593535 27 13.960303 Anserini +test276 Q0 1793744 28 13.945915 Anserini +test276 Q0 13834713 29 13.941562 Anserini +test276 Q0 10523224 30 13.891816 Anserini +test2760 Q0 3742930 1 11.555890 Anserini +test2760 Q0 6468117 2 11.507297 Anserini +test2760 Q0 14755337 3 11.042926 Anserini +test2760 Q0 8741856 4 10.886395 Anserini +test2760 Q0 8741858 5 10.821325 Anserini +test2760 Q0 3742931 6 10.580997 Anserini +test2760 Q0 6896280 7 10.507513 Anserini +test2760 Q0 2852633 8 10.477995 Anserini +test2760 Q0 3893595 9 10.359180 Anserini +test2760 Q0 11729412 10 10.055600 Anserini +test2760 Q0 5244263 11 9.928375 Anserini +test2760 Q0 3742933 12 9.909463 Anserini +test2760 Q0 19627863 13 9.894734 Anserini +test2760 Q0 1622215 14 9.863038 Anserini +test2760 Q0 2829292 15 9.747600 Anserini +test2760 Q0 7712867 16 9.735826 Anserini +test2760 Q0 6896281 17 9.721288 Anserini +test2760 Q0 18727222 18 9.678471 Anserini +test2760 Q0 624998 19 9.624119 Anserini +test2760 Q0 6896298 20 9.587873 Anserini +test2760 Q0 3742932 21 9.510624 Anserini +test2760 Q0 6896278 22 9.485630 Anserini +test2760 Q0 2829289 23 9.447912 Anserini +test2760 Q0 7712870 24 9.393007 Anserini +test2760 Q0 15747208 25 9.367841 Anserini +test2760 Q0 8095285 26 9.346785 Anserini +test2760 Q0 6896286 27 9.302668 Anserini +test2760 Q0 11112639 28 9.295564 Anserini +test2760 Q0 11112634 29 9.295564 Anserini +test2760 Q0 288459 30 9.254693 Anserini +test2761 Q0 14686649 1 13.681620 Anserini +test2761 Q0 18278570 2 12.169876 Anserini +test2761 Q0 14686650 3 11.774779 Anserini +test2761 Q0 1000315 4 11.745342 Anserini +test2761 Q0 10302340 5 11.705635 Anserini +test2761 Q0 1000323 6 11.464769 Anserini +test2761 Q0 1000302 7 11.464769 Anserini +test2761 Q0 1000321 8 11.080039 Anserini +test2761 Q0 13630397 9 10.981798 Anserini +test2761 Q0 5983732 10 10.952630 Anserini +test2761 Q0 7069687 11 10.824448 Anserini +test2761 Q0 1382169 12 10.780702 Anserini +test2761 Q0 1000303 13 10.746916 Anserini +test2761 Q0 884261 14 10.746689 Anserini +test2761 Q0 8743631 15 10.701448 Anserini +test2761 Q0 1820197 16 10.591921 Anserini +test2761 Q0 6703902 17 10.579836 Anserini +test2761 Q0 549528 18 10.561143 Anserini +test2761 Q0 8743670 19 10.548199 Anserini +test2761 Q0 8743671 20 10.548199 Anserini +test2761 Q0 14221127 21 10.497802 Anserini +test2761 Q0 16695858 22 10.481915 Anserini +test2761 Q0 4284925 23 10.417786 Anserini +test2761 Q0 20509108 24 10.334668 Anserini +test2761 Q0 4381654 25 10.286049 Anserini +test2761 Q0 26426 26 10.273462 Anserini +test2761 Q0 18586993 27 10.263022 Anserini +test2761 Q0 18586998 28 10.263022 Anserini +test2761 Q0 1781523 29 10.218946 Anserini +test2761 Q0 19362821 30 10.161461 Anserini +test2762 Q0 9655631 1 19.223366 Anserini +test2762 Q0 9655632 2 19.064047 Anserini +test2762 Q0 20307547 3 17.965986 Anserini +test2762 Q0 18389842 4 17.763258 Anserini +test2762 Q0 17371056 5 17.644627 Anserini +test2762 Q0 17931364 6 17.478968 Anserini +test2762 Q0 17371055 7 17.187923 Anserini +test2762 Q0 15266122 8 17.100349 Anserini +test2762 Q0 4919982 9 16.829762 Anserini +test2762 Q0 10572319 10 16.778648 Anserini +test2762 Q0 3143261 11 16.740438 Anserini +test2762 Q0 16232434 12 16.585665 Anserini +test2762 Q0 18277288 13 16.478407 Anserini +test2762 Q0 18049168 14 16.456444 Anserini +test2762 Q0 13034606 15 16.396538 Anserini +test2762 Q0 20690790 16 16.395292 Anserini +test2762 Q0 18912015 17 16.362225 Anserini +test2762 Q0 16008691 18 16.336735 Anserini +test2762 Q0 16232432 19 16.336735 Anserini +test2762 Q0 18912010 20 16.315582 Anserini +test2762 Q0 10572318 21 16.244122 Anserini +test2762 Q0 10572324 22 16.244122 Anserini +test2762 Q0 18389831 23 16.217470 Anserini +test2762 Q0 20934442 24 16.169209 Anserini +test2762 Q0 20307550 25 16.155924 Anserini +test2762 Q0 16385989 26 16.111031 Anserini +test2762 Q0 7729237 27 16.096975 Anserini +test2762 Q0 19796994 28 16.046474 Anserini +test2762 Q0 19796995 29 16.046474 Anserini +test2762 Q0 17531848 30 16.008232 Anserini +test2763 Q0 16182313 1 9.259414 Anserini +test2763 Q0 5883823 2 9.238080 Anserini +test2763 Q0 13293017 3 8.967736 Anserini +test2763 Q0 8705475 4 8.935340 Anserini +test2763 Q0 16182310 5 8.863775 Anserini +test2763 Q0 4222434 6 8.762277 Anserini +test2763 Q0 4801259 7 8.754286 Anserini +test2763 Q0 4611473 8 8.698474 Anserini +test2763 Q0 8095350 9 8.686340 Anserini +test2763 Q0 14127584 10 8.639467 Anserini +test2763 Q0 8599058 11 8.581433 Anserini +test2763 Q0 8599059 12 8.581433 Anserini +test2763 Q0 13623331 13 8.511131 Anserini +test2763 Q0 12110185 14 8.459376 Anserini +test2763 Q0 2290056 15 8.444921 Anserini +test2763 Q0 4561684 16 8.419065 Anserini +test2763 Q0 12730475 17 8.359337 Anserini +test2763 Q0 12730476 18 8.359337 Anserini +test2763 Q0 2570620 19 8.337928 Anserini +test2763 Q0 5525487 20 8.330071 Anserini +test2763 Q0 8560813 21 8.322838 Anserini +test2763 Q0 16113789 22 8.283312 Anserini +test2763 Q0 6060551 23 8.279922 Anserini +test2763 Q0 6937124 24 8.263717 Anserini +test2763 Q0 8560825 25 8.255989 Anserini +test2763 Q0 4246516 26 8.242927 Anserini +test2763 Q0 2361387 27 8.242776 Anserini +test2763 Q0 2361392 28 8.242776 Anserini +test2763 Q0 13653579 29 8.234761 Anserini +test2763 Q0 18921666 30 8.196121 Anserini +test2764 Q0 12147405 1 10.143585 Anserini +test2764 Q0 14699849 2 9.978534 Anserini +test2764 Q0 5885384 3 9.696732 Anserini +test2764 Q0 17357270 4 9.530005 Anserini +test2764 Q0 18775159 5 9.150115 Anserini +test2764 Q0 13325654 6 8.941239 Anserini +test2764 Q0 8240864 7 8.759321 Anserini +test2764 Q0 8020381 8 8.746148 Anserini +test2764 Q0 11283999 9 8.668983 Anserini +test2764 Q0 17761963 10 8.630489 Anserini +test2764 Q0 11283998 11 8.601043 Anserini +test2764 Q0 8240863 12 8.574348 Anserini +test2764 Q0 5178948 13 8.506262 Anserini +test2764 Q0 4646931 14 8.480919 Anserini +test2764 Q0 11149494 15 8.478393 Anserini +test2764 Q0 18433334 16 8.471327 Anserini +test2764 Q0 4475283 17 8.462646 Anserini +test2764 Q0 1313038 18 8.433707 Anserini +test2764 Q0 3245483 19 8.431437 Anserini +test2764 Q0 7561219 20 8.421871 Anserini +test2764 Q0 10683308 21 8.421871 Anserini +test2764 Q0 13247965 22 8.381257 Anserini +test2764 Q0 20193691 23 8.380260 Anserini +test2764 Q0 1313036 24 8.355878 Anserini +test2764 Q0 9529859 25 8.315108 Anserini +test2764 Q0 8598141 26 8.307586 Anserini +test2764 Q0 14055199 27 8.305880 Anserini +test2764 Q0 16041719 28 8.233110 Anserini +test2764 Q0 16041723 29 8.233110 Anserini +test2764 Q0 10683315 30 8.233110 Anserini +test2765 Q0 13754057 1 11.552413 Anserini +test2765 Q0 16910401 2 11.496486 Anserini +test2765 Q0 14886324 3 11.496486 Anserini +test2765 Q0 14886348 4 11.496486 Anserini +test2765 Q0 13756132 5 10.906475 Anserini +test2765 Q0 17510509 6 10.473983 Anserini +test2765 Q0 13753906 7 10.473983 Anserini +test2765 Q0 15541166 8 10.442709 Anserini +test2765 Q0 13916444 9 10.311344 Anserini +test2765 Q0 13018161 10 10.216058 Anserini +test2765 Q0 17190179 11 10.192519 Anserini +test2765 Q0 16132078 12 10.128012 Anserini +test2765 Q0 13926236 13 9.968210 Anserini +test2765 Q0 13817828 14 9.956212 Anserini +test2765 Q0 13754059 15 9.884540 Anserini +test2765 Q0 4668864 16 9.868983 Anserini +test2765 Q0 17510520 17 9.766893 Anserini +test2765 Q0 16430077 18 9.744649 Anserini +test2765 Q0 8333582 19 9.744649 Anserini +test2765 Q0 14529362 20 9.679612 Anserini +test2765 Q0 9251516 21 9.670641 Anserini +test2765 Q0 15998363 22 9.606645 Anserini +test2765 Q0 16910400 23 9.599210 Anserini +test2765 Q0 14419520 24 9.562984 Anserini +test2765 Q0 17414752 25 9.556866 Anserini +test2765 Q0 17239466 26 9.542995 Anserini +test2765 Q0 16229355 27 9.486700 Anserini +test2765 Q0 17031999 28 9.459016 Anserini +test2765 Q0 19355912 29 9.410924 Anserini +test2765 Q0 13018169 30 9.309135 Anserini +test2766 Q0 16027086 1 22.368662 Anserini +test2766 Q0 7316780 2 21.421360 Anserini +test2766 Q0 16027089 3 21.081362 Anserini +test2766 Q0 1292349 4 20.214359 Anserini +test2766 Q0 7316781 5 19.916615 Anserini +test2766 Q0 1292371 6 19.839750 Anserini +test2766 Q0 1292362 7 19.181946 Anserini +test2766 Q0 7847571 8 19.154854 Anserini +test2766 Q0 8120494 9 18.949860 Anserini +test2766 Q0 2965587 10 18.767271 Anserini +test2766 Q0 8631566 11 18.696089 Anserini +test2766 Q0 10211823 12 18.600096 Anserini +test2766 Q0 1480365 13 18.423294 Anserini +test2766 Q0 1292295 14 18.388857 Anserini +test2766 Q0 1292300 15 17.970230 Anserini +test2766 Q0 1292302 16 17.560205 Anserini +test2766 Q0 114081 17 17.517756 Anserini +test2766 Q0 10211846 18 17.086849 Anserini +test2766 Q0 1292291 19 16.789944 Anserini +test2766 Q0 16027087 20 16.714474 Anserini +test2766 Q0 8646532 21 16.695900 Anserini +test2766 Q0 7316787 22 16.571980 Anserini +test2766 Q0 7148353 23 16.568842 Anserini +test2766 Q0 6061945 24 16.567806 Anserini +test2766 Q0 1292301 25 16.556904 Anserini +test2766 Q0 10211845 26 16.343634 Anserini +test2766 Q0 2051259 27 16.313143 Anserini +test2766 Q0 10211835 28 16.303560 Anserini +test2766 Q0 1292304 29 16.119396 Anserini +test2766 Q0 10211825 30 16.062668 Anserini +test2767 Q0 531731 1 11.636063 Anserini +test2767 Q0 13152858 2 10.657867 Anserini +test2767 Q0 4309932 3 10.593916 Anserini +test2767 Q0 4309942 4 10.593916 Anserini +test2767 Q0 5777502 5 10.363220 Anserini +test2767 Q0 7256654 6 10.333612 Anserini +test2767 Q0 126640 7 10.135601 Anserini +test2767 Q0 5806729 8 10.111782 Anserini +test2767 Q0 8774343 9 10.051157 Anserini +test2767 Q0 18324463 10 9.862510 Anserini +test2767 Q0 9454051 11 9.665261 Anserini +test2767 Q0 2523566 12 9.605964 Anserini +test2767 Q0 6570247 13 9.600733 Anserini +test2767 Q0 9036527 14 9.599977 Anserini +test2767 Q0 17781226 15 9.443377 Anserini +test2767 Q0 18366396 16 9.428349 Anserini +test2767 Q0 12677730 17 9.420561 Anserini +test2767 Q0 3531847 18 9.415120 Anserini +test2767 Q0 6008575 19 9.407559 Anserini +test2767 Q0 15015876 20 9.390139 Anserini +test2767 Q0 12336362 21 9.357775 Anserini +test2767 Q0 10948669 22 9.357775 Anserini +test2767 Q0 5061902 23 9.320203 Anserini +test2767 Q0 20229930 24 9.316828 Anserini +test2767 Q0 18971149 25 9.279406 Anserini +test2767 Q0 12339877 26 9.258614 Anserini +test2767 Q0 20294093 27 9.225013 Anserini +test2767 Q0 3405034 28 9.124235 Anserini +test2767 Q0 19680152 29 9.124235 Anserini +test2767 Q0 3746316 30 9.110949 Anserini +test2768 Q0 19276276 1 10.180266 Anserini +test2768 Q0 19276258 2 9.998956 Anserini +test2768 Q0 15793340 3 9.836236 Anserini +test2768 Q0 19276272 4 9.622085 Anserini +test2768 Q0 412250 5 9.364610 Anserini +test2768 Q0 2432051 6 8.895418 Anserini +test2768 Q0 3840977 7 8.715693 Anserini +test2768 Q0 10252505 8 8.710175 Anserini +test2768 Q0 16882383 9 8.699381 Anserini +test2768 Q0 6256011 10 8.610214 Anserini +test2768 Q0 10532306 11 8.531625 Anserini +test2768 Q0 6256025 12 8.518957 Anserini +test2768 Q0 19922742 13 8.452391 Anserini +test2768 Q0 8666876 14 8.423201 Anserini +test2768 Q0 19276273 15 8.393008 Anserini +test2768 Q0 19461321 16 8.385254 Anserini +test2768 Q0 20237803 17 8.377048 Anserini +test2768 Q0 20481340 18 8.340772 Anserini +test2768 Q0 15793337 19 8.315875 Anserini +test2768 Q0 5908508 20 8.301561 Anserini +test2768 Q0 10532315 21 8.298801 Anserini +test2768 Q0 5783474 22 8.287096 Anserini +test2768 Q0 15793341 23 8.189731 Anserini +test2768 Q0 15793324 24 8.189731 Anserini +test2768 Q0 17592977 25 8.150708 Anserini +test2768 Q0 15793343 26 8.127058 Anserini +test2768 Q0 19226987 27 8.125657 Anserini +test2768 Q0 9310022 28 8.100208 Anserini +test2768 Q0 12774866 29 8.094825 Anserini +test2768 Q0 12572839 30 8.065104 Anserini +test2769 Q0 6243941 1 16.686996 Anserini +test2769 Q0 6013824 2 15.011553 Anserini +test2769 Q0 12860879 3 14.906399 Anserini +test2769 Q0 1507423 4 13.970507 Anserini +test2769 Q0 16466113 5 13.621651 Anserini +test2769 Q0 17568893 6 13.488585 Anserini +test2769 Q0 194368 7 12.978930 Anserini +test2769 Q0 11895652 8 12.946951 Anserini +test2769 Q0 17568879 9 12.900064 Anserini +test2769 Q0 1573021 10 12.870130 Anserini +test2769 Q0 12297022 11 12.471417 Anserini +test2769 Q0 1457420 12 12.301269 Anserini +test2769 Q0 1836909 13 12.233708 Anserini +test2769 Q0 1836908 14 12.233708 Anserini +test2769 Q0 54574 15 12.168383 Anserini +test2769 Q0 1657964 16 11.915840 Anserini +test2769 Q0 13242621 17 11.889112 Anserini +test2769 Q0 12437282 18 11.824860 Anserini +test2769 Q0 19326630 19 11.779388 Anserini +test2769 Q0 19945100 20 11.738276 Anserini +test2769 Q0 17568880 21 11.677935 Anserini +test2769 Q0 1507421 22 11.605872 Anserini +test2769 Q0 4722920 23 11.592697 Anserini +test2769 Q0 9296810 24 11.576668 Anserini +test2769 Q0 583868 25 11.573249 Anserini +test2769 Q0 9901284 26 11.562374 Anserini +test2769 Q0 20035077 27 11.487060 Anserini +test2769 Q0 1507415 28 11.472978 Anserini +test2769 Q0 1654894 29 11.414459 Anserini +test2769 Q0 10982045 30 11.313587 Anserini +test277 Q0 6009021 1 16.690742 Anserini +test277 Q0 5571988 2 16.145069 Anserini +test277 Q0 803907 3 16.095219 Anserini +test277 Q0 19517180 4 15.934093 Anserini +test277 Q0 18864057 5 15.707488 Anserini +test277 Q0 3065996 6 14.883025 Anserini +test277 Q0 8064597 7 14.679697 Anserini +test277 Q0 8064528 8 14.277488 Anserini +test277 Q0 17996872 9 13.998141 Anserini +test277 Q0 8064565 10 13.976143 Anserini +test277 Q0 4501362 11 13.919854 Anserini +test277 Q0 8064578 12 13.839582 Anserini +test277 Q0 13265863 13 13.824432 Anserini +test277 Q0 2947269 14 13.696379 Anserini +test277 Q0 8064584 15 13.334410 Anserini +test277 Q0 14273318 16 13.302633 Anserini +test277 Q0 17103967 17 13.296145 Anserini +test277 Q0 8725307 18 13.296145 Anserini +test277 Q0 6009022 19 13.259932 Anserini +test277 Q0 8064527 20 13.211668 Anserini +test277 Q0 8064579 21 13.118177 Anserini +test277 Q0 20167368 22 13.063580 Anserini +test277 Q0 8064558 23 12.936109 Anserini +test277 Q0 7019573 24 12.839221 Anserini +test277 Q0 8064600 25 12.827276 Anserini +test277 Q0 13080225 26 12.622715 Anserini +test277 Q0 19517181 27 12.518702 Anserini +test277 Q0 3569472 28 12.516664 Anserini +test277 Q0 14273316 29 12.505793 Anserini +test277 Q0 9744925 30 12.463051 Anserini +test2770 Q0 11667075 1 16.712395 Anserini +test2770 Q0 1833172 2 15.994764 Anserini +test2770 Q0 803400 3 15.408160 Anserini +test2770 Q0 16476548 4 15.231532 Anserini +test2770 Q0 2061149 5 15.229941 Anserini +test2770 Q0 4847376 6 15.167841 Anserini +test2770 Q0 17572999 7 15.151137 Anserini +test2770 Q0 5480927 8 15.120823 Anserini +test2770 Q0 14825591 9 15.118105 Anserini +test2770 Q0 14819865 10 15.105205 Anserini +test2770 Q0 13035910 11 15.086255 Anserini +test2770 Q0 17996898 12 15.080484 Anserini +test2770 Q0 3543237 13 15.047054 Anserini +test2770 Q0 3701938 14 15.038280 Anserini +test2770 Q0 3543238 15 14.921992 Anserini +test2770 Q0 1833137 16 14.883477 Anserini +test2770 Q0 274490 17 14.818851 Anserini +test2770 Q0 1322980 18 14.805441 Anserini +test2770 Q0 14819867 19 14.677364 Anserini +test2770 Q0 804076 20 14.676654 Anserini +test2770 Q0 17249678 21 14.633764 Anserini +test2770 Q0 4304196 22 14.629155 Anserini +test2770 Q0 1662240 23 14.561879 Anserini +test2770 Q0 4847378 24 14.520063 Anserini +test2770 Q0 9586374 25 14.504428 Anserini +test2770 Q0 11071813 26 14.493478 Anserini +test2770 Q0 17342547 27 14.466369 Anserini +test2770 Q0 13528660 28 14.379238 Anserini +test2770 Q0 3130574 29 14.378670 Anserini +test2770 Q0 1833231 30 14.371320 Anserini +test2771 Q0 62573 1 17.460600 Anserini +test2771 Q0 9210625 2 16.099537 Anserini +test2771 Q0 12333765 3 16.017488 Anserini +test2771 Q0 9210634 4 15.892282 Anserini +test2771 Q0 10991458 5 15.619703 Anserini +test2771 Q0 9210611 6 15.459517 Anserini +test2771 Q0 9210623 7 15.453586 Anserini +test2771 Q0 15023385 8 15.380565 Anserini +test2771 Q0 10991478 9 15.331730 Anserini +test2771 Q0 12333770 10 15.280350 Anserini +test2771 Q0 12333814 11 15.262999 Anserini +test2771 Q0 18448955 12 15.225404 Anserini +test2771 Q0 11064273 13 15.209199 Anserini +test2771 Q0 12333787 14 15.178782 Anserini +test2771 Q0 18227399 15 15.089761 Anserini +test2771 Q0 9742881 16 14.931293 Anserini +test2771 Q0 20416043 17 14.916306 Anserini +test2771 Q0 12776045 18 14.802074 Anserini +test2771 Q0 16574544 19 14.781042 Anserini +test2771 Q0 18227443 20 14.768869 Anserini +test2771 Q0 9210630 21 14.691975 Anserini +test2771 Q0 16763579 22 14.683696 Anserini +test2771 Q0 12613875 23 14.651926 Anserini +test2771 Q0 18227436 24 14.650063 Anserini +test2771 Q0 19043035 25 14.619609 Anserini +test2771 Q0 9210635 26 14.533031 Anserini +test2771 Q0 16726269 27 14.526362 Anserini +test2771 Q0 18479795 28 14.521394 Anserini +test2771 Q0 9203187 29 14.446060 Anserini +test2771 Q0 9838201 30 14.431236 Anserini +test2772 Q0 7620218 1 16.573027 Anserini +test2772 Q0 7620242 2 16.047033 Anserini +test2772 Q0 2354361 3 15.062197 Anserini +test2772 Q0 2354328 4 15.062197 Anserini +test2772 Q0 9528759 5 14.879193 Anserini +test2772 Q0 6269647 6 14.764410 Anserini +test2772 Q0 1446748 7 14.523115 Anserini +test2772 Q0 2926278 8 14.438259 Anserini +test2772 Q0 7620234 9 14.426628 Anserini +test2772 Q0 13975757 10 14.362577 Anserini +test2772 Q0 18065353 11 14.358115 Anserini +test2772 Q0 18009030 12 14.345041 Anserini +test2772 Q0 5503855 13 14.331919 Anserini +test2772 Q0 10725504 14 14.296524 Anserini +test2772 Q0 3525357 15 14.285989 Anserini +test2772 Q0 3525366 16 14.285989 Anserini +test2772 Q0 7620219 17 14.275588 Anserini +test2772 Q0 9947364 18 14.264095 Anserini +test2772 Q0 9947353 19 14.264095 Anserini +test2772 Q0 6137301 20 14.208145 Anserini +test2772 Q0 7620238 21 14.183582 Anserini +test2772 Q0 10802451 22 14.116171 Anserini +test2772 Q0 7620239 23 14.098337 Anserini +test2772 Q0 1906319 24 14.081211 Anserini +test2772 Q0 10725510 25 14.034348 Anserini +test2772 Q0 11694387 26 14.010927 Anserini +test2772 Q0 1906182 27 13.994807 Anserini +test2772 Q0 7620240 28 13.971650 Anserini +test2772 Q0 7620236 29 13.903780 Anserini +test2772 Q0 13694391 30 13.898568 Anserini +test2773 Q0 20274427 1 9.846807 Anserini +test2773 Q0 15401254 2 9.834937 Anserini +test2773 Q0 2849404 3 9.779776 Anserini +test2773 Q0 17595039 4 9.535104 Anserini +test2773 Q0 11295386 5 9.498439 Anserini +test2773 Q0 2842470 6 9.497885 Anserini +test2773 Q0 4331486 7 9.474817 Anserini +test2773 Q0 10369817 8 9.416465 Anserini +test2773 Q0 15963921 9 9.397963 Anserini +test2773 Q0 9400335 10 9.396836 Anserini +test2773 Q0 15525982 11 9.394532 Anserini +test2773 Q0 19790221 12 9.378415 Anserini +test2773 Q0 19121501 13 9.368599 Anserini +test2773 Q0 2956722 14 9.262218 Anserini +test2773 Q0 2732096 15 9.237362 Anserini +test2773 Q0 18008340 16 9.221368 Anserini +test2773 Q0 13222106 17 9.185012 Anserini +test2773 Q0 6446262 18 9.095372 Anserini +test2773 Q0 16845791 19 9.067266 Anserini +test2773 Q0 2186120 20 9.030502 Anserini +test2773 Q0 9002845 21 8.999936 Anserini +test2773 Q0 17144559 22 8.975437 Anserini +test2773 Q0 14725598 23 8.966665 Anserini +test2773 Q0 6038772 24 8.920286 Anserini +test2773 Q0 9898494 25 8.823137 Anserini +test2773 Q0 16476792 26 8.814905 Anserini +test2773 Q0 16877783 27 8.802386 Anserini +test2773 Q0 10095645 28 8.801744 Anserini +test2773 Q0 16960628 29 8.794559 Anserini +test2773 Q0 11838069 30 8.764235 Anserini +test2774 Q0 17773133 1 15.157892 Anserini +test2774 Q0 16780298 2 14.209387 Anserini +test2774 Q0 16780294 3 14.128818 Anserini +test2774 Q0 15645637 4 13.973723 Anserini +test2774 Q0 12533628 5 13.922052 Anserini +test2774 Q0 15645639 6 13.919794 Anserini +test2774 Q0 6466402 7 13.668446 Anserini +test2774 Q0 5376972 8 13.187172 Anserini +test2774 Q0 7669049 9 13.120686 Anserini +test2774 Q0 611670 10 13.054935 Anserini +test2774 Q0 7032977 11 13.021027 Anserini +test2774 Q0 16780302 12 12.975368 Anserini +test2774 Q0 18845789 13 12.931677 Anserini +test2774 Q0 16780296 14 12.903601 Anserini +test2774 Q0 16780303 15 12.888279 Anserini +test2774 Q0 17521334 16 12.771631 Anserini +test2774 Q0 18845784 17 12.771631 Anserini +test2774 Q0 611676 18 12.765753 Anserini +test2774 Q0 16780300 19 12.765753 Anserini +test2774 Q0 7669003 20 12.718020 Anserini +test2774 Q0 16780304 21 12.676765 Anserini +test2774 Q0 6466404 22 12.629598 Anserini +test2774 Q0 279490 23 12.615946 Anserini +test2774 Q0 16780306 24 12.541080 Anserini +test2774 Q0 17773136 25 12.490097 Anserini +test2774 Q0 12533625 26 12.487470 Anserini +test2774 Q0 16780299 27 12.396870 Anserini +test2774 Q0 17969451 28 12.222651 Anserini +test2774 Q0 6466403 29 12.222651 Anserini +test2774 Q0 18845785 30 12.222651 Anserini +test2775 Q0 4207414 1 15.381084 Anserini +test2775 Q0 4207435 2 14.839439 Anserini +test2775 Q0 4207430 3 14.295232 Anserini +test2775 Q0 4207418 4 13.848571 Anserini +test2775 Q0 4207417 5 13.683459 Anserini +test2775 Q0 3948367 6 13.610662 Anserini +test2775 Q0 4207434 7 13.392338 Anserini +test2775 Q0 3656824 8 13.392338 Anserini +test2775 Q0 4207426 9 13.323299 Anserini +test2775 Q0 4207429 10 12.884050 Anserini +test2775 Q0 3656820 11 12.835802 Anserini +test2775 Q0 18295785 12 12.833741 Anserini +test2775 Q0 6957472 13 12.746757 Anserini +test2775 Q0 4207416 14 12.664745 Anserini +test2775 Q0 18295784 15 12.467319 Anserini +test2775 Q0 2576951 16 12.105806 Anserini +test2775 Q0 4207415 17 11.966265 Anserini +test2775 Q0 4207428 18 11.900077 Anserini +test2775 Q0 4207431 19 11.475900 Anserini +test2775 Q0 3038824 20 11.308332 Anserini +test2775 Q0 3582880 21 11.166618 Anserini +test2775 Q0 4207432 22 11.140769 Anserini +test2775 Q0 1569592 23 11.059736 Anserini +test2775 Q0 3656822 24 11.031896 Anserini +test2775 Q0 4207433 25 10.983643 Anserini +test2775 Q0 4207425 26 10.934526 Anserini +test2775 Q0 15429687 27 10.904210 Anserini +test2775 Q0 2076435 28 10.860900 Anserini +test2775 Q0 3656823 29 10.856084 Anserini +test2775 Q0 2657605 30 10.850932 Anserini +test2776 Q0 20110827 1 16.337391 Anserini +test2776 Q0 20110834 2 16.014654 Anserini +test2776 Q0 9498734 3 15.079832 Anserini +test2776 Q0 16902363 4 14.935352 Anserini +test2776 Q0 9901976 5 14.714361 Anserini +test2776 Q0 6691572 6 14.705162 Anserini +test2776 Q0 19428581 7 14.698011 Anserini +test2776 Q0 12401017 8 14.682639 Anserini +test2776 Q0 14883957 9 14.574749 Anserini +test2776 Q0 9902049 10 14.401421 Anserini +test2776 Q0 2813424 11 14.391223 Anserini +test2776 Q0 11817612 12 14.371485 Anserini +test2776 Q0 4506478 13 14.356311 Anserini +test2776 Q0 11185264 14 14.300388 Anserini +test2776 Q0 1812597 15 14.276230 Anserini +test2776 Q0 13337037 16 14.143576 Anserini +test2776 Q0 18655077 17 14.081843 Anserini +test2776 Q0 20110828 18 14.035210 Anserini +test2776 Q0 6187076 19 14.021489 Anserini +test2776 Q0 20185703 20 13.901843 Anserini +test2776 Q0 7083307 21 13.871747 Anserini +test2776 Q0 10264364 22 13.807011 Anserini +test2776 Q0 11185300 23 13.789365 Anserini +test2776 Q0 10940912 24 13.708467 Anserini +test2776 Q0 15487210 25 13.702834 Anserini +test2776 Q0 20110832 26 13.566322 Anserini +test2776 Q0 18142263 27 13.563054 Anserini +test2776 Q0 11198130 28 13.543782 Anserini +test2776 Q0 7023470 29 13.534306 Anserini +test2776 Q0 13363188 30 13.528610 Anserini +test2777 Q0 11984174 1 11.570866 Anserini +test2777 Q0 4078173 2 11.147767 Anserini +test2777 Q0 3095681 3 10.979286 Anserini +test2777 Q0 16658238 4 10.874599 Anserini +test2777 Q0 1634747 5 10.838682 Anserini +test2777 Q0 2508883 6 10.812088 Anserini +test2777 Q0 13580208 7 10.797065 Anserini +test2777 Q0 13580211 8 10.797065 Anserini +test2777 Q0 14123489 9 10.775211 Anserini +test2777 Q0 20095070 10 10.740124 Anserini +test2777 Q0 32395 11 10.732752 Anserini +test2777 Q0 19962015 12 10.690786 Anserini +test2777 Q0 3668291 13 10.684603 Anserini +test2777 Q0 11712350 14 10.673372 Anserini +test2777 Q0 5029179 15 10.669657 Anserini +test2777 Q0 16562315 16 10.653756 Anserini +test2777 Q0 18287777 17 10.645406 Anserini +test2777 Q0 1634751 18 10.632485 Anserini +test2777 Q0 10793675 19 10.625263 Anserini +test2777 Q0 10697692 20 10.623253 Anserini +test2777 Q0 11984148 21 10.590722 Anserini +test2777 Q0 4958617 22 10.551917 Anserini +test2777 Q0 1397617 23 10.550455 Anserini +test2777 Q0 6021821 24 10.537368 Anserini +test2777 Q0 12910 25 10.535933 Anserini +test2777 Q0 4197922 26 10.529428 Anserini +test2777 Q0 12019361 27 10.526197 Anserini +test2777 Q0 19192204 28 10.491792 Anserini +test2777 Q0 3742071 29 10.466911 Anserini +test2777 Q0 14123506 30 10.461563 Anserini +test2778 Q0 16707835 1 14.168194 Anserini +test2778 Q0 13778255 2 13.043688 Anserini +test2778 Q0 157456 3 12.723038 Anserini +test2778 Q0 9826004 4 12.535086 Anserini +test2778 Q0 4020103 5 12.488274 Anserini +test2778 Q0 157474 6 12.452129 Anserini +test2778 Q0 157442 7 12.158709 Anserini +test2778 Q0 16707847 8 11.877090 Anserini +test2778 Q0 571757 9 11.855658 Anserini +test2778 Q0 157446 10 11.801935 Anserini +test2778 Q0 157454 11 11.701623 Anserini +test2778 Q0 157466 12 11.648944 Anserini +test2778 Q0 157434 13 11.627853 Anserini +test2778 Q0 10507990 14 11.626302 Anserini +test2778 Q0 181009 15 11.626302 Anserini +test2778 Q0 9031897 16 11.573705 Anserini +test2778 Q0 15987132 17 11.551326 Anserini +test2778 Q0 236579 18 11.262866 Anserini +test2778 Q0 157461 19 11.246789 Anserini +test2778 Q0 19740796 20 11.220660 Anserini +test2778 Q0 5166548 21 11.197858 Anserini +test2778 Q0 157473 22 11.120238 Anserini +test2778 Q0 13226239 23 11.120238 Anserini +test2778 Q0 8696826 24 11.108239 Anserini +test2778 Q0 1301757 25 11.063841 Anserini +test2778 Q0 157462 26 10.991930 Anserini +test2778 Q0 157475 27 10.946748 Anserini +test2778 Q0 157482 28 10.831032 Anserini +test2778 Q0 20425509 29 10.826775 Anserini +test2778 Q0 15456942 30 10.745592 Anserini +test2779 Q0 8186911 1 10.807652 Anserini +test2779 Q0 7889186 2 10.472260 Anserini +test2779 Q0 16704955 3 10.449556 Anserini +test2779 Q0 10892623 4 10.390484 Anserini +test2779 Q0 17153303 5 10.380313 Anserini +test2779 Q0 14247862 6 10.157973 Anserini +test2779 Q0 9252744 7 10.045565 Anserini +test2779 Q0 17153299 8 10.025904 Anserini +test2779 Q0 10928063 9 9.764090 Anserini +test2779 Q0 17919977 10 9.703835 Anserini +test2779 Q0 17919980 11 9.703835 Anserini +test2779 Q0 8180093 12 9.680047 Anserini +test2779 Q0 15917498 13 9.671936 Anserini +test2779 Q0 2017438 14 9.515543 Anserini +test2779 Q0 9474212 15 9.506898 Anserini +test2779 Q0 7889184 16 9.460514 Anserini +test2779 Q0 13749888 17 9.460514 Anserini +test2779 Q0 15357986 18 9.422182 Anserini +test2779 Q0 20322377 19 9.395046 Anserini +test2779 Q0 15877790 20 9.375340 Anserini +test2779 Q0 9395228 21 9.362535 Anserini +test2779 Q0 18205968 22 9.362535 Anserini +test2779 Q0 14731961 23 9.318355 Anserini +test2779 Q0 10739671 24 9.312108 Anserini +test2779 Q0 6640931 25 9.231085 Anserini +test2779 Q0 11112103 26 9.208526 Anserini +test2779 Q0 16703412 27 9.186773 Anserini +test2779 Q0 17729384 28 9.177196 Anserini +test2779 Q0 4381303 29 9.148069 Anserini +test2779 Q0 19454043 30 9.147465 Anserini +test278 Q0 18489905 1 22.272268 Anserini +test278 Q0 6036354 2 21.785572 Anserini +test278 Q0 15016654 3 21.463572 Anserini +test278 Q0 13300661 4 21.306738 Anserini +test278 Q0 8916599 5 21.208632 Anserini +test278 Q0 5112300 6 20.938665 Anserini +test278 Q0 17115315 7 20.862459 Anserini +test278 Q0 18619309 8 20.003098 Anserini +test278 Q0 11832507 9 19.798325 Anserini +test278 Q0 6036352 10 19.763216 Anserini +test278 Q0 11183645 11 19.721535 Anserini +test278 Q0 18619301 12 19.699900 Anserini +test278 Q0 12693959 13 19.381531 Anserini +test278 Q0 18927612 14 19.381531 Anserini +test278 Q0 12831646 15 19.162504 Anserini +test278 Q0 5113282 16 19.158566 Anserini +test278 Q0 17638247 17 19.143469 Anserini +test278 Q0 13820693 18 19.143469 Anserini +test278 Q0 6577242 19 19.048410 Anserini +test278 Q0 17256472 20 18.948032 Anserini +test278 Q0 18546825 21 18.911293 Anserini +test278 Q0 10335599 22 18.896320 Anserini +test278 Q0 13733293 23 18.896320 Anserini +test278 Q0 15206166 24 18.889467 Anserini +test278 Q0 16444551 25 18.876764 Anserini +test278 Q0 18315481 26 18.841148 Anserini +test278 Q0 19483100 27 18.650059 Anserini +test278 Q0 16975913 28 18.633379 Anserini +test278 Q0 16828421 29 18.633379 Anserini +test278 Q0 5933008 30 18.522608 Anserini +test2780 Q0 328263 1 15.167105 Anserini +test2780 Q0 10388043 2 14.198483 Anserini +test2780 Q0 13203035 3 13.984486 Anserini +test2780 Q0 13369140 4 13.877572 Anserini +test2780 Q0 5202544 5 13.877572 Anserini +test2780 Q0 14110710 6 13.814178 Anserini +test2780 Q0 9034366 7 13.788905 Anserini +test2780 Q0 9034367 8 13.788905 Anserini +test2780 Q0 328260 9 13.512645 Anserini +test2780 Q0 3796048 10 13.478451 Anserini +test2780 Q0 13203050 11 13.454519 Anserini +test2780 Q0 19452386 12 13.399376 Anserini +test2780 Q0 19452387 13 13.399376 Anserini +test2780 Q0 328256 14 13.370322 Anserini +test2780 Q0 18455030 15 13.311127 Anserini +test2780 Q0 328264 16 13.292626 Anserini +test2780 Q0 16653776 17 13.292626 Anserini +test2780 Q0 328255 18 13.279992 Anserini +test2780 Q0 6001855 19 13.235880 Anserini +test2780 Q0 13203044 20 13.226151 Anserini +test2780 Q0 18285752 21 13.152852 Anserini +test2780 Q0 210901 22 12.970634 Anserini +test2780 Q0 328261 23 12.959199 Anserini +test2780 Q0 9277081 24 12.939561 Anserini +test2780 Q0 11214970 25 12.517389 Anserini +test2780 Q0 328222 26 12.443295 Anserini +test2780 Q0 13369141 27 12.442894 Anserini +test2780 Q0 13203046 28 12.375403 Anserini +test2780 Q0 20967623 29 12.301999 Anserini +test2780 Q0 7015807 30 12.234487 Anserini +test2781 Q0 3469196 1 22.166426 Anserini +test2781 Q0 3469201 2 22.166426 Anserini +test2781 Q0 3469200 3 20.719534 Anserini +test2781 Q0 4287903 4 17.128117 Anserini +test2781 Q0 9561076 5 16.723017 Anserini +test2781 Q0 9561077 6 16.723017 Anserini +test2781 Q0 4287885 7 16.637690 Anserini +test2781 Q0 4287895 8 16.022549 Anserini +test2781 Q0 4287902 9 15.765148 Anserini +test2781 Q0 4287893 10 15.428342 Anserini +test2781 Q0 4287886 11 15.207230 Anserini +test2781 Q0 3469198 12 15.125408 Anserini +test2781 Q0 4287899 13 15.097135 Anserini +test2781 Q0 4287897 14 14.993009 Anserini +test2781 Q0 4287892 15 14.993009 Anserini +test2781 Q0 4287891 16 14.890309 Anserini +test2781 Q0 12863514 17 14.890309 Anserini +test2781 Q0 4287900 18 14.789007 Anserini +test2781 Q0 4287887 19 14.689074 Anserini +test2781 Q0 3346500 20 13.178660 Anserini +test2781 Q0 4886664 21 12.564764 Anserini +test2781 Q0 4886670 22 12.564764 Anserini +test2781 Q0 1796098 23 12.528221 Anserini +test2781 Q0 1796101 24 12.528221 Anserini +test2781 Q0 745394 25 12.528221 Anserini +test2781 Q0 16554030 26 12.396337 Anserini +test2781 Q0 1796109 27 12.396337 Anserini +test2781 Q0 7274003 28 12.396337 Anserini +test2781 Q0 3166212 29 12.396337 Anserini +test2781 Q0 8268107 30 12.345513 Anserini +test2782 Q0 19807796 1 16.607103 Anserini +test2782 Q0 6224933 2 15.231166 Anserini +test2782 Q0 11779866 3 15.116644 Anserini +test2782 Q0 15096547 4 14.625469 Anserini +test2782 Q0 20259594 5 14.595023 Anserini +test2782 Q0 5732110 6 14.575060 Anserini +test2782 Q0 19807841 7 14.560331 Anserini +test2782 Q0 12529215 8 14.485163 Anserini +test2782 Q0 6224942 9 14.321524 Anserini +test2782 Q0 19807846 10 14.313080 Anserini +test2782 Q0 313849 11 14.197831 Anserini +test2782 Q0 7002537 12 14.097137 Anserini +test2782 Q0 9862649 13 14.014449 Anserini +test2782 Q0 2717804 14 14.004059 Anserini +test2782 Q0 7530509 15 13.946033 Anserini +test2782 Q0 15096554 16 13.934679 Anserini +test2782 Q0 394459 17 13.926620 Anserini +test2782 Q0 3200169 18 13.864590 Anserini +test2782 Q0 394905 19 13.777305 Anserini +test2782 Q0 3200168 20 13.774140 Anserini +test2782 Q0 394886 21 13.756284 Anserini +test2782 Q0 394187 22 13.707680 Anserini +test2782 Q0 10272801 23 13.695688 Anserini +test2782 Q0 10301042 24 13.671953 Anserini +test2782 Q0 17473816 25 13.639767 Anserini +test2782 Q0 17473835 26 13.628769 Anserini +test2782 Q0 376056 27 13.628769 Anserini +test2782 Q0 313805 28 13.562771 Anserini +test2782 Q0 8711504 29 13.540882 Anserini +test2782 Q0 7167385 30 13.515225 Anserini +test2783 Q0 11398771 1 17.974794 Anserini +test2783 Q0 14017885 2 17.452097 Anserini +test2783 Q0 3552467 3 17.026796 Anserini +test2783 Q0 9737979 4 16.723322 Anserini +test2783 Q0 16026752 5 16.640680 Anserini +test2783 Q0 19129148 6 16.363863 Anserini +test2783 Q0 20699355 7 16.237314 Anserini +test2783 Q0 18738631 8 16.216787 Anserini +test2783 Q0 11320061 9 16.214537 Anserini +test2783 Q0 5690486 10 16.194593 Anserini +test2783 Q0 18726746 11 16.190992 Anserini +test2783 Q0 18737390 12 16.188282 Anserini +test2783 Q0 3110312 13 16.085701 Anserini +test2783 Q0 8344805 14 15.974920 Anserini +test2783 Q0 9329232 15 15.974920 Anserini +test2783 Q0 18722902 16 15.938939 Anserini +test2783 Q0 8124539 17 15.838653 Anserini +test2783 Q0 17228931 18 15.815860 Anserini +test2783 Q0 18775138 19 15.814080 Anserini +test2783 Q0 9756547 20 15.764184 Anserini +test2783 Q0 9950004 21 15.651661 Anserini +test2783 Q0 16193737 22 15.583220 Anserini +test2783 Q0 20699357 23 15.558928 Anserini +test2783 Q0 4039521 24 15.558590 Anserini +test2783 Q0 17598299 25 15.526031 Anserini +test2783 Q0 13079052 26 15.486269 Anserini +test2783 Q0 18673737 27 15.484337 Anserini +test2783 Q0 15159863 28 15.422278 Anserini +test2783 Q0 5446753 29 15.407674 Anserini +test2783 Q0 6009016 30 15.407213 Anserini +test2784 Q0 8361609 1 12.102075 Anserini +test2784 Q0 187368 2 11.906645 Anserini +test2784 Q0 17371248 3 11.549280 Anserini +test2784 Q0 16429729 4 11.398660 Anserini +test2784 Q0 373001 5 11.391552 Anserini +test2784 Q0 1982011 6 11.271571 Anserini +test2784 Q0 11212907 7 11.169380 Anserini +test2784 Q0 4234532 8 11.143192 Anserini +test2784 Q0 19124616 9 11.051679 Anserini +test2784 Q0 67693 10 10.793090 Anserini +test2784 Q0 2041039 11 10.760196 Anserini +test2784 Q0 1842360 12 10.706760 Anserini +test2784 Q0 253754 13 10.575038 Anserini +test2784 Q0 12540800 14 10.566849 Anserini +test2784 Q0 1982076 15 10.566607 Anserini +test2784 Q0 12357408 16 10.532307 Anserini +test2784 Q0 13882816 17 10.454906 Anserini +test2784 Q0 12540801 18 10.446259 Anserini +test2784 Q0 5648374 19 10.427002 Anserini +test2784 Q0 1849475 20 10.398799 Anserini +test2784 Q0 11212917 21 10.385651 Anserini +test2784 Q0 16241504 22 10.380575 Anserini +test2784 Q0 13738986 23 10.376677 Anserini +test2784 Q0 12057307 24 10.238990 Anserini +test2784 Q0 3788435 25 10.187395 Anserini +test2784 Q0 3878678 26 10.116051 Anserini +test2784 Q0 16429723 27 10.111191 Anserini +test2784 Q0 466343 28 10.086103 Anserini +test2784 Q0 9200679 29 10.071546 Anserini +test2784 Q0 4021534 30 10.038335 Anserini +test2785 Q0 6053204 1 18.803848 Anserini +test2785 Q0 8116374 2 17.909424 Anserini +test2785 Q0 3664783 3 14.049236 Anserini +test2785 Q0 16013495 4 13.145918 Anserini +test2785 Q0 5261140 5 11.898805 Anserini +test2785 Q0 7658926 6 10.861555 Anserini +test2785 Q0 8827143 7 10.812037 Anserini +test2785 Q0 20924796 8 10.730803 Anserini +test2785 Q0 17609651 9 10.699867 Anserini +test2785 Q0 7144606 10 10.481042 Anserini +test2785 Q0 4305848 11 10.469782 Anserini +test2785 Q0 18526771 12 10.400868 Anserini +test2785 Q0 10408596 13 10.293588 Anserini +test2785 Q0 4975993 14 10.198039 Anserini +test2785 Q0 4067963 15 10.192335 Anserini +test2785 Q0 3574290 16 10.146710 Anserini +test2785 Q0 896144 17 9.898442 Anserini +test2785 Q0 19635335 18 9.824759 Anserini +test2785 Q0 16199914 19 9.774591 Anserini +test2785 Q0 8119250 20 9.746872 Anserini +test2785 Q0 18526770 21 9.746844 Anserini +test2785 Q0 3767367 22 9.744017 Anserini +test2785 Q0 8036683 23 9.725933 Anserini +test2785 Q0 13366245 24 9.722042 Anserini +test2785 Q0 8151012 25 9.722042 Anserini +test2785 Q0 13243124 26 9.719524 Anserini +test2785 Q0 2452937 27 9.712283 Anserini +test2785 Q0 20328955 28 9.700341 Anserini +test2785 Q0 8036680 29 9.628860 Anserini +test2785 Q0 7568134 30 9.598783 Anserini +test2786 Q0 2414989 1 12.078403 Anserini +test2786 Q0 2414997 2 11.108904 Anserini +test2786 Q0 333857 3 10.764915 Anserini +test2786 Q0 8053158 4 10.739120 Anserini +test2786 Q0 15286970 5 10.724443 Anserini +test2786 Q0 2414994 6 10.719421 Anserini +test2786 Q0 266710 7 10.651083 Anserini +test2786 Q0 400906 8 10.501502 Anserini +test2786 Q0 2415001 9 10.330758 Anserini +test2786 Q0 131150 10 10.245684 Anserini +test2786 Q0 4709190 11 10.064304 Anserini +test2786 Q0 14450608 12 9.892559 Anserini +test2786 Q0 18805206 13 9.506126 Anserini +test2786 Q0 1692108 14 9.477141 Anserini +test2786 Q0 14450607 15 9.440705 Anserini +test2786 Q0 1358059 16 9.412704 Anserini +test2786 Q0 2414991 17 9.389343 Anserini +test2786 Q0 18359409 18 9.256927 Anserini +test2786 Q0 2414992 19 9.237711 Anserini +test2786 Q0 2415004 20 9.237711 Anserini +test2786 Q0 2414985 21 9.211010 Anserini +test2786 Q0 2414996 22 9.211010 Anserini +test2786 Q0 2259024 23 9.191902 Anserini +test2786 Q0 2259049 24 9.191902 Anserini +test2786 Q0 8615359 25 9.157322 Anserini +test2786 Q0 2093051 26 9.121532 Anserini +test2786 Q0 1582124 27 9.088064 Anserini +test2786 Q0 2414988 28 9.064304 Anserini +test2786 Q0 16148480 29 9.043378 Anserini +test2786 Q0 2414986 30 9.033471 Anserini +test2787 Q0 10817153 1 16.530001 Anserini +test2787 Q0 10817149 2 16.376835 Anserini +test2787 Q0 18389719 3 15.015328 Anserini +test2787 Q0 18389721 4 14.951060 Anserini +test2787 Q0 10817150 5 14.915967 Anserini +test2787 Q0 11006509 6 14.811651 Anserini +test2787 Q0 10817151 7 14.560981 Anserini +test2787 Q0 17716375 8 14.498701 Anserini +test2787 Q0 17224447 9 14.386099 Anserini +test2787 Q0 20309052 10 14.343737 Anserini +test2787 Q0 1699767 11 14.317393 Anserini +test2787 Q0 3490657 12 14.039697 Anserini +test2787 Q0 13720578 13 13.949461 Anserini +test2787 Q0 12309495 14 13.719006 Anserini +test2787 Q0 12309497 15 13.719006 Anserini +test2787 Q0 14874573 16 13.649368 Anserini +test2787 Q0 16804164 17 13.570199 Anserini +test2787 Q0 6870143 18 13.527362 Anserini +test2787 Q0 5407743 19 13.518215 Anserini +test2787 Q0 6870142 20 13.461130 Anserini +test2787 Q0 15113840 21 13.339535 Anserini +test2787 Q0 5580505 22 13.336568 Anserini +test2787 Q0 10392201 23 13.303923 Anserini +test2787 Q0 14665349 24 13.303797 Anserini +test2787 Q0 14167687 25 13.257961 Anserini +test2787 Q0 12138900 26 13.257071 Anserini +test2787 Q0 14874572 27 13.236385 Anserini +test2787 Q0 14167715 28 13.227566 Anserini +test2787 Q0 6581304 29 13.030981 Anserini +test2787 Q0 17177372 30 13.006155 Anserini +test2788 Q0 144027 1 15.621689 Anserini +test2788 Q0 14096810 2 14.264392 Anserini +test2788 Q0 14096811 3 14.172211 Anserini +test2788 Q0 3804727 4 13.780619 Anserini +test2788 Q0 7951464 5 13.771113 Anserini +test2788 Q0 7951473 6 13.771113 Anserini +test2788 Q0 18372179 7 13.682886 Anserini +test2788 Q0 143973 8 13.612771 Anserini +test2788 Q0 18542838 9 13.392529 Anserini +test2788 Q0 1462615 10 13.143488 Anserini +test2788 Q0 18542833 11 13.130457 Anserini +test2788 Q0 1462608 12 12.910300 Anserini +test2788 Q0 5053197 13 12.896098 Anserini +test2788 Q0 8979757 14 12.790440 Anserini +test2788 Q0 1462611 15 12.566034 Anserini +test2788 Q0 7951465 16 12.306124 Anserini +test2788 Q0 8236310 17 12.289805 Anserini +test2788 Q0 3959473 18 12.143339 Anserini +test2788 Q0 14792102 19 12.073303 Anserini +test2788 Q0 14303156 20 12.022515 Anserini +test2788 Q0 1462614 21 11.887770 Anserini +test2788 Q0 4759242 22 11.802547 Anserini +test2788 Q0 18601135 23 11.736467 Anserini +test2788 Q0 1761804 24 11.596081 Anserini +test2788 Q0 18601142 25 11.496180 Anserini +test2788 Q0 17724445 26 11.456239 Anserini +test2788 Q0 6557943 27 11.440900 Anserini +test2788 Q0 18601137 28 11.393915 Anserini +test2788 Q0 16609438 29 11.393915 Anserini +test2788 Q0 11877475 30 11.364058 Anserini +test2789 Q0 19753719 1 17.932791 Anserini +test2789 Q0 2162945 2 17.679522 Anserini +test2789 Q0 18310875 3 17.643751 Anserini +test2789 Q0 19179725 4 17.643751 Anserini +test2789 Q0 1587935 5 17.573503 Anserini +test2789 Q0 18235299 6 17.487411 Anserini +test2789 Q0 2818236 7 17.313087 Anserini +test2789 Q0 6329375 8 17.218575 Anserini +test2789 Q0 6329395 9 17.218575 Anserini +test2789 Q0 18316531 10 17.194954 Anserini +test2789 Q0 20155733 11 17.187212 Anserini +test2789 Q0 5253407 12 17.186506 Anserini +test2789 Q0 13667310 13 17.157333 Anserini +test2789 Q0 5173568 14 17.149485 Anserini +test2789 Q0 20425917 15 17.142572 Anserini +test2789 Q0 2888442 16 17.091583 Anserini +test2789 Q0 19974047 17 17.069714 Anserini +test2789 Q0 4397886 18 17.049473 Anserini +test2789 Q0 9261618 19 17.039574 Anserini +test2789 Q0 1545354 20 17.038300 Anserini +test2789 Q0 5253412 21 16.981686 Anserini +test2789 Q0 18650994 22 16.903666 Anserini +test2789 Q0 4213282 23 16.875973 Anserini +test2789 Q0 18223318 24 16.841204 Anserini +test2789 Q0 20893493 25 16.812695 Anserini +test2789 Q0 6975455 26 16.799086 Anserini +test2789 Q0 20722137 27 16.787943 Anserini +test2789 Q0 20671552 28 16.770006 Anserini +test2789 Q0 2818239 29 16.749378 Anserini +test2789 Q0 6489375 30 16.728155 Anserini +test279 Q0 4236713 1 22.404734 Anserini +test279 Q0 4236715 2 20.925983 Anserini +test279 Q0 417973 3 19.539900 Anserini +test279 Q0 6878706 4 17.674372 Anserini +test279 Q0 3920541 5 17.663185 Anserini +test279 Q0 7127667 6 17.420506 Anserini +test279 Q0 6878708 7 17.347471 Anserini +test279 Q0 3920542 8 17.110559 Anserini +test279 Q0 11741515 9 16.660921 Anserini +test279 Q0 2004469 10 16.263664 Anserini +test279 Q0 3221537 11 16.242861 Anserini +test279 Q0 3920543 12 16.136213 Anserini +test279 Q0 10568336 13 15.942455 Anserini +test279 Q0 6923646 14 15.861162 Anserini +test279 Q0 7127664 15 15.849241 Anserini +test279 Q0 10783262 16 15.849241 Anserini +test279 Q0 14427426 17 15.587317 Anserini +test279 Q0 20048424 18 15.459862 Anserini +test279 Q0 15039956 19 15.430809 Anserini +test279 Q0 6878705 20 15.302126 Anserini +test279 Q0 8797861 21 15.267715 Anserini +test279 Q0 12785630 22 15.255319 Anserini +test279 Q0 417975 23 15.180983 Anserini +test279 Q0 10404969 24 15.174588 Anserini +test279 Q0 15362743 25 15.165445 Anserini +test279 Q0 11741514 26 15.011586 Anserini +test279 Q0 10404971 27 14.881582 Anserini +test279 Q0 16395866 28 14.868835 Anserini +test279 Q0 10568337 29 14.792947 Anserini +test279 Q0 125129 30 14.758363 Anserini +test2790 Q0 13613756 1 10.872732 Anserini +test2790 Q0 4669032 2 10.272985 Anserini +test2790 Q0 4669039 3 10.272985 Anserini +test2790 Q0 14744560 4 9.776918 Anserini +test2790 Q0 2273082 5 9.569447 Anserini +test2790 Q0 6749162 6 9.438132 Anserini +test2790 Q0 14744562 7 9.436877 Anserini +test2790 Q0 66076 8 9.391747 Anserini +test2790 Q0 10350471 9 9.391747 Anserini +test2790 Q0 18694528 10 9.302897 Anserini +test2790 Q0 11290179 11 9.274258 Anserini +test2790 Q0 2088260 12 9.242795 Anserini +test2790 Q0 3786528 13 9.228706 Anserini +test2790 Q0 6140370 14 9.208280 Anserini +test2790 Q0 3563933 15 9.143081 Anserini +test2790 Q0 12128101 16 9.116138 Anserini +test2790 Q0 14699066 17 9.096213 Anserini +test2790 Q0 10229423 18 9.071739 Anserini +test2790 Q0 14940999 19 9.016539 Anserini +test2790 Q0 15261931 20 8.972157 Anserini +test2790 Q0 5388162 21 8.956209 Anserini +test2790 Q0 12229703 22 8.925507 Anserini +test2790 Q0 2367984 23 8.916716 Anserini +test2790 Q0 7596892 24 8.900156 Anserini +test2790 Q0 1313751 25 8.881672 Anserini +test2790 Q0 2972913 26 8.881338 Anserini +test2790 Q0 15325789 27 8.846266 Anserini +test2790 Q0 19356539 28 8.819077 Anserini +test2790 Q0 9059776 29 8.812162 Anserini +test2790 Q0 9181696 30 8.810151 Anserini +test2791 Q0 11994314 1 19.788704 Anserini +test2791 Q0 16629710 2 19.580299 Anserini +test2791 Q0 2768154 3 18.589378 Anserini +test2791 Q0 4518163 4 18.273613 Anserini +test2791 Q0 16629706 5 18.243383 Anserini +test2791 Q0 4302872 6 18.208364 Anserini +test2791 Q0 16528018 7 18.185543 Anserini +test2791 Q0 4892781 8 18.055582 Anserini +test2791 Q0 16534960 9 17.778292 Anserini +test2791 Q0 12969360 10 17.712952 Anserini +test2791 Q0 6848111 11 17.711033 Anserini +test2791 Q0 16534956 12 17.709383 Anserini +test2791 Q0 7119536 13 17.605291 Anserini +test2791 Q0 16349222 14 17.560865 Anserini +test2791 Q0 575128 15 17.422819 Anserini +test2791 Q0 575147 16 17.365677 Anserini +test2791 Q0 575139 17 17.355293 Anserini +test2791 Q0 4891116 18 17.335304 Anserini +test2791 Q0 3053596 19 17.272882 Anserini +test2791 Q0 5077519 20 17.271721 Anserini +test2791 Q0 4928189 21 17.230024 Anserini +test2791 Q0 16349205 22 17.220421 Anserini +test2791 Q0 19824148 23 17.208551 Anserini +test2791 Q0 3053597 24 17.189568 Anserini +test2791 Q0 16349210 25 17.119238 Anserini +test2791 Q0 3053593 26 17.088566 Anserini +test2791 Q0 8606081 27 17.032026 Anserini +test2791 Q0 9495070 28 17.008934 Anserini +test2791 Q0 1528389 29 16.988281 Anserini +test2791 Q0 15353769 30 16.982944 Anserini +test2792 Q0 3451146 1 11.463444 Anserini +test2792 Q0 9726908 2 10.928125 Anserini +test2792 Q0 3592445 3 10.805168 Anserini +test2792 Q0 11896016 4 10.799168 Anserini +test2792 Q0 16367499 5 10.792709 Anserini +test2792 Q0 19233723 6 10.763488 Anserini +test2792 Q0 8154808 7 10.598252 Anserini +test2792 Q0 1579423 8 10.578936 Anserini +test2792 Q0 14458880 9 10.504999 Anserini +test2792 Q0 16259962 10 10.432202 Anserini +test2792 Q0 14500212 11 10.326400 Anserini +test2792 Q0 16896657 12 10.292748 Anserini +test2792 Q0 10381015 13 10.208820 Anserini +test2792 Q0 3631651 14 10.193385 Anserini +test2792 Q0 16951515 15 10.149986 Anserini +test2792 Q0 16099143 16 10.134193 Anserini +test2792 Q0 9195387 17 10.134193 Anserini +test2792 Q0 9609498 18 10.126967 Anserini +test2792 Q0 3129228 19 10.126967 Anserini +test2792 Q0 4453006 20 10.126967 Anserini +test2792 Q0 9264258 21 10.076807 Anserini +test2792 Q0 3592610 22 10.057121 Anserini +test2792 Q0 9876911 23 10.006092 Anserini +test2792 Q0 16099144 24 10.002311 Anserini +test2792 Q0 9359660 25 10.002298 Anserini +test2792 Q0 8335166 26 9.994427 Anserini +test2792 Q0 11145123 27 9.970400 Anserini +test2792 Q0 8150874 28 9.925906 Anserini +test2792 Q0 16458124 29 9.920280 Anserini +test2792 Q0 16818176 30 9.891290 Anserini +test2793 Q0 16532352 1 11.070868 Anserini +test2793 Q0 18482394 2 10.225825 Anserini +test2793 Q0 15655837 3 10.012774 Anserini +test2793 Q0 14845681 4 9.964847 Anserini +test2793 Q0 16510390 5 9.890729 Anserini +test2793 Q0 6854113 6 9.890729 Anserini +test2793 Q0 2984409 7 9.755046 Anserini +test2793 Q0 18753967 8 9.686255 Anserini +test2793 Q0 17419607 9 9.672441 Anserini +test2793 Q0 17711016 10 9.653423 Anserini +test2793 Q0 11349715 11 9.652803 Anserini +test2793 Q0 16407327 12 9.652803 Anserini +test2793 Q0 7066584 13 9.541875 Anserini +test2793 Q0 14933761 14 9.541875 Anserini +test2793 Q0 7273839 15 9.391533 Anserini +test2793 Q0 4348556 16 9.319446 Anserini +test2793 Q0 17116629 17 9.303362 Anserini +test2793 Q0 2190744 18 9.284776 Anserini +test2793 Q0 5079395 19 9.254094 Anserini +test2793 Q0 18760956 20 9.240963 Anserini +test2793 Q0 20208770 21 9.192513 Anserini +test2793 Q0 19872144 22 9.181903 Anserini +test2793 Q0 11578349 23 9.181903 Anserini +test2793 Q0 7903159 24 9.149942 Anserini +test2793 Q0 18341723 25 9.149942 Anserini +test2793 Q0 13404376 26 9.084215 Anserini +test2793 Q0 9756408 27 9.084215 Anserini +test2793 Q0 14963004 28 9.084215 Anserini +test2793 Q0 18161890 29 9.077740 Anserini +test2793 Q0 17579294 30 9.067661 Anserini +test2794 Q0 18330418 1 12.461111 Anserini +test2794 Q0 17356179 2 12.289951 Anserini +test2794 Q0 18330420 3 12.035709 Anserini +test2794 Q0 7426287 4 12.024740 Anserini +test2794 Q0 7426303 5 11.858869 Anserini +test2794 Q0 5153869 6 11.821840 Anserini +test2794 Q0 4240630 7 11.732639 Anserini +test2794 Q0 20493638 8 11.131632 Anserini +test2794 Q0 3226066 9 11.107870 Anserini +test2794 Q0 16873104 10 11.089830 Anserini +test2794 Q0 18178133 11 11.045745 Anserini +test2794 Q0 355824 12 11.045745 Anserini +test2794 Q0 12225635 13 11.019871 Anserini +test2794 Q0 18330421 14 11.018438 Anserini +test2794 Q0 5640165 15 10.933834 Anserini +test2794 Q0 2643647 16 10.887307 Anserini +test2794 Q0 20483347 17 10.841095 Anserini +test2794 Q0 20483344 18 10.841095 Anserini +test2794 Q0 19870845 19 10.841095 Anserini +test2794 Q0 18151552 20 10.712360 Anserini +test2794 Q0 19642118 21 10.712360 Anserini +test2794 Q0 20095317 22 10.676044 Anserini +test2794 Q0 12225632 23 10.662533 Anserini +test2794 Q0 18178095 24 10.642923 Anserini +test2794 Q0 5046760 25 10.639974 Anserini +test2794 Q0 20095305 26 10.639974 Anserini +test2794 Q0 18178082 27 10.639974 Anserini +test2794 Q0 3991279 28 10.615668 Anserini +test2794 Q0 5046770 29 10.598921 Anserini +test2794 Q0 20970313 30 10.574317 Anserini +test2795 Q0 9380755 1 15.732464 Anserini +test2795 Q0 1974131 2 13.367689 Anserini +test2795 Q0 10344135 3 13.365337 Anserini +test2795 Q0 6627572 4 13.340418 Anserini +test2795 Q0 15942431 5 13.168270 Anserini +test2795 Q0 455098 6 13.043998 Anserini +test2795 Q0 1762191 7 12.878791 Anserini +test2795 Q0 15886439 8 12.833988 Anserini +test2795 Q0 2428847 9 12.755224 Anserini +test2795 Q0 6627576 10 12.671427 Anserini +test2795 Q0 6627571 11 12.612291 Anserini +test2795 Q0 5836744 12 12.557079 Anserini +test2795 Q0 455115 13 12.530667 Anserini +test2795 Q0 3297398 14 12.495896 Anserini +test2795 Q0 18178997 15 12.304269 Anserini +test2795 Q0 18178998 16 12.191313 Anserini +test2795 Q0 9992231 17 12.075811 Anserini +test2795 Q0 3297404 18 12.055500 Anserini +test2795 Q0 5055847 19 11.973574 Anserini +test2795 Q0 15886442 20 11.971178 Anserini +test2795 Q0 4896040 21 11.957617 Anserini +test2795 Q0 12650466 22 11.947920 Anserini +test2795 Q0 455089 23 11.947762 Anserini +test2795 Q0 3297395 24 11.933218 Anserini +test2795 Q0 11886260 25 11.933159 Anserini +test2795 Q0 1826322 26 11.873405 Anserini +test2795 Q0 95503 27 11.850299 Anserini +test2795 Q0 14516660 28 11.772728 Anserini +test2795 Q0 10515157 29 11.708956 Anserini +test2795 Q0 15886445 30 11.689610 Anserini +test2796 Q0 12578763 1 11.820958 Anserini +test2796 Q0 15096418 2 11.271176 Anserini +test2796 Q0 15859100 3 11.100148 Anserini +test2796 Q0 18200690 4 10.950091 Anserini +test2796 Q0 13222884 5 10.900593 Anserini +test2796 Q0 17144336 6 10.813518 Anserini +test2796 Q0 14799943 7 10.591949 Anserini +test2796 Q0 312976 8 10.562823 Anserini +test2796 Q0 15562151 9 10.562647 Anserini +test2796 Q0 5155111 10 10.546879 Anserini +test2796 Q0 10698152 11 10.483124 Anserini +test2796 Q0 17801732 12 10.454757 Anserini +test2796 Q0 19164076 13 10.426800 Anserini +test2796 Q0 18683487 14 10.344290 Anserini +test2796 Q0 4321752 15 10.343365 Anserini +test2796 Q0 18096257 16 10.324739 Anserini +test2796 Q0 16977333 17 10.273654 Anserini +test2796 Q0 11669641 18 10.169327 Anserini +test2796 Q0 19591667 19 10.088223 Anserini +test2796 Q0 7304191 20 10.071529 Anserini +test2796 Q0 17144337 21 10.066508 Anserini +test2796 Q0 10327570 22 10.060951 Anserini +test2796 Q0 5149027 23 10.041945 Anserini +test2796 Q0 19081256 24 10.041945 Anserini +test2796 Q0 11947687 25 10.041945 Anserini +test2796 Q0 8947203 26 10.000620 Anserini +test2796 Q0 20051762 27 9.988841 Anserini +test2796 Q0 16313006 28 9.988841 Anserini +test2796 Q0 17144341 29 9.975010 Anserini +test2796 Q0 10149116 30 9.972290 Anserini +test2797 Q0 14462929 1 14.065872 Anserini +test2797 Q0 14462922 2 13.844391 Anserini +test2797 Q0 14462931 3 13.146066 Anserini +test2797 Q0 20862832 4 13.088791 Anserini +test2797 Q0 13565026 5 12.988912 Anserini +test2797 Q0 12188940 6 12.926437 Anserini +test2797 Q0 12188941 7 12.764346 Anserini +test2797 Q0 12188928 8 12.664563 Anserini +test2797 Q0 6008428 9 12.602602 Anserini +test2797 Q0 16668311 10 12.598968 Anserini +test2797 Q0 14462930 11 12.594312 Anserini +test2797 Q0 16668293 12 12.574156 Anserini +test2797 Q0 2742023 13 12.531339 Anserini +test2797 Q0 12188944 14 12.502170 Anserini +test2797 Q0 6501952 15 12.396696 Anserini +test2797 Q0 17443137 16 12.338610 Anserini +test2797 Q0 14462927 17 12.230323 Anserini +test2797 Q0 14462923 18 12.201413 Anserini +test2797 Q0 6342908 19 12.055624 Anserini +test2797 Q0 11666929 20 12.000259 Anserini +test2797 Q0 17443147 21 11.888618 Anserini +test2797 Q0 20435210 22 11.866792 Anserini +test2797 Q0 6008401 23 11.828401 Anserini +test2797 Q0 12188938 24 11.828401 Anserini +test2797 Q0 20862841 25 11.822179 Anserini +test2797 Q0 13767949 26 11.789419 Anserini +test2797 Q0 13939509 27 11.765745 Anserini +test2797 Q0 5704955 28 11.758451 Anserini +test2797 Q0 14129686 29 11.724522 Anserini +test2797 Q0 11891529 30 11.697743 Anserini +test2798 Q0 5313547 1 24.261108 Anserini +test2798 Q0 5313549 2 23.724369 Anserini +test2798 Q0 5313554 3 23.604128 Anserini +test2798 Q0 5251133 4 23.575521 Anserini +test2798 Q0 5313555 5 20.837555 Anserini +test2798 Q0 5313545 6 20.454050 Anserini +test2798 Q0 5313556 7 20.417339 Anserini +test2798 Q0 5313551 8 20.146793 Anserini +test2798 Q0 5012626 9 20.100378 Anserini +test2798 Q0 18163612 10 19.675890 Anserini +test2798 Q0 13797439 11 19.675650 Anserini +test2798 Q0 5313546 12 19.557201 Anserini +test2798 Q0 19421888 13 19.288782 Anserini +test2798 Q0 19421887 14 19.025570 Anserini +test2798 Q0 13797440 15 18.842369 Anserini +test2798 Q0 5313548 16 18.838623 Anserini +test2798 Q0 13797436 17 18.763836 Anserini +test2798 Q0 5313552 18 18.533787 Anserini +test2798 Q0 5012619 19 18.518772 Anserini +test2798 Q0 5313550 20 18.441599 Anserini +test2798 Q0 11757092 21 17.971266 Anserini +test2798 Q0 3019387 22 17.608078 Anserini +test2798 Q0 1514401 23 17.188181 Anserini +test2798 Q0 19421886 24 17.176590 Anserini +test2798 Q0 9785925 25 17.152416 Anserini +test2798 Q0 5104336 26 17.145655 Anserini +test2798 Q0 13797453 27 17.091785 Anserini +test2798 Q0 8401534 28 16.895159 Anserini +test2798 Q0 1832602 29 16.772390 Anserini +test2798 Q0 11247652 30 16.502399 Anserini +test2799 Q0 16557207 1 24.220692 Anserini +test2799 Q0 12855534 2 23.184546 Anserini +test2799 Q0 9878558 3 22.366522 Anserini +test2799 Q0 17860947 4 21.608538 Anserini +test2799 Q0 10248571 5 20.244951 Anserini +test2799 Q0 19233561 6 20.201416 Anserini +test2799 Q0 12545479 7 19.037592 Anserini +test2799 Q0 9878555 8 18.627068 Anserini +test2799 Q0 12545519 9 18.073072 Anserini +test2799 Q0 13142723 10 18.029997 Anserini +test2799 Q0 18483421 11 17.529270 Anserini +test2799 Q0 16062974 12 17.373425 Anserini +test2799 Q0 10248536 13 17.232538 Anserini +test2799 Q0 11092470 14 17.166986 Anserini +test2799 Q0 2495534 15 16.039885 Anserini +test2799 Q0 16062972 16 15.871032 Anserini +test2799 Q0 12545480 17 15.871032 Anserini +test2799 Q0 15603125 18 15.871032 Anserini +test2799 Q0 12038747 19 15.842625 Anserini +test2799 Q0 14572584 20 15.680745 Anserini +test2799 Q0 5091639 21 15.543771 Anserini +test2799 Q0 10850208 22 15.263027 Anserini +test2799 Q0 5880302 23 15.237476 Anserini +test2799 Q0 12545498 24 15.170448 Anserini +test2799 Q0 3046594 25 15.075363 Anserini +test2799 Q0 16534078 26 15.075363 Anserini +test2799 Q0 16062973 27 15.075363 Anserini +test2799 Q0 4866987 28 15.075363 Anserini +test2799 Q0 7613425 29 14.916665 Anserini +test2799 Q0 13658045 30 14.916665 Anserini +test28 Q0 5187686 1 16.907385 Anserini +test28 Q0 17934221 2 16.686584 Anserini +test28 Q0 15538658 3 16.647041 Anserini +test28 Q0 3884758 4 16.291626 Anserini +test28 Q0 13591376 5 15.952170 Anserini +test28 Q0 4664395 6 15.949446 Anserini +test28 Q0 6236548 7 15.830950 Anserini +test28 Q0 9560338 8 15.727589 Anserini +test28 Q0 346856 9 15.660952 Anserini +test28 Q0 13591361 10 15.421804 Anserini +test28 Q0 15624890 11 15.252460 Anserini +test28 Q0 7084237 12 15.189991 Anserini +test28 Q0 152629 13 14.974447 Anserini +test28 Q0 19850580 14 14.882014 Anserini +test28 Q0 16245821 15 14.881445 Anserini +test28 Q0 18778743 16 14.862476 Anserini +test28 Q0 15624888 17 14.857466 Anserini +test28 Q0 18864166 18 14.811750 Anserini +test28 Q0 13152101 19 14.788851 Anserini +test28 Q0 13152103 20 14.788851 Anserini +test28 Q0 19708185 21 14.732758 Anserini +test28 Q0 7148654 22 14.588408 Anserini +test28 Q0 13730250 23 14.583541 Anserini +test28 Q0 16171150 24 14.508358 Anserini +test28 Q0 671445 25 14.486993 Anserini +test28 Q0 11786784 26 14.414239 Anserini +test28 Q0 296510 27 14.387954 Anserini +test28 Q0 312538 28 14.226698 Anserini +test28 Q0 17065331 29 14.207028 Anserini +test28 Q0 17934224 30 14.200809 Anserini +test280 Q0 2201115 1 23.070129 Anserini +test280 Q0 3163930 2 22.794065 Anserini +test280 Q0 9515321 3 21.375282 Anserini +test280 Q0 19785920 4 20.670702 Anserini +test280 Q0 19785931 5 19.768681 Anserini +test280 Q0 8537753 6 19.672935 Anserini +test280 Q0 6313944 7 18.542740 Anserini +test280 Q0 9515316 8 18.297459 Anserini +test280 Q0 189931 9 18.211519 Anserini +test280 Q0 2967124 10 18.195957 Anserini +test280 Q0 19785919 11 17.939543 Anserini +test280 Q0 4111532 12 17.833162 Anserini +test280 Q0 14063530 13 17.614960 Anserini +test280 Q0 12432285 14 17.600916 Anserini +test280 Q0 19785921 15 17.520565 Anserini +test280 Q0 3753640 16 17.199509 Anserini +test280 Q0 12140951 17 17.170036 Anserini +test280 Q0 11996780 18 17.155319 Anserini +test280 Q0 5010739 19 17.145115 Anserini +test280 Q0 2118721 20 17.082314 Anserini +test280 Q0 744395 21 17.079370 Anserini +test280 Q0 9264668 22 16.883606 Anserini +test280 Q0 5010734 23 16.847044 Anserini +test280 Q0 9264672 24 16.825218 Anserini +test280 Q0 8537764 25 16.795723 Anserini +test280 Q0 5719032 26 16.781809 Anserini +test280 Q0 2331930 27 16.777843 Anserini +test280 Q0 12365871 28 16.673071 Anserini +test280 Q0 446181 29 16.565565 Anserini +test280 Q0 2941211 30 16.540701 Anserini +test2800 Q0 14925663 1 10.062449 Anserini +test2800 Q0 573363 2 10.045762 Anserini +test2800 Q0 17070220 3 9.809999 Anserini +test2800 Q0 13947654 4 9.523727 Anserini +test2800 Q0 20661361 5 9.454170 Anserini +test2800 Q0 2508333 6 9.397849 Anserini +test2800 Q0 10831209 7 9.382982 Anserini +test2800 Q0 15379626 8 9.356400 Anserini +test2800 Q0 4097690 9 9.343937 Anserini +test2800 Q0 4513726 10 9.330312 Anserini +test2800 Q0 7438605 11 9.329891 Anserini +test2800 Q0 15548444 12 9.290761 Anserini +test2800 Q0 145365 13 9.211142 Anserini +test2800 Q0 13295433 14 9.173959 Anserini +test2800 Q0 145367 15 9.164237 Anserini +test2800 Q0 15333884 16 9.131176 Anserini +test2800 Q0 16649011 17 9.129911 Anserini +test2800 Q0 12503547 18 9.123526 Anserini +test2800 Q0 16648995 19 9.060324 Anserini +test2800 Q0 11220351 20 9.049294 Anserini +test2800 Q0 10593883 21 9.040771 Anserini +test2800 Q0 14586578 22 9.036772 Anserini +test2800 Q0 2045359 23 9.028419 Anserini +test2800 Q0 7363296 24 9.013716 Anserini +test2800 Q0 518290 25 9.002076 Anserini +test2800 Q0 4108744 26 8.986879 Anserini +test2800 Q0 17506422 27 8.981895 Anserini +test2800 Q0 8365365 28 8.937156 Anserini +test2800 Q0 1426216 29 8.927717 Anserini +test2800 Q0 3152437 30 8.924297 Anserini +test2801 Q0 16017940 1 17.010290 Anserini +test2801 Q0 16017944 2 15.890502 Anserini +test2801 Q0 19576142 3 13.714924 Anserini +test2801 Q0 15727494 4 13.299613 Anserini +test2801 Q0 16017941 5 13.160368 Anserini +test2801 Q0 5425716 6 12.919732 Anserini +test2801 Q0 14991170 7 12.812513 Anserini +test2801 Q0 16017942 8 12.670466 Anserini +test2801 Q0 472364 9 12.379519 Anserini +test2801 Q0 4839767 10 12.158757 Anserini +test2801 Q0 9747597 11 12.107129 Anserini +test2801 Q0 4796211 12 11.960095 Anserini +test2801 Q0 18191436 13 11.958229 Anserini +test2801 Q0 1811625 14 11.915859 Anserini +test2801 Q0 1833207 15 11.775492 Anserini +test2801 Q0 2094857 16 11.576330 Anserini +test2801 Q0 3910729 17 11.539843 Anserini +test2801 Q0 16935137 18 11.539843 Anserini +test2801 Q0 5014348 19 11.399272 Anserini +test2801 Q0 4048733 20 11.385879 Anserini +test2801 Q0 3362119 21 11.365657 Anserini +test2801 Q0 1811627 22 11.322914 Anserini +test2801 Q0 4987999 23 11.269047 Anserini +test2801 Q0 2397287 24 11.263269 Anserini +test2801 Q0 18191438 25 11.223894 Anserini +test2801 Q0 5224989 26 11.182917 Anserini +test2801 Q0 9651872 27 11.111849 Anserini +test2801 Q0 3796128 28 11.068797 Anserini +test2801 Q0 12848590 29 11.046954 Anserini +test2801 Q0 7361918 30 10.943188 Anserini +test2802 Q0 8053364 1 24.778603 Anserini +test2802 Q0 5282230 2 23.191919 Anserini +test2802 Q0 5282227 3 23.083363 Anserini +test2802 Q0 7607524 4 23.067020 Anserini +test2802 Q0 4187287 5 22.753820 Anserini +test2802 Q0 8316064 6 22.666800 Anserini +test2802 Q0 8316038 7 22.638865 Anserini +test2802 Q0 8316048 8 22.531572 Anserini +test2802 Q0 2679598 9 22.499863 Anserini +test2802 Q0 8316033 10 22.486876 Anserini +test2802 Q0 13805362 11 22.472702 Anserini +test2802 Q0 10503191 12 22.472145 Anserini +test2802 Q0 8316073 13 22.429403 Anserini +test2802 Q0 13740096 14 22.361229 Anserini +test2802 Q0 3829327 15 22.348499 Anserini +test2802 Q0 6719617 16 22.337004 Anserini +test2802 Q0 13740104 17 22.290264 Anserini +test2802 Q0 1824930 18 22.266665 Anserini +test2802 Q0 1824931 19 22.209949 Anserini +test2802 Q0 6915993 20 22.188709 Anserini +test2802 Q0 6915952 21 22.146229 Anserini +test2802 Q0 15974797 22 22.129402 Anserini +test2802 Q0 12728138 23 22.052713 Anserini +test2802 Q0 18820345 24 22.052713 Anserini +test2802 Q0 1824932 25 22.052713 Anserini +test2802 Q0 9978622 26 22.019058 Anserini +test2802 Q0 14647947 27 22.019058 Anserini +test2802 Q0 1208697 28 21.980286 Anserini +test2802 Q0 6915960 29 21.974751 Anserini +test2802 Q0 11174665 30 21.966335 Anserini +test2803 Q0 11415469 1 14.740297 Anserini +test2803 Q0 8760262 2 14.638074 Anserini +test2803 Q0 19792188 3 14.460239 Anserini +test2803 Q0 18426500 4 14.205909 Anserini +test2803 Q0 19792191 5 14.201082 Anserini +test2803 Q0 6145950 6 14.146743 Anserini +test2803 Q0 11456063 7 14.076152 Anserini +test2803 Q0 13493770 8 14.069661 Anserini +test2803 Q0 10134775 9 13.940537 Anserini +test2803 Q0 3710359 10 13.792933 Anserini +test2803 Q0 13340667 11 13.733939 Anserini +test2803 Q0 19874140 12 13.714272 Anserini +test2803 Q0 10931563 13 13.590603 Anserini +test2803 Q0 8323118 14 13.590549 Anserini +test2803 Q0 11986237 15 13.582672 Anserini +test2803 Q0 11413830 16 13.570380 Anserini +test2803 Q0 8278220 17 13.565007 Anserini +test2803 Q0 17825184 18 13.528522 Anserini +test2803 Q0 15179018 19 13.505900 Anserini +test2803 Q0 11413831 20 13.489098 Anserini +test2803 Q0 11986234 21 13.489023 Anserini +test2803 Q0 19939393 22 13.445856 Anserini +test2803 Q0 20808412 23 13.384027 Anserini +test2803 Q0 10665821 24 13.365755 Anserini +test2803 Q0 11744784 25 13.346623 Anserini +test2803 Q0 6851306 26 13.343040 Anserini +test2803 Q0 8760265 27 13.306815 Anserini +test2803 Q0 13531632 28 13.285275 Anserini +test2803 Q0 15634449 29 13.225200 Anserini +test2803 Q0 8760296 30 13.212211 Anserini +test2804 Q0 1955156 1 15.237900 Anserini +test2804 Q0 15360686 2 14.948637 Anserini +test2804 Q0 1937760 3 14.719334 Anserini +test2804 Q0 8496075 4 14.669262 Anserini +test2804 Q0 17220972 5 14.423832 Anserini +test2804 Q0 12363102 6 14.132329 Anserini +test2804 Q0 15360664 7 14.105373 Anserini +test2804 Q0 4031349 8 13.941096 Anserini +test2804 Q0 84570 9 13.881361 Anserini +test2804 Q0 13354269 10 13.880198 Anserini +test2804 Q0 1937772 11 13.852916 Anserini +test2804 Q0 15360668 12 13.637613 Anserini +test2804 Q0 14119135 13 13.599609 Anserini +test2804 Q0 1937771 14 13.568815 Anserini +test2804 Q0 5178101 15 13.553671 Anserini +test2804 Q0 15360678 16 13.539392 Anserini +test2804 Q0 14140896 17 13.527565 Anserini +test2804 Q0 11199493 18 13.493324 Anserini +test2804 Q0 17045208 19 13.475754 Anserini +test2804 Q0 3062341 20 13.468560 Anserini +test2804 Q0 1937750 21 13.342886 Anserini +test2804 Q0 6836433 22 13.263403 Anserini +test2804 Q0 19091236 23 13.233656 Anserini +test2804 Q0 8496076 24 13.186951 Anserini +test2804 Q0 14163412 25 13.179621 Anserini +test2804 Q0 8447306 26 13.144440 Anserini +test2804 Q0 11370412 27 13.134307 Anserini +test2804 Q0 4427416 28 13.095860 Anserini +test2804 Q0 13611321 29 13.076548 Anserini +test2804 Q0 18180949 30 13.003364 Anserini +test2805 Q0 1713265 1 10.916061 Anserini +test2805 Q0 5838259 2 10.269299 Anserini +test2805 Q0 1843843 3 10.171759 Anserini +test2805 Q0 12054924 4 10.053442 Anserini +test2805 Q0 9793581 5 9.992700 Anserini +test2805 Q0 2506946 6 9.908621 Anserini +test2805 Q0 11855741 7 9.857180 Anserini +test2805 Q0 10522443 8 9.847876 Anserini +test2805 Q0 1302870 9 9.735952 Anserini +test2805 Q0 9793582 10 9.663617 Anserini +test2805 Q0 8879431 11 9.569324 Anserini +test2805 Q0 17561112 12 9.390787 Anserini +test2805 Q0 7182876 13 9.312082 Anserini +test2805 Q0 4040124 14 9.271821 Anserini +test2805 Q0 5537077 15 9.221130 Anserini +test2805 Q0 10559571 16 9.210684 Anserini +test2805 Q0 9797345 17 9.124623 Anserini +test2805 Q0 5643812 18 9.073442 Anserini +test2805 Q0 14122559 19 9.065502 Anserini +test2805 Q0 18648254 20 9.065076 Anserini +test2805 Q0 11191237 21 9.063843 Anserini +test2805 Q0 11191242 22 9.063843 Anserini +test2805 Q0 4499869 23 8.996671 Anserini +test2805 Q0 5828912 24 8.932962 Anserini +test2805 Q0 13369687 25 8.889198 Anserini +test2805 Q0 8108303 26 8.872190 Anserini +test2805 Q0 3279307 27 8.853373 Anserini +test2805 Q0 20013267 28 8.853373 Anserini +test2805 Q0 10154714 29 8.843141 Anserini +test2805 Q0 4436123 30 8.834759 Anserini +test2806 Q0 17218214 1 12.969031 Anserini +test2806 Q0 12062313 2 12.484551 Anserini +test2806 Q0 16217798 3 12.248936 Anserini +test2806 Q0 2557372 4 12.204115 Anserini +test2806 Q0 2512989 5 12.195608 Anserini +test2806 Q0 2512993 6 12.180865 Anserini +test2806 Q0 293536 7 12.168888 Anserini +test2806 Q0 9460046 8 12.078773 Anserini +test2806 Q0 17218213 9 11.877878 Anserini +test2806 Q0 2557360 10 11.875500 Anserini +test2806 Q0 293519 11 11.861384 Anserini +test2806 Q0 5387869 12 11.749338 Anserini +test2806 Q0 12365526 13 11.607984 Anserini +test2806 Q0 2596248 14 11.581361 Anserini +test2806 Q0 2557370 15 11.502719 Anserini +test2806 Q0 16217802 16 11.458129 Anserini +test2806 Q0 2618561 17 11.403312 Anserini +test2806 Q0 16642205 18 11.269704 Anserini +test2806 Q0 1158519 19 11.210331 Anserini +test2806 Q0 12367431 20 11.201563 Anserini +test2806 Q0 924864 21 11.057001 Anserini +test2806 Q0 2618553 22 10.870306 Anserini +test2806 Q0 2877743 23 10.870306 Anserini +test2806 Q0 702934 24 10.835426 Anserini +test2806 Q0 13127379 25 10.776571 Anserini +test2806 Q0 5078409 26 10.683296 Anserini +test2806 Q0 1518514 27 10.681891 Anserini +test2806 Q0 17218274 28 10.656331 Anserini +test2806 Q0 15696262 29 10.593353 Anserini +test2806 Q0 1284945 30 10.583413 Anserini +test2807 Q0 16578515 1 11.599665 Anserini +test2807 Q0 7745015 2 10.449274 Anserini +test2807 Q0 123341 3 10.301373 Anserini +test2807 Q0 16578519 4 10.141014 Anserini +test2807 Q0 11345931 5 10.119680 Anserini +test2807 Q0 8574352 6 9.834558 Anserini +test2807 Q0 755059 7 9.791450 Anserini +test2807 Q0 18650295 8 9.735232 Anserini +test2807 Q0 16580726 9 9.728716 Anserini +test2807 Q0 7745040 10 9.601564 Anserini +test2807 Q0 8880999 11 9.601175 Anserini +test2807 Q0 14025884 12 9.549909 Anserini +test2807 Q0 11509087 13 9.499846 Anserini +test2807 Q0 14128821 14 9.457003 Anserini +test2807 Q0 14069217 15 9.376510 Anserini +test2807 Q0 10421942 16 9.368261 Anserini +test2807 Q0 20277689 17 9.351665 Anserini +test2807 Q0 2689270 18 9.324064 Anserini +test2807 Q0 12877513 19 9.318119 Anserini +test2807 Q0 14069268 20 9.305378 Anserini +test2807 Q0 14105197 21 9.305378 Anserini +test2807 Q0 14105198 22 9.305378 Anserini +test2807 Q0 755056 23 9.295929 Anserini +test2807 Q0 14069195 24 9.276985 Anserini +test2807 Q0 14069216 25 9.216192 Anserini +test2807 Q0 6818349 26 9.204428 Anserini +test2807 Q0 13772027 27 9.196313 Anserini +test2807 Q0 242749 28 9.186696 Anserini +test2807 Q0 14063865 29 9.174848 Anserini +test2807 Q0 14130088 30 9.174848 Anserini +test2808 Q0 7731600 1 11.374820 Anserini +test2808 Q0 12432874 2 10.905527 Anserini +test2808 Q0 14726594 3 10.661657 Anserini +test2808 Q0 4697287 4 10.629363 Anserini +test2808 Q0 4816441 5 10.589665 Anserini +test2808 Q0 10909863 6 10.536110 Anserini +test2808 Q0 11685580 7 10.533421 Anserini +test2808 Q0 10909873 8 10.170585 Anserini +test2808 Q0 20334139 9 10.096026 Anserini +test2808 Q0 14726601 10 10.035581 Anserini +test2808 Q0 14058542 11 9.937293 Anserini +test2808 Q0 4764490 12 9.834032 Anserini +test2808 Q0 810348 13 9.778900 Anserini +test2808 Q0 19731330 14 9.724416 Anserini +test2808 Q0 850714 15 9.657074 Anserini +test2808 Q0 10489326 16 9.615306 Anserini +test2808 Q0 17917200 17 9.528199 Anserini +test2808 Q0 8781158 18 9.479369 Anserini +test2808 Q0 10780557 19 9.394843 Anserini +test2808 Q0 1647294 20 9.389333 Anserini +test2808 Q0 14220597 21 9.340447 Anserini +test2808 Q0 9107023 22 9.328891 Anserini +test2808 Q0 2349976 23 9.274264 Anserini +test2808 Q0 1425479 24 9.274264 Anserini +test2808 Q0 11040126 25 9.271921 Anserini +test2808 Q0 14532730 26 9.234442 Anserini +test2808 Q0 1526306 27 9.202954 Anserini +test2808 Q0 7603565 28 9.199320 Anserini +test2808 Q0 3562665 29 9.192595 Anserini +test2808 Q0 10909861 30 9.188837 Anserini +test2809 Q0 2705311 1 14.027058 Anserini +test2809 Q0 20656240 2 11.560259 Anserini +test2809 Q0 13268715 3 10.728374 Anserini +test2809 Q0 2705309 4 10.374491 Anserini +test2809 Q0 2298020 5 10.105515 Anserini +test2809 Q0 12601914 6 10.069461 Anserini +test2809 Q0 8410319 7 9.975718 Anserini +test2809 Q0 838261 8 9.933321 Anserini +test2809 Q0 2571841 9 9.814569 Anserini +test2809 Q0 12167788 10 9.646382 Anserini +test2809 Q0 12167789 11 9.646382 Anserini +test2809 Q0 3409208 12 9.631964 Anserini +test2809 Q0 15627636 13 9.610346 Anserini +test2809 Q0 4057950 14 9.576701 Anserini +test2809 Q0 1999715 15 9.563577 Anserini +test2809 Q0 18927403 16 9.554800 Anserini +test2809 Q0 10902277 17 9.409094 Anserini +test2809 Q0 2298021 18 9.374545 Anserini +test2809 Q0 6957414 19 9.301085 Anserini +test2809 Q0 17108944 20 9.245745 Anserini +test2809 Q0 6554861 21 9.215835 Anserini +test2809 Q0 9212829 22 9.164470 Anserini +test2809 Q0 2257887 23 9.123514 Anserini +test2809 Q0 2705312 24 9.104553 Anserini +test2809 Q0 16589099 25 9.102533 Anserini +test2809 Q0 11452430 26 9.073205 Anserini +test2809 Q0 14289224 27 9.070855 Anserini +test2809 Q0 7087201 28 9.061274 Anserini +test2809 Q0 7500096 29 9.041546 Anserini +test2809 Q0 3608647 30 9.040911 Anserini +test281 Q0 18428830 1 11.345562 Anserini +test281 Q0 1532489 2 11.147967 Anserini +test281 Q0 18453917 3 10.896132 Anserini +test281 Q0 18389831 4 10.295307 Anserini +test281 Q0 8371306 5 10.261238 Anserini +test281 Q0 18453914 6 10.120602 Anserini +test281 Q0 10164427 7 10.016607 Anserini +test281 Q0 17014744 8 9.993497 Anserini +test281 Q0 13607769 9 9.948332 Anserini +test281 Q0 13607771 10 9.948332 Anserini +test281 Q0 15394450 11 9.847009 Anserini +test281 Q0 19744783 12 9.840878 Anserini +test281 Q0 13780674 13 9.759037 Anserini +test281 Q0 10164422 14 9.729891 Anserini +test281 Q0 8521730 15 9.725679 Anserini +test281 Q0 17314359 16 9.711164 Anserini +test281 Q0 13780672 17 9.704763 Anserini +test281 Q0 14932264 18 9.556553 Anserini +test281 Q0 10794541 19 9.538774 Anserini +test281 Q0 10164426 20 9.518476 Anserini +test281 Q0 5524693 21 9.499315 Anserini +test281 Q0 10922666 22 9.467090 Anserini +test281 Q0 14544858 23 9.452807 Anserini +test281 Q0 17243758 24 9.411937 Anserini +test281 Q0 5685580 25 9.380012 Anserini +test281 Q0 11447112 26 9.360344 Anserini +test281 Q0 12232337 27 9.328909 Anserini +test281 Q0 13336766 28 9.325884 Anserini +test281 Q0 20582336 29 9.318962 Anserini +test281 Q0 10164425 30 9.309960 Anserini +test2810 Q0 4858285 1 14.160750 Anserini +test2810 Q0 17980490 2 12.654398 Anserini +test2810 Q0 3207798 3 11.867169 Anserini +test2810 Q0 4858287 4 11.807470 Anserini +test2810 Q0 17440039 5 11.034949 Anserini +test2810 Q0 18154098 6 11.022502 Anserini +test2810 Q0 17959842 7 11.005894 Anserini +test2810 Q0 5609693 8 10.872854 Anserini +test2810 Q0 1759407 9 10.831443 Anserini +test2810 Q0 7484172 10 10.829074 Anserini +test2810 Q0 17353710 11 10.785744 Anserini +test2810 Q0 8067687 12 10.654989 Anserini +test2810 Q0 2963578 13 10.544746 Anserini +test2810 Q0 17980489 14 10.399979 Anserini +test2810 Q0 8467129 15 10.374052 Anserini +test2810 Q0 1497239 16 10.373134 Anserini +test2810 Q0 1341314 17 10.367085 Anserini +test2810 Q0 12128685 18 10.353519 Anserini +test2810 Q0 12422547 19 10.345018 Anserini +test2810 Q0 20306340 20 10.210301 Anserini +test2810 Q0 17959840 21 10.197325 Anserini +test2810 Q0 11751981 22 10.185101 Anserini +test2810 Q0 11751978 23 10.062618 Anserini +test2810 Q0 908983 24 10.042072 Anserini +test2810 Q0 2241741 25 9.950891 Anserini +test2810 Q0 15289067 26 9.937460 Anserini +test2810 Q0 15268158 27 9.902174 Anserini +test2810 Q0 1759409 28 9.895019 Anserini +test2810 Q0 6901233 29 9.888556 Anserini +test2810 Q0 8067691 30 9.886099 Anserini +test2811 Q0 6880981 1 13.314716 Anserini +test2811 Q0 7425030 2 13.120806 Anserini +test2811 Q0 9376951 3 12.783372 Anserini +test2811 Q0 10700227 4 11.399033 Anserini +test2811 Q0 15225051 5 11.388241 Anserini +test2811 Q0 13277809 6 11.166735 Anserini +test2811 Q0 7586239 7 10.883936 Anserini +test2811 Q0 6226835 8 10.547791 Anserini +test2811 Q0 2792110 9 10.528530 Anserini +test2811 Q0 9443471 10 10.414484 Anserini +test2811 Q0 7940113 11 10.255851 Anserini +test2811 Q0 16228000 12 10.064801 Anserini +test2811 Q0 10163553 13 9.999904 Anserini +test2811 Q0 2850149 14 9.964038 Anserini +test2811 Q0 19808533 15 9.917656 Anserini +test2811 Q0 936274 16 9.849832 Anserini +test2811 Q0 13277810 17 9.803220 Anserini +test2811 Q0 12964145 18 9.771668 Anserini +test2811 Q0 3507507 19 9.771496 Anserini +test2811 Q0 19808539 20 9.765835 Anserini +test2811 Q0 19580318 21 9.756687 Anserini +test2811 Q0 244316 22 9.710024 Anserini +test2811 Q0 18493188 23 9.705088 Anserini +test2811 Q0 10835920 24 9.688226 Anserini +test2811 Q0 588237 25 9.688226 Anserini +test2811 Q0 3575786 26 9.667885 Anserini +test2811 Q0 20366100 27 9.662138 Anserini +test2811 Q0 20756401 28 9.654485 Anserini +test2811 Q0 11987602 29 9.651672 Anserini +test2811 Q0 20000857 30 9.650572 Anserini +test2812 Q0 1977300 1 16.283493 Anserini +test2812 Q0 10753249 2 15.269010 Anserini +test2812 Q0 12675695 3 15.115220 Anserini +test2812 Q0 2344877 4 14.627156 Anserini +test2812 Q0 3448675 5 14.554394 Anserini +test2812 Q0 2391186 6 13.940499 Anserini +test2812 Q0 2344882 7 13.804065 Anserini +test2812 Q0 5397791 8 13.279589 Anserini +test2812 Q0 833765 9 13.261484 Anserini +test2812 Q0 2458513 10 13.064457 Anserini +test2812 Q0 2344876 11 12.948956 Anserini +test2812 Q0 1547644 12 12.895062 Anserini +test2812 Q0 2862436 13 12.850565 Anserini +test2812 Q0 2386425 14 12.672192 Anserini +test2812 Q0 1547511 15 12.622392 Anserini +test2812 Q0 1547242 16 12.590586 Anserini +test2812 Q0 1539806 17 12.571354 Anserini +test2812 Q0 17704192 18 12.431074 Anserini +test2812 Q0 2344870 19 12.402760 Anserini +test2812 Q0 6677636 20 12.379765 Anserini +test2812 Q0 2862440 21 12.379765 Anserini +test2812 Q0 2097963 22 12.366380 Anserini +test2812 Q0 2498303 23 12.349349 Anserini +test2812 Q0 13073059 24 12.195168 Anserini +test2812 Q0 1545469 25 12.132339 Anserini +test2812 Q0 2391308 26 12.118693 Anserini +test2812 Q0 1972102 27 11.961412 Anserini +test2812 Q0 2344880 28 11.939100 Anserini +test2812 Q0 2344883 29 11.919156 Anserini +test2812 Q0 2344881 30 11.768301 Anserini +test2813 Q0 13793076 1 14.406700 Anserini +test2813 Q0 6864677 2 14.365442 Anserini +test2813 Q0 6864679 3 13.448088 Anserini +test2813 Q0 6864652 4 13.011742 Anserini +test2813 Q0 1277325 5 12.512220 Anserini +test2813 Q0 6864686 6 12.395008 Anserini +test2813 Q0 6778124 7 12.251133 Anserini +test2813 Q0 6864669 8 11.982335 Anserini +test2813 Q0 9601491 9 11.809095 Anserini +test2813 Q0 562715 10 11.681395 Anserini +test2813 Q0 17660827 11 11.677942 Anserini +test2813 Q0 2803738 12 11.593583 Anserini +test2813 Q0 6864683 13 11.591606 Anserini +test2813 Q0 9054102 14 11.216660 Anserini +test2813 Q0 6864672 15 11.117773 Anserini +test2813 Q0 6864667 16 10.976072 Anserini +test2813 Q0 7373739 17 10.966311 Anserini +test2813 Q0 6864687 18 10.879122 Anserini +test2813 Q0 98855 19 10.875731 Anserini +test2813 Q0 110286 20 10.872046 Anserini +test2813 Q0 707856 21 10.682042 Anserini +test2813 Q0 566212 22 10.654608 Anserini +test2813 Q0 596931 23 10.625532 Anserini +test2813 Q0 2718772 24 10.600733 Anserini +test2813 Q0 2629242 25 10.537707 Anserini +test2813 Q0 13465375 26 10.503430 Anserini +test2813 Q0 16692257 27 10.501709 Anserini +test2813 Q0 98848 28 10.470207 Anserini +test2813 Q0 17660826 29 10.438117 Anserini +test2813 Q0 7683689 30 10.396409 Anserini +test2814 Q0 7204732 1 17.836353 Anserini +test2814 Q0 4615475 2 17.057547 Anserini +test2814 Q0 1006176 3 12.551455 Anserini +test2814 Q0 4615483 4 12.391264 Anserini +test2814 Q0 12337016 5 11.270113 Anserini +test2814 Q0 10791362 6 11.208001 Anserini +test2814 Q0 18748616 7 10.988524 Anserini +test2814 Q0 13388350 8 10.849938 Anserini +test2814 Q0 8033465 9 10.812385 Anserini +test2814 Q0 16155848 10 10.770739 Anserini +test2814 Q0 10104894 11 10.764565 Anserini +test2814 Q0 7204741 12 10.704509 Anserini +test2814 Q0 13426163 13 10.634531 Anserini +test2814 Q0 10728893 14 10.634531 Anserini +test2814 Q0 5330036 15 10.625637 Anserini +test2814 Q0 15512455 16 10.597515 Anserini +test2814 Q0 14411842 17 10.534070 Anserini +test2814 Q0 7756508 18 10.533983 Anserini +test2814 Q0 10507211 19 10.493505 Anserini +test2814 Q0 16822816 20 10.493505 Anserini +test2814 Q0 7204723 21 10.442892 Anserini +test2814 Q0 13643713 22 10.395328 Anserini +test2814 Q0 9140457 23 10.395328 Anserini +test2814 Q0 13152215 24 10.395328 Anserini +test2814 Q0 20558959 25 10.283257 Anserini +test2814 Q0 15756519 26 10.263916 Anserini +test2814 Q0 10507219 27 10.261652 Anserini +test2814 Q0 7852541 28 10.261652 Anserini +test2814 Q0 14587135 29 10.261652 Anserini +test2814 Q0 15512458 30 10.261652 Anserini +test2815 Q0 10282675 1 13.301934 Anserini +test2815 Q0 15774718 2 13.162391 Anserini +test2815 Q0 7419883 3 12.888884 Anserini +test2815 Q0 2148882 4 12.396362 Anserini +test2815 Q0 20260645 5 12.337401 Anserini +test2815 Q0 14792227 6 12.246726 Anserini +test2815 Q0 16255526 7 12.165632 Anserini +test2815 Q0 16255527 8 12.085517 Anserini +test2815 Q0 2355712 9 12.069802 Anserini +test2815 Q0 16159492 10 11.748618 Anserini +test2815 Q0 14349495 11 11.560728 Anserini +test2815 Q0 8475863 12 11.501625 Anserini +test2815 Q0 11423237 13 11.491612 Anserini +test2815 Q0 2148878 14 11.438963 Anserini +test2815 Q0 18090109 15 11.314897 Anserini +test2815 Q0 15554688 16 11.268148 Anserini +test2815 Q0 18836703 17 11.253499 Anserini +test2815 Q0 16623067 18 11.245801 Anserini +test2815 Q0 9767437 19 11.212269 Anserini +test2815 Q0 11924640 20 11.163864 Anserini +test2815 Q0 11601564 21 11.129856 Anserini +test2815 Q0 10076197 22 11.118485 Anserini +test2815 Q0 5524166 23 11.051292 Anserini +test2815 Q0 10270629 24 11.049912 Anserini +test2815 Q0 1461699 25 11.033589 Anserini +test2815 Q0 11168487 26 11.013823 Anserini +test2815 Q0 5534313 27 10.977127 Anserini +test2815 Q0 3835423 28 10.964396 Anserini +test2815 Q0 207466 29 10.949654 Anserini +test2815 Q0 16903175 30 10.949425 Anserini +test2816 Q0 20603444 1 21.275839 Anserini +test2816 Q0 785916 2 21.172056 Anserini +test2816 Q0 10009691 3 21.057178 Anserini +test2816 Q0 17956102 4 21.013941 Anserini +test2816 Q0 9401081 5 20.903763 Anserini +test2816 Q0 8398605 6 20.797361 Anserini +test2816 Q0 20431925 7 20.786665 Anserini +test2816 Q0 5074932 8 20.665796 Anserini +test2816 Q0 10621472 9 20.660946 Anserini +test2816 Q0 5074929 10 20.640741 Anserini +test2816 Q0 4788974 11 20.522657 Anserini +test2816 Q0 6383266 12 20.516869 Anserini +test2816 Q0 12421173 13 20.490126 Anserini +test2816 Q0 17274422 14 20.488569 Anserini +test2816 Q0 7407157 15 20.465496 Anserini +test2816 Q0 17956109 16 20.436626 Anserini +test2816 Q0 785799 17 20.378738 Anserini +test2816 Q0 3914110 18 20.326748 Anserini +test2816 Q0 9053223 19 20.325245 Anserini +test2816 Q0 12421174 20 20.321077 Anserini +test2816 Q0 9980492 21 20.320650 Anserini +test2816 Q0 7606724 22 20.320650 Anserini +test2816 Q0 7606725 23 20.320650 Anserini +test2816 Q0 13331362 24 20.291412 Anserini +test2816 Q0 6383264 25 20.285889 Anserini +test2816 Q0 8522151 26 20.152569 Anserini +test2816 Q0 8522154 27 20.152569 Anserini +test2816 Q0 7407165 28 20.147001 Anserini +test2816 Q0 4788979 29 20.131393 Anserini +test2816 Q0 6845498 30 20.103771 Anserini +test2817 Q0 10878257 1 17.551317 Anserini +test2817 Q0 10878256 2 16.621239 Anserini +test2817 Q0 9630563 3 15.145084 Anserini +test2817 Q0 9577254 4 15.138655 Anserini +test2817 Q0 13181608 5 14.928176 Anserini +test2817 Q0 2663078 6 14.644447 Anserini +test2817 Q0 9839503 7 14.461948 Anserini +test2817 Q0 12101461 8 14.351406 Anserini +test2817 Q0 18234905 9 13.885467 Anserini +test2817 Q0 13061117 10 13.848430 Anserini +test2817 Q0 5147648 11 13.837076 Anserini +test2817 Q0 17506379 12 13.836598 Anserini +test2817 Q0 8416557 13 13.609526 Anserini +test2817 Q0 13110038 14 13.588707 Anserini +test2817 Q0 18325665 15 13.384508 Anserini +test2817 Q0 19583018 16 13.365346 Anserini +test2817 Q0 9630566 17 13.274200 Anserini +test2817 Q0 652770 18 13.096074 Anserini +test2817 Q0 15918752 19 13.020990 Anserini +test2817 Q0 19238475 20 13.019822 Anserini +test2817 Q0 10363895 21 12.937409 Anserini +test2817 Q0 14433168 22 12.821581 Anserini +test2817 Q0 17820448 23 12.763229 Anserini +test2817 Q0 15404984 24 12.705356 Anserini +test2817 Q0 2808798 25 12.700493 Anserini +test2817 Q0 15677557 26 12.561931 Anserini +test2817 Q0 12756857 27 12.544264 Anserini +test2817 Q0 1923135 28 12.478333 Anserini +test2817 Q0 6967826 29 12.405130 Anserini +test2817 Q0 2706191 30 12.404692 Anserini +test2818 Q0 15344255 1 26.789764 Anserini +test2818 Q0 11131827 2 25.267269 Anserini +test2818 Q0 3510590 3 24.811012 Anserini +test2818 Q0 11131844 4 24.659000 Anserini +test2818 Q0 15344304 5 24.585718 Anserini +test2818 Q0 2833037 6 24.362320 Anserini +test2818 Q0 2833024 7 24.247490 Anserini +test2818 Q0 15344292 8 24.181494 Anserini +test2818 Q0 11131846 9 22.847372 Anserini +test2818 Q0 15344244 10 22.513569 Anserini +test2818 Q0 11131826 11 22.503515 Anserini +test2818 Q0 5341310 12 22.125668 Anserini +test2818 Q0 2833039 13 22.013859 Anserini +test2818 Q0 2833196 14 21.798471 Anserini +test2818 Q0 11131852 15 21.694046 Anserini +test2818 Q0 19929697 16 21.556543 Anserini +test2818 Q0 5341309 17 21.427540 Anserini +test2818 Q0 15344302 18 21.401176 Anserini +test2818 Q0 10885400 19 21.299320 Anserini +test2818 Q0 15344301 20 21.084644 Anserini +test2818 Q0 15344245 21 20.975756 Anserini +test2818 Q0 2833137 22 20.871111 Anserini +test2818 Q0 10885416 23 20.819908 Anserini +test2818 Q0 5213951 24 20.669891 Anserini +test2818 Q0 19929702 25 20.669891 Anserini +test2818 Q0 19929698 26 20.494286 Anserini +test2818 Q0 2833040 27 20.382780 Anserini +test2818 Q0 2833183 28 20.302185 Anserini +test2818 Q0 15344295 29 20.000799 Anserini +test2818 Q0 5341311 30 19.975008 Anserini +test2819 Q0 15691527 1 13.068529 Anserini +test2819 Q0 20365425 2 12.443198 Anserini +test2819 Q0 6551013 3 12.116941 Anserini +test2819 Q0 14572877 4 12.018599 Anserini +test2819 Q0 20365424 5 11.973278 Anserini +test2819 Q0 13590716 6 11.410614 Anserini +test2819 Q0 4560529 7 11.182496 Anserini +test2819 Q0 18100507 8 10.889688 Anserini +test2819 Q0 14572977 9 10.544909 Anserini +test2819 Q0 16559295 10 10.469829 Anserini +test2819 Q0 14517925 11 10.413080 Anserini +test2819 Q0 13184491 12 10.392463 Anserini +test2819 Q0 16862067 13 10.261115 Anserini +test2819 Q0 11754689 14 10.244612 Anserini +test2819 Q0 5290919 15 10.175400 Anserini +test2819 Q0 3484967 16 10.169058 Anserini +test2819 Q0 3530972 17 10.154875 Anserini +test2819 Q0 3301472 18 10.147560 Anserini +test2819 Q0 1622592 19 10.099398 Anserini +test2819 Q0 17439749 20 10.088982 Anserini +test2819 Q0 3030168 21 10.084425 Anserini +test2819 Q0 3030170 22 10.084425 Anserini +test2819 Q0 18137890 23 10.075390 Anserini +test2819 Q0 13590728 24 10.038665 Anserini +test2819 Q0 19128158 25 10.037607 Anserini +test2819 Q0 14807681 26 10.022231 Anserini +test2819 Q0 17307186 27 10.007424 Anserini +test2819 Q0 19734188 28 10.001634 Anserini +test2819 Q0 11343706 29 9.962596 Anserini +test2819 Q0 13590717 30 9.906458 Anserini +test282 Q0 4620587 1 14.293678 Anserini +test282 Q0 19161923 2 13.772228 Anserini +test282 Q0 14292565 3 13.206150 Anserini +test282 Q0 8947567 4 13.067156 Anserini +test282 Q0 12640002 5 12.968443 Anserini +test282 Q0 7351272 6 12.940570 Anserini +test282 Q0 19590315 7 12.899467 Anserini +test282 Q0 16600402 8 12.839846 Anserini +test282 Q0 14326597 9 12.825484 Anserini +test282 Q0 16869589 10 12.824541 Anserini +test282 Q0 14648687 11 12.776337 Anserini +test282 Q0 13134789 12 12.751613 Anserini +test282 Q0 1859131 13 12.671820 Anserini +test282 Q0 7351274 14 12.642305 Anserini +test282 Q0 13921028 15 12.574227 Anserini +test282 Q0 13134791 16 12.547763 Anserini +test282 Q0 8759317 17 12.535246 Anserini +test282 Q0 14326598 18 12.408226 Anserini +test282 Q0 14030638 19 12.263231 Anserini +test282 Q0 20254211 20 12.245045 Anserini +test282 Q0 4843007 21 12.192261 Anserini +test282 Q0 185577 22 12.179774 Anserini +test282 Q0 458955 23 12.128730 Anserini +test282 Q0 15624251 24 12.128730 Anserini +test282 Q0 6478392 25 12.066258 Anserini +test282 Q0 14048427 26 12.060028 Anserini +test282 Q0 14048370 27 12.039322 Anserini +test282 Q0 4209834 28 12.016994 Anserini +test282 Q0 14133180 29 12.001154 Anserini +test282 Q0 13283813 30 11.976295 Anserini +test2820 Q0 561817 1 14.366667 Anserini +test2820 Q0 17734393 2 13.165249 Anserini +test2820 Q0 12328968 3 12.591110 Anserini +test2820 Q0 6150401 4 12.499569 Anserini +test2820 Q0 9760444 5 12.311548 Anserini +test2820 Q0 2023707 6 12.055742 Anserini +test2820 Q0 13399269 7 11.951765 Anserini +test2820 Q0 3049029 8 11.862669 Anserini +test2820 Q0 17734388 9 11.773088 Anserini +test2820 Q0 6514422 10 11.693440 Anserini +test2820 Q0 2630450 11 11.624749 Anserini +test2820 Q0 14783947 12 11.610318 Anserini +test2820 Q0 19760927 13 11.484696 Anserini +test2820 Q0 763731 14 11.435828 Anserini +test2820 Q0 5352 15 11.229603 Anserini +test2820 Q0 6740018 16 11.104530 Anserini +test2820 Q0 8361 17 10.947876 Anserini +test2820 Q0 6150403 18 10.881405 Anserini +test2820 Q0 6561814 19 10.877808 Anserini +test2820 Q0 20111768 20 10.787188 Anserini +test2820 Q0 154856 21 10.778815 Anserini +test2820 Q0 16682285 22 10.741482 Anserini +test2820 Q0 13252532 23 10.733637 Anserini +test2820 Q0 3049024 24 10.693085 Anserini +test2820 Q0 11598795 25 10.689799 Anserini +test2820 Q0 8405218 26 10.681007 Anserini +test2820 Q0 7749798 27 10.657316 Anserini +test2820 Q0 1018276 28 10.625258 Anserini +test2820 Q0 7896660 29 10.598774 Anserini +test2820 Q0 6300941 30 10.439397 Anserini +test2821 Q0 3303714 1 12.704955 Anserini +test2821 Q0 4780532 2 12.275691 Anserini +test2821 Q0 19178062 3 12.229427 Anserini +test2821 Q0 3303410 4 12.179673 Anserini +test2821 Q0 10914094 5 11.978455 Anserini +test2821 Q0 10914086 6 11.771924 Anserini +test2821 Q0 11836979 7 11.658153 Anserini +test2821 Q0 3273394 8 11.579815 Anserini +test2821 Q0 998632 9 11.540121 Anserini +test2821 Q0 3273409 10 11.494250 Anserini +test2821 Q0 3811948 11 11.482590 Anserini +test2821 Q0 5389523 12 11.457265 Anserini +test2821 Q0 3811947 13 11.441444 Anserini +test2821 Q0 3811949 14 11.441444 Anserini +test2821 Q0 9212902 15 11.415602 Anserini +test2821 Q0 12843295 16 11.391351 Anserini +test2821 Q0 1626381 17 11.352815 Anserini +test2821 Q0 4780531 18 11.334541 Anserini +test2821 Q0 9603374 19 11.309122 Anserini +test2821 Q0 11519223 20 11.279206 Anserini +test2821 Q0 6054124 21 11.253708 Anserini +test2821 Q0 11519226 22 11.231939 Anserini +test2821 Q0 998624 23 11.203635 Anserini +test2821 Q0 18235700 24 11.086203 Anserini +test2821 Q0 1626387 25 11.079506 Anserini +test2821 Q0 3551088 26 11.052455 Anserini +test2821 Q0 4149208 27 11.040325 Anserini +test2821 Q0 9985761 28 11.031710 Anserini +test2821 Q0 4979491 29 11.031710 Anserini +test2821 Q0 6054125 30 11.027230 Anserini +test2822 Q0 6815413 1 17.512136 Anserini +test2822 Q0 17838434 2 17.336851 Anserini +test2822 Q0 17844572 3 17.336851 Anserini +test2822 Q0 16413045 4 17.298405 Anserini +test2822 Q0 17849271 5 17.243401 Anserini +test2822 Q0 6815408 6 17.134718 Anserini +test2822 Q0 16315129 7 16.930302 Anserini +test2822 Q0 17910768 8 16.686098 Anserini +test2822 Q0 16875531 9 16.622099 Anserini +test2822 Q0 17983191 10 16.598108 Anserini +test2822 Q0 15619999 11 16.576519 Anserini +test2822 Q0 18461284 12 16.526617 Anserini +test2822 Q0 18015785 13 16.519060 Anserini +test2822 Q0 17716321 14 16.501749 Anserini +test2822 Q0 17854210 15 16.489401 Anserini +test2822 Q0 16264646 16 16.417778 Anserini +test2822 Q0 18015783 17 16.314102 Anserini +test2822 Q0 17996076 18 16.312122 Anserini +test2822 Q0 18040609 19 16.194931 Anserini +test2822 Q0 17976641 20 16.184574 Anserini +test2822 Q0 18524796 21 16.135513 Anserini +test2822 Q0 18449024 22 16.110191 Anserini +test2822 Q0 15922281 23 16.110191 Anserini +test2822 Q0 19273926 24 16.090302 Anserini +test2822 Q0 18015782 25 16.079636 Anserini +test2822 Q0 15053435 26 16.079636 Anserini +test2822 Q0 16203865 27 16.038456 Anserini +test2822 Q0 17838435 28 16.038456 Anserini +test2822 Q0 18449630 29 16.019381 Anserini +test2822 Q0 17830706 30 15.986958 Anserini +test2823 Q0 17668366 1 20.180643 Anserini +test2823 Q0 17668344 2 20.175190 Anserini +test2823 Q0 17668323 3 19.567659 Anserini +test2823 Q0 17668325 4 18.750755 Anserini +test2823 Q0 17668358 5 18.591322 Anserini +test2823 Q0 17668364 6 18.508797 Anserini +test2823 Q0 13447558 7 18.430914 Anserini +test2823 Q0 17668330 8 18.271719 Anserini +test2823 Q0 17668348 9 17.677549 Anserini +test2823 Q0 17668354 10 17.665209 Anserini +test2823 Q0 20021552 11 17.626558 Anserini +test2823 Q0 17668326 12 17.543369 Anserini +test2823 Q0 13447575 13 17.404440 Anserini +test2823 Q0 17668361 14 17.404440 Anserini +test2823 Q0 17668356 15 17.400509 Anserini +test2823 Q0 17668362 16 17.286768 Anserini +test2823 Q0 17668339 17 17.256031 Anserini +test2823 Q0 17668335 18 16.872688 Anserini +test2823 Q0 20021555 19 16.848938 Anserini +test2823 Q0 17668360 20 16.802771 Anserini +test2823 Q0 17668340 21 16.719593 Anserini +test2823 Q0 1857429 22 16.505077 Anserini +test2823 Q0 5950212 23 16.505077 Anserini +test2823 Q0 20021574 24 16.472202 Anserini +test2823 Q0 12022766 25 16.435051 Anserini +test2823 Q0 17668350 26 16.215216 Anserini +test2823 Q0 17668341 27 16.133024 Anserini +test2823 Q0 17668345 28 16.086153 Anserini +test2823 Q0 17668365 29 16.086153 Anserini +test2823 Q0 17668346 30 15.959214 Anserini +test2824 Q0 20520147 1 15.448112 Anserini +test2824 Q0 20562868 2 14.279704 Anserini +test2824 Q0 20520133 3 13.955349 Anserini +test2824 Q0 20520124 4 13.905252 Anserini +test2824 Q0 20520092 5 13.746903 Anserini +test2824 Q0 20520141 6 13.714963 Anserini +test2824 Q0 20520142 7 13.520226 Anserini +test2824 Q0 13359778 8 13.275630 Anserini +test2824 Q0 20520121 9 13.221956 Anserini +test2824 Q0 20520118 10 13.119965 Anserini +test2824 Q0 3417074 11 13.108472 Anserini +test2824 Q0 20520125 12 13.055631 Anserini +test2824 Q0 11600143 13 12.899305 Anserini +test2824 Q0 18761609 14 12.819479 Anserini +test2824 Q0 20520139 15 12.800575 Anserini +test2824 Q0 17803087 16 12.605682 Anserini +test2824 Q0 20520087 17 12.487452 Anserini +test2824 Q0 20520131 18 12.147104 Anserini +test2824 Q0 17803088 19 12.101876 Anserini +test2824 Q0 20520154 20 12.032794 Anserini +test2824 Q0 20520109 21 11.903789 Anserini +test2824 Q0 18001121 22 11.870704 Anserini +test2824 Q0 20693748 23 11.811229 Anserini +test2824 Q0 16308396 24 11.807070 Anserini +test2824 Q0 20520127 25 11.750384 Anserini +test2824 Q0 20520114 26 11.723318 Anserini +test2824 Q0 20520089 27 11.650274 Anserini +test2824 Q0 9966366 28 11.630479 Anserini +test2824 Q0 16563933 29 11.629174 Anserini +test2824 Q0 3937665 30 11.604602 Anserini +test2825 Q0 17133743 1 11.782219 Anserini +test2825 Q0 5920064 2 11.782219 Anserini +test2825 Q0 20809070 3 11.218915 Anserini +test2825 Q0 1382094 4 11.025801 Anserini +test2825 Q0 9366949 5 10.930363 Anserini +test2825 Q0 12344501 6 10.875865 Anserini +test2825 Q0 6866761 7 10.618586 Anserini +test2825 Q0 19654210 8 10.547462 Anserini +test2825 Q0 12344503 9 10.523520 Anserini +test2825 Q0 12344500 10 10.523520 Anserini +test2825 Q0 19892425 11 10.523339 Anserini +test2825 Q0 20478797 12 10.485652 Anserini +test2825 Q0 18540353 13 10.479424 Anserini +test2825 Q0 1314276 14 10.388589 Anserini +test2825 Q0 16618689 15 10.271542 Anserini +test2825 Q0 6648755 16 10.228913 Anserini +test2825 Q0 20516920 17 10.202511 Anserini +test2825 Q0 6227848 18 10.188549 Anserini +test2825 Q0 20398101 19 10.156557 Anserini +test2825 Q0 1477628 20 10.146795 Anserini +test2825 Q0 12403030 21 10.146795 Anserini +test2825 Q0 3951626 22 10.102608 Anserini +test2825 Q0 5523691 23 10.061280 Anserini +test2825 Q0 3591031 24 10.046351 Anserini +test2825 Q0 5118917 25 10.037451 Anserini +test2825 Q0 3730066 26 10.037277 Anserini +test2825 Q0 6740785 27 10.037277 Anserini +test2825 Q0 8042084 28 9.956787 Anserini +test2825 Q0 15600687 29 9.954315 Anserini +test2825 Q0 16916311 30 9.953599 Anserini +test2826 Q0 9668230 1 18.928173 Anserini +test2826 Q0 3705587 2 18.760303 Anserini +test2826 Q0 9013117 3 18.634333 Anserini +test2826 Q0 9668300 4 18.152514 Anserini +test2826 Q0 2410913 5 17.686871 Anserini +test2826 Q0 19661108 6 17.504330 Anserini +test2826 Q0 9668237 7 16.822565 Anserini +test2826 Q0 8793725 8 16.218912 Anserini +test2826 Q0 8793733 9 16.218912 Anserini +test2826 Q0 16685690 10 16.105345 Anserini +test2826 Q0 9668234 11 16.075489 Anserini +test2826 Q0 10676535 12 15.974311 Anserini +test2826 Q0 16943787 13 15.863458 Anserini +test2826 Q0 9093991 14 15.802064 Anserini +test2826 Q0 15593932 15 15.725933 Anserini +test2826 Q0 11198722 16 15.718704 Anserini +test2826 Q0 9668258 17 15.709968 Anserini +test2826 Q0 18668076 18 15.672164 Anserini +test2826 Q0 11793687 19 15.616021 Anserini +test2826 Q0 13717856 20 15.352883 Anserini +test2826 Q0 15278424 21 15.314580 Anserini +test2826 Q0 10676563 22 15.248954 Anserini +test2826 Q0 15278456 23 15.218974 Anserini +test2826 Q0 11344106 24 15.062462 Anserini +test2826 Q0 16322323 25 15.012968 Anserini +test2826 Q0 10337460 26 15.012968 Anserini +test2826 Q0 2410901 27 14.987392 Anserini +test2826 Q0 11255944 28 14.894194 Anserini +test2826 Q0 1903748 29 14.848354 Anserini +test2826 Q0 423579 30 14.825560 Anserini +test2827 Q0 9931790 1 12.181842 Anserini +test2827 Q0 13141737 2 10.423416 Anserini +test2827 Q0 13141739 3 10.423416 Anserini +test2827 Q0 16928 4 10.423416 Anserini +test2827 Q0 2596630 5 10.229860 Anserini +test2827 Q0 2596609 6 9.540158 Anserini +test2827 Q0 12307970 7 9.521303 Anserini +test2827 Q0 7574700 8 9.428993 Anserini +test2827 Q0 1278632 9 9.284748 Anserini +test2827 Q0 12074753 10 9.219814 Anserini +test2827 Q0 12074749 11 9.219814 Anserini +test2827 Q0 13745926 12 9.183748 Anserini +test2827 Q0 14368344 13 9.108637 Anserini +test2827 Q0 463956 14 9.104755 Anserini +test2827 Q0 11705847 15 9.092635 Anserini +test2827 Q0 13297404 16 9.073681 Anserini +test2827 Q0 10330751 17 9.030352 Anserini +test2827 Q0 4629610 18 9.029166 Anserini +test2827 Q0 7675653 19 9.027218 Anserini +test2827 Q0 4740936 20 8.977684 Anserini +test2827 Q0 2779210 21 8.878074 Anserini +test2827 Q0 4572110 22 8.753830 Anserini +test2827 Q0 63870 23 8.710198 Anserini +test2827 Q0 4570330 24 8.710198 Anserini +test2827 Q0 16179087 25 8.710198 Anserini +test2827 Q0 4572104 26 8.685500 Anserini +test2827 Q0 6748933 27 8.685500 Anserini +test2827 Q0 8554119 28 8.618270 Anserini +test2827 Q0 5078353 29 8.574155 Anserini +test2827 Q0 156789 30 8.546163 Anserini +test2828 Q0 7492994 1 12.357716 Anserini +test2828 Q0 7492995 2 12.308340 Anserini +test2828 Q0 7064091 3 11.889581 Anserini +test2828 Q0 16223287 4 11.807156 Anserini +test2828 Q0 3216447 5 11.794112 Anserini +test2828 Q0 7638010 6 11.715574 Anserini +test2828 Q0 3078469 7 11.640627 Anserini +test2828 Q0 1068671 8 11.616175 Anserini +test2828 Q0 20597476 9 11.597231 Anserini +test2828 Q0 1770347 10 11.426600 Anserini +test2828 Q0 1427454 11 11.315913 Anserini +test2828 Q0 51190 12 11.280303 Anserini +test2828 Q0 6502141 13 11.231180 Anserini +test2828 Q0 8286352 14 11.214514 Anserini +test2828 Q0 18243647 15 11.138916 Anserini +test2828 Q0 8401027 16 11.070377 Anserini +test2828 Q0 6204035 17 10.960945 Anserini +test2828 Q0 451658 18 10.852335 Anserini +test2828 Q0 6204163 19 10.814577 Anserini +test2828 Q0 8401078 20 10.814577 Anserini +test2828 Q0 8400992 21 10.763771 Anserini +test2828 Q0 18299737 22 10.682384 Anserini +test2828 Q0 2094137 23 10.672937 Anserini +test2828 Q0 8560594 24 10.649183 Anserini +test2828 Q0 8079366 25 10.649183 Anserini +test2828 Q0 7586670 26 10.649183 Anserini +test2828 Q0 17050916 27 10.620158 Anserini +test2828 Q0 8342418 28 10.603129 Anserini +test2828 Q0 5839491 29 10.558389 Anserini +test2828 Q0 2820081 30 10.541457 Anserini +test2829 Q0 2893510 1 16.839294 Anserini +test2829 Q0 2893509 2 15.087144 Anserini +test2829 Q0 11785589 3 14.927682 Anserini +test2829 Q0 2893518 4 14.766432 Anserini +test2829 Q0 14478610 5 14.308007 Anserini +test2829 Q0 2893515 6 13.677630 Anserini +test2829 Q0 2893517 7 13.517811 Anserini +test2829 Q0 17204181 8 13.230077 Anserini +test2829 Q0 7882778 9 12.972642 Anserini +test2829 Q0 2893513 10 12.887674 Anserini +test2829 Q0 2893511 11 12.693636 Anserini +test2829 Q0 15912408 12 12.581918 Anserini +test2829 Q0 5720549 13 12.422951 Anserini +test2829 Q0 2827315 14 12.414320 Anserini +test2829 Q0 10213742 15 12.304460 Anserini +test2829 Q0 10213755 16 12.304460 Anserini +test2829 Q0 10976352 17 12.252267 Anserini +test2829 Q0 10976354 18 12.252267 Anserini +test2829 Q0 8487377 19 12.177485 Anserini +test2829 Q0 10847217 20 12.177485 Anserini +test2829 Q0 14374534 21 12.160907 Anserini +test2829 Q0 2738323 22 12.126966 Anserini +test2829 Q0 9492040 23 12.077065 Anserini +test2829 Q0 20357593 24 12.024635 Anserini +test2829 Q0 9492044 25 12.013876 Anserini +test2829 Q0 4378263 26 11.915738 Anserini +test2829 Q0 5230350 27 11.867383 Anserini +test2829 Q0 11216943 28 11.843991 Anserini +test2829 Q0 12712235 29 11.804772 Anserini +test2829 Q0 15724708 30 11.762606 Anserini +test283 Q0 4985013 1 14.119746 Anserini +test283 Q0 13078742 2 14.078705 Anserini +test283 Q0 4985019 3 13.437871 Anserini +test283 Q0 20995336 4 12.905245 Anserini +test283 Q0 20995338 5 12.639862 Anserini +test283 Q0 4985015 6 12.336358 Anserini +test283 Q0 13078744 7 12.108789 Anserini +test283 Q0 4313194 8 11.782329 Anserini +test283 Q0 17941071 9 11.595068 Anserini +test283 Q0 13078745 10 11.417883 Anserini +test283 Q0 7563291 11 11.300372 Anserini +test283 Q0 8411807 12 11.255647 Anserini +test283 Q0 4985018 13 10.759142 Anserini +test283 Q0 20296072 14 10.632266 Anserini +test283 Q0 8411808 15 10.609295 Anserini +test283 Q0 16430938 16 10.493731 Anserini +test283 Q0 4985014 17 10.266595 Anserini +test283 Q0 16133435 18 10.226333 Anserini +test283 Q0 16811457 19 10.177058 Anserini +test283 Q0 9334518 20 10.140999 Anserini +test283 Q0 12554822 21 10.105878 Anserini +test283 Q0 4985017 22 10.040359 Anserini +test283 Q0 4315962 23 9.957108 Anserini +test283 Q0 4315950 24 9.957108 Anserini +test283 Q0 20274014 25 9.943344 Anserini +test283 Q0 9334517 26 9.916113 Anserini +test283 Q0 8411810 27 9.743840 Anserini +test283 Q0 11940281 28 9.713093 Anserini +test283 Q0 11459376 29 9.646100 Anserini +test283 Q0 13078743 30 9.646100 Anserini +test2830 Q0 12425105 1 14.467468 Anserini +test2830 Q0 12993876 2 13.704606 Anserini +test2830 Q0 6939318 3 13.657331 Anserini +test2830 Q0 725635 4 13.334893 Anserini +test2830 Q0 725625 5 13.334893 Anserini +test2830 Q0 5755241 6 13.188277 Anserini +test2830 Q0 14049454 7 12.854061 Anserini +test2830 Q0 644977 8 12.684464 Anserini +test2830 Q0 12893659 9 12.634727 Anserini +test2830 Q0 19038501 10 12.545470 Anserini +test2830 Q0 1637147 11 12.518323 Anserini +test2830 Q0 4293247 12 12.478588 Anserini +test2830 Q0 16704474 13 12.466445 Anserini +test2830 Q0 17469102 14 12.435995 Anserini +test2830 Q0 17810835 15 12.400908 Anserini +test2830 Q0 5755234 16 12.295603 Anserini +test2830 Q0 6373150 17 12.293649 Anserini +test2830 Q0 17469103 18 12.279638 Anserini +test2830 Q0 2042204 19 12.267492 Anserini +test2830 Q0 19326721 20 12.197199 Anserini +test2830 Q0 821142 21 12.175162 Anserini +test2830 Q0 16880933 22 12.175162 Anserini +test2830 Q0 700830 23 11.983531 Anserini +test2830 Q0 3742759 24 11.982456 Anserini +test2830 Q0 13097666 25 11.956357 Anserini +test2830 Q0 1820176 26 11.886258 Anserini +test2830 Q0 20420440 27 11.798702 Anserini +test2830 Q0 7247314 28 11.721866 Anserini +test2830 Q0 5136306 29 11.654930 Anserini +test2830 Q0 7247302 30 11.616997 Anserini +test2831 Q0 11657694 1 10.612211 Anserini +test2831 Q0 11657687 2 10.612211 Anserini +test2831 Q0 19128254 3 10.528421 Anserini +test2831 Q0 9601419 4 10.396201 Anserini +test2831 Q0 20046253 5 10.276877 Anserini +test2831 Q0 15212468 6 10.164591 Anserini +test2831 Q0 15212467 7 10.107655 Anserini +test2831 Q0 19128247 8 9.889229 Anserini +test2831 Q0 16532632 9 9.863359 Anserini +test2831 Q0 1577761 10 9.844352 Anserini +test2831 Q0 13179877 11 9.781289 Anserini +test2831 Q0 13761957 12 9.774132 Anserini +test2831 Q0 12233131 13 9.712385 Anserini +test2831 Q0 9269869 14 9.679629 Anserini +test2831 Q0 9601415 15 9.588596 Anserini +test2831 Q0 9442089 16 9.569356 Anserini +test2831 Q0 15380909 17 9.515303 Anserini +test2831 Q0 2418775 18 9.507951 Anserini +test2831 Q0 16890819 19 9.461246 Anserini +test2831 Q0 16890820 20 9.461246 Anserini +test2831 Q0 5129741 21 9.421692 Anserini +test2831 Q0 14547287 22 9.374893 Anserini +test2831 Q0 6902797 23 9.322511 Anserini +test2831 Q0 15599925 24 9.279288 Anserini +test2831 Q0 18077147 25 9.264617 Anserini +test2831 Q0 20279540 26 9.225393 Anserini +test2831 Q0 13761955 27 9.210224 Anserini +test2831 Q0 13502505 28 9.183527 Anserini +test2831 Q0 13180139 29 9.172626 Anserini +test2831 Q0 9601413 30 9.163229 Anserini +test2832 Q0 15659289 1 11.533011 Anserini +test2832 Q0 20584788 2 10.617075 Anserini +test2832 Q0 11720804 3 10.586732 Anserini +test2832 Q0 20705733 4 10.580722 Anserini +test2832 Q0 11977205 5 10.362651 Anserini +test2832 Q0 20257173 6 10.258281 Anserini +test2832 Q0 13379781 7 10.215269 Anserini +test2832 Q0 12988766 8 10.057642 Anserini +test2832 Q0 5541499 9 10.034883 Anserini +test2832 Q0 20584787 10 10.028799 Anserini +test2832 Q0 15715600 11 9.960791 Anserini +test2832 Q0 17735757 12 9.898186 Anserini +test2832 Q0 17835667 13 9.779097 Anserini +test2832 Q0 20348390 14 9.732047 Anserini +test2832 Q0 11849682 15 9.623764 Anserini +test2832 Q0 20506488 16 9.620253 Anserini +test2832 Q0 16954438 17 9.618779 Anserini +test2832 Q0 12489071 18 9.611339 Anserini +test2832 Q0 11720797 19 9.589429 Anserini +test2832 Q0 20705734 20 9.567932 Anserini +test2832 Q0 11849609 21 9.562729 Anserini +test2832 Q0 15559890 22 9.543971 Anserini +test2832 Q0 17195532 23 9.537830 Anserini +test2832 Q0 18086563 24 9.537095 Anserini +test2832 Q0 11849680 25 9.526480 Anserini +test2832 Q0 2749022 26 9.523288 Anserini +test2832 Q0 15715601 27 9.517868 Anserini +test2832 Q0 19450912 28 9.495071 Anserini +test2832 Q0 13488972 29 9.430696 Anserini +test2832 Q0 19554996 30 9.427486 Anserini +test2833 Q0 13551819 1 10.321700 Anserini +test2833 Q0 14027420 2 10.096663 Anserini +test2833 Q0 4709529 3 9.875945 Anserini +test2833 Q0 3942108 4 9.866348 Anserini +test2833 Q0 3942115 5 9.827312 Anserini +test2833 Q0 13857282 6 9.741180 Anserini +test2833 Q0 191160 7 9.678600 Anserini +test2833 Q0 17796992 8 9.414482 Anserini +test2833 Q0 17796993 9 9.414482 Anserini +test2833 Q0 17542549 10 9.405320 Anserini +test2833 Q0 10216231 11 9.282034 Anserini +test2833 Q0 15602606 12 9.280977 Anserini +test2833 Q0 13268013 13 9.259356 Anserini +test2833 Q0 7882473 14 9.255865 Anserini +test2833 Q0 5805699 15 9.255865 Anserini +test2833 Q0 11461643 16 9.251847 Anserini +test2833 Q0 20342710 17 9.234159 Anserini +test2833 Q0 20346146 18 9.218719 Anserini +test2833 Q0 17205079 19 9.209116 Anserini +test2833 Q0 7637324 20 9.052268 Anserini +test2833 Q0 19087884 21 9.041060 Anserini +test2833 Q0 17000500 22 9.028581 Anserini +test2833 Q0 13446331 23 9.024884 Anserini +test2833 Q0 17931723 24 8.976260 Anserini +test2833 Q0 17931727 25 8.976260 Anserini +test2833 Q0 18924200 26 8.964906 Anserini +test2833 Q0 19490480 27 8.963799 Anserini +test2833 Q0 10909449 28 8.950448 Anserini +test2833 Q0 20612322 29 8.939985 Anserini +test2833 Q0 13524550 30 8.939598 Anserini +test2834 Q0 1961346 1 14.090631 Anserini +test2834 Q0 5973527 2 13.542839 Anserini +test2834 Q0 6416795 3 13.415836 Anserini +test2834 Q0 7997690 4 13.382235 Anserini +test2834 Q0 631731 5 13.342449 Anserini +test2834 Q0 14526255 6 13.226759 Anserini +test2834 Q0 14818279 7 13.110337 Anserini +test2834 Q0 19355998 8 13.053229 Anserini +test2834 Q0 5321374 9 12.825619 Anserini +test2834 Q0 1719314 10 12.813846 Anserini +test2834 Q0 14759958 11 12.520419 Anserini +test2834 Q0 16143945 12 12.472670 Anserini +test2834 Q0 18994105 13 12.407645 Anserini +test2834 Q0 7675321 14 12.325706 Anserini +test2834 Q0 4314188 15 12.287171 Anserini +test2834 Q0 17213561 16 12.263072 Anserini +test2834 Q0 7072572 17 12.246469 Anserini +test2834 Q0 9719265 18 12.206264 Anserini +test2834 Q0 7601402 19 12.085802 Anserini +test2834 Q0 16073264 20 12.031454 Anserini +test2834 Q0 7997691 21 12.005453 Anserini +test2834 Q0 8290281 22 12.000401 Anserini +test2834 Q0 1002105 23 11.965769 Anserini +test2834 Q0 19333269 24 11.951946 Anserini +test2834 Q0 9793139 25 11.951490 Anserini +test2834 Q0 4893495 26 11.949571 Anserini +test2834 Q0 20003324 27 11.945833 Anserini +test2834 Q0 15946637 28 11.939083 Anserini +test2834 Q0 4847159 29 11.916912 Anserini +test2834 Q0 1553315 30 11.909705 Anserini +test2835 Q0 20408638 1 10.064688 Anserini +test2835 Q0 2004137 2 9.725956 Anserini +test2835 Q0 18665614 3 9.660390 Anserini +test2835 Q0 16774476 4 9.517795 Anserini +test2835 Q0 15423276 5 9.458114 Anserini +test2835 Q0 7755241 6 9.455744 Anserini +test2835 Q0 19284947 7 9.282852 Anserini +test2835 Q0 13662717 8 9.269035 Anserini +test2835 Q0 476433 9 9.186441 Anserini +test2835 Q0 12325234 10 9.077541 Anserini +test2835 Q0 19283274 11 9.013893 Anserini +test2835 Q0 3159369 12 8.994718 Anserini +test2835 Q0 2467862 13 8.990717 Anserini +test2835 Q0 2507917 14 8.920695 Anserini +test2835 Q0 9116522 15 8.893236 Anserini +test2835 Q0 20409184 16 8.884212 Anserini +test2835 Q0 8322113 17 8.829564 Anserini +test2835 Q0 17138026 18 8.818976 Anserini +test2835 Q0 4825692 19 8.793272 Anserini +test2835 Q0 4728141 20 8.765219 Anserini +test2835 Q0 7828711 21 8.740262 Anserini +test2835 Q0 18840291 22 8.729083 Anserini +test2835 Q0 12795835 23 8.717908 Anserini +test2835 Q0 6123771 24 8.707805 Anserini +test2835 Q0 9433036 25 8.700275 Anserini +test2835 Q0 631266 26 8.674721 Anserini +test2835 Q0 15537239 27 8.650716 Anserini +test2835 Q0 15593869 28 8.637061 Anserini +test2835 Q0 19500843 29 8.637061 Anserini +test2835 Q0 10935827 30 8.632732 Anserini +test2836 Q0 19427667 1 16.895500 Anserini +test2836 Q0 20679646 2 16.349396 Anserini +test2836 Q0 17965794 3 16.269188 Anserini +test2836 Q0 11834344 4 16.249386 Anserini +test2836 Q0 9577700 5 16.232698 Anserini +test2836 Q0 20593658 6 16.171471 Anserini +test2836 Q0 19427668 7 15.955778 Anserini +test2836 Q0 20593660 8 15.951891 Anserini +test2836 Q0 20724913 9 15.822911 Anserini +test2836 Q0 19914420 10 15.781678 Anserini +test2836 Q0 21006155 11 15.703228 Anserini +test2836 Q0 18768022 12 15.685328 Anserini +test2836 Q0 8014580 13 15.572508 Anserini +test2836 Q0 20593662 14 15.530398 Anserini +test2836 Q0 15545401 15 15.517574 Anserini +test2836 Q0 15545407 16 15.517574 Anserini +test2836 Q0 20785372 17 15.463657 Anserini +test2836 Q0 14232917 18 15.462719 Anserini +test2836 Q0 15509773 19 15.452314 Anserini +test2836 Q0 18768020 20 15.367091 Anserini +test2836 Q0 21001051 21 15.272749 Anserini +test2836 Q0 18666636 22 15.265535 Anserini +test2836 Q0 20052389 23 15.173880 Anserini +test2836 Q0 11420197 24 15.156565 Anserini +test2836 Q0 11739700 25 15.106686 Anserini +test2836 Q0 11690087 26 15.047120 Anserini +test2836 Q0 20279034 27 15.031062 Anserini +test2836 Q0 20279036 28 15.031062 Anserini +test2836 Q0 18987370 29 15.029812 Anserini +test2836 Q0 20653735 30 15.028059 Anserini +test2837 Q0 9951364 1 14.720051 Anserini +test2837 Q0 9549199 2 14.326073 Anserini +test2837 Q0 18204424 3 13.927900 Anserini +test2837 Q0 13396338 4 13.894072 Anserini +test2837 Q0 1885707 5 13.855379 Anserini +test2837 Q0 3490341 6 13.817219 Anserini +test2837 Q0 441800 7 13.707691 Anserini +test2837 Q0 7636585 8 13.685987 Anserini +test2837 Q0 15390469 9 13.583832 Anserini +test2837 Q0 11105641 10 13.579808 Anserini +test2837 Q0 19781126 11 13.518379 Anserini +test2837 Q0 9549202 12 13.513927 Anserini +test2837 Q0 14697458 13 13.510674 Anserini +test2837 Q0 13396337 14 13.507809 Anserini +test2837 Q0 13536836 15 13.460073 Anserini +test2837 Q0 20482323 16 13.455812 Anserini +test2837 Q0 13536845 17 13.404283 Anserini +test2837 Q0 15297882 18 13.395402 Anserini +test2837 Q0 19038109 19 13.348277 Anserini +test2837 Q0 3526399 20 13.331763 Anserini +test2837 Q0 11591361 21 13.320434 Anserini +test2837 Q0 12885434 22 13.249393 Anserini +test2837 Q0 14697463 23 13.238501 Anserini +test2837 Q0 8276620 24 13.181400 Anserini +test2837 Q0 12746678 25 13.104572 Anserini +test2837 Q0 16185324 26 13.026439 Anserini +test2837 Q0 14906139 27 12.964227 Anserini +test2837 Q0 16310731 28 12.926237 Anserini +test2837 Q0 13396340 29 12.872602 Anserini +test2837 Q0 8560252 30 12.867053 Anserini +test2838 Q0 9755294 1 16.890043 Anserini +test2838 Q0 18668754 2 15.330854 Anserini +test2838 Q0 12531582 3 14.954594 Anserini +test2838 Q0 291387 4 14.861843 Anserini +test2838 Q0 1346791 5 14.784284 Anserini +test2838 Q0 3190067 6 14.442913 Anserini +test2838 Q0 4211239 7 14.345823 Anserini +test2838 Q0 294516 8 14.236063 Anserini +test2838 Q0 294517 9 14.223210 Anserini +test2838 Q0 291396 10 14.160271 Anserini +test2838 Q0 2741174 11 14.154310 Anserini +test2838 Q0 15279467 12 14.081820 Anserini +test2838 Q0 487338 13 14.023079 Anserini +test2838 Q0 3174595 14 13.853830 Anserini +test2838 Q0 16021340 15 13.806187 Anserini +test2838 Q0 19130856 16 13.728856 Anserini +test2838 Q0 1346802 17 13.691271 Anserini +test2838 Q0 14095042 18 13.679470 Anserini +test2838 Q0 544803 19 13.671340 Anserini +test2838 Q0 313187 20 13.666990 Anserini +test2838 Q0 291381 21 13.595476 Anserini +test2838 Q0 17975254 22 13.566860 Anserini +test2838 Q0 4172132 23 13.543488 Anserini +test2838 Q0 291386 24 13.507376 Anserini +test2838 Q0 5242774 25 13.503515 Anserini +test2838 Q0 291758 26 13.503515 Anserini +test2838 Q0 14095044 27 13.475084 Anserini +test2838 Q0 2219189 28 13.452183 Anserini +test2838 Q0 9755305 29 13.436177 Anserini +test2838 Q0 14448246 30 13.434161 Anserini +test2839 Q0 12845143 1 12.225522 Anserini +test2839 Q0 810480 2 12.213663 Anserini +test2839 Q0 6241266 3 12.122833 Anserini +test2839 Q0 16817778 4 12.066620 Anserini +test2839 Q0 8640465 5 11.958282 Anserini +test2839 Q0 9153405 6 11.804932 Anserini +test2839 Q0 13036912 7 11.439114 Anserini +test2839 Q0 2219642 8 11.434517 Anserini +test2839 Q0 11333730 9 11.374369 Anserini +test2839 Q0 20941240 10 11.350266 Anserini +test2839 Q0 11725757 11 11.312650 Anserini +test2839 Q0 7112013 12 11.147018 Anserini +test2839 Q0 15198074 13 11.063588 Anserini +test2839 Q0 2227470 14 11.032982 Anserini +test2839 Q0 10686181 15 10.914268 Anserini +test2839 Q0 2120711 16 10.895079 Anserini +test2839 Q0 20309544 17 10.832202 Anserini +test2839 Q0 839506 18 10.826215 Anserini +test2839 Q0 3737831 19 10.802849 Anserini +test2839 Q0 11725751 20 10.769288 Anserini +test2839 Q0 3083651 21 10.749992 Anserini +test2839 Q0 8542610 22 10.745239 Anserini +test2839 Q0 11766752 23 10.745239 Anserini +test2839 Q0 496078 24 10.735958 Anserini +test2839 Q0 12355289 25 10.727445 Anserini +test2839 Q0 9153407 26 10.726865 Anserini +test2839 Q0 5926924 27 10.706804 Anserini +test2839 Q0 15519529 28 10.685537 Anserini +test2839 Q0 4715402 29 10.684853 Anserini +test2839 Q0 17040503 30 10.679801 Anserini +test284 Q0 2609897 1 9.628236 Anserini +test284 Q0 5274102 2 9.302190 Anserini +test284 Q0 11683349 3 9.118410 Anserini +test284 Q0 6942801 4 9.036078 Anserini +test284 Q0 7278482 5 8.956358 Anserini +test284 Q0 3674582 6 8.952146 Anserini +test284 Q0 8320033 7 8.950545 Anserini +test284 Q0 5450830 8 8.947454 Anserini +test284 Q0 4936248 9 8.921524 Anserini +test284 Q0 3580681 10 8.880783 Anserini +test284 Q0 15944018 11 8.880643 Anserini +test284 Q0 13283113 12 8.763375 Anserini +test284 Q0 6952166 13 8.754520 Anserini +test284 Q0 4377553 14 8.752465 Anserini +test284 Q0 12899599 15 8.747429 Anserini +test284 Q0 6615292 16 8.745194 Anserini +test284 Q0 4364829 17 8.745194 Anserini +test284 Q0 6927447 18 8.701799 Anserini +test284 Q0 6428148 19 8.683315 Anserini +test284 Q0 3301103 20 8.683315 Anserini +test284 Q0 1358139 21 8.683064 Anserini +test284 Q0 9128757 22 8.666904 Anserini +test284 Q0 5835125 23 8.654097 Anserini +test284 Q0 4356479 24 8.631604 Anserini +test284 Q0 9195468 25 8.624932 Anserini +test284 Q0 12758102 26 8.599146 Anserini +test284 Q0 4704263 27 8.596584 Anserini +test284 Q0 9077700 28 8.556569 Anserini +test284 Q0 6387640 29 8.532827 Anserini +test284 Q0 9312519 30 8.531492 Anserini +test2840 Q0 20056175 1 12.087373 Anserini +test2840 Q0 9238401 2 10.758569 Anserini +test2840 Q0 18783689 3 10.627487 Anserini +test2840 Q0 11455630 4 10.579510 Anserini +test2840 Q0 19792371 5 10.562100 Anserini +test2840 Q0 12798730 6 10.356107 Anserini +test2840 Q0 10149959 7 10.346080 Anserini +test2840 Q0 20056170 8 10.328479 Anserini +test2840 Q0 15202302 9 10.281626 Anserini +test2840 Q0 20056184 10 10.225817 Anserini +test2840 Q0 13622599 11 10.220647 Anserini +test2840 Q0 12526736 12 10.211811 Anserini +test2840 Q0 19792376 13 10.140622 Anserini +test2840 Q0 3311260 14 10.130694 Anserini +test2840 Q0 19792370 15 10.120552 Anserini +test2840 Q0 5107898 16 9.955837 Anserini +test2840 Q0 20056174 17 9.940002 Anserini +test2840 Q0 19877186 18 9.928331 Anserini +test2840 Q0 21002678 19 9.902346 Anserini +test2840 Q0 8008047 20 9.835554 Anserini +test2840 Q0 5107907 21 9.812951 Anserini +test2840 Q0 19792374 22 9.772175 Anserini +test2840 Q0 20056166 23 9.761318 Anserini +test2840 Q0 18385725 24 9.761318 Anserini +test2840 Q0 19532593 25 9.723660 Anserini +test2840 Q0 15749775 26 9.717832 Anserini +test2840 Q0 1416780 27 9.697729 Anserini +test2840 Q0 7485170 28 9.685473 Anserini +test2840 Q0 6027523 29 9.678971 Anserini +test2840 Q0 20056189 30 9.674136 Anserini +test2841 Q0 11348374 1 18.012836 Anserini +test2841 Q0 11348368 2 18.012836 Anserini +test2841 Q0 17308077 3 15.439820 Anserini +test2841 Q0 17132416 4 12.894530 Anserini +test2841 Q0 16779039 5 12.729023 Anserini +test2841 Q0 10396776 6 12.663064 Anserini +test2841 Q0 18181647 7 12.653574 Anserini +test2841 Q0 18159209 8 12.412815 Anserini +test2841 Q0 18159211 9 12.328241 Anserini +test2841 Q0 16557333 10 12.195037 Anserini +test2841 Q0 2110484 11 12.029785 Anserini +test2841 Q0 18995574 12 11.919666 Anserini +test2841 Q0 1773582 13 11.907866 Anserini +test2841 Q0 20085144 14 11.896207 Anserini +test2841 Q0 17625340 15 11.861390 Anserini +test2841 Q0 18995573 16 11.845187 Anserini +test2841 Q0 18485865 17 11.797694 Anserini +test2841 Q0 17128861 18 11.751760 Anserini +test2841 Q0 13408952 19 11.702305 Anserini +test2841 Q0 12377274 20 11.683297 Anserini +test2841 Q0 18227047 21 11.669933 Anserini +test2841 Q0 13982296 22 11.649557 Anserini +test2841 Q0 20149733 23 11.631726 Anserini +test2841 Q0 6606505 24 11.562853 Anserini +test2841 Q0 19411234 25 11.544008 Anserini +test2841 Q0 13207092 26 11.508501 Anserini +test2841 Q0 2069564 27 11.504013 Anserini +test2841 Q0 12298502 28 11.500851 Anserini +test2841 Q0 6064023 29 11.473937 Anserini +test2841 Q0 14456527 30 11.464607 Anserini +test2842 Q0 5813601 1 34.759296 Anserini +test2842 Q0 8365443 2 34.098667 Anserini +test2842 Q0 9741127 3 32.794426 Anserini +test2842 Q0 11251389 4 32.301334 Anserini +test2842 Q0 5813602 5 32.065197 Anserini +test2842 Q0 138862 6 31.995327 Anserini +test2842 Q0 7549221 7 31.200047 Anserini +test2842 Q0 15571137 8 31.084299 Anserini +test2842 Q0 6269893 9 30.610874 Anserini +test2842 Q0 4493416 10 30.554306 Anserini +test2842 Q0 18645155 11 30.551857 Anserini +test2842 Q0 13805649 12 30.540075 Anserini +test2842 Q0 10758806 13 30.528830 Anserini +test2842 Q0 7240195 14 29.890623 Anserini +test2842 Q0 2836214 15 29.779686 Anserini +test2842 Q0 8365444 16 29.682783 Anserini +test2842 Q0 18645161 17 29.345947 Anserini +test2842 Q0 18645170 18 29.241951 Anserini +test2842 Q0 8365435 19 29.185106 Anserini +test2842 Q0 9741139 20 29.117264 Anserini +test2842 Q0 9475853 21 29.042076 Anserini +test2842 Q0 8365445 22 28.927931 Anserini +test2842 Q0 162578 23 28.882248 Anserini +test2842 Q0 5669127 24 28.735329 Anserini +test2842 Q0 2917961 25 28.488216 Anserini +test2842 Q0 9741136 26 28.449272 Anserini +test2842 Q0 7044518 27 28.192596 Anserini +test2842 Q0 1940480 28 28.020475 Anserini +test2842 Q0 10396594 29 28.019695 Anserini +test2842 Q0 9741123 30 27.634418 Anserini +test2843 Q0 11164769 1 12.132978 Anserini +test2843 Q0 11470239 2 11.315646 Anserini +test2843 Q0 3131037 3 11.021772 Anserini +test2843 Q0 3131029 4 10.964297 Anserini +test2843 Q0 6725865 5 10.699661 Anserini +test2843 Q0 5632287 6 10.689808 Anserini +test2843 Q0 11068710 7 10.615046 Anserini +test2843 Q0 14748381 8 10.562313 Anserini +test2843 Q0 3131032 9 10.511868 Anserini +test2843 Q0 13511217 10 10.491940 Anserini +test2843 Q0 20258921 11 10.446193 Anserini +test2843 Q0 11068708 12 10.334194 Anserini +test2843 Q0 13073649 13 10.310305 Anserini +test2843 Q0 3131042 14 10.216040 Anserini +test2843 Q0 3131041 15 10.095110 Anserini +test2843 Q0 10432272 16 10.069119 Anserini +test2843 Q0 18308921 17 10.063600 Anserini +test2843 Q0 11068744 18 10.045365 Anserini +test2843 Q0 3131031 19 10.045365 Anserini +test2843 Q0 3131057 20 10.045365 Anserini +test2843 Q0 8313736 21 10.034997 Anserini +test2843 Q0 10432266 22 10.022316 Anserini +test2843 Q0 10432274 23 10.022316 Anserini +test2843 Q0 5703289 24 10.022316 Anserini +test2843 Q0 1735753 25 9.978770 Anserini +test2843 Q0 2373319 26 9.919014 Anserini +test2843 Q0 8313734 27 9.912350 Anserini +test2843 Q0 5011692 28 9.813614 Anserini +test2843 Q0 3131054 29 9.796224 Anserini +test2843 Q0 3131033 30 9.781621 Anserini +test2844 Q0 3426332 1 14.432689 Anserini +test2844 Q0 15861419 2 13.862949 Anserini +test2844 Q0 1920462 3 13.845638 Anserini +test2844 Q0 18775794 4 13.649523 Anserini +test2844 Q0 1828897 5 13.250054 Anserini +test2844 Q0 2919305 6 13.137280 Anserini +test2844 Q0 830142 7 12.987934 Anserini +test2844 Q0 2902739 8 12.742393 Anserini +test2844 Q0 2881845 9 12.596832 Anserini +test2844 Q0 1815398 10 12.572614 Anserini +test2844 Q0 10885588 11 12.382623 Anserini +test2844 Q0 2919294 12 12.340267 Anserini +test2844 Q0 10190702 13 12.220632 Anserini +test2844 Q0 4952323 14 12.166500 Anserini +test2844 Q0 1806189 15 12.061399 Anserini +test2844 Q0 12192107 16 12.042801 Anserini +test2844 Q0 1815402 17 11.978831 Anserini +test2844 Q0 2919308 18 11.954494 Anserini +test2844 Q0 15639993 19 11.894943 Anserini +test2844 Q0 8661274 20 11.894300 Anserini +test2844 Q0 2881846 21 11.874290 Anserini +test2844 Q0 2919321 22 11.854897 Anserini +test2844 Q0 4328949 23 11.852517 Anserini +test2844 Q0 2919329 24 11.753821 Anserini +test2844 Q0 15861421 25 11.741955 Anserini +test2844 Q0 1828895 26 11.686058 Anserini +test2844 Q0 1815409 27 11.681703 Anserini +test2844 Q0 2919290 28 11.671898 Anserini +test2844 Q0 1842138 29 11.590841 Anserini +test2844 Q0 3804504 30 11.590841 Anserini +test2845 Q0 8811730 1 20.560047 Anserini +test2845 Q0 12137877 2 19.534885 Anserini +test2845 Q0 4995696 3 19.526649 Anserini +test2845 Q0 5822949 4 19.505331 Anserini +test2845 Q0 10162761 5 19.453991 Anserini +test2845 Q0 539174 6 19.392935 Anserini +test2845 Q0 539148 7 19.379471 Anserini +test2845 Q0 8811742 8 19.302807 Anserini +test2845 Q0 10162764 9 19.171139 Anserini +test2845 Q0 4995678 10 19.129852 Anserini +test2845 Q0 14368245 11 19.087023 Anserini +test2845 Q0 16908772 12 19.065189 Anserini +test2845 Q0 14368244 13 19.017839 Anserini +test2845 Q0 13140100 14 18.862097 Anserini +test2845 Q0 13140105 15 18.862097 Anserini +test2845 Q0 15207985 16 18.835056 Anserini +test2845 Q0 539175 17 18.713200 Anserini +test2845 Q0 12137879 18 18.582352 Anserini +test2845 Q0 539125 19 18.545790 Anserini +test2845 Q0 16908778 20 18.324429 Anserini +test2845 Q0 16207352 21 18.256403 Anserini +test2845 Q0 4995699 22 18.188885 Anserini +test2845 Q0 4995700 23 18.188885 Anserini +test2845 Q0 16908775 24 18.146654 Anserini +test2845 Q0 12539151 25 18.060389 Anserini +test2845 Q0 4711255 26 17.831665 Anserini +test2845 Q0 8811736 27 17.830074 Anserini +test2845 Q0 16228297 28 17.754623 Anserini +test2845 Q0 4995709 29 17.752966 Anserini +test2845 Q0 4995705 30 17.751671 Anserini +test2846 Q0 8811493 1 23.429661 Anserini +test2846 Q0 8811494 2 23.281353 Anserini +test2846 Q0 2032123 3 22.116404 Anserini +test2846 Q0 2032122 4 22.044525 Anserini +test2846 Q0 4700184 5 21.463926 Anserini +test2846 Q0 2032119 6 19.350109 Anserini +test2846 Q0 2032133 7 19.350109 Anserini +test2846 Q0 2032125 8 18.663481 Anserini +test2846 Q0 2032121 9 18.511242 Anserini +test2846 Q0 7768278 10 17.896593 Anserini +test2846 Q0 20583286 11 17.634190 Anserini +test2846 Q0 4700185 12 17.149555 Anserini +test2846 Q0 13360353 13 17.076576 Anserini +test2846 Q0 20583285 14 16.793991 Anserini +test2846 Q0 444739 15 16.636496 Anserini +test2846 Q0 2813747 16 16.599646 Anserini +test2846 Q0 8811486 17 16.511984 Anserini +test2846 Q0 8807821 18 16.165323 Anserini +test2846 Q0 8811484 19 16.155064 Anserini +test2846 Q0 9204785 20 16.129778 Anserini +test2846 Q0 8932124 21 16.073212 Anserini +test2846 Q0 9231391 22 16.059254 Anserini +test2846 Q0 9231390 23 16.019596 Anserini +test2846 Q0 5090163 24 16.001514 Anserini +test2846 Q0 9204779 25 15.959682 Anserini +test2846 Q0 2074829 26 15.959682 Anserini +test2846 Q0 8811485 27 15.826770 Anserini +test2846 Q0 12541671 28 15.826770 Anserini +test2846 Q0 6275518 29 15.605525 Anserini +test2846 Q0 2103101 30 15.497234 Anserini +test2847 Q0 61805 1 14.182164 Anserini +test2847 Q0 9963792 2 13.255860 Anserini +test2847 Q0 16501504 3 13.090458 Anserini +test2847 Q0 8314515 4 12.811543 Anserini +test2847 Q0 3935005 5 12.592027 Anserini +test2847 Q0 91921 6 12.512636 Anserini +test2847 Q0 11807605 7 12.462675 Anserini +test2847 Q0 9963768 8 12.429895 Anserini +test2847 Q0 91920 9 12.419081 Anserini +test2847 Q0 14592276 10 12.405219 Anserini +test2847 Q0 17237176 11 12.228764 Anserini +test2847 Q0 9963762 12 12.179380 Anserini +test2847 Q0 2107788 13 12.088713 Anserini +test2847 Q0 14592261 14 11.918727 Anserini +test2847 Q0 8020629 15 11.870550 Anserini +test2847 Q0 7377017 16 11.840950 Anserini +test2847 Q0 1950770 17 11.763311 Anserini +test2847 Q0 5242638 18 11.756006 Anserini +test2847 Q0 12397884 19 11.717485 Anserini +test2847 Q0 13963661 20 11.702628 Anserini +test2847 Q0 3555550 21 11.605409 Anserini +test2847 Q0 5227574 22 11.597473 Anserini +test2847 Q0 11828936 23 11.516447 Anserini +test2847 Q0 11807606 24 11.510647 Anserini +test2847 Q0 237746 25 11.508716 Anserini +test2847 Q0 14127990 26 11.453862 Anserini +test2847 Q0 20742110 27 11.365726 Anserini +test2847 Q0 2345712 28 11.268358 Anserini +test2847 Q0 18727995 29 11.266738 Anserini +test2847 Q0 18727998 30 11.174626 Anserini +test2848 Q0 8874739 1 16.476669 Anserini +test2848 Q0 8874740 2 15.035112 Anserini +test2848 Q0 15593406 3 14.990683 Anserini +test2848 Q0 12170682 4 14.426610 Anserini +test2848 Q0 8104576 5 14.249331 Anserini +test2848 Q0 19638671 6 14.212553 Anserini +test2848 Q0 18911340 7 14.106440 Anserini +test2848 Q0 19638673 8 13.953020 Anserini +test2848 Q0 654200 9 13.512248 Anserini +test2848 Q0 15593405 10 13.226278 Anserini +test2848 Q0 9190666 11 12.641826 Anserini +test2848 Q0 8293861 12 12.617604 Anserini +test2848 Q0 4127962 13 11.861078 Anserini +test2848 Q0 5002936 14 11.630805 Anserini +test2848 Q0 8104567 15 11.462188 Anserini +test2848 Q0 2317607 16 11.446055 Anserini +test2848 Q0 19685361 17 11.335473 Anserini +test2848 Q0 6979159 18 11.320770 Anserini +test2848 Q0 19685362 19 11.281980 Anserini +test2848 Q0 9026340 20 11.260763 Anserini +test2848 Q0 9035742 21 11.155976 Anserini +test2848 Q0 9167017 22 11.155976 Anserini +test2848 Q0 1439480 23 11.110928 Anserini +test2848 Q0 10993632 24 11.110928 Anserini +test2848 Q0 14548009 25 11.062489 Anserini +test2848 Q0 14548008 26 11.062489 Anserini +test2848 Q0 2317602 27 11.053233 Anserini +test2848 Q0 2317623 28 11.053233 Anserini +test2848 Q0 20523951 29 11.025002 Anserini +test2848 Q0 10170418 30 11.020610 Anserini +test2849 Q0 4923562 1 15.214945 Anserini +test2849 Q0 4923561 2 14.891340 Anserini +test2849 Q0 264683 3 14.183420 Anserini +test2849 Q0 4923567 4 14.080925 Anserini +test2849 Q0 4923565 5 14.069222 Anserini +test2849 Q0 7488097 6 12.187819 Anserini +test2849 Q0 4923563 7 12.129523 Anserini +test2849 Q0 20138961 8 11.967398 Anserini +test2849 Q0 264681 9 11.685820 Anserini +test2849 Q0 9378353 10 11.677661 Anserini +test2849 Q0 264691 11 11.638505 Anserini +test2849 Q0 264682 12 10.985168 Anserini +test2849 Q0 3556985 13 10.962269 Anserini +test2849 Q0 6588806 14 10.940958 Anserini +test2849 Q0 6588805 15 10.855170 Anserini +test2849 Q0 17023333 16 10.821352 Anserini +test2849 Q0 1328869 17 10.741718 Anserini +test2849 Q0 13463440 18 10.699912 Anserini +test2849 Q0 6267167 19 10.699912 Anserini +test2849 Q0 4347033 20 10.645082 Anserini +test2849 Q0 16448998 21 10.580526 Anserini +test2849 Q0 14531362 22 10.580526 Anserini +test2849 Q0 16448997 23 10.579066 Anserini +test2849 Q0 9139266 24 10.558605 Anserini +test2849 Q0 9139267 25 10.496412 Anserini +test2849 Q0 12714201 26 10.393497 Anserini +test2849 Q0 5149251 27 10.370706 Anserini +test2849 Q0 9333884 28 10.247002 Anserini +test2849 Q0 4866623 29 10.203516 Anserini +test2849 Q0 14709041 30 10.197653 Anserini +test285 Q0 10948965 1 13.025820 Anserini +test285 Q0 9783345 2 12.972993 Anserini +test285 Q0 815970 3 12.391064 Anserini +test285 Q0 8168324 4 12.271870 Anserini +test285 Q0 20713735 5 12.247295 Anserini +test285 Q0 16275065 6 12.225118 Anserini +test285 Q0 5500725 7 12.205055 Anserini +test285 Q0 4432582 8 12.192627 Anserini +test285 Q0 16275033 9 12.143384 Anserini +test285 Q0 16275055 10 12.038799 Anserini +test285 Q0 7127643 11 11.853658 Anserini +test285 Q0 16782190 12 11.686911 Anserini +test285 Q0 2938689 13 11.461241 Anserini +test285 Q0 4223256 14 11.383032 Anserini +test285 Q0 6910733 15 11.379060 Anserini +test285 Q0 20625457 16 11.245964 Anserini +test285 Q0 16294512 17 11.243173 Anserini +test285 Q0 20771402 18 11.224926 Anserini +test285 Q0 2836070 19 11.217423 Anserini +test285 Q0 13460304 20 11.191786 Anserini +test285 Q0 2703164 21 11.178653 Anserini +test285 Q0 16393409 22 11.176250 Anserini +test285 Q0 9397068 23 11.164196 Anserini +test285 Q0 2792979 24 11.153955 Anserini +test285 Q0 2792998 25 11.153955 Anserini +test285 Q0 429133 26 11.143907 Anserini +test285 Q0 17263679 27 11.072406 Anserini +test285 Q0 8043234 28 11.049129 Anserini +test285 Q0 1983488 29 10.995646 Anserini +test285 Q0 20931722 30 10.988380 Anserini +test2850 Q0 5470194 1 18.546581 Anserini +test2850 Q0 5670319 2 15.609227 Anserini +test2850 Q0 17754547 3 14.940759 Anserini +test2850 Q0 8777052 4 14.499159 Anserini +test2850 Q0 18354259 5 14.322870 Anserini +test2850 Q0 12323713 6 14.260654 Anserini +test2850 Q0 17636393 7 14.224052 Anserini +test2850 Q0 12323711 8 14.136201 Anserini +test2850 Q0 6642936 9 13.965189 Anserini +test2850 Q0 17879728 10 13.752025 Anserini +test2850 Q0 3078619 11 13.669032 Anserini +test2850 Q0 17879744 12 13.663924 Anserini +test2850 Q0 14851292 13 13.661386 Anserini +test2850 Q0 15654022 14 13.657917 Anserini +test2850 Q0 12323721 15 13.561384 Anserini +test2850 Q0 8777078 16 13.552025 Anserini +test2850 Q0 12323737 17 13.545242 Anserini +test2850 Q0 1304924 18 13.541342 Anserini +test2850 Q0 15654025 19 13.454550 Anserini +test2850 Q0 9676592 20 13.439481 Anserini +test2850 Q0 17754553 21 13.439481 Anserini +test2850 Q0 17754542 22 13.336905 Anserini +test2850 Q0 12323703 23 13.330500 Anserini +test2850 Q0 12296886 24 13.268423 Anserini +test2850 Q0 3755741 25 13.172669 Anserini +test2850 Q0 3529471 26 13.127654 Anserini +test2850 Q0 4971605 27 13.076668 Anserini +test2850 Q0 4971599 28 13.074278 Anserini +test2850 Q0 8777079 29 13.065239 Anserini +test2850 Q0 1461831 30 13.054591 Anserini +test2851 Q0 8143360 1 16.539103 Anserini +test2851 Q0 8143364 2 13.885509 Anserini +test2851 Q0 823012 3 13.295004 Anserini +test2851 Q0 8143361 4 12.909464 Anserini +test2851 Q0 6218164 5 12.581373 Anserini +test2851 Q0 931568 6 12.574036 Anserini +test2851 Q0 10217907 7 12.501994 Anserini +test2851 Q0 13822889 8 12.445411 Anserini +test2851 Q0 16226818 9 12.296644 Anserini +test2851 Q0 14090760 10 11.922796 Anserini +test2851 Q0 6218163 11 11.922796 Anserini +test2851 Q0 19624638 12 11.919134 Anserini +test2851 Q0 3415401 13 11.890382 Anserini +test2851 Q0 8143363 14 11.861911 Anserini +test2851 Q0 5140114 15 11.831432 Anserini +test2851 Q0 7927520 16 11.763529 Anserini +test2851 Q0 14088617 17 11.640651 Anserini +test2851 Q0 9387281 18 11.569983 Anserini +test2851 Q0 12921634 19 11.514622 Anserini +test2851 Q0 2244855 20 11.514326 Anserini +test2851 Q0 9329322 21 11.468384 Anserini +test2851 Q0 7974375 22 11.446923 Anserini +test2851 Q0 5917603 23 11.409616 Anserini +test2851 Q0 863634 24 11.365850 Anserini +test2851 Q0 4239794 25 11.337152 Anserini +test2851 Q0 860292 26 11.264203 Anserini +test2851 Q0 14680176 27 11.249561 Anserini +test2851 Q0 2554256 28 10.989439 Anserini +test2851 Q0 2623207 29 10.955715 Anserini +test2851 Q0 14735224 30 10.922006 Anserini +test2852 Q0 20185000 1 15.126400 Anserini +test2852 Q0 14544702 2 14.960870 Anserini +test2852 Q0 896990 3 14.885476 Anserini +test2852 Q0 9586079 4 14.767878 Anserini +test2852 Q0 20028847 5 14.336356 Anserini +test2852 Q0 16431714 6 14.198621 Anserini +test2852 Q0 11934309 7 14.170357 Anserini +test2852 Q0 2589439 8 14.125641 Anserini +test2852 Q0 3022235 9 14.031411 Anserini +test2852 Q0 9588978 10 14.026446 Anserini +test2852 Q0 19535246 11 13.985705 Anserini +test2852 Q0 19535247 12 13.985705 Anserini +test2852 Q0 14095850 13 13.979760 Anserini +test2852 Q0 3022228 14 13.941445 Anserini +test2852 Q0 17125680 15 13.916372 Anserini +test2852 Q0 12274354 16 13.882865 Anserini +test2852 Q0 1732709 17 13.729907 Anserini +test2852 Q0 2383810 18 13.726825 Anserini +test2852 Q0 12673072 19 13.660023 Anserini +test2852 Q0 8137399 20 13.656099 Anserini +test2852 Q0 17703416 21 13.610920 Anserini +test2852 Q0 17501522 22 13.586571 Anserini +test2852 Q0 20818594 23 13.559192 Anserini +test2852 Q0 1857727 24 13.549766 Anserini +test2852 Q0 3022240 25 13.501400 Anserini +test2852 Q0 1809302 26 13.495793 Anserini +test2852 Q0 3038316 27 13.492498 Anserini +test2852 Q0 2024498 28 13.472177 Anserini +test2852 Q0 191179 29 13.438581 Anserini +test2852 Q0 3022236 30 13.427492 Anserini +test2853 Q0 2964937 1 17.545662 Anserini +test2853 Q0 2964936 2 16.348766 Anserini +test2853 Q0 2964938 3 15.808125 Anserini +test2853 Q0 2964958 4 15.588443 Anserini +test2853 Q0 14751017 5 15.588443 Anserini +test2853 Q0 750876 6 15.288465 Anserini +test2853 Q0 2964945 7 15.254938 Anserini +test2853 Q0 4531800 8 15.108425 Anserini +test2853 Q0 14751018 9 15.108425 Anserini +test2853 Q0 2964953 10 14.981512 Anserini +test2853 Q0 2964946 11 14.915140 Anserini +test2853 Q0 2964949 12 14.915140 Anserini +test2853 Q0 5845505 13 14.796276 Anserini +test2853 Q0 2964950 14 14.626657 Anserini +test2853 Q0 14750998 15 14.620226 Anserini +test2853 Q0 10108656 16 14.496419 Anserini +test2853 Q0 2964948 17 14.474285 Anserini +test2853 Q0 4126322 18 14.275129 Anserini +test2853 Q0 9686491 19 14.165935 Anserini +test2853 Q0 93992 20 14.136799 Anserini +test2853 Q0 2964951 21 13.936355 Anserini +test2853 Q0 2964957 22 13.936355 Anserini +test2853 Q0 93998 23 13.865286 Anserini +test2853 Q0 4126327 24 13.824150 Anserini +test2853 Q0 14751006 25 13.824150 Anserini +test2853 Q0 2964944 26 13.777004 Anserini +test2853 Q0 10130078 27 13.695816 Anserini +test2853 Q0 10604390 28 13.682632 Anserini +test2853 Q0 2964941 29 13.672684 Anserini +test2853 Q0 14751000 30 13.574047 Anserini +test2854 Q0 3586431 1 16.978771 Anserini +test2854 Q0 6428342 2 16.087603 Anserini +test2854 Q0 5609767 3 15.902613 Anserini +test2854 Q0 5089328 4 15.764956 Anserini +test2854 Q0 18824630 5 15.495167 Anserini +test2854 Q0 9023141 6 15.466490 Anserini +test2854 Q0 5453579 7 15.460571 Anserini +test2854 Q0 4825488 8 15.446723 Anserini +test2854 Q0 4275352 9 15.410355 Anserini +test2854 Q0 6428344 10 15.360069 Anserini +test2854 Q0 5387568 11 15.359079 Anserini +test2854 Q0 7153860 12 15.291006 Anserini +test2854 Q0 2903118 13 15.115009 Anserini +test2854 Q0 14011723 14 15.091627 Anserini +test2854 Q0 9666753 15 15.089279 Anserini +test2854 Q0 13729543 16 14.946811 Anserini +test2854 Q0 3581503 17 14.853331 Anserini +test2854 Q0 9666752 18 14.791536 Anserini +test2854 Q0 14011706 19 14.773085 Anserini +test2854 Q0 3586417 20 14.769636 Anserini +test2854 Q0 6392290 21 14.751959 Anserini +test2854 Q0 7060138 22 14.689743 Anserini +test2854 Q0 6441880 23 14.671561 Anserini +test2854 Q0 9979006 24 14.668604 Anserini +test2854 Q0 3583368 25 14.658785 Anserini +test2854 Q0 4301393 26 14.644143 Anserini +test2854 Q0 6855715 27 14.642204 Anserini +test2854 Q0 10008289 28 14.580091 Anserini +test2854 Q0 18917760 29 14.516821 Anserini +test2854 Q0 11924663 30 14.465949 Anserini +test2855 Q0 19793557 1 15.315605 Anserini +test2855 Q0 18314952 2 14.723541 Anserini +test2855 Q0 19793559 3 14.658094 Anserini +test2855 Q0 19793556 4 14.645528 Anserini +test2855 Q0 18314950 5 14.531905 Anserini +test2855 Q0 14237407 6 14.505982 Anserini +test2855 Q0 10320716 7 14.441936 Anserini +test2855 Q0 10320673 8 14.060700 Anserini +test2855 Q0 18314986 9 14.058549 Anserini +test2855 Q0 19793564 10 13.963871 Anserini +test2855 Q0 14237404 11 13.958737 Anserini +test2855 Q0 14237405 12 13.817117 Anserini +test2855 Q0 19793529 13 13.817117 Anserini +test2855 Q0 3623800 14 13.746504 Anserini +test2855 Q0 4420221 15 13.716677 Anserini +test2855 Q0 14237413 16 13.566975 Anserini +test2855 Q0 19793563 17 13.432437 Anserini +test2855 Q0 19793550 18 13.432437 Anserini +test2855 Q0 14237415 19 13.396141 Anserini +test2855 Q0 7362333 20 13.300097 Anserini +test2855 Q0 19793552 21 13.251959 Anserini +test2855 Q0 18314959 22 13.248578 Anserini +test2855 Q0 20997155 23 13.030045 Anserini +test2855 Q0 20997159 24 13.030045 Anserini +test2855 Q0 19793530 25 12.999220 Anserini +test2855 Q0 10320683 26 12.892937 Anserini +test2855 Q0 10320681 27 12.892937 Anserini +test2855 Q0 20969231 28 12.852457 Anserini +test2855 Q0 18314988 29 12.826585 Anserini +test2855 Q0 19793537 30 12.826585 Anserini +test2856 Q0 17332963 1 12.631891 Anserini +test2856 Q0 6045998 2 12.171851 Anserini +test2856 Q0 17332902 3 12.153757 Anserini +test2856 Q0 4082758 4 12.110223 Anserini +test2856 Q0 6046008 5 12.100240 Anserini +test2856 Q0 13061889 6 11.953648 Anserini +test2856 Q0 11484239 7 11.944230 Anserini +test2856 Q0 4082760 8 11.890867 Anserini +test2856 Q0 6046016 9 11.815695 Anserini +test2856 Q0 11484229 10 11.805604 Anserini +test2856 Q0 14038617 11 11.771902 Anserini +test2856 Q0 11484233 12 11.624745 Anserini +test2856 Q0 12083624 13 11.511789 Anserini +test2856 Q0 12628821 14 11.439236 Anserini +test2856 Q0 4819346 15 11.422297 Anserini +test2856 Q0 17773641 16 11.363279 Anserini +test2856 Q0 11484231 17 11.363005 Anserini +test2856 Q0 15631065 18 11.249287 Anserini +test2856 Q0 17332975 19 11.227454 Anserini +test2856 Q0 16644387 20 11.223799 Anserini +test2856 Q0 11700215 21 11.201962 Anserini +test2856 Q0 11484228 22 11.196169 Anserini +test2856 Q0 11484247 23 11.190638 Anserini +test2856 Q0 12628820 24 11.176764 Anserini +test2856 Q0 6045996 25 11.161118 Anserini +test2856 Q0 8227836 26 11.143112 Anserini +test2856 Q0 11312765 27 11.106696 Anserini +test2856 Q0 17332974 28 11.022777 Anserini +test2856 Q0 11488235 29 11.013552 Anserini +test2856 Q0 12573523 30 10.991101 Anserini +test2857 Q0 3179678 1 22.663483 Anserini +test2857 Q0 20080381 2 22.626600 Anserini +test2857 Q0 20080383 3 22.626600 Anserini +test2857 Q0 17340477 4 22.413212 Anserini +test2857 Q0 3179643 5 22.166267 Anserini +test2857 Q0 17046947 6 22.040625 Anserini +test2857 Q0 10485737 7 21.943172 Anserini +test2857 Q0 3179679 8 21.680773 Anserini +test2857 Q0 17340471 9 21.591854 Anserini +test2857 Q0 3179639 10 21.541088 Anserini +test2857 Q0 19339429 11 21.538961 Anserini +test2857 Q0 19339428 12 21.446371 Anserini +test2857 Q0 3179629 13 21.252693 Anserini +test2857 Q0 19436698 14 21.252693 Anserini +test2857 Q0 19436700 15 21.252693 Anserini +test2857 Q0 19243217 16 21.214670 Anserini +test2857 Q0 3179634 17 21.070093 Anserini +test2857 Q0 19243218 18 21.048962 Anserini +test2857 Q0 17340491 19 21.006542 Anserini +test2857 Q0 19648747 20 20.981396 Anserini +test2857 Q0 19648748 21 20.981396 Anserini +test2857 Q0 3179681 22 20.882059 Anserini +test2857 Q0 18398276 23 20.571684 Anserini +test2857 Q0 18398280 24 20.571684 Anserini +test2857 Q0 10485744 25 20.571684 Anserini +test2857 Q0 10485742 26 19.975367 Anserini +test2857 Q0 17046952 27 19.947010 Anserini +test2857 Q0 3179642 28 19.936365 Anserini +test2857 Q0 19436699 29 19.626095 Anserini +test2857 Q0 8215106 30 19.561584 Anserini +test2858 Q0 10653330 1 14.335588 Anserini +test2858 Q0 9892967 2 13.785728 Anserini +test2858 Q0 625502 3 13.140965 Anserini +test2858 Q0 16966248 4 12.954244 Anserini +test2858 Q0 12054297 5 12.878343 Anserini +test2858 Q0 1847411 6 12.396207 Anserini +test2858 Q0 3544753 7 12.119258 Anserini +test2858 Q0 3544794 8 12.119258 Anserini +test2858 Q0 9374106 9 11.859553 Anserini +test2858 Q0 3951418 10 11.777643 Anserini +test2858 Q0 1757273 11 11.667553 Anserini +test2858 Q0 12994362 12 11.667553 Anserini +test2858 Q0 548177 13 11.559575 Anserini +test2858 Q0 3544770 14 11.549528 Anserini +test2858 Q0 4514831 15 11.543355 Anserini +test2858 Q0 5118033 16 11.480140 Anserini +test2858 Q0 12605845 17 11.370256 Anserini +test2858 Q0 1686129 18 11.257708 Anserini +test2858 Q0 2526938 19 11.233047 Anserini +test2858 Q0 12610787 20 11.226685 Anserini +test2858 Q0 3728451 21 11.224983 Anserini +test2858 Q0 8553098 22 11.166827 Anserini +test2858 Q0 1542327 23 11.146250 Anserini +test2858 Q0 9321475 24 11.133092 Anserini +test2858 Q0 1966876 25 11.124096 Anserini +test2858 Q0 16319130 26 11.054382 Anserini +test2858 Q0 3544776 27 11.052379 Anserini +test2858 Q0 5701482 28 11.037003 Anserini +test2858 Q0 604518 29 10.863751 Anserini +test2858 Q0 538161 30 10.841773 Anserini +test2859 Q0 19302484 1 15.639014 Anserini +test2859 Q0 17689800 2 15.443123 Anserini +test2859 Q0 19838256 3 15.140980 Anserini +test2859 Q0 17689786 4 14.962667 Anserini +test2859 Q0 18270801 5 14.946872 Anserini +test2859 Q0 18270798 6 14.946872 Anserini +test2859 Q0 19273484 7 14.866379 Anserini +test2859 Q0 19761542 8 14.844168 Anserini +test2859 Q0 19273485 9 14.734027 Anserini +test2859 Q0 19761543 10 14.662295 Anserini +test2859 Q0 5224318 11 14.657238 Anserini +test2859 Q0 20092325 12 14.618340 Anserini +test2859 Q0 17689802 13 14.525900 Anserini +test2859 Q0 19625154 14 14.522419 Anserini +test2859 Q0 19838259 15 14.362778 Anserini +test2859 Q0 19302489 16 14.321916 Anserini +test2859 Q0 19256322 17 14.268089 Anserini +test2859 Q0 19761538 18 14.202940 Anserini +test2859 Q0 19273839 19 14.159834 Anserini +test2859 Q0 17808208 20 14.079831 Anserini +test2859 Q0 19625151 21 13.910818 Anserini +test2859 Q0 19625155 22 13.804090 Anserini +test2859 Q0 20288291 23 13.779390 Anserini +test2859 Q0 19273847 24 13.774616 Anserini +test2859 Q0 15246618 25 13.768935 Anserini +test2859 Q0 19256297 26 13.649537 Anserini +test2859 Q0 17689785 27 13.612807 Anserini +test2859 Q0 17808210 28 13.460993 Anserini +test2859 Q0 19273439 29 13.385519 Anserini +test2859 Q0 19625152 30 13.350531 Anserini +test286 Q0 554683 1 15.969005 Anserini +test286 Q0 14250234 2 15.019275 Anserini +test286 Q0 554672 3 14.850508 Anserini +test286 Q0 3489712 4 14.144300 Anserini +test286 Q0 11416450 5 14.110703 Anserini +test286 Q0 17423080 6 13.776683 Anserini +test286 Q0 1416452 7 13.635842 Anserini +test286 Q0 18961095 8 13.415856 Anserini +test286 Q0 7304489 9 13.356196 Anserini +test286 Q0 16319939 10 13.349081 Anserini +test286 Q0 9761140 11 13.129344 Anserini +test286 Q0 8758646 12 13.117823 Anserini +test286 Q0 16539592 13 13.059383 Anserini +test286 Q0 15068377 14 12.942858 Anserini +test286 Q0 11981960 15 12.889625 Anserini +test286 Q0 4316732 16 12.845345 Anserini +test286 Q0 11777231 17 12.835543 Anserini +test286 Q0 11777232 18 12.835543 Anserini +test286 Q0 17291748 19 12.746880 Anserini +test286 Q0 8862176 20 12.746721 Anserini +test286 Q0 554681 21 12.729011 Anserini +test286 Q0 12831369 22 12.719066 Anserini +test286 Q0 554648 23 12.716765 Anserini +test286 Q0 554692 24 12.591396 Anserini +test286 Q0 2174483 25 12.534935 Anserini +test286 Q0 9293816 26 12.468454 Anserini +test286 Q0 18961106 27 12.453693 Anserini +test286 Q0 9761141 28 12.428296 Anserini +test286 Q0 2186195 29 12.385722 Anserini +test286 Q0 10907305 30 12.356186 Anserini +test2860 Q0 2166880 1 14.446435 Anserini +test2860 Q0 14823710 2 13.748724 Anserini +test2860 Q0 2407028 3 13.468953 Anserini +test2860 Q0 2407041 4 13.434034 Anserini +test2860 Q0 611031 5 12.790183 Anserini +test2860 Q0 611055 6 12.683952 Anserini +test2860 Q0 2407032 7 12.608013 Anserini +test2860 Q0 8909048 8 12.396585 Anserini +test2860 Q0 2407055 9 12.327976 Anserini +test2860 Q0 2407073 10 12.257749 Anserini +test2860 Q0 611065 11 12.256133 Anserini +test2860 Q0 2407075 12 12.202700 Anserini +test2860 Q0 3842089 13 12.168951 Anserini +test2860 Q0 8909052 14 12.113958 Anserini +test2860 Q0 20174592 15 12.070769 Anserini +test2860 Q0 14614504 16 12.041088 Anserini +test2860 Q0 8909050 17 12.010282 Anserini +test2860 Q0 10383678 18 11.953629 Anserini +test2860 Q0 7862254 19 11.888086 Anserini +test2860 Q0 2407016 20 11.884873 Anserini +test2860 Q0 508549 21 11.845671 Anserini +test2860 Q0 7862253 22 11.827055 Anserini +test2860 Q0 2407048 23 11.761863 Anserini +test2860 Q0 2407074 24 11.697508 Anserini +test2860 Q0 2407036 25 11.678330 Anserini +test2860 Q0 2349476 26 11.597370 Anserini +test2860 Q0 2407066 27 11.590099 Anserini +test2860 Q0 2407051 28 11.585324 Anserini +test2860 Q0 7888966 29 11.576297 Anserini +test2860 Q0 2407033 30 11.531414 Anserini +test2861 Q0 3219064 1 16.582678 Anserini +test2861 Q0 3218791 2 15.799376 Anserini +test2861 Q0 3218792 3 15.799376 Anserini +test2861 Q0 3219066 4 15.730389 Anserini +test2861 Q0 3219067 5 15.339793 Anserini +test2861 Q0 3219071 6 15.134423 Anserini +test2861 Q0 83403 7 15.119946 Anserini +test2861 Q0 3690900 8 14.813938 Anserini +test2861 Q0 7452589 9 14.666663 Anserini +test2861 Q0 3534224 10 14.617163 Anserini +test2861 Q0 3219062 11 14.475594 Anserini +test2861 Q0 3219069 12 14.278328 Anserini +test2861 Q0 2334986 13 14.126759 Anserini +test2861 Q0 3510577 14 13.777370 Anserini +test2861 Q0 7002283 15 13.632078 Anserini +test2861 Q0 7113772 16 13.588625 Anserini +test2861 Q0 3219065 17 13.283557 Anserini +test2861 Q0 15363055 18 13.194942 Anserini +test2861 Q0 4880787 19 12.734756 Anserini +test2861 Q0 3219058 20 12.695288 Anserini +test2861 Q0 3219076 21 12.695288 Anserini +test2861 Q0 1863141 22 12.629872 Anserini +test2861 Q0 3510567 23 12.617485 Anserini +test2861 Q0 3531612 24 12.603329 Anserini +test2861 Q0 5227117 25 12.527882 Anserini +test2861 Q0 5227125 26 12.527882 Anserini +test2861 Q0 2335005 27 12.487026 Anserini +test2861 Q0 3507377 28 12.427715 Anserini +test2861 Q0 5227098 29 12.427715 Anserini +test2861 Q0 3219068 30 12.427715 Anserini +test2862 Q0 17372111 1 14.432980 Anserini +test2862 Q0 17372112 2 11.935163 Anserini +test2862 Q0 4278232 3 10.319299 Anserini +test2862 Q0 3145870 4 9.563395 Anserini +test2862 Q0 12249643 5 9.385777 Anserini +test2862 Q0 1716683 6 9.372436 Anserini +test2862 Q0 15298180 7 9.311088 Anserini +test2862 Q0 12939522 8 9.285271 Anserini +test2862 Q0 3661631 9 9.247798 Anserini +test2862 Q0 12248673 10 9.207409 Anserini +test2862 Q0 5314615 11 9.101173 Anserini +test2862 Q0 5696902 12 8.996235 Anserini +test2862 Q0 2125360 13 8.894475 Anserini +test2862 Q0 3517936 14 8.869370 Anserini +test2862 Q0 14425715 15 8.796900 Anserini +test2862 Q0 1735945 16 8.741600 Anserini +test2862 Q0 7259088 17 8.702568 Anserini +test2862 Q0 2661217 18 8.667533 Anserini +test2862 Q0 15886601 19 8.660564 Anserini +test2862 Q0 15329268 20 8.650886 Anserini +test2862 Q0 659689 21 8.587687 Anserini +test2862 Q0 4111464 22 8.520535 Anserini +test2862 Q0 5664417 23 8.509351 Anserini +test2862 Q0 3992943 24 8.492542 Anserini +test2862 Q0 18602287 25 8.477685 Anserini +test2862 Q0 14885708 26 8.448934 Anserini +test2862 Q0 1531728 27 8.417132 Anserini +test2862 Q0 2862592 28 8.417132 Anserini +test2862 Q0 16910648 29 8.373088 Anserini +test2862 Q0 743592 30 8.367837 Anserini +test2863 Q0 4185098 1 20.256737 Anserini +test2863 Q0 4245777 2 19.040232 Anserini +test2863 Q0 394809 3 17.634104 Anserini +test2863 Q0 16858081 4 17.583719 Anserini +test2863 Q0 4185097 5 17.197508 Anserini +test2863 Q0 4450417 6 17.102848 Anserini +test2863 Q0 394869 7 16.934063 Anserini +test2863 Q0 18084511 8 16.545433 Anserini +test2863 Q0 394466 9 16.542456 Anserini +test2863 Q0 395042 10 16.135265 Anserini +test2863 Q0 7031705 11 15.838360 Anserini +test2863 Q0 1491924 12 15.659430 Anserini +test2863 Q0 394908 13 15.377207 Anserini +test2863 Q0 2717141 14 15.317653 Anserini +test2863 Q0 3159700 15 15.155976 Anserini +test2863 Q0 376035 16 15.019087 Anserini +test2863 Q0 393985 17 15.019087 Anserini +test2863 Q0 541787 18 14.969496 Anserini +test2863 Q0 5581744 19 14.737597 Anserini +test2863 Q0 2163445 20 14.722181 Anserini +test2863 Q0 394663 21 14.701432 Anserini +test2863 Q0 18567767 22 14.655025 Anserini +test2863 Q0 394025 23 14.655025 Anserini +test2863 Q0 394195 24 14.542949 Anserini +test2863 Q0 4243440 25 14.528126 Anserini +test2863 Q0 16858080 26 14.528126 Anserini +test2863 Q0 12051626 27 14.453800 Anserini +test2863 Q0 3200144 28 14.452700 Anserini +test2863 Q0 2515136 29 14.432782 Anserini +test2863 Q0 5732106 30 14.393593 Anserini +test2864 Q0 17567599 1 29.141521 Anserini +test2864 Q0 17567598 2 27.696112 Anserini +test2864 Q0 15172482 3 27.195374 Anserini +test2864 Q0 17567587 4 26.475721 Anserini +test2864 Q0 17567576 5 26.294207 Anserini +test2864 Q0 10068963 6 23.490700 Anserini +test2864 Q0 17567588 7 22.771908 Anserini +test2864 Q0 17567592 8 22.349611 Anserini +test2864 Q0 1995004 9 22.078526 Anserini +test2864 Q0 18960352 10 22.006857 Anserini +test2864 Q0 18959298 11 21.880066 Anserini +test2864 Q0 5946963 12 21.830000 Anserini +test2864 Q0 19840167 13 21.679436 Anserini +test2864 Q0 18140607 14 21.679436 Anserini +test2864 Q0 17567591 15 21.350777 Anserini +test2864 Q0 17567586 16 21.230169 Anserini +test2864 Q0 17567589 17 21.046413 Anserini +test2864 Q0 19629271 18 21.024502 Anserini +test2864 Q0 19629273 19 21.024502 Anserini +test2864 Q0 4947588 20 20.933275 Anserini +test2864 Q0 17567579 21 20.915058 Anserini +test2864 Q0 17567585 22 20.758263 Anserini +test2864 Q0 17567597 23 20.447989 Anserini +test2864 Q0 17567582 24 20.409172 Anserini +test2864 Q0 17567581 25 20.264866 Anserini +test2864 Q0 18959296 26 20.187292 Anserini +test2864 Q0 12069084 27 20.156092 Anserini +test2864 Q0 17567584 28 20.130579 Anserini +test2864 Q0 17567590 29 19.893654 Anserini +test2864 Q0 17567580 30 19.494905 Anserini +test2865 Q0 12021882 1 17.317537 Anserini +test2865 Q0 7528595 2 17.215471 Anserini +test2865 Q0 12021920 3 17.174728 Anserini +test2865 Q0 13686723 4 17.112135 Anserini +test2865 Q0 13686710 5 16.464518 Anserini +test2865 Q0 7528603 6 16.064880 Anserini +test2865 Q0 13686718 7 15.406587 Anserini +test2865 Q0 12021912 8 15.138035 Anserini +test2865 Q0 7528600 9 15.060795 Anserini +test2865 Q0 15224073 10 15.022424 Anserini +test2865 Q0 13686717 11 14.822552 Anserini +test2865 Q0 12021890 12 14.797120 Anserini +test2865 Q0 16565006 13 14.793090 Anserini +test2865 Q0 1507818 14 14.650336 Anserini +test2865 Q0 12021918 15 14.569785 Anserini +test2865 Q0 13686711 16 14.429069 Anserini +test2865 Q0 12021909 17 14.423453 Anserini +test2865 Q0 4013297 18 14.384341 Anserini +test2865 Q0 12021916 19 14.367488 Anserini +test2865 Q0 13686719 20 14.273597 Anserini +test2865 Q0 18286003 21 14.237727 Anserini +test2865 Q0 1675502 22 14.147345 Anserini +test2865 Q0 13686712 23 13.970037 Anserini +test2865 Q0 13686722 24 13.957868 Anserini +test2865 Q0 12021898 25 13.666252 Anserini +test2865 Q0 7528597 26 13.571995 Anserini +test2865 Q0 12021915 27 13.571995 Anserini +test2865 Q0 12021899 28 13.571995 Anserini +test2865 Q0 13686721 29 13.531446 Anserini +test2865 Q0 11380846 30 13.520046 Anserini +test2866 Q0 2056781 1 12.032570 Anserini +test2866 Q0 5539635 2 11.966083 Anserini +test2866 Q0 4000201 3 11.927419 Anserini +test2866 Q0 583274 4 11.778608 Anserini +test2866 Q0 12026995 5 11.720797 Anserini +test2866 Q0 185582 6 11.711449 Anserini +test2866 Q0 4435007 7 11.691973 Anserini +test2866 Q0 18443869 8 11.677978 Anserini +test2866 Q0 1729551 9 11.652418 Anserini +test2866 Q0 4435008 10 11.618095 Anserini +test2866 Q0 2786129 11 11.610299 Anserini +test2866 Q0 3094218 12 11.584203 Anserini +test2866 Q0 17353382 13 11.559448 Anserini +test2866 Q0 2440939 14 11.523797 Anserini +test2866 Q0 9152006 15 11.523797 Anserini +test2866 Q0 2786130 16 11.520810 Anserini +test2866 Q0 9157603 17 11.407084 Anserini +test2866 Q0 3054027 18 11.395827 Anserini +test2866 Q0 17437008 19 11.336360 Anserini +test2866 Q0 13183417 20 11.331322 Anserini +test2866 Q0 10172163 21 11.329201 Anserini +test2866 Q0 12786333 22 11.273369 Anserini +test2866 Q0 5831164 23 11.257940 Anserini +test2866 Q0 6795941 24 11.209279 Anserini +test2866 Q0 8429186 25 11.180925 Anserini +test2866 Q0 15612109 26 11.154476 Anserini +test2866 Q0 11373901 27 11.145779 Anserini +test2866 Q0 1272017 28 11.115574 Anserini +test2866 Q0 1271993 29 11.115574 Anserini +test2866 Q0 11745823 30 11.104240 Anserini +test2867 Q0 6902897 1 16.829416 Anserini +test2867 Q0 6902883 2 16.797974 Anserini +test2867 Q0 19675829 3 16.608017 Anserini +test2867 Q0 19675826 4 15.718158 Anserini +test2867 Q0 3268606 5 15.270177 Anserini +test2867 Q0 3268617 6 15.270177 Anserini +test2867 Q0 12186037 7 15.233461 Anserini +test2867 Q0 12186042 8 15.233461 Anserini +test2867 Q0 5673723 9 15.086006 Anserini +test2867 Q0 6882946 10 14.727028 Anserini +test2867 Q0 6882945 11 14.727028 Anserini +test2867 Q0 17947514 12 14.598171 Anserini +test2867 Q0 3268612 13 14.527525 Anserini +test2867 Q0 5673721 14 14.437569 Anserini +test2867 Q0 9728026 15 14.321911 Anserini +test2867 Q0 9728032 16 14.321911 Anserini +test2867 Q0 20404182 17 14.214334 Anserini +test2867 Q0 2134042 18 14.033964 Anserini +test2867 Q0 4485958 19 14.033964 Anserini +test2867 Q0 5673726 20 14.007803 Anserini +test2867 Q0 6576707 21 13.945514 Anserini +test2867 Q0 357398 22 13.945514 Anserini +test2867 Q0 6902886 23 13.874576 Anserini +test2867 Q0 3268626 24 13.841835 Anserini +test2867 Q0 2176578 25 13.746229 Anserini +test2867 Q0 6902885 26 13.690064 Anserini +test2867 Q0 2423629 27 13.618240 Anserini +test2867 Q0 5673722 28 13.618240 Anserini +test2867 Q0 16156905 29 13.553442 Anserini +test2867 Q0 16243203 30 13.553442 Anserini +test2868 Q0 3108123 1 14.122127 Anserini +test2868 Q0 16412127 2 13.177500 Anserini +test2868 Q0 4431615 3 12.809635 Anserini +test2868 Q0 14888264 4 12.669340 Anserini +test2868 Q0 3820390 5 12.174041 Anserini +test2868 Q0 19893488 6 11.812579 Anserini +test2868 Q0 14118382 7 11.805225 Anserini +test2868 Q0 14530448 8 11.614564 Anserini +test2868 Q0 14530439 9 11.614564 Anserini +test2868 Q0 16199720 10 11.239989 Anserini +test2868 Q0 13785971 11 11.219757 Anserini +test2868 Q0 14530444 12 11.189998 Anserini +test2868 Q0 2595367 13 11.176950 Anserini +test2868 Q0 10206231 14 11.099628 Anserini +test2868 Q0 14241256 15 11.071474 Anserini +test2868 Q0 9830941 16 11.027876 Anserini +test2868 Q0 2595338 17 11.022436 Anserini +test2868 Q0 19527422 18 11.019069 Anserini +test2868 Q0 6682666 19 10.939808 Anserini +test2868 Q0 4768316 20 10.939808 Anserini +test2868 Q0 7418252 21 10.921622 Anserini +test2868 Q0 2595349 22 10.867256 Anserini +test2868 Q0 20120573 23 10.854376 Anserini +test2868 Q0 16488531 24 10.794966 Anserini +test2868 Q0 16494809 25 10.783010 Anserini +test2868 Q0 4635165 26 10.749058 Anserini +test2868 Q0 15047446 27 10.740575 Anserini +test2868 Q0 17104276 28 10.734329 Anserini +test2868 Q0 15790530 29 10.732080 Anserini +test2868 Q0 15790554 30 10.732080 Anserini +test2869 Q0 18892850 1 18.873867 Anserini +test2869 Q0 18892843 2 16.247984 Anserini +test2869 Q0 18892845 3 15.584403 Anserini +test2869 Q0 18892852 4 15.523965 Anserini +test2869 Q0 18892844 5 15.357225 Anserini +test2869 Q0 11734218 6 14.696048 Anserini +test2869 Q0 18892848 7 14.592162 Anserini +test2869 Q0 7567564 8 13.492655 Anserini +test2869 Q0 5865117 9 13.485909 Anserini +test2869 Q0 5865119 10 13.485909 Anserini +test2869 Q0 717966 11 13.228027 Anserini +test2869 Q0 3420712 12 13.167737 Anserini +test2869 Q0 20905867 13 13.098110 Anserini +test2869 Q0 11546238 14 13.093829 Anserini +test2869 Q0 717967 15 12.983747 Anserini +test2869 Q0 11734227 16 12.784383 Anserini +test2869 Q0 9250601 17 12.739532 Anserini +test2869 Q0 17866562 18 12.628941 Anserini +test2869 Q0 11249171 19 12.322356 Anserini +test2869 Q0 3467602 20 12.277056 Anserini +test2869 Q0 3420711 21 12.277056 Anserini +test2869 Q0 5948754 22 12.277056 Anserini +test2869 Q0 1854367 23 12.255534 Anserini +test2869 Q0 6304946 24 12.039897 Anserini +test2869 Q0 18021488 25 11.707751 Anserini +test2869 Q0 18637526 26 11.688293 Anserini +test2869 Q0 18637522 27 11.688293 Anserini +test2869 Q0 12042874 28 11.666821 Anserini +test2869 Q0 5800784 29 11.528571 Anserini +test2869 Q0 5800786 30 11.390889 Anserini +test287 Q0 5683247 1 15.564077 Anserini +test287 Q0 5683242 2 15.141478 Anserini +test287 Q0 4867444 3 14.657249 Anserini +test287 Q0 5683245 4 13.448602 Anserini +test287 Q0 5683246 5 12.451391 Anserini +test287 Q0 4867445 6 12.307969 Anserini +test287 Q0 4867433 7 11.816915 Anserini +test287 Q0 12098243 8 11.799596 Anserini +test287 Q0 16281514 9 11.130038 Anserini +test287 Q0 9140811 10 10.403393 Anserini +test287 Q0 364982 11 10.219306 Anserini +test287 Q0 5683244 12 10.216732 Anserini +test287 Q0 9140812 13 10.067575 Anserini +test287 Q0 3592101 14 10.051186 Anserini +test287 Q0 16793225 15 10.018860 Anserini +test287 Q0 2972144 16 10.018860 Anserini +test287 Q0 16394549 17 9.983992 Anserini +test287 Q0 1525911 18 9.974718 Anserini +test287 Q0 4867434 19 9.959267 Anserini +test287 Q0 11537486 20 9.710386 Anserini +test287 Q0 12281412 21 9.627993 Anserini +test287 Q0 15851471 22 9.610445 Anserini +test287 Q0 4867436 23 9.599706 Anserini +test287 Q0 4867443 24 9.596912 Anserini +test287 Q0 11537483 25 9.358456 Anserini +test287 Q0 1729188 26 9.308187 Anserini +test287 Q0 6889500 27 9.299400 Anserini +test287 Q0 6947357 28 9.294922 Anserini +test287 Q0 17061035 29 9.259739 Anserini +test287 Q0 4155078 30 9.259739 Anserini +test2870 Q0 12115226 1 15.906732 Anserini +test2870 Q0 11834343 2 15.755223 Anserini +test2870 Q0 11993588 3 15.681314 Anserini +test2870 Q0 11340285 4 15.651828 Anserini +test2870 Q0 12044628 5 15.537016 Anserini +test2870 Q0 3368130 6 15.338609 Anserini +test2870 Q0 12015526 7 15.206602 Anserini +test2870 Q0 11903985 8 15.206602 Anserini +test2870 Q0 11997837 9 15.206602 Anserini +test2870 Q0 3237271 10 14.917118 Anserini +test2870 Q0 10464134 11 14.910412 Anserini +test2870 Q0 20569538 12 14.910412 Anserini +test2870 Q0 3403312 13 14.910412 Anserini +test2870 Q0 2498766 14 14.895009 Anserini +test2870 Q0 17022621 15 14.878616 Anserini +test2870 Q0 16212376 16 14.828507 Anserini +test2870 Q0 10443063 17 14.828507 Anserini +test2870 Q0 17019570 18 14.828507 Anserini +test2870 Q0 11985797 19 14.828507 Anserini +test2870 Q0 13043952 20 14.785712 Anserini +test2870 Q0 12447638 21 14.671593 Anserini +test2870 Q0 11353421 22 14.651524 Anserini +test2870 Q0 13834677 23 14.574868 Anserini +test2870 Q0 16550017 24 14.505542 Anserini +test2870 Q0 17783222 25 14.463952 Anserini +test2870 Q0 13043974 26 14.444709 Anserini +test2870 Q0 2055211 27 14.427096 Anserini +test2870 Q0 12020595 28 14.421780 Anserini +test2870 Q0 12447640 29 14.409837 Anserini +test2870 Q0 19256092 30 14.384241 Anserini +test2871 Q0 18251207 1 13.958775 Anserini +test2871 Q0 16842142 2 13.920426 Anserini +test2871 Q0 18251213 3 13.396360 Anserini +test2871 Q0 15767229 4 13.012550 Anserini +test2871 Q0 15433257 5 12.867295 Anserini +test2871 Q0 16842149 6 12.840263 Anserini +test2871 Q0 18251211 7 12.713729 Anserini +test2871 Q0 18251212 8 12.652155 Anserini +test2871 Q0 15286808 9 12.418860 Anserini +test2871 Q0 18251215 10 12.343892 Anserini +test2871 Q0 9392794 11 12.243909 Anserini +test2871 Q0 19528643 12 12.148365 Anserini +test2871 Q0 18251209 13 12.140343 Anserini +test2871 Q0 15286803 14 12.096335 Anserini +test2871 Q0 19528642 15 12.075356 Anserini +test2871 Q0 15286807 16 12.039382 Anserini +test2871 Q0 15282528 17 11.958179 Anserini +test2871 Q0 15282844 18 11.865416 Anserini +test2871 Q0 15282841 19 11.853092 Anserini +test2871 Q0 15433256 20 11.852559 Anserini +test2871 Q0 15282843 21 11.845686 Anserini +test2871 Q0 15292087 22 11.802924 Anserini +test2871 Q0 15282832 23 11.745225 Anserini +test2871 Q0 15433260 24 11.515467 Anserini +test2871 Q0 19045357 25 11.251457 Anserini +test2871 Q0 15282529 26 11.020263 Anserini +test2871 Q0 15282538 27 11.020263 Anserini +test2871 Q0 18251217 28 11.020263 Anserini +test2871 Q0 15767243 29 11.020263 Anserini +test2871 Q0 18742301 30 11.016674 Anserini +test2872 Q0 12156799 1 13.846101 Anserini +test2872 Q0 12156849 2 13.171455 Anserini +test2872 Q0 12156798 3 13.143351 Anserini +test2872 Q0 12156814 4 12.878386 Anserini +test2872 Q0 16875528 5 12.775093 Anserini +test2872 Q0 12156854 6 12.714621 Anserini +test2872 Q0 12156821 7 12.709925 Anserini +test2872 Q0 12156816 8 12.294436 Anserini +test2872 Q0 3437891 9 12.278773 Anserini +test2872 Q0 12156836 10 12.236705 Anserini +test2872 Q0 12156853 11 12.121306 Anserini +test2872 Q0 6174967 12 12.121306 Anserini +test2872 Q0 6174966 13 12.026760 Anserini +test2872 Q0 12156845 14 12.026760 Anserini +test2872 Q0 1579439 15 12.008743 Anserini +test2872 Q0 9134420 16 11.820268 Anserini +test2872 Q0 9134427 17 11.820268 Anserini +test2872 Q0 14862450 18 11.741081 Anserini +test2872 Q0 12156832 19 11.732442 Anserini +test2872 Q0 12156811 20 11.729240 Anserini +test2872 Q0 12156846 21 11.701121 Anserini +test2872 Q0 14862470 22 11.679126 Anserini +test2872 Q0 8101387 23 11.630719 Anserini +test2872 Q0 12156804 24 11.606920 Anserini +test2872 Q0 12156808 25 11.606920 Anserini +test2872 Q0 12156834 26 11.559093 Anserini +test2872 Q0 12156802 27 11.519191 Anserini +test2872 Q0 12156823 28 11.472622 Anserini +test2872 Q0 12156801 29 11.434876 Anserini +test2872 Q0 12156825 30 11.434876 Anserini +test2873 Q0 597706 1 13.714141 Anserini +test2873 Q0 5885627 2 13.364910 Anserini +test2873 Q0 18272135 3 13.236975 Anserini +test2873 Q0 3958676 4 13.068149 Anserini +test2873 Q0 9949162 5 13.002679 Anserini +test2873 Q0 6882518 6 12.948784 Anserini +test2873 Q0 5590342 7 12.837090 Anserini +test2873 Q0 16919866 8 12.798038 Anserini +test2873 Q0 3231907 9 12.704010 Anserini +test2873 Q0 1428963 10 12.694375 Anserini +test2873 Q0 5656622 11 12.646061 Anserini +test2873 Q0 10756269 12 12.609722 Anserini +test2873 Q0 20128424 13 12.604733 Anserini +test2873 Q0 12894107 14 12.501517 Anserini +test2873 Q0 6037378 15 12.497569 Anserini +test2873 Q0 3134913 16 12.488112 Anserini +test2873 Q0 12722925 17 12.366486 Anserini +test2873 Q0 16140454 18 12.258847 Anserini +test2873 Q0 5547033 19 12.252728 Anserini +test2873 Q0 7994060 20 12.250702 Anserini +test2873 Q0 14972276 21 12.218160 Anserini +test2873 Q0 2872854 22 12.179052 Anserini +test2873 Q0 1415047 23 12.173467 Anserini +test2873 Q0 19749553 24 12.147598 Anserini +test2873 Q0 7062028 25 12.147598 Anserini +test2873 Q0 10672812 26 12.135586 Anserini +test2873 Q0 1802575 27 12.088137 Anserini +test2873 Q0 8664498 28 12.080317 Anserini +test2873 Q0 12138900 29 12.070661 Anserini +test2873 Q0 16203514 30 12.070369 Anserini +test2874 Q0 3668559 1 15.056284 Anserini +test2874 Q0 2144216 2 14.117946 Anserini +test2874 Q0 11758211 3 13.314473 Anserini +test2874 Q0 15739388 4 13.188197 Anserini +test2874 Q0 9244313 5 12.759205 Anserini +test2874 Q0 9984244 6 12.730783 Anserini +test2874 Q0 11541230 7 12.709548 Anserini +test2874 Q0 5160716 8 12.440048 Anserini +test2874 Q0 16429243 9 12.397182 Anserini +test2874 Q0 14358915 10 12.372725 Anserini +test2874 Q0 1202520 11 12.289317 Anserini +test2874 Q0 14213491 12 12.283751 Anserini +test2874 Q0 15739389 13 12.241618 Anserini +test2874 Q0 3413276 14 12.225512 Anserini +test2874 Q0 11563558 15 12.210295 Anserini +test2874 Q0 18048185 16 12.113589 Anserini +test2874 Q0 3637069 17 12.077346 Anserini +test2874 Q0 15297003 18 12.014490 Anserini +test2874 Q0 9236763 19 11.963136 Anserini +test2874 Q0 2903672 20 11.925641 Anserini +test2874 Q0 12101262 21 11.918815 Anserini +test2874 Q0 13684328 22 11.879929 Anserini +test2874 Q0 6220842 23 11.867664 Anserini +test2874 Q0 13684331 24 11.804877 Anserini +test2874 Q0 5160714 25 11.778854 Anserini +test2874 Q0 6220836 26 11.723918 Anserini +test2874 Q0 719681 27 11.701027 Anserini +test2874 Q0 14213495 28 11.689878 Anserini +test2874 Q0 11541192 29 11.641338 Anserini +test2874 Q0 16429262 30 11.601642 Anserini +test2875 Q0 13220588 1 13.829889 Anserini +test2875 Q0 9138588 2 13.818441 Anserini +test2875 Q0 14074822 3 12.820434 Anserini +test2875 Q0 9139102 4 12.355462 Anserini +test2875 Q0 20110832 5 12.016882 Anserini +test2875 Q0 8379477 6 12.002468 Anserini +test2875 Q0 17562880 7 11.997915 Anserini +test2875 Q0 13421076 8 11.964768 Anserini +test2875 Q0 2828167 9 11.711455 Anserini +test2875 Q0 18655077 10 11.702580 Anserini +test2875 Q0 8379474 11 11.612086 Anserini +test2875 Q0 11110602 12 11.494545 Anserini +test2875 Q0 3276313 13 11.490841 Anserini +test2875 Q0 14511747 14 11.478089 Anserini +test2875 Q0 12926086 15 11.473748 Anserini +test2875 Q0 18401669 16 11.447169 Anserini +test2875 Q0 5113424 17 11.381519 Anserini +test2875 Q0 8484399 18 11.377952 Anserini +test2875 Q0 20090488 19 11.374686 Anserini +test2875 Q0 9530488 20 11.344962 Anserini +test2875 Q0 3719848 21 11.324776 Anserini +test2875 Q0 10722835 22 11.298279 Anserini +test2875 Q0 3702914 23 11.289013 Anserini +test2875 Q0 8386602 24 11.287467 Anserini +test2875 Q0 3610136 25 11.257922 Anserini +test2875 Q0 10838388 26 11.231775 Anserini +test2875 Q0 12634450 27 11.231155 Anserini +test2875 Q0 20839911 28 11.197260 Anserini +test2875 Q0 12568302 29 11.193231 Anserini +test2875 Q0 12802106 30 11.180077 Anserini +test2876 Q0 2904458 1 12.989642 Anserini +test2876 Q0 20366224 2 12.983088 Anserini +test2876 Q0 14688434 3 12.040989 Anserini +test2876 Q0 13434473 4 11.305012 Anserini +test2876 Q0 7702715 5 10.687222 Anserini +test2876 Q0 20717094 6 10.679611 Anserini +test2876 Q0 6956131 7 10.609064 Anserini +test2876 Q0 948305 8 10.592260 Anserini +test2876 Q0 20322035 9 10.563716 Anserini +test2876 Q0 13436497 10 10.365248 Anserini +test2876 Q0 18475721 11 10.327911 Anserini +test2876 Q0 13055734 12 10.321968 Anserini +test2876 Q0 13358460 13 10.320820 Anserini +test2876 Q0 12445120 14 10.302320 Anserini +test2876 Q0 10375826 15 10.157091 Anserini +test2876 Q0 11651539 16 10.128660 Anserini +test2876 Q0 12715993 17 10.096928 Anserini +test2876 Q0 19596201 18 10.088144 Anserini +test2876 Q0 19596204 19 10.088144 Anserini +test2876 Q0 20612181 20 10.084864 Anserini +test2876 Q0 531265 21 10.071524 Anserini +test2876 Q0 8203466 22 10.061027 Anserini +test2876 Q0 8131558 23 10.052665 Anserini +test2876 Q0 8784688 24 10.040472 Anserini +test2876 Q0 8240988 25 9.970912 Anserini +test2876 Q0 389813 26 9.970085 Anserini +test2876 Q0 8393035 27 9.952685 Anserini +test2876 Q0 20723357 28 9.943206 Anserini +test2876 Q0 4246828 29 9.906122 Anserini +test2876 Q0 3904672 30 9.906122 Anserini +test2877 Q0 16341478 1 14.877935 Anserini +test2877 Q0 3577425 2 14.189815 Anserini +test2877 Q0 3577429 3 14.176397 Anserini +test2877 Q0 3577443 4 14.116134 Anserini +test2877 Q0 16341479 5 13.826024 Anserini +test2877 Q0 15476178 6 13.793139 Anserini +test2877 Q0 3577437 7 13.777178 Anserini +test2877 Q0 3523156 8 13.528959 Anserini +test2877 Q0 16341534 9 13.513422 Anserini +test2877 Q0 3577422 10 13.508307 Anserini +test2877 Q0 17806993 11 13.408006 Anserini +test2877 Q0 17807006 12 13.318798 Anserini +test2877 Q0 3577444 13 13.236518 Anserini +test2877 Q0 2483648 14 13.184887 Anserini +test2877 Q0 3577461 15 13.172400 Anserini +test2877 Q0 5210120 16 13.069563 Anserini +test2877 Q0 3577448 17 13.047200 Anserini +test2877 Q0 5210115 18 12.971161 Anserini +test2877 Q0 5970372 19 12.843027 Anserini +test2877 Q0 16341595 20 12.811346 Anserini +test2877 Q0 3577435 21 12.784384 Anserini +test2877 Q0 16341486 22 12.747220 Anserini +test2877 Q0 6376734 23 12.742671 Anserini +test2877 Q0 17806991 24 12.732670 Anserini +test2877 Q0 17807001 25 12.727175 Anserini +test2877 Q0 5210176 26 12.711071 Anserini +test2877 Q0 3577462 27 12.671499 Anserini +test2877 Q0 16037524 28 12.671252 Anserini +test2877 Q0 16341526 29 12.665146 Anserini +test2877 Q0 17807007 30 12.656910 Anserini +test2878 Q0 4994998 1 12.885477 Anserini +test2878 Q0 1650374 2 12.363699 Anserini +test2878 Q0 154986 3 12.331344 Anserini +test2878 Q0 429283 4 12.189338 Anserini +test2878 Q0 10057561 5 11.839345 Anserini +test2878 Q0 1655166 6 11.697775 Anserini +test2878 Q0 191940 7 11.692350 Anserini +test2878 Q0 3969951 8 11.671522 Anserini +test2878 Q0 1565343 9 11.590590 Anserini +test2878 Q0 1675217 10 11.553391 Anserini +test2878 Q0 9517830 11 11.516706 Anserini +test2878 Q0 13801578 12 11.474908 Anserini +test2878 Q0 16272242 13 11.321548 Anserini +test2878 Q0 597979 14 11.087714 Anserini +test2878 Q0 10380374 15 11.004453 Anserini +test2878 Q0 18485667 16 11.002059 Anserini +test2878 Q0 298261 17 10.983770 Anserini +test2878 Q0 19404065 18 10.983770 Anserini +test2878 Q0 2237322 19 10.983770 Anserini +test2878 Q0 10806754 20 10.893273 Anserini +test2878 Q0 962221 21 10.866913 Anserini +test2878 Q0 1288602 22 10.785513 Anserini +test2878 Q0 4685620 23 10.780748 Anserini +test2878 Q0 218179 24 10.757289 Anserini +test2878 Q0 4884469 25 10.752518 Anserini +test2878 Q0 11267758 26 10.586084 Anserini +test2878 Q0 402005 27 10.563172 Anserini +test2878 Q0 536877 28 10.548903 Anserini +test2878 Q0 8657766 29 10.497488 Anserini +test2878 Q0 3816519 30 10.397633 Anserini +test2879 Q0 14443723 1 14.040618 Anserini +test2879 Q0 3246475 2 12.893840 Anserini +test2879 Q0 11591738 3 12.461331 Anserini +test2879 Q0 1580958 4 12.387445 Anserini +test2879 Q0 11712350 5 12.359179 Anserini +test2879 Q0 18333667 6 12.342188 Anserini +test2879 Q0 7420392 7 12.338195 Anserini +test2879 Q0 9275568 8 12.125655 Anserini +test2879 Q0 17423454 9 12.007913 Anserini +test2879 Q0 15829920 10 11.872693 Anserini +test2879 Q0 16728681 11 11.871511 Anserini +test2879 Q0 7749396 12 11.699634 Anserini +test2879 Q0 1345380 13 11.668694 Anserini +test2879 Q0 9236797 14 11.660073 Anserini +test2879 Q0 3281455 15 11.542672 Anserini +test2879 Q0 14303627 16 11.525123 Anserini +test2879 Q0 9989167 17 11.415700 Anserini +test2879 Q0 5963491 18 11.398752 Anserini +test2879 Q0 1580963 19 11.289504 Anserini +test2879 Q0 1397617 20 11.173062 Anserini +test2879 Q0 11732873 21 11.167547 Anserini +test2879 Q0 18242166 22 11.144300 Anserini +test2879 Q0 17381088 23 11.113051 Anserini +test2879 Q0 2479456 24 11.088012 Anserini +test2879 Q0 3343073 25 11.077857 Anserini +test2879 Q0 507391 26 11.070391 Anserini +test2879 Q0 10331935 27 11.058305 Anserini +test2879 Q0 16562315 28 11.048930 Anserini +test2879 Q0 12567785 29 10.969936 Anserini +test2879 Q0 20963161 30 10.963407 Anserini +test288 Q0 17211025 1 22.090788 Anserini +test288 Q0 16904290 2 19.599319 Anserini +test288 Q0 15213504 3 19.210749 Anserini +test288 Q0 17211027 4 18.921768 Anserini +test288 Q0 16904291 5 18.914570 Anserini +test288 Q0 10962373 6 18.804432 Anserini +test288 Q0 18199026 7 18.697245 Anserini +test288 Q0 18521762 8 18.688669 Anserini +test288 Q0 17211029 9 18.577808 Anserini +test288 Q0 17206555 10 17.929966 Anserini +test288 Q0 5568568 11 17.904634 Anserini +test288 Q0 6367001 12 17.897554 Anserini +test288 Q0 8757527 13 17.721966 Anserini +test288 Q0 16587820 14 17.631500 Anserini +test288 Q0 4701379 15 17.430456 Anserini +test288 Q0 11579837 16 17.340021 Anserini +test288 Q0 5570925 17 17.327648 Anserini +test288 Q0 11579838 18 17.260536 Anserini +test288 Q0 20586707 19 17.260298 Anserini +test288 Q0 19100715 20 17.219831 Anserini +test288 Q0 14525568 21 17.132847 Anserini +test288 Q0 20309510 22 17.071960 Anserini +test288 Q0 16904292 23 16.975382 Anserini +test288 Q0 16138138 24 16.952518 Anserini +test288 Q0 1361344 25 16.913626 Anserini +test288 Q0 17731898 26 16.898943 Anserini +test288 Q0 17162850 27 16.892113 Anserini +test288 Q0 5031428 28 16.891869 Anserini +test288 Q0 16053535 29 16.793642 Anserini +test288 Q0 14941758 30 16.788965 Anserini +test2880 Q0 4297311 1 17.709169 Anserini +test2880 Q0 627721 2 17.350889 Anserini +test2880 Q0 8423897 3 17.009325 Anserini +test2880 Q0 11609338 4 16.720814 Anserini +test2880 Q0 10291206 5 16.629026 Anserini +test2880 Q0 1466160 6 16.484539 Anserini +test2880 Q0 6096431 7 16.469105 Anserini +test2880 Q0 17426588 8 16.395458 Anserini +test2880 Q0 1271808 9 16.278404 Anserini +test2880 Q0 7501685 10 16.276793 Anserini +test2880 Q0 723335 11 15.950089 Anserini +test2880 Q0 19868892 12 15.904747 Anserini +test2880 Q0 144230 13 15.857742 Anserini +test2880 Q0 1371910 14 15.651296 Anserini +test2880 Q0 4626940 15 15.646943 Anserini +test2880 Q0 541570 16 15.635282 Anserini +test2880 Q0 3236164 17 15.626187 Anserini +test2880 Q0 19359652 18 15.594791 Anserini +test2880 Q0 1065245 19 15.577798 Anserini +test2880 Q0 1489777 20 15.529801 Anserini +test2880 Q0 4043168 21 15.521621 Anserini +test2880 Q0 957022 22 15.503321 Anserini +test2880 Q0 2753384 23 15.399365 Anserini +test2880 Q0 1387560 24 15.398837 Anserini +test2880 Q0 525076 25 15.396963 Anserini +test2880 Q0 7392588 26 15.376960 Anserini +test2880 Q0 8437449 27 15.374227 Anserini +test2880 Q0 346763 28 15.334308 Anserini +test2880 Q0 7350148 29 15.316131 Anserini +test2880 Q0 723338 30 15.281994 Anserini +test2881 Q0 139492 1 20.960466 Anserini +test2881 Q0 139491 2 20.544327 Anserini +test2881 Q0 139490 3 20.292927 Anserini +test2881 Q0 370767 4 18.588099 Anserini +test2881 Q0 3905258 5 18.568998 Anserini +test2881 Q0 11856578 6 18.250622 Anserini +test2881 Q0 19031753 7 17.932873 Anserini +test2881 Q0 16858915 8 17.843340 Anserini +test2881 Q0 3415180 9 17.786835 Anserini +test2881 Q0 6490111 10 17.731457 Anserini +test2881 Q0 1483400 11 17.230297 Anserini +test2881 Q0 13983792 12 17.230297 Anserini +test2881 Q0 79683 13 17.129711 Anserini +test2881 Q0 2621335 14 17.053913 Anserini +test2881 Q0 2138868 15 16.711540 Anserini +test2881 Q0 5030376 16 16.567356 Anserini +test2881 Q0 23694 17 16.553318 Anserini +test2881 Q0 5291529 18 16.474636 Anserini +test2881 Q0 17434707 19 16.129375 Anserini +test2881 Q0 3870279 20 16.038979 Anserini +test2881 Q0 9200658 21 16.028385 Anserini +test2881 Q0 17048087 22 15.956840 Anserini +test2881 Q0 8451586 23 15.956840 Anserini +test2881 Q0 641568 24 15.956840 Anserini +test2881 Q0 6490115 25 15.956840 Anserini +test2881 Q0 6418237 26 15.951319 Anserini +test2881 Q0 370768 27 15.945397 Anserini +test2881 Q0 4856371 28 15.937216 Anserini +test2881 Q0 3510565 29 15.847099 Anserini +test2881 Q0 19592432 30 15.847099 Anserini +test2882 Q0 19981080 1 15.848469 Anserini +test2882 Q0 1675470 2 15.720436 Anserini +test2882 Q0 13338929 3 14.808112 Anserini +test2882 Q0 12772933 4 14.339761 Anserini +test2882 Q0 15497954 5 13.922462 Anserini +test2882 Q0 1675460 6 13.890277 Anserini +test2882 Q0 9221309 7 13.793254 Anserini +test2882 Q0 1675468 8 13.573195 Anserini +test2882 Q0 13338911 9 13.532246 Anserini +test2882 Q0 5321008 10 13.514421 Anserini +test2882 Q0 13338978 11 13.242405 Anserini +test2882 Q0 19975061 12 13.236611 Anserini +test2882 Q0 19549312 13 13.162349 Anserini +test2882 Q0 893119 14 13.000265 Anserini +test2882 Q0 5321025 15 12.981922 Anserini +test2882 Q0 1675451 16 12.975876 Anserini +test2882 Q0 12408363 17 12.938703 Anserini +test2882 Q0 1675452 18 12.934608 Anserini +test2882 Q0 3239302 19 12.932697 Anserini +test2882 Q0 3034329 20 12.932567 Anserini +test2882 Q0 18789333 21 12.916882 Anserini +test2882 Q0 12408362 22 12.896584 Anserini +test2882 Q0 7386299 23 12.876481 Anserini +test2882 Q0 11981182 24 12.834250 Anserini +test2882 Q0 16675797 25 12.825831 Anserini +test2882 Q0 12148052 26 12.766555 Anserini +test2882 Q0 11983422 27 12.756475 Anserini +test2882 Q0 6052673 28 12.715858 Anserini +test2882 Q0 4036797 29 12.694412 Anserini +test2882 Q0 5273304 30 12.666340 Anserini +test2883 Q0 9367805 1 16.710175 Anserini +test2883 Q0 811425 2 16.368492 Anserini +test2883 Q0 14081920 3 16.109095 Anserini +test2883 Q0 1949982 4 15.900052 Anserini +test2883 Q0 4761819 5 15.682379 Anserini +test2883 Q0 9110128 6 15.578001 Anserini +test2883 Q0 6560128 7 15.325666 Anserini +test2883 Q0 4298583 8 14.957989 Anserini +test2883 Q0 4092530 9 14.947520 Anserini +test2883 Q0 811429 10 14.916721 Anserini +test2883 Q0 4761825 11 14.771333 Anserini +test2883 Q0 20996191 12 14.751116 Anserini +test2883 Q0 9367803 13 14.749766 Anserini +test2883 Q0 6552158 14 14.664112 Anserini +test2883 Q0 4761820 15 14.658424 Anserini +test2883 Q0 1421408 16 14.566756 Anserini +test2883 Q0 6552155 17 14.414220 Anserini +test2883 Q0 9110127 18 14.279381 Anserini +test2883 Q0 14736371 19 13.801935 Anserini +test2883 Q0 4008621 20 13.724440 Anserini +test2883 Q0 5877849 21 13.669301 Anserini +test2883 Q0 10495602 22 13.553382 Anserini +test2883 Q0 4539275 23 13.505740 Anserini +test2883 Q0 811430 24 13.503817 Anserini +test2883 Q0 9098941 25 13.500711 Anserini +test2883 Q0 5843169 26 13.427317 Anserini +test2883 Q0 16674855 27 13.409823 Anserini +test2883 Q0 4539284 28 13.408529 Anserini +test2883 Q0 811452 29 13.366459 Anserini +test2883 Q0 1761474 30 13.312815 Anserini +test2884 Q0 6527858 1 12.040547 Anserini +test2884 Q0 7801945 2 11.563414 Anserini +test2884 Q0 7801946 3 11.563414 Anserini +test2884 Q0 3941521 4 11.109802 Anserini +test2884 Q0 14562925 5 10.406196 Anserini +test2884 Q0 13700648 6 10.149386 Anserini +test2884 Q0 6527853 7 9.606681 Anserini +test2884 Q0 6527857 8 9.577238 Anserini +test2884 Q0 6527863 9 9.479002 Anserini +test2884 Q0 6527847 10 9.430636 Anserini +test2884 Q0 8067706 11 9.420302 Anserini +test2884 Q0 8067716 12 9.270309 Anserini +test2884 Q0 7490026 13 9.093064 Anserini +test2884 Q0 8447941 14 8.938712 Anserini +test2884 Q0 9144387 15 8.912949 Anserini +test2884 Q0 15087089 16 8.901977 Anserini +test2884 Q0 9360106 17 8.858564 Anserini +test2884 Q0 10914728 18 8.782577 Anserini +test2884 Q0 5208448 19 8.773792 Anserini +test2884 Q0 18535796 20 8.736068 Anserini +test2884 Q0 8067730 21 8.733267 Anserini +test2884 Q0 2780257 22 8.681952 Anserini +test2884 Q0 15462945 23 8.676996 Anserini +test2884 Q0 16554560 24 8.672915 Anserini +test2884 Q0 14506138 25 8.665085 Anserini +test2884 Q0 14506134 26 8.665085 Anserini +test2884 Q0 5548711 27 8.651025 Anserini +test2884 Q0 18548554 28 8.599344 Anserini +test2884 Q0 12535471 29 8.599344 Anserini +test2884 Q0 6527854 30 8.531098 Anserini +test2885 Q0 19646287 1 8.842196 Anserini +test2885 Q0 19646286 2 8.805094 Anserini +test2885 Q0 16520115 3 8.639174 Anserini +test2885 Q0 19627707 4 8.472963 Anserini +test2885 Q0 18202770 5 8.369738 Anserini +test2885 Q0 10830938 6 8.209336 Anserini +test2885 Q0 18202849 7 8.205523 Anserini +test2885 Q0 5851918 8 8.006598 Anserini +test2885 Q0 18622361 9 7.909056 Anserini +test2885 Q0 20817487 10 7.883765 Anserini +test2885 Q0 20817491 11 7.883765 Anserini +test2885 Q0 18926257 12 7.841743 Anserini +test2885 Q0 18176872 13 7.835693 Anserini +test2885 Q0 18203122 14 7.826122 Anserini +test2885 Q0 18926250 15 7.815158 Anserini +test2885 Q0 19627710 16 7.815158 Anserini +test2885 Q0 18176873 17 7.784795 Anserini +test2885 Q0 18176820 18 7.784795 Anserini +test2885 Q0 18175835 19 7.778285 Anserini +test2885 Q0 17997778 20 7.767688 Anserini +test2885 Q0 476438 21 7.750688 Anserini +test2885 Q0 14853483 22 7.699437 Anserini +test2885 Q0 156097 23 7.689258 Anserini +test2885 Q0 17038391 24 7.675437 Anserini +test2885 Q0 5880949 25 7.663320 Anserini +test2885 Q0 11299431 26 7.663320 Anserini +test2885 Q0 5880953 27 7.648698 Anserini +test2885 Q0 904086 28 7.648459 Anserini +test2885 Q0 17997779 29 7.547957 Anserini +test2885 Q0 14853489 30 7.545856 Anserini +test2886 Q0 18887646 1 9.211694 Anserini +test2886 Q0 12077885 2 9.179230 Anserini +test2886 Q0 6688672 3 9.068770 Anserini +test2886 Q0 2931791 4 9.025090 Anserini +test2886 Q0 5873394 5 8.986885 Anserini +test2886 Q0 1635207 6 8.984163 Anserini +test2886 Q0 15999157 7 8.982002 Anserini +test2886 Q0 6003612 8 8.942371 Anserini +test2886 Q0 4171365 9 8.919497 Anserini +test2886 Q0 4171363 10 8.919497 Anserini +test2886 Q0 5595431 11 8.906384 Anserini +test2886 Q0 2859978 12 8.885496 Anserini +test2886 Q0 6003613 13 8.841585 Anserini +test2886 Q0 93349 14 8.828913 Anserini +test2886 Q0 316079 15 8.827435 Anserini +test2886 Q0 3532822 16 8.814487 Anserini +test2886 Q0 18887647 17 8.809938 Anserini +test2886 Q0 7760394 18 8.806266 Anserini +test2886 Q0 5913821 19 8.789013 Anserini +test2886 Q0 10946944 20 8.773360 Anserini +test2886 Q0 9770740 21 8.748262 Anserini +test2886 Q0 18731130 22 8.708667 Anserini +test2886 Q0 11793152 23 8.698534 Anserini +test2886 Q0 6964533 24 8.690453 Anserini +test2886 Q0 1328192 25 8.689398 Anserini +test2886 Q0 5723082 26 8.683929 Anserini +test2886 Q0 3512844 27 8.680515 Anserini +test2886 Q0 12836553 28 8.680515 Anserini +test2886 Q0 6012011 29 8.647827 Anserini +test2886 Q0 780137 30 8.619209 Anserini +test2887 Q0 10345432 1 10.880965 Anserini +test2887 Q0 4419479 2 10.259075 Anserini +test2887 Q0 4419485 3 10.259075 Anserini +test2887 Q0 4936414 4 9.138056 Anserini +test2887 Q0 1084771 5 9.122499 Anserini +test2887 Q0 9914110 6 9.069382 Anserini +test2887 Q0 10346944 7 8.995369 Anserini +test2887 Q0 18267881 8 8.953497 Anserini +test2887 Q0 10345437 9 8.936680 Anserini +test2887 Q0 4893113 10 8.877233 Anserini +test2887 Q0 12597449 11 8.756814 Anserini +test2887 Q0 15350123 12 8.737774 Anserini +test2887 Q0 4972666 13 8.704373 Anserini +test2887 Q0 11903437 14 8.648007 Anserini +test2887 Q0 12147490 15 8.594924 Anserini +test2887 Q0 5109609 16 8.583709 Anserini +test2887 Q0 15146779 17 8.571005 Anserini +test2887 Q0 3544466 18 8.542409 Anserini +test2887 Q0 178225 19 8.502151 Anserini +test2887 Q0 371202 20 8.487770 Anserini +test2887 Q0 13336777 21 8.477138 Anserini +test2887 Q0 20092604 22 8.468859 Anserini +test2887 Q0 16225185 23 8.466144 Anserini +test2887 Q0 6569514 24 8.442298 Anserini +test2887 Q0 10125406 25 8.426014 Anserini +test2887 Q0 10173181 26 8.398109 Anserini +test2887 Q0 5816908 27 8.343280 Anserini +test2887 Q0 18559573 28 8.325987 Anserini +test2887 Q0 14659675 29 8.322996 Anserini +test2887 Q0 21012863 30 8.310736 Anserini +test2888 Q0 10385321 1 9.853639 Anserini +test2888 Q0 20702213 2 9.642065 Anserini +test2888 Q0 11381311 3 9.632347 Anserini +test2888 Q0 15543086 4 9.198637 Anserini +test2888 Q0 12767360 5 9.190194 Anserini +test2888 Q0 9757021 6 9.114182 Anserini +test2888 Q0 66708 7 9.067739 Anserini +test2888 Q0 12154169 8 8.862868 Anserini +test2888 Q0 1668922 9 8.855655 Anserini +test2888 Q0 18443435 10 8.814151 Anserini +test2888 Q0 3195858 11 8.773085 Anserini +test2888 Q0 15765532 12 8.602653 Anserini +test2888 Q0 17839341 13 8.556440 Anserini +test2888 Q0 14067712 14 8.556440 Anserini +test2888 Q0 16377361 15 8.539888 Anserini +test2888 Q0 5703773 16 8.506918 Anserini +test2888 Q0 2733971 17 8.444583 Anserini +test2888 Q0 15765526 18 8.422003 Anserini +test2888 Q0 8779262 19 8.384804 Anserini +test2888 Q0 16370884 20 8.346259 Anserini +test2888 Q0 4629148 21 8.281819 Anserini +test2888 Q0 2134324 22 8.218942 Anserini +test2888 Q0 5336599 23 8.202191 Anserini +test2888 Q0 17978051 24 8.193963 Anserini +test2888 Q0 15050923 25 8.189645 Anserini +test2888 Q0 2459463 26 8.181972 Anserini +test2888 Q0 13835411 27 8.179297 Anserini +test2888 Q0 10804133 28 8.159885 Anserini +test2888 Q0 15351697 29 8.158455 Anserini +test2888 Q0 12511278 30 8.116746 Anserini +test2889 Q0 20425009 1 18.116976 Anserini +test2889 Q0 20425012 2 18.116976 Anserini +test2889 Q0 1178470 3 17.949032 Anserini +test2889 Q0 16865757 4 17.617336 Anserini +test2889 Q0 16865760 5 17.165525 Anserini +test2889 Q0 1801959 6 17.065271 Anserini +test2889 Q0 1178478 7 17.010794 Anserini +test2889 Q0 921792 8 16.669733 Anserini +test2889 Q0 1178465 9 16.609684 Anserini +test2889 Q0 18252650 10 16.318991 Anserini +test2889 Q0 11401860 11 16.032848 Anserini +test2889 Q0 1802037 12 15.993820 Anserini +test2889 Q0 11401859 13 15.858195 Anserini +test2889 Q0 13945220 14 15.783385 Anserini +test2889 Q0 11762995 15 15.510276 Anserini +test2889 Q0 18857730 16 15.337551 Anserini +test2889 Q0 2594503 17 15.239221 Anserini +test2889 Q0 9173081 18 15.232641 Anserini +test2889 Q0 1178467 19 15.150716 Anserini +test2889 Q0 18857782 20 15.132204 Anserini +test2889 Q0 18857781 21 15.057130 Anserini +test2889 Q0 11271708 22 14.917804 Anserini +test2889 Q0 18953662 23 14.903791 Anserini +test2889 Q0 8416209 24 14.901420 Anserini +test2889 Q0 8416221 25 14.824053 Anserini +test2889 Q0 8255113 26 14.815018 Anserini +test2889 Q0 4757492 27 14.806553 Anserini +test2889 Q0 4757498 28 14.806553 Anserini +test2889 Q0 6086604 29 14.746376 Anserini +test2889 Q0 11271700 30 14.743381 Anserini +test289 Q0 18362751 1 11.226263 Anserini +test289 Q0 19869938 2 10.796366 Anserini +test289 Q0 4432499 3 10.757043 Anserini +test289 Q0 9169084 4 10.714988 Anserini +test289 Q0 18432356 5 10.647411 Anserini +test289 Q0 2293720 6 10.589192 Anserini +test289 Q0 11988763 7 10.567588 Anserini +test289 Q0 12996571 8 10.506635 Anserini +test289 Q0 17810200 9 10.339448 Anserini +test289 Q0 17003725 10 10.333442 Anserini +test289 Q0 7431701 11 10.301646 Anserini +test289 Q0 4697845 12 10.169451 Anserini +test289 Q0 2380458 13 10.160892 Anserini +test289 Q0 4990932 14 10.095387 Anserini +test289 Q0 4432411 15 10.084005 Anserini +test289 Q0 12152213 16 10.024940 Anserini +test289 Q0 14222582 17 10.006037 Anserini +test289 Q0 11756238 18 10.000586 Anserini +test289 Q0 17759797 19 9.984776 Anserini +test289 Q0 17759794 20 9.984776 Anserini +test289 Q0 3850989 21 9.966142 Anserini +test289 Q0 4117223 22 9.917624 Anserini +test289 Q0 18775275 23 9.872467 Anserini +test289 Q0 6718774 24 9.872467 Anserini +test289 Q0 7048433 25 9.871682 Anserini +test289 Q0 16379629 26 9.848178 Anserini +test289 Q0 19085686 27 9.824374 Anserini +test289 Q0 10847931 28 9.809928 Anserini +test289 Q0 9909391 29 9.799062 Anserini +test289 Q0 82072 30 9.797876 Anserini +test2890 Q0 541003 1 10.851398 Anserini +test2890 Q0 541016 2 10.851398 Anserini +test2890 Q0 544959 3 10.493380 Anserini +test2890 Q0 13903626 4 10.205288 Anserini +test2890 Q0 541011 5 9.957095 Anserini +test2890 Q0 1807310 6 9.867538 Anserini +test2890 Q0 6289918 7 9.837162 Anserini +test2890 Q0 9504356 8 9.793444 Anserini +test2890 Q0 6289921 9 9.776425 Anserini +test2890 Q0 811329 10 9.678284 Anserini +test2890 Q0 811340 11 9.678284 Anserini +test2890 Q0 16907804 12 9.532540 Anserini +test2890 Q0 16907803 13 9.493629 Anserini +test2890 Q0 3318725 14 9.444834 Anserini +test2890 Q0 16891581 15 9.398177 Anserini +test2890 Q0 4795246 16 9.367725 Anserini +test2890 Q0 17466291 17 9.367163 Anserini +test2890 Q0 7403096 18 9.318349 Anserini +test2890 Q0 7403102 19 9.318349 Anserini +test2890 Q0 17466267 20 9.306826 Anserini +test2890 Q0 541013 21 9.302490 Anserini +test2890 Q0 12277258 22 9.298752 Anserini +test2890 Q0 16721780 23 9.294414 Anserini +test2890 Q0 12634607 24 9.291593 Anserini +test2890 Q0 14744949 25 9.279110 Anserini +test2890 Q0 17466283 26 9.257964 Anserini +test2890 Q0 17466288 27 9.215153 Anserini +test2890 Q0 17466295 28 9.200315 Anserini +test2890 Q0 8379533 29 9.192657 Anserini +test2890 Q0 17466273 30 9.183719 Anserini +test2891 Q0 12705883 1 10.319784 Anserini +test2891 Q0 15320517 2 9.987557 Anserini +test2891 Q0 2326937 3 9.777653 Anserini +test2891 Q0 6276766 4 9.763398 Anserini +test2891 Q0 6276752 5 9.763398 Anserini +test2891 Q0 20541209 6 9.628560 Anserini +test2891 Q0 19551380 7 9.561459 Anserini +test2891 Q0 15547744 8 9.557599 Anserini +test2891 Q0 8962622 9 9.499029 Anserini +test2891 Q0 19939853 10 9.491594 Anserini +test2891 Q0 19939856 11 9.426841 Anserini +test2891 Q0 20541210 12 9.426083 Anserini +test2891 Q0 12705886 13 9.423264 Anserini +test2891 Q0 15912926 14 9.405236 Anserini +test2891 Q0 9281666 15 9.369847 Anserini +test2891 Q0 6852282 16 9.312437 Anserini +test2891 Q0 9281670 17 9.303231 Anserini +test2891 Q0 9777831 18 9.279471 Anserini +test2891 Q0 9777827 19 9.279471 Anserini +test2891 Q0 12602455 20 9.221088 Anserini +test2891 Q0 372969 21 9.143029 Anserini +test2891 Q0 12705884 22 9.126669 Anserini +test2891 Q0 20629097 23 9.098475 Anserini +test2891 Q0 20629099 24 9.098475 Anserini +test2891 Q0 547027 25 9.032287 Anserini +test2891 Q0 8667936 26 8.985308 Anserini +test2891 Q0 8747401 27 8.985086 Anserini +test2891 Q0 13436486 28 8.971367 Anserini +test2891 Q0 2686597 29 8.956863 Anserini +test2891 Q0 20530584 30 8.929479 Anserini +test2892 Q0 20124382 1 12.376634 Anserini +test2892 Q0 13379659 2 11.583022 Anserini +test2892 Q0 290374 3 11.091914 Anserini +test2892 Q0 18668763 4 10.961212 Anserini +test2892 Q0 18668773 5 10.881203 Anserini +test2892 Q0 18668767 6 10.800152 Anserini +test2892 Q0 18668754 7 10.758039 Anserini +test2892 Q0 11523048 8 10.702120 Anserini +test2892 Q0 291380 9 10.602130 Anserini +test2892 Q0 18668725 10 10.353512 Anserini +test2892 Q0 18668753 11 10.299583 Anserini +test2892 Q0 18668724 12 10.299583 Anserini +test2892 Q0 18668758 13 10.286701 Anserini +test2892 Q0 4184285 14 10.246213 Anserini +test2892 Q0 18668772 15 10.193394 Anserini +test2892 Q0 18668726 16 10.179905 Anserini +test2892 Q0 18668764 17 10.179905 Anserini +test2892 Q0 18793966 18 10.179905 Anserini +test2892 Q0 18668765 19 10.127394 Anserini +test2892 Q0 291399 20 9.828051 Anserini +test2892 Q0 11523049 21 9.828051 Anserini +test2892 Q0 291366 22 9.828051 Anserini +test2892 Q0 18668743 23 9.823988 Anserini +test2892 Q0 18668760 24 9.823988 Anserini +test2892 Q0 18668770 25 9.766562 Anserini +test2892 Q0 291374 26 9.755752 Anserini +test2892 Q0 107208 27 9.709816 Anserini +test2892 Q0 15809624 28 9.709816 Anserini +test2892 Q0 3284128 29 9.708762 Anserini +test2892 Q0 1490166 30 9.704220 Anserini +test2893 Q0 18667107 1 9.697562 Anserini +test2893 Q0 3045790 2 9.518588 Anserini +test2893 Q0 9309601 3 9.321375 Anserini +test2893 Q0 2281675 4 9.285260 Anserini +test2893 Q0 2990777 5 9.071966 Anserini +test2893 Q0 2990788 6 8.854269 Anserini +test2893 Q0 2281690 7 8.829613 Anserini +test2893 Q0 19372316 8 8.752465 Anserini +test2893 Q0 2527351 9 8.752461 Anserini +test2893 Q0 6370390 10 8.718277 Anserini +test2893 Q0 17172845 11 8.701432 Anserini +test2893 Q0 5286083 12 8.667982 Anserini +test2893 Q0 9533177 13 8.645685 Anserini +test2893 Q0 18667103 14 8.602160 Anserini +test2893 Q0 5934528 15 8.538375 Anserini +test2893 Q0 20466826 16 8.535953 Anserini +test2893 Q0 4308874 17 8.531822 Anserini +test2893 Q0 4231617 18 8.499641 Anserini +test2893 Q0 17419907 19 8.491472 Anserini +test2893 Q0 14840265 20 8.429117 Anserini +test2893 Q0 7716157 21 8.420712 Anserini +test2893 Q0 3222524 22 8.347051 Anserini +test2893 Q0 2291009 23 8.344103 Anserini +test2893 Q0 2527332 24 8.337679 Anserini +test2893 Q0 2990782 25 8.311842 Anserini +test2893 Q0 3621836 26 8.298958 Anserini +test2893 Q0 13741171 27 8.251637 Anserini +test2893 Q0 4231630 28 8.215710 Anserini +test2893 Q0 17997990 29 8.210711 Anserini +test2893 Q0 12844723 30 8.181060 Anserini +test2894 Q0 11886946 1 12.517458 Anserini +test2894 Q0 1349558 2 12.266540 Anserini +test2894 Q0 551534 3 12.081593 Anserini +test2894 Q0 10471008 4 12.051952 Anserini +test2894 Q0 12745019 5 11.920731 Anserini +test2894 Q0 20979065 6 11.710203 Anserini +test2894 Q0 2333551 7 11.502798 Anserini +test2894 Q0 89421 8 11.422015 Anserini +test2894 Q0 551554 9 11.416763 Anserini +test2894 Q0 7188721 10 11.360131 Anserini +test2894 Q0 179056 11 11.324752 Anserini +test2894 Q0 333751 12 11.245858 Anserini +test2894 Q0 560351 13 11.206034 Anserini +test2894 Q0 16014053 14 11.206034 Anserini +test2894 Q0 3999192 15 11.193613 Anserini +test2894 Q0 7873236 16 11.149830 Anserini +test2894 Q0 20941276 17 11.110348 Anserini +test2894 Q0 15972521 18 11.094873 Anserini +test2894 Q0 3417671 19 10.976940 Anserini +test2894 Q0 17109881 20 10.915901 Anserini +test2894 Q0 20117420 21 10.894626 Anserini +test2894 Q0 216123 22 10.870301 Anserini +test2894 Q0 20520574 23 10.835389 Anserini +test2894 Q0 21010045 24 10.786913 Anserini +test2894 Q0 1900193 25 10.758625 Anserini +test2894 Q0 8087651 26 10.652338 Anserini +test2894 Q0 13836814 27 10.642719 Anserini +test2894 Q0 3442562 28 10.642388 Anserini +test2894 Q0 7489779 29 10.631784 Anserini +test2894 Q0 3411757 30 10.599813 Anserini +test2895 Q0 17277424 1 19.377602 Anserini +test2895 Q0 17277416 2 17.522545 Anserini +test2895 Q0 17985467 3 16.267075 Anserini +test2895 Q0 17277444 4 15.492363 Anserini +test2895 Q0 17985495 5 15.380906 Anserini +test2895 Q0 17985483 6 15.177761 Anserini +test2895 Q0 17985494 7 15.093511 Anserini +test2895 Q0 17277432 8 15.032801 Anserini +test2895 Q0 19440529 9 14.884329 Anserini +test2895 Q0 17277442 10 14.593453 Anserini +test2895 Q0 17985469 11 14.052890 Anserini +test2895 Q0 19440528 12 13.907395 Anserini +test2895 Q0 17985473 13 13.678349 Anserini +test2895 Q0 17277419 14 13.517122 Anserini +test2895 Q0 19440510 15 13.400819 Anserini +test2895 Q0 17277438 16 13.189029 Anserini +test2895 Q0 17985496 17 13.098523 Anserini +test2895 Q0 17985471 18 13.098523 Anserini +test2895 Q0 17277436 19 13.081927 Anserini +test2895 Q0 17277423 20 13.023079 Anserini +test2895 Q0 17277421 21 13.009414 Anserini +test2895 Q0 17277418 22 12.985888 Anserini +test2895 Q0 17985478 23 12.930726 Anserini +test2895 Q0 17985491 24 12.359591 Anserini +test2895 Q0 19440518 25 12.277065 Anserini +test2895 Q0 17277437 26 12.277065 Anserini +test2895 Q0 17277433 27 12.177015 Anserini +test2895 Q0 17277439 28 12.177015 Anserini +test2895 Q0 17985468 29 12.177015 Anserini +test2895 Q0 17277426 30 12.090242 Anserini +test2896 Q0 540393 1 14.429440 Anserini +test2896 Q0 540387 2 13.780524 Anserini +test2896 Q0 19488350 3 13.411091 Anserini +test2896 Q0 12313249 4 13.216224 Anserini +test2896 Q0 8169762 5 13.091978 Anserini +test2896 Q0 18418548 6 12.520355 Anserini +test2896 Q0 7377049 7 12.321778 Anserini +test2896 Q0 9600054 8 12.183248 Anserini +test2896 Q0 9116771 9 12.001773 Anserini +test2896 Q0 540388 10 11.994346 Anserini +test2896 Q0 14114207 11 11.965835 Anserini +test2896 Q0 19183787 12 11.945624 Anserini +test2896 Q0 19183785 13 11.773039 Anserini +test2896 Q0 540398 14 11.739895 Anserini +test2896 Q0 540386 15 11.720572 Anserini +test2896 Q0 7966772 16 11.712885 Anserini +test2896 Q0 18988975 17 11.644000 Anserini +test2896 Q0 10710586 18 11.633245 Anserini +test2896 Q0 9600053 19 11.555010 Anserini +test2896 Q0 9600056 20 11.555010 Anserini +test2896 Q0 9116776 21 11.478341 Anserini +test2896 Q0 14886555 22 11.433871 Anserini +test2896 Q0 540385 23 11.341660 Anserini +test2896 Q0 866416 24 11.257585 Anserini +test2896 Q0 9116775 25 11.192150 Anserini +test2896 Q0 4876303 26 11.168078 Anserini +test2896 Q0 6873432 27 11.117303 Anserini +test2896 Q0 19183786 28 11.113472 Anserini +test2896 Q0 2155275 29 11.029506 Anserini +test2896 Q0 8169761 30 11.000457 Anserini +test2897 Q0 6645679 1 9.900446 Anserini +test2897 Q0 4600228 2 9.216289 Anserini +test2897 Q0 249525 3 9.150797 Anserini +test2897 Q0 561862 4 9.143761 Anserini +test2897 Q0 14123512 5 9.069351 Anserini +test2897 Q0 1536295 6 8.968329 Anserini +test2897 Q0 14426070 7 8.861003 Anserini +test2897 Q0 8686245 8 8.717752 Anserini +test2897 Q0 5828920 9 8.647255 Anserini +test2897 Q0 4068974 10 8.600360 Anserini +test2897 Q0 177206 11 8.577867 Anserini +test2897 Q0 10757662 12 8.490755 Anserini +test2897 Q0 13318473 13 8.488070 Anserini +test2897 Q0 8791427 14 8.477468 Anserini +test2897 Q0 2153676 15 8.477468 Anserini +test2897 Q0 2674639 16 8.442327 Anserini +test2897 Q0 20937617 17 8.434222 Anserini +test2897 Q0 15017382 18 8.432529 Anserini +test2897 Q0 2869976 19 8.416688 Anserini +test2897 Q0 286830 20 8.406176 Anserini +test2897 Q0 126218 21 8.406176 Anserini +test2897 Q0 5923296 22 8.399509 Anserini +test2897 Q0 7771182 23 8.356483 Anserini +test2897 Q0 11166866 24 8.331999 Anserini +test2897 Q0 13578036 25 8.308249 Anserini +test2897 Q0 4662060 26 8.306021 Anserini +test2897 Q0 4562877 27 8.306021 Anserini +test2897 Q0 10335886 28 8.286202 Anserini +test2897 Q0 16839127 29 8.283039 Anserini +test2897 Q0 18636673 30 8.249501 Anserini +test2898 Q0 201621 1 11.651647 Anserini +test2898 Q0 19906075 2 10.915433 Anserini +test2898 Q0 14590239 3 10.833894 Anserini +test2898 Q0 201587 4 10.772841 Anserini +test2898 Q0 12568868 5 10.537704 Anserini +test2898 Q0 15420111 6 10.517662 Anserini +test2898 Q0 16609680 7 10.482931 Anserini +test2898 Q0 20193273 8 10.463839 Anserini +test2898 Q0 201582 9 10.453734 Anserini +test2898 Q0 20493228 10 10.435327 Anserini +test2898 Q0 8153788 11 10.419890 Anserini +test2898 Q0 19906076 12 10.397024 Anserini +test2898 Q0 9151517 13 10.392536 Anserini +test2898 Q0 20581015 14 10.357403 Anserini +test2898 Q0 201622 15 10.344488 Anserini +test2898 Q0 20493224 16 10.338007 Anserini +test2898 Q0 15420083 17 10.300241 Anserini +test2898 Q0 4278227 18 10.268558 Anserini +test2898 Q0 201617 19 10.262900 Anserini +test2898 Q0 18911131 20 10.176796 Anserini +test2898 Q0 18911107 21 10.165744 Anserini +test2898 Q0 16631187 22 10.164572 Anserini +test2898 Q0 2486135 23 10.127860 Anserini +test2898 Q0 9445938 24 10.127302 Anserini +test2898 Q0 19906045 25 10.125320 Anserini +test2898 Q0 16631197 26 10.119204 Anserini +test2898 Q0 201574 27 10.117819 Anserini +test2898 Q0 10099806 28 10.076509 Anserini +test2898 Q0 778894 29 10.059088 Anserini +test2898 Q0 315247 30 10.059088 Anserini +test2899 Q0 6886301 1 19.841833 Anserini +test2899 Q0 6886299 2 19.493715 Anserini +test2899 Q0 6886300 3 17.252430 Anserini +test2899 Q0 2828602 4 13.562012 Anserini +test2899 Q0 3547573 5 13.038780 Anserini +test2899 Q0 16757786 6 12.999763 Anserini +test2899 Q0 8801202 7 12.930822 Anserini +test2899 Q0 3547550 8 12.871227 Anserini +test2899 Q0 14926705 9 12.516486 Anserini +test2899 Q0 14133852 10 12.338382 Anserini +test2899 Q0 14834901 11 12.273894 Anserini +test2899 Q0 9687368 12 12.232695 Anserini +test2899 Q0 3933515 13 11.975146 Anserini +test2899 Q0 20145197 14 11.975146 Anserini +test2899 Q0 5504031 15 11.975146 Anserini +test2899 Q0 13890946 16 11.913382 Anserini +test2899 Q0 8427178 17 11.758957 Anserini +test2899 Q0 6333843 18 11.728218 Anserini +test2899 Q0 13337213 19 11.684791 Anserini +test2899 Q0 7114840 20 11.380721 Anserini +test2899 Q0 7491702 21 10.907330 Anserini +test2899 Q0 16723713 22 10.794010 Anserini +test2899 Q0 19429189 23 10.712294 Anserini +test2899 Q0 2828606 24 10.618258 Anserini +test2899 Q0 12039684 25 10.561115 Anserini +test2899 Q0 5125574 26 10.558888 Anserini +test2899 Q0 8220419 27 10.533384 Anserini +test2899 Q0 10003280 28 10.480995 Anserini +test2899 Q0 20223935 29 10.420406 Anserini +test2899 Q0 6368455 30 10.420406 Anserini +test29 Q0 6536634 1 12.218141 Anserini +test29 Q0 4551024 2 11.899056 Anserini +test29 Q0 6536625 3 11.645164 Anserini +test29 Q0 325530 4 10.860358 Anserini +test29 Q0 7852561 5 10.678395 Anserini +test29 Q0 325525 6 10.660882 Anserini +test29 Q0 3972611 7 10.632719 Anserini +test29 Q0 7852554 8 10.622580 Anserini +test29 Q0 3734430 9 10.553061 Anserini +test29 Q0 10588863 10 10.534636 Anserini +test29 Q0 325520 11 10.380426 Anserini +test29 Q0 6519871 12 10.255837 Anserini +test29 Q0 11634694 13 10.228762 Anserini +test29 Q0 3972614 14 10.126208 Anserini +test29 Q0 190972 15 10.085382 Anserini +test29 Q0 17862516 16 10.071919 Anserini +test29 Q0 17862519 17 10.071919 Anserini +test29 Q0 325527 18 9.983528 Anserini +test29 Q0 3242034 19 9.887134 Anserini +test29 Q0 6865522 20 9.874662 Anserini +test29 Q0 8484030 21 9.807103 Anserini +test29 Q0 3734429 22 9.773159 Anserini +test29 Q0 4551025 23 9.752936 Anserini +test29 Q0 20485583 24 9.736033 Anserini +test29 Q0 3684038 25 9.717609 Anserini +test29 Q0 3696348 26 9.681009 Anserini +test29 Q0 19607853 27 9.646389 Anserini +test29 Q0 13850812 28 9.584038 Anserini +test29 Q0 325524 29 9.546649 Anserini +test29 Q0 18556723 30 9.500579 Anserini +test290 Q0 2225338 1 16.973902 Anserini +test290 Q0 8149147 2 16.165112 Anserini +test290 Q0 8149149 3 16.016569 Anserini +test290 Q0 2225345 4 15.502800 Anserini +test290 Q0 18509401 5 15.131610 Anserini +test290 Q0 15376358 6 14.637758 Anserini +test290 Q0 2225341 7 14.629093 Anserini +test290 Q0 2225344 8 14.455235 Anserini +test290 Q0 11339377 9 14.419995 Anserini +test290 Q0 11339379 10 14.334964 Anserini +test290 Q0 644880 11 13.738036 Anserini +test290 Q0 2225340 12 13.151790 Anserini +test290 Q0 11893149 13 13.128444 Anserini +test290 Q0 2225342 14 13.095276 Anserini +test290 Q0 2286888 15 12.848316 Anserini +test290 Q0 14933137 16 12.816621 Anserini +test290 Q0 11517279 17 12.739518 Anserini +test290 Q0 11517282 18 12.739518 Anserini +test290 Q0 2225339 19 12.535565 Anserini +test290 Q0 4024504 20 12.501556 Anserini +test290 Q0 6968051 21 12.491809 Anserini +test290 Q0 644881 22 12.349024 Anserini +test290 Q0 6360704 23 12.343649 Anserini +test290 Q0 4160902 24 12.282959 Anserini +test290 Q0 18946112 25 12.191543 Anserini +test290 Q0 8149148 26 12.179108 Anserini +test290 Q0 4596229 27 12.141526 Anserini +test290 Q0 4596226 28 12.078329 Anserini +test290 Q0 13412684 29 12.061835 Anserini +test290 Q0 6561413 30 11.974371 Anserini +test2900 Q0 17452855 1 12.671480 Anserini +test2900 Q0 19877389 2 12.227673 Anserini +test2900 Q0 19877386 3 11.972746 Anserini +test2900 Q0 19877262 4 11.902181 Anserini +test2900 Q0 3005037 5 11.836655 Anserini +test2900 Q0 19443624 6 11.829065 Anserini +test2900 Q0 19877404 7 11.786088 Anserini +test2900 Q0 4747018 8 11.634997 Anserini +test2900 Q0 16719848 9 11.582399 Anserini +test2900 Q0 8797339 10 11.148914 Anserini +test2900 Q0 19768171 11 10.888982 Anserini +test2900 Q0 18753857 12 10.821115 Anserini +test2900 Q0 18008340 13 10.786972 Anserini +test2900 Q0 15238048 14 10.763383 Anserini +test2900 Q0 16364298 15 10.736187 Anserini +test2900 Q0 6340078 16 10.688833 Anserini +test2900 Q0 4867815 17 10.665012 Anserini +test2900 Q0 19877264 18 10.646891 Anserini +test2900 Q0 11118842 19 10.644107 Anserini +test2900 Q0 17523038 20 10.606228 Anserini +test2900 Q0 18111542 21 10.566887 Anserini +test2900 Q0 17144559 22 10.557698 Anserini +test2900 Q0 5851654 23 10.553151 Anserini +test2900 Q0 20753570 24 10.511523 Anserini +test2900 Q0 19877395 25 10.501822 Anserini +test2900 Q0 16960083 26 10.432853 Anserini +test2900 Q0 18059924 27 10.409730 Anserini +test2900 Q0 14150061 28 10.398810 Anserini +test2900 Q0 4087391 29 10.398483 Anserini +test2900 Q0 5374248 30 10.359606 Anserini +test2901 Q0 17129682 1 17.255657 Anserini +test2901 Q0 17129687 2 17.012396 Anserini +test2901 Q0 17129702 3 16.973103 Anserini +test2901 Q0 17129692 4 16.813866 Anserini +test2901 Q0 17129690 5 16.501055 Anserini +test2901 Q0 20530484 6 16.455910 Anserini +test2901 Q0 20530482 7 16.366222 Anserini +test2901 Q0 20530481 8 16.336864 Anserini +test2901 Q0 17129700 9 16.269352 Anserini +test2901 Q0 20530483 10 16.208929 Anserini +test2901 Q0 19718584 11 16.027317 Anserini +test2901 Q0 19718583 12 16.015089 Anserini +test2901 Q0 20530480 13 15.957857 Anserini +test2901 Q0 20507372 14 15.903112 Anserini +test2901 Q0 20530485 15 15.896842 Anserini +test2901 Q0 20530491 16 15.896842 Anserini +test2901 Q0 20530493 17 15.896842 Anserini +test2901 Q0 20530465 18 15.896842 Anserini +test2901 Q0 20530467 19 15.896842 Anserini +test2901 Q0 20530479 20 15.896842 Anserini +test2901 Q0 20489609 21 15.833529 Anserini +test2901 Q0 20530468 22 15.833197 Anserini +test2901 Q0 19718569 23 15.820520 Anserini +test2901 Q0 19718570 24 15.752125 Anserini +test2901 Q0 17847087 25 15.750966 Anserini +test2901 Q0 17847095 26 15.750966 Anserini +test2901 Q0 20516025 27 15.749230 Anserini +test2901 Q0 20530492 28 15.743508 Anserini +test2901 Q0 20530466 29 15.743508 Anserini +test2901 Q0 20530494 30 15.743508 Anserini +test2902 Q0 17184750 1 11.385407 Anserini +test2902 Q0 17184751 2 11.385407 Anserini +test2902 Q0 16696146 3 11.161776 Anserini +test2902 Q0 13329427 4 11.063235 Anserini +test2902 Q0 18316423 5 11.038561 Anserini +test2902 Q0 16696148 6 11.038561 Anserini +test2902 Q0 10105597 7 11.031155 Anserini +test2902 Q0 13329429 8 11.000783 Anserini +test2902 Q0 10105598 9 10.962204 Anserini +test2902 Q0 16511385 10 10.934150 Anserini +test2902 Q0 8093526 11 10.924868 Anserini +test2902 Q0 7118666 12 10.852645 Anserini +test2902 Q0 11381706 13 10.774879 Anserini +test2902 Q0 19357755 14 10.676885 Anserini +test2902 Q0 7286881 15 10.599826 Anserini +test2902 Q0 4744544 16 10.373953 Anserini +test2902 Q0 4462509 17 10.298971 Anserini +test2902 Q0 16874813 18 10.297548 Anserini +test2902 Q0 18410176 19 10.241609 Anserini +test2902 Q0 16874811 20 10.212324 Anserini +test2902 Q0 16511382 21 10.195964 Anserini +test2902 Q0 18976237 22 10.168140 Anserini +test2902 Q0 3930390 23 10.147054 Anserini +test2902 Q0 8093534 24 10.037833 Anserini +test2902 Q0 9868120 25 10.013605 Anserini +test2902 Q0 4249726 26 10.005628 Anserini +test2902 Q0 9868116 27 9.962394 Anserini +test2902 Q0 16391593 28 9.899774 Anserini +test2902 Q0 18316424 29 9.898630 Anserini +test2902 Q0 10628505 30 9.845939 Anserini +test2903 Q0 7167363 1 17.214424 Anserini +test2903 Q0 6573297 2 16.946922 Anserini +test2903 Q0 394478 3 16.656155 Anserini +test2903 Q0 9869750 4 16.547417 Anserini +test2903 Q0 394946 5 16.533962 Anserini +test2903 Q0 394496 6 16.377844 Anserini +test2903 Q0 394886 7 16.254419 Anserini +test2903 Q0 12880210 8 16.202915 Anserini +test2903 Q0 20668822 9 15.756741 Anserini +test2903 Q0 11067903 10 15.657239 Anserini +test2903 Q0 394341 11 15.589729 Anserini +test2903 Q0 374772 12 15.501219 Anserini +test2903 Q0 14383344 13 15.470966 Anserini +test2903 Q0 376017 14 15.407445 Anserini +test2903 Q0 394509 15 15.384548 Anserini +test2903 Q0 374849 16 15.335272 Anserini +test2903 Q0 19807797 17 15.310448 Anserini +test2903 Q0 12272152 18 15.277126 Anserini +test2903 Q0 10956936 19 15.256805 Anserini +test2903 Q0 394218 20 15.085945 Anserini +test2903 Q0 393808 21 15.083171 Anserini +test2903 Q0 7167415 22 15.030583 Anserini +test2903 Q0 393784 23 15.022157 Anserini +test2903 Q0 9869792 24 14.991812 Anserini +test2903 Q0 374767 25 14.991812 Anserini +test2903 Q0 7167356 26 14.979591 Anserini +test2903 Q0 394355 27 14.963097 Anserini +test2903 Q0 2507906 28 14.936616 Anserini +test2903 Q0 8537155 29 14.923491 Anserini +test2903 Q0 9869800 30 14.854710 Anserini +test2904 Q0 2470100 1 21.210163 Anserini +test2904 Q0 17674356 2 20.479540 Anserini +test2904 Q0 2470112 3 20.172754 Anserini +test2904 Q0 191350 4 19.826056 Anserini +test2904 Q0 2470096 5 19.743097 Anserini +test2904 Q0 2470091 6 19.627390 Anserini +test2904 Q0 12042955 7 19.327047 Anserini +test2904 Q0 15383949 8 19.126596 Anserini +test2904 Q0 778225 9 18.715847 Anserini +test2904 Q0 191326 10 18.586658 Anserini +test2904 Q0 18736051 11 18.432177 Anserini +test2904 Q0 2470092 12 18.424789 Anserini +test2904 Q0 2470106 13 18.415924 Anserini +test2904 Q0 18736062 14 18.088198 Anserini +test2904 Q0 1316942 15 18.084047 Anserini +test2904 Q0 14491937 16 18.054792 Anserini +test2904 Q0 19463313 17 17.836586 Anserini +test2904 Q0 12245019 18 17.756208 Anserini +test2904 Q0 19463314 19 17.697229 Anserini +test2904 Q0 2470098 20 17.695747 Anserini +test2904 Q0 2470103 21 17.619011 Anserini +test2904 Q0 17947415 22 17.546410 Anserini +test2904 Q0 12001543 23 17.515383 Anserini +test2904 Q0 2470101 24 17.486259 Anserini +test2904 Q0 15383950 25 17.447575 Anserini +test2904 Q0 17674354 26 17.415916 Anserini +test2904 Q0 2470107 27 17.415779 Anserini +test2904 Q0 11717238 28 17.225788 Anserini +test2904 Q0 15003765 29 17.159204 Anserini +test2904 Q0 10146738 30 17.104712 Anserini +test2905 Q0 2147464 1 13.952327 Anserini +test2905 Q0 15915566 2 11.224357 Anserini +test2905 Q0 9193659 3 11.046634 Anserini +test2905 Q0 13680312 4 10.882546 Anserini +test2905 Q0 5236165 5 10.373509 Anserini +test2905 Q0 7025366 6 10.173509 Anserini +test2905 Q0 8783723 7 10.073882 Anserini +test2905 Q0 7025372 8 9.988336 Anserini +test2905 Q0 10987504 9 9.918708 Anserini +test2905 Q0 10578667 10 9.858522 Anserini +test2905 Q0 4679200 11 9.844751 Anserini +test2905 Q0 953485 12 9.839721 Anserini +test2905 Q0 10987502 13 9.830698 Anserini +test2905 Q0 7916485 14 9.765405 Anserini +test2905 Q0 20196228 15 9.710259 Anserini +test2905 Q0 10875545 16 9.688890 Anserini +test2905 Q0 14129628 17 9.602013 Anserini +test2905 Q0 15946108 18 9.559973 Anserini +test2905 Q0 27058 19 9.554136 Anserini +test2905 Q0 12162952 20 9.550314 Anserini +test2905 Q0 18432402 21 9.544789 Anserini +test2905 Q0 15946105 22 9.524905 Anserini +test2905 Q0 12301500 23 9.500786 Anserini +test2905 Q0 2294202 24 9.468888 Anserini +test2905 Q0 15304432 25 9.450438 Anserini +test2905 Q0 14129739 26 9.398580 Anserini +test2905 Q0 11018935 27 9.396338 Anserini +test2905 Q0 11734583 28 9.385914 Anserini +test2905 Q0 18432397 29 9.375494 Anserini +test2905 Q0 4005201 30 9.363587 Anserini +test2906 Q0 2750407 1 23.753014 Anserini +test2906 Q0 2750406 2 23.336418 Anserini +test2906 Q0 15600545 3 21.520859 Anserini +test2906 Q0 1851722 4 15.714107 Anserini +test2906 Q0 15600539 5 15.413496 Anserini +test2906 Q0 5309895 6 15.243829 Anserini +test2906 Q0 3163917 7 14.189991 Anserini +test2906 Q0 5426259 8 13.706835 Anserini +test2906 Q0 3163924 9 13.615449 Anserini +test2906 Q0 17967594 10 13.505138 Anserini +test2906 Q0 3163927 11 13.467248 Anserini +test2906 Q0 6509933 12 13.017240 Anserini +test2906 Q0 17967595 13 12.869774 Anserini +test2906 Q0 10091990 14 12.826270 Anserini +test2906 Q0 751127 15 12.821350 Anserini +test2906 Q0 751143 16 12.676153 Anserini +test2906 Q0 751120 17 12.651974 Anserini +test2906 Q0 751129 18 12.545696 Anserini +test2906 Q0 751145 19 12.482412 Anserini +test2906 Q0 3103862 20 12.396149 Anserini +test2906 Q0 4727680 21 12.323510 Anserini +test2906 Q0 751119 22 12.235373 Anserini +test2906 Q0 751137 23 12.110744 Anserini +test2906 Q0 751118 24 12.108518 Anserini +test2906 Q0 16014870 25 12.076880 Anserini +test2906 Q0 3163923 26 12.061077 Anserini +test2906 Q0 7722213 27 12.054183 Anserini +test2906 Q0 17967604 28 11.925922 Anserini +test2906 Q0 6647934 29 11.858798 Anserini +test2906 Q0 751139 30 11.831796 Anserini +test2907 Q0 8881283 1 15.427592 Anserini +test2907 Q0 8269327 2 15.138885 Anserini +test2907 Q0 8269324 3 15.014433 Anserini +test2907 Q0 8881285 4 14.816280 Anserini +test2907 Q0 10242362 5 14.341686 Anserini +test2907 Q0 18007641 6 14.250306 Anserini +test2907 Q0 2954333 7 14.158792 Anserini +test2907 Q0 16987868 8 14.127205 Anserini +test2907 Q0 14629681 9 13.858067 Anserini +test2907 Q0 15133504 10 13.684248 Anserini +test2907 Q0 7215797 11 13.658136 Anserini +test2907 Q0 9380207 12 13.515684 Anserini +test2907 Q0 15133516 13 13.465325 Anserini +test2907 Q0 15133502 14 13.465325 Anserini +test2907 Q0 17092854 15 13.309128 Anserini +test2907 Q0 14492278 16 13.265417 Anserini +test2907 Q0 8269325 17 13.256152 Anserini +test2907 Q0 10293633 18 13.175912 Anserini +test2907 Q0 20449281 19 13.094651 Anserini +test2907 Q0 6162821 20 13.074548 Anserini +test2907 Q0 10825423 21 13.042589 Anserini +test2907 Q0 8070774 22 13.033543 Anserini +test2907 Q0 18265357 23 12.999456 Anserini +test2907 Q0 20166777 24 12.979194 Anserini +test2907 Q0 14629724 25 12.908809 Anserini +test2907 Q0 14629693 26 12.894463 Anserini +test2907 Q0 5741378 27 12.815378 Anserini +test2907 Q0 18805682 28 12.804343 Anserini +test2907 Q0 13437677 29 12.728583 Anserini +test2907 Q0 14629674 30 12.726521 Anserini +test2908 Q0 6530303 1 11.973119 Anserini +test2908 Q0 3764709 2 11.517288 Anserini +test2908 Q0 16876830 3 11.468638 Anserini +test2908 Q0 2461000 4 11.085764 Anserini +test2908 Q0 2460980 5 11.044201 Anserini +test2908 Q0 1485902 6 11.041138 Anserini +test2908 Q0 12007918 7 11.007022 Anserini +test2908 Q0 3995638 8 10.972941 Anserini +test2908 Q0 10276317 9 10.908257 Anserini +test2908 Q0 1485914 10 10.816375 Anserini +test2908 Q0 1485936 11 10.798418 Anserini +test2908 Q0 11933919 12 10.796110 Anserini +test2908 Q0 2393159 13 10.754918 Anserini +test2908 Q0 16876849 14 10.640398 Anserini +test2908 Q0 402284 15 10.597507 Anserini +test2908 Q0 2460940 16 10.595259 Anserini +test2908 Q0 2393188 17 10.553894 Anserini +test2908 Q0 1489775 18 10.524971 Anserini +test2908 Q0 2393193 19 10.493124 Anserini +test2908 Q0 6528899 20 10.444753 Anserini +test2908 Q0 6528912 21 10.444753 Anserini +test2908 Q0 11781550 22 10.405252 Anserini +test2908 Q0 1485874 23 10.386900 Anserini +test2908 Q0 9649005 24 10.355814 Anserini +test2908 Q0 13447366 25 10.220070 Anserini +test2908 Q0 1485877 26 10.215096 Anserini +test2908 Q0 730608 27 10.202200 Anserini +test2908 Q0 2400676 28 10.131817 Anserini +test2908 Q0 2460999 29 10.131817 Anserini +test2908 Q0 16747495 30 10.020073 Anserini +test2909 Q0 3784866 1 26.675179 Anserini +test2909 Q0 3784869 2 26.096149 Anserini +test2909 Q0 3784867 3 25.991808 Anserini +test2909 Q0 3784870 4 25.330408 Anserini +test2909 Q0 3784868 5 24.226444 Anserini +test2909 Q0 3943467 6 22.923058 Anserini +test2909 Q0 4694852 7 22.225077 Anserini +test2909 Q0 9693286 8 22.146191 Anserini +test2909 Q0 4063393 9 21.610416 Anserini +test2909 Q0 10573202 10 19.726667 Anserini +test2909 Q0 10787798 11 19.726667 Anserini +test2909 Q0 9654318 12 19.431505 Anserini +test2909 Q0 20458486 13 19.392759 Anserini +test2909 Q0 4390962 14 19.139008 Anserini +test2909 Q0 19505380 15 18.921585 Anserini +test2909 Q0 19505381 16 18.921585 Anserini +test2909 Q0 6138698 17 18.704704 Anserini +test2909 Q0 9654316 18 18.659328 Anserini +test2909 Q0 15078559 19 18.346981 Anserini +test2909 Q0 1750466 20 17.820986 Anserini +test2909 Q0 14022445 21 17.766691 Anserini +test2909 Q0 1829873 22 17.728642 Anserini +test2909 Q0 8295722 23 17.661297 Anserini +test2909 Q0 14650053 24 17.643196 Anserini +test2909 Q0 8656993 25 17.546795 Anserini +test2909 Q0 8656994 26 17.546795 Anserini +test2909 Q0 97939 27 17.485699 Anserini +test2909 Q0 12787340 28 17.394745 Anserini +test2909 Q0 12787341 29 17.394745 Anserini +test2909 Q0 5835327 30 17.314558 Anserini +test291 Q0 7566638 1 11.562010 Anserini +test291 Q0 6578677 2 11.095689 Anserini +test291 Q0 7574814 3 10.667966 Anserini +test291 Q0 16263822 4 10.513692 Anserini +test291 Q0 7377373 5 10.498070 Anserini +test291 Q0 9602243 6 10.489925 Anserini +test291 Q0 14361607 7 10.310984 Anserini +test291 Q0 4790447 8 10.212063 Anserini +test291 Q0 782499 9 10.167240 Anserini +test291 Q0 1853588 10 10.156921 Anserini +test291 Q0 14361553 11 10.143576 Anserini +test291 Q0 2027689 12 10.123680 Anserini +test291 Q0 17972071 13 10.088800 Anserini +test291 Q0 7402431 14 10.044577 Anserini +test291 Q0 454608 15 10.035084 Anserini +test291 Q0 14361525 16 9.993440 Anserini +test291 Q0 3486795 17 9.989677 Anserini +test291 Q0 5787081 18 9.982689 Anserini +test291 Q0 8484576 19 9.877206 Anserini +test291 Q0 15805024 20 9.845937 Anserini +test291 Q0 6578718 21 9.842198 Anserini +test291 Q0 8484573 22 9.806875 Anserini +test291 Q0 2678471 23 9.733507 Anserini +test291 Q0 17028031 24 9.664313 Anserini +test291 Q0 19369076 25 9.660658 Anserini +test291 Q0 14361578 26 9.609877 Anserini +test291 Q0 2125047 27 9.607066 Anserini +test291 Q0 6578721 28 9.597050 Anserini +test291 Q0 9929765 29 9.562800 Anserini +test291 Q0 6585278 30 9.532932 Anserini +test2910 Q0 2816144 1 17.068424 Anserini +test2910 Q0 3619436 2 16.859428 Anserini +test2910 Q0 5913246 3 16.534206 Anserini +test2910 Q0 2816321 4 16.529148 Anserini +test2910 Q0 15256357 5 16.449900 Anserini +test2910 Q0 2816131 6 16.219585 Anserini +test2910 Q0 3592569 7 16.145626 Anserini +test2910 Q0 8502169 8 16.045568 Anserini +test2910 Q0 20634725 9 16.005802 Anserini +test2910 Q0 2357580 10 15.818886 Anserini +test2910 Q0 5629093 11 15.777757 Anserini +test2910 Q0 12102987 12 15.687918 Anserini +test2910 Q0 3619336 13 15.551610 Anserini +test2910 Q0 13213625 14 15.381514 Anserini +test2910 Q0 2816159 15 15.375528 Anserini +test2910 Q0 15552179 16 15.335885 Anserini +test2910 Q0 15552187 17 15.280859 Anserini +test2910 Q0 3619427 18 15.261368 Anserini +test2910 Q0 5294599 19 15.247866 Anserini +test2910 Q0 19584708 20 15.228774 Anserini +test2910 Q0 12110129 21 15.204184 Anserini +test2910 Q0 7069231 22 15.162233 Anserini +test2910 Q0 13195856 23 15.155885 Anserini +test2910 Q0 15256356 24 15.073038 Anserini +test2910 Q0 13195870 25 15.025274 Anserini +test2910 Q0 6597483 26 14.963871 Anserini +test2910 Q0 19943940 27 14.950461 Anserini +test2910 Q0 11407788 28 14.945500 Anserini +test2910 Q0 1565287 29 14.925658 Anserini +test2910 Q0 7505607 30 14.908010 Anserini +test2911 Q0 13640154 1 15.998611 Anserini +test2911 Q0 13640153 2 13.793192 Anserini +test2911 Q0 13640141 3 13.740292 Anserini +test2911 Q0 13640149 4 13.736567 Anserini +test2911 Q0 871215 5 13.671522 Anserini +test2911 Q0 12811725 6 12.608269 Anserini +test2911 Q0 13640151 7 12.575518 Anserini +test2911 Q0 9843638 8 12.534648 Anserini +test2911 Q0 9843644 9 12.103951 Anserini +test2911 Q0 5791760 10 12.067417 Anserini +test2911 Q0 9843636 11 12.047407 Anserini +test2911 Q0 1481493 12 11.985878 Anserini +test2911 Q0 7189228 13 11.907506 Anserini +test2911 Q0 16770756 14 11.846487 Anserini +test2911 Q0 16770751 15 11.846487 Anserini +test2911 Q0 9843639 16 11.747198 Anserini +test2911 Q0 13640156 17 11.723963 Anserini +test2911 Q0 13640160 18 11.333297 Anserini +test2911 Q0 16661976 19 11.298675 Anserini +test2911 Q0 13640145 20 11.100405 Anserini +test2911 Q0 20477946 21 10.999149 Anserini +test2911 Q0 19950894 22 10.910799 Anserini +test2911 Q0 13648874 23 10.846509 Anserini +test2911 Q0 18752156 24 10.763401 Anserini +test2911 Q0 2539295 25 10.711554 Anserini +test2911 Q0 6405195 26 10.683528 Anserini +test2911 Q0 3898268 27 10.670176 Anserini +test2911 Q0 13640148 28 10.659085 Anserini +test2911 Q0 6900993 29 10.611714 Anserini +test2911 Q0 6067182 30 10.564994 Anserini +test2912 Q0 13124503 1 12.689189 Anserini +test2912 Q0 530144 2 12.689189 Anserini +test2912 Q0 92658 3 12.600088 Anserini +test2912 Q0 5702689 4 12.437677 Anserini +test2912 Q0 5702691 5 12.437677 Anserini +test2912 Q0 3050888 6 12.437316 Anserini +test2912 Q0 6005760 7 12.069042 Anserini +test2912 Q0 530206 8 12.039440 Anserini +test2912 Q0 13124494 9 12.031379 Anserini +test2912 Q0 7771927 10 11.977830 Anserini +test2912 Q0 10846870 11 11.811625 Anserini +test2912 Q0 3757802 12 11.746506 Anserini +test2912 Q0 17593237 13 11.732092 Anserini +test2912 Q0 15597902 14 11.731268 Anserini +test2912 Q0 15597903 15 11.731268 Anserini +test2912 Q0 11995637 16 11.695915 Anserini +test2912 Q0 530146 17 11.686617 Anserini +test2912 Q0 9410009 18 11.565909 Anserini +test2912 Q0 10912122 19 11.549448 Anserini +test2912 Q0 3757805 20 11.525468 Anserini +test2912 Q0 13680060 21 11.513630 Anserini +test2912 Q0 9449027 22 11.443076 Anserini +test2912 Q0 530202 23 11.435040 Anserini +test2912 Q0 6484129 24 11.408642 Anserini +test2912 Q0 10846871 25 11.401625 Anserini +test2912 Q0 10500119 26 11.387148 Anserini +test2912 Q0 530183 27 11.356347 Anserini +test2912 Q0 7990808 28 11.340855 Anserini +test2912 Q0 17575136 29 11.308161 Anserini +test2912 Q0 10168434 30 11.308161 Anserini +test2913 Q0 19988286 1 13.436485 Anserini +test2913 Q0 11035986 2 13.351533 Anserini +test2913 Q0 16212360 3 13.266805 Anserini +test2913 Q0 17067378 4 13.200474 Anserini +test2913 Q0 17067375 5 12.916841 Anserini +test2913 Q0 19542522 6 12.860366 Anserini +test2913 Q0 19542523 7 12.796644 Anserini +test2913 Q0 16964647 8 12.749454 Anserini +test2913 Q0 15582339 9 12.731435 Anserini +test2913 Q0 15541567 10 12.707305 Anserini +test2913 Q0 14064639 11 12.682366 Anserini +test2913 Q0 14956568 12 12.559264 Anserini +test2913 Q0 14570247 13 12.558105 Anserini +test2913 Q0 14570250 14 12.489079 Anserini +test2913 Q0 3154190 15 12.426306 Anserini +test2913 Q0 9547920 16 12.412944 Anserini +test2913 Q0 13921191 17 12.363462 Anserini +test2913 Q0 15612232 18 12.355083 Anserini +test2913 Q0 39299 19 12.343376 Anserini +test2913 Q0 18535631 20 12.245452 Anserini +test2913 Q0 7622485 21 12.239753 Anserini +test2913 Q0 6220786 22 12.232993 Anserini +test2913 Q0 17037351 23 12.196293 Anserini +test2913 Q0 20748383 24 12.159398 Anserini +test2913 Q0 16212359 25 12.159398 Anserini +test2913 Q0 15700858 26 12.135786 Anserini +test2913 Q0 9418064 27 12.112954 Anserini +test2913 Q0 19517815 28 12.088821 Anserini +test2913 Q0 20248624 29 12.088821 Anserini +test2913 Q0 17015608 30 12.071872 Anserini +test2914 Q0 14708147 1 14.280434 Anserini +test2914 Q0 8154808 2 13.638639 Anserini +test2914 Q0 10380976 3 12.865742 Anserini +test2914 Q0 3260525 4 12.820915 Anserini +test2914 Q0 10380994 5 12.732489 Anserini +test2914 Q0 10756056 6 12.722687 Anserini +test2914 Q0 17031363 7 12.673672 Anserini +test2914 Q0 20831299 8 12.673672 Anserini +test2914 Q0 20831296 9 12.673672 Anserini +test2914 Q0 11161191 10 12.624413 Anserini +test2914 Q0 3312468 11 12.540025 Anserini +test2914 Q0 10381001 12 12.526275 Anserini +test2914 Q0 13195024 13 12.467204 Anserini +test2914 Q0 9726908 14 12.424136 Anserini +test2914 Q0 11457331 15 12.323786 Anserini +test2914 Q0 8117127 16 12.290412 Anserini +test2914 Q0 17837015 17 12.138581 Anserini +test2914 Q0 3592445 18 12.110968 Anserini +test2914 Q0 4576205 19 12.105930 Anserini +test2914 Q0 9819245 20 12.065195 Anserini +test2914 Q0 12743209 21 12.040877 Anserini +test2914 Q0 9819252 22 12.031693 Anserini +test2914 Q0 5863966 23 12.013941 Anserini +test2914 Q0 15142300 24 12.003248 Anserini +test2914 Q0 15142296 25 12.003248 Anserini +test2914 Q0 9184306 26 11.982784 Anserini +test2914 Q0 10380986 27 11.981465 Anserini +test2914 Q0 16372943 28 11.959883 Anserini +test2914 Q0 11040859 29 11.907326 Anserini +test2914 Q0 9184305 30 11.788517 Anserini +test2915 Q0 4594684 1 14.560873 Anserini +test2915 Q0 14960779 2 12.762023 Anserini +test2915 Q0 11471477 3 12.357081 Anserini +test2915 Q0 11017521 4 12.204015 Anserini +test2915 Q0 20090648 5 12.173692 Anserini +test2915 Q0 9584575 6 12.026842 Anserini +test2915 Q0 9859702 7 11.938313 Anserini +test2915 Q0 11017519 8 11.847183 Anserini +test2915 Q0 15843990 9 11.684813 Anserini +test2915 Q0 7182277 10 11.659582 Anserini +test2915 Q0 4026004 11 11.558766 Anserini +test2915 Q0 11181265 12 11.528529 Anserini +test2915 Q0 11181261 13 11.528529 Anserini +test2915 Q0 20143688 14 11.467487 Anserini +test2915 Q0 19725750 15 11.375333 Anserini +test2915 Q0 11723680 16 11.232677 Anserini +test2915 Q0 12144125 17 11.168645 Anserini +test2915 Q0 3158256 18 11.155372 Anserini +test2915 Q0 15722463 19 11.132667 Anserini +test2915 Q0 15155785 20 10.972748 Anserini +test2915 Q0 270757 21 10.900578 Anserini +test2915 Q0 6372310 22 10.856927 Anserini +test2915 Q0 263426 23 10.752302 Anserini +test2915 Q0 9859706 24 10.741115 Anserini +test2915 Q0 13748828 25 10.703984 Anserini +test2915 Q0 11633680 26 10.686330 Anserini +test2915 Q0 4048425 27 10.618953 Anserini +test2915 Q0 5711600 28 10.533173 Anserini +test2915 Q0 5083272 29 10.494641 Anserini +test2915 Q0 19725751 30 10.479233 Anserini +test2916 Q0 18829982 1 16.894613 Anserini +test2916 Q0 8479373 2 16.872393 Anserini +test2916 Q0 2991940 3 16.019745 Anserini +test2916 Q0 11853414 4 15.499562 Anserini +test2916 Q0 2991966 5 15.240024 Anserini +test2916 Q0 2991925 6 15.162963 Anserini +test2916 Q0 2991939 7 15.057515 Anserini +test2916 Q0 2991930 8 14.713852 Anserini +test2916 Q0 14858876 9 14.538565 Anserini +test2916 Q0 18829978 10 14.501900 Anserini +test2916 Q0 9650677 11 14.467431 Anserini +test2916 Q0 9650693 12 14.384394 Anserini +test2916 Q0 3754645 13 14.213786 Anserini +test2916 Q0 3664412 14 13.865066 Anserini +test2916 Q0 2991988 15 13.783167 Anserini +test2916 Q0 5767620 16 13.735640 Anserini +test2916 Q0 14148545 17 13.716628 Anserini +test2916 Q0 2991935 18 13.688491 Anserini +test2916 Q0 2991941 19 13.662865 Anserini +test2916 Q0 18829980 20 13.662149 Anserini +test2916 Q0 2991953 21 13.598655 Anserini +test2916 Q0 2991977 22 13.593681 Anserini +test2916 Q0 14433483 23 13.440108 Anserini +test2916 Q0 14433494 24 13.440108 Anserini +test2916 Q0 12492784 25 13.277606 Anserini +test2916 Q0 2991956 26 13.271170 Anserini +test2916 Q0 9650649 27 13.218351 Anserini +test2916 Q0 14148555 28 13.218351 Anserini +test2916 Q0 9823665 29 13.190228 Anserini +test2916 Q0 13223273 30 13.159632 Anserini +test2917 Q0 9299973 1 11.049980 Anserini +test2917 Q0 3734865 2 10.913882 Anserini +test2917 Q0 18951196 3 10.851442 Anserini +test2917 Q0 11863660 4 10.599980 Anserini +test2917 Q0 12430505 5 10.475010 Anserini +test2917 Q0 12430506 6 10.475010 Anserini +test2917 Q0 5631292 7 10.220679 Anserini +test2917 Q0 17484755 8 10.066879 Anserini +test2917 Q0 9190004 9 10.014831 Anserini +test2917 Q0 18932651 10 9.989615 Anserini +test2917 Q0 1525502 11 9.797457 Anserini +test2917 Q0 17757053 12 9.662380 Anserini +test2917 Q0 462406 13 9.617835 Anserini +test2917 Q0 8662602 14 9.588827 Anserini +test2917 Q0 10238228 15 9.587243 Anserini +test2917 Q0 20897411 16 9.571175 Anserini +test2917 Q0 19063778 17 9.431101 Anserini +test2917 Q0 2399368 18 9.421963 Anserini +test2917 Q0 679785 19 9.419588 Anserini +test2917 Q0 5631285 20 9.403790 Anserini +test2917 Q0 15225379 21 9.362413 Anserini +test2917 Q0 15857929 22 9.349079 Anserini +test2917 Q0 5044529 23 9.346663 Anserini +test2917 Q0 14990258 24 9.319936 Anserini +test2917 Q0 2015544 25 9.280108 Anserini +test2917 Q0 10573360 26 9.273815 Anserini +test2917 Q0 16255950 27 9.272729 Anserini +test2917 Q0 3725647 28 9.272549 Anserini +test2917 Q0 16139196 29 9.248112 Anserini +test2917 Q0 5660413 30 9.248112 Anserini +test2918 Q0 13398788 1 10.816943 Anserini +test2918 Q0 13587888 2 10.591575 Anserini +test2918 Q0 6987415 3 10.187070 Anserini +test2918 Q0 4486385 4 10.172199 Anserini +test2918 Q0 8386480 5 10.129295 Anserini +test2918 Q0 5720473 6 10.025080 Anserini +test2918 Q0 12011411 7 9.932298 Anserini +test2918 Q0 15001519 8 9.932298 Anserini +test2918 Q0 19897638 9 9.873706 Anserini +test2918 Q0 11941143 10 9.800720 Anserini +test2918 Q0 19897633 11 9.768291 Anserini +test2918 Q0 3315261 12 9.768291 Anserini +test2918 Q0 3059034 13 9.750820 Anserini +test2918 Q0 1821097 14 9.701290 Anserini +test2918 Q0 12550079 15 9.690523 Anserini +test2918 Q0 10519753 16 9.667139 Anserini +test2918 Q0 7499195 17 9.645288 Anserini +test2918 Q0 7746385 18 9.644012 Anserini +test2918 Q0 4490324 19 9.631238 Anserini +test2918 Q0 20044393 20 9.590040 Anserini +test2918 Q0 6887447 21 9.590040 Anserini +test2918 Q0 2989791 22 9.588747 Anserini +test2918 Q0 1018040 23 9.535529 Anserini +test2918 Q0 1018036 24 9.481738 Anserini +test2918 Q0 10008987 25 9.411510 Anserini +test2918 Q0 8036734 26 9.411510 Anserini +test2918 Q0 6769947 27 9.358944 Anserini +test2918 Q0 7599223 28 9.358944 Anserini +test2918 Q0 8633854 29 9.321173 Anserini +test2918 Q0 11489501 30 9.301458 Anserini +test2919 Q0 5125792 1 10.849835 Anserini +test2919 Q0 162315 2 10.209970 Anserini +test2919 Q0 2743533 3 10.148132 Anserini +test2919 Q0 3469067 4 9.760482 Anserini +test2919 Q0 49531 5 9.571989 Anserini +test2919 Q0 7959785 6 9.556440 Anserini +test2919 Q0 4865149 7 9.476502 Anserini +test2919 Q0 7750884 8 9.435456 Anserini +test2919 Q0 1539591 9 9.430551 Anserini +test2919 Q0 1539595 10 9.430551 Anserini +test2919 Q0 5581566 11 9.404141 Anserini +test2919 Q0 5581563 12 9.357943 Anserini +test2919 Q0 3940911 13 9.321086 Anserini +test2919 Q0 15619105 14 9.216949 Anserini +test2919 Q0 15619107 15 9.216949 Anserini +test2919 Q0 2743530 16 9.214969 Anserini +test2919 Q0 15685687 17 9.178732 Anserini +test2919 Q0 11192322 18 9.141016 Anserini +test2919 Q0 12029691 19 9.082541 Anserini +test2919 Q0 13888778 20 9.079987 Anserini +test2919 Q0 2743542 21 9.067177 Anserini +test2919 Q0 3115325 22 8.955746 Anserini +test2919 Q0 3984227 23 8.946465 Anserini +test2919 Q0 12348233 24 8.902416 Anserini +test2919 Q0 3002903 25 8.902416 Anserini +test2919 Q0 1953909 26 8.902416 Anserini +test2919 Q0 3984230 27 8.902416 Anserini +test2919 Q0 538593 28 8.858952 Anserini +test2919 Q0 6683047 29 8.858952 Anserini +test2919 Q0 5171760 30 8.832390 Anserini +test292 Q0 258063 1 11.757686 Anserini +test292 Q0 18649703 2 11.572101 Anserini +test292 Q0 786952 3 11.481970 Anserini +test292 Q0 9007422 4 11.043171 Anserini +test292 Q0 2365066 5 10.930459 Anserini +test292 Q0 2365073 6 10.887266 Anserini +test292 Q0 302129 7 10.604251 Anserini +test292 Q0 9184802 8 10.584208 Anserini +test292 Q0 127021 9 10.427365 Anserini +test292 Q0 18649688 10 10.290710 Anserini +test292 Q0 127023 11 10.235701 Anserini +test292 Q0 127030 12 10.181410 Anserini +test292 Q0 204322 13 10.046139 Anserini +test292 Q0 127028 14 10.013330 Anserini +test292 Q0 127029 15 9.977252 Anserini +test292 Q0 9184811 16 9.826785 Anserini +test292 Q0 127031 17 9.785934 Anserini +test292 Q0 8607955 18 9.671312 Anserini +test292 Q0 163961 19 9.609368 Anserini +test292 Q0 10537096 20 9.569625 Anserini +test292 Q0 5586057 21 9.484163 Anserini +test292 Q0 16445539 22 9.348795 Anserini +test292 Q0 4665288 23 9.304294 Anserini +test292 Q0 10537093 24 9.303778 Anserini +test292 Q0 10537081 25 9.259268 Anserini +test292 Q0 9007421 26 9.246202 Anserini +test292 Q0 121993 27 9.146774 Anserini +test292 Q0 18641154 28 9.133008 Anserini +test292 Q0 13112494 29 9.049460 Anserini +test292 Q0 127037 30 9.038438 Anserini +test2920 Q0 16644004 1 29.396164 Anserini +test2920 Q0 18176647 2 28.911896 Anserini +test2920 Q0 20243837 3 28.900082 Anserini +test2920 Q0 14977219 4 28.477730 Anserini +test2920 Q0 19694096 5 27.715435 Anserini +test2920 Q0 12253536 6 27.619392 Anserini +test2920 Q0 20645848 7 27.610308 Anserini +test2920 Q0 18176648 8 27.550907 Anserini +test2920 Q0 14983668 9 27.362965 Anserini +test2920 Q0 19537668 10 26.560484 Anserini +test2920 Q0 14942603 11 25.919716 Anserini +test2920 Q0 20605482 12 25.854418 Anserini +test2920 Q0 20855751 13 25.518497 Anserini +test2920 Q0 18178763 14 25.399797 Anserini +test2920 Q0 16633370 15 25.287550 Anserini +test2920 Q0 19402151 16 25.128870 Anserini +test2920 Q0 16457349 17 25.114527 Anserini +test2920 Q0 20855943 18 24.991781 Anserini +test2920 Q0 7440141 19 24.617887 Anserini +test2920 Q0 18797878 20 24.471905 Anserini +test2920 Q0 14868942 21 24.420948 Anserini +test2920 Q0 16726635 22 24.322319 Anserini +test2920 Q0 18294438 23 24.270239 Anserini +test2920 Q0 9709199 24 24.226147 Anserini +test2920 Q0 20243834 25 24.147438 Anserini +test2920 Q0 20855942 26 23.975821 Anserini +test2920 Q0 16639002 27 23.739321 Anserini +test2920 Q0 17064230 28 23.715240 Anserini +test2920 Q0 7440143 29 23.584009 Anserini +test2920 Q0 16634173 30 23.571609 Anserini +test2921 Q0 16953260 1 12.879806 Anserini +test2921 Q0 10634392 2 11.947052 Anserini +test2921 Q0 1797613 3 11.809917 Anserini +test2921 Q0 11038411 4 11.537847 Anserini +test2921 Q0 14767451 5 11.418983 Anserini +test2921 Q0 11849574 6 11.362184 Anserini +test2921 Q0 7675793 7 11.213733 Anserini +test2921 Q0 1797631 8 10.861115 Anserini +test2921 Q0 17796898 9 10.756821 Anserini +test2921 Q0 10660849 10 10.548482 Anserini +test2921 Q0 17917708 11 10.546329 Anserini +test2921 Q0 17796897 12 10.546329 Anserini +test2921 Q0 17832146 13 10.446669 Anserini +test2921 Q0 19690743 14 10.445889 Anserini +test2921 Q0 14432824 15 10.415057 Anserini +test2921 Q0 1435160 16 10.367253 Anserini +test2921 Q0 11659229 17 10.333229 Anserini +test2921 Q0 6933681 18 10.323797 Anserini +test2921 Q0 11440242 19 10.259366 Anserini +test2921 Q0 17598305 20 10.154241 Anserini +test2921 Q0 11659233 21 10.037040 Anserini +test2921 Q0 13353653 22 10.010577 Anserini +test2921 Q0 730821 23 9.978755 Anserini +test2921 Q0 7015833 24 9.978755 Anserini +test2921 Q0 9257451 25 9.955766 Anserini +test2921 Q0 20473504 26 9.949497 Anserini +test2921 Q0 20473508 27 9.949497 Anserini +test2921 Q0 2784492 28 9.923446 Anserini +test2921 Q0 1418979 29 9.914778 Anserini +test2921 Q0 5485902 30 9.897026 Anserini +test2922 Q0 3543365 1 14.583426 Anserini +test2922 Q0 3543352 2 14.287477 Anserini +test2922 Q0 3543429 3 14.287477 Anserini +test2922 Q0 12897790 4 13.602787 Anserini +test2922 Q0 3543361 5 13.574533 Anserini +test2922 Q0 3543407 6 13.528744 Anserini +test2922 Q0 20636135 7 13.495653 Anserini +test2922 Q0 3543362 8 13.436976 Anserini +test2922 Q0 3543353 9 13.377077 Anserini +test2922 Q0 3459168 10 13.362080 Anserini +test2922 Q0 4192601 11 13.362080 Anserini +test2922 Q0 6286934 12 13.344193 Anserini +test2922 Q0 3543354 13 13.288687 Anserini +test2922 Q0 15589316 14 13.266716 Anserini +test2922 Q0 15142783 15 13.172730 Anserini +test2922 Q0 8311272 16 13.163651 Anserini +test2922 Q0 3543364 17 13.152895 Anserini +test2922 Q0 7715501 18 13.143497 Anserini +test2922 Q0 3543359 19 13.125993 Anserini +test2922 Q0 13265733 20 13.035038 Anserini +test2922 Q0 3543392 21 13.000117 Anserini +test2922 Q0 3543370 22 12.981378 Anserini +test2922 Q0 3543418 23 12.948837 Anserini +test2922 Q0 3543389 24 12.929774 Anserini +test2922 Q0 3543420 25 12.897997 Anserini +test2922 Q0 11601474 26 12.894251 Anserini +test2922 Q0 3543408 27 12.843953 Anserini +test2922 Q0 3543358 28 12.843953 Anserini +test2922 Q0 3543377 29 12.752287 Anserini +test2922 Q0 3543366 30 12.736107 Anserini +test2923 Q0 4378241 1 12.314945 Anserini +test2923 Q0 2480285 2 11.011902 Anserini +test2923 Q0 69220 3 10.813220 Anserini +test2923 Q0 597253 4 10.507320 Anserini +test2923 Q0 12258236 5 10.180334 Anserini +test2923 Q0 17969257 6 10.042186 Anserini +test2923 Q0 13030032 7 9.933519 Anserini +test2923 Q0 13161280 8 9.933519 Anserini +test2923 Q0 19648063 9 9.922135 Anserini +test2923 Q0 7876141 10 9.845416 Anserini +test2923 Q0 3664839 11 9.789444 Anserini +test2923 Q0 7738982 12 9.760281 Anserini +test2923 Q0 9180499 13 9.760281 Anserini +test2923 Q0 315149 14 9.747304 Anserini +test2923 Q0 1511048 15 9.723693 Anserini +test2923 Q0 5804527 16 9.723693 Anserini +test2923 Q0 8259542 17 9.696399 Anserini +test2923 Q0 12252816 18 9.633543 Anserini +test2923 Q0 6687719 19 9.630294 Anserini +test2923 Q0 13033242 20 9.612308 Anserini +test2923 Q0 490327 21 9.598907 Anserini +test2923 Q0 2996391 22 9.555834 Anserini +test2923 Q0 4500801 23 9.549396 Anserini +test2923 Q0 6687420 24 9.485474 Anserini +test2923 Q0 1723705 25 9.482559 Anserini +test2923 Q0 1524164 26 9.482559 Anserini +test2923 Q0 2055467 27 9.482559 Anserini +test2923 Q0 19211068 28 9.481036 Anserini +test2923 Q0 7163449 29 9.476955 Anserini +test2923 Q0 15018819 30 9.459519 Anserini +test2924 Q0 8464494 1 13.713303 Anserini +test2924 Q0 7198318 2 13.375680 Anserini +test2924 Q0 4672459 3 13.298791 Anserini +test2924 Q0 6264738 4 13.238516 Anserini +test2924 Q0 13556574 5 12.932920 Anserini +test2924 Q0 1827204 6 12.917248 Anserini +test2924 Q0 13556573 7 12.577439 Anserini +test2924 Q0 2657447 8 12.360098 Anserini +test2924 Q0 20488569 9 12.167955 Anserini +test2924 Q0 17567464 10 11.575188 Anserini +test2924 Q0 2911952 11 11.551159 Anserini +test2924 Q0 670020 12 11.406666 Anserini +test2924 Q0 2914328 13 11.104064 Anserini +test2924 Q0 14995954 14 11.004276 Anserini +test2924 Q0 992907 15 10.967487 Anserini +test2924 Q0 6449418 16 10.904741 Anserini +test2924 Q0 7095117 17 10.891553 Anserini +test2924 Q0 12974532 18 10.871077 Anserini +test2924 Q0 7198171 19 10.809505 Anserini +test2924 Q0 680569 20 10.793449 Anserini +test2924 Q0 1827201 21 10.780751 Anserini +test2924 Q0 56841 22 10.589948 Anserini +test2924 Q0 12966861 23 10.565761 Anserini +test2924 Q0 3260459 24 10.530748 Anserini +test2924 Q0 10027379 25 10.522082 Anserini +test2924 Q0 16911071 26 10.488813 Anserini +test2924 Q0 1727385 27 10.437234 Anserini +test2924 Q0 620415 28 10.422197 Anserini +test2924 Q0 13846707 29 10.381131 Anserini +test2924 Q0 10837939 30 10.303208 Anserini +test2925 Q0 333676 1 20.628218 Anserini +test2925 Q0 13750922 2 19.602386 Anserini +test2925 Q0 596934 3 19.218777 Anserini +test2925 Q0 6911359 4 18.080687 Anserini +test2925 Q0 800361 5 18.054646 Anserini +test2925 Q0 111114 6 18.006880 Anserini +test2925 Q0 800365 7 17.883101 Anserini +test2925 Q0 12477161 8 17.709742 Anserini +test2925 Q0 333661 9 17.668777 Anserini +test2925 Q0 800340 10 17.399122 Anserini +test2925 Q0 4519149 11 17.364733 Anserini +test2925 Q0 800292 12 17.346516 Anserini +test2925 Q0 4717588 13 17.326361 Anserini +test2925 Q0 7940657 14 17.199347 Anserini +test2925 Q0 587334 15 16.953192 Anserini +test2925 Q0 1822742 16 16.928249 Anserini +test2925 Q0 11746755 17 16.861322 Anserini +test2925 Q0 800345 18 16.720507 Anserini +test2925 Q0 449020 19 16.574566 Anserini +test2925 Q0 118689 20 16.555622 Anserini +test2925 Q0 203634 21 16.546587 Anserini +test2925 Q0 333653 22 16.502781 Anserini +test2925 Q0 9358095 23 16.243265 Anserini +test2925 Q0 1822739 24 16.224489 Anserini +test2925 Q0 5731358 25 16.217739 Anserini +test2925 Q0 1822743 26 16.132202 Anserini +test2925 Q0 333681 27 16.052359 Anserini +test2925 Q0 800339 28 16.009897 Anserini +test2925 Q0 13793076 29 15.972795 Anserini +test2925 Q0 12477159 30 15.931300 Anserini +test2926 Q0 16778618 1 18.726147 Anserini +test2926 Q0 16884445 2 17.958591 Anserini +test2926 Q0 16778653 3 17.799877 Anserini +test2926 Q0 16778619 4 17.552116 Anserini +test2926 Q0 18225145 5 17.446907 Anserini +test2926 Q0 16778625 6 17.432549 Anserini +test2926 Q0 16778609 7 17.200369 Anserini +test2926 Q0 16778611 8 16.340433 Anserini +test2926 Q0 16778612 9 16.221886 Anserini +test2926 Q0 16778634 10 15.940634 Anserini +test2926 Q0 16778635 11 15.832314 Anserini +test2926 Q0 16778616 12 15.760473 Anserini +test2926 Q0 16778642 13 15.744465 Anserini +test2926 Q0 16778639 14 15.700540 Anserini +test2926 Q0 17728670 15 15.672090 Anserini +test2926 Q0 16981609 16 15.596313 Anserini +test2926 Q0 16153817 17 15.555007 Anserini +test2926 Q0 19525802 18 15.549683 Anserini +test2926 Q0 16778638 19 15.451222 Anserini +test2926 Q0 16778624 20 15.303142 Anserini +test2926 Q0 19525800 21 15.242976 Anserini +test2926 Q0 6673366 22 15.180974 Anserini +test2926 Q0 16778613 23 15.053044 Anserini +test2926 Q0 16153821 24 15.052474 Anserini +test2926 Q0 16981611 25 15.048386 Anserini +test2926 Q0 16153851 26 15.012947 Anserini +test2926 Q0 16884459 27 14.948780 Anserini +test2926 Q0 20349379 28 14.924299 Anserini +test2926 Q0 408688 29 14.759954 Anserini +test2926 Q0 16799053 30 14.730663 Anserini +test2927 Q0 11288181 1 15.353811 Anserini +test2927 Q0 285884 2 13.046088 Anserini +test2927 Q0 6641227 3 12.814787 Anserini +test2927 Q0 12361085 4 12.061338 Anserini +test2927 Q0 6495250 5 11.950582 Anserini +test2927 Q0 1294177 6 11.928651 Anserini +test2927 Q0 9768020 7 11.851059 Anserini +test2927 Q0 3874248 8 11.745702 Anserini +test2927 Q0 15228297 9 11.675175 Anserini +test2927 Q0 2075054 10 11.629805 Anserini +test2927 Q0 15678717 11 11.510890 Anserini +test2927 Q0 20558402 12 11.509405 Anserini +test2927 Q0 174443 13 11.442885 Anserini +test2927 Q0 20618295 14 11.347058 Anserini +test2927 Q0 18002891 15 11.316943 Anserini +test2927 Q0 747612 16 11.288044 Anserini +test2927 Q0 19044278 17 11.271341 Anserini +test2927 Q0 19756563 18 11.221139 Anserini +test2927 Q0 11275084 19 11.198815 Anserini +test2927 Q0 8478425 20 11.198815 Anserini +test2927 Q0 419872 21 11.179234 Anserini +test2927 Q0 7812177 22 11.140228 Anserini +test2927 Q0 19044298 23 11.122276 Anserini +test2927 Q0 13053124 24 11.100571 Anserini +test2927 Q0 1712034 25 11.100571 Anserini +test2927 Q0 7910758 26 11.076193 Anserini +test2927 Q0 7775963 27 11.050188 Anserini +test2927 Q0 11239897 28 10.979895 Anserini +test2927 Q0 7586885 29 10.947054 Anserini +test2927 Q0 142302 30 10.941335 Anserini +test2928 Q0 1793633 1 12.696682 Anserini +test2928 Q0 1793612 2 12.556928 Anserini +test2928 Q0 1793625 3 12.244488 Anserini +test2928 Q0 9107668 4 12.149314 Anserini +test2928 Q0 12039238 5 11.880810 Anserini +test2928 Q0 1793592 6 11.811163 Anserini +test2928 Q0 1793594 7 11.746132 Anserini +test2928 Q0 1793590 8 11.645840 Anserini +test2928 Q0 1793587 9 11.645840 Anserini +test2928 Q0 14230349 10 11.630110 Anserini +test2928 Q0 14230355 11 11.630110 Anserini +test2928 Q0 1793755 12 11.623910 Anserini +test2928 Q0 1793632 13 11.607301 Anserini +test2928 Q0 12001637 14 11.596988 Anserini +test2928 Q0 1793591 15 11.574951 Anserini +test2928 Q0 12001597 16 11.531491 Anserini +test2928 Q0 1793586 17 11.505018 Anserini +test2928 Q0 1793611 18 11.505018 Anserini +test2928 Q0 1858514 19 11.374553 Anserini +test2928 Q0 1793595 20 11.358915 Anserini +test2928 Q0 14935075 21 11.319393 Anserini +test2928 Q0 10628714 22 11.295527 Anserini +test2928 Q0 1793760 23 11.295218 Anserini +test2928 Q0 1793762 24 11.295218 Anserini +test2928 Q0 1793577 25 11.038689 Anserini +test2928 Q0 12479409 26 10.972342 Anserini +test2928 Q0 14784269 27 10.970749 Anserini +test2928 Q0 1793599 28 10.962707 Anserini +test2928 Q0 12897449 29 10.942333 Anserini +test2928 Q0 1343225 30 10.877533 Anserini +test2929 Q0 11635271 1 20.048265 Anserini +test2929 Q0 19567213 2 19.389259 Anserini +test2929 Q0 17031868 3 17.889082 Anserini +test2929 Q0 2432681 4 17.139698 Anserini +test2929 Q0 4652963 5 16.779114 Anserini +test2929 Q0 11924668 6 16.740953 Anserini +test2929 Q0 184981 7 16.736498 Anserini +test2929 Q0 1863388 8 16.728466 Anserini +test2929 Q0 17205639 9 16.560211 Anserini +test2929 Q0 9534485 10 16.548546 Anserini +test2929 Q0 6297645 11 16.548393 Anserini +test2929 Q0 13189484 12 16.471926 Anserini +test2929 Q0 2916234 13 16.354923 Anserini +test2929 Q0 16616480 14 16.338074 Anserini +test2929 Q0 19834651 15 16.281473 Anserini +test2929 Q0 20468424 16 16.185059 Anserini +test2929 Q0 5327652 17 16.177681 Anserini +test2929 Q0 6952114 18 16.160015 Anserini +test2929 Q0 17642433 19 16.126080 Anserini +test2929 Q0 17902249 20 16.089230 Anserini +test2929 Q0 20468423 21 15.959148 Anserini +test2929 Q0 2814784 22 15.890038 Anserini +test2929 Q0 2061457 23 15.810873 Anserini +test2929 Q0 2916233 24 15.669894 Anserini +test2929 Q0 8798971 25 15.668016 Anserini +test2929 Q0 9534484 26 15.556450 Anserini +test2929 Q0 10888478 27 15.547905 Anserini +test2929 Q0 8367159 28 15.539788 Anserini +test2929 Q0 13509123 29 15.522210 Anserini +test2929 Q0 3957648 30 15.494030 Anserini +test293 Q0 17041651 1 15.307523 Anserini +test293 Q0 4272916 2 14.181059 Anserini +test293 Q0 17041653 3 14.149418 Anserini +test293 Q0 6598469 4 14.140997 Anserini +test293 Q0 4272908 5 13.842262 Anserini +test293 Q0 4272911 6 13.725906 Anserini +test293 Q0 6598472 7 13.665769 Anserini +test293 Q0 4272913 8 13.645433 Anserini +test293 Q0 6598461 9 13.606267 Anserini +test293 Q0 19322479 10 13.596402 Anserini +test293 Q0 19650147 11 13.568664 Anserini +test293 Q0 19650146 12 13.487740 Anserini +test293 Q0 19322480 13 13.407849 Anserini +test293 Q0 3193362 14 12.884489 Anserini +test293 Q0 4468956 15 12.883189 Anserini +test293 Q0 889259 16 12.880302 Anserini +test293 Q0 17041655 17 12.705048 Anserini +test293 Q0 12597473 18 12.640460 Anserini +test293 Q0 10675329 19 12.612144 Anserini +test293 Q0 10675330 20 12.569391 Anserini +test293 Q0 19892520 21 12.465732 Anserini +test293 Q0 11629900 22 12.434130 Anserini +test293 Q0 13069404 23 12.434107 Anserini +test293 Q0 15321568 24 12.428830 Anserini +test293 Q0 13521075 25 12.412489 Anserini +test293 Q0 2153132 26 12.342008 Anserini +test293 Q0 5494476 27 12.342008 Anserini +test293 Q0 1004218 28 12.251280 Anserini +test293 Q0 1309112 29 12.163215 Anserini +test293 Q0 17041654 30 12.161912 Anserini +test2930 Q0 5372360 1 13.473690 Anserini +test2930 Q0 5372349 2 13.473690 Anserini +test2930 Q0 2405972 3 10.090990 Anserini +test2930 Q0 2405979 4 10.006667 Anserini +test2930 Q0 374061 5 9.950462 Anserini +test2930 Q0 4148590 6 9.950462 Anserini +test2930 Q0 15563066 7 9.950462 Anserini +test2930 Q0 14447026 8 9.861099 Anserini +test2930 Q0 12716860 9 9.861099 Anserini +test2930 Q0 5372355 10 9.861099 Anserini +test2930 Q0 1728476 11 9.850611 Anserini +test2930 Q0 20666165 12 9.833892 Anserini +test2930 Q0 5874857 13 9.828747 Anserini +test2930 Q0 5372359 14 9.660185 Anserini +test2930 Q0 965131 15 9.660185 Anserini +test2930 Q0 8270917 16 9.638395 Anserini +test2930 Q0 7058896 17 9.581398 Anserini +test2930 Q0 1327039 18 9.567783 Anserini +test2930 Q0 5372353 19 9.567783 Anserini +test2930 Q0 10938143 20 9.567783 Anserini +test2930 Q0 17155310 21 9.456981 Anserini +test2930 Q0 13092993 22 9.451343 Anserini +test2930 Q0 9756212 23 9.451343 Anserini +test2930 Q0 19699058 24 9.378844 Anserini +test2930 Q0 8694966 25 9.359847 Anserini +test2930 Q0 9665113 26 9.323316 Anserini +test2930 Q0 17155311 27 9.323316 Anserini +test2930 Q0 3034424 28 9.323316 Anserini +test2930 Q0 5355667 29 9.323316 Anserini +test2930 Q0 12227351 30 9.315526 Anserini +test2931 Q0 4681697 1 9.813885 Anserini +test2931 Q0 11926437 2 9.528458 Anserini +test2931 Q0 2514675 3 9.390931 Anserini +test2931 Q0 617801 4 9.362203 Anserini +test2931 Q0 5562125 5 9.308523 Anserini +test2931 Q0 4149227 6 9.197392 Anserini +test2931 Q0 4146290 7 9.134838 Anserini +test2931 Q0 7825734 8 9.068026 Anserini +test2931 Q0 8985821 9 9.009225 Anserini +test2931 Q0 6663406 10 8.995708 Anserini +test2931 Q0 8126430 11 8.815799 Anserini +test2931 Q0 19990700 12 8.796878 Anserini +test2931 Q0 5562118 13 8.786014 Anserini +test2931 Q0 6663408 14 8.744008 Anserini +test2931 Q0 7150579 15 8.726980 Anserini +test2931 Q0 7775841 16 8.701258 Anserini +test2931 Q0 15515663 17 8.683784 Anserini +test2931 Q0 8151072 18 8.645430 Anserini +test2931 Q0 12988435 19 8.629170 Anserini +test2931 Q0 8151086 20 8.477298 Anserini +test2931 Q0 8128186 21 8.475716 Anserini +test2931 Q0 7845449 22 8.456702 Anserini +test2931 Q0 7925300 23 8.437222 Anserini +test2931 Q0 421014 24 8.405430 Anserini +test2931 Q0 617782 25 8.391850 Anserini +test2931 Q0 13216033 26 8.391850 Anserini +test2931 Q0 6354507 27 8.388478 Anserini +test2931 Q0 7201373 28 8.346001 Anserini +test2931 Q0 17337223 29 8.312942 Anserini +test2931 Q0 17873673 30 8.312942 Anserini +test2932 Q0 2714341 1 17.568922 Anserini +test2932 Q0 2714339 2 13.480727 Anserini +test2932 Q0 2714338 3 12.680254 Anserini +test2932 Q0 47098 4 12.266619 Anserini +test2932 Q0 1207214 5 12.171682 Anserini +test2932 Q0 9343306 6 11.822092 Anserini +test2932 Q0 6686991 7 11.478946 Anserini +test2932 Q0 47066 8 11.321656 Anserini +test2932 Q0 6965257 9 11.282069 Anserini +test2932 Q0 16642476 10 11.194053 Anserini +test2932 Q0 14322015 11 11.128434 Anserini +test2932 Q0 6686994 12 11.079399 Anserini +test2932 Q0 7900886 13 11.027271 Anserini +test2932 Q0 7155796 14 10.935192 Anserini +test2932 Q0 9613546 15 10.874638 Anserini +test2932 Q0 16556519 16 10.872252 Anserini +test2932 Q0 7081263 17 10.826131 Anserini +test2932 Q0 47057 18 10.779692 Anserini +test2932 Q0 2102999 19 10.778494 Anserini +test2932 Q0 47059 20 10.771105 Anserini +test2932 Q0 2714352 21 10.700115 Anserini +test2932 Q0 6686992 22 10.633759 Anserini +test2932 Q0 2714349 23 10.589079 Anserini +test2932 Q0 4170571 24 10.545809 Anserini +test2932 Q0 11006953 25 10.503378 Anserini +test2932 Q0 2714340 26 10.461028 Anserini +test2932 Q0 3515568 27 10.439438 Anserini +test2932 Q0 6413912 28 10.439136 Anserini +test2932 Q0 8398397 29 10.395460 Anserini +test2932 Q0 8398396 30 10.395460 Anserini +test2933 Q0 2470103 1 13.003436 Anserini +test2933 Q0 18469507 2 12.752569 Anserini +test2933 Q0 18363193 3 12.673600 Anserini +test2933 Q0 14441476 4 12.554574 Anserini +test2933 Q0 18469457 5 12.551276 Anserini +test2933 Q0 19463313 6 12.430448 Anserini +test2933 Q0 2470109 7 12.409783 Anserini +test2933 Q0 778225 8 12.269492 Anserini +test2933 Q0 18469468 9 12.241835 Anserini +test2933 Q0 2470098 10 12.174043 Anserini +test2933 Q0 191350 11 11.588309 Anserini +test2933 Q0 12037299 12 11.535488 Anserini +test2933 Q0 18763846 13 11.527464 Anserini +test2933 Q0 14491937 14 11.494932 Anserini +test2933 Q0 11717239 15 11.374861 Anserini +test2933 Q0 17674356 16 11.274572 Anserini +test2933 Q0 58142 17 11.272469 Anserini +test2933 Q0 17674354 18 11.237432 Anserini +test2933 Q0 17446765 19 11.208117 Anserini +test2933 Q0 17674357 20 11.117785 Anserini +test2933 Q0 14441474 21 11.063566 Anserini +test2933 Q0 18469472 22 11.045973 Anserini +test2933 Q0 2470100 23 11.023693 Anserini +test2933 Q0 18469506 24 10.959078 Anserini +test2933 Q0 19976180 25 10.933861 Anserini +test2933 Q0 2470101 26 10.851297 Anserini +test2933 Q0 18469466 27 10.850952 Anserini +test2933 Q0 191326 28 10.831427 Anserini +test2933 Q0 14441479 29 10.811943 Anserini +test2933 Q0 18763847 30 10.796192 Anserini +test2934 Q0 17900239 1 17.473040 Anserini +test2934 Q0 2773363 2 15.943348 Anserini +test2934 Q0 509565 3 15.936377 Anserini +test2934 Q0 4814552 4 15.813499 Anserini +test2934 Q0 874171 5 15.456951 Anserini +test2934 Q0 10660861 6 15.169037 Anserini +test2934 Q0 5368800 7 15.132907 Anserini +test2934 Q0 5144486 8 15.030854 Anserini +test2934 Q0 1610297 9 15.029762 Anserini +test2934 Q0 1812011 10 14.931482 Anserini +test2934 Q0 1812019 11 14.931482 Anserini +test2934 Q0 13368680 12 14.929954 Anserini +test2934 Q0 5640970 13 14.907291 Anserini +test2934 Q0 1799110 14 14.464804 Anserini +test2934 Q0 16656249 15 14.435885 Anserini +test2934 Q0 2921577 16 14.344313 Anserini +test2934 Q0 1539938 17 14.218606 Anserini +test2934 Q0 11042905 18 14.216382 Anserini +test2934 Q0 11994346 19 14.163475 Anserini +test2934 Q0 17897308 20 14.117371 Anserini +test2934 Q0 11655427 21 14.061186 Anserini +test2934 Q0 3305831 22 13.941975 Anserini +test2934 Q0 10660866 23 13.939358 Anserini +test2934 Q0 18101017 24 13.789895 Anserini +test2934 Q0 6547198 25 13.786521 Anserini +test2934 Q0 16355143 26 13.660210 Anserini +test2934 Q0 3046893 27 13.588671 Anserini +test2934 Q0 1543201 28 13.466020 Anserini +test2934 Q0 19330376 29 13.436050 Anserini +test2934 Q0 11051260 30 13.429068 Anserini +test2935 Q0 4189553 1 28.960052 Anserini +test2935 Q0 4189587 2 28.495014 Anserini +test2935 Q0 5871956 3 27.747160 Anserini +test2935 Q0 5871946 4 27.747160 Anserini +test2935 Q0 840369 5 27.087929 Anserini +test2935 Q0 840358 6 26.614609 Anserini +test2935 Q0 4189575 7 26.540630 Anserini +test2935 Q0 13574422 8 26.277756 Anserini +test2935 Q0 2876467 9 26.163233 Anserini +test2935 Q0 13574390 10 26.120728 Anserini +test2935 Q0 13574430 11 26.120728 Anserini +test2935 Q0 840367 12 25.990252 Anserini +test2935 Q0 19383179 13 25.948528 Anserini +test2935 Q0 19383203 14 25.395489 Anserini +test2935 Q0 4189586 15 25.346840 Anserini +test2935 Q0 19383175 16 25.225685 Anserini +test2935 Q0 13574417 17 25.094204 Anserini +test2935 Q0 7400206 18 25.082201 Anserini +test2935 Q0 840355 19 25.025215 Anserini +test2935 Q0 16908676 20 24.881218 Anserini +test2935 Q0 840360 21 24.871613 Anserini +test2935 Q0 840359 22 24.869442 Anserini +test2935 Q0 4189565 23 24.726913 Anserini +test2935 Q0 16908689 24 24.703121 Anserini +test2935 Q0 2876465 25 24.450552 Anserini +test2935 Q0 18126855 26 24.445436 Anserini +test2935 Q0 13574414 27 24.263443 Anserini +test2935 Q0 840576 28 24.117964 Anserini +test2935 Q0 7400207 29 24.064665 Anserini +test2935 Q0 840363 30 24.046667 Anserini +test2936 Q0 6349259 1 14.713676 Anserini +test2936 Q0 3225881 2 13.971659 Anserini +test2936 Q0 5141888 3 13.927703 Anserini +test2936 Q0 573243 4 13.893161 Anserini +test2936 Q0 3211628 5 13.832894 Anserini +test2936 Q0 17789371 6 13.682106 Anserini +test2936 Q0 573244 7 13.535971 Anserini +test2936 Q0 13476697 8 13.423760 Anserini +test2936 Q0 14117740 9 13.402590 Anserini +test2936 Q0 15107535 10 13.394809 Anserini +test2936 Q0 16818477 11 13.256738 Anserini +test2936 Q0 14380747 12 13.231481 Anserini +test2936 Q0 13476696 13 13.225722 Anserini +test2936 Q0 20283884 14 13.185005 Anserini +test2936 Q0 1525703 15 13.132090 Anserini +test2936 Q0 2545121 16 13.083164 Anserini +test2936 Q0 17789382 17 13.052091 Anserini +test2936 Q0 573275 18 13.048861 Anserini +test2936 Q0 7442911 19 13.029910 Anserini +test2936 Q0 12753112 20 13.014373 Anserini +test2936 Q0 11572331 21 13.013997 Anserini +test2936 Q0 6746578 22 12.952492 Anserini +test2936 Q0 11859109 23 12.949520 Anserini +test2936 Q0 3397595 24 12.925592 Anserini +test2936 Q0 16534773 25 12.873055 Anserini +test2936 Q0 13639202 26 12.794350 Anserini +test2936 Q0 14487218 27 12.750187 Anserini +test2936 Q0 17082713 28 12.707205 Anserini +test2936 Q0 3211635 29 12.694382 Anserini +test2936 Q0 10267971 30 12.649954 Anserini +test2937 Q0 6590032 1 13.115986 Anserini +test2937 Q0 5099179 2 11.617906 Anserini +test2937 Q0 3979787 3 11.019277 Anserini +test2937 Q0 19012055 4 11.007565 Anserini +test2937 Q0 19545125 5 10.766226 Anserini +test2937 Q0 16925496 6 10.634504 Anserini +test2937 Q0 11474187 7 10.615313 Anserini +test2937 Q0 4971943 8 10.538502 Anserini +test2937 Q0 3324163 9 10.530727 Anserini +test2937 Q0 2473241 10 10.529058 Anserini +test2937 Q0 3658385 11 10.485868 Anserini +test2937 Q0 5024240 12 10.340180 Anserini +test2937 Q0 19589282 13 10.296414 Anserini +test2937 Q0 14514253 14 10.295424 Anserini +test2937 Q0 5328468 15 10.275005 Anserini +test2937 Q0 7947149 16 10.132794 Anserini +test2937 Q0 6917960 17 10.113170 Anserini +test2937 Q0 2463179 18 10.025771 Anserini +test2937 Q0 8934937 19 9.986691 Anserini +test2937 Q0 17871294 20 9.811483 Anserini +test2937 Q0 5099398 21 9.811170 Anserini +test2937 Q0 14239363 22 9.798428 Anserini +test2937 Q0 417711 23 9.764009 Anserini +test2937 Q0 8534065 24 9.748639 Anserini +test2937 Q0 11175923 25 9.717764 Anserini +test2937 Q0 19604782 26 9.712906 Anserini +test2937 Q0 20034379 27 9.712906 Anserini +test2937 Q0 19604781 28 9.676761 Anserini +test2937 Q0 19512996 29 9.646146 Anserini +test2937 Q0 20034377 30 9.646146 Anserini +test2938 Q0 13570317 1 11.873787 Anserini +test2938 Q0 2199202 2 11.713424 Anserini +test2938 Q0 122762 3 11.599975 Anserini +test2938 Q0 6945077 4 11.481671 Anserini +test2938 Q0 13570321 5 11.377216 Anserini +test2938 Q0 4632757 6 11.358050 Anserini +test2938 Q0 6581656 7 11.345454 Anserini +test2938 Q0 7687185 8 11.325440 Anserini +test2938 Q0 7730678 9 11.314289 Anserini +test2938 Q0 2749289 10 11.303109 Anserini +test2938 Q0 85076 11 11.286077 Anserini +test2938 Q0 85158 12 11.286077 Anserini +test2938 Q0 85095 13 11.269908 Anserini +test2938 Q0 10235895 14 11.146850 Anserini +test2938 Q0 13570320 15 11.060672 Anserini +test2938 Q0 13570314 16 11.046801 Anserini +test2938 Q0 13570332 17 11.046801 Anserini +test2938 Q0 17782059 18 11.040016 Anserini +test2938 Q0 17782066 19 11.040016 Anserini +test2938 Q0 3364532 20 10.991929 Anserini +test2938 Q0 2193803 21 10.972944 Anserini +test2938 Q0 815159 22 10.958320 Anserini +test2938 Q0 4753389 23 10.923666 Anserini +test2938 Q0 4753391 24 10.923666 Anserini +test2938 Q0 122763 25 10.916298 Anserini +test2938 Q0 7359502 26 10.878086 Anserini +test2938 Q0 5803063 27 10.870097 Anserini +test2938 Q0 2902288 28 10.846138 Anserini +test2938 Q0 2750396 29 10.823483 Anserini +test2938 Q0 13570331 30 10.809616 Anserini +test2939 Q0 7519961 1 15.671623 Anserini +test2939 Q0 6853725 2 13.621928 Anserini +test2939 Q0 12746217 3 12.512362 Anserini +test2939 Q0 1582730 4 12.323407 Anserini +test2939 Q0 7519949 5 11.942245 Anserini +test2939 Q0 15512708 6 11.743157 Anserini +test2939 Q0 11612127 7 11.546524 Anserini +test2939 Q0 11500489 8 11.218512 Anserini +test2939 Q0 3709144 9 11.059654 Anserini +test2939 Q0 17759245 10 11.015146 Anserini +test2939 Q0 14589250 11 10.921487 Anserini +test2939 Q0 5056210 12 10.883344 Anserini +test2939 Q0 19182882 13 10.865026 Anserini +test2939 Q0 12418341 14 10.801936 Anserini +test2939 Q0 6403454 15 10.680970 Anserini +test2939 Q0 19182883 16 10.581445 Anserini +test2939 Q0 259970 17 10.551057 Anserini +test2939 Q0 259954 18 10.542086 Anserini +test2939 Q0 5872954 19 10.471891 Anserini +test2939 Q0 18953387 20 10.459740 Anserini +test2939 Q0 18470518 21 10.382608 Anserini +test2939 Q0 18176350 22 10.315598 Anserini +test2939 Q0 7352544 23 10.256709 Anserini +test2939 Q0 6046268 24 10.238713 Anserini +test2939 Q0 12418343 25 10.168250 Anserini +test2939 Q0 259953 26 10.137021 Anserini +test2939 Q0 1617757 27 10.132985 Anserini +test2939 Q0 16335463 28 10.104950 Anserini +test2939 Q0 259955 29 9.975176 Anserini +test2939 Q0 8774280 30 9.955768 Anserini +test294 Q0 10378437 1 14.612015 Anserini +test294 Q0 14070163 2 14.154912 Anserini +test294 Q0 14070164 3 14.154912 Anserini +test294 Q0 20810994 4 13.473532 Anserini +test294 Q0 7138319 5 12.965971 Anserini +test294 Q0 6190255 6 12.750412 Anserini +test294 Q0 7032272 7 12.605614 Anserini +test294 Q0 18279275 8 12.589862 Anserini +test294 Q0 7679902 9 12.561481 Anserini +test294 Q0 12092624 10 12.391476 Anserini +test294 Q0 666188 11 12.374043 Anserini +test294 Q0 18282642 12 12.358377 Anserini +test294 Q0 6190249 13 12.352075 Anserini +test294 Q0 18282643 14 12.340448 Anserini +test294 Q0 20224463 15 12.319526 Anserini +test294 Q0 20224464 16 12.319526 Anserini +test294 Q0 18279279 17 12.268989 Anserini +test294 Q0 14097779 18 12.222588 Anserini +test294 Q0 9065703 19 12.191938 Anserini +test294 Q0 12092625 20 12.179615 Anserini +test294 Q0 9304226 21 12.155573 Anserini +test294 Q0 19135471 22 12.126040 Anserini +test294 Q0 11005900 23 12.043093 Anserini +test294 Q0 2428027 24 12.018221 Anserini +test294 Q0 2428014 25 12.018221 Anserini +test294 Q0 14189159 26 11.984297 Anserini +test294 Q0 14097778 27 11.950092 Anserini +test294 Q0 11134605 28 11.945862 Anserini +test294 Q0 19566584 29 11.924450 Anserini +test294 Q0 14138002 30 11.921209 Anserini +test2940 Q0 4199685 1 15.808036 Anserini +test2940 Q0 387973 2 15.652834 Anserini +test2940 Q0 13423756 3 15.021102 Anserini +test2940 Q0 5999509 4 14.508330 Anserini +test2940 Q0 387975 5 14.426870 Anserini +test2940 Q0 414803 6 14.045446 Anserini +test2940 Q0 3298712 7 13.546906 Anserini +test2940 Q0 16772560 8 13.483703 Anserini +test2940 Q0 5387227 9 13.483703 Anserini +test2940 Q0 428037 10 13.334103 Anserini +test2940 Q0 387985 11 13.177135 Anserini +test2940 Q0 16772556 12 13.070897 Anserini +test2940 Q0 6676630 13 12.960838 Anserini +test2940 Q0 13679533 14 12.927634 Anserini +test2940 Q0 16772599 15 12.804644 Anserini +test2940 Q0 387990 16 12.762380 Anserini +test2940 Q0 283850 17 12.721315 Anserini +test2940 Q0 387986 18 12.522509 Anserini +test2940 Q0 16772561 19 12.500691 Anserini +test2940 Q0 16772562 20 12.370467 Anserini +test2940 Q0 387974 21 12.281747 Anserini +test2940 Q0 5999514 22 12.168606 Anserini +test2940 Q0 16772552 23 12.165836 Anserini +test2940 Q0 387999 24 12.094873 Anserini +test2940 Q0 387966 25 11.994708 Anserini +test2940 Q0 14790370 26 11.910292 Anserini +test2940 Q0 725479 27 11.882252 Anserini +test2940 Q0 16772563 28 11.876564 Anserini +test2940 Q0 16772581 29 11.875577 Anserini +test2940 Q0 6003485 30 11.842644 Anserini +test2941 Q0 18293683 1 16.639149 Anserini +test2941 Q0 19026099 2 15.860800 Anserini +test2941 Q0 19264988 3 15.702106 Anserini +test2941 Q0 16949997 4 15.631515 Anserini +test2941 Q0 19264990 5 15.580295 Anserini +test2941 Q0 18315482 6 15.545925 Anserini +test2941 Q0 19482264 7 15.342949 Anserini +test2941 Q0 19896619 8 15.247456 Anserini +test2941 Q0 271672 9 15.069558 Anserini +test2941 Q0 19970952 10 15.003089 Anserini +test2941 Q0 20130698 11 14.962043 Anserini +test2941 Q0 19994378 12 14.947500 Anserini +test2941 Q0 17771456 13 14.930840 Anserini +test2941 Q0 439481 14 14.887147 Anserini +test2941 Q0 19150436 15 14.788986 Anserini +test2941 Q0 17261678 16 14.749693 Anserini +test2941 Q0 3243898 17 14.662612 Anserini +test2941 Q0 19820419 18 14.642246 Anserini +test2941 Q0 20132798 19 14.607060 Anserini +test2941 Q0 18558439 20 14.605307 Anserini +test2941 Q0 16987707 21 14.589499 Anserini +test2941 Q0 19783733 22 14.582022 Anserini +test2941 Q0 19975293 23 14.577826 Anserini +test2941 Q0 9864886 24 14.577237 Anserini +test2941 Q0 20040285 25 14.562288 Anserini +test2941 Q0 16396186 26 14.533283 Anserini +test2941 Q0 4227484 27 14.444468 Anserini +test2941 Q0 19678579 28 14.434086 Anserini +test2941 Q0 19915447 29 14.412263 Anserini +test2941 Q0 10546890 30 14.406794 Anserini +test2942 Q0 11810635 1 14.239207 Anserini +test2942 Q0 17609413 2 13.904217 Anserini +test2942 Q0 3947931 3 13.492588 Anserini +test2942 Q0 12632685 4 13.186865 Anserini +test2942 Q0 282436 5 13.183734 Anserini +test2942 Q0 9157942 6 12.687027 Anserini +test2942 Q0 1396170 7 12.685237 Anserini +test2942 Q0 7589329 8 12.577627 Anserini +test2942 Q0 12182411 9 12.486057 Anserini +test2942 Q0 7589324 10 12.467693 Anserini +test2942 Q0 12190428 11 12.326936 Anserini +test2942 Q0 1467895 12 12.263428 Anserini +test2942 Q0 18462198 13 12.058540 Anserini +test2942 Q0 282506 14 11.959684 Anserini +test2942 Q0 20762582 15 11.906292 Anserini +test2942 Q0 20721282 16 11.874903 Anserini +test2942 Q0 10143606 17 11.833646 Anserini +test2942 Q0 17287692 18 11.652573 Anserini +test2942 Q0 282519 19 11.635046 Anserini +test2942 Q0 11661403 20 11.478856 Anserini +test2942 Q0 18975101 21 11.367405 Anserini +test2942 Q0 12218260 22 11.334733 Anserini +test2942 Q0 14604551 23 11.214296 Anserini +test2942 Q0 12218252 24 11.131543 Anserini +test2942 Q0 4854670 25 11.077551 Anserini +test2942 Q0 9542050 26 11.069998 Anserini +test2942 Q0 11661381 27 11.063627 Anserini +test2942 Q0 10143584 28 10.948598 Anserini +test2942 Q0 1467897 29 10.942991 Anserini +test2942 Q0 4531368 30 10.910822 Anserini +test2943 Q0 7738826 1 14.221222 Anserini +test2943 Q0 1225536 2 12.781360 Anserini +test2943 Q0 17011178 3 11.794009 Anserini +test2943 Q0 8401272 4 11.770617 Anserini +test2943 Q0 4363662 5 11.546534 Anserini +test2943 Q0 19921711 6 11.530490 Anserini +test2943 Q0 5468137 7 11.446013 Anserini +test2943 Q0 19926657 8 11.202469 Anserini +test2943 Q0 16450786 9 11.128538 Anserini +test2943 Q0 5999270 10 11.103639 Anserini +test2943 Q0 1413141 11 11.070970 Anserini +test2943 Q0 8645065 12 11.047058 Anserini +test2943 Q0 390697 13 10.950188 Anserini +test2943 Q0 1874331 14 10.906227 Anserini +test2943 Q0 4905308 15 10.897010 Anserini +test2943 Q0 7371700 16 10.867411 Anserini +test2943 Q0 17234641 17 10.826659 Anserini +test2943 Q0 822243 18 10.805969 Anserini +test2943 Q0 1413160 19 10.799011 Anserini +test2943 Q0 14788866 20 10.761050 Anserini +test2943 Q0 15399250 21 10.756275 Anserini +test2943 Q0 9701477 22 10.733459 Anserini +test2943 Q0 11611317 23 10.692982 Anserini +test2943 Q0 10452445 24 10.690176 Anserini +test2943 Q0 1851177 25 10.661996 Anserini +test2943 Q0 1158588 26 10.625960 Anserini +test2943 Q0 6701879 27 10.571945 Anserini +test2943 Q0 6118107 28 10.566439 Anserini +test2943 Q0 15245787 29 10.561659 Anserini +test2943 Q0 2994768 30 10.555387 Anserini +test2944 Q0 9266697 1 13.095446 Anserini +test2944 Q0 8965937 2 11.527396 Anserini +test2944 Q0 9266698 3 11.172320 Anserini +test2944 Q0 19349253 4 9.717342 Anserini +test2944 Q0 5059898 5 9.585550 Anserini +test2944 Q0 2687985 6 9.542515 Anserini +test2944 Q0 12613390 7 9.535467 Anserini +test2944 Q0 301732 8 9.353949 Anserini +test2944 Q0 11730400 9 9.330788 Anserini +test2944 Q0 3445044 10 9.312649 Anserini +test2944 Q0 4600731 11 9.238951 Anserini +test2944 Q0 984161 12 9.181499 Anserini +test2944 Q0 6957360 13 9.069149 Anserini +test2944 Q0 656202 14 9.053686 Anserini +test2944 Q0 20132561 15 9.053686 Anserini +test2944 Q0 7986007 16 9.053686 Anserini +test2944 Q0 15410229 17 9.047034 Anserini +test2944 Q0 20244947 18 8.971189 Anserini +test2944 Q0 4946217 19 8.939892 Anserini +test2944 Q0 3050791 20 8.897174 Anserini +test2944 Q0 2883905 21 8.853346 Anserini +test2944 Q0 8292411 22 8.853346 Anserini +test2944 Q0 6029872 23 8.837185 Anserini +test2944 Q0 2299169 24 8.816574 Anserini +test2944 Q0 2908213 25 8.816574 Anserini +test2944 Q0 16597059 26 8.778109 Anserini +test2944 Q0 5546886 27 8.756182 Anserini +test2944 Q0 2890545 28 8.719921 Anserini +test2944 Q0 1677688 29 8.719921 Anserini +test2944 Q0 19294625 30 8.680592 Anserini +test2945 Q0 9285647 1 15.183315 Anserini +test2945 Q0 1596124 2 13.438427 Anserini +test2945 Q0 9285648 3 13.065342 Anserini +test2945 Q0 185435 4 12.733007 Anserini +test2945 Q0 9285658 5 12.691460 Anserini +test2945 Q0 9285645 6 12.076456 Anserini +test2945 Q0 14227477 7 11.995257 Anserini +test2945 Q0 8415 8 11.905523 Anserini +test2945 Q0 13920553 9 11.802339 Anserini +test2945 Q0 147534 10 11.788097 Anserini +test2945 Q0 16704755 11 11.716672 Anserini +test2945 Q0 2340486 12 11.605652 Anserini +test2945 Q0 9285649 13 11.581095 Anserini +test2945 Q0 7720926 14 11.494834 Anserini +test2945 Q0 431082 15 11.369146 Anserini +test2945 Q0 13920554 16 11.354750 Anserini +test2945 Q0 18109796 17 11.332426 Anserini +test2945 Q0 313285 18 11.313869 Anserini +test2945 Q0 3274295 19 11.287498 Anserini +test2945 Q0 10238449 20 11.243286 Anserini +test2945 Q0 13924922 21 11.207169 Anserini +test2945 Q0 10839869 22 11.196485 Anserini +test2945 Q0 520989 23 11.141479 Anserini +test2945 Q0 330501 24 11.129547 Anserini +test2945 Q0 6253603 25 11.097645 Anserini +test2945 Q0 301739 26 11.075390 Anserini +test2945 Q0 7390089 27 11.035235 Anserini +test2945 Q0 992401 28 11.018659 Anserini +test2945 Q0 378486 29 11.018659 Anserini +test2945 Q0 2340508 30 10.991377 Anserini +test2946 Q0 18048273 1 13.381426 Anserini +test2946 Q0 13991415 2 12.901745 Anserini +test2946 Q0 2101790 3 12.792318 Anserini +test2946 Q0 1294255 4 12.562418 Anserini +test2946 Q0 10286860 5 12.522376 Anserini +test2946 Q0 2101786 6 12.418615 Anserini +test2946 Q0 14890655 7 12.359783 Anserini +test2946 Q0 18048274 8 12.290052 Anserini +test2946 Q0 266653 9 11.946111 Anserini +test2946 Q0 937494 10 11.905411 Anserini +test2946 Q0 10831171 11 11.764922 Anserini +test2946 Q0 16939452 12 11.750191 Anserini +test2946 Q0 9109531 13 11.726511 Anserini +test2946 Q0 9447083 14 11.700275 Anserini +test2946 Q0 1294256 15 11.594378 Anserini +test2946 Q0 9520431 16 11.509261 Anserini +test2946 Q0 9106655 17 11.298795 Anserini +test2946 Q0 5649140 18 11.213573 Anserini +test2946 Q0 13747826 19 11.194992 Anserini +test2946 Q0 16939155 20 11.193295 Anserini +test2946 Q0 7792483 21 11.179472 Anserini +test2946 Q0 1137758 22 11.116713 Anserini +test2946 Q0 16939152 23 11.101492 Anserini +test2946 Q0 15354028 24 11.059156 Anserini +test2946 Q0 3579899 25 11.051479 Anserini +test2946 Q0 1209827 26 11.021120 Anserini +test2946 Q0 4005088 27 11.011210 Anserini +test2946 Q0 6029878 28 10.977482 Anserini +test2946 Q0 848638 29 10.941143 Anserini +test2946 Q0 8020962 30 10.853995 Anserini +test2947 Q0 13249542 1 12.813420 Anserini +test2947 Q0 17387784 2 11.610071 Anserini +test2947 Q0 7781379 3 11.322537 Anserini +test2947 Q0 18206651 4 11.202732 Anserini +test2947 Q0 12604898 5 10.932407 Anserini +test2947 Q0 12604907 6 10.932407 Anserini +test2947 Q0 20302751 7 10.828867 Anserini +test2947 Q0 9669332 8 10.714635 Anserini +test2947 Q0 12604901 9 10.699929 Anserini +test2947 Q0 7781376 10 10.683581 Anserini +test2947 Q0 9669336 11 10.683485 Anserini +test2947 Q0 7805551 12 10.683485 Anserini +test2947 Q0 12334509 13 10.651997 Anserini +test2947 Q0 8343160 14 10.618448 Anserini +test2947 Q0 8392412 15 10.582281 Anserini +test2947 Q0 2136572 16 10.551575 Anserini +test2947 Q0 2136606 17 10.551575 Anserini +test2947 Q0 10056131 18 10.483078 Anserini +test2947 Q0 17842124 19 10.416996 Anserini +test2947 Q0 17842064 20 10.416996 Anserini +test2947 Q0 15083024 21 10.381681 Anserini +test2947 Q0 10655526 22 10.365603 Anserini +test2947 Q0 17842117 23 10.279625 Anserini +test2947 Q0 17387771 24 10.269436 Anserini +test2947 Q0 9453755 25 10.269436 Anserini +test2947 Q0 8392414 26 10.265732 Anserini +test2947 Q0 18433545 27 10.265417 Anserini +test2947 Q0 6603921 28 10.242371 Anserini +test2947 Q0 20283416 29 10.203323 Anserini +test2947 Q0 2136586 30 10.202680 Anserini +test2948 Q0 4767823 1 16.687813 Anserini +test2948 Q0 11072326 2 15.754976 Anserini +test2948 Q0 20194819 3 15.559471 Anserini +test2948 Q0 5298009 4 15.511122 Anserini +test2948 Q0 4423255 5 15.304443 Anserini +test2948 Q0 5015797 6 15.301813 Anserini +test2948 Q0 11772545 7 15.238047 Anserini +test2948 Q0 17739401 8 15.236423 Anserini +test2948 Q0 15920641 9 15.139991 Anserini +test2948 Q0 3101681 10 15.036098 Anserini +test2948 Q0 794428 11 15.008535 Anserini +test2948 Q0 12427178 12 14.979225 Anserini +test2948 Q0 4767821 13 14.951464 Anserini +test2948 Q0 235389 14 14.948104 Anserini +test2948 Q0 791177 15 14.908079 Anserini +test2948 Q0 19665664 16 14.840129 Anserini +test2948 Q0 794427 17 14.810755 Anserini +test2948 Q0 12592878 18 14.587605 Anserini +test2948 Q0 235388 19 14.530840 Anserini +test2948 Q0 9087033 20 14.380471 Anserini +test2948 Q0 3471714 21 14.330966 Anserini +test2948 Q0 13981399 22 14.321091 Anserini +test2948 Q0 3592089 23 14.277141 Anserini +test2948 Q0 2058943 24 14.269809 Anserini +test2948 Q0 882248 25 14.216595 Anserini +test2948 Q0 8940171 26 14.139310 Anserini +test2948 Q0 3557712 27 14.121228 Anserini +test2948 Q0 19698053 28 14.107027 Anserini +test2948 Q0 9535935 29 14.097218 Anserini +test2948 Q0 11134182 30 13.980308 Anserini +test2949 Q0 1697003 1 10.995178 Anserini +test2949 Q0 5218413 2 10.631021 Anserini +test2949 Q0 2030337 3 10.547214 Anserini +test2949 Q0 19222484 4 10.546928 Anserini +test2949 Q0 19222471 5 10.380953 Anserini +test2949 Q0 2030345 6 10.270994 Anserini +test2949 Q0 19222474 7 10.130911 Anserini +test2949 Q0 16236438 8 10.074430 Anserini +test2949 Q0 97650 9 10.045416 Anserini +test2949 Q0 10541938 10 9.955188 Anserini +test2949 Q0 20385871 11 9.944967 Anserini +test2949 Q0 2030321 12 9.897480 Anserini +test2949 Q0 19222472 13 9.879764 Anserini +test2949 Q0 18365697 14 9.681236 Anserini +test2949 Q0 18166940 15 9.647438 Anserini +test2949 Q0 8180072 16 9.595875 Anserini +test2949 Q0 20385847 17 9.552323 Anserini +test2949 Q0 6689349 18 9.498476 Anserini +test2949 Q0 20385872 19 9.467587 Anserini +test2949 Q0 16925455 20 9.418849 Anserini +test2949 Q0 10541952 21 9.402055 Anserini +test2949 Q0 2030327 22 9.361973 Anserini +test2949 Q0 6799716 23 9.350106 Anserini +test2949 Q0 16235685 24 9.328528 Anserini +test2949 Q0 2030326 25 9.323113 Anserini +test2949 Q0 2030342 26 9.320446 Anserini +test2949 Q0 11835904 27 9.309777 Anserini +test2949 Q0 19222481 28 9.302719 Anserini +test2949 Q0 19209793 29 9.281170 Anserini +test2949 Q0 20385837 30 9.244246 Anserini +test295 Q0 17172677 1 31.442011 Anserini +test295 Q0 1730589 2 21.808981 Anserini +test295 Q0 1855882 3 19.789534 Anserini +test295 Q0 18452394 4 17.890034 Anserini +test295 Q0 18452395 5 17.269072 Anserini +test295 Q0 20549438 6 16.393700 Anserini +test295 Q0 20549437 7 16.310478 Anserini +test295 Q0 18451607 8 16.245911 Anserini +test295 Q0 2262288 9 16.165760 Anserini +test295 Q0 11045419 10 16.139898 Anserini +test295 Q0 14708385 11 15.866188 Anserini +test295 Q0 19487060 12 15.834690 Anserini +test295 Q0 20618984 13 14.686579 Anserini +test295 Q0 20618993 14 14.686579 Anserini +test295 Q0 15235533 15 14.666966 Anserini +test295 Q0 17120558 16 14.423107 Anserini +test295 Q0 19328965 17 14.112496 Anserini +test295 Q0 19328967 18 14.112496 Anserini +test295 Q0 11092506 19 13.808011 Anserini +test295 Q0 15018807 20 13.716740 Anserini +test295 Q0 4397534 21 13.484678 Anserini +test295 Q0 9732735 22 13.476580 Anserini +test295 Q0 7636104 23 13.415611 Anserini +test295 Q0 18491108 24 13.367777 Anserini +test295 Q0 7940110 25 13.355335 Anserini +test295 Q0 12220990 26 13.314236 Anserini +test295 Q0 14207208 27 13.276980 Anserini +test295 Q0 6469270 28 13.214745 Anserini +test295 Q0 14501756 29 13.076251 Anserini +test295 Q0 16364972 30 13.054693 Anserini +test2950 Q0 158036 1 11.458786 Anserini +test2950 Q0 6876867 2 11.249670 Anserini +test2950 Q0 6876873 3 11.249670 Anserini +test2950 Q0 14658801 4 10.930813 Anserini +test2950 Q0 11243274 5 10.705051 Anserini +test2950 Q0 17418599 6 10.349710 Anserini +test2950 Q0 10111153 7 10.293448 Anserini +test2950 Q0 5771007 8 10.234321 Anserini +test2950 Q0 11896637 9 10.190524 Anserini +test2950 Q0 7089225 10 10.136951 Anserini +test2950 Q0 6679573 11 10.107603 Anserini +test2950 Q0 9239585 12 10.096968 Anserini +test2950 Q0 2967196 13 10.095650 Anserini +test2950 Q0 10973731 14 9.971327 Anserini +test2950 Q0 1352681 15 9.960186 Anserini +test2950 Q0 4001007 16 9.936796 Anserini +test2950 Q0 4807853 17 9.929899 Anserini +test2950 Q0 8764841 18 9.929885 Anserini +test2950 Q0 12372009 19 9.913716 Anserini +test2950 Q0 7960473 20 9.883622 Anserini +test2950 Q0 12650521 21 9.865272 Anserini +test2950 Q0 2995503 22 9.825187 Anserini +test2950 Q0 2103199 23 9.782130 Anserini +test2950 Q0 9430797 24 9.767271 Anserini +test2950 Q0 11944392 25 9.753941 Anserini +test2950 Q0 6240136 26 9.734762 Anserini +test2950 Q0 3374149 27 9.672274 Anserini +test2950 Q0 16997129 28 9.654649 Anserini +test2950 Q0 10994738 29 9.647007 Anserini +test2950 Q0 4061313 30 9.625227 Anserini +test2951 Q0 57728 1 26.034904 Anserini +test2951 Q0 2657445 2 24.545799 Anserini +test2951 Q0 57744 3 23.816460 Anserini +test2951 Q0 4712068 4 23.731112 Anserini +test2951 Q0 4712059 5 22.455511 Anserini +test2951 Q0 57731 6 22.203259 Anserini +test2951 Q0 11312764 7 22.117855 Anserini +test2951 Q0 4712067 8 21.921440 Anserini +test2951 Q0 6486361 9 21.555458 Anserini +test2951 Q0 20451034 10 21.171570 Anserini +test2951 Q0 57735 11 21.139738 Anserini +test2951 Q0 57732 12 20.791218 Anserini +test2951 Q0 1210559 13 20.770195 Anserini +test2951 Q0 4712056 14 20.724110 Anserini +test2951 Q0 6309269 15 20.716860 Anserini +test2951 Q0 1770149 16 20.716860 Anserini +test2951 Q0 1814989 17 20.504934 Anserini +test2951 Q0 57729 18 20.492886 Anserini +test2951 Q0 57741 19 20.471653 Anserini +test2951 Q0 15339301 20 20.407516 Anserini +test2951 Q0 4712066 21 20.398998 Anserini +test2951 Q0 6500077 22 20.240322 Anserini +test2951 Q0 57738 23 20.205750 Anserini +test2951 Q0 9773360 24 20.185659 Anserini +test2951 Q0 18132107 25 20.091555 Anserini +test2951 Q0 12472186 26 20.059273 Anserini +test2951 Q0 16441775 27 20.004480 Anserini +test2951 Q0 13924674 28 20.004480 Anserini +test2951 Q0 9773361 29 19.904724 Anserini +test2951 Q0 6251171 30 19.898239 Anserini +test2952 Q0 13644368 1 17.324434 Anserini +test2952 Q0 3042313 2 13.860121 Anserini +test2952 Q0 16649977 3 13.834533 Anserini +test2952 Q0 19889546 4 13.452525 Anserini +test2952 Q0 10256489 5 13.301026 Anserini +test2952 Q0 2291570 6 12.856102 Anserini +test2952 Q0 17779990 7 12.608724 Anserini +test2952 Q0 5650863 8 12.578423 Anserini +test2952 Q0 6835306 9 12.578423 Anserini +test2952 Q0 6835320 10 12.578423 Anserini +test2952 Q0 6496444 11 12.027074 Anserini +test2952 Q0 9587728 12 11.945354 Anserini +test2952 Q0 11389860 13 11.793723 Anserini +test2952 Q0 12103457 14 11.715314 Anserini +test2952 Q0 5961607 15 11.550926 Anserini +test2952 Q0 766493 16 11.306631 Anserini +test2952 Q0 2956560 17 11.296480 Anserini +test2952 Q0 10753764 18 11.292897 Anserini +test2952 Q0 13575397 19 11.208179 Anserini +test2952 Q0 7868602 20 11.140996 Anserini +test2952 Q0 2496883 21 11.110506 Anserini +test2952 Q0 866760 22 11.084491 Anserini +test2952 Q0 275952 23 11.084255 Anserini +test2952 Q0 19889541 24 11.022969 Anserini +test2952 Q0 18112158 25 10.953480 Anserini +test2952 Q0 7911011 26 10.877260 Anserini +test2952 Q0 4350971 27 10.832622 Anserini +test2952 Q0 2945520 28 10.791359 Anserini +test2952 Q0 371439 29 10.658512 Anserini +test2952 Q0 13575393 30 10.631289 Anserini +test2953 Q0 4900771 1 13.784204 Anserini +test2953 Q0 13159253 2 13.640745 Anserini +test2953 Q0 13454388 3 13.632678 Anserini +test2953 Q0 13159255 4 13.589723 Anserini +test2953 Q0 1670407 5 13.506256 Anserini +test2953 Q0 1670404 6 13.123146 Anserini +test2953 Q0 20122485 7 13.044748 Anserini +test2953 Q0 5680970 8 12.864685 Anserini +test2953 Q0 6573292 9 12.734325 Anserini +test2953 Q0 10709099 10 12.532154 Anserini +test2953 Q0 1444523 11 12.358857 Anserini +test2953 Q0 12780008 12 12.256792 Anserini +test2953 Q0 1670409 13 12.211289 Anserini +test2953 Q0 10335877 14 12.200948 Anserini +test2953 Q0 15176361 15 12.080445 Anserini +test2953 Q0 1670402 16 12.045070 Anserini +test2953 Q0 5978623 17 12.037406 Anserini +test2953 Q0 17877436 18 12.015855 Anserini +test2953 Q0 6573293 19 11.944000 Anserini +test2953 Q0 3999090 20 11.898146 Anserini +test2953 Q0 1670405 21 11.868676 Anserini +test2953 Q0 17252356 22 11.696218 Anserini +test2953 Q0 13417727 23 11.683328 Anserini +test2953 Q0 3517663 24 11.611784 Anserini +test2953 Q0 5068524 25 11.606873 Anserini +test2953 Q0 5729113 26 11.583635 Anserini +test2953 Q0 12863953 27 11.581929 Anserini +test2953 Q0 8473644 28 11.559319 Anserini +test2953 Q0 15176360 29 11.544820 Anserini +test2953 Q0 13417731 30 11.451769 Anserini +test2954 Q0 2340619 1 17.809258 Anserini +test2954 Q0 18425656 2 17.280270 Anserini +test2954 Q0 5078787 3 16.821026 Anserini +test2954 Q0 2220698 4 16.761089 Anserini +test2954 Q0 10511421 5 16.649485 Anserini +test2954 Q0 19878548 6 16.600321 Anserini +test2954 Q0 19878547 7 16.600321 Anserini +test2954 Q0 6244987 8 16.358385 Anserini +test2954 Q0 20718112 9 16.294764 Anserini +test2954 Q0 20718113 10 16.215691 Anserini +test2954 Q0 18425664 11 16.211552 Anserini +test2954 Q0 12207190 12 16.136568 Anserini +test2954 Q0 18425657 13 16.041882 Anserini +test2954 Q0 13541677 14 16.033335 Anserini +test2954 Q0 15682445 15 15.921465 Anserini +test2954 Q0 6244985 16 15.889913 Anserini +test2954 Q0 6245004 17 15.886015 Anserini +test2954 Q0 4869628 18 15.793580 Anserini +test2954 Q0 19297566 19 15.752941 Anserini +test2954 Q0 5078789 20 15.729010 Anserini +test2954 Q0 13089658 21 15.715327 Anserini +test2954 Q0 6087279 22 15.642979 Anserini +test2954 Q0 18425663 23 15.629484 Anserini +test2954 Q0 2340618 24 15.617517 Anserini +test2954 Q0 2743506 25 15.597565 Anserini +test2954 Q0 18425659 26 15.584265 Anserini +test2954 Q0 13282542 27 15.525449 Anserini +test2954 Q0 20748753 28 15.354372 Anserini +test2954 Q0 19311519 29 15.348906 Anserini +test2954 Q0 2340628 30 15.338709 Anserini +test2955 Q0 9270173 1 12.475011 Anserini +test2955 Q0 2260834 2 12.435019 Anserini +test2955 Q0 9270175 3 12.395606 Anserini +test2955 Q0 6696882 4 11.686644 Anserini +test2955 Q0 6130897 5 11.535376 Anserini +test2955 Q0 3203278 6 11.216503 Anserini +test2955 Q0 2260825 7 10.960629 Anserini +test2955 Q0 11995766 8 10.526999 Anserini +test2955 Q0 2260833 9 10.379882 Anserini +test2955 Q0 2260823 10 10.341803 Anserini +test2955 Q0 2260824 11 10.222984 Anserini +test2955 Q0 9270178 12 10.213503 Anserini +test2955 Q0 2260860 13 10.043602 Anserini +test2955 Q0 2260844 14 9.878942 Anserini +test2955 Q0 17611738 15 9.767062 Anserini +test2955 Q0 2711576 16 9.693927 Anserini +test2955 Q0 18830172 17 9.685187 Anserini +test2955 Q0 17611736 18 9.676427 Anserini +test2955 Q0 2260835 19 9.654684 Anserini +test2955 Q0 2260831 20 9.651415 Anserini +test2955 Q0 2260862 21 9.572801 Anserini +test2955 Q0 10094375 22 9.489830 Anserini +test2955 Q0 18830169 23 9.489830 Anserini +test2955 Q0 4743869 24 9.474104 Anserini +test2955 Q0 2260827 25 9.474104 Anserini +test2955 Q0 2802414 26 9.473647 Anserini +test2955 Q0 11383599 27 9.425515 Anserini +test2955 Q0 2260857 28 9.425515 Anserini +test2955 Q0 2207058 29 9.390970 Anserini +test2955 Q0 6599175 30 9.377422 Anserini +test2956 Q0 3592313 1 19.176697 Anserini +test2956 Q0 3592339 2 17.769182 Anserini +test2956 Q0 3592328 3 17.083561 Anserini +test2956 Q0 10856393 4 17.005587 Anserini +test2956 Q0 3592319 5 16.834671 Anserini +test2956 Q0 3592342 6 16.559425 Anserini +test2956 Q0 3592360 7 16.558142 Anserini +test2956 Q0 17068121 8 16.089273 Anserini +test2956 Q0 3592316 9 15.902361 Anserini +test2956 Q0 12070975 10 15.735125 Anserini +test2956 Q0 12070976 11 15.735125 Anserini +test2956 Q0 1945997 12 15.527552 Anserini +test2956 Q0 2646051 13 15.291187 Anserini +test2956 Q0 3592323 14 15.269997 Anserini +test2956 Q0 3592329 15 15.153901 Anserini +test2956 Q0 3592331 16 15.031053 Anserini +test2956 Q0 3592338 17 14.949945 Anserini +test2956 Q0 3592326 18 14.922449 Anserini +test2956 Q0 13030627 19 14.776273 Anserini +test2956 Q0 3592325 20 14.664644 Anserini +test2956 Q0 3592344 21 14.661875 Anserini +test2956 Q0 9652936 22 14.643198 Anserini +test2956 Q0 7681635 23 14.619323 Anserini +test2956 Q0 3592354 24 14.580290 Anserini +test2956 Q0 7592383 25 14.573829 Anserini +test2956 Q0 3592351 26 14.514915 Anserini +test2956 Q0 7592381 27 14.420410 Anserini +test2956 Q0 44484 28 14.346816 Anserini +test2956 Q0 7189074 29 14.293942 Anserini +test2956 Q0 9959805 30 14.293942 Anserini +test2957 Q0 2219504 1 13.391901 Anserini +test2957 Q0 19296214 2 12.857647 Anserini +test2957 Q0 2014339 3 12.656317 Anserini +test2957 Q0 10729657 4 12.180475 Anserini +test2957 Q0 18446937 5 12.044306 Anserini +test2957 Q0 7288304 6 11.983775 Anserini +test2957 Q0 18149581 7 11.911741 Anserini +test2957 Q0 18149577 8 11.820930 Anserini +test2957 Q0 13567914 9 11.796423 Anserini +test2957 Q0 8435924 10 11.720234 Anserini +test2957 Q0 17324011 11 11.502743 Anserini +test2957 Q0 16115115 12 11.452777 Anserini +test2957 Q0 3302607 13 11.444016 Anserini +test2957 Q0 9269127 14 11.361659 Anserini +test2957 Q0 2401086 15 11.297406 Anserini +test2957 Q0 5461666 16 11.296244 Anserini +test2957 Q0 627796 17 11.259728 Anserini +test2957 Q0 16165257 18 11.212744 Anserini +test2957 Q0 2340667 19 11.212405 Anserini +test2957 Q0 15885118 20 11.112083 Anserini +test2957 Q0 19107310 21 11.093669 Anserini +test2957 Q0 8663428 22 11.067188 Anserini +test2957 Q0 8924534 23 10.999822 Anserini +test2957 Q0 18149580 24 10.923483 Anserini +test2957 Q0 9609209 25 10.849834 Anserini +test2957 Q0 6131307 26 10.847909 Anserini +test2957 Q0 8769756 27 10.836632 Anserini +test2957 Q0 6171418 28 10.831560 Anserini +test2957 Q0 4016491 29 10.822741 Anserini +test2957 Q0 18360118 30 10.778480 Anserini +test2958 Q0 2541250 1 11.453085 Anserini +test2958 Q0 12792522 2 10.986208 Anserini +test2958 Q0 2895710 3 10.833302 Anserini +test2958 Q0 7804185 4 10.728642 Anserini +test2958 Q0 15537391 5 10.299963 Anserini +test2958 Q0 12325059 6 10.170126 Anserini +test2958 Q0 16137991 7 10.061925 Anserini +test2958 Q0 19182166 8 10.061925 Anserini +test2958 Q0 17565980 9 10.061925 Anserini +test2958 Q0 14034204 10 9.961101 Anserini +test2958 Q0 8605346 11 9.956003 Anserini +test2958 Q0 16138230 12 9.956003 Anserini +test2958 Q0 16633933 13 9.947333 Anserini +test2958 Q0 19182168 14 9.900443 Anserini +test2958 Q0 19525572 15 9.898277 Anserini +test2958 Q0 19295095 16 9.852287 Anserini +test2958 Q0 18061152 17 9.782591 Anserini +test2958 Q0 8035538 18 9.738047 Anserini +test2958 Q0 8995427 19 9.608562 Anserini +test2958 Q0 12807471 20 9.608562 Anserini +test2958 Q0 5798137 21 9.602831 Anserini +test2958 Q0 12772472 22 9.529140 Anserini +test2958 Q0 11527830 23 9.428696 Anserini +test2958 Q0 8095605 24 9.394691 Anserini +test2958 Q0 20080703 25 9.377862 Anserini +test2958 Q0 10606692 26 9.377456 Anserini +test2958 Q0 8035341 27 9.356875 Anserini +test2958 Q0 3095192 28 9.317183 Anserini +test2958 Q0 1052687 29 9.299852 Anserini +test2958 Q0 14526110 30 9.299852 Anserini +test2959 Q0 15132228 1 10.922892 Anserini +test2959 Q0 19905308 2 10.385515 Anserini +test2959 Q0 3571481 3 10.208512 Anserini +test2959 Q0 15816052 4 9.938190 Anserini +test2959 Q0 13374349 5 9.875882 Anserini +test2959 Q0 11379977 6 9.782222 Anserini +test2959 Q0 18673708 7 9.760466 Anserini +test2959 Q0 20085690 8 9.652545 Anserini +test2959 Q0 16585332 9 9.650564 Anserini +test2959 Q0 11671782 10 9.588808 Anserini +test2959 Q0 13023206 11 9.557708 Anserini +test2959 Q0 8340525 12 9.556738 Anserini +test2959 Q0 18968236 13 9.553577 Anserini +test2959 Q0 8032041 14 9.531072 Anserini +test2959 Q0 7861365 15 9.529894 Anserini +test2959 Q0 8001919 16 9.448558 Anserini +test2959 Q0 19371566 17 9.440737 Anserini +test2959 Q0 14790961 18 9.405937 Anserini +test2959 Q0 9829668 19 9.359326 Anserini +test2959 Q0 15507068 20 9.349022 Anserini +test2959 Q0 14790959 21 9.332932 Anserini +test2959 Q0 15428211 22 9.331707 Anserini +test2959 Q0 9117259 23 9.325422 Anserini +test2959 Q0 4550923 24 9.317431 Anserini +test2959 Q0 10154329 25 9.298034 Anserini +test2959 Q0 19703194 26 9.296375 Anserini +test2959 Q0 17141504 27 9.258941 Anserini +test2959 Q0 17479870 28 9.253999 Anserini +test2959 Q0 1770080 29 9.244833 Anserini +test2959 Q0 10844975 30 9.241049 Anserini +test296 Q0 684357 1 14.068518 Anserini +test296 Q0 16530453 2 13.914903 Anserini +test296 Q0 848051 3 13.027776 Anserini +test296 Q0 14680794 4 12.911324 Anserini +test296 Q0 752028 5 12.562929 Anserini +test296 Q0 752018 6 12.516235 Anserini +test296 Q0 15293173 7 12.314426 Anserini +test296 Q0 359348 8 12.125739 Anserini +test296 Q0 14347666 9 12.033908 Anserini +test296 Q0 2064826 10 11.908074 Anserini +test296 Q0 2064828 11 11.908074 Anserini +test296 Q0 16530451 12 11.743115 Anserini +test296 Q0 11659170 13 11.733744 Anserini +test296 Q0 6469734 14 11.708543 Anserini +test296 Q0 8120138 15 11.645049 Anserini +test296 Q0 8120142 16 11.645049 Anserini +test296 Q0 5264585 17 11.634846 Anserini +test296 Q0 16530456 18 11.628742 Anserini +test296 Q0 7629841 19 11.620343 Anserini +test296 Q0 10942320 20 11.599704 Anserini +test296 Q0 15293177 21 11.588259 Anserini +test296 Q0 834321 22 11.529436 Anserini +test296 Q0 1816361 23 11.481318 Anserini +test296 Q0 16530452 24 11.417225 Anserini +test296 Q0 13476084 25 11.340172 Anserini +test296 Q0 684356 26 11.314779 Anserini +test296 Q0 18894815 27 11.311906 Anserini +test296 Q0 15676152 28 11.281643 Anserini +test296 Q0 15293176 29 11.278338 Anserini +test296 Q0 752007 30 11.269959 Anserini +test2960 Q0 95535 1 9.883284 Anserini +test2960 Q0 18349295 2 9.404598 Anserini +test2960 Q0 16972017 3 9.404598 Anserini +test2960 Q0 16265361 4 9.274522 Anserini +test2960 Q0 11082208 5 9.228705 Anserini +test2960 Q0 15770585 6 9.152067 Anserini +test2960 Q0 17766579 7 8.994020 Anserini +test2960 Q0 8645902 8 8.980469 Anserini +test2960 Q0 235589 9 8.894717 Anserini +test2960 Q0 1378850 10 8.807873 Anserini +test2960 Q0 1982287 11 8.734651 Anserini +test2960 Q0 77657 12 8.527579 Anserini +test2960 Q0 3384072 13 8.465408 Anserini +test2960 Q0 6906256 14 8.451019 Anserini +test2960 Q0 4377394 15 8.388548 Anserini +test2960 Q0 4325184 16 8.333537 Anserini +test2960 Q0 2690236 17 8.260936 Anserini +test2960 Q0 20410572 18 8.248236 Anserini +test2960 Q0 15247554 19 8.244429 Anserini +test2960 Q0 12939919 20 8.244429 Anserini +test2960 Q0 15247550 21 8.200634 Anserini +test2960 Q0 12407846 22 8.200136 Anserini +test2960 Q0 4325277 23 8.200136 Anserini +test2960 Q0 95506 24 8.200136 Anserini +test2960 Q0 10470719 25 8.176502 Anserini +test2960 Q0 11335256 26 8.112868 Anserini +test2960 Q0 16163039 27 8.112868 Anserini +test2960 Q0 4325182 28 8.077838 Anserini +test2960 Q0 16801865 29 8.041036 Anserini +test2960 Q0 11016606 30 8.014870 Anserini +test2961 Q0 11792468 1 11.973666 Anserini +test2961 Q0 20635012 2 11.840785 Anserini +test2961 Q0 3186465 3 11.760430 Anserini +test2961 Q0 8276576 4 11.500438 Anserini +test2961 Q0 4939030 5 11.442885 Anserini +test2961 Q0 8082260 6 11.434532 Anserini +test2961 Q0 14767391 7 11.354424 Anserini +test2961 Q0 15403150 8 11.177067 Anserini +test2961 Q0 11732352 9 10.983236 Anserini +test2961 Q0 17719007 10 10.906868 Anserini +test2961 Q0 19968320 11 10.871375 Anserini +test2961 Q0 15237403 12 10.859272 Anserini +test2961 Q0 11103942 13 10.799679 Anserini +test2961 Q0 6507745 14 10.796688 Anserini +test2961 Q0 20028988 15 10.784090 Anserini +test2961 Q0 5571206 16 10.667840 Anserini +test2961 Q0 6099659 17 10.572328 Anserini +test2961 Q0 6326715 18 10.571321 Anserini +test2961 Q0 9361816 19 10.554966 Anserini +test2961 Q0 11429146 20 10.554966 Anserini +test2961 Q0 7474920 21 10.537941 Anserini +test2961 Q0 16769437 22 10.525340 Anserini +test2961 Q0 4261319 23 10.523029 Anserini +test2961 Q0 15450528 24 10.521426 Anserini +test2961 Q0 15450548 25 10.521426 Anserini +test2961 Q0 7078794 26 10.500401 Anserini +test2961 Q0 20642193 27 10.463766 Anserini +test2961 Q0 6668710 28 10.448834 Anserini +test2961 Q0 18781579 29 10.443853 Anserini +test2961 Q0 8541322 30 10.421413 Anserini +test2962 Q0 6560666 1 8.698412 Anserini +test2962 Q0 2032849 2 8.630240 Anserini +test2962 Q0 14185070 3 8.471759 Anserini +test2962 Q0 4451991 4 8.227846 Anserini +test2962 Q0 18287077 5 8.114405 Anserini +test2962 Q0 4216182 6 8.065586 Anserini +test2962 Q0 18596062 7 8.017438 Anserini +test2962 Q0 20002557 8 7.939535 Anserini +test2962 Q0 11813109 9 7.936614 Anserini +test2962 Q0 10340568 10 7.931285 Anserini +test2962 Q0 1912257 11 7.863173 Anserini +test2962 Q0 12413092 12 7.795820 Anserini +test2962 Q0 18105695 13 7.779659 Anserini +test2962 Q0 6577409 14 7.757853 Anserini +test2962 Q0 15139032 15 7.754721 Anserini +test2962 Q0 9864955 16 7.714932 Anserini +test2962 Q0 20903765 17 7.708840 Anserini +test2962 Q0 5396473 18 7.613934 Anserini +test2962 Q0 6970942 19 7.601693 Anserini +test2962 Q0 12227 20 7.564533 Anserini +test2962 Q0 1666440 21 7.554602 Anserini +test2962 Q0 17548383 22 7.542736 Anserini +test2962 Q0 979119 23 7.534772 Anserini +test2962 Q0 15490748 24 7.481167 Anserini +test2962 Q0 8492619 25 7.474227 Anserini +test2962 Q0 10542589 26 7.474227 Anserini +test2962 Q0 4186524 27 7.474227 Anserini +test2962 Q0 13713311 28 7.474227 Anserini +test2962 Q0 17876555 29 7.458887 Anserini +test2962 Q0 15139031 30 7.454831 Anserini +test2963 Q0 11782029 1 12.813612 Anserini +test2963 Q0 1680818 2 12.771962 Anserini +test2963 Q0 2653575 3 12.468839 Anserini +test2963 Q0 20084127 4 12.382799 Anserini +test2963 Q0 20084140 5 12.382799 Anserini +test2963 Q0 4514615 6 12.363298 Anserini +test2963 Q0 1540553 7 12.356239 Anserini +test2963 Q0 20146439 8 12.346603 Anserini +test2963 Q0 1680820 9 12.278116 Anserini +test2963 Q0 3739470 10 12.028917 Anserini +test2963 Q0 2930266 11 11.944373 Anserini +test2963 Q0 11223117 12 11.942652 Anserini +test2963 Q0 327694 13 11.929628 Anserini +test2963 Q0 4381484 14 11.871250 Anserini +test2963 Q0 11782026 15 11.807868 Anserini +test2963 Q0 1540552 16 11.770840 Anserini +test2963 Q0 18237958 17 11.728662 Anserini +test2963 Q0 1478847 18 11.728551 Anserini +test2963 Q0 1787868 19 11.683809 Anserini +test2963 Q0 1540555 20 11.675035 Anserini +test2963 Q0 322434 21 11.649192 Anserini +test2963 Q0 2370833 22 11.583195 Anserini +test2963 Q0 18237957 23 11.559850 Anserini +test2963 Q0 2392498 24 11.543558 Anserini +test2963 Q0 11145076 25 11.516835 Anserini +test2963 Q0 14394076 26 11.387441 Anserini +test2963 Q0 1540554 27 11.387134 Anserini +test2963 Q0 1000148 28 11.348666 Anserini +test2963 Q0 2474256 29 11.344269 Anserini +test2963 Q0 322439 30 11.342156 Anserini +test2964 Q0 20518266 1 17.619080 Anserini +test2964 Q0 20518270 2 17.041382 Anserini +test2964 Q0 20502547 3 16.686808 Anserini +test2964 Q0 18562223 4 16.335642 Anserini +test2964 Q0 14353145 5 16.321299 Anserini +test2964 Q0 19309645 6 16.241604 Anserini +test2964 Q0 20505192 7 16.101156 Anserini +test2964 Q0 9195737 8 16.095240 Anserini +test2964 Q0 9195739 9 16.095240 Anserini +test2964 Q0 20530389 10 16.023775 Anserini +test2964 Q0 20530390 11 16.023775 Anserini +test2964 Q0 19911065 12 15.996630 Anserini +test2964 Q0 19911066 13 15.996630 Anserini +test2964 Q0 20816260 14 15.987261 Anserini +test2964 Q0 19931257 15 15.943708 Anserini +test2964 Q0 15429421 16 15.760514 Anserini +test2964 Q0 20816261 17 15.751872 Anserini +test2964 Q0 19956437 18 15.746304 Anserini +test2964 Q0 19945521 19 15.746304 Anserini +test2964 Q0 19947031 20 15.746304 Anserini +test2964 Q0 16912801 21 15.736697 Anserini +test2964 Q0 20530380 22 15.718567 Anserini +test2964 Q0 20234930 23 15.689383 Anserini +test2964 Q0 19882171 24 15.659630 Anserini +test2964 Q0 14246473 25 15.637598 Anserini +test2964 Q0 20402763 26 15.631198 Anserini +test2964 Q0 9621258 27 15.606090 Anserini +test2964 Q0 20234928 28 15.601558 Anserini +test2964 Q0 18240252 29 15.589637 Anserini +test2964 Q0 19931255 30 15.541719 Anserini +test2965 Q0 7246592 1 18.200644 Anserini +test2965 Q0 7246593 2 17.197830 Anserini +test2965 Q0 1588490 3 15.185562 Anserini +test2965 Q0 1588456 4 15.160529 Anserini +test2965 Q0 1588482 5 15.068985 Anserini +test2965 Q0 1588483 6 14.983046 Anserini +test2965 Q0 6203851 7 14.629657 Anserini +test2965 Q0 162845 8 14.428946 Anserini +test2965 Q0 12807072 9 14.111332 Anserini +test2965 Q0 12807074 10 14.013288 Anserini +test2965 Q0 15316797 11 13.868331 Anserini +test2965 Q0 6203738 12 13.822875 Anserini +test2965 Q0 15316794 13 13.793279 Anserini +test2965 Q0 6427156 14 13.621349 Anserini +test2965 Q0 1588453 15 13.604945 Anserini +test2965 Q0 2522719 16 13.349361 Anserini +test2965 Q0 14091862 17 13.348475 Anserini +test2965 Q0 6203850 18 13.195708 Anserini +test2965 Q0 2522722 19 13.195708 Anserini +test2965 Q0 1400225 20 13.152458 Anserini +test2965 Q0 1588455 21 13.151951 Anserini +test2965 Q0 2522725 22 13.151951 Anserini +test2965 Q0 1588480 23 13.116282 Anserini +test2965 Q0 2522720 24 13.111014 Anserini +test2965 Q0 2522712 25 13.050176 Anserini +test2965 Q0 5813790 26 13.000057 Anserini +test2965 Q0 15173820 27 12.989360 Anserini +test2965 Q0 15173815 28 12.989360 Anserini +test2965 Q0 15173813 29 12.989360 Anserini +test2965 Q0 2522706 30 12.901289 Anserini +test2966 Q0 15046184 1 9.493685 Anserini +test2966 Q0 7088466 2 9.488120 Anserini +test2966 Q0 7088469 3 9.346828 Anserini +test2966 Q0 17188683 4 9.145554 Anserini +test2966 Q0 11210911 5 9.123524 Anserini +test2966 Q0 4957949 6 8.968086 Anserini +test2966 Q0 273798 7 8.592901 Anserini +test2966 Q0 12346530 8 8.592402 Anserini +test2966 Q0 17087664 9 8.549353 Anserini +test2966 Q0 7711821 10 8.549353 Anserini +test2966 Q0 10317004 11 8.509361 Anserini +test2966 Q0 2899516 12 8.485743 Anserini +test2966 Q0 14777745 13 8.414326 Anserini +test2966 Q0 3094153 14 8.411988 Anserini +test2966 Q0 20958493 15 8.411988 Anserini +test2966 Q0 17087666 16 8.397330 Anserini +test2966 Q0 12346529 17 8.396162 Anserini +test2966 Q0 9252779 18 8.351871 Anserini +test2966 Q0 20971494 19 8.351871 Anserini +test2966 Q0 15046183 20 8.344153 Anserini +test2966 Q0 3728457 21 8.343589 Anserini +test2966 Q0 3728458 22 8.343589 Anserini +test2966 Q0 10016057 23 8.302696 Anserini +test2966 Q0 5276237 24 8.273640 Anserini +test2966 Q0 16833558 25 8.239549 Anserini +test2966 Q0 17188679 26 8.189822 Anserini +test2966 Q0 3773797 27 8.189822 Anserini +test2966 Q0 7786799 28 8.163638 Anserini +test2966 Q0 5421028 29 8.127491 Anserini +test2966 Q0 18587675 30 8.085855 Anserini +test2967 Q0 5305259 1 14.179828 Anserini +test2967 Q0 6304185 2 13.486362 Anserini +test2967 Q0 5064220 3 13.446525 Anserini +test2967 Q0 5914724 4 13.038073 Anserini +test2967 Q0 10531600 5 12.879713 Anserini +test2967 Q0 10531602 6 12.879713 Anserini +test2967 Q0 5432961 7 12.676034 Anserini +test2967 Q0 17512034 8 12.575942 Anserini +test2967 Q0 5985819 9 12.428330 Anserini +test2967 Q0 7915137 10 12.428330 Anserini +test2967 Q0 5064197 11 12.313684 Anserini +test2967 Q0 14551300 12 12.251063 Anserini +test2967 Q0 5064213 13 12.183282 Anserini +test2967 Q0 8236902 14 12.147694 Anserini +test2967 Q0 5064135 15 12.036362 Anserini +test2967 Q0 8276730 16 12.019842 Anserini +test2967 Q0 7252483 17 11.918192 Anserini +test2967 Q0 595596 18 11.700560 Anserini +test2967 Q0 3452729 19 11.663803 Anserini +test2967 Q0 3452698 20 11.663803 Anserini +test2967 Q0 9616814 21 11.653702 Anserini +test2967 Q0 5353447 22 11.641603 Anserini +test2967 Q0 7702464 23 11.627899 Anserini +test2967 Q0 7702465 24 11.627899 Anserini +test2967 Q0 4849647 25 11.608299 Anserini +test2967 Q0 6363544 26 11.584532 Anserini +test2967 Q0 2683060 27 11.583266 Anserini +test2967 Q0 10652821 28 11.567430 Anserini +test2967 Q0 5502740 29 11.535969 Anserini +test2967 Q0 721012 30 11.534918 Anserini +test2968 Q0 2756523 1 12.963599 Anserini +test2968 Q0 3754076 2 11.008334 Anserini +test2968 Q0 3754080 3 11.008334 Anserini +test2968 Q0 1687742 4 10.463790 Anserini +test2968 Q0 5090405 5 10.429527 Anserini +test2968 Q0 1687757 6 10.266531 Anserini +test2968 Q0 4390117 7 10.147630 Anserini +test2968 Q0 5838795 8 10.042921 Anserini +test2968 Q0 7874295 9 9.856666 Anserini +test2968 Q0 17525567 10 9.848958 Anserini +test2968 Q0 1687743 11 9.723484 Anserini +test2968 Q0 5829307 12 9.412948 Anserini +test2968 Q0 3104729 13 9.383231 Anserini +test2968 Q0 4390137 14 9.361269 Anserini +test2968 Q0 4799855 15 9.107459 Anserini +test2968 Q0 15313869 16 9.104188 Anserini +test2968 Q0 532226 17 9.104119 Anserini +test2968 Q0 12330948 18 9.077455 Anserini +test2968 Q0 4317866 19 9.077373 Anserini +test2968 Q0 10594370 20 9.070793 Anserini +test2968 Q0 5805148 21 9.049139 Anserini +test2968 Q0 1687792 22 9.047350 Anserini +test2968 Q0 17123794 23 9.019323 Anserini +test2968 Q0 1687791 24 8.972481 Anserini +test2968 Q0 973693 25 8.972481 Anserini +test2968 Q0 14999019 26 8.953859 Anserini +test2968 Q0 19041110 27 8.808057 Anserini +test2968 Q0 18262121 28 8.772035 Anserini +test2968 Q0 13901918 29 8.750668 Anserini +test2968 Q0 7976649 30 8.729237 Anserini +test2969 Q0 16486643 1 12.876059 Anserini +test2969 Q0 16486669 2 12.876059 Anserini +test2969 Q0 16486671 3 12.876059 Anserini +test2969 Q0 16486672 4 12.801809 Anserini +test2969 Q0 16690683 5 12.562878 Anserini +test2969 Q0 16690684 6 12.562878 Anserini +test2969 Q0 16110457 7 12.511633 Anserini +test2969 Q0 16110458 8 12.505879 Anserini +test2969 Q0 15619705 9 12.501354 Anserini +test2969 Q0 15619743 10 12.501354 Anserini +test2969 Q0 15619896 11 12.425752 Anserini +test2969 Q0 15692678 12 12.379921 Anserini +test2969 Q0 16445222 13 12.379921 Anserini +test2969 Q0 15545057 14 12.333740 Anserini +test2969 Q0 15557710 15 12.328421 Anserini +test2969 Q0 16681667 16 12.306527 Anserini +test2969 Q0 16587226 17 12.278190 Anserini +test2969 Q0 4287961 18 12.214590 Anserini +test2969 Q0 15449055 19 12.180821 Anserini +test2969 Q0 13162663 20 12.175499 Anserini +test2969 Q0 5475698 21 12.175499 Anserini +test2969 Q0 15545073 22 12.092545 Anserini +test2969 Q0 3630220 23 12.086934 Anserini +test2969 Q0 16078495 24 12.036222 Anserini +test2969 Q0 16602934 25 12.033202 Anserini +test2969 Q0 16078496 26 12.027840 Anserini +test2969 Q0 14804444 27 12.009527 Anserini +test2969 Q0 16577369 28 11.997851 Anserini +test2969 Q0 16421847 29 11.981569 Anserini +test2969 Q0 16237768 30 11.971662 Anserini +test297 Q0 13382306 1 13.649661 Anserini +test297 Q0 857020 2 11.948498 Anserini +test297 Q0 11645619 3 11.866536 Anserini +test297 Q0 19267873 4 11.856659 Anserini +test297 Q0 2815864 5 11.729139 Anserini +test297 Q0 15303572 6 11.451441 Anserini +test297 Q0 1502044 7 11.367706 Anserini +test297 Q0 1494093 8 11.262922 Anserini +test297 Q0 16376692 9 11.230118 Anserini +test297 Q0 6199413 10 11.143753 Anserini +test297 Q0 8131488 11 11.112572 Anserini +test297 Q0 13629596 12 10.994161 Anserini +test297 Q0 6364659 13 10.971428 Anserini +test297 Q0 6001961 14 10.884691 Anserini +test297 Q0 10638209 15 10.795601 Anserini +test297 Q0 6276270 16 10.700006 Anserini +test297 Q0 14552710 17 10.664718 Anserini +test297 Q0 11385527 18 10.653082 Anserini +test297 Q0 1406196 19 10.609421 Anserini +test297 Q0 8016234 20 10.574099 Anserini +test297 Q0 20879794 21 10.561524 Anserini +test297 Q0 16775942 22 10.517877 Anserini +test297 Q0 5343881 23 10.464454 Anserini +test297 Q0 3062308 24 10.460347 Anserini +test297 Q0 10195073 25 10.454118 Anserini +test297 Q0 208727 26 10.450177 Anserini +test297 Q0 3868885 27 10.445341 Anserini +test297 Q0 10033408 28 10.425446 Anserini +test297 Q0 9752038 29 10.381278 Anserini +test297 Q0 2773170 30 10.381278 Anserini +test2970 Q0 16613828 1 10.724725 Anserini +test2970 Q0 7456441 2 10.674637 Anserini +test2970 Q0 16613830 3 10.327674 Anserini +test2970 Q0 7456442 4 10.201248 Anserini +test2970 Q0 6624986 5 9.731981 Anserini +test2970 Q0 6047682 6 9.697932 Anserini +test2970 Q0 20748960 7 9.686458 Anserini +test2970 Q0 19972213 8 9.683819 Anserini +test2970 Q0 11866629 9 9.645845 Anserini +test2970 Q0 20559002 10 9.593481 Anserini +test2970 Q0 12500389 11 9.556099 Anserini +test2970 Q0 5766083 12 9.527475 Anserini +test2970 Q0 18598171 13 9.414252 Anserini +test2970 Q0 3108388 14 9.407438 Anserini +test2970 Q0 6973894 15 9.341888 Anserini +test2970 Q0 5766080 16 9.320445 Anserini +test2970 Q0 18332074 17 9.285818 Anserini +test2970 Q0 7933588 18 9.281505 Anserini +test2970 Q0 6047685 19 9.266322 Anserini +test2970 Q0 12921828 20 9.258226 Anserini +test2970 Q0 14335296 21 9.225570 Anserini +test2970 Q0 13894458 22 9.225570 Anserini +test2970 Q0 11540646 23 9.225570 Anserini +test2970 Q0 18202179 24 9.201525 Anserini +test2970 Q0 12921826 25 9.189706 Anserini +test2970 Q0 5559934 26 9.158643 Anserini +test2970 Q0 11540654 27 9.151165 Anserini +test2970 Q0 6624984 28 9.151044 Anserini +test2970 Q0 13111754 29 9.134653 Anserini +test2970 Q0 16965091 30 9.074211 Anserini +test2971 Q0 10064989 1 17.848585 Anserini +test2971 Q0 19885680 2 17.548416 Anserini +test2971 Q0 5950464 3 17.407537 Anserini +test2971 Q0 19885682 4 17.071404 Anserini +test2971 Q0 9891401 5 16.720222 Anserini +test2971 Q0 9891398 6 16.708897 Anserini +test2971 Q0 4369161 7 16.329874 Anserini +test2971 Q0 17048218 8 16.153917 Anserini +test2971 Q0 11010734 9 16.042898 Anserini +test2971 Q0 13882089 10 15.967404 Anserini +test2971 Q0 16903453 11 15.956262 Anserini +test2971 Q0 5632089 12 15.920925 Anserini +test2971 Q0 16895454 13 15.897121 Anserini +test2971 Q0 20507246 14 15.770798 Anserini +test2971 Q0 20507245 15 15.662490 Anserini +test2971 Q0 20941554 16 15.604013 Anserini +test2971 Q0 5834951 17 15.518201 Anserini +test2971 Q0 20931436 18 15.500548 Anserini +test2971 Q0 10969694 19 15.477050 Anserini +test2971 Q0 17038559 20 15.461244 Anserini +test2971 Q0 19497547 21 15.408207 Anserini +test2971 Q0 11188885 22 15.405131 Anserini +test2971 Q0 10969693 23 15.386153 Anserini +test2971 Q0 17912064 24 15.367837 Anserini +test2971 Q0 6983117 25 15.348987 Anserini +test2971 Q0 16816144 26 15.341871 Anserini +test2971 Q0 336368 27 15.341304 Anserini +test2971 Q0 20941553 28 15.312038 Anserini +test2971 Q0 12222874 29 15.254242 Anserini +test2971 Q0 10741775 30 15.208609 Anserini +test2972 Q0 20454146 1 14.771465 Anserini +test2972 Q0 20454144 2 14.698525 Anserini +test2972 Q0 17082027 3 13.705427 Anserini +test2972 Q0 10791193 4 13.581189 Anserini +test2972 Q0 10791202 5 13.542902 Anserini +test2972 Q0 16477861 6 13.149281 Anserini +test2972 Q0 4293332 7 13.145791 Anserini +test2972 Q0 14066388 8 13.086845 Anserini +test2972 Q0 6563288 9 13.055351 Anserini +test2972 Q0 8095281 10 12.988720 Anserini +test2972 Q0 17659313 11 12.831337 Anserini +test2972 Q0 16132002 12 12.737247 Anserini +test2972 Q0 15829860 13 12.544580 Anserini +test2972 Q0 20456020 14 12.490952 Anserini +test2972 Q0 20456026 15 12.490952 Anserini +test2972 Q0 6618267 16 12.449270 Anserini +test2972 Q0 6560013 17 12.407800 Anserini +test2972 Q0 15034009 18 12.380521 Anserini +test2972 Q0 7669066 19 12.365144 Anserini +test2972 Q0 5376825 20 12.365144 Anserini +test2972 Q0 19171863 21 12.337797 Anserini +test2972 Q0 16409752 22 12.259005 Anserini +test2972 Q0 20609188 23 12.205379 Anserini +test2972 Q0 7085885 24 12.184654 Anserini +test2972 Q0 16764079 25 12.171248 Anserini +test2972 Q0 18308108 26 12.169158 Anserini +test2972 Q0 18308106 27 12.169158 Anserini +test2972 Q0 15725825 28 12.169158 Anserini +test2972 Q0 3564091 29 12.158913 Anserini +test2972 Q0 17659314 30 12.119239 Anserini +test2973 Q0 19524199 1 11.649746 Anserini +test2973 Q0 10506943 2 11.459140 Anserini +test2973 Q0 12242629 3 11.427777 Anserini +test2973 Q0 20095915 4 10.751599 Anserini +test2973 Q0 19581992 5 10.619037 Anserini +test2973 Q0 19575641 6 10.520549 Anserini +test2973 Q0 10506941 7 10.450241 Anserini +test2973 Q0 19684942 8 10.423584 Anserini +test2973 Q0 19575638 9 10.422093 Anserini +test2973 Q0 20095916 10 10.386388 Anserini +test2973 Q0 17863290 11 10.363644 Anserini +test2973 Q0 11118369 12 10.311265 Anserini +test2973 Q0 19684953 13 10.250681 Anserini +test2973 Q0 19510556 14 10.128362 Anserini +test2973 Q0 19443627 15 10.120556 Anserini +test2973 Q0 12069721 16 10.116002 Anserini +test2973 Q0 5468733 17 10.107316 Anserini +test2973 Q0 12242630 18 10.034852 Anserini +test2973 Q0 19918990 19 10.029016 Anserini +test2973 Q0 19814312 20 10.027955 Anserini +test2973 Q0 11936885 21 10.014503 Anserini +test2973 Q0 19585351 22 10.013277 Anserini +test2973 Q0 14805747 23 9.982979 Anserini +test2973 Q0 20134190 24 9.959656 Anserini +test2973 Q0 19595727 25 9.958956 Anserini +test2973 Q0 19694369 26 9.946010 Anserini +test2973 Q0 20648744 27 9.945044 Anserini +test2973 Q0 12288189 28 9.931910 Anserini +test2973 Q0 20095910 29 9.908825 Anserini +test2973 Q0 19814306 30 9.892850 Anserini +test2974 Q0 18418553 1 9.281669 Anserini +test2974 Q0 889406 2 8.774490 Anserini +test2974 Q0 4562378 3 8.611526 Anserini +test2974 Q0 2782246 4 8.610336 Anserini +test2974 Q0 1688484 5 8.523787 Anserini +test2974 Q0 9620995 6 8.486853 Anserini +test2974 Q0 13906258 7 8.465133 Anserini +test2974 Q0 6798463 8 8.458326 Anserini +test2974 Q0 5620924 9 8.433578 Anserini +test2974 Q0 15918007 10 8.429970 Anserini +test2974 Q0 15918009 11 8.429970 Anserini +test2974 Q0 11178719 12 8.321735 Anserini +test2974 Q0 588333 13 8.309132 Anserini +test2974 Q0 9441552 14 8.291904 Anserini +test2974 Q0 9621000 15 8.288744 Anserini +test2974 Q0 13177819 16 8.266363 Anserini +test2974 Q0 13177798 17 8.259118 Anserini +test2974 Q0 5040404 18 8.234273 Anserini +test2974 Q0 17590574 19 8.230540 Anserini +test2974 Q0 14571623 20 8.221663 Anserini +test2974 Q0 18266017 21 8.215403 Anserini +test2974 Q0 7393848 22 8.180496 Anserini +test2974 Q0 18695262 23 8.151059 Anserini +test2974 Q0 14212745 24 8.145726 Anserini +test2974 Q0 13478269 25 8.143973 Anserini +test2974 Q0 18027689 26 8.136013 Anserini +test2974 Q0 877121 27 8.135239 Anserini +test2974 Q0 877097 28 8.135239 Anserini +test2974 Q0 2608400 29 8.130312 Anserini +test2974 Q0 3380127 30 8.128318 Anserini +test2975 Q0 8203166 1 19.374350 Anserini +test2975 Q0 8203165 2 16.961088 Anserini +test2975 Q0 8203167 3 16.144938 Anserini +test2975 Q0 8203173 4 15.120504 Anserini +test2975 Q0 9643854 5 14.114525 Anserini +test2975 Q0 11092401 6 14.105302 Anserini +test2975 Q0 17693311 7 14.065769 Anserini +test2975 Q0 6106976 8 13.749758 Anserini +test2975 Q0 9162585 9 13.698122 Anserini +test2975 Q0 8203176 10 13.679960 Anserini +test2975 Q0 10985063 11 13.655346 Anserini +test2975 Q0 10985549 12 13.633295 Anserini +test2975 Q0 11092399 13 13.633295 Anserini +test2975 Q0 18787201 14 13.502302 Anserini +test2975 Q0 9365635 15 13.403192 Anserini +test2975 Q0 9365637 16 13.403192 Anserini +test2975 Q0 10985552 17 13.345879 Anserini +test2975 Q0 9162580 18 13.332555 Anserini +test2975 Q0 9643861 19 13.148233 Anserini +test2975 Q0 6820529 20 13.084616 Anserini +test2975 Q0 20253833 21 13.074635 Anserini +test2975 Q0 19357411 22 12.876198 Anserini +test2975 Q0 8126558 23 12.816918 Anserini +test2975 Q0 8492637 24 12.720093 Anserini +test2975 Q0 11031320 25 12.594646 Anserini +test2975 Q0 15591645 26 12.575895 Anserini +test2975 Q0 11031321 27 12.493976 Anserini +test2975 Q0 10873930 28 12.395080 Anserini +test2975 Q0 17186747 29 12.322010 Anserini +test2975 Q0 10877397 30 12.316454 Anserini +test2976 Q0 17796075 1 11.989596 Anserini +test2976 Q0 10711652 2 9.596116 Anserini +test2976 Q0 7199948 3 9.594531 Anserini +test2976 Q0 13743405 4 9.588890 Anserini +test2976 Q0 6143305 5 9.578563 Anserini +test2976 Q0 2837405 6 9.536669 Anserini +test2976 Q0 5210376 7 9.497596 Anserini +test2976 Q0 17796071 8 9.469193 Anserini +test2976 Q0 18183123 9 9.452675 Anserini +test2976 Q0 15870426 10 9.386366 Anserini +test2976 Q0 2591345 11 9.343872 Anserini +test2976 Q0 14581736 12 9.332460 Anserini +test2976 Q0 14412571 13 9.330154 Anserini +test2976 Q0 17723941 14 9.281653 Anserini +test2976 Q0 385257 15 9.156086 Anserini +test2976 Q0 9833936 16 9.116297 Anserini +test2976 Q0 3632926 17 9.070316 Anserini +test2976 Q0 8530348 18 9.068581 Anserini +test2976 Q0 9753625 19 9.037068 Anserini +test2976 Q0 14581744 20 9.000725 Anserini +test2976 Q0 3627191 21 8.992094 Anserini +test2976 Q0 4364430 22 8.962633 Anserini +test2976 Q0 13900164 23 8.944111 Anserini +test2976 Q0 14247984 24 8.943273 Anserini +test2976 Q0 804269 25 8.933604 Anserini +test2976 Q0 14247989 26 8.923337 Anserini +test2976 Q0 19500801 27 8.903784 Anserini +test2976 Q0 20903778 28 8.892426 Anserini +test2976 Q0 9007206 29 8.884948 Anserini +test2976 Q0 3518107 30 8.843808 Anserini +test2977 Q0 1791214 1 12.325775 Anserini +test2977 Q0 428237 2 12.183825 Anserini +test2977 Q0 3139163 3 11.869570 Anserini +test2977 Q0 2494508 4 11.718575 Anserini +test2977 Q0 18943482 5 11.681013 Anserini +test2977 Q0 10723252 6 11.619465 Anserini +test2977 Q0 3779037 7 11.471851 Anserini +test2977 Q0 3172991 8 11.471851 Anserini +test2977 Q0 5215461 9 11.367277 Anserini +test2977 Q0 19301376 10 11.164134 Anserini +test2977 Q0 8197426 11 11.020884 Anserini +test2977 Q0 7186568 12 10.919022 Anserini +test2977 Q0 9499967 13 10.734230 Anserini +test2977 Q0 16203134 14 10.674736 Anserini +test2977 Q0 6503403 15 10.655763 Anserini +test2977 Q0 9751559 16 10.646585 Anserini +test2977 Q0 9751561 17 10.646585 Anserini +test2977 Q0 1672119 18 10.608475 Anserini +test2977 Q0 13860731 19 10.443975 Anserini +test2977 Q0 16522219 20 10.361033 Anserini +test2977 Q0 2733604 21 10.341757 Anserini +test2977 Q0 11316639 22 10.339420 Anserini +test2977 Q0 18203154 23 10.291322 Anserini +test2977 Q0 18203152 24 10.205467 Anserini +test2977 Q0 11388276 25 10.176350 Anserini +test2977 Q0 9692401 26 10.165293 Anserini +test2977 Q0 12112186 27 10.152267 Anserini +test2977 Q0 2528100 28 10.149740 Anserini +test2977 Q0 9193752 29 10.146012 Anserini +test2977 Q0 10306067 30 10.145763 Anserini +test2978 Q0 2282131 1 16.621801 Anserini +test2978 Q0 1997235 2 13.581606 Anserini +test2978 Q0 2282123 3 13.463888 Anserini +test2978 Q0 2282130 4 13.369677 Anserini +test2978 Q0 16302532 5 13.095531 Anserini +test2978 Q0 20767194 6 12.765490 Anserini +test2978 Q0 16008311 7 12.655003 Anserini +test2978 Q0 2282111 8 12.595363 Anserini +test2978 Q0 2282124 9 12.569424 Anserini +test2978 Q0 16008316 10 12.548988 Anserini +test2978 Q0 1997222 11 12.475086 Anserini +test2978 Q0 2282115 12 12.440713 Anserini +test2978 Q0 2282120 13 12.305082 Anserini +test2978 Q0 17001887 14 12.305082 Anserini +test2978 Q0 16302533 15 12.305082 Anserini +test2978 Q0 1997219 16 12.299965 Anserini +test2978 Q0 2282119 17 12.254853 Anserini +test2978 Q0 20767195 18 12.254853 Anserini +test2978 Q0 17001890 19 12.254853 Anserini +test2978 Q0 16302529 20 12.205032 Anserini +test2978 Q0 14837874 21 12.153877 Anserini +test2978 Q0 17324559 22 12.097267 Anserini +test2978 Q0 2282121 23 12.086941 Anserini +test2978 Q0 2282112 24 12.086941 Anserini +test2978 Q0 2282129 25 11.921566 Anserini +test2978 Q0 2282127 26 11.789682 Anserini +test2978 Q0 13692020 27 11.765242 Anserini +test2978 Q0 15926676 28 11.702357 Anserini +test2978 Q0 17001888 29 11.667500 Anserini +test2978 Q0 16030197 30 11.665693 Anserini +test2979 Q0 8109943 1 12.694064 Anserini +test2979 Q0 18533007 2 12.690376 Anserini +test2979 Q0 20262315 3 10.984633 Anserini +test2979 Q0 17845400 4 10.908374 Anserini +test2979 Q0 20096159 5 10.768789 Anserini +test2979 Q0 17845403 6 10.745590 Anserini +test2979 Q0 1494407 7 10.732183 Anserini +test2979 Q0 19489385 8 10.601672 Anserini +test2979 Q0 20541854 9 10.458195 Anserini +test2979 Q0 17845399 10 10.448554 Anserini +test2979 Q0 3708305 11 10.413280 Anserini +test2979 Q0 18753828 12 10.399809 Anserini +test2979 Q0 14386435 13 10.304955 Anserini +test2979 Q0 17195172 14 10.291480 Anserini +test2979 Q0 14386436 15 10.291238 Anserini +test2979 Q0 18736621 16 10.214836 Anserini +test2979 Q0 20312572 17 10.187973 Anserini +test2979 Q0 19740987 18 10.107266 Anserini +test2979 Q0 19231812 19 10.069002 Anserini +test2979 Q0 17630438 20 10.065354 Anserini +test2979 Q0 5994966 21 10.051601 Anserini +test2979 Q0 20312459 22 9.949432 Anserini +test2979 Q0 20507470 23 9.940025 Anserini +test2979 Q0 358171 24 9.928342 Anserini +test2979 Q0 20916153 25 9.923364 Anserini +test2979 Q0 754706 26 9.792603 Anserini +test2979 Q0 20312534 27 9.785961 Anserini +test2979 Q0 18695864 28 9.732524 Anserini +test2979 Q0 19252046 29 9.723351 Anserini +test2979 Q0 11204576 30 9.718838 Anserini +test298 Q0 895819 1 14.887948 Anserini +test298 Q0 2976377 2 14.440628 Anserini +test298 Q0 14153160 3 14.051722 Anserini +test298 Q0 2227209 4 14.051722 Anserini +test298 Q0 1666818 5 13.598677 Anserini +test298 Q0 15197185 6 13.539939 Anserini +test298 Q0 6976513 7 13.531223 Anserini +test298 Q0 184634 8 13.128209 Anserini +test298 Q0 474216 9 13.095006 Anserini +test298 Q0 2976342 10 13.079881 Anserini +test298 Q0 895775 11 12.899635 Anserini +test298 Q0 2976344 12 12.808008 Anserini +test298 Q0 13900570 13 12.754602 Anserini +test298 Q0 6528844 14 12.701409 Anserini +test298 Q0 474217 15 12.669138 Anserini +test298 Q0 474215 16 12.612475 Anserini +test298 Q0 14153139 17 12.575493 Anserini +test298 Q0 8652932 18 12.345784 Anserini +test298 Q0 2976343 19 12.344711 Anserini +test298 Q0 18076777 20 12.221822 Anserini +test298 Q0 9512616 21 12.153605 Anserini +test298 Q0 2976273 22 12.124512 Anserini +test298 Q0 474218 23 12.114841 Anserini +test298 Q0 15197183 24 12.086990 Anserini +test298 Q0 6528845 25 12.026521 Anserini +test298 Q0 15197157 26 11.960003 Anserini +test298 Q0 15197215 27 11.960003 Anserini +test298 Q0 2366757 28 11.938229 Anserini +test298 Q0 895763 29 11.891915 Anserini +test298 Q0 2366755 30 11.891915 Anserini +test2980 Q0 23278 1 15.315144 Anserini +test2980 Q0 6627815 2 15.085715 Anserini +test2980 Q0 23270 3 14.954544 Anserini +test2980 Q0 23274 4 14.689344 Anserini +test2980 Q0 19465935 5 14.394279 Anserini +test2980 Q0 23241 6 13.965164 Anserini +test2980 Q0 2616712 7 13.946346 Anserini +test2980 Q0 7743226 8 13.861124 Anserini +test2980 Q0 7371383 9 13.710801 Anserini +test2980 Q0 23239 10 13.578216 Anserini +test2980 Q0 23280 11 13.578216 Anserini +test2980 Q0 4552910 12 13.380642 Anserini +test2980 Q0 7492388 13 13.340717 Anserini +test2980 Q0 7492406 14 13.340717 Anserini +test2980 Q0 23240 15 13.101676 Anserini +test2980 Q0 19725226 16 13.027789 Anserini +test2980 Q0 8816168 17 12.817313 Anserini +test2980 Q0 9788774 18 12.805014 Anserini +test2980 Q0 11964808 19 12.803434 Anserini +test2980 Q0 12097834 20 12.773756 Anserini +test2980 Q0 12097833 21 12.739003 Anserini +test2980 Q0 9788782 22 12.715707 Anserini +test2980 Q0 15374075 23 12.684088 Anserini +test2980 Q0 9675933 24 12.660459 Anserini +test2980 Q0 13187606 25 12.637180 Anserini +test2980 Q0 9558450 26 12.565554 Anserini +test2980 Q0 6647775 27 12.527107 Anserini +test2980 Q0 11290109 28 12.489902 Anserini +test2980 Q0 5954940 29 12.440488 Anserini +test2980 Q0 11690920 30 12.415689 Anserini +test2981 Q0 12028747 1 14.717098 Anserini +test2981 Q0 12739937 2 14.557878 Anserini +test2981 Q0 16749290 3 14.202804 Anserini +test2981 Q0 16760682 4 14.050001 Anserini +test2981 Q0 4878913 5 14.037652 Anserini +test2981 Q0 11218346 6 13.523727 Anserini +test2981 Q0 13780003 7 13.483017 Anserini +test2981 Q0 10372674 8 13.443438 Anserini +test2981 Q0 13780002 9 13.110409 Anserini +test2981 Q0 4878922 10 13.088755 Anserini +test2981 Q0 16760332 11 13.044693 Anserini +test2981 Q0 15422228 12 12.997738 Anserini +test2981 Q0 12939778 13 12.952613 Anserini +test2981 Q0 16760723 14 12.952052 Anserini +test2981 Q0 7038759 15 12.888181 Anserini +test2981 Q0 7038763 16 12.888181 Anserini +test2981 Q0 8143543 17 12.837041 Anserini +test2981 Q0 10372668 18 12.829194 Anserini +test2981 Q0 12028749 19 12.809765 Anserini +test2981 Q0 14343510 20 12.779918 Anserini +test2981 Q0 11218348 21 12.699112 Anserini +test2981 Q0 12739930 22 12.692036 Anserini +test2981 Q0 4878912 23 12.545711 Anserini +test2981 Q0 16750026 24 12.496320 Anserini +test2981 Q0 16760681 25 12.461226 Anserini +test2981 Q0 3225630 26 12.420568 Anserini +test2981 Q0 10359736 27 12.396990 Anserini +test2981 Q0 10447070 28 12.380220 Anserini +test2981 Q0 12739941 29 12.364254 Anserini +test2981 Q0 11105465 30 12.364064 Anserini +test2982 Q0 432156 1 20.429110 Anserini +test2982 Q0 12556705 2 17.365011 Anserini +test2982 Q0 12571462 3 17.006611 Anserini +test2982 Q0 9956548 4 16.976271 Anserini +test2982 Q0 12571458 5 16.946167 Anserini +test2982 Q0 12571461 6 16.507414 Anserini +test2982 Q0 12571460 7 15.491878 Anserini +test2982 Q0 15035091 8 15.273146 Anserini +test2982 Q0 8683226 9 15.007910 Anserini +test2982 Q0 2203414 10 14.851623 Anserini +test2982 Q0 8683229 11 14.708443 Anserini +test2982 Q0 12571459 12 14.689425 Anserini +test2982 Q0 12556713 13 14.544957 Anserini +test2982 Q0 432140 14 14.138819 Anserini +test2982 Q0 432126 15 13.680888 Anserini +test2982 Q0 12341008 16 13.467268 Anserini +test2982 Q0 182785 17 13.417655 Anserini +test2982 Q0 20040051 18 13.303019 Anserini +test2982 Q0 17776221 19 13.031471 Anserini +test2982 Q0 18947968 20 13.031471 Anserini +test2982 Q0 12556712 21 12.956643 Anserini +test2982 Q0 182793 22 12.925407 Anserini +test2982 Q0 432134 23 12.750119 Anserini +test2982 Q0 18947960 24 12.682335 Anserini +test2982 Q0 432148 25 12.660358 Anserini +test2982 Q0 8683228 26 12.379985 Anserini +test2982 Q0 432123 27 12.357678 Anserini +test2982 Q0 432157 28 12.223213 Anserini +test2982 Q0 197135 29 12.169622 Anserini +test2982 Q0 1460524 30 12.142258 Anserini +test2983 Q0 12287550 1 12.521148 Anserini +test2983 Q0 1936867 2 11.107615 Anserini +test2983 Q0 6542178 3 10.698161 Anserini +test2983 Q0 3608433 4 10.447428 Anserini +test2983 Q0 5896832 5 10.298784 Anserini +test2983 Q0 19266525 6 10.222999 Anserini +test2983 Q0 14639984 7 10.077635 Anserini +test2983 Q0 14639985 8 10.077635 Anserini +test2983 Q0 6631742 9 10.041649 Anserini +test2983 Q0 15715191 10 10.022818 Anserini +test2983 Q0 7941764 11 9.994284 Anserini +test2983 Q0 2495113 12 9.969656 Anserini +test2983 Q0 7941783 13 9.947647 Anserini +test2983 Q0 2789939 14 9.904799 Anserini +test2983 Q0 12968636 15 9.851776 Anserini +test2983 Q0 3412148 16 9.838003 Anserini +test2983 Q0 17269445 17 9.811481 Anserini +test2983 Q0 14587197 18 9.733208 Anserini +test2983 Q0 17430662 19 9.723354 Anserini +test2983 Q0 6250627 20 9.661899 Anserini +test2983 Q0 20316469 21 9.635102 Anserini +test2983 Q0 20127006 22 9.599874 Anserini +test2983 Q0 9298451 23 9.561808 Anserini +test2983 Q0 12650421 24 9.444622 Anserini +test2983 Q0 7378852 25 9.382845 Anserini +test2983 Q0 8503640 26 9.270173 Anserini +test2983 Q0 2325041 27 9.254575 Anserini +test2983 Q0 2003261 28 9.252630 Anserini +test2983 Q0 15725598 29 9.244706 Anserini +test2983 Q0 12059951 30 9.210667 Anserini +test2984 Q0 14254391 1 14.799881 Anserini +test2984 Q0 12599260 2 13.264854 Anserini +test2984 Q0 9066519 3 13.234106 Anserini +test2984 Q0 7145017 4 13.167969 Anserini +test2984 Q0 3633618 5 13.003681 Anserini +test2984 Q0 20162141 6 12.968782 Anserini +test2984 Q0 3718982 7 12.933302 Anserini +test2984 Q0 3633509 8 12.853591 Anserini +test2984 Q0 14285594 9 12.809679 Anserini +test2984 Q0 9103607 10 12.735843 Anserini +test2984 Q0 13556223 11 12.655434 Anserini +test2984 Q0 20518141 12 12.561485 Anserini +test2984 Q0 17776945 13 12.531221 Anserini +test2984 Q0 3729839 14 12.345707 Anserini +test2984 Q0 20519688 15 12.332026 Anserini +test2984 Q0 6000202 16 12.322137 Anserini +test2984 Q0 3728333 17 12.274070 Anserini +test2984 Q0 20519583 18 12.271390 Anserini +test2984 Q0 12598778 19 12.268644 Anserini +test2984 Q0 13428326 20 12.266840 Anserini +test2984 Q0 1064852 21 12.265203 Anserini +test2984 Q0 5531255 22 12.260934 Anserini +test2984 Q0 459557 23 12.215345 Anserini +test2984 Q0 6000203 24 12.171047 Anserini +test2984 Q0 9042619 25 12.126153 Anserini +test2984 Q0 1394905 26 12.052213 Anserini +test2984 Q0 531040 27 12.051918 Anserini +test2984 Q0 835441 28 12.046634 Anserini +test2984 Q0 16450827 29 12.040586 Anserini +test2984 Q0 17948056 30 12.035965 Anserini +test2985 Q0 5753940 1 15.082097 Anserini +test2985 Q0 5753933 2 14.649682 Anserini +test2985 Q0 16698511 3 14.629595 Anserini +test2985 Q0 2654708 4 14.437770 Anserini +test2985 Q0 17633014 5 14.433008 Anserini +test2985 Q0 9069737 6 14.370735 Anserini +test2985 Q0 8301899 7 14.300890 Anserini +test2985 Q0 5753935 8 14.191715 Anserini +test2985 Q0 15418154 9 13.974177 Anserini +test2985 Q0 6578998 10 13.893035 Anserini +test2985 Q0 10800429 11 13.865981 Anserini +test2985 Q0 5753939 12 13.860835 Anserini +test2985 Q0 5753941 13 13.860835 Anserini +test2985 Q0 9572564 14 13.841870 Anserini +test2985 Q0 9069750 15 13.790112 Anserini +test2985 Q0 3147311 16 13.777719 Anserini +test2985 Q0 8041306 17 13.735450 Anserini +test2985 Q0 14856504 18 13.735450 Anserini +test2985 Q0 5753934 19 13.704607 Anserini +test2985 Q0 4017566 20 13.661530 Anserini +test2985 Q0 19622847 21 13.633306 Anserini +test2985 Q0 6977491 22 13.614088 Anserini +test2985 Q0 8455135 23 13.611873 Anserini +test2985 Q0 17371271 24 13.529679 Anserini +test2985 Q0 8712428 25 13.471776 Anserini +test2985 Q0 19451984 26 13.465266 Anserini +test2985 Q0 20907972 27 13.409216 Anserini +test2985 Q0 9162048 28 13.348955 Anserini +test2985 Q0 16779869 29 13.285826 Anserini +test2985 Q0 16198422 30 13.267913 Anserini +test2986 Q0 12280966 1 14.862054 Anserini +test2986 Q0 7757426 2 12.790352 Anserini +test2986 Q0 16019056 3 12.459791 Anserini +test2986 Q0 579867 4 12.345532 Anserini +test2986 Q0 17365553 5 12.334016 Anserini +test2986 Q0 18879563 6 12.324648 Anserini +test2986 Q0 13129735 7 12.323400 Anserini +test2986 Q0 4558913 8 12.267231 Anserini +test2986 Q0 11849239 9 12.146286 Anserini +test2986 Q0 6935046 10 12.130090 Anserini +test2986 Q0 7468754 11 12.129848 Anserini +test2986 Q0 6572897 12 12.085758 Anserini +test2986 Q0 2707516 13 12.077872 Anserini +test2986 Q0 4493829 14 12.072765 Anserini +test2986 Q0 4307180 15 12.066683 Anserini +test2986 Q0 9065485 16 12.050123 Anserini +test2986 Q0 678536 17 12.049128 Anserini +test2986 Q0 12833759 18 12.021744 Anserini +test2986 Q0 6572879 19 12.015116 Anserini +test2986 Q0 2782004 20 12.008789 Anserini +test2986 Q0 4559021 21 11.971487 Anserini +test2986 Q0 4559030 22 11.971487 Anserini +test2986 Q0 6207845 23 11.971487 Anserini +test2986 Q0 18776912 24 11.925799 Anserini +test2986 Q0 3311524 25 11.916676 Anserini +test2986 Q0 38547 26 11.839993 Anserini +test2986 Q0 3684951 27 11.839993 Anserini +test2986 Q0 12947567 28 11.839993 Anserini +test2986 Q0 2782017 29 11.806864 Anserini +test2986 Q0 16543762 30 11.715819 Anserini +test2987 Q0 604075 1 13.585020 Anserini +test2987 Q0 12839136 2 12.640533 Anserini +test2987 Q0 604059 3 12.124417 Anserini +test2987 Q0 617558 4 11.435530 Anserini +test2987 Q0 108375 5 11.021803 Anserini +test2987 Q0 156516 6 10.694120 Anserini +test2987 Q0 9560564 7 10.669210 Anserini +test2987 Q0 5801277 8 10.547569 Anserini +test2987 Q0 9560561 9 10.445539 Anserini +test2987 Q0 10998277 10 10.323800 Anserini +test2987 Q0 8568456 11 10.311839 Anserini +test2987 Q0 2520010 12 10.058696 Anserini +test2987 Q0 7238371 13 10.003929 Anserini +test2987 Q0 12839125 14 10.003057 Anserini +test2987 Q0 3893896 15 9.872856 Anserini +test2987 Q0 15662248 16 9.817004 Anserini +test2987 Q0 4174997 17 9.807730 Anserini +test2987 Q0 588875 18 9.794176 Anserini +test2987 Q0 12424478 19 9.777916 Anserini +test2987 Q0 17273361 20 9.771490 Anserini +test2987 Q0 4076255 21 9.771490 Anserini +test2987 Q0 3893895 22 9.762680 Anserini +test2987 Q0 3893906 23 9.699482 Anserini +test2987 Q0 6174425 24 9.621344 Anserini +test2987 Q0 20914962 25 9.602144 Anserini +test2987 Q0 983207 26 9.592777 Anserini +test2987 Q0 14257028 27 9.485820 Anserini +test2987 Q0 9634596 28 9.485820 Anserini +test2987 Q0 6055133 29 9.485820 Anserini +test2987 Q0 3826001 30 9.485820 Anserini +test2988 Q0 17377460 1 14.810106 Anserini +test2988 Q0 9906519 2 13.266352 Anserini +test2988 Q0 7480503 3 12.908697 Anserini +test2988 Q0 6870448 4 12.810025 Anserini +test2988 Q0 7499968 5 12.442886 Anserini +test2988 Q0 10025751 6 12.411424 Anserini +test2988 Q0 15653240 7 12.399957 Anserini +test2988 Q0 8607197 8 12.366787 Anserini +test2988 Q0 10578657 9 12.359428 Anserini +test2988 Q0 20164448 10 12.336516 Anserini +test2988 Q0 1474331 11 12.314537 Anserini +test2988 Q0 11612957 12 12.222673 Anserini +test2988 Q0 19414602 13 12.188972 Anserini +test2988 Q0 5409445 14 12.156238 Anserini +test2988 Q0 15023124 15 12.043080 Anserini +test2988 Q0 16986550 16 11.968676 Anserini +test2988 Q0 6748241 17 11.959030 Anserini +test2988 Q0 928159 18 11.924959 Anserini +test2988 Q0 15023122 19 11.915090 Anserini +test2988 Q0 1884523 20 11.855928 Anserini +test2988 Q0 16110947 21 11.771685 Anserini +test2988 Q0 9279571 22 11.685036 Anserini +test2988 Q0 13935009 23 11.671896 Anserini +test2988 Q0 12168561 24 11.660943 Anserini +test2988 Q0 18127272 25 11.640696 Anserini +test2988 Q0 391612 26 11.626316 Anserini +test2988 Q0 20051159 27 11.589917 Anserini +test2988 Q0 16555591 28 11.580795 Anserini +test2988 Q0 7101634 29 11.574562 Anserini +test2988 Q0 6768801 30 11.574562 Anserini +test2989 Q0 17878587 1 16.776388 Anserini +test2989 Q0 4121375 2 16.720135 Anserini +test2989 Q0 3471351 3 16.188690 Anserini +test2989 Q0 9939444 4 15.932396 Anserini +test2989 Q0 19572526 5 15.839643 Anserini +test2989 Q0 578334 6 15.818281 Anserini +test2989 Q0 3131364 7 15.694284 Anserini +test2989 Q0 7745015 8 15.502724 Anserini +test2989 Q0 6210607 9 15.341525 Anserini +test2989 Q0 2253689 10 15.330481 Anserini +test2989 Q0 588164 11 15.204884 Anserini +test2989 Q0 18128127 12 14.991187 Anserini +test2989 Q0 8102518 13 14.897573 Anserini +test2989 Q0 1486081 14 14.890343 Anserini +test2989 Q0 422828 15 14.712038 Anserini +test2989 Q0 4121369 16 14.702996 Anserini +test2989 Q0 17233534 17 14.699787 Anserini +test2989 Q0 4983615 18 14.646507 Anserini +test2989 Q0 578338 19 14.635423 Anserini +test2989 Q0 13465370 20 14.606452 Anserini +test2989 Q0 14091961 21 14.595214 Anserini +test2989 Q0 14485690 22 14.576316 Anserini +test2989 Q0 3121145 23 14.548538 Anserini +test2989 Q0 3542842 24 14.532640 Anserini +test2989 Q0 11734662 25 14.508763 Anserini +test2989 Q0 3297450 26 14.499355 Anserini +test2989 Q0 2991211 27 14.494953 Anserini +test2989 Q0 449566 28 14.371723 Anserini +test2989 Q0 361688 29 14.328795 Anserini +test2989 Q0 111110 30 14.322862 Anserini +test299 Q0 2977450 1 17.812471 Anserini +test299 Q0 13015353 2 17.344049 Anserini +test299 Q0 6910534 3 17.014698 Anserini +test299 Q0 10327557 4 16.857504 Anserini +test299 Q0 3271656 5 16.809072 Anserini +test299 Q0 10327560 6 16.787527 Anserini +test299 Q0 13642501 7 16.406286 Anserini +test299 Q0 3271654 8 16.344206 Anserini +test299 Q0 13642502 9 16.126085 Anserini +test299 Q0 13642506 10 15.763565 Anserini +test299 Q0 13642497 11 15.576402 Anserini +test299 Q0 3271639 12 15.523682 Anserini +test299 Q0 424492 13 15.472562 Anserini +test299 Q0 13015347 14 15.470014 Anserini +test299 Q0 1816799 15 15.371732 Anserini +test299 Q0 8079444 16 15.320278 Anserini +test299 Q0 3271644 17 15.254574 Anserini +test299 Q0 2160102 18 15.138255 Anserini +test299 Q0 13642495 19 15.082644 Anserini +test299 Q0 8079437 20 14.932567 Anserini +test299 Q0 5109323 21 14.926350 Anserini +test299 Q0 3300174 22 14.924354 Anserini +test299 Q0 2160080 23 14.907089 Anserini +test299 Q0 6910543 24 14.874393 Anserini +test299 Q0 3055513 25 14.852065 Anserini +test299 Q0 9006738 26 14.843799 Anserini +test299 Q0 2160075 27 14.780804 Anserini +test299 Q0 6910542 28 14.714930 Anserini +test299 Q0 6910539 29 14.651162 Anserini +test299 Q0 3271640 30 14.624647 Anserini +test2990 Q0 8986837 1 11.510135 Anserini +test2990 Q0 8016680 2 11.307726 Anserini +test2990 Q0 12324436 3 11.096202 Anserini +test2990 Q0 5480398 4 11.049814 Anserini +test2990 Q0 5078406 5 10.761084 Anserini +test2990 Q0 4940275 6 10.638031 Anserini +test2990 Q0 680018 7 10.577819 Anserini +test2990 Q0 10186250 8 10.408548 Anserini +test2990 Q0 5480757 9 10.370968 Anserini +test2990 Q0 1816237 10 10.357777 Anserini +test2990 Q0 5207799 11 10.201437 Anserini +test2990 Q0 15385163 12 10.056578 Anserini +test2990 Q0 6815035 13 10.034576 Anserini +test2990 Q0 20089255 14 9.891631 Anserini +test2990 Q0 18865896 15 9.784475 Anserini +test2990 Q0 1316201 16 9.779210 Anserini +test2990 Q0 10948527 17 9.779210 Anserini +test2990 Q0 10948524 18 9.779210 Anserini +test2990 Q0 5760571 19 9.767961 Anserini +test2990 Q0 16268830 20 9.761078 Anserini +test2990 Q0 15779093 21 9.757368 Anserini +test2990 Q0 6811624 22 9.699482 Anserini +test2990 Q0 11878139 23 9.698826 Anserini +test2990 Q0 2826319 24 9.681898 Anserini +test2990 Q0 11878140 25 9.673950 Anserini +test2990 Q0 588470 26 9.605593 Anserini +test2990 Q0 7172960 27 9.559677 Anserini +test2990 Q0 6064245 28 9.559040 Anserini +test2990 Q0 8929486 29 9.557462 Anserini +test2990 Q0 2699148 30 9.541277 Anserini +test2991 Q0 2674557 1 13.209308 Anserini +test2991 Q0 2674616 2 12.432193 Anserini +test2991 Q0 5792491 3 12.407691 Anserini +test2991 Q0 9530364 4 12.080732 Anserini +test2991 Q0 3319110 5 11.907800 Anserini +test2991 Q0 19005831 6 11.608731 Anserini +test2991 Q0 2674561 7 11.418185 Anserini +test2991 Q0 17416993 8 11.196616 Anserini +test2991 Q0 14825587 9 11.119249 Anserini +test2991 Q0 2674559 10 11.070587 Anserini +test2991 Q0 19069762 11 10.914507 Anserini +test2991 Q0 17417002 12 10.838062 Anserini +test2991 Q0 2674577 13 10.836679 Anserini +test2991 Q0 11938560 14 10.797460 Anserini +test2991 Q0 8850765 15 10.760451 Anserini +test2991 Q0 13289689 16 10.739233 Anserini +test2991 Q0 10473257 17 10.733975 Anserini +test2991 Q0 9547451 18 10.725130 Anserini +test2991 Q0 6164357 19 10.704988 Anserini +test2991 Q0 10285308 20 10.684598 Anserini +test2991 Q0 15623820 21 10.669518 Anserini +test2991 Q0 5791702 22 10.646032 Anserini +test2991 Q0 7180606 23 10.636512 Anserini +test2991 Q0 802379 24 10.614604 Anserini +test2991 Q0 6333871 25 10.579604 Anserini +test2991 Q0 14271962 26 10.514614 Anserini +test2991 Q0 2674613 27 10.466976 Anserini +test2991 Q0 6313461 28 10.439817 Anserini +test2991 Q0 2674563 29 10.394003 Anserini +test2991 Q0 5791696 30 10.392323 Anserini +test2992 Q0 9730645 1 15.555498 Anserini +test2992 Q0 6878513 2 14.743790 Anserini +test2992 Q0 14852652 3 13.918022 Anserini +test2992 Q0 18318280 4 13.288786 Anserini +test2992 Q0 9730659 5 13.043316 Anserini +test2992 Q0 2073336 6 12.988806 Anserini +test2992 Q0 5089793 7 12.881815 Anserini +test2992 Q0 5456225 8 12.881815 Anserini +test2992 Q0 8198406 9 12.801069 Anserini +test2992 Q0 8198396 10 12.801069 Anserini +test2992 Q0 12287779 11 12.776650 Anserini +test2992 Q0 8198471 12 12.772095 Anserini +test2992 Q0 9730642 13 12.738309 Anserini +test2992 Q0 8198073 14 12.654096 Anserini +test2992 Q0 8198443 15 12.592655 Anserini +test2992 Q0 8198386 16 12.592655 Anserini +test2992 Q0 8198075 17 12.452879 Anserini +test2992 Q0 3129915 18 12.290627 Anserini +test2992 Q0 2044357 19 12.254411 Anserini +test2992 Q0 19966301 20 12.234761 Anserini +test2992 Q0 17027439 21 12.210288 Anserini +test2992 Q0 3206088 22 12.135709 Anserini +test2992 Q0 2939135 23 12.135709 Anserini +test2992 Q0 20609138 24 12.120283 Anserini +test2992 Q0 14852655 25 12.120283 Anserini +test2992 Q0 2939169 26 12.120283 Anserini +test2992 Q0 5480002 27 12.102687 Anserini +test2992 Q0 8197931 28 12.002686 Anserini +test2992 Q0 8198055 29 11.913216 Anserini +test2992 Q0 8197910 30 11.913216 Anserini +test2993 Q0 4986990 1 11.892797 Anserini +test2993 Q0 915003 2 11.217545 Anserini +test2993 Q0 2602299 3 11.204950 Anserini +test2993 Q0 1672021 4 10.934929 Anserini +test2993 Q0 9184757 5 10.928885 Anserini +test2993 Q0 4557227 6 10.889544 Anserini +test2993 Q0 1048024 7 10.861141 Anserini +test2993 Q0 1048734 8 10.848824 Anserini +test2993 Q0 10450750 9 10.840348 Anserini +test2993 Q0 4750037 10 10.822120 Anserini +test2993 Q0 2652635 11 10.781416 Anserini +test2993 Q0 3332408 12 10.715939 Anserini +test2993 Q0 9703930 13 10.597343 Anserini +test2993 Q0 15068453 14 10.563984 Anserini +test2993 Q0 2940430 15 10.460423 Anserini +test2993 Q0 10200157 16 10.377492 Anserini +test2993 Q0 4557231 17 10.312550 Anserini +test2993 Q0 2258417 18 10.272455 Anserini +test2993 Q0 7920000 19 10.234977 Anserini +test2993 Q0 13597407 20 10.233838 Anserini +test2993 Q0 3091436 21 10.233838 Anserini +test2993 Q0 3392212 22 10.188283 Anserini +test2993 Q0 4420301 23 10.185305 Anserini +test2993 Q0 15889564 24 10.181526 Anserini +test2993 Q0 4093705 25 10.163134 Anserini +test2993 Q0 19430608 26 10.152061 Anserini +test2993 Q0 4750029 27 10.148647 Anserini +test2993 Q0 3097744 28 10.147594 Anserini +test2993 Q0 5406642 29 10.107398 Anserini +test2993 Q0 20695151 30 10.102934 Anserini +test2994 Q0 17248670 1 22.161346 Anserini +test2994 Q0 17248681 2 19.279476 Anserini +test2994 Q0 15262020 3 17.436502 Anserini +test2994 Q0 20052580 4 17.411772 Anserini +test2994 Q0 15933417 5 16.206770 Anserini +test2994 Q0 15253464 6 15.416404 Anserini +test2994 Q0 14831449 7 15.258935 Anserini +test2994 Q0 18972030 8 15.227228 Anserini +test2994 Q0 8221788 9 15.198513 Anserini +test2994 Q0 15262021 10 15.056127 Anserini +test2994 Q0 19307315 11 14.730129 Anserini +test2994 Q0 19718030 12 14.646765 Anserini +test2994 Q0 8665719 13 14.451134 Anserini +test2994 Q0 8665743 14 14.451134 Anserini +test2994 Q0 9890372 15 14.400546 Anserini +test2994 Q0 11326847 16 14.097824 Anserini +test2994 Q0 16238933 17 14.073421 Anserini +test2994 Q0 16238935 18 13.850490 Anserini +test2994 Q0 10071920 19 13.695314 Anserini +test2994 Q0 10284862 20 13.585767 Anserini +test2994 Q0 18972049 21 13.579754 Anserini +test2994 Q0 17937985 22 13.577196 Anserini +test2994 Q0 14124279 23 13.551033 Anserini +test2994 Q0 17341914 24 13.530482 Anserini +test2994 Q0 14284942 25 13.514546 Anserini +test2994 Q0 12699949 26 13.505960 Anserini +test2994 Q0 12699955 27 13.505960 Anserini +test2994 Q0 15262022 28 13.479649 Anserini +test2994 Q0 4693490 29 13.418947 Anserini +test2994 Q0 18972027 30 13.327837 Anserini +test2995 Q0 19071786 1 13.111134 Anserini +test2995 Q0 17674015 2 12.858295 Anserini +test2995 Q0 17706491 3 12.858295 Anserini +test2995 Q0 17707374 4 12.858295 Anserini +test2995 Q0 17707771 5 12.858295 Anserini +test2995 Q0 17707817 6 12.858295 Anserini +test2995 Q0 17674095 7 12.858295 Anserini +test2995 Q0 17707700 8 12.858295 Anserini +test2995 Q0 17672394 9 12.858295 Anserini +test2995 Q0 17674136 10 12.858295 Anserini +test2995 Q0 17674193 11 12.858295 Anserini +test2995 Q0 17674221 12 12.858295 Anserini +test2995 Q0 17672436 13 12.858295 Anserini +test2995 Q0 17672648 14 12.858295 Anserini +test2995 Q0 17707100 15 12.858295 Anserini +test2995 Q0 17707743 16 12.858295 Anserini +test2995 Q0 17706938 17 12.858295 Anserini +test2995 Q0 17672854 18 12.858295 Anserini +test2995 Q0 17261192 19 12.791430 Anserini +test2995 Q0 17453282 20 12.791430 Anserini +test2995 Q0 17450233 21 12.791430 Anserini +test2995 Q0 17261182 22 12.791430 Anserini +test2995 Q0 17672908 23 12.539884 Anserini +test2995 Q0 17672864 24 12.539884 Anserini +test2995 Q0 17706796 25 12.539884 Anserini +test2995 Q0 17673925 26 12.468520 Anserini +test2995 Q0 17707753 27 12.468520 Anserini +test2995 Q0 14552601 28 12.468520 Anserini +test2995 Q0 17672693 29 12.468520 Anserini +test2995 Q0 17672405 30 12.468520 Anserini +test2996 Q0 9596041 1 13.526511 Anserini +test2996 Q0 10324832 2 12.227654 Anserini +test2996 Q0 6573149 3 12.090634 Anserini +test2996 Q0 1528452 4 12.026176 Anserini +test2996 Q0 664193 5 12.013198 Anserini +test2996 Q0 6064766 6 11.997093 Anserini +test2996 Q0 6337865 7 11.901065 Anserini +test2996 Q0 4732906 8 11.868832 Anserini +test2996 Q0 6337851 9 11.821569 Anserini +test2996 Q0 6573150 10 11.776234 Anserini +test2996 Q0 14082214 11 11.734771 Anserini +test2996 Q0 13075608 12 11.600646 Anserini +test2996 Q0 4676969 13 11.576964 Anserini +test2996 Q0 15878328 14 11.347644 Anserini +test2996 Q0 15878330 15 11.347644 Anserini +test2996 Q0 11257 16 11.304775 Anserini +test2996 Q0 6337852 17 11.286586 Anserini +test2996 Q0 10342713 18 11.168828 Anserini +test2996 Q0 105696 19 11.160580 Anserini +test2996 Q0 18172370 20 11.160547 Anserini +test2996 Q0 20161412 21 11.106829 Anserini +test2996 Q0 20161413 22 11.106829 Anserini +test2996 Q0 19318903 23 11.086300 Anserini +test2996 Q0 4655165 24 11.073658 Anserini +test2996 Q0 9075021 25 11.052040 Anserini +test2996 Q0 9419460 26 11.023834 Anserini +test2996 Q0 3243838 27 11.020762 Anserini +test2996 Q0 15190135 28 11.007831 Anserini +test2996 Q0 13306814 29 10.987809 Anserini +test2996 Q0 9596039 30 10.980419 Anserini +test2997 Q0 7838960 1 11.818589 Anserini +test2997 Q0 3314631 2 11.450342 Anserini +test2997 Q0 885516 3 11.248415 Anserini +test2997 Q0 18836057 4 11.183926 Anserini +test2997 Q0 10547977 5 11.153503 Anserini +test2997 Q0 12469673 6 11.097743 Anserini +test2997 Q0 1271438 7 11.081002 Anserini +test2997 Q0 16345491 8 10.953081 Anserini +test2997 Q0 2344568 9 10.839590 Anserini +test2997 Q0 10414736 10 10.792651 Anserini +test2997 Q0 14564034 11 10.615506 Anserini +test2997 Q0 15198290 12 10.569473 Anserini +test2997 Q0 14134949 13 10.567624 Anserini +test2997 Q0 3499474 14 10.485918 Anserini +test2997 Q0 4660376 15 10.317216 Anserini +test2997 Q0 1624353 16 10.272879 Anserini +test2997 Q0 3455941 17 10.213983 Anserini +test2997 Q0 885513 18 10.175388 Anserini +test2997 Q0 7411715 19 10.121256 Anserini +test2997 Q0 19861636 20 10.043744 Anserini +test2997 Q0 9081 21 10.035913 Anserini +test2997 Q0 4972955 22 9.970338 Anserini +test2997 Q0 20480366 23 9.935066 Anserini +test2997 Q0 11533657 24 9.864202 Anserini +test2997 Q0 5792240 25 9.815243 Anserini +test2997 Q0 1368381 26 9.802179 Anserini +test2997 Q0 14659853 27 9.769918 Anserini +test2997 Q0 8793741 28 9.695119 Anserini +test2997 Q0 3422099 29 9.630924 Anserini +test2997 Q0 8346950 30 9.594299 Anserini +test2998 Q0 5957138 1 17.248262 Anserini +test2998 Q0 6692251 2 16.992674 Anserini +test2998 Q0 15366728 3 16.990021 Anserini +test2998 Q0 7020779 4 16.982395 Anserini +test2998 Q0 6695532 5 16.814119 Anserini +test2998 Q0 14289010 6 16.778500 Anserini +test2998 Q0 11536201 7 16.778500 Anserini +test2998 Q0 15369077 8 16.689386 Anserini +test2998 Q0 7598791 9 16.584555 Anserini +test2998 Q0 458972 10 16.567579 Anserini +test2998 Q0 15340491 11 16.528095 Anserini +test2998 Q0 14289031 12 16.528095 Anserini +test2998 Q0 15363893 13 16.504120 Anserini +test2998 Q0 5778218 14 16.498060 Anserini +test2998 Q0 15366033 15 16.476812 Anserini +test2998 Q0 15363916 16 16.443995 Anserini +test2998 Q0 14289054 17 16.428459 Anserini +test2998 Q0 2659903 18 16.423302 Anserini +test2998 Q0 5660008 19 16.327448 Anserini +test2998 Q0 4843273 20 16.272253 Anserini +test2998 Q0 15340514 21 16.110088 Anserini +test2998 Q0 5973591 22 16.015146 Anserini +test2998 Q0 5879787 23 15.943899 Anserini +test2998 Q0 15366014 24 15.889699 Anserini +test2998 Q0 2990777 25 15.883944 Anserini +test2998 Q0 4643003 26 15.805346 Anserini +test2998 Q0 11536228 27 15.685592 Anserini +test2998 Q0 15340515 28 15.340925 Anserini +test2998 Q0 266584 29 15.247110 Anserini +test2998 Q0 2050151 30 15.219501 Anserini +test2999 Q0 2620928 1 11.586276 Anserini +test2999 Q0 19191298 2 10.941918 Anserini +test2999 Q0 6172682 3 10.931638 Anserini +test2999 Q0 1140445 4 10.383409 Anserini +test2999 Q0 7262719 5 10.286551 Anserini +test2999 Q0 18681718 6 10.080419 Anserini +test2999 Q0 905864 7 9.915304 Anserini +test2999 Q0 9456635 8 9.914477 Anserini +test2999 Q0 1140420 9 9.893094 Anserini +test2999 Q0 3626062 10 9.713100 Anserini +test2999 Q0 10677233 11 9.517285 Anserini +test2999 Q0 3196665 12 9.486082 Anserini +test2999 Q0 5676882 13 9.478268 Anserini +test2999 Q0 4102608 14 9.439175 Anserini +test2999 Q0 16849287 15 9.438594 Anserini +test2999 Q0 11738778 16 9.434335 Anserini +test2999 Q0 15993955 17 9.424771 Anserini +test2999 Q0 14753640 18 9.409179 Anserini +test2999 Q0 9304484 19 9.403281 Anserini +test2999 Q0 13661036 20 9.376257 Anserini +test2999 Q0 10315324 21 9.363410 Anserini +test2999 Q0 7262715 22 9.338472 Anserini +test2999 Q0 2765700 23 9.313969 Anserini +test2999 Q0 3954276 24 9.291165 Anserini +test2999 Q0 15752539 25 9.277288 Anserini +test2999 Q0 7800101 26 9.261118 Anserini +test2999 Q0 9105744 27 9.247586 Anserini +test2999 Q0 6176281 28 9.230296 Anserini +test2999 Q0 4882773 29 9.206007 Anserini +test2999 Q0 269416 30 9.196144 Anserini +test3 Q0 12822927 1 17.452011 Anserini +test3 Q0 5532179 2 14.746440 Anserini +test3 Q0 8855360 3 13.695210 Anserini +test3 Q0 13603750 4 13.619267 Anserini +test3 Q0 886164 5 13.508658 Anserini +test3 Q0 5346018 6 13.028553 Anserini +test3 Q0 4054665 7 12.969459 Anserini +test3 Q0 3797843 8 12.896181 Anserini +test3 Q0 8628536 9 12.628822 Anserini +test3 Q0 6639295 10 12.611203 Anserini +test3 Q0 3292829 11 12.610044 Anserini +test3 Q0 9120935 12 12.573743 Anserini +test3 Q0 7077575 13 12.573743 Anserini +test3 Q0 1398502 14 12.528968 Anserini +test3 Q0 14010675 15 12.501388 Anserini +test3 Q0 13635458 16 12.491114 Anserini +test3 Q0 2217675 17 12.460486 Anserini +test3 Q0 85791 18 12.443502 Anserini +test3 Q0 864855 19 12.402173 Anserini +test3 Q0 283814 20 12.322227 Anserini +test3 Q0 9533420 21 12.256313 Anserini +test3 Q0 6805358 22 12.252753 Anserini +test3 Q0 3391580 23 12.157089 Anserini +test3 Q0 5971483 24 12.151543 Anserini +test3 Q0 1961373 25 12.100876 Anserini +test3 Q0 5128169 26 12.068729 Anserini +test3 Q0 10386680 27 12.048005 Anserini +test3 Q0 3925437 28 12.019830 Anserini +test3 Q0 20731484 29 12.005946 Anserini +test3 Q0 17819011 30 11.976379 Anserini +test30 Q0 367880 1 11.712597 Anserini +test30 Q0 6321529 2 11.632984 Anserini +test30 Q0 367862 3 11.506082 Anserini +test30 Q0 13470925 4 11.292071 Anserini +test30 Q0 6321530 5 11.093597 Anserini +test30 Q0 20718568 6 10.960192 Anserini +test30 Q0 15865409 7 10.950734 Anserini +test30 Q0 163481 8 10.911185 Anserini +test30 Q0 15738598 9 10.883497 Anserini +test30 Q0 9597153 10 10.801153 Anserini +test30 Q0 6545662 11 10.779292 Anserini +test30 Q0 15865401 12 10.749333 Anserini +test30 Q0 9367184 13 10.729867 Anserini +test30 Q0 13470914 14 10.725981 Anserini +test30 Q0 15106291 15 10.725981 Anserini +test30 Q0 4605870 16 10.715982 Anserini +test30 Q0 367879 17 10.688570 Anserini +test30 Q0 4221528 18 10.674602 Anserini +test30 Q0 12668159 19 10.600105 Anserini +test30 Q0 6545655 20 10.560438 Anserini +test30 Q0 6545654 21 10.560438 Anserini +test30 Q0 746926 22 10.530111 Anserini +test30 Q0 163442 23 10.515327 Anserini +test30 Q0 6030523 24 10.507681 Anserini +test30 Q0 11929205 25 10.506739 Anserini +test30 Q0 10013663 26 10.467119 Anserini +test30 Q0 10013665 27 10.467119 Anserini +test30 Q0 4605862 28 10.467119 Anserini +test30 Q0 5449357 29 10.429074 Anserini +test30 Q0 4605876 30 10.419638 Anserini +test300 Q0 10931279 1 14.945662 Anserini +test300 Q0 4240763 2 13.719137 Anserini +test300 Q0 15285575 3 13.059908 Anserini +test300 Q0 4240832 4 12.462926 Anserini +test300 Q0 12541258 5 12.409634 Anserini +test300 Q0 13986886 6 12.407896 Anserini +test300 Q0 19057526 7 12.400887 Anserini +test300 Q0 4240776 8 12.362847 Anserini +test300 Q0 4240760 9 12.362847 Anserini +test300 Q0 20866869 10 12.201274 Anserini +test300 Q0 4622604 11 12.183121 Anserini +test300 Q0 20705759 12 12.103377 Anserini +test300 Q0 19057542 13 12.035728 Anserini +test300 Q0 8145291 14 12.021893 Anserini +test300 Q0 4240744 15 11.898670 Anserini +test300 Q0 20866868 16 11.888007 Anserini +test300 Q0 20702189 17 11.888007 Anserini +test300 Q0 4282328 18 11.879247 Anserini +test300 Q0 10931288 19 11.810040 Anserini +test300 Q0 19057531 20 11.769483 Anserini +test300 Q0 19379006 21 11.741939 Anserini +test300 Q0 19057527 22 11.703594 Anserini +test300 Q0 1488630 23 11.699720 Anserini +test300 Q0 4240797 24 11.697923 Anserini +test300 Q0 19745617 25 11.685559 Anserini +test300 Q0 19057538 26 11.483131 Anserini +test300 Q0 20903442 27 11.445403 Anserini +test300 Q0 18661135 28 11.439415 Anserini +test300 Q0 12541251 29 11.439415 Anserini +test300 Q0 19532591 30 11.408481 Anserini +test3000 Q0 6057380 1 17.515017 Anserini +test3000 Q0 1397505 2 17.337746 Anserini +test3000 Q0 10254834 3 17.300343 Anserini +test3000 Q0 10254873 4 17.222818 Anserini +test3000 Q0 9621008 5 17.200056 Anserini +test3000 Q0 10254866 6 17.129393 Anserini +test3000 Q0 5441479 7 16.909851 Anserini +test3000 Q0 11636630 8 16.827471 Anserini +test3000 Q0 14693504 9 16.603691 Anserini +test3000 Q0 16772661 10 16.541309 Anserini +test3000 Q0 691156 11 16.475178 Anserini +test3000 Q0 15885845 12 16.469284 Anserini +test3000 Q0 15885675 13 16.453222 Anserini +test3000 Q0 6481967 14 16.433052 Anserini +test3000 Q0 6787899 15 16.283377 Anserini +test3000 Q0 15127545 16 16.276356 Anserini +test3000 Q0 11845063 17 16.225929 Anserini +test3000 Q0 15885831 18 16.199554 Anserini +test3000 Q0 2781252 19 16.031429 Anserini +test3000 Q0 7950520 20 16.003630 Anserini +test3000 Q0 18237325 21 15.969103 Anserini +test3000 Q0 6568883 22 15.872144 Anserini +test3000 Q0 7950519 23 15.805805 Anserini +test3000 Q0 4812027 24 15.798897 Anserini +test3000 Q0 15885883 25 15.779606 Anserini +test3000 Q0 6177670 26 15.750931 Anserini +test3000 Q0 15885676 27 15.701425 Anserini +test3000 Q0 15246072 28 15.696901 Anserini +test3000 Q0 691159 29 15.682095 Anserini +test3000 Q0 12067991 30 15.607727 Anserini +test3001 Q0 20831678 1 17.325758 Anserini +test3001 Q0 15622115 2 16.805565 Anserini +test3001 Q0 16560903 3 16.622219 Anserini +test3001 Q0 17229448 4 16.370625 Anserini +test3001 Q0 15622119 5 15.844486 Anserini +test3001 Q0 15622161 6 15.737430 Anserini +test3001 Q0 15622121 7 15.486042 Anserini +test3001 Q0 18177093 8 15.185494 Anserini +test3001 Q0 19638294 9 15.052806 Anserini +test3001 Q0 17991985 10 14.994494 Anserini +test3001 Q0 16560919 11 14.971486 Anserini +test3001 Q0 9617025 12 14.849276 Anserini +test3001 Q0 15622155 13 14.619679 Anserini +test3001 Q0 18613313 14 14.601202 Anserini +test3001 Q0 16967763 15 14.596189 Anserini +test3001 Q0 18177096 16 14.482352 Anserini +test3001 Q0 16234388 17 14.440583 Anserini +test3001 Q0 16693291 18 14.440583 Anserini +test3001 Q0 17991754 19 14.368139 Anserini +test3001 Q0 20380072 20 14.136017 Anserini +test3001 Q0 18613344 21 14.042111 Anserini +test3001 Q0 20356403 22 14.041399 Anserini +test3001 Q0 16967742 23 13.966289 Anserini +test3001 Q0 20864276 24 13.927078 Anserini +test3001 Q0 15622116 25 13.914956 Anserini +test3001 Q0 16967722 26 13.857387 Anserini +test3001 Q0 9617027 27 13.775841 Anserini +test3001 Q0 18177094 28 13.755115 Anserini +test3001 Q0 15622139 29 13.738901 Anserini +test3001 Q0 9616966 30 13.663917 Anserini +test3002 Q0 1370237 1 20.655296 Anserini +test3002 Q0 1370264 2 20.501682 Anserini +test3002 Q0 20992097 3 20.131222 Anserini +test3002 Q0 1655449 4 20.015322 Anserini +test3002 Q0 6623833 5 19.789667 Anserini +test3002 Q0 18303853 6 19.732389 Anserini +test3002 Q0 6566538 7 19.590599 Anserini +test3002 Q0 6623815 8 19.553066 Anserini +test3002 Q0 6566529 9 19.467857 Anserini +test3002 Q0 6135609 10 19.351044 Anserini +test3002 Q0 6135593 11 19.351044 Anserini +test3002 Q0 6623821 12 19.274261 Anserini +test3002 Q0 1655415 13 18.876244 Anserini +test3002 Q0 1370283 14 18.694386 Anserini +test3002 Q0 9052027 15 18.479782 Anserini +test3002 Q0 1370265 16 18.394276 Anserini +test3002 Q0 1370238 17 18.394276 Anserini +test3002 Q0 1655434 18 18.193398 Anserini +test3002 Q0 1370239 19 18.079576 Anserini +test3002 Q0 1655448 20 17.787703 Anserini +test3002 Q0 1370276 21 17.476408 Anserini +test3002 Q0 3423489 22 17.454195 Anserini +test3002 Q0 20035028 23 17.430384 Anserini +test3002 Q0 2894633 24 17.330317 Anserini +test3002 Q0 8825847 25 17.315687 Anserini +test3002 Q0 16965855 26 17.295149 Anserini +test3002 Q0 16543144 27 17.290024 Anserini +test3002 Q0 16543146 28 17.290024 Anserini +test3002 Q0 1370262 29 17.261805 Anserini +test3002 Q0 1073707 30 16.970779 Anserini +test3003 Q0 13940617 1 10.623978 Anserini +test3003 Q0 3161535 2 10.057406 Anserini +test3003 Q0 13940604 3 9.902627 Anserini +test3003 Q0 12002050 4 9.625132 Anserini +test3003 Q0 9726120 5 9.524474 Anserini +test3003 Q0 3161497 6 9.504635 Anserini +test3003 Q0 20493470 7 9.478519 Anserini +test3003 Q0 4639354 8 9.379410 Anserini +test3003 Q0 17930811 9 9.347738 Anserini +test3003 Q0 12011571 10 9.322242 Anserini +test3003 Q0 18017746 11 9.320416 Anserini +test3003 Q0 13536998 12 9.311623 Anserini +test3003 Q0 17930812 13 9.297902 Anserini +test3003 Q0 6843646 14 9.278366 Anserini +test3003 Q0 6843649 15 9.236163 Anserini +test3003 Q0 12605208 16 9.110031 Anserini +test3003 Q0 20493471 17 9.102728 Anserini +test3003 Q0 403056 18 9.063716 Anserini +test3003 Q0 4900333 19 9.051187 Anserini +test3003 Q0 704323 20 8.979522 Anserini +test3003 Q0 19806191 21 8.951374 Anserini +test3003 Q0 16671066 22 8.947253 Anserini +test3003 Q0 533136 23 8.935552 Anserini +test3003 Q0 10785227 24 8.894084 Anserini +test3003 Q0 3161593 25 8.894084 Anserini +test3003 Q0 8140481 26 8.872500 Anserini +test3003 Q0 7307711 27 8.857446 Anserini +test3003 Q0 1984350 28 8.821214 Anserini +test3003 Q0 2269858 29 8.815734 Anserini +test3003 Q0 704330 30 8.797868 Anserini +test3004 Q0 1673593 1 17.791128 Anserini +test3004 Q0 20655034 2 17.412775 Anserini +test3004 Q0 331523 3 17.330179 Anserini +test3004 Q0 331483 4 17.304661 Anserini +test3004 Q0 19148230 5 17.089849 Anserini +test3004 Q0 11447752 6 16.877609 Anserini +test3004 Q0 13691822 7 16.843594 Anserini +test3004 Q0 19148231 8 16.776052 Anserini +test3004 Q0 331484 9 16.604614 Anserini +test3004 Q0 15833681 10 16.553701 Anserini +test3004 Q0 7145810 11 16.303705 Anserini +test3004 Q0 9537489 12 16.262968 Anserini +test3004 Q0 9938604 13 16.240088 Anserini +test3004 Q0 9938610 14 16.240088 Anserini +test3004 Q0 13691850 15 16.227972 Anserini +test3004 Q0 19148228 16 16.051300 Anserini +test3004 Q0 331490 17 16.030540 Anserini +test3004 Q0 20289503 18 15.954535 Anserini +test3004 Q0 331477 19 15.815014 Anserini +test3004 Q0 13691825 20 15.749140 Anserini +test3004 Q0 4949017 21 15.512489 Anserini +test3004 Q0 331492 22 15.505535 Anserini +test3004 Q0 19148232 23 15.503756 Anserini +test3004 Q0 20289502 24 15.485757 Anserini +test3004 Q0 11075168 25 15.456946 Anserini +test3004 Q0 6516564 26 15.425063 Anserini +test3004 Q0 3967137 27 15.370435 Anserini +test3004 Q0 5009781 28 15.327810 Anserini +test3004 Q0 3967149 29 15.326246 Anserini +test3004 Q0 331535 30 15.324452 Anserini +test3005 Q0 13337040 1 13.103215 Anserini +test3005 Q0 19914760 2 12.883134 Anserini +test3005 Q0 19307479 3 12.853295 Anserini +test3005 Q0 14474453 4 12.798265 Anserini +test3005 Q0 4786078 5 12.767846 Anserini +test3005 Q0 5209928 6 12.724189 Anserini +test3005 Q0 11709623 7 12.692891 Anserini +test3005 Q0 19307477 8 12.637192 Anserini +test3005 Q0 14471534 9 12.577292 Anserini +test3005 Q0 6195495 10 12.548731 Anserini +test3005 Q0 11817819 11 12.544128 Anserini +test3005 Q0 10927381 12 12.476613 Anserini +test3005 Q0 7743758 13 12.426491 Anserini +test3005 Q0 11463652 14 12.411733 Anserini +test3005 Q0 7301852 15 12.394141 Anserini +test3005 Q0 19053790 16 12.384958 Anserini +test3005 Q0 3004557 17 12.350245 Anserini +test3005 Q0 19053789 18 12.303645 Anserini +test3005 Q0 17757026 19 12.274293 Anserini +test3005 Q0 19307407 20 12.232403 Anserini +test3005 Q0 16588421 21 12.218533 Anserini +test3005 Q0 8010055 22 12.190883 Anserini +test3005 Q0 6517870 23 12.185062 Anserini +test3005 Q0 14496206 24 12.184571 Anserini +test3005 Q0 1975087 25 12.174663 Anserini +test3005 Q0 16168692 26 12.151464 Anserini +test3005 Q0 4850319 27 12.134305 Anserini +test3005 Q0 13201312 28 12.127912 Anserini +test3005 Q0 10024439 29 12.121286 Anserini +test3005 Q0 15132717 30 12.107761 Anserini +test3006 Q0 20483344 1 16.513145 Anserini +test3006 Q0 18330417 2 15.998053 Anserini +test3006 Q0 8493840 3 15.548512 Anserini +test3006 Q0 18178086 4 15.424232 Anserini +test3006 Q0 17270283 5 14.153301 Anserini +test3006 Q0 8493841 6 14.029039 Anserini +test3006 Q0 13413614 7 14.008765 Anserini +test3006 Q0 8493850 8 13.935887 Anserini +test3006 Q0 20483346 9 13.881454 Anserini +test3006 Q0 17988453 10 13.554935 Anserini +test3006 Q0 16651262 11 13.525328 Anserini +test3006 Q0 17988454 12 13.422609 Anserini +test3006 Q0 18178090 13 13.388597 Anserini +test3006 Q0 16651216 14 13.306142 Anserini +test3006 Q0 7426287 15 13.269826 Anserini +test3006 Q0 19870854 16 13.187938 Anserini +test3006 Q0 285814 17 13.070404 Anserini +test3006 Q0 1664984 18 12.433266 Anserini +test3006 Q0 285832 19 12.352398 Anserini +test3006 Q0 18178087 20 12.351774 Anserini +test3006 Q0 5208421 21 12.306574 Anserini +test3006 Q0 9783843 22 12.306574 Anserini +test3006 Q0 7382268 23 12.219389 Anserini +test3006 Q0 16651244 24 12.208064 Anserini +test3006 Q0 1659518 25 12.201004 Anserini +test3006 Q0 1618456 26 12.175609 Anserini +test3006 Q0 9354647 27 12.168983 Anserini +test3006 Q0 4374005 28 12.093884 Anserini +test3006 Q0 435954 29 12.042542 Anserini +test3006 Q0 16651217 30 11.978276 Anserini +test3007 Q0 18421661 1 25.657858 Anserini +test3007 Q0 18421697 2 24.835428 Anserini +test3007 Q0 6436558 3 24.618933 Anserini +test3007 Q0 20014441 4 23.560421 Anserini +test3007 Q0 20014436 5 23.379536 Anserini +test3007 Q0 18421667 6 22.505533 Anserini +test3007 Q0 18421672 7 22.004219 Anserini +test3007 Q0 18421675 8 21.931486 Anserini +test3007 Q0 546586 9 21.814825 Anserini +test3007 Q0 18421669 10 21.303902 Anserini +test3007 Q0 6436564 11 21.272324 Anserini +test3007 Q0 389141 12 21.112226 Anserini +test3007 Q0 18421682 13 20.911488 Anserini +test3007 Q0 20136268 14 20.842300 Anserini +test3007 Q0 18421681 15 20.786953 Anserini +test3007 Q0 19849349 16 20.735046 Anserini +test3007 Q0 8292676 17 20.735046 Anserini +test3007 Q0 19849350 18 20.735046 Anserini +test3007 Q0 18421663 19 20.693926 Anserini +test3007 Q0 6436561 20 20.611717 Anserini +test3007 Q0 14754316 21 20.459225 Anserini +test3007 Q0 8292658 22 19.758486 Anserini +test3007 Q0 18421666 23 19.661283 Anserini +test3007 Q0 18421664 24 19.052069 Anserini +test3007 Q0 10981414 25 18.831011 Anserini +test3007 Q0 18421673 26 18.763870 Anserini +test3007 Q0 3269340 27 18.074879 Anserini +test3007 Q0 17773938 28 17.886585 Anserini +test3007 Q0 18421668 29 17.710602 Anserini +test3007 Q0 18421665 30 17.601942 Anserini +test3008 Q0 7912772 1 14.229609 Anserini +test3008 Q0 10832395 2 13.928457 Anserini +test3008 Q0 16727604 3 13.620018 Anserini +test3008 Q0 8401825 4 13.614674 Anserini +test3008 Q0 793122 5 13.563361 Anserini +test3008 Q0 16727618 6 13.559366 Anserini +test3008 Q0 6732151 7 13.528322 Anserini +test3008 Q0 11274901 8 13.516055 Anserini +test3008 Q0 793112 9 13.435968 Anserini +test3008 Q0 4864598 10 13.277346 Anserini +test3008 Q0 6031268 11 13.232606 Anserini +test3008 Q0 8401835 12 13.184332 Anserini +test3008 Q0 13884859 13 13.154039 Anserini +test3008 Q0 8401830 14 13.110722 Anserini +test3008 Q0 11439783 15 13.037574 Anserini +test3008 Q0 7707585 16 12.902139 Anserini +test3008 Q0 19562556 17 12.883160 Anserini +test3008 Q0 10832396 18 12.838850 Anserini +test3008 Q0 16727599 19 12.818089 Anserini +test3008 Q0 13391238 20 12.793272 Anserini +test3008 Q0 2230931 21 12.785799 Anserini +test3008 Q0 8401833 22 12.752655 Anserini +test3008 Q0 13884858 23 12.718829 Anserini +test3008 Q0 9982970 24 12.687568 Anserini +test3008 Q0 8401827 25 12.684624 Anserini +test3008 Q0 11439780 26 12.654965 Anserini +test3008 Q0 19405638 27 12.647747 Anserini +test3008 Q0 8401826 28 12.647747 Anserini +test3008 Q0 11439771 29 12.645327 Anserini +test3008 Q0 16727602 30 12.612377 Anserini +test3009 Q0 10897469 1 18.731697 Anserini +test3009 Q0 10897449 2 17.574398 Anserini +test3009 Q0 16514356 3 17.244514 Anserini +test3009 Q0 10897461 4 16.945339 Anserini +test3009 Q0 10897447 5 15.871720 Anserini +test3009 Q0 10897442 6 15.233777 Anserini +test3009 Q0 10897460 7 15.004580 Anserini +test3009 Q0 10897457 8 14.895132 Anserini +test3009 Q0 15844786 9 14.754469 Anserini +test3009 Q0 17593507 10 14.750198 Anserini +test3009 Q0 17210199 11 14.659396 Anserini +test3009 Q0 12506093 12 14.489745 Anserini +test3009 Q0 663583 13 14.483516 Anserini +test3009 Q0 10897438 14 14.378387 Anserini +test3009 Q0 6130775 15 14.205691 Anserini +test3009 Q0 16921080 16 14.194272 Anserini +test3009 Q0 7920603 17 13.981997 Anserini +test3009 Q0 6211914 18 13.926117 Anserini +test3009 Q0 12412510 19 13.875933 Anserini +test3009 Q0 19098006 20 13.873955 Anserini +test3009 Q0 12412507 21 13.733992 Anserini +test3009 Q0 10897435 22 13.529799 Anserini +test3009 Q0 10897436 23 13.438045 Anserini +test3009 Q0 13852045 24 13.421813 Anserini +test3009 Q0 12106816 25 13.398111 Anserini +test3009 Q0 11909174 26 13.397882 Anserini +test3009 Q0 10897458 27 13.372990 Anserini +test3009 Q0 10897456 28 13.292093 Anserini +test3009 Q0 14077787 29 13.102606 Anserini +test3009 Q0 6756037 30 13.073167 Anserini +test301 Q0 8147265 1 8.272041 Anserini +test301 Q0 9208570 2 8.082181 Anserini +test301 Q0 9971538 3 8.062182 Anserini +test301 Q0 11367873 4 8.050238 Anserini +test301 Q0 18240105 5 8.045591 Anserini +test301 Q0 9761789 6 7.986967 Anserini +test301 Q0 8152864 7 7.975964 Anserini +test301 Q0 20937494 8 7.868898 Anserini +test301 Q0 16648918 9 7.843424 Anserini +test301 Q0 8149955 10 7.838418 Anserini +test301 Q0 9224077 11 7.831317 Anserini +test301 Q0 1682532 12 7.804673 Anserini +test301 Q0 15320733 13 7.770505 Anserini +test301 Q0 2296469 14 7.764826 Anserini +test301 Q0 20289916 15 7.744806 Anserini +test301 Q0 15320734 16 7.715254 Anserini +test301 Q0 2742351 17 7.676171 Anserini +test301 Q0 8942009 18 7.676171 Anserini +test301 Q0 19769378 19 7.664438 Anserini +test301 Q0 10858853 20 7.646680 Anserini +test301 Q0 9208571 21 7.633523 Anserini +test301 Q0 13670191 22 7.624438 Anserini +test301 Q0 9430648 23 7.619838 Anserini +test301 Q0 19745115 24 7.568129 Anserini +test301 Q0 13670195 25 7.533249 Anserini +test301 Q0 12300173 26 7.521426 Anserini +test301 Q0 6815753 27 7.486151 Anserini +test301 Q0 19157627 28 7.486151 Anserini +test301 Q0 9120324 29 7.461660 Anserini +test301 Q0 6095209 30 7.461660 Anserini +test3010 Q0 537002 1 13.434875 Anserini +test3010 Q0 13448950 2 13.178433 Anserini +test3010 Q0 273036 3 12.687545 Anserini +test3010 Q0 6120777 4 12.639812 Anserini +test3010 Q0 15983496 5 12.084184 Anserini +test3010 Q0 11003960 6 12.080276 Anserini +test3010 Q0 17821865 7 12.077080 Anserini +test3010 Q0 9045618 8 12.042318 Anserini +test3010 Q0 16087282 9 12.011703 Anserini +test3010 Q0 19771330 10 11.882046 Anserini +test3010 Q0 1210840 11 11.867340 Anserini +test3010 Q0 6139877 12 11.813284 Anserini +test3010 Q0 13448948 13 11.627348 Anserini +test3010 Q0 3759181 14 11.621176 Anserini +test3010 Q0 5334421 15 11.526558 Anserini +test3010 Q0 1340240 16 11.492558 Anserini +test3010 Q0 7244895 17 11.436082 Anserini +test3010 Q0 5247468 18 11.425788 Anserini +test3010 Q0 10138121 19 11.365977 Anserini +test3010 Q0 842169 20 11.365222 Anserini +test3010 Q0 3061334 21 11.296966 Anserini +test3010 Q0 10138127 22 11.281315 Anserini +test3010 Q0 11779305 23 11.182899 Anserini +test3010 Q0 4107115 24 11.165545 Anserini +test3010 Q0 19782630 25 11.147241 Anserini +test3010 Q0 11362558 26 11.119766 Anserini +test3010 Q0 11906481 27 11.097425 Anserini +test3010 Q0 9471778 28 11.071865 Anserini +test3010 Q0 13327272 29 11.052913 Anserini +test3010 Q0 11586913 30 11.041042 Anserini +test3011 Q0 2164264 1 17.045525 Anserini +test3011 Q0 12037322 2 16.928823 Anserini +test3011 Q0 14943093 3 16.329662 Anserini +test3011 Q0 18123776 4 16.296886 Anserini +test3011 Q0 18113769 5 16.296373 Anserini +test3011 Q0 18118392 6 16.186419 Anserini +test3011 Q0 5522853 7 16.113230 Anserini +test3011 Q0 18431603 8 15.976682 Anserini +test3011 Q0 18118405 9 15.946795 Anserini +test3011 Q0 18115266 10 15.931075 Anserini +test3011 Q0 312077 11 15.925995 Anserini +test3011 Q0 18115316 12 15.832863 Anserini +test3011 Q0 12281145 13 15.786743 Anserini +test3011 Q0 18115323 14 15.727231 Anserini +test3011 Q0 18118384 15 15.696587 Anserini +test3011 Q0 18132414 16 15.633435 Anserini +test3011 Q0 18115247 17 15.600767 Anserini +test3011 Q0 18118358 18 15.541161 Anserini +test3011 Q0 18659581 19 15.497286 Anserini +test3011 Q0 18132402 20 15.449994 Anserini +test3011 Q0 18659582 21 15.408019 Anserini +test3011 Q0 18118440 22 15.387510 Anserini +test3011 Q0 18115303 23 15.387510 Anserini +test3011 Q0 18113767 24 15.374136 Anserini +test3011 Q0 14964768 25 15.342173 Anserini +test3011 Q0 18123774 26 15.310587 Anserini +test3011 Q0 16203665 27 15.309862 Anserini +test3011 Q0 18565436 28 15.289204 Anserini +test3011 Q0 20896963 29 15.235134 Anserini +test3011 Q0 18115294 30 15.194593 Anserini +test3012 Q0 18133445 1 11.268739 Anserini +test3012 Q0 17670689 2 9.914956 Anserini +test3012 Q0 11422268 3 9.755569 Anserini +test3012 Q0 426520 4 9.741266 Anserini +test3012 Q0 4250406 5 9.703589 Anserini +test3012 Q0 15890007 6 9.645676 Anserini +test3012 Q0 10827255 7 9.588875 Anserini +test3012 Q0 9362332 8 9.571209 Anserini +test3012 Q0 12217911 9 9.358769 Anserini +test3012 Q0 17661098 10 9.345551 Anserini +test3012 Q0 13886796 11 9.304621 Anserini +test3012 Q0 13913524 12 9.291410 Anserini +test3012 Q0 901626 13 9.212575 Anserini +test3012 Q0 5140100 14 9.165314 Anserini +test3012 Q0 12713966 15 9.157674 Anserini +test3012 Q0 16757378 16 9.157674 Anserini +test3012 Q0 6527407 17 9.152777 Anserini +test3012 Q0 19066560 18 9.132333 Anserini +test3012 Q0 3168938 19 9.045199 Anserini +test3012 Q0 15394746 20 9.027519 Anserini +test3012 Q0 953625 21 8.979935 Anserini +test3012 Q0 12077279 22 8.958427 Anserini +test3012 Q0 4818067 23 8.938559 Anserini +test3012 Q0 2799637 24 8.933495 Anserini +test3012 Q0 19244700 25 8.927972 Anserini +test3012 Q0 14215329 26 8.915849 Anserini +test3012 Q0 16147602 27 8.878796 Anserini +test3012 Q0 2949403 28 8.877092 Anserini +test3012 Q0 16392936 29 8.828286 Anserini +test3012 Q0 9706426 30 8.796169 Anserini +test3013 Q0 13535887 1 12.792793 Anserini +test3013 Q0 15721808 2 12.507455 Anserini +test3013 Q0 18788079 3 12.311808 Anserini +test3013 Q0 10955325 4 12.061724 Anserini +test3013 Q0 13535889 5 12.015381 Anserini +test3013 Q0 327886 6 11.972664 Anserini +test3013 Q0 777379 7 11.968184 Anserini +test3013 Q0 15324154 8 11.923514 Anserini +test3013 Q0 769844 9 11.919630 Anserini +test3013 Q0 18796882 10 11.828108 Anserini +test3013 Q0 18796876 11 11.828108 Anserini +test3013 Q0 2072916 12 11.782972 Anserini +test3013 Q0 20075835 13 11.693289 Anserini +test3013 Q0 15906527 14 11.647757 Anserini +test3013 Q0 6898682 15 11.642097 Anserini +test3013 Q0 2181860 16 11.622275 Anserini +test3013 Q0 20075815 17 11.620728 Anserini +test3013 Q0 9090869 18 11.456874 Anserini +test3013 Q0 7972626 19 11.364212 Anserini +test3013 Q0 13527739 20 11.263118 Anserini +test3013 Q0 13527735 21 11.263118 Anserini +test3013 Q0 12386362 22 11.261436 Anserini +test3013 Q0 618552 23 11.241777 Anserini +test3013 Q0 194638 24 11.201775 Anserini +test3013 Q0 949517 25 11.160051 Anserini +test3013 Q0 6231449 26 11.140443 Anserini +test3013 Q0 13589856 27 11.063711 Anserini +test3013 Q0 3979733 28 11.060720 Anserini +test3013 Q0 7149506 29 11.052030 Anserini +test3013 Q0 7149507 30 11.052030 Anserini +test3014 Q0 15190135 1 11.819298 Anserini +test3014 Q0 15190162 2 11.766338 Anserini +test3014 Q0 13075608 3 11.332621 Anserini +test3014 Q0 11632357 4 11.321724 Anserini +test3014 Q0 5637372 5 11.294412 Anserini +test3014 Q0 4676969 6 11.233747 Anserini +test3014 Q0 11913932 7 11.224448 Anserini +test3014 Q0 664193 8 11.155670 Anserini +test3014 Q0 15314199 9 11.089104 Anserini +test3014 Q0 1248699 10 11.024723 Anserini +test3014 Q0 18923768 11 10.800217 Anserini +test3014 Q0 17223513 12 10.754019 Anserini +test3014 Q0 19389485 13 10.690813 Anserini +test3014 Q0 844759 14 10.648277 Anserini +test3014 Q0 2944938 15 10.636254 Anserini +test3014 Q0 362627 16 10.632866 Anserini +test3014 Q0 10342713 17 10.631056 Anserini +test3014 Q0 13008297 18 10.370847 Anserini +test3014 Q0 18530984 19 10.335315 Anserini +test3014 Q0 18530986 20 10.335315 Anserini +test3014 Q0 12881261 21 10.321964 Anserini +test3014 Q0 7030820 22 10.280629 Anserini +test3014 Q0 18828226 23 10.235292 Anserini +test3014 Q0 6337860 24 10.234228 Anserini +test3014 Q0 8898306 25 10.234228 Anserini +test3014 Q0 974642 26 10.229005 Anserini +test3014 Q0 3118205 27 10.219799 Anserini +test3014 Q0 19720029 28 10.198318 Anserini +test3014 Q0 15015324 29 10.165184 Anserini +test3014 Q0 9596041 30 10.109044 Anserini +test3015 Q0 974049 1 14.661491 Anserini +test3015 Q0 15865610 2 13.999644 Anserini +test3015 Q0 17002603 3 13.934601 Anserini +test3015 Q0 974036 4 13.903475 Anserini +test3015 Q0 974056 5 13.780023 Anserini +test3015 Q0 12473998 6 13.497549 Anserini +test3015 Q0 5286518 7 13.338993 Anserini +test3015 Q0 15865609 8 13.278045 Anserini +test3015 Q0 974044 9 13.061275 Anserini +test3015 Q0 6235429 10 13.039131 Anserini +test3015 Q0 7171959 11 13.006701 Anserini +test3015 Q0 974041 12 12.955781 Anserini +test3015 Q0 974039 13 12.948135 Anserini +test3015 Q0 11521048 14 12.933943 Anserini +test3015 Q0 974052 15 12.784871 Anserini +test3015 Q0 12623682 16 12.748078 Anserini +test3015 Q0 8280638 17 12.736199 Anserini +test3015 Q0 14928786 18 12.722389 Anserini +test3015 Q0 12623686 19 12.713456 Anserini +test3015 Q0 14643115 20 12.645662 Anserini +test3015 Q0 2064729 21 12.644106 Anserini +test3015 Q0 974045 22 12.634964 Anserini +test3015 Q0 10388565 23 12.620068 Anserini +test3015 Q0 1584547 24 12.559624 Anserini +test3015 Q0 17475201 25 12.553088 Anserini +test3015 Q0 2812924 26 12.536010 Anserini +test3015 Q0 13846914 27 12.498279 Anserini +test3015 Q0 13362479 28 12.496977 Anserini +test3015 Q0 1730594 29 12.463476 Anserini +test3015 Q0 974054 30 12.371813 Anserini +test3016 Q0 689861 1 20.259317 Anserini +test3016 Q0 15008696 2 20.183146 Anserini +test3016 Q0 15008699 3 20.183146 Anserini +test3016 Q0 689916 4 19.796446 Anserini +test3016 Q0 11886254 5 19.314337 Anserini +test3016 Q0 7840439 6 18.872982 Anserini +test3016 Q0 10586245 7 18.731100 Anserini +test3016 Q0 3038886 8 18.703514 Anserini +test3016 Q0 3038887 9 18.576416 Anserini +test3016 Q0 689873 10 18.439466 Anserini +test3016 Q0 854786 11 18.346390 Anserini +test3016 Q0 14498716 12 18.203478 Anserini +test3016 Q0 20524813 13 18.061607 Anserini +test3016 Q0 14498714 14 18.056089 Anserini +test3016 Q0 10584994 15 18.053757 Anserini +test3016 Q0 12900627 16 18.042814 Anserini +test3016 Q0 8796691 17 18.016068 Anserini +test3016 Q0 8796689 18 18.016068 Anserini +test3016 Q0 15123045 19 17.975378 Anserini +test3016 Q0 12573978 20 17.921047 Anserini +test3016 Q0 8688359 21 17.853285 Anserini +test3016 Q0 10586246 22 17.786331 Anserini +test3016 Q0 17670423 23 17.769932 Anserini +test3016 Q0 17670451 24 17.769932 Anserini +test3016 Q0 17615344 25 17.642487 Anserini +test3016 Q0 14095988 26 17.553200 Anserini +test3016 Q0 16301946 27 17.542192 Anserini +test3016 Q0 8688365 28 17.518404 Anserini +test3016 Q0 18927207 29 17.504938 Anserini +test3016 Q0 12900625 30 17.481131 Anserini +test3017 Q0 3200082 1 18.538170 Anserini +test3017 Q0 394171 2 17.017750 Anserini +test3017 Q0 17473835 3 16.643366 Anserini +test3017 Q0 8915769 4 16.492567 Anserini +test3017 Q0 2722709 5 16.370447 Anserini +test3017 Q0 9920646 6 15.809788 Anserini +test3017 Q0 16905595 7 15.765841 Anserini +test3017 Q0 394934 8 15.752846 Anserini +test3017 Q0 8915770 9 15.634105 Anserini +test3017 Q0 9937939 10 15.569855 Anserini +test3017 Q0 393968 11 15.527574 Anserini +test3017 Q0 7430585 12 15.509658 Anserini +test3017 Q0 393896 13 15.494411 Anserini +test3017 Q0 1996289 14 15.338712 Anserini +test3017 Q0 394722 15 15.253941 Anserini +test3017 Q0 14383345 16 15.225471 Anserini +test3017 Q0 3366226 17 15.219458 Anserini +test3017 Q0 394043 18 15.192296 Anserini +test3017 Q0 3000579 19 15.163873 Anserini +test3017 Q0 394446 20 15.060472 Anserini +test3017 Q0 3200169 21 15.034326 Anserini +test3017 Q0 16905591 22 14.945246 Anserini +test3017 Q0 7167385 23 14.935771 Anserini +test3017 Q0 394022 24 14.927039 Anserini +test3017 Q0 376012 25 14.923549 Anserini +test3017 Q0 11856838 26 14.873295 Anserini +test3017 Q0 3366225 27 14.869873 Anserini +test3017 Q0 2515150 28 14.867743 Anserini +test3017 Q0 20917219 29 14.856785 Anserini +test3017 Q0 4221192 30 14.850110 Anserini +test3018 Q0 12626973 1 15.853609 Anserini +test3018 Q0 3489725 2 14.910307 Anserini +test3018 Q0 3090093 3 14.853778 Anserini +test3018 Q0 19229260 4 14.369418 Anserini +test3018 Q0 20882152 5 14.299420 Anserini +test3018 Q0 3504079 6 14.186592 Anserini +test3018 Q0 3090094 7 14.070615 Anserini +test3018 Q0 5057572 8 14.029545 Anserini +test3018 Q0 13817008 9 13.846727 Anserini +test3018 Q0 4973159 10 13.549778 Anserini +test3018 Q0 2173672 11 13.509395 Anserini +test3018 Q0 3504082 12 13.404438 Anserini +test3018 Q0 3504081 13 13.250322 Anserini +test3018 Q0 18408050 14 13.133356 Anserini +test3018 Q0 5153869 15 13.121746 Anserini +test3018 Q0 6515270 16 12.992410 Anserini +test3018 Q0 20411746 17 12.955154 Anserini +test3018 Q0 2385055 18 12.906645 Anserini +test3018 Q0 5437391 19 12.835041 Anserini +test3018 Q0 11552526 20 12.831976 Anserini +test3018 Q0 7443286 21 12.790121 Anserini +test3018 Q0 20863552 22 12.711134 Anserini +test3018 Q0 3183671 23 12.697944 Anserini +test3018 Q0 662424 24 12.677365 Anserini +test3018 Q0 20221884 25 12.660379 Anserini +test3018 Q0 15911012 26 12.642451 Anserini +test3018 Q0 10035276 27 12.586433 Anserini +test3018 Q0 11913091 28 12.580843 Anserini +test3018 Q0 17910193 29 12.545959 Anserini +test3018 Q0 19229272 30 12.542345 Anserini +test3019 Q0 7297817 1 12.559694 Anserini +test3019 Q0 18546552 2 12.274881 Anserini +test3019 Q0 16222351 3 11.948219 Anserini +test3019 Q0 15781721 4 11.884606 Anserini +test3019 Q0 7297819 5 11.774690 Anserini +test3019 Q0 15938168 6 11.750747 Anserini +test3019 Q0 6577705 7 11.655660 Anserini +test3019 Q0 10632718 8 11.598841 Anserini +test3019 Q0 6104352 9 11.475208 Anserini +test3019 Q0 15100975 10 11.472299 Anserini +test3019 Q0 18440673 11 11.469929 Anserini +test3019 Q0 8435846 12 11.448495 Anserini +test3019 Q0 1876137 13 11.433506 Anserini +test3019 Q0 852218 14 11.422454 Anserini +test3019 Q0 5354660 15 11.402700 Anserini +test3019 Q0 791288 16 11.398950 Anserini +test3019 Q0 15506985 17 11.207730 Anserini +test3019 Q0 6525076 18 11.147766 Anserini +test3019 Q0 15100971 19 11.142853 Anserini +test3019 Q0 11668132 20 11.125257 Anserini +test3019 Q0 1991965 21 11.026377 Anserini +test3019 Q0 3952223 22 11.004057 Anserini +test3019 Q0 18851982 23 11.004057 Anserini +test3019 Q0 18478412 24 10.985682 Anserini +test3019 Q0 2641850 25 10.909395 Anserini +test3019 Q0 14583836 26 10.895172 Anserini +test3019 Q0 15664180 27 10.830840 Anserini +test3019 Q0 8420423 28 10.781717 Anserini +test3019 Q0 7851465 29 10.768870 Anserini +test3019 Q0 15529452 30 10.761210 Anserini +test302 Q0 13729606 1 10.781622 Anserini +test302 Q0 8683208 2 10.409990 Anserini +test302 Q0 18851997 3 10.102151 Anserini +test302 Q0 18962179 4 9.878147 Anserini +test302 Q0 8683221 5 9.861455 Anserini +test302 Q0 8857861 6 9.747248 Anserini +test302 Q0 20785133 7 9.664608 Anserini +test302 Q0 14921062 8 9.627056 Anserini +test302 Q0 14717940 9 9.559780 Anserini +test302 Q0 10978913 10 9.348184 Anserini +test302 Q0 12141447 11 9.307211 Anserini +test302 Q0 18345798 12 9.296177 Anserini +test302 Q0 19709368 13 9.296177 Anserini +test302 Q0 8683187 14 9.256189 Anserini +test302 Q0 18345799 15 9.048037 Anserini +test302 Q0 17158283 16 9.004301 Anserini +test302 Q0 8683192 17 8.866772 Anserini +test302 Q0 14375199 18 8.855370 Anserini +test302 Q0 3718389 19 8.831305 Anserini +test302 Q0 20979933 20 8.827360 Anserini +test302 Q0 19021851 21 8.782543 Anserini +test302 Q0 19561977 22 8.750001 Anserini +test302 Q0 12034906 23 8.730700 Anserini +test302 Q0 14326759 24 8.714745 Anserini +test302 Q0 1817197 25 8.710994 Anserini +test302 Q0 12084566 26 8.645652 Anserini +test302 Q0 14375212 27 8.645652 Anserini +test302 Q0 13743170 28 8.626932 Anserini +test302 Q0 18383269 29 8.623240 Anserini +test302 Q0 19021832 30 8.623240 Anserini +test3020 Q0 20326864 1 9.996220 Anserini +test3020 Q0 20767864 2 9.895928 Anserini +test3020 Q0 17498022 3 9.537182 Anserini +test3020 Q0 2510843 4 9.500509 Anserini +test3020 Q0 7656633 5 9.330936 Anserini +test3020 Q0 4262017 6 9.263332 Anserini +test3020 Q0 15061633 7 9.182768 Anserini +test3020 Q0 15511693 8 9.078006 Anserini +test3020 Q0 20820720 9 9.040662 Anserini +test3020 Q0 3222029 10 9.035110 Anserini +test3020 Q0 7764222 11 9.023003 Anserini +test3020 Q0 626237 12 8.990454 Anserini +test3020 Q0 8811905 13 8.965241 Anserini +test3020 Q0 17498023 14 8.938943 Anserini +test3020 Q0 1090859 15 8.912053 Anserini +test3020 Q0 4975417 16 8.825127 Anserini +test3020 Q0 11597029 17 8.819171 Anserini +test3020 Q0 8787475 18 8.775322 Anserini +test3020 Q0 4324119 19 8.772222 Anserini +test3020 Q0 13350833 20 8.749125 Anserini +test3020 Q0 17206151 21 8.736799 Anserini +test3020 Q0 9413169 22 8.717238 Anserini +test3020 Q0 8430465 23 8.653873 Anserini +test3020 Q0 19416402 24 8.653873 Anserini +test3020 Q0 2665892 25 8.649363 Anserini +test3020 Q0 9698794 26 8.608538 Anserini +test3020 Q0 2203283 27 8.595724 Anserini +test3020 Q0 5779018 28 8.559844 Anserini +test3020 Q0 11690019 29 8.538401 Anserini +test3020 Q0 14734153 30 8.534308 Anserini +test3021 Q0 3786534 1 10.419161 Anserini +test3021 Q0 5496086 2 10.182176 Anserini +test3021 Q0 2095248 3 10.060178 Anserini +test3021 Q0 3926520 4 9.983525 Anserini +test3021 Q0 10347819 5 9.858157 Anserini +test3021 Q0 17904273 6 9.771094 Anserini +test3021 Q0 2095225 7 9.575975 Anserini +test3021 Q0 11775313 8 9.528363 Anserini +test3021 Q0 1527962 9 9.525398 Anserini +test3021 Q0 11383478 10 9.353050 Anserini +test3021 Q0 4065161 11 9.275100 Anserini +test3021 Q0 2078378 12 9.272060 Anserini +test3021 Q0 1287388 13 9.268911 Anserini +test3021 Q0 20245264 14 9.196558 Anserini +test3021 Q0 8554969 15 9.106364 Anserini +test3021 Q0 527506 16 9.104314 Anserini +test3021 Q0 2095251 17 9.071326 Anserini +test3021 Q0 11422582 18 9.067462 Anserini +test3021 Q0 65706 19 9.024645 Anserini +test3021 Q0 326723 20 9.020726 Anserini +test3021 Q0 1542272 21 8.992878 Anserini +test3021 Q0 12363276 22 8.984756 Anserini +test3021 Q0 16889805 23 8.984756 Anserini +test3021 Q0 2623438 24 8.975929 Anserini +test3021 Q0 20708365 25 8.940571 Anserini +test3021 Q0 10028561 26 8.933298 Anserini +test3021 Q0 19258994 27 8.929124 Anserini +test3021 Q0 434510 28 8.865645 Anserini +test3021 Q0 408573 29 8.860855 Anserini +test3021 Q0 2767548 30 8.806574 Anserini +test3022 Q0 18644812 1 14.879060 Anserini +test3022 Q0 18644773 2 14.666756 Anserini +test3022 Q0 18644772 3 14.109426 Anserini +test3022 Q0 19570019 4 13.549899 Anserini +test3022 Q0 336572 5 12.533169 Anserini +test3022 Q0 18644804 6 12.415518 Anserini +test3022 Q0 18644808 7 12.033291 Anserini +test3022 Q0 18644807 8 11.838312 Anserini +test3022 Q0 9503162 9 11.752708 Anserini +test3022 Q0 18644775 10 11.711685 Anserini +test3022 Q0 18644784 11 11.664290 Anserini +test3022 Q0 336560 12 11.644903 Anserini +test3022 Q0 18644811 13 11.579426 Anserini +test3022 Q0 18644774 14 11.495942 Anserini +test3022 Q0 18644783 15 11.466587 Anserini +test3022 Q0 336562 16 11.297527 Anserini +test3022 Q0 18644793 17 11.292837 Anserini +test3022 Q0 18644805 18 11.130630 Anserini +test3022 Q0 18644786 19 10.558870 Anserini +test3022 Q0 18644782 20 10.295131 Anserini +test3022 Q0 19570020 21 9.533464 Anserini +test3022 Q0 18644803 22 9.426110 Anserini +test3022 Q0 6864516 23 9.330610 Anserini +test3022 Q0 6326848 24 9.330610 Anserini +test3022 Q0 9503158 25 9.330610 Anserini +test3022 Q0 9503163 26 9.330610 Anserini +test3022 Q0 3080826 27 9.321869 Anserini +test3022 Q0 18644798 28 9.232387 Anserini +test3022 Q0 3072487 29 9.136209 Anserini +test3022 Q0 5471842 30 9.106071 Anserini +test3023 Q0 17967565 1 21.556774 Anserini +test3023 Q0 14263615 2 17.974144 Anserini +test3023 Q0 14424939 3 16.563898 Anserini +test3023 Q0 16329800 4 15.942127 Anserini +test3023 Q0 13303548 5 15.895192 Anserini +test3023 Q0 8244367 6 15.754959 Anserini +test3023 Q0 19627222 7 15.378653 Anserini +test3023 Q0 8244369 8 15.219433 Anserini +test3023 Q0 14424942 9 15.170303 Anserini +test3023 Q0 656332 10 14.869717 Anserini +test3023 Q0 17967048 11 14.779119 Anserini +test3023 Q0 309611 12 14.743437 Anserini +test3023 Q0 482232 13 14.593443 Anserini +test3023 Q0 482274 14 13.993286 Anserini +test3023 Q0 17967566 15 13.916845 Anserini +test3023 Q0 482280 16 13.864380 Anserini +test3023 Q0 14424959 17 13.860615 Anserini +test3023 Q0 482292 18 13.798243 Anserini +test3023 Q0 14424958 19 13.745317 Anserini +test3023 Q0 11711465 20 13.616821 Anserini +test3023 Q0 14424954 21 13.414534 Anserini +test3023 Q0 17545321 22 13.393391 Anserini +test3023 Q0 2539130 23 13.380553 Anserini +test3023 Q0 17545275 24 13.344354 Anserini +test3023 Q0 17965920 25 13.255779 Anserini +test3023 Q0 18197492 26 13.136863 Anserini +test3023 Q0 17886577 27 13.135382 Anserini +test3023 Q0 14424944 28 13.120626 Anserini +test3023 Q0 5828537 29 13.118858 Anserini +test3023 Q0 10529896 30 13.071137 Anserini +test3024 Q0 648561 1 11.875028 Anserini +test3024 Q0 15478280 2 11.569662 Anserini +test3024 Q0 11360957 3 11.148671 Anserini +test3024 Q0 14213620 4 10.943072 Anserini +test3024 Q0 16439374 5 10.557070 Anserini +test3024 Q0 5359667 6 10.544994 Anserini +test3024 Q0 16738380 7 10.513083 Anserini +test3024 Q0 16738385 8 10.507704 Anserini +test3024 Q0 13765883 9 10.297421 Anserini +test3024 Q0 1186570 10 10.270346 Anserini +test3024 Q0 10608641 11 10.170558 Anserini +test3024 Q0 8530127 12 10.167593 Anserini +test3024 Q0 4531731 13 10.162635 Anserini +test3024 Q0 1027865 14 10.123136 Anserini +test3024 Q0 16738382 15 10.096317 Anserini +test3024 Q0 5207027 16 10.053145 Anserini +test3024 Q0 15715289 17 9.984379 Anserini +test3024 Q0 15321427 18 9.866283 Anserini +test3024 Q0 3994219 19 9.855099 Anserini +test3024 Q0 8064136 20 9.795238 Anserini +test3024 Q0 9794507 21 9.794065 Anserini +test3024 Q0 15531582 22 9.779826 Anserini +test3024 Q0 14580413 23 9.753747 Anserini +test3024 Q0 19359520 24 9.729150 Anserini +test3024 Q0 15531578 25 9.684031 Anserini +test3024 Q0 6252079 26 9.677945 Anserini +test3024 Q0 5207035 27 9.621294 Anserini +test3024 Q0 8267723 28 9.589469 Anserini +test3024 Q0 16000247 29 9.587737 Anserini +test3024 Q0 13859132 30 9.563243 Anserini +test3025 Q0 16968622 1 11.435647 Anserini +test3025 Q0 15996977 2 10.922249 Anserini +test3025 Q0 20859195 3 10.828285 Anserini +test3025 Q0 9296123 4 10.703925 Anserini +test3025 Q0 9296126 5 10.703925 Anserini +test3025 Q0 16968617 6 10.619864 Anserini +test3025 Q0 11704053 7 10.521715 Anserini +test3025 Q0 16968615 8 10.117504 Anserini +test3025 Q0 20859199 9 10.114361 Anserini +test3025 Q0 16966507 10 10.114361 Anserini +test3025 Q0 8616594 11 10.035049 Anserini +test3025 Q0 14992496 12 9.985505 Anserini +test3025 Q0 10954522 13 9.964811 Anserini +test3025 Q0 7158989 14 9.934742 Anserini +test3025 Q0 12696101 15 9.901852 Anserini +test3025 Q0 15623820 16 9.885321 Anserini +test3025 Q0 7159311 17 9.820261 Anserini +test3025 Q0 16574195 18 9.799918 Anserini +test3025 Q0 15087812 19 9.792212 Anserini +test3025 Q0 7758919 20 9.770409 Anserini +test3025 Q0 7159326 21 9.748271 Anserini +test3025 Q0 9169851 22 9.743744 Anserini +test3025 Q0 13034475 23 9.665246 Anserini +test3025 Q0 8297833 24 9.640914 Anserini +test3025 Q0 20756613 25 9.563587 Anserini +test3025 Q0 11882708 26 9.507180 Anserini +test3025 Q0 12975769 27 9.500486 Anserini +test3025 Q0 13928895 28 9.429239 Anserini +test3025 Q0 11168591 29 9.427427 Anserini +test3025 Q0 17128016 30 9.385819 Anserini +test3026 Q0 16542864 1 16.146587 Anserini +test3026 Q0 12731985 2 15.538013 Anserini +test3026 Q0 2447069 3 14.609873 Anserini +test3026 Q0 18729438 4 14.328016 Anserini +test3026 Q0 12731966 5 14.173040 Anserini +test3026 Q0 610870 6 14.159232 Anserini +test3026 Q0 11713127 7 13.427267 Anserini +test3026 Q0 12731973 8 13.427267 Anserini +test3026 Q0 12731970 9 13.397552 Anserini +test3026 Q0 20628887 10 13.349908 Anserini +test3026 Q0 13299563 11 13.201323 Anserini +test3026 Q0 3435041 12 12.996374 Anserini +test3026 Q0 12731995 13 12.992056 Anserini +test3026 Q0 13299562 14 12.968659 Anserini +test3026 Q0 12731982 15 12.968659 Anserini +test3026 Q0 18729444 16 12.922104 Anserini +test3026 Q0 12731953 17 12.884317 Anserini +test3026 Q0 16036466 18 12.858128 Anserini +test3026 Q0 12731971 19 12.857957 Anserini +test3026 Q0 16036465 20 12.831204 Anserini +test3026 Q0 12731951 21 12.763658 Anserini +test3026 Q0 10616079 22 12.649776 Anserini +test3026 Q0 12731976 23 12.629474 Anserini +test3026 Q0 16843337 24 12.592743 Anserini +test3026 Q0 10616076 25 12.544442 Anserini +test3026 Q0 10616074 26 12.536727 Anserini +test3026 Q0 13299551 27 12.480967 Anserini +test3026 Q0 12731975 28 12.373910 Anserini +test3026 Q0 1650122 29 12.367743 Anserini +test3026 Q0 18729446 30 12.318978 Anserini +test3027 Q0 19240720 1 12.339989 Anserini +test3027 Q0 18424909 2 11.499561 Anserini +test3027 Q0 822278 3 11.016172 Anserini +test3027 Q0 10479412 4 10.753819 Anserini +test3027 Q0 11712809 5 10.582852 Anserini +test3027 Q0 3679246 6 10.434258 Anserini +test3027 Q0 3367698 7 10.413840 Anserini +test3027 Q0 7911004 8 10.364185 Anserini +test3027 Q0 1710641 9 10.294006 Anserini +test3027 Q0 1716833 10 10.256993 Anserini +test3027 Q0 8253134 11 10.222612 Anserini +test3027 Q0 18424920 12 10.199289 Anserini +test3027 Q0 13122841 13 10.192782 Anserini +test3027 Q0 7466975 14 10.181808 Anserini +test3027 Q0 2610305 15 10.154131 Anserini +test3027 Q0 8253131 16 10.142121 Anserini +test3027 Q0 18424897 17 10.091676 Anserini +test3027 Q0 6227880 18 10.082342 Anserini +test3027 Q0 1405885 19 10.044438 Anserini +test3027 Q0 1174178 20 10.039106 Anserini +test3027 Q0 12229695 21 10.031431 Anserini +test3027 Q0 6606409 22 10.020275 Anserini +test3027 Q0 8271880 23 9.967185 Anserini +test3027 Q0 5021 24 9.890411 Anserini +test3027 Q0 5861252 25 9.885716 Anserini +test3027 Q0 5459311 26 9.885716 Anserini +test3027 Q0 14596540 27 9.872512 Anserini +test3027 Q0 19356160 28 9.849596 Anserini +test3027 Q0 17901158 29 9.848433 Anserini +test3027 Q0 17481962 30 9.791624 Anserini +test3028 Q0 3273477 1 17.757345 Anserini +test3028 Q0 3646520 2 16.688078 Anserini +test3028 Q0 1174033 3 16.512402 Anserini +test3028 Q0 3273474 4 16.235340 Anserini +test3028 Q0 3273484 5 15.975988 Anserini +test3028 Q0 3273489 6 15.775410 Anserini +test3028 Q0 3273478 7 15.019381 Anserini +test3028 Q0 3273479 8 14.888203 Anserini +test3028 Q0 3273482 9 14.715372 Anserini +test3028 Q0 17342389 10 14.599997 Anserini +test3028 Q0 18212043 11 14.260861 Anserini +test3028 Q0 3273475 12 14.166367 Anserini +test3028 Q0 13406750 13 13.993598 Anserini +test3028 Q0 19260048 14 13.846212 Anserini +test3028 Q0 15048116 15 13.756530 Anserini +test3028 Q0 19260052 16 13.689913 Anserini +test3028 Q0 14261684 17 13.626546 Anserini +test3028 Q0 12605000 18 13.535591 Anserini +test3028 Q0 13917108 19 13.535591 Anserini +test3028 Q0 12604999 20 13.535591 Anserini +test3028 Q0 3273485 21 13.523199 Anserini +test3028 Q0 13008461 22 13.513878 Anserini +test3028 Q0 3273480 23 13.469899 Anserini +test3028 Q0 13917107 24 13.115019 Anserini +test3028 Q0 11588354 25 13.088275 Anserini +test3028 Q0 11978746 26 12.877895 Anserini +test3028 Q0 9254241 27 12.772093 Anserini +test3028 Q0 1021869 28 12.764807 Anserini +test3028 Q0 3273476 29 12.757154 Anserini +test3028 Q0 13591824 30 12.613580 Anserini +test3029 Q0 16557207 1 17.152491 Anserini +test3029 Q0 12855534 2 16.945776 Anserini +test3029 Q0 10248545 3 16.679825 Anserini +test3029 Q0 10248571 4 16.492079 Anserini +test3029 Q0 8161705 5 16.383635 Anserini +test3029 Q0 10248593 6 16.357086 Anserini +test3029 Q0 10248570 7 15.991656 Anserini +test3029 Q0 12545480 8 15.971121 Anserini +test3029 Q0 14572615 9 15.913297 Anserini +test3029 Q0 16062974 10 15.881024 Anserini +test3029 Q0 9878555 11 15.869480 Anserini +test3029 Q0 16043807 12 15.329343 Anserini +test3029 Q0 3282133 13 15.326885 Anserini +test3029 Q0 19233561 14 15.159998 Anserini +test3029 Q0 7302480 15 15.077169 Anserini +test3029 Q0 17993781 16 15.009198 Anserini +test3029 Q0 16043806 17 14.529163 Anserini +test3029 Q0 5645491 18 14.461428 Anserini +test3029 Q0 48718 19 14.443625 Anserini +test3029 Q0 8161704 20 14.398020 Anserini +test3029 Q0 12545479 21 14.357431 Anserini +test3029 Q0 18354825 22 14.314318 Anserini +test3029 Q0 14852804 23 14.212935 Anserini +test3029 Q0 6120132 24 14.148904 Anserini +test3029 Q0 20057400 25 14.044492 Anserini +test3029 Q0 18354828 26 14.003686 Anserini +test3029 Q0 17988836 27 13.896395 Anserini +test3029 Q0 10850204 28 13.882017 Anserini +test3029 Q0 6120153 29 13.825054 Anserini +test3029 Q0 5104182 30 13.817927 Anserini +test303 Q0 337382 1 12.143042 Anserini +test303 Q0 337385 2 12.127359 Anserini +test303 Q0 11696368 3 11.843546 Anserini +test303 Q0 9859256 4 11.772391 Anserini +test303 Q0 337383 5 11.764687 Anserini +test303 Q0 337381 6 11.283510 Anserini +test303 Q0 1133243 7 11.178232 Anserini +test303 Q0 1724393 8 11.050688 Anserini +test303 Q0 14985263 9 11.049232 Anserini +test303 Q0 5320574 10 11.032919 Anserini +test303 Q0 2787200 11 10.968265 Anserini +test303 Q0 19286212 12 10.951063 Anserini +test303 Q0 19286218 13 10.951063 Anserini +test303 Q0 318257 14 10.936035 Anserini +test303 Q0 2787183 15 10.874082 Anserini +test303 Q0 12334018 16 10.851610 Anserini +test303 Q0 10019617 17 10.789446 Anserini +test303 Q0 19156910 18 10.741432 Anserini +test303 Q0 10182719 19 10.724335 Anserini +test303 Q0 8518494 20 10.706534 Anserini +test303 Q0 10599172 21 10.623109 Anserini +test303 Q0 9275656 22 10.593375 Anserini +test303 Q0 19266914 23 10.591135 Anserini +test303 Q0 20105618 24 10.536570 Anserini +test303 Q0 6767191 25 10.506613 Anserini +test303 Q0 10166856 26 10.476738 Anserini +test303 Q0 5579340 27 10.457206 Anserini +test303 Q0 6073571 28 10.450519 Anserini +test303 Q0 20276745 29 10.401444 Anserini +test303 Q0 798096 30 10.376184 Anserini +test3030 Q0 18575810 1 11.359623 Anserini +test3030 Q0 1738144 2 11.134527 Anserini +test3030 Q0 4641454 3 11.053736 Anserini +test3030 Q0 756480 4 10.572169 Anserini +test3030 Q0 17668943 5 10.518598 Anserini +test3030 Q0 9603630 6 10.498445 Anserini +test3030 Q0 18575806 7 10.427394 Anserini +test3030 Q0 15902804 8 10.394221 Anserini +test3030 Q0 4788231 9 10.267293 Anserini +test3030 Q0 3800527 10 10.254114 Anserini +test3030 Q0 9859028 11 10.102089 Anserini +test3030 Q0 7099245 12 10.101934 Anserini +test3030 Q0 19034082 13 10.000701 Anserini +test3030 Q0 17432141 14 9.823572 Anserini +test3030 Q0 19896828 15 9.809931 Anserini +test3030 Q0 12158063 16 9.797526 Anserini +test3030 Q0 12714388 17 9.750598 Anserini +test3030 Q0 16732169 18 9.716026 Anserini +test3030 Q0 12022383 19 9.665472 Anserini +test3030 Q0 14126674 20 9.561298 Anserini +test3030 Q0 4305794 21 9.553194 Anserini +test3030 Q0 11285052 22 9.532970 Anserini +test3030 Q0 19070480 23 9.499383 Anserini +test3030 Q0 18451518 24 9.474457 Anserini +test3030 Q0 2823720 25 9.467676 Anserini +test3030 Q0 6707888 26 9.467132 Anserini +test3030 Q0 18925492 27 9.462451 Anserini +test3030 Q0 8762173 28 9.436218 Anserini +test3030 Q0 15515245 29 9.436218 Anserini +test3030 Q0 17887277 30 9.390614 Anserini +test3031 Q0 15442405 1 16.866930 Anserini +test3031 Q0 12294357 2 14.335060 Anserini +test3031 Q0 138360 3 13.143371 Anserini +test3031 Q0 4745508 4 13.003523 Anserini +test3031 Q0 212478 5 12.907974 Anserini +test3031 Q0 18734211 6 12.880457 Anserini +test3031 Q0 15627287 7 12.627048 Anserini +test3031 Q0 20864460 8 12.319545 Anserini +test3031 Q0 12856551 9 12.180882 Anserini +test3031 Q0 20864461 10 11.997885 Anserini +test3031 Q0 12856539 11 11.993305 Anserini +test3031 Q0 16204000 12 11.978466 Anserini +test3031 Q0 6485994 13 11.962408 Anserini +test3031 Q0 12600965 14 11.847017 Anserini +test3031 Q0 1918829 15 11.790116 Anserini +test3031 Q0 7114303 16 11.742343 Anserini +test3031 Q0 2368011 17 11.710824 Anserini +test3031 Q0 5379384 18 11.568873 Anserini +test3031 Q0 11126305 19 11.539146 Anserini +test3031 Q0 6343585 20 11.532326 Anserini +test3031 Q0 2877076 21 11.504266 Anserini +test3031 Q0 9006050 22 11.503057 Anserini +test3031 Q0 12856559 23 11.497787 Anserini +test3031 Q0 551945 24 11.409822 Anserini +test3031 Q0 12999344 25 11.366951 Anserini +test3031 Q0 15156496 26 11.346366 Anserini +test3031 Q0 7477897 27 11.293393 Anserini +test3031 Q0 10797947 28 11.277532 Anserini +test3031 Q0 17119416 29 11.203409 Anserini +test3031 Q0 2273187 30 11.164767 Anserini +test3032 Q0 603421 1 15.004055 Anserini +test3032 Q0 458605 2 14.804518 Anserini +test3032 Q0 16790424 3 14.198725 Anserini +test3032 Q0 16790421 4 14.103517 Anserini +test3032 Q0 12368967 5 14.010911 Anserini +test3032 Q0 6116662 6 13.282514 Anserini +test3032 Q0 18284230 7 12.957850 Anserini +test3032 Q0 12941430 8 12.393465 Anserini +test3032 Q0 5725427 9 12.285396 Anserini +test3032 Q0 12368934 10 12.177568 Anserini +test3032 Q0 9975724 11 12.017642 Anserini +test3032 Q0 15857437 12 11.760806 Anserini +test3032 Q0 886151 13 11.584773 Anserini +test3032 Q0 12368935 14 11.468751 Anserini +test3032 Q0 7430132 15 11.239137 Anserini +test3032 Q0 4509244 16 11.118959 Anserini +test3032 Q0 18556826 17 10.986115 Anserini +test3032 Q0 4536407 18 10.936989 Anserini +test3032 Q0 9975713 19 10.935224 Anserini +test3032 Q0 2502753 20 10.905949 Anserini +test3032 Q0 1521640 21 10.891499 Anserini +test3032 Q0 1521653 22 10.891499 Anserini +test3032 Q0 9975718 23 10.763988 Anserini +test3032 Q0 13772004 24 10.760535 Anserini +test3032 Q0 15857435 25 10.715843 Anserini +test3032 Q0 2424911 26 10.706720 Anserini +test3032 Q0 7432833 27 10.621022 Anserini +test3032 Q0 8155780 28 10.566608 Anserini +test3032 Q0 4158791 29 10.484796 Anserini +test3032 Q0 1195507 30 10.314174 Anserini +test3033 Q0 16318179 1 13.522588 Anserini +test3033 Q0 2918697 2 13.522588 Anserini +test3033 Q0 312097 3 13.003635 Anserini +test3033 Q0 9614196 4 12.984359 Anserini +test3033 Q0 312168 5 12.894197 Anserini +test3033 Q0 4868690 6 12.850602 Anserini +test3033 Q0 6491649 7 12.794286 Anserini +test3033 Q0 4868696 8 12.791868 Anserini +test3033 Q0 2884860 9 12.755559 Anserini +test3033 Q0 4476116 10 12.699141 Anserini +test3033 Q0 5266226 11 12.593104 Anserini +test3033 Q0 7744399 12 12.503558 Anserini +test3033 Q0 11590364 13 12.463615 Anserini +test3033 Q0 8756989 14 12.443675 Anserini +test3033 Q0 16069501 15 12.432481 Anserini +test3033 Q0 6544060 16 12.412544 Anserini +test3033 Q0 20938433 17 12.404553 Anserini +test3033 Q0 20938434 18 12.404553 Anserini +test3033 Q0 16069502 19 12.376266 Anserini +test3033 Q0 7123303 20 12.361822 Anserini +test3033 Q0 8080790 21 12.360373 Anserini +test3033 Q0 6544062 22 12.349950 Anserini +test3033 Q0 2134749 23 12.311023 Anserini +test3033 Q0 11222941 24 12.298328 Anserini +test3033 Q0 14027405 25 12.298328 Anserini +test3033 Q0 11141746 26 12.298328 Anserini +test3033 Q0 8080794 27 12.298328 Anserini +test3033 Q0 2884862 28 12.298328 Anserini +test3033 Q0 312160 29 12.293375 Anserini +test3033 Q0 2134737 30 12.243731 Anserini +test3034 Q0 10676548 1 18.722874 Anserini +test3034 Q0 13009801 2 17.496054 Anserini +test3034 Q0 18035406 3 16.940336 Anserini +test3034 Q0 10676545 4 16.654007 Anserini +test3034 Q0 7218791 5 16.481569 Anserini +test3034 Q0 19894070 6 16.352343 Anserini +test3034 Q0 19324117 7 15.886102 Anserini +test3034 Q0 8200992 8 15.812486 Anserini +test3034 Q0 16243985 9 15.714733 Anserini +test3034 Q0 985751 10 15.659783 Anserini +test3034 Q0 16243987 11 15.539428 Anserini +test3034 Q0 15224011 12 15.502151 Anserini +test3034 Q0 9668235 13 15.491702 Anserini +test3034 Q0 12759741 14 15.403174 Anserini +test3034 Q0 13769005 15 15.401647 Anserini +test3034 Q0 11601827 16 15.361296 Anserini +test3034 Q0 12867016 17 15.257241 Anserini +test3034 Q0 9668304 18 15.233116 Anserini +test3034 Q0 18751 19 15.225232 Anserini +test3034 Q0 11601829 20 15.177780 Anserini +test3034 Q0 17642814 21 15.168693 Anserini +test3034 Q0 409426 22 15.032811 Anserini +test3034 Q0 8665966 23 14.947635 Anserini +test3034 Q0 16110565 24 14.938947 Anserini +test3034 Q0 16403972 25 14.929509 Anserini +test3034 Q0 18507096 26 14.871552 Anserini +test3034 Q0 12923484 27 14.836403 Anserini +test3034 Q0 4650765 28 14.783834 Anserini +test3034 Q0 10600504 29 14.769205 Anserini +test3034 Q0 9668234 30 14.765881 Anserini +test3035 Q0 3046643 1 20.627262 Anserini +test3035 Q0 3046662 2 20.521914 Anserini +test3035 Q0 3046661 3 20.371866 Anserini +test3035 Q0 3046649 4 20.267931 Anserini +test3035 Q0 3046647 5 19.150841 Anserini +test3035 Q0 3046651 6 19.036728 Anserini +test3035 Q0 3046644 7 18.969271 Anserini +test3035 Q0 10928020 8 18.111149 Anserini +test3035 Q0 18294722 9 17.861586 Anserini +test3035 Q0 3046642 10 17.724070 Anserini +test3035 Q0 16492088 11 17.561092 Anserini +test3035 Q0 3046640 12 16.919422 Anserini +test3035 Q0 3046646 13 16.768251 Anserini +test3035 Q0 3046645 14 16.729095 Anserini +test3035 Q0 3046664 15 16.460583 Anserini +test3035 Q0 15997966 16 16.111616 Anserini +test3035 Q0 323378 17 15.799300 Anserini +test3035 Q0 16002312 18 15.765702 Anserini +test3035 Q0 3046658 19 15.609940 Anserini +test3035 Q0 3046660 20 15.422052 Anserini +test3035 Q0 3046659 21 15.422052 Anserini +test3035 Q0 3046655 22 15.335476 Anserini +test3035 Q0 3046648 23 15.232409 Anserini +test3035 Q0 2497407 24 15.131477 Anserini +test3035 Q0 18294723 25 15.102026 Anserini +test3035 Q0 10928048 26 14.922349 Anserini +test3035 Q0 10928049 27 14.839172 Anserini +test3035 Q0 13421637 28 14.739042 Anserini +test3035 Q0 10928010 29 14.601585 Anserini +test3035 Q0 13883160 30 14.472816 Anserini +test3036 Q0 17771467 1 17.540539 Anserini +test3036 Q0 19871746 2 16.003740 Anserini +test3036 Q0 19871748 3 15.865147 Anserini +test3036 Q0 17771463 4 15.687467 Anserini +test3036 Q0 17771466 5 15.310671 Anserini +test3036 Q0 17201025 6 13.853301 Anserini +test3036 Q0 5541547 7 12.887820 Anserini +test3036 Q0 8329602 8 12.439266 Anserini +test3036 Q0 16643548 9 12.206314 Anserini +test3036 Q0 15093300 10 12.174508 Anserini +test3036 Q0 16036255 11 11.559285 Anserini +test3036 Q0 388602 12 11.300050 Anserini +test3036 Q0 18886814 13 11.240129 Anserini +test3036 Q0 11775857 14 11.232897 Anserini +test3036 Q0 16515926 15 11.230531 Anserini +test3036 Q0 20011611 16 11.184738 Anserini +test3036 Q0 20863775 17 11.151016 Anserini +test3036 Q0 11775852 18 11.059107 Anserini +test3036 Q0 869903 19 10.973113 Anserini +test3036 Q0 14528327 20 10.915509 Anserini +test3036 Q0 15567561 21 10.888503 Anserini +test3036 Q0 17426181 22 10.825589 Anserini +test3036 Q0 8988997 23 10.777370 Anserini +test3036 Q0 12370601 24 10.776014 Anserini +test3036 Q0 15380038 25 10.722116 Anserini +test3036 Q0 11720889 26 10.721781 Anserini +test3036 Q0 17426174 27 10.666599 Anserini +test3036 Q0 20463738 28 10.663125 Anserini +test3036 Q0 13195861 29 10.659635 Anserini +test3036 Q0 9388170 30 10.584229 Anserini +test3037 Q0 17346257 1 15.783096 Anserini +test3037 Q0 20345937 2 15.529712 Anserini +test3037 Q0 18825626 3 15.416950 Anserini +test3037 Q0 17112368 4 15.379670 Anserini +test3037 Q0 18825631 5 15.299223 Anserini +test3037 Q0 18825639 6 15.196574 Anserini +test3037 Q0 18825634 7 15.170658 Anserini +test3037 Q0 14454964 8 14.976639 Anserini +test3037 Q0 20345925 9 14.820771 Anserini +test3037 Q0 7933018 10 14.641572 Anserini +test3037 Q0 17346250 11 14.534674 Anserini +test3037 Q0 18825590 12 14.280769 Anserini +test3037 Q0 20345916 13 14.214286 Anserini +test3037 Q0 18089476 14 14.183115 Anserini +test3037 Q0 18825604 15 14.137665 Anserini +test3037 Q0 17112370 16 14.061943 Anserini +test3037 Q0 18089489 17 14.061943 Anserini +test3037 Q0 18825595 18 13.937056 Anserini +test3037 Q0 16397361 19 13.885048 Anserini +test3037 Q0 6843490 20 13.799673 Anserini +test3037 Q0 18825591 21 13.791616 Anserini +test3037 Q0 14454962 22 13.675646 Anserini +test3037 Q0 20345936 23 13.623540 Anserini +test3037 Q0 14454961 24 13.486172 Anserini +test3037 Q0 18089482 25 13.435277 Anserini +test3037 Q0 18825620 26 13.416607 Anserini +test3037 Q0 50124 27 13.410666 Anserini +test3037 Q0 18089491 28 13.409283 Anserini +test3037 Q0 14454960 29 13.401253 Anserini +test3037 Q0 18825600 30 13.383628 Anserini +test3038 Q0 14402907 1 23.648611 Anserini +test3038 Q0 12282526 2 23.310814 Anserini +test3038 Q0 11966859 3 23.121729 Anserini +test3038 Q0 16683961 4 22.727711 Anserini +test3038 Q0 4286701 5 22.691263 Anserini +test3038 Q0 3648086 6 22.123999 Anserini +test3038 Q0 9598070 7 22.000927 Anserini +test3038 Q0 5919516 8 21.972017 Anserini +test3038 Q0 16446665 9 21.844351 Anserini +test3038 Q0 13429086 10 21.626759 Anserini +test3038 Q0 6626697 11 21.572073 Anserini +test3038 Q0 12007934 12 21.210129 Anserini +test3038 Q0 10239280 13 21.189577 Anserini +test3038 Q0 14736267 14 21.080219 Anserini +test3038 Q0 12042703 15 20.949514 Anserini +test3038 Q0 6743366 16 20.926325 Anserini +test3038 Q0 12344106 17 20.903076 Anserini +test3038 Q0 7802142 18 20.720129 Anserini +test3038 Q0 20923217 19 20.710651 Anserini +test3038 Q0 15910063 20 20.636610 Anserini +test3038 Q0 14301947 21 20.618515 Anserini +test3038 Q0 7171449 22 20.614012 Anserini +test3038 Q0 14520927 23 20.606167 Anserini +test3038 Q0 4626608 24 20.573500 Anserini +test3038 Q0 5061365 25 20.557940 Anserini +test3038 Q0 2892766 26 20.538361 Anserini +test3038 Q0 17304815 27 20.371164 Anserini +test3038 Q0 8128736 28 20.329348 Anserini +test3038 Q0 1913831 29 20.285280 Anserini +test3038 Q0 8826911 30 20.237234 Anserini +test3039 Q0 6222402 1 19.466509 Anserini +test3039 Q0 6222407 2 19.466509 Anserini +test3039 Q0 3714211 3 18.691854 Anserini +test3039 Q0 297974 4 17.742178 Anserini +test3039 Q0 6222406 5 16.797226 Anserini +test3039 Q0 2809088 6 16.350231 Anserini +test3039 Q0 6222404 7 16.327885 Anserini +test3039 Q0 8294185 8 16.126284 Anserini +test3039 Q0 6222403 9 15.636201 Anserini +test3039 Q0 7957901 10 15.534784 Anserini +test3039 Q0 1727527 11 15.500914 Anserini +test3039 Q0 10740567 12 15.438807 Anserini +test3039 Q0 13220520 13 15.124746 Anserini +test3039 Q0 19154573 14 15.109988 Anserini +test3039 Q0 15951690 15 15.001959 Anserini +test3039 Q0 9547959 16 14.992567 Anserini +test3039 Q0 14309026 17 14.847866 Anserini +test3039 Q0 18346372 18 14.792172 Anserini +test3039 Q0 6222405 19 14.789458 Anserini +test3039 Q0 14309038 20 14.756154 Anserini +test3039 Q0 8438638 21 14.725265 Anserini +test3039 Q0 13220528 22 14.672585 Anserini +test3039 Q0 8294116 23 14.666872 Anserini +test3039 Q0 19223324 24 14.663488 Anserini +test3039 Q0 9969291 25 14.649971 Anserini +test3039 Q0 15951691 26 14.643333 Anserini +test3039 Q0 19822075 27 14.619325 Anserini +test3039 Q0 16106916 28 14.589832 Anserini +test3039 Q0 14153056 29 14.535249 Anserini +test3039 Q0 15211852 30 14.535249 Anserini +test304 Q0 20288310 1 13.047735 Anserini +test304 Q0 15916513 2 12.451539 Anserini +test304 Q0 1066962 3 12.333531 Anserini +test304 Q0 4732555 4 11.992342 Anserini +test304 Q0 20975209 5 11.945371 Anserini +test304 Q0 20975210 6 11.908756 Anserini +test304 Q0 10244987 7 11.907863 Anserini +test304 Q0 10806846 8 11.874142 Anserini +test304 Q0 19388464 9 11.814228 Anserini +test304 Q0 20185835 10 11.814228 Anserini +test304 Q0 18636421 11 11.808634 Anserini +test304 Q0 20185833 12 11.755318 Anserini +test304 Q0 19324937 13 11.729357 Anserini +test304 Q0 15065805 14 11.678911 Anserini +test304 Q0 3570765 15 11.637419 Anserini +test304 Q0 15418733 16 11.636989 Anserini +test304 Q0 10912006 17 11.566053 Anserini +test304 Q0 10638037 18 11.525423 Anserini +test304 Q0 8667195 19 11.498852 Anserini +test304 Q0 41899 20 11.459199 Anserini +test304 Q0 13767466 21 11.387908 Anserini +test304 Q0 326751 22 11.354553 Anserini +test304 Q0 1836120 23 11.324803 Anserini +test304 Q0 5552145 24 11.324235 Anserini +test304 Q0 2505853 25 11.285052 Anserini +test304 Q0 10338443 26 11.272046 Anserini +test304 Q0 10338210 27 11.272046 Anserini +test304 Q0 271852 28 11.216496 Anserini +test304 Q0 15418732 29 11.143471 Anserini +test304 Q0 12046304 30 11.131543 Anserini +test3040 Q0 9258538 1 17.676884 Anserini +test3040 Q0 8857928 2 17.334328 Anserini +test3040 Q0 5953783 3 17.273668 Anserini +test3040 Q0 9709086 4 17.171373 Anserini +test3040 Q0 3094055 5 17.161705 Anserini +test3040 Q0 12844543 6 17.006231 Anserini +test3040 Q0 11286721 7 16.858665 Anserini +test3040 Q0 9642005 8 16.805006 Anserini +test3040 Q0 12844549 9 16.771070 Anserini +test3040 Q0 11346622 10 16.715868 Anserini +test3040 Q0 9383200 11 16.643452 Anserini +test3040 Q0 11286852 12 16.602024 Anserini +test3040 Q0 12844546 13 16.418581 Anserini +test3040 Q0 9702624 14 16.401497 Anserini +test3040 Q0 11267731 15 16.401350 Anserini +test3040 Q0 18356894 16 16.390667 Anserini +test3040 Q0 10437770 17 16.386738 Anserini +test3040 Q0 9682660 18 16.349466 Anserini +test3040 Q0 8725544 19 16.349466 Anserini +test3040 Q0 9682659 20 16.349466 Anserini +test3040 Q0 9709084 21 16.349466 Anserini +test3040 Q0 9680947 22 16.333946 Anserini +test3040 Q0 8725556 23 16.333408 Anserini +test3040 Q0 9702626 24 16.313629 Anserini +test3040 Q0 8725552 25 16.309650 Anserini +test3040 Q0 11285419 26 16.273191 Anserini +test3040 Q0 9702971 27 16.265932 Anserini +test3040 Q0 9353541 28 16.226948 Anserini +test3040 Q0 20468595 29 16.226948 Anserini +test3040 Q0 16026910 30 16.178196 Anserini +test3041 Q0 10965479 1 31.195789 Anserini +test3041 Q0 10965490 2 30.916454 Anserini +test3041 Q0 11773018 3 30.197113 Anserini +test3041 Q0 11773021 4 29.004345 Anserini +test3041 Q0 10965489 5 26.170849 Anserini +test3041 Q0 5958893 6 26.138275 Anserini +test3041 Q0 10965481 7 25.033920 Anserini +test3041 Q0 10965484 8 24.282932 Anserini +test3041 Q0 10965482 9 23.960102 Anserini +test3041 Q0 10965483 10 23.590607 Anserini +test3041 Q0 10965485 11 23.411940 Anserini +test3041 Q0 10965487 12 23.187016 Anserini +test3041 Q0 10290289 13 23.136414 Anserini +test3041 Q0 10290298 14 23.136414 Anserini +test3041 Q0 4309125 15 22.537441 Anserini +test3041 Q0 11773019 16 22.145639 Anserini +test3041 Q0 10965486 17 22.079626 Anserini +test3041 Q0 10965525 18 22.079626 Anserini +test3041 Q0 13639569 19 21.868729 Anserini +test3041 Q0 10992638 20 21.868729 Anserini +test3041 Q0 10992639 21 21.868729 Anserini +test3041 Q0 10965529 22 21.868729 Anserini +test3041 Q0 13639572 23 21.458181 Anserini +test3041 Q0 10965527 24 21.247335 Anserini +test3041 Q0 11454477 25 20.834812 Anserini +test3041 Q0 10401415 26 20.615486 Anserini +test3041 Q0 10965480 27 20.400724 Anserini +test3041 Q0 13864630 28 19.631815 Anserini +test3041 Q0 5958899 29 19.579121 Anserini +test3041 Q0 9012409 30 19.422949 Anserini +test3042 Q0 9730662 1 13.489719 Anserini +test3042 Q0 6878509 2 13.295805 Anserini +test3042 Q0 2086958 3 12.609010 Anserini +test3042 Q0 3670098 4 12.540777 Anserini +test3042 Q0 9730663 5 12.155426 Anserini +test3042 Q0 3253472 6 12.152549 Anserini +test3042 Q0 8198311 7 12.142413 Anserini +test3042 Q0 8197981 8 11.964334 Anserini +test3042 Q0 2784615 9 11.907254 Anserini +test3042 Q0 9730643 10 11.837129 Anserini +test3042 Q0 4721929 11 11.827168 Anserini +test3042 Q0 2504784 12 11.808092 Anserini +test3042 Q0 19966273 13 11.761368 Anserini +test3042 Q0 9730661 14 11.755829 Anserini +test3042 Q0 16108895 15 11.598181 Anserini +test3042 Q0 18872126 16 11.577617 Anserini +test3042 Q0 2110373 17 11.523318 Anserini +test3042 Q0 2784612 18 11.490699 Anserini +test3042 Q0 9730660 19 11.466321 Anserini +test3042 Q0 8355042 20 11.406098 Anserini +test3042 Q0 9730645 21 11.352426 Anserini +test3042 Q0 5063724 22 11.282771 Anserini +test3042 Q0 2222718 23 11.234086 Anserini +test3042 Q0 6897228 24 11.214479 Anserini +test3042 Q0 5533324 25 11.199968 Anserini +test3042 Q0 8198333 26 11.199543 Anserini +test3042 Q0 14852657 27 11.178952 Anserini +test3042 Q0 4799458 28 11.169831 Anserini +test3042 Q0 6897225 29 11.163306 Anserini +test3042 Q0 8198402 30 11.160607 Anserini +test3043 Q0 7000383 1 25.470156 Anserini +test3043 Q0 7000387 2 24.268984 Anserini +test3043 Q0 7000385 3 23.216923 Anserini +test3043 Q0 18418302 4 21.525650 Anserini +test3043 Q0 2912933 5 20.354656 Anserini +test3043 Q0 5509445 6 20.046717 Anserini +test3043 Q0 10855573 7 19.753071 Anserini +test3043 Q0 4752759 8 19.701635 Anserini +test3043 Q0 5211424 9 19.610022 Anserini +test3043 Q0 18778870 10 19.344780 Anserini +test3043 Q0 12135400 11 19.084009 Anserini +test3043 Q0 7000384 12 18.697838 Anserini +test3043 Q0 14613127 13 18.690386 Anserini +test3043 Q0 16207601 14 18.651850 Anserini +test3043 Q0 12932668 15 18.535988 Anserini +test3043 Q0 18063031 16 18.432957 Anserini +test3043 Q0 7000386 17 18.432957 Anserini +test3043 Q0 14613129 18 18.431215 Anserini +test3043 Q0 8722155 19 18.407364 Anserini +test3043 Q0 9662545 20 18.337078 Anserini +test3043 Q0 17837202 21 18.227346 Anserini +test3043 Q0 16207603 22 18.167915 Anserini +test3043 Q0 14613128 23 18.163916 Anserini +test3043 Q0 16221638 24 18.112932 Anserini +test3043 Q0 7000206 25 17.965097 Anserini +test3043 Q0 5060078 26 17.932377 Anserini +test3043 Q0 11591885 27 17.814266 Anserini +test3043 Q0 19680522 28 17.799587 Anserini +test3043 Q0 13427357 29 17.757954 Anserini +test3043 Q0 3852147 30 17.724319 Anserini +test3044 Q0 3887022 1 15.594522 Anserini +test3044 Q0 15815342 2 15.331020 Anserini +test3044 Q0 5528991 3 14.658114 Anserini +test3044 Q0 3887023 4 14.645851 Anserini +test3044 Q0 9160302 5 14.541237 Anserini +test3044 Q0 16658599 6 14.514536 Anserini +test3044 Q0 6752111 7 14.465166 Anserini +test3044 Q0 11703658 8 14.341684 Anserini +test3044 Q0 16653858 9 14.232373 Anserini +test3044 Q0 14789065 10 14.169034 Anserini +test3044 Q0 10054914 11 14.115817 Anserini +test3044 Q0 2590993 12 14.115536 Anserini +test3044 Q0 11703661 13 14.093941 Anserini +test3044 Q0 3887020 14 14.037193 Anserini +test3044 Q0 7114550 15 13.940802 Anserini +test3044 Q0 12042660 16 13.846482 Anserini +test3044 Q0 7698268 17 13.838034 Anserini +test3044 Q0 18795655 18 13.779861 Anserini +test3044 Q0 9431795 19 13.724042 Anserini +test3044 Q0 3647686 20 13.683947 Anserini +test3044 Q0 20614045 21 13.652255 Anserini +test3044 Q0 12042683 22 13.649426 Anserini +test3044 Q0 12042666 23 13.600276 Anserini +test3044 Q0 9582986 24 13.576234 Anserini +test3044 Q0 12042650 25 13.575587 Anserini +test3044 Q0 11966854 26 13.563846 Anserini +test3044 Q0 10801464 27 13.549319 Anserini +test3044 Q0 9927459 28 13.544483 Anserini +test3044 Q0 9032982 29 13.534181 Anserini +test3044 Q0 7144085 30 13.529675 Anserini +test3045 Q0 420939 1 14.073360 Anserini +test3045 Q0 15966558 2 13.973127 Anserini +test3045 Q0 15966585 3 13.973127 Anserini +test3045 Q0 4241438 4 12.556141 Anserini +test3045 Q0 457608 5 11.692084 Anserini +test3045 Q0 420967 6 11.318430 Anserini +test3045 Q0 1951202 7 10.990186 Anserini +test3045 Q0 420968 8 10.961354 Anserini +test3045 Q0 6954478 9 10.869305 Anserini +test3045 Q0 15054093 10 10.758798 Anserini +test3045 Q0 19723139 11 10.686543 Anserini +test3045 Q0 19723142 12 10.596390 Anserini +test3045 Q0 3061794 13 10.422318 Anserini +test3045 Q0 11369227 14 10.242716 Anserini +test3045 Q0 10459013 15 10.231593 Anserini +test3045 Q0 10459018 16 10.231593 Anserini +test3045 Q0 19723146 17 10.199909 Anserini +test3045 Q0 3860946 18 10.091392 Anserini +test3045 Q0 6074557 19 10.004399 Anserini +test3045 Q0 2185224 20 10.002661 Anserini +test3045 Q0 1145547 21 9.965224 Anserini +test3045 Q0 236572 22 9.913919 Anserini +test3045 Q0 6061767 23 9.894538 Anserini +test3045 Q0 14657354 24 9.892622 Anserini +test3045 Q0 6044535 25 9.890059 Anserini +test3045 Q0 8422944 26 9.890059 Anserini +test3045 Q0 10679662 27 9.744377 Anserini +test3045 Q0 9331067 28 9.719127 Anserini +test3045 Q0 17796929 29 9.717736 Anserini +test3045 Q0 1681213 30 9.709084 Anserini +test3046 Q0 15752483 1 14.207391 Anserini +test3046 Q0 15752482 2 14.130033 Anserini +test3046 Q0 3641572 3 13.957552 Anserini +test3046 Q0 619883 4 13.774891 Anserini +test3046 Q0 6346794 5 13.547160 Anserini +test3046 Q0 3641556 6 13.258403 Anserini +test3046 Q0 20286345 7 12.782471 Anserini +test3046 Q0 3641563 8 12.525434 Anserini +test3046 Q0 6776369 9 12.383199 Anserini +test3046 Q0 12368334 10 12.346811 Anserini +test3046 Q0 3641575 11 12.302615 Anserini +test3046 Q0 4113346 12 12.245313 Anserini +test3046 Q0 619884 13 12.176077 Anserini +test3046 Q0 10402929 14 12.107132 Anserini +test3046 Q0 3641565 15 11.961802 Anserini +test3046 Q0 3641571 16 11.809292 Anserini +test3046 Q0 3641554 17 11.744191 Anserini +test3046 Q0 3641557 18 11.729712 Anserini +test3046 Q0 10402936 19 11.697714 Anserini +test3046 Q0 11650123 20 11.673811 Anserini +test3046 Q0 6776354 21 11.660170 Anserini +test3046 Q0 3641561 22 11.594315 Anserini +test3046 Q0 619885 23 11.592754 Anserini +test3046 Q0 2487867 24 11.575562 Anserini +test3046 Q0 11312760 25 11.535818 Anserini +test3046 Q0 19260412 26 11.526472 Anserini +test3046 Q0 3641562 27 11.475636 Anserini +test3046 Q0 3641555 28 11.234537 Anserini +test3046 Q0 11330735 29 11.214357 Anserini +test3046 Q0 3485949 30 11.179039 Anserini +test3047 Q0 20580119 1 13.186067 Anserini +test3047 Q0 16372474 2 13.085958 Anserini +test3047 Q0 15023505 3 12.888994 Anserini +test3047 Q0 17964018 4 12.810143 Anserini +test3047 Q0 18572585 5 12.680262 Anserini +test3047 Q0 18698189 6 12.650979 Anserini +test3047 Q0 16917531 7 12.649980 Anserini +test3047 Q0 10387238 8 12.636133 Anserini +test3047 Q0 20146742 9 12.588272 Anserini +test3047 Q0 18461274 10 12.548027 Anserini +test3047 Q0 20580115 11 12.475711 Anserini +test3047 Q0 18366819 12 12.466828 Anserini +test3047 Q0 16801699 13 12.466828 Anserini +test3047 Q0 16917528 14 12.430878 Anserini +test3047 Q0 17057219 15 12.314096 Anserini +test3047 Q0 17540937 16 12.310089 Anserini +test3047 Q0 17332372 17 12.310089 Anserini +test3047 Q0 15023498 18 12.310089 Anserini +test3047 Q0 20146733 19 12.310089 Anserini +test3047 Q0 19979508 20 12.310089 Anserini +test3047 Q0 20147524 21 12.297691 Anserini +test3047 Q0 15023474 22 12.244669 Anserini +test3047 Q0 15023511 23 12.244669 Anserini +test3047 Q0 20913782 24 12.244669 Anserini +test3047 Q0 19979501 25 12.244669 Anserini +test3047 Q0 20938921 26 12.169178 Anserini +test3047 Q0 15023496 27 12.115051 Anserini +test3047 Q0 18572587 28 12.097446 Anserini +test3047 Q0 16944241 29 12.078417 Anserini +test3047 Q0 20938923 30 12.041512 Anserini +test3048 Q0 20506488 1 10.414675 Anserini +test3048 Q0 20167510 2 9.971074 Anserini +test3048 Q0 15665367 3 9.971074 Anserini +test3048 Q0 1768733 4 9.744861 Anserini +test3048 Q0 20257173 5 9.673531 Anserini +test3048 Q0 20324465 6 9.575850 Anserini +test3048 Q0 19897372 7 9.551629 Anserini +test3048 Q0 13193380 8 9.489051 Anserini +test3048 Q0 20257109 9 9.381721 Anserini +test3048 Q0 7729355 10 9.351627 Anserini +test3048 Q0 10230200 11 9.297264 Anserini +test3048 Q0 20257122 12 9.294538 Anserini +test3048 Q0 13712198 13 9.258162 Anserini +test3048 Q0 20380085 14 9.257910 Anserini +test3048 Q0 20426301 15 9.257910 Anserini +test3048 Q0 943414 16 9.241497 Anserini +test3048 Q0 19124945 17 9.217534 Anserini +test3048 Q0 943379 18 9.213214 Anserini +test3048 Q0 10237178 19 9.180968 Anserini +test3048 Q0 9718202 20 9.173621 Anserini +test3048 Q0 20380093 21 9.144405 Anserini +test3048 Q0 15999251 22 9.129036 Anserini +test3048 Q0 18470501 23 9.127666 Anserini +test3048 Q0 20257176 24 9.115427 Anserini +test3048 Q0 19250541 25 9.115427 Anserini +test3048 Q0 943381 26 9.093459 Anserini +test3048 Q0 19162909 27 9.083277 Anserini +test3048 Q0 13190073 28 9.055087 Anserini +test3048 Q0 9718220 29 9.051039 Anserini +test3048 Q0 6170866 30 9.017086 Anserini +test3049 Q0 4419884 1 10.081793 Anserini +test3049 Q0 16167444 2 9.951109 Anserini +test3049 Q0 16167450 3 9.951109 Anserini +test3049 Q0 10139971 4 9.856073 Anserini +test3049 Q0 4419883 5 9.666828 Anserini +test3049 Q0 6727081 6 9.558146 Anserini +test3049 Q0 10139970 7 9.558146 Anserini +test3049 Q0 9054190 8 9.427117 Anserini +test3049 Q0 5238478 9 9.426029 Anserini +test3049 Q0 16937903 10 9.342970 Anserini +test3049 Q0 11212750 11 9.291910 Anserini +test3049 Q0 16167445 12 9.236553 Anserini +test3049 Q0 8839979 13 9.193605 Anserini +test3049 Q0 6727090 14 9.054754 Anserini +test3049 Q0 17601634 15 8.928939 Anserini +test3049 Q0 5253968 16 8.874628 Anserini +test3049 Q0 6576480 17 8.812321 Anserini +test3049 Q0 2293055 18 8.798649 Anserini +test3049 Q0 10034091 19 8.720796 Anserini +test3049 Q0 2293054 20 8.715651 Anserini +test3049 Q0 2293071 21 8.715651 Anserini +test3049 Q0 6742248 22 8.689209 Anserini +test3049 Q0 11629174 23 8.675418 Anserini +test3049 Q0 15898218 24 8.638681 Anserini +test3049 Q0 8570984 25 8.628862 Anserini +test3049 Q0 2293067 26 8.602436 Anserini +test3049 Q0 3339493 27 8.601763 Anserini +test3049 Q0 9070065 28 8.551671 Anserini +test3049 Q0 82536 29 8.499352 Anserini +test3049 Q0 16005745 30 8.490555 Anserini +test305 Q0 9672818 1 15.198509 Anserini +test305 Q0 1287787 2 15.101584 Anserini +test305 Q0 2160564 3 15.048636 Anserini +test305 Q0 2160553 4 15.022883 Anserini +test305 Q0 16750403 5 14.619139 Anserini +test305 Q0 17144499 6 14.613985 Anserini +test305 Q0 17144495 7 14.224799 Anserini +test305 Q0 6018961 8 14.207007 Anserini +test305 Q0 9672962 9 14.106288 Anserini +test305 Q0 413635 10 13.995303 Anserini +test305 Q0 10203522 11 13.956677 Anserini +test305 Q0 10014072 12 13.835407 Anserini +test305 Q0 17019072 13 13.798135 Anserini +test305 Q0 16833061 14 13.687858 Anserini +test305 Q0 13171465 15 13.559115 Anserini +test305 Q0 16750405 16 13.442842 Anserini +test305 Q0 6070208 17 13.383434 Anserini +test305 Q0 16750404 18 13.354652 Anserini +test305 Q0 17144496 19 13.344680 Anserini +test305 Q0 16612725 20 13.344680 Anserini +test305 Q0 13171466 21 13.314866 Anserini +test305 Q0 16833060 22 13.205273 Anserini +test305 Q0 6577571 23 13.165971 Anserini +test305 Q0 17144494 24 12.947141 Anserini +test305 Q0 7166161 25 12.872566 Anserini +test305 Q0 17056542 26 12.736524 Anserini +test305 Q0 16833062 27 12.723337 Anserini +test305 Q0 15768014 28 12.679630 Anserini +test305 Q0 17179484 29 12.623874 Anserini +test305 Q0 17183366 30 12.543474 Anserini +test3050 Q0 1731830 1 21.724545 Anserini +test3050 Q0 1731834 2 19.142031 Anserini +test3050 Q0 6920464 3 17.552431 Anserini +test3050 Q0 4909342 4 17.463215 Anserini +test3050 Q0 21010142 5 16.741421 Anserini +test3050 Q0 473715 6 16.695911 Anserini +test3050 Q0 196715 7 16.502539 Anserini +test3050 Q0 14082944 8 16.439178 Anserini +test3050 Q0 21009536 9 16.416021 Anserini +test3050 Q0 4787593 10 16.385752 Anserini +test3050 Q0 91172 11 16.297089 Anserini +test3050 Q0 15142124 12 16.279209 Anserini +test3050 Q0 91175 13 16.276503 Anserini +test3050 Q0 1796445 14 16.169022 Anserini +test3050 Q0 16151286 15 15.796124 Anserini +test3050 Q0 20630603 16 15.784953 Anserini +test3050 Q0 21010162 17 15.772138 Anserini +test3050 Q0 10982354 18 15.739687 Anserini +test3050 Q0 8039259 19 15.707379 Anserini +test3050 Q0 91182 20 15.704073 Anserini +test3050 Q0 7373101 21 15.687431 Anserini +test3050 Q0 3356422 22 15.623945 Anserini +test3050 Q0 91183 23 15.597578 Anserini +test3050 Q0 3038203 24 15.439182 Anserini +test3050 Q0 440344 25 15.383635 Anserini +test3050 Q0 2497921 26 15.301517 Anserini +test3050 Q0 10866311 27 15.279293 Anserini +test3050 Q0 91149 28 15.169898 Anserini +test3050 Q0 278118 29 15.145077 Anserini +test3050 Q0 19123343 30 15.128831 Anserini +test3051 Q0 15715456 1 14.576477 Anserini +test3051 Q0 9546910 2 14.503739 Anserini +test3051 Q0 8126424 3 13.798889 Anserini +test3051 Q0 2456676 4 13.779282 Anserini +test3051 Q0 5958877 5 13.743839 Anserini +test3051 Q0 2456596 6 13.654932 Anserini +test3051 Q0 13310324 7 13.645700 Anserini +test3051 Q0 7133617 8 13.564390 Anserini +test3051 Q0 1700406 9 13.340279 Anserini +test3051 Q0 14126985 10 13.296996 Anserini +test3051 Q0 14536354 11 13.273520 Anserini +test3051 Q0 5271146 12 13.257246 Anserini +test3051 Q0 14024056 13 13.158688 Anserini +test3051 Q0 15132798 14 13.059717 Anserini +test3051 Q0 13310317 15 13.036248 Anserini +test3051 Q0 19097713 16 12.973912 Anserini +test3051 Q0 1974366 17 12.917348 Anserini +test3051 Q0 15132797 18 12.891199 Anserini +test3051 Q0 866397 19 12.796306 Anserini +test3051 Q0 866414 20 12.796306 Anserini +test3051 Q0 2459919 21 12.789964 Anserini +test3051 Q0 3650524 22 12.721867 Anserini +test3051 Q0 11343820 23 12.668299 Anserini +test3051 Q0 7133653 24 12.649426 Anserini +test3051 Q0 8955561 25 12.618518 Anserini +test3051 Q0 1700404 26 12.543900 Anserini +test3051 Q0 4532524 27 12.387874 Anserini +test3051 Q0 7133618 28 12.330324 Anserini +test3051 Q0 7075124 29 12.301111 Anserini +test3051 Q0 19355121 30 12.297173 Anserini +test3052 Q0 10745230 1 20.391951 Anserini +test3052 Q0 7654807 2 19.421947 Anserini +test3052 Q0 12213751 3 18.157003 Anserini +test3052 Q0 672422 4 18.093496 Anserini +test3052 Q0 728443 5 17.486151 Anserini +test3052 Q0 668173 6 17.349863 Anserini +test3052 Q0 12213750 7 17.260340 Anserini +test3052 Q0 728438 8 17.143869 Anserini +test3052 Q0 728418 9 17.076130 Anserini +test3052 Q0 728419 10 16.949556 Anserini +test3052 Q0 7654806 11 16.872847 Anserini +test3052 Q0 7654808 12 16.825203 Anserini +test3052 Q0 6322698 13 16.756168 Anserini +test3052 Q0 668176 14 16.747650 Anserini +test3052 Q0 726607 15 16.619467 Anserini +test3052 Q0 728440 16 16.606869 Anserini +test3052 Q0 9951911 17 16.411551 Anserini +test3052 Q0 668175 18 16.088539 Anserini +test3052 Q0 3592261 19 15.883659 Anserini +test3052 Q0 7654799 20 15.738802 Anserini +test3052 Q0 728421 21 15.667700 Anserini +test3052 Q0 1989548 22 15.528568 Anserini +test3052 Q0 5028565 23 15.467106 Anserini +test3052 Q0 3786759 24 15.467106 Anserini +test3052 Q0 12381688 25 15.391985 Anserini +test3052 Q0 7654798 26 15.302550 Anserini +test3052 Q0 728428 27 15.270312 Anserini +test3052 Q0 728426 28 15.270312 Anserini +test3052 Q0 5072922 29 15.185852 Anserini +test3052 Q0 895700 30 14.968550 Anserini +test3053 Q0 12062404 1 12.839139 Anserini +test3053 Q0 428045 2 12.465091 Anserini +test3053 Q0 3202606 3 11.989029 Anserini +test3053 Q0 11794871 4 11.915420 Anserini +test3053 Q0 4207791 5 11.914339 Anserini +test3053 Q0 11294884 6 11.791162 Anserini +test3053 Q0 7217142 7 11.635285 Anserini +test3053 Q0 15760361 8 11.540200 Anserini +test3053 Q0 4709438 9 11.332582 Anserini +test3053 Q0 7784292 10 11.247669 Anserini +test3053 Q0 5314623 11 11.246597 Anserini +test3053 Q0 5314614 12 11.165540 Anserini +test3053 Q0 15152312 13 11.157334 Anserini +test3053 Q0 7217144 14 11.069050 Anserini +test3053 Q0 593219 15 11.033817 Anserini +test3053 Q0 15445065 16 11.020791 Anserini +test3053 Q0 6440073 17 11.003510 Anserini +test3053 Q0 2392494 18 10.972484 Anserini +test3053 Q0 428875 19 10.959008 Anserini +test3053 Q0 11340783 20 10.953742 Anserini +test3053 Q0 14904826 21 10.871227 Anserini +test3053 Q0 3008163 22 10.859257 Anserini +test3053 Q0 20389754 23 10.841291 Anserini +test3053 Q0 3573151 24 10.755672 Anserini +test3053 Q0 20085073 25 10.752226 Anserini +test3053 Q0 1471228 26 10.693960 Anserini +test3053 Q0 18460409 27 10.631041 Anserini +test3053 Q0 1323382 28 10.597038 Anserini +test3053 Q0 15227406 29 10.593926 Anserini +test3053 Q0 657255 30 10.590312 Anserini +test3054 Q0 14469579 1 13.666837 Anserini +test3054 Q0 1265742 2 13.425636 Anserini +test3054 Q0 688245 3 13.377452 Anserini +test3054 Q0 14902223 4 13.212860 Anserini +test3054 Q0 688273 5 13.143869 Anserini +test3054 Q0 688256 6 13.133177 Anserini +test3054 Q0 8645625 7 13.049376 Anserini +test3054 Q0 10035394 8 12.971773 Anserini +test3054 Q0 10186941 9 12.937736 Anserini +test3054 Q0 10186956 10 12.937736 Anserini +test3054 Q0 688272 11 12.902578 Anserini +test3054 Q0 17229434 12 12.734563 Anserini +test3054 Q0 11902809 13 12.684845 Anserini +test3054 Q0 11902799 14 12.637670 Anserini +test3054 Q0 688274 15 12.637074 Anserini +test3054 Q0 688250 16 12.564980 Anserini +test3054 Q0 15345540 17 12.389324 Anserini +test3054 Q0 3321098 18 12.388227 Anserini +test3054 Q0 6653018 19 12.352245 Anserini +test3054 Q0 4696169 20 12.279969 Anserini +test3054 Q0 20813125 21 12.240374 Anserini +test3054 Q0 5974510 22 12.236330 Anserini +test3054 Q0 15086053 23 12.199914 Anserini +test3054 Q0 6965088 24 12.122024 Anserini +test3054 Q0 592121 25 12.105494 Anserini +test3054 Q0 19122326 26 12.097583 Anserini +test3054 Q0 12398958 27 12.088703 Anserini +test3054 Q0 10781096 28 12.051305 Anserini +test3054 Q0 688260 29 12.050701 Anserini +test3054 Q0 11074794 30 12.048336 Anserini +test3055 Q0 18702245 1 46.765377 Anserini +test3055 Q0 18702252 2 46.765377 Anserini +test3055 Q0 15978958 3 30.160006 Anserini +test3055 Q0 16426952 4 29.009449 Anserini +test3055 Q0 18702250 5 28.791092 Anserini +test3055 Q0 18702246 6 28.488008 Anserini +test3055 Q0 18702247 7 28.191236 Anserini +test3055 Q0 18702248 8 28.191236 Anserini +test3055 Q0 18702251 9 28.191236 Anserini +test3055 Q0 18999373 10 28.191236 Anserini +test3055 Q0 18702249 11 27.900585 Anserini +test3055 Q0 19043555 12 27.900585 Anserini +test3055 Q0 19043553 13 27.336897 Anserini +test3055 Q0 14482302 14 25.669765 Anserini +test3055 Q0 18703889 15 22.787119 Anserini +test3055 Q0 12727900 16 22.465963 Anserini +test3055 Q0 8278354 17 21.674030 Anserini +test3055 Q0 18703878 18 21.311401 Anserini +test3055 Q0 18703888 19 19.999891 Anserini +test3055 Q0 18703882 20 19.999891 Anserini +test3055 Q0 5302592 21 19.585110 Anserini +test3055 Q0 15051297 22 18.890181 Anserini +test3055 Q0 18703883 23 18.055418 Anserini +test3055 Q0 18703887 24 17.930889 Anserini +test3055 Q0 10142588 25 17.930889 Anserini +test3055 Q0 18461921 26 17.225105 Anserini +test3055 Q0 15715578 27 16.869925 Anserini +test3055 Q0 7864169 28 16.697771 Anserini +test3055 Q0 4995466 29 16.697771 Anserini +test3055 Q0 8109027 30 16.529095 Anserini +test3056 Q0 13166044 1 13.960296 Anserini +test3056 Q0 13166111 2 13.035718 Anserini +test3056 Q0 732616 3 12.917958 Anserini +test3056 Q0 13166101 4 12.764173 Anserini +test3056 Q0 13166068 5 12.588534 Anserini +test3056 Q0 732574 6 12.512365 Anserini +test3056 Q0 732615 7 12.483019 Anserini +test3056 Q0 13446980 8 12.268825 Anserini +test3056 Q0 1485898 9 12.187155 Anserini +test3056 Q0 686430 10 12.167765 Anserini +test3056 Q0 6910271 11 12.061611 Anserini +test3056 Q0 13166078 12 12.060825 Anserini +test3056 Q0 13166074 13 11.998571 Anserini +test3056 Q0 891295 14 11.830531 Anserini +test3056 Q0 732579 15 11.809018 Anserini +test3056 Q0 6935470 16 11.786935 Anserini +test3056 Q0 13166102 17 11.634165 Anserini +test3056 Q0 1508282 18 11.427548 Anserini +test3056 Q0 9742449 19 11.416273 Anserini +test3056 Q0 2570238 20 11.361660 Anserini +test3056 Q0 6472280 21 11.332371 Anserini +test3056 Q0 12770506 22 11.295560 Anserini +test3056 Q0 2832043 23 11.186304 Anserini +test3056 Q0 13166084 24 11.179996 Anserini +test3056 Q0 3387329 25 11.163128 Anserini +test3056 Q0 13014728 26 11.111183 Anserini +test3056 Q0 13166043 27 11.102886 Anserini +test3056 Q0 11084546 28 11.066609 Anserini +test3056 Q0 13166048 29 11.061769 Anserini +test3056 Q0 16768315 30 10.969161 Anserini +test3057 Q0 19727401 1 19.231724 Anserini +test3057 Q0 12750248 2 17.908649 Anserini +test3057 Q0 19727411 3 17.717871 Anserini +test3057 Q0 10616969 4 17.205828 Anserini +test3057 Q0 1627016 5 17.077711 Anserini +test3057 Q0 12750246 6 16.241356 Anserini +test3057 Q0 19619281 7 16.166346 Anserini +test3057 Q0 8025640 8 15.777138 Anserini +test3057 Q0 19727410 9 15.562277 Anserini +test3057 Q0 19727400 10 15.459141 Anserini +test3057 Q0 10616661 11 15.283384 Anserini +test3057 Q0 16357855 12 15.281466 Anserini +test3057 Q0 1627015 13 15.268309 Anserini +test3057 Q0 1627014 14 15.263586 Anserini +test3057 Q0 20198442 15 15.197200 Anserini +test3057 Q0 12750614 16 15.127378 Anserini +test3057 Q0 16357859 17 15.102897 Anserini +test3057 Q0 12803899 18 15.064399 Anserini +test3057 Q0 10044154 19 15.030013 Anserini +test3057 Q0 12752618 20 15.030013 Anserini +test3057 Q0 1626992 21 14.951752 Anserini +test3057 Q0 4815471 22 14.940433 Anserini +test3057 Q0 4815480 23 14.940433 Anserini +test3057 Q0 1627017 24 14.887678 Anserini +test3057 Q0 1721058 25 14.779622 Anserini +test3057 Q0 19619282 26 14.750248 Anserini +test3057 Q0 1626990 27 14.733437 Anserini +test3057 Q0 1627021 28 14.692648 Anserini +test3057 Q0 12747623 29 14.684006 Anserini +test3057 Q0 19727408 30 14.619835 Anserini +test3058 Q0 6743257 1 15.617192 Anserini +test3058 Q0 11812547 2 13.939816 Anserini +test3058 Q0 6743256 3 13.880640 Anserini +test3058 Q0 472724 4 13.828671 Anserini +test3058 Q0 1021185 5 13.710750 Anserini +test3058 Q0 257788 6 13.706004 Anserini +test3058 Q0 11176092 7 13.496752 Anserini +test3058 Q0 18534970 8 13.464933 Anserini +test3058 Q0 5530913 9 13.294804 Anserini +test3058 Q0 1896805 10 13.263712 Anserini +test3058 Q0 10949439 11 13.203519 Anserini +test3058 Q0 6021557 12 13.092160 Anserini +test3058 Q0 1809042 13 13.022866 Anserini +test3058 Q0 10046884 14 12.967251 Anserini +test3058 Q0 18534968 15 12.957377 Anserini +test3058 Q0 5530906 16 12.949222 Anserini +test3058 Q0 19178883 17 12.866118 Anserini +test3058 Q0 18172462 18 12.865007 Anserini +test3058 Q0 8553238 19 12.851151 Anserini +test3058 Q0 11810481 20 12.848351 Anserini +test3058 Q0 953495 21 12.752233 Anserini +test3058 Q0 7007531 22 12.706109 Anserini +test3058 Q0 16520572 23 12.695201 Anserini +test3058 Q0 7723075 24 12.669876 Anserini +test3058 Q0 18853118 25 12.641485 Anserini +test3058 Q0 13452295 26 12.597840 Anserini +test3058 Q0 10339829 27 12.577186 Anserini +test3058 Q0 3863423 28 12.516088 Anserini +test3058 Q0 18909591 29 12.512712 Anserini +test3058 Q0 6239589 30 12.478016 Anserini +test3059 Q0 20372672 1 13.357440 Anserini +test3059 Q0 10264792 2 13.220747 Anserini +test3059 Q0 10264789 3 12.957867 Anserini +test3059 Q0 9077156 4 12.664698 Anserini +test3059 Q0 19983360 5 12.531761 Anserini +test3059 Q0 12511240 6 12.318881 Anserini +test3059 Q0 9941720 7 12.190059 Anserini +test3059 Q0 11581544 8 12.061461 Anserini +test3059 Q0 13616599 9 11.562698 Anserini +test3059 Q0 6600351 10 11.551033 Anserini +test3059 Q0 9054713 11 11.404840 Anserini +test3059 Q0 16274144 12 11.350202 Anserini +test3059 Q0 5409530 13 11.278761 Anserini +test3059 Q0 12570463 14 11.273731 Anserini +test3059 Q0 5877103 15 11.215580 Anserini +test3059 Q0 11764871 16 11.204020 Anserini +test3059 Q0 833776 17 11.156324 Anserini +test3059 Q0 13214706 18 11.130908 Anserini +test3059 Q0 9210532 19 11.096590 Anserini +test3059 Q0 6869869 20 11.090606 Anserini +test3059 Q0 6869866 21 11.090606 Anserini +test3059 Q0 10817019 22 10.961370 Anserini +test3059 Q0 15136231 23 10.865505 Anserini +test3059 Q0 13250066 24 10.843600 Anserini +test3059 Q0 1245105 25 10.804207 Anserini +test3059 Q0 14386462 26 10.697222 Anserini +test3059 Q0 18423230 27 10.683372 Anserini +test3059 Q0 11359125 28 10.680765 Anserini +test3059 Q0 3237594 29 10.678339 Anserini +test3059 Q0 3391163 30 10.667789 Anserini +test306 Q0 18839540 1 13.417480 Anserini +test306 Q0 11026100 2 12.860975 Anserini +test306 Q0 246235 3 11.932841 Anserini +test306 Q0 14677715 4 11.903565 Anserini +test306 Q0 9213257 5 11.747037 Anserini +test306 Q0 9213253 6 11.747037 Anserini +test306 Q0 10740225 7 11.661458 Anserini +test306 Q0 20913012 8 11.592977 Anserini +test306 Q0 4073267 9 11.516718 Anserini +test306 Q0 3296814 10 11.516590 Anserini +test306 Q0 15284401 11 11.491992 Anserini +test306 Q0 12601229 12 11.476517 Anserini +test306 Q0 3296849 13 11.431492 Anserini +test306 Q0 9282121 14 11.395201 Anserini +test306 Q0 11046696 15 11.368868 Anserini +test306 Q0 2768907 16 11.346483 Anserini +test306 Q0 9263376 17 11.338341 Anserini +test306 Q0 3296868 18 11.290700 Anserini +test306 Q0 12685484 19 11.219406 Anserini +test306 Q0 5350569 20 11.178298 Anserini +test306 Q0 18053629 21 11.041912 Anserini +test306 Q0 16970992 22 10.995011 Anserini +test306 Q0 2854356 23 10.990557 Anserini +test306 Q0 246309 24 10.943712 Anserini +test306 Q0 7829410 25 10.933867 Anserini +test306 Q0 8115992 26 10.929453 Anserini +test306 Q0 3296823 27 10.913365 Anserini +test306 Q0 4760320 28 10.894358 Anserini +test306 Q0 5061496 29 10.887724 Anserini +test306 Q0 9263367 30 10.882081 Anserini +test3060 Q0 19708401 1 18.402439 Anserini +test3060 Q0 19708398 2 18.402439 Anserini +test3060 Q0 20517272 3 18.333431 Anserini +test3060 Q0 19708400 4 17.524723 Anserini +test3060 Q0 9953034 5 15.437819 Anserini +test3060 Q0 9953037 6 14.894415 Anserini +test3060 Q0 9953055 7 14.704975 Anserini +test3060 Q0 3255566 8 14.515143 Anserini +test3060 Q0 19708399 9 14.305192 Anserini +test3060 Q0 4444331 10 13.942972 Anserini +test3060 Q0 18003402 11 13.933931 Anserini +test3060 Q0 19517827 12 13.767106 Anserini +test3060 Q0 9953050 13 13.621457 Anserini +test3060 Q0 20125788 14 13.356356 Anserini +test3060 Q0 5092017 15 13.102927 Anserini +test3060 Q0 14993246 16 12.947337 Anserini +test3060 Q0 8768493 17 12.932484 Anserini +test3060 Q0 3255549 18 12.667657 Anserini +test3060 Q0 17540347 19 12.658243 Anserini +test3060 Q0 18003423 20 12.628940 Anserini +test3060 Q0 9953069 21 12.550404 Anserini +test3060 Q0 19469712 22 12.355057 Anserini +test3060 Q0 7661456 23 12.269652 Anserini +test3060 Q0 3255567 24 12.236501 Anserini +test3060 Q0 9953054 25 12.182298 Anserini +test3060 Q0 9953042 26 12.156173 Anserini +test3060 Q0 19325140 27 12.091806 Anserini +test3060 Q0 9953052 28 12.032805 Anserini +test3060 Q0 9953053 29 12.024572 Anserini +test3060 Q0 14808687 30 12.011507 Anserini +test3061 Q0 20530492 1 20.291813 Anserini +test3061 Q0 20530468 2 20.291813 Anserini +test3061 Q0 20530491 3 19.512934 Anserini +test3061 Q0 20530467 4 19.512934 Anserini +test3061 Q0 10765094 5 19.198109 Anserini +test3061 Q0 20518688 6 18.701025 Anserini +test3061 Q0 18983612 7 18.664047 Anserini +test3061 Q0 16899805 8 17.536522 Anserini +test3061 Q0 17867295 9 17.522219 Anserini +test3061 Q0 16899802 10 17.380371 Anserini +test3061 Q0 20518684 11 17.320280 Anserini +test3061 Q0 17993356 12 17.315722 Anserini +test3061 Q0 20402665 13 17.220961 Anserini +test3061 Q0 17093079 14 16.946871 Anserini +test3061 Q0 17093173 15 16.670048 Anserini +test3061 Q0 15305580 16 16.615316 Anserini +test3061 Q0 17869509 17 16.269299 Anserini +test3061 Q0 14266063 18 16.248928 Anserini +test3061 Q0 14266061 19 16.248928 Anserini +test3061 Q0 8065540 20 16.160101 Anserini +test3061 Q0 15613269 21 15.938775 Anserini +test3061 Q0 13598290 22 15.938775 Anserini +test3061 Q0 8065541 23 15.831841 Anserini +test3061 Q0 6987074 24 15.734694 Anserini +test3061 Q0 7121085 25 15.620605 Anserini +test3061 Q0 6306683 26 15.604051 Anserini +test3061 Q0 17895865 27 15.567989 Anserini +test3061 Q0 9407945 28 15.561705 Anserini +test3061 Q0 18517242 29 15.537736 Anserini +test3061 Q0 20518687 30 15.526663 Anserini +test3062 Q0 866320 1 14.602038 Anserini +test3062 Q0 6355610 2 13.231458 Anserini +test3062 Q0 420820 3 12.919394 Anserini +test3062 Q0 6882873 4 12.836287 Anserini +test3062 Q0 3976707 5 12.664234 Anserini +test3062 Q0 420828 6 12.553429 Anserini +test3062 Q0 17991813 7 12.419733 Anserini +test3062 Q0 3727351 8 12.240045 Anserini +test3062 Q0 17605903 9 11.851669 Anserini +test3062 Q0 8576635 10 11.795059 Anserini +test3062 Q0 7858145 11 11.761458 Anserini +test3062 Q0 12037570 12 11.623960 Anserini +test3062 Q0 14546888 13 11.527526 Anserini +test3062 Q0 4841502 14 11.524273 Anserini +test3062 Q0 7914348 15 11.502509 Anserini +test3062 Q0 3752892 16 11.488444 Anserini +test3062 Q0 3727355 17 11.402957 Anserini +test3062 Q0 3211175 18 11.376315 Anserini +test3062 Q0 19336230 19 11.287993 Anserini +test3062 Q0 7904404 20 11.246115 Anserini +test3062 Q0 8777886 21 11.241772 Anserini +test3062 Q0 14635448 22 11.203141 Anserini +test3062 Q0 8543178 23 11.197753 Anserini +test3062 Q0 5322483 24 11.194679 Anserini +test3062 Q0 3727359 25 11.119965 Anserini +test3062 Q0 272692 26 11.119965 Anserini +test3062 Q0 4367475 27 11.116353 Anserini +test3062 Q0 24998 28 11.034669 Anserini +test3062 Q0 4345089 29 11.027825 Anserini +test3062 Q0 14569012 30 10.972602 Anserini +test3063 Q0 17173819 1 13.528858 Anserini +test3063 Q0 19588367 2 12.517745 Anserini +test3063 Q0 17173817 3 11.549564 Anserini +test3063 Q0 17173820 4 11.496549 Anserini +test3063 Q0 18359432 5 10.272483 Anserini +test3063 Q0 18359435 6 10.035387 Anserini +test3063 Q0 18359431 7 10.035387 Anserini +test3063 Q0 19224231 8 9.905443 Anserini +test3063 Q0 16037551 9 9.444538 Anserini +test3063 Q0 18359434 10 9.013241 Anserini +test3063 Q0 19588366 11 8.951077 Anserini +test3063 Q0 16037548 12 8.951077 Anserini +test3063 Q0 3454346 13 8.951077 Anserini +test3063 Q0 17173818 14 8.829284 Anserini +test3063 Q0 17670980 15 8.224794 Anserini +test3063 Q0 10900909 16 8.177049 Anserini +test3063 Q0 18468098 17 8.162964 Anserini +test3063 Q0 16037547 18 8.147623 Anserini +test3063 Q0 13345478 19 8.081603 Anserini +test3063 Q0 20672934 20 8.081603 Anserini +test3063 Q0 8936666 21 8.037621 Anserini +test3063 Q0 20672940 22 7.785413 Anserini +test3063 Q0 6850692 23 7.760360 Anserini +test3063 Q0 6924074 24 7.737911 Anserini +test3063 Q0 10900905 25 7.709276 Anserini +test3063 Q0 19563938 26 7.704309 Anserini +test3063 Q0 19224230 27 7.704309 Anserini +test3063 Q0 17706552 28 7.704309 Anserini +test3063 Q0 10013341 29 7.695549 Anserini +test3063 Q0 473043 30 7.658071 Anserini +test3064 Q0 3160708 1 15.053843 Anserini +test3064 Q0 5762680 2 13.911920 Anserini +test3064 Q0 20641669 3 13.711414 Anserini +test3064 Q0 3917888 4 13.370617 Anserini +test3064 Q0 7320421 5 13.137090 Anserini +test3064 Q0 3160710 6 12.908523 Anserini +test3064 Q0 3160711 7 12.795543 Anserini +test3064 Q0 3160712 8 12.782836 Anserini +test3064 Q0 2260618 9 12.664404 Anserini +test3064 Q0 3160709 10 12.664404 Anserini +test3064 Q0 4705924 11 12.664404 Anserini +test3064 Q0 17272180 12 12.396339 Anserini +test3064 Q0 3160707 13 12.367174 Anserini +test3064 Q0 17864593 14 11.962121 Anserini +test3064 Q0 3160706 15 11.863762 Anserini +test3064 Q0 12267040 16 11.302875 Anserini +test3064 Q0 8254216 17 11.168288 Anserini +test3064 Q0 19913147 18 11.168288 Anserini +test3064 Q0 15673391 19 11.158159 Anserini +test3064 Q0 15673394 20 11.158159 Anserini +test3064 Q0 3160713 21 11.059853 Anserini +test3064 Q0 8254220 22 11.009599 Anserini +test3064 Q0 12267043 23 10.909831 Anserini +test3064 Q0 19009583 24 10.868140 Anserini +test3064 Q0 12997456 25 10.786121 Anserini +test3064 Q0 12408555 26 10.777205 Anserini +test3064 Q0 813120 27 10.631712 Anserini +test3064 Q0 6718865 28 10.558896 Anserini +test3064 Q0 19827394 29 10.521824 Anserini +test3064 Q0 16651154 30 10.517498 Anserini +test3065 Q0 50589 1 18.044590 Anserini +test3065 Q0 848838 2 17.154739 Anserini +test3065 Q0 13880427 3 16.874111 Anserini +test3065 Q0 13880433 4 16.171789 Anserini +test3065 Q0 7973238 5 16.131271 Anserini +test3065 Q0 5559139 6 15.792290 Anserini +test3065 Q0 2801305 7 15.441359 Anserini +test3065 Q0 13880431 8 15.402521 Anserini +test3065 Q0 7272156 9 15.148298 Anserini +test3065 Q0 14789590 10 14.869923 Anserini +test3065 Q0 13880454 11 14.721662 Anserini +test3065 Q0 13880450 12 14.533127 Anserini +test3065 Q0 14789592 13 14.448458 Anserini +test3065 Q0 17721380 14 14.353662 Anserini +test3065 Q0 460813 15 14.147095 Anserini +test3065 Q0 13027268 16 14.015347 Anserini +test3065 Q0 460744 17 13.867701 Anserini +test3065 Q0 7973245 18 13.855555 Anserini +test3065 Q0 14842662 19 13.731117 Anserini +test3065 Q0 10025999 20 13.591324 Anserini +test3065 Q0 13880441 21 13.538295 Anserini +test3065 Q0 10025985 22 13.495247 Anserini +test3065 Q0 13880443 23 13.348343 Anserini +test3065 Q0 7973236 24 13.308260 Anserini +test3065 Q0 19401700 25 13.205520 Anserini +test3065 Q0 13880446 26 13.161624 Anserini +test3065 Q0 464763 27 13.149890 Anserini +test3065 Q0 460739 28 13.061887 Anserini +test3065 Q0 460775 29 12.869023 Anserini +test3065 Q0 18300164 30 12.459088 Anserini +test3066 Q0 12466586 1 13.542489 Anserini +test3066 Q0 4881014 2 12.323545 Anserini +test3066 Q0 445682 3 12.241795 Anserini +test3066 Q0 18652410 4 12.070657 Anserini +test3066 Q0 401785 5 11.826655 Anserini +test3066 Q0 14092462 6 11.765035 Anserini +test3066 Q0 4486852 7 11.516115 Anserini +test3066 Q0 19821986 8 11.255665 Anserini +test3066 Q0 12466618 9 11.195149 Anserini +test3066 Q0 12475322 10 11.174759 Anserini +test3066 Q0 12466650 11 11.123235 Anserini +test3066 Q0 447215 12 11.103392 Anserini +test3066 Q0 20564682 13 11.082982 Anserini +test3066 Q0 1548260 14 10.957512 Anserini +test3066 Q0 11404021 15 10.930391 Anserini +test3066 Q0 10937471 16 10.904387 Anserini +test3066 Q0 447223 17 10.857742 Anserini +test3066 Q0 512663 18 10.833352 Anserini +test3066 Q0 680681 19 10.794549 Anserini +test3066 Q0 20514498 20 10.697443 Anserini +test3066 Q0 2327314 21 10.649922 Anserini +test3066 Q0 16548455 22 10.624986 Anserini +test3066 Q0 90818 23 10.589111 Anserini +test3066 Q0 8043401 24 10.558839 Anserini +test3066 Q0 11652830 25 10.509522 Anserini +test3066 Q0 13445911 26 10.500705 Anserini +test3066 Q0 13878448 27 10.446222 Anserini +test3066 Q0 14883273 28 10.440116 Anserini +test3066 Q0 4270968 29 10.421812 Anserini +test3066 Q0 13959348 30 10.404566 Anserini +test3067 Q0 3598093 1 13.206279 Anserini +test3067 Q0 9115236 2 12.831981 Anserini +test3067 Q0 4883913 3 12.439600 Anserini +test3067 Q0 3552885 4 12.399061 Anserini +test3067 Q0 5264032 5 12.129768 Anserini +test3067 Q0 17411629 6 12.116354 Anserini +test3067 Q0 428521 7 12.020214 Anserini +test3067 Q0 694137 8 11.905272 Anserini +test3067 Q0 9592044 9 11.824272 Anserini +test3067 Q0 643461 10 11.722082 Anserini +test3067 Q0 10313744 11 11.719276 Anserini +test3067 Q0 10313745 12 11.681094 Anserini +test3067 Q0 6480393 13 11.653299 Anserini +test3067 Q0 694136 14 11.415289 Anserini +test3067 Q0 2640334 15 11.395849 Anserini +test3067 Q0 18768914 16 11.392745 Anserini +test3067 Q0 17680420 17 11.304077 Anserini +test3067 Q0 16089137 18 11.298357 Anserini +test3067 Q0 3918204 19 11.270973 Anserini +test3067 Q0 10313719 20 11.168941 Anserini +test3067 Q0 1966644 21 11.100050 Anserini +test3067 Q0 13974573 22 11.044774 Anserini +test3067 Q0 4686330 23 11.020423 Anserini +test3067 Q0 4776308 24 10.996656 Anserini +test3067 Q0 9067565 25 10.904150 Anserini +test3067 Q0 6680132 26 10.901789 Anserini +test3067 Q0 8060487 27 10.897182 Anserini +test3067 Q0 1299358 28 10.829469 Anserini +test3067 Q0 3088141 29 10.811940 Anserini +test3067 Q0 9677821 30 10.793628 Anserini +test3068 Q0 17761880 1 12.880453 Anserini +test3068 Q0 7340758 2 11.595212 Anserini +test3068 Q0 20725524 3 11.562287 Anserini +test3068 Q0 19709331 4 11.518100 Anserini +test3068 Q0 7340752 5 11.360281 Anserini +test3068 Q0 19709338 6 11.308773 Anserini +test3068 Q0 7444804 7 11.256954 Anserini +test3068 Q0 7444803 8 11.219148 Anserini +test3068 Q0 17627468 9 10.490208 Anserini +test3068 Q0 18792005 10 10.451991 Anserini +test3068 Q0 17263748 11 10.158724 Anserini +test3068 Q0 7340753 12 10.104588 Anserini +test3068 Q0 2641726 13 10.091002 Anserini +test3068 Q0 18792004 14 10.075465 Anserini +test3068 Q0 7340756 15 9.919396 Anserini +test3068 Q0 7340754 16 9.876230 Anserini +test3068 Q0 6442450 17 9.602770 Anserini +test3068 Q0 7340757 18 9.591726 Anserini +test3068 Q0 20725528 19 9.513420 Anserini +test3068 Q0 15549697 20 9.491930 Anserini +test3068 Q0 15549699 21 9.491930 Anserini +test3068 Q0 19709334 22 9.430728 Anserini +test3068 Q0 926515 23 9.351912 Anserini +test3068 Q0 17719630 24 9.319705 Anserini +test3068 Q0 5143198 25 9.180056 Anserini +test3068 Q0 15310685 26 9.180056 Anserini +test3068 Q0 698346 27 9.104636 Anserini +test3068 Q0 20725527 28 9.010767 Anserini +test3068 Q0 13960137 29 8.988791 Anserini +test3068 Q0 11100118 30 8.975700 Anserini +test3069 Q0 18478412 1 13.859777 Anserini +test3069 Q0 16893305 2 13.765608 Anserini +test3069 Q0 15436689 3 13.421125 Anserini +test3069 Q0 8924911 4 13.335393 Anserini +test3069 Q0 10226072 5 13.136808 Anserini +test3069 Q0 10226083 6 13.065176 Anserini +test3069 Q0 6889997 7 12.959843 Anserini +test3069 Q0 12144610 8 12.795086 Anserini +test3069 Q0 8387079 9 12.760683 Anserini +test3069 Q0 14324601 10 12.750672 Anserini +test3069 Q0 18069335 11 12.485265 Anserini +test3069 Q0 7720613 12 12.459289 Anserini +test3069 Q0 5580638 13 12.445660 Anserini +test3069 Q0 15173726 14 12.422947 Anserini +test3069 Q0 10821464 15 12.418412 Anserini +test3069 Q0 17323666 16 12.416725 Anserini +test3069 Q0 424382 17 12.391962 Anserini +test3069 Q0 6240521 18 12.368582 Anserini +test3069 Q0 12329229 19 12.355898 Anserini +test3069 Q0 11704560 20 12.295487 Anserini +test3069 Q0 19885538 21 12.263334 Anserini +test3069 Q0 13343126 22 12.256698 Anserini +test3069 Q0 4417356 23 12.205321 Anserini +test3069 Q0 20575715 24 12.198483 Anserini +test3069 Q0 12144575 25 12.178771 Anserini +test3069 Q0 9910458 26 12.163668 Anserini +test3069 Q0 9910459 27 12.163668 Anserini +test3069 Q0 7821145 28 12.132124 Anserini +test3069 Q0 8105355 29 12.096036 Anserini +test3069 Q0 10561946 30 12.096036 Anserini +test307 Q0 13757532 1 10.711527 Anserini +test307 Q0 16543624 2 10.418548 Anserini +test307 Q0 16543626 3 10.418548 Anserini +test307 Q0 17038374 4 10.179598 Anserini +test307 Q0 16945946 5 9.956084 Anserini +test307 Q0 16520115 6 9.858085 Anserini +test307 Q0 14164805 7 9.788906 Anserini +test307 Q0 14164807 8 9.788906 Anserini +test307 Q0 2547786 9 9.730538 Anserini +test307 Q0 18175998 10 9.586627 Anserini +test307 Q0 18176000 11 9.586627 Anserini +test307 Q0 18202914 12 9.538990 Anserini +test307 Q0 17038375 13 9.528293 Anserini +test307 Q0 19081569 14 9.450348 Anserini +test307 Q0 16520117 15 9.357166 Anserini +test307 Q0 18195288 16 9.357054 Anserini +test307 Q0 7048076 17 9.333152 Anserini +test307 Q0 11517788 18 9.326704 Anserini +test307 Q0 20520684 19 9.312856 Anserini +test307 Q0 18182180 20 9.312390 Anserini +test307 Q0 18182618 21 9.262280 Anserini +test307 Q0 18153431 22 9.191607 Anserini +test307 Q0 13757536 23 9.163364 Anserini +test307 Q0 20520667 24 9.133319 Anserini +test307 Q0 14257127 25 9.099482 Anserini +test307 Q0 13094031 26 9.088996 Anserini +test307 Q0 14169012 27 9.088996 Anserini +test307 Q0 476454 28 9.015451 Anserini +test307 Q0 20520693 29 9.006513 Anserini +test307 Q0 476452 30 9.000118 Anserini +test3070 Q0 7393380 1 13.460306 Anserini +test3070 Q0 3863132 2 13.406624 Anserini +test3070 Q0 1865661 3 13.292344 Anserini +test3070 Q0 11264676 4 13.273884 Anserini +test3070 Q0 12984290 5 13.104553 Anserini +test3070 Q0 2190226 6 13.021610 Anserini +test3070 Q0 5446696 7 12.917216 Anserini +test3070 Q0 14121335 8 12.886907 Anserini +test3070 Q0 367953 9 12.867346 Anserini +test3070 Q0 7386146 10 12.677958 Anserini +test3070 Q0 10892429 11 12.675615 Anserini +test3070 Q0 11039780 12 12.565739 Anserini +test3070 Q0 8635275 13 12.538369 Anserini +test3070 Q0 4139414 14 12.491507 Anserini +test3070 Q0 8343875 15 12.375404 Anserini +test3070 Q0 9357224 16 12.374399 Anserini +test3070 Q0 5015866 17 12.319030 Anserini +test3070 Q0 480856 18 12.246256 Anserini +test3070 Q0 11302926 19 12.163786 Anserini +test3070 Q0 1393090 20 12.059365 Anserini +test3070 Q0 15505593 21 12.001608 Anserini +test3070 Q0 10533425 22 11.991367 Anserini +test3070 Q0 4925344 23 11.978727 Anserini +test3070 Q0 11243936 24 11.968307 Anserini +test3070 Q0 8997353 25 11.968214 Anserini +test3070 Q0 846125 26 11.942135 Anserini +test3070 Q0 1949872 27 11.912075 Anserini +test3070 Q0 8338491 28 11.841313 Anserini +test3070 Q0 8609990 29 11.811753 Anserini +test3070 Q0 307925 30 11.792964 Anserini +test3071 Q0 15697166 1 21.842773 Anserini +test3071 Q0 19772951 2 21.610720 Anserini +test3071 Q0 20513670 3 21.162676 Anserini +test3071 Q0 19772964 4 21.059423 Anserini +test3071 Q0 15487016 5 20.845264 Anserini +test3071 Q0 19612355 6 20.799719 Anserini +test3071 Q0 19772959 7 20.732924 Anserini +test3071 Q0 17003090 8 20.343613 Anserini +test3071 Q0 15257665 9 20.281488 Anserini +test3071 Q0 16531927 10 20.230385 Anserini +test3071 Q0 18244019 11 20.088951 Anserini +test3071 Q0 18473150 12 19.890608 Anserini +test3071 Q0 19772958 13 19.813805 Anserini +test3071 Q0 7231752 14 19.780861 Anserini +test3071 Q0 9160716 15 19.755745 Anserini +test3071 Q0 17547439 16 19.533998 Anserini +test3071 Q0 17351694 17 19.492809 Anserini +test3071 Q0 14297282 18 19.482775 Anserini +test3071 Q0 20009584 19 19.476841 Anserini +test3071 Q0 20458647 20 19.463230 Anserini +test3071 Q0 5908061 21 19.461235 Anserini +test3071 Q0 19273544 22 19.417057 Anserini +test3071 Q0 12215675 23 19.335659 Anserini +test3071 Q0 19772957 24 19.274660 Anserini +test3071 Q0 19296110 25 19.196339 Anserini +test3071 Q0 17003092 26 19.194633 Anserini +test3071 Q0 18473174 27 19.176893 Anserini +test3071 Q0 18473151 28 19.147333 Anserini +test3071 Q0 2702843 29 19.113375 Anserini +test3071 Q0 10152060 30 19.027803 Anserini +test3072 Q0 5642232 1 24.561375 Anserini +test3072 Q0 5642217 2 22.920485 Anserini +test3072 Q0 5642219 3 21.801245 Anserini +test3072 Q0 20420594 4 21.780071 Anserini +test3072 Q0 5642221 5 19.359001 Anserini +test3072 Q0 20420593 6 19.296904 Anserini +test3072 Q0 2815058 7 19.182224 Anserini +test3072 Q0 5642222 8 19.123770 Anserini +test3072 Q0 20420595 9 17.708904 Anserini +test3072 Q0 20420597 10 17.677515 Anserini +test3072 Q0 20420596 11 17.507217 Anserini +test3072 Q0 5642223 12 17.409546 Anserini +test3072 Q0 5642220 13 16.392265 Anserini +test3072 Q0 20420598 14 16.383381 Anserini +test3072 Q0 375122 15 14.192508 Anserini +test3072 Q0 16266071 16 13.945598 Anserini +test3072 Q0 5642231 17 13.876640 Anserini +test3072 Q0 20420592 18 13.876640 Anserini +test3072 Q0 5642229 19 13.805472 Anserini +test3072 Q0 20420602 20 13.735031 Anserini +test3072 Q0 5642227 21 12.943617 Anserini +test3072 Q0 5768801 22 12.888299 Anserini +test3072 Q0 5768777 23 12.864527 Anserini +test3072 Q0 5768796 24 12.826004 Anserini +test3072 Q0 5768816 25 12.722321 Anserini +test3072 Q0 5768793 26 12.639013 Anserini +test3072 Q0 4042279 27 12.569805 Anserini +test3072 Q0 5768781 28 12.569805 Anserini +test3072 Q0 5768792 29 12.569805 Anserini +test3072 Q0 18198075 30 12.504652 Anserini +test3073 Q0 20911631 1 13.869699 Anserini +test3073 Q0 20866869 2 13.332876 Anserini +test3073 Q0 20911629 3 12.826560 Anserini +test3073 Q0 2071681 4 12.767226 Anserini +test3073 Q0 20911611 5 12.641652 Anserini +test3073 Q0 2190180 6 12.508915 Anserini +test3073 Q0 10931309 7 12.431946 Anserini +test3073 Q0 9655631 8 12.272401 Anserini +test3073 Q0 9655632 9 12.192740 Anserini +test3073 Q0 13685665 10 12.160307 Anserini +test3073 Q0 19651295 11 12.150273 Anserini +test3073 Q0 4240744 12 12.119834 Anserini +test3073 Q0 4240760 13 11.972301 Anserini +test3073 Q0 2816014 14 11.955626 Anserini +test3073 Q0 19792381 15 11.948131 Anserini +test3073 Q0 4240763 16 11.945003 Anserini +test3073 Q0 4240735 17 11.768662 Anserini +test3073 Q0 17843421 18 11.750385 Anserini +test3073 Q0 20911628 19 11.739013 Anserini +test3073 Q0 2214002 20 11.678638 Anserini +test3073 Q0 9443190 21 11.662892 Anserini +test3073 Q0 4069866 22 11.639880 Anserini +test3073 Q0 17224046 23 11.603631 Anserini +test3073 Q0 18957732 24 11.594959 Anserini +test3073 Q0 17843391 25 11.558672 Anserini +test3073 Q0 17843396 26 11.514030 Anserini +test3073 Q0 18957722 27 11.468579 Anserini +test3073 Q0 19057530 28 11.460939 Anserini +test3073 Q0 7031519 29 11.387896 Anserini +test3073 Q0 9691604 30 11.374791 Anserini +test3074 Q0 897621 1 16.402536 Anserini +test3074 Q0 2058899 2 15.501820 Anserini +test3074 Q0 5360765 3 15.387842 Anserini +test3074 Q0 5634613 4 15.088058 Anserini +test3074 Q0 17843839 5 14.684828 Anserini +test3074 Q0 4134102 6 14.556512 Anserini +test3074 Q0 19139607 7 14.546685 Anserini +test3074 Q0 5360764 8 14.216697 Anserini +test3074 Q0 11635068 9 14.155356 Anserini +test3074 Q0 5633810 10 14.143779 Anserini +test3074 Q0 7806981 11 13.933120 Anserini +test3074 Q0 5633809 12 13.826128 Anserini +test3074 Q0 7141816 13 13.760082 Anserini +test3074 Q0 13189717 14 13.752208 Anserini +test3074 Q0 9323839 15 13.722610 Anserini +test3074 Q0 5306565 16 13.693332 Anserini +test3074 Q0 3137411 17 13.692954 Anserini +test3074 Q0 5306566 18 13.510787 Anserini +test3074 Q0 12325328 19 13.508794 Anserini +test3074 Q0 5633808 20 13.456615 Anserini +test3074 Q0 9825588 21 13.452020 Anserini +test3074 Q0 7525560 22 13.405169 Anserini +test3074 Q0 7525563 23 13.405169 Anserini +test3074 Q0 4878238 24 13.396491 Anserini +test3074 Q0 11635067 25 13.391104 Anserini +test3074 Q0 12985295 26 13.382685 Anserini +test3074 Q0 772842 27 13.382685 Anserini +test3074 Q0 5341687 28 13.212914 Anserini +test3074 Q0 5050395 29 13.160151 Anserini +test3074 Q0 5050400 30 13.160151 Anserini +test3075 Q0 10757785 1 14.778037 Anserini +test3075 Q0 7670371 2 14.620131 Anserini +test3075 Q0 4226500 3 14.609335 Anserini +test3075 Q0 783459 4 14.260778 Anserini +test3075 Q0 6667697 5 14.258370 Anserini +test3075 Q0 13200107 6 14.075392 Anserini +test3075 Q0 8379499 7 14.049076 Anserini +test3075 Q0 3704046 8 14.013232 Anserini +test3075 Q0 258374 9 13.959140 Anserini +test3075 Q0 21009665 10 13.937607 Anserini +test3075 Q0 8356727 11 13.779202 Anserini +test3075 Q0 8260363 12 13.745820 Anserini +test3075 Q0 6514108 13 13.740582 Anserini +test3075 Q0 4320200 14 13.584746 Anserini +test3075 Q0 4314005 15 13.501958 Anserini +test3075 Q0 11358911 16 13.385121 Anserini +test3075 Q0 926317 17 13.344705 Anserini +test3075 Q0 19174275 18 13.329282 Anserini +test3075 Q0 19486807 19 13.315701 Anserini +test3075 Q0 5729401 20 13.304228 Anserini +test3075 Q0 21009666 21 13.291241 Anserini +test3075 Q0 5751525 22 13.227447 Anserini +test3075 Q0 13200105 23 13.190138 Anserini +test3075 Q0 19174270 24 13.124205 Anserini +test3075 Q0 18712706 25 13.102777 Anserini +test3075 Q0 5846830 26 13.069399 Anserini +test3075 Q0 2716586 27 13.048712 Anserini +test3075 Q0 6514111 28 13.003155 Anserini +test3075 Q0 19174273 29 12.954766 Anserini +test3075 Q0 9145696 30 12.901137 Anserini +test3076 Q0 2927294 1 17.039879 Anserini +test3076 Q0 2927271 2 17.039879 Anserini +test3076 Q0 2927277 3 15.102708 Anserini +test3076 Q0 8693642 4 14.664747 Anserini +test3076 Q0 881208 5 14.333437 Anserini +test3076 Q0 2927292 6 13.926116 Anserini +test3076 Q0 147879 7 13.744017 Anserini +test3076 Q0 2927287 8 13.714524 Anserini +test3076 Q0 2927286 9 13.071551 Anserini +test3076 Q0 14506210 10 12.909248 Anserini +test3076 Q0 1777054 11 12.586092 Anserini +test3076 Q0 2927279 12 12.480932 Anserini +test3076 Q0 2417149 13 12.357519 Anserini +test3076 Q0 7600329 14 12.320361 Anserini +test3076 Q0 147880 15 12.316433 Anserini +test3076 Q0 9385537 16 12.275968 Anserini +test3076 Q0 9180602 17 12.197054 Anserini +test3076 Q0 2927291 18 12.123899 Anserini +test3076 Q0 2927283 19 12.076471 Anserini +test3076 Q0 3084519 20 12.053237 Anserini +test3076 Q0 881216 21 11.989038 Anserini +test3076 Q0 3104986 22 11.975624 Anserini +test3076 Q0 13249631 23 11.932235 Anserini +test3076 Q0 6966345 24 11.859732 Anserini +test3076 Q0 5423995 25 11.759031 Anserini +test3076 Q0 2927290 26 11.717278 Anserini +test3076 Q0 1777070 27 11.648227 Anserini +test3076 Q0 4075297 28 11.648227 Anserini +test3076 Q0 2927273 29 11.618572 Anserini +test3076 Q0 14861387 30 11.616891 Anserini +test3077 Q0 7170380 1 18.913376 Anserini +test3077 Q0 790778 2 17.235981 Anserini +test3077 Q0 8335094 3 17.082642 Anserini +test3077 Q0 4069954 4 16.969341 Anserini +test3077 Q0 967819 5 16.722389 Anserini +test3077 Q0 10057586 6 16.703068 Anserini +test3077 Q0 8335093 7 16.560631 Anserini +test3077 Q0 868637 8 16.508389 Anserini +test3077 Q0 20047785 9 16.347971 Anserini +test3077 Q0 967691 10 16.272078 Anserini +test3077 Q0 18871155 11 16.218380 Anserini +test3077 Q0 18871170 12 16.218380 Anserini +test3077 Q0 3083417 13 16.165033 Anserini +test3077 Q0 8860480 14 15.761900 Anserini +test3077 Q0 13459110 15 15.743556 Anserini +test3077 Q0 967820 16 15.601800 Anserini +test3077 Q0 2958701 17 15.288753 Anserini +test3077 Q0 3089931 18 15.146285 Anserini +test3077 Q0 5710311 19 14.914159 Anserini +test3077 Q0 790788 20 14.914159 Anserini +test3077 Q0 5710308 21 14.802595 Anserini +test3077 Q0 3089906 22 14.744126 Anserini +test3077 Q0 14249155 23 14.534395 Anserini +test3077 Q0 790776 24 14.407804 Anserini +test3077 Q0 7170383 25 14.197238 Anserini +test3077 Q0 7170379 26 14.197238 Anserini +test3077 Q0 4707289 27 13.949760 Anserini +test3077 Q0 790779 28 13.924253 Anserini +test3077 Q0 13421987 29 13.777269 Anserini +test3077 Q0 11333769 30 13.754019 Anserini +test3078 Q0 319287 1 22.411560 Anserini +test3078 Q0 10973120 2 21.304630 Anserini +test3078 Q0 319315 3 20.126545 Anserini +test3078 Q0 21870 4 19.904116 Anserini +test3078 Q0 20615578 5 19.469248 Anserini +test3078 Q0 18032395 6 19.383005 Anserini +test3078 Q0 1930197 7 18.338306 Anserini +test3078 Q0 874036 8 18.300997 Anserini +test3078 Q0 20615569 9 17.997242 Anserini +test3078 Q0 10181973 10 17.905664 Anserini +test3078 Q0 10181979 11 17.802624 Anserini +test3078 Q0 5332563 12 17.449810 Anserini +test3078 Q0 19557634 13 17.416246 Anserini +test3078 Q0 319304 14 17.347870 Anserini +test3078 Q0 20615599 15 16.988611 Anserini +test3078 Q0 6611949 16 16.887274 Anserini +test3078 Q0 6133066 17 16.747175 Anserini +test3078 Q0 874037 18 16.747175 Anserini +test3078 Q0 360862 19 16.741827 Anserini +test3078 Q0 874029 20 16.595520 Anserini +test3078 Q0 10268372 21 16.343475 Anserini +test3078 Q0 7170079 22 16.318504 Anserini +test3078 Q0 21862 23 16.180248 Anserini +test3078 Q0 19557631 24 15.901714 Anserini +test3078 Q0 9149647 25 15.819134 Anserini +test3078 Q0 1667771 26 15.808380 Anserini +test3078 Q0 874035 27 15.743303 Anserini +test3078 Q0 319316 28 15.602963 Anserini +test3078 Q0 18017985 29 15.501444 Anserini +test3078 Q0 319290 30 15.478445 Anserini +test3079 Q0 13433290 1 12.890541 Anserini +test3079 Q0 1820472 2 12.578135 Anserini +test3079 Q0 18753206 3 12.567074 Anserini +test3079 Q0 16595719 4 12.461945 Anserini +test3079 Q0 9161778 5 12.461945 Anserini +test3079 Q0 14072440 6 12.357775 Anserini +test3079 Q0 1820491 7 12.247759 Anserini +test3079 Q0 19583746 8 12.103767 Anserini +test3079 Q0 19583744 9 12.103767 Anserini +test3079 Q0 2096811 10 12.072735 Anserini +test3079 Q0 7754811 11 11.967436 Anserini +test3079 Q0 2737701 12 11.870005 Anserini +test3079 Q0 19597923 13 11.856391 Anserini +test3079 Q0 11904999 14 11.730309 Anserini +test3079 Q0 2096807 15 11.676956 Anserini +test3079 Q0 11343570 16 11.401648 Anserini +test3079 Q0 105525 17 11.363087 Anserini +test3079 Q0 18136391 18 11.255600 Anserini +test3079 Q0 6420190 19 11.206333 Anserini +test3079 Q0 20526461 20 11.204234 Anserini +test3079 Q0 20580054 21 11.174854 Anserini +test3079 Q0 17702062 22 11.089820 Anserini +test3079 Q0 14072439 23 11.039928 Anserini +test3079 Q0 20465640 24 11.007682 Anserini +test3079 Q0 6543218 25 10.974087 Anserini +test3079 Q0 14770194 26 10.973606 Anserini +test3079 Q0 13066740 27 10.973326 Anserini +test3079 Q0 1820485 28 10.919830 Anserini +test3079 Q0 105540 29 10.916394 Anserini +test3079 Q0 18136392 30 10.916394 Anserini +test308 Q0 13574390 1 11.217073 Anserini +test308 Q0 13574430 2 11.217073 Anserini +test308 Q0 2907548 3 11.074237 Anserini +test308 Q0 14221452 4 11.000030 Anserini +test308 Q0 2907524 5 10.940763 Anserini +test308 Q0 2907523 6 10.930502 Anserini +test308 Q0 19383179 7 10.926919 Anserini +test308 Q0 4189587 8 10.800358 Anserini +test308 Q0 4189553 9 10.727377 Anserini +test308 Q0 19383203 10 10.609621 Anserini +test308 Q0 19383175 11 10.540408 Anserini +test308 Q0 9165955 12 10.528437 Anserini +test308 Q0 9165953 13 10.503055 Anserini +test308 Q0 4693824 14 10.452356 Anserini +test308 Q0 840367 15 10.452356 Anserini +test308 Q0 2876467 16 10.125109 Anserini +test308 Q0 13574420 17 10.125109 Anserini +test308 Q0 19383199 18 10.100072 Anserini +test308 Q0 5871956 19 10.052505 Anserini +test308 Q0 5871946 20 10.052505 Anserini +test308 Q0 840573 21 10.009259 Anserini +test308 Q0 2907513 22 10.009259 Anserini +test308 Q0 2907560 23 10.009259 Anserini +test308 Q0 2907565 24 10.009259 Anserini +test308 Q0 19383194 25 10.005395 Anserini +test308 Q0 4189575 26 9.934910 Anserini +test308 Q0 16908676 27 9.928358 Anserini +test308 Q0 840564 28 9.889618 Anserini +test308 Q0 16908689 29 9.843948 Anserini +test308 Q0 14460061 30 9.775279 Anserini +test3080 Q0 16965525 1 20.706942 Anserini +test3080 Q0 5804969 2 19.728676 Anserini +test3080 Q0 20601406 3 17.063810 Anserini +test3080 Q0 6332875 4 16.039442 Anserini +test3080 Q0 1384239 5 15.199293 Anserini +test3080 Q0 1384238 6 15.144226 Anserini +test3080 Q0 5804972 7 14.128042 Anserini +test3080 Q0 20601407 8 14.043276 Anserini +test3080 Q0 1384254 9 13.832695 Anserini +test3080 Q0 1384255 10 13.681869 Anserini +test3080 Q0 1384249 11 13.599464 Anserini +test3080 Q0 1384256 12 13.484699 Anserini +test3080 Q0 2519685 13 13.393538 Anserini +test3080 Q0 5994246 14 13.364190 Anserini +test3080 Q0 5804974 15 13.278342 Anserini +test3080 Q0 6332866 16 13.190022 Anserini +test3080 Q0 1384241 17 13.040186 Anserini +test3080 Q0 19469321 18 12.956450 Anserini +test3080 Q0 1384252 19 12.911559 Anserini +test3080 Q0 5804982 20 12.681915 Anserini +test3080 Q0 1384244 21 12.645098 Anserini +test3080 Q0 2519700 22 12.637479 Anserini +test3080 Q0 1384258 23 12.558332 Anserini +test3080 Q0 1384248 24 12.526632 Anserini +test3080 Q0 5804973 25 12.467800 Anserini +test3080 Q0 5804970 26 12.391891 Anserini +test3080 Q0 16965516 27 12.314515 Anserini +test3080 Q0 6633803 28 11.936777 Anserini +test3080 Q0 5804977 29 11.851029 Anserini +test3080 Q0 19469323 30 11.835444 Anserini +test3081 Q0 1483908 1 11.450529 Anserini +test3081 Q0 13355284 2 10.554561 Anserini +test3081 Q0 4837327 3 10.525958 Anserini +test3081 Q0 19770673 4 10.455912 Anserini +test3081 Q0 1483910 5 10.416656 Anserini +test3081 Q0 5269363 6 10.349553 Anserini +test3081 Q0 2630614 7 10.244061 Anserini +test3081 Q0 14176195 8 10.126615 Anserini +test3081 Q0 12193229 9 10.044046 Anserini +test3081 Q0 18733713 10 10.019361 Anserini +test3081 Q0 6165295 11 9.985435 Anserini +test3081 Q0 10676335 12 9.804866 Anserini +test3081 Q0 14805492 13 9.791786 Anserini +test3081 Q0 17480116 14 9.746170 Anserini +test3081 Q0 17282195 15 9.744921 Anserini +test3081 Q0 14805491 16 9.736590 Anserini +test3081 Q0 19700182 17 9.712238 Anserini +test3081 Q0 4980108 18 9.660464 Anserini +test3081 Q0 16361038 19 9.635272 Anserini +test3081 Q0 1994759 20 9.629977 Anserini +test3081 Q0 10709352 21 9.578088 Anserini +test3081 Q0 18765326 22 9.553144 Anserini +test3081 Q0 1265132 23 9.493204 Anserini +test3081 Q0 6567061 24 9.490684 Anserini +test3081 Q0 1687079 25 9.469476 Anserini +test3081 Q0 4422777 26 9.456554 Anserini +test3081 Q0 1696047 27 9.451874 Anserini +test3081 Q0 9632693 28 9.443186 Anserini +test3081 Q0 15570416 29 9.419189 Anserini +test3081 Q0 18748927 30 9.393792 Anserini +test3082 Q0 12691441 1 12.832512 Anserini +test3082 Q0 18115617 2 12.217856 Anserini +test3082 Q0 6311850 3 12.159010 Anserini +test3082 Q0 5531080 4 11.988547 Anserini +test3082 Q0 1213 5 11.977433 Anserini +test3082 Q0 7088875 6 11.954143 Anserini +test3082 Q0 282933 7 11.923581 Anserini +test3082 Q0 9535150 8 11.860345 Anserini +test3082 Q0 13665991 9 11.748775 Anserini +test3082 Q0 18115620 10 11.665631 Anserini +test3082 Q0 16133351 11 11.551182 Anserini +test3082 Q0 10940770 12 11.317238 Anserini +test3082 Q0 6973979 13 11.271594 Anserini +test3082 Q0 1418933 14 11.257834 Anserini +test3082 Q0 4526113 15 11.241046 Anserini +test3082 Q0 18662854 16 11.233732 Anserini +test3082 Q0 4526119 17 11.219104 Anserini +test3082 Q0 2615705 18 11.163477 Anserini +test3082 Q0 3232831 19 11.111582 Anserini +test3082 Q0 13728460 20 10.997970 Anserini +test3082 Q0 15870202 21 10.932749 Anserini +test3082 Q0 3623400 22 10.901989 Anserini +test3082 Q0 501909 23 10.860661 Anserini +test3082 Q0 11610587 24 10.850583 Anserini +test3082 Q0 20950954 25 10.830508 Anserini +test3082 Q0 283038 26 10.781419 Anserini +test3082 Q0 6498318 27 10.775110 Anserini +test3082 Q0 16171786 28 10.757677 Anserini +test3082 Q0 9895280 29 10.739616 Anserini +test3082 Q0 11282807 30 10.723032 Anserini +test3083 Q0 823577 1 12.833045 Anserini +test3083 Q0 18236613 2 12.791962 Anserini +test3083 Q0 17228527 3 12.768276 Anserini +test3083 Q0 20663349 4 12.553518 Anserini +test3083 Q0 823581 5 12.127200 Anserini +test3083 Q0 9113255 6 12.026861 Anserini +test3083 Q0 16973850 7 11.961386 Anserini +test3083 Q0 927336 8 11.936272 Anserini +test3083 Q0 823589 9 11.935888 Anserini +test3083 Q0 16973848 10 11.894811 Anserini +test3083 Q0 823600 11 11.752916 Anserini +test3083 Q0 12067952 12 11.748543 Anserini +test3083 Q0 823585 13 11.735036 Anserini +test3083 Q0 18071741 14 11.660705 Anserini +test3083 Q0 823588 15 11.533123 Anserini +test3083 Q0 3420185 16 11.508461 Anserini +test3083 Q0 18024824 17 11.488372 Anserini +test3083 Q0 20005964 18 11.463631 Anserini +test3083 Q0 13861001 19 11.463631 Anserini +test3083 Q0 4036614 20 11.384847 Anserini +test3083 Q0 20663350 21 11.378017 Anserini +test3083 Q0 17221791 22 11.348195 Anserini +test3083 Q0 7244809 23 11.306252 Anserini +test3083 Q0 8363185 24 11.263443 Anserini +test3083 Q0 6154981 25 11.253841 Anserini +test3083 Q0 10767613 26 11.238747 Anserini +test3083 Q0 16675197 27 11.231663 Anserini +test3083 Q0 15400887 28 11.228426 Anserini +test3083 Q0 8363167 29 11.211522 Anserini +test3083 Q0 7906967 30 11.163319 Anserini +test3084 Q0 7756175 1 10.044791 Anserini +test3084 Q0 15561354 2 9.803936 Anserini +test3084 Q0 7756173 3 9.627112 Anserini +test3084 Q0 7756174 4 9.576430 Anserini +test3084 Q0 5556264 5 9.385893 Anserini +test3084 Q0 3016115 6 9.322512 Anserini +test3084 Q0 7756176 7 9.268592 Anserini +test3084 Q0 5556255 8 9.249403 Anserini +test3084 Q0 4561408 9 9.029031 Anserini +test3084 Q0 9790863 10 9.007389 Anserini +test3084 Q0 3685336 11 8.875673 Anserini +test3084 Q0 230791 12 8.838039 Anserini +test3084 Q0 12127466 13 8.819427 Anserini +test3084 Q0 2348583 14 8.698849 Anserini +test3084 Q0 13591448 15 8.698849 Anserini +test3084 Q0 13591446 16 8.698849 Anserini +test3084 Q0 230790 17 8.658149 Anserini +test3084 Q0 6457984 18 8.617959 Anserini +test3084 Q0 2348575 19 8.617959 Anserini +test3084 Q0 5556260 20 8.560707 Anserini +test3084 Q0 19230542 21 8.459970 Anserini +test3084 Q0 13052701 22 8.418189 Anserini +test3084 Q0 9378872 23 8.405598 Anserini +test3084 Q0 3533890 24 8.405598 Anserini +test3084 Q0 15569104 25 8.404230 Anserini +test3084 Q0 14401151 26 8.404230 Anserini +test3084 Q0 10674728 27 8.404230 Anserini +test3084 Q0 9790871 28 8.360081 Anserini +test3084 Q0 13617374 29 8.352008 Anserini +test3084 Q0 20180743 30 8.352008 Anserini +test3085 Q0 19671954 1 14.220694 Anserini +test3085 Q0 19671953 2 13.961012 Anserini +test3085 Q0 19692037 3 13.450865 Anserini +test3085 Q0 3705056 4 13.047239 Anserini +test3085 Q0 20636075 5 12.916716 Anserini +test3085 Q0 16638611 6 12.784714 Anserini +test3085 Q0 19691547 7 12.713644 Anserini +test3085 Q0 20480787 8 12.491823 Anserini +test3085 Q0 20480790 9 12.491823 Anserini +test3085 Q0 2384515 10 12.425874 Anserini +test3085 Q0 20502116 11 12.386064 Anserini +test3085 Q0 3705044 12 12.355808 Anserini +test3085 Q0 10528459 13 12.349191 Anserini +test3085 Q0 19671963 14 12.285768 Anserini +test3085 Q0 20636074 15 12.138268 Anserini +test3085 Q0 2388828 16 12.057814 Anserini +test3085 Q0 20539161 17 11.985360 Anserini +test3085 Q0 19998394 18 11.950685 Anserini +test3085 Q0 19671956 19 11.925282 Anserini +test3085 Q0 19880738 20 11.922276 Anserini +test3085 Q0 20460327 21 11.888630 Anserini +test3085 Q0 19691562 22 11.881824 Anserini +test3085 Q0 19671974 23 11.860967 Anserini +test3085 Q0 18444077 24 11.847773 Anserini +test3085 Q0 20636071 25 11.784704 Anserini +test3085 Q0 16701448 26 11.772285 Anserini +test3085 Q0 20636072 27 11.769583 Anserini +test3085 Q0 19450004 28 11.571377 Anserini +test3085 Q0 14787647 29 11.548213 Anserini +test3085 Q0 19671976 30 11.542034 Anserini +test3086 Q0 12050698 1 12.465991 Anserini +test3086 Q0 7322346 2 11.753930 Anserini +test3086 Q0 19998608 3 11.644029 Anserini +test3086 Q0 19998609 4 11.644029 Anserini +test3086 Q0 9632693 5 11.426624 Anserini +test3086 Q0 7322345 6 11.397554 Anserini +test3086 Q0 12050699 7 11.211860 Anserini +test3086 Q0 17254893 8 11.011136 Anserini +test3086 Q0 20458444 9 10.949145 Anserini +test3086 Q0 20794225 10 10.902107 Anserini +test3086 Q0 1355426 11 10.865307 Anserini +test3086 Q0 9591368 12 10.837641 Anserini +test3086 Q0 3237594 13 10.774450 Anserini +test3086 Q0 19822286 14 10.726066 Anserini +test3086 Q0 19822287 15 10.726066 Anserini +test3086 Q0 3407318 16 10.716416 Anserini +test3086 Q0 18818853 17 10.673450 Anserini +test3086 Q0 13801473 18 10.591452 Anserini +test3086 Q0 20266414 19 10.558538 Anserini +test3086 Q0 10426205 20 10.552036 Anserini +test3086 Q0 4295474 21 10.552036 Anserini +test3086 Q0 8840504 22 10.533606 Anserini +test3086 Q0 9777818 23 10.520004 Anserini +test3086 Q0 5300852 24 10.503809 Anserini +test3086 Q0 16676291 25 10.481305 Anserini +test3086 Q0 16829441 26 10.473756 Anserini +test3086 Q0 13515906 27 10.458632 Anserini +test3086 Q0 9023120 28 10.448661 Anserini +test3086 Q0 17296514 29 10.439661 Anserini +test3086 Q0 12050693 30 10.437963 Anserini +test3087 Q0 383911 1 18.870264 Anserini +test3087 Q0 12435 2 17.673075 Anserini +test3087 Q0 7239781 3 17.350925 Anserini +test3087 Q0 3439079 4 17.348866 Anserini +test3087 Q0 596947 5 17.335007 Anserini +test3087 Q0 2344205 6 17.245771 Anserini +test3087 Q0 7061937 7 16.804264 Anserini +test3087 Q0 1278772 8 16.682388 Anserini +test3087 Q0 2344199 9 16.623816 Anserini +test3087 Q0 383912 10 16.549559 Anserini +test3087 Q0 383921 11 16.469954 Anserini +test3087 Q0 596948 12 16.355057 Anserini +test3087 Q0 3227691 13 16.214817 Anserini +test3087 Q0 18814767 14 15.800366 Anserini +test3087 Q0 18814768 15 15.800366 Anserini +test3087 Q0 108600 16 15.748946 Anserini +test3087 Q0 930345 17 15.711016 Anserini +test3087 Q0 5636892 18 15.630789 Anserini +test3087 Q0 108591 19 15.480637 Anserini +test3087 Q0 2450983 20 15.403362 Anserini +test3087 Q0 4975117 21 15.370996 Anserini +test3087 Q0 417415 22 15.366592 Anserini +test3087 Q0 9137173 23 15.361195 Anserini +test3087 Q0 592645 24 15.299510 Anserini +test3087 Q0 2961953 25 15.204480 Anserini +test3087 Q0 12506815 26 15.154688 Anserini +test3087 Q0 1863474 27 15.120046 Anserini +test3087 Q0 7061942 28 15.072671 Anserini +test3087 Q0 383914 29 15.050367 Anserini +test3087 Q0 11496280 30 15.016793 Anserini +test3088 Q0 14963071 1 10.603840 Anserini +test3088 Q0 14963070 2 9.923717 Anserini +test3088 Q0 14963072 3 9.765210 Anserini +test3088 Q0 14857251 4 9.732039 Anserini +test3088 Q0 15225803 5 9.560304 Anserini +test3088 Q0 20442744 6 9.526925 Anserini +test3088 Q0 18677185 7 9.414564 Anserini +test3088 Q0 7978018 8 9.377422 Anserini +test3088 Q0 18684253 9 9.367624 Anserini +test3088 Q0 13967057 10 9.330480 Anserini +test3088 Q0 16814912 11 9.299321 Anserini +test3088 Q0 14246115 12 9.236605 Anserini +test3088 Q0 14599436 13 9.090516 Anserini +test3088 Q0 18168210 14 8.978389 Anserini +test3088 Q0 5660389 15 8.971796 Anserini +test3088 Q0 17847396 16 8.902584 Anserini +test3088 Q0 2572128 17 8.893101 Anserini +test3088 Q0 6147087 18 8.869742 Anserini +test3088 Q0 6147084 19 8.866904 Anserini +test3088 Q0 20442743 20 8.837101 Anserini +test3088 Q0 17474214 21 8.835073 Anserini +test3088 Q0 5101761 22 8.783746 Anserini +test3088 Q0 18383987 23 8.758077 Anserini +test3088 Q0 15626581 24 8.713636 Anserini +test3088 Q0 13218375 25 8.703535 Anserini +test3088 Q0 13967061 26 8.675138 Anserini +test3088 Q0 14796443 27 8.669255 Anserini +test3088 Q0 12376453 28 8.667290 Anserini +test3088 Q0 19451830 29 8.659831 Anserini +test3088 Q0 17967571 30 8.658538 Anserini +test3089 Q0 4146065 1 18.334660 Anserini +test3089 Q0 1064702 2 17.190197 Anserini +test3089 Q0 13915584 3 17.138384 Anserini +test3089 Q0 4146066 4 16.925341 Anserini +test3089 Q0 13915580 5 16.485292 Anserini +test3089 Q0 1064730 6 16.411522 Anserini +test3089 Q0 4146062 7 16.112654 Anserini +test3089 Q0 4146060 8 15.932450 Anserini +test3089 Q0 11003348 9 15.661437 Anserini +test3089 Q0 1064760 10 15.381721 Anserini +test3089 Q0 1064734 11 15.041994 Anserini +test3089 Q0 11142968 12 14.994238 Anserini +test3089 Q0 13915585 13 14.391952 Anserini +test3089 Q0 9132547 14 14.204607 Anserini +test3089 Q0 1064722 15 13.937339 Anserini +test3089 Q0 4146063 16 13.828674 Anserini +test3089 Q0 4072975 17 13.786219 Anserini +test3089 Q0 3784628 18 13.743474 Anserini +test3089 Q0 5683453 19 13.538583 Anserini +test3089 Q0 15465505 20 13.468938 Anserini +test3089 Q0 1064716 21 13.412917 Anserini +test3089 Q0 4146061 22 13.402356 Anserini +test3089 Q0 7671363 23 13.272058 Anserini +test3089 Q0 11844553 24 12.987957 Anserini +test3089 Q0 3784419 25 12.951847 Anserini +test3089 Q0 12676602 26 12.936461 Anserini +test3089 Q0 1064709 27 12.934748 Anserini +test3089 Q0 1574460 28 12.755656 Anserini +test3089 Q0 6384052 29 12.678343 Anserini +test3089 Q0 1064728 30 12.623026 Anserini +test309 Q0 9741233 1 16.231354 Anserini +test309 Q0 19807840 2 16.082100 Anserini +test309 Q0 4327961 3 15.520500 Anserini +test309 Q0 12843981 4 15.515886 Anserini +test309 Q0 7167384 5 15.036429 Anserini +test309 Q0 9975617 6 15.004617 Anserini +test309 Q0 20017117 7 14.923239 Anserini +test309 Q0 7135127 8 14.908700 Anserini +test309 Q0 20017120 9 14.683126 Anserini +test309 Q0 9936795 10 14.660245 Anserini +test309 Q0 14206422 11 14.582210 Anserini +test309 Q0 20017161 12 14.548406 Anserini +test309 Q0 14206408 13 14.491244 Anserini +test309 Q0 271616 14 14.435684 Anserini +test309 Q0 4582510 15 14.279667 Anserini +test309 Q0 10094990 16 14.277969 Anserini +test309 Q0 1941939 17 14.195855 Anserini +test309 Q0 4554809 18 14.168379 Anserini +test309 Q0 271646 19 14.118254 Anserini +test309 Q0 14521852 20 14.055476 Anserini +test309 Q0 20017147 21 14.054465 Anserini +test309 Q0 6471470 22 13.993212 Anserini +test309 Q0 12843941 23 13.896237 Anserini +test309 Q0 271647 24 13.840790 Anserini +test309 Q0 271642 25 13.820036 Anserini +test309 Q0 8915792 26 13.743869 Anserini +test309 Q0 9816079 27 13.739506 Anserini +test309 Q0 14206463 28 13.726387 Anserini +test309 Q0 20017158 29 13.724430 Anserini +test309 Q0 271639 30 13.713732 Anserini +test3090 Q0 13272657 1 20.359783 Anserini +test3090 Q0 150869 2 19.805889 Anserini +test3090 Q0 16660934 3 17.754915 Anserini +test3090 Q0 17938441 4 17.708834 Anserini +test3090 Q0 2343024 5 17.560984 Anserini +test3090 Q0 15012381 6 17.030750 Anserini +test3090 Q0 9974067 7 16.740385 Anserini +test3090 Q0 2343027 8 16.411903 Anserini +test3090 Q0 15012395 9 16.108938 Anserini +test3090 Q0 14465271 10 15.420679 Anserini +test3090 Q0 15012397 11 15.236461 Anserini +test3090 Q0 1694304 12 15.171134 Anserini +test3090 Q0 10811699 13 14.839577 Anserini +test3090 Q0 9634864 14 14.576969 Anserini +test3090 Q0 13272659 15 14.490504 Anserini +test3090 Q0 10891296 16 14.367334 Anserini +test3090 Q0 7055101 17 14.253533 Anserini +test3090 Q0 2137664 18 14.025030 Anserini +test3090 Q0 13272648 19 13.986014 Anserini +test3090 Q0 150870 20 13.928419 Anserini +test3090 Q0 17864650 21 13.925908 Anserini +test3090 Q0 15012382 22 13.135108 Anserini +test3090 Q0 3514080 23 12.946418 Anserini +test3090 Q0 9898160 24 12.920815 Anserini +test3090 Q0 186117 25 12.919370 Anserini +test3090 Q0 9981011 26 12.619764 Anserini +test3090 Q0 10512664 27 12.490419 Anserini +test3090 Q0 2449756 28 12.227446 Anserini +test3090 Q0 13889428 29 12.222942 Anserini +test3090 Q0 13008840 30 12.209667 Anserini +test3091 Q0 19815285 1 17.592142 Anserini +test3091 Q0 8227172 2 16.116411 Anserini +test3091 Q0 936403 3 16.116411 Anserini +test3091 Q0 8226450 4 14.726610 Anserini +test3091 Q0 19955538 5 14.410025 Anserini +test3091 Q0 19815286 6 14.304495 Anserini +test3091 Q0 7312058 7 14.109796 Anserini +test3091 Q0 17941665 8 12.704514 Anserini +test3091 Q0 12074844 9 11.905228 Anserini +test3091 Q0 15529530 10 11.461091 Anserini +test3091 Q0 8759624 11 11.337080 Anserini +test3091 Q0 3779337 12 11.247104 Anserini +test3091 Q0 11343719 13 11.193933 Anserini +test3091 Q0 3098029 14 10.869408 Anserini +test3091 Q0 19820580 15 10.838328 Anserini +test3091 Q0 13154595 16 10.653276 Anserini +test3091 Q0 7928454 17 10.624748 Anserini +test3091 Q0 15558729 18 10.613308 Anserini +test3091 Q0 7670733 19 10.510593 Anserini +test3091 Q0 8759625 20 10.492921 Anserini +test3091 Q0 18702339 21 10.339331 Anserini +test3091 Q0 8525721 22 10.334923 Anserini +test3091 Q0 8525722 23 10.292736 Anserini +test3091 Q0 4712188 24 10.278119 Anserini +test3091 Q0 8525720 25 10.250893 Anserini +test3091 Q0 8152886 26 10.228664 Anserini +test3091 Q0 7902055 27 10.220412 Anserini +test3091 Q0 18351213 28 10.217514 Anserini +test3091 Q0 17899136 29 10.188280 Anserini +test3091 Q0 2518821 30 10.121714 Anserini +test3092 Q0 10453420 1 12.676534 Anserini +test3092 Q0 10453402 2 12.536701 Anserini +test3092 Q0 10262134 3 12.335243 Anserini +test3092 Q0 10475244 4 12.315454 Anserini +test3092 Q0 11865958 5 12.307993 Anserini +test3092 Q0 303911 6 12.182246 Anserini +test3092 Q0 8261303 7 12.114468 Anserini +test3092 Q0 10503733 8 12.084950 Anserini +test3092 Q0 19559971 9 12.081234 Anserini +test3092 Q0 19559984 10 12.026478 Anserini +test3092 Q0 3148135 11 12.002891 Anserini +test3092 Q0 15395894 12 11.997341 Anserini +test3092 Q0 17985523 13 11.972260 Anserini +test3092 Q0 12987658 14 11.970893 Anserini +test3092 Q0 8484896 15 11.955031 Anserini +test3092 Q0 3151483 16 11.882301 Anserini +test3092 Q0 11630932 17 11.824014 Anserini +test3092 Q0 10459102 18 11.792817 Anserini +test3092 Q0 11865981 19 11.787102 Anserini +test3092 Q0 303932 20 11.785110 Anserini +test3092 Q0 10863210 21 11.736485 Anserini +test3092 Q0 8484962 22 11.695358 Anserini +test3092 Q0 10461181 23 11.609674 Anserini +test3092 Q0 10461178 24 11.609674 Anserini +test3092 Q0 15395897 25 11.582939 Anserini +test3092 Q0 15395919 26 11.578256 Anserini +test3092 Q0 8482751 27 11.555394 Anserini +test3092 Q0 15395892 28 11.523051 Anserini +test3092 Q0 14503288 29 11.523051 Anserini +test3092 Q0 14503291 30 11.518143 Anserini +test3093 Q0 19390573 1 16.591135 Anserini +test3093 Q0 19390567 2 16.509747 Anserini +test3093 Q0 3186481 3 15.906550 Anserini +test3093 Q0 19390572 4 15.595242 Anserini +test3093 Q0 19390571 5 15.252789 Anserini +test3093 Q0 19390565 6 15.007038 Anserini +test3093 Q0 8065480 7 13.892038 Anserini +test3093 Q0 11966177 8 13.289209 Anserini +test3093 Q0 11966178 9 13.171786 Anserini +test3093 Q0 19670101 10 12.636199 Anserini +test3093 Q0 2579379 11 12.562710 Anserini +test3093 Q0 7604433 12 12.459645 Anserini +test3093 Q0 6978705 13 12.429047 Anserini +test3093 Q0 4411120 14 12.397600 Anserini +test3093 Q0 4411106 15 12.298384 Anserini +test3093 Q0 9230723 16 12.255149 Anserini +test3093 Q0 3186431 17 12.164421 Anserini +test3093 Q0 3186480 18 11.878809 Anserini +test3093 Q0 11149993 19 11.874734 Anserini +test3093 Q0 11149995 20 11.826262 Anserini +test3093 Q0 3186470 21 11.810013 Anserini +test3093 Q0 16144377 22 11.791045 Anserini +test3093 Q0 8669607 23 11.674385 Anserini +test3093 Q0 4411117 24 11.674385 Anserini +test3093 Q0 3186448 25 11.627680 Anserini +test3093 Q0 3186482 26 11.453432 Anserini +test3093 Q0 2236170 27 11.431410 Anserini +test3093 Q0 15008636 28 11.426558 Anserini +test3093 Q0 2077626 29 11.387627 Anserini +test3093 Q0 15816805 30 11.333347 Anserini +test3094 Q0 11498568 1 14.228229 Anserini +test3094 Q0 4039673 2 13.911371 Anserini +test3094 Q0 5948769 3 13.221326 Anserini +test3094 Q0 14219881 4 12.902499 Anserini +test3094 Q0 3681715 5 12.812630 Anserini +test3094 Q0 11152105 6 12.744251 Anserini +test3094 Q0 7022983 7 12.632856 Anserini +test3094 Q0 11545351 8 12.171119 Anserini +test3094 Q0 7022988 9 11.945783 Anserini +test3094 Q0 7015412 10 11.866326 Anserini +test3094 Q0 3709269 11 11.695992 Anserini +test3094 Q0 13453022 12 11.596601 Anserini +test3094 Q0 9033699 13 11.308283 Anserini +test3094 Q0 5651951 14 11.297393 Anserini +test3094 Q0 9349717 15 11.239963 Anserini +test3094 Q0 5610182 16 11.238852 Anserini +test3094 Q0 12644422 17 11.176096 Anserini +test3094 Q0 14219880 18 11.131161 Anserini +test3094 Q0 771353 19 11.061374 Anserini +test3094 Q0 771338 20 11.061374 Anserini +test3094 Q0 11606048 21 11.050545 Anserini +test3094 Q0 18538662 22 10.980713 Anserini +test3094 Q0 2913591 23 10.959046 Anserini +test3094 Q0 1277472 24 10.950555 Anserini +test3094 Q0 18605044 25 10.940845 Anserini +test3094 Q0 18538666 26 10.902046 Anserini +test3094 Q0 18605045 27 10.885399 Anserini +test3094 Q0 2008551 28 10.869641 Anserini +test3094 Q0 19437213 29 10.868640 Anserini +test3094 Q0 602263 30 10.798807 Anserini +test3095 Q0 7040482 1 12.945333 Anserini +test3095 Q0 18607694 2 12.750002 Anserini +test3095 Q0 9242490 3 12.576305 Anserini +test3095 Q0 11565178 4 12.197463 Anserini +test3095 Q0 2965097 5 12.030748 Anserini +test3095 Q0 19546416 6 11.936790 Anserini +test3095 Q0 3424755 7 11.863243 Anserini +test3095 Q0 14334799 8 11.837152 Anserini +test3095 Q0 3667200 9 11.808807 Anserini +test3095 Q0 14334803 10 11.685057 Anserini +test3095 Q0 13823983 11 11.280165 Anserini +test3095 Q0 5226903 12 11.250339 Anserini +test3095 Q0 8805142 13 11.162146 Anserini +test3095 Q0 16637643 14 11.004559 Anserini +test3095 Q0 4713717 15 10.995378 Anserini +test3095 Q0 19057550 16 10.986505 Anserini +test3095 Q0 4908451 17 10.936927 Anserini +test3095 Q0 3623359 18 10.930646 Anserini +test3095 Q0 1997147 19 10.920119 Anserini +test3095 Q0 17837955 20 10.872817 Anserini +test3095 Q0 6449544 21 10.862119 Anserini +test3095 Q0 12275318 22 10.852660 Anserini +test3095 Q0 8066195 23 10.729596 Anserini +test3095 Q0 4461206 24 10.729121 Anserini +test3095 Q0 7335589 25 10.688854 Anserini +test3095 Q0 8912822 26 10.680887 Anserini +test3095 Q0 5784984 27 10.680394 Anserini +test3095 Q0 7112774 28 10.661802 Anserini +test3095 Q0 1414838 29 10.658381 Anserini +test3095 Q0 7109673 30 10.645096 Anserini +test3096 Q0 4634381 1 20.748209 Anserini +test3096 Q0 4634389 2 18.847548 Anserini +test3096 Q0 4634382 3 17.540573 Anserini +test3096 Q0 4634384 4 16.750984 Anserini +test3096 Q0 4634388 5 16.579166 Anserini +test3096 Q0 4634387 6 14.661793 Anserini +test3096 Q0 15726361 7 13.003399 Anserini +test3096 Q0 10454675 8 12.695005 Anserini +test3096 Q0 18107415 9 12.428750 Anserini +test3096 Q0 5036974 10 12.281811 Anserini +test3096 Q0 18954084 11 12.267973 Anserini +test3096 Q0 4634383 12 12.135594 Anserini +test3096 Q0 10454679 13 11.559214 Anserini +test3096 Q0 4634385 14 11.464230 Anserini +test3096 Q0 4634386 15 11.225375 Anserini +test3096 Q0 6288291 16 11.225375 Anserini +test3096 Q0 16718941 17 11.139634 Anserini +test3096 Q0 1484079 18 11.109642 Anserini +test3096 Q0 13479081 19 11.025245 Anserini +test3096 Q0 6154731 20 10.942126 Anserini +test3096 Q0 4972600 21 10.786842 Anserini +test3096 Q0 5036981 22 10.776120 Anserini +test3096 Q0 18965244 23 10.751974 Anserini +test3096 Q0 7774980 24 10.624667 Anserini +test3096 Q0 7774981 25 10.624667 Anserini +test3096 Q0 16870342 26 10.601442 Anserini +test3096 Q0 13587617 27 10.588283 Anserini +test3096 Q0 3051761 28 10.571592 Anserini +test3096 Q0 10560746 29 10.547889 Anserini +test3096 Q0 17397824 30 10.456440 Anserini +test3097 Q0 18343008 1 12.009886 Anserini +test3097 Q0 14127370 2 11.677068 Anserini +test3097 Q0 19450439 3 11.266706 Anserini +test3097 Q0 18343015 4 11.254874 Anserini +test3097 Q0 1974872 5 11.160037 Anserini +test3097 Q0 9284469 6 11.146811 Anserini +test3097 Q0 15934080 7 11.074213 Anserini +test3097 Q0 18343018 8 10.940091 Anserini +test3097 Q0 19817668 9 10.865185 Anserini +test3097 Q0 9284470 10 10.776462 Anserini +test3097 Q0 18342993 11 10.725801 Anserini +test3097 Q0 18343000 12 10.688238 Anserini +test3097 Q0 9284464 13 10.632271 Anserini +test3097 Q0 18343014 14 10.544826 Anserini +test3097 Q0 18343010 15 10.544826 Anserini +test3097 Q0 3126314 16 10.529234 Anserini +test3097 Q0 5906678 17 10.509462 Anserini +test3097 Q0 15934072 18 10.347355 Anserini +test3097 Q0 9284465 19 10.111905 Anserini +test3097 Q0 9425189 20 10.077736 Anserini +test3097 Q0 19450436 21 10.067896 Anserini +test3097 Q0 8760011 22 10.005429 Anserini +test3097 Q0 18342994 23 9.986682 Anserini +test3097 Q0 3126312 24 9.971694 Anserini +test3097 Q0 18343003 25 9.829039 Anserini +test3097 Q0 18342995 26 9.768441 Anserini +test3097 Q0 17755076 27 9.752801 Anserini +test3097 Q0 9284468 28 9.689585 Anserini +test3097 Q0 18343002 29 9.689585 Anserini +test3097 Q0 18343012 30 9.627192 Anserini +test3098 Q0 4185098 1 22.114157 Anserini +test3098 Q0 4245777 2 20.682842 Anserini +test3098 Q0 16858081 3 19.431664 Anserini +test3098 Q0 394809 4 18.932293 Anserini +test3098 Q0 4185097 5 18.840118 Anserini +test3098 Q0 394869 6 18.565575 Anserini +test3098 Q0 4450417 7 18.347500 Anserini +test3098 Q0 394466 8 18.196318 Anserini +test3098 Q0 18084511 9 17.803049 Anserini +test3098 Q0 395042 10 17.800535 Anserini +test3098 Q0 2717141 11 17.184649 Anserini +test3098 Q0 7031705 12 17.109217 Anserini +test3098 Q0 3159700 13 17.013397 Anserini +test3098 Q0 1491924 14 16.917048 Anserini +test3098 Q0 393985 15 16.684357 Anserini +test3098 Q0 541787 16 16.646330 Anserini +test3098 Q0 394908 17 16.634825 Anserini +test3098 Q0 376035 18 16.289944 Anserini +test3098 Q0 16858080 19 16.193394 Anserini +test3098 Q0 3200144 20 16.141262 Anserini +test3098 Q0 5732106 21 16.047455 Anserini +test3098 Q0 2163445 22 15.993038 Anserini +test3098 Q0 5581744 23 15.982248 Anserini +test3098 Q0 394663 24 15.972288 Anserini +test3098 Q0 394025 25 15.939402 Anserini +test3098 Q0 2484660 26 15.852289 Anserini +test3098 Q0 394195 27 15.813805 Anserini +test3098 Q0 4243440 28 15.798982 Anserini +test3098 Q0 12051626 29 15.738177 Anserini +test3098 Q0 2515136 30 15.690399 Anserini +test3099 Q0 7841707 1 22.012115 Anserini +test3099 Q0 12394980 2 21.799225 Anserini +test3099 Q0 7841709 3 21.519638 Anserini +test3099 Q0 12557568 4 20.490149 Anserini +test3099 Q0 12394987 5 19.689571 Anserini +test3099 Q0 12394984 6 19.454008 Anserini +test3099 Q0 12394983 7 19.422501 Anserini +test3099 Q0 7841708 8 19.422501 Anserini +test3099 Q0 12394985 9 18.986050 Anserini +test3099 Q0 12394982 10 18.922552 Anserini +test3099 Q0 12394981 11 18.877115 Anserini +test3099 Q0 12394986 12 17.755692 Anserini +test3099 Q0 7841717 13 17.571362 Anserini +test3099 Q0 7841705 14 17.461882 Anserini +test3099 Q0 7841711 15 17.120659 Anserini +test3099 Q0 12394978 16 16.968601 Anserini +test3099 Q0 7841716 17 16.949772 Anserini +test3099 Q0 12394977 18 16.913319 Anserini +test3099 Q0 7841714 19 16.415918 Anserini +test3099 Q0 12557569 20 16.315388 Anserini +test3099 Q0 12557623 21 16.315388 Anserini +test3099 Q0 7841710 22 16.241268 Anserini +test3099 Q0 12557570 23 15.586146 Anserini +test3099 Q0 7841712 24 14.836435 Anserini +test3099 Q0 6045306 25 14.631780 Anserini +test3099 Q0 7841713 26 14.324596 Anserini +test3099 Q0 12394979 27 14.088496 Anserini +test3099 Q0 3844768 28 13.286112 Anserini +test3099 Q0 7841715 29 13.086081 Anserini +test3099 Q0 8751515 30 13.058081 Anserini +test31 Q0 11818406 1 11.557425 Anserini +test31 Q0 11385582 2 11.517282 Anserini +test31 Q0 12433741 3 11.287834 Anserini +test31 Q0 4021544 4 11.276119 Anserini +test31 Q0 1432846 5 11.268244 Anserini +test31 Q0 12433756 6 10.982183 Anserini +test31 Q0 1432812 7 10.919142 Anserini +test31 Q0 12433744 8 10.819505 Anserini +test31 Q0 2041035 9 10.721066 Anserini +test31 Q0 1432813 10 10.719828 Anserini +test31 Q0 11303905 11 10.586761 Anserini +test31 Q0 1432832 12 10.577708 Anserini +test31 Q0 9339776 13 10.520419 Anserini +test31 Q0 1432808 14 10.293766 Anserini +test31 Q0 1432836 15 10.245270 Anserini +test31 Q0 1432860 16 10.244938 Anserini +test31 Q0 12838905 17 10.238568 Anserini +test31 Q0 4021545 18 10.218759 Anserini +test31 Q0 9465438 19 10.164193 Anserini +test31 Q0 1905499 20 10.091925 Anserini +test31 Q0 7798548 21 10.090572 Anserini +test31 Q0 8123661 22 10.038555 Anserini +test31 Q0 1432850 23 10.031419 Anserini +test31 Q0 12640433 24 9.989697 Anserini +test31 Q0 1432859 25 9.988643 Anserini +test31 Q0 1432830 26 9.987071 Anserini +test31 Q0 9513732 27 9.985385 Anserini +test31 Q0 1432837 28 9.985385 Anserini +test31 Q0 6769287 29 9.956420 Anserini +test31 Q0 11430441 30 9.956420 Anserini +test310 Q0 15632093 1 13.608109 Anserini +test310 Q0 15632094 2 13.119413 Anserini +test310 Q0 6346679 3 12.834518 Anserini +test310 Q0 6346704 4 11.968004 Anserini +test310 Q0 14775063 5 11.887928 Anserini +test310 Q0 6346699 6 11.602961 Anserini +test310 Q0 6346680 7 11.465545 Anserini +test310 Q0 14775084 8 11.301375 Anserini +test310 Q0 6346703 9 11.267646 Anserini +test310 Q0 6346689 10 11.243116 Anserini +test310 Q0 6346692 11 11.243116 Anserini +test310 Q0 14775054 12 11.243116 Anserini +test310 Q0 14775067 13 11.243116 Anserini +test310 Q0 18880366 14 11.156973 Anserini +test310 Q0 7133322 15 10.964357 Anserini +test310 Q0 7721651 16 10.831747 Anserini +test310 Q0 14775074 17 10.640718 Anserini +test310 Q0 19349974 18 10.628420 Anserini +test310 Q0 18144220 19 10.521671 Anserini +test310 Q0 14775066 20 10.447550 Anserini +test310 Q0 14775076 21 10.441823 Anserini +test310 Q0 6346698 22 10.379974 Anserini +test310 Q0 17009941 23 10.364314 Anserini +test310 Q0 17748807 24 10.290486 Anserini +test310 Q0 6346691 25 10.240194 Anserini +test310 Q0 18111261 26 10.166874 Anserini +test310 Q0 14775057 27 10.156769 Anserini +test310 Q0 4414764 28 10.097958 Anserini +test310 Q0 4414765 29 10.097958 Anserini +test310 Q0 6346693 30 10.097958 Anserini +test3100 Q0 5459676 1 24.223007 Anserini +test3100 Q0 5459668 2 21.594692 Anserini +test3100 Q0 5459671 3 19.111191 Anserini +test3100 Q0 5459672 4 17.861658 Anserini +test3100 Q0 5459670 5 17.612833 Anserini +test3100 Q0 5459669 6 16.625093 Anserini +test3100 Q0 5459673 7 15.842693 Anserini +test3100 Q0 4720572 8 12.854165 Anserini +test3100 Q0 13322228 9 12.811884 Anserini +test3100 Q0 13322225 10 12.811884 Anserini +test3100 Q0 10020090 11 12.534483 Anserini +test3100 Q0 20902441 12 12.410522 Anserini +test3100 Q0 13353482 13 12.371638 Anserini +test3100 Q0 1979287 14 11.927242 Anserini +test3100 Q0 16785903 15 11.734179 Anserini +test3100 Q0 5459674 16 11.664566 Anserini +test3100 Q0 5899428 17 11.583664 Anserini +test3100 Q0 18225468 18 11.526957 Anserini +test3100 Q0 18225470 19 11.526957 Anserini +test3100 Q0 1740014 20 11.508121 Anserini +test3100 Q0 15833544 21 11.450678 Anserini +test3100 Q0 5453438 22 11.215678 Anserini +test3100 Q0 14301065 23 11.158878 Anserini +test3100 Q0 14301073 24 11.158878 Anserini +test3100 Q0 19575436 25 11.136001 Anserini +test3100 Q0 19575437 26 11.136001 Anserini +test3100 Q0 11414794 27 11.122870 Anserini +test3100 Q0 3829164 28 11.082669 Anserini +test3100 Q0 4050843 29 11.051100 Anserini +test3100 Q0 19119782 30 11.036163 Anserini +test3101 Q0 20584848 1 12.533158 Anserini +test3101 Q0 5770044 2 12.214685 Anserini +test3101 Q0 14530212 3 11.755958 Anserini +test3101 Q0 9536291 4 11.676298 Anserini +test3101 Q0 5770043 5 11.638678 Anserini +test3101 Q0 14530211 6 11.544420 Anserini +test3101 Q0 15490246 7 11.278952 Anserini +test3101 Q0 1282178 8 11.205910 Anserini +test3101 Q0 7294683 9 11.123104 Anserini +test3101 Q0 4887044 10 11.064877 Anserini +test3101 Q0 1282183 11 10.791437 Anserini +test3101 Q0 17954331 12 10.785693 Anserini +test3101 Q0 17924413 13 10.757384 Anserini +test3101 Q0 7294682 14 10.674064 Anserini +test3101 Q0 10833737 15 10.631602 Anserini +test3101 Q0 678745 16 10.564582 Anserini +test3101 Q0 17607378 17 10.563412 Anserini +test3101 Q0 20584845 18 10.553232 Anserini +test3101 Q0 2111345 19 10.504651 Anserini +test3101 Q0 1282188 20 10.456973 Anserini +test3101 Q0 1282182 21 10.409647 Anserini +test3101 Q0 16116164 22 10.342406 Anserini +test3101 Q0 17127476 23 10.098080 Anserini +test3101 Q0 15600205 24 10.095545 Anserini +test3101 Q0 14885825 25 10.091787 Anserini +test3101 Q0 17889003 26 10.082073 Anserini +test3101 Q0 1780663 27 10.030557 Anserini +test3101 Q0 13369820 28 10.025644 Anserini +test3101 Q0 13235357 29 10.020741 Anserini +test3101 Q0 8050911 30 10.008456 Anserini +test3102 Q0 4341639 1 13.199871 Anserini +test3102 Q0 4342038 2 12.775396 Anserini +test3102 Q0 2884875 3 12.572533 Anserini +test3102 Q0 14004994 4 12.442740 Anserini +test3102 Q0 2758881 5 12.428230 Anserini +test3102 Q0 7765956 6 12.337128 Anserini +test3102 Q0 3960947 7 12.079366 Anserini +test3102 Q0 3528876 8 11.930855 Anserini +test3102 Q0 16343261 9 11.904104 Anserini +test3102 Q0 3952671 10 11.782849 Anserini +test3102 Q0 3236134 11 11.780753 Anserini +test3102 Q0 4342151 12 11.701636 Anserini +test3102 Q0 4922604 13 11.633631 Anserini +test3102 Q0 3964271 14 11.601939 Anserini +test3102 Q0 3922680 15 11.553112 Anserini +test3102 Q0 15208048 16 11.457520 Anserini +test3102 Q0 9571344 17 11.438875 Anserini +test3102 Q0 1863440 18 11.387664 Anserini +test3102 Q0 3980269 19 11.376359 Anserini +test3102 Q0 17835336 20 11.369347 Anserini +test3102 Q0 7273527 21 11.367197 Anserini +test3102 Q0 4662864 22 11.335872 Anserini +test3102 Q0 2370567 23 11.291861 Anserini +test3102 Q0 11996125 24 11.284908 Anserini +test3102 Q0 2413786 25 11.220918 Anserini +test3102 Q0 3952672 26 11.193482 Anserini +test3102 Q0 11009396 27 11.145898 Anserini +test3102 Q0 989085 28 11.107694 Anserini +test3102 Q0 18801372 29 11.102152 Anserini +test3102 Q0 16257155 30 11.081885 Anserini +test3103 Q0 3945965 1 23.593651 Anserini +test3103 Q0 3945967 2 22.147923 Anserini +test3103 Q0 2454964 3 22.078245 Anserini +test3103 Q0 2454965 4 21.035509 Anserini +test3103 Q0 4477692 5 19.638857 Anserini +test3103 Q0 16605116 6 17.705467 Anserini +test3103 Q0 3945966 7 15.915007 Anserini +test3103 Q0 15382082 8 15.610487 Anserini +test3103 Q0 401964 9 15.610487 Anserini +test3103 Q0 1766850 10 15.555262 Anserini +test3103 Q0 6580767 11 15.395830 Anserini +test3103 Q0 17761728 12 15.322345 Anserini +test3103 Q0 16605117 13 13.059701 Anserini +test3103 Q0 15151495 14 12.636446 Anserini +test3103 Q0 7955334 15 12.496592 Anserini +test3103 Q0 4477693 16 11.947609 Anserini +test3103 Q0 15026345 17 11.541946 Anserini +test3103 Q0 15943955 18 11.331663 Anserini +test3103 Q0 15040082 19 11.130836 Anserini +test3103 Q0 1003608 20 10.830105 Anserini +test3103 Q0 7325875 21 10.715488 Anserini +test3103 Q0 5120366 22 10.495800 Anserini +test3103 Q0 10251827 23 10.453520 Anserini +test3103 Q0 10251836 24 10.453520 Anserini +test3103 Q0 17654931 25 10.449406 Anserini +test3103 Q0 15904992 26 10.412198 Anserini +test3103 Q0 15904994 27 10.412198 Anserini +test3103 Q0 4967552 28 10.312888 Anserini +test3103 Q0 18561013 29 10.189360 Anserini +test3103 Q0 12249231 30 10.018974 Anserini +test3104 Q0 10358943 1 16.191904 Anserini +test3104 Q0 8258445 2 13.041890 Anserini +test3104 Q0 18141332 3 12.522277 Anserini +test3104 Q0 4219554 4 12.125309 Anserini +test3104 Q0 18141330 5 11.811957 Anserini +test3104 Q0 12864356 6 11.802614 Anserini +test3104 Q0 11155544 7 11.756086 Anserini +test3104 Q0 16239329 8 11.488150 Anserini +test3104 Q0 19015027 9 11.296760 Anserini +test3104 Q0 11721702 10 11.212052 Anserini +test3104 Q0 19582250 11 11.175750 Anserini +test3104 Q0 20488160 12 11.084692 Anserini +test3104 Q0 4598137 13 11.069310 Anserini +test3104 Q0 17059433 14 10.877469 Anserini +test3104 Q0 18141325 15 10.871012 Anserini +test3104 Q0 11141324 16 10.862576 Anserini +test3104 Q0 16336238 17 10.756973 Anserini +test3104 Q0 18141327 18 10.750081 Anserini +test3104 Q0 16126861 19 10.745914 Anserini +test3104 Q0 7287464 20 10.683218 Anserini +test3104 Q0 9795237 21 10.651507 Anserini +test3104 Q0 10053559 22 10.575726 Anserini +test3104 Q0 8285779 23 10.572964 Anserini +test3104 Q0 8620338 24 10.568749 Anserini +test3104 Q0 1413803 25 10.489308 Anserini +test3104 Q0 17527663 26 10.472579 Anserini +test3104 Q0 12764058 27 10.467538 Anserini +test3104 Q0 18265750 28 10.464861 Anserini +test3104 Q0 10498441 29 10.403435 Anserini +test3104 Q0 10798172 30 10.370831 Anserini +test3105 Q0 11001532 1 18.029362 Anserini +test3105 Q0 5278789 2 17.998220 Anserini +test3105 Q0 17150306 3 17.735504 Anserini +test3105 Q0 17575904 4 17.314505 Anserini +test3105 Q0 7171036 5 17.261070 Anserini +test3105 Q0 17150343 6 17.105934 Anserini +test3105 Q0 17150337 7 17.045464 Anserini +test3105 Q0 3705047 8 16.993336 Anserini +test3105 Q0 7167443 9 16.815725 Anserini +test3105 Q0 11434127 10 16.772827 Anserini +test3105 Q0 17111152 11 16.762609 Anserini +test3105 Q0 17617867 12 16.710140 Anserini +test3105 Q0 502481 13 16.650759 Anserini +test3105 Q0 17568226 14 16.640373 Anserini +test3105 Q0 19671970 15 16.549625 Anserini +test3105 Q0 7318637 16 16.540216 Anserini +test3105 Q0 6591595 17 16.517233 Anserini +test3105 Q0 16503662 18 16.514103 Anserini +test3105 Q0 17739821 19 16.475838 Anserini +test3105 Q0 11001534 20 16.468857 Anserini +test3105 Q0 20518683 21 16.372820 Anserini +test3105 Q0 17568228 22 16.334764 Anserini +test3105 Q0 9908162 23 16.300989 Anserini +test3105 Q0 14285594 24 16.240417 Anserini +test3105 Q0 17568224 25 16.231133 Anserini +test3105 Q0 16754536 26 16.230463 Anserini +test3105 Q0 17753391 27 16.220507 Anserini +test3105 Q0 17111154 28 16.217960 Anserini +test3105 Q0 17568068 29 16.213938 Anserini +test3105 Q0 11679224 30 16.213717 Anserini +test3106 Q0 13410446 1 11.901635 Anserini +test3106 Q0 4741695 2 11.875229 Anserini +test3106 Q0 13411218 3 11.826461 Anserini +test3106 Q0 5883810 4 11.733086 Anserini +test3106 Q0 13410447 5 11.662841 Anserini +test3106 Q0 11519054 6 11.605702 Anserini +test3106 Q0 6364968 7 11.522111 Anserini +test3106 Q0 6364958 8 11.408084 Anserini +test3106 Q0 6688786 9 11.383299 Anserini +test3106 Q0 13947689 10 11.173895 Anserini +test3106 Q0 7675402 11 11.126513 Anserini +test3106 Q0 13409730 12 10.992694 Anserini +test3106 Q0 3711255 13 10.933264 Anserini +test3106 Q0 17799893 14 10.848068 Anserini +test3106 Q0 8143064 15 10.835653 Anserini +test3106 Q0 9422615 16 10.832892 Anserini +test3106 Q0 4742248 17 10.740857 Anserini +test3106 Q0 13588739 18 10.721230 Anserini +test3106 Q0 14950166 19 10.678240 Anserini +test3106 Q0 9687266 20 10.661974 Anserini +test3106 Q0 8341684 21 10.531302 Anserini +test3106 Q0 20427382 22 10.518950 Anserini +test3106 Q0 548987 23 10.440521 Anserini +test3106 Q0 5188100 24 10.430320 Anserini +test3106 Q0 17291517 25 10.426774 Anserini +test3106 Q0 9742610 26 10.409608 Anserini +test3106 Q0 16691871 27 10.403591 Anserini +test3106 Q0 15923872 28 10.403170 Anserini +test3106 Q0 15668692 29 10.383739 Anserini +test3106 Q0 528267 30 10.372242 Anserini +test3107 Q0 19186220 1 15.211951 Anserini +test3107 Q0 19186222 2 14.994868 Anserini +test3107 Q0 5613059 3 14.155330 Anserini +test3107 Q0 12158320 4 14.007375 Anserini +test3107 Q0 16555115 5 13.775642 Anserini +test3107 Q0 18932617 6 13.659602 Anserini +test3107 Q0 8629790 7 13.648900 Anserini +test3107 Q0 18932609 8 13.633179 Anserini +test3107 Q0 13558526 9 13.539967 Anserini +test3107 Q0 15427399 10 13.393149 Anserini +test3107 Q0 15427401 11 13.393149 Anserini +test3107 Q0 6817719 12 13.371838 Anserini +test3107 Q0 10425947 13 13.302953 Anserini +test3107 Q0 16287278 14 13.287891 Anserini +test3107 Q0 9248381 15 13.216651 Anserini +test3107 Q0 13189950 16 13.153538 Anserini +test3107 Q0 12158276 17 13.129499 Anserini +test3107 Q0 16270929 18 13.091534 Anserini +test3107 Q0 10425912 19 13.075602 Anserini +test3107 Q0 16287274 20 12.979811 Anserini +test3107 Q0 9793060 21 12.973918 Anserini +test3107 Q0 11788731 22 12.923670 Anserini +test3107 Q0 18932610 23 12.909400 Anserini +test3107 Q0 9793086 24 12.901142 Anserini +test3107 Q0 11788730 25 12.848694 Anserini +test3107 Q0 15226311 26 12.622179 Anserini +test3107 Q0 9787902 27 12.616342 Anserini +test3107 Q0 9787903 28 12.616342 Anserini +test3107 Q0 14278782 29 12.575363 Anserini +test3107 Q0 14278781 30 12.564713 Anserini +test3108 Q0 5363402 1 15.807302 Anserini +test3108 Q0 2663370 2 15.583130 Anserini +test3108 Q0 4735991 3 15.299826 Anserini +test3108 Q0 4735989 4 15.299826 Anserini +test3108 Q0 17342200 5 15.219887 Anserini +test3108 Q0 583319 6 14.962189 Anserini +test3108 Q0 1807506 7 14.797499 Anserini +test3108 Q0 6818733 8 14.693441 Anserini +test3108 Q0 5372386 9 14.551694 Anserini +test3108 Q0 5363410 10 14.442888 Anserini +test3108 Q0 14343696 11 14.405348 Anserini +test3108 Q0 4449522 12 14.355872 Anserini +test3108 Q0 5363400 13 14.230743 Anserini +test3108 Q0 5363409 14 13.986331 Anserini +test3108 Q0 4735990 15 13.971268 Anserini +test3108 Q0 4449519 16 13.945950 Anserini +test3108 Q0 5372387 17 13.912744 Anserini +test3108 Q0 14308829 18 13.677967 Anserini +test3108 Q0 1933600 19 13.663775 Anserini +test3108 Q0 10852066 20 13.633012 Anserini +test3108 Q0 14308830 21 13.477301 Anserini +test3108 Q0 5363401 22 13.477301 Anserini +test3108 Q0 9300529 23 13.469529 Anserini +test3108 Q0 8768425 24 13.431228 Anserini +test3108 Q0 2832375 25 13.418698 Anserini +test3108 Q0 5642877 26 13.399702 Anserini +test3108 Q0 8279327 27 13.315191 Anserini +test3108 Q0 10852065 28 13.283824 Anserini +test3108 Q0 13813130 29 13.221103 Anserini +test3108 Q0 20368108 30 13.218428 Anserini +test3109 Q0 4987999 1 18.546906 Anserini +test3109 Q0 496013 2 16.415121 Anserini +test3109 Q0 4231873 3 15.865542 Anserini +test3109 Q0 19187070 4 15.651486 Anserini +test3109 Q0 7465784 5 15.532495 Anserini +test3109 Q0 3569195 6 15.288998 Anserini +test3109 Q0 10655128 7 15.121531 Anserini +test3109 Q0 12866263 8 14.996678 Anserini +test3109 Q0 11943635 9 14.882909 Anserini +test3109 Q0 3729763 10 14.849143 Anserini +test3109 Q0 9651926 11 14.843220 Anserini +test3109 Q0 3569162 12 14.787279 Anserini +test3109 Q0 8134398 13 14.786200 Anserini +test3109 Q0 3569172 14 14.780227 Anserini +test3109 Q0 20330292 15 14.767314 Anserini +test3109 Q0 18647946 16 14.660510 Anserini +test3109 Q0 2053805 17 14.530202 Anserini +test3109 Q0 7118675 18 14.523973 Anserini +test3109 Q0 15490321 19 14.460835 Anserini +test3109 Q0 3568594 20 14.450825 Anserini +test3109 Q0 4535906 21 14.434614 Anserini +test3109 Q0 10511977 22 14.418120 Anserini +test3109 Q0 9921923 23 14.368258 Anserini +test3109 Q0 11760256 24 14.292431 Anserini +test3109 Q0 7300440 25 14.243867 Anserini +test3109 Q0 1447116 26 14.234876 Anserini +test3109 Q0 20905942 27 14.229917 Anserini +test3109 Q0 20465642 28 14.181643 Anserini +test3109 Q0 11454622 29 14.137689 Anserini +test3109 Q0 9921924 30 14.131298 Anserini +test311 Q0 18697023 1 16.457943 Anserini +test311 Q0 19742955 2 15.998209 Anserini +test311 Q0 18697062 3 14.106602 Anserini +test311 Q0 18697006 4 13.974482 Anserini +test311 Q0 18305225 5 13.541819 Anserini +test311 Q0 18697060 6 13.360283 Anserini +test311 Q0 18697064 7 13.210908 Anserini +test311 Q0 19638792 8 13.204492 Anserini +test311 Q0 18697020 9 13.157673 Anserini +test311 Q0 14952415 10 12.883682 Anserini +test311 Q0 14532356 11 12.789240 Anserini +test311 Q0 18697083 12 12.520367 Anserini +test311 Q0 18697019 13 12.299356 Anserini +test311 Q0 13792015 14 12.268465 Anserini +test311 Q0 19100913 15 12.258762 Anserini +test311 Q0 18697082 16 12.258652 Anserini +test311 Q0 6507717 17 12.171207 Anserini +test311 Q0 20853838 18 12.117764 Anserini +test311 Q0 19595720 19 12.092221 Anserini +test311 Q0 6888714 20 12.084768 Anserini +test311 Q0 18697073 21 12.075960 Anserini +test311 Q0 4885629 22 12.073144 Anserini +test311 Q0 16363896 23 12.001328 Anserini +test311 Q0 19877305 24 11.968997 Anserini +test311 Q0 1453744 25 11.967058 Anserini +test311 Q0 5510996 26 11.967058 Anserini +test311 Q0 413336 27 11.947482 Anserini +test311 Q0 18305221 28 11.929665 Anserini +test311 Q0 19788106 29 11.896679 Anserini +test311 Q0 4567449 30 11.892361 Anserini +test3110 Q0 14714433 1 17.080111 Anserini +test3110 Q0 5020455 2 16.787960 Anserini +test3110 Q0 5020449 3 16.713177 Anserini +test3110 Q0 5020454 4 16.157415 Anserini +test3110 Q0 15478941 5 15.628386 Anserini +test3110 Q0 15478940 6 15.288572 Anserini +test3110 Q0 5020450 7 15.218573 Anserini +test3110 Q0 2664925 8 15.116480 Anserini +test3110 Q0 5020451 9 14.967090 Anserini +test3110 Q0 5020453 10 14.917788 Anserini +test3110 Q0 3302269 11 14.865789 Anserini +test3110 Q0 7944404 12 14.859682 Anserini +test3110 Q0 14714432 13 14.788454 Anserini +test3110 Q0 8749310 14 14.640618 Anserini +test3110 Q0 14714429 15 14.421383 Anserini +test3110 Q0 15852895 16 14.269563 Anserini +test3110 Q0 776648 17 14.207464 Anserini +test3110 Q0 5020452 18 14.018976 Anserini +test3110 Q0 3302277 19 13.997000 Anserini +test3110 Q0 8001949 20 13.657560 Anserini +test3110 Q0 8051555 21 13.278934 Anserini +test3110 Q0 320315 22 13.244360 Anserini +test3110 Q0 14714435 23 13.199713 Anserini +test3110 Q0 4472678 24 13.175840 Anserini +test3110 Q0 10282450 25 12.968526 Anserini +test3110 Q0 776649 26 12.795059 Anserini +test3110 Q0 317557 27 12.757762 Anserini +test3110 Q0 1966236 28 12.714970 Anserini +test3110 Q0 602513 29 12.665476 Anserini +test3110 Q0 17908588 30 12.638826 Anserini +test3111 Q0 9414365 1 10.241052 Anserini +test3111 Q0 14954761 2 9.805042 Anserini +test3111 Q0 19551380 3 9.561459 Anserini +test3111 Q0 9205214 4 9.490253 Anserini +test3111 Q0 10901399 5 9.468740 Anserini +test3111 Q0 14954762 6 9.438344 Anserini +test3111 Q0 15912926 7 9.405236 Anserini +test3111 Q0 4228581 8 9.339869 Anserini +test3111 Q0 17794040 9 9.273561 Anserini +test3111 Q0 9234895 10 9.208382 Anserini +test3111 Q0 9414358 11 9.200237 Anserini +test3111 Q0 1003424 12 9.177686 Anserini +test3111 Q0 16394916 13 9.138426 Anserini +test3111 Q0 14207485 14 8.988811 Anserini +test3111 Q0 8667936 15 8.985308 Anserini +test3111 Q0 8747401 16 8.985086 Anserini +test3111 Q0 12255554 17 8.960011 Anserini +test3111 Q0 4679971 18 8.910139 Anserini +test3111 Q0 7829467 19 8.910139 Anserini +test3111 Q0 5718547 20 8.910139 Anserini +test3111 Q0 4839335 21 8.898112 Anserini +test3111 Q0 3636571 22 8.880568 Anserini +test3111 Q0 17878973 23 8.860985 Anserini +test3111 Q0 12209265 24 8.821975 Anserini +test3111 Q0 12209266 25 8.821975 Anserini +test3111 Q0 10901397 26 8.807369 Anserini +test3111 Q0 10901404 27 8.807369 Anserini +test3111 Q0 10844038 28 8.785334 Anserini +test3111 Q0 14207488 29 8.763517 Anserini +test3111 Q0 13428580 30 8.720098 Anserini +test3112 Q0 15583729 1 15.271407 Anserini +test3112 Q0 15583718 2 15.205901 Anserini +test3112 Q0 451385 3 15.049271 Anserini +test3112 Q0 4093805 4 14.764273 Anserini +test3112 Q0 4093817 5 14.621070 Anserini +test3112 Q0 15583722 6 13.936400 Anserini +test3112 Q0 19805501 7 13.618779 Anserini +test3112 Q0 13361605 8 13.514424 Anserini +test3112 Q0 14041653 9 13.434099 Anserini +test3112 Q0 13793272 10 13.369336 Anserini +test3112 Q0 11484238 11 13.362799 Anserini +test3112 Q0 19367857 12 13.245805 Anserini +test3112 Q0 13924647 13 13.206620 Anserini +test3112 Q0 15583721 14 13.184700 Anserini +test3112 Q0 644073 15 13.083608 Anserini +test3112 Q0 13793271 16 13.027546 Anserini +test3112 Q0 15583725 17 12.679163 Anserini +test3112 Q0 15998808 18 12.658847 Anserini +test3112 Q0 1523347 19 12.567696 Anserini +test3112 Q0 3809821 20 12.480844 Anserini +test3112 Q0 1678593 21 12.207199 Anserini +test3112 Q0 6206776 22 12.180592 Anserini +test3112 Q0 2854311 23 12.096445 Anserini +test3112 Q0 13924646 24 12.094742 Anserini +test3112 Q0 3809827 25 12.050430 Anserini +test3112 Q0 10412705 26 12.046667 Anserini +test3112 Q0 1938188 27 11.975357 Anserini +test3112 Q0 12356161 28 11.951545 Anserini +test3112 Q0 3177926 29 11.922626 Anserini +test3112 Q0 3536572 30 11.921265 Anserini +test3113 Q0 12859188 1 17.936815 Anserini +test3113 Q0 11064951 2 16.983164 Anserini +test3113 Q0 5404050 3 16.166801 Anserini +test3113 Q0 9377114 4 15.712587 Anserini +test3113 Q0 16525532 5 15.424064 Anserini +test3113 Q0 6264245 6 15.384579 Anserini +test3113 Q0 15611397 7 15.313428 Anserini +test3113 Q0 6173040 8 14.842813 Anserini +test3113 Q0 173630 9 14.686407 Anserini +test3113 Q0 42582 10 14.430002 Anserini +test3113 Q0 15413988 11 14.196554 Anserini +test3113 Q0 2859664 12 14.144493 Anserini +test3113 Q0 4803524 13 14.130614 Anserini +test3113 Q0 5404083 14 13.835510 Anserini +test3113 Q0 14810992 15 13.754658 Anserini +test3113 Q0 9224258 16 13.716211 Anserini +test3113 Q0 5404056 17 13.702579 Anserini +test3113 Q0 6264248 18 13.654064 Anserini +test3113 Q0 173629 19 13.554633 Anserini +test3113 Q0 7282436 20 13.510262 Anserini +test3113 Q0 5533760 21 13.375683 Anserini +test3113 Q0 2368711 22 13.247921 Anserini +test3113 Q0 11064950 23 13.191257 Anserini +test3113 Q0 4957089 24 13.161930 Anserini +test3113 Q0 5404086 25 13.110288 Anserini +test3113 Q0 8898723 26 13.020506 Anserini +test3113 Q0 17253807 27 13.015489 Anserini +test3113 Q0 16986153 28 13.015489 Anserini +test3113 Q0 10402544 29 12.952394 Anserini +test3113 Q0 18133188 30 12.925750 Anserini +test3114 Q0 1808854 1 32.323181 Anserini +test3114 Q0 1808851 2 29.245129 Anserini +test3114 Q0 1808857 3 29.245129 Anserini +test3114 Q0 12964545 4 28.511799 Anserini +test3114 Q0 1808853 5 28.123911 Anserini +test3114 Q0 3880027 6 28.060287 Anserini +test3114 Q0 4421164 7 27.941216 Anserini +test3114 Q0 3863087 8 27.894758 Anserini +test3114 Q0 1808852 9 27.282757 Anserini +test3114 Q0 4421179 10 26.869761 Anserini +test3114 Q0 2297126 11 26.517233 Anserini +test3114 Q0 4421177 12 26.216625 Anserini +test3114 Q0 3863093 13 25.832331 Anserini +test3114 Q0 12964547 14 25.832331 Anserini +test3114 Q0 12964571 15 25.423370 Anserini +test3114 Q0 2297131 16 25.102890 Anserini +test3114 Q0 14485759 17 24.912003 Anserini +test3114 Q0 1957827 18 24.528700 Anserini +test3114 Q0 2207150 19 24.219326 Anserini +test3114 Q0 3754846 20 24.171539 Anserini +test3114 Q0 16034498 21 23.974880 Anserini +test3114 Q0 15178887 22 23.944805 Anserini +test3114 Q0 670025 23 23.844952 Anserini +test3114 Q0 6401984 24 23.802998 Anserini +test3114 Q0 4421165 25 23.441555 Anserini +test3114 Q0 4421167 26 23.271748 Anserini +test3114 Q0 4421166 27 23.121700 Anserini +test3114 Q0 12026261 28 23.094938 Anserini +test3114 Q0 8609203 29 22.696514 Anserini +test3114 Q0 6106429 30 22.691648 Anserini +test3115 Q0 12706186 1 21.549738 Anserini +test3115 Q0 12706193 2 21.549738 Anserini +test3115 Q0 12706190 3 21.106722 Anserini +test3115 Q0 7635478 4 18.763018 Anserini +test3115 Q0 5112963 5 18.658587 Anserini +test3115 Q0 12706187 6 18.499329 Anserini +test3115 Q0 5597429 7 18.240957 Anserini +test3115 Q0 5597430 8 17.563950 Anserini +test3115 Q0 5597432 9 17.396660 Anserini +test3115 Q0 12706189 10 17.145893 Anserini +test3115 Q0 12706192 11 17.098530 Anserini +test3115 Q0 12706188 12 16.799555 Anserini +test3115 Q0 12706191 13 16.453871 Anserini +test3115 Q0 5112967 14 16.194641 Anserini +test3115 Q0 9199751 15 15.814044 Anserini +test3115 Q0 7306617 16 15.571026 Anserini +test3115 Q0 5597431 17 15.486347 Anserini +test3115 Q0 14788798 18 15.262335 Anserini +test3115 Q0 14788794 19 15.228152 Anserini +test3115 Q0 5112964 20 15.208008 Anserini +test3115 Q0 1994087 21 15.169080 Anserini +test3115 Q0 14661472 22 14.788164 Anserini +test3115 Q0 3869972 23 14.674727 Anserini +test3115 Q0 14661470 24 14.519293 Anserini +test3115 Q0 1994076 25 14.519293 Anserini +test3115 Q0 14610667 26 14.462738 Anserini +test3115 Q0 11858492 27 14.307936 Anserini +test3115 Q0 9199754 28 14.298026 Anserini +test3115 Q0 11766142 29 13.823506 Anserini +test3115 Q0 15093419 30 13.736976 Anserini +test3116 Q0 2535995 1 13.500503 Anserini +test3116 Q0 9107725 2 12.780391 Anserini +test3116 Q0 9115811 3 12.769250 Anserini +test3116 Q0 16383940 4 12.574566 Anserini +test3116 Q0 6676353 5 12.394282 Anserini +test3116 Q0 14976003 6 12.313497 Anserini +test3116 Q0 7353255 7 12.305128 Anserini +test3116 Q0 10877287 8 12.208385 Anserini +test3116 Q0 13272223 9 12.055941 Anserini +test3116 Q0 8115138 10 11.912187 Anserini +test3116 Q0 15925897 11 11.887622 Anserini +test3116 Q0 14018371 12 11.859268 Anserini +test3116 Q0 7358066 13 11.850046 Anserini +test3116 Q0 8022588 14 11.769115 Anserini +test3116 Q0 9244655 15 11.713051 Anserini +test3116 Q0 9244639 16 11.713051 Anserini +test3116 Q0 3073605 17 11.617233 Anserini +test3116 Q0 2753179 18 11.608120 Anserini +test3116 Q0 17858003 19 11.460926 Anserini +test3116 Q0 10877353 20 11.432742 Anserini +test3116 Q0 5974391 21 11.417485 Anserini +test3116 Q0 18955487 22 11.401493 Anserini +test3116 Q0 13860371 23 11.396151 Anserini +test3116 Q0 9756383 24 11.370867 Anserini +test3116 Q0 12498891 25 11.359503 Anserini +test3116 Q0 4803347 26 11.312099 Anserini +test3116 Q0 2967623 27 11.309752 Anserini +test3116 Q0 10877286 28 11.294178 Anserini +test3116 Q0 10877315 29 11.271616 Anserini +test3116 Q0 14790172 30 11.268679 Anserini +test3117 Q0 11342664 1 14.910800 Anserini +test3117 Q0 7371970 2 14.889709 Anserini +test3117 Q0 15178297 3 14.276796 Anserini +test3117 Q0 19052379 4 14.008835 Anserini +test3117 Q0 10491474 5 13.468928 Anserini +test3117 Q0 7371946 6 13.385908 Anserini +test3117 Q0 6313649 7 13.332883 Anserini +test3117 Q0 1048337 8 13.324452 Anserini +test3117 Q0 8551510 9 13.237259 Anserini +test3117 Q0 7371969 10 13.222805 Anserini +test3117 Q0 4566424 11 13.119839 Anserini +test3117 Q0 6313647 12 13.111778 Anserini +test3117 Q0 13597841 13 13.104011 Anserini +test3117 Q0 7371835 14 13.019213 Anserini +test3117 Q0 7894283 15 13.019213 Anserini +test3117 Q0 7371964 16 12.984755 Anserini +test3117 Q0 4668355 17 12.971113 Anserini +test3117 Q0 10492179 18 12.962658 Anserini +test3117 Q0 7349263 19 12.947675 Anserini +test3117 Q0 7371824 20 12.876814 Anserini +test3117 Q0 4012845 21 12.875175 Anserini +test3117 Q0 7291498 22 12.835217 Anserini +test3117 Q0 7371826 23 12.835217 Anserini +test3117 Q0 7371830 24 12.835217 Anserini +test3117 Q0 12076035 25 12.835217 Anserini +test3117 Q0 169265 26 12.835217 Anserini +test3117 Q0 14224794 27 12.831902 Anserini +test3117 Q0 7371928 28 12.818800 Anserini +test3117 Q0 10593156 29 12.803495 Anserini +test3117 Q0 18702708 30 12.732626 Anserini +test3118 Q0 18950776 1 15.569814 Anserini +test3118 Q0 12964147 2 14.749802 Anserini +test3118 Q0 15023234 3 14.668024 Anserini +test3118 Q0 19786480 4 13.828341 Anserini +test3118 Q0 15049034 5 13.807281 Anserini +test3118 Q0 20860147 6 13.806758 Anserini +test3118 Q0 3910847 7 13.764896 Anserini +test3118 Q0 7083274 8 13.659070 Anserini +test3118 Q0 16159547 9 13.623919 Anserini +test3118 Q0 16152263 10 13.589923 Anserini +test3118 Q0 6987261 11 13.581610 Anserini +test3118 Q0 280343 12 13.556532 Anserini +test3118 Q0 699573 13 13.537260 Anserini +test3118 Q0 19150927 14 13.483720 Anserini +test3118 Q0 19150923 15 13.483720 Anserini +test3118 Q0 18259638 16 13.483358 Anserini +test3118 Q0 11148499 17 13.454356 Anserini +test3118 Q0 15863090 18 13.299193 Anserini +test3118 Q0 19013975 19 13.275905 Anserini +test3118 Q0 7456320 20 13.273529 Anserini +test3118 Q0 2325975 21 13.252952 Anserini +test3118 Q0 15049036 22 13.211829 Anserini +test3118 Q0 15863093 23 13.136473 Anserini +test3118 Q0 19828576 24 13.035156 Anserini +test3118 Q0 12997103 25 12.999504 Anserini +test3118 Q0 19828573 26 12.921370 Anserini +test3118 Q0 1959407 27 12.911182 Anserini +test3118 Q0 17843213 28 12.866570 Anserini +test3118 Q0 19003747 29 12.806587 Anserini +test3118 Q0 7456319 30 12.802049 Anserini +test3119 Q0 12062400 1 12.075291 Anserini +test3119 Q0 6036867 2 11.928394 Anserini +test3119 Q0 5608346 3 10.901197 Anserini +test3119 Q0 4506516 4 10.277038 Anserini +test3119 Q0 1676422 5 10.222860 Anserini +test3119 Q0 1468859 6 10.179887 Anserini +test3119 Q0 16549816 7 10.066103 Anserini +test3119 Q0 19545824 8 9.939821 Anserini +test3119 Q0 19545826 9 9.939821 Anserini +test3119 Q0 10956414 10 9.820846 Anserini +test3119 Q0 15785856 11 9.733306 Anserini +test3119 Q0 5476239 12 9.627165 Anserini +test3119 Q0 7715858 13 9.596315 Anserini +test3119 Q0 17026909 14 9.590393 Anserini +test3119 Q0 15526899 15 9.558861 Anserini +test3119 Q0 19194055 16 9.539970 Anserini +test3119 Q0 17675799 17 9.468187 Anserini +test3119 Q0 17675797 18 9.468187 Anserini +test3119 Q0 19369419 19 9.429401 Anserini +test3119 Q0 20273817 20 9.429118 Anserini +test3119 Q0 7633724 21 9.410273 Anserini +test3119 Q0 11621304 22 9.410273 Anserini +test3119 Q0 7433634 23 9.410273 Anserini +test3119 Q0 8448065 24 9.391840 Anserini +test3119 Q0 16491630 25 9.354086 Anserini +test3119 Q0 9159392 26 9.316109 Anserini +test3119 Q0 5821079 27 9.275490 Anserini +test3119 Q0 12420179 28 9.272468 Anserini +test3119 Q0 17069343 29 9.265190 Anserini +test3119 Q0 19313251 30 9.245385 Anserini +test312 Q0 19612901 1 11.151337 Anserini +test312 Q0 15295191 2 10.944893 Anserini +test312 Q0 12156403 3 10.619918 Anserini +test312 Q0 13399776 4 10.435127 Anserini +test312 Q0 13399783 5 10.435127 Anserini +test312 Q0 7358091 6 10.351800 Anserini +test312 Q0 20291043 7 10.247184 Anserini +test312 Q0 7257768 8 10.152419 Anserini +test312 Q0 13123786 9 10.118878 Anserini +test312 Q0 18657706 10 10.118878 Anserini +test312 Q0 17112392 11 10.021646 Anserini +test312 Q0 14329850 12 9.978329 Anserini +test312 Q0 20598842 13 9.892516 Anserini +test312 Q0 19841216 14 9.797748 Anserini +test312 Q0 5107460 15 9.720121 Anserini +test312 Q0 11263779 16 9.707193 Anserini +test312 Q0 17136141 17 9.628412 Anserini +test312 Q0 17970946 18 9.509569 Anserini +test312 Q0 15397597 19 9.481405 Anserini +test312 Q0 7257706 20 9.443672 Anserini +test312 Q0 4654461 21 9.416775 Anserini +test312 Q0 18657705 22 9.409671 Anserini +test312 Q0 18901029 23 9.399038 Anserini +test312 Q0 19591897 24 9.393151 Anserini +test312 Q0 13456779 25 9.382681 Anserini +test312 Q0 20979564 26 9.319048 Anserini +test312 Q0 17457751 27 9.301763 Anserini +test312 Q0 11768374 28 9.281559 Anserini +test312 Q0 7168636 29 9.238975 Anserini +test312 Q0 11432834 30 9.193501 Anserini +test3120 Q0 16008527 1 19.739191 Anserini +test3120 Q0 16008524 2 19.739191 Anserini +test3120 Q0 2101773 3 18.127254 Anserini +test3120 Q0 554679 4 17.309029 Anserini +test3120 Q0 16539592 5 17.006153 Anserini +test3120 Q0 2569637 6 16.725471 Anserini +test3120 Q0 5756538 7 16.615225 Anserini +test3120 Q0 14694290 8 16.202629 Anserini +test3120 Q0 7961247 9 16.148140 Anserini +test3120 Q0 371587 10 15.823793 Anserini +test3120 Q0 12158346 11 15.522568 Anserini +test3120 Q0 4467705 12 15.375875 Anserini +test3120 Q0 17206801 13 15.316704 Anserini +test3120 Q0 554648 14 15.256431 Anserini +test3120 Q0 14694302 15 15.183822 Anserini +test3120 Q0 15902655 16 14.879368 Anserini +test3120 Q0 15902654 17 14.879368 Anserini +test3120 Q0 554647 18 14.873507 Anserini +test3120 Q0 9302909 19 14.786839 Anserini +test3120 Q0 19728897 20 14.786839 Anserini +test3120 Q0 301571 21 14.631179 Anserini +test3120 Q0 2569648 22 14.631179 Anserini +test3120 Q0 2101755 23 14.300695 Anserini +test3120 Q0 6932835 24 14.151718 Anserini +test3120 Q0 8623380 25 13.633367 Anserini +test3120 Q0 1914183 26 13.346329 Anserini +test3120 Q0 362576 27 13.346329 Anserini +test3120 Q0 15686384 28 13.346329 Anserini +test3120 Q0 17127789 29 13.207294 Anserini +test3120 Q0 14694296 30 13.207294 Anserini +test3121 Q0 13455180 1 16.452566 Anserini +test3121 Q0 13455213 2 16.283157 Anserini +test3121 Q0 13147210 3 15.504321 Anserini +test3121 Q0 13455193 4 15.082540 Anserini +test3121 Q0 13455181 5 14.876060 Anserini +test3121 Q0 13455196 6 14.847589 Anserini +test3121 Q0 13147208 7 14.400244 Anserini +test3121 Q0 13455192 8 14.364144 Anserini +test3121 Q0 12769233 9 14.024658 Anserini +test3121 Q0 13455212 10 13.941563 Anserini +test3121 Q0 13455187 11 13.911944 Anserini +test3121 Q0 13455203 12 13.855716 Anserini +test3121 Q0 13455185 13 13.714804 Anserini +test3121 Q0 12531720 14 13.683564 Anserini +test3121 Q0 13455190 15 13.675537 Anserini +test3121 Q0 13455210 16 13.610125 Anserini +test3121 Q0 13455183 17 13.438053 Anserini +test3121 Q0 13455201 18 13.401346 Anserini +test3121 Q0 12590405 19 13.320477 Anserini +test3121 Q0 11060930 20 13.266998 Anserini +test3121 Q0 12590499 21 13.228358 Anserini +test3121 Q0 13455209 22 13.130962 Anserini +test3121 Q0 13455204 23 13.122154 Anserini +test3121 Q0 13455211 24 13.122154 Anserini +test3121 Q0 13455186 25 13.122154 Anserini +test3121 Q0 13455188 26 13.122154 Anserini +test3121 Q0 13455195 27 12.955446 Anserini +test3121 Q0 13455191 28 12.955446 Anserini +test3121 Q0 9068825 29 12.862523 Anserini +test3121 Q0 13455206 30 12.836084 Anserini +test3122 Q0 584151 1 13.342897 Anserini +test3122 Q0 12246532 2 12.666956 Anserini +test3122 Q0 20177613 3 12.528386 Anserini +test3122 Q0 20177614 4 12.528386 Anserini +test3122 Q0 18711324 5 11.997045 Anserini +test3122 Q0 584195 6 11.893703 Anserini +test3122 Q0 19502434 7 11.717465 Anserini +test3122 Q0 584177 8 11.481785 Anserini +test3122 Q0 5034994 9 11.365967 Anserini +test3122 Q0 14622604 10 11.343294 Anserini +test3122 Q0 18711322 11 11.336809 Anserini +test3122 Q0 16314589 12 11.255938 Anserini +test3122 Q0 14903003 13 11.226764 Anserini +test3122 Q0 10275781 14 11.206207 Anserini +test3122 Q0 6782719 15 11.126019 Anserini +test3122 Q0 12966652 16 11.124119 Anserini +test3122 Q0 9314429 17 11.112845 Anserini +test3122 Q0 5034992 18 11.073793 Anserini +test3122 Q0 584199 19 11.003721 Anserini +test3122 Q0 10275779 20 10.990459 Anserini +test3122 Q0 12233443 21 10.981730 Anserini +test3122 Q0 19588715 22 10.918485 Anserini +test3122 Q0 16157796 23 10.908250 Anserini +test3122 Q0 19497156 24 10.907009 Anserini +test3122 Q0 16135315 25 10.865339 Anserini +test3122 Q0 584139 26 10.846185 Anserini +test3122 Q0 584193 27 10.798172 Anserini +test3122 Q0 12233442 28 10.777784 Anserini +test3122 Q0 16094285 29 10.768362 Anserini +test3122 Q0 16135313 30 10.740145 Anserini +test3123 Q0 7801945 1 13.242405 Anserini +test3123 Q0 7801946 2 13.242405 Anserini +test3123 Q0 17762127 3 12.822326 Anserini +test3123 Q0 7174478 4 12.040217 Anserini +test3123 Q0 9987874 5 11.870343 Anserini +test3123 Q0 13796191 6 11.445904 Anserini +test3123 Q0 20044014 7 11.215264 Anserini +test3123 Q0 4346998 8 11.195181 Anserini +test3123 Q0 5726927 9 11.108580 Anserini +test3123 Q0 10293839 10 11.100201 Anserini +test3123 Q0 1491940 11 11.030485 Anserini +test3123 Q0 6527857 12 10.868817 Anserini +test3123 Q0 9566359 13 10.827626 Anserini +test3123 Q0 5074639 14 10.803905 Anserini +test3123 Q0 17562985 15 10.799556 Anserini +test3123 Q0 284602 16 10.642516 Anserini +test3123 Q0 10192574 17 10.568032 Anserini +test3123 Q0 18218704 18 10.555794 Anserini +test3123 Q0 8800170 19 10.531698 Anserini +test3123 Q0 284603 20 10.515452 Anserini +test3123 Q0 11916376 21 10.461620 Anserini +test3123 Q0 18218705 22 10.424448 Anserini +test3123 Q0 5762078 23 10.279728 Anserini +test3123 Q0 9164317 24 10.261805 Anserini +test3123 Q0 7439523 25 10.251262 Anserini +test3123 Q0 1581784 26 10.214702 Anserini +test3123 Q0 20044015 27 10.187004 Anserini +test3123 Q0 20917179 28 10.119336 Anserini +test3123 Q0 3563555 29 10.117514 Anserini +test3123 Q0 7049649 30 10.115381 Anserini +test3124 Q0 2282239 1 27.585100 Anserini +test3124 Q0 2282248 2 26.208660 Anserini +test3124 Q0 2282243 3 23.488674 Anserini +test3124 Q0 2322356 4 22.055891 Anserini +test3124 Q0 2282244 5 21.980427 Anserini +test3124 Q0 4507231 6 21.349916 Anserini +test3124 Q0 2282242 7 21.133959 Anserini +test3124 Q0 2322352 8 21.051592 Anserini +test3124 Q0 2322354 9 20.847069 Anserini +test3124 Q0 12375271 10 20.516142 Anserini +test3124 Q0 6906221 11 20.511972 Anserini +test3124 Q0 5138879 12 19.932304 Anserini +test3124 Q0 2208070 13 19.257534 Anserini +test3124 Q0 6906242 14 18.539253 Anserini +test3124 Q0 2322359 15 18.425894 Anserini +test3124 Q0 15924434 16 17.913322 Anserini +test3124 Q0 9963108 17 17.861282 Anserini +test3124 Q0 9229237 18 17.847891 Anserini +test3124 Q0 17758985 19 17.623230 Anserini +test3124 Q0 4507229 20 17.593258 Anserini +test3124 Q0 10043939 21 17.564426 Anserini +test3124 Q0 10043938 22 17.564426 Anserini +test3124 Q0 6083638 23 17.506912 Anserini +test3124 Q0 19207075 24 17.474344 Anserini +test3124 Q0 2322353 25 17.435875 Anserini +test3124 Q0 13842385 26 17.406786 Anserini +test3124 Q0 4957321 27 17.349749 Anserini +test3124 Q0 20257163 28 17.227291 Anserini +test3124 Q0 2020547 29 17.193537 Anserini +test3124 Q0 4549994 30 17.032654 Anserini +test3125 Q0 13363568 1 15.295795 Anserini +test3125 Q0 19733837 2 15.153397 Anserini +test3125 Q0 13363553 3 15.082971 Anserini +test3125 Q0 8157433 4 15.050241 Anserini +test3125 Q0 17632413 5 14.622715 Anserini +test3125 Q0 17632426 6 14.622715 Anserini +test3125 Q0 19733848 7 14.604235 Anserini +test3125 Q0 16655155 8 14.042220 Anserini +test3125 Q0 18965291 9 14.038583 Anserini +test3125 Q0 20360811 10 13.947254 Anserini +test3125 Q0 1064039 11 13.835495 Anserini +test3125 Q0 20716007 12 13.816820 Anserini +test3125 Q0 8157422 13 13.810501 Anserini +test3125 Q0 7633712 14 13.771787 Anserini +test3125 Q0 5291792 15 13.674218 Anserini +test3125 Q0 15271124 16 13.656502 Anserini +test3125 Q0 9823783 17 13.640713 Anserini +test3125 Q0 7633656 18 13.595192 Anserini +test3125 Q0 16219318 19 13.576046 Anserini +test3125 Q0 15646929 20 13.469996 Anserini +test3125 Q0 7633663 21 13.469996 Anserini +test3125 Q0 19733838 22 13.448419 Anserini +test3125 Q0 20333170 23 13.441189 Anserini +test3125 Q0 20740581 24 13.424646 Anserini +test3125 Q0 14307198 25 13.393071 Anserini +test3125 Q0 19052951 26 13.388460 Anserini +test3125 Q0 17632419 27 13.382808 Anserini +test3125 Q0 15646917 28 13.375477 Anserini +test3125 Q0 20716008 29 13.319990 Anserini +test3125 Q0 14605864 30 13.263424 Anserini +test3126 Q0 6112620 1 10.306750 Anserini +test3126 Q0 3896191 2 10.227833 Anserini +test3126 Q0 6112598 3 9.980698 Anserini +test3126 Q0 13021592 4 9.861992 Anserini +test3126 Q0 2277754 5 9.846683 Anserini +test3126 Q0 8513757 6 9.806521 Anserini +test3126 Q0 5337446 7 9.798803 Anserini +test3126 Q0 7126495 8 9.782215 Anserini +test3126 Q0 18581915 9 9.765451 Anserini +test3126 Q0 8698303 10 9.758297 Anserini +test3126 Q0 19935977 11 9.739857 Anserini +test3126 Q0 7674413 12 9.605494 Anserini +test3126 Q0 17605747 13 9.574889 Anserini +test3126 Q0 16625802 14 9.574889 Anserini +test3126 Q0 7126492 15 9.573339 Anserini +test3126 Q0 12583839 16 9.561451 Anserini +test3126 Q0 8664555 17 9.542367 Anserini +test3126 Q0 20617569 18 9.539128 Anserini +test3126 Q0 7674046 19 9.537664 Anserini +test3126 Q0 7674602 20 9.535682 Anserini +test3126 Q0 14777625 21 9.530704 Anserini +test3126 Q0 12708989 22 9.511025 Anserini +test3126 Q0 3829562 23 9.505924 Anserini +test3126 Q0 5585984 24 9.484553 Anserini +test3126 Q0 12708977 25 9.483662 Anserini +test3126 Q0 6319171 26 9.483031 Anserini +test3126 Q0 11081944 27 9.482366 Anserini +test3126 Q0 13128913 28 9.477772 Anserini +test3126 Q0 7682300 29 9.467084 Anserini +test3126 Q0 7674460 30 9.467084 Anserini +test3127 Q0 9066519 1 15.475636 Anserini +test3127 Q0 1064852 2 15.223591 Anserini +test3127 Q0 13983441 3 14.603151 Anserini +test3127 Q0 1064861 4 14.479909 Anserini +test3127 Q0 12279133 5 14.347505 Anserini +test3127 Q0 459546 6 14.287532 Anserini +test3127 Q0 298666 7 14.243114 Anserini +test3127 Q0 647165 8 14.229590 Anserini +test3127 Q0 1528213 9 14.164774 Anserini +test3127 Q0 459622 10 14.124485 Anserini +test3127 Q0 10262044 11 14.119033 Anserini +test3127 Q0 835408 12 14.053248 Anserini +test3127 Q0 298759 13 13.930687 Anserini +test3127 Q0 12279149 14 13.905679 Anserini +test3127 Q0 3656568 15 13.820611 Anserini +test3127 Q0 11001532 16 13.688788 Anserini +test3127 Q0 298646 17 13.657301 Anserini +test3127 Q0 1511073 18 13.617987 Anserini +test3127 Q0 202560 19 13.573779 Anserini +test3127 Q0 8540119 20 13.537916 Anserini +test3127 Q0 7160779 21 13.510944 Anserini +test3127 Q0 15084942 22 13.481408 Anserini +test3127 Q0 459577 23 13.475503 Anserini +test3127 Q0 5078240 24 13.459839 Anserini +test3127 Q0 17536765 25 13.372259 Anserini +test3127 Q0 20035942 26 13.364089 Anserini +test3127 Q0 1063846 27 13.337716 Anserini +test3127 Q0 12599260 28 13.321678 Anserini +test3127 Q0 6837412 29 13.289734 Anserini +test3127 Q0 6837411 30 13.277686 Anserini +test3128 Q0 9549315 1 12.558468 Anserini +test3128 Q0 9823142 2 12.441529 Anserini +test3128 Q0 15182976 3 12.433710 Anserini +test3128 Q0 20699054 4 12.034087 Anserini +test3128 Q0 10886827 5 11.945361 Anserini +test3128 Q0 10698494 6 11.872476 Anserini +test3128 Q0 15182977 7 11.798232 Anserini +test3128 Q0 2342432 8 11.783727 Anserini +test3128 Q0 19662314 9 11.743061 Anserini +test3128 Q0 10154181 10 11.723430 Anserini +test3128 Q0 9565085 11 11.714304 Anserini +test3128 Q0 14149387 12 11.714190 Anserini +test3128 Q0 14149664 13 11.688438 Anserini +test3128 Q0 2461912 14 11.670393 Anserini +test3128 Q0 9864231 15 11.661266 Anserini +test3128 Q0 19072891 16 11.632040 Anserini +test3128 Q0 16242294 17 11.631054 Anserini +test3128 Q0 14773496 18 11.624439 Anserini +test3128 Q0 14176528 19 11.605662 Anserini +test3128 Q0 4219018 20 11.555221 Anserini +test3128 Q0 7801945 21 11.500705 Anserini +test3128 Q0 7801946 22 11.500705 Anserini +test3128 Q0 14131437 23 11.492179 Anserini +test3128 Q0 12878630 24 11.481342 Anserini +test3128 Q0 12731092 25 11.478941 Anserini +test3128 Q0 9855567 26 11.473755 Anserini +test3128 Q0 12844548 27 11.470872 Anserini +test3128 Q0 18397195 28 11.446123 Anserini +test3128 Q0 12871847 29 11.393045 Anserini +test3128 Q0 10776669 30 11.389668 Anserini +test3129 Q0 9252668 1 10.476962 Anserini +test3129 Q0 20696401 2 10.322989 Anserini +test3129 Q0 8925459 3 10.126908 Anserini +test3129 Q0 19765387 4 10.114447 Anserini +test3129 Q0 3528908 5 10.045141 Anserini +test3129 Q0 7747149 6 10.002151 Anserini +test3129 Q0 6851433 7 9.995294 Anserini +test3129 Q0 5893975 8 9.977171 Anserini +test3129 Q0 9252671 9 9.970781 Anserini +test3129 Q0 14607630 10 9.933544 Anserini +test3129 Q0 1601939 11 9.891751 Anserini +test3129 Q0 7629386 12 9.879713 Anserini +test3129 Q0 7043977 13 9.854856 Anserini +test3129 Q0 17751091 14 9.846610 Anserini +test3129 Q0 19299305 15 9.784564 Anserini +test3129 Q0 9379778 16 9.720303 Anserini +test3129 Q0 10072626 17 9.688873 Anserini +test3129 Q0 11793002 18 9.679629 Anserini +test3129 Q0 17145476 19 9.656593 Anserini +test3129 Q0 3660286 20 9.641673 Anserini +test3129 Q0 9553261 21 9.637664 Anserini +test3129 Q0 16782361 22 9.621192 Anserini +test3129 Q0 11306767 23 9.608694 Anserini +test3129 Q0 14492779 24 9.586423 Anserini +test3129 Q0 13011291 25 9.565617 Anserini +test3129 Q0 20699597 26 9.556053 Anserini +test3129 Q0 9779583 27 9.526364 Anserini +test3129 Q0 11289811 28 9.522027 Anserini +test3129 Q0 10838431 29 9.506595 Anserini +test3129 Q0 2444588 30 9.493402 Anserini +test313 Q0 20621459 1 19.664703 Anserini +test313 Q0 20621491 2 19.587872 Anserini +test313 Q0 19488187 3 17.852749 Anserini +test313 Q0 20785601 4 17.543856 Anserini +test313 Q0 20621492 5 17.297123 Anserini +test313 Q0 20621515 6 16.793694 Anserini +test313 Q0 20621461 7 16.678288 Anserini +test313 Q0 20621488 8 16.511770 Anserini +test313 Q0 20621479 9 16.477070 Anserini +test313 Q0 20621478 10 16.266724 Anserini +test313 Q0 20621499 11 16.025185 Anserini +test313 Q0 20621498 12 15.850721 Anserini +test313 Q0 20621486 13 15.758491 Anserini +test313 Q0 19488196 14 15.665758 Anserini +test313 Q0 20621481 15 15.490442 Anserini +test313 Q0 20785607 16 15.427662 Anserini +test313 Q0 20621464 17 15.373734 Anserini +test313 Q0 20785611 18 15.365410 Anserini +test313 Q0 20621497 19 15.303678 Anserini +test313 Q0 20785608 20 15.144756 Anserini +test313 Q0 17310933 21 15.136021 Anserini +test313 Q0 20785600 22 15.124541 Anserini +test313 Q0 20138259 23 15.077311 Anserini +test313 Q0 20621502 24 15.076755 Anserini +test313 Q0 2922249 25 15.076755 Anserini +test313 Q0 20621509 26 14.958727 Anserini +test313 Q0 20621503 27 14.942591 Anserini +test313 Q0 20621462 28 14.905630 Anserini +test313 Q0 20621475 29 14.905630 Anserini +test313 Q0 20789673 30 14.838295 Anserini +test3130 Q0 14595149 1 14.920704 Anserini +test3130 Q0 10367907 2 14.605774 Anserini +test3130 Q0 7865340 3 14.482896 Anserini +test3130 Q0 4422250 4 14.020595 Anserini +test3130 Q0 12004317 5 14.019928 Anserini +test3130 Q0 1965049 6 13.787999 Anserini +test3130 Q0 7506253 7 13.712622 Anserini +test3130 Q0 7506255 8 13.642245 Anserini +test3130 Q0 3421804 9 13.627960 Anserini +test3130 Q0 9148919 10 13.533204 Anserini +test3130 Q0 6177725 11 13.467530 Anserini +test3130 Q0 17614086 12 13.424001 Anserini +test3130 Q0 13874103 13 13.417725 Anserini +test3130 Q0 16791869 14 13.410604 Anserini +test3130 Q0 16628884 15 13.405810 Anserini +test3130 Q0 9264744 16 13.401197 Anserini +test3130 Q0 797829 17 13.392790 Anserini +test3130 Q0 15065800 18 13.361208 Anserini +test3130 Q0 8850770 19 13.313279 Anserini +test3130 Q0 13502111 20 13.267880 Anserini +test3130 Q0 6089505 21 13.226727 Anserini +test3130 Q0 12010611 22 13.223145 Anserini +test3130 Q0 4114586 23 13.201255 Anserini +test3130 Q0 6829876 24 13.073147 Anserini +test3130 Q0 18588144 25 13.047821 Anserini +test3130 Q0 7680761 26 13.039855 Anserini +test3130 Q0 7210172 27 12.999389 Anserini +test3130 Q0 15027685 28 12.967678 Anserini +test3130 Q0 18834307 29 12.957806 Anserini +test3130 Q0 4841440 30 12.949430 Anserini +test3131 Q0 18035832 1 13.426269 Anserini +test3131 Q0 6703333 2 13.283833 Anserini +test3131 Q0 5577647 3 12.631799 Anserini +test3131 Q0 18589436 4 12.383453 Anserini +test3131 Q0 13140541 5 12.210490 Anserini +test3131 Q0 18589435 6 12.128513 Anserini +test3131 Q0 13140542 7 12.128513 Anserini +test3131 Q0 3790078 8 11.765614 Anserini +test3131 Q0 20071633 9 11.652878 Anserini +test3131 Q0 2424145 10 11.635628 Anserini +test3131 Q0 8053364 11 11.612211 Anserini +test3131 Q0 11174635 12 11.407081 Anserini +test3131 Q0 15733988 13 11.384664 Anserini +test3131 Q0 8053367 14 11.378914 Anserini +test3131 Q0 16247436 15 11.350370 Anserini +test3131 Q0 18035834 16 11.302989 Anserini +test3131 Q0 18820345 17 11.302454 Anserini +test3131 Q0 6915993 18 11.273343 Anserini +test3131 Q0 18553298 19 11.262372 Anserini +test3131 Q0 2679607 20 11.254224 Anserini +test3131 Q0 11174640 21 11.229630 Anserini +test3131 Q0 7426413 22 11.220471 Anserini +test3131 Q0 13140539 23 11.171785 Anserini +test3131 Q0 4187287 24 11.121286 Anserini +test3131 Q0 5420227 25 11.099428 Anserini +test3131 Q0 8053360 26 11.090409 Anserini +test3131 Q0 8079181 27 11.084221 Anserini +test3131 Q0 8079192 28 11.084221 Anserini +test3131 Q0 5282245 29 11.062808 Anserini +test3131 Q0 8316033 30 11.042431 Anserini +test3132 Q0 9380435 1 15.159895 Anserini +test3132 Q0 687606 2 14.234103 Anserini +test3132 Q0 687599 3 14.200826 Anserini +test3132 Q0 6265929 4 14.018178 Anserini +test3132 Q0 1685793 5 13.986353 Anserini +test3132 Q0 811764 6 13.924345 Anserini +test3132 Q0 20288395 7 13.859873 Anserini +test3132 Q0 15060711 8 13.789853 Anserini +test3132 Q0 687598 9 13.789824 Anserini +test3132 Q0 13576358 10 13.720314 Anserini +test3132 Q0 12737976 11 13.677629 Anserini +test3132 Q0 14245789 12 13.639251 Anserini +test3132 Q0 11422647 13 13.590920 Anserini +test3132 Q0 687601 14 13.495912 Anserini +test3132 Q0 13576349 15 13.324826 Anserini +test3132 Q0 13576359 16 13.236721 Anserini +test3132 Q0 20533774 17 13.187352 Anserini +test3132 Q0 20246146 18 13.187352 Anserini +test3132 Q0 13576348 19 13.167928 Anserini +test3132 Q0 13576355 20 13.167928 Anserini +test3132 Q0 14245785 21 13.159670 Anserini +test3132 Q0 12977905 22 13.136327 Anserini +test3132 Q0 20246151 23 13.131021 Anserini +test3132 Q0 13576291 24 13.100176 Anserini +test3132 Q0 440970 25 13.057990 Anserini +test3132 Q0 20460140 26 13.019137 Anserini +test3132 Q0 15553804 27 12.988359 Anserini +test3132 Q0 1685795 28 12.976513 Anserini +test3132 Q0 20533765 29 12.937553 Anserini +test3132 Q0 3184356 30 12.925041 Anserini +test3133 Q0 2039226 1 17.364388 Anserini +test3133 Q0 2039230 2 15.946554 Anserini +test3133 Q0 2907504 3 15.876941 Anserini +test3133 Q0 3453200 4 15.708565 Anserini +test3133 Q0 12507637 5 14.984862 Anserini +test3133 Q0 2039227 6 14.945837 Anserini +test3133 Q0 10896112 7 14.767669 Anserini +test3133 Q0 2250844 8 14.715471 Anserini +test3133 Q0 3261022 9 14.694217 Anserini +test3133 Q0 3130889 10 14.542709 Anserini +test3133 Q0 1714686 11 14.460879 Anserini +test3133 Q0 2432096 12 14.460879 Anserini +test3133 Q0 16256730 13 14.438685 Anserini +test3133 Q0 16256722 14 14.021309 Anserini +test3133 Q0 16256738 15 14.021309 Anserini +test3133 Q0 8146886 16 13.712520 Anserini +test3133 Q0 3131209 17 13.609676 Anserini +test3133 Q0 16552845 18 13.564135 Anserini +test3133 Q0 3478158 19 13.424498 Anserini +test3133 Q0 11556282 20 13.405730 Anserini +test3133 Q0 5052657 21 13.342802 Anserini +test3133 Q0 5114610 22 13.342802 Anserini +test3133 Q0 304898 23 13.289831 Anserini +test3133 Q0 6207398 24 13.286755 Anserini +test3133 Q0 3180811 25 13.286243 Anserini +test3133 Q0 4847952 26 13.255798 Anserini +test3133 Q0 1689117 27 13.237843 Anserini +test3133 Q0 304864 28 13.180580 Anserini +test3133 Q0 8222556 29 13.146555 Anserini +test3133 Q0 9656131 30 13.126368 Anserini +test3134 Q0 19121007 1 19.607500 Anserini +test3134 Q0 162771 2 18.327545 Anserini +test3134 Q0 8725452 3 16.850054 Anserini +test3134 Q0 11346575 4 16.768814 Anserini +test3134 Q0 10323884 5 16.078600 Anserini +test3134 Q0 10323883 6 15.934901 Anserini +test3134 Q0 10933171 7 15.802386 Anserini +test3134 Q0 8915808 8 15.769968 Anserini +test3134 Q0 19820615 9 15.638647 Anserini +test3134 Q0 11927730 10 15.512261 Anserini +test3134 Q0 11286976 11 15.503613 Anserini +test3134 Q0 6618035 12 15.465607 Anserini +test3134 Q0 10151693 13 15.321224 Anserini +test3134 Q0 17736677 14 15.297584 Anserini +test3134 Q0 11299729 15 15.233809 Anserini +test3134 Q0 4492001 16 15.227882 Anserini +test3134 Q0 11285422 17 15.224495 Anserini +test3134 Q0 20468592 18 15.224495 Anserini +test3134 Q0 11299792 19 15.223702 Anserini +test3134 Q0 11299793 20 15.223702 Anserini +test3134 Q0 11286806 21 15.103493 Anserini +test3134 Q0 11580797 22 15.097122 Anserini +test3134 Q0 11346580 23 15.027116 Anserini +test3134 Q0 8688223 24 15.001816 Anserini +test3134 Q0 16977612 25 14.991516 Anserini +test3134 Q0 17047241 26 14.967134 Anserini +test3134 Q0 9682274 27 14.953939 Anserini +test3134 Q0 9709084 28 14.932068 Anserini +test3134 Q0 19121008 29 14.914243 Anserini +test3134 Q0 6618038 30 14.914243 Anserini +test3135 Q0 15333870 1 14.934071 Anserini +test3135 Q0 4635341 2 13.380076 Anserini +test3135 Q0 11074312 3 13.044740 Anserini +test3135 Q0 4736773 4 12.832431 Anserini +test3135 Q0 16081632 5 12.778128 Anserini +test3135 Q0 12565597 6 12.767807 Anserini +test3135 Q0 7750467 7 12.724408 Anserini +test3135 Q0 9687309 8 12.663361 Anserini +test3135 Q0 14034767 9 12.632979 Anserini +test3135 Q0 10831209 10 12.560450 Anserini +test3135 Q0 11030721 11 12.542500 Anserini +test3135 Q0 511311 12 12.486591 Anserini +test3135 Q0 17148273 13 12.376691 Anserini +test3135 Q0 20027899 14 12.371054 Anserini +test3135 Q0 5088190 15 12.293139 Anserini +test3135 Q0 12450185 16 12.277733 Anserini +test3135 Q0 12657335 17 12.207015 Anserini +test3135 Q0 4432249 18 12.152768 Anserini +test3135 Q0 17578308 19 12.133750 Anserini +test3135 Q0 14334761 20 12.118498 Anserini +test3135 Q0 10998429 21 12.105188 Anserini +test3135 Q0 7828693 22 12.091923 Anserini +test3135 Q0 18057351 23 12.089747 Anserini +test3135 Q0 7332249 24 12.058580 Anserini +test3135 Q0 18127381 25 12.043940 Anserini +test3135 Q0 12482635 26 12.041663 Anserini +test3135 Q0 2679105 27 12.022423 Anserini +test3135 Q0 284975 28 12.016376 Anserini +test3135 Q0 12054804 29 12.014517 Anserini +test3135 Q0 14334771 30 11.991685 Anserini +test3136 Q0 11009528 1 10.970753 Anserini +test3136 Q0 1674915 2 10.892131 Anserini +test3136 Q0 5141619 3 10.874742 Anserini +test3136 Q0 11512289 4 10.793837 Anserini +test3136 Q0 13766945 5 10.458091 Anserini +test3136 Q0 11535170 6 10.383866 Anserini +test3136 Q0 20098587 7 10.332465 Anserini +test3136 Q0 11264680 8 10.231194 Anserini +test3136 Q0 11654107 9 10.228742 Anserini +test3136 Q0 334183 10 10.163566 Anserini +test3136 Q0 5701442 11 10.043833 Anserini +test3136 Q0 12181904 12 9.878361 Anserini +test3136 Q0 132135 13 9.810883 Anserini +test3136 Q0 13006546 14 9.798041 Anserini +test3136 Q0 2077677 15 9.753349 Anserini +test3136 Q0 17420424 16 9.735153 Anserini +test3136 Q0 6511184 17 9.662989 Anserini +test3136 Q0 20116534 18 9.655229 Anserini +test3136 Q0 1832346 19 9.590151 Anserini +test3136 Q0 4715962 20 9.522083 Anserini +test3136 Q0 526733 21 9.511406 Anserini +test3136 Q0 326199 22 9.440992 Anserini +test3136 Q0 3247314 23 9.432262 Anserini +test3136 Q0 15140209 24 9.429265 Anserini +test3136 Q0 7475996 25 9.423862 Anserini +test3136 Q0 8541794 26 9.373188 Anserini +test3136 Q0 2442870 27 9.360507 Anserini +test3136 Q0 8085196 28 9.360507 Anserini +test3136 Q0 4752260 29 9.360507 Anserini +test3136 Q0 14782432 30 9.360507 Anserini +test3137 Q0 17537770 1 14.029993 Anserini +test3137 Q0 4243060 2 13.232741 Anserini +test3137 Q0 18312003 3 12.737893 Anserini +test3137 Q0 18312006 4 12.737893 Anserini +test3137 Q0 9148172 5 12.701331 Anserini +test3137 Q0 14432686 6 12.278665 Anserini +test3137 Q0 277829 7 12.129924 Anserini +test3137 Q0 15263256 8 12.052063 Anserini +test3137 Q0 13591912 9 11.916844 Anserini +test3137 Q0 14998789 10 11.769302 Anserini +test3137 Q0 13923464 11 11.719274 Anserini +test3137 Q0 13923499 12 11.623624 Anserini +test3137 Q0 11528014 13 11.570297 Anserini +test3137 Q0 6115676 14 11.476160 Anserini +test3137 Q0 14729268 15 11.419714 Anserini +test3137 Q0 6115671 16 11.390620 Anserini +test3137 Q0 15392299 17 11.357071 Anserini +test3137 Q0 17306229 18 11.314299 Anserini +test3137 Q0 8559401 19 11.059875 Anserini +test3137 Q0 7921271 20 10.997415 Anserini +test3137 Q0 18671144 21 10.986274 Anserini +test3137 Q0 3494937 22 10.949009 Anserini +test3137 Q0 3494940 23 10.949009 Anserini +test3137 Q0 3350078 24 10.896902 Anserini +test3137 Q0 11572662 25 10.896902 Anserini +test3137 Q0 18904203 26 10.886456 Anserini +test3137 Q0 11878658 27 10.881843 Anserini +test3137 Q0 15293346 28 10.850912 Anserini +test3137 Q0 16626616 29 10.846253 Anserini +test3137 Q0 13923479 30 10.839380 Anserini +test3138 Q0 13401801 1 13.692850 Anserini +test3138 Q0 13401805 2 12.837021 Anserini +test3138 Q0 13401803 3 11.648387 Anserini +test3138 Q0 10031674 4 11.519035 Anserini +test3138 Q0 4924762 5 11.488808 Anserini +test3138 Q0 9047821 6 11.407892 Anserini +test3138 Q0 9377532 7 11.055064 Anserini +test3138 Q0 18881151 8 10.914780 Anserini +test3138 Q0 523643 9 10.863643 Anserini +test3138 Q0 12282357 10 10.775311 Anserini +test3138 Q0 6011722 11 10.687824 Anserini +test3138 Q0 13400468 12 10.517162 Anserini +test3138 Q0 10202728 13 10.415037 Anserini +test3138 Q0 8703277 14 10.298667 Anserini +test3138 Q0 13401908 15 10.267502 Anserini +test3138 Q0 4842566 16 10.240711 Anserini +test3138 Q0 19778903 17 10.049819 Anserini +test3138 Q0 9385099 18 10.026854 Anserini +test3138 Q0 12811678 19 9.988379 Anserini +test3138 Q0 8933690 20 9.978221 Anserini +test3138 Q0 13032341 21 9.978079 Anserini +test3138 Q0 14888743 22 9.974257 Anserini +test3138 Q0 12572431 23 9.913353 Anserini +test3138 Q0 5668363 24 9.907557 Anserini +test3138 Q0 13401804 25 9.782564 Anserini +test3138 Q0 12610600 26 9.739609 Anserini +test3138 Q0 7476172 27 9.739222 Anserini +test3138 Q0 8594271 28 9.739222 Anserini +test3138 Q0 12799921 29 9.692803 Anserini +test3138 Q0 4605704 30 9.673651 Anserini +test3139 Q0 10689627 1 12.714150 Anserini +test3139 Q0 9568735 2 12.436239 Anserini +test3139 Q0 12562822 3 11.869082 Anserini +test3139 Q0 8023806 4 11.832417 Anserini +test3139 Q0 8853657 5 11.785176 Anserini +test3139 Q0 7208161 6 11.507163 Anserini +test3139 Q0 15696498 7 11.502865 Anserini +test3139 Q0 15696497 8 11.394189 Anserini +test3139 Q0 7495179 9 11.330015 Anserini +test3139 Q0 8023805 10 11.281101 Anserini +test3139 Q0 10195132 11 11.162725 Anserini +test3139 Q0 10698879 12 11.157665 Anserini +test3139 Q0 10195133 13 11.132516 Anserini +test3139 Q0 7931629 14 10.878243 Anserini +test3139 Q0 10698644 15 10.725224 Anserini +test3139 Q0 3277640 16 10.690948 Anserini +test3139 Q0 10698882 17 10.633552 Anserini +test3139 Q0 10698955 18 10.633552 Anserini +test3139 Q0 8873074 19 10.633552 Anserini +test3139 Q0 10282915 20 10.633552 Anserini +test3139 Q0 6116640 21 10.633552 Anserini +test3139 Q0 10698663 22 10.633552 Anserini +test3139 Q0 10698784 23 10.633552 Anserini +test3139 Q0 2050348 24 10.633552 Anserini +test3139 Q0 1800641 25 10.633552 Anserini +test3139 Q0 7460455 26 10.633552 Anserini +test3139 Q0 10698807 27 10.633552 Anserini +test3139 Q0 10689820 28 10.633552 Anserini +test3139 Q0 20670472 29 10.597404 Anserini +test3139 Q0 1819159 30 10.576668 Anserini +test314 Q0 3011707 1 16.396509 Anserini +test314 Q0 14350679 2 16.184652 Anserini +test314 Q0 14651752 3 16.169426 Anserini +test314 Q0 1848792 4 16.107803 Anserini +test314 Q0 14350678 5 15.854315 Anserini +test314 Q0 367579 6 15.571818 Anserini +test314 Q0 834595 7 15.541948 Anserini +test314 Q0 14651688 8 15.355350 Anserini +test314 Q0 14467736 9 15.268126 Anserini +test314 Q0 14651695 10 15.198608 Anserini +test314 Q0 2635157 11 15.184592 Anserini +test314 Q0 8305295 12 14.722346 Anserini +test314 Q0 15876311 13 14.586699 Anserini +test314 Q0 734439 14 14.493401 Anserini +test314 Q0 11363271 15 14.481978 Anserini +test314 Q0 14651701 16 14.335989 Anserini +test314 Q0 18825179 17 14.329633 Anserini +test314 Q0 15851434 18 14.298292 Anserini +test314 Q0 11201632 19 14.277472 Anserini +test314 Q0 6891571 20 14.270837 Anserini +test314 Q0 2504406 21 14.200918 Anserini +test314 Q0 14867484 22 14.195393 Anserini +test314 Q0 1956622 23 14.195393 Anserini +test314 Q0 13913559 24 14.154284 Anserini +test314 Q0 1374231 25 14.150826 Anserini +test314 Q0 11162002 26 14.143784 Anserini +test314 Q0 14893959 27 14.088362 Anserini +test314 Q0 2194034 28 14.086182 Anserini +test314 Q0 20739503 29 14.080444 Anserini +test314 Q0 20739506 30 14.080444 Anserini +test3140 Q0 1263548 1 11.285592 Anserini +test3140 Q0 1263892 2 10.845252 Anserini +test3140 Q0 1263905 3 10.696264 Anserini +test3140 Q0 1242362 4 10.654693 Anserini +test3140 Q0 1263876 5 10.591225 Anserini +test3140 Q0 1250281 6 10.479004 Anserini +test3140 Q0 7076681 7 10.434187 Anserini +test3140 Q0 15594356 8 10.273400 Anserini +test3140 Q0 1263500 9 10.256686 Anserini +test3140 Q0 15748471 10 10.245962 Anserini +test3140 Q0 1244101 11 10.232651 Anserini +test3140 Q0 1249829 12 10.223408 Anserini +test3140 Q0 15594361 13 10.210493 Anserini +test3140 Q0 1249838 14 10.157000 Anserini +test3140 Q0 1264286 15 10.128883 Anserini +test3140 Q0 1263148 16 10.063722 Anserini +test3140 Q0 1263516 17 10.035265 Anserini +test3140 Q0 4491816 18 9.999588 Anserini +test3140 Q0 4491818 19 9.999588 Anserini +test3140 Q0 6836341 20 9.999588 Anserini +test3140 Q0 12033280 21 9.936454 Anserini +test3140 Q0 1263394 22 9.922855 Anserini +test3140 Q0 7533569 23 9.875067 Anserini +test3140 Q0 7533572 24 9.875067 Anserini +test3140 Q0 13563985 25 9.840099 Anserini +test3140 Q0 20285018 26 9.787230 Anserini +test3140 Q0 1263155 27 9.776168 Anserini +test3140 Q0 1249839 28 9.774197 Anserini +test3140 Q0 16403241 29 9.766077 Anserini +test3140 Q0 16403242 30 9.766077 Anserini +test3141 Q0 16615883 1 15.035639 Anserini +test3141 Q0 15325015 2 13.766521 Anserini +test3141 Q0 717169 3 13.626149 Anserini +test3141 Q0 3278966 4 13.263646 Anserini +test3141 Q0 3957512 5 13.240665 Anserini +test3141 Q0 20017366 6 12.961695 Anserini +test3141 Q0 2952097 7 12.736225 Anserini +test3141 Q0 3736292 8 12.713220 Anserini +test3141 Q0 13634953 9 12.639495 Anserini +test3141 Q0 3769549 10 12.584721 Anserini +test3141 Q0 8481914 11 12.533597 Anserini +test3141 Q0 20431533 12 12.509859 Anserini +test3141 Q0 15325014 13 12.481946 Anserini +test3141 Q0 2071923 14 12.458681 Anserini +test3141 Q0 11109937 15 12.402906 Anserini +test3141 Q0 6165846 16 12.392417 Anserini +test3141 Q0 8702464 17 12.301411 Anserini +test3141 Q0 7577587 18 12.282894 Anserini +test3141 Q0 10522669 19 12.274027 Anserini +test3141 Q0 2556882 20 12.222174 Anserini +test3141 Q0 11685280 21 12.220478 Anserini +test3141 Q0 2952103 22 12.208097 Anserini +test3141 Q0 2949089 23 12.208097 Anserini +test3141 Q0 2556857 24 12.208032 Anserini +test3141 Q0 15324996 25 12.161991 Anserini +test3141 Q0 20435021 26 12.133586 Anserini +test3141 Q0 8266995 27 12.133348 Anserini +test3141 Q0 10216711 28 12.113291 Anserini +test3141 Q0 20017378 29 12.110682 Anserini +test3141 Q0 3920252 30 11.979387 Anserini +test3142 Q0 12881699 1 16.437576 Anserini +test3142 Q0 12881698 2 16.331715 Anserini +test3142 Q0 19376999 3 15.236626 Anserini +test3142 Q0 1721107 4 14.649683 Anserini +test3142 Q0 19377001 5 14.135192 Anserini +test3142 Q0 15256086 6 13.835813 Anserini +test3142 Q0 15216292 7 13.762911 Anserini +test3142 Q0 12881691 8 13.660328 Anserini +test3142 Q0 19377002 9 13.251857 Anserini +test3142 Q0 18045968 10 13.118349 Anserini +test3142 Q0 15978273 11 12.682730 Anserini +test3142 Q0 13760107 12 12.343237 Anserini +test3142 Q0 15256087 13 12.279996 Anserini +test3142 Q0 7054520 14 12.211144 Anserini +test3142 Q0 14761263 15 12.101522 Anserini +test3142 Q0 12881689 16 12.048328 Anserini +test3142 Q0 4058504 17 11.967790 Anserini +test3142 Q0 15395079 18 11.821247 Anserini +test3142 Q0 12881684 19 11.791206 Anserini +test3142 Q0 12881685 20 11.722103 Anserini +test3142 Q0 13760112 21 11.495399 Anserini +test3142 Q0 12881692 22 11.431205 Anserini +test3142 Q0 12881688 23 11.396124 Anserini +test3142 Q0 20488857 24 11.390629 Anserini +test3142 Q0 10219164 25 11.371772 Anserini +test3142 Q0 18862837 26 11.332614 Anserini +test3142 Q0 14801289 27 11.331903 Anserini +test3142 Q0 12881694 28 11.112343 Anserini +test3142 Q0 12881693 29 11.010084 Anserini +test3142 Q0 18733454 30 10.896507 Anserini +test3143 Q0 9409873 1 19.273407 Anserini +test3143 Q0 195132 2 18.528070 Anserini +test3143 Q0 6438831 3 18.233919 Anserini +test3143 Q0 2845025 4 17.486435 Anserini +test3143 Q0 897319 5 17.371708 Anserini +test3143 Q0 11296676 6 17.295397 Anserini +test3143 Q0 20695795 7 17.145491 Anserini +test3143 Q0 7072918 8 16.862537 Anserini +test3143 Q0 2861108 9 16.800488 Anserini +test3143 Q0 4714933 10 16.753326 Anserini +test3143 Q0 125103 11 16.725735 Anserini +test3143 Q0 1399902 12 16.669664 Anserini +test3143 Q0 3862615 13 16.640448 Anserini +test3143 Q0 4618193 14 16.511339 Anserini +test3143 Q0 2814724 15 16.230762 Anserini +test3143 Q0 4402417 16 16.161789 Anserini +test3143 Q0 1598249 17 16.122147 Anserini +test3143 Q0 2897674 18 16.066132 Anserini +test3143 Q0 438723 19 16.014736 Anserini +test3143 Q0 11296422 20 15.995675 Anserini +test3143 Q0 4872966 21 15.970583 Anserini +test3143 Q0 733734 22 15.946483 Anserini +test3143 Q0 7915086 23 15.942753 Anserini +test3143 Q0 333165 24 15.924387 Anserini +test3143 Q0 2356892 25 15.923526 Anserini +test3143 Q0 10287353 26 15.899629 Anserini +test3143 Q0 10163752 27 15.815024 Anserini +test3143 Q0 616959 28 15.788861 Anserini +test3143 Q0 10154689 29 15.755086 Anserini +test3143 Q0 3862616 30 15.650558 Anserini +test3144 Q0 20398627 1 32.593887 Anserini +test3144 Q0 20398634 2 32.425884 Anserini +test3144 Q0 20398632 3 26.003746 Anserini +test3144 Q0 16699572 4 25.695658 Anserini +test3144 Q0 20398630 5 25.518034 Anserini +test3144 Q0 20398629 6 25.129843 Anserini +test3144 Q0 20398631 7 24.919363 Anserini +test3144 Q0 20398628 8 24.131155 Anserini +test3144 Q0 20398633 9 24.131155 Anserini +test3144 Q0 16699570 10 22.316160 Anserini +test3144 Q0 5159167 11 16.728121 Anserini +test3144 Q0 13058369 12 15.314880 Anserini +test3144 Q0 5159164 13 15.314880 Anserini +test3144 Q0 8665832 14 14.008874 Anserini +test3144 Q0 17442012 15 13.345599 Anserini +test3144 Q0 17442017 16 13.278530 Anserini +test3144 Q0 19711478 17 13.187666 Anserini +test3144 Q0 19711477 18 13.081162 Anserini +test3144 Q0 19711479 19 12.976440 Anserini +test3144 Q0 15955698 20 11.937787 Anserini +test3144 Q0 8894499 21 11.756701 Anserini +test3144 Q0 4592292 22 11.565424 Anserini +test3144 Q0 1998598 23 11.391530 Anserini +test3144 Q0 8186250 24 11.356526 Anserini +test3144 Q0 15955699 25 11.277676 Anserini +test3144 Q0 13058156 26 11.263995 Anserini +test3144 Q0 8186248 27 11.261845 Anserini +test3144 Q0 8393474 28 11.138330 Anserini +test3144 Q0 10228412 29 11.138330 Anserini +test3144 Q0 2999628 30 11.134052 Anserini +test3145 Q0 1451418 1 20.273220 Anserini +test3145 Q0 1451399 2 20.215940 Anserini +test3145 Q0 10278154 3 19.533241 Anserini +test3145 Q0 8263701 4 19.376354 Anserini +test3145 Q0 5270785 5 19.051498 Anserini +test3145 Q0 10937871 6 18.872017 Anserini +test3145 Q0 3377873 7 18.751341 Anserini +test3145 Q0 182088 8 18.670565 Anserini +test3145 Q0 1451410 9 18.497938 Anserini +test3145 Q0 17605703 10 18.455992 Anserini +test3145 Q0 5079965 11 18.328300 Anserini +test3145 Q0 7002746 12 18.221186 Anserini +test3145 Q0 10500888 13 18.201723 Anserini +test3145 Q0 6993562 14 18.121565 Anserini +test3145 Q0 110750 15 18.065220 Anserini +test3145 Q0 376604 16 17.928858 Anserini +test3145 Q0 14098194 17 17.914660 Anserini +test3145 Q0 1451415 18 17.894501 Anserini +test3145 Q0 182090 19 17.884722 Anserini +test3145 Q0 4251268 20 17.852327 Anserini +test3145 Q0 9334088 21 17.850523 Anserini +test3145 Q0 11206810 22 17.751883 Anserini +test3145 Q0 1879092 23 17.743885 Anserini +test3145 Q0 19807260 24 17.732464 Anserini +test3145 Q0 12886824 25 17.706408 Anserini +test3145 Q0 7002731 26 17.566044 Anserini +test3145 Q0 7002777 27 17.566044 Anserini +test3145 Q0 8569375 28 17.523346 Anserini +test3145 Q0 14098193 29 17.472425 Anserini +test3145 Q0 14037188 30 17.450600 Anserini +test3146 Q0 10553483 1 16.125299 Anserini +test3146 Q0 8879946 2 14.789318 Anserini +test3146 Q0 541119 3 14.676435 Anserini +test3146 Q0 8661058 4 14.333775 Anserini +test3146 Q0 10553490 5 14.047947 Anserini +test3146 Q0 10553497 6 13.898389 Anserini +test3146 Q0 16736619 7 13.877213 Anserini +test3146 Q0 10553480 8 13.744110 Anserini +test3146 Q0 1959472 9 13.297480 Anserini +test3146 Q0 1959480 10 13.221766 Anserini +test3146 Q0 10553491 11 13.212505 Anserini +test3146 Q0 17521193 12 13.120960 Anserini +test3146 Q0 17521195 13 12.996458 Anserini +test3146 Q0 7293323 14 12.961679 Anserini +test3146 Q0 3874981 15 12.948846 Anserini +test3146 Q0 1959466 16 12.920389 Anserini +test3146 Q0 2154681 17 12.906440 Anserini +test3146 Q0 2813491 18 12.900013 Anserini +test3146 Q0 5774111 19 12.827051 Anserini +test3146 Q0 7948618 20 12.681248 Anserini +test3146 Q0 6604728 21 12.600667 Anserini +test3146 Q0 2020778 22 12.575989 Anserini +test3146 Q0 1959458 23 12.489829 Anserini +test3146 Q0 7506211 24 12.422329 Anserini +test3146 Q0 1959476 25 12.292850 Anserini +test3146 Q0 18869588 26 12.265360 Anserini +test3146 Q0 8589904 27 12.229872 Anserini +test3146 Q0 10367385 28 12.219206 Anserini +test3146 Q0 8645524 29 12.150524 Anserini +test3146 Q0 3936113 30 12.101567 Anserini +test3147 Q0 5676458 1 13.102917 Anserini +test3147 Q0 19892287 2 13.055716 Anserini +test3147 Q0 19892285 3 12.916714 Anserini +test3147 Q0 5658529 4 12.737129 Anserini +test3147 Q0 3427252 5 12.614485 Anserini +test3147 Q0 3427244 6 12.614485 Anserini +test3147 Q0 14050193 7 12.550171 Anserini +test3147 Q0 3427250 8 12.345720 Anserini +test3147 Q0 4881514 9 12.245339 Anserini +test3147 Q0 3427248 10 12.161712 Anserini +test3147 Q0 7818484 11 11.465663 Anserini +test3147 Q0 14660599 12 11.452877 Anserini +test3147 Q0 14435905 13 11.252718 Anserini +test3147 Q0 16240019 14 11.215088 Anserini +test3147 Q0 6195887 15 11.203704 Anserini +test3147 Q0 16240020 16 11.145963 Anserini +test3147 Q0 17273290 17 11.142993 Anserini +test3147 Q0 18850182 18 11.139254 Anserini +test3147 Q0 4988567 19 11.123456 Anserini +test3147 Q0 905624 20 11.113151 Anserini +test3147 Q0 17434898 21 11.068459 Anserini +test3147 Q0 11055356 22 11.043783 Anserini +test3147 Q0 16198635 23 10.985789 Anserini +test3147 Q0 11402060 24 10.972493 Anserini +test3147 Q0 16389739 25 10.968092 Anserini +test3147 Q0 2145872 26 10.953674 Anserini +test3147 Q0 9723642 27 10.913996 Anserini +test3147 Q0 17819245 28 10.911386 Anserini +test3147 Q0 6670184 29 10.897116 Anserini +test3147 Q0 8537019 30 10.879446 Anserini +test3148 Q0 307223 1 14.187726 Anserini +test3148 Q0 5695200 2 13.788729 Anserini +test3148 Q0 9068517 3 13.415221 Anserini +test3148 Q0 16586594 4 13.073294 Anserini +test3148 Q0 12383531 5 12.872815 Anserini +test3148 Q0 12383589 6 12.767136 Anserini +test3148 Q0 12383545 7 12.726163 Anserini +test3148 Q0 17239336 8 12.698385 Anserini +test3148 Q0 16586596 9 12.632003 Anserini +test3148 Q0 2917400 10 12.619419 Anserini +test3148 Q0 17431538 11 12.582601 Anserini +test3148 Q0 6372780 12 12.532230 Anserini +test3148 Q0 163781 13 12.240263 Anserini +test3148 Q0 333705 14 12.196408 Anserini +test3148 Q0 12665430 15 12.189561 Anserini +test3148 Q0 12665433 16 12.189561 Anserini +test3148 Q0 12383532 17 12.143048 Anserini +test3148 Q0 12383536 18 12.113264 Anserini +test3148 Q0 17233543 19 12.038261 Anserini +test3148 Q0 12383546 20 12.037766 Anserini +test3148 Q0 19206396 21 12.036670 Anserini +test3148 Q0 1690322 22 12.001535 Anserini +test3148 Q0 12383585 23 11.959999 Anserini +test3148 Q0 498399 24 11.923926 Anserini +test3148 Q0 3209174 25 11.782741 Anserini +test3148 Q0 458608 26 11.747021 Anserini +test3148 Q0 320158 27 11.710842 Anserini +test3148 Q0 19506062 28 11.709794 Anserini +test3148 Q0 5812633 29 11.664875 Anserini +test3148 Q0 17431545 30 11.661189 Anserini +test3149 Q0 17490403 1 19.327330 Anserini +test3149 Q0 15522996 2 18.106190 Anserini +test3149 Q0 17490375 3 17.688862 Anserini +test3149 Q0 15522993 4 17.684345 Anserini +test3149 Q0 17585983 5 17.464729 Anserini +test3149 Q0 16635924 6 17.315092 Anserini +test3149 Q0 17490404 7 17.291195 Anserini +test3149 Q0 17871295 8 16.873751 Anserini +test3149 Q0 19833466 9 16.557951 Anserini +test3149 Q0 17490411 10 16.525219 Anserini +test3149 Q0 17871296 11 16.380411 Anserini +test3149 Q0 17490401 12 16.338448 Anserini +test3149 Q0 15591335 13 16.207825 Anserini +test3149 Q0 17490379 14 16.162550 Anserini +test3149 Q0 5104589 15 16.121916 Anserini +test3149 Q0 19833493 16 15.992190 Anserini +test3149 Q0 17490398 17 15.989887 Anserini +test3149 Q0 17490392 18 15.895796 Anserini +test3149 Q0 11544867 19 15.864443 Anserini +test3149 Q0 20397083 20 15.759438 Anserini +test3149 Q0 19833197 21 15.756307 Anserini +test3149 Q0 19833165 22 15.756307 Anserini +test3149 Q0 17280377 23 15.724122 Anserini +test3149 Q0 10994275 24 15.680514 Anserini +test3149 Q0 20984419 25 15.679035 Anserini +test3149 Q0 20397075 26 15.679035 Anserini +test3149 Q0 19833427 27 15.679035 Anserini +test3149 Q0 19833465 28 15.679035 Anserini +test3149 Q0 19833487 29 15.679035 Anserini +test3149 Q0 19833422 30 15.679035 Anserini +test315 Q0 11395954 1 11.507195 Anserini +test315 Q0 11026414 2 10.664350 Anserini +test315 Q0 18694647 3 10.492872 Anserini +test315 Q0 19243062 4 10.210188 Anserini +test315 Q0 3256829 5 10.094550 Anserini +test315 Q0 13086479 6 10.081944 Anserini +test315 Q0 19233767 7 10.050480 Anserini +test315 Q0 19340827 8 9.977001 Anserini +test315 Q0 3754941 9 9.925028 Anserini +test315 Q0 9967883 10 9.910525 Anserini +test315 Q0 15268158 11 9.902174 Anserini +test315 Q0 7234462 12 9.805086 Anserini +test315 Q0 16340146 13 9.793827 Anserini +test315 Q0 16348092 14 9.759396 Anserini +test315 Q0 3276849 15 9.671493 Anserini +test315 Q0 15117453 16 9.617133 Anserini +test315 Q0 10937198 17 9.617089 Anserini +test315 Q0 11576628 18 9.614283 Anserini +test315 Q0 1604136 19 9.607910 Anserini +test315 Q0 2578508 20 9.601055 Anserini +test315 Q0 754209 21 9.546003 Anserini +test315 Q0 10587861 22 9.526679 Anserini +test315 Q0 1959746 23 9.507298 Anserini +test315 Q0 15790755 24 9.498463 Anserini +test315 Q0 3947071 25 9.480009 Anserini +test315 Q0 18746452 26 9.472177 Anserini +test315 Q0 7249431 27 9.454653 Anserini +test315 Q0 2625120 28 9.433080 Anserini +test315 Q0 7453452 29 9.431108 Anserini +test315 Q0 5717835 30 9.431108 Anserini +test3150 Q0 12909155 1 15.426714 Anserini +test3150 Q0 9091372 2 15.279794 Anserini +test3150 Q0 11686735 3 14.439841 Anserini +test3150 Q0 8810211 4 13.935616 Anserini +test3150 Q0 10206744 5 13.520515 Anserini +test3150 Q0 19390781 6 13.377338 Anserini +test3150 Q0 10834351 7 13.342196 Anserini +test3150 Q0 1681458 8 13.165907 Anserini +test3150 Q0 711741 9 12.288425 Anserini +test3150 Q0 10021955 10 12.112158 Anserini +test3150 Q0 10120337 11 12.111280 Anserini +test3150 Q0 8281988 12 11.912132 Anserini +test3150 Q0 13782949 13 11.905738 Anserini +test3150 Q0 9336079 14 11.869827 Anserini +test3150 Q0 13468531 15 11.834999 Anserini +test3150 Q0 10064462 16 11.697724 Anserini +test3150 Q0 12766977 17 11.638297 Anserini +test3150 Q0 2691550 18 11.558145 Anserini +test3150 Q0 6948991 19 11.515781 Anserini +test3150 Q0 3023458 20 11.500140 Anserini +test3150 Q0 2759322 21 11.408499 Anserini +test3150 Q0 7222107 22 11.400141 Anserini +test3150 Q0 15488577 23 11.352071 Anserini +test3150 Q0 20100138 24 11.323224 Anserini +test3150 Q0 2404538 25 11.270651 Anserini +test3150 Q0 14060890 26 11.158360 Anserini +test3150 Q0 14121650 27 11.152764 Anserini +test3150 Q0 1295843 28 11.137628 Anserini +test3150 Q0 10271058 29 11.117374 Anserini +test3150 Q0 14060899 30 11.090993 Anserini +test3151 Q0 14852837 1 26.411776 Anserini +test3151 Q0 2448401 2 24.419550 Anserini +test3151 Q0 14852838 3 24.356323 Anserini +test3151 Q0 2448407 4 24.278307 Anserini +test3151 Q0 2448430 5 22.764822 Anserini +test3151 Q0 2448436 6 22.764822 Anserini +test3151 Q0 2448406 7 22.609177 Anserini +test3151 Q0 13228667 8 21.481785 Anserini +test3151 Q0 2448435 9 21.481785 Anserini +test3151 Q0 2448433 10 21.226435 Anserini +test3151 Q0 11426831 11 21.198700 Anserini +test3151 Q0 9165982 12 21.050446 Anserini +test3151 Q0 5035057 13 21.050446 Anserini +test3151 Q0 9165981 14 21.050446 Anserini +test3151 Q0 5671266 15 20.630817 Anserini +test3151 Q0 13228664 16 20.490438 Anserini +test3151 Q0 13228682 17 20.490438 Anserini +test3151 Q0 13228686 18 20.490438 Anserini +test3151 Q0 5043660 19 20.243097 Anserini +test3151 Q0 5043667 20 20.095449 Anserini +test3151 Q0 13228679 21 19.477596 Anserini +test3151 Q0 5142868 22 19.306936 Anserini +test3151 Q0 2448434 23 19.184772 Anserini +test3151 Q0 4530123 24 19.184772 Anserini +test3151 Q0 14852835 25 19.103745 Anserini +test3151 Q0 12773517 26 19.028614 Anserini +test3151 Q0 10931220 27 19.028614 Anserini +test3151 Q0 5142864 28 18.875092 Anserini +test3151 Q0 4197706 29 18.724133 Anserini +test3151 Q0 4931104 30 18.369204 Anserini +test3152 Q0 854556 1 16.173279 Anserini +test3152 Q0 854563 2 15.552332 Anserini +test3152 Q0 854567 3 15.515590 Anserini +test3152 Q0 854559 4 15.460868 Anserini +test3152 Q0 854562 5 15.267303 Anserini +test3152 Q0 9873472 6 14.713920 Anserini +test3152 Q0 5603377 7 14.601727 Anserini +test3152 Q0 216334 8 14.188677 Anserini +test3152 Q0 854565 9 14.159487 Anserini +test3152 Q0 357368 10 13.709362 Anserini +test3152 Q0 10736926 11 13.596846 Anserini +test3152 Q0 10736928 12 13.566357 Anserini +test3152 Q0 854574 13 13.006861 Anserini +test3152 Q0 10736927 14 12.819037 Anserini +test3152 Q0 12757237 15 12.732707 Anserini +test3152 Q0 854568 16 12.660213 Anserini +test3152 Q0 12757231 17 12.248128 Anserini +test3152 Q0 12757236 18 12.248128 Anserini +test3152 Q0 7197539 19 11.834760 Anserini +test3152 Q0 854569 20 11.756297 Anserini +test3152 Q0 14798392 21 11.752941 Anserini +test3152 Q0 12757232 22 11.711472 Anserini +test3152 Q0 387460 23 11.677230 Anserini +test3152 Q0 854561 24 11.576340 Anserini +test3152 Q0 854560 25 11.517572 Anserini +test3152 Q0 7368436 26 11.468958 Anserini +test3152 Q0 4254843 27 11.386354 Anserini +test3152 Q0 2301939 28 11.114395 Anserini +test3152 Q0 5958403 29 11.114395 Anserini +test3152 Q0 854572 30 11.108046 Anserini +test3153 Q0 11088580 1 13.030519 Anserini +test3153 Q0 20656996 2 12.943986 Anserini +test3153 Q0 14788988 3 12.269999 Anserini +test3153 Q0 10851919 4 11.943282 Anserini +test3153 Q0 20657000 5 11.876901 Anserini +test3153 Q0 9135438 6 11.850549 Anserini +test3153 Q0 4539812 7 11.829453 Anserini +test3153 Q0 493327 8 11.591521 Anserini +test3153 Q0 493280 9 11.537615 Anserini +test3153 Q0 3564193 10 11.483894 Anserini +test3153 Q0 20656998 11 11.383923 Anserini +test3153 Q0 3407107 12 11.370493 Anserini +test3153 Q0 11713427 13 11.339878 Anserini +test3153 Q0 13778884 14 11.317419 Anserini +test3153 Q0 9796090 15 11.201027 Anserini +test3153 Q0 20573105 16 11.200211 Anserini +test3153 Q0 9412125 17 11.164013 Anserini +test3153 Q0 2764357 18 11.160288 Anserini +test3153 Q0 11395767 19 11.106306 Anserini +test3153 Q0 12214703 20 10.976067 Anserini +test3153 Q0 3173817 21 10.940863 Anserini +test3153 Q0 493283 22 10.938578 Anserini +test3153 Q0 4660782 23 10.908351 Anserini +test3153 Q0 11811496 24 10.885240 Anserini +test3153 Q0 13722466 25 10.871127 Anserini +test3153 Q0 9332595 26 10.842938 Anserini +test3153 Q0 4087543 27 10.827325 Anserini +test3153 Q0 20656997 28 10.807775 Anserini +test3153 Q0 8266189 29 10.779306 Anserini +test3153 Q0 18760226 30 10.754560 Anserini +test3154 Q0 18748919 1 16.460501 Anserini +test3154 Q0 2022770 2 15.894652 Anserini +test3154 Q0 10885586 3 15.236882 Anserini +test3154 Q0 18748926 4 15.088273 Anserini +test3154 Q0 18748912 5 14.963508 Anserini +test3154 Q0 18748915 6 14.594831 Anserini +test3154 Q0 2881935 7 14.590133 Anserini +test3154 Q0 12236464 8 14.378832 Anserini +test3154 Q0 10190725 9 14.344975 Anserini +test3154 Q0 8922343 10 14.258749 Anserini +test3154 Q0 20397469 11 14.185012 Anserini +test3154 Q0 2881848 12 14.133238 Anserini +test3154 Q0 1904725 13 14.130180 Anserini +test3154 Q0 11803015 14 13.992246 Anserini +test3154 Q0 18748941 15 13.970140 Anserini +test3154 Q0 19896636 16 13.778731 Anserini +test3154 Q0 18748923 17 13.759235 Anserini +test3154 Q0 20797326 18 13.757849 Anserini +test3154 Q0 19515931 19 13.700035 Anserini +test3154 Q0 18748933 20 13.680873 Anserini +test3154 Q0 8101344 21 13.608791 Anserini +test3154 Q0 18748918 22 13.567053 Anserini +test3154 Q0 7157557 23 13.424273 Anserini +test3154 Q0 3426344 24 13.397887 Anserini +test3154 Q0 5205496 25 13.358542 Anserini +test3154 Q0 2881937 26 13.344711 Anserini +test3154 Q0 11169612 27 13.327402 Anserini +test3154 Q0 10190694 28 13.283322 Anserini +test3154 Q0 18748937 29 13.279290 Anserini +test3154 Q0 16651766 30 13.278814 Anserini +test3155 Q0 1490693 1 10.366192 Anserini +test3155 Q0 17668778 2 10.218465 Anserini +test3155 Q0 20578954 3 9.824196 Anserini +test3155 Q0 13612906 4 9.810657 Anserini +test3155 Q0 10967920 5 9.810188 Anserini +test3155 Q0 538730 6 9.670886 Anserini +test3155 Q0 14139333 7 9.601301 Anserini +test3155 Q0 17668766 8 9.532229 Anserini +test3155 Q0 19991755 9 9.492422 Anserini +test3155 Q0 16669034 10 9.417002 Anserini +test3155 Q0 13975397 11 9.340522 Anserini +test3155 Q0 9042244 12 9.254326 Anserini +test3155 Q0 10376227 13 9.216789 Anserini +test3155 Q0 12906235 14 9.175763 Anserini +test3155 Q0 10828324 15 9.092223 Anserini +test3155 Q0 2397370 16 9.071445 Anserini +test3155 Q0 12940745 17 9.068574 Anserini +test3155 Q0 3187079 18 8.985988 Anserini +test3155 Q0 3055519 19 8.881757 Anserini +test3155 Q0 16619815 20 8.784901 Anserini +test3155 Q0 1923058 21 8.768727 Anserini +test3155 Q0 16671372 22 8.755430 Anserini +test3155 Q0 19559366 23 8.751753 Anserini +test3155 Q0 482437 24 8.748263 Anserini +test3155 Q0 18035491 25 8.727531 Anserini +test3155 Q0 5483132 26 8.678064 Anserini +test3155 Q0 12516371 27 8.661022 Anserini +test3155 Q0 12327308 28 8.654305 Anserini +test3155 Q0 20240141 29 8.639701 Anserini +test3155 Q0 7216277 30 8.570873 Anserini +test3156 Q0 1317456 1 9.102407 Anserini +test3156 Q0 140250 2 9.058037 Anserini +test3156 Q0 5332252 3 8.697471 Anserini +test3156 Q0 402019 4 8.614939 Anserini +test3156 Q0 97758 5 8.535675 Anserini +test3156 Q0 16466115 6 8.488272 Anserini +test3156 Q0 702110 7 8.309696 Anserini +test3156 Q0 7134333 8 8.088028 Anserini +test3156 Q0 20873802 9 8.045570 Anserini +test3156 Q0 12660562 10 8.024391 Anserini +test3156 Q0 20825450 11 7.991642 Anserini +test3156 Q0 15215410 12 7.988084 Anserini +test3156 Q0 19418835 13 7.929473 Anserini +test3156 Q0 14106396 14 7.884995 Anserini +test3156 Q0 20773229 15 7.882461 Anserini +test3156 Q0 402016 16 7.811830 Anserini +test3156 Q0 8479912 17 7.751479 Anserini +test3156 Q0 2181285 18 7.751479 Anserini +test3156 Q0 1345052 19 7.725584 Anserini +test3156 Q0 14658841 20 7.717584 Anserini +test3156 Q0 19011285 21 7.717584 Anserini +test3156 Q0 101896 22 7.717584 Anserini +test3156 Q0 18397620 23 7.692665 Anserini +test3156 Q0 4525429 24 7.687770 Anserini +test3156 Q0 12286857 25 7.648797 Anserini +test3156 Q0 94258 26 7.648797 Anserini +test3156 Q0 3661013 27 7.648797 Anserini +test3156 Q0 11104371 28 7.628747 Anserini +test3156 Q0 97757 29 7.627766 Anserini +test3156 Q0 15505811 30 7.602731 Anserini +test3157 Q0 13965667 1 17.840818 Anserini +test3157 Q0 20214940 2 17.172287 Anserini +test3157 Q0 19294111 3 17.034193 Anserini +test3157 Q0 5532339 4 16.898546 Anserini +test3157 Q0 7781862 5 16.206154 Anserini +test3157 Q0 7781860 6 16.037329 Anserini +test3157 Q0 14335780 7 15.954121 Anserini +test3157 Q0 19634712 8 15.402516 Anserini +test3157 Q0 6424426 9 15.162239 Anserini +test3157 Q0 5532325 10 14.744907 Anserini +test3157 Q0 5532327 11 14.634678 Anserini +test3157 Q0 9092390 12 13.595983 Anserini +test3157 Q0 5532342 13 13.595983 Anserini +test3157 Q0 13965669 14 13.299247 Anserini +test3157 Q0 9092401 15 13.179750 Anserini +test3157 Q0 13965680 16 12.846313 Anserini +test3157 Q0 15899256 17 12.531211 Anserini +test3157 Q0 9092460 18 12.268674 Anserini +test3157 Q0 19159010 19 11.859070 Anserini +test3157 Q0 945252 20 11.857472 Anserini +test3157 Q0 2187951 21 11.779001 Anserini +test3157 Q0 13965675 22 11.733946 Anserini +test3157 Q0 15124868 23 11.439738 Anserini +test3157 Q0 9092397 24 11.400449 Anserini +test3157 Q0 20908798 25 11.398227 Anserini +test3157 Q0 13965679 26 11.174888 Anserini +test3157 Q0 17006051 27 11.092537 Anserini +test3157 Q0 19790671 28 11.058919 Anserini +test3157 Q0 3838090 29 10.946709 Anserini +test3157 Q0 12400111 30 10.866923 Anserini +test3158 Q0 14033962 1 8.987105 Anserini +test3158 Q0 19782023 2 8.893681 Anserini +test3158 Q0 16600403 3 8.703607 Anserini +test3158 Q0 4116255 4 8.694933 Anserini +test3158 Q0 19909359 5 8.649360 Anserini +test3158 Q0 15556341 6 8.637941 Anserini +test3158 Q0 4379658 7 8.628846 Anserini +test3158 Q0 9167947 8 8.553152 Anserini +test3158 Q0 14828699 9 8.448771 Anserini +test3158 Q0 17039450 10 8.410944 Anserini +test3158 Q0 11103336 11 8.391094 Anserini +test3158 Q0 14828709 12 8.374749 Anserini +test3158 Q0 10243343 13 8.333820 Anserini +test3158 Q0 16350987 14 8.321527 Anserini +test3158 Q0 8183828 15 8.253874 Anserini +test3158 Q0 10207692 16 8.237673 Anserini +test3158 Q0 1919070 17 8.177823 Anserini +test3158 Q0 15041983 18 8.174732 Anserini +test3158 Q0 16340511 19 8.144377 Anserini +test3158 Q0 16921546 20 8.144377 Anserini +test3158 Q0 16921544 21 8.144377 Anserini +test3158 Q0 11012292 22 8.125278 Anserini +test3158 Q0 18163314 23 8.107704 Anserini +test3158 Q0 3094154 24 8.096099 Anserini +test3158 Q0 3094149 25 8.096099 Anserini +test3158 Q0 9111974 26 8.046082 Anserini +test3158 Q0 1959790 27 8.043787 Anserini +test3158 Q0 645440 28 7.968745 Anserini +test3158 Q0 19126106 29 7.937728 Anserini +test3158 Q0 18286273 30 7.930628 Anserini +test3159 Q0 11077931 1 15.139870 Anserini +test3159 Q0 12295969 2 14.127262 Anserini +test3159 Q0 12295955 3 12.907233 Anserini +test3159 Q0 12295956 4 12.870134 Anserini +test3159 Q0 17308158 5 12.771109 Anserini +test3159 Q0 16569032 6 12.729265 Anserini +test3159 Q0 18444929 7 12.673831 Anserini +test3159 Q0 8284663 8 12.517237 Anserini +test3159 Q0 12295958 9 12.208239 Anserini +test3159 Q0 10995258 10 12.198389 Anserini +test3159 Q0 18353643 11 12.139887 Anserini +test3159 Q0 8660883 12 12.044643 Anserini +test3159 Q0 1452003 13 11.969254 Anserini +test3159 Q0 6718942 14 11.888975 Anserini +test3159 Q0 10017191 15 11.865046 Anserini +test3159 Q0 8740844 16 11.834012 Anserini +test3159 Q0 12295967 17 11.712097 Anserini +test3159 Q0 12295968 18 11.631318 Anserini +test3159 Q0 7288160 19 11.547431 Anserini +test3159 Q0 10694129 20 11.447131 Anserini +test3159 Q0 15653350 21 11.358734 Anserini +test3159 Q0 10815966 22 11.341639 Anserini +test3159 Q0 18092017 23 11.315381 Anserini +test3159 Q0 7058256 24 11.266921 Anserini +test3159 Q0 1291016 25 11.266921 Anserini +test3159 Q0 2251924 26 11.213865 Anserini +test3159 Q0 8283989 27 11.179729 Anserini +test3159 Q0 8655591 28 11.172077 Anserini +test3159 Q0 4915953 29 11.172077 Anserini +test3159 Q0 16337909 30 11.147942 Anserini +test316 Q0 14574972 1 20.917927 Anserini +test316 Q0 16256558 2 16.801199 Anserini +test316 Q0 11978225 3 16.330082 Anserini +test316 Q0 16598109 4 15.917742 Anserini +test316 Q0 14580796 5 13.942052 Anserini +test316 Q0 14580836 6 13.700068 Anserini +test316 Q0 5163072 7 13.527863 Anserini +test316 Q0 16256555 8 13.174489 Anserini +test316 Q0 14650104 9 13.143320 Anserini +test316 Q0 16598108 10 13.105344 Anserini +test316 Q0 9783199 11 13.023364 Anserini +test316 Q0 14700213 12 13.010164 Anserini +test316 Q0 14700209 13 13.010164 Anserini +test316 Q0 14696145 14 12.980375 Anserini +test316 Q0 14650105 15 12.779528 Anserini +test316 Q0 9018958 16 12.481599 Anserini +test316 Q0 14574888 17 12.470824 Anserini +test316 Q0 1187036 18 12.461820 Anserini +test316 Q0 14574974 19 12.433802 Anserini +test316 Q0 7150842 20 12.325639 Anserini +test316 Q0 5799276 21 12.302146 Anserini +test316 Q0 13144064 22 12.268395 Anserini +test316 Q0 12680173 23 12.223789 Anserini +test316 Q0 14574973 24 12.111609 Anserini +test316 Q0 14696150 25 12.052767 Anserini +test316 Q0 4003226 26 12.033621 Anserini +test316 Q0 3736020 27 12.012499 Anserini +test316 Q0 12543983 28 12.007215 Anserini +test316 Q0 5163056 29 12.003938 Anserini +test316 Q0 7961976 30 11.972698 Anserini +test3160 Q0 16910399 1 13.533802 Anserini +test3160 Q0 17231428 2 13.181347 Anserini +test3160 Q0 14571675 3 12.426624 Anserini +test3160 Q0 16425614 4 12.314726 Anserini +test3160 Q0 15629997 5 12.253337 Anserini +test3160 Q0 18591353 6 12.129370 Anserini +test3160 Q0 16892788 7 12.022346 Anserini +test3160 Q0 13753845 8 11.957121 Anserini +test3160 Q0 18591349 9 11.903738 Anserini +test3160 Q0 16892787 10 11.884895 Anserini +test3160 Q0 15263184 11 11.717780 Anserini +test3160 Q0 13753796 12 11.651420 Anserini +test3160 Q0 14169805 13 11.643229 Anserini +test3160 Q0 17202051 14 11.614694 Anserini +test3160 Q0 14737232 15 11.613122 Anserini +test3160 Q0 14737237 16 11.546510 Anserini +test3160 Q0 15263189 17 11.505686 Anserini +test3160 Q0 15001042 18 11.441187 Anserini +test3160 Q0 14149064 19 11.369434 Anserini +test3160 Q0 15386815 20 11.294333 Anserini +test3160 Q0 17231427 21 11.262832 Anserini +test3160 Q0 16425615 22 11.229858 Anserini +test3160 Q0 18591352 23 11.153232 Anserini +test3160 Q0 13753827 24 11.136753 Anserini +test3160 Q0 17719462 25 11.078766 Anserini +test3160 Q0 17719468 26 11.078766 Anserini +test3160 Q0 14886360 27 11.029829 Anserini +test3160 Q0 16425598 28 11.022470 Anserini +test3160 Q0 16018680 29 11.012994 Anserini +test3160 Q0 16909744 30 11.004612 Anserini +test3161 Q0 17263165 1 12.125772 Anserini +test3161 Q0 20524202 2 12.091163 Anserini +test3161 Q0 3168729 3 11.195592 Anserini +test3161 Q0 2985897 4 11.031629 Anserini +test3161 Q0 12466420 5 10.977825 Anserini +test3161 Q0 2985872 6 10.941861 Anserini +test3161 Q0 11617202 7 10.936913 Anserini +test3161 Q0 7198756 8 10.921249 Anserini +test3161 Q0 7198808 9 10.848361 Anserini +test3161 Q0 3670808 10 10.836545 Anserini +test3161 Q0 14911703 11 10.793119 Anserini +test3161 Q0 2488498 12 10.785336 Anserini +test3161 Q0 18262532 13 10.731744 Anserini +test3161 Q0 7242218 14 10.716602 Anserini +test3161 Q0 12759131 15 10.647383 Anserini +test3161 Q0 10202162 16 10.527460 Anserini +test3161 Q0 20868269 17 10.471469 Anserini +test3161 Q0 11469874 18 10.471196 Anserini +test3161 Q0 1846156 19 10.429260 Anserini +test3161 Q0 7715309 20 10.375091 Anserini +test3161 Q0 14221260 21 10.374367 Anserini +test3161 Q0 10101537 22 10.357351 Anserini +test3161 Q0 57589 23 10.273170 Anserini +test3161 Q0 1812961 24 10.265517 Anserini +test3161 Q0 37824 25 10.211746 Anserini +test3161 Q0 20359317 26 10.166047 Anserini +test3161 Q0 4524612 27 10.153686 Anserini +test3161 Q0 8845243 28 10.148152 Anserini +test3161 Q0 3085112 29 10.126170 Anserini +test3161 Q0 19657113 30 10.125983 Anserini +test3162 Q0 8210772 1 14.116969 Anserini +test3162 Q0 3772863 2 14.088799 Anserini +test3162 Q0 3027384 3 13.981823 Anserini +test3162 Q0 16425666 4 13.816744 Anserini +test3162 Q0 2603992 5 13.801171 Anserini +test3162 Q0 19149703 6 13.723176 Anserini +test3162 Q0 18659426 7 13.485389 Anserini +test3162 Q0 11567831 8 13.125340 Anserini +test3162 Q0 4144275 9 12.989623 Anserini +test3162 Q0 3210160 10 12.925560 Anserini +test3162 Q0 17127001 11 12.909349 Anserini +test3162 Q0 2276789 12 12.867310 Anserini +test3162 Q0 12017687 13 12.855393 Anserini +test3162 Q0 7998709 14 12.809257 Anserini +test3162 Q0 12017691 15 12.778500 Anserini +test3162 Q0 19461711 16 12.732363 Anserini +test3162 Q0 7998710 17 12.572586 Anserini +test3162 Q0 111201 18 12.533293 Anserini +test3162 Q0 16657645 19 12.474100 Anserini +test3162 Q0 16425668 20 12.451894 Anserini +test3162 Q0 13398121 21 12.435040 Anserini +test3162 Q0 8210773 22 12.395525 Anserini +test3162 Q0 19052863 23 12.393703 Anserini +test3162 Q0 19645135 24 12.345663 Anserini +test3162 Q0 111238 25 12.304883 Anserini +test3162 Q0 11097426 26 12.297855 Anserini +test3162 Q0 18264302 27 12.289385 Anserini +test3162 Q0 16425665 28 12.243093 Anserini +test3162 Q0 111206 29 12.241411 Anserini +test3162 Q0 11415159 30 12.210554 Anserini +test3163 Q0 7955430 1 25.333536 Anserini +test3163 Q0 7955436 2 24.442392 Anserini +test3163 Q0 6601499 3 17.358049 Anserini +test3163 Q0 6601497 4 17.253866 Anserini +test3163 Q0 4537092 5 16.571535 Anserini +test3163 Q0 4878555 6 16.344563 Anserini +test3163 Q0 4019397 7 16.317635 Anserini +test3163 Q0 4878562 8 16.207888 Anserini +test3163 Q0 7601819 9 15.824018 Anserini +test3163 Q0 19637001 10 15.818039 Anserini +test3163 Q0 7955433 11 15.807068 Anserini +test3163 Q0 5191677 12 15.770668 Anserini +test3163 Q0 19636999 13 15.727623 Anserini +test3163 Q0 1960743 14 15.604509 Anserini +test3163 Q0 16516204 15 15.602886 Anserini +test3163 Q0 6766120 16 15.431693 Anserini +test3163 Q0 8703753 17 15.223570 Anserini +test3163 Q0 19636991 18 14.990776 Anserini +test3163 Q0 15428039 19 14.973107 Anserini +test3163 Q0 4216531 20 14.877718 Anserini +test3163 Q0 4613359 21 14.705483 Anserini +test3163 Q0 679373 22 14.645519 Anserini +test3163 Q0 7601818 23 14.624817 Anserini +test3163 Q0 2761048 24 14.582943 Anserini +test3163 Q0 15502801 25 14.446163 Anserini +test3163 Q0 11300747 26 14.406576 Anserini +test3163 Q0 11300749 27 14.406576 Anserini +test3163 Q0 8538634 28 14.360497 Anserini +test3163 Q0 6306885 29 14.343779 Anserini +test3163 Q0 19636992 30 14.308586 Anserini +test3164 Q0 17351448 1 18.180634 Anserini +test3164 Q0 17351446 2 17.899672 Anserini +test3164 Q0 16794602 3 17.545227 Anserini +test3164 Q0 10553919 4 17.369003 Anserini +test3164 Q0 16794599 5 17.327456 Anserini +test3164 Q0 10553921 6 16.989147 Anserini +test3164 Q0 15437418 7 16.972609 Anserini +test3164 Q0 20009328 8 16.855091 Anserini +test3164 Q0 20009330 9 16.855091 Anserini +test3164 Q0 2449680 10 16.638243 Anserini +test3164 Q0 10215706 11 16.600098 Anserini +test3164 Q0 16566505 12 16.579605 Anserini +test3164 Q0 10999579 13 16.378004 Anserini +test3164 Q0 19156331 14 16.244738 Anserini +test3164 Q0 16872613 15 16.098213 Anserini +test3164 Q0 2652886 16 16.076679 Anserini +test3164 Q0 13496542 17 15.996553 Anserini +test3164 Q0 16794601 18 15.954864 Anserini +test3164 Q0 8527242 19 15.923497 Anserini +test3164 Q0 12832384 20 15.923497 Anserini +test3164 Q0 16800772 21 15.923497 Anserini +test3164 Q0 12174547 22 15.912677 Anserini +test3164 Q0 4018612 23 15.883824 Anserini +test3164 Q0 16566526 24 15.882579 Anserini +test3164 Q0 15204445 25 15.865314 Anserini +test3164 Q0 3797646 26 15.759485 Anserini +test3164 Q0 15204462 27 15.754877 Anserini +test3164 Q0 15437419 28 15.720687 Anserini +test3164 Q0 17892066 29 15.687564 Anserini +test3164 Q0 20574720 30 15.687564 Anserini +test3165 Q0 18941128 1 12.788755 Anserini +test3165 Q0 18941142 2 12.788755 Anserini +test3165 Q0 8240199 3 12.205148 Anserini +test3165 Q0 7741663 4 12.169138 Anserini +test3165 Q0 2078552 5 12.117653 Anserini +test3165 Q0 18941129 6 11.995277 Anserini +test3165 Q0 8240202 7 11.976455 Anserini +test3165 Q0 7267081 8 11.972919 Anserini +test3165 Q0 13297140 9 11.946921 Anserini +test3165 Q0 13297141 10 11.911430 Anserini +test3165 Q0 3415856 11 11.803300 Anserini +test3165 Q0 8240200 12 11.784919 Anserini +test3165 Q0 6784467 13 11.660170 Anserini +test3165 Q0 10260205 14 11.649537 Anserini +test3165 Q0 13234758 15 11.511456 Anserini +test3165 Q0 18941141 16 11.398822 Anserini +test3165 Q0 1604067 17 11.375088 Anserini +test3165 Q0 8023197 18 11.331595 Anserini +test3165 Q0 6588593 19 11.181680 Anserini +test3165 Q0 13475231 20 11.151379 Anserini +test3165 Q0 10260207 21 11.104558 Anserini +test3165 Q0 2790290 22 10.997412 Anserini +test3165 Q0 2790292 23 10.920297 Anserini +test3165 Q0 8023199 24 10.918873 Anserini +test3165 Q0 9441513 25 10.903314 Anserini +test3165 Q0 1604072 26 10.859388 Anserini +test3165 Q0 1604104 27 10.830552 Anserini +test3165 Q0 1604101 28 10.830552 Anserini +test3165 Q0 1604073 29 10.802103 Anserini +test3165 Q0 17233496 30 10.801697 Anserini +test3166 Q0 13702197 1 13.206266 Anserini +test3166 Q0 14535657 2 12.771185 Anserini +test3166 Q0 14535660 3 12.771185 Anserini +test3166 Q0 7177383 4 11.726777 Anserini +test3166 Q0 18648107 5 11.619045 Anserini +test3166 Q0 20814845 6 11.505577 Anserini +test3166 Q0 18648104 7 11.316519 Anserini +test3166 Q0 3702572 8 11.244402 Anserini +test3166 Q0 19523137 9 11.216822 Anserini +test3166 Q0 16568090 10 10.880083 Anserini +test3166 Q0 19948535 11 10.878180 Anserini +test3166 Q0 20813520 12 10.868383 Anserini +test3166 Q0 15998132 13 10.799017 Anserini +test3166 Q0 7177385 14 10.772409 Anserini +test3166 Q0 20816183 15 10.701704 Anserini +test3166 Q0 13116517 16 10.644544 Anserini +test3166 Q0 6633928 17 10.448255 Anserini +test3166 Q0 20088270 18 10.427344 Anserini +test3166 Q0 17565537 19 10.263467 Anserini +test3166 Q0 11799442 20 10.232811 Anserini +test3166 Q0 9601744 21 10.221316 Anserini +test3166 Q0 18676874 22 10.214904 Anserini +test3166 Q0 11827306 23 10.198468 Anserini +test3166 Q0 16720480 24 10.136858 Anserini +test3166 Q0 20836121 25 10.136858 Anserini +test3166 Q0 18648108 26 9.990244 Anserini +test3166 Q0 8216933 27 9.970965 Anserini +test3166 Q0 3891299 28 9.970492 Anserini +test3166 Q0 17180690 29 9.970446 Anserini +test3166 Q0 7177395 30 9.959498 Anserini +test3167 Q0 50396 1 14.105500 Anserini +test3167 Q0 14068993 2 13.935530 Anserini +test3167 Q0 16618628 3 13.723919 Anserini +test3167 Q0 14068996 4 13.073935 Anserini +test3167 Q0 50397 5 12.933989 Anserini +test3167 Q0 4997299 6 12.932314 Anserini +test3167 Q0 50395 7 12.844478 Anserini +test3167 Q0 50440 8 12.492496 Anserini +test3167 Q0 16447511 9 12.234182 Anserini +test3167 Q0 9212717 10 12.181252 Anserini +test3167 Q0 14068991 11 12.181252 Anserini +test3167 Q0 9211636 12 12.108199 Anserini +test3167 Q0 4997298 13 12.075943 Anserini +test3167 Q0 1235413 14 12.036110 Anserini +test3167 Q0 10479460 15 12.036110 Anserini +test3167 Q0 14068990 16 12.036110 Anserini +test3167 Q0 2155485 17 11.995762 Anserini +test3167 Q0 1633481 18 11.979048 Anserini +test3167 Q0 5831381 19 11.979048 Anserini +test3167 Q0 13434297 20 11.894740 Anserini +test3167 Q0 7610835 21 11.871613 Anserini +test3167 Q0 14068997 22 11.871613 Anserini +test3167 Q0 9382763 23 11.871613 Anserini +test3167 Q0 7610836 24 11.796875 Anserini +test3167 Q0 12146499 25 11.732226 Anserini +test3167 Q0 4997303 26 11.727493 Anserini +test3167 Q0 5831382 27 11.699606 Anserini +test3167 Q0 19645344 28 11.695925 Anserini +test3167 Q0 9211629 29 11.693378 Anserini +test3167 Q0 9382764 30 11.666536 Anserini +test3168 Q0 525078 1 11.851607 Anserini +test3168 Q0 525059 2 11.247549 Anserini +test3168 Q0 17827284 3 10.752188 Anserini +test3168 Q0 18578609 4 10.697703 Anserini +test3168 Q0 11010944 5 10.605292 Anserini +test3168 Q0 723322 6 10.496657 Anserini +test3168 Q0 13587578 7 10.457947 Anserini +test3168 Q0 18578598 8 10.315238 Anserini +test3168 Q0 2381439 9 10.308817 Anserini +test3168 Q0 17901777 10 10.251842 Anserini +test3168 Q0 5746941 11 10.243918 Anserini +test3168 Q0 15562639 12 10.240070 Anserini +test3168 Q0 18578606 13 10.209995 Anserini +test3168 Q0 15559497 14 10.168488 Anserini +test3168 Q0 9609218 15 10.151226 Anserini +test3168 Q0 14574966 16 10.066042 Anserini +test3168 Q0 8442273 17 10.038662 Anserini +test3168 Q0 18031230 18 10.009300 Anserini +test3168 Q0 19950319 19 9.968191 Anserini +test3168 Q0 11068596 20 9.924973 Anserini +test3168 Q0 8222939 21 9.861690 Anserini +test3168 Q0 13871483 22 9.742263 Anserini +test3168 Q0 10717214 23 9.729012 Anserini +test3168 Q0 5225292 24 9.721189 Anserini +test3168 Q0 8332179 25 9.698643 Anserini +test3168 Q0 18578605 26 9.675297 Anserini +test3168 Q0 14907598 27 9.650073 Anserini +test3168 Q0 525071 28 9.620941 Anserini +test3168 Q0 525074 29 9.620941 Anserini +test3168 Q0 17901778 30 9.620941 Anserini +test3169 Q0 3506876 1 12.012908 Anserini +test3169 Q0 485471 2 10.162592 Anserini +test3169 Q0 44723 3 10.134645 Anserini +test3169 Q0 5772852 4 10.037263 Anserini +test3169 Q0 615220 5 10.013826 Anserini +test3169 Q0 2856633 6 9.906448 Anserini +test3169 Q0 17028740 7 9.885689 Anserini +test3169 Q0 12850573 8 9.814929 Anserini +test3169 Q0 2985551 9 9.786747 Anserini +test3169 Q0 3501860 10 9.766583 Anserini +test3169 Q0 9414663 11 9.744619 Anserini +test3169 Q0 1932380 12 9.694965 Anserini +test3169 Q0 8654144 13 9.678395 Anserini +test3169 Q0 5458179 14 9.652924 Anserini +test3169 Q0 716053 15 9.615815 Anserini +test3169 Q0 12701826 16 9.603858 Anserini +test3169 Q0 649659 17 9.603522 Anserini +test3169 Q0 11683816 18 9.541361 Anserini +test3169 Q0 11683806 19 9.479533 Anserini +test3169 Q0 12004008 20 9.435951 Anserini +test3169 Q0 11714537 21 9.400116 Anserini +test3169 Q0 11714543 22 9.360410 Anserini +test3169 Q0 5469551 23 9.309708 Anserini +test3169 Q0 11135577 24 9.253794 Anserini +test3169 Q0 11135578 25 9.253794 Anserini +test3169 Q0 15378671 26 9.217175 Anserini +test3169 Q0 834061 27 9.201085 Anserini +test3169 Q0 12970261 28 9.172571 Anserini +test3169 Q0 3393961 29 9.163085 Anserini +test3169 Q0 12004015 30 9.098559 Anserini +test317 Q0 18833402 1 22.551716 Anserini +test317 Q0 18002310 2 22.206511 Anserini +test317 Q0 18002315 3 22.206511 Anserini +test317 Q0 224490 4 20.627129 Anserini +test317 Q0 6917976 5 19.982809 Anserini +test317 Q0 6917979 6 19.982809 Anserini +test317 Q0 18816663 7 19.739054 Anserini +test317 Q0 13917019 8 19.467590 Anserini +test317 Q0 16781176 9 19.383753 Anserini +test317 Q0 224491 10 19.298965 Anserini +test317 Q0 18197932 11 19.111929 Anserini +test317 Q0 18197923 12 19.111929 Anserini +test317 Q0 19204182 13 19.098925 Anserini +test317 Q0 19204172 14 19.000471 Anserini +test317 Q0 7700216 15 18.867208 Anserini +test317 Q0 19447147 16 18.846962 Anserini +test317 Q0 5099744 17 18.806572 Anserini +test317 Q0 18877587 18 18.660824 Anserini +test317 Q0 10337908 19 18.656281 Anserini +test317 Q0 9415876 20 18.580128 Anserini +test317 Q0 14773934 21 18.551567 Anserini +test317 Q0 5099751 22 18.499765 Anserini +test317 Q0 10474092 23 18.444496 Anserini +test317 Q0 8991790 24 18.420757 Anserini +test317 Q0 2170309 25 18.382442 Anserini +test317 Q0 18877588 26 18.363258 Anserini +test317 Q0 19447151 27 18.344599 Anserini +test317 Q0 16781168 28 18.265095 Anserini +test317 Q0 14773933 29 18.199541 Anserini +test317 Q0 16061438 30 18.161392 Anserini +test3170 Q0 6232553 1 18.126242 Anserini +test3170 Q0 13126244 2 17.045729 Anserini +test3170 Q0 11034492 3 16.434406 Anserini +test3170 Q0 6232554 4 16.361403 Anserini +test3170 Q0 11034484 5 16.326115 Anserini +test3170 Q0 20263573 6 15.516880 Anserini +test3170 Q0 17817147 7 15.514690 Anserini +test3170 Q0 17817146 8 15.475568 Anserini +test3170 Q0 17817150 9 15.187644 Anserini +test3170 Q0 14364898 10 15.144032 Anserini +test3170 Q0 13624831 11 14.996215 Anserini +test3170 Q0 11034490 12 14.988572 Anserini +test3170 Q0 14364896 13 14.816341 Anserini +test3170 Q0 13624835 14 14.792624 Anserini +test3170 Q0 11034495 15 14.750329 Anserini +test3170 Q0 13624826 16 14.700029 Anserini +test3170 Q0 11034493 17 14.646414 Anserini +test3170 Q0 204900 18 14.544597 Anserini +test3170 Q0 13624828 19 14.451211 Anserini +test3170 Q0 12535561 20 14.367813 Anserini +test3170 Q0 14364901 21 14.367385 Anserini +test3170 Q0 11227474 22 14.341112 Anserini +test3170 Q0 5273916 23 14.301115 Anserini +test3170 Q0 6232555 24 14.295248 Anserini +test3170 Q0 20263575 25 14.191811 Anserini +test3170 Q0 204893 26 14.172190 Anserini +test3170 Q0 11034491 27 14.119038 Anserini +test3170 Q0 533355 28 13.982630 Anserini +test3170 Q0 11034489 29 13.955483 Anserini +test3170 Q0 11034486 30 13.805208 Anserini +test3171 Q0 3085101 1 16.961666 Anserini +test3171 Q0 3085092 2 16.819410 Anserini +test3171 Q0 478795 3 16.508024 Anserini +test3171 Q0 9972450 4 15.611895 Anserini +test3171 Q0 3111431 5 14.870836 Anserini +test3171 Q0 2409999 6 14.870754 Anserini +test3171 Q0 2603314 7 14.783484 Anserini +test3171 Q0 6133212 8 14.755276 Anserini +test3171 Q0 14492671 9 14.746006 Anserini +test3171 Q0 6133207 10 14.499034 Anserini +test3171 Q0 12314131 11 14.221805 Anserini +test3171 Q0 3085096 12 14.166539 Anserini +test3171 Q0 17565888 13 14.124424 Anserini +test3171 Q0 2410002 14 14.016961 Anserini +test3171 Q0 20144882 15 13.820016 Anserini +test3171 Q0 2603318 16 13.765257 Anserini +test3171 Q0 12886877 17 13.761278 Anserini +test3171 Q0 2603322 18 13.660924 Anserini +test3171 Q0 4154538 19 13.607114 Anserini +test3171 Q0 3085093 20 13.393517 Anserini +test3171 Q0 338527 21 13.369370 Anserini +test3171 Q0 3436691 22 13.346916 Anserini +test3171 Q0 2410001 23 13.323980 Anserini +test3171 Q0 2603332 24 13.306252 Anserini +test3171 Q0 1874390 25 13.025636 Anserini +test3171 Q0 44907 26 12.998173 Anserini +test3171 Q0 4507892 27 12.998089 Anserini +test3171 Q0 7876759 28 12.992090 Anserini +test3171 Q0 5848059 29 12.992090 Anserini +test3171 Q0 5848061 30 12.992090 Anserini +test3172 Q0 4359361 1 12.423178 Anserini +test3172 Q0 1924335 2 12.194472 Anserini +test3172 Q0 4359356 3 12.108651 Anserini +test3172 Q0 3598959 4 11.909413 Anserini +test3172 Q0 3191285 5 11.896481 Anserini +test3172 Q0 1924331 6 11.867594 Anserini +test3172 Q0 1924355 7 11.867594 Anserini +test3172 Q0 1924336 8 11.861189 Anserini +test3172 Q0 7240568 9 11.838314 Anserini +test3172 Q0 2875916 10 11.801503 Anserini +test3172 Q0 1924332 11 11.793550 Anserini +test3172 Q0 2884677 12 11.702437 Anserini +test3172 Q0 1445535 13 11.641471 Anserini +test3172 Q0 3596554 14 11.606912 Anserini +test3172 Q0 2017354 15 11.590610 Anserini +test3172 Q0 7240567 16 11.551164 Anserini +test3172 Q0 1924339 17 11.542398 Anserini +test3172 Q0 14210243 18 11.531620 Anserini +test3172 Q0 11919527 19 11.518689 Anserini +test3172 Q0 1924349 20 11.501099 Anserini +test3172 Q0 1924351 21 11.425900 Anserini +test3172 Q0 4234907 22 11.424552 Anserini +test3172 Q0 5430887 23 11.421545 Anserini +test3172 Q0 20254168 24 11.398482 Anserini +test3172 Q0 15608968 25 11.374640 Anserini +test3172 Q0 6010285 26 11.369799 Anserini +test3172 Q0 8028530 27 11.340142 Anserini +test3172 Q0 17272445 28 11.330963 Anserini +test3172 Q0 1526296 29 11.318261 Anserini +test3172 Q0 1924333 30 11.272919 Anserini +test3173 Q0 4472476 1 18.509943 Anserini +test3173 Q0 4472478 2 17.410837 Anserini +test3173 Q0 618903 3 16.886524 Anserini +test3173 Q0 4520591 4 16.857582 Anserini +test3173 Q0 15145542 5 16.176748 Anserini +test3173 Q0 9002884 6 16.153500 Anserini +test3173 Q0 10603122 7 16.144396 Anserini +test3173 Q0 5305335 8 15.919725 Anserini +test3173 Q0 14995774 9 15.852650 Anserini +test3173 Q0 9800687 10 15.821754 Anserini +test3173 Q0 3687386 11 15.790453 Anserini +test3173 Q0 1016802 12 15.699277 Anserini +test3173 Q0 18328842 13 15.662750 Anserini +test3173 Q0 561517 14 15.598473 Anserini +test3173 Q0 11451447 15 15.552490 Anserini +test3173 Q0 16599363 16 15.552490 Anserini +test3173 Q0 3572280 17 15.534020 Anserini +test3173 Q0 9242104 18 15.463605 Anserini +test3173 Q0 14749811 19 15.409586 Anserini +test3173 Q0 1946743 20 15.369919 Anserini +test3173 Q0 9660124 21 15.316301 Anserini +test3173 Q0 13564761 22 15.266504 Anserini +test3173 Q0 16599366 23 15.178011 Anserini +test3173 Q0 2821164 24 15.167027 Anserini +test3173 Q0 8913089 25 15.135375 Anserini +test3173 Q0 7507649 26 15.013981 Anserini +test3173 Q0 16709301 27 14.991399 Anserini +test3173 Q0 11164859 28 14.932518 Anserini +test3173 Q0 20912647 29 14.865074 Anserini +test3173 Q0 10335806 30 14.776738 Anserini +test3174 Q0 12580492 1 16.624731 Anserini +test3174 Q0 1820636 2 16.292347 Anserini +test3174 Q0 12585835 3 16.102669 Anserini +test3174 Q0 12585837 4 16.018764 Anserini +test3174 Q0 12585825 5 15.833861 Anserini +test3174 Q0 7996587 6 15.792213 Anserini +test3174 Q0 4023147 7 15.541404 Anserini +test3174 Q0 18847144 8 15.520044 Anserini +test3174 Q0 12580495 9 15.452295 Anserini +test3174 Q0 5258752 10 15.289100 Anserini +test3174 Q0 8211007 11 15.271917 Anserini +test3174 Q0 17666616 12 15.158906 Anserini +test3174 Q0 11007764 13 15.030178 Anserini +test3174 Q0 12134952 14 15.006708 Anserini +test3174 Q0 1845558 15 14.983839 Anserini +test3174 Q0 12138784 16 14.970116 Anserini +test3174 Q0 12585827 17 14.900255 Anserini +test3174 Q0 3926448 18 14.897001 Anserini +test3174 Q0 20263558 19 14.819312 Anserini +test3174 Q0 17387044 20 14.806819 Anserini +test3174 Q0 18830292 21 14.743207 Anserini +test3174 Q0 7835903 22 14.665016 Anserini +test3174 Q0 10655437 23 14.649422 Anserini +test3174 Q0 18592505 24 14.637147 Anserini +test3174 Q0 2230270 25 14.550482 Anserini +test3174 Q0 7835900 26 14.545654 Anserini +test3174 Q0 1820650 27 14.525900 Anserini +test3174 Q0 17666606 28 14.519528 Anserini +test3174 Q0 17666617 29 14.519528 Anserini +test3174 Q0 16005381 30 14.486123 Anserini +test3175 Q0 7985504 1 12.686451 Anserini +test3175 Q0 6430469 2 11.944221 Anserini +test3175 Q0 18338011 3 11.465001 Anserini +test3175 Q0 19944333 4 10.746844 Anserini +test3175 Q0 6192808 5 10.662390 Anserini +test3175 Q0 16056668 6 10.652411 Anserini +test3175 Q0 18338012 7 10.630916 Anserini +test3175 Q0 16056677 8 10.599157 Anserini +test3175 Q0 16056670 9 10.553720 Anserini +test3175 Q0 14864655 10 10.523117 Anserini +test3175 Q0 16021145 11 10.505836 Anserini +test3175 Q0 18206458 12 10.300662 Anserini +test3175 Q0 716783 13 10.269489 Anserini +test3175 Q0 20965230 14 10.172852 Anserini +test3175 Q0 16021170 15 10.146525 Anserini +test3175 Q0 6430459 16 9.962276 Anserini +test3175 Q0 11277547 17 9.886486 Anserini +test3175 Q0 14494463 18 9.886486 Anserini +test3175 Q0 16687129 19 9.793247 Anserini +test3175 Q0 15475451 20 9.717543 Anserini +test3175 Q0 8766295 21 9.609898 Anserini +test3175 Q0 18338020 22 9.609898 Anserini +test3175 Q0 5429772 23 9.592076 Anserini +test3175 Q0 16809844 24 9.584751 Anserini +test3175 Q0 5429773 25 9.551469 Anserini +test3175 Q0 16021158 26 9.534630 Anserini +test3175 Q0 3168365 27 9.509373 Anserini +test3175 Q0 17266740 28 9.495682 Anserini +test3175 Q0 16021152 29 9.444824 Anserini +test3175 Q0 14864654 30 9.444104 Anserini +test3176 Q0 6265351 1 13.923843 Anserini +test3176 Q0 6265337 2 13.772423 Anserini +test3176 Q0 6265338 3 13.629360 Anserini +test3176 Q0 1298995 4 13.406881 Anserini +test3176 Q0 6265346 5 13.079461 Anserini +test3176 Q0 255699 6 13.022184 Anserini +test3176 Q0 4463734 7 12.967091 Anserini +test3176 Q0 1688560 8 12.800076 Anserini +test3176 Q0 514830 9 12.761161 Anserini +test3176 Q0 1303995 10 12.760059 Anserini +test3176 Q0 6265343 11 12.694378 Anserini +test3176 Q0 4463738 12 12.677387 Anserini +test3176 Q0 6265339 13 12.643648 Anserini +test3176 Q0 6265350 14 12.578304 Anserini +test3176 Q0 6265342 15 12.538021 Anserini +test3176 Q0 1298996 16 12.523231 Anserini +test3176 Q0 264334 17 12.519226 Anserini +test3176 Q0 1292999 18 12.513659 Anserini +test3176 Q0 4463737 19 12.464409 Anserini +test3176 Q0 3510692 20 12.227009 Anserini +test3176 Q0 5345769 21 12.119521 Anserini +test3176 Q0 13750935 22 12.086788 Anserini +test3176 Q0 4463732 23 12.040745 Anserini +test3176 Q0 12790515 24 11.957352 Anserini +test3176 Q0 13750936 25 11.936020 Anserini +test3176 Q0 9276897 26 11.912230 Anserini +test3176 Q0 656958 27 11.885721 Anserini +test3176 Q0 13750934 28 11.874386 Anserini +test3176 Q0 3510699 29 11.871327 Anserini +test3176 Q0 17202464 30 11.804402 Anserini +test3177 Q0 571907 1 14.964003 Anserini +test3177 Q0 892645 2 14.815352 Anserini +test3177 Q0 1722344 3 14.778557 Anserini +test3177 Q0 2582973 4 14.226366 Anserini +test3177 Q0 1722363 5 14.190222 Anserini +test3177 Q0 1995798 6 14.054498 Anserini +test3177 Q0 1402993 7 13.891677 Anserini +test3177 Q0 2697839 8 13.731656 Anserini +test3177 Q0 1143214 9 13.702096 Anserini +test3177 Q0 19646344 10 13.645576 Anserini +test3177 Q0 739755 11 13.574122 Anserini +test3177 Q0 1380731 12 13.530793 Anserini +test3177 Q0 2748 13 13.313761 Anserini +test3177 Q0 10658685 14 13.163292 Anserini +test3177 Q0 1851109 15 13.042797 Anserini +test3177 Q0 5719559 16 12.965969 Anserini +test3177 Q0 12596856 17 12.900846 Anserini +test3177 Q0 20210768 18 12.846066 Anserini +test3177 Q0 9681294 19 12.796630 Anserini +test3177 Q0 1995827 20 12.713858 Anserini +test3177 Q0 25481 21 12.629006 Anserini +test3177 Q0 16371160 22 12.554104 Anserini +test3177 Q0 3056621 23 12.550080 Anserini +test3177 Q0 14563870 24 12.508411 Anserini +test3177 Q0 13822543 25 12.464170 Anserini +test3177 Q0 6575570 26 12.418114 Anserini +test3177 Q0 20713744 27 12.345539 Anserini +test3177 Q0 2189103 28 12.154545 Anserini +test3177 Q0 17161090 29 12.126577 Anserini +test3177 Q0 16247332 30 12.069640 Anserini +test3178 Q0 10738572 1 12.128447 Anserini +test3178 Q0 20911733 2 11.421249 Anserini +test3178 Q0 16126859 3 11.354808 Anserini +test3178 Q0 7698600 4 11.349756 Anserini +test3178 Q0 18327395 5 11.245802 Anserini +test3178 Q0 17416436 6 11.169403 Anserini +test3178 Q0 15128981 7 11.065742 Anserini +test3178 Q0 8754154 8 10.847141 Anserini +test3178 Q0 10074533 9 10.834846 Anserini +test3178 Q0 5842313 10 10.822403 Anserini +test3178 Q0 13529965 11 10.793333 Anserini +test3178 Q0 20388031 12 10.765588 Anserini +test3178 Q0 11729488 13 10.746323 Anserini +test3178 Q0 11875462 14 10.739482 Anserini +test3178 Q0 18243873 15 10.735413 Anserini +test3178 Q0 10305651 16 10.711594 Anserini +test3178 Q0 10305639 17 10.709873 Anserini +test3178 Q0 3108679 18 10.626092 Anserini +test3178 Q0 4566463 19 10.607572 Anserini +test3178 Q0 4566459 20 10.607572 Anserini +test3178 Q0 1276964 21 10.607572 Anserini +test3178 Q0 113224 22 10.595734 Anserini +test3178 Q0 8754152 23 10.583135 Anserini +test3178 Q0 9624775 24 10.531305 Anserini +test3178 Q0 10576640 25 10.517141 Anserini +test3178 Q0 19168654 26 10.517141 Anserini +test3178 Q0 6030001 27 10.509471 Anserini +test3178 Q0 2443693 28 10.509471 Anserini +test3178 Q0 8480691 29 10.499735 Anserini +test3178 Q0 8777968 30 10.444760 Anserini +test3179 Q0 156095 1 13.824313 Anserini +test3179 Q0 2706773 2 13.598213 Anserini +test3179 Q0 2706772 3 12.928123 Anserini +test3179 Q0 7245557 4 11.710071 Anserini +test3179 Q0 3998788 5 11.709070 Anserini +test3179 Q0 10976841 6 11.446506 Anserini +test3179 Q0 4727968 7 11.144163 Anserini +test3179 Q0 4727974 8 11.144163 Anserini +test3179 Q0 671574 9 10.901217 Anserini +test3179 Q0 11917007 10 10.722124 Anserini +test3179 Q0 20593711 11 10.471613 Anserini +test3179 Q0 13603307 12 10.454135 Anserini +test3179 Q0 17619015 13 10.310664 Anserini +test3179 Q0 6595210 14 10.297613 Anserini +test3179 Q0 7249432 15 10.296152 Anserini +test3179 Q0 6595208 16 10.251332 Anserini +test3179 Q0 17619016 17 10.164916 Anserini +test3179 Q0 2399769 18 10.141629 Anserini +test3179 Q0 2399772 19 10.141629 Anserini +test3179 Q0 6920511 20 10.112617 Anserini +test3179 Q0 14653701 21 10.103113 Anserini +test3179 Q0 12955113 22 10.084838 Anserini +test3179 Q0 8107315 23 10.024605 Anserini +test3179 Q0 156096 24 10.020189 Anserini +test3179 Q0 2356600 25 9.956676 Anserini +test3179 Q0 5003528 26 9.941990 Anserini +test3179 Q0 4538967 27 9.881142 Anserini +test3179 Q0 19284977 28 9.845613 Anserini +test3179 Q0 2384444 29 9.844115 Anserini +test3179 Q0 15486455 30 9.838277 Anserini +test318 Q0 10232927 1 23.700338 Anserini +test318 Q0 10904585 2 21.148045 Anserini +test318 Q0 10232959 3 20.816608 Anserini +test318 Q0 10232930 4 20.515957 Anserini +test318 Q0 10232970 5 20.273886 Anserini +test318 Q0 10232939 6 20.228313 Anserini +test318 Q0 10232938 7 20.177864 Anserini +test318 Q0 10232937 8 20.079868 Anserini +test318 Q0 10232936 9 20.019880 Anserini +test318 Q0 10232934 10 19.997566 Anserini +test318 Q0 10232943 11 19.934303 Anserini +test318 Q0 5838210 12 19.453039 Anserini +test318 Q0 2166510 13 19.205355 Anserini +test318 Q0 7560989 14 19.064678 Anserini +test318 Q0 10232935 15 18.863655 Anserini +test318 Q0 9129774 16 18.766911 Anserini +test318 Q0 10232941 17 18.168188 Anserini +test318 Q0 3233683 18 18.035692 Anserini +test318 Q0 3073982 19 17.981676 Anserini +test318 Q0 10966750 20 17.906834 Anserini +test318 Q0 17972996 21 17.832504 Anserini +test318 Q0 13460051 22 17.567139 Anserini +test318 Q0 10232958 23 17.534836 Anserini +test318 Q0 5302786 24 17.404406 Anserini +test318 Q0 15488838 25 17.374884 Anserini +test318 Q0 10232932 26 17.060801 Anserini +test318 Q0 2333186 27 17.060801 Anserini +test318 Q0 10232957 28 17.060801 Anserini +test318 Q0 14972329 29 17.017979 Anserini +test318 Q0 9129775 30 16.942314 Anserini +test3180 Q0 19401428 1 17.407772 Anserini +test3180 Q0 19401423 2 16.452986 Anserini +test3180 Q0 8784037 3 15.357486 Anserini +test3180 Q0 19401427 4 14.929534 Anserini +test3180 Q0 19401426 5 14.826563 Anserini +test3180 Q0 14127760 6 14.203476 Anserini +test3180 Q0 14127761 7 14.023893 Anserini +test3180 Q0 15128846 8 13.943027 Anserini +test3180 Q0 19401424 9 13.889371 Anserini +test3180 Q0 19401425 10 13.889371 Anserini +test3180 Q0 5544685 11 13.698366 Anserini +test3180 Q0 15128850 12 13.696852 Anserini +test3180 Q0 8784025 13 13.541616 Anserini +test3180 Q0 8314415 14 13.446861 Anserini +test3180 Q0 8604694 15 13.378771 Anserini +test3180 Q0 8604700 16 13.344983 Anserini +test3180 Q0 6671552 17 13.279968 Anserini +test3180 Q0 4832596 18 13.274677 Anserini +test3180 Q0 3129287 19 13.216166 Anserini +test3180 Q0 8314446 20 13.179663 Anserini +test3180 Q0 9388155 21 13.091519 Anserini +test3180 Q0 8314445 22 13.053788 Anserini +test3180 Q0 8314421 23 12.933605 Anserini +test3180 Q0 8314423 24 12.883009 Anserini +test3180 Q0 18309503 25 12.870780 Anserini +test3180 Q0 3129281 26 12.870349 Anserini +test3180 Q0 5016302 27 12.839186 Anserini +test3180 Q0 8314440 28 12.839186 Anserini +test3180 Q0 2428904 29 12.839186 Anserini +test3180 Q0 9388114 30 12.816151 Anserini +test3181 Q0 6560823 1 14.494520 Anserini +test3181 Q0 17019803 2 14.288048 Anserini +test3181 Q0 7583209 3 13.906542 Anserini +test3181 Q0 20408638 4 13.851596 Anserini +test3181 Q0 20409184 5 13.796112 Anserini +test3181 Q0 3100874 6 13.760000 Anserini +test3181 Q0 8073700 7 13.642397 Anserini +test3181 Q0 2524403 8 13.606464 Anserini +test3181 Q0 7714823 9 13.593777 Anserini +test3181 Q0 19624561 10 13.572489 Anserini +test3181 Q0 7849208 11 13.519587 Anserini +test3181 Q0 9234734 12 13.469147 Anserini +test3181 Q0 6965508 13 13.414673 Anserini +test3181 Q0 6784304 14 13.390666 Anserini +test3181 Q0 17073238 15 13.345214 Anserini +test3181 Q0 16076329 16 13.291426 Anserini +test3181 Q0 8443821 17 13.289583 Anserini +test3181 Q0 7828707 18 13.281057 Anserini +test3181 Q0 7964193 19 13.169624 Anserini +test3181 Q0 7704291 20 13.104009 Anserini +test3181 Q0 4517235 21 13.077907 Anserini +test3181 Q0 7224576 22 12.986549 Anserini +test3181 Q0 16901017 23 12.940264 Anserini +test3181 Q0 13049779 24 12.924397 Anserini +test3181 Q0 9692555 25 12.894767 Anserini +test3181 Q0 7224486 26 12.846596 Anserini +test3181 Q0 2507918 27 12.820807 Anserini +test3181 Q0 12264184 28 12.754926 Anserini +test3181 Q0 5775053 29 12.753526 Anserini +test3181 Q0 13206984 30 12.734018 Anserini +test3182 Q0 2342396 1 11.682623 Anserini +test3182 Q0 2342390 2 11.565723 Anserini +test3182 Q0 90996 3 11.555062 Anserini +test3182 Q0 1375511 4 11.453781 Anserini +test3182 Q0 1375541 5 11.453781 Anserini +test3182 Q0 5477409 6 11.287842 Anserini +test3182 Q0 12646537 7 11.276146 Anserini +test3182 Q0 12646538 8 11.276146 Anserini +test3182 Q0 8236021 9 11.268775 Anserini +test3182 Q0 12613033 10 11.188620 Anserini +test3182 Q0 11282166 11 11.179965 Anserini +test3182 Q0 714167 12 11.099081 Anserini +test3182 Q0 7235722 13 11.092649 Anserini +test3182 Q0 1160095 14 11.090789 Anserini +test3182 Q0 18402346 15 11.077093 Anserini +test3182 Q0 7584322 16 11.064704 Anserini +test3182 Q0 4513283 17 11.055074 Anserini +test3182 Q0 714152 18 11.027268 Anserini +test3182 Q0 18073052 19 11.021242 Anserini +test3182 Q0 7662349 20 10.996922 Anserini +test3182 Q0 15417808 21 10.990571 Anserini +test3182 Q0 18477952 22 10.972586 Anserini +test3182 Q0 16601508 23 10.972586 Anserini +test3182 Q0 701790 24 10.972586 Anserini +test3182 Q0 701812 25 10.972586 Anserini +test3182 Q0 18858969 26 10.968875 Anserini +test3182 Q0 16868051 27 10.958207 Anserini +test3182 Q0 14487829 28 10.922810 Anserini +test3182 Q0 10867560 29 10.920730 Anserini +test3182 Q0 9570169 30 10.908903 Anserini +test3183 Q0 69099 1 18.706833 Anserini +test3183 Q0 350931 2 18.704638 Anserini +test3183 Q0 104278 3 18.261900 Anserini +test3183 Q0 43122 4 18.244606 Anserini +test3183 Q0 43123 5 18.141193 Anserini +test3183 Q0 774253 6 17.476742 Anserini +test3183 Q0 3567508 7 17.380486 Anserini +test3183 Q0 17922935 8 17.356308 Anserini +test3183 Q0 763645 9 16.835945 Anserini +test3183 Q0 291677 10 16.757906 Anserini +test3183 Q0 69100 11 16.726429 Anserini +test3183 Q0 495487 12 16.669739 Anserini +test3183 Q0 2699447 13 16.331997 Anserini +test3183 Q0 5451660 14 16.170923 Anserini +test3183 Q0 759382 15 16.106230 Anserini +test3183 Q0 831634 16 15.947981 Anserini +test3183 Q0 17922937 17 15.872594 Anserini +test3183 Q0 4217180 18 15.770285 Anserini +test3183 Q0 69074 19 15.698229 Anserini +test3183 Q0 763614 20 15.636647 Anserini +test3183 Q0 429756 21 15.633976 Anserini +test3183 Q0 767934 22 15.603142 Anserini +test3183 Q0 4217203 23 15.542031 Anserini +test3183 Q0 763578 24 15.542031 Anserini +test3183 Q0 831687 25 15.455343 Anserini +test3183 Q0 763613 26 15.409357 Anserini +test3183 Q0 19422465 27 15.409357 Anserini +test3183 Q0 19422432 28 15.408319 Anserini +test3183 Q0 173955 29 15.170696 Anserini +test3183 Q0 28506 30 15.119659 Anserini +test3184 Q0 9047310 1 18.605196 Anserini +test3184 Q0 7403100 2 18.135590 Anserini +test3184 Q0 4248998 3 18.033913 Anserini +test3184 Q0 9294930 4 17.560125 Anserini +test3184 Q0 13017330 5 17.433855 Anserini +test3184 Q0 6165312 6 17.391758 Anserini +test3184 Q0 6165316 7 16.994183 Anserini +test3184 Q0 7403716 8 16.780243 Anserini +test3184 Q0 9047366 9 16.672220 Anserini +test3184 Q0 7403104 10 16.640820 Anserini +test3184 Q0 12851206 11 16.631380 Anserini +test3184 Q0 6165310 12 16.556721 Anserini +test3184 Q0 7403243 13 16.418827 Anserini +test3184 Q0 7403105 14 16.385609 Anserini +test3184 Q0 7406177 15 16.364000 Anserini +test3184 Q0 7403714 16 15.950655 Anserini +test3184 Q0 8558870 17 15.828668 Anserini +test3184 Q0 6165309 18 15.747174 Anserini +test3184 Q0 6834332 19 15.732233 Anserini +test3184 Q0 9315780 20 15.522203 Anserini +test3184 Q0 7403066 21 15.357919 Anserini +test3184 Q0 9047365 22 15.260922 Anserini +test3184 Q0 7403157 23 15.241381 Anserini +test3184 Q0 7406175 24 15.175478 Anserini +test3184 Q0 9047318 25 15.053618 Anserini +test3184 Q0 6165318 26 14.999425 Anserini +test3184 Q0 4248974 27 14.974617 Anserini +test3184 Q0 11610793 28 14.974617 Anserini +test3184 Q0 6165313 29 14.957468 Anserini +test3184 Q0 6117118 30 14.955954 Anserini +test3185 Q0 10189891 1 17.129368 Anserini +test3185 Q0 10189922 2 17.129368 Anserini +test3185 Q0 708504 3 16.931696 Anserini +test3185 Q0 708537 4 16.711052 Anserini +test3185 Q0 9142124 5 16.241817 Anserini +test3185 Q0 9142123 6 16.158091 Anserini +test3185 Q0 3653292 7 15.786119 Anserini +test3185 Q0 15463259 8 15.568312 Anserini +test3185 Q0 10189921 9 15.366594 Anserini +test3185 Q0 11075701 10 14.918568 Anserini +test3185 Q0 3653333 11 14.716736 Anserini +test3185 Q0 9728077 12 14.654257 Anserini +test3185 Q0 1391352 13 14.613813 Anserini +test3185 Q0 1391354 14 14.613813 Anserini +test3185 Q0 18175170 15 14.597139 Anserini +test3185 Q0 10189905 16 14.512321 Anserini +test3185 Q0 10189919 17 14.512321 Anserini +test3185 Q0 18862411 18 14.480948 Anserini +test3185 Q0 6147954 19 14.412228 Anserini +test3185 Q0 10189918 20 14.412228 Anserini +test3185 Q0 18175172 21 14.332316 Anserini +test3185 Q0 545650 22 13.938715 Anserini +test3185 Q0 1020034 23 13.680882 Anserini +test3185 Q0 18862415 24 13.652714 Anserini +test3185 Q0 708513 25 13.561584 Anserini +test3185 Q0 708527 26 13.561584 Anserini +test3185 Q0 18798817 27 13.496250 Anserini +test3185 Q0 1020024 28 13.466055 Anserini +test3185 Q0 18862412 29 13.466055 Anserini +test3185 Q0 7083290 30 13.456755 Anserini +test3186 Q0 612977 1 22.203476 Anserini +test3186 Q0 15222173 2 20.863819 Anserini +test3186 Q0 2924722 3 20.491207 Anserini +test3186 Q0 650685 4 20.041363 Anserini +test3186 Q0 6566745 5 19.349005 Anserini +test3186 Q0 650693 6 19.108080 Anserini +test3186 Q0 650698 7 19.022142 Anserini +test3186 Q0 2342904 8 18.947781 Anserini +test3186 Q0 612969 9 18.400263 Anserini +test3186 Q0 5837197 10 18.245102 Anserini +test3186 Q0 5837195 11 18.239220 Anserini +test3186 Q0 650696 12 18.061939 Anserini +test3186 Q0 19201201 13 17.953859 Anserini +test3186 Q0 650629 14 17.850473 Anserini +test3186 Q0 6566746 15 17.780470 Anserini +test3186 Q0 6566741 16 17.780470 Anserini +test3186 Q0 15896370 17 17.780470 Anserini +test3186 Q0 612973 18 17.680513 Anserini +test3186 Q0 650640 19 17.608562 Anserini +test3186 Q0 6566743 20 17.569448 Anserini +test3186 Q0 650676 21 17.433777 Anserini +test3186 Q0 4678540 22 17.409805 Anserini +test3186 Q0 5824026 23 17.352005 Anserini +test3186 Q0 5824029 24 17.352005 Anserini +test3186 Q0 18360471 25 17.205381 Anserini +test3186 Q0 3035081 26 17.205381 Anserini +test3186 Q0 806039 27 17.191133 Anserini +test3186 Q0 769779 28 17.190447 Anserini +test3186 Q0 4905078 29 17.148701 Anserini +test3186 Q0 8348724 30 17.142994 Anserini +test3187 Q0 6731094 1 15.972775 Anserini +test3187 Q0 8131777 2 14.733525 Anserini +test3187 Q0 8131775 3 14.552706 Anserini +test3187 Q0 895822 4 14.468509 Anserini +test3187 Q0 8131776 5 14.415712 Anserini +test3187 Q0 6731099 6 14.395770 Anserini +test3187 Q0 5620705 7 14.242861 Anserini +test3187 Q0 474281 8 14.079665 Anserini +test3187 Q0 6731081 9 14.042081 Anserini +test3187 Q0 19304074 10 14.028157 Anserini +test3187 Q0 16093470 11 14.024821 Anserini +test3187 Q0 6731096 12 14.008304 Anserini +test3187 Q0 895821 13 13.981993 Anserini +test3187 Q0 401180 14 13.965696 Anserini +test3187 Q0 4021433 15 13.963895 Anserini +test3187 Q0 474200 16 13.891916 Anserini +test3187 Q0 709030 17 13.872536 Anserini +test3187 Q0 474202 18 13.870111 Anserini +test3187 Q0 16788247 19 13.814719 Anserini +test3187 Q0 3612465 20 13.784981 Anserini +test3187 Q0 2313951 21 13.771688 Anserini +test3187 Q0 14693522 22 13.754142 Anserini +test3187 Q0 709010 23 13.736031 Anserini +test3187 Q0 7327621 24 13.662429 Anserini +test3187 Q0 6731095 25 13.583654 Anserini +test3187 Q0 20867815 26 13.583077 Anserini +test3187 Q0 14153169 27 13.563636 Anserini +test3187 Q0 10950038 28 13.560187 Anserini +test3187 Q0 4694158 29 13.539282 Anserini +test3187 Q0 14153143 30 13.533178 Anserini +test3188 Q0 9951910 1 17.720497 Anserini +test3188 Q0 7690748 2 16.132221 Anserini +test3188 Q0 3801296 3 15.505189 Anserini +test3188 Q0 3801309 4 15.491938 Anserini +test3188 Q0 12320135 5 15.131536 Anserini +test3188 Q0 1989557 6 15.058582 Anserini +test3188 Q0 11451972 7 15.011869 Anserini +test3188 Q0 9951922 8 14.985392 Anserini +test3188 Q0 6186000 9 14.827189 Anserini +test3188 Q0 7690750 10 14.677963 Anserini +test3188 Q0 13360601 11 14.640501 Anserini +test3188 Q0 14999102 12 14.560430 Anserini +test3188 Q0 12124542 13 14.541023 Anserini +test3188 Q0 1989541 14 14.479901 Anserini +test3188 Q0 3801297 15 14.462668 Anserini +test3188 Q0 1989542 16 14.460556 Anserini +test3188 Q0 12484119 17 14.395358 Anserini +test3188 Q0 9951921 18 14.234183 Anserini +test3188 Q0 18360513 19 14.142704 Anserini +test3188 Q0 12484117 20 14.122375 Anserini +test3188 Q0 12484143 21 14.122375 Anserini +test3188 Q0 4600869 22 14.112371 Anserini +test3188 Q0 9951923 23 14.065357 Anserini +test3188 Q0 16896410 24 14.008150 Anserini +test3188 Q0 3801308 25 14.007099 Anserini +test3188 Q0 16896415 26 13.926931 Anserini +test3188 Q0 1989556 27 13.921719 Anserini +test3188 Q0 9951913 28 13.767698 Anserini +test3188 Q0 5002264 29 13.744652 Anserini +test3188 Q0 14271881 30 13.744093 Anserini +test3189 Q0 7272661 1 23.941820 Anserini +test3189 Q0 8758201 2 23.602922 Anserini +test3189 Q0 6494185 3 23.447475 Anserini +test3189 Q0 10552020 4 23.405064 Anserini +test3189 Q0 16073501 5 23.322870 Anserini +test3189 Q0 13394033 6 23.293201 Anserini +test3189 Q0 4792559 7 23.156706 Anserini +test3189 Q0 15807101 8 23.019402 Anserini +test3189 Q0 1717485 9 22.753443 Anserini +test3189 Q0 4792550 10 22.662992 Anserini +test3189 Q0 4792584 11 22.662992 Anserini +test3189 Q0 5628809 12 22.621578 Anserini +test3189 Q0 15533972 13 22.597616 Anserini +test3189 Q0 6494186 14 22.506407 Anserini +test3189 Q0 21008892 15 22.399891 Anserini +test3189 Q0 15807102 16 22.373661 Anserini +test3189 Q0 2322866 17 22.348673 Anserini +test3189 Q0 10044972 18 22.333876 Anserini +test3189 Q0 10044970 19 22.333876 Anserini +test3189 Q0 5120029 20 22.274279 Anserini +test3189 Q0 10732666 21 22.265404 Anserini +test3189 Q0 4792558 22 22.263792 Anserini +test3189 Q0 11561696 23 22.142733 Anserini +test3189 Q0 9089206 24 22.136541 Anserini +test3189 Q0 16011805 25 22.106865 Anserini +test3189 Q0 15727575 26 22.086864 Anserini +test3189 Q0 11255857 27 22.080584 Anserini +test3189 Q0 11255860 28 22.080584 Anserini +test3189 Q0 11056559 29 22.048420 Anserini +test3189 Q0 12117240 30 22.007401 Anserini +test319 Q0 14072996 1 15.868243 Anserini +test319 Q0 14072998 2 15.760222 Anserini +test319 Q0 14072999 3 15.486615 Anserini +test319 Q0 14072994 4 15.247571 Anserini +test319 Q0 14072969 5 14.940831 Anserini +test319 Q0 11610936 6 14.831337 Anserini +test319 Q0 14072970 7 14.508511 Anserini +test319 Q0 14072993 8 14.427910 Anserini +test319 Q0 16318110 9 14.356213 Anserini +test319 Q0 14072991 10 14.027946 Anserini +test319 Q0 14072974 11 13.450395 Anserini +test319 Q0 11610938 12 13.258156 Anserini +test319 Q0 14072987 13 13.192579 Anserini +test319 Q0 14072971 14 12.956640 Anserini +test319 Q0 16318113 15 12.881659 Anserini +test319 Q0 15244324 16 12.864219 Anserini +test319 Q0 16318102 17 12.702003 Anserini +test319 Q0 14072983 18 12.500587 Anserini +test319 Q0 14072997 19 12.496205 Anserini +test319 Q0 15244329 20 12.429431 Anserini +test319 Q0 14072995 21 12.302040 Anserini +test319 Q0 16318109 22 12.241467 Anserini +test319 Q0 16278121 23 12.180288 Anserini +test319 Q0 16318119 24 11.951562 Anserini +test319 Q0 16318108 25 11.951562 Anserini +test319 Q0 14072990 26 11.726860 Anserini +test319 Q0 14072992 27 11.726860 Anserini +test319 Q0 14072980 28 11.624328 Anserini +test319 Q0 14072972 29 11.602853 Anserini +test319 Q0 14072985 30 11.436297 Anserini +test3190 Q0 5662201 1 14.967434 Anserini +test3190 Q0 5662202 2 14.354210 Anserini +test3190 Q0 3360938 3 11.656560 Anserini +test3190 Q0 853651 4 11.473117 Anserini +test3190 Q0 15404491 5 11.426898 Anserini +test3190 Q0 13032747 6 11.347879 Anserini +test3190 Q0 12745682 7 10.708344 Anserini +test3190 Q0 853649 8 10.680956 Anserini +test3190 Q0 1906777 9 10.511190 Anserini +test3190 Q0 7297200 10 10.430010 Anserini +test3190 Q0 3120785 11 10.354196 Anserini +test3190 Q0 16663175 12 10.332221 Anserini +test3190 Q0 20417427 13 10.231862 Anserini +test3190 Q0 6556441 14 10.142196 Anserini +test3190 Q0 7297203 15 10.094573 Anserini +test3190 Q0 15323309 16 10.041597 Anserini +test3190 Q0 10895792 17 9.975933 Anserini +test3190 Q0 2041121 18 9.943703 Anserini +test3190 Q0 853625 19 9.891526 Anserini +test3190 Q0 9036731 20 9.876920 Anserini +test3190 Q0 15363562 21 9.874774 Anserini +test3190 Q0 358054 22 9.852493 Anserini +test3190 Q0 15363561 23 9.823898 Anserini +test3190 Q0 3120794 24 9.717125 Anserini +test3190 Q0 18288111 25 9.710452 Anserini +test3190 Q0 10329296 26 9.701116 Anserini +test3190 Q0 18251305 27 9.668001 Anserini +test3190 Q0 853636 28 9.594769 Anserini +test3190 Q0 6844466 29 9.574130 Anserini +test3190 Q0 5810248 30 9.565180 Anserini +test3191 Q0 3527376 1 16.984301 Anserini +test3191 Q0 3527393 2 16.653816 Anserini +test3191 Q0 696138 3 16.439808 Anserini +test3191 Q0 11333523 4 15.972048 Anserini +test3191 Q0 14458882 5 15.412534 Anserini +test3191 Q0 18295185 6 15.295652 Anserini +test3191 Q0 7162505 7 15.079983 Anserini +test3191 Q0 2428224 8 14.603683 Anserini +test3191 Q0 4406327 9 14.564898 Anserini +test3191 Q0 4280958 10 14.479030 Anserini +test3191 Q0 3527381 11 14.292252 Anserini +test3191 Q0 5710260 12 14.194411 Anserini +test3191 Q0 3527384 13 14.117050 Anserini +test3191 Q0 7707215 14 14.029839 Anserini +test3191 Q0 13073230 15 13.988572 Anserini +test3191 Q0 3527385 16 13.907592 Anserini +test3191 Q0 17217621 17 13.825974 Anserini +test3191 Q0 9175850 18 13.756360 Anserini +test3191 Q0 10818937 19 13.686410 Anserini +test3191 Q0 8834046 20 13.592661 Anserini +test3191 Q0 19672347 21 13.592057 Anserini +test3191 Q0 3527386 22 13.589232 Anserini +test3191 Q0 14766497 23 13.408962 Anserini +test3191 Q0 3527382 24 13.337885 Anserini +test3191 Q0 3527378 25 13.293431 Anserini +test3191 Q0 5710255 26 13.267996 Anserini +test3191 Q0 8921752 27 13.180758 Anserini +test3191 Q0 14853038 28 13.148744 Anserini +test3191 Q0 7707216 29 13.108807 Anserini +test3191 Q0 20311169 30 13.022958 Anserini +test3192 Q0 6048018 1 17.169704 Anserini +test3192 Q0 2669317 2 16.596741 Anserini +test3192 Q0 2669320 3 16.596741 Anserini +test3192 Q0 18588656 4 16.427355 Anserini +test3192 Q0 18588657 5 16.225752 Anserini +test3192 Q0 2669316 6 15.886786 Anserini +test3192 Q0 521968 7 15.754257 Anserini +test3192 Q0 2669319 8 15.748174 Anserini +test3192 Q0 521973 9 15.707333 Anserini +test3192 Q0 16985002 10 15.696776 Anserini +test3192 Q0 16534689 11 15.279864 Anserini +test3192 Q0 3215861 12 15.005962 Anserini +test3192 Q0 10153241 13 14.723854 Anserini +test3192 Q0 15624042 14 14.480362 Anserini +test3192 Q0 3210280 15 14.419566 Anserini +test3192 Q0 2669325 16 14.383438 Anserini +test3192 Q0 2669311 17 14.383438 Anserini +test3192 Q0 15950738 18 14.340797 Anserini +test3192 Q0 15595396 19 14.137058 Anserini +test3192 Q0 7932406 20 14.114169 Anserini +test3192 Q0 12311102 21 14.040092 Anserini +test3192 Q0 2669312 22 13.966732 Anserini +test3192 Q0 4606042 23 13.965281 Anserini +test3192 Q0 2669313 24 13.954950 Anserini +test3192 Q0 154450 25 13.639462 Anserini +test3192 Q0 521972 26 13.616865 Anserini +test3192 Q0 3610809 27 13.552960 Anserini +test3192 Q0 2669318 28 13.489655 Anserini +test3192 Q0 1996414 29 13.288527 Anserini +test3192 Q0 12311100 30 13.206266 Anserini +test3193 Q0 649359 1 14.816236 Anserini +test3193 Q0 14053774 2 14.816236 Anserini +test3193 Q0 232312 3 14.005246 Anserini +test3193 Q0 6951802 4 13.576700 Anserini +test3193 Q0 290193 5 13.565269 Anserini +test3193 Q0 6951806 6 13.345092 Anserini +test3193 Q0 7448748 7 13.133869 Anserini +test3193 Q0 3936089 8 12.715518 Anserini +test3193 Q0 3936095 9 12.701617 Anserini +test3193 Q0 2119398 10 12.590434 Anserini +test3193 Q0 3064092 11 12.540597 Anserini +test3193 Q0 2933801 12 12.412368 Anserini +test3193 Q0 3644419 13 12.297354 Anserini +test3193 Q0 2119424 14 12.274972 Anserini +test3193 Q0 5812637 15 11.877053 Anserini +test3193 Q0 18482595 16 11.875119 Anserini +test3193 Q0 3184167 17 11.874725 Anserini +test3193 Q0 20953505 18 11.635573 Anserini +test3193 Q0 17955640 19 11.510951 Anserini +test3193 Q0 12849811 20 11.483004 Anserini +test3193 Q0 12261637 21 11.409820 Anserini +test3193 Q0 14316673 22 11.358409 Anserini +test3193 Q0 9343049 23 11.311058 Anserini +test3193 Q0 4456571 24 11.250968 Anserini +test3193 Q0 5729219 25 11.215943 Anserini +test3193 Q0 3936092 26 11.214192 Anserini +test3193 Q0 6007490 27 11.133884 Anserini +test3193 Q0 129258 28 11.133818 Anserini +test3193 Q0 5099880 29 11.083952 Anserini +test3193 Q0 1267358 30 11.065993 Anserini +test3194 Q0 2092269 1 19.407928 Anserini +test3194 Q0 3777887 2 19.203281 Anserini +test3194 Q0 3777886 3 17.763914 Anserini +test3194 Q0 3128975 4 17.730522 Anserini +test3194 Q0 3604726 5 17.701990 Anserini +test3194 Q0 1784331 6 17.588987 Anserini +test3194 Q0 924060 7 17.454556 Anserini +test3194 Q0 1784330 8 17.437462 Anserini +test3194 Q0 5287912 9 17.228346 Anserini +test3194 Q0 4448091 10 17.117125 Anserini +test3194 Q0 5618902 11 17.014780 Anserini +test3194 Q0 17000748 12 16.983969 Anserini +test3194 Q0 1390900 13 16.892382 Anserini +test3194 Q0 5618900 14 16.715698 Anserini +test3194 Q0 2409956 15 16.633266 Anserini +test3194 Q0 9602575 16 16.469065 Anserini +test3194 Q0 3963777 17 16.434124 Anserini +test3194 Q0 1900061 18 16.429596 Anserini +test3194 Q0 187013 19 16.290361 Anserini +test3194 Q0 5599623 20 16.278532 Anserini +test3194 Q0 13107474 21 16.265400 Anserini +test3194 Q0 5481856 22 16.258986 Anserini +test3194 Q0 2774946 23 16.230902 Anserini +test3194 Q0 3210786 24 16.168098 Anserini +test3194 Q0 13107478 25 16.113432 Anserini +test3194 Q0 2092270 26 16.091833 Anserini +test3194 Q0 10858727 27 16.087025 Anserini +test3194 Q0 2092268 28 16.001841 Anserini +test3194 Q0 8162447 29 15.938332 Anserini +test3194 Q0 17580801 30 15.863233 Anserini +test3195 Q0 14780337 1 8.201632 Anserini +test3195 Q0 5493030 2 8.142756 Anserini +test3195 Q0 3236601 3 7.986990 Anserini +test3195 Q0 10923174 4 7.986187 Anserini +test3195 Q0 12562979 5 7.930307 Anserini +test3195 Q0 9278333 6 7.919044 Anserini +test3195 Q0 4368746 7 7.854440 Anserini +test3195 Q0 5493028 8 7.848547 Anserini +test3195 Q0 9554619 9 7.831209 Anserini +test3195 Q0 13544805 10 7.805250 Anserini +test3195 Q0 19217856 11 7.717544 Anserini +test3195 Q0 15044225 12 7.700814 Anserini +test3195 Q0 13054526 13 7.674838 Anserini +test3195 Q0 5493029 14 7.635710 Anserini +test3195 Q0 14087372 15 7.633036 Anserini +test3195 Q0 19808142 16 7.563820 Anserini +test3195 Q0 12934023 17 7.558849 Anserini +test3195 Q0 20647550 18 7.554530 Anserini +test3195 Q0 20673380 19 7.509060 Anserini +test3195 Q0 5003894 20 7.499857 Anserini +test3195 Q0 20376525 21 7.493866 Anserini +test3195 Q0 19808143 22 7.487820 Anserini +test3195 Q0 11833555 23 7.466617 Anserini +test3195 Q0 4944493 24 7.458600 Anserini +test3195 Q0 12564512 25 7.434354 Anserini +test3195 Q0 388964 26 7.434354 Anserini +test3195 Q0 4298083 27 7.413725 Anserini +test3195 Q0 10923175 28 7.413635 Anserini +test3195 Q0 10074410 29 7.407191 Anserini +test3195 Q0 20169052 30 7.406077 Anserini +test3196 Q0 17834646 1 19.387396 Anserini +test3196 Q0 9678593 2 18.025236 Anserini +test3196 Q0 1068913 3 17.733484 Anserini +test3196 Q0 15633064 4 17.108255 Anserini +test3196 Q0 15632102 5 16.879387 Anserini +test3196 Q0 3168513 6 16.847586 Anserini +test3196 Q0 15632103 7 16.571875 Anserini +test3196 Q0 3168228 8 16.511023 Anserini +test3196 Q0 3168510 9 16.433704 Anserini +test3196 Q0 9678594 10 16.366894 Anserini +test3196 Q0 3203971 11 16.088234 Anserini +test3196 Q0 1277518 12 16.054195 Anserini +test3196 Q0 189932 13 15.919514 Anserini +test3196 Q0 17834643 14 15.855822 Anserini +test3196 Q0 14476320 15 15.791419 Anserini +test3196 Q0 6013447 16 15.781109 Anserini +test3196 Q0 9264667 17 15.776926 Anserini +test3196 Q0 3163930 18 15.742384 Anserini +test3196 Q0 3179766 19 15.643307 Anserini +test3196 Q0 3203975 20 15.617291 Anserini +test3196 Q0 3171615 21 15.480052 Anserini +test3196 Q0 3171614 22 15.410325 Anserini +test3196 Q0 3163932 23 15.390713 Anserini +test3196 Q0 3225212 24 15.316599 Anserini +test3196 Q0 1082116 25 15.312385 Anserini +test3196 Q0 14248909 26 15.070679 Anserini +test3196 Q0 14476322 27 15.057285 Anserini +test3196 Q0 6013452 28 15.035257 Anserini +test3196 Q0 2006159 29 14.975728 Anserini +test3196 Q0 1368653 30 14.935403 Anserini +test3197 Q0 16706746 1 10.400771 Anserini +test3197 Q0 5643441 2 10.312137 Anserini +test3197 Q0 3265388 3 10.311298 Anserini +test3197 Q0 15536202 4 10.286851 Anserini +test3197 Q0 16706742 5 10.148639 Anserini +test3197 Q0 4616277 6 9.882558 Anserini +test3197 Q0 11260515 7 9.869150 Anserini +test3197 Q0 16706752 8 9.851583 Anserini +test3197 Q0 8195838 9 9.669856 Anserini +test3197 Q0 17316859 10 9.566595 Anserini +test3197 Q0 1041961 11 9.513446 Anserini +test3197 Q0 16286757 12 9.466540 Anserini +test3197 Q0 12449540 13 9.465165 Anserini +test3197 Q0 5245 14 9.444862 Anserini +test3197 Q0 15946241 15 9.381897 Anserini +test3197 Q0 876626 16 9.305152 Anserini +test3197 Q0 5665278 17 9.275832 Anserini +test3197 Q0 8400976 18 9.199804 Anserini +test3197 Q0 17005503 19 9.150968 Anserini +test3197 Q0 16863062 20 9.150968 Anserini +test3197 Q0 9750452 21 9.084201 Anserini +test3197 Q0 945086 22 9.083909 Anserini +test3197 Q0 944795 23 9.083909 Anserini +test3197 Q0 1201374 24 9.067887 Anserini +test3197 Q0 15426918 25 9.035549 Anserini +test3197 Q0 7083204 26 9.034264 Anserini +test3197 Q0 9934446 27 9.017663 Anserini +test3197 Q0 1237748 28 9.006650 Anserini +test3197 Q0 1194760 29 8.987264 Anserini +test3197 Q0 944500 30 8.987264 Anserini +test3198 Q0 12441175 1 16.795845 Anserini +test3198 Q0 20923114 2 12.600868 Anserini +test3198 Q0 13436238 3 12.093317 Anserini +test3198 Q0 12441115 4 12.036423 Anserini +test3198 Q0 19005925 5 11.731495 Anserini +test3198 Q0 12603434 6 11.656664 Anserini +test3198 Q0 1670073 7 11.520223 Anserini +test3198 Q0 14967014 8 11.479845 Anserini +test3198 Q0 19489118 9 11.291844 Anserini +test3198 Q0 19489119 10 11.291844 Anserini +test3198 Q0 13310428 11 10.964480 Anserini +test3198 Q0 7009900 12 10.763807 Anserini +test3198 Q0 13515843 13 10.681689 Anserini +test3198 Q0 4982383 14 10.678576 Anserini +test3198 Q0 14967012 15 10.613041 Anserini +test3198 Q0 11906873 16 10.574172 Anserini +test3198 Q0 15798589 17 10.491274 Anserini +test3198 Q0 13173955 18 10.469355 Anserini +test3198 Q0 17732077 19 10.466517 Anserini +test3198 Q0 3668497 20 10.463420 Anserini +test3198 Q0 1860072 21 10.434425 Anserini +test3198 Q0 16769389 22 10.337597 Anserini +test3198 Q0 5362169 23 10.278040 Anserini +test3198 Q0 14967016 24 10.226574 Anserini +test3198 Q0 16550141 25 10.212893 Anserini +test3198 Q0 7009901 26 10.210429 Anserini +test3198 Q0 15804046 27 10.179318 Anserini +test3198 Q0 19968077 28 10.158923 Anserini +test3198 Q0 3028758 29 10.130312 Anserini +test3198 Q0 16945982 30 10.128399 Anserini +test3199 Q0 1650639 1 17.462404 Anserini +test3199 Q0 10750157 2 17.357630 Anserini +test3199 Q0 525441 3 17.021502 Anserini +test3199 Q0 1650640 4 17.013186 Anserini +test3199 Q0 16627808 5 16.996380 Anserini +test3199 Q0 20166553 6 16.874294 Anserini +test3199 Q0 16627805 7 16.790569 Anserini +test3199 Q0 525536 8 16.766733 Anserini +test3199 Q0 525477 9 16.752693 Anserini +test3199 Q0 15774150 10 16.669003 Anserini +test3199 Q0 12841653 11 16.437828 Anserini +test3199 Q0 19513613 12 16.207424 Anserini +test3199 Q0 12841683 13 16.192345 Anserini +test3199 Q0 525484 14 16.167830 Anserini +test3199 Q0 18444147 15 16.164776 Anserini +test3199 Q0 15265122 16 16.044609 Anserini +test3199 Q0 18273493 17 16.001860 Anserini +test3199 Q0 3436764 18 15.984699 Anserini +test3199 Q0 17733148 19 15.913314 Anserini +test3199 Q0 3436765 20 15.909979 Anserini +test3199 Q0 19505784 21 15.906159 Anserini +test3199 Q0 9015547 22 15.885264 Anserini +test3199 Q0 2966474 23 15.884844 Anserini +test3199 Q0 2345088 24 15.856770 Anserini +test3199 Q0 9990753 25 15.847308 Anserini +test3199 Q0 9015549 26 15.792955 Anserini +test3199 Q0 14494133 27 15.769240 Anserini +test3199 Q0 18747019 28 15.732825 Anserini +test3199 Q0 17304973 29 15.712277 Anserini +test3199 Q0 16627810 30 15.652031 Anserini +test32 Q0 7287821 1 12.292958 Anserini +test32 Q0 8267203 2 11.639841 Anserini +test32 Q0 12882709 3 11.093945 Anserini +test32 Q0 8267205 4 11.031616 Anserini +test32 Q0 1499589 5 11.023727 Anserini +test32 Q0 7287846 6 10.946538 Anserini +test32 Q0 830841 7 10.918642 Anserini +test32 Q0 12544828 8 10.854342 Anserini +test32 Q0 7113775 9 10.808028 Anserini +test32 Q0 2629285 10 10.765533 Anserini +test32 Q0 7287794 11 10.703805 Anserini +test32 Q0 14477289 12 10.696999 Anserini +test32 Q0 3745569 13 10.671404 Anserini +test32 Q0 3745561 14 10.671404 Anserini +test32 Q0 11885174 15 10.591984 Anserini +test32 Q0 6250466 16 10.469305 Anserini +test32 Q0 15693910 17 10.415133 Anserini +test32 Q0 7287826 18 10.352784 Anserini +test32 Q0 15292488 19 10.279330 Anserini +test32 Q0 4472869 20 10.236535 Anserini +test32 Q0 15346160 21 10.206443 Anserini +test32 Q0 6701762 22 10.175809 Anserini +test32 Q0 14477290 23 10.173689 Anserini +test32 Q0 20805459 24 10.173689 Anserini +test32 Q0 3260745 25 10.163103 Anserini +test32 Q0 7347159 26 10.160172 Anserini +test32 Q0 7347160 27 10.160172 Anserini +test32 Q0 9582651 28 10.036139 Anserini +test32 Q0 12252687 29 10.002952 Anserini +test32 Q0 8555276 30 9.930352 Anserini +test320 Q0 19619486 1 15.693826 Anserini +test320 Q0 16572726 2 15.686829 Anserini +test320 Q0 4446447 3 15.152448 Anserini +test320 Q0 19619490 4 15.013020 Anserini +test320 Q0 284603 5 14.986303 Anserini +test320 Q0 4219106 6 14.769345 Anserini +test320 Q0 19619487 7 14.707369 Anserini +test320 Q0 8968127 8 14.694036 Anserini +test320 Q0 4320142 9 14.671743 Anserini +test320 Q0 3200172 10 14.599571 Anserini +test320 Q0 5074639 11 14.595860 Anserini +test320 Q0 8993828 12 14.595860 Anserini +test320 Q0 19346432 13 14.574739 Anserini +test320 Q0 5288330 14 14.472866 Anserini +test320 Q0 882875 15 14.438269 Anserini +test320 Q0 5726927 16 14.437736 Anserini +test320 Q0 4446450 17 14.398041 Anserini +test320 Q0 14224092 18 14.335707 Anserini +test320 Q0 11036415 19 14.227430 Anserini +test320 Q0 2886875 20 14.227430 Anserini +test320 Q0 10714048 21 14.202473 Anserini +test320 Q0 17728759 22 14.198207 Anserini +test320 Q0 6733985 23 14.106950 Anserini +test320 Q0 13041463 24 14.104706 Anserini +test320 Q0 4314296 25 14.065374 Anserini +test320 Q0 3348968 26 14.044223 Anserini +test320 Q0 17728761 27 14.029128 Anserini +test320 Q0 2588828 28 14.009433 Anserini +test320 Q0 1581851 29 13.985173 Anserini +test320 Q0 11510248 30 13.951988 Anserini +test3200 Q0 7570986 1 11.056196 Anserini +test3200 Q0 1619914 2 10.876624 Anserini +test3200 Q0 14268025 3 10.103312 Anserini +test3200 Q0 8268052 4 9.876934 Anserini +test3200 Q0 16362275 5 9.860392 Anserini +test3200 Q0 4491928 6 9.856263 Anserini +test3200 Q0 5673016 7 9.852710 Anserini +test3200 Q0 11890581 8 9.852710 Anserini +test3200 Q0 2422114 9 9.824566 Anserini +test3200 Q0 151717 10 9.824566 Anserini +test3200 Q0 11961955 11 9.790487 Anserini +test3200 Q0 2081460 12 9.779519 Anserini +test3200 Q0 17375034 13 9.765676 Anserini +test3200 Q0 19678005 14 9.754642 Anserini +test3200 Q0 1187286 15 9.670921 Anserini +test3200 Q0 7992099 16 9.670781 Anserini +test3200 Q0 17963679 17 9.622492 Anserini +test3200 Q0 5109194 18 9.607668 Anserini +test3200 Q0 16652784 19 9.601374 Anserini +test3200 Q0 7854483 20 9.575711 Anserini +test3200 Q0 5109206 21 9.549396 Anserini +test3200 Q0 6730056 22 9.531037 Anserini +test3200 Q0 3714340 23 9.529819 Anserini +test3200 Q0 20048704 24 9.526967 Anserini +test3200 Q0 117625 25 9.511260 Anserini +test3200 Q0 3574382 26 9.499754 Anserini +test3200 Q0 10896283 27 9.495888 Anserini +test3200 Q0 8663656 28 9.478457 Anserini +test3200 Q0 9682019 29 9.458067 Anserini +test3200 Q0 4483584 30 9.455133 Anserini +test3201 Q0 19787921 1 17.087160 Anserini +test3201 Q0 16156190 2 17.005259 Anserini +test3201 Q0 19800581 3 16.097115 Anserini +test3201 Q0 19787922 4 15.779443 Anserini +test3201 Q0 19784395 5 15.344141 Anserini +test3201 Q0 17567651 6 15.098247 Anserini +test3201 Q0 19787923 7 15.070542 Anserini +test3201 Q0 19784399 8 15.027153 Anserini +test3201 Q0 19202479 9 14.013492 Anserini +test3201 Q0 15662573 10 13.993357 Anserini +test3201 Q0 16926991 11 13.853011 Anserini +test3201 Q0 19784398 12 13.848844 Anserini +test3201 Q0 19787924 13 13.848612 Anserini +test3201 Q0 19784393 14 13.653185 Anserini +test3201 Q0 19784402 15 13.653185 Anserini +test3201 Q0 19784400 16 13.419466 Anserini +test3201 Q0 19800575 17 13.055968 Anserini +test3201 Q0 16156191 18 13.049235 Anserini +test3201 Q0 19800586 19 12.977501 Anserini +test3201 Q0 19800589 20 12.977501 Anserini +test3201 Q0 18914097 21 12.723050 Anserini +test3201 Q0 17998685 22 12.424154 Anserini +test3201 Q0 16156189 23 12.219254 Anserini +test3201 Q0 19787925 24 12.188301 Anserini +test3201 Q0 6091920 25 12.101978 Anserini +test3201 Q0 20097030 26 11.977737 Anserini +test3201 Q0 16655733 27 11.587805 Anserini +test3201 Q0 19784394 28 11.582619 Anserini +test3201 Q0 16156188 29 11.419849 Anserini +test3201 Q0 17393143 30 11.370486 Anserini +test3202 Q0 15273660 1 14.276339 Anserini +test3202 Q0 14379619 2 13.878222 Anserini +test3202 Q0 14379602 3 13.878222 Anserini +test3202 Q0 16645483 4 13.732004 Anserini +test3202 Q0 2956108 5 13.576544 Anserini +test3202 Q0 7240295 6 13.445292 Anserini +test3202 Q0 5424789 7 13.428503 Anserini +test3202 Q0 20056181 8 13.417922 Anserini +test3202 Q0 17554104 9 13.253149 Anserini +test3202 Q0 14372353 10 13.149978 Anserini +test3202 Q0 19752604 11 13.019408 Anserini +test3202 Q0 15398459 12 12.926820 Anserini +test3202 Q0 20233297 13 12.909660 Anserini +test3202 Q0 6672815 14 12.906623 Anserini +test3202 Q0 12518841 15 12.821045 Anserini +test3202 Q0 673598 16 12.813698 Anserini +test3202 Q0 20234950 17 12.803836 Anserini +test3202 Q0 11343753 18 12.782236 Anserini +test3202 Q0 1289293 19 12.743999 Anserini +test3202 Q0 11819850 20 12.732296 Anserini +test3202 Q0 19841437 21 12.695672 Anserini +test3202 Q0 15508871 22 12.678618 Anserini +test3202 Q0 20488389 23 12.664657 Anserini +test3202 Q0 1798648 24 12.661243 Anserini +test3202 Q0 18105915 25 12.654314 Anserini +test3202 Q0 13031121 26 12.642356 Anserini +test3202 Q0 18105912 27 12.583771 Anserini +test3202 Q0 8244084 28 12.574495 Anserini +test3202 Q0 20056170 29 12.564798 Anserini +test3202 Q0 21002673 30 12.549170 Anserini +test3203 Q0 11236657 1 17.119223 Anserini +test3203 Q0 11220554 2 16.315744 Anserini +test3203 Q0 8225737 3 15.845428 Anserini +test3203 Q0 11310979 4 15.556400 Anserini +test3203 Q0 11205987 5 15.352503 Anserini +test3203 Q0 11310982 6 15.150939 Anserini +test3203 Q0 3483926 7 15.146475 Anserini +test3203 Q0 6995629 8 14.874713 Anserini +test3203 Q0 11264328 9 14.498251 Anserini +test3203 Q0 6995624 10 14.495467 Anserini +test3203 Q0 106565 11 14.310678 Anserini +test3203 Q0 19122873 12 14.310173 Anserini +test3203 Q0 11291478 13 14.299042 Anserini +test3203 Q0 18809333 14 14.105058 Anserini +test3203 Q0 4814167 15 13.772798 Anserini +test3203 Q0 6995682 16 13.772714 Anserini +test3203 Q0 11318032 17 13.730374 Anserini +test3203 Q0 18414307 18 13.580088 Anserini +test3203 Q0 11318013 19 13.461399 Anserini +test3203 Q0 6995639 20 13.432639 Anserini +test3203 Q0 11264326 21 13.337455 Anserini +test3203 Q0 7000755 22 13.326188 Anserini +test3203 Q0 6995612 23 13.290777 Anserini +test3203 Q0 9500620 24 13.282747 Anserini +test3203 Q0 11159869 25 13.279132 Anserini +test3203 Q0 11158294 26 13.199093 Anserini +test3203 Q0 11294562 27 13.178192 Anserini +test3203 Q0 16184813 28 13.175822 Anserini +test3203 Q0 6995630 29 13.088421 Anserini +test3203 Q0 313744 30 13.037670 Anserini +test3204 Q0 7167363 1 16.880873 Anserini +test3204 Q0 106581 2 16.451427 Anserini +test3204 Q0 394946 3 16.305744 Anserini +test3204 Q0 9862360 4 16.265673 Anserini +test3204 Q0 9862429 5 16.265673 Anserini +test3204 Q0 376025 6 16.081560 Anserini +test3204 Q0 9862424 7 16.059046 Anserini +test3204 Q0 394886 8 16.035423 Anserini +test3204 Q0 12880210 9 15.977076 Anserini +test3204 Q0 106544 10 15.804947 Anserini +test3204 Q0 2737339 11 15.397306 Anserini +test3204 Q0 19807797 12 15.310448 Anserini +test3204 Q0 4344249 13 15.247686 Anserini +test3204 Q0 394478 14 15.171762 Anserini +test3204 Q0 394509 15 15.091565 Anserini +test3204 Q0 6468829 16 15.023074 Anserini +test3204 Q0 106565 17 14.912646 Anserini +test3204 Q0 12786784 18 14.912646 Anserini +test3204 Q0 394059 19 14.899654 Anserini +test3204 Q0 19798203 20 14.892046 Anserini +test3204 Q0 7550216 21 14.788949 Anserini +test3204 Q0 3683002 22 14.599792 Anserini +test3204 Q0 2160396 23 14.584918 Anserini +test3204 Q0 394948 24 14.538550 Anserini +test3204 Q0 2748835 25 14.486179 Anserini +test3204 Q0 9862376 26 14.486179 Anserini +test3204 Q0 7167383 27 14.480206 Anserini +test3204 Q0 18470813 28 14.375991 Anserini +test3204 Q0 17736130 29 14.366608 Anserini +test3204 Q0 305595 30 14.365009 Anserini +test3205 Q0 19713831 1 12.113274 Anserini +test3205 Q0 17949255 2 12.050071 Anserini +test3205 Q0 15440575 3 12.017969 Anserini +test3205 Q0 6408431 4 11.812882 Anserini +test3205 Q0 6419395 5 11.393436 Anserini +test3205 Q0 8180207 6 11.263046 Anserini +test3205 Q0 16737131 7 11.256140 Anserini +test3205 Q0 16633013 8 11.030996 Anserini +test3205 Q0 19804880 9 10.957369 Anserini +test3205 Q0 8180209 10 10.895412 Anserini +test3205 Q0 7621466 11 10.763893 Anserini +test3205 Q0 16296299 12 10.696700 Anserini +test3205 Q0 20928000 13 10.513603 Anserini +test3205 Q0 11688589 14 10.477077 Anserini +test3205 Q0 7968684 15 10.385588 Anserini +test3205 Q0 5515117 16 10.346493 Anserini +test3205 Q0 18874125 17 10.263075 Anserini +test3205 Q0 19713833 18 10.251366 Anserini +test3205 Q0 16956261 19 10.233269 Anserini +test3205 Q0 3538339 20 10.208071 Anserini +test3205 Q0 4425310 21 10.195110 Anserini +test3205 Q0 708551 22 10.170921 Anserini +test3205 Q0 20535820 23 10.133440 Anserini +test3205 Q0 4571067 24 10.133440 Anserini +test3205 Q0 15147075 25 10.068911 Anserini +test3205 Q0 10594451 26 10.013016 Anserini +test3205 Q0 1940951 27 9.990536 Anserini +test3205 Q0 11658181 28 9.980360 Anserini +test3205 Q0 15250409 29 9.976286 Anserini +test3205 Q0 5409732 30 9.947879 Anserini +test3206 Q0 3564733 1 15.888843 Anserini +test3206 Q0 10278220 2 14.983350 Anserini +test3206 Q0 3564735 3 11.153049 Anserini +test3206 Q0 3564742 4 11.115707 Anserini +test3206 Q0 2243477 5 10.834423 Anserini +test3206 Q0 5798730 6 10.642444 Anserini +test3206 Q0 2480480 7 10.494575 Anserini +test3206 Q0 4252065 8 10.456823 Anserini +test3206 Q0 1385856 9 10.378306 Anserini +test3206 Q0 19025800 10 10.212370 Anserini +test3206 Q0 3564741 11 10.160084 Anserini +test3206 Q0 15835658 12 10.133434 Anserini +test3206 Q0 9546747 13 10.085075 Anserini +test3206 Q0 5007945 14 10.052756 Anserini +test3206 Q0 4536645 15 9.985407 Anserini +test3206 Q0 2444293 16 9.982607 Anserini +test3206 Q0 3564734 17 9.953802 Anserini +test3206 Q0 7023682 18 9.915733 Anserini +test3206 Q0 3564740 19 9.902295 Anserini +test3206 Q0 901624 20 9.843143 Anserini +test3206 Q0 3564736 21 9.799735 Anserini +test3206 Q0 20131 22 9.796412 Anserini +test3206 Q0 15464153 23 9.723938 Anserini +test3206 Q0 15835656 24 9.699848 Anserini +test3206 Q0 13953736 25 9.631193 Anserini +test3206 Q0 7756550 26 9.575687 Anserini +test3206 Q0 965137 27 9.533540 Anserini +test3206 Q0 1385839 28 9.533433 Anserini +test3206 Q0 10746965 29 9.511221 Anserini +test3206 Q0 2480571 30 9.495975 Anserini +test3207 Q0 16942594 1 13.380403 Anserini +test3207 Q0 7741594 2 13.106872 Anserini +test3207 Q0 1584681 3 13.041447 Anserini +test3207 Q0 651403 4 12.982700 Anserini +test3207 Q0 6398532 5 12.790110 Anserini +test3207 Q0 2344199 6 12.648316 Anserini +test3207 Q0 6667345 7 12.486357 Anserini +test3207 Q0 4274204 8 12.463473 Anserini +test3207 Q0 9449514 9 12.419721 Anserini +test3207 Q0 651313 10 12.387438 Anserini +test3207 Q0 2344207 11 12.265807 Anserini +test3207 Q0 14819987 12 12.128476 Anserini +test3207 Q0 1286361 13 12.088140 Anserini +test3207 Q0 13315012 14 12.049711 Anserini +test3207 Q0 3152417 15 12.002865 Anserini +test3207 Q0 3385736 16 11.997137 Anserini +test3207 Q0 12060078 17 11.968245 Anserini +test3207 Q0 3625190 18 11.921361 Anserini +test3207 Q0 3806570 19 11.853210 Anserini +test3207 Q0 3498366 20 11.831448 Anserini +test3207 Q0 3244851 21 11.824938 Anserini +test3207 Q0 4390543 22 11.800129 Anserini +test3207 Q0 445641 23 11.660311 Anserini +test3207 Q0 3936759 24 11.597199 Anserini +test3207 Q0 18572091 25 11.521839 Anserini +test3207 Q0 19329264 26 11.517042 Anserini +test3207 Q0 1286364 27 11.399754 Anserini +test3207 Q0 6471394 28 11.387479 Anserini +test3207 Q0 516641 29 11.381325 Anserini +test3207 Q0 516633 30 11.354162 Anserini +test3208 Q0 11004271 1 16.563089 Anserini +test3208 Q0 3781806 2 16.473101 Anserini +test3208 Q0 6816511 3 15.485834 Anserini +test3208 Q0 10386785 4 15.399891 Anserini +test3208 Q0 6142675 5 15.384799 Anserini +test3208 Q0 6816524 6 15.363206 Anserini +test3208 Q0 3781811 7 15.322931 Anserini +test3208 Q0 4523118 8 15.245314 Anserini +test3208 Q0 6816564 9 15.152795 Anserini +test3208 Q0 6816522 10 14.577888 Anserini +test3208 Q0 3781812 11 14.558577 Anserini +test3208 Q0 6816520 12 14.494999 Anserini +test3208 Q0 4523122 13 14.493806 Anserini +test3208 Q0 6816557 14 14.405047 Anserini +test3208 Q0 4523116 15 14.354338 Anserini +test3208 Q0 6142682 16 14.199760 Anserini +test3208 Q0 6816551 17 14.178192 Anserini +test3208 Q0 10431034 18 14.104521 Anserini +test3208 Q0 6142714 19 13.954662 Anserini +test3208 Q0 11004272 20 13.635107 Anserini +test3208 Q0 6816539 21 13.614322 Anserini +test3208 Q0 6816556 22 13.592263 Anserini +test3208 Q0 11188782 23 13.576055 Anserini +test3208 Q0 15335889 24 13.551128 Anserini +test3208 Q0 6816517 25 13.451731 Anserini +test3208 Q0 6142713 26 13.353581 Anserini +test3208 Q0 3781824 27 13.342367 Anserini +test3208 Q0 6142674 28 13.248792 Anserini +test3208 Q0 6816560 29 13.208530 Anserini +test3208 Q0 14594223 30 13.147075 Anserini +test3209 Q0 19404311 1 13.347679 Anserini +test3209 Q0 2014339 2 12.656317 Anserini +test3209 Q0 2774446 3 12.463613 Anserini +test3209 Q0 20291679 4 12.461923 Anserini +test3209 Q0 17905439 5 12.294350 Anserini +test3209 Q0 15684839 6 12.276691 Anserini +test3209 Q0 5228736 7 12.195330 Anserini +test3209 Q0 10729657 8 12.180475 Anserini +test3209 Q0 18992366 9 12.176174 Anserini +test3209 Q0 14804254 10 12.090468 Anserini +test3209 Q0 6606500 11 11.731553 Anserini +test3209 Q0 4534334 12 11.649111 Anserini +test3209 Q0 7937937 13 11.613277 Anserini +test3209 Q0 18041860 14 11.601239 Anserini +test3209 Q0 7117410 15 11.581967 Anserini +test3209 Q0 2826885 16 11.446751 Anserini +test3209 Q0 940908 17 11.437721 Anserini +test3209 Q0 14857961 18 11.345921 Anserini +test3209 Q0 13781710 19 11.304702 Anserini +test3209 Q0 8739177 20 11.271587 Anserini +test3209 Q0 11659534 21 11.258388 Anserini +test3209 Q0 4070398 22 11.243599 Anserini +test3209 Q0 7669084 23 11.240405 Anserini +test3209 Q0 7485045 24 11.240405 Anserini +test3209 Q0 5461666 25 11.185097 Anserini +test3209 Q0 13789118 26 11.143412 Anserini +test3209 Q0 12197535 27 11.103867 Anserini +test3209 Q0 16037057 28 11.103867 Anserini +test3209 Q0 13789129 29 11.045126 Anserini +test3209 Q0 10940052 30 11.016119 Anserini +test321 Q0 3000594 1 12.578645 Anserini +test321 Q0 7155240 2 12.425811 Anserini +test321 Q0 4530879 3 11.684402 Anserini +test321 Q0 16218149 4 11.607588 Anserini +test321 Q0 18942539 5 11.204658 Anserini +test321 Q0 5071514 6 11.127111 Anserini +test321 Q0 8888187 7 11.087328 Anserini +test321 Q0 3000579 8 11.021201 Anserini +test321 Q0 3000582 9 10.996222 Anserini +test321 Q0 7304003 10 10.991752 Anserini +test321 Q0 8888169 11 10.972736 Anserini +test321 Q0 3000591 12 10.897991 Anserini +test321 Q0 8999852 13 10.871096 Anserini +test321 Q0 17430474 14 10.803134 Anserini +test321 Q0 3071541 15 10.790660 Anserini +test321 Q0 18001222 16 10.776324 Anserini +test321 Q0 3000583 17 10.702524 Anserini +test321 Q0 14726984 18 10.665846 Anserini +test321 Q0 14280547 19 10.639284 Anserini +test321 Q0 3329162 20 10.576299 Anserini +test321 Q0 9851201 21 10.518213 Anserini +test321 Q0 12090186 22 10.516909 Anserini +test321 Q0 15183188 23 10.507547 Anserini +test321 Q0 84573 24 10.505795 Anserini +test321 Q0 18001221 25 10.374913 Anserini +test321 Q0 18759127 26 10.348869 Anserini +test321 Q0 12913174 27 10.345513 Anserini +test321 Q0 5247421 28 10.324904 Anserini +test321 Q0 19764540 29 10.315463 Anserini +test321 Q0 7304008 30 10.313649 Anserini +test3210 Q0 19527640 1 23.284704 Anserini +test3210 Q0 10241918 2 21.430223 Anserini +test3210 Q0 12272513 3 20.449980 Anserini +test3210 Q0 10241915 4 20.119808 Anserini +test3210 Q0 20128713 5 19.997757 Anserini +test3210 Q0 15702161 6 19.812027 Anserini +test3210 Q0 19527653 7 19.761868 Anserini +test3210 Q0 13610232 8 19.668568 Anserini +test3210 Q0 19739682 9 19.578278 Anserini +test3210 Q0 12272508 10 19.552526 Anserini +test3210 Q0 12300173 11 19.330975 Anserini +test3210 Q0 12300168 12 19.245367 Anserini +test3210 Q0 19739681 13 19.094749 Anserini +test3210 Q0 20128718 14 19.029573 Anserini +test3210 Q0 10241904 15 19.029573 Anserini +test3210 Q0 20128698 16 19.029573 Anserini +test3210 Q0 18755019 17 19.029573 Anserini +test3210 Q0 13899137 18 18.964844 Anserini +test3210 Q0 15715493 19 18.900549 Anserini +test3210 Q0 19739698 20 18.900549 Anserini +test3210 Q0 15702162 21 18.889814 Anserini +test3210 Q0 15207801 22 18.836691 Anserini +test3210 Q0 20128711 23 18.644743 Anserini +test3210 Q0 13610238 24 18.542797 Anserini +test3210 Q0 17478890 25 18.431940 Anserini +test3210 Q0 13899151 26 18.431940 Anserini +test3210 Q0 17478881 27 18.356083 Anserini +test3210 Q0 15702167 28 18.356083 Anserini +test3210 Q0 15207818 29 18.310604 Anserini +test3210 Q0 14306295 30 18.280846 Anserini +test3211 Q0 18501198 1 13.986045 Anserini +test3211 Q0 18480478 2 12.772704 Anserini +test3211 Q0 14619257 3 12.392975 Anserini +test3211 Q0 19547212 4 12.350575 Anserini +test3211 Q0 12525889 5 12.320508 Anserini +test3211 Q0 19547344 6 12.289511 Anserini +test3211 Q0 19547345 7 12.289511 Anserini +test3211 Q0 19547211 8 12.289511 Anserini +test3211 Q0 19550881 9 12.289511 Anserini +test3211 Q0 19550885 10 12.229164 Anserini +test3211 Q0 19926979 11 12.206123 Anserini +test3211 Q0 14817311 12 12.139530 Anserini +test3211 Q0 5854456 13 12.049038 Anserini +test3211 Q0 2182907 14 11.939196 Anserini +test3211 Q0 17455561 15 11.915058 Anserini +test3211 Q0 2182895 16 11.901774 Anserini +test3211 Q0 19550883 17 11.842236 Anserini +test3211 Q0 18480481 18 11.806488 Anserini +test3211 Q0 20472579 19 11.790539 Anserini +test3211 Q0 18486061 20 11.755004 Anserini +test3211 Q0 6752950 21 11.619222 Anserini +test3211 Q0 17569066 22 11.599524 Anserini +test3211 Q0 18486059 23 11.516031 Anserini +test3211 Q0 2828453 24 11.506172 Anserini +test3211 Q0 2182887 25 11.479096 Anserini +test3211 Q0 12846371 26 11.431977 Anserini +test3211 Q0 2182880 27 11.422315 Anserini +test3211 Q0 20813560 28 11.394978 Anserini +test3211 Q0 2182879 29 11.362728 Anserini +test3211 Q0 19259377 30 11.330669 Anserini +test3212 Q0 19748964 1 16.555685 Anserini +test3212 Q0 17907678 2 15.782594 Anserini +test3212 Q0 19748960 3 15.600245 Anserini +test3212 Q0 12044514 4 14.292636 Anserini +test3212 Q0 17907659 5 13.261942 Anserini +test3212 Q0 19748961 6 12.871550 Anserini +test3212 Q0 19748962 7 12.871550 Anserini +test3212 Q0 1881501 8 11.658949 Anserini +test3212 Q0 18381618 9 11.437918 Anserini +test3212 Q0 4733059 10 11.303813 Anserini +test3212 Q0 19510379 11 10.788038 Anserini +test3212 Q0 18381619 12 10.730217 Anserini +test3212 Q0 19510380 13 10.556235 Anserini +test3212 Q0 12044531 14 10.546295 Anserini +test3212 Q0 17907656 15 10.450820 Anserini +test3212 Q0 19627701 16 10.433142 Anserini +test3212 Q0 14093260 17 10.398231 Anserini +test3212 Q0 19627704 18 10.309868 Anserini +test3212 Q0 19627700 19 10.247448 Anserini +test3212 Q0 14093265 20 10.012876 Anserini +test3212 Q0 17907665 21 9.912924 Anserini +test3212 Q0 19748959 22 9.856877 Anserini +test3212 Q0 12644687 23 9.793331 Anserini +test3212 Q0 5645085 24 9.695834 Anserini +test3212 Q0 17665266 25 9.608426 Anserini +test3212 Q0 17665264 26 9.601869 Anserini +test3212 Q0 8281633 27 9.575014 Anserini +test3212 Q0 7697704 28 9.535516 Anserini +test3212 Q0 14336835 29 9.449467 Anserini +test3212 Q0 20877249 30 9.437464 Anserini +test3213 Q0 20458268 1 12.828882 Anserini +test3213 Q0 20458263 2 12.647233 Anserini +test3213 Q0 18433608 3 11.980222 Anserini +test3213 Q0 8239531 4 11.978553 Anserini +test3213 Q0 18307465 5 11.457753 Anserini +test3213 Q0 18373811 6 11.392309 Anserini +test3213 Q0 20458264 7 11.265995 Anserini +test3213 Q0 9749055 8 11.085634 Anserini +test3213 Q0 18349713 9 10.986264 Anserini +test3213 Q0 20458108 10 10.969806 Anserini +test3213 Q0 18373799 11 10.969806 Anserini +test3213 Q0 18356735 12 10.903615 Anserini +test3213 Q0 18373794 13 10.811781 Anserini +test3213 Q0 18307468 14 10.789444 Anserini +test3213 Q0 18349709 15 10.732895 Anserini +test3213 Q0 14443807 16 10.660213 Anserini +test3213 Q0 18373795 17 10.604037 Anserini +test3213 Q0 18452161 18 10.604037 Anserini +test3213 Q0 18452166 19 10.582352 Anserini +test3213 Q0 20458266 20 10.516590 Anserini +test3213 Q0 18452148 21 10.511443 Anserini +test3213 Q0 18373791 22 10.441603 Anserini +test3213 Q0 18307249 23 10.430720 Anserini +test3213 Q0 18373797 24 10.430720 Anserini +test3213 Q0 18307246 25 10.350740 Anserini +test3213 Q0 17610138 26 10.294101 Anserini +test3213 Q0 13682304 27 10.280770 Anserini +test3213 Q0 19078417 28 10.262630 Anserini +test3213 Q0 9162543 29 10.192174 Anserini +test3213 Q0 18452156 30 10.188986 Anserini +test3214 Q0 3430600 1 15.192489 Anserini +test3214 Q0 19282814 2 14.559134 Anserini +test3214 Q0 323745 3 14.160548 Anserini +test3214 Q0 323732 4 13.518482 Anserini +test3214 Q0 1872323 5 12.514144 Anserini +test3214 Q0 10528091 6 12.462729 Anserini +test3214 Q0 1474204 7 12.405865 Anserini +test3214 Q0 7322402 8 12.223181 Anserini +test3214 Q0 5108194 9 12.083306 Anserini +test3214 Q0 12411525 10 11.900816 Anserini +test3214 Q0 5757068 11 11.893532 Anserini +test3214 Q0 323755 12 11.663808 Anserini +test3214 Q0 1001874 13 11.408184 Anserini +test3214 Q0 323731 14 11.399684 Anserini +test3214 Q0 1154968 15 11.340656 Anserini +test3214 Q0 17686108 16 11.298405 Anserini +test3214 Q0 11928288 17 11.241025 Anserini +test3214 Q0 11928283 18 11.241025 Anserini +test3214 Q0 3230057 19 11.152869 Anserini +test3214 Q0 4454927 20 11.081882 Anserini +test3214 Q0 6039813 21 11.009361 Anserini +test3214 Q0 11159183 22 10.934353 Anserini +test3214 Q0 20299422 23 10.842627 Anserini +test3214 Q0 4702557 24 10.788424 Anserini +test3214 Q0 1847218 25 10.764705 Anserini +test3214 Q0 5142865 26 10.738058 Anserini +test3214 Q0 1847166 27 10.686298 Anserini +test3214 Q0 7495095 28 10.569897 Anserini +test3214 Q0 19271287 29 10.543814 Anserini +test3214 Q0 12409624 30 10.537127 Anserini +test3215 Q0 18766193 1 12.053980 Anserini +test3215 Q0 5571890 2 11.840950 Anserini +test3215 Q0 7031146 3 11.196620 Anserini +test3215 Q0 11825721 4 11.146334 Anserini +test3215 Q0 14922174 5 11.071597 Anserini +test3215 Q0 9851899 6 10.742316 Anserini +test3215 Q0 18766192 7 10.735096 Anserini +test3215 Q0 9728089 8 10.727415 Anserini +test3215 Q0 14412107 9 10.669631 Anserini +test3215 Q0 15437952 10 10.566541 Anserini +test3215 Q0 16456054 11 10.462071 Anserini +test3215 Q0 13636639 12 10.443562 Anserini +test3215 Q0 1580854 13 10.398938 Anserini +test3215 Q0 17874519 14 10.277765 Anserini +test3215 Q0 10746306 15 10.271197 Anserini +test3215 Q0 9797864 16 10.265291 Anserini +test3215 Q0 6529740 17 10.210469 Anserini +test3215 Q0 6935697 18 10.188759 Anserini +test3215 Q0 9851883 19 10.178313 Anserini +test3215 Q0 1580813 20 10.173043 Anserini +test3215 Q0 2641378 21 10.148556 Anserini +test3215 Q0 6935715 22 10.140308 Anserini +test3215 Q0 6934979 23 10.060150 Anserini +test3215 Q0 1580822 24 10.052467 Anserini +test3215 Q0 2203376 25 10.049032 Anserini +test3215 Q0 8018304 26 10.037477 Anserini +test3215 Q0 18032572 27 10.023827 Anserini +test3215 Q0 7288431 28 10.020844 Anserini +test3215 Q0 9324405 29 9.945941 Anserini +test3215 Q0 2708785 30 9.892706 Anserini +test3216 Q0 7741086 1 12.698645 Anserini +test3216 Q0 20391835 2 11.491564 Anserini +test3216 Q0 2211150 3 11.491564 Anserini +test3216 Q0 18028038 4 11.477321 Anserini +test3216 Q0 10238315 5 11.124060 Anserini +test3216 Q0 19880394 6 10.991045 Anserini +test3216 Q0 7726538 7 10.860942 Anserini +test3216 Q0 15807015 8 10.832281 Anserini +test3216 Q0 15632282 9 10.782416 Anserini +test3216 Q0 20807923 10 10.688467 Anserini +test3216 Q0 18241137 11 10.438231 Anserini +test3216 Q0 10059815 12 10.185003 Anserini +test3216 Q0 605394 13 10.080977 Anserini +test3216 Q0 7140945 14 10.047106 Anserini +test3216 Q0 10760180 15 10.029131 Anserini +test3216 Q0 19246488 16 9.951408 Anserini +test3216 Q0 7726529 17 9.872215 Anserini +test3216 Q0 21013509 18 9.801805 Anserini +test3216 Q0 19781422 19 9.712851 Anserini +test3216 Q0 528203 20 9.691728 Anserini +test3216 Q0 14779673 21 9.666495 Anserini +test3216 Q0 12689589 22 9.648067 Anserini +test3216 Q0 6204364 23 9.632709 Anserini +test3216 Q0 2211114 24 9.624232 Anserini +test3216 Q0 14410974 25 9.546501 Anserini +test3216 Q0 17243746 26 9.542206 Anserini +test3216 Q0 16586464 27 9.541102 Anserini +test3216 Q0 15068367 28 9.367026 Anserini +test3216 Q0 6674462 29 9.331874 Anserini +test3216 Q0 6674465 30 9.309631 Anserini +test3217 Q0 3995587 1 10.356662 Anserini +test3217 Q0 3249898 2 10.302117 Anserini +test3217 Q0 19431648 3 9.586063 Anserini +test3217 Q0 19431647 4 9.477476 Anserini +test3217 Q0 19119097 5 9.422673 Anserini +test3217 Q0 19119107 6 9.373436 Anserini +test3217 Q0 19119142 7 9.373436 Anserini +test3217 Q0 19119144 8 9.373436 Anserini +test3217 Q0 19119140 9 9.373436 Anserini +test3217 Q0 19119093 10 9.309894 Anserini +test3217 Q0 19119148 11 9.309894 Anserini +test3217 Q0 19119157 12 9.309894 Anserini +test3217 Q0 19119101 13 9.309894 Anserini +test3217 Q0 18134132 14 9.282276 Anserini +test3217 Q0 19119146 15 9.258661 Anserini +test3217 Q0 15360386 16 9.213083 Anserini +test3217 Q0 12800986 17 9.182657 Anserini +test3217 Q0 4227439 18 9.128839 Anserini +test3217 Q0 4036207 19 9.120859 Anserini +test3217 Q0 12801012 20 9.067702 Anserini +test3217 Q0 7485904 21 9.011528 Anserini +test3217 Q0 9108724 22 9.010081 Anserini +test3217 Q0 20886593 23 9.009432 Anserini +test3217 Q0 829168 24 8.987466 Anserini +test3217 Q0 15792446 25 8.945101 Anserini +test3217 Q0 20528504 26 8.907866 Anserini +test3217 Q0 17849860 27 8.892474 Anserini +test3217 Q0 15033424 28 8.853416 Anserini +test3217 Q0 10282212 29 8.840963 Anserini +test3217 Q0 11130293 30 8.812209 Anserini +test3218 Q0 17485795 1 14.162116 Anserini +test3218 Q0 17485846 2 14.070960 Anserini +test3218 Q0 18817962 3 14.028973 Anserini +test3218 Q0 12906991 4 13.844005 Anserini +test3218 Q0 18817968 5 13.274726 Anserini +test3218 Q0 18134025 6 13.144357 Anserini +test3218 Q0 17485806 7 12.989743 Anserini +test3218 Q0 17485797 8 12.876331 Anserini +test3218 Q0 17422624 9 12.845510 Anserini +test3218 Q0 18580006 10 12.813872 Anserini +test3218 Q0 17485824 11 12.691322 Anserini +test3218 Q0 16534670 12 12.616764 Anserini +test3218 Q0 18134014 13 12.549570 Anserini +test3218 Q0 16382180 14 12.497824 Anserini +test3218 Q0 18817964 15 12.424519 Anserini +test3218 Q0 20403195 16 12.393842 Anserini +test3218 Q0 19758079 17 12.378796 Anserini +test3218 Q0 17422622 18 12.361093 Anserini +test3218 Q0 17422638 19 12.361093 Anserini +test3218 Q0 16416055 20 12.344593 Anserini +test3218 Q0 18817966 21 12.090765 Anserini +test3218 Q0 16534671 22 12.082790 Anserini +test3218 Q0 16382192 23 12.031794 Anserini +test3218 Q0 11984626 24 11.964692 Anserini +test3218 Q0 17485839 25 11.963732 Anserini +test3218 Q0 17007141 26 11.903090 Anserini +test3218 Q0 1648902 27 11.869266 Anserini +test3218 Q0 16382182 28 11.833187 Anserini +test3218 Q0 19323014 29 11.825251 Anserini +test3218 Q0 18134022 30 11.819860 Anserini +test3219 Q0 16263720 1 16.522194 Anserini +test3219 Q0 16263727 2 16.356911 Anserini +test3219 Q0 19447635 3 16.259804 Anserini +test3219 Q0 16528221 4 15.232410 Anserini +test3219 Q0 4567500 5 15.066035 Anserini +test3219 Q0 18680136 6 14.267890 Anserini +test3219 Q0 17288352 7 14.267890 Anserini +test3219 Q0 16528219 8 14.117692 Anserini +test3219 Q0 12800949 9 13.970622 Anserini +test3219 Q0 18008397 10 13.826585 Anserini +test3219 Q0 4567502 11 13.637952 Anserini +test3219 Q0 4567515 12 12.838400 Anserini +test3219 Q0 4567496 13 12.712715 Anserini +test3219 Q0 12863173 14 12.453938 Anserini +test3219 Q0 17716220 15 12.446012 Anserini +test3219 Q0 4567501 16 12.265933 Anserini +test3219 Q0 4365285 17 12.137126 Anserini +test3219 Q0 12863175 18 12.113025 Anserini +test3219 Q0 19447639 19 12.056795 Anserini +test3219 Q0 18680091 20 12.038845 Anserini +test3219 Q0 19447648 21 12.038845 Anserini +test3219 Q0 5804815 22 11.998870 Anserini +test3219 Q0 19447638 23 11.982446 Anserini +test3219 Q0 16528227 24 11.891357 Anserini +test3219 Q0 8089026 25 11.855453 Anserini +test3219 Q0 17242375 26 11.855453 Anserini +test3219 Q0 5124113 27 11.831697 Anserini +test3219 Q0 19559342 28 11.827962 Anserini +test3219 Q0 18827352 29 11.746143 Anserini +test3219 Q0 16453118 30 11.661977 Anserini +test322 Q0 1931798 1 22.269386 Anserini +test322 Q0 452962 2 20.013220 Anserini +test322 Q0 2564219 3 19.853573 Anserini +test322 Q0 17389079 4 19.792841 Anserini +test322 Q0 11322565 5 18.930378 Anserini +test322 Q0 7698973 6 18.835661 Anserini +test322 Q0 5836804 7 18.613167 Anserini +test322 Q0 483364 8 18.612917 Anserini +test322 Q0 483371 9 18.612917 Anserini +test322 Q0 608130 10 18.485294 Anserini +test322 Q0 6284695 11 18.331902 Anserini +test322 Q0 5836808 12 18.190735 Anserini +test322 Q0 6192954 13 18.159184 Anserini +test322 Q0 16099902 14 17.775715 Anserini +test322 Q0 7740267 15 17.686972 Anserini +test322 Q0 638748 16 17.230480 Anserini +test322 Q0 608131 17 17.214584 Anserini +test322 Q0 608135 18 17.192261 Anserini +test322 Q0 3113828 19 16.953299 Anserini +test322 Q0 730958 20 16.818806 Anserini +test322 Q0 3059614 21 16.767052 Anserini +test322 Q0 640373 22 16.743071 Anserini +test322 Q0 106716 23 16.697586 Anserini +test322 Q0 13577596 24 16.542368 Anserini +test322 Q0 294329 25 16.449364 Anserini +test322 Q0 5817454 26 16.373795 Anserini +test322 Q0 5817235 27 16.317976 Anserini +test322 Q0 5817239 28 16.317976 Anserini +test322 Q0 13084177 29 16.243921 Anserini +test322 Q0 13084178 30 16.243921 Anserini +test3220 Q0 10984451 1 18.725922 Anserini +test3220 Q0 11129469 2 18.583776 Anserini +test3220 Q0 1931913 3 18.244143 Anserini +test3220 Q0 1945758 4 17.636513 Anserini +test3220 Q0 1945784 5 17.612995 Anserini +test3220 Q0 734408 6 17.407175 Anserini +test3220 Q0 11021300 7 17.290100 Anserini +test3220 Q0 11029777 8 17.226479 Anserini +test3220 Q0 5094802 9 17.030006 Anserini +test3220 Q0 10917204 10 17.009211 Anserini +test3220 Q0 1945749 11 16.968952 Anserini +test3220 Q0 10180877 12 16.674650 Anserini +test3220 Q0 8421773 13 16.427187 Anserini +test3220 Q0 11029768 14 16.375488 Anserini +test3220 Q0 6074478 15 16.126516 Anserini +test3220 Q0 4866841 16 16.107948 Anserini +test3220 Q0 4778758 17 15.969850 Anserini +test3220 Q0 8667197 18 15.823985 Anserini +test3220 Q0 7562258 19 15.771017 Anserini +test3220 Q0 11021381 20 15.712063 Anserini +test3220 Q0 11021451 21 15.678091 Anserini +test3220 Q0 10815008 22 15.495112 Anserini +test3220 Q0 183799 23 15.471682 Anserini +test3220 Q0 4866840 24 15.255241 Anserini +test3220 Q0 11021351 25 15.203176 Anserini +test3220 Q0 7474528 26 15.168009 Anserini +test3220 Q0 8256578 27 15.133570 Anserini +test3220 Q0 183829 28 14.987901 Anserini +test3220 Q0 7353392 29 14.857722 Anserini +test3220 Q0 1945767 30 14.777071 Anserini +test3221 Q0 2490804 1 16.894310 Anserini +test3221 Q0 5394427 2 16.355837 Anserini +test3221 Q0 2490792 3 16.036983 Anserini +test3221 Q0 7008736 4 15.974214 Anserini +test3221 Q0 6907919 5 15.855844 Anserini +test3221 Q0 2600262 6 15.800589 Anserini +test3221 Q0 2458600 7 15.769096 Anserini +test3221 Q0 358163 8 15.675836 Anserini +test3221 Q0 2990261 9 15.351487 Anserini +test3221 Q0 6989913 10 15.317553 Anserini +test3221 Q0 9871231 11 15.316934 Anserini +test3221 Q0 3951908 12 15.250582 Anserini +test3221 Q0 2490800 13 15.219443 Anserini +test3221 Q0 5640389 14 15.201643 Anserini +test3221 Q0 2485456 15 15.196014 Anserini +test3221 Q0 9286714 16 15.181015 Anserini +test3221 Q0 9286717 17 15.181015 Anserini +test3221 Q0 358194 18 15.114481 Anserini +test3221 Q0 713361 19 15.110559 Anserini +test3221 Q0 4806243 20 15.001234 Anserini +test3221 Q0 5394403 21 14.953707 Anserini +test3221 Q0 5808956 22 14.952296 Anserini +test3221 Q0 6607396 23 14.916013 Anserini +test3221 Q0 3175362 24 14.910542 Anserini +test3221 Q0 2458587 25 14.896332 Anserini +test3221 Q0 4789641 26 14.893545 Anserini +test3221 Q0 5205010 27 14.891659 Anserini +test3221 Q0 5640390 28 14.878032 Anserini +test3221 Q0 6306745 29 14.841219 Anserini +test3221 Q0 6306738 30 14.841219 Anserini +test3222 Q0 17083894 1 15.151876 Anserini +test3222 Q0 14600782 2 14.759110 Anserini +test3222 Q0 17367082 3 13.998026 Anserini +test3222 Q0 13708064 4 13.874232 Anserini +test3222 Q0 5625804 5 13.874232 Anserini +test3222 Q0 5625790 6 13.865879 Anserini +test3222 Q0 777454 7 13.785254 Anserini +test3222 Q0 10158224 8 13.743455 Anserini +test3222 Q0 10628453 9 13.671333 Anserini +test3222 Q0 8632896 10 13.555116 Anserini +test3222 Q0 777499 11 13.525755 Anserini +test3222 Q0 8632871 12 13.462875 Anserini +test3222 Q0 17491841 13 13.317490 Anserini +test3222 Q0 777448 14 13.266384 Anserini +test3222 Q0 14600757 15 13.245878 Anserini +test3222 Q0 17083899 16 13.188839 Anserini +test3222 Q0 19672291 17 13.079879 Anserini +test3222 Q0 5625792 18 12.998716 Anserini +test3222 Q0 10030567 19 12.990019 Anserini +test3222 Q0 13350796 20 12.941311 Anserini +test3222 Q0 9968580 21 12.931655 Anserini +test3222 Q0 777469 22 12.909857 Anserini +test3222 Q0 8893280 23 12.832232 Anserini +test3222 Q0 8632884 24 12.832023 Anserini +test3222 Q0 10158228 25 12.825371 Anserini +test3222 Q0 777497 26 12.816538 Anserini +test3222 Q0 8080726 27 12.799768 Anserini +test3222 Q0 777506 28 12.774796 Anserini +test3222 Q0 11793870 29 12.758215 Anserini +test3222 Q0 8893303 30 12.752684 Anserini +test3223 Q0 832813 1 15.392347 Anserini +test3223 Q0 19277028 2 15.369418 Anserini +test3223 Q0 17684613 3 14.491863 Anserini +test3223 Q0 7567828 4 14.132974 Anserini +test3223 Q0 7567836 5 14.069456 Anserini +test3223 Q0 15146178 6 13.626417 Anserini +test3223 Q0 3965513 7 13.461767 Anserini +test3223 Q0 15146168 8 13.446820 Anserini +test3223 Q0 17684623 9 13.287082 Anserini +test3223 Q0 4755031 10 13.217653 Anserini +test3223 Q0 4755032 11 13.178607 Anserini +test3223 Q0 17684620 12 13.178607 Anserini +test3223 Q0 121494 13 13.003230 Anserini +test3223 Q0 246434 14 12.606206 Anserini +test3223 Q0 832838 15 12.546980 Anserini +test3223 Q0 17937521 16 12.482300 Anserini +test3223 Q0 4755030 17 12.482300 Anserini +test3223 Q0 18385486 18 12.482300 Anserini +test3223 Q0 15146179 19 12.482300 Anserini +test3223 Q0 17937516 20 12.482300 Anserini +test3223 Q0 17788886 21 12.379892 Anserini +test3223 Q0 17937523 22 12.354919 Anserini +test3223 Q0 12416306 23 12.341504 Anserini +test3223 Q0 4999214 24 12.292529 Anserini +test3223 Q0 17684619 25 12.175446 Anserini +test3223 Q0 832829 26 12.087969 Anserini +test3223 Q0 4112777 27 12.050568 Anserini +test3223 Q0 10190422 28 12.014292 Anserini +test3223 Q0 82130 29 12.009249 Anserini +test3223 Q0 7567829 30 12.001764 Anserini +test3224 Q0 8037431 1 11.930759 Anserini +test3224 Q0 13979547 2 11.506853 Anserini +test3224 Q0 11407760 3 11.108574 Anserini +test3224 Q0 8610181 4 10.953012 Anserini +test3224 Q0 7974329 5 10.363992 Anserini +test3224 Q0 1408957 6 10.356670 Anserini +test3224 Q0 8037424 7 10.235274 Anserini +test3224 Q0 8037420 8 10.171534 Anserini +test3224 Q0 3682006 9 10.094975 Anserini +test3224 Q0 11067933 10 10.089585 Anserini +test3224 Q0 2061628 11 9.986093 Anserini +test3224 Q0 13293202 12 9.967648 Anserini +test3224 Q0 1309345 13 9.906792 Anserini +test3224 Q0 17218543 14 9.867628 Anserini +test3224 Q0 2845089 15 9.842582 Anserini +test3224 Q0 13037733 16 9.807913 Anserini +test3224 Q0 20170766 17 9.765081 Anserini +test3224 Q0 15069706 18 9.748996 Anserini +test3224 Q0 10787527 19 9.742119 Anserini +test3224 Q0 2849287 20 9.704174 Anserini +test3224 Q0 19824104 21 9.682363 Anserini +test3224 Q0 1759318 22 9.666346 Anserini +test3224 Q0 13800892 23 9.631713 Anserini +test3224 Q0 7974330 24 9.609723 Anserini +test3224 Q0 20921417 25 9.607356 Anserini +test3224 Q0 19164997 26 9.561461 Anserini +test3224 Q0 8037430 27 9.555401 Anserini +test3224 Q0 15209492 28 9.555116 Anserini +test3224 Q0 8037423 29 9.547333 Anserini +test3224 Q0 18112630 30 9.511883 Anserini +test3225 Q0 13087989 1 10.737162 Anserini +test3225 Q0 2903 2 10.250862 Anserini +test3225 Q0 9949026 3 10.054928 Anserini +test3225 Q0 6942521 4 9.988880 Anserini +test3225 Q0 14340981 5 9.970358 Anserini +test3225 Q0 685026 6 9.880957 Anserini +test3225 Q0 6556636 7 9.670877 Anserini +test3225 Q0 1808821 8 9.621966 Anserini +test3225 Q0 14797452 9 9.598435 Anserini +test3225 Q0 568895 10 9.547696 Anserini +test3225 Q0 3198963 11 9.473480 Anserini +test3225 Q0 6841895 12 9.467443 Anserini +test3225 Q0 5346138 13 9.449130 Anserini +test3225 Q0 3198975 14 9.417730 Anserini +test3225 Q0 14311185 15 9.379372 Anserini +test3225 Q0 5239117 16 9.362701 Anserini +test3225 Q0 685029 17 9.344197 Anserini +test3225 Q0 2129165 18 9.333570 Anserini +test3225 Q0 2263624 19 9.295903 Anserini +test3225 Q0 10267658 20 9.251579 Anserini +test3225 Q0 4108034 21 9.250341 Anserini +test3225 Q0 685037 22 9.241143 Anserini +test3225 Q0 11419179 23 9.239334 Anserini +test3225 Q0 178013 24 9.228856 Anserini +test3225 Q0 3719196 25 9.228856 Anserini +test3225 Q0 10464509 26 9.223327 Anserini +test3225 Q0 20950631 27 9.215158 Anserini +test3225 Q0 2326884 28 9.204485 Anserini +test3225 Q0 17614264 29 9.181380 Anserini +test3225 Q0 12456343 30 9.168066 Anserini +test3226 Q0 13491368 1 15.808352 Anserini +test3226 Q0 13491366 2 15.481354 Anserini +test3226 Q0 16829344 3 15.301285 Anserini +test3226 Q0 196982 4 13.674165 Anserini +test3226 Q0 1402653 5 13.639140 Anserini +test3226 Q0 11513783 6 13.613438 Anserini +test3226 Q0 197009 7 13.363502 Anserini +test3226 Q0 1294716 8 13.314692 Anserini +test3226 Q0 8293680 9 13.241274 Anserini +test3226 Q0 8293681 10 13.138849 Anserini +test3226 Q0 1294717 11 13.091116 Anserini +test3226 Q0 5429420 12 12.977220 Anserini +test3226 Q0 19750938 13 12.835773 Anserini +test3226 Q0 11513784 14 12.623249 Anserini +test3226 Q0 1294718 15 12.496372 Anserini +test3226 Q0 18772917 16 12.445415 Anserini +test3226 Q0 6541668 17 12.404644 Anserini +test3226 Q0 156879 18 12.148710 Anserini +test3226 Q0 9790465 19 12.117432 Anserini +test3226 Q0 12685 20 11.997798 Anserini +test3226 Q0 7890934 21 11.926627 Anserini +test3226 Q0 156921 22 11.890207 Anserini +test3226 Q0 8053467 23 11.888700 Anserini +test3226 Q0 196986 24 11.752600 Anserini +test3226 Q0 196996 25 11.720013 Anserini +test3226 Q0 9790462 26 11.576684 Anserini +test3226 Q0 15066422 27 11.538092 Anserini +test3226 Q0 15066419 28 11.469025 Anserini +test3226 Q0 2284118 29 11.418706 Anserini +test3226 Q0 61348 30 11.311605 Anserini +test3227 Q0 21001794 1 17.326506 Anserini +test3227 Q0 376222 2 17.184614 Anserini +test3227 Q0 10395345 3 16.912445 Anserini +test3227 Q0 4458972 4 16.188698 Anserini +test3227 Q0 126404 5 16.111977 Anserini +test3227 Q0 49612 6 15.862951 Anserini +test3227 Q0 6089298 7 15.831182 Anserini +test3227 Q0 19884226 8 15.589749 Anserini +test3227 Q0 12662738 9 15.571438 Anserini +test3227 Q0 5489724 10 15.552422 Anserini +test3227 Q0 79159 11 15.403679 Anserini +test3227 Q0 79041 12 15.403679 Anserini +test3227 Q0 15685072 13 15.024685 Anserini +test3227 Q0 19173839 14 14.983811 Anserini +test3227 Q0 376226 15 14.677661 Anserini +test3227 Q0 4997995 16 14.668253 Anserini +test3227 Q0 12375473 17 14.614916 Anserini +test3227 Q0 4489760 18 14.423147 Anserini +test3227 Q0 331481 19 14.416281 Anserini +test3227 Q0 1594334 20 14.386842 Anserini +test3227 Q0 378777 21 14.379259 Anserini +test3227 Q0 30378 22 14.376035 Anserini +test3227 Q0 6089296 23 14.041212 Anserini +test3227 Q0 322606 24 13.896184 Anserini +test3227 Q0 5345795 25 13.773266 Anserini +test3227 Q0 7145812 26 13.714787 Anserini +test3227 Q0 6561774 27 13.708340 Anserini +test3227 Q0 8639967 28 13.668081 Anserini +test3227 Q0 6089299 29 13.655766 Anserini +test3227 Q0 7877856 30 13.629500 Anserini +test3228 Q0 505432 1 16.143303 Anserini +test3228 Q0 12258463 2 15.357663 Anserini +test3228 Q0 19905103 3 15.243768 Anserini +test3228 Q0 17542241 4 15.172984 Anserini +test3228 Q0 12658551 5 15.164242 Anserini +test3228 Q0 5066197 6 14.883629 Anserini +test3228 Q0 4420237 7 14.726883 Anserini +test3228 Q0 18925806 8 14.682039 Anserini +test3228 Q0 12410315 9 14.628168 Anserini +test3228 Q0 8637587 10 14.622400 Anserini +test3228 Q0 13021453 11 14.516242 Anserini +test3228 Q0 18617431 12 14.427308 Anserini +test3228 Q0 11571989 13 14.217728 Anserini +test3228 Q0 7939318 14 14.156487 Anserini +test3228 Q0 2428173 15 14.131188 Anserini +test3228 Q0 19479277 16 14.119312 Anserini +test3228 Q0 18403195 17 14.111334 Anserini +test3228 Q0 18871092 18 14.070748 Anserini +test3228 Q0 20267094 19 13.955122 Anserini +test3228 Q0 14215120 20 13.944139 Anserini +test3228 Q0 18871095 21 13.910019 Anserini +test3228 Q0 4302461 22 13.886798 Anserini +test3228 Q0 4302431 23 13.875273 Anserini +test3228 Q0 18837809 24 13.866080 Anserini +test3228 Q0 876792 25 13.857377 Anserini +test3228 Q0 504310 26 13.855847 Anserini +test3228 Q0 3154535 27 13.847204 Anserini +test3228 Q0 16904102 28 13.830087 Anserini +test3228 Q0 512279 29 13.804079 Anserini +test3228 Q0 11917414 30 13.742154 Anserini +test3229 Q0 1294205 1 12.006856 Anserini +test3229 Q0 15685073 2 11.964836 Anserini +test3229 Q0 15685068 3 11.964836 Anserini +test3229 Q0 20344334 4 11.633623 Anserini +test3229 Q0 4892486 5 11.558933 Anserini +test3229 Q0 14483520 6 11.489008 Anserini +test3229 Q0 6532878 7 11.398558 Anserini +test3229 Q0 13764712 8 11.307498 Anserini +test3229 Q0 4892501 9 11.243927 Anserini +test3229 Q0 4892479 10 11.223926 Anserini +test3229 Q0 12425070 11 11.092576 Anserini +test3229 Q0 6239110 12 11.049242 Anserini +test3229 Q0 4892493 13 10.867103 Anserini +test3229 Q0 14483511 14 10.768212 Anserini +test3229 Q0 12918441 15 10.737576 Anserini +test3229 Q0 19530650 16 10.672582 Anserini +test3229 Q0 17924974 17 10.578709 Anserini +test3229 Q0 8947135 18 10.578709 Anserini +test3229 Q0 1294204 19 10.493006 Anserini +test3229 Q0 9069408 20 10.489313 Anserini +test3229 Q0 15033613 21 10.455376 Anserini +test3229 Q0 15029328 22 10.323992 Anserini +test3229 Q0 1798797 23 10.235749 Anserini +test3229 Q0 9069405 24 10.204915 Anserini +test3229 Q0 9265194 25 10.149947 Anserini +test3229 Q0 19487456 26 10.045046 Anserini +test3229 Q0 18999720 27 10.035013 Anserini +test3229 Q0 3270433 28 9.975014 Anserini +test3229 Q0 10553474 29 9.962708 Anserini +test3229 Q0 20698669 30 9.948095 Anserini +test323 Q0 1268700 1 16.837715 Anserini +test323 Q0 3984995 2 15.557483 Anserini +test323 Q0 1427932 3 15.473638 Anserini +test323 Q0 154744 4 15.429926 Anserini +test323 Q0 16104840 5 15.328405 Anserini +test323 Q0 18434211 6 15.160025 Anserini +test323 Q0 15954397 7 15.119552 Anserini +test323 Q0 8631556 8 14.983877 Anserini +test323 Q0 1427902 9 14.949267 Anserini +test323 Q0 5068308 10 14.913502 Anserini +test323 Q0 4399968 11 14.706675 Anserini +test323 Q0 9485313 12 14.664927 Anserini +test323 Q0 14600651 13 14.479910 Anserini +test323 Q0 154743 14 14.477938 Anserini +test323 Q0 6218562 15 14.174525 Anserini +test323 Q0 19163222 16 14.142404 Anserini +test323 Q0 5068337 17 14.125420 Anserini +test323 Q0 14555904 18 14.122849 Anserini +test323 Q0 2654136 19 14.112212 Anserini +test323 Q0 154788 20 14.060800 Anserini +test323 Q0 7024668 21 14.017159 Anserini +test323 Q0 8359876 22 13.967873 Anserini +test323 Q0 8359877 23 13.939444 Anserini +test323 Q0 1427900 24 13.921484 Anserini +test323 Q0 1427908 25 13.895989 Anserini +test323 Q0 18434209 26 13.861411 Anserini +test323 Q0 4399981 27 13.831198 Anserini +test323 Q0 12465484 28 13.710358 Anserini +test323 Q0 11414859 29 13.566272 Anserini +test323 Q0 1427890 30 13.535807 Anserini +test3230 Q0 8935325 1 19.615038 Anserini +test3230 Q0 8935302 2 19.102985 Anserini +test3230 Q0 6012906 3 18.151129 Anserini +test3230 Q0 16974063 4 17.229836 Anserini +test3230 Q0 10381024 5 16.893400 Anserini +test3230 Q0 16215417 6 16.712503 Anserini +test3230 Q0 10381021 7 16.681023 Anserini +test3230 Q0 18490310 8 16.558077 Anserini +test3230 Q0 8146452 9 16.427540 Anserini +test3230 Q0 10380997 10 15.959613 Anserini +test3230 Q0 16372934 11 15.906637 Anserini +test3230 Q0 12743225 12 15.756027 Anserini +test3230 Q0 5675897 13 15.734560 Anserini +test3230 Q0 14821706 14 15.538857 Anserini +test3230 Q0 10380979 15 15.298029 Anserini +test3230 Q0 12946522 16 15.229055 Anserini +test3230 Q0 9184097 17 15.150750 Anserini +test3230 Q0 19939243 18 14.861677 Anserini +test3230 Q0 6145314 19 14.790134 Anserini +test3230 Q0 17095013 20 14.770840 Anserini +test3230 Q0 16974080 21 14.770840 Anserini +test3230 Q0 16373018 22 14.724942 Anserini +test3230 Q0 8146462 23 14.664646 Anserini +test3230 Q0 8116030 24 14.640638 Anserini +test3230 Q0 16373068 25 14.590784 Anserini +test3230 Q0 16347452 26 14.530228 Anserini +test3230 Q0 16974077 27 14.530228 Anserini +test3230 Q0 19827994 28 14.323136 Anserini +test3230 Q0 14819020 29 14.291949 Anserini +test3230 Q0 16367499 30 14.050423 Anserini +test3231 Q0 2850405 1 16.390091 Anserini +test3231 Q0 9644968 2 12.546887 Anserini +test3231 Q0 9644952 3 12.323600 Anserini +test3231 Q0 6367410 4 12.111294 Anserini +test3231 Q0 20803286 5 12.023975 Anserini +test3231 Q0 5311214 6 11.948231 Anserini +test3231 Q0 11592239 7 11.919180 Anserini +test3231 Q0 7111311 8 11.543389 Anserini +test3231 Q0 69219 9 11.502796 Anserini +test3231 Q0 15947693 10 11.499427 Anserini +test3231 Q0 7023577 11 11.477035 Anserini +test3231 Q0 2368905 12 11.459928 Anserini +test3231 Q0 69246 13 11.449882 Anserini +test3231 Q0 681235 14 11.435021 Anserini +test3231 Q0 5916520 15 11.415420 Anserini +test3231 Q0 5601534 16 11.345295 Anserini +test3231 Q0 2850401 17 11.323122 Anserini +test3231 Q0 1937571 18 11.313201 Anserini +test3231 Q0 13500600 19 11.310801 Anserini +test3231 Q0 5311216 20 11.303861 Anserini +test3231 Q0 7065587 21 11.288784 Anserini +test3231 Q0 37384 22 11.286966 Anserini +test3231 Q0 2021082 23 11.203717 Anserini +test3231 Q0 11592290 24 11.165073 Anserini +test3231 Q0 16948149 25 11.140657 Anserini +test3231 Q0 18052511 26 11.092827 Anserini +test3231 Q0 9644953 27 11.075614 Anserini +test3231 Q0 12848969 28 11.048216 Anserini +test3231 Q0 9170954 29 10.993711 Anserini +test3231 Q0 9959434 30 10.981803 Anserini +test3232 Q0 7802733 1 9.163372 Anserini +test3232 Q0 2998225 2 9.163372 Anserini +test3232 Q0 4057750 3 9.065882 Anserini +test3232 Q0 7249431 4 9.062696 Anserini +test3232 Q0 17215134 5 8.932247 Anserini +test3232 Q0 19702011 6 8.858468 Anserini +test3232 Q0 15268158 7 8.787453 Anserini +test3232 Q0 3474501 8 8.785475 Anserini +test3232 Q0 18319922 9 8.761349 Anserini +test3232 Q0 4752696 10 8.744052 Anserini +test3232 Q0 14650549 11 8.735209 Anserini +test3232 Q0 17595574 12 8.604647 Anserini +test3232 Q0 17371271 13 8.597029 Anserini +test3232 Q0 3976707 14 8.595758 Anserini +test3232 Q0 13975556 15 8.587640 Anserini +test3232 Q0 8793851 16 8.581654 Anserini +test3232 Q0 18100341 17 8.565325 Anserini +test3232 Q0 9197403 18 8.562139 Anserini +test3232 Q0 19941424 19 8.549978 Anserini +test3232 Q0 18416802 20 8.500818 Anserini +test3232 Q0 19344648 21 8.468728 Anserini +test3232 Q0 9492575 22 8.426512 Anserini +test3232 Q0 16325879 23 8.352907 Anserini +test3232 Q0 12022383 24 8.352466 Anserini +test3232 Q0 9881737 25 8.332532 Anserini +test3232 Q0 9492580 26 8.326059 Anserini +test3232 Q0 7605522 27 8.307438 Anserini +test3232 Q0 8747194 28 8.298915 Anserini +test3232 Q0 18318629 29 8.256359 Anserini +test3232 Q0 18221609 30 8.236660 Anserini +test3233 Q0 3694289 1 9.912371 Anserini +test3233 Q0 13963019 2 9.197771 Anserini +test3233 Q0 7536851 3 9.160482 Anserini +test3233 Q0 17483178 4 9.039874 Anserini +test3233 Q0 1143007 5 8.964326 Anserini +test3233 Q0 17188590 6 8.963852 Anserini +test3233 Q0 10269660 7 8.930797 Anserini +test3233 Q0 19004777 8 8.898518 Anserini +test3233 Q0 10800804 9 8.767465 Anserini +test3233 Q0 3147123 10 8.724522 Anserini +test3233 Q0 6579335 11 8.643106 Anserini +test3233 Q0 2871728 12 8.643106 Anserini +test3233 Q0 15720000 13 8.638571 Anserini +test3233 Q0 8443305 14 8.618015 Anserini +test3233 Q0 1763129 15 8.585399 Anserini +test3233 Q0 2422723 16 8.563244 Anserini +test3233 Q0 19134982 17 8.563244 Anserini +test3233 Q0 18362379 18 8.534018 Anserini +test3233 Q0 17010942 19 8.484892 Anserini +test3233 Q0 14219978 20 8.483848 Anserini +test3233 Q0 16609922 21 8.462498 Anserini +test3233 Q0 3760609 22 8.408819 Anserini +test3233 Q0 7164378 23 8.370901 Anserini +test3233 Q0 19085118 24 8.351112 Anserini +test3233 Q0 662242 25 8.342274 Anserini +test3233 Q0 19379774 26 8.316458 Anserini +test3233 Q0 6079302 27 8.299008 Anserini +test3233 Q0 17198797 28 8.294833 Anserini +test3233 Q0 7308807 29 8.287811 Anserini +test3233 Q0 11407013 30 8.287797 Anserini +test3234 Q0 5234018 1 17.479229 Anserini +test3234 Q0 7448445 2 16.487461 Anserini +test3234 Q0 7448456 3 16.487461 Anserini +test3234 Q0 4264945 4 15.173189 Anserini +test3234 Q0 17356484 5 14.969295 Anserini +test3234 Q0 4264955 6 14.348782 Anserini +test3234 Q0 4264959 7 14.314865 Anserini +test3234 Q0 4264957 8 14.210081 Anserini +test3234 Q0 18938975 9 14.083006 Anserini +test3234 Q0 18938958 10 13.817825 Anserini +test3234 Q0 10075641 11 13.759117 Anserini +test3234 Q0 17356464 12 13.730721 Anserini +test3234 Q0 7796212 13 13.712617 Anserini +test3234 Q0 18938970 14 13.710804 Anserini +test3234 Q0 17356459 15 13.603699 Anserini +test3234 Q0 18938969 16 13.561989 Anserini +test3234 Q0 4264951 17 13.447620 Anserini +test3234 Q0 10075645 18 13.409296 Anserini +test3234 Q0 4264946 19 13.393452 Anserini +test3234 Q0 1801705 20 13.352493 Anserini +test3234 Q0 10075643 21 13.352493 Anserini +test3234 Q0 2006203 22 13.296310 Anserini +test3234 Q0 7796074 23 13.162999 Anserini +test3234 Q0 5234037 24 13.007642 Anserini +test3234 Q0 1801687 25 12.863458 Anserini +test3234 Q0 18938961 26 12.863458 Anserini +test3234 Q0 4264958 27 12.816912 Anserini +test3234 Q0 18938967 28 12.801551 Anserini +test3234 Q0 7796081 29 12.787469 Anserini +test3234 Q0 17356474 30 12.787469 Anserini +test3235 Q0 13473063 1 18.440502 Anserini +test3235 Q0 13473064 2 17.284922 Anserini +test3235 Q0 4740613 3 17.216188 Anserini +test3235 Q0 13473067 4 17.214937 Anserini +test3235 Q0 13473061 5 17.076653 Anserini +test3235 Q0 4740611 6 16.742277 Anserini +test3235 Q0 4740616 7 16.742277 Anserini +test3235 Q0 4740615 8 16.485941 Anserini +test3235 Q0 13473062 9 16.141817 Anserini +test3235 Q0 2498077 10 16.048843 Anserini +test3235 Q0 358722 11 15.822017 Anserini +test3235 Q0 561547 12 15.434220 Anserini +test3235 Q0 13473065 13 14.462821 Anserini +test3235 Q0 13969974 14 14.462821 Anserini +test3235 Q0 13473066 15 14.365091 Anserini +test3235 Q0 666620 16 14.237365 Anserini +test3235 Q0 3998515 17 14.030890 Anserini +test3235 Q0 4740612 18 13.757465 Anserini +test3235 Q0 4740614 19 13.579484 Anserini +test3235 Q0 12223384 20 13.300772 Anserini +test3235 Q0 16407319 21 12.388885 Anserini +test3235 Q0 2498078 22 12.254704 Anserini +test3235 Q0 7058276 23 12.142447 Anserini +test3235 Q0 13473056 24 12.068530 Anserini +test3235 Q0 561546 25 11.554509 Anserini +test3235 Q0 7080076 26 11.308651 Anserini +test3235 Q0 339427 27 11.308651 Anserini +test3235 Q0 13969977 28 11.236573 Anserini +test3235 Q0 13299389 29 11.189605 Anserini +test3235 Q0 2498075 30 11.131038 Anserini +test3236 Q0 576056 1 16.453680 Anserini +test3236 Q0 7527545 2 15.957554 Anserini +test3236 Q0 576048 3 15.649134 Anserini +test3236 Q0 19423546 4 15.578223 Anserini +test3236 Q0 12794197 5 14.692113 Anserini +test3236 Q0 19959859 6 14.348499 Anserini +test3236 Q0 10495262 7 14.315942 Anserini +test3236 Q0 19673624 8 14.127043 Anserini +test3236 Q0 7836965 9 13.831611 Anserini +test3236 Q0 576053 10 13.550931 Anserini +test3236 Q0 10369887 11 13.257993 Anserini +test3236 Q0 576055 12 13.207322 Anserini +test3236 Q0 12794200 13 13.152176 Anserini +test3236 Q0 7527544 14 13.109878 Anserini +test3236 Q0 7566937 15 13.097254 Anserini +test3236 Q0 7527547 16 13.005422 Anserini +test3236 Q0 9986415 17 12.995376 Anserini +test3236 Q0 19438101 18 12.924653 Anserini +test3236 Q0 10369885 19 12.920834 Anserini +test3236 Q0 7566941 20 12.897041 Anserini +test3236 Q0 10495261 21 12.896094 Anserini +test3236 Q0 11775142 22 12.847233 Anserini +test3236 Q0 12794190 23 12.796518 Anserini +test3236 Q0 11775144 24 12.790613 Anserini +test3236 Q0 16112019 25 12.783963 Anserini +test3236 Q0 2140453 26 12.774836 Anserini +test3236 Q0 6657475 27 12.763247 Anserini +test3236 Q0 18000736 28 12.726004 Anserini +test3236 Q0 19438102 29 12.548547 Anserini +test3236 Q0 7527552 30 12.529630 Anserini +test3237 Q0 2622046 1 11.695150 Anserini +test3237 Q0 10226027 2 10.689095 Anserini +test3237 Q0 858220 3 10.479233 Anserini +test3237 Q0 7687116 4 10.357042 Anserini +test3237 Q0 4564551 5 10.146040 Anserini +test3237 Q0 481766 6 10.139997 Anserini +test3237 Q0 77148 7 10.014298 Anserini +test3237 Q0 633230 8 9.981546 Anserini +test3237 Q0 11270671 9 9.911452 Anserini +test3237 Q0 2622047 10 9.794330 Anserini +test3237 Q0 8000130 11 9.666340 Anserini +test3237 Q0 7418239 12 9.490519 Anserini +test3237 Q0 7947620 13 9.426298 Anserini +test3237 Q0 3219304 14 9.317480 Anserini +test3237 Q0 3587134 15 9.313814 Anserini +test3237 Q0 2236995 16 9.297686 Anserini +test3237 Q0 9559271 17 9.238777 Anserini +test3237 Q0 15306890 18 9.234056 Anserini +test3237 Q0 6501079 19 9.233090 Anserini +test3237 Q0 6438106 20 9.204568 Anserini +test3237 Q0 11973933 21 9.196794 Anserini +test3237 Q0 925033 22 9.122419 Anserini +test3237 Q0 481745 23 9.095932 Anserini +test3237 Q0 7418237 24 9.044342 Anserini +test3237 Q0 2519163 25 9.035890 Anserini +test3237 Q0 3439422 26 8.959526 Anserini +test3237 Q0 6959021 27 8.959526 Anserini +test3237 Q0 17070947 28 8.905718 Anserini +test3237 Q0 1870072 29 8.905718 Anserini +test3237 Q0 10705733 30 8.893948 Anserini +test3238 Q0 20463231 1 16.675278 Anserini +test3238 Q0 17034222 2 14.693255 Anserini +test3238 Q0 19125148 3 14.517458 Anserini +test3238 Q0 7441216 4 14.050138 Anserini +test3238 Q0 19125143 5 13.994494 Anserini +test3238 Q0 20358825 6 13.673659 Anserini +test3238 Q0 20510378 7 13.538467 Anserini +test3238 Q0 19125120 8 13.473768 Anserini +test3238 Q0 4486899 9 13.461802 Anserini +test3238 Q0 11892880 10 13.381917 Anserini +test3238 Q0 7058250 11 13.363097 Anserini +test3238 Q0 20362443 12 13.346881 Anserini +test3238 Q0 19125095 13 13.336936 Anserini +test3238 Q0 19125159 14 13.140318 Anserini +test3238 Q0 9960863 15 13.132130 Anserini +test3238 Q0 3976154 16 13.055097 Anserini +test3238 Q0 713390 17 13.028349 Anserini +test3238 Q0 9674056 18 12.988747 Anserini +test3238 Q0 11892922 19 12.984080 Anserini +test3238 Q0 17212460 20 12.778521 Anserini +test3238 Q0 7058290 21 12.755528 Anserini +test3238 Q0 20362438 22 12.684954 Anserini +test3238 Q0 19125098 23 12.667716 Anserini +test3238 Q0 20362513 24 12.664268 Anserini +test3238 Q0 17031091 25 12.622321 Anserini +test3238 Q0 19125114 26 12.601914 Anserini +test3238 Q0 19125099 27 12.554533 Anserini +test3238 Q0 358710 28 12.533910 Anserini +test3238 Q0 358732 29 12.533910 Anserini +test3238 Q0 8571640 30 12.441908 Anserini +test3239 Q0 10169082 1 10.052462 Anserini +test3239 Q0 5929800 2 8.833189 Anserini +test3239 Q0 8130284 3 8.688705 Anserini +test3239 Q0 15823973 4 8.669429 Anserini +test3239 Q0 17523771 5 8.589774 Anserini +test3239 Q0 15474529 6 8.460199 Anserini +test3239 Q0 18756440 7 8.432719 Anserini +test3239 Q0 16663592 8 8.385027 Anserini +test3239 Q0 9341735 9 8.370819 Anserini +test3239 Q0 8130279 10 8.352263 Anserini +test3239 Q0 15928581 11 8.331428 Anserini +test3239 Q0 8635261 12 8.305338 Anserini +test3239 Q0 16451518 13 8.275749 Anserini +test3239 Q0 3636409 14 8.255705 Anserini +test3239 Q0 18756442 15 8.249151 Anserini +test3239 Q0 5784868 16 8.241837 Anserini +test3239 Q0 9633514 17 8.232834 Anserini +test3239 Q0 12936932 18 8.204525 Anserini +test3239 Q0 6980152 19 8.200905 Anserini +test3239 Q0 16451527 20 8.183547 Anserini +test3239 Q0 13502882 21 8.154150 Anserini +test3239 Q0 1604545 22 8.120383 Anserini +test3239 Q0 9868503 23 8.114656 Anserini +test3239 Q0 8609286 24 8.091040 Anserini +test3239 Q0 9982433 25 8.077362 Anserini +test3239 Q0 12056139 26 8.053626 Anserini +test3239 Q0 5504234 27 8.039738 Anserini +test3239 Q0 2901021 28 8.020231 Anserini +test3239 Q0 17592233 29 8.009548 Anserini +test3239 Q0 159861 30 7.956980 Anserini +test324 Q0 16835378 1 14.310354 Anserini +test324 Q0 19726574 2 14.165487 Anserini +test324 Q0 2637404 3 14.160965 Anserini +test324 Q0 8079825 4 14.120369 Anserini +test324 Q0 11309914 5 14.104650 Anserini +test324 Q0 5787117 6 13.730473 Anserini +test324 Q0 14465326 7 13.595750 Anserini +test324 Q0 18768278 8 13.546473 Anserini +test324 Q0 6511452 9 13.545380 Anserini +test324 Q0 15294534 10 13.416977 Anserini +test324 Q0 14049529 11 13.368664 Anserini +test324 Q0 4951075 12 13.308561 Anserini +test324 Q0 16844828 13 13.178633 Anserini +test324 Q0 13186651 14 13.110682 Anserini +test324 Q0 920900 15 12.994289 Anserini +test324 Q0 16796156 16 12.972185 Anserini +test324 Q0 1660064 17 12.931426 Anserini +test324 Q0 11946157 18 12.890710 Anserini +test324 Q0 16405713 19 12.890527 Anserini +test324 Q0 13318889 20 12.885799 Anserini +test324 Q0 12272710 21 12.869319 Anserini +test324 Q0 14716143 22 12.808938 Anserini +test324 Q0 16048500 23 12.738523 Anserini +test324 Q0 16155174 24 12.736458 Anserini +test324 Q0 1427464 25 12.714504 Anserini +test324 Q0 13177088 26 12.679705 Anserini +test324 Q0 20378824 27 12.648741 Anserini +test324 Q0 4645042 28 12.607615 Anserini +test324 Q0 14084719 29 12.594520 Anserini +test324 Q0 1486348 30 12.586569 Anserini +test3240 Q0 3346573 1 16.354946 Anserini +test3240 Q0 3586406 2 16.229988 Anserini +test3240 Q0 4825487 3 15.824841 Anserini +test3240 Q0 11521101 4 15.530085 Anserini +test3240 Q0 3374636 5 15.501636 Anserini +test3240 Q0 679361 6 15.055333 Anserini +test3240 Q0 2627394 7 14.919304 Anserini +test3240 Q0 1501167 8 14.890007 Anserini +test3240 Q0 6996332 9 14.876608 Anserini +test3240 Q0 13834358 10 14.822680 Anserini +test3240 Q0 3586176 11 14.807384 Anserini +test3240 Q0 4338929 12 14.760657 Anserini +test3240 Q0 18731346 13 14.670730 Anserini +test3240 Q0 13954105 14 14.665815 Anserini +test3240 Q0 6196520 15 14.645460 Anserini +test3240 Q0 6996312 16 14.622448 Anserini +test3240 Q0 16920564 17 14.617762 Anserini +test3240 Q0 2432726 18 14.583511 Anserini +test3240 Q0 7350028 19 14.566658 Anserini +test3240 Q0 6392290 20 14.548376 Anserini +test3240 Q0 5327651 21 14.535032 Anserini +test3240 Q0 9628993 22 14.510834 Anserini +test3240 Q0 3586431 23 14.482718 Anserini +test3240 Q0 5437290 24 14.417999 Anserini +test3240 Q0 4825488 25 14.413458 Anserini +test3240 Q0 6035563 26 14.410277 Anserini +test3240 Q0 17157096 27 14.396967 Anserini +test3240 Q0 10190941 28 14.388132 Anserini +test3240 Q0 17330485 29 14.382360 Anserini +test3240 Q0 6395626 30 14.336287 Anserini +test3241 Q0 9862360 1 19.150917 Anserini +test3241 Q0 9862429 2 19.150917 Anserini +test3241 Q0 106581 3 18.402847 Anserini +test3241 Q0 106544 4 17.563391 Anserini +test3241 Q0 2737339 5 17.119862 Anserini +test3241 Q0 106565 6 16.708508 Anserini +test3241 Q0 376054 7 16.666512 Anserini +test3241 Q0 2722709 8 16.529257 Anserini +test3241 Q0 18084489 9 16.443003 Anserini +test3241 Q0 9862424 10 16.428263 Anserini +test3241 Q0 6468829 11 16.397144 Anserini +test3241 Q0 376018 12 16.388704 Anserini +test3241 Q0 394948 13 16.296995 Anserini +test3241 Q0 385680 14 16.208565 Anserini +test3241 Q0 394491 15 16.034164 Anserini +test3241 Q0 394362 16 16.023567 Anserini +test3241 Q0 12100237 17 15.932267 Anserini +test3241 Q0 16977266 18 15.932267 Anserini +test3241 Q0 7767518 19 15.910519 Anserini +test3241 Q0 6283082 20 15.863424 Anserini +test3241 Q0 6471467 21 15.845121 Anserini +test3241 Q0 394931 22 15.834661 Anserini +test3241 Q0 7167363 23 15.809319 Anserini +test3241 Q0 5735503 24 15.806020 Anserini +test3241 Q0 18388766 25 15.785263 Anserini +test3241 Q0 106553 26 15.765546 Anserini +test3241 Q0 6995703 27 15.716465 Anserini +test3241 Q0 394936 28 15.671125 Anserini +test3241 Q0 18084529 29 15.652128 Anserini +test3241 Q0 394404 30 15.637342 Anserini +test3242 Q0 9175212 1 20.069641 Anserini +test3242 Q0 9175186 2 19.943062 Anserini +test3242 Q0 8246226 3 19.594112 Anserini +test3242 Q0 13187218 4 19.227428 Anserini +test3242 Q0 16802293 5 19.119944 Anserini +test3242 Q0 15864606 6 18.995544 Anserini +test3242 Q0 9175203 7 18.969418 Anserini +test3242 Q0 9175195 8 18.650509 Anserini +test3242 Q0 8246235 9 18.238510 Anserini +test3242 Q0 9175206 10 18.187973 Anserini +test3242 Q0 9175209 11 18.182856 Anserini +test3242 Q0 2572621 12 17.791515 Anserini +test3242 Q0 12883367 13 17.610907 Anserini +test3242 Q0 7659824 14 17.572374 Anserini +test3242 Q0 9175207 15 17.447052 Anserini +test3242 Q0 7659836 16 17.421360 Anserini +test3242 Q0 8246234 17 17.343763 Anserini +test3242 Q0 6395548 18 17.139946 Anserini +test3242 Q0 5519768 19 17.000481 Anserini +test3242 Q0 14276111 20 16.742144 Anserini +test3242 Q0 14276110 21 16.540644 Anserini +test3242 Q0 2572637 22 16.480930 Anserini +test3242 Q0 9175211 23 16.465286 Anserini +test3242 Q0 13084862 24 16.351725 Anserini +test3242 Q0 9175201 25 16.351725 Anserini +test3242 Q0 9175205 26 16.239717 Anserini +test3242 Q0 12155667 27 16.239717 Anserini +test3242 Q0 554676 28 16.219704 Anserini +test3242 Q0 12883368 29 16.130188 Anserini +test3242 Q0 11679916 30 16.129234 Anserini +test3243 Q0 1767208 1 13.255805 Anserini +test3243 Q0 1767191 2 12.650462 Anserini +test3243 Q0 13489601 3 12.425488 Anserini +test3243 Q0 1767209 4 11.552066 Anserini +test3243 Q0 9449147 5 10.685524 Anserini +test3243 Q0 16268563 6 10.635763 Anserini +test3243 Q0 6804759 7 10.580503 Anserini +test3243 Q0 1767213 8 10.527231 Anserini +test3243 Q0 1742509 9 10.494346 Anserini +test3243 Q0 1767190 10 10.450023 Anserini +test3243 Q0 1742496 11 10.421613 Anserini +test3243 Q0 19811921 12 10.283315 Anserini +test3243 Q0 1767218 13 10.267441 Anserini +test3243 Q0 15948511 14 10.254206 Anserini +test3243 Q0 15948513 15 10.254206 Anserini +test3243 Q0 13489600 16 10.165894 Anserini +test3243 Q0 10517187 17 10.147377 Anserini +test3243 Q0 10146610 18 10.087824 Anserini +test3243 Q0 1767192 19 10.027015 Anserini +test3243 Q0 18227116 20 9.855353 Anserini +test3243 Q0 18227108 21 9.855353 Anserini +test3243 Q0 19214893 22 9.854382 Anserini +test3243 Q0 18306010 23 9.854382 Anserini +test3243 Q0 1767193 24 9.832703 Anserini +test3243 Q0 10146609 25 9.744221 Anserini +test3243 Q0 19135912 26 9.727207 Anserini +test3243 Q0 7473299 27 9.704540 Anserini +test3243 Q0 2800910 28 9.699242 Anserini +test3243 Q0 19214894 29 9.651831 Anserini +test3243 Q0 18306012 30 9.651831 Anserini +test3244 Q0 9686511 1 11.781588 Anserini +test3244 Q0 12858573 2 11.474424 Anserini +test3244 Q0 12858572 3 10.870112 Anserini +test3244 Q0 11690799 4 10.417926 Anserini +test3244 Q0 10184851 5 10.254488 Anserini +test3244 Q0 8909024 6 10.226666 Anserini +test3244 Q0 5488426 7 10.189878 Anserini +test3244 Q0 10350571 8 10.158588 Anserini +test3244 Q0 6984636 9 10.152977 Anserini +test3244 Q0 19897271 10 10.085764 Anserini +test3244 Q0 429354 11 10.014755 Anserini +test3244 Q0 9686508 12 10.013083 Anserini +test3244 Q0 12765781 13 9.996532 Anserini +test3244 Q0 8370693 14 9.976236 Anserini +test3244 Q0 12541242 15 9.918850 Anserini +test3244 Q0 12870737 16 9.910427 Anserini +test3244 Q0 12541246 17 9.887853 Anserini +test3244 Q0 9656311 18 9.874644 Anserini +test3244 Q0 754789 19 9.849389 Anserini +test3244 Q0 19470568 20 9.833905 Anserini +test3244 Q0 16001830 21 9.807419 Anserini +test3244 Q0 10555934 22 9.775335 Anserini +test3244 Q0 6682188 23 9.762684 Anserini +test3244 Q0 429344 24 9.723667 Anserini +test3244 Q0 15431650 25 9.704838 Anserini +test3244 Q0 12541243 26 9.699594 Anserini +test3244 Q0 8855731 27 9.697044 Anserini +test3244 Q0 12762984 28 9.622997 Anserini +test3244 Q0 18318629 29 9.586714 Anserini +test3244 Q0 19361043 30 9.555714 Anserini +test3245 Q0 4421835 1 15.488144 Anserini +test3245 Q0 4421840 2 14.804714 Anserini +test3245 Q0 11438282 3 14.583573 Anserini +test3245 Q0 3901608 4 14.406889 Anserini +test3245 Q0 4421842 5 14.398720 Anserini +test3245 Q0 3231696 6 14.362963 Anserini +test3245 Q0 5348191 7 14.345117 Anserini +test3245 Q0 18231884 8 14.287667 Anserini +test3245 Q0 1751855 9 14.218403 Anserini +test3245 Q0 11186780 10 14.185960 Anserini +test3245 Q0 335634 11 14.144184 Anserini +test3245 Q0 2055825 12 14.121613 Anserini +test3245 Q0 15954749 13 13.872576 Anserini +test3245 Q0 7082250 14 13.805134 Anserini +test3245 Q0 16598897 15 13.654663 Anserini +test3245 Q0 8870133 16 13.642938 Anserini +test3245 Q0 10349448 17 13.624090 Anserini +test3245 Q0 15304559 18 13.556355 Anserini +test3245 Q0 1359199 19 13.530993 Anserini +test3245 Q0 18267353 20 13.486820 Anserini +test3245 Q0 9777941 21 13.471379 Anserini +test3245 Q0 1813895 22 13.391188 Anserini +test3245 Q0 4258345 23 13.383632 Anserini +test3245 Q0 7747149 24 13.274698 Anserini +test3245 Q0 4582652 25 13.261049 Anserini +test3245 Q0 8032013 26 13.254109 Anserini +test3245 Q0 1270219 27 13.210465 Anserini +test3245 Q0 411726 28 13.196916 Anserini +test3245 Q0 5560629 29 13.125797 Anserini +test3245 Q0 7856908 30 13.124201 Anserini +test3246 Q0 14150814 1 12.334322 Anserini +test3246 Q0 6882286 2 11.653100 Anserini +test3246 Q0 10678123 3 11.300894 Anserini +test3246 Q0 14150800 4 11.169914 Anserini +test3246 Q0 19540374 5 11.119102 Anserini +test3246 Q0 11984211 6 10.709820 Anserini +test3246 Q0 11984205 7 10.659625 Anserini +test3246 Q0 15325701 8 10.632778 Anserini +test3246 Q0 7269969 9 10.630163 Anserini +test3246 Q0 1785256 10 10.561923 Anserini +test3246 Q0 16970538 11 10.523438 Anserini +test3246 Q0 5499603 12 10.498493 Anserini +test3246 Q0 17196291 13 10.489448 Anserini +test3246 Q0 17062414 14 10.451895 Anserini +test3246 Q0 5666406 15 10.447818 Anserini +test3246 Q0 10311442 16 10.445548 Anserini +test3246 Q0 18045153 17 10.423742 Anserini +test3246 Q0 20463066 18 10.404973 Anserini +test3246 Q0 2750550 19 10.348488 Anserini +test3246 Q0 14133713 20 10.328801 Anserini +test3246 Q0 6014833 21 10.306962 Anserini +test3246 Q0 2671534 22 10.296844 Anserini +test3246 Q0 15919479 23 10.287810 Anserini +test3246 Q0 7225528 24 10.245216 Anserini +test3246 Q0 1516016 25 10.213291 Anserini +test3246 Q0 804694 26 10.205935 Anserini +test3246 Q0 16640645 27 10.191719 Anserini +test3246 Q0 10815793 28 10.164425 Anserini +test3246 Q0 4989192 29 10.164425 Anserini +test3246 Q0 18135325 30 10.155693 Anserini +test3247 Q0 14665404 1 30.839458 Anserini +test3247 Q0 9821345 2 30.726774 Anserini +test3247 Q0 9821384 3 30.597971 Anserini +test3247 Q0 14665389 4 30.524584 Anserini +test3247 Q0 9821380 5 30.083498 Anserini +test3247 Q0 7822784 6 29.856926 Anserini +test3247 Q0 9821375 7 29.753767 Anserini +test3247 Q0 15646871 8 29.425634 Anserini +test3247 Q0 14615672 9 29.422594 Anserini +test3247 Q0 9821369 10 29.420534 Anserini +test3247 Q0 9821364 11 29.237429 Anserini +test3247 Q0 1320538 12 29.174788 Anserini +test3247 Q0 15648301 13 29.166828 Anserini +test3247 Q0 9821374 14 28.729963 Anserini +test3247 Q0 13835961 15 28.694372 Anserini +test3247 Q0 14665403 16 28.603662 Anserini +test3247 Q0 9821346 17 28.544893 Anserini +test3247 Q0 15648849 18 28.492496 Anserini +test3247 Q0 9017504 19 27.962147 Anserini +test3247 Q0 3160449 20 27.955769 Anserini +test3247 Q0 19437513 21 27.918621 Anserini +test3247 Q0 5621149 22 27.896585 Anserini +test3247 Q0 15619138 23 27.883539 Anserini +test3247 Q0 15648892 24 27.867643 Anserini +test3247 Q0 558594 25 27.763054 Anserini +test3247 Q0 15648876 26 27.612736 Anserini +test3247 Q0 14615686 27 27.560183 Anserini +test3247 Q0 3501768 28 27.494932 Anserini +test3247 Q0 15648310 29 27.489588 Anserini +test3247 Q0 9879388 30 27.451435 Anserini +test3248 Q0 7112402 1 10.600561 Anserini +test3248 Q0 9275627 2 9.904936 Anserini +test3248 Q0 8954826 3 9.631763 Anserini +test3248 Q0 7112395 4 9.463013 Anserini +test3248 Q0 7112403 5 9.348310 Anserini +test3248 Q0 1508192 6 9.322763 Anserini +test3248 Q0 15984117 7 9.322763 Anserini +test3248 Q0 9275659 8 9.304042 Anserini +test3248 Q0 9275667 9 9.304042 Anserini +test3248 Q0 9527628 10 9.289865 Anserini +test3248 Q0 9275666 11 9.253297 Anserini +test3248 Q0 9275625 12 9.235243 Anserini +test3248 Q0 1712862 13 9.184319 Anserini +test3248 Q0 9275601 14 9.174763 Anserini +test3248 Q0 9275571 15 9.123234 Anserini +test3248 Q0 9275604 16 9.109518 Anserini +test3248 Q0 13908737 17 9.069162 Anserini +test3248 Q0 9131694 18 9.062314 Anserini +test3248 Q0 9275626 19 9.007194 Anserini +test3248 Q0 106494 20 8.975081 Anserini +test3248 Q0 14670670 21 8.910193 Anserini +test3248 Q0 20715709 22 8.842614 Anserini +test3248 Q0 9131686 23 8.825802 Anserini +test3248 Q0 302397 24 8.818631 Anserini +test3248 Q0 9275665 25 8.817194 Anserini +test3248 Q0 5488428 26 8.800974 Anserini +test3248 Q0 10011860 27 8.785730 Anserini +test3248 Q0 11619612 28 8.769583 Anserini +test3248 Q0 8645863 29 8.736472 Anserini +test3248 Q0 16799053 30 8.714148 Anserini +test3249 Q0 20518266 1 19.575562 Anserini +test3249 Q0 20518267 2 18.557653 Anserini +test3249 Q0 20518270 3 18.426199 Anserini +test3249 Q0 9708006 4 18.171375 Anserini +test3249 Q0 16226181 5 17.968805 Anserini +test3249 Q0 20234930 6 17.926367 Anserini +test3249 Q0 10671778 7 17.665920 Anserini +test3249 Q0 19994662 8 17.472055 Anserini +test3249 Q0 20538139 9 17.448919 Anserini +test3249 Q0 20538142 10 17.448919 Anserini +test3249 Q0 20525830 11 17.205114 Anserini +test3249 Q0 19931257 12 17.190460 Anserini +test3249 Q0 20538646 13 17.156591 Anserini +test3249 Q0 14194779 14 17.029865 Anserini +test3249 Q0 16343705 15 16.997158 Anserini +test3249 Q0 17130441 16 16.977024 Anserini +test3249 Q0 14333891 17 16.937538 Anserini +test3249 Q0 20816260 18 16.884476 Anserini +test3249 Q0 18562223 19 16.865671 Anserini +test3249 Q0 9621258 20 16.848021 Anserini +test3249 Q0 20535011 21 16.748949 Anserini +test3249 Q0 20505194 22 16.723276 Anserini +test3249 Q0 10894768 23 16.722042 Anserini +test3249 Q0 18240252 24 16.715504 Anserini +test3249 Q0 20234928 25 16.711782 Anserini +test3249 Q0 19980301 26 16.708534 Anserini +test3249 Q0 20816261 27 16.649384 Anserini +test3249 Q0 20664217 28 16.649199 Anserini +test3249 Q0 20664216 29 16.647272 Anserini +test3249 Q0 20084700 30 16.549179 Anserini +test325 Q0 6915922 1 16.987865 Anserini +test325 Q0 6915924 2 15.531984 Anserini +test325 Q0 6915921 3 15.466689 Anserini +test325 Q0 20071634 4 15.386992 Anserini +test325 Q0 20071645 5 15.012001 Anserini +test325 Q0 20071669 6 14.850870 Anserini +test325 Q0 6916000 7 14.711958 Anserini +test325 Q0 6915915 8 14.704555 Anserini +test325 Q0 6916001 9 14.607280 Anserini +test325 Q0 6915950 10 14.445814 Anserini +test325 Q0 6915944 11 14.392303 Anserini +test325 Q0 7426445 12 14.193143 Anserini +test325 Q0 15407967 13 14.184822 Anserini +test325 Q0 8426531 14 14.144707 Anserini +test325 Q0 6915980 15 13.953884 Anserini +test325 Q0 18553298 16 13.936984 Anserini +test325 Q0 20071649 17 13.894147 Anserini +test325 Q0 20071638 18 13.861000 Anserini +test325 Q0 7898855 19 13.626925 Anserini +test325 Q0 6600351 20 13.608369 Anserini +test325 Q0 6915993 21 13.561885 Anserini +test325 Q0 5282263 22 13.456570 Anserini +test325 Q0 18117775 23 13.411424 Anserini +test325 Q0 20071661 24 13.350171 Anserini +test325 Q0 6915946 25 13.337460 Anserini +test325 Q0 6915917 26 13.328897 Anserini +test325 Q0 20071642 27 13.295033 Anserini +test325 Q0 6915972 28 13.218334 Anserini +test325 Q0 6915920 29 13.218334 Anserini +test325 Q0 6915986 30 13.066880 Anserini +test3250 Q0 8893109 1 13.818170 Anserini +test3250 Q0 95704 2 13.318288 Anserini +test3250 Q0 2237325 3 13.289969 Anserini +test3250 Q0 3278571 4 13.239496 Anserini +test3250 Q0 11840503 5 12.792296 Anserini +test3250 Q0 7010523 6 12.731238 Anserini +test3250 Q0 13729 7 12.680407 Anserini +test3250 Q0 18371178 8 12.625432 Anserini +test3250 Q0 792795 9 12.557339 Anserini +test3250 Q0 792804 10 12.557339 Anserini +test3250 Q0 6861400 11 12.521189 Anserini +test3250 Q0 1153708 12 12.518914 Anserini +test3250 Q0 2765202 13 12.441781 Anserini +test3250 Q0 7454399 14 12.439221 Anserini +test3250 Q0 2549619 15 12.434668 Anserini +test3250 Q0 868812 16 12.373396 Anserini +test3250 Q0 7454401 17 12.320150 Anserini +test3250 Q0 11476855 18 12.296646 Anserini +test3250 Q0 2233078 19 12.288078 Anserini +test3250 Q0 1172367 20 12.283802 Anserini +test3250 Q0 12580409 21 12.266769 Anserini +test3250 Q0 7225295 22 12.266455 Anserini +test3250 Q0 1130116 23 12.147494 Anserini +test3250 Q0 717613 24 12.056782 Anserini +test3250 Q0 717626 25 12.056782 Anserini +test3250 Q0 18552 26 12.021826 Anserini +test3250 Q0 19240720 27 11.958511 Anserini +test3250 Q0 10307208 28 11.930326 Anserini +test3250 Q0 2731845 29 11.917185 Anserini +test3250 Q0 893549 30 11.866007 Anserini +test3251 Q0 19293024 1 19.536673 Anserini +test3251 Q0 19383183 2 16.984493 Anserini +test3251 Q0 2907551 3 16.838646 Anserini +test3251 Q0 3151920 4 16.219219 Anserini +test3251 Q0 19383192 5 15.507148 Anserini +test3251 Q0 19383190 6 15.503837 Anserini +test3251 Q0 2907550 7 15.499899 Anserini +test3251 Q0 20071423 8 15.027188 Anserini +test3251 Q0 19293022 9 14.959967 Anserini +test3251 Q0 2907513 10 14.945379 Anserini +test3251 Q0 2907565 11 14.945379 Anserini +test3251 Q0 19383193 12 14.824277 Anserini +test3251 Q0 19383203 13 14.623528 Anserini +test3251 Q0 4189560 14 14.561472 Anserini +test3251 Q0 19383175 15 14.512932 Anserini +test3251 Q0 19383191 16 14.372360 Anserini +test3251 Q0 19383194 17 14.061557 Anserini +test3251 Q0 5871946 18 13.971588 Anserini +test3251 Q0 3151829 19 13.735165 Anserini +test3251 Q0 20118796 20 13.659323 Anserini +test3251 Q0 3151860 21 13.343870 Anserini +test3251 Q0 13574396 22 13.306786 Anserini +test3251 Q0 4189584 23 13.261015 Anserini +test3251 Q0 840576 24 13.165277 Anserini +test3251 Q0 840564 25 13.155064 Anserini +test3251 Q0 3151852 26 13.109596 Anserini +test3251 Q0 19383202 27 13.098486 Anserini +test3251 Q0 2907521 28 13.050947 Anserini +test3251 Q0 5871948 29 12.933119 Anserini +test3251 Q0 4189555 30 12.903644 Anserini +test3252 Q0 1461816 1 16.487736 Anserini +test3252 Q0 1469710 2 12.347474 Anserini +test3252 Q0 1461814 3 12.024186 Anserini +test3252 Q0 895353 4 11.520904 Anserini +test3252 Q0 895363 5 11.488995 Anserini +test3252 Q0 895381 6 11.237927 Anserini +test3252 Q0 1461818 7 11.233362 Anserini +test3252 Q0 1461873 8 11.135362 Anserini +test3252 Q0 11165642 9 11.075021 Anserini +test3252 Q0 895365 10 10.880640 Anserini +test3252 Q0 1461871 11 10.686016 Anserini +test3252 Q0 1461851 12 10.507279 Anserini +test3252 Q0 1461817 13 10.331813 Anserini +test3252 Q0 14139600 14 10.310949 Anserini +test3252 Q0 7051646 15 10.306643 Anserini +test3252 Q0 14139602 16 10.298198 Anserini +test3252 Q0 17371056 17 10.211047 Anserini +test3252 Q0 5455251 18 10.075641 Anserini +test3252 Q0 18618434 19 10.001563 Anserini +test3252 Q0 895500 20 10.000931 Anserini +test3252 Q0 13133584 21 9.925265 Anserini +test3252 Q0 1461737 22 9.873360 Anserini +test3252 Q0 11541047 23 9.854672 Anserini +test3252 Q0 11125031 24 9.813147 Anserini +test3252 Q0 5857357 25 9.808466 Anserini +test3252 Q0 11541045 26 9.806245 Anserini +test3252 Q0 13133585 27 9.779673 Anserini +test3252 Q0 20653715 28 9.758516 Anserini +test3252 Q0 9534227 29 9.749984 Anserini +test3252 Q0 7167228 30 9.730998 Anserini +test3253 Q0 7690750 1 20.483755 Anserini +test3253 Q0 614578 2 19.713318 Anserini +test3253 Q0 614618 3 19.518261 Anserini +test3253 Q0 7690748 4 19.422398 Anserini +test3253 Q0 7574144 5 19.223179 Anserini +test3253 Q0 7574145 6 19.028004 Anserini +test3253 Q0 614608 7 18.947889 Anserini +test3253 Q0 614589 8 18.809914 Anserini +test3253 Q0 614611 9 18.497747 Anserini +test3253 Q0 7368127 10 17.354219 Anserini +test3253 Q0 614617 11 17.325069 Anserini +test3253 Q0 7368125 12 17.234528 Anserini +test3253 Q0 1989553 13 17.031540 Anserini +test3253 Q0 13108041 14 16.935080 Anserini +test3253 Q0 10745226 15 16.825212 Anserini +test3253 Q0 614586 16 16.618925 Anserini +test3253 Q0 13108036 17 16.475071 Anserini +test3253 Q0 12484119 18 16.452793 Anserini +test3253 Q0 614597 19 16.445456 Anserini +test3253 Q0 19825995 20 16.355522 Anserini +test3253 Q0 614610 21 16.220686 Anserini +test3253 Q0 614604 22 16.198423 Anserini +test3253 Q0 9819440 23 16.121469 Anserini +test3253 Q0 614579 24 15.840736 Anserini +test3253 Q0 614591 25 15.803074 Anserini +test3253 Q0 9951907 26 15.765666 Anserini +test3253 Q0 83961 27 15.699281 Anserini +test3253 Q0 614613 28 15.605172 Anserini +test3253 Q0 614601 29 15.519669 Anserini +test3253 Q0 12213737 30 15.429351 Anserini +test3254 Q0 18184258 1 30.583847 Anserini +test3254 Q0 18184260 2 29.760408 Anserini +test3254 Q0 6593081 3 27.381521 Anserini +test3254 Q0 17858791 4 26.615437 Anserini +test3254 Q0 19912857 5 26.281437 Anserini +test3254 Q0 18184259 6 25.142303 Anserini +test3254 Q0 12508346 7 20.871048 Anserini +test3254 Q0 7434891 8 20.472292 Anserini +test3254 Q0 4666450 9 20.259024 Anserini +test3254 Q0 4666454 10 20.259024 Anserini +test3254 Q0 19828002 11 20.141808 Anserini +test3254 Q0 4666453 12 19.931982 Anserini +test3254 Q0 7434888 13 19.391575 Anserini +test3254 Q0 1360355 14 19.391575 Anserini +test3254 Q0 12852997 15 19.391575 Anserini +test3254 Q0 19912854 16 19.187441 Anserini +test3254 Q0 12461196 17 18.987556 Anserini +test3254 Q0 12461234 18 18.987556 Anserini +test3254 Q0 6121721 19 16.878204 Anserini +test3254 Q0 10923560 20 16.850355 Anserini +test3254 Q0 6121739 21 16.238150 Anserini +test3254 Q0 10376219 22 14.542085 Anserini +test3254 Q0 10923559 23 14.523765 Anserini +test3254 Q0 18963485 24 14.478860 Anserini +test3254 Q0 6121726 25 14.392172 Anserini +test3254 Q0 6207085 26 13.816091 Anserini +test3254 Q0 20458066 27 13.635675 Anserini +test3254 Q0 14690956 28 13.630968 Anserini +test3254 Q0 6121740 29 13.596617 Anserini +test3254 Q0 10938536 30 13.585067 Anserini +test3255 Q0 20701136 1 14.015493 Anserini +test3255 Q0 20701133 2 13.261296 Anserini +test3255 Q0 142071 3 12.713874 Anserini +test3255 Q0 142069 4 12.677894 Anserini +test3255 Q0 5590022 5 11.927476 Anserini +test3255 Q0 18255821 6 11.793263 Anserini +test3255 Q0 13619566 7 11.785421 Anserini +test3255 Q0 142065 8 11.687793 Anserini +test3255 Q0 2304550 9 11.648211 Anserini +test3255 Q0 142091 10 11.408719 Anserini +test3255 Q0 7212226 11 11.408719 Anserini +test3255 Q0 142068 12 11.407747 Anserini +test3255 Q0 154462 13 11.405310 Anserini +test3255 Q0 31798 14 11.317728 Anserini +test3255 Q0 142062 15 11.291697 Anserini +test3255 Q0 20701134 16 11.234082 Anserini +test3255 Q0 142072 17 11.214910 Anserini +test3255 Q0 10767614 18 11.191981 Anserini +test3255 Q0 7273642 19 11.101954 Anserini +test3255 Q0 4017783 20 11.013046 Anserini +test3255 Q0 5213630 21 10.950585 Anserini +test3255 Q0 142088 22 10.873365 Anserini +test3255 Q0 142074 23 10.810169 Anserini +test3255 Q0 18659108 24 10.776686 Anserini +test3255 Q0 16780847 25 10.707075 Anserini +test3255 Q0 142080 26 10.646495 Anserini +test3255 Q0 11396086 27 10.635157 Anserini +test3255 Q0 10538879 28 10.620101 Anserini +test3255 Q0 142064 29 10.580924 Anserini +test3255 Q0 8954812 30 10.441286 Anserini +test3256 Q0 14385285 1 39.878666 Anserini +test3256 Q0 14385283 2 39.387451 Anserini +test3256 Q0 7944361 3 29.563526 Anserini +test3256 Q0 14385284 4 28.950108 Anserini +test3256 Q0 8920591 5 27.462372 Anserini +test3256 Q0 13846366 6 27.459742 Anserini +test3256 Q0 14346989 7 27.347225 Anserini +test3256 Q0 16245992 8 27.006758 Anserini +test3256 Q0 15111987 9 26.517946 Anserini +test3256 Q0 16560805 10 26.517946 Anserini +test3256 Q0 7944354 11 24.679720 Anserini +test3256 Q0 9640993 12 20.299519 Anserini +test3256 Q0 18356017 13 19.838524 Anserini +test3256 Q0 17730890 14 19.802855 Anserini +test3256 Q0 11818655 15 18.451807 Anserini +test3256 Q0 17730891 16 18.432262 Anserini +test3256 Q0 11818658 17 18.052294 Anserini +test3256 Q0 16863624 18 18.040482 Anserini +test3256 Q0 15576876 19 17.574144 Anserini +test3256 Q0 16863607 20 17.504066 Anserini +test3256 Q0 15576893 21 17.289923 Anserini +test3256 Q0 4268738 22 16.725449 Anserini +test3256 Q0 19408679 23 16.611946 Anserini +test3256 Q0 15576887 24 16.433535 Anserini +test3256 Q0 14257461 25 16.205120 Anserini +test3256 Q0 17421106 26 16.151970 Anserini +test3256 Q0 14257435 27 16.062115 Anserini +test3256 Q0 8829241 28 15.938128 Anserini +test3256 Q0 15350624 29 15.884800 Anserini +test3256 Q0 15576898 30 15.852329 Anserini +test3257 Q0 1293867 1 14.317361 Anserini +test3257 Q0 6463709 2 14.015283 Anserini +test3257 Q0 1613028 3 13.882966 Anserini +test3257 Q0 619054 4 13.625895 Anserini +test3257 Q0 155186 5 13.600647 Anserini +test3257 Q0 155256 6 13.600647 Anserini +test3257 Q0 20041197 7 13.380405 Anserini +test3257 Q0 12265224 8 13.344830 Anserini +test3257 Q0 189925 9 13.183553 Anserini +test3257 Q0 619042 10 13.119431 Anserini +test3257 Q0 13593847 11 13.084188 Anserini +test3257 Q0 3394198 12 12.895342 Anserini +test3257 Q0 12266011 13 12.860730 Anserini +test3257 Q0 111391 14 12.703034 Anserini +test3257 Q0 10226594 15 12.652743 Anserini +test3257 Q0 10358343 16 12.573321 Anserini +test3257 Q0 12530057 17 12.573218 Anserini +test3257 Q0 12138497 18 12.525437 Anserini +test3257 Q0 14655400 19 12.522024 Anserini +test3257 Q0 19548581 20 12.516174 Anserini +test3257 Q0 4118085 21 12.444345 Anserini +test3257 Q0 1536357 22 12.338196 Anserini +test3257 Q0 121226 23 12.231315 Anserini +test3257 Q0 1281752 24 12.213365 Anserini +test3257 Q0 191044 25 12.213365 Anserini +test3257 Q0 15346380 26 12.126708 Anserini +test3257 Q0 155305 27 11.962486 Anserini +test3257 Q0 280056 28 11.930157 Anserini +test3257 Q0 16537879 29 11.888157 Anserini +test3257 Q0 8303166 30 11.877333 Anserini +test3258 Q0 7522049 1 15.009158 Anserini +test3258 Q0 16117973 2 14.179966 Anserini +test3258 Q0 3932764 3 13.784416 Anserini +test3258 Q0 9731368 4 13.670197 Anserini +test3258 Q0 58697 5 13.664814 Anserini +test3258 Q0 1719314 6 13.554906 Anserini +test3258 Q0 1961346 7 13.104212 Anserini +test3258 Q0 19355998 8 13.053229 Anserini +test3258 Q0 14414596 9 13.030152 Anserini +test3258 Q0 7789089 10 12.937405 Anserini +test3258 Q0 9932234 11 12.851566 Anserini +test3258 Q0 2739716 12 12.636728 Anserini +test3258 Q0 16117975 13 12.543166 Anserini +test3258 Q0 14759958 14 12.520419 Anserini +test3258 Q0 9719265 15 12.287792 Anserini +test3258 Q0 13438625 16 12.270187 Anserini +test3258 Q0 5471545 17 12.260088 Anserini +test3258 Q0 5647149 18 12.216486 Anserini +test3258 Q0 10533425 19 12.180778 Anserini +test3258 Q0 1677511 20 12.170920 Anserini +test3258 Q0 12611590 21 12.089948 Anserini +test3258 Q0 7302831 22 12.049244 Anserini +test3258 Q0 1677513 23 11.993831 Anserini +test3258 Q0 8518389 24 11.969135 Anserini +test3258 Q0 1002105 25 11.965769 Anserini +test3258 Q0 15946637 26 11.939083 Anserini +test3258 Q0 17316859 27 11.895316 Anserini +test3258 Q0 13698746 28 11.873560 Anserini +test3258 Q0 1479636 29 11.834028 Anserini +test3258 Q0 3686920 30 11.798297 Anserini +test3259 Q0 1341994 1 17.788395 Anserini +test3259 Q0 12794194 2 15.157382 Anserini +test3259 Q0 13462671 3 14.990298 Anserini +test3259 Q0 1341993 4 14.756416 Anserini +test3259 Q0 19054108 5 14.741983 Anserini +test3259 Q0 1342003 6 14.715309 Anserini +test3259 Q0 1341997 7 14.481386 Anserini +test3259 Q0 11775144 8 14.142426 Anserini +test3259 Q0 119665 9 13.882531 Anserini +test3259 Q0 1342000 10 13.860762 Anserini +test3259 Q0 2099481 11 13.663250 Anserini +test3259 Q0 12057100 12 13.616594 Anserini +test3259 Q0 1540038 13 13.542638 Anserini +test3259 Q0 1342001 14 13.484118 Anserini +test3259 Q0 357844 15 13.441099 Anserini +test3259 Q0 7781054 16 13.384284 Anserini +test3259 Q0 7781056 17 13.345373 Anserini +test3259 Q0 12794196 18 13.339529 Anserini +test3259 Q0 16324021 19 13.280869 Anserini +test3259 Q0 12057098 20 13.274341 Anserini +test3259 Q0 16616926 21 13.240475 Anserini +test3259 Q0 11179142 22 13.153168 Anserini +test3259 Q0 11179141 23 13.153168 Anserini +test3259 Q0 357843 24 13.082081 Anserini +test3259 Q0 2637836 25 13.080303 Anserini +test3259 Q0 15996714 26 12.968372 Anserini +test3259 Q0 1878935 27 12.912093 Anserini +test3259 Q0 4766166 28 12.911329 Anserini +test3259 Q0 7515079 29 12.799799 Anserini +test3259 Q0 1342004 30 12.724924 Anserini +test326 Q0 2401261 1 13.586812 Anserini +test326 Q0 2401262 2 13.171573 Anserini +test326 Q0 4358888 3 12.453104 Anserini +test326 Q0 2401257 4 12.354057 Anserini +test326 Q0 4358887 5 11.992305 Anserini +test326 Q0 247943 6 11.854274 Anserini +test326 Q0 2401267 7 11.839067 Anserini +test326 Q0 598732 8 11.805754 Anserini +test326 Q0 8567052 9 11.727772 Anserini +test326 Q0 56707 10 11.286922 Anserini +test326 Q0 8567048 11 11.223507 Anserini +test326 Q0 1605672 12 11.213844 Anserini +test326 Q0 19511720 13 11.209806 Anserini +test326 Q0 2401263 14 11.050591 Anserini +test326 Q0 9686321 15 11.002149 Anserini +test326 Q0 8567050 16 11.000130 Anserini +test326 Q0 4358886 17 10.813343 Anserini +test326 Q0 2401253 18 10.737192 Anserini +test326 Q0 4289868 19 10.711902 Anserini +test326 Q0 3770337 20 10.679250 Anserini +test326 Q0 2401260 21 10.555956 Anserini +test326 Q0 3526394 22 10.539643 Anserini +test326 Q0 1287421 23 10.498762 Anserini +test326 Q0 308782 24 10.437011 Anserini +test326 Q0 9686325 25 10.374744 Anserini +test326 Q0 2645060 26 10.311651 Anserini +test326 Q0 3167853 27 10.265378 Anserini +test326 Q0 14387910 28 10.233582 Anserini +test326 Q0 280133 29 10.217761 Anserini +test326 Q0 2469435 30 10.213873 Anserini +test3260 Q0 8514639 1 11.527912 Anserini +test3260 Q0 8514637 2 11.152656 Anserini +test3260 Q0 8514638 3 10.563392 Anserini +test3260 Q0 6261395 4 10.451986 Anserini +test3260 Q0 6261396 5 10.257399 Anserini +test3260 Q0 8514630 6 10.205636 Anserini +test3260 Q0 16396679 7 10.024044 Anserini +test3260 Q0 1506133 8 9.897758 Anserini +test3260 Q0 7615741 9 9.766059 Anserini +test3260 Q0 8514632 10 9.487466 Anserini +test3260 Q0 8514636 11 9.487466 Anserini +test3260 Q0 8316204 12 9.472392 Anserini +test3260 Q0 8252100 13 9.370148 Anserini +test3260 Q0 8514631 14 9.357491 Anserini +test3260 Q0 11976751 15 9.149189 Anserini +test3260 Q0 12293063 16 9.133707 Anserini +test3260 Q0 11715732 17 9.084205 Anserini +test3260 Q0 95486 18 9.053503 Anserini +test3260 Q0 9957381 19 9.013122 Anserini +test3260 Q0 16863679 20 8.935587 Anserini +test3260 Q0 8123826 21 8.753797 Anserini +test3260 Q0 8370262 22 8.738893 Anserini +test3260 Q0 16546739 23 8.700685 Anserini +test3260 Q0 18415443 24 8.640360 Anserini +test3260 Q0 8489326 25 8.602983 Anserini +test3260 Q0 15262225 26 8.592255 Anserini +test3260 Q0 9100854 27 8.578673 Anserini +test3260 Q0 12906935 28 8.513074 Anserini +test3260 Q0 7448669 29 8.493446 Anserini +test3260 Q0 10155684 30 8.493446 Anserini +test3261 Q0 13460650 1 21.387960 Anserini +test3261 Q0 4903984 2 21.063828 Anserini +test3261 Q0 4903990 3 20.969313 Anserini +test3261 Q0 4903989 4 20.259047 Anserini +test3261 Q0 4903987 5 20.234659 Anserini +test3261 Q0 7886946 6 20.141546 Anserini +test3261 Q0 9888778 7 19.967657 Anserini +test3261 Q0 15263379 8 19.662056 Anserini +test3261 Q0 4903986 9 19.454674 Anserini +test3261 Q0 7886943 10 19.280293 Anserini +test3261 Q0 4865429 11 18.962778 Anserini +test3261 Q0 13289866 12 18.736481 Anserini +test3261 Q0 20986647 13 18.618639 Anserini +test3261 Q0 17297462 14 18.555298 Anserini +test3261 Q0 14254548 15 18.419785 Anserini +test3261 Q0 19913631 16 18.288502 Anserini +test3261 Q0 19649562 17 18.273546 Anserini +test3261 Q0 19649563 18 18.273546 Anserini +test3261 Q0 17297464 19 18.008410 Anserini +test3261 Q0 17284094 20 17.999464 Anserini +test3261 Q0 13011968 21 17.826700 Anserini +test3261 Q0 17378991 22 17.751020 Anserini +test3261 Q0 17244614 23 17.725595 Anserini +test3261 Q0 17244615 24 17.725595 Anserini +test3261 Q0 4903988 25 17.718616 Anserini +test3261 Q0 17284095 26 17.455288 Anserini +test3261 Q0 12128561 27 17.318117 Anserini +test3261 Q0 7651246 28 17.270617 Anserini +test3261 Q0 17378990 29 17.236908 Anserini +test3261 Q0 6670098 30 17.063549 Anserini +test3262 Q0 3791238 1 13.517943 Anserini +test3262 Q0 84999 2 12.839052 Anserini +test3262 Q0 12759683 3 12.620941 Anserini +test3262 Q0 14633789 4 12.511093 Anserini +test3262 Q0 14633797 5 12.511093 Anserini +test3262 Q0 7083242 6 12.144833 Anserini +test3262 Q0 819398 7 11.948546 Anserini +test3262 Q0 819347 8 11.948546 Anserini +test3262 Q0 448876 9 11.927293 Anserini +test3262 Q0 466313 10 11.842443 Anserini +test3262 Q0 7080661 11 11.739765 Anserini +test3262 Q0 390617 12 11.468113 Anserini +test3262 Q0 303604 13 11.443324 Anserini +test3262 Q0 9568122 14 11.421704 Anserini +test3262 Q0 3786200 15 11.201838 Anserini +test3262 Q0 14775643 16 11.156660 Anserini +test3262 Q0 17933537 17 11.103241 Anserini +test3262 Q0 5392293 18 11.081309 Anserini +test3262 Q0 14476532 19 11.005251 Anserini +test3262 Q0 12463350 20 11.003088 Anserini +test3262 Q0 1737352 21 10.994588 Anserini +test3262 Q0 18350103 22 10.972134 Anserini +test3262 Q0 1903733 23 10.972134 Anserini +test3262 Q0 856308 24 10.927538 Anserini +test3262 Q0 2165676 25 10.926847 Anserini +test3262 Q0 287477 26 10.855865 Anserini +test3262 Q0 13715061 27 10.795420 Anserini +test3262 Q0 9265595 28 10.768604 Anserini +test3262 Q0 14714204 29 10.768604 Anserini +test3262 Q0 1729649 30 10.764528 Anserini +test3263 Q0 10655772 1 10.469130 Anserini +test3263 Q0 399582 2 9.833160 Anserini +test3263 Q0 7324995 3 9.392506 Anserini +test3263 Q0 2914986 4 9.254072 Anserini +test3263 Q0 3598779 5 9.207388 Anserini +test3263 Q0 3274325 6 9.026138 Anserini +test3263 Q0 8326257 7 8.985182 Anserini +test3263 Q0 14670484 8 8.964366 Anserini +test3263 Q0 14670486 9 8.964366 Anserini +test3263 Q0 11715752 10 8.964366 Anserini +test3263 Q0 8756276 11 8.904824 Anserini +test3263 Q0 12374385 12 8.904824 Anserini +test3263 Q0 3312823 13 8.901833 Anserini +test3263 Q0 11073906 14 8.836995 Anserini +test3263 Q0 2967554 15 8.785591 Anserini +test3263 Q0 5236527 16 8.690292 Anserini +test3263 Q0 18994164 17 8.682804 Anserini +test3263 Q0 20000424 18 8.681170 Anserini +test3263 Q0 10081165 19 8.670543 Anserini +test3263 Q0 7938673 20 8.643471 Anserini +test3263 Q0 6821889 21 8.639444 Anserini +test3263 Q0 1337243 22 8.557289 Anserini +test3263 Q0 13068700 23 8.517179 Anserini +test3263 Q0 7328885 24 8.504931 Anserini +test3263 Q0 4404059 25 8.504931 Anserini +test3263 Q0 12529915 26 8.502207 Anserini +test3263 Q0 5754564 27 8.487836 Anserini +test3263 Q0 14034099 28 8.487836 Anserini +test3263 Q0 6614135 29 8.435641 Anserini +test3263 Q0 6614137 30 8.427086 Anserini +test3264 Q0 11929614 1 17.693729 Anserini +test3264 Q0 5862778 2 17.537504 Anserini +test3264 Q0 14479004 3 16.978838 Anserini +test3264 Q0 11938460 4 16.966085 Anserini +test3264 Q0 11045778 5 16.588367 Anserini +test3264 Q0 6217021 6 16.453096 Anserini +test3264 Q0 19224280 7 16.357899 Anserini +test3264 Q0 10377159 8 16.281769 Anserini +test3264 Q0 10381945 9 16.270813 Anserini +test3264 Q0 6246469 10 16.224346 Anserini +test3264 Q0 2241517 11 16.056250 Anserini +test3264 Q0 14009879 12 15.982400 Anserini +test3264 Q0 11874657 13 15.901875 Anserini +test3264 Q0 14830938 14 15.874854 Anserini +test3264 Q0 20343782 15 15.834763 Anserini +test3264 Q0 6315632 16 15.802561 Anserini +test3264 Q0 6879233 17 15.541058 Anserini +test3264 Q0 5247547 18 15.478538 Anserini +test3264 Q0 2185514 19 15.428574 Anserini +test3264 Q0 14830933 20 15.393405 Anserini +test3264 Q0 14009878 21 15.365858 Anserini +test3264 Q0 14822081 22 15.356172 Anserini +test3264 Q0 10381944 23 15.307284 Anserini +test3264 Q0 13018795 24 15.248179 Anserini +test3264 Q0 12770874 25 15.220373 Anserini +test3264 Q0 8202602 26 15.219116 Anserini +test3264 Q0 5528072 27 15.180208 Anserini +test3264 Q0 17334328 28 15.173767 Anserini +test3264 Q0 14822094 29 15.127853 Anserini +test3264 Q0 11077435 30 15.116350 Anserini +test3265 Q0 5485653 1 16.055183 Anserini +test3265 Q0 1516528 2 12.535022 Anserini +test3265 Q0 597656 3 12.388661 Anserini +test3265 Q0 14481257 4 12.226216 Anserini +test3265 Q0 1905829 5 12.042542 Anserini +test3265 Q0 3074803 6 11.978852 Anserini +test3265 Q0 19436320 7 11.674057 Anserini +test3265 Q0 1741110 8 11.641879 Anserini +test3265 Q0 1905824 9 11.452922 Anserini +test3265 Q0 7348831 10 11.380265 Anserini +test3265 Q0 1516460 11 11.339145 Anserini +test3265 Q0 1905823 12 11.328020 Anserini +test3265 Q0 14672569 13 11.294064 Anserini +test3265 Q0 16371653 14 11.218239 Anserini +test3265 Q0 1516540 15 11.192452 Anserini +test3265 Q0 6145517 16 11.187244 Anserini +test3265 Q0 11438883 17 11.104629 Anserini +test3265 Q0 1905820 18 11.097610 Anserini +test3265 Q0 12380395 19 11.071939 Anserini +test3265 Q0 11327528 20 10.952447 Anserini +test3265 Q0 15218067 21 10.940228 Anserini +test3265 Q0 15281163 22 10.878086 Anserini +test3265 Q0 1506035 23 10.812757 Anserini +test3265 Q0 1516516 24 10.775263 Anserini +test3265 Q0 5130656 25 10.768085 Anserini +test3265 Q0 2278855 26 10.746115 Anserini +test3265 Q0 3547461 27 10.740303 Anserini +test3265 Q0 11954625 28 10.738849 Anserini +test3265 Q0 4705124 29 10.709816 Anserini +test3265 Q0 16812237 30 10.660071 Anserini +test3266 Q0 5576431 1 12.153019 Anserini +test3266 Q0 4157464 2 12.114605 Anserini +test3266 Q0 3645296 3 11.890968 Anserini +test3266 Q0 4157480 4 11.843897 Anserini +test3266 Q0 3738492 5 11.679615 Anserini +test3266 Q0 7236731 6 11.447238 Anserini +test3266 Q0 3738493 7 11.344381 Anserini +test3266 Q0 4157469 8 11.226431 Anserini +test3266 Q0 4157462 9 11.145388 Anserini +test3266 Q0 11522356 10 11.118140 Anserini +test3266 Q0 4157472 11 11.118140 Anserini +test3266 Q0 4157479 12 11.118140 Anserini +test3266 Q0 3738503 13 10.965075 Anserini +test3266 Q0 3637538 14 10.891740 Anserini +test3266 Q0 4157478 15 10.889668 Anserini +test3266 Q0 4157467 16 10.869825 Anserini +test3266 Q0 14717806 17 10.828005 Anserini +test3266 Q0 5394639 18 10.796137 Anserini +test3266 Q0 16047741 19 10.774061 Anserini +test3266 Q0 14717805 20 10.726752 Anserini +test3266 Q0 7482191 21 10.723484 Anserini +test3266 Q0 4157463 22 10.723484 Anserini +test3266 Q0 18097693 23 10.337212 Anserini +test3266 Q0 7482192 24 10.288328 Anserini +test3266 Q0 2194929 25 10.264697 Anserini +test3266 Q0 11522357 26 10.213200 Anserini +test3266 Q0 6122224 27 10.169103 Anserini +test3266 Q0 16712010 28 10.130451 Anserini +test3266 Q0 20775821 29 10.126904 Anserini +test3266 Q0 6164484 30 10.112733 Anserini +test3267 Q0 14349249 1 13.321594 Anserini +test3267 Q0 15341877 2 13.005882 Anserini +test3267 Q0 12104334 3 12.901427 Anserini +test3267 Q0 12104340 4 12.901427 Anserini +test3267 Q0 12530753 5 12.831839 Anserini +test3267 Q0 3904984 6 12.798937 Anserini +test3267 Q0 10389798 7 12.761980 Anserini +test3267 Q0 2061476 8 12.754889 Anserini +test3267 Q0 2061470 9 12.688178 Anserini +test3267 Q0 18046812 10 12.652333 Anserini +test3267 Q0 10389797 11 12.622730 Anserini +test3267 Q0 17463582 12 12.618750 Anserini +test3267 Q0 17178980 13 12.613094 Anserini +test3267 Q0 3904981 14 12.583905 Anserini +test3267 Q0 17643151 15 12.513726 Anserini +test3267 Q0 19336676 16 12.493956 Anserini +test3267 Q0 15712887 17 12.486744 Anserini +test3267 Q0 12530754 18 12.483267 Anserini +test3267 Q0 12598081 19 12.472750 Anserini +test3267 Q0 2061463 20 12.458302 Anserini +test3267 Q0 16154071 21 12.458253 Anserini +test3267 Q0 16154073 22 12.458253 Anserini +test3267 Q0 11878040 23 12.428680 Anserini +test3267 Q0 2061468 24 12.403435 Anserini +test3267 Q0 6524235 25 12.403435 Anserini +test3267 Q0 15561387 26 12.399649 Anserini +test3267 Q0 7617590 27 12.385792 Anserini +test3267 Q0 5513622 28 12.382931 Anserini +test3267 Q0 6524245 29 12.370032 Anserini +test3267 Q0 10006970 30 12.368041 Anserini +test3268 Q0 3085673 1 18.471704 Anserini +test3268 Q0 5231209 2 16.967545 Anserini +test3268 Q0 5231212 3 16.967545 Anserini +test3268 Q0 266512 4 16.951937 Anserini +test3268 Q0 8008728 5 16.846573 Anserini +test3268 Q0 1882411 6 16.432999 Anserini +test3268 Q0 3085672 7 16.391598 Anserini +test3268 Q0 20855587 8 16.046438 Anserini +test3268 Q0 1472822 9 15.831608 Anserini +test3268 Q0 196692 10 15.425510 Anserini +test3268 Q0 5410451 11 15.259277 Anserini +test3268 Q0 3038468 12 15.183384 Anserini +test3268 Q0 4434667 13 15.105198 Anserini +test3268 Q0 4570972 14 14.961758 Anserini +test3268 Q0 18882594 15 14.922377 Anserini +test3268 Q0 4570973 16 14.807995 Anserini +test3268 Q0 4431276 17 14.725974 Anserini +test3268 Q0 1882419 18 14.695909 Anserini +test3268 Q0 11776909 19 14.655517 Anserini +test3268 Q0 3066187 20 14.572442 Anserini +test3268 Q0 49652 21 14.504784 Anserini +test3268 Q0 6365197 22 14.429396 Anserini +test3268 Q0 5812414 23 14.284096 Anserini +test3268 Q0 9410599 24 14.190248 Anserini +test3268 Q0 2078890 25 14.186108 Anserini +test3268 Q0 671619 26 14.162712 Anserini +test3268 Q0 1409370 27 14.158856 Anserini +test3268 Q0 20247469 28 14.148787 Anserini +test3268 Q0 10613290 29 14.062657 Anserini +test3268 Q0 6239105 30 14.026133 Anserini +test3269 Q0 4349766 1 13.665221 Anserini +test3269 Q0 4349769 2 13.574503 Anserini +test3269 Q0 4812052 3 13.561287 Anserini +test3269 Q0 13459406 4 13.544878 Anserini +test3269 Q0 7671932 5 13.473146 Anserini +test3269 Q0 9043151 6 13.046938 Anserini +test3269 Q0 13459407 7 12.814326 Anserini +test3269 Q0 17922385 8 12.786936 Anserini +test3269 Q0 10395796 9 12.656595 Anserini +test3269 Q0 4349763 10 12.649056 Anserini +test3269 Q0 4349778 11 12.523583 Anserini +test3269 Q0 20197977 12 12.522655 Anserini +test3269 Q0 315915 13 12.457073 Anserini +test3269 Q0 11513456 14 12.412059 Anserini +test3269 Q0 5713007 15 12.404226 Anserini +test3269 Q0 5713010 16 12.358625 Anserini +test3269 Q0 9331978 17 12.214365 Anserini +test3269 Q0 4349749 18 12.205523 Anserini +test3269 Q0 4349781 19 12.205523 Anserini +test3269 Q0 4349754 20 12.181067 Anserini +test3269 Q0 15340021 21 12.120350 Anserini +test3269 Q0 13974748 22 12.080867 Anserini +test3269 Q0 20197975 23 12.055313 Anserini +test3269 Q0 20197976 24 12.021255 Anserini +test3269 Q0 5713027 25 11.995054 Anserini +test3269 Q0 9534047 26 11.983832 Anserini +test3269 Q0 12526805 27 11.903343 Anserini +test3269 Q0 1399255 28 11.824936 Anserini +test3269 Q0 4349755 29 11.815636 Anserini +test3269 Q0 20106039 30 11.783066 Anserini +test327 Q0 19537930 1 16.375759 Anserini +test327 Q0 16916329 2 16.197340 Anserini +test327 Q0 4687103 3 16.106546 Anserini +test327 Q0 4021213 4 15.496905 Anserini +test327 Q0 15320501 5 15.133836 Anserini +test327 Q0 8491605 6 15.099145 Anserini +test327 Q0 7692033 7 14.943342 Anserini +test327 Q0 2339492 8 14.917152 Anserini +test327 Q0 5926149 9 14.867999 Anserini +test327 Q0 8491609 10 14.831629 Anserini +test327 Q0 19285508 11 14.717117 Anserini +test327 Q0 13877703 12 14.575563 Anserini +test327 Q0 14023197 13 14.488499 Anserini +test327 Q0 14023198 14 14.347605 Anserini +test327 Q0 5714503 15 14.344468 Anserini +test327 Q0 11800522 16 14.229995 Anserini +test327 Q0 3506312 17 14.175570 Anserini +test327 Q0 14081314 18 13.939441 Anserini +test327 Q0 18723293 19 13.912519 Anserini +test327 Q0 5871106 20 13.881029 Anserini +test327 Q0 16956386 21 13.843534 Anserini +test327 Q0 3832779 22 13.819447 Anserini +test327 Q0 12102644 23 13.756788 Anserini +test327 Q0 3697903 24 13.754487 Anserini +test327 Q0 9433714 25 13.740243 Anserini +test327 Q0 11733254 26 13.695237 Anserini +test327 Q0 20582842 27 13.642849 Anserini +test327 Q0 9433717 28 13.640501 Anserini +test327 Q0 19296071 29 13.608376 Anserini +test327 Q0 7605943 30 13.606689 Anserini +test3270 Q0 19197234 1 11.421644 Anserini +test3270 Q0 5898623 2 10.941941 Anserini +test3270 Q0 19197230 3 10.937381 Anserini +test3270 Q0 8355105 4 10.926005 Anserini +test3270 Q0 15323682 5 10.876720 Anserini +test3270 Q0 15649154 6 10.811186 Anserini +test3270 Q0 15649152 7 10.785744 Anserini +test3270 Q0 15649163 8 10.630771 Anserini +test3270 Q0 15649159 9 10.476859 Anserini +test3270 Q0 15649162 10 10.297178 Anserini +test3270 Q0 15649160 11 10.183267 Anserini +test3270 Q0 1880743 12 10.106500 Anserini +test3270 Q0 15649153 13 10.076370 Anserini +test3270 Q0 15649161 14 10.056036 Anserini +test3270 Q0 9260933 15 10.004226 Anserini +test3270 Q0 16588972 16 9.939322 Anserini +test3270 Q0 15649156 17 9.936596 Anserini +test3270 Q0 8153309 18 9.807705 Anserini +test3270 Q0 20102140 19 9.797246 Anserini +test3270 Q0 20102141 20 9.797246 Anserini +test3270 Q0 15649157 21 9.749797 Anserini +test3270 Q0 6740728 22 9.749510 Anserini +test3270 Q0 20846965 23 9.743250 Anserini +test3270 Q0 20581604 24 9.740749 Anserini +test3270 Q0 6923865 25 9.695076 Anserini +test3270 Q0 5947437 26 9.694242 Anserini +test3270 Q0 8106853 27 9.661649 Anserini +test3270 Q0 15649158 28 9.655840 Anserini +test3270 Q0 6586685 29 9.615444 Anserini +test3270 Q0 19796606 30 9.605470 Anserini +test3271 Q0 713450 1 11.133594 Anserini +test3271 Q0 4632350 2 10.453668 Anserini +test3271 Q0 19452486 3 10.376589 Anserini +test3271 Q0 18364459 4 10.288857 Anserini +test3271 Q0 18324723 5 10.194200 Anserini +test3271 Q0 16343034 6 10.049847 Anserini +test3271 Q0 2240936 7 9.907321 Anserini +test3271 Q0 19539234 8 9.838969 Anserini +test3271 Q0 18045935 9 9.795334 Anserini +test3271 Q0 17659733 10 9.783257 Anserini +test3271 Q0 8650199 11 9.715792 Anserini +test3271 Q0 18847846 12 9.651982 Anserini +test3271 Q0 13903791 13 9.629286 Anserini +test3271 Q0 4779038 14 9.606766 Anserini +test3271 Q0 13885893 15 9.495321 Anserini +test3271 Q0 16185934 16 9.488373 Anserini +test3271 Q0 3631766 17 9.407855 Anserini +test3271 Q0 4632344 18 9.394215 Anserini +test3271 Q0 19053721 19 9.367589 Anserini +test3271 Q0 1575676 20 9.259603 Anserini +test3271 Q0 12035607 21 9.245641 Anserini +test3271 Q0 7066019 22 9.236302 Anserini +test3271 Q0 16731096 23 9.218730 Anserini +test3271 Q0 10350956 24 9.209015 Anserini +test3271 Q0 1295344 25 9.198992 Anserini +test3271 Q0 20519181 26 9.146000 Anserini +test3271 Q0 6103494 27 9.144508 Anserini +test3271 Q0 2132019 28 9.129745 Anserini +test3271 Q0 18357898 29 9.087589 Anserini +test3271 Q0 7512550 30 9.080213 Anserini +test3272 Q0 4640758 1 32.515095 Anserini +test3272 Q0 4640802 2 32.196171 Anserini +test3272 Q0 1520485 3 29.883369 Anserini +test3272 Q0 1520744 4 29.271389 Anserini +test3272 Q0 18201629 5 28.769035 Anserini +test3272 Q0 4640775 6 28.450077 Anserini +test3272 Q0 4640787 7 27.719046 Anserini +test3272 Q0 1520746 8 27.431490 Anserini +test3272 Q0 1520488 9 27.267296 Anserini +test3272 Q0 1520714 10 27.234030 Anserini +test3272 Q0 18201628 11 27.059120 Anserini +test3272 Q0 549518 12 26.447834 Anserini +test3272 Q0 19735654 13 26.082796 Anserini +test3272 Q0 4640759 14 25.863062 Anserini +test3272 Q0 19735659 15 25.688429 Anserini +test3272 Q0 4640773 16 25.568501 Anserini +test3272 Q0 1521629 17 25.144800 Anserini +test3272 Q0 13961036 18 25.077288 Anserini +test3272 Q0 4640801 19 24.762699 Anserini +test3272 Q0 18723992 20 24.384661 Anserini +test3272 Q0 4840057 21 24.118059 Anserini +test3272 Q0 18201627 22 23.787739 Anserini +test3272 Q0 4640761 23 23.782322 Anserini +test3272 Q0 4840048 24 23.704096 Anserini +test3272 Q0 1520479 25 23.568342 Anserini +test3272 Q0 17297250 26 23.538252 Anserini +test3272 Q0 30736 27 23.498058 Anserini +test3272 Q0 17297255 28 23.384096 Anserini +test3272 Q0 18723991 29 23.360159 Anserini +test3272 Q0 18201631 30 23.311905 Anserini +test3273 Q0 7366026 1 12.218419 Anserini +test3273 Q0 14997766 2 12.158587 Anserini +test3273 Q0 13032730 3 12.068972 Anserini +test3273 Q0 6217917 4 11.846249 Anserini +test3273 Q0 20523767 5 11.822810 Anserini +test3273 Q0 20523768 6 11.822810 Anserini +test3273 Q0 4381227 7 11.621363 Anserini +test3273 Q0 6155494 8 11.385709 Anserini +test3273 Q0 14997783 9 11.369461 Anserini +test3273 Q0 629297 10 10.820677 Anserini +test3273 Q0 9923017 11 10.811150 Anserini +test3273 Q0 13032736 12 10.642040 Anserini +test3273 Q0 674610 13 10.570482 Anserini +test3273 Q0 859941 14 10.532748 Anserini +test3273 Q0 19736417 15 10.448423 Anserini +test3273 Q0 5644247 16 10.397267 Anserini +test3273 Q0 859948 17 10.343031 Anserini +test3273 Q0 14997793 18 10.298800 Anserini +test3273 Q0 14366083 19 10.231295 Anserini +test3273 Q0 2340246 20 10.196264 Anserini +test3273 Q0 10002862 21 10.190480 Anserini +test3273 Q0 8534941 22 10.156479 Anserini +test3273 Q0 15809464 23 10.121672 Anserini +test3273 Q0 17327541 24 10.095804 Anserini +test3273 Q0 5748238 25 10.016863 Anserini +test3273 Q0 15667593 26 9.994715 Anserini +test3273 Q0 17015289 27 9.983737 Anserini +test3273 Q0 10397484 28 9.944034 Anserini +test3273 Q0 6398213 29 9.893583 Anserini +test3273 Q0 1676602 30 9.880372 Anserini +test3274 Q0 17263302 1 10.949794 Anserini +test3274 Q0 10224002 2 10.856076 Anserini +test3274 Q0 19447665 3 10.395121 Anserini +test3274 Q0 3347261 4 10.344585 Anserini +test3274 Q0 16430634 5 10.255331 Anserini +test3274 Q0 3735753 6 10.175598 Anserini +test3274 Q0 20240332 7 10.121405 Anserini +test3274 Q0 20300002 8 10.054661 Anserini +test3274 Q0 19484611 9 9.985273 Anserini +test3274 Q0 19559390 10 9.985273 Anserini +test3274 Q0 20263862 11 9.985273 Anserini +test3274 Q0 19447610 12 9.985273 Anserini +test3274 Q0 19484574 13 9.985273 Anserini +test3274 Q0 19559337 14 9.985273 Anserini +test3274 Q0 8450736 15 9.964869 Anserini +test3274 Q0 17263290 16 9.916965 Anserini +test3274 Q0 20263894 17 9.916965 Anserini +test3274 Q0 19447635 18 9.916965 Anserini +test3274 Q0 19447634 19 9.916965 Anserini +test3274 Q0 3735786 20 9.879559 Anserini +test3274 Q0 19840523 21 9.869060 Anserini +test3274 Q0 18680090 22 9.789830 Anserini +test3274 Q0 20723756 23 9.789830 Anserini +test3274 Q0 17959141 24 9.789830 Anserini +test3274 Q0 3735765 25 9.779275 Anserini +test3274 Q0 20240394 26 9.754604 Anserini +test3274 Q0 18135457 27 9.691175 Anserini +test3274 Q0 18939004 28 9.683883 Anserini +test3274 Q0 17142218 29 9.614286 Anserini +test3274 Q0 18274482 30 9.575359 Anserini +test3275 Q0 7706514 1 12.469541 Anserini +test3275 Q0 14072535 2 12.096056 Anserini +test3275 Q0 9347937 3 12.045259 Anserini +test3275 Q0 6901783 4 11.503846 Anserini +test3275 Q0 12758755 5 11.440805 Anserini +test3275 Q0 9350068 6 11.205399 Anserini +test3275 Q0 6901790 7 11.194675 Anserini +test3275 Q0 9350067 8 11.112807 Anserini +test3275 Q0 9347977 9 11.040080 Anserini +test3275 Q0 13858533 10 10.868778 Anserini +test3275 Q0 12758757 11 10.825913 Anserini +test3275 Q0 9347978 12 10.759685 Anserini +test3275 Q0 11872283 13 10.706562 Anserini +test3275 Q0 9347980 14 10.626026 Anserini +test3275 Q0 11872284 15 10.548583 Anserini +test3275 Q0 11872279 16 10.452745 Anserini +test3275 Q0 19754625 17 10.443420 Anserini +test3275 Q0 9347979 18 10.311729 Anserini +test3275 Q0 12107606 19 10.272385 Anserini +test3275 Q0 6901788 20 10.212453 Anserini +test3275 Q0 12758761 21 10.102818 Anserini +test3275 Q0 6901789 22 10.034773 Anserini +test3275 Q0 6220946 23 9.970459 Anserini +test3275 Q0 14072544 24 9.948413 Anserini +test3275 Q0 19860662 25 9.929195 Anserini +test3275 Q0 2908185 26 9.903799 Anserini +test3275 Q0 20344975 27 9.782438 Anserini +test3275 Q0 18164743 28 9.772276 Anserini +test3275 Q0 12758756 29 9.739029 Anserini +test3275 Q0 2908187 30 9.713518 Anserini +test3276 Q0 15226311 1 14.616467 Anserini +test3276 Q0 10397350 2 14.460639 Anserini +test3276 Q0 10397351 3 14.383257 Anserini +test3276 Q0 16287278 4 13.963071 Anserini +test3276 Q0 17263335 5 13.928237 Anserini +test3276 Q0 16537317 6 13.787715 Anserini +test3276 Q0 16287274 7 13.667723 Anserini +test3276 Q0 17263332 8 13.640150 Anserini +test3276 Q0 7662953 9 13.541902 Anserini +test3276 Q0 3053850 10 13.526702 Anserini +test3276 Q0 6817719 11 13.521292 Anserini +test3276 Q0 17012572 12 13.474118 Anserini +test3276 Q0 12260846 13 13.440746 Anserini +test3276 Q0 13381743 14 13.411597 Anserini +test3276 Q0 9742267 15 13.330657 Anserini +test3276 Q0 13381745 16 13.292397 Anserini +test3276 Q0 17012573 17 13.240743 Anserini +test3276 Q0 3053855 18 13.202065 Anserini +test3276 Q0 14743890 19 13.183669 Anserini +test3276 Q0 9428823 20 13.117677 Anserini +test3276 Q0 19681617 21 13.082470 Anserini +test3276 Q0 7662947 22 13.082470 Anserini +test3276 Q0 11030237 23 13.046537 Anserini +test3276 Q0 9428826 24 13.035125 Anserini +test3276 Q0 12260844 25 12.846646 Anserini +test3276 Q0 11562969 26 12.773580 Anserini +test3276 Q0 3053863 27 12.732567 Anserini +test3276 Q0 15621789 28 12.698670 Anserini +test3276 Q0 19681609 29 12.620992 Anserini +test3276 Q0 7662960 30 12.613165 Anserini +test3277 Q0 1860733 1 16.778450 Anserini +test3277 Q0 5792944 2 14.649084 Anserini +test3277 Q0 5744611 3 14.522197 Anserini +test3277 Q0 8635203 4 13.819404 Anserini +test3277 Q0 51221 5 13.786381 Anserini +test3277 Q0 20802559 6 13.768784 Anserini +test3277 Q0 12769188 7 13.672488 Anserini +test3277 Q0 1860722 8 13.339108 Anserini +test3277 Q0 8342471 9 13.329152 Anserini +test3277 Q0 7867848 10 13.210409 Anserini +test3277 Q0 2100755 11 13.160077 Anserini +test3277 Q0 3116777 12 13.153605 Anserini +test3277 Q0 4008046 13 13.078440 Anserini +test3277 Q0 12987181 14 13.007642 Anserini +test3277 Q0 1860724 15 12.939437 Anserini +test3277 Q0 17343752 16 12.929879 Anserini +test3277 Q0 20818517 17 12.875562 Anserini +test3277 Q0 18882309 18 12.857519 Anserini +test3277 Q0 9024279 19 12.855886 Anserini +test3277 Q0 6749447 20 12.852593 Anserini +test3277 Q0 18934308 21 12.829757 Anserini +test3277 Q0 5463805 22 12.712410 Anserini +test3277 Q0 92279 23 12.701875 Anserini +test3277 Q0 12466243 24 12.656570 Anserini +test3277 Q0 1860734 25 12.551270 Anserini +test3277 Q0 317762 26 12.482745 Anserini +test3277 Q0 13259072 27 12.438236 Anserini +test3277 Q0 5591098 28 12.412788 Anserini +test3277 Q0 14313270 29 12.340215 Anserini +test3277 Q0 13242264 30 12.312937 Anserini +test3278 Q0 7612025 1 20.675991 Anserini +test3278 Q0 8840451 2 20.013651 Anserini +test3278 Q0 1302842 3 18.704605 Anserini +test3278 Q0 473062 4 18.062145 Anserini +test3278 Q0 5926637 5 17.466583 Anserini +test3278 Q0 17950132 6 17.449083 Anserini +test3278 Q0 8840455 7 17.055372 Anserini +test3278 Q0 1302846 8 16.940397 Anserini +test3278 Q0 825796 9 16.734200 Anserini +test3278 Q0 9564742 10 16.642036 Anserini +test3278 Q0 8840452 11 16.591028 Anserini +test3278 Q0 6226399 12 16.539968 Anserini +test3278 Q0 8840453 13 16.278130 Anserini +test3278 Q0 7429424 14 15.912222 Anserini +test3278 Q0 508852 15 15.887360 Anserini +test3278 Q0 508853 16 15.871668 Anserini +test3278 Q0 7938079 17 15.845903 Anserini +test3278 Q0 5651748 18 15.792026 Anserini +test3278 Q0 1600168 19 15.737387 Anserini +test3278 Q0 6106427 20 15.717680 Anserini +test3278 Q0 1600158 21 15.710000 Anserini +test3278 Q0 2009824 22 15.547672 Anserini +test3278 Q0 473063 23 15.466225 Anserini +test3278 Q0 5661793 24 15.417161 Anserini +test3278 Q0 9564739 25 15.309309 Anserini +test3278 Q0 8599592 26 15.251932 Anserini +test3278 Q0 1828072 27 15.174134 Anserini +test3278 Q0 7429063 28 15.095613 Anserini +test3278 Q0 14143499 29 15.084372 Anserini +test3278 Q0 477447 30 15.068094 Anserini +test3279 Q0 473054 1 18.008297 Anserini +test3279 Q0 2763028 2 16.402300 Anserini +test3279 Q0 2763032 3 15.899014 Anserini +test3279 Q0 2763035 4 15.502478 Anserini +test3279 Q0 14451052 5 15.139167 Anserini +test3279 Q0 473074 6 15.082221 Anserini +test3279 Q0 3170590 7 15.015790 Anserini +test3279 Q0 67229 8 14.790960 Anserini +test3279 Q0 12928791 9 14.664963 Anserini +test3279 Q0 14398124 10 14.559036 Anserini +test3279 Q0 1819592 11 14.405577 Anserini +test3279 Q0 472789 12 14.346550 Anserini +test3279 Q0 12661950 13 14.291968 Anserini +test3279 Q0 22208 14 14.274386 Anserini +test3279 Q0 5868297 15 14.253248 Anserini +test3279 Q0 6360128 16 14.249818 Anserini +test3279 Q0 1830492 17 14.191134 Anserini +test3279 Q0 1783509 18 14.087616 Anserini +test3279 Q0 3099254 19 14.055912 Anserini +test3279 Q0 14451081 20 14.047701 Anserini +test3279 Q0 17280291 21 14.008433 Anserini +test3279 Q0 9578605 22 13.940969 Anserini +test3279 Q0 473088 23 13.902287 Anserini +test3279 Q0 3016756 24 13.824283 Anserini +test3279 Q0 8289494 25 13.810820 Anserini +test3279 Q0 7990975 26 13.770401 Anserini +test3279 Q0 5788359 27 13.770106 Anserini +test3279 Q0 15724144 28 13.651743 Anserini +test3279 Q0 67230 29 13.577685 Anserini +test3279 Q0 22210 30 13.571821 Anserini +test328 Q0 9284465 1 11.676387 Anserini +test328 Q0 8760012 2 11.655881 Anserini +test328 Q0 9425189 3 11.585367 Anserini +test328 Q0 9425177 4 11.585367 Anserini +test328 Q0 2892837 5 11.516741 Anserini +test328 Q0 2892858 6 11.089227 Anserini +test328 Q0 13174551 7 11.016511 Anserini +test328 Q0 8866472 8 10.843276 Anserini +test328 Q0 8760011 9 10.729552 Anserini +test328 Q0 17284878 10 10.591083 Anserini +test328 Q0 4830114 11 10.387721 Anserini +test328 Q0 9425188 12 10.219142 Anserini +test328 Q0 9284469 13 10.141729 Anserini +test328 Q0 18343008 14 10.084258 Anserini +test328 Q0 14127370 15 9.948461 Anserini +test328 Q0 18343014 16 9.888592 Anserini +test328 Q0 2892840 17 9.847664 Anserini +test328 Q0 4496361 18 9.754337 Anserini +test328 Q0 9523410 19 9.734098 Anserini +test328 Q0 8025153 20 9.678707 Anserini +test328 Q0 12310198 21 9.638975 Anserini +test328 Q0 8047863 22 9.621461 Anserini +test328 Q0 13984175 23 9.581317 Anserini +test328 Q0 13237010 24 9.484191 Anserini +test328 Q0 13984174 25 9.476289 Anserini +test328 Q0 10092617 26 9.463703 Anserini +test328 Q0 18342997 27 9.443810 Anserini +test328 Q0 7014441 28 9.442912 Anserini +test328 Q0 13984170 29 9.363383 Anserini +test328 Q0 18343015 30 9.346450 Anserini +test3280 Q0 2718419 1 12.941087 Anserini +test3280 Q0 16848920 2 12.462571 Anserini +test3280 Q0 2718406 3 12.200337 Anserini +test3280 Q0 2858476 4 12.152443 Anserini +test3280 Q0 12495312 5 11.909565 Anserini +test3280 Q0 15656580 6 11.793372 Anserini +test3280 Q0 10418212 7 11.779503 Anserini +test3280 Q0 3280518 8 11.643221 Anserini +test3280 Q0 20313696 9 11.611122 Anserini +test3280 Q0 18114828 10 11.376873 Anserini +test3280 Q0 17338430 11 11.369002 Anserini +test3280 Q0 17338433 12 11.369002 Anserini +test3280 Q0 8647549 13 11.308980 Anserini +test3280 Q0 12191590 14 11.242121 Anserini +test3280 Q0 2632438 15 11.216075 Anserini +test3280 Q0 7587653 16 11.199005 Anserini +test3280 Q0 2274409 17 11.183763 Anserini +test3280 Q0 8456666 18 11.174583 Anserini +test3280 Q0 12678888 19 11.165578 Anserini +test3280 Q0 12678890 20 11.165578 Anserini +test3280 Q0 16734070 21 11.158957 Anserini +test3280 Q0 13438945 22 11.077877 Anserini +test3280 Q0 20276217 23 11.053850 Anserini +test3280 Q0 2274412 24 11.015235 Anserini +test3280 Q0 4962614 25 10.951365 Anserini +test3280 Q0 12797250 26 10.928948 Anserini +test3280 Q0 12211743 27 10.928167 Anserini +test3280 Q0 12211744 28 10.928167 Anserini +test3280 Q0 15566832 29 10.895123 Anserini +test3280 Q0 7637573 30 10.892981 Anserini +test3281 Q0 3105288 1 14.305779 Anserini +test3281 Q0 13100672 2 14.237633 Anserini +test3281 Q0 4366873 3 13.714463 Anserini +test3281 Q0 12066770 4 13.360940 Anserini +test3281 Q0 2413742 5 13.340196 Anserini +test3281 Q0 14847464 6 13.329055 Anserini +test3281 Q0 7026944 7 13.302107 Anserini +test3281 Q0 807630 8 13.280564 Anserini +test3281 Q0 11477109 9 13.232349 Anserini +test3281 Q0 1919273 10 13.133611 Anserini +test3281 Q0 8172548 11 13.104439 Anserini +test3281 Q0 83722 12 12.997729 Anserini +test3281 Q0 2292823 13 12.994171 Anserini +test3281 Q0 3007844 14 12.967038 Anserini +test3281 Q0 13544747 15 12.909334 Anserini +test3281 Q0 243081 16 12.901937 Anserini +test3281 Q0 7300449 17 12.885476 Anserini +test3281 Q0 5242888 18 12.885426 Anserini +test3281 Q0 14738100 19 12.884807 Anserini +test3281 Q0 4910127 20 12.874882 Anserini +test3281 Q0 15010741 21 12.860637 Anserini +test3281 Q0 301531 22 12.805824 Anserini +test3281 Q0 437883 23 12.795650 Anserini +test3281 Q0 3484325 24 12.732194 Anserini +test3281 Q0 7074947 25 12.717966 Anserini +test3281 Q0 40578 26 12.654451 Anserini +test3281 Q0 40467 27 12.654451 Anserini +test3281 Q0 369827 28 12.626583 Anserini +test3281 Q0 15372489 29 12.589811 Anserini +test3281 Q0 4342090 30 12.588909 Anserini +test3282 Q0 11906379 1 14.909415 Anserini +test3282 Q0 9368350 2 14.836509 Anserini +test3282 Q0 492926 3 14.441457 Anserini +test3282 Q0 842429 4 14.424631 Anserini +test3282 Q0 8502979 5 14.135752 Anserini +test3282 Q0 9368107 6 14.119073 Anserini +test3282 Q0 17413705 7 14.099521 Anserini +test3282 Q0 772945 8 14.045432 Anserini +test3282 Q0 10430272 9 14.035452 Anserini +test3282 Q0 15609828 10 13.901197 Anserini +test3282 Q0 14516120 11 13.512094 Anserini +test3282 Q0 842428 12 13.483831 Anserini +test3282 Q0 13322923 13 13.414356 Anserini +test3282 Q0 12753746 14 13.061584 Anserini +test3282 Q0 20650939 15 12.932772 Anserini +test3282 Q0 492925 16 12.829417 Anserini +test3282 Q0 9299551 17 12.666312 Anserini +test3282 Q0 492915 18 12.641389 Anserini +test3282 Q0 16513703 19 12.564236 Anserini +test3282 Q0 7431510 20 12.523277 Anserini +test3282 Q0 16513709 21 12.494608 Anserini +test3282 Q0 14516118 22 12.475510 Anserini +test3282 Q0 11906378 23 12.474895 Anserini +test3282 Q0 6065261 24 12.450263 Anserini +test3282 Q0 492908 25 12.364654 Anserini +test3282 Q0 13849969 26 12.314387 Anserini +test3282 Q0 15030455 27 12.314090 Anserini +test3282 Q0 13765759 28 12.314090 Anserini +test3282 Q0 18135718 29 12.299191 Anserini +test3282 Q0 19359956 30 12.177786 Anserini +test3283 Q0 2421930 1 15.235253 Anserini +test3283 Q0 7714404 2 14.436541 Anserini +test3283 Q0 651668 3 13.885059 Anserini +test3283 Q0 2421934 4 13.875543 Anserini +test3283 Q0 9139589 5 13.689266 Anserini +test3283 Q0 9139598 6 13.689266 Anserini +test3283 Q0 15591664 7 13.678372 Anserini +test3283 Q0 4962365 8 13.582545 Anserini +test3283 Q0 12073200 9 13.506624 Anserini +test3283 Q0 2421937 10 13.500994 Anserini +test3283 Q0 15010521 11 13.405669 Anserini +test3283 Q0 12775918 12 13.183929 Anserini +test3283 Q0 8132413 13 12.990823 Anserini +test3283 Q0 8132414 14 12.990823 Anserini +test3283 Q0 7875523 15 12.937221 Anserini +test3283 Q0 12186084 16 12.862807 Anserini +test3283 Q0 2421918 17 12.830462 Anserini +test3283 Q0 7875528 18 12.474312 Anserini +test3283 Q0 9553127 19 12.467747 Anserini +test3283 Q0 9553124 20 12.467747 Anserini +test3283 Q0 2421931 21 12.379116 Anserini +test3283 Q0 10144470 22 12.285060 Anserini +test3283 Q0 9446428 23 12.276540 Anserini +test3283 Q0 18753921 24 12.093082 Anserini +test3283 Q0 13319621 25 12.050857 Anserini +test3283 Q0 2421932 26 12.023771 Anserini +test3283 Q0 6299008 27 12.023771 Anserini +test3283 Q0 12209478 28 11.941188 Anserini +test3283 Q0 11268825 29 11.929903 Anserini +test3283 Q0 2421936 30 11.767246 Anserini +test3284 Q0 5056133 1 11.109877 Anserini +test3284 Q0 11588844 2 11.109701 Anserini +test3284 Q0 9911253 3 10.951841 Anserini +test3284 Q0 17018671 4 10.782558 Anserini +test3284 Q0 521495 5 10.759824 Anserini +test3284 Q0 11262240 6 10.703907 Anserini +test3284 Q0 11221725 7 10.619356 Anserini +test3284 Q0 6556404 8 10.589687 Anserini +test3284 Q0 9209203 9 10.562929 Anserini +test3284 Q0 9228199 10 10.534255 Anserini +test3284 Q0 20183148 11 10.490030 Anserini +test3284 Q0 5923045 12 10.442951 Anserini +test3284 Q0 12261657 13 10.419666 Anserini +test3284 Q0 20748654 14 10.398861 Anserini +test3284 Q0 2944356 15 10.381000 Anserini +test3284 Q0 10235513 16 10.380203 Anserini +test3284 Q0 8879308 17 10.334525 Anserini +test3284 Q0 526099 18 10.328732 Anserini +test3284 Q0 2546223 19 10.316689 Anserini +test3284 Q0 11703347 20 10.293877 Anserini +test3284 Q0 5567084 21 10.288995 Anserini +test3284 Q0 1654940 22 10.265171 Anserini +test3284 Q0 14531414 23 10.262993 Anserini +test3284 Q0 1694332 24 10.249362 Anserini +test3284 Q0 5263423 25 10.198828 Anserini +test3284 Q0 18294905 26 10.197128 Anserini +test3284 Q0 14646307 27 10.179163 Anserini +test3284 Q0 1302089 28 10.143904 Anserini +test3284 Q0 17018670 29 10.137785 Anserini +test3284 Q0 4842422 30 10.115322 Anserini +test3285 Q0 20005706 1 14.127529 Anserini +test3285 Q0 20005714 2 13.013245 Anserini +test3285 Q0 6438766 3 13.007301 Anserini +test3285 Q0 6438753 4 12.885773 Anserini +test3285 Q0 6177035 5 12.797823 Anserini +test3285 Q0 19715829 6 12.674026 Anserini +test3285 Q0 19715831 7 12.674026 Anserini +test3285 Q0 20075051 8 12.592331 Anserini +test3285 Q0 6438762 9 12.591394 Anserini +test3285 Q0 20073164 10 12.552143 Anserini +test3285 Q0 20005707 11 12.506474 Anserini +test3285 Q0 19129151 12 12.427918 Anserini +test3285 Q0 20078372 13 12.292387 Anserini +test3285 Q0 20317668 14 12.190310 Anserini +test3285 Q0 20490191 15 12.143402 Anserini +test3285 Q0 19714511 16 12.082479 Anserini +test3285 Q0 19729979 17 12.054994 Anserini +test3285 Q0 20317665 18 12.050912 Anserini +test3285 Q0 19729960 19 12.050912 Anserini +test3285 Q0 19729982 20 12.050912 Anserini +test3285 Q0 19950265 21 12.031585 Anserini +test3285 Q0 12925925 22 12.017055 Anserini +test3285 Q0 16769187 23 11.965566 Anserini +test3285 Q0 20216256 24 11.930908 Anserini +test3285 Q0 12639911 25 11.748756 Anserini +test3285 Q0 19964322 26 11.696814 Anserini +test3285 Q0 8384073 27 11.690381 Anserini +test3285 Q0 3578857 28 11.513097 Anserini +test3285 Q0 845836 29 11.496276 Anserini +test3285 Q0 12240181 30 11.485442 Anserini +test3286 Q0 18016056 1 18.161236 Anserini +test3286 Q0 4059834 2 17.956989 Anserini +test3286 Q0 14433424 3 17.660870 Anserini +test3286 Q0 8771430 4 17.660030 Anserini +test3286 Q0 5558554 5 17.454597 Anserini +test3286 Q0 5558559 6 17.336163 Anserini +test3286 Q0 8812704 7 17.261059 Anserini +test3286 Q0 8771429 8 17.117983 Anserini +test3286 Q0 5402540 9 17.113039 Anserini +test3286 Q0 12402708 10 17.094446 Anserini +test3286 Q0 14433403 11 17.089317 Anserini +test3286 Q0 19166310 12 17.064419 Anserini +test3286 Q0 12402678 13 17.045124 Anserini +test3286 Q0 8771432 14 17.045124 Anserini +test3286 Q0 12402710 15 17.023729 Anserini +test3286 Q0 17242966 16 16.986971 Anserini +test3286 Q0 12402739 17 16.977747 Anserini +test3286 Q0 12402681 18 16.938040 Anserini +test3286 Q0 12137012 19 16.938040 Anserini +test3286 Q0 3897231 20 16.771282 Anserini +test3286 Q0 10291393 21 16.752338 Anserini +test3286 Q0 8812724 22 16.737804 Anserini +test3286 Q0 12870196 23 16.716444 Anserini +test3286 Q0 12402679 24 16.678432 Anserini +test3286 Q0 12402733 25 16.657167 Anserini +test3286 Q0 19166312 26 16.498247 Anserini +test3286 Q0 2040562 27 16.440571 Anserini +test3286 Q0 17954412 28 16.381102 Anserini +test3286 Q0 5402539 29 16.301586 Anserini +test3286 Q0 20939271 30 16.295712 Anserini +test3287 Q0 6050755 1 10.066847 Anserini +test3287 Q0 6050766 2 9.966824 Anserini +test3287 Q0 10720780 3 9.797704 Anserini +test3287 Q0 18546160 4 9.614155 Anserini +test3287 Q0 13363835 5 9.435349 Anserini +test3287 Q0 1241049 6 9.141129 Anserini +test3287 Q0 14537121 7 9.137863 Anserini +test3287 Q0 14537123 8 9.086525 Anserini +test3287 Q0 979388 9 9.048676 Anserini +test3287 Q0 15514164 10 9.006306 Anserini +test3287 Q0 2579357 11 8.961338 Anserini +test3287 Q0 6991903 12 8.883704 Anserini +test3287 Q0 979372 13 8.769165 Anserini +test3287 Q0 4310049 14 8.757218 Anserini +test3287 Q0 979373 15 8.741937 Anserini +test3287 Q0 13534419 16 8.741937 Anserini +test3287 Q0 979375 17 8.731795 Anserini +test3287 Q0 979393 18 8.669142 Anserini +test3287 Q0 4310043 19 8.657724 Anserini +test3287 Q0 5991721 20 8.644827 Anserini +test3287 Q0 17515947 21 8.581813 Anserini +test3287 Q0 1948937 22 8.581813 Anserini +test3287 Q0 1141970 23 8.496049 Anserini +test3287 Q0 14537122 24 8.460325 Anserini +test3287 Q0 6799442 25 8.405311 Anserini +test3287 Q0 979377 26 8.357612 Anserini +test3287 Q0 979383 27 8.323910 Anserini +test3287 Q0 4831543 28 8.311406 Anserini +test3287 Q0 4831546 29 8.311406 Anserini +test3287 Q0 2101887 30 8.274146 Anserini +test3288 Q0 4834653 1 10.515875 Anserini +test3288 Q0 4834643 2 10.460142 Anserini +test3288 Q0 636378 3 9.796447 Anserini +test3288 Q0 18616909 4 9.642891 Anserini +test3288 Q0 20419585 5 9.489542 Anserini +test3288 Q0 1523913 6 9.421812 Anserini +test3288 Q0 7889569 7 9.374554 Anserini +test3288 Q0 20419584 8 9.348664 Anserini +test3288 Q0 4723916 9 9.304756 Anserini +test3288 Q0 4723911 10 9.253489 Anserini +test3288 Q0 9171487 11 9.222186 Anserini +test3288 Q0 1359299 12 9.124343 Anserini +test3288 Q0 3501349 13 9.111668 Anserini +test3288 Q0 862012 14 9.101845 Anserini +test3288 Q0 17231606 15 9.070444 Anserini +test3288 Q0 1868495 16 9.046388 Anserini +test3288 Q0 15015422 17 8.971345 Anserini +test3288 Q0 3710643 18 8.944292 Anserini +test3288 Q0 15446952 19 8.839162 Anserini +test3288 Q0 481565 20 8.786991 Anserini +test3288 Q0 11282355 21 8.773106 Anserini +test3288 Q0 9323610 22 8.728015 Anserini +test3288 Q0 17671528 23 8.700092 Anserini +test3288 Q0 2015588 24 8.673137 Anserini +test3288 Q0 18875572 25 8.655396 Anserini +test3288 Q0 1273774 26 8.630193 Anserini +test3288 Q0 253250 27 8.623505 Anserini +test3288 Q0 15437462 28 8.623336 Anserini +test3288 Q0 1350384 29 8.602784 Anserini +test3288 Q0 11425392 30 8.550568 Anserini +test3289 Q0 13706808 1 14.568890 Anserini +test3289 Q0 13706788 2 13.993920 Anserini +test3289 Q0 20842120 3 13.051156 Anserini +test3289 Q0 1662400 4 13.034324 Anserini +test3289 Q0 967312 5 12.536317 Anserini +test3289 Q0 14308159 6 12.480035 Anserini +test3289 Q0 8834262 7 12.452840 Anserini +test3289 Q0 11085702 8 12.397463 Anserini +test3289 Q0 14284970 9 12.312057 Anserini +test3289 Q0 13706807 10 12.295002 Anserini +test3289 Q0 962653 11 12.162815 Anserini +test3289 Q0 1567829 12 12.121507 Anserini +test3289 Q0 13299302 13 12.070175 Anserini +test3289 Q0 20842119 14 12.029293 Anserini +test3289 Q0 13706787 15 12.003339 Anserini +test3289 Q0 20619614 16 11.979270 Anserini +test3289 Q0 13706805 17 11.861175 Anserini +test3289 Q0 967762 18 11.857030 Anserini +test3289 Q0 967730 19 11.803589 Anserini +test3289 Q0 20117578 20 11.797419 Anserini +test3289 Q0 965014 21 11.689778 Anserini +test3289 Q0 1662445 22 11.672413 Anserini +test3289 Q0 1662449 23 11.672413 Anserini +test3289 Q0 967746 24 11.659582 Anserini +test3289 Q0 962656 25 11.567725 Anserini +test3289 Q0 1567830 26 11.550541 Anserini +test3289 Q0 2027050 27 11.480179 Anserini +test3289 Q0 13335523 28 11.439647 Anserini +test3289 Q0 8747673 29 11.333490 Anserini +test3289 Q0 20005559 30 11.266498 Anserini +test329 Q0 12366339 1 9.794657 Anserini +test329 Q0 7710546 2 9.744730 Anserini +test329 Q0 5835046 3 9.280195 Anserini +test329 Q0 733608 4 9.097607 Anserini +test329 Q0 4034763 5 8.697773 Anserini +test329 Q0 14089017 6 8.670146 Anserini +test329 Q0 14447294 7 8.606774 Anserini +test329 Q0 16048331 8 8.594121 Anserini +test329 Q0 11835189 9 8.296825 Anserini +test329 Q0 106604 10 8.200030 Anserini +test329 Q0 7208067 11 8.200030 Anserini +test329 Q0 2719926 12 8.200030 Anserini +test329 Q0 14084988 13 8.171937 Anserini +test329 Q0 7002741 14 8.148870 Anserini +test329 Q0 12366343 15 8.148870 Anserini +test329 Q0 17649028 16 8.146818 Anserini +test329 Q0 8837045 17 8.126410 Anserini +test329 Q0 9440113 18 8.126410 Anserini +test329 Q0 14003996 19 8.076938 Anserini +test329 Q0 15041021 20 8.064190 Anserini +test329 Q0 1438751 21 8.054155 Anserini +test329 Q0 10570629 22 8.010905 Anserini +test329 Q0 14428478 23 8.006319 Anserini +test329 Q0 17133079 24 8.006319 Anserini +test329 Q0 10294311 25 8.006319 Anserini +test329 Q0 12112100 26 7.985570 Anserini +test329 Q0 2893981 27 7.983232 Anserini +test329 Q0 3810714 28 7.983232 Anserini +test329 Q0 18899617 29 7.979314 Anserini +test329 Q0 14882296 30 7.962327 Anserini +test3290 Q0 20437819 1 10.554250 Anserini +test3290 Q0 13677913 2 10.505116 Anserini +test3290 Q0 20768492 3 10.246498 Anserini +test3290 Q0 20189434 4 10.061025 Anserini +test3290 Q0 20116839 5 10.002123 Anserini +test3290 Q0 20116838 6 9.985571 Anserini +test3290 Q0 19075192 7 9.963199 Anserini +test3290 Q0 20437821 8 9.913716 Anserini +test3290 Q0 19765477 9 9.860367 Anserini +test3290 Q0 4172027 10 9.827425 Anserini +test3290 Q0 9665022 11 9.817875 Anserini +test3290 Q0 12918947 12 9.796299 Anserini +test3290 Q0 15835240 13 9.724185 Anserini +test3290 Q0 20776535 14 9.681294 Anserini +test3290 Q0 15645744 15 9.656319 Anserini +test3290 Q0 271835 16 9.647286 Anserini +test3290 Q0 5205444 17 9.608483 Anserini +test3290 Q0 18216210 18 9.578862 Anserini +test3290 Q0 1222349 19 9.578001 Anserini +test3290 Q0 3183940 20 9.565244 Anserini +test3290 Q0 19918295 21 9.531015 Anserini +test3290 Q0 20023953 22 9.524290 Anserini +test3290 Q0 5268300 23 9.520870 Anserini +test3290 Q0 20105822 24 9.504933 Anserini +test3290 Q0 6856978 25 9.494566 Anserini +test3290 Q0 11996124 26 9.488810 Anserini +test3290 Q0 20185807 27 9.448172 Anserini +test3290 Q0 5268299 28 9.443856 Anserini +test3290 Q0 10275673 29 9.440872 Anserini +test3290 Q0 13500639 30 9.426878 Anserini +test3291 Q0 5700632 1 17.765432 Anserini +test3291 Q0 814637 2 15.853016 Anserini +test3291 Q0 5172824 3 15.770219 Anserini +test3291 Q0 12057868 4 15.680056 Anserini +test3291 Q0 18036314 5 15.152812 Anserini +test3291 Q0 765603 6 15.143434 Anserini +test3291 Q0 10047028 7 15.091058 Anserini +test3291 Q0 6256545 8 15.085675 Anserini +test3291 Q0 6291229 9 15.069356 Anserini +test3291 Q0 3638292 10 15.056742 Anserini +test3291 Q0 12910849 11 15.039104 Anserini +test3291 Q0 3167034 12 14.903765 Anserini +test3291 Q0 10957108 13 14.892548 Anserini +test3291 Q0 10047024 14 14.876473 Anserini +test3291 Q0 11234438 15 14.795167 Anserini +test3291 Q0 4973419 16 14.766317 Anserini +test3291 Q0 4659166 17 14.733063 Anserini +test3291 Q0 3461802 18 14.720858 Anserini +test3291 Q0 19552277 19 14.653786 Anserini +test3291 Q0 15259026 20 14.649523 Anserini +test3291 Q0 6640378 21 14.470871 Anserini +test3291 Q0 14832367 22 14.448996 Anserini +test3291 Q0 5700620 23 14.374635 Anserini +test3291 Q0 13329716 24 14.329367 Anserini +test3291 Q0 4986118 25 14.328719 Anserini +test3291 Q0 15527943 26 14.297849 Anserini +test3291 Q0 11874642 27 14.240438 Anserini +test3291 Q0 18528489 28 14.188617 Anserini +test3291 Q0 2920005 29 14.169611 Anserini +test3291 Q0 6598053 30 14.132931 Anserini +test3292 Q0 17581261 1 12.526019 Anserini +test3292 Q0 4736775 2 12.404967 Anserini +test3292 Q0 20898296 3 11.880402 Anserini +test3292 Q0 20050341 4 11.745788 Anserini +test3292 Q0 17189767 5 11.547064 Anserini +test3292 Q0 16893347 6 11.479071 Anserini +test3292 Q0 9528575 7 11.465089 Anserini +test3292 Q0 5787099 8 11.454091 Anserini +test3292 Q0 16893350 9 11.437828 Anserini +test3292 Q0 2327734 10 11.321635 Anserini +test3292 Q0 11209902 11 11.287439 Anserini +test3292 Q0 18989477 12 11.281638 Anserini +test3292 Q0 17347204 13 11.204941 Anserini +test3292 Q0 2660671 14 11.142045 Anserini +test3292 Q0 3528110 15 10.993083 Anserini +test3292 Q0 9190201 16 10.917118 Anserini +test3292 Q0 17948122 17 10.886182 Anserini +test3292 Q0 4736770 18 10.819859 Anserini +test3292 Q0 11229842 19 10.787249 Anserini +test3292 Q0 17795031 20 10.786019 Anserini +test3292 Q0 341966 21 10.766739 Anserini +test3292 Q0 15365458 22 10.760342 Anserini +test3292 Q0 7022174 23 10.734537 Anserini +test3292 Q0 14950171 24 10.613288 Anserini +test3292 Q0 15814830 25 10.598076 Anserini +test3292 Q0 9850460 26 10.522791 Anserini +test3292 Q0 4028911 27 10.512752 Anserini +test3292 Q0 18445040 28 10.443911 Anserini +test3292 Q0 17347201 29 10.412703 Anserini +test3292 Q0 661380 30 10.318392 Anserini +test3293 Q0 17652140 1 11.162118 Anserini +test3293 Q0 4212214 2 10.539740 Anserini +test3293 Q0 5961604 3 10.532592 Anserini +test3293 Q0 1068172 4 10.028310 Anserini +test3293 Q0 4975417 5 9.700829 Anserini +test3293 Q0 19057260 6 9.517529 Anserini +test3293 Q0 13756567 7 9.459078 Anserini +test3293 Q0 1267259 8 9.440439 Anserini +test3293 Q0 8746830 9 9.360462 Anserini +test3293 Q0 3443558 10 9.360462 Anserini +test3293 Q0 12167057 11 9.297835 Anserini +test3293 Q0 20071335 12 9.260875 Anserini +test3293 Q0 18488774 13 9.216585 Anserini +test3293 Q0 2275787 14 9.163385 Anserini +test3293 Q0 9694118 15 9.055653 Anserini +test3293 Q0 19068163 16 9.022509 Anserini +test3293 Q0 298254 17 9.019512 Anserini +test3293 Q0 4282435 18 8.961164 Anserini +test3293 Q0 8011490 19 8.943048 Anserini +test3293 Q0 19415126 20 8.905085 Anserini +test3293 Q0 14655522 21 8.884752 Anserini +test3293 Q0 20760416 22 8.870897 Anserini +test3293 Q0 14471689 23 8.823429 Anserini +test3293 Q0 19476918 24 8.819259 Anserini +test3293 Q0 9940143 25 8.814471 Anserini +test3293 Q0 14016392 26 8.812342 Anserini +test3293 Q0 14274987 27 8.752097 Anserini +test3293 Q0 12066670 28 8.739189 Anserini +test3293 Q0 423006 29 8.694336 Anserini +test3293 Q0 13084217 30 8.677582 Anserini +test3294 Q0 5033530 1 19.182217 Anserini +test3294 Q0 5033532 2 18.612272 Anserini +test3294 Q0 12490294 3 14.093026 Anserini +test3294 Q0 1370102 4 13.789552 Anserini +test3294 Q0 5733464 5 13.751654 Anserini +test3294 Q0 8105357 6 13.721050 Anserini +test3294 Q0 4442700 7 13.395269 Anserini +test3294 Q0 7288447 8 13.268147 Anserini +test3294 Q0 15712152 9 13.170277 Anserini +test3294 Q0 9106750 10 13.170277 Anserini +test3294 Q0 13190546 11 13.170277 Anserini +test3294 Q0 6092682 12 13.141032 Anserini +test3294 Q0 5409530 13 13.134997 Anserini +test3294 Q0 1599783 14 13.104807 Anserini +test3294 Q0 15343250 15 13.038123 Anserini +test3294 Q0 8053334 16 13.038123 Anserini +test3294 Q0 3716365 17 13.011416 Anserini +test3294 Q0 5674649 18 12.906598 Anserini +test3294 Q0 9938695 19 12.900286 Anserini +test3294 Q0 5733468 20 12.852397 Anserini +test3294 Q0 20422487 21 12.806456 Anserini +test3294 Q0 5033531 22 12.754204 Anserini +test3294 Q0 18625823 23 12.754204 Anserini +test3294 Q0 7268535 24 12.721202 Anserini +test3294 Q0 8660530 25 12.719078 Anserini +test3294 Q0 6552502 26 12.701800 Anserini +test3294 Q0 5410281 27 12.700812 Anserini +test3294 Q0 15413501 28 12.641929 Anserini +test3294 Q0 10146080 29 12.629446 Anserini +test3294 Q0 11272729 30 12.614283 Anserini +test3295 Q0 18935122 1 19.098875 Anserini +test3295 Q0 12445534 2 17.418203 Anserini +test3295 Q0 13464555 3 17.400017 Anserini +test3295 Q0 1903525 4 16.776302 Anserini +test3295 Q0 1534057 5 16.471546 Anserini +test3295 Q0 658006 6 16.460032 Anserini +test3295 Q0 18942082 7 16.451330 Anserini +test3295 Q0 11039007 8 16.451330 Anserini +test3295 Q0 11771411 9 16.349476 Anserini +test3295 Q0 19849022 10 16.147091 Anserini +test3295 Q0 1534070 11 16.125374 Anserini +test3295 Q0 18935129 12 16.006723 Anserini +test3295 Q0 18935128 13 15.771043 Anserini +test3295 Q0 13899645 14 15.756542 Anserini +test3295 Q0 2798760 15 15.632078 Anserini +test3295 Q0 1534073 16 15.289764 Anserini +test3295 Q0 16506009 17 15.181050 Anserini +test3295 Q0 3337238 18 14.866862 Anserini +test3295 Q0 20667716 19 14.845602 Anserini +test3295 Q0 658002 20 14.783093 Anserini +test3295 Q0 17513160 21 14.653430 Anserini +test3295 Q0 17513161 22 14.633656 Anserini +test3295 Q0 4663111 23 14.585845 Anserini +test3295 Q0 13513925 24 14.472193 Anserini +test3295 Q0 17049454 25 14.428322 Anserini +test3295 Q0 18648272 26 14.428322 Anserini +test3295 Q0 658005 27 14.386005 Anserini +test3295 Q0 6930891 28 14.232670 Anserini +test3295 Q0 6930735 29 14.232670 Anserini +test3295 Q0 6930736 30 14.232670 Anserini +test3296 Q0 5004769 1 18.389391 Anserini +test3296 Q0 10794109 2 16.753052 Anserini +test3296 Q0 14456527 3 16.588337 Anserini +test3296 Q0 13762467 4 16.299381 Anserini +test3296 Q0 14760012 5 16.147156 Anserini +test3296 Q0 2600749 6 15.648823 Anserini +test3296 Q0 8592891 7 15.640628 Anserini +test3296 Q0 14791815 8 15.609552 Anserini +test3296 Q0 14791816 9 15.591400 Anserini +test3296 Q0 17279789 10 15.540485 Anserini +test3296 Q0 2090379 11 15.511663 Anserini +test3296 Q0 13762477 12 15.507601 Anserini +test3296 Q0 8686072 13 15.376986 Anserini +test3296 Q0 17306578 14 15.364620 Anserini +test3296 Q0 8592882 15 15.071321 Anserini +test3296 Q0 8592901 16 14.970630 Anserini +test3296 Q0 13762476 17 14.760474 Anserini +test3296 Q0 13250057 18 14.706773 Anserini +test3296 Q0 18839817 19 14.578451 Anserini +test3296 Q0 10334180 20 14.578451 Anserini +test3296 Q0 8421538 21 14.514488 Anserini +test3296 Q0 8592902 22 14.492756 Anserini +test3296 Q0 18631410 23 14.482711 Anserini +test3296 Q0 12357684 24 14.460382 Anserini +test3296 Q0 20154912 25 14.434692 Anserini +test3296 Q0 14472480 26 14.329951 Anserini +test3296 Q0 7147720 27 14.286384 Anserini +test3296 Q0 242572 28 14.246177 Anserini +test3296 Q0 14303911 29 13.985964 Anserini +test3296 Q0 8592900 30 13.975962 Anserini +test3297 Q0 19577033 1 15.156463 Anserini +test3297 Q0 20124797 2 14.543490 Anserini +test3297 Q0 20124788 3 13.929917 Anserini +test3297 Q0 19577044 4 13.604556 Anserini +test3297 Q0 19577046 5 13.604556 Anserini +test3297 Q0 18169585 6 13.350696 Anserini +test3297 Q0 20124779 7 13.250361 Anserini +test3297 Q0 19577027 8 12.492385 Anserini +test3297 Q0 5812163 9 12.386175 Anserini +test3297 Q0 16910839 10 12.009798 Anserini +test3297 Q0 175202 11 11.829351 Anserini +test3297 Q0 5812178 12 11.829149 Anserini +test3297 Q0 4922494 13 11.142684 Anserini +test3297 Q0 19976063 14 11.135292 Anserini +test3297 Q0 18169615 15 11.072420 Anserini +test3297 Q0 17836187 16 11.071424 Anserini +test3297 Q0 19969243 17 10.972673 Anserini +test3297 Q0 20124790 18 10.874782 Anserini +test3297 Q0 19407463 19 10.874782 Anserini +test3297 Q0 19577032 20 10.583608 Anserini +test3297 Q0 15460013 21 10.453700 Anserini +test3297 Q0 18057211 22 10.342483 Anserini +test3297 Q0 143979 23 10.271544 Anserini +test3297 Q0 19577045 24 10.149599 Anserini +test3297 Q0 4276496 25 10.112400 Anserini +test3297 Q0 18169584 26 10.051548 Anserini +test3297 Q0 18169589 27 10.050631 Anserini +test3297 Q0 18169586 28 9.942552 Anserini +test3297 Q0 17423080 29 9.896691 Anserini +test3297 Q0 20124789 30 9.842748 Anserini +test3298 Q0 2056055 1 11.723711 Anserini +test3298 Q0 4764814 2 11.545014 Anserini +test3298 Q0 14966973 3 11.538374 Anserini +test3298 Q0 11955337 4 11.495112 Anserini +test3298 Q0 5470899 5 11.456265 Anserini +test3298 Q0 1480081 6 11.268146 Anserini +test3298 Q0 1558544 7 11.242264 Anserini +test3298 Q0 15617189 8 11.126787 Anserini +test3298 Q0 8674775 9 11.067389 Anserini +test3298 Q0 4057302 10 11.057476 Anserini +test3298 Q0 6876183 11 10.921715 Anserini +test3298 Q0 4249644 12 10.913995 Anserini +test3298 Q0 8723325 13 10.868555 Anserini +test3298 Q0 16149010 14 10.834147 Anserini +test3298 Q0 15907011 15 10.804970 Anserini +test3298 Q0 11245094 16 10.746130 Anserini +test3298 Q0 8700787 17 10.738354 Anserini +test3298 Q0 8959823 18 10.729305 Anserini +test3298 Q0 531082 19 10.719585 Anserini +test3298 Q0 16367612 20 10.717393 Anserini +test3298 Q0 15182805 21 10.694860 Anserini +test3298 Q0 555362 22 10.690049 Anserini +test3298 Q0 1505074 23 10.681204 Anserini +test3298 Q0 13450146 24 10.673962 Anserini +test3298 Q0 13389288 25 10.664208 Anserini +test3298 Q0 4508079 26 10.617856 Anserini +test3298 Q0 8115928 27 10.608548 Anserini +test3298 Q0 14145256 28 10.604858 Anserini +test3298 Q0 3339224 29 10.592251 Anserini +test3298 Q0 3339293 30 10.592251 Anserini +test3299 Q0 12608655 1 16.033810 Anserini +test3299 Q0 15128516 2 14.690086 Anserini +test3299 Q0 15128514 3 14.172158 Anserini +test3299 Q0 15946316 4 14.089853 Anserini +test3299 Q0 12608648 5 13.884107 Anserini +test3299 Q0 15944717 6 13.453707 Anserini +test3299 Q0 12608653 7 13.376917 Anserini +test3299 Q0 15946317 8 13.265408 Anserini +test3299 Q0 13337177 9 13.215310 Anserini +test3299 Q0 12608665 10 13.135606 Anserini +test3299 Q0 15944715 11 12.990293 Anserini +test3299 Q0 12608658 12 12.796442 Anserini +test3299 Q0 15946321 13 12.793737 Anserini +test3299 Q0 12608661 14 12.785759 Anserini +test3299 Q0 17230007 15 12.673502 Anserini +test3299 Q0 15946320 16 12.220024 Anserini +test3299 Q0 18929493 17 11.773376 Anserini +test3299 Q0 10904472 18 11.745746 Anserini +test3299 Q0 16602906 19 11.601948 Anserini +test3299 Q0 20753040 20 11.574244 Anserini +test3299 Q0 2650942 21 11.546642 Anserini +test3299 Q0 14957564 22 11.502560 Anserini +test3299 Q0 12608663 23 11.471523 Anserini +test3299 Q0 12608659 24 11.438202 Anserini +test3299 Q0 18562348 25 11.399171 Anserini +test3299 Q0 7197816 26 11.369284 Anserini +test3299 Q0 9905510 27 11.272939 Anserini +test3299 Q0 12608664 28 11.265079 Anserini +test3299 Q0 15946315 29 11.095184 Anserini +test3299 Q0 15946319 30 10.949330 Anserini +test33 Q0 376017 1 20.033115 Anserini +test33 Q0 9652938 2 18.137192 Anserini +test33 Q0 3592315 3 17.940107 Anserini +test33 Q0 3592343 4 17.600767 Anserini +test33 Q0 17117756 5 17.386848 Anserini +test33 Q0 17117753 6 17.221981 Anserini +test33 Q0 2518706 7 16.988558 Anserini +test33 Q0 19212710 8 16.939861 Anserini +test33 Q0 11872314 9 16.926941 Anserini +test33 Q0 8915774 10 16.522453 Anserini +test33 Q0 12304617 11 16.344147 Anserini +test33 Q0 10798215 12 16.112816 Anserini +test33 Q0 3592360 13 15.828900 Anserini +test33 Q0 3037949 14 15.823613 Anserini +test33 Q0 10798216 15 15.681732 Anserini +test33 Q0 3553547 16 15.612932 Anserini +test33 Q0 4368754 17 15.612932 Anserini +test33 Q0 1357936 18 15.368423 Anserini +test33 Q0 5732107 19 15.334969 Anserini +test33 Q0 162716 20 15.304761 Anserini +test33 Q0 3144174 21 15.242687 Anserini +test33 Q0 7289917 22 15.163052 Anserini +test33 Q0 17551245 23 15.024027 Anserini +test33 Q0 20318046 24 14.925109 Anserini +test33 Q0 3592342 25 14.875818 Anserini +test33 Q0 3592313 26 14.873353 Anserini +test33 Q0 9927811 27 14.431707 Anserini +test33 Q0 3592345 28 14.323195 Anserini +test33 Q0 12070975 29 14.315622 Anserini +test33 Q0 12070976 30 14.315622 Anserini +test330 Q0 9444027 1 12.342275 Anserini +test330 Q0 9444029 2 11.737929 Anserini +test330 Q0 4174216 3 11.351218 Anserini +test330 Q0 18757463 4 11.263549 Anserini +test330 Q0 4174206 5 11.166226 Anserini +test330 Q0 16356627 6 11.134624 Anserini +test330 Q0 16045454 7 10.972095 Anserini +test330 Q0 3798392 8 10.943464 Anserini +test330 Q0 18757467 9 10.895548 Anserini +test330 Q0 2029141 10 10.677973 Anserini +test330 Q0 689152 11 10.654137 Anserini +test330 Q0 615913 12 10.601149 Anserini +test330 Q0 3429986 13 10.452319 Anserini +test330 Q0 15635393 14 10.183123 Anserini +test330 Q0 13589462 15 10.170103 Anserini +test330 Q0 6413899 16 10.118649 Anserini +test330 Q0 2487227 17 10.113601 Anserini +test330 Q0 4154225 18 10.096989 Anserini +test330 Q0 12576553 19 10.096185 Anserini +test330 Q0 15635392 20 10.079733 Anserini +test330 Q0 10703750 21 10.017467 Anserini +test330 Q0 9229035 22 9.977901 Anserini +test330 Q0 4951200 23 9.977901 Anserini +test330 Q0 10660379 24 9.953444 Anserini +test330 Q0 12257381 25 9.943425 Anserini +test330 Q0 1481592 26 9.923544 Anserini +test330 Q0 4904365 27 9.923544 Anserini +test330 Q0 2216926 28 9.869815 Anserini +test330 Q0 10174253 29 9.869815 Anserini +test330 Q0 1486522 30 9.839077 Anserini +test3300 Q0 13661627 1 10.303408 Anserini +test3300 Q0 20508425 2 10.218581 Anserini +test3300 Q0 2242184 3 10.128262 Anserini +test3300 Q0 18174970 4 10.044481 Anserini +test3300 Q0 13888941 5 9.702267 Anserini +test3300 Q0 13823148 6 9.596847 Anserini +test3300 Q0 3405754 7 9.396162 Anserini +test3300 Q0 16412588 8 9.359492 Anserini +test3300 Q0 16496885 9 9.307050 Anserini +test3300 Q0 12889183 10 9.306623 Anserini +test3300 Q0 2048852 11 9.237946 Anserini +test3300 Q0 19602377 12 9.181314 Anserini +test3300 Q0 2608446 13 9.157013 Anserini +test3300 Q0 8130379 14 9.150166 Anserini +test3300 Q0 11473986 15 9.090359 Anserini +test3300 Q0 12889151 16 9.090359 Anserini +test3300 Q0 9697775 17 9.056705 Anserini +test3300 Q0 7618344 18 9.021795 Anserini +test3300 Q0 53812 19 9.021795 Anserini +test3300 Q0 12667863 20 9.021795 Anserini +test3300 Q0 12623966 21 9.005114 Anserini +test3300 Q0 12889189 22 8.932155 Anserini +test3300 Q0 8498843 23 8.915515 Anserini +test3300 Q0 12400527 24 8.868062 Anserini +test3300 Q0 1286762 25 8.843736 Anserini +test3300 Q0 96331 26 8.772260 Anserini +test3300 Q0 3359595 27 8.768532 Anserini +test3300 Q0 12889149 28 8.760855 Anserini +test3300 Q0 12889177 29 8.718488 Anserini +test3300 Q0 6985254 30 8.712984 Anserini +test3301 Q0 14638327 1 19.361574 Anserini +test3301 Q0 14638330 2 19.361574 Anserini +test3301 Q0 16079676 3 17.004379 Anserini +test3301 Q0 16079674 4 16.769817 Anserini +test3301 Q0 16079677 5 16.769817 Anserini +test3301 Q0 14638329 6 16.769817 Anserini +test3301 Q0 9143682 7 15.629684 Anserini +test3301 Q0 14638328 8 15.062990 Anserini +test3301 Q0 6688373 9 14.984479 Anserini +test3301 Q0 2103043 10 14.893484 Anserini +test3301 Q0 1315068 11 14.671675 Anserini +test3301 Q0 13363016 12 13.542852 Anserini +test3301 Q0 3350797 13 13.073191 Anserini +test3301 Q0 10445470 14 13.073191 Anserini +test3301 Q0 10445472 15 13.073191 Anserini +test3301 Q0 115643 16 12.934104 Anserini +test3301 Q0 9199755 17 12.934104 Anserini +test3301 Q0 15619404 18 12.805767 Anserini +test3301 Q0 17012063 19 12.797947 Anserini +test3301 Q0 17438301 20 12.664625 Anserini +test3301 Q0 6135160 21 12.626155 Anserini +test3301 Q0 18387246 22 12.129099 Anserini +test3301 Q0 3161811 23 12.024731 Anserini +test3301 Q0 8425447 24 11.881373 Anserini +test3301 Q0 7616673 25 11.764142 Anserini +test3301 Q0 7303355 26 11.595113 Anserini +test3301 Q0 1638996 27 11.579994 Anserini +test3301 Q0 1315095 28 11.411727 Anserini +test3301 Q0 7616669 29 11.282966 Anserini +test3301 Q0 808977 30 11.275023 Anserini +test3302 Q0 13091900 1 20.256660 Anserini +test3302 Q0 13091898 2 17.247005 Anserini +test3302 Q0 17498686 3 17.202538 Anserini +test3302 Q0 14591679 4 17.130629 Anserini +test3302 Q0 14591686 5 17.050688 Anserini +test3302 Q0 14591683 6 16.925344 Anserini +test3302 Q0 14025660 7 16.833563 Anserini +test3302 Q0 14611116 8 16.552946 Anserini +test3302 Q0 14025665 9 16.422367 Anserini +test3302 Q0 14025661 10 15.840934 Anserini +test3302 Q0 13091897 11 15.766916 Anserini +test3302 Q0 13091902 12 15.494776 Anserini +test3302 Q0 14591682 13 15.365715 Anserini +test3302 Q0 18050932 14 15.306931 Anserini +test3302 Q0 14591684 15 15.248747 Anserini +test3302 Q0 13091901 16 15.246625 Anserini +test3302 Q0 13091896 17 15.236066 Anserini +test3302 Q0 14025662 18 15.111460 Anserini +test3302 Q0 14927660 19 15.043608 Anserini +test3302 Q0 14025664 20 15.013087 Anserini +test3302 Q0 13091903 21 14.971977 Anserini +test3302 Q0 13091892 22 14.777723 Anserini +test3302 Q0 14591680 23 14.738281 Anserini +test3302 Q0 14591685 24 14.695889 Anserini +test3302 Q0 13507380 25 14.674103 Anserini +test3302 Q0 10045749 26 14.629404 Anserini +test3302 Q0 18287931 27 14.602201 Anserini +test3302 Q0 14611124 28 14.536794 Anserini +test3302 Q0 14611123 29 14.482296 Anserini +test3302 Q0 14611117 30 14.274547 Anserini +test3303 Q0 1860073 1 15.560184 Anserini +test3303 Q0 4837704 2 14.622250 Anserini +test3303 Q0 1860067 3 13.688538 Anserini +test3303 Q0 8512877 4 13.548734 Anserini +test3303 Q0 1860061 5 13.528587 Anserini +test3303 Q0 4837713 6 13.510137 Anserini +test3303 Q0 5822522 7 13.405508 Anserini +test3303 Q0 1860057 8 13.249744 Anserini +test3303 Q0 19028510 9 13.240481 Anserini +test3303 Q0 1860071 10 13.238453 Anserini +test3303 Q0 1860050 11 13.198820 Anserini +test3303 Q0 16887692 12 13.095175 Anserini +test3303 Q0 10020513 13 13.024184 Anserini +test3303 Q0 1860056 14 12.919457 Anserini +test3303 Q0 13402497 15 12.800868 Anserini +test3303 Q0 3748668 16 12.619970 Anserini +test3303 Q0 4837709 17 12.549654 Anserini +test3303 Q0 5619050 18 12.549654 Anserini +test3303 Q0 1860051 19 12.407102 Anserini +test3303 Q0 9977497 20 12.399167 Anserini +test3303 Q0 8512880 21 12.383369 Anserini +test3303 Q0 17838512 22 12.336278 Anserini +test3303 Q0 18152899 23 12.304747 Anserini +test3303 Q0 7739546 24 12.304747 Anserini +test3303 Q0 13402496 25 12.264299 Anserini +test3303 Q0 2738948 26 12.238484 Anserini +test3303 Q0 3218153 27 12.233036 Anserini +test3303 Q0 1860062 28 12.221359 Anserini +test3303 Q0 17838499 29 12.213290 Anserini +test3303 Q0 20302938 30 12.197723 Anserini +test3304 Q0 16623339 1 12.598986 Anserini +test3304 Q0 10266640 2 11.625038 Anserini +test3304 Q0 83852 3 10.976130 Anserini +test3304 Q0 18429940 4 10.968624 Anserini +test3304 Q0 13142260 5 10.805307 Anserini +test3304 Q0 18429935 6 10.746525 Anserini +test3304 Q0 17895149 7 10.650961 Anserini +test3304 Q0 5930796 8 10.535099 Anserini +test3304 Q0 17332350 9 10.365762 Anserini +test3304 Q0 18429937 10 10.307306 Anserini +test3304 Q0 18429938 11 10.307306 Anserini +test3304 Q0 12387794 12 10.252085 Anserini +test3304 Q0 20407971 13 10.233820 Anserini +test3304 Q0 6205164 14 10.216587 Anserini +test3304 Q0 19646394 15 10.147624 Anserini +test3304 Q0 13551580 16 10.108044 Anserini +test3304 Q0 6652580 17 10.100346 Anserini +test3304 Q0 6205163 18 10.082904 Anserini +test3304 Q0 5930797 19 10.076257 Anserini +test3304 Q0 12387781 20 10.060991 Anserini +test3304 Q0 7834301 21 9.900687 Anserini +test3304 Q0 20523083 22 9.877926 Anserini +test3304 Q0 5177808 23 9.855721 Anserini +test3304 Q0 17814939 24 9.837668 Anserini +test3304 Q0 4165919 25 9.826425 Anserini +test3304 Q0 19783982 26 9.784822 Anserini +test3304 Q0 6782163 27 9.677132 Anserini +test3304 Q0 7834302 28 9.666726 Anserini +test3304 Q0 20135691 29 9.657151 Anserini +test3304 Q0 2876170 30 9.596433 Anserini +test3305 Q0 7487914 1 11.971542 Anserini +test3305 Q0 7487908 2 11.770701 Anserini +test3305 Q0 7824414 3 11.512310 Anserini +test3305 Q0 12297112 4 11.349903 Anserini +test3305 Q0 10849916 5 11.142377 Anserini +test3305 Q0 12270532 6 11.083369 Anserini +test3305 Q0 3001997 7 10.939735 Anserini +test3305 Q0 5183656 8 10.863446 Anserini +test3305 Q0 20704713 9 10.848353 Anserini +test3305 Q0 20704716 10 10.826849 Anserini +test3305 Q0 14559760 11 10.721154 Anserini +test3305 Q0 19735095 12 10.671430 Anserini +test3305 Q0 18824100 13 10.658307 Anserini +test3305 Q0 19735096 14 10.480874 Anserini +test3305 Q0 8043037 15 10.480874 Anserini +test3305 Q0 85020 16 10.473691 Anserini +test3305 Q0 13099731 17 10.409809 Anserini +test3305 Q0 4521207 18 10.339133 Anserini +test3305 Q0 12512535 19 10.232485 Anserini +test3305 Q0 18829312 20 10.232485 Anserini +test3305 Q0 18829315 21 10.168177 Anserini +test3305 Q0 12297131 22 10.139541 Anserini +test3305 Q0 8069423 23 10.139129 Anserini +test3305 Q0 6729167 24 10.138959 Anserini +test3305 Q0 14890103 25 10.067157 Anserini +test3305 Q0 17532044 26 10.036188 Anserini +test3305 Q0 11634158 27 10.015368 Anserini +test3305 Q0 13999278 28 9.987221 Anserini +test3305 Q0 10056030 29 9.983479 Anserini +test3305 Q0 13999281 30 9.942995 Anserini +test3306 Q0 7599309 1 12.877253 Anserini +test3306 Q0 9400009 2 12.370940 Anserini +test3306 Q0 9400010 3 12.370940 Anserini +test3306 Q0 7477041 4 12.370940 Anserini +test3306 Q0 7496415 5 12.370940 Anserini +test3306 Q0 508348 6 11.965694 Anserini +test3306 Q0 7393172 7 11.718207 Anserini +test3306 Q0 7393175 8 11.718207 Anserini +test3306 Q0 20594587 9 11.655691 Anserini +test3306 Q0 20591221 10 11.655691 Anserini +test3306 Q0 15995463 11 11.480319 Anserini +test3306 Q0 4709513 12 11.467105 Anserini +test3306 Q0 12006060 13 11.332516 Anserini +test3306 Q0 20591222 14 11.156816 Anserini +test3306 Q0 20592509 15 11.156816 Anserini +test3306 Q0 20592586 16 11.156816 Anserini +test3306 Q0 3775134 17 11.130753 Anserini +test3306 Q0 13548438 18 11.056111 Anserini +test3306 Q0 20594588 19 11.041896 Anserini +test3306 Q0 20592508 20 10.996273 Anserini +test3306 Q0 20592585 21 10.996273 Anserini +test3306 Q0 7382240 22 10.963007 Anserini +test3306 Q0 16704264 23 10.920856 Anserini +test3306 Q0 3427064 24 10.790446 Anserini +test3306 Q0 18191632 25 10.720396 Anserini +test3306 Q0 7599310 26 10.711989 Anserini +test3306 Q0 508379 27 10.658717 Anserini +test3306 Q0 7390233 28 10.591667 Anserini +test3306 Q0 18021947 29 10.585190 Anserini +test3306 Q0 416014 30 10.581982 Anserini +test3307 Q0 4925554 1 12.757861 Anserini +test3307 Q0 19006209 2 12.326067 Anserini +test3307 Q0 13958712 3 12.190063 Anserini +test3307 Q0 8486658 4 11.844940 Anserini +test3307 Q0 11511082 5 11.844940 Anserini +test3307 Q0 492084 6 11.555886 Anserini +test3307 Q0 11430771 7 11.492964 Anserini +test3307 Q0 502186 8 11.480138 Anserini +test3307 Q0 4925555 9 11.456204 Anserini +test3307 Q0 11354626 10 11.421554 Anserini +test3307 Q0 10081694 11 11.359893 Anserini +test3307 Q0 18160947 12 11.309473 Anserini +test3307 Q0 2143757 13 11.293385 Anserini +test3307 Q0 13958713 14 11.274079 Anserini +test3307 Q0 8769903 15 11.253871 Anserini +test3307 Q0 5291388 16 10.969784 Anserini +test3307 Q0 10081695 17 10.938485 Anserini +test3307 Q0 7481969 18 10.860167 Anserini +test3307 Q0 5291385 19 10.757500 Anserini +test3307 Q0 11511077 20 10.665271 Anserini +test3307 Q0 16379827 21 10.656236 Anserini +test3307 Q0 8554061 22 10.642207 Anserini +test3307 Q0 11135773 23 10.488760 Anserini +test3307 Q0 12582628 24 10.470523 Anserini +test3307 Q0 10172456 25 10.422155 Anserini +test3307 Q0 16379831 26 10.246853 Anserini +test3307 Q0 7481972 27 10.226414 Anserini +test3307 Q0 11316220 28 10.216127 Anserini +test3307 Q0 11135772 29 10.154572 Anserini +test3307 Q0 2050349 30 10.135898 Anserini +test3308 Q0 16265213 1 12.336076 Anserini +test3308 Q0 10229101 2 11.666635 Anserini +test3308 Q0 15475901 3 11.231206 Anserini +test3308 Q0 15475902 4 11.231206 Anserini +test3308 Q0 19565052 5 11.151952 Anserini +test3308 Q0 10229100 6 10.798422 Anserini +test3308 Q0 10978269 7 10.622541 Anserini +test3308 Q0 3407318 8 10.367251 Anserini +test3308 Q0 17461210 9 10.330791 Anserini +test3308 Q0 13521587 10 10.238353 Anserini +test3308 Q0 1428888 11 10.185677 Anserini +test3308 Q0 15171794 12 10.167584 Anserini +test3308 Q0 4717931 13 10.166277 Anserini +test3308 Q0 14689391 14 10.166277 Anserini +test3308 Q0 3581318 15 10.166006 Anserini +test3308 Q0 6524821 16 10.067891 Anserini +test3308 Q0 13407878 17 9.976184 Anserini +test3308 Q0 10531492 18 9.954769 Anserini +test3308 Q0 15723105 19 9.666253 Anserini +test3308 Q0 16255894 20 9.660743 Anserini +test3308 Q0 3905202 21 9.657024 Anserini +test3308 Q0 3036578 22 9.623511 Anserini +test3308 Q0 5876612 23 9.554458 Anserini +test3308 Q0 7461095 24 9.404911 Anserini +test3308 Q0 6025330 25 9.383986 Anserini +test3308 Q0 12009322 26 9.371700 Anserini +test3308 Q0 8667981 27 9.323982 Anserini +test3308 Q0 16568077 28 9.321542 Anserini +test3308 Q0 4599449 29 9.316321 Anserini +test3308 Q0 19242534 30 9.287743 Anserini +test3309 Q0 3368856 1 16.904835 Anserini +test3309 Q0 3368871 2 15.992200 Anserini +test3309 Q0 11114602 3 15.764297 Anserini +test3309 Q0 431714 4 15.666059 Anserini +test3309 Q0 11114604 5 15.595607 Anserini +test3309 Q0 18970644 6 15.543203 Anserini +test3309 Q0 2655122 7 15.262723 Anserini +test3309 Q0 2655107 8 15.183708 Anserini +test3309 Q0 19873537 9 14.121460 Anserini +test3309 Q0 6680455 10 14.076014 Anserini +test3309 Q0 3997652 11 13.749286 Anserini +test3309 Q0 18520032 12 13.723979 Anserini +test3309 Q0 15012303 13 13.678512 Anserini +test3309 Q0 18520020 14 13.657777 Anserini +test3309 Q0 3058358 15 13.610545 Anserini +test3309 Q0 12426002 16 13.512231 Anserini +test3309 Q0 16192788 17 13.445990 Anserini +test3309 Q0 295029 18 13.408134 Anserini +test3309 Q0 4327044 19 13.327125 Anserini +test3309 Q0 431715 20 13.325916 Anserini +test3309 Q0 2108342 21 13.230478 Anserini +test3309 Q0 16433316 22 13.220635 Anserini +test3309 Q0 10150035 23 13.202296 Anserini +test3309 Q0 13811153 24 13.173450 Anserini +test3309 Q0 12782287 25 13.098375 Anserini +test3309 Q0 12426003 26 13.019560 Anserini +test3309 Q0 16815263 27 12.986020 Anserini +test3309 Q0 4734746 28 12.964906 Anserini +test3309 Q0 8881461 29 12.933002 Anserini +test3309 Q0 431724 30 12.900251 Anserini +test331 Q0 630530 1 19.800545 Anserini +test331 Q0 2032126 2 19.705515 Anserini +test331 Q0 7087949 3 18.495693 Anserini +test331 Q0 3002602 4 17.896502 Anserini +test331 Q0 3363475 5 17.598671 Anserini +test331 Q0 15009280 6 17.154121 Anserini +test331 Q0 9972451 7 16.976381 Anserini +test331 Q0 444737 8 16.788290 Anserini +test331 Q0 13226066 9 16.713112 Anserini +test331 Q0 783708 10 16.701212 Anserini +test331 Q0 7449699 11 16.581038 Anserini +test331 Q0 11092932 12 16.549543 Anserini +test331 Q0 9568725 13 16.318039 Anserini +test331 Q0 14093594 14 16.306831 Anserini +test331 Q0 5200861 15 16.230316 Anserini +test331 Q0 9568721 16 16.161970 Anserini +test331 Q0 8795394 17 16.132648 Anserini +test331 Q0 14093582 18 16.123137 Anserini +test331 Q0 5200859 19 16.082205 Anserini +test331 Q0 15979452 20 16.047625 Anserini +test331 Q0 8725047 21 16.004440 Anserini +test331 Q0 9590084 22 15.991589 Anserini +test331 Q0 3903295 23 15.929451 Anserini +test331 Q0 17222508 24 15.840282 Anserini +test331 Q0 9568728 25 15.766210 Anserini +test331 Q0 2099257 26 15.711970 Anserini +test331 Q0 378767 27 15.711962 Anserini +test331 Q0 12555190 28 15.687958 Anserini +test331 Q0 12897810 29 15.607266 Anserini +test331 Q0 3393784 30 15.600204 Anserini +test3310 Q0 5101826 1 18.111467 Anserini +test3310 Q0 5101827 2 17.636192 Anserini +test3310 Q0 17229686 3 17.587889 Anserini +test3310 Q0 11009919 4 17.437332 Anserini +test3310 Q0 5101813 5 17.018917 Anserini +test3310 Q0 4674134 6 16.423941 Anserini +test3310 Q0 17229700 7 16.353519 Anserini +test3310 Q0 5101834 8 16.243195 Anserini +test3310 Q0 5101818 9 15.893126 Anserini +test3310 Q0 5101821 10 15.582491 Anserini +test3310 Q0 3244935 11 15.321119 Anserini +test3310 Q0 18814390 12 15.258303 Anserini +test3310 Q0 5101819 13 15.122724 Anserini +test3310 Q0 10880643 14 14.616861 Anserini +test3310 Q0 3783908 15 14.444859 Anserini +test3310 Q0 5101812 16 14.442914 Anserini +test3310 Q0 9632619 17 14.188196 Anserini +test3310 Q0 16432961 18 13.963817 Anserini +test3310 Q0 12612149 19 13.825571 Anserini +test3310 Q0 5101829 20 13.741300 Anserini +test3310 Q0 16218331 21 13.636953 Anserini +test3310 Q0 2226113 22 13.501877 Anserini +test3310 Q0 18366176 23 13.450195 Anserini +test3310 Q0 6454188 24 13.413639 Anserini +test3310 Q0 5101824 25 13.384733 Anserini +test3310 Q0 5101831 26 13.373119 Anserini +test3310 Q0 19332283 27 13.077245 Anserini +test3310 Q0 5101810 28 13.064515 Anserini +test3310 Q0 5101817 29 12.964748 Anserini +test3310 Q0 18044078 30 12.949698 Anserini +test3311 Q0 8825642 1 18.256588 Anserini +test3311 Q0 4031326 2 17.070700 Anserini +test3311 Q0 232690 3 16.862164 Anserini +test3311 Q0 130052 4 16.508480 Anserini +test3311 Q0 232688 5 16.383320 Anserini +test3311 Q0 11190695 6 16.196724 Anserini +test3311 Q0 4031327 7 16.115005 Anserini +test3311 Q0 13853941 8 15.925367 Anserini +test3311 Q0 4727706 9 15.876135 Anserini +test3311 Q0 11382712 10 15.708313 Anserini +test3311 Q0 145293 11 15.707500 Anserini +test3311 Q0 8447262 12 15.692598 Anserini +test3311 Q0 4427398 13 15.644604 Anserini +test3311 Q0 232689 14 15.642189 Anserini +test3311 Q0 12340684 15 15.419041 Anserini +test3311 Q0 4783729 16 15.281721 Anserini +test3311 Q0 7143715 17 15.261597 Anserini +test3311 Q0 4427393 18 15.107546 Anserini +test3311 Q0 6152454 19 15.105447 Anserini +test3311 Q0 87730 20 15.074189 Anserini +test3311 Q0 2840696 21 15.059936 Anserini +test3311 Q0 4401342 22 15.026815 Anserini +test3311 Q0 2857145 23 15.012957 Anserini +test3311 Q0 7108610 24 15.008751 Anserini +test3311 Q0 8496069 25 14.960439 Anserini +test3311 Q0 12247929 26 14.954116 Anserini +test3311 Q0 2272538 27 14.915530 Anserini +test3311 Q0 2272539 28 14.915530 Anserini +test3311 Q0 12340680 29 14.909101 Anserini +test3311 Q0 4561474 30 14.901972 Anserini +test3312 Q0 10310741 1 13.098994 Anserini +test3312 Q0 15171793 2 10.546238 Anserini +test3312 Q0 8258977 3 10.524616 Anserini +test3312 Q0 11507102 4 10.469631 Anserini +test3312 Q0 13930142 5 10.377695 Anserini +test3312 Q0 2215127 6 10.332388 Anserini +test3312 Q0 13472962 7 10.298837 Anserini +test3312 Q0 4192260 8 10.237389 Anserini +test3312 Q0 18787004 9 10.072091 Anserini +test3312 Q0 18787005 10 10.072091 Anserini +test3312 Q0 12719389 11 9.996965 Anserini +test3312 Q0 14626127 12 9.846676 Anserini +test3312 Q0 13951441 13 9.702573 Anserini +test3312 Q0 12719390 14 9.581266 Anserini +test3312 Q0 17381546 15 9.487693 Anserini +test3312 Q0 4550923 16 9.317431 Anserini +test3312 Q0 2215126 17 9.316459 Anserini +test3312 Q0 13196520 18 9.268922 Anserini +test3312 Q0 3111624 19 9.111605 Anserini +test3312 Q0 11183391 20 9.042965 Anserini +test3312 Q0 9812581 21 9.024604 Anserini +test3312 Q0 7764222 22 9.023003 Anserini +test3312 Q0 13930216 23 8.873417 Anserini +test3312 Q0 19534546 24 8.843490 Anserini +test3312 Q0 12719388 25 8.781162 Anserini +test3312 Q0 10310748 26 8.758322 Anserini +test3312 Q0 11953374 27 8.732504 Anserini +test3312 Q0 19499098 28 8.721218 Anserini +test3312 Q0 17901588 29 8.704426 Anserini +test3312 Q0 15675980 30 8.635489 Anserini +test3313 Q0 5142873 1 20.595024 Anserini +test3313 Q0 5142916 2 20.595024 Anserini +test3313 Q0 5142890 3 19.705799 Anserini +test3313 Q0 11299825 4 18.728098 Anserini +test3313 Q0 5142889 5 17.853617 Anserini +test3313 Q0 12779542 6 17.328991 Anserini +test3313 Q0 4689187 7 17.152020 Anserini +test3313 Q0 9053001 8 17.151587 Anserini +test3313 Q0 5142883 9 17.007669 Anserini +test3313 Q0 12779546 10 16.801064 Anserini +test3313 Q0 12779544 11 16.765543 Anserini +test3313 Q0 5142882 12 16.588522 Anserini +test3313 Q0 5142878 13 16.587170 Anserini +test3313 Q0 11299828 14 16.360161 Anserini +test3313 Q0 9053007 15 16.069752 Anserini +test3313 Q0 5142881 16 15.901201 Anserini +test3313 Q0 12397567 17 15.870091 Anserini +test3313 Q0 5142877 18 15.731563 Anserini +test3313 Q0 5142879 19 15.731563 Anserini +test3313 Q0 5142874 20 15.678151 Anserini +test3313 Q0 14216843 21 15.597734 Anserini +test3313 Q0 7898820 22 15.567219 Anserini +test3313 Q0 5142887 23 15.451244 Anserini +test3313 Q0 18490217 24 15.077115 Anserini +test3313 Q0 5142886 25 15.065414 Anserini +test3313 Q0 5142880 26 14.926309 Anserini +test3313 Q0 11349819 27 14.872615 Anserini +test3313 Q0 11224153 28 14.816194 Anserini +test3313 Q0 5142895 29 14.792267 Anserini +test3313 Q0 15316960 30 14.789846 Anserini +test3314 Q0 10104562 1 15.904761 Anserini +test3314 Q0 9595167 2 14.485903 Anserini +test3314 Q0 11760818 3 14.385489 Anserini +test3314 Q0 12781196 4 13.916040 Anserini +test3314 Q0 8840600 5 13.879951 Anserini +test3314 Q0 8840601 6 13.879951 Anserini +test3314 Q0 3288903 7 13.829618 Anserini +test3314 Q0 9595165 8 13.805471 Anserini +test3314 Q0 10284154 9 13.634599 Anserini +test3314 Q0 14083105 10 13.371327 Anserini +test3314 Q0 17111826 11 13.299781 Anserini +test3314 Q0 17111827 12 13.299781 Anserini +test3314 Q0 11506445 13 13.202282 Anserini +test3314 Q0 10114058 14 13.198899 Anserini +test3314 Q0 16805146 15 12.999224 Anserini +test3314 Q0 10104558 16 12.961879 Anserini +test3314 Q0 15934753 17 12.825755 Anserini +test3314 Q0 5495964 18 12.745670 Anserini +test3314 Q0 3165633 19 12.702461 Anserini +test3314 Q0 3165616 20 12.659544 Anserini +test3314 Q0 10113976 21 12.642806 Anserini +test3314 Q0 10113974 22 12.613216 Anserini +test3314 Q0 20132108 23 12.580074 Anserini +test3314 Q0 10114021 24 12.559669 Anserini +test3314 Q0 10114026 25 12.559669 Anserini +test3314 Q0 10114027 26 12.434912 Anserini +test3314 Q0 8474495 27 12.389038 Anserini +test3314 Q0 8576635 28 12.281338 Anserini +test3314 Q0 5495957 29 12.268891 Anserini +test3314 Q0 9910913 30 12.188454 Anserini +test3315 Q0 9432652 1 15.245477 Anserini +test3315 Q0 6796937 2 14.545457 Anserini +test3315 Q0 20468481 3 14.436247 Anserini +test3315 Q0 9449164 4 14.398321 Anserini +test3315 Q0 2216793 5 14.164421 Anserini +test3315 Q0 9459809 6 13.621688 Anserini +test3315 Q0 18397212 7 13.618690 Anserini +test3315 Q0 9432651 8 13.594188 Anserini +test3315 Q0 19119209 9 13.187575 Anserini +test3315 Q0 11428619 10 13.187294 Anserini +test3315 Q0 19820403 11 13.163079 Anserini +test3315 Q0 18397206 12 13.086719 Anserini +test3315 Q0 18397177 13 12.954700 Anserini +test3315 Q0 7155200 14 12.946324 Anserini +test3315 Q0 10431895 15 12.891688 Anserini +test3315 Q0 9468510 16 12.816081 Anserini +test3315 Q0 19820417 17 12.793429 Anserini +test3315 Q0 20468514 18 12.789153 Anserini +test3315 Q0 9468864 19 12.784880 Anserini +test3315 Q0 9459868 20 12.716291 Anserini +test3315 Q0 9459893 21 12.716291 Anserini +test3315 Q0 20468435 22 12.712261 Anserini +test3315 Q0 6144185 23 12.687715 Anserini +test3315 Q0 19820447 24 12.683726 Anserini +test3315 Q0 9610998 25 12.659147 Anserini +test3315 Q0 80010 26 12.612431 Anserini +test3315 Q0 16977466 27 12.584292 Anserini +test3315 Q0 19119215 28 12.584292 Anserini +test3315 Q0 10428403 29 12.562325 Anserini +test3315 Q0 9459797 30 12.548374 Anserini +test3316 Q0 203367 1 10.587001 Anserini +test3316 Q0 6527857 2 10.535816 Anserini +test3316 Q0 7801945 3 10.514286 Anserini +test3316 Q0 7801946 4 10.514286 Anserini +test3316 Q0 6527853 5 9.767304 Anserini +test3316 Q0 6527863 6 9.479002 Anserini +test3316 Q0 6527858 7 9.436788 Anserini +test3316 Q0 6527847 8 9.430636 Anserini +test3316 Q0 17762125 9 9.107582 Anserini +test3316 Q0 13529263 10 8.879845 Anserini +test3316 Q0 5830401 11 8.801479 Anserini +test3316 Q0 18809333 12 8.708826 Anserini +test3316 Q0 10315672 13 8.602330 Anserini +test3316 Q0 9468498 14 8.498392 Anserini +test3316 Q0 6527848 15 8.498392 Anserini +test3316 Q0 6527852 16 8.498392 Anserini +test3316 Q0 6527862 17 8.498392 Anserini +test3316 Q0 3941521 18 8.382759 Anserini +test3316 Q0 17762127 19 8.332220 Anserini +test3316 Q0 10229640 20 8.286309 Anserini +test3316 Q0 394066 21 8.169187 Anserini +test3316 Q0 17762126 22 8.090091 Anserini +test3316 Q0 18085144 23 8.090091 Anserini +test3316 Q0 10229639 24 8.012546 Anserini +test3316 Q0 18085145 25 7.937548 Anserini +test3316 Q0 1342482 26 7.792747 Anserini +test3316 Q0 18085146 27 7.770430 Anserini +test3316 Q0 1784153 28 7.770430 Anserini +test3316 Q0 12311631 29 7.770430 Anserini +test3316 Q0 6527849 30 7.770430 Anserini +test3317 Q0 20369441 1 20.775599 Anserini +test3317 Q0 20369448 2 19.534710 Anserini +test3317 Q0 20369491 3 19.049580 Anserini +test3317 Q0 20369447 4 19.009098 Anserini +test3317 Q0 20369508 5 18.958515 Anserini +test3317 Q0 16811433 6 18.950857 Anserini +test3317 Q0 20107071 7 18.736591 Anserini +test3317 Q0 13746309 8 18.582344 Anserini +test3317 Q0 13746346 9 18.582344 Anserini +test3317 Q0 4005425 10 18.547098 Anserini +test3317 Q0 19006405 11 18.421612 Anserini +test3317 Q0 20369502 12 18.396103 Anserini +test3317 Q0 20369486 13 18.350561 Anserini +test3317 Q0 13347190 14 18.275295 Anserini +test3317 Q0 4005233 15 18.253349 Anserini +test3317 Q0 11167610 16 18.160933 Anserini +test3317 Q0 10648133 17 18.131947 Anserini +test3317 Q0 20369501 18 17.890047 Anserini +test3317 Q0 19244556 19 17.881449 Anserini +test3317 Q0 20107078 20 17.858540 Anserini +test3317 Q0 20369453 21 17.858540 Anserini +test3317 Q0 19246833 22 17.803913 Anserini +test3317 Q0 20369473 23 17.803261 Anserini +test3317 Q0 2765270 24 17.753382 Anserini +test3317 Q0 14879131 25 17.717497 Anserini +test3317 Q0 14879163 26 17.717497 Anserini +test3317 Q0 10321580 27 17.681065 Anserini +test3317 Q0 20369500 28 17.678476 Anserini +test3317 Q0 13347273 29 17.655981 Anserini +test3317 Q0 20369468 30 17.625917 Anserini +test3318 Q0 20903433 1 11.076976 Anserini +test3318 Q0 20903449 2 10.938046 Anserini +test3318 Q0 19877164 3 10.857859 Anserini +test3318 Q0 11149325 4 10.718403 Anserini +test3318 Q0 14409894 5 10.616619 Anserini +test3318 Q0 21002673 6 10.471575 Anserini +test3318 Q0 14409884 7 10.429802 Anserini +test3318 Q0 10931288 8 10.427101 Anserini +test3318 Q0 20903445 9 10.414109 Anserini +test3318 Q0 14329309 10 10.369728 Anserini +test3318 Q0 19882432 11 10.244801 Anserini +test3318 Q0 9555093 12 10.063593 Anserini +test3318 Q0 20903439 13 9.946270 Anserini +test3318 Q0 19152987 14 9.799231 Anserini +test3318 Q0 5804068 15 9.786082 Anserini +test3318 Q0 13978498 16 9.729025 Anserini +test3318 Q0 18545351 17 9.687171 Anserini +test3318 Q0 20903447 18 9.687171 Anserini +test3318 Q0 10068393 19 9.656786 Anserini +test3318 Q0 13810767 20 9.630944 Anserini +test3318 Q0 20903444 21 9.550700 Anserini +test3318 Q0 19801237 22 9.547124 Anserini +test3318 Q0 16816612 23 9.516155 Anserini +test3318 Q0 19877169 24 9.497309 Anserini +test3318 Q0 20651603 25 9.487169 Anserini +test3318 Q0 523913 26 9.420043 Anserini +test3318 Q0 8852841 27 9.420043 Anserini +test3318 Q0 10068401 28 9.357873 Anserini +test3318 Q0 19877165 29 9.320749 Anserini +test3318 Q0 19877189 30 9.311701 Anserini +test3319 Q0 15175672 1 16.638172 Anserini +test3319 Q0 15175669 2 15.157425 Anserini +test3319 Q0 15175666 3 15.102672 Anserini +test3319 Q0 15379615 4 14.564917 Anserini +test3319 Q0 15379633 5 14.405291 Anserini +test3319 Q0 19970347 6 13.900719 Anserini +test3319 Q0 15379627 7 13.833041 Anserini +test3319 Q0 15175670 8 13.624117 Anserini +test3319 Q0 7664579 9 13.572767 Anserini +test3319 Q0 19701371 10 13.545642 Anserini +test3319 Q0 15175668 11 13.497142 Anserini +test3319 Q0 15379632 12 13.435822 Anserini +test3319 Q0 9026063 13 13.011406 Anserini +test3319 Q0 15096056 14 12.946604 Anserini +test3319 Q0 13029713 15 12.897534 Anserini +test3319 Q0 8989901 16 12.862343 Anserini +test3319 Q0 15472311 17 12.856382 Anserini +test3319 Q0 8211014 18 12.805084 Anserini +test3319 Q0 15379628 19 12.801353 Anserini +test3319 Q0 7225000 20 12.754184 Anserini +test3319 Q0 7225001 21 12.754184 Anserini +test3319 Q0 8779989 22 12.750963 Anserini +test3319 Q0 18672141 23 12.695524 Anserini +test3319 Q0 8432923 24 12.683324 Anserini +test3319 Q0 19864392 25 12.678261 Anserini +test3319 Q0 17051844 26 12.663710 Anserini +test3319 Q0 8989902 27 12.573752 Anserini +test3319 Q0 17774414 28 12.569230 Anserini +test3319 Q0 15379626 29 12.569057 Anserini +test3319 Q0 6560827 30 12.506758 Anserini +test332 Q0 10195881 1 10.587646 Anserini +test332 Q0 16340146 2 10.519224 Anserini +test332 Q0 3974476 3 10.287375 Anserini +test332 Q0 8694460 4 10.048965 Anserini +test332 Q0 5804833 5 9.999616 Anserini +test332 Q0 12891589 6 9.949109 Anserini +test332 Q0 796354 7 9.857982 Anserini +test332 Q0 549703 8 9.853276 Anserini +test332 Q0 3426264 9 9.848427 Anserini +test332 Q0 7913090 10 9.799227 Anserini +test332 Q0 5583306 11 9.776261 Anserini +test332 Q0 7505055 12 9.776261 Anserini +test332 Q0 146449 13 9.755452 Anserini +test332 Q0 8067840 14 9.750049 Anserini +test332 Q0 3476673 15 9.701670 Anserini +test332 Q0 8539916 16 9.695336 Anserini +test332 Q0 16195888 17 9.654513 Anserini +test332 Q0 15583808 18 9.635593 Anserini +test332 Q0 20887741 19 9.625170 Anserini +test332 Q0 9834189 20 9.594332 Anserini +test332 Q0 4199498 21 9.584256 Anserini +test332 Q0 3154755 22 9.574459 Anserini +test332 Q0 16669041 23 9.369108 Anserini +test332 Q0 14095824 24 9.365610 Anserini +test332 Q0 5804837 25 9.321713 Anserini +test332 Q0 12022383 26 9.283595 Anserini +test332 Q0 12283232 27 9.272926 Anserini +test332 Q0 13843511 28 9.258204 Anserini +test332 Q0 2783391 29 9.218370 Anserini +test332 Q0 20887736 30 9.177854 Anserini +test3320 Q0 9408091 1 27.476273 Anserini +test3320 Q0 10911130 2 26.368484 Anserini +test3320 Q0 10911126 3 26.368484 Anserini +test3320 Q0 13488260 4 25.206059 Anserini +test3320 Q0 10862583 5 25.072351 Anserini +test3320 Q0 10807370 6 24.595592 Anserini +test3320 Q0 10862595 7 24.514074 Anserini +test3320 Q0 10862599 8 24.314528 Anserini +test3320 Q0 13507052 9 23.807732 Anserini +test3320 Q0 13507060 10 23.635509 Anserini +test3320 Q0 10807365 11 23.362452 Anserini +test3320 Q0 9408109 12 23.181953 Anserini +test3320 Q0 13488262 13 23.164371 Anserini +test3320 Q0 9408101 14 22.954350 Anserini +test3320 Q0 10862596 15 22.818205 Anserini +test3320 Q0 10807362 16 22.818205 Anserini +test3320 Q0 10807372 17 22.701777 Anserini +test3320 Q0 9408092 18 21.088457 Anserini +test3320 Q0 13507055 19 20.805895 Anserini +test3320 Q0 10897300 20 20.492657 Anserini +test3320 Q0 10862584 21 20.435160 Anserini +test3320 Q0 10911129 22 20.378515 Anserini +test3320 Q0 9408093 23 20.359131 Anserini +test3320 Q0 10897295 24 20.114733 Anserini +test3320 Q0 9408096 25 19.909550 Anserini +test3320 Q0 4636524 26 19.728144 Anserini +test3320 Q0 9408105 27 19.667284 Anserini +test3320 Q0 10862594 28 19.569971 Anserini +test3320 Q0 10467184 29 19.447166 Anserini +test3320 Q0 9408095 30 19.269125 Anserini +test3321 Q0 10177792 1 17.391092 Anserini +test3321 Q0 323136 2 17.074909 Anserini +test3321 Q0 2797621 3 16.829191 Anserini +test3321 Q0 323126 4 16.663877 Anserini +test3321 Q0 613331 5 16.582767 Anserini +test3321 Q0 18392950 6 16.520142 Anserini +test3321 Q0 14133641 7 16.499445 Anserini +test3321 Q0 146225 8 16.184071 Anserini +test3321 Q0 8836629 9 16.121180 Anserini +test3321 Q0 12904294 10 16.005821 Anserini +test3321 Q0 82388 11 15.919483 Anserini +test3321 Q0 12787936 12 15.908012 Anserini +test3321 Q0 184938 13 15.893776 Anserini +test3321 Q0 678951 14 15.883386 Anserini +test3321 Q0 369188 15 15.878349 Anserini +test3321 Q0 82425 16 15.874919 Anserini +test3321 Q0 10177699 17 15.848635 Anserini +test3321 Q0 146192 18 15.847820 Anserini +test3321 Q0 415478 19 15.835175 Anserini +test3321 Q0 678939 20 15.815263 Anserini +test3321 Q0 10177795 21 15.764407 Anserini +test3321 Q0 146226 22 15.750103 Anserini +test3321 Q0 12787933 23 15.713375 Anserini +test3321 Q0 10177782 24 15.553853 Anserini +test3321 Q0 584944 25 15.547636 Anserini +test3321 Q0 146189 26 15.485427 Anserini +test3321 Q0 8648542 27 15.470274 Anserini +test3321 Q0 934878 28 15.451964 Anserini +test3321 Q0 2362012 29 15.426675 Anserini +test3321 Q0 388019 30 15.426675 Anserini +test3322 Q0 18166973 1 16.908987 Anserini +test3322 Q0 18166972 2 16.258362 Anserini +test3322 Q0 20721299 3 16.025263 Anserini +test3322 Q0 20721302 4 16.025263 Anserini +test3322 Q0 6518497 5 15.824101 Anserini +test3322 Q0 2683498 6 15.257507 Anserini +test3322 Q0 2683523 7 15.185596 Anserini +test3322 Q0 1728268 8 15.086629 Anserini +test3322 Q0 2683515 9 14.260715 Anserini +test3322 Q0 3977719 10 13.937848 Anserini +test3322 Q0 2683519 11 13.911601 Anserini +test3322 Q0 10100580 12 13.824928 Anserini +test3322 Q0 2683504 13 13.783426 Anserini +test3322 Q0 16188248 14 13.666253 Anserini +test3322 Q0 3145582 15 13.581776 Anserini +test3322 Q0 3169339 16 13.444333 Anserini +test3322 Q0 2683502 17 13.205155 Anserini +test3322 Q0 2683520 18 13.093540 Anserini +test3322 Q0 3098185 19 13.044573 Anserini +test3322 Q0 1728249 20 13.034965 Anserini +test3322 Q0 2683511 21 13.033047 Anserini +test3322 Q0 3098187 22 12.996147 Anserini +test3322 Q0 2683512 23 12.968945 Anserini +test3322 Q0 1728271 24 12.922584 Anserini +test3322 Q0 10631391 25 12.844816 Anserini +test3322 Q0 2683522 26 12.822605 Anserini +test3322 Q0 2683513 27 12.805101 Anserini +test3322 Q0 14989503 28 12.778866 Anserini +test3322 Q0 2683501 29 12.775838 Anserini +test3322 Q0 10631326 30 12.749710 Anserini +test3323 Q0 3601009 1 15.772773 Anserini +test3323 Q0 7792830 2 14.114328 Anserini +test3323 Q0 13546153 3 14.027470 Anserini +test3323 Q0 18875307 4 13.195108 Anserini +test3323 Q0 146461 5 13.180170 Anserini +test3323 Q0 2587465 6 12.750183 Anserini +test3323 Q0 2724713 7 12.387633 Anserini +test3323 Q0 13546143 8 12.331789 Anserini +test3323 Q0 8860372 9 12.275205 Anserini +test3323 Q0 17195040 10 12.189277 Anserini +test3323 Q0 2724714 11 12.074825 Anserini +test3323 Q0 139621 12 12.044914 Anserini +test3323 Q0 3374798 13 12.044668 Anserini +test3323 Q0 14097115 14 11.941309 Anserini +test3323 Q0 13546149 15 11.772440 Anserini +test3323 Q0 17936096 16 11.768606 Anserini +test3323 Q0 2615094 17 11.520876 Anserini +test3323 Q0 5757625 18 11.452299 Anserini +test3323 Q0 2153193 19 11.441658 Anserini +test3323 Q0 3600976 20 11.411220 Anserini +test3323 Q0 146440 21 11.374395 Anserini +test3323 Q0 2860450 22 11.357731 Anserini +test3323 Q0 855822 23 11.344220 Anserini +test3323 Q0 14600697 24 11.333973 Anserini +test3323 Q0 13546148 25 11.315978 Anserini +test3323 Q0 11809675 26 11.292710 Anserini +test3323 Q0 4753149 27 11.290971 Anserini +test3323 Q0 899192 28 11.240448 Anserini +test3323 Q0 19732152 29 11.178680 Anserini +test3323 Q0 146462 30 11.078892 Anserini +test3324 Q0 189650 1 13.358703 Anserini +test3324 Q0 17601329 2 13.215278 Anserini +test3324 Q0 678876 3 13.040025 Anserini +test3324 Q0 17971138 4 12.874527 Anserini +test3324 Q0 10617898 5 12.666195 Anserini +test3324 Q0 189640 6 12.612494 Anserini +test3324 Q0 12049656 7 12.350033 Anserini +test3324 Q0 14051902 8 12.334401 Anserini +test3324 Q0 2816814 9 12.321880 Anserini +test3324 Q0 2816812 10 12.321880 Anserini +test3324 Q0 8344689 11 12.264672 Anserini +test3324 Q0 7413694 12 12.157314 Anserini +test3324 Q0 6410483 13 12.151752 Anserini +test3324 Q0 15047939 14 12.103086 Anserini +test3324 Q0 15465894 15 12.029275 Anserini +test3324 Q0 11636759 16 12.026482 Anserini +test3324 Q0 17882304 17 11.918449 Anserini +test3324 Q0 18313081 18 11.870700 Anserini +test3324 Q0 20968252 19 11.800665 Anserini +test3324 Q0 189643 20 11.788477 Anserini +test3324 Q0 10558766 21 11.788124 Anserini +test3324 Q0 12049654 22 11.761197 Anserini +test3324 Q0 13092452 23 11.734545 Anserini +test3324 Q0 20424640 24 11.711164 Anserini +test3324 Q0 20424643 25 11.711164 Anserini +test3324 Q0 7413695 26 11.651198 Anserini +test3324 Q0 189645 27 11.647974 Anserini +test3324 Q0 686121 28 11.597363 Anserini +test3324 Q0 686120 29 11.597363 Anserini +test3324 Q0 17882303 30 11.577386 Anserini +test3325 Q0 6693896 1 14.046388 Anserini +test3325 Q0 6375361 2 14.015477 Anserini +test3325 Q0 14093042 3 14.010019 Anserini +test3325 Q0 6375366 4 13.998770 Anserini +test3325 Q0 14093038 5 13.970350 Anserini +test3325 Q0 14093045 6 13.970350 Anserini +test3325 Q0 17401962 7 13.521893 Anserini +test3325 Q0 3055128 8 13.484514 Anserini +test3325 Q0 19093154 9 13.256330 Anserini +test3325 Q0 17441040 10 13.203859 Anserini +test3325 Q0 19093153 11 13.162792 Anserini +test3325 Q0 14093039 12 13.007986 Anserini +test3325 Q0 7545475 13 12.997229 Anserini +test3325 Q0 19093152 14 12.983359 Anserini +test3325 Q0 5339548 15 12.945887 Anserini +test3325 Q0 7545471 16 12.934727 Anserini +test3325 Q0 7596170 17 12.905853 Anserini +test3325 Q0 143802 18 12.858590 Anserini +test3325 Q0 5038287 19 12.772045 Anserini +test3325 Q0 11461749 20 12.760859 Anserini +test3325 Q0 9562984 21 12.745075 Anserini +test3325 Q0 12666002 22 12.737416 Anserini +test3325 Q0 6693897 23 12.734512 Anserini +test3325 Q0 20795984 24 12.732138 Anserini +test3325 Q0 3055127 25 12.706541 Anserini +test3325 Q0 6375362 26 12.706541 Anserini +test3325 Q0 15141651 27 12.641707 Anserini +test3325 Q0 15141658 28 12.641707 Anserini +test3325 Q0 18056604 29 12.618562 Anserini +test3325 Q0 14414398 30 12.549911 Anserini +test3326 Q0 7848028 1 21.079897 Anserini +test3326 Q0 16427258 2 19.851620 Anserini +test3326 Q0 4757440 3 19.843533 Anserini +test3326 Q0 14345819 4 19.572239 Anserini +test3326 Q0 11428466 5 19.123066 Anserini +test3326 Q0 10560501 6 18.951521 Anserini +test3326 Q0 7848024 7 18.904175 Anserini +test3326 Q0 12208144 8 18.736067 Anserini +test3326 Q0 11277112 9 18.449577 Anserini +test3326 Q0 4757473 10 18.326378 Anserini +test3326 Q0 19346186 11 18.080524 Anserini +test3326 Q0 19346198 12 18.080524 Anserini +test3326 Q0 7662000 13 18.076014 Anserini +test3326 Q0 7662008 14 18.006588 Anserini +test3326 Q0 16427237 15 17.869234 Anserini +test3326 Q0 4757442 16 17.866556 Anserini +test3326 Q0 20600494 17 17.839270 Anserini +test3326 Q0 18534350 18 17.786854 Anserini +test3326 Q0 19346187 19 17.775124 Anserini +test3326 Q0 17286732 20 17.693630 Anserini +test3326 Q0 14345821 21 17.550350 Anserini +test3326 Q0 4757444 22 17.540056 Anserini +test3326 Q0 11428458 23 17.492428 Anserini +test3326 Q0 7848034 24 17.435892 Anserini +test3326 Q0 10560499 25 17.433718 Anserini +test3326 Q0 4757469 26 17.373640 Anserini +test3326 Q0 11277120 27 17.364141 Anserini +test3326 Q0 4757471 28 17.363577 Anserini +test3326 Q0 4757470 29 17.324400 Anserini +test3326 Q0 12208141 30 17.287689 Anserini +test3327 Q0 15187044 1 12.813422 Anserini +test3327 Q0 198772 2 11.143624 Anserini +test3327 Q0 4951878 3 10.776039 Anserini +test3327 Q0 9443296 4 10.763254 Anserini +test3327 Q0 7167049 5 10.631589 Anserini +test3327 Q0 17501679 6 10.624993 Anserini +test3327 Q0 9498562 7 10.616518 Anserini +test3327 Q0 633753 8 10.571021 Anserini +test3327 Q0 8318322 9 10.489621 Anserini +test3327 Q0 1605975 10 10.374770 Anserini +test3327 Q0 9306289 11 10.316342 Anserini +test3327 Q0 18722386 12 10.308258 Anserini +test3327 Q0 20293679 13 10.295170 Anserini +test3327 Q0 3909576 14 10.295170 Anserini +test3327 Q0 4307325 15 10.290583 Anserini +test3327 Q0 9768559 16 10.287266 Anserini +test3327 Q0 5694065 17 10.287266 Anserini +test3327 Q0 7227437 18 10.256577 Anserini +test3327 Q0 16337156 19 10.201365 Anserini +test3327 Q0 17501681 20 10.156159 Anserini +test3327 Q0 5082580 21 10.058723 Anserini +test3327 Q0 20452182 22 10.009689 Anserini +test3327 Q0 2780132 23 10.005982 Anserini +test3327 Q0 7210027 24 9.985518 Anserini +test3327 Q0 14208294 25 9.979374 Anserini +test3327 Q0 5240411 26 9.978107 Anserini +test3327 Q0 3956940 27 9.975223 Anserini +test3327 Q0 11076471 28 9.965144 Anserini +test3327 Q0 14314667 29 9.965144 Anserini +test3327 Q0 1388843 30 9.965144 Anserini +test3328 Q0 2420891 1 12.021404 Anserini +test3328 Q0 11873186 2 11.699581 Anserini +test3328 Q0 932261 3 11.621350 Anserini +test3328 Q0 10085565 4 11.541726 Anserini +test3328 Q0 2420905 5 11.539997 Anserini +test3328 Q0 8817090 6 11.498046 Anserini +test3328 Q0 3059392 7 11.313131 Anserini +test3328 Q0 2701001 8 11.181825 Anserini +test3328 Q0 13168633 9 11.148398 Anserini +test3328 Q0 10202381 10 11.066001 Anserini +test3328 Q0 2086260 11 10.760823 Anserini +test3328 Q0 936583 12 10.759635 Anserini +test3328 Q0 6008559 13 10.742278 Anserini +test3328 Q0 14592110 14 10.644777 Anserini +test3328 Q0 6434742 15 10.619405 Anserini +test3328 Q0 594636 16 10.601269 Anserini +test3328 Q0 6172761 17 10.594034 Anserini +test3328 Q0 3624493 18 10.585445 Anserini +test3328 Q0 7919241 19 10.565022 Anserini +test3328 Q0 9328714 20 10.560751 Anserini +test3328 Q0 14392688 21 10.549299 Anserini +test3328 Q0 594706 22 10.520439 Anserini +test3328 Q0 4793381 23 10.467972 Anserini +test3328 Q0 594603 24 10.455862 Anserini +test3328 Q0 5887247 25 10.453943 Anserini +test3328 Q0 13575354 26 10.420038 Anserini +test3328 Q0 6008568 27 10.413923 Anserini +test3328 Q0 2332239 28 10.378093 Anserini +test3328 Q0 3320718 29 10.370691 Anserini +test3328 Q0 2420902 30 10.355703 Anserini +test3329 Q0 1315962 1 13.695778 Anserini +test3329 Q0 17962269 2 12.673150 Anserini +test3329 Q0 4501604 3 12.240246 Anserini +test3329 Q0 1315970 4 11.296551 Anserini +test3329 Q0 19660867 5 11.231770 Anserini +test3329 Q0 19660868 6 11.168829 Anserini +test3329 Q0 9746995 7 11.016376 Anserini +test3329 Q0 13866798 8 10.960100 Anserini +test3329 Q0 18718869 9 10.690939 Anserini +test3329 Q0 18989318 10 10.628425 Anserini +test3329 Q0 4501595 11 10.626596 Anserini +test3329 Q0 17962267 12 10.618237 Anserini +test3329 Q0 2387150 13 10.585028 Anserini +test3329 Q0 1315982 14 10.548617 Anserini +test3329 Q0 17120661 15 10.403789 Anserini +test3329 Q0 15983752 16 10.302762 Anserini +test3329 Q0 19638202 17 10.185341 Anserini +test3329 Q0 19638225 18 10.185341 Anserini +test3329 Q0 4109131 19 10.183946 Anserini +test3329 Q0 7929892 20 10.127734 Anserini +test3329 Q0 6523513 21 10.119864 Anserini +test3329 Q0 18475546 22 10.109801 Anserini +test3329 Q0 19640711 23 10.087575 Anserini +test3329 Q0 19646057 24 10.061989 Anserini +test3329 Q0 19112933 25 10.061989 Anserini +test3329 Q0 9276283 26 10.026134 Anserini +test3329 Q0 9276284 27 10.026134 Anserini +test3329 Q0 17120662 28 9.976026 Anserini +test3329 Q0 5784021 29 9.958536 Anserini +test3329 Q0 6247201 30 9.926028 Anserini +test333 Q0 20477338 1 20.172024 Anserini +test333 Q0 17762813 2 19.268703 Anserini +test333 Q0 20288858 3 18.755615 Anserini +test333 Q0 17409229 4 18.490704 Anserini +test333 Q0 20324991 5 17.653805 Anserini +test333 Q0 17259598 6 16.518913 Anserini +test333 Q0 20643444 7 16.454947 Anserini +test333 Q0 17259622 8 16.279133 Anserini +test333 Q0 17259621 9 16.180986 Anserini +test333 Q0 17762814 10 15.904889 Anserini +test333 Q0 19426031 11 15.438676 Anserini +test333 Q0 17409228 12 15.423654 Anserini +test333 Q0 17259631 13 14.804905 Anserini +test333 Q0 17259639 14 14.728975 Anserini +test333 Q0 17259632 15 14.653823 Anserini +test333 Q0 17259599 16 14.653823 Anserini +test333 Q0 19069010 17 14.492579 Anserini +test333 Q0 15598184 18 14.484997 Anserini +test333 Q0 17259640 19 14.315895 Anserini +test333 Q0 17259676 20 14.315895 Anserini +test333 Q0 17259677 21 14.238247 Anserini +test333 Q0 373665 22 13.930779 Anserini +test333 Q0 20643443 23 13.790466 Anserini +test333 Q0 19058655 24 13.790466 Anserini +test333 Q0 15598161 25 13.737832 Anserini +test333 Q0 17259722 26 13.707667 Anserini +test333 Q0 17259723 27 13.707667 Anserini +test333 Q0 20477337 28 13.707667 Anserini +test333 Q0 17627863 29 13.707667 Anserini +test333 Q0 17409227 30 13.625965 Anserini +test3330 Q0 17472671 1 12.739199 Anserini +test3330 Q0 9991576 2 12.078599 Anserini +test3330 Q0 6135376 3 11.230206 Anserini +test3330 Q0 304736 4 11.156066 Anserini +test3330 Q0 13720135 5 11.141685 Anserini +test3330 Q0 8101052 6 11.138634 Anserini +test3330 Q0 12036398 7 11.048522 Anserini +test3330 Q0 4499418 8 10.945392 Anserini +test3330 Q0 4670534 9 10.923965 Anserini +test3330 Q0 8402447 10 10.882274 Anserini +test3330 Q0 304738 11 10.839109 Anserini +test3330 Q0 17458533 12 10.701488 Anserini +test3330 Q0 2100654 13 10.686769 Anserini +test3330 Q0 9991577 14 10.681452 Anserini +test3330 Q0 4670538 15 10.590185 Anserini +test3330 Q0 20657415 16 10.459137 Anserini +test3330 Q0 8402448 17 10.370846 Anserini +test3330 Q0 14847112 18 10.317598 Anserini +test3330 Q0 13990839 19 10.270724 Anserini +test3330 Q0 717355 20 10.249167 Anserini +test3330 Q0 20657412 21 10.249167 Anserini +test3330 Q0 16641964 22 10.218147 Anserini +test3330 Q0 1595013 23 10.200132 Anserini +test3330 Q0 9906382 24 10.188024 Anserini +test3330 Q0 9906420 25 10.188024 Anserini +test3330 Q0 17472668 26 10.129306 Anserini +test3330 Q0 15463538 27 10.129306 Anserini +test3330 Q0 12577729 28 10.110478 Anserini +test3330 Q0 7925252 29 10.110478 Anserini +test3330 Q0 13158376 30 10.108255 Anserini +test3331 Q0 18318629 1 10.125010 Anserini +test3331 Q0 15268158 2 9.902174 Anserini +test3331 Q0 16340146 3 9.793827 Anserini +test3331 Q0 10879631 4 9.635426 Anserini +test3331 Q0 10349609 5 9.624518 Anserini +test3331 Q0 10937198 6 9.617089 Anserini +test3331 Q0 7249431 7 9.454653 Anserini +test3331 Q0 7453452 8 9.431108 Anserini +test3331 Q0 5717835 9 9.431108 Anserini +test3331 Q0 7962624 10 9.333348 Anserini +test3331 Q0 15820625 11 9.269613 Anserini +test3331 Q0 12650535 12 9.171244 Anserini +test3331 Q0 644347 13 9.146121 Anserini +test3331 Q0 11026414 14 9.129497 Anserini +test3331 Q0 17110026 15 9.100662 Anserini +test3331 Q0 11395954 16 9.047548 Anserini +test3331 Q0 12650521 17 8.996934 Anserini +test3331 Q0 6926401 18 8.994116 Anserini +test3331 Q0 5472445 19 8.928263 Anserini +test3331 Q0 18969861 20 8.882906 Anserini +test3331 Q0 13146389 21 8.836697 Anserini +test3331 Q0 18318630 22 8.806722 Anserini +test3331 Q0 12728074 23 8.785537 Anserini +test3331 Q0 12158063 24 8.781716 Anserini +test3331 Q0 4695284 25 8.742382 Anserini +test3331 Q0 18788054 26 8.725009 Anserini +test3331 Q0 4210654 27 8.720363 Anserini +test3331 Q0 3596775 28 8.702264 Anserini +test3331 Q0 6143932 29 8.692962 Anserini +test3331 Q0 5126225 30 8.679739 Anserini +test3332 Q0 7247308 1 12.368959 Anserini +test3332 Q0 10376145 2 12.008060 Anserini +test3332 Q0 10084247 3 11.412386 Anserini +test3332 Q0 11509728 4 11.197147 Anserini +test3332 Q0 20662690 5 11.024618 Anserini +test3332 Q0 20638966 6 10.868073 Anserini +test3332 Q0 20638967 7 10.868073 Anserini +test3332 Q0 1421318 8 10.797562 Anserini +test3332 Q0 111849 9 10.795092 Anserini +test3332 Q0 4084712 10 10.664997 Anserini +test3332 Q0 9754073 11 10.591720 Anserini +test3332 Q0 9950288 12 10.591720 Anserini +test3332 Q0 4084713 13 10.569814 Anserini +test3332 Q0 20670003 14 10.505227 Anserini +test3332 Q0 20670005 15 10.505227 Anserini +test3332 Q0 15626812 16 10.308614 Anserini +test3332 Q0 20669263 17 10.307256 Anserini +test3332 Q0 20662691 18 10.249335 Anserini +test3332 Q0 6843837 19 10.177610 Anserini +test3332 Q0 3479409 20 10.049708 Anserini +test3332 Q0 6210349 21 10.049708 Anserini +test3332 Q0 5597321 22 10.049708 Anserini +test3332 Q0 446039 23 10.024426 Anserini +test3332 Q0 10105978 24 10.017458 Anserini +test3332 Q0 679138 25 9.988951 Anserini +test3332 Q0 17949408 26 9.988885 Anserini +test3332 Q0 7009416 27 9.969892 Anserini +test3332 Q0 17949403 28 9.893526 Anserini +test3332 Q0 8968585 29 9.861656 Anserini +test3332 Q0 20590845 30 9.858027 Anserini +test3333 Q0 19506705 1 17.501965 Anserini +test3333 Q0 19506707 2 17.264467 Anserini +test3333 Q0 3134791 3 16.851913 Anserini +test3333 Q0 18255217 4 16.455763 Anserini +test3333 Q0 2417383 5 16.273026 Anserini +test3333 Q0 13813698 6 16.051899 Anserini +test3333 Q0 14548394 7 16.043121 Anserini +test3333 Q0 13813700 8 15.842732 Anserini +test3333 Q0 13813723 9 15.836994 Anserini +test3333 Q0 7204775 10 15.536665 Anserini +test3333 Q0 20758344 11 15.372825 Anserini +test3333 Q0 18255224 12 15.291761 Anserini +test3333 Q0 16563602 13 15.186428 Anserini +test3333 Q0 3235961 14 15.097882 Anserini +test3333 Q0 16563596 15 15.093507 Anserini +test3333 Q0 18255227 16 15.079120 Anserini +test3333 Q0 3235963 17 15.049088 Anserini +test3333 Q0 2417389 18 14.971392 Anserini +test3333 Q0 13813721 19 14.962187 Anserini +test3333 Q0 18255222 20 14.879306 Anserini +test3333 Q0 18255221 21 14.858329 Anserini +test3333 Q0 18255223 22 14.858329 Anserini +test3333 Q0 14548370 23 14.806235 Anserini +test3333 Q0 16563600 24 14.779140 Anserini +test3333 Q0 3235962 25 14.731464 Anserini +test3333 Q0 14548381 26 14.546771 Anserini +test3333 Q0 3134789 27 14.533222 Anserini +test3333 Q0 14548389 28 14.507947 Anserini +test3333 Q0 19966038 29 14.501758 Anserini +test3333 Q0 16563603 30 14.463507 Anserini +test3334 Q0 11705180 1 15.068772 Anserini +test3334 Q0 16476201 2 14.916164 Anserini +test3334 Q0 11705181 3 13.570109 Anserini +test3334 Q0 7902042 4 13.280746 Anserini +test3334 Q0 5571098 5 13.233190 Anserini +test3334 Q0 9175851 6 13.133556 Anserini +test3334 Q0 13423884 7 13.076065 Anserini +test3334 Q0 5410562 8 12.483853 Anserini +test3334 Q0 13423897 9 12.213680 Anserini +test3334 Q0 5410571 10 12.183794 Anserini +test3334 Q0 19559660 11 12.055516 Anserini +test3334 Q0 7810435 12 11.934498 Anserini +test3334 Q0 9175850 13 11.931800 Anserini +test3334 Q0 8750175 14 11.919147 Anserini +test3334 Q0 19559649 15 11.880541 Anserini +test3334 Q0 8750167 16 11.787565 Anserini +test3334 Q0 7559881 17 11.645240 Anserini +test3334 Q0 7810437 18 11.603351 Anserini +test3334 Q0 7707216 19 11.561300 Anserini +test3334 Q0 16889268 20 11.561300 Anserini +test3334 Q0 7902056 21 11.555182 Anserini +test3334 Q0 7810434 22 11.554105 Anserini +test3334 Q0 19559646 23 11.511171 Anserini +test3334 Q0 7707219 24 11.442660 Anserini +test3334 Q0 6884279 25 11.275691 Anserini +test3334 Q0 19559658 26 11.222574 Anserini +test3334 Q0 7707210 27 11.222574 Anserini +test3334 Q0 8750172 28 11.152266 Anserini +test3334 Q0 7707211 29 11.007998 Anserini +test3334 Q0 7902043 30 11.007998 Anserini +test3335 Q0 284497 1 14.862211 Anserini +test3335 Q0 2783990 2 14.812537 Anserini +test3335 Q0 12500734 3 14.670593 Anserini +test3335 Q0 2512800 4 14.283442 Anserini +test3335 Q0 19550381 5 14.025263 Anserini +test3335 Q0 5443103 6 13.487337 Anserini +test3335 Q0 2783977 7 13.484777 Anserini +test3335 Q0 18022686 8 13.478418 Anserini +test3335 Q0 21010432 9 13.313366 Anserini +test3335 Q0 8672605 10 13.239208 Anserini +test3335 Q0 18385291 11 13.158057 Anserini +test3335 Q0 5337757 12 13.114305 Anserini +test3335 Q0 11537274 13 13.082634 Anserini +test3335 Q0 16353882 14 13.052356 Anserini +test3335 Q0 18385296 15 13.051673 Anserini +test3335 Q0 5589039 16 13.005437 Anserini +test3335 Q0 495263 17 12.930222 Anserini +test3335 Q0 10311833 18 12.896562 Anserini +test3335 Q0 19605119 19 12.754495 Anserini +test3335 Q0 14382384 20 12.662723 Anserini +test3335 Q0 628743 21 12.606343 Anserini +test3335 Q0 11524498 22 12.596212 Anserini +test3335 Q0 3170532 23 12.566239 Anserini +test3335 Q0 3552329 24 12.549057 Anserini +test3335 Q0 18149880 25 12.526749 Anserini +test3335 Q0 1987095 26 12.520257 Anserini +test3335 Q0 435128 27 12.469559 Anserini +test3335 Q0 12500723 28 12.460527 Anserini +test3335 Q0 14752419 29 12.456665 Anserini +test3335 Q0 4945169 30 12.456665 Anserini +test3336 Q0 8246149 1 12.615149 Anserini +test3336 Q0 8778944 2 12.073271 Anserini +test3336 Q0 5763075 3 11.838997 Anserini +test3336 Q0 7175211 4 11.376634 Anserini +test3336 Q0 890308 5 11.357954 Anserini +test3336 Q0 6848782 6 11.319384 Anserini +test3336 Q0 4214097 7 11.237528 Anserini +test3336 Q0 11440215 8 11.029008 Anserini +test3336 Q0 1074254 9 11.004130 Anserini +test3336 Q0 5158123 10 10.998932 Anserini +test3336 Q0 4049987 11 10.980640 Anserini +test3336 Q0 10105280 12 10.964889 Anserini +test3336 Q0 6939814 13 10.917223 Anserini +test3336 Q0 10435474 14 10.903299 Anserini +test3336 Q0 8042508 15 10.836742 Anserini +test3336 Q0 15344919 16 10.827387 Anserini +test3336 Q0 2132385 17 10.823633 Anserini +test3336 Q0 773947 18 10.819408 Anserini +test3336 Q0 18531486 19 10.810134 Anserini +test3336 Q0 11392151 20 10.803288 Anserini +test3336 Q0 18531474 21 10.771530 Anserini +test3336 Q0 6778855 22 10.755517 Anserini +test3336 Q0 5984929 23 10.753708 Anserini +test3336 Q0 2937349 24 10.753464 Anserini +test3336 Q0 890305 25 10.693088 Anserini +test3336 Q0 8747194 26 10.678254 Anserini +test3336 Q0 12000486 27 10.667578 Anserini +test3336 Q0 16171224 28 10.650798 Anserini +test3336 Q0 7523409 29 10.633167 Anserini +test3336 Q0 890307 30 10.623654 Anserini +test3337 Q0 16329405 1 13.588077 Anserini +test3337 Q0 8498721 2 13.307055 Anserini +test3337 Q0 10311914 3 12.631582 Anserini +test3337 Q0 10312417 4 12.631582 Anserini +test3337 Q0 6262767 5 12.455133 Anserini +test3337 Q0 5035946 6 12.334301 Anserini +test3337 Q0 3180637 7 12.274385 Anserini +test3337 Q0 6882218 8 12.252685 Anserini +test3337 Q0 3380592 9 12.083625 Anserini +test3337 Q0 12830452 10 11.915540 Anserini +test3337 Q0 7097328 11 11.652471 Anserini +test3337 Q0 4774304 12 11.640791 Anserini +test3337 Q0 8771372 13 11.507812 Anserini +test3337 Q0 17517570 14 11.504099 Anserini +test3337 Q0 9708210 15 11.499619 Anserini +test3337 Q0 8428083 16 11.457878 Anserini +test3337 Q0 12229001 17 11.409548 Anserini +test3337 Q0 13274573 18 11.358843 Anserini +test3337 Q0 20775477 19 11.356129 Anserini +test3337 Q0 13548126 20 11.352127 Anserini +test3337 Q0 19088733 21 11.303933 Anserini +test3337 Q0 8552854 22 11.284888 Anserini +test3337 Q0 4828658 23 11.264902 Anserini +test3337 Q0 8790124 24 11.229300 Anserini +test3337 Q0 2006053 25 11.194316 Anserini +test3337 Q0 9247303 26 11.181067 Anserini +test3337 Q0 9971021 27 11.121533 Anserini +test3337 Q0 4562339 28 11.118514 Anserini +test3337 Q0 8155341 29 11.008572 Anserini +test3337 Q0 9504107 30 10.984381 Anserini +test3338 Q0 109949 1 15.571922 Anserini +test3338 Q0 17204386 2 15.382969 Anserini +test3338 Q0 109972 3 14.988509 Anserini +test3338 Q0 109959 4 14.570711 Anserini +test3338 Q0 109958 5 14.415310 Anserini +test3338 Q0 17521690 6 14.356733 Anserini +test3338 Q0 109961 7 14.349993 Anserini +test3338 Q0 109965 8 14.337417 Anserini +test3338 Q0 858685 9 14.321898 Anserini +test3338 Q0 109954 10 14.201979 Anserini +test3338 Q0 4509107 11 14.184525 Anserini +test3338 Q0 109963 12 14.034443 Anserini +test3338 Q0 4255237 13 13.926504 Anserini +test3338 Q0 4255238 14 13.682616 Anserini +test3338 Q0 18103257 15 13.648254 Anserini +test3338 Q0 109953 16 13.537421 Anserini +test3338 Q0 18103267 17 13.493204 Anserini +test3338 Q0 109957 18 13.465555 Anserini +test3338 Q0 109962 19 13.455971 Anserini +test3338 Q0 858692 20 13.345650 Anserini +test3338 Q0 109974 21 13.260737 Anserini +test3338 Q0 1435096 22 13.234194 Anserini +test3338 Q0 12862303 23 13.122310 Anserini +test3338 Q0 9942127 24 13.115123 Anserini +test3338 Q0 109956 25 13.084826 Anserini +test3338 Q0 17715192 26 13.053009 Anserini +test3338 Q0 18484380 27 12.958460 Anserini +test3338 Q0 109955 28 12.912315 Anserini +test3338 Q0 233512 29 12.869084 Anserini +test3338 Q0 18702446 30 12.814880 Anserini +test3339 Q0 5521761 1 10.927026 Anserini +test3339 Q0 18075243 2 10.359150 Anserini +test3339 Q0 9149609 3 10.168113 Anserini +test3339 Q0 19835548 4 10.126339 Anserini +test3339 Q0 9149607 5 10.094474 Anserini +test3339 Q0 4930307 6 9.859029 Anserini +test3339 Q0 4950494 7 9.843248 Anserini +test3339 Q0 11174023 8 9.726503 Anserini +test3339 Q0 9060739 9 9.716240 Anserini +test3339 Q0 10253225 10 9.702885 Anserini +test3339 Q0 34401 11 9.665998 Anserini +test3339 Q0 3388711 12 9.598562 Anserini +test3339 Q0 14290336 13 9.587952 Anserini +test3339 Q0 3388718 14 9.578440 Anserini +test3339 Q0 10322191 15 9.572883 Anserini +test3339 Q0 17852109 16 9.564259 Anserini +test3339 Q0 907019 17 9.555002 Anserini +test3339 Q0 15360619 18 9.545146 Anserini +test3339 Q0 5558596 19 9.525499 Anserini +test3339 Q0 3388720 20 9.511933 Anserini +test3339 Q0 293314 21 9.495944 Anserini +test3339 Q0 3932092 22 9.457758 Anserini +test3339 Q0 20259632 23 9.389280 Anserini +test3339 Q0 6885611 24 9.382597 Anserini +test3339 Q0 3984797 25 9.379717 Anserini +test3339 Q0 53274 26 9.307861 Anserini +test3339 Q0 6885609 27 9.306080 Anserini +test3339 Q0 2069763 28 9.262653 Anserini +test3339 Q0 12274054 29 9.254852 Anserini +test3339 Q0 17852110 30 9.235986 Anserini +test334 Q0 18134025 1 16.931461 Anserini +test334 Q0 17485795 2 16.497494 Anserini +test334 Q0 16382213 3 16.488480 Anserini +test334 Q0 18817968 4 16.467178 Anserini +test334 Q0 17485846 5 16.406240 Anserini +test334 Q0 17422638 6 16.247025 Anserini +test334 Q0 12906991 7 16.178946 Anserini +test334 Q0 16382180 8 16.148254 Anserini +test334 Q0 18817962 9 16.111063 Anserini +test334 Q0 18580006 10 15.841758 Anserini +test334 Q0 18134014 11 15.646610 Anserini +test334 Q0 19323009 12 15.636502 Anserini +test334 Q0 16382212 13 15.596377 Anserini +test334 Q0 16382192 14 15.508659 Anserini +test334 Q0 17422622 15 15.398879 Anserini +test334 Q0 17422624 16 15.347898 Anserini +test334 Q0 16534670 17 15.228088 Anserini +test334 Q0 17710359 18 15.051122 Anserini +test334 Q0 17485824 19 15.026546 Anserini +test334 Q0 17007141 20 14.940876 Anserini +test334 Q0 18510469 21 14.928218 Anserini +test334 Q0 18531403 22 14.846456 Anserini +test334 Q0 16534681 23 14.788448 Anserini +test334 Q0 18587244 24 14.731230 Anserini +test334 Q0 16382195 25 14.666847 Anserini +test334 Q0 17485842 26 14.640649 Anserini +test334 Q0 17710357 27 14.513433 Anserini +test334 Q0 15970322 28 14.382427 Anserini +test334 Q0 19323020 29 14.316946 Anserini +test334 Q0 19323015 30 14.226248 Anserini +test3340 Q0 5027093 1 24.371052 Anserini +test3340 Q0 20355360 2 24.210184 Anserini +test3340 Q0 12829361 3 23.833763 Anserini +test3340 Q0 5027087 4 22.858541 Anserini +test3340 Q0 20504862 5 22.805416 Anserini +test3340 Q0 12829365 6 22.772959 Anserini +test3340 Q0 5027085 7 22.597286 Anserini +test3340 Q0 5027090 8 22.455065 Anserini +test3340 Q0 20504861 9 22.306232 Anserini +test3340 Q0 5027109 10 22.004000 Anserini +test3340 Q0 12829362 11 21.696737 Anserini +test3340 Q0 18573748 12 21.545187 Anserini +test3340 Q0 2684531 13 21.373369 Anserini +test3340 Q0 20376895 14 21.327782 Anserini +test3340 Q0 5228402 15 21.293571 Anserini +test3340 Q0 7785018 16 21.266914 Anserini +test3340 Q0 12829363 17 21.190901 Anserini +test3340 Q0 5027097 18 21.059896 Anserini +test3340 Q0 5027107 19 21.001829 Anserini +test3340 Q0 20278608 20 20.974516 Anserini +test3340 Q0 16847578 21 20.910225 Anserini +test3340 Q0 17499463 22 20.877842 Anserini +test3340 Q0 260800 23 20.792809 Anserini +test3340 Q0 3478391 24 20.765665 Anserini +test3340 Q0 5027091 25 20.731499 Anserini +test3340 Q0 12525075 26 20.699671 Anserini +test3340 Q0 20657298 27 20.638062 Anserini +test3340 Q0 16071934 28 20.610546 Anserini +test3340 Q0 4258898 29 20.609533 Anserini +test3340 Q0 5027100 30 20.541466 Anserini +test3341 Q0 4889144 1 9.430261 Anserini +test3341 Q0 2676662 2 9.002548 Anserini +test3341 Q0 13970685 3 8.969913 Anserini +test3341 Q0 14210466 4 8.945038 Anserini +test3341 Q0 2676634 5 8.891744 Anserini +test3341 Q0 17812739 6 8.889148 Anserini +test3341 Q0 8837475 7 8.810255 Anserini +test3341 Q0 19799288 8 8.771750 Anserini +test3341 Q0 14210469 9 8.771750 Anserini +test3341 Q0 19799289 10 8.716757 Anserini +test3341 Q0 4123742 11 8.614819 Anserini +test3341 Q0 11855474 12 8.591909 Anserini +test3341 Q0 13129332 13 8.572624 Anserini +test3341 Q0 2074261 14 8.559820 Anserini +test3341 Q0 20576050 15 8.551090 Anserini +test3341 Q0 2892839 16 8.490715 Anserini +test3341 Q0 20576049 17 8.488513 Anserini +test3341 Q0 248809 18 8.449883 Anserini +test3341 Q0 20570100 19 8.445271 Anserini +test3341 Q0 3093104 20 8.431674 Anserini +test3341 Q0 16417895 21 8.421874 Anserini +test3341 Q0 18112755 22 8.421137 Anserini +test3341 Q0 2873785 23 8.381046 Anserini +test3341 Q0 7559562 24 8.366369 Anserini +test3341 Q0 20288792 25 8.346287 Anserini +test3341 Q0 3339868 26 8.340499 Anserini +test3341 Q0 5835670 27 8.295426 Anserini +test3341 Q0 14738098 28 8.277903 Anserini +test3341 Q0 17502836 29 8.253306 Anserini +test3341 Q0 13881054 30 8.245044 Anserini +test3342 Q0 17370473 1 13.729316 Anserini +test3342 Q0 10600701 2 13.419700 Anserini +test3342 Q0 10600705 3 13.355187 Anserini +test3342 Q0 3333191 4 13.218922 Anserini +test3342 Q0 10621515 5 13.194617 Anserini +test3342 Q0 13018802 6 13.029524 Anserini +test3342 Q0 13189329 7 13.025141 Anserini +test3342 Q0 10419158 8 12.941183 Anserini +test3342 Q0 11963692 9 12.786409 Anserini +test3342 Q0 11963691 10 12.713442 Anserini +test3342 Q0 10281268 11 12.612810 Anserini +test3342 Q0 10600636 12 12.574181 Anserini +test3342 Q0 15527944 13 12.568683 Anserini +test3342 Q0 5026534 14 12.510071 Anserini +test3342 Q0 11056750 15 12.489889 Anserini +test3342 Q0 4298632 16 12.476268 Anserini +test3342 Q0 12252872 17 12.433413 Anserini +test3342 Q0 12831595 18 12.428978 Anserini +test3342 Q0 13080518 19 12.420980 Anserini +test3342 Q0 19298349 20 12.420980 Anserini +test3342 Q0 7026974 21 12.401999 Anserini +test3342 Q0 1407895 22 12.399980 Anserini +test3342 Q0 793453 23 12.395950 Anserini +test3342 Q0 11076876 24 12.358351 Anserini +test3342 Q0 11026677 25 12.349127 Anserini +test3342 Q0 18036314 26 12.347186 Anserini +test3342 Q0 4969690 27 12.310052 Anserini +test3342 Q0 3596960 28 12.254745 Anserini +test3342 Q0 4899357 29 12.254745 Anserini +test3342 Q0 531761 30 12.212765 Anserini +test3343 Q0 8933110 1 16.471125 Anserini +test3343 Q0 11729970 2 16.243357 Anserini +test3343 Q0 6197572 3 15.948734 Anserini +test3343 Q0 6197556 4 15.948734 Anserini +test3343 Q0 6848644 5 15.901649 Anserini +test3343 Q0 5844887 6 15.871426 Anserini +test3343 Q0 6848647 7 15.840994 Anserini +test3343 Q0 3633540 8 15.822341 Anserini +test3343 Q0 17407000 9 15.805958 Anserini +test3343 Q0 16313480 10 15.756965 Anserini +test3343 Q0 7121071 11 15.754449 Anserini +test3343 Q0 7233624 12 15.741301 Anserini +test3343 Q0 8346579 13 15.729947 Anserini +test3343 Q0 3633243 14 15.659090 Anserini +test3343 Q0 3705132 15 15.647042 Anserini +test3343 Q0 7233623 16 15.608386 Anserini +test3343 Q0 14362612 17 15.601489 Anserini +test3343 Q0 3591690 18 15.589487 Anserini +test3343 Q0 12403100 19 15.589231 Anserini +test3343 Q0 459593 20 15.552770 Anserini +test3343 Q0 16745772 21 15.522102 Anserini +test3343 Q0 6996485 22 15.397602 Anserini +test3343 Q0 10207307 23 15.391963 Anserini +test3343 Q0 6919343 24 15.379677 Anserini +test3343 Q0 4957185 25 15.341929 Anserini +test3343 Q0 15480492 26 15.270152 Anserini +test3343 Q0 12403066 27 15.232131 Anserini +test3343 Q0 6810753 28 15.173393 Anserini +test3343 Q0 17093170 29 15.166439 Anserini +test3343 Q0 65343 30 15.140688 Anserini +test3344 Q0 11459558 1 25.838779 Anserini +test3344 Q0 11459563 2 25.073254 Anserini +test3344 Q0 2924995 3 21.109720 Anserini +test3344 Q0 13202355 4 20.341190 Anserini +test3344 Q0 11459562 5 19.752222 Anserini +test3344 Q0 11459561 6 19.373539 Anserini +test3344 Q0 17655688 7 19.119141 Anserini +test3344 Q0 5478761 8 18.303137 Anserini +test3344 Q0 4024702 9 18.077021 Anserini +test3344 Q0 4000281 10 17.769455 Anserini +test3344 Q0 11459559 11 17.745920 Anserini +test3344 Q0 3147311 12 17.631390 Anserini +test3344 Q0 9250263 13 17.027351 Anserini +test3344 Q0 11459560 14 16.876072 Anserini +test3344 Q0 19732562 15 16.796730 Anserini +test3344 Q0 19806556 16 16.419264 Anserini +test3344 Q0 2632885 17 16.111818 Anserini +test3344 Q0 15513682 18 15.956172 Anserini +test3344 Q0 10156182 19 15.731076 Anserini +test3344 Q0 16968673 20 15.646402 Anserini +test3344 Q0 13579998 21 15.378716 Anserini +test3344 Q0 5174648 22 15.372942 Anserini +test3344 Q0 6729782 23 15.362517 Anserini +test3344 Q0 18481429 24 15.307633 Anserini +test3344 Q0 5836865 25 15.203417 Anserini +test3344 Q0 20907972 26 15.011751 Anserini +test3344 Q0 5568515 27 14.969440 Anserini +test3344 Q0 18588022 28 14.948800 Anserini +test3344 Q0 9415911 29 14.941981 Anserini +test3344 Q0 8745648 30 14.928666 Anserini +test3345 Q0 11697564 1 19.451422 Anserini +test3345 Q0 11697576 2 19.389421 Anserini +test3345 Q0 2766452 3 18.585718 Anserini +test3345 Q0 2766449 4 18.414318 Anserini +test3345 Q0 11697565 5 18.316397 Anserini +test3345 Q0 11697566 6 17.594105 Anserini +test3345 Q0 11697574 7 17.549564 Anserini +test3345 Q0 11697569 8 17.443272 Anserini +test3345 Q0 11697575 9 17.256428 Anserini +test3345 Q0 7533871 10 17.211021 Anserini +test3345 Q0 2766450 11 16.583456 Anserini +test3345 Q0 3324805 12 16.310932 Anserini +test3345 Q0 2766435 13 16.131699 Anserini +test3345 Q0 2766456 14 15.823453 Anserini +test3345 Q0 11697570 15 15.772964 Anserini +test3345 Q0 11697567 16 15.522188 Anserini +test3345 Q0 11697572 17 15.465281 Anserini +test3345 Q0 11871576 18 15.343736 Anserini +test3345 Q0 2766262 19 15.245587 Anserini +test3345 Q0 11697568 20 15.178102 Anserini +test3345 Q0 2766454 21 14.965834 Anserini +test3345 Q0 11697573 22 14.905905 Anserini +test3345 Q0 19110923 23 14.770417 Anserini +test3345 Q0 2766453 24 14.435049 Anserini +test3345 Q0 11697571 25 14.435049 Anserini +test3345 Q0 11871574 26 14.411270 Anserini +test3345 Q0 14849804 27 14.322546 Anserini +test3345 Q0 8843309 28 13.870632 Anserini +test3345 Q0 1432498 29 13.563656 Anserini +test3345 Q0 1432440 30 13.445162 Anserini +test3346 Q0 13220445 1 15.124063 Anserini +test3346 Q0 3034700 2 14.755474 Anserini +test3346 Q0 13284908 3 14.146781 Anserini +test3346 Q0 7893589 4 14.056685 Anserini +test3346 Q0 9394386 5 13.903173 Anserini +test3346 Q0 12571279 6 13.863760 Anserini +test3346 Q0 11851408 7 13.719960 Anserini +test3346 Q0 16942728 8 13.608828 Anserini +test3346 Q0 13284900 9 13.456198 Anserini +test3346 Q0 12002079 10 13.407719 Anserini +test3346 Q0 11276174 11 13.261120 Anserini +test3346 Q0 18813561 12 13.204378 Anserini +test3346 Q0 8606197 13 13.195221 Anserini +test3346 Q0 17214944 14 13.188668 Anserini +test3346 Q0 16402971 15 13.170580 Anserini +test3346 Q0 15912661 16 12.980363 Anserini +test3346 Q0 8606199 17 12.944712 Anserini +test3346 Q0 13627551 18 12.897592 Anserini +test3346 Q0 20601663 19 12.886746 Anserini +test3346 Q0 9451363 20 12.851077 Anserini +test3346 Q0 14306351 21 12.850577 Anserini +test3346 Q0 9451355 22 12.786139 Anserini +test3346 Q0 13529908 23 12.781759 Anserini +test3346 Q0 9451299 24 12.717392 Anserini +test3346 Q0 13101143 25 12.655067 Anserini +test3346 Q0 9451376 26 12.587480 Anserini +test3346 Q0 13627553 27 12.562165 Anserini +test3346 Q0 8606186 28 12.483782 Anserini +test3346 Q0 13627548 29 12.475886 Anserini +test3346 Q0 9451354 30 12.451797 Anserini +test3347 Q0 12415879 1 10.952009 Anserini +test3347 Q0 20693623 2 10.786124 Anserini +test3347 Q0 17222691 3 10.670993 Anserini +test3347 Q0 20693659 4 10.357311 Anserini +test3347 Q0 9048890 5 10.273060 Anserini +test3347 Q0 20693665 6 10.246716 Anserini +test3347 Q0 3428125 7 10.227945 Anserini +test3347 Q0 20693670 8 10.093168 Anserini +test3347 Q0 18869705 9 10.044928 Anserini +test3347 Q0 10078646 10 10.006290 Anserini +test3347 Q0 9334873 11 10.000950 Anserini +test3347 Q0 1244506 12 9.924506 Anserini +test3347 Q0 7466371 13 9.903956 Anserini +test3347 Q0 14705038 14 9.845021 Anserini +test3347 Q0 14705040 15 9.840981 Anserini +test3347 Q0 20693645 16 9.821333 Anserini +test3347 Q0 20693661 17 9.784645 Anserini +test3347 Q0 11659448 18 9.738265 Anserini +test3347 Q0 12042474 19 9.693676 Anserini +test3347 Q0 20693634 20 9.594555 Anserini +test3347 Q0 7555535 21 9.569081 Anserini +test3347 Q0 14705041 22 9.502963 Anserini +test3347 Q0 20693629 23 9.488373 Anserini +test3347 Q0 20693658 24 9.488373 Anserini +test3347 Q0 3428124 25 9.363153 Anserini +test3347 Q0 14705039 26 9.290178 Anserini +test3347 Q0 9090740 27 9.178961 Anserini +test3347 Q0 4498731 28 9.177286 Anserini +test3347 Q0 9609257 29 9.156230 Anserini +test3347 Q0 7079401 30 9.113235 Anserini +test3348 Q0 16287644 1 10.652737 Anserini +test3348 Q0 656212 2 10.351377 Anserini +test3348 Q0 546003 3 10.180197 Anserini +test3348 Q0 268086 4 9.906138 Anserini +test3348 Q0 4754962 5 9.781479 Anserini +test3348 Q0 656220 6 9.779070 Anserini +test3348 Q0 4452963 7 9.680567 Anserini +test3348 Q0 3660553 8 9.638013 Anserini +test3348 Q0 19810354 9 9.615045 Anserini +test3348 Q0 16287646 10 9.517532 Anserini +test3348 Q0 11907519 11 9.296421 Anserini +test3348 Q0 12368999 12 9.223011 Anserini +test3348 Q0 218434 13 9.149547 Anserini +test3348 Q0 546043 14 9.077292 Anserini +test3348 Q0 656216 15 9.057428 Anserini +test3348 Q0 12186327 16 9.051990 Anserini +test3348 Q0 6518079 17 9.036421 Anserini +test3348 Q0 7681041 18 8.992644 Anserini +test3348 Q0 13525434 19 8.992644 Anserini +test3348 Q0 11886285 20 8.986154 Anserini +test3348 Q0 15151130 21 8.959870 Anserini +test3348 Q0 12186326 22 8.936292 Anserini +test3348 Q0 13313015 23 8.906579 Anserini +test3348 Q0 4452962 24 8.882925 Anserini +test3348 Q0 3709479 25 8.864905 Anserini +test3348 Q0 7674489 26 8.779165 Anserini +test3348 Q0 16287645 27 8.779165 Anserini +test3348 Q0 656229 28 8.769295 Anserini +test3348 Q0 3308419 29 8.729878 Anserini +test3348 Q0 10966022 30 8.729878 Anserini +test3349 Q0 20080836 1 11.958533 Anserini +test3349 Q0 7905987 2 11.861641 Anserini +test3349 Q0 9558621 3 11.769215 Anserini +test3349 Q0 5707172 4 11.607980 Anserini +test3349 Q0 20080837 5 11.572452 Anserini +test3349 Q0 12509209 6 11.522056 Anserini +test3349 Q0 658811 7 11.204804 Anserini +test3349 Q0 3195048 8 11.148561 Anserini +test3349 Q0 15121922 9 11.045079 Anserini +test3349 Q0 18016500 10 11.023737 Anserini +test3349 Q0 14689514 11 10.968361 Anserini +test3349 Q0 15121931 12 10.831039 Anserini +test3349 Q0 15922600 13 10.826492 Anserini +test3349 Q0 1427031 14 10.785544 Anserini +test3349 Q0 15514374 15 10.775621 Anserini +test3349 Q0 6386852 16 10.750350 Anserini +test3349 Q0 7121789 17 10.645985 Anserini +test3349 Q0 6941534 18 10.611098 Anserini +test3349 Q0 16991641 19 10.586726 Anserini +test3349 Q0 12500043 20 10.513997 Anserini +test3349 Q0 20269717 21 10.479096 Anserini +test3349 Q0 14470117 22 10.369334 Anserini +test3349 Q0 1270135 23 10.362549 Anserini +test3349 Q0 9754696 24 10.311964 Anserini +test3349 Q0 13333911 25 10.300478 Anserini +test3349 Q0 9336402 26 10.293331 Anserini +test3349 Q0 6671637 27 10.290857 Anserini +test3349 Q0 2462343 28 10.261800 Anserini +test3349 Q0 15922601 29 10.255024 Anserini +test3349 Q0 6936365 30 10.210989 Anserini +test335 Q0 17288194 1 16.451422 Anserini +test335 Q0 12069725 2 13.740800 Anserini +test335 Q0 2998705 3 13.454915 Anserini +test335 Q0 5064292 4 12.532945 Anserini +test335 Q0 19754675 5 12.369331 Anserini +test335 Q0 2822347 6 12.368523 Anserini +test335 Q0 2223865 7 12.324185 Anserini +test335 Q0 20434212 8 12.301902 Anserini +test335 Q0 18452645 9 12.201822 Anserini +test335 Q0 11463545 10 12.180504 Anserini +test335 Q0 17925269 11 12.026679 Anserini +test335 Q0 14416496 12 11.901099 Anserini +test335 Q0 5409647 13 11.884227 Anserini +test335 Q0 7272418 14 11.736659 Anserini +test335 Q0 9951910 15 11.661198 Anserini +test335 Q0 17416662 16 11.589491 Anserini +test335 Q0 2223833 17 11.572945 Anserini +test335 Q0 12172290 18 11.507581 Anserini +test335 Q0 9951912 19 11.487407 Anserini +test335 Q0 15598641 20 11.369148 Anserini +test335 Q0 17748613 21 11.344379 Anserini +test335 Q0 17925283 22 11.310982 Anserini +test335 Q0 12322976 23 11.282272 Anserini +test335 Q0 2201967 24 11.227930 Anserini +test335 Q0 19372976 25 11.158506 Anserini +test335 Q0 11459642 26 11.083623 Anserini +test335 Q0 5863967 27 11.083623 Anserini +test335 Q0 17288206 28 11.048009 Anserini +test335 Q0 16491279 29 11.036469 Anserini +test335 Q0 18044350 30 11.022990 Anserini +test3350 Q0 3579707 1 14.891497 Anserini +test3350 Q0 11766514 2 14.819630 Anserini +test3350 Q0 9082772 3 14.673440 Anserini +test3350 Q0 10061614 4 14.622789 Anserini +test3350 Q0 9236472 5 14.611594 Anserini +test3350 Q0 7497736 6 14.457026 Anserini +test3350 Q0 16756932 7 14.439072 Anserini +test3350 Q0 20263273 8 14.367707 Anserini +test3350 Q0 2472876 9 14.366020 Anserini +test3350 Q0 19429253 10 14.271557 Anserini +test3350 Q0 13860373 11 14.121524 Anserini +test3350 Q0 12507162 12 14.116900 Anserini +test3350 Q0 10199362 13 14.106987 Anserini +test3350 Q0 839514 14 14.085560 Anserini +test3350 Q0 20224495 15 14.081397 Anserini +test3350 Q0 19177303 16 14.061841 Anserini +test3350 Q0 9859493 17 14.040880 Anserini +test3350 Q0 9273213 18 13.982150 Anserini +test3350 Q0 20110834 19 13.971949 Anserini +test3350 Q0 7592734 20 13.967606 Anserini +test3350 Q0 2727532 21 13.950123 Anserini +test3350 Q0 14279845 22 13.940207 Anserini +test3350 Q0 17304197 23 13.937836 Anserini +test3350 Q0 1126106 24 13.932794 Anserini +test3350 Q0 16168697 25 13.924034 Anserini +test3350 Q0 20110827 26 13.915009 Anserini +test3350 Q0 1231070 27 13.914379 Anserini +test3350 Q0 17562684 28 13.908765 Anserini +test3350 Q0 20649506 29 13.896201 Anserini +test3350 Q0 20643749 30 13.896201 Anserini +test3351 Q0 2516557 1 13.898564 Anserini +test3351 Q0 3448878 2 13.833012 Anserini +test3351 Q0 3448877 3 12.978422 Anserini +test3351 Q0 3448872 4 12.955439 Anserini +test3351 Q0 3448870 5 12.772736 Anserini +test3351 Q0 3448876 6 12.737868 Anserini +test3351 Q0 3448867 7 12.633570 Anserini +test3351 Q0 3448868 8 12.515951 Anserini +test3351 Q0 3448873 9 12.157015 Anserini +test3351 Q0 795309 10 11.927814 Anserini +test3351 Q0 279142 11 11.659492 Anserini +test3351 Q0 3448869 12 11.189058 Anserini +test3351 Q0 252500 13 11.123599 Anserini +test3351 Q0 9082930 14 11.050627 Anserini +test3351 Q0 14426070 15 11.037608 Anserini +test3351 Q0 6797042 16 10.976076 Anserini +test3351 Q0 13707337 17 10.970274 Anserini +test3351 Q0 2473201 18 10.959248 Anserini +test3351 Q0 279106 19 10.867355 Anserini +test3351 Q0 3448875 20 10.626875 Anserini +test3351 Q0 7655359 21 10.543578 Anserini +test3351 Q0 13707344 22 10.495614 Anserini +test3351 Q0 7655357 23 10.355281 Anserini +test3351 Q0 2473221 24 10.348204 Anserini +test3351 Q0 2491013 25 10.277962 Anserini +test3351 Q0 8400346 26 10.224838 Anserini +test3351 Q0 4966786 27 10.177533 Anserini +test3351 Q0 20182770 28 10.120265 Anserini +test3351 Q0 20768832 29 10.072282 Anserini +test3351 Q0 6559737 30 10.054812 Anserini +test3352 Q0 5480927 1 17.117754 Anserini +test3352 Q0 2615786 2 16.479074 Anserini +test3352 Q0 11667071 3 15.604245 Anserini +test3352 Q0 8419358 4 15.497498 Anserini +test3352 Q0 2127753 5 15.312853 Anserini +test3352 Q0 14654466 6 15.233226 Anserini +test3352 Q0 16142112 7 15.099110 Anserini +test3352 Q0 3597550 8 14.989737 Anserini +test3352 Q0 4872815 9 14.966923 Anserini +test3352 Q0 5836062 10 14.957935 Anserini +test3352 Q0 5376780 11 14.915232 Anserini +test3352 Q0 14819865 12 14.902691 Anserini +test3352 Q0 19517180 13 14.835121 Anserini +test3352 Q0 1833137 14 14.811163 Anserini +test3352 Q0 19423241 15 14.768181 Anserini +test3352 Q0 19423238 16 14.764717 Anserini +test3352 Q0 5836066 17 14.685643 Anserini +test3352 Q0 16195248 18 14.609612 Anserini +test3352 Q0 1833193 19 14.609465 Anserini +test3352 Q0 3543264 20 14.584574 Anserini +test3352 Q0 18364717 21 14.416290 Anserini +test3352 Q0 2726716 22 14.389237 Anserini +test3352 Q0 3543381 23 14.328527 Anserini +test3352 Q0 16327240 24 14.323650 Anserini +test3352 Q0 5923829 25 14.217398 Anserini +test3352 Q0 17016898 26 14.175400 Anserini +test3352 Q0 13329659 27 14.174822 Anserini +test3352 Q0 3986289 28 14.157383 Anserini +test3352 Q0 11667098 29 14.140521 Anserini +test3352 Q0 472306 30 14.122494 Anserini +test3353 Q0 2820079 1 9.804228 Anserini +test3353 Q0 6341742 2 9.709518 Anserini +test3353 Q0 2820078 3 9.674881 Anserini +test3353 Q0 9950279 4 9.554905 Anserini +test3353 Q0 12794024 5 9.413857 Anserini +test3353 Q0 2391335 6 9.413316 Anserini +test3353 Q0 1065787 7 8.855371 Anserini +test3353 Q0 101646 8 8.855232 Anserini +test3353 Q0 1451218 9 8.851888 Anserini +test3353 Q0 42855 10 8.833532 Anserini +test3353 Q0 5049253 11 8.592613 Anserini +test3353 Q0 1988422 12 8.587502 Anserini +test3353 Q0 20695791 13 8.576078 Anserini +test3353 Q0 12417725 14 8.499487 Anserini +test3353 Q0 628754 15 8.489545 Anserini +test3353 Q0 3390168 16 8.469683 Anserini +test3353 Q0 392250 17 8.371455 Anserini +test3353 Q0 3373931 18 8.359538 Anserini +test3353 Q0 5185349 19 8.326302 Anserini +test3353 Q0 11815438 20 8.240309 Anserini +test3353 Q0 2838306 21 8.210312 Anserini +test3353 Q0 9678733 22 8.178093 Anserini +test3353 Q0 2474763 23 8.129110 Anserini +test3353 Q0 8740265 24 8.126519 Anserini +test3353 Q0 14412578 25 8.084877 Anserini +test3353 Q0 12292811 26 8.068446 Anserini +test3353 Q0 4616943 27 8.048386 Anserini +test3353 Q0 2326725 28 8.009962 Anserini +test3353 Q0 3144826 29 7.998611 Anserini +test3353 Q0 1946225 30 7.997301 Anserini +test3354 Q0 12820890 1 15.998077 Anserini +test3354 Q0 12242710 2 14.636454 Anserini +test3354 Q0 19196409 3 14.442382 Anserini +test3354 Q0 19196413 4 14.360212 Anserini +test3354 Q0 19955274 5 14.360212 Anserini +test3354 Q0 14848911 6 14.351316 Anserini +test3354 Q0 9566371 7 14.304457 Anserini +test3354 Q0 9566373 8 14.304457 Anserini +test3354 Q0 18588493 9 14.280998 Anserini +test3354 Q0 9566324 10 14.173402 Anserini +test3354 Q0 9566326 11 14.108580 Anserini +test3354 Q0 12937541 12 14.097398 Anserini +test3354 Q0 12047955 13 13.850348 Anserini +test3354 Q0 10291115 14 13.682796 Anserini +test3354 Q0 15179995 15 13.658656 Anserini +test3354 Q0 11775543 16 13.655649 Anserini +test3354 Q0 17911380 17 13.645058 Anserini +test3354 Q0 17911382 18 13.616824 Anserini +test3354 Q0 15179994 19 13.572516 Anserini +test3354 Q0 13520657 20 13.567151 Anserini +test3354 Q0 16424454 21 13.507694 Anserini +test3354 Q0 12937542 22 13.469315 Anserini +test3354 Q0 14848907 23 13.433270 Anserini +test3354 Q0 14564293 24 13.416628 Anserini +test3354 Q0 14564295 25 13.416628 Anserini +test3354 Q0 12820893 26 13.366794 Anserini +test3354 Q0 19955273 27 13.290680 Anserini +test3354 Q0 19955275 28 13.252265 Anserini +test3354 Q0 19196410 29 13.222879 Anserini +test3354 Q0 14668738 30 13.116519 Anserini +test3355 Q0 18982046 1 14.265368 Anserini +test3355 Q0 18017325 2 13.750075 Anserini +test3355 Q0 18971141 3 13.712218 Anserini +test3355 Q0 18982053 4 13.434596 Anserini +test3355 Q0 18349719 5 13.102705 Anserini +test3355 Q0 19741953 6 13.090541 Anserini +test3355 Q0 19741966 7 13.090541 Anserini +test3355 Q0 17925269 8 13.086563 Anserini +test3355 Q0 19414772 9 12.974214 Anserini +test3355 Q0 17605873 10 12.897535 Anserini +test3355 Q0 18322646 11 12.840902 Anserini +test3355 Q0 18982060 12 12.664799 Anserini +test3355 Q0 19414780 13 12.581262 Anserini +test3355 Q0 19414796 14 12.581262 Anserini +test3355 Q0 18356728 15 12.581262 Anserini +test3355 Q0 18040753 16 12.573809 Anserini +test3355 Q0 17883943 17 12.562325 Anserini +test3355 Q0 17999476 18 12.412384 Anserini +test3355 Q0 18729154 19 12.355507 Anserini +test3355 Q0 18349718 20 12.353209 Anserini +test3355 Q0 19078571 21 12.173691 Anserini +test3355 Q0 17258190 22 12.142974 Anserini +test3355 Q0 19950544 23 12.122043 Anserini +test3355 Q0 19078594 24 12.119250 Anserini +test3355 Q0 17883944 25 12.107421 Anserini +test3355 Q0 16363887 26 12.078039 Anserini +test3355 Q0 16224765 27 12.051702 Anserini +test3355 Q0 18393170 28 12.051702 Anserini +test3355 Q0 16886504 29 12.051702 Anserini +test3355 Q0 19725890 30 12.025063 Anserini +test3356 Q0 9224092 1 33.493717 Anserini +test3356 Q0 9224095 2 32.028419 Anserini +test3356 Q0 3859897 3 28.715054 Anserini +test3356 Q0 10694860 4 24.309563 Anserini +test3356 Q0 17746743 5 24.064865 Anserini +test3356 Q0 190322 6 23.425514 Anserini +test3356 Q0 9224094 7 22.385300 Anserini +test3356 Q0 9224093 8 22.147141 Anserini +test3356 Q0 4659253 9 21.462132 Anserini +test3356 Q0 17746742 10 21.462132 Anserini +test3356 Q0 5048300 11 12.467260 Anserini +test3356 Q0 15329062 12 11.887764 Anserini +test3356 Q0 17814204 13 11.748452 Anserini +test3356 Q0 12340630 14 11.590163 Anserini +test3356 Q0 17814203 15 11.319052 Anserini +test3356 Q0 10326625 16 11.021795 Anserini +test3356 Q0 10326627 17 11.021795 Anserini +test3356 Q0 18979479 18 11.021795 Anserini +test3356 Q0 12865439 19 11.021795 Anserini +test3356 Q0 12865441 20 11.021795 Anserini +test3356 Q0 18264888 21 10.991152 Anserini +test3356 Q0 18342251 22 10.955841 Anserini +test3356 Q0 18979475 23 10.955841 Anserini +test3356 Q0 9521673 24 10.688454 Anserini +test3356 Q0 11215366 25 10.654896 Anserini +test3356 Q0 18359789 26 10.639077 Anserini +test3356 Q0 8986351 27 10.621358 Anserini +test3356 Q0 12384733 28 10.508603 Anserini +test3356 Q0 19077513 29 10.355031 Anserini +test3356 Q0 8986349 30 10.012719 Anserini +test3357 Q0 1460406 1 14.986878 Anserini +test3357 Q0 898534 2 14.436831 Anserini +test3357 Q0 19338657 3 12.993939 Anserini +test3357 Q0 18266135 4 12.735077 Anserini +test3357 Q0 19743528 5 12.224616 Anserini +test3357 Q0 62597 6 11.945274 Anserini +test3357 Q0 3470446 7 11.719832 Anserini +test3357 Q0 1446545 8 11.640379 Anserini +test3357 Q0 18162512 9 11.486797 Anserini +test3357 Q0 13148273 10 11.480392 Anserini +test3357 Q0 10072260 11 11.235276 Anserini +test3357 Q0 10956622 12 11.156961 Anserini +test3357 Q0 18162670 13 11.081288 Anserini +test3357 Q0 7651787 14 10.971783 Anserini +test3357 Q0 17238809 15 10.967706 Anserini +test3357 Q0 15981612 16 10.946226 Anserini +test3357 Q0 1460422 17 10.873583 Anserini +test3357 Q0 10996546 18 10.771635 Anserini +test3357 Q0 6688506 19 10.750412 Anserini +test3357 Q0 12223606 20 10.728757 Anserini +test3357 Q0 17563458 21 10.708469 Anserini +test3357 Q0 1670063 22 10.677372 Anserini +test3357 Q0 13148268 23 10.648747 Anserini +test3357 Q0 6213150 24 10.599290 Anserini +test3357 Q0 3063210 25 10.594157 Anserini +test3357 Q0 6182326 26 10.586135 Anserini +test3357 Q0 11846481 27 10.422928 Anserini +test3357 Q0 2838399 28 10.394884 Anserini +test3357 Q0 20651844 29 10.347297 Anserini +test3357 Q0 8295890 30 10.264385 Anserini +test3358 Q0 4077007 1 10.183059 Anserini +test3358 Q0 5669503 2 9.915663 Anserini +test3358 Q0 4021804 3 9.612178 Anserini +test3358 Q0 8988391 4 9.586264 Anserini +test3358 Q0 3688621 5 9.553898 Anserini +test3358 Q0 14792790 6 9.539426 Anserini +test3358 Q0 6076826 7 9.527639 Anserini +test3358 Q0 7112123 8 9.465862 Anserini +test3358 Q0 10427288 9 9.407732 Anserini +test3358 Q0 2279644 10 9.373426 Anserini +test3358 Q0 4630144 11 9.242439 Anserini +test3358 Q0 17707909 12 9.214013 Anserini +test3358 Q0 11059086 13 9.193092 Anserini +test3358 Q0 9528126 14 9.191437 Anserini +test3358 Q0 19452273 15 9.189272 Anserini +test3358 Q0 11076536 16 9.109241 Anserini +test3358 Q0 13676173 17 9.057457 Anserini +test3358 Q0 1434486 18 9.002815 Anserini +test3358 Q0 6689882 19 8.950250 Anserini +test3358 Q0 12229781 20 8.926263 Anserini +test3358 Q0 9480599 21 8.914650 Anserini +test3358 Q0 220657 22 8.896279 Anserini +test3358 Q0 5020281 23 8.884990 Anserini +test3358 Q0 17879796 24 8.876860 Anserini +test3358 Q0 15160113 25 8.873796 Anserini +test3358 Q0 3351731 26 8.830078 Anserini +test3358 Q0 10189726 27 8.827683 Anserini +test3358 Q0 15206766 28 8.804271 Anserini +test3358 Q0 8615582 29 8.798343 Anserini +test3358 Q0 19701278 30 8.795214 Anserini +test3359 Q0 15558200 1 14.136700 Anserini +test3359 Q0 5512890 2 13.954318 Anserini +test3359 Q0 5512892 3 13.944547 Anserini +test3359 Q0 15558211 4 13.850967 Anserini +test3359 Q0 18100729 5 13.780373 Anserini +test3359 Q0 20985918 6 13.744703 Anserini +test3359 Q0 16443892 7 13.606113 Anserini +test3359 Q0 20497315 8 13.430426 Anserini +test3359 Q0 15558174 9 13.401790 Anserini +test3359 Q0 15558183 10 13.400738 Anserini +test3359 Q0 17196472 11 13.230763 Anserini +test3359 Q0 15558195 12 12.979479 Anserini +test3359 Q0 12167092 13 12.892003 Anserini +test3359 Q0 15558198 14 12.876999 Anserini +test3359 Q0 15558215 15 12.862385 Anserini +test3359 Q0 15558196 16 12.845504 Anserini +test3359 Q0 19563693 17 12.782555 Anserini +test3359 Q0 15558184 18 12.688873 Anserini +test3359 Q0 9101594 19 12.667447 Anserini +test3359 Q0 16443905 20 12.661689 Anserini +test3359 Q0 15558172 21 12.643615 Anserini +test3359 Q0 15558213 22 12.610299 Anserini +test3359 Q0 15558170 23 12.465334 Anserini +test3359 Q0 15558180 24 12.408762 Anserini +test3359 Q0 18100733 25 12.402844 Anserini +test3359 Q0 19348457 26 12.389883 Anserini +test3359 Q0 15558182 27 12.361496 Anserini +test3359 Q0 15558194 28 12.235268 Anserini +test3359 Q0 15558197 29 12.164722 Anserini +test3359 Q0 5512891 30 12.156115 Anserini +test336 Q0 2490663 1 13.971606 Anserini +test336 Q0 15835686 2 13.917068 Anserini +test336 Q0 13543130 3 13.477551 Anserini +test336 Q0 16949923 4 12.674973 Anserini +test336 Q0 1994536 5 12.240406 Anserini +test336 Q0 8406037 6 11.988274 Anserini +test336 Q0 10604030 7 11.743743 Anserini +test336 Q0 6854150 8 11.488026 Anserini +test336 Q0 2459935 9 11.427525 Anserini +test336 Q0 6023295 10 11.427525 Anserini +test336 Q0 2012269 11 11.207257 Anserini +test336 Q0 3083918 12 11.019304 Anserini +test336 Q0 16412713 13 10.999779 Anserini +test336 Q0 15726263 14 10.964565 Anserini +test336 Q0 10520854 15 10.883395 Anserini +test336 Q0 15381675 16 10.877449 Anserini +test336 Q0 12568367 17 10.877449 Anserini +test336 Q0 2170808 18 10.877449 Anserini +test336 Q0 6655882 19 10.806008 Anserini +test336 Q0 14506651 20 10.769540 Anserini +test336 Q0 13911975 21 10.738099 Anserini +test336 Q0 11659655 22 10.700668 Anserini +test336 Q0 8474928 23 10.697811 Anserini +test336 Q0 15589896 24 10.664279 Anserini +test336 Q0 16725138 25 10.648435 Anserini +test336 Q0 10174711 26 10.625326 Anserini +test336 Q0 3400662 27 10.616549 Anserini +test336 Q0 13885519 28 10.570423 Anserini +test336 Q0 19615389 29 10.563416 Anserini +test336 Q0 5749034 30 10.537505 Anserini +test3360 Q0 2872889 1 20.416817 Anserini +test3360 Q0 2872876 2 19.616310 Anserini +test3360 Q0 3364453 3 17.721722 Anserini +test3360 Q0 42552 4 17.458071 Anserini +test3360 Q0 9871623 5 17.216398 Anserini +test3360 Q0 7963658 6 17.102871 Anserini +test3360 Q0 3364454 7 17.085129 Anserini +test3360 Q0 6703468 8 17.079802 Anserini +test3360 Q0 13100673 9 16.926781 Anserini +test3360 Q0 2872886 10 16.850040 Anserini +test3360 Q0 2872901 11 16.656504 Anserini +test3360 Q0 2872891 12 16.631113 Anserini +test3360 Q0 9257019 13 16.457161 Anserini +test3360 Q0 11434301 14 16.444963 Anserini +test3360 Q0 2872885 15 16.379614 Anserini +test3360 Q0 9737989 16 16.223019 Anserini +test3360 Q0 9839193 17 16.141678 Anserini +test3360 Q0 7546114 18 16.120808 Anserini +test3360 Q0 16818733 19 15.998000 Anserini +test3360 Q0 13086690 20 15.963706 Anserini +test3360 Q0 1557978 21 15.777216 Anserini +test3360 Q0 2753213 22 15.734708 Anserini +test3360 Q0 11701257 23 15.716310 Anserini +test3360 Q0 8645409 24 15.714067 Anserini +test3360 Q0 7963657 25 15.711077 Anserini +test3360 Q0 11494968 26 15.693474 Anserini +test3360 Q0 2872892 27 15.678237 Anserini +test3360 Q0 14000497 28 15.649010 Anserini +test3360 Q0 11240557 29 15.584298 Anserini +test3360 Q0 4506500 30 15.581174 Anserini +test3361 Q0 17169946 1 11.129000 Anserini +test3361 Q0 18832749 2 9.630810 Anserini +test3361 Q0 13768747 3 9.581312 Anserini +test3361 Q0 13191844 4 9.516566 Anserini +test3361 Q0 17683357 5 9.398917 Anserini +test3361 Q0 17683359 6 9.320348 Anserini +test3361 Q0 8482871 7 9.312403 Anserini +test3361 Q0 9080320 8 9.296288 Anserini +test3361 Q0 19955202 9 9.141746 Anserini +test3361 Q0 15150834 10 9.134955 Anserini +test3361 Q0 9080317 11 9.134519 Anserini +test3361 Q0 15961861 12 9.134519 Anserini +test3361 Q0 7714877 13 9.086322 Anserini +test3361 Q0 19394742 14 9.012036 Anserini +test3361 Q0 18768169 15 8.954244 Anserini +test3361 Q0 10286641 16 8.898756 Anserini +test3361 Q0 13191846 17 8.890450 Anserini +test3361 Q0 18660826 18 8.854360 Anserini +test3361 Q0 19394741 19 8.853344 Anserini +test3361 Q0 12571385 20 8.840801 Anserini +test3361 Q0 12147449 21 8.825474 Anserini +test3361 Q0 15935792 22 8.818629 Anserini +test3361 Q0 6530077 23 8.815819 Anserini +test3361 Q0 7049070 24 8.706017 Anserini +test3361 Q0 5683072 25 8.634037 Anserini +test3361 Q0 6800967 26 8.627048 Anserini +test3361 Q0 7699653 27 8.622282 Anserini +test3361 Q0 7064486 28 8.597868 Anserini +test3361 Q0 14684763 29 8.589929 Anserini +test3361 Q0 16257238 30 8.547880 Anserini +test3362 Q0 141542 1 21.471338 Anserini +test3362 Q0 7922191 2 21.307148 Anserini +test3362 Q0 10284144 3 20.207594 Anserini +test3362 Q0 12295801 4 19.119093 Anserini +test3362 Q0 141483 5 19.098988 Anserini +test3362 Q0 9187575 6 18.888988 Anserini +test3362 Q0 17470481 7 18.810078 Anserini +test3362 Q0 14054679 8 18.682434 Anserini +test3362 Q0 17965233 9 18.594490 Anserini +test3362 Q0 14054677 10 18.590519 Anserini +test3362 Q0 141466 11 18.561501 Anserini +test3362 Q0 18024559 12 18.540749 Anserini +test3362 Q0 4198106 13 18.111506 Anserini +test3362 Q0 141470 14 17.874819 Anserini +test3362 Q0 19068476 15 17.781034 Anserini +test3362 Q0 12295799 16 17.695688 Anserini +test3362 Q0 4897215 17 17.525608 Anserini +test3362 Q0 141494 18 17.497776 Anserini +test3362 Q0 19101662 19 17.452854 Anserini +test3362 Q0 8755057 20 17.381321 Anserini +test3362 Q0 141571 21 17.337595 Anserini +test3362 Q0 10366851 22 17.319437 Anserini +test3362 Q0 9822831 23 17.312588 Anserini +test3362 Q0 5047878 24 17.168253 Anserini +test3362 Q0 6505779 25 17.069309 Anserini +test3362 Q0 4655897 26 17.047012 Anserini +test3362 Q0 7761832 27 17.029942 Anserini +test3362 Q0 15864683 28 16.984648 Anserini +test3362 Q0 7761829 29 16.930729 Anserini +test3362 Q0 19061560 30 16.762150 Anserini +test3363 Q0 14943954 1 12.601813 Anserini +test3363 Q0 3002788 2 12.033097 Anserini +test3363 Q0 4608622 3 11.703287 Anserini +test3363 Q0 2190171 4 11.548089 Anserini +test3363 Q0 6682447 5 11.452835 Anserini +test3363 Q0 13200797 6 11.452835 Anserini +test3363 Q0 2876777 7 11.205337 Anserini +test3363 Q0 14195132 8 11.158237 Anserini +test3363 Q0 2190172 9 11.083068 Anserini +test3363 Q0 2282989 10 11.083068 Anserini +test3363 Q0 4699159 11 11.063970 Anserini +test3363 Q0 18007429 12 11.063918 Anserini +test3363 Q0 20939618 13 11.038964 Anserini +test3363 Q0 14601407 14 10.984865 Anserini +test3363 Q0 20224703 15 10.984367 Anserini +test3363 Q0 5901063 16 10.887482 Anserini +test3363 Q0 14568208 17 10.884889 Anserini +test3363 Q0 325754 18 10.884889 Anserini +test3363 Q0 9256558 19 10.870044 Anserini +test3363 Q0 6917835 20 10.863444 Anserini +test3363 Q0 19175240 21 10.863072 Anserini +test3363 Q0 13183974 22 10.851748 Anserini +test3363 Q0 14943948 23 10.838478 Anserini +test3363 Q0 3915198 24 10.822072 Anserini +test3363 Q0 14943942 25 10.812446 Anserini +test3363 Q0 7058044 26 10.792872 Anserini +test3363 Q0 17699768 27 10.792433 Anserini +test3363 Q0 20177480 28 10.787261 Anserini +test3363 Q0 1448519 29 10.787261 Anserini +test3363 Q0 15741821 30 10.730609 Anserini +test3364 Q0 13927610 1 16.986298 Anserini +test3364 Q0 13927604 2 16.420088 Anserini +test3364 Q0 15535462 3 16.355152 Anserini +test3364 Q0 19202060 4 16.233747 Anserini +test3364 Q0 13922760 5 16.130671 Anserini +test3364 Q0 13922762 6 16.130671 Anserini +test3364 Q0 4656447 7 15.885509 Anserini +test3364 Q0 4656440 8 15.790171 Anserini +test3364 Q0 19202059 9 15.713731 Anserini +test3364 Q0 15594408 10 15.383931 Anserini +test3364 Q0 15594410 11 15.077192 Anserini +test3364 Q0 5535896 12 15.040560 Anserini +test3364 Q0 5686821 13 14.962340 Anserini +test3364 Q0 10054149 14 14.925625 Anserini +test3364 Q0 4656473 15 14.768099 Anserini +test3364 Q0 19083299 16 14.692006 Anserini +test3364 Q0 19930164 17 14.527640 Anserini +test3364 Q0 4656453 18 14.504153 Anserini +test3364 Q0 4656442 19 14.403419 Anserini +test3364 Q0 10054147 20 14.396870 Anserini +test3364 Q0 4656450 21 14.369329 Anserini +test3364 Q0 14151772 22 14.327332 Anserini +test3364 Q0 4656454 23 14.297188 Anserini +test3364 Q0 13942073 24 14.103564 Anserini +test3364 Q0 3991933 25 14.067102 Anserini +test3364 Q0 4656455 26 13.995104 Anserini +test3364 Q0 4656445 27 13.979746 Anserini +test3364 Q0 17881883 28 13.913725 Anserini +test3364 Q0 4656464 29 13.872008 Anserini +test3364 Q0 20232443 30 13.872008 Anserini +test3365 Q0 2302820 1 21.629238 Anserini +test3365 Q0 4552048 2 21.524284 Anserini +test3365 Q0 9303962 3 20.175726 Anserini +test3365 Q0 10865612 4 19.936884 Anserini +test3365 Q0 2681494 5 19.351368 Anserini +test3365 Q0 1347585 6 19.311850 Anserini +test3365 Q0 5652163 7 19.290955 Anserini +test3365 Q0 349517 8 19.118612 Anserini +test3365 Q0 14000568 9 18.799013 Anserini +test3365 Q0 649676 10 18.487259 Anserini +test3365 Q0 649631 11 18.356709 Anserini +test3365 Q0 4132175 12 18.308971 Anserini +test3365 Q0 14546188 13 17.865257 Anserini +test3365 Q0 9268951 14 17.837513 Anserini +test3365 Q0 18432740 15 17.804226 Anserini +test3365 Q0 1752413 16 17.789114 Anserini +test3365 Q0 484482 17 17.461262 Anserini +test3365 Q0 1341269 18 17.418388 Anserini +test3365 Q0 2681495 19 17.340757 Anserini +test3365 Q0 9102636 20 17.229414 Anserini +test3365 Q0 17405711 21 17.045446 Anserini +test3365 Q0 3720089 22 17.011515 Anserini +test3365 Q0 12101501 23 16.863201 Anserini +test3365 Q0 11289407 24 16.766718 Anserini +test3365 Q0 17405690 25 16.682957 Anserini +test3365 Q0 15679152 26 16.451351 Anserini +test3365 Q0 4686642 27 16.428665 Anserini +test3365 Q0 13014966 28 16.410149 Anserini +test3365 Q0 13787036 29 16.367329 Anserini +test3365 Q0 649710 30 16.346291 Anserini +test3366 Q0 16214368 1 11.329485 Anserini +test3366 Q0 17296514 2 11.281086 Anserini +test3366 Q0 3839621 3 10.983006 Anserini +test3366 Q0 12060838 4 10.758013 Anserini +test3366 Q0 17727186 5 10.738996 Anserini +test3366 Q0 6777321 6 10.684759 Anserini +test3366 Q0 8626076 7 10.638845 Anserini +test3366 Q0 7160358 8 10.606909 Anserini +test3366 Q0 9024507 9 10.584108 Anserini +test3366 Q0 17920172 10 10.577541 Anserini +test3366 Q0 7816568 11 10.511017 Anserini +test3366 Q0 18076800 12 10.478358 Anserini +test3366 Q0 10471423 13 10.468876 Anserini +test3366 Q0 12570035 14 10.404690 Anserini +test3366 Q0 16563331 15 10.374056 Anserini +test3366 Q0 2671806 16 10.356077 Anserini +test3366 Q0 19313745 17 10.280963 Anserini +test3366 Q0 3263216 18 10.277094 Anserini +test3366 Q0 4785349 19 10.225662 Anserini +test3366 Q0 9406262 20 10.202809 Anserini +test3366 Q0 1059531 21 10.191833 Anserini +test3366 Q0 12250504 22 10.150303 Anserini +test3366 Q0 6324943 23 10.112584 Anserini +test3366 Q0 10408846 24 10.110854 Anserini +test3366 Q0 5609244 25 10.103244 Anserini +test3366 Q0 3115643 26 10.100410 Anserini +test3366 Q0 17727183 27 10.088009 Anserini +test3366 Q0 12060843 28 10.077746 Anserini +test3366 Q0 13754329 29 10.040895 Anserini +test3366 Q0 3692319 30 10.040895 Anserini +test3367 Q0 17004564 1 12.813190 Anserini +test3367 Q0 4990184 2 12.636095 Anserini +test3367 Q0 17004562 3 12.256978 Anserini +test3367 Q0 19692894 4 12.201489 Anserini +test3367 Q0 19692883 5 11.978353 Anserini +test3367 Q0 17004563 6 11.915072 Anserini +test3367 Q0 15780049 7 11.763170 Anserini +test3367 Q0 14079782 8 11.564548 Anserini +test3367 Q0 17004572 9 11.552988 Anserini +test3367 Q0 8344102 10 11.544439 Anserini +test3367 Q0 17004561 11 11.532833 Anserini +test3367 Q0 11832067 12 11.494518 Anserini +test3367 Q0 12726116 13 11.447177 Anserini +test3367 Q0 8268107 14 11.310124 Anserini +test3367 Q0 19364212 15 11.057166 Anserini +test3367 Q0 11832068 16 10.996804 Anserini +test3367 Q0 10781551 17 10.980971 Anserini +test3367 Q0 13392100 18 10.969131 Anserini +test3367 Q0 13392103 19 10.956939 Anserini +test3367 Q0 17333177 20 10.956939 Anserini +test3367 Q0 9351527 21 10.946471 Anserini +test3367 Q0 15448779 22 10.929087 Anserini +test3367 Q0 13596939 23 10.855823 Anserini +test3367 Q0 16735887 24 10.853251 Anserini +test3367 Q0 11800201 25 10.818365 Anserini +test3367 Q0 15524651 26 10.776408 Anserini +test3367 Q0 14402669 27 10.764260 Anserini +test3367 Q0 13034616 28 10.742308 Anserini +test3367 Q0 12124355 29 10.714031 Anserini +test3367 Q0 17333167 30 10.656449 Anserini +test3368 Q0 575404 1 13.547705 Anserini +test3368 Q0 19549733 2 13.374417 Anserini +test3368 Q0 12845037 3 13.333907 Anserini +test3368 Q0 277832 4 13.314581 Anserini +test3368 Q0 575417 5 13.309554 Anserini +test3368 Q0 6908589 6 13.248034 Anserini +test3368 Q0 14309855 7 12.702544 Anserini +test3368 Q0 3084525 8 12.687716 Anserini +test3368 Q0 15827017 9 12.682644 Anserini +test3368 Q0 307478 10 12.537195 Anserini +test3368 Q0 15597342 11 12.424993 Anserini +test3368 Q0 1988342 12 12.348944 Anserini +test3368 Q0 11429158 13 12.246231 Anserini +test3368 Q0 6272993 14 12.227430 Anserini +test3368 Q0 542183 15 12.198408 Anserini +test3368 Q0 1561275 16 12.133504 Anserini +test3368 Q0 7836483 17 12.066605 Anserini +test3368 Q0 6287570 18 12.036842 Anserini +test3368 Q0 935053 19 11.958358 Anserini +test3368 Q0 4821860 20 11.955564 Anserini +test3368 Q0 3715428 21 11.914111 Anserini +test3368 Q0 11689733 22 11.891074 Anserini +test3368 Q0 4219457 23 11.866088 Anserini +test3368 Q0 4362903 24 11.856606 Anserini +test3368 Q0 4897015 25 11.807635 Anserini +test3368 Q0 447490 26 11.673330 Anserini +test3368 Q0 4736217 27 11.589527 Anserini +test3368 Q0 8289739 28 11.545957 Anserini +test3368 Q0 5966766 29 11.545957 Anserini +test3368 Q0 11958748 30 11.540177 Anserini +test3369 Q0 7642296 1 13.741232 Anserini +test3369 Q0 8162940 2 13.461284 Anserini +test3369 Q0 5506722 3 12.937184 Anserini +test3369 Q0 17832637 4 12.685331 Anserini +test3369 Q0 7642297 5 12.478176 Anserini +test3369 Q0 7642295 6 12.389291 Anserini +test3369 Q0 14303742 7 12.370279 Anserini +test3369 Q0 7642287 8 12.351504 Anserini +test3369 Q0 7616584 9 12.331511 Anserini +test3369 Q0 7642305 10 12.315109 Anserini +test3369 Q0 10746783 11 12.253690 Anserini +test3369 Q0 17369955 12 12.215992 Anserini +test3369 Q0 9587961 13 12.208669 Anserini +test3369 Q0 6185694 14 12.204607 Anserini +test3369 Q0 7642300 15 12.192286 Anserini +test3369 Q0 14501322 16 12.172215 Anserini +test3369 Q0 5622873 17 12.163677 Anserini +test3369 Q0 9715496 18 12.104848 Anserini +test3369 Q0 19645175 19 12.100373 Anserini +test3369 Q0 9731010 20 12.016493 Anserini +test3369 Q0 5378162 21 11.998524 Anserini +test3369 Q0 9731005 22 11.982199 Anserini +test3369 Q0 8175587 23 11.977350 Anserini +test3369 Q0 8452050 24 11.962208 Anserini +test3369 Q0 17321631 25 11.875842 Anserini +test3369 Q0 14046458 26 11.825258 Anserini +test3369 Q0 8890836 27 11.775860 Anserini +test3369 Q0 9731009 28 11.765728 Anserini +test3369 Q0 747390 29 11.749497 Anserini +test3369 Q0 19337051 30 11.746743 Anserini +test337 Q0 1457115 1 15.928337 Anserini +test337 Q0 19598066 2 15.006460 Anserini +test337 Q0 14072126 3 15.006460 Anserini +test337 Q0 18491161 4 14.742329 Anserini +test337 Q0 11996719 5 14.713036 Anserini +test337 Q0 9461162 6 14.592125 Anserini +test337 Q0 11217611 7 14.509767 Anserini +test337 Q0 898364 8 14.487030 Anserini +test337 Q0 7556364 9 14.439792 Anserini +test337 Q0 16683758 10 14.410867 Anserini +test337 Q0 5535712 11 14.343712 Anserini +test337 Q0 16683750 12 14.323050 Anserini +test337 Q0 1457119 13 14.288708 Anserini +test337 Q0 538378 14 14.205645 Anserini +test337 Q0 2902287 15 14.187450 Anserini +test337 Q0 7576002 16 14.148641 Anserini +test337 Q0 15072114 17 14.104116 Anserini +test337 Q0 16024714 18 13.981065 Anserini +test337 Q0 14210264 19 13.899616 Anserini +test337 Q0 10041441 20 13.837869 Anserini +test337 Q0 17591703 21 13.530143 Anserini +test337 Q0 13127312 22 13.473353 Anserini +test337 Q0 7743676 23 13.424919 Anserini +test337 Q0 12389828 24 13.282776 Anserini +test337 Q0 17591706 25 13.244511 Anserini +test337 Q0 11273049 26 13.196762 Anserini +test337 Q0 9500925 27 13.195197 Anserini +test337 Q0 16293867 28 13.192579 Anserini +test337 Q0 5199806 29 13.095821 Anserini +test337 Q0 6885285 30 13.095821 Anserini +test3370 Q0 12732610 1 18.012421 Anserini +test3370 Q0 10970647 2 17.612690 Anserini +test3370 Q0 10970646 3 17.499931 Anserini +test3370 Q0 14273724 4 17.470196 Anserini +test3370 Q0 10997704 5 17.139793 Anserini +test3370 Q0 3773278 6 16.952805 Anserini +test3370 Q0 14273725 7 16.950024 Anserini +test3370 Q0 8854753 8 16.861721 Anserini +test3370 Q0 16557619 9 16.494982 Anserini +test3370 Q0 20369590 10 16.056295 Anserini +test3370 Q0 8812035 11 15.868752 Anserini +test3370 Q0 8519044 12 15.837187 Anserini +test3370 Q0 20575715 13 15.708447 Anserini +test3370 Q0 1639154 14 15.683471 Anserini +test3370 Q0 14218856 15 15.657261 Anserini +test3370 Q0 12812460 16 15.637450 Anserini +test3370 Q0 13115724 17 15.370053 Anserini +test3370 Q0 15298551 18 15.276641 Anserini +test3370 Q0 19942752 19 15.267810 Anserini +test3370 Q0 15461869 20 15.162930 Anserini +test3370 Q0 6668488 21 15.131062 Anserini +test3370 Q0 15478071 22 15.128218 Anserini +test3370 Q0 19468164 23 14.956872 Anserini +test3370 Q0 13361433 24 14.943119 Anserini +test3370 Q0 17045360 25 14.889351 Anserini +test3370 Q0 6404796 26 14.842572 Anserini +test3370 Q0 16171853 27 14.757071 Anserini +test3370 Q0 16171854 28 14.757071 Anserini +test3370 Q0 10305640 29 14.748234 Anserini +test3370 Q0 18544514 30 14.732678 Anserini +test3371 Q0 16207493 1 14.801989 Anserini +test3371 Q0 16207492 2 14.713953 Anserini +test3371 Q0 16235062 3 14.549981 Anserini +test3371 Q0 16235063 4 14.549981 Anserini +test3371 Q0 5720339 5 14.418079 Anserini +test3371 Q0 1542445 6 14.414991 Anserini +test3371 Q0 6916582 7 14.385925 Anserini +test3371 Q0 6916587 8 14.237037 Anserini +test3371 Q0 3391122 9 14.019922 Anserini +test3371 Q0 6916588 10 13.724511 Anserini +test3371 Q0 5720322 11 13.500567 Anserini +test3371 Q0 5720333 12 13.446044 Anserini +test3371 Q0 15685976 13 13.391644 Anserini +test3371 Q0 8114532 14 13.351878 Anserini +test3371 Q0 3172114 15 13.118607 Anserini +test3371 Q0 12398656 16 12.935986 Anserini +test3371 Q0 5410666 17 12.916504 Anserini +test3371 Q0 15126641 18 12.739013 Anserini +test3371 Q0 1016165 19 12.615488 Anserini +test3371 Q0 3500055 20 12.563663 Anserini +test3371 Q0 3242438 21 12.563581 Anserini +test3371 Q0 16315137 22 12.480527 Anserini +test3371 Q0 5136207 23 12.459326 Anserini +test3371 Q0 5720330 24 12.287827 Anserini +test3371 Q0 4728111 25 12.251003 Anserini +test3371 Q0 8530196 26 12.230127 Anserini +test3371 Q0 4406321 27 12.171203 Anserini +test3371 Q0 8228005 28 12.164472 Anserini +test3371 Q0 17544990 29 12.096138 Anserini +test3371 Q0 9535997 30 12.042717 Anserini +test3372 Q0 7348713 1 36.385204 Anserini +test3372 Q0 7348722 2 31.453983 Anserini +test3372 Q0 7348721 3 31.035149 Anserini +test3372 Q0 13182018 4 29.505257 Anserini +test3372 Q0 7348714 5 29.124054 Anserini +test3372 Q0 7348715 6 28.773466 Anserini +test3372 Q0 2109453 7 27.777298 Anserini +test3372 Q0 8133840 8 27.060934 Anserini +test3372 Q0 7348718 9 26.595213 Anserini +test3372 Q0 7348717 10 26.517805 Anserini +test3372 Q0 7348719 11 25.760748 Anserini +test3372 Q0 13182017 12 25.457518 Anserini +test3372 Q0 8133837 13 25.435036 Anserini +test3372 Q0 7348720 14 25.197760 Anserini +test3372 Q0 1274154 15 24.119167 Anserini +test3372 Q0 10962887 16 23.560730 Anserini +test3372 Q0 8133855 17 23.460526 Anserini +test3372 Q0 7348716 18 23.137804 Anserini +test3372 Q0 9996880 19 22.334507 Anserini +test3372 Q0 17330186 20 21.949495 Anserini +test3372 Q0 8133843 21 21.191401 Anserini +test3372 Q0 8133853 22 21.136637 Anserini +test3372 Q0 19235344 23 20.997904 Anserini +test3372 Q0 2109455 24 20.916737 Anserini +test3372 Q0 2109459 25 20.822042 Anserini +test3372 Q0 17330187 26 20.758123 Anserini +test3372 Q0 9996878 27 20.600042 Anserini +test3372 Q0 17759325 28 20.494703 Anserini +test3372 Q0 2109445 29 20.470951 Anserini +test3372 Q0 8133841 30 20.385803 Anserini +test3373 Q0 17358657 1 27.557463 Anserini +test3373 Q0 5690761 2 25.826229 Anserini +test3373 Q0 5690762 3 25.090792 Anserini +test3373 Q0 17358661 4 24.908352 Anserini +test3373 Q0 18844128 5 23.151329 Anserini +test3373 Q0 4691851 6 22.688511 Anserini +test3373 Q0 4691857 7 22.559929 Anserini +test3373 Q0 8785006 8 21.613628 Anserini +test3373 Q0 10231992 9 21.602135 Anserini +test3373 Q0 8785002 10 21.286303 Anserini +test3373 Q0 17358659 11 20.484598 Anserini +test3373 Q0 17358660 12 20.304050 Anserini +test3373 Q0 6213322 13 20.240063 Anserini +test3373 Q0 6213328 14 20.240063 Anserini +test3373 Q0 4691852 15 20.238295 Anserini +test3373 Q0 534263 16 20.160240 Anserini +test3373 Q0 17358658 17 19.973507 Anserini +test3373 Q0 8444060 18 19.896626 Anserini +test3373 Q0 8785004 19 19.890589 Anserini +test3373 Q0 4691854 20 19.845470 Anserini +test3373 Q0 19020001 21 19.772045 Anserini +test3373 Q0 6172776 22 19.672064 Anserini +test3373 Q0 8785003 23 19.364748 Anserini +test3373 Q0 534267 24 19.253269 Anserini +test3373 Q0 18844129 25 19.205585 Anserini +test3373 Q0 534265 26 19.035465 Anserini +test3373 Q0 534257 27 18.859591 Anserini +test3373 Q0 18844133 28 18.847595 Anserini +test3373 Q0 534262 29 18.629311 Anserini +test3373 Q0 534268 30 18.344763 Anserini +test3374 Q0 20117681 1 15.785048 Anserini +test3374 Q0 15355085 2 14.679618 Anserini +test3374 Q0 3457905 3 14.347414 Anserini +test3374 Q0 8286239 4 14.052438 Anserini +test3374 Q0 8342453 5 13.715527 Anserini +test3374 Q0 3457908 6 13.574843 Anserini +test3374 Q0 12140991 7 13.445514 Anserini +test3374 Q0 3457906 8 13.315639 Anserini +test3374 Q0 6279839 9 13.165987 Anserini +test3374 Q0 12552094 10 13.163367 Anserini +test3374 Q0 8342390 11 13.066948 Anserini +test3374 Q0 13364310 12 12.958448 Anserini +test3374 Q0 15309563 13 12.942410 Anserini +test3374 Q0 6755356 14 12.931761 Anserini +test3374 Q0 2461592 15 12.930808 Anserini +test3374 Q0 3023915 16 12.900646 Anserini +test3374 Q0 12580343 17 12.899553 Anserini +test3374 Q0 7214 18 12.813558 Anserini +test3374 Q0 3236433 19 12.797355 Anserini +test3374 Q0 8342454 20 12.724770 Anserini +test3374 Q0 16584817 21 12.724709 Anserini +test3374 Q0 6488173 22 12.710554 Anserini +test3374 Q0 8904228 23 12.706299 Anserini +test3374 Q0 3097837 24 12.645100 Anserini +test3374 Q0 2496519 25 12.606758 Anserini +test3374 Q0 2939709 26 12.594951 Anserini +test3374 Q0 6989047 27 12.496917 Anserini +test3374 Q0 10222074 28 12.486471 Anserini +test3374 Q0 2153229 29 12.467890 Anserini +test3374 Q0 8635188 30 12.443571 Anserini +test3375 Q0 6822323 1 14.476181 Anserini +test3375 Q0 6822329 2 13.704643 Anserini +test3375 Q0 6822333 3 13.511749 Anserini +test3375 Q0 548465 4 13.091980 Anserini +test3375 Q0 6822330 5 12.616869 Anserini +test3375 Q0 548469 6 12.294868 Anserini +test3375 Q0 6822328 7 12.222264 Anserini +test3375 Q0 6822322 8 11.414656 Anserini +test3375 Q0 14013527 9 10.695996 Anserini +test3375 Q0 14013530 10 10.520331 Anserini +test3375 Q0 1230481 11 10.329288 Anserini +test3375 Q0 20764289 12 10.285119 Anserini +test3375 Q0 6930930 13 10.285119 Anserini +test3375 Q0 548472 14 10.224401 Anserini +test3375 Q0 19599890 15 10.002999 Anserini +test3375 Q0 15885436 16 10.002999 Anserini +test3375 Q0 8441702 17 9.953902 Anserini +test3375 Q0 6822332 18 9.939203 Anserini +test3375 Q0 6822326 19 9.847749 Anserini +test3375 Q0 6971636 20 9.801560 Anserini +test3375 Q0 20764290 21 9.751934 Anserini +test3375 Q0 7619048 22 9.671951 Anserini +test3375 Q0 7063786 23 9.671951 Anserini +test3375 Q0 11749093 24 9.651958 Anserini +test3375 Q0 14013526 25 9.584815 Anserini +test3375 Q0 7690292 26 9.584815 Anserini +test3375 Q0 3052883 27 9.564936 Anserini +test3375 Q0 5422822 28 9.563274 Anserini +test3375 Q0 13705761 29 9.541830 Anserini +test3375 Q0 13625223 30 9.508520 Anserini +test3376 Q0 3020541 1 15.578717 Anserini +test3376 Q0 8287395 2 13.966963 Anserini +test3376 Q0 15414397 3 13.883063 Anserini +test3376 Q0 8287402 4 13.566674 Anserini +test3376 Q0 3020566 5 13.209757 Anserini +test3376 Q0 7844336 6 13.156733 Anserini +test3376 Q0 16670307 7 13.060512 Anserini +test3376 Q0 15414394 8 13.028695 Anserini +test3376 Q0 3020558 9 12.872321 Anserini +test3376 Q0 3020560 10 12.459249 Anserini +test3376 Q0 3020548 11 12.416466 Anserini +test3376 Q0 3020545 12 11.767200 Anserini +test3376 Q0 3020544 13 11.767200 Anserini +test3376 Q0 7002821 14 11.767200 Anserini +test3376 Q0 15414395 15 11.680867 Anserini +test3376 Q0 3020542 16 11.644616 Anserini +test3376 Q0 624991 17 11.437932 Anserini +test3376 Q0 8428409 18 11.437932 Anserini +test3376 Q0 7446081 19 11.437932 Anserini +test3376 Q0 3020554 20 11.280579 Anserini +test3376 Q0 8287396 21 11.193822 Anserini +test3376 Q0 5975986 22 11.037323 Anserini +test3376 Q0 12702900 23 10.923529 Anserini +test3376 Q0 15236303 24 10.896690 Anserini +test3376 Q0 3031851 25 10.814688 Anserini +test3376 Q0 10972750 26 10.813171 Anserini +test3376 Q0 5890250 27 10.813171 Anserini +test3376 Q0 5227760 28 10.799697 Anserini +test3376 Q0 11474123 29 10.792171 Anserini +test3376 Q0 3031852 30 10.792171 Anserini +test3377 Q0 6846529 1 19.977737 Anserini +test3377 Q0 6846517 2 19.477764 Anserini +test3377 Q0 4548271 3 19.095491 Anserini +test3377 Q0 4191425 4 18.964094 Anserini +test3377 Q0 6846540 5 18.904449 Anserini +test3377 Q0 14482791 6 18.882477 Anserini +test3377 Q0 14482793 7 18.866148 Anserini +test3377 Q0 2572845 8 18.729822 Anserini +test3377 Q0 2572840 9 18.503969 Anserini +test3377 Q0 6846300 10 18.266834 Anserini +test3377 Q0 2572849 11 18.247347 Anserini +test3377 Q0 19873447 12 18.246370 Anserini +test3377 Q0 6846299 13 18.179123 Anserini +test3377 Q0 2572844 14 18.046989 Anserini +test3377 Q0 15773566 15 18.036535 Anserini +test3377 Q0 6846539 16 18.023350 Anserini +test3377 Q0 2572846 17 17.992615 Anserini +test3377 Q0 6846284 18 17.957666 Anserini +test3377 Q0 14482796 19 17.933140 Anserini +test3377 Q0 11988272 20 17.920210 Anserini +test3377 Q0 14482799 21 17.913748 Anserini +test3377 Q0 19873473 22 17.905148 Anserini +test3377 Q0 6846526 23 17.817631 Anserini +test3377 Q0 19873431 24 17.769405 Anserini +test3377 Q0 14482803 25 17.735374 Anserini +test3377 Q0 2572834 26 17.714430 Anserini +test3377 Q0 15773560 27 17.692261 Anserini +test3377 Q0 2572827 28 17.673958 Anserini +test3377 Q0 14482806 29 17.658186 Anserini +test3377 Q0 14482801 30 17.651573 Anserini +test3378 Q0 795440 1 14.051203 Anserini +test3378 Q0 3298366 2 13.536110 Anserini +test3378 Q0 1066541 3 13.463586 Anserini +test3378 Q0 3777318 4 13.316676 Anserini +test3378 Q0 10842113 5 13.314871 Anserini +test3378 Q0 2183788 6 13.314489 Anserini +test3378 Q0 2478494 7 13.260074 Anserini +test3378 Q0 6903099 8 13.163800 Anserini +test3378 Q0 6285268 9 12.956319 Anserini +test3378 Q0 3140354 10 12.949282 Anserini +test3378 Q0 3696137 11 12.941076 Anserini +test3378 Q0 3140838 12 12.936517 Anserini +test3378 Q0 2615046 13 12.908094 Anserini +test3378 Q0 2615091 14 12.820346 Anserini +test3378 Q0 152688 15 12.809075 Anserini +test3378 Q0 1066539 16 12.738796 Anserini +test3378 Q0 3140855 17 12.700130 Anserini +test3378 Q0 8612839 18 12.626139 Anserini +test3378 Q0 2583392 19 12.601315 Anserini +test3378 Q0 152600 20 12.472233 Anserini +test3378 Q0 988355 21 12.463611 Anserini +test3378 Q0 9774250 22 12.446640 Anserini +test3378 Q0 2615083 23 12.443653 Anserini +test3378 Q0 2480510 24 12.442133 Anserini +test3378 Q0 2615384 25 12.418663 Anserini +test3378 Q0 10254963 26 12.353387 Anserini +test3378 Q0 3396138 27 12.337449 Anserini +test3378 Q0 227113 28 12.327350 Anserini +test3378 Q0 3306516 29 12.324542 Anserini +test3378 Q0 2615355 30 12.317827 Anserini +test3379 Q0 3803376 1 19.109478 Anserini +test3379 Q0 3803372 2 16.140495 Anserini +test3379 Q0 3803374 3 15.917340 Anserini +test3379 Q0 8984051 4 14.901517 Anserini +test3379 Q0 16618143 5 14.668673 Anserini +test3379 Q0 7913265 6 14.203650 Anserini +test3379 Q0 3803375 7 13.544885 Anserini +test3379 Q0 7913271 8 13.534049 Anserini +test3379 Q0 3803373 9 13.446083 Anserini +test3379 Q0 465234 10 13.243034 Anserini +test3379 Q0 20556636 11 13.120303 Anserini +test3379 Q0 7913272 12 13.023633 Anserini +test3379 Q0 16618142 13 13.023633 Anserini +test3379 Q0 10509827 14 12.590995 Anserini +test3379 Q0 903102 15 12.339653 Anserini +test3379 Q0 7913273 16 12.200484 Anserini +test3379 Q0 8599634 17 12.191627 Anserini +test3379 Q0 15774142 18 12.129019 Anserini +test3379 Q0 19565427 19 12.003971 Anserini +test3379 Q0 7913274 20 11.820181 Anserini +test3379 Q0 10127578 21 11.371407 Anserini +test3379 Q0 6359827 22 11.264776 Anserini +test3379 Q0 19959859 23 11.167537 Anserini +test3379 Q0 10509828 24 11.112551 Anserini +test3379 Q0 4398081 25 11.075712 Anserini +test3379 Q0 3742102 26 11.009995 Anserini +test3379 Q0 2404978 27 10.991934 Anserini +test3379 Q0 4169336 28 10.982972 Anserini +test3379 Q0 11290413 29 10.781548 Anserini +test3379 Q0 6359829 30 10.778916 Anserini +test338 Q0 1786972 1 16.585320 Anserini +test338 Q0 1787001 2 16.436195 Anserini +test338 Q0 20264884 3 16.427750 Anserini +test338 Q0 19034305 4 16.165161 Anserini +test338 Q0 14156570 5 16.153236 Anserini +test338 Q0 1786998 6 16.058306 Anserini +test338 Q0 966494 7 15.730438 Anserini +test338 Q0 17007882 8 15.231974 Anserini +test338 Q0 9044960 9 15.145983 Anserini +test338 Q0 4960459 10 14.929358 Anserini +test338 Q0 1787000 11 14.818920 Anserini +test338 Q0 13032291 12 14.760570 Anserini +test338 Q0 20264887 13 14.757369 Anserini +test338 Q0 7345909 14 14.699745 Anserini +test338 Q0 17972680 15 14.609026 Anserini +test338 Q0 17516826 16 14.457191 Anserini +test338 Q0 15995895 17 14.356302 Anserini +test338 Q0 2805608 18 14.355074 Anserini +test338 Q0 1532887 19 14.349966 Anserini +test338 Q0 1786989 20 14.156787 Anserini +test338 Q0 1786997 21 14.089924 Anserini +test338 Q0 18033013 22 14.002245 Anserini +test338 Q0 2185584 23 13.986508 Anserini +test338 Q0 8362109 24 13.975418 Anserini +test338 Q0 19333072 25 13.967083 Anserini +test338 Q0 7345901 26 13.946239 Anserini +test338 Q0 1787032 27 13.936238 Anserini +test338 Q0 19442140 28 13.884522 Anserini +test338 Q0 6241725 29 13.857685 Anserini +test338 Q0 4837076 30 13.851908 Anserini +test3380 Q0 1450679 1 10.809711 Anserini +test3380 Q0 1450681 2 10.802154 Anserini +test3380 Q0 2784441 3 10.718805 Anserini +test3380 Q0 1450685 4 10.463956 Anserini +test3380 Q0 12230054 5 10.161530 Anserini +test3380 Q0 20936252 6 10.079208 Anserini +test3380 Q0 8445448 7 10.046366 Anserini +test3380 Q0 19305743 8 9.856846 Anserini +test3380 Q0 19567440 9 9.719021 Anserini +test3380 Q0 6932196 10 9.705046 Anserini +test3380 Q0 18906539 11 9.699603 Anserini +test3380 Q0 5161390 12 9.663374 Anserini +test3380 Q0 1450678 13 9.604918 Anserini +test3380 Q0 16558187 14 9.557493 Anserini +test3380 Q0 1450694 15 9.451902 Anserini +test3380 Q0 15451014 16 9.446245 Anserini +test3380 Q0 3693752 17 9.354465 Anserini +test3380 Q0 14106023 18 9.327088 Anserini +test3380 Q0 5049684 19 9.326155 Anserini +test3380 Q0 248577 20 9.326155 Anserini +test3380 Q0 2144525 21 9.325403 Anserini +test3380 Q0 13730034 22 9.325403 Anserini +test3380 Q0 2945700 23 9.172915 Anserini +test3380 Q0 19567443 24 9.164356 Anserini +test3380 Q0 14106055 25 9.131603 Anserini +test3380 Q0 17531501 26 9.122541 Anserini +test3380 Q0 3125343 27 9.110319 Anserini +test3380 Q0 14106056 28 9.051121 Anserini +test3380 Q0 14106054 29 9.014121 Anserini +test3380 Q0 10429627 30 9.013905 Anserini +test3381 Q0 12773729 1 11.217170 Anserini +test3381 Q0 5258146 2 10.338552 Anserini +test3381 Q0 19212065 3 10.158736 Anserini +test3381 Q0 7380440 4 10.094153 Anserini +test3381 Q0 15804179 5 9.988821 Anserini +test3381 Q0 12403354 6 9.925871 Anserini +test3381 Q0 20064763 7 9.817467 Anserini +test3381 Q0 2853385 8 9.817467 Anserini +test3381 Q0 10164522 9 9.726226 Anserini +test3381 Q0 2853390 10 9.693245 Anserini +test3381 Q0 10069264 11 9.589182 Anserini +test3381 Q0 8240927 12 9.526779 Anserini +test3381 Q0 17896380 13 9.526540 Anserini +test3381 Q0 5258154 14 9.430199 Anserini +test3381 Q0 9784499 15 9.400877 Anserini +test3381 Q0 19389094 16 9.399182 Anserini +test3381 Q0 2853382 17 9.353739 Anserini +test3381 Q0 5258141 18 9.347732 Anserini +test3381 Q0 5258144 19 9.329104 Anserini +test3381 Q0 13798035 20 9.278500 Anserini +test3381 Q0 2853381 21 9.244187 Anserini +test3381 Q0 3491235 22 9.205313 Anserini +test3381 Q0 3227540 23 9.168825 Anserini +test3381 Q0 14706939 24 9.143690 Anserini +test3381 Q0 2047554 25 9.125445 Anserini +test3381 Q0 673543 26 9.112155 Anserini +test3381 Q0 3598340 27 9.083773 Anserini +test3381 Q0 5258147 28 9.076563 Anserini +test3381 Q0 5858264 29 9.076025 Anserini +test3381 Q0 9873984 30 9.039412 Anserini +test3382 Q0 15873218 1 12.946219 Anserini +test3382 Q0 18683112 2 12.277258 Anserini +test3382 Q0 15873205 3 11.792290 Anserini +test3382 Q0 888558 4 11.592697 Anserini +test3382 Q0 15873209 5 11.576845 Anserini +test3382 Q0 18683120 6 11.416743 Anserini +test3382 Q0 18683113 7 11.324751 Anserini +test3382 Q0 18683115 8 11.319389 Anserini +test3382 Q0 18683116 9 11.042346 Anserini +test3382 Q0 18683119 10 11.042346 Anserini +test3382 Q0 15873215 11 11.042346 Anserini +test3382 Q0 18683114 12 10.946606 Anserini +test3382 Q0 19571843 13 10.653670 Anserini +test3382 Q0 18683117 14 10.499648 Anserini +test3382 Q0 2128311 15 10.421494 Anserini +test3382 Q0 18683118 16 10.320413 Anserini +test3382 Q0 15873206 17 10.173581 Anserini +test3382 Q0 5117257 18 10.149672 Anserini +test3382 Q0 18683146 19 10.005445 Anserini +test3382 Q0 18683143 20 9.971507 Anserini +test3382 Q0 13751740 21 9.877622 Anserini +test3382 Q0 20053561 22 9.865419 Anserini +test3382 Q0 14422153 23 9.864944 Anserini +test3382 Q0 1722047 24 9.761566 Anserini +test3382 Q0 15873208 25 9.761566 Anserini +test3382 Q0 20874920 26 9.458200 Anserini +test3382 Q0 10048633 27 9.458200 Anserini +test3382 Q0 5374798 28 9.318515 Anserini +test3382 Q0 5058288 29 9.253647 Anserini +test3382 Q0 10279463 30 9.224733 Anserini +test3383 Q0 10118219 1 15.274357 Anserini +test3383 Q0 8856107 2 13.864920 Anserini +test3383 Q0 1496625 3 13.296556 Anserini +test3383 Q0 10118225 4 13.136639 Anserini +test3383 Q0 9453461 5 12.778856 Anserini +test3383 Q0 1496626 6 12.688203 Anserini +test3383 Q0 15921076 7 12.262168 Anserini +test3383 Q0 9453466 8 11.981933 Anserini +test3383 Q0 903009 9 11.892841 Anserini +test3383 Q0 8856101 10 11.681456 Anserini +test3383 Q0 6698800 11 11.483503 Anserini +test3383 Q0 1496627 12 11.440238 Anserini +test3383 Q0 1496643 13 11.384901 Anserini +test3383 Q0 1496621 14 11.323939 Anserini +test3383 Q0 3575206 15 11.176036 Anserini +test3383 Q0 11629513 16 11.176036 Anserini +test3383 Q0 6788853 17 11.106686 Anserini +test3383 Q0 9453464 18 11.093126 Anserini +test3383 Q0 3560793 19 11.019251 Anserini +test3383 Q0 20320843 20 10.933320 Anserini +test3383 Q0 1844043 21 10.906167 Anserini +test3383 Q0 91264 22 10.862004 Anserini +test3383 Q0 1496620 23 10.842356 Anserini +test3383 Q0 1496624 24 10.816902 Anserini +test3383 Q0 10118223 25 10.816902 Anserini +test3383 Q0 10156540 26 10.807071 Anserini +test3383 Q0 20320841 27 10.762236 Anserini +test3383 Q0 8856102 28 10.754339 Anserini +test3383 Q0 6788852 29 10.729152 Anserini +test3383 Q0 11673506 30 10.717940 Anserini +test3384 Q0 14622999 1 15.496225 Anserini +test3384 Q0 11875575 2 14.971530 Anserini +test3384 Q0 11875604 3 14.816662 Anserini +test3384 Q0 14795016 4 14.813756 Anserini +test3384 Q0 14622994 5 14.770386 Anserini +test3384 Q0 18081588 6 14.601284 Anserini +test3384 Q0 9371704 7 14.562496 Anserini +test3384 Q0 11875605 8 14.469466 Anserini +test3384 Q0 4169678 9 14.427560 Anserini +test3384 Q0 18081593 10 14.302954 Anserini +test3384 Q0 18864067 11 14.200899 Anserini +test3384 Q0 18864059 12 14.185000 Anserini +test3384 Q0 19423218 13 14.158609 Anserini +test3384 Q0 9118446 14 14.140190 Anserini +test3384 Q0 8725306 15 14.012364 Anserini +test3384 Q0 295998 16 13.924735 Anserini +test3384 Q0 14622925 17 13.844076 Anserini +test3384 Q0 10802278 18 13.840252 Anserini +test3384 Q0 7446670 19 13.803771 Anserini +test3384 Q0 17482405 20 13.781933 Anserini +test3384 Q0 19517189 21 13.699979 Anserini +test3384 Q0 803919 22 13.691378 Anserini +test3384 Q0 19423232 23 13.671486 Anserini +test3384 Q0 11504216 24 13.570150 Anserini +test3384 Q0 19423245 25 13.564874 Anserini +test3384 Q0 11876040 26 13.563982 Anserini +test3384 Q0 19517178 27 13.555511 Anserini +test3384 Q0 17996871 28 13.521378 Anserini +test3384 Q0 5761807 29 13.463857 Anserini +test3384 Q0 9057952 30 13.441685 Anserini +test3385 Q0 17386479 1 12.854612 Anserini +test3385 Q0 17453041 2 12.546919 Anserini +test3385 Q0 16600290 3 12.260081 Anserini +test3385 Q0 16600314 4 12.159122 Anserini +test3385 Q0 18596260 5 11.640065 Anserini +test3385 Q0 18596261 6 11.640065 Anserini +test3385 Q0 16600322 7 11.640065 Anserini +test3385 Q0 17453042 8 11.357001 Anserini +test3385 Q0 16600301 9 11.302015 Anserini +test3385 Q0 7710485 10 11.179226 Anserini +test3385 Q0 15079918 11 11.155835 Anserini +test3385 Q0 7710482 12 11.126107 Anserini +test3385 Q0 17042457 13 11.083431 Anserini +test3385 Q0 16600307 14 11.029055 Anserini +test3385 Q0 17386475 15 10.980045 Anserini +test3385 Q0 16600315 16 10.923733 Anserini +test3385 Q0 16600313 17 10.923733 Anserini +test3385 Q0 251760 18 10.915081 Anserini +test3385 Q0 18654442 19 10.915081 Anserini +test3385 Q0 7203042 20 10.872186 Anserini +test3385 Q0 16600308 21 10.870323 Anserini +test3385 Q0 16600303 22 10.867995 Anserini +test3385 Q0 14441849 23 10.800179 Anserini +test3385 Q0 9165326 24 10.800179 Anserini +test3385 Q0 957684 25 10.767039 Anserini +test3385 Q0 17127876 26 10.716891 Anserini +test3385 Q0 16600317 27 10.690594 Anserini +test3385 Q0 15739230 28 10.687668 Anserini +test3385 Q0 18945868 29 10.687668 Anserini +test3385 Q0 6858757 30 10.675480 Anserini +test3386 Q0 7796854 1 9.965453 Anserini +test3386 Q0 2478417 2 9.825435 Anserini +test3386 Q0 16792212 3 9.813919 Anserini +test3386 Q0 8824096 4 9.807766 Anserini +test3386 Q0 2943271 5 9.807766 Anserini +test3386 Q0 505387 6 9.491907 Anserini +test3386 Q0 3677788 7 9.467034 Anserini +test3386 Q0 14700247 8 9.462214 Anserini +test3386 Q0 17547285 9 9.433594 Anserini +test3386 Q0 1730161 10 9.403564 Anserini +test3386 Q0 12887916 11 9.356216 Anserini +test3386 Q0 13242952 12 9.350337 Anserini +test3386 Q0 4128190 13 9.327761 Anserini +test3386 Q0 12242131 14 9.222499 Anserini +test3386 Q0 14700275 15 9.137922 Anserini +test3386 Q0 1730171 16 9.131092 Anserini +test3386 Q0 2515482 17 9.126811 Anserini +test3386 Q0 19950802 18 9.118229 Anserini +test3386 Q0 7302132 19 9.092774 Anserini +test3386 Q0 9925458 20 9.076629 Anserini +test3386 Q0 1808516 21 9.069014 Anserini +test3386 Q0 511326 22 9.065342 Anserini +test3386 Q0 13484540 23 9.025306 Anserini +test3386 Q0 18036768 24 8.996523 Anserini +test3386 Q0 2943272 25 8.996523 Anserini +test3386 Q0 20247050 26 8.994912 Anserini +test3386 Q0 13685691 27 8.955341 Anserini +test3386 Q0 19996890 28 8.936369 Anserini +test3386 Q0 18241340 29 8.910275 Anserini +test3386 Q0 6172837 30 8.897629 Anserini +test3387 Q0 18020 1 14.656079 Anserini +test3387 Q0 1731927 2 14.575356 Anserini +test3387 Q0 1731881 3 14.575356 Anserini +test3387 Q0 17554438 4 14.542600 Anserini +test3387 Q0 12508203 5 14.440180 Anserini +test3387 Q0 6882275 6 14.205507 Anserini +test3387 Q0 1731920 7 13.990571 Anserini +test3387 Q0 2975611 8 13.813181 Anserini +test3387 Q0 6924889 9 13.731270 Anserini +test3387 Q0 19033546 10 13.690969 Anserini +test3387 Q0 17891714 11 13.673080 Anserini +test3387 Q0 4066368 12 13.543866 Anserini +test3387 Q0 3566870 13 13.499353 Anserini +test3387 Q0 8875166 14 13.472256 Anserini +test3387 Q0 3731349 15 13.376134 Anserini +test3387 Q0 8301226 16 13.275121 Anserini +test3387 Q0 11007908 17 13.200768 Anserini +test3387 Q0 7073079 18 13.097896 Anserini +test3387 Q0 3820051 19 13.091175 Anserini +test3387 Q0 7532087 20 13.015072 Anserini +test3387 Q0 3934408 21 13.005557 Anserini +test3387 Q0 5536879 22 12.957005 Anserini +test3387 Q0 16743189 23 12.938956 Anserini +test3387 Q0 17627101 24 12.930005 Anserini +test3387 Q0 3497576 25 12.899660 Anserini +test3387 Q0 6924887 26 12.897962 Anserini +test3387 Q0 3820047 27 12.856212 Anserini +test3387 Q0 9686070 28 12.852929 Anserini +test3387 Q0 7805118 29 12.811812 Anserini +test3387 Q0 3043788 30 12.781756 Anserini +test3388 Q0 1579416 1 12.911854 Anserini +test3388 Q0 9270989 2 12.727223 Anserini +test3388 Q0 16347482 3 12.515108 Anserini +test3388 Q0 19941685 4 12.498010 Anserini +test3388 Q0 19939234 5 12.372380 Anserini +test3388 Q0 16818176 6 12.359915 Anserini +test3388 Q0 19939245 7 12.304573 Anserini +test3388 Q0 19941692 8 12.278726 Anserini +test3388 Q0 1579423 9 12.235918 Anserini +test3388 Q0 1579386 10 12.229287 Anserini +test3388 Q0 16974089 11 12.226416 Anserini +test3388 Q0 16974062 12 12.157740 Anserini +test3388 Q0 17556457 13 12.157740 Anserini +test3388 Q0 16974093 14 12.154894 Anserini +test3388 Q0 18490315 15 12.154894 Anserini +test3388 Q0 16206314 16 12.082052 Anserini +test3388 Q0 16206253 17 12.082052 Anserini +test3388 Q0 17556507 18 12.028032 Anserini +test3388 Q0 16215382 19 12.010172 Anserini +test3388 Q0 18490308 20 12.010172 Anserini +test3388 Q0 16206277 21 12.010172 Anserini +test3388 Q0 8116030 22 11.880583 Anserini +test3388 Q0 6696882 23 11.849021 Anserini +test3388 Q0 1579415 24 11.831123 Anserini +test3388 Q0 16373029 25 11.789708 Anserini +test3388 Q0 1579399 26 11.764762 Anserini +test3388 Q0 3237196 27 11.689131 Anserini +test3388 Q0 9165734 28 11.607143 Anserini +test3388 Q0 16372985 29 11.335171 Anserini +test3388 Q0 1579402 30 11.253847 Anserini +test3389 Q0 16465740 1 21.816576 Anserini +test3389 Q0 3705260 2 21.141312 Anserini +test3389 Q0 15648503 3 19.955976 Anserini +test3389 Q0 104712 4 19.862204 Anserini +test3389 Q0 5438231 5 19.813005 Anserini +test3389 Q0 5438204 6 19.765448 Anserini +test3389 Q0 16465723 7 19.611931 Anserini +test3389 Q0 16465744 8 19.589842 Anserini +test3389 Q0 16465741 9 19.560902 Anserini +test3389 Q0 5438209 10 19.543139 Anserini +test3389 Q0 18456204 11 19.353350 Anserini +test3389 Q0 15409378 12 19.347481 Anserini +test3389 Q0 5438206 13 19.331806 Anserini +test3389 Q0 5438289 14 19.304899 Anserini +test3389 Q0 5717376 15 19.272505 Anserini +test3389 Q0 16465746 16 19.271313 Anserini +test3389 Q0 15409369 17 19.195105 Anserini +test3389 Q0 5438215 18 19.027802 Anserini +test3389 Q0 16465737 19 18.938583 Anserini +test3389 Q0 5438193 20 18.862352 Anserini +test3389 Q0 5438243 21 18.795258 Anserini +test3389 Q0 15409354 22 18.534521 Anserini +test3389 Q0 17296881 23 18.347477 Anserini +test3389 Q0 18011122 24 18.302055 Anserini +test3389 Q0 5438353 25 18.296228 Anserini +test3389 Q0 5438265 26 18.143158 Anserini +test3389 Q0 5438261 27 18.120014 Anserini +test3389 Q0 5438239 28 17.927214 Anserini +test3389 Q0 11460832 29 17.860083 Anserini +test3389 Q0 9108270 30 17.856277 Anserini +test339 Q0 7056914 1 10.523134 Anserini +test339 Q0 4521307 2 10.458647 Anserini +test339 Q0 2659720 3 10.221967 Anserini +test339 Q0 20311948 4 10.067574 Anserini +test339 Q0 10912835 5 9.938474 Anserini +test339 Q0 17344746 6 9.883234 Anserini +test339 Q0 15797708 7 9.698111 Anserini +test339 Q0 20400507 8 9.681314 Anserini +test339 Q0 20400527 9 9.681314 Anserini +test339 Q0 5907274 10 9.614905 Anserini +test339 Q0 17810083 11 9.597736 Anserini +test339 Q0 12075844 12 9.555756 Anserini +test339 Q0 17344744 13 9.501921 Anserini +test339 Q0 9911712 14 9.413935 Anserini +test339 Q0 18259765 15 9.412878 Anserini +test339 Q0 16713930 16 9.356325 Anserini +test339 Q0 17344796 17 9.253356 Anserini +test339 Q0 17344745 18 9.243929 Anserini +test339 Q0 6010547 19 9.235046 Anserini +test339 Q0 10912849 20 9.165385 Anserini +test339 Q0 12698467 21 9.129421 Anserini +test339 Q0 6664740 22 9.116090 Anserini +test339 Q0 7962976 23 9.060111 Anserini +test339 Q0 15421781 24 9.043354 Anserini +test339 Q0 14931150 25 9.029801 Anserini +test339 Q0 16713931 26 8.997699 Anserini +test339 Q0 7557029 27 8.970676 Anserini +test339 Q0 3236445 28 8.961987 Anserini +test339 Q0 10892735 29 8.961618 Anserini +test339 Q0 2663488 30 8.961618 Anserini +test3390 Q0 2071875 1 19.239508 Anserini +test3390 Q0 8485736 2 18.699921 Anserini +test3390 Q0 6277507 3 18.633587 Anserini +test3390 Q0 16311004 4 18.359577 Anserini +test3390 Q0 2071906 5 18.349804 Anserini +test3390 Q0 2071895 6 18.159523 Anserini +test3390 Q0 2071909 7 18.038147 Anserini +test3390 Q0 10767413 8 17.988605 Anserini +test3390 Q0 4941818 9 17.927706 Anserini +test3390 Q0 4941817 10 17.861280 Anserini +test3390 Q0 16311018 11 17.670322 Anserini +test3390 Q0 2071876 12 17.598486 Anserini +test3390 Q0 6277523 13 17.527231 Anserini +test3390 Q0 14166005 14 17.445320 Anserini +test3390 Q0 6277517 15 17.385487 Anserini +test3390 Q0 14166003 16 17.235771 Anserini +test3390 Q0 14130292 17 17.235771 Anserini +test3390 Q0 14130300 18 17.207304 Anserini +test3390 Q0 2071878 19 17.084246 Anserini +test3390 Q0 17504523 20 17.019711 Anserini +test3390 Q0 2071902 21 16.937746 Anserini +test3390 Q0 2071887 22 16.856480 Anserini +test3390 Q0 2071877 23 16.838923 Anserini +test3390 Q0 2071894 24 16.758221 Anserini +test3390 Q0 2071908 25 16.758221 Anserini +test3390 Q0 8485738 26 16.736691 Anserini +test3390 Q0 6277515 27 16.712517 Anserini +test3390 Q0 2071892 28 16.678295 Anserini +test3390 Q0 14166011 29 16.678295 Anserini +test3390 Q0 17504506 30 16.669024 Anserini +test3391 Q0 4185098 1 20.789312 Anserini +test3391 Q0 16858081 2 19.431664 Anserini +test3391 Q0 4245777 3 18.970451 Anserini +test3391 Q0 4185097 4 18.840118 Anserini +test3391 Q0 394869 5 18.565575 Anserini +test3391 Q0 394466 6 18.196318 Anserini +test3391 Q0 395042 7 17.800535 Anserini +test3391 Q0 2717141 8 17.184649 Anserini +test3391 Q0 394809 9 17.171999 Anserini +test3391 Q0 7031705 10 17.109217 Anserini +test3391 Q0 4450417 11 17.049974 Anserini +test3391 Q0 1491924 12 16.917048 Anserini +test3391 Q0 393985 13 16.684357 Anserini +test3391 Q0 541787 14 16.646330 Anserini +test3391 Q0 394908 15 16.634825 Anserini +test3391 Q0 18084511 16 16.492006 Anserini +test3391 Q0 376035 17 16.289944 Anserini +test3391 Q0 2163445 18 15.993038 Anserini +test3391 Q0 5581744 19 15.982248 Anserini +test3391 Q0 394663 20 15.972288 Anserini +test3391 Q0 394025 21 15.939402 Anserini +test3391 Q0 2484660 22 15.852289 Anserini +test3391 Q0 394195 23 15.813805 Anserini +test3391 Q0 12051626 24 15.738177 Anserini +test3391 Q0 2515136 25 15.690399 Anserini +test3391 Q0 3159700 26 15.688553 Anserini +test3391 Q0 394759 27 15.453482 Anserini +test3391 Q0 5581731 28 15.403712 Anserini +test3391 Q0 394999 29 15.274060 Anserini +test3391 Q0 3200059 30 15.157797 Anserini +test3392 Q0 4607459 1 14.674539 Anserini +test3392 Q0 1304096 2 14.261576 Anserini +test3392 Q0 1304071 3 14.018383 Anserini +test3392 Q0 1304060 4 13.670224 Anserini +test3392 Q0 14523968 5 12.887315 Anserini +test3392 Q0 1372380 6 12.787046 Anserini +test3392 Q0 6377409 7 12.767811 Anserini +test3392 Q0 12750531 8 12.666500 Anserini +test3392 Q0 1917184 9 12.470716 Anserini +test3392 Q0 14929496 10 12.327758 Anserini +test3392 Q0 2278210 11 12.241227 Anserini +test3392 Q0 1304051 12 12.230005 Anserini +test3392 Q0 1304073 13 12.150913 Anserini +test3392 Q0 6231066 14 12.118907 Anserini +test3392 Q0 6231062 15 12.015266 Anserini +test3392 Q0 1304049 16 11.898696 Anserini +test3392 Q0 14853766 17 11.879483 Anserini +test3392 Q0 1304080 18 11.687449 Anserini +test3392 Q0 7651452 19 11.618604 Anserini +test3392 Q0 1304075 20 11.612343 Anserini +test3392 Q0 14929497 21 11.612343 Anserini +test3392 Q0 5356970 22 11.530560 Anserini +test3392 Q0 14929499 23 11.530560 Anserini +test3392 Q0 3682818 24 11.530560 Anserini +test3392 Q0 14794510 25 11.512011 Anserini +test3392 Q0 1304067 26 11.485653 Anserini +test3392 Q0 1304072 27 11.422983 Anserini +test3392 Q0 552576 28 11.370401 Anserini +test3392 Q0 17248050 29 11.370401 Anserini +test3392 Q0 1627391 30 11.370401 Anserini +test3393 Q0 15122219 1 12.288312 Anserini +test3393 Q0 12089271 2 10.993420 Anserini +test3393 Q0 15138851 3 10.894409 Anserini +test3393 Q0 15104135 4 10.739753 Anserini +test3393 Q0 15101731 5 10.704628 Anserini +test3393 Q0 15013046 6 10.617390 Anserini +test3393 Q0 15136024 7 10.495111 Anserini +test3393 Q0 15059414 8 10.451305 Anserini +test3393 Q0 15111715 9 10.350670 Anserini +test3393 Q0 8528204 10 10.246097 Anserini +test3393 Q0 15144010 11 10.200559 Anserini +test3393 Q0 15111731 12 10.175477 Anserini +test3393 Q0 15105731 13 9.802868 Anserini +test3393 Q0 15122953 14 9.701928 Anserini +test3393 Q0 15439845 15 9.681150 Anserini +test3393 Q0 15439848 16 9.681150 Anserini +test3393 Q0 15579327 17 9.673611 Anserini +test3393 Q0 4565093 18 9.582227 Anserini +test3393 Q0 1009391 19 9.551829 Anserini +test3393 Q0 13381030 20 9.491446 Anserini +test3393 Q0 15027696 21 9.387804 Anserini +test3393 Q0 10119107 22 9.367084 Anserini +test3393 Q0 12435154 23 9.266669 Anserini +test3393 Q0 1296237 24 9.244752 Anserini +test3393 Q0 16875010 25 9.167702 Anserini +test3393 Q0 12435156 26 9.142767 Anserini +test3393 Q0 16781602 27 9.112065 Anserini +test3393 Q0 15013047 28 9.109337 Anserini +test3393 Q0 3873679 29 9.088099 Anserini +test3393 Q0 2474257 30 9.043907 Anserini +test3394 Q0 18938990 1 14.636061 Anserini +test3394 Q0 18668996 2 14.349325 Anserini +test3394 Q0 18668995 3 14.349325 Anserini +test3394 Q0 18939007 4 14.099834 Anserini +test3394 Q0 20240330 5 14.060518 Anserini +test3394 Q0 18938999 6 14.003018 Anserini +test3394 Q0 18938987 7 13.900614 Anserini +test3394 Q0 4481681 8 13.581411 Anserini +test3394 Q0 3042632 9 13.266062 Anserini +test3394 Q0 18938997 10 13.221443 Anserini +test3394 Q0 10430613 11 12.823483 Anserini +test3394 Q0 16475193 12 12.761566 Anserini +test3394 Q0 16453116 13 12.639883 Anserini +test3394 Q0 20049005 14 12.629940 Anserini +test3394 Q0 17142220 15 12.590704 Anserini +test3394 Q0 18135460 16 12.562637 Anserini +test3394 Q0 18135436 17 12.562637 Anserini +test3394 Q0 20048998 18 12.548046 Anserini +test3394 Q0 18135455 19 12.507115 Anserini +test3394 Q0 16257215 20 12.491535 Anserini +test3394 Q0 15804667 21 12.382396 Anserini +test3394 Q0 12037975 22 12.361782 Anserini +test3394 Q0 7736800 23 12.354849 Anserini +test3394 Q0 157544 24 12.353224 Anserini +test3394 Q0 17440543 25 12.270803 Anserini +test3394 Q0 5001081 26 12.266905 Anserini +test3394 Q0 17663087 27 12.261186 Anserini +test3394 Q0 18637809 28 12.238441 Anserini +test3394 Q0 12800963 29 12.158568 Anserini +test3394 Q0 18134134 30 12.142283 Anserini +test3395 Q0 19220335 1 13.644777 Anserini +test3395 Q0 19220336 2 13.432426 Anserini +test3395 Q0 19220337 3 13.198064 Anserini +test3395 Q0 19220339 4 12.707477 Anserini +test3395 Q0 19220342 5 12.059778 Anserini +test3395 Q0 11339512 6 12.020976 Anserini +test3395 Q0 4765314 7 11.848002 Anserini +test3395 Q0 10207838 8 11.681092 Anserini +test3395 Q0 2730347 9 11.649091 Anserini +test3395 Q0 15544 10 11.598132 Anserini +test3395 Q0 16310536 11 11.496788 Anserini +test3395 Q0 9402124 12 11.422593 Anserini +test3395 Q0 2753387 13 11.404437 Anserini +test3395 Q0 16245969 14 11.208570 Anserini +test3395 Q0 5650445 15 11.122003 Anserini +test3395 Q0 13579579 16 11.113035 Anserini +test3395 Q0 17971105 17 11.099588 Anserini +test3395 Q0 713507 18 11.041406 Anserini +test3395 Q0 16310533 19 10.992689 Anserini +test3395 Q0 10291206 20 10.991430 Anserini +test3395 Q0 12695980 21 10.978672 Anserini +test3395 Q0 17934746 22 10.894379 Anserini +test3395 Q0 713543 23 10.842242 Anserini +test3395 Q0 551695 24 10.838228 Anserini +test3395 Q0 11336705 25 10.759911 Anserini +test3395 Q0 9615916 26 10.757713 Anserini +test3395 Q0 10672110 27 10.715919 Anserini +test3395 Q0 3928639 28 10.666368 Anserini +test3395 Q0 18990563 29 10.590554 Anserini +test3395 Q0 18990564 30 10.590554 Anserini +test3396 Q0 6578998 1 12.272685 Anserini +test3396 Q0 7851466 2 12.081328 Anserini +test3396 Q0 11461749 3 11.802060 Anserini +test3396 Q0 20907972 4 11.664653 Anserini +test3396 Q0 7260167 5 11.362339 Anserini +test3396 Q0 18389427 6 11.297024 Anserini +test3396 Q0 17371271 7 11.283814 Anserini +test3396 Q0 15883887 8 11.202321 Anserini +test3396 Q0 17633014 9 11.195919 Anserini +test3396 Q0 15418154 10 11.143384 Anserini +test3396 Q0 3650211 11 11.123135 Anserini +test3396 Q0 19451984 12 11.101435 Anserini +test3396 Q0 5328467 13 11.054668 Anserini +test3396 Q0 16698511 14 10.932077 Anserini +test3396 Q0 14895074 15 10.896625 Anserini +test3396 Q0 17936262 16 10.794276 Anserini +test3396 Q0 15391826 17 10.788933 Anserini +test3396 Q0 12363950 18 10.781843 Anserini +test3396 Q0 10970644 19 10.772383 Anserini +test3396 Q0 7851462 20 10.749016 Anserini +test3396 Q0 9030051 21 10.748849 Anserini +test3396 Q0 10658895 22 10.675358 Anserini +test3396 Q0 7891609 23 10.675358 Anserini +test3396 Q0 2740087 24 10.671199 Anserini +test3396 Q0 16912614 25 10.664375 Anserini +test3396 Q0 2654708 26 10.649829 Anserini +test3396 Q0 16859033 27 10.598416 Anserini +test3396 Q0 9507013 28 10.586725 Anserini +test3396 Q0 7424797 29 10.564148 Anserini +test3396 Q0 2991103 30 10.525122 Anserini +test3397 Q0 7083140 1 17.442789 Anserini +test3397 Q0 11617780 2 16.701797 Anserini +test3397 Q0 12826043 3 16.437645 Anserini +test3397 Q0 2367130 4 16.212948 Anserini +test3397 Q0 17524760 5 15.706687 Anserini +test3397 Q0 16508582 6 15.549429 Anserini +test3397 Q0 15045755 7 15.373796 Anserini +test3397 Q0 8222333 8 15.317566 Anserini +test3397 Q0 8683510 9 14.753170 Anserini +test3397 Q0 3129809 10 14.377446 Anserini +test3397 Q0 14508718 11 14.134622 Anserini +test3397 Q0 639230 12 14.130182 Anserini +test3397 Q0 10388963 13 14.043981 Anserini +test3397 Q0 17524761 14 14.005625 Anserini +test3397 Q0 180865 15 13.979062 Anserini +test3397 Q0 5806312 16 13.962780 Anserini +test3397 Q0 8222371 17 13.927672 Anserini +test3397 Q0 9342721 18 13.876966 Anserini +test3397 Q0 1605038 19 13.860719 Anserini +test3397 Q0 31491 20 13.860719 Anserini +test3397 Q0 5126537 21 13.743557 Anserini +test3397 Q0 9951038 22 13.690716 Anserini +test3397 Q0 129468 23 13.687249 Anserini +test3397 Q0 13475760 24 13.621582 Anserini +test3397 Q0 2148473 25 13.555461 Anserini +test3397 Q0 97079 26 13.372304 Anserini +test3397 Q0 639297 27 13.332787 Anserini +test3397 Q0 10159559 28 13.236531 Anserini +test3397 Q0 2149555 29 13.220987 Anserini +test3397 Q0 17363041 30 13.159245 Anserini +test3398 Q0 14372579 1 17.938589 Anserini +test3398 Q0 304912 2 17.194813 Anserini +test3398 Q0 14372575 3 16.349401 Anserini +test3398 Q0 14372565 4 15.590126 Anserini +test3398 Q0 8155678 5 13.947028 Anserini +test3398 Q0 2351085 6 13.922858 Anserini +test3398 Q0 10254582 7 13.729846 Anserini +test3398 Q0 6524577 8 13.616825 Anserini +test3398 Q0 15238274 9 13.600711 Anserini +test3398 Q0 7239046 10 13.585311 Anserini +test3398 Q0 7439951 11 13.582653 Anserini +test3398 Q0 5838348 12 13.565601 Anserini +test3398 Q0 5838357 13 13.565601 Anserini +test3398 Q0 6430750 14 13.517387 Anserini +test3398 Q0 15238275 15 13.517352 Anserini +test3398 Q0 15180728 16 13.464972 Anserini +test3398 Q0 1162928 17 13.394336 Anserini +test3398 Q0 2316741 18 13.360154 Anserini +test3398 Q0 2888772 19 13.287931 Anserini +test3398 Q0 8270036 20 13.277315 Anserini +test3398 Q0 3655720 21 13.185873 Anserini +test3398 Q0 16453584 22 13.097498 Anserini +test3398 Q0 12219746 23 13.080154 Anserini +test3398 Q0 12219754 24 13.080154 Anserini +test3398 Q0 6852371 25 13.052436 Anserini +test3398 Q0 6377286 26 12.984466 Anserini +test3398 Q0 6377280 27 12.939724 Anserini +test3398 Q0 18075280 28 12.924931 Anserini +test3398 Q0 15020801 29 12.905697 Anserini +test3398 Q0 15238279 30 12.859121 Anserini +test3399 Q0 14432457 1 13.852023 Anserini +test3399 Q0 2450847 2 13.209559 Anserini +test3399 Q0 2450871 3 13.074240 Anserini +test3399 Q0 2891016 4 12.825417 Anserini +test3399 Q0 2891018 5 12.620089 Anserini +test3399 Q0 6134304 6 12.551500 Anserini +test3399 Q0 8277167 7 12.393192 Anserini +test3399 Q0 6445561 8 12.310276 Anserini +test3399 Q0 8214106 9 12.253124 Anserini +test3399 Q0 13544880 10 12.109047 Anserini +test3399 Q0 10509590 11 12.105423 Anserini +test3399 Q0 3440577 12 11.852214 Anserini +test3399 Q0 683485 13 11.812923 Anserini +test3399 Q0 2891172 14 11.809783 Anserini +test3399 Q0 20936311 15 11.801306 Anserini +test3399 Q0 8214103 16 11.745307 Anserini +test3399 Q0 1032004 17 11.681537 Anserini +test3399 Q0 15988598 18 11.628113 Anserini +test3399 Q0 18134915 19 11.624881 Anserini +test3399 Q0 6878261 20 11.518543 Anserini +test3399 Q0 4554383 21 11.506462 Anserini +test3399 Q0 14505487 22 11.482423 Anserini +test3399 Q0 5912349 23 11.457459 Anserini +test3399 Q0 11379793 24 11.426134 Anserini +test3399 Q0 11379791 25 11.403636 Anserini +test3399 Q0 11832069 26 11.394249 Anserini +test3399 Q0 7618609 27 11.286631 Anserini +test3399 Q0 20582276 28 11.280785 Anserini +test3399 Q0 18134916 29 11.235207 Anserini +test3399 Q0 2891176 30 11.224931 Anserini +test34 Q0 17678436 1 11.025450 Anserini +test34 Q0 18513260 2 11.011491 Anserini +test34 Q0 11543026 3 10.924608 Anserini +test34 Q0 10677229 4 10.751300 Anserini +test34 Q0 3792086 5 10.739275 Anserini +test34 Q0 3143060 6 10.680313 Anserini +test34 Q0 266425 7 10.638001 Anserini +test34 Q0 269497 8 10.581790 Anserini +test34 Q0 5300733 9 10.422493 Anserini +test34 Q0 5300767 10 10.422493 Anserini +test34 Q0 11987101 11 10.365766 Anserini +test34 Q0 7862878 12 10.237185 Anserini +test34 Q0 7651368 13 10.205852 Anserini +test34 Q0 4430749 14 10.168104 Anserini +test34 Q0 3319222 15 10.126924 Anserini +test34 Q0 19843277 16 10.115263 Anserini +test34 Q0 6198176 17 10.108383 Anserini +test34 Q0 2872391 18 10.095315 Anserini +test34 Q0 2872332 19 10.095315 Anserini +test34 Q0 3143053 20 10.079237 Anserini +test34 Q0 2872357 21 10.073804 Anserini +test34 Q0 8178551 22 10.065897 Anserini +test34 Q0 3622264 23 10.045744 Anserini +test34 Q0 11543029 24 10.038619 Anserini +test34 Q0 19843285 25 10.033468 Anserini +test34 Q0 5198315 26 10.019619 Anserini +test34 Q0 6218718 27 9.968129 Anserini +test34 Q0 5198287 28 9.943066 Anserini +test34 Q0 8070418 29 9.892918 Anserini +test34 Q0 7610935 30 9.874784 Anserini +test340 Q0 583777 1 13.806071 Anserini +test340 Q0 2612384 2 13.188750 Anserini +test340 Q0 13246850 3 12.532599 Anserini +test340 Q0 13437417 4 12.492092 Anserini +test340 Q0 13038115 5 12.406496 Anserini +test340 Q0 7646273 6 12.330604 Anserini +test340 Q0 224886 7 12.225767 Anserini +test340 Q0 15952394 8 12.222810 Anserini +test340 Q0 2492472 9 12.042415 Anserini +test340 Q0 16286678 10 12.021362 Anserini +test340 Q0 2492396 11 11.897167 Anserini +test340 Q0 10354585 12 11.885072 Anserini +test340 Q0 10105366 13 11.842748 Anserini +test340 Q0 16286677 14 11.718633 Anserini +test340 Q0 16286681 15 11.718633 Anserini +test340 Q0 16714909 16 11.713948 Anserini +test340 Q0 16567912 17 11.702759 Anserini +test340 Q0 1551310 18 11.674126 Anserini +test340 Q0 17827871 19 11.606483 Anserini +test340 Q0 1503265 20 11.586555 Anserini +test340 Q0 8243974 21 11.554105 Anserini +test340 Q0 6811664 22 11.537015 Anserini +test340 Q0 13039641 23 11.537015 Anserini +test340 Q0 1864304 24 11.484454 Anserini +test340 Q0 1779440 25 11.448765 Anserini +test340 Q0 18884829 26 11.441714 Anserini +test340 Q0 7646293 27 11.429515 Anserini +test340 Q0 13437419 28 11.329551 Anserini +test340 Q0 16714907 29 11.248196 Anserini +test340 Q0 7555841 30 11.231931 Anserini +test3400 Q0 703548 1 25.984198 Anserini +test3400 Q0 703552 2 25.953938 Anserini +test3400 Q0 703549 3 24.665077 Anserini +test3400 Q0 20300148 4 24.005846 Anserini +test3400 Q0 16994243 5 23.668653 Anserini +test3400 Q0 1012866 6 22.302607 Anserini +test3400 Q0 19720808 7 22.233759 Anserini +test3400 Q0 1012863 8 22.190783 Anserini +test3400 Q0 1012883 9 22.190783 Anserini +test3400 Q0 703551 10 21.799385 Anserini +test3400 Q0 15574876 11 21.534834 Anserini +test3400 Q0 18184740 12 21.256367 Anserini +test3400 Q0 14411328 13 20.990978 Anserini +test3400 Q0 15172774 14 20.893204 Anserini +test3400 Q0 19720822 15 20.849539 Anserini +test3400 Q0 7158688 16 20.654844 Anserini +test3400 Q0 13977669 17 20.385693 Anserini +test3400 Q0 1988516 18 20.380409 Anserini +test3400 Q0 7508513 19 20.371861 Anserini +test3400 Q0 3377531 20 20.233208 Anserini +test3400 Q0 13977673 21 20.180635 Anserini +test3400 Q0 8193299 22 19.946125 Anserini +test3400 Q0 14411327 23 19.893866 Anserini +test3400 Q0 20728648 24 19.893614 Anserini +test3400 Q0 698711 25 19.839846 Anserini +test3400 Q0 5540451 26 19.758358 Anserini +test3400 Q0 13119276 27 19.688877 Anserini +test3400 Q0 16355121 28 19.649910 Anserini +test3400 Q0 10864649 29 19.571350 Anserini +test3400 Q0 5440292 30 19.558529 Anserini +test3401 Q0 20482569 1 16.751093 Anserini +test3401 Q0 1703046 2 15.485981 Anserini +test3401 Q0 20482566 3 14.621791 Anserini +test3401 Q0 12928048 4 14.441116 Anserini +test3401 Q0 3163831 5 13.800895 Anserini +test3401 Q0 248409 6 13.698937 Anserini +test3401 Q0 3058793 7 12.419045 Anserini +test3401 Q0 19425749 8 12.109104 Anserini +test3401 Q0 248402 9 12.076507 Anserini +test3401 Q0 12928047 10 12.076507 Anserini +test3401 Q0 4536410 11 12.024718 Anserini +test3401 Q0 15352690 12 12.017238 Anserini +test3401 Q0 14624398 13 11.960324 Anserini +test3401 Q0 8216193 14 11.940847 Anserini +test3401 Q0 7379985 15 11.768150 Anserini +test3401 Q0 9845986 16 11.668048 Anserini +test3401 Q0 11927874 17 11.657530 Anserini +test3401 Q0 9960159 18 11.654413 Anserini +test3401 Q0 5509806 19 11.527548 Anserini +test3401 Q0 4528770 20 11.507899 Anserini +test3401 Q0 7515776 21 11.454391 Anserini +test3401 Q0 7762780 22 11.369311 Anserini +test3401 Q0 8035346 23 11.319396 Anserini +test3401 Q0 520989 24 11.314116 Anserini +test3401 Q0 1703084 25 11.309935 Anserini +test3401 Q0 17073718 26 11.196152 Anserini +test3401 Q0 1571048 27 11.052444 Anserini +test3401 Q0 4485147 28 11.052444 Anserini +test3401 Q0 10963954 29 11.040113 Anserini +test3401 Q0 9845990 30 11.037190 Anserini +test3402 Q0 18204290 1 13.171485 Anserini +test3402 Q0 17803399 2 13.147332 Anserini +test3402 Q0 13114188 3 12.957660 Anserini +test3402 Q0 7630519 4 12.913974 Anserini +test3402 Q0 145947 5 12.827251 Anserini +test3402 Q0 17347720 6 12.812148 Anserini +test3402 Q0 13106633 7 12.723983 Anserini +test3402 Q0 7400795 8 12.464596 Anserini +test3402 Q0 17707158 9 12.443722 Anserini +test3402 Q0 145978 10 12.422088 Anserini +test3402 Q0 5429650 11 12.402280 Anserini +test3402 Q0 12884336 12 12.293441 Anserini +test3402 Q0 145979 13 12.244639 Anserini +test3402 Q0 17347696 14 12.197791 Anserini +test3402 Q0 7576347 15 12.190254 Anserini +test3402 Q0 5429656 16 12.177177 Anserini +test3402 Q0 6705647 17 12.143866 Anserini +test3402 Q0 17842913 18 12.143342 Anserini +test3402 Q0 145953 19 12.059916 Anserini +test3402 Q0 294264 20 12.055506 Anserini +test3402 Q0 17347749 21 11.943748 Anserini +test3402 Q0 145948 22 11.864449 Anserini +test3402 Q0 6705623 23 11.854667 Anserini +test3402 Q0 7006733 24 11.666317 Anserini +test3402 Q0 6722458 25 11.601498 Anserini +test3402 Q0 145931 26 11.600416 Anserini +test3402 Q0 145930 27 11.496185 Anserini +test3402 Q0 9573776 28 11.424410 Anserini +test3402 Q0 7006743 29 11.411531 Anserini +test3402 Q0 13107034 30 11.317010 Anserini +test3403 Q0 8207881 1 14.431429 Anserini +test3403 Q0 315910 2 14.294513 Anserini +test3403 Q0 11884079 3 14.002977 Anserini +test3403 Q0 12577318 4 13.919861 Anserini +test3403 Q0 12577359 5 13.550543 Anserini +test3403 Q0 7779298 6 12.915497 Anserini +test3403 Q0 20734845 7 12.829588 Anserini +test3403 Q0 14526698 8 12.775935 Anserini +test3403 Q0 20106031 9 12.774357 Anserini +test3403 Q0 6361018 10 12.693271 Anserini +test3403 Q0 12577319 11 12.484030 Anserini +test3403 Q0 8203396 12 12.420440 Anserini +test3403 Q0 12577345 13 12.220975 Anserini +test3403 Q0 15618215 14 12.165285 Anserini +test3403 Q0 20734878 15 12.135005 Anserini +test3403 Q0 12577325 16 12.106583 Anserini +test3403 Q0 12577353 17 12.100069 Anserini +test3403 Q0 20734865 18 12.098986 Anserini +test3403 Q0 6282476 19 12.096505 Anserini +test3403 Q0 2339862 20 12.074215 Anserini +test3403 Q0 8207882 21 11.944921 Anserini +test3403 Q0 20734849 22 11.906061 Anserini +test3403 Q0 14360510 23 11.903710 Anserini +test3403 Q0 20717662 24 11.863252 Anserini +test3403 Q0 14360512 25 11.840936 Anserini +test3403 Q0 12577344 26 11.795418 Anserini +test3403 Q0 20734886 27 11.703970 Anserini +test3403 Q0 11495699 28 11.666928 Anserini +test3403 Q0 9473793 29 11.601445 Anserini +test3403 Q0 20734860 30 11.598761 Anserini +test3404 Q0 19343187 1 11.034038 Anserini +test3404 Q0 4709119 2 10.790882 Anserini +test3404 Q0 2040215 3 10.375060 Anserini +test3404 Q0 3075220 4 10.181343 Anserini +test3404 Q0 581861 5 10.125183 Anserini +test3404 Q0 1639882 6 10.054628 Anserini +test3404 Q0 17983454 7 9.996660 Anserini +test3404 Q0 582505 8 9.869666 Anserini +test3404 Q0 13716836 9 9.772334 Anserini +test3404 Q0 10358311 10 9.719717 Anserini +test3404 Q0 5412087 11 9.712765 Anserini +test3404 Q0 11304571 12 9.688118 Anserini +test3404 Q0 7658905 13 9.568169 Anserini +test3404 Q0 6867459 14 9.539405 Anserini +test3404 Q0 224696 15 9.505448 Anserini +test3404 Q0 3450497 16 9.485778 Anserini +test3404 Q0 1612872 17 9.475684 Anserini +test3404 Q0 3124673 18 9.455988 Anserini +test3404 Q0 10011716 19 9.405928 Anserini +test3404 Q0 12749949 20 9.388828 Anserini +test3404 Q0 1612881 21 9.387239 Anserini +test3404 Q0 17473739 22 9.349738 Anserini +test3404 Q0 4709120 23 9.317632 Anserini +test3404 Q0 5345798 24 9.315670 Anserini +test3404 Q0 7658904 25 9.307488 Anserini +test3404 Q0 14964759 26 9.262632 Anserini +test3404 Q0 1265140 27 9.237141 Anserini +test3404 Q0 10175000 28 9.192667 Anserini +test3404 Q0 2886328 29 9.162405 Anserini +test3404 Q0 4484713 30 9.158121 Anserini +test3405 Q0 17246677 1 14.284643 Anserini +test3405 Q0 2528449 2 14.237313 Anserini +test3405 Q0 4368862 3 14.065449 Anserini +test3405 Q0 2528442 4 14.057209 Anserini +test3405 Q0 12990471 5 13.904078 Anserini +test3405 Q0 8571882 6 13.842695 Anserini +test3405 Q0 3756842 7 13.817142 Anserini +test3405 Q0 18411292 8 13.811474 Anserini +test3405 Q0 17011152 9 13.780017 Anserini +test3405 Q0 18411290 10 13.720215 Anserini +test3405 Q0 2528451 11 13.657772 Anserini +test3405 Q0 3756861 12 13.560991 Anserini +test3405 Q0 12111875 13 13.538170 Anserini +test3405 Q0 16512819 14 13.485740 Anserini +test3405 Q0 16461207 15 13.430580 Anserini +test3405 Q0 2528441 16 13.357489 Anserini +test3405 Q0 14698551 17 13.306399 Anserini +test3405 Q0 15527796 18 13.299604 Anserini +test3405 Q0 15056349 19 13.292889 Anserini +test3405 Q0 18411291 20 13.272848 Anserini +test3405 Q0 3756834 21 13.200706 Anserini +test3405 Q0 9342996 22 13.177930 Anserini +test3405 Q0 11472446 23 13.162430 Anserini +test3405 Q0 16512816 24 13.154313 Anserini +test3405 Q0 17246678 25 13.088899 Anserini +test3405 Q0 19108233 26 13.087404 Anserini +test3405 Q0 3000949 27 13.076550 Anserini +test3405 Q0 11311693 28 13.052370 Anserini +test3405 Q0 8974930 29 13.043626 Anserini +test3405 Q0 3000952 30 13.041856 Anserini +test3406 Q0 3314303 1 13.460215 Anserini +test3406 Q0 2068672 2 12.539320 Anserini +test3406 Q0 11328908 3 12.289162 Anserini +test3406 Q0 6438838 4 12.028464 Anserini +test3406 Q0 10270540 5 12.021440 Anserini +test3406 Q0 6550265 6 12.005764 Anserini +test3406 Q0 6011263 7 11.925182 Anserini +test3406 Q0 9911954 8 11.874303 Anserini +test3406 Q0 3722987 9 11.634917 Anserini +test3406 Q0 15677768 10 11.534525 Anserini +test3406 Q0 19496552 11 11.516279 Anserini +test3406 Q0 6242747 12 11.383977 Anserini +test3406 Q0 7333562 13 11.381256 Anserini +test3406 Q0 7617415 14 11.203781 Anserini +test3406 Q0 4248434 15 11.185814 Anserini +test3406 Q0 11951515 16 11.154732 Anserini +test3406 Q0 6550248 17 11.110201 Anserini +test3406 Q0 4792801 18 11.105647 Anserini +test3406 Q0 11093599 19 11.032509 Anserini +test3406 Q0 11951513 20 11.001727 Anserini +test3406 Q0 8878295 21 10.888508 Anserini +test3406 Q0 19509010 22 10.868890 Anserini +test3406 Q0 9781788 23 10.855654 Anserini +test3406 Q0 19230079 24 10.834500 Anserini +test3406 Q0 318771 25 10.794358 Anserini +test3406 Q0 335542 26 10.782689 Anserini +test3406 Q0 10152360 27 10.744014 Anserini +test3406 Q0 18083352 28 10.738239 Anserini +test3406 Q0 15391960 29 10.727211 Anserini +test3406 Q0 12441674 30 10.705100 Anserini +test3407 Q0 9868734 1 15.501415 Anserini +test3407 Q0 7206079 2 15.488656 Anserini +test3407 Q0 6798555 3 15.410968 Anserini +test3407 Q0 4777139 4 15.396685 Anserini +test3407 Q0 5201088 5 15.008385 Anserini +test3407 Q0 11434229 6 14.855071 Anserini +test3407 Q0 3058146 7 14.691708 Anserini +test3407 Q0 214582 8 14.551229 Anserini +test3407 Q0 9868733 9 14.448921 Anserini +test3407 Q0 7000801 10 14.447009 Anserini +test3407 Q0 214571 11 14.404018 Anserini +test3407 Q0 214568 12 14.396892 Anserini +test3407 Q0 9868750 13 14.310293 Anserini +test3407 Q0 9868739 14 14.306413 Anserini +test3407 Q0 4554758 15 14.028634 Anserini +test3407 Q0 214572 16 14.011476 Anserini +test3407 Q0 12485083 17 13.773167 Anserini +test3407 Q0 9685388 18 13.749956 Anserini +test3407 Q0 9868737 19 13.674981 Anserini +test3407 Q0 17627210 20 13.617965 Anserini +test3407 Q0 17447985 21 13.614044 Anserini +test3407 Q0 214557 22 13.593702 Anserini +test3407 Q0 394529 23 13.503966 Anserini +test3407 Q0 12985126 24 13.428746 Anserini +test3407 Q0 11796977 25 13.415397 Anserini +test3407 Q0 9864590 26 13.290799 Anserini +test3407 Q0 9915401 27 13.241182 Anserini +test3407 Q0 18232314 28 13.165532 Anserini +test3407 Q0 6798554 29 13.143410 Anserini +test3407 Q0 4702485 30 12.910785 Anserini +test3408 Q0 1446748 1 13.803614 Anserini +test3408 Q0 18031740 2 12.799635 Anserini +test3408 Q0 9405543 3 12.769582 Anserini +test3408 Q0 13145961 4 12.375866 Anserini +test3408 Q0 19554558 5 12.367452 Anserini +test3408 Q0 13975757 6 12.274904 Anserini +test3408 Q0 18065353 7 12.196955 Anserini +test3408 Q0 6021069 8 11.968642 Anserini +test3408 Q0 18031729 9 11.968642 Anserini +test3408 Q0 399873 10 11.835106 Anserini +test3408 Q0 5502912 11 11.822982 Anserini +test3408 Q0 6021078 12 11.786489 Anserini +test3408 Q0 18031738 13 11.765165 Anserini +test3408 Q0 5833701 14 11.758958 Anserini +test3408 Q0 16630283 15 11.747276 Anserini +test3408 Q0 13044867 16 11.742663 Anserini +test3408 Q0 7620218 17 11.721241 Anserini +test3408 Q0 15262375 18 11.631824 Anserini +test3408 Q0 12396454 19 11.619569 Anserini +test3408 Q0 17429771 20 11.598544 Anserini +test3408 Q0 14033209 21 11.592451 Anserini +test3408 Q0 18554482 22 11.565984 Anserini +test3408 Q0 18031722 23 11.532511 Anserini +test3408 Q0 18065357 24 11.377994 Anserini +test3408 Q0 7571771 25 11.364013 Anserini +test3408 Q0 9528759 26 11.358882 Anserini +test3408 Q0 8112541 27 11.345459 Anserini +test3408 Q0 12258950 28 11.311021 Anserini +test3408 Q0 1432160 29 11.292425 Anserini +test3408 Q0 7620242 30 11.280250 Anserini +test3409 Q0 5073802 1 12.805550 Anserini +test3409 Q0 5073809 2 12.354872 Anserini +test3409 Q0 6168889 3 11.870604 Anserini +test3409 Q0 5073803 4 11.594067 Anserini +test3409 Q0 14335874 5 11.463297 Anserini +test3409 Q0 14335879 6 11.463297 Anserini +test3409 Q0 5073808 7 11.399034 Anserini +test3409 Q0 14335876 8 11.335500 Anserini +test3409 Q0 3890011 9 11.067837 Anserini +test3409 Q0 5073806 10 10.795568 Anserini +test3409 Q0 5073804 11 10.795568 Anserini +test3409 Q0 328622 12 10.678456 Anserini +test3409 Q0 15699727 13 10.660861 Anserini +test3409 Q0 3890010 14 10.445547 Anserini +test3409 Q0 15575252 15 10.014524 Anserini +test3409 Q0 8108306 16 10.014524 Anserini +test3409 Q0 8705520 17 9.811814 Anserini +test3409 Q0 15699728 18 9.782867 Anserini +test3409 Q0 6168891 19 9.678288 Anserini +test3409 Q0 4120993 20 9.600198 Anserini +test3409 Q0 5945217 21 9.590872 Anserini +test3409 Q0 14787507 22 9.566391 Anserini +test3409 Q0 3369842 23 9.514171 Anserini +test3409 Q0 10326298 24 9.389056 Anserini +test3409 Q0 11981262 25 9.382002 Anserini +test3409 Q0 13095021 26 9.350196 Anserini +test3409 Q0 13095023 27 9.350196 Anserini +test3409 Q0 3809501 28 9.350196 Anserini +test3409 Q0 2683069 29 9.329129 Anserini +test3409 Q0 19244308 30 9.318604 Anserini +test341 Q0 17319615 1 21.431213 Anserini +test341 Q0 20303051 2 20.874519 Anserini +test341 Q0 17021210 3 20.668503 Anserini +test341 Q0 4921180 4 20.321957 Anserini +test341 Q0 12217516 5 20.095921 Anserini +test341 Q0 6967932 6 20.089283 Anserini +test341 Q0 20232349 7 19.991451 Anserini +test341 Q0 13427833 8 19.958204 Anserini +test341 Q0 19321374 9 19.781599 Anserini +test341 Q0 18390986 10 19.678625 Anserini +test341 Q0 19321371 11 19.625984 Anserini +test341 Q0 5402277 12 19.537693 Anserini +test341 Q0 12966544 13 19.490137 Anserini +test341 Q0 8944943 14 19.411478 Anserini +test341 Q0 3334127 15 19.348028 Anserini +test341 Q0 6301211 16 19.315248 Anserini +test341 Q0 17021197 17 19.309477 Anserini +test341 Q0 2666013 18 19.218912 Anserini +test341 Q0 1472237 19 19.009081 Anserini +test341 Q0 16830282 20 18.874899 Anserini +test341 Q0 13427827 21 18.874805 Anserini +test341 Q0 10419771 22 18.818054 Anserini +test341 Q0 4047461 23 18.811502 Anserini +test341 Q0 16830281 24 18.787594 Anserini +test341 Q0 1472241 25 18.765659 Anserini +test341 Q0 15187932 26 18.692961 Anserini +test341 Q0 15187933 27 18.692961 Anserini +test341 Q0 13427836 28 18.691717 Anserini +test341 Q0 17234922 29 18.642292 Anserini +test341 Q0 20232343 30 18.596691 Anserini +test3410 Q0 10285529 1 12.521657 Anserini +test3410 Q0 804273 2 12.284897 Anserini +test3410 Q0 18079024 3 12.123056 Anserini +test3410 Q0 9303124 4 12.082504 Anserini +test3410 Q0 19083233 5 12.012361 Anserini +test3410 Q0 6763750 6 11.901454 Anserini +test3410 Q0 19517189 7 11.845945 Anserini +test3410 Q0 13329662 8 11.788291 Anserini +test3410 Q0 2015513 9 11.732418 Anserini +test3410 Q0 5789847 10 11.693828 Anserini +test3410 Q0 7655877 11 11.675466 Anserini +test3410 Q0 11904476 12 11.650147 Anserini +test3410 Q0 1662230 13 11.605771 Anserini +test3410 Q0 18081593 14 11.591730 Anserini +test3410 Q0 803690 15 11.588552 Anserini +test3410 Q0 11333145 16 11.552156 Anserini +test3410 Q0 4073686 17 11.539539 Anserini +test3410 Q0 1795060 18 11.513605 Anserini +test3410 Q0 7745319 19 11.498528 Anserini +test3410 Q0 16607127 20 11.485739 Anserini +test3410 Q0 4273190 21 11.467455 Anserini +test3410 Q0 18809946 22 11.446865 Anserini +test3410 Q0 2061163 23 11.434852 Anserini +test3410 Q0 10957212 24 11.424539 Anserini +test3410 Q0 18864042 25 11.377324 Anserini +test3410 Q0 6477293 26 11.364243 Anserini +test3410 Q0 18864032 27 11.361530 Anserini +test3410 Q0 15071315 28 11.321983 Anserini +test3410 Q0 11875803 29 11.312097 Anserini +test3410 Q0 4447174 30 11.310717 Anserini +test3411 Q0 8906637 1 12.922157 Anserini +test3411 Q0 562030 2 11.967593 Anserini +test3411 Q0 12727108 3 11.538644 Anserini +test3411 Q0 19754013 4 11.258394 Anserini +test3411 Q0 6053760 5 11.097160 Anserini +test3411 Q0 12727106 6 11.084042 Anserini +test3411 Q0 8814223 7 10.799500 Anserini +test3411 Q0 14295302 8 10.790422 Anserini +test3411 Q0 6285228 9 10.780549 Anserini +test3411 Q0 14295291 10 10.686380 Anserini +test3411 Q0 12727105 11 10.670728 Anserini +test3411 Q0 7606403 12 10.620432 Anserini +test3411 Q0 12903961 13 10.546951 Anserini +test3411 Q0 7606411 14 10.520792 Anserini +test3411 Q0 19754011 15 10.507640 Anserini +test3411 Q0 3269193 16 10.304255 Anserini +test3411 Q0 6053771 17 10.281359 Anserini +test3411 Q0 8801265 18 10.201778 Anserini +test3411 Q0 6569443 19 9.997817 Anserini +test3411 Q0 12890057 20 9.995522 Anserini +test3411 Q0 6053761 21 9.924187 Anserini +test3411 Q0 8792583 22 9.917894 Anserini +test3411 Q0 7779193 23 9.901147 Anserini +test3411 Q0 7797797 24 9.820382 Anserini +test3411 Q0 7797794 25 9.744272 Anserini +test3411 Q0 1884393 26 9.743732 Anserini +test3411 Q0 20400943 27 9.735565 Anserini +test3411 Q0 9903546 28 9.728621 Anserini +test3411 Q0 15504832 29 9.727676 Anserini +test3411 Q0 17477343 30 9.677091 Anserini +test3412 Q0 17587520 1 16.381697 Anserini +test3412 Q0 17587523 2 16.145580 Anserini +test3412 Q0 9146185 3 16.017725 Anserini +test3412 Q0 3103438 4 15.824368 Anserini +test3412 Q0 9146184 5 15.761436 Anserini +test3412 Q0 2621159 6 15.493497 Anserini +test3412 Q0 2763587 7 15.422935 Anserini +test3412 Q0 4729939 8 15.397377 Anserini +test3412 Q0 4035565 9 15.323867 Anserini +test3412 Q0 2763625 10 15.313154 Anserini +test3412 Q0 2763626 11 15.313154 Anserini +test3412 Q0 3103440 12 15.308553 Anserini +test3412 Q0 202159 13 15.041461 Anserini +test3412 Q0 17587522 14 15.002228 Anserini +test3412 Q0 9739908 15 15.001082 Anserini +test3412 Q0 2942120 16 14.944699 Anserini +test3412 Q0 9297143 17 14.918804 Anserini +test3412 Q0 9297144 18 14.918804 Anserini +test3412 Q0 3499385 19 14.879503 Anserini +test3412 Q0 202185 20 14.851894 Anserini +test3412 Q0 202156 21 14.785498 Anserini +test3412 Q0 9642653 22 14.769053 Anserini +test3412 Q0 9642654 23 14.769053 Anserini +test3412 Q0 202158 24 14.718581 Anserini +test3412 Q0 2942118 25 14.706213 Anserini +test3412 Q0 6743550 26 14.568995 Anserini +test3412 Q0 5393390 27 14.451415 Anserini +test3412 Q0 8069965 28 14.451415 Anserini +test3412 Q0 5393395 29 14.443243 Anserini +test3412 Q0 5393396 30 14.443243 Anserini +test3413 Q0 616816 1 15.321739 Anserini +test3413 Q0 616876 2 15.321739 Anserini +test3413 Q0 9426643 3 12.915987 Anserini +test3413 Q0 9435959 4 12.831380 Anserini +test3413 Q0 5359257 5 12.613352 Anserini +test3413 Q0 2891172 6 12.515777 Anserini +test3413 Q0 583199 7 12.510607 Anserini +test3413 Q0 9742808 8 12.337015 Anserini +test3413 Q0 2891176 9 12.105268 Anserini +test3413 Q0 3611744 10 11.994556 Anserini +test3413 Q0 3611743 11 11.927564 Anserini +test3413 Q0 4288168 12 11.898326 Anserini +test3413 Q0 17979022 13 11.866415 Anserini +test3413 Q0 538020 14 11.842715 Anserini +test3413 Q0 17148349 15 11.838887 Anserini +test3413 Q0 3549613 16 11.714529 Anserini +test3413 Q0 1092849 17 11.684744 Anserini +test3413 Q0 12044985 18 11.675411 Anserini +test3413 Q0 4288170 19 11.600686 Anserini +test3413 Q0 18770126 20 11.596872 Anserini +test3413 Q0 17569975 21 11.581719 Anserini +test3413 Q0 18256637 22 11.575006 Anserini +test3413 Q0 15561716 23 11.570867 Anserini +test3413 Q0 8912000 24 11.517349 Anserini +test3413 Q0 560720 25 11.506581 Anserini +test3413 Q0 9253503 26 11.503851 Anserini +test3413 Q0 18770123 27 11.487594 Anserini +test3413 Q0 19986094 28 11.462483 Anserini +test3413 Q0 7198646 29 11.462483 Anserini +test3413 Q0 8214110 30 11.428083 Anserini +test3414 Q0 6527858 1 12.040547 Anserini +test3414 Q0 7801945 2 11.563414 Anserini +test3414 Q0 7801946 3 11.563414 Anserini +test3414 Q0 3941521 4 11.109802 Anserini +test3414 Q0 14562925 5 10.406196 Anserini +test3414 Q0 14331754 6 10.360441 Anserini +test3414 Q0 11846760 7 10.360441 Anserini +test3414 Q0 12046301 8 10.279436 Anserini +test3414 Q0 13700648 9 10.149386 Anserini +test3414 Q0 18085144 10 10.124106 Anserini +test3414 Q0 724811 11 10.017260 Anserini +test3414 Q0 7002537 12 9.929047 Anserini +test3414 Q0 16343261 13 9.867303 Anserini +test3414 Q0 16977438 14 9.771368 Anserini +test3414 Q0 386353 15 9.762848 Anserini +test3414 Q0 1346900 16 9.717652 Anserini +test3414 Q0 8393236 17 9.674209 Anserini +test3414 Q0 386267 18 9.674209 Anserini +test3414 Q0 16867079 19 9.637711 Anserini +test3414 Q0 16181181 20 9.636582 Anserini +test3414 Q0 6527853 21 9.606681 Anserini +test3414 Q0 13544798 22 9.587582 Anserini +test3414 Q0 7210781 23 9.587582 Anserini +test3414 Q0 6527857 24 9.577238 Anserini +test3414 Q0 5502423 25 9.568146 Anserini +test3414 Q0 6527863 26 9.479002 Anserini +test3414 Q0 6527847 27 9.430636 Anserini +test3414 Q0 4577526 28 9.427581 Anserini +test3414 Q0 19509888 29 9.404867 Anserini +test3414 Q0 9864143 30 9.404867 Anserini +test3415 Q0 8415074 1 10.432511 Anserini +test3415 Q0 12111418 2 10.133727 Anserini +test3415 Q0 14183858 3 10.119144 Anserini +test3415 Q0 5776599 4 10.031217 Anserini +test3415 Q0 14183857 5 9.894058 Anserini +test3415 Q0 7601973 6 9.879268 Anserini +test3415 Q0 7952673 7 9.851868 Anserini +test3415 Q0 8650960 8 9.846654 Anserini +test3415 Q0 6587971 9 9.846654 Anserini +test3415 Q0 8826025 10 9.795327 Anserini +test3415 Q0 19148818 11 9.704498 Anserini +test3415 Q0 2832049 12 9.703806 Anserini +test3415 Q0 12224836 13 9.574911 Anserini +test3415 Q0 1402020 14 9.569557 Anserini +test3415 Q0 450459 15 9.545173 Anserini +test3415 Q0 19613824 16 9.543611 Anserini +test3415 Q0 13863156 17 9.525867 Anserini +test3415 Q0 5383812 18 9.483624 Anserini +test3415 Q0 20668035 19 9.481134 Anserini +test3415 Q0 6588288 20 9.449875 Anserini +test3415 Q0 5503539 21 9.377931 Anserini +test3415 Q0 5327483 22 9.337561 Anserini +test3415 Q0 17991782 23 9.324114 Anserini +test3415 Q0 3650599 24 9.303022 Anserini +test3415 Q0 3044769 25 9.256817 Anserini +test3415 Q0 18309593 26 9.225367 Anserini +test3415 Q0 8914710 27 9.186413 Anserini +test3415 Q0 15868007 28 9.185315 Anserini +test3415 Q0 15447483 29 9.180270 Anserini +test3415 Q0 12366916 30 9.166120 Anserini +test3416 Q0 1870944 1 16.153437 Anserini +test3416 Q0 1870956 2 15.798538 Anserini +test3416 Q0 718760 3 15.108881 Anserini +test3416 Q0 11881282 4 13.391559 Anserini +test3416 Q0 16837247 5 13.349456 Anserini +test3416 Q0 12790512 6 13.021891 Anserini +test3416 Q0 446178 7 12.674095 Anserini +test3416 Q0 16914805 8 12.561823 Anserini +test3416 Q0 335979 9 12.505239 Anserini +test3416 Q0 1870947 10 12.335908 Anserini +test3416 Q0 12790513 11 12.333765 Anserini +test3416 Q0 289884 12 12.229128 Anserini +test3416 Q0 111084 13 12.180923 Anserini +test3416 Q0 907050 14 11.885706 Anserini +test3416 Q0 2774665 15 11.736871 Anserini +test3416 Q0 13965167 16 11.662430 Anserini +test3416 Q0 16908402 17 11.617955 Anserini +test3416 Q0 17226403 18 11.547270 Anserini +test3416 Q0 1737654 19 11.500660 Anserini +test3416 Q0 11875138 20 11.448225 Anserini +test3416 Q0 16797157 21 11.426231 Anserini +test3416 Q0 6932963 22 11.375267 Anserini +test3416 Q0 5441402 23 11.310862 Anserini +test3416 Q0 10007494 24 11.299541 Anserini +test3416 Q0 111083 25 11.154049 Anserini +test3416 Q0 4388067 26 11.139749 Anserini +test3416 Q0 10147518 27 11.032568 Anserini +test3416 Q0 16596374 28 11.031531 Anserini +test3416 Q0 1983009 29 11.004480 Anserini +test3416 Q0 718771 30 10.985213 Anserini +test3417 Q0 18021109 1 20.937555 Anserini +test3417 Q0 17541413 2 20.614294 Anserini +test3417 Q0 19774840 3 20.525934 Anserini +test3417 Q0 7402655 4 20.478827 Anserini +test3417 Q0 648309 5 20.367739 Anserini +test3417 Q0 456241 6 20.071873 Anserini +test3417 Q0 18021113 7 19.869473 Anserini +test3417 Q0 17541407 8 19.651585 Anserini +test3417 Q0 17976986 9 19.484415 Anserini +test3417 Q0 793215 10 19.424471 Anserini +test3417 Q0 16383260 11 19.338619 Anserini +test3417 Q0 17976995 12 19.170734 Anserini +test3417 Q0 17450361 13 19.133718 Anserini +test3417 Q0 17558489 14 18.939880 Anserini +test3417 Q0 3541849 15 18.876783 Anserini +test3417 Q0 17424411 16 18.848967 Anserini +test3417 Q0 1885404 17 18.664988 Anserini +test3417 Q0 5365083 18 18.663277 Anserini +test3417 Q0 648292 19 18.547302 Anserini +test3417 Q0 17977015 20 18.502157 Anserini +test3417 Q0 5365086 21 18.429159 Anserini +test3417 Q0 8217615 22 18.395063 Anserini +test3417 Q0 17718627 23 18.390509 Anserini +test3417 Q0 2324246 24 18.381701 Anserini +test3417 Q0 19021979 25 18.373194 Anserini +test3417 Q0 266638 26 18.344553 Anserini +test3417 Q0 8362502 27 18.333035 Anserini +test3417 Q0 1208622 28 18.274239 Anserini +test3417 Q0 7389947 29 18.267584 Anserini +test3417 Q0 9945838 30 18.256643 Anserini +test3418 Q0 15270815 1 13.669159 Anserini +test3418 Q0 15270814 2 13.538288 Anserini +test3418 Q0 15270803 3 13.207676 Anserini +test3418 Q0 718634 4 12.918571 Anserini +test3418 Q0 15270807 5 12.678244 Anserini +test3418 Q0 13719737 6 11.853520 Anserini +test3418 Q0 13719722 7 11.784378 Anserini +test3418 Q0 13719735 8 11.608009 Anserini +test3418 Q0 15270806 9 11.465203 Anserini +test3418 Q0 15270808 10 11.300490 Anserini +test3418 Q0 19619661 11 11.278751 Anserini +test3418 Q0 13719726 12 11.246808 Anserini +test3418 Q0 15270813 13 11.186237 Anserini +test3418 Q0 20195459 14 11.170981 Anserini +test3418 Q0 11106082 15 11.168394 Anserini +test3418 Q0 15270810 16 10.500683 Anserini +test3418 Q0 13719725 17 10.461652 Anserini +test3418 Q0 5880411 18 10.454136 Anserini +test3418 Q0 15270805 19 10.450893 Anserini +test3418 Q0 18483005 20 10.365913 Anserini +test3418 Q0 15270812 21 10.283550 Anserini +test3418 Q0 7737433 22 10.282288 Anserini +test3418 Q0 7269580 23 10.119986 Anserini +test3418 Q0 1914972 24 10.099084 Anserini +test3418 Q0 10222945 25 9.965951 Anserini +test3418 Q0 5827105 26 9.944505 Anserini +test3418 Q0 2795156 27 9.916654 Anserini +test3418 Q0 1219232 28 9.859308 Anserini +test3418 Q0 5827109 29 9.852715 Anserini +test3418 Q0 9877966 30 9.838241 Anserini +test3419 Q0 4368691 1 16.864918 Anserini +test3419 Q0 14861387 2 16.001274 Anserini +test3419 Q0 10882487 3 15.563027 Anserini +test3419 Q0 9295509 4 15.270721 Anserini +test3419 Q0 4769928 5 15.221563 Anserini +test3419 Q0 3702643 6 14.881035 Anserini +test3419 Q0 4368690 7 13.884508 Anserini +test3419 Q0 9295485 8 13.666793 Anserini +test3419 Q0 13344970 9 13.470556 Anserini +test3419 Q0 7218740 10 13.113503 Anserini +test3419 Q0 4140441 11 13.104717 Anserini +test3419 Q0 13962918 12 12.997808 Anserini +test3419 Q0 7471548 13 12.985163 Anserini +test3419 Q0 17410401 14 12.847736 Anserini +test3419 Q0 17410404 15 12.847736 Anserini +test3419 Q0 5434229 16 12.808092 Anserini +test3419 Q0 9534212 17 12.648805 Anserini +test3419 Q0 5725159 18 12.630144 Anserini +test3419 Q0 16501983 19 12.618072 Anserini +test3419 Q0 9295510 20 12.597919 Anserini +test3419 Q0 6224596 21 12.470398 Anserini +test3419 Q0 4889205 22 12.470398 Anserini +test3419 Q0 7513342 23 12.457024 Anserini +test3419 Q0 16747420 24 12.339089 Anserini +test3419 Q0 4777693 25 12.318340 Anserini +test3419 Q0 20013776 26 12.288056 Anserini +test3419 Q0 20013777 27 12.263912 Anserini +test3419 Q0 279780 28 12.228964 Anserini +test3419 Q0 4232166 29 12.212381 Anserini +test3419 Q0 385079 30 12.114538 Anserini +test342 Q0 1584792 1 13.979270 Anserini +test342 Q0 1584789 2 13.220835 Anserini +test342 Q0 1584804 3 13.014807 Anserini +test342 Q0 1584867 4 12.512918 Anserini +test342 Q0 1584880 5 12.449073 Anserini +test342 Q0 1584866 6 12.254728 Anserini +test342 Q0 15991795 7 12.100847 Anserini +test342 Q0 1584791 8 11.732514 Anserini +test342 Q0 1584877 9 11.724762 Anserini +test342 Q0 1584878 10 11.724762 Anserini +test342 Q0 1584863 11 11.402388 Anserini +test342 Q0 1584793 12 11.351753 Anserini +test342 Q0 1584876 13 11.296360 Anserini +test342 Q0 11489633 14 11.252997 Anserini +test342 Q0 1584790 15 11.218448 Anserini +test342 Q0 17863507 16 11.140726 Anserini +test342 Q0 1283087 17 11.139614 Anserini +test342 Q0 12735850 18 11.094310 Anserini +test342 Q0 4138220 19 10.803802 Anserini +test342 Q0 9889093 20 10.769021 Anserini +test342 Q0 15991797 21 10.688481 Anserini +test342 Q0 7923541 22 10.626248 Anserini +test342 Q0 10445304 23 10.609176 Anserini +test342 Q0 10445307 24 10.609176 Anserini +test342 Q0 13736698 25 10.590765 Anserini +test342 Q0 8978391 26 10.546739 Anserini +test342 Q0 1584801 27 10.504276 Anserini +test342 Q0 1584873 28 10.424431 Anserini +test342 Q0 3330492 29 10.415602 Anserini +test342 Q0 12771492 30 10.308019 Anserini +test3420 Q0 11931731 1 10.209747 Anserini +test3420 Q0 12213747 2 9.968800 Anserini +test3420 Q0 8024038 3 9.433131 Anserini +test3420 Q0 16078641 4 9.306929 Anserini +test3420 Q0 769777 5 9.208437 Anserini +test3420 Q0 2414413 6 9.149001 Anserini +test3420 Q0 12213753 7 9.141461 Anserini +test3420 Q0 20049106 8 9.139174 Anserini +test3420 Q0 11802254 9 8.929874 Anserini +test3420 Q0 5358735 10 8.896974 Anserini +test3420 Q0 8454713 11 8.874342 Anserini +test3420 Q0 6142375 12 8.799908 Anserini +test3420 Q0 20778620 13 8.735939 Anserini +test3420 Q0 5207724 14 8.697357 Anserini +test3420 Q0 2342906 15 8.695966 Anserini +test3420 Q0 3942816 16 8.609776 Anserini +test3420 Q0 12558172 17 8.578678 Anserini +test3420 Q0 5825124 18 8.565510 Anserini +test3420 Q0 806031 19 8.542184 Anserini +test3420 Q0 3119306 20 8.522051 Anserini +test3420 Q0 19443595 21 8.504263 Anserini +test3420 Q0 9832988 22 8.464586 Anserini +test3420 Q0 5207727 23 8.452709 Anserini +test3420 Q0 10857057 24 8.341186 Anserini +test3420 Q0 12506395 25 8.329167 Anserini +test3420 Q0 2551869 26 8.287052 Anserini +test3420 Q0 11931730 27 8.240829 Anserini +test3420 Q0 7783558 28 8.230540 Anserini +test3420 Q0 12213774 29 8.197378 Anserini +test3420 Q0 2805127 30 8.197378 Anserini +test3421 Q0 12435364 1 18.582512 Anserini +test3421 Q0 12435374 2 18.582512 Anserini +test3421 Q0 12435369 3 16.189060 Anserini +test3421 Q0 12435372 4 15.387363 Anserini +test3421 Q0 12435370 5 13.926803 Anserini +test3421 Q0 15589922 6 13.884104 Anserini +test3421 Q0 4000291 7 13.693997 Anserini +test3421 Q0 3756928 8 12.923615 Anserini +test3421 Q0 13793560 9 12.864367 Anserini +test3421 Q0 13381291 10 12.864367 Anserini +test3421 Q0 3847946 11 12.662985 Anserini +test3421 Q0 5662857 12 12.659405 Anserini +test3421 Q0 18405901 13 12.632726 Anserini +test3421 Q0 15697131 14 12.602270 Anserini +test3421 Q0 10884360 15 12.512964 Anserini +test3421 Q0 15697128 16 12.493119 Anserini +test3421 Q0 12435373 17 12.489506 Anserini +test3421 Q0 20770618 18 12.295979 Anserini +test3421 Q0 13381292 19 12.158779 Anserini +test3421 Q0 13793561 20 12.158779 Anserini +test3421 Q0 12435366 21 12.145570 Anserini +test3421 Q0 1683441 22 12.142252 Anserini +test3421 Q0 13301988 23 12.033076 Anserini +test3421 Q0 5871294 24 12.006985 Anserini +test3421 Q0 1646948 25 12.001177 Anserini +test3421 Q0 3829381 26 11.993499 Anserini +test3421 Q0 6806293 27 11.841711 Anserini +test3421 Q0 344577 28 11.768989 Anserini +test3421 Q0 904905 29 11.751740 Anserini +test3421 Q0 10147739 30 11.711267 Anserini +test3422 Q0 4363559 1 14.445582 Anserini +test3422 Q0 4363551 2 14.404425 Anserini +test3422 Q0 20085667 3 14.251976 Anserini +test3422 Q0 18279622 4 14.154303 Anserini +test3422 Q0 679538 5 13.786510 Anserini +test3422 Q0 520186 6 13.742147 Anserini +test3422 Q0 181344 7 13.586593 Anserini +test3422 Q0 679551 8 13.553848 Anserini +test3422 Q0 181306 9 13.508599 Anserini +test3422 Q0 679607 10 13.486458 Anserini +test3422 Q0 6450688 11 13.327620 Anserini +test3422 Q0 3751138 12 13.325515 Anserini +test3422 Q0 3751131 13 13.220931 Anserini +test3422 Q0 4199449 14 13.173378 Anserini +test3422 Q0 8585259 15 13.102965 Anserini +test3422 Q0 3218966 16 12.915576 Anserini +test3422 Q0 5226541 17 12.913774 Anserini +test3422 Q0 9111908 18 12.887989 Anserini +test3422 Q0 19000319 19 12.839443 Anserini +test3422 Q0 2816590 20 12.691105 Anserini +test3422 Q0 679570 21 12.654573 Anserini +test3422 Q0 14912804 22 12.353684 Anserini +test3422 Q0 18279621 23 12.324927 Anserini +test3422 Q0 16428787 24 12.314108 Anserini +test3422 Q0 679586 25 12.218470 Anserini +test3422 Q0 1632593 26 12.091084 Anserini +test3422 Q0 14121510 27 12.077569 Anserini +test3422 Q0 19759715 28 12.023019 Anserini +test3422 Q0 18895076 29 12.010396 Anserini +test3422 Q0 20182903 30 11.975626 Anserini +test3423 Q0 14679744 1 14.337621 Anserini +test3423 Q0 14862458 2 12.647306 Anserini +test3423 Q0 19983826 3 12.354511 Anserini +test3423 Q0 18341471 4 12.186879 Anserini +test3423 Q0 14679751 5 11.905022 Anserini +test3423 Q0 14679739 6 11.855900 Anserini +test3423 Q0 20729228 7 11.802004 Anserini +test3423 Q0 14862457 8 11.760610 Anserini +test3423 Q0 14679738 9 11.682227 Anserini +test3423 Q0 17272459 10 11.611184 Anserini +test3423 Q0 14679735 11 11.479427 Anserini +test3423 Q0 16875528 12 11.447737 Anserini +test3423 Q0 8870091 13 11.385522 Anserini +test3423 Q0 14862470 14 11.166135 Anserini +test3423 Q0 12156844 15 11.128104 Anserini +test3423 Q0 9184515 16 10.759624 Anserini +test3423 Q0 8491764 17 10.645152 Anserini +test3423 Q0 14862463 18 10.558092 Anserini +test3423 Q0 9451780 19 10.533091 Anserini +test3423 Q0 12156833 20 10.533091 Anserini +test3423 Q0 14679745 21 10.533091 Anserini +test3423 Q0 1579444 22 10.517132 Anserini +test3423 Q0 17272461 23 10.460601 Anserini +test3423 Q0 14679743 24 10.423363 Anserini +test3423 Q0 14661059 25 10.415293 Anserini +test3423 Q0 9357876 26 10.359200 Anserini +test3423 Q0 14862462 27 10.317764 Anserini +test3423 Q0 8491767 28 10.315898 Anserini +test3423 Q0 12156798 29 10.222576 Anserini +test3423 Q0 10603294 30 10.213884 Anserini +test3424 Q0 453740 1 19.938189 Anserini +test3424 Q0 6888035 2 18.764330 Anserini +test3424 Q0 95075 3 18.652512 Anserini +test3424 Q0 3304448 4 18.583332 Anserini +test3424 Q0 6888040 5 18.190826 Anserini +test3424 Q0 453725 6 18.023760 Anserini +test3424 Q0 6888050 7 17.981972 Anserini +test3424 Q0 453739 8 17.864798 Anserini +test3424 Q0 6888038 9 17.643215 Anserini +test3424 Q0 6888041 10 17.426966 Anserini +test3424 Q0 95043 11 17.234034 Anserini +test3424 Q0 95073 12 17.183044 Anserini +test3424 Q0 453729 13 17.071730 Anserini +test3424 Q0 6888031 14 17.023655 Anserini +test3424 Q0 95027 15 16.895620 Anserini +test3424 Q0 6888049 16 16.775326 Anserini +test3424 Q0 5275710 17 16.626921 Anserini +test3424 Q0 5097759 18 16.143364 Anserini +test3424 Q0 4631357 19 15.401171 Anserini +test3424 Q0 14301744 20 15.401171 Anserini +test3424 Q0 2046434 21 15.401171 Anserini +test3424 Q0 19245716 22 15.078995 Anserini +test3424 Q0 5097758 23 14.627082 Anserini +test3424 Q0 18947484 24 14.483681 Anserini +test3424 Q0 20158710 25 14.460031 Anserini +test3424 Q0 6888046 26 14.113880 Anserini +test3424 Q0 453732 27 13.916273 Anserini +test3424 Q0 5275709 28 13.667869 Anserini +test3424 Q0 4631346 29 13.523987 Anserini +test3424 Q0 3832854 30 13.383101 Anserini +test3425 Q0 5061156 1 12.282112 Anserini +test3425 Q0 425355 2 12.272949 Anserini +test3425 Q0 8524349 3 12.019088 Anserini +test3425 Q0 8524350 4 11.905758 Anserini +test3425 Q0 5834459 5 11.883522 Anserini +test3425 Q0 2158874 6 11.812434 Anserini +test3425 Q0 425361 7 11.808447 Anserini +test3425 Q0 425474 8 11.329799 Anserini +test3425 Q0 2158811 9 11.262319 Anserini +test3425 Q0 425462 10 11.198451 Anserini +test3425 Q0 2158871 11 11.184175 Anserini +test3425 Q0 2377607 12 11.003684 Anserini +test3425 Q0 2158869 13 10.758004 Anserini +test3425 Q0 2158868 14 10.698458 Anserini +test3425 Q0 2158821 15 10.688272 Anserini +test3425 Q0 5061157 16 10.617536 Anserini +test3425 Q0 2158872 17 10.592294 Anserini +test3425 Q0 2158822 18 10.532782 Anserini +test3425 Q0 8306255 19 10.521213 Anserini +test3425 Q0 8317656 20 10.514879 Anserini +test3425 Q0 425360 21 10.479353 Anserini +test3425 Q0 18201861 22 10.274960 Anserini +test3425 Q0 9459596 23 10.201178 Anserini +test3425 Q0 10210970 24 10.201178 Anserini +test3425 Q0 2158818 25 10.198449 Anserini +test3425 Q0 5061162 26 10.135691 Anserini +test3425 Q0 425405 27 10.128608 Anserini +test3425 Q0 2158812 28 10.128608 Anserini +test3425 Q0 1635841 29 10.124039 Anserini +test3425 Q0 4620631 30 10.087431 Anserini +test3426 Q0 12979678 1 13.432396 Anserini +test3426 Q0 8184982 2 12.545546 Anserini +test3426 Q0 6067903 3 12.409545 Anserini +test3426 Q0 8156741 4 12.087736 Anserini +test3426 Q0 9197935 5 12.085072 Anserini +test3426 Q0 6293654 6 12.076047 Anserini +test3426 Q0 2294336 7 12.070775 Anserini +test3426 Q0 16051558 8 12.049627 Anserini +test3426 Q0 909093 9 12.043625 Anserini +test3426 Q0 2831 10 11.758560 Anserini +test3426 Q0 8341742 11 11.755826 Anserini +test3426 Q0 9278144 12 11.748116 Anserini +test3426 Q0 9197941 13 11.612931 Anserini +test3426 Q0 6234187 14 11.559010 Anserini +test3426 Q0 2655370 15 11.546235 Anserini +test3426 Q0 171619 16 11.543369 Anserini +test3426 Q0 1036706 17 11.415044 Anserini +test3426 Q0 12391107 18 11.400561 Anserini +test3426 Q0 9197931 19 11.309736 Anserini +test3426 Q0 9197954 20 11.273325 Anserini +test3426 Q0 16017059 21 11.240087 Anserini +test3426 Q0 262238 22 11.233243 Anserini +test3426 Q0 2939408 23 11.219438 Anserini +test3426 Q0 9278145 24 11.189511 Anserini +test3426 Q0 1325621 25 11.189511 Anserini +test3426 Q0 1566651 26 11.144195 Anserini +test3426 Q0 315771 27 11.135115 Anserini +test3426 Q0 648295 28 11.100596 Anserini +test3426 Q0 13284456 29 11.085167 Anserini +test3426 Q0 13470674 30 11.041685 Anserini +test3427 Q0 7217379 1 20.185106 Anserini +test3427 Q0 519789 2 19.520348 Anserini +test3427 Q0 8975497 3 19.465008 Anserini +test3427 Q0 8975463 4 19.391998 Anserini +test3427 Q0 519748 5 19.287025 Anserini +test3427 Q0 9474845 6 19.255724 Anserini +test3427 Q0 6318811 7 19.202286 Anserini +test3427 Q0 7217378 8 19.195919 Anserini +test3427 Q0 9474844 9 18.976511 Anserini +test3427 Q0 6055225 10 18.665171 Anserini +test3427 Q0 6055201 11 18.665171 Anserini +test3427 Q0 519749 12 18.602449 Anserini +test3427 Q0 8958082 13 18.441015 Anserini +test3427 Q0 8975464 14 18.433971 Anserini +test3427 Q0 1957508 15 18.341391 Anserini +test3427 Q0 4802778 16 17.858034 Anserini +test3427 Q0 519781 17 17.610514 Anserini +test3427 Q0 6015949 18 17.144136 Anserini +test3427 Q0 3325933 19 16.985231 Anserini +test3427 Q0 1807927 20 16.884626 Anserini +test3427 Q0 6812361 21 16.652029 Anserini +test3427 Q0 8612213 22 16.480589 Anserini +test3427 Q0 6318815 23 16.451822 Anserini +test3427 Q0 11372426 24 16.377470 Anserini +test3427 Q0 17092843 25 16.366150 Anserini +test3427 Q0 11133896 26 16.357063 Anserini +test3427 Q0 6318810 27 16.344738 Anserini +test3427 Q0 519757 28 16.241983 Anserini +test3427 Q0 8975467 29 16.134201 Anserini +test3427 Q0 519783 30 16.133917 Anserini +test3428 Q0 9466691 1 18.918552 Anserini +test3428 Q0 9466742 2 18.910639 Anserini +test3428 Q0 13620659 3 18.782284 Anserini +test3428 Q0 9243413 4 18.035826 Anserini +test3428 Q0 3670306 5 17.972107 Anserini +test3428 Q0 2921277 6 17.887085 Anserini +test3428 Q0 9470368 7 17.651342 Anserini +test3428 Q0 12175325 8 17.513189 Anserini +test3428 Q0 9466688 9 17.372143 Anserini +test3428 Q0 9470332 10 17.361996 Anserini +test3428 Q0 13311918 11 17.349798 Anserini +test3428 Q0 12175334 12 17.293606 Anserini +test3428 Q0 2921275 13 17.273554 Anserini +test3428 Q0 13620663 14 17.195593 Anserini +test3428 Q0 9212378 15 17.128061 Anserini +test3428 Q0 20582669 16 17.127174 Anserini +test3428 Q0 3670502 17 17.117626 Anserini +test3428 Q0 3670563 18 17.103937 Anserini +test3428 Q0 7241899 19 17.059427 Anserini +test3428 Q0 9466685 20 16.949301 Anserini +test3428 Q0 1900951 21 16.944311 Anserini +test3428 Q0 9468740 22 16.926249 Anserini +test3428 Q0 9471472 23 16.925560 Anserini +test3428 Q0 9243414 24 16.647476 Anserini +test3428 Q0 1900944 25 16.578699 Anserini +test3428 Q0 12234988 26 16.534477 Anserini +test3428 Q0 8036119 27 16.501974 Anserini +test3428 Q0 9465004 28 16.487488 Anserini +test3428 Q0 9897870 29 16.467915 Anserini +test3428 Q0 12839395 30 16.387093 Anserini +test3429 Q0 1168599 1 13.656454 Anserini +test3429 Q0 5764871 2 12.596788 Anserini +test3429 Q0 12428288 3 11.795564 Anserini +test3429 Q0 4398297 4 11.791179 Anserini +test3429 Q0 6758133 5 11.729889 Anserini +test3429 Q0 14452496 6 11.696430 Anserini +test3429 Q0 16061025 7 11.670426 Anserini +test3429 Q0 9432834 8 11.582365 Anserini +test3429 Q0 5804888 9 11.522573 Anserini +test3429 Q0 17252968 10 11.498686 Anserini +test3429 Q0 17120465 11 11.474177 Anserini +test3429 Q0 18115472 12 11.454305 Anserini +test3429 Q0 13036179 13 11.453187 Anserini +test3429 Q0 2394351 14 11.397031 Anserini +test3429 Q0 631465 15 11.325943 Anserini +test3429 Q0 13041884 16 11.210404 Anserini +test3429 Q0 12466139 17 11.179858 Anserini +test3429 Q0 19209893 18 11.147624 Anserini +test3429 Q0 2562487 19 11.032547 Anserini +test3429 Q0 8863609 20 11.025036 Anserini +test3429 Q0 12950671 21 11.020199 Anserini +test3429 Q0 304237 22 11.005544 Anserini +test3429 Q0 2080023 23 10.980232 Anserini +test3429 Q0 8507429 24 10.978023 Anserini +test3429 Q0 3105313 25 10.975930 Anserini +test3429 Q0 1646748 26 10.970670 Anserini +test3429 Q0 357847 27 10.940823 Anserini +test3429 Q0 15128263 28 10.894214 Anserini +test3429 Q0 14100500 29 10.872568 Anserini +test3429 Q0 3983957 30 10.869926 Anserini +test343 Q0 7323129 1 20.178785 Anserini +test343 Q0 756383 2 17.854145 Anserini +test343 Q0 3830272 3 17.807158 Anserini +test343 Q0 20301726 4 17.383200 Anserini +test343 Q0 19849163 5 17.029705 Anserini +test343 Q0 3830281 6 16.951153 Anserini +test343 Q0 3830278 7 16.317106 Anserini +test343 Q0 3830279 8 16.278456 Anserini +test343 Q0 19849160 9 16.229523 Anserini +test343 Q0 7682287 10 16.222443 Anserini +test343 Q0 7777629 11 16.139652 Anserini +test343 Q0 6856412 12 15.893656 Anserini +test343 Q0 10710552 13 15.506376 Anserini +test343 Q0 3830280 14 15.347000 Anserini +test343 Q0 6856410 15 15.273008 Anserini +test343 Q0 5852432 16 15.216134 Anserini +test343 Q0 19574022 17 15.185319 Anserini +test343 Q0 8591106 18 15.137364 Anserini +test343 Q0 756347 19 15.066336 Anserini +test343 Q0 3760325 20 14.971813 Anserini +test343 Q0 17877793 21 14.847230 Anserini +test343 Q0 5732293 22 14.778645 Anserini +test343 Q0 6142498 23 14.561916 Anserini +test343 Q0 6216694 24 14.496923 Anserini +test343 Q0 3372580 25 14.442318 Anserini +test343 Q0 5799304 26 14.350644 Anserini +test343 Q0 7335877 27 14.350539 Anserini +test343 Q0 14440697 28 14.349915 Anserini +test343 Q0 12164180 29 14.328074 Anserini +test343 Q0 12164185 30 14.328074 Anserini +test3430 Q0 16531029 1 18.882238 Anserini +test3430 Q0 18022151 2 18.354931 Anserini +test3430 Q0 4811544 3 17.266207 Anserini +test3430 Q0 7310962 4 16.942776 Anserini +test3430 Q0 18022144 5 16.881496 Anserini +test3430 Q0 18022145 6 16.852600 Anserini +test3430 Q0 18848697 7 16.551392 Anserini +test3430 Q0 18842063 8 16.322044 Anserini +test3430 Q0 16812489 9 16.041008 Anserini +test3430 Q0 17314138 10 15.887900 Anserini +test3430 Q0 11301688 11 15.768122 Anserini +test3430 Q0 18742971 12 15.716197 Anserini +test3430 Q0 4811537 13 15.702620 Anserini +test3430 Q0 18742990 14 15.608352 Anserini +test3430 Q0 18842060 15 15.605122 Anserini +test3430 Q0 4811576 16 15.457308 Anserini +test3430 Q0 18848012 17 15.229080 Anserini +test3430 Q0 4811558 18 15.211627 Anserini +test3430 Q0 4811562 19 15.195029 Anserini +test3430 Q0 19523340 20 14.980556 Anserini +test3430 Q0 18742977 21 14.979292 Anserini +test3430 Q0 18022127 22 14.965405 Anserini +test3430 Q0 4811557 23 14.918004 Anserini +test3430 Q0 18761850 24 14.704473 Anserini +test3430 Q0 17314140 25 14.651393 Anserini +test3430 Q0 10931006 26 14.622060 Anserini +test3430 Q0 18022156 27 14.592044 Anserini +test3430 Q0 4811569 28 14.582855 Anserini +test3430 Q0 19523341 29 14.568400 Anserini +test3430 Q0 18747416 30 14.533751 Anserini +test3431 Q0 1280345 1 14.601498 Anserini +test3431 Q0 1280346 2 13.639455 Anserini +test3431 Q0 8487397 3 13.352289 Anserini +test3431 Q0 8487398 4 13.352289 Anserini +test3431 Q0 8487396 5 13.213192 Anserini +test3431 Q0 11497304 6 11.856096 Anserini +test3431 Q0 5487277 7 11.592116 Anserini +test3431 Q0 16572150 8 11.528823 Anserini +test3431 Q0 3445204 9 11.428303 Anserini +test3431 Q0 7291862 10 11.225948 Anserini +test3431 Q0 8452356 11 10.788687 Anserini +test3431 Q0 5204118 12 10.638930 Anserini +test3431 Q0 5204141 13 10.554359 Anserini +test3431 Q0 18370503 14 10.490372 Anserini +test3431 Q0 7448481 15 10.436599 Anserini +test3431 Q0 761627 16 10.426356 Anserini +test3431 Q0 19341263 17 10.386560 Anserini +test3431 Q0 3953202 18 10.359347 Anserini +test3431 Q0 487326 19 10.222034 Anserini +test3431 Q0 18331652 20 10.156562 Anserini +test3431 Q0 1280347 21 10.133089 Anserini +test3431 Q0 18411564 22 10.125859 Anserini +test3431 Q0 8344541 23 10.036399 Anserini +test3431 Q0 18600386 24 9.986441 Anserini +test3431 Q0 1357528 25 9.959424 Anserini +test3431 Q0 15161729 26 9.942345 Anserini +test3431 Q0 13870438 27 9.925760 Anserini +test3431 Q0 140562 28 9.913458 Anserini +test3431 Q0 1867772 29 9.899446 Anserini +test3431 Q0 19949261 30 9.881483 Anserini +test3432 Q0 13675485 1 12.235535 Anserini +test3432 Q0 13675483 2 12.157417 Anserini +test3432 Q0 10834490 3 12.082016 Anserini +test3432 Q0 110960 4 11.453566 Anserini +test3432 Q0 10834489 5 11.409750 Anserini +test3432 Q0 18314706 6 11.364661 Anserini +test3432 Q0 2181757 7 11.177547 Anserini +test3432 Q0 13420903 8 11.072022 Anserini +test3432 Q0 14986705 9 11.035997 Anserini +test3432 Q0 8112726 10 10.975150 Anserini +test3432 Q0 12650230 11 10.966861 Anserini +test3432 Q0 12229007 12 10.895519 Anserini +test3432 Q0 12229017 13 10.879795 Anserini +test3432 Q0 15094054 14 10.841544 Anserini +test3432 Q0 15094058 15 10.797790 Anserini +test3432 Q0 13980529 16 10.763154 Anserini +test3432 Q0 10921571 17 10.706220 Anserini +test3432 Q0 13980541 18 10.555754 Anserini +test3432 Q0 2387412 19 10.544887 Anserini +test3432 Q0 3405250 20 10.511769 Anserini +test3432 Q0 12192052 21 10.473592 Anserini +test3432 Q0 18236902 22 10.470636 Anserini +test3432 Q0 6524795 23 10.467022 Anserini +test3432 Q0 6558453 24 10.457600 Anserini +test3432 Q0 5844153 25 10.457191 Anserini +test3432 Q0 14896471 26 10.457191 Anserini +test3432 Q0 20043555 27 10.331697 Anserini +test3432 Q0 20624219 28 10.239668 Anserini +test3432 Q0 133947 29 10.139615 Anserini +test3432 Q0 12342918 30 10.114163 Anserini +test3433 Q0 96549 1 20.013439 Anserini +test3433 Q0 7780929 2 18.994692 Anserini +test3433 Q0 385514 3 18.112885 Anserini +test3433 Q0 385548 4 17.738476 Anserini +test3433 Q0 805856 5 17.454067 Anserini +test3433 Q0 2908257 6 17.182636 Anserini +test3433 Q0 10635423 7 17.172861 Anserini +test3433 Q0 385547 8 17.046381 Anserini +test3433 Q0 958959 9 17.022123 Anserini +test3433 Q0 12727698 10 16.990395 Anserini +test3433 Q0 96552 11 16.953159 Anserini +test3433 Q0 2284554 12 16.857700 Anserini +test3433 Q0 245909 13 16.801731 Anserini +test3433 Q0 8641363 14 16.668308 Anserini +test3433 Q0 96566 15 16.593029 Anserini +test3433 Q0 245979 16 16.587011 Anserini +test3433 Q0 245966 17 16.578632 Anserini +test3433 Q0 7320828 18 16.335585 Anserini +test3433 Q0 2284539 19 16.048315 Anserini +test3433 Q0 3873149 20 16.026218 Anserini +test3433 Q0 96539 21 16.016827 Anserini +test3433 Q0 96544 22 15.981020 Anserini +test3433 Q0 2945277 23 15.921562 Anserini +test3433 Q0 1413613 24 15.916142 Anserini +test3433 Q0 96532 25 15.866040 Anserini +test3433 Q0 965891 26 15.828318 Anserini +test3433 Q0 12727697 27 15.817222 Anserini +test3433 Q0 1860268 28 15.816028 Anserini +test3433 Q0 15313869 29 15.680181 Anserini +test3433 Q0 2040582 30 15.658854 Anserini +test3434 Q0 5104085 1 13.141454 Anserini +test3434 Q0 5104082 2 10.861913 Anserini +test3434 Q0 7420012 3 10.727119 Anserini +test3434 Q0 12424298 4 10.718395 Anserini +test3434 Q0 15978231 5 10.680822 Anserini +test3434 Q0 6772759 6 10.603256 Anserini +test3434 Q0 15978227 7 10.527568 Anserini +test3434 Q0 5104081 8 10.444854 Anserini +test3434 Q0 4396703 9 10.442728 Anserini +test3434 Q0 17060864 10 10.366782 Anserini +test3434 Q0 7280595 11 10.262481 Anserini +test3434 Q0 18104863 12 10.203167 Anserini +test3434 Q0 18435120 13 10.201687 Anserini +test3434 Q0 9859812 14 10.177549 Anserini +test3434 Q0 8983876 15 10.157240 Anserini +test3434 Q0 16471645 16 10.095921 Anserini +test3434 Q0 17103803 17 10.056288 Anserini +test3434 Q0 19106049 18 10.042725 Anserini +test3434 Q0 18241184 19 9.849340 Anserini +test3434 Q0 6116122 20 9.817251 Anserini +test3434 Q0 11135867 21 9.779443 Anserini +test3434 Q0 19386821 22 9.772393 Anserini +test3434 Q0 7280592 23 9.709917 Anserini +test3434 Q0 516060 24 9.700338 Anserini +test3434 Q0 10984300 25 9.641844 Anserini +test3434 Q0 14986143 26 9.641844 Anserini +test3434 Q0 16687876 27 9.627838 Anserini +test3434 Q0 7146764 28 9.614147 Anserini +test3434 Q0 20295323 29 9.581720 Anserini +test3434 Q0 20766865 30 9.568663 Anserini +test3435 Q0 15670288 1 11.202760 Anserini +test3435 Q0 611772 2 10.933301 Anserini +test3435 Q0 43630 3 10.783820 Anserini +test3435 Q0 982880 4 10.771440 Anserini +test3435 Q0 6895314 5 10.696347 Anserini +test3435 Q0 3858738 6 10.661464 Anserini +test3435 Q0 99262 7 10.642611 Anserini +test3435 Q0 10940525 8 10.585571 Anserini +test3435 Q0 20316110 9 10.440685 Anserini +test3435 Q0 17758115 10 10.325614 Anserini +test3435 Q0 2147507 11 10.234800 Anserini +test3435 Q0 8998605 12 10.160870 Anserini +test3435 Q0 262272 13 10.103036 Anserini +test3435 Q0 6124100 14 10.096976 Anserini +test3435 Q0 709463 15 10.009092 Anserini +test3435 Q0 20302294 16 9.860695 Anserini +test3435 Q0 14583165 17 9.834450 Anserini +test3435 Q0 1882424 18 9.832799 Anserini +test3435 Q0 5280962 19 9.760292 Anserini +test3435 Q0 20424436 20 9.724103 Anserini +test3435 Q0 982859 21 9.698965 Anserini +test3435 Q0 3858757 22 9.694448 Anserini +test3435 Q0 4821195 23 9.689528 Anserini +test3435 Q0 11686059 24 9.674340 Anserini +test3435 Q0 9427190 25 9.661738 Anserini +test3435 Q0 9427191 26 9.661738 Anserini +test3435 Q0 78823 27 9.645628 Anserini +test3435 Q0 16186271 28 9.612028 Anserini +test3435 Q0 1362929 29 9.595114 Anserini +test3435 Q0 7168630 30 9.573532 Anserini +test3436 Q0 4828029 1 20.831173 Anserini +test3436 Q0 4828030 2 20.831173 Anserini +test3436 Q0 17779578 3 20.679770 Anserini +test3436 Q0 4828024 4 20.281006 Anserini +test3436 Q0 4828023 5 20.025599 Anserini +test3436 Q0 4828026 6 19.914057 Anserini +test3436 Q0 20820565 7 19.654106 Anserini +test3436 Q0 19064790 8 19.599970 Anserini +test3436 Q0 19064783 9 19.599970 Anserini +test3436 Q0 20819585 10 19.599970 Anserini +test3436 Q0 20820559 11 19.599970 Anserini +test3436 Q0 20820566 12 19.599970 Anserini +test3436 Q0 6243162 13 19.599768 Anserini +test3436 Q0 20819589 14 19.417933 Anserini +test3436 Q0 11538911 15 19.409849 Anserini +test3436 Q0 4828014 16 19.331369 Anserini +test3436 Q0 4828011 17 19.242073 Anserini +test3436 Q0 9923315 18 19.190210 Anserini +test3436 Q0 4828009 19 18.941288 Anserini +test3436 Q0 4828031 20 18.941288 Anserini +test3436 Q0 17779581 21 18.931580 Anserini +test3436 Q0 14944349 22 18.794579 Anserini +test3436 Q0 6243161 23 18.782322 Anserini +test3436 Q0 19064789 24 18.761126 Anserini +test3436 Q0 17779577 25 18.709806 Anserini +test3436 Q0 17779579 26 18.544876 Anserini +test3436 Q0 12043070 27 18.329256 Anserini +test3436 Q0 6243159 28 18.008963 Anserini +test3436 Q0 17779576 29 17.991110 Anserini +test3436 Q0 17779586 30 17.991110 Anserini +test3437 Q0 5635168 1 9.980283 Anserini +test3437 Q0 8434733 2 9.690489 Anserini +test3437 Q0 6577407 3 9.630424 Anserini +test3437 Q0 11285228 4 9.516034 Anserini +test3437 Q0 12570451 5 9.207882 Anserini +test3437 Q0 5744355 6 9.081285 Anserini +test3437 Q0 19873356 7 9.075521 Anserini +test3437 Q0 9554162 8 9.063545 Anserini +test3437 Q0 16369161 9 9.005980 Anserini +test3437 Q0 317841 10 8.888110 Anserini +test3437 Q0 5572634 11 8.859732 Anserini +test3437 Q0 13058877 12 8.844193 Anserini +test3437 Q0 8092820 13 8.817962 Anserini +test3437 Q0 417220 14 8.797278 Anserini +test3437 Q0 7745015 15 8.734752 Anserini +test3437 Q0 3705904 16 8.725163 Anserini +test3437 Q0 16903359 17 8.713101 Anserini +test3437 Q0 10956817 18 8.645352 Anserini +test3437 Q0 15340121 19 8.645310 Anserini +test3437 Q0 16737323 20 8.628325 Anserini +test3437 Q0 3876447 21 8.586496 Anserini +test3437 Q0 20545644 22 8.574259 Anserini +test3437 Q0 9017097 23 8.560694 Anserini +test3437 Q0 8734369 24 8.543047 Anserini +test3437 Q0 13592880 25 8.540110 Anserini +test3437 Q0 361678 26 8.517869 Anserini +test3437 Q0 12440799 27 8.439981 Anserini +test3437 Q0 7585848 28 8.425423 Anserini +test3437 Q0 592643 29 8.422787 Anserini +test3437 Q0 6364570 30 8.402308 Anserini +test3438 Q0 2615321 1 14.983645 Anserini +test3438 Q0 1711914 2 14.907832 Anserini +test3438 Q0 3140852 3 14.472744 Anserini +test3438 Q0 2615933 4 14.351355 Anserini +test3438 Q0 2467926 5 14.178205 Anserini +test3438 Q0 10410741 6 14.128979 Anserini +test3438 Q0 8156836 7 14.052336 Anserini +test3438 Q0 2615937 8 13.985012 Anserini +test3438 Q0 2577460 9 13.976058 Anserini +test3438 Q0 837116 10 13.928839 Anserini +test3438 Q0 14477165 11 13.851183 Anserini +test3438 Q0 1672666 12 13.824762 Anserini +test3438 Q0 8879539 13 13.800432 Anserini +test3438 Q0 2615190 14 13.712139 Anserini +test3438 Q0 837117 15 13.686199 Anserini +test3438 Q0 6930399 16 13.646660 Anserini +test3438 Q0 2615326 17 13.646660 Anserini +test3438 Q0 8162261 18 13.643481 Anserini +test3438 Q0 2458288 19 13.635399 Anserini +test3438 Q0 2458305 20 13.607931 Anserini +test3438 Q0 2615365 21 13.532475 Anserini +test3438 Q0 2616064 22 13.525845 Anserini +test3438 Q0 2615192 23 13.511690 Anserini +test3438 Q0 2615909 24 13.502975 Anserini +test3438 Q0 2567574 25 13.492867 Anserini +test3438 Q0 8051369 26 13.490740 Anserini +test3438 Q0 2577596 27 13.422757 Anserini +test3438 Q0 11454328 28 13.390926 Anserini +test3438 Q0 17173286 29 13.353401 Anserini +test3438 Q0 2479404 30 13.349186 Anserini +test3439 Q0 18467402 1 16.033321 Anserini +test3439 Q0 16228705 2 15.477155 Anserini +test3439 Q0 9802056 3 15.363385 Anserini +test3439 Q0 19694141 4 15.347518 Anserini +test3439 Q0 14762409 5 15.288262 Anserini +test3439 Q0 19208051 6 15.273718 Anserini +test3439 Q0 13811133 7 15.121574 Anserini +test3439 Q0 13811134 8 15.121574 Anserini +test3439 Q0 13183033 9 15.092650 Anserini +test3439 Q0 20142141 10 14.812366 Anserini +test3439 Q0 17869423 11 14.783144 Anserini +test3439 Q0 20763998 12 14.639429 Anserini +test3439 Q0 16228701 13 14.591251 Anserini +test3439 Q0 14287950 14 14.566284 Anserini +test3439 Q0 6675539 15 14.549521 Anserini +test3439 Q0 11274044 16 14.527977 Anserini +test3439 Q0 20467890 17 14.341622 Anserini +test3439 Q0 16333483 18 14.316861 Anserini +test3439 Q0 4927027 19 14.308157 Anserini +test3439 Q0 16246970 20 14.229803 Anserini +test3439 Q0 16887958 21 14.221491 Anserini +test3439 Q0 8904395 22 14.211506 Anserini +test3439 Q0 19697294 23 14.187635 Anserini +test3439 Q0 16887439 24 14.178906 Anserini +test3439 Q0 20142140 25 14.127380 Anserini +test3439 Q0 6675541 26 14.127380 Anserini +test3439 Q0 16091414 27 14.113352 Anserini +test3439 Q0 2552561 28 14.010014 Anserini +test3439 Q0 18923626 29 13.977078 Anserini +test3439 Q0 5153161 30 13.970466 Anserini +test344 Q0 11336581 1 12.620175 Anserini +test344 Q0 6987855 2 12.344735 Anserini +test344 Q0 11765464 3 12.317738 Anserini +test344 Q0 5678574 4 12.144106 Anserini +test344 Q0 20868157 5 11.819861 Anserini +test344 Q0 6571590 6 11.391649 Anserini +test344 Q0 721521 7 11.308480 Anserini +test344 Q0 2730491 8 11.269032 Anserini +test344 Q0 15260923 9 11.213254 Anserini +test344 Q0 6987856 10 11.132952 Anserini +test344 Q0 1537288 11 11.112841 Anserini +test344 Q0 1537291 12 11.112841 Anserini +test344 Q0 19187557 13 11.061925 Anserini +test344 Q0 2730486 14 11.027191 Anserini +test344 Q0 6571594 15 10.981715 Anserini +test344 Q0 9532639 16 10.963863 Anserini +test344 Q0 10336137 17 10.888915 Anserini +test344 Q0 10829782 18 10.870112 Anserini +test344 Q0 6915584 19 10.870112 Anserini +test344 Q0 15432961 20 10.778783 Anserini +test344 Q0 7539200 21 10.772078 Anserini +test344 Q0 2730480 22 10.733407 Anserini +test344 Q0 10703998 23 10.718966 Anserini +test344 Q0 19314915 24 10.692396 Anserini +test344 Q0 2730490 25 10.680696 Anserini +test344 Q0 13457259 26 10.672255 Anserini +test344 Q0 1471617 27 10.612701 Anserini +test344 Q0 5651418 28 10.531351 Anserini +test344 Q0 14869632 29 10.514659 Anserini +test344 Q0 900229 30 10.499284 Anserini +test3440 Q0 8511751 1 15.656259 Anserini +test3440 Q0 20201972 2 15.063787 Anserini +test3440 Q0 6947724 3 15.011648 Anserini +test3440 Q0 11786952 4 14.869884 Anserini +test3440 Q0 8511750 5 14.626119 Anserini +test3440 Q0 2581267 6 14.613913 Anserini +test3440 Q0 4348989 7 14.446889 Anserini +test3440 Q0 1614100 8 14.443581 Anserini +test3440 Q0 8088426 9 14.233084 Anserini +test3440 Q0 1415095 10 14.089363 Anserini +test3440 Q0 17853826 11 13.675370 Anserini +test3440 Q0 14359421 12 13.645855 Anserini +test3440 Q0 2120554 13 13.480969 Anserini +test3440 Q0 10152174 14 13.476838 Anserini +test3440 Q0 9210490 15 13.475296 Anserini +test3440 Q0 723331 16 13.439304 Anserini +test3440 Q0 4840974 17 13.401374 Anserini +test3440 Q0 7464442 18 13.345238 Anserini +test3440 Q0 4367468 19 13.308516 Anserini +test3440 Q0 3149331 20 13.263232 Anserini +test3440 Q0 413322 21 13.199672 Anserini +test3440 Q0 12997627 22 13.199672 Anserini +test3440 Q0 9553861 23 13.181057 Anserini +test3440 Q0 13009200 24 13.086487 Anserini +test3440 Q0 17560344 25 13.070184 Anserini +test3440 Q0 7144314 26 13.055859 Anserini +test3440 Q0 18161048 27 12.980495 Anserini +test3440 Q0 20554333 28 12.961766 Anserini +test3440 Q0 3735010 29 12.919979 Anserini +test3440 Q0 15434453 30 12.889732 Anserini +test3441 Q0 7461850 1 12.463938 Anserini +test3441 Q0 15044440 2 12.160709 Anserini +test3441 Q0 15044438 3 11.535930 Anserini +test3441 Q0 15823424 4 11.108269 Anserini +test3441 Q0 13959955 5 10.903276 Anserini +test3441 Q0 13959953 6 10.903276 Anserini +test3441 Q0 7461851 7 10.873586 Anserini +test3441 Q0 15823429 8 10.757843 Anserini +test3441 Q0 15823428 9 10.351526 Anserini +test3441 Q0 15044439 10 10.220594 Anserini +test3441 Q0 6148313 11 9.650122 Anserini +test3441 Q0 4550923 12 9.317431 Anserini +test3441 Q0 5748274 13 9.213969 Anserini +test3441 Q0 17025310 14 9.213969 Anserini +test3441 Q0 11183391 15 9.042965 Anserini +test3441 Q0 19313387 16 9.036507 Anserini +test3441 Q0 3937782 17 9.036507 Anserini +test3441 Q0 9812581 18 9.024604 Anserini +test3441 Q0 7764222 19 9.023003 Anserini +test3441 Q0 15823426 20 8.860200 Anserini +test3441 Q0 15823427 21 8.857086 Anserini +test3441 Q0 15823425 22 8.734061 Anserini +test3441 Q0 11953374 23 8.732504 Anserini +test3441 Q0 19499098 24 8.721218 Anserini +test3441 Q0 8616483 25 8.673822 Anserini +test3441 Q0 15675980 26 8.635489 Anserini +test3441 Q0 5215762 27 8.614408 Anserini +test3441 Q0 16118776 28 8.614408 Anserini +test3441 Q0 11421383 29 8.597412 Anserini +test3441 Q0 1654628 30 8.517461 Anserini +test3442 Q0 13381445 1 19.297207 Anserini +test3442 Q0 13381444 2 19.200340 Anserini +test3442 Q0 19842860 3 17.948481 Anserini +test3442 Q0 19842861 4 17.948481 Anserini +test3442 Q0 19885914 5 17.428600 Anserini +test3442 Q0 1740252 6 17.245403 Anserini +test3442 Q0 86545 7 16.957937 Anserini +test3442 Q0 115857 8 16.891535 Anserini +test3442 Q0 1740266 9 16.874743 Anserini +test3442 Q0 8939858 10 16.842365 Anserini +test3442 Q0 19885916 11 16.842365 Anserini +test3442 Q0 4460036 12 16.576675 Anserini +test3442 Q0 86561 13 16.472954 Anserini +test3442 Q0 4460030 14 16.397469 Anserini +test3442 Q0 18953729 15 16.383493 Anserini +test3442 Q0 4292834 16 16.352003 Anserini +test3442 Q0 3961572 17 16.312220 Anserini +test3442 Q0 2253482 18 16.307886 Anserini +test3442 Q0 19252316 19 16.255234 Anserini +test3442 Q0 4855299 20 16.152760 Anserini +test3442 Q0 4292838 21 16.141384 Anserini +test3442 Q0 18953728 22 16.134291 Anserini +test3442 Q0 4292992 23 16.109514 Anserini +test3442 Q0 86550 24 16.081711 Anserini +test3442 Q0 4292996 25 16.072006 Anserini +test3442 Q0 4801607 26 16.065723 Anserini +test3442 Q0 7221176 27 16.048500 Anserini +test3442 Q0 14786682 28 16.028681 Anserini +test3442 Q0 7990454 29 16.000107 Anserini +test3442 Q0 3622162 30 15.996489 Anserini +test3443 Q0 18411205 1 14.393551 Anserini +test3443 Q0 18411213 2 14.185634 Anserini +test3443 Q0 20411745 3 13.402738 Anserini +test3443 Q0 18411218 4 13.228947 Anserini +test3443 Q0 11823971 5 13.086900 Anserini +test3443 Q0 18411212 6 12.344048 Anserini +test3443 Q0 20528241 7 12.033020 Anserini +test3443 Q0 3155564 8 11.695828 Anserini +test3443 Q0 20411738 9 11.664810 Anserini +test3443 Q0 20411746 10 11.609488 Anserini +test3443 Q0 18411216 11 11.480152 Anserini +test3443 Q0 18411194 12 11.420971 Anserini +test3443 Q0 18411206 13 11.362397 Anserini +test3443 Q0 18411214 14 11.362397 Anserini +test3443 Q0 18411219 15 11.362397 Anserini +test3443 Q0 20344291 16 11.362087 Anserini +test3443 Q0 1631600 17 11.304421 Anserini +test3443 Q0 20522864 18 11.168600 Anserini +test3443 Q0 18411209 19 11.168600 Anserini +test3443 Q0 14989366 20 10.936733 Anserini +test3443 Q0 18411202 21 10.894053 Anserini +test3443 Q0 15056788 22 10.892225 Anserini +test3443 Q0 18688911 23 10.855740 Anserini +test3443 Q0 17926599 24 10.567550 Anserini +test3443 Q0 18411195 25 10.257698 Anserini +test3443 Q0 18411211 26 10.257698 Anserini +test3443 Q0 20411741 27 10.186949 Anserini +test3443 Q0 20411742 28 10.186949 Anserini +test3443 Q0 18411208 29 10.186949 Anserini +test3443 Q0 20472564 30 10.163306 Anserini +test3444 Q0 10794559 1 15.140751 Anserini +test3444 Q0 7723100 2 12.307265 Anserini +test3444 Q0 10794577 3 11.641072 Anserini +test3444 Q0 6734966 4 11.451494 Anserini +test3444 Q0 6734969 5 11.401642 Anserini +test3444 Q0 5062036 6 11.217134 Anserini +test3444 Q0 8171456 7 11.211806 Anserini +test3444 Q0 12732494 8 11.197440 Anserini +test3444 Q0 2619768 9 10.720501 Anserini +test3444 Q0 2599523 10 10.545227 Anserini +test3444 Q0 17968544 11 10.497209 Anserini +test3444 Q0 4084353 12 10.216036 Anserini +test3444 Q0 10794570 13 10.201706 Anserini +test3444 Q0 5642369 14 10.072823 Anserini +test3444 Q0 7296666 15 9.921761 Anserini +test3444 Q0 8750042 16 9.919599 Anserini +test3444 Q0 10794574 17 9.906985 Anserini +test3444 Q0 17742207 18 9.906985 Anserini +test3444 Q0 9691373 19 9.902300 Anserini +test3444 Q0 10192940 20 9.869384 Anserini +test3444 Q0 9388290 21 9.805982 Anserini +test3444 Q0 17124928 22 9.757083 Anserini +test3444 Q0 12895464 23 9.747850 Anserini +test3444 Q0 2918393 24 9.675386 Anserini +test3444 Q0 13237332 25 9.662211 Anserini +test3444 Q0 18894105 26 9.653347 Anserini +test3444 Q0 5243817 27 9.618666 Anserini +test3444 Q0 15232281 28 9.614969 Anserini +test3444 Q0 2937497 29 9.614969 Anserini +test3444 Q0 14284174 30 9.563189 Anserini +test3445 Q0 6471774 1 10.598473 Anserini +test3445 Q0 4720877 2 10.145670 Anserini +test3445 Q0 7469949 3 10.114785 Anserini +test3445 Q0 17269203 4 9.973801 Anserini +test3445 Q0 17313156 5 9.952618 Anserini +test3445 Q0 9566871 6 9.863038 Anserini +test3445 Q0 4188534 7 9.815689 Anserini +test3445 Q0 7469948 8 9.809177 Anserini +test3445 Q0 6442684 9 9.652844 Anserini +test3445 Q0 13367449 10 9.130746 Anserini +test3445 Q0 14481410 11 9.073423 Anserini +test3445 Q0 17601599 12 9.029376 Anserini +test3445 Q0 14481402 13 8.992561 Anserini +test3445 Q0 8842566 14 8.859243 Anserini +test3445 Q0 18338029 15 8.829472 Anserini +test3445 Q0 3901333 16 8.829472 Anserini +test3445 Q0 11762465 17 8.769173 Anserini +test3445 Q0 15684617 18 8.730494 Anserini +test3445 Q0 6830085 19 8.606923 Anserini +test3445 Q0 4633030 20 8.604177 Anserini +test3445 Q0 14087303 21 8.597068 Anserini +test3445 Q0 6813037 22 8.564523 Anserini +test3445 Q0 17938113 23 8.537340 Anserini +test3445 Q0 14481425 24 8.516113 Anserini +test3445 Q0 11632755 25 8.495492 Anserini +test3445 Q0 15347263 26 8.494937 Anserini +test3445 Q0 7363498 27 8.442747 Anserini +test3445 Q0 16461839 28 8.442515 Anserini +test3445 Q0 14087302 29 8.336708 Anserini +test3445 Q0 5483008 30 8.336708 Anserini +test3446 Q0 12378556 1 18.787365 Anserini +test3446 Q0 1310744 2 17.267035 Anserini +test3446 Q0 11122975 3 16.904039 Anserini +test3446 Q0 12378228 4 15.987135 Anserini +test3446 Q0 12378272 5 15.917511 Anserini +test3446 Q0 691468 6 15.894125 Anserini +test3446 Q0 12232992 7 15.346298 Anserini +test3446 Q0 445192 8 15.212243 Anserini +test3446 Q0 12378276 9 15.148697 Anserini +test3446 Q0 4983405 10 15.106912 Anserini +test3446 Q0 12378293 11 15.068966 Anserini +test3446 Q0 12378557 12 15.002172 Anserini +test3446 Q0 9504734 13 14.791233 Anserini +test3446 Q0 521189 14 14.782118 Anserini +test3446 Q0 631776 15 14.703295 Anserini +test3446 Q0 521197 16 14.678738 Anserini +test3446 Q0 5416386 17 14.656475 Anserini +test3446 Q0 2475201 18 14.503536 Anserini +test3446 Q0 4996922 19 14.421636 Anserini +test3446 Q0 1310736 20 14.333774 Anserini +test3446 Q0 20183538 21 14.286956 Anserini +test3446 Q0 12378278 22 14.268028 Anserini +test3446 Q0 12721777 23 14.245080 Anserini +test3446 Q0 445191 24 14.199795 Anserini +test3446 Q0 1310752 25 14.050801 Anserini +test3446 Q0 8508508 26 13.997584 Anserini +test3446 Q0 3728355 27 13.889057 Anserini +test3446 Q0 770423 28 13.723524 Anserini +test3446 Q0 1676745 29 13.699163 Anserini +test3446 Q0 1577504 30 13.511026 Anserini +test3447 Q0 11998499 1 14.503366 Anserini +test3447 Q0 6157463 2 14.479692 Anserini +test3447 Q0 5274021 3 13.342981 Anserini +test3447 Q0 7957149 4 12.840761 Anserini +test3447 Q0 11308031 5 12.606112 Anserini +test3447 Q0 16061155 6 12.053445 Anserini +test3447 Q0 7957152 7 11.952062 Anserini +test3447 Q0 5118826 8 11.952062 Anserini +test3447 Q0 11736648 9 11.680923 Anserini +test3447 Q0 11801825 10 11.679630 Anserini +test3447 Q0 16796768 11 11.501325 Anserini +test3447 Q0 3562909 12 11.498237 Anserini +test3447 Q0 12622481 13 11.315294 Anserini +test3447 Q0 8571847 14 11.289339 Anserini +test3447 Q0 19413103 15 11.270458 Anserini +test3447 Q0 6722181 16 11.235550 Anserini +test3447 Q0 8021039 17 11.148674 Anserini +test3447 Q0 5274014 18 11.064929 Anserini +test3447 Q0 5077300 19 11.050588 Anserini +test3447 Q0 11810392 20 10.943586 Anserini +test3447 Q0 5274020 21 10.927293 Anserini +test3447 Q0 11888625 22 10.921979 Anserini +test3447 Q0 9061097 23 10.917168 Anserini +test3447 Q0 3448104 24 10.914865 Anserini +test3447 Q0 2792634 25 10.902998 Anserini +test3447 Q0 11750583 26 10.891037 Anserini +test3447 Q0 19413104 27 10.803349 Anserini +test3447 Q0 4384532 28 10.785354 Anserini +test3447 Q0 20785649 29 10.782843 Anserini +test3447 Q0 14470821 30 10.716780 Anserini +test3448 Q0 18174306 1 10.691352 Anserini +test3448 Q0 12367347 2 10.537242 Anserini +test3448 Q0 231011 3 10.282040 Anserini +test3448 Q0 3515761 4 10.145051 Anserini +test3448 Q0 10100111 5 10.121555 Anserini +test3448 Q0 1448086 6 9.744070 Anserini +test3448 Q0 3757110 7 9.715595 Anserini +test3448 Q0 12125457 8 9.706018 Anserini +test3448 Q0 5601227 9 9.649543 Anserini +test3448 Q0 7435324 10 9.564855 Anserini +test3448 Q0 466913 11 9.445787 Anserini +test3448 Q0 8392853 12 9.365458 Anserini +test3448 Q0 14335248 13 9.305410 Anserini +test3448 Q0 1918994 14 9.285016 Anserini +test3448 Q0 9377690 15 9.205502 Anserini +test3448 Q0 13534095 16 9.167561 Anserini +test3448 Q0 13178655 17 9.115594 Anserini +test3448 Q0 14575818 18 9.110312 Anserini +test3448 Q0 466870 19 9.101888 Anserini +test3448 Q0 13534091 20 9.077389 Anserini +test3448 Q0 4451333 21 9.063642 Anserini +test3448 Q0 12188774 22 9.062618 Anserini +test3448 Q0 14983247 23 9.016929 Anserini +test3448 Q0 11297300 24 8.989605 Anserini +test3448 Q0 17301180 25 8.960160 Anserini +test3448 Q0 4036614 26 8.929360 Anserini +test3448 Q0 466889 27 8.913899 Anserini +test3448 Q0 17256315 28 8.909531 Anserini +test3448 Q0 10793370 29 8.892109 Anserini +test3448 Q0 8366647 30 8.889341 Anserini +test3449 Q0 13379402 1 14.331324 Anserini +test3449 Q0 11499663 2 13.681767 Anserini +test3449 Q0 19069046 3 13.513388 Anserini +test3449 Q0 19069049 4 13.513388 Anserini +test3449 Q0 6234110 5 13.064959 Anserini +test3449 Q0 13379403 6 12.847586 Anserini +test3449 Q0 13441588 7 12.577329 Anserini +test3449 Q0 17192842 8 12.396939 Anserini +test3449 Q0 20776624 9 12.148432 Anserini +test3449 Q0 2644188 10 12.129005 Anserini +test3449 Q0 10350425 11 12.120148 Anserini +test3449 Q0 7070796 12 12.045933 Anserini +test3449 Q0 14935606 13 11.906590 Anserini +test3449 Q0 14935607 14 11.906590 Anserini +test3449 Q0 20442527 15 11.889012 Anserini +test3449 Q0 11375708 16 11.728038 Anserini +test3449 Q0 6234109 17 11.713333 Anserini +test3449 Q0 13642389 18 11.633284 Anserini +test3449 Q0 505367 19 11.596994 Anserini +test3449 Q0 15763332 20 11.569624 Anserini +test3449 Q0 7079118 21 11.529488 Anserini +test3449 Q0 6172612 22 11.516146 Anserini +test3449 Q0 504258 23 11.516146 Anserini +test3449 Q0 6234124 24 11.503025 Anserini +test3449 Q0 3532835 25 11.501136 Anserini +test3449 Q0 1438551 26 11.492558 Anserini +test3449 Q0 638197 27 11.441050 Anserini +test3449 Q0 12963570 28 11.401507 Anserini +test3449 Q0 13781273 29 11.387078 Anserini +test3449 Q0 20399522 30 11.381416 Anserini +test345 Q0 12022851 1 22.150721 Anserini +test345 Q0 686794 2 21.357811 Anserini +test345 Q0 2461043 3 20.885342 Anserini +test345 Q0 686611 4 19.981657 Anserini +test345 Q0 686798 5 19.788071 Anserini +test345 Q0 13166103 6 19.717422 Anserini +test345 Q0 2734156 7 19.632408 Anserini +test345 Q0 686601 8 19.499319 Anserini +test345 Q0 13166112 9 19.351612 Anserini +test345 Q0 686613 10 19.036465 Anserini +test345 Q0 686610 11 18.419703 Anserini +test345 Q0 12022843 12 18.384686 Anserini +test345 Q0 13166102 13 18.238230 Anserini +test345 Q0 3387330 14 18.146954 Anserini +test345 Q0 686606 15 18.146954 Anserini +test345 Q0 3387336 16 17.669983 Anserini +test345 Q0 686801 17 17.464949 Anserini +test345 Q0 2897614 18 17.361326 Anserini +test345 Q0 686608 19 17.330963 Anserini +test345 Q0 18000042 20 17.270363 Anserini +test345 Q0 11833647 21 16.941244 Anserini +test345 Q0 5950233 22 16.762760 Anserini +test345 Q0 13166079 23 16.691942 Anserini +test345 Q0 13166075 24 16.669041 Anserini +test345 Q0 13166116 25 16.662100 Anserini +test345 Q0 5950158 26 16.597353 Anserini +test345 Q0 11833650 27 16.567711 Anserini +test345 Q0 13166090 28 16.564499 Anserini +test345 Q0 13166121 29 16.534496 Anserini +test345 Q0 686799 30 16.454023 Anserini +test3450 Q0 1794448 1 16.517206 Anserini +test3450 Q0 1794452 2 14.410968 Anserini +test3450 Q0 1794454 3 14.383853 Anserini +test3450 Q0 2116981 4 13.805548 Anserini +test3450 Q0 6715709 5 13.721025 Anserini +test3450 Q0 3994575 6 13.357086 Anserini +test3450 Q0 1686143 7 12.889325 Anserini +test3450 Q0 15768204 8 12.726547 Anserini +test3450 Q0 6731008 9 12.645273 Anserini +test3450 Q0 6715712 10 12.523210 Anserini +test3450 Q0 6731002 11 12.413057 Anserini +test3450 Q0 2625035 12 12.338060 Anserini +test3450 Q0 2712285 13 12.327169 Anserini +test3450 Q0 8236846 14 12.121552 Anserini +test3450 Q0 8236843 15 12.081197 Anserini +test3450 Q0 2917779 16 12.072764 Anserini +test3450 Q0 6731003 17 12.023375 Anserini +test3450 Q0 6731007 18 12.023375 Anserini +test3450 Q0 1794453 19 12.002079 Anserini +test3450 Q0 6715705 20 11.956028 Anserini +test3450 Q0 6715706 21 11.734034 Anserini +test3450 Q0 10534754 22 11.621055 Anserini +test3450 Q0 715685 23 11.621055 Anserini +test3450 Q0 14915468 24 11.606265 Anserini +test3450 Q0 12600495 25 11.580711 Anserini +test3450 Q0 6715708 26 11.522306 Anserini +test3450 Q0 1708221 27 11.471842 Anserini +test3450 Q0 198097 28 11.449318 Anserini +test3450 Q0 14688063 29 11.435711 Anserini +test3450 Q0 9966438 30 10.958277 Anserini +test3451 Q0 6749862 1 14.772196 Anserini +test3451 Q0 4476780 2 14.008793 Anserini +test3451 Q0 20641545 3 13.669514 Anserini +test3451 Q0 6198447 4 13.623590 Anserini +test3451 Q0 6803822 5 13.588390 Anserini +test3451 Q0 2100143 6 13.571307 Anserini +test3451 Q0 6171776 7 13.447536 Anserini +test3451 Q0 6301545 8 13.426356 Anserini +test3451 Q0 7791965 9 13.352988 Anserini +test3451 Q0 334991 10 13.351630 Anserini +test3451 Q0 11196016 11 13.197430 Anserini +test3451 Q0 1593768 12 13.068119 Anserini +test3451 Q0 11631988 13 13.066101 Anserini +test3451 Q0 2100144 14 12.879930 Anserini +test3451 Q0 8878619 15 12.842839 Anserini +test3451 Q0 334982 16 12.722721 Anserini +test3451 Q0 8878622 17 12.721663 Anserini +test3451 Q0 13097648 18 12.699217 Anserini +test3451 Q0 334975 19 12.690184 Anserini +test3451 Q0 20560907 20 12.647092 Anserini +test3451 Q0 14553457 21 12.508546 Anserini +test3451 Q0 2666939 22 12.501044 Anserini +test3451 Q0 15724168 23 12.488604 Anserini +test3451 Q0 4108285 24 12.471249 Anserini +test3451 Q0 5464835 25 12.462017 Anserini +test3451 Q0 6198457 26 12.430552 Anserini +test3451 Q0 12270163 27 12.414931 Anserini +test3451 Q0 334996 28 12.367189 Anserini +test3451 Q0 6749860 29 12.359363 Anserini +test3451 Q0 2100147 30 12.324553 Anserini +test3452 Q0 17079299 1 15.088133 Anserini +test3452 Q0 4450419 2 14.524511 Anserini +test3452 Q0 19152711 3 14.402647 Anserini +test3452 Q0 19152710 4 13.819216 Anserini +test3452 Q0 2541394 5 13.731935 Anserini +test3452 Q0 2734472 6 13.426842 Anserini +test3452 Q0 17076841 7 13.261129 Anserini +test3452 Q0 7087558 8 13.258325 Anserini +test3452 Q0 1491940 9 13.143986 Anserini +test3452 Q0 2515108 10 13.125204 Anserini +test3452 Q0 18567776 11 13.122216 Anserini +test3452 Q0 18567794 12 13.122216 Anserini +test3452 Q0 7045167 13 13.102799 Anserini +test3452 Q0 17836781 14 13.032051 Anserini +test3452 Q0 17076867 15 12.967132 Anserini +test3452 Q0 16905592 16 12.966726 Anserini +test3452 Q0 18798746 17 12.620005 Anserini +test3452 Q0 394320 18 12.581212 Anserini +test3452 Q0 394974 19 12.579359 Anserini +test3452 Q0 4185088 20 12.556912 Anserini +test3452 Q0 18563346 21 12.450012 Anserini +test3452 Q0 17836780 22 12.444718 Anserini +test3452 Q0 397181 23 12.342481 Anserini +test3452 Q0 394316 24 12.331388 Anserini +test3452 Q0 394929 25 12.331388 Anserini +test3452 Q0 394623 26 12.305480 Anserini +test3452 Q0 2734467 27 12.300385 Anserini +test3452 Q0 7141013 28 12.266476 Anserini +test3452 Q0 14208566 29 12.230380 Anserini +test3452 Q0 7045162 30 12.223737 Anserini +test3453 Q0 6580073 1 12.821959 Anserini +test3453 Q0 6580072 2 12.092603 Anserini +test3453 Q0 4321683 3 11.544767 Anserini +test3453 Q0 9114147 4 11.499953 Anserini +test3453 Q0 6208385 5 11.226823 Anserini +test3453 Q0 8425477 6 11.040962 Anserini +test3453 Q0 13631373 7 10.148108 Anserini +test3453 Q0 8594110 8 10.038318 Anserini +test3453 Q0 17225728 9 9.961757 Anserini +test3453 Q0 671717 10 9.940440 Anserini +test3453 Q0 8787250 11 9.928998 Anserini +test3453 Q0 8787252 12 9.928998 Anserini +test3453 Q0 5372785 13 9.819471 Anserini +test3453 Q0 17233360 14 9.818313 Anserini +test3453 Q0 4321681 15 9.788844 Anserini +test3453 Q0 8962489 16 9.733886 Anserini +test3453 Q0 12418573 17 9.665250 Anserini +test3453 Q0 3465220 18 9.662982 Anserini +test3453 Q0 12149991 19 9.649764 Anserini +test3453 Q0 4321686 20 9.629622 Anserini +test3453 Q0 3512560 21 9.606077 Anserini +test3453 Q0 6546688 22 9.589353 Anserini +test3453 Q0 707065 23 9.583063 Anserini +test3453 Q0 19047830 24 9.581469 Anserini +test3453 Q0 20300248 25 9.567503 Anserini +test3453 Q0 8354867 26 9.556068 Anserini +test3453 Q0 10393351 27 9.540004 Anserini +test3453 Q0 4431622 28 9.523328 Anserini +test3453 Q0 707067 29 9.483771 Anserini +test3453 Q0 20953808 30 9.483771 Anserini +test3454 Q0 4941200 1 15.112394 Anserini +test3454 Q0 5008144 2 14.940420 Anserini +test3454 Q0 6492425 3 14.415869 Anserini +test3454 Q0 5107918 4 14.322478 Anserini +test3454 Q0 6233678 5 13.898748 Anserini +test3454 Q0 6233685 6 13.824362 Anserini +test3454 Q0 1181446 7 13.736570 Anserini +test3454 Q0 4296876 8 13.417285 Anserini +test3454 Q0 1181433 9 13.399417 Anserini +test3454 Q0 5849742 10 13.204204 Anserini +test3454 Q0 14215352 11 13.172019 Anserini +test3454 Q0 5725816 12 13.116735 Anserini +test3454 Q0 1181435 13 13.007154 Anserini +test3454 Q0 7141805 14 12.787796 Anserini +test3454 Q0 1181439 15 12.676758 Anserini +test3454 Q0 1181462 16 12.668937 Anserini +test3454 Q0 1181453 17 12.656602 Anserini +test3454 Q0 10999169 18 12.656602 Anserini +test3454 Q0 13234535 19 12.616908 Anserini +test3454 Q0 13676830 20 12.616908 Anserini +test3454 Q0 6492426 21 12.481590 Anserini +test3454 Q0 6492427 22 12.481590 Anserini +test3454 Q0 15643885 23 12.481590 Anserini +test3454 Q0 17968335 24 12.454061 Anserini +test3454 Q0 6289526 25 12.403962 Anserini +test3454 Q0 9345222 26 12.386691 Anserini +test3454 Q0 6414031 27 12.372051 Anserini +test3454 Q0 4756978 28 12.323381 Anserini +test3454 Q0 1181445 29 12.323381 Anserini +test3454 Q0 15994872 30 12.310482 Anserini +test3455 Q0 12927833 1 20.936743 Anserini +test3455 Q0 815766 2 20.494350 Anserini +test3455 Q0 12927800 3 20.460878 Anserini +test3455 Q0 7290528 4 19.993340 Anserini +test3455 Q0 16652099 5 19.496632 Anserini +test3455 Q0 7290545 6 19.105667 Anserini +test3455 Q0 7290535 7 19.091581 Anserini +test3455 Q0 960764 8 18.945311 Anserini +test3455 Q0 11288701 9 18.795391 Anserini +test3455 Q0 960687 10 18.789103 Anserini +test3455 Q0 17901391 11 18.632769 Anserini +test3455 Q0 12927807 12 18.596745 Anserini +test3455 Q0 7404054 13 18.585611 Anserini +test3455 Q0 19585378 14 18.571053 Anserini +test3455 Q0 13930448 15 18.476706 Anserini +test3455 Q0 960708 16 18.447334 Anserini +test3455 Q0 12927805 17 18.440765 Anserini +test3455 Q0 960705 18 18.415165 Anserini +test3455 Q0 11897863 19 18.400923 Anserini +test3455 Q0 40398 20 18.350603 Anserini +test3455 Q0 16758462 21 18.276684 Anserini +test3455 Q0 12927802 22 18.274366 Anserini +test3455 Q0 18330547 23 18.229738 Anserini +test3455 Q0 16758463 24 18.219296 Anserini +test3455 Q0 16758460 25 18.078506 Anserini +test3455 Q0 5571935 26 18.064152 Anserini +test3455 Q0 16142446 27 17.980494 Anserini +test3455 Q0 7290533 28 17.977991 Anserini +test3455 Q0 12137404 29 17.971308 Anserini +test3455 Q0 6888366 30 17.930063 Anserini +test3456 Q0 19235342 1 20.521717 Anserini +test3456 Q0 2109452 2 20.115065 Anserini +test3456 Q0 17981277 3 19.833931 Anserini +test3456 Q0 2109434 4 19.722803 Anserini +test3456 Q0 2109450 5 19.577293 Anserini +test3456 Q0 1274079 6 19.512730 Anserini +test3456 Q0 614699 7 19.455240 Anserini +test3456 Q0 16458785 8 19.039066 Anserini +test3456 Q0 2109449 9 18.784702 Anserini +test3456 Q0 2109316 10 18.575274 Anserini +test3456 Q0 3105828 11 18.384592 Anserini +test3456 Q0 2109463 12 18.213339 Anserini +test3456 Q0 9220745 13 17.854679 Anserini +test3456 Q0 10021971 14 17.738569 Anserini +test3456 Q0 3105814 15 17.665169 Anserini +test3456 Q0 2109466 16 17.134249 Anserini +test3456 Q0 11687949 17 17.104351 Anserini +test3456 Q0 117686 18 17.050301 Anserini +test3456 Q0 2109436 19 16.882572 Anserini +test3456 Q0 12844038 20 16.693367 Anserini +test3456 Q0 661434 21 16.659325 Anserini +test3456 Q0 15956268 22 16.394135 Anserini +test3456 Q0 19629356 23 16.360941 Anserini +test3456 Q0 1274123 24 16.205959 Anserini +test3456 Q0 2109464 25 16.167036 Anserini +test3456 Q0 1477793 26 15.969819 Anserini +test3456 Q0 614715 27 15.817131 Anserini +test3456 Q0 9521126 28 15.801704 Anserini +test3456 Q0 2109460 29 15.777248 Anserini +test3456 Q0 2965450 30 15.743659 Anserini +test3457 Q0 9415038 1 20.687757 Anserini +test3457 Q0 477689 2 20.610970 Anserini +test3457 Q0 9415037 3 19.301918 Anserini +test3457 Q0 7354802 4 18.113663 Anserini +test3457 Q0 173526 5 17.755011 Anserini +test3457 Q0 1304158 6 17.741327 Anserini +test3457 Q0 18085184 7 17.496176 Anserini +test3457 Q0 1304159 8 17.474958 Anserini +test3457 Q0 173518 9 17.152355 Anserini +test3457 Q0 12993877 10 16.798468 Anserini +test3457 Q0 1551740 11 15.943023 Anserini +test3457 Q0 2355492 12 15.911101 Anserini +test3457 Q0 278245 13 15.580658 Anserini +test3457 Q0 1551738 14 15.369287 Anserini +test3457 Q0 9564174 15 15.118656 Anserini +test3457 Q0 11497412 16 14.878729 Anserini +test3457 Q0 8341800 17 14.848312 Anserini +test3457 Q0 919742 18 14.772361 Anserini +test3457 Q0 16798079 19 14.704386 Anserini +test3457 Q0 1551737 20 14.634152 Anserini +test3457 Q0 1551714 21 14.170391 Anserini +test3457 Q0 1951729 22 14.161338 Anserini +test3457 Q0 448112 23 14.154768 Anserini +test3457 Q0 9854454 24 14.106483 Anserini +test3457 Q0 15133109 25 13.976492 Anserini +test3457 Q0 318998 26 13.953461 Anserini +test3457 Q0 1551735 27 13.929984 Anserini +test3457 Q0 278271 28 13.886607 Anserini +test3457 Q0 4140823 29 13.876306 Anserini +test3457 Q0 196650 30 13.839313 Anserini +test3458 Q0 7263010 1 10.925609 Anserini +test3458 Q0 1489356 2 10.880148 Anserini +test3458 Q0 800349 3 10.480096 Anserini +test3458 Q0 424919 4 10.188544 Anserini +test3458 Q0 10452068 5 10.131614 Anserini +test3458 Q0 424915 6 9.877434 Anserini +test3458 Q0 301178 7 9.876588 Anserini +test3458 Q0 13651819 8 9.856901 Anserini +test3458 Q0 11894613 9 9.783834 Anserini +test3458 Q0 7359651 10 9.705402 Anserini +test3458 Q0 7056560 11 9.599914 Anserini +test3458 Q0 12461543 12 9.591079 Anserini +test3458 Q0 16137181 13 9.580793 Anserini +test3458 Q0 457989 14 9.580232 Anserini +test3458 Q0 6908592 15 9.514143 Anserini +test3458 Q0 5753216 16 9.489038 Anserini +test3458 Q0 6059205 17 9.451727 Anserini +test3458 Q0 424912 18 9.358082 Anserini +test3458 Q0 1829178 19 9.293313 Anserini +test3458 Q0 2067372 20 9.271445 Anserini +test3458 Q0 4980736 21 9.266947 Anserini +test3458 Q0 2374282 22 9.265600 Anserini +test3458 Q0 6841307 23 9.241414 Anserini +test3458 Q0 800294 24 9.215206 Anserini +test3458 Q0 390848 25 9.198167 Anserini +test3458 Q0 10787911 26 9.142906 Anserini +test3458 Q0 5466266 27 9.129973 Anserini +test3458 Q0 6382465 28 9.077528 Anserini +test3458 Q0 5296344 29 9.035637 Anserini +test3458 Q0 4255228 30 9.012552 Anserini +test3459 Q0 5632563 1 15.551964 Anserini +test3459 Q0 15409482 2 13.322573 Anserini +test3459 Q0 12686984 3 12.998153 Anserini +test3459 Q0 12686986 4 12.894094 Anserini +test3459 Q0 17322437 5 12.762005 Anserini +test3459 Q0 5632555 6 12.732649 Anserini +test3459 Q0 15168059 7 12.609306 Anserini +test3459 Q0 2424914 8 12.553386 Anserini +test3459 Q0 882120 9 12.544835 Anserini +test3459 Q0 13406293 10 12.533024 Anserini +test3459 Q0 15409477 11 12.471416 Anserini +test3459 Q0 12368978 12 12.451070 Anserini +test3459 Q0 17322449 13 12.305658 Anserini +test3459 Q0 15409476 14 12.272055 Anserini +test3459 Q0 19589110 15 12.215710 Anserini +test3459 Q0 320818 16 12.203319 Anserini +test3459 Q0 12895583 17 12.181615 Anserini +test3459 Q0 17322433 18 12.154180 Anserini +test3459 Q0 15409478 19 12.121856 Anserini +test3459 Q0 10845766 20 12.097536 Anserini +test3459 Q0 13191589 21 12.077009 Anserini +test3459 Q0 12368936 22 11.951213 Anserini +test3459 Q0 15409479 23 11.891186 Anserini +test3459 Q0 16648868 24 11.852161 Anserini +test3459 Q0 320855 25 11.763385 Anserini +test3459 Q0 14863026 26 11.743288 Anserini +test3459 Q0 2708344 27 11.716324 Anserini +test3459 Q0 4036464 28 11.558908 Anserini +test3459 Q0 17322436 29 11.546234 Anserini +test3459 Q0 17322441 30 11.546234 Anserini +test346 Q0 20254141 1 16.780924 Anserini +test346 Q0 6695501 2 16.466375 Anserini +test346 Q0 17416729 3 16.258018 Anserini +test346 Q0 9849714 4 16.199255 Anserini +test346 Q0 2438213 5 15.968773 Anserini +test346 Q0 6509463 6 15.759049 Anserini +test346 Q0 836729 7 15.523740 Anserini +test346 Q0 3714063 8 15.424084 Anserini +test346 Q0 2155469 9 15.370621 Anserini +test346 Q0 19383863 10 15.359212 Anserini +test346 Q0 12240181 11 15.261230 Anserini +test346 Q0 5150043 12 15.191278 Anserini +test346 Q0 349096 13 15.147891 Anserini +test346 Q0 6805167 14 15.129773 Anserini +test346 Q0 2136642 15 15.072968 Anserini +test346 Q0 13529912 16 14.976190 Anserini +test346 Q0 12161924 17 14.970536 Anserini +test346 Q0 18638880 18 14.945932 Anserini +test346 Q0 20051547 19 14.945476 Anserini +test346 Q0 6805174 20 14.890746 Anserini +test346 Q0 11398173 21 14.878834 Anserini +test346 Q0 13529913 22 14.865242 Anserini +test346 Q0 13100669 23 14.838592 Anserini +test346 Q0 15180419 24 14.820814 Anserini +test346 Q0 20109194 25 14.755002 Anserini +test346 Q0 9115811 26 14.753225 Anserini +test346 Q0 13430738 27 14.741114 Anserini +test346 Q0 2138250 28 14.716975 Anserini +test346 Q0 20022530 29 14.715240 Anserini +test346 Q0 8384074 30 14.698397 Anserini +test3460 Q0 10681099 1 14.464953 Anserini +test3460 Q0 16431574 2 13.766005 Anserini +test3460 Q0 17632566 3 13.738027 Anserini +test3460 Q0 16511778 4 13.377638 Anserini +test3460 Q0 19319068 5 13.343161 Anserini +test3460 Q0 10453221 6 13.093849 Anserini +test3460 Q0 16511775 7 13.011500 Anserini +test3460 Q0 20533985 8 12.797100 Anserini +test3460 Q0 16511781 9 12.677074 Anserini +test3460 Q0 16511789 10 12.572870 Anserini +test3460 Q0 14588266 11 12.479229 Anserini +test3460 Q0 8798443 12 12.463293 Anserini +test3460 Q0 20528103 13 12.382765 Anserini +test3460 Q0 16511777 14 12.220215 Anserini +test3460 Q0 19580746 15 12.159924 Anserini +test3460 Q0 16511787 16 12.145470 Anserini +test3460 Q0 3425266 17 12.051363 Anserini +test3460 Q0 16431572 18 11.970867 Anserini +test3460 Q0 16437722 19 11.934669 Anserini +test3460 Q0 1701643 20 11.804028 Anserini +test3460 Q0 8798442 21 11.804028 Anserini +test3460 Q0 1466423 22 11.673375 Anserini +test3460 Q0 1466399 23 11.673375 Anserini +test3460 Q0 8955271 24 11.589528 Anserini +test3460 Q0 1716668 25 11.513121 Anserini +test3460 Q0 18104279 26 11.463053 Anserini +test3460 Q0 1466416 27 11.348874 Anserini +test3460 Q0 9683131 28 11.334892 Anserini +test3460 Q0 14551125 29 11.263700 Anserini +test3460 Q0 14220271 30 11.247483 Anserini +test3461 Q0 5039118 1 15.844623 Anserini +test3461 Q0 6919914 2 15.703361 Anserini +test3461 Q0 12637772 3 15.513315 Anserini +test3461 Q0 6947834 4 14.069846 Anserini +test3461 Q0 5733008 5 13.900228 Anserini +test3461 Q0 491527 6 13.728967 Anserini +test3461 Q0 491528 7 13.637228 Anserini +test3461 Q0 4911004 8 13.636064 Anserini +test3461 Q0 12672961 9 13.555823 Anserini +test3461 Q0 8570113 10 13.411031 Anserini +test3461 Q0 8570116 11 13.411031 Anserini +test3461 Q0 6919885 12 13.344259 Anserini +test3461 Q0 6919929 13 13.258857 Anserini +test3461 Q0 7676532 14 13.234516 Anserini +test3461 Q0 10680843 15 12.709854 Anserini +test3461 Q0 299601 16 12.709854 Anserini +test3461 Q0 6919996 17 12.697336 Anserini +test3461 Q0 11473611 18 12.629910 Anserini +test3461 Q0 6919992 19 12.559994 Anserini +test3461 Q0 6919898 20 12.509811 Anserini +test3461 Q0 6919919 21 12.455173 Anserini +test3461 Q0 430225 22 12.386006 Anserini +test3461 Q0 491509 23 12.177811 Anserini +test3461 Q0 491547 24 12.103397 Anserini +test3461 Q0 14887340 25 12.090292 Anserini +test3461 Q0 6919904 26 12.015174 Anserini +test3461 Q0 6982265 27 12.001044 Anserini +test3461 Q0 8606136 28 11.963677 Anserini +test3461 Q0 12659549 29 11.908916 Anserini +test3461 Q0 15395214 30 11.891645 Anserini +test3462 Q0 17971076 1 11.587194 Anserini +test3462 Q0 12387266 2 11.268497 Anserini +test3462 Q0 5998613 3 11.111535 Anserini +test3462 Q0 1946000 4 11.110422 Anserini +test3462 Q0 4500536 5 10.674978 Anserini +test3462 Q0 6521007 6 10.667353 Anserini +test3462 Q0 1945996 7 10.645711 Anserini +test3462 Q0 4300217 8 10.607517 Anserini +test3462 Q0 6012090 9 10.603316 Anserini +test3462 Q0 15100546 10 10.597746 Anserini +test3462 Q0 3077237 11 10.557372 Anserini +test3462 Q0 15169287 12 10.499118 Anserini +test3462 Q0 18206783 13 10.436432 Anserini +test3462 Q0 13026262 14 10.266139 Anserini +test3462 Q0 8937995 15 10.261616 Anserini +test3462 Q0 8938003 16 10.207240 Anserini +test3462 Q0 12320221 17 10.192503 Anserini +test3462 Q0 9046378 18 10.186744 Anserini +test3462 Q0 394986 19 10.120008 Anserini +test3462 Q0 20620831 20 10.116548 Anserini +test3462 Q0 17301085 21 10.094854 Anserini +test3462 Q0 17301077 22 10.094854 Anserini +test3462 Q0 14086620 23 10.074087 Anserini +test3462 Q0 4182635 24 10.068894 Anserini +test3462 Q0 13675246 25 10.060860 Anserini +test3462 Q0 9772302 26 10.030516 Anserini +test3462 Q0 5407726 27 10.025885 Anserini +test3462 Q0 5789147 28 10.019045 Anserini +test3462 Q0 7699454 29 10.014032 Anserini +test3462 Q0 1946007 30 10.007795 Anserini +test3463 Q0 15255827 1 24.846344 Anserini +test3463 Q0 15255830 2 24.846344 Anserini +test3463 Q0 15327012 3 24.846344 Anserini +test3463 Q0 15327022 4 24.846344 Anserini +test3463 Q0 15029963 5 24.720211 Anserini +test3463 Q0 15029972 6 24.720211 Anserini +test3463 Q0 15327018 7 24.595350 Anserini +test3463 Q0 15029966 8 23.557266 Anserini +test3463 Q0 15327015 9 22.390217 Anserini +test3463 Q0 15029968 10 22.390217 Anserini +test3463 Q0 15029971 11 22.390217 Anserini +test3463 Q0 13761999 12 22.390217 Anserini +test3463 Q0 15255829 13 22.236847 Anserini +test3463 Q0 13845755 14 22.085566 Anserini +test3463 Q0 13762110 15 22.085566 Anserini +test3463 Q0 9024508 16 21.240665 Anserini +test3463 Q0 3851389 17 20.472439 Anserini +test3463 Q0 16943772 18 20.256926 Anserini +test3463 Q0 1466692 19 20.256926 Anserini +test3463 Q0 15029967 20 19.668520 Anserini +test3463 Q0 19744034 21 18.233484 Anserini +test3463 Q0 2449572 22 18.041542 Anserini +test3463 Q0 13762086 23 18.041542 Anserini +test3463 Q0 20250490 24 18.041542 Anserini +test3463 Q0 4575842 25 17.853596 Anserini +test3463 Q0 15327020 26 17.818548 Anserini +test3463 Q0 2449571 27 17.793398 Anserini +test3463 Q0 1520492 28 17.793398 Anserini +test3463 Q0 6819559 29 17.644405 Anserini +test3463 Q0 9831697 30 17.618673 Anserini +test3464 Q0 10395300 1 13.835464 Anserini +test3464 Q0 7988655 2 13.826010 Anserini +test3464 Q0 11439346 3 12.925461 Anserini +test3464 Q0 18087070 4 12.774184 Anserini +test3464 Q0 3437724 5 12.745095 Anserini +test3464 Q0 18087072 6 12.742242 Anserini +test3464 Q0 16280440 7 12.739390 Anserini +test3464 Q0 12580655 8 12.681632 Anserini +test3464 Q0 3437712 9 12.530079 Anserini +test3464 Q0 17466992 10 12.523367 Anserini +test3464 Q0 4924830 11 12.521236 Anserini +test3464 Q0 19045631 12 12.446095 Anserini +test3464 Q0 11700377 13 12.400822 Anserini +test3464 Q0 14830264 14 12.400020 Anserini +test3464 Q0 14862715 15 12.220082 Anserini +test3464 Q0 15814030 16 12.094276 Anserini +test3464 Q0 19948690 17 11.939800 Anserini +test3464 Q0 7917796 18 11.864494 Anserini +test3464 Q0 4118934 19 11.842296 Anserini +test3464 Q0 5065452 20 11.781017 Anserini +test3464 Q0 19224661 21 11.766471 Anserini +test3464 Q0 13238123 22 11.762853 Anserini +test3464 Q0 8417309 23 11.693247 Anserini +test3464 Q0 7336036 24 11.638815 Anserini +test3464 Q0 11700378 25 11.631319 Anserini +test3464 Q0 15919844 26 11.620447 Anserini +test3464 Q0 9945321 27 11.575284 Anserini +test3464 Q0 5558650 28 11.569408 Anserini +test3464 Q0 4957659 29 11.568676 Anserini +test3464 Q0 17731998 30 11.561466 Anserini +test3465 Q0 473942 1 14.340808 Anserini +test3465 Q0 17104546 2 13.090329 Anserini +test3465 Q0 11991098 3 12.992373 Anserini +test3465 Q0 17104541 4 12.806944 Anserini +test3465 Q0 1271140 5 12.761347 Anserini +test3465 Q0 191358 6 12.647402 Anserini +test3465 Q0 5100600 7 12.530855 Anserini +test3465 Q0 18331272 8 12.420278 Anserini +test3465 Q0 8753081 9 12.343069 Anserini +test3465 Q0 1271134 10 12.330461 Anserini +test3465 Q0 7055948 11 12.320958 Anserini +test3465 Q0 3021503 12 12.244058 Anserini +test3465 Q0 17104542 13 12.096454 Anserini +test3465 Q0 191423 14 12.092940 Anserini +test3465 Q0 3021572 15 12.090368 Anserini +test3465 Q0 7827518 16 12.016545 Anserini +test3465 Q0 6348781 17 11.977962 Anserini +test3465 Q0 16180419 18 11.969254 Anserini +test3465 Q0 3429275 19 11.817157 Anserini +test3465 Q0 8907785 20 11.792793 Anserini +test3465 Q0 6621683 21 11.748879 Anserini +test3465 Q0 7434196 22 11.747786 Anserini +test3465 Q0 13486663 23 11.673864 Anserini +test3465 Q0 17938000 24 11.641638 Anserini +test3465 Q0 9557801 25 11.640240 Anserini +test3465 Q0 8028465 26 11.636787 Anserini +test3465 Q0 7566001 27 11.620943 Anserini +test3465 Q0 7827492 28 11.562779 Anserini +test3465 Q0 12108868 29 11.531348 Anserini +test3465 Q0 71164 30 11.521399 Anserini +test3466 Q0 864361 1 11.817073 Anserini +test3466 Q0 17570317 2 11.700063 Anserini +test3466 Q0 864359 3 11.411561 Anserini +test3466 Q0 864362 4 11.335116 Anserini +test3466 Q0 7544179 5 10.430196 Anserini +test3466 Q0 864346 6 10.426071 Anserini +test3466 Q0 864306 7 10.294394 Anserini +test3466 Q0 864315 8 10.079188 Anserini +test3466 Q0 1828971 9 9.894197 Anserini +test3466 Q0 11554116 10 9.615525 Anserini +test3466 Q0 15091198 11 9.539989 Anserini +test3466 Q0 864308 12 9.539989 Anserini +test3466 Q0 864352 13 9.539989 Anserini +test3466 Q0 864349 14 9.465675 Anserini +test3466 Q0 399906 15 9.379303 Anserini +test3466 Q0 15326664 16 9.342902 Anserini +test3466 Q0 5986852 17 9.290794 Anserini +test3466 Q0 864304 18 9.203799 Anserini +test3466 Q0 1823090 19 9.146196 Anserini +test3466 Q0 8307332 20 9.123742 Anserini +test3466 Q0 1829022 21 9.048958 Anserini +test3466 Q0 7819767 22 8.996747 Anserini +test3466 Q0 4517201 23 8.931033 Anserini +test3466 Q0 9057722 24 8.888670 Anserini +test3466 Q0 6090268 25 8.888670 Anserini +test3466 Q0 3952542 26 8.813645 Anserini +test3466 Q0 611572 27 8.762350 Anserini +test3466 Q0 419237 28 8.719876 Anserini +test3466 Q0 19938100 29 8.719876 Anserini +test3466 Q0 2344444 30 8.660899 Anserini +test3467 Q0 2551331 1 15.935802 Anserini +test3467 Q0 2045409 2 15.021650 Anserini +test3467 Q0 6955592 3 14.930738 Anserini +test3467 Q0 6052266 4 14.428862 Anserini +test3467 Q0 6955600 5 14.235125 Anserini +test3467 Q0 673428 6 14.222914 Anserini +test3467 Q0 673422 7 13.851653 Anserini +test3467 Q0 6052262 8 13.536774 Anserini +test3467 Q0 6052263 9 13.474495 Anserini +test3467 Q0 8413096 10 13.197491 Anserini +test3467 Q0 6955594 11 12.293030 Anserini +test3467 Q0 6955593 12 12.190088 Anserini +test3467 Q0 6955589 13 12.150965 Anserini +test3467 Q0 8413094 14 12.047102 Anserini +test3467 Q0 6955601 15 11.775675 Anserini +test3467 Q0 1525249 16 11.632380 Anserini +test3467 Q0 4289400 17 11.487545 Anserini +test3467 Q0 4289397 18 11.404587 Anserini +test3467 Q0 10876676 19 11.299256 Anserini +test3467 Q0 6955596 20 11.299256 Anserini +test3467 Q0 6955586 21 11.289972 Anserini +test3467 Q0 9277523 22 11.287661 Anserini +test3467 Q0 6052260 23 11.148837 Anserini +test3467 Q0 4289404 24 11.077168 Anserini +test3467 Q0 13806405 25 11.032753 Anserini +test3467 Q0 368159 26 10.915375 Anserini +test3467 Q0 6955610 27 10.827750 Anserini +test3467 Q0 8413095 28 10.800468 Anserini +test3467 Q0 8413092 29 10.746600 Anserini +test3467 Q0 17769864 30 10.619745 Anserini +test3468 Q0 6639283 1 15.257287 Anserini +test3468 Q0 7175265 2 13.974048 Anserini +test3468 Q0 6561474 3 13.389554 Anserini +test3468 Q0 8172742 4 13.107745 Anserini +test3468 Q0 3157719 5 13.030668 Anserini +test3468 Q0 770082 6 12.904139 Anserini +test3468 Q0 7175279 7 12.864905 Anserini +test3468 Q0 10178460 8 12.800138 Anserini +test3468 Q0 5613196 9 12.666673 Anserini +test3468 Q0 4669235 10 12.426474 Anserini +test3468 Q0 770077 11 12.426474 Anserini +test3468 Q0 4669231 12 12.305081 Anserini +test3468 Q0 770079 13 12.142079 Anserini +test3468 Q0 3374968 14 12.125086 Anserini +test3468 Q0 2661002 15 12.119708 Anserini +test3468 Q0 10709259 16 12.060226 Anserini +test3468 Q0 6561466 17 12.057241 Anserini +test3468 Q0 18862880 18 12.044298 Anserini +test3468 Q0 7175277 19 12.004946 Anserini +test3468 Q0 3157737 20 11.942414 Anserini +test3468 Q0 3157744 21 11.942414 Anserini +test3468 Q0 12884833 22 11.903846 Anserini +test3468 Q0 770081 23 11.902248 Anserini +test3468 Q0 10236524 24 11.887606 Anserini +test3468 Q0 8788810 25 11.830481 Anserini +test3468 Q0 11204355 26 11.743520 Anserini +test3468 Q0 12768250 27 11.726912 Anserini +test3468 Q0 8172738 28 11.707828 Anserini +test3468 Q0 2661007 29 11.696022 Anserini +test3468 Q0 3715489 30 11.595745 Anserini +test3469 Q0 2369456 1 13.338690 Anserini +test3469 Q0 9202423 2 11.488945 Anserini +test3469 Q0 5046213 3 11.316343 Anserini +test3469 Q0 2369459 4 10.865267 Anserini +test3469 Q0 3838939 5 10.859315 Anserini +test3469 Q0 1675265 6 10.681272 Anserini +test3469 Q0 2369455 7 10.680712 Anserini +test3469 Q0 2369460 8 10.680712 Anserini +test3469 Q0 4072812 9 10.381779 Anserini +test3469 Q0 7405460 10 10.377792 Anserini +test3469 Q0 1675263 11 10.360062 Anserini +test3469 Q0 3838994 12 10.208379 Anserini +test3469 Q0 433793 13 10.178205 Anserini +test3469 Q0 12319350 14 10.131692 Anserini +test3469 Q0 5815518 15 10.047560 Anserini +test3469 Q0 9213585 16 9.996404 Anserini +test3469 Q0 2232118 17 9.897480 Anserini +test3469 Q0 689926 18 9.895823 Anserini +test3469 Q0 3762460 19 9.685696 Anserini +test3469 Q0 8999781 20 9.647063 Anserini +test3469 Q0 4995594 21 9.619120 Anserini +test3469 Q0 3838989 22 9.586126 Anserini +test3469 Q0 18726525 23 9.586126 Anserini +test3469 Q0 9943340 24 9.586126 Anserini +test3469 Q0 16232953 25 9.580256 Anserini +test3469 Q0 587818 26 9.575195 Anserini +test3469 Q0 1838451 27 9.555258 Anserini +test3469 Q0 13645551 28 9.494321 Anserini +test3469 Q0 781600 29 9.494321 Anserini +test3469 Q0 204488 30 9.494321 Anserini +test347 Q0 10316719 1 17.414890 Anserini +test347 Q0 6157994 2 17.225733 Anserini +test347 Q0 10316721 3 16.522795 Anserini +test347 Q0 10316720 4 16.297098 Anserini +test347 Q0 20086717 5 15.433041 Anserini +test347 Q0 13746353 6 15.181599 Anserini +test347 Q0 633575 7 14.863197 Anserini +test347 Q0 18081567 8 14.597337 Anserini +test347 Q0 633595 9 14.551826 Anserini +test347 Q0 10217153 10 14.535286 Anserini +test347 Q0 10217149 11 14.535286 Anserini +test347 Q0 18209070 12 14.471960 Anserini +test347 Q0 13105558 13 14.221217 Anserini +test347 Q0 1684702 14 14.212695 Anserini +test347 Q0 1684725 15 14.212695 Anserini +test347 Q0 6367202 16 14.206111 Anserini +test347 Q0 6367197 17 14.206111 Anserini +test347 Q0 12000003 18 14.046462 Anserini +test347 Q0 10316688 19 14.042285 Anserini +test347 Q0 3617019 20 14.030325 Anserini +test347 Q0 10217151 21 13.981585 Anserini +test347 Q0 18081578 22 13.968854 Anserini +test347 Q0 15400754 23 13.966455 Anserini +test347 Q0 3364871 24 13.937170 Anserini +test347 Q0 18081560 25 13.873125 Anserini +test347 Q0 10634384 26 13.856200 Anserini +test347 Q0 14077796 27 13.832425 Anserini +test347 Q0 1684706 28 13.759370 Anserini +test347 Q0 633594 29 13.722904 Anserini +test347 Q0 633576 30 13.722904 Anserini +test3470 Q0 9476311 1 13.922260 Anserini +test3470 Q0 5827992 2 13.572519 Anserini +test3470 Q0 19360489 3 13.509115 Anserini +test3470 Q0 356177 4 13.487604 Anserini +test3470 Q0 18790625 5 13.306013 Anserini +test3470 Q0 607597 6 13.291346 Anserini +test3470 Q0 13257085 7 13.207627 Anserini +test3470 Q0 7395395 8 13.169826 Anserini +test3470 Q0 10461163 9 13.108028 Anserini +test3470 Q0 9141897 10 13.025564 Anserini +test3470 Q0 4755526 11 12.976709 Anserini +test3470 Q0 8519044 12 12.951971 Anserini +test3470 Q0 15173726 13 12.796336 Anserini +test3470 Q0 7822814 14 12.658061 Anserini +test3470 Q0 4163104 15 12.583754 Anserini +test3470 Q0 17491843 16 12.578910 Anserini +test3470 Q0 16475335 17 12.575110 Anserini +test3470 Q0 9662545 18 12.526896 Anserini +test3470 Q0 16769580 19 12.498693 Anserini +test3470 Q0 905672 20 12.422975 Anserini +test3470 Q0 17177751 21 12.346365 Anserini +test3470 Q0 13093118 22 12.308666 Anserini +test3470 Q0 15539424 23 12.293468 Anserini +test3470 Q0 16775239 24 12.291744 Anserini +test3470 Q0 9476310 25 12.282720 Anserini +test3470 Q0 17177752 26 12.282720 Anserini +test3470 Q0 5189165 27 12.263203 Anserini +test3470 Q0 7502278 28 12.251748 Anserini +test3470 Q0 9476312 29 12.219727 Anserini +test3470 Q0 20039768 30 12.206675 Anserini +test3471 Q0 20391912 1 14.746468 Anserini +test3471 Q0 3404107 2 14.459604 Anserini +test3471 Q0 12836201 3 14.380842 Anserini +test3471 Q0 2077387 4 14.362867 Anserini +test3471 Q0 6276041 5 14.116084 Anserini +test3471 Q0 6986938 6 14.073112 Anserini +test3471 Q0 15161999 7 13.755493 Anserini +test3471 Q0 5532810 8 13.727141 Anserini +test3471 Q0 19880922 9 13.655581 Anserini +test3471 Q0 13147602 10 13.617946 Anserini +test3471 Q0 6276037 11 13.494931 Anserini +test3471 Q0 18892712 12 13.478173 Anserini +test3471 Q0 457821 13 13.465988 Anserini +test3471 Q0 12454403 14 13.196774 Anserini +test3471 Q0 18269971 15 13.186166 Anserini +test3471 Q0 5171043 16 12.999268 Anserini +test3471 Q0 15855811 17 12.990681 Anserini +test3471 Q0 4208432 18 12.853155 Anserini +test3471 Q0 13331614 19 12.844892 Anserini +test3471 Q0 15974231 20 12.826741 Anserini +test3471 Q0 13631853 21 12.825524 Anserini +test3471 Q0 16776674 22 12.814503 Anserini +test3471 Q0 1727764 23 12.762437 Anserini +test3471 Q0 2541003 24 12.725753 Anserini +test3471 Q0 8609811 25 12.717880 Anserini +test3471 Q0 6784836 26 12.670399 Anserini +test3471 Q0 18299935 27 12.655404 Anserini +test3471 Q0 15162048 28 12.555380 Anserini +test3471 Q0 8822889 29 12.552115 Anserini +test3471 Q0 11753041 30 12.551644 Anserini +test3472 Q0 401177 1 14.687312 Anserini +test3472 Q0 401170 2 12.717663 Anserini +test3472 Q0 401161 3 12.670866 Anserini +test3472 Q0 9347142 4 12.653074 Anserini +test3472 Q0 7420748 5 12.533603 Anserini +test3472 Q0 1439480 6 12.407550 Anserini +test3472 Q0 6599526 7 12.309333 Anserini +test3472 Q0 401163 8 12.222934 Anserini +test3472 Q0 401174 9 12.167510 Anserini +test3472 Q0 5124279 10 12.108932 Anserini +test3472 Q0 7831111 11 12.060178 Anserini +test3472 Q0 1452783 12 12.033401 Anserini +test3472 Q0 7420751 13 11.993168 Anserini +test3472 Q0 4632891 14 11.969017 Anserini +test3472 Q0 9509156 15 11.851326 Anserini +test3472 Q0 19387658 16 11.847549 Anserini +test3472 Q0 12655853 17 11.752318 Anserini +test3472 Q0 401175 18 11.669747 Anserini +test3472 Q0 400064 19 11.563650 Anserini +test3472 Q0 4518665 20 11.556875 Anserini +test3472 Q0 4632892 21 11.556340 Anserini +test3472 Q0 1294532 22 11.503656 Anserini +test3472 Q0 10381899 23 11.496112 Anserini +test3472 Q0 6179418 24 11.433391 Anserini +test3472 Q0 6329100 25 11.425705 Anserini +test3472 Q0 16376243 26 11.274839 Anserini +test3472 Q0 3875401 27 11.024147 Anserini +test3472 Q0 7623582 28 11.004496 Anserini +test3472 Q0 17726687 29 10.977359 Anserini +test3472 Q0 13294301 30 10.913836 Anserini +test3473 Q0 20197711 1 19.822540 Anserini +test3473 Q0 20197706 2 19.510967 Anserini +test3473 Q0 20753920 3 19.382486 Anserini +test3473 Q0 20197694 4 18.796143 Anserini +test3473 Q0 20753921 5 18.408991 Anserini +test3473 Q0 20197693 6 18.240978 Anserini +test3473 Q0 20197708 7 18.205786 Anserini +test3473 Q0 17228351 8 17.426611 Anserini +test3473 Q0 9082186 9 17.237082 Anserini +test3473 Q0 20767951 10 16.794222 Anserini +test3473 Q0 20753919 11 16.759632 Anserini +test3473 Q0 16430569 12 15.962991 Anserini +test3473 Q0 15803591 13 15.950369 Anserini +test3473 Q0 19622228 14 15.787066 Anserini +test3473 Q0 20767950 15 15.540009 Anserini +test3473 Q0 17228353 16 15.513426 Anserini +test3473 Q0 17245281 17 15.478770 Anserini +test3473 Q0 20814157 18 15.453079 Anserini +test3473 Q0 14405111 19 15.406027 Anserini +test3473 Q0 14405108 20 15.406027 Anserini +test3473 Q0 20256896 21 15.333548 Anserini +test3473 Q0 12354630 22 15.271420 Anserini +test3473 Q0 17373369 23 15.264974 Anserini +test3473 Q0 20767936 24 15.188825 Anserini +test3473 Q0 17228349 25 15.108709 Anserini +test3473 Q0 18168451 26 15.089014 Anserini +test3473 Q0 18168449 27 15.040511 Anserini +test3473 Q0 12785782 28 15.010958 Anserini +test3473 Q0 15803589 29 14.931582 Anserini +test3473 Q0 21013542 30 14.837370 Anserini +test3474 Q0 62331 1 13.825437 Anserini +test3474 Q0 16387526 2 13.796194 Anserini +test3474 Q0 62186 3 13.264634 Anserini +test3474 Q0 18981976 4 13.068643 Anserini +test3474 Q0 8930579 5 12.945177 Anserini +test3474 Q0 10217416 6 12.657057 Anserini +test3474 Q0 4836388 7 12.558731 Anserini +test3474 Q0 3298105 8 12.502789 Anserini +test3474 Q0 6120090 9 12.388474 Anserini +test3474 Q0 18466421 10 12.330675 Anserini +test3474 Q0 62275 11 12.304223 Anserini +test3474 Q0 62305 12 12.280025 Anserini +test3474 Q0 17491112 13 12.280025 Anserini +test3474 Q0 62161 14 12.214629 Anserini +test3474 Q0 18981980 15 12.188341 Anserini +test3474 Q0 62304 16 12.086362 Anserini +test3474 Q0 18974860 17 11.987606 Anserini +test3474 Q0 8707538 18 11.901164 Anserini +test3474 Q0 215797 19 11.714383 Anserini +test3474 Q0 62201 20 11.637353 Anserini +test3474 Q0 8234650 21 11.568253 Anserini +test3474 Q0 19935503 22 11.527896 Anserini +test3474 Q0 463475 23 11.502399 Anserini +test3474 Q0 5828575 24 11.431062 Anserini +test3474 Q0 3959476 25 11.423953 Anserini +test3474 Q0 2389751 26 11.410537 Anserini +test3474 Q0 8930578 27 11.388175 Anserini +test3474 Q0 62179 28 11.375353 Anserini +test3474 Q0 19935508 29 11.321944 Anserini +test3474 Q0 8930585 30 11.236678 Anserini +test3475 Q0 7340275 1 16.369087 Anserini +test3475 Q0 7340279 2 16.101652 Anserini +test3475 Q0 10500871 3 15.772601 Anserini +test3475 Q0 16677238 4 14.507373 Anserini +test3475 Q0 9980098 5 14.482848 Anserini +test3475 Q0 3159769 6 14.387349 Anserini +test3475 Q0 9980097 7 13.944553 Anserini +test3475 Q0 8550181 8 13.777374 Anserini +test3475 Q0 1480131 9 13.747591 Anserini +test3475 Q0 16677236 10 13.698865 Anserini +test3475 Q0 895364 11 13.486590 Anserini +test3475 Q0 1506001 12 13.481401 Anserini +test3475 Q0 18529833 13 13.470324 Anserini +test3475 Q0 16176162 14 13.465417 Anserini +test3475 Q0 14744332 15 13.446238 Anserini +test3475 Q0 19398309 16 13.407466 Anserini +test3475 Q0 10303601 17 13.356382 Anserini +test3475 Q0 10736297 18 13.286166 Anserini +test3475 Q0 13186622 19 13.240464 Anserini +test3475 Q0 12232690 20 13.044312 Anserini +test3475 Q0 17177372 21 12.986879 Anserini +test3475 Q0 11434746 22 12.872154 Anserini +test3475 Q0 15943245 23 12.729425 Anserini +test3475 Q0 9024507 24 12.560981 Anserini +test3475 Q0 15943246 25 12.525526 Anserini +test3475 Q0 14086784 26 12.494047 Anserini +test3475 Q0 5707648 27 12.471512 Anserini +test3475 Q0 1455675 28 12.438854 Anserini +test3475 Q0 4851874 29 12.390250 Anserini +test3475 Q0 10139170 30 12.361256 Anserini +test3476 Q0 6313123 1 17.498568 Anserini +test3476 Q0 8660620 2 16.710464 Anserini +test3476 Q0 19093995 3 16.210648 Anserini +test3476 Q0 6313125 4 15.764125 Anserini +test3476 Q0 12623282 5 15.585665 Anserini +test3476 Q0 8660630 6 15.469625 Anserini +test3476 Q0 19093997 7 15.174745 Anserini +test3476 Q0 8660629 8 13.982173 Anserini +test3476 Q0 8660619 9 13.876911 Anserini +test3476 Q0 3495854 10 13.689022 Anserini +test3476 Q0 19093998 11 12.973557 Anserini +test3476 Q0 16360175 12 12.881611 Anserini +test3476 Q0 6313124 13 12.875170 Anserini +test3476 Q0 18352011 14 12.780054 Anserini +test3476 Q0 3495846 15 12.682560 Anserini +test3476 Q0 14242928 16 11.869815 Anserini +test3476 Q0 19093996 17 11.852153 Anserini +test3476 Q0 8321344 18 11.760428 Anserini +test3476 Q0 10835805 19 11.749329 Anserini +test3476 Q0 3495855 20 11.472958 Anserini +test3476 Q0 12334343 21 11.430678 Anserini +test3476 Q0 12334344 22 11.258547 Anserini +test3476 Q0 3495838 23 11.255909 Anserini +test3476 Q0 15348886 24 11.197508 Anserini +test3476 Q0 3495839 25 11.118767 Anserini +test3476 Q0 3495849 26 11.118767 Anserini +test3476 Q0 5312683 27 11.044090 Anserini +test3476 Q0 18238443 28 11.032453 Anserini +test3476 Q0 14242940 29 10.976834 Anserini +test3476 Q0 17249801 30 10.940819 Anserini +test3477 Q0 3168308 1 17.723524 Anserini +test3477 Q0 9196170 2 15.865159 Anserini +test3477 Q0 9196149 3 15.865159 Anserini +test3477 Q0 3689453 4 15.658958 Anserini +test3477 Q0 10311718 5 15.590192 Anserini +test3477 Q0 3258619 6 14.786749 Anserini +test3477 Q0 3168302 7 14.558558 Anserini +test3477 Q0 2828575 8 14.267288 Anserini +test3477 Q0 10311709 9 14.025611 Anserini +test3477 Q0 10311731 10 13.938281 Anserini +test3477 Q0 9196158 11 13.840767 Anserini +test3477 Q0 14149636 12 13.828481 Anserini +test3477 Q0 9173594 13 13.335347 Anserini +test3477 Q0 2828574 14 13.150976 Anserini +test3477 Q0 3318329 15 13.073704 Anserini +test3477 Q0 9196151 16 12.874114 Anserini +test3477 Q0 10311717 17 12.776117 Anserini +test3477 Q0 9196155 18 12.645649 Anserini +test3477 Q0 3008204 19 12.642598 Anserini +test3477 Q0 3532310 20 12.549938 Anserini +test3477 Q0 9196154 21 12.480644 Anserini +test3477 Q0 18355027 22 12.446784 Anserini +test3477 Q0 19271367 23 12.386341 Anserini +test3477 Q0 3689438 24 11.852455 Anserini +test3477 Q0 3689437 25 11.852455 Anserini +test3477 Q0 3320454 26 11.733542 Anserini +test3477 Q0 9150361 27 11.727685 Anserini +test3477 Q0 1745234 28 11.727685 Anserini +test3477 Q0 15626093 29 11.691282 Anserini +test3477 Q0 10311713 30 11.631227 Anserini +test3478 Q0 809136 1 15.799170 Anserini +test3478 Q0 12734652 2 15.701918 Anserini +test3478 Q0 1444581 3 15.091454 Anserini +test3478 Q0 809128 4 14.583345 Anserini +test3478 Q0 809067 5 14.484347 Anserini +test3478 Q0 809107 6 14.020208 Anserini +test3478 Q0 4903308 7 13.991558 Anserini +test3478 Q0 1591187 8 13.862758 Anserini +test3478 Q0 7349690 9 13.739096 Anserini +test3478 Q0 4903310 10 13.460089 Anserini +test3478 Q0 14665335 11 13.088407 Anserini +test3478 Q0 4669887 12 13.016366 Anserini +test3478 Q0 12157131 13 12.944349 Anserini +test3478 Q0 1444573 14 12.939322 Anserini +test3478 Q0 15329055 15 12.906034 Anserini +test3478 Q0 731702 16 12.906034 Anserini +test3478 Q0 11187056 17 12.763693 Anserini +test3478 Q0 3435753 18 12.648309 Anserini +test3478 Q0 809103 19 12.562017 Anserini +test3478 Q0 12157142 20 12.489147 Anserini +test3478 Q0 4903309 21 12.403165 Anserini +test3478 Q0 1422602 22 12.248234 Anserini +test3478 Q0 4669886 23 12.119297 Anserini +test3478 Q0 313879 24 12.076643 Anserini +test3478 Q0 11423504 25 11.993045 Anserini +test3478 Q0 1185690 26 11.993045 Anserini +test3478 Q0 7349692 27 11.924110 Anserini +test3478 Q0 809137 28 11.900125 Anserini +test3478 Q0 7212237 29 11.884672 Anserini +test3478 Q0 16007828 30 11.862898 Anserini +test3479 Q0 11089962 1 17.873446 Anserini +test3479 Q0 11873134 2 17.766987 Anserini +test3479 Q0 7316542 3 17.438200 Anserini +test3479 Q0 8434523 4 17.412115 Anserini +test3479 Q0 11089966 5 17.311686 Anserini +test3479 Q0 12392667 6 17.282934 Anserini +test3479 Q0 17534975 7 17.153988 Anserini +test3479 Q0 12392663 8 17.119217 Anserini +test3479 Q0 20492653 9 17.000931 Anserini +test3479 Q0 13867468 10 16.447611 Anserini +test3479 Q0 17717888 11 16.412685 Anserini +test3479 Q0 3624696 12 16.152321 Anserini +test3479 Q0 14026575 13 15.981727 Anserini +test3479 Q0 14557650 14 15.947738 Anserini +test3479 Q0 11873133 15 15.828541 Anserini +test3479 Q0 12028223 16 15.476274 Anserini +test3479 Q0 13975919 17 15.452363 Anserini +test3479 Q0 14026579 18 15.451855 Anserini +test3479 Q0 13252662 19 15.441008 Anserini +test3479 Q0 11706118 20 15.433204 Anserini +test3479 Q0 11788887 21 15.402948 Anserini +test3479 Q0 14776431 22 15.357235 Anserini +test3479 Q0 20492654 23 15.323788 Anserini +test3479 Q0 10259759 24 15.323788 Anserini +test3479 Q0 8128619 25 15.320335 Anserini +test3479 Q0 7691501 26 15.234034 Anserini +test3479 Q0 14264549 27 15.229679 Anserini +test3479 Q0 15554386 28 15.220603 Anserini +test3479 Q0 13252664 29 15.173752 Anserini +test3479 Q0 7691504 30 15.116955 Anserini +test348 Q0 8110231 1 10.604471 Anserini +test348 Q0 6275982 2 10.581984 Anserini +test348 Q0 20875687 3 10.265149 Anserini +test348 Q0 20875674 4 10.265149 Anserini +test348 Q0 971278 5 10.133088 Anserini +test348 Q0 14116807 6 9.964172 Anserini +test348 Q0 9737689 7 9.893718 Anserini +test348 Q0 18668123 8 9.891946 Anserini +test348 Q0 15824323 9 9.891218 Anserini +test348 Q0 16329538 10 9.887675 Anserini +test348 Q0 1526483 11 9.856524 Anserini +test348 Q0 18533496 12 9.833813 Anserini +test348 Q0 12961578 13 9.759683 Anserini +test348 Q0 2450588 14 9.759562 Anserini +test348 Q0 10200197 15 9.749209 Anserini +test348 Q0 20397290 16 9.741778 Anserini +test348 Q0 9031647 17 9.722174 Anserini +test348 Q0 7449197 18 9.715273 Anserini +test348 Q0 10043551 19 9.681928 Anserini +test348 Q0 133673 20 9.676991 Anserini +test348 Q0 5515511 21 9.671601 Anserini +test348 Q0 20781044 22 9.646293 Anserini +test348 Q0 9909652 23 9.638674 Anserini +test348 Q0 14116806 24 9.638483 Anserini +test348 Q0 16103586 25 9.567348 Anserini +test348 Q0 6603384 26 9.562302 Anserini +test348 Q0 12316413 27 9.553848 Anserini +test348 Q0 10896283 28 9.533782 Anserini +test348 Q0 10517717 29 9.527650 Anserini +test348 Q0 18035408 30 9.509100 Anserini +test3480 Q0 2420891 1 12.021404 Anserini +test3480 Q0 10085565 2 11.541726 Anserini +test3480 Q0 2420905 3 11.539997 Anserini +test3480 Q0 3059392 4 11.513002 Anserini +test3480 Q0 8817090 5 11.498046 Anserini +test3480 Q0 556411 6 11.168499 Anserini +test3480 Q0 18710524 7 11.146912 Anserini +test3480 Q0 6434881 8 11.146912 Anserini +test3480 Q0 10202381 9 11.066001 Anserini +test3480 Q0 10626111 10 10.906136 Anserini +test3480 Q0 11760037 11 10.783151 Anserini +test3480 Q0 2086260 12 10.760823 Anserini +test3480 Q0 936583 13 10.759635 Anserini +test3480 Q0 13561484 14 10.647435 Anserini +test3480 Q0 14592110 15 10.644777 Anserini +test3480 Q0 11769261 16 10.636673 Anserini +test3480 Q0 12946797 17 10.632462 Anserini +test3480 Q0 6434742 18 10.619405 Anserini +test3480 Q0 11246593 19 10.550282 Anserini +test3480 Q0 12946688 20 10.545248 Anserini +test3480 Q0 594603 21 10.455862 Anserini +test3480 Q0 5887247 22 10.453943 Anserini +test3480 Q0 20386290 23 10.444692 Anserini +test3480 Q0 6008568 24 10.413923 Anserini +test3480 Q0 3320718 25 10.370691 Anserini +test3480 Q0 2420902 26 10.355703 Anserini +test3480 Q0 13003657 27 10.332961 Anserini +test3480 Q0 9361716 28 10.316442 Anserini +test3480 Q0 7067118 29 10.302433 Anserini +test3480 Q0 17515105 30 10.289824 Anserini +test3481 Q0 7067382 1 9.364922 Anserini +test3481 Q0 3673488 2 9.262684 Anserini +test3481 Q0 16200950 3 9.262684 Anserini +test3481 Q0 8589507 4 9.187590 Anserini +test3481 Q0 9869274 5 9.122332 Anserini +test3481 Q0 15072176 6 9.083446 Anserini +test3481 Q0 15072178 7 9.083446 Anserini +test3481 Q0 19541015 8 9.068201 Anserini +test3481 Q0 13590739 9 9.001625 Anserini +test3481 Q0 9869271 10 8.983146 Anserini +test3481 Q0 2492251 11 8.978312 Anserini +test3481 Q0 5622961 12 8.967390 Anserini +test3481 Q0 6561206 13 8.928776 Anserini +test3481 Q0 6561212 14 8.928776 Anserini +test3481 Q0 3006817 15 8.922809 Anserini +test3481 Q0 15629533 16 8.921716 Anserini +test3481 Q0 6926037 17 8.888952 Anserini +test3481 Q0 13791094 18 8.850661 Anserini +test3481 Q0 9616172 19 8.848208 Anserini +test3481 Q0 530593 20 8.818249 Anserini +test3481 Q0 5039973 21 8.814569 Anserini +test3481 Q0 9478039 22 8.793447 Anserini +test3481 Q0 4323711 23 8.774156 Anserini +test3481 Q0 14183597 24 8.739064 Anserini +test3481 Q0 13314859 25 8.728434 Anserini +test3481 Q0 13116056 26 8.721371 Anserini +test3481 Q0 4403745 27 8.668470 Anserini +test3481 Q0 3998230 28 8.657394 Anserini +test3481 Q0 669683 29 8.561419 Anserini +test3481 Q0 4824665 30 8.560305 Anserini +test3482 Q0 4264044 1 12.501791 Anserini +test3482 Q0 8075668 2 12.383231 Anserini +test3482 Q0 17535251 3 11.923155 Anserini +test3482 Q0 7322346 4 11.753930 Anserini +test3482 Q0 7444343 5 11.644566 Anserini +test3482 Q0 17570033 6 11.583836 Anserini +test3482 Q0 9632693 7 11.426624 Anserini +test3482 Q0 7322345 8 11.397554 Anserini +test3482 Q0 16352932 9 11.337377 Anserini +test3482 Q0 10052469 10 11.277019 Anserini +test3482 Q0 17254893 11 11.011136 Anserini +test3482 Q0 4604564 12 11.000550 Anserini +test3482 Q0 20458444 13 10.949145 Anserini +test3482 Q0 11550743 14 10.909911 Anserini +test3482 Q0 3237594 15 10.774450 Anserini +test3482 Q0 19822286 16 10.726066 Anserini +test3482 Q0 19822287 17 10.726066 Anserini +test3482 Q0 8368188 18 10.698707 Anserini +test3482 Q0 18818853 19 10.673450 Anserini +test3482 Q0 13801473 20 10.591452 Anserini +test3482 Q0 20266414 21 10.558538 Anserini +test3482 Q0 10426205 22 10.552036 Anserini +test3482 Q0 4295474 23 10.552036 Anserini +test3482 Q0 8840504 24 10.533606 Anserini +test3482 Q0 9777818 25 10.520004 Anserini +test3482 Q0 3621920 26 10.504288 Anserini +test3482 Q0 5300852 27 10.503809 Anserini +test3482 Q0 16676291 28 10.481305 Anserini +test3482 Q0 13515906 29 10.458632 Anserini +test3482 Q0 17296514 30 10.439661 Anserini +test3483 Q0 11371482 1 10.206808 Anserini +test3483 Q0 1121907 2 10.110458 Anserini +test3483 Q0 8180456 3 9.735093 Anserini +test3483 Q0 8180458 4 9.677193 Anserini +test3483 Q0 2957321 5 9.236331 Anserini +test3483 Q0 9377043 6 9.195779 Anserini +test3483 Q0 14776686 7 9.051406 Anserini +test3483 Q0 14776681 8 9.007219 Anserini +test3483 Q0 1121906 9 9.007219 Anserini +test3483 Q0 15780769 10 8.963614 Anserini +test3483 Q0 2804869 11 8.959128 Anserini +test3483 Q0 4401378 12 8.870871 Anserini +test3483 Q0 16679042 13 8.855425 Anserini +test3483 Q0 17409841 14 8.816446 Anserini +test3483 Q0 12401294 15 8.798607 Anserini +test3483 Q0 15780773 16 8.700896 Anserini +test3483 Q0 4401388 17 8.605672 Anserini +test3483 Q0 14870391 18 8.585033 Anserini +test3483 Q0 374420 19 8.554893 Anserini +test3483 Q0 3702484 20 8.535602 Anserini +test3483 Q0 9108126 21 8.457417 Anserini +test3483 Q0 1752962 22 8.457417 Anserini +test3483 Q0 128914 23 8.454476 Anserini +test3483 Q0 1665346 24 8.454476 Anserini +test3483 Q0 3677118 25 8.401595 Anserini +test3483 Q0 7380106 26 8.395739 Anserini +test3483 Q0 10083361 27 8.356195 Anserini +test3483 Q0 8853233 28 8.351826 Anserini +test3483 Q0 20326799 29 8.348285 Anserini +test3483 Q0 3465646 30 8.303453 Anserini +test3484 Q0 20843353 1 11.586019 Anserini +test3484 Q0 19982744 2 11.355519 Anserini +test3484 Q0 19766807 3 11.315455 Anserini +test3484 Q0 19357575 4 11.271976 Anserini +test3484 Q0 6860430 5 11.225851 Anserini +test3484 Q0 16089931 6 11.212165 Anserini +test3484 Q0 20392812 7 11.165310 Anserini +test3484 Q0 10242715 8 11.068633 Anserini +test3484 Q0 16080927 9 11.061397 Anserini +test3484 Q0 16080930 10 11.061397 Anserini +test3484 Q0 14452992 11 10.996252 Anserini +test3484 Q0 20080394 12 10.956601 Anserini +test3484 Q0 19981140 13 10.817187 Anserini +test3484 Q0 10403598 14 10.718627 Anserini +test3484 Q0 7682394 15 10.683892 Anserini +test3484 Q0 19162982 16 10.646195 Anserini +test3484 Q0 20322895 17 10.634991 Anserini +test3484 Q0 20877847 18 10.629716 Anserini +test3484 Q0 10523519 19 10.601867 Anserini +test3484 Q0 15516643 20 10.565462 Anserini +test3484 Q0 12485825 21 10.539086 Anserini +test3484 Q0 10060827 22 10.498341 Anserini +test3484 Q0 19929203 23 10.489554 Anserini +test3484 Q0 5485868 24 10.463321 Anserini +test3484 Q0 20080393 25 10.452682 Anserini +test3484 Q0 19929208 26 10.428945 Anserini +test3484 Q0 10060828 27 10.420986 Anserini +test3484 Q0 14112136 28 10.418153 Anserini +test3484 Q0 810920 29 10.408772 Anserini +test3484 Q0 6737307 30 10.371476 Anserini +test3485 Q0 4474382 1 15.676130 Anserini +test3485 Q0 3783710 2 14.452065 Anserini +test3485 Q0 3783709 3 14.416411 Anserini +test3485 Q0 3783712 4 14.210278 Anserini +test3485 Q0 7702422 5 13.956413 Anserini +test3485 Q0 12109212 6 13.878826 Anserini +test3485 Q0 195417 7 13.422748 Anserini +test3485 Q0 1765235 8 13.420184 Anserini +test3485 Q0 4474383 9 13.413942 Anserini +test3485 Q0 198860 10 13.391970 Anserini +test3485 Q0 764203 11 13.198114 Anserini +test3485 Q0 13541328 12 13.155447 Anserini +test3485 Q0 12861501 13 13.064028 Anserini +test3485 Q0 18823546 14 13.019367 Anserini +test3485 Q0 3667754 15 12.923498 Anserini +test3485 Q0 3783711 16 12.911477 Anserini +test3485 Q0 16305821 17 12.810116 Anserini +test3485 Q0 10503572 18 12.759938 Anserini +test3485 Q0 9588799 19 12.729120 Anserini +test3485 Q0 15153679 20 12.631192 Anserini +test3485 Q0 4864477 21 12.562407 Anserini +test3485 Q0 16514332 22 12.543457 Anserini +test3485 Q0 305828 23 12.533860 Anserini +test3485 Q0 7680425 24 12.474618 Anserini +test3485 Q0 19601506 25 12.411508 Anserini +test3485 Q0 8970412 26 12.385525 Anserini +test3485 Q0 8669521 27 12.368767 Anserini +test3485 Q0 18823551 28 12.344404 Anserini +test3485 Q0 16411338 29 12.331333 Anserini +test3485 Q0 20798500 30 12.308363 Anserini +test3486 Q0 7562797 1 10.519750 Anserini +test3486 Q0 2346798 2 10.457596 Anserini +test3486 Q0 642250 3 10.250401 Anserini +test3486 Q0 2832173 4 10.210889 Anserini +test3486 Q0 5334243 5 10.152593 Anserini +test3486 Q0 15631065 6 10.083537 Anserini +test3486 Q0 6728250 7 10.082796 Anserini +test3486 Q0 5334236 8 10.006631 Anserini +test3486 Q0 9854963 9 9.731977 Anserini +test3486 Q0 9854964 10 9.731977 Anserini +test3486 Q0 7919027 11 9.730501 Anserini +test3486 Q0 19691829 12 9.704438 Anserini +test3486 Q0 10812102 13 9.689243 Anserini +test3486 Q0 9839249 14 9.648723 Anserini +test3486 Q0 4478964 15 9.643486 Anserini +test3486 Q0 15936842 16 9.632977 Anserini +test3486 Q0 2287166 17 9.602192 Anserini +test3486 Q0 5670933 18 9.572688 Anserini +test3486 Q0 7179356 19 9.492037 Anserini +test3486 Q0 5318686 20 9.475187 Anserini +test3486 Q0 10812104 21 9.462986 Anserini +test3486 Q0 11742927 22 9.459989 Anserini +test3486 Q0 11742922 23 9.431993 Anserini +test3486 Q0 14550449 24 9.413905 Anserini +test3486 Q0 1004719 25 9.353657 Anserini +test3486 Q0 14716736 26 9.294061 Anserini +test3486 Q0 20931480 27 9.265694 Anserini +test3486 Q0 20565007 28 9.227405 Anserini +test3486 Q0 1856475 29 9.201567 Anserini +test3486 Q0 15717877 30 9.184738 Anserini +test3487 Q0 13164174 1 9.747517 Anserini +test3487 Q0 14645878 2 9.489395 Anserini +test3487 Q0 11938347 3 9.182295 Anserini +test3487 Q0 4389764 4 9.174096 Anserini +test3487 Q0 19984705 5 8.770356 Anserini +test3487 Q0 4389763 6 8.682884 Anserini +test3487 Q0 1488851 7 8.669372 Anserini +test3487 Q0 6690905 8 8.362823 Anserini +test3487 Q0 5180481 9 8.350618 Anserini +test3487 Q0 18955302 10 8.314363 Anserini +test3487 Q0 2670928 11 8.294391 Anserini +test3487 Q0 4509527 12 8.240105 Anserini +test3487 Q0 284806 13 8.221080 Anserini +test3487 Q0 18442421 14 8.218416 Anserini +test3487 Q0 20212810 15 8.020690 Anserini +test3487 Q0 24570 16 7.973225 Anserini +test3487 Q0 16864684 17 7.962760 Anserini +test3487 Q0 20212802 18 7.929638 Anserini +test3487 Q0 280021 19 7.913685 Anserini +test3487 Q0 4433127 20 7.864709 Anserini +test3487 Q0 3727541 21 7.846890 Anserini +test3487 Q0 285682 22 7.766658 Anserini +test3487 Q0 13558387 23 7.752162 Anserini +test3487 Q0 12539125 24 7.715065 Anserini +test3487 Q0 4378766 25 7.702893 Anserini +test3487 Q0 16864686 26 7.695530 Anserini +test3487 Q0 5668394 27 7.683789 Anserini +test3487 Q0 748425 28 7.655602 Anserini +test3487 Q0 407888 29 7.641561 Anserini +test3487 Q0 2950616 30 7.641561 Anserini +test3488 Q0 177534 1 11.211214 Anserini +test3488 Q0 16666649 2 10.557165 Anserini +test3488 Q0 5775703 3 10.537764 Anserini +test3488 Q0 19314439 4 9.916372 Anserini +test3488 Q0 7716210 5 9.562871 Anserini +test3488 Q0 4138908 6 8.940748 Anserini +test3488 Q0 13992415 7 8.931622 Anserini +test3488 Q0 2551657 8 8.870255 Anserini +test3488 Q0 3648410 9 8.870255 Anserini +test3488 Q0 3648406 10 8.796984 Anserini +test3488 Q0 2964553 11 8.759941 Anserini +test3488 Q0 7585942 12 8.732162 Anserini +test3488 Q0 8814538 13 8.732162 Anserini +test3488 Q0 9043153 14 8.724967 Anserini +test3488 Q0 2592435 15 8.724967 Anserini +test3488 Q0 9043160 16 8.724967 Anserini +test3488 Q0 3991650 17 8.724967 Anserini +test3488 Q0 2023461 18 8.714999 Anserini +test3488 Q0 11237659 19 8.672297 Anserini +test3488 Q0 826015 20 8.672297 Anserini +test3488 Q0 16179325 21 8.654173 Anserini +test3488 Q0 3117228 22 8.649260 Anserini +test3488 Q0 8519242 23 8.595119 Anserini +test3488 Q0 8399467 24 8.587980 Anserini +test3488 Q0 15379446 25 8.584568 Anserini +test3488 Q0 3611869 26 8.556251 Anserini +test3488 Q0 2964548 27 8.556251 Anserini +test3488 Q0 16110521 28 8.528092 Anserini +test3488 Q0 4585391 29 8.516123 Anserini +test3488 Q0 12953169 30 8.502244 Anserini +test3489 Q0 15137924 1 18.330902 Anserini +test3489 Q0 17532929 2 17.718515 Anserini +test3489 Q0 18111536 3 17.342428 Anserini +test3489 Q0 18422294 4 16.997932 Anserini +test3489 Q0 17897593 5 16.467875 Anserini +test3489 Q0 17833216 6 16.363346 Anserini +test3489 Q0 17989613 7 16.172731 Anserini +test3489 Q0 17989629 8 16.172731 Anserini +test3489 Q0 17983195 9 16.052818 Anserini +test3489 Q0 18424504 10 16.039175 Anserini +test3489 Q0 17836700 11 15.911629 Anserini +test3489 Q0 17532932 12 15.902225 Anserini +test3489 Q0 17532931 13 15.771149 Anserini +test3489 Q0 18111552 14 15.763947 Anserini +test3489 Q0 17716321 15 15.630135 Anserini +test3489 Q0 18449628 16 15.609066 Anserini +test3489 Q0 18421976 17 15.268713 Anserini +test3489 Q0 15619995 18 15.266624 Anserini +test3489 Q0 19279484 19 15.182918 Anserini +test3489 Q0 18418816 20 15.149830 Anserini +test3489 Q0 18418811 21 15.056643 Anserini +test3489 Q0 18039637 22 14.963799 Anserini +test3489 Q0 18039640 23 14.956165 Anserini +test3489 Q0 15014697 24 14.828312 Anserini +test3489 Q0 16972125 25 14.588612 Anserini +test3489 Q0 17833213 26 14.515008 Anserini +test3489 Q0 18039629 27 14.478796 Anserini +test3489 Q0 18356083 28 14.469675 Anserini +test3489 Q0 18092017 29 14.392148 Anserini +test3489 Q0 17676859 30 14.391039 Anserini +test349 Q0 12136180 1 19.051830 Anserini +test349 Q0 9158249 2 18.894375 Anserini +test349 Q0 33459 3 17.822929 Anserini +test349 Q0 1515147 4 17.471979 Anserini +test349 Q0 17855479 5 17.399277 Anserini +test349 Q0 14275144 6 17.160870 Anserini +test349 Q0 19383085 7 16.895424 Anserini +test349 Q0 1758966 8 16.845169 Anserini +test349 Q0 12424979 9 16.652397 Anserini +test349 Q0 14661330 10 16.160868 Anserini +test349 Q0 6943249 11 15.973097 Anserini +test349 Q0 15290926 12 15.861536 Anserini +test349 Q0 9707124 13 15.848426 Anserini +test349 Q0 1723408 14 15.793550 Anserini +test349 Q0 13098614 15 15.731968 Anserini +test349 Q0 14707299 16 15.593416 Anserini +test349 Q0 4650427 17 15.472729 Anserini +test349 Q0 19784205 18 15.435465 Anserini +test349 Q0 19458136 19 15.431934 Anserini +test349 Q0 14705380 20 15.425200 Anserini +test349 Q0 1830247 21 15.379316 Anserini +test349 Q0 1177084 22 14.978397 Anserini +test349 Q0 795794 23 14.959355 Anserini +test349 Q0 14483132 24 14.944629 Anserini +test349 Q0 14705381 25 14.917317 Anserini +test349 Q0 1723405 26 14.892542 Anserini +test349 Q0 1723418 27 14.892542 Anserini +test349 Q0 2699553 28 14.859135 Anserini +test349 Q0 8350101 29 14.773955 Anserini +test349 Q0 14284271 30 14.742318 Anserini +test3490 Q0 17715300 1 9.751792 Anserini +test3490 Q0 15122290 2 9.458380 Anserini +test3490 Q0 20081052 3 9.398450 Anserini +test3490 Q0 486380 4 9.338129 Anserini +test3490 Q0 486362 5 9.323391 Anserini +test3490 Q0 10680944 6 9.279190 Anserini +test3490 Q0 2522953 7 9.164150 Anserini +test3490 Q0 15122289 8 8.930857 Anserini +test3490 Q0 6801274 9 8.930857 Anserini +test3490 Q0 8799864 10 8.843608 Anserini +test3490 Q0 1983212 11 8.843209 Anserini +test3490 Q0 5796648 12 8.820962 Anserini +test3490 Q0 11830884 13 8.807838 Anserini +test3490 Q0 1806908 14 8.790994 Anserini +test3490 Q0 6996017 15 8.784844 Anserini +test3490 Q0 19424370 16 8.771727 Anserini +test3490 Q0 709256 17 8.770336 Anserini +test3490 Q0 5496609 18 8.754049 Anserini +test3490 Q0 17829740 19 8.733932 Anserini +test3490 Q0 14537650 20 8.687141 Anserini +test3490 Q0 2592596 21 8.671427 Anserini +test3490 Q0 13144740 22 8.667037 Anserini +test3490 Q0 11768525 23 8.545149 Anserini +test3490 Q0 11729825 24 8.540928 Anserini +test3490 Q0 20007709 25 8.531346 Anserini +test3490 Q0 7711237 26 8.523934 Anserini +test3490 Q0 7711239 27 8.523934 Anserini +test3490 Q0 11060412 28 8.505314 Anserini +test3490 Q0 2029140 29 8.505314 Anserini +test3490 Q0 2851635 30 8.505314 Anserini +test3491 Q0 15357589 1 13.860670 Anserini +test3491 Q0 11771928 2 13.148934 Anserini +test3491 Q0 15797761 3 13.097817 Anserini +test3491 Q0 7490794 4 12.895223 Anserini +test3491 Q0 14000535 5 12.337741 Anserini +test3491 Q0 16805173 6 12.336123 Anserini +test3491 Q0 16805174 7 12.336123 Anserini +test3491 Q0 15797692 8 12.184170 Anserini +test3491 Q0 18098538 9 12.044237 Anserini +test3491 Q0 16090331 10 12.042031 Anserini +test3491 Q0 16090333 11 12.042031 Anserini +test3491 Q0 18198513 12 11.819149 Anserini +test3491 Q0 15022941 13 11.720054 Anserini +test3491 Q0 20449750 14 11.646727 Anserini +test3491 Q0 18098540 15 11.629918 Anserini +test3491 Q0 80737 16 11.629867 Anserini +test3491 Q0 16970868 17 11.524731 Anserini +test3491 Q0 4654456 18 11.521411 Anserini +test3491 Q0 13312565 19 11.448429 Anserini +test3491 Q0 16805129 20 11.440904 Anserini +test3491 Q0 16805130 21 11.440904 Anserini +test3491 Q0 16163870 22 11.435045 Anserini +test3491 Q0 20959611 23 11.391968 Anserini +test3491 Q0 19181302 24 11.389545 Anserini +test3491 Q0 787258 25 11.377332 Anserini +test3491 Q0 4360336 26 11.370779 Anserini +test3491 Q0 6609505 27 11.365354 Anserini +test3491 Q0 16236033 28 11.347980 Anserini +test3491 Q0 19692030 29 11.344522 Anserini +test3491 Q0 4732254 30 11.327151 Anserini +test3492 Q0 17581156 1 15.441195 Anserini +test3492 Q0 19305687 2 15.090299 Anserini +test3492 Q0 2828167 3 14.865994 Anserini +test3492 Q0 19509875 4 14.531078 Anserini +test3492 Q0 12163500 5 14.505905 Anserini +test3492 Q0 3983483 6 14.496584 Anserini +test3492 Q0 10188577 7 14.443081 Anserini +test3492 Q0 85869 8 13.989601 Anserini +test3492 Q0 5242889 9 13.921385 Anserini +test3492 Q0 16821034 10 13.909992 Anserini +test3492 Q0 19509889 11 13.878461 Anserini +test3492 Q0 12571771 12 13.799674 Anserini +test3492 Q0 18248713 13 13.742641 Anserini +test3492 Q0 12953418 14 13.724794 Anserini +test3492 Q0 2212407 15 13.684958 Anserini +test3492 Q0 20012297 16 13.605609 Anserini +test3492 Q0 5242888 17 13.590034 Anserini +test3492 Q0 19071389 18 13.586243 Anserini +test3492 Q0 4342476 19 13.529455 Anserini +test3492 Q0 2828188 20 13.283010 Anserini +test3492 Q0 6323715 21 13.253677 Anserini +test3492 Q0 18801384 22 13.209759 Anserini +test3492 Q0 85855 23 13.180261 Anserini +test3492 Q0 5242893 24 13.175887 Anserini +test3492 Q0 5256590 25 13.112978 Anserini +test3492 Q0 19004047 26 13.055155 Anserini +test3492 Q0 6829653 27 13.046623 Anserini +test3492 Q0 20310903 28 13.041871 Anserini +test3492 Q0 5013877 29 13.023417 Anserini +test3492 Q0 73803 30 13.018588 Anserini +test3493 Q0 776049 1 18.349360 Anserini +test3493 Q0 18653225 2 16.241667 Anserini +test3493 Q0 18653223 3 16.122623 Anserini +test3493 Q0 3564366 4 16.064737 Anserini +test3493 Q0 776037 5 15.814643 Anserini +test3493 Q0 3497903 6 15.509504 Anserini +test3493 Q0 8083435 7 15.457956 Anserini +test3493 Q0 776050 8 15.245041 Anserini +test3493 Q0 4087751 9 15.058408 Anserini +test3493 Q0 3684077 10 14.786327 Anserini +test3493 Q0 7561564 11 14.773809 Anserini +test3493 Q0 776069 12 14.625385 Anserini +test3493 Q0 10712384 13 14.595952 Anserini +test3493 Q0 10680234 14 14.535257 Anserini +test3493 Q0 3684079 15 14.484434 Anserini +test3493 Q0 10708560 16 14.452168 Anserini +test3493 Q0 4087754 17 14.431099 Anserini +test3493 Q0 19917716 18 14.381603 Anserini +test3493 Q0 741526 19 14.375907 Anserini +test3493 Q0 1545389 20 14.358973 Anserini +test3493 Q0 8083434 21 14.249940 Anserini +test3493 Q0 4087755 22 14.233927 Anserini +test3493 Q0 10708584 23 14.219252 Anserini +test3493 Q0 776071 24 14.210005 Anserini +test3493 Q0 3459932 25 14.187595 Anserini +test3493 Q0 3459925 26 14.187595 Anserini +test3493 Q0 776059 27 14.161831 Anserini +test3493 Q0 8083437 28 14.142608 Anserini +test3493 Q0 776039 29 14.142608 Anserini +test3493 Q0 776064 30 14.116659 Anserini +test3494 Q0 20531199 1 19.699104 Anserini +test3494 Q0 20715489 2 19.456684 Anserini +test3494 Q0 20533617 3 19.433168 Anserini +test3494 Q0 20531188 4 19.354479 Anserini +test3494 Q0 20715420 5 19.316896 Anserini +test3494 Q0 20569818 6 19.242403 Anserini +test3494 Q0 20715656 7 19.240425 Anserini +test3494 Q0 20715655 8 19.161736 Anserini +test3494 Q0 20715646 9 19.067503 Anserini +test3494 Q0 20715699 10 19.064669 Anserini +test3494 Q0 20715537 11 19.011557 Anserini +test3494 Q0 20715563 12 18.974472 Anserini +test3494 Q0 20556628 13 18.736399 Anserini +test3494 Q0 20715751 14 18.728170 Anserini +test3494 Q0 20715779 15 18.559361 Anserini +test3494 Q0 20715395 16 18.535427 Anserini +test3494 Q0 20715616 17 18.447857 Anserini +test3494 Q0 20200839 18 18.279160 Anserini +test3494 Q0 20715622 19 18.265812 Anserini +test3494 Q0 20715569 20 18.221033 Anserini +test3494 Q0 20715442 21 18.221033 Anserini +test3494 Q0 19672441 22 18.104082 Anserini +test3494 Q0 20715681 23 18.104046 Anserini +test3494 Q0 20715350 24 18.082682 Anserini +test3494 Q0 20531196 25 18.082428 Anserini +test3494 Q0 20582040 26 18.041754 Anserini +test3494 Q0 20529393 27 18.024952 Anserini +test3494 Q0 19991408 28 18.018665 Anserini +test3494 Q0 20715582 29 17.938313 Anserini +test3494 Q0 20582030 30 17.936611 Anserini +test3495 Q0 12442445 1 20.336946 Anserini +test3495 Q0 6305335 2 19.836687 Anserini +test3495 Q0 12358646 3 18.172533 Anserini +test3495 Q0 2158459 4 16.987814 Anserini +test3495 Q0 12442378 5 16.848820 Anserini +test3495 Q0 7651497 6 16.561180 Anserini +test3495 Q0 9056234 7 16.314720 Anserini +test3495 Q0 14152171 8 16.300701 Anserini +test3495 Q0 9850158 9 16.133635 Anserini +test3495 Q0 12442460 10 16.100826 Anserini +test3495 Q0 11957810 11 16.016829 Anserini +test3495 Q0 3986702 12 15.970880 Anserini +test3495 Q0 750500 13 15.917888 Anserini +test3495 Q0 8274603 14 15.824216 Anserini +test3495 Q0 11324041 15 15.780644 Anserini +test3495 Q0 725419 16 15.742129 Anserini +test3495 Q0 6330043 17 15.644436 Anserini +test3495 Q0 6330044 18 15.644436 Anserini +test3495 Q0 3643029 19 15.625466 Anserini +test3495 Q0 9056235 20 15.499552 Anserini +test3495 Q0 9712225 21 15.493645 Anserini +test3495 Q0 6305339 22 15.483216 Anserini +test3495 Q0 14152172 23 15.387219 Anserini +test3495 Q0 4640033 24 15.386729 Anserini +test3495 Q0 13084113 25 15.244280 Anserini +test3495 Q0 3896311 26 15.234034 Anserini +test3495 Q0 9056231 27 15.213921 Anserini +test3495 Q0 15183166 28 15.131272 Anserini +test3495 Q0 14152174 29 15.092711 Anserini +test3495 Q0 16502652 30 15.062493 Anserini +test3496 Q0 9512140 1 17.407227 Anserini +test3496 Q0 523524 2 16.798481 Anserini +test3496 Q0 2564461 3 16.599705 Anserini +test3496 Q0 16226644 4 16.299067 Anserini +test3496 Q0 13075953 5 15.768536 Anserini +test3496 Q0 7365556 6 15.698708 Anserini +test3496 Q0 7144671 7 14.740108 Anserini +test3496 Q0 523525 8 14.658300 Anserini +test3496 Q0 6111668 9 14.511230 Anserini +test3496 Q0 12276502 10 14.465429 Anserini +test3496 Q0 19535725 11 14.404696 Anserini +test3496 Q0 3727401 12 14.332796 Anserini +test3496 Q0 18537312 13 14.274238 Anserini +test3496 Q0 4375417 14 14.249283 Anserini +test3496 Q0 2754013 15 14.190334 Anserini +test3496 Q0 9572444 16 14.185139 Anserini +test3496 Q0 6598530 17 14.131242 Anserini +test3496 Q0 4670456 18 14.109389 Anserini +test3496 Q0 3123924 19 14.108492 Anserini +test3496 Q0 15998095 20 13.974560 Anserini +test3496 Q0 2564483 21 13.902095 Anserini +test3496 Q0 9440353 22 13.887766 Anserini +test3496 Q0 2564466 23 13.875412 Anserini +test3496 Q0 10462207 24 13.866974 Anserini +test3496 Q0 6212865 25 13.848892 Anserini +test3496 Q0 9588444 26 13.828136 Anserini +test3496 Q0 7365557 27 13.782796 Anserini +test3496 Q0 16226643 28 13.762700 Anserini +test3496 Q0 9013905 29 13.754169 Anserini +test3496 Q0 14724585 30 13.722536 Anserini +test3497 Q0 5092579 1 19.872818 Anserini +test3497 Q0 5092570 2 16.143858 Anserini +test3497 Q0 12542645 3 15.193556 Anserini +test3497 Q0 13496503 4 14.534165 Anserini +test3497 Q0 960222 5 14.442987 Anserini +test3497 Q0 5092561 6 14.295674 Anserini +test3497 Q0 20030955 7 14.239539 Anserini +test3497 Q0 5092567 8 13.746546 Anserini +test3497 Q0 6015701 9 13.685217 Anserini +test3497 Q0 7997450 10 13.665656 Anserini +test3497 Q0 9767538 11 13.617735 Anserini +test3497 Q0 19558614 12 13.576078 Anserini +test3497 Q0 8800813 13 13.508821 Anserini +test3497 Q0 13768289 14 13.175713 Anserini +test3497 Q0 12570054 15 13.129369 Anserini +test3497 Q0 20728000 16 13.129369 Anserini +test3497 Q0 5192308 17 13.112053 Anserini +test3497 Q0 3847211 18 13.109954 Anserini +test3497 Q0 10970223 19 13.071498 Anserini +test3497 Q0 18460989 20 13.010925 Anserini +test3497 Q0 17927128 21 12.961579 Anserini +test3497 Q0 20030956 22 12.908561 Anserini +test3497 Q0 17927126 23 12.786751 Anserini +test3497 Q0 18134740 24 12.743361 Anserini +test3497 Q0 15922401 25 12.743361 Anserini +test3497 Q0 6300080 26 12.732916 Anserini +test3497 Q0 15831759 27 12.648464 Anserini +test3497 Q0 15935788 28 12.582327 Anserini +test3497 Q0 16454183 29 12.577429 Anserini +test3497 Q0 12221357 30 12.577429 Anserini +test3498 Q0 802199 1 15.656975 Anserini +test3498 Q0 4894590 2 15.643109 Anserini +test3498 Q0 9749499 3 15.559072 Anserini +test3498 Q0 19433745 4 15.552946 Anserini +test3498 Q0 4630410 5 15.482135 Anserini +test3498 Q0 9749493 6 15.482135 Anserini +test3498 Q0 5340784 7 15.090635 Anserini +test3498 Q0 12159665 8 15.074294 Anserini +test3498 Q0 14825591 9 15.019188 Anserini +test3498 Q0 7180510 10 14.670719 Anserini +test3498 Q0 14677870 11 14.648160 Anserini +test3498 Q0 3026977 12 14.569736 Anserini +test3498 Q0 4091792 13 14.479357 Anserini +test3498 Q0 472291 14 14.423762 Anserini +test3498 Q0 2241757 15 14.421328 Anserini +test3498 Q0 16476548 16 14.420797 Anserini +test3498 Q0 803756 17 14.370558 Anserini +test3498 Q0 7715503 18 14.323569 Anserini +test3498 Q0 802872 19 14.298049 Anserini +test3498 Q0 7715467 20 14.239563 Anserini +test3498 Q0 3026971 21 14.216616 Anserini +test3498 Q0 9744994 22 14.127085 Anserini +test3498 Q0 2241735 23 14.123067 Anserini +test3498 Q0 7180619 24 14.105201 Anserini +test3498 Q0 4817787 25 14.103917 Anserini +test3498 Q0 11467454 26 14.059410 Anserini +test3498 Q0 17573001 27 14.028202 Anserini +test3498 Q0 12093512 28 14.006516 Anserini +test3498 Q0 8171833 29 13.992142 Anserini +test3498 Q0 17103959 30 13.964671 Anserini +test3499 Q0 606630 1 13.922332 Anserini +test3499 Q0 18098612 2 13.686625 Anserini +test3499 Q0 2088458 3 13.548395 Anserini +test3499 Q0 15129932 4 13.243133 Anserini +test3499 Q0 2563181 5 12.879732 Anserini +test3499 Q0 5652384 6 12.805615 Anserini +test3499 Q0 15129927 7 12.616951 Anserini +test3499 Q0 5652383 8 12.587081 Anserini +test3499 Q0 7221705 9 12.391764 Anserini +test3499 Q0 8955629 10 12.332217 Anserini +test3499 Q0 5669088 11 12.322309 Anserini +test3499 Q0 5652371 12 12.288733 Anserini +test3499 Q0 4597949 13 12.256182 Anserini +test3499 Q0 7060755 14 12.245664 Anserini +test3499 Q0 606625 15 12.200533 Anserini +test3499 Q0 16979163 16 12.135773 Anserini +test3499 Q0 606632 17 12.101088 Anserini +test3499 Q0 11311469 18 12.051646 Anserini +test3499 Q0 8955632 19 12.051646 Anserini +test3499 Q0 606624 20 12.012784 Anserini +test3499 Q0 5433207 21 12.006558 Anserini +test3499 Q0 12325061 22 12.002694 Anserini +test3499 Q0 11494703 23 11.958886 Anserini +test3499 Q0 11494708 24 11.958886 Anserini +test3499 Q0 8307966 25 11.891594 Anserini +test3499 Q0 15129925 26 11.827591 Anserini +test3499 Q0 15129897 27 11.701127 Anserini +test3499 Q0 411447 28 11.687947 Anserini +test3499 Q0 411494 29 11.687947 Anserini +test3499 Q0 7060772 30 11.664961 Anserini +test35 Q0 14368167 1 12.170560 Anserini +test35 Q0 9843781 2 12.101670 Anserini +test35 Q0 10623829 3 12.064405 Anserini +test35 Q0 9843788 4 12.025781 Anserini +test35 Q0 14368165 5 12.024813 Anserini +test35 Q0 7552918 6 11.520290 Anserini +test35 Q0 7552912 7 11.487060 Anserini +test35 Q0 19553590 8 11.184802 Anserini +test35 Q0 10623825 9 11.039532 Anserini +test35 Q0 7552923 10 10.988772 Anserini +test35 Q0 7552925 11 10.811347 Anserini +test35 Q0 10623828 12 10.694469 Anserini +test35 Q0 1430191 13 10.669973 Anserini +test35 Q0 9588472 14 10.501609 Anserini +test35 Q0 10623830 15 10.455780 Anserini +test35 Q0 7552911 16 10.275084 Anserini +test35 Q0 1430203 17 10.261047 Anserini +test35 Q0 6183602 18 10.202546 Anserini +test35 Q0 3819722 19 10.200582 Anserini +test35 Q0 8826956 20 10.190400 Anserini +test35 Q0 7552910 21 10.172175 Anserini +test35 Q0 5847580 22 10.162383 Anserini +test35 Q0 8826951 23 10.135910 Anserini +test35 Q0 12798785 24 10.128736 Anserini +test35 Q0 1430197 25 10.017365 Anserini +test35 Q0 7808739 26 9.966965 Anserini +test35 Q0 11483382 27 9.960146 Anserini +test35 Q0 7552915 28 9.948746 Anserini +test35 Q0 7187711 29 9.905134 Anserini +test35 Q0 2009447 30 9.901222 Anserini +test350 Q0 2418810 1 23.793320 Anserini +test350 Q0 2418775 2 23.768238 Anserini +test350 Q0 3903237 3 23.204168 Anserini +test350 Q0 2418799 4 23.173248 Anserini +test350 Q0 5358957 5 22.950550 Anserini +test350 Q0 5358961 6 22.950550 Anserini +test350 Q0 3903235 7 22.310268 Anserini +test350 Q0 3903219 8 22.239649 Anserini +test350 Q0 3903226 9 22.063509 Anserini +test350 Q0 2418811 10 21.274992 Anserini +test350 Q0 5249910 11 21.134346 Anserini +test350 Q0 3903227 12 20.369644 Anserini +test350 Q0 6317221 13 20.315639 Anserini +test350 Q0 6317206 14 20.315639 Anserini +test350 Q0 6317210 15 19.994995 Anserini +test350 Q0 8095296 16 19.590424 Anserini +test350 Q0 4180679 17 19.235426 Anserini +test350 Q0 5249917 18 19.216322 Anserini +test350 Q0 13890214 19 19.216322 Anserini +test350 Q0 90224 20 19.000895 Anserini +test350 Q0 12501962 21 18.891617 Anserini +test350 Q0 90229 22 18.808960 Anserini +test350 Q0 7527940 23 18.602139 Anserini +test350 Q0 6977872 24 18.591442 Anserini +test350 Q0 16028917 25 18.408350 Anserini +test350 Q0 4749375 26 18.052162 Anserini +test350 Q0 3903224 27 17.994009 Anserini +test350 Q0 13890213 28 17.936907 Anserini +test350 Q0 11088466 29 17.894892 Anserini +test350 Q0 11088467 30 17.894892 Anserini +test3500 Q0 7525697 1 11.713223 Anserini +test3500 Q0 2754476 2 11.590025 Anserini +test3500 Q0 12023458 3 11.554536 Anserini +test3500 Q0 12669215 4 11.432312 Anserini +test3500 Q0 14210279 5 11.213583 Anserini +test3500 Q0 12084797 6 11.064781 Anserini +test3500 Q0 1547272 7 10.815710 Anserini +test3500 Q0 17353236 8 10.724226 Anserini +test3500 Q0 19264286 9 10.722346 Anserini +test3500 Q0 19936906 10 10.715677 Anserini +test3500 Q0 12460924 11 10.675694 Anserini +test3500 Q0 10321926 12 10.604619 Anserini +test3500 Q0 12864578 13 10.602650 Anserini +test3500 Q0 12460926 14 10.581322 Anserini +test3500 Q0 5469029 15 10.576616 Anserini +test3500 Q0 14858118 16 10.571128 Anserini +test3500 Q0 2342595 17 10.490255 Anserini +test3500 Q0 8167894 18 10.481151 Anserini +test3500 Q0 6232232 19 10.463211 Anserini +test3500 Q0 9402455 20 10.413808 Anserini +test3500 Q0 7525698 21 10.388403 Anserini +test3500 Q0 3975958 22 10.371346 Anserini +test3500 Q0 13089161 23 10.340304 Anserini +test3500 Q0 15712629 24 10.316020 Anserini +test3500 Q0 14572270 25 10.298244 Anserini +test3500 Q0 7525696 26 10.288692 Anserini +test3500 Q0 7898222 27 10.267090 Anserini +test3500 Q0 8303722 28 10.198779 Anserini +test3500 Q0 8037794 29 10.177638 Anserini +test3500 Q0 7363949 30 10.167759 Anserini +test3501 Q0 6318883 1 11.047284 Anserini +test3501 Q0 1350564 2 10.370363 Anserini +test3501 Q0 10932549 3 9.989549 Anserini +test3501 Q0 2730521 4 9.947979 Anserini +test3501 Q0 4443013 5 9.785865 Anserini +test3501 Q0 123725 6 9.779898 Anserini +test3501 Q0 10209343 7 9.637553 Anserini +test3501 Q0 7798721 8 9.532444 Anserini +test3501 Q0 4593799 9 9.396384 Anserini +test3501 Q0 11397627 10 9.361849 Anserini +test3501 Q0 18701075 11 9.268228 Anserini +test3501 Q0 6301605 12 9.266039 Anserini +test3501 Q0 3450005 13 9.253412 Anserini +test3501 Q0 462228 14 9.230792 Anserini +test3501 Q0 5070806 15 9.219968 Anserini +test3501 Q0 16939086 16 9.204962 Anserini +test3501 Q0 12430979 17 9.162456 Anserini +test3501 Q0 17105176 18 9.120822 Anserini +test3501 Q0 11361620 19 9.120822 Anserini +test3501 Q0 169154 20 9.120822 Anserini +test3501 Q0 5345821 21 9.081507 Anserini +test3501 Q0 1390578 22 9.069317 Anserini +test3501 Q0 3466773 23 9.023785 Anserini +test3501 Q0 573066 24 8.951962 Anserini +test3501 Q0 6917108 25 8.945219 Anserini +test3501 Q0 2013071 26 8.931538 Anserini +test3501 Q0 13558092 27 8.928791 Anserini +test3501 Q0 10833668 28 8.899796 Anserini +test3501 Q0 6332765 29 8.879052 Anserini +test3501 Q0 4024529 30 8.877119 Anserini +test3502 Q0 3505418 1 14.873315 Anserini +test3502 Q0 4455416 2 13.121253 Anserini +test3502 Q0 4455461 3 13.056220 Anserini +test3502 Q0 19697512 4 12.905003 Anserini +test3502 Q0 5966050 5 12.673622 Anserini +test3502 Q0 4455419 6 12.452338 Anserini +test3502 Q0 4455458 7 12.401861 Anserini +test3502 Q0 15921855 8 12.359550 Anserini +test3502 Q0 12027403 9 12.339560 Anserini +test3502 Q0 4455422 10 12.100850 Anserini +test3502 Q0 3366978 11 12.059097 Anserini +test3502 Q0 4455417 12 12.059097 Anserini +test3502 Q0 12027406 13 12.059097 Anserini +test3502 Q0 4455455 14 12.017788 Anserini +test3502 Q0 10977760 15 11.959731 Anserini +test3502 Q0 15921856 16 11.947277 Anserini +test3502 Q0 1052566 17 11.821256 Anserini +test3502 Q0 4455445 18 11.791713 Anserini +test3502 Q0 4455459 19 11.751875 Anserini +test3502 Q0 3373608 20 11.652321 Anserini +test3502 Q0 15921848 21 11.634449 Anserini +test3502 Q0 16968128 22 11.603793 Anserini +test3502 Q0 4455421 23 11.572759 Anserini +test3502 Q0 3505420 24 11.553131 Anserini +test3502 Q0 10157248 25 11.494419 Anserini +test3502 Q0 10977770 26 11.475138 Anserini +test3502 Q0 15921844 27 11.465513 Anserini +test3502 Q0 4455428 28 11.428205 Anserini +test3502 Q0 1052647 29 11.415209 Anserini +test3502 Q0 3505426 30 11.406662 Anserini +test3503 Q0 17936053 1 15.365297 Anserini +test3503 Q0 17438320 2 14.968645 Anserini +test3503 Q0 232437 3 14.540957 Anserini +test3503 Q0 4685330 4 13.754440 Anserini +test3503 Q0 10948838 5 13.714590 Anserini +test3503 Q0 20183288 6 13.298304 Anserini +test3503 Q0 5483689 7 13.069917 Anserini +test3503 Q0 5248567 8 12.977762 Anserini +test3503 Q0 232425 9 12.900272 Anserini +test3503 Q0 909096 10 12.629372 Anserini +test3503 Q0 10229409 11 12.617666 Anserini +test3503 Q0 5117820 12 12.445011 Anserini +test3503 Q0 1594038 13 12.404867 Anserini +test3503 Q0 742358 14 12.360324 Anserini +test3503 Q0 1501570 15 12.288212 Anserini +test3503 Q0 3062632 16 12.254176 Anserini +test3503 Q0 1611464 17 12.213064 Anserini +test3503 Q0 3771025 18 12.211310 Anserini +test3503 Q0 232464 19 12.150761 Anserini +test3503 Q0 8936249 20 12.144531 Anserini +test3503 Q0 15673638 21 12.071143 Anserini +test3503 Q0 6064243 22 12.002752 Anserini +test3503 Q0 232418 23 12.002104 Anserini +test3503 Q0 10948836 24 11.974640 Anserini +test3503 Q0 605353 25 11.918736 Anserini +test3503 Q0 18834298 26 11.910759 Anserini +test3503 Q0 172319 27 11.908073 Anserini +test3503 Q0 9278145 28 11.908073 Anserini +test3503 Q0 15387369 29 11.896013 Anserini +test3503 Q0 1395112 30 11.896013 Anserini +test3504 Q0 12524473 1 8.614209 Anserini +test3504 Q0 7341043 2 8.337770 Anserini +test3504 Q0 5500123 3 8.330384 Anserini +test3504 Q0 46034 4 8.122552 Anserini +test3504 Q0 11176157 5 7.942889 Anserini +test3504 Q0 13825622 6 7.807608 Anserini +test3504 Q0 13825625 7 7.807608 Anserini +test3504 Q0 13135923 8 7.802990 Anserini +test3504 Q0 1740679 9 7.799997 Anserini +test3504 Q0 13349510 10 7.781446 Anserini +test3504 Q0 12160074 11 7.776303 Anserini +test3504 Q0 13806741 12 7.754737 Anserini +test3504 Q0 12524440 13 7.734617 Anserini +test3504 Q0 4700081 14 7.710351 Anserini +test3504 Q0 17226901 15 7.684484 Anserini +test3504 Q0 10004755 16 7.644711 Anserini +test3504 Q0 8960492 17 7.633295 Anserini +test3504 Q0 2349645 18 7.633295 Anserini +test3504 Q0 16873741 19 7.630750 Anserini +test3504 Q0 9860492 20 7.626571 Anserini +test3504 Q0 12972284 21 7.616921 Anserini +test3504 Q0 17618604 22 7.608333 Anserini +test3504 Q0 6347674 23 7.605104 Anserini +test3504 Q0 1554021 24 7.599232 Anserini +test3504 Q0 19617963 25 7.589092 Anserini +test3504 Q0 4594590 26 7.569456 Anserini +test3504 Q0 10603476 27 7.557074 Anserini +test3504 Q0 11113791 28 7.549370 Anserini +test3504 Q0 19973828 29 7.541556 Anserini +test3504 Q0 13884318 30 7.539338 Anserini +test3505 Q0 198544 1 17.240480 Anserini +test3505 Q0 16105811 2 16.269079 Anserini +test3505 Q0 16362198 3 15.913582 Anserini +test3505 Q0 198511 4 15.876144 Anserini +test3505 Q0 5198603 5 15.423335 Anserini +test3505 Q0 13043510 6 15.380957 Anserini +test3505 Q0 20666628 7 15.352865 Anserini +test3505 Q0 17038763 8 15.288027 Anserini +test3505 Q0 11504608 9 15.007316 Anserini +test3505 Q0 436395 10 14.997062 Anserini +test3505 Q0 15337419 11 14.971558 Anserini +test3505 Q0 20424348 12 14.727341 Anserini +test3505 Q0 14438170 13 14.645784 Anserini +test3505 Q0 16362191 14 14.615364 Anserini +test3505 Q0 198513 15 14.568595 Anserini +test3505 Q0 21005286 16 14.552459 Anserini +test3505 Q0 19629886 17 14.420959 Anserini +test3505 Q0 16105814 18 14.322701 Anserini +test3505 Q0 198499 19 14.319548 Anserini +test3505 Q0 12931248 20 14.299893 Anserini +test3505 Q0 15422038 21 14.207051 Anserini +test3505 Q0 13373216 22 14.198636 Anserini +test3505 Q0 198528 23 14.149931 Anserini +test3505 Q0 16362188 24 14.144232 Anserini +test3505 Q0 198527 25 14.106518 Anserini +test3505 Q0 20370507 26 14.100219 Anserini +test3505 Q0 12931254 27 14.097762 Anserini +test3505 Q0 17038762 28 14.078551 Anserini +test3505 Q0 16643158 29 14.057743 Anserini +test3505 Q0 12711613 30 14.006802 Anserini +test3506 Q0 5477480 1 10.657939 Anserini +test3506 Q0 12413891 2 9.889785 Anserini +test3506 Q0 5477483 3 9.727586 Anserini +test3506 Q0 8487955 4 9.704695 Anserini +test3506 Q0 11886835 5 9.690027 Anserini +test3506 Q0 16778248 6 9.663871 Anserini +test3506 Q0 12908937 7 9.561872 Anserini +test3506 Q0 2999707 8 9.531556 Anserini +test3506 Q0 3614643 9 9.479889 Anserini +test3506 Q0 2271180 10 9.417449 Anserini +test3506 Q0 3008632 11 9.382243 Anserini +test3506 Q0 14027706 12 9.379484 Anserini +test3506 Q0 6030106 13 9.379034 Anserini +test3506 Q0 3645380 14 9.357378 Anserini +test3506 Q0 5978595 15 9.341479 Anserini +test3506 Q0 4087394 16 9.338279 Anserini +test3506 Q0 3614641 17 9.318177 Anserini +test3506 Q0 13897467 18 9.262605 Anserini +test3506 Q0 4646769 19 9.232599 Anserini +test3506 Q0 15738167 20 9.226121 Anserini +test3506 Q0 17374714 21 9.158226 Anserini +test3506 Q0 18966414 22 9.158226 Anserini +test3506 Q0 17657616 23 9.120827 Anserini +test3506 Q0 1453833 24 9.112288 Anserini +test3506 Q0 9481157 25 9.098501 Anserini +test3506 Q0 8620521 26 9.092923 Anserini +test3506 Q0 19585193 27 9.092566 Anserini +test3506 Q0 15738178 28 9.075194 Anserini +test3506 Q0 2021297 29 9.067929 Anserini +test3506 Q0 13248726 30 9.067929 Anserini +test3507 Q0 15793431 1 16.019455 Anserini +test3507 Q0 9519098 2 15.112899 Anserini +test3507 Q0 1916463 3 14.769163 Anserini +test3507 Q0 2705349 4 14.668556 Anserini +test3507 Q0 16664976 5 14.653130 Anserini +test3507 Q0 14075003 6 14.496796 Anserini +test3507 Q0 6288580 7 14.417908 Anserini +test3507 Q0 7642981 8 14.250954 Anserini +test3507 Q0 1296386 9 14.043537 Anserini +test3507 Q0 7111314 10 13.948627 Anserini +test3507 Q0 19788144 11 13.906116 Anserini +test3507 Q0 15346537 12 13.895452 Anserini +test3507 Q0 14711909 13 13.873116 Anserini +test3507 Q0 8527920 14 13.863018 Anserini +test3507 Q0 2828692 15 13.858415 Anserini +test3507 Q0 18771381 16 13.821995 Anserini +test3507 Q0 19513617 17 13.686503 Anserini +test3507 Q0 1816814 18 13.454848 Anserini +test3507 Q0 4637910 19 13.401365 Anserini +test3507 Q0 13776493 20 13.394328 Anserini +test3507 Q0 2463117 21 13.356184 Anserini +test3507 Q0 11595353 22 13.307570 Anserini +test3507 Q0 7703536 23 13.196050 Anserini +test3507 Q0 1719557 24 13.170338 Anserini +test3507 Q0 3608445 25 13.137337 Anserini +test3507 Q0 2719078 26 13.136487 Anserini +test3507 Q0 468435 27 13.092428 Anserini +test3507 Q0 11598955 28 13.085609 Anserini +test3507 Q0 5307701 29 12.973840 Anserini +test3507 Q0 19858768 30 12.965340 Anserini +test3508 Q0 20662857 1 13.434268 Anserini +test3508 Q0 19305458 2 12.985838 Anserini +test3508 Q0 13630220 3 12.792454 Anserini +test3508 Q0 20150788 4 12.106791 Anserini +test3508 Q0 6340078 5 12.022746 Anserini +test3508 Q0 11936885 6 11.935090 Anserini +test3508 Q0 14308157 7 11.890232 Anserini +test3508 Q0 16750126 8 11.879523 Anserini +test3508 Q0 19305450 9 11.838436 Anserini +test3508 Q0 20250640 10 11.795405 Anserini +test3508 Q0 16029214 11 11.756832 Anserini +test3508 Q0 12890515 12 11.724106 Anserini +test3508 Q0 17611272 13 11.682215 Anserini +test3508 Q0 5876566 14 11.664458 Anserini +test3508 Q0 6843425 15 11.620436 Anserini +test3508 Q0 10682776 16 11.490258 Anserini +test3508 Q0 20170160 17 11.485852 Anserini +test3508 Q0 8763406 18 11.471485 Anserini +test3508 Q0 8684312 19 11.435232 Anserini +test3508 Q0 20134187 20 11.397965 Anserini +test3508 Q0 15647525 21 11.346113 Anserini +test3508 Q0 3681021 22 11.330307 Anserini +test3508 Q0 6446262 23 11.323226 Anserini +test3508 Q0 12485233 24 11.267014 Anserini +test3508 Q0 13385388 25 11.223404 Anserini +test3508 Q0 13385389 26 11.223404 Anserini +test3508 Q0 20913187 27 11.191994 Anserini +test3508 Q0 6327042 28 11.177416 Anserini +test3508 Q0 4525132 29 11.158623 Anserini +test3508 Q0 20282962 30 11.148607 Anserini +test3509 Q0 853932 1 16.443214 Anserini +test3509 Q0 853934 2 13.760509 Anserini +test3509 Q0 532327 3 13.443649 Anserini +test3509 Q0 532310 4 13.136189 Anserini +test3509 Q0 15638834 5 12.996437 Anserini +test3509 Q0 853916 6 12.856668 Anserini +test3509 Q0 10310148 7 12.664811 Anserini +test3509 Q0 20116518 8 12.509295 Anserini +test3509 Q0 16690383 9 12.373497 Anserini +test3509 Q0 853921 10 12.360703 Anserini +test3509 Q0 853935 11 12.286269 Anserini +test3509 Q0 15638836 12 12.283909 Anserini +test3509 Q0 853919 13 12.256016 Anserini +test3509 Q0 5197506 14 12.088052 Anserini +test3509 Q0 853924 15 12.071179 Anserini +test3509 Q0 15877032 16 11.966305 Anserini +test3509 Q0 13394706 17 11.898867 Anserini +test3509 Q0 5735001 18 11.742381 Anserini +test3509 Q0 5197509 19 11.722308 Anserini +test3509 Q0 20988724 20 11.693457 Anserini +test3509 Q0 9951992 21 11.614682 Anserini +test3509 Q0 12448579 22 11.599691 Anserini +test3509 Q0 20988727 23 11.599691 Anserini +test3509 Q0 8055631 24 11.560499 Anserini +test3509 Q0 8055633 25 11.560499 Anserini +test3509 Q0 853937 26 11.560499 Anserini +test3509 Q0 853930 27 11.552279 Anserini +test3509 Q0 853925 28 11.503644 Anserini +test3509 Q0 5734997 29 11.500099 Anserini +test3509 Q0 16690377 30 11.483289 Anserini +test351 Q0 8286801 1 12.293223 Anserini +test351 Q0 19595502 2 11.728850 Anserini +test351 Q0 8286909 3 11.510441 Anserini +test351 Q0 203330 4 11.444855 Anserini +test351 Q0 6705803 5 11.431467 Anserini +test351 Q0 8286908 6 11.302889 Anserini +test351 Q0 14785704 7 11.302889 Anserini +test351 Q0 12591462 8 11.266600 Anserini +test351 Q0 8286826 9 11.255812 Anserini +test351 Q0 11187112 10 11.249620 Anserini +test351 Q0 3609635 11 11.189572 Anserini +test351 Q0 8286761 12 11.178001 Anserini +test351 Q0 14000017 13 11.133471 Anserini +test351 Q0 4788537 14 11.133200 Anserini +test351 Q0 425502 15 11.063526 Anserini +test351 Q0 8286887 16 11.011600 Anserini +test351 Q0 257993 17 11.008167 Anserini +test351 Q0 15934631 18 10.980088 Anserini +test351 Q0 257998 19 10.977547 Anserini +test351 Q0 6705798 20 10.919658 Anserini +test351 Q0 18611792 21 10.906965 Anserini +test351 Q0 257989 22 10.841997 Anserini +test351 Q0 8286762 23 10.838749 Anserini +test351 Q0 14785693 24 10.799007 Anserini +test351 Q0 4537346 25 10.745575 Anserini +test351 Q0 8286921 26 10.744019 Anserini +test351 Q0 4788536 27 10.726915 Anserini +test351 Q0 14785705 28 10.718445 Anserini +test351 Q0 203310 29 10.634020 Anserini +test351 Q0 14785737 30 10.602268 Anserini +test3510 Q0 7751652 1 14.825718 Anserini +test3510 Q0 8316489 2 14.765829 Anserini +test3510 Q0 886888 3 14.422549 Anserini +test3510 Q0 397152 4 14.079576 Anserini +test3510 Q0 886884 5 13.975254 Anserini +test3510 Q0 79996 6 13.769874 Anserini +test3510 Q0 886887 7 13.469648 Anserini +test3510 Q0 886897 8 13.079763 Anserini +test3510 Q0 886896 9 12.971130 Anserini +test3510 Q0 16472356 10 12.940117 Anserini +test3510 Q0 4407532 11 12.831553 Anserini +test3510 Q0 4529595 12 12.752850 Anserini +test3510 Q0 6796879 13 12.744927 Anserini +test3510 Q0 9449173 14 12.626004 Anserini +test3510 Q0 4841501 15 12.610810 Anserini +test3510 Q0 20468534 16 12.431670 Anserini +test3510 Q0 5729797 17 12.322123 Anserini +test3510 Q0 9449168 18 12.220819 Anserini +test3510 Q0 9451333 19 12.170036 Anserini +test3510 Q0 9449181 20 12.158886 Anserini +test3510 Q0 397174 21 11.529261 Anserini +test3510 Q0 80033 22 11.283531 Anserini +test3510 Q0 12284636 23 11.128653 Anserini +test3510 Q0 1900365 24 11.063732 Anserini +test3510 Q0 397183 25 10.997522 Anserini +test3510 Q0 7000732 26 10.964405 Anserini +test3510 Q0 17620904 27 10.875038 Anserini +test3510 Q0 8855257 28 10.605118 Anserini +test3510 Q0 6645881 29 10.520494 Anserini +test3510 Q0 5259088 30 10.422006 Anserini +test3511 Q0 12718896 1 13.562595 Anserini +test3511 Q0 17238363 2 13.367957 Anserini +test3511 Q0 9579484 3 12.992799 Anserini +test3511 Q0 9579482 4 12.970664 Anserini +test3511 Q0 14922190 5 12.576364 Anserini +test3511 Q0 9200656 6 12.573972 Anserini +test3511 Q0 3784866 7 12.106150 Anserini +test3511 Q0 3784870 8 12.106150 Anserini +test3511 Q0 3865114 9 11.940848 Anserini +test3511 Q0 12938336 10 11.912343 Anserini +test3511 Q0 8365560 11 11.846258 Anserini +test3511 Q0 8365584 12 11.846258 Anserini +test3511 Q0 4089488 13 11.846258 Anserini +test3511 Q0 13666445 14 11.809580 Anserini +test3511 Q0 8086477 15 11.792318 Anserini +test3511 Q0 4891028 16 11.691072 Anserini +test3511 Q0 4891025 17 11.659331 Anserini +test3511 Q0 15004559 18 11.634576 Anserini +test3511 Q0 20349821 19 11.582772 Anserini +test3511 Q0 5314170 20 11.579111 Anserini +test3511 Q0 15858559 21 11.579111 Anserini +test3511 Q0 17415138 22 11.570035 Anserini +test3511 Q0 4891027 23 11.564110 Anserini +test3511 Q0 2835819 24 11.483199 Anserini +test3511 Q0 4891026 25 11.472689 Anserini +test3511 Q0 11722832 26 11.447576 Anserini +test3511 Q0 18836441 27 11.447576 Anserini +test3511 Q0 10716784 28 11.421210 Anserini +test3511 Q0 762284 29 11.421210 Anserini +test3511 Q0 17346756 30 11.407432 Anserini +test3512 Q0 9768410 1 27.212404 Anserini +test3512 Q0 9768428 2 26.130981 Anserini +test3512 Q0 509805 3 23.651114 Anserini +test3512 Q0 14335242 4 23.556343 Anserini +test3512 Q0 14335259 5 22.692463 Anserini +test3512 Q0 509827 6 22.326864 Anserini +test3512 Q0 14930661 7 21.755173 Anserini +test3512 Q0 509804 8 21.703905 Anserini +test3512 Q0 8851293 9 21.570444 Anserini +test3512 Q0 3313278 10 21.325964 Anserini +test3512 Q0 14335248 11 21.159363 Anserini +test3512 Q0 2789940 12 21.094608 Anserini +test3512 Q0 509811 13 20.831696 Anserini +test3512 Q0 8691709 14 20.202139 Anserini +test3512 Q0 509807 15 19.988911 Anserini +test3512 Q0 509814 16 19.967302 Anserini +test3512 Q0 13895903 17 19.951998 Anserini +test3512 Q0 10723841 18 19.753157 Anserini +test3512 Q0 11430611 19 19.710571 Anserini +test3512 Q0 6964342 20 19.621515 Anserini +test3512 Q0 3392868 21 19.461786 Anserini +test3512 Q0 6087748 22 19.258572 Anserini +test3512 Q0 5991774 23 19.180948 Anserini +test3512 Q0 509809 24 19.149668 Anserini +test3512 Q0 8851311 25 19.117863 Anserini +test3512 Q0 509834 26 18.904284 Anserini +test3512 Q0 3277723 27 18.860155 Anserini +test3512 Q0 14930663 28 18.840107 Anserini +test3512 Q0 9768414 29 18.826506 Anserini +test3512 Q0 2046565 30 18.794563 Anserini +test3513 Q0 3426264 1 14.494622 Anserini +test3513 Q0 5253021 2 12.457325 Anserini +test3513 Q0 18653309 3 11.477952 Anserini +test3513 Q0 12396660 4 11.469913 Anserini +test3513 Q0 5549787 5 11.395416 Anserini +test3513 Q0 9349266 6 11.367184 Anserini +test3513 Q0 3630502 7 11.269204 Anserini +test3513 Q0 17186001 8 11.103825 Anserini +test3513 Q0 20437314 9 11.094281 Anserini +test3513 Q0 2942879 10 10.717390 Anserini +test3513 Q0 5890074 11 10.573506 Anserini +test3513 Q0 5490064 12 10.521534 Anserini +test3513 Q0 9151115 13 10.501566 Anserini +test3513 Q0 2299083 14 10.500302 Anserini +test3513 Q0 9733388 15 10.483606 Anserini +test3513 Q0 11497371 16 10.383291 Anserini +test3513 Q0 19898586 17 10.298903 Anserini +test3513 Q0 7327831 18 10.274932 Anserini +test3513 Q0 18465042 19 10.182336 Anserini +test3513 Q0 791392 20 10.181587 Anserini +test3513 Q0 15257594 21 10.172255 Anserini +test3513 Q0 11934359 22 10.165855 Anserini +test3513 Q0 13265744 23 10.137601 Anserini +test3513 Q0 9576851 24 10.115781 Anserini +test3513 Q0 15805707 25 10.090160 Anserini +test3513 Q0 19939302 26 10.055106 Anserini +test3513 Q0 4810566 27 9.994287 Anserini +test3513 Q0 14842375 28 9.988347 Anserini +test3513 Q0 14801619 29 9.972675 Anserini +test3513 Q0 2007713 30 9.971346 Anserini +test3514 Q0 661546 1 16.747568 Anserini +test3514 Q0 10726716 2 15.135852 Anserini +test3514 Q0 661582 3 14.559698 Anserini +test3514 Q0 7891903 4 14.426260 Anserini +test3514 Q0 17818290 5 13.302601 Anserini +test3514 Q0 16348896 6 13.280991 Anserini +test3514 Q0 661711 7 13.209201 Anserini +test3514 Q0 20246921 8 13.092276 Anserini +test3514 Q0 18106527 9 13.061316 Anserini +test3514 Q0 18106524 10 13.061316 Anserini +test3514 Q0 18226745 11 12.575353 Anserini +test3514 Q0 4143820 12 12.038412 Anserini +test3514 Q0 15873186 13 11.930609 Anserini +test3514 Q0 11055882 14 11.787728 Anserini +test3514 Q0 11055881 15 11.680504 Anserini +test3514 Q0 11550263 16 11.618167 Anserini +test3514 Q0 15873195 17 11.600266 Anserini +test3514 Q0 20686840 18 11.551078 Anserini +test3514 Q0 14752155 19 11.546508 Anserini +test3514 Q0 9887598 20 11.367487 Anserini +test3514 Q0 7685083 21 11.360170 Anserini +test3514 Q0 19327677 22 11.314938 Anserini +test3514 Q0 16493039 23 11.302213 Anserini +test3514 Q0 1700523 24 11.063465 Anserini +test3514 Q0 12080017 25 11.039618 Anserini +test3514 Q0 16468645 26 11.000157 Anserini +test3514 Q0 20197325 27 10.948462 Anserini +test3514 Q0 9561448 28 10.907725 Anserini +test3514 Q0 14752160 29 10.871612 Anserini +test3514 Q0 17739058 30 10.832108 Anserini +test3515 Q0 12557756 1 12.343347 Anserini +test3515 Q0 11183440 2 12.092890 Anserini +test3515 Q0 8763114 3 11.959801 Anserini +test3515 Q0 18739239 4 11.785860 Anserini +test3515 Q0 7215797 5 11.689563 Anserini +test3515 Q0 12441136 6 11.598845 Anserini +test3515 Q0 12441139 7 11.598845 Anserini +test3515 Q0 12441176 8 11.511951 Anserini +test3515 Q0 12441134 9 11.374721 Anserini +test3515 Q0 14719501 10 11.267159 Anserini +test3515 Q0 14881464 11 11.261733 Anserini +test3515 Q0 7774737 12 11.206612 Anserini +test3515 Q0 19181649 13 11.204909 Anserini +test3515 Q0 19181651 14 11.204909 Anserini +test3515 Q0 12441122 15 11.124589 Anserini +test3515 Q0 960370 16 11.106124 Anserini +test3515 Q0 17187833 17 11.060768 Anserini +test3515 Q0 5233611 18 11.045411 Anserini +test3515 Q0 3951629 19 11.032623 Anserini +test3515 Q0 12208592 20 11.008456 Anserini +test3515 Q0 18739242 21 10.986414 Anserini +test3515 Q0 19262045 22 10.969433 Anserini +test3515 Q0 12393536 23 10.925803 Anserini +test3515 Q0 18678321 24 10.901709 Anserini +test3515 Q0 19263968 25 10.896987 Anserini +test3515 Q0 12441121 26 10.884452 Anserini +test3515 Q0 10111373 27 10.827419 Anserini +test3515 Q0 4526574 28 10.816568 Anserini +test3515 Q0 16165679 29 10.810284 Anserini +test3515 Q0 14866356 30 10.777001 Anserini +test3516 Q0 187160 1 16.114269 Anserini +test3516 Q0 10604080 2 15.777492 Anserini +test3516 Q0 11749515 3 15.412519 Anserini +test3516 Q0 5092658 4 15.223350 Anserini +test3516 Q0 13385090 5 14.695127 Anserini +test3516 Q0 16349223 6 14.623205 Anserini +test3516 Q0 5092671 7 14.370455 Anserini +test3516 Q0 5092656 8 14.315131 Anserini +test3516 Q0 10604075 9 14.129268 Anserini +test3516 Q0 15014865 10 13.850334 Anserini +test3516 Q0 1997799 11 13.771368 Anserini +test3516 Q0 5305440 12 13.291645 Anserini +test3516 Q0 15014864 13 13.133018 Anserini +test3516 Q0 5092665 14 13.097193 Anserini +test3516 Q0 15964178 15 13.071271 Anserini +test3516 Q0 13850548 16 12.897461 Anserini +test3516 Q0 8580350 17 12.871200 Anserini +test3516 Q0 187098 18 12.865307 Anserini +test3516 Q0 10340244 19 12.854125 Anserini +test3516 Q0 5092661 20 12.825090 Anserini +test3516 Q0 5092663 21 12.732429 Anserini +test3516 Q0 16349222 22 12.539095 Anserini +test3516 Q0 187100 23 12.467929 Anserini +test3516 Q0 4953664 24 12.455595 Anserini +test3516 Q0 4627885 25 12.408782 Anserini +test3516 Q0 19831690 26 12.375780 Anserini +test3516 Q0 2829827 27 12.339615 Anserini +test3516 Q0 18976731 28 12.334735 Anserini +test3516 Q0 13366304 29 12.323236 Anserini +test3516 Q0 187101 30 12.251021 Anserini +test3517 Q0 17281173 1 15.774180 Anserini +test3517 Q0 19673817 2 15.273037 Anserini +test3517 Q0 19673818 3 14.346666 Anserini +test3517 Q0 17281174 4 13.446862 Anserini +test3517 Q0 10550671 5 13.079388 Anserini +test3517 Q0 17281172 6 13.010450 Anserini +test3517 Q0 19673816 7 12.632525 Anserini +test3517 Q0 19673814 8 12.388709 Anserini +test3517 Q0 19673812 9 12.353893 Anserini +test3517 Q0 17281170 10 12.353453 Anserini +test3517 Q0 19673813 11 12.309778 Anserini +test3517 Q0 17281164 12 12.290939 Anserini +test3517 Q0 19673811 13 12.255787 Anserini +test3517 Q0 20416215 14 11.873472 Anserini +test3517 Q0 8034998 15 11.730055 Anserini +test3517 Q0 19673815 16 11.590590 Anserini +test3517 Q0 10550667 17 11.539745 Anserini +test3517 Q0 10550661 18 11.279119 Anserini +test3517 Q0 10550660 19 11.196022 Anserini +test3517 Q0 6477173 20 11.147024 Anserini +test3517 Q0 19673824 21 10.938740 Anserini +test3517 Q0 10550670 22 10.746441 Anserini +test3517 Q0 8492598 23 10.326039 Anserini +test3517 Q0 10550659 24 10.324752 Anserini +test3517 Q0 10550662 25 10.268279 Anserini +test3517 Q0 4832566 26 10.148099 Anserini +test3517 Q0 7529271 27 10.041270 Anserini +test3517 Q0 10550664 28 9.905033 Anserini +test3517 Q0 9975490 29 9.849773 Anserini +test3517 Q0 9787263 30 9.687017 Anserini +test3518 Q0 20896411 1 14.820941 Anserini +test3518 Q0 8856798 2 14.276927 Anserini +test3518 Q0 5315442 3 13.961379 Anserini +test3518 Q0 16908510 4 13.826670 Anserini +test3518 Q0 14663336 5 13.704816 Anserini +test3518 Q0 7287287 6 13.090769 Anserini +test3518 Q0 4057418 7 12.780357 Anserini +test3518 Q0 4756661 8 12.713354 Anserini +test3518 Q0 3031781 9 12.281622 Anserini +test3518 Q0 443277 10 12.233931 Anserini +test3518 Q0 19175820 11 12.096748 Anserini +test3518 Q0 5413508 12 12.023031 Anserini +test3518 Q0 284353 13 11.990847 Anserini +test3518 Q0 11116511 14 11.944994 Anserini +test3518 Q0 6980872 15 11.911798 Anserini +test3518 Q0 290125 16 11.765575 Anserini +test3518 Q0 11869369 17 11.757552 Anserini +test3518 Q0 15163437 18 11.743957 Anserini +test3518 Q0 11757609 19 11.741722 Anserini +test3518 Q0 8856847 20 11.735279 Anserini +test3518 Q0 17443386 21 11.620121 Anserini +test3518 Q0 4646594 22 11.481198 Anserini +test3518 Q0 20896412 23 11.471312 Anserini +test3518 Q0 2071026 24 11.375826 Anserini +test3518 Q0 12469300 25 11.307422 Anserini +test3518 Q0 18808212 26 11.152515 Anserini +test3518 Q0 14776075 27 11.140590 Anserini +test3518 Q0 11596415 28 11.102044 Anserini +test3518 Q0 2621001 29 11.088029 Anserini +test3518 Q0 13514871 30 11.088029 Anserini +test3519 Q0 4965683 1 16.388611 Anserini +test3519 Q0 7867802 2 16.269621 Anserini +test3519 Q0 7867778 3 16.260429 Anserini +test3519 Q0 2934177 4 16.054647 Anserini +test3519 Q0 4965695 5 16.040110 Anserini +test3519 Q0 8538190 6 15.554934 Anserini +test3519 Q0 8538180 7 15.427762 Anserini +test3519 Q0 8538217 8 15.427762 Anserini +test3519 Q0 5061963 9 14.848747 Anserini +test3519 Q0 2934162 10 14.775511 Anserini +test3519 Q0 4965702 11 14.737359 Anserini +test3519 Q0 4965706 12 14.665403 Anserini +test3519 Q0 4965685 13 14.303496 Anserini +test3519 Q0 8538191 14 13.963760 Anserini +test3519 Q0 4965684 15 13.896680 Anserini +test3519 Q0 7695920 16 13.863460 Anserini +test3519 Q0 10345170 17 13.710402 Anserini +test3519 Q0 10345156 18 13.669254 Anserini +test3519 Q0 4965703 19 13.591832 Anserini +test3519 Q0 2934176 20 13.350277 Anserini +test3519 Q0 8538213 21 13.344163 Anserini +test3519 Q0 13185767 22 13.232553 Anserini +test3519 Q0 5465584 23 13.201504 Anserini +test3519 Q0 20291680 24 13.156657 Anserini +test3519 Q0 19139816 25 13.103063 Anserini +test3519 Q0 7867800 26 13.056002 Anserini +test3519 Q0 8538216 27 12.919695 Anserini +test3519 Q0 12943255 28 12.917465 Anserini +test3519 Q0 11389707 29 12.759970 Anserini +test3519 Q0 11389747 30 12.759970 Anserini +test352 Q0 18870558 1 14.115067 Anserini +test352 Q0 4407707 2 12.950012 Anserini +test352 Q0 9453929 3 12.423402 Anserini +test352 Q0 6215675 4 12.182538 Anserini +test352 Q0 3742846 5 12.124289 Anserini +test352 Q0 17737184 6 12.002595 Anserini +test352 Q0 1577947 7 11.938256 Anserini +test352 Q0 9453927 8 11.937065 Anserini +test352 Q0 9453932 9 11.807377 Anserini +test352 Q0 8039790 10 11.712929 Anserini +test352 Q0 8039782 11 11.530905 Anserini +test352 Q0 6030585 12 11.525420 Anserini +test352 Q0 10658895 13 11.417666 Anserini +test352 Q0 9013914 14 11.315965 Anserini +test352 Q0 11218574 15 11.248604 Anserini +test352 Q0 3742859 16 11.242226 Anserini +test352 Q0 19130702 17 11.181504 Anserini +test352 Q0 8272120 18 11.148903 Anserini +test352 Q0 11735633 19 11.123698 Anserini +test352 Q0 17605915 20 11.084163 Anserini +test352 Q0 8522189 21 11.069903 Anserini +test352 Q0 18318629 22 11.062732 Anserini +test352 Q0 9668586 23 11.022524 Anserini +test352 Q0 3742833 24 11.008123 Anserini +test352 Q0 18870457 25 10.962280 Anserini +test352 Q0 4204202 26 10.794490 Anserini +test352 Q0 10034284 27 10.786018 Anserini +test352 Q0 9013922 28 10.777873 Anserini +test352 Q0 3742835 29 10.767768 Anserini +test352 Q0 9960087 30 10.738698 Anserini +test3520 Q0 2121440 1 17.081648 Anserini +test3520 Q0 209825 2 16.235086 Anserini +test3520 Q0 2121446 3 16.069199 Anserini +test3520 Q0 1927079 4 15.244135 Anserini +test3520 Q0 5514650 5 15.010090 Anserini +test3520 Q0 4934032 6 14.787706 Anserini +test3520 Q0 7649964 7 14.700960 Anserini +test3520 Q0 5459359 8 14.528543 Anserini +test3520 Q0 4933962 9 14.424189 Anserini +test3520 Q0 4934025 10 14.408029 Anserini +test3520 Q0 427815 11 14.346879 Anserini +test3520 Q0 5336697 12 14.294641 Anserini +test3520 Q0 6396980 13 14.256803 Anserini +test3520 Q0 9282748 14 13.966513 Anserini +test3520 Q0 4934013 15 13.901849 Anserini +test3520 Q0 4934005 16 13.880078 Anserini +test3520 Q0 2733958 17 13.713221 Anserini +test3520 Q0 4848415 18 13.640280 Anserini +test3520 Q0 3668030 19 13.553158 Anserini +test3520 Q0 5514675 20 13.522213 Anserini +test3520 Q0 4934028 21 13.517287 Anserini +test3520 Q0 2734001 22 13.361180 Anserini +test3520 Q0 576756 23 13.341797 Anserini +test3520 Q0 428419 24 13.311617 Anserini +test3520 Q0 4985920 25 13.306166 Anserini +test3520 Q0 15847491 26 13.173931 Anserini +test3520 Q0 9282749 27 13.132447 Anserini +test3520 Q0 10714055 28 13.096773 Anserini +test3520 Q0 209829 29 12.949864 Anserini +test3520 Q0 11826402 30 12.949068 Anserini +test3521 Q0 5640713 1 29.300222 Anserini +test3521 Q0 5640710 2 29.029179 Anserini +test3521 Q0 5640712 3 26.759047 Anserini +test3521 Q0 5640714 4 25.705494 Anserini +test3521 Q0 5640746 5 25.348707 Anserini +test3521 Q0 5640744 6 25.141649 Anserini +test3521 Q0 5640711 7 24.810907 Anserini +test3521 Q0 5640742 8 24.469128 Anserini +test3521 Q0 5640719 9 23.818624 Anserini +test3521 Q0 5640740 10 23.762878 Anserini +test3521 Q0 5640723 11 23.750832 Anserini +test3521 Q0 5640732 12 23.512728 Anserini +test3521 Q0 5640724 13 23.382111 Anserini +test3521 Q0 5640747 14 23.381210 Anserini +test3521 Q0 5640717 15 23.233286 Anserini +test3521 Q0 5640748 16 23.108315 Anserini +test3521 Q0 5640731 17 22.728441 Anserini +test3521 Q0 5640716 18 22.691433 Anserini +test3521 Q0 3180376 19 22.476072 Anserini +test3521 Q0 5484701 20 22.220007 Anserini +test3521 Q0 5640743 21 21.915710 Anserini +test3521 Q0 5640715 22 21.895716 Anserini +test3521 Q0 5640728 23 21.838140 Anserini +test3521 Q0 5640718 24 21.837692 Anserini +test3521 Q0 5640721 25 21.717041 Anserini +test3521 Q0 5640736 26 21.691351 Anserini +test3521 Q0 5640722 27 21.522076 Anserini +test3521 Q0 5640751 28 21.491564 Anserini +test3521 Q0 5023152 29 21.407953 Anserini +test3521 Q0 3754413 30 21.295551 Anserini +test3522 Q0 20271311 1 19.886063 Anserini +test3522 Q0 20271358 2 19.832428 Anserini +test3522 Q0 20270832 3 19.619133 Anserini +test3522 Q0 20270921 4 19.363266 Anserini +test3522 Q0 20271310 5 19.363266 Anserini +test3522 Q0 20267846 6 19.280153 Anserini +test3522 Q0 9833408 7 18.751347 Anserini +test3522 Q0 19248384 8 18.730782 Anserini +test3522 Q0 19248382 9 18.692701 Anserini +test3522 Q0 20270200 10 18.660563 Anserini +test3522 Q0 20271432 11 18.646133 Anserini +test3522 Q0 2759731 12 18.624157 Anserini +test3522 Q0 20270845 13 18.527847 Anserini +test3522 Q0 20270201 14 18.517569 Anserini +test3522 Q0 20270922 15 18.411953 Anserini +test3522 Q0 20267905 16 18.411953 Anserini +test3522 Q0 16367680 17 18.368771 Anserini +test3522 Q0 9437196 18 18.338835 Anserini +test3522 Q0 19248383 19 18.269646 Anserini +test3522 Q0 20270844 20 18.203444 Anserini +test3522 Q0 2759735 21 18.147196 Anserini +test3522 Q0 16367679 22 18.111664 Anserini +test3522 Q0 8937374 23 18.087620 Anserini +test3522 Q0 15150700 24 17.756058 Anserini +test3522 Q0 2709287 25 17.639072 Anserini +test3522 Q0 18162139 26 17.437109 Anserini +test3522 Q0 18417190 27 17.437109 Anserini +test3522 Q0 5350012 28 17.437109 Anserini +test3522 Q0 9399272 29 17.374207 Anserini +test3522 Q0 20217211 30 17.158392 Anserini +test3523 Q0 4188210 1 12.582835 Anserini +test3523 Q0 344121 2 12.077405 Anserini +test3523 Q0 19314587 3 12.066435 Anserini +test3523 Q0 12992799 4 11.778180 Anserini +test3523 Q0 19965985 5 11.488505 Anserini +test3523 Q0 1002412 6 11.293360 Anserini +test3523 Q0 344106 7 11.243333 Anserini +test3523 Q0 2797604 8 11.212170 Anserini +test3523 Q0 3639663 9 11.173610 Anserini +test3523 Q0 1283453 10 11.144825 Anserini +test3523 Q0 8250727 11 11.047780 Anserini +test3523 Q0 11835424 12 10.944160 Anserini +test3523 Q0 5539486 13 10.900556 Anserini +test3523 Q0 9402003 14 10.867820 Anserini +test3523 Q0 1452331 15 10.847775 Anserini +test3523 Q0 111416 16 10.801274 Anserini +test3523 Q0 6394835 17 10.775304 Anserini +test3523 Q0 2104790 18 10.757515 Anserini +test3523 Q0 5206776 19 10.756665 Anserini +test3523 Q0 164743 20 10.747629 Anserini +test3523 Q0 12270486 21 10.735272 Anserini +test3523 Q0 4165115 22 10.732630 Anserini +test3523 Q0 4139702 23 10.621404 Anserini +test3523 Q0 5112657 24 10.585726 Anserini +test3523 Q0 14665823 25 10.566396 Anserini +test3523 Q0 8694004 26 10.546965 Anserini +test3523 Q0 7678607 27 10.507619 Anserini +test3523 Q0 18356782 28 10.479357 Anserini +test3523 Q0 2022854 29 10.449318 Anserini +test3523 Q0 14665822 30 10.410426 Anserini +test3524 Q0 4327678 1 16.780375 Anserini +test3524 Q0 17925470 2 15.444216 Anserini +test3524 Q0 18405036 3 15.120489 Anserini +test3524 Q0 7312402 4 14.676059 Anserini +test3524 Q0 7312403 5 14.676059 Anserini +test3524 Q0 9064875 6 13.828470 Anserini +test3524 Q0 4327677 7 13.680784 Anserini +test3524 Q0 4572242 8 13.513909 Anserini +test3524 Q0 8363129 9 12.959099 Anserini +test3524 Q0 191232 10 12.831516 Anserini +test3524 Q0 1408404 11 12.777880 Anserini +test3524 Q0 18405008 12 12.733555 Anserini +test3524 Q0 18405040 13 12.646263 Anserini +test3524 Q0 18405007 14 12.611401 Anserini +test3524 Q0 1746451 15 12.611401 Anserini +test3524 Q0 1746452 16 12.611401 Anserini +test3524 Q0 12932193 17 12.493265 Anserini +test3524 Q0 18405011 18 12.492960 Anserini +test3524 Q0 11039521 19 12.456247 Anserini +test3524 Q0 11000267 20 12.380707 Anserini +test3524 Q0 10063059 21 12.125887 Anserini +test3524 Q0 10553698 22 12.075882 Anserini +test3524 Q0 18405009 23 11.982563 Anserini +test3524 Q0 11039526 24 11.842560 Anserini +test3524 Q0 16097905 25 11.781954 Anserini +test3524 Q0 12973127 26 11.773804 Anserini +test3524 Q0 8363130 27 11.713432 Anserini +test3524 Q0 18405042 28 11.552947 Anserini +test3524 Q0 8365931 29 11.447880 Anserini +test3524 Q0 4060647 30 11.437485 Anserini +test3525 Q0 1102003 1 11.796158 Anserini +test3525 Q0 7485081 2 11.656992 Anserini +test3525 Q0 313104 3 11.004184 Anserini +test3525 Q0 4349673 4 10.754070 Anserini +test3525 Q0 1101997 5 10.663908 Anserini +test3525 Q0 20767620 6 10.283156 Anserini +test3525 Q0 15693693 7 10.092388 Anserini +test3525 Q0 3337605 8 9.985957 Anserini +test3525 Q0 19511 9 9.908169 Anserini +test3525 Q0 2306683 10 9.907220 Anserini +test3525 Q0 20161597 11 9.866623 Anserini +test3525 Q0 18481550 12 9.861982 Anserini +test3525 Q0 6504540 13 9.693067 Anserini +test3525 Q0 20161600 14 9.582128 Anserini +test3525 Q0 313082 15 9.511524 Anserini +test3525 Q0 20161601 16 9.492889 Anserini +test3525 Q0 3337584 17 9.391501 Anserini +test3525 Q0 313103 18 9.379468 Anserini +test3525 Q0 12839460 19 9.357018 Anserini +test3525 Q0 313106 20 9.352209 Anserini +test3525 Q0 9206549 21 9.352209 Anserini +test3525 Q0 9206550 22 9.352209 Anserini +test3525 Q0 8307221 23 9.320583 Anserini +test3525 Q0 19507 24 9.303935 Anserini +test3525 Q0 18481549 25 9.300030 Anserini +test3525 Q0 18491365 26 9.242049 Anserini +test3525 Q0 6504536 27 9.239662 Anserini +test3525 Q0 7485069 28 9.148959 Anserini +test3525 Q0 313108 29 9.142307 Anserini +test3525 Q0 17684 30 9.113803 Anserini +test3526 Q0 18698703 1 16.748196 Anserini +test3526 Q0 18698706 2 16.459209 Anserini +test3526 Q0 18698718 3 15.438667 Anserini +test3526 Q0 20806403 4 14.291035 Anserini +test3526 Q0 17802868 5 14.276932 Anserini +test3526 Q0 11444716 6 14.245047 Anserini +test3526 Q0 11444689 7 14.245047 Anserini +test3526 Q0 19050354 8 14.234115 Anserini +test3526 Q0 16402616 9 14.227462 Anserini +test3526 Q0 15503675 10 14.185974 Anserini +test3526 Q0 15503699 11 14.185974 Anserini +test3526 Q0 20450323 12 14.127963 Anserini +test3526 Q0 15830172 13 14.095707 Anserini +test3526 Q0 13980603 14 14.053185 Anserini +test3526 Q0 16728164 15 14.049108 Anserini +test3526 Q0 13980587 16 14.003270 Anserini +test3526 Q0 16402632 17 13.995715 Anserini +test3526 Q0 17498473 18 13.992537 Anserini +test3526 Q0 18277508 19 13.961141 Anserini +test3526 Q0 17802849 20 13.917761 Anserini +test3526 Q0 6848785 21 13.871861 Anserini +test3526 Q0 15898391 22 13.757422 Anserini +test3526 Q0 15830184 23 13.722434 Anserini +test3526 Q0 9634958 24 13.642515 Anserini +test3526 Q0 6848783 25 13.642515 Anserini +test3526 Q0 9219346 26 13.624275 Anserini +test3526 Q0 16804153 27 13.606249 Anserini +test3526 Q0 17043228 28 13.576980 Anserini +test3526 Q0 17498492 29 13.495838 Anserini +test3526 Q0 5654447 30 13.472445 Anserini +test3527 Q0 11858403 1 21.384188 Anserini +test3527 Q0 10258237 2 20.622520 Anserini +test3527 Q0 12537713 3 19.745615 Anserini +test3527 Q0 9048812 4 19.673342 Anserini +test3527 Q0 2302969 5 19.485836 Anserini +test3527 Q0 289495 6 19.469437 Anserini +test3527 Q0 18959279 7 19.294851 Anserini +test3527 Q0 8457780 8 19.241043 Anserini +test3527 Q0 2120733 9 18.864201 Anserini +test3527 Q0 8457776 10 18.410461 Anserini +test3527 Q0 949443 11 18.121859 Anserini +test3527 Q0 18961388 12 18.007700 Anserini +test3527 Q0 779690 13 18.003218 Anserini +test3527 Q0 4711664 14 17.935583 Anserini +test3527 Q0 3068740 15 17.861423 Anserini +test3527 Q0 1637681 16 17.650969 Anserini +test3527 Q0 537100 17 17.616310 Anserini +test3527 Q0 18959280 18 17.490421 Anserini +test3527 Q0 8790911 19 17.447950 Anserini +test3527 Q0 13380115 20 17.221632 Anserini +test3527 Q0 15408459 21 17.167284 Anserini +test3527 Q0 11177834 22 17.025412 Anserini +test3527 Q0 10806250 23 16.941950 Anserini +test3527 Q0 12088936 24 16.939951 Anserini +test3527 Q0 18950606 25 16.903624 Anserini +test3527 Q0 2406013 26 16.858730 Anserini +test3527 Q0 5176766 27 16.736416 Anserini +test3527 Q0 1752445 28 16.697077 Anserini +test3527 Q0 14282465 29 16.696964 Anserini +test3527 Q0 12088935 30 16.647806 Anserini +test3528 Q0 6653077 1 13.679735 Anserini +test3528 Q0 3599884 2 13.226048 Anserini +test3528 Q0 6652887 3 13.024075 Anserini +test3528 Q0 7017630 4 12.936369 Anserini +test3528 Q0 9288362 5 12.862574 Anserini +test3528 Q0 9288363 6 12.862574 Anserini +test3528 Q0 5044497 7 12.862574 Anserini +test3528 Q0 2991384 8 12.779053 Anserini +test3528 Q0 7017631 9 12.735583 Anserini +test3528 Q0 2991390 10 12.735583 Anserini +test3528 Q0 530435 11 12.538143 Anserini +test3528 Q0 9572234 12 12.326778 Anserini +test3528 Q0 4281178 13 11.961046 Anserini +test3528 Q0 530420 14 11.950385 Anserini +test3528 Q0 4241756 15 11.932852 Anserini +test3528 Q0 2991389 16 11.757652 Anserini +test3528 Q0 530426 17 11.700796 Anserini +test3528 Q0 10167410 18 11.683085 Anserini +test3528 Q0 7340786 19 11.672018 Anserini +test3528 Q0 530413 20 11.640165 Anserini +test3528 Q0 7340766 21 11.640165 Anserini +test3528 Q0 530432 22 11.597851 Anserini +test3528 Q0 530422 23 11.580160 Anserini +test3528 Q0 7340776 24 11.580160 Anserini +test3528 Q0 530429 25 11.580160 Anserini +test3528 Q0 6178273 26 11.580160 Anserini +test3528 Q0 6178274 27 11.580160 Anserini +test3528 Q0 4155331 28 11.580160 Anserini +test3528 Q0 9572224 29 11.580160 Anserini +test3528 Q0 6653074 30 11.580160 Anserini +test3529 Q0 12132454 1 11.637744 Anserini +test3529 Q0 2436826 2 11.120054 Anserini +test3529 Q0 101374 3 11.019098 Anserini +test3529 Q0 101373 4 10.896942 Anserini +test3529 Q0 17763784 5 10.777271 Anserini +test3529 Q0 101381 6 10.744837 Anserini +test3529 Q0 101380 7 10.625433 Anserini +test3529 Q0 12132452 8 10.590973 Anserini +test3529 Q0 101358 9 10.573390 Anserini +test3529 Q0 2920589 10 10.395479 Anserini +test3529 Q0 434520 11 10.361806 Anserini +test3529 Q0 1288581 12 10.351483 Anserini +test3529 Q0 4534583 13 10.351483 Anserini +test3529 Q0 101377 14 10.330376 Anserini +test3529 Q0 12132460 15 10.311839 Anserini +test3529 Q0 12132456 16 10.302062 Anserini +test3529 Q0 101360 17 10.157215 Anserini +test3529 Q0 20641233 18 10.157215 Anserini +test3529 Q0 4534571 19 10.081972 Anserini +test3529 Q0 4534579 20 10.029082 Anserini +test3529 Q0 11431415 21 9.991391 Anserini +test3529 Q0 101361 22 9.898352 Anserini +test3529 Q0 6431701 23 9.857736 Anserini +test3529 Q0 4534599 24 9.852113 Anserini +test3529 Q0 4534569 25 9.852113 Anserini +test3529 Q0 4906047 26 9.813702 Anserini +test3529 Q0 8985100 27 9.802379 Anserini +test3529 Q0 20641234 28 9.783579 Anserini +test3529 Q0 101385 29 9.708336 Anserini +test3529 Q0 101375 30 9.692016 Anserini +test353 Q0 1107415 1 12.731369 Anserini +test353 Q0 7309123 2 11.913135 Anserini +test353 Q0 9131856 3 11.840900 Anserini +test353 Q0 15961872 4 11.642499 Anserini +test353 Q0 2604510 5 11.293081 Anserini +test353 Q0 6021969 6 11.226633 Anserini +test353 Q0 5166421 7 11.090692 Anserini +test353 Q0 20253524 8 10.945502 Anserini +test353 Q0 18012732 9 10.840225 Anserini +test353 Q0 3667515 10 10.732335 Anserini +test353 Q0 20668809 11 10.556143 Anserini +test353 Q0 15334962 12 10.532944 Anserini +test353 Q0 15152049 13 10.506796 Anserini +test353 Q0 2538547 14 10.477907 Anserini +test353 Q0 3783671 15 10.407578 Anserini +test353 Q0 10277168 16 10.403680 Anserini +test353 Q0 13754220 17 10.402693 Anserini +test353 Q0 9834612 18 10.396708 Anserini +test353 Q0 5402385 19 10.361141 Anserini +test353 Q0 9459565 20 10.346280 Anserini +test353 Q0 16981689 21 10.334141 Anserini +test353 Q0 17367166 22 10.324875 Anserini +test353 Q0 6905788 23 10.324209 Anserini +test353 Q0 10848691 24 10.261773 Anserini +test353 Q0 13558387 25 10.242722 Anserini +test353 Q0 9572401 26 10.222416 Anserini +test353 Q0 1485289 27 10.165491 Anserini +test353 Q0 6021972 28 10.158167 Anserini +test353 Q0 9859622 29 10.121676 Anserini +test353 Q0 15961888 30 10.113180 Anserini +test3530 Q0 5793854 1 15.911813 Anserini +test3530 Q0 5793858 2 15.911813 Anserini +test3530 Q0 3798808 3 15.191987 Anserini +test3530 Q0 12742905 4 15.005054 Anserini +test3530 Q0 5799864 5 14.881577 Anserini +test3530 Q0 106494 6 14.743752 Anserini +test3530 Q0 8725365 7 14.597558 Anserini +test3530 Q0 4691243 8 14.485559 Anserini +test3530 Q0 106458 9 14.352321 Anserini +test3530 Q0 106502 10 14.298120 Anserini +test3530 Q0 4639850 11 14.277754 Anserini +test3530 Q0 9131673 12 14.147865 Anserini +test3530 Q0 106518 13 14.042873 Anserini +test3530 Q0 6553508 14 13.989687 Anserini +test3530 Q0 9167327 15 13.919856 Anserini +test3530 Q0 17999738 16 13.872083 Anserini +test3530 Q0 9131681 17 13.811871 Anserini +test3530 Q0 14196881 18 13.658483 Anserini +test3530 Q0 9131694 19 13.655903 Anserini +test3530 Q0 15038231 20 13.474690 Anserini +test3530 Q0 6752666 21 13.428714 Anserini +test3530 Q0 9131708 22 13.357108 Anserini +test3530 Q0 4534040 23 13.211210 Anserini +test3530 Q0 12098089 24 13.126362 Anserini +test3530 Q0 10255873 25 13.091342 Anserini +test3530 Q0 9131692 26 13.019895 Anserini +test3530 Q0 4327966 27 13.005132 Anserini +test3530 Q0 7346196 28 12.887549 Anserini +test3530 Q0 9354071 29 12.847207 Anserini +test3530 Q0 1092120 30 12.830219 Anserini +test3531 Q0 16788205 1 8.071802 Anserini +test3531 Q0 13304673 2 7.790478 Anserini +test3531 Q0 15946881 3 7.696993 Anserini +test3531 Q0 13304688 4 7.669258 Anserini +test3531 Q0 13304740 5 7.653546 Anserini +test3531 Q0 9443221 6 7.606679 Anserini +test3531 Q0 12118094 7 7.570438 Anserini +test3531 Q0 14655142 8 7.550802 Anserini +test3531 Q0 8343414 9 7.537416 Anserini +test3531 Q0 5691159 10 7.514873 Anserini +test3531 Q0 19814223 11 7.503270 Anserini +test3531 Q0 14655137 12 7.470277 Anserini +test3531 Q0 19549095 13 7.444156 Anserini +test3531 Q0 19787292 14 7.399302 Anserini +test3531 Q0 4694684 15 7.337168 Anserini +test3531 Q0 5716485 16 7.319546 Anserini +test3531 Q0 6409068 17 7.308966 Anserini +test3531 Q0 4500318 18 7.303920 Anserini +test3531 Q0 11524658 19 7.221603 Anserini +test3531 Q0 9636602 20 7.202484 Anserini +test3531 Q0 625216 21 7.191890 Anserini +test3531 Q0 12574239 22 7.127901 Anserini +test3531 Q0 10107546 23 7.088271 Anserini +test3531 Q0 20827714 24 7.088271 Anserini +test3531 Q0 18948397 25 7.077223 Anserini +test3531 Q0 18948398 26 7.077223 Anserini +test3531 Q0 9359337 27 7.042446 Anserini +test3531 Q0 8507281 28 7.039048 Anserini +test3531 Q0 11183541 29 7.006473 Anserini +test3531 Q0 16543522 30 6.980464 Anserini +test3532 Q0 9440441 1 16.953615 Anserini +test3532 Q0 2498071 2 16.413563 Anserini +test3532 Q0 2971043 3 16.290161 Anserini +test3532 Q0 3010232 4 16.255682 Anserini +test3532 Q0 3174014 5 16.239351 Anserini +test3532 Q0 3174018 6 16.239351 Anserini +test3532 Q0 6601898 7 16.218330 Anserini +test3532 Q0 373745 8 16.210352 Anserini +test3532 Q0 15971721 9 16.109407 Anserini +test3532 Q0 2971044 10 16.022930 Anserini +test3532 Q0 2725852 11 15.812092 Anserini +test3532 Q0 4669799 12 15.801178 Anserini +test3532 Q0 15971713 13 15.656653 Anserini +test3532 Q0 3174017 14 15.407932 Anserini +test3532 Q0 6135846 15 15.309094 Anserini +test3532 Q0 2971050 16 15.309094 Anserini +test3532 Q0 373749 17 15.213796 Anserini +test3532 Q0 561727 18 15.193863 Anserini +test3532 Q0 9400635 19 15.141033 Anserini +test3532 Q0 5199910 20 15.124987 Anserini +test3532 Q0 3010246 21 15.124069 Anserini +test3532 Q0 5180761 22 15.097720 Anserini +test3532 Q0 1660999 23 15.034899 Anserini +test3532 Q0 6135793 24 15.025131 Anserini +test3532 Q0 14933769 25 15.009001 Anserini +test3532 Q0 17031183 26 14.934170 Anserini +test3532 Q0 19125114 27 14.930975 Anserini +test3532 Q0 2971047 28 14.929516 Anserini +test3532 Q0 6400460 29 14.914035 Anserini +test3532 Q0 9327418 30 14.751580 Anserini +test3533 Q0 5373942 1 21.394730 Anserini +test3533 Q0 6499534 2 21.361486 Anserini +test3533 Q0 2554152 3 21.233335 Anserini +test3533 Q0 6799259 4 20.728363 Anserini +test3533 Q0 2458600 5 20.270937 Anserini +test3533 Q0 6907919 6 20.174026 Anserini +test3533 Q0 4410030 7 20.165661 Anserini +test3533 Q0 2670747 8 20.047068 Anserini +test3533 Q0 4409875 9 19.929972 Anserini +test3533 Q0 2490804 10 19.929972 Anserini +test3533 Q0 4604663 11 19.918962 Anserini +test3533 Q0 3126821 12 19.814341 Anserini +test3533 Q0 17034219 13 19.558590 Anserini +test3533 Q0 17031088 14 19.428198 Anserini +test3533 Q0 5394429 15 19.201591 Anserini +test3533 Q0 6133480 16 19.200285 Anserini +test3533 Q0 5903030 17 19.200285 Anserini +test3533 Q0 6905724 18 19.200285 Anserini +test3533 Q0 4789642 19 19.098295 Anserini +test3533 Q0 6989913 20 18.825176 Anserini +test3533 Q0 2473612 21 18.740971 Anserini +test3533 Q0 2473626 22 18.740971 Anserini +test3533 Q0 3126788 23 18.647871 Anserini +test3533 Q0 3668125 24 18.501850 Anserini +test3533 Q0 358182 25 18.492140 Anserini +test3533 Q0 17034222 26 18.371881 Anserini +test3533 Q0 3018281 27 18.278944 Anserini +test3533 Q0 358510 28 18.269300 Anserini +test3533 Q0 5004713 29 18.263992 Anserini +test3533 Q0 5004723 30 18.263992 Anserini +test3534 Q0 561417 1 12.990541 Anserini +test3534 Q0 10703386 2 12.659530 Anserini +test3534 Q0 879864 3 12.143332 Anserini +test3534 Q0 879865 4 11.968452 Anserini +test3534 Q0 4320681 5 11.884495 Anserini +test3534 Q0 20960229 6 11.685264 Anserini +test3534 Q0 7481869 7 11.677814 Anserini +test3534 Q0 12293842 8 11.445917 Anserini +test3534 Q0 14554079 9 11.443833 Anserini +test3534 Q0 18718263 10 11.408965 Anserini +test3534 Q0 879861 11 11.256589 Anserini +test3534 Q0 8534227 12 11.102888 Anserini +test3534 Q0 879843 13 11.030221 Anserini +test3534 Q0 5643726 14 11.024636 Anserini +test3534 Q0 561413 15 11.010309 Anserini +test3534 Q0 879824 16 10.994816 Anserini +test3534 Q0 2149159 17 10.977535 Anserini +test3534 Q0 5303331 18 10.840537 Anserini +test3534 Q0 19008216 19 10.834464 Anserini +test3534 Q0 6769546 20 10.784500 Anserini +test3534 Q0 879836 21 10.730086 Anserini +test3534 Q0 879852 22 10.680495 Anserini +test3534 Q0 15198172 23 10.679392 Anserini +test3534 Q0 5039147 24 10.678750 Anserini +test3534 Q0 1982800 25 10.671127 Anserini +test3534 Q0 20670365 26 10.654097 Anserini +test3534 Q0 20670364 27 10.601673 Anserini +test3534 Q0 12369071 28 10.544665 Anserini +test3534 Q0 16716988 29 10.520426 Anserini +test3534 Q0 879859 30 10.482696 Anserini +test3535 Q0 19170373 1 20.667477 Anserini +test3535 Q0 19170368 2 20.531120 Anserini +test3535 Q0 19170397 3 19.566599 Anserini +test3535 Q0 19099274 4 19.397806 Anserini +test3535 Q0 19170383 5 18.843948 Anserini +test3535 Q0 17498900 6 18.487442 Anserini +test3535 Q0 14244415 7 18.190567 Anserini +test3535 Q0 19154983 8 18.185200 Anserini +test3535 Q0 18510589 9 18.092239 Anserini +test3535 Q0 18309681 10 17.846848 Anserini +test3535 Q0 19115141 11 17.342697 Anserini +test3535 Q0 13600795 12 17.082979 Anserini +test3535 Q0 19094601 13 16.673389 Anserini +test3535 Q0 19154992 14 16.593281 Anserini +test3535 Q0 19094611 15 16.593281 Anserini +test3535 Q0 19056963 16 16.499565 Anserini +test3535 Q0 14454042 17 16.439323 Anserini +test3535 Q0 19099275 18 16.416542 Anserini +test3535 Q0 14454062 19 16.363415 Anserini +test3535 Q0 19099270 20 16.342403 Anserini +test3535 Q0 14265914 21 16.103434 Anserini +test3535 Q0 19099271 22 16.040770 Anserini +test3535 Q0 19094581 23 15.911152 Anserini +test3535 Q0 19099272 24 15.911152 Anserini +test3535 Q0 19099273 25 15.911152 Anserini +test3535 Q0 19170374 26 15.835613 Anserini +test3535 Q0 13600763 27 15.704815 Anserini +test3535 Q0 19170382 28 15.661966 Anserini +test3535 Q0 19170387 29 15.661966 Anserini +test3535 Q0 19094582 30 15.603930 Anserini +test3536 Q0 79135 1 18.132963 Anserini +test3536 Q0 918790 2 17.705366 Anserini +test3536 Q0 918760 3 17.638006 Anserini +test3536 Q0 918791 4 17.555119 Anserini +test3536 Q0 918777 5 17.406778 Anserini +test3536 Q0 13691823 6 17.399483 Anserini +test3536 Q0 918759 7 17.317442 Anserini +test3536 Q0 956157 8 17.230867 Anserini +test3536 Q0 15249344 9 17.164062 Anserini +test3536 Q0 918763 10 17.046963 Anserini +test3536 Q0 3980900 11 16.961166 Anserini +test3536 Q0 1695252 12 16.842270 Anserini +test3536 Q0 918792 13 16.752670 Anserini +test3536 Q0 1626665 14 16.739239 Anserini +test3536 Q0 918785 15 16.730885 Anserini +test3536 Q0 4338049 16 16.728502 Anserini +test3536 Q0 918779 17 16.635262 Anserini +test3536 Q0 13691833 18 16.586956 Anserini +test3536 Q0 918786 19 16.559145 Anserini +test3536 Q0 13691832 20 16.499981 Anserini +test3536 Q0 304654 21 16.418671 Anserini +test3536 Q0 3270606 22 16.323618 Anserini +test3536 Q0 17569653 23 16.309969 Anserini +test3536 Q0 4900396 24 16.254015 Anserini +test3536 Q0 304656 25 16.209925 Anserini +test3536 Q0 304641 26 16.202330 Anserini +test3536 Q0 918761 27 16.195961 Anserini +test3536 Q0 262312 28 16.054258 Anserini +test3536 Q0 919647 29 16.038427 Anserini +test3536 Q0 918770 30 15.979796 Anserini +test3537 Q0 215313 1 13.431040 Anserini +test3537 Q0 86260 2 13.055711 Anserini +test3537 Q0 10978610 3 12.788036 Anserini +test3537 Q0 2833961 4 12.765729 Anserini +test3537 Q0 1951833 5 12.719389 Anserini +test3537 Q0 3831826 6 12.670975 Anserini +test3537 Q0 15818429 7 12.599082 Anserini +test3537 Q0 14745924 8 12.469816 Anserini +test3537 Q0 10432147 9 12.404036 Anserini +test3537 Q0 12698808 10 12.334578 Anserini +test3537 Q0 13386767 11 12.314577 Anserini +test3537 Q0 5127745 12 12.201150 Anserini +test3537 Q0 595958 13 12.127235 Anserini +test3537 Q0 7211580 14 12.107487 Anserini +test3537 Q0 19714815 15 11.968683 Anserini +test3537 Q0 6914441 16 11.948798 Anserini +test3537 Q0 9404027 17 11.872835 Anserini +test3537 Q0 5966507 18 11.872835 Anserini +test3537 Q0 12774381 19 11.784981 Anserini +test3537 Q0 20556613 20 11.773075 Anserini +test3537 Q0 20556616 21 11.773075 Anserini +test3537 Q0 16169657 22 11.686228 Anserini +test3537 Q0 12163662 23 11.669736 Anserini +test3537 Q0 20035307 24 11.609339 Anserini +test3537 Q0 5354782 25 11.595955 Anserini +test3537 Q0 5606851 26 11.556622 Anserini +test3537 Q0 5584065 27 11.529851 Anserini +test3537 Q0 20739461 28 11.499344 Anserini +test3537 Q0 2030379 29 11.489262 Anserini +test3537 Q0 14007280 30 11.409617 Anserini +test3538 Q0 1487307 1 14.572485 Anserini +test3538 Q0 1487287 2 14.340359 Anserini +test3538 Q0 17583528 3 14.325259 Anserini +test3538 Q0 17583529 4 14.245455 Anserini +test3538 Q0 17583527 5 14.163202 Anserini +test3538 Q0 1487293 6 13.917830 Anserini +test3538 Q0 3279969 7 13.507499 Anserini +test3538 Q0 3279970 8 12.702740 Anserini +test3538 Q0 667554 9 12.280698 Anserini +test3538 Q0 17583530 10 12.244495 Anserini +test3538 Q0 10302695 11 12.040981 Anserini +test3538 Q0 1487273 12 11.983042 Anserini +test3538 Q0 1487272 13 11.848477 Anserini +test3538 Q0 179367 14 11.779342 Anserini +test3538 Q0 12762487 15 11.712368 Anserini +test3538 Q0 1487274 16 11.635088 Anserini +test3538 Q0 439041 17 11.586756 Anserini +test3538 Q0 17583526 18 11.578417 Anserini +test3538 Q0 1487308 19 11.256121 Anserini +test3538 Q0 14084040 20 11.116263 Anserini +test3538 Q0 12796420 21 11.005806 Anserini +test3538 Q0 10302691 22 10.958074 Anserini +test3538 Q0 1487275 23 10.912727 Anserini +test3538 Q0 1487271 24 10.854210 Anserini +test3538 Q0 1487264 25 10.823538 Anserini +test3538 Q0 1487270 26 10.815592 Anserini +test3538 Q0 8909069 27 10.727651 Anserini +test3538 Q0 1487266 28 10.554395 Anserini +test3538 Q0 17583531 29 10.554395 Anserini +test3538 Q0 8500229 30 10.529213 Anserini +test3539 Q0 586603 1 22.887402 Anserini +test3539 Q0 2432644 2 19.644991 Anserini +test3539 Q0 10597227 3 19.464716 Anserini +test3539 Q0 3898653 4 17.975760 Anserini +test3539 Q0 14464435 5 17.950726 Anserini +test3539 Q0 669741 6 17.902063 Anserini +test3539 Q0 14464436 7 17.818584 Anserini +test3539 Q0 3898660 8 17.803713 Anserini +test3539 Q0 11960505 9 17.531271 Anserini +test3539 Q0 669757 10 17.364851 Anserini +test3539 Q0 669743 11 17.073162 Anserini +test3539 Q0 4874574 12 16.714731 Anserini +test3539 Q0 6522334 13 16.583996 Anserini +test3539 Q0 19420739 14 16.575329 Anserini +test3539 Q0 18027298 15 16.535051 Anserini +test3539 Q0 586596 16 16.194366 Anserini +test3539 Q0 8996589 17 15.864129 Anserini +test3539 Q0 10597228 18 15.673361 Anserini +test3539 Q0 7488057 19 15.616593 Anserini +test3539 Q0 16340745 20 15.592719 Anserini +test3539 Q0 5227512 21 15.504473 Anserini +test3539 Q0 586611 22 15.099875 Anserini +test3539 Q0 16586141 23 15.082786 Anserini +test3539 Q0 669742 24 15.076882 Anserini +test3539 Q0 17275658 25 15.056610 Anserini +test3539 Q0 14492390 26 14.796555 Anserini +test3539 Q0 19420740 27 14.796555 Anserini +test3539 Q0 588396 28 14.763672 Anserini +test3539 Q0 15474228 29 14.659495 Anserini +test3539 Q0 16340742 30 14.617845 Anserini +test354 Q0 13025023 1 9.388843 Anserini +test354 Q0 13025047 2 9.388843 Anserini +test354 Q0 10654517 3 8.997868 Anserini +test354 Q0 13709715 4 8.977892 Anserini +test354 Q0 15517215 5 8.937725 Anserini +test354 Q0 14611554 6 8.898721 Anserini +test354 Q0 16851005 7 8.859870 Anserini +test354 Q0 18722075 8 8.705866 Anserini +test354 Q0 10321261 9 8.705866 Anserini +test354 Q0 6553666 10 8.668711 Anserini +test354 Q0 10931759 11 8.644417 Anserini +test354 Q0 5153286 12 8.639364 Anserini +test354 Q0 16755035 13 8.571189 Anserini +test354 Q0 11411129 14 8.526435 Anserini +test354 Q0 8232939 15 8.488350 Anserini +test354 Q0 14928322 16 8.488350 Anserini +test354 Q0 13561325 17 8.482318 Anserini +test354 Q0 4590126 18 8.480960 Anserini +test354 Q0 9742276 19 8.463099 Anserini +test354 Q0 18643668 20 8.411540 Anserini +test354 Q0 4610710 21 8.411144 Anserini +test354 Q0 16130092 22 8.411144 Anserini +test354 Q0 20279870 23 8.411144 Anserini +test354 Q0 16507061 24 8.411144 Anserini +test354 Q0 9169681 25 8.394265 Anserini +test354 Q0 16483715 26 8.394265 Anserini +test354 Q0 14693523 27 8.394265 Anserini +test354 Q0 12042921 28 8.361217 Anserini +test354 Q0 12377352 29 8.335572 Anserini +test354 Q0 9339043 30 8.335386 Anserini +test3540 Q0 17983192 1 18.186436 Anserini +test3540 Q0 16408369 2 17.995829 Anserini +test3540 Q0 18248892 3 17.916084 Anserini +test3540 Q0 17976646 4 17.155607 Anserini +test3540 Q0 5295585 5 17.005915 Anserini +test3540 Q0 18332426 6 16.947435 Anserini +test3540 Q0 18223099 7 16.894180 Anserini +test3540 Q0 18092013 8 16.663813 Anserini +test3540 Q0 14843212 9 16.575239 Anserini +test3540 Q0 17989620 10 16.391685 Anserini +test3540 Q0 17976648 11 16.380583 Anserini +test3540 Q0 16408380 12 16.328566 Anserini +test3540 Q0 16408337 13 16.311811 Anserini +test3540 Q0 16408371 14 16.295183 Anserini +test3540 Q0 18332593 15 16.227596 Anserini +test3540 Q0 17983198 16 16.082348 Anserini +test3540 Q0 18223101 17 16.019064 Anserini +test3540 Q0 14843213 18 15.916060 Anserini +test3540 Q0 18332423 19 15.876411 Anserini +test3540 Q0 16408374 20 15.838836 Anserini +test3540 Q0 18332420 21 15.825464 Anserini +test3540 Q0 16408372 22 15.802227 Anserini +test3540 Q0 15619968 23 15.789743 Anserini +test3540 Q0 19273924 24 15.734394 Anserini +test3540 Q0 18730873 25 15.634372 Anserini +test3540 Q0 14843210 26 15.524286 Anserini +test3540 Q0 16408378 27 15.505905 Anserini +test3540 Q0 18332425 28 15.489522 Anserini +test3540 Q0 18248884 29 15.466343 Anserini +test3540 Q0 14843207 30 15.447068 Anserini +test3541 Q0 6731079 1 21.623190 Anserini +test3541 Q0 6731116 2 20.095341 Anserini +test3541 Q0 6731094 3 18.958666 Anserini +test3541 Q0 6731108 4 18.882797 Anserini +test3541 Q0 6731093 5 18.654953 Anserini +test3541 Q0 6731107 6 18.459042 Anserini +test3541 Q0 6731082 7 18.171082 Anserini +test3541 Q0 6731115 8 18.159616 Anserini +test3541 Q0 6731101 9 17.549131 Anserini +test3541 Q0 6731081 10 17.048859 Anserini +test3541 Q0 6731090 11 16.877651 Anserini +test3541 Q0 6731097 12 16.850517 Anserini +test3541 Q0 6731104 13 16.812979 Anserini +test3541 Q0 6731091 14 16.610199 Anserini +test3541 Q0 6731088 15 16.531172 Anserini +test3541 Q0 6731080 16 16.484703 Anserini +test3541 Q0 15197214 17 16.315630 Anserini +test3541 Q0 6731092 18 15.673772 Anserini +test3541 Q0 14153160 19 15.665000 Anserini +test3541 Q0 6731087 20 15.601927 Anserini +test3541 Q0 6731100 21 15.489536 Anserini +test3541 Q0 6731103 22 15.481411 Anserini +test3541 Q0 6731096 23 15.479719 Anserini +test3541 Q0 6731109 24 15.430370 Anserini +test3541 Q0 6731086 25 15.182416 Anserini +test3541 Q0 895824 26 15.182416 Anserini +test3541 Q0 6731099 27 15.039290 Anserini +test3541 Q0 18083209 28 14.948961 Anserini +test3541 Q0 895776 29 14.828685 Anserini +test3541 Q0 16932552 30 14.774916 Anserini +test3542 Q0 8163958 1 17.758165 Anserini +test3542 Q0 8163953 2 16.934608 Anserini +test3542 Q0 8163951 3 16.751232 Anserini +test3542 Q0 8163955 4 15.611782 Anserini +test3542 Q0 5023170 5 15.573714 Anserini +test3542 Q0 5023181 6 15.457631 Anserini +test3542 Q0 7541923 7 15.255252 Anserini +test3542 Q0 8163952 8 15.255252 Anserini +test3542 Q0 15304499 9 15.150267 Anserini +test3542 Q0 4963688 10 15.093221 Anserini +test3542 Q0 8163954 11 15.045050 Anserini +test3542 Q0 12490295 12 15.045050 Anserini +test3542 Q0 20775220 13 14.365538 Anserini +test3542 Q0 8840187 14 14.059697 Anserini +test3542 Q0 10810314 15 13.873724 Anserini +test3542 Q0 9882101 16 13.837514 Anserini +test3542 Q0 7580984 17 13.562171 Anserini +test3542 Q0 8933597 18 13.430433 Anserini +test3542 Q0 17320426 19 13.311459 Anserini +test3542 Q0 18925318 20 13.281960 Anserini +test3542 Q0 11662528 21 13.245313 Anserini +test3542 Q0 5783475 22 13.152775 Anserini +test3542 Q0 897359 23 13.042549 Anserini +test3542 Q0 20775219 24 12.996607 Anserini +test3542 Q0 14878975 25 12.971630 Anserini +test3542 Q0 13175501 26 12.943825 Anserini +test3542 Q0 13175510 27 12.943825 Anserini +test3542 Q0 12979172 28 12.843391 Anserini +test3542 Q0 5508920 29 12.721838 Anserini +test3542 Q0 13818009 30 12.668365 Anserini +test3543 Q0 7505474 1 9.544756 Anserini +test3543 Q0 7847102 2 9.313454 Anserini +test3543 Q0 8603947 3 9.243000 Anserini +test3543 Q0 15235238 4 9.240608 Anserini +test3543 Q0 12163222 5 9.095959 Anserini +test3543 Q0 15088775 6 9.020740 Anserini +test3543 Q0 20906057 7 9.004182 Anserini +test3543 Q0 13983953 8 8.985537 Anserini +test3543 Q0 9413489 9 8.946811 Anserini +test3543 Q0 9413488 10 8.946811 Anserini +test3543 Q0 9000530 11 8.932568 Anserini +test3543 Q0 10158933 12 8.809653 Anserini +test3543 Q0 3462600 13 8.809653 Anserini +test3543 Q0 3830656 14 8.786973 Anserini +test3543 Q0 13983957 15 8.690815 Anserini +test3543 Q0 6368269 16 8.491591 Anserini +test3543 Q0 10052720 17 8.490784 Anserini +test3543 Q0 11637186 18 8.480573 Anserini +test3543 Q0 16256995 19 8.468050 Anserini +test3543 Q0 11708281 20 8.466552 Anserini +test3543 Q0 11060797 21 8.434637 Anserini +test3543 Q0 15173003 22 8.434637 Anserini +test3543 Q0 13617030 23 8.433017 Anserini +test3543 Q0 13617109 24 8.433017 Anserini +test3543 Q0 1288065 25 8.415930 Anserini +test3543 Q0 870737 26 8.406425 Anserini +test3543 Q0 11333945 27 8.393656 Anserini +test3543 Q0 13968223 28 8.342556 Anserini +test3543 Q0 16096722 29 8.299210 Anserini +test3543 Q0 10645929 30 8.278645 Anserini +test3544 Q0 14958419 1 11.606603 Anserini +test3544 Q0 10479678 2 11.472693 Anserini +test3544 Q0 18890297 3 11.186744 Anserini +test3544 Q0 13964185 4 10.878389 Anserini +test3544 Q0 11354000 5 10.668356 Anserini +test3544 Q0 14495913 6 10.573144 Anserini +test3544 Q0 3848082 7 10.282164 Anserini +test3544 Q0 12096001 8 10.054195 Anserini +test3544 Q0 12116660 9 10.046469 Anserini +test3544 Q0 11837130 10 9.951225 Anserini +test3544 Q0 5583723 11 9.933656 Anserini +test3544 Q0 5583716 12 9.885887 Anserini +test3544 Q0 19626249 13 9.697958 Anserini +test3544 Q0 11546066 14 9.688771 Anserini +test3544 Q0 8952748 15 9.648779 Anserini +test3544 Q0 13201015 16 9.646136 Anserini +test3544 Q0 16987280 17 9.583052 Anserini +test3544 Q0 7533259 18 9.583052 Anserini +test3544 Q0 12650521 19 9.575036 Anserini +test3544 Q0 19020379 20 9.503545 Anserini +test3544 Q0 7348831 21 9.489029 Anserini +test3544 Q0 4642715 22 9.432093 Anserini +test3544 Q0 4642712 23 9.377251 Anserini +test3544 Q0 19121501 24 9.368599 Anserini +test3544 Q0 14958417 25 9.350068 Anserini +test3544 Q0 15368164 26 9.325726 Anserini +test3544 Q0 11354001 27 9.323043 Anserini +test3544 Q0 7517171 28 9.312947 Anserini +test3544 Q0 11353997 29 9.296173 Anserini +test3544 Q0 11354003 30 9.296173 Anserini +test3545 Q0 2275598 1 12.608255 Anserini +test3545 Q0 6683507 2 12.576686 Anserini +test3545 Q0 20159151 3 12.334765 Anserini +test3545 Q0 20222717 4 12.334765 Anserini +test3545 Q0 6683501 5 12.329681 Anserini +test3545 Q0 2083758 6 12.191627 Anserini +test3545 Q0 636265 7 12.174819 Anserini +test3545 Q0 3810545 8 12.152591 Anserini +test3545 Q0 14235461 9 12.127131 Anserini +test3545 Q0 7148464 10 12.103170 Anserini +test3545 Q0 3204270 11 12.079920 Anserini +test3545 Q0 3810529 12 12.048362 Anserini +test3545 Q0 3542944 13 12.019857 Anserini +test3545 Q0 2617063 14 12.018934 Anserini +test3545 Q0 9213356 15 11.921515 Anserini +test3545 Q0 5955223 16 11.855277 Anserini +test3545 Q0 816888 17 11.831980 Anserini +test3545 Q0 9368933 18 11.701941 Anserini +test3545 Q0 3543696 19 11.674078 Anserini +test3545 Q0 1932283 20 11.544367 Anserini +test3545 Q0 8037667 21 11.530648 Anserini +test3545 Q0 20051102 22 11.513843 Anserini +test3545 Q0 10784942 23 11.442087 Anserini +test3545 Q0 3106975 24 11.397490 Anserini +test3545 Q0 3161313 25 11.387215 Anserini +test3545 Q0 15831693 26 11.361473 Anserini +test3545 Q0 8175532 27 11.348213 Anserini +test3545 Q0 8175543 28 11.348213 Anserini +test3545 Q0 15346380 29 11.329941 Anserini +test3545 Q0 3129806 30 11.328260 Anserini +test3546 Q0 8641255 1 19.125772 Anserini +test3546 Q0 8641262 2 19.019926 Anserini +test3546 Q0 14246980 3 11.200994 Anserini +test3546 Q0 3074855 4 10.714043 Anserini +test3546 Q0 17187340 5 10.593292 Anserini +test3546 Q0 10268274 6 10.100756 Anserini +test3546 Q0 341108 7 9.759502 Anserini +test3546 Q0 10268273 8 9.606122 Anserini +test3546 Q0 10422768 9 9.606122 Anserini +test3546 Q0 10422766 10 9.556856 Anserini +test3546 Q0 5143489 11 9.336533 Anserini +test3546 Q0 17187342 12 9.161462 Anserini +test3546 Q0 8641304 13 9.030683 Anserini +test3546 Q0 14077945 14 9.016885 Anserini +test3546 Q0 14077946 15 9.016885 Anserini +test3546 Q0 17607313 16 9.016885 Anserini +test3546 Q0 17607315 17 9.016885 Anserini +test3546 Q0 17187346 18 9.016885 Anserini +test3546 Q0 17187341 19 8.964760 Anserini +test3546 Q0 3552664 20 8.964760 Anserini +test3546 Q0 780981 21 8.961679 Anserini +test3546 Q0 17187343 22 8.938923 Anserini +test3546 Q0 16062479 23 8.893129 Anserini +test3546 Q0 17607318 24 8.852191 Anserini +test3546 Q0 18747675 25 8.835175 Anserini +test3546 Q0 13729926 26 8.791967 Anserini +test3546 Q0 7892295 27 8.780930 Anserini +test3546 Q0 8592504 28 8.762161 Anserini +test3546 Q0 8362580 29 8.749225 Anserini +test3546 Q0 8505385 30 8.732557 Anserini +test3547 Q0 9684486 1 10.149247 Anserini +test3547 Q0 13500878 2 10.121262 Anserini +test3547 Q0 15298490 3 10.067298 Anserini +test3547 Q0 20649128 4 10.038292 Anserini +test3547 Q0 19028564 5 9.985372 Anserini +test3547 Q0 4690370 6 9.929277 Anserini +test3547 Q0 15477934 7 9.917421 Anserini +test3547 Q0 4690355 8 9.881052 Anserini +test3547 Q0 17842437 9 9.841179 Anserini +test3547 Q0 17063068 10 9.728154 Anserini +test3547 Q0 13295060 11 9.686307 Anserini +test3547 Q0 12075159 12 9.652829 Anserini +test3547 Q0 10380203 13 9.626400 Anserini +test3547 Q0 11739173 14 9.626400 Anserini +test3547 Q0 14558745 15 9.607141 Anserini +test3547 Q0 18956280 16 9.607141 Anserini +test3547 Q0 1466343 17 9.599257 Anserini +test3547 Q0 7061384 18 9.592067 Anserini +test3547 Q0 13990320 19 9.592067 Anserini +test3547 Q0 8933272 20 9.590179 Anserini +test3547 Q0 11262746 21 9.590179 Anserini +test3547 Q0 16332676 22 9.590179 Anserini +test3547 Q0 3912936 23 9.543700 Anserini +test3547 Q0 16549647 24 9.526134 Anserini +test3547 Q0 13735665 25 9.520127 Anserini +test3547 Q0 14866308 26 9.520127 Anserini +test3547 Q0 6313020 27 9.518276 Anserini +test3547 Q0 6415447 28 9.468117 Anserini +test3547 Q0 10380204 29 9.461355 Anserini +test3547 Q0 19195443 30 9.449322 Anserini +test3548 Q0 11461749 1 11.802060 Anserini +test3548 Q0 1552953 2 11.252164 Anserini +test3548 Q0 2972662 3 11.031500 Anserini +test3548 Q0 7446374 4 10.901286 Anserini +test3548 Q0 601356 5 10.517206 Anserini +test3548 Q0 2364026 6 10.449399 Anserini +test3548 Q0 12211412 7 10.352107 Anserini +test3548 Q0 11461745 8 10.326975 Anserini +test3548 Q0 16630651 9 10.109929 Anserini +test3548 Q0 19720518 10 9.981351 Anserini +test3548 Q0 2684529 11 9.856923 Anserini +test3548 Q0 1677756 12 9.819737 Anserini +test3548 Q0 4820220 13 9.794067 Anserini +test3548 Q0 13634840 14 9.760582 Anserini +test3548 Q0 1870403 15 9.745991 Anserini +test3548 Q0 8286301 16 9.686316 Anserini +test3548 Q0 13305017 17 9.650901 Anserini +test3548 Q0 18197426 18 9.628412 Anserini +test3548 Q0 16398723 19 9.623966 Anserini +test3548 Q0 5174868 20 9.623966 Anserini +test3548 Q0 16045165 21 9.612270 Anserini +test3548 Q0 10121356 22 9.526571 Anserini +test3548 Q0 2246278 23 9.497980 Anserini +test3548 Q0 4373812 24 9.497980 Anserini +test3548 Q0 6689769 25 9.493068 Anserini +test3548 Q0 6239661 26 9.464007 Anserini +test3548 Q0 1543358 27 9.385582 Anserini +test3548 Q0 14362117 28 9.383333 Anserini +test3548 Q0 17110026 29 9.382748 Anserini +test3548 Q0 12391308 30 9.370367 Anserini +test3549 Q0 10000405 1 17.252966 Anserini +test3549 Q0 17531781 2 15.718341 Anserini +test3549 Q0 17531769 3 15.399793 Anserini +test3549 Q0 10000416 4 14.931458 Anserini +test3549 Q0 10000403 5 14.210606 Anserini +test3549 Q0 10000423 6 14.098696 Anserini +test3549 Q0 10000413 7 13.877476 Anserini +test3549 Q0 20032085 8 13.806518 Anserini +test3549 Q0 10000415 9 13.718498 Anserini +test3549 Q0 790935 10 13.678823 Anserini +test3549 Q0 10000425 11 13.651009 Anserini +test3549 Q0 10000421 12 13.649046 Anserini +test3549 Q0 10000417 13 13.649046 Anserini +test3549 Q0 10000419 14 13.563161 Anserini +test3549 Q0 14669934 15 13.563135 Anserini +test3549 Q0 10000418 16 13.489101 Anserini +test3549 Q0 4005576 17 13.446296 Anserini +test3549 Q0 20032067 18 13.343417 Anserini +test3549 Q0 14669919 19 13.294750 Anserini +test3549 Q0 20032094 20 13.271766 Anserini +test3549 Q0 10000424 21 12.934604 Anserini +test3549 Q0 4005628 22 12.890791 Anserini +test3549 Q0 20032083 23 12.785866 Anserini +test3549 Q0 10000420 24 12.710981 Anserini +test3549 Q0 14669931 25 12.671556 Anserini +test3549 Q0 19674062 26 12.642036 Anserini +test3549 Q0 20032084 27 12.575236 Anserini +test3549 Q0 20032081 28 12.549365 Anserini +test3549 Q0 10000404 29 12.549365 Anserini +test3549 Q0 3526681 30 12.258833 Anserini +test355 Q0 822292 1 18.030363 Anserini +test355 Q0 822340 2 16.797256 Anserini +test355 Q0 6747257 3 15.387140 Anserini +test355 Q0 1053006 4 15.173261 Anserini +test355 Q0 6804251 5 15.084882 Anserini +test355 Q0 7314036 6 14.414783 Anserini +test355 Q0 17922933 7 14.117995 Anserini +test355 Q0 2369773 8 14.015507 Anserini +test355 Q0 6804257 9 13.998612 Anserini +test355 Q0 385548 10 13.888394 Anserini +test355 Q0 245963 11 13.872121 Anserini +test355 Q0 1056865 12 13.778548 Anserini +test355 Q0 116786 13 13.748036 Anserini +test355 Q0 9155980 14 13.700903 Anserini +test355 Q0 5122028 15 13.591874 Anserini +test355 Q0 7780906 16 13.550014 Anserini +test355 Q0 2900878 17 13.544688 Anserini +test355 Q0 10635411 18 13.431031 Anserini +test355 Q0 2773512 19 13.154902 Anserini +test355 Q0 9290986 20 13.114921 Anserini +test355 Q0 4789555 21 13.061149 Anserini +test355 Q0 4262494 22 12.982784 Anserini +test355 Q0 116785 23 12.919426 Anserini +test355 Q0 6718898 24 12.845059 Anserini +test355 Q0 385527 25 12.843840 Anserini +test355 Q0 13470803 26 12.816425 Anserini +test355 Q0 7225487 27 12.814398 Anserini +test355 Q0 116787 28 12.787215 Anserini +test355 Q0 8018724 29 12.780789 Anserini +test355 Q0 9552709 30 12.730793 Anserini +test3550 Q0 5124072 1 14.693786 Anserini +test3550 Q0 5124062 2 13.150501 Anserini +test3550 Q0 5124073 3 12.969676 Anserini +test3550 Q0 3250107 4 12.727709 Anserini +test3550 Q0 5124076 5 12.706491 Anserini +test3550 Q0 5124070 6 12.706491 Anserini +test3550 Q0 17928492 7 12.179041 Anserini +test3550 Q0 5124077 8 12.092943 Anserini +test3550 Q0 17654868 9 12.050270 Anserini +test3550 Q0 16453119 10 11.967157 Anserini +test3550 Q0 12800948 11 11.944918 Anserini +test3550 Q0 4112239 12 11.750470 Anserini +test3550 Q0 17928447 13 11.698022 Anserini +test3550 Q0 17928448 14 11.668533 Anserini +test3550 Q0 17142226 15 11.617519 Anserini +test3550 Q0 6343261 16 11.491830 Anserini +test3550 Q0 18050803 17 11.462043 Anserini +test3550 Q0 5124071 18 11.385225 Anserini +test3550 Q0 5124100 19 11.374778 Anserini +test3550 Q0 3250109 20 11.374778 Anserini +test3550 Q0 5124068 21 11.327268 Anserini +test3550 Q0 5124173 22 11.290053 Anserini +test3550 Q0 14396473 23 11.102345 Anserini +test3550 Q0 4112233 24 11.034304 Anserini +test3550 Q0 4112248 25 11.014907 Anserini +test3550 Q0 5124066 26 10.989474 Anserini +test3550 Q0 17959138 27 10.963129 Anserini +test3550 Q0 6343278 28 10.895002 Anserini +test3550 Q0 18820231 29 10.895002 Anserini +test3550 Q0 10223998 30 10.872601 Anserini +test3551 Q0 15121612 1 10.721695 Anserini +test3551 Q0 8807718 2 10.651031 Anserini +test3551 Q0 6810294 3 10.393270 Anserini +test3551 Q0 12176295 4 10.389590 Anserini +test3551 Q0 5052655 5 10.354458 Anserini +test3551 Q0 15041198 6 10.272259 Anserini +test3551 Q0 5653200 7 10.271805 Anserini +test3551 Q0 8999230 8 10.219831 Anserini +test3551 Q0 20381854 9 10.213376 Anserini +test3551 Q0 3117271 10 10.210631 Anserini +test3551 Q0 12176293 11 10.197732 Anserini +test3551 Q0 11006993 12 10.197721 Anserini +test3551 Q0 13789326 13 10.117527 Anserini +test3551 Q0 5338744 14 10.097470 Anserini +test3551 Q0 13787342 15 10.059800 Anserini +test3551 Q0 20871225 16 10.058642 Anserini +test3551 Q0 14060252 17 10.042556 Anserini +test3551 Q0 20870449 18 10.041662 Anserini +test3551 Q0 12268011 19 10.038896 Anserini +test3551 Q0 2275834 20 10.038888 Anserini +test3551 Q0 1846403 21 10.038618 Anserini +test3551 Q0 17050522 22 10.001717 Anserini +test3551 Q0 18021983 23 9.998026 Anserini +test3551 Q0 17050523 24 9.997441 Anserini +test3551 Q0 4429429 25 9.976110 Anserini +test3551 Q0 8051187 26 9.956161 Anserini +test3551 Q0 17363510 27 9.949322 Anserini +test3551 Q0 19986796 28 9.937297 Anserini +test3551 Q0 11392151 29 9.930177 Anserini +test3551 Q0 9687092 30 9.927194 Anserini +test3552 Q0 17407666 1 52.712799 Anserini +test3552 Q0 15031711 2 47.600998 Anserini +test3552 Q0 15031699 3 47.308403 Anserini +test3552 Q0 17407668 4 46.559940 Anserini +test3552 Q0 15031706 5 46.093555 Anserini +test3552 Q0 15031660 6 46.085323 Anserini +test3552 Q0 16358572 7 44.916840 Anserini +test3552 Q0 16358602 8 44.916840 Anserini +test3552 Q0 15031665 9 44.713593 Anserini +test3552 Q0 16028490 10 44.424469 Anserini +test3552 Q0 15031666 11 43.458969 Anserini +test3552 Q0 18515324 12 43.391197 Anserini +test3552 Q0 15031667 13 43.299500 Anserini +test3552 Q0 15031664 14 43.097790 Anserini +test3552 Q0 16358573 15 42.899452 Anserini +test3552 Q0 15031697 16 42.899452 Anserini +test3552 Q0 17407684 17 42.732475 Anserini +test3552 Q0 17407673 18 42.564625 Anserini +test3552 Q0 17407672 19 42.161858 Anserini +test3552 Q0 17407674 20 42.046108 Anserini +test3552 Q0 15031662 21 41.859825 Anserini +test3552 Q0 15031673 22 41.859825 Anserini +test3552 Q0 15031668 23 41.859825 Anserini +test3552 Q0 17407667 24 41.798496 Anserini +test3552 Q0 15031701 25 41.552177 Anserini +test3552 Q0 17407678 26 41.343376 Anserini +test3552 Q0 15031705 27 41.249142 Anserini +test3552 Q0 15031693 28 41.078148 Anserini +test3552 Q0 16358601 29 40.798672 Anserini +test3552 Q0 17407669 30 40.403572 Anserini +test3553 Q0 6335893 1 21.788765 Anserini +test3553 Q0 9445881 2 14.307720 Anserini +test3553 Q0 226659 3 14.212793 Anserini +test3553 Q0 6335897 4 14.047661 Anserini +test3553 Q0 16936554 5 13.948246 Anserini +test3553 Q0 6335896 6 13.716702 Anserini +test3553 Q0 7072926 7 13.700526 Anserini +test3553 Q0 14669069 8 13.306808 Anserini +test3553 Q0 3037551 9 13.117355 Anserini +test3553 Q0 16980860 10 13.094004 Anserini +test3553 Q0 15755094 11 12.996176 Anserini +test3553 Q0 17897607 12 12.920013 Anserini +test3553 Q0 15620198 13 12.633714 Anserini +test3553 Q0 3037550 14 12.579733 Anserini +test3553 Q0 9708536 15 12.534336 Anserini +test3553 Q0 4510511 16 12.487367 Anserini +test3553 Q0 3812179 17 12.436090 Anserini +test3553 Q0 6335908 18 12.326784 Anserini +test3553 Q0 3037553 19 12.267717 Anserini +test3553 Q0 3812173 20 12.118696 Anserini +test3553 Q0 10525086 21 12.113407 Anserini +test3553 Q0 12700646 22 12.010917 Anserini +test3553 Q0 1210245 23 11.957399 Anserini +test3553 Q0 15178830 24 11.936449 Anserini +test3553 Q0 3895978 25 11.849723 Anserini +test3553 Q0 18878942 26 11.819181 Anserini +test3553 Q0 20756937 27 11.803841 Anserini +test3553 Q0 8248627 28 11.799673 Anserini +test3553 Q0 10050737 29 11.790695 Anserini +test3553 Q0 13346949 30 11.763452 Anserini +test3554 Q0 16203081 1 15.809282 Anserini +test3554 Q0 20154812 2 14.720882 Anserini +test3554 Q0 20107868 3 14.675660 Anserini +test3554 Q0 1614729 4 14.535822 Anserini +test3554 Q0 16797785 5 14.533166 Anserini +test3554 Q0 1614738 6 14.198610 Anserini +test3554 Q0 18550844 7 14.050687 Anserini +test3554 Q0 8275924 8 13.898040 Anserini +test3554 Q0 17251555 9 13.575003 Anserini +test3554 Q0 11344185 10 13.534606 Anserini +test3554 Q0 9808301 11 13.531897 Anserini +test3554 Q0 18412268 12 13.525103 Anserini +test3554 Q0 8815615 13 13.494916 Anserini +test3554 Q0 20569193 14 13.463396 Anserini +test3554 Q0 1614737 15 13.407381 Anserini +test3554 Q0 16797787 16 13.401108 Anserini +test3554 Q0 16203079 17 13.394710 Anserini +test3554 Q0 9824936 18 13.389954 Anserini +test3554 Q0 13476260 19 13.300648 Anserini +test3554 Q0 16797783 20 13.261700 Anserini +test3554 Q0 18030341 21 13.253961 Anserini +test3554 Q0 9824939 22 13.194767 Anserini +test3554 Q0 18550845 23 13.096319 Anserini +test3554 Q0 10903029 24 13.088600 Anserini +test3554 Q0 5497141 25 13.058832 Anserini +test3554 Q0 12426044 26 13.019059 Anserini +test3554 Q0 5497149 27 13.012608 Anserini +test3554 Q0 1614701 28 12.995728 Anserini +test3554 Q0 1614688 29 12.974823 Anserini +test3554 Q0 12426048 30 12.963352 Anserini +test3555 Q0 18077659 1 19.849100 Anserini +test3555 Q0 11116478 2 18.297510 Anserini +test3555 Q0 11116481 3 18.297510 Anserini +test3555 Q0 18077654 4 17.637726 Anserini +test3555 Q0 3954647 5 16.130457 Anserini +test3555 Q0 18077660 6 15.755386 Anserini +test3555 Q0 4178617 7 13.526883 Anserini +test3555 Q0 5604440 8 13.035466 Anserini +test3555 Q0 3005045 9 13.032799 Anserini +test3555 Q0 18077657 10 12.823726 Anserini +test3555 Q0 3008456 11 12.815794 Anserini +test3555 Q0 18077653 12 12.558939 Anserini +test3555 Q0 5490352 13 12.472626 Anserini +test3555 Q0 14890332 14 12.177464 Anserini +test3555 Q0 20168001 15 12.132321 Anserini +test3555 Q0 6296158 16 12.121401 Anserini +test3555 Q0 18077655 17 12.095442 Anserini +test3555 Q0 10426938 18 12.094417 Anserini +test3555 Q0 20397070 19 12.083631 Anserini +test3555 Q0 17608745 20 12.057120 Anserini +test3555 Q0 6937697 21 11.970150 Anserini +test3555 Q0 237445 22 11.941189 Anserini +test3555 Q0 13170747 23 11.904959 Anserini +test3555 Q0 10370007 24 11.873294 Anserini +test3555 Q0 12938901 25 11.824015 Anserini +test3555 Q0 20564567 26 11.731865 Anserini +test3555 Q0 6555254 27 11.731511 Anserini +test3555 Q0 16857387 28 11.678205 Anserini +test3555 Q0 11010957 29 11.676226 Anserini +test3555 Q0 1728670 30 11.566784 Anserini +test3556 Q0 699951 1 16.942770 Anserini +test3556 Q0 699936 2 16.084902 Anserini +test3556 Q0 6952327 3 15.413609 Anserini +test3556 Q0 1450101 4 14.772870 Anserini +test3556 Q0 12173392 5 14.771696 Anserini +test3556 Q0 699950 6 14.230509 Anserini +test3556 Q0 699970 7 13.913887 Anserini +test3556 Q0 5631333 8 13.697399 Anserini +test3556 Q0 699952 9 13.429024 Anserini +test3556 Q0 6952328 10 13.334354 Anserini +test3556 Q0 699973 11 13.273403 Anserini +test3556 Q0 2672591 12 12.991010 Anserini +test3556 Q0 7257362 13 12.864994 Anserini +test3556 Q0 11504533 14 12.830001 Anserini +test3556 Q0 2426432 15 12.757773 Anserini +test3556 Q0 11504523 16 12.744204 Anserini +test3556 Q0 3785997 17 12.740390 Anserini +test3556 Q0 6952336 18 12.699519 Anserini +test3556 Q0 699971 19 12.597874 Anserini +test3556 Q0 9808924 20 12.514299 Anserini +test3556 Q0 6191298 21 12.464721 Anserini +test3556 Q0 2143570 22 12.398005 Anserini +test3556 Q0 880798 23 12.363515 Anserini +test3556 Q0 11416409 24 12.344205 Anserini +test3556 Q0 2867127 25 12.299613 Anserini +test3556 Q0 6952304 26 12.125500 Anserini +test3556 Q0 6952298 27 12.028333 Anserini +test3556 Q0 699954 28 11.879224 Anserini +test3556 Q0 19618562 29 11.878679 Anserini +test3556 Q0 2672589 30 11.850827 Anserini +test3557 Q0 14427201 1 12.300892 Anserini +test3557 Q0 2303287 2 11.541941 Anserini +test3557 Q0 14471579 3 11.440199 Anserini +test3557 Q0 3612204 4 11.364335 Anserini +test3557 Q0 9695736 5 11.362550 Anserini +test3557 Q0 19951343 6 11.349682 Anserini +test3557 Q0 1553022 7 11.309629 Anserini +test3557 Q0 271086 8 11.117370 Anserini +test3557 Q0 3308914 9 11.012733 Anserini +test3557 Q0 18312303 10 10.946381 Anserini +test3557 Q0 5321389 11 10.923638 Anserini +test3557 Q0 10956543 12 10.916559 Anserini +test3557 Q0 2165924 13 10.902369 Anserini +test3557 Q0 11228862 14 10.900731 Anserini +test3557 Q0 11773033 15 10.805883 Anserini +test3557 Q0 3022449 16 10.708656 Anserini +test3557 Q0 11884373 17 10.669790 Anserini +test3557 Q0 11884280 18 10.669790 Anserini +test3557 Q0 2790824 19 10.590777 Anserini +test3557 Q0 14441664 20 10.555680 Anserini +test3557 Q0 11248001 21 10.502967 Anserini +test3557 Q0 2971752 22 10.446807 Anserini +test3557 Q0 8698747 23 10.441161 Anserini +test3557 Q0 11773034 24 10.368286 Anserini +test3557 Q0 11568429 25 10.367067 Anserini +test3557 Q0 13322808 26 10.361465 Anserini +test3557 Q0 13322811 27 10.361465 Anserini +test3557 Q0 6674643 28 10.319338 Anserini +test3557 Q0 1913064 29 10.305613 Anserini +test3557 Q0 11617199 30 10.295384 Anserini +test3558 Q0 11764074 1 12.790934 Anserini +test3558 Q0 4390273 2 11.720691 Anserini +test3558 Q0 1751438 3 11.140270 Anserini +test3558 Q0 12658570 4 10.946886 Anserini +test3558 Q0 12658544 5 10.919066 Anserini +test3558 Q0 4076199 6 10.837667 Anserini +test3558 Q0 3193646 7 10.722576 Anserini +test3558 Q0 3193642 8 10.642880 Anserini +test3558 Q0 11789881 9 10.607461 Anserini +test3558 Q0 5671747 10 10.444007 Anserini +test3558 Q0 959128 11 10.427299 Anserini +test3558 Q0 65413 12 10.346216 Anserini +test3558 Q0 9874869 13 10.336100 Anserini +test3558 Q0 6346429 14 10.314174 Anserini +test3558 Q0 785454 15 10.194715 Anserini +test3558 Q0 1779283 16 10.187094 Anserini +test3558 Q0 1719445 17 10.185349 Anserini +test3558 Q0 14801671 18 10.185349 Anserini +test3558 Q0 7407977 19 10.185349 Anserini +test3558 Q0 428884 20 10.057699 Anserini +test3558 Q0 20121017 21 10.050977 Anserini +test3558 Q0 2445574 22 9.993434 Anserini +test3558 Q0 15773 23 9.987685 Anserini +test3558 Q0 236224 24 9.987685 Anserini +test3558 Q0 5785648 25 9.981436 Anserini +test3558 Q0 20354658 26 9.928435 Anserini +test3558 Q0 18770900 27 9.842475 Anserini +test3558 Q0 14313930 28 9.841223 Anserini +test3558 Q0 20146489 29 9.831847 Anserini +test3558 Q0 20146487 30 9.831847 Anserini +test3559 Q0 7654688 1 12.873693 Anserini +test3559 Q0 895828 2 12.206779 Anserini +test3559 Q0 8017642 3 11.987183 Anserini +test3559 Q0 8017643 4 11.987183 Anserini +test3559 Q0 9946982 5 11.905544 Anserini +test3559 Q0 9798995 6 11.594954 Anserini +test3559 Q0 15197185 7 11.374056 Anserini +test3559 Q0 20290387 8 11.311573 Anserini +test3559 Q0 6731109 9 11.197535 Anserini +test3559 Q0 6528873 10 11.197535 Anserini +test3559 Q0 18601543 11 11.172572 Anserini +test3559 Q0 5282236 12 11.157611 Anserini +test3559 Q0 18960397 13 11.157611 Anserini +test3559 Q0 272880 14 10.982040 Anserini +test3559 Q0 16204053 15 10.968975 Anserini +test3559 Q0 9950829 16 10.924835 Anserini +test3559 Q0 4837290 17 10.857424 Anserini +test3559 Q0 9042715 18 10.826306 Anserini +test3559 Q0 10728936 19 10.732814 Anserini +test3559 Q0 11359206 20 10.732533 Anserini +test3559 Q0 14153154 21 10.684733 Anserini +test3559 Q0 18960393 22 10.643638 Anserini +test3559 Q0 9962129 23 10.615086 Anserini +test3559 Q0 7654686 24 10.576465 Anserini +test3559 Q0 12870693 25 10.540850 Anserini +test3559 Q0 9303208 26 10.535715 Anserini +test3559 Q0 3368194 27 10.512467 Anserini +test3559 Q0 19004883 28 10.506244 Anserini +test3559 Q0 14153132 29 10.496946 Anserini +test3559 Q0 7366286 30 10.467644 Anserini +test356 Q0 15173197 1 11.790373 Anserini +test356 Q0 4561459 2 11.481607 Anserini +test356 Q0 10645989 3 11.472877 Anserini +test356 Q0 1804067 4 11.424836 Anserini +test356 Q0 15652637 5 11.106225 Anserini +test356 Q0 8020204 6 11.096705 Anserini +test356 Q0 9881450 7 11.043929 Anserini +test356 Q0 3963022 8 11.013848 Anserini +test356 Q0 16302397 9 11.002128 Anserini +test356 Q0 12906915 10 10.881855 Anserini +test356 Q0 639284 11 10.787802 Anserini +test356 Q0 431695 12 10.599919 Anserini +test356 Q0 759962 13 10.591475 Anserini +test356 Q0 3545214 14 10.575023 Anserini +test356 Q0 4972004 15 10.569682 Anserini +test356 Q0 802155 16 10.525583 Anserini +test356 Q0 1719973 17 10.508476 Anserini +test356 Q0 15173196 18 10.479631 Anserini +test356 Q0 10101282 19 10.353024 Anserini +test356 Q0 12404650 20 10.342932 Anserini +test356 Q0 10415713 21 10.317775 Anserini +test356 Q0 7899807 22 10.297757 Anserini +test356 Q0 3167110 23 10.288201 Anserini +test356 Q0 16561038 24 10.286172 Anserini +test356 Q0 11384491 25 10.276461 Anserini +test356 Q0 13210049 26 10.217775 Anserini +test356 Q0 6723020 27 10.215411 Anserini +test356 Q0 12906917 28 10.191418 Anserini +test356 Q0 16803383 29 10.189024 Anserini +test356 Q0 16538239 30 10.149174 Anserini +test3560 Q0 9390165 1 16.407667 Anserini +test3560 Q0 9390175 2 15.892966 Anserini +test3560 Q0 2351085 3 15.725166 Anserini +test3560 Q0 17942106 4 15.690359 Anserini +test3560 Q0 15874231 5 15.419209 Anserini +test3560 Q0 12645984 6 15.332944 Anserini +test3560 Q0 1678058 7 14.978795 Anserini +test3560 Q0 17942109 8 14.888514 Anserini +test3560 Q0 9390177 9 14.805198 Anserini +test3560 Q0 18075281 10 14.573253 Anserini +test3560 Q0 8271606 11 14.380170 Anserini +test3560 Q0 8155662 12 14.303448 Anserini +test3560 Q0 15759169 13 14.289109 Anserini +test3560 Q0 15874232 14 14.287085 Anserini +test3560 Q0 2455578 15 14.272698 Anserini +test3560 Q0 9390160 16 14.247400 Anserini +test3560 Q0 13561071 17 14.198174 Anserini +test3560 Q0 2888808 18 14.155901 Anserini +test3560 Q0 17942088 19 13.975933 Anserini +test3560 Q0 2888829 20 13.941330 Anserini +test3560 Q0 1495560 21 13.868582 Anserini +test3560 Q0 13093624 22 13.821423 Anserini +test3560 Q0 1456251 23 13.821423 Anserini +test3560 Q0 2895624 24 13.743222 Anserini +test3560 Q0 6342889 25 13.743095 Anserini +test3560 Q0 8271603 26 13.742161 Anserini +test3560 Q0 9390150 27 13.631152 Anserini +test3560 Q0 7239046 28 13.626511 Anserini +test3560 Q0 9390139 29 13.624669 Anserini +test3560 Q0 4615520 30 13.599059 Anserini +test3561 Q0 11859771 1 12.618729 Anserini +test3561 Q0 9887197 2 12.087187 Anserini +test3561 Q0 12598112 3 11.977266 Anserini +test3561 Q0 19178164 4 10.939123 Anserini +test3561 Q0 11243274 5 10.705051 Anserini +test3561 Q0 9550994 6 10.639488 Anserini +test3561 Q0 19921857 7 10.589033 Anserini +test3561 Q0 14561278 8 10.195295 Anserini +test3561 Q0 11896637 9 10.190524 Anserini +test3561 Q0 14561282 10 10.124365 Anserini +test3561 Q0 7536446 11 10.108913 Anserini +test3561 Q0 2967196 12 10.095650 Anserini +test3561 Q0 5208323 13 10.027691 Anserini +test3561 Q0 9645306 14 9.999871 Anserini +test3561 Q0 17447 15 9.992240 Anserini +test3561 Q0 9759890 16 9.962564 Anserini +test3561 Q0 7960473 17 9.883622 Anserini +test3561 Q0 12650521 18 9.865272 Anserini +test3561 Q0 2435395 19 9.850998 Anserini +test3561 Q0 239708 20 9.754653 Anserini +test3561 Q0 9167985 21 9.738598 Anserini +test3561 Q0 6240136 22 9.734762 Anserini +test3561 Q0 9645286 23 9.691065 Anserini +test3561 Q0 7482122 24 9.691065 Anserini +test3561 Q0 14894255 25 9.659966 Anserini +test3561 Q0 17406 26 9.657074 Anserini +test3561 Q0 16997129 27 9.654649 Anserini +test3561 Q0 10824939 28 9.649709 Anserini +test3561 Q0 13849985 29 9.614288 Anserini +test3561 Q0 2946635 30 9.594110 Anserini +test3562 Q0 18871873 1 15.878475 Anserini +test3562 Q0 5371001 2 15.616453 Anserini +test3562 Q0 11507203 3 15.353255 Anserini +test3562 Q0 5371005 4 15.013514 Anserini +test3562 Q0 5371007 5 14.882519 Anserini +test3562 Q0 5582343 6 14.684779 Anserini +test3562 Q0 15651205 7 14.443880 Anserini +test3562 Q0 11291332 8 14.401704 Anserini +test3562 Q0 11291330 9 14.309069 Anserini +test3562 Q0 386997 10 14.296707 Anserini +test3562 Q0 11374187 11 14.192489 Anserini +test3562 Q0 11374192 12 14.168548 Anserini +test3562 Q0 12344595 13 14.140467 Anserini +test3562 Q0 13559067 14 13.808439 Anserini +test3562 Q0 9960085 15 13.755474 Anserini +test3562 Q0 6619026 16 13.702946 Anserini +test3562 Q0 13978129 17 13.653984 Anserini +test3562 Q0 13055356 18 13.641344 Anserini +test3562 Q0 7841607 19 13.490204 Anserini +test3562 Q0 8450739 20 13.481803 Anserini +test3562 Q0 3816813 21 13.460175 Anserini +test3562 Q0 14167527 22 13.448729 Anserini +test3562 Q0 3752801 23 13.441238 Anserini +test3562 Q0 11925611 24 13.436981 Anserini +test3562 Q0 17209517 25 13.415300 Anserini +test3562 Q0 8315822 26 13.412258 Anserini +test3562 Q0 3406005 27 13.400404 Anserini +test3562 Q0 2596493 28 13.370543 Anserini +test3562 Q0 3484346 29 13.360681 Anserini +test3562 Q0 2230825 30 13.358596 Anserini +test3563 Q0 11327180 1 14.049769 Anserini +test3563 Q0 17596194 2 13.676483 Anserini +test3563 Q0 8606199 3 13.621462 Anserini +test3563 Q0 1299226 4 13.585394 Anserini +test3563 Q0 84655 5 13.238335 Anserini +test3563 Q0 12885338 6 13.116265 Anserini +test3563 Q0 17998553 7 13.003164 Anserini +test3563 Q0 3375316 8 12.957758 Anserini +test3563 Q0 8421787 9 12.867560 Anserini +test3563 Q0 6094076 10 12.646703 Anserini +test3563 Q0 7598129 11 12.642796 Anserini +test3563 Q0 729971 12 12.611320 Anserini +test3563 Q0 2438352 13 12.606015 Anserini +test3563 Q0 9775345 14 12.489484 Anserini +test3563 Q0 9239474 15 12.404338 Anserini +test3563 Q0 19950264 16 12.333522 Anserini +test3563 Q0 15007651 17 12.311153 Anserini +test3563 Q0 2997499 18 12.304805 Anserini +test3563 Q0 4139436 19 12.255707 Anserini +test3563 Q0 9683577 20 12.224728 Anserini +test3563 Q0 11404147 21 12.187608 Anserini +test3563 Q0 12879035 22 12.096325 Anserini +test3563 Q0 4700537 23 12.080625 Anserini +test3563 Q0 4329375 24 12.032619 Anserini +test3563 Q0 14282262 25 12.030935 Anserini +test3563 Q0 5873911 26 12.027749 Anserini +test3563 Q0 13508351 27 12.020434 Anserini +test3563 Q0 3597794 28 12.006128 Anserini +test3563 Q0 4700529 29 12.004119 Anserini +test3563 Q0 9145362 30 11.988419 Anserini +test3564 Q0 2478787 1 13.634117 Anserini +test3564 Q0 9160744 2 13.542391 Anserini +test3564 Q0 6321263 3 13.462221 Anserini +test3564 Q0 561932 4 12.940786 Anserini +test3564 Q0 2030373 5 12.735511 Anserini +test3564 Q0 2753055 6 12.730617 Anserini +test3564 Q0 11990252 7 12.398797 Anserini +test3564 Q0 2902533 8 12.307253 Anserini +test3564 Q0 2753057 9 12.267195 Anserini +test3564 Q0 3658212 10 12.104115 Anserini +test3564 Q0 9509340 11 12.095766 Anserini +test3564 Q0 18843276 12 11.960516 Anserini +test3564 Q0 299607 13 11.937502 Anserini +test3564 Q0 20164191 14 11.852729 Anserini +test3564 Q0 8830110 15 11.843992 Anserini +test3564 Q0 7184192 16 11.832151 Anserini +test3564 Q0 16577452 17 11.803108 Anserini +test3564 Q0 2872903 18 11.803108 Anserini +test3564 Q0 13863574 19 11.782047 Anserini +test3564 Q0 9248691 20 11.775175 Anserini +test3564 Q0 15843136 21 11.775175 Anserini +test3564 Q0 6367941 22 11.768062 Anserini +test3564 Q0 8196579 23 11.707272 Anserini +test3564 Q0 15508449 24 11.643489 Anserini +test3564 Q0 11990246 25 11.643489 Anserini +test3564 Q0 15633210 26 11.617120 Anserini +test3564 Q0 192492 27 11.617120 Anserini +test3564 Q0 1656653 28 11.578242 Anserini +test3564 Q0 298341 29 11.574851 Anserini +test3564 Q0 15014392 30 11.565783 Anserini +test3565 Q0 6550163 1 28.891022 Anserini +test3565 Q0 6550168 2 27.047691 Anserini +test3565 Q0 17249329 3 26.741096 Anserini +test3565 Q0 17249340 4 26.705368 Anserini +test3565 Q0 8862231 5 25.867102 Anserini +test3565 Q0 1853964 6 24.409348 Anserini +test3565 Q0 14496778 7 24.152750 Anserini +test3565 Q0 19437772 8 23.653255 Anserini +test3565 Q0 17249331 9 23.478783 Anserini +test3565 Q0 3907202 10 23.435675 Anserini +test3565 Q0 6550164 11 23.151047 Anserini +test3565 Q0 9184470 12 23.042511 Anserini +test3565 Q0 2171805 13 22.749931 Anserini +test3565 Q0 1535278 14 22.627316 Anserini +test3565 Q0 5110781 15 22.555862 Anserini +test3565 Q0 15874439 16 22.473417 Anserini +test3565 Q0 264747 17 22.391531 Anserini +test3565 Q0 4623239 18 22.288668 Anserini +test3565 Q0 10565 19 22.251869 Anserini +test3565 Q0 9184477 20 22.245747 Anserini +test3565 Q0 8996473 21 22.072050 Anserini +test3565 Q0 8996471 22 22.072050 Anserini +test3565 Q0 16984148 23 21.650965 Anserini +test3565 Q0 6550165 24 21.612938 Anserini +test3565 Q0 922370 25 21.595646 Anserini +test3565 Q0 3295276 26 21.586403 Anserini +test3565 Q0 7032337 27 21.480551 Anserini +test3565 Q0 2636986 28 21.298141 Anserini +test3565 Q0 3907199 29 21.285702 Anserini +test3565 Q0 8476926 30 21.194586 Anserini +test3566 Q0 13335514 1 10.755968 Anserini +test3566 Q0 16544484 2 10.701612 Anserini +test3566 Q0 11832067 3 10.640027 Anserini +test3566 Q0 18832084 4 10.557713 Anserini +test3566 Q0 1727319 5 10.314676 Anserini +test3566 Q0 12745845 6 10.082617 Anserini +test3566 Q0 18832083 7 10.063779 Anserini +test3566 Q0 10499887 8 9.949993 Anserini +test3566 Q0 15764578 9 9.948148 Anserini +test3566 Q0 13596939 10 9.895248 Anserini +test3566 Q0 11832068 11 9.836132 Anserini +test3566 Q0 14505938 12 9.812647 Anserini +test3566 Q0 16544480 13 9.735065 Anserini +test3566 Q0 19718715 14 9.733321 Anserini +test3566 Q0 20627248 15 9.640283 Anserini +test3566 Q0 13596940 16 9.617532 Anserini +test3566 Q0 15645773 17 9.600041 Anserini +test3566 Q0 20311243 18 9.559997 Anserini +test3566 Q0 11582901 19 9.510347 Anserini +test3566 Q0 20311239 20 9.503243 Anserini +test3566 Q0 8268107 21 9.500986 Anserini +test3566 Q0 12745844 22 9.470867 Anserini +test3566 Q0 16589238 23 9.438114 Anserini +test3566 Q0 19718718 24 9.412824 Anserini +test3566 Q0 17404932 25 9.379931 Anserini +test3566 Q0 20194082 26 9.365867 Anserini +test3566 Q0 19717337 27 9.314542 Anserini +test3566 Q0 15227476 28 9.302329 Anserini +test3566 Q0 15806349 29 9.286227 Anserini +test3566 Q0 20866384 30 9.282423 Anserini +test3567 Q0 939382 1 12.739727 Anserini +test3567 Q0 1949669 2 12.662975 Anserini +test3567 Q0 245095 3 12.316280 Anserini +test3567 Q0 15992388 4 12.233190 Anserini +test3567 Q0 245120 5 12.138418 Anserini +test3567 Q0 1962868 6 12.023275 Anserini +test3567 Q0 59534 7 12.004273 Anserini +test3567 Q0 20914576 8 11.977615 Anserini +test3567 Q0 11415233 9 11.881715 Anserini +test3567 Q0 10516165 10 11.536041 Anserini +test3567 Q0 1949659 11 11.417212 Anserini +test3567 Q0 7038247 12 11.392659 Anserini +test3567 Q0 16468572 13 11.321293 Anserini +test3567 Q0 16584805 14 11.240203 Anserini +test3567 Q0 19205562 15 11.216507 Anserini +test3567 Q0 3882024 16 11.205465 Anserini +test3567 Q0 1962883 17 11.203505 Anserini +test3567 Q0 245124 18 11.114715 Anserini +test3567 Q0 1962881 19 11.114715 Anserini +test3567 Q0 8012071 20 11.054138 Anserini +test3567 Q0 5451169 21 11.049823 Anserini +test3567 Q0 2856749 22 11.034051 Anserini +test3567 Q0 241388 23 10.958445 Anserini +test3567 Q0 14442848 24 10.954663 Anserini +test3567 Q0 3029626 25 10.949662 Anserini +test3567 Q0 6510373 26 10.876481 Anserini +test3567 Q0 12444362 27 10.876481 Anserini +test3567 Q0 17267376 28 10.876481 Anserini +test3567 Q0 3875169 29 10.868128 Anserini +test3567 Q0 5653649 30 10.791142 Anserini +test3568 Q0 12660793 1 12.088341 Anserini +test3568 Q0 16376177 2 11.866774 Anserini +test3568 Q0 5578063 3 11.827956 Anserini +test3568 Q0 6826090 4 11.718486 Anserini +test3568 Q0 437989 5 11.705519 Anserini +test3568 Q0 10207602 6 11.627141 Anserini +test3568 Q0 873421 7 11.467991 Anserini +test3568 Q0 2429758 8 11.414769 Anserini +test3568 Q0 18445040 9 11.336908 Anserini +test3568 Q0 6608194 10 11.251164 Anserini +test3568 Q0 2146112 11 11.222585 Anserini +test3568 Q0 1324782 12 11.202480 Anserini +test3568 Q0 19075939 13 11.142184 Anserini +test3568 Q0 20669661 14 11.063523 Anserini +test3568 Q0 17613843 15 11.045102 Anserini +test3568 Q0 1944569 16 11.044102 Anserini +test3568 Q0 19494917 17 11.026609 Anserini +test3568 Q0 10216219 18 11.021992 Anserini +test3568 Q0 5421034 19 10.988411 Anserini +test3568 Q0 14455041 20 10.955883 Anserini +test3568 Q0 876780 21 10.933075 Anserini +test3568 Q0 3998114 22 10.893464 Anserini +test3568 Q0 16746420 23 10.878729 Anserini +test3568 Q0 1875888 24 10.876419 Anserini +test3568 Q0 17859170 25 10.853745 Anserini +test3568 Q0 17307968 26 10.827559 Anserini +test3568 Q0 18788536 27 10.778376 Anserini +test3568 Q0 19495524 28 10.743706 Anserini +test3568 Q0 1438905 29 10.723807 Anserini +test3568 Q0 9889480 30 10.721675 Anserini +test3569 Q0 5166246 1 17.356129 Anserini +test3569 Q0 15127958 2 16.280415 Anserini +test3569 Q0 5166611 3 15.884629 Anserini +test3569 Q0 3173707 4 15.739588 Anserini +test3569 Q0 5166596 5 15.630455 Anserini +test3569 Q0 489337 6 15.507871 Anserini +test3569 Q0 489406 7 15.507871 Anserini +test3569 Q0 5185609 8 15.488442 Anserini +test3569 Q0 489409 9 15.471510 Anserini +test3569 Q0 5161075 10 15.437878 Anserini +test3569 Q0 5161055 11 15.437878 Anserini +test3569 Q0 5166642 12 15.375715 Anserini +test3569 Q0 164031 13 15.271103 Anserini +test3569 Q0 489407 14 15.224395 Anserini +test3569 Q0 164033 15 15.000279 Anserini +test3569 Q0 164007 16 14.978495 Anserini +test3569 Q0 20238189 17 14.934286 Anserini +test3569 Q0 163994 18 14.925327 Anserini +test3569 Q0 5166255 19 14.887772 Anserini +test3569 Q0 5166413 20 14.842996 Anserini +test3569 Q0 5166597 21 14.617060 Anserini +test3569 Q0 164003 22 14.503538 Anserini +test3569 Q0 489510 23 14.496354 Anserini +test3569 Q0 489364 24 14.490423 Anserini +test3569 Q0 163986 25 14.484191 Anserini +test3569 Q0 163993 26 14.424628 Anserini +test3569 Q0 489371 27 14.369891 Anserini +test3569 Q0 6158902 28 14.320673 Anserini +test3569 Q0 489410 29 14.264786 Anserini +test3569 Q0 5166612 30 14.214384 Anserini +test357 Q0 14618785 1 15.126503 Anserini +test357 Q0 9711912 2 12.768681 Anserini +test357 Q0 15329818 3 12.442842 Anserini +test357 Q0 6155561 4 12.308167 Anserini +test357 Q0 10457622 5 12.247240 Anserini +test357 Q0 20254522 6 12.183801 Anserini +test357 Q0 3193667 7 12.171519 Anserini +test357 Q0 12981387 8 12.156351 Anserini +test357 Q0 19747302 9 12.153344 Anserini +test357 Q0 11706929 10 12.137187 Anserini +test357 Q0 11678943 11 12.136396 Anserini +test357 Q0 8714840 12 12.085626 Anserini +test357 Q0 10020771 13 12.061506 Anserini +test357 Q0 20725563 14 12.055735 Anserini +test357 Q0 8588331 15 12.014053 Anserini +test357 Q0 3270002 16 11.866258 Anserini +test357 Q0 10545017 17 11.845153 Anserini +test357 Q0 11884933 18 11.818659 Anserini +test357 Q0 12914345 19 11.806561 Anserini +test357 Q0 12914351 20 11.799425 Anserini +test357 Q0 16430696 21 11.790470 Anserini +test357 Q0 13883078 22 11.764900 Anserini +test357 Q0 9943678 23 11.762005 Anserini +test357 Q0 16430692 24 11.738044 Anserini +test357 Q0 14380163 25 11.651754 Anserini +test357 Q0 7672565 26 11.651754 Anserini +test357 Q0 16969066 27 11.608060 Anserini +test357 Q0 6882290 28 11.600058 Anserini +test357 Q0 13346989 29 11.566935 Anserini +test357 Q0 16683088 30 11.524197 Anserini +test3570 Q0 9457796 1 12.734482 Anserini +test3570 Q0 2400690 2 12.498164 Anserini +test3570 Q0 20418485 3 12.450609 Anserini +test3570 Q0 2400677 4 12.435505 Anserini +test3570 Q0 6755810 5 12.204550 Anserini +test3570 Q0 13824416 6 12.106041 Anserini +test3570 Q0 12007872 7 12.003634 Anserini +test3570 Q0 1731036 8 11.307613 Anserini +test3570 Q0 4919167 9 11.154379 Anserini +test3570 Q0 2400676 10 10.973369 Anserini +test3570 Q0 17784850 11 10.921749 Anserini +test3570 Q0 4919192 12 10.921749 Anserini +test3570 Q0 1731037 13 10.885366 Anserini +test3570 Q0 12007888 14 10.730151 Anserini +test3570 Q0 5413633 15 10.627286 Anserini +test3570 Q0 1842951 16 10.627286 Anserini +test3570 Q0 10013895 17 10.603017 Anserini +test3570 Q0 10013901 18 10.603017 Anserini +test3570 Q0 6805887 19 10.567337 Anserini +test3570 Q0 6530370 20 10.466107 Anserini +test3570 Q0 2400691 21 10.440704 Anserini +test3570 Q0 12126398 22 10.427559 Anserini +test3570 Q0 12126399 23 10.427559 Anserini +test3570 Q0 2400689 24 10.330580 Anserini +test3570 Q0 1311540 25 10.271649 Anserini +test3570 Q0 17747262 26 10.271649 Anserini +test3570 Q0 3027990 27 9.811588 Anserini +test3570 Q0 4818755 28 9.811588 Anserini +test3570 Q0 7717538 29 9.796242 Anserini +test3570 Q0 18555029 30 9.706079 Anserini +test3571 Q0 5045091 1 9.813269 Anserini +test3571 Q0 5577568 2 9.253482 Anserini +test3571 Q0 9675452 3 9.168891 Anserini +test3571 Q0 15767627 4 9.126884 Anserini +test3571 Q0 2273142 5 9.083172 Anserini +test3571 Q0 1611097 6 8.937153 Anserini +test3571 Q0 1207949 7 8.922037 Anserini +test3571 Q0 14924468 8 8.910379 Anserini +test3571 Q0 14924470 9 8.843178 Anserini +test3571 Q0 14411888 10 8.607974 Anserini +test3571 Q0 12681613 11 8.593073 Anserini +test3571 Q0 5848267 12 8.564666 Anserini +test3571 Q0 4806553 13 8.548418 Anserini +test3571 Q0 4517663 14 8.536425 Anserini +test3571 Q0 11221549 15 8.534733 Anserini +test3571 Q0 5019609 16 8.466108 Anserini +test3571 Q0 8782854 17 8.396992 Anserini +test3571 Q0 10287921 18 8.396992 Anserini +test3571 Q0 7261050 19 8.293801 Anserini +test3571 Q0 5402512 20 8.282931 Anserini +test3571 Q0 18823305 21 8.281105 Anserini +test3571 Q0 13102822 22 8.197670 Anserini +test3571 Q0 8425088 23 8.195113 Anserini +test3571 Q0 14629993 24 8.160300 Anserini +test3571 Q0 8468760 25 8.136279 Anserini +test3571 Q0 8425198 26 8.130693 Anserini +test3571 Q0 14629990 27 8.130693 Anserini +test3571 Q0 4446366 28 8.123930 Anserini +test3571 Q0 4606905 29 8.123930 Anserini +test3571 Q0 3154487 30 8.123930 Anserini +test3572 Q0 18470582 1 11.953609 Anserini +test3572 Q0 20622253 2 11.953609 Anserini +test3572 Q0 20994645 3 11.953609 Anserini +test3572 Q0 9755768 4 11.703837 Anserini +test3572 Q0 6560825 5 11.696334 Anserini +test3572 Q0 6684930 6 11.495462 Anserini +test3572 Q0 2031745 7 11.387554 Anserini +test3572 Q0 1772315 8 11.172801 Anserini +test3572 Q0 768032 9 11.057748 Anserini +test3572 Q0 14010941 10 11.053828 Anserini +test3572 Q0 2619620 11 10.996504 Anserini +test3572 Q0 8553893 12 10.989714 Anserini +test3572 Q0 6784308 13 10.891295 Anserini +test3572 Q0 3882878 14 10.866614 Anserini +test3572 Q0 16278496 15 10.801772 Anserini +test3572 Q0 11669605 16 10.774901 Anserini +test3572 Q0 8077261 17 10.732964 Anserini +test3572 Q0 20213600 18 10.654947 Anserini +test3572 Q0 13816495 19 10.614657 Anserini +test3572 Q0 1685839 20 10.564278 Anserini +test3572 Q0 14006223 21 10.553011 Anserini +test3572 Q0 14341 22 10.543585 Anserini +test3572 Q0 17351550 23 10.477138 Anserini +test3572 Q0 1772308 24 10.472878 Anserini +test3572 Q0 15084003 25 10.417157 Anserini +test3572 Q0 4874791 26 10.414332 Anserini +test3572 Q0 14006215 27 10.409355 Anserini +test3572 Q0 13192210 28 10.388933 Anserini +test3572 Q0 19300061 29 10.365522 Anserini +test3572 Q0 754161 30 10.352177 Anserini +test3573 Q0 3193815 1 11.223936 Anserini +test3573 Q0 1076950 2 11.094537 Anserini +test3573 Q0 14649407 3 11.085423 Anserini +test3573 Q0 14649399 4 11.085423 Anserini +test3573 Q0 712208 5 10.988924 Anserini +test3573 Q0 4027303 6 10.935769 Anserini +test3573 Q0 1021865 7 10.897518 Anserini +test3573 Q0 1134945 8 10.739968 Anserini +test3573 Q0 1987586 9 10.709003 Anserini +test3573 Q0 1134950 10 10.682718 Anserini +test3573 Q0 12366527 11 10.613054 Anserini +test3573 Q0 11394454 12 10.599059 Anserini +test3573 Q0 1082875 13 10.534048 Anserini +test3573 Q0 8425600 14 10.489360 Anserini +test3573 Q0 1199826 15 10.487978 Anserini +test3573 Q0 8275489 16 10.462366 Anserini +test3573 Q0 2946318 17 10.438558 Anserini +test3573 Q0 3112013 18 10.435307 Anserini +test3573 Q0 8425598 19 10.434151 Anserini +test3573 Q0 8252075 20 10.423187 Anserini +test3573 Q0 6949792 21 10.374163 Anserini +test3573 Q0 2717676 22 10.365690 Anserini +test3573 Q0 13822607 23 10.345122 Anserini +test3573 Q0 2160485 24 10.326255 Anserini +test3573 Q0 8553696 25 10.326078 Anserini +test3573 Q0 12766476 26 10.287358 Anserini +test3573 Q0 992912 27 10.202863 Anserini +test3573 Q0 5179997 28 10.185779 Anserini +test3573 Q0 8252078 29 10.181001 Anserini +test3573 Q0 5235451 30 10.149123 Anserini +test3574 Q0 179451 1 11.896983 Anserini +test3574 Q0 14950321 2 11.220876 Anserini +test3574 Q0 179500 3 11.153250 Anserini +test3574 Q0 8186442 4 11.152264 Anserini +test3574 Q0 3111676 5 10.929967 Anserini +test3574 Q0 14950330 6 10.887201 Anserini +test3574 Q0 197884 7 10.600773 Anserini +test3574 Q0 179429 8 10.560514 Anserini +test3574 Q0 9535864 9 10.535265 Anserini +test3574 Q0 2947663 10 10.517121 Anserini +test3574 Q0 214391 11 10.505544 Anserini +test3574 Q0 3598942 12 10.490088 Anserini +test3574 Q0 17643379 13 10.443429 Anserini +test3574 Q0 16130299 14 10.365088 Anserini +test3574 Q0 14947804 15 10.340308 Anserini +test3574 Q0 12423539 16 10.333488 Anserini +test3574 Q0 14948332 17 10.321399 Anserini +test3574 Q0 14948328 18 10.297338 Anserini +test3574 Q0 3293292 19 10.213560 Anserini +test3574 Q0 179442 20 10.196633 Anserini +test3574 Q0 4830758 21 10.105669 Anserini +test3574 Q0 179461 22 10.057154 Anserini +test3574 Q0 4985990 23 10.034585 Anserini +test3574 Q0 179458 24 10.026470 Anserini +test3574 Q0 179415 25 9.968584 Anserini +test3574 Q0 64481 26 9.963094 Anserini +test3574 Q0 211981 27 9.906667 Anserini +test3574 Q0 15578482 28 9.863910 Anserini +test3574 Q0 14950326 29 9.860087 Anserini +test3574 Q0 4985982 30 9.804654 Anserini +test3575 Q0 9919022 1 16.244669 Anserini +test3575 Q0 9919021 2 16.111856 Anserini +test3575 Q0 8525507 3 15.623491 Anserini +test3575 Q0 4212249 4 15.437342 Anserini +test3575 Q0 11476455 5 14.598185 Anserini +test3575 Q0 4043373 6 14.203199 Anserini +test3575 Q0 9540855 7 13.752760 Anserini +test3575 Q0 7398662 8 13.582861 Anserini +test3575 Q0 20872933 9 13.449651 Anserini +test3575 Q0 19788144 10 13.386879 Anserini +test3575 Q0 19858769 11 13.312408 Anserini +test3575 Q0 9610303 12 13.200909 Anserini +test3575 Q0 667483 13 13.130262 Anserini +test3575 Q0 20202006 14 13.106411 Anserini +test3575 Q0 19693282 15 13.067522 Anserini +test3575 Q0 4274542 16 13.060268 Anserini +test3575 Q0 20203148 17 12.952294 Anserini +test3575 Q0 9792733 18 12.930546 Anserini +test3575 Q0 12291195 19 12.851705 Anserini +test3575 Q0 7779211 20 12.768444 Anserini +test3575 Q0 19693283 21 12.708262 Anserini +test3575 Q0 19870893 22 12.630726 Anserini +test3575 Q0 11284923 23 12.623372 Anserini +test3575 Q0 20772481 24 12.603493 Anserini +test3575 Q0 20261329 25 12.595160 Anserini +test3575 Q0 1744921 26 12.576627 Anserini +test3575 Q0 3795325 27 12.455200 Anserini +test3575 Q0 2325147 28 12.427297 Anserini +test3575 Q0 1743448 29 12.415185 Anserini +test3575 Q0 17162367 30 12.405930 Anserini +test3576 Q0 961558 1 13.190799 Anserini +test3576 Q0 1046281 2 12.450404 Anserini +test3576 Q0 961590 3 12.138420 Anserini +test3576 Q0 14607658 4 11.485884 Anserini +test3576 Q0 8102153 5 11.184053 Anserini +test3576 Q0 11056559 6 11.108727 Anserini +test3576 Q0 11056558 7 10.860811 Anserini +test3576 Q0 3032103 8 10.858066 Anserini +test3576 Q0 961577 9 10.755104 Anserini +test3576 Q0 7790025 10 10.662786 Anserini +test3576 Q0 7790024 11 10.605321 Anserini +test3576 Q0 1879036 12 10.505617 Anserini +test3576 Q0 8102130 13 10.422449 Anserini +test3576 Q0 961591 14 10.422449 Anserini +test3576 Q0 8856984 15 10.362840 Anserini +test3576 Q0 4432098 16 10.354677 Anserini +test3576 Q0 3981356 17 10.311421 Anserini +test3576 Q0 17626402 18 10.133445 Anserini +test3576 Q0 16154209 19 10.122001 Anserini +test3576 Q0 13535771 20 10.098368 Anserini +test3576 Q0 961602 21 10.003438 Anserini +test3576 Q0 18769177 22 9.824435 Anserini +test3576 Q0 11241117 23 9.815070 Anserini +test3576 Q0 18580623 24 9.801850 Anserini +test3576 Q0 8261753 25 9.790584 Anserini +test3576 Q0 6795823 26 9.772244 Anserini +test3576 Q0 5666112 27 9.718398 Anserini +test3576 Q0 2065613 28 9.687518 Anserini +test3576 Q0 4472863 29 9.687518 Anserini +test3576 Q0 4162882 30 9.687518 Anserini +test3577 Q0 9538008 1 9.534582 Anserini +test3577 Q0 12955257 2 9.187122 Anserini +test3577 Q0 13992264 3 9.079939 Anserini +test3577 Q0 3819853 4 9.075865 Anserini +test3577 Q0 16687366 5 8.859735 Anserini +test3577 Q0 848836 6 8.842231 Anserini +test3577 Q0 50589 7 8.798132 Anserini +test3577 Q0 6438078 8 8.792258 Anserini +test3577 Q0 10168343 9 8.766770 Anserini +test3577 Q0 16505752 10 8.739902 Anserini +test3577 Q0 20920451 11 8.724260 Anserini +test3577 Q0 15723753 12 8.713373 Anserini +test3577 Q0 3030579 13 8.707179 Anserini +test3577 Q0 10271200 14 8.704647 Anserini +test3577 Q0 12533314 15 8.691143 Anserini +test3577 Q0 12922479 16 8.691143 Anserini +test3577 Q0 8698520 17 8.660395 Anserini +test3577 Q0 615559 18 8.583410 Anserini +test3577 Q0 5942691 19 8.562344 Anserini +test3577 Q0 3030570 20 8.549305 Anserini +test3577 Q0 13333740 21 8.453882 Anserini +test3577 Q0 16505776 22 8.435715 Anserini +test3577 Q0 4609045 23 8.433167 Anserini +test3577 Q0 16505784 24 8.431620 Anserini +test3577 Q0 12821845 25 8.392488 Anserini +test3577 Q0 10067460 26 8.323087 Anserini +test3577 Q0 3819852 27 8.274056 Anserini +test3577 Q0 11450949 28 8.178209 Anserini +test3577 Q0 50615 29 8.165849 Anserini +test3577 Q0 2530783 30 8.159433 Anserini +test3578 Q0 2963282 1 21.903994 Anserini +test3578 Q0 6344050 2 21.120214 Anserini +test3578 Q0 18871515 3 20.378891 Anserini +test3578 Q0 15715129 4 19.941242 Anserini +test3578 Q0 14967100 5 19.893154 Anserini +test3578 Q0 18295014 6 19.626514 Anserini +test3578 Q0 2963243 7 19.558912 Anserini +test3578 Q0 2963253 8 19.558912 Anserini +test3578 Q0 15715132 9 19.448654 Anserini +test3578 Q0 2963285 10 19.391769 Anserini +test3578 Q0 2963287 11 19.161188 Anserini +test3578 Q0 6344049 12 18.959299 Anserini +test3578 Q0 2963268 13 18.614487 Anserini +test3578 Q0 2963272 14 18.614487 Anserini +test3578 Q0 14967099 15 18.614487 Anserini +test3578 Q0 2963288 16 18.545593 Anserini +test3578 Q0 2963284 17 18.477249 Anserini +test3578 Q0 6719719 18 18.475977 Anserini +test3578 Q0 6817384 19 18.409447 Anserini +test3578 Q0 17626491 20 18.376347 Anserini +test3578 Q0 14207207 21 18.129555 Anserini +test3578 Q0 2963252 22 18.102030 Anserini +test3578 Q0 2963254 23 18.102030 Anserini +test3578 Q0 7375579 24 18.079872 Anserini +test3578 Q0 13270485 25 18.023312 Anserini +test3578 Q0 20197648 26 17.854464 Anserini +test3578 Q0 2963280 27 17.807674 Anserini +test3578 Q0 10025793 28 17.589705 Anserini +test3578 Q0 11030979 29 17.470192 Anserini +test3578 Q0 7276623 30 17.381954 Anserini +test3579 Q0 13072259 1 11.703789 Anserini +test3579 Q0 11462303 2 11.409779 Anserini +test3579 Q0 11462308 3 11.308071 Anserini +test3579 Q0 13151970 4 11.132386 Anserini +test3579 Q0 9431783 5 10.972171 Anserini +test3579 Q0 9431789 6 10.881446 Anserini +test3579 Q0 14967033 7 10.823069 Anserini +test3579 Q0 13072260 8 10.664539 Anserini +test3579 Q0 13818377 9 10.568516 Anserini +test3579 Q0 17210587 10 10.551597 Anserini +test3579 Q0 17210586 11 10.498680 Anserini +test3579 Q0 11400296 12 10.469563 Anserini +test3579 Q0 15239531 13 10.443731 Anserini +test3579 Q0 12857132 14 10.443731 Anserini +test3579 Q0 12857135 15 10.443731 Anserini +test3579 Q0 13151966 16 10.289689 Anserini +test3579 Q0 11462302 17 10.056605 Anserini +test3579 Q0 17479593 18 10.022708 Anserini +test3579 Q0 20409313 19 9.889501 Anserini +test3579 Q0 12726818 20 9.859292 Anserini +test3579 Q0 18214875 21 9.780664 Anserini +test3579 Q0 20495110 22 9.713639 Anserini +test3579 Q0 13003523 23 9.698241 Anserini +test3579 Q0 11015418 24 9.608802 Anserini +test3579 Q0 12821901 25 9.574253 Anserini +test3579 Q0 17702637 26 9.536714 Anserini +test3579 Q0 18257405 27 9.527028 Anserini +test3579 Q0 12726820 28 9.519769 Anserini +test3579 Q0 15218397 29 9.497643 Anserini +test3579 Q0 12667432 30 9.487000 Anserini +test358 Q0 13352747 1 11.946705 Anserini +test358 Q0 9520241 2 11.700363 Anserini +test358 Q0 2626880 3 11.283627 Anserini +test358 Q0 3170432 4 10.391276 Anserini +test358 Q0 20084190 5 10.263070 Anserini +test358 Q0 9061173 6 10.159154 Anserini +test358 Q0 15900894 7 10.017843 Anserini +test358 Q0 3893468 8 10.014348 Anserini +test358 Q0 15792168 9 9.894838 Anserini +test358 Q0 1119226 10 9.863255 Anserini +test358 Q0 15792166 11 9.851566 Anserini +test358 Q0 17189970 12 9.745127 Anserini +test358 Q0 14307990 13 9.735579 Anserini +test358 Q0 3727515 14 9.632460 Anserini +test358 Q0 2461132 15 9.616922 Anserini +test358 Q0 1316856 16 9.573337 Anserini +test358 Q0 1119229 17 9.558636 Anserini +test358 Q0 9644684 18 9.546686 Anserini +test358 Q0 20620134 19 9.542044 Anserini +test358 Q0 2951960 20 9.533271 Anserini +test358 Q0 8707508 21 9.530060 Anserini +test358 Q0 9644682 22 9.500424 Anserini +test358 Q0 12136170 23 9.459031 Anserini +test358 Q0 178055 24 9.452179 Anserini +test358 Q0 931338 25 9.450346 Anserini +test358 Q0 20780305 26 9.443487 Anserini +test358 Q0 20780307 27 9.390043 Anserini +test358 Q0 4231133 28 9.341292 Anserini +test358 Q0 6404516 29 9.329510 Anserini +test358 Q0 3170433 30 9.314848 Anserini +test3580 Q0 17916257 1 12.076777 Anserini +test3580 Q0 22206 2 11.522092 Anserini +test3580 Q0 12447341 3 11.402962 Anserini +test3580 Q0 6127051 4 11.297812 Anserini +test3580 Q0 11950950 5 11.239174 Anserini +test3580 Q0 8277422 6 11.204087 Anserini +test3580 Q0 17452138 7 11.142581 Anserini +test3580 Q0 2136990 8 10.838900 Anserini +test3580 Q0 10767650 9 10.821577 Anserini +test3580 Q0 8277427 10 10.801355 Anserini +test3580 Q0 8632679 11 10.742559 Anserini +test3580 Q0 11209982 12 10.650067 Anserini +test3580 Q0 17916256 13 10.548750 Anserini +test3580 Q0 2690483 14 10.516988 Anserini +test3580 Q0 762076 15 10.515587 Anserini +test3580 Q0 762082 16 10.515587 Anserini +test3580 Q0 2136974 17 10.477097 Anserini +test3580 Q0 15798906 18 10.319981 Anserini +test3580 Q0 2136996 19 10.258957 Anserini +test3580 Q0 4170325 20 10.214365 Anserini +test3580 Q0 4118733 21 10.149145 Anserini +test3580 Q0 2136975 22 10.149145 Anserini +test3580 Q0 6490655 23 10.107544 Anserini +test3580 Q0 2136982 24 10.005026 Anserini +test3580 Q0 1911177 25 9.960128 Anserini +test3580 Q0 7471034 26 9.894331 Anserini +test3580 Q0 2192693 27 9.873058 Anserini +test3580 Q0 4118739 28 9.865997 Anserini +test3580 Q0 1816843 29 9.860168 Anserini +test3580 Q0 17278242 30 9.860168 Anserini +test3581 Q0 3005504 1 19.311508 Anserini +test3581 Q0 3005449 2 19.310429 Anserini +test3581 Q0 3005465 3 18.079224 Anserini +test3581 Q0 3005487 4 18.067324 Anserini +test3581 Q0 3005500 5 17.756241 Anserini +test3581 Q0 3005450 6 17.721855 Anserini +test3581 Q0 3005452 7 17.624374 Anserini +test3581 Q0 3005473 8 17.608078 Anserini +test3581 Q0 3005467 9 17.371651 Anserini +test3581 Q0 17877089 10 17.284401 Anserini +test3581 Q0 9945489 11 17.192551 Anserini +test3581 Q0 19698948 12 17.048452 Anserini +test3581 Q0 16169758 13 17.011829 Anserini +test3581 Q0 6001533 14 16.900734 Anserini +test3581 Q0 3005497 15 16.774353 Anserini +test3581 Q0 3005493 16 16.751890 Anserini +test3581 Q0 3005451 17 16.560600 Anserini +test3581 Q0 16384060 18 16.560226 Anserini +test3581 Q0 3005489 19 16.526937 Anserini +test3581 Q0 16384072 20 16.358650 Anserini +test3581 Q0 17781213 21 16.122646 Anserini +test3581 Q0 3005469 22 16.069401 Anserini +test3581 Q0 3005492 23 15.891240 Anserini +test3581 Q0 3005472 24 15.727592 Anserini +test3581 Q0 9945488 25 15.727592 Anserini +test3581 Q0 793893 26 15.716958 Anserini +test3581 Q0 3005454 27 15.633122 Anserini +test3581 Q0 3005503 28 15.631822 Anserini +test3581 Q0 3005499 29 15.617949 Anserini +test3581 Q0 18113753 30 15.491941 Anserini +test3582 Q0 10479678 1 12.343941 Anserini +test3582 Q0 11817066 2 11.554065 Anserini +test3582 Q0 17065862 3 11.483921 Anserini +test3582 Q0 13776161 4 11.197940 Anserini +test3582 Q0 15978952 5 11.066930 Anserini +test3582 Q0 9803052 6 10.904456 Anserini +test3582 Q0 12508221 7 10.766921 Anserini +test3582 Q0 18772701 8 10.755952 Anserini +test3582 Q0 4960025 9 10.664157 Anserini +test3582 Q0 12096001 10 10.616438 Anserini +test3582 Q0 14495913 11 10.573144 Anserini +test3582 Q0 6748442 12 10.545194 Anserini +test3582 Q0 18094638 13 10.522290 Anserini +test3582 Q0 10235758 14 10.510950 Anserini +test3582 Q0 20025516 15 10.510950 Anserini +test3582 Q0 18575019 16 10.359817 Anserini +test3582 Q0 18302084 17 10.324479 Anserini +test3582 Q0 17060164 18 10.279975 Anserini +test3582 Q0 12186941 19 10.261987 Anserini +test3582 Q0 8798077 20 10.261987 Anserini +test3582 Q0 7517171 21 10.166042 Anserini +test3582 Q0 20723611 22 10.133142 Anserini +test3582 Q0 12087108 23 10.101816 Anserini +test3582 Q0 18260017 24 10.049871 Anserini +test3582 Q0 18306083 25 9.994476 Anserini +test3582 Q0 17617923 26 9.962112 Anserini +test3582 Q0 11837130 27 9.951225 Anserini +test3582 Q0 9383429 28 9.936015 Anserini +test3582 Q0 16325188 29 9.912868 Anserini +test3582 Q0 13344443 30 9.909080 Anserini +test3583 Q0 7753446 1 19.919275 Anserini +test3583 Q0 7753493 2 19.380625 Anserini +test3583 Q0 1909291 3 19.357258 Anserini +test3583 Q0 14063140 4 18.193830 Anserini +test3583 Q0 6902396 5 17.989868 Anserini +test3583 Q0 5535257 6 17.959888 Anserini +test3583 Q0 11567952 7 17.675739 Anserini +test3583 Q0 11567950 8 17.595634 Anserini +test3583 Q0 7753497 9 17.447346 Anserini +test3583 Q0 1807949 10 17.185755 Anserini +test3583 Q0 7753461 11 17.157961 Anserini +test3583 Q0 12266021 12 16.595390 Anserini +test3583 Q0 1675650 13 16.556589 Anserini +test3583 Q0 13114210 14 16.141459 Anserini +test3583 Q0 7753498 15 16.107914 Anserini +test3583 Q0 7753499 16 16.105642 Anserini +test3583 Q0 7753449 17 16.101692 Anserini +test3583 Q0 1675668 18 16.015066 Anserini +test3583 Q0 12268251 19 15.728470 Anserini +test3583 Q0 1675684 20 15.704435 Anserini +test3583 Q0 7753736 21 15.641212 Anserini +test3583 Q0 6902393 22 15.626941 Anserini +test3583 Q0 1675673 23 15.579752 Anserini +test3583 Q0 7753492 24 15.538595 Anserini +test3583 Q0 7753596 25 15.485730 Anserini +test3583 Q0 7753431 26 15.447323 Anserini +test3583 Q0 1675658 27 15.414835 Anserini +test3583 Q0 10113627 28 15.399126 Anserini +test3583 Q0 7753432 29 15.399126 Anserini +test3583 Q0 8026723 30 15.316317 Anserini +test3584 Q0 1549061 1 16.516115 Anserini +test3584 Q0 1549071 2 14.684983 Anserini +test3584 Q0 1549069 3 13.461007 Anserini +test3584 Q0 6077782 4 13.361237 Anserini +test3584 Q0 1549070 5 12.730635 Anserini +test3584 Q0 13742795 6 12.609760 Anserini +test3584 Q0 15542802 7 12.245159 Anserini +test3584 Q0 1638964 8 11.472178 Anserini +test3584 Q0 1549068 9 11.472178 Anserini +test3584 Q0 6077785 10 11.393595 Anserini +test3584 Q0 17466995 11 11.176202 Anserini +test3584 Q0 16202994 12 11.111059 Anserini +test3584 Q0 19020341 13 10.882452 Anserini +test3584 Q0 16499603 14 10.869771 Anserini +test3584 Q0 8330368 15 10.698792 Anserini +test3584 Q0 19099267 16 10.614605 Anserini +test3584 Q0 17466996 17 10.609854 Anserini +test3584 Q0 6514439 18 10.586164 Anserini +test3584 Q0 7308059 19 10.579453 Anserini +test3584 Q0 17466992 20 10.555718 Anserini +test3584 Q0 17467000 21 10.555718 Anserini +test3584 Q0 2510586 22 10.475883 Anserini +test3584 Q0 11503685 23 10.427109 Anserini +test3584 Q0 11503687 24 10.374269 Anserini +test3584 Q0 7308058 25 10.208366 Anserini +test3584 Q0 11645036 26 10.207777 Anserini +test3584 Q0 2812349 27 10.200328 Anserini +test3584 Q0 12722532 28 10.133562 Anserini +test3584 Q0 7308062 29 10.086616 Anserini +test3584 Q0 16889878 30 9.993467 Anserini +test3585 Q0 8473583 1 17.444115 Anserini +test3585 Q0 8473575 2 17.348536 Anserini +test3585 Q0 3437066 3 17.095572 Anserini +test3585 Q0 6227729 4 17.078144 Anserini +test3585 Q0 9650603 5 16.939632 Anserini +test3585 Q0 6698932 6 16.803368 Anserini +test3585 Q0 5140027 7 16.733189 Anserini +test3585 Q0 6227728 8 16.643816 Anserini +test3585 Q0 6227749 9 16.517546 Anserini +test3585 Q0 13375430 10 16.399288 Anserini +test3585 Q0 10255882 11 16.361298 Anserini +test3585 Q0 2524498 12 16.020674 Anserini +test3585 Q0 6227747 13 15.912336 Anserini +test3585 Q0 6227748 14 15.906744 Anserini +test3585 Q0 11896609 15 15.878469 Anserini +test3585 Q0 6227739 16 15.833292 Anserini +test3585 Q0 16918937 17 15.798188 Anserini +test3585 Q0 6227738 18 15.687249 Anserini +test3585 Q0 6227731 19 15.651880 Anserini +test3585 Q0 6227745 20 15.629906 Anserini +test3585 Q0 8473576 21 15.629906 Anserini +test3585 Q0 2632615 22 15.627861 Anserini +test3585 Q0 2632617 23 15.627861 Anserini +test3585 Q0 1626290 24 15.535700 Anserini +test3585 Q0 6227741 25 15.535700 Anserini +test3585 Q0 16824861 26 15.421371 Anserini +test3585 Q0 6227744 27 15.346140 Anserini +test3585 Q0 8473578 28 15.338432 Anserini +test3585 Q0 8473580 29 15.338432 Anserini +test3585 Q0 6227742 30 15.284248 Anserini +test3586 Q0 14773289 1 9.890492 Anserini +test3586 Q0 274202 2 9.841466 Anserini +test3586 Q0 242738 3 9.608540 Anserini +test3586 Q0 1582157 4 9.500549 Anserini +test3586 Q0 8042224 5 9.445990 Anserini +test3586 Q0 20104166 6 9.329700 Anserini +test3586 Q0 10996584 7 9.297238 Anserini +test3586 Q0 7803621 8 9.268790 Anserini +test3586 Q0 3465305 9 9.209893 Anserini +test3586 Q0 1996151 10 9.171219 Anserini +test3586 Q0 624424 11 9.024346 Anserini +test3586 Q0 1887918 12 8.984894 Anserini +test3586 Q0 6258315 13 8.984862 Anserini +test3586 Q0 1347908 14 8.966345 Anserini +test3586 Q0 2448562 15 8.926796 Anserini +test3586 Q0 18604068 16 8.889272 Anserini +test3586 Q0 8971971 17 8.876945 Anserini +test3586 Q0 3692553 18 8.852320 Anserini +test3586 Q0 18280819 19 8.852190 Anserini +test3586 Q0 17431540 20 8.816491 Anserini +test3586 Q0 9850491 21 8.799896 Anserini +test3586 Q0 224573 22 8.787655 Anserini +test3586 Q0 6844384 23 8.753969 Anserini +test3586 Q0 16542272 24 8.713570 Anserini +test3586 Q0 10270412 25 8.709775 Anserini +test3586 Q0 7391864 26 8.704065 Anserini +test3586 Q0 955992 27 8.695420 Anserini +test3586 Q0 17959141 28 8.680018 Anserini +test3586 Q0 6822849 29 8.667790 Anserini +test3586 Q0 15020082 30 8.653754 Anserini +test3587 Q0 15101322 1 11.964880 Anserini +test3587 Q0 7287934 2 11.577116 Anserini +test3587 Q0 4464155 3 11.201782 Anserini +test3587 Q0 5917519 4 11.075377 Anserini +test3587 Q0 19589846 5 10.990324 Anserini +test3587 Q0 10697601 6 10.989365 Anserini +test3587 Q0 19818572 7 10.836146 Anserini +test3587 Q0 15291826 8 10.767883 Anserini +test3587 Q0 11295396 9 10.452374 Anserini +test3587 Q0 19581992 10 10.377983 Anserini +test3587 Q0 3970425 11 10.113587 Anserini +test3587 Q0 9341346 12 9.853946 Anserini +test3587 Q0 17899769 13 9.798529 Anserini +test3587 Q0 8037794 14 9.784254 Anserini +test3587 Q0 12525509 15 9.740354 Anserini +test3587 Q0 15866468 16 9.713827 Anserini +test3587 Q0 10356704 17 9.686188 Anserini +test3587 Q0 16946015 18 9.671435 Anserini +test3587 Q0 5545226 19 9.671097 Anserini +test3587 Q0 16865986 20 9.656740 Anserini +test3587 Q0 17717545 21 9.615008 Anserini +test3587 Q0 5758747 22 9.584959 Anserini +test3587 Q0 7315560 23 9.553874 Anserini +test3587 Q0 6140817 24 9.549772 Anserini +test3587 Q0 2083494 25 9.540101 Anserini +test3587 Q0 12464536 26 9.536798 Anserini +test3587 Q0 5121361 27 9.528530 Anserini +test3587 Q0 17779697 28 9.527294 Anserini +test3587 Q0 4324710 29 9.525323 Anserini +test3587 Q0 5152428 30 9.514366 Anserini +test3588 Q0 3844962 1 13.019815 Anserini +test3588 Q0 3844980 2 13.006596 Anserini +test3588 Q0 9635633 3 11.535866 Anserini +test3588 Q0 6722900 4 11.177216 Anserini +test3588 Q0 11046752 5 11.046029 Anserini +test3588 Q0 9128498 6 10.937579 Anserini +test3588 Q0 17111131 7 10.758492 Anserini +test3588 Q0 17111132 8 10.758492 Anserini +test3588 Q0 3343872 9 10.718739 Anserini +test3588 Q0 14246974 10 10.662351 Anserini +test3588 Q0 18150172 11 10.639595 Anserini +test3588 Q0 4707858 12 10.508134 Anserini +test3588 Q0 12523956 13 10.288117 Anserini +test3588 Q0 17122950 14 10.271450 Anserini +test3588 Q0 20924269 15 10.227810 Anserini +test3588 Q0 606976 16 10.201697 Anserini +test3588 Q0 33240 17 10.200156 Anserini +test3588 Q0 6620146 18 10.196955 Anserini +test3588 Q0 14497577 19 9.995204 Anserini +test3588 Q0 2714924 20 9.983763 Anserini +test3588 Q0 8059565 21 9.978705 Anserini +test3588 Q0 7201031 22 9.978705 Anserini +test3588 Q0 991603 23 9.912302 Anserini +test3588 Q0 33262 24 9.865343 Anserini +test3588 Q0 18542327 25 9.799507 Anserini +test3588 Q0 12633014 26 9.792018 Anserini +test3588 Q0 15069662 27 9.790314 Anserini +test3588 Q0 3831435 28 9.698833 Anserini +test3588 Q0 2726531 29 9.677067 Anserini +test3588 Q0 13232494 30 9.669378 Anserini +test3589 Q0 8260287 1 9.695163 Anserini +test3589 Q0 13579997 2 9.395951 Anserini +test3589 Q0 13579999 3 9.395951 Anserini +test3589 Q0 18962794 4 9.264421 Anserini +test3589 Q0 18588243 5 9.188325 Anserini +test3589 Q0 13978968 6 9.127723 Anserini +test3589 Q0 8579990 7 9.088184 Anserini +test3589 Q0 8579989 8 9.088184 Anserini +test3589 Q0 20102830 9 9.068089 Anserini +test3589 Q0 19188071 10 9.026652 Anserini +test3589 Q0 19215950 11 8.970828 Anserini +test3589 Q0 9552136 12 8.913094 Anserini +test3589 Q0 17793508 13 8.873486 Anserini +test3589 Q0 10996058 14 8.848339 Anserini +test3589 Q0 19785194 15 8.827245 Anserini +test3589 Q0 10277240 16 8.821772 Anserini +test3589 Q0 13811941 17 8.816807 Anserini +test3589 Q0 17095706 18 8.810284 Anserini +test3589 Q0 20617870 19 8.810284 Anserini +test3589 Q0 12857105 20 8.754416 Anserini +test3589 Q0 18635990 21 8.738178 Anserini +test3589 Q0 10277243 22 8.706530 Anserini +test3589 Q0 8288815 23 8.701279 Anserini +test3589 Q0 18265751 24 8.686890 Anserini +test3589 Q0 17093449 25 8.651791 Anserini +test3589 Q0 5251975 26 8.651791 Anserini +test3589 Q0 8768458 27 8.635944 Anserini +test3589 Q0 6549935 28 8.628143 Anserini +test3589 Q0 9552662 29 8.596865 Anserini +test3589 Q0 14963448 30 8.563032 Anserini +test359 Q0 7990975 1 20.199936 Anserini +test359 Q0 6360128 2 19.397814 Anserini +test359 Q0 9578607 3 19.319996 Anserini +test359 Q0 2981476 4 19.286591 Anserini +test359 Q0 12661950 5 19.076431 Anserini +test359 Q0 472789 6 18.361502 Anserini +test359 Q0 19835112 7 18.032352 Anserini +test359 Q0 2981477 8 18.028452 Anserini +test359 Q0 20277299 9 17.988783 Anserini +test359 Q0 15724138 10 17.928019 Anserini +test359 Q0 14398124 11 17.927116 Anserini +test359 Q0 6669497 12 17.794434 Anserini +test359 Q0 6360124 13 17.749191 Anserini +test359 Q0 2763028 14 17.581257 Anserini +test359 Q0 9578597 15 17.554058 Anserini +test359 Q0 15724141 16 17.484566 Anserini +test359 Q0 11803521 17 17.391088 Anserini +test359 Q0 9578603 18 17.316061 Anserini +test359 Q0 2981478 19 17.239061 Anserini +test359 Q0 5837504 20 17.238770 Anserini +test359 Q0 2207323 21 17.207386 Anserini +test359 Q0 7823262 22 17.201103 Anserini +test359 Q0 5751041 23 17.036556 Anserini +test359 Q0 8289494 24 17.028528 Anserini +test359 Q0 765278 25 16.978251 Anserini +test359 Q0 15724140 26 16.955238 Anserini +test359 Q0 15724144 27 16.926085 Anserini +test359 Q0 473651 28 16.854248 Anserini +test359 Q0 2763032 29 16.829430 Anserini +test359 Q0 3171077 30 16.798334 Anserini +test3590 Q0 16249436 1 15.672410 Anserini +test3590 Q0 6395521 2 14.447529 Anserini +test3590 Q0 17477639 3 13.734536 Anserini +test3590 Q0 2948156 4 13.499765 Anserini +test3590 Q0 17957309 5 13.274356 Anserini +test3590 Q0 323434 6 13.273790 Anserini +test3590 Q0 12736 7 13.176003 Anserini +test3590 Q0 19616649 8 12.517956 Anserini +test3590 Q0 11214046 9 12.173237 Anserini +test3590 Q0 10975857 10 11.956060 Anserini +test3590 Q0 8553226 11 11.746101 Anserini +test3590 Q0 13881456 12 11.696779 Anserini +test3590 Q0 2388248 13 11.620406 Anserini +test3590 Q0 5115507 14 11.204693 Anserini +test3590 Q0 9063884 15 11.179836 Anserini +test3590 Q0 334935 16 11.078559 Anserini +test3590 Q0 19964467 17 11.078559 Anserini +test3590 Q0 6055671 18 11.042915 Anserini +test3590 Q0 14658680 19 11.026014 Anserini +test3590 Q0 2646988 20 11.004936 Anserini +test3590 Q0 4304430 21 10.976787 Anserini +test3590 Q0 14419101 22 10.940508 Anserini +test3590 Q0 14121579 23 10.905630 Anserini +test3590 Q0 16846416 24 10.891250 Anserini +test3590 Q0 4436699 25 10.890714 Anserini +test3590 Q0 318797 26 10.841423 Anserini +test3590 Q0 9997805 27 10.811934 Anserini +test3590 Q0 7139928 28 10.775550 Anserini +test3590 Q0 6354846 29 10.748392 Anserini +test3590 Q0 11892155 30 10.733641 Anserini +test3591 Q0 17191772 1 15.243546 Anserini +test3591 Q0 19755282 2 14.811045 Anserini +test3591 Q0 6001752 3 14.472292 Anserini +test3591 Q0 14060849 4 14.461239 Anserini +test3591 Q0 20484333 5 14.317280 Anserini +test3591 Q0 17539956 6 14.178778 Anserini +test3591 Q0 18393017 7 14.144114 Anserini +test3591 Q0 9655616 8 14.079217 Anserini +test3591 Q0 17191773 9 14.033470 Anserini +test3591 Q0 18620827 10 13.887156 Anserini +test3591 Q0 20043028 11 13.798352 Anserini +test3591 Q0 15426697 12 13.774880 Anserini +test3591 Q0 20764848 13 13.771271 Anserini +test3591 Q0 20484338 14 13.765799 Anserini +test3591 Q0 14723642 15 13.650565 Anserini +test3591 Q0 13136480 16 13.628134 Anserini +test3591 Q0 5115869 17 13.626926 Anserini +test3591 Q0 13421901 18 13.625643 Anserini +test3591 Q0 9978077 19 13.619620 Anserini +test3591 Q0 18742545 20 13.575591 Anserini +test3591 Q0 13548113 21 13.573881 Anserini +test3591 Q0 8498755 22 13.547460 Anserini +test3591 Q0 17902969 23 13.529926 Anserini +test3591 Q0 3583832 24 13.516050 Anserini +test3591 Q0 13493864 25 13.514242 Anserini +test3591 Q0 19214673 26 13.500953 Anserini +test3591 Q0 9989908 27 13.500953 Anserini +test3591 Q0 19075776 28 13.486042 Anserini +test3591 Q0 20705378 29 13.467107 Anserini +test3591 Q0 8786606 30 13.457663 Anserini +test3592 Q0 4289378 1 11.727938 Anserini +test3592 Q0 17827906 2 11.144691 Anserini +test3592 Q0 12047640 3 11.036360 Anserini +test3592 Q0 8321553 4 10.935740 Anserini +test3592 Q0 20713672 5 10.910149 Anserini +test3592 Q0 12931504 6 10.785883 Anserini +test3592 Q0 6430000 7 10.767537 Anserini +test3592 Q0 5481977 8 10.741294 Anserini +test3592 Q0 10472330 9 10.529291 Anserini +test3592 Q0 10748382 10 10.529291 Anserini +test3592 Q0 15585953 11 10.387076 Anserini +test3592 Q0 17828761 12 10.317712 Anserini +test3592 Q0 4591850 13 10.291356 Anserini +test3592 Q0 10748376 14 10.185885 Anserini +test3592 Q0 18868813 15 10.185885 Anserini +test3592 Q0 17039803 16 10.109444 Anserini +test3592 Q0 5481981 17 9.992289 Anserini +test3592 Q0 2817362 18 9.962888 Anserini +test3592 Q0 4784561 19 9.917219 Anserini +test3592 Q0 17828762 20 9.887691 Anserini +test3592 Q0 13760951 21 9.836091 Anserini +test3592 Q0 13397363 22 9.822955 Anserini +test3592 Q0 18724919 23 9.819939 Anserini +test3592 Q0 20024093 24 9.745831 Anserini +test3592 Q0 2534333 25 9.726157 Anserini +test3592 Q0 13760936 26 9.720119 Anserini +test3592 Q0 13760976 27 9.712410 Anserini +test3592 Q0 5203695 28 9.659569 Anserini +test3592 Q0 6878934 29 9.569384 Anserini +test3592 Q0 5432053 30 9.519528 Anserini +test3593 Q0 2634511 1 17.387379 Anserini +test3593 Q0 51743 2 15.016934 Anserini +test3593 Q0 5791524 3 14.991073 Anserini +test3593 Q0 15351692 4 14.268899 Anserini +test3593 Q0 2634506 5 14.200655 Anserini +test3593 Q0 4673974 6 13.484072 Anserini +test3593 Q0 5512051 7 13.434791 Anserini +test3593 Q0 7987089 8 13.228713 Anserini +test3593 Q0 11080547 9 13.225402 Anserini +test3593 Q0 2634501 10 13.208286 Anserini +test3593 Q0 13561946 11 13.164859 Anserini +test3593 Q0 10561781 12 13.041440 Anserini +test3593 Q0 13760726 13 13.032512 Anserini +test3593 Q0 12377547 14 12.991797 Anserini +test3593 Q0 15351695 15 12.931872 Anserini +test3593 Q0 13561926 16 12.884483 Anserini +test3593 Q0 12377548 17 12.835391 Anserini +test3593 Q0 6563360 18 12.794038 Anserini +test3593 Q0 1536056 19 12.788927 Anserini +test3593 Q0 10276032 20 12.706654 Anserini +test3593 Q0 2634500 21 12.701386 Anserini +test3593 Q0 14485322 22 12.680324 Anserini +test3593 Q0 2634513 23 12.665927 Anserini +test3593 Q0 8420254 24 12.586506 Anserini +test3593 Q0 16462055 25 12.583231 Anserini +test3593 Q0 2000279 26 12.570550 Anserini +test3593 Q0 5592195 27 12.499955 Anserini +test3593 Q0 3120848 28 12.453671 Anserini +test3593 Q0 6711973 29 12.382066 Anserini +test3593 Q0 15056304 30 12.360698 Anserini +test3594 Q0 3178486 1 12.036694 Anserini +test3594 Q0 3400693 2 11.270168 Anserini +test3594 Q0 19736773 3 11.117010 Anserini +test3594 Q0 6674253 4 10.989700 Anserini +test3594 Q0 18426762 5 10.942451 Anserini +test3594 Q0 20704486 6 10.271329 Anserini +test3594 Q0 4129660 7 10.066483 Anserini +test3594 Q0 18422675 8 10.032686 Anserini +test3594 Q0 20993537 9 9.990427 Anserini +test3594 Q0 1745167 10 9.948435 Anserini +test3594 Q0 2013856 11 9.902456 Anserini +test3594 Q0 3252198 12 9.863218 Anserini +test3594 Q0 20993538 13 9.855866 Anserini +test3594 Q0 16534273 14 9.772644 Anserini +test3594 Q0 20704484 15 9.733762 Anserini +test3594 Q0 2330736 16 9.676632 Anserini +test3594 Q0 14423271 17 9.672126 Anserini +test3594 Q0 4357467 18 9.659144 Anserini +test3594 Q0 420911 19 9.646298 Anserini +test3594 Q0 11601163 20 9.593482 Anserini +test3594 Q0 6232974 21 9.580015 Anserini +test3594 Q0 13029313 22 9.565612 Anserini +test3594 Q0 7506000 23 9.552355 Anserini +test3594 Q0 4086769 24 9.538465 Anserini +test3594 Q0 14552904 25 9.515739 Anserini +test3594 Q0 16534271 26 9.499721 Anserini +test3594 Q0 6437888 27 9.460163 Anserini +test3594 Q0 5786234 28 9.450541 Anserini +test3594 Q0 468449 29 9.442973 Anserini +test3594 Q0 11501130 30 9.426783 Anserini +test3595 Q0 6629566 1 14.143791 Anserini +test3595 Q0 9985530 2 13.432419 Anserini +test3595 Q0 3763535 3 13.309216 Anserini +test3595 Q0 4648171 4 12.838613 Anserini +test3595 Q0 4643961 5 12.737538 Anserini +test3595 Q0 12188462 6 12.602751 Anserini +test3595 Q0 11788254 7 12.569079 Anserini +test3595 Q0 11788253 8 12.569079 Anserini +test3595 Q0 19729127 9 12.422523 Anserini +test3595 Q0 6629579 10 11.959261 Anserini +test3595 Q0 20730910 11 11.908807 Anserini +test3595 Q0 3772459 12 11.854406 Anserini +test3595 Q0 13135131 13 11.828754 Anserini +test3595 Q0 13842579 14 11.698113 Anserini +test3595 Q0 13842577 15 11.698113 Anserini +test3595 Q0 13842586 16 11.597284 Anserini +test3595 Q0 13842480 17 11.597284 Anserini +test3595 Q0 13842429 18 11.597284 Anserini +test3595 Q0 13842431 19 11.597284 Anserini +test3595 Q0 13842532 20 11.597284 Anserini +test3595 Q0 13989812 21 11.584931 Anserini +test3595 Q0 8174102 22 11.576851 Anserini +test3595 Q0 6670556 23 11.571806 Anserini +test3595 Q0 3149959 24 11.571521 Anserini +test3595 Q0 17407557 25 11.442160 Anserini +test3595 Q0 3605355 26 11.430938 Anserini +test3595 Q0 480524 27 11.430938 Anserini +test3595 Q0 6408239 28 11.430136 Anserini +test3595 Q0 15524516 29 11.400990 Anserini +test3595 Q0 3763526 30 11.255077 Anserini +test3596 Q0 20793945 1 11.693957 Anserini +test3596 Q0 14586924 2 11.580259 Anserini +test3596 Q0 7236199 3 11.126613 Anserini +test3596 Q0 2599595 4 10.986436 Anserini +test3596 Q0 14588913 5 10.853319 Anserini +test3596 Q0 2721446 6 10.683987 Anserini +test3596 Q0 12917321 7 10.640018 Anserini +test3596 Q0 12642725 8 10.269624 Anserini +test3596 Q0 14588924 9 10.246290 Anserini +test3596 Q0 14588888 10 10.246290 Anserini +test3596 Q0 19182200 11 10.216887 Anserini +test3596 Q0 19182203 12 10.216887 Anserini +test3596 Q0 7236239 13 10.215189 Anserini +test3596 Q0 14588898 14 10.150248 Anserini +test3596 Q0 12642766 15 10.107498 Anserini +test3596 Q0 16084470 16 10.055356 Anserini +test3596 Q0 12659359 17 10.000465 Anserini +test3596 Q0 7236221 18 9.868256 Anserini +test3596 Q0 12281871 19 9.857487 Anserini +test3596 Q0 6797926 20 9.855635 Anserini +test3596 Q0 9846694 21 9.852682 Anserini +test3596 Q0 16084486 22 9.834563 Anserini +test3596 Q0 12281866 23 9.797815 Anserini +test3596 Q0 14588905 24 9.797398 Anserini +test3596 Q0 6797912 25 9.779137 Anserini +test3596 Q0 729401 26 9.721356 Anserini +test3596 Q0 14588907 27 9.721356 Anserini +test3596 Q0 20404683 28 9.710945 Anserini +test3596 Q0 12873108 29 9.710719 Anserini +test3596 Q0 7236249 30 9.708941 Anserini +test3597 Q0 5602004 1 10.458354 Anserini +test3597 Q0 19148561 2 10.274482 Anserini +test3597 Q0 1764670 3 9.835770 Anserini +test3597 Q0 9250542 4 9.801693 Anserini +test3597 Q0 16921737 5 9.645111 Anserini +test3597 Q0 4287714 6 9.331691 Anserini +test3597 Q0 4550923 7 9.317431 Anserini +test3597 Q0 11166866 8 9.220868 Anserini +test3597 Q0 4880709 9 9.146632 Anserini +test3597 Q0 4418757 10 9.086449 Anserini +test3597 Q0 7622624 11 9.052860 Anserini +test3597 Q0 11183391 12 9.042965 Anserini +test3597 Q0 13941030 13 9.039369 Anserini +test3597 Q0 9812581 14 9.024604 Anserini +test3597 Q0 7764222 15 9.023003 Anserini +test3597 Q0 18539625 16 8.936371 Anserini +test3597 Q0 2964922 17 8.845692 Anserini +test3597 Q0 11010888 18 8.786488 Anserini +test3597 Q0 93418 19 8.765643 Anserini +test3597 Q0 18566114 20 8.734949 Anserini +test3597 Q0 11953374 21 8.732504 Anserini +test3597 Q0 3626626 22 8.726436 Anserini +test3597 Q0 19499098 23 8.721218 Anserini +test3597 Q0 13803021 24 8.717184 Anserini +test3597 Q0 7970675 25 8.675844 Anserini +test3597 Q0 15675980 26 8.635489 Anserini +test3597 Q0 18296898 27 8.631154 Anserini +test3597 Q0 16355731 28 8.615118 Anserini +test3597 Q0 4803234 29 8.609798 Anserini +test3597 Q0 4311455 30 8.602510 Anserini +test3598 Q0 10594279 1 15.980351 Anserini +test3598 Q0 10594242 2 15.090356 Anserini +test3598 Q0 13411912 3 14.664697 Anserini +test3598 Q0 13411911 4 14.583754 Anserini +test3598 Q0 12849218 5 14.437897 Anserini +test3598 Q0 12849227 6 14.199822 Anserini +test3598 Q0 6210099 7 14.190647 Anserini +test3598 Q0 10166992 8 14.180350 Anserini +test3598 Q0 13802594 9 14.097458 Anserini +test3598 Q0 13528972 10 14.014405 Anserini +test3598 Q0 13700067 11 14.014405 Anserini +test3598 Q0 12275323 12 13.911711 Anserini +test3598 Q0 13528959 13 13.857307 Anserini +test3598 Q0 13700059 14 13.857307 Anserini +test3598 Q0 13970490 15 13.857307 Anserini +test3598 Q0 10594298 16 13.790633 Anserini +test3598 Q0 12275298 17 13.619232 Anserini +test3598 Q0 12275299 18 13.619232 Anserini +test3598 Q0 10594278 19 13.456807 Anserini +test3598 Q0 13357964 20 13.434399 Anserini +test3598 Q0 10594243 21 13.292495 Anserini +test3598 Q0 13802593 22 13.291962 Anserini +test3598 Q0 10594295 23 13.215830 Anserini +test3598 Q0 12275319 24 13.196577 Anserini +test3598 Q0 10594280 25 13.141760 Anserini +test3598 Q0 13528970 26 12.951483 Anserini +test3598 Q0 8561319 27 12.908047 Anserini +test3598 Q0 10594250 28 12.863649 Anserini +test3598 Q0 12275317 29 12.720552 Anserini +test3598 Q0 16489534 30 12.698973 Anserini +test3599 Q0 630761 1 14.485686 Anserini +test3599 Q0 5626878 2 14.424318 Anserini +test3599 Q0 11666066 3 14.169271 Anserini +test3599 Q0 6327157 4 13.948490 Anserini +test3599 Q0 630768 5 13.916525 Anserini +test3599 Q0 11088076 6 13.886214 Anserini +test3599 Q0 11088086 7 13.886214 Anserini +test3599 Q0 5717633 8 13.793393 Anserini +test3599 Q0 630752 9 13.617043 Anserini +test3599 Q0 5626903 10 13.521166 Anserini +test3599 Q0 6830069 11 13.384547 Anserini +test3599 Q0 6830089 12 13.384547 Anserini +test3599 Q0 1932829 13 13.308301 Anserini +test3599 Q0 7037553 14 13.157186 Anserini +test3599 Q0 6555041 15 13.115836 Anserini +test3599 Q0 1387263 16 13.035509 Anserini +test3599 Q0 11088502 17 12.969357 Anserini +test3599 Q0 11666181 18 12.873573 Anserini +test3599 Q0 630760 19 12.849024 Anserini +test3599 Q0 1380319 20 12.831321 Anserini +test3599 Q0 7917629 21 12.812734 Anserini +test3599 Q0 7037596 22 12.812734 Anserini +test3599 Q0 1264834 23 12.812734 Anserini +test3599 Q0 6555001 24 12.812734 Anserini +test3599 Q0 11666210 25 12.796211 Anserini +test3599 Q0 12642710 26 12.796211 Anserini +test3599 Q0 630750 27 12.769125 Anserini +test3599 Q0 6555012 28 12.762413 Anserini +test3599 Q0 7917627 29 12.737034 Anserini +test3599 Q0 11088506 30 12.680130 Anserini +test36 Q0 14921177 1 13.862381 Anserini +test36 Q0 4880486 2 12.734895 Anserini +test36 Q0 5762451 3 12.576582 Anserini +test36 Q0 12368633 4 12.479394 Anserini +test36 Q0 17018671 5 12.261597 Anserini +test36 Q0 644365 6 12.220377 Anserini +test36 Q0 2847980 7 12.061321 Anserini +test36 Q0 2847963 8 12.061321 Anserini +test36 Q0 11777623 9 11.969916 Anserini +test36 Q0 6677480 10 11.862978 Anserini +test36 Q0 4894990 11 11.314408 Anserini +test36 Q0 9115629 12 11.296405 Anserini +test36 Q0 4894986 13 11.257345 Anserini +test36 Q0 15726838 14 11.255857 Anserini +test36 Q0 10758928 15 11.152073 Anserini +test36 Q0 10732604 16 11.065687 Anserini +test36 Q0 10961181 17 11.006362 Anserini +test36 Q0 895364 18 10.961810 Anserini +test36 Q0 17993531 19 10.904758 Anserini +test36 Q0 16092582 20 10.887192 Anserini +test36 Q0 14976144 21 10.868534 Anserini +test36 Q0 19946173 22 10.838764 Anserini +test36 Q0 7517397 23 10.822763 Anserini +test36 Q0 17993530 24 10.768834 Anserini +test36 Q0 16079953 25 10.759363 Anserini +test36 Q0 4894988 26 10.693308 Anserini +test36 Q0 3021780 27 10.664683 Anserini +test36 Q0 10888552 28 10.622100 Anserini +test36 Q0 11221725 29 10.619356 Anserini +test36 Q0 15155836 30 10.615118 Anserini +test360 Q0 8665862 1 12.108709 Anserini +test360 Q0 17947635 2 11.570807 Anserini +test360 Q0 18845905 3 11.512976 Anserini +test360 Q0 18845922 4 11.512976 Anserini +test360 Q0 8665863 5 11.319071 Anserini +test360 Q0 13487574 6 11.291233 Anserini +test360 Q0 8665869 7 11.264294 Anserini +test360 Q0 18773203 8 11.070713 Anserini +test360 Q0 18845916 9 10.979517 Anserini +test360 Q0 13747103 10 10.896276 Anserini +test360 Q0 8665867 11 10.873605 Anserini +test360 Q0 20313600 12 10.862800 Anserini +test360 Q0 17947633 13 10.861623 Anserini +test360 Q0 3980295 14 10.664452 Anserini +test360 Q0 18792105 15 10.616650 Anserini +test360 Q0 18845913 16 10.599457 Anserini +test360 Q0 16471949 17 10.561944 Anserini +test360 Q0 2167613 18 10.556458 Anserini +test360 Q0 6640206 19 10.509821 Anserini +test360 Q0 18963260 20 10.462021 Anserini +test360 Q0 3795259 21 10.457371 Anserini +test360 Q0 3247575 22 10.346611 Anserini +test360 Q0 5045073 23 10.323501 Anserini +test360 Q0 14746238 24 10.321080 Anserini +test360 Q0 8665868 25 10.299194 Anserini +test360 Q0 18845907 26 10.291236 Anserini +test360 Q0 17849843 27 10.261905 Anserini +test360 Q0 15512531 28 10.251089 Anserini +test360 Q0 1381182 29 10.240482 Anserini +test360 Q0 17849823 30 10.220516 Anserini +test3600 Q0 49810 1 14.327923 Anserini +test3600 Q0 73627 2 13.394915 Anserini +test3600 Q0 1819878 3 13.394915 Anserini +test3600 Q0 6975555 4 12.953711 Anserini +test3600 Q0 11512281 5 12.894681 Anserini +test3600 Q0 9944917 6 12.521526 Anserini +test3600 Q0 101403 7 12.443430 Anserini +test3600 Q0 2473220 8 12.416077 Anserini +test3600 Q0 5942748 9 12.273454 Anserini +test3600 Q0 46230 10 12.156822 Anserini +test3600 Q0 7839836 11 12.153559 Anserini +test3600 Q0 7675658 12 12.054290 Anserini +test3600 Q0 302107 13 12.008577 Anserini +test3600 Q0 5009882 14 11.932449 Anserini +test3600 Q0 14683642 15 11.838132 Anserini +test3600 Q0 13268905 16 11.775822 Anserini +test3600 Q0 16900101 17 11.752032 Anserini +test3600 Q0 6975557 18 11.713767 Anserini +test3600 Q0 8219769 19 11.661462 Anserini +test3600 Q0 13660655 20 11.661044 Anserini +test3600 Q0 8219752 21 11.656053 Anserini +test3600 Q0 13653056 22 11.598964 Anserini +test3600 Q0 2374827 23 11.584986 Anserini +test3600 Q0 7862923 24 11.529604 Anserini +test3600 Q0 49805 25 11.528543 Anserini +test3600 Q0 9944899 26 11.507545 Anserini +test3600 Q0 4420906 27 11.423425 Anserini +test3600 Q0 3870802 28 11.314837 Anserini +test3600 Q0 2038083 29 11.278629 Anserini +test3600 Q0 124305 30 11.266112 Anserini +test3601 Q0 338341 1 18.452686 Anserini +test3601 Q0 1931796 2 16.388811 Anserini +test3601 Q0 338342 3 16.206062 Anserini +test3601 Q0 17680862 4 15.707951 Anserini +test3601 Q0 91126 5 15.641296 Anserini +test3601 Q0 2189279 6 15.583593 Anserini +test3601 Q0 1346806 7 15.492032 Anserini +test3601 Q0 338343 8 15.488089 Anserini +test3601 Q0 1696591 9 15.134861 Anserini +test3601 Q0 1931801 10 14.991522 Anserini +test3601 Q0 157245 11 14.960717 Anserini +test3601 Q0 12277144 12 14.949465 Anserini +test3601 Q0 9447 13 14.882207 Anserini +test3601 Q0 294294 14 14.734914 Anserini +test3601 Q0 2339104 15 14.702533 Anserini +test3601 Q0 11000 16 14.638652 Anserini +test3601 Q0 279838 17 14.593159 Anserini +test3601 Q0 338354 18 14.579184 Anserini +test3601 Q0 9979846 19 14.575521 Anserini +test3601 Q0 20456628 20 14.569469 Anserini +test3601 Q0 20456629 21 14.566146 Anserini +test3601 Q0 17565910 22 14.521313 Anserini +test3601 Q0 17680861 23 14.474954 Anserini +test3601 Q0 56894 24 14.322686 Anserini +test3601 Q0 20456639 25 14.290348 Anserini +test3601 Q0 2189274 26 14.246808 Anserini +test3601 Q0 17680859 27 14.233210 Anserini +test3601 Q0 4473950 28 14.210076 Anserini +test3601 Q0 91134 29 14.155819 Anserini +test3601 Q0 3757723 30 14.094667 Anserini +test3602 Q0 6878973 1 14.490444 Anserini +test3602 Q0 11435100 2 14.343849 Anserini +test3602 Q0 61223 3 14.020208 Anserini +test3602 Q0 6878981 4 13.943828 Anserini +test3602 Q0 9961113 5 13.730395 Anserini +test3602 Q0 6878960 6 13.634465 Anserini +test3602 Q0 1613503 7 13.246868 Anserini +test3602 Q0 5252367 8 13.101621 Anserini +test3602 Q0 10457594 9 13.014038 Anserini +test3602 Q0 5252362 10 12.974703 Anserini +test3602 Q0 8595281 11 12.952147 Anserini +test3602 Q0 2101695 12 12.884508 Anserini +test3602 Q0 14335754 13 12.785666 Anserini +test3602 Q0 1400614 14 12.761503 Anserini +test3602 Q0 7076342 15 12.365889 Anserini +test3602 Q0 4958196 16 12.244864 Anserini +test3602 Q0 3314243 17 12.137137 Anserini +test3602 Q0 1821752 18 12.124942 Anserini +test3602 Q0 11838604 19 12.103855 Anserini +test3602 Q0 10457595 20 12.103537 Anserini +test3602 Q0 9961117 21 12.095859 Anserini +test3602 Q0 16223875 22 11.959805 Anserini +test3602 Q0 745873 23 11.914487 Anserini +test3602 Q0 286159 24 11.891034 Anserini +test3602 Q0 3314216 25 11.881393 Anserini +test3602 Q0 9528400 26 11.875342 Anserini +test3602 Q0 12431951 27 11.864808 Anserini +test3602 Q0 3314220 28 11.861060 Anserini +test3602 Q0 16223878 29 11.838475 Anserini +test3602 Q0 600291 30 11.748974 Anserini +test3603 Q0 789624 1 24.762413 Anserini +test3603 Q0 12600753 2 23.794306 Anserini +test3603 Q0 789636 3 23.674368 Anserini +test3603 Q0 789613 4 22.544043 Anserini +test3603 Q0 789631 5 22.529423 Anserini +test3603 Q0 789642 6 22.285805 Anserini +test3603 Q0 789639 7 22.060677 Anserini +test3603 Q0 8034217 8 21.975586 Anserini +test3603 Q0 4141234 9 21.919329 Anserini +test3603 Q0 789626 10 21.879108 Anserini +test3603 Q0 15186455 11 21.864838 Anserini +test3603 Q0 10654056 12 21.713408 Anserini +test3603 Q0 789634 13 21.694717 Anserini +test3603 Q0 13765900 14 21.465977 Anserini +test3603 Q0 485337 15 21.428934 Anserini +test3603 Q0 789614 16 21.099777 Anserini +test3603 Q0 789633 17 21.095812 Anserini +test3603 Q0 10653980 18 20.966049 Anserini +test3603 Q0 789638 19 20.415236 Anserini +test3603 Q0 4141189 20 20.264713 Anserini +test3603 Q0 8228043 21 19.946009 Anserini +test3603 Q0 3139945 22 19.892492 Anserini +test3603 Q0 789630 23 19.667315 Anserini +test3603 Q0 12992094 24 19.577105 Anserini +test3603 Q0 19497719 25 19.491552 Anserini +test3603 Q0 10654052 26 19.454618 Anserini +test3603 Q0 4141236 27 19.350382 Anserini +test3603 Q0 789640 28 18.965855 Anserini +test3603 Q0 789637 29 18.938419 Anserini +test3603 Q0 19497720 30 18.634436 Anserini +test3604 Q0 19045357 1 12.034555 Anserini +test3604 Q0 19054977 2 11.472795 Anserini +test3604 Q0 16344722 3 11.390546 Anserini +test3604 Q0 20024454 4 10.962173 Anserini +test3604 Q0 13044671 5 10.886850 Anserini +test3604 Q0 20020993 6 10.851272 Anserini +test3604 Q0 16717454 7 10.736231 Anserini +test3604 Q0 4389764 8 10.345852 Anserini +test3604 Q0 14883068 9 10.324814 Anserini +test3604 Q0 20852064 10 10.263758 Anserini +test3604 Q0 4389763 11 10.215954 Anserini +test3604 Q0 19054968 12 10.151871 Anserini +test3604 Q0 19221813 13 10.115762 Anserini +test3604 Q0 19221821 14 10.023311 Anserini +test3604 Q0 19045365 15 9.976187 Anserini +test3604 Q0 20164129 16 9.974547 Anserini +test3604 Q0 17990741 17 9.970593 Anserini +test3604 Q0 17598872 18 9.968345 Anserini +test3604 Q0 6706453 19 9.925267 Anserini +test3604 Q0 11825357 20 9.925267 Anserini +test3604 Q0 19507742 21 9.923461 Anserini +test3604 Q0 19054974 22 9.914380 Anserini +test3604 Q0 19221854 23 9.907747 Anserini +test3604 Q0 17990745 24 9.907747 Anserini +test3604 Q0 16347578 25 9.865813 Anserini +test3604 Q0 16977911 26 9.821964 Anserini +test3604 Q0 11825363 27 9.667011 Anserini +test3604 Q0 16344730 28 9.649176 Anserini +test3604 Q0 3026286 29 9.616205 Anserini +test3604 Q0 19460767 30 9.602867 Anserini +test3605 Q0 16394952 1 15.668077 Anserini +test3605 Q0 864322 2 15.640889 Anserini +test3605 Q0 864327 3 14.928991 Anserini +test3605 Q0 2153816 4 14.879261 Anserini +test3605 Q0 864304 5 14.450430 Anserini +test3605 Q0 8618168 6 14.075549 Anserini +test3605 Q0 864310 7 13.972453 Anserini +test3605 Q0 864361 8 13.841180 Anserini +test3605 Q0 15091198 9 13.692589 Anserini +test3605 Q0 6090253 10 13.664474 Anserini +test3605 Q0 6090258 11 13.639328 Anserini +test3605 Q0 864306 12 13.589777 Anserini +test3605 Q0 9956985 13 13.587011 Anserini +test3605 Q0 864323 14 13.464789 Anserini +test3605 Q0 864333 15 13.337110 Anserini +test3605 Q0 864314 16 13.330493 Anserini +test3605 Q0 4617718 17 12.943556 Anserini +test3605 Q0 63846 18 12.689583 Anserini +test3605 Q0 864340 19 12.664014 Anserini +test3605 Q0 864362 20 12.426511 Anserini +test3605 Q0 864332 21 12.383868 Anserini +test3605 Q0 14255079 22 12.297026 Anserini +test3605 Q0 6090268 23 12.121703 Anserini +test3605 Q0 6520667 24 12.121703 Anserini +test3605 Q0 15091207 25 12.031917 Anserini +test3605 Q0 11554116 26 12.005219 Anserini +test3605 Q0 6635151 27 11.991353 Anserini +test3605 Q0 369879 28 11.991353 Anserini +test3605 Q0 6520670 29 11.991353 Anserini +test3605 Q0 864316 30 11.956383 Anserini +test3606 Q0 9638146 1 20.921288 Anserini +test3606 Q0 9638150 2 20.872564 Anserini +test3606 Q0 4397379 3 18.035011 Anserini +test3606 Q0 9638148 4 16.871763 Anserini +test3606 Q0 9638147 5 16.079573 Anserini +test3606 Q0 9638149 6 15.722374 Anserini +test3606 Q0 6540140 7 15.394802 Anserini +test3606 Q0 5278159 8 14.972209 Anserini +test3606 Q0 11405216 9 14.318031 Anserini +test3606 Q0 17612820 10 13.863920 Anserini +test3606 Q0 4397378 11 13.863920 Anserini +test3606 Q0 12959884 12 11.882597 Anserini +test3606 Q0 17652351 13 10.890371 Anserini +test3606 Q0 20979870 14 10.825592 Anserini +test3606 Q0 3671794 15 10.549153 Anserini +test3606 Q0 17652349 16 10.410738 Anserini +test3606 Q0 17652352 17 10.357070 Anserini +test3606 Q0 13103660 18 9.958869 Anserini +test3606 Q0 20979871 19 9.812878 Anserini +test3606 Q0 12064660 20 9.794758 Anserini +test3606 Q0 12064661 21 9.794758 Anserini +test3606 Q0 5059764 22 9.782841 Anserini +test3606 Q0 7982478 23 9.765860 Anserini +test3606 Q0 20267054 24 9.758153 Anserini +test3606 Q0 5059769 25 9.750467 Anserini +test3606 Q0 5595192 26 9.650047 Anserini +test3606 Q0 20491937 27 9.578367 Anserini +test3606 Q0 3272419 28 9.555460 Anserini +test3606 Q0 15142191 29 9.540968 Anserini +test3606 Q0 3671793 30 9.540968 Anserini +test3607 Q0 19959101 1 18.792181 Anserini +test3607 Q0 2823231 2 15.908836 Anserini +test3607 Q0 19959099 3 15.696051 Anserini +test3607 Q0 4008613 4 15.241628 Anserini +test3607 Q0 58516 5 15.122222 Anserini +test3607 Q0 19959106 6 15.093954 Anserini +test3607 Q0 247831 7 15.067614 Anserini +test3607 Q0 15774637 8 14.597483 Anserini +test3607 Q0 19959105 9 14.384296 Anserini +test3607 Q0 247899 10 14.253463 Anserini +test3607 Q0 8593575 11 14.009525 Anserini +test3607 Q0 4403361 12 13.837568 Anserini +test3607 Q0 11644724 13 13.833051 Anserini +test3607 Q0 13003556 14 13.779900 Anserini +test3607 Q0 4947562 15 13.676961 Anserini +test3607 Q0 58534 16 13.231693 Anserini +test3607 Q0 2823227 17 13.182634 Anserini +test3607 Q0 273270 18 13.158044 Anserini +test3607 Q0 10247654 19 13.131630 Anserini +test3607 Q0 19959103 20 13.102065 Anserini +test3607 Q0 58517 21 13.081367 Anserini +test3607 Q0 12593631 22 13.069336 Anserini +test3607 Q0 4450223 23 13.066953 Anserini +test3607 Q0 2391481 24 13.041055 Anserini +test3607 Q0 20212912 25 13.029634 Anserini +test3607 Q0 4450222 26 12.968132 Anserini +test3607 Q0 10231860 27 12.906501 Anserini +test3607 Q0 12708178 28 12.895065 Anserini +test3607 Q0 6088942 29 12.841097 Anserini +test3607 Q0 58533 30 12.792101 Anserini +test3608 Q0 19135123 1 9.655066 Anserini +test3608 Q0 11578113 2 9.396300 Anserini +test3608 Q0 8952328 3 9.354574 Anserini +test3608 Q0 18466089 4 9.146841 Anserini +test3608 Q0 13533203 5 9.135476 Anserini +test3608 Q0 13533242 6 9.135476 Anserini +test3608 Q0 3054850 7 9.121868 Anserini +test3608 Q0 2982943 8 9.099059 Anserini +test3608 Q0 12702924 9 9.026701 Anserini +test3608 Q0 15365704 10 8.958776 Anserini +test3608 Q0 14357491 11 8.910517 Anserini +test3608 Q0 16609748 12 8.888072 Anserini +test3608 Q0 6363941 13 8.869041 Anserini +test3608 Q0 10470791 14 8.868851 Anserini +test3608 Q0 15365703 15 8.866975 Anserini +test3608 Q0 19179462 16 8.847640 Anserini +test3608 Q0 20907519 17 8.797974 Anserini +test3608 Q0 6309114 18 8.761799 Anserini +test3608 Q0 13249443 19 8.754398 Anserini +test3608 Q0 1467854 20 8.742007 Anserini +test3608 Q0 12058689 21 8.678073 Anserini +test3608 Q0 20213073 22 8.671785 Anserini +test3608 Q0 6031510 23 8.614927 Anserini +test3608 Q0 13466028 24 8.599746 Anserini +test3608 Q0 7887493 25 8.580110 Anserini +test3608 Q0 17390109 26 8.549532 Anserini +test3608 Q0 10527359 27 8.535517 Anserini +test3608 Q0 4693182 28 8.533220 Anserini +test3608 Q0 16609760 29 8.520350 Anserini +test3608 Q0 9550506 30 8.519898 Anserini +test3609 Q0 15016834 1 12.029339 Anserini +test3609 Q0 454187 2 10.668545 Anserini +test3609 Q0 178185 3 10.564314 Anserini +test3609 Q0 13924263 4 9.984112 Anserini +test3609 Q0 47407 5 9.881748 Anserini +test3609 Q0 190393 6 9.848353 Anserini +test3609 Q0 11352919 7 9.845430 Anserini +test3609 Q0 3836964 8 9.845031 Anserini +test3609 Q0 1496258 9 9.748698 Anserini +test3609 Q0 18509752 10 9.741682 Anserini +test3609 Q0 2318346 11 9.661313 Anserini +test3609 Q0 15016847 12 9.605237 Anserini +test3609 Q0 13480346 13 9.545344 Anserini +test3609 Q0 5379467 14 9.451892 Anserini +test3609 Q0 1842506 15 9.344631 Anserini +test3609 Q0 14008238 16 9.308922 Anserini +test3609 Q0 5571264 17 9.277684 Anserini +test3609 Q0 452977 18 9.270776 Anserini +test3609 Q0 13195938 19 9.268010 Anserini +test3609 Q0 13791844 20 9.257915 Anserini +test3609 Q0 16859354 21 9.252357 Anserini +test3609 Q0 1627912 22 9.182271 Anserini +test3609 Q0 7993653 23 9.180220 Anserini +test3609 Q0 5856546 24 9.147888 Anserini +test3609 Q0 5592096 25 9.147874 Anserini +test3609 Q0 17897754 26 9.142433 Anserini +test3609 Q0 9328821 27 9.135163 Anserini +test3609 Q0 7971849 28 9.110388 Anserini +test3609 Q0 19062752 29 9.094887 Anserini +test3609 Q0 8772771 30 9.070627 Anserini +test361 Q0 9265388 1 16.769665 Anserini +test361 Q0 10495574 2 16.583523 Anserini +test361 Q0 10056340 3 16.101831 Anserini +test361 Q0 19791865 4 15.784110 Anserini +test361 Q0 7338147 5 15.636053 Anserini +test361 Q0 5008805 6 15.618429 Anserini +test361 Q0 11640045 7 15.544479 Anserini +test361 Q0 4542050 8 15.527766 Anserini +test361 Q0 11681070 9 15.494050 Anserini +test361 Q0 10707554 10 15.439210 Anserini +test361 Q0 5797828 11 15.413186 Anserini +test361 Q0 10025497 12 15.381992 Anserini +test361 Q0 5857809 13 15.356573 Anserini +test361 Q0 11349739 14 15.215042 Anserini +test361 Q0 12862227 15 15.182436 Anserini +test361 Q0 9861932 16 15.100206 Anserini +test361 Q0 4494785 17 15.006028 Anserini +test361 Q0 11681071 18 14.959927 Anserini +test361 Q0 11072842 19 14.894985 Anserini +test361 Q0 7732341 20 14.872435 Anserini +test361 Q0 9145430 21 14.868373 Anserini +test361 Q0 11355879 22 14.805180 Anserini +test361 Q0 7159491 23 14.797733 Anserini +test361 Q0 3549028 24 14.760482 Anserini +test361 Q0 9864792 25 14.758675 Anserini +test361 Q0 12962915 26 14.747119 Anserini +test361 Q0 9431270 27 14.745212 Anserini +test361 Q0 12693958 28 14.745199 Anserini +test361 Q0 10174132 29 14.719380 Anserini +test361 Q0 12997136 30 14.673155 Anserini +test362 Q0 9389843 1 12.084593 Anserini +test362 Q0 19904284 2 11.468034 Anserini +test362 Q0 1461753 3 11.204998 Anserini +test362 Q0 19904283 4 11.048181 Anserini +test362 Q0 1461749 5 11.000905 Anserini +test362 Q0 1903751 6 10.969399 Anserini +test362 Q0 8473668 7 10.726246 Anserini +test362 Q0 4624666 8 10.598290 Anserini +test362 Q0 14608677 9 10.573977 Anserini +test362 Q0 4881760 10 10.540037 Anserini +test362 Q0 20672393 11 10.484047 Anserini +test362 Q0 12712787 12 10.386465 Anserini +test362 Q0 1469710 13 10.310216 Anserini +test362 Q0 7995525 14 10.307909 Anserini +test362 Q0 5362168 15 10.187615 Anserini +test362 Q0 1461745 16 10.158902 Anserini +test362 Q0 20268333 17 10.149346 Anserini +test362 Q0 16163039 18 10.135971 Anserini +test362 Q0 15278158 19 10.044218 Anserini +test362 Q0 1951369 20 9.978112 Anserini +test362 Q0 1461748 21 9.952430 Anserini +test362 Q0 16109716 22 9.932764 Anserini +test362 Q0 16109718 23 9.932764 Anserini +test362 Q0 1461744 24 9.884670 Anserini +test362 Q0 1461754 25 9.879784 Anserini +test362 Q0 12908995 26 9.855962 Anserini +test362 Q0 19021481 27 9.815204 Anserini +test362 Q0 77674 28 9.813618 Anserini +test362 Q0 15579904 29 9.743778 Anserini +test362 Q0 1461759 30 9.718883 Anserini +test363 Q0 1420279 1 12.563400 Anserini +test363 Q0 13295975 2 12.330333 Anserini +test363 Q0 9299624 3 12.191552 Anserini +test363 Q0 1712323 4 11.849607 Anserini +test363 Q0 466122 5 11.758955 Anserini +test363 Q0 10670658 6 11.693920 Anserini +test363 Q0 466173 7 11.657064 Anserini +test363 Q0 1420307 8 11.406576 Anserini +test363 Q0 466172 9 11.358850 Anserini +test363 Q0 4837181 10 11.296165 Anserini +test363 Q0 6660428 11 11.291681 Anserini +test363 Q0 4837183 12 11.074925 Anserini +test363 Q0 466163 13 11.018154 Anserini +test363 Q0 1420319 14 10.996449 Anserini +test363 Q0 6660429 15 10.883811 Anserini +test363 Q0 1420320 16 10.789607 Anserini +test363 Q0 7124135 17 10.789607 Anserini +test363 Q0 14074991 18 10.739645 Anserini +test363 Q0 466148 19 10.730414 Anserini +test363 Q0 2777151 20 10.496420 Anserini +test363 Q0 466118 21 10.490654 Anserini +test363 Q0 1264586 22 10.394819 Anserini +test363 Q0 7771830 23 10.365402 Anserini +test363 Q0 1420316 24 10.358435 Anserini +test363 Q0 13295979 25 10.354320 Anserini +test363 Q0 13295976 26 10.305977 Anserini +test363 Q0 466137 27 10.287986 Anserini +test363 Q0 13295980 28 10.272226 Anserini +test363 Q0 14074993 29 10.240487 Anserini +test363 Q0 1667590 30 10.240487 Anserini +test364 Q0 9355604 1 18.605383 Anserini +test364 Q0 9355633 2 18.528595 Anserini +test364 Q0 19017216 3 16.654341 Anserini +test364 Q0 19017248 4 16.273689 Anserini +test364 Q0 7431535 5 16.133247 Anserini +test364 Q0 8643189 6 15.971779 Anserini +test364 Q0 3322812 7 15.866236 Anserini +test364 Q0 3322823 8 15.866236 Anserini +test364 Q0 10387818 9 15.730618 Anserini +test364 Q0 7488351 10 15.686571 Anserini +test364 Q0 19017239 11 15.360323 Anserini +test364 Q0 14107946 12 15.302152 Anserini +test364 Q0 19017155 13 14.891256 Anserini +test364 Q0 8442029 14 14.848139 Anserini +test364 Q0 1461834 15 14.815549 Anserini +test364 Q0 7488344 16 14.806241 Anserini +test364 Q0 19017214 17 14.772958 Anserini +test364 Q0 9250699 18 14.765413 Anserini +test364 Q0 19017245 19 14.517095 Anserini +test364 Q0 3322822 20 14.289473 Anserini +test364 Q0 19017246 21 14.192591 Anserini +test364 Q0 15665871 22 14.168098 Anserini +test364 Q0 19017270 23 14.124925 Anserini +test364 Q0 18788436 24 14.090195 Anserini +test364 Q0 18788507 25 14.090195 Anserini +test364 Q0 8442013 26 14.075446 Anserini +test364 Q0 9752484 27 14.000799 Anserini +test364 Q0 19017236 28 14.000799 Anserini +test364 Q0 4073252 29 13.997750 Anserini +test364 Q0 8443369 30 13.871553 Anserini +test365 Q0 5860605 1 11.425073 Anserini +test365 Q0 7605309 2 10.848268 Anserini +test365 Q0 20573466 3 10.287853 Anserini +test365 Q0 14515183 4 10.137963 Anserini +test365 Q0 14418295 5 10.041552 Anserini +test365 Q0 6029240 6 9.943089 Anserini +test365 Q0 16870195 7 9.906720 Anserini +test365 Q0 16774476 8 9.403602 Anserini +test365 Q0 5766081 9 9.255448 Anserini +test365 Q0 18123420 10 9.240232 Anserini +test365 Q0 18989492 11 9.233021 Anserini +test365 Q0 2347645 12 9.190535 Anserini +test365 Q0 5360219 13 9.187014 Anserini +test365 Q0 2449904 14 9.176532 Anserini +test365 Q0 15635045 15 9.064165 Anserini +test365 Q0 9013591 16 9.035139 Anserini +test365 Q0 2172685 17 8.980340 Anserini +test365 Q0 6685005 18 8.973881 Anserini +test365 Q0 9793607 19 8.952080 Anserini +test365 Q0 2372846 20 8.922592 Anserini +test365 Q0 8489888 21 8.916658 Anserini +test365 Q0 8958463 22 8.900592 Anserini +test365 Q0 2305639 23 8.890879 Anserini +test365 Q0 18865815 24 8.873193 Anserini +test365 Q0 11816260 25 8.861607 Anserini +test365 Q0 16879792 26 8.855596 Anserini +test365 Q0 13950595 27 8.817749 Anserini +test365 Q0 5459862 28 8.816204 Anserini +test365 Q0 2666326 29 8.813294 Anserini +test365 Q0 6416870 30 8.798021 Anserini +test366 Q0 20543466 1 13.477950 Anserini +test366 Q0 5277929 2 13.236392 Anserini +test366 Q0 13607619 3 12.554167 Anserini +test366 Q0 5277924 4 12.455407 Anserini +test366 Q0 12683309 5 12.175261 Anserini +test366 Q0 20543462 6 11.693316 Anserini +test366 Q0 14433330 7 11.689143 Anserini +test366 Q0 18416416 8 11.547758 Anserini +test366 Q0 8828971 9 11.463533 Anserini +test366 Q0 5277925 10 11.442323 Anserini +test366 Q0 20596136 11 11.390663 Anserini +test366 Q0 18216457 12 11.324456 Anserini +test366 Q0 18383892 13 11.147554 Anserini +test366 Q0 15368945 14 11.041034 Anserini +test366 Q0 20596133 15 11.040924 Anserini +test366 Q0 20370907 16 11.018867 Anserini +test366 Q0 18369506 17 10.990511 Anserini +test366 Q0 17849462 18 10.988055 Anserini +test366 Q0 12670135 19 10.963861 Anserini +test366 Q0 18065998 20 10.899700 Anserini +test366 Q0 2474254 21 10.888678 Anserini +test366 Q0 1962084 22 10.813246 Anserini +test366 Q0 2980134 23 10.805109 Anserini +test366 Q0 4317017 24 10.745749 Anserini +test366 Q0 11937670 25 10.728918 Anserini +test366 Q0 14027639 26 10.704607 Anserini +test366 Q0 17825395 27 10.662386 Anserini +test366 Q0 16280972 28 10.642067 Anserini +test366 Q0 19292 29 10.620836 Anserini +test366 Q0 2474259 30 10.570772 Anserini +test367 Q0 5214863 1 12.501558 Anserini +test367 Q0 9819739 2 12.373311 Anserini +test367 Q0 10995143 3 12.266964 Anserini +test367 Q0 13033373 4 12.259245 Anserini +test367 Q0 9153375 5 12.172009 Anserini +test367 Q0 8964495 6 12.153053 Anserini +test367 Q0 16192543 7 12.149834 Anserini +test367 Q0 10199246 8 12.088343 Anserini +test367 Q0 16192587 9 12.055146 Anserini +test367 Q0 5841439 10 12.054228 Anserini +test367 Q0 6107262 11 12.034600 Anserini +test367 Q0 11372799 12 12.030929 Anserini +test367 Q0 8664104 13 12.003173 Anserini +test367 Q0 7347164 14 11.964188 Anserini +test367 Q0 15131327 15 11.941395 Anserini +test367 Q0 5699759 16 11.939420 Anserini +test367 Q0 9396709 17 11.936559 Anserini +test367 Q0 9131681 18 11.925932 Anserini +test367 Q0 11764955 19 11.900888 Anserini +test367 Q0 1803958 20 11.875313 Anserini +test367 Q0 9380325 21 11.873784 Anserini +test367 Q0 14396212 22 11.863376 Anserini +test367 Q0 5799864 23 11.854386 Anserini +test367 Q0 6126396 24 11.854126 Anserini +test367 Q0 13633652 25 11.852076 Anserini +test367 Q0 9277478 26 11.833454 Anserini +test367 Q0 9153329 27 11.832440 Anserini +test367 Q0 5795538 28 11.832300 Anserini +test367 Q0 11346516 29 11.822159 Anserini +test367 Q0 4875585 30 11.808084 Anserini +test368 Q0 19141661 1 16.120171 Anserini +test368 Q0 6883386 2 16.057449 Anserini +test368 Q0 16533356 3 15.425361 Anserini +test368 Q0 19787314 4 14.899711 Anserini +test368 Q0 13193359 5 14.807781 Anserini +test368 Q0 2136642 6 14.790003 Anserini +test368 Q0 10214437 7 14.786994 Anserini +test368 Q0 2837163 8 14.739119 Anserini +test368 Q0 14018371 9 14.650999 Anserini +test368 Q0 17052400 10 14.649440 Anserini +test368 Q0 11817763 11 14.631343 Anserini +test368 Q0 12447161 12 14.586750 Anserini +test368 Q0 17052399 13 14.544135 Anserini +test368 Q0 20498603 14 14.515397 Anserini +test368 Q0 13378680 15 14.460576 Anserini +test368 Q0 14722530 16 14.440264 Anserini +test368 Q0 2837166 17 14.370191 Anserini +test368 Q0 2438213 18 14.305845 Anserini +test368 Q0 3158811 19 14.297701 Anserini +test368 Q0 13293315 20 14.274797 Anserini +test368 Q0 14018297 21 14.238429 Anserini +test368 Q0 6695501 22 14.223005 Anserini +test368 Q0 16806598 23 14.206757 Anserini +test368 Q0 14314503 24 14.167378 Anserini +test368 Q0 4967087 25 14.167118 Anserini +test368 Q0 4601284 26 14.125880 Anserini +test368 Q0 10285740 27 14.101138 Anserini +test368 Q0 10091965 28 14.086636 Anserini +test368 Q0 845858 29 14.015450 Anserini +test368 Q0 349096 30 14.014524 Anserini +test369 Q0 3056277 1 9.992881 Anserini +test369 Q0 9897790 2 9.697771 Anserini +test369 Q0 10669262 3 9.436671 Anserini +test369 Q0 370720 4 9.416959 Anserini +test369 Q0 9897794 5 9.354139 Anserini +test369 Q0 9897808 6 9.309385 Anserini +test369 Q0 18082526 7 9.272138 Anserini +test369 Q0 399902 8 9.262691 Anserini +test369 Q0 18704689 9 9.255672 Anserini +test369 Q0 277751 10 9.098951 Anserini +test369 Q0 5660460 11 9.068488 Anserini +test369 Q0 20172536 12 9.050213 Anserini +test369 Q0 17654424 13 9.040100 Anserini +test369 Q0 18373448 14 8.965858 Anserini +test369 Q0 18582693 15 8.946818 Anserini +test369 Q0 12197294 16 8.929042 Anserini +test369 Q0 2256472 17 8.891591 Anserini +test369 Q0 9897798 18 8.867494 Anserini +test369 Q0 12197291 19 8.843744 Anserini +test369 Q0 6628488 20 8.831700 Anserini +test369 Q0 19906882 21 8.818945 Anserini +test369 Q0 9897789 22 8.811394 Anserini +test369 Q0 9897810 23 8.782778 Anserini +test369 Q0 19820925 24 8.758451 Anserini +test369 Q0 5965927 25 8.748404 Anserini +test369 Q0 15505591 26 8.688150 Anserini +test369 Q0 10232695 27 8.664139 Anserini +test369 Q0 18373454 28 8.660847 Anserini +test369 Q0 20172539 29 8.645888 Anserini +test369 Q0 7798732 30 8.639874 Anserini +test37 Q0 4253946 1 15.919433 Anserini +test37 Q0 10767864 2 15.385598 Anserini +test37 Q0 4253981 3 15.274412 Anserini +test37 Q0 10767861 4 15.087838 Anserini +test37 Q0 4253934 5 14.975007 Anserini +test37 Q0 2180379 6 14.826134 Anserini +test37 Q0 4253939 7 14.738111 Anserini +test37 Q0 4253933 8 14.713295 Anserini +test37 Q0 4253984 9 14.713295 Anserini +test37 Q0 4253968 10 14.658350 Anserini +test37 Q0 4253983 11 14.462576 Anserini +test37 Q0 15348873 12 14.429307 Anserini +test37 Q0 14225422 13 14.406416 Anserini +test37 Q0 5030188 14 14.315830 Anserini +test37 Q0 4253979 15 14.205674 Anserini +test37 Q0 4253978 16 13.982396 Anserini +test37 Q0 4253947 17 13.844634 Anserini +test37 Q0 19334967 18 13.787626 Anserini +test37 Q0 2607600 19 13.765487 Anserini +test37 Q0 19922657 20 13.762155 Anserini +test37 Q0 4253966 21 13.723662 Anserini +test37 Q0 8079007 22 13.688030 Anserini +test37 Q0 17375226 23 13.659253 Anserini +test37 Q0 1517308 24 13.652073 Anserini +test37 Q0 7237323 25 13.643565 Anserini +test37 Q0 19010096 26 13.637716 Anserini +test37 Q0 4381054 27 13.583710 Anserini +test37 Q0 12199194 28 13.537277 Anserini +test37 Q0 8559703 29 13.523063 Anserini +test37 Q0 4253940 30 13.520462 Anserini +test370 Q0 2083316 1 14.676601 Anserini +test370 Q0 5725201 2 14.426159 Anserini +test370 Q0 3679046 3 14.143604 Anserini +test370 Q0 1371301 4 14.107111 Anserini +test370 Q0 1871092 5 13.872962 Anserini +test370 Q0 3381371 6 13.703747 Anserini +test370 Q0 558488 7 13.589905 Anserini +test370 Q0 1369019 8 13.589905 Anserini +test370 Q0 1371305 9 12.394779 Anserini +test370 Q0 3679044 10 12.312833 Anserini +test370 Q0 5725194 11 12.312833 Anserini +test370 Q0 5725197 12 12.312833 Anserini +test370 Q0 15757919 13 12.312833 Anserini +test370 Q0 547843 14 12.147348 Anserini +test370 Q0 17046796 15 12.065283 Anserini +test370 Q0 5725191 16 12.065283 Anserini +test370 Q0 1871091 17 12.018111 Anserini +test370 Q0 3160360 18 11.945245 Anserini +test370 Q0 591544 19 11.891597 Anserini +test370 Q0 3160321 20 11.891597 Anserini +test370 Q0 1884071 21 11.891597 Anserini +test370 Q0 1975932 22 11.791632 Anserini +test370 Q0 3679048 23 11.791632 Anserini +test370 Q0 3160387 24 11.718964 Anserini +test370 Q0 2375667 25 11.581801 Anserini +test370 Q0 2375624 26 11.581801 Anserini +test370 Q0 9017512 27 11.409343 Anserini +test370 Q0 5725198 28 11.297598 Anserini +test370 Q0 557663 29 11.293904 Anserini +test370 Q0 13806153 30 11.277763 Anserini +test371 Q0 394138 1 13.897484 Anserini +test371 Q0 3200034 2 13.469268 Anserini +test371 Q0 4185059 3 13.362576 Anserini +test371 Q0 397144 4 13.340726 Anserini +test371 Q0 3200108 5 13.099752 Anserini +test371 Q0 395020 6 12.914618 Anserini +test371 Q0 7002540 7 12.882079 Anserini +test371 Q0 17074568 8 12.810370 Anserini +test371 Q0 11126522 9 12.802412 Anserini +test371 Q0 395060 10 12.802412 Anserini +test371 Q0 9465865 11 12.780635 Anserini +test371 Q0 1328694 12 12.776785 Anserini +test371 Q0 393771 13 12.767698 Anserini +test371 Q0 394318 14 12.711066 Anserini +test371 Q0 394137 15 12.686413 Anserini +test371 Q0 394726 16 12.614883 Anserini +test371 Q0 394404 17 12.603409 Anserini +test371 Q0 394046 18 12.575741 Anserini +test371 Q0 394888 19 12.544142 Anserini +test371 Q0 18798741 20 12.497879 Anserini +test371 Q0 394087 21 12.494722 Anserini +test371 Q0 4243394 22 12.454814 Anserini +test371 Q0 376041 23 12.451585 Anserini +test371 Q0 20728494 24 12.441723 Anserini +test371 Q0 394362 25 12.433682 Anserini +test371 Q0 394246 26 12.433682 Anserini +test371 Q0 394930 27 12.431092 Anserini +test371 Q0 393811 28 12.383486 Anserini +test371 Q0 18798752 29 12.377767 Anserini +test371 Q0 18798747 30 12.370734 Anserini +test372 Q0 14067873 1 12.801593 Anserini +test372 Q0 8686178 2 12.563541 Anserini +test372 Q0 14363039 3 11.746989 Anserini +test372 Q0 15466866 4 11.439594 Anserini +test372 Q0 13212704 5 11.230075 Anserini +test372 Q0 18070815 6 11.009899 Anserini +test372 Q0 14573562 7 10.855011 Anserini +test372 Q0 20821324 8 10.799484 Anserini +test372 Q0 14067862 9 10.701197 Anserini +test372 Q0 17639662 10 10.648998 Anserini +test372 Q0 14067883 11 10.636785 Anserini +test372 Q0 18491839 12 10.629962 Anserini +test372 Q0 20821325 13 10.571712 Anserini +test372 Q0 9119656 14 10.488315 Anserini +test372 Q0 14067878 15 10.478350 Anserini +test372 Q0 12114755 16 10.459684 Anserini +test372 Q0 17326528 17 10.443035 Anserini +test372 Q0 17874888 18 10.400900 Anserini +test372 Q0 4744611 19 10.394882 Anserini +test372 Q0 14835768 20 10.343823 Anserini +test372 Q0 14067875 21 10.340937 Anserini +test372 Q0 10290667 22 10.329861 Anserini +test372 Q0 3157723 23 10.304205 Anserini +test372 Q0 5690601 24 10.300666 Anserini +test372 Q0 12137312 25 10.293733 Anserini +test372 Q0 18509117 26 10.201036 Anserini +test372 Q0 7508387 27 10.191827 Anserini +test372 Q0 12474725 28 10.187954 Anserini +test372 Q0 6434923 29 10.146906 Anserini +test372 Q0 14736340 30 10.096170 Anserini +test373 Q0 14591681 1 20.055620 Anserini +test373 Q0 14611116 2 16.863140 Anserini +test373 Q0 13091900 3 16.445988 Anserini +test373 Q0 14591685 4 16.227045 Anserini +test373 Q0 13091893 5 15.893541 Anserini +test373 Q0 14025662 6 15.590966 Anserini +test373 Q0 14025660 7 15.464427 Anserini +test373 Q0 14025661 8 15.198317 Anserini +test373 Q0 14025665 9 15.053232 Anserini +test373 Q0 13091903 10 14.971977 Anserini +test373 Q0 13091892 11 14.777723 Anserini +test373 Q0 13091901 12 14.290582 Anserini +test373 Q0 14591679 13 14.210975 Anserini +test373 Q0 14591686 14 14.151171 Anserini +test373 Q0 13091899 15 13.939641 Anserini +test373 Q0 14948405 16 13.894437 Anserini +test373 Q0 13091895 17 13.887411 Anserini +test373 Q0 13091898 18 13.669378 Anserini +test373 Q0 13091894 19 13.464449 Anserini +test373 Q0 2873362 20 13.421025 Anserini +test373 Q0 13091902 21 13.258456 Anserini +test373 Q0 18050932 22 13.117205 Anserini +test373 Q0 2983334 23 13.117205 Anserini +test373 Q0 13091897 24 12.847261 Anserini +test373 Q0 17498686 25 12.831700 Anserini +test373 Q0 18050934 26 12.770750 Anserini +test373 Q0 1461438 27 12.595291 Anserini +test373 Q0 18050924 28 12.316411 Anserini +test373 Q0 13091896 29 12.316411 Anserini +test373 Q0 10791901 30 12.150825 Anserini +test374 Q0 16621517 1 13.859965 Anserini +test374 Q0 16621515 2 13.197777 Anserini +test374 Q0 1946648 3 12.921013 Anserini +test374 Q0 16621514 4 12.840514 Anserini +test374 Q0 17756640 5 12.703251 Anserini +test374 Q0 13526146 6 12.535323 Anserini +test374 Q0 11028291 7 12.518450 Anserini +test374 Q0 16621516 8 12.494621 Anserini +test374 Q0 13526147 9 12.424909 Anserini +test374 Q0 3460293 10 12.197795 Anserini +test374 Q0 16621520 11 12.112621 Anserini +test374 Q0 6106975 12 12.068750 Anserini +test374 Q0 10383040 13 11.907728 Anserini +test374 Q0 7675850 14 11.905396 Anserini +test374 Q0 8755880 15 11.878410 Anserini +test374 Q0 2310694 16 11.762911 Anserini +test374 Q0 1767486 17 11.537594 Anserini +test374 Q0 9113716 18 11.433395 Anserini +test374 Q0 10554098 19 11.407429 Anserini +test374 Q0 16621513 20 11.386722 Anserini +test374 Q0 6902968 21 11.365967 Anserini +test374 Q0 9977851 22 11.348914 Anserini +test374 Q0 7675851 23 11.312609 Anserini +test374 Q0 18768376 24 11.230356 Anserini +test374 Q0 16327727 25 11.175709 Anserini +test374 Q0 13176873 26 11.109974 Anserini +test374 Q0 14851172 27 11.075644 Anserini +test374 Q0 5547210 28 11.038115 Anserini +test374 Q0 5254522 29 10.997244 Anserini +test374 Q0 14030914 30 10.996891 Anserini +test375 Q0 6817144 1 12.324199 Anserini +test375 Q0 7336952 2 11.964287 Anserini +test375 Q0 2969271 3 11.949670 Anserini +test375 Q0 14716527 4 11.697656 Anserini +test375 Q0 14700224 5 11.697656 Anserini +test375 Q0 8358393 6 11.621644 Anserini +test375 Q0 11070317 7 11.282186 Anserini +test375 Q0 17476691 8 11.235711 Anserini +test375 Q0 17531223 9 11.045422 Anserini +test375 Q0 13639311 10 11.043128 Anserini +test375 Q0 14705231 11 11.012340 Anserini +test375 Q0 4824444 12 11.004315 Anserini +test375 Q0 21004783 13 10.979793 Anserini +test375 Q0 13676075 14 10.961588 Anserini +test375 Q0 17028350 15 10.954761 Anserini +test375 Q0 19170317 16 10.911709 Anserini +test375 Q0 1931286 17 10.882483 Anserini +test375 Q0 5778642 18 10.879856 Anserini +test375 Q0 3517422 19 10.864601 Anserini +test375 Q0 6354898 20 10.864601 Anserini +test375 Q0 798182 21 10.834227 Anserini +test375 Q0 17278869 22 10.828845 Anserini +test375 Q0 3531312 23 10.727978 Anserini +test375 Q0 3874033 24 10.715176 Anserini +test375 Q0 99727 25 10.668341 Anserini +test375 Q0 20542457 26 10.668341 Anserini +test375 Q0 10249926 27 10.668341 Anserini +test375 Q0 1151 28 10.663071 Anserini +test375 Q0 3118299 29 10.658373 Anserini +test375 Q0 3123750 30 10.624544 Anserini +test376 Q0 12156770 1 14.059950 Anserini +test376 Q0 6724651 2 13.660268 Anserini +test376 Q0 5743564 3 13.611141 Anserini +test376 Q0 663790 4 12.969521 Anserini +test376 Q0 13666607 5 12.926232 Anserini +test376 Q0 7778764 6 12.924493 Anserini +test376 Q0 9153039 7 12.813102 Anserini +test376 Q0 7778745 8 12.806755 Anserini +test376 Q0 663805 9 12.803077 Anserini +test376 Q0 7778744 10 12.801827 Anserini +test376 Q0 11499720 11 12.498488 Anserini +test376 Q0 663818 12 12.352274 Anserini +test376 Q0 663781 13 12.352274 Anserini +test376 Q0 7778743 14 12.095459 Anserini +test376 Q0 663800 15 12.003788 Anserini +test376 Q0 19674936 16 11.962569 Anserini +test376 Q0 10995120 17 11.765981 Anserini +test376 Q0 466557 18 11.733176 Anserini +test376 Q0 504927 19 11.695113 Anserini +test376 Q0 2386339 20 11.664698 Anserini +test376 Q0 5743570 21 11.614243 Anserini +test376 Q0 7778832 22 11.465018 Anserini +test376 Q0 7000973 23 11.451271 Anserini +test376 Q0 2694113 24 11.294704 Anserini +test376 Q0 12156783 25 11.290543 Anserini +test376 Q0 7778762 26 11.223240 Anserini +test376 Q0 1843703 27 11.222989 Anserini +test376 Q0 12577611 28 11.213821 Anserini +test376 Q0 20725330 29 11.198578 Anserini +test376 Q0 663809 30 11.158246 Anserini +test377 Q0 9250699 1 15.660039 Anserini +test377 Q0 15665879 2 15.449646 Anserini +test377 Q0 8863598 3 15.279924 Anserini +test377 Q0 9250662 4 15.153144 Anserini +test377 Q0 9250665 5 14.521948 Anserini +test377 Q0 9250669 6 14.358422 Anserini +test377 Q0 9250685 7 14.099366 Anserini +test377 Q0 9250680 8 13.933835 Anserini +test377 Q0 9250675 9 13.780573 Anserini +test377 Q0 9250687 10 13.729791 Anserini +test377 Q0 9250697 11 13.728586 Anserini +test377 Q0 9250673 12 13.652786 Anserini +test377 Q0 9250668 13 13.569573 Anserini +test377 Q0 9250678 14 13.522572 Anserini +test377 Q0 9250677 15 13.515730 Anserini +test377 Q0 9250674 16 13.486555 Anserini +test377 Q0 9250679 17 13.480704 Anserini +test377 Q0 9250695 18 13.480704 Anserini +test377 Q0 9250689 19 13.434924 Anserini +test377 Q0 9250670 20 13.355021 Anserini +test377 Q0 9250694 21 13.350383 Anserini +test377 Q0 9250667 22 13.350177 Anserini +test377 Q0 9250666 23 13.268701 Anserini +test377 Q0 9250698 24 13.267624 Anserini +test377 Q0 9250686 25 13.121983 Anserini +test377 Q0 9250696 26 12.948533 Anserini +test377 Q0 9250672 27 12.932871 Anserini +test377 Q0 9250688 28 12.896145 Anserini +test377 Q0 9250682 29 12.822445 Anserini +test377 Q0 9250692 30 12.822445 Anserini +test378 Q0 12319250 1 20.872328 Anserini +test378 Q0 3888447 2 19.483898 Anserini +test378 Q0 12319251 3 17.825521 Anserini +test378 Q0 4821222 4 17.589701 Anserini +test378 Q0 17020943 5 16.903629 Anserini +test378 Q0 18563949 6 16.811638 Anserini +test378 Q0 4687102 7 16.755060 Anserini +test378 Q0 19599018 8 16.643261 Anserini +test378 Q0 18467180 9 16.224205 Anserini +test378 Q0 18467193 10 16.198809 Anserini +test378 Q0 17020946 11 16.191389 Anserini +test378 Q0 18467186 12 15.823337 Anserini +test378 Q0 11157055 13 15.784333 Anserini +test378 Q0 4687103 14 15.624487 Anserini +test378 Q0 7004714 15 15.332013 Anserini +test378 Q0 703627 16 15.178334 Anserini +test378 Q0 13467783 17 15.123302 Anserini +test378 Q0 7997398 18 14.969239 Anserini +test378 Q0 4687106 19 14.941482 Anserini +test378 Q0 20664964 20 14.938029 Anserini +test378 Q0 7997397 21 14.876512 Anserini +test378 Q0 15742812 22 14.857563 Anserini +test378 Q0 15742809 23 14.857563 Anserini +test378 Q0 18480237 24 14.779659 Anserini +test378 Q0 8027897 25 14.774650 Anserini +test378 Q0 12820434 26 14.768699 Anserini +test378 Q0 16780502 27 14.720304 Anserini +test378 Q0 17020945 28 14.668483 Anserini +test378 Q0 18467176 29 14.625144 Anserini +test378 Q0 17900490 30 14.570029 Anserini +test379 Q0 19911489 1 21.561298 Anserini +test379 Q0 17170570 2 21.414709 Anserini +test379 Q0 17170559 3 18.829823 Anserini +test379 Q0 5478546 4 18.711130 Anserini +test379 Q0 2933261 5 17.766441 Anserini +test379 Q0 17170556 6 17.505274 Anserini +test379 Q0 2933273 7 17.407501 Anserini +test379 Q0 17170566 8 17.389118 Anserini +test379 Q0 2933215 9 17.274027 Anserini +test379 Q0 17170580 10 17.199438 Anserini +test379 Q0 17170554 11 17.114565 Anserini +test379 Q0 2933293 12 16.976395 Anserini +test379 Q0 17170555 13 16.885962 Anserini +test379 Q0 14196918 14 16.883282 Anserini +test379 Q0 17170563 15 16.843855 Anserini +test379 Q0 2933236 16 16.761843 Anserini +test379 Q0 2933217 17 16.761843 Anserini +test379 Q0 2030741 18 16.662844 Anserini +test379 Q0 2933283 19 16.445515 Anserini +test379 Q0 9477646 20 16.395792 Anserini +test379 Q0 13780551 21 16.381567 Anserini +test379 Q0 7472728 22 16.344208 Anserini +test379 Q0 19911487 23 16.302315 Anserini +test379 Q0 17928412 24 16.295841 Anserini +test379 Q0 9477649 25 16.224716 Anserini +test379 Q0 17170568 26 16.224716 Anserini +test379 Q0 2030745 27 16.207075 Anserini +test379 Q0 17170573 28 16.158308 Anserini +test379 Q0 797512 29 16.035995 Anserini +test379 Q0 2933234 30 15.937642 Anserini +test38 Q0 9868869 1 10.058456 Anserini +test38 Q0 16434012 2 9.513741 Anserini +test38 Q0 19203147 3 9.031097 Anserini +test38 Q0 11414401 4 8.953547 Anserini +test38 Q0 14808403 5 8.885414 Anserini +test38 Q0 3533161 6 8.806084 Anserini +test38 Q0 6934977 7 8.740453 Anserini +test38 Q0 4969930 8 8.730857 Anserini +test38 Q0 18836163 9 8.729511 Anserini +test38 Q0 16241186 10 8.707139 Anserini +test38 Q0 17539037 11 8.682947 Anserini +test38 Q0 6914165 12 8.665694 Anserini +test38 Q0 21012011 13 8.665694 Anserini +test38 Q0 18294338 14 8.634528 Anserini +test38 Q0 14843202 15 8.616433 Anserini +test38 Q0 11272147 16 8.610376 Anserini +test38 Q0 18069851 17 8.597655 Anserini +test38 Q0 11918987 18 8.584071 Anserini +test38 Q0 12145990 19 8.546653 Anserini +test38 Q0 18294350 20 8.487062 Anserini +test38 Q0 18836155 21 8.482803 Anserini +test38 Q0 7476909 22 8.443314 Anserini +test38 Q0 16908231 23 8.429493 Anserini +test38 Q0 13197714 24 8.427183 Anserini +test38 Q0 18069845 25 8.400296 Anserini +test38 Q0 12542947 26 8.397526 Anserini +test38 Q0 16908221 27 8.386891 Anserini +test38 Q0 12789671 28 8.377830 Anserini +test38 Q0 18415500 29 8.344270 Anserini +test38 Q0 10935809 30 8.337638 Anserini +test380 Q0 1774240 1 12.520679 Anserini +test380 Q0 8902851 2 11.451762 Anserini +test380 Q0 1774241 3 11.059628 Anserini +test380 Q0 20197251 4 11.010537 Anserini +test380 Q0 17918227 5 10.716539 Anserini +test380 Q0 8145012 6 10.679476 Anserini +test380 Q0 8902848 7 10.656985 Anserini +test380 Q0 18667946 8 10.638266 Anserini +test380 Q0 10773247 9 10.635968 Anserini +test380 Q0 5015689 10 10.631909 Anserini +test380 Q0 12410477 11 10.615683 Anserini +test380 Q0 13865225 12 10.496474 Anserini +test380 Q0 17918217 13 10.426797 Anserini +test380 Q0 7801827 14 10.353679 Anserini +test380 Q0 17918224 15 10.319561 Anserini +test380 Q0 14634914 16 10.300058 Anserini +test380 Q0 5015690 17 10.220271 Anserini +test380 Q0 8435274 18 10.126863 Anserini +test380 Q0 18667948 19 10.126863 Anserini +test380 Q0 8435272 20 10.116795 Anserini +test380 Q0 18363846 21 9.911136 Anserini +test380 Q0 17918223 22 9.886892 Anserini +test380 Q0 14115970 23 9.875444 Anserini +test380 Q0 16120082 24 9.823359 Anserini +test380 Q0 8902849 25 9.776406 Anserini +test380 Q0 4307950 26 9.751465 Anserini +test380 Q0 15612732 27 9.749199 Anserini +test380 Q0 3544879 28 9.653429 Anserini +test380 Q0 17918216 29 9.586004 Anserini +test380 Q0 4124534 30 9.574520 Anserini +test381 Q0 11220758 1 22.525547 Anserini +test381 Q0 11220759 2 19.802349 Anserini +test381 Q0 11220762 3 19.726728 Anserini +test381 Q0 11220760 4 19.322506 Anserini +test381 Q0 2674852 5 18.399925 Anserini +test381 Q0 11220761 6 18.049915 Anserini +test381 Q0 2674849 7 17.553064 Anserini +test381 Q0 2674872 8 17.329594 Anserini +test381 Q0 1780544 9 16.823280 Anserini +test381 Q0 2674855 10 16.571686 Anserini +test381 Q0 2064104 11 16.528158 Anserini +test381 Q0 11220766 12 16.484001 Anserini +test381 Q0 6674832 13 16.340307 Anserini +test381 Q0 2674860 14 16.314278 Anserini +test381 Q0 6313799 15 15.980409 Anserini +test381 Q0 9892171 16 15.550334 Anserini +test381 Q0 13311446 17 15.547836 Anserini +test381 Q0 9892170 18 15.536820 Anserini +test381 Q0 226701 19 15.406507 Anserini +test381 Q0 226702 20 15.406507 Anserini +test381 Q0 1577737 21 15.379076 Anserini +test381 Q0 2674851 22 15.233081 Anserini +test381 Q0 2674850 23 15.193973 Anserini +test381 Q0 364763 24 14.937197 Anserini +test381 Q0 9316165 25 14.889805 Anserini +test381 Q0 11341325 26 14.756086 Anserini +test381 Q0 185467 27 14.620358 Anserini +test381 Q0 4191858 28 14.592718 Anserini +test381 Q0 1780546 29 14.317747 Anserini +test381 Q0 16816307 30 14.203612 Anserini +test382 Q0 7309052 1 13.992448 Anserini +test382 Q0 7215265 2 13.607790 Anserini +test382 Q0 1892295 3 13.184567 Anserini +test382 Q0 12952417 4 12.687191 Anserini +test382 Q0 13989635 5 12.582815 Anserini +test382 Q0 351667 6 12.445033 Anserini +test382 Q0 417067 7 12.425308 Anserini +test382 Q0 6587758 8 12.413345 Anserini +test382 Q0 351659 9 12.386685 Anserini +test382 Q0 11975953 10 12.074488 Anserini +test382 Q0 351650 11 12.071371 Anserini +test382 Q0 8881640 12 12.027355 Anserini +test382 Q0 13355474 13 11.848363 Anserini +test382 Q0 349529 14 11.844695 Anserini +test382 Q0 13002226 15 11.792103 Anserini +test382 Q0 18033180 16 11.766159 Anserini +test382 Q0 1744350 17 11.740372 Anserini +test382 Q0 17838055 18 11.703646 Anserini +test382 Q0 5589817 19 11.535055 Anserini +test382 Q0 4073003 20 11.509903 Anserini +test382 Q0 12952416 21 11.443455 Anserini +test382 Q0 5774390 22 11.437409 Anserini +test382 Q0 1923464 23 11.398639 Anserini +test382 Q0 2799749 24 11.316479 Anserini +test382 Q0 1923477 25 11.285654 Anserini +test382 Q0 6276428 26 11.270064 Anserini +test382 Q0 18001870 27 11.269181 Anserini +test382 Q0 12636506 28 11.266341 Anserini +test382 Q0 351661 29 11.253638 Anserini +test382 Q0 13652140 30 11.249133 Anserini +test383 Q0 5175071 1 12.893198 Anserini +test383 Q0 3470910 2 12.542089 Anserini +test383 Q0 8767774 3 12.056491 Anserini +test383 Q0 8767777 4 11.787539 Anserini +test383 Q0 6093506 5 11.562864 Anserini +test383 Q0 20764610 6 11.531403 Anserini +test383 Q0 17258197 7 11.218484 Anserini +test383 Q0 3470909 8 11.174204 Anserini +test383 Q0 17698352 9 11.174204 Anserini +test383 Q0 17698350 10 11.035182 Anserini +test383 Q0 14085361 11 10.972288 Anserini +test383 Q0 8767775 12 10.960428 Anserini +test383 Q0 15316869 13 10.915586 Anserini +test383 Q0 5464889 14 10.889898 Anserini +test383 Q0 20180472 15 10.814885 Anserini +test383 Q0 5908159 16 10.443003 Anserini +test383 Q0 15588018 17 10.418810 Anserini +test383 Q0 15316854 18 10.296095 Anserini +test383 Q0 16001872 19 10.254834 Anserini +test383 Q0 733154 20 10.070785 Anserini +test383 Q0 18278491 21 9.969248 Anserini +test383 Q0 14845269 22 9.899950 Anserini +test383 Q0 8943224 23 9.871052 Anserini +test383 Q0 4805537 24 9.858315 Anserini +test383 Q0 13366852 25 9.836500 Anserini +test383 Q0 17916677 26 9.806084 Anserini +test383 Q0 16475082 27 9.778673 Anserini +test383 Q0 9815571 28 9.725730 Anserini +test383 Q0 733167 29 9.686786 Anserini +test383 Q0 13246221 30 9.630835 Anserini +test384 Q0 18163808 1 10.418300 Anserini +test384 Q0 2972332 2 10.258953 Anserini +test384 Q0 16664236 3 9.662013 Anserini +test384 Q0 16664239 4 9.662013 Anserini +test384 Q0 5445828 5 9.610535 Anserini +test384 Q0 7621797 6 9.543908 Anserini +test384 Q0 8847419 7 9.543908 Anserini +test384 Q0 15471905 8 9.539958 Anserini +test384 Q0 20947618 9 9.473608 Anserini +test384 Q0 19795360 10 9.369451 Anserini +test384 Q0 233619 11 9.290570 Anserini +test384 Q0 19983253 12 9.290570 Anserini +test384 Q0 19665601 13 9.286557 Anserini +test384 Q0 7977728 14 9.253484 Anserini +test384 Q0 11680673 15 9.235802 Anserini +test384 Q0 2972215 16 8.883391 Anserini +test384 Q0 691377 17 8.786137 Anserini +test384 Q0 4620338 18 8.749410 Anserini +test384 Q0 11680674 19 8.749410 Anserini +test384 Q0 1608820 20 8.749410 Anserini +test384 Q0 11680675 21 8.749410 Anserini +test384 Q0 258740 22 8.749410 Anserini +test384 Q0 12980498 23 8.749410 Anserini +test384 Q0 1532525 24 8.688644 Anserini +test384 Q0 20400690 25 8.688644 Anserini +test384 Q0 15901511 26 8.688644 Anserini +test384 Q0 20346377 27 8.628719 Anserini +test384 Q0 14378990 28 8.628719 Anserini +test384 Q0 11321801 29 8.628719 Anserini +test384 Q0 15736276 30 8.628719 Anserini +test385 Q0 8310533 1 20.133684 Anserini +test385 Q0 6388900 2 20.007677 Anserini +test385 Q0 1578405 3 17.189768 Anserini +test385 Q0 11152429 4 16.853258 Anserini +test385 Q0 1578402 5 16.389225 Anserini +test385 Q0 8310532 6 15.958194 Anserini +test385 Q0 12203827 7 15.944833 Anserini +test385 Q0 8310534 8 15.701360 Anserini +test385 Q0 4795422 9 15.172770 Anserini +test385 Q0 2657914 10 14.810674 Anserini +test385 Q0 8310536 11 14.523596 Anserini +test385 Q0 1578404 12 14.352580 Anserini +test385 Q0 5952261 13 13.830041 Anserini +test385 Q0 5952262 14 13.830041 Anserini +test385 Q0 2631068 15 13.693702 Anserini +test385 Q0 17032957 16 13.463710 Anserini +test385 Q0 9140063 17 13.129883 Anserini +test385 Q0 17784544 18 13.075165 Anserini +test385 Q0 13529661 19 13.020946 Anserini +test385 Q0 832529 20 12.918341 Anserini +test385 Q0 5824259 21 12.914684 Anserini +test385 Q0 9962079 22 12.902390 Anserini +test385 Q0 14552730 23 12.865736 Anserini +test385 Q0 13154998 24 12.865736 Anserini +test385 Q0 10170007 25 12.729181 Anserini +test385 Q0 4274443 26 12.622277 Anserini +test385 Q0 13529663 27 12.603488 Anserini +test385 Q0 11152427 28 12.603232 Anserini +test385 Q0 12480308 29 12.474072 Anserini +test385 Q0 6812797 30 12.424259 Anserini +test386 Q0 19334342 1 12.889893 Anserini +test386 Q0 17213240 2 12.389849 Anserini +test386 Q0 17014828 3 12.331841 Anserini +test386 Q0 16008056 4 12.278965 Anserini +test386 Q0 12166081 5 11.697315 Anserini +test386 Q0 19039787 6 11.457506 Anserini +test386 Q0 6113451 7 11.445288 Anserini +test386 Q0 17014837 8 11.405607 Anserini +test386 Q0 7139830 9 11.245550 Anserini +test386 Q0 17014835 10 11.060726 Anserini +test386 Q0 15600600 11 11.037419 Anserini +test386 Q0 16008048 12 11.027205 Anserini +test386 Q0 15600598 13 10.974273 Anserini +test386 Q0 17131592 14 10.948490 Anserini +test386 Q0 8065299 15 10.846787 Anserini +test386 Q0 17453408 16 10.745427 Anserini +test386 Q0 17213237 17 10.745427 Anserini +test386 Q0 17014842 18 10.690180 Anserini +test386 Q0 4970352 19 10.690180 Anserini +test386 Q0 17014838 20 10.652608 Anserini +test386 Q0 17014839 21 10.615314 Anserini +test386 Q0 14444137 22 10.502293 Anserini +test386 Q0 20345930 23 10.464307 Anserini +test386 Q0 5658466 24 10.427265 Anserini +test386 Q0 10476456 25 10.412464 Anserini +test386 Q0 17014834 26 10.334281 Anserini +test386 Q0 18990128 27 10.324224 Anserini +test386 Q0 7199664 28 10.255149 Anserini +test386 Q0 1645143 29 10.215966 Anserini +test386 Q0 17014843 30 10.185563 Anserini +test387 Q0 19471460 1 13.186962 Anserini +test387 Q0 20907514 2 13.080846 Anserini +test387 Q0 1420372 3 12.429054 Anserini +test387 Q0 18914298 4 12.028849 Anserini +test387 Q0 18178068 5 12.017293 Anserini +test387 Q0 10071070 6 11.935285 Anserini +test387 Q0 16852429 7 11.900074 Anserini +test387 Q0 13007557 8 11.815948 Anserini +test387 Q0 7787575 9 11.728164 Anserini +test387 Q0 8161639 10 11.699011 Anserini +test387 Q0 20575715 11 11.514932 Anserini +test387 Q0 10037654 12 11.483476 Anserini +test387 Q0 12745741 13 11.411256 Anserini +test387 Q0 19155931 14 11.336609 Anserini +test387 Q0 2890838 15 11.152964 Anserini +test387 Q0 7787573 16 11.118937 Anserini +test387 Q0 289008 17 11.112477 Anserini +test387 Q0 11234778 18 11.101549 Anserini +test387 Q0 9842923 19 11.060644 Anserini +test387 Q0 11529663 20 11.059023 Anserini +test387 Q0 11834825 21 11.042255 Anserini +test387 Q0 2740272 22 11.008320 Anserini +test387 Q0 9691272 23 10.998050 Anserini +test387 Q0 1158183 24 10.987467 Anserini +test387 Q0 17626056 25 10.982381 Anserini +test387 Q0 2721773 26 10.971963 Anserini +test387 Q0 4181792 27 10.969481 Anserini +test387 Q0 3602479 28 10.888424 Anserini +test387 Q0 6666185 29 10.884138 Anserini +test387 Q0 18322067 30 10.831368 Anserini +test388 Q0 1078928 1 16.825865 Anserini +test388 Q0 1237917 2 16.782669 Anserini +test388 Q0 18209682 3 16.355682 Anserini +test388 Q0 3239424 4 16.355682 Anserini +test388 Q0 1237884 5 15.954984 Anserini +test388 Q0 1239943 6 15.878172 Anserini +test388 Q0 1095690 7 15.788476 Anserini +test388 Q0 1202922 8 15.583683 Anserini +test388 Q0 1239680 9 15.464153 Anserini +test388 Q0 1194736 10 15.394715 Anserini +test388 Q0 1006287 11 15.333061 Anserini +test388 Q0 10295727 12 15.317097 Anserini +test388 Q0 1031478 13 15.217595 Anserini +test388 Q0 3241270 14 15.196134 Anserini +test388 Q0 3354577 15 15.120363 Anserini +test388 Q0 1205865 16 15.089030 Anserini +test388 Q0 1095759 17 15.081714 Anserini +test388 Q0 944840 18 14.847642 Anserini +test388 Q0 1045839 19 14.821228 Anserini +test388 Q0 1234693 20 14.762202 Anserini +test388 Q0 1228395 21 14.753550 Anserini +test388 Q0 1237250 22 14.735297 Anserini +test388 Q0 996958 23 14.726339 Anserini +test388 Q0 1334096 24 14.715743 Anserini +test388 Q0 1045745 25 14.715743 Anserini +test388 Q0 3773510 26 14.674125 Anserini +test388 Q0 1082268 27 14.664393 Anserini +test388 Q0 1212181 28 14.651801 Anserini +test388 Q0 1046373 29 14.651801 Anserini +test388 Q0 1249120 30 14.640497 Anserini +test389 Q0 7801945 1 11.563414 Anserini +test389 Q0 7801946 2 11.563414 Anserini +test389 Q0 6527858 3 11.169790 Anserini +test389 Q0 6527853 4 10.932297 Anserini +test389 Q0 3941521 5 10.766477 Anserini +test389 Q0 6527847 6 10.742443 Anserini +test389 Q0 15876811 7 10.346272 Anserini +test389 Q0 9975608 8 10.296502 Anserini +test389 Q0 17736574 9 10.168353 Anserini +test389 Q0 6527857 10 9.577238 Anserini +test389 Q0 6440460 11 9.570652 Anserini +test389 Q0 11590320 12 9.545978 Anserini +test389 Q0 275189 13 9.534557 Anserini +test389 Q0 9925408 14 9.518396 Anserini +test389 Q0 15876810 15 9.515127 Anserini +test389 Q0 6527863 16 9.479002 Anserini +test389 Q0 12189909 17 9.467178 Anserini +test389 Q0 17736686 18 9.458462 Anserini +test389 Q0 4582510 19 9.442986 Anserini +test389 Q0 8718849 20 9.404995 Anserini +test389 Q0 12843981 21 9.399506 Anserini +test389 Q0 18397240 22 9.251909 Anserini +test389 Q0 16638727 23 9.251909 Anserini +test389 Q0 394043 24 9.237782 Anserini +test389 Q0 18328607 25 9.221011 Anserini +test389 Q0 16379757 26 9.196422 Anserini +test389 Q0 3899879 27 9.156761 Anserini +test389 Q0 11155498 28 9.129091 Anserini +test389 Q0 13950400 29 9.121444 Anserini +test389 Q0 6040602 30 9.100943 Anserini +test39 Q0 830749 1 13.782953 Anserini +test39 Q0 15380150 2 13.501734 Anserini +test39 Q0 830745 3 13.074575 Anserini +test39 Q0 10892582 4 13.005759 Anserini +test39 Q0 830772 5 12.883873 Anserini +test39 Q0 830761 6 12.769214 Anserini +test39 Q0 14899356 7 12.626131 Anserini +test39 Q0 15380143 8 12.606603 Anserini +test39 Q0 830752 9 12.550978 Anserini +test39 Q0 15380151 10 12.522478 Anserini +test39 Q0 830767 11 12.509832 Anserini +test39 Q0 9319162 12 12.502263 Anserini +test39 Q0 15380146 13 12.457417 Anserini +test39 Q0 9064848 14 12.395354 Anserini +test39 Q0 9064847 15 12.394506 Anserini +test39 Q0 15380153 16 12.342570 Anserini +test39 Q0 6804318 17 12.331373 Anserini +test39 Q0 20868788 18 12.224010 Anserini +test39 Q0 17261485 19 12.198788 Anserini +test39 Q0 830759 20 12.185201 Anserini +test39 Q0 10310863 21 12.065924 Anserini +test39 Q0 15380170 22 12.004168 Anserini +test39 Q0 15380148 23 11.995472 Anserini +test39 Q0 7264800 24 11.902536 Anserini +test39 Q0 830779 25 11.884634 Anserini +test39 Q0 18383075 26 11.848909 Anserini +test39 Q0 830760 27 11.789472 Anserini +test39 Q0 6804314 28 11.773575 Anserini +test39 Q0 10310888 29 11.738047 Anserini +test39 Q0 752348 30 11.698040 Anserini +test390 Q0 7361934 1 19.020233 Anserini +test390 Q0 15515139 2 15.905345 Anserini +test390 Q0 1293809 3 15.848394 Anserini +test390 Q0 5887264 4 15.459757 Anserini +test390 Q0 335987 5 15.152571 Anserini +test390 Q0 8339637 6 14.633384 Anserini +test390 Q0 12770618 7 14.563519 Anserini +test390 Q0 11042177 8 14.485693 Anserini +test390 Q0 8780020 9 14.467087 Anserini +test390 Q0 15087076 10 14.440432 Anserini +test390 Q0 18556815 11 14.238202 Anserini +test390 Q0 11021607 12 14.191448 Anserini +test390 Q0 5030594 13 14.154869 Anserini +test390 Q0 17974321 14 13.949861 Anserini +test390 Q0 3167001 15 13.855525 Anserini +test390 Q0 1293814 16 13.743766 Anserini +test390 Q0 12909160 17 13.732387 Anserini +test390 Q0 2838594 18 13.703840 Anserini +test390 Q0 3747722 19 13.607168 Anserini +test390 Q0 18323758 20 13.571694 Anserini +test390 Q0 12232003 21 13.482295 Anserini +test390 Q0 11428115 22 13.454833 Anserini +test390 Q0 1293825 23 13.419356 Anserini +test390 Q0 334019 24 13.330721 Anserini +test390 Q0 1293806 25 13.217014 Anserini +test390 Q0 12037852 26 13.211892 Anserini +test390 Q0 12037858 27 13.100244 Anserini +test390 Q0 13472011 28 13.071916 Anserini +test390 Q0 9251968 29 13.006750 Anserini +test390 Q0 11203800 30 12.992960 Anserini +test391 Q0 10578586 1 13.649356 Anserini +test391 Q0 667832 2 13.495155 Anserini +test391 Q0 5083345 3 13.431059 Anserini +test391 Q0 11531042 4 12.939727 Anserini +test391 Q0 18400090 5 12.917078 Anserini +test391 Q0 11531067 6 12.886714 Anserini +test391 Q0 16496450 7 12.767304 Anserini +test391 Q0 297418 8 12.754147 Anserini +test391 Q0 10578585 9 12.740152 Anserini +test391 Q0 4520222 10 12.718451 Anserini +test391 Q0 3510206 11 12.636353 Anserini +test391 Q0 272618 12 12.555554 Anserini +test391 Q0 16323434 13 12.545815 Anserini +test391 Q0 1575898 14 12.527276 Anserini +test391 Q0 320451 15 12.521202 Anserini +test391 Q0 12448009 16 12.470161 Anserini +test391 Q0 821774 17 12.467829 Anserini +test391 Q0 1847314 18 12.458628 Anserini +test391 Q0 10690627 19 12.390480 Anserini +test391 Q0 3615058 20 12.384459 Anserini +test391 Q0 70662 21 12.306063 Anserini +test391 Q0 8877972 22 12.233644 Anserini +test391 Q0 16667165 23 12.212842 Anserini +test391 Q0 8585144 24 12.210546 Anserini +test391 Q0 8352958 25 12.154145 Anserini +test391 Q0 9703452 26 12.141571 Anserini +test391 Q0 9703453 27 12.141571 Anserini +test391 Q0 3717594 28 12.108534 Anserini +test391 Q0 18400094 29 12.047648 Anserini +test391 Q0 3717545 30 12.022034 Anserini +test392 Q0 12273213 1 26.452337 Anserini +test392 Q0 7665474 2 26.213194 Anserini +test392 Q0 7665468 3 25.450184 Anserini +test392 Q0 3914004 4 25.164732 Anserini +test392 Q0 15580240 5 24.612865 Anserini +test392 Q0 13210081 6 24.539509 Anserini +test392 Q0 3627663 7 24.425941 Anserini +test392 Q0 478880 8 24.232040 Anserini +test392 Q0 14223304 9 24.230192 Anserini +test392 Q0 3627669 10 24.141272 Anserini +test392 Q0 6043409 11 23.152334 Anserini +test392 Q0 5358861 12 23.104126 Anserini +test392 Q0 3774133 13 22.985197 Anserini +test392 Q0 13703706 14 22.861675 Anserini +test392 Q0 478873 15 22.661648 Anserini +test392 Q0 3627670 16 22.652103 Anserini +test392 Q0 16755033 17 22.643066 Anserini +test392 Q0 15580250 18 22.581795 Anserini +test392 Q0 15781485 19 22.504921 Anserini +test392 Q0 6910255 20 22.476868 Anserini +test392 Q0 4852642 21 22.384504 Anserini +test392 Q0 3391148 22 22.345325 Anserini +test392 Q0 5954799 23 22.342976 Anserini +test392 Q0 478898 24 22.270248 Anserini +test392 Q0 478874 25 22.149960 Anserini +test392 Q0 3627674 26 22.051096 Anserini +test392 Q0 3914005 27 22.015942 Anserini +test392 Q0 16755037 28 21.999939 Anserini +test392 Q0 3672220 29 21.958763 Anserini +test392 Q0 478886 30 21.957018 Anserini +test393 Q0 11258744 1 10.983789 Anserini +test393 Q0 3056303 2 10.911882 Anserini +test393 Q0 3113012 3 10.358501 Anserini +test393 Q0 19671314 4 10.184817 Anserini +test393 Q0 9522957 5 9.711029 Anserini +test393 Q0 1802499 6 9.455286 Anserini +test393 Q0 2634502 7 9.433198 Anserini +test393 Q0 15129527 8 9.426705 Anserini +test393 Q0 16672780 9 9.421444 Anserini +test393 Q0 15129528 10 9.335124 Anserini +test393 Q0 5253963 11 9.214136 Anserini +test393 Q0 17542797 12 9.120403 Anserini +test393 Q0 16187513 13 9.108503 Anserini +test393 Q0 4926399 14 9.084817 Anserini +test393 Q0 6666714 15 9.076133 Anserini +test393 Q0 17640244 16 9.045208 Anserini +test393 Q0 10880454 17 9.032761 Anserini +test393 Q0 9603493 18 8.975434 Anserini +test393 Q0 887764 19 8.947469 Anserini +test393 Q0 9603500 20 8.941850 Anserini +test393 Q0 5186583 21 8.930780 Anserini +test393 Q0 7683275 22 8.930269 Anserini +test393 Q0 9799616 23 8.881923 Anserini +test393 Q0 9790067 24 8.874632 Anserini +test393 Q0 16807514 25 8.795943 Anserini +test393 Q0 17665147 26 8.767605 Anserini +test393 Q0 4255186 27 8.767605 Anserini +test393 Q0 16524821 28 8.764468 Anserini +test393 Q0 7971205 29 8.741240 Anserini +test393 Q0 8565588 30 8.680245 Anserini +test394 Q0 10849686 1 19.716219 Anserini +test394 Q0 9212013 2 19.520947 Anserini +test394 Q0 8953257 3 19.453260 Anserini +test394 Q0 10637160 4 19.283625 Anserini +test394 Q0 9212012 5 19.017221 Anserini +test394 Q0 492922 6 18.699610 Anserini +test394 Q0 10849689 7 18.459473 Anserini +test394 Q0 9189415 8 18.386751 Anserini +test394 Q0 6579744 9 18.106304 Anserini +test394 Q0 3705879 10 18.063631 Anserini +test394 Q0 367424 11 17.900526 Anserini +test394 Q0 10845058 12 17.787773 Anserini +test394 Q0 6272013 13 17.776892 Anserini +test394 Q0 492895 14 17.529791 Anserini +test394 Q0 18871302 15 17.505545 Anserini +test394 Q0 19735452 16 17.430805 Anserini +test394 Q0 4047416 17 17.376009 Anserini +test394 Q0 367481 18 17.255287 Anserini +test394 Q0 15754116 19 17.254835 Anserini +test394 Q0 19001981 20 17.213203 Anserini +test394 Q0 4047461 21 17.178936 Anserini +test394 Q0 838495 22 17.147692 Anserini +test394 Q0 8166897 23 17.142088 Anserini +test394 Q0 6271993 24 17.128735 Anserini +test394 Q0 18221923 25 16.996019 Anserini +test394 Q0 9470326 26 16.905924 Anserini +test394 Q0 9212011 27 16.870913 Anserini +test394 Q0 6500941 28 16.870642 Anserini +test394 Q0 492911 29 16.800182 Anserini +test394 Q0 14967813 30 16.796240 Anserini +test395 Q0 2989324 1 14.451383 Anserini +test395 Q0 13068015 2 13.032719 Anserini +test395 Q0 256920 3 12.900839 Anserini +test395 Q0 6468989 4 12.292565 Anserini +test395 Q0 686589 5 12.149415 Anserini +test395 Q0 1772347 6 11.747087 Anserini +test395 Q0 1772338 7 11.695783 Anserini +test395 Q0 1772339 8 11.119614 Anserini +test395 Q0 837562 9 11.089418 Anserini +test395 Q0 5084352 10 11.024838 Anserini +test395 Q0 20266630 11 10.991061 Anserini +test395 Q0 4476897 12 10.803278 Anserini +test395 Q0 10066400 13 10.657546 Anserini +test395 Q0 906096 14 10.656599 Anserini +test395 Q0 11697738 15 10.638428 Anserini +test395 Q0 4881480 16 10.638428 Anserini +test395 Q0 1772349 17 10.637221 Anserini +test395 Q0 15702990 18 10.499215 Anserini +test395 Q0 17004519 19 10.462287 Anserini +test395 Q0 8864142 20 10.447031 Anserini +test395 Q0 5345814 21 10.433275 Anserini +test395 Q0 17520615 22 10.426023 Anserini +test395 Q0 1514020 23 10.415755 Anserini +test395 Q0 111073 24 10.415132 Anserini +test395 Q0 1610864 25 10.353628 Anserini +test395 Q0 16586392 26 10.291490 Anserini +test395 Q0 901330 27 10.283524 Anserini +test395 Q0 250183 28 10.274340 Anserini +test395 Q0 8707610 29 10.273354 Anserini +test395 Q0 15787953 30 10.241085 Anserini +test396 Q0 2602501 1 14.546677 Anserini +test396 Q0 6902416 2 13.578463 Anserini +test396 Q0 6607757 3 13.514232 Anserini +test396 Q0 4739491 4 13.337813 Anserini +test396 Q0 4739500 5 13.148963 Anserini +test396 Q0 4739502 6 13.096867 Anserini +test396 Q0 4739493 7 12.988388 Anserini +test396 Q0 9439417 8 12.966415 Anserini +test396 Q0 4739498 9 12.877737 Anserini +test396 Q0 17458943 10 12.556732 Anserini +test396 Q0 4739492 11 12.553115 Anserini +test396 Q0 3398150 12 12.510478 Anserini +test396 Q0 4739496 13 12.452797 Anserini +test396 Q0 14155859 14 12.306461 Anserini +test396 Q0 10679222 15 12.188564 Anserini +test396 Q0 10169587 16 12.054049 Anserini +test396 Q0 4739495 17 11.924129 Anserini +test396 Q0 4739497 18 11.695723 Anserini +test396 Q0 17202556 19 11.634771 Anserini +test396 Q0 14155858 20 11.598457 Anserini +test396 Q0 16950664 21 11.524276 Anserini +test396 Q0 4739494 22 11.509672 Anserini +test396 Q0 20459465 23 11.498518 Anserini +test396 Q0 7111936 24 11.466688 Anserini +test396 Q0 13638442 25 11.390596 Anserini +test396 Q0 1290643 26 11.308992 Anserini +test396 Q0 10227941 27 11.296988 Anserini +test396 Q0 11214339 28 11.288393 Anserini +test396 Q0 11581558 29 11.250448 Anserini +test396 Q0 3398151 30 11.219814 Anserini +test397 Q0 18202976 1 18.627666 Anserini +test397 Q0 19436340 2 18.151102 Anserini +test397 Q0 20320587 3 18.097738 Anserini +test397 Q0 19436350 4 18.050871 Anserini +test397 Q0 18202980 5 17.650326 Anserini +test397 Q0 18936692 6 17.617603 Anserini +test397 Q0 2420211 7 17.606239 Anserini +test397 Q0 20941734 8 17.460815 Anserini +test397 Q0 20941733 9 17.257215 Anserini +test397 Q0 14943421 10 16.949587 Anserini +test397 Q0 17047403 11 16.879711 Anserini +test397 Q0 19426075 12 16.840366 Anserini +test397 Q0 20411068 13 16.770844 Anserini +test397 Q0 14943385 14 16.684563 Anserini +test397 Q0 17047440 15 16.407818 Anserini +test397 Q0 17047411 16 16.376482 Anserini +test397 Q0 17047443 17 16.369127 Anserini +test397 Q0 14943417 18 16.344238 Anserini +test397 Q0 19151722 19 16.330614 Anserini +test397 Q0 17483355 20 16.322353 Anserini +test397 Q0 18202977 21 16.247551 Anserini +test397 Q0 17507912 22 16.230659 Anserini +test397 Q0 19838805 23 16.205072 Anserini +test397 Q0 14943400 24 16.205072 Anserini +test397 Q0 19838819 25 16.126740 Anserini +test397 Q0 17047456 26 16.099712 Anserini +test397 Q0 20320593 27 16.095478 Anserini +test397 Q0 18936691 28 15.948001 Anserini +test397 Q0 20641860 29 15.769929 Anserini +test397 Q0 16034239 30 15.767090 Anserini +test398 Q0 11053451 1 25.731089 Anserini +test398 Q0 3634369 2 25.408533 Anserini +test398 Q0 11053450 3 24.786663 Anserini +test398 Q0 3634396 4 24.128498 Anserini +test398 Q0 3634368 5 23.641449 Anserini +test398 Q0 3634394 6 23.520199 Anserini +test398 Q0 3634361 7 23.520199 Anserini +test398 Q0 3634389 8 23.518192 Anserini +test398 Q0 3634384 9 23.400190 Anserini +test398 Q0 3634398 10 23.400190 Anserini +test398 Q0 3634391 11 23.174131 Anserini +test398 Q0 3634393 12 23.024361 Anserini +test398 Q0 1552983 13 22.991941 Anserini +test398 Q0 3634362 14 22.629530 Anserini +test398 Q0 3634395 15 22.561558 Anserini +test398 Q0 11504464 16 22.517681 Anserini +test398 Q0 8155359 17 22.117399 Anserini +test398 Q0 3634387 18 22.041384 Anserini +test398 Q0 8155358 19 21.972929 Anserini +test398 Q0 3634365 20 21.752895 Anserini +test398 Q0 3634388 21 21.618227 Anserini +test398 Q0 3634378 22 21.520876 Anserini +test398 Q0 3634386 23 21.431078 Anserini +test398 Q0 3634397 24 21.233467 Anserini +test398 Q0 3634390 25 21.183058 Anserini +test398 Q0 3567765 26 21.087017 Anserini +test398 Q0 3634373 27 21.087017 Anserini +test398 Q0 3634375 28 21.087017 Anserini +test398 Q0 2830284 29 21.077042 Anserini +test398 Q0 3634363 30 20.942577 Anserini +test399 Q0 19838256 1 20.574928 Anserini +test399 Q0 17689784 2 17.183008 Anserini +test399 Q0 19761542 3 16.786041 Anserini +test399 Q0 19273840 4 16.056925 Anserini +test399 Q0 20288291 5 15.591446 Anserini +test399 Q0 19273485 6 15.247186 Anserini +test399 Q0 19273445 7 15.050461 Anserini +test399 Q0 17689786 8 14.962667 Anserini +test399 Q0 17689808 9 14.814011 Anserini +test399 Q0 20288288 10 14.804914 Anserini +test399 Q0 20288308 11 14.738149 Anserini +test399 Q0 20288296 12 14.407458 Anserini +test399 Q0 17689800 13 14.334835 Anserini +test399 Q0 19761538 14 14.202940 Anserini +test399 Q0 17689802 15 14.172568 Anserini +test399 Q0 17808208 16 14.079831 Anserini +test399 Q0 19302484 17 13.943714 Anserini +test399 Q0 19761545 18 13.922215 Anserini +test399 Q0 19625151 19 13.910818 Anserini +test399 Q0 14268849 20 13.874925 Anserini +test399 Q0 19625155 21 13.804090 Anserini +test399 Q0 17689793 22 13.706033 Anserini +test399 Q0 19761552 23 13.658031 Anserini +test399 Q0 19302489 24 13.655002 Anserini +test399 Q0 19838257 25 13.606277 Anserini +test399 Q0 19761543 26 13.554007 Anserini +test399 Q0 17808210 27 13.460993 Anserini +test399 Q0 18270801 28 13.436845 Anserini +test399 Q0 18270798 29 13.436845 Anserini +test399 Q0 19273484 30 13.414130 Anserini +test4 Q0 1547542 1 10.624131 Anserini +test4 Q0 15561373 2 10.599895 Anserini +test4 Q0 12467541 3 10.129608 Anserini +test4 Q0 7344043 4 10.122846 Anserini +test4 Q0 18846938 5 9.916981 Anserini +test4 Q0 2104361 6 9.745949 Anserini +test4 Q0 5404039 7 9.658331 Anserini +test4 Q0 5404038 8 9.658331 Anserini +test4 Q0 737025 9 9.639523 Anserini +test4 Q0 6777350 10 9.571745 Anserini +test4 Q0 18792296 11 9.393321 Anserini +test4 Q0 5768635 12 9.381428 Anserini +test4 Q0 11284051 13 9.372625 Anserini +test4 Q0 18750886 14 9.363390 Anserini +test4 Q0 17868113 15 9.349998 Anserini +test4 Q0 2498100 16 9.330652 Anserini +test4 Q0 7122822 17 9.302567 Anserini +test4 Q0 13930298 18 9.295229 Anserini +test4 Q0 9703924 19 9.267747 Anserini +test4 Q0 9926460 20 9.250504 Anserini +test4 Q0 9926463 21 9.250504 Anserini +test4 Q0 7344042 22 9.212791 Anserini +test4 Q0 8050853 23 9.175594 Anserini +test4 Q0 8050855 24 9.175594 Anserini +test4 Q0 8206475 25 9.170053 Anserini +test4 Q0 8417739 26 9.132677 Anserini +test4 Q0 20807798 27 9.115129 Anserini +test4 Q0 3387098 28 9.092348 Anserini +test4 Q0 12452483 29 9.089876 Anserini +test4 Q0 5232240 30 9.066710 Anserini +test40 Q0 19807752 1 19.714518 Anserini +test40 Q0 12897135 2 19.546263 Anserini +test40 Q0 12897136 3 19.430418 Anserini +test40 Q0 10255947 4 19.414171 Anserini +test40 Q0 12878648 5 19.358440 Anserini +test40 Q0 13664464 6 19.009249 Anserini +test40 Q0 9167332 7 18.921402 Anserini +test40 Q0 11619578 8 18.920980 Anserini +test40 Q0 17736433 9 18.905361 Anserini +test40 Q0 12742905 10 18.782169 Anserini +test40 Q0 17736432 11 18.663006 Anserini +test40 Q0 9936826 12 18.642735 Anserini +test40 Q0 12893085 13 18.512926 Anserini +test40 Q0 16186108 14 18.441704 Anserini +test40 Q0 12936845 15 18.436766 Anserini +test40 Q0 106448 16 18.265268 Anserini +test40 Q0 9167330 17 18.254181 Anserini +test40 Q0 16977348 18 18.233509 Anserini +test40 Q0 4777151 19 18.214508 Anserini +test40 Q0 7550231 20 18.164658 Anserini +test40 Q0 8725364 21 18.140078 Anserini +test40 Q0 11523225 22 18.128321 Anserini +test40 Q0 17736437 23 18.043402 Anserini +test40 Q0 10256018 24 17.974014 Anserini +test40 Q0 12733266 25 17.891134 Anserini +test40 Q0 15038233 26 17.850758 Anserini +test40 Q0 10255994 27 17.812691 Anserini +test40 Q0 106514 28 17.800028 Anserini +test40 Q0 14197159 29 17.798422 Anserini +test40 Q0 4703321 30 17.762096 Anserini +test400 Q0 14244602 1 14.765700 Anserini +test400 Q0 14244603 2 14.196109 Anserini +test400 Q0 1822562 3 13.606130 Anserini +test400 Q0 2873129 4 13.597445 Anserini +test400 Q0 1507086 5 13.403284 Anserini +test400 Q0 4728145 6 12.839048 Anserini +test400 Q0 6731862 7 12.745104 Anserini +test400 Q0 14244601 8 12.703579 Anserini +test400 Q0 4906074 9 12.582743 Anserini +test400 Q0 14244608 10 12.453052 Anserini +test400 Q0 6785185 11 12.303766 Anserini +test400 Q0 190236 12 12.082452 Anserini +test400 Q0 6785184 13 11.978400 Anserini +test400 Q0 13351166 14 11.859528 Anserini +test400 Q0 6731878 15 11.801286 Anserini +test400 Q0 17234801 16 11.756178 Anserini +test400 Q0 4728146 17 11.703209 Anserini +test400 Q0 19020174 18 11.675511 Anserini +test400 Q0 7101311 19 11.587626 Anserini +test400 Q0 2990760 20 11.438887 Anserini +test400 Q0 7389726 21 11.398695 Anserini +test400 Q0 18448367 22 11.374991 Anserini +test400 Q0 485472 23 11.186704 Anserini +test400 Q0 1682887 24 11.180116 Anserini +test400 Q0 621384 25 11.145883 Anserini +test400 Q0 485548 26 11.107088 Anserini +test400 Q0 11426187 27 11.066197 Anserini +test400 Q0 11426189 28 11.066197 Anserini +test400 Q0 3942110 29 10.987724 Anserini +test400 Q0 2027566 30 10.956560 Anserini +test401 Q0 8268464 1 14.814472 Anserini +test401 Q0 10099678 2 13.871877 Anserini +test401 Q0 19938594 3 13.596482 Anserini +test401 Q0 8323845 4 13.276000 Anserini +test401 Q0 20096645 5 13.164940 Anserini +test401 Q0 9589837 6 12.667921 Anserini +test401 Q0 8323844 7 12.525726 Anserini +test401 Q0 12986712 8 12.306875 Anserini +test401 Q0 13946586 9 12.170095 Anserini +test401 Q0 12870734 10 11.981110 Anserini +test401 Q0 9543185 11 11.873884 Anserini +test401 Q0 13918584 12 11.864935 Anserini +test401 Q0 12986698 13 11.833524 Anserini +test401 Q0 14595276 14 11.709196 Anserini +test401 Q0 19964437 15 11.699814 Anserini +test401 Q0 12631364 16 11.602083 Anserini +test401 Q0 14733012 17 11.588183 Anserini +test401 Q0 6816522 18 11.464899 Anserini +test401 Q0 20866672 19 11.333004 Anserini +test401 Q0 18194212 20 11.270432 Anserini +test401 Q0 9372127 21 11.235168 Anserini +test401 Q0 4379623 22 11.230360 Anserini +test401 Q0 13946585 23 11.184191 Anserini +test401 Q0 1274510 24 11.095360 Anserini +test401 Q0 15964785 25 11.095274 Anserini +test401 Q0 7572052 26 11.081942 Anserini +test401 Q0 12239456 27 10.926472 Anserini +test401 Q0 19627052 28 10.884802 Anserini +test401 Q0 8825107 29 10.857851 Anserini +test401 Q0 9492843 30 10.821938 Anserini +test402 Q0 19052134 1 20.464045 Anserini +test402 Q0 19052136 2 16.364777 Anserini +test402 Q0 19052133 3 15.365396 Anserini +test402 Q0 19052170 4 15.310306 Anserini +test402 Q0 19052168 5 14.926759 Anserini +test402 Q0 19213313 6 14.367807 Anserini +test402 Q0 19052161 7 14.158352 Anserini +test402 Q0 19052169 8 14.094381 Anserini +test402 Q0 19052159 9 14.060424 Anserini +test402 Q0 19770782 10 14.039956 Anserini +test402 Q0 19052155 11 13.949832 Anserini +test402 Q0 19052147 12 13.942591 Anserini +test402 Q0 19632830 13 13.509982 Anserini +test402 Q0 19052162 14 13.422853 Anserini +test402 Q0 19052148 15 13.367210 Anserini +test402 Q0 19052152 16 13.352453 Anserini +test402 Q0 19052156 17 13.297028 Anserini +test402 Q0 19213310 18 13.290423 Anserini +test402 Q0 19052135 19 13.276949 Anserini +test402 Q0 19052160 20 13.267838 Anserini +test402 Q0 20373805 21 13.216329 Anserini +test402 Q0 19052166 22 13.157796 Anserini +test402 Q0 18498655 23 13.150253 Anserini +test402 Q0 19554651 24 13.044510 Anserini +test402 Q0 20568086 25 12.886303 Anserini +test402 Q0 19052157 26 12.840487 Anserini +test402 Q0 19660689 27 12.786638 Anserini +test402 Q0 19052158 28 12.737156 Anserini +test402 Q0 19660694 29 12.656152 Anserini +test402 Q0 19052140 30 12.621716 Anserini +test403 Q0 18046924 1 11.620098 Anserini +test403 Q0 14489504 2 11.506662 Anserini +test403 Q0 3725936 3 11.244834 Anserini +test403 Q0 141077 4 11.059878 Anserini +test403 Q0 13095235 5 11.024473 Anserini +test403 Q0 4493197 6 10.962113 Anserini +test403 Q0 3561856 7 10.601186 Anserini +test403 Q0 514548 8 10.523291 Anserini +test403 Q0 821435 9 10.499716 Anserini +test403 Q0 332494 10 10.306728 Anserini +test403 Q0 6674261 11 10.270411 Anserini +test403 Q0 19852122 12 10.155558 Anserini +test403 Q0 3558955 13 10.036664 Anserini +test403 Q0 373834 14 9.899996 Anserini +test403 Q0 9226286 15 9.798610 Anserini +test403 Q0 6534419 16 9.793821 Anserini +test403 Q0 4465469 17 9.780128 Anserini +test403 Q0 9488365 18 9.723368 Anserini +test403 Q0 1982650 19 9.696597 Anserini +test403 Q0 3561860 20 9.685593 Anserini +test403 Q0 4409819 21 9.652225 Anserini +test403 Q0 3247082 22 9.647852 Anserini +test403 Q0 10584592 23 9.636962 Anserini +test403 Q0 3789763 24 9.617339 Anserini +test403 Q0 3789797 25 9.617339 Anserini +test403 Q0 5213619 26 9.564498 Anserini +test403 Q0 16044009 27 9.564498 Anserini +test403 Q0 3215104 28 9.546214 Anserini +test403 Q0 13158891 29 9.524345 Anserini +test403 Q0 13158895 30 9.524345 Anserini +test404 Q0 20076449 1 18.092054 Anserini +test404 Q0 20076448 2 17.395731 Anserini +test404 Q0 20076441 3 16.910154 Anserini +test404 Q0 20076444 4 14.910715 Anserini +test404 Q0 20076443 5 14.831171 Anserini +test404 Q0 20076446 6 14.409388 Anserini +test404 Q0 16412027 7 14.239403 Anserini +test404 Q0 20076447 8 14.190596 Anserini +test404 Q0 16412039 9 14.075885 Anserini +test404 Q0 16412038 10 13.458572 Anserini +test404 Q0 16412033 11 13.446802 Anserini +test404 Q0 16412032 12 13.344558 Anserini +test404 Q0 16412037 13 13.247883 Anserini +test404 Q0 16412031 14 13.177225 Anserini +test404 Q0 16412040 15 12.991590 Anserini +test404 Q0 16412041 16 12.991590 Anserini +test404 Q0 16412034 17 12.919577 Anserini +test404 Q0 20076442 18 12.591104 Anserini +test404 Q0 20076445 19 12.483425 Anserini +test404 Q0 17324187 20 12.294263 Anserini +test404 Q0 16412030 21 11.879679 Anserini +test404 Q0 16412036 22 11.750356 Anserini +test404 Q0 16412035 23 11.576463 Anserini +test404 Q0 19866720 24 11.446363 Anserini +test404 Q0 9736892 25 11.423897 Anserini +test404 Q0 5024503 26 11.329206 Anserini +test404 Q0 14780475 27 11.019948 Anserini +test404 Q0 9619095 28 10.819629 Anserini +test404 Q0 15641558 29 10.772780 Anserini +test404 Q0 3062406 30 10.465289 Anserini +test405 Q0 16078490 1 15.029460 Anserini +test405 Q0 16078491 2 12.099849 Anserini +test405 Q0 20597473 3 11.360512 Anserini +test405 Q0 18200627 4 10.831689 Anserini +test405 Q0 10506516 5 10.818279 Anserini +test405 Q0 19480452 6 10.577373 Anserini +test405 Q0 16078481 7 10.343514 Anserini +test405 Q0 16078486 8 10.311241 Anserini +test405 Q0 5628527 9 10.253556 Anserini +test405 Q0 8911308 10 10.212847 Anserini +test405 Q0 2841118 11 10.147077 Anserini +test405 Q0 16547996 12 10.119136 Anserini +test405 Q0 4430896 13 9.970459 Anserini +test405 Q0 19480454 14 9.929760 Anserini +test405 Q0 3084079 15 9.872378 Anserini +test405 Q0 4274953 16 9.485570 Anserini +test405 Q0 4430901 17 9.453844 Anserini +test405 Q0 14709795 18 9.453844 Anserini +test405 Q0 20547833 19 9.449697 Anserini +test405 Q0 8911311 20 9.420271 Anserini +test405 Q0 20009256 21 9.411724 Anserini +test405 Q0 20089235 22 9.411680 Anserini +test405 Q0 16078492 23 9.405109 Anserini +test405 Q0 4430900 24 9.405109 Anserini +test405 Q0 6730685 25 9.379195 Anserini +test405 Q0 4430902 26 9.356874 Anserini +test405 Q0 5628526 27 9.309132 Anserini +test405 Q0 14511178 28 9.273852 Anserini +test405 Q0 10955238 29 9.273852 Anserini +test405 Q0 19566679 30 9.257374 Anserini +test406 Q0 5949988 1 16.672415 Anserini +test406 Q0 2390755 2 16.400757 Anserini +test406 Q0 13882089 3 15.425999 Anserini +test406 Q0 2390790 4 14.933846 Anserini +test406 Q0 2390766 5 14.714552 Anserini +test406 Q0 20529931 6 14.668733 Anserini +test406 Q0 18152544 7 14.430466 Anserini +test406 Q0 2507565 8 14.430180 Anserini +test406 Q0 17152004 9 14.378360 Anserini +test406 Q0 20188067 10 14.255850 Anserini +test406 Q0 2390798 11 14.252462 Anserini +test406 Q0 20188065 12 14.123289 Anserini +test406 Q0 9905357 13 14.040852 Anserini +test406 Q0 10046874 14 13.983978 Anserini +test406 Q0 15424660 15 13.975630 Anserini +test406 Q0 2390764 16 13.870430 Anserini +test406 Q0 20529932 17 13.865442 Anserini +test406 Q0 14908179 18 13.747994 Anserini +test406 Q0 2507572 19 13.714968 Anserini +test406 Q0 2390765 20 13.701056 Anserini +test406 Q0 18152542 21 13.690031 Anserini +test406 Q0 10173477 22 13.679397 Anserini +test406 Q0 20955207 23 13.669487 Anserini +test406 Q0 14113793 24 13.620409 Anserini +test406 Q0 17963734 25 13.607076 Anserini +test406 Q0 11068371 26 13.603879 Anserini +test406 Q0 17752189 27 13.535277 Anserini +test406 Q0 3446221 28 13.426106 Anserini +test406 Q0 17750900 29 13.421350 Anserini +test406 Q0 2507571 30 13.384005 Anserini +test407 Q0 11833324 1 18.065563 Anserini +test407 Q0 11833330 2 17.546642 Anserini +test407 Q0 18480571 3 17.322784 Anserini +test407 Q0 11833328 4 16.781542 Anserini +test407 Q0 15559659 5 15.130018 Anserini +test407 Q0 11833329 6 14.647224 Anserini +test407 Q0 11833327 7 14.543584 Anserini +test407 Q0 11833326 8 14.452597 Anserini +test407 Q0 4982999 9 14.211226 Anserini +test407 Q0 8035540 10 13.855988 Anserini +test407 Q0 10068799 11 13.767929 Anserini +test407 Q0 11209267 12 13.697718 Anserini +test407 Q0 4986778 13 13.633788 Anserini +test407 Q0 15559656 14 13.554886 Anserini +test407 Q0 20000244 15 13.386079 Anserini +test407 Q0 15748422 16 13.328110 Anserini +test407 Q0 12776070 17 13.282854 Anserini +test407 Q0 11833325 18 13.278755 Anserini +test407 Q0 7954514 19 13.269596 Anserini +test407 Q0 15748428 20 13.212240 Anserini +test407 Q0 17787492 21 13.182004 Anserini +test407 Q0 4950913 22 13.176840 Anserini +test407 Q0 13330141 23 13.161593 Anserini +test407 Q0 12401617 24 13.134744 Anserini +test407 Q0 20971904 25 13.095386 Anserini +test407 Q0 15346370 26 12.982944 Anserini +test407 Q0 11209264 27 12.954716 Anserini +test407 Q0 1326009 28 12.914990 Anserini +test407 Q0 8840299 29 12.836839 Anserini +test407 Q0 16320694 30 12.784595 Anserini +test408 Q0 3352069 1 15.192866 Anserini +test408 Q0 5326176 2 14.314556 Anserini +test408 Q0 12328146 3 13.982348 Anserini +test408 Q0 14518513 4 13.821731 Anserini +test408 Q0 5355498 5 13.449863 Anserini +test408 Q0 12328165 6 13.340856 Anserini +test408 Q0 2103950 7 13.247131 Anserini +test408 Q0 3352084 8 13.117881 Anserini +test408 Q0 3838200 9 13.104440 Anserini +test408 Q0 5326198 10 13.091686 Anserini +test408 Q0 165513 11 13.018740 Anserini +test408 Q0 16929362 12 12.973149 Anserini +test408 Q0 3352058 13 12.959130 Anserini +test408 Q0 5085905 14 12.951416 Anserini +test408 Q0 2467067 15 12.934746 Anserini +test408 Q0 5326196 16 12.742580 Anserini +test408 Q0 12328142 17 12.694344 Anserini +test408 Q0 3352038 18 12.694344 Anserini +test408 Q0 11354041 19 12.684086 Anserini +test408 Q0 3352093 20 12.661073 Anserini +test408 Q0 13637219 21 12.652390 Anserini +test408 Q0 5326182 22 12.637646 Anserini +test408 Q0 5326201 23 12.594051 Anserini +test408 Q0 3352085 24 12.499776 Anserini +test408 Q0 12419636 25 12.448853 Anserini +test408 Q0 5326178 26 12.369282 Anserini +test408 Q0 775206 27 12.369282 Anserini +test408 Q0 1138003 28 12.283581 Anserini +test408 Q0 17287563 29 12.281229 Anserini +test408 Q0 12419633 30 12.280634 Anserini +test409 Q0 3898653 1 26.909592 Anserini +test409 Q0 3898660 2 26.780733 Anserini +test409 Q0 3410585 3 24.686760 Anserini +test409 Q0 1346807 4 24.075771 Anserini +test409 Q0 1346808 5 22.827133 Anserini +test409 Q0 6212748 6 22.284399 Anserini +test409 Q0 6212755 7 22.284399 Anserini +test409 Q0 586594 8 21.973040 Anserini +test409 Q0 1346805 9 21.718227 Anserini +test409 Q0 3410597 10 21.405407 Anserini +test409 Q0 8917519 11 21.313202 Anserini +test409 Q0 12555194 12 21.197811 Anserini +test409 Q0 586599 13 21.121422 Anserini +test409 Q0 13911140 14 20.966175 Anserini +test409 Q0 9535512 15 20.866062 Anserini +test409 Q0 5122108 16 20.484123 Anserini +test409 Q0 14447397 17 20.445814 Anserini +test409 Q0 11671807 18 20.312004 Anserini +test409 Q0 16322609 19 20.092136 Anserini +test409 Q0 157244 20 20.076521 Anserini +test409 Q0 2057803 21 20.003208 Anserini +test409 Q0 14447384 22 19.996206 Anserini +test409 Q0 3898654 23 19.939554 Anserini +test409 Q0 2406283 24 19.919436 Anserini +test409 Q0 9535511 25 19.918333 Anserini +test409 Q0 6427057 26 19.867311 Anserini +test409 Q0 11671811 27 19.857607 Anserini +test409 Q0 586630 28 19.578978 Anserini +test409 Q0 5774062 29 19.564869 Anserini +test409 Q0 7744448 30 19.306894 Anserini +test41 Q0 9022569 1 21.892511 Anserini +test41 Q0 9022584 2 16.478382 Anserini +test41 Q0 16852654 3 15.969944 Anserini +test41 Q0 18684237 4 14.596464 Anserini +test41 Q0 18684232 5 14.596464 Anserini +test41 Q0 9022570 6 14.011604 Anserini +test41 Q0 11049798 7 13.940303 Anserini +test41 Q0 17380410 8 13.851996 Anserini +test41 Q0 9022582 9 13.636995 Anserini +test41 Q0 11049789 10 13.547409 Anserini +test41 Q0 9022571 11 13.533110 Anserini +test41 Q0 18684234 12 13.461938 Anserini +test41 Q0 9022576 13 12.886040 Anserini +test41 Q0 9022583 14 12.767744 Anserini +test41 Q0 13517374 15 12.722535 Anserini +test41 Q0 10292757 16 12.540039 Anserini +test41 Q0 9566838 17 12.416703 Anserini +test41 Q0 8474928 18 12.369238 Anserini +test41 Q0 133706 19 12.338933 Anserini +test41 Q0 14860778 20 12.321813 Anserini +test41 Q0 18530460 21 12.236451 Anserini +test41 Q0 14860776 22 12.191111 Anserini +test41 Q0 218211 23 12.181026 Anserini +test41 Q0 13165704 24 12.076384 Anserini +test41 Q0 414210 25 11.958084 Anserini +test41 Q0 13165707 26 11.949255 Anserini +test41 Q0 9022577 27 11.902159 Anserini +test41 Q0 11758743 28 11.782437 Anserini +test41 Q0 8546972 29 11.776360 Anserini +test41 Q0 13165706 30 11.747378 Anserini +test410 Q0 19199280 1 24.088154 Anserini +test410 Q0 16205564 2 23.973537 Anserini +test410 Q0 12168454 3 23.965488 Anserini +test410 Q0 13996877 4 23.965488 Anserini +test410 Q0 13996878 5 23.965488 Anserini +test410 Q0 13997082 6 23.902170 Anserini +test410 Q0 12734435 7 23.846931 Anserini +test410 Q0 11217273 8 23.811502 Anserini +test410 Q0 12726538 9 23.811502 Anserini +test410 Q0 12734957 10 23.771963 Anserini +test410 Q0 12734958 11 23.771963 Anserini +test410 Q0 12168450 12 23.722507 Anserini +test410 Q0 13997081 13 23.722507 Anserini +test410 Q0 15154051 14 23.660048 Anserini +test410 Q0 16205575 15 23.621599 Anserini +test410 Q0 12726541 16 23.559469 Anserini +test410 Q0 17729839 17 23.404675 Anserini +test410 Q0 11200515 18 23.292280 Anserini +test410 Q0 12775956 19 23.275806 Anserini +test410 Q0 14118063 20 23.191126 Anserini +test410 Q0 14118069 21 23.191126 Anserini +test410 Q0 15154055 22 22.973402 Anserini +test410 Q0 17344152 23 22.954166 Anserini +test410 Q0 19199283 24 22.931484 Anserini +test410 Q0 19855406 25 22.931484 Anserini +test410 Q0 12738846 26 22.899601 Anserini +test410 Q0 19095099 27 22.768089 Anserini +test410 Q0 11200535 28 22.729530 Anserini +test410 Q0 12738834 29 22.701565 Anserini +test410 Q0 19855402 30 22.700981 Anserini +test411 Q0 14509566 1 16.904953 Anserini +test411 Q0 13204317 2 16.833466 Anserini +test411 Q0 14509584 3 16.825584 Anserini +test411 Q0 13204321 4 16.691818 Anserini +test411 Q0 15144546 5 16.671387 Anserini +test411 Q0 13204318 6 16.288294 Anserini +test411 Q0 11112859 7 16.022253 Anserini +test411 Q0 15144535 8 15.995607 Anserini +test411 Q0 13204316 9 15.482906 Anserini +test411 Q0 10382767 10 15.311551 Anserini +test411 Q0 16007025 11 15.248061 Anserini +test411 Q0 16007017 12 15.021144 Anserini +test411 Q0 15144566 13 14.960340 Anserini +test411 Q0 14509567 14 14.738548 Anserini +test411 Q0 15144562 15 14.692080 Anserini +test411 Q0 13204320 16 14.540031 Anserini +test411 Q0 15144536 17 14.351050 Anserini +test411 Q0 15793768 18 14.100449 Anserini +test411 Q0 494952 19 13.960299 Anserini +test411 Q0 15793766 20 13.895993 Anserini +test411 Q0 3670301 21 13.825269 Anserini +test411 Q0 13435641 22 13.775881 Anserini +test411 Q0 6741021 23 13.727149 Anserini +test411 Q0 14509568 24 13.724649 Anserini +test411 Q0 11112860 25 13.713622 Anserini +test411 Q0 11112866 26 13.709408 Anserini +test411 Q0 13435653 27 13.672722 Anserini +test411 Q0 16108622 28 13.617716 Anserini +test411 Q0 14509573 29 13.511839 Anserini +test411 Q0 15144533 30 13.492046 Anserini +test412 Q0 1997669 1 12.594548 Anserini +test412 Q0 19846226 2 10.757524 Anserini +test412 Q0 13317359 3 10.622558 Anserini +test412 Q0 2333390 4 10.240812 Anserini +test412 Q0 1882455 5 10.209673 Anserini +test412 Q0 617583 6 10.048897 Anserini +test412 Q0 15689847 7 9.962934 Anserini +test412 Q0 20377651 8 9.935081 Anserini +test412 Q0 4182180 9 9.745066 Anserini +test412 Q0 6424339 10 9.743095 Anserini +test412 Q0 6424337 11 9.718847 Anserini +test412 Q0 2018384 12 9.632759 Anserini +test412 Q0 3651182 13 9.620304 Anserini +test412 Q0 15588904 14 9.603637 Anserini +test412 Q0 18563187 15 9.592747 Anserini +test412 Q0 10396776 16 9.587883 Anserini +test412 Q0 3576687 17 9.576339 Anserini +test412 Q0 15689846 18 9.478092 Anserini +test412 Q0 19937218 19 9.466391 Anserini +test412 Q0 11747766 20 9.437373 Anserini +test412 Q0 1006405 21 9.419846 Anserini +test412 Q0 20049103 22 9.316597 Anserini +test412 Q0 19846224 23 9.282640 Anserini +test412 Q0 1882466 24 9.251216 Anserini +test412 Q0 4299210 25 9.165490 Anserini +test412 Q0 1030029 26 9.140266 Anserini +test412 Q0 14656425 27 9.127481 Anserini +test412 Q0 14367457 28 9.067814 Anserini +test412 Q0 10439670 29 9.063731 Anserini +test412 Q0 12584084 30 9.063035 Anserini +test413 Q0 2392203 1 10.442656 Anserini +test413 Q0 20110870 2 10.182940 Anserini +test413 Q0 4006175 3 9.911312 Anserini +test413 Q0 12444147 4 9.876740 Anserini +test413 Q0 14542579 5 9.796356 Anserini +test413 Q0 13840494 6 9.755976 Anserini +test413 Q0 2870553 7 9.713263 Anserini +test413 Q0 18131767 8 9.573086 Anserini +test413 Q0 19058828 9 9.565754 Anserini +test413 Q0 17771118 10 9.565754 Anserini +test413 Q0 7350107 11 9.513838 Anserini +test413 Q0 7079022 12 9.415399 Anserini +test413 Q0 20170365 13 9.406880 Anserini +test413 Q0 4006980 14 9.358965 Anserini +test413 Q0 13312424 15 9.208453 Anserini +test413 Q0 19749290 16 9.187210 Anserini +test413 Q0 5063047 17 9.164426 Anserini +test413 Q0 20693935 18 9.129574 Anserini +test413 Q0 18817949 19 9.117425 Anserini +test413 Q0 3368446 20 9.047634 Anserini +test413 Q0 4199115 21 9.047634 Anserini +test413 Q0 15124251 22 9.047634 Anserini +test413 Q0 19118966 23 9.018684 Anserini +test413 Q0 19878723 24 8.985768 Anserini +test413 Q0 11269446 25 8.938907 Anserini +test413 Q0 5230945 26 8.920970 Anserini +test413 Q0 10650549 27 8.919647 Anserini +test413 Q0 18442800 28 8.891172 Anserini +test413 Q0 18741255 29 8.882882 Anserini +test413 Q0 13247758 30 8.864273 Anserini +test414 Q0 4237130 1 19.517529 Anserini +test414 Q0 4513810 2 18.653793 Anserini +test414 Q0 18587634 3 18.491146 Anserini +test414 Q0 2055821 4 18.139618 Anserini +test414 Q0 4513811 5 17.969013 Anserini +test414 Q0 4513817 6 17.969013 Anserini +test414 Q0 8597424 7 17.585930 Anserini +test414 Q0 4237129 8 17.568094 Anserini +test414 Q0 20312540 9 17.212696 Anserini +test414 Q0 692072 10 17.183472 Anserini +test414 Q0 18470649 11 17.140503 Anserini +test414 Q0 11964909 12 17.054228 Anserini +test414 Q0 2064534 13 17.007666 Anserini +test414 Q0 13038472 14 16.966711 Anserini +test414 Q0 2528537 15 16.912119 Anserini +test414 Q0 13766291 16 16.906008 Anserini +test414 Q0 3684878 17 16.838873 Anserini +test414 Q0 17574732 18 16.768454 Anserini +test414 Q0 4237138 19 16.631298 Anserini +test414 Q0 12665427 20 16.613476 Anserini +test414 Q0 15772981 21 16.580795 Anserini +test414 Q0 7659073 22 16.564236 Anserini +test414 Q0 4237133 23 16.521378 Anserini +test414 Q0 841142 24 16.490021 Anserini +test414 Q0 11335198 25 16.484531 Anserini +test414 Q0 6400060 26 16.474728 Anserini +test414 Q0 7246511 27 16.423141 Anserini +test414 Q0 5076625 28 16.411085 Anserini +test414 Q0 2175564 29 16.394249 Anserini +test414 Q0 9422679 30 16.390034 Anserini +test415 Q0 9085307 1 16.392046 Anserini +test415 Q0 5507644 2 15.973921 Anserini +test415 Q0 7320497 3 15.781179 Anserini +test415 Q0 7320420 4 15.716122 Anserini +test415 Q0 607824 5 15.480345 Anserini +test415 Q0 18588482 6 15.337236 Anserini +test415 Q0 7320507 7 15.308918 Anserini +test415 Q0 7320505 8 15.259072 Anserini +test415 Q0 12267042 9 15.253178 Anserini +test415 Q0 20887302 10 15.155377 Anserini +test415 Q0 7320404 11 15.131018 Anserini +test415 Q0 10041063 12 15.036793 Anserini +test415 Q0 19003494 13 14.737734 Anserini +test415 Q0 19003517 14 14.414271 Anserini +test415 Q0 12047286 15 14.351385 Anserini +test415 Q0 7320501 16 14.333979 Anserini +test415 Q0 7320475 17 14.134253 Anserini +test415 Q0 2920299 18 13.865040 Anserini +test415 Q0 7320496 19 13.829865 Anserini +test415 Q0 2189080 20 13.826259 Anserini +test415 Q0 15706969 21 13.800257 Anserini +test415 Q0 9085311 22 13.742430 Anserini +test415 Q0 18588484 23 13.614868 Anserini +test415 Q0 7373924 24 13.429692 Anserini +test415 Q0 5466391 25 13.382630 Anserini +test415 Q0 2260621 26 13.371561 Anserini +test415 Q0 19003495 27 13.349173 Anserini +test415 Q0 18592911 28 13.345253 Anserini +test415 Q0 7320422 29 13.335371 Anserini +test415 Q0 1800663 30 13.323318 Anserini +test416 Q0 655112 1 13.807858 Anserini +test416 Q0 1755321 2 13.461947 Anserini +test416 Q0 19795557 3 12.844763 Anserini +test416 Q0 14148580 4 12.839177 Anserini +test416 Q0 15662720 5 12.573026 Anserini +test416 Q0 8025456 6 12.366015 Anserini +test416 Q0 15657385 7 12.265846 Anserini +test416 Q0 11782316 8 12.150219 Anserini +test416 Q0 3413023 9 12.092666 Anserini +test416 Q0 4375367 10 12.020415 Anserini +test416 Q0 5217118 11 11.676391 Anserini +test416 Q0 19741855 12 11.634299 Anserini +test416 Q0 11981799 13 11.585842 Anserini +test416 Q0 8548095 14 11.533292 Anserini +test416 Q0 15949299 15 11.533292 Anserini +test416 Q0 16585434 16 11.496741 Anserini +test416 Q0 15662713 17 11.453965 Anserini +test416 Q0 17188539 18 11.453818 Anserini +test416 Q0 15672014 19 11.442970 Anserini +test416 Q0 6108310 20 11.433964 Anserini +test416 Q0 1755322 21 11.379722 Anserini +test416 Q0 10214855 22 11.378292 Anserini +test416 Q0 14551279 23 11.373497 Anserini +test416 Q0 12533410 24 11.369764 Anserini +test416 Q0 11724982 25 11.286833 Anserini +test416 Q0 4375529 26 11.251775 Anserini +test416 Q0 3413009 27 11.238042 Anserini +test416 Q0 14259181 28 11.205278 Anserini +test416 Q0 655118 29 11.196113 Anserini +test416 Q0 6108311 30 11.181702 Anserini +test417 Q0 14929339 1 15.853891 Anserini +test417 Q0 14929340 2 15.743951 Anserini +test417 Q0 14929275 3 14.399656 Anserini +test417 Q0 14929300 4 14.287894 Anserini +test417 Q0 14929334 5 14.103279 Anserini +test417 Q0 20795679 6 13.910495 Anserini +test417 Q0 3501558 7 13.777763 Anserini +test417 Q0 3501547 8 13.687096 Anserini +test417 Q0 8966866 9 13.599046 Anserini +test417 Q0 14929295 10 13.318437 Anserini +test417 Q0 18765947 11 13.259420 Anserini +test417 Q0 14929287 12 13.091515 Anserini +test417 Q0 1823293 13 13.046675 Anserini +test417 Q0 14929265 14 12.949022 Anserini +test417 Q0 14929341 15 12.949022 Anserini +test417 Q0 14929338 16 12.896166 Anserini +test417 Q0 9455332 17 12.843739 Anserini +test417 Q0 17675355 18 12.843739 Anserini +test417 Q0 14929322 19 12.843739 Anserini +test417 Q0 14929344 20 12.673172 Anserini +test417 Q0 14929279 21 12.633330 Anserini +test417 Q0 18001832 22 12.632416 Anserini +test417 Q0 17549360 23 12.616637 Anserini +test417 Q0 14929290 24 12.616637 Anserini +test417 Q0 14929311 25 12.490633 Anserini +test417 Q0 17549358 26 12.342029 Anserini +test417 Q0 8943893 27 12.278075 Anserini +test417 Q0 14929342 28 12.278075 Anserini +test417 Q0 17765374 29 12.267855 Anserini +test417 Q0 17549361 30 12.214782 Anserini +test418 Q0 12421821 1 11.835680 Anserini +test418 Q0 11344088 2 11.448103 Anserini +test418 Q0 3796723 3 10.893732 Anserini +test418 Q0 6821014 4 10.553419 Anserini +test418 Q0 4286766 5 10.488478 Anserini +test418 Q0 1704771 6 10.265053 Anserini +test418 Q0 14507399 7 10.214232 Anserini +test418 Q0 13647123 8 10.172893 Anserini +test418 Q0 8862117 9 10.067627 Anserini +test418 Q0 9660107 10 9.944939 Anserini +test418 Q0 1962665 11 9.924994 Anserini +test418 Q0 10285516 12 9.904651 Anserini +test418 Q0 9302529 13 9.816913 Anserini +test418 Q0 17295659 14 9.765362 Anserini +test418 Q0 5990214 15 9.723494 Anserini +test418 Q0 1017929 16 9.685704 Anserini +test418 Q0 824075 17 9.498522 Anserini +test418 Q0 1915052 18 9.451175 Anserini +test418 Q0 3958348 19 9.451175 Anserini +test418 Q0 5929879 20 9.431026 Anserini +test418 Q0 11350626 21 9.425973 Anserini +test418 Q0 7315535 22 9.394796 Anserini +test418 Q0 11508601 23 9.391655 Anserini +test418 Q0 13845610 24 9.364717 Anserini +test418 Q0 15284317 25 9.342566 Anserini +test418 Q0 19135889 26 9.342566 Anserini +test418 Q0 19208778 27 9.324022 Anserini +test418 Q0 14919372 28 9.264325 Anserini +test418 Q0 7738656 29 9.229127 Anserini +test418 Q0 13646178 30 9.227903 Anserini +test419 Q0 4520356 1 11.495809 Anserini +test419 Q0 14027534 2 11.048772 Anserini +test419 Q0 20153437 3 10.776841 Anserini +test419 Q0 10537902 4 10.750151 Anserini +test419 Q0 16129414 5 10.741664 Anserini +test419 Q0 17871080 6 10.731493 Anserini +test419 Q0 8749677 7 10.684944 Anserini +test419 Q0 3830856 8 10.655593 Anserini +test419 Q0 20031635 9 10.605123 Anserini +test419 Q0 10845305 10 10.604280 Anserini +test419 Q0 6487112 11 10.584316 Anserini +test419 Q0 11750433 12 10.495618 Anserini +test419 Q0 20502900 13 10.449432 Anserini +test419 Q0 5258892 14 10.421808 Anserini +test419 Q0 8575803 15 10.253046 Anserini +test419 Q0 362670 16 10.237341 Anserini +test419 Q0 14237481 17 10.212833 Anserini +test419 Q0 15344913 18 10.200008 Anserini +test419 Q0 13291513 19 10.197318 Anserini +test419 Q0 20048590 20 10.187796 Anserini +test419 Q0 11186121 21 10.145556 Anserini +test419 Q0 13270523 22 10.136712 Anserini +test419 Q0 20515110 23 10.093996 Anserini +test419 Q0 11904074 24 10.090356 Anserini +test419 Q0 4106720 25 10.067067 Anserini +test419 Q0 4727989 26 10.047960 Anserini +test419 Q0 12439368 27 10.007857 Anserini +test419 Q0 10947985 28 9.984344 Anserini +test419 Q0 2766039 29 9.959365 Anserini +test419 Q0 13969500 30 9.951454 Anserini +test42 Q0 15157218 1 22.794312 Anserini +test42 Q0 13842153 2 21.979301 Anserini +test42 Q0 13334559 3 21.722139 Anserini +test42 Q0 10238277 4 21.477858 Anserini +test42 Q0 17391696 5 21.246218 Anserini +test42 Q0 14556649 6 21.003225 Anserini +test42 Q0 16982055 7 20.994528 Anserini +test42 Q0 15403727 8 20.883980 Anserini +test42 Q0 10241573 9 20.766191 Anserini +test42 Q0 12660816 10 20.766191 Anserini +test42 Q0 10038577 11 20.563786 Anserini +test42 Q0 15073220 12 20.539473 Anserini +test42 Q0 12769379 13 20.457993 Anserini +test42 Q0 14949271 14 20.457993 Anserini +test42 Q0 13822650 15 20.435549 Anserini +test42 Q0 17495578 16 20.434713 Anserini +test42 Q0 17704646 17 20.426886 Anserini +test42 Q0 17704638 18 20.410870 Anserini +test42 Q0 16318057 19 20.350588 Anserini +test42 Q0 10238271 20 20.350588 Anserini +test42 Q0 11308039 21 20.254574 Anserini +test42 Q0 11901131 22 20.159441 Anserini +test42 Q0 17495599 23 20.088213 Anserini +test42 Q0 6059118 24 20.062965 Anserini +test42 Q0 14067919 25 20.062965 Anserini +test42 Q0 16043052 26 20.048859 Anserini +test42 Q0 13219183 27 20.048859 Anserini +test42 Q0 12143912 28 20.048859 Anserini +test42 Q0 13956663 29 20.048859 Anserini +test42 Q0 13996152 30 20.048859 Anserini +test420 Q0 639669 1 20.578764 Anserini +test420 Q0 3741990 2 20.189640 Anserini +test420 Q0 473072 3 20.090384 Anserini +test420 Q0 677611 4 19.661491 Anserini +test420 Q0 12928786 5 19.600182 Anserini +test420 Q0 639667 6 19.452299 Anserini +test420 Q0 473651 7 19.370480 Anserini +test420 Q0 473143 8 19.368706 Anserini +test420 Q0 472789 9 19.284075 Anserini +test420 Q0 677612 10 19.184216 Anserini +test420 Q0 677610 11 19.077879 Anserini +test420 Q0 14451052 12 19.054192 Anserini +test420 Q0 2824654 13 18.864933 Anserini +test420 Q0 2981477 14 18.760372 Anserini +test420 Q0 588400 15 18.666801 Anserini +test420 Q0 2981475 16 18.581118 Anserini +test420 Q0 473041 17 18.571043 Anserini +test420 Q0 47134 18 18.512379 Anserini +test420 Q0 6487233 19 18.276217 Anserini +test420 Q0 1952434 20 18.210354 Anserini +test420 Q0 497722 21 18.181351 Anserini +test420 Q0 11173362 22 18.112764 Anserini +test420 Q0 247130 23 18.106693 Anserini +test420 Q0 5751041 24 18.056736 Anserini +test420 Q0 11173363 25 18.019030 Anserini +test420 Q0 6044295 26 18.008219 Anserini +test420 Q0 47129 27 17.832361 Anserini +test420 Q0 10311310 28 17.787558 Anserini +test420 Q0 9578603 29 17.709560 Anserini +test420 Q0 19835112 30 17.650234 Anserini +test421 Q0 20063194 1 13.288082 Anserini +test421 Q0 20063198 2 13.159048 Anserini +test421 Q0 15973686 3 12.235882 Anserini +test421 Q0 20216673 4 10.698315 Anserini +test421 Q0 866432 5 10.414585 Anserini +test421 Q0 17580814 6 10.370759 Anserini +test421 Q0 20063197 7 10.273265 Anserini +test421 Q0 3668541 8 10.223808 Anserini +test421 Q0 20028537 9 10.095149 Anserini +test421 Q0 20636162 10 9.841146 Anserini +test421 Q0 20636159 11 9.841146 Anserini +test421 Q0 12838505 12 9.779991 Anserini +test421 Q0 2694341 13 9.765708 Anserini +test421 Q0 15642713 14 9.646248 Anserini +test421 Q0 15642714 15 9.646248 Anserini +test421 Q0 20063195 16 9.555303 Anserini +test421 Q0 20884543 17 9.530023 Anserini +test421 Q0 19228284 18 9.485728 Anserini +test421 Q0 8423311 19 9.462812 Anserini +test421 Q0 1991245 20 9.410869 Anserini +test421 Q0 16778698 21 9.356083 Anserini +test421 Q0 20063196 22 9.329377 Anserini +test421 Q0 3658047 23 9.243905 Anserini +test421 Q0 13308271 24 9.167486 Anserini +test421 Q0 13308263 25 9.117987 Anserini +test421 Q0 3668542 26 9.081785 Anserini +test421 Q0 15244798 27 9.031969 Anserini +test421 Q0 11902331 28 9.019213 Anserini +test421 Q0 4602927 29 8.995176 Anserini +test421 Q0 6266910 30 8.965118 Anserini +test422 Q0 3831003 1 10.246488 Anserini +test422 Q0 7550615 2 9.721992 Anserini +test422 Q0 13467099 3 9.710620 Anserini +test422 Q0 13562252 4 9.662270 Anserini +test422 Q0 14998702 5 9.617062 Anserini +test422 Q0 16092650 6 9.556087 Anserini +test422 Q0 9127087 7 9.341961 Anserini +test422 Q0 12045989 8 9.253359 Anserini +test422 Q0 10500472 9 9.222436 Anserini +test422 Q0 8859731 10 9.112514 Anserini +test422 Q0 51302 11 9.096931 Anserini +test422 Q0 4931366 12 8.982686 Anserini +test422 Q0 16097893 13 8.962458 Anserini +test422 Q0 7815 14 8.949145 Anserini +test422 Q0 8362469 15 8.908318 Anserini +test422 Q0 5488544 16 8.885091 Anserini +test422 Q0 1953165 17 8.859480 Anserini +test422 Q0 3756815 18 8.836949 Anserini +test422 Q0 1907470 19 8.827440 Anserini +test422 Q0 5465458 20 8.825946 Anserini +test422 Q0 11282112 21 8.825946 Anserini +test422 Q0 4693389 22 8.825946 Anserini +test422 Q0 3839231 23 8.821603 Anserini +test422 Q0 4041416 24 8.745214 Anserini +test422 Q0 4592179 25 8.712849 Anserini +test422 Q0 12536069 26 8.708113 Anserini +test422 Q0 5642750 27 8.685487 Anserini +test422 Q0 13016731 28 8.682730 Anserini +test422 Q0 11742141 29 8.677974 Anserini +test422 Q0 11557351 30 8.655198 Anserini +test423 Q0 20364769 1 10.928928 Anserini +test423 Q0 8902426 2 10.396564 Anserini +test423 Q0 8261489 3 10.381812 Anserini +test423 Q0 20370143 4 10.339658 Anserini +test423 Q0 8432761 5 10.248712 Anserini +test423 Q0 4434688 6 10.220019 Anserini +test423 Q0 8902435 7 10.191090 Anserini +test423 Q0 4507657 8 10.109414 Anserini +test423 Q0 2529442 9 10.090408 Anserini +test423 Q0 1417537 10 10.050070 Anserini +test423 Q0 11558069 11 9.911896 Anserini +test423 Q0 11558072 12 9.901737 Anserini +test423 Q0 10704747 13 9.888391 Anserini +test423 Q0 10333636 14 9.858173 Anserini +test423 Q0 13945619 15 9.834569 Anserini +test423 Q0 16035327 16 9.794505 Anserini +test423 Q0 10434562 17 9.583130 Anserini +test423 Q0 13751791 18 9.581432 Anserini +test423 Q0 13749298 19 9.552593 Anserini +test423 Q0 13749301 20 9.552593 Anserini +test423 Q0 18389833 21 9.394641 Anserini +test423 Q0 3329832 22 9.362647 Anserini +test423 Q0 8902434 23 9.358849 Anserini +test423 Q0 8049243 24 9.318848 Anserini +test423 Q0 8049246 25 9.318848 Anserini +test423 Q0 16035326 26 9.293152 Anserini +test423 Q0 12237723 27 9.236019 Anserini +test423 Q0 2837510 28 9.217190 Anserini +test423 Q0 11082317 29 9.160208 Anserini +test423 Q0 13404145 30 9.131848 Anserini +test424 Q0 12140552 1 11.696056 Anserini +test424 Q0 18753499 2 11.691365 Anserini +test424 Q0 3848137 3 11.599160 Anserini +test424 Q0 586362 4 11.180069 Anserini +test424 Q0 12265341 5 11.146061 Anserini +test424 Q0 12265342 6 11.049129 Anserini +test424 Q0 1592287 7 10.925844 Anserini +test424 Q0 3848129 8 10.786242 Anserini +test424 Q0 8150085 9 10.731804 Anserini +test424 Q0 15488627 10 10.687394 Anserini +test424 Q0 3506375 11 10.641050 Anserini +test424 Q0 14609374 12 10.571692 Anserini +test424 Q0 14609375 13 10.571692 Anserini +test424 Q0 13558697 14 10.497770 Anserini +test424 Q0 13558698 15 10.497770 Anserini +test424 Q0 2874234 16 10.383810 Anserini +test424 Q0 3946215 17 10.347062 Anserini +test424 Q0 12380852 18 10.333814 Anserini +test424 Q0 7622570 19 10.278501 Anserini +test424 Q0 12140045 20 10.244253 Anserini +test424 Q0 11730979 21 10.194845 Anserini +test424 Q0 4264915 22 10.184053 Anserini +test424 Q0 314854 23 10.127316 Anserini +test424 Q0 10162900 24 10.002265 Anserini +test424 Q0 7674546 25 9.998522 Anserini +test424 Q0 8769056 26 9.977845 Anserini +test424 Q0 13432787 27 9.917381 Anserini +test424 Q0 2009579 28 9.879929 Anserini +test424 Q0 14656477 29 9.861702 Anserini +test424 Q0 17174849 30 9.846749 Anserini +test425 Q0 19529685 1 20.570734 Anserini +test425 Q0 7309828 2 16.562483 Anserini +test425 Q0 3807878 3 16.231632 Anserini +test425 Q0 19399381 4 16.160927 Anserini +test425 Q0 15596974 5 15.644334 Anserini +test425 Q0 5906059 6 15.626282 Anserini +test425 Q0 3723541 7 15.366408 Anserini +test425 Q0 11454355 8 15.349856 Anserini +test425 Q0 2926731 9 15.312583 Anserini +test425 Q0 20511479 10 15.312548 Anserini +test425 Q0 10605914 11 15.298028 Anserini +test425 Q0 18828645 12 15.295064 Anserini +test425 Q0 6241920 13 15.111160 Anserini +test425 Q0 45163 14 15.096659 Anserini +test425 Q0 6136361 15 14.849394 Anserini +test425 Q0 12140944 16 14.847552 Anserini +test425 Q0 4876820 17 14.836995 Anserini +test425 Q0 2118054 18 14.788937 Anserini +test425 Q0 18037786 19 14.710307 Anserini +test425 Q0 2600351 20 14.693886 Anserini +test425 Q0 14106149 21 14.692223 Anserini +test425 Q0 3812333 22 14.682059 Anserini +test425 Q0 15404532 23 14.671196 Anserini +test425 Q0 9946887 24 14.633810 Anserini +test425 Q0 15863438 25 14.612988 Anserini +test425 Q0 5199056 26 14.584197 Anserini +test425 Q0 5410278 27 14.576407 Anserini +test425 Q0 11669383 28 14.567232 Anserini +test425 Q0 17896659 29 14.559607 Anserini +test425 Q0 17108791 30 14.544157 Anserini +test426 Q0 20894350 1 12.244287 Anserini +test426 Q0 14537746 2 11.820425 Anserini +test426 Q0 7941771 3 11.738982 Anserini +test426 Q0 7661415 4 11.479212 Anserini +test426 Q0 12650421 5 10.944414 Anserini +test426 Q0 388698 6 10.912489 Anserini +test426 Q0 2744498 7 10.811132 Anserini +test426 Q0 1970451 8 10.562979 Anserini +test426 Q0 5992414 9 10.532237 Anserini +test426 Q0 7941782 10 10.487186 Anserini +test426 Q0 15780056 11 10.398247 Anserini +test426 Q0 15780057 12 10.355068 Anserini +test426 Q0 7941775 13 10.215230 Anserini +test426 Q0 7661410 14 10.069909 Anserini +test426 Q0 388729 15 10.069909 Anserini +test426 Q0 8452726 16 10.050588 Anserini +test426 Q0 7941774 17 10.011014 Anserini +test426 Q0 7941764 18 9.994284 Anserini +test426 Q0 2495113 19 9.969656 Anserini +test426 Q0 5022758 20 9.956657 Anserini +test426 Q0 19667182 21 9.951454 Anserini +test426 Q0 7941783 22 9.947647 Anserini +test426 Q0 7941773 23 9.925508 Anserini +test426 Q0 388774 24 9.848618 Anserini +test426 Q0 388778 25 9.800309 Anserini +test426 Q0 15268048 26 9.774748 Anserini +test426 Q0 2196841 27 9.742012 Anserini +test426 Q0 388767 28 9.697248 Anserini +test426 Q0 2495105 29 9.636909 Anserini +test426 Q0 2510005 30 9.527666 Anserini +test427 Q0 20653164 1 13.647574 Anserini +test427 Q0 20653161 2 12.073582 Anserini +test427 Q0 12487681 3 11.978137 Anserini +test427 Q0 3499293 4 11.864046 Anserini +test427 Q0 4245777 5 11.620939 Anserini +test427 Q0 3499291 6 11.594157 Anserini +test427 Q0 178608 7 11.563019 Anserini +test427 Q0 4185098 8 11.442708 Anserini +test427 Q0 2702444 9 11.222700 Anserini +test427 Q0 4208772 10 11.017834 Anserini +test427 Q0 16916108 11 11.007431 Anserini +test427 Q0 128212 12 10.938607 Anserini +test427 Q0 7182652 13 10.893737 Anserini +test427 Q0 18444076 14 10.891455 Anserini +test427 Q0 7459142 15 10.781580 Anserini +test427 Q0 2936710 16 10.723116 Anserini +test427 Q0 7031705 17 10.697290 Anserini +test427 Q0 128211 18 10.625335 Anserini +test427 Q0 3780672 19 10.564018 Anserini +test427 Q0 3499292 20 10.537768 Anserini +test427 Q0 19671959 21 10.501942 Anserini +test427 Q0 10978163 22 10.462511 Anserini +test427 Q0 10940236 23 10.411165 Anserini +test427 Q0 18363257 24 10.411165 Anserini +test427 Q0 17655856 25 10.411165 Anserini +test427 Q0 3417362 26 10.376295 Anserini +test427 Q0 3893208 27 10.376295 Anserini +test427 Q0 19648541 28 10.355438 Anserini +test427 Q0 2293089 29 10.337496 Anserini +test427 Q0 3705162 30 10.322081 Anserini +test428 Q0 3441710 1 15.435712 Anserini +test428 Q0 3441712 2 15.291274 Anserini +test428 Q0 3441711 3 15.162109 Anserini +test428 Q0 1713780 4 15.014200 Anserini +test428 Q0 11112307 5 14.669168 Anserini +test428 Q0 3436042 6 14.568723 Anserini +test428 Q0 2568573 7 14.314474 Anserini +test428 Q0 1713775 8 14.310671 Anserini +test428 Q0 3441708 9 14.119238 Anserini +test428 Q0 1713776 10 14.008049 Anserini +test428 Q0 3441713 11 13.950148 Anserini +test428 Q0 3441706 12 13.950148 Anserini +test428 Q0 2568572 13 13.896528 Anserini +test428 Q0 1713778 14 13.814264 Anserini +test428 Q0 3132307 15 13.653145 Anserini +test428 Q0 11112289 16 13.652913 Anserini +test428 Q0 1881751 17 13.219082 Anserini +test428 Q0 4371187 18 13.067936 Anserini +test428 Q0 3132306 19 13.030811 Anserini +test428 Q0 11112293 20 12.951107 Anserini +test428 Q0 1881752 21 12.882871 Anserini +test428 Q0 12846491 22 12.849504 Anserini +test428 Q0 1713768 23 12.824569 Anserini +test428 Q0 217885 24 12.765595 Anserini +test428 Q0 8544331 25 12.762488 Anserini +test428 Q0 11112297 26 12.721550 Anserini +test428 Q0 11112285 27 12.688554 Anserini +test428 Q0 18912683 28 12.667970 Anserini +test428 Q0 11112301 29 12.593647 Anserini +test428 Q0 16005276 30 12.523861 Anserini +test429 Q0 16423743 1 16.218845 Anserini +test429 Q0 16423742 2 14.830723 Anserini +test429 Q0 16423741 3 14.685795 Anserini +test429 Q0 16423744 4 14.221467 Anserini +test429 Q0 13178166 5 14.121492 Anserini +test429 Q0 6158275 6 13.921974 Anserini +test429 Q0 13176379 7 13.794795 Anserini +test429 Q0 18908391 8 13.498106 Anserini +test429 Q0 19872785 9 13.484635 Anserini +test429 Q0 2614653 10 13.374340 Anserini +test429 Q0 1815773 11 13.342572 Anserini +test429 Q0 12260794 12 13.327029 Anserini +test429 Q0 5198489 13 13.297265 Anserini +test429 Q0 17923639 14 13.253477 Anserini +test429 Q0 17853443 15 13.161406 Anserini +test429 Q0 18908394 16 13.083016 Anserini +test429 Q0 9775149 17 13.066085 Anserini +test429 Q0 2956108 18 13.049839 Anserini +test429 Q0 963363 19 13.003737 Anserini +test429 Q0 9459892 20 12.969740 Anserini +test429 Q0 5424789 21 12.896315 Anserini +test429 Q0 18608510 22 12.872406 Anserini +test429 Q0 1486505 23 12.858916 Anserini +test429 Q0 5328401 24 12.835353 Anserini +test429 Q0 17113545 25 12.831625 Anserini +test429 Q0 2371967 26 12.711908 Anserini +test429 Q0 13382682 27 12.665281 Anserini +test429 Q0 14928289 28 12.648864 Anserini +test429 Q0 13176393 29 12.648775 Anserini +test429 Q0 16267022 30 12.635791 Anserini +test43 Q0 4270867 1 14.041213 Anserini +test43 Q0 2327261 2 13.451421 Anserini +test43 Q0 10292733 3 13.066336 Anserini +test43 Q0 20697444 4 12.868760 Anserini +test43 Q0 20711961 5 12.864325 Anserini +test43 Q0 5328553 6 12.808577 Anserini +test43 Q0 661527 7 12.785363 Anserini +test43 Q0 3616325 8 12.494769 Anserini +test43 Q0 15585629 9 12.398804 Anserini +test43 Q0 2327275 10 12.302439 Anserini +test43 Q0 12478383 11 12.138636 Anserini +test43 Q0 20361987 12 12.124430 Anserini +test43 Q0 3616334 13 12.078739 Anserini +test43 Q0 3616336 14 12.047102 Anserini +test43 Q0 4465686 15 11.990100 Anserini +test43 Q0 10712169 16 11.948272 Anserini +test43 Q0 2327265 17 11.925820 Anserini +test43 Q0 14548795 18 11.893447 Anserini +test43 Q0 19881004 19 11.884657 Anserini +test43 Q0 2327262 20 11.817170 Anserini +test43 Q0 15356675 21 11.746972 Anserini +test43 Q0 6443165 22 11.745287 Anserini +test43 Q0 10165005 23 11.693421 Anserini +test43 Q0 3616333 24 11.647823 Anserini +test43 Q0 18138579 25 11.642385 Anserini +test43 Q0 9281500 26 11.634313 Anserini +test43 Q0 12478391 27 11.623165 Anserini +test43 Q0 2577385 28 11.614864 Anserini +test43 Q0 9103536 29 11.564141 Anserini +test43 Q0 7236651 30 11.545181 Anserini +test430 Q0 7322049 1 17.558647 Anserini +test430 Q0 262197 2 17.249165 Anserini +test430 Q0 306315 3 16.078350 Anserini +test430 Q0 9246741 4 15.821951 Anserini +test430 Q0 262196 5 15.533426 Anserini +test430 Q0 7354876 6 15.352777 Anserini +test430 Q0 7354885 7 15.288711 Anserini +test430 Q0 306316 8 15.283570 Anserini +test430 Q0 12306976 9 15.229095 Anserini +test430 Q0 306323 10 15.105484 Anserini +test430 Q0 7322043 11 15.035440 Anserini +test430 Q0 12251462 12 14.987071 Anserini +test430 Q0 262195 13 14.944921 Anserini +test430 Q0 1266944 14 14.837830 Anserini +test430 Q0 7027770 15 14.826934 Anserini +test430 Q0 2020000 16 14.780901 Anserini +test430 Q0 2869454 17 14.756862 Anserini +test430 Q0 306290 18 14.712378 Anserini +test430 Q0 306322 19 14.709212 Anserini +test430 Q0 262187 20 14.688530 Anserini +test430 Q0 18181225 21 14.671444 Anserini +test430 Q0 14706905 22 14.524084 Anserini +test430 Q0 9961771 23 14.487681 Anserini +test430 Q0 17668249 24 14.452735 Anserini +test430 Q0 7746764 25 14.430248 Anserini +test430 Q0 20831728 26 14.427001 Anserini +test430 Q0 12581877 27 14.367033 Anserini +test430 Q0 306297 28 14.366619 Anserini +test430 Q0 11822404 29 14.339932 Anserini +test430 Q0 1742782 30 14.338158 Anserini +test431 Q0 20569200 1 13.631223 Anserini +test431 Q0 5053550 2 12.718378 Anserini +test431 Q0 17591871 3 12.469959 Anserini +test431 Q0 17591872 4 12.168085 Anserini +test431 Q0 5964411 5 11.898574 Anserini +test431 Q0 5053557 6 11.531748 Anserini +test431 Q0 7998306 7 11.502467 Anserini +test431 Q0 11389645 8 11.316546 Anserini +test431 Q0 3197892 9 11.203103 Anserini +test431 Q0 3623938 10 11.027634 Anserini +test431 Q0 3438415 11 10.958651 Anserini +test431 Q0 2210941 12 10.894070 Anserini +test431 Q0 15471447 13 10.741268 Anserini +test431 Q0 20569192 14 10.592061 Anserini +test431 Q0 5314492 15 10.576796 Anserini +test431 Q0 7875802 16 10.459530 Anserini +test431 Q0 6262624 17 10.396658 Anserini +test431 Q0 16580029 18 10.348171 Anserini +test431 Q0 3623940 19 10.318955 Anserini +test431 Q0 5314491 20 10.259257 Anserini +test431 Q0 5205466 21 10.206951 Anserini +test431 Q0 13529991 22 10.187075 Anserini +test431 Q0 8550493 23 10.177422 Anserini +test431 Q0 6199343 24 10.145553 Anserini +test431 Q0 7998309 25 10.136086 Anserini +test431 Q0 5053556 26 10.042563 Anserini +test431 Q0 2727589 27 10.039366 Anserini +test431 Q0 3645801 28 10.025784 Anserini +test431 Q0 2892132 29 10.018043 Anserini +test431 Q0 15956678 30 9.989214 Anserini +test432 Q0 20188182 1 16.622482 Anserini +test432 Q0 306140 2 15.346498 Anserini +test432 Q0 19472230 3 15.254707 Anserini +test432 Q0 2264960 4 14.747358 Anserini +test432 Q0 6059919 5 14.612922 Anserini +test432 Q0 306144 6 14.528378 Anserini +test432 Q0 8951714 7 14.326580 Anserini +test432 Q0 20188183 8 14.257706 Anserini +test432 Q0 2264953 9 13.162291 Anserini +test432 Q0 306129 10 13.055344 Anserini +test432 Q0 306117 11 12.966618 Anserini +test432 Q0 2282466 12 12.965294 Anserini +test432 Q0 560891 13 12.950199 Anserini +test432 Q0 2282469 14 12.757954 Anserini +test432 Q0 306152 15 12.693618 Anserini +test432 Q0 306151 16 12.630659 Anserini +test432 Q0 8404202 17 12.522356 Anserini +test432 Q0 2264963 18 12.469357 Anserini +test432 Q0 12653809 19 12.244726 Anserini +test432 Q0 306142 20 12.244726 Anserini +test432 Q0 19337048 21 11.876829 Anserini +test432 Q0 306149 22 11.212063 Anserini +test432 Q0 3141577 23 11.212063 Anserini +test432 Q0 885834 24 11.091495 Anserini +test432 Q0 306118 25 11.091495 Anserini +test432 Q0 17551605 26 11.091495 Anserini +test432 Q0 15988698 27 11.091495 Anserini +test432 Q0 306119 28 10.973491 Anserini +test432 Q0 306128 29 10.973491 Anserini +test432 Q0 923577 30 10.973491 Anserini +test433 Q0 9556823 1 12.769384 Anserini +test433 Q0 118041 2 11.929987 Anserini +test433 Q0 14201531 3 11.869129 Anserini +test433 Q0 11124803 4 11.809059 Anserini +test433 Q0 10726171 5 11.751493 Anserini +test433 Q0 10406173 6 11.734232 Anserini +test433 Q0 12650478 7 11.721878 Anserini +test433 Q0 5805694 8 11.579246 Anserini +test433 Q0 13827468 9 11.533527 Anserini +test433 Q0 5805711 10 11.528610 Anserini +test433 Q0 5449558 11 11.347110 Anserini +test433 Q0 18961708 12 11.282755 Anserini +test433 Q0 4593594 13 11.246716 Anserini +test433 Q0 19222706 14 11.246716 Anserini +test433 Q0 19280924 15 11.158545 Anserini +test433 Q0 13827472 16 11.112840 Anserini +test433 Q0 8291768 17 11.064556 Anserini +test433 Q0 13913026 18 10.947871 Anserini +test433 Q0 8590736 19 10.912184 Anserini +test433 Q0 20083556 20 10.860125 Anserini +test433 Q0 14262079 21 10.838878 Anserini +test433 Q0 17526949 22 10.823672 Anserini +test433 Q0 12199812 23 10.760298 Anserini +test433 Q0 2805802 24 10.687166 Anserini +test433 Q0 6636421 25 10.599192 Anserini +test433 Q0 9845256 26 10.595955 Anserini +test433 Q0 11311373 27 10.591708 Anserini +test433 Q0 6054459 28 10.587077 Anserini +test433 Q0 16707687 29 10.547558 Anserini +test433 Q0 16586057 30 10.493306 Anserini +test434 Q0 14021941 1 17.793953 Anserini +test434 Q0 19306998 2 16.930222 Anserini +test434 Q0 612820 3 16.675529 Anserini +test434 Q0 2321375 4 16.305511 Anserini +test434 Q0 612409 5 16.241951 Anserini +test434 Q0 3871971 6 16.238871 Anserini +test434 Q0 12558159 7 15.481199 Anserini +test434 Q0 6103485 8 15.434466 Anserini +test434 Q0 612838 9 15.303612 Anserini +test434 Q0 5207721 10 14.981726 Anserini +test434 Q0 3871974 11 14.888153 Anserini +test434 Q0 612818 12 14.817289 Anserini +test434 Q0 14021939 13 14.751470 Anserini +test434 Q0 612869 14 14.722999 Anserini +test434 Q0 612845 15 14.713319 Anserini +test434 Q0 644655 16 14.616893 Anserini +test434 Q0 19221202 17 14.533770 Anserini +test434 Q0 728342 18 14.449090 Anserini +test434 Q0 6103780 19 14.410864 Anserini +test434 Q0 1424602 20 14.351519 Anserini +test434 Q0 12759759 21 14.259733 Anserini +test434 Q0 612804 22 14.198453 Anserini +test434 Q0 19307209 23 14.136454 Anserini +test434 Q0 612823 24 14.102652 Anserini +test434 Q0 714986 25 13.888002 Anserini +test434 Q0 1820784 26 13.872641 Anserini +test434 Q0 630805 27 13.867519 Anserini +test434 Q0 5207708 28 13.858700 Anserini +test434 Q0 612837 29 13.813221 Anserini +test434 Q0 4649913 30 13.773014 Anserini +test435 Q0 19910638 1 21.846264 Anserini +test435 Q0 15576774 2 20.871155 Anserini +test435 Q0 15576775 3 20.375536 Anserini +test435 Q0 9600015 4 19.947126 Anserini +test435 Q0 9600021 5 19.947126 Anserini +test435 Q0 2033876 6 19.550621 Anserini +test435 Q0 2033855 7 19.545364 Anserini +test435 Q0 15081936 8 19.477736 Anserini +test435 Q0 14206649 9 19.283852 Anserini +test435 Q0 12746988 10 19.271463 Anserini +test435 Q0 11710819 11 19.261461 Anserini +test435 Q0 14206652 12 19.216970 Anserini +test435 Q0 14441784 13 18.863338 Anserini +test435 Q0 7036497 14 18.614244 Anserini +test435 Q0 8476271 15 18.574825 Anserini +test435 Q0 2033866 16 18.437149 Anserini +test435 Q0 19910639 17 18.388237 Anserini +test435 Q0 2033872 18 18.355827 Anserini +test435 Q0 2033869 19 18.096252 Anserini +test435 Q0 18219218 20 17.939325 Anserini +test435 Q0 14441783 21 17.908972 Anserini +test435 Q0 5930975 22 17.908972 Anserini +test435 Q0 2033882 23 17.760571 Anserini +test435 Q0 13467018 24 17.692402 Anserini +test435 Q0 11710823 25 17.659452 Anserini +test435 Q0 15913169 26 17.658535 Anserini +test435 Q0 7377048 27 17.624828 Anserini +test435 Q0 13470237 28 17.607302 Anserini +test435 Q0 7036496 29 17.552443 Anserini +test435 Q0 4787794 30 17.531857 Anserini +test436 Q0 7161823 1 10.189226 Anserini +test436 Q0 4363140 2 10.144977 Anserini +test436 Q0 19399117 3 10.143649 Anserini +test436 Q0 11939275 4 9.964873 Anserini +test436 Q0 57160 5 9.615957 Anserini +test436 Q0 3141760 6 9.609655 Anserini +test436 Q0 3141739 7 9.609655 Anserini +test436 Q0 11114164 8 9.357476 Anserini +test436 Q0 8763362 9 9.321970 Anserini +test436 Q0 9460433 10 9.297616 Anserini +test436 Q0 15155019 11 9.181460 Anserini +test436 Q0 1457998 12 9.109270 Anserini +test436 Q0 10444043 13 9.109270 Anserini +test436 Q0 10131003 14 9.077667 Anserini +test436 Q0 10131014 15 9.077667 Anserini +test436 Q0 4755584 16 9.022983 Anserini +test436 Q0 12590877 17 8.981626 Anserini +test436 Q0 12398825 18 8.888710 Anserini +test436 Q0 19152547 19 8.792526 Anserini +test436 Q0 7782517 20 8.758866 Anserini +test436 Q0 12893866 21 8.739464 Anserini +test436 Q0 420717 22 8.676993 Anserini +test436 Q0 1980806 23 8.645373 Anserini +test436 Q0 10416473 24 8.623370 Anserini +test436 Q0 17894539 25 8.580598 Anserini +test436 Q0 17713427 26 8.580598 Anserini +test436 Q0 4711763 27 8.580598 Anserini +test436 Q0 4711755 28 8.559088 Anserini +test436 Q0 3411850 29 8.541225 Anserini +test436 Q0 12381860 30 8.526259 Anserini +test437 Q0 20530389 1 16.023775 Anserini +test437 Q0 20530390 2 16.023775 Anserini +test437 Q0 20530380 3 15.718567 Anserini +test437 Q0 20518266 4 15.099521 Anserini +test437 Q0 20518270 5 14.508833 Anserini +test437 Q0 20502547 6 14.427899 Anserini +test437 Q0 18562223 7 14.107469 Anserini +test437 Q0 14353145 8 14.062388 Anserini +test437 Q0 15750512 9 14.041669 Anserini +test437 Q0 20538646 10 13.989568 Anserini +test437 Q0 20525225 11 13.964133 Anserini +test437 Q0 20538139 12 13.952325 Anserini +test437 Q0 20538142 13 13.952325 Anserini +test437 Q0 9195737 14 13.867066 Anserini +test437 Q0 9195739 15 13.867066 Anserini +test437 Q0 18240252 16 13.865742 Anserini +test437 Q0 19718556 17 13.781934 Anserini +test437 Q0 19911065 18 13.753193 Anserini +test437 Q0 19911066 19 13.753193 Anserini +test437 Q0 20816260 20 13.743824 Anserini +test437 Q0 19309645 21 13.734900 Anserini +test437 Q0 19931257 22 13.715534 Anserini +test437 Q0 20035345 23 13.693954 Anserini +test437 Q0 20530386 24 13.676032 Anserini +test437 Q0 20530379 25 13.603464 Anserini +test437 Q0 20530378 26 13.552079 Anserini +test437 Q0 15429421 27 13.532340 Anserini +test437 Q0 20816261 28 13.523699 Anserini +test437 Q0 16912801 29 13.523580 Anserini +test437 Q0 19956437 30 13.502868 Anserini +test438 Q0 7356559 1 15.095088 Anserini +test438 Q0 7356531 2 15.021830 Anserini +test438 Q0 13477839 3 14.943855 Anserini +test438 Q0 14232039 4 14.623045 Anserini +test438 Q0 13595901 5 14.506859 Anserini +test438 Q0 7827561 6 14.279831 Anserini +test438 Q0 12668944 7 14.152850 Anserini +test438 Q0 7356550 8 14.016144 Anserini +test438 Q0 8334323 9 13.813059 Anserini +test438 Q0 15123604 10 13.781992 Anserini +test438 Q0 13184836 11 13.381557 Anserini +test438 Q0 7487726 12 13.217091 Anserini +test438 Q0 8691405 13 13.088387 Anserini +test438 Q0 17661747 14 12.945890 Anserini +test438 Q0 3195372 15 12.922211 Anserini +test438 Q0 19831160 16 12.912390 Anserini +test438 Q0 9068028 17 12.901016 Anserini +test438 Q0 13572734 18 12.889798 Anserini +test438 Q0 2868349 19 12.867686 Anserini +test438 Q0 687772 20 12.849848 Anserini +test438 Q0 8544493 21 12.818691 Anserini +test438 Q0 547307 22 12.775827 Anserini +test438 Q0 18579729 23 12.760477 Anserini +test438 Q0 18579730 24 12.760477 Anserini +test438 Q0 7989720 25 12.681501 Anserini +test438 Q0 15523385 26 12.611956 Anserini +test438 Q0 7356552 27 12.541778 Anserini +test438 Q0 18128425 28 12.519817 Anserini +test438 Q0 13477838 29 12.504409 Anserini +test438 Q0 15523387 30 12.484222 Anserini +test439 Q0 191275 1 13.931678 Anserini +test439 Q0 15647163 2 13.851795 Anserini +test439 Q0 13033858 3 13.546509 Anserini +test439 Q0 17216477 4 13.510508 Anserini +test439 Q0 20650047 5 13.476707 Anserini +test439 Q0 12439817 6 13.355939 Anserini +test439 Q0 12439803 7 13.355939 Anserini +test439 Q0 608005 8 13.243868 Anserini +test439 Q0 608026 9 13.108426 Anserini +test439 Q0 12439782 10 13.042190 Anserini +test439 Q0 18420819 11 13.013433 Anserini +test439 Q0 19772570 12 12.963146 Anserini +test439 Q0 1442993 13 12.920273 Anserini +test439 Q0 13538983 14 12.779155 Anserini +test439 Q0 6469912 15 12.775942 Anserini +test439 Q0 7230500 16 12.734146 Anserini +test439 Q0 19462214 17 12.704239 Anserini +test439 Q0 11191306 18 12.604490 Anserini +test439 Q0 13033891 19 12.581779 Anserini +test439 Q0 5306929 20 12.506328 Anserini +test439 Q0 13538982 21 12.506231 Anserini +test439 Q0 4761361 22 12.382712 Anserini +test439 Q0 16909155 23 12.260224 Anserini +test439 Q0 12854499 24 12.257735 Anserini +test439 Q0 18420823 25 12.204808 Anserini +test439 Q0 11718012 26 12.147903 Anserini +test439 Q0 16909156 27 12.147406 Anserini +test439 Q0 2086095 28 12.098252 Anserini +test439 Q0 12854504 29 12.079739 Anserini +test439 Q0 12439786 30 12.066412 Anserini +test44 Q0 15869858 1 11.010715 Anserini +test44 Q0 15148397 2 10.261014 Anserini +test44 Q0 20120534 3 10.261014 Anserini +test44 Q0 14693888 4 10.035580 Anserini +test44 Q0 6740950 5 9.840135 Anserini +test44 Q0 16842123 6 9.821373 Anserini +test44 Q0 15148369 7 9.765270 Anserini +test44 Q0 14693976 8 9.566444 Anserini +test44 Q0 14681177 9 9.516718 Anserini +test44 Q0 14693884 10 9.447504 Anserini +test44 Q0 14693880 11 9.362391 Anserini +test44 Q0 9846837 12 9.341350 Anserini +test44 Q0 14693878 13 9.320403 Anserini +test44 Q0 14681183 14 9.255185 Anserini +test44 Q0 14693874 15 9.222606 Anserini +test44 Q0 14693886 16 9.211780 Anserini +test44 Q0 14693879 17 9.208320 Anserini +test44 Q0 14693868 18 9.208320 Anserini +test44 Q0 16985067 19 9.185490 Anserini +test44 Q0 14693866 20 9.185064 Anserini +test44 Q0 14681170 21 9.141003 Anserini +test44 Q0 14681184 22 9.063003 Anserini +test44 Q0 14693891 23 9.063003 Anserini +test44 Q0 14693895 24 9.063003 Anserini +test44 Q0 14693871 25 9.036731 Anserini +test44 Q0 14693855 26 9.010612 Anserini +test44 Q0 14693863 27 9.010612 Anserini +test44 Q0 14693885 28 9.010612 Anserini +test44 Q0 14693865 29 9.010612 Anserini +test44 Q0 8805532 30 8.998149 Anserini +test440 Q0 20700597 1 17.208992 Anserini +test440 Q0 16658639 2 17.111679 Anserini +test440 Q0 16658646 3 17.111679 Anserini +test440 Q0 20700600 4 16.699526 Anserini +test440 Q0 20700598 5 16.443649 Anserini +test440 Q0 1514911 6 15.908200 Anserini +test440 Q0 17575593 7 15.802643 Anserini +test440 Q0 19122856 8 15.802643 Anserini +test440 Q0 19122929 9 15.802643 Anserini +test440 Q0 17575578 10 15.802643 Anserini +test440 Q0 17615362 11 15.802643 Anserini +test440 Q0 17615351 12 15.802643 Anserini +test440 Q0 222120 13 15.785266 Anserini +test440 Q0 16324268 14 15.659691 Anserini +test440 Q0 16379956 15 15.659691 Anserini +test440 Q0 16450294 16 15.659691 Anserini +test440 Q0 16895175 17 15.659691 Anserini +test440 Q0 17673979 18 15.659691 Anserini +test440 Q0 17674065 19 15.659691 Anserini +test440 Q0 16373306 20 15.659691 Anserini +test440 Q0 16396290 21 15.659691 Anserini +test440 Q0 17671904 22 15.659691 Anserini +test440 Q0 17671832 23 15.659691 Anserini +test440 Q0 17672909 24 15.659691 Anserini +test440 Q0 16373325 25 15.659691 Anserini +test440 Q0 16396113 26 15.659691 Anserini +test440 Q0 16447161 27 15.659691 Anserini +test440 Q0 16447336 28 15.659691 Anserini +test440 Q0 17672251 29 15.659691 Anserini +test440 Q0 16876025 30 15.659691 Anserini +test441 Q0 14213794 1 10.805264 Anserini +test441 Q0 2016511 2 10.661238 Anserini +test441 Q0 2016513 3 10.661234 Anserini +test441 Q0 2016510 4 10.537342 Anserini +test441 Q0 2016527 5 10.426523 Anserini +test441 Q0 4029373 6 10.269194 Anserini +test441 Q0 2016512 7 10.269194 Anserini +test441 Q0 650442 8 10.269194 Anserini +test441 Q0 12922984 9 10.252737 Anserini +test441 Q0 11869581 10 10.217914 Anserini +test441 Q0 5080242 11 10.212269 Anserini +test441 Q0 10485199 12 10.172440 Anserini +test441 Q0 882497 13 10.100889 Anserini +test441 Q0 10485200 14 10.013231 Anserini +test441 Q0 15119189 15 9.968060 Anserini +test441 Q0 2016521 16 9.905385 Anserini +test441 Q0 4107283 17 9.877068 Anserini +test441 Q0 882549 18 9.808757 Anserini +test441 Q0 10664870 19 9.750782 Anserini +test441 Q0 14251507 20 9.660316 Anserini +test441 Q0 16351486 21 9.604904 Anserini +test441 Q0 20692564 22 9.604904 Anserini +test441 Q0 20692566 23 9.604904 Anserini +test441 Q0 11842282 24 9.541032 Anserini +test441 Q0 15573268 25 9.499616 Anserini +test441 Q0 5719318 26 9.459608 Anserini +test441 Q0 15120816 27 9.454046 Anserini +test441 Q0 5087131 28 9.408871 Anserini +test441 Q0 10504410 29 9.392166 Anserini +test441 Q0 19342192 30 9.388103 Anserini +test442 Q0 13020784 1 10.888172 Anserini +test442 Q0 310074 2 9.843797 Anserini +test442 Q0 8271626 3 9.786667 Anserini +test442 Q0 1148063 4 9.589828 Anserini +test442 Q0 4818803 5 9.556023 Anserini +test442 Q0 20914798 6 9.435297 Anserini +test442 Q0 5136365 7 9.336380 Anserini +test442 Q0 18422310 8 9.265237 Anserini +test442 Q0 17466296 9 9.116001 Anserini +test442 Q0 10223102 10 8.962360 Anserini +test442 Q0 14601104 11 8.962360 Anserini +test442 Q0 9329594 12 8.945351 Anserini +test442 Q0 7461157 13 8.803592 Anserini +test442 Q0 5075882 14 8.775186 Anserini +test442 Q0 10127675 15 8.658893 Anserini +test442 Q0 153541 16 8.586114 Anserini +test442 Q0 3461585 17 8.581477 Anserini +test442 Q0 7356205 18 8.573598 Anserini +test442 Q0 10153299 19 8.563927 Anserini +test442 Q0 16677340 20 8.554778 Anserini +test442 Q0 7356199 21 8.506694 Anserini +test442 Q0 998195 22 8.441003 Anserini +test442 Q0 15050945 23 8.429709 Anserini +test442 Q0 8187690 24 8.397254 Anserini +test442 Q0 14184536 25 8.376256 Anserini +test442 Q0 668448 26 8.371599 Anserini +test442 Q0 16324290 27 8.320546 Anserini +test442 Q0 768603 28 8.296792 Anserini +test442 Q0 13041280 29 8.296792 Anserini +test442 Q0 5051310 30 8.273627 Anserini +test443 Q0 14837163 1 22.722084 Anserini +test443 Q0 3692649 2 21.334269 Anserini +test443 Q0 8139210 3 21.149561 Anserini +test443 Q0 8139211 4 20.298241 Anserini +test443 Q0 10298211 5 20.125870 Anserini +test443 Q0 701450 6 19.338058 Anserini +test443 Q0 11514958 7 19.212517 Anserini +test443 Q0 8139209 8 17.948975 Anserini +test443 Q0 1926910 9 17.679504 Anserini +test443 Q0 8139207 10 17.546570 Anserini +test443 Q0 1313469 11 17.540861 Anserini +test443 Q0 1313456 12 17.540861 Anserini +test443 Q0 20106450 13 17.442846 Anserini +test443 Q0 300841 14 17.433577 Anserini +test443 Q0 3285475 15 17.391169 Anserini +test443 Q0 8897222 16 17.390993 Anserini +test443 Q0 8139214 17 17.205629 Anserini +test443 Q0 8139202 18 17.167736 Anserini +test443 Q0 300842 19 17.040569 Anserini +test443 Q0 10298212 20 16.922178 Anserini +test443 Q0 14900800 21 16.789389 Anserini +test443 Q0 3692559 22 16.776615 Anserini +test443 Q0 2761272 23 16.772350 Anserini +test443 Q0 1588125 24 16.718126 Anserini +test443 Q0 8139201 25 16.714096 Anserini +test443 Q0 15827788 26 16.673532 Anserini +test443 Q0 7019439 27 16.154747 Anserini +test443 Q0 5183735 28 15.939699 Anserini +test443 Q0 14968413 29 15.820965 Anserini +test443 Q0 5535882 30 15.801748 Anserini +test444 Q0 7060153 1 16.848770 Anserini +test444 Q0 1001446 2 16.801001 Anserini +test444 Q0 1001462 3 16.755198 Anserini +test444 Q0 9204269 4 16.727560 Anserini +test444 Q0 1001464 5 16.560947 Anserini +test444 Q0 19388390 6 16.404818 Anserini +test444 Q0 388551 7 16.317411 Anserini +test444 Q0 8074319 8 16.310566 Anserini +test444 Q0 9175478 9 16.282967 Anserini +test444 Q0 1001433 10 16.250237 Anserini +test444 Q0 1001466 11 16.162146 Anserini +test444 Q0 8803637 12 16.070604 Anserini +test444 Q0 9262521 13 16.066357 Anserini +test444 Q0 1001453 14 16.051033 Anserini +test444 Q0 8828329 15 16.025045 Anserini +test444 Q0 1001467 16 16.011971 Anserini +test444 Q0 8818807 17 15.736464 Anserini +test444 Q0 8783177 18 15.716803 Anserini +test444 Q0 11769931 19 15.598377 Anserini +test444 Q0 1002097 20 15.575742 Anserini +test444 Q0 1001432 21 15.568146 Anserini +test444 Q0 6775955 22 15.526646 Anserini +test444 Q0 7024656 23 15.468855 Anserini +test444 Q0 9302923 24 15.459135 Anserini +test444 Q0 9214206 25 15.451969 Anserini +test444 Q0 6775949 26 15.417507 Anserini +test444 Q0 1002088 27 15.409624 Anserini +test444 Q0 1001440 28 15.264146 Anserini +test444 Q0 3275498 29 15.262595 Anserini +test444 Q0 8074322 30 15.250029 Anserini +test445 Q0 20071647 1 11.301935 Anserini +test445 Q0 3135251 2 11.283170 Anserini +test445 Q0 11174687 3 11.093104 Anserini +test445 Q0 10560171 4 10.882257 Anserini +test445 Q0 12275318 5 10.852660 Anserini +test445 Q0 3792417 6 10.773907 Anserini +test445 Q0 16777204 7 10.706327 Anserini +test445 Q0 5646983 8 10.655773 Anserini +test445 Q0 7426482 9 10.509195 Anserini +test445 Q0 4187298 10 10.426986 Anserini +test445 Q0 5299199 11 10.335413 Anserini +test445 Q0 3746044 12 10.306784 Anserini +test445 Q0 9726712 13 10.300390 Anserini +test445 Q0 8805141 14 10.288242 Anserini +test445 Q0 7748371 15 10.287466 Anserini +test445 Q0 4297050 16 10.280554 Anserini +test445 Q0 1208700 17 10.279126 Anserini +test445 Q0 3509309 18 10.244925 Anserini +test445 Q0 6597350 19 10.181567 Anserini +test445 Q0 1208630 20 10.067553 Anserini +test445 Q0 4381224 21 10.063459 Anserini +test445 Q0 10230860 22 10.027777 Anserini +test445 Q0 18575019 23 10.005020 Anserini +test445 Q0 20874994 24 9.958856 Anserini +test445 Q0 14706789 25 9.956944 Anserini +test445 Q0 9801867 26 9.893703 Anserini +test445 Q0 6915921 27 9.887019 Anserini +test445 Q0 7426475 28 9.829319 Anserini +test445 Q0 16462023 29 9.803899 Anserini +test445 Q0 11174635 30 9.748619 Anserini +test446 Q0 15655231 1 10.439683 Anserini +test446 Q0 15727579 2 10.305720 Anserini +test446 Q0 15709098 3 10.236331 Anserini +test446 Q0 17113339 4 10.155845 Anserini +test446 Q0 15735298 5 10.150935 Anserini +test446 Q0 4957620 6 10.105941 Anserini +test446 Q0 16691324 7 10.100775 Anserini +test446 Q0 14180961 8 10.071356 Anserini +test446 Q0 6045890 9 10.049836 Anserini +test446 Q0 3329544 10 10.043287 Anserini +test446 Q0 16762595 11 9.951838 Anserini +test446 Q0 3836332 12 9.884151 Anserini +test446 Q0 10181359 13 9.678998 Anserini +test446 Q0 12437861 14 9.673238 Anserini +test446 Q0 15726938 15 9.521662 Anserini +test446 Q0 10641444 16 9.513148 Anserini +test446 Q0 2501885 17 9.446486 Anserini +test446 Q0 19049778 18 9.370733 Anserini +test446 Q0 5131251 19 9.364261 Anserini +test446 Q0 6965932 20 9.340755 Anserini +test446 Q0 3897990 21 9.331589 Anserini +test446 Q0 12809124 22 9.331589 Anserini +test446 Q0 16185934 23 9.314944 Anserini +test446 Q0 6578998 24 9.314944 Anserini +test446 Q0 2533691 25 9.312923 Anserini +test446 Q0 8224808 26 9.277710 Anserini +test446 Q0 20744341 27 9.237797 Anserini +test446 Q0 13133647 28 9.237797 Anserini +test446 Q0 20739650 29 9.237797 Anserini +test446 Q0 5065409 30 9.226257 Anserini +test447 Q0 19167394 1 14.473368 Anserini +test447 Q0 2794871 2 13.251868 Anserini +test447 Q0 13668355 3 12.824315 Anserini +test447 Q0 19167392 4 12.573041 Anserini +test447 Q0 19167391 5 12.324224 Anserini +test447 Q0 19167389 6 11.945306 Anserini +test447 Q0 19167403 7 11.821884 Anserini +test447 Q0 19167390 8 11.683747 Anserini +test447 Q0 19167401 9 11.679431 Anserini +test447 Q0 19167398 10 11.443124 Anserini +test447 Q0 13668347 11 11.443124 Anserini +test447 Q0 18389428 12 11.363503 Anserini +test447 Q0 13668360 13 11.130194 Anserini +test447 Q0 16624795 14 10.964810 Anserini +test447 Q0 13668349 15 10.964810 Anserini +test447 Q0 13668353 16 10.918357 Anserini +test447 Q0 19167397 17 10.895214 Anserini +test447 Q0 19167399 18 10.844831 Anserini +test447 Q0 19167396 19 10.794980 Anserini +test447 Q0 13668354 20 10.745138 Anserini +test447 Q0 13668352 21 10.621323 Anserini +test447 Q0 13668357 22 10.621323 Anserini +test447 Q0 19167405 23 10.586050 Anserini +test447 Q0 16624796 24 10.487619 Anserini +test447 Q0 2794878 25 10.337107 Anserini +test447 Q0 19167393 26 10.316905 Anserini +test447 Q0 19167395 27 10.279017 Anserini +test447 Q0 13668351 28 10.279017 Anserini +test447 Q0 9203313 29 10.103866 Anserini +test447 Q0 13668350 30 10.019707 Anserini +test448 Q0 11169963 1 18.766575 Anserini +test448 Q0 11169970 2 16.592493 Anserini +test448 Q0 8773984 3 16.395037 Anserini +test448 Q0 13537907 4 15.569416 Anserini +test448 Q0 11721911 5 14.933032 Anserini +test448 Q0 11721913 6 14.933032 Anserini +test448 Q0 5149056 7 14.468742 Anserini +test448 Q0 12512492 8 14.360871 Anserini +test448 Q0 1359093 9 13.998940 Anserini +test448 Q0 17441038 10 13.984601 Anserini +test448 Q0 13565979 11 13.968218 Anserini +test448 Q0 4976977 12 13.745924 Anserini +test448 Q0 5412469 13 13.488405 Anserini +test448 Q0 5610420 14 13.478552 Anserini +test448 Q0 6610383 15 13.442189 Anserini +test448 Q0 10839793 16 13.438460 Anserini +test448 Q0 10839791 17 13.438460 Anserini +test448 Q0 5002650 18 13.298131 Anserini +test448 Q0 1447888 19 13.264455 Anserini +test448 Q0 6610387 20 13.234740 Anserini +test448 Q0 1427185 21 13.203969 Anserini +test448 Q0 8964743 22 13.086489 Anserini +test448 Q0 19061047 23 13.070902 Anserini +test448 Q0 17897681 24 13.048321 Anserini +test448 Q0 11705974 25 12.909998 Anserini +test448 Q0 9034506 26 12.909015 Anserini +test448 Q0 11770265 27 12.906226 Anserini +test448 Q0 20926355 28 12.832073 Anserini +test448 Q0 11169969 29 12.820005 Anserini +test448 Q0 3524129 30 12.810402 Anserini +test449 Q0 17494152 1 9.847936 Anserini +test449 Q0 4258241 2 9.662811 Anserini +test449 Q0 17786524 3 9.619996 Anserini +test449 Q0 16560677 4 9.116899 Anserini +test449 Q0 8549362 5 9.086620 Anserini +test449 Q0 3120583 6 8.470376 Anserini +test449 Q0 12765037 7 8.410438 Anserini +test449 Q0 2882924 8 8.281870 Anserini +test449 Q0 9594251 9 8.264851 Anserini +test449 Q0 8074623 10 8.184845 Anserini +test449 Q0 16909837 11 8.170052 Anserini +test449 Q0 18108699 12 8.133730 Anserini +test449 Q0 13993233 13 8.055386 Anserini +test449 Q0 12087102 14 7.993589 Anserini +test449 Q0 8813855 15 7.992039 Anserini +test449 Q0 5346277 16 7.955737 Anserini +test449 Q0 9229810 17 7.948595 Anserini +test449 Q0 12551169 18 7.945696 Anserini +test449 Q0 18162121 19 7.945470 Anserini +test449 Q0 7904238 20 7.945470 Anserini +test449 Q0 15153856 21 7.925181 Anserini +test449 Q0 6527976 22 7.907701 Anserini +test449 Q0 16525982 23 7.896826 Anserini +test449 Q0 6114570 24 7.895086 Anserini +test449 Q0 15023621 25 7.893169 Anserini +test449 Q0 6368656 26 7.859967 Anserini +test449 Q0 4181139 27 7.859836 Anserini +test449 Q0 17990712 28 7.844194 Anserini +test449 Q0 20469454 29 7.809540 Anserini +test449 Q0 7208978 30 7.796952 Anserini +test45 Q0 13125381 1 17.173771 Anserini +test45 Q0 10322715 2 16.416279 Anserini +test45 Q0 17448025 3 16.321770 Anserini +test45 Q0 1602213 4 16.245991 Anserini +test45 Q0 1602206 5 16.136637 Anserini +test45 Q0 654227 6 15.851295 Anserini +test45 Q0 7325562 7 15.800650 Anserini +test45 Q0 10322712 8 15.745910 Anserini +test45 Q0 5582448 9 15.735394 Anserini +test45 Q0 7143913 10 15.716475 Anserini +test45 Q0 7143894 11 15.634608 Anserini +test45 Q0 4660061 12 15.624598 Anserini +test45 Q0 6641215 13 15.461099 Anserini +test45 Q0 720935 14 15.393961 Anserini +test45 Q0 13037350 15 15.379570 Anserini +test45 Q0 7143906 16 15.299999 Anserini +test45 Q0 9952858 17 15.231456 Anserini +test45 Q0 13037353 18 15.226980 Anserini +test45 Q0 1602262 19 15.175755 Anserini +test45 Q0 9251773 20 15.168486 Anserini +test45 Q0 17792966 21 15.164244 Anserini +test45 Q0 9251774 22 15.151574 Anserini +test45 Q0 5623901 23 15.109953 Anserini +test45 Q0 14279632 24 15.061810 Anserini +test45 Q0 2576152 25 15.061810 Anserini +test45 Q0 675234 26 15.054451 Anserini +test45 Q0 4626592 27 15.051615 Anserini +test45 Q0 4686442 28 15.029471 Anserini +test45 Q0 14105138 29 15.011505 Anserini +test45 Q0 284607 30 14.882847 Anserini +test450 Q0 1406425 1 16.288544 Anserini +test450 Q0 8242645 2 14.841037 Anserini +test450 Q0 8242646 3 14.750647 Anserini +test450 Q0 1406423 4 14.416657 Anserini +test450 Q0 1406395 5 14.089163 Anserini +test450 Q0 12183161 6 13.955426 Anserini +test450 Q0 12183159 7 13.846822 Anserini +test450 Q0 9421838 8 13.784420 Anserini +test450 Q0 14148291 9 13.472900 Anserini +test450 Q0 9421841 10 13.382167 Anserini +test450 Q0 1406419 11 13.308369 Anserini +test450 Q0 1406421 12 13.208846 Anserini +test450 Q0 5417682 13 13.145468 Anserini +test450 Q0 1406427 14 13.124572 Anserini +test450 Q0 14148287 15 12.977964 Anserini +test450 Q0 7020956 16 12.682427 Anserini +test450 Q0 7020958 17 12.575310 Anserini +test450 Q0 1406388 18 12.526474 Anserini +test450 Q0 8210758 19 12.523066 Anserini +test450 Q0 1406391 20 12.379959 Anserini +test450 Q0 9043709 21 12.270071 Anserini +test450 Q0 9421840 22 12.229216 Anserini +test450 Q0 9421839 23 12.166817 Anserini +test450 Q0 14305278 24 12.075470 Anserini +test450 Q0 1406393 25 11.742517 Anserini +test450 Q0 1406422 26 11.662035 Anserini +test450 Q0 1406407 27 11.635719 Anserini +test450 Q0 1406402 28 11.586210 Anserini +test450 Q0 6423306 29 11.576126 Anserini +test450 Q0 1406400 30 11.570608 Anserini +test451 Q0 349398 1 10.440435 Anserini +test451 Q0 3915960 2 10.341384 Anserini +test451 Q0 8716763 3 10.087568 Anserini +test451 Q0 1340393 4 10.031970 Anserini +test451 Q0 13359481 5 9.938559 Anserini +test451 Q0 15606153 6 9.829020 Anserini +test451 Q0 9872389 7 9.811590 Anserini +test451 Q0 19391416 8 9.757414 Anserini +test451 Q0 13693698 9 9.700312 Anserini +test451 Q0 14291733 10 9.489983 Anserini +test451 Q0 17976650 11 9.478381 Anserini +test451 Q0 10962872 12 9.473391 Anserini +test451 Q0 7541344 13 9.417863 Anserini +test451 Q0 13671110 14 9.408637 Anserini +test451 Q0 10251997 15 9.397334 Anserini +test451 Q0 1565850 16 9.380100 Anserini +test451 Q0 16783860 17 9.380100 Anserini +test451 Q0 6752321 18 9.299582 Anserini +test451 Q0 7021966 19 9.294715 Anserini +test451 Q0 6855058 20 9.278562 Anserini +test451 Q0 6816819 21 9.262437 Anserini +test451 Q0 14241352 22 9.237103 Anserini +test451 Q0 5610806 23 9.219461 Anserini +test451 Q0 576293 24 9.206127 Anserini +test451 Q0 15422734 25 9.182611 Anserini +test451 Q0 15361907 26 9.182611 Anserini +test451 Q0 10189369 27 9.135583 Anserini +test451 Q0 1467403 28 9.105494 Anserini +test451 Q0 8621937 29 9.094748 Anserini +test451 Q0 19948965 30 9.085648 Anserini +test452 Q0 784087 1 12.758431 Anserini +test452 Q0 16554333 2 12.285238 Anserini +test452 Q0 9923027 3 12.262059 Anserini +test452 Q0 9923016 4 12.076834 Anserini +test452 Q0 6293839 5 11.767283 Anserini +test452 Q0 9923017 6 11.616673 Anserini +test452 Q0 8701792 7 11.562372 Anserini +test452 Q0 9771910 8 11.344753 Anserini +test452 Q0 146656 9 11.277520 Anserini +test452 Q0 5332552 10 11.250793 Anserini +test452 Q0 13374723 11 11.156851 Anserini +test452 Q0 97619 12 11.109706 Anserini +test452 Q0 8843688 13 11.095007 Anserini +test452 Q0 16395105 14 11.039971 Anserini +test452 Q0 9923026 15 10.961860 Anserini +test452 Q0 7617413 16 10.897166 Anserini +test452 Q0 16395103 17 10.896142 Anserini +test452 Q0 16395119 18 10.893888 Anserini +test452 Q0 18471584 19 10.876673 Anserini +test452 Q0 8769371 20 10.814913 Anserini +test452 Q0 13194848 21 10.705188 Anserini +test452 Q0 6011271 22 10.653501 Anserini +test452 Q0 16959102 23 10.653501 Anserini +test452 Q0 14833483 24 10.651305 Anserini +test452 Q0 9545335 25 10.636513 Anserini +test452 Q0 6395900 26 10.635773 Anserini +test452 Q0 7769301 27 10.570926 Anserini +test452 Q0 7359663 28 10.539627 Anserini +test452 Q0 479593 29 10.393624 Anserini +test452 Q0 16540133 30 10.388361 Anserini +test453 Q0 4705472 1 12.568537 Anserini +test453 Q0 4705467 2 12.050961 Anserini +test453 Q0 16129240 3 11.384617 Anserini +test453 Q0 5201649 4 11.258910 Anserini +test453 Q0 15922509 5 10.915342 Anserini +test453 Q0 20952581 6 10.855769 Anserini +test453 Q0 4324209 7 10.799771 Anserini +test453 Q0 5061306 8 10.757519 Anserini +test453 Q0 20220287 9 10.667430 Anserini +test453 Q0 20220288 10 10.667430 Anserini +test453 Q0 18248689 11 10.534305 Anserini +test453 Q0 10796045 12 10.533934 Anserini +test453 Q0 11234366 13 10.529512 Anserini +test453 Q0 15667601 14 10.502090 Anserini +test453 Q0 539160 15 10.488474 Anserini +test453 Q0 7851772 16 10.488474 Anserini +test453 Q0 18911005 17 10.436875 Anserini +test453 Q0 20564875 18 10.422949 Anserini +test453 Q0 14947541 19 10.398308 Anserini +test453 Q0 4600088 20 10.376716 Anserini +test453 Q0 7867386 21 10.343871 Anserini +test453 Q0 12752208 22 10.322954 Anserini +test453 Q0 15667602 23 10.322162 Anserini +test453 Q0 13808836 24 10.303322 Anserini +test453 Q0 11636498 25 10.235140 Anserini +test453 Q0 20773472 26 10.217632 Anserini +test453 Q0 9971820 27 10.210737 Anserini +test453 Q0 6799915 28 10.193570 Anserini +test453 Q0 4674697 29 10.174837 Anserini +test453 Q0 16129241 30 10.172843 Anserini +test454 Q0 18818307 1 11.290386 Anserini +test454 Q0 20134564 2 11.204685 Anserini +test454 Q0 17870901 3 11.200891 Anserini +test454 Q0 18818306 4 11.127121 Anserini +test454 Q0 14346563 5 11.094079 Anserini +test454 Q0 12093790 6 10.960849 Anserini +test454 Q0 12535456 7 10.959991 Anserini +test454 Q0 10262564 8 10.945923 Anserini +test454 Q0 13033117 9 10.899492 Anserini +test454 Q0 16903591 10 10.807331 Anserini +test454 Q0 7704338 11 10.767532 Anserini +test454 Q0 11151532 12 10.707896 Anserini +test454 Q0 11151533 13 10.707896 Anserini +test454 Q0 5130480 14 10.695661 Anserini +test454 Q0 20713481 15 10.677973 Anserini +test454 Q0 7704354 16 10.669609 Anserini +test454 Q0 17587794 17 10.669609 Anserini +test454 Q0 17587796 18 10.669609 Anserini +test454 Q0 12645287 19 10.635952 Anserini +test454 Q0 13319566 20 10.612007 Anserini +test454 Q0 9824883 21 10.577483 Anserini +test454 Q0 6152375 22 10.549508 Anserini +test454 Q0 18282733 23 10.521125 Anserini +test454 Q0 4256332 24 10.429665 Anserini +test454 Q0 10146959 25 10.419004 Anserini +test454 Q0 17082601 26 10.381685 Anserini +test454 Q0 20713482 27 10.365726 Anserini +test454 Q0 5113224 28 10.343399 Anserini +test454 Q0 12527743 29 10.329113 Anserini +test454 Q0 12527745 30 10.329113 Anserini +test455 Q0 2444810 1 15.631146 Anserini +test455 Q0 7749856 2 14.375741 Anserini +test455 Q0 16232719 3 14.361405 Anserini +test455 Q0 151258 4 14.332338 Anserini +test455 Q0 7773337 5 14.259617 Anserini +test455 Q0 4385152 6 14.149903 Anserini +test455 Q0 566529 7 14.122472 Anserini +test455 Q0 566518 8 14.092553 Anserini +test455 Q0 11126957 9 14.005783 Anserini +test455 Q0 8150163 10 13.936382 Anserini +test455 Q0 3788137 11 13.879452 Anserini +test455 Q0 19170113 12 13.666542 Anserini +test455 Q0 7330135 13 13.534268 Anserini +test455 Q0 4221071 14 13.491979 Anserini +test455 Q0 566528 15 13.463953 Anserini +test455 Q0 15010833 16 13.461852 Anserini +test455 Q0 16448841 17 13.447204 Anserini +test455 Q0 4536675 18 13.390059 Anserini +test455 Q0 6006707 19 13.359463 Anserini +test455 Q0 17581261 20 13.221203 Anserini +test455 Q0 3161359 21 13.189282 Anserini +test455 Q0 849955 22 13.136121 Anserini +test455 Q0 19815504 23 13.130116 Anserini +test455 Q0 4236319 24 13.072754 Anserini +test455 Q0 4299424 25 13.026108 Anserini +test455 Q0 11228931 26 12.979629 Anserini +test455 Q0 19799837 27 12.972213 Anserini +test455 Q0 11126956 28 12.964826 Anserini +test455 Q0 7118260 29 12.900930 Anserini +test455 Q0 9362324 30 12.890841 Anserini +test456 Q0 9677826 1 18.209141 Anserini +test456 Q0 10313741 2 17.633635 Anserini +test456 Q0 9677827 3 17.527946 Anserini +test456 Q0 10313738 4 17.194159 Anserini +test456 Q0 9677828 5 17.069118 Anserini +test456 Q0 9677845 6 17.016685 Anserini +test456 Q0 10313744 7 16.836088 Anserini +test456 Q0 18894346 8 16.832819 Anserini +test456 Q0 10313734 9 16.695751 Anserini +test456 Q0 9492502 10 16.687561 Anserini +test456 Q0 18903604 11 16.656635 Anserini +test456 Q0 9492508 12 16.572239 Anserini +test456 Q0 10313773 13 16.540359 Anserini +test456 Q0 17969924 14 16.520487 Anserini +test456 Q0 9677829 15 16.496052 Anserini +test456 Q0 12774045 16 16.429270 Anserini +test456 Q0 4019120 17 16.363049 Anserini +test456 Q0 10313774 18 16.155409 Anserini +test456 Q0 18083080 19 16.136732 Anserini +test456 Q0 10313736 20 16.119120 Anserini +test456 Q0 4019130 21 16.100885 Anserini +test456 Q0 18083086 22 16.066568 Anserini +test456 Q0 10313772 23 16.052860 Anserini +test456 Q0 12449358 24 16.032837 Anserini +test456 Q0 9677844 25 15.937119 Anserini +test456 Q0 20769332 26 15.875941 Anserini +test456 Q0 6420721 27 15.848555 Anserini +test456 Q0 18139855 28 15.840820 Anserini +test456 Q0 9677846 29 15.824693 Anserini +test456 Q0 10313743 30 15.786379 Anserini +test457 Q0 17135499 1 15.856420 Anserini +test457 Q0 16957132 2 15.687652 Anserini +test457 Q0 17135508 3 15.442243 Anserini +test457 Q0 16840688 4 15.396245 Anserini +test457 Q0 17135498 5 15.355430 Anserini +test457 Q0 17135519 6 14.843050 Anserini +test457 Q0 16840684 7 14.484322 Anserini +test457 Q0 17135517 8 14.241566 Anserini +test457 Q0 17135510 9 14.043399 Anserini +test457 Q0 16840701 10 13.947602 Anserini +test457 Q0 13583700 11 13.813457 Anserini +test457 Q0 13583683 12 13.721872 Anserini +test457 Q0 15155399 13 13.704589 Anserini +test457 Q0 13700845 14 13.606424 Anserini +test457 Q0 14925237 15 13.606424 Anserini +test457 Q0 17692639 16 13.560311 Anserini +test457 Q0 17135515 17 13.355695 Anserini +test457 Q0 16840687 18 13.340517 Anserini +test457 Q0 16957127 19 13.340517 Anserini +test457 Q0 16840685 20 13.220559 Anserini +test457 Q0 15155438 21 13.109898 Anserini +test457 Q0 17773563 22 13.093500 Anserini +test457 Q0 15620985 23 13.093500 Anserini +test457 Q0 17135516 24 12.775455 Anserini +test457 Q0 15155398 25 12.762689 Anserini +test457 Q0 17307090 26 12.709675 Anserini +test457 Q0 16840698 27 12.697829 Anserini +test457 Q0 13583694 28 12.623424 Anserini +test457 Q0 4336906 29 12.549969 Anserini +test457 Q0 13583674 30 12.549969 Anserini +test458 Q0 10144624 1 16.838572 Anserini +test458 Q0 770776 2 16.615656 Anserini +test458 Q0 16742763 3 16.487009 Anserini +test458 Q0 10678908 4 16.372128 Anserini +test458 Q0 11819242 5 16.061388 Anserini +test458 Q0 9387163 6 15.956847 Anserini +test458 Q0 3445207 7 15.948046 Anserini +test458 Q0 16950163 8 15.566100 Anserini +test458 Q0 12171460 9 15.538257 Anserini +test458 Q0 19448746 10 15.339180 Anserini +test458 Q0 18330910 11 15.279151 Anserini +test458 Q0 9724899 12 15.237724 Anserini +test458 Q0 15638284 13 15.138448 Anserini +test458 Q0 15466014 14 14.854397 Anserini +test458 Q0 4891749 15 14.710767 Anserini +test458 Q0 4938698 16 14.709575 Anserini +test458 Q0 18255835 17 14.691981 Anserini +test458 Q0 11052607 18 14.674986 Anserini +test458 Q0 17866454 19 14.630788 Anserini +test458 Q0 3900078 20 14.612825 Anserini +test458 Q0 8403377 21 14.587290 Anserini +test458 Q0 10711216 22 14.514548 Anserini +test458 Q0 8027897 23 14.499276 Anserini +test458 Q0 1601125 24 14.457332 Anserini +test458 Q0 8165011 25 14.358250 Anserini +test458 Q0 9498983 26 14.303660 Anserini +test458 Q0 10328319 27 14.288951 Anserini +test458 Q0 808662 28 14.284937 Anserini +test458 Q0 239410 29 14.283291 Anserini +test458 Q0 2870764 30 14.257317 Anserini +test459 Q0 19415162 1 15.012183 Anserini +test459 Q0 19415161 2 14.962960 Anserini +test459 Q0 4468283 3 14.397787 Anserini +test459 Q0 19415166 4 13.635009 Anserini +test459 Q0 1774451 5 13.521907 Anserini +test459 Q0 8057271 6 13.386121 Anserini +test459 Q0 1947694 7 13.377620 Anserini +test459 Q0 1774457 8 13.373828 Anserini +test459 Q0 4466393 9 13.316221 Anserini +test459 Q0 4466390 10 13.039887 Anserini +test459 Q0 642891 11 12.787249 Anserini +test459 Q0 7436948 12 12.648433 Anserini +test459 Q0 4377270 13 12.633337 Anserini +test459 Q0 565020 14 12.557266 Anserini +test459 Q0 19942256 15 12.534539 Anserini +test459 Q0 298187 16 12.534491 Anserini +test459 Q0 4075289 17 12.498818 Anserini +test459 Q0 6017873 18 12.474178 Anserini +test459 Q0 3491375 19 12.464909 Anserini +test459 Q0 4466402 20 12.429966 Anserini +test459 Q0 8187270 21 12.408917 Anserini +test459 Q0 2626439 22 12.357227 Anserini +test459 Q0 1742218 23 12.328522 Anserini +test459 Q0 8057268 24 12.264137 Anserini +test459 Q0 1742217 25 12.204816 Anserini +test459 Q0 7643062 26 12.192697 Anserini +test459 Q0 12935668 27 12.144724 Anserini +test459 Q0 19968003 28 12.144724 Anserini +test459 Q0 20439358 29 12.123864 Anserini +test459 Q0 11763808 30 12.122576 Anserini +test46 Q0 2520233 1 15.263119 Anserini +test46 Q0 2542721 2 15.142164 Anserini +test46 Q0 4921446 3 15.106497 Anserini +test46 Q0 2520245 4 14.518303 Anserini +test46 Q0 3027565 5 14.399151 Anserini +test46 Q0 4921451 6 14.180238 Anserini +test46 Q0 4921443 7 14.180238 Anserini +test46 Q0 19491600 8 14.134645 Anserini +test46 Q0 16147974 9 13.798212 Anserini +test46 Q0 5917149 10 13.609470 Anserini +test46 Q0 17400907 11 13.573670 Anserini +test46 Q0 2507690 12 13.413122 Anserini +test46 Q0 2520234 13 13.391666 Anserini +test46 Q0 12720980 14 13.380415 Anserini +test46 Q0 2520237 15 13.255884 Anserini +test46 Q0 2520236 16 13.144567 Anserini +test46 Q0 5917147 17 13.102073 Anserini +test46 Q0 2520235 18 13.056317 Anserini +test46 Q0 2520244 19 12.911814 Anserini +test46 Q0 12720473 20 12.877308 Anserini +test46 Q0 16147744 21 12.875040 Anserini +test46 Q0 2520243 22 12.805411 Anserini +test46 Q0 16031377 23 12.751827 Anserini +test46 Q0 12469325 24 12.684463 Anserini +test46 Q0 2337469 25 12.672899 Anserini +test46 Q0 2520238 26 12.650276 Anserini +test46 Q0 5707423 27 12.606627 Anserini +test46 Q0 5500060 28 12.555707 Anserini +test46 Q0 11150903 29 12.526077 Anserini +test46 Q0 7050514 30 12.454516 Anserini +test460 Q0 20402203 1 13.270915 Anserini +test460 Q0 17491328 2 13.264972 Anserini +test460 Q0 19910020 3 13.261433 Anserini +test460 Q0 11946490 4 13.202111 Anserini +test460 Q0 8933794 5 13.139692 Anserini +test460 Q0 20402207 6 13.116864 Anserini +test460 Q0 2632556 7 13.116652 Anserini +test460 Q0 8173766 8 13.089008 Anserini +test460 Q0 18027620 9 13.057921 Anserini +test460 Q0 8554971 10 12.984674 Anserini +test460 Q0 8498757 11 12.915835 Anserini +test460 Q0 20571326 12 12.827557 Anserini +test460 Q0 465181 13 12.819313 Anserini +test460 Q0 2632540 14 12.779763 Anserini +test460 Q0 8173774 15 12.698991 Anserini +test460 Q0 18258434 16 12.670510 Anserini +test460 Q0 20430762 17 12.565720 Anserini +test460 Q0 2632498 18 12.532730 Anserini +test460 Q0 2329743 19 12.467606 Anserini +test460 Q0 18027630 20 12.459993 Anserini +test460 Q0 13314939 21 12.459748 Anserini +test460 Q0 15093392 22 12.307066 Anserini +test460 Q0 11684452 23 12.299529 Anserini +test460 Q0 5219481 24 12.169934 Anserini +test460 Q0 399105 25 12.144151 Anserini +test460 Q0 2632573 26 12.143519 Anserini +test460 Q0 10009456 27 12.012662 Anserini +test460 Q0 2623345 28 11.969111 Anserini +test460 Q0 6621698 29 11.942451 Anserini +test460 Q0 16470027 30 11.928908 Anserini +test461 Q0 9296822 1 14.963490 Anserini +test461 Q0 4881486 2 14.317048 Anserini +test461 Q0 12984783 3 14.046129 Anserini +test461 Q0 8367944 4 13.020991 Anserini +test461 Q0 8367941 5 12.693896 Anserini +test461 Q0 10322796 6 12.149377 Anserini +test461 Q0 15983365 7 11.890821 Anserini +test461 Q0 6182441 8 11.724655 Anserini +test461 Q0 4053468 9 11.670424 Anserini +test461 Q0 10459752 10 11.603256 Anserini +test461 Q0 7463834 11 11.312977 Anserini +test461 Q0 7463823 12 11.210976 Anserini +test461 Q0 20259478 13 11.210976 Anserini +test461 Q0 17625591 14 11.208802 Anserini +test461 Q0 12593510 15 11.029776 Anserini +test461 Q0 1367752 16 10.930531 Anserini +test461 Q0 5656899 17 10.904447 Anserini +test461 Q0 11677236 18 10.855133 Anserini +test461 Q0 10558727 19 10.624624 Anserini +test461 Q0 7162674 20 10.609036 Anserini +test461 Q0 3415469 21 10.568233 Anserini +test461 Q0 11761617 22 10.568233 Anserini +test461 Q0 2518834 23 10.465944 Anserini +test461 Q0 8367945 24 10.435880 Anserini +test461 Q0 18107426 25 10.433734 Anserini +test461 Q0 16445024 26 10.395878 Anserini +test461 Q0 9086567 27 10.338541 Anserini +test461 Q0 5910799 28 10.306830 Anserini +test461 Q0 5656889 29 10.281695 Anserini +test461 Q0 13921570 30 10.268117 Anserini +test462 Q0 8740667 1 13.430012 Anserini +test462 Q0 9740165 2 12.794325 Anserini +test462 Q0 9959061 3 12.256531 Anserini +test462 Q0 1141003 4 12.252839 Anserini +test462 Q0 4828588 5 12.109891 Anserini +test462 Q0 1549724 6 11.957450 Anserini +test462 Q0 17931466 7 11.818931 Anserini +test462 Q0 12391212 8 11.767416 Anserini +test462 Q0 1708936 9 11.642726 Anserini +test462 Q0 507328 10 11.570538 Anserini +test462 Q0 14881716 11 11.423966 Anserini +test462 Q0 4746512 12 11.413180 Anserini +test462 Q0 16536746 13 11.383681 Anserini +test462 Q0 16536770 14 11.383681 Anserini +test462 Q0 7921630 15 11.366478 Anserini +test462 Q0 3970225 16 11.315878 Anserini +test462 Q0 15161980 17 11.271519 Anserini +test462 Q0 507398 18 11.269395 Anserini +test462 Q0 284982 19 11.257125 Anserini +test462 Q0 17706568 20 11.256248 Anserini +test462 Q0 12439268 21 11.254646 Anserini +test462 Q0 13292499 22 11.199113 Anserini +test462 Q0 17971730 23 11.164051 Anserini +test462 Q0 10479412 24 10.983057 Anserini +test462 Q0 8664725 25 10.957208 Anserini +test462 Q0 11624643 26 10.940204 Anserini +test462 Q0 1054340 27 10.932186 Anserini +test462 Q0 15048234 28 10.894032 Anserini +test462 Q0 507329 29 10.891003 Anserini +test462 Q0 6944327 30 10.887316 Anserini +test463 Q0 6195161 1 16.046412 Anserini +test463 Q0 6195168 2 16.011553 Anserini +test463 Q0 13366349 3 15.995036 Anserini +test463 Q0 13366345 4 15.608671 Anserini +test463 Q0 13294080 5 15.074800 Anserini +test463 Q0 4607422 6 14.794086 Anserini +test463 Q0 6195145 7 14.652747 Anserini +test463 Q0 13294099 8 14.555781 Anserini +test463 Q0 13366348 9 14.328794 Anserini +test463 Q0 13366355 10 14.097383 Anserini +test463 Q0 13366347 11 13.909914 Anserini +test463 Q0 13366324 12 13.852955 Anserini +test463 Q0 13366339 13 13.817770 Anserini +test463 Q0 13444450 14 13.555781 Anserini +test463 Q0 4607397 15 13.520581 Anserini +test463 Q0 13512303 16 13.495396 Anserini +test463 Q0 4607420 17 13.482358 Anserini +test463 Q0 13294073 18 13.482358 Anserini +test463 Q0 13366333 19 13.467849 Anserini +test463 Q0 13366346 20 13.295881 Anserini +test463 Q0 13366336 21 13.286969 Anserini +test463 Q0 13512330 22 13.279784 Anserini +test463 Q0 13366340 23 13.204181 Anserini +test463 Q0 6195158 24 13.112607 Anserini +test463 Q0 329589 25 13.097087 Anserini +test463 Q0 13366331 26 13.080186 Anserini +test463 Q0 13366354 27 13.080186 Anserini +test463 Q0 6195146 28 13.017601 Anserini +test463 Q0 6195148 29 12.985481 Anserini +test463 Q0 6219521 30 12.953794 Anserini +test464 Q0 4292330 1 25.596439 Anserini +test464 Q0 2203022 2 23.912239 Anserini +test464 Q0 2203023 3 22.106121 Anserini +test464 Q0 16654743 4 21.283682 Anserini +test464 Q0 2203026 5 19.991377 Anserini +test464 Q0 872316 6 19.826332 Anserini +test464 Q0 16654744 7 19.342121 Anserini +test464 Q0 4379778 8 19.129747 Anserini +test464 Q0 16286141 9 19.009310 Anserini +test464 Q0 5686203 10 18.973246 Anserini +test464 Q0 2203024 11 18.680733 Anserini +test464 Q0 4632548 12 18.527487 Anserini +test464 Q0 4292331 13 18.288162 Anserini +test464 Q0 359804 14 18.115511 Anserini +test464 Q0 2203027 15 18.096510 Anserini +test464 Q0 10681997 16 18.084917 Anserini +test464 Q0 7133589 17 17.936012 Anserini +test464 Q0 19480464 18 17.856472 Anserini +test464 Q0 18075623 19 17.840336 Anserini +test464 Q0 19407719 20 17.815226 Anserini +test464 Q0 10681995 21 17.712940 Anserini +test464 Q0 2203035 22 17.568163 Anserini +test464 Q0 7591951 23 17.529163 Anserini +test464 Q0 6348475 24 17.522430 Anserini +test464 Q0 16654746 25 17.376326 Anserini +test464 Q0 2203033 26 17.336309 Anserini +test464 Q0 11454285 27 17.208916 Anserini +test464 Q0 1814980 28 17.205919 Anserini +test464 Q0 20566024 29 17.118490 Anserini +test464 Q0 359819 30 17.115620 Anserini +test465 Q0 7725848 1 11.357193 Anserini +test465 Q0 5391000 2 10.932753 Anserini +test465 Q0 4089057 3 10.626252 Anserini +test465 Q0 1952829 4 10.493504 Anserini +test465 Q0 353427 5 10.484046 Anserini +test465 Q0 9257771 6 10.393603 Anserini +test465 Q0 560059 7 10.345157 Anserini +test465 Q0 6048604 8 10.321272 Anserini +test465 Q0 353450 9 10.261895 Anserini +test465 Q0 19555619 10 10.209268 Anserini +test465 Q0 353337 11 10.204134 Anserini +test465 Q0 19555579 12 10.143237 Anserini +test465 Q0 15733548 13 10.138877 Anserini +test465 Q0 15733555 14 10.074652 Anserini +test465 Q0 10761988 15 10.030147 Anserini +test465 Q0 9040408 16 9.909651 Anserini +test465 Q0 4956941 17 9.886180 Anserini +test465 Q0 4838606 18 9.753603 Anserini +test465 Q0 4089064 19 9.723392 Anserini +test465 Q0 9040414 20 9.716676 Anserini +test465 Q0 14846132 21 9.687641 Anserini +test465 Q0 16332544 22 9.631857 Anserini +test465 Q0 353431 23 9.557966 Anserini +test465 Q0 560058 24 9.557966 Anserini +test465 Q0 6830442 25 9.480021 Anserini +test465 Q0 6830440 26 9.480021 Anserini +test465 Q0 5369252 27 9.400467 Anserini +test465 Q0 6048608 28 9.351921 Anserini +test465 Q0 3414497 29 9.273523 Anserini +test465 Q0 1540753 30 9.247551 Anserini +test466 Q0 13476900 1 11.778458 Anserini +test466 Q0 20085143 2 11.514392 Anserini +test466 Q0 9013382 3 11.483201 Anserini +test466 Q0 12344501 4 11.443723 Anserini +test466 Q0 4577456 5 11.317102 Anserini +test466 Q0 279193 6 11.170849 Anserini +test466 Q0 11129449 7 11.062339 Anserini +test466 Q0 18462188 8 10.874388 Anserini +test466 Q0 2581282 9 10.851686 Anserini +test466 Q0 14429552 10 10.832030 Anserini +test466 Q0 17388956 11 10.787579 Anserini +test466 Q0 12187385 12 10.768291 Anserini +test466 Q0 17388955 13 10.727872 Anserini +test466 Q0 526102 14 10.712463 Anserini +test466 Q0 9171115 15 10.677313 Anserini +test466 Q0 526097 16 10.654380 Anserini +test466 Q0 5570952 17 10.641911 Anserini +test466 Q0 9940973 18 10.566634 Anserini +test466 Q0 12545373 19 10.523864 Anserini +test466 Q0 18711310 20 10.520208 Anserini +test466 Q0 2528368 21 10.512028 Anserini +test466 Q0 18123224 22 10.459156 Anserini +test466 Q0 8998219 23 10.456027 Anserini +test466 Q0 1817868 24 10.435632 Anserini +test466 Q0 20139324 25 10.415174 Anserini +test466 Q0 3426191 26 10.411900 Anserini +test466 Q0 20829620 27 10.384344 Anserini +test466 Q0 9928992 28 10.369641 Anserini +test466 Q0 7439715 29 10.355801 Anserini +test466 Q0 10190503 30 10.337544 Anserini +test467 Q0 21002673 1 12.289182 Anserini +test467 Q0 14329309 2 12.187335 Anserini +test467 Q0 673598 3 12.049753 Anserini +test467 Q0 10068393 4 11.455458 Anserini +test467 Q0 19882432 5 11.353088 Anserini +test467 Q0 8852841 6 11.237650 Anserini +test467 Q0 9555093 7 11.158358 Anserini +test467 Q0 19877165 8 11.157694 Anserini +test467 Q0 10068401 9 11.156546 Anserini +test467 Q0 18841715 10 10.671728 Anserini +test467 Q0 1530151 11 10.664795 Anserini +test467 Q0 18892927 12 10.652901 Anserini +test467 Q0 15398459 13 10.596751 Anserini +test467 Q0 523913 14 10.528332 Anserini +test467 Q0 19792366 15 10.419239 Anserini +test467 Q0 18841714 16 10.406459 Anserini +test467 Q0 6802169 17 10.384928 Anserini +test467 Q0 17749843 18 10.369455 Anserini +test467 Q0 17724417 19 10.361934 Anserini +test467 Q0 16731069 20 10.334662 Anserini +test467 Q0 7494171 21 10.298832 Anserini +test467 Q0 9879128 22 10.279599 Anserini +test467 Q0 13197354 23 10.219994 Anserini +test467 Q0 9617790 24 10.200644 Anserini +test467 Q0 19877173 25 10.145078 Anserini +test467 Q0 4941177 26 10.137050 Anserini +test467 Q0 15686286 27 10.125606 Anserini +test467 Q0 20060234 28 10.064479 Anserini +test467 Q0 9540266 29 10.063599 Anserini +test467 Q0 13363565 30 10.061597 Anserini +test468 Q0 12334087 1 24.979090 Anserini +test468 Q0 10630178 2 20.671505 Anserini +test468 Q0 793114 3 20.339741 Anserini +test468 Q0 6286093 4 19.599575 Anserini +test468 Q0 6286100 5 19.449846 Anserini +test468 Q0 8401826 6 19.360462 Anserini +test468 Q0 16727598 7 18.899134 Anserini +test468 Q0 793093 8 18.884974 Anserini +test468 Q0 17366093 9 18.798670 Anserini +test468 Q0 793094 10 18.689339 Anserini +test468 Q0 8401830 11 18.162106 Anserini +test468 Q0 6691455 12 18.065952 Anserini +test468 Q0 8401834 13 17.996876 Anserini +test468 Q0 8401825 14 17.915735 Anserini +test468 Q0 19562556 15 17.655888 Anserini +test468 Q0 12700276 16 17.606630 Anserini +test468 Q0 8401835 17 17.415993 Anserini +test468 Q0 6355613 18 17.265772 Anserini +test468 Q0 720679 19 17.254463 Anserini +test468 Q0 13213336 20 16.990278 Anserini +test468 Q0 793091 21 16.935583 Anserini +test468 Q0 16727602 22 16.796904 Anserini +test468 Q0 10630177 23 16.705807 Anserini +test468 Q0 2416372 24 16.601585 Anserini +test468 Q0 793109 25 16.569096 Anserini +test468 Q0 19290006 26 16.514959 Anserini +test468 Q0 793086 27 16.259071 Anserini +test468 Q0 19562564 28 16.164158 Anserini +test468 Q0 16727597 29 16.164158 Anserini +test468 Q0 15890033 30 16.109045 Anserini +test469 Q0 12765914 1 13.874367 Anserini +test469 Q0 20560110 2 13.850766 Anserini +test469 Q0 1378931 3 13.768442 Anserini +test469 Q0 20560102 4 13.766406 Anserini +test469 Q0 727246 5 13.430529 Anserini +test469 Q0 5830899 6 13.329470 Anserini +test469 Q0 1378957 7 13.008485 Anserini +test469 Q0 9385151 8 12.935165 Anserini +test469 Q0 727218 9 12.842060 Anserini +test469 Q0 627457 10 12.832876 Anserini +test469 Q0 727236 11 12.692919 Anserini +test469 Q0 6036000 12 12.625535 Anserini +test469 Q0 10880746 13 12.543427 Anserini +test469 Q0 1995571 14 12.543378 Anserini +test469 Q0 7193219 15 12.523897 Anserini +test469 Q0 1378960 16 12.449985 Anserini +test469 Q0 9478040 17 12.380052 Anserini +test469 Q0 483954 18 12.361445 Anserini +test469 Q0 10880741 19 12.248251 Anserini +test469 Q0 5830895 20 12.228623 Anserini +test469 Q0 627456 21 12.212915 Anserini +test469 Q0 4489737 22 12.190384 Anserini +test469 Q0 773515 23 12.167087 Anserini +test469 Q0 15823345 24 12.135116 Anserini +test469 Q0 17327085 25 12.133360 Anserini +test469 Q0 112609 26 12.133360 Anserini +test469 Q0 727220 27 12.132505 Anserini +test469 Q0 1368032 28 12.092539 Anserini +test469 Q0 5830896 29 12.074512 Anserini +test469 Q0 8111089 30 12.044374 Anserini +test47 Q0 1903429 1 9.638714 Anserini +test47 Q0 4000063 2 9.476006 Anserini +test47 Q0 17790651 3 9.425495 Anserini +test47 Q0 3630615 4 9.290551 Anserini +test47 Q0 3551713 5 9.248049 Anserini +test47 Q0 12255596 6 9.035118 Anserini +test47 Q0 11079730 7 9.022487 Anserini +test47 Q0 8726482 8 8.979436 Anserini +test47 Q0 15429932 9 8.974483 Anserini +test47 Q0 19588237 10 8.934105 Anserini +test47 Q0 19588238 11 8.934105 Anserini +test47 Q0 20262271 12 8.926165 Anserini +test47 Q0 8609351 13 8.891892 Anserini +test47 Q0 3456879 14 8.821862 Anserini +test47 Q0 16205024 15 8.764346 Anserini +test47 Q0 835468 16 8.750282 Anserini +test47 Q0 3551703 17 8.727407 Anserini +test47 Q0 5079241 18 8.702333 Anserini +test47 Q0 12688646 19 8.699844 Anserini +test47 Q0 8869381 20 8.646901 Anserini +test47 Q0 15306047 21 8.623219 Anserini +test47 Q0 8726503 22 8.616014 Anserini +test47 Q0 15429929 23 8.600283 Anserini +test47 Q0 3457034 24 8.574193 Anserini +test47 Q0 63434 25 8.566436 Anserini +test47 Q0 12231201 26 8.557795 Anserini +test47 Q0 12231202 27 8.557795 Anserini +test47 Q0 18195999 28 8.557487 Anserini +test47 Q0 18398301 29 8.539650 Anserini +test47 Q0 15817539 30 8.518844 Anserini +test470 Q0 19798478 1 26.066099 Anserini +test470 Q0 19798471 2 22.205471 Anserini +test470 Q0 19798479 3 17.490009 Anserini +test470 Q0 9408948 4 16.539402 Anserini +test470 Q0 16688332 5 15.823069 Anserini +test470 Q0 901887 6 15.804409 Anserini +test470 Q0 9408953 7 15.451711 Anserini +test470 Q0 901910 8 14.981113 Anserini +test470 Q0 18137441 9 14.509371 Anserini +test470 Q0 18328829 10 14.019491 Anserini +test470 Q0 15232200 11 13.676420 Anserini +test470 Q0 19798472 12 13.178087 Anserini +test470 Q0 901886 13 13.075067 Anserini +test470 Q0 18137510 14 12.887284 Anserini +test470 Q0 901876 15 12.671877 Anserini +test470 Q0 9121838 16 12.594318 Anserini +test470 Q0 3815931 17 12.561679 Anserini +test470 Q0 612635 18 12.543767 Anserini +test470 Q0 9121835 19 12.487904 Anserini +test470 Q0 828780 20 12.336755 Anserini +test470 Q0 8031807 21 12.302347 Anserini +test470 Q0 1675655 22 12.281190 Anserini +test470 Q0 17174806 23 12.270045 Anserini +test470 Q0 3181283 24 12.189557 Anserini +test470 Q0 7468417 25 12.181404 Anserini +test470 Q0 5014754 26 12.100412 Anserini +test470 Q0 18141118 27 12.068413 Anserini +test470 Q0 14324713 28 12.059871 Anserini +test470 Q0 16688331 29 12.056754 Anserini +test470 Q0 19443873 30 11.993845 Anserini +test471 Q0 5968835 1 15.943436 Anserini +test471 Q0 5968834 2 15.848684 Anserini +test471 Q0 5968830 3 14.936330 Anserini +test471 Q0 4389955 4 14.271797 Anserini +test471 Q0 5968833 5 14.168091 Anserini +test471 Q0 5968832 6 13.749947 Anserini +test471 Q0 9786535 7 12.996359 Anserini +test471 Q0 2886815 8 12.996359 Anserini +test471 Q0 5968828 9 12.839200 Anserini +test471 Q0 9879341 10 12.588600 Anserini +test471 Q0 9739638 11 11.660258 Anserini +test471 Q0 4389950 12 11.492397 Anserini +test471 Q0 5402876 13 11.464523 Anserini +test471 Q0 5968829 14 11.414385 Anserini +test471 Q0 8873546 15 11.291029 Anserini +test471 Q0 8950978 16 11.149151 Anserini +test471 Q0 4695284 17 11.104542 Anserini +test471 Q0 4995385 18 11.012055 Anserini +test471 Q0 13232610 19 10.994375 Anserini +test471 Q0 10165628 20 10.905884 Anserini +test471 Q0 7023992 21 10.896135 Anserini +test471 Q0 18889286 22 10.778814 Anserini +test471 Q0 10937198 23 10.684751 Anserini +test471 Q0 18946139 24 10.536503 Anserini +test471 Q0 18502213 25 10.510298 Anserini +test471 Q0 14203302 26 10.440679 Anserini +test471 Q0 3614373 27 10.384985 Anserini +test471 Q0 11323264 28 10.383512 Anserini +test471 Q0 8571711 29 10.340590 Anserini +test471 Q0 3301446 30 10.249638 Anserini +test472 Q0 8000290 1 20.113754 Anserini +test472 Q0 18235695 2 18.713028 Anserini +test472 Q0 11122615 3 18.400255 Anserini +test472 Q0 11122616 4 18.331369 Anserini +test472 Q0 2454393 5 17.989994 Anserini +test472 Q0 9212902 6 17.818226 Anserini +test472 Q0 10914094 7 17.734573 Anserini +test472 Q0 4780532 8 17.445889 Anserini +test472 Q0 998624 9 17.371605 Anserini +test472 Q0 9212906 10 17.133215 Anserini +test472 Q0 10914086 11 17.133215 Anserini +test472 Q0 8000289 12 17.117676 Anserini +test472 Q0 5674362 13 17.113264 Anserini +test472 Q0 1626367 14 17.089289 Anserini +test472 Q0 998627 15 17.086740 Anserini +test472 Q0 2394424 16 17.082056 Anserini +test472 Q0 3273403 17 17.059484 Anserini +test472 Q0 10914093 18 17.059484 Anserini +test472 Q0 8000294 19 17.016666 Anserini +test472 Q0 1626387 20 16.916887 Anserini +test472 Q0 9212904 21 16.863859 Anserini +test472 Q0 3272498 22 16.859629 Anserini +test472 Q0 6442148 23 16.844181 Anserini +test472 Q0 3185628 24 16.746368 Anserini +test472 Q0 1626366 25 16.710276 Anserini +test472 Q0 18235692 26 16.692513 Anserini +test472 Q0 3273400 27 16.671360 Anserini +test472 Q0 4149208 28 16.588749 Anserini +test472 Q0 4780531 29 16.587727 Anserini +test472 Q0 2454410 30 16.536240 Anserini +test473 Q0 2049018 1 12.044599 Anserini +test473 Q0 16717342 2 11.705132 Anserini +test473 Q0 273303 3 10.175531 Anserini +test473 Q0 1303332 4 9.866767 Anserini +test473 Q0 3563886 5 9.832357 Anserini +test473 Q0 11648658 6 9.636758 Anserini +test473 Q0 12660935 7 9.570450 Anserini +test473 Q0 14123456 8 9.550420 Anserini +test473 Q0 3974331 9 9.335314 Anserini +test473 Q0 6830860 10 9.321548 Anserini +test473 Q0 19304223 11 9.280079 Anserini +test473 Q0 151265 12 9.264890 Anserini +test473 Q0 9479396 13 9.199780 Anserini +test473 Q0 12746026 14 9.180712 Anserini +test473 Q0 4797386 15 9.160812 Anserini +test473 Q0 18657401 16 9.150322 Anserini +test473 Q0 52586 17 9.138569 Anserini +test473 Q0 7751811 18 9.099154 Anserini +test473 Q0 9406843 19 9.086059 Anserini +test473 Q0 1345319 20 9.060513 Anserini +test473 Q0 11960147 21 9.054652 Anserini +test473 Q0 17318746 22 9.012574 Anserini +test473 Q0 1279347 23 8.981865 Anserini +test473 Q0 15370683 24 8.976397 Anserini +test473 Q0 15079911 25 8.976001 Anserini +test473 Q0 9633461 26 8.929125 Anserini +test473 Q0 11799627 27 8.920112 Anserini +test473 Q0 1722347 28 8.908219 Anserini +test473 Q0 12314113 29 8.891361 Anserini +test473 Q0 20769017 30 8.889299 Anserini +test474 Q0 15727896 1 10.426349 Anserini +test474 Q0 8734223 2 9.726252 Anserini +test474 Q0 15483082 3 9.250571 Anserini +test474 Q0 15483079 4 9.250571 Anserini +test474 Q0 14533266 5 9.146152 Anserini +test474 Q0 11457198 6 9.135292 Anserini +test474 Q0 11457188 7 8.950551 Anserini +test474 Q0 8219370 8 8.680308 Anserini +test474 Q0 11457192 9 8.637452 Anserini +test474 Q0 15427210 10 8.594956 Anserini +test474 Q0 18127778 11 8.570194 Anserini +test474 Q0 3628105 12 8.564888 Anserini +test474 Q0 5405910 13 8.558590 Anserini +test474 Q0 18585062 14 8.480152 Anserini +test474 Q0 8116527 15 8.394615 Anserini +test474 Q0 3628117 16 8.374448 Anserini +test474 Q0 20470083 17 8.339764 Anserini +test474 Q0 16273910 18 8.310816 Anserini +test474 Q0 614372 19 8.261479 Anserini +test474 Q0 10933879 20 8.256825 Anserini +test474 Q0 9222337 21 8.215094 Anserini +test474 Q0 17659266 22 8.213589 Anserini +test474 Q0 16363689 23 8.205838 Anserini +test474 Q0 16363691 24 8.155213 Anserini +test474 Q0 8539925 25 8.099894 Anserini +test474 Q0 5655455 26 8.099894 Anserini +test474 Q0 13810144 27 8.099894 Anserini +test474 Q0 11908717 28 8.049669 Anserini +test474 Q0 7249097 29 8.042131 Anserini +test474 Q0 19266665 30 8.042131 Anserini +test475 Q0 13813723 1 19.225920 Anserini +test475 Q0 16563602 2 18.575356 Anserini +test475 Q0 16563600 3 18.168068 Anserini +test475 Q0 16563597 4 18.113079 Anserini +test475 Q0 18255217 5 18.034977 Anserini +test475 Q0 14548394 6 18.033371 Anserini +test475 Q0 16563603 7 17.926111 Anserini +test475 Q0 16563599 8 17.837851 Anserini +test475 Q0 2417383 9 17.818638 Anserini +test475 Q0 16563601 10 17.734526 Anserini +test475 Q0 19506705 11 17.501965 Anserini +test475 Q0 16563598 12 17.329554 Anserini +test475 Q0 19506707 13 17.264467 Anserini +test475 Q0 16563606 14 17.236237 Anserini +test475 Q0 14548370 15 17.146133 Anserini +test475 Q0 16563596 16 17.111401 Anserini +test475 Q0 7204775 17 17.082277 Anserini +test475 Q0 3134791 18 16.851913 Anserini +test475 Q0 16563605 19 16.502102 Anserini +test475 Q0 16563595 20 16.471991 Anserini +test475 Q0 19213022 21 16.410107 Anserini +test475 Q0 13813698 22 16.051899 Anserini +test475 Q0 13813700 23 15.842732 Anserini +test475 Q0 2417389 24 15.703399 Anserini +test475 Q0 16563613 25 15.507469 Anserini +test475 Q0 13813720 26 15.434184 Anserini +test475 Q0 16563608 27 15.314312 Anserini +test475 Q0 7204776 28 15.296995 Anserini +test475 Q0 18255224 29 15.291761 Anserini +test475 Q0 8074380 30 15.271982 Anserini +test476 Q0 12349325 1 13.660330 Anserini +test476 Q0 10910529 2 13.587873 Anserini +test476 Q0 13040295 3 13.384524 Anserini +test476 Q0 642327 4 13.121652 Anserini +test476 Q0 4457220 5 12.916037 Anserini +test476 Q0 3965561 6 12.627298 Anserini +test476 Q0 1797817 7 12.561595 Anserini +test476 Q0 18689811 8 12.222719 Anserini +test476 Q0 9481816 9 12.218506 Anserini +test476 Q0 20339344 10 12.207914 Anserini +test476 Q0 6147187 11 12.179999 Anserini +test476 Q0 122831 12 12.114907 Anserini +test476 Q0 1430293 13 12.002676 Anserini +test476 Q0 2226766 14 11.875976 Anserini +test476 Q0 4495738 15 11.837481 Anserini +test476 Q0 94461 16 11.797683 Anserini +test476 Q0 12349326 17 11.788787 Anserini +test476 Q0 8505522 18 11.694244 Anserini +test476 Q0 17238661 19 11.661946 Anserini +test476 Q0 8642739 20 11.632017 Anserini +test476 Q0 4242896 21 11.627040 Anserini +test476 Q0 642339 22 11.542837 Anserini +test476 Q0 10277111 23 11.541635 Anserini +test476 Q0 5249288 24 11.488743 Anserini +test476 Q0 19102247 25 11.456489 Anserini +test476 Q0 14587968 26 11.437417 Anserini +test476 Q0 15945911 27 11.429183 Anserini +test476 Q0 122832 28 11.315681 Anserini +test476 Q0 11182226 29 11.297157 Anserini +test476 Q0 3966192 30 11.279623 Anserini +test477 Q0 12712004 1 12.438890 Anserini +test477 Q0 12043374 2 12.102820 Anserini +test477 Q0 19020201 3 12.093989 Anserini +test477 Q0 9914439 4 11.927528 Anserini +test477 Q0 15866292 5 11.774837 Anserini +test477 Q0 15866294 6 11.774837 Anserini +test477 Q0 9405247 7 11.753300 Anserini +test477 Q0 5250277 8 11.710269 Anserini +test477 Q0 7462501 9 11.659349 Anserini +test477 Q0 9256309 10 11.595377 Anserini +test477 Q0 4577998 11 11.412399 Anserini +test477 Q0 5311744 12 11.327888 Anserini +test477 Q0 9295534 13 11.292416 Anserini +test477 Q0 18282163 14 11.289167 Anserini +test477 Q0 6670724 15 11.278214 Anserini +test477 Q0 12228493 16 11.258892 Anserini +test477 Q0 13719429 17 10.996561 Anserini +test477 Q0 14380516 18 10.989040 Anserini +test477 Q0 6044274 19 10.967134 Anserini +test477 Q0 4211667 20 10.955770 Anserini +test477 Q0 18593461 21 10.907608 Anserini +test477 Q0 3990041 22 10.874428 Anserini +test477 Q0 7338016 23 10.874218 Anserini +test477 Q0 20334173 24 10.869188 Anserini +test477 Q0 13719430 25 10.852934 Anserini +test477 Q0 4084731 26 10.768186 Anserini +test477 Q0 5972435 27 10.758290 Anserini +test477 Q0 4512152 28 10.733814 Anserini +test477 Q0 18740994 29 10.718937 Anserini +test477 Q0 2843117 30 10.694693 Anserini +test478 Q0 2100013 1 11.765677 Anserini +test478 Q0 2100035 2 11.765677 Anserini +test478 Q0 216219 3 9.744755 Anserini +test478 Q0 9528004 4 9.657476 Anserini +test478 Q0 15950746 5 9.550576 Anserini +test478 Q0 8752722 6 9.525244 Anserini +test478 Q0 11216996 7 9.441548 Anserini +test478 Q0 14515367 8 9.432365 Anserini +test478 Q0 5695267 9 9.262792 Anserini +test478 Q0 10195002 10 9.250031 Anserini +test478 Q0 11136358 11 9.242565 Anserini +test478 Q0 14609825 12 9.172028 Anserini +test478 Q0 18456379 13 9.160310 Anserini +test478 Q0 17709534 14 9.095315 Anserini +test478 Q0 13776409 15 9.088547 Anserini +test478 Q0 1612123 16 9.053930 Anserini +test478 Q0 21004379 17 9.023069 Anserini +test478 Q0 11592175 18 9.011677 Anserini +test478 Q0 1612181 19 8.976118 Anserini +test478 Q0 19854041 20 8.958915 Anserini +test478 Q0 17706146 21 8.958775 Anserini +test478 Q0 17695454 22 8.958775 Anserini +test478 Q0 6396386 23 8.909534 Anserini +test478 Q0 15950744 24 8.882971 Anserini +test478 Q0 11592193 25 8.879505 Anserini +test478 Q0 11217028 26 8.773682 Anserini +test478 Q0 17709845 27 8.751488 Anserini +test478 Q0 5600444 28 8.751488 Anserini +test478 Q0 1951652 29 8.751215 Anserini +test478 Q0 9236210 30 8.732643 Anserini +test479 Q0 9021679 1 17.861376 Anserini +test479 Q0 9021680 2 16.380564 Anserini +test479 Q0 8216031 3 14.079358 Anserini +test479 Q0 2988015 4 13.936006 Anserini +test479 Q0 11823312 5 13.832610 Anserini +test479 Q0 2988020 6 13.682149 Anserini +test479 Q0 9028534 7 13.176429 Anserini +test479 Q0 1599783 8 13.104807 Anserini +test479 Q0 19286002 9 13.052116 Anserini +test479 Q0 5495474 10 12.738729 Anserini +test479 Q0 7022524 11 12.621727 Anserini +test479 Q0 6077167 12 12.414690 Anserini +test479 Q0 1370102 13 12.403182 Anserini +test479 Q0 12490294 14 12.295485 Anserini +test479 Q0 5733464 15 12.221334 Anserini +test479 Q0 7821145 16 12.067987 Anserini +test479 Q0 8105357 17 12.022352 Anserini +test479 Q0 6944599 18 12.012127 Anserini +test479 Q0 6944604 19 12.012127 Anserini +test479 Q0 6552502 20 11.955623 Anserini +test479 Q0 18566125 21 11.927178 Anserini +test479 Q0 6552497 22 11.889301 Anserini +test479 Q0 8049391 23 11.724036 Anserini +test479 Q0 14922643 24 11.719733 Anserini +test479 Q0 3490657 25 11.703018 Anserini +test479 Q0 7022530 26 11.672179 Anserini +test479 Q0 9028535 27 11.636289 Anserini +test479 Q0 2988026 28 11.636289 Anserini +test479 Q0 14814224 29 11.634852 Anserini +test479 Q0 5076045 30 11.626864 Anserini +test48 Q0 18119530 1 12.514142 Anserini +test48 Q0 18397956 2 11.648073 Anserini +test48 Q0 20077490 3 11.302999 Anserini +test48 Q0 1959746 4 11.021111 Anserini +test48 Q0 10555488 5 10.985868 Anserini +test48 Q0 18119526 6 10.746038 Anserini +test48 Q0 7089225 7 10.633589 Anserini +test48 Q0 1451758 8 10.504204 Anserini +test48 Q0 18140159 9 10.473096 Anserini +test48 Q0 18140140 10 10.334051 Anserini +test48 Q0 5180705 11 10.305775 Anserini +test48 Q0 15374646 12 10.267861 Anserini +test48 Q0 17995020 13 10.181457 Anserini +test48 Q0 15805863 14 10.163260 Anserini +test48 Q0 5180717 15 10.071502 Anserini +test48 Q0 1379910 16 10.020502 Anserini +test48 Q0 10590263 17 9.986919 Anserini +test48 Q0 9806802 18 9.935206 Anserini +test48 Q0 3421005 19 9.924419 Anserini +test48 Q0 200953 20 9.730675 Anserini +test48 Q0 6734875 21 9.721283 Anserini +test48 Q0 17723518 22 9.713500 Anserini +test48 Q0 3537291 23 9.656355 Anserini +test48 Q0 2545526 24 9.627706 Anserini +test48 Q0 16659347 25 9.627540 Anserini +test48 Q0 2329243 26 9.597631 Anserini +test48 Q0 2548838 27 9.583570 Anserini +test48 Q0 7174556 28 9.520936 Anserini +test48 Q0 14569012 29 9.492620 Anserini +test48 Q0 14790195 30 9.486656 Anserini +test480 Q0 9159663 1 13.832603 Anserini +test480 Q0 14960475 2 13.784738 Anserini +test480 Q0 20172451 3 13.764515 Anserini +test480 Q0 20275347 4 13.430356 Anserini +test480 Q0 20172426 5 13.260832 Anserini +test480 Q0 15207401 6 13.218623 Anserini +test480 Q0 20275350 7 13.157969 Anserini +test480 Q0 12021407 8 13.155432 Anserini +test480 Q0 4645568 9 13.091775 Anserini +test480 Q0 9194509 10 13.085567 Anserini +test480 Q0 18057710 11 13.083786 Anserini +test480 Q0 9194482 12 12.894283 Anserini +test480 Q0 19991677 13 12.838873 Anserini +test480 Q0 14447561 14 12.735394 Anserini +test480 Q0 11820236 15 12.694196 Anserini +test480 Q0 15207402 16 12.686621 Anserini +test480 Q0 9216931 17 12.675650 Anserini +test480 Q0 17095140 18 12.636671 Anserini +test480 Q0 16965462 19 12.611687 Anserini +test480 Q0 768183 20 12.578380 Anserini +test480 Q0 6236641 21 12.561630 Anserini +test480 Q0 20115892 22 12.558785 Anserini +test480 Q0 9542003 23 12.552678 Anserini +test480 Q0 10376952 24 12.525395 Anserini +test480 Q0 14960470 25 12.516842 Anserini +test480 Q0 11540944 26 12.494587 Anserini +test480 Q0 14174831 27 12.482900 Anserini +test480 Q0 12686748 28 12.482900 Anserini +test480 Q0 6519159 29 12.477078 Anserini +test480 Q0 20172447 30 12.464477 Anserini +test481 Q0 5996240 1 14.368679 Anserini +test481 Q0 19197560 2 14.122727 Anserini +test481 Q0 19197563 3 13.932631 Anserini +test481 Q0 9452145 4 13.897121 Anserini +test481 Q0 18346238 5 13.889334 Anserini +test481 Q0 19197562 6 13.734968 Anserini +test481 Q0 7844951 7 13.730752 Anserini +test481 Q0 17490518 8 13.485645 Anserini +test481 Q0 14526636 9 13.402677 Anserini +test481 Q0 17916403 10 13.165885 Anserini +test481 Q0 17960317 11 13.031350 Anserini +test481 Q0 14199849 12 12.915212 Anserini +test481 Q0 5594938 13 12.867195 Anserini +test481 Q0 11290619 14 12.838972 Anserini +test481 Q0 11290618 15 12.728184 Anserini +test481 Q0 6279577 16 12.705401 Anserini +test481 Q0 19570454 17 12.554384 Anserini +test481 Q0 681736 18 12.524075 Anserini +test481 Q0 4112355 19 12.404658 Anserini +test481 Q0 17960314 20 12.397902 Anserini +test481 Q0 4020715 21 12.346219 Anserini +test481 Q0 224735 22 12.184763 Anserini +test481 Q0 5499035 23 12.171899 Anserini +test481 Q0 14761532 24 11.910643 Anserini +test481 Q0 14589184 25 11.774544 Anserini +test481 Q0 2567391 26 11.736012 Anserini +test481 Q0 17490521 27 11.699909 Anserini +test481 Q0 4251103 28 11.660411 Anserini +test481 Q0 6756251 29 11.627938 Anserini +test481 Q0 5996242 30 11.611986 Anserini +test482 Q0 13602817 1 19.848970 Anserini +test482 Q0 579105 2 19.642418 Anserini +test482 Q0 1822253 3 18.739780 Anserini +test482 Q0 14209740 4 18.477205 Anserini +test482 Q0 471024 5 18.434305 Anserini +test482 Q0 11094729 6 18.188904 Anserini +test482 Q0 2770166 7 18.109488 Anserini +test482 Q0 13308164 8 17.758642 Anserini +test482 Q0 11751292 9 17.676796 Anserini +test482 Q0 15848286 10 17.649940 Anserini +test482 Q0 17730540 11 17.645555 Anserini +test482 Q0 9454766 12 17.576811 Anserini +test482 Q0 15629078 13 17.552036 Anserini +test482 Q0 2719326 14 17.292679 Anserini +test482 Q0 10365510 15 17.273273 Anserini +test482 Q0 5988558 16 17.222275 Anserini +test482 Q0 10580998 17 17.167791 Anserini +test482 Q0 10848713 18 17.133520 Anserini +test482 Q0 3354427 19 17.100037 Anserini +test482 Q0 7829248 20 17.073889 Anserini +test482 Q0 578921 21 16.991596 Anserini +test482 Q0 15247693 22 16.964895 Anserini +test482 Q0 10028579 23 16.944210 Anserini +test482 Q0 2154009 24 16.909971 Anserini +test482 Q0 3766330 25 16.874683 Anserini +test482 Q0 5638220 26 16.777895 Anserini +test482 Q0 2178132 27 16.742168 Anserini +test482 Q0 6628849 28 16.733799 Anserini +test482 Q0 2804976 29 16.659466 Anserini +test482 Q0 12162496 30 16.628532 Anserini +test483 Q0 5435233 1 14.761481 Anserini +test483 Q0 17998299 2 13.962944 Anserini +test483 Q0 17905769 3 13.917133 Anserini +test483 Q0 14497324 4 13.820740 Anserini +test483 Q0 14497328 5 13.820740 Anserini +test483 Q0 6449130 6 13.729990 Anserini +test483 Q0 6331504 7 13.715968 Anserini +test483 Q0 16747420 8 13.390007 Anserini +test483 Q0 16197195 9 13.313598 Anserini +test483 Q0 18978475 10 13.264847 Anserini +test483 Q0 18754236 11 13.258829 Anserini +test483 Q0 13718239 12 13.191571 Anserini +test483 Q0 6814577 13 13.110502 Anserini +test483 Q0 1389066 14 13.065292 Anserini +test483 Q0 6348650 15 12.949327 Anserini +test483 Q0 8021015 16 12.941978 Anserini +test483 Q0 4751804 17 12.913798 Anserini +test483 Q0 7065930 18 12.881587 Anserini +test483 Q0 20537782 19 12.877184 Anserini +test483 Q0 2314000 20 12.857222 Anserini +test483 Q0 12447573 21 12.811710 Anserini +test483 Q0 14384699 22 12.811213 Anserini +test483 Q0 4967225 23 12.782713 Anserini +test483 Q0 16864272 24 12.766438 Anserini +test483 Q0 8063754 25 12.715066 Anserini +test483 Q0 884031 26 12.702823 Anserini +test483 Q0 11590264 27 12.701483 Anserini +test483 Q0 4509848 28 12.579583 Anserini +test483 Q0 20826969 29 12.576204 Anserini +test483 Q0 6334827 30 12.570555 Anserini +test484 Q0 76070 1 14.413209 Anserini +test484 Q0 76076 2 12.370159 Anserini +test484 Q0 15100889 3 11.641078 Anserini +test484 Q0 469439 4 11.529562 Anserini +test484 Q0 76072 5 11.326776 Anserini +test484 Q0 12622475 6 11.313106 Anserini +test484 Q0 76063 7 11.299084 Anserini +test484 Q0 9912600 8 11.238075 Anserini +test484 Q0 3964840 9 11.198069 Anserini +test484 Q0 76051 10 11.178925 Anserini +test484 Q0 76039 11 11.157722 Anserini +test484 Q0 76073 12 11.089634 Anserini +test484 Q0 76057 13 11.054249 Anserini +test484 Q0 76059 14 11.017066 Anserini +test484 Q0 76071 15 10.995317 Anserini +test484 Q0 3888851 16 10.992517 Anserini +test484 Q0 10300882 17 10.988699 Anserini +test484 Q0 17238519 18 10.941882 Anserini +test484 Q0 76069 19 10.933574 Anserini +test484 Q0 16559373 20 10.925205 Anserini +test484 Q0 16559374 21 10.925205 Anserini +test484 Q0 10567887 22 10.694986 Anserini +test484 Q0 12717325 23 10.688878 Anserini +test484 Q0 76075 24 10.684263 Anserini +test484 Q0 76064 25 10.627141 Anserini +test484 Q0 2606594 26 10.575204 Anserini +test484 Q0 10575401 27 10.477321 Anserini +test484 Q0 76040 28 10.455722 Anserini +test484 Q0 17613549 29 10.429948 Anserini +test484 Q0 76074 30 10.411473 Anserini +test485 Q0 15746620 1 18.912437 Anserini +test485 Q0 4218839 2 17.331091 Anserini +test485 Q0 4218838 3 17.194645 Anserini +test485 Q0 15746595 4 16.711584 Anserini +test485 Q0 4218835 5 16.557274 Anserini +test485 Q0 15746548 6 16.139460 Anserini +test485 Q0 15746576 7 16.051411 Anserini +test485 Q0 15752040 8 16.010365 Anserini +test485 Q0 20935816 9 15.540160 Anserini +test485 Q0 10653478 10 14.898099 Anserini +test485 Q0 4218848 11 14.607986 Anserini +test485 Q0 15747600 12 14.536595 Anserini +test485 Q0 4218836 13 14.330746 Anserini +test485 Q0 4218837 14 14.232738 Anserini +test485 Q0 7078547 15 14.164072 Anserini +test485 Q0 16873041 16 14.163345 Anserini +test485 Q0 15717150 17 14.136167 Anserini +test485 Q0 15746577 18 13.984543 Anserini +test485 Q0 20935817 19 13.953878 Anserini +test485 Q0 20935824 20 13.923057 Anserini +test485 Q0 20935812 21 13.923057 Anserini +test485 Q0 4218845 22 13.870399 Anserini +test485 Q0 15747277 23 13.865711 Anserini +test485 Q0 4218828 24 13.814344 Anserini +test485 Q0 4218866 25 13.814344 Anserini +test485 Q0 15749998 26 13.794115 Anserini +test485 Q0 19784771 27 13.786050 Anserini +test485 Q0 19738029 28 13.664240 Anserini +test485 Q0 407704 29 13.527725 Anserini +test485 Q0 14842186 30 13.517610 Anserini +test486 Q0 7550808 1 15.273216 Anserini +test486 Q0 4717390 2 14.854390 Anserini +test486 Q0 3594002 3 13.633504 Anserini +test486 Q0 12299240 4 13.075131 Anserini +test486 Q0 9628501 5 12.721785 Anserini +test486 Q0 2629391 6 12.652289 Anserini +test486 Q0 3247821 7 12.651278 Anserini +test486 Q0 14704729 8 12.572263 Anserini +test486 Q0 13729557 9 12.474207 Anserini +test486 Q0 16762943 10 12.468342 Anserini +test486 Q0 6372241 11 12.457911 Anserini +test486 Q0 3172368 12 12.435984 Anserini +test486 Q0 12826215 13 12.282880 Anserini +test486 Q0 15988747 14 12.265943 Anserini +test486 Q0 3583746 15 12.178849 Anserini +test486 Q0 9655759 16 12.088369 Anserini +test486 Q0 6592459 17 12.066119 Anserini +test486 Q0 20735940 18 12.038383 Anserini +test486 Q0 9105899 19 12.018622 Anserini +test486 Q0 4717389 20 11.958736 Anserini +test486 Q0 9487057 21 11.850607 Anserini +test486 Q0 7875875 22 11.830880 Anserini +test486 Q0 8555101 23 11.815527 Anserini +test486 Q0 4717388 24 11.805671 Anserini +test486 Q0 14113120 25 11.742846 Anserini +test486 Q0 3885368 26 11.656725 Anserini +test486 Q0 3578826 27 11.610408 Anserini +test486 Q0 18575200 28 11.592965 Anserini +test486 Q0 14414314 29 11.572950 Anserini +test486 Q0 9646601 30 11.558895 Anserini +test487 Q0 13376771 1 11.549286 Anserini +test487 Q0 564986 2 11.412286 Anserini +test487 Q0 20937720 3 11.242678 Anserini +test487 Q0 13376772 4 11.197888 Anserini +test487 Q0 7557846 5 11.133951 Anserini +test487 Q0 180513 6 11.108808 Anserini +test487 Q0 180529 7 10.997866 Anserini +test487 Q0 565009 8 10.971253 Anserini +test487 Q0 16459739 9 10.902538 Anserini +test487 Q0 17251963 10 10.846988 Anserini +test487 Q0 17935735 11 10.786847 Anserini +test487 Q0 741647 12 10.735527 Anserini +test487 Q0 565006 13 10.693841 Anserini +test487 Q0 5401083 14 10.594332 Anserini +test487 Q0 5401084 15 10.594332 Anserini +test487 Q0 2178417 16 10.551302 Anserini +test487 Q0 564983 17 10.543892 Anserini +test487 Q0 20669661 18 10.540807 Anserini +test487 Q0 17902339 19 10.526154 Anserini +test487 Q0 17613511 20 10.513821 Anserini +test487 Q0 19075945 21 10.454692 Anserini +test487 Q0 17894971 22 10.434297 Anserini +test487 Q0 3349890 23 10.418507 Anserini +test487 Q0 16459735 24 10.373156 Anserini +test487 Q0 2178397 25 10.351032 Anserini +test487 Q0 7438768 26 10.317091 Anserini +test487 Q0 13376623 27 10.287480 Anserini +test487 Q0 2305642 28 10.270624 Anserini +test487 Q0 13041420 29 10.255225 Anserini +test487 Q0 3600216 30 10.250212 Anserini +test488 Q0 3164314 1 12.136978 Anserini +test488 Q0 1486486 2 12.108613 Anserini +test488 Q0 3717403 3 11.873283 Anserini +test488 Q0 11081206 4 11.698545 Anserini +test488 Q0 9851386 5 11.540663 Anserini +test488 Q0 14236520 6 11.494970 Anserini +test488 Q0 3717382 7 11.461157 Anserini +test488 Q0 8952834 8 11.346014 Anserini +test488 Q0 14696709 9 11.321726 Anserini +test488 Q0 1486487 10 11.288957 Anserini +test488 Q0 1486492 11 11.093135 Anserini +test488 Q0 10963921 12 11.055147 Anserini +test488 Q0 6433819 13 11.008839 Anserini +test488 Q0 1486493 14 10.951139 Anserini +test488 Q0 3158158 15 10.848680 Anserini +test488 Q0 17104109 16 10.848188 Anserini +test488 Q0 2015522 17 10.810749 Anserini +test488 Q0 5701571 18 10.804041 Anserini +test488 Q0 14196097 19 10.741627 Anserini +test488 Q0 4980273 20 10.737687 Anserini +test488 Q0 13164627 21 10.737487 Anserini +test488 Q0 14094018 22 10.616163 Anserini +test488 Q0 3686964 23 10.581005 Anserini +test488 Q0 1486478 24 10.556934 Anserini +test488 Q0 13269892 25 10.492712 Anserini +test488 Q0 13269895 26 10.492712 Anserini +test488 Q0 5882371 27 10.483501 Anserini +test488 Q0 13690096 28 10.404357 Anserini +test488 Q0 17437691 29 10.367757 Anserini +test488 Q0 10241795 30 10.316641 Anserini +test489 Q0 6051812 1 13.397988 Anserini +test489 Q0 15931007 2 13.366909 Anserini +test489 Q0 20913069 3 13.118115 Anserini +test489 Q0 756090 4 13.091197 Anserini +test489 Q0 9791613 5 12.632811 Anserini +test489 Q0 6051810 6 12.590316 Anserini +test489 Q0 9520712 7 12.511887 Anserini +test489 Q0 6302271 8 12.040399 Anserini +test489 Q0 20913071 9 12.040340 Anserini +test489 Q0 11288602 10 11.965554 Anserini +test489 Q0 11288614 11 11.965554 Anserini +test489 Q0 8556953 12 11.730004 Anserini +test489 Q0 8556954 13 11.682617 Anserini +test489 Q0 12579594 14 11.673750 Anserini +test489 Q0 756091 15 11.591341 Anserini +test489 Q0 107305 16 11.486238 Anserini +test489 Q0 12133899 17 11.435379 Anserini +test489 Q0 11288555 18 11.423456 Anserini +test489 Q0 13787060 19 11.367937 Anserini +test489 Q0 13787058 20 11.293869 Anserini +test489 Q0 4649469 21 11.285924 Anserini +test489 Q0 11288569 22 11.064068 Anserini +test489 Q0 756096 23 11.048111 Anserini +test489 Q0 8202476 24 10.913795 Anserini +test489 Q0 1784493 25 10.896170 Anserini +test489 Q0 6051813 26 10.825429 Anserini +test489 Q0 756111 27 10.805815 Anserini +test489 Q0 20913070 28 10.707201 Anserini +test489 Q0 4772412 29 10.705688 Anserini +test489 Q0 16713610 30 10.669340 Anserini +test49 Q0 5745582 1 12.692004 Anserini +test49 Q0 5469008 2 12.511349 Anserini +test49 Q0 4500436 3 12.242167 Anserini +test49 Q0 12031747 4 11.997446 Anserini +test49 Q0 9127132 5 11.910818 Anserini +test49 Q0 10863119 6 11.645432 Anserini +test49 Q0 5576646 7 11.633441 Anserini +test49 Q0 18008924 8 11.376681 Anserini +test49 Q0 13406365 9 11.370426 Anserini +test49 Q0 7697685 10 11.319335 Anserini +test49 Q0 20273257 11 11.248229 Anserini +test49 Q0 3979767 12 11.227587 Anserini +test49 Q0 11948042 13 11.223354 Anserini +test49 Q0 14324506 14 11.184237 Anserini +test49 Q0 14433783 15 11.144843 Anserini +test49 Q0 9225236 16 11.126286 Anserini +test49 Q0 2728193 17 11.126209 Anserini +test49 Q0 16043480 18 11.116879 Anserini +test49 Q0 16615820 19 11.109070 Anserini +test49 Q0 716262 20 11.102780 Anserini +test49 Q0 8890547 21 11.070557 Anserini +test49 Q0 14553575 22 11.063259 Anserini +test49 Q0 9138911 23 11.053649 Anserini +test49 Q0 7722507 24 11.049970 Anserini +test49 Q0 3162891 25 10.990316 Anserini +test49 Q0 3162892 26 10.990316 Anserini +test49 Q0 17776329 27 10.979984 Anserini +test49 Q0 10567827 28 10.971817 Anserini +test49 Q0 16941945 29 10.946298 Anserini +test49 Q0 16026145 30 10.902893 Anserini +test490 Q0 15540500 1 18.587944 Anserini +test490 Q0 9490437 2 13.189531 Anserini +test490 Q0 15540499 3 12.928581 Anserini +test490 Q0 15540501 4 12.928581 Anserini +test490 Q0 9490438 5 12.523052 Anserini +test490 Q0 2483745 6 10.743083 Anserini +test490 Q0 19611643 7 10.706663 Anserini +test490 Q0 9490439 8 10.621080 Anserini +test490 Q0 19017297 9 10.584951 Anserini +test490 Q0 7399400 10 10.513426 Anserini +test490 Q0 2483739 11 10.398236 Anserini +test490 Q0 20395081 12 10.398236 Anserini +test490 Q0 15021265 13 10.355618 Anserini +test490 Q0 2483738 14 10.355618 Anserini +test490 Q0 19611642 15 10.355618 Anserini +test490 Q0 19611644 16 10.313346 Anserini +test490 Q0 14689573 17 10.271419 Anserini +test490 Q0 20833333 18 10.271419 Anserini +test490 Q0 19017302 19 10.203189 Anserini +test490 Q0 15727383 20 10.203189 Anserini +test490 Q0 19460445 21 10.161539 Anserini +test490 Q0 7399402 22 10.120230 Anserini +test490 Q0 14689571 23 9.870191 Anserini +test490 Q0 2483741 24 9.819046 Anserini +test490 Q0 14689574 25 9.819046 Anserini +test490 Q0 14689567 26 9.819046 Anserini +test490 Q0 2483742 27 9.768428 Anserini +test490 Q0 2483744 28 9.768428 Anserini +test490 Q0 14689569 29 9.768428 Anserini +test490 Q0 14689568 30 9.768428 Anserini +test491 Q0 7088633 1 14.887905 Anserini +test491 Q0 7088639 2 14.635531 Anserini +test491 Q0 7088637 3 14.160442 Anserini +test491 Q0 6719311 4 14.152778 Anserini +test491 Q0 9874033 5 13.440006 Anserini +test491 Q0 9882181 6 13.409529 Anserini +test491 Q0 7088636 7 13.264864 Anserini +test491 Q0 7464605 8 12.640863 Anserini +test491 Q0 8620919 9 12.469323 Anserini +test491 Q0 8620938 10 12.460577 Anserini +test491 Q0 3844433 11 12.262934 Anserini +test491 Q0 376039 12 12.221253 Anserini +test491 Q0 7088635 13 12.216420 Anserini +test491 Q0 8620937 14 12.212409 Anserini +test491 Q0 17120638 15 12.182957 Anserini +test491 Q0 15232178 16 12.048899 Anserini +test491 Q0 11993686 17 11.894531 Anserini +test491 Q0 17709237 18 11.758856 Anserini +test491 Q0 8620939 19 11.741167 Anserini +test491 Q0 5340685 20 11.737206 Anserini +test491 Q0 3549039 21 11.568361 Anserini +test491 Q0 4327022 22 11.519025 Anserini +test491 Q0 16795286 23 11.499411 Anserini +test491 Q0 6282358 24 11.490943 Anserini +test491 Q0 20407966 25 11.456289 Anserini +test491 Q0 8620929 26 11.456247 Anserini +test491 Q0 15529452 27 11.448984 Anserini +test491 Q0 2953482 28 11.431478 Anserini +test491 Q0 5964471 29 11.271775 Anserini +test491 Q0 12324667 30 11.263084 Anserini +test492 Q0 18608611 1 10.660939 Anserini +test492 Q0 8474364 2 10.558011 Anserini +test492 Q0 18608612 3 10.533015 Anserini +test492 Q0 15717325 4 10.503493 Anserini +test492 Q0 15717327 5 10.350183 Anserini +test492 Q0 2095219 6 10.307862 Anserini +test492 Q0 13975155 7 10.302294 Anserini +test492 Q0 764459 8 10.069434 Anserini +test492 Q0 2095254 9 10.049538 Anserini +test492 Q0 15717319 10 9.979049 Anserini +test492 Q0 2095231 11 9.955088 Anserini +test492 Q0 2697842 12 9.943937 Anserini +test492 Q0 9211202 13 9.904845 Anserini +test492 Q0 15717332 14 9.861250 Anserini +test492 Q0 408826 15 9.843881 Anserini +test492 Q0 17523496 16 9.838423 Anserini +test492 Q0 12251213 17 9.729197 Anserini +test492 Q0 15717331 18 9.688796 Anserini +test492 Q0 20245262 19 9.668427 Anserini +test492 Q0 2078377 20 9.660696 Anserini +test492 Q0 1896559 21 9.642811 Anserini +test492 Q0 11576025 22 9.601185 Anserini +test492 Q0 2078378 23 9.601106 Anserini +test492 Q0 434502 24 9.572957 Anserini +test492 Q0 10976610 25 9.555374 Anserini +test492 Q0 10354110 26 9.549416 Anserini +test492 Q0 5188925 27 9.533710 Anserini +test492 Q0 15717326 28 9.531831 Anserini +test492 Q0 2066178 29 9.522292 Anserini +test492 Q0 11171814 30 9.522292 Anserini +test493 Q0 2146293 1 19.675392 Anserini +test493 Q0 2146288 2 19.641638 Anserini +test493 Q0 15239866 3 18.864372 Anserini +test493 Q0 16548540 4 18.224342 Anserini +test493 Q0 2028640 5 17.525208 Anserini +test493 Q0 20237473 6 17.394493 Anserini +test493 Q0 12909565 7 16.936535 Anserini +test493 Q0 11245653 8 16.813433 Anserini +test493 Q0 351099 9 16.763969 Anserini +test493 Q0 351018 10 16.371490 Anserini +test493 Q0 351101 11 16.302952 Anserini +test493 Q0 10395809 12 15.883369 Anserini +test493 Q0 6014079 13 15.768976 Anserini +test493 Q0 20502857 14 15.742773 Anserini +test493 Q0 15239868 15 15.698792 Anserini +test493 Q0 4206060 16 15.696101 Anserini +test493 Q0 19750109 17 15.668745 Anserini +test493 Q0 3177851 18 15.649622 Anserini +test493 Q0 10395811 19 15.604546 Anserini +test493 Q0 1757796 20 15.593966 Anserini +test493 Q0 801200 21 15.566653 Anserini +test493 Q0 14112455 22 15.509610 Anserini +test493 Q0 15239887 23 15.457589 Anserini +test493 Q0 14586907 24 15.359616 Anserini +test493 Q0 5900719 25 15.274858 Anserini +test493 Q0 14387168 26 15.258423 Anserini +test493 Q0 3705136 27 15.246710 Anserini +test493 Q0 2936419 28 15.203978 Anserini +test493 Q0 15772270 29 15.196945 Anserini +test493 Q0 15772273 30 15.196945 Anserini +test494 Q0 3794270 1 16.651909 Anserini +test494 Q0 3062031 2 16.387178 Anserini +test494 Q0 5886586 3 16.233879 Anserini +test494 Q0 4241156 4 16.113354 Anserini +test494 Q0 6509415 5 15.853514 Anserini +test494 Q0 8387575 6 15.848641 Anserini +test494 Q0 3975770 7 15.792830 Anserini +test494 Q0 3840454 8 15.551703 Anserini +test494 Q0 3014156 9 15.532999 Anserini +test494 Q0 8150507 10 15.380774 Anserini +test494 Q0 3837364 11 15.326727 Anserini +test494 Q0 8150508 12 15.262462 Anserini +test494 Q0 10311787 13 15.259079 Anserini +test494 Q0 10311788 14 15.259079 Anserini +test494 Q0 3960351 15 15.211785 Anserini +test494 Q0 19477472 16 15.185213 Anserini +test494 Q0 3344295 17 15.084013 Anserini +test494 Q0 1448644 18 15.037304 Anserini +test494 Q0 4754068 19 15.022528 Anserini +test494 Q0 2967416 20 14.998005 Anserini +test494 Q0 16989807 21 14.988411 Anserini +test494 Q0 12656850 22 14.945531 Anserini +test494 Q0 3018034 23 14.908001 Anserini +test494 Q0 17956429 24 14.767675 Anserini +test494 Q0 8754754 25 14.688171 Anserini +test494 Q0 6640470 26 14.688130 Anserini +test494 Q0 14871124 27 14.629932 Anserini +test494 Q0 6554465 28 14.583806 Anserini +test494 Q0 5547469 29 14.426178 Anserini +test494 Q0 3018024 30 14.421172 Anserini +test495 Q0 11267844 1 12.466968 Anserini +test495 Q0 11267842 2 12.168403 Anserini +test495 Q0 5256415 3 11.633063 Anserini +test495 Q0 5892914 4 11.371479 Anserini +test495 Q0 5546834 5 11.055586 Anserini +test495 Q0 16659678 6 10.853651 Anserini +test495 Q0 7072661 7 10.759407 Anserini +test495 Q0 14075743 8 10.637724 Anserini +test495 Q0 1370245 9 10.132007 Anserini +test495 Q0 13745568 10 9.996089 Anserini +test495 Q0 8179342 11 9.987275 Anserini +test495 Q0 6739530 12 9.947344 Anserini +test495 Q0 1855594 13 9.742214 Anserini +test495 Q0 16236102 14 9.570769 Anserini +test495 Q0 12762963 15 9.568485 Anserini +test495 Q0 15082858 16 9.524881 Anserini +test495 Q0 9351375 17 9.491479 Anserini +test495 Q0 19959416 18 9.486550 Anserini +test495 Q0 11733532 19 9.462473 Anserini +test495 Q0 13017033 20 9.430658 Anserini +test495 Q0 13812514 21 9.423082 Anserini +test495 Q0 10188342 22 9.411581 Anserini +test495 Q0 6439359 23 9.397128 Anserini +test495 Q0 7797712 24 9.351349 Anserini +test495 Q0 11953837 25 9.341901 Anserini +test495 Q0 14126073 26 9.334803 Anserini +test495 Q0 531722 27 9.316812 Anserini +test495 Q0 6379893 28 9.285412 Anserini +test495 Q0 8771024 29 9.246175 Anserini +test495 Q0 13459944 30 9.197049 Anserini +test496 Q0 394043 1 20.223269 Anserini +test496 Q0 9975608 2 19.302465 Anserini +test496 Q0 6471470 3 18.940643 Anserini +test496 Q0 7167384 4 18.911135 Anserini +test496 Q0 1944765 5 18.600771 Anserini +test496 Q0 395022 6 18.579638 Anserini +test496 Q0 19820625 7 18.490072 Anserini +test496 Q0 8256490 8 18.215256 Anserini +test496 Q0 17473839 9 18.031019 Anserini +test496 Q0 5732110 10 17.989536 Anserini +test496 Q0 271664 11 17.972790 Anserini +test496 Q0 262448 12 17.709150 Anserini +test496 Q0 4582510 13 17.613708 Anserini +test496 Q0 4245759 14 17.593973 Anserini +test496 Q0 5950926 15 17.496874 Anserini +test496 Q0 9975443 16 17.495163 Anserini +test496 Q0 9975449 17 17.495163 Anserini +test496 Q0 19820630 18 17.432903 Anserini +test496 Q0 9734898 19 17.385859 Anserini +test496 Q0 8735756 20 17.327482 Anserini +test496 Q0 394041 21 17.125164 Anserini +test496 Q0 2168657 22 17.071798 Anserini +test496 Q0 15206538 23 17.071798 Anserini +test496 Q0 393933 24 17.030073 Anserini +test496 Q0 9465510 25 17.027161 Anserini +test496 Q0 394039 26 16.978304 Anserini +test496 Q0 13536780 27 16.912151 Anserini +test496 Q0 9975420 28 16.878729 Anserini +test496 Q0 3140568 29 16.799202 Anserini +test496 Q0 10950844 30 16.663628 Anserini +test497 Q0 16243827 1 23.154854 Anserini +test497 Q0 18251580 2 22.848341 Anserini +test497 Q0 18251578 3 22.025690 Anserini +test497 Q0 19780575 4 21.722876 Anserini +test497 Q0 20650542 5 21.504103 Anserini +test497 Q0 20650543 6 21.504103 Anserini +test497 Q0 19694994 7 21.317017 Anserini +test497 Q0 9659234 8 21.071224 Anserini +test497 Q0 19395638 9 20.804701 Anserini +test497 Q0 20131679 10 20.081947 Anserini +test497 Q0 10815274 11 20.024221 Anserini +test497 Q0 10451151 12 19.993200 Anserini +test497 Q0 19759740 13 19.881733 Anserini +test497 Q0 16793196 14 19.837076 Anserini +test497 Q0 20131678 15 19.758926 Anserini +test497 Q0 3646534 16 19.705997 Anserini +test497 Q0 19395639 17 19.591248 Anserini +test497 Q0 16477409 18 19.571741 Anserini +test497 Q0 20721503 19 19.432110 Anserini +test497 Q0 20389028 20 19.394636 Anserini +test497 Q0 19779162 21 19.322781 Anserini +test497 Q0 19759739 22 19.303635 Anserini +test497 Q0 6969715 23 19.267979 Anserini +test497 Q0 19776306 24 19.261585 Anserini +test497 Q0 5849494 25 19.255835 Anserini +test497 Q0 3651093 26 19.178747 Anserini +test497 Q0 20182155 27 19.043297 Anserini +test497 Q0 20723516 28 18.972744 Anserini +test497 Q0 14579023 29 18.933313 Anserini +test497 Q0 18251633 30 18.901110 Anserini +test498 Q0 19269404 1 22.549736 Anserini +test498 Q0 19269383 2 22.502800 Anserini +test498 Q0 14201342 3 20.905313 Anserini +test498 Q0 16130495 4 20.661924 Anserini +test498 Q0 17937523 5 20.574699 Anserini +test498 Q0 17916487 6 20.354240 Anserini +test498 Q0 18080667 7 20.329762 Anserini +test498 Q0 19269393 8 20.309446 Anserini +test498 Q0 19920781 9 20.273836 Anserini +test498 Q0 17916505 10 19.963312 Anserini +test498 Q0 20360290 11 19.946653 Anserini +test498 Q0 18080649 12 19.756668 Anserini +test498 Q0 18651090 13 19.719971 Anserini +test498 Q0 19648432 14 19.691046 Anserini +test498 Q0 14201343 15 19.682446 Anserini +test498 Q0 19701322 16 19.677992 Anserini +test498 Q0 17937516 17 19.662991 Anserini +test498 Q0 20219828 18 19.483332 Anserini +test498 Q0 20116265 19 19.479980 Anserini +test498 Q0 19676415 20 19.479980 Anserini +test498 Q0 19648420 21 19.479980 Anserini +test498 Q0 19701328 22 19.423227 Anserini +test498 Q0 20776592 23 19.396370 Anserini +test498 Q0 19676427 24 19.322311 Anserini +test498 Q0 19369701 25 19.307089 Anserini +test498 Q0 20116275 26 19.292339 Anserini +test498 Q0 18035536 27 19.292339 Anserini +test498 Q0 18035543 28 19.292339 Anserini +test498 Q0 19602479 29 19.200964 Anserini +test498 Q0 20776616 30 19.189508 Anserini +test499 Q0 696246 1 10.443571 Anserini +test499 Q0 1949 2 10.326243 Anserini +test499 Q0 704436 3 10.191624 Anserini +test499 Q0 707959 4 10.035545 Anserini +test499 Q0 348501 5 9.899777 Anserini +test499 Q0 12865004 6 9.860210 Anserini +test499 Q0 9133074 7 9.828507 Anserini +test499 Q0 3427581 8 9.690059 Anserini +test499 Q0 13019773 9 9.607438 Anserini +test499 Q0 8880320 10 9.588044 Anserini +test499 Q0 3726902 11 9.544034 Anserini +test499 Q0 3726907 12 9.544034 Anserini +test499 Q0 20774501 13 9.494971 Anserini +test499 Q0 12865008 14 9.415325 Anserini +test499 Q0 17148807 15 9.411226 Anserini +test499 Q0 4416046 16 9.345088 Anserini +test499 Q0 348578 17 9.329514 Anserini +test499 Q0 7745131 18 9.308985 Anserini +test499 Q0 18627434 19 9.281343 Anserini +test499 Q0 4719484 20 9.206186 Anserini +test499 Q0 3065050 21 9.188152 Anserini +test499 Q0 8635122 22 9.170099 Anserini +test499 Q0 14725827 23 9.097520 Anserini +test499 Q0 17838554 24 9.096733 Anserini +test499 Q0 4377600 25 9.048446 Anserini +test499 Q0 707945 26 9.016143 Anserini +test499 Q0 3523073 27 9.002084 Anserini +test499 Q0 12930807 28 8.991626 Anserini +test499 Q0 4241096 29 8.936606 Anserini +test499 Q0 3142118 30 8.897282 Anserini +test5 Q0 7986484 1 12.960132 Anserini +test5 Q0 12461047 2 11.861593 Anserini +test5 Q0 434773 3 11.489511 Anserini +test5 Q0 6467717 4 11.402143 Anserini +test5 Q0 3358028 5 11.256959 Anserini +test5 Q0 6090871 6 11.158414 Anserini +test5 Q0 16432997 7 11.119278 Anserini +test5 Q0 16981048 8 11.091744 Anserini +test5 Q0 17434271 9 11.079371 Anserini +test5 Q0 8421634 10 10.992724 Anserini +test5 Q0 2143843 11 10.945669 Anserini +test5 Q0 9864117 12 10.908052 Anserini +test5 Q0 14874745 13 10.821486 Anserini +test5 Q0 14874747 14 10.821486 Anserini +test5 Q0 2134568 15 10.796776 Anserini +test5 Q0 14791748 16 10.768492 Anserini +test5 Q0 6392318 17 10.740976 Anserini +test5 Q0 14791749 18 10.648384 Anserini +test5 Q0 1960129 19 10.609559 Anserini +test5 Q0 6392317 20 10.536571 Anserini +test5 Q0 6642454 21 10.489466 Anserini +test5 Q0 10622584 22 10.488539 Anserini +test5 Q0 3935782 23 10.462533 Anserini +test5 Q0 8398770 24 10.447936 Anserini +test5 Q0 7343615 25 10.447913 Anserini +test5 Q0 6642467 26 10.440657 Anserini +test5 Q0 19622084 27 10.417589 Anserini +test5 Q0 7343614 28 10.403853 Anserini +test5 Q0 6317086 29 10.402738 Anserini +test5 Q0 18281892 30 10.398342 Anserini +test50 Q0 14089410 1 12.405709 Anserini +test50 Q0 14089411 2 11.893525 Anserini +test50 Q0 6181380 3 11.445936 Anserini +test50 Q0 3250211 4 11.091920 Anserini +test50 Q0 13542522 5 10.983656 Anserini +test50 Q0 8777371 6 10.875299 Anserini +test50 Q0 19695045 7 10.654131 Anserini +test50 Q0 13555142 8 10.642598 Anserini +test50 Q0 20380057 9 10.576376 Anserini +test50 Q0 20382260 10 10.512503 Anserini +test50 Q0 13390325 11 10.478900 Anserini +test50 Q0 13390314 12 10.404203 Anserini +test50 Q0 13390327 13 10.330706 Anserini +test50 Q0 12615011 14 9.984424 Anserini +test50 Q0 13390322 15 9.889984 Anserini +test50 Q0 13799505 16 9.862782 Anserini +test50 Q0 11018204 17 9.814030 Anserini +test50 Q0 3250186 18 9.693320 Anserini +test50 Q0 13012025 19 9.639878 Anserini +test50 Q0 3250189 20 9.515131 Anserini +test50 Q0 10004310 21 9.489140 Anserini +test50 Q0 14529074 22 9.379534 Anserini +test50 Q0 14171823 23 9.299079 Anserini +test50 Q0 3250181 24 9.240229 Anserini +test50 Q0 3250188 25 9.191049 Anserini +test50 Q0 9454867 26 9.179682 Anserini +test50 Q0 5201873 27 9.148240 Anserini +test50 Q0 3250200 28 9.094794 Anserini +test50 Q0 13542501 29 9.053367 Anserini +test50 Q0 3250209 30 9.050108 Anserini +test500 Q0 485782 1 10.372609 Anserini +test500 Q0 344319 2 10.244729 Anserini +test500 Q0 10315305 3 10.158378 Anserini +test500 Q0 444103 4 9.997695 Anserini +test500 Q0 1982170 5 9.966614 Anserini +test500 Q0 344126 6 9.926914 Anserini +test500 Q0 16015188 7 9.869782 Anserini +test500 Q0 11080331 8 9.835203 Anserini +test500 Q0 670866 9 9.790679 Anserini +test500 Q0 662066 10 9.769074 Anserini +test500 Q0 251900 11 9.753240 Anserini +test500 Q0 407912 12 9.749861 Anserini +test500 Q0 2440188 13 9.700578 Anserini +test500 Q0 767801 14 9.688688 Anserini +test500 Q0 774602 15 9.590183 Anserini +test500 Q0 14604545 16 9.574123 Anserini +test500 Q0 779456 17 9.569314 Anserini +test500 Q0 510749 18 9.560349 Anserini +test500 Q0 86797 19 9.543488 Anserini +test500 Q0 670937 20 9.504339 Anserini +test500 Q0 7295606 21 9.495294 Anserini +test500 Q0 2240328 22 9.461999 Anserini +test500 Q0 15344490 23 9.459207 Anserini +test500 Q0 1091497 24 9.444857 Anserini +test500 Q0 2955078 25 9.411184 Anserini +test500 Q0 1518661 26 9.350987 Anserini +test500 Q0 35273 27 9.321470 Anserini +test500 Q0 2019255 28 9.319466 Anserini +test500 Q0 662154 29 9.304455 Anserini +test500 Q0 3968755 30 9.304455 Anserini +test501 Q0 516174 1 11.666976 Anserini +test501 Q0 15350917 2 10.927861 Anserini +test501 Q0 15024048 3 10.589469 Anserini +test501 Q0 572572 4 10.547667 Anserini +test501 Q0 277254 5 10.547667 Anserini +test501 Q0 2856644 6 10.514887 Anserini +test501 Q0 1853409 7 10.505206 Anserini +test501 Q0 16278002 8 10.500739 Anserini +test501 Q0 227957 9 10.488919 Anserini +test501 Q0 3773738 10 10.437113 Anserini +test501 Q0 12684890 11 10.432018 Anserini +test501 Q0 2603499 12 10.417382 Anserini +test501 Q0 12684889 13 10.355783 Anserini +test501 Q0 5576010 14 10.349159 Anserini +test501 Q0 4637920 15 10.347834 Anserini +test501 Q0 19399821 16 10.330661 Anserini +test501 Q0 3646289 17 10.295033 Anserini +test501 Q0 7575720 18 10.261151 Anserini +test501 Q0 14700100 19 10.209884 Anserini +test501 Q0 1710862 20 10.184635 Anserini +test501 Q0 277253 21 10.133491 Anserini +test501 Q0 12368938 22 10.100271 Anserini +test501 Q0 4836187 23 10.097995 Anserini +test501 Q0 5026942 24 10.079787 Anserini +test501 Q0 5635008 25 10.070330 Anserini +test501 Q0 1303975 26 10.001429 Anserini +test501 Q0 15159299 27 9.998520 Anserini +test501 Q0 3901550 28 9.995941 Anserini +test501 Q0 4023021 29 9.986135 Anserini +test501 Q0 501065 30 9.903570 Anserini +test502 Q0 710759 1 13.313314 Anserini +test502 Q0 14428038 2 13.310183 Anserini +test502 Q0 14130221 3 12.130271 Anserini +test502 Q0 2581859 4 12.075823 Anserini +test502 Q0 19086691 5 11.812976 Anserini +test502 Q0 14000438 6 11.624879 Anserini +test502 Q0 18700433 7 11.539661 Anserini +test502 Q0 14430853 8 11.538572 Anserini +test502 Q0 14063863 9 11.444110 Anserini +test502 Q0 8859102 10 11.442837 Anserini +test502 Q0 14429420 11 11.431295 Anserini +test502 Q0 14429445 12 11.408696 Anserini +test502 Q0 13561898 13 11.392059 Anserini +test502 Q0 13715367 14 11.367605 Anserini +test502 Q0 10463339 15 11.253837 Anserini +test502 Q0 3077043 16 11.248734 Anserini +test502 Q0 10463333 17 11.206819 Anserini +test502 Q0 14536274 18 11.194550 Anserini +test502 Q0 1543274 19 11.181886 Anserini +test502 Q0 13715360 20 11.125904 Anserini +test502 Q0 1273033 21 11.114088 Anserini +test502 Q0 4516927 22 11.082558 Anserini +test502 Q0 14425342 23 11.024456 Anserini +test502 Q0 1788212 24 10.990403 Anserini +test502 Q0 9692501 25 10.951902 Anserini +test502 Q0 9297776 26 10.918101 Anserini +test502 Q0 5574848 27 10.860699 Anserini +test502 Q0 14425368 28 10.853824 Anserini +test502 Q0 4052927 29 10.837624 Anserini +test502 Q0 16954385 30 10.828168 Anserini +test503 Q0 8861647 1 18.297995 Anserini +test503 Q0 9929672 2 16.937363 Anserini +test503 Q0 7286440 3 16.730209 Anserini +test503 Q0 7286439 4 15.845984 Anserini +test503 Q0 7258259 5 15.755321 Anserini +test503 Q0 1814287 6 15.697765 Anserini +test503 Q0 7258258 7 15.625900 Anserini +test503 Q0 13401453 8 15.369079 Anserini +test503 Q0 7749845 9 15.230711 Anserini +test503 Q0 14893476 10 15.230711 Anserini +test503 Q0 1531361 11 15.145993 Anserini +test503 Q0 13401452 12 15.086539 Anserini +test503 Q0 15521021 13 14.680243 Anserini +test503 Q0 17339233 14 14.680243 Anserini +test503 Q0 3160237 15 14.561113 Anserini +test503 Q0 5961596 16 14.438444 Anserini +test503 Q0 7258257 17 14.438444 Anserini +test503 Q0 14893477 18 14.438444 Anserini +test503 Q0 15200754 19 14.422882 Anserini +test503 Q0 11806134 20 14.406409 Anserini +test503 Q0 11806135 21 14.406409 Anserini +test503 Q0 3160238 22 14.368806 Anserini +test503 Q0 6674473 23 14.318688 Anserini +test503 Q0 14917478 24 14.317446 Anserini +test503 Q0 15200746 25 14.311618 Anserini +test503 Q0 620871 26 14.285071 Anserini +test503 Q0 12371230 27 14.272727 Anserini +test503 Q0 17339230 28 14.272727 Anserini +test503 Q0 606216 29 14.232469 Anserini +test503 Q0 628830 30 14.232469 Anserini +test504 Q0 11091887 1 15.366913 Anserini +test504 Q0 7490814 2 14.917131 Anserini +test504 Q0 7620985 3 14.746936 Anserini +test504 Q0 5163465 4 14.544179 Anserini +test504 Q0 4796029 5 14.347063 Anserini +test504 Q0 8940698 6 14.228052 Anserini +test504 Q0 14643447 7 14.207529 Anserini +test504 Q0 6410941 8 14.205479 Anserini +test504 Q0 3849269 9 14.000003 Anserini +test504 Q0 5439259 10 13.996111 Anserini +test504 Q0 1040943 11 13.925842 Anserini +test504 Q0 4979394 12 13.921625 Anserini +test504 Q0 4684316 13 13.788257 Anserini +test504 Q0 4299473 14 13.704306 Anserini +test504 Q0 3340018 15 13.692040 Anserini +test504 Q0 3283341 16 13.687658 Anserini +test504 Q0 4684654 17 13.687044 Anserini +test504 Q0 7490815 18 13.599736 Anserini +test504 Q0 6087907 19 13.588667 Anserini +test504 Q0 13742180 20 13.445363 Anserini +test504 Q0 3639189 21 13.400981 Anserini +test504 Q0 6761118 22 13.171974 Anserini +test504 Q0 5529096 23 13.171974 Anserini +test504 Q0 13518746 24 13.075508 Anserini +test504 Q0 4684643 25 13.064651 Anserini +test504 Q0 12616861 26 13.064651 Anserini +test504 Q0 10158281 27 13.029589 Anserini +test504 Q0 811289 28 12.959140 Anserini +test504 Q0 8038853 29 12.959140 Anserini +test504 Q0 1032285 30 12.943575 Anserini +test505 Q0 20362400 1 17.278418 Anserini +test505 Q0 20362390 2 17.003534 Anserini +test505 Q0 20362443 3 16.209923 Anserini +test505 Q0 17031091 4 15.991457 Anserini +test505 Q0 20362388 5 15.971666 Anserini +test505 Q0 20362449 6 15.765956 Anserini +test505 Q0 20362398 7 15.693995 Anserini +test505 Q0 20362386 8 15.676163 Anserini +test505 Q0 20362396 9 15.377057 Anserini +test505 Q0 19125147 10 15.223830 Anserini +test505 Q0 20362431 11 15.156545 Anserini +test505 Q0 20362403 12 15.064721 Anserini +test505 Q0 20362405 13 14.791531 Anserini +test505 Q0 20362410 14 14.786101 Anserini +test505 Q0 20362444 15 14.782518 Anserini +test505 Q0 20362445 16 14.660194 Anserini +test505 Q0 20362492 17 14.605457 Anserini +test505 Q0 20362389 18 14.598447 Anserini +test505 Q0 19125134 19 14.587914 Anserini +test505 Q0 20362503 20 14.572667 Anserini +test505 Q0 19125118 21 14.489805 Anserini +test505 Q0 20362409 22 14.481210 Anserini +test505 Q0 20362401 23 14.437825 Anserini +test505 Q0 19125110 24 14.371205 Anserini +test505 Q0 20463231 25 14.293572 Anserini +test505 Q0 20362438 26 14.254997 Anserini +test505 Q0 20362513 27 14.176319 Anserini +test505 Q0 20362433 28 14.149513 Anserini +test505 Q0 20362411 29 14.115610 Anserini +test505 Q0 20362404 30 14.051009 Anserini +test506 Q0 2418775 1 13.960535 Anserini +test506 Q0 5358957 2 12.959322 Anserini +test506 Q0 5358961 3 12.959322 Anserini +test506 Q0 11075344 4 12.766569 Anserini +test506 Q0 2418809 5 12.763064 Anserini +test506 Q0 2418785 6 12.668131 Anserini +test506 Q0 2418784 7 12.183716 Anserini +test506 Q0 2418786 8 12.107431 Anserini +test506 Q0 2418776 9 12.092032 Anserini +test506 Q0 2418811 10 12.092032 Anserini +test506 Q0 11075346 11 12.030016 Anserini +test506 Q0 5358960 12 11.968635 Anserini +test506 Q0 2418810 13 11.968635 Anserini +test506 Q0 12141271 14 11.867969 Anserini +test506 Q0 12141273 15 11.867969 Anserini +test506 Q0 12312110 16 11.842078 Anserini +test506 Q0 2418803 17 11.511499 Anserini +test506 Q0 14956605 18 11.468515 Anserini +test506 Q0 2418806 19 11.462219 Anserini +test506 Q0 2418800 20 11.441824 Anserini +test506 Q0 12312109 21 11.416325 Anserini +test506 Q0 2418801 22 11.373003 Anserini +test506 Q0 2811627 23 11.319534 Anserini +test506 Q0 2418802 24 11.305023 Anserini +test506 Q0 9249566 25 11.305023 Anserini +test506 Q0 2418804 26 11.299658 Anserini +test506 Q0 6317221 27 11.229349 Anserini +test506 Q0 6317206 28 11.229349 Anserini +test506 Q0 10811857 29 11.084305 Anserini +test506 Q0 2811494 30 11.067990 Anserini +test507 Q0 18545321 1 21.038723 Anserini +test507 Q0 18545328 2 20.082190 Anserini +test507 Q0 4679928 3 20.056828 Anserini +test507 Q0 18545323 4 19.991369 Anserini +test507 Q0 18545326 5 19.918495 Anserini +test507 Q0 5591005 6 19.718382 Anserini +test507 Q0 18545322 7 19.668381 Anserini +test507 Q0 8045168 8 19.588333 Anserini +test507 Q0 13047216 9 19.585354 Anserini +test507 Q0 51928 10 18.823988 Anserini +test507 Q0 8045151 11 18.756468 Anserini +test507 Q0 18545315 12 18.754833 Anserini +test507 Q0 19628952 13 18.439917 Anserini +test507 Q0 8045169 14 18.312500 Anserini +test507 Q0 119187 15 18.132439 Anserini +test507 Q0 6592007 16 18.092161 Anserini +test507 Q0 18545325 17 17.933670 Anserini +test507 Q0 8045164 18 17.718327 Anserini +test507 Q0 5590970 19 17.327370 Anserini +test507 Q0 18545316 20 17.061611 Anserini +test507 Q0 8045174 21 16.950874 Anserini +test507 Q0 13595942 22 16.863056 Anserini +test507 Q0 18545327 23 16.730667 Anserini +test507 Q0 4850913 24 16.669365 Anserini +test507 Q0 51927 25 16.667484 Anserini +test507 Q0 33067 26 16.617508 Anserini +test507 Q0 3321120 27 16.524895 Anserini +test507 Q0 119139 28 16.513704 Anserini +test507 Q0 137507 29 16.450945 Anserini +test507 Q0 18545324 30 16.358807 Anserini +test508 Q0 19432887 1 11.954118 Anserini +test508 Q0 593893 2 11.526157 Anserini +test508 Q0 4394397 3 11.102510 Anserini +test508 Q0 12205021 4 11.088470 Anserini +test508 Q0 19432888 5 10.973919 Anserini +test508 Q0 593879 6 10.802238 Anserini +test508 Q0 19432889 7 10.732728 Anserini +test508 Q0 19716374 8 10.530033 Anserini +test508 Q0 593875 9 10.459112 Anserini +test508 Q0 19432891 10 10.403095 Anserini +test508 Q0 20035097 11 10.386287 Anserini +test508 Q0 593876 12 10.303306 Anserini +test508 Q0 593883 13 10.249829 Anserini +test508 Q0 1993553 14 10.145302 Anserini +test508 Q0 11159137 15 10.107831 Anserini +test508 Q0 13543570 16 10.057696 Anserini +test508 Q0 5081348 17 10.017190 Anserini +test508 Q0 11315194 18 9.973989 Anserini +test508 Q0 15533639 19 9.929802 Anserini +test508 Q0 4968024 20 9.906570 Anserini +test508 Q0 593905 21 9.843973 Anserini +test508 Q0 17081032 22 9.824301 Anserini +test508 Q0 17681006 23 9.769442 Anserini +test508 Q0 3770513 24 9.702729 Anserini +test508 Q0 2260310 25 9.616554 Anserini +test508 Q0 2504619 26 9.613315 Anserini +test508 Q0 983642 27 9.613315 Anserini +test508 Q0 17681016 28 9.561543 Anserini +test508 Q0 5081350 29 9.551110 Anserini +test508 Q0 5081440 30 9.551075 Anserini +test509 Q0 18950704 1 20.206306 Anserini +test509 Q0 18950701 2 19.516376 Anserini +test509 Q0 14572597 3 19.291401 Anserini +test509 Q0 19482298 4 19.239576 Anserini +test509 Q0 17860946 5 18.365717 Anserini +test509 Q0 14572582 6 18.132250 Anserini +test509 Q0 19482299 7 18.067646 Anserini +test509 Q0 10248595 8 17.840162 Anserini +test509 Q0 18832362 9 17.762302 Anserini +test509 Q0 10248572 10 17.730289 Anserini +test509 Q0 10248582 11 17.562370 Anserini +test509 Q0 14572591 12 17.464680 Anserini +test509 Q0 15603122 13 17.306713 Anserini +test509 Q0 15552179 14 17.070536 Anserini +test509 Q0 15603129 15 17.066652 Anserini +test509 Q0 14572613 16 16.921352 Anserini +test509 Q0 14572616 17 16.861301 Anserini +test509 Q0 14852801 18 16.836613 Anserini +test509 Q0 16062975 19 16.777941 Anserini +test509 Q0 15552187 20 16.739433 Anserini +test509 Q0 12038746 21 16.650177 Anserini +test509 Q0 16777402 22 16.621033 Anserini +test509 Q0 7302481 23 16.549997 Anserini +test509 Q0 16777401 24 16.547373 Anserini +test509 Q0 16777404 25 16.547373 Anserini +test509 Q0 15603124 26 16.521196 Anserini +test509 Q0 17260254 27 16.474375 Anserini +test509 Q0 18742982 28 16.383091 Anserini +test509 Q0 20032993 29 16.203358 Anserini +test509 Q0 17993781 30 16.120100 Anserini +test51 Q0 4720444 1 16.879320 Anserini +test51 Q0 1482947 2 16.729919 Anserini +test51 Q0 17041309 3 16.574314 Anserini +test51 Q0 18294667 4 16.492414 Anserini +test51 Q0 3229975 5 16.333742 Anserini +test51 Q0 17041306 6 16.318783 Anserini +test51 Q0 11767612 7 16.271046 Anserini +test51 Q0 17041279 8 16.223021 Anserini +test51 Q0 2712032 9 16.143820 Anserini +test51 Q0 19834845 10 16.114201 Anserini +test51 Q0 2581071 11 16.050335 Anserini +test51 Q0 9748875 12 15.873574 Anserini +test51 Q0 2581070 13 15.753395 Anserini +test51 Q0 17041345 14 15.510953 Anserini +test51 Q0 18294665 15 15.250000 Anserini +test51 Q0 9748874 16 14.992322 Anserini +test51 Q0 18294677 17 14.935899 Anserini +test51 Q0 2712011 18 14.883540 Anserini +test51 Q0 17041344 19 14.870357 Anserini +test51 Q0 2737845 20 14.856404 Anserini +test51 Q0 2737849 21 14.590122 Anserini +test51 Q0 4226676 22 14.481602 Anserini +test51 Q0 11767613 23 14.467165 Anserini +test51 Q0 1482948 24 14.425676 Anserini +test51 Q0 1482964 25 14.379913 Anserini +test51 Q0 7669410 26 14.291267 Anserini +test51 Q0 8542891 27 14.282379 Anserini +test51 Q0 9748876 28 14.193379 Anserini +test51 Q0 2540934 29 14.176715 Anserini +test51 Q0 1482970 30 14.146350 Anserini +test510 Q0 1581497 1 14.287735 Anserini +test510 Q0 8466965 2 14.156245 Anserini +test510 Q0 20634235 3 14.045064 Anserini +test510 Q0 1975273 4 13.306356 Anserini +test510 Q0 1666585 5 12.941296 Anserini +test510 Q0 20634234 6 12.462030 Anserini +test510 Q0 419793 7 12.460896 Anserini +test510 Q0 2702454 8 12.367695 Anserini +test510 Q0 4099651 9 12.351356 Anserini +test510 Q0 20634236 10 12.254553 Anserini +test510 Q0 776286 11 12.250051 Anserini +test510 Q0 100969 12 12.204992 Anserini +test510 Q0 19743771 13 11.952535 Anserini +test510 Q0 12619275 14 11.856256 Anserini +test510 Q0 9396115 15 11.817004 Anserini +test510 Q0 15378558 16 11.636488 Anserini +test510 Q0 2702456 17 11.555674 Anserini +test510 Q0 776287 18 11.473867 Anserini +test510 Q0 2363360 19 11.402449 Anserini +test510 Q0 19743778 20 11.353181 Anserini +test510 Q0 1374204 21 11.349109 Anserini +test510 Q0 1854695 22 11.302085 Anserini +test510 Q0 419791 23 11.301648 Anserini +test510 Q0 1843486 24 11.229526 Anserini +test510 Q0 19308250 25 11.160600 Anserini +test510 Q0 1975272 26 11.091290 Anserini +test510 Q0 1782141 27 11.084486 Anserini +test510 Q0 9703354 28 11.081805 Anserini +test510 Q0 2196064 29 11.060728 Anserini +test510 Q0 2451661 30 11.046305 Anserini +test511 Q0 5121742 1 10.936079 Anserini +test511 Q0 9303124 2 10.435762 Anserini +test511 Q0 13822906 3 10.295433 Anserini +test511 Q0 3801045 4 10.140032 Anserini +test511 Q0 4331826 5 10.125565 Anserini +test511 Q0 6935659 6 10.123837 Anserini +test511 Q0 8330521 7 10.050027 Anserini +test511 Q0 3017757 8 9.941939 Anserini +test511 Q0 8368053 9 9.912166 Anserini +test511 Q0 17110291 10 9.809681 Anserini +test511 Q0 1608183 11 9.737156 Anserini +test511 Q0 5104473 12 9.736410 Anserini +test511 Q0 17840157 13 9.568578 Anserini +test511 Q0 1547697 14 9.502883 Anserini +test511 Q0 10103592 15 9.432454 Anserini +test511 Q0 3048746 16 9.420065 Anserini +test511 Q0 3986251 17 9.416819 Anserini +test511 Q0 1915202 18 9.401657 Anserini +test511 Q0 15549904 19 9.376310 Anserini +test511 Q0 3986261 20 9.340422 Anserini +test511 Q0 6191991 21 9.314135 Anserini +test511 Q0 2804641 22 9.291250 Anserini +test511 Q0 6010338 23 9.282041 Anserini +test511 Q0 6398207 24 9.269466 Anserini +test511 Q0 367460 25 9.258262 Anserini +test511 Q0 15843006 26 9.251682 Anserini +test511 Q0 8400547 27 9.195774 Anserini +test511 Q0 3213856 28 9.125195 Anserini +test511 Q0 8718957 29 9.122285 Anserini +test511 Q0 1634969 30 9.109721 Anserini +test512 Q0 12613021 1 22.049192 Anserini +test512 Q0 19128303 2 21.296131 Anserini +test512 Q0 19128306 3 21.044302 Anserini +test512 Q0 14969574 4 21.021473 Anserini +test512 Q0 14995616 5 20.723370 Anserini +test512 Q0 14995623 6 20.723370 Anserini +test512 Q0 20661439 7 20.540157 Anserini +test512 Q0 20022022 8 20.507244 Anserini +test512 Q0 20645848 9 20.498350 Anserini +test512 Q0 20022026 10 20.378681 Anserini +test512 Q0 20662086 11 20.276627 Anserini +test512 Q0 19605415 12 20.263319 Anserini +test512 Q0 20662083 13 20.234186 Anserini +test512 Q0 508393 14 20.087084 Anserini +test512 Q0 13809734 15 19.992332 Anserini +test512 Q0 20605479 16 19.864605 Anserini +test512 Q0 18179110 17 19.780466 Anserini +test512 Q0 16492118 18 19.676926 Anserini +test512 Q0 14927508 19 19.539736 Anserini +test512 Q0 11145443 20 19.518211 Anserini +test512 Q0 14927509 21 19.514324 Anserini +test512 Q0 5892057 22 19.478558 Anserini +test512 Q0 10038498 23 19.406715 Anserini +test512 Q0 16492115 24 19.390486 Anserini +test512 Q0 15921575 25 19.348934 Anserini +test512 Q0 14927506 26 19.310493 Anserini +test512 Q0 20605483 27 19.247852 Anserini +test512 Q0 9588218 28 19.234941 Anserini +test512 Q0 7962360 29 19.187332 Anserini +test512 Q0 14927507 30 19.177650 Anserini +test513 Q0 20274862 1 10.526004 Anserini +test513 Q0 18975387 2 9.761753 Anserini +test513 Q0 3115243 3 9.485388 Anserini +test513 Q0 236435 4 9.448426 Anserini +test513 Q0 1814012 5 9.391379 Anserini +test513 Q0 16612060 6 9.354322 Anserini +test513 Q0 1704381 7 9.295094 Anserini +test513 Q0 18975386 8 9.242079 Anserini +test513 Q0 965530 9 9.219760 Anserini +test513 Q0 17416785 10 9.196980 Anserini +test513 Q0 135456 11 9.132982 Anserini +test513 Q0 19714686 12 9.016756 Anserini +test513 Q0 9330531 13 8.955242 Anserini +test513 Q0 18999897 14 8.902570 Anserini +test513 Q0 14946498 15 8.898943 Anserini +test513 Q0 18314354 16 8.873916 Anserini +test513 Q0 3505108 17 8.864021 Anserini +test513 Q0 12379617 18 8.816894 Anserini +test513 Q0 2562196 19 8.803892 Anserini +test513 Q0 1680833 20 8.791305 Anserini +test513 Q0 1680819 21 8.751222 Anserini +test513 Q0 19714698 22 8.674191 Anserini +test513 Q0 9199953 23 8.607332 Anserini +test513 Q0 333027 24 8.605874 Anserini +test513 Q0 11736602 25 8.595891 Anserini +test513 Q0 7893029 26 8.552979 Anserini +test513 Q0 16682787 27 8.549807 Anserini +test513 Q0 11736603 28 8.539909 Anserini +test513 Q0 15797713 29 8.520463 Anserini +test513 Q0 18314351 30 8.519587 Anserini +test514 Q0 20029862 1 11.048188 Anserini +test514 Q0 20080403 2 10.723930 Anserini +test514 Q0 7506530 3 10.641477 Anserini +test514 Q0 18281109 4 10.639511 Anserini +test514 Q0 21005362 5 10.639511 Anserini +test514 Q0 19536780 6 10.461197 Anserini +test514 Q0 19374755 7 10.451633 Anserini +test514 Q0 20577980 8 10.366950 Anserini +test514 Q0 14831450 9 10.359664 Anserini +test514 Q0 10650744 10 10.279867 Anserini +test514 Q0 20577997 11 10.258953 Anserini +test514 Q0 15997291 12 10.258953 Anserini +test514 Q0 19346033 13 10.135067 Anserini +test514 Q0 17159689 14 10.107264 Anserini +test514 Q0 12636785 15 9.962349 Anserini +test514 Q0 14610091 16 9.929741 Anserini +test514 Q0 18281107 17 9.925770 Anserini +test514 Q0 20578081 18 9.808027 Anserini +test514 Q0 252440 19 9.767725 Anserini +test514 Q0 7786252 20 9.763163 Anserini +test514 Q0 13383955 21 9.760724 Anserini +test514 Q0 11132621 22 9.756238 Anserini +test514 Q0 14899128 23 9.756238 Anserini +test514 Q0 18836713 24 9.728897 Anserini +test514 Q0 6637330 25 9.698089 Anserini +test514 Q0 20250940 26 9.692689 Anserini +test514 Q0 6344048 27 9.688349 Anserini +test514 Q0 18601256 28 9.679894 Anserini +test514 Q0 6637328 29 9.632111 Anserini +test514 Q0 17571169 30 9.620808 Anserini +test515 Q0 19036885 1 14.218696 Anserini +test515 Q0 3826735 2 13.660081 Anserini +test515 Q0 3951537 3 13.073355 Anserini +test515 Q0 16525477 4 13.064831 Anserini +test515 Q0 11329653 5 12.505169 Anserini +test515 Q0 11329655 6 12.461621 Anserini +test515 Q0 11329654 7 12.418386 Anserini +test515 Q0 4235072 8 12.058623 Anserini +test515 Q0 7730167 9 11.984576 Anserini +test515 Q0 1688706 10 11.911541 Anserini +test515 Q0 573218 11 11.815744 Anserini +test515 Q0 566618 12 11.767673 Anserini +test515 Q0 1688712 13 11.745877 Anserini +test515 Q0 1542153 14 11.591649 Anserini +test515 Q0 573219 15 11.577367 Anserini +test515 Q0 1787560 16 11.469624 Anserini +test515 Q0 2948162 17 11.394829 Anserini +test515 Q0 1688722 18 11.224373 Anserini +test515 Q0 2012753 19 11.224373 Anserini +test515 Q0 11847439 20 11.099270 Anserini +test515 Q0 5552920 21 11.027794 Anserini +test515 Q0 483000 22 10.998062 Anserini +test515 Q0 13176713 23 10.905343 Anserini +test515 Q0 6245283 24 10.876159 Anserini +test515 Q0 15428014 25 10.844296 Anserini +test515 Q0 10964507 26 10.774890 Anserini +test515 Q0 57561 27 10.714006 Anserini +test515 Q0 11237835 28 10.635058 Anserini +test515 Q0 1695349 29 10.542652 Anserini +test515 Q0 566607 30 10.542145 Anserini +test516 Q0 3213577 1 13.028393 Anserini +test516 Q0 3364829 2 12.861887 Anserini +test516 Q0 7051648 3 12.087692 Anserini +test516 Q0 575041 4 11.911030 Anserini +test516 Q0 7060973 5 11.894197 Anserini +test516 Q0 8421588 6 11.803825 Anserini +test516 Q0 404973 7 11.803825 Anserini +test516 Q0 14564561 8 11.785643 Anserini +test516 Q0 3364843 9 11.782454 Anserini +test516 Q0 4822308 10 11.662866 Anserini +test516 Q0 404982 11 11.650167 Anserini +test516 Q0 7667385 12 11.627276 Anserini +test516 Q0 404956 13 11.521026 Anserini +test516 Q0 404984 14 11.521026 Anserini +test516 Q0 4966475 15 11.466924 Anserini +test516 Q0 5893711 16 11.424758 Anserini +test516 Q0 11930959 17 11.389165 Anserini +test516 Q0 7498592 18 11.327971 Anserini +test516 Q0 1470072 19 11.184494 Anserini +test516 Q0 12995244 20 11.100029 Anserini +test516 Q0 6152697 21 11.059202 Anserini +test516 Q0 17390840 22 10.976871 Anserini +test516 Q0 7498593 23 10.942465 Anserini +test516 Q0 8254376 24 10.831275 Anserini +test516 Q0 404980 25 10.741016 Anserini +test516 Q0 404974 26 10.717941 Anserini +test516 Q0 3048029 27 10.685646 Anserini +test516 Q0 7051650 28 10.685646 Anserini +test516 Q0 7051640 29 10.685646 Anserini +test516 Q0 7498580 30 10.685646 Anserini +test517 Q0 6457583 1 8.571223 Anserini +test517 Q0 198373 2 8.243709 Anserini +test517 Q0 8054475 3 8.122814 Anserini +test517 Q0 9165657 4 7.749764 Anserini +test517 Q0 3155007 5 7.623253 Anserini +test517 Q0 2978387 6 7.623215 Anserini +test517 Q0 7235825 7 7.496541 Anserini +test517 Q0 257518 8 7.439415 Anserini +test517 Q0 9448091 9 7.430263 Anserini +test517 Q0 482763 10 7.306444 Anserini +test517 Q0 20602289 11 7.268109 Anserini +test517 Q0 12358940 12 7.260099 Anserini +test517 Q0 10652900 13 7.260099 Anserini +test517 Q0 15558113 14 7.121007 Anserini +test517 Q0 621113 15 7.121007 Anserini +test517 Q0 5323955 16 7.000087 Anserini +test517 Q0 3114546 17 7.000087 Anserini +test517 Q0 9784521 18 6.947155 Anserini +test517 Q0 9165658 19 6.936540 Anserini +test517 Q0 2355090 20 6.925237 Anserini +test517 Q0 231560 21 6.874709 Anserini +test517 Q0 256664 22 6.874709 Anserini +test517 Q0 1807880 23 6.873558 Anserini +test517 Q0 17429892 24 6.867788 Anserini +test517 Q0 2755023 25 6.863573 Anserini +test517 Q0 17803171 26 6.858305 Anserini +test517 Q0 16224484 27 6.854208 Anserini +test517 Q0 19762597 28 6.799434 Anserini +test517 Q0 8087507 29 6.780504 Anserini +test517 Q0 4905119 30 6.771874 Anserini +test518 Q0 2611748 1 9.084448 Anserini +test518 Q0 3682875 2 9.002385 Anserini +test518 Q0 13319211 3 8.756380 Anserini +test518 Q0 13567371 4 8.609673 Anserini +test518 Q0 11182749 5 8.591975 Anserini +test518 Q0 13236798 6 8.582966 Anserini +test518 Q0 6132302 7 8.494406 Anserini +test518 Q0 7361476 8 8.494406 Anserini +test518 Q0 20431139 9 8.333752 Anserini +test518 Q0 17567001 10 8.224482 Anserini +test518 Q0 15118666 11 8.178892 Anserini +test518 Q0 19134349 12 8.178892 Anserini +test518 Q0 16603264 13 8.150131 Anserini +test518 Q0 9204268 14 8.130388 Anserini +test518 Q0 16455819 15 8.103679 Anserini +test518 Q0 11408133 16 8.068596 Anserini +test518 Q0 14477331 17 8.061193 Anserini +test518 Q0 4016345 18 8.029884 Anserini +test518 Q0 7868225 19 8.007704 Anserini +test518 Q0 7868229 20 8.007704 Anserini +test518 Q0 17291809 21 7.990920 Anserini +test518 Q0 6480463 22 7.980522 Anserini +test518 Q0 3928899 23 7.980522 Anserini +test518 Q0 16621615 24 7.976436 Anserini +test518 Q0 17876556 25 7.974249 Anserini +test518 Q0 6594895 26 7.966621 Anserini +test518 Q0 1350862 27 7.966621 Anserini +test518 Q0 19323863 28 7.914770 Anserini +test518 Q0 17721128 29 7.914770 Anserini +test518 Q0 19872434 30 7.914770 Anserini +test519 Q0 9439340 1 19.463322 Anserini +test519 Q0 9439342 2 18.312489 Anserini +test519 Q0 19710514 3 17.936102 Anserini +test519 Q0 19710501 4 17.710033 Anserini +test519 Q0 9439341 5 16.643356 Anserini +test519 Q0 13820279 6 15.920694 Anserini +test519 Q0 2653860 7 15.039456 Anserini +test519 Q0 11775024 8 14.859247 Anserini +test519 Q0 19152262 9 12.634486 Anserini +test519 Q0 19152266 10 12.574915 Anserini +test519 Q0 13820293 11 12.459524 Anserini +test519 Q0 168571 12 12.315945 Anserini +test519 Q0 9879151 13 12.193646 Anserini +test519 Q0 15293103 14 12.074025 Anserini +test519 Q0 2653859 15 11.887783 Anserini +test519 Q0 5123555 16 11.580111 Anserini +test519 Q0 2653857 17 11.547210 Anserini +test519 Q0 1427856 18 11.460719 Anserini +test519 Q0 7029969 19 10.926884 Anserini +test519 Q0 8241235 20 10.839288 Anserini +test519 Q0 12693545 21 10.697894 Anserini +test519 Q0 19677017 22 10.484859 Anserini +test519 Q0 12628723 23 10.430257 Anserini +test519 Q0 19677020 24 10.429252 Anserini +test519 Q0 12693547 25 10.429252 Anserini +test519 Q0 12317155 26 10.429252 Anserini +test519 Q0 12628722 27 10.383526 Anserini +test519 Q0 7142576 28 10.118956 Anserini +test519 Q0 7142573 29 10.035807 Anserini +test519 Q0 18064910 30 9.930689 Anserini +test52 Q0 4421944 1 12.983399 Anserini +test52 Q0 4924056 2 12.269033 Anserini +test52 Q0 18559312 3 11.975380 Anserini +test52 Q0 13261105 4 11.450982 Anserini +test52 Q0 15812158 5 11.436047 Anserini +test52 Q0 10028695 6 11.404892 Anserini +test52 Q0 11874277 7 11.146986 Anserini +test52 Q0 2898461 8 11.098195 Anserini +test52 Q0 10561305 9 11.089411 Anserini +test52 Q0 15531419 10 11.075965 Anserini +test52 Q0 15531418 11 11.075965 Anserini +test52 Q0 8001338 12 10.987316 Anserini +test52 Q0 17897693 13 10.583958 Anserini +test52 Q0 7851529 14 10.486067 Anserini +test52 Q0 9041635 15 10.388256 Anserini +test52 Q0 6153897 16 10.338036 Anserini +test52 Q0 4508233 17 10.235962 Anserini +test52 Q0 14170434 18 10.235962 Anserini +test52 Q0 11667621 19 10.158324 Anserini +test52 Q0 5712578 20 10.139926 Anserini +test52 Q0 20145273 21 10.088895 Anserini +test52 Q0 17317129 22 10.042511 Anserini +test52 Q0 14414370 23 10.039597 Anserini +test52 Q0 15641996 24 10.011495 Anserini +test52 Q0 5737703 25 10.006233 Anserini +test52 Q0 10181685 26 9.987067 Anserini +test52 Q0 12219961 27 9.985957 Anserini +test52 Q0 12310258 28 9.963638 Anserini +test52 Q0 8000688 29 9.951897 Anserini +test52 Q0 3952088 30 9.896017 Anserini +test520 Q0 16868840 1 11.911410 Anserini +test520 Q0 15178202 2 11.903447 Anserini +test520 Q0 9622586 3 11.188261 Anserini +test520 Q0 7621578 4 11.148502 Anserini +test520 Q0 7621591 5 11.047744 Anserini +test520 Q0 5839141 6 10.999352 Anserini +test520 Q0 12052480 7 10.828148 Anserini +test520 Q0 6476208 8 10.769094 Anserini +test520 Q0 15413340 9 10.634324 Anserini +test520 Q0 13647616 10 10.527931 Anserini +test520 Q0 16470499 11 10.445121 Anserini +test520 Q0 8247823 12 10.407362 Anserini +test520 Q0 15976714 13 10.400355 Anserini +test520 Q0 20498522 14 10.306202 Anserini +test520 Q0 20498523 15 10.306202 Anserini +test520 Q0 13581202 16 10.274043 Anserini +test520 Q0 4292364 17 10.234318 Anserini +test520 Q0 16577626 18 10.148541 Anserini +test520 Q0 13581652 19 10.118935 Anserini +test520 Q0 12624245 20 10.102839 Anserini +test520 Q0 17814725 21 10.091732 Anserini +test520 Q0 13077155 22 10.008157 Anserini +test520 Q0 16470500 23 9.993018 Anserini +test520 Q0 8856809 24 9.971191 Anserini +test520 Q0 15413341 25 9.960709 Anserini +test520 Q0 13906649 26 9.949236 Anserini +test520 Q0 12624287 27 9.948840 Anserini +test520 Q0 16969668 28 9.870755 Anserini +test520 Q0 18680669 29 9.866155 Anserini +test520 Q0 886738 30 9.801288 Anserini +test521 Q0 19554887 1 11.898602 Anserini +test521 Q0 13572619 2 11.364473 Anserini +test521 Q0 17745180 3 11.155169 Anserini +test521 Q0 4447727 4 11.036502 Anserini +test521 Q0 7301524 5 11.035433 Anserini +test521 Q0 19554895 6 10.848265 Anserini +test521 Q0 19777902 7 10.816428 Anserini +test521 Q0 17898779 8 10.625850 Anserini +test521 Q0 12479997 9 10.609076 Anserini +test521 Q0 13621731 10 10.565388 Anserini +test521 Q0 20006288 11 10.562566 Anserini +test521 Q0 19950366 12 10.487848 Anserini +test521 Q0 1271561 13 10.481433 Anserini +test521 Q0 4843835 14 10.442735 Anserini +test521 Q0 7350150 15 10.400818 Anserini +test521 Q0 13572601 16 10.319799 Anserini +test521 Q0 17898773 17 10.300676 Anserini +test521 Q0 20469018 18 10.262352 Anserini +test521 Q0 19122737 19 10.253757 Anserini +test521 Q0 20836737 20 10.203531 Anserini +test521 Q0 17898786 21 10.135202 Anserini +test521 Q0 20550638 22 10.092815 Anserini +test521 Q0 14771219 23 10.050257 Anserini +test521 Q0 9646544 24 10.042935 Anserini +test521 Q0 4490160 25 10.042935 Anserini +test521 Q0 20684830 26 9.994313 Anserini +test521 Q0 1489777 27 9.935488 Anserini +test521 Q0 922692 28 9.923688 Anserini +test521 Q0 20544586 29 9.916932 Anserini +test521 Q0 20268398 30 9.913664 Anserini +test522 Q0 18191935 1 13.170428 Anserini +test522 Q0 16389308 2 12.689640 Anserini +test522 Q0 17745173 3 12.583038 Anserini +test522 Q0 19226087 4 11.907855 Anserini +test522 Q0 19226073 5 11.817302 Anserini +test522 Q0 17745233 6 11.447852 Anserini +test522 Q0 18198588 7 11.240372 Anserini +test522 Q0 20716009 8 11.202056 Anserini +test522 Q0 17056595 9 10.701171 Anserini +test522 Q0 4725400 10 10.642023 Anserini +test522 Q0 18198589 11 10.640563 Anserini +test522 Q0 17056599 12 10.624931 Anserini +test522 Q0 17023726 13 10.615041 Anserini +test522 Q0 18177634 14 10.578411 Anserini +test522 Q0 17223052 15 10.540027 Anserini +test522 Q0 18198639 16 10.533392 Anserini +test522 Q0 10166447 17 10.467742 Anserini +test522 Q0 17028544 18 10.465435 Anserini +test522 Q0 20276908 19 10.464074 Anserini +test522 Q0 20276911 20 10.464074 Anserini +test522 Q0 7291194 21 10.448273 Anserini +test522 Q0 20379618 22 10.401910 Anserini +test522 Q0 18191930 23 10.309403 Anserini +test522 Q0 12688138 24 10.297538 Anserini +test522 Q0 7024011 25 10.291649 Anserini +test522 Q0 7778423 26 10.289149 Anserini +test522 Q0 17223055 27 10.259580 Anserini +test522 Q0 19226090 28 10.208158 Anserini +test522 Q0 18198636 29 10.207486 Anserini +test522 Q0 12688140 30 10.204535 Anserini +test523 Q0 5481626 1 19.237122 Anserini +test523 Q0 650641 2 18.908039 Anserini +test523 Q0 650689 3 18.066841 Anserini +test523 Q0 3546706 4 17.145514 Anserini +test523 Q0 19306984 5 16.730207 Anserini +test523 Q0 650642 6 16.668474 Anserini +test523 Q0 650691 7 16.615494 Anserini +test523 Q0 650629 8 16.396294 Anserini +test523 Q0 6525020 9 16.375355 Anserini +test523 Q0 650656 10 16.322557 Anserini +test523 Q0 650669 11 16.310217 Anserini +test523 Q0 650696 12 16.233757 Anserini +test523 Q0 7833387 13 16.228388 Anserini +test523 Q0 650684 14 16.086378 Anserini +test523 Q0 650670 15 15.997938 Anserini +test523 Q0 15896371 16 15.987219 Anserini +test523 Q0 6566746 17 15.932837 Anserini +test523 Q0 6566741 18 15.932837 Anserini +test523 Q0 650698 19 15.932837 Anserini +test523 Q0 15896370 20 15.932837 Anserini +test523 Q0 3767074 21 15.919607 Anserini +test523 Q0 11023431 22 15.839983 Anserini +test523 Q0 6566745 23 15.800259 Anserini +test523 Q0 6566743 24 15.698936 Anserini +test523 Q0 650646 25 15.689096 Anserini +test523 Q0 650690 26 15.592703 Anserini +test523 Q0 7515909 27 15.581621 Anserini +test523 Q0 4678540 28 15.581621 Anserini +test523 Q0 11179693 29 15.569006 Anserini +test523 Q0 12381494 30 15.486879 Anserini +test524 Q0 19093286 1 14.151193 Anserini +test524 Q0 20790853 2 12.729103 Anserini +test524 Q0 17014837 3 12.359975 Anserini +test524 Q0 17014828 4 12.331841 Anserini +test524 Q0 16008056 5 12.278965 Anserini +test524 Q0 16008048 6 12.002097 Anserini +test524 Q0 7199664 7 11.240639 Anserini +test524 Q0 15600600 8 11.037419 Anserini +test524 Q0 15600598 9 10.974273 Anserini +test524 Q0 17014833 10 10.937914 Anserini +test524 Q0 8065299 11 10.846787 Anserini +test524 Q0 17014842 12 10.690180 Anserini +test524 Q0 4970352 13 10.690180 Anserini +test524 Q0 17014838 14 10.652608 Anserini +test524 Q0 17014839 15 10.615314 Anserini +test524 Q0 20790851 16 10.614762 Anserini +test524 Q0 19334342 17 10.493341 Anserini +test524 Q0 20345930 18 10.464307 Anserini +test524 Q0 5658466 19 10.427265 Anserini +test524 Q0 14020660 20 10.300674 Anserini +test524 Q0 14915388 21 10.294941 Anserini +test524 Q0 16796423 22 10.294941 Anserini +test524 Q0 19530033 23 10.239832 Anserini +test524 Q0 19530029 24 10.239832 Anserini +test524 Q0 1380966 25 10.230778 Anserini +test524 Q0 1645143 26 10.215966 Anserini +test524 Q0 17213240 27 10.192233 Anserini +test524 Q0 17014843 28 10.185563 Anserini +test524 Q0 1812418 29 10.102902 Anserini +test524 Q0 7100287 30 10.098180 Anserini +test525 Q0 16187379 1 21.069216 Anserini +test525 Q0 14206624 2 20.073114 Anserini +test525 Q0 9908733 3 18.684187 Anserini +test525 Q0 16187381 4 18.270287 Anserini +test525 Q0 14206619 5 18.120266 Anserini +test525 Q0 9908723 6 18.025778 Anserini +test525 Q0 11393532 7 17.773836 Anserini +test525 Q0 9908721 8 17.675814 Anserini +test525 Q0 9908735 9 17.649521 Anserini +test525 Q0 11534994 10 17.423874 Anserini +test525 Q0 14179351 11 17.423874 Anserini +test525 Q0 9908731 12 17.423874 Anserini +test525 Q0 11528473 13 17.296320 Anserini +test525 Q0 11528487 14 17.296320 Anserini +test525 Q0 9908719 15 17.108770 Anserini +test525 Q0 11528467 16 16.962374 Anserini +test525 Q0 9908773 17 16.909626 Anserini +test525 Q0 14158441 18 16.845699 Anserini +test525 Q0 11528484 19 16.739784 Anserini +test525 Q0 9485278 20 16.713129 Anserini +test525 Q0 9908714 21 16.671333 Anserini +test525 Q0 11420273 22 16.582714 Anserini +test525 Q0 14206627 23 16.534063 Anserini +test525 Q0 14206621 24 16.405537 Anserini +test525 Q0 11528477 25 16.401985 Anserini +test525 Q0 14206633 26 16.401985 Anserini +test525 Q0 11528485 27 16.194756 Anserini +test525 Q0 14206636 28 16.194756 Anserini +test525 Q0 286765 29 16.139801 Anserini +test525 Q0 14179015 30 16.110689 Anserini +test526 Q0 4810030 1 20.100163 Anserini +test526 Q0 5725229 2 19.644442 Anserini +test526 Q0 5725231 3 19.495132 Anserini +test526 Q0 4810054 4 19.422293 Anserini +test526 Q0 591531 5 19.090652 Anserini +test526 Q0 1871098 6 18.740761 Anserini +test526 Q0 3276409 7 18.520731 Anserini +test526 Q0 591532 8 18.416895 Anserini +test526 Q0 3160313 9 18.330099 Anserini +test526 Q0 3160356 10 18.330099 Anserini +test526 Q0 8425017 11 18.145317 Anserini +test526 Q0 5725187 12 18.071009 Anserini +test526 Q0 3378765 13 18.016239 Anserini +test526 Q0 3378829 14 18.016239 Anserini +test526 Q0 1793253 15 17.868082 Anserini +test526 Q0 591552 16 17.851831 Anserini +test526 Q0 591573 17 17.807604 Anserini +test526 Q0 591578 18 17.790871 Anserini +test526 Q0 8425013 19 17.711338 Anserini +test526 Q0 206088 20 17.664261 Anserini +test526 Q0 3535474 21 17.659737 Anserini +test526 Q0 13425701 22 17.657118 Anserini +test526 Q0 591563 23 17.605036 Anserini +test526 Q0 1793252 24 17.499517 Anserini +test526 Q0 8665490 25 17.484451 Anserini +test526 Q0 7554958 26 17.480238 Anserini +test526 Q0 18868134 27 17.478264 Anserini +test526 Q0 1994081 28 17.388954 Anserini +test526 Q0 206070 29 17.342619 Anserini +test526 Q0 591558 30 17.340902 Anserini +test527 Q0 355527 1 11.068837 Anserini +test527 Q0 4211373 2 10.470537 Anserini +test527 Q0 4893886 3 10.401307 Anserini +test527 Q0 8775280 4 10.352087 Anserini +test527 Q0 20430708 5 10.338857 Anserini +test527 Q0 17719362 6 10.203056 Anserini +test527 Q0 14537056 7 10.198874 Anserini +test527 Q0 7353405 8 10.186507 Anserini +test527 Q0 19981768 9 10.111493 Anserini +test527 Q0 14737992 10 10.107996 Anserini +test527 Q0 8912814 11 10.090830 Anserini +test527 Q0 13298842 12 10.056281 Anserini +test527 Q0 523192 13 9.975154 Anserini +test527 Q0 7159523 14 9.949825 Anserini +test527 Q0 7807663 15 9.913480 Anserini +test527 Q0 9816292 16 9.904646 Anserini +test527 Q0 3389896 17 9.862008 Anserini +test527 Q0 14801900 18 9.851011 Anserini +test527 Q0 157091 19 9.829309 Anserini +test527 Q0 13227228 20 9.828479 Anserini +test527 Q0 18924470 21 9.819195 Anserini +test527 Q0 4248095 22 9.811869 Anserini +test527 Q0 19941660 23 9.803288 Anserini +test527 Q0 4844522 24 9.801866 Anserini +test527 Q0 2027710 25 9.781370 Anserini +test527 Q0 17043536 26 9.779251 Anserini +test527 Q0 2862395 27 9.748669 Anserini +test527 Q0 4555065 28 9.745611 Anserini +test527 Q0 12092385 29 9.579062 Anserini +test527 Q0 19893136 30 9.522446 Anserini +test528 Q0 10365139 1 9.804623 Anserini +test528 Q0 9423090 2 9.486882 Anserini +test528 Q0 16059930 3 9.368064 Anserini +test528 Q0 5064194 4 9.324434 Anserini +test528 Q0 12706115 5 9.101430 Anserini +test528 Q0 10365138 6 9.095515 Anserini +test528 Q0 2711737 7 9.073796 Anserini +test528 Q0 6005439 8 9.030232 Anserini +test528 Q0 20836156 9 9.030089 Anserini +test528 Q0 19153525 10 8.938033 Anserini +test528 Q0 10433979 11 8.914278 Anserini +test528 Q0 13961972 12 8.828518 Anserini +test528 Q0 9283746 13 8.779574 Anserini +test528 Q0 12495874 14 8.701651 Anserini +test528 Q0 9862773 15 8.695752 Anserini +test528 Q0 2041226 16 8.655684 Anserini +test528 Q0 3643267 17 8.655684 Anserini +test528 Q0 6089331 18 8.514646 Anserini +test528 Q0 14176034 19 8.497551 Anserini +test528 Q0 1877077 20 8.491080 Anserini +test528 Q0 17119879 21 8.489865 Anserini +test528 Q0 5243252 22 8.476034 Anserini +test528 Q0 14231374 23 8.355543 Anserini +test528 Q0 13847592 24 8.346300 Anserini +test528 Q0 11760887 25 8.337481 Anserini +test528 Q0 6656086 26 8.291159 Anserini +test528 Q0 8026373 27 8.289571 Anserini +test528 Q0 553983 28 8.269145 Anserini +test528 Q0 18227736 29 8.266255 Anserini +test528 Q0 18955188 30 8.262498 Anserini +test529 Q0 19470566 1 14.080805 Anserini +test529 Q0 19470584 2 13.888050 Anserini +test529 Q0 8838727 3 13.568202 Anserini +test529 Q0 20432485 4 13.406897 Anserini +test529 Q0 19470588 5 13.299739 Anserini +test529 Q0 8001773 6 13.179768 Anserini +test529 Q0 8001782 7 13.152323 Anserini +test529 Q0 19175230 8 12.774957 Anserini +test529 Q0 19470583 9 12.633708 Anserini +test529 Q0 13164566 10 12.577839 Anserini +test529 Q0 19020341 11 12.406551 Anserini +test529 Q0 15676825 12 12.362042 Anserini +test529 Q0 8001781 13 12.011539 Anserini +test529 Q0 19470586 14 11.870680 Anserini +test529 Q0 13686288 15 11.742577 Anserini +test529 Q0 19470585 16 11.627605 Anserini +test529 Q0 8838719 17 11.625758 Anserini +test529 Q0 4715486 18 11.607243 Anserini +test529 Q0 20432484 19 11.313629 Anserini +test529 Q0 2929910 20 11.296277 Anserini +test529 Q0 18350507 21 11.199580 Anserini +test529 Q0 19055107 22 11.152116 Anserini +test529 Q0 14515426 23 11.125250 Anserini +test529 Q0 17849611 24 11.092521 Anserini +test529 Q0 10921764 25 10.994428 Anserini +test529 Q0 18350521 26 10.963368 Anserini +test529 Q0 19470587 27 10.903712 Anserini +test529 Q0 7702067 28 10.883276 Anserini +test529 Q0 13686289 29 10.850083 Anserini +test529 Q0 18337999 30 10.737344 Anserini +test53 Q0 718201 1 10.696671 Anserini +test53 Q0 13611238 2 10.524531 Anserini +test53 Q0 10221096 3 10.392512 Anserini +test53 Q0 16126653 4 10.325807 Anserini +test53 Q0 16815947 5 10.262879 Anserini +test53 Q0 5495834 6 10.261667 Anserini +test53 Q0 20529149 7 10.255731 Anserini +test53 Q0 10852066 8 10.192221 Anserini +test53 Q0 6299436 9 10.173345 Anserini +test53 Q0 6578879 10 10.158587 Anserini +test53 Q0 4130330 11 10.116574 Anserini +test53 Q0 15997140 12 10.102095 Anserini +test53 Q0 11150226 13 9.970731 Anserini +test53 Q0 613766 14 9.963709 Anserini +test53 Q0 264225 15 9.877374 Anserini +test53 Q0 11258192 16 9.851704 Anserini +test53 Q0 5042435 17 9.794278 Anserini +test53 Q0 20492227 18 9.716648 Anserini +test53 Q0 16126650 19 9.702688 Anserini +test53 Q0 98948 20 9.702684 Anserini +test53 Q0 318569 21 9.685572 Anserini +test53 Q0 6804031 22 9.674911 Anserini +test53 Q0 13532437 23 9.653807 Anserini +test53 Q0 4097995 24 9.637957 Anserini +test53 Q0 3169829 25 9.588981 Anserini +test53 Q0 18659764 26 9.564229 Anserini +test53 Q0 3258205 27 9.484123 Anserini +test53 Q0 16583962 28 9.484068 Anserini +test53 Q0 12921940 29 9.477659 Anserini +test53 Q0 19052274 30 9.451741 Anserini +test530 Q0 9034974 1 12.361250 Anserini +test530 Q0 19016645 2 11.461102 Anserini +test530 Q0 4903988 3 11.422966 Anserini +test530 Q0 4903989 4 11.255782 Anserini +test530 Q0 19016646 5 11.225302 Anserini +test530 Q0 3456656 6 11.147914 Anserini +test530 Q0 18813682 7 10.896091 Anserini +test530 Q0 13294674 8 10.636486 Anserini +test530 Q0 20445305 9 10.531089 Anserini +test530 Q0 9888778 10 10.281722 Anserini +test530 Q0 8519627 11 10.205101 Anserini +test530 Q0 18487381 12 10.176251 Anserini +test530 Q0 18826942 13 10.065120 Anserini +test530 Q0 16459044 14 9.998278 Anserini +test530 Q0 14284601 15 9.981022 Anserini +test530 Q0 7482082 16 9.821901 Anserini +test530 Q0 13294677 17 9.803377 Anserini +test530 Q0 13289867 18 9.681589 Anserini +test530 Q0 14698153 19 9.619312 Anserini +test530 Q0 13294678 20 9.569776 Anserini +test530 Q0 7482079 21 9.564431 Anserini +test530 Q0 10637323 22 9.459955 Anserini +test530 Q0 17077946 23 9.441004 Anserini +test530 Q0 17077948 24 9.441004 Anserini +test530 Q0 18580989 25 9.441001 Anserini +test530 Q0 18811252 26 9.433614 Anserini +test530 Q0 17129212 27 9.345612 Anserini +test530 Q0 16314877 28 9.345371 Anserini +test530 Q0 16314878 29 9.345371 Anserini +test530 Q0 14135669 30 9.327581 Anserini +test531 Q0 16285458 1 13.436177 Anserini +test531 Q0 10885589 2 13.411529 Anserini +test531 Q0 12461890 3 13.247096 Anserini +test531 Q0 15963619 4 13.192215 Anserini +test531 Q0 6918588 5 13.169083 Anserini +test531 Q0 20866106 6 12.771359 Anserini +test531 Q0 325262 7 12.638875 Anserini +test531 Q0 3426332 8 12.612414 Anserini +test531 Q0 2146487 9 12.484684 Anserini +test531 Q0 7306844 10 12.477635 Anserini +test531 Q0 18707166 11 12.477382 Anserini +test531 Q0 17890832 12 12.422072 Anserini +test531 Q0 4758982 13 12.389013 Anserini +test531 Q0 3052517 14 12.389013 Anserini +test531 Q0 43630 15 12.356847 Anserini +test531 Q0 2228337 16 12.330357 Anserini +test531 Q0 5253347 17 12.327158 Anserini +test531 Q0 28402 18 12.281543 Anserini +test531 Q0 7681384 19 12.270246 Anserini +test531 Q0 8709618 20 12.263667 Anserini +test531 Q0 12446092 21 12.234909 Anserini +test531 Q0 4089099 22 12.225376 Anserini +test531 Q0 16881273 23 12.209386 Anserini +test531 Q0 4760516 24 12.187577 Anserini +test531 Q0 5253348 25 12.175250 Anserini +test531 Q0 3295699 26 12.175250 Anserini +test531 Q0 2135257 27 12.171131 Anserini +test531 Q0 9653963 28 12.170804 Anserini +test531 Q0 11466507 29 12.166389 Anserini +test531 Q0 14054499 30 12.123840 Anserini +test532 Q0 11828866 1 20.194462 Anserini +test532 Q0 11828872 2 19.228321 Anserini +test532 Q0 11828869 3 17.741774 Anserini +test532 Q0 11828871 4 17.007038 Anserini +test532 Q0 8870096 5 16.655458 Anserini +test532 Q0 1745235 6 16.102179 Anserini +test532 Q0 14605381 7 15.929974 Anserini +test532 Q0 9968578 8 15.927382 Anserini +test532 Q0 14605379 9 15.855963 Anserini +test532 Q0 14229957 10 15.612138 Anserini +test532 Q0 13579359 11 15.468290 Anserini +test532 Q0 13158776 12 15.255068 Anserini +test532 Q0 11702569 13 15.248751 Anserini +test532 Q0 5572452 14 15.111539 Anserini +test532 Q0 14226625 15 14.912640 Anserini +test532 Q0 14226626 16 14.912640 Anserini +test532 Q0 2462308 17 14.904334 Anserini +test532 Q0 14319620 18 14.864736 Anserini +test532 Q0 15532111 19 14.771200 Anserini +test532 Q0 11828870 20 14.584785 Anserini +test532 Q0 14229958 21 14.568866 Anserini +test532 Q0 7447890 22 14.439191 Anserini +test532 Q0 14319624 23 14.151801 Anserini +test532 Q0 13158775 24 14.143376 Anserini +test532 Q0 15632586 25 14.139067 Anserini +test532 Q0 12237020 26 13.706872 Anserini +test532 Q0 15532110 27 13.587804 Anserini +test532 Q0 8870095 28 13.483058 Anserini +test532 Q0 14605380 29 13.473611 Anserini +test532 Q0 19005927 30 13.449132 Anserini +test533 Q0 1350556 1 11.386099 Anserini +test533 Q0 10919722 2 11.110779 Anserini +test533 Q0 83935 3 10.977074 Anserini +test533 Q0 401288 4 10.475718 Anserini +test533 Q0 9811833 5 10.440660 Anserini +test533 Q0 401277 6 10.416432 Anserini +test533 Q0 14213208 7 10.349342 Anserini +test533 Q0 452422 8 10.064507 Anserini +test533 Q0 366380 9 9.791451 Anserini +test533 Q0 1350557 10 9.777155 Anserini +test533 Q0 9773417 11 9.663921 Anserini +test533 Q0 366383 12 9.606460 Anserini +test533 Q0 157116 13 9.586504 Anserini +test533 Q0 8584219 14 9.435886 Anserini +test533 Q0 364377 15 9.408056 Anserini +test533 Q0 2349762 16 9.343302 Anserini +test533 Q0 83970 17 9.308709 Anserini +test533 Q0 401285 18 9.253329 Anserini +test533 Q0 6411190 19 9.225340 Anserini +test533 Q0 10586320 20 9.152642 Anserini +test533 Q0 9842395 21 9.129481 Anserini +test533 Q0 949627 22 9.048956 Anserini +test533 Q0 949621 23 9.048956 Anserini +test533 Q0 2349765 24 9.047407 Anserini +test533 Q0 8250222 25 9.042285 Anserini +test533 Q0 15154734 26 9.020011 Anserini +test533 Q0 5268880 27 9.020011 Anserini +test533 Q0 11348682 28 9.020011 Anserini +test533 Q0 19962402 29 9.012630 Anserini +test533 Q0 19962408 30 9.012630 Anserini +test534 Q0 7286593 1 12.501404 Anserini +test534 Q0 11038738 2 10.557652 Anserini +test534 Q0 15993382 3 10.427128 Anserini +test534 Q0 204670 4 10.118677 Anserini +test534 Q0 12995027 5 9.771425 Anserini +test534 Q0 255826 6 9.640122 Anserini +test534 Q0 11395221 7 9.562636 Anserini +test534 Q0 6589826 8 9.558510 Anserini +test534 Q0 10740611 9 9.527173 Anserini +test534 Q0 3070917 10 9.492071 Anserini +test534 Q0 15738759 11 9.456266 Anserini +test534 Q0 3823239 12 9.405661 Anserini +test534 Q0 7646113 13 9.378101 Anserini +test534 Q0 20690663 14 9.355824 Anserini +test534 Q0 20718088 15 9.340857 Anserini +test534 Q0 851172 16 9.330156 Anserini +test534 Q0 18786904 17 9.311606 Anserini +test534 Q0 18786903 18 9.311606 Anserini +test534 Q0 3506609 19 9.262335 Anserini +test534 Q0 20895288 20 9.240713 Anserini +test534 Q0 11233488 21 9.222487 Anserini +test534 Q0 10737817 22 9.179685 Anserini +test534 Q0 17077802 23 9.172205 Anserini +test534 Q0 10185685 24 9.171696 Anserini +test534 Q0 14386893 25 9.152873 Anserini +test534 Q0 19428398 26 9.098057 Anserini +test534 Q0 19950666 27 9.066743 Anserini +test534 Q0 692617 28 9.065374 Anserini +test534 Q0 14555539 29 9.055552 Anserini +test534 Q0 1532694 30 9.042457 Anserini +test535 Q0 11678426 1 18.469604 Anserini +test535 Q0 11678418 2 18.062523 Anserini +test535 Q0 11107687 3 17.681852 Anserini +test535 Q0 17899015 4 17.633049 Anserini +test535 Q0 3262096 5 16.644682 Anserini +test535 Q0 5031429 6 16.473803 Anserini +test535 Q0 19124181 7 16.278969 Anserini +test535 Q0 5011535 8 15.957260 Anserini +test535 Q0 14338326 9 15.876787 Anserini +test535 Q0 14338322 10 15.876787 Anserini +test535 Q0 14338323 11 15.801721 Anserini +test535 Q0 15365671 12 15.643126 Anserini +test535 Q0 2631070 13 15.633780 Anserini +test535 Q0 2631073 14 15.633780 Anserini +test535 Q0 18889288 15 15.597633 Anserini +test535 Q0 12896691 16 15.523332 Anserini +test535 Q0 6871211 17 15.501904 Anserini +test535 Q0 18322067 18 15.478495 Anserini +test535 Q0 11678425 19 15.444830 Anserini +test535 Q0 19080494 20 15.399403 Anserini +test535 Q0 17315020 21 15.135912 Anserini +test535 Q0 17315021 22 15.071169 Anserini +test535 Q0 8385218 23 14.962263 Anserini +test535 Q0 20678231 24 14.919538 Anserini +test535 Q0 15365673 25 14.878465 Anserini +test535 Q0 12904319 26 14.875801 Anserini +test535 Q0 5527164 27 14.875801 Anserini +test535 Q0 17416896 28 14.865216 Anserini +test535 Q0 12904315 29 14.783606 Anserini +test535 Q0 14713289 30 14.781427 Anserini +test536 Q0 3126313 1 17.425404 Anserini +test536 Q0 2742271 2 16.026690 Anserini +test536 Q0 12418263 3 15.855764 Anserini +test536 Q0 596917 4 15.716617 Anserini +test536 Q0 3032417 5 15.701696 Anserini +test536 Q0 8384122 6 15.348099 Anserini +test536 Q0 378752 7 15.158569 Anserini +test536 Q0 3853483 8 14.955807 Anserini +test536 Q0 1851668 9 14.924588 Anserini +test536 Q0 15526861 10 14.756087 Anserini +test536 Q0 879803 11 14.602953 Anserini +test536 Q0 10048112 12 14.479311 Anserini +test536 Q0 2147698 13 14.427235 Anserini +test536 Q0 879819 14 14.244848 Anserini +test536 Q0 7530133 15 14.228958 Anserini +test536 Q0 2038772 16 13.810347 Anserini +test536 Q0 2632619 17 13.788728 Anserini +test536 Q0 16775015 18 13.762746 Anserini +test536 Q0 2632618 19 13.733904 Anserini +test536 Q0 12758636 20 13.635054 Anserini +test536 Q0 7530134 21 13.382065 Anserini +test536 Q0 193794 22 13.369406 Anserini +test536 Q0 3371133 23 13.312610 Anserini +test536 Q0 4145920 24 13.252522 Anserini +test536 Q0 5001754 25 13.169770 Anserini +test536 Q0 5965753 26 13.169770 Anserini +test536 Q0 6980730 27 13.169770 Anserini +test536 Q0 11813089 28 13.169770 Anserini +test536 Q0 3784153 29 13.137835 Anserini +test536 Q0 2458286 30 13.043283 Anserini +test537 Q0 12956677 1 12.326120 Anserini +test537 Q0 12950720 2 11.965747 Anserini +test537 Q0 12956681 3 11.564232 Anserini +test537 Q0 12956676 4 11.508715 Anserini +test537 Q0 9195018 5 11.402452 Anserini +test537 Q0 12956686 6 11.022764 Anserini +test537 Q0 12824342 7 10.966498 Anserini +test537 Q0 12824348 8 10.364535 Anserini +test537 Q0 12824346 9 9.931890 Anserini +test537 Q0 10251874 10 9.879734 Anserini +test537 Q0 10251878 11 9.879734 Anserini +test537 Q0 12824358 12 9.711713 Anserini +test537 Q0 12824359 13 9.591812 Anserini +test537 Q0 10251877 14 9.269843 Anserini +test537 Q0 12824360 15 9.269843 Anserini +test537 Q0 10251875 16 8.953011 Anserini +test537 Q0 4254635 17 8.886052 Anserini +test537 Q0 12824357 18 8.828815 Anserini +test537 Q0 12824343 19 8.767499 Anserini +test537 Q0 12824349 20 8.767499 Anserini +test537 Q0 3363730 21 8.716760 Anserini +test537 Q0 16829190 22 8.716760 Anserini +test537 Q0 12956683 23 8.707029 Anserini +test537 Q0 18538657 24 8.695275 Anserini +test537 Q0 7596387 25 8.672421 Anserini +test537 Q0 3812893 26 8.647388 Anserini +test537 Q0 16281978 27 8.480726 Anserini +test537 Q0 12956680 28 8.457289 Anserini +test537 Q0 14669280 29 8.362461 Anserini +test537 Q0 17410522 30 8.319154 Anserini +test538 Q0 19071809 1 13.633668 Anserini +test538 Q0 4654451 2 13.406966 Anserini +test538 Q0 9456666 3 13.355104 Anserini +test538 Q0 18222256 4 13.295571 Anserini +test538 Q0 18222255 5 13.269518 Anserini +test538 Q0 16314085 6 13.149689 Anserini +test538 Q0 16276885 7 13.013156 Anserini +test538 Q0 15440010 8 12.670697 Anserini +test538 Q0 17642448 9 12.636520 Anserini +test538 Q0 3557534 10 12.635038 Anserini +test538 Q0 6633790 11 12.480225 Anserini +test538 Q0 6343284 12 12.426571 Anserini +test538 Q0 6444151 13 12.240366 Anserini +test538 Q0 7751827 14 12.136292 Anserini +test538 Q0 18163656 15 12.126619 Anserini +test538 Q0 5165224 16 12.046054 Anserini +test538 Q0 183876 17 12.044498 Anserini +test538 Q0 8491927 18 11.974786 Anserini +test538 Q0 8759289 19 11.853059 Anserini +test538 Q0 18088278 20 11.825515 Anserini +test538 Q0 10180981 21 11.746101 Anserini +test538 Q0 1040943 22 11.677929 Anserini +test538 Q0 11096870 23 11.620677 Anserini +test538 Q0 19360767 24 11.465901 Anserini +test538 Q0 17656727 25 11.456280 Anserini +test538 Q0 11851805 26 11.456280 Anserini +test538 Q0 16322810 27 11.442914 Anserini +test538 Q0 4249213 28 11.442914 Anserini +test538 Q0 811290 29 11.405579 Anserini +test538 Q0 10798947 30 11.405579 Anserini +test539 Q0 2138250 1 16.291334 Anserini +test539 Q0 9571332 2 14.789799 Anserini +test539 Q0 3714089 3 14.774935 Anserini +test539 Q0 20206341 4 14.601927 Anserini +test539 Q0 20206234 5 14.193105 Anserini +test539 Q0 8709019 6 14.064102 Anserini +test539 Q0 5231936 7 13.919151 Anserini +test539 Q0 8285470 8 13.914242 Anserini +test539 Q0 20325113 9 13.890269 Anserini +test539 Q0 19144702 10 13.833057 Anserini +test539 Q0 8465142 11 13.670962 Anserini +test539 Q0 19191392 12 13.622273 Anserini +test539 Q0 18880515 13 13.621518 Anserini +test539 Q0 8465136 14 13.581643 Anserini +test539 Q0 13220445 15 13.548802 Anserini +test539 Q0 7299656 16 13.375397 Anserini +test539 Q0 9715004 17 13.364592 Anserini +test539 Q0 19950264 18 13.316371 Anserini +test539 Q0 17608376 19 13.295919 Anserini +test539 Q0 13970823 20 13.283027 Anserini +test539 Q0 9442623 21 13.216589 Anserini +test539 Q0 14825503 22 13.212938 Anserini +test539 Q0 7562432 23 13.173783 Anserini +test539 Q0 16346890 24 13.114464 Anserini +test539 Q0 20170293 25 13.104492 Anserini +test539 Q0 9339921 26 13.099550 Anserini +test539 Q0 8210408 27 13.076309 Anserini +test539 Q0 6851690 28 13.014477 Anserini +test539 Q0 20002176 29 12.984216 Anserini +test539 Q0 5862261 30 12.969888 Anserini +test54 Q0 6201752 1 13.730272 Anserini +test54 Q0 10046881 2 13.207544 Anserini +test54 Q0 7075291 3 13.044782 Anserini +test54 Q0 6743260 4 12.952625 Anserini +test54 Q0 6568852 5 12.856254 Anserini +test54 Q0 529927 6 12.751015 Anserini +test54 Q0 5632093 7 12.506250 Anserini +test54 Q0 13638686 8 12.394091 Anserini +test54 Q0 182036 9 12.384343 Anserini +test54 Q0 11116278 10 12.373906 Anserini +test54 Q0 20454358 11 12.307155 Anserini +test54 Q0 2340862 12 12.245860 Anserini +test54 Q0 10173475 13 11.763134 Anserini +test54 Q0 5950940 14 11.719458 Anserini +test54 Q0 6201776 15 11.593969 Anserini +test54 Q0 5686559 16 11.505377 Anserini +test54 Q0 5949988 17 11.451037 Anserini +test54 Q0 6568838 18 11.433275 Anserini +test54 Q0 5754084 19 11.393673 Anserini +test54 Q0 10029991 20 11.388379 Anserini +test54 Q0 12799412 21 11.337437 Anserini +test54 Q0 6568851 22 11.297845 Anserini +test54 Q0 18741417 23 11.294153 Anserini +test54 Q0 37353 24 11.277545 Anserini +test54 Q0 17018956 25 11.275550 Anserini +test54 Q0 8799196 26 11.251032 Anserini +test54 Q0 8348157 27 11.206049 Anserini +test54 Q0 2390761 28 11.190129 Anserini +test54 Q0 15810129 29 11.161062 Anserini +test54 Q0 222482 30 11.132694 Anserini +test540 Q0 15701996 1 23.875507 Anserini +test540 Q0 15701997 2 22.255177 Anserini +test540 Q0 10714767 3 19.944540 Anserini +test540 Q0 10714763 4 19.643171 Anserini +test540 Q0 8054614 5 18.532396 Anserini +test540 Q0 10714765 6 17.620800 Anserini +test540 Q0 13509207 7 16.858047 Anserini +test540 Q0 4136614 8 16.265419 Anserini +test540 Q0 17111139 9 16.221949 Anserini +test540 Q0 16453773 10 16.074892 Anserini +test540 Q0 16453775 11 16.074892 Anserini +test540 Q0 11523340 12 15.903611 Anserini +test540 Q0 11523341 13 15.810227 Anserini +test540 Q0 16338285 14 15.695631 Anserini +test540 Q0 5148654 15 15.521816 Anserini +test540 Q0 16034072 16 15.244796 Anserini +test540 Q0 5823896 17 15.195009 Anserini +test540 Q0 2310910 18 15.072313 Anserini +test540 Q0 12074454 19 15.036716 Anserini +test540 Q0 5625786 20 15.002625 Anserini +test540 Q0 6454770 21 14.896489 Anserini +test540 Q0 10027095 22 14.893256 Anserini +test540 Q0 1546014 23 14.852562 Anserini +test540 Q0 14622072 24 14.721165 Anserini +test540 Q0 5148656 25 14.649751 Anserini +test540 Q0 5579820 26 14.647334 Anserini +test540 Q0 10700173 27 14.614736 Anserini +test540 Q0 3988731 28 14.604706 Anserini +test540 Q0 8617414 29 14.559628 Anserini +test540 Q0 11765630 30 14.558780 Anserini +test541 Q0 10256027 1 21.435129 Anserini +test541 Q0 1996290 2 21.424353 Anserini +test541 Q0 394459 3 20.886024 Anserini +test541 Q0 2722709 4 20.724463 Anserini +test541 Q0 106520 5 20.613129 Anserini +test541 Q0 11619573 6 20.257856 Anserini +test541 Q0 4866467 7 20.257200 Anserini +test541 Q0 17570534 8 20.078377 Anserini +test541 Q0 9860071 9 19.924515 Anserini +test541 Q0 4344247 10 19.746260 Anserini +test541 Q0 394087 11 19.657167 Anserini +test541 Q0 7216801 12 19.562740 Anserini +test541 Q0 10256079 13 19.528938 Anserini +test541 Q0 10256084 14 19.429945 Anserini +test541 Q0 1491940 15 19.419537 Anserini +test541 Q0 9860078 16 19.401199 Anserini +test541 Q0 12929965 17 19.385656 Anserini +test541 Q0 394137 18 19.333385 Anserini +test541 Q0 11536769 19 19.325165 Anserini +test541 Q0 11536761 20 19.325165 Anserini +test541 Q0 15904635 21 19.201090 Anserini +test541 Q0 15096448 22 19.133085 Anserini +test541 Q0 106436 23 19.089806 Anserini +test541 Q0 9863703 24 19.026035 Anserini +test541 Q0 15206538 25 18.962811 Anserini +test541 Q0 394787 26 18.935299 Anserini +test541 Q0 9235292 27 18.923460 Anserini +test541 Q0 106521 28 18.915703 Anserini +test541 Q0 8800172 29 18.897707 Anserini +test541 Q0 17473835 30 18.878407 Anserini +test542 Q0 188943 1 16.326015 Anserini +test542 Q0 7035449 2 15.957030 Anserini +test542 Q0 188986 3 15.705090 Anserini +test542 Q0 326892 4 15.519237 Anserini +test542 Q0 188974 5 15.493845 Anserini +test542 Q0 188972 6 15.017483 Anserini +test542 Q0 188984 7 15.012495 Anserini +test542 Q0 188973 8 14.897916 Anserini +test542 Q0 3988844 9 14.867250 Anserini +test542 Q0 3774037 10 14.648499 Anserini +test542 Q0 19002465 11 14.573972 Anserini +test542 Q0 4048490 12 14.551529 Anserini +test542 Q0 19002459 13 14.519976 Anserini +test542 Q0 3093507 14 14.507091 Anserini +test542 Q0 3235890 15 14.342889 Anserini +test542 Q0 188960 16 14.287316 Anserini +test542 Q0 10996484 17 14.156219 Anserini +test542 Q0 11447757 18 14.127528 Anserini +test542 Q0 2461103 19 14.116440 Anserini +test542 Q0 486710 20 14.099719 Anserini +test542 Q0 188942 21 14.028967 Anserini +test542 Q0 326893 22 13.939758 Anserini +test542 Q0 3235896 23 13.884470 Anserini +test542 Q0 5039417 24 13.879327 Anserini +test542 Q0 188949 25 13.835129 Anserini +test542 Q0 19002462 26 13.832602 Anserini +test542 Q0 19693453 27 13.816351 Anserini +test542 Q0 12496473 28 13.786153 Anserini +test542 Q0 188952 29 13.764782 Anserini +test542 Q0 15373671 30 13.757451 Anserini +test543 Q0 18632790 1 14.265825 Anserini +test543 Q0 10502098 2 13.647168 Anserini +test543 Q0 6322249 3 13.386769 Anserini +test543 Q0 9041492 4 13.177917 Anserini +test543 Q0 20399252 5 12.818481 Anserini +test543 Q0 17832177 6 12.773289 Anserini +test543 Q0 20881407 7 12.722283 Anserini +test543 Q0 1769238 8 12.685022 Anserini +test543 Q0 9326015 9 12.572646 Anserini +test543 Q0 18092058 10 12.498758 Anserini +test543 Q0 17955645 11 12.152451 Anserini +test543 Q0 1966530 12 12.111074 Anserini +test543 Q0 14170869 13 12.080111 Anserini +test543 Q0 699207 14 12.001382 Anserini +test543 Q0 18794142 15 11.993299 Anserini +test543 Q0 17785039 16 11.972878 Anserini +test543 Q0 14170835 17 11.933242 Anserini +test543 Q0 12962658 18 11.904242 Anserini +test543 Q0 1966521 19 11.864116 Anserini +test543 Q0 14265231 20 11.763145 Anserini +test543 Q0 18092060 21 11.724384 Anserini +test543 Q0 19099579 22 11.654358 Anserini +test543 Q0 17557177 23 11.478342 Anserini +test543 Q0 12981992 24 11.431843 Anserini +test543 Q0 14265224 25 11.431338 Anserini +test543 Q0 19116863 26 11.407698 Anserini +test543 Q0 1605122 27 11.377850 Anserini +test543 Q0 17557161 28 11.368301 Anserini +test543 Q0 10154233 29 11.367706 Anserini +test543 Q0 718735 30 11.323078 Anserini +test544 Q0 129219 1 16.291819 Anserini +test544 Q0 129187 2 15.309813 Anserini +test544 Q0 129235 3 15.058414 Anserini +test544 Q0 129212 4 14.459511 Anserini +test544 Q0 129167 5 14.271340 Anserini +test544 Q0 7895454 6 14.203781 Anserini +test544 Q0 836999 7 13.874486 Anserini +test544 Q0 129180 8 13.794996 Anserini +test544 Q0 129190 9 13.668517 Anserini +test544 Q0 9578298 10 13.589224 Anserini +test544 Q0 129225 11 13.403869 Anserini +test544 Q0 12025929 12 13.341788 Anserini +test544 Q0 129211 13 13.150784 Anserini +test544 Q0 129223 14 13.150784 Anserini +test544 Q0 959402 15 13.150784 Anserini +test544 Q0 7888392 16 13.083153 Anserini +test544 Q0 129181 17 13.079776 Anserini +test544 Q0 2090431 18 13.027385 Anserini +test544 Q0 129220 19 13.011937 Anserini +test544 Q0 2090448 20 13.011187 Anserini +test544 Q0 129158 21 12.984243 Anserini +test544 Q0 959407 22 12.920828 Anserini +test544 Q0 129184 23 12.892800 Anserini +test544 Q0 129209 24 12.892800 Anserini +test544 Q0 7888396 25 12.892800 Anserini +test544 Q0 16699341 26 12.874961 Anserini +test544 Q0 8952715 27 12.763846 Anserini +test544 Q0 129215 28 12.687121 Anserini +test544 Q0 6961652 29 12.662672 Anserini +test544 Q0 5601157 30 12.615006 Anserini +test545 Q0 16459400 1 10.477925 Anserini +test545 Q0 8336067 2 10.450231 Anserini +test545 Q0 2107860 3 10.360784 Anserini +test545 Q0 9717961 4 10.295241 Anserini +test545 Q0 2160755 5 10.199135 Anserini +test545 Q0 9475451 6 10.018990 Anserini +test545 Q0 17244515 7 9.977857 Anserini +test545 Q0 20476456 8 9.892818 Anserini +test545 Q0 1489599 9 9.836129 Anserini +test545 Q0 4584827 10 9.791093 Anserini +test545 Q0 12201876 11 9.767974 Anserini +test545 Q0 8835704 12 9.504934 Anserini +test545 Q0 13146326 13 9.487130 Anserini +test545 Q0 20476454 14 9.438826 Anserini +test545 Q0 6957297 15 9.383219 Anserini +test545 Q0 2664172 16 9.329011 Anserini +test545 Q0 19000424 17 9.329011 Anserini +test545 Q0 8564315 18 9.329011 Anserini +test545 Q0 38358 19 9.322104 Anserini +test545 Q0 17526425 20 9.288919 Anserini +test545 Q0 5913747 21 9.263869 Anserini +test545 Q0 10640867 22 9.251574 Anserini +test545 Q0 11613704 23 9.251574 Anserini +test545 Q0 17695650 24 9.173909 Anserini +test545 Q0 7516214 25 9.112329 Anserini +test545 Q0 17090730 26 9.111497 Anserini +test545 Q0 9133555 27 9.050794 Anserini +test545 Q0 20589799 28 9.038013 Anserini +test545 Q0 10510000 29 9.035785 Anserini +test545 Q0 14369720 30 9.020494 Anserini +test546 Q0 7158056 1 38.231705 Anserini +test546 Q0 7158050 2 38.231705 Anserini +test546 Q0 2375170 3 27.639437 Anserini +test546 Q0 3225122 4 27.065363 Anserini +test546 Q0 2375177 5 26.790560 Anserini +test546 Q0 51432 6 26.738075 Anserini +test546 Q0 1615172 7 26.430363 Anserini +test546 Q0 51476 8 25.447348 Anserini +test546 Q0 5497938 9 25.394705 Anserini +test546 Q0 5252169 10 25.087265 Anserini +test546 Q0 5357856 11 25.030779 Anserini +test546 Q0 51441 12 25.026978 Anserini +test546 Q0 1615174 13 24.606976 Anserini +test546 Q0 1615176 14 24.571125 Anserini +test546 Q0 1615168 15 24.556103 Anserini +test546 Q0 12531591 16 24.522812 Anserini +test546 Q0 51453 17 24.512655 Anserini +test546 Q0 3225125 18 24.398573 Anserini +test546 Q0 1615147 19 24.296356 Anserini +test546 Q0 12257353 20 24.103695 Anserini +test546 Q0 4179374 21 23.769974 Anserini +test546 Q0 10150616 22 23.664488 Anserini +test546 Q0 1615273 23 23.568184 Anserini +test546 Q0 51442 24 23.529278 Anserini +test546 Q0 366154 25 23.497707 Anserini +test546 Q0 9152265 26 23.469793 Anserini +test546 Q0 51436 27 23.460066 Anserini +test546 Q0 14448243 28 23.441103 Anserini +test546 Q0 5874431 29 23.385786 Anserini +test546 Q0 487337 30 23.067398 Anserini +test547 Q0 10840120 1 10.270878 Anserini +test547 Q0 10840123 2 10.270878 Anserini +test547 Q0 16226047 3 10.254058 Anserini +test547 Q0 14701051 4 9.964155 Anserini +test547 Q0 9385476 5 9.612630 Anserini +test547 Q0 12134007 6 9.589582 Anserini +test547 Q0 20570251 7 9.179711 Anserini +test547 Q0 19473303 8 9.132568 Anserini +test547 Q0 8898882 9 8.987272 Anserini +test547 Q0 11536948 10 8.915279 Anserini +test547 Q0 12134009 11 8.803562 Anserini +test547 Q0 12134005 12 8.803562 Anserini +test547 Q0 13092870 13 8.668350 Anserini +test547 Q0 20705811 14 8.643112 Anserini +test547 Q0 7364937 15 8.563862 Anserini +test547 Q0 19655685 16 8.476032 Anserini +test547 Q0 15955264 17 8.402554 Anserini +test547 Q0 3157078 18 8.276775 Anserini +test547 Q0 7201923 19 8.233410 Anserini +test547 Q0 2457540 20 8.193841 Anserini +test547 Q0 19149952 21 8.182206 Anserini +test547 Q0 18845480 22 8.181278 Anserini +test547 Q0 10391986 23 8.157222 Anserini +test547 Q0 11190724 24 8.137514 Anserini +test547 Q0 16874978 25 8.078611 Anserini +test547 Q0 15598532 26 8.047202 Anserini +test547 Q0 20784523 27 8.040743 Anserini +test547 Q0 6904436 28 8.032097 Anserini +test547 Q0 7475453 29 7.979027 Anserini +test547 Q0 14427327 30 7.979027 Anserini +test548 Q0 45080 1 17.394903 Anserini +test548 Q0 3255291 2 15.407530 Anserini +test548 Q0 617526 3 15.228526 Anserini +test548 Q0 1627346 4 15.159335 Anserini +test548 Q0 3255303 5 14.817275 Anserini +test548 Q0 20514049 6 14.580320 Anserini +test548 Q0 1496292 7 14.330972 Anserini +test548 Q0 7309195 8 14.190579 Anserini +test548 Q0 2369545 9 14.179248 Anserini +test548 Q0 7900954 10 14.024493 Anserini +test548 Q0 18731331 11 13.921038 Anserini +test548 Q0 3255292 12 13.649702 Anserini +test548 Q0 6316582 13 13.620409 Anserini +test548 Q0 164894 14 13.595049 Anserini +test548 Q0 15509742 15 13.482754 Anserini +test548 Q0 363792 16 13.480186 Anserini +test548 Q0 10427192 17 13.469735 Anserini +test548 Q0 17442426 18 13.393572 Anserini +test548 Q0 11229124 19 13.385406 Anserini +test548 Q0 150918 20 13.367403 Anserini +test548 Q0 45014 21 13.230576 Anserini +test548 Q0 452109 22 13.215027 Anserini +test548 Q0 18120069 23 13.194921 Anserini +test548 Q0 12908573 24 13.182114 Anserini +test548 Q0 11761794 25 13.105545 Anserini +test548 Q0 7103015 26 12.984882 Anserini +test548 Q0 14665495 27 12.981600 Anserini +test548 Q0 7103010 28 12.920870 Anserini +test548 Q0 452086 29 12.873216 Anserini +test548 Q0 18776966 30 12.863113 Anserini +test549 Q0 2349476 1 11.769709 Anserini +test549 Q0 2251033 2 11.474167 Anserini +test549 Q0 1848216 3 10.773853 Anserini +test549 Q0 10749527 4 10.602615 Anserini +test549 Q0 3301344 5 10.536459 Anserini +test549 Q0 12078662 6 10.166503 Anserini +test549 Q0 949699 7 10.098962 Anserini +test549 Q0 3301346 8 10.098061 Anserini +test549 Q0 1863987 9 10.062345 Anserini +test549 Q0 15501786 10 9.968113 Anserini +test549 Q0 15103077 11 9.855371 Anserini +test549 Q0 3301331 12 9.812101 Anserini +test549 Q0 4896653 13 9.805094 Anserini +test549 Q0 20372684 14 9.779593 Anserini +test549 Q0 12341448 15 9.775576 Anserini +test549 Q0 11914833 16 9.714216 Anserini +test549 Q0 310472 17 9.691640 Anserini +test549 Q0 13133199 18 9.681801 Anserini +test549 Q0 7353974 19 9.679987 Anserini +test549 Q0 4378682 20 9.667109 Anserini +test549 Q0 2243108 21 9.665753 Anserini +test549 Q0 7661173 22 9.613587 Anserini +test549 Q0 5508982 23 9.589009 Anserini +test549 Q0 17090012 24 9.545288 Anserini +test549 Q0 13457049 25 9.540287 Anserini +test549 Q0 1175820 26 9.511664 Anserini +test549 Q0 12764541 27 9.511404 Anserini +test549 Q0 3568238 28 9.496496 Anserini +test549 Q0 293320 29 9.472425 Anserini +test549 Q0 4557612 30 9.458466 Anserini +test55 Q0 17985730 1 17.692791 Anserini +test55 Q0 576723 2 17.036922 Anserini +test55 Q0 6672895 3 16.536852 Anserini +test55 Q0 6936290 4 16.253712 Anserini +test55 Q0 13030213 5 15.919813 Anserini +test55 Q0 5853639 6 15.793819 Anserini +test55 Q0 2563597 7 15.749999 Anserini +test55 Q0 14534277 8 15.660683 Anserini +test55 Q0 6331226 9 15.456903 Anserini +test55 Q0 1380607 10 15.456888 Anserini +test55 Q0 7481569 11 15.401739 Anserini +test55 Q0 15344892 12 15.343577 Anserini +test55 Q0 1456624 13 15.302886 Anserini +test55 Q0 9637862 14 15.219267 Anserini +test55 Q0 6331230 15 15.179626 Anserini +test55 Q0 6370105 16 15.041334 Anserini +test55 Q0 5022159 17 14.943516 Anserini +test55 Q0 6370104 18 14.862962 Anserini +test55 Q0 15677767 19 14.597107 Anserini +test55 Q0 15281310 20 14.384555 Anserini +test55 Q0 2984749 21 14.234001 Anserini +test55 Q0 17985731 22 14.013371 Anserini +test55 Q0 576719 23 13.992586 Anserini +test55 Q0 2563588 24 13.851057 Anserini +test55 Q0 2563603 25 13.851057 Anserini +test55 Q0 8098030 26 13.828971 Anserini +test55 Q0 5651163 27 13.820402 Anserini +test55 Q0 15281309 28 13.680847 Anserini +test55 Q0 6331225 29 13.680847 Anserini +test55 Q0 11815538 30 13.641846 Anserini +test550 Q0 4261228 1 14.267269 Anserini +test550 Q0 61953 2 13.949923 Anserini +test550 Q0 62022 3 13.949923 Anserini +test550 Q0 1664686 4 13.756860 Anserini +test550 Q0 1664695 5 13.698919 Anserini +test550 Q0 1705858 6 13.283120 Anserini +test550 Q0 61969 7 13.254723 Anserini +test550 Q0 8300458 8 12.996017 Anserini +test550 Q0 2331179 9 12.955920 Anserini +test550 Q0 4261193 10 12.889604 Anserini +test550 Q0 16492684 11 12.795269 Anserini +test550 Q0 8300464 12 12.772844 Anserini +test550 Q0 19881233 13 12.720117 Anserini +test550 Q0 19881235 14 12.720117 Anserini +test550 Q0 6064265 15 12.685615 Anserini +test550 Q0 2671656 16 12.478498 Anserini +test550 Q0 20959307 17 12.474451 Anserini +test550 Q0 7103713 18 12.390199 Anserini +test550 Q0 5289468 19 12.390199 Anserini +test550 Q0 4261208 20 12.388865 Anserini +test550 Q0 18452474 21 12.386771 Anserini +test550 Q0 1551108 22 12.365744 Anserini +test550 Q0 2030884 23 12.365744 Anserini +test550 Q0 11295093 24 12.355640 Anserini +test550 Q0 5526630 25 12.319649 Anserini +test550 Q0 7098382 26 12.271452 Anserini +test550 Q0 61997 27 12.252048 Anserini +test550 Q0 11785765 28 12.235316 Anserini +test550 Q0 15527025 29 12.223967 Anserini +test550 Q0 1705864 30 12.152034 Anserini +test551 Q0 16822210 1 10.674997 Anserini +test551 Q0 328084 2 9.830482 Anserini +test551 Q0 1626562 3 9.615921 Anserini +test551 Q0 15672347 4 8.976635 Anserini +test551 Q0 6387770 5 8.736735 Anserini +test551 Q0 5649979 6 8.663188 Anserini +test551 Q0 13449404 7 8.624727 Anserini +test551 Q0 15906129 8 8.532300 Anserini +test551 Q0 5893130 9 8.467456 Anserini +test551 Q0 17159913 10 8.426339 Anserini +test551 Q0 2977515 11 8.393021 Anserini +test551 Q0 12120915 12 8.380119 Anserini +test551 Q0 12440357 13 8.380119 Anserini +test551 Q0 12430900 14 8.379265 Anserini +test551 Q0 7821063 15 8.368205 Anserini +test551 Q0 16793926 16 8.303727 Anserini +test551 Q0 17159914 17 8.254529 Anserini +test551 Q0 15425174 18 8.216314 Anserini +test551 Q0 8045747 19 8.183952 Anserini +test551 Q0 7262504 20 8.180847 Anserini +test551 Q0 9871917 21 8.168822 Anserini +test551 Q0 1294177 22 8.091599 Anserini +test551 Q0 226370 23 8.052863 Anserini +test551 Q0 19836158 24 8.042039 Anserini +test551 Q0 17557106 25 8.034842 Anserini +test551 Q0 1294219 26 8.015866 Anserini +test551 Q0 13036862 27 7.984855 Anserini +test551 Q0 18358890 28 7.982844 Anserini +test551 Q0 13741542 29 7.970844 Anserini +test551 Q0 2123274 30 7.959970 Anserini +test552 Q0 13772995 1 9.849594 Anserini +test552 Q0 2738697 2 9.730859 Anserini +test552 Q0 12367747 3 9.644426 Anserini +test552 Q0 12367734 4 9.602650 Anserini +test552 Q0 14370397 5 9.469741 Anserini +test552 Q0 74807 6 9.396349 Anserini +test552 Q0 15362059 7 9.368078 Anserini +test552 Q0 18915803 8 9.128992 Anserini +test552 Q0 582450 9 9.086920 Anserini +test552 Q0 12367741 10 9.084324 Anserini +test552 Q0 12367743 11 9.081011 Anserini +test552 Q0 2224611 12 9.024285 Anserini +test552 Q0 12367742 13 8.971399 Anserini +test552 Q0 11401872 14 8.950045 Anserini +test552 Q0 1880139 15 8.871372 Anserini +test552 Q0 19455811 16 8.869208 Anserini +test552 Q0 13876965 17 8.869208 Anserini +test552 Q0 2244143 18 8.860865 Anserini +test552 Q0 10841703 19 8.839417 Anserini +test552 Q0 5726846 20 8.768646 Anserini +test552 Q0 16801133 21 8.768646 Anserini +test552 Q0 20217970 22 8.728050 Anserini +test552 Q0 2880296 23 8.728050 Anserini +test552 Q0 16029178 24 8.713392 Anserini +test552 Q0 12367735 25 8.674819 Anserini +test552 Q0 444493 26 8.625187 Anserini +test552 Q0 13161275 27 8.605327 Anserini +test552 Q0 11006336 28 8.558760 Anserini +test552 Q0 424164 29 8.521297 Anserini +test552 Q0 17791286 30 8.512907 Anserini +test553 Q0 3347600 1 13.279812 Anserini +test553 Q0 2833986 2 12.803288 Anserini +test553 Q0 8713698 3 12.763496 Anserini +test553 Q0 20098644 4 12.506704 Anserini +test553 Q0 10163552 5 12.488457 Anserini +test553 Q0 19445601 6 12.311124 Anserini +test553 Q0 3144863 7 12.133989 Anserini +test553 Q0 7425030 8 12.047421 Anserini +test553 Q0 484503 9 11.869410 Anserini +test553 Q0 311059 10 11.639812 Anserini +test553 Q0 9461664 11 11.587709 Anserini +test553 Q0 3144891 12 11.586661 Anserini +test553 Q0 11113187 13 11.585911 Anserini +test553 Q0 12674942 14 11.572078 Anserini +test553 Q0 20392973 15 11.536670 Anserini +test553 Q0 263463 16 11.518215 Anserini +test553 Q0 7078116 17 11.472520 Anserini +test553 Q0 15634757 18 11.449320 Anserini +test553 Q0 5207990 19 11.419052 Anserini +test553 Q0 311063 20 11.410819 Anserini +test553 Q0 311082 21 11.398837 Anserini +test553 Q0 552856 22 11.207408 Anserini +test553 Q0 19339753 23 11.191853 Anserini +test553 Q0 9039638 24 11.185083 Anserini +test553 Q0 9039649 25 11.185083 Anserini +test553 Q0 15913980 26 11.157608 Anserini +test553 Q0 4825466 27 11.137228 Anserini +test553 Q0 552867 28 11.136635 Anserini +test553 Q0 4713593 29 11.100540 Anserini +test553 Q0 6960200 30 11.078289 Anserini +test554 Q0 19583662 1 14.376791 Anserini +test554 Q0 19583666 2 12.993240 Anserini +test554 Q0 19583665 3 12.877283 Anserini +test554 Q0 15698059 4 12.565180 Anserini +test554 Q0 19583659 5 12.510048 Anserini +test554 Q0 16000829 6 12.460465 Anserini +test554 Q0 19583656 7 12.413000 Anserini +test554 Q0 16000878 8 12.346318 Anserini +test554 Q0 6752225 9 12.213713 Anserini +test554 Q0 19583661 10 12.159603 Anserini +test554 Q0 19583655 11 12.038874 Anserini +test554 Q0 874702 12 11.638816 Anserini +test554 Q0 19583664 13 11.486877 Anserini +test554 Q0 20372053 14 11.360032 Anserini +test554 Q0 16000838 15 11.153895 Anserini +test554 Q0 5842460 16 11.120822 Anserini +test554 Q0 589710 17 11.022099 Anserini +test554 Q0 589711 18 10.819536 Anserini +test554 Q0 13519819 19 10.819536 Anserini +test554 Q0 19583660 20 10.815014 Anserini +test554 Q0 16000858 21 10.795258 Anserini +test554 Q0 9794250 22 10.691105 Anserini +test554 Q0 16000852 23 10.687772 Anserini +test554 Q0 15528985 24 10.622604 Anserini +test554 Q0 16000869 25 10.617414 Anserini +test554 Q0 16000830 26 10.580625 Anserini +test554 Q0 13519818 27 10.534187 Anserini +test554 Q0 16000860 28 10.500818 Anserini +test554 Q0 16000854 29 10.489215 Anserini +test554 Q0 16000833 30 10.400799 Anserini +test555 Q0 4114183 1 11.476231 Anserini +test555 Q0 4114230 2 11.007884 Anserini +test555 Q0 3879825 3 10.989986 Anserini +test555 Q0 12946086 4 10.801297 Anserini +test555 Q0 7520243 5 10.775552 Anserini +test555 Q0 10123483 6 10.646913 Anserini +test555 Q0 4114210 7 10.510409 Anserini +test555 Q0 19737902 8 9.812227 Anserini +test555 Q0 9931930 9 9.755706 Anserini +test555 Q0 1690450 10 9.691965 Anserini +test555 Q0 404790 11 9.526829 Anserini +test555 Q0 2887451 12 9.504421 Anserini +test555 Q0 5624940 13 9.503208 Anserini +test555 Q0 1271737 14 9.385278 Anserini +test555 Q0 4114193 15 9.305646 Anserini +test555 Q0 4114194 16 9.305646 Anserini +test555 Q0 4114232 17 9.284044 Anserini +test555 Q0 4114257 18 9.254015 Anserini +test555 Q0 4136239 19 9.215303 Anserini +test555 Q0 16113114 20 9.186691 Anserini +test555 Q0 4114148 21 9.176461 Anserini +test555 Q0 17191664 22 9.167202 Anserini +test555 Q0 4114191 23 9.130025 Anserini +test555 Q0 14281045 24 9.094418 Anserini +test555 Q0 4114153 25 9.080129 Anserini +test555 Q0 17012503 26 9.064260 Anserini +test555 Q0 16427776 27 9.049368 Anserini +test555 Q0 3879822 28 9.017117 Anserini +test555 Q0 3879823 29 9.013073 Anserini +test555 Q0 16113115 30 9.008830 Anserini +test556 Q0 7602542 1 11.846174 Anserini +test556 Q0 1705918 2 11.229584 Anserini +test556 Q0 8299749 3 10.139654 Anserini +test556 Q0 505958 4 9.964295 Anserini +test556 Q0 2725239 5 9.959272 Anserini +test556 Q0 4562590 6 9.807194 Anserini +test556 Q0 15291898 7 9.788100 Anserini +test556 Q0 1003663 8 9.657434 Anserini +test556 Q0 5560593 9 9.580240 Anserini +test556 Q0 5628959 10 9.556888 Anserini +test556 Q0 7605853 11 9.502094 Anserini +test556 Q0 4562595 12 9.487158 Anserini +test556 Q0 5465855 13 9.487158 Anserini +test556 Q0 2072854 14 9.472078 Anserini +test556 Q0 2013641 15 9.355438 Anserini +test556 Q0 3145557 16 9.351775 Anserini +test556 Q0 6464434 17 9.314590 Anserini +test556 Q0 4558546 18 9.252936 Anserini +test556 Q0 8299759 19 9.252936 Anserini +test556 Q0 5225120 20 9.233445 Anserini +test556 Q0 7602577 21 9.172888 Anserini +test556 Q0 3145556 22 9.153452 Anserini +test556 Q0 5466059 23 9.108126 Anserini +test556 Q0 5466062 24 9.108126 Anserini +test556 Q0 4238333 25 9.108126 Anserini +test556 Q0 6951352 26 9.108126 Anserini +test556 Q0 4567753 27 9.070871 Anserini +test556 Q0 18415148 28 9.027357 Anserini +test556 Q0 4681846 29 9.027357 Anserini +test556 Q0 15034965 30 9.007435 Anserini +test557 Q0 7196821 1 12.511209 Anserini +test557 Q0 4118253 2 12.396252 Anserini +test557 Q0 3144551 3 11.674329 Anserini +test557 Q0 6621098 4 11.628922 Anserini +test557 Q0 10509120 5 10.839996 Anserini +test557 Q0 17990278 6 10.573014 Anserini +test557 Q0 75948 7 10.314309 Anserini +test557 Q0 3012174 8 10.196097 Anserini +test557 Q0 287253 9 10.150198 Anserini +test557 Q0 19922545 10 10.122549 Anserini +test557 Q0 15804839 11 10.104420 Anserini +test557 Q0 447829 12 9.993845 Anserini +test557 Q0 13624394 13 9.960966 Anserini +test557 Q0 5546500 14 9.955800 Anserini +test557 Q0 5546516 15 9.891418 Anserini +test557 Q0 14474902 16 9.857752 Anserini +test557 Q0 2482743 17 9.857752 Anserini +test557 Q0 18795654 18 9.843616 Anserini +test557 Q0 4075422 19 9.837635 Anserini +test557 Q0 20388755 20 9.816070 Anserini +test557 Q0 9275593 21 9.781975 Anserini +test557 Q0 4848541 22 9.780649 Anserini +test557 Q0 287362 23 9.767597 Anserini +test557 Q0 16856977 24 9.767597 Anserini +test557 Q0 2422592 25 9.752773 Anserini +test557 Q0 4848542 26 9.709543 Anserini +test557 Q0 4459413 27 9.663287 Anserini +test557 Q0 18958817 28 9.644421 Anserini +test557 Q0 605258 29 9.609783 Anserini +test557 Q0 11004008 30 9.606607 Anserini +test558 Q0 4201986 1 11.261400 Anserini +test558 Q0 2419132 2 11.125925 Anserini +test558 Q0 1308172 3 10.742092 Anserini +test558 Q0 184195 4 10.675359 Anserini +test558 Q0 12231122 5 10.664280 Anserini +test558 Q0 7579762 6 10.592875 Anserini +test558 Q0 13300521 7 10.592252 Anserini +test558 Q0 10022541 8 10.426535 Anserini +test558 Q0 12638664 9 10.416115 Anserini +test558 Q0 10369724 10 10.307642 Anserini +test558 Q0 4901222 11 10.288496 Anserini +test558 Q0 7659020 12 10.244913 Anserini +test558 Q0 7579764 13 10.229832 Anserini +test558 Q0 12342964 14 10.098703 Anserini +test558 Q0 11178664 15 10.090706 Anserini +test558 Q0 4900920 16 9.900548 Anserini +test558 Q0 7659034 17 9.851561 Anserini +test558 Q0 4901225 18 9.814042 Anserini +test558 Q0 3211726 19 9.806135 Anserini +test558 Q0 4900941 20 9.770071 Anserini +test558 Q0 1454548 21 9.767188 Anserini +test558 Q0 184192 22 9.733350 Anserini +test558 Q0 5168444 23 9.726499 Anserini +test558 Q0 4900924 24 9.688624 Anserini +test558 Q0 13171552 25 9.649132 Anserini +test558 Q0 7579772 26 9.640523 Anserini +test558 Q0 16753963 27 9.640523 Anserini +test558 Q0 2194754 28 9.600557 Anserini +test558 Q0 10041298 29 9.557199 Anserini +test558 Q0 4901227 30 9.555134 Anserini +test559 Q0 3953269 1 9.511582 Anserini +test559 Q0 1328260 2 9.459719 Anserini +test559 Q0 4405199 3 9.127049 Anserini +test559 Q0 4405198 4 8.859029 Anserini +test559 Q0 4405200 5 8.859029 Anserini +test559 Q0 7197353 6 8.796215 Anserini +test559 Q0 26301 7 8.748346 Anserini +test559 Q0 12158817 8 8.616761 Anserini +test559 Q0 4405205 9 8.507183 Anserini +test559 Q0 12840726 10 8.507183 Anserini +test559 Q0 14730442 11 8.400697 Anserini +test559 Q0 10671983 12 8.348566 Anserini +test559 Q0 5342773 13 8.332749 Anserini +test559 Q0 4004339 14 8.332749 Anserini +test559 Q0 4004340 15 8.244096 Anserini +test559 Q0 10838058 16 8.225708 Anserini +test559 Q0 3254410 17 8.225708 Anserini +test559 Q0 19524625 18 8.175482 Anserini +test559 Q0 1372050 19 8.124451 Anserini +test559 Q0 12718623 20 8.124451 Anserini +test559 Q0 26308 21 8.124451 Anserini +test559 Q0 16212831 22 8.124451 Anserini +test559 Q0 19991975 23 8.074859 Anserini +test559 Q0 19102382 24 8.047805 Anserini +test559 Q0 12617857 25 8.047805 Anserini +test559 Q0 10540300 26 7.890895 Anserini +test559 Q0 4373586 27 7.874274 Anserini +test559 Q0 16171475 28 7.840528 Anserini +test559 Q0 17778478 29 7.829183 Anserini +test559 Q0 16171478 30 7.829183 Anserini +test56 Q0 3732226 1 14.441091 Anserini +test56 Q0 3732229 2 13.014772 Anserini +test56 Q0 8574996 3 12.643082 Anserini +test56 Q0 2829741 4 12.186913 Anserini +test56 Q0 3862602 5 12.092806 Anserini +test56 Q0 4476793 6 11.936397 Anserini +test56 Q0 3909236 7 11.656136 Anserini +test56 Q0 4476787 8 11.558642 Anserini +test56 Q0 3862613 9 11.412175 Anserini +test56 Q0 12451879 10 11.388613 Anserini +test56 Q0 588392 11 11.313328 Anserini +test56 Q0 10554872 12 11.019881 Anserini +test56 Q0 7185118 13 10.828558 Anserini +test56 Q0 11195860 14 10.576636 Anserini +test56 Q0 3377435 15 10.480404 Anserini +test56 Q0 810955 16 10.345829 Anserini +test56 Q0 2824722 17 9.981899 Anserini +test56 Q0 586600 18 9.965353 Anserini +test56 Q0 14085013 19 9.873331 Anserini +test56 Q0 15716278 20 9.858191 Anserini +test56 Q0 1754006 21 9.831602 Anserini +test56 Q0 3170593 22 9.812647 Anserini +test56 Q0 1753999 23 9.774737 Anserini +test56 Q0 13628178 24 9.753309 Anserini +test56 Q0 3400131 25 9.550101 Anserini +test56 Q0 2813749 26 9.542388 Anserini +test56 Q0 3051732 27 9.498116 Anserini +test56 Q0 2117133 28 9.482664 Anserini +test56 Q0 9084161 29 9.482664 Anserini +test56 Q0 3051733 30 9.431690 Anserini +test560 Q0 16609959 1 14.268099 Anserini +test560 Q0 16609958 2 13.502344 Anserini +test560 Q0 3661244 3 13.391514 Anserini +test560 Q0 3806158 4 11.938189 Anserini +test560 Q0 12252839 5 10.677643 Anserini +test560 Q0 114549 6 10.677643 Anserini +test560 Q0 9435637 7 10.620028 Anserini +test560 Q0 9309536 8 10.453363 Anserini +test560 Q0 10044109 9 10.380585 Anserini +test560 Q0 8957697 10 10.342448 Anserini +test560 Q0 10044110 11 10.192272 Anserini +test560 Q0 2965058 12 10.177999 Anserini +test560 Q0 20170006 13 10.136760 Anserini +test560 Q0 17690330 14 10.085832 Anserini +test560 Q0 7381181 15 10.079133 Anserini +test560 Q0 8167228 16 10.076803 Anserini +test560 Q0 17571367 17 10.050394 Anserini +test560 Q0 16514945 18 10.027560 Anserini +test560 Q0 16026509 19 10.027560 Anserini +test560 Q0 20170005 20 9.982244 Anserini +test560 Q0 17013038 21 9.973888 Anserini +test560 Q0 3661238 22 9.918606 Anserini +test560 Q0 8352498 23 9.894707 Anserini +test560 Q0 8352497 24 9.894707 Anserini +test560 Q0 16514946 25 9.886801 Anserini +test560 Q0 13743101 26 9.873441 Anserini +test560 Q0 4595001 27 9.864412 Anserini +test560 Q0 19691767 28 9.851638 Anserini +test560 Q0 15048307 29 9.821769 Anserini +test560 Q0 3169500 30 9.791126 Anserini +test561 Q0 2676883 1 17.844061 Anserini +test561 Q0 2032134 2 17.753374 Anserini +test561 Q0 2414024 3 17.415983 Anserini +test561 Q0 5087866 4 17.358150 Anserini +test561 Q0 10843075 5 17.342178 Anserini +test561 Q0 3897378 6 17.303997 Anserini +test561 Q0 2676894 7 17.277115 Anserini +test561 Q0 9535014 8 17.222677 Anserini +test561 Q0 2414023 9 17.028728 Anserini +test561 Q0 3743813 10 17.026743 Anserini +test561 Q0 1282168 11 16.902147 Anserini +test561 Q0 5108406 12 16.886711 Anserini +test561 Q0 5129874 13 16.820772 Anserini +test561 Q0 5129935 14 16.755348 Anserini +test561 Q0 9534998 15 16.746712 Anserini +test561 Q0 847498 16 16.730743 Anserini +test561 Q0 847500 17 16.730743 Anserini +test561 Q0 5129936 18 16.730743 Anserini +test561 Q0 10843071 19 16.675066 Anserini +test561 Q0 423296 20 16.662449 Anserini +test561 Q0 2032238 21 16.621250 Anserini +test561 Q0 706847 22 16.575445 Anserini +test561 Q0 423371 23 16.515812 Anserini +test561 Q0 3743802 24 16.508535 Anserini +test561 Q0 3743792 25 16.424931 Anserini +test561 Q0 423381 26 16.420280 Anserini +test561 Q0 9412407 27 16.371464 Anserini +test561 Q0 12559325 28 16.170080 Anserini +test561 Q0 1282170 29 16.151184 Anserini +test561 Q0 5108419 30 16.090485 Anserini +test562 Q0 9794876 1 10.431441 Anserini +test562 Q0 675185 2 10.089865 Anserini +test562 Q0 4754961 3 10.061617 Anserini +test562 Q0 19810354 4 9.974526 Anserini +test562 Q0 18069054 5 9.964612 Anserini +test562 Q0 3709480 6 9.924323 Anserini +test562 Q0 2738592 7 9.811240 Anserini +test562 Q0 8512995 8 9.763024 Anserini +test562 Q0 17972544 9 9.709609 Anserini +test562 Q0 10966021 10 9.632542 Anserini +test562 Q0 3973600 11 9.462509 Anserini +test562 Q0 17972543 12 9.359616 Anserini +test562 Q0 19106521 13 9.359616 Anserini +test562 Q0 11907519 14 9.312556 Anserini +test562 Q0 12812331 15 9.306679 Anserini +test562 Q0 16287649 16 9.301859 Anserini +test562 Q0 546065 17 9.059086 Anserini +test562 Q0 656218 18 9.004100 Anserini +test562 Q0 3417233 19 8.949851 Anserini +test562 Q0 17833780 20 8.949851 Anserini +test562 Q0 4452962 21 8.882925 Anserini +test562 Q0 3709479 22 8.864905 Anserini +test562 Q0 7562349 23 8.843501 Anserini +test562 Q0 656229 24 8.769295 Anserini +test562 Q0 7832423 25 8.757364 Anserini +test562 Q0 14974947 26 8.757364 Anserini +test562 Q0 3308419 27 8.729878 Anserini +test562 Q0 10966022 28 8.729878 Anserini +test562 Q0 9845071 29 8.689657 Anserini +test562 Q0 12394467 30 8.662073 Anserini +test563 Q0 5842003 1 16.823833 Anserini +test563 Q0 15002708 2 16.587215 Anserini +test563 Q0 20932070 3 16.553629 Anserini +test563 Q0 15115111 4 15.885918 Anserini +test563 Q0 20932071 5 15.723634 Anserini +test563 Q0 5842002 6 15.276754 Anserini +test563 Q0 12701449 7 14.978474 Anserini +test563 Q0 12701452 8 14.978474 Anserini +test563 Q0 7582220 9 14.908178 Anserini +test563 Q0 15002706 10 14.424723 Anserini +test563 Q0 15115105 11 14.407307 Anserini +test563 Q0 15115104 12 14.286392 Anserini +test563 Q0 5914455 13 14.157178 Anserini +test563 Q0 7582219 14 13.758446 Anserini +test563 Q0 5914215 15 13.627983 Anserini +test563 Q0 5842009 16 13.415204 Anserini +test563 Q0 15002702 17 13.412629 Anserini +test563 Q0 7582215 18 13.212282 Anserini +test563 Q0 18393065 19 13.147383 Anserini +test563 Q0 16215822 20 13.143478 Anserini +test563 Q0 18393067 21 13.142292 Anserini +test563 Q0 5841991 22 12.860901 Anserini +test563 Q0 17820057 23 12.852358 Anserini +test563 Q0 17820058 24 12.852358 Anserini +test563 Q0 6133484 25 12.728444 Anserini +test563 Q0 15002703 26 12.621454 Anserini +test563 Q0 12701450 27 12.515083 Anserini +test563 Q0 15115109 28 12.406529 Anserini +test563 Q0 11716397 29 12.351770 Anserini +test563 Q0 15115100 30 12.330949 Anserini +test564 Q0 9754493 1 12.624214 Anserini +test564 Q0 19807797 2 12.618773 Anserini +test564 Q0 17918336 3 12.461634 Anserini +test564 Q0 17493666 4 12.441213 Anserini +test564 Q0 9754512 5 12.033310 Anserini +test564 Q0 13311815 6 11.925015 Anserini +test564 Q0 20468759 7 11.916440 Anserini +test564 Q0 9403920 8 11.745026 Anserini +test564 Q0 8067742 9 11.680064 Anserini +test564 Q0 7176875 10 11.654813 Anserini +test564 Q0 20153795 11 11.642491 Anserini +test564 Q0 11381839 12 11.604595 Anserini +test564 Q0 20153797 13 11.505199 Anserini +test564 Q0 18910486 14 11.503611 Anserini +test564 Q0 18910493 15 11.456806 Anserini +test564 Q0 12853552 16 11.440053 Anserini +test564 Q0 10441308 17 11.366640 Anserini +test564 Q0 10057115 18 11.335999 Anserini +test564 Q0 17473072 19 11.256973 Anserini +test564 Q0 16578252 20 11.256973 Anserini +test564 Q0 20076813 21 11.256973 Anserini +test564 Q0 8067738 22 11.231785 Anserini +test564 Q0 13137120 23 11.221343 Anserini +test564 Q0 20076810 24 11.189132 Anserini +test564 Q0 12861449 25 11.162101 Anserini +test564 Q0 12078499 26 11.121531 Anserini +test564 Q0 6095899 27 11.120338 Anserini +test564 Q0 12490028 28 11.112177 Anserini +test564 Q0 19087652 29 11.105104 Anserini +test564 Q0 9754505 30 11.073078 Anserini +test565 Q0 20160087 1 19.863659 Anserini +test565 Q0 20160091 2 18.561974 Anserini +test565 Q0 20160090 3 18.039770 Anserini +test565 Q0 20160088 4 17.563618 Anserini +test565 Q0 20160089 5 15.890230 Anserini +test565 Q0 2166505 6 15.425493 Anserini +test565 Q0 10964407 7 14.833108 Anserini +test565 Q0 12342842 8 14.790014 Anserini +test565 Q0 3197892 9 14.361716 Anserini +test565 Q0 8692214 10 13.984729 Anserini +test565 Q0 15289933 11 13.876484 Anserini +test565 Q0 15289937 12 13.876484 Anserini +test565 Q0 10367865 13 13.727859 Anserini +test565 Q0 11426685 14 13.639079 Anserini +test565 Q0 5091706 15 13.578458 Anserini +test565 Q0 13576246 16 13.558719 Anserini +test565 Q0 6802420 17 13.531937 Anserini +test565 Q0 11708035 18 13.523470 Anserini +test565 Q0 8692216 19 13.502798 Anserini +test565 Q0 8366031 20 13.448544 Anserini +test565 Q0 11025266 21 13.410007 Anserini +test565 Q0 13490299 22 13.372725 Anserini +test565 Q0 9691188 23 13.336029 Anserini +test565 Q0 7646512 24 13.335952 Anserini +test565 Q0 18399928 25 13.330080 Anserini +test565 Q0 17919139 26 13.303145 Anserini +test565 Q0 16622991 27 13.282768 Anserini +test565 Q0 4024267 28 13.279657 Anserini +test565 Q0 12391542 29 13.279657 Anserini +test565 Q0 10572672 30 13.262311 Anserini +test566 Q0 1809734 1 14.543651 Anserini +test566 Q0 763060 2 14.319204 Anserini +test566 Q0 6768693 3 14.090006 Anserini +test566 Q0 1165495 4 14.042926 Anserini +test566 Q0 1791220 5 13.580829 Anserini +test566 Q0 763009 6 13.541582 Anserini +test566 Q0 13415985 7 13.535210 Anserini +test566 Q0 5552931 8 13.497935 Anserini +test566 Q0 5651111 9 13.471982 Anserini +test566 Q0 12797698 10 13.425808 Anserini +test566 Q0 3029055 11 13.404192 Anserini +test566 Q0 3029062 12 13.404192 Anserini +test566 Q0 1165451 13 13.311309 Anserini +test566 Q0 3956283 14 13.234101 Anserini +test566 Q0 11850242 15 13.223240 Anserini +test566 Q0 11850245 16 13.223240 Anserini +test566 Q0 1809706 17 13.172067 Anserini +test566 Q0 1809528 18 13.065163 Anserini +test566 Q0 1809531 19 13.065163 Anserini +test566 Q0 1255821 20 12.980350 Anserini +test566 Q0 9793361 21 12.956790 Anserini +test566 Q0 2171504 22 12.919977 Anserini +test566 Q0 669460 23 12.849648 Anserini +test566 Q0 12797699 24 12.765210 Anserini +test566 Q0 13341520 25 12.760273 Anserini +test566 Q0 1376764 26 12.756368 Anserini +test566 Q0 13470678 27 12.660538 Anserini +test566 Q0 10438087 28 12.605936 Anserini +test566 Q0 19689632 29 12.583322 Anserini +test566 Q0 9437435 30 12.565472 Anserini +test567 Q0 3257292 1 21.627663 Anserini +test567 Q0 3257295 2 20.821442 Anserini +test567 Q0 3257294 3 20.760899 Anserini +test567 Q0 12793838 4 20.134624 Anserini +test567 Q0 20088814 5 19.984623 Anserini +test567 Q0 12332108 6 19.660116 Anserini +test567 Q0 12332105 7 19.426033 Anserini +test567 Q0 1431827 8 19.137274 Anserini +test567 Q0 12332111 9 18.926437 Anserini +test567 Q0 12793839 10 18.847477 Anserini +test567 Q0 12332101 11 18.750166 Anserini +test567 Q0 5602630 12 18.429962 Anserini +test567 Q0 20088812 13 18.429962 Anserini +test567 Q0 1431802 14 18.253735 Anserini +test567 Q0 12793821 15 18.234228 Anserini +test567 Q0 1431824 16 18.125540 Anserini +test567 Q0 1431817 17 17.896318 Anserini +test567 Q0 12793820 18 17.727692 Anserini +test567 Q0 13617011 19 17.653372 Anserini +test567 Q0 3877207 20 17.632788 Anserini +test567 Q0 1431825 21 17.584030 Anserini +test567 Q0 5602632 22 17.409817 Anserini +test567 Q0 1431830 23 17.338211 Anserini +test567 Q0 1431828 24 17.336761 Anserini +test567 Q0 12332113 25 17.241133 Anserini +test567 Q0 12793822 26 17.190134 Anserini +test567 Q0 5602619 27 17.167883 Anserini +test567 Q0 3257293 28 16.918499 Anserini +test567 Q0 12332112 29 16.847004 Anserini +test567 Q0 1431801 30 16.707874 Anserini +test568 Q0 18748938 1 16.039028 Anserini +test568 Q0 16235852 2 15.681316 Anserini +test568 Q0 18748925 3 15.637043 Anserini +test568 Q0 1815397 4 15.406714 Anserini +test568 Q0 18748937 5 15.311375 Anserini +test568 Q0 18748927 6 15.144686 Anserini +test568 Q0 18748935 7 15.131242 Anserini +test568 Q0 10190711 8 15.108195 Anserini +test568 Q0 18748933 9 15.041665 Anserini +test568 Q0 18748926 10 15.034933 Anserini +test568 Q0 1920451 11 14.878827 Anserini +test568 Q0 10190710 12 14.636060 Anserini +test568 Q0 18748929 13 14.610983 Anserini +test568 Q0 1904706 14 14.555126 Anserini +test568 Q0 2022767 15 14.518226 Anserini +test568 Q0 18748923 16 14.437160 Anserini +test568 Q0 6173847 17 14.421708 Anserini +test568 Q0 1904712 18 14.390999 Anserini +test568 Q0 12236465 19 14.381872 Anserini +test568 Q0 15348880 20 14.357089 Anserini +test568 Q0 1488620 21 14.278131 Anserini +test568 Q0 6173849 22 14.227005 Anserini +test568 Q0 20397469 23 14.185012 Anserini +test568 Q0 19727134 24 14.109107 Anserini +test568 Q0 10190745 25 14.108745 Anserini +test568 Q0 4455546 26 14.075811 Anserini +test568 Q0 3426344 27 14.021999 Anserini +test568 Q0 20797323 28 13.950152 Anserini +test568 Q0 8276695 29 13.918713 Anserini +test568 Q0 14986216 30 13.913778 Anserini +test569 Q0 1022220 1 13.353673 Anserini +test569 Q0 1022228 2 13.283122 Anserini +test569 Q0 19998832 3 13.147127 Anserini +test569 Q0 3170434 4 13.136204 Anserini +test569 Q0 17809518 5 12.756784 Anserini +test569 Q0 20393540 6 12.245665 Anserini +test569 Q0 20393541 7 12.245665 Anserini +test569 Q0 12696922 8 11.584204 Anserini +test569 Q0 9151392 9 11.034872 Anserini +test569 Q0 3291422 10 11.027822 Anserini +test569 Q0 19681591 11 10.899680 Anserini +test569 Q0 11212080 12 10.866421 Anserini +test569 Q0 12696920 13 10.853456 Anserini +test569 Q0 8270603 14 10.790471 Anserini +test569 Q0 14417854 15 10.783837 Anserini +test569 Q0 2637561 16 10.642361 Anserini +test569 Q0 19737307 17 10.582321 Anserini +test569 Q0 9962286 18 10.527925 Anserini +test569 Q0 4477713 19 10.496066 Anserini +test569 Q0 3291429 20 10.492906 Anserini +test569 Q0 20851502 21 10.452548 Anserini +test569 Q0 3371446 22 10.435715 Anserini +test569 Q0 3291415 23 10.429652 Anserini +test569 Q0 6964175 24 10.419833 Anserini +test569 Q0 15684375 25 10.414506 Anserini +test569 Q0 2637608 26 10.406736 Anserini +test569 Q0 2637574 27 10.351841 Anserini +test569 Q0 9169910 28 10.335619 Anserini +test569 Q0 16145188 29 10.315785 Anserini +test569 Q0 13473546 30 10.314418 Anserini +test57 Q0 380288 1 15.677336 Anserini +test57 Q0 4011843 2 13.874540 Anserini +test57 Q0 9704687 3 13.583617 Anserini +test57 Q0 5727779 4 13.251683 Anserini +test57 Q0 171651 5 12.577703 Anserini +test57 Q0 20454683 6 12.427758 Anserini +test57 Q0 1872072 7 12.343915 Anserini +test57 Q0 1566609 8 12.307906 Anserini +test57 Q0 12391013 9 12.261859 Anserini +test57 Q0 16512 10 12.064421 Anserini +test57 Q0 7977722 11 12.052228 Anserini +test57 Q0 3191376 12 12.030200 Anserini +test57 Q0 7977729 13 11.965398 Anserini +test57 Q0 1572876 14 11.906315 Anserini +test57 Q0 14123208 15 11.845337 Anserini +test57 Q0 11233064 16 11.827062 Anserini +test57 Q0 7977703 17 11.814548 Anserini +test57 Q0 15703333 18 11.812325 Anserini +test57 Q0 356906 19 11.781856 Anserini +test57 Q0 7977716 20 11.703934 Anserini +test57 Q0 3886748 21 11.676803 Anserini +test57 Q0 7977707 22 11.637777 Anserini +test57 Q0 15726408 23 11.637777 Anserini +test57 Q0 15792709 24 11.627857 Anserini +test57 Q0 7977724 25 11.568184 Anserini +test57 Q0 12391081 26 11.473927 Anserini +test57 Q0 7977738 27 11.413988 Anserini +test57 Q0 3391321 28 11.357632 Anserini +test57 Q0 7977730 29 11.335532 Anserini +test57 Q0 7977708 30 11.327317 Anserini +test570 Q0 20819465 1 12.303997 Anserini +test570 Q0 20819466 2 12.303997 Anserini +test570 Q0 14969529 3 11.875357 Anserini +test570 Q0 14969521 4 11.690749 Anserini +test570 Q0 18411446 5 11.502405 Anserini +test570 Q0 18411451 6 11.453911 Anserini +test570 Q0 18411478 7 11.363018 Anserini +test570 Q0 18411456 8 11.229218 Anserini +test570 Q0 18411453 9 10.917912 Anserini +test570 Q0 10430613 10 10.653279 Anserini +test570 Q0 19800714 11 10.647708 Anserini +test570 Q0 18411459 12 10.568445 Anserini +test570 Q0 3989709 13 10.247499 Anserini +test570 Q0 16021837 14 9.973708 Anserini +test570 Q0 3498074 15 9.968749 Anserini +test570 Q0 14969523 16 9.961326 Anserini +test570 Q0 16573677 17 9.950054 Anserini +test570 Q0 18411442 18 9.918302 Anserini +test570 Q0 8754743 19 9.873558 Anserini +test570 Q0 20233655 20 9.855639 Anserini +test570 Q0 4924610 21 9.756708 Anserini +test570 Q0 18411476 22 9.713804 Anserini +test570 Q0 15049745 23 9.712303 Anserini +test570 Q0 7003899 24 9.697929 Anserini +test570 Q0 18411460 25 9.670918 Anserini +test570 Q0 18411457 26 9.670918 Anserini +test570 Q0 19506708 27 9.666084 Anserini +test570 Q0 18411445 28 9.647314 Anserini +test570 Q0 2076080 29 9.642687 Anserini +test570 Q0 513048 30 9.610755 Anserini +test571 Q0 18563346 1 22.559828 Anserini +test571 Q0 18563356 2 20.877165 Anserini +test571 Q0 18084512 3 20.011078 Anserini +test571 Q0 19152711 4 19.155670 Anserini +test571 Q0 16858082 5 19.149511 Anserini +test571 Q0 403930 6 19.110226 Anserini +test571 Q0 394711 7 18.654598 Anserini +test571 Q0 2734539 8 18.127243 Anserini +test571 Q0 19314921 9 18.095873 Anserini +test571 Q0 4450419 10 18.008923 Anserini +test571 Q0 12810379 11 17.867208 Anserini +test571 Q0 17836780 12 17.858295 Anserini +test571 Q0 20550658 13 17.759817 Anserini +test571 Q0 17079291 14 17.726490 Anserini +test571 Q0 20550654 15 17.680363 Anserini +test571 Q0 18329784 16 17.597666 Anserini +test571 Q0 17079304 17 17.577888 Anserini +test571 Q0 18329765 18 17.520308 Anserini +test571 Q0 18567794 19 17.461113 Anserini +test571 Q0 2734530 20 17.397913 Anserini +test571 Q0 17076837 21 17.385456 Anserini +test571 Q0 2734573 22 17.379025 Anserini +test571 Q0 17076868 23 17.327465 Anserini +test571 Q0 394810 24 17.310780 Anserini +test571 Q0 18084466 25 17.277285 Anserini +test571 Q0 12810383 26 17.255913 Anserini +test571 Q0 18563347 27 17.243986 Anserini +test571 Q0 18567776 28 17.221050 Anserini +test571 Q0 18563350 29 17.200348 Anserini +test571 Q0 17836795 30 16.968971 Anserini +test572 Q0 20431169 1 33.238594 Anserini +test572 Q0 20431172 2 32.216259 Anserini +test572 Q0 20431170 3 28.506699 Anserini +test572 Q0 20431171 4 28.183533 Anserini +test572 Q0 20431175 5 28.166246 Anserini +test572 Q0 20431178 6 26.437269 Anserini +test572 Q0 2702708 7 25.542717 Anserini +test572 Q0 20431176 8 25.542542 Anserini +test572 Q0 20431181 9 25.509428 Anserini +test572 Q0 18327659 10 25.282845 Anserini +test572 Q0 20431173 11 24.216951 Anserini +test572 Q0 18327655 12 24.216951 Anserini +test572 Q0 18327647 13 23.548504 Anserini +test572 Q0 20431177 14 23.539482 Anserini +test572 Q0 18327656 15 23.424282 Anserini +test572 Q0 20431183 16 22.729507 Anserini +test572 Q0 18327650 17 22.574707 Anserini +test572 Q0 20431182 18 22.562603 Anserini +test572 Q0 20431184 19 22.518906 Anserini +test572 Q0 20431179 20 22.300508 Anserini +test572 Q0 20431174 21 22.137644 Anserini +test572 Q0 18327649 22 21.977209 Anserini +test572 Q0 20431180 23 20.365370 Anserini +test572 Q0 1693991 24 19.681311 Anserini +test572 Q0 10962924 25 18.793205 Anserini +test572 Q0 2117430 26 18.781353 Anserini +test572 Q0 8319697 27 18.623171 Anserini +test572 Q0 18327662 28 17.922791 Anserini +test572 Q0 3304427 29 17.799093 Anserini +test572 Q0 2117417 30 17.690403 Anserini +test573 Q0 6173415 1 13.682169 Anserini +test573 Q0 4799870 2 13.127209 Anserini +test573 Q0 6173430 3 12.602765 Anserini +test573 Q0 6173404 4 12.500142 Anserini +test573 Q0 6173399 5 12.402480 Anserini +test573 Q0 6173427 6 12.006760 Anserini +test573 Q0 20528055 7 11.978004 Anserini +test573 Q0 20626615 8 11.870489 Anserini +test573 Q0 20626616 9 11.799600 Anserini +test573 Q0 2327119 10 11.582856 Anserini +test573 Q0 19010612 11 11.473176 Anserini +test573 Q0 6173406 12 11.410503 Anserini +test573 Q0 6173429 13 11.206057 Anserini +test573 Q0 19002064 14 11.131793 Anserini +test573 Q0 6173407 15 10.918501 Anserini +test573 Q0 20528064 16 10.904350 Anserini +test573 Q0 6173411 17 10.898387 Anserini +test573 Q0 7070740 18 10.817282 Anserini +test573 Q0 6173401 19 10.804680 Anserini +test573 Q0 20528056 20 10.804680 Anserini +test573 Q0 20528054 21 10.738693 Anserini +test573 Q0 20626620 22 10.727641 Anserini +test573 Q0 20528062 23 10.663263 Anserini +test573 Q0 20626613 24 10.645904 Anserini +test573 Q0 20528057 25 10.629181 Anserini +test573 Q0 6173395 26 10.565445 Anserini +test573 Q0 20528059 27 10.555545 Anserini +test573 Q0 6173396 28 10.515011 Anserini +test573 Q0 4799886 29 10.470604 Anserini +test573 Q0 19002065 30 10.386479 Anserini +test574 Q0 7855429 1 14.246166 Anserini +test574 Q0 8929860 2 14.032683 Anserini +test574 Q0 7856022 3 13.589067 Anserini +test574 Q0 7934320 4 13.576700 Anserini +test574 Q0 7853253 5 13.505884 Anserini +test574 Q0 7853420 6 13.469382 Anserini +test574 Q0 9282243 7 13.441607 Anserini +test574 Q0 7415464 8 13.389738 Anserini +test574 Q0 7855623 9 13.368326 Anserini +test574 Q0 7855624 10 13.368326 Anserini +test574 Q0 17324418 11 13.276392 Anserini +test574 Q0 14605951 12 13.253772 Anserini +test574 Q0 7855480 13 13.201622 Anserini +test574 Q0 6723496 14 13.142313 Anserini +test574 Q0 6723497 15 13.142313 Anserini +test574 Q0 1754718 16 13.138073 Anserini +test574 Q0 7838484 17 13.116788 Anserini +test574 Q0 7852843 18 13.101930 Anserini +test574 Q0 17324417 19 13.075868 Anserini +test574 Q0 7855992 20 13.056263 Anserini +test574 Q0 7838508 21 13.049415 Anserini +test574 Q0 1754731 22 13.043055 Anserini +test574 Q0 9283370 23 13.026857 Anserini +test574 Q0 7856059 24 13.021262 Anserini +test574 Q0 7855957 25 13.011372 Anserini +test574 Q0 1751163 26 12.989244 Anserini +test574 Q0 7855403 27 12.958970 Anserini +test574 Q0 4201473 28 12.958970 Anserini +test574 Q0 15626650 29 12.958970 Anserini +test574 Q0 19821345 30 12.958970 Anserini +test575 Q0 7959559 1 16.578394 Anserini +test575 Q0 2762570 2 16.161995 Anserini +test575 Q0 15359747 3 15.927216 Anserini +test575 Q0 4164405 4 15.794431 Anserini +test575 Q0 17905307 5 15.767653 Anserini +test575 Q0 15356152 6 15.736185 Anserini +test575 Q0 2875852 7 15.730792 Anserini +test575 Q0 311431 8 15.714046 Anserini +test575 Q0 1695107 9 15.679341 Anserini +test575 Q0 15359743 10 15.654778 Anserini +test575 Q0 6293977 11 15.598615 Anserini +test575 Q0 8806513 12 15.591780 Anserini +test575 Q0 14775593 13 15.457911 Anserini +test575 Q0 311489 14 15.454357 Anserini +test575 Q0 7524548 15 15.358123 Anserini +test575 Q0 12191004 16 15.280266 Anserini +test575 Q0 4566102 17 15.196925 Anserini +test575 Q0 4693018 18 15.140308 Anserini +test575 Q0 12939982 19 15.123524 Anserini +test575 Q0 13577257 20 15.118114 Anserini +test575 Q0 316282 21 15.118114 Anserini +test575 Q0 17905304 22 15.103850 Anserini +test575 Q0 8622048 23 15.089460 Anserini +test575 Q0 12415279 24 15.079123 Anserini +test575 Q0 9727202 25 15.025702 Anserini +test575 Q0 19316989 26 15.019723 Anserini +test575 Q0 17381480 27 15.013378 Anserini +test575 Q0 9727191 28 14.979827 Anserini +test575 Q0 12444925 29 14.966498 Anserini +test575 Q0 4693021 30 14.936141 Anserini +test576 Q0 14862450 1 10.456230 Anserini +test576 Q0 14862470 2 10.407660 Anserini +test576 Q0 20420182 3 10.259064 Anserini +test576 Q0 19983831 4 10.021348 Anserini +test576 Q0 20420181 5 9.964342 Anserini +test576 Q0 8491769 6 9.908031 Anserini +test576 Q0 8491747 7 9.908031 Anserini +test576 Q0 14552003 8 9.773187 Anserini +test576 Q0 17868721 9 9.732260 Anserini +test576 Q0 8870034 10 9.501863 Anserini +test576 Q0 18925008 11 9.500112 Anserini +test576 Q0 17637307 12 9.350410 Anserini +test576 Q0 10050977 13 9.333742 Anserini +test576 Q0 8296155 14 9.212577 Anserini +test576 Q0 16069375 15 9.093576 Anserini +test576 Q0 4607923 16 9.047671 Anserini +test576 Q0 19072015 17 9.047671 Anserini +test576 Q0 8925471 18 9.047671 Anserini +test576 Q0 6463654 19 9.046455 Anserini +test576 Q0 18532685 20 9.046455 Anserini +test576 Q0 17589338 21 9.046455 Anserini +test576 Q0 17589342 22 9.046455 Anserini +test576 Q0 19983826 23 9.046455 Anserini +test576 Q0 9967765 24 9.026405 Anserini +test576 Q0 14679732 25 8.999821 Anserini +test576 Q0 17637311 26 8.999821 Anserini +test576 Q0 4932966 27 8.999821 Anserini +test576 Q0 17272453 28 8.999821 Anserini +test576 Q0 17272472 29 8.999821 Anserini +test576 Q0 1579432 30 8.999821 Anserini +test577 Q0 16458429 1 32.782406 Anserini +test577 Q0 16458430 2 32.782406 Anserini +test577 Q0 288307 3 31.751720 Anserini +test577 Q0 832350 4 31.089207 Anserini +test577 Q0 4021602 5 30.791054 Anserini +test577 Q0 5625285 6 30.623796 Anserini +test577 Q0 832381 7 30.562628 Anserini +test577 Q0 112567 8 30.171152 Anserini +test577 Q0 420232 9 28.967010 Anserini +test577 Q0 13781951 10 28.924818 Anserini +test577 Q0 5625281 11 28.469296 Anserini +test577 Q0 5625278 12 28.451733 Anserini +test577 Q0 256422 13 28.110229 Anserini +test577 Q0 288304 14 28.032143 Anserini +test577 Q0 288299 15 27.926426 Anserini +test577 Q0 13781950 16 27.921350 Anserini +test577 Q0 4021601 17 27.920759 Anserini +test577 Q0 791183 18 27.662691 Anserini +test577 Q0 5625283 19 27.648380 Anserini +test577 Q0 288305 20 27.543848 Anserini +test577 Q0 832349 21 27.531775 Anserini +test577 Q0 19282113 22 27.490833 Anserini +test577 Q0 16086949 23 27.375692 Anserini +test577 Q0 5625282 24 27.296961 Anserini +test577 Q0 112561 25 27.200277 Anserini +test577 Q0 275902 26 27.136049 Anserini +test577 Q0 5625284 27 26.947100 Anserini +test577 Q0 832403 28 26.709648 Anserini +test577 Q0 827614 29 26.547060 Anserini +test577 Q0 12425204 30 26.547060 Anserini +test578 Q0 16520195 1 16.365301 Anserini +test578 Q0 16520175 2 15.089962 Anserini +test578 Q0 17513830 3 13.587960 Anserini +test578 Q0 6619955 4 12.939600 Anserini +test578 Q0 20829611 5 12.678852 Anserini +test578 Q0 5532324 6 12.648764 Anserini +test578 Q0 20829613 7 12.624913 Anserini +test578 Q0 9346140 8 12.531275 Anserini +test578 Q0 14335781 9 12.492235 Anserini +test578 Q0 20907908 10 12.295079 Anserini +test578 Q0 20908789 11 12.143347 Anserini +test578 Q0 3208373 12 11.950925 Anserini +test578 Q0 20907918 13 11.879272 Anserini +test578 Q0 5532327 14 11.841345 Anserini +test578 Q0 9794590 15 11.789476 Anserini +test578 Q0 20908804 16 11.760250 Anserini +test578 Q0 5532330 17 11.719260 Anserini +test578 Q0 9231162 18 11.656754 Anserini +test578 Q0 19294109 19 11.653654 Anserini +test578 Q0 19391373 20 11.581017 Anserini +test578 Q0 19391377 21 11.515634 Anserini +test578 Q0 7999694 22 11.494298 Anserini +test578 Q0 272696 23 11.423389 Anserini +test578 Q0 8812845 24 11.412436 Anserini +test578 Q0 5877853 25 11.377937 Anserini +test578 Q0 11025359 26 11.373106 Anserini +test578 Q0 5998236 27 11.329670 Anserini +test578 Q0 14783700 28 11.300797 Anserini +test578 Q0 20214939 29 11.269428 Anserini +test578 Q0 7726439 30 11.256994 Anserini +test579 Q0 20260365 1 15.250155 Anserini +test579 Q0 13379848 2 13.517889 Anserini +test579 Q0 20260348 3 12.805749 Anserini +test579 Q0 20260368 4 12.512596 Anserini +test579 Q0 19211966 5 12.403134 Anserini +test579 Q0 19211967 6 12.391699 Anserini +test579 Q0 13379849 7 12.267426 Anserini +test579 Q0 13379847 8 12.191510 Anserini +test579 Q0 11790933 9 12.094366 Anserini +test579 Q0 13379838 10 11.990316 Anserini +test579 Q0 17217128 11 11.967376 Anserini +test579 Q0 1965649 12 11.946577 Anserini +test579 Q0 11790935 13 11.643545 Anserini +test579 Q0 5244903 14 11.613472 Anserini +test579 Q0 6737809 15 11.513667 Anserini +test579 Q0 20260367 16 11.488882 Anserini +test579 Q0 15961833 17 11.394403 Anserini +test579 Q0 1469758 18 11.342556 Anserini +test579 Q0 4493790 19 11.296970 Anserini +test579 Q0 8592840 20 11.293713 Anserini +test579 Q0 17609075 21 11.222090 Anserini +test579 Q0 10020088 22 11.119379 Anserini +test579 Q0 10020087 23 11.117630 Anserini +test579 Q0 6121219 24 11.080436 Anserini +test579 Q0 4546507 25 11.041492 Anserini +test579 Q0 7843099 26 11.038839 Anserini +test579 Q0 6286482 27 10.995681 Anserini +test579 Q0 4243625 28 10.989946 Anserini +test579 Q0 1469796 29 10.854639 Anserini +test579 Q0 8273151 30 10.833961 Anserini +test58 Q0 7299216 1 12.999313 Anserini +test58 Q0 7156406 2 12.639498 Anserini +test58 Q0 9706209 3 12.320267 Anserini +test58 Q0 17032329 4 12.161125 Anserini +test58 Q0 7299217 5 12.153242 Anserini +test58 Q0 7299210 6 12.117655 Anserini +test58 Q0 19545871 7 11.912789 Anserini +test58 Q0 19545891 8 11.650105 Anserini +test58 Q0 5409983 9 11.579416 Anserini +test58 Q0 8246935 10 11.515298 Anserini +test58 Q0 1489774 11 11.320717 Anserini +test58 Q0 19270693 12 11.314521 Anserini +test58 Q0 7299212 13 11.284777 Anserini +test58 Q0 10010672 14 11.124620 Anserini +test58 Q0 6422646 15 11.094543 Anserini +test58 Q0 4649610 16 11.085749 Anserini +test58 Q0 9399966 17 11.029049 Anserini +test58 Q0 10537915 18 10.999683 Anserini +test58 Q0 7133123 19 10.969778 Anserini +test58 Q0 12369485 20 10.750544 Anserini +test58 Q0 18155332 21 10.707881 Anserini +test58 Q0 10537926 22 10.704525 Anserini +test58 Q0 11554885 23 10.653764 Anserini +test58 Q0 548459 24 10.639759 Anserini +test58 Q0 13466994 25 10.617298 Anserini +test58 Q0 13763970 26 10.586234 Anserini +test58 Q0 9399964 27 10.536057 Anserini +test58 Q0 887282 28 10.533335 Anserini +test58 Q0 15583433 29 10.529804 Anserini +test58 Q0 5765556 30 10.476024 Anserini +test580 Q0 6682092 1 20.209114 Anserini +test580 Q0 6682090 2 16.040199 Anserini +test580 Q0 9439650 3 15.149829 Anserini +test580 Q0 6682091 4 14.926934 Anserini +test580 Q0 5843172 5 14.587227 Anserini +test580 Q0 14081924 6 14.502540 Anserini +test580 Q0 10974181 7 14.277239 Anserini +test580 Q0 11728361 8 13.388587 Anserini +test580 Q0 6682185 9 13.247451 Anserini +test580 Q0 159174 10 13.198376 Anserini +test580 Q0 9167438 11 13.132243 Anserini +test580 Q0 14082510 12 13.066626 Anserini +test580 Q0 4008621 13 13.012983 Anserini +test580 Q0 15774641 14 12.908560 Anserini +test580 Q0 16674856 15 12.744649 Anserini +test580 Q0 11446857 16 12.703504 Anserini +test580 Q0 6763253 17 12.673950 Anserini +test580 Q0 6682095 18 12.652416 Anserini +test580 Q0 4022773 19 12.572289 Anserini +test580 Q0 11236603 20 12.532566 Anserini +test580 Q0 6060293 21 12.347047 Anserini +test580 Q0 15169997 22 12.233292 Anserini +test580 Q0 12871197 23 12.220954 Anserini +test580 Q0 13542176 24 12.220093 Anserini +test580 Q0 6682188 25 12.197604 Anserini +test580 Q0 6560012 26 12.174824 Anserini +test580 Q0 14399988 27 12.160083 Anserini +test580 Q0 20527515 28 12.072972 Anserini +test580 Q0 4298585 29 12.057647 Anserini +test580 Q0 1761475 30 11.994586 Anserini +test581 Q0 19966273 1 19.960474 Anserini +test581 Q0 8086621 2 18.908417 Anserini +test581 Q0 9730662 3 18.874947 Anserini +test581 Q0 16421100 4 18.854336 Anserini +test581 Q0 19966274 5 18.839668 Anserini +test581 Q0 8086622 6 18.811291 Anserini +test581 Q0 20467809 7 18.807005 Anserini +test581 Q0 15812110 8 18.794409 Anserini +test581 Q0 19966280 9 18.171732 Anserini +test581 Q0 19966301 10 18.163874 Anserini +test581 Q0 20467803 11 18.047815 Anserini +test581 Q0 20122894 12 18.028999 Anserini +test581 Q0 7887463 13 18.026838 Anserini +test581 Q0 18318280 14 17.985075 Anserini +test581 Q0 16908019 15 17.977533 Anserini +test581 Q0 19549016 16 17.728565 Anserini +test581 Q0 9730650 17 17.674599 Anserini +test581 Q0 9730660 18 17.655930 Anserini +test581 Q0 5063724 19 17.490911 Anserini +test581 Q0 18972183 20 17.444935 Anserini +test581 Q0 20467812 21 17.371847 Anserini +test581 Q0 9730646 22 17.371805 Anserini +test581 Q0 19966307 23 17.338814 Anserini +test581 Q0 15213404 24 17.300064 Anserini +test581 Q0 20467842 25 17.159748 Anserini +test581 Q0 2784614 26 17.135750 Anserini +test581 Q0 9730659 27 17.067894 Anserini +test581 Q0 19966275 28 17.020111 Anserini +test581 Q0 9730653 29 16.977163 Anserini +test581 Q0 11762444 30 16.810432 Anserini +test582 Q0 9114723 1 22.565937 Anserini +test582 Q0 9114724 2 19.656990 Anserini +test582 Q0 1430267 3 19.268181 Anserini +test582 Q0 1430260 4 18.659365 Anserini +test582 Q0 5992308 5 18.401913 Anserini +test582 Q0 1430268 6 18.250210 Anserini +test582 Q0 5816394 7 18.120266 Anserini +test582 Q0 19408757 8 17.285204 Anserini +test582 Q0 5816399 9 17.256004 Anserini +test582 Q0 7175165 10 17.225521 Anserini +test582 Q0 736008 11 17.128311 Anserini +test582 Q0 5801835 12 16.993511 Anserini +test582 Q0 9777067 13 16.918497 Anserini +test582 Q0 1430266 14 16.838362 Anserini +test582 Q0 6081691 15 16.827225 Anserini +test582 Q0 1430258 16 16.826118 Anserini +test582 Q0 6081693 17 16.230036 Anserini +test582 Q0 6135791 18 16.192965 Anserini +test582 Q0 9743881 19 16.004036 Anserini +test582 Q0 6135774 20 15.779033 Anserini +test582 Q0 1430262 21 15.567214 Anserini +test582 Q0 6081692 22 15.349345 Anserini +test582 Q0 8875100 23 15.261866 Anserini +test582 Q0 1025340 24 15.221493 Anserini +test582 Q0 19401252 25 15.122894 Anserini +test582 Q0 10724506 26 14.985725 Anserini +test582 Q0 4785178 27 14.796204 Anserini +test582 Q0 6161355 28 14.672603 Anserini +test582 Q0 11196204 29 14.517346 Anserini +test582 Q0 15890161 30 14.484177 Anserini +test583 Q0 491548 1 15.672245 Anserini +test583 Q0 12637772 2 15.659888 Anserini +test583 Q0 11064880 3 15.029422 Anserini +test583 Q0 12637771 4 14.793696 Anserini +test583 Q0 12577482 5 14.490432 Anserini +test583 Q0 12578010 6 14.324909 Anserini +test583 Q0 6919930 7 14.324909 Anserini +test583 Q0 11908403 8 14.304604 Anserini +test583 Q0 12672955 9 14.254861 Anserini +test583 Q0 12672968 10 14.254861 Anserini +test583 Q0 6920006 11 14.126907 Anserini +test583 Q0 12659550 12 14.066407 Anserini +test583 Q0 12709327 13 13.990422 Anserini +test583 Q0 491506 14 13.966167 Anserini +test583 Q0 491560 15 13.891337 Anserini +test583 Q0 12709330 16 13.891337 Anserini +test583 Q0 12592757 17 13.860356 Anserini +test583 Q0 6919919 18 13.825645 Anserini +test583 Q0 6919885 19 13.705767 Anserini +test583 Q0 5039118 20 13.662285 Anserini +test583 Q0 4911004 21 13.634741 Anserini +test583 Q0 12578013 22 13.614482 Anserini +test583 Q0 14887340 23 13.570550 Anserini +test583 Q0 10436348 24 13.567319 Anserini +test583 Q0 10957580 25 13.553232 Anserini +test583 Q0 6919929 26 13.534963 Anserini +test583 Q0 6919986 27 13.501062 Anserini +test583 Q0 8606136 28 13.456120 Anserini +test583 Q0 12659549 29 13.395241 Anserini +test583 Q0 6919914 30 13.379759 Anserini +test584 Q0 19378883 1 16.336952 Anserini +test584 Q0 20672627 2 15.661880 Anserini +test584 Q0 2260356 3 13.317052 Anserini +test584 Q0 12092161 4 13.212715 Anserini +test584 Q0 6173880 5 13.212715 Anserini +test584 Q0 18088898 6 13.039279 Anserini +test584 Q0 7588214 7 12.946170 Anserini +test584 Q0 19078840 8 12.759155 Anserini +test584 Q0 10482404 9 12.736870 Anserini +test584 Q0 436640 10 12.719826 Anserini +test584 Q0 6426923 11 12.620654 Anserini +test584 Q0 1380320 12 12.434420 Anserini +test584 Q0 9143884 13 12.416584 Anserini +test584 Q0 19860774 14 12.387447 Anserini +test584 Q0 9513476 15 12.387447 Anserini +test584 Q0 7817931 16 12.212837 Anserini +test584 Q0 19894823 17 12.141235 Anserini +test584 Q0 594138 18 12.027133 Anserini +test584 Q0 759421 19 11.994846 Anserini +test584 Q0 896127 20 11.935139 Anserini +test584 Q0 9998839 21 11.907794 Anserini +test584 Q0 6340275 22 11.899195 Anserini +test584 Q0 12746091 23 11.895572 Anserini +test584 Q0 13121435 24 11.868109 Anserini +test584 Q0 8656265 25 11.757175 Anserini +test584 Q0 20684459 26 11.756728 Anserini +test584 Q0 18661911 27 11.487768 Anserini +test584 Q0 2131209 28 11.487768 Anserini +test584 Q0 19078845 29 11.443348 Anserini +test584 Q0 3148741 30 11.409076 Anserini +test585 Q0 18036959 1 10.896527 Anserini +test585 Q0 19534956 2 10.261308 Anserini +test585 Q0 17140229 3 9.998603 Anserini +test585 Q0 20147529 4 9.975327 Anserini +test585 Q0 20807828 5 9.958887 Anserini +test585 Q0 20367989 6 9.855906 Anserini +test585 Q0 17480158 7 9.828308 Anserini +test585 Q0 20146955 8 9.799899 Anserini +test585 Q0 20705042 9 9.742116 Anserini +test585 Q0 7427781 10 9.735260 Anserini +test585 Q0 9230693 11 9.556383 Anserini +test585 Q0 19484058 12 9.549201 Anserini +test585 Q0 6572523 13 9.530060 Anserini +test585 Q0 20249799 14 9.512819 Anserini +test585 Q0 13187865 15 9.495947 Anserini +test585 Q0 20249839 16 9.492448 Anserini +test585 Q0 15856708 17 9.470516 Anserini +test585 Q0 9467164 18 9.463673 Anserini +test585 Q0 8326579 19 9.451038 Anserini +test585 Q0 20249862 20 9.445209 Anserini +test585 Q0 20282793 21 9.445209 Anserini +test585 Q0 17918772 22 9.437695 Anserini +test585 Q0 20098140 23 9.420830 Anserini +test585 Q0 20335042 24 9.414939 Anserini +test585 Q0 17040895 25 9.353543 Anserini +test585 Q0 19395125 26 9.337392 Anserini +test585 Q0 19490480 27 9.325244 Anserini +test585 Q0 20334983 28 9.291679 Anserini +test585 Q0 15556341 29 9.285830 Anserini +test585 Q0 13187862 30 9.276024 Anserini +test586 Q0 12780067 1 19.701347 Anserini +test586 Q0 5637539 2 18.377001 Anserini +test586 Q0 5637537 3 17.912481 Anserini +test586 Q0 9536122 4 17.830086 Anserini +test586 Q0 5637546 5 17.825863 Anserini +test586 Q0 9536114 6 17.808983 Anserini +test586 Q0 12780068 7 17.623684 Anserini +test586 Q0 8626860 8 17.304972 Anserini +test586 Q0 16988013 9 16.257046 Anserini +test586 Q0 8839772 10 16.057312 Anserini +test586 Q0 13353939 11 16.045670 Anserini +test586 Q0 19892892 12 15.616406 Anserini +test586 Q0 11438875 13 15.011732 Anserini +test586 Q0 5637538 14 14.965636 Anserini +test586 Q0 228345 15 14.904325 Anserini +test586 Q0 15578512 16 14.868408 Anserini +test586 Q0 15578513 17 14.868408 Anserini +test586 Q0 2129698 18 14.568743 Anserini +test586 Q0 8839774 19 14.511828 Anserini +test586 Q0 10713511 20 14.254557 Anserini +test586 Q0 8839770 21 14.133736 Anserini +test586 Q0 10579995 22 14.133414 Anserini +test586 Q0 19892897 23 14.052882 Anserini +test586 Q0 5371652 24 14.005781 Anserini +test586 Q0 10936108 25 13.792210 Anserini +test586 Q0 15734873 26 13.715354 Anserini +test586 Q0 15897094 27 13.690799 Anserini +test586 Q0 3172978 28 13.613776 Anserini +test586 Q0 5637542 29 13.582164 Anserini +test586 Q0 4065908 30 13.582164 Anserini +test587 Q0 10278060 1 15.955298 Anserini +test587 Q0 10278054 2 15.912986 Anserini +test587 Q0 1787487 3 14.151690 Anserini +test587 Q0 10278059 4 13.931532 Anserini +test587 Q0 10278056 5 13.705113 Anserini +test587 Q0 10278055 6 13.440197 Anserini +test587 Q0 10278057 7 13.346324 Anserini +test587 Q0 11298306 8 12.674290 Anserini +test587 Q0 18247185 9 12.482409 Anserini +test587 Q0 12213807 10 12.259337 Anserini +test587 Q0 10278058 11 11.776291 Anserini +test587 Q0 12799289 12 11.511421 Anserini +test587 Q0 12065141 13 11.471121 Anserini +test587 Q0 12317017 14 11.251876 Anserini +test587 Q0 10543131 15 11.059954 Anserini +test587 Q0 6260992 16 10.913627 Anserini +test587 Q0 4017356 17 10.542875 Anserini +test587 Q0 14107938 18 10.453261 Anserini +test587 Q0 19600688 19 10.383173 Anserini +test587 Q0 4355654 20 10.365227 Anserini +test587 Q0 19422375 21 10.284689 Anserini +test587 Q0 2077661 22 10.278728 Anserini +test587 Q0 5835721 23 10.203768 Anserini +test587 Q0 12799287 24 10.101492 Anserini +test587 Q0 7745782 25 10.073265 Anserini +test587 Q0 353140 26 9.928171 Anserini +test587 Q0 2740998 27 9.922878 Anserini +test587 Q0 1697472 28 9.922878 Anserini +test587 Q0 4190481 29 9.794270 Anserini +test587 Q0 13332639 30 9.747111 Anserini +test588 Q0 4650497 1 16.389864 Anserini +test588 Q0 4394668 2 16.093988 Anserini +test588 Q0 13184523 3 15.810019 Anserini +test588 Q0 435902 4 15.769296 Anserini +test588 Q0 14903509 5 15.695290 Anserini +test588 Q0 8916897 6 15.660637 Anserini +test588 Q0 19709255 7 15.653788 Anserini +test588 Q0 434773 8 15.435904 Anserini +test588 Q0 7442663 9 15.190981 Anserini +test588 Q0 3236680 10 15.184124 Anserini +test588 Q0 16435717 11 15.181937 Anserini +test588 Q0 12461047 12 15.150114 Anserini +test588 Q0 6199113 13 15.131246 Anserini +test588 Q0 434768 14 15.099670 Anserini +test588 Q0 614136 15 15.085317 Anserini +test588 Q0 6324956 16 15.052847 Anserini +test588 Q0 20204528 17 15.028524 Anserini +test588 Q0 18263120 18 14.984245 Anserini +test588 Q0 4450560 19 14.979798 Anserini +test588 Q0 7343619 20 14.775522 Anserini +test588 Q0 16981050 21 14.735245 Anserini +test588 Q0 19088277 22 14.710339 Anserini +test588 Q0 10897442 23 14.675178 Anserini +test588 Q0 101358 24 14.644621 Anserini +test588 Q0 18858366 25 14.589363 Anserini +test588 Q0 6467717 26 14.469998 Anserini +test588 Q0 7442665 27 14.440611 Anserini +test588 Q0 6324957 28 14.439726 Anserini +test588 Q0 18020429 29 14.389003 Anserini +test588 Q0 434780 30 14.367089 Anserini +test589 Q0 22170 1 15.571565 Anserini +test589 Q0 22179 2 15.432104 Anserini +test589 Q0 7935982 3 14.663254 Anserini +test589 Q0 124272 4 14.565235 Anserini +test589 Q0 352208 5 14.443026 Anserini +test589 Q0 352226 6 14.432562 Anserini +test589 Q0 6019742 7 14.306949 Anserini +test589 Q0 6170399 8 14.306645 Anserini +test589 Q0 3966631 9 14.197353 Anserini +test589 Q0 6019740 10 14.147932 Anserini +test589 Q0 22183 11 13.991237 Anserini +test589 Q0 5506663 12 13.987321 Anserini +test589 Q0 3724353 13 13.963783 Anserini +test589 Q0 22164 14 13.729744 Anserini +test589 Q0 16122698 15 13.721771 Anserini +test589 Q0 124228 16 13.693739 Anserini +test589 Q0 236309 17 13.690176 Anserini +test589 Q0 352210 18 13.690176 Anserini +test589 Q0 124274 19 13.620392 Anserini +test589 Q0 8508926 20 13.586186 Anserini +test589 Q0 16146897 21 13.570356 Anserini +test589 Q0 22173 22 13.507710 Anserini +test589 Q0 1515442 23 13.477544 Anserini +test589 Q0 5449499 24 13.450920 Anserini +test589 Q0 3724358 25 13.341287 Anserini +test589 Q0 12634882 26 13.333107 Anserini +test589 Q0 663206 27 13.317137 Anserini +test589 Q0 12634883 28 13.236582 Anserini +test589 Q0 1515434 29 13.208991 Anserini +test589 Q0 6573366 30 13.134830 Anserini +test59 Q0 16240308 1 22.660667 Anserini +test59 Q0 11657377 2 22.488852 Anserini +test59 Q0 19161716 3 21.525541 Anserini +test59 Q0 18159796 4 21.198225 Anserini +test59 Q0 13298532 5 20.955940 Anserini +test59 Q0 15288338 6 20.911680 Anserini +test59 Q0 2702843 7 20.763527 Anserini +test59 Q0 20385637 8 20.692909 Anserini +test59 Q0 16379254 9 20.613972 Anserini +test59 Q0 16993042 10 20.542376 Anserini +test59 Q0 7123910 11 20.515968 Anserini +test59 Q0 16718585 12 20.496689 Anserini +test59 Q0 19469920 13 20.431938 Anserini +test59 Q0 7123908 14 20.392199 Anserini +test59 Q0 15288336 15 20.371855 Anserini +test59 Q0 18413077 16 20.358479 Anserini +test59 Q0 16379255 17 20.350704 Anserini +test59 Q0 1629669 18 20.248030 Anserini +test59 Q0 20212429 19 20.233185 Anserini +test59 Q0 12490282 20 20.231010 Anserini +test59 Q0 5051330 21 20.190393 Anserini +test59 Q0 14624396 22 20.142958 Anserini +test59 Q0 12121562 23 20.046274 Anserini +test59 Q0 13298533 24 20.041573 Anserini +test59 Q0 16982173 25 20.032738 Anserini +test59 Q0 12802320 26 20.012266 Anserini +test59 Q0 18810378 27 19.953747 Anserini +test59 Q0 11271544 28 19.882757 Anserini +test59 Q0 16245868 29 19.822113 Anserini +test59 Q0 12796930 30 19.744598 Anserini +test590 Q0 7552915 1 22.104696 Anserini +test590 Q0 7552914 2 19.774075 Anserini +test590 Q0 7552910 3 19.689144 Anserini +test590 Q0 7552917 4 18.595463 Anserini +test590 Q0 7552913 5 18.038895 Anserini +test590 Q0 5847579 6 17.315403 Anserini +test590 Q0 7552918 7 16.903999 Anserini +test590 Q0 1430197 8 16.609695 Anserini +test590 Q0 9843788 9 16.149450 Anserini +test590 Q0 1430194 10 16.046959 Anserini +test590 Q0 2493178 11 15.852846 Anserini +test590 Q0 1430195 12 15.815759 Anserini +test590 Q0 1430196 13 15.152220 Anserini +test590 Q0 1430191 14 14.793644 Anserini +test590 Q0 1430200 15 14.608726 Anserini +test590 Q0 1430192 16 14.563292 Anserini +test590 Q0 9843784 17 14.382247 Anserini +test590 Q0 5847580 18 14.382247 Anserini +test590 Q0 9843786 19 14.181576 Anserini +test590 Q0 7552919 20 14.163755 Anserini +test590 Q0 9843781 21 14.090635 Anserini +test590 Q0 7552924 22 14.085334 Anserini +test590 Q0 9843785 23 14.032207 Anserini +test590 Q0 1430198 24 13.856276 Anserini +test590 Q0 7552921 25 13.703508 Anserini +test590 Q0 9843782 26 13.515371 Anserini +test590 Q0 9843783 27 13.515371 Anserini +test590 Q0 8281653 28 13.404394 Anserini +test590 Q0 1430199 29 13.351264 Anserini +test590 Q0 7552916 30 13.062090 Anserini +test591 Q0 11536710 1 17.503273 Anserini +test591 Q0 11536709 2 17.408453 Anserini +test591 Q0 16690726 3 16.439547 Anserini +test591 Q0 16690727 4 16.189650 Anserini +test591 Q0 2352902 5 13.544185 Anserini +test591 Q0 13861722 6 13.509682 Anserini +test591 Q0 17120846 7 13.028857 Anserini +test591 Q0 13861724 8 12.933692 Anserini +test591 Q0 16568813 9 12.924040 Anserini +test591 Q0 1447289 10 12.839884 Anserini +test591 Q0 18569500 11 12.297601 Anserini +test591 Q0 951662 12 12.172022 Anserini +test591 Q0 4116061 13 12.053004 Anserini +test591 Q0 13608401 14 12.035847 Anserini +test591 Q0 5869040 15 11.952225 Anserini +test591 Q0 13297022 16 11.837369 Anserini +test591 Q0 3811973 17 11.786866 Anserini +test591 Q0 700305 18 11.786866 Anserini +test591 Q0 1454095 19 11.786866 Anserini +test591 Q0 5568275 20 11.724042 Anserini +test591 Q0 1978428 21 11.723140 Anserini +test591 Q0 18220676 22 11.660075 Anserini +test591 Q0 7786515 23 11.651879 Anserini +test591 Q0 7806912 24 11.634990 Anserini +test591 Q0 4422889 25 11.630150 Anserini +test591 Q0 8765315 26 11.536464 Anserini +test591 Q0 19402562 27 11.535424 Anserini +test591 Q0 6128843 28 11.513164 Anserini +test591 Q0 4730147 29 11.469810 Anserini +test591 Q0 18216081 30 11.469810 Anserini +test592 Q0 1997547 1 24.508514 Anserini +test592 Q0 541944 2 24.120127 Anserini +test592 Q0 8412120 3 23.287819 Anserini +test592 Q0 4207979 4 22.661610 Anserini +test592 Q0 4948837 5 22.464146 Anserini +test592 Q0 458032 6 22.456970 Anserini +test592 Q0 3953466 7 22.410940 Anserini +test592 Q0 2571635 8 22.244125 Anserini +test592 Q0 1742527 9 22.242186 Anserini +test592 Q0 4426716 10 21.880016 Anserini +test592 Q0 5185745 11 21.862171 Anserini +test592 Q0 654951 12 21.584856 Anserini +test592 Q0 541974 13 21.525145 Anserini +test592 Q0 4059872 14 21.440855 Anserini +test592 Q0 5185747 15 21.327242 Anserini +test592 Q0 2708209 16 21.129877 Anserini +test592 Q0 8956590 17 21.117279 Anserini +test592 Q0 7186369 18 21.082506 Anserini +test592 Q0 459839 19 21.063324 Anserini +test592 Q0 1563958 20 20.941389 Anserini +test592 Q0 8144229 21 20.898384 Anserini +test592 Q0 1396455 22 20.888878 Anserini +test592 Q0 4664355 23 20.870302 Anserini +test592 Q0 459853 24 20.809649 Anserini +test592 Q0 11920177 25 20.706539 Anserini +test592 Q0 11121549 26 20.663557 Anserini +test592 Q0 7135154 27 20.651470 Anserini +test592 Q0 541958 28 20.651468 Anserini +test592 Q0 15996750 29 20.614885 Anserini +test592 Q0 19057785 30 20.423777 Anserini +test593 Q0 11772375 1 24.698051 Anserini +test593 Q0 9897613 2 23.485882 Anserini +test593 Q0 349632 3 23.340662 Anserini +test593 Q0 9897621 4 22.978508 Anserini +test593 Q0 349629 5 22.210751 Anserini +test593 Q0 11772370 6 22.195473 Anserini +test593 Q0 349635 7 21.828814 Anserini +test593 Q0 349643 8 21.723957 Anserini +test593 Q0 3776838 9 21.722342 Anserini +test593 Q0 349640 10 21.607849 Anserini +test593 Q0 178575 11 21.579824 Anserini +test593 Q0 349644 12 21.442688 Anserini +test593 Q0 3776834 13 21.362234 Anserini +test593 Q0 349631 14 21.361975 Anserini +test593 Q0 349645 15 20.993176 Anserini +test593 Q0 349633 16 20.612568 Anserini +test593 Q0 349646 17 20.535902 Anserini +test593 Q0 3558881 18 20.376274 Anserini +test593 Q0 349638 19 20.374748 Anserini +test593 Q0 349641 20 20.374748 Anserini +test593 Q0 7547888 21 20.314085 Anserini +test593 Q0 349650 22 20.274952 Anserini +test593 Q0 9897618 23 19.980907 Anserini +test593 Q0 11772377 24 19.736050 Anserini +test593 Q0 11357342 25 19.705349 Anserini +test593 Q0 349648 26 19.480444 Anserini +test593 Q0 9897614 27 19.365721 Anserini +test593 Q0 3776839 28 19.329695 Anserini +test593 Q0 349647 29 19.252476 Anserini +test593 Q0 349652 30 19.252476 Anserini +test594 Q0 17295881 1 19.189457 Anserini +test594 Q0 17295879 2 17.840515 Anserini +test594 Q0 17295874 3 17.091595 Anserini +test594 Q0 6561698 4 16.710388 Anserini +test594 Q0 15526905 5 15.881252 Anserini +test594 Q0 15526903 6 15.804731 Anserini +test594 Q0 17295884 7 15.714380 Anserini +test594 Q0 17295886 8 15.692453 Anserini +test594 Q0 5842010 9 15.554881 Anserini +test594 Q0 4970347 10 15.445761 Anserini +test594 Q0 18705905 11 15.444444 Anserini +test594 Q0 17295876 12 15.381010 Anserini +test594 Q0 17295887 13 15.342514 Anserini +test594 Q0 17295873 14 15.245448 Anserini +test594 Q0 5841996 15 15.178025 Anserini +test594 Q0 17295885 16 14.426643 Anserini +test594 Q0 15526904 17 14.149171 Anserini +test594 Q0 17295889 18 13.946928 Anserini +test594 Q0 17295882 19 13.842634 Anserini +test594 Q0 8367444 20 13.561409 Anserini +test594 Q0 17295888 21 13.334601 Anserini +test594 Q0 17295875 22 13.268464 Anserini +test594 Q0 7365373 23 13.031130 Anserini +test594 Q0 17295878 24 12.745430 Anserini +test594 Q0 20188629 25 12.451494 Anserini +test594 Q0 20188624 26 12.358474 Anserini +test594 Q0 5914461 27 12.274500 Anserini +test594 Q0 7582208 28 12.071087 Anserini +test594 Q0 5914448 29 11.922984 Anserini +test594 Q0 5842011 30 11.907318 Anserini +test595 Q0 15724371 1 17.424681 Anserini +test595 Q0 17324985 2 16.075977 Anserini +test595 Q0 17325019 3 15.337881 Anserini +test595 Q0 17325009 4 14.646222 Anserini +test595 Q0 17324990 5 14.509612 Anserini +test595 Q0 15724375 6 14.336299 Anserini +test595 Q0 15724376 7 14.336299 Anserini +test595 Q0 15724377 8 14.336299 Anserini +test595 Q0 15724378 9 14.320111 Anserini +test595 Q0 15724384 10 14.320111 Anserini +test595 Q0 5662386 11 14.290419 Anserini +test595 Q0 18346444 12 14.206208 Anserini +test595 Q0 15724374 13 13.986091 Anserini +test595 Q0 17324988 14 13.986091 Anserini +test595 Q0 15724387 15 13.885418 Anserini +test595 Q0 17324992 16 13.881799 Anserini +test595 Q0 18189785 17 13.723039 Anserini +test595 Q0 15724373 18 13.723039 Anserini +test595 Q0 17284179 19 13.666589 Anserini +test595 Q0 17324993 20 13.612131 Anserini +test595 Q0 17324996 21 13.612131 Anserini +test595 Q0 15724392 22 13.552052 Anserini +test595 Q0 17324989 23 13.503187 Anserini +test595 Q0 15724372 24 13.439503 Anserini +test595 Q0 17324991 25 13.099208 Anserini +test595 Q0 17325015 26 13.099208 Anserini +test595 Q0 17324995 27 12.982037 Anserini +test595 Q0 15724391 28 12.509032 Anserini +test595 Q0 352340 29 12.509032 Anserini +test595 Q0 18206681 30 12.087276 Anserini +test596 Q0 286641 1 13.256802 Anserini +test596 Q0 22290 2 13.136511 Anserini +test596 Q0 9861976 3 11.859499 Anserini +test596 Q0 19913840 4 11.844612 Anserini +test596 Q0 271620 5 11.821474 Anserini +test596 Q0 19619489 6 11.718282 Anserini +test596 Q0 313758 7 11.677272 Anserini +test596 Q0 19619487 8 11.673900 Anserini +test596 Q0 374729 9 11.631855 Anserini +test596 Q0 4620791 10 11.500158 Anserini +test596 Q0 18465657 11 11.442171 Anserini +test596 Q0 4444253 12 11.414015 Anserini +test596 Q0 19878624 13 11.361465 Anserini +test596 Q0 19898818 14 11.359181 Anserini +test596 Q0 5635957 15 11.323353 Anserini +test596 Q0 11515980 16 11.320803 Anserini +test596 Q0 12243638 17 11.184561 Anserini +test596 Q0 15772016 18 11.163782 Anserini +test596 Q0 3140543 19 11.118140 Anserini +test596 Q0 3714042 20 11.037323 Anserini +test596 Q0 16413717 21 11.037097 Anserini +test596 Q0 2199978 22 11.035121 Anserini +test596 Q0 4915240 23 11.030997 Anserini +test596 Q0 17386808 24 11.021483 Anserini +test596 Q0 8620093 25 11.020199 Anserini +test596 Q0 11515963 26 10.953871 Anserini +test596 Q0 20153997 27 10.909712 Anserini +test596 Q0 19913841 28 10.840529 Anserini +test596 Q0 5939418 29 10.800355 Anserini +test596 Q0 9131707 30 10.765353 Anserini +test597 Q0 10948965 1 12.754261 Anserini +test597 Q0 1634259 2 12.228087 Anserini +test597 Q0 4971309 3 12.157480 Anserini +test597 Q0 4589605 4 12.101835 Anserini +test597 Q0 17079753 5 11.902799 Anserini +test597 Q0 5956149 6 11.847100 Anserini +test597 Q0 2718575 7 11.810779 Anserini +test597 Q0 13877878 8 11.564833 Anserini +test597 Q0 7679788 9 11.542057 Anserini +test597 Q0 4898827 10 11.459375 Anserini +test597 Q0 9009672 11 11.449860 Anserini +test597 Q0 2717100 12 11.427907 Anserini +test597 Q0 5237883 13 11.389164 Anserini +test597 Q0 14654289 14 11.351969 Anserini +test597 Q0 17004824 15 11.326180 Anserini +test597 Q0 1714740 16 11.300605 Anserini +test597 Q0 3030815 17 11.299604 Anserini +test597 Q0 10394004 18 11.261030 Anserini +test597 Q0 19948421 19 11.235406 Anserini +test597 Q0 237806 20 11.221655 Anserini +test597 Q0 13817216 21 11.168583 Anserini +test597 Q0 2539563 22 11.112106 Anserini +test597 Q0 10948966 23 11.069323 Anserini +test597 Q0 9731051 24 11.066396 Anserini +test597 Q0 2874327 25 10.973577 Anserini +test597 Q0 8808470 26 10.960658 Anserini +test597 Q0 20810874 27 10.940069 Anserini +test597 Q0 4922881 28 10.930315 Anserini +test597 Q0 6893796 29 10.929519 Anserini +test597 Q0 19935305 30 10.929519 Anserini +test598 Q0 14497324 1 13.619659 Anserini +test598 Q0 14497328 2 13.619659 Anserini +test598 Q0 6330710 3 13.214219 Anserini +test598 Q0 5634011 4 13.061584 Anserini +test598 Q0 9398291 5 13.059186 Anserini +test598 Q0 7745654 6 12.951688 Anserini +test598 Q0 8044159 7 12.844349 Anserini +test598 Q0 8044163 8 12.844349 Anserini +test598 Q0 16578527 9 12.524580 Anserini +test598 Q0 5176147 10 12.524580 Anserini +test598 Q0 5903453 11 12.322090 Anserini +test598 Q0 17998299 12 12.273843 Anserini +test598 Q0 14372228 13 12.216179 Anserini +test598 Q0 14372230 14 12.216179 Anserini +test598 Q0 18233286 15 12.201550 Anserini +test598 Q0 20575963 16 12.191520 Anserini +test598 Q0 5549083 17 12.175713 Anserini +test598 Q0 11515852 18 12.170595 Anserini +test598 Q0 19523895 19 12.100956 Anserini +test598 Q0 9534206 20 12.097531 Anserini +test598 Q0 2875298 21 12.082466 Anserini +test598 Q0 7974359 22 12.068882 Anserini +test598 Q0 4368691 23 12.055483 Anserini +test598 Q0 2314071 24 12.054639 Anserini +test598 Q0 1307772 25 12.036286 Anserini +test598 Q0 6048308 26 11.995378 Anserini +test598 Q0 7745656 27 11.976629 Anserini +test598 Q0 17905769 28 11.948350 Anserini +test598 Q0 14313446 29 11.940422 Anserini +test598 Q0 7723589 30 11.940339 Anserini +test599 Q0 6465707 1 16.230072 Anserini +test599 Q0 5896788 2 15.887056 Anserini +test599 Q0 2677722 3 14.729929 Anserini +test599 Q0 8773015 4 14.247845 Anserini +test599 Q0 150860 5 14.032176 Anserini +test599 Q0 3340592 6 14.023601 Anserini +test599 Q0 1939813 7 13.977576 Anserini +test599 Q0 18187753 8 13.855959 Anserini +test599 Q0 18255466 9 13.609819 Anserini +test599 Q0 11939553 10 13.524274 Anserini +test599 Q0 11939554 11 13.502938 Anserini +test599 Q0 6465244 12 13.307551 Anserini +test599 Q0 6465699 13 13.292361 Anserini +test599 Q0 5997071 14 13.244893 Anserini +test599 Q0 11791093 15 13.140155 Anserini +test599 Q0 6132106 16 13.115531 Anserini +test599 Q0 8814295 17 13.033278 Anserini +test599 Q0 1435192 18 12.939172 Anserini +test599 Q0 2018576 19 12.914849 Anserini +test599 Q0 6465243 20 12.811087 Anserini +test599 Q0 9621446 21 12.807375 Anserini +test599 Q0 12992914 22 12.802671 Anserini +test599 Q0 18114433 23 12.796338 Anserini +test599 Q0 10996050 24 12.750404 Anserini +test599 Q0 16706261 25 12.702312 Anserini +test599 Q0 8814302 26 12.626173 Anserini +test599 Q0 18115753 27 12.595201 Anserini +test599 Q0 391870 28 12.576773 Anserini +test599 Q0 2018571 29 12.533981 Anserini +test599 Q0 5734245 30 12.418653 Anserini +test6 Q0 17515114 1 11.126641 Anserini +test6 Q0 18513289 2 10.822799 Anserini +test6 Q0 17515090 3 10.822799 Anserini +test6 Q0 16610551 4 10.270794 Anserini +test6 Q0 16610555 5 10.270794 Anserini +test6 Q0 16514487 6 10.139675 Anserini +test6 Q0 3028234 7 10.071886 Anserini +test6 Q0 16514490 8 10.043673 Anserini +test6 Q0 19445534 9 9.997601 Anserini +test6 Q0 3896689 10 9.932538 Anserini +test6 Q0 8751231 11 9.903857 Anserini +test6 Q0 16669722 12 9.676870 Anserini +test6 Q0 16669724 13 9.676870 Anserini +test6 Q0 5860798 14 9.636265 Anserini +test6 Q0 9016933 15 9.635448 Anserini +test6 Q0 17225856 16 9.566633 Anserini +test6 Q0 15646687 17 9.560897 Anserini +test6 Q0 3095737 18 9.539617 Anserini +test6 Q0 20337094 19 9.527671 Anserini +test6 Q0 14191482 20 9.512390 Anserini +test6 Q0 16490429 21 9.499802 Anserini +test6 Q0 11711453 22 9.483128 Anserini +test6 Q0 11782957 23 9.482367 Anserini +test6 Q0 20337093 24 9.477087 Anserini +test6 Q0 3095729 25 9.400215 Anserini +test6 Q0 1448201 26 9.379480 Anserini +test6 Q0 17225857 27 9.375529 Anserini +test6 Q0 19314314 28 9.334650 Anserini +test6 Q0 16005711 29 9.298707 Anserini +test6 Q0 9654192 30 9.289417 Anserini +test60 Q0 20809875 1 18.404533 Anserini +test60 Q0 10424774 2 16.489304 Anserini +test60 Q0 17609517 3 16.385311 Anserini +test60 Q0 3801071 4 16.204596 Anserini +test60 Q0 17643288 5 16.182554 Anserini +test60 Q0 16437044 6 15.935263 Anserini +test60 Q0 6420042 7 15.899822 Anserini +test60 Q0 17640972 8 15.670807 Anserini +test60 Q0 3262916 9 15.626857 Anserini +test60 Q0 3262920 10 15.616979 Anserini +test60 Q0 19192986 11 15.602807 Anserini +test60 Q0 12744273 12 15.468194 Anserini +test60 Q0 3127806 13 15.401815 Anserini +test60 Q0 3262922 14 15.399158 Anserini +test60 Q0 9866799 15 15.363104 Anserini +test60 Q0 18729628 16 15.332009 Anserini +test60 Q0 12528678 17 15.318210 Anserini +test60 Q0 4636926 18 15.283886 Anserini +test60 Q0 17133773 19 15.249575 Anserini +test60 Q0 17209891 20 15.249575 Anserini +test60 Q0 14642780 21 15.249575 Anserini +test60 Q0 10828159 22 15.226996 Anserini +test60 Q0 16437012 23 15.185129 Anserini +test60 Q0 20830603 24 15.173167 Anserini +test60 Q0 18181152 25 15.169326 Anserini +test60 Q0 3222484 26 15.132162 Anserini +test60 Q0 16601555 27 15.124068 Anserini +test60 Q0 3265284 28 15.109872 Anserini +test60 Q0 18335342 29 15.058413 Anserini +test60 Q0 14260015 30 15.057682 Anserini +test600 Q0 11040192 1 19.752949 Anserini +test600 Q0 11040210 2 19.752949 Anserini +test600 Q0 11040209 3 18.689304 Anserini +test600 Q0 11040208 4 17.412376 Anserini +test600 Q0 11040201 5 15.563555 Anserini +test600 Q0 11040203 6 14.658212 Anserini +test600 Q0 11040205 7 14.658212 Anserini +test600 Q0 11040199 8 14.638084 Anserini +test600 Q0 11040198 9 14.521770 Anserini +test600 Q0 11040194 10 14.216026 Anserini +test600 Q0 11040204 11 13.304423 Anserini +test600 Q0 11040193 12 12.923357 Anserini +test600 Q0 11040196 13 12.923357 Anserini +test600 Q0 11040195 14 12.923357 Anserini +test600 Q0 11040207 15 12.923357 Anserini +test600 Q0 11040197 16 12.787313 Anserini +test600 Q0 11040206 17 12.787313 Anserini +test600 Q0 11040200 18 12.787313 Anserini +test600 Q0 11040202 19 12.787313 Anserini +test600 Q0 3664406 20 12.690661 Anserini +test600 Q0 10020033 21 12.510039 Anserini +test600 Q0 8058641 22 12.202773 Anserini +test600 Q0 9415077 23 12.032183 Anserini +test600 Q0 5272387 24 11.844714 Anserini +test600 Q0 177027 25 11.723967 Anserini +test600 Q0 10612384 26 11.449506 Anserini +test600 Q0 12100553 27 11.114495 Anserini +test600 Q0 4892097 28 11.109549 Anserini +test600 Q0 13315905 29 10.955510 Anserini +test600 Q0 12477198 30 10.878910 Anserini +test601 Q0 6012515 1 18.529812 Anserini +test601 Q0 6012526 2 18.426268 Anserini +test601 Q0 18628668 3 13.453602 Anserini +test601 Q0 20616735 4 13.212811 Anserini +test601 Q0 2532100 5 13.212811 Anserini +test601 Q0 6012525 6 13.140302 Anserini +test601 Q0 1859709 7 12.924839 Anserini +test601 Q0 6869702 8 12.788779 Anserini +test601 Q0 6012520 9 12.788779 Anserini +test601 Q0 6012516 10 12.788779 Anserini +test601 Q0 6012523 11 12.726624 Anserini +test601 Q0 6012517 12 12.609466 Anserini +test601 Q0 6012522 13 12.494520 Anserini +test601 Q0 10817738 14 11.888083 Anserini +test601 Q0 6012524 15 11.767623 Anserini +test601 Q0 1883753 16 11.767623 Anserini +test601 Q0 8221512 17 11.642426 Anserini +test601 Q0 15146415 18 11.642426 Anserini +test601 Q0 10980805 19 11.642426 Anserini +test601 Q0 17270044 20 11.519866 Anserini +test601 Q0 6012519 21 11.519866 Anserini +test601 Q0 11954562 22 11.519866 Anserini +test601 Q0 6012518 23 11.399858 Anserini +test601 Q0 6012521 24 11.399858 Anserini +test601 Q0 4640728 25 11.336964 Anserini +test601 Q0 2403568 26 11.321237 Anserini +test601 Q0 17714003 27 11.282326 Anserini +test601 Q0 11714541 28 10.655817 Anserini +test601 Q0 10093139 29 10.321215 Anserini +test601 Q0 10633935 30 10.296714 Anserini +test602 Q0 8758848 1 10.402514 Anserini +test602 Q0 8867868 2 10.145310 Anserini +test602 Q0 9823665 3 9.980341 Anserini +test602 Q0 8759307 4 9.818355 Anserini +test602 Q0 8759309 5 9.687286 Anserini +test602 Q0 700708 6 9.544931 Anserini +test602 Q0 12810660 7 9.188134 Anserini +test602 Q0 19287952 8 9.055863 Anserini +test602 Q0 19287960 9 9.055863 Anserini +test602 Q0 5205234 10 9.028905 Anserini +test602 Q0 8759146 11 8.974186 Anserini +test602 Q0 8759144 12 8.932295 Anserini +test602 Q0 8871266 13 8.916112 Anserini +test602 Q0 8721225 14 8.800084 Anserini +test602 Q0 18351322 15 8.757540 Anserini +test602 Q0 8746346 16 8.719728 Anserini +test602 Q0 13930804 17 8.647786 Anserini +test602 Q0 7114725 18 8.611129 Anserini +test602 Q0 15636360 19 8.558041 Anserini +test602 Q0 19716311 20 8.532283 Anserini +test602 Q0 7681582 21 8.526818 Anserini +test602 Q0 18355535 22 8.516981 Anserini +test602 Q0 8871287 23 8.509349 Anserini +test602 Q0 17999268 24 8.503365 Anserini +test602 Q0 11290914 25 8.495860 Anserini +test602 Q0 19969320 26 8.443465 Anserini +test602 Q0 12810661 27 8.395885 Anserini +test602 Q0 7930585 28 8.393106 Anserini +test602 Q0 2147129 29 8.391806 Anserini +test602 Q0 14182616 30 8.383868 Anserini +test603 Q0 5059351 1 12.699550 Anserini +test603 Q0 2077260 2 11.330707 Anserini +test603 Q0 4396315 3 11.260562 Anserini +test603 Q0 4700506 4 11.158641 Anserini +test603 Q0 1508962 5 10.927501 Anserini +test603 Q0 9907663 6 10.669037 Anserini +test603 Q0 20875749 7 10.582961 Anserini +test603 Q0 16750499 8 10.566027 Anserini +test603 Q0 4099575 9 10.553247 Anserini +test603 Q0 7575046 10 10.538284 Anserini +test603 Q0 4892376 11 10.459723 Anserini +test603 Q0 82563 12 10.439133 Anserini +test603 Q0 3972868 13 10.432384 Anserini +test603 Q0 12444789 14 10.368228 Anserini +test603 Q0 10080602 15 10.356782 Anserini +test603 Q0 16539038 16 10.329064 Anserini +test603 Q0 17366400 17 10.295448 Anserini +test603 Q0 490592 18 10.290681 Anserini +test603 Q0 2683138 19 10.272900 Anserini +test603 Q0 1496294 20 10.220400 Anserini +test603 Q0 3112537 21 10.215739 Anserini +test603 Q0 17677986 22 10.209043 Anserini +test603 Q0 4396312 23 10.199588 Anserini +test603 Q0 17776084 24 10.185290 Anserini +test603 Q0 20668384 25 10.177310 Anserini +test603 Q0 2451193 26 10.166874 Anserini +test603 Q0 1281080 27 10.089771 Anserini +test603 Q0 20051175 28 10.061897 Anserini +test603 Q0 2692261 29 10.037313 Anserini +test603 Q0 6318343 30 9.995883 Anserini +test604 Q0 11848571 1 10.495372 Anserini +test604 Q0 14235228 2 9.659908 Anserini +test604 Q0 17078279 3 9.580729 Anserini +test604 Q0 11267940 4 9.457731 Anserini +test604 Q0 11267932 5 9.158043 Anserini +test604 Q0 18285749 6 9.138690 Anserini +test604 Q0 18217220 7 9.120600 Anserini +test604 Q0 18217222 8 9.120600 Anserini +test604 Q0 2711239 9 9.045594 Anserini +test604 Q0 11267937 10 9.038977 Anserini +test604 Q0 20231378 11 8.878265 Anserini +test604 Q0 16121379 12 8.862041 Anserini +test604 Q0 9765831 13 8.796980 Anserini +test604 Q0 9034366 14 8.616529 Anserini +test604 Q0 9034367 15 8.616529 Anserini +test604 Q0 6563928 16 8.535628 Anserini +test604 Q0 7193114 17 8.499392 Anserini +test604 Q0 8290505 18 8.461798 Anserini +test604 Q0 1559071 19 8.372721 Anserini +test604 Q0 17569580 20 8.337936 Anserini +test604 Q0 1459277 21 8.309438 Anserini +test604 Q0 14153140 22 8.309438 Anserini +test604 Q0 9584092 23 8.309438 Anserini +test604 Q0 895756 24 8.285499 Anserini +test604 Q0 14342038 25 8.278158 Anserini +test604 Q0 7700437 26 8.271698 Anserini +test604 Q0 17612373 27 8.267879 Anserini +test604 Q0 17612352 28 8.267879 Anserini +test604 Q0 14084368 29 8.262293 Anserini +test604 Q0 5306664 30 8.233767 Anserini +test605 Q0 10833143 1 22.171803 Anserini +test605 Q0 1447292 2 22.036030 Anserini +test605 Q0 3709960 3 21.968575 Anserini +test605 Q0 1447294 4 21.549858 Anserini +test605 Q0 3634916 5 21.375021 Anserini +test605 Q0 10833145 6 21.223583 Anserini +test605 Q0 12368291 7 20.918741 Anserini +test605 Q0 3709959 8 20.259003 Anserini +test605 Q0 16903359 9 18.532450 Anserini +test605 Q0 10833144 10 18.276615 Anserini +test605 Q0 7943331 11 18.276615 Anserini +test605 Q0 1447297 12 18.210789 Anserini +test605 Q0 3415465 13 17.903095 Anserini +test605 Q0 9148157 14 17.892290 Anserini +test605 Q0 7255668 15 16.758547 Anserini +test605 Q0 8519466 16 16.582130 Anserini +test605 Q0 8519467 17 16.582130 Anserini +test605 Q0 5159277 18 16.106218 Anserini +test605 Q0 1447296 19 15.766785 Anserini +test605 Q0 20631755 20 15.214699 Anserini +test605 Q0 12520477 21 14.874324 Anserini +test605 Q0 15396760 22 14.756455 Anserini +test605 Q0 3373464 23 14.661170 Anserini +test605 Q0 826290 24 14.652416 Anserini +test605 Q0 20631749 25 14.179075 Anserini +test605 Q0 10980556 26 14.101951 Anserini +test605 Q0 16903357 27 14.087300 Anserini +test605 Q0 3415468 28 13.987560 Anserini +test605 Q0 16903360 29 13.974553 Anserini +test605 Q0 4980022 30 13.937652 Anserini +test606 Q0 6701746 1 22.337904 Anserini +test606 Q0 822955 2 21.504656 Anserini +test606 Q0 2276216 3 21.247698 Anserini +test606 Q0 7221248 4 21.184309 Anserini +test606 Q0 2276215 5 20.331795 Anserini +test606 Q0 822965 6 20.278173 Anserini +test606 Q0 7221247 7 19.617575 Anserini +test606 Q0 5667091 8 19.397886 Anserini +test606 Q0 2276218 9 19.245827 Anserini +test606 Q0 822960 10 19.146156 Anserini +test606 Q0 7770305 11 19.096256 Anserini +test606 Q0 10601820 12 19.062593 Anserini +test606 Q0 6775569 13 18.976505 Anserini +test606 Q0 18131251 14 18.870340 Anserini +test606 Q0 6775566 15 18.870340 Anserini +test606 Q0 822957 16 18.762653 Anserini +test606 Q0 6775570 17 18.728064 Anserini +test606 Q0 4312374 18 18.485924 Anserini +test606 Q0 7221243 19 18.455910 Anserini +test606 Q0 7770309 20 18.345112 Anserini +test606 Q0 822967 21 18.279661 Anserini +test606 Q0 7221246 22 18.220858 Anserini +test606 Q0 1624339 23 18.214460 Anserini +test606 Q0 3849197 24 18.198679 Anserini +test606 Q0 822974 25 18.109497 Anserini +test606 Q0 822958 26 17.872528 Anserini +test606 Q0 822954 27 17.738850 Anserini +test606 Q0 14494173 28 17.652802 Anserini +test606 Q0 911247 29 17.541380 Anserini +test606 Q0 12641863 30 17.464710 Anserini +test607 Q0 11737427 1 10.522550 Anserini +test607 Q0 12174848 2 10.235993 Anserini +test607 Q0 12953696 3 10.160833 Anserini +test607 Q0 4824292 4 10.149162 Anserini +test607 Q0 16071012 5 10.093820 Anserini +test607 Q0 5208665 6 9.970490 Anserini +test607 Q0 14436264 7 9.949574 Anserini +test607 Q0 7361364 8 9.889239 Anserini +test607 Q0 12414693 9 9.848004 Anserini +test607 Q0 15303767 10 9.798221 Anserini +test607 Q0 18642166 11 9.771322 Anserini +test607 Q0 16967819 12 9.727111 Anserini +test607 Q0 5394715 13 9.684978 Anserini +test607 Q0 17301153 14 9.608888 Anserini +test607 Q0 5791167 15 9.582681 Anserini +test607 Q0 4976791 16 9.534917 Anserini +test607 Q0 11433887 17 9.530344 Anserini +test607 Q0 15567561 18 9.526978 Anserini +test607 Q0 16915354 19 9.511243 Anserini +test607 Q0 14737208 20 9.495658 Anserini +test607 Q0 2485358 21 9.482203 Anserini +test607 Q0 17301154 22 9.450905 Anserini +test607 Q0 4345131 23 9.419632 Anserini +test607 Q0 15015106 24 9.417842 Anserini +test607 Q0 14326995 25 9.417676 Anserini +test607 Q0 12132962 26 9.396036 Anserini +test607 Q0 17991798 27 9.390690 Anserini +test607 Q0 7261803 28 9.363168 Anserini +test607 Q0 19538848 29 9.302311 Anserini +test607 Q0 15015116 30 9.288900 Anserini +test608 Q0 20669104 1 22.356941 Anserini +test608 Q0 2637496 2 20.308065 Anserini +test608 Q0 2637504 3 20.293760 Anserini +test608 Q0 2637528 4 20.178526 Anserini +test608 Q0 2637514 5 19.644106 Anserini +test608 Q0 8173388 6 19.638391 Anserini +test608 Q0 2637553 7 19.345619 Anserini +test608 Q0 2637547 8 19.238331 Anserini +test608 Q0 2637548 9 19.236027 Anserini +test608 Q0 2637494 10 19.229757 Anserini +test608 Q0 2637551 11 18.965124 Anserini +test608 Q0 8173389 12 18.877573 Anserini +test608 Q0 3172591 13 18.813591 Anserini +test608 Q0 13191682 14 18.783522 Anserini +test608 Q0 2637550 15 18.676500 Anserini +test608 Q0 724233 16 17.995327 Anserini +test608 Q0 12189464 17 17.830723 Anserini +test608 Q0 6532764 18 17.769442 Anserini +test608 Q0 13782889 19 17.667521 Anserini +test608 Q0 8191580 20 17.514313 Anserini +test608 Q0 20149869 21 17.514313 Anserini +test608 Q0 20149868 22 17.514313 Anserini +test608 Q0 18461160 23 17.505018 Anserini +test608 Q0 12971123 24 17.505018 Anserini +test608 Q0 19892626 25 17.499502 Anserini +test608 Q0 4193299 26 17.495605 Anserini +test608 Q0 2637537 27 17.495605 Anserini +test608 Q0 13448727 28 17.291647 Anserini +test608 Q0 8173392 29 17.291647 Anserini +test608 Q0 8173386 30 17.147335 Anserini +test609 Q0 11834414 1 17.868719 Anserini +test609 Q0 8803591 2 16.405535 Anserini +test609 Q0 10021361 3 15.746792 Anserini +test609 Q0 12715753 4 15.687886 Anserini +test609 Q0 13859692 5 15.569486 Anserini +test609 Q0 12814744 6 15.540892 Anserini +test609 Q0 11271164 7 15.458558 Anserini +test609 Q0 11834418 8 15.452314 Anserini +test609 Q0 13867942 9 15.450312 Anserini +test609 Q0 11027820 10 15.415924 Anserini +test609 Q0 11699972 11 15.345484 Anserini +test609 Q0 8379490 12 15.241837 Anserini +test609 Q0 8379462 13 15.177975 Anserini +test609 Q0 11699964 14 15.168138 Anserini +test609 Q0 2179839 15 15.153614 Anserini +test609 Q0 12715746 16 15.133564 Anserini +test609 Q0 13859504 17 15.103368 Anserini +test609 Q0 13997716 18 15.054743 Anserini +test609 Q0 8379466 19 14.985339 Anserini +test609 Q0 11110606 20 14.977050 Anserini +test609 Q0 11110600 21 14.959824 Anserini +test609 Q0 4608430 22 14.909822 Anserini +test609 Q0 3997137 23 14.906475 Anserini +test609 Q0 11699966 24 14.889298 Anserini +test609 Q0 10021363 25 14.889030 Anserini +test609 Q0 11510734 26 14.844910 Anserini +test609 Q0 11362040 27 14.835339 Anserini +test609 Q0 11510733 28 14.825386 Anserini +test609 Q0 2179830 29 14.824728 Anserini +test609 Q0 10890868 30 14.775958 Anserini +test61 Q0 3601897 1 12.392768 Anserini +test61 Q0 3554241 2 12.259621 Anserini +test61 Q0 20570496 3 11.197147 Anserini +test61 Q0 3600914 4 10.813716 Anserini +test61 Q0 679239 5 10.671093 Anserini +test61 Q0 7754097 6 10.449712 Anserini +test61 Q0 20954572 7 10.254289 Anserini +test61 Q0 19169723 8 10.210546 Anserini +test61 Q0 17855435 9 10.136427 Anserini +test61 Q0 7256360 10 10.132340 Anserini +test61 Q0 10106228 11 10.103760 Anserini +test61 Q0 4660188 12 10.093926 Anserini +test61 Q0 2912824 13 10.047302 Anserini +test61 Q0 5157861 14 10.018396 Anserini +test61 Q0 3690746 15 10.005136 Anserini +test61 Q0 12365404 16 10.004643 Anserini +test61 Q0 963198 17 9.995390 Anserini +test61 Q0 681227 18 9.878716 Anserini +test61 Q0 4150905 19 9.819572 Anserini +test61 Q0 1897245 20 9.791091 Anserini +test61 Q0 172879 21 9.683610 Anserini +test61 Q0 17382680 22 9.663914 Anserini +test61 Q0 7300433 23 9.646303 Anserini +test61 Q0 3688412 24 9.645336 Anserini +test61 Q0 5622538 25 9.641975 Anserini +test61 Q0 986766 26 9.555310 Anserini +test61 Q0 4804129 27 9.532193 Anserini +test61 Q0 6534834 28 9.516979 Anserini +test61 Q0 3245546 29 9.480191 Anserini +test61 Q0 8263023 30 9.478879 Anserini +test610 Q0 18234132 1 25.880075 Anserini +test610 Q0 18234165 2 25.880075 Anserini +test610 Q0 3950231 3 24.810564 Anserini +test610 Q0 4964736 4 24.570013 Anserini +test610 Q0 4508147 5 24.452620 Anserini +test610 Q0 6391867 6 24.413504 Anserini +test610 Q0 5437826 7 24.408155 Anserini +test610 Q0 19395670 8 24.398773 Anserini +test610 Q0 19042607 9 24.346514 Anserini +test610 Q0 19042610 10 24.346514 Anserini +test610 Q0 17179376 11 24.312256 Anserini +test610 Q0 15100922 12 24.245434 Anserini +test610 Q0 16398675 13 24.211849 Anserini +test610 Q0 3950210 14 24.184299 Anserini +test610 Q0 16232654 15 24.157839 Anserini +test610 Q0 8137506 16 24.129503 Anserini +test610 Q0 7391300 17 24.069519 Anserini +test610 Q0 11016831 18 24.024122 Anserini +test610 Q0 5491993 19 23.953331 Anserini +test610 Q0 18300554 20 23.922176 Anserini +test610 Q0 3109370 21 23.917915 Anserini +test610 Q0 7644891 22 23.901897 Anserini +test610 Q0 4542352 23 23.884096 Anserini +test610 Q0 8881900 24 23.884096 Anserini +test610 Q0 4964730 25 23.884096 Anserini +test610 Q0 7644889 26 23.831949 Anserini +test610 Q0 18300556 27 23.821201 Anserini +test610 Q0 8881904 28 23.815260 Anserini +test610 Q0 8688587 29 23.746819 Anserini +test610 Q0 10004249 30 23.699898 Anserini +test611 Q0 9092407 1 16.599617 Anserini +test611 Q0 15551988 2 15.213442 Anserini +test611 Q0 13965736 3 13.897289 Anserini +test611 Q0 13965747 4 13.297604 Anserini +test611 Q0 20908799 5 13.229085 Anserini +test611 Q0 9093654 6 12.695829 Anserini +test611 Q0 13965741 7 12.694622 Anserini +test611 Q0 13965677 8 12.496034 Anserini +test611 Q0 13965615 9 11.999440 Anserini +test611 Q0 4987506 10 11.930414 Anserini +test611 Q0 13965748 11 11.896772 Anserini +test611 Q0 2919437 12 11.843389 Anserini +test611 Q0 18651882 13 11.670651 Anserini +test611 Q0 13965738 14 11.556244 Anserini +test611 Q0 5370422 15 11.401147 Anserini +test611 Q0 5564091 16 11.310935 Anserini +test611 Q0 2919428 17 11.196400 Anserini +test611 Q0 18327834 18 11.143361 Anserini +test611 Q0 14509887 19 11.138792 Anserini +test611 Q0 9978169 20 11.112963 Anserini +test611 Q0 14693837 21 11.100207 Anserini +test611 Q0 3243105 22 11.003589 Anserini +test611 Q0 18764118 23 10.969539 Anserini +test611 Q0 9092405 24 10.956157 Anserini +test611 Q0 13965739 25 10.846582 Anserini +test611 Q0 16114702 26 10.801344 Anserini +test611 Q0 13992047 27 10.739092 Anserini +test611 Q0 19945854 28 10.731811 Anserini +test611 Q0 7492395 29 10.703830 Anserini +test611 Q0 12379100 30 10.682160 Anserini +test612 Q0 14347860 1 19.995300 Anserini +test612 Q0 2178262 2 19.037014 Anserini +test612 Q0 13784302 3 18.564102 Anserini +test612 Q0 10850908 4 18.503872 Anserini +test612 Q0 9407942 5 18.462681 Anserini +test612 Q0 14295279 6 18.410528 Anserini +test612 Q0 1565045 7 18.216419 Anserini +test612 Q0 1413917 8 18.200956 Anserini +test612 Q0 7133407 9 18.092400 Anserini +test612 Q0 17948056 10 18.087648 Anserini +test612 Q0 19705143 11 17.917595 Anserini +test612 Q0 7213501 12 17.860184 Anserini +test612 Q0 6881227 13 17.807110 Anserini +test612 Q0 9096638 14 17.634300 Anserini +test612 Q0 10097828 15 17.609524 Anserini +test612 Q0 2905533 16 17.546427 Anserini +test612 Q0 17130441 17 17.444946 Anserini +test612 Q0 7213504 18 17.444218 Anserini +test612 Q0 10894768 19 17.369072 Anserini +test612 Q0 7222957 20 17.353981 Anserini +test612 Q0 7020733 21 17.337545 Anserini +test612 Q0 10286188 22 17.313362 Anserini +test612 Q0 13402862 23 17.259741 Anserini +test612 Q0 14085057 24 17.149784 Anserini +test612 Q0 20518267 25 17.139498 Anserini +test612 Q0 2761827 26 17.086176 Anserini +test612 Q0 13465774 27 17.079170 Anserini +test612 Q0 20460315 28 17.067942 Anserini +test612 Q0 9151481 29 17.047112 Anserini +test612 Q0 15349244 30 17.045582 Anserini +test613 Q0 17234633 1 13.377031 Anserini +test613 Q0 4487207 2 12.922418 Anserini +test613 Q0 822234 3 12.911797 Anserini +test613 Q0 822245 4 12.815912 Anserini +test613 Q0 13730461 5 12.609081 Anserini +test613 Q0 4487202 6 12.459582 Anserini +test613 Q0 13257839 7 12.341655 Anserini +test613 Q0 7420425 8 12.338403 Anserini +test613 Q0 7420426 9 12.137424 Anserini +test613 Q0 2650321 10 12.048085 Anserini +test613 Q0 10897644 11 11.950649 Anserini +test613 Q0 6188816 12 11.922094 Anserini +test613 Q0 12489719 13 11.760034 Anserini +test613 Q0 4470771 14 11.758934 Anserini +test613 Q0 8253134 15 11.702188 Anserini +test613 Q0 7569058 16 11.623768 Anserini +test613 Q0 1866071 17 11.526859 Anserini +test613 Q0 822278 18 11.512055 Anserini +test613 Q0 8253131 19 11.493311 Anserini +test613 Q0 4363666 20 11.481239 Anserini +test613 Q0 765700 21 11.242890 Anserini +test613 Q0 816950 22 11.186831 Anserini +test613 Q0 6249827 23 11.083824 Anserini +test613 Q0 15775000 24 10.985886 Anserini +test613 Q0 6748162 25 10.935213 Anserini +test613 Q0 2764624 26 10.865824 Anserini +test613 Q0 822248 27 10.815614 Anserini +test613 Q0 1591503 28 10.804235 Anserini +test613 Q0 13257826 29 10.774040 Anserini +test613 Q0 13257852 30 10.735358 Anserini +test614 Q0 10978675 1 12.934483 Anserini +test614 Q0 2573150 2 12.888426 Anserini +test614 Q0 12139671 3 12.746339 Anserini +test614 Q0 7749463 4 12.161740 Anserini +test614 Q0 14345500 5 12.159769 Anserini +test614 Q0 17093063 6 12.046788 Anserini +test614 Q0 19691547 7 12.031682 Anserini +test614 Q0 19691562 8 12.031682 Anserini +test614 Q0 6774156 9 11.895583 Anserini +test614 Q0 7108491 10 11.833544 Anserini +test614 Q0 20998088 11 11.782835 Anserini +test614 Q0 6647275 12 11.745961 Anserini +test614 Q0 12854162 13 11.745372 Anserini +test614 Q0 12854161 14 11.745372 Anserini +test614 Q0 7141156 15 11.743528 Anserini +test614 Q0 12339537 16 11.677790 Anserini +test614 Q0 9064473 17 11.655576 Anserini +test614 Q0 7121071 18 11.633537 Anserini +test614 Q0 4345145 19 11.619972 Anserini +test614 Q0 6647295 20 11.616306 Anserini +test614 Q0 11117393 21 11.613010 Anserini +test614 Q0 7108492 22 11.515026 Anserini +test614 Q0 20577805 23 11.481019 Anserini +test614 Q0 14272316 24 11.461423 Anserini +test614 Q0 7233509 25 11.424188 Anserini +test614 Q0 10245568 26 11.419885 Anserini +test614 Q0 12611628 27 11.403925 Anserini +test614 Q0 6092982 28 11.394937 Anserini +test614 Q0 14729755 29 11.394937 Anserini +test614 Q0 14729756 30 11.394937 Anserini +test615 Q0 6670184 1 11.694334 Anserini +test615 Q0 15871124 2 11.605750 Anserini +test615 Q0 15178409 3 11.367151 Anserini +test615 Q0 16240019 4 11.215088 Anserini +test615 Q0 19852875 5 11.180798 Anserini +test615 Q0 16240020 6 11.145963 Anserini +test615 Q0 18850182 7 11.139254 Anserini +test615 Q0 15975191 8 11.055696 Anserini +test615 Q0 19472463 9 10.921431 Anserini +test615 Q0 16102044 10 10.824400 Anserini +test615 Q0 19621390 11 10.757316 Anserini +test615 Q0 18473500 12 10.748623 Anserini +test615 Q0 9364975 13 10.653202 Anserini +test615 Q0 16169270 14 10.607677 Anserini +test615 Q0 18223192 15 10.596104 Anserini +test615 Q0 12496121 16 10.573303 Anserini +test615 Q0 17885233 17 10.532519 Anserini +test615 Q0 9364978 18 10.516815 Anserini +test615 Q0 11658172 19 10.377183 Anserini +test615 Q0 12856474 20 10.351427 Anserini +test615 Q0 12856477 21 10.351427 Anserini +test615 Q0 18850189 22 10.336940 Anserini +test615 Q0 5455251 23 10.322746 Anserini +test615 Q0 18324661 24 10.299684 Anserini +test615 Q0 9364973 25 10.240104 Anserini +test615 Q0 19323862 26 10.231721 Anserini +test615 Q0 17858019 27 10.192899 Anserini +test615 Q0 9028750 28 10.023712 Anserini +test615 Q0 14222175 29 10.010467 Anserini +test615 Q0 2349564 30 9.979931 Anserini +test616 Q0 14028181 1 14.679972 Anserini +test616 Q0 18779529 2 14.498426 Anserini +test616 Q0 17938654 3 14.203705 Anserini +test616 Q0 13803546 4 14.201691 Anserini +test616 Q0 20148642 5 14.139070 Anserini +test616 Q0 16566528 6 14.137855 Anserini +test616 Q0 18201710 7 14.131829 Anserini +test616 Q0 20742976 8 14.078285 Anserini +test616 Q0 20742957 9 14.078285 Anserini +test616 Q0 20742975 10 14.020548 Anserini +test616 Q0 17123779 11 14.012227 Anserini +test616 Q0 13663623 12 13.885181 Anserini +test616 Q0 13663624 13 13.659431 Anserini +test616 Q0 20148665 14 13.480143 Anserini +test616 Q0 17938689 15 13.429714 Anserini +test616 Q0 17123829 16 13.337810 Anserini +test616 Q0 17123826 17 13.120911 Anserini +test616 Q0 17938701 18 13.113765 Anserini +test616 Q0 20742973 19 13.001344 Anserini +test616 Q0 17938693 20 12.978361 Anserini +test616 Q0 16987276 21 12.930809 Anserini +test616 Q0 15008381 22 12.818535 Anserini +test616 Q0 14552542 23 12.807251 Anserini +test616 Q0 17501201 24 12.807251 Anserini +test616 Q0 13663571 25 12.804210 Anserini +test616 Q0 17123803 26 12.797264 Anserini +test616 Q0 13663617 27 12.733522 Anserini +test616 Q0 18689097 28 12.701792 Anserini +test616 Q0 14028144 29 12.701792 Anserini +test616 Q0 11422369 30 12.701792 Anserini +test617 Q0 41128 1 23.376278 Anserini +test617 Q0 778508 2 22.421370 Anserini +test617 Q0 2053971 3 22.142399 Anserini +test617 Q0 9634656 4 22.124046 Anserini +test617 Q0 777258 5 21.505754 Anserini +test617 Q0 179865 6 21.138651 Anserini +test617 Q0 9039893 7 20.862555 Anserini +test617 Q0 5117634 8 20.775553 Anserini +test617 Q0 11013627 9 20.634005 Anserini +test617 Q0 4573004 10 20.442102 Anserini +test617 Q0 3350952 11 20.083872 Anserini +test617 Q0 9072540 12 19.832144 Anserini +test617 Q0 2053982 13 19.576145 Anserini +test617 Q0 777295 14 19.474920 Anserini +test617 Q0 51153 15 19.438480 Anserini +test617 Q0 16007269 16 19.117231 Anserini +test617 Q0 40054 17 18.985428 Anserini +test617 Q0 2053972 18 18.293619 Anserini +test617 Q0 13347726 19 18.045227 Anserini +test617 Q0 778501 20 17.945890 Anserini +test617 Q0 19486474 21 17.920317 Anserini +test617 Q0 3200901 22 17.779842 Anserini +test617 Q0 235624 23 17.665251 Anserini +test617 Q0 206402 24 17.627407 Anserini +test617 Q0 780881 25 17.504852 Anserini +test617 Q0 2385580 26 17.399918 Anserini +test617 Q0 4829656 27 17.342403 Anserini +test617 Q0 183404 28 17.274750 Anserini +test617 Q0 5144077 29 17.262619 Anserini +test617 Q0 3538501 30 17.249422 Anserini +test618 Q0 3532272 1 21.060770 Anserini +test618 Q0 3532270 2 20.990753 Anserini +test618 Q0 3532284 3 20.649786 Anserini +test618 Q0 11243797 4 20.234894 Anserini +test618 Q0 11243788 5 19.427559 Anserini +test618 Q0 6665469 6 19.218136 Anserini +test618 Q0 3532275 7 18.906197 Anserini +test618 Q0 6665456 8 18.890615 Anserini +test618 Q0 3532273 9 18.847969 Anserini +test618 Q0 3532277 10 18.752018 Anserini +test618 Q0 3532280 11 18.744902 Anserini +test618 Q0 3532274 12 18.293707 Anserini +test618 Q0 11243781 13 17.949223 Anserini +test618 Q0 3532271 14 17.719532 Anserini +test618 Q0 11243783 15 17.496353 Anserini +test618 Q0 3532283 16 17.287580 Anserini +test618 Q0 3532279 17 17.223600 Anserini +test618 Q0 3232227 18 17.042494 Anserini +test618 Q0 4167289 19 16.932362 Anserini +test618 Q0 3532281 20 16.920315 Anserini +test618 Q0 11243791 21 16.836996 Anserini +test618 Q0 9144093 22 16.664715 Anserini +test618 Q0 3876071 23 16.587587 Anserini +test618 Q0 3532276 24 16.299168 Anserini +test618 Q0 9345743 25 16.112906 Anserini +test618 Q0 6665462 26 16.081867 Anserini +test618 Q0 8564454 27 16.059492 Anserini +test618 Q0 3532278 28 16.026545 Anserini +test618 Q0 18233390 29 15.949005 Anserini +test618 Q0 3546050 30 15.886803 Anserini +test619 Q0 17206719 1 16.462444 Anserini +test619 Q0 2336317 2 15.681204 Anserini +test619 Q0 2336316 3 15.086520 Anserini +test619 Q0 4604676 4 14.962940 Anserini +test619 Q0 7980974 5 14.836905 Anserini +test619 Q0 2336327 6 14.817521 Anserini +test619 Q0 14791350 7 14.711446 Anserini +test619 Q0 19185896 8 14.693105 Anserini +test619 Q0 2336329 9 14.647320 Anserini +test619 Q0 2336318 10 14.547030 Anserini +test619 Q0 2336304 11 14.524273 Anserini +test619 Q0 2336312 12 14.374653 Anserini +test619 Q0 2373500 13 14.172239 Anserini +test619 Q0 19185897 14 14.068754 Anserini +test619 Q0 17206716 15 14.056526 Anserini +test619 Q0 17206721 16 14.044742 Anserini +test619 Q0 10979056 17 13.922519 Anserini +test619 Q0 19512988 18 13.898005 Anserini +test619 Q0 20479288 19 13.813768 Anserini +test619 Q0 2336328 20 13.538544 Anserini +test619 Q0 11465818 21 13.475823 Anserini +test619 Q0 2336314 22 13.403408 Anserini +test619 Q0 8964780 23 13.387484 Anserini +test619 Q0 12612408 24 13.298850 Anserini +test619 Q0 2336308 25 13.269121 Anserini +test619 Q0 1525700 26 13.213514 Anserini +test619 Q0 17909460 27 13.163703 Anserini +test619 Q0 2780566 28 13.104222 Anserini +test619 Q0 11093474 29 13.081567 Anserini +test619 Q0 17769698 30 12.999237 Anserini +test62 Q0 14839770 1 12.263285 Anserini +test62 Q0 14839768 2 12.263285 Anserini +test62 Q0 8690861 3 12.221842 Anserini +test62 Q0 18043914 4 11.774362 Anserini +test62 Q0 12177639 5 11.694728 Anserini +test62 Q0 16211741 6 11.617155 Anserini +test62 Q0 8456380 7 11.416951 Anserini +test62 Q0 8456385 8 11.315184 Anserini +test62 Q0 5459243 9 11.261858 Anserini +test62 Q0 3866319 10 11.168535 Anserini +test62 Q0 17162850 11 11.131491 Anserini +test62 Q0 13715934 12 11.001097 Anserini +test62 Q0 2549404 13 10.999021 Anserini +test62 Q0 13715935 14 10.928238 Anserini +test62 Q0 11947851 15 10.914071 Anserini +test62 Q0 15275734 16 10.908264 Anserini +test62 Q0 15652444 17 10.770194 Anserini +test62 Q0 5328421 18 10.740914 Anserini +test62 Q0 18215781 19 10.730818 Anserini +test62 Q0 11947861 20 10.712074 Anserini +test62 Q0 15757839 21 10.687394 Anserini +test62 Q0 16552033 22 10.565950 Anserini +test62 Q0 20395375 23 10.565950 Anserini +test62 Q0 10855762 24 10.512249 Anserini +test62 Q0 20333047 25 10.486256 Anserini +test62 Q0 13589307 26 10.479259 Anserini +test62 Q0 18518174 27 10.428856 Anserini +test62 Q0 14541562 28 10.426679 Anserini +test62 Q0 9581051 29 10.369969 Anserini +test62 Q0 16655733 30 10.333488 Anserini +test620 Q0 4571928 1 18.094023 Anserini +test620 Q0 4571931 2 16.835653 Anserini +test620 Q0 4571923 3 15.774338 Anserini +test620 Q0 4571915 4 15.679959 Anserini +test620 Q0 4571899 5 15.382372 Anserini +test620 Q0 18107170 6 15.314613 Anserini +test620 Q0 15960696 7 15.251498 Anserini +test620 Q0 14774368 8 15.249358 Anserini +test620 Q0 5448443 9 15.011691 Anserini +test620 Q0 333116 10 14.761923 Anserini +test620 Q0 13005045 11 14.631517 Anserini +test620 Q0 2259816 12 14.520539 Anserini +test620 Q0 13489886 13 14.405457 Anserini +test620 Q0 19361017 14 14.342622 Anserini +test620 Q0 1950338 15 14.337123 Anserini +test620 Q0 10358148 16 14.218811 Anserini +test620 Q0 8587520 17 14.200531 Anserini +test620 Q0 9768015 18 13.929682 Anserini +test620 Q0 4571919 19 13.916869 Anserini +test620 Q0 3187759 20 13.863105 Anserini +test620 Q0 18107172 21 13.803857 Anserini +test620 Q0 4571914 22 13.733650 Anserini +test620 Q0 4740652 23 13.431973 Anserini +test620 Q0 4571916 24 13.270747 Anserini +test620 Q0 19188688 25 13.178553 Anserini +test620 Q0 15678634 26 13.174830 Anserini +test620 Q0 669871 27 13.123565 Anserini +test620 Q0 149745 28 13.074213 Anserini +test620 Q0 14467968 29 12.995823 Anserini +test620 Q0 18107052 30 12.939459 Anserini +test621 Q0 20442043 1 18.457592 Anserini +test621 Q0 256729 2 17.875572 Anserini +test621 Q0 20004073 3 17.540298 Anserini +test621 Q0 20442041 4 17.516647 Anserini +test621 Q0 20006461 5 17.412619 Anserini +test621 Q0 20004047 6 16.952686 Anserini +test621 Q0 20006469 7 16.745886 Anserini +test621 Q0 20000242 8 16.664515 Anserini +test621 Q0 20335922 9 16.312452 Anserini +test621 Q0 20006456 10 16.303278 Anserini +test621 Q0 20006458 11 16.200764 Anserini +test621 Q0 20004061 12 16.083773 Anserini +test621 Q0 20004063 13 15.803967 Anserini +test621 Q0 20004065 14 15.712667 Anserini +test621 Q0 20004064 15 15.634579 Anserini +test621 Q0 20006453 16 15.594693 Anserini +test621 Q0 5727981 17 15.426634 Anserini +test621 Q0 20356373 18 15.424408 Anserini +test621 Q0 20000249 19 15.240789 Anserini +test621 Q0 256728 20 15.240789 Anserini +test621 Q0 256688 21 15.225626 Anserini +test621 Q0 20006465 22 15.063866 Anserini +test621 Q0 20006471 23 15.063866 Anserini +test621 Q0 20004060 24 14.933230 Anserini +test621 Q0 20006470 25 14.920885 Anserini +test621 Q0 20006449 26 14.906524 Anserini +test621 Q0 15459031 27 14.816167 Anserini +test621 Q0 20006463 28 14.815442 Anserini +test621 Q0 20006447 29 14.658596 Anserini +test621 Q0 20006452 30 14.537836 Anserini +test622 Q0 6712050 1 15.888736 Anserini +test622 Q0 6712045 2 15.832276 Anserini +test622 Q0 2664154 3 15.720970 Anserini +test622 Q0 2664218 4 15.376204 Anserini +test622 Q0 16863776 5 15.206507 Anserini +test622 Q0 6712049 6 15.013951 Anserini +test622 Q0 13439082 7 15.011475 Anserini +test622 Q0 200345 8 14.954602 Anserini +test622 Q0 3795706 9 14.659313 Anserini +test622 Q0 3795704 10 14.635307 Anserini +test622 Q0 400143 11 14.562387 Anserini +test622 Q0 6712052 12 14.229927 Anserini +test622 Q0 3795697 13 14.052853 Anserini +test622 Q0 16863773 14 13.801197 Anserini +test622 Q0 13439070 15 13.767429 Anserini +test622 Q0 8710428 16 13.702875 Anserini +test622 Q0 381746 17 13.698515 Anserini +test622 Q0 8710427 18 13.692927 Anserini +test622 Q0 11753489 19 13.646929 Anserini +test622 Q0 4405880 20 13.631387 Anserini +test622 Q0 381747 21 13.593904 Anserini +test622 Q0 12652424 22 13.543230 Anserini +test622 Q0 16637392 23 13.413387 Anserini +test622 Q0 16637425 24 13.413387 Anserini +test622 Q0 5408604 25 13.292295 Anserini +test622 Q0 13439043 26 13.289374 Anserini +test622 Q0 19682291 27 13.277263 Anserini +test622 Q0 6712047 28 13.223490 Anserini +test622 Q0 11485219 29 13.218170 Anserini +test622 Q0 6250985 30 13.189227 Anserini +test623 Q0 1375372 1 13.636264 Anserini +test623 Q0 1375373 2 13.507614 Anserini +test623 Q0 1375354 3 12.761751 Anserini +test623 Q0 9265055 4 12.182229 Anserini +test623 Q0 1375371 5 12.130375 Anserini +test623 Q0 3132467 6 11.740986 Anserini +test623 Q0 3132468 7 11.374352 Anserini +test623 Q0 1820695 8 11.238795 Anserini +test623 Q0 10802914 9 11.209633 Anserini +test623 Q0 4393360 10 11.209633 Anserini +test623 Q0 9459916 11 11.140808 Anserini +test623 Q0 11733930 12 10.877739 Anserini +test623 Q0 4610338 13 10.802185 Anserini +test623 Q0 21013125 14 10.774359 Anserini +test623 Q0 11736245 15 10.720896 Anserini +test623 Q0 1375361 16 10.644424 Anserini +test623 Q0 20282920 17 10.609965 Anserini +test623 Q0 13633955 18 10.486917 Anserini +test623 Q0 8812015 19 10.453812 Anserini +test623 Q0 1285846 20 10.430773 Anserini +test623 Q0 15388452 21 10.393845 Anserini +test623 Q0 11728875 22 10.368332 Anserini +test623 Q0 1375353 23 10.351682 Anserini +test623 Q0 8812013 24 10.265350 Anserini +test623 Q0 4646332 25 10.264412 Anserini +test623 Q0 4646316 26 10.230873 Anserini +test623 Q0 18625452 27 10.189074 Anserini +test623 Q0 17502339 28 10.186036 Anserini +test623 Q0 19821904 29 10.181734 Anserini +test623 Q0 11736384 30 10.181686 Anserini +test624 Q0 5786115 1 11.454339 Anserini +test624 Q0 1450985 2 11.446309 Anserini +test624 Q0 942185 3 11.289996 Anserini +test624 Q0 21009497 4 11.171512 Anserini +test624 Q0 9778210 5 11.042708 Anserini +test624 Q0 9514575 6 10.960899 Anserini +test624 Q0 6998617 7 10.927201 Anserini +test624 Q0 11285493 8 10.763216 Anserini +test624 Q0 6013982 9 10.740344 Anserini +test624 Q0 4606008 10 10.481865 Anserini +test624 Q0 87954 11 10.295709 Anserini +test624 Q0 214785 12 10.276606 Anserini +test624 Q0 14185485 13 10.246159 Anserini +test624 Q0 8011140 14 10.241674 Anserini +test624 Q0 11285494 15 10.241199 Anserini +test624 Q0 851902 16 10.141785 Anserini +test624 Q0 5876240 17 10.117085 Anserini +test624 Q0 18778682 18 10.080346 Anserini +test624 Q0 20029307 19 10.046382 Anserini +test624 Q0 749579 20 9.994909 Anserini +test624 Q0 8848117 21 9.974494 Anserini +test624 Q0 3748344 22 9.964435 Anserini +test624 Q0 9833862 23 9.869617 Anserini +test624 Q0 594181 24 9.867494 Anserini +test624 Q0 15528870 25 9.867102 Anserini +test624 Q0 7590939 26 9.860741 Anserini +test624 Q0 19388435 27 9.832197 Anserini +test624 Q0 7403177 28 9.824174 Anserini +test624 Q0 19278705 29 9.800603 Anserini +test624 Q0 16630392 30 9.798080 Anserini +test625 Q0 7005598 1 25.617687 Anserini +test625 Q0 7005601 2 25.324501 Anserini +test625 Q0 9568976 3 22.092495 Anserini +test625 Q0 9568971 4 21.920031 Anserini +test625 Q0 7005600 5 21.475216 Anserini +test625 Q0 8921992 6 21.332182 Anserini +test625 Q0 17121684 7 21.209272 Anserini +test625 Q0 7005599 8 21.184938 Anserini +test625 Q0 9568973 9 20.876804 Anserini +test625 Q0 11126395 10 20.857592 Anserini +test625 Q0 19761330 11 20.600302 Anserini +test625 Q0 19761331 12 20.475780 Anserini +test625 Q0 10825406 13 20.157307 Anserini +test625 Q0 7816337 14 20.154526 Anserini +test625 Q0 19180065 15 20.113174 Anserini +test625 Q0 9812617 16 19.920195 Anserini +test625 Q0 5532296 17 19.889944 Anserini +test625 Q0 14856974 18 19.792933 Anserini +test625 Q0 15133504 19 19.581884 Anserini +test625 Q0 10013106 20 19.547077 Anserini +test625 Q0 5532295 21 19.542393 Anserini +test625 Q0 14381441 22 19.480141 Anserini +test625 Q0 9568972 23 19.450916 Anserini +test625 Q0 6595347 24 19.410654 Anserini +test625 Q0 14381446 25 19.407282 Anserini +test625 Q0 13276549 26 19.405960 Anserini +test625 Q0 6135178 27 19.397219 Anserini +test625 Q0 13908030 28 19.380533 Anserini +test625 Q0 9928992 29 19.333214 Anserini +test625 Q0 9872551 30 19.329437 Anserini +test626 Q0 3719198 1 14.235643 Anserini +test626 Q0 190979 2 13.858030 Anserini +test626 Q0 10859045 3 13.299005 Anserini +test626 Q0 2354779 4 13.278997 Anserini +test626 Q0 12705176 5 13.133032 Anserini +test626 Q0 14840944 6 13.112343 Anserini +test626 Q0 13273740 7 13.060955 Anserini +test626 Q0 10251029 8 13.024289 Anserini +test626 Q0 20170880 9 12.788548 Anserini +test626 Q0 5473073 10 12.756226 Anserini +test626 Q0 653583 11 12.701271 Anserini +test626 Q0 14432232 12 12.673254 Anserini +test626 Q0 9067117 13 12.617359 Anserini +test626 Q0 190978 14 12.542423 Anserini +test626 Q0 5473072 15 12.420287 Anserini +test626 Q0 8464403 16 12.401265 Anserini +test626 Q0 16588454 17 12.360728 Anserini +test626 Q0 5898780 18 12.309620 Anserini +test626 Q0 201357 19 12.297641 Anserini +test626 Q0 1400973 20 12.276628 Anserini +test626 Q0 18798534 21 12.098649 Anserini +test626 Q0 10311595 22 12.069512 Anserini +test626 Q0 11389596 23 11.980522 Anserini +test626 Q0 1895168 24 11.958982 Anserini +test626 Q0 20079821 25 11.953506 Anserini +test626 Q0 3243035 26 11.946231 Anserini +test626 Q0 8858350 27 11.939200 Anserini +test626 Q0 11302576 28 11.935685 Anserini +test626 Q0 1629306 29 11.914392 Anserini +test626 Q0 14603253 30 11.910844 Anserini +test627 Q0 7512995 1 26.680298 Anserini +test627 Q0 2634942 2 25.692074 Anserini +test627 Q0 2634932 3 25.618410 Anserini +test627 Q0 2634936 4 23.873011 Anserini +test627 Q0 9303095 5 23.339300 Anserini +test627 Q0 16190062 6 22.923058 Anserini +test627 Q0 11902108 7 22.549889 Anserini +test627 Q0 6827249 8 22.547512 Anserini +test627 Q0 12222139 9 22.319967 Anserini +test627 Q0 8724703 10 22.133657 Anserini +test627 Q0 6011413 11 22.084373 Anserini +test627 Q0 12222138 12 21.984316 Anserini +test627 Q0 9403874 13 21.781204 Anserini +test627 Q0 9902986 14 21.615635 Anserini +test627 Q0 4554549 15 21.517105 Anserini +test627 Q0 9610995 16 21.441940 Anserini +test627 Q0 15204745 17 21.392265 Anserini +test627 Q0 9960144 18 21.365465 Anserini +test627 Q0 8721354 19 21.292591 Anserini +test627 Q0 2634940 20 21.287891 Anserini +test627 Q0 10146906 21 21.114361 Anserini +test627 Q0 12386695 22 20.889549 Anserini +test627 Q0 2634938 23 20.876583 Anserini +test627 Q0 11523229 24 20.848213 Anserini +test627 Q0 9960148 25 20.753466 Anserini +test627 Q0 2886867 26 20.680029 Anserini +test627 Q0 9079133 27 20.531548 Anserini +test627 Q0 12845068 28 20.531548 Anserini +test627 Q0 14005257 29 20.465994 Anserini +test627 Q0 11381851 30 20.429613 Anserini +test628 Q0 17213100 1 15.058210 Anserini +test628 Q0 9384094 2 14.886426 Anserini +test628 Q0 14232186 3 14.514318 Anserini +test628 Q0 14665888 4 14.370516 Anserini +test628 Q0 10322780 5 14.319305 Anserini +test628 Q0 18722154 6 14.215963 Anserini +test628 Q0 11264704 7 14.215605 Anserini +test628 Q0 18225064 8 14.183118 Anserini +test628 Q0 11988461 9 14.164519 Anserini +test628 Q0 10699726 10 14.074405 Anserini +test628 Q0 6631669 11 14.068840 Anserini +test628 Q0 10699728 12 14.024359 Anserini +test628 Q0 12316963 13 14.023180 Anserini +test628 Q0 14232189 14 13.920024 Anserini +test628 Q0 9384088 15 13.884766 Anserini +test628 Q0 15160975 16 13.789718 Anserini +test628 Q0 9183754 17 13.764359 Anserini +test628 Q0 8731921 18 13.731173 Anserini +test628 Q0 14405281 19 13.726870 Anserini +test628 Q0 17184985 20 13.712608 Anserini +test628 Q0 13194813 21 13.694330 Anserini +test628 Q0 11988462 22 13.644321 Anserini +test628 Q0 16246659 23 13.606031 Anserini +test628 Q0 8727072 24 13.545805 Anserini +test628 Q0 16247167 25 13.538807 Anserini +test628 Q0 16156939 26 13.509110 Anserini +test628 Q0 10111201 27 13.491707 Anserini +test628 Q0 14624312 28 13.475970 Anserini +test628 Q0 1975143 29 13.445947 Anserini +test628 Q0 13296792 30 13.406412 Anserini +test629 Q0 3371136 1 15.737392 Anserini +test629 Q0 378758 2 15.419210 Anserini +test629 Q0 9568726 3 15.134403 Anserini +test629 Q0 701200 4 14.627060 Anserini +test629 Q0 12418263 5 13.660652 Anserini +test629 Q0 701203 6 13.647482 Anserini +test629 Q0 10467947 7 13.504333 Anserini +test629 Q0 817178 8 13.431768 Anserini +test629 Q0 15635314 9 13.154890 Anserini +test629 Q0 3302940 10 12.954583 Anserini +test629 Q0 3302946 11 12.954583 Anserini +test629 Q0 3969781 12 12.830288 Anserini +test629 Q0 4650623 13 12.715995 Anserini +test629 Q0 534158 14 12.409571 Anserini +test629 Q0 9467740 15 12.236458 Anserini +test629 Q0 3302944 16 12.043280 Anserini +test629 Q0 6275522 17 12.017031 Anserini +test629 Q0 2094384 18 11.831472 Anserini +test629 Q0 1383227 19 11.541441 Anserini +test629 Q0 3302942 20 11.499374 Anserini +test629 Q0 11122268 21 11.426317 Anserini +test629 Q0 2502678 22 11.421913 Anserini +test629 Q0 8558522 23 11.246341 Anserini +test629 Q0 1832181 24 11.103380 Anserini +test629 Q0 18438964 25 10.989028 Anserini +test629 Q0 1775380 26 10.916449 Anserini +test629 Q0 1718165 27 10.899106 Anserini +test629 Q0 3997481 28 10.881745 Anserini +test629 Q0 12869228 29 10.808228 Anserini +test629 Q0 6275523 30 10.751402 Anserini +test63 Q0 408729 1 9.358019 Anserini +test63 Q0 6159501 2 9.350176 Anserini +test63 Q0 3491683 3 9.230595 Anserini +test63 Q0 12017902 4 9.108877 Anserini +test63 Q0 3899696 5 8.909491 Anserini +test63 Q0 4762569 6 8.881107 Anserini +test63 Q0 17335722 7 8.795795 Anserini +test63 Q0 111360 8 8.699613 Anserini +test63 Q0 16541507 9 8.655000 Anserini +test63 Q0 12785973 10 8.648490 Anserini +test63 Q0 4691361 11 8.603171 Anserini +test63 Q0 3005513 12 8.599963 Anserini +test63 Q0 2730516 13 8.580132 Anserini +test63 Q0 3982510 14 8.580132 Anserini +test63 Q0 4874082 15 8.506606 Anserini +test63 Q0 10948766 16 8.504895 Anserini +test63 Q0 96937 17 8.454560 Anserini +test63 Q0 7074320 18 8.443602 Anserini +test63 Q0 8993260 19 8.443602 Anserini +test63 Q0 9238455 20 8.406087 Anserini +test63 Q0 9639200 21 8.356941 Anserini +test63 Q0 16204931 22 8.353768 Anserini +test63 Q0 7576318 23 8.321365 Anserini +test63 Q0 10637092 24 8.311719 Anserini +test63 Q0 11780936 25 8.299582 Anserini +test63 Q0 11780938 26 8.299582 Anserini +test63 Q0 4762543 27 8.292192 Anserini +test63 Q0 4016932 28 8.266239 Anserini +test63 Q0 16541502 29 8.265829 Anserini +test63 Q0 2508454 30 8.265829 Anserini +test630 Q0 11574301 1 12.721304 Anserini +test630 Q0 11574300 2 12.408133 Anserini +test630 Q0 16655912 3 12.061479 Anserini +test630 Q0 11574298 4 11.999975 Anserini +test630 Q0 2554428 5 11.943081 Anserini +test630 Q0 2554424 6 11.750038 Anserini +test630 Q0 20836632 7 11.593164 Anserini +test630 Q0 20836614 8 11.593164 Anserini +test630 Q0 5760898 9 11.436848 Anserini +test630 Q0 2554423 10 10.975545 Anserini +test630 Q0 17185798 11 10.894535 Anserini +test630 Q0 14226936 12 10.885717 Anserini +test630 Q0 17248350 13 10.792522 Anserini +test630 Q0 20836625 14 10.724258 Anserini +test630 Q0 20836607 15 10.656959 Anserini +test630 Q0 17185796 16 10.588270 Anserini +test630 Q0 11014619 17 10.579561 Anserini +test630 Q0 11014618 18 10.579561 Anserini +test630 Q0 9103097 19 10.469081 Anserini +test630 Q0 2554422 20 10.426452 Anserini +test630 Q0 18036263 21 10.417362 Anserini +test630 Q0 17185795 22 10.322596 Anserini +test630 Q0 17185800 23 10.279727 Anserini +test630 Q0 11859166 24 10.204796 Anserini +test630 Q0 5373982 25 10.088807 Anserini +test630 Q0 2554421 26 10.073409 Anserini +test630 Q0 17185792 27 10.073409 Anserini +test630 Q0 17185809 28 10.057800 Anserini +test630 Q0 19508230 29 10.011024 Anserini +test630 Q0 19508231 30 10.011024 Anserini +test631 Q0 16703052 1 16.972607 Anserini +test631 Q0 17046093 2 16.210087 Anserini +test631 Q0 16703053 3 14.788591 Anserini +test631 Q0 16341905 4 14.609485 Anserini +test631 Q0 19798951 5 14.513513 Anserini +test631 Q0 17103451 6 14.507681 Anserini +test631 Q0 9124660 7 14.226013 Anserini +test631 Q0 4013688 8 14.207908 Anserini +test631 Q0 16118226 9 14.192497 Anserini +test631 Q0 3278355 10 14.055703 Anserini +test631 Q0 8821717 11 13.997102 Anserini +test631 Q0 9551188 12 13.988357 Anserini +test631 Q0 2711458 13 13.955025 Anserini +test631 Q0 9199027 14 13.912946 Anserini +test631 Q0 3278350 15 13.910768 Anserini +test631 Q0 19528022 16 13.882013 Anserini +test631 Q0 4013687 17 13.796144 Anserini +test631 Q0 9124661 18 13.751048 Anserini +test631 Q0 18029056 19 13.658371 Anserini +test631 Q0 13991283 20 13.634651 Anserini +test631 Q0 8821719 21 13.545303 Anserini +test631 Q0 3278348 22 13.543365 Anserini +test631 Q0 12709848 23 13.466222 Anserini +test631 Q0 1926799 24 13.289678 Anserini +test631 Q0 19798948 25 13.257172 Anserini +test631 Q0 20235264 26 13.193595 Anserini +test631 Q0 9136339 27 13.123674 Anserini +test631 Q0 15997555 28 13.049831 Anserini +test631 Q0 9136346 29 13.005341 Anserini +test631 Q0 5012595 30 12.999406 Anserini +test632 Q0 2599657 1 16.901863 Anserini +test632 Q0 2599656 2 16.375051 Anserini +test632 Q0 8095291 3 16.132141 Anserini +test632 Q0 17225877 4 16.125666 Anserini +test632 Q0 9317216 5 15.914313 Anserini +test632 Q0 1286338 6 15.709663 Anserini +test632 Q0 1286348 7 15.651108 Anserini +test632 Q0 1286350 8 15.536271 Anserini +test632 Q0 6553750 9 15.338919 Anserini +test632 Q0 6553751 10 15.276278 Anserini +test632 Q0 17225874 11 15.110754 Anserini +test632 Q0 6246124 12 15.075793 Anserini +test632 Q0 17225878 13 14.937363 Anserini +test632 Q0 17225879 14 14.937363 Anserini +test632 Q0 6553752 15 14.910221 Anserini +test632 Q0 6553757 16 14.736309 Anserini +test632 Q0 2599648 17 14.656965 Anserini +test632 Q0 2599647 18 14.557588 Anserini +test632 Q0 6553754 19 14.341830 Anserini +test632 Q0 1286339 20 14.191074 Anserini +test632 Q0 6553761 21 14.176689 Anserini +test632 Q0 11729416 22 14.131432 Anserini +test632 Q0 6864537 23 14.047917 Anserini +test632 Q0 2669917 24 13.981544 Anserini +test632 Q0 6553755 25 13.979020 Anserini +test632 Q0 4410852 26 13.936205 Anserini +test632 Q0 19162191 27 13.723953 Anserini +test632 Q0 2599654 28 13.629152 Anserini +test632 Q0 1286340 29 13.599985 Anserini +test632 Q0 19279940 30 13.481374 Anserini +test633 Q0 8953257 1 17.424990 Anserini +test633 Q0 367480 2 16.616205 Anserini +test633 Q0 6504322 3 16.489508 Anserini +test633 Q0 3446135 4 16.390081 Anserini +test633 Q0 10762295 5 16.302643 Anserini +test633 Q0 6471694 6 16.207001 Anserini +test633 Q0 6499954 7 15.872545 Anserini +test633 Q0 19735452 8 15.553320 Anserini +test633 Q0 10845058 9 15.460496 Anserini +test633 Q0 9907237 10 15.349925 Anserini +test633 Q0 6500941 11 15.249601 Anserini +test633 Q0 2867113 12 15.090992 Anserini +test633 Q0 6484661 13 14.992505 Anserini +test633 Q0 12757482 14 14.984055 Anserini +test633 Q0 6271942 15 14.937963 Anserini +test633 Q0 7832263 16 14.881533 Anserini +test633 Q0 6528279 17 14.852991 Anserini +test633 Q0 6528277 18 14.828624 Anserini +test633 Q0 10637156 19 14.770630 Anserini +test633 Q0 6579747 20 14.762113 Anserini +test633 Q0 15754116 21 14.722757 Anserini +test633 Q0 10354656 22 14.652800 Anserini +test633 Q0 10849689 23 14.629324 Anserini +test633 Q0 3705879 24 14.585424 Anserini +test633 Q0 18221924 25 14.574024 Anserini +test633 Q0 18257175 26 14.435740 Anserini +test633 Q0 7944829 27 14.357840 Anserini +test633 Q0 10637154 28 14.335108 Anserini +test633 Q0 6504814 29 14.266739 Anserini +test633 Q0 7031078 30 14.194929 Anserini +test634 Q0 11460798 1 20.529419 Anserini +test634 Q0 3048772 2 20.485039 Anserini +test634 Q0 755436 3 19.520933 Anserini +test634 Q0 3048744 4 19.050201 Anserini +test634 Q0 3048776 5 19.002489 Anserini +test634 Q0 15593150 6 18.784138 Anserini +test634 Q0 2227870 7 18.692509 Anserini +test634 Q0 3048770 8 18.667513 Anserini +test634 Q0 367436 9 18.637337 Anserini +test634 Q0 3048804 10 18.622236 Anserini +test634 Q0 3048787 11 18.510937 Anserini +test634 Q0 3048780 12 18.136002 Anserini +test634 Q0 3048768 13 18.077658 Anserini +test634 Q0 755450 14 18.006075 Anserini +test634 Q0 755425 15 17.917908 Anserini +test634 Q0 3048790 16 17.656673 Anserini +test634 Q0 3048794 17 17.654888 Anserini +test634 Q0 15593152 18 17.611427 Anserini +test634 Q0 5438271 19 17.567657 Anserini +test634 Q0 2846136 20 17.546066 Anserini +test634 Q0 18650792 21 17.545235 Anserini +test634 Q0 16117440 22 17.495579 Anserini +test634 Q0 3048788 23 17.420191 Anserini +test634 Q0 3048786 24 17.296284 Anserini +test634 Q0 755452 25 17.261015 Anserini +test634 Q0 2313312 26 17.254330 Anserini +test634 Q0 367460 27 17.205116 Anserini +test634 Q0 15593126 28 17.106409 Anserini +test634 Q0 15593147 29 16.937162 Anserini +test634 Q0 3048800 30 16.937162 Anserini +test635 Q0 14761026 1 15.817826 Anserini +test635 Q0 14761021 2 15.579021 Anserini +test635 Q0 14761020 3 15.368188 Anserini +test635 Q0 683708 4 14.697747 Anserini +test635 Q0 683696 5 14.083556 Anserini +test635 Q0 7019713 6 13.924137 Anserini +test635 Q0 7019716 7 13.924137 Anserini +test635 Q0 683706 8 13.743627 Anserini +test635 Q0 14761025 9 13.658003 Anserini +test635 Q0 14761022 10 13.345585 Anserini +test635 Q0 14761023 11 13.133840 Anserini +test635 Q0 14761034 12 13.054284 Anserini +test635 Q0 14761028 13 12.883559 Anserini +test635 Q0 14761016 14 12.729364 Anserini +test635 Q0 14761039 15 12.694269 Anserini +test635 Q0 14761019 16 12.539474 Anserini +test635 Q0 14761033 17 12.486557 Anserini +test635 Q0 14761018 18 12.261061 Anserini +test635 Q0 899474 19 12.248316 Anserini +test635 Q0 14761041 20 12.206181 Anserini +test635 Q0 14761027 21 12.178365 Anserini +test635 Q0 14761030 22 12.136112 Anserini +test635 Q0 14761029 23 12.078569 Anserini +test635 Q0 19212426 24 11.874445 Anserini +test635 Q0 19212427 25 11.874445 Anserini +test635 Q0 14761024 26 11.844960 Anserini +test635 Q0 14761037 27 11.671059 Anserini +test635 Q0 899478 28 11.613579 Anserini +test635 Q0 14502003 29 11.570685 Anserini +test635 Q0 683705 30 11.499729 Anserini +test636 Q0 10229126 1 16.005676 Anserini +test636 Q0 48495 2 15.538013 Anserini +test636 Q0 9722888 3 15.336749 Anserini +test636 Q0 4385448 4 15.044617 Anserini +test636 Q0 6314612 5 14.973469 Anserini +test636 Q0 4357205 6 14.551474 Anserini +test636 Q0 2553496 7 14.446579 Anserini +test636 Q0 8388163 8 14.363340 Anserini +test636 Q0 1978705 9 14.040843 Anserini +test636 Q0 13137637 10 13.990100 Anserini +test636 Q0 9060903 11 13.931119 Anserini +test636 Q0 11232636 12 13.832876 Anserini +test636 Q0 14055507 13 13.814732 Anserini +test636 Q0 17760730 14 13.727924 Anserini +test636 Q0 6773049 15 13.671679 Anserini +test636 Q0 16101343 16 13.649302 Anserini +test636 Q0 5262982 17 13.580358 Anserini +test636 Q0 2130999 18 13.400337 Anserini +test636 Q0 18048702 19 13.374025 Anserini +test636 Q0 19111341 20 13.295961 Anserini +test636 Q0 6157632 21 13.262142 Anserini +test636 Q0 4356407 22 13.262142 Anserini +test636 Q0 4357208 23 13.233432 Anserini +test636 Q0 4011210 24 13.224341 Anserini +test636 Q0 14322330 25 13.156730 Anserini +test636 Q0 2135763 26 13.110919 Anserini +test636 Q0 16440547 27 13.047124 Anserini +test636 Q0 5803125 28 13.047124 Anserini +test636 Q0 15501443 29 13.042957 Anserini +test636 Q0 20081617 30 12.993054 Anserini +test637 Q0 8042772 1 17.618301 Anserini +test637 Q0 8042757 2 17.140530 Anserini +test637 Q0 8042699 3 16.564371 Anserini +test637 Q0 8042758 4 15.757191 Anserini +test637 Q0 8042774 5 15.594511 Anserini +test637 Q0 14417081 6 15.390663 Anserini +test637 Q0 8042754 7 15.389357 Anserini +test637 Q0 8042709 8 15.372640 Anserini +test637 Q0 8042756 9 15.201238 Anserini +test637 Q0 8042708 10 15.137274 Anserini +test637 Q0 8042760 11 15.068122 Anserini +test637 Q0 8042762 12 15.068122 Anserini +test637 Q0 14417080 13 14.906471 Anserini +test637 Q0 18408090 14 14.716951 Anserini +test637 Q0 11137039 15 14.714631 Anserini +test637 Q0 8042752 16 14.676447 Anserini +test637 Q0 8042753 17 14.628889 Anserini +test637 Q0 14639090 18 14.553152 Anserini +test637 Q0 10907533 19 14.495786 Anserini +test637 Q0 10464187 20 14.420766 Anserini +test637 Q0 8042715 21 14.347558 Anserini +test637 Q0 15122694 22 14.334855 Anserini +test637 Q0 2918563 23 14.329102 Anserini +test637 Q0 8042704 24 14.317933 Anserini +test637 Q0 8042773 25 14.286739 Anserini +test637 Q0 7523409 26 13.972084 Anserini +test637 Q0 14385216 27 13.947584 Anserini +test637 Q0 13339006 28 13.879130 Anserini +test637 Q0 13339010 29 13.845678 Anserini +test637 Q0 15824952 30 13.831148 Anserini +test638 Q0 1381921 1 14.469252 Anserini +test638 Q0 1381969 2 13.790424 Anserini +test638 Q0 293630 3 12.902577 Anserini +test638 Q0 2749 4 12.243246 Anserini +test638 Q0 3917870 5 12.193768 Anserini +test638 Q0 8162490 6 11.958152 Anserini +test638 Q0 1661619 7 11.939492 Anserini +test638 Q0 16856064 8 11.822757 Anserini +test638 Q0 15849493 9 11.817416 Anserini +test638 Q0 1171411 10 11.792284 Anserini +test638 Q0 9782679 11 11.696478 Anserini +test638 Q0 8107207 12 11.599854 Anserini +test638 Q0 1366920 13 11.498238 Anserini +test638 Q0 1599191 14 11.479098 Anserini +test638 Q0 1381935 15 11.438661 Anserini +test638 Q0 1599223 16 11.428779 Anserini +test638 Q0 8107197 17 11.392316 Anserini +test638 Q0 6883306 18 11.181953 Anserini +test638 Q0 2397001 19 11.164951 Anserini +test638 Q0 2213280 20 11.089108 Anserini +test638 Q0 1966726 21 11.089108 Anserini +test638 Q0 3267211 22 11.057590 Anserini +test638 Q0 1244601 23 10.892744 Anserini +test638 Q0 1599198 24 10.888337 Anserini +test638 Q0 2293949 25 10.876018 Anserini +test638 Q0 18601519 26 10.871600 Anserini +test638 Q0 1966739 27 10.858068 Anserini +test638 Q0 17962421 28 10.826409 Anserini +test638 Q0 2480452 29 10.818165 Anserini +test638 Q0 293632 30 10.816589 Anserini +test639 Q0 75446 1 16.457832 Anserini +test639 Q0 75443 2 14.409437 Anserini +test639 Q0 4343435 3 14.201435 Anserini +test639 Q0 75445 4 12.712631 Anserini +test639 Q0 19447953 5 12.691072 Anserini +test639 Q0 13750926 6 12.464842 Anserini +test639 Q0 3925636 7 12.414348 Anserini +test639 Q0 21059 8 12.156653 Anserini +test639 Q0 2660688 9 12.119437 Anserini +test639 Q0 1293806 10 12.079170 Anserini +test639 Q0 12553060 11 11.863295 Anserini +test639 Q0 13567189 12 11.785540 Anserini +test639 Q0 4356352 13 11.737526 Anserini +test639 Q0 8276414 14 11.537109 Anserini +test639 Q0 632076 15 11.526109 Anserini +test639 Q0 2670931 16 11.404774 Anserini +test639 Q0 12539124 17 11.378055 Anserini +test639 Q0 14288095 18 11.375360 Anserini +test639 Q0 4472482 19 11.357107 Anserini +test639 Q0 13150463 20 11.300328 Anserini +test639 Q0 12953556 21 11.291229 Anserini +test639 Q0 2555158 22 11.131926 Anserini +test639 Q0 75461 23 11.079807 Anserini +test639 Q0 962970 24 10.999360 Anserini +test639 Q0 9251967 25 10.905144 Anserini +test639 Q0 9801361 26 10.898275 Anserini +test639 Q0 75437 27 10.828189 Anserini +test639 Q0 75448 28 10.660597 Anserini +test639 Q0 75452 29 10.607111 Anserini +test639 Q0 75441 30 10.596947 Anserini +test64 Q0 17098149 1 12.858874 Anserini +test64 Q0 17098147 2 12.477560 Anserini +test64 Q0 2372366 3 11.334803 Anserini +test64 Q0 4122430 4 11.004784 Anserini +test64 Q0 13888179 5 10.970164 Anserini +test64 Q0 18472331 6 10.866282 Anserini +test64 Q0 17309064 7 10.394420 Anserini +test64 Q0 8216394 8 10.246936 Anserini +test64 Q0 13840889 9 10.193683 Anserini +test64 Q0 8216389 10 10.154248 Anserini +test64 Q0 16454084 11 10.150283 Anserini +test64 Q0 12248254 12 10.058771 Anserini +test64 Q0 14080213 13 10.015797 Anserini +test64 Q0 15846141 14 9.918551 Anserini +test64 Q0 17810478 15 9.881547 Anserini +test64 Q0 416866 16 9.798777 Anserini +test64 Q0 15846149 17 9.718251 Anserini +test64 Q0 13757886 18 9.693870 Anserini +test64 Q0 20058215 19 9.644587 Anserini +test64 Q0 13757885 20 9.633645 Anserini +test64 Q0 14947566 21 9.590504 Anserini +test64 Q0 10964326 22 9.571753 Anserini +test64 Q0 4231309 23 9.504055 Anserini +test64 Q0 7254961 24 9.466699 Anserini +test64 Q0 3502096 25 9.310495 Anserini +test64 Q0 114471 26 9.306040 Anserini +test64 Q0 12125031 27 9.302888 Anserini +test64 Q0 11645222 28 9.225704 Anserini +test64 Q0 6108442 29 9.205285 Anserini +test64 Q0 13840891 30 9.193899 Anserini +test640 Q0 11128524 1 13.267157 Anserini +test640 Q0 11128521 2 13.072421 Anserini +test640 Q0 11128522 3 11.566105 Anserini +test640 Q0 11128523 4 11.242940 Anserini +test640 Q0 4915551 5 11.224330 Anserini +test640 Q0 19548609 6 10.691296 Anserini +test640 Q0 5122954 7 10.109118 Anserini +test640 Q0 3280459 8 10.092558 Anserini +test640 Q0 2446014 9 10.039274 Anserini +test640 Q0 15856984 10 10.008803 Anserini +test640 Q0 2969320 11 9.983296 Anserini +test640 Q0 4915550 12 9.983296 Anserini +test640 Q0 15856987 13 9.864505 Anserini +test640 Q0 4855646 14 9.795017 Anserini +test640 Q0 15717486 15 9.767159 Anserini +test640 Q0 16843470 16 9.699565 Anserini +test640 Q0 7000091 17 9.576146 Anserini +test640 Q0 12291542 18 9.572703 Anserini +test640 Q0 5495752 19 9.552255 Anserini +test640 Q0 18148199 20 9.496171 Anserini +test640 Q0 18148198 21 9.496171 Anserini +test640 Q0 2093985 22 9.416088 Anserini +test640 Q0 8864765 23 9.395959 Anserini +test640 Q0 8780867 24 9.375936 Anserini +test640 Q0 3635680 25 9.360066 Anserini +test640 Q0 17885082 26 9.322721 Anserini +test640 Q0 10719492 27 9.300956 Anserini +test640 Q0 4998329 28 9.242668 Anserini +test640 Q0 2910142 29 9.199723 Anserini +test640 Q0 13735415 30 9.172477 Anserini +test641 Q0 10091490 1 20.564419 Anserini +test641 Q0 2372613 2 20.359163 Anserini +test641 Q0 10091496 3 19.856060 Anserini +test641 Q0 2372589 4 19.587681 Anserini +test641 Q0 2372610 5 18.988068 Anserini +test641 Q0 18081567 6 18.487329 Anserini +test641 Q0 20344352 7 18.464153 Anserini +test641 Q0 4710281 8 18.180826 Anserini +test641 Q0 2372606 9 18.119116 Anserini +test641 Q0 2372598 10 18.108013 Anserini +test641 Q0 2372612 11 18.053921 Anserini +test641 Q0 2165947 12 18.051043 Anserini +test641 Q0 15400754 13 17.995848 Anserini +test641 Q0 14181983 14 17.982510 Anserini +test641 Q0 4710283 15 17.935516 Anserini +test641 Q0 11733579 16 17.924850 Anserini +test641 Q0 3364896 17 17.918030 Anserini +test641 Q0 14003307 18 17.865732 Anserini +test641 Q0 18081555 19 17.852348 Anserini +test641 Q0 2372590 20 17.760002 Anserini +test641 Q0 13406790 21 17.759232 Anserini +test641 Q0 11296095 22 17.751097 Anserini +test641 Q0 11296101 23 17.751097 Anserini +test641 Q0 11043104 24 17.523981 Anserini +test641 Q0 18081572 25 17.488731 Anserini +test641 Q0 10518948 26 17.456541 Anserini +test641 Q0 2372597 27 17.442150 Anserini +test641 Q0 2372611 28 17.441135 Anserini +test641 Q0 2372600 29 17.291533 Anserini +test641 Q0 11591159 30 17.284279 Anserini +test642 Q0 573426 1 14.119279 Anserini +test642 Q0 4366465 2 13.532940 Anserini +test642 Q0 10315250 3 13.342303 Anserini +test642 Q0 3587094 4 13.306881 Anserini +test642 Q0 10918363 5 13.282558 Anserini +test642 Q0 16429353 6 13.092069 Anserini +test642 Q0 2805907 7 13.039032 Anserini +test642 Q0 2005416 8 12.997581 Anserini +test642 Q0 12624246 9 12.813606 Anserini +test642 Q0 2603979 10 12.797676 Anserini +test642 Q0 4836941 11 12.725236 Anserini +test642 Q0 9665845 12 12.707667 Anserini +test642 Q0 4846470 13 12.701523 Anserini +test642 Q0 3239598 14 12.694460 Anserini +test642 Q0 12624245 15 12.690735 Anserini +test642 Q0 3543155 16 12.670456 Anserini +test642 Q0 5050045 17 12.643814 Anserini +test642 Q0 3078947 18 12.589029 Anserini +test642 Q0 11705256 19 12.581716 Anserini +test642 Q0 4825496 20 12.572025 Anserini +test642 Q0 12624287 21 12.494304 Anserini +test642 Q0 7092065 22 12.443693 Anserini +test642 Q0 3633818 23 12.418072 Anserini +test642 Q0 18406276 24 12.379203 Anserini +test642 Q0 4584164 25 12.371711 Anserini +test642 Q0 8360710 26 12.367802 Anserini +test642 Q0 17446450 27 12.326780 Anserini +test642 Q0 15178187 28 12.325977 Anserini +test642 Q0 6357057 29 12.304369 Anserini +test642 Q0 4271109 30 12.241978 Anserini +test643 Q0 7892474 1 10.348043 Anserini +test643 Q0 7892470 2 10.111604 Anserini +test643 Q0 3639530 3 9.613404 Anserini +test643 Q0 3639532 4 9.352994 Anserini +test643 Q0 268383 5 9.218066 Anserini +test643 Q0 19838309 6 9.140452 Anserini +test643 Q0 5061877 7 8.831096 Anserini +test643 Q0 12774308 8 8.817709 Anserini +test643 Q0 12774348 9 8.817709 Anserini +test643 Q0 1037696 10 8.813786 Anserini +test643 Q0 15548846 11 8.764684 Anserini +test643 Q0 8965732 12 8.749483 Anserini +test643 Q0 11625686 13 8.711767 Anserini +test643 Q0 11625700 14 8.711767 Anserini +test643 Q0 14586597 15 8.700173 Anserini +test643 Q0 362766 16 8.669778 Anserini +test643 Q0 13224120 17 8.669421 Anserini +test643 Q0 16014003 18 8.607365 Anserini +test643 Q0 7998182 19 8.552901 Anserini +test643 Q0 1488851 20 8.527880 Anserini +test643 Q0 4182725 21 8.527880 Anserini +test643 Q0 37778 22 8.512448 Anserini +test643 Q0 8190456 23 8.512448 Anserini +test643 Q0 6241012 24 8.438107 Anserini +test643 Q0 12474183 25 8.438107 Anserini +test643 Q0 940130 26 8.426538 Anserini +test643 Q0 16939405 27 8.399016 Anserini +test643 Q0 13674078 28 8.348550 Anserini +test643 Q0 19815491 29 8.340781 Anserini +test643 Q0 13572506 30 8.323265 Anserini +test644 Q0 13343658 1 21.119040 Anserini +test644 Q0 4648994 2 19.858347 Anserini +test644 Q0 4465929 3 19.825949 Anserini +test644 Q0 13343660 4 18.980207 Anserini +test644 Q0 13343657 5 18.763100 Anserini +test644 Q0 4648996 6 18.177307 Anserini +test644 Q0 17116952 7 17.530697 Anserini +test644 Q0 15213902 8 16.801195 Anserini +test644 Q0 15213901 9 16.624331 Anserini +test644 Q0 20330830 10 16.577724 Anserini +test644 Q0 2251922 11 15.189810 Anserini +test644 Q0 13343659 12 14.990447 Anserini +test644 Q0 12681960 13 14.834285 Anserini +test644 Q0 12990033 14 14.834285 Anserini +test644 Q0 6450082 15 14.227470 Anserini +test644 Q0 19672794 16 14.036080 Anserini +test644 Q0 19672795 17 14.036080 Anserini +test644 Q0 12331606 18 13.982716 Anserini +test644 Q0 12230987 19 13.707618 Anserini +test644 Q0 13657276 20 13.694996 Anserini +test644 Q0 4908970 21 13.593456 Anserini +test644 Q0 13755915 22 13.588956 Anserini +test644 Q0 12091648 23 13.468926 Anserini +test644 Q0 4648999 24 13.349488 Anserini +test644 Q0 3773284 25 13.304285 Anserini +test644 Q0 3773275 26 13.304285 Anserini +test644 Q0 4649000 27 13.181252 Anserini +test644 Q0 5880891 28 13.166857 Anserini +test644 Q0 17675335 29 13.154894 Anserini +test644 Q0 5349304 30 13.060894 Anserini +test645 Q0 3140056 1 17.950901 Anserini +test645 Q0 3140066 2 17.485006 Anserini +test645 Q0 3140063 3 17.019566 Anserini +test645 Q0 3140064 4 16.396189 Anserini +test645 Q0 9330252 5 15.558335 Anserini +test645 Q0 1366182 6 15.112906 Anserini +test645 Q0 3140061 7 15.066568 Anserini +test645 Q0 3140057 8 14.676661 Anserini +test645 Q0 2895060 9 14.539970 Anserini +test645 Q0 637750 10 14.511374 Anserini +test645 Q0 797498 11 14.262762 Anserini +test645 Q0 3140060 12 14.251314 Anserini +test645 Q0 5501965 13 14.169769 Anserini +test645 Q0 1237294 14 14.112618 Anserini +test645 Q0 5214453 15 14.112618 Anserini +test645 Q0 7831632 16 14.112618 Anserini +test645 Q0 16543073 17 13.965601 Anserini +test645 Q0 17841591 18 13.821616 Anserini +test645 Q0 3140058 19 13.811926 Anserini +test645 Q0 10393093 20 13.784837 Anserini +test645 Q0 7461901 21 13.557008 Anserini +test645 Q0 18929139 22 13.541347 Anserini +test645 Q0 2692751 23 13.421784 Anserini +test645 Q0 3140059 24 13.420656 Anserini +test645 Q0 3140062 25 13.365872 Anserini +test645 Q0 18929145 26 13.184803 Anserini +test645 Q0 1226967 27 13.158252 Anserini +test645 Q0 9546384 28 13.158252 Anserini +test645 Q0 5850297 29 13.021176 Anserini +test645 Q0 9330251 30 13.021176 Anserini +test646 Q0 18678558 1 14.551431 Anserini +test646 Q0 9697100 2 13.256828 Anserini +test646 Q0 18678562 3 12.902424 Anserini +test646 Q0 19396347 4 12.343494 Anserini +test646 Q0 7694509 5 12.312467 Anserini +test646 Q0 9862143 6 12.147460 Anserini +test646 Q0 5013861 7 11.831921 Anserini +test646 Q0 9822402 8 11.826071 Anserini +test646 Q0 17521129 9 11.657302 Anserini +test646 Q0 17521133 10 11.657302 Anserini +test646 Q0 9862209 11 11.600975 Anserini +test646 Q0 9975460 12 11.567646 Anserini +test646 Q0 9852213 13 11.545712 Anserini +test646 Q0 9975457 14 11.524658 Anserini +test646 Q0 10580412 15 11.449754 Anserini +test646 Q0 9975618 16 11.358577 Anserini +test646 Q0 6499009 17 11.315281 Anserini +test646 Q0 16635211 18 11.281212 Anserini +test646 Q0 8683669 19 11.253697 Anserini +test646 Q0 12914194 20 11.240921 Anserini +test646 Q0 8705470 21 11.237790 Anserini +test646 Q0 9492274 22 11.169375 Anserini +test646 Q0 18732895 23 11.152349 Anserini +test646 Q0 12681525 24 11.120379 Anserini +test646 Q0 8724381 25 11.116818 Anserini +test646 Q0 4990152 26 11.108547 Anserini +test646 Q0 10582506 27 11.090852 Anserini +test646 Q0 5596909 28 10.980734 Anserini +test646 Q0 11404650 29 10.973604 Anserini +test646 Q0 16977136 30 10.966232 Anserini +test647 Q0 15358361 1 11.935495 Anserini +test647 Q0 4697254 2 10.637383 Anserini +test647 Q0 3018286 3 10.395271 Anserini +test647 Q0 15202357 4 10.056213 Anserini +test647 Q0 6077119 5 10.032226 Anserini +test647 Q0 15463588 6 9.917223 Anserini +test647 Q0 8410698 7 9.830597 Anserini +test647 Q0 13633514 8 9.733414 Anserini +test647 Q0 15009194 9 9.623502 Anserini +test647 Q0 6352074 10 9.574794 Anserini +test647 Q0 18685737 11 9.497151 Anserini +test647 Q0 6841795 12 9.428417 Anserini +test647 Q0 7483217 13 9.414487 Anserini +test647 Q0 2070512 14 9.203264 Anserini +test647 Q0 2459806 15 9.159627 Anserini +test647 Q0 11686224 16 9.140050 Anserini +test647 Q0 6272044 17 9.070076 Anserini +test647 Q0 5743902 18 9.053560 Anserini +test647 Q0 16395151 19 9.050352 Anserini +test647 Q0 660375 20 9.025708 Anserini +test647 Q0 19532948 21 9.025697 Anserini +test647 Q0 10207141 22 8.998905 Anserini +test647 Q0 6350967 23 8.989808 Anserini +test647 Q0 6352068 24 8.944744 Anserini +test647 Q0 13827613 25 8.928085 Anserini +test647 Q0 10855061 26 8.923937 Anserini +test647 Q0 19455252 27 8.923755 Anserini +test647 Q0 13658997 28 8.901570 Anserini +test647 Q0 6049215 29 8.896691 Anserini +test647 Q0 301929 30 8.835669 Anserini +test648 Q0 6722002 1 12.636267 Anserini +test648 Q0 14552434 2 12.521142 Anserini +test648 Q0 14880507 3 11.674782 Anserini +test648 Q0 17761641 4 11.390847 Anserini +test648 Q0 5984088 5 11.353811 Anserini +test648 Q0 13070978 6 10.865425 Anserini +test648 Q0 7695110 7 10.865425 Anserini +test648 Q0 13070975 8 10.865425 Anserini +test648 Q0 4829938 9 10.778425 Anserini +test648 Q0 4829937 10 10.778425 Anserini +test648 Q0 7695109 11 10.508333 Anserini +test648 Q0 11736898 12 10.506839 Anserini +test648 Q0 14552430 13 10.489624 Anserini +test648 Q0 10020102 14 10.410639 Anserini +test648 Q0 21010910 15 10.379011 Anserini +test648 Q0 4491858 16 10.379011 Anserini +test648 Q0 21010908 17 10.379011 Anserini +test648 Q0 15976675 18 10.379011 Anserini +test648 Q0 4729786 19 10.372597 Anserini +test648 Q0 16715862 20 10.362575 Anserini +test648 Q0 16029771 21 10.103694 Anserini +test648 Q0 14607208 22 10.081694 Anserini +test648 Q0 8565114 23 10.080192 Anserini +test648 Q0 11140938 24 10.066395 Anserini +test648 Q0 16715863 25 10.066395 Anserini +test648 Q0 17916200 26 10.020435 Anserini +test648 Q0 15061638 27 9.991839 Anserini +test648 Q0 6176045 28 9.950638 Anserini +test648 Q0 7719316 29 9.945465 Anserini +test648 Q0 13270384 30 9.934698 Anserini +test649 Q0 7144256 1 12.632163 Anserini +test649 Q0 7144260 2 12.632163 Anserini +test649 Q0 11534501 3 12.092565 Anserini +test649 Q0 20512046 4 12.031334 Anserini +test649 Q0 9886872 5 12.015988 Anserini +test649 Q0 10083512 6 11.873287 Anserini +test649 Q0 13066596 7 11.787663 Anserini +test649 Q0 12457804 8 11.733531 Anserini +test649 Q0 2212905 9 11.640053 Anserini +test649 Q0 10083511 10 11.528982 Anserini +test649 Q0 11534494 11 11.509034 Anserini +test649 Q0 10179539 12 11.435778 Anserini +test649 Q0 12457798 13 11.370660 Anserini +test649 Q0 20228081 14 11.276821 Anserini +test649 Q0 11552486 15 11.205521 Anserini +test649 Q0 13034954 16 11.154524 Anserini +test649 Q0 13033605 17 11.054396 Anserini +test649 Q0 10392821 18 11.034992 Anserini +test649 Q0 12828777 19 11.025633 Anserini +test649 Q0 12983577 20 11.024689 Anserini +test649 Q0 12109193 21 10.980914 Anserini +test649 Q0 12457787 22 10.947201 Anserini +test649 Q0 10392826 23 10.940513 Anserini +test649 Q0 10179540 24 10.920420 Anserini +test649 Q0 10083516 25 10.906164 Anserini +test649 Q0 10419980 26 10.809195 Anserini +test649 Q0 11552481 27 10.806803 Anserini +test649 Q0 20670599 28 10.802730 Anserini +test649 Q0 13821143 29 10.772164 Anserini +test649 Q0 12457785 30 10.758066 Anserini +test65 Q0 11454827 1 12.263910 Anserini +test65 Q0 6647275 2 11.728743 Anserini +test65 Q0 6647295 3 11.446152 Anserini +test65 Q0 12344005 4 11.401377 Anserini +test65 Q0 20573748 5 11.386537 Anserini +test65 Q0 17001886 6 11.301506 Anserini +test65 Q0 6006961 7 11.291953 Anserini +test65 Q0 12676495 8 11.268022 Anserini +test65 Q0 2955183 9 11.202754 Anserini +test65 Q0 20572402 10 11.112868 Anserini +test65 Q0 10104565 11 11.107093 Anserini +test65 Q0 11001532 12 11.026018 Anserini +test65 Q0 9856448 13 11.014080 Anserini +test65 Q0 17779932 14 10.946889 Anserini +test65 Q0 20538142 15 10.880702 Anserini +test65 Q0 17001885 16 10.866564 Anserini +test65 Q0 8016178 17 10.847636 Anserini +test65 Q0 13462271 18 10.838202 Anserini +test65 Q0 13976667 19 10.837680 Anserini +test65 Q0 11136753 20 10.828503 Anserini +test65 Q0 15259262 21 10.769419 Anserini +test65 Q0 8672968 22 10.766614 Anserini +test65 Q0 9091273 23 10.748139 Anserini +test65 Q0 11431679 24 10.716750 Anserini +test65 Q0 17809938 25 10.716750 Anserini +test65 Q0 12279133 26 10.688143 Anserini +test65 Q0 3743322 27 10.670088 Anserini +test65 Q0 6006984 28 10.643398 Anserini +test65 Q0 9091274 29 10.620245 Anserini +test65 Q0 13976665 30 10.618753 Anserini +test650 Q0 4691243 1 18.106398 Anserini +test650 Q0 9131692 2 16.594391 Anserini +test650 Q0 9131681 3 16.397419 Anserini +test650 Q0 106494 4 16.336599 Anserini +test650 Q0 12098089 5 16.253817 Anserini +test650 Q0 15038231 6 16.082010 Anserini +test650 Q0 11036391 7 15.859514 Anserini +test650 Q0 4534040 8 15.851774 Anserini +test650 Q0 106495 9 15.732396 Anserini +test650 Q0 12878614 10 15.493579 Anserini +test650 Q0 6553508 11 15.397328 Anserini +test650 Q0 19127730 12 15.387502 Anserini +test650 Q0 106502 13 15.379943 Anserini +test650 Q0 5793854 14 15.319450 Anserini +test650 Q0 5793858 15 15.319450 Anserini +test650 Q0 9131690 16 15.158724 Anserini +test650 Q0 12098090 17 15.137821 Anserini +test650 Q0 106503 18 15.014263 Anserini +test650 Q0 9131673 19 14.989335 Anserini +test650 Q0 4639849 20 14.976271 Anserini +test650 Q0 12098088 21 14.958839 Anserini +test650 Q0 9167327 22 14.824276 Anserini +test650 Q0 9131683 23 14.814767 Anserini +test650 Q0 5799864 24 14.637562 Anserini +test650 Q0 4639908 25 14.537875 Anserini +test650 Q0 12742905 26 14.337444 Anserini +test650 Q0 9860151 27 14.252434 Anserini +test650 Q0 16861807 28 14.214169 Anserini +test650 Q0 18418965 29 14.198156 Anserini +test650 Q0 106475 30 14.179798 Anserini +test651 Q0 5214463 1 26.363281 Anserini +test651 Q0 12862649 2 19.338984 Anserini +test651 Q0 7679268 3 18.993475 Anserini +test651 Q0 4211105 4 18.816280 Anserini +test651 Q0 4211106 5 18.816280 Anserini +test651 Q0 5214470 6 18.816280 Anserini +test651 Q0 5214444 7 18.733257 Anserini +test651 Q0 4211099 8 18.651037 Anserini +test651 Q0 14410428 9 18.651037 Anserini +test651 Q0 5214451 10 18.620886 Anserini +test651 Q0 17646143 11 18.582912 Anserini +test651 Q0 14410426 12 18.569607 Anserini +test651 Q0 3006355 13 18.519701 Anserini +test651 Q0 9421692 14 18.256651 Anserini +test651 Q0 3006359 15 17.942373 Anserini +test651 Q0 17646139 16 17.851759 Anserini +test651 Q0 17646144 17 17.851759 Anserini +test651 Q0 9466605 18 17.845245 Anserini +test651 Q0 5214462 19 17.778889 Anserini +test651 Q0 5214465 20 17.778889 Anserini +test651 Q0 5214467 21 17.510532 Anserini +test651 Q0 3006360 22 17.344868 Anserini +test651 Q0 6889231 23 17.302713 Anserini +test651 Q0 17646140 24 17.253006 Anserini +test651 Q0 783485 25 17.175468 Anserini +test651 Q0 8442434 26 17.103195 Anserini +test651 Q0 5214455 27 16.926779 Anserini +test651 Q0 9466609 28 16.926779 Anserini +test651 Q0 7679274 29 16.839520 Anserini +test651 Q0 17683671 30 16.839520 Anserini +test652 Q0 927766 1 13.394919 Anserini +test652 Q0 927764 2 13.328316 Anserini +test652 Q0 200680 3 13.301702 Anserini +test652 Q0 15646609 4 12.669644 Anserini +test652 Q0 134968 5 12.617856 Anserini +test652 Q0 8579054 6 12.590644 Anserini +test652 Q0 19596042 7 12.307585 Anserini +test652 Q0 200739 8 12.249813 Anserini +test652 Q0 6052653 9 12.119034 Anserini +test652 Q0 2765850 10 12.112522 Anserini +test652 Q0 15524829 11 11.876181 Anserini +test652 Q0 13033279 12 11.833812 Anserini +test652 Q0 11500694 13 11.693341 Anserini +test652 Q0 20134588 14 11.676764 Anserini +test652 Q0 19816894 15 11.635861 Anserini +test652 Q0 245367 16 11.631166 Anserini +test652 Q0 18125507 17 11.568873 Anserini +test652 Q0 20051196 18 11.548874 Anserini +test652 Q0 18946503 19 11.548874 Anserini +test652 Q0 20237905 20 11.546835 Anserini +test652 Q0 20237901 21 11.546835 Anserini +test652 Q0 20180820 22 11.535853 Anserini +test652 Q0 5970502 23 11.509434 Anserini +test652 Q0 20994660 24 11.450444 Anserini +test652 Q0 7562530 25 11.353960 Anserini +test652 Q0 19834156 26 11.304874 Anserini +test652 Q0 11364481 27 11.296946 Anserini +test652 Q0 18708821 28 11.238688 Anserini +test652 Q0 20114493 29 11.211303 Anserini +test652 Q0 20192299 30 11.211303 Anserini +test653 Q0 11559069 1 11.667944 Anserini +test653 Q0 630854 2 11.524784 Anserini +test653 Q0 3786743 3 11.207764 Anserini +test653 Q0 6391376 4 11.071978 Anserini +test653 Q0 9806538 5 10.881924 Anserini +test653 Q0 6391375 6 10.815964 Anserini +test653 Q0 149951 7 10.725792 Anserini +test653 Q0 8147880 8 10.698178 Anserini +test653 Q0 630898 9 10.641703 Anserini +test653 Q0 8803947 10 10.543971 Anserini +test653 Q0 10314033 11 10.467110 Anserini +test653 Q0 11305826 12 10.455633 Anserini +test653 Q0 13992896 13 10.450477 Anserini +test653 Q0 630801 14 10.439856 Anserini +test653 Q0 8779464 15 10.421226 Anserini +test653 Q0 630935 16 10.357708 Anserini +test653 Q0 630802 17 10.348479 Anserini +test653 Q0 12320132 18 10.323841 Anserini +test653 Q0 1591183 19 10.322489 Anserini +test653 Q0 7647774 20 10.314734 Anserini +test653 Q0 19825987 21 10.306719 Anserini +test653 Q0 13181656 22 10.303545 Anserini +test653 Q0 18293509 23 10.283352 Anserini +test653 Q0 19537450 24 10.256054 Anserini +test653 Q0 19200626 25 10.253729 Anserini +test653 Q0 19200627 26 10.253729 Anserini +test653 Q0 5071829 27 10.251680 Anserini +test653 Q0 8162838 28 10.180262 Anserini +test653 Q0 6142374 29 10.163303 Anserini +test653 Q0 18293507 30 10.158541 Anserini +test654 Q0 7051649 1 12.212084 Anserini +test654 Q0 7051648 2 12.087692 Anserini +test654 Q0 3364843 3 11.782454 Anserini +test654 Q0 3213577 4 11.715909 Anserini +test654 Q0 404982 5 11.650167 Anserini +test654 Q0 404956 6 11.521026 Anserini +test654 Q0 404984 7 11.521026 Anserini +test654 Q0 7498592 8 11.327971 Anserini +test654 Q0 3364829 9 11.154731 Anserini +test654 Q0 7064043 10 11.137713 Anserini +test654 Q0 7063151 11 11.137713 Anserini +test654 Q0 2816315 12 11.120310 Anserini +test654 Q0 1271749 13 11.003246 Anserini +test654 Q0 7498593 14 10.942465 Anserini +test654 Q0 404980 15 10.741016 Anserini +test654 Q0 404974 16 10.717941 Anserini +test654 Q0 3048029 17 10.685646 Anserini +test654 Q0 7051650 18 10.685646 Anserini +test654 Q0 7051640 19 10.685646 Anserini +test654 Q0 7498580 20 10.685646 Anserini +test654 Q0 4365671 21 10.636379 Anserini +test654 Q0 15264603 22 10.630844 Anserini +test654 Q0 15264604 23 10.630844 Anserini +test654 Q0 7498590 24 10.485442 Anserini +test654 Q0 4596063 25 10.469729 Anserini +test654 Q0 642748 26 10.376584 Anserini +test654 Q0 5111105 27 10.331287 Anserini +test654 Q0 16483847 28 10.317184 Anserini +test654 Q0 1267190 29 10.264999 Anserini +test654 Q0 1565289 30 10.222530 Anserini +test655 Q0 761353 1 14.612878 Anserini +test655 Q0 11892633 2 14.434721 Anserini +test655 Q0 5985941 3 12.872561 Anserini +test655 Q0 5715565 4 12.474257 Anserini +test655 Q0 4744265 5 12.429995 Anserini +test655 Q0 20785785 6 11.976852 Anserini +test655 Q0 7873757 7 11.968449 Anserini +test655 Q0 11437147 8 11.936792 Anserini +test655 Q0 20785787 9 11.864679 Anserini +test655 Q0 12286505 10 11.840614 Anserini +test655 Q0 19556892 11 11.763650 Anserini +test655 Q0 10591725 12 11.632109 Anserini +test655 Q0 4601990 13 11.627085 Anserini +test655 Q0 9816791 14 11.490705 Anserini +test655 Q0 3805644 15 11.410252 Anserini +test655 Q0 761373 16 11.373546 Anserini +test655 Q0 20092333 17 11.333193 Anserini +test655 Q0 20092330 18 11.333193 Anserini +test655 Q0 7394698 19 11.227537 Anserini +test655 Q0 11992498 20 11.214606 Anserini +test655 Q0 19621398 21 11.198529 Anserini +test655 Q0 20241990 22 11.177711 Anserini +test655 Q0 18563684 23 11.177711 Anserini +test655 Q0 4546615 24 11.138262 Anserini +test655 Q0 12139303 25 11.127598 Anserini +test655 Q0 1750913 26 11.093781 Anserini +test655 Q0 3805645 27 11.080501 Anserini +test655 Q0 3805646 28 11.061876 Anserini +test655 Q0 17491797 29 11.058789 Anserini +test655 Q0 8333838 30 11.058789 Anserini +test656 Q0 17895872 1 10.656847 Anserini +test656 Q0 12301122 2 10.133009 Anserini +test656 Q0 17895875 3 9.836810 Anserini +test656 Q0 13299243 4 9.642344 Anserini +test656 Q0 12301119 5 9.642174 Anserini +test656 Q0 9127696 6 9.558985 Anserini +test656 Q0 12301104 7 9.484810 Anserini +test656 Q0 17895873 8 9.383233 Anserini +test656 Q0 7213365 9 9.380980 Anserini +test656 Q0 17175518 10 9.213760 Anserini +test656 Q0 17175522 11 9.202167 Anserini +test656 Q0 14242322 12 9.165823 Anserini +test656 Q0 7213350 13 9.072060 Anserini +test656 Q0 9127693 14 9.012701 Anserini +test656 Q0 9272843 15 9.004399 Anserini +test656 Q0 13078719 16 8.906894 Anserini +test656 Q0 8859974 17 8.882335 Anserini +test656 Q0 12301125 18 8.865044 Anserini +test656 Q0 17175498 19 8.865044 Anserini +test656 Q0 13084252 20 8.825768 Anserini +test656 Q0 8860665 21 8.755134 Anserini +test656 Q0 20676478 22 8.710158 Anserini +test656 Q0 20676480 23 8.661268 Anserini +test656 Q0 12677741 24 8.651117 Anserini +test656 Q0 17175515 25 8.587678 Anserini +test656 Q0 12301115 26 8.566592 Anserini +test656 Q0 13239127 27 8.558072 Anserini +test656 Q0 12962669 28 8.531061 Anserini +test656 Q0 12301105 29 8.524217 Anserini +test656 Q0 17175514 30 8.518725 Anserini +test657 Q0 2278997 1 11.246494 Anserini +test657 Q0 1019085 2 10.463039 Anserini +test657 Q0 5505189 3 10.415821 Anserini +test657 Q0 6640233 4 10.216229 Anserini +test657 Q0 17660566 5 10.108292 Anserini +test657 Q0 6072409 6 10.068914 Anserini +test657 Q0 6950516 7 9.905709 Anserini +test657 Q0 18874819 8 9.892282 Anserini +test657 Q0 9069646 9 9.765410 Anserini +test657 Q0 2562392 10 9.718681 Anserini +test657 Q0 8315536 11 9.601568 Anserini +test657 Q0 10630058 12 9.501042 Anserini +test657 Q0 5505184 13 9.423502 Anserini +test657 Q0 10333929 14 9.349495 Anserini +test657 Q0 11470059 15 9.209862 Anserini +test657 Q0 13981808 16 9.190980 Anserini +test657 Q0 7350908 17 9.158756 Anserini +test657 Q0 5645277 18 9.139040 Anserini +test657 Q0 7970077 19 9.083465 Anserini +test657 Q0 4890672 20 9.062007 Anserini +test657 Q0 8490529 21 9.044703 Anserini +test657 Q0 5160174 22 9.034783 Anserini +test657 Q0 15147205 23 9.019382 Anserini +test657 Q0 2067353 24 9.015136 Anserini +test657 Q0 16037047 25 8.992324 Anserini +test657 Q0 20370750 26 8.976233 Anserini +test657 Q0 4771378 27 8.972946 Anserini +test657 Q0 2279009 28 8.970577 Anserini +test657 Q0 4310049 29 8.969828 Anserini +test657 Q0 6536413 30 8.949330 Anserini +test658 Q0 20862512 1 13.687405 Anserini +test658 Q0 10005698 2 13.029128 Anserini +test658 Q0 4232187 3 12.783595 Anserini +test658 Q0 10005755 4 12.666621 Anserini +test658 Q0 7853226 5 12.565529 Anserini +test658 Q0 20859439 6 12.519077 Anserini +test658 Q0 7962586 7 12.258161 Anserini +test658 Q0 15373661 8 11.978025 Anserini +test658 Q0 10005706 9 11.946426 Anserini +test658 Q0 5574416 10 11.346399 Anserini +test658 Q0 6950738 11 11.328678 Anserini +test658 Q0 4503780 12 11.276851 Anserini +test658 Q0 10005754 13 11.266958 Anserini +test658 Q0 6950748 14 11.266958 Anserini +test658 Q0 10005702 15 11.202587 Anserini +test658 Q0 5821839 16 11.102021 Anserini +test658 Q0 8900778 17 11.102021 Anserini +test658 Q0 20862513 18 11.089307 Anserini +test658 Q0 19995591 19 11.042256 Anserini +test658 Q0 19995569 20 10.976788 Anserini +test658 Q0 1750123 21 10.824313 Anserini +test658 Q0 16606491 22 10.811614 Anserini +test658 Q0 3778826 23 10.782212 Anserini +test658 Q0 3778848 24 10.709318 Anserini +test658 Q0 5821835 25 10.669024 Anserini +test658 Q0 7367944 26 10.651216 Anserini +test658 Q0 6659585 27 10.618472 Anserini +test658 Q0 17115214 28 10.595490 Anserini +test658 Q0 3778901 29 10.588915 Anserini +test658 Q0 6659593 30 10.566463 Anserini +test659 Q0 20373903 1 11.854021 Anserini +test659 Q0 12650535 2 10.906855 Anserini +test659 Q0 408877 3 10.862919 Anserini +test659 Q0 12650521 4 10.769476 Anserini +test659 Q0 11597820 5 10.684673 Anserini +test659 Q0 7529047 6 10.580366 Anserini +test659 Q0 18146699 7 10.564652 Anserini +test659 Q0 20350378 8 10.482483 Anserini +test659 Q0 11597812 9 10.479120 Anserini +test659 Q0 18427375 10 10.346140 Anserini +test659 Q0 8777186 11 10.340479 Anserini +test659 Q0 20998609 12 10.321630 Anserini +test659 Q0 12946095 13 10.318893 Anserini +test659 Q0 12623835 14 10.264036 Anserini +test659 Q0 16862267 15 10.264036 Anserini +test659 Q0 12580656 16 10.242844 Anserini +test659 Q0 15266736 17 10.215466 Anserini +test659 Q0 17427979 18 10.201560 Anserini +test659 Q0 16544358 19 10.187281 Anserini +test659 Q0 7448707 20 10.183386 Anserini +test659 Q0 8411706 21 10.168516 Anserini +test659 Q0 17391753 22 10.122744 Anserini +test659 Q0 16760746 23 10.122744 Anserini +test659 Q0 4627753 24 10.082777 Anserini +test659 Q0 5330766 25 10.019830 Anserini +test659 Q0 5330765 26 10.019830 Anserini +test659 Q0 15268158 27 9.902174 Anserini +test659 Q0 16340146 28 9.793827 Anserini +test659 Q0 13187578 29 9.790886 Anserini +test659 Q0 5947179 30 9.789856 Anserini +test66 Q0 20524153 1 19.003534 Anserini +test66 Q0 7720454 2 18.729626 Anserini +test66 Q0 5456259 3 18.209291 Anserini +test66 Q0 20763994 4 18.009197 Anserini +test66 Q0 7720458 5 17.538733 Anserini +test66 Q0 5456247 6 17.505171 Anserini +test66 Q0 19859532 7 17.433777 Anserini +test66 Q0 20130455 8 17.010914 Anserini +test66 Q0 5089786 9 16.972536 Anserini +test66 Q0 7720460 10 16.884594 Anserini +test66 Q0 5456262 11 16.866236 Anserini +test66 Q0 7720456 12 16.822142 Anserini +test66 Q0 7720457 13 16.771376 Anserini +test66 Q0 5089795 14 16.766436 Anserini +test66 Q0 20457293 15 16.766436 Anserini +test66 Q0 5456243 16 16.632557 Anserini +test66 Q0 7720462 17 16.602598 Anserini +test66 Q0 19660912 18 16.437765 Anserini +test66 Q0 7720431 19 16.373888 Anserini +test66 Q0 5456238 20 16.283468 Anserini +test66 Q0 7720455 21 16.247683 Anserini +test66 Q0 4569629 22 16.160769 Anserini +test66 Q0 20021938 23 16.127054 Anserini +test66 Q0 5456250 24 16.127054 Anserini +test66 Q0 16370394 25 15.928306 Anserini +test66 Q0 20011291 26 15.915213 Anserini +test66 Q0 2222719 27 15.807088 Anserini +test66 Q0 5456249 28 15.795006 Anserini +test66 Q0 5456244 29 15.719690 Anserini +test66 Q0 7720463 30 15.663088 Anserini +test660 Q0 12704844 1 10.887760 Anserini +test660 Q0 15050865 2 10.689362 Anserini +test660 Q0 10169461 3 10.621454 Anserini +test660 Q0 11309588 4 10.576433 Anserini +test660 Q0 3544439 5 10.508606 Anserini +test660 Q0 17479463 6 10.430841 Anserini +test660 Q0 984697 7 10.294502 Anserini +test660 Q0 984612 8 10.256866 Anserini +test660 Q0 3544469 9 10.226621 Anserini +test660 Q0 10040320 10 10.101868 Anserini +test660 Q0 1567914 11 10.094729 Anserini +test660 Q0 17479455 12 10.033051 Anserini +test660 Q0 5675919 13 9.908115 Anserini +test660 Q0 1594472 14 9.908115 Anserini +test660 Q0 7917543 15 9.908115 Anserini +test660 Q0 12268859 16 9.905977 Anserini +test660 Q0 11309583 17 9.892351 Anserini +test660 Q0 7394834 18 9.876813 Anserini +test660 Q0 984629 19 9.862609 Anserini +test660 Q0 12827175 20 9.835483 Anserini +test660 Q0 5005686 21 9.821714 Anserini +test660 Q0 10169464 22 9.766503 Anserini +test660 Q0 11998817 23 9.764426 Anserini +test660 Q0 3800898 24 9.706392 Anserini +test660 Q0 7641789 25 9.684309 Anserini +test660 Q0 1342681 26 9.597101 Anserini +test660 Q0 11759235 27 9.594871 Anserini +test660 Q0 2711662 28 9.590754 Anserini +test660 Q0 13521459 29 9.586340 Anserini +test660 Q0 1594483 30 9.586340 Anserini +test661 Q0 9447738 1 10.850976 Anserini +test661 Q0 10964753 2 10.705919 Anserini +test661 Q0 5592763 3 10.321572 Anserini +test661 Q0 3039457 4 10.307692 Anserini +test661 Q0 3276552 5 10.239554 Anserini +test661 Q0 2305848 6 10.020678 Anserini +test661 Q0 3504102 7 9.884815 Anserini +test661 Q0 411251 8 9.858453 Anserini +test661 Q0 4665808 9 9.790712 Anserini +test661 Q0 14881549 10 9.707438 Anserini +test661 Q0 411213 11 9.647227 Anserini +test661 Q0 4666999 12 9.585884 Anserini +test661 Q0 13627719 13 9.547356 Anserini +test661 Q0 2971918 14 9.533450 Anserini +test661 Q0 20975452 15 9.496902 Anserini +test661 Q0 175068 16 9.492570 Anserini +test661 Q0 356223 17 9.487766 Anserini +test661 Q0 3859925 18 9.447369 Anserini +test661 Q0 3038460 19 9.422211 Anserini +test661 Q0 3039469 20 9.398485 Anserini +test661 Q0 3038461 21 9.352913 Anserini +test661 Q0 388845 22 9.352913 Anserini +test661 Q0 2725695 23 9.350551 Anserini +test661 Q0 11415665 24 9.284249 Anserini +test661 Q0 698755 25 9.202364 Anserini +test661 Q0 2305858 26 9.197630 Anserini +test661 Q0 6729328 27 9.188095 Anserini +test661 Q0 5592767 28 9.169915 Anserini +test661 Q0 3587780 29 9.159073 Anserini +test661 Q0 14372743 30 9.146505 Anserini +test662 Q0 11635117 1 15.518894 Anserini +test662 Q0 13106938 2 14.677637 Anserini +test662 Q0 11635123 3 14.568329 Anserini +test662 Q0 11635115 4 14.473325 Anserini +test662 Q0 4369906 5 13.935040 Anserini +test662 Q0 1756493 6 13.889042 Anserini +test662 Q0 4369905 7 13.689595 Anserini +test662 Q0 3210935 8 13.518731 Anserini +test662 Q0 375194 9 13.337746 Anserini +test662 Q0 13495915 10 13.273919 Anserini +test662 Q0 829727 11 12.830638 Anserini +test662 Q0 16604448 12 12.790238 Anserini +test662 Q0 13495900 13 12.432890 Anserini +test662 Q0 4687288 14 12.354962 Anserini +test662 Q0 13495913 15 12.255841 Anserini +test662 Q0 4687287 16 12.255841 Anserini +test662 Q0 15781596 17 12.166615 Anserini +test662 Q0 3775947 18 12.156376 Anserini +test662 Q0 13106936 19 12.155273 Anserini +test662 Q0 868712 20 12.136772 Anserini +test662 Q0 4369909 21 12.123007 Anserini +test662 Q0 17522322 22 12.100161 Anserini +test662 Q0 4369907 23 12.026258 Anserini +test662 Q0 9234600 24 11.936679 Anserini +test662 Q0 8276728 25 11.932106 Anserini +test662 Q0 8140251 26 11.901156 Anserini +test662 Q0 4369904 27 11.864334 Anserini +test662 Q0 936242 28 11.802174 Anserini +test662 Q0 7622370 29 11.774090 Anserini +test662 Q0 13495935 30 11.734038 Anserini +test663 Q0 2129232 1 13.340397 Anserini +test663 Q0 10330868 2 12.791509 Anserini +test663 Q0 15353790 3 12.536067 Anserini +test663 Q0 4272268 4 12.270703 Anserini +test663 Q0 5890313 5 12.207709 Anserini +test663 Q0 766106 6 12.098934 Anserini +test663 Q0 5890317 7 11.868810 Anserini +test663 Q0 2064100 8 11.866105 Anserini +test663 Q0 10943390 9 11.472443 Anserini +test663 Q0 10943391 10 11.472443 Anserini +test663 Q0 4514038 11 11.415029 Anserini +test663 Q0 1816631 12 11.393923 Anserini +test663 Q0 3038827 13 11.363573 Anserini +test663 Q0 19835116 14 11.274099 Anserini +test663 Q0 766115 15 11.214409 Anserini +test663 Q0 11139829 16 11.075130 Anserini +test663 Q0 2839258 17 11.032344 Anserini +test663 Q0 73085 18 10.976606 Anserini +test663 Q0 8063908 19 10.913351 Anserini +test663 Q0 11773007 20 10.812834 Anserini +test663 Q0 2403895 21 10.778399 Anserini +test663 Q0 1684648 22 10.735813 Anserini +test663 Q0 12606018 23 10.690654 Anserini +test663 Q0 13354671 24 10.675184 Anserini +test663 Q0 4744211 25 10.657638 Anserini +test663 Q0 11772999 26 10.653511 Anserini +test663 Q0 47125 27 10.632392 Anserini +test663 Q0 11247571 28 10.597706 Anserini +test663 Q0 8116123 29 10.586995 Anserini +test663 Q0 57732 30 10.582724 Anserini +test664 Q0 14570701 1 18.917032 Anserini +test664 Q0 14570710 2 18.917032 Anserini +test664 Q0 16976161 3 17.340822 Anserini +test664 Q0 12437557 4 16.142555 Anserini +test664 Q0 12437554 5 15.649669 Anserini +test664 Q0 12437561 6 15.649669 Anserini +test664 Q0 16976162 7 15.408734 Anserini +test664 Q0 15937231 8 15.193245 Anserini +test664 Q0 16976164 9 15.092592 Anserini +test664 Q0 9157799 10 15.087528 Anserini +test664 Q0 14581111 11 14.623199 Anserini +test664 Q0 12437568 12 14.362305 Anserini +test664 Q0 14426137 13 14.249983 Anserini +test664 Q0 16832177 14 14.213295 Anserini +test664 Q0 13548180 15 14.175519 Anserini +test664 Q0 11844025 16 13.869613 Anserini +test664 Q0 14557276 17 13.812253 Anserini +test664 Q0 14909850 18 13.741613 Anserini +test664 Q0 12437567 19 13.660449 Anserini +test664 Q0 16832176 20 13.605098 Anserini +test664 Q0 12437570 21 13.555013 Anserini +test664 Q0 14581197 22 13.555013 Anserini +test664 Q0 13548188 23 13.496689 Anserini +test664 Q0 5223768 24 13.372798 Anserini +test664 Q0 12542949 25 13.354372 Anserini +test664 Q0 12437558 26 13.248306 Anserini +test664 Q0 8406859 27 13.127066 Anserini +test664 Q0 8406863 28 13.127066 Anserini +test664 Q0 13366121 29 13.087916 Anserini +test664 Q0 12437541 30 13.046473 Anserini +test665 Q0 227030 1 14.818300 Anserini +test665 Q0 15075922 2 14.715484 Anserini +test665 Q0 12544706 3 14.480969 Anserini +test665 Q0 540166 4 14.277182 Anserini +test665 Q0 19757230 5 13.392737 Anserini +test665 Q0 1748801 6 13.392737 Anserini +test665 Q0 936543 7 13.287758 Anserini +test665 Q0 2652402 8 12.656081 Anserini +test665 Q0 4735546 9 12.548031 Anserini +test665 Q0 17153903 10 12.423723 Anserini +test665 Q0 12544712 11 12.295824 Anserini +test665 Q0 20172919 12 12.293651 Anserini +test665 Q0 4735562 13 12.293651 Anserini +test665 Q0 18534176 14 12.285069 Anserini +test665 Q0 20820445 15 11.936661 Anserini +test665 Q0 3353183 16 11.802583 Anserini +test665 Q0 17151134 17 11.706175 Anserini +test665 Q0 1927246 18 11.623086 Anserini +test665 Q0 20820454 19 11.619751 Anserini +test665 Q0 7519905 20 11.613982 Anserini +test665 Q0 12649983 21 11.597445 Anserini +test665 Q0 13362952 22 11.544995 Anserini +test665 Q0 13160437 23 11.507322 Anserini +test665 Q0 13704764 24 11.417928 Anserini +test665 Q0 7594615 25 11.409203 Anserini +test665 Q0 19056904 26 11.349580 Anserini +test665 Q0 6230401 27 11.307601 Anserini +test665 Q0 2248078 28 11.247470 Anserini +test665 Q0 13460303 29 11.213674 Anserini +test665 Q0 20172920 30 11.173515 Anserini +test666 Q0 4087683 1 17.536392 Anserini +test666 Q0 4087699 2 17.395050 Anserini +test666 Q0 727573 3 15.905334 Anserini +test666 Q0 4018218 4 15.804845 Anserini +test666 Q0 4018227 5 15.778955 Anserini +test666 Q0 721770 6 15.548079 Anserini +test666 Q0 721765 7 14.662548 Anserini +test666 Q0 721755 8 14.617243 Anserini +test666 Q0 721763 9 14.371572 Anserini +test666 Q0 3149368 10 14.045388 Anserini +test666 Q0 721761 11 14.034575 Anserini +test666 Q0 1951132 12 13.678267 Anserini +test666 Q0 8576130 13 13.562855 Anserini +test666 Q0 13243502 14 13.562855 Anserini +test666 Q0 2966708 15 13.503901 Anserini +test666 Q0 14651541 16 13.450759 Anserini +test666 Q0 12666823 17 13.446531 Anserini +test666 Q0 719684 18 13.030977 Anserini +test666 Q0 9443663 19 13.030977 Anserini +test666 Q0 719706 20 13.030977 Anserini +test666 Q0 14651556 21 12.996843 Anserini +test666 Q0 4087693 22 12.987150 Anserini +test666 Q0 13981086 23 12.924709 Anserini +test666 Q0 4087696 24 12.728118 Anserini +test666 Q0 4018219 25 12.668353 Anserini +test666 Q0 4087686 26 12.640331 Anserini +test666 Q0 19730305 27 12.640331 Anserini +test666 Q0 4087684 28 12.424521 Anserini +test666 Q0 721758 29 12.320206 Anserini +test666 Q0 721762 30 12.041532 Anserini +test667 Q0 20518266 1 20.058706 Anserini +test667 Q0 20518270 2 19.121122 Anserini +test667 Q0 20079337 3 18.871782 Anserini +test667 Q0 14333891 4 18.378841 Anserini +test667 Q0 9708006 5 18.290726 Anserini +test667 Q0 14897105 6 18.198557 Anserini +test667 Q0 19718556 7 18.165684 Anserini +test667 Q0 10671778 8 18.143820 Anserini +test667 Q0 20538646 9 18.109930 Anserini +test667 Q0 20518267 10 18.062660 Anserini +test667 Q0 20538139 11 17.940886 Anserini +test667 Q0 20538142 12 17.940886 Anserini +test667 Q0 14353145 13 17.860714 Anserini +test667 Q0 20522301 14 17.852934 Anserini +test667 Q0 20035345 15 17.743635 Anserini +test667 Q0 7227141 16 17.701229 Anserini +test667 Q0 20530389 17 17.582985 Anserini +test667 Q0 20530390 18 17.582985 Anserini +test667 Q0 20502548 19 17.545717 Anserini +test667 Q0 20525225 20 17.527018 Anserini +test667 Q0 20035343 21 17.438231 Anserini +test667 Q0 19718558 22 17.434481 Anserini +test667 Q0 20535011 23 17.342966 Anserini +test667 Q0 20525830 24 17.323980 Anserini +test667 Q0 7239854 25 17.305029 Anserini +test667 Q0 20535012 26 17.236549 Anserini +test667 Q0 20530380 27 17.155460 Anserini +test667 Q0 7227135 28 17.126234 Anserini +test667 Q0 17129690 29 17.103916 Anserini +test667 Q0 17130441 30 17.077854 Anserini +test668 Q0 16573490 1 15.562887 Anserini +test668 Q0 14886995 2 14.745437 Anserini +test668 Q0 11438282 3 14.583573 Anserini +test668 Q0 11915173 4 14.555860 Anserini +test668 Q0 5348191 5 14.345117 Anserini +test668 Q0 13091559 6 14.313897 Anserini +test668 Q0 16324502 7 14.313600 Anserini +test668 Q0 13089022 8 14.298363 Anserini +test668 Q0 9364034 9 14.251875 Anserini +test668 Q0 11237560 10 14.047809 Anserini +test668 Q0 13168886 11 13.839781 Anserini +test668 Q0 10580097 12 13.809673 Anserini +test668 Q0 18659085 13 13.650369 Anserini +test668 Q0 10349448 14 13.624090 Anserini +test668 Q0 7442652 15 13.579704 Anserini +test668 Q0 2169798 16 13.563865 Anserini +test668 Q0 15690346 17 13.560987 Anserini +test668 Q0 5949028 18 13.541898 Anserini +test668 Q0 1359199 19 13.530993 Anserini +test668 Q0 18267353 20 13.486820 Anserini +test668 Q0 13390437 21 13.401787 Anserini +test668 Q0 1813895 22 13.391188 Anserini +test668 Q0 4258345 23 13.383632 Anserini +test668 Q0 17914977 24 13.374622 Anserini +test668 Q0 7747149 25 13.274698 Anserini +test668 Q0 411726 26 13.196916 Anserini +test668 Q0 13514694 27 13.150948 Anserini +test668 Q0 4314188 28 13.119062 Anserini +test668 Q0 5995312 29 13.113960 Anserini +test668 Q0 8497331 30 13.074145 Anserini +test669 Q0 17875368 1 12.957120 Anserini +test669 Q0 13369482 2 12.411030 Anserini +test669 Q0 13369481 3 11.769087 Anserini +test669 Q0 11985752 4 11.751124 Anserini +test669 Q0 963458 5 11.743921 Anserini +test669 Q0 12199304 6 11.524848 Anserini +test669 Q0 1716302 7 11.501697 Anserini +test669 Q0 2992168 8 11.492793 Anserini +test669 Q0 963455 9 11.177578 Anserini +test669 Q0 1716340 10 11.137650 Anserini +test669 Q0 4388291 11 11.027920 Anserini +test669 Q0 6846415 12 11.014087 Anserini +test669 Q0 12807316 13 11.010315 Anserini +test669 Q0 535982 14 10.967159 Anserini +test669 Q0 1716303 15 10.934234 Anserini +test669 Q0 5749367 16 10.890012 Anserini +test669 Q0 4883805 17 10.820751 Anserini +test669 Q0 1716345 18 10.802030 Anserini +test669 Q0 3155899 19 10.789832 Anserini +test669 Q0 1716301 20 10.761353 Anserini +test669 Q0 17376267 21 10.719177 Anserini +test669 Q0 17376275 22 10.719177 Anserini +test669 Q0 8192805 23 10.668082 Anserini +test669 Q0 5749371 24 10.654314 Anserini +test669 Q0 4883810 25 10.651473 Anserini +test669 Q0 15323420 26 10.629813 Anserini +test669 Q0 266067 27 10.622443 Anserini +test669 Q0 14270174 28 10.608123 Anserini +test669 Q0 289208 29 10.591997 Anserini +test669 Q0 1716295 30 10.578828 Anserini +test67 Q0 12835817 1 12.771821 Anserini +test67 Q0 19177748 2 12.448998 Anserini +test67 Q0 12835816 3 12.391515 Anserini +test67 Q0 19177745 4 12.368648 Anserini +test67 Q0 19177733 5 12.051549 Anserini +test67 Q0 1474897 6 11.491499 Anserini +test67 Q0 19177746 7 11.385799 Anserini +test67 Q0 9900645 8 11.261443 Anserini +test67 Q0 18466015 9 11.145638 Anserini +test67 Q0 18465996 10 11.145638 Anserini +test67 Q0 19177734 11 10.950047 Anserini +test67 Q0 16903082 12 10.945454 Anserini +test67 Q0 10503970 13 10.765823 Anserini +test67 Q0 14266113 14 10.765823 Anserini +test67 Q0 10503947 15 10.758080 Anserini +test67 Q0 1399242 16 10.695947 Anserini +test67 Q0 19177750 17 10.669847 Anserini +test67 Q0 11788152 18 10.520282 Anserini +test67 Q0 14266105 19 10.468725 Anserini +test67 Q0 1399226 20 10.454336 Anserini +test67 Q0 1399229 21 10.428410 Anserini +test67 Q0 20057792 22 10.406273 Anserini +test67 Q0 15251765 23 10.393707 Anserini +test67 Q0 1399196 24 10.349154 Anserini +test67 Q0 16313779 25 10.323140 Anserini +test67 Q0 15251766 26 10.315180 Anserini +test67 Q0 5990029 27 10.288523 Anserini +test67 Q0 16325350 28 10.267951 Anserini +test67 Q0 1399192 29 10.255724 Anserini +test67 Q0 16714507 30 10.244816 Anserini +test670 Q0 6487762 1 19.980974 Anserini +test670 Q0 5908213 2 16.743637 Anserini +test670 Q0 5338836 3 16.669537 Anserini +test670 Q0 3321136 4 16.590990 Anserini +test670 Q0 5292328 5 16.434353 Anserini +test670 Q0 5779841 6 16.323616 Anserini +test670 Q0 12784113 7 16.286007 Anserini +test670 Q0 9142749 8 16.251238 Anserini +test670 Q0 43660 9 16.239727 Anserini +test670 Q0 3470603 10 16.188019 Anserini +test670 Q0 14778831 11 16.082855 Anserini +test670 Q0 6487880 12 16.055874 Anserini +test670 Q0 3553034 13 15.959483 Anserini +test670 Q0 484697 14 15.952639 Anserini +test670 Q0 5588772 15 15.904707 Anserini +test670 Q0 15335099 16 15.870904 Anserini +test670 Q0 6109344 17 15.866319 Anserini +test670 Q0 3063317 18 15.856589 Anserini +test670 Q0 5589259 19 15.828250 Anserini +test670 Q0 484737 20 15.788174 Anserini +test670 Q0 3470612 21 15.777957 Anserini +test670 Q0 5588873 22 15.724624 Anserini +test670 Q0 1860805 23 15.664747 Anserini +test670 Q0 14778739 24 15.662390 Anserini +test670 Q0 3345413 25 15.625268 Anserini +test670 Q0 1860838 26 15.595469 Anserini +test670 Q0 6487761 27 15.581173 Anserini +test670 Q0 6702703 28 15.512341 Anserini +test670 Q0 5588719 29 15.464569 Anserini +test670 Q0 5908021 30 15.443480 Anserini +test671 Q0 3985866 1 20.847767 Anserini +test671 Q0 3985858 2 20.733801 Anserini +test671 Q0 16401891 3 16.675394 Anserini +test671 Q0 3985860 4 16.660698 Anserini +test671 Q0 12823988 5 15.171360 Anserini +test671 Q0 3985864 6 14.883591 Anserini +test671 Q0 10557292 7 14.805806 Anserini +test671 Q0 226594 8 14.562021 Anserini +test671 Q0 18165761 9 14.272259 Anserini +test671 Q0 9419341 10 14.150934 Anserini +test671 Q0 6508491 11 14.022444 Anserini +test671 Q0 508721 12 13.964497 Anserini +test671 Q0 12823983 13 13.942890 Anserini +test671 Q0 16220083 14 13.922813 Anserini +test671 Q0 7965817 15 13.863010 Anserini +test671 Q0 11478379 16 13.733459 Anserini +test671 Q0 10899759 17 13.725336 Anserini +test671 Q0 4144513 18 13.712673 Anserini +test671 Q0 3985865 19 13.676690 Anserini +test671 Q0 12823992 20 13.568932 Anserini +test671 Q0 4141536 21 13.558378 Anserini +test671 Q0 20858677 22 13.549337 Anserini +test671 Q0 12629668 23 13.451035 Anserini +test671 Q0 12629673 24 13.451035 Anserini +test671 Q0 16401889 25 13.449077 Anserini +test671 Q0 3316831 26 13.252166 Anserini +test671 Q0 375651 27 13.220286 Anserini +test671 Q0 5128660 28 13.178356 Anserini +test671 Q0 12823998 29 13.156868 Anserini +test671 Q0 11567600 30 13.121793 Anserini +test672 Q0 20908789 1 16.047569 Anserini +test672 Q0 17421742 2 15.825033 Anserini +test672 Q0 3101573 3 15.204454 Anserini +test672 Q0 16611716 4 15.175285 Anserini +test672 Q0 19634713 5 14.808958 Anserini +test672 Q0 18786738 6 14.461121 Anserini +test672 Q0 14335777 7 14.057453 Anserini +test672 Q0 19634716 8 13.284475 Anserini +test672 Q0 20908801 9 13.234827 Anserini +test672 Q0 18045370 10 13.212681 Anserini +test672 Q0 9092440 11 13.204423 Anserini +test672 Q0 6676257 12 13.155899 Anserini +test672 Q0 18045366 13 13.155899 Anserini +test672 Q0 20908799 14 12.901886 Anserini +test672 Q0 18045369 15 12.816030 Anserini +test672 Q0 20908797 16 12.632717 Anserini +test672 Q0 14335781 17 12.492235 Anserini +test672 Q0 7726443 18 12.433396 Anserini +test672 Q0 14383421 19 12.386481 Anserini +test672 Q0 19294110 20 12.345325 Anserini +test672 Q0 20907916 21 12.225888 Anserini +test672 Q0 20908798 22 12.224802 Anserini +test672 Q0 18786735 23 12.213518 Anserini +test672 Q0 20017580 24 12.138302 Anserini +test672 Q0 9187549 25 12.114058 Anserini +test672 Q0 5532324 26 12.107117 Anserini +test672 Q0 5532343 27 12.107117 Anserini +test672 Q0 6295710 28 12.086285 Anserini +test672 Q0 5532327 29 12.086285 Anserini +test672 Q0 3822332 30 12.060053 Anserini +test673 Q0 8072203 1 17.718307 Anserini +test673 Q0 2076970 2 17.651989 Anserini +test673 Q0 16903548 3 17.641598 Anserini +test673 Q0 16903553 4 17.640879 Anserini +test673 Q0 8944359 5 17.591682 Anserini +test673 Q0 3393280 6 17.464420 Anserini +test673 Q0 10124887 7 17.383152 Anserini +test673 Q0 2076669 8 17.229050 Anserini +test673 Q0 2076964 9 17.024055 Anserini +test673 Q0 8575194 10 16.924686 Anserini +test673 Q0 2076477 11 16.911583 Anserini +test673 Q0 16903555 12 16.856934 Anserini +test673 Q0 2076484 13 16.759060 Anserini +test673 Q0 2076973 14 16.654152 Anserini +test673 Q0 2076483 15 16.376730 Anserini +test673 Q0 2076974 16 16.363180 Anserini +test673 Q0 2076971 17 16.319187 Anserini +test673 Q0 9388625 18 16.316143 Anserini +test673 Q0 16903560 19 16.278601 Anserini +test673 Q0 1408425 20 16.255753 Anserini +test673 Q0 5182297 21 16.049019 Anserini +test673 Q0 6551125 22 15.968754 Anserini +test673 Q0 6551107 23 15.968754 Anserini +test673 Q0 16903559 24 15.796835 Anserini +test673 Q0 16690925 25 15.776567 Anserini +test673 Q0 5076878 26 15.739810 Anserini +test673 Q0 2076481 27 15.722931 Anserini +test673 Q0 9544983 28 15.721140 Anserini +test673 Q0 2076480 29 15.719630 Anserini +test673 Q0 2076485 30 15.685330 Anserini +test674 Q0 5699988 1 17.784967 Anserini +test674 Q0 279835 2 16.161766 Anserini +test674 Q0 294329 3 15.333065 Anserini +test674 Q0 4594500 4 15.249323 Anserini +test674 Q0 16912386 5 15.184766 Anserini +test674 Q0 2909022 6 14.791338 Anserini +test674 Q0 16912385 7 14.745831 Anserini +test674 Q0 16912396 8 14.512910 Anserini +test674 Q0 14805379 9 14.431695 Anserini +test674 Q0 3849994 10 14.250846 Anserini +test674 Q0 7865307 11 14.182833 Anserini +test674 Q0 6626076 12 14.089500 Anserini +test674 Q0 3981616 13 13.957115 Anserini +test674 Q0 11560332 14 13.874857 Anserini +test674 Q0 19367396 15 13.686539 Anserini +test674 Q0 5270797 16 13.676774 Anserini +test674 Q0 4901402 17 13.557516 Anserini +test674 Q0 11955366 18 13.532494 Anserini +test674 Q0 5270792 19 13.504066 Anserini +test674 Q0 9566905 20 13.364381 Anserini +test674 Q0 6019325 21 13.340612 Anserini +test674 Q0 1867232 22 13.333352 Anserini +test674 Q0 7865293 23 13.327034 Anserini +test674 Q0 16912389 24 13.305064 Anserini +test674 Q0 292064 25 13.268241 Anserini +test674 Q0 19183169 26 13.233074 Anserini +test674 Q0 294297 27 13.215216 Anserini +test674 Q0 4901405 28 13.185369 Anserini +test674 Q0 91137 29 13.134070 Anserini +test674 Q0 10171955 30 13.125193 Anserini +test675 Q0 10877286 1 17.102911 Anserini +test675 Q0 10091957 2 17.051104 Anserini +test675 Q0 9873353 3 16.941101 Anserini +test675 Q0 10967294 4 16.802906 Anserini +test675 Q0 11242498 5 16.742294 Anserini +test675 Q0 11494967 6 16.637838 Anserini +test675 Q0 9737072 7 16.540092 Anserini +test675 Q0 11495008 8 16.540026 Anserini +test675 Q0 189578 9 16.355562 Anserini +test675 Q0 14092991 10 16.027576 Anserini +test675 Q0 13249691 11 16.020258 Anserini +test675 Q0 13244788 12 15.955876 Anserini +test675 Q0 13253125 13 15.955876 Anserini +test675 Q0 11701254 14 15.939064 Anserini +test675 Q0 13244789 15 15.829077 Anserini +test675 Q0 13253126 16 15.829077 Anserini +test675 Q0 14314504 17 15.710096 Anserini +test675 Q0 10152105 18 15.692121 Anserini +test675 Q0 13210704 19 15.657532 Anserini +test675 Q0 2837163 20 15.633910 Anserini +test675 Q0 13000505 21 15.618975 Anserini +test675 Q0 11792186 22 15.598516 Anserini +test675 Q0 17115105 23 15.553421 Anserini +test675 Q0 14295923 24 15.537827 Anserini +test675 Q0 13411117 25 15.536832 Anserini +test675 Q0 17235855 26 15.498482 Anserini +test675 Q0 6245051 27 15.366472 Anserini +test675 Q0 16533356 28 15.347332 Anserini +test675 Q0 14977692 29 15.343287 Anserini +test675 Q0 12914256 30 15.337646 Anserini +test676 Q0 2554612 1 19.313543 Anserini +test676 Q0 7168833 2 16.862402 Anserini +test676 Q0 1903066 3 16.279104 Anserini +test676 Q0 17145990 4 15.525018 Anserini +test676 Q0 7168832 5 15.507666 Anserini +test676 Q0 1903060 6 15.499248 Anserini +test676 Q0 7168834 7 15.477657 Anserini +test676 Q0 733455 8 15.065639 Anserini +test676 Q0 1903064 9 14.785666 Anserini +test676 Q0 69474 10 14.763230 Anserini +test676 Q0 5308487 11 14.594106 Anserini +test676 Q0 1903070 12 14.579868 Anserini +test676 Q0 11787384 13 14.484343 Anserini +test676 Q0 1903062 14 14.388813 Anserini +test676 Q0 1903059 15 14.352181 Anserini +test676 Q0 6327052 16 14.076815 Anserini +test676 Q0 1903061 17 14.048233 Anserini +test676 Q0 4239323 18 13.806675 Anserini +test676 Q0 1903067 19 13.801253 Anserini +test676 Q0 1903063 20 13.533150 Anserini +test676 Q0 1903069 21 13.526688 Anserini +test676 Q0 14172477 22 13.317465 Anserini +test676 Q0 1903075 23 13.229336 Anserini +test676 Q0 7118784 24 13.180087 Anserini +test676 Q0 7118793 25 13.030736 Anserini +test676 Q0 935228 26 12.882509 Anserini +test676 Q0 13291195 27 12.806498 Anserini +test676 Q0 3843953 28 12.773563 Anserini +test676 Q0 8860492 29 12.740196 Anserini +test676 Q0 8721640 30 12.663976 Anserini +test677 Q0 6201003 1 22.031519 Anserini +test677 Q0 1980572 2 21.180849 Anserini +test677 Q0 1980538 3 20.543148 Anserini +test677 Q0 1980539 4 20.407364 Anserini +test677 Q0 9205682 5 19.929304 Anserini +test677 Q0 789107 6 19.730616 Anserini +test677 Q0 9782312 7 19.604795 Anserini +test677 Q0 9205684 8 19.536657 Anserini +test677 Q0 789109 9 19.220724 Anserini +test677 Q0 789123 10 19.220724 Anserini +test677 Q0 789129 11 19.107862 Anserini +test677 Q0 16347952 12 19.094084 Anserini +test677 Q0 19297160 13 18.836935 Anserini +test677 Q0 789125 14 18.783178 Anserini +test677 Q0 789113 15 18.185163 Anserini +test677 Q0 2649204 16 18.157270 Anserini +test677 Q0 307352 17 18.114380 Anserini +test677 Q0 789114 18 17.900333 Anserini +test677 Q0 789121 19 17.863674 Anserini +test677 Q0 789126 20 17.789482 Anserini +test677 Q0 789115 21 17.739452 Anserini +test677 Q0 789110 22 17.733564 Anserini +test677 Q0 2578519 23 17.627552 Anserini +test677 Q0 11141966 24 17.623755 Anserini +test677 Q0 10611557 25 17.589577 Anserini +test677 Q0 19297162 26 17.303017 Anserini +test677 Q0 20671293 27 17.273478 Anserini +test677 Q0 940863 28 17.252365 Anserini +test677 Q0 2756805 29 17.178850 Anserini +test677 Q0 18877467 30 17.141418 Anserini +test678 Q0 11491385 1 17.734419 Anserini +test678 Q0 11491374 2 17.144167 Anserini +test678 Q0 16533095 3 16.851131 Anserini +test678 Q0 8410668 4 16.832466 Anserini +test678 Q0 12838119 5 16.778133 Anserini +test678 Q0 11491375 6 16.747002 Anserini +test678 Q0 1447786 7 16.710716 Anserini +test678 Q0 12146455 8 16.627350 Anserini +test678 Q0 7997150 9 16.299067 Anserini +test678 Q0 4526559 10 16.023546 Anserini +test678 Q0 12146454 11 15.843207 Anserini +test678 Q0 12263147 12 15.576662 Anserini +test678 Q0 11491378 13 15.526627 Anserini +test678 Q0 9073197 14 15.455154 Anserini +test678 Q0 12146458 15 15.184454 Anserini +test678 Q0 1551581 16 15.103709 Anserini +test678 Q0 19816765 17 14.957917 Anserini +test678 Q0 12570685 18 14.949145 Anserini +test678 Q0 18169993 19 14.870296 Anserini +test678 Q0 11491296 20 14.707144 Anserini +test678 Q0 7997151 21 14.683951 Anserini +test678 Q0 9435360 22 14.664597 Anserini +test678 Q0 11491379 23 14.614508 Anserini +test678 Q0 13679360 24 14.587504 Anserini +test678 Q0 8410678 25 14.572034 Anserini +test678 Q0 14976011 26 14.569943 Anserini +test678 Q0 12906540 27 14.508451 Anserini +test678 Q0 8410666 28 14.487977 Anserini +test678 Q0 7836245 29 14.482745 Anserini +test678 Q0 568021 30 14.447032 Anserini +test679 Q0 7782498 1 13.689514 Anserini +test679 Q0 1779246 2 13.021233 Anserini +test679 Q0 8192971 3 13.008816 Anserini +test679 Q0 1779245 4 12.972080 Anserini +test679 Q0 1779244 5 12.901064 Anserini +test679 Q0 14494542 6 12.825524 Anserini +test679 Q0 8175891 7 12.750837 Anserini +test679 Q0 1779243 8 12.738748 Anserini +test679 Q0 7782497 9 12.478388 Anserini +test679 Q0 16571390 10 12.462978 Anserini +test679 Q0 1779242 11 12.406260 Anserini +test679 Q0 11447093 12 12.263922 Anserini +test679 Q0 2613361 13 12.210864 Anserini +test679 Q0 8175897 14 12.011931 Anserini +test679 Q0 7240761 15 11.877617 Anserini +test679 Q0 11447092 16 11.757296 Anserini +test679 Q0 8106373 17 11.714719 Anserini +test679 Q0 2138251 18 11.670411 Anserini +test679 Q0 19026681 19 11.505966 Anserini +test679 Q0 11447095 20 11.473736 Anserini +test679 Q0 5992823 21 11.465191 Anserini +test679 Q0 12272099 22 11.375940 Anserini +test679 Q0 917604 23 11.371327 Anserini +test679 Q0 2138248 24 11.297957 Anserini +test679 Q0 8265585 25 11.278038 Anserini +test679 Q0 2613357 26 11.278038 Anserini +test679 Q0 8116290 27 11.252274 Anserini +test679 Q0 1192469 28 11.225119 Anserini +test679 Q0 18993019 29 11.220919 Anserini +test679 Q0 1190410 30 11.194213 Anserini +test68 Q0 8868579 1 13.905125 Anserini +test68 Q0 8868585 2 12.854510 Anserini +test68 Q0 8868582 3 12.782219 Anserini +test68 Q0 3408215 4 11.784730 Anserini +test68 Q0 8868584 5 11.463410 Anserini +test68 Q0 6501542 6 11.391342 Anserini +test68 Q0 16521248 7 11.249919 Anserini +test68 Q0 18318509 8 10.754344 Anserini +test68 Q0 4244153 9 10.708144 Anserini +test68 Q0 6106864 10 10.666434 Anserini +test68 Q0 20003973 11 10.651840 Anserini +test68 Q0 5807446 12 10.642962 Anserini +test68 Q0 20422839 13 10.490561 Anserini +test68 Q0 7695000 14 10.385029 Anserini +test68 Q0 12787615 15 10.335775 Anserini +test68 Q0 16214894 16 10.276844 Anserini +test68 Q0 4995400 17 10.167700 Anserini +test68 Q0 8928197 18 10.153461 Anserini +test68 Q0 11273614 19 10.059684 Anserini +test68 Q0 19770824 20 10.052187 Anserini +test68 Q0 16262933 21 10.019015 Anserini +test68 Q0 18901746 22 9.996746 Anserini +test68 Q0 12211745 23 9.987392 Anserini +test68 Q0 20686107 24 9.926345 Anserini +test68 Q0 20040981 25 9.920348 Anserini +test68 Q0 6340738 26 9.909152 Anserini +test68 Q0 18702625 27 9.909152 Anserini +test68 Q0 14383090 28 9.868160 Anserini +test68 Q0 19851891 29 9.831325 Anserini +test68 Q0 865342 30 9.804838 Anserini +test680 Q0 803345 1 12.043855 Anserini +test680 Q0 803563 2 11.624645 Anserini +test680 Q0 13265733 3 11.004570 Anserini +test680 Q0 16541520 4 10.849809 Anserini +test680 Q0 19622998 5 10.815369 Anserini +test680 Q0 7248491 6 10.633167 Anserini +test680 Q0 803344 7 10.582664 Anserini +test680 Q0 14744978 8 10.505028 Anserini +test680 Q0 14744982 9 10.486731 Anserini +test680 Q0 20704573 10 10.311521 Anserini +test680 Q0 803355 11 10.311521 Anserini +test680 Q0 18520254 12 10.184808 Anserini +test680 Q0 13329637 13 10.022493 Anserini +test680 Q0 5603920 14 9.987188 Anserini +test680 Q0 19209069 15 9.987188 Anserini +test680 Q0 11434265 16 9.965393 Anserini +test680 Q0 19622999 17 9.943754 Anserini +test680 Q0 14744983 18 9.880207 Anserini +test680 Q0 5865465 19 9.774984 Anserini +test680 Q0 4801385 20 9.762336 Anserini +test680 Q0 11434264 21 9.732747 Anserini +test680 Q0 5352921 22 9.597916 Anserini +test680 Q0 15693532 23 9.545362 Anserini +test680 Q0 19514257 24 9.480263 Anserini +test680 Q0 295995 25 9.450354 Anserini +test680 Q0 16070436 26 9.402142 Anserini +test680 Q0 17820594 27 9.390446 Anserini +test680 Q0 19121466 28 9.387531 Anserini +test680 Q0 7248483 29 9.336786 Anserini +test680 Q0 5865500 30 9.301669 Anserini +test681 Q0 20663495 1 16.022339 Anserini +test681 Q0 20663496 2 16.022339 Anserini +test681 Q0 19054020 3 14.606650 Anserini +test681 Q0 19054016 4 14.346910 Anserini +test681 Q0 19054017 5 13.979443 Anserini +test681 Q0 3440140 6 13.447783 Anserini +test681 Q0 3625902 7 13.410522 Anserini +test681 Q0 4037643 8 13.138431 Anserini +test681 Q0 19054018 9 13.108064 Anserini +test681 Q0 5979429 10 12.936459 Anserini +test681 Q0 3440139 11 12.864248 Anserini +test681 Q0 3440142 12 12.739916 Anserini +test681 Q0 5907150 13 12.725838 Anserini +test681 Q0 5907162 14 12.725838 Anserini +test681 Q0 19054019 15 12.695642 Anserini +test681 Q0 5646070 16 12.223177 Anserini +test681 Q0 5907154 17 12.092792 Anserini +test681 Q0 4727144 18 11.899728 Anserini +test681 Q0 3274721 19 11.547499 Anserini +test681 Q0 8392064 20 11.467854 Anserini +test681 Q0 5907158 21 11.467854 Anserini +test681 Q0 13937470 22 11.402607 Anserini +test681 Q0 6485439 23 11.389301 Anserini +test681 Q0 4327922 24 11.196786 Anserini +test681 Q0 16972330 25 11.184742 Anserini +test681 Q0 17622954 26 11.112184 Anserini +test681 Q0 9202546 27 11.107885 Anserini +test681 Q0 20915203 28 11.100118 Anserini +test681 Q0 7621412 29 11.067001 Anserini +test681 Q0 20915213 30 11.012279 Anserini +test682 Q0 3654567 1 13.298726 Anserini +test682 Q0 16771134 2 12.556901 Anserini +test682 Q0 16771138 3 12.556901 Anserini +test682 Q0 14178827 4 12.334625 Anserini +test682 Q0 4289198 5 12.280866 Anserini +test682 Q0 3654568 6 12.124608 Anserini +test682 Q0 15071913 7 12.051257 Anserini +test682 Q0 9265970 8 11.436519 Anserini +test682 Q0 13269387 9 11.404158 Anserini +test682 Q0 14510310 10 11.312409 Anserini +test682 Q0 7227491 11 11.178866 Anserini +test682 Q0 2926414 12 11.140702 Anserini +test682 Q0 1871597 13 10.998005 Anserini +test682 Q0 10990142 14 10.924814 Anserini +test682 Q0 19693185 15 10.904570 Anserini +test682 Q0 19693187 16 10.904570 Anserini +test682 Q0 14046835 17 10.839293 Anserini +test682 Q0 18318630 18 10.827059 Anserini +test682 Q0 4289207 19 10.636728 Anserini +test682 Q0 1989319 20 10.494321 Anserini +test682 Q0 2552834 21 10.465519 Anserini +test682 Q0 10534596 22 10.356817 Anserini +test682 Q0 20895967 23 10.329346 Anserini +test682 Q0 3654549 24 10.276027 Anserini +test682 Q0 2450617 25 10.252592 Anserini +test682 Q0 8509168 26 10.248428 Anserini +test682 Q0 8509169 27 10.213890 Anserini +test682 Q0 13424726 28 10.212443 Anserini +test682 Q0 10565498 29 10.182570 Anserini +test682 Q0 14959774 30 10.166483 Anserini +test683 Q0 6368393 1 26.569595 Anserini +test683 Q0 18280478 2 23.967974 Anserini +test683 Q0 10633840 3 23.711145 Anserini +test683 Q0 15347531 4 23.667564 Anserini +test683 Q0 2220541 5 23.362020 Anserini +test683 Q0 18280483 6 23.239590 Anserini +test683 Q0 18280479 7 22.989632 Anserini +test683 Q0 2220566 8 22.469284 Anserini +test683 Q0 15347522 9 22.339264 Anserini +test683 Q0 2220559 10 22.214937 Anserini +test683 Q0 4046022 11 22.173187 Anserini +test683 Q0 6368389 12 21.765240 Anserini +test683 Q0 2220562 13 21.386547 Anserini +test683 Q0 8820737 14 21.344105 Anserini +test683 Q0 8820746 15 21.344105 Anserini +test683 Q0 2220558 16 21.304070 Anserini +test683 Q0 2220542 17 21.180136 Anserini +test683 Q0 18280482 18 20.919701 Anserini +test683 Q0 15347530 19 20.414503 Anserini +test683 Q0 2220550 20 20.222158 Anserini +test683 Q0 6368391 21 20.100437 Anserini +test683 Q0 19144374 22 20.098560 Anserini +test683 Q0 2220553 23 19.935772 Anserini +test683 Q0 18118516 24 19.887283 Anserini +test683 Q0 10633851 25 19.822266 Anserini +test683 Q0 2220557 26 19.802471 Anserini +test683 Q0 2220547 27 19.656948 Anserini +test683 Q0 2220533 28 19.595623 Anserini +test683 Q0 9818407 29 19.505014 Anserini +test683 Q0 4765235 30 19.502398 Anserini +test684 Q0 165978 1 12.419419 Anserini +test684 Q0 13160352 2 12.031435 Anserini +test684 Q0 19294533 3 12.018192 Anserini +test684 Q0 20618560 4 11.865148 Anserini +test684 Q0 9960425 5 11.859133 Anserini +test684 Q0 13160344 6 11.821455 Anserini +test684 Q0 10213608 7 11.811149 Anserini +test684 Q0 6214148 8 11.725649 Anserini +test684 Q0 4372136 9 11.532306 Anserini +test684 Q0 3788 10 11.269017 Anserini +test684 Q0 86754 11 11.203686 Anserini +test684 Q0 3639699 12 11.114163 Anserini +test684 Q0 3639782 13 11.093801 Anserini +test684 Q0 8020301 14 11.075370 Anserini +test684 Q0 11772297 15 11.039571 Anserini +test684 Q0 8020303 16 10.973505 Anserini +test684 Q0 9154846 17 10.942587 Anserini +test684 Q0 2747370 18 10.885762 Anserini +test684 Q0 2747500 19 10.868145 Anserini +test684 Q0 12890099 20 10.835567 Anserini +test684 Q0 461486 21 10.774502 Anserini +test684 Q0 9032514 22 10.759613 Anserini +test684 Q0 1283453 23 10.726187 Anserini +test684 Q0 344106 24 10.692463 Anserini +test684 Q0 4832194 25 10.675190 Anserini +test684 Q0 20246666 26 10.675097 Anserini +test684 Q0 1735658 27 10.640022 Anserini +test684 Q0 11835407 28 10.622347 Anserini +test684 Q0 11835634 29 10.622347 Anserini +test684 Q0 7352190 30 10.608405 Anserini +test685 Q0 8376735 1 14.014034 Anserini +test685 Q0 10212683 2 13.737082 Anserini +test685 Q0 8376768 3 13.436988 Anserini +test685 Q0 18192192 4 13.332815 Anserini +test685 Q0 10212693 5 13.107969 Anserini +test685 Q0 8376754 6 13.002254 Anserini +test685 Q0 10212698 7 12.799705 Anserini +test685 Q0 10212704 8 12.774917 Anserini +test685 Q0 8376738 9 12.707789 Anserini +test685 Q0 18192195 10 12.559978 Anserini +test685 Q0 8376765 11 12.417486 Anserini +test685 Q0 10212700 12 12.378958 Anserini +test685 Q0 14674211 13 12.312723 Anserini +test685 Q0 8359746 14 12.301475 Anserini +test685 Q0 8376750 15 12.186197 Anserini +test685 Q0 15070922 16 12.120971 Anserini +test685 Q0 18192193 17 12.114183 Anserini +test685 Q0 9198593 18 12.107407 Anserini +test685 Q0 9198594 19 12.057918 Anserini +test685 Q0 12973938 20 12.025052 Anserini +test685 Q0 8376766 21 12.002012 Anserini +test685 Q0 13087637 22 11.969192 Anserini +test685 Q0 13087647 23 11.969192 Anserini +test685 Q0 10212682 24 11.941103 Anserini +test685 Q0 14674194 25 11.918583 Anserini +test685 Q0 14674214 26 11.918583 Anserini +test685 Q0 12973934 27 11.908725 Anserini +test685 Q0 12973948 28 11.904450 Anserini +test685 Q0 17009006 29 11.848991 Anserini +test685 Q0 16817467 30 11.812413 Anserini +test686 Q0 11288817 1 14.984916 Anserini +test686 Q0 6153570 2 14.824247 Anserini +test686 Q0 11791727 3 13.555479 Anserini +test686 Q0 4837579 4 13.426907 Anserini +test686 Q0 8668858 5 13.181667 Anserini +test686 Q0 9468990 6 13.119401 Anserini +test686 Q0 8998219 7 12.937018 Anserini +test686 Q0 20397909 8 12.838692 Anserini +test686 Q0 5720030 9 12.725191 Anserini +test686 Q0 12822533 10 12.617660 Anserini +test686 Q0 9013382 11 12.591259 Anserini +test686 Q0 8252380 12 12.479104 Anserini +test686 Q0 11639565 13 12.420076 Anserini +test686 Q0 10222836 14 12.400108 Anserini +test686 Q0 4838696 15 12.313903 Anserini +test686 Q0 14782346 16 12.289774 Anserini +test686 Q0 14234782 17 12.245716 Anserini +test686 Q0 93123 18 12.232080 Anserini +test686 Q0 7040483 19 12.229797 Anserini +test686 Q0 12898609 20 12.228491 Anserini +test686 Q0 9996032 21 12.150731 Anserini +test686 Q0 8740417 22 12.149193 Anserini +test686 Q0 18101585 23 12.148232 Anserini +test686 Q0 8932425 24 12.143501 Anserini +test686 Q0 16405713 25 12.018332 Anserini +test686 Q0 9468995 26 12.015062 Anserini +test686 Q0 8626823 27 11.993556 Anserini +test686 Q0 18790625 28 11.956505 Anserini +test686 Q0 15804036 29 11.926413 Anserini +test686 Q0 3797722 30 11.903962 Anserini +test687 Q0 13632924 1 11.130836 Anserini +test687 Q0 4164734 2 10.703508 Anserini +test687 Q0 682944 3 10.638613 Anserini +test687 Q0 991452 4 10.551371 Anserini +test687 Q0 17253998 5 10.442302 Anserini +test687 Q0 17254007 6 10.387093 Anserini +test687 Q0 966162 7 10.317352 Anserini +test687 Q0 966192 8 10.317352 Anserini +test687 Q0 991451 9 10.296701 Anserini +test687 Q0 990988 10 10.083401 Anserini +test687 Q0 993973 11 10.067267 Anserini +test687 Q0 18067664 12 10.038748 Anserini +test687 Q0 975737 13 9.929630 Anserini +test687 Q0 5286342 14 9.871909 Anserini +test687 Q0 990408 15 9.771324 Anserini +test687 Q0 5480395 16 9.742756 Anserini +test687 Q0 990978 17 9.737213 Anserini +test687 Q0 13632927 18 9.703610 Anserini +test687 Q0 4526749 19 9.638467 Anserini +test687 Q0 974105 20 9.582119 Anserini +test687 Q0 85775 21 9.535837 Anserini +test687 Q0 16442129 22 9.522563 Anserini +test687 Q0 3178225 23 9.502300 Anserini +test687 Q0 5480423 24 9.487198 Anserini +test687 Q0 15110 25 9.437557 Anserini +test687 Q0 3419472 26 9.358906 Anserini +test687 Q0 992383 27 9.258018 Anserini +test687 Q0 13598860 28 9.252089 Anserini +test687 Q0 682968 29 9.236743 Anserini +test687 Q0 682910 30 9.236743 Anserini +test688 Q0 3158039 1 12.711358 Anserini +test688 Q0 5460427 2 12.421659 Anserini +test688 Q0 8671462 3 12.212107 Anserini +test688 Q0 8671483 4 12.107383 Anserini +test688 Q0 13992168 5 11.973938 Anserini +test688 Q0 19735092 6 11.814028 Anserini +test688 Q0 9330711 7 11.798828 Anserini +test688 Q0 19036894 8 11.751447 Anserini +test688 Q0 8576199 9 11.744617 Anserini +test688 Q0 14428986 10 11.666216 Anserini +test688 Q0 3001976 11 11.636950 Anserini +test688 Q0 8470117 12 11.635553 Anserini +test688 Q0 5036907 13 11.277920 Anserini +test688 Q0 13337434 14 11.259922 Anserini +test688 Q0 1699272 15 11.235591 Anserini +test688 Q0 6397645 16 11.177287 Anserini +test688 Q0 13492170 17 11.147092 Anserini +test688 Q0 15790586 18 11.122006 Anserini +test688 Q0 3451959 19 11.072327 Anserini +test688 Q0 1418115 20 10.992184 Anserini +test688 Q0 8576194 21 10.989195 Anserini +test688 Q0 8671480 22 10.987314 Anserini +test688 Q0 18444254 23 10.987177 Anserini +test688 Q0 17660653 24 10.981606 Anserini +test688 Q0 4791899 25 10.967453 Anserini +test688 Q0 5460986 26 10.930656 Anserini +test688 Q0 18444257 27 10.930656 Anserini +test688 Q0 2686849 28 10.929406 Anserini +test688 Q0 11575267 29 10.929406 Anserini +test688 Q0 597373 30 10.919120 Anserini +test689 Q0 3066521 1 11.418421 Anserini +test689 Q0 12887710 2 11.115498 Anserini +test689 Q0 14556396 3 11.035966 Anserini +test689 Q0 636348 4 10.881600 Anserini +test689 Q0 12076276 5 10.858812 Anserini +test689 Q0 12076273 6 10.722044 Anserini +test689 Q0 15491645 7 10.469888 Anserini +test689 Q0 12076281 8 10.419151 Anserini +test689 Q0 10247122 9 10.312668 Anserini +test689 Q0 12076280 10 9.986172 Anserini +test689 Q0 8996898 11 9.975801 Anserini +test689 Q0 12076275 12 9.788222 Anserini +test689 Q0 14465022 13 9.726027 Anserini +test689 Q0 12076274 14 9.701687 Anserini +test689 Q0 6188986 15 9.662573 Anserini +test689 Q0 15512123 16 9.659832 Anserini +test689 Q0 7876076 17 9.651301 Anserini +test689 Q0 3066516 18 9.634488 Anserini +test689 Q0 9544382 19 9.537926 Anserini +test689 Q0 17843520 20 9.491738 Anserini +test689 Q0 15860542 21 9.461970 Anserini +test689 Q0 17606326 22 9.458170 Anserini +test689 Q0 12076278 23 9.457357 Anserini +test689 Q0 4166046 24 9.450937 Anserini +test689 Q0 5049922 25 9.412732 Anserini +test689 Q0 7075812 26 9.397007 Anserini +test689 Q0 9948189 27 9.396301 Anserini +test689 Q0 3964087 28 9.368823 Anserini +test689 Q0 12050340 29 9.354467 Anserini +test689 Q0 12887711 30 9.317402 Anserini +test69 Q0 13027635 1 17.180832 Anserini +test69 Q0 12424271 2 16.464170 Anserini +test69 Q0 7110562 3 16.220013 Anserini +test69 Q0 7110554 4 16.034653 Anserini +test69 Q0 4111363 5 15.093431 Anserini +test69 Q0 132480 6 15.045538 Anserini +test69 Q0 132502 7 15.045538 Anserini +test69 Q0 441146 8 15.043132 Anserini +test69 Q0 19980722 9 14.992308 Anserini +test69 Q0 3158376 10 14.959499 Anserini +test69 Q0 4661041 11 14.917505 Anserini +test69 Q0 374184 12 14.815583 Anserini +test69 Q0 119531 13 14.485122 Anserini +test69 Q0 198135 14 14.379747 Anserini +test69 Q0 361070 15 14.240046 Anserini +test69 Q0 185322 16 14.154356 Anserini +test69 Q0 1644501 17 14.098197 Anserini +test69 Q0 558082 18 13.976433 Anserini +test69 Q0 120933 19 13.951471 Anserini +test69 Q0 428986 20 13.631860 Anserini +test69 Q0 6236865 21 13.479385 Anserini +test69 Q0 11858191 22 13.447989 Anserini +test69 Q0 2938179 23 13.441238 Anserini +test69 Q0 169683 24 13.441238 Anserini +test69 Q0 1598959 25 13.315138 Anserini +test69 Q0 3653000 26 13.261435 Anserini +test69 Q0 185330 27 13.158562 Anserini +test69 Q0 12624804 28 13.127784 Anserini +test69 Q0 10437710 29 13.104290 Anserini +test69 Q0 6979307 30 13.097405 Anserini +test690 Q0 1522777 1 14.105659 Anserini +test690 Q0 1522772 2 13.861557 Anserini +test690 Q0 1522795 3 13.815642 Anserini +test690 Q0 17706649 4 13.814539 Anserini +test690 Q0 1522780 5 13.722900 Anserini +test690 Q0 1522740 6 13.611460 Anserini +test690 Q0 1522776 7 13.586008 Anserini +test690 Q0 1522764 8 13.490694 Anserini +test690 Q0 12364293 9 13.383121 Anserini +test690 Q0 1522767 10 13.309307 Anserini +test690 Q0 1522770 11 13.307460 Anserini +test690 Q0 19383774 12 13.128969 Anserini +test690 Q0 1522762 13 13.127033 Anserini +test690 Q0 1522766 14 13.067695 Anserini +test690 Q0 1522763 15 13.007737 Anserini +test690 Q0 1522739 16 12.952882 Anserini +test690 Q0 1522778 17 12.952882 Anserini +test690 Q0 2509267 18 12.745295 Anserini +test690 Q0 1522773 19 12.665188 Anserini +test690 Q0 4589687 20 12.586919 Anserini +test690 Q0 17127985 21 12.430908 Anserini +test690 Q0 20435901 22 12.266166 Anserini +test690 Q0 1522793 23 12.186132 Anserini +test690 Q0 17945230 24 12.122434 Anserini +test690 Q0 455766 25 12.094627 Anserini +test690 Q0 14079985 26 12.050375 Anserini +test690 Q0 14010504 27 12.020124 Anserini +test690 Q0 4589677 28 11.980289 Anserini +test690 Q0 14079989 29 11.980289 Anserini +test690 Q0 1522792 30 11.950024 Anserini +test691 Q0 5956095 1 21.585573 Anserini +test691 Q0 478861 2 21.296690 Anserini +test691 Q0 11862769 3 20.275036 Anserini +test691 Q0 16130973 4 20.053366 Anserini +test691 Q0 16130975 5 19.550001 Anserini +test691 Q0 11951678 6 19.440639 Anserini +test691 Q0 8452256 7 19.387648 Anserini +test691 Q0 478844 8 19.376068 Anserini +test691 Q0 478897 9 18.857054 Anserini +test691 Q0 478856 10 18.855682 Anserini +test691 Q0 6347267 11 18.677385 Anserini +test691 Q0 5962236 12 18.194212 Anserini +test691 Q0 8415074 13 18.096945 Anserini +test691 Q0 4852648 14 17.960594 Anserini +test691 Q0 5962234 15 17.943459 Anserini +test691 Q0 6347260 16 17.791624 Anserini +test691 Q0 12803700 17 17.743174 Anserini +test691 Q0 7291859 18 17.735342 Anserini +test691 Q0 10377017 19 17.720695 Anserini +test691 Q0 821302 20 17.671432 Anserini +test691 Q0 1746154 21 17.654434 Anserini +test691 Q0 3673339 22 17.610056 Anserini +test691 Q0 3913992 23 17.595123 Anserini +test691 Q0 3914005 24 17.595123 Anserini +test691 Q0 478862 25 17.563557 Anserini +test691 Q0 478869 26 17.463604 Anserini +test691 Q0 478900 27 17.422243 Anserini +test691 Q0 5358866 28 17.419250 Anserini +test691 Q0 4063988 29 17.347544 Anserini +test691 Q0 478902 30 17.325590 Anserini +test692 Q0 6527857 1 10.868817 Anserini +test692 Q0 6527858 2 10.694765 Anserini +test692 Q0 7801945 3 10.514286 Anserini +test692 Q0 7801946 4 10.514286 Anserini +test692 Q0 3941521 5 10.024366 Anserini +test692 Q0 20226386 6 10.013272 Anserini +test692 Q0 14562925 7 9.938867 Anserini +test692 Q0 12535471 8 9.841334 Anserini +test692 Q0 41873 9 9.788131 Anserini +test692 Q0 6527862 10 9.762778 Anserini +test692 Q0 18313476 11 9.690109 Anserini +test692 Q0 203367 12 9.628862 Anserini +test692 Q0 18548554 13 9.543769 Anserini +test692 Q0 6527863 14 9.479002 Anserini +test692 Q0 18085144 15 9.451156 Anserini +test692 Q0 18856252 16 9.444023 Anserini +test692 Q0 6527847 17 9.430636 Anserini +test692 Q0 18548553 18 9.412306 Anserini +test692 Q0 6527848 19 9.376445 Anserini +test692 Q0 9814927 20 9.369685 Anserini +test692 Q0 18856251 21 9.345614 Anserini +test692 Q0 12604252 22 9.164316 Anserini +test692 Q0 13700648 23 9.100260 Anserini +test692 Q0 8076564 24 9.047204 Anserini +test692 Q0 6327845 25 9.028158 Anserini +test692 Q0 10028814 26 8.973057 Anserini +test692 Q0 19312543 27 8.928142 Anserini +test692 Q0 13373390 28 8.782924 Anserini +test692 Q0 8600639 29 8.771315 Anserini +test692 Q0 9992184 30 8.751015 Anserini +test693 Q0 12168450 1 12.716744 Anserini +test693 Q0 12168454 2 12.641877 Anserini +test693 Q0 11200535 3 12.356608 Anserini +test693 Q0 15154051 4 12.152871 Anserini +test693 Q0 19746438 5 12.070103 Anserini +test693 Q0 19095100 6 12.030721 Anserini +test693 Q0 19746432 7 12.005816 Anserini +test693 Q0 11217273 8 11.879966 Anserini +test693 Q0 12775950 9 11.870455 Anserini +test693 Q0 14118063 10 11.802219 Anserini +test693 Q0 14118069 11 11.802219 Anserini +test693 Q0 13997081 12 11.755117 Anserini +test693 Q0 8853789 13 11.692083 Anserini +test693 Q0 13996877 14 11.690063 Anserini +test693 Q0 13996878 15 11.690063 Anserini +test693 Q0 15154055 16 11.584496 Anserini +test693 Q0 13997082 17 11.545402 Anserini +test693 Q0 2359998 18 11.162619 Anserini +test693 Q0 4040143 19 11.162619 Anserini +test693 Q0 16580315 20 10.980012 Anserini +test693 Q0 13869654 21 10.899045 Anserini +test693 Q0 5167946 22 10.819296 Anserini +test693 Q0 11217277 23 10.715249 Anserini +test693 Q0 4475324 24 10.708022 Anserini +test693 Q0 8853785 25 10.572906 Anserini +test693 Q0 4983594 26 10.525662 Anserini +test693 Q0 20950924 27 10.469181 Anserini +test693 Q0 19746434 28 10.439729 Anserini +test693 Q0 12726541 29 10.425460 Anserini +test693 Q0 16205564 30 10.379669 Anserini +test694 Q0 13558398 1 16.165346 Anserini +test694 Q0 666777 2 15.512264 Anserini +test694 Q0 7709309 3 15.467852 Anserini +test694 Q0 7660916 4 15.324549 Anserini +test694 Q0 315314 5 14.833605 Anserini +test694 Q0 13558401 6 14.618074 Anserini +test694 Q0 13558407 7 14.598776 Anserini +test694 Q0 12449594 8 14.414394 Anserini +test694 Q0 11934187 9 14.410436 Anserini +test694 Q0 4216957 10 14.325382 Anserini +test694 Q0 201500 11 14.267468 Anserini +test694 Q0 9448960 12 14.225880 Anserini +test694 Q0 9448966 13 14.225880 Anserini +test694 Q0 4248458 14 14.131199 Anserini +test694 Q0 636266 15 14.028449 Anserini +test694 Q0 1464640 16 14.019350 Anserini +test694 Q0 13693841 17 13.921939 Anserini +test694 Q0 4216996 18 13.882514 Anserini +test694 Q0 19737651 19 13.763421 Anserini +test694 Q0 4217003 20 13.686079 Anserini +test694 Q0 1464638 21 13.630861 Anserini +test694 Q0 4217001 22 13.435543 Anserini +test694 Q0 4332194 23 13.416982 Anserini +test694 Q0 1464646 24 13.285591 Anserini +test694 Q0 8792092 25 13.235009 Anserini +test694 Q0 14478856 26 13.234154 Anserini +test694 Q0 6250997 27 13.186158 Anserini +test694 Q0 7660922 28 13.175884 Anserini +test694 Q0 103008 29 13.144244 Anserini +test694 Q0 103037 30 13.144244 Anserini +test695 Q0 14900820 1 13.264557 Anserini +test695 Q0 13356613 2 13.119093 Anserini +test695 Q0 20186497 3 12.866772 Anserini +test695 Q0 13268331 4 12.849556 Anserini +test695 Q0 14890179 5 12.304049 Anserini +test695 Q0 9101598 6 12.295376 Anserini +test695 Q0 14888099 7 12.203042 Anserini +test695 Q0 8665798 8 11.869432 Anserini +test695 Q0 5056133 9 11.832062 Anserini +test695 Q0 11792456 10 11.827071 Anserini +test695 Q0 16188461 11 11.784504 Anserini +test695 Q0 14531414 12 11.775043 Anserini +test695 Q0 1949284 13 11.703940 Anserini +test695 Q0 20820566 14 11.577600 Anserini +test695 Q0 18978571 15 11.542216 Anserini +test695 Q0 10554031 16 11.533452 Anserini +test695 Q0 13069702 17 11.495710 Anserini +test695 Q0 9460627 18 11.360185 Anserini +test695 Q0 8280557 19 11.353954 Anserini +test695 Q0 8297630 20 11.343847 Anserini +test695 Q0 11588844 21 11.341887 Anserini +test695 Q0 3014244 22 11.286760 Anserini +test695 Q0 6829725 23 11.270316 Anserini +test695 Q0 19368040 24 11.253824 Anserini +test695 Q0 20915451 25 11.159554 Anserini +test695 Q0 6054044 26 11.145372 Anserini +test695 Q0 12880646 27 11.071060 Anserini +test695 Q0 19368036 28 11.016884 Anserini +test695 Q0 14989519 29 11.012078 Anserini +test695 Q0 7845634 30 10.963112 Anserini +test696 Q0 14548369 1 16.242325 Anserini +test696 Q0 14548395 2 15.725871 Anserini +test696 Q0 3134784 3 15.598555 Anserini +test696 Q0 16563595 4 15.517773 Anserini +test696 Q0 18255249 5 15.475435 Anserini +test696 Q0 18255217 6 15.282116 Anserini +test696 Q0 16563625 7 15.184147 Anserini +test696 Q0 14548388 8 15.147721 Anserini +test696 Q0 7204775 9 15.146824 Anserini +test696 Q0 13813698 10 14.877476 Anserini +test696 Q0 16563613 11 14.774347 Anserini +test696 Q0 13813682 12 14.774347 Anserini +test696 Q0 14548389 13 14.684926 Anserini +test696 Q0 13813716 14 14.592550 Anserini +test696 Q0 14548370 15 14.511224 Anserini +test696 Q0 14548390 16 14.500612 Anserini +test696 Q0 16756804 17 14.484744 Anserini +test696 Q0 15070314 18 14.483439 Anserini +test696 Q0 14548392 19 14.463629 Anserini +test696 Q0 14548381 20 14.413975 Anserini +test696 Q0 16563605 21 14.403792 Anserini +test696 Q0 8074380 22 14.371298 Anserini +test696 Q0 10517520 23 14.248595 Anserini +test696 Q0 16563604 24 14.230268 Anserini +test696 Q0 14548391 25 14.186041 Anserini +test696 Q0 14548382 26 14.175508 Anserini +test696 Q0 18255231 27 14.135798 Anserini +test696 Q0 12258571 28 14.103418 Anserini +test696 Q0 15070315 29 14.006044 Anserini +test696 Q0 12677652 30 13.989109 Anserini +test697 Q0 4455267 1 19.866095 Anserini +test697 Q0 4455264 2 18.525749 Anserini +test697 Q0 3760345 3 17.939503 Anserini +test697 Q0 4455242 4 17.601181 Anserini +test697 Q0 378886 5 17.265903 Anserini +test697 Q0 1760794 6 16.864679 Anserini +test697 Q0 4455248 7 16.726084 Anserini +test697 Q0 16961419 8 16.695030 Anserini +test697 Q0 996238 9 16.591766 Anserini +test697 Q0 3760344 10 16.330545 Anserini +test697 Q0 5109008 11 16.301046 Anserini +test697 Q0 4697495 12 16.106209 Anserini +test697 Q0 378887 13 16.005625 Anserini +test697 Q0 284281 14 15.923298 Anserini +test697 Q0 5109004 15 15.810369 Anserini +test697 Q0 6996020 16 15.664728 Anserini +test697 Q0 5108759 17 15.519673 Anserini +test697 Q0 12531139 18 15.501287 Anserini +test697 Q0 4603123 19 15.458165 Anserini +test697 Q0 4455241 20 15.348418 Anserini +test697 Q0 4455261 21 15.298442 Anserini +test697 Q0 475240 22 15.240915 Anserini +test697 Q0 19274403 23 15.131667 Anserini +test697 Q0 14565 24 15.118547 Anserini +test697 Q0 5109010 25 15.089800 Anserini +test697 Q0 3718744 26 15.023626 Anserini +test697 Q0 20599532 27 15.010523 Anserini +test697 Q0 16472162 28 14.908545 Anserini +test697 Q0 1507462 29 14.852758 Anserini +test697 Q0 12531141 30 14.799678 Anserini +test698 Q0 9716266 1 15.293583 Anserini +test698 Q0 9716269 2 13.643469 Anserini +test698 Q0 20215948 3 13.544809 Anserini +test698 Q0 9716212 4 13.379670 Anserini +test698 Q0 8443105 5 13.346725 Anserini +test698 Q0 10974115 6 13.262347 Anserini +test698 Q0 9716221 7 13.248951 Anserini +test698 Q0 9716261 8 13.232961 Anserini +test698 Q0 4290303 9 13.101293 Anserini +test698 Q0 9716208 10 13.094724 Anserini +test698 Q0 12605589 11 12.971791 Anserini +test698 Q0 281010 12 12.968692 Anserini +test698 Q0 9716215 13 12.960798 Anserini +test698 Q0 16615252 14 12.890482 Anserini +test698 Q0 9735667 15 12.865366 Anserini +test698 Q0 270330 16 12.822922 Anserini +test698 Q0 5817511 17 12.658154 Anserini +test698 Q0 2813132 18 12.644220 Anserini +test698 Q0 9716214 19 12.643202 Anserini +test698 Q0 10269084 20 12.640270 Anserini +test698 Q0 3113540 21 12.610332 Anserini +test698 Q0 16615271 22 12.588526 Anserini +test698 Q0 9716216 23 12.557982 Anserini +test698 Q0 270352 24 12.557871 Anserini +test698 Q0 12699925 25 12.518932 Anserini +test698 Q0 270340 26 12.516833 Anserini +test698 Q0 5817505 27 12.466655 Anserini +test698 Q0 833247 28 12.361282 Anserini +test698 Q0 6584050 29 12.343475 Anserini +test698 Q0 9716262 30 12.325139 Anserini +test699 Q0 2917956 1 13.379816 Anserini +test699 Q0 455114 2 13.317017 Anserini +test699 Q0 8444665 3 12.986626 Anserini +test699 Q0 8444664 4 12.392658 Anserini +test699 Q0 8444669 5 12.385167 Anserini +test699 Q0 3297395 6 12.227212 Anserini +test699 Q0 8444666 7 12.212175 Anserini +test699 Q0 3297402 8 11.987786 Anserini +test699 Q0 7613607 9 11.975121 Anserini +test699 Q0 3297404 10 11.886265 Anserini +test699 Q0 9222391 11 11.882987 Anserini +test699 Q0 7685868 12 11.356442 Anserini +test699 Q0 8881347 13 11.278518 Anserini +test699 Q0 8881348 14 11.278518 Anserini +test699 Q0 455106 15 11.217495 Anserini +test699 Q0 7685666 16 11.203659 Anserini +test699 Q0 7686090 17 11.191038 Anserini +test699 Q0 8444668 18 11.185950 Anserini +test699 Q0 7685866 19 11.166985 Anserini +test699 Q0 1974132 20 11.143708 Anserini +test699 Q0 9222392 21 11.130212 Anserini +test699 Q0 2250255 22 11.116592 Anserini +test699 Q0 7613608 23 11.082769 Anserini +test699 Q0 7685665 24 10.952208 Anserini +test699 Q0 5172061 25 10.882432 Anserini +test699 Q0 10854470 26 10.850814 Anserini +test699 Q0 20155434 27 10.711124 Anserini +test699 Q0 4670338 28 10.702609 Anserini +test699 Q0 12650467 29 10.701235 Anserini +test699 Q0 18632112 30 10.579654 Anserini +test7 Q0 17715717 1 13.113192 Anserini +test7 Q0 14350391 2 10.701564 Anserini +test7 Q0 18507222 3 10.671587 Anserini +test7 Q0 12509790 4 10.447929 Anserini +test7 Q0 17726657 5 10.427301 Anserini +test7 Q0 17724796 6 10.355191 Anserini +test7 Q0 989431 7 10.352520 Anserini +test7 Q0 5119363 8 10.137860 Anserini +test7 Q0 15628925 9 10.111565 Anserini +test7 Q0 18900947 10 10.070229 Anserini +test7 Q0 17715708 11 10.059258 Anserini +test7 Q0 20317388 12 10.039811 Anserini +test7 Q0 7606372 13 9.844192 Anserini +test7 Q0 578263 14 9.842271 Anserini +test7 Q0 12265137 15 9.827618 Anserini +test7 Q0 3301505 16 9.764476 Anserini +test7 Q0 6834375 17 9.740561 Anserini +test7 Q0 8794134 18 9.738550 Anserini +test7 Q0 15616493 19 9.724628 Anserini +test7 Q0 16665941 20 9.704008 Anserini +test7 Q0 827215 21 9.701100 Anserini +test7 Q0 8944765 22 9.680426 Anserini +test7 Q0 2242754 23 9.630515 Anserini +test7 Q0 12698513 24 9.622816 Anserini +test7 Q0 17722363 25 9.616044 Anserini +test7 Q0 12698508 26 9.606104 Anserini +test7 Q0 18871097 27 9.557945 Anserini +test7 Q0 18507224 28 9.503764 Anserini +test7 Q0 5205010 29 9.450740 Anserini +test7 Q0 17715249 30 9.413999 Anserini +test70 Q0 2598764 1 11.856977 Anserini +test70 Q0 2598749 2 11.806683 Anserini +test70 Q0 2598763 3 11.684486 Anserini +test70 Q0 2598755 4 11.661856 Anserini +test70 Q0 2598766 5 11.539543 Anserini +test70 Q0 2598746 6 11.467822 Anserini +test70 Q0 2598762 7 11.444547 Anserini +test70 Q0 19302771 8 11.433424 Anserini +test70 Q0 2598745 9 11.390821 Anserini +test70 Q0 2598744 10 11.308023 Anserini +test70 Q0 2598770 11 11.229715 Anserini +test70 Q0 2598750 12 10.989567 Anserini +test70 Q0 2598769 13 10.877040 Anserini +test70 Q0 2598752 14 10.743841 Anserini +test70 Q0 2598753 15 10.743841 Anserini +test70 Q0 2598765 16 10.743841 Anserini +test70 Q0 2598757 17 10.640043 Anserini +test70 Q0 2598756 18 10.571699 Anserini +test70 Q0 18047803 19 10.509388 Anserini +test70 Q0 2598751 20 10.362051 Anserini +test70 Q0 19741678 21 10.228909 Anserini +test70 Q0 18979688 22 10.228909 Anserini +test70 Q0 2598754 23 10.176177 Anserini +test70 Q0 2598767 24 10.176177 Anserini +test70 Q0 1911615 25 10.123987 Anserini +test70 Q0 14372263 26 10.123987 Anserini +test70 Q0 18788192 27 10.071793 Anserini +test70 Q0 7666476 28 9.967510 Anserini +test70 Q0 2598748 29 9.960180 Anserini +test70 Q0 7666466 30 9.918043 Anserini +test700 Q0 4266936 1 14.946747 Anserini +test700 Q0 4266981 2 14.882511 Anserini +test700 Q0 1273218 3 13.358055 Anserini +test700 Q0 4927734 4 13.284965 Anserini +test700 Q0 1273219 5 13.264772 Anserini +test700 Q0 19642743 6 13.114481 Anserini +test700 Q0 14548616 7 13.081846 Anserini +test700 Q0 7211566 8 12.974788 Anserini +test700 Q0 1273220 9 12.684851 Anserini +test700 Q0 3408889 10 12.599035 Anserini +test700 Q0 14443561 11 12.414698 Anserini +test700 Q0 15943158 12 12.364418 Anserini +test700 Q0 9611191 13 12.360920 Anserini +test700 Q0 4267325 14 12.360920 Anserini +test700 Q0 3547948 15 12.213236 Anserini +test700 Q0 7110805 16 12.193830 Anserini +test700 Q0 13752937 17 12.193830 Anserini +test700 Q0 10705114 18 12.156012 Anserini +test700 Q0 5349871 19 12.102528 Anserini +test700 Q0 3547952 20 11.694166 Anserini +test700 Q0 16237629 21 11.557884 Anserini +test700 Q0 3547959 22 11.526924 Anserini +test700 Q0 4267249 23 11.523069 Anserini +test700 Q0 13580858 24 11.523069 Anserini +test700 Q0 13752938 25 11.523069 Anserini +test700 Q0 13976852 26 11.359688 Anserini +test700 Q0 10207630 27 11.338509 Anserini +test700 Q0 19029170 28 11.338509 Anserini +test700 Q0 9128162 29 11.321755 Anserini +test700 Q0 20895765 30 11.318500 Anserini +test701 Q0 1580933 1 21.688345 Anserini +test701 Q0 8565150 2 18.801439 Anserini +test701 Q0 1580917 3 18.131678 Anserini +test701 Q0 224585 4 17.581697 Anserini +test701 Q0 1580929 5 17.010071 Anserini +test701 Q0 224605 6 16.999701 Anserini +test701 Q0 1580918 7 16.896074 Anserini +test701 Q0 1580920 8 16.682375 Anserini +test701 Q0 224600 9 16.480095 Anserini +test701 Q0 6401780 10 16.292849 Anserini +test701 Q0 12227896 11 16.210354 Anserini +test701 Q0 4915333 12 15.663698 Anserini +test701 Q0 11483029 13 15.538872 Anserini +test701 Q0 15312773 14 15.330158 Anserini +test701 Q0 1580930 15 15.166206 Anserini +test701 Q0 1580932 16 15.157098 Anserini +test701 Q0 224607 17 15.141371 Anserini +test701 Q0 1580935 18 15.087292 Anserini +test701 Q0 8565151 19 15.048979 Anserini +test701 Q0 15240875 20 15.013983 Anserini +test701 Q0 233321 21 14.856900 Anserini +test701 Q0 7658667 22 14.744572 Anserini +test701 Q0 7985865 23 14.601223 Anserini +test701 Q0 14122596 24 14.575930 Anserini +test701 Q0 19100228 25 14.549492 Anserini +test701 Q0 1795439 26 14.545166 Anserini +test701 Q0 11260210 27 14.492207 Anserini +test701 Q0 1795451 28 14.442305 Anserini +test701 Q0 1580923 29 14.352377 Anserini +test701 Q0 6913991 30 14.269434 Anserini +test702 Q0 1851880 1 23.220510 Anserini +test702 Q0 3312626 2 22.630133 Anserini +test702 Q0 195801 3 22.607773 Anserini +test702 Q0 1851873 4 22.244503 Anserini +test702 Q0 1851877 5 21.468819 Anserini +test702 Q0 1851878 6 20.392294 Anserini +test702 Q0 1851882 7 19.549065 Anserini +test702 Q0 11086463 8 19.465467 Anserini +test702 Q0 1851872 9 18.489586 Anserini +test702 Q0 1851881 10 18.362148 Anserini +test702 Q0 15451475 11 17.940308 Anserini +test702 Q0 669844 12 17.909405 Anserini +test702 Q0 9154395 13 17.492424 Anserini +test702 Q0 9154394 14 17.230867 Anserini +test702 Q0 1851876 15 16.948214 Anserini +test702 Q0 1851879 16 16.292969 Anserini +test702 Q0 4747212 17 16.113956 Anserini +test702 Q0 8059066 18 15.784510 Anserini +test702 Q0 332078 19 15.784510 Anserini +test702 Q0 11086462 20 15.774834 Anserini +test702 Q0 8059068 21 15.639373 Anserini +test702 Q0 2646751 22 15.592397 Anserini +test702 Q0 1851874 23 14.986822 Anserini +test702 Q0 2850126 24 14.276872 Anserini +test702 Q0 9015491 25 14.231359 Anserini +test702 Q0 2646752 26 13.994439 Anserini +test702 Q0 195797 27 13.897062 Anserini +test702 Q0 4747206 28 13.742546 Anserini +test702 Q0 9447405 29 13.711233 Anserini +test702 Q0 3390855 30 13.641239 Anserini +test703 Q0 16296230 1 11.365726 Anserini +test703 Q0 672563 2 11.316455 Anserini +test703 Q0 7421484 3 11.292928 Anserini +test703 Q0 6370667 4 11.273373 Anserini +test703 Q0 7957842 5 11.245193 Anserini +test703 Q0 10531178 6 11.243135 Anserini +test703 Q0 7912196 7 10.861271 Anserini +test703 Q0 11705476 8 10.838933 Anserini +test703 Q0 12365661 9 10.823455 Anserini +test703 Q0 12102914 10 10.720895 Anserini +test703 Q0 1315699 11 10.612482 Anserini +test703 Q0 5463375 12 10.594983 Anserini +test703 Q0 7989333 13 10.576021 Anserini +test703 Q0 4964286 14 10.567007 Anserini +test703 Q0 2461871 15 10.559501 Anserini +test703 Q0 7312265 16 10.546273 Anserini +test703 Q0 18563536 17 10.533448 Anserini +test703 Q0 5150985 18 10.529040 Anserini +test703 Q0 5963630 19 10.451509 Anserini +test703 Q0 7989327 20 10.442298 Anserini +test703 Q0 5704401 21 10.437944 Anserini +test703 Q0 6893354 22 10.348232 Anserini +test703 Q0 12560542 23 10.216446 Anserini +test703 Q0 6176877 24 10.199072 Anserini +test703 Q0 18487387 25 10.191381 Anserini +test703 Q0 6176878 26 10.189086 Anserini +test703 Q0 17474749 27 10.174352 Anserini +test703 Q0 20910509 28 10.153638 Anserini +test703 Q0 7876401 29 10.149599 Anserini +test703 Q0 20842609 30 10.123352 Anserini +test704 Q0 501027 1 14.750544 Anserini +test704 Q0 4008163 2 13.312437 Anserini +test704 Q0 1985925 3 13.097009 Anserini +test704 Q0 333654 4 12.703012 Anserini +test704 Q0 9512210 5 12.549296 Anserini +test704 Q0 6405083 6 12.497953 Anserini +test704 Q0 2453785 7 12.447676 Anserini +test704 Q0 2819130 8 12.167160 Anserini +test704 Q0 1985926 9 12.080563 Anserini +test704 Q0 195946 10 12.044527 Anserini +test704 Q0 2952023 11 11.929173 Anserini +test704 Q0 501037 12 11.658389 Anserini +test704 Q0 11808296 13 11.598850 Anserini +test704 Q0 4063018 14 11.440998 Anserini +test704 Q0 6405079 15 11.436324 Anserini +test704 Q0 999929 16 11.400336 Anserini +test704 Q0 5145967 17 11.199090 Anserini +test704 Q0 16103687 18 11.135159 Anserini +test704 Q0 16171721 19 11.130920 Anserini +test704 Q0 12533436 20 11.065315 Anserini +test704 Q0 4008140 21 10.925928 Anserini +test704 Q0 10217033 22 10.797070 Anserini +test704 Q0 6566022 23 10.761992 Anserini +test704 Q0 98880 24 10.731791 Anserini +test704 Q0 10369512 25 10.727295 Anserini +test704 Q0 6405078 26 10.674362 Anserini +test704 Q0 333653 27 10.594906 Anserini +test704 Q0 4063015 28 10.537642 Anserini +test704 Q0 369880 29 10.530533 Anserini +test704 Q0 10369497 30 10.500442 Anserini +test705 Q0 3686046 1 14.575139 Anserini +test705 Q0 6699232 2 14.541363 Anserini +test705 Q0 2141455 3 14.204470 Anserini +test705 Q0 2141488 4 14.126914 Anserini +test705 Q0 2141458 5 13.486692 Anserini +test705 Q0 6699278 6 13.439207 Anserini +test705 Q0 6699313 7 13.223461 Anserini +test705 Q0 6699289 8 13.117377 Anserini +test705 Q0 6699234 9 12.822509 Anserini +test705 Q0 6699253 10 12.475909 Anserini +test705 Q0 6699235 11 12.399025 Anserini +test705 Q0 6699285 12 12.348203 Anserini +test705 Q0 2141456 13 12.347309 Anserini +test705 Q0 20236947 14 12.261086 Anserini +test705 Q0 6699302 15 12.238989 Anserini +test705 Q0 6699284 16 12.227577 Anserini +test705 Q0 2141459 17 12.185549 Anserini +test705 Q0 2141462 18 12.101185 Anserini +test705 Q0 6699290 19 11.907104 Anserini +test705 Q0 6699303 20 11.904673 Anserini +test705 Q0 6699281 21 11.883745 Anserini +test705 Q0 2141463 22 11.857735 Anserini +test705 Q0 6699287 23 11.854821 Anserini +test705 Q0 2141464 24 11.719692 Anserini +test705 Q0 6699270 25 11.525849 Anserini +test705 Q0 16321932 26 11.415186 Anserini +test705 Q0 2141484 27 11.388191 Anserini +test705 Q0 6699271 28 11.385005 Anserini +test705 Q0 12366477 29 11.364993 Anserini +test705 Q0 2141481 30 11.356340 Anserini +test706 Q0 5188925 1 13.831738 Anserini +test706 Q0 14219310 2 12.860766 Anserini +test706 Q0 15717326 3 12.353293 Anserini +test706 Q0 14219329 4 12.100301 Anserini +test706 Q0 14219338 5 11.921439 Anserini +test706 Q0 7248071 6 11.733582 Anserini +test706 Q0 6035022 7 11.705335 Anserini +test706 Q0 18036720 8 11.643623 Anserini +test706 Q0 1900176 9 11.643623 Anserini +test706 Q0 2072092 10 11.570608 Anserini +test706 Q0 1806214 11 11.543316 Anserini +test706 Q0 16627285 12 11.539982 Anserini +test706 Q0 1090136 13 11.348266 Anserini +test706 Q0 6044371 14 11.300999 Anserini +test706 Q0 434476 15 11.251511 Anserini +test706 Q0 1900170 16 11.107800 Anserini +test706 Q0 17580801 17 11.071426 Anserini +test706 Q0 2699594 18 11.005424 Anserini +test706 Q0 1806228 19 11.004808 Anserini +test706 Q0 13361366 20 11.004808 Anserini +test706 Q0 9798 21 10.973296 Anserini +test706 Q0 16628153 22 10.943747 Anserini +test706 Q0 16233614 23 10.923132 Anserini +test706 Q0 14219326 24 10.903773 Anserini +test706 Q0 6053761 25 10.857393 Anserini +test706 Q0 6030861 26 10.842329 Anserini +test706 Q0 2699588 27 10.835822 Anserini +test706 Q0 2699559 28 10.750968 Anserini +test706 Q0 19188699 29 10.707349 Anserini +test706 Q0 2459944 30 10.676962 Anserini +test707 Q0 8614536 1 14.652987 Anserini +test707 Q0 18777285 2 13.832521 Anserini +test707 Q0 10788783 3 13.450880 Anserini +test707 Q0 20170377 4 13.370090 Anserini +test707 Q0 9263378 5 13.249411 Anserini +test707 Q0 20080703 6 13.112510 Anserini +test707 Q0 12027442 7 12.867603 Anserini +test707 Q0 9263369 8 12.647304 Anserini +test707 Q0 19155899 9 12.607199 Anserini +test707 Q0 3505430 10 12.542282 Anserini +test707 Q0 9542784 11 12.496094 Anserini +test707 Q0 16627062 12 12.441298 Anserini +test707 Q0 8615825 13 12.415471 Anserini +test707 Q0 8615822 14 12.415471 Anserini +test707 Q0 1052687 15 12.341425 Anserini +test707 Q0 7107009 16 12.171352 Anserini +test707 Q0 1052662 17 12.088539 Anserini +test707 Q0 12027389 18 12.006418 Anserini +test707 Q0 1052580 19 11.974152 Anserini +test707 Q0 6475563 20 11.969244 Anserini +test707 Q0 8664833 21 11.954775 Anserini +test707 Q0 17602302 22 11.905115 Anserini +test707 Q0 2707783 23 11.894118 Anserini +test707 Q0 19872513 24 11.858367 Anserini +test707 Q0 9263376 25 11.842001 Anserini +test707 Q0 1052642 26 11.831307 Anserini +test707 Q0 8614533 27 11.817404 Anserini +test707 Q0 5495142 28 11.751214 Anserini +test707 Q0 15921848 29 11.705325 Anserini +test707 Q0 7147456 30 11.683392 Anserini +test708 Q0 12845669 1 16.723648 Anserini +test708 Q0 12845717 2 16.350161 Anserini +test708 Q0 10182856 3 15.905067 Anserini +test708 Q0 14819862 4 15.716508 Anserini +test708 Q0 20190320 5 15.449292 Anserini +test708 Q0 12845715 6 15.411686 Anserini +test708 Q0 9871148 7 15.035077 Anserini +test708 Q0 8289533 8 14.868170 Anserini +test708 Q0 14429501 9 14.852466 Anserini +test708 Q0 83725 10 14.834858 Anserini +test708 Q0 9871147 11 14.811331 Anserini +test708 Q0 19692895 12 14.766703 Anserini +test708 Q0 12845701 13 14.545120 Anserini +test708 Q0 802731 14 14.470901 Anserini +test708 Q0 12845711 15 14.443253 Anserini +test708 Q0 12845673 16 14.421503 Anserini +test708 Q0 6569372 17 14.090473 Anserini +test708 Q0 12845692 18 14.061366 Anserini +test708 Q0 20190317 19 14.054705 Anserini +test708 Q0 12845699 20 14.039535 Anserini +test708 Q0 10433195 21 14.000628 Anserini +test708 Q0 19522664 22 13.985953 Anserini +test708 Q0 20190314 23 13.985873 Anserini +test708 Q0 14654032 24 13.985873 Anserini +test708 Q0 15727487 25 13.761477 Anserini +test708 Q0 6921429 26 13.705534 Anserini +test708 Q0 12845680 27 13.681751 Anserini +test708 Q0 7924092 28 13.658426 Anserini +test708 Q0 802790 29 13.637615 Anserini +test708 Q0 4350061 30 13.628755 Anserini +test709 Q0 4041416 1 10.601668 Anserini +test709 Q0 17076054 2 10.047938 Anserini +test709 Q0 12377958 3 9.918344 Anserini +test709 Q0 3510379 4 9.898853 Anserini +test709 Q0 257108 5 9.871316 Anserini +test709 Q0 242478 6 9.753308 Anserini +test709 Q0 417576 7 9.613961 Anserini +test709 Q0 42957 8 9.552439 Anserini +test709 Q0 10834415 9 9.534072 Anserini +test709 Q0 14819748 10 9.484995 Anserini +test709 Q0 256184 11 9.453883 Anserini +test709 Q0 256180 12 9.434255 Anserini +test709 Q0 12679136 13 9.417112 Anserini +test709 Q0 111706 14 9.398214 Anserini +test709 Q0 17856051 15 9.267220 Anserini +test709 Q0 1912648 16 9.218344 Anserini +test709 Q0 12773866 17 9.202090 Anserini +test709 Q0 19357321 18 9.191864 Anserini +test709 Q0 14327588 19 9.162342 Anserini +test709 Q0 13476105 20 9.078714 Anserini +test709 Q0 15564571 21 9.054858 Anserini +test709 Q0 19436020 22 9.048241 Anserini +test709 Q0 13666455 23 9.045238 Anserini +test709 Q0 9917655 24 9.021154 Anserini +test709 Q0 2533717 25 9.018118 Anserini +test709 Q0 18811645 26 8.978124 Anserini +test709 Q0 5428700 27 8.958148 Anserini +test709 Q0 13415194 28 8.924702 Anserini +test709 Q0 6707888 29 8.915785 Anserini +test709 Q0 19454912 30 8.903179 Anserini +test71 Q0 4325608 1 23.435125 Anserini +test71 Q0 4325612 2 23.279560 Anserini +test71 Q0 716227 3 22.997025 Anserini +test71 Q0 4298133 4 21.771793 Anserini +test71 Q0 1423101 5 21.170464 Anserini +test71 Q0 716220 6 20.043737 Anserini +test71 Q0 716228 7 19.124939 Anserini +test71 Q0 19510871 8 17.813385 Anserini +test71 Q0 9530042 9 17.727678 Anserini +test71 Q0 2838487 10 17.617121 Anserini +test71 Q0 13789849 11 17.579521 Anserini +test71 Q0 6860553 12 17.310837 Anserini +test71 Q0 4325609 13 17.298958 Anserini +test71 Q0 12183444 14 17.287668 Anserini +test71 Q0 12183445 15 17.121298 Anserini +test71 Q0 13789847 16 16.841412 Anserini +test71 Q0 4564908 17 16.821196 Anserini +test71 Q0 716235 18 16.697824 Anserini +test71 Q0 10655544 19 16.641972 Anserini +test71 Q0 14885352 20 16.476919 Anserini +test71 Q0 1412784 21 16.092152 Anserini +test71 Q0 3470106 22 15.758099 Anserini +test71 Q0 3255341 23 15.741122 Anserini +test71 Q0 3991544 24 15.698143 Anserini +test71 Q0 15420273 25 15.600405 Anserini +test71 Q0 6779663 26 15.583446 Anserini +test71 Q0 4563049 27 15.503220 Anserini +test71 Q0 1672788 28 15.448649 Anserini +test71 Q0 1300275 29 15.379435 Anserini +test71 Q0 15066091 30 15.149824 Anserini +test710 Q0 17790500 1 14.150951 Anserini +test710 Q0 1242794 2 13.913187 Anserini +test710 Q0 18581382 3 13.309055 Anserini +test710 Q0 14914709 4 13.008353 Anserini +test710 Q0 1946365 5 12.553916 Anserini +test710 Q0 911055 6 12.541870 Anserini +test710 Q0 683590 7 12.201396 Anserini +test710 Q0 18581380 8 12.080026 Anserini +test710 Q0 7183433 9 12.053986 Anserini +test710 Q0 14914707 10 11.948183 Anserini +test710 Q0 1263579 11 11.931359 Anserini +test710 Q0 11812779 12 11.838164 Anserini +test710 Q0 15805372 13 11.705587 Anserini +test710 Q0 17562239 14 11.587997 Anserini +test710 Q0 481261 15 11.563109 Anserini +test710 Q0 481245 16 11.563109 Anserini +test710 Q0 10452460 17 11.536499 Anserini +test710 Q0 2038868 18 11.504088 Anserini +test710 Q0 8795524 19 11.468040 Anserini +test710 Q0 3705444 20 11.420683 Anserini +test710 Q0 18185817 21 11.337994 Anserini +test710 Q0 18185820 22 11.326778 Anserini +test710 Q0 2038865 23 11.319425 Anserini +test710 Q0 10267072 24 11.306481 Anserini +test710 Q0 6153311 25 11.302473 Anserini +test710 Q0 630979 26 11.241533 Anserini +test710 Q0 11194133 27 11.237385 Anserini +test710 Q0 1934280 28 11.231072 Anserini +test710 Q0 683591 29 11.199983 Anserini +test710 Q0 11768142 30 11.148081 Anserini +test711 Q0 1627399 1 20.868414 Anserini +test711 Q0 4476116 2 20.097376 Anserini +test711 Q0 4476117 3 20.097376 Anserini +test711 Q0 1627404 4 19.210184 Anserini +test711 Q0 19266643 5 19.052601 Anserini +test711 Q0 1627426 6 18.961418 Anserini +test711 Q0 19266644 7 18.896963 Anserini +test711 Q0 10480679 8 18.737011 Anserini +test711 Q0 10480691 9 18.242264 Anserini +test711 Q0 10480688 10 18.204655 Anserini +test711 Q0 312150 11 18.090530 Anserini +test711 Q0 19266642 12 17.801237 Anserini +test711 Q0 17261102 13 17.752760 Anserini +test711 Q0 17261100 14 17.690235 Anserini +test711 Q0 3542282 15 17.537148 Anserini +test711 Q0 15746457 16 17.463337 Anserini +test711 Q0 15746456 17 17.329348 Anserini +test711 Q0 1627382 18 17.228077 Anserini +test711 Q0 12504523 19 17.043821 Anserini +test711 Q0 1627384 20 17.021421 Anserini +test711 Q0 4761697 21 16.965105 Anserini +test711 Q0 3027700 22 16.628574 Anserini +test711 Q0 19752139 23 16.522024 Anserini +test711 Q0 11324390 24 16.477623 Anserini +test711 Q0 5379479 25 16.351755 Anserini +test711 Q0 1627377 26 16.333534 Anserini +test711 Q0 5454169 27 16.307779 Anserini +test711 Q0 13637439 28 16.273655 Anserini +test711 Q0 392330 29 16.253784 Anserini +test711 Q0 10404961 30 16.196602 Anserini +test712 Q0 421793 1 10.195786 Anserini +test712 Q0 7754097 2 9.433202 Anserini +test712 Q0 17342308 3 9.304029 Anserini +test712 Q0 660375 4 9.203193 Anserini +test712 Q0 14558396 5 9.137473 Anserini +test712 Q0 20628334 6 9.056291 Anserini +test712 Q0 8796567 7 9.016249 Anserini +test712 Q0 13305596 8 8.922507 Anserini +test712 Q0 15582055 9 8.879888 Anserini +test712 Q0 13474131 10 8.725527 Anserini +test712 Q0 19094440 11 8.714283 Anserini +test712 Q0 16763254 12 8.677809 Anserini +test712 Q0 2276886 13 8.624805 Anserini +test712 Q0 11386822 14 8.619799 Anserini +test712 Q0 4780638 15 8.616796 Anserini +test712 Q0 12574518 16 8.616796 Anserini +test712 Q0 625272 17 8.548059 Anserini +test712 Q0 6281667 18 8.526015 Anserini +test712 Q0 6151893 19 8.512148 Anserini +test712 Q0 5673934 20 8.503586 Anserini +test712 Q0 5424710 21 8.492859 Anserini +test712 Q0 13741275 22 8.472680 Anserini +test712 Q0 6629728 23 8.452152 Anserini +test712 Q0 686783 24 8.450299 Anserini +test712 Q0 16242713 25 8.446415 Anserini +test712 Q0 1453118 26 8.444148 Anserini +test712 Q0 15419302 27 8.432077 Anserini +test712 Q0 19798719 28 8.416791 Anserini +test712 Q0 4840531 29 8.416791 Anserini +test712 Q0 20584287 30 8.414154 Anserini +test713 Q0 10067213 1 17.021214 Anserini +test713 Q0 8421075 2 15.776909 Anserini +test713 Q0 19822287 3 15.192496 Anserini +test713 Q0 10067216 4 14.511843 Anserini +test713 Q0 1434472 5 13.517267 Anserini +test713 Q0 8421073 6 13.442912 Anserini +test713 Q0 10067215 7 13.442122 Anserini +test713 Q0 12927916 8 13.119858 Anserini +test713 Q0 5656600 9 12.930697 Anserini +test713 Q0 4644684 10 12.722945 Anserini +test713 Q0 3237594 11 12.664847 Anserini +test713 Q0 7545358 12 12.623362 Anserini +test713 Q0 8538776 13 12.623362 Anserini +test713 Q0 10426205 14 12.462334 Anserini +test713 Q0 1403684 15 12.445053 Anserini +test713 Q0 10067214 16 12.405644 Anserini +test713 Q0 14034247 17 12.358540 Anserini +test713 Q0 5461123 18 12.230547 Anserini +test713 Q0 5461125 19 12.169914 Anserini +test713 Q0 7545351 20 12.087735 Anserini +test713 Q0 12585311 21 12.055871 Anserini +test713 Q0 13187312 22 12.049741 Anserini +test713 Q0 8421074 23 12.039015 Anserini +test713 Q0 6946707 24 12.000412 Anserini +test713 Q0 9306712 25 11.928959 Anserini +test713 Q0 1255602 26 11.910382 Anserini +test713 Q0 8421047 27 11.892808 Anserini +test713 Q0 4943002 28 11.839807 Anserini +test713 Q0 10841503 29 11.811144 Anserini +test713 Q0 8326624 30 11.777828 Anserini +test714 Q0 15451022 1 20.233885 Anserini +test714 Q0 17942220 2 19.713652 Anserini +test714 Q0 17942215 3 18.640535 Anserini +test714 Q0 17942230 4 18.640535 Anserini +test714 Q0 18484868 5 17.184666 Anserini +test714 Q0 18484874 6 17.184666 Anserini +test714 Q0 17942225 7 16.991718 Anserini +test714 Q0 18484862 8 16.853844 Anserini +test714 Q0 18484867 9 16.712439 Anserini +test714 Q0 15450976 10 16.372799 Anserini +test714 Q0 16532644 11 16.090639 Anserini +test714 Q0 18258609 12 15.921253 Anserini +test714 Q0 19771740 13 15.854278 Anserini +test714 Q0 17942227 14 15.749663 Anserini +test714 Q0 17942228 15 15.646432 Anserini +test714 Q0 17942217 16 15.618387 Anserini +test714 Q0 18392478 17 15.450386 Anserini +test714 Q0 17942221 18 15.024963 Anserini +test714 Q0 10426418 19 14.845233 Anserini +test714 Q0 10426420 20 14.845233 Anserini +test714 Q0 9558866 21 14.109501 Anserini +test714 Q0 9558867 22 14.109501 Anserini +test714 Q0 5365805 23 13.899340 Anserini +test714 Q0 7990241 24 13.810808 Anserini +test714 Q0 19714332 25 13.795226 Anserini +test714 Q0 20345797 26 13.708511 Anserini +test714 Q0 19052508 27 13.666469 Anserini +test714 Q0 15450975 28 13.661827 Anserini +test714 Q0 17942222 29 13.661827 Anserini +test714 Q0 17942229 30 13.661827 Anserini +test715 Q0 1941003 1 19.937477 Anserini +test715 Q0 8094746 2 19.177174 Anserini +test715 Q0 7507619 3 18.472111 Anserini +test715 Q0 42364 4 17.961895 Anserini +test715 Q0 8094747 5 17.863161 Anserini +test715 Q0 16476323 6 17.785152 Anserini +test715 Q0 10339381 7 17.342436 Anserini +test715 Q0 18155116 8 17.115217 Anserini +test715 Q0 409991 9 16.798578 Anserini +test715 Q0 8094763 10 16.757456 Anserini +test715 Q0 13697854 11 16.378141 Anserini +test715 Q0 8094742 12 16.346870 Anserini +test715 Q0 1400741 13 15.835423 Anserini +test715 Q0 7507618 14 15.754797 Anserini +test715 Q0 8647 15 15.631299 Anserini +test715 Q0 2869611 16 15.517231 Anserini +test715 Q0 558031 17 15.448826 Anserini +test715 Q0 11166836 18 15.444960 Anserini +test715 Q0 15302622 19 14.981956 Anserini +test715 Q0 8377608 20 14.951345 Anserini +test715 Q0 360589 21 14.862536 Anserini +test715 Q0 8094739 22 14.616971 Anserini +test715 Q0 5875978 23 14.491721 Anserini +test715 Q0 13926508 24 14.482045 Anserini +test715 Q0 18857064 25 14.353151 Anserini +test715 Q0 12078374 26 14.135908 Anserini +test715 Q0 13416252 27 14.095933 Anserini +test715 Q0 9098619 28 14.093290 Anserini +test715 Q0 42363 29 14.071089 Anserini +test715 Q0 3215192 30 14.067241 Anserini +test716 Q0 11465827 1 16.064011 Anserini +test716 Q0 4915516 2 15.077310 Anserini +test716 Q0 14703132 3 14.787303 Anserini +test716 Q0 14699156 4 14.726839 Anserini +test716 Q0 14703135 5 14.628290 Anserini +test716 Q0 498982 6 14.587090 Anserini +test716 Q0 14729726 7 14.513852 Anserini +test716 Q0 4441098 8 14.416076 Anserini +test716 Q0 4725153 9 14.341763 Anserini +test716 Q0 7136189 10 14.304258 Anserini +test716 Q0 8822261 11 14.268559 Anserini +test716 Q0 8822262 12 14.268559 Anserini +test716 Q0 5078252 13 14.195425 Anserini +test716 Q0 3685527 14 14.106020 Anserini +test716 Q0 8256511 15 14.089947 Anserini +test716 Q0 11175136 16 14.045395 Anserini +test716 Q0 7136190 17 14.013025 Anserini +test716 Q0 17876215 18 13.986477 Anserini +test716 Q0 14829011 19 13.812313 Anserini +test716 Q0 506462 20 13.783047 Anserini +test716 Q0 11478920 21 13.668324 Anserini +test716 Q0 11478921 22 13.668324 Anserini +test716 Q0 3915246 23 13.659973 Anserini +test716 Q0 3659801 24 13.635971 Anserini +test716 Q0 289732 25 13.609502 Anserini +test716 Q0 6294937 26 13.592560 Anserini +test716 Q0 11499644 27 13.577722 Anserini +test716 Q0 19140373 28 13.563669 Anserini +test716 Q0 8422616 29 13.555241 Anserini +test716 Q0 11175137 30 13.514091 Anserini +test717 Q0 14770767 1 12.053294 Anserini +test717 Q0 919990 2 11.822498 Anserini +test717 Q0 18108328 3 11.547903 Anserini +test717 Q0 5918074 4 11.027096 Anserini +test717 Q0 2623197 5 10.932261 Anserini +test717 Q0 12446999 6 10.857535 Anserini +test717 Q0 12518687 7 10.819750 Anserini +test717 Q0 16191090 8 10.810022 Anserini +test717 Q0 919991 9 10.786918 Anserini +test717 Q0 17231645 10 10.783548 Anserini +test717 Q0 919988 11 10.730344 Anserini +test717 Q0 5674301 12 10.708698 Anserini +test717 Q0 19915888 13 10.548491 Anserini +test717 Q0 20635167 14 10.506447 Anserini +test717 Q0 2562382 15 10.484222 Anserini +test717 Q0 19362495 16 10.477081 Anserini +test717 Q0 20757342 17 10.477081 Anserini +test717 Q0 15372380 18 10.449631 Anserini +test717 Q0 10050870 19 10.427897 Anserini +test717 Q0 19411466 20 10.427695 Anserini +test717 Q0 19939223 21 10.382118 Anserini +test717 Q0 7705944 22 10.305402 Anserini +test717 Q0 20161952 23 10.240482 Anserini +test717 Q0 20161956 24 10.240482 Anserini +test717 Q0 13228890 25 10.218353 Anserini +test717 Q0 19336235 26 10.166439 Anserini +test717 Q0 13228891 27 10.132822 Anserini +test717 Q0 19336233 28 10.116352 Anserini +test717 Q0 20980263 29 10.040199 Anserini +test717 Q0 5382142 30 10.039078 Anserini +test718 Q0 10825403 1 25.885445 Anserini +test718 Q0 9306892 2 23.794216 Anserini +test718 Q0 9306894 3 23.520533 Anserini +test718 Q0 10825423 4 23.515717 Anserini +test718 Q0 10825405 5 23.349485 Anserini +test718 Q0 10825411 6 22.815187 Anserini +test718 Q0 19095155 7 22.641159 Anserini +test718 Q0 10825409 8 22.558567 Anserini +test718 Q0 10825424 9 22.412914 Anserini +test718 Q0 3564250 10 22.352036 Anserini +test718 Q0 11662942 11 21.983021 Anserini +test718 Q0 14398967 12 21.866793 Anserini +test718 Q0 14398966 13 21.725414 Anserini +test718 Q0 11662940 14 21.724941 Anserini +test718 Q0 10840086 15 21.689358 Anserini +test718 Q0 20349424 16 21.651299 Anserini +test718 Q0 10825406 17 21.615566 Anserini +test718 Q0 10825407 18 21.607237 Anserini +test718 Q0 10825408 19 21.607237 Anserini +test718 Q0 12383628 20 21.356060 Anserini +test718 Q0 18551273 21 21.315359 Anserini +test718 Q0 16399706 22 21.301346 Anserini +test718 Q0 10825421 23 21.205332 Anserini +test718 Q0 12065814 24 21.136992 Anserini +test718 Q0 7153409 25 21.136221 Anserini +test718 Q0 10825416 26 21.092529 Anserini +test718 Q0 10825422 27 21.092529 Anserini +test718 Q0 12894798 28 21.092438 Anserini +test718 Q0 9585368 29 21.067715 Anserini +test718 Q0 9170325 30 20.870602 Anserini +test719 Q0 17241650 1 10.762054 Anserini +test719 Q0 13118668 2 9.877547 Anserini +test719 Q0 18118413 3 9.485784 Anserini +test719 Q0 14235657 4 9.458624 Anserini +test719 Q0 5758747 5 9.143364 Anserini +test719 Q0 5086700 6 9.132476 Anserini +test719 Q0 15496234 7 9.033620 Anserini +test719 Q0 15496220 8 8.938523 Anserini +test719 Q0 9422223 9 8.716874 Anserini +test719 Q0 11319138 10 8.533687 Anserini +test719 Q0 15100830 11 8.516549 Anserini +test719 Q0 18332594 12 8.400993 Anserini +test719 Q0 1443241 13 8.352106 Anserini +test719 Q0 5320638 14 8.321266 Anserini +test719 Q0 14639542 15 8.309410 Anserini +test719 Q0 5371270 16 8.288173 Anserini +test719 Q0 4575643 17 8.264400 Anserini +test719 Q0 13934038 18 8.243220 Anserini +test719 Q0 15423890 19 8.236221 Anserini +test719 Q0 19747186 20 8.198732 Anserini +test719 Q0 18443572 21 8.110927 Anserini +test719 Q0 5120350 22 8.086729 Anserini +test719 Q0 3108581 23 8.085630 Anserini +test719 Q0 2459190 24 8.070402 Anserini +test719 Q0 8253365 25 8.015035 Anserini +test719 Q0 10028159 26 7.945603 Anserini +test719 Q0 15566313 27 7.945603 Anserini +test719 Q0 8649156 28 7.922885 Anserini +test719 Q0 7659 29 7.904069 Anserini +test719 Q0 16873102 30 7.887739 Anserini +test72 Q0 4656652 1 14.225381 Anserini +test72 Q0 16202471 2 13.858953 Anserini +test72 Q0 13430978 3 13.421914 Anserini +test72 Q0 5500725 4 13.295500 Anserini +test72 Q0 16946358 5 13.088645 Anserini +test72 Q0 423578 6 12.926511 Anserini +test72 Q0 13065397 7 12.867534 Anserini +test72 Q0 6151756 8 12.847804 Anserini +test72 Q0 1579038 9 12.748778 Anserini +test72 Q0 5269841 10 12.740997 Anserini +test72 Q0 3667771 11 12.740997 Anserini +test72 Q0 7414807 12 12.730158 Anserini +test72 Q0 13782229 13 12.697526 Anserini +test72 Q0 17742119 14 12.661227 Anserini +test72 Q0 1632383 15 12.632262 Anserini +test72 Q0 20265867 16 12.626621 Anserini +test72 Q0 20265872 17 12.626621 Anserini +test72 Q0 20266230 18 12.626621 Anserini +test72 Q0 20261203 19 12.626621 Anserini +test72 Q0 20261549 20 12.626621 Anserini +test72 Q0 20264050 21 12.626621 Anserini +test72 Q0 20265602 22 12.626621 Anserini +test72 Q0 20239013 23 12.626621 Anserini +test72 Q0 20273326 24 12.626621 Anserini +test72 Q0 20236819 25 12.626621 Anserini +test72 Q0 20247066 26 12.626621 Anserini +test72 Q0 20258428 27 12.626621 Anserini +test72 Q0 3860339 28 12.616803 Anserini +test72 Q0 7809505 29 12.597636 Anserini +test72 Q0 20257021 30 12.488743 Anserini +test720 Q0 2424627 1 16.270727 Anserini +test720 Q0 421720 2 15.834921 Anserini +test720 Q0 3199356 3 15.645573 Anserini +test720 Q0 687401 4 15.469357 Anserini +test720 Q0 213425 5 15.038171 Anserini +test720 Q0 15464694 6 14.330701 Anserini +test720 Q0 687400 7 14.321273 Anserini +test720 Q0 6501454 8 14.212875 Anserini +test720 Q0 8400984 9 14.212875 Anserini +test720 Q0 7588738 10 14.212875 Anserini +test720 Q0 7132317 11 14.105816 Anserini +test720 Q0 8117548 12 14.105816 Anserini +test720 Q0 2201852 13 13.739377 Anserini +test720 Q0 2201841 14 13.739377 Anserini +test720 Q0 377334 15 13.719403 Anserini +test720 Q0 6337663 16 13.610666 Anserini +test720 Q0 4128528 17 13.531307 Anserini +test720 Q0 4573003 18 13.357879 Anserini +test720 Q0 438583 19 13.234521 Anserini +test720 Q0 687388 20 13.216738 Anserini +test720 Q0 2416540 21 13.187138 Anserini +test720 Q0 3480154 22 13.115805 Anserini +test720 Q0 5856014 23 13.089745 Anserini +test720 Q0 2277064 24 12.800526 Anserini +test720 Q0 687391 25 12.726631 Anserini +test720 Q0 687383 26 12.684866 Anserini +test720 Q0 775617 27 12.624652 Anserini +test720 Q0 687389 28 12.580895 Anserini +test720 Q0 11636030 29 12.577887 Anserini +test720 Q0 14927271 30 12.556625 Anserini +test721 Q0 3917893 1 15.017720 Anserini +test721 Q0 2700264 2 14.684086 Anserini +test721 Q0 4755833 3 14.540458 Anserini +test721 Q0 1981009 4 14.086692 Anserini +test721 Q0 16874442 5 14.048088 Anserini +test721 Q0 9462466 6 13.948139 Anserini +test721 Q0 15785950 7 13.923000 Anserini +test721 Q0 3629225 8 13.653351 Anserini +test721 Q0 5976103 9 13.618124 Anserini +test721 Q0 12906251 10 13.567313 Anserini +test721 Q0 9462435 11 13.546302 Anserini +test721 Q0 1168581 12 13.479322 Anserini +test721 Q0 19157559 13 13.010612 Anserini +test721 Q0 9682694 14 12.923931 Anserini +test721 Q0 14524142 15 12.923931 Anserini +test721 Q0 9428080 16 12.912553 Anserini +test721 Q0 12906248 17 12.875647 Anserini +test721 Q0 8065091 18 12.847621 Anserini +test721 Q0 16565700 19 12.803662 Anserini +test721 Q0 8404665 20 12.783098 Anserini +test721 Q0 564295 21 12.755258 Anserini +test721 Q0 11919958 22 12.751005 Anserini +test721 Q0 11562292 23 12.700278 Anserini +test721 Q0 1981026 24 12.667137 Anserini +test721 Q0 13203319 25 12.658346 Anserini +test721 Q0 5573093 26 12.598947 Anserini +test721 Q0 11466011 27 12.542035 Anserini +test721 Q0 11937700 28 12.514802 Anserini +test721 Q0 7495364 29 12.509346 Anserini +test721 Q0 6116786 30 12.504019 Anserini +test722 Q0 14138190 1 22.218996 Anserini +test722 Q0 14138191 2 21.710394 Anserini +test722 Q0 4442691 3 17.724318 Anserini +test722 Q0 4528832 4 17.397167 Anserini +test722 Q0 16221325 5 17.354944 Anserini +test722 Q0 4442701 6 17.274330 Anserini +test722 Q0 20681224 7 17.193115 Anserini +test722 Q0 8414495 8 17.169119 Anserini +test722 Q0 8603893 9 16.983231 Anserini +test722 Q0 10504954 10 16.866083 Anserini +test722 Q0 13212854 11 16.849854 Anserini +test722 Q0 20681231 12 16.803591 Anserini +test722 Q0 8603889 13 16.441067 Anserini +test722 Q0 16565193 14 16.422997 Anserini +test722 Q0 16565191 15 16.352615 Anserini +test722 Q0 16822772 16 16.337862 Anserini +test722 Q0 640092 17 16.329458 Anserini +test722 Q0 8450224 18 16.283482 Anserini +test722 Q0 20681225 19 16.256880 Anserini +test722 Q0 8983214 20 16.243948 Anserini +test722 Q0 16351733 21 16.215309 Anserini +test722 Q0 13212848 22 16.172262 Anserini +test722 Q0 11385401 23 16.156988 Anserini +test722 Q0 8385537 24 16.143059 Anserini +test722 Q0 12622361 25 16.141766 Anserini +test722 Q0 17975647 26 16.092072 Anserini +test722 Q0 12622362 27 16.075495 Anserini +test722 Q0 14742351 28 16.058233 Anserini +test722 Q0 16351732 29 15.975420 Anserini +test722 Q0 17975649 30 15.945539 Anserini +test723 Q0 6442037 1 14.501622 Anserini +test723 Q0 1989198 2 14.412292 Anserini +test723 Q0 6133505 3 14.169910 Anserini +test723 Q0 7920947 4 13.977399 Anserini +test723 Q0 2868630 5 13.972141 Anserini +test723 Q0 7010542 6 13.924738 Anserini +test723 Q0 1717002 7 13.892389 Anserini +test723 Q0 7970935 8 13.827713 Anserini +test723 Q0 18563168 9 13.740760 Anserini +test723 Q0 18563165 10 13.740760 Anserini +test723 Q0 8320579 11 13.719711 Anserini +test723 Q0 19162583 12 13.641985 Anserini +test723 Q0 2868635 13 13.628473 Anserini +test723 Q0 1386193 14 13.488750 Anserini +test723 Q0 3773039 15 13.479079 Anserini +test723 Q0 8306264 16 13.460891 Anserini +test723 Q0 7970934 17 13.460396 Anserini +test723 Q0 1989197 18 13.377216 Anserini +test723 Q0 2127037 19 13.268264 Anserini +test723 Q0 7954547 20 13.202598 Anserini +test723 Q0 13398787 21 13.150650 Anserini +test723 Q0 18563167 22 13.144776 Anserini +test723 Q0 7616754 23 13.084572 Anserini +test723 Q0 9733915 24 13.066577 Anserini +test723 Q0 5675240 25 13.056362 Anserini +test723 Q0 6665607 26 13.040208 Anserini +test723 Q0 7600251 27 13.030149 Anserini +test723 Q0 4115195 28 13.023083 Anserini +test723 Q0 7215444 29 12.995259 Anserini +test723 Q0 3387571 30 12.964309 Anserini +test724 Q0 9440922 1 16.758781 Anserini +test724 Q0 9440920 2 16.614201 Anserini +test724 Q0 9440908 3 16.283737 Anserini +test724 Q0 9440914 4 16.067810 Anserini +test724 Q0 17746724 5 14.800072 Anserini +test724 Q0 9440916 6 14.582546 Anserini +test724 Q0 9440919 7 14.487530 Anserini +test724 Q0 8650353 8 14.097040 Anserini +test724 Q0 17746725 9 13.832342 Anserini +test724 Q0 5699771 10 13.753727 Anserini +test724 Q0 9440912 11 12.855675 Anserini +test724 Q0 9440913 12 12.574837 Anserini +test724 Q0 17040763 13 12.459665 Anserini +test724 Q0 9440921 14 12.401378 Anserini +test724 Q0 9440915 15 12.316430 Anserini +test724 Q0 18812260 16 12.232638 Anserini +test724 Q0 2412190 17 12.067172 Anserini +test724 Q0 6465011 18 12.005403 Anserini +test724 Q0 17040767 19 11.961168 Anserini +test724 Q0 5699760 20 11.870951 Anserini +test724 Q0 9440910 21 11.857342 Anserini +test724 Q0 11109962 22 11.720927 Anserini +test724 Q0 5699801 23 11.698585 Anserini +test724 Q0 14364945 24 11.565406 Anserini +test724 Q0 18052594 25 11.515009 Anserini +test724 Q0 9440917 26 11.486353 Anserini +test724 Q0 9440909 27 11.481255 Anserini +test724 Q0 6824343 28 11.453671 Anserini +test724 Q0 17040765 29 11.372678 Anserini +test724 Q0 5699770 30 11.367348 Anserini +test725 Q0 9066519 1 14.962090 Anserini +test725 Q0 9090309 2 14.557526 Anserini +test725 Q0 3729839 3 14.409327 Anserini +test725 Q0 12598778 4 14.353988 Anserini +test725 Q0 12599260 5 14.353988 Anserini +test725 Q0 1064852 6 14.350547 Anserini +test725 Q0 531040 7 14.137261 Anserini +test725 Q0 1063775 8 13.999360 Anserini +test725 Q0 7160779 9 13.904534 Anserini +test725 Q0 1682685 10 13.873644 Anserini +test725 Q0 2178558 11 13.759769 Anserini +test725 Q0 20035945 12 13.680424 Anserini +test725 Q0 1064861 13 13.610701 Anserini +test725 Q0 1528213 14 13.594550 Anserini +test725 Q0 6659284 15 13.582122 Anserini +test725 Q0 298759 16 13.444802 Anserini +test725 Q0 298706 17 13.414261 Anserini +test725 Q0 647169 18 13.390708 Anserini +test725 Q0 202560 19 13.371993 Anserini +test725 Q0 3729837 20 13.368229 Anserini +test725 Q0 599269 21 13.351981 Anserini +test725 Q0 1064878 22 13.343987 Anserini +test725 Q0 7179796 23 13.342924 Anserini +test725 Q0 10262044 24 13.341916 Anserini +test725 Q0 1063847 25 13.278600 Anserini +test725 Q0 18384823 26 13.263934 Anserini +test725 Q0 510037 27 13.206955 Anserini +test725 Q0 8978127 28 13.205077 Anserini +test725 Q0 16586858 29 13.180624 Anserini +test725 Q0 11001532 30 13.150568 Anserini +test726 Q0 12672354 1 20.677727 Anserini +test726 Q0 9320258 2 20.563841 Anserini +test726 Q0 19928785 3 18.506065 Anserini +test726 Q0 18345578 4 18.365175 Anserini +test726 Q0 20383702 5 18.334969 Anserini +test726 Q0 12672358 6 18.070637 Anserini +test726 Q0 20562744 7 17.995094 Anserini +test726 Q0 12672351 8 17.874626 Anserini +test726 Q0 11520802 9 17.364840 Anserini +test726 Q0 14642145 10 17.326984 Anserini +test726 Q0 19118960 11 17.323847 Anserini +test726 Q0 9320241 12 17.222612 Anserini +test726 Q0 20790862 13 17.189739 Anserini +test726 Q0 20383700 14 17.166523 Anserini +test726 Q0 10144010 15 17.159803 Anserini +test726 Q0 11563749 16 17.115532 Anserini +test726 Q0 9320257 17 17.054256 Anserini +test726 Q0 11511022 18 16.989260 Anserini +test726 Q0 18345573 19 16.857805 Anserini +test726 Q0 12672355 20 16.855343 Anserini +test726 Q0 20562683 21 16.838715 Anserini +test726 Q0 12832125 22 16.728270 Anserini +test726 Q0 11180580 23 16.689474 Anserini +test726 Q0 19118959 24 16.677757 Anserini +test726 Q0 11563778 25 16.628708 Anserini +test726 Q0 19118961 26 16.569025 Anserini +test726 Q0 12669425 27 16.569025 Anserini +test726 Q0 11511016 28 16.512470 Anserini +test726 Q0 19118963 29 16.484756 Anserini +test726 Q0 7094837 30 16.450684 Anserini +test727 Q0 6600351 1 12.912037 Anserini +test727 Q0 15858504 2 12.687040 Anserini +test727 Q0 4693299 3 12.452705 Anserini +test727 Q0 20162981 4 12.043121 Anserini +test727 Q0 17441784 5 11.832900 Anserini +test727 Q0 19743157 6 11.764221 Anserini +test727 Q0 7327561 7 11.541941 Anserini +test727 Q0 9523896 8 11.288342 Anserini +test727 Q0 8422665 9 11.169241 Anserini +test727 Q0 3997770 10 11.144125 Anserini +test727 Q0 5350418 11 11.128734 Anserini +test727 Q0 14034247 12 11.090623 Anserini +test727 Q0 10778338 13 10.895802 Anserini +test727 Q0 10778416 14 10.895802 Anserini +test727 Q0 9632713 15 10.823392 Anserini +test727 Q0 12426206 16 10.775675 Anserini +test727 Q0 15809455 17 10.774792 Anserini +test727 Q0 1318365 18 10.714421 Anserini +test727 Q0 13094833 19 10.670811 Anserini +test727 Q0 7088465 20 10.643368 Anserini +test727 Q0 4271099 21 10.623194 Anserini +test727 Q0 15920355 22 10.620568 Anserini +test727 Q0 15463118 23 10.606540 Anserini +test727 Q0 19966810 24 10.590462 Anserini +test727 Q0 17732140 25 10.588585 Anserini +test727 Q0 19959624 26 10.588585 Anserini +test727 Q0 4192176 27 10.536412 Anserini +test727 Q0 11471389 28 10.516987 Anserini +test727 Q0 14219539 29 10.457553 Anserini +test727 Q0 15463121 30 10.456362 Anserini +test728 Q0 13233787 1 11.301816 Anserini +test728 Q0 18080341 2 10.993421 Anserini +test728 Q0 14282029 3 10.803027 Anserini +test728 Q0 12223061 4 10.723949 Anserini +test728 Q0 14848603 5 10.693893 Anserini +test728 Q0 9228757 6 10.373060 Anserini +test728 Q0 19389824 7 10.337858 Anserini +test728 Q0 6449511 8 10.224812 Anserini +test728 Q0 11352753 9 10.194397 Anserini +test728 Q0 18855473 10 10.136244 Anserini +test728 Q0 6449513 11 10.127363 Anserini +test728 Q0 1158023 12 10.057804 Anserini +test728 Q0 19706016 13 10.056257 Anserini +test728 Q0 11041036 14 10.051055 Anserini +test728 Q0 6449516 15 10.005672 Anserini +test728 Q0 1158353 16 9.995551 Anserini +test728 Q0 18740870 17 9.990036 Anserini +test728 Q0 17199360 18 9.951012 Anserini +test728 Q0 20237354 19 9.951012 Anserini +test728 Q0 20827101 20 9.951012 Anserini +test728 Q0 1158343 21 9.942636 Anserini +test728 Q0 4903604 22 9.877965 Anserini +test728 Q0 14839819 23 9.864164 Anserini +test728 Q0 15123489 24 9.864011 Anserini +test728 Q0 20471827 25 9.787709 Anserini +test728 Q0 18855454 26 9.787709 Anserini +test728 Q0 18362161 27 9.776914 Anserini +test728 Q0 10618024 28 9.657962 Anserini +test728 Q0 10618021 29 9.657962 Anserini +test728 Q0 2455407 30 9.650651 Anserini +test729 Q0 11325981 1 10.669407 Anserini +test729 Q0 13043457 2 10.599654 Anserini +test729 Q0 1829854 3 10.070112 Anserini +test729 Q0 7296783 4 9.607972 Anserini +test729 Q0 2743832 5 9.577031 Anserini +test729 Q0 12880713 6 9.559205 Anserini +test729 Q0 13043454 7 9.492300 Anserini +test729 Q0 16663591 8 9.472284 Anserini +test729 Q0 8673106 9 9.246335 Anserini +test729 Q0 10760440 10 9.207520 Anserini +test729 Q0 602802 11 9.142183 Anserini +test729 Q0 602789 12 9.059747 Anserini +test729 Q0 2943159 13 9.033029 Anserini +test729 Q0 14705489 14 9.006868 Anserini +test729 Q0 14363839 15 8.867888 Anserini +test729 Q0 15187345 16 8.838114 Anserini +test729 Q0 2943161 17 8.837344 Anserini +test729 Q0 5872586 18 8.805687 Anserini +test729 Q0 19092571 19 8.773595 Anserini +test729 Q0 4573047 20 8.747757 Anserini +test729 Q0 20396114 21 8.721838 Anserini +test729 Q0 2526190 22 8.676414 Anserini +test729 Q0 7296782 23 8.633617 Anserini +test729 Q0 6399033 24 8.569745 Anserini +test729 Q0 11719347 25 8.474484 Anserini +test729 Q0 10045062 26 8.469891 Anserini +test729 Q0 8673107 27 8.447710 Anserini +test729 Q0 53813 28 8.417868 Anserini +test729 Q0 15187348 29 8.415335 Anserini +test729 Q0 15125323 30 8.412640 Anserini +test73 Q0 15853152 1 14.313940 Anserini +test73 Q0 15894118 2 13.905731 Anserini +test73 Q0 3994414 3 13.755103 Anserini +test73 Q0 15936288 4 12.777095 Anserini +test73 Q0 11143715 5 12.764932 Anserini +test73 Q0 17194497 6 12.731947 Anserini +test73 Q0 5976512 7 12.724516 Anserini +test73 Q0 15894120 8 12.371885 Anserini +test73 Q0 10444718 9 12.351008 Anserini +test73 Q0 15894126 10 11.994354 Anserini +test73 Q0 19353381 11 11.984272 Anserini +test73 Q0 11143719 12 11.975195 Anserini +test73 Q0 4661627 13 11.816741 Anserini +test73 Q0 2340709 14 11.674946 Anserini +test73 Q0 1747069 15 11.670519 Anserini +test73 Q0 15894132 16 11.600479 Anserini +test73 Q0 528404 17 11.472149 Anserini +test73 Q0 5405597 18 11.468247 Anserini +test73 Q0 15711279 19 11.420740 Anserini +test73 Q0 2340717 20 11.363146 Anserini +test73 Q0 2340716 21 11.361528 Anserini +test73 Q0 602495 22 11.266967 Anserini +test73 Q0 2340718 23 11.254258 Anserini +test73 Q0 3844801 24 11.253713 Anserini +test73 Q0 4975364 25 11.247681 Anserini +test73 Q0 15306815 26 11.246087 Anserini +test73 Q0 13372183 27 11.201914 Anserini +test73 Q0 6986648 28 11.201838 Anserini +test73 Q0 110979 29 11.183371 Anserini +test73 Q0 11139073 30 11.145427 Anserini +test730 Q0 6751969 1 15.143831 Anserini +test730 Q0 766106 2 15.133120 Anserini +test730 Q0 4621433 3 15.128169 Anserini +test730 Q0 20724600 4 15.113550 Anserini +test730 Q0 9984301 5 14.806610 Anserini +test730 Q0 766116 6 14.659432 Anserini +test730 Q0 10002674 7 14.581657 Anserini +test730 Q0 7002742 8 14.427029 Anserini +test730 Q0 6607707 9 14.378888 Anserini +test730 Q0 766143 10 14.281282 Anserini +test730 Q0 8934589 11 14.270873 Anserini +test730 Q0 766114 12 14.246314 Anserini +test730 Q0 47131 13 14.169172 Anserini +test730 Q0 10002657 14 14.166473 Anserini +test730 Q0 3412874 15 14.131938 Anserini +test730 Q0 16078102 16 14.115346 Anserini +test730 Q0 47125 17 14.008118 Anserini +test730 Q0 648126 18 13.927742 Anserini +test730 Q0 766136 19 13.822028 Anserini +test730 Q0 7557721 20 13.698922 Anserini +test730 Q0 766137 21 13.574106 Anserini +test730 Q0 766112 22 13.484960 Anserini +test730 Q0 3125348 23 13.471074 Anserini +test730 Q0 10000047 24 13.436014 Anserini +test730 Q0 14015701 25 13.431138 Anserini +test730 Q0 5890313 26 13.422707 Anserini +test730 Q0 2768777 27 13.419647 Anserini +test730 Q0 863376 28 13.368693 Anserini +test730 Q0 7514348 29 13.308846 Anserini +test730 Q0 4126260 30 13.302448 Anserini +test731 Q0 11072480 1 23.349607 Anserini +test731 Q0 1292572 2 21.687765 Anserini +test731 Q0 722031 3 21.684504 Anserini +test731 Q0 1292583 4 21.402351 Anserini +test731 Q0 11074596 5 21.197926 Anserini +test731 Q0 585579 6 21.129740 Anserini +test731 Q0 8241243 7 21.124584 Anserini +test731 Q0 15854579 8 21.108902 Anserini +test731 Q0 18393042 9 20.944559 Anserini +test731 Q0 14630127 10 20.741816 Anserini +test731 Q0 11074593 11 20.471781 Anserini +test731 Q0 11072484 12 20.458647 Anserini +test731 Q0 585567 13 20.337185 Anserini +test731 Q0 11074590 14 20.015265 Anserini +test731 Q0 18393043 15 19.813690 Anserini +test731 Q0 11074575 16 19.796463 Anserini +test731 Q0 1292575 17 19.471687 Anserini +test731 Q0 1292581 18 19.272337 Anserini +test731 Q0 5457938 19 19.161959 Anserini +test731 Q0 9929627 20 19.161959 Anserini +test731 Q0 8642286 21 18.918682 Anserini +test731 Q0 11074577 22 18.684172 Anserini +test731 Q0 1292574 23 18.597033 Anserini +test731 Q0 9929606 24 18.587231 Anserini +test731 Q0 1292576 25 18.501642 Anserini +test731 Q0 1292582 26 18.200258 Anserini +test731 Q0 6138206 27 18.124201 Anserini +test731 Q0 722030 28 18.069361 Anserini +test731 Q0 2928648 29 18.065237 Anserini +test731 Q0 9745952 30 17.978935 Anserini +test732 Q0 18049610 1 11.872250 Anserini +test732 Q0 19273537 2 11.130972 Anserini +test732 Q0 18632833 3 10.693017 Anserini +test732 Q0 17727643 4 10.674365 Anserini +test732 Q0 16336241 5 10.636505 Anserini +test732 Q0 15058998 6 10.630414 Anserini +test732 Q0 18748779 7 10.630414 Anserini +test732 Q0 14093203 8 10.563742 Anserini +test732 Q0 13910597 9 10.457457 Anserini +test732 Q0 19037433 10 10.432403 Anserini +test732 Q0 17799385 11 10.432403 Anserini +test732 Q0 14972452 12 10.432403 Anserini +test732 Q0 17916677 13 10.375493 Anserini +test732 Q0 17819170 14 10.308720 Anserini +test732 Q0 16505847 15 10.284593 Anserini +test732 Q0 17393127 16 10.101330 Anserini +test732 Q0 14093162 17 10.080595 Anserini +test732 Q0 20736742 18 10.058663 Anserini +test732 Q0 19037437 19 10.030168 Anserini +test732 Q0 13337975 20 10.030168 Anserini +test732 Q0 10107679 21 9.989197 Anserini +test732 Q0 17714709 22 9.961525 Anserini +test732 Q0 18762827 23 9.906622 Anserini +test732 Q0 14557795 24 9.903318 Anserini +test732 Q0 16434418 25 9.896729 Anserini +test732 Q0 17386056 26 9.852405 Anserini +test732 Q0 18028059 27 9.772984 Anserini +test732 Q0 16338938 28 9.725779 Anserini +test732 Q0 16338937 29 9.708611 Anserini +test732 Q0 17393653 30 9.698186 Anserini +test733 Q0 413550 1 13.841079 Anserini +test733 Q0 14786368 2 13.647578 Anserini +test733 Q0 1281255 3 13.581293 Anserini +test733 Q0 8571324 4 13.520433 Anserini +test733 Q0 3501996 5 13.250930 Anserini +test733 Q0 753256 6 12.997083 Anserini +test733 Q0 6749494 7 12.855136 Anserini +test733 Q0 19136270 8 12.839505 Anserini +test733 Q0 10370453 9 12.808371 Anserini +test733 Q0 5856062 10 12.616941 Anserini +test733 Q0 235640 11 12.565202 Anserini +test733 Q0 2772213 12 12.527643 Anserini +test733 Q0 3311734 13 12.519073 Anserini +test733 Q0 41158 14 12.493926 Anserini +test733 Q0 1767572 15 12.479951 Anserini +test733 Q0 9733117 16 12.418581 Anserini +test733 Q0 6738761 17 12.316448 Anserini +test733 Q0 6738755 18 12.277758 Anserini +test733 Q0 6738766 19 12.258744 Anserini +test733 Q0 8286251 20 12.238534 Anserini +test733 Q0 15892143 21 12.172894 Anserini +test733 Q0 19698415 22 12.148211 Anserini +test733 Q0 10430681 23 12.132360 Anserini +test733 Q0 19698413 24 12.115667 Anserini +test733 Q0 9415256 25 12.107630 Anserini +test733 Q0 7242767 26 12.062695 Anserini +test733 Q0 5856014 27 12.009736 Anserini +test733 Q0 40056 28 11.990571 Anserini +test733 Q0 19987650 29 11.990571 Anserini +test733 Q0 15263669 30 11.885751 Anserini +test734 Q0 18461627 1 18.434526 Anserini +test734 Q0 18461641 2 18.115801 Anserini +test734 Q0 18461629 3 17.197105 Anserini +test734 Q0 17886759 4 16.833418 Anserini +test734 Q0 18461630 5 15.976533 Anserini +test734 Q0 18461632 6 15.475058 Anserini +test734 Q0 18461633 7 15.307030 Anserini +test734 Q0 18461639 8 15.213300 Anserini +test734 Q0 18461634 9 15.132188 Anserini +test734 Q0 18461635 10 15.079685 Anserini +test734 Q0 18461628 11 14.983408 Anserini +test734 Q0 18461631 12 14.461094 Anserini +test734 Q0 13647375 13 14.450521 Anserini +test734 Q0 18461638 14 14.354908 Anserini +test734 Q0 18461640 15 14.192495 Anserini +test734 Q0 18461637 16 13.897156 Anserini +test734 Q0 18461636 17 13.701126 Anserini +test734 Q0 4577131 18 13.166988 Anserini +test734 Q0 15289719 19 13.143270 Anserini +test734 Q0 17886758 20 12.641773 Anserini +test734 Q0 10335195 21 12.517363 Anserini +test734 Q0 19772532 22 12.367389 Anserini +test734 Q0 4577150 23 12.171797 Anserini +test734 Q0 4988478 24 12.056755 Anserini +test734 Q0 15998156 25 11.873213 Anserini +test734 Q0 12991311 26 11.751117 Anserini +test734 Q0 12991318 27 11.751117 Anserini +test734 Q0 16977309 28 11.633244 Anserini +test734 Q0 4577130 29 11.501615 Anserini +test734 Q0 16792992 30 11.487700 Anserini +test735 Q0 3830708 1 11.421148 Anserini +test735 Q0 19133042 2 11.271951 Anserini +test735 Q0 11152128 3 10.725750 Anserini +test735 Q0 2040256 4 10.616363 Anserini +test735 Q0 11152131 5 10.517667 Anserini +test735 Q0 4979864 6 10.454611 Anserini +test735 Q0 5059720 7 10.412953 Anserini +test735 Q0 1622320 8 10.271520 Anserini +test735 Q0 14091099 9 10.268367 Anserini +test735 Q0 4343142 10 10.211404 Anserini +test735 Q0 20303289 11 10.161268 Anserini +test735 Q0 4380351 12 10.133160 Anserini +test735 Q0 8500796 13 10.056616 Anserini +test735 Q0 2222029 14 10.048775 Anserini +test735 Q0 8156337 15 10.011978 Anserini +test735 Q0 14408097 16 9.854755 Anserini +test735 Q0 4979819 17 9.812035 Anserini +test735 Q0 16710250 18 9.811344 Anserini +test735 Q0 19741875 19 9.719934 Anserini +test735 Q0 19741881 20 9.719934 Anserini +test735 Q0 18282586 21 9.714783 Anserini +test735 Q0 11774706 22 9.670931 Anserini +test735 Q0 15032054 23 9.667661 Anserini +test735 Q0 13099094 24 9.640159 Anserini +test735 Q0 5869417 25 9.608051 Anserini +test735 Q0 8137440 26 9.573480 Anserini +test735 Q0 12973323 27 9.487607 Anserini +test735 Q0 7423463 28 9.478882 Anserini +test735 Q0 7633421 29 9.431332 Anserini +test735 Q0 14408098 30 9.422579 Anserini +test736 Q0 5794718 1 22.414492 Anserini +test736 Q0 5794747 2 22.102938 Anserini +test736 Q0 5794742 3 20.616297 Anserini +test736 Q0 5794735 4 19.373014 Anserini +test736 Q0 5794721 5 19.341608 Anserini +test736 Q0 10439432 6 19.226574 Anserini +test736 Q0 5794745 7 18.635185 Anserini +test736 Q0 13218925 8 18.619711 Anserini +test736 Q0 5794746 9 18.418694 Anserini +test736 Q0 16275740 10 18.337620 Anserini +test736 Q0 5794739 11 18.226582 Anserini +test736 Q0 5794738 12 18.188351 Anserini +test736 Q0 5794733 13 18.173626 Anserini +test736 Q0 349682 14 17.998701 Anserini +test736 Q0 349769 15 17.893682 Anserini +test736 Q0 5794741 16 17.886131 Anserini +test736 Q0 5794736 17 17.788462 Anserini +test736 Q0 11169408 18 17.763296 Anserini +test736 Q0 5794740 19 17.639524 Anserini +test736 Q0 1518951 20 17.628170 Anserini +test736 Q0 16275752 21 17.597870 Anserini +test736 Q0 5794729 22 17.597851 Anserini +test736 Q0 10439434 23 17.594257 Anserini +test736 Q0 5794737 24 17.533407 Anserini +test736 Q0 5794726 25 17.369154 Anserini +test736 Q0 5794727 26 17.271223 Anserini +test736 Q0 5794731 27 17.262381 Anserini +test736 Q0 5794734 28 17.127728 Anserini +test736 Q0 10439433 29 17.015018 Anserini +test736 Q0 5794722 30 17.012756 Anserini +test737 Q0 18563346 1 20.903599 Anserini +test737 Q0 18563356 2 19.425093 Anserini +test737 Q0 19152711 3 19.155670 Anserini +test737 Q0 18084512 4 18.908596 Anserini +test737 Q0 2734539 5 18.127243 Anserini +test737 Q0 4450419 6 18.008923 Anserini +test737 Q0 12810379 7 17.867208 Anserini +test737 Q0 17836780 8 17.858295 Anserini +test737 Q0 20550658 9 17.759817 Anserini +test737 Q0 17079291 10 17.726490 Anserini +test737 Q0 20550654 11 17.680363 Anserini +test737 Q0 18567744 12 17.674234 Anserini +test737 Q0 18567743 13 17.662378 Anserini +test737 Q0 18329784 14 17.597666 Anserini +test737 Q0 17079304 15 17.577888 Anserini +test737 Q0 18329765 16 17.520308 Anserini +test737 Q0 18567794 17 17.461113 Anserini +test737 Q0 2734530 18 17.397913 Anserini +test737 Q0 17076837 19 17.385456 Anserini +test737 Q0 2734573 20 17.379025 Anserini +test737 Q0 17076868 21 17.327465 Anserini +test737 Q0 12810383 22 17.255913 Anserini +test737 Q0 18567776 23 17.221050 Anserini +test737 Q0 17836795 24 16.968971 Anserini +test737 Q0 2734519 25 16.962990 Anserini +test737 Q0 18567737 26 16.902580 Anserini +test737 Q0 19152710 27 16.901711 Anserini +test737 Q0 6982255 28 16.890570 Anserini +test737 Q0 2734472 29 16.876686 Anserini +test737 Q0 17076829 30 16.859396 Anserini +test738 Q0 6197918 1 17.030436 Anserini +test738 Q0 14546718 2 16.729164 Anserini +test738 Q0 1714539 3 13.600905 Anserini +test738 Q0 13864594 4 12.873804 Anserini +test738 Q0 5028128 5 12.720503 Anserini +test738 Q0 1714552 6 12.577463 Anserini +test738 Q0 15446095 7 12.318774 Anserini +test738 Q0 12323613 8 12.064760 Anserini +test738 Q0 16774144 9 11.965380 Anserini +test738 Q0 1714587 10 11.443508 Anserini +test738 Q0 1714545 11 11.401670 Anserini +test738 Q0 1714580 12 11.349495 Anserini +test738 Q0 13864593 13 11.326889 Anserini +test738 Q0 16321508 14 11.271175 Anserini +test738 Q0 1714557 15 11.254725 Anserini +test738 Q0 7695652 16 11.158345 Anserini +test738 Q0 1714564 17 10.876890 Anserini +test738 Q0 13864595 18 10.869255 Anserini +test738 Q0 13864597 19 10.673290 Anserini +test738 Q0 1714598 20 10.528221 Anserini +test738 Q0 1714547 21 10.528221 Anserini +test738 Q0 1714603 22 10.528221 Anserini +test738 Q0 13864596 23 10.528221 Anserini +test738 Q0 9317479 24 10.303563 Anserini +test738 Q0 1714594 25 10.241665 Anserini +test738 Q0 6693263 26 10.125488 Anserini +test738 Q0 12297174 27 10.102311 Anserini +test738 Q0 15848364 28 9.992348 Anserini +test738 Q0 15848365 29 9.992348 Anserini +test738 Q0 16972256 30 9.942423 Anserini +test739 Q0 12831924 1 12.644766 Anserini +test739 Q0 2948696 2 12.448339 Anserini +test739 Q0 20091341 3 11.727791 Anserini +test739 Q0 2944436 4 11.312914 Anserini +test739 Q0 17129891 5 11.150339 Anserini +test739 Q0 19902900 6 11.148161 Anserini +test739 Q0 10189253 7 11.090338 Anserini +test739 Q0 10900573 8 10.934594 Anserini +test739 Q0 2948636 9 10.908577 Anserini +test739 Q0 20459417 10 10.835312 Anserini +test739 Q0 12831921 11 10.644109 Anserini +test739 Q0 15158789 12 10.493777 Anserini +test739 Q0 15360602 13 10.454160 Anserini +test739 Q0 15360598 14 10.448759 Anserini +test739 Q0 2944907 15 10.444111 Anserini +test739 Q0 20459420 16 10.410944 Anserini +test739 Q0 2948633 17 10.388373 Anserini +test739 Q0 12831927 18 10.314377 Anserini +test739 Q0 20811801 19 10.213930 Anserini +test739 Q0 12823127 20 10.198976 Anserini +test739 Q0 2738161 21 10.174134 Anserini +test739 Q0 7861623 22 10.119544 Anserini +test739 Q0 12903352 23 10.113222 Anserini +test739 Q0 16626067 24 10.064308 Anserini +test739 Q0 16875659 25 10.028292 Anserini +test739 Q0 19526337 26 10.024420 Anserini +test739 Q0 20408979 27 9.968629 Anserini +test739 Q0 14152489 28 9.839409 Anserini +test739 Q0 11553667 29 9.813400 Anserini +test739 Q0 16223847 30 9.790610 Anserini +test74 Q0 4325778 1 13.165274 Anserini +test74 Q0 5470212 2 12.134670 Anserini +test74 Q0 31981 3 11.703255 Anserini +test74 Q0 31997 4 11.703255 Anserini +test74 Q0 2194218 5 11.207808 Anserini +test74 Q0 2629803 6 11.195878 Anserini +test74 Q0 13753051 7 11.186425 Anserini +test74 Q0 12472186 8 11.162048 Anserini +test74 Q0 451829 9 11.152204 Anserini +test74 Q0 13753060 10 11.125072 Anserini +test74 Q0 4325786 11 11.110366 Anserini +test74 Q0 6229083 12 11.076630 Anserini +test74 Q0 6229080 13 11.076630 Anserini +test74 Q0 12357480 14 11.070596 Anserini +test74 Q0 128533 15 11.025839 Anserini +test74 Q0 1931967 16 10.937938 Anserini +test74 Q0 16401699 17 10.934477 Anserini +test74 Q0 7525278 18 10.928231 Anserini +test74 Q0 4325775 19 10.864853 Anserini +test74 Q0 8905721 20 10.839399 Anserini +test74 Q0 946590 21 10.670297 Anserini +test74 Q0 1580949 22 10.656945 Anserini +test74 Q0 4171581 23 10.609332 Anserini +test74 Q0 1931963 24 10.573107 Anserini +test74 Q0 1931961 25 10.489401 Anserini +test74 Q0 8905719 26 10.406818 Anserini +test74 Q0 7575742 27 10.406722 Anserini +test74 Q0 98007 28 10.374028 Anserini +test74 Q0 20151826 29 10.371948 Anserini +test74 Q0 2194173 30 10.316359 Anserini +test740 Q0 14307090 1 12.977934 Anserini +test740 Q0 13812293 2 12.913868 Anserini +test740 Q0 15384582 3 12.694938 Anserini +test740 Q0 17258910 4 12.652983 Anserini +test740 Q0 18515847 5 12.592453 Anserini +test740 Q0 10679156 6 12.574233 Anserini +test740 Q0 17258912 7 12.500952 Anserini +test740 Q0 20333406 8 12.488128 Anserini +test740 Q0 1471439 9 12.451532 Anserini +test740 Q0 20333405 10 12.287009 Anserini +test740 Q0 7946568 11 12.226360 Anserini +test740 Q0 18717765 12 12.204783 Anserini +test740 Q0 20680099 13 12.187545 Anserini +test740 Q0 14307111 14 12.161359 Anserini +test740 Q0 7946569 15 12.146190 Anserini +test740 Q0 19007928 16 12.127747 Anserini +test740 Q0 4872859 17 12.086216 Anserini +test740 Q0 1471441 18 12.080228 Anserini +test740 Q0 4872858 19 11.987016 Anserini +test740 Q0 18514009 20 11.969036 Anserini +test740 Q0 14070097 21 11.864402 Anserini +test740 Q0 13812301 22 11.851511 Anserini +test740 Q0 17258911 23 11.797548 Anserini +test740 Q0 1471433 24 11.796779 Anserini +test740 Q0 13130232 25 11.741275 Anserini +test740 Q0 1471407 26 11.656946 Anserini +test740 Q0 18514007 27 11.621991 Anserini +test740 Q0 12432304 28 11.582541 Anserini +test740 Q0 18514008 29 11.557612 Anserini +test740 Q0 18514006 30 11.545050 Anserini +test741 Q0 7756631 1 14.920424 Anserini +test741 Q0 7756636 2 14.502993 Anserini +test741 Q0 13519625 3 14.462794 Anserini +test741 Q0 2005742 4 14.017609 Anserini +test741 Q0 14494918 5 13.835224 Anserini +test741 Q0 3337158 6 13.530726 Anserini +test741 Q0 13496909 7 13.496475 Anserini +test741 Q0 12102577 8 13.472167 Anserini +test741 Q0 10856451 9 13.449123 Anserini +test741 Q0 2324982 10 13.436584 Anserini +test741 Q0 11913316 11 13.197419 Anserini +test741 Q0 13557678 12 13.136245 Anserini +test741 Q0 611518 13 13.061831 Anserini +test741 Q0 12522798 14 12.973855 Anserini +test741 Q0 13520406 15 12.953964 Anserini +test741 Q0 8006731 16 12.828417 Anserini +test741 Q0 13520405 17 12.812639 Anserini +test741 Q0 11680096 18 12.795602 Anserini +test741 Q0 7017872 19 12.752214 Anserini +test741 Q0 1475237 20 12.572059 Anserini +test741 Q0 7177092 21 12.481225 Anserini +test741 Q0 4617292 22 12.467190 Anserini +test741 Q0 11680097 23 12.387831 Anserini +test741 Q0 7684714 24 12.357870 Anserini +test741 Q0 19180213 25 12.330599 Anserini +test741 Q0 16070168 26 12.330418 Anserini +test741 Q0 10856440 27 12.293415 Anserini +test741 Q0 3602520 28 12.279070 Anserini +test741 Q0 1011148 29 12.258013 Anserini +test741 Q0 1738642 30 12.241848 Anserini +test742 Q0 7304526 1 12.144497 Anserini +test742 Q0 9010455 2 12.067694 Anserini +test742 Q0 13782965 3 11.944536 Anserini +test742 Q0 13782966 4 11.944536 Anserini +test742 Q0 10089731 5 11.944121 Anserini +test742 Q0 20722463 6 11.699598 Anserini +test742 Q0 4326843 7 11.682155 Anserini +test742 Q0 4493505 8 11.679427 Anserini +test742 Q0 2985617 9 11.583931 Anserini +test742 Q0 3332910 10 11.576019 Anserini +test742 Q0 20722464 11 11.508245 Anserini +test742 Q0 4462569 12 11.336623 Anserini +test742 Q0 14716511 13 11.314709 Anserini +test742 Q0 4322785 14 11.275551 Anserini +test742 Q0 15379610 15 11.191610 Anserini +test742 Q0 9087970 16 11.187997 Anserini +test742 Q0 8551446 17 11.101986 Anserini +test742 Q0 5233772 18 11.091574 Anserini +test742 Q0 681111 19 11.079933 Anserini +test742 Q0 10016739 20 11.022552 Anserini +test742 Q0 9419345 21 11.015441 Anserini +test742 Q0 10685444 22 10.985883 Anserini +test742 Q0 10398520 23 10.958189 Anserini +test742 Q0 13171163 24 10.950231 Anserini +test742 Q0 12724402 25 10.946238 Anserini +test742 Q0 8674038 26 10.938021 Anserini +test742 Q0 15235075 27 10.922468 Anserini +test742 Q0 5722527 28 10.893404 Anserini +test742 Q0 15502818 29 10.884371 Anserini +test742 Q0 8675159 30 10.857064 Anserini +test743 Q0 15607940 1 14.929780 Anserini +test743 Q0 15797008 2 14.669104 Anserini +test743 Q0 17887642 3 14.491464 Anserini +test743 Q0 15796985 4 14.301172 Anserini +test743 Q0 7709146 5 14.162193 Anserini +test743 Q0 15796972 6 13.898462 Anserini +test743 Q0 7236987 7 13.883841 Anserini +test743 Q0 9050946 8 13.865692 Anserini +test743 Q0 2438671 9 13.815216 Anserini +test743 Q0 15624253 10 13.765646 Anserini +test743 Q0 5660118 11 13.731007 Anserini +test743 Q0 15796829 12 13.730279 Anserini +test743 Q0 15796987 13 13.719495 Anserini +test743 Q0 18520654 14 13.626852 Anserini +test743 Q0 16227694 15 13.578104 Anserini +test743 Q0 5660124 16 13.549777 Anserini +test743 Q0 20011347 17 13.531297 Anserini +test743 Q0 15624254 18 13.283702 Anserini +test743 Q0 11885553 19 13.250215 Anserini +test743 Q0 15607941 20 13.243702 Anserini +test743 Q0 14819962 21 13.230722 Anserini +test743 Q0 15624248 22 13.130546 Anserini +test743 Q0 15629582 23 13.085006 Anserini +test743 Q0 15796863 24 13.062411 Anserini +test743 Q0 7236983 25 13.044722 Anserini +test743 Q0 11885556 26 13.029934 Anserini +test743 Q0 5164800 27 13.026821 Anserini +test743 Q0 20849547 28 13.008617 Anserini +test743 Q0 20954865 29 12.986902 Anserini +test743 Q0 17919200 30 12.937837 Anserini +test744 Q0 6057016 1 17.903568 Anserini +test744 Q0 6057021 2 17.245869 Anserini +test744 Q0 10233867 3 15.197615 Anserini +test744 Q0 2508440 4 14.974503 Anserini +test744 Q0 19430637 5 14.898890 Anserini +test744 Q0 19430638 6 14.842409 Anserini +test744 Q0 9371183 7 14.791582 Anserini +test744 Q0 17376030 8 14.771143 Anserini +test744 Q0 8387096 9 14.732868 Anserini +test744 Q0 17376027 10 14.685826 Anserini +test744 Q0 6057018 11 14.670908 Anserini +test744 Q0 13506883 12 14.626123 Anserini +test744 Q0 19295980 13 14.616836 Anserini +test744 Q0 10233864 14 14.604204 Anserini +test744 Q0 6057019 15 14.569722 Anserini +test744 Q0 8675057 16 14.566903 Anserini +test744 Q0 8675056 17 14.566903 Anserini +test744 Q0 13506881 18 14.566903 Anserini +test744 Q0 13384639 19 14.564648 Anserini +test744 Q0 9803998 20 14.553440 Anserini +test744 Q0 18475504 21 14.503456 Anserini +test744 Q0 16048500 22 14.482938 Anserini +test744 Q0 18052594 23 14.473606 Anserini +test744 Q0 9371187 24 14.469922 Anserini +test744 Q0 8901798 25 14.439022 Anserini +test744 Q0 7462139 26 14.095882 Anserini +test744 Q0 7462143 27 13.909883 Anserini +test744 Q0 17376028 28 13.838545 Anserini +test744 Q0 18207916 29 13.815583 Anserini +test744 Q0 7439715 30 13.812513 Anserini +test745 Q0 2171688 1 15.238955 Anserini +test745 Q0 13168852 2 14.941449 Anserini +test745 Q0 15872229 3 13.670707 Anserini +test745 Q0 3150066 4 13.666612 Anserini +test745 Q0 6378220 5 13.465238 Anserini +test745 Q0 15872231 6 13.364573 Anserini +test745 Q0 14443620 7 13.295771 Anserini +test745 Q0 13168849 8 13.279386 Anserini +test745 Q0 3380590 9 13.219574 Anserini +test745 Q0 2373256 10 13.025996 Anserini +test745 Q0 14287307 11 12.986058 Anserini +test745 Q0 6270786 12 12.961212 Anserini +test745 Q0 14287303 13 12.896818 Anserini +test745 Q0 13168837 14 12.869808 Anserini +test745 Q0 16006063 15 12.795206 Anserini +test745 Q0 4539034 16 12.727718 Anserini +test745 Q0 13168843 17 12.703959 Anserini +test745 Q0 359492 18 12.698196 Anserini +test745 Q0 13168848 19 12.662039 Anserini +test745 Q0 2150719 20 12.651815 Anserini +test745 Q0 2171683 21 12.637840 Anserini +test745 Q0 13813342 22 12.603509 Anserini +test745 Q0 9635954 23 12.535530 Anserini +test745 Q0 9904786 24 12.491990 Anserini +test745 Q0 16469127 25 12.425783 Anserini +test745 Q0 16909013 26 12.412973 Anserini +test745 Q0 17086146 27 12.371819 Anserini +test745 Q0 13694822 28 12.359119 Anserini +test745 Q0 16908997 29 12.106256 Anserini +test745 Q0 359493 30 12.103281 Anserini +test746 Q0 20703078 1 14.955516 Anserini +test746 Q0 17742879 2 14.329806 Anserini +test746 Q0 17742876 3 13.197672 Anserini +test746 Q0 20703080 4 13.062991 Anserini +test746 Q0 17742868 5 12.933037 Anserini +test746 Q0 20835372 6 12.817954 Anserini +test746 Q0 10093632 7 12.763659 Anserini +test746 Q0 20835371 8 12.726047 Anserini +test746 Q0 57103 9 12.687726 Anserini +test746 Q0 17742878 10 12.366324 Anserini +test746 Q0 2974140 11 12.271780 Anserini +test746 Q0 7326161 12 12.178675 Anserini +test746 Q0 57104 13 11.936331 Anserini +test746 Q0 3448088 14 11.851473 Anserini +test746 Q0 9334985 15 11.804079 Anserini +test746 Q0 18319944 16 11.771679 Anserini +test746 Q0 17742873 17 11.771679 Anserini +test746 Q0 17742877 18 11.771679 Anserini +test746 Q0 19716371 19 11.691046 Anserini +test746 Q0 11622569 20 11.671540 Anserini +test746 Q0 11463138 21 11.599758 Anserini +test746 Q0 11346977 22 11.584641 Anserini +test746 Q0 2089736 23 11.524927 Anserini +test746 Q0 12029536 24 11.518986 Anserini +test746 Q0 7717534 25 11.509196 Anserini +test746 Q0 3749222 26 11.443881 Anserini +test746 Q0 8739755 27 11.416710 Anserini +test746 Q0 19285894 28 11.375242 Anserini +test746 Q0 8757429 29 11.334731 Anserini +test746 Q0 12344595 30 11.292913 Anserini +test747 Q0 10235326 1 15.359568 Anserini +test747 Q0 10235329 2 15.359568 Anserini +test747 Q0 4811553 3 15.054323 Anserini +test747 Q0 18761857 4 14.942362 Anserini +test747 Q0 18742990 5 14.896533 Anserini +test747 Q0 14775054 6 14.625452 Anserini +test747 Q0 18761850 7 14.505238 Anserini +test747 Q0 7310953 8 14.501124 Anserini +test747 Q0 4811559 9 14.499539 Anserini +test747 Q0 11970983 10 14.454633 Anserini +test747 Q0 18761834 11 14.348312 Anserini +test747 Q0 2545012 12 14.332289 Anserini +test747 Q0 19087221 13 14.274641 Anserini +test747 Q0 14775084 14 14.245241 Anserini +test747 Q0 18761848 15 14.128326 Anserini +test747 Q0 19087240 16 14.082623 Anserini +test747 Q0 14775065 17 13.978230 Anserini +test747 Q0 11970967 18 13.923983 Anserini +test747 Q0 20161240 19 13.918653 Anserini +test747 Q0 15029278 20 13.913013 Anserini +test747 Q0 4811579 21 13.903269 Anserini +test747 Q0 13545796 22 13.891727 Anserini +test747 Q0 10185539 23 13.775848 Anserini +test747 Q0 19523331 24 13.684510 Anserini +test747 Q0 7261401 25 13.660491 Anserini +test747 Q0 7310947 26 13.625114 Anserini +test747 Q0 13545803 27 13.576538 Anserini +test747 Q0 18842061 28 13.543065 Anserini +test747 Q0 13545799 29 13.516554 Anserini +test747 Q0 15687769 30 13.486967 Anserini +test748 Q0 12661195 1 13.304409 Anserini +test748 Q0 16496215 2 12.830363 Anserini +test748 Q0 16496217 3 12.830363 Anserini +test748 Q0 12661220 4 12.825459 Anserini +test748 Q0 13152233 5 12.729440 Anserini +test748 Q0 15443378 6 12.559049 Anserini +test748 Q0 14290645 7 12.372267 Anserini +test748 Q0 12661212 8 11.976724 Anserini +test748 Q0 7731364 9 11.918701 Anserini +test748 Q0 12661214 10 11.874523 Anserini +test748 Q0 7233097 11 11.850719 Anserini +test748 Q0 14290669 12 11.849463 Anserini +test748 Q0 7731361 13 11.794396 Anserini +test748 Q0 11973210 14 11.674102 Anserini +test748 Q0 1963608 15 11.616401 Anserini +test748 Q0 7731363 16 11.612495 Anserini +test748 Q0 16559553 17 11.527258 Anserini +test748 Q0 12698658 18 11.439145 Anserini +test748 Q0 12661213 19 11.265916 Anserini +test748 Q0 3740134 20 11.226064 Anserini +test748 Q0 15443377 21 11.130524 Anserini +test748 Q0 17332610 22 11.130524 Anserini +test748 Q0 15443384 23 10.939101 Anserini +test748 Q0 12698657 24 10.909179 Anserini +test748 Q0 15443327 25 10.876956 Anserini +test748 Q0 1994075 26 10.867058 Anserini +test748 Q0 16596933 27 10.866670 Anserini +test748 Q0 19213196 28 10.817308 Anserini +test748 Q0 12661196 29 10.801167 Anserini +test748 Q0 3740129 30 10.714430 Anserini +test749 Q0 19383108 1 13.106394 Anserini +test749 Q0 13628272 2 12.771034 Anserini +test749 Q0 15512843 3 12.681269 Anserini +test749 Q0 15512871 4 12.519016 Anserini +test749 Q0 4383703 5 11.758118 Anserini +test749 Q0 1964172 6 11.569547 Anserini +test749 Q0 3514777 7 11.465190 Anserini +test749 Q0 15765552 8 11.292814 Anserini +test749 Q0 2134336 9 11.266012 Anserini +test749 Q0 10130506 10 11.188503 Anserini +test749 Q0 14916189 11 11.179188 Anserini +test749 Q0 15746615 12 11.084532 Anserini +test749 Q0 15814838 13 11.066905 Anserini +test749 Q0 8232983 14 11.017624 Anserini +test749 Q0 20958159 15 11.003595 Anserini +test749 Q0 15512870 16 10.895520 Anserini +test749 Q0 2134326 17 10.824950 Anserini +test749 Q0 4383693 18 10.707926 Anserini +test749 Q0 5629372 19 10.571030 Anserini +test749 Q0 2309922 20 10.544239 Anserini +test749 Q0 2134349 21 10.540033 Anserini +test749 Q0 15512846 22 10.511248 Anserini +test749 Q0 20888493 23 10.407030 Anserini +test749 Q0 207752 24 10.366490 Anserini +test749 Q0 2134337 25 10.366490 Anserini +test749 Q0 2134338 26 10.365070 Anserini +test749 Q0 1964160 27 10.360741 Anserini +test749 Q0 1964171 28 10.359009 Anserini +test749 Q0 15136238 29 10.343445 Anserini +test749 Q0 152304 30 10.283069 Anserini +test75 Q0 12589459 1 21.818380 Anserini +test75 Q0 12589488 2 21.818380 Anserini +test75 Q0 642004 3 18.559082 Anserini +test75 Q0 12589480 4 18.299015 Anserini +test75 Q0 15711360 5 17.868288 Anserini +test75 Q0 6582945 6 17.868288 Anserini +test75 Q0 642006 7 16.958223 Anserini +test75 Q0 12420051 8 16.596775 Anserini +test75 Q0 8627262 9 16.506506 Anserini +test75 Q0 12186783 10 16.375614 Anserini +test75 Q0 2866232 11 16.332310 Anserini +test75 Q0 10149990 12 16.325876 Anserini +test75 Q0 7442283 13 16.202011 Anserini +test75 Q0 5758090 14 16.146217 Anserini +test75 Q0 12420052 15 16.146217 Anserini +test75 Q0 10126588 16 16.056261 Anserini +test75 Q0 10009962 17 15.983240 Anserini +test75 Q0 2311236 18 15.951391 Anserini +test75 Q0 9322437 19 15.833460 Anserini +test75 Q0 9322435 20 15.668515 Anserini +test75 Q0 13031091 21 15.468451 Anserini +test75 Q0 454498 22 15.392756 Anserini +test75 Q0 347933 23 15.315382 Anserini +test75 Q0 4447313 24 15.261873 Anserini +test75 Q0 1515078 25 15.210558 Anserini +test75 Q0 12589469 26 15.137955 Anserini +test75 Q0 427271 27 15.133299 Anserini +test75 Q0 656891 28 15.063124 Anserini +test75 Q0 12589464 29 15.006967 Anserini +test75 Q0 13353494 30 14.972066 Anserini +test750 Q0 1991963 1 11.804593 Anserini +test750 Q0 19140649 2 11.005147 Anserini +test750 Q0 10882102 3 10.426657 Anserini +test750 Q0 4264506 4 10.253453 Anserini +test750 Q0 2861044 5 10.039633 Anserini +test750 Q0 1725712 6 10.015772 Anserini +test750 Q0 1991952 7 9.985199 Anserini +test750 Q0 1276435 8 9.876308 Anserini +test750 Q0 9481462 9 9.857088 Anserini +test750 Q0 11659497 10 9.754571 Anserini +test750 Q0 16156064 11 9.612457 Anserini +test750 Q0 15508821 12 9.606134 Anserini +test750 Q0 10064358 13 9.581471 Anserini +test750 Q0 10369744 14 9.540788 Anserini +test750 Q0 17015750 15 9.498944 Anserini +test750 Q0 17015751 16 9.498944 Anserini +test750 Q0 10624903 17 9.478378 Anserini +test750 Q0 9935105 18 9.463134 Anserini +test750 Q0 13407430 19 9.431163 Anserini +test750 Q0 11336718 20 9.398453 Anserini +test750 Q0 9442946 21 9.395720 Anserini +test750 Q0 7611473 22 9.387299 Anserini +test750 Q0 2191053 23 9.352579 Anserini +test750 Q0 5079941 24 9.318832 Anserini +test750 Q0 7941482 25 9.303055 Anserini +test750 Q0 962244 26 9.300577 Anserini +test750 Q0 7590427 27 9.267925 Anserini +test750 Q0 10779325 28 9.237520 Anserini +test750 Q0 18192739 29 9.221518 Anserini +test750 Q0 9657076 30 9.217423 Anserini +test751 Q0 10941705 1 20.314234 Anserini +test751 Q0 6180525 2 20.267899 Anserini +test751 Q0 10943501 3 17.017267 Anserini +test751 Q0 10943447 4 16.482113 Anserini +test751 Q0 196878 5 16.237783 Anserini +test751 Q0 17515187 6 15.803204 Anserini +test751 Q0 10707086 7 15.315318 Anserini +test751 Q0 196882 8 14.666627 Anserini +test751 Q0 10941712 9 14.233143 Anserini +test751 Q0 10941703 10 14.145588 Anserini +test751 Q0 1944110 11 14.012524 Anserini +test751 Q0 3434020 12 13.957737 Anserini +test751 Q0 2603769 13 13.698405 Anserini +test751 Q0 10164943 14 13.565256 Anserini +test751 Q0 2183007 15 13.537919 Anserini +test751 Q0 196883 16 13.530119 Anserini +test751 Q0 9405307 17 13.414241 Anserini +test751 Q0 6180536 18 13.371161 Anserini +test751 Q0 5654236 19 13.357633 Anserini +test751 Q0 10943503 20 13.264227 Anserini +test751 Q0 196881 21 13.247647 Anserini +test751 Q0 1779497 22 13.201107 Anserini +test751 Q0 10398058 23 13.024219 Anserini +test751 Q0 6553145 24 13.003835 Anserini +test751 Q0 18257712 25 12.986058 Anserini +test751 Q0 19062023 26 12.986058 Anserini +test751 Q0 6553144 27 12.957207 Anserini +test751 Q0 6167357 28 12.884653 Anserini +test751 Q0 6180534 29 12.607430 Anserini +test751 Q0 4534098 30 12.600838 Anserini +test752 Q0 1665366 1 12.735865 Anserini +test752 Q0 2495144 2 12.716506 Anserini +test752 Q0 2495131 3 12.566526 Anserini +test752 Q0 4932207 4 11.821075 Anserini +test752 Q0 8031574 5 11.618265 Anserini +test752 Q0 16107829 6 11.615291 Anserini +test752 Q0 3779225 7 11.536239 Anserini +test752 Q0 15626150 8 11.483168 Anserini +test752 Q0 4034585 9 11.426725 Anserini +test752 Q0 17240625 10 11.274521 Anserini +test752 Q0 9338860 11 11.263891 Anserini +test752 Q0 6780698 12 11.195772 Anserini +test752 Q0 14644565 13 11.167693 Anserini +test752 Q0 2495135 14 11.165401 Anserini +test752 Q0 1930960 15 11.074773 Anserini +test752 Q0 20787348 16 11.074764 Anserini +test752 Q0 1502041 17 11.045318 Anserini +test752 Q0 899462 18 10.995831 Anserini +test752 Q0 8197423 19 10.979388 Anserini +test752 Q0 4127662 20 10.976574 Anserini +test752 Q0 18200374 21 10.962286 Anserini +test752 Q0 15537638 22 10.935227 Anserini +test752 Q0 11360463 23 10.919336 Anserini +test752 Q0 2947926 24 10.899010 Anserini +test752 Q0 5564467 25 10.877769 Anserini +test752 Q0 19265207 26 10.849306 Anserini +test752 Q0 2495132 27 10.834336 Anserini +test752 Q0 18585947 28 10.832173 Anserini +test752 Q0 15071540 29 10.770038 Anserini +test752 Q0 16942059 30 10.750106 Anserini +test753 Q0 20914576 1 13.583318 Anserini +test753 Q0 245124 2 13.248179 Anserini +test753 Q0 939382 3 12.739727 Anserini +test753 Q0 2856749 4 12.465948 Anserini +test753 Q0 11252801 5 12.386468 Anserini +test753 Q0 12444362 6 12.323776 Anserini +test753 Q0 245095 7 12.316280 Anserini +test753 Q0 245120 8 12.138418 Anserini +test753 Q0 2896046 9 12.112135 Anserini +test753 Q0 11415233 10 12.103196 Anserini +test753 Q0 475491 11 12.046303 Anserini +test753 Q0 1962868 12 12.023275 Anserini +test753 Q0 10161750 13 11.968916 Anserini +test753 Q0 10243654 14 11.801558 Anserini +test753 Q0 10875062 15 11.795707 Anserini +test753 Q0 7132426 16 11.784351 Anserini +test753 Q0 10516165 17 11.536041 Anserini +test753 Q0 4221896 18 11.492806 Anserini +test753 Q0 8456416 19 11.455689 Anserini +test753 Q0 7038247 20 11.392659 Anserini +test753 Q0 11348765 21 11.343614 Anserini +test753 Q0 6075049 22 11.332872 Anserini +test753 Q0 6966368 23 11.324099 Anserini +test753 Q0 6966363 24 11.320984 Anserini +test753 Q0 12988129 25 11.318967 Anserini +test753 Q0 1949669 26 11.264028 Anserini +test753 Q0 16584805 27 11.240203 Anserini +test753 Q0 1962883 28 11.203505 Anserini +test753 Q0 8136885 29 11.200371 Anserini +test753 Q0 19469655 30 11.193359 Anserini +test754 Q0 17524551 1 14.575143 Anserini +test754 Q0 504678 2 14.242477 Anserini +test754 Q0 2428188 3 13.983856 Anserini +test754 Q0 504540 4 13.976195 Anserini +test754 Q0 14699726 5 13.398872 Anserini +test754 Q0 17446899 6 12.876784 Anserini +test754 Q0 13173940 7 12.355181 Anserini +test754 Q0 19925531 8 12.291080 Anserini +test754 Q0 6905492 9 12.233507 Anserini +test754 Q0 13047753 10 12.103855 Anserini +test754 Q0 12712321 11 12.092460 Anserini +test754 Q0 16235792 12 12.086725 Anserini +test754 Q0 6289644 13 12.051888 Anserini +test754 Q0 928961 14 11.986088 Anserini +test754 Q0 6289646 15 11.970699 Anserini +test754 Q0 2517192 16 11.938185 Anserini +test754 Q0 15627681 17 11.884769 Anserini +test754 Q0 18624320 18 11.875168 Anserini +test754 Q0 566381 19 11.836696 Anserini +test754 Q0 16293907 20 11.822733 Anserini +test754 Q0 293408 21 11.795226 Anserini +test754 Q0 504615 22 11.788514 Anserini +test754 Q0 17853559 23 11.648560 Anserini +test754 Q0 18126154 24 11.633016 Anserini +test754 Q0 17524552 25 11.544892 Anserini +test754 Q0 512198 26 11.536933 Anserini +test754 Q0 512143 27 11.458137 Anserini +test754 Q0 8637587 28 11.456419 Anserini +test754 Q0 502816 29 11.358045 Anserini +test754 Q0 11538489 30 11.322132 Anserini +test755 Q0 12881699 1 16.437576 Anserini +test755 Q0 12881698 2 16.331715 Anserini +test755 Q0 19376999 3 15.236626 Anserini +test755 Q0 1721107 4 14.649683 Anserini +test755 Q0 19377001 5 14.135192 Anserini +test755 Q0 15256086 6 13.835813 Anserini +test755 Q0 15216292 7 13.762911 Anserini +test755 Q0 12881691 8 13.660328 Anserini +test755 Q0 19377002 9 13.251857 Anserini +test755 Q0 18045968 10 13.118349 Anserini +test755 Q0 15978273 11 12.682730 Anserini +test755 Q0 13760107 12 12.343237 Anserini +test755 Q0 15256087 13 12.279996 Anserini +test755 Q0 7054520 14 12.211144 Anserini +test755 Q0 14761263 15 12.101522 Anserini +test755 Q0 12881689 16 12.048328 Anserini +test755 Q0 4058504 17 11.967790 Anserini +test755 Q0 15395079 18 11.821247 Anserini +test755 Q0 12881684 19 11.791206 Anserini +test755 Q0 12881685 20 11.722103 Anserini +test755 Q0 13760112 21 11.495399 Anserini +test755 Q0 12881692 22 11.431205 Anserini +test755 Q0 12881688 23 11.396124 Anserini +test755 Q0 20488857 24 11.390629 Anserini +test755 Q0 10219164 25 11.371772 Anserini +test755 Q0 18862837 26 11.332614 Anserini +test755 Q0 14801289 27 11.331903 Anserini +test755 Q0 12881694 28 11.112343 Anserini +test755 Q0 12881693 29 11.010084 Anserini +test755 Q0 18733454 30 10.896507 Anserini +test756 Q0 12542949 1 14.536191 Anserini +test756 Q0 13366114 2 13.976962 Anserini +test756 Q0 12437570 3 13.706655 Anserini +test756 Q0 13548179 4 13.452170 Anserini +test756 Q0 11844021 5 13.412500 Anserini +test756 Q0 13366122 6 13.364937 Anserini +test756 Q0 16517631 7 13.176840 Anserini +test756 Q0 12437572 8 13.097639 Anserini +test756 Q0 14570704 9 12.845847 Anserini +test756 Q0 9979137 10 12.488828 Anserini +test756 Q0 10902337 11 12.400060 Anserini +test756 Q0 11424721 12 12.311068 Anserini +test756 Q0 16642296 13 12.300102 Anserini +test756 Q0 10902339 14 12.300102 Anserini +test756 Q0 15009042 15 12.193284 Anserini +test756 Q0 8534107 16 12.186453 Anserini +test756 Q0 12437536 17 12.177456 Anserini +test756 Q0 12437540 18 12.105149 Anserini +test756 Q0 15680182 19 12.095972 Anserini +test756 Q0 15628114 20 12.053834 Anserini +test756 Q0 11844027 21 12.044182 Anserini +test756 Q0 11459799 22 12.033615 Anserini +test756 Q0 8460280 23 12.009281 Anserini +test756 Q0 19342932 24 11.933889 Anserini +test756 Q0 14581112 25 11.916782 Anserini +test756 Q0 11459786 26 11.903171 Anserini +test756 Q0 11909375 27 11.837587 Anserini +test756 Q0 12437547 28 11.798261 Anserini +test756 Q0 5675767 29 11.690502 Anserini +test756 Q0 12437562 30 11.635159 Anserini +test757 Q0 5530004 1 10.533077 Anserini +test757 Q0 12832367 2 10.513361 Anserini +test757 Q0 19720084 3 10.377090 Anserini +test757 Q0 19636275 4 10.302605 Anserini +test757 Q0 19636274 5 10.302605 Anserini +test757 Q0 3807389 6 10.212379 Anserini +test757 Q0 7476481 7 10.178348 Anserini +test757 Q0 7142564 8 10.084558 Anserini +test757 Q0 3016602 9 10.021959 Anserini +test757 Q0 19707232 10 9.978334 Anserini +test757 Q0 19707233 11 9.901996 Anserini +test757 Q0 16018188 12 9.901364 Anserini +test757 Q0 19720085 13 9.892104 Anserini +test757 Q0 16201661 14 9.877422 Anserini +test757 Q0 14244063 15 9.862142 Anserini +test757 Q0 16201637 16 9.813769 Anserini +test757 Q0 5530003 17 9.810980 Anserini +test757 Q0 16633242 18 9.757589 Anserini +test757 Q0 18251905 19 9.739928 Anserini +test757 Q0 16018187 20 9.696466 Anserini +test757 Q0 14675319 21 9.603086 Anserini +test757 Q0 16201641 22 9.523417 Anserini +test757 Q0 13966603 23 9.464539 Anserini +test757 Q0 16201635 24 9.463858 Anserini +test757 Q0 12253689 25 9.424625 Anserini +test757 Q0 12253699 26 9.424625 Anserini +test757 Q0 16483254 27 9.376446 Anserini +test757 Q0 19626226 28 9.358179 Anserini +test757 Q0 5785457 29 9.345845 Anserini +test757 Q0 17807957 30 9.285041 Anserini +test758 Q0 4214568 1 13.599041 Anserini +test758 Q0 4214581 2 11.801687 Anserini +test758 Q0 18566063 3 11.508349 Anserini +test758 Q0 18566061 4 11.489152 Anserini +test758 Q0 13050362 5 11.232258 Anserini +test758 Q0 18333395 6 11.232258 Anserini +test758 Q0 13050360 7 11.186596 Anserini +test758 Q0 13050357 8 11.186596 Anserini +test758 Q0 18333394 9 11.186596 Anserini +test758 Q0 4214562 10 11.172888 Anserini +test758 Q0 18566062 11 11.100301 Anserini +test758 Q0 288107 12 10.919772 Anserini +test758 Q0 13050358 13 10.695746 Anserini +test758 Q0 9897994 14 10.666271 Anserini +test758 Q0 4214550 15 10.530222 Anserini +test758 Q0 4214579 16 10.519704 Anserini +test758 Q0 6149548 17 10.170404 Anserini +test758 Q0 9212483 18 9.972751 Anserini +test758 Q0 14254547 19 9.899347 Anserini +test758 Q0 15752023 20 9.862926 Anserini +test758 Q0 4814435 21 9.859758 Anserini +test758 Q0 974342 22 9.825032 Anserini +test758 Q0 1625791 23 9.803978 Anserini +test758 Q0 6318786 24 9.798815 Anserini +test758 Q0 6318785 25 9.655247 Anserini +test758 Q0 4214571 26 9.622008 Anserini +test758 Q0 1484298 27 9.622008 Anserini +test758 Q0 4214551 28 9.622008 Anserini +test758 Q0 4214580 29 9.555183 Anserini +test758 Q0 9922380 30 9.504675 Anserini +test759 Q0 368407 1 10.441975 Anserini +test759 Q0 18193418 2 9.938991 Anserini +test759 Q0 9693534 3 9.624332 Anserini +test759 Q0 10994963 4 9.512703 Anserini +test759 Q0 334570 5 9.298445 Anserini +test759 Q0 11639436 6 9.231052 Anserini +test759 Q0 8323098 7 9.200523 Anserini +test759 Q0 16116045 8 9.032110 Anserini +test759 Q0 4951920 9 8.894341 Anserini +test759 Q0 8323078 10 8.888889 Anserini +test759 Q0 13840118 11 8.888889 Anserini +test759 Q0 20666630 12 8.753194 Anserini +test759 Q0 19697672 13 8.746441 Anserini +test759 Q0 12035066 14 8.690853 Anserini +test759 Q0 20000402 15 8.635957 Anserini +test759 Q0 3651633 16 8.598391 Anserini +test759 Q0 6368709 17 8.598391 Anserini +test759 Q0 19024629 18 8.556864 Anserini +test759 Q0 19868038 19 8.556864 Anserini +test759 Q0 6781394 20 8.548351 Anserini +test759 Q0 3869836 21 8.490481 Anserini +test759 Q0 15359656 22 8.479262 Anserini +test759 Q0 5533442 23 8.479262 Anserini +test759 Q0 18736647 24 8.479262 Anserini +test759 Q0 12181969 25 8.447497 Anserini +test759 Q0 5005546 26 8.447497 Anserini +test759 Q0 8323079 27 8.445453 Anserini +test759 Q0 12686648 28 8.370255 Anserini +test759 Q0 15853948 29 8.369312 Anserini +test759 Q0 20463555 30 8.328372 Anserini +test76 Q0 20256315 1 18.298660 Anserini +test76 Q0 14557351 2 18.188253 Anserini +test76 Q0 20256318 3 17.865122 Anserini +test76 Q0 12888916 4 17.552458 Anserini +test76 Q0 19320580 5 17.410702 Anserini +test76 Q0 14557353 6 17.359859 Anserini +test76 Q0 14557352 7 16.815575 Anserini +test76 Q0 5175332 8 16.703541 Anserini +test76 Q0 12888931 9 16.632479 Anserini +test76 Q0 10927664 10 16.401342 Anserini +test76 Q0 14557354 11 16.240301 Anserini +test76 Q0 4621332 12 15.819307 Anserini +test76 Q0 4621330 13 15.646829 Anserini +test76 Q0 5194676 14 15.645313 Anserini +test76 Q0 5194672 15 15.630746 Anserini +test76 Q0 4352723 16 15.168979 Anserini +test76 Q0 5194703 17 15.046204 Anserini +test76 Q0 5194701 18 15.015878 Anserini +test76 Q0 5189670 19 15.007967 Anserini +test76 Q0 5189669 20 15.000403 Anserini +test76 Q0 2744000 21 14.974331 Anserini +test76 Q0 4352743 22 14.780033 Anserini +test76 Q0 11862552 23 14.636288 Anserini +test76 Q0 2743976 24 14.635764 Anserini +test76 Q0 19320579 25 14.627995 Anserini +test76 Q0 481828 26 14.505008 Anserini +test76 Q0 13564591 27 14.466797 Anserini +test76 Q0 5931430 28 14.434030 Anserini +test76 Q0 19752116 29 14.295057 Anserini +test76 Q0 3974561 30 14.198259 Anserini +test760 Q0 7745986 1 19.561804 Anserini +test760 Q0 7745987 2 18.098450 Anserini +test760 Q0 7745990 3 17.058496 Anserini +test760 Q0 5819082 4 16.912140 Anserini +test760 Q0 7745988 5 16.498892 Anserini +test760 Q0 7736138 6 15.482296 Anserini +test760 Q0 5819085 7 13.552080 Anserini +test760 Q0 14205121 8 13.087089 Anserini +test760 Q0 10140634 9 12.520422 Anserini +test760 Q0 7745989 10 12.397739 Anserini +test760 Q0 4665640 11 11.029686 Anserini +test760 Q0 7746099 12 10.786171 Anserini +test760 Q0 6207451 13 10.567142 Anserini +test760 Q0 6871549 14 10.502842 Anserini +test760 Q0 741113 15 10.478397 Anserini +test760 Q0 7746116 16 10.446252 Anserini +test760 Q0 7736132 17 10.431638 Anserini +test760 Q0 7746115 18 10.234107 Anserini +test760 Q0 7768786 19 10.191632 Anserini +test760 Q0 15183854 20 10.161036 Anserini +test760 Q0 15183858 21 10.161036 Anserini +test760 Q0 2643804 22 10.143175 Anserini +test760 Q0 7746098 23 10.114393 Anserini +test760 Q0 6418443 24 10.065062 Anserini +test760 Q0 16987991 25 10.020216 Anserini +test760 Q0 13203457 26 10.010814 Anserini +test760 Q0 8378817 27 9.960567 Anserini +test760 Q0 11829555 28 9.842039 Anserini +test760 Q0 20547433 29 9.835559 Anserini +test760 Q0 9698698 30 9.751139 Anserini +test761 Q0 3302207 1 15.751390 Anserini +test761 Q0 3302215 2 15.737839 Anserini +test761 Q0 7664144 3 14.924097 Anserini +test761 Q0 3302213 4 14.266455 Anserini +test761 Q0 3302197 5 13.993646 Anserini +test761 Q0 6862719 6 13.919473 Anserini +test761 Q0 1774339 7 13.860739 Anserini +test761 Q0 3698241 8 13.289288 Anserini +test761 Q0 3302210 9 12.973168 Anserini +test761 Q0 1774342 10 12.879649 Anserini +test761 Q0 7664150 11 12.822752 Anserini +test761 Q0 3302233 12 12.524026 Anserini +test761 Q0 7664142 13 12.301190 Anserini +test761 Q0 5071322 14 12.293786 Anserini +test761 Q0 7664152 15 12.113323 Anserini +test761 Q0 3302211 16 12.064476 Anserini +test761 Q0 7664158 17 11.910480 Anserini +test761 Q0 5071321 18 11.681369 Anserini +test761 Q0 7664146 19 11.614750 Anserini +test761 Q0 14798390 20 11.513593 Anserini +test761 Q0 8880469 21 11.504582 Anserini +test761 Q0 1904722 22 11.470083 Anserini +test761 Q0 2953398 23 11.463503 Anserini +test761 Q0 14798391 24 11.434447 Anserini +test761 Q0 20557934 25 11.404826 Anserini +test761 Q0 18567082 26 11.367172 Anserini +test761 Q0 3302202 27 11.359328 Anserini +test761 Q0 18464128 28 11.320867 Anserini +test761 Q0 5202393 29 11.274130 Anserini +test761 Q0 8666059 30 11.061944 Anserini +test762 Q0 335333 1 14.234459 Anserini +test762 Q0 4042931 2 13.459988 Anserini +test762 Q0 359769 3 13.286273 Anserini +test762 Q0 7301708 4 13.141218 Anserini +test762 Q0 20253096 5 12.798676 Anserini +test762 Q0 6727829 6 12.277470 Anserini +test762 Q0 19455797 7 12.215761 Anserini +test762 Q0 399788 8 12.200278 Anserini +test762 Q0 12394509 9 12.119310 Anserini +test762 Q0 4664412 10 12.040762 Anserini +test762 Q0 17371986 11 11.916775 Anserini +test762 Q0 9367902 12 11.898657 Anserini +test762 Q0 17892360 13 11.895006 Anserini +test762 Q0 1832121 14 11.869796 Anserini +test762 Q0 11863571 15 11.856563 Anserini +test762 Q0 12573974 16 11.851398 Anserini +test762 Q0 17295916 17 11.846245 Anserini +test762 Q0 679853 18 11.750980 Anserini +test762 Q0 10137551 19 11.668466 Anserini +test762 Q0 335314 20 11.542093 Anserini +test762 Q0 10591756 21 11.533667 Anserini +test762 Q0 4141762 22 11.509312 Anserini +test762 Q0 10633861 23 11.482823 Anserini +test762 Q0 335330 24 11.480179 Anserini +test762 Q0 126259 25 11.479757 Anserini +test762 Q0 13206552 26 11.432682 Anserini +test762 Q0 20037522 27 11.423727 Anserini +test762 Q0 2883053 28 11.401951 Anserini +test762 Q0 5414423 29 11.401868 Anserini +test762 Q0 17295909 30 11.401506 Anserini +test763 Q0 14944129 1 23.138250 Anserini +test763 Q0 14944125 2 21.339331 Anserini +test763 Q0 14944128 3 21.269949 Anserini +test763 Q0 4830508 4 19.442245 Anserini +test763 Q0 8498193 5 19.244202 Anserini +test763 Q0 8498177 6 19.104094 Anserini +test763 Q0 8779913 7 18.866106 Anserini +test763 Q0 2194632 8 18.712662 Anserini +test763 Q0 2136005 9 18.531975 Anserini +test763 Q0 11096052 10 18.477415 Anserini +test763 Q0 13984911 11 18.405067 Anserini +test763 Q0 11856429 12 18.362900 Anserini +test763 Q0 12757435 13 18.102715 Anserini +test763 Q0 10595611 14 17.963282 Anserini +test763 Q0 9445465 15 17.869007 Anserini +test763 Q0 10595594 16 17.829729 Anserini +test763 Q0 2136660 17 17.821272 Anserini +test763 Q0 13984909 18 17.704628 Anserini +test763 Q0 14192841 19 17.602276 Anserini +test763 Q0 17235312 20 17.501184 Anserini +test763 Q0 10725888 21 17.385963 Anserini +test763 Q0 12975717 22 17.350952 Anserini +test763 Q0 18021708 23 17.303314 Anserini +test763 Q0 12728473 24 17.193851 Anserini +test763 Q0 19452008 25 17.146620 Anserini +test763 Q0 19452009 26 17.146620 Anserini +test763 Q0 14531686 27 17.097023 Anserini +test763 Q0 18095660 28 17.053589 Anserini +test763 Q0 15691741 29 16.943235 Anserini +test763 Q0 12718878 30 16.872953 Anserini +test764 Q0 17076841 1 15.666471 Anserini +test764 Q0 17076867 2 15.389177 Anserini +test764 Q0 17079299 3 15.088133 Anserini +test764 Q0 4450419 4 14.524511 Anserini +test764 Q0 19152711 5 14.402647 Anserini +test764 Q0 18567782 6 14.023058 Anserini +test764 Q0 19152710 7 13.819216 Anserini +test764 Q0 2541394 8 13.731935 Anserini +test764 Q0 2734472 9 13.426842 Anserini +test764 Q0 4450428 10 13.382550 Anserini +test764 Q0 12810378 11 13.308130 Anserini +test764 Q0 10271205 12 13.298286 Anserini +test764 Q0 7087558 13 13.258325 Anserini +test764 Q0 289095 14 13.160212 Anserini +test764 Q0 1491940 15 13.143986 Anserini +test764 Q0 2515108 16 13.125204 Anserini +test764 Q0 18567776 17 13.122216 Anserini +test764 Q0 18567794 18 13.122216 Anserini +test764 Q0 7045167 19 13.102799 Anserini +test764 Q0 17836781 20 13.032051 Anserini +test764 Q0 17076836 21 13.001907 Anserini +test764 Q0 16905592 22 12.966726 Anserini +test764 Q0 2717804 23 12.941156 Anserini +test764 Q0 3893629 24 12.891107 Anserini +test764 Q0 9468485 25 12.833578 Anserini +test764 Q0 394038 26 12.763782 Anserini +test764 Q0 394870 27 12.740412 Anserini +test764 Q0 393893 28 12.690336 Anserini +test764 Q0 3034528 29 12.683100 Anserini +test764 Q0 2417020 30 12.662162 Anserini +test765 Q0 7801945 1 12.107975 Anserini +test765 Q0 6527857 2 11.881085 Anserini +test765 Q0 19152711 3 10.936375 Anserini +test765 Q0 1784153 4 10.769123 Anserini +test765 Q0 3527042 5 10.593621 Anserini +test765 Q0 11638471 6 10.528382 Anserini +test765 Q0 7801946 7 10.514286 Anserini +test765 Q0 6527849 8 10.284932 Anserini +test765 Q0 3527033 9 10.283369 Anserini +test765 Q0 5830401 10 10.282844 Anserini +test765 Q0 18563346 11 10.104155 Anserini +test765 Q0 3527035 12 10.100309 Anserini +test765 Q0 2734530 13 10.062467 Anserini +test765 Q0 9468498 14 10.058527 Anserini +test765 Q0 6527853 15 10.058527 Anserini +test765 Q0 3941521 16 9.910725 Anserini +test765 Q0 18563356 17 9.882509 Anserini +test765 Q0 2734539 18 9.874397 Anserini +test765 Q0 7682157 19 9.852221 Anserini +test765 Q0 20550655 20 9.675200 Anserini +test765 Q0 11005310 21 9.658895 Anserini +test765 Q0 17076837 22 9.608748 Anserini +test765 Q0 1349408 23 9.599266 Anserini +test765 Q0 5653866 24 9.590609 Anserini +test765 Q0 6982256 25 9.574016 Anserini +test765 Q0 17076868 26 9.550758 Anserini +test765 Q0 14171389 27 9.533193 Anserini +test765 Q0 7141050 28 9.524845 Anserini +test765 Q0 7045162 29 9.493656 Anserini +test765 Q0 6527863 30 9.479002 Anserini +test766 Q0 20010031 1 10.509976 Anserini +test766 Q0 13045397 2 8.539400 Anserini +test766 Q0 1808722 3 8.417694 Anserini +test766 Q0 19404273 4 8.387706 Anserini +test766 Q0 15658652 5 8.360612 Anserini +test766 Q0 2247622 6 8.295120 Anserini +test766 Q0 17096315 7 8.169368 Anserini +test766 Q0 1481785 8 8.111568 Anserini +test766 Q0 19515557 9 8.094893 Anserini +test766 Q0 6344492 10 8.062075 Anserini +test766 Q0 8027995 11 8.062075 Anserini +test766 Q0 13085065 12 8.033136 Anserini +test766 Q0 10179665 13 7.977206 Anserini +test766 Q0 14745418 14 7.963303 Anserini +test766 Q0 17096314 15 7.962747 Anserini +test766 Q0 19404271 16 7.950970 Anserini +test766 Q0 1468817 17 7.940771 Anserini +test766 Q0 1858188 18 7.920403 Anserini +test766 Q0 14343957 19 7.914730 Anserini +test766 Q0 1339063 20 7.894104 Anserini +test766 Q0 1925442 21 7.876835 Anserini +test766 Q0 20224436 22 7.838860 Anserini +test766 Q0 986519 23 7.838860 Anserini +test766 Q0 7706344 24 7.824457 Anserini +test766 Q0 6282222 25 7.808566 Anserini +test766 Q0 11975768 26 7.770423 Anserini +test766 Q0 2284707 27 7.746010 Anserini +test766 Q0 13651140 28 7.744803 Anserini +test766 Q0 1294630 29 7.728561 Anserini +test766 Q0 19702171 30 7.716120 Anserini +test767 Q0 12701211 1 12.037338 Anserini +test767 Q0 4448922 2 11.116494 Anserini +test767 Q0 15015177 3 10.855366 Anserini +test767 Q0 15380627 4 10.799164 Anserini +test767 Q0 19691792 5 10.730758 Anserini +test767 Q0 16186371 6 10.609345 Anserini +test767 Q0 8676889 7 10.493625 Anserini +test767 Q0 9383431 8 10.366671 Anserini +test767 Q0 20276735 9 10.352468 Anserini +test767 Q0 17194309 10 10.347720 Anserini +test767 Q0 2657650 11 10.314856 Anserini +test767 Q0 4521439 12 10.312107 Anserini +test767 Q0 8676886 13 10.299841 Anserini +test767 Q0 5668287 14 10.217488 Anserini +test767 Q0 70145 15 10.148917 Anserini +test767 Q0 13186497 16 10.125181 Anserini +test767 Q0 14092321 17 10.075832 Anserini +test767 Q0 6770946 18 9.943675 Anserini +test767 Q0 1495578 19 9.937403 Anserini +test767 Q0 9357618 20 9.788574 Anserini +test767 Q0 1977890 21 9.770545 Anserini +test767 Q0 6926479 22 9.694665 Anserini +test767 Q0 740980 23 9.671390 Anserini +test767 Q0 17171333 24 9.653650 Anserini +test767 Q0 79265 25 9.639641 Anserini +test767 Q0 10082002 26 9.624456 Anserini +test767 Q0 10757728 27 9.624456 Anserini +test767 Q0 5168303 28 9.612166 Anserini +test767 Q0 5443389 29 9.598403 Anserini +test767 Q0 9187110 30 9.574819 Anserini +test768 Q0 14670060 1 12.036174 Anserini +test768 Q0 7248641 2 11.546370 Anserini +test768 Q0 9032038 3 11.417980 Anserini +test768 Q0 13303335 4 11.402069 Anserini +test768 Q0 5423236 5 11.128220 Anserini +test768 Q0 16670673 6 11.124572 Anserini +test768 Q0 12645395 7 11.087773 Anserini +test768 Q0 19805199 8 11.062378 Anserini +test768 Q0 15236431 9 11.044158 Anserini +test768 Q0 9497377 10 11.017161 Anserini +test768 Q0 20194434 11 10.998159 Anserini +test768 Q0 8485601 12 10.996210 Anserini +test768 Q0 16326077 13 10.993497 Anserini +test768 Q0 8459638 14 10.963299 Anserini +test768 Q0 10901703 15 10.947856 Anserini +test768 Q0 8459646 16 10.939487 Anserini +test768 Q0 14998715 17 10.820045 Anserini +test768 Q0 8094169 18 10.753800 Anserini +test768 Q0 8485596 19 10.738749 Anserini +test768 Q0 7374157 20 10.705963 Anserini +test768 Q0 20194436 21 10.694824 Anserini +test768 Q0 3594115 22 10.692406 Anserini +test768 Q0 10082036 23 10.668648 Anserini +test768 Q0 2042960 24 10.637947 Anserini +test768 Q0 7783604 25 10.626272 Anserini +test768 Q0 12410838 26 10.621267 Anserini +test768 Q0 18967000 27 10.563064 Anserini +test768 Q0 11778990 28 10.560555 Anserini +test768 Q0 7961435 29 10.526418 Anserini +test768 Q0 10757099 30 10.480064 Anserini +test769 Q0 11667075 1 16.740236 Anserini +test769 Q0 1833172 2 16.031380 Anserini +test769 Q0 1361475 3 15.802765 Anserini +test769 Q0 3950959 4 15.778083 Anserini +test769 Q0 2104041 5 15.496724 Anserini +test769 Q0 11904500 6 15.340537 Anserini +test769 Q0 5480927 7 15.148377 Anserini +test769 Q0 14825591 8 15.118105 Anserini +test769 Q0 3130574 9 14.941819 Anserini +test769 Q0 1833137 10 14.911320 Anserini +test769 Q0 18768983 11 14.674347 Anserini +test769 Q0 4304196 12 14.629155 Anserini +test769 Q0 9248410 13 14.613340 Anserini +test769 Q0 12446798 14 14.467813 Anserini +test769 Q0 11903390 15 14.417171 Anserini +test769 Q0 9708651 16 14.298966 Anserini +test769 Q0 12626348 17 14.280407 Anserini +test769 Q0 3486587 18 14.263567 Anserini +test769 Q0 6927531 19 14.261212 Anserini +test769 Q0 1877390 20 14.229403 Anserini +test769 Q0 9708601 21 14.221558 Anserini +test769 Q0 8497201 22 14.149808 Anserini +test769 Q0 14368575 23 14.144922 Anserini +test769 Q0 19083240 24 14.097181 Anserini +test769 Q0 18364710 25 13.972113 Anserini +test769 Q0 18553709 26 13.959634 Anserini +test769 Q0 10766384 27 13.950542 Anserini +test769 Q0 18081592 28 13.929924 Anserini +test769 Q0 3363378 29 13.907297 Anserini +test769 Q0 4048736 30 13.810305 Anserini +test77 Q0 11419167 1 18.804161 Anserini +test77 Q0 2181849 2 17.989435 Anserini +test77 Q0 2181851 3 17.769108 Anserini +test77 Q0 3155657 4 16.883835 Anserini +test77 Q0 10276410 5 16.557133 Anserini +test77 Q0 13542832 6 16.292154 Anserini +test77 Q0 3155656 7 15.977028 Anserini +test77 Q0 9937405 8 15.919991 Anserini +test77 Q0 10276409 9 15.562008 Anserini +test77 Q0 3286664 10 15.039281 Anserini +test77 Q0 2502679 11 14.789625 Anserini +test77 Q0 12771487 12 14.733521 Anserini +test77 Q0 2181850 13 14.451699 Anserini +test77 Q0 16988588 14 14.439508 Anserini +test77 Q0 3817010 15 14.404213 Anserini +test77 Q0 1655875 16 14.346906 Anserini +test77 Q0 3609503 17 14.345383 Anserini +test77 Q0 20816988 18 14.192702 Anserini +test77 Q0 13853495 19 14.160561 Anserini +test77 Q0 14444923 20 14.102008 Anserini +test77 Q0 11408341 21 14.082783 Anserini +test77 Q0 9937403 22 14.082783 Anserini +test77 Q0 11927701 23 14.061174 Anserini +test77 Q0 16654907 24 13.971790 Anserini +test77 Q0 9027867 25 13.721264 Anserini +test77 Q0 8517228 26 13.670611 Anserini +test77 Q0 11927721 27 13.611334 Anserini +test77 Q0 2181859 28 13.585073 Anserini +test77 Q0 14055892 29 13.583504 Anserini +test77 Q0 4888972 30 13.577270 Anserini +test770 Q0 8522312 1 11.337645 Anserini +test770 Q0 9513700 2 10.842166 Anserini +test770 Q0 6775217 3 10.602056 Anserini +test770 Q0 296510 4 10.470306 Anserini +test770 Q0 7946252 5 10.416232 Anserini +test770 Q0 3745771 6 10.295311 Anserini +test770 Q0 3745774 7 10.295311 Anserini +test770 Q0 13998659 8 10.291484 Anserini +test770 Q0 11280144 9 10.177401 Anserini +test770 Q0 9468575 10 10.176189 Anserini +test770 Q0 3443366 11 10.129861 Anserini +test770 Q0 7148632 12 10.114870 Anserini +test770 Q0 15034991 13 10.087107 Anserini +test770 Q0 19957352 14 10.068731 Anserini +test770 Q0 4792075 15 10.066483 Anserini +test770 Q0 6236554 16 10.032724 Anserini +test770 Q0 12588192 17 9.992826 Anserini +test770 Q0 296513 18 9.953424 Anserini +test770 Q0 19420247 19 9.953264 Anserini +test770 Q0 296512 20 9.942885 Anserini +test770 Q0 296517 21 9.930851 Anserini +test770 Q0 860439 22 9.925936 Anserini +test770 Q0 4876370 23 9.917410 Anserini +test770 Q0 12588191 24 9.900599 Anserini +test770 Q0 12588207 25 9.900599 Anserini +test770 Q0 18163 26 9.891953 Anserini +test770 Q0 3855958 27 9.883300 Anserini +test770 Q0 3480847 28 9.853759 Anserini +test770 Q0 15264858 29 9.846194 Anserini +test770 Q0 7390403 30 9.846194 Anserini +test771 Q0 3942108 1 13.921396 Anserini +test771 Q0 3942115 2 13.840979 Anserini +test771 Q0 18267493 3 13.593534 Anserini +test771 Q0 19625546 4 13.198336 Anserini +test771 Q0 10216200 5 13.169556 Anserini +test771 Q0 18267491 6 13.166799 Anserini +test771 Q0 191160 7 13.065034 Anserini +test771 Q0 18893221 8 12.869413 Anserini +test771 Q0 14366744 9 12.832519 Anserini +test771 Q0 10331795 10 12.713383 Anserini +test771 Q0 12995561 11 12.675791 Anserini +test771 Q0 18893226 12 12.545909 Anserini +test771 Q0 2723688 13 12.368539 Anserini +test771 Q0 20346146 14 12.368070 Anserini +test771 Q0 2936681 15 12.290567 Anserini +test771 Q0 2438967 16 12.235710 Anserini +test771 Q0 3797389 17 12.219727 Anserini +test771 Q0 2404440 18 12.088872 Anserini +test771 Q0 10850076 19 12.070204 Anserini +test771 Q0 10850077 20 12.070204 Anserini +test771 Q0 6797992 21 12.013047 Anserini +test771 Q0 2404448 22 12.007100 Anserini +test771 Q0 14637576 23 11.988513 Anserini +test771 Q0 12669499 24 11.977376 Anserini +test771 Q0 13268013 25 11.960486 Anserini +test771 Q0 20620183 26 11.959618 Anserini +test771 Q0 3942367 27 11.945853 Anserini +test771 Q0 17481042 28 11.945187 Anserini +test771 Q0 15569507 29 11.895488 Anserini +test771 Q0 8851947 30 11.873334 Anserini +test772 Q0 19833712 1 11.484334 Anserini +test772 Q0 15966580 2 10.072622 Anserini +test772 Q0 6074560 3 9.749676 Anserini +test772 Q0 4690541 4 9.721169 Anserini +test772 Q0 2211206 5 9.658512 Anserini +test772 Q0 6586487 6 9.601975 Anserini +test772 Q0 10980206 7 9.597740 Anserini +test772 Q0 7313330 8 9.511189 Anserini +test772 Q0 420944 9 9.401957 Anserini +test772 Q0 17127001 10 9.401651 Anserini +test772 Q0 4419857 11 9.395313 Anserini +test772 Q0 5169627 12 9.236265 Anserini +test772 Q0 515530 13 9.209179 Anserini +test772 Q0 3893908 14 9.197727 Anserini +test772 Q0 4419854 15 9.195189 Anserini +test772 Q0 5169631 16 9.150740 Anserini +test772 Q0 8007726 17 9.110453 Anserini +test772 Q0 2211207 18 9.076571 Anserini +test772 Q0 2982189 19 9.015108 Anserini +test772 Q0 15811510 20 8.975607 Anserini +test772 Q0 12354448 21 8.959383 Anserini +test772 Q0 10255166 22 8.884197 Anserini +test772 Q0 4234779 23 8.874164 Anserini +test772 Q0 898344 24 8.822802 Anserini +test772 Q0 3097187 25 8.805161 Anserini +test772 Q0 9137060 26 8.802422 Anserini +test772 Q0 17866481 27 8.800200 Anserini +test772 Q0 1948577 28 8.791940 Anserini +test772 Q0 8223524 29 8.787236 Anserini +test772 Q0 7313332 30 8.780113 Anserini +test773 Q0 2511037 1 12.996083 Anserini +test773 Q0 2511033 2 12.798673 Anserini +test773 Q0 2511045 3 12.539189 Anserini +test773 Q0 16473906 4 12.412936 Anserini +test773 Q0 16473907 5 12.080770 Anserini +test773 Q0 2511035 6 11.969355 Anserini +test773 Q0 2511036 7 11.539006 Anserini +test773 Q0 2511043 8 10.688246 Anserini +test773 Q0 6864702 9 10.544641 Anserini +test773 Q0 7090944 10 10.435404 Anserini +test773 Q0 3335103 11 10.390606 Anserini +test773 Q0 6852548 12 10.344850 Anserini +test773 Q0 7523886 13 10.286762 Anserini +test773 Q0 14065025 14 10.077649 Anserini +test773 Q0 7695711 15 10.015079 Anserini +test773 Q0 14065019 16 9.980513 Anserini +test773 Q0 2511038 17 9.950544 Anserini +test773 Q0 10438504 18 9.905919 Anserini +test773 Q0 2511032 19 9.811637 Anserini +test773 Q0 2511044 20 9.811637 Anserini +test773 Q0 4629728 21 9.791893 Anserini +test773 Q0 2511030 22 9.786795 Anserini +test773 Q0 10481514 23 9.762079 Anserini +test773 Q0 10429570 24 9.736456 Anserini +test773 Q0 2222387 25 9.682575 Anserini +test773 Q0 2511029 26 9.604426 Anserini +test773 Q0 2511046 27 9.604426 Anserini +test773 Q0 4629730 28 9.588326 Anserini +test773 Q0 2511034 29 9.576666 Anserini +test773 Q0 2511031 30 9.576666 Anserini +test774 Q0 12823988 1 15.171360 Anserini +test774 Q0 3985858 2 15.140392 Anserini +test774 Q0 3985866 3 14.993683 Anserini +test774 Q0 508721 4 13.964497 Anserini +test774 Q0 10899759 5 13.725336 Anserini +test774 Q0 3985865 6 13.676690 Anserini +test774 Q0 16401891 7 13.499764 Anserini +test774 Q0 3316831 8 13.252166 Anserini +test774 Q0 12823998 9 13.156868 Anserini +test774 Q0 2206337 10 12.495722 Anserini +test774 Q0 15359365 11 12.463087 Anserini +test774 Q0 11808514 12 12.327133 Anserini +test774 Q0 3985859 13 12.154187 Anserini +test774 Q0 12823983 14 12.142781 Anserini +test774 Q0 16220083 15 12.141654 Anserini +test774 Q0 4144513 16 11.950069 Anserini +test774 Q0 3985862 17 11.887725 Anserini +test774 Q0 12823992 18 11.859743 Anserini +test774 Q0 12823997 19 11.849580 Anserini +test774 Q0 15405339 20 11.814518 Anserini +test774 Q0 3985860 21 11.770768 Anserini +test774 Q0 2911094 22 11.702066 Anserini +test774 Q0 3985864 23 11.673440 Anserini +test774 Q0 8809379 24 11.639775 Anserini +test774 Q0 10557292 25 11.630177 Anserini +test774 Q0 3985861 26 11.510780 Anserini +test774 Q0 17591175 27 11.483511 Anserini +test774 Q0 226594 28 11.420177 Anserini +test774 Q0 375651 29 11.420177 Anserini +test774 Q0 273484 30 11.391856 Anserini +test775 Q0 3514408 1 19.970985 Anserini +test775 Q0 3514448 2 19.087368 Anserini +test775 Q0 3514451 3 18.705288 Anserini +test775 Q0 3514446 4 18.193390 Anserini +test775 Q0 3514415 5 18.032919 Anserini +test775 Q0 3514414 6 18.026190 Anserini +test775 Q0 8095645 7 17.943523 Anserini +test775 Q0 7723348 8 17.869570 Anserini +test775 Q0 3514413 9 17.837713 Anserini +test775 Q0 2035298 10 17.836073 Anserini +test775 Q0 3514445 11 17.756258 Anserini +test775 Q0 3514420 12 17.750921 Anserini +test775 Q0 13399239 13 17.731102 Anserini +test775 Q0 3514430 14 17.723963 Anserini +test775 Q0 2095742 15 17.621807 Anserini +test775 Q0 3514421 16 17.403460 Anserini +test775 Q0 3514438 17 17.336206 Anserini +test775 Q0 3514443 18 17.211231 Anserini +test775 Q0 13786545 19 17.080437 Anserini +test775 Q0 2035243 20 17.046566 Anserini +test775 Q0 8095644 21 16.956995 Anserini +test775 Q0 3514447 22 16.915899 Anserini +test775 Q0 3514450 23 16.835629 Anserini +test775 Q0 3176661 24 16.780725 Anserini +test775 Q0 3514424 25 16.675512 Anserini +test775 Q0 3517277 26 16.667440 Anserini +test775 Q0 3514449 27 16.582932 Anserini +test775 Q0 13986787 28 16.434240 Anserini +test775 Q0 16160850 29 16.404207 Anserini +test775 Q0 3514441 30 16.382441 Anserini +test776 Q0 19030871 1 14.901208 Anserini +test776 Q0 19030895 2 14.420471 Anserini +test776 Q0 19030898 3 13.973619 Anserini +test776 Q0 1961156 4 13.888986 Anserini +test776 Q0 19030875 5 13.805485 Anserini +test776 Q0 12918858 6 13.619990 Anserini +test776 Q0 19030893 7 13.280767 Anserini +test776 Q0 8867755 8 12.705838 Anserini +test776 Q0 19030887 9 12.646042 Anserini +test776 Q0 3796338 10 12.605152 Anserini +test776 Q0 16931234 11 12.506480 Anserini +test776 Q0 19030873 12 12.264074 Anserini +test776 Q0 19030881 13 12.264074 Anserini +test776 Q0 19030897 14 12.264074 Anserini +test776 Q0 4483260 15 12.137284 Anserini +test776 Q0 12579307 16 11.664944 Anserini +test776 Q0 20287856 17 11.616087 Anserini +test776 Q0 19030885 18 11.616087 Anserini +test776 Q0 6023316 19 11.574771 Anserini +test776 Q0 19030886 20 11.556513 Anserini +test776 Q0 19030874 21 11.556513 Anserini +test776 Q0 19030876 22 11.556513 Anserini +test776 Q0 19341279 23 11.497546 Anserini +test776 Q0 6023318 24 11.469788 Anserini +test776 Q0 19030884 25 11.460449 Anserini +test776 Q0 14107558 26 11.439178 Anserini +test776 Q0 18089460 27 11.381400 Anserini +test776 Q0 18089453 28 11.381400 Anserini +test776 Q0 16219716 29 11.377676 Anserini +test776 Q0 19030877 30 11.377676 Anserini +test777 Q0 2249863 1 21.881506 Anserini +test777 Q0 17758109 2 18.820684 Anserini +test777 Q0 5421899 3 17.680124 Anserini +test777 Q0 17758116 4 17.451019 Anserini +test777 Q0 19767069 5 17.418625 Anserini +test777 Q0 331501 6 16.884706 Anserini +test777 Q0 14790943 7 16.577940 Anserini +test777 Q0 2121600 8 16.487970 Anserini +test777 Q0 20655034 9 16.141758 Anserini +test777 Q0 16610344 10 15.927744 Anserini +test777 Q0 17758123 11 15.666736 Anserini +test777 Q0 20356217 12 15.639814 Anserini +test777 Q0 3257115 13 15.523256 Anserini +test777 Q0 19510138 14 15.518330 Anserini +test777 Q0 16021434 15 15.448809 Anserini +test777 Q0 12366087 16 15.395046 Anserini +test777 Q0 73074 17 15.306041 Anserini +test777 Q0 12535050 18 15.284772 Anserini +test777 Q0 19767071 19 15.243988 Anserini +test777 Q0 4984437 20 15.241201 Anserini +test777 Q0 167840 21 15.163885 Anserini +test777 Q0 7622542 22 15.121820 Anserini +test777 Q0 278169 23 15.106855 Anserini +test777 Q0 21004217 24 14.860821 Anserini +test777 Q0 79120 25 14.834677 Anserini +test777 Q0 8006442 26 14.764960 Anserini +test777 Q0 765317 27 14.727294 Anserini +test777 Q0 3257116 28 14.716052 Anserini +test777 Q0 331537 29 14.676334 Anserini +test777 Q0 20655042 30 14.646012 Anserini +test778 Q0 6524491 1 10.705370 Anserini +test778 Q0 5462486 2 10.344764 Anserini +test778 Q0 5632209 3 9.967868 Anserini +test778 Q0 5608351 4 9.966266 Anserini +test778 Q0 4916983 5 9.748558 Anserini +test778 Q0 19002769 6 9.699915 Anserini +test778 Q0 6510463 7 9.641666 Anserini +test778 Q0 15047045 8 9.575440 Anserini +test778 Q0 216773 9 9.500604 Anserini +test778 Q0 20357513 10 9.417113 Anserini +test778 Q0 15042916 11 9.248736 Anserini +test778 Q0 15042917 12 9.248736 Anserini +test778 Q0 5248862 13 9.142309 Anserini +test778 Q0 5608564 14 9.124723 Anserini +test778 Q0 3199386 15 8.918680 Anserini +test778 Q0 714892 16 8.915795 Anserini +test778 Q0 9944083 17 8.852278 Anserini +test778 Q0 9073723 18 8.811973 Anserini +test778 Q0 8358890 19 8.768546 Anserini +test778 Q0 7605688 20 8.755848 Anserini +test778 Q0 2386155 21 8.639994 Anserini +test778 Q0 9944095 22 8.620777 Anserini +test778 Q0 7666022 23 8.612649 Anserini +test778 Q0 2386195 24 8.577877 Anserini +test778 Q0 2386191 25 8.577877 Anserini +test778 Q0 4948263 26 8.549660 Anserini +test778 Q0 20339367 27 8.516836 Anserini +test778 Q0 18089818 28 8.507123 Anserini +test778 Q0 2898694 29 8.483816 Anserini +test778 Q0 12960805 30 8.433207 Anserini +test779 Q0 17870141 1 14.922132 Anserini +test779 Q0 17870118 2 14.676743 Anserini +test779 Q0 652446 3 13.968511 Anserini +test779 Q0 3493497 4 13.781392 Anserini +test779 Q0 877269 5 13.571274 Anserini +test779 Q0 652454 6 13.427131 Anserini +test779 Q0 17870119 7 13.319149 Anserini +test779 Q0 652496 8 13.295630 Anserini +test779 Q0 13347916 9 13.246409 Anserini +test779 Q0 652485 10 13.154501 Anserini +test779 Q0 652447 11 13.059900 Anserini +test779 Q0 13347915 12 12.982885 Anserini +test779 Q0 17870134 13 12.716966 Anserini +test779 Q0 3650808 14 12.712688 Anserini +test779 Q0 20956243 15 12.705997 Anserini +test779 Q0 652474 16 12.632790 Anserini +test779 Q0 1851406 17 12.578365 Anserini +test779 Q0 20956246 18 12.424363 Anserini +test779 Q0 6562225 19 12.359549 Anserini +test779 Q0 652456 20 12.241726 Anserini +test779 Q0 7042303 21 12.234691 Anserini +test779 Q0 9602246 22 12.227728 Anserini +test779 Q0 652480 23 12.223124 Anserini +test779 Q0 652462 24 12.092177 Anserini +test779 Q0 3660795 25 12.007379 Anserini +test779 Q0 2426277 26 11.999650 Anserini +test779 Q0 3493498 27 11.999650 Anserini +test779 Q0 17870124 28 11.929060 Anserini +test779 Q0 652498 29 11.909487 Anserini +test779 Q0 652448 30 11.898519 Anserini +test78 Q0 16973725 1 21.695414 Anserini +test78 Q0 10520591 2 21.033873 Anserini +test78 Q0 783697 3 20.698593 Anserini +test78 Q0 5886181 4 20.245340 Anserini +test78 Q0 764426 5 19.209791 Anserini +test78 Q0 3441982 6 19.177862 Anserini +test78 Q0 8548573 7 19.099224 Anserini +test78 Q0 11158233 8 18.808268 Anserini +test78 Q0 19913034 9 18.494598 Anserini +test78 Q0 1767715 10 18.051210 Anserini +test78 Q0 9329397 11 17.947916 Anserini +test78 Q0 935185 12 17.760918 Anserini +test78 Q0 8548572 13 17.602167 Anserini +test78 Q0 14336911 14 17.261578 Anserini +test78 Q0 6675110 15 17.245779 Anserini +test78 Q0 1409600 16 16.944101 Anserini +test78 Q0 8009809 17 16.911926 Anserini +test78 Q0 18632990 18 16.911070 Anserini +test78 Q0 14254602 19 16.849316 Anserini +test78 Q0 17916260 20 16.740652 Anserini +test78 Q0 8009812 21 16.570446 Anserini +test78 Q0 4621213 22 16.522837 Anserini +test78 Q0 10515323 23 16.522837 Anserini +test78 Q0 2963957 24 16.522837 Anserini +test78 Q0 247176 25 16.444344 Anserini +test78 Q0 1430918 26 16.348795 Anserini +test78 Q0 2974527 27 16.316113 Anserini +test78 Q0 760806 28 16.311199 Anserini +test78 Q0 14765491 29 16.173204 Anserini +test78 Q0 497725 30 16.145395 Anserini +test780 Q0 4882237 1 16.780233 Anserini +test780 Q0 2357086 2 16.198284 Anserini +test780 Q0 2357073 3 15.691217 Anserini +test780 Q0 14232121 4 15.010023 Anserini +test780 Q0 6660203 5 12.716575 Anserini +test780 Q0 2357088 6 12.575161 Anserini +test780 Q0 12373321 7 12.267582 Anserini +test780 Q0 2357089 8 12.180838 Anserini +test780 Q0 12373324 9 12.145597 Anserini +test780 Q0 3316765 10 11.885845 Anserini +test780 Q0 2357075 11 11.865149 Anserini +test780 Q0 2357085 12 11.790462 Anserini +test780 Q0 2357082 13 11.752823 Anserini +test780 Q0 14482224 14 11.562630 Anserini +test780 Q0 9697806 15 11.420962 Anserini +test780 Q0 49268 16 11.420962 Anserini +test780 Q0 2357087 17 11.308075 Anserini +test780 Q0 14469492 18 11.103769 Anserini +test780 Q0 13948078 19 10.928382 Anserini +test780 Q0 7731120 20 10.871040 Anserini +test780 Q0 18930548 21 10.848292 Anserini +test780 Q0 12373322 22 10.736998 Anserini +test780 Q0 10537803 23 10.706312 Anserini +test780 Q0 11226560 24 10.704002 Anserini +test780 Q0 14232123 25 10.704002 Anserini +test780 Q0 74842 26 10.644028 Anserini +test780 Q0 6660202 27 10.644028 Anserini +test780 Q0 3542818 28 10.644028 Anserini +test780 Q0 9885354 29 10.642600 Anserini +test780 Q0 8253177 30 10.626971 Anserini +test781 Q0 2022699 1 15.714622 Anserini +test781 Q0 2022700 2 13.154476 Anserini +test781 Q0 2022697 3 13.152634 Anserini +test781 Q0 2022698 4 13.152634 Anserini +test781 Q0 2022691 5 12.936529 Anserini +test781 Q0 16431527 6 12.349855 Anserini +test781 Q0 928217 7 11.883793 Anserini +test781 Q0 2022693 8 11.768468 Anserini +test781 Q0 2022695 9 11.768468 Anserini +test781 Q0 2022692 10 11.728436 Anserini +test781 Q0 14436622 11 11.641602 Anserini +test781 Q0 18470498 12 11.482984 Anserini +test781 Q0 12723499 13 11.382111 Anserini +test781 Q0 6624489 14 10.906450 Anserini +test781 Q0 2022694 15 10.831903 Anserini +test781 Q0 6230874 16 10.610617 Anserini +test781 Q0 15246376 17 10.599988 Anserini +test781 Q0 4501237 18 10.397125 Anserini +test781 Q0 1801178 19 10.335678 Anserini +test781 Q0 108241 20 10.158305 Anserini +test781 Q0 11202523 21 10.086339 Anserini +test781 Q0 15300164 22 10.019966 Anserini +test781 Q0 17097994 23 9.963145 Anserini +test781 Q0 10201556 24 9.933227 Anserini +test781 Q0 2101683 25 9.890412 Anserini +test781 Q0 3270209 26 9.869013 Anserini +test781 Q0 250088 27 9.793284 Anserini +test781 Q0 19446584 28 9.736437 Anserini +test781 Q0 3071971 29 9.727651 Anserini +test781 Q0 7169001 30 9.717957 Anserini +test782 Q0 8912822 1 10.680887 Anserini +test782 Q0 1414838 2 10.658381 Anserini +test782 Q0 3833547 3 10.432071 Anserini +test782 Q0 2919572 4 10.330685 Anserini +test782 Q0 10391886 5 10.280544 Anserini +test782 Q0 740553 6 10.194059 Anserini +test782 Q0 13856891 7 10.008153 Anserini +test782 Q0 16675044 8 9.964839 Anserini +test782 Q0 7538360 9 9.938347 Anserini +test782 Q0 8263606 10 9.935760 Anserini +test782 Q0 4562463 11 9.920710 Anserini +test782 Q0 12252428 12 9.912037 Anserini +test782 Q0 10391883 13 9.769168 Anserini +test782 Q0 15419315 14 9.769168 Anserini +test782 Q0 20080703 15 9.711125 Anserini +test782 Q0 12904025 16 9.700438 Anserini +test782 Q0 1414839 17 9.567149 Anserini +test782 Q0 2851683 18 9.561569 Anserini +test782 Q0 3424755 19 9.543389 Anserini +test782 Q0 7476019 20 9.537603 Anserini +test782 Q0 3838833 21 9.534265 Anserini +test782 Q0 10053236 22 9.485675 Anserini +test782 Q0 18941333 23 9.474339 Anserini +test782 Q0 16981726 24 9.420497 Anserini +test782 Q0 7516975 25 9.414115 Anserini +test782 Q0 2258551 26 9.414115 Anserini +test782 Q0 3667200 27 9.414115 Anserini +test782 Q0 8148906 28 9.405716 Anserini +test782 Q0 4220302 29 9.354857 Anserini +test782 Q0 1414846 30 9.336477 Anserini +test783 Q0 11667075 1 14.581188 Anserini +test783 Q0 8497201 2 14.495622 Anserini +test783 Q0 8277200 3 14.098157 Anserini +test783 Q0 2061149 4 13.927237 Anserini +test783 Q0 274479 5 13.655592 Anserini +test783 Q0 4847376 6 13.587197 Anserini +test783 Q0 5340788 7 13.437571 Anserini +test783 Q0 1833231 8 13.410890 Anserini +test783 Q0 13572474 9 13.394906 Anserini +test783 Q0 5802728 10 13.351192 Anserini +test783 Q0 12384347 11 13.248293 Anserini +test783 Q0 18672295 12 13.186458 Anserini +test783 Q0 17996898 13 13.172027 Anserini +test783 Q0 8978856 14 13.132170 Anserini +test783 Q0 3543299 15 13.087812 Anserini +test783 Q0 8226895 16 12.993104 Anserini +test783 Q0 5326033 17 12.988739 Anserini +test783 Q0 1833137 18 12.987694 Anserini +test783 Q0 14079419 19 12.977536 Anserini +test783 Q0 19335913 20 12.942938 Anserini +test783 Q0 17996904 21 12.881135 Anserini +test783 Q0 3543295 22 12.859793 Anserini +test783 Q0 5480927 23 12.858397 Anserini +test783 Q0 9843231 24 12.858397 Anserini +test783 Q0 3701938 25 12.854990 Anserini +test783 Q0 14699778 26 12.809467 Anserini +test783 Q0 12384346 27 12.787688 Anserini +test783 Q0 9776975 28 12.787688 Anserini +test783 Q0 8289594 29 12.784849 Anserini +test783 Q0 14819867 30 12.757960 Anserini +test784 Q0 1258303 1 21.927391 Anserini +test784 Q0 1251401 2 21.864458 Anserini +test784 Q0 1254462 3 21.578733 Anserini +test784 Q0 1898974 4 20.712685 Anserini +test784 Q0 1261273 5 20.712685 Anserini +test784 Q0 1257745 6 20.512331 Anserini +test784 Q0 1257342 7 20.305521 Anserini +test784 Q0 1254780 8 19.440535 Anserini +test784 Q0 1898716 9 19.167805 Anserini +test784 Q0 1254394 10 18.615433 Anserini +test784 Q0 1254436 11 18.342896 Anserini +test784 Q0 1261213 12 18.265869 Anserini +test784 Q0 1254465 13 18.191751 Anserini +test784 Q0 1261467 14 18.104031 Anserini +test784 Q0 1895506 15 17.981520 Anserini +test784 Q0 1104977 16 17.947563 Anserini +test784 Q0 1262387 17 17.822788 Anserini +test784 Q0 1254868 18 17.628983 Anserini +test784 Q0 1251404 19 17.259912 Anserini +test784 Q0 1257900 20 17.220478 Anserini +test784 Q0 1110304 21 17.144039 Anserini +test784 Q0 1255029 22 16.775429 Anserini +test784 Q0 1209143 23 16.691549 Anserini +test784 Q0 1257529 24 16.687984 Anserini +test784 Q0 1215818 25 16.641884 Anserini +test784 Q0 1257655 26 16.580448 Anserini +test784 Q0 1257625 27 16.580448 Anserini +test784 Q0 1254005 28 16.570250 Anserini +test784 Q0 1258458 29 16.562622 Anserini +test784 Q0 1898051 30 16.561533 Anserini +test785 Q0 4775683 1 12.681681 Anserini +test785 Q0 4775689 2 12.681681 Anserini +test785 Q0 17014837 3 12.359975 Anserini +test785 Q0 17014828 4 12.331841 Anserini +test785 Q0 16008056 5 12.278965 Anserini +test785 Q0 16008048 6 12.002097 Anserini +test785 Q0 7199664 7 11.240639 Anserini +test785 Q0 15600600 8 11.037419 Anserini +test785 Q0 15600598 9 10.974273 Anserini +test785 Q0 17014833 10 10.937914 Anserini +test785 Q0 8065299 11 10.846787 Anserini +test785 Q0 17014842 12 10.690180 Anserini +test785 Q0 4970352 13 10.690180 Anserini +test785 Q0 17014838 14 10.652608 Anserini +test785 Q0 5469760 15 10.639537 Anserini +test785 Q0 17014839 16 10.615314 Anserini +test785 Q0 19334342 17 10.493341 Anserini +test785 Q0 20345930 18 10.464307 Anserini +test785 Q0 5658466 19 10.427265 Anserini +test785 Q0 3138490 20 10.361178 Anserini +test785 Q0 16966907 21 10.329702 Anserini +test785 Q0 14020660 22 10.300674 Anserini +test785 Q0 14915388 23 10.294941 Anserini +test785 Q0 16796423 24 10.294941 Anserini +test785 Q0 19530033 25 10.239832 Anserini +test785 Q0 19530029 26 10.239832 Anserini +test785 Q0 1645143 27 10.215966 Anserini +test785 Q0 931242 28 10.211485 Anserini +test785 Q0 17213240 29 10.192233 Anserini +test785 Q0 17014843 30 10.185563 Anserini +test786 Q0 11724858 1 16.442921 Anserini +test786 Q0 11724868 2 16.155725 Anserini +test786 Q0 12584331 3 15.193968 Anserini +test786 Q0 20898166 4 15.076074 Anserini +test786 Q0 11724859 5 15.034489 Anserini +test786 Q0 11429252 6 14.894620 Anserini +test786 Q0 14052297 7 14.828620 Anserini +test786 Q0 9693814 8 14.810375 Anserini +test786 Q0 9693823 9 14.810375 Anserini +test786 Q0 17123742 10 14.789698 Anserini +test786 Q0 10671871 11 14.662143 Anserini +test786 Q0 17776770 12 14.625904 Anserini +test786 Q0 8617975 13 14.456999 Anserini +test786 Q0 19999953 14 14.394351 Anserini +test786 Q0 10364111 15 14.231348 Anserini +test786 Q0 7030448 16 14.158385 Anserini +test786 Q0 11724867 17 14.048589 Anserini +test786 Q0 16444283 18 13.985335 Anserini +test786 Q0 18609679 19 13.894041 Anserini +test786 Q0 6323303 20 13.859734 Anserini +test786 Q0 7064501 21 13.853629 Anserini +test786 Q0 19708233 22 13.794338 Anserini +test786 Q0 1851515 23 13.788127 Anserini +test786 Q0 6583650 24 13.784016 Anserini +test786 Q0 7262037 25 13.779613 Anserini +test786 Q0 8623847 26 13.776860 Anserini +test786 Q0 14330899 27 13.753650 Anserini +test786 Q0 10671872 28 13.727455 Anserini +test786 Q0 18428316 29 13.724742 Anserini +test786 Q0 208593 30 13.721257 Anserini +test787 Q0 13768694 1 16.308706 Anserini +test787 Q0 8124623 2 16.277119 Anserini +test787 Q0 8124626 3 16.120190 Anserini +test787 Q0 20959576 4 15.372683 Anserini +test787 Q0 538258 5 15.312697 Anserini +test787 Q0 16624167 6 15.285350 Anserini +test787 Q0 11978549 7 15.259331 Anserini +test787 Q0 183712 8 15.222424 Anserini +test787 Q0 14280980 9 15.187574 Anserini +test787 Q0 12826930 10 14.951361 Anserini +test787 Q0 12058729 11 14.757567 Anserini +test787 Q0 159410 12 14.719806 Anserini +test787 Q0 1392534 13 14.606612 Anserini +test787 Q0 8124622 14 14.600898 Anserini +test787 Q0 9067117 15 14.579743 Anserini +test787 Q0 9067120 16 14.541567 Anserini +test787 Q0 11981205 17 14.540399 Anserini +test787 Q0 538260 18 14.527273 Anserini +test787 Q0 3475780 19 14.499970 Anserini +test787 Q0 538310 20 14.472864 Anserini +test787 Q0 17083425 21 14.470199 Anserini +test787 Q0 538255 22 14.442228 Anserini +test787 Q0 7697417 23 14.420638 Anserini +test787 Q0 13760944 24 14.394743 Anserini +test787 Q0 20170885 25 14.378639 Anserini +test787 Q0 20170889 26 14.375626 Anserini +test787 Q0 5500116 27 14.332285 Anserini +test787 Q0 17321014 28 14.305458 Anserini +test787 Q0 10311595 29 14.297784 Anserini +test787 Q0 6654986 30 14.245032 Anserini +test788 Q0 2776261 1 18.244761 Anserini +test788 Q0 17041449 2 17.061977 Anserini +test788 Q0 243635 3 16.088058 Anserini +test788 Q0 243628 4 15.823806 Anserini +test788 Q0 243634 5 15.821833 Anserini +test788 Q0 3770908 6 15.630737 Anserini +test788 Q0 243626 7 15.623169 Anserini +test788 Q0 243640 8 15.623169 Anserini +test788 Q0 2776256 9 15.490946 Anserini +test788 Q0 243627 10 15.424725 Anserini +test788 Q0 2776255 11 15.087461 Anserini +test788 Q0 18250232 12 14.908031 Anserini +test788 Q0 2776254 13 14.662454 Anserini +test788 Q0 17275160 14 14.361177 Anserini +test788 Q0 4892814 15 14.325781 Anserini +test788 Q0 243632 16 14.315586 Anserini +test788 Q0 4892816 17 13.786618 Anserini +test788 Q0 243638 18 13.715384 Anserini +test788 Q0 11766112 19 13.676659 Anserini +test788 Q0 19745080 20 13.455088 Anserini +test788 Q0 14827326 21 13.410402 Anserini +test788 Q0 2776264 22 13.385327 Anserini +test788 Q0 14827328 23 13.322578 Anserini +test788 Q0 2776257 24 13.320700 Anserini +test788 Q0 16024890 25 13.174921 Anserini +test788 Q0 3020406 26 13.164304 Anserini +test788 Q0 2393952 27 13.162012 Anserini +test788 Q0 2776258 28 13.053618 Anserini +test788 Q0 243633 29 12.993968 Anserini +test788 Q0 243636 30 12.959375 Anserini +test789 Q0 2105264 1 10.988403 Anserini +test789 Q0 19664877 2 10.536858 Anserini +test789 Q0 713145 3 10.325448 Anserini +test789 Q0 2333855 4 10.244020 Anserini +test789 Q0 12379003 5 10.005407 Anserini +test789 Q0 17345151 6 10.005079 Anserini +test789 Q0 19954185 7 9.962558 Anserini +test789 Q0 4939761 8 9.958843 Anserini +test789 Q0 10065185 9 9.680397 Anserini +test789 Q0 18527356 10 9.640079 Anserini +test789 Q0 11628365 11 9.622511 Anserini +test789 Q0 1738656 12 9.620234 Anserini +test789 Q0 6489132 13 9.574789 Anserini +test789 Q0 18275440 14 9.574789 Anserini +test789 Q0 17741098 15 9.482805 Anserini +test789 Q0 17079065 16 9.473876 Anserini +test789 Q0 6038724 17 9.391594 Anserini +test789 Q0 16861390 18 9.390743 Anserini +test789 Q0 18793100 19 9.319955 Anserini +test789 Q0 18375040 20 9.319955 Anserini +test789 Q0 17723248 21 9.319955 Anserini +test789 Q0 3946683 22 9.289654 Anserini +test789 Q0 1270366 23 9.272863 Anserini +test789 Q0 17559028 24 9.272863 Anserini +test789 Q0 19719352 25 9.242453 Anserini +test789 Q0 6254994 26 9.231991 Anserini +test789 Q0 9387910 27 9.210484 Anserini +test789 Q0 3070706 28 9.210484 Anserini +test789 Q0 18527357 29 9.210484 Anserini +test789 Q0 6766572 30 9.210484 Anserini +test79 Q0 8395352 1 18.196003 Anserini +test79 Q0 4319159 2 17.502617 Anserini +test79 Q0 4480286 3 17.493841 Anserini +test79 Q0 48497 4 16.434256 Anserini +test79 Q0 8395351 5 15.811200 Anserini +test79 Q0 7672933 6 15.291656 Anserini +test79 Q0 14407540 7 14.657778 Anserini +test79 Q0 4480285 8 14.592348 Anserini +test79 Q0 18875029 9 14.466317 Anserini +test79 Q0 4319160 10 13.792822 Anserini +test79 Q0 8395353 11 13.407968 Anserini +test79 Q0 8395350 12 13.345631 Anserini +test79 Q0 14407539 13 12.836518 Anserini +test79 Q0 2952788 14 12.655643 Anserini +test79 Q0 15284036 15 12.540006 Anserini +test79 Q0 554379 16 12.445069 Anserini +test79 Q0 4319635 17 12.226517 Anserini +test79 Q0 14476719 18 12.175867 Anserini +test79 Q0 684034 19 12.086132 Anserini +test79 Q0 7672934 20 11.883039 Anserini +test79 Q0 13084209 21 11.823155 Anserini +test79 Q0 15527506 22 11.810490 Anserini +test79 Q0 6944646 23 11.805126 Anserini +test79 Q0 7672935 24 11.780377 Anserini +test79 Q0 7371231 25 11.772170 Anserini +test79 Q0 15213815 26 11.730970 Anserini +test79 Q0 1570393 27 11.619730 Anserini +test79 Q0 11563766 28 11.528084 Anserini +test79 Q0 7594153 29 11.416676 Anserini +test79 Q0 48496 30 11.276772 Anserini +test790 Q0 10363967 1 15.854352 Anserini +test790 Q0 20115790 2 15.542606 Anserini +test790 Q0 4138145 3 15.126507 Anserini +test790 Q0 4138150 4 15.020210 Anserini +test790 Q0 14770192 5 14.654683 Anserini +test790 Q0 20115791 6 14.468865 Anserini +test790 Q0 18410236 7 14.261421 Anserini +test790 Q0 18410232 8 14.223141 Anserini +test790 Q0 12479562 9 14.214704 Anserini +test790 Q0 105398 10 14.200882 Anserini +test790 Q0 2096779 11 14.137352 Anserini +test790 Q0 407898 12 14.095531 Anserini +test790 Q0 2737726 13 14.042198 Anserini +test790 Q0 10916029 14 14.012026 Anserini +test790 Q0 1820491 15 13.881774 Anserini +test790 Q0 12479565 16 13.855120 Anserini +test790 Q0 12135006 17 13.767646 Anserini +test790 Q0 13317078 18 13.423076 Anserini +test790 Q0 10916015 19 13.405470 Anserini +test790 Q0 12609026 20 13.400460 Anserini +test790 Q0 2595188 21 13.395552 Anserini +test790 Q0 7033614 22 13.356014 Anserini +test790 Q0 18050132 23 13.149581 Anserini +test790 Q0 2096816 24 13.134532 Anserini +test790 Q0 105424 25 13.128246 Anserini +test790 Q0 618997 26 13.115280 Anserini +test790 Q0 4216937 27 13.034753 Anserini +test790 Q0 3238078 28 12.986064 Anserini +test790 Q0 1820488 29 12.927695 Anserini +test790 Q0 8683932 30 12.921739 Anserini +test791 Q0 395915 1 16.871244 Anserini +test791 Q0 15572959 2 15.985127 Anserini +test791 Q0 15572950 3 15.985127 Anserini +test791 Q0 8290969 4 15.438537 Anserini +test791 Q0 16145075 5 15.287380 Anserini +test791 Q0 16145078 6 15.117854 Anserini +test791 Q0 395993 7 14.658972 Anserini +test791 Q0 8465175 8 14.449728 Anserini +test791 Q0 11376175 9 14.426296 Anserini +test791 Q0 18306292 10 14.371048 Anserini +test791 Q0 7782108 11 14.311332 Anserini +test791 Q0 18926434 12 14.148655 Anserini +test791 Q0 12526954 13 14.134719 Anserini +test791 Q0 12363364 14 13.996241 Anserini +test791 Q0 8465160 15 13.752016 Anserini +test791 Q0 3075158 16 13.746596 Anserini +test791 Q0 10500578 17 13.719599 Anserini +test791 Q0 14467595 18 13.700321 Anserini +test791 Q0 18406363 19 13.678706 Anserini +test791 Q0 13925533 20 13.592748 Anserini +test791 Q0 2181776 21 13.590172 Anserini +test791 Q0 3669778 22 13.554816 Anserini +test791 Q0 15499925 23 13.499628 Anserini +test791 Q0 9001950 24 13.485823 Anserini +test791 Q0 12420638 25 13.475103 Anserini +test791 Q0 4479651 26 13.328405 Anserini +test791 Q0 2008312 27 13.309324 Anserini +test791 Q0 3640540 28 13.160294 Anserini +test791 Q0 4404732 29 13.138726 Anserini +test791 Q0 15528283 30 12.999595 Anserini +test792 Q0 9047483 1 21.207178 Anserini +test792 Q0 6904434 2 21.067940 Anserini +test792 Q0 7618268 3 20.751085 Anserini +test792 Q0 9047484 4 18.581112 Anserini +test792 Q0 6904436 5 18.313982 Anserini +test792 Q0 7618271 6 18.267206 Anserini +test792 Q0 6904438 7 16.678299 Anserini +test792 Q0 19678454 8 16.395317 Anserini +test792 Q0 7618270 9 15.530194 Anserini +test792 Q0 6904439 10 15.462829 Anserini +test792 Q0 6904435 11 15.171011 Anserini +test792 Q0 6904437 12 15.145550 Anserini +test792 Q0 7618269 13 15.051867 Anserini +test792 Q0 1500087 14 14.892392 Anserini +test792 Q0 19164683 15 14.565385 Anserini +test792 Q0 15793279 16 13.833101 Anserini +test792 Q0 13150834 17 13.295691 Anserini +test792 Q0 11519385 18 12.868581 Anserini +test792 Q0 10493909 19 12.868581 Anserini +test792 Q0 15850798 20 12.868581 Anserini +test792 Q0 8697952 21 12.733113 Anserini +test792 Q0 15408027 22 12.733113 Anserini +test792 Q0 5924208 23 12.733113 Anserini +test792 Q0 9314981 24 12.600467 Anserini +test792 Q0 19015839 25 12.600467 Anserini +test792 Q0 19494872 26 12.600467 Anserini +test792 Q0 1500093 27 12.600467 Anserini +test792 Q0 2788019 28 12.052586 Anserini +test792 Q0 1937269 29 12.011567 Anserini +test792 Q0 14191761 30 12.002183 Anserini +test793 Q0 9220365 1 21.011684 Anserini +test793 Q0 9220369 2 15.655630 Anserini +test793 Q0 9220366 3 15.542824 Anserini +test793 Q0 3095391 4 15.362152 Anserini +test793 Q0 7345374 5 14.675101 Anserini +test793 Q0 3095392 6 14.516649 Anserini +test793 Q0 9220370 7 14.514883 Anserini +test793 Q0 9220372 8 14.160499 Anserini +test793 Q0 3500281 9 13.847688 Anserini +test793 Q0 10248642 10 13.778034 Anserini +test793 Q0 10248643 11 13.737505 Anserini +test793 Q0 9220377 12 13.413471 Anserini +test793 Q0 872209 13 13.387767 Anserini +test793 Q0 4215513 14 13.344517 Anserini +test793 Q0 4115801 15 13.320012 Anserini +test793 Q0 11101488 16 13.241007 Anserini +test793 Q0 9220373 17 13.156673 Anserini +test793 Q0 10248645 18 13.002803 Anserini +test793 Q0 7224862 19 12.997216 Anserini +test793 Q0 9220378 20 12.924356 Anserini +test793 Q0 341519 21 12.907325 Anserini +test793 Q0 10248640 22 12.859370 Anserini +test793 Q0 16112492 23 12.851158 Anserini +test793 Q0 9220364 24 12.820462 Anserini +test793 Q0 4087894 25 12.717958 Anserini +test793 Q0 185885 26 12.624991 Anserini +test793 Q0 1922296 27 12.546331 Anserini +test793 Q0 13407877 28 12.521012 Anserini +test793 Q0 8382862 29 12.461269 Anserini +test793 Q0 16526091 30 12.456344 Anserini +test794 Q0 12231365 1 13.685962 Anserini +test794 Q0 12231366 2 13.105926 Anserini +test794 Q0 18721 3 12.981511 Anserini +test794 Q0 18783 4 12.979939 Anserini +test794 Q0 19704220 5 12.964018 Anserini +test794 Q0 8974455 6 12.908362 Anserini +test794 Q0 18712 7 12.816927 Anserini +test794 Q0 17796689 8 12.624195 Anserini +test794 Q0 11976491 9 12.389589 Anserini +test794 Q0 11976492 10 12.389589 Anserini +test794 Q0 18751 11 12.351581 Anserini +test794 Q0 13705261 12 12.337862 Anserini +test794 Q0 16818228 13 12.301531 Anserini +test794 Q0 2763900 14 12.266630 Anserini +test794 Q0 10841856 15 12.247413 Anserini +test794 Q0 13589282 16 12.238285 Anserini +test794 Q0 18464544 17 12.222833 Anserini +test794 Q0 16818224 18 12.210329 Anserini +test794 Q0 20573542 19 12.198421 Anserini +test794 Q0 20573529 20 12.198421 Anserini +test794 Q0 68491 21 12.137540 Anserini +test794 Q0 16764084 22 12.132018 Anserini +test794 Q0 18666029 23 12.096600 Anserini +test794 Q0 18865836 24 12.096600 Anserini +test794 Q0 12573478 25 12.089729 Anserini +test794 Q0 17052935 26 12.047178 Anserini +test794 Q0 85080 27 12.015713 Anserini +test794 Q0 3826041 28 12.003704 Anserini +test794 Q0 68492 29 11.980803 Anserini +test794 Q0 18009773 30 11.965256 Anserini +test795 Q0 4202886 1 14.160863 Anserini +test795 Q0 8309699 2 13.671300 Anserini +test795 Q0 8309695 3 13.496423 Anserini +test795 Q0 8309703 4 13.366198 Anserini +test795 Q0 8309704 5 13.082985 Anserini +test795 Q0 12320503 6 12.974426 Anserini +test795 Q0 4202932 7 12.974379 Anserini +test795 Q0 8309707 8 12.934844 Anserini +test795 Q0 8309710 9 12.898437 Anserini +test795 Q0 8309696 10 12.895416 Anserini +test795 Q0 4202893 11 12.739621 Anserini +test795 Q0 8309708 12 12.723160 Anserini +test795 Q0 16736140 13 12.625691 Anserini +test795 Q0 8309706 14 12.394808 Anserini +test795 Q0 4202890 15 12.172796 Anserini +test795 Q0 9885110 16 12.163797 Anserini +test795 Q0 5481782 17 12.050827 Anserini +test795 Q0 6693933 18 11.932751 Anserini +test795 Q0 9130473 19 11.862631 Anserini +test795 Q0 10463182 20 11.844275 Anserini +test795 Q0 10101257 21 11.698109 Anserini +test795 Q0 5183090 22 11.597191 Anserini +test795 Q0 5284006 23 11.511422 Anserini +test795 Q0 6245360 24 11.478844 Anserini +test795 Q0 6694796 25 11.424793 Anserini +test795 Q0 4202891 26 11.368757 Anserini +test795 Q0 6299424 27 11.351693 Anserini +test795 Q0 17889781 28 11.339521 Anserini +test795 Q0 6875314 29 11.316587 Anserini +test795 Q0 5284013 30 11.308118 Anserini +test796 Q0 3801309 1 21.608904 Anserini +test796 Q0 16896410 2 19.100140 Anserini +test796 Q0 16896415 3 18.987379 Anserini +test796 Q0 9951910 4 18.864746 Anserini +test796 Q0 9951912 5 18.857843 Anserini +test796 Q0 3801308 6 18.467405 Anserini +test796 Q0 12484119 7 18.088783 Anserini +test796 Q0 18360513 8 17.913080 Anserini +test796 Q0 12320132 9 17.882092 Anserini +test796 Q0 9951922 10 17.865047 Anserini +test796 Q0 9951913 11 17.538074 Anserini +test796 Q0 3801297 12 17.342325 Anserini +test796 Q0 9951906 13 17.018881 Anserini +test796 Q0 9951931 14 17.018881 Anserini +test796 Q0 7574145 15 16.956886 Anserini +test796 Q0 7690750 16 16.749489 Anserini +test796 Q0 9951907 17 16.634031 Anserini +test796 Q0 614578 18 16.427265 Anserini +test796 Q0 11559066 19 16.324203 Anserini +test796 Q0 9951925 20 16.250944 Anserini +test796 Q0 614618 21 16.145292 Anserini +test796 Q0 9951916 22 16.138281 Anserini +test796 Q0 10745226 23 15.957095 Anserini +test796 Q0 7690748 24 15.881622 Anserini +test796 Q0 9951924 25 15.864529 Anserini +test796 Q0 7574144 26 15.718719 Anserini +test796 Q0 9951926 27 15.716252 Anserini +test796 Q0 1989553 28 15.687409 Anserini +test796 Q0 9951927 29 15.639038 Anserini +test796 Q0 14546214 30 15.609316 Anserini +test797 Q0 16999491 1 11.861146 Anserini +test797 Q0 17056550 2 11.788125 Anserini +test797 Q0 11762502 3 11.728887 Anserini +test797 Q0 12023648 4 11.560394 Anserini +test797 Q0 20935383 5 11.510006 Anserini +test797 Q0 16116488 6 11.470027 Anserini +test797 Q0 5948118 7 11.354187 Anserini +test797 Q0 7326483 8 11.262287 Anserini +test797 Q0 7326485 9 11.253223 Anserini +test797 Q0 19499533 10 11.186084 Anserini +test797 Q0 15183302 11 11.064539 Anserini +test797 Q0 6024583 12 10.929581 Anserini +test797 Q0 20935374 13 10.913114 Anserini +test797 Q0 3372672 14 10.912942 Anserini +test797 Q0 19159163 15 10.910750 Anserini +test797 Q0 13069656 16 10.886103 Anserini +test797 Q0 13282950 17 10.885595 Anserini +test797 Q0 429736 18 10.850491 Anserini +test797 Q0 12023644 19 10.716775 Anserini +test797 Q0 44933 20 10.710449 Anserini +test797 Q0 3390153 21 10.686131 Anserini +test797 Q0 7326492 22 10.650859 Anserini +test797 Q0 8995443 23 10.630672 Anserini +test797 Q0 3213558 24 10.626105 Anserini +test797 Q0 12948786 25 10.616757 Anserini +test797 Q0 20935381 26 10.588376 Anserini +test797 Q0 3724913 27 10.512579 Anserini +test797 Q0 11484600 28 10.512538 Anserini +test797 Q0 16345167 29 10.499113 Anserini +test797 Q0 12804196 30 10.450291 Anserini +test798 Q0 18790214 1 14.185440 Anserini +test798 Q0 19570055 2 14.146263 Anserini +test798 Q0 19565641 3 14.005670 Anserini +test798 Q0 19304272 4 13.672252 Anserini +test798 Q0 923240 5 13.606169 Anserini +test798 Q0 18221912 6 13.507845 Anserini +test798 Q0 19887625 7 13.505845 Anserini +test798 Q0 18871291 8 13.493567 Anserini +test798 Q0 19464975 9 13.398059 Anserini +test798 Q0 19915899 10 13.273588 Anserini +test798 Q0 19588332 11 13.202372 Anserini +test798 Q0 18221936 12 13.187787 Anserini +test798 Q0 10849689 13 13.176069 Anserini +test798 Q0 19318143 14 13.146188 Anserini +test798 Q0 19680267 15 13.146188 Anserini +test798 Q0 18871287 16 13.104317 Anserini +test798 Q0 18976378 17 13.099041 Anserini +test798 Q0 19267262 18 13.032286 Anserini +test798 Q0 19570054 19 13.031220 Anserini +test798 Q0 19505220 20 13.003092 Anserini +test798 Q0 20266474 21 12.943772 Anserini +test798 Q0 18485813 22 12.930367 Anserini +test798 Q0 18871292 23 12.882068 Anserini +test798 Q0 18001974 24 12.867772 Anserini +test798 Q0 3740924 25 12.788099 Anserini +test798 Q0 18871284 26 12.748278 Anserini +test798 Q0 5941401 27 12.742058 Anserini +test798 Q0 15053548 28 12.737331 Anserini +test798 Q0 19201420 29 12.652014 Anserini +test798 Q0 18221925 30 12.636102 Anserini +test799 Q0 5844887 1 20.349798 Anserini +test799 Q0 6848646 2 19.401087 Anserini +test799 Q0 12339537 3 19.078741 Anserini +test799 Q0 2690633 4 18.824383 Anserini +test799 Q0 502481 5 18.634020 Anserini +test799 Q0 7121071 6 18.569407 Anserini +test799 Q0 6591595 7 18.441059 Anserini +test799 Q0 1036263 8 18.420609 Anserini +test799 Q0 6837543 9 18.388363 Anserini +test799 Q0 8933110 10 18.281765 Anserini +test799 Q0 6489672 11 18.212618 Anserini +test799 Q0 7140575 12 18.160580 Anserini +test799 Q0 6848644 13 18.130484 Anserini +test799 Q0 6810753 14 18.110222 Anserini +test799 Q0 7233624 15 18.084856 Anserini +test799 Q0 9688218 16 18.065125 Anserini +test799 Q0 6848647 17 18.017889 Anserini +test799 Q0 11729970 18 17.954426 Anserini +test799 Q0 7233623 19 17.945507 Anserini +test799 Q0 5571953 20 17.829601 Anserini +test799 Q0 496998 21 17.767769 Anserini +test799 Q0 6573476 22 17.752100 Anserini +test799 Q0 459593 23 17.737316 Anserini +test799 Q0 9350997 24 17.720812 Anserini +test799 Q0 7885586 25 17.548145 Anserini +test799 Q0 5278789 26 17.544500 Anserini +test799 Q0 11001534 27 17.469358 Anserini +test799 Q0 7012111 28 17.460436 Anserini +test799 Q0 11001531 29 17.397066 Anserini +test799 Q0 7235718 30 17.389286 Anserini +test8 Q0 6527858 1 12.040547 Anserini +test8 Q0 7801945 2 11.563414 Anserini +test8 Q0 7801946 3 11.563414 Anserini +test8 Q0 3941521 4 11.109802 Anserini +test8 Q0 14562925 5 10.406196 Anserini +test8 Q0 10998464 6 10.303443 Anserini +test8 Q0 3245260 7 10.216621 Anserini +test8 Q0 13700648 8 10.149386 Anserini +test8 Q0 11202096 9 9.766858 Anserini +test8 Q0 6527853 10 9.606681 Anserini +test8 Q0 6527857 11 9.577238 Anserini +test8 Q0 11329725 12 9.541084 Anserini +test8 Q0 15096554 13 9.519837 Anserini +test8 Q0 6527863 14 9.479002 Anserini +test8 Q0 10893355 15 9.462106 Anserini +test8 Q0 12001727 16 9.440289 Anserini +test8 Q0 6527847 17 9.430636 Anserini +test8 Q0 16536742 18 9.336993 Anserini +test8 Q0 9527732 19 9.329199 Anserini +test8 Q0 14665487 20 9.287754 Anserini +test8 Q0 9375617 21 9.208329 Anserini +test8 Q0 4171953 22 9.121545 Anserini +test8 Q0 499066 23 9.109426 Anserini +test8 Q0 7490026 24 9.093064 Anserini +test8 Q0 11333162 25 9.073141 Anserini +test8 Q0 10407893 26 9.025234 Anserini +test8 Q0 7450006 27 9.025234 Anserini +test8 Q0 20238828 28 8.966659 Anserini +test8 Q0 10407870 29 8.966321 Anserini +test8 Q0 11329726 30 8.961049 Anserini +test80 Q0 8366007 1 14.908634 Anserini +test80 Q0 2014134 2 14.870481 Anserini +test80 Q0 2014146 3 14.797758 Anserini +test80 Q0 2014128 4 14.281389 Anserini +test80 Q0 2014137 5 13.671844 Anserini +test80 Q0 1702313 6 13.372854 Anserini +test80 Q0 12128745 7 13.221277 Anserini +test80 Q0 2014130 8 13.154804 Anserini +test80 Q0 17919130 9 12.829692 Anserini +test80 Q0 17919135 10 12.674058 Anserini +test80 Q0 2014131 11 12.583198 Anserini +test80 Q0 1702287 12 12.347129 Anserini +test80 Q0 2014139 13 12.303701 Anserini +test80 Q0 1702289 14 12.196268 Anserini +test80 Q0 2014133 15 11.987313 Anserini +test80 Q0 12128763 16 11.721911 Anserini +test80 Q0 1702295 17 11.708764 Anserini +test80 Q0 17919131 18 11.650154 Anserini +test80 Q0 15933224 19 11.647295 Anserini +test80 Q0 2014132 20 11.635475 Anserini +test80 Q0 2014135 21 11.601133 Anserini +test80 Q0 7772620 22 11.419975 Anserini +test80 Q0 1702290 23 11.408148 Anserini +test80 Q0 19742042 24 11.376623 Anserini +test80 Q0 12128749 25 11.363571 Anserini +test80 Q0 17613065 26 11.298497 Anserini +test80 Q0 15137922 27 11.194695 Anserini +test80 Q0 16024596 28 11.103541 Anserini +test80 Q0 9435034 29 10.998335 Anserini +test80 Q0 1702291 30 10.981144 Anserini +test800 Q0 20383659 1 18.079979 Anserini +test800 Q0 20383639 2 17.646116 Anserini +test800 Q0 20383651 3 17.366642 Anserini +test800 Q0 20383656 4 16.945835 Anserini +test800 Q0 20383657 5 16.687737 Anserini +test800 Q0 20383650 6 16.569046 Anserini +test800 Q0 20383653 7 15.726368 Anserini +test800 Q0 20383654 8 15.329916 Anserini +test800 Q0 20383658 9 14.363828 Anserini +test800 Q0 20383652 10 13.946445 Anserini +test800 Q0 9806691 11 13.704720 Anserini +test800 Q0 20383649 12 13.325377 Anserini +test800 Q0 20383648 13 12.950819 Anserini +test800 Q0 20383647 14 12.923011 Anserini +test800 Q0 20383640 15 12.652818 Anserini +test800 Q0 16569997 16 12.632071 Anserini +test800 Q0 15276868 17 12.407335 Anserini +test800 Q0 15276873 18 12.407335 Anserini +test800 Q0 14952692 19 12.377822 Anserini +test800 Q0 8945634 20 12.163402 Anserini +test800 Q0 16812993 21 12.075249 Anserini +test800 Q0 18332407 22 11.965136 Anserini +test800 Q0 20383655 23 11.885616 Anserini +test800 Q0 6310257 24 11.788095 Anserini +test800 Q0 7461016 25 11.779183 Anserini +test800 Q0 7461017 26 11.779183 Anserini +test800 Q0 16569996 27 11.596470 Anserini +test800 Q0 5065555 28 11.540961 Anserini +test800 Q0 6310248 29 11.501727 Anserini +test800 Q0 966707 30 11.486934 Anserini +test801 Q0 16206582 1 12.638762 Anserini +test801 Q0 17868071 2 12.428404 Anserini +test801 Q0 14483966 3 11.973965 Anserini +test801 Q0 13093576 4 11.973965 Anserini +test801 Q0 17084667 5 11.894108 Anserini +test801 Q0 17270280 6 11.782864 Anserini +test801 Q0 18228916 7 11.648112 Anserini +test801 Q0 16797785 8 11.446572 Anserini +test801 Q0 12743079 9 11.292771 Anserini +test801 Q0 5097733 10 11.257010 Anserini +test801 Q0 2857123 11 11.216730 Anserini +test801 Q0 6585030 12 11.108537 Anserini +test801 Q0 15970375 13 11.029106 Anserini +test801 Q0 18891563 14 10.995981 Anserini +test801 Q0 14323090 15 10.937336 Anserini +test801 Q0 8806231 16 10.761243 Anserini +test801 Q0 19680151 17 10.729834 Anserini +test801 Q0 17868079 18 10.717340 Anserini +test801 Q0 4399745 19 10.680585 Anserini +test801 Q0 12022042 20 10.663684 Anserini +test801 Q0 12022043 21 10.663684 Anserini +test801 Q0 5309772 22 10.661689 Anserini +test801 Q0 11305796 23 10.661620 Anserini +test801 Q0 17868137 24 10.638700 Anserini +test801 Q0 14483981 25 10.548944 Anserini +test801 Q0 18430075 26 10.548308 Anserini +test801 Q0 16129357 27 10.502905 Anserini +test801 Q0 17868083 28 10.367947 Anserini +test801 Q0 7460608 29 10.347222 Anserini +test801 Q0 18719292 30 10.321072 Anserini +test802 Q0 20624023 1 15.226609 Anserini +test802 Q0 20624024 2 15.143106 Anserini +test802 Q0 4976568 3 14.525244 Anserini +test802 Q0 8450287 4 14.309587 Anserini +test802 Q0 14856947 5 13.880371 Anserini +test802 Q0 8450280 6 13.553524 Anserini +test802 Q0 1210229 7 13.478142 Anserini +test802 Q0 20624025 8 13.415212 Anserini +test802 Q0 8450281 9 13.381286 Anserini +test802 Q0 12607823 10 12.959005 Anserini +test802 Q0 15311855 11 12.824566 Anserini +test802 Q0 11429721 12 12.686170 Anserini +test802 Q0 11429719 13 12.610544 Anserini +test802 Q0 12216490 14 12.383695 Anserini +test802 Q0 14856949 15 12.325799 Anserini +test802 Q0 6587165 16 12.319811 Anserini +test802 Q0 13696880 17 12.173040 Anserini +test802 Q0 18655069 18 11.929793 Anserini +test802 Q0 8450282 19 11.923101 Anserini +test802 Q0 16754905 20 11.907463 Anserini +test802 Q0 2101537 21 11.844014 Anserini +test802 Q0 11250217 22 11.814576 Anserini +test802 Q0 14729616 23 11.598229 Anserini +test802 Q0 654200 24 11.583061 Anserini +test802 Q0 15650619 25 11.485354 Anserini +test802 Q0 15116219 26 11.435795 Anserini +test802 Q0 15693270 27 11.427135 Anserini +test802 Q0 1871639 28 11.400474 Anserini +test802 Q0 1210232 29 11.399682 Anserini +test802 Q0 5466863 30 11.356521 Anserini +test803 Q0 2616153 1 16.566236 Anserini +test803 Q0 2616154 2 13.622311 Anserini +test803 Q0 2616152 3 13.528461 Anserini +test803 Q0 2092220 4 13.273267 Anserini +test803 Q0 20128387 5 13.211115 Anserini +test803 Q0 2615754 6 13.209496 Anserini +test803 Q0 2515278 7 12.628543 Anserini +test803 Q0 1840256 8 12.608478 Anserini +test803 Q0 2092223 9 12.156410 Anserini +test803 Q0 7023681 10 12.141201 Anserini +test803 Q0 2092221 11 12.050611 Anserini +test803 Q0 9060288 12 11.901095 Anserini +test803 Q0 12971158 13 11.291127 Anserini +test803 Q0 12783446 14 11.253393 Anserini +test803 Q0 19988728 15 11.122168 Anserini +test803 Q0 7448941 16 10.999561 Anserini +test803 Q0 4604092 17 10.978415 Anserini +test803 Q0 12918327 18 10.952938 Anserini +test803 Q0 19988733 19 10.950313 Anserini +test803 Q0 8620060 20 10.849129 Anserini +test803 Q0 4604093 21 10.831223 Anserini +test803 Q0 2615408 22 10.828954 Anserini +test803 Q0 4210518 23 10.797112 Anserini +test803 Q0 2728795 24 10.777104 Anserini +test803 Q0 20795147 25 10.775091 Anserini +test803 Q0 1294959 26 10.756147 Anserini +test803 Q0 13818424 27 10.715740 Anserini +test803 Q0 596061 28 10.689702 Anserini +test803 Q0 17520940 29 10.686369 Anserini +test803 Q0 10331875 30 10.649865 Anserini +test804 Q0 9508660 1 8.343676 Anserini +test804 Q0 1988907 2 8.157567 Anserini +test804 Q0 15201645 3 8.077887 Anserini +test804 Q0 4587998 4 8.033807 Anserini +test804 Q0 9949279 5 7.984794 Anserini +test804 Q0 12534540 6 7.949972 Anserini +test804 Q0 11813778 7 7.840022 Anserini +test804 Q0 4399760 8 7.830371 Anserini +test804 Q0 10423443 9 7.829502 Anserini +test804 Q0 13550674 10 7.699826 Anserini +test804 Q0 12998480 11 7.665498 Anserini +test804 Q0 7697564 12 7.655730 Anserini +test804 Q0 13173111 13 7.630931 Anserini +test804 Q0 9524207 14 7.609529 Anserini +test804 Q0 14420948 15 7.576111 Anserini +test804 Q0 18133535 16 7.549148 Anserini +test804 Q0 13872996 17 7.517704 Anserini +test804 Q0 10704844 18 7.461110 Anserini +test804 Q0 14737205 19 7.459390 Anserini +test804 Q0 3529489 20 7.436019 Anserini +test804 Q0 15394025 21 7.432425 Anserini +test804 Q0 15952420 22 7.430382 Anserini +test804 Q0 5424789 23 7.426562 Anserini +test804 Q0 14713119 24 7.386860 Anserini +test804 Q0 19792356 25 7.317970 Anserini +test804 Q0 8387578 26 7.307288 Anserini +test804 Q0 3670303 27 7.291459 Anserini +test804 Q0 20192435 28 7.279898 Anserini +test804 Q0 9522434 29 7.252672 Anserini +test804 Q0 10128864 30 7.215790 Anserini +test805 Q0 1598484 1 22.078508 Anserini +test805 Q0 1598495 2 20.993073 Anserini +test805 Q0 1598486 3 18.457901 Anserini +test805 Q0 1598488 4 18.190338 Anserini +test805 Q0 4995663 5 17.926714 Anserini +test805 Q0 14662734 6 17.867926 Anserini +test805 Q0 13992114 7 17.841240 Anserini +test805 Q0 12782067 8 16.985319 Anserini +test805 Q0 6278772 9 16.856071 Anserini +test805 Q0 1598487 10 16.350882 Anserini +test805 Q0 1598492 11 14.838962 Anserini +test805 Q0 1598493 12 14.802960 Anserini +test805 Q0 1728874 13 14.450082 Anserini +test805 Q0 15297877 14 13.758880 Anserini +test805 Q0 6278774 15 13.466681 Anserini +test805 Q0 1598490 16 13.282652 Anserini +test805 Q0 1728871 17 13.239148 Anserini +test805 Q0 13992113 18 13.212816 Anserini +test805 Q0 16546747 19 13.191654 Anserini +test805 Q0 1598491 20 12.830269 Anserini +test805 Q0 20789163 21 12.294945 Anserini +test805 Q0 1598494 22 12.245792 Anserini +test805 Q0 12782066 23 12.138590 Anserini +test805 Q0 16546751 24 12.133467 Anserini +test805 Q0 12782064 25 11.986509 Anserini +test805 Q0 20789160 26 11.899897 Anserini +test805 Q0 3407161 27 11.872334 Anserini +test805 Q0 4312470 28 11.810928 Anserini +test805 Q0 11839186 29 11.785035 Anserini +test805 Q0 14740254 30 11.699710 Anserini +test806 Q0 9448055 1 18.310324 Anserini +test806 Q0 1414132 2 17.582626 Anserini +test806 Q0 8373406 3 16.888828 Anserini +test806 Q0 9769399 4 15.713657 Anserini +test806 Q0 9448059 5 15.160530 Anserini +test806 Q0 11245990 6 14.343401 Anserini +test806 Q0 11245992 7 14.270822 Anserini +test806 Q0 1414114 8 13.773941 Anserini +test806 Q0 6985428 9 13.653461 Anserini +test806 Q0 17672620 10 13.565090 Anserini +test806 Q0 14087601 11 13.456990 Anserini +test806 Q0 7066084 12 13.454594 Anserini +test806 Q0 8373410 13 13.336675 Anserini +test806 Q0 5479505 14 13.323277 Anserini +test806 Q0 11245994 15 13.297447 Anserini +test806 Q0 7448208 16 13.162395 Anserini +test806 Q0 2809868 17 12.940180 Anserini +test806 Q0 12745344 18 12.925350 Anserini +test806 Q0 9223248 19 12.919368 Anserini +test806 Q0 1414118 20 12.866050 Anserini +test806 Q0 19867114 21 12.850811 Anserini +test806 Q0 19867117 22 12.850811 Anserini +test806 Q0 5614336 23 12.844138 Anserini +test806 Q0 4688078 24 12.738948 Anserini +test806 Q0 1414130 25 12.703096 Anserini +test806 Q0 6066487 26 11.774218 Anserini +test806 Q0 6968845 27 11.622373 Anserini +test806 Q0 9223247 28 11.527553 Anserini +test806 Q0 9446639 29 11.520707 Anserini +test806 Q0 1414131 30 11.518146 Anserini +test807 Q0 689958 1 12.058051 Anserini +test807 Q0 2529736 2 11.502700 Anserini +test807 Q0 13913844 3 10.842914 Anserini +test807 Q0 14683639 4 10.124202 Anserini +test807 Q0 13802688 5 9.717861 Anserini +test807 Q0 15721808 6 9.671295 Anserini +test807 Q0 15609455 7 9.562677 Anserini +test807 Q0 7675653 8 9.525264 Anserini +test807 Q0 7910321 9 9.495546 Anserini +test807 Q0 9907042 10 9.487034 Anserini +test807 Q0 9513426 11 9.463101 Anserini +test807 Q0 16171649 12 9.405344 Anserini +test807 Q0 7001167 13 9.405344 Anserini +test807 Q0 1454416 14 9.302371 Anserini +test807 Q0 2040281 15 9.297595 Anserini +test807 Q0 15175733 16 9.208487 Anserini +test807 Q0 407341 17 9.172667 Anserini +test807 Q0 6077631 18 9.163430 Anserini +test807 Q0 2488568 19 9.117467 Anserini +test807 Q0 15609453 20 9.088295 Anserini +test807 Q0 8158214 21 9.081572 Anserini +test807 Q0 15548389 22 9.057437 Anserini +test807 Q0 9581308 23 9.047495 Anserini +test807 Q0 17849754 24 9.016858 Anserini +test807 Q0 3204434 25 8.999358 Anserini +test807 Q0 241226 26 8.987391 Anserini +test807 Q0 14333330 27 8.986996 Anserini +test807 Q0 9513420 28 8.969621 Anserini +test807 Q0 783237 29 8.955517 Anserini +test807 Q0 9513328 30 8.946363 Anserini +test808 Q0 16411845 1 15.808446 Anserini +test808 Q0 16411854 2 14.768375 Anserini +test808 Q0 11717025 3 14.646952 Anserini +test808 Q0 10973254 4 14.067350 Anserini +test808 Q0 10973253 5 13.998196 Anserini +test808 Q0 8419045 6 13.931211 Anserini +test808 Q0 10487343 7 13.874619 Anserini +test808 Q0 16898301 8 13.836487 Anserini +test808 Q0 8564098 9 13.795498 Anserini +test808 Q0 16411853 10 13.744034 Anserini +test808 Q0 10487342 11 13.696177 Anserini +test808 Q0 6273169 12 13.620945 Anserini +test808 Q0 4928582 13 13.617195 Anserini +test808 Q0 3567751 14 13.615981 Anserini +test808 Q0 8035693 15 13.457553 Anserini +test808 Q0 5206072 16 13.131875 Anserini +test808 Q0 7627301 17 13.109851 Anserini +test808 Q0 13490780 18 13.104988 Anserini +test808 Q0 13490779 19 13.104988 Anserini +test808 Q0 6384959 20 13.062194 Anserini +test808 Q0 4455029 21 13.041535 Anserini +test808 Q0 11069187 22 13.015269 Anserini +test808 Q0 8779497 23 12.979478 Anserini +test808 Q0 12719061 24 12.934572 Anserini +test808 Q0 13454388 25 12.883953 Anserini +test808 Q0 10579405 26 12.871911 Anserini +test808 Q0 15513682 27 12.806012 Anserini +test808 Q0 20170765 28 12.805737 Anserini +test808 Q0 9308556 29 12.789435 Anserini +test808 Q0 5265968 30 12.747490 Anserini +test809 Q0 13706808 1 25.873066 Anserini +test809 Q0 13706788 2 25.549770 Anserini +test809 Q0 13706787 3 24.700632 Anserini +test809 Q0 967312 4 24.425920 Anserini +test809 Q0 965014 5 24.170759 Anserini +test809 Q0 13706781 6 24.087700 Anserini +test809 Q0 19217700 7 23.424078 Anserini +test809 Q0 13706810 8 23.324841 Anserini +test809 Q0 13706786 9 23.253477 Anserini +test809 Q0 967314 10 23.244625 Anserini +test809 Q0 20117578 11 23.221878 Anserini +test809 Q0 13706783 12 23.218567 Anserini +test809 Q0 1567831 13 23.013660 Anserini +test809 Q0 13706817 14 22.976068 Anserini +test809 Q0 1567830 15 22.929565 Anserini +test809 Q0 13706806 16 22.805593 Anserini +test809 Q0 2027050 17 22.767929 Anserini +test809 Q0 13706805 18 22.559490 Anserini +test809 Q0 13706799 19 22.534050 Anserini +test809 Q0 1567829 20 22.495821 Anserini +test809 Q0 20842112 21 22.288307 Anserini +test809 Q0 967315 22 22.224358 Anserini +test809 Q0 13335523 23 22.122837 Anserini +test809 Q0 13706796 24 22.115154 Anserini +test809 Q0 965007 25 22.061182 Anserini +test809 Q0 13706807 26 21.989311 Anserini +test809 Q0 13706792 27 21.948494 Anserini +test809 Q0 14308159 28 21.922291 Anserini +test809 Q0 1663070 29 21.634720 Anserini +test809 Q0 13706815 30 21.401825 Anserini +test81 Q0 19275270 1 16.119881 Anserini +test81 Q0 19275255 2 14.274162 Anserini +test81 Q0 20670493 3 14.132563 Anserini +test81 Q0 5036566 4 14.104275 Anserini +test81 Q0 19275252 5 14.014440 Anserini +test81 Q0 20670494 6 13.998060 Anserini +test81 Q0 19275265 7 13.888450 Anserini +test81 Q0 19274317 8 13.857103 Anserini +test81 Q0 19275258 9 13.844664 Anserini +test81 Q0 19275269 10 13.819591 Anserini +test81 Q0 19275263 11 13.787958 Anserini +test81 Q0 19275277 12 13.632982 Anserini +test81 Q0 19275254 13 13.624118 Anserini +test81 Q0 19275259 14 13.444049 Anserini +test81 Q0 17845948 15 13.379395 Anserini +test81 Q0 19274319 16 13.248146 Anserini +test81 Q0 18753857 17 13.155290 Anserini +test81 Q0 19275257 18 12.981119 Anserini +test81 Q0 17845918 19 12.919982 Anserini +test81 Q0 18533004 20 12.902996 Anserini +test81 Q0 19275266 21 12.814203 Anserini +test81 Q0 10261275 22 12.790483 Anserini +test81 Q0 20262319 23 12.603004 Anserini +test81 Q0 19275264 24 12.535758 Anserini +test81 Q0 17845950 25 12.517495 Anserini +test81 Q0 18789966 26 12.468964 Anserini +test81 Q0 19275276 27 12.434786 Anserini +test81 Q0 19680444 28 12.373241 Anserini +test81 Q0 19275262 29 12.306883 Anserini +test81 Q0 19877271 30 12.273431 Anserini +test810 Q0 2095227 1 10.985258 Anserini +test810 Q0 5912543 2 10.341767 Anserini +test810 Q0 9221998 3 10.158916 Anserini +test810 Q0 434460 4 9.911650 Anserini +test810 Q0 3384600 5 9.881896 Anserini +test810 Q0 434533 6 9.860340 Anserini +test810 Q0 434497 7 9.592690 Anserini +test810 Q0 16900711 8 9.377877 Anserini +test810 Q0 2095229 9 9.366364 Anserini +test810 Q0 434524 10 9.339414 Anserini +test810 Q0 2095250 11 9.294425 Anserini +test810 Q0 10978735 12 9.168342 Anserini +test810 Q0 2095246 13 9.132157 Anserini +test810 Q0 2776070 14 9.096654 Anserini +test810 Q0 11549496 15 9.076786 Anserini +test810 Q0 1737741 16 9.021214 Anserini +test810 Q0 4055953 17 9.021214 Anserini +test810 Q0 12602144 18 9.021214 Anserini +test810 Q0 434532 19 9.011828 Anserini +test810 Q0 2095226 20 8.977664 Anserini +test810 Q0 5899807 21 8.944510 Anserini +test810 Q0 434539 22 8.769389 Anserini +test810 Q0 434520 23 8.742708 Anserini +test810 Q0 1404799 24 8.736034 Anserini +test810 Q0 13551253 25 8.707896 Anserini +test810 Q0 724720 26 8.689485 Anserini +test810 Q0 532279 27 8.643090 Anserini +test810 Q0 672707 28 8.643090 Anserini +test810 Q0 13399800 29 8.637052 Anserini +test810 Q0 11383478 30 8.629761 Anserini +test811 Q0 15192627 1 24.174061 Anserini +test811 Q0 15192630 2 24.174061 Anserini +test811 Q0 19269402 3 22.171286 Anserini +test811 Q0 19648429 4 21.097702 Anserini +test811 Q0 19701323 5 20.981161 Anserini +test811 Q0 15461434 6 19.643642 Anserini +test811 Q0 19648428 7 19.439005 Anserini +test811 Q0 15949896 8 19.439005 Anserini +test811 Q0 15461435 9 17.112509 Anserini +test811 Q0 15573218 10 16.565289 Anserini +test811 Q0 15573222 11 16.494125 Anserini +test811 Q0 10492166 12 16.255241 Anserini +test811 Q0 20163757 13 16.241982 Anserini +test811 Q0 20163764 14 16.241982 Anserini +test811 Q0 20360290 15 16.237743 Anserini +test811 Q0 17159783 16 16.197935 Anserini +test811 Q0 14831261 17 15.991462 Anserini +test811 Q0 20360293 18 15.878737 Anserini +test811 Q0 14075427 19 15.736675 Anserini +test811 Q0 20227866 20 15.704127 Anserini +test811 Q0 19676415 21 15.704127 Anserini +test811 Q0 19369684 22 15.704127 Anserini +test811 Q0 19920781 23 15.625858 Anserini +test811 Q0 20219828 24 15.548431 Anserini +test811 Q0 18301699 25 15.369040 Anserini +test811 Q0 14201326 26 15.318475 Anserini +test811 Q0 14984446 27 15.298292 Anserini +test811 Q0 16130495 28 15.243567 Anserini +test811 Q0 18080667 29 15.243567 Anserini +test811 Q0 14201343 30 15.181597 Anserini +test812 Q0 20428457 1 16.052465 Anserini +test812 Q0 6196143 2 15.701761 Anserini +test812 Q0 20428455 3 15.672541 Anserini +test812 Q0 20428451 4 14.861075 Anserini +test812 Q0 15847563 5 14.571074 Anserini +test812 Q0 8169083 6 14.441305 Anserini +test812 Q0 6196133 7 14.434015 Anserini +test812 Q0 8169086 8 14.353628 Anserini +test812 Q0 6715024 9 14.235137 Anserini +test812 Q0 20428465 10 14.030417 Anserini +test812 Q0 6196134 11 13.715906 Anserini +test812 Q0 14731380 12 13.601942 Anserini +test812 Q0 6196126 13 13.567332 Anserini +test812 Q0 6196132 14 13.545003 Anserini +test812 Q0 6196123 15 13.513657 Anserini +test812 Q0 6196145 16 13.513657 Anserini +test812 Q0 5599335 17 13.491012 Anserini +test812 Q0 15930001 18 13.488861 Anserini +test812 Q0 1324661 19 13.465171 Anserini +test812 Q0 18967728 20 13.430510 Anserini +test812 Q0 12267628 21 13.403196 Anserini +test812 Q0 8691031 22 13.389815 Anserini +test812 Q0 6196140 23 13.298256 Anserini +test812 Q0 6196138 24 13.298256 Anserini +test812 Q0 6196139 25 13.298256 Anserini +test812 Q0 20428464 26 13.242292 Anserini +test812 Q0 12267631 27 13.199800 Anserini +test812 Q0 16459468 28 13.162549 Anserini +test812 Q0 6196142 29 13.162549 Anserini +test812 Q0 6196141 30 13.146246 Anserini +test813 Q0 19671499 1 19.034521 Anserini +test813 Q0 19671480 2 18.454277 Anserini +test813 Q0 19671502 3 18.454277 Anserini +test813 Q0 19671492 4 17.917669 Anserini +test813 Q0 19671491 5 16.492783 Anserini +test813 Q0 19671495 6 16.492783 Anserini +test813 Q0 19671497 7 16.388090 Anserini +test813 Q0 19671493 8 16.146460 Anserini +test813 Q0 19671498 9 16.035860 Anserini +test813 Q0 19671487 10 15.522779 Anserini +test813 Q0 19748364 11 15.351722 Anserini +test813 Q0 19748371 12 15.351722 Anserini +test813 Q0 19030191 13 15.351484 Anserini +test813 Q0 19748369 14 15.227932 Anserini +test813 Q0 19671484 15 15.201935 Anserini +test813 Q0 19671485 16 14.953728 Anserini +test813 Q0 20654771 17 14.874619 Anserini +test813 Q0 19671494 18 14.675803 Anserini +test813 Q0 15581893 19 14.479479 Anserini +test813 Q0 5328586 20 14.409755 Anserini +test813 Q0 4072272 21 14.398205 Anserini +test813 Q0 2041254 22 14.398205 Anserini +test813 Q0 19671488 23 14.387201 Anserini +test813 Q0 4813715 24 14.303485 Anserini +test813 Q0 17326367 25 14.261190 Anserini +test813 Q0 17766699 26 14.210122 Anserini +test813 Q0 19671482 27 14.089191 Anserini +test813 Q0 19671486 28 14.089191 Anserini +test813 Q0 16859328 29 14.071163 Anserini +test813 Q0 9879948 30 14.005837 Anserini +test814 Q0 5278040 1 12.946308 Anserini +test814 Q0 3832489 2 12.841820 Anserini +test814 Q0 5278028 3 12.420509 Anserini +test814 Q0 5278048 4 12.128895 Anserini +test814 Q0 5278022 5 12.009054 Anserini +test814 Q0 11242338 6 11.588042 Anserini +test814 Q0 5278035 7 11.511543 Anserini +test814 Q0 5278037 8 11.411558 Anserini +test814 Q0 1615437 9 11.258242 Anserini +test814 Q0 11242392 10 11.234734 Anserini +test814 Q0 5278041 11 11.234734 Anserini +test814 Q0 20814674 12 11.168854 Anserini +test814 Q0 11590756 13 11.034089 Anserini +test814 Q0 17082302 14 10.977774 Anserini +test814 Q0 8468185 15 10.957773 Anserini +test814 Q0 5278023 16 10.903087 Anserini +test814 Q0 5278027 17 10.850987 Anserini +test814 Q0 5278036 18 10.801560 Anserini +test814 Q0 12367852 19 10.776224 Anserini +test814 Q0 2219057 20 10.702909 Anserini +test814 Q0 5278047 21 10.690767 Anserini +test814 Q0 4424366 22 10.644571 Anserini +test814 Q0 8401493 23 10.630913 Anserini +test814 Q0 17553606 24 10.617824 Anserini +test814 Q0 5278031 25 10.582223 Anserini +test814 Q0 5278042 26 10.487457 Anserini +test814 Q0 14066151 27 10.470578 Anserini +test814 Q0 19099158 28 10.453285 Anserini +test814 Q0 8451251 29 10.448580 Anserini +test814 Q0 5278024 30 10.406139 Anserini +test815 Q0 11299788 1 12.817429 Anserini +test815 Q0 12487679 2 12.732484 Anserini +test815 Q0 7954149 3 12.470070 Anserini +test815 Q0 710736 4 12.324668 Anserini +test815 Q0 20615919 5 12.099742 Anserini +test815 Q0 20566144 6 12.097178 Anserini +test815 Q0 12266232 7 12.088827 Anserini +test815 Q0 2149958 8 11.939105 Anserini +test815 Q0 17254669 9 11.917145 Anserini +test815 Q0 290727 10 11.846394 Anserini +test815 Q0 13464385 11 11.720366 Anserini +test815 Q0 228649 12 11.707546 Anserini +test815 Q0 4100596 13 11.677473 Anserini +test815 Q0 19788511 14 11.656136 Anserini +test815 Q0 2988241 15 11.641779 Anserini +test815 Q0 1397763 16 11.608958 Anserini +test815 Q0 290714 17 11.603477 Anserini +test815 Q0 8331199 18 11.560774 Anserini +test815 Q0 20502240 19 11.534167 Anserini +test815 Q0 15782844 20 11.517040 Anserini +test815 Q0 1543265 21 11.489983 Anserini +test815 Q0 290713 22 11.481843 Anserini +test815 Q0 8228962 23 11.454306 Anserini +test815 Q0 3148596 24 11.397467 Anserini +test815 Q0 10925647 25 11.373692 Anserini +test815 Q0 3067829 26 11.354579 Anserini +test815 Q0 2104772 27 11.341076 Anserini +test815 Q0 8228973 28 11.338548 Anserini +test815 Q0 357161 29 11.322091 Anserini +test815 Q0 8228994 30 11.315374 Anserini +test816 Q0 5248932 1 10.047129 Anserini +test816 Q0 61391 2 10.032218 Anserini +test816 Q0 16115371 3 9.619020 Anserini +test816 Q0 8151383 4 9.527200 Anserini +test816 Q0 6452611 5 9.175661 Anserini +test816 Q0 5286215 6 9.146260 Anserini +test816 Q0 5462820 7 8.982105 Anserini +test816 Q0 303068 8 8.802831 Anserini +test816 Q0 5820962 9 8.802831 Anserini +test816 Q0 7173947 10 8.733359 Anserini +test816 Q0 18691043 11 8.718165 Anserini +test816 Q0 14603571 12 8.609121 Anserini +test816 Q0 18691045 13 8.595478 Anserini +test816 Q0 10505 14 8.548868 Anserini +test816 Q0 10460 15 8.487308 Anserini +test816 Q0 268086 16 8.474837 Anserini +test816 Q0 5554636 17 8.474837 Anserini +test816 Q0 9645477 18 8.474837 Anserini +test816 Q0 1288687 19 8.437828 Anserini +test816 Q0 132982 20 8.400126 Anserini +test816 Q0 2720787 21 8.367415 Anserini +test816 Q0 2922421 22 8.337839 Anserini +test816 Q0 5446964 23 8.326778 Anserini +test816 Q0 165502 24 8.322641 Anserini +test816 Q0 7051278 25 8.316449 Anserini +test816 Q0 14352517 26 8.316449 Anserini +test816 Q0 9466512 27 8.278252 Anserini +test816 Q0 13764926 28 8.265146 Anserini +test816 Q0 4438532 29 8.247005 Anserini +test816 Q0 2720804 30 8.237266 Anserini +test817 Q0 18096364 1 17.802963 Anserini +test817 Q0 18019742 2 17.378222 Anserini +test817 Q0 18159912 3 16.294987 Anserini +test817 Q0 18057346 4 16.182173 Anserini +test817 Q0 18147630 5 16.182173 Anserini +test817 Q0 18093665 6 16.071253 Anserini +test817 Q0 18071384 7 16.071253 Anserini +test817 Q0 1618867 8 14.778166 Anserini +test817 Q0 9049379 9 14.608615 Anserini +test817 Q0 9049493 10 14.608615 Anserini +test817 Q0 10444969 11 14.524794 Anserini +test817 Q0 1618871 12 14.464170 Anserini +test817 Q0 11714877 13 14.432108 Anserini +test817 Q0 17820159 14 14.405963 Anserini +test817 Q0 9049414 15 14.258148 Anserini +test817 Q0 9484314 16 14.258148 Anserini +test817 Q0 730438 17 14.079343 Anserini +test817 Q0 9049363 18 14.048712 Anserini +test817 Q0 5438598 19 14.045845 Anserini +test817 Q0 9639548 20 13.670000 Anserini +test817 Q0 5081265 21 13.640392 Anserini +test817 Q0 18019743 22 13.588951 Anserini +test817 Q0 17820153 23 13.563153 Anserini +test817 Q0 9049526 24 13.550599 Anserini +test817 Q0 7022174 25 13.313506 Anserini +test817 Q0 1618865 26 13.263516 Anserini +test817 Q0 17820150 27 13.239546 Anserini +test817 Q0 17820162 28 13.239546 Anserini +test817 Q0 13557117 29 13.145437 Anserini +test817 Q0 14034777 30 13.093524 Anserini +test818 Q0 18339915 1 19.766413 Anserini +test818 Q0 19752624 2 19.334785 Anserini +test818 Q0 12823310 3 19.061058 Anserini +test818 Q0 12823311 4 19.061058 Anserini +test818 Q0 5034274 5 18.820381 Anserini +test818 Q0 18199026 6 18.110798 Anserini +test818 Q0 11618529 7 18.062023 Anserini +test818 Q0 14747687 8 17.714752 Anserini +test818 Q0 11869750 9 17.624126 Anserini +test818 Q0 17275418 10 17.501200 Anserini +test818 Q0 7850279 11 17.484650 Anserini +test818 Q0 14530677 12 17.414719 Anserini +test818 Q0 12159457 13 17.403151 Anserini +test818 Q0 15250939 14 17.392071 Anserini +test818 Q0 19388798 15 17.352013 Anserini +test818 Q0 18887325 16 17.320557 Anserini +test818 Q0 20004420 17 17.247900 Anserini +test818 Q0 5189165 18 17.207710 Anserini +test818 Q0 15623733 19 17.174667 Anserini +test818 Q0 10996144 20 17.169502 Anserini +test818 Q0 11869749 21 17.115013 Anserini +test818 Q0 14747689 22 17.065990 Anserini +test818 Q0 20004421 23 17.058922 Anserini +test818 Q0 9226630 24 17.054495 Anserini +test818 Q0 18040053 25 17.053280 Anserini +test818 Q0 14747688 26 17.052965 Anserini +test818 Q0 16660748 27 17.032257 Anserini +test818 Q0 7580984 28 17.028236 Anserini +test818 Q0 2295322 29 17.021338 Anserini +test818 Q0 19752622 30 16.985067 Anserini +test819 Q0 9161807 1 10.130388 Anserini +test819 Q0 17285239 2 9.853762 Anserini +test819 Q0 1051264 3 9.779352 Anserini +test819 Q0 9161854 4 9.508479 Anserini +test819 Q0 3880713 5 9.343513 Anserini +test819 Q0 9161802 6 9.321996 Anserini +test819 Q0 9161833 7 9.321996 Anserini +test819 Q0 10836449 8 9.200698 Anserini +test819 Q0 15117431 9 9.192661 Anserini +test819 Q0 20159957 10 9.190619 Anserini +test819 Q0 15575443 11 9.168066 Anserini +test819 Q0 17851197 12 9.098130 Anserini +test819 Q0 17285238 13 9.070706 Anserini +test819 Q0 9161842 14 9.039079 Anserini +test819 Q0 9161853 15 9.006905 Anserini +test819 Q0 9161851 16 8.956451 Anserini +test819 Q0 9161821 17 8.956451 Anserini +test819 Q0 9161849 18 8.949814 Anserini +test819 Q0 9161847 19 8.862584 Anserini +test819 Q0 17851192 20 8.847125 Anserini +test819 Q0 17521263 21 8.847125 Anserini +test819 Q0 9161850 22 8.787313 Anserini +test819 Q0 9161824 23 8.755749 Anserini +test819 Q0 14862347 24 8.748085 Anserini +test819 Q0 14862368 25 8.733415 Anserini +test819 Q0 17993584 26 8.725787 Anserini +test819 Q0 9161829 27 8.701264 Anserini +test819 Q0 9161845 28 8.701264 Anserini +test819 Q0 17044742 29 8.697956 Anserini +test819 Q0 17521269 30 8.685239 Anserini +test82 Q0 6283068 1 13.548301 Anserini +test82 Q0 286641 2 13.054611 Anserini +test82 Q0 393937 3 12.545482 Anserini +test82 Q0 1944517 4 12.136884 Anserini +test82 Q0 11157363 5 12.136884 Anserini +test82 Q0 8915735 6 12.101204 Anserini +test82 Q0 12997136 7 12.002509 Anserini +test82 Q0 12997137 8 11.724462 Anserini +test82 Q0 9868975 9 11.682425 Anserini +test82 Q0 9861958 10 11.404385 Anserini +test82 Q0 16468907 11 11.387528 Anserini +test82 Q0 12314209 12 11.346142 Anserini +test82 Q0 15206647 13 11.310233 Anserini +test82 Q0 16905566 14 11.299827 Anserini +test82 Q0 11129245 15 11.280176 Anserini +test82 Q0 9860976 16 11.260625 Anserini +test82 Q0 9869760 17 11.224952 Anserini +test82 Q0 12486350 18 11.189272 Anserini +test82 Q0 13705866 19 11.182516 Anserini +test82 Q0 9354292 20 11.129024 Anserini +test82 Q0 8915746 21 11.086605 Anserini +test82 Q0 9862641 22 11.078774 Anserini +test82 Q0 9684233 23 11.066683 Anserini +test82 Q0 15360671 24 11.048338 Anserini +test82 Q0 6796846 25 11.040258 Anserini +test82 Q0 7346209 26 11.018271 Anserini +test82 Q0 6224943 27 10.986611 Anserini +test82 Q0 9861976 28 10.944322 Anserini +test82 Q0 6757213 29 10.932269 Anserini +test82 Q0 106535 30 10.929832 Anserini +test820 Q0 11941797 1 11.056406 Anserini +test820 Q0 495400 2 10.411593 Anserini +test820 Q0 18842944 3 10.250187 Anserini +test820 Q0 17659333 4 10.044232 Anserini +test820 Q0 17659332 5 10.015468 Anserini +test820 Q0 629288 6 9.931647 Anserini +test820 Q0 11941799 7 9.931303 Anserini +test820 Q0 14462269 8 9.378970 Anserini +test820 Q0 495413 9 9.347575 Anserini +test820 Q0 17506136 10 9.312387 Anserini +test820 Q0 8828699 11 9.296069 Anserini +test820 Q0 11315080 12 9.277687 Anserini +test820 Q0 747016 13 9.220672 Anserini +test820 Q0 14462268 14 9.220151 Anserini +test820 Q0 7883359 15 9.117558 Anserini +test820 Q0 659675 16 8.875641 Anserini +test820 Q0 4515614 17 8.824440 Anserini +test820 Q0 11607730 18 8.803097 Anserini +test820 Q0 2642329 19 8.742286 Anserini +test820 Q0 989515 20 8.741652 Anserini +test820 Q0 1010756 21 8.734971 Anserini +test820 Q0 7957402 22 8.724604 Anserini +test820 Q0 989516 23 8.715938 Anserini +test820 Q0 3998395 24 8.692057 Anserini +test820 Q0 4527369 25 8.670537 Anserini +test820 Q0 3233798 26 8.643019 Anserini +test820 Q0 13825990 27 8.636619 Anserini +test820 Q0 18032348 28 8.635650 Anserini +test820 Q0 11941796 29 8.610310 Anserini +test820 Q0 9461381 30 8.596254 Anserini +test821 Q0 19747768 1 15.265377 Anserini +test821 Q0 9304503 2 14.906443 Anserini +test821 Q0 8223693 3 14.901163 Anserini +test821 Q0 12681304 4 14.831880 Anserini +test821 Q0 11529961 5 14.711625 Anserini +test821 Q0 5270935 6 14.683528 Anserini +test821 Q0 3574774 7 14.681279 Anserini +test821 Q0 8720869 8 14.655391 Anserini +test821 Q0 15497437 9 14.551691 Anserini +test821 Q0 4340296 10 14.550270 Anserini +test821 Q0 2584238 11 14.534770 Anserini +test821 Q0 5848460 12 14.514109 Anserini +test821 Q0 20917118 13 14.460361 Anserini +test821 Q0 16016871 14 14.447498 Anserini +test821 Q0 4373256 15 14.376162 Anserini +test821 Q0 197732 16 14.346194 Anserini +test821 Q0 19058942 17 14.314362 Anserini +test821 Q0 8424837 18 14.291925 Anserini +test821 Q0 9397084 19 14.268776 Anserini +test821 Q0 5944750 20 14.262585 Anserini +test821 Q0 7879709 21 14.250025 Anserini +test821 Q0 18648388 22 14.245456 Anserini +test821 Q0 5781047 23 14.205236 Anserini +test821 Q0 14101616 24 14.203417 Anserini +test821 Q0 10105287 25 14.159025 Anserini +test821 Q0 4603918 26 14.151110 Anserini +test821 Q0 4038109 27 14.150745 Anserini +test821 Q0 15228259 28 14.149925 Anserini +test821 Q0 11041883 29 14.149497 Anserini +test821 Q0 6277965 30 14.127174 Anserini +test822 Q0 15988450 1 21.542265 Anserini +test822 Q0 19361197 2 20.098339 Anserini +test822 Q0 4338 3 18.848537 Anserini +test822 Q0 9485452 4 17.074049 Anserini +test822 Q0 15988452 5 16.967617 Anserini +test822 Q0 17932797 6 16.779650 Anserini +test822 Q0 15988461 7 16.229294 Anserini +test822 Q0 15988454 8 15.867568 Anserini +test822 Q0 15988432 9 15.758859 Anserini +test822 Q0 15988423 10 15.338606 Anserini +test822 Q0 15988426 11 15.288272 Anserini +test822 Q0 17932798 12 15.233796 Anserini +test822 Q0 18379954 13 14.889348 Anserini +test822 Q0 5946058 14 14.841348 Anserini +test822 Q0 15988430 15 14.707746 Anserini +test822 Q0 9485438 16 14.634165 Anserini +test822 Q0 17932785 17 14.620851 Anserini +test822 Q0 9485477 18 14.588978 Anserini +test822 Q0 19720715 19 14.424809 Anserini +test822 Q0 15988448 20 14.416842 Anserini +test822 Q0 15988457 21 14.383161 Anserini +test822 Q0 1947284 22 14.247887 Anserini +test822 Q0 15988445 23 14.209255 Anserini +test822 Q0 3515333 24 14.152584 Anserini +test822 Q0 17464377 25 14.074740 Anserini +test822 Q0 9485451 26 14.071687 Anserini +test822 Q0 15988438 27 14.021603 Anserini +test822 Q0 15988443 28 14.021603 Anserini +test822 Q0 15988431 29 14.004499 Anserini +test822 Q0 15988441 30 13.964367 Anserini +test823 Q0 15474225 1 12.664172 Anserini +test823 Q0 9934582 2 12.006487 Anserini +test823 Q0 11188985 3 11.747294 Anserini +test823 Q0 8462956 4 11.305799 Anserini +test823 Q0 3069911 5 11.113044 Anserini +test823 Q0 8898805 6 11.025213 Anserini +test823 Q0 13124435 7 10.938244 Anserini +test823 Q0 27172 8 10.915792 Anserini +test823 Q0 14447674 9 10.915792 Anserini +test823 Q0 27179 10 10.867376 Anserini +test823 Q0 19193637 11 10.825147 Anserini +test823 Q0 12606764 12 10.780558 Anserini +test823 Q0 17614306 13 10.732012 Anserini +test823 Q0 9104138 14 10.732012 Anserini +test823 Q0 7788149 15 10.726569 Anserini +test823 Q0 7855307 16 10.703996 Anserini +test823 Q0 17572459 17 10.692322 Anserini +test823 Q0 10971870 18 10.662186 Anserini +test823 Q0 12886789 19 10.656836 Anserini +test823 Q0 12191901 20 10.653112 Anserini +test823 Q0 13183988 21 10.653112 Anserini +test823 Q0 27200 22 10.561864 Anserini +test823 Q0 17730248 23 10.549545 Anserini +test823 Q0 27164 24 10.535816 Anserini +test823 Q0 894127 25 10.535816 Anserini +test823 Q0 16836121 26 10.461259 Anserini +test823 Q0 9068393 27 10.457124 Anserini +test823 Q0 19796073 28 10.457124 Anserini +test823 Q0 11046735 29 10.405605 Anserini +test823 Q0 7170480 30 10.402445 Anserini +test824 Q0 7697398 1 11.101002 Anserini +test824 Q0 11585409 2 10.628302 Anserini +test824 Q0 4791940 3 10.232497 Anserini +test824 Q0 20374179 4 10.165600 Anserini +test824 Q0 19344482 5 10.075938 Anserini +test824 Q0 17729385 6 9.995768 Anserini +test824 Q0 19988626 7 9.990874 Anserini +test824 Q0 17796992 8 9.979688 Anserini +test824 Q0 11585424 9 9.949797 Anserini +test824 Q0 19112222 10 9.834334 Anserini +test824 Q0 18124158 11 9.799419 Anserini +test824 Q0 18124159 12 9.799419 Anserini +test824 Q0 4920020 13 9.796713 Anserini +test824 Q0 20374180 14 9.791538 Anserini +test824 Q0 17946944 15 9.779644 Anserini +test824 Q0 2017691 16 9.700075 Anserini +test824 Q0 15256975 17 9.681110 Anserini +test824 Q0 621375 18 9.668472 Anserini +test824 Q0 14054881 19 9.667630 Anserini +test824 Q0 18574943 20 9.636478 Anserini +test824 Q0 18574944 21 9.636478 Anserini +test824 Q0 11585401 22 9.582395 Anserini +test824 Q0 16920637 23 9.568972 Anserini +test824 Q0 17505749 24 9.535807 Anserini +test824 Q0 17505754 25 9.535807 Anserini +test824 Q0 9930087 26 9.523881 Anserini +test824 Q0 12469286 27 9.514752 Anserini +test824 Q0 19112228 28 9.502456 Anserini +test824 Q0 20322380 29 9.455031 Anserini +test824 Q0 12031845 30 9.424221 Anserini +test825 Q0 18680334 1 9.802953 Anserini +test825 Q0 19272991 2 9.465521 Anserini +test825 Q0 19272993 3 9.465521 Anserini +test825 Q0 8153752 4 9.455993 Anserini +test825 Q0 2641974 5 9.378653 Anserini +test825 Q0 2641983 6 9.378653 Anserini +test825 Q0 3487147 7 9.313892 Anserini +test825 Q0 11677682 8 9.217109 Anserini +test825 Q0 16499752 9 9.147229 Anserini +test825 Q0 2942732 10 9.087157 Anserini +test825 Q0 1530558 11 8.764937 Anserini +test825 Q0 4667922 12 8.756012 Anserini +test825 Q0 15513370 13 8.741178 Anserini +test825 Q0 11663863 14 8.727594 Anserini +test825 Q0 15273026 15 8.684739 Anserini +test825 Q0 4188345 16 8.664175 Anserini +test825 Q0 8345184 17 8.633460 Anserini +test825 Q0 1599149 18 8.581717 Anserini +test825 Q0 1599145 19 8.574563 Anserini +test825 Q0 6598193 20 8.571022 Anserini +test825 Q0 19515751 21 8.568563 Anserini +test825 Q0 18490149 22 8.560647 Anserini +test825 Q0 14415874 23 8.554073 Anserini +test825 Q0 630121 24 8.553216 Anserini +test825 Q0 3167865 25 8.546999 Anserini +test825 Q0 13320169 26 8.500491 Anserini +test825 Q0 3288622 27 8.478439 Anserini +test825 Q0 691921 28 8.436928 Anserini +test825 Q0 19515771 29 8.419746 Anserini +test825 Q0 7288494 30 8.413455 Anserini +test826 Q0 19787314 1 20.441792 Anserini +test826 Q0 20618781 2 19.500559 Anserini +test826 Q0 20051350 3 19.454210 Anserini +test826 Q0 20512367 4 19.415350 Anserini +test826 Q0 20051351 5 19.362345 Anserini +test826 Q0 20423363 6 19.134680 Anserini +test826 Q0 19648579 7 18.920006 Anserini +test826 Q0 19892289 8 18.873499 Anserini +test826 Q0 20594601 9 18.832170 Anserini +test826 Q0 19678814 10 18.761724 Anserini +test826 Q0 19678813 11 18.761724 Anserini +test826 Q0 20521733 12 18.739082 Anserini +test826 Q0 20603670 13 18.696062 Anserini +test826 Q0 19892288 14 18.684187 Anserini +test826 Q0 19648578 15 18.682583 Anserini +test826 Q0 20629312 16 18.679541 Anserini +test826 Q0 20498602 17 18.661777 Anserini +test826 Q0 20613870 18 18.588533 Anserini +test826 Q0 20618780 19 18.588533 Anserini +test826 Q0 20514615 20 18.588533 Anserini +test826 Q0 20618529 21 18.588533 Anserini +test826 Q0 20622034 22 18.588533 Anserini +test826 Q0 17928669 23 18.558737 Anserini +test826 Q0 20418355 24 18.502840 Anserini +test826 Q0 20521484 25 18.489273 Anserini +test826 Q0 20629566 26 18.489273 Anserini +test826 Q0 20480879 27 18.489273 Anserini +test826 Q0 20629542 28 18.489273 Anserini +test826 Q0 20618487 29 18.486446 Anserini +test826 Q0 20493233 30 18.402338 Anserini +test827 Q0 16597382 1 15.117797 Anserini +test827 Q0 17433008 2 14.689102 Anserini +test827 Q0 16597385 3 14.286379 Anserini +test827 Q0 15107125 4 13.101472 Anserini +test827 Q0 1709721 5 12.912561 Anserini +test827 Q0 13159471 6 12.891442 Anserini +test827 Q0 15615474 7 12.841188 Anserini +test827 Q0 8142194 8 12.707588 Anserini +test827 Q0 11357330 9 12.654830 Anserini +test827 Q0 13436125 10 12.653632 Anserini +test827 Q0 9417403 11 12.624402 Anserini +test827 Q0 7309350 12 12.555136 Anserini +test827 Q0 17339323 13 12.538952 Anserini +test827 Q0 17433020 14 12.467751 Anserini +test827 Q0 12739523 15 12.289609 Anserini +test827 Q0 16979911 16 12.033558 Anserini +test827 Q0 16008526 17 11.941511 Anserini +test827 Q0 3623289 18 11.920081 Anserini +test827 Q0 12651303 19 11.793884 Anserini +test827 Q0 16032732 20 11.787958 Anserini +test827 Q0 15759998 21 11.746182 Anserini +test827 Q0 17821921 22 11.709529 Anserini +test827 Q0 14199370 23 11.670418 Anserini +test827 Q0 14352363 24 11.585754 Anserini +test827 Q0 18826119 25 11.536913 Anserini +test827 Q0 11705400 26 11.533679 Anserini +test827 Q0 12227348 27 11.516981 Anserini +test827 Q0 10394315 28 11.510572 Anserini +test827 Q0 3691444 29 11.450027 Anserini +test827 Q0 3365384 30 11.406723 Anserini +test828 Q0 16001142 1 17.371233 Anserini +test828 Q0 2680634 2 16.303490 Anserini +test828 Q0 2725347 3 15.996893 Anserini +test828 Q0 2799753 4 14.951524 Anserini +test828 Q0 7430458 5 14.939086 Anserini +test828 Q0 20004393 6 14.920151 Anserini +test828 Q0 16002964 7 14.786995 Anserini +test828 Q0 16002970 8 14.786995 Anserini +test828 Q0 16002969 9 14.776345 Anserini +test828 Q0 16002998 10 14.254467 Anserini +test828 Q0 7352384 11 14.214549 Anserini +test828 Q0 11317372 12 14.150313 Anserini +test828 Q0 579643 13 14.081277 Anserini +test828 Q0 8047843 14 13.939706 Anserini +test828 Q0 16001148 15 13.929930 Anserini +test828 Q0 7251660 16 13.828386 Anserini +test828 Q0 579646 17 13.746930 Anserini +test828 Q0 6937438 18 13.740189 Anserini +test828 Q0 2725490 19 13.738541 Anserini +test828 Q0 16344251 20 13.605160 Anserini +test828 Q0 12081713 21 13.479399 Anserini +test828 Q0 12081714 22 13.479399 Anserini +test828 Q0 15878910 23 13.363134 Anserini +test828 Q0 16001785 24 13.340473 Anserini +test828 Q0 15878909 25 13.234663 Anserini +test828 Q0 16001149 26 13.171210 Anserini +test828 Q0 13483060 27 13.095673 Anserini +test828 Q0 16000529 28 13.071069 Anserini +test828 Q0 432511 29 13.055768 Anserini +test828 Q0 17001489 30 13.054630 Anserini +test829 Q0 3639177 1 17.388252 Anserini +test829 Q0 425753 2 14.958113 Anserini +test829 Q0 3639168 3 14.123234 Anserini +test829 Q0 16563176 4 13.877997 Anserini +test829 Q0 425743 5 13.683855 Anserini +test829 Q0 3639181 6 13.672076 Anserini +test829 Q0 16563164 7 13.510003 Anserini +test829 Q0 16563175 8 12.985699 Anserini +test829 Q0 16563167 9 12.862714 Anserini +test829 Q0 425682 10 12.799300 Anserini +test829 Q0 9753039 11 12.711360 Anserini +test829 Q0 6739890 12 12.638419 Anserini +test829 Q0 3639174 13 12.609303 Anserini +test829 Q0 6739879 14 12.542692 Anserini +test829 Q0 8673548 15 12.388287 Anserini +test829 Q0 6739884 16 12.365125 Anserini +test829 Q0 7522810 17 12.230727 Anserini +test829 Q0 9753041 18 12.226687 Anserini +test829 Q0 6739889 19 12.039312 Anserini +test829 Q0 4752971 20 11.878540 Anserini +test829 Q0 409582 21 11.834562 Anserini +test829 Q0 6739880 22 11.777667 Anserini +test829 Q0 3639176 23 11.763606 Anserini +test829 Q0 11311818 24 11.540705 Anserini +test829 Q0 3639169 25 11.422460 Anserini +test829 Q0 12396196 26 11.371839 Anserini +test829 Q0 9303289 27 11.330780 Anserini +test829 Q0 16963407 28 11.217113 Anserini +test829 Q0 9303250 29 11.180427 Anserini +test829 Q0 6739882 30 11.120138 Anserini +test83 Q0 8513182 1 11.415057 Anserini +test83 Q0 14585504 2 10.754186 Anserini +test83 Q0 13936958 3 10.699460 Anserini +test83 Q0 11223590 4 10.602641 Anserini +test83 Q0 10471193 5 10.585065 Anserini +test83 Q0 7759517 6 10.543488 Anserini +test83 Q0 355431 7 10.506512 Anserini +test83 Q0 7759500 8 10.484115 Anserini +test83 Q0 15264942 9 10.482354 Anserini +test83 Q0 9238092 10 10.449903 Anserini +test83 Q0 7797127 11 10.439051 Anserini +test83 Q0 3258431 12 10.382444 Anserini +test83 Q0 7088898 13 10.363222 Anserini +test83 Q0 2790265 14 10.351668 Anserini +test83 Q0 3442925 15 10.334908 Anserini +test83 Q0 7759509 16 10.288344 Anserini +test83 Q0 17146881 17 10.278954 Anserini +test83 Q0 7088943 18 10.220787 Anserini +test83 Q0 11223591 19 10.172081 Anserini +test83 Q0 18961451 20 10.168340 Anserini +test83 Q0 13892500 21 10.154865 Anserini +test83 Q0 14940100 22 10.137647 Anserini +test83 Q0 11979989 23 10.105584 Anserini +test83 Q0 14836251 24 9.993126 Anserini +test83 Q0 11367743 25 9.950356 Anserini +test83 Q0 5889973 26 9.942327 Anserini +test83 Q0 3792511 27 9.939466 Anserini +test83 Q0 4010392 28 9.901701 Anserini +test83 Q0 11223589 29 9.886299 Anserini +test83 Q0 7258499 30 9.816756 Anserini +test830 Q0 2753649 1 12.619639 Anserini +test830 Q0 6189789 2 12.068702 Anserini +test830 Q0 152083 3 11.603681 Anserini +test830 Q0 173898 4 11.451017 Anserini +test830 Q0 5023325 5 11.005886 Anserini +test830 Q0 15286883 6 10.917181 Anserini +test830 Q0 10584630 7 10.866676 Anserini +test830 Q0 5023329 8 10.862255 Anserini +test830 Q0 3023257 9 10.788675 Anserini +test830 Q0 20034086 10 10.731102 Anserini +test830 Q0 1618615 11 10.604496 Anserini +test830 Q0 15429796 12 10.572099 Anserini +test830 Q0 9539947 13 10.460341 Anserini +test830 Q0 2202347 14 10.458816 Anserini +test830 Q0 3133214 15 10.371572 Anserini +test830 Q0 5406217 16 10.355745 Anserini +test830 Q0 404857 17 10.311269 Anserini +test830 Q0 10584625 18 10.257061 Anserini +test830 Q0 3188780 19 10.153214 Anserini +test830 Q0 146351 20 10.130890 Anserini +test830 Q0 10079677 21 10.123363 Anserini +test830 Q0 19389699 22 10.090931 Anserini +test830 Q0 3188814 23 10.088898 Anserini +test830 Q0 404856 24 10.076154 Anserini +test830 Q0 7359660 25 10.052545 Anserini +test830 Q0 9238175 26 10.049780 Anserini +test830 Q0 1383087 27 10.049699 Anserini +test830 Q0 9233591 28 10.044655 Anserini +test830 Q0 8619947 29 10.039309 Anserini +test830 Q0 6189790 30 10.034138 Anserini +test831 Q0 6327851 1 11.020337 Anserini +test831 Q0 12537268 2 10.735435 Anserini +test831 Q0 14722840 3 10.595837 Anserini +test831 Q0 16359778 4 10.574726 Anserini +test831 Q0 6740878 5 10.515009 Anserini +test831 Q0 17728926 6 10.497371 Anserini +test831 Q0 14722839 7 10.479543 Anserini +test831 Q0 12537267 8 10.404947 Anserini +test831 Q0 8191605 9 10.284803 Anserini +test831 Q0 16514741 10 10.119123 Anserini +test831 Q0 6327855 11 9.974054 Anserini +test831 Q0 1756773 12 9.838778 Anserini +test831 Q0 16386985 13 9.665023 Anserini +test831 Q0 12679291 14 9.554299 Anserini +test831 Q0 11451599 15 9.459737 Anserini +test831 Q0 7260522 16 9.446326 Anserini +test831 Q0 2817353 17 9.359791 Anserini +test831 Q0 8173892 18 9.324116 Anserini +test831 Q0 8774660 19 9.318371 Anserini +test831 Q0 12479165 20 9.294474 Anserini +test831 Q0 15363760 21 9.198111 Anserini +test831 Q0 14722861 22 9.121493 Anserini +test831 Q0 12479166 23 9.085054 Anserini +test831 Q0 12679289 24 9.029778 Anserini +test831 Q0 20783955 25 9.029778 Anserini +test831 Q0 19907643 26 8.944706 Anserini +test831 Q0 7260547 27 8.939772 Anserini +test831 Q0 6740453 28 8.939772 Anserini +test831 Q0 11861468 29 8.939772 Anserini +test831 Q0 10017992 30 8.899682 Anserini +test832 Q0 14635621 1 16.674038 Anserini +test832 Q0 14635623 2 16.195503 Anserini +test832 Q0 12518226 3 16.149736 Anserini +test832 Q0 12518233 4 16.149736 Anserini +test832 Q0 6144947 5 15.867743 Anserini +test832 Q0 14635627 6 15.322355 Anserini +test832 Q0 14635614 7 14.585926 Anserini +test832 Q0 6144943 8 14.520729 Anserini +test832 Q0 3803678 9 14.160273 Anserini +test832 Q0 3692107 10 13.750393 Anserini +test832 Q0 8029604 11 13.643176 Anserini +test832 Q0 8676631 12 13.599380 Anserini +test832 Q0 8255278 13 13.458646 Anserini +test832 Q0 7823247 14 13.365587 Anserini +test832 Q0 10505006 15 13.310508 Anserini +test832 Q0 14635620 16 13.022742 Anserini +test832 Q0 4320692 17 12.974727 Anserini +test832 Q0 3911714 18 12.960443 Anserini +test832 Q0 14635624 19 12.928776 Anserini +test832 Q0 14635625 20 12.695507 Anserini +test832 Q0 8676630 21 12.629960 Anserini +test832 Q0 18177628 22 12.514975 Anserini +test832 Q0 19467659 23 12.372137 Anserini +test832 Q0 19467664 24 12.372137 Anserini +test832 Q0 12503975 25 12.354754 Anserini +test832 Q0 8361633 26 12.241896 Anserini +test832 Q0 3803673 27 12.163829 Anserini +test832 Q0 10851756 28 12.027166 Anserini +test832 Q0 6461384 29 12.009827 Anserini +test832 Q0 8255279 30 11.954787 Anserini +test833 Q0 11145937 1 10.033922 Anserini +test833 Q0 18790152 2 10.006018 Anserini +test833 Q0 3833751 3 9.950525 Anserini +test833 Q0 16775269 4 9.792777 Anserini +test833 Q0 10433367 5 9.769347 Anserini +test833 Q0 4792275 6 9.750483 Anserini +test833 Q0 11331108 7 9.712203 Anserini +test833 Q0 8668763 8 9.683844 Anserini +test833 Q0 11397388 9 9.604651 Anserini +test833 Q0 11104120 10 9.516051 Anserini +test833 Q0 11222149 11 9.513313 Anserini +test833 Q0 8343260 12 9.510548 Anserini +test833 Q0 11320124 13 9.502330 Anserini +test833 Q0 15371188 14 9.470322 Anserini +test833 Q0 11153156 15 9.470322 Anserini +test833 Q0 11388538 16 9.469540 Anserini +test833 Q0 17293821 17 9.441149 Anserini +test833 Q0 14800471 18 9.426635 Anserini +test833 Q0 11327496 19 9.405772 Anserini +test833 Q0 3833748 20 9.391270 Anserini +test833 Q0 11328683 21 9.372389 Anserini +test833 Q0 277706 22 9.368747 Anserini +test833 Q0 11097477 23 9.343161 Anserini +test833 Q0 11153538 24 9.343161 Anserini +test833 Q0 11153155 25 9.343161 Anserini +test833 Q0 3833752 26 9.339413 Anserini +test833 Q0 7197161 27 9.286633 Anserini +test833 Q0 11153539 28 9.281529 Anserini +test833 Q0 9617142 29 9.280126 Anserini +test833 Q0 11397057 30 9.267105 Anserini +test834 Q0 18559390 1 13.147750 Anserini +test834 Q0 6639283 2 12.681181 Anserini +test834 Q0 15721260 3 12.350033 Anserini +test834 Q0 15721263 4 12.244063 Anserini +test834 Q0 20306859 5 11.796622 Anserini +test834 Q0 20306884 6 11.796622 Anserini +test834 Q0 19516436 7 11.714787 Anserini +test834 Q0 18559389 8 11.547537 Anserini +test834 Q0 10709259 9 11.520570 Anserini +test834 Q0 13936983 10 11.503855 Anserini +test834 Q0 18559392 11 11.465655 Anserini +test834 Q0 18559393 12 11.328686 Anserini +test834 Q0 20306873 13 11.309715 Anserini +test834 Q0 18559391 14 11.302336 Anserini +test834 Q0 6639285 15 11.282211 Anserini +test834 Q0 18840665 16 11.280521 Anserini +test834 Q0 5961758 17 11.186376 Anserini +test834 Q0 18559384 18 11.148504 Anserini +test834 Q0 18559405 19 11.148504 Anserini +test834 Q0 18559388 20 11.126270 Anserini +test834 Q0 18559386 21 11.104086 Anserini +test834 Q0 18559404 22 11.086527 Anserini +test834 Q0 6639272 23 11.085999 Anserini +test834 Q0 15721262 24 11.079639 Anserini +test834 Q0 5676103 25 11.075994 Anserini +test834 Q0 5676101 26 10.925201 Anserini +test834 Q0 5676087 27 10.874905 Anserini +test834 Q0 6639284 28 10.846771 Anserini +test834 Q0 19578206 29 10.775812 Anserini +test834 Q0 6639281 30 10.766560 Anserini +test835 Q0 13463209 1 15.040552 Anserini +test835 Q0 12391113 2 14.736259 Anserini +test835 Q0 2890464 3 14.537336 Anserini +test835 Q0 1859435 4 14.416520 Anserini +test835 Q0 13463226 5 14.076536 Anserini +test835 Q0 3524601 6 13.942066 Anserini +test835 Q0 7543723 7 13.863333 Anserini +test835 Q0 4333702 8 13.825356 Anserini +test835 Q0 5992399 9 13.750956 Anserini +test835 Q0 2239293 10 13.473585 Anserini +test835 Q0 16154635 11 13.245484 Anserini +test835 Q0 17423432 12 13.162784 Anserini +test835 Q0 150062 13 13.076780 Anserini +test835 Q0 13003688 14 13.002663 Anserini +test835 Q0 3353179 15 12.945938 Anserini +test835 Q0 3492913 16 12.786291 Anserini +test835 Q0 2951347 17 12.786291 Anserini +test835 Q0 2137230 18 12.768533 Anserini +test835 Q0 86251 19 12.765015 Anserini +test835 Q0 970773 20 12.740582 Anserini +test835 Q0 17423431 21 12.707134 Anserini +test835 Q0 1747360 22 12.707114 Anserini +test835 Q0 11968483 23 12.698032 Anserini +test835 Q0 13862237 24 12.698032 Anserini +test835 Q0 17423343 25 12.678403 Anserini +test835 Q0 11968486 26 12.638517 Anserini +test835 Q0 19682322 27 12.631236 Anserini +test835 Q0 2890466 28 12.617454 Anserini +test835 Q0 182682 29 12.590668 Anserini +test835 Q0 12960794 30 12.546827 Anserini +test836 Q0 2456601 1 15.197591 Anserini +test836 Q0 2460303 2 14.953798 Anserini +test836 Q0 16864839 3 13.261136 Anserini +test836 Q0 2459916 4 13.027459 Anserini +test836 Q0 18849250 5 12.797249 Anserini +test836 Q0 16864838 6 12.794683 Anserini +test836 Q0 13251712 7 12.432264 Anserini +test836 Q0 11853554 8 12.359443 Anserini +test836 Q0 16864834 9 12.203458 Anserini +test836 Q0 11926431 10 12.126204 Anserini +test836 Q0 12310535 11 12.109758 Anserini +test836 Q0 4005791 12 11.929295 Anserini +test836 Q0 11926438 13 11.867199 Anserini +test836 Q0 11045812 14 11.856087 Anserini +test836 Q0 5186272 15 11.838504 Anserini +test836 Q0 20140254 16 11.809067 Anserini +test836 Q0 2456614 17 11.769049 Anserini +test836 Q0 18878690 18 11.763451 Anserini +test836 Q0 11343820 19 11.737464 Anserini +test836 Q0 13251714 20 11.719628 Anserini +test836 Q0 14126991 21 11.672426 Anserini +test836 Q0 14024060 22 11.620783 Anserini +test836 Q0 2460302 23 11.592979 Anserini +test836 Q0 7183054 24 11.592081 Anserini +test836 Q0 11862369 25 11.588130 Anserini +test836 Q0 14049905 26 11.582811 Anserini +test836 Q0 18051368 27 11.500578 Anserini +test836 Q0 11862372 28 11.498287 Anserini +test836 Q0 14049904 29 11.488395 Anserini +test836 Q0 11196064 30 11.470928 Anserini +test837 Q0 663021 1 18.572094 Anserini +test837 Q0 202860 2 18.068525 Anserini +test837 Q0 202863 3 17.015131 Anserini +test837 Q0 1733741 4 17.013491 Anserini +test837 Q0 202853 5 16.960951 Anserini +test837 Q0 9687636 6 16.598053 Anserini +test837 Q0 31577 7 16.485592 Anserini +test837 Q0 663027 8 16.327971 Anserini +test837 Q0 7836922 9 15.943277 Anserini +test837 Q0 7836924 10 15.943277 Anserini +test837 Q0 1925899 11 15.869577 Anserini +test837 Q0 1925903 12 15.754922 Anserini +test837 Q0 202856 13 15.614703 Anserini +test837 Q0 2083558 14 15.548206 Anserini +test837 Q0 6287935 15 15.470641 Anserini +test837 Q0 6639663 16 15.450401 Anserini +test837 Q0 3493583 17 15.437404 Anserini +test837 Q0 13725501 18 15.364872 Anserini +test837 Q0 11533982 19 15.353546 Anserini +test837 Q0 11533983 20 15.353546 Anserini +test837 Q0 16593273 21 15.223782 Anserini +test837 Q0 9687637 22 15.223782 Anserini +test837 Q0 4758130 23 15.117754 Anserini +test837 Q0 663029 24 14.985315 Anserini +test837 Q0 202862 25 14.850286 Anserini +test837 Q0 8386854 26 14.821318 Anserini +test837 Q0 11506853 27 14.730700 Anserini +test837 Q0 4329512 28 14.677355 Anserini +test837 Q0 1733744 29 14.677355 Anserini +test837 Q0 2980717 30 14.568632 Anserini +test838 Q0 8617363 1 12.503027 Anserini +test838 Q0 8617354 2 12.362074 Anserini +test838 Q0 6827535 3 12.350092 Anserini +test838 Q0 4132316 4 11.637136 Anserini +test838 Q0 17256260 5 11.309402 Anserini +test838 Q0 13004225 6 11.206090 Anserini +test838 Q0 8622375 7 11.156016 Anserini +test838 Q0 20060581 8 11.148829 Anserini +test838 Q0 17256264 9 11.048572 Anserini +test838 Q0 9868000 10 11.041417 Anserini +test838 Q0 13004227 11 11.036919 Anserini +test838 Q0 8836154 12 10.978980 Anserini +test838 Q0 3328217 13 10.968849 Anserini +test838 Q0 5774521 14 10.851884 Anserini +test838 Q0 6827533 15 10.850333 Anserini +test838 Q0 16977655 16 10.771368 Anserini +test838 Q0 3250498 17 10.764784 Anserini +test838 Q0 2210101 18 10.763910 Anserini +test838 Q0 15027578 19 10.689484 Anserini +test838 Q0 3122349 20 10.687579 Anserini +test838 Q0 18843481 21 10.665445 Anserini +test838 Q0 2750049 22 10.628686 Anserini +test838 Q0 16977674 23 10.520426 Anserini +test838 Q0 15274587 24 10.493452 Anserini +test838 Q0 8617357 25 10.479863 Anserini +test838 Q0 8836152 26 10.460436 Anserini +test838 Q0 5774518 27 10.460436 Anserini +test838 Q0 17256268 28 10.409163 Anserini +test838 Q0 9868002 29 10.318381 Anserini +test838 Q0 17256267 30 10.237685 Anserini +test839 Q0 3960982 1 18.197086 Anserini +test839 Q0 7975689 2 16.639048 Anserini +test839 Q0 10102275 3 16.480562 Anserini +test839 Q0 11211639 4 16.064592 Anserini +test839 Q0 7975687 5 14.968589 Anserini +test839 Q0 4870723 6 14.870361 Anserini +test839 Q0 4870728 7 14.870361 Anserini +test839 Q0 14897418 8 14.797969 Anserini +test839 Q0 10543299 9 14.434116 Anserini +test839 Q0 7975688 10 14.414433 Anserini +test839 Q0 11211635 11 14.162010 Anserini +test839 Q0 7975691 12 14.082962 Anserini +test839 Q0 3960983 13 13.799190 Anserini +test839 Q0 10102274 14 13.624926 Anserini +test839 Q0 185571 15 13.338480 Anserini +test839 Q0 10102277 16 13.338480 Anserini +test839 Q0 11211634 17 13.210250 Anserini +test839 Q0 7335765 18 12.938145 Anserini +test839 Q0 11211637 19 12.938145 Anserini +test839 Q0 11211641 20 12.809516 Anserini +test839 Q0 13570523 21 12.809516 Anserini +test839 Q0 15101361 22 12.373455 Anserini +test839 Q0 13570528 23 12.373455 Anserini +test839 Q0 3978324 24 11.986757 Anserini +test839 Q0 7640065 25 11.742112 Anserini +test839 Q0 971553 26 10.816069 Anserini +test839 Q0 971534 27 10.483988 Anserini +test839 Q0 971552 28 10.483988 Anserini +test839 Q0 971554 29 10.483988 Anserini +test839 Q0 16930418 30 10.383913 Anserini +test84 Q0 19665779 1 11.534940 Anserini +test84 Q0 5001081 2 11.130111 Anserini +test84 Q0 19431648 3 11.098115 Anserini +test84 Q0 20049005 4 10.998380 Anserini +test84 Q0 20048998 5 10.916486 Anserini +test84 Q0 8283583 6 10.906240 Anserini +test84 Q0 12800986 7 10.678791 Anserini +test84 Q0 20049002 8 10.665348 Anserini +test84 Q0 18938999 9 10.589940 Anserini +test84 Q0 18938997 10 10.589605 Anserini +test84 Q0 19447664 11 10.587434 Anserini +test84 Q0 20240330 12 10.572059 Anserini +test84 Q0 16430643 13 10.527226 Anserini +test84 Q0 16475193 14 10.499581 Anserini +test84 Q0 18008405 15 10.483793 Anserini +test84 Q0 20300002 16 10.478023 Anserini +test84 Q0 19559374 17 10.451512 Anserini +test84 Q0 18008408 18 10.444214 Anserini +test84 Q0 19559388 19 10.417972 Anserini +test84 Q0 4481681 20 10.404676 Anserini +test84 Q0 18008395 21 10.378749 Anserini +test84 Q0 19539693 22 10.338843 Anserini +test84 Q0 18135461 23 10.321688 Anserini +test84 Q0 20048999 24 10.160185 Anserini +test84 Q0 20049001 25 10.134384 Anserini +test84 Q0 16263715 26 10.092709 Anserini +test84 Q0 15562749 27 10.073003 Anserini +test84 Q0 12800984 28 10.018450 Anserini +test84 Q0 15699828 29 10.018450 Anserini +test84 Q0 19586291 30 10.004210 Anserini +test840 Q0 20619052 1 11.193672 Anserini +test840 Q0 12877824 2 10.958932 Anserini +test840 Q0 12877827 3 10.958932 Anserini +test840 Q0 9364122 4 10.789282 Anserini +test840 Q0 6973124 5 10.606200 Anserini +test840 Q0 9034792 6 10.590792 Anserini +test840 Q0 7938702 7 10.530957 Anserini +test840 Q0 1037080 8 10.523021 Anserini +test840 Q0 7748168 9 10.453819 Anserini +test840 Q0 9981817 10 10.392083 Anserini +test840 Q0 19186803 11 10.353280 Anserini +test840 Q0 19761096 12 10.300442 Anserini +test840 Q0 13804668 13 10.289765 Anserini +test840 Q0 4438828 14 10.250393 Anserini +test840 Q0 10425559 15 10.224900 Anserini +test840 Q0 8628400 16 10.194090 Anserini +test840 Q0 8628379 17 10.194090 Anserini +test840 Q0 12132565 18 10.141505 Anserini +test840 Q0 14679609 19 10.118703 Anserini +test840 Q0 6378370 20 10.083997 Anserini +test840 Q0 6378373 21 10.083997 Anserini +test840 Q0 11770059 22 10.054041 Anserini +test840 Q0 3344992 23 10.030525 Anserini +test840 Q0 11840493 24 10.030525 Anserini +test840 Q0 3887067 25 10.023001 Anserini +test840 Q0 16877479 26 9.986446 Anserini +test840 Q0 14244802 27 9.964844 Anserini +test840 Q0 17721460 28 9.945378 Anserini +test840 Q0 8764154 29 9.934898 Anserini +test840 Q0 122386 30 9.925312 Anserini +test841 Q0 4512071 1 13.110407 Anserini +test841 Q0 3742050 2 12.873929 Anserini +test841 Q0 921175 3 12.765812 Anserini +test841 Q0 20170886 4 12.760900 Anserini +test841 Q0 3742099 5 12.289628 Anserini +test841 Q0 20170885 6 12.219300 Anserini +test841 Q0 4799422 7 11.878181 Anserini +test841 Q0 3742072 8 11.735157 Anserini +test841 Q0 2322375 9 11.678370 Anserini +test841 Q0 20170881 10 11.536288 Anserini +test841 Q0 2205722 11 11.473139 Anserini +test841 Q0 4512080 12 11.364986 Anserini +test841 Q0 1152660 13 11.300654 Anserini +test841 Q0 3742092 14 11.229445 Anserini +test841 Q0 4512082 15 11.206623 Anserini +test841 Q0 4799432 16 11.140917 Anserini +test841 Q0 4999 17 11.087074 Anserini +test841 Q0 7642345 18 11.075052 Anserini +test841 Q0 1711916 19 11.009063 Anserini +test841 Q0 4799430 20 11.008017 Anserini +test841 Q0 12990129 21 10.981583 Anserini +test841 Q0 146148 22 10.975517 Anserini +test841 Q0 7642344 23 10.950647 Anserini +test841 Q0 2615411 24 10.940293 Anserini +test841 Q0 2616160 25 10.909002 Anserini +test841 Q0 146444 26 10.900549 Anserini +test841 Q0 2580974 27 10.850721 Anserini +test841 Q0 13953738 28 10.850721 Anserini +test841 Q0 1066542 29 10.842859 Anserini +test841 Q0 849828 30 10.820954 Anserini +test842 Q0 130859 1 17.839876 Anserini +test842 Q0 12626077 2 16.876781 Anserini +test842 Q0 16607030 3 16.833864 Anserini +test842 Q0 15906502 4 16.390091 Anserini +test842 Q0 18847818 5 16.078596 Anserini +test842 Q0 16607031 6 15.873997 Anserini +test842 Q0 14919680 7 15.742256 Anserini +test842 Q0 5290612 8 15.258360 Anserini +test842 Q0 20982885 9 15.245680 Anserini +test842 Q0 2949327 10 15.150704 Anserini +test842 Q0 4876 11 14.946750 Anserini +test842 Q0 2949316 12 14.933464 Anserini +test842 Q0 4907 13 14.914478 Anserini +test842 Q0 326229 14 14.852463 Anserini +test842 Q0 9714087 15 14.637383 Anserini +test842 Q0 4880609 16 14.603046 Anserini +test842 Q0 956222 17 14.596647 Anserini +test842 Q0 956211 18 14.596647 Anserini +test842 Q0 16607032 19 14.592421 Anserini +test842 Q0 6726148 20 14.571041 Anserini +test842 Q0 4619674 21 14.557687 Anserini +test842 Q0 2225823 22 14.539078 Anserini +test842 Q0 130810 23 14.494840 Anserini +test842 Q0 5089587 24 14.476763 Anserini +test842 Q0 6306657 25 14.445914 Anserini +test842 Q0 6456493 26 14.445005 Anserini +test842 Q0 12559417 27 14.413845 Anserini +test842 Q0 9090842 28 14.387201 Anserini +test842 Q0 754064 29 14.340121 Anserini +test842 Q0 9778591 30 14.189350 Anserini +test843 Q0 3423935 1 18.240410 Anserini +test843 Q0 13544044 2 17.746414 Anserini +test843 Q0 13544052 3 17.613316 Anserini +test843 Q0 12602574 4 17.571177 Anserini +test843 Q0 4754741 5 17.008980 Anserini +test843 Q0 12602573 6 16.866110 Anserini +test843 Q0 578781 7 16.728254 Anserini +test843 Q0 4825477 8 16.399883 Anserini +test843 Q0 578815 9 16.395142 Anserini +test843 Q0 11906447 10 16.193186 Anserini +test843 Q0 14585495 11 16.072554 Anserini +test843 Q0 4828817 12 16.068108 Anserini +test843 Q0 9049755 13 16.040073 Anserini +test843 Q0 11906448 14 16.033360 Anserini +test843 Q0 9019690 15 15.963087 Anserini +test843 Q0 9019667 16 15.949261 Anserini +test843 Q0 12602567 17 15.899473 Anserini +test843 Q0 9232136 18 15.774283 Anserini +test843 Q0 19811276 19 15.653910 Anserini +test843 Q0 12624900 20 15.540386 Anserini +test843 Q0 11906446 21 15.519494 Anserini +test843 Q0 12602571 22 15.427333 Anserini +test843 Q0 15974754 23 15.181051 Anserini +test843 Q0 6568013 24 14.997617 Anserini +test843 Q0 10087707 25 14.988501 Anserini +test843 Q0 12602569 26 14.811180 Anserini +test843 Q0 12083763 27 14.782795 Anserini +test843 Q0 15974755 28 14.538660 Anserini +test843 Q0 578795 29 14.519613 Anserini +test843 Q0 12602563 30 14.471295 Anserini +test844 Q0 14820512 1 18.223507 Anserini +test844 Q0 10816708 2 17.398787 Anserini +test844 Q0 2981807 3 16.912392 Anserini +test844 Q0 2981806 4 16.625340 Anserini +test844 Q0 11172770 5 16.606926 Anserini +test844 Q0 3119345 6 16.431850 Anserini +test844 Q0 72534 7 15.719584 Anserini +test844 Q0 11703759 8 15.713853 Anserini +test844 Q0 14820511 9 15.570023 Anserini +test844 Q0 3168796 10 15.272584 Anserini +test844 Q0 1776822 11 15.108772 Anserini +test844 Q0 5461333 12 15.078227 Anserini +test844 Q0 3119358 13 15.020330 Anserini +test844 Q0 17199201 14 14.683869 Anserini +test844 Q0 2981792 15 14.367012 Anserini +test844 Q0 1776814 16 14.254557 Anserini +test844 Q0 3168798 17 14.209280 Anserini +test844 Q0 3168792 18 14.011259 Anserini +test844 Q0 2361542 19 13.939949 Anserini +test844 Q0 2981790 20 13.889851 Anserini +test844 Q0 6662151 21 13.871609 Anserini +test844 Q0 2981808 22 13.818016 Anserini +test844 Q0 3168799 23 13.724735 Anserini +test844 Q0 6186743 24 13.674394 Anserini +test844 Q0 1776816 25 13.563717 Anserini +test844 Q0 3119350 26 13.540892 Anserini +test844 Q0 3119355 27 13.481838 Anserini +test844 Q0 1819595 28 13.462023 Anserini +test844 Q0 6186742 29 13.442665 Anserini +test844 Q0 14451069 30 13.137985 Anserini +test845 Q0 4770559 1 14.662138 Anserini +test845 Q0 10123549 2 13.938193 Anserini +test845 Q0 421521 3 13.605940 Anserini +test845 Q0 4770554 4 13.605940 Anserini +test845 Q0 5226689 5 13.304501 Anserini +test845 Q0 5226686 6 13.209015 Anserini +test845 Q0 421497 7 13.209015 Anserini +test845 Q0 16356784 8 13.147763 Anserini +test845 Q0 4770560 9 13.083140 Anserini +test845 Q0 5226685 10 13.033085 Anserini +test845 Q0 421518 11 13.010118 Anserini +test845 Q0 10123548 12 12.950596 Anserini +test845 Q0 6229964 13 12.754591 Anserini +test845 Q0 6229961 14 12.708921 Anserini +test845 Q0 6437994 15 12.702239 Anserini +test845 Q0 10121880 16 12.678232 Anserini +test845 Q0 8652872 17 12.663580 Anserini +test845 Q0 421493 18 12.618564 Anserini +test845 Q0 421506 19 12.558998 Anserini +test845 Q0 421526 20 12.476158 Anserini +test845 Q0 421510 21 12.473588 Anserini +test845 Q0 5861014 22 12.473588 Anserini +test845 Q0 421496 23 12.469966 Anserini +test845 Q0 16356766 24 12.392224 Anserini +test845 Q0 219202 25 12.389482 Anserini +test845 Q0 8652871 26 12.368198 Anserini +test845 Q0 10123551 27 12.368198 Anserini +test845 Q0 16356805 28 12.368198 Anserini +test845 Q0 16356795 29 12.368198 Anserini +test845 Q0 421525 30 12.358375 Anserini +test846 Q0 2230347 1 15.949376 Anserini +test846 Q0 16489500 2 15.929509 Anserini +test846 Q0 16489495 3 15.399684 Anserini +test846 Q0 16489498 4 15.262055 Anserini +test846 Q0 2977816 5 15.141281 Anserini +test846 Q0 16489499 6 14.552024 Anserini +test846 Q0 16489492 7 13.969678 Anserini +test846 Q0 16489496 8 13.597657 Anserini +test846 Q0 16489511 9 12.994785 Anserini +test846 Q0 16489513 10 12.856533 Anserini +test846 Q0 16489491 11 12.721192 Anserini +test846 Q0 16489494 12 12.721192 Anserini +test846 Q0 16489489 13 12.605165 Anserini +test846 Q0 16489497 14 12.588670 Anserini +test846 Q0 16489507 15 12.477185 Anserini +test846 Q0 2230346 16 12.077815 Anserini +test846 Q0 16489514 17 12.015189 Anserini +test846 Q0 16489512 18 11.979185 Anserini +test846 Q0 16489509 19 11.255674 Anserini +test846 Q0 16489510 20 11.236589 Anserini +test846 Q0 16489502 21 11.064589 Anserini +test846 Q0 8969715 22 10.060299 Anserini +test846 Q0 16489506 23 10.040071 Anserini +test846 Q0 16489501 24 9.970823 Anserini +test846 Q0 2230345 25 9.560619 Anserini +test846 Q0 11449116 26 9.560619 Anserini +test846 Q0 3376956 27 9.518393 Anserini +test846 Q0 3376958 28 9.397403 Anserini +test846 Q0 5809952 29 9.332500 Anserini +test846 Q0 5706710 30 9.325813 Anserini +test847 Q0 20365360 1 13.084208 Anserini +test847 Q0 12672641 2 12.323973 Anserini +test847 Q0 12672599 3 12.193039 Anserini +test847 Q0 12672642 4 12.160879 Anserini +test847 Q0 12672589 5 12.147927 Anserini +test847 Q0 20365376 6 11.659661 Anserini +test847 Q0 20365400 7 11.595059 Anserini +test847 Q0 20365402 8 11.553167 Anserini +test847 Q0 20365373 9 11.363958 Anserini +test847 Q0 12672587 10 11.012609 Anserini +test847 Q0 12672644 11 10.953370 Anserini +test847 Q0 19432911 12 10.907509 Anserini +test847 Q0 12672608 13 10.800754 Anserini +test847 Q0 20365380 14 10.707091 Anserini +test847 Q0 20365363 15 10.660182 Anserini +test847 Q0 18021611 16 10.618159 Anserini +test847 Q0 20365387 17 10.612528 Anserini +test847 Q0 15251344 18 10.594942 Anserini +test847 Q0 16638536 19 10.541143 Anserini +test847 Q0 12672605 20 10.527975 Anserini +test847 Q0 12672646 21 10.464134 Anserini +test847 Q0 20365382 22 10.443669 Anserini +test847 Q0 12672598 23 10.430863 Anserini +test847 Q0 20365374 24 10.401245 Anserini +test847 Q0 20365362 25 10.341727 Anserini +test847 Q0 20365370 26 10.341727 Anserini +test847 Q0 13600831 27 10.319175 Anserini +test847 Q0 20259134 28 10.186240 Anserini +test847 Q0 20259124 29 10.174697 Anserini +test847 Q0 20259139 30 10.174697 Anserini +test848 Q0 1801452 1 15.264878 Anserini +test848 Q0 7855074 2 15.202734 Anserini +test848 Q0 8818315 3 15.128985 Anserini +test848 Q0 13278920 4 15.087457 Anserini +test848 Q0 2327495 5 14.918813 Anserini +test848 Q0 19249429 6 14.911170 Anserini +test848 Q0 19249435 7 14.803978 Anserini +test848 Q0 6425923 8 14.755038 Anserini +test848 Q0 8018959 9 14.701472 Anserini +test848 Q0 16936838 10 14.671221 Anserini +test848 Q0 7855075 11 14.471039 Anserini +test848 Q0 15465908 12 14.328818 Anserini +test848 Q0 15465901 13 14.328818 Anserini +test848 Q0 17364737 14 14.263206 Anserini +test848 Q0 12987504 15 14.107674 Anserini +test848 Q0 2181597 16 14.073851 Anserini +test848 Q0 7855073 17 14.039783 Anserini +test848 Q0 7987252 18 13.970234 Anserini +test848 Q0 5606321 19 13.883284 Anserini +test848 Q0 18796664 20 13.844848 Anserini +test848 Q0 11330174 21 13.844848 Anserini +test848 Q0 536399 22 13.832099 Anserini +test848 Q0 10565447 23 13.750509 Anserini +test848 Q0 5606324 24 13.675796 Anserini +test848 Q0 20228963 25 13.653852 Anserini +test848 Q0 18796813 26 13.621002 Anserini +test848 Q0 6424494 27 13.572717 Anserini +test848 Q0 4212099 28 13.557805 Anserini +test848 Q0 8706172 29 13.502928 Anserini +test848 Q0 9029155 30 13.498600 Anserini +test849 Q0 18137815 1 15.992197 Anserini +test849 Q0 2899125 2 15.967827 Anserini +test849 Q0 81395 3 15.693543 Anserini +test849 Q0 18137809 4 15.451560 Anserini +test849 Q0 312796 5 15.062977 Anserini +test849 Q0 10590088 6 14.881643 Anserini +test849 Q0 312786 7 14.731201 Anserini +test849 Q0 5142870 8 14.348974 Anserini +test849 Q0 18622278 9 14.242466 Anserini +test849 Q0 4711220 10 14.235343 Anserini +test849 Q0 1796443 11 14.142011 Anserini +test849 Q0 535877 12 13.942558 Anserini +test849 Q0 6619625 13 13.812395 Anserini +test849 Q0 3150829 14 13.618455 Anserini +test849 Q0 535936 15 13.607956 Anserini +test849 Q0 5022160 16 13.573025 Anserini +test849 Q0 312810 17 13.530008 Anserini +test849 Q0 251347 18 13.469981 Anserini +test849 Q0 20559221 19 13.392229 Anserini +test849 Q0 251350 20 13.293790 Anserini +test849 Q0 18137813 21 13.239046 Anserini +test849 Q0 251330 22 13.231300 Anserini +test849 Q0 12967441 23 13.216925 Anserini +test849 Q0 11221308 24 13.209730 Anserini +test849 Q0 466568 25 13.137814 Anserini +test849 Q0 2228344 26 13.082088 Anserini +test849 Q0 6619618 27 13.033751 Anserini +test849 Q0 5735236 28 13.033302 Anserini +test849 Q0 11221326 29 12.987576 Anserini +test849 Q0 1717320 30 12.890116 Anserini +test85 Q0 4830761 1 18.446749 Anserini +test85 Q0 4830747 2 18.186905 Anserini +test85 Q0 3926925 3 18.004082 Anserini +test85 Q0 4830760 4 16.932251 Anserini +test85 Q0 4910167 5 16.154781 Anserini +test85 Q0 6471746 6 16.151226 Anserini +test85 Q0 4830754 7 15.708876 Anserini +test85 Q0 4830764 8 15.697025 Anserini +test85 Q0 11088302 9 15.159975 Anserini +test85 Q0 16030034 10 15.046892 Anserini +test85 Q0 4830759 11 14.742146 Anserini +test85 Q0 13009642 12 14.742146 Anserini +test85 Q0 19937629 13 14.722939 Anserini +test85 Q0 19937630 14 14.722939 Anserini +test85 Q0 8132862 15 14.666925 Anserini +test85 Q0 15546626 16 14.315972 Anserini +test85 Q0 4830762 17 14.252258 Anserini +test85 Q0 4830755 18 14.234631 Anserini +test85 Q0 4830748 19 14.223655 Anserini +test85 Q0 4830753 20 14.132304 Anserini +test85 Q0 4830751 21 14.056447 Anserini +test85 Q0 13094217 22 14.031458 Anserini +test85 Q0 6432587 23 14.031458 Anserini +test85 Q0 4274529 24 13.932058 Anserini +test85 Q0 4830757 25 13.875899 Anserini +test85 Q0 237136 26 13.875899 Anserini +test85 Q0 8177994 27 13.401929 Anserini +test85 Q0 13009675 28 13.308853 Anserini +test85 Q0 14481677 29 13.308853 Anserini +test85 Q0 19426325 30 13.217061 Anserini +test850 Q0 111087 1 15.566268 Anserini +test850 Q0 10692281 2 14.798365 Anserini +test850 Q0 13054535 3 14.519085 Anserini +test850 Q0 1623638 4 13.775009 Anserini +test850 Q0 10331683 5 13.640183 Anserini +test850 Q0 397354 6 13.092348 Anserini +test850 Q0 462270 7 13.014769 Anserini +test850 Q0 4721356 8 12.960202 Anserini +test850 Q0 18523122 9 12.896797 Anserini +test850 Q0 7918621 10 12.890958 Anserini +test850 Q0 1870966 11 12.831877 Anserini +test850 Q0 10358312 12 12.665564 Anserini +test850 Q0 19945567 13 12.600123 Anserini +test850 Q0 5020072 14 12.595982 Anserini +test850 Q0 16572142 15 12.579098 Anserini +test850 Q0 14432146 16 12.460758 Anserini +test850 Q0 2318884 17 12.370029 Anserini +test850 Q0 7253569 18 12.321539 Anserini +test850 Q0 3285523 19 12.200888 Anserini +test850 Q0 843195 20 12.178777 Anserini +test850 Q0 1650351 21 12.177409 Anserini +test850 Q0 11881289 22 12.147810 Anserini +test850 Q0 6025324 23 12.038022 Anserini +test850 Q0 1667219 24 12.025276 Anserini +test850 Q0 5001542 25 11.898043 Anserini +test850 Q0 3523588 26 11.842232 Anserini +test850 Q0 1765487 27 11.813721 Anserini +test850 Q0 3739211 28 11.795175 Anserini +test850 Q0 8071153 29 11.784100 Anserini +test850 Q0 13054533 30 11.779326 Anserini +test851 Q0 7167385 1 20.532534 Anserini +test851 Q0 9864143 2 20.308670 Anserini +test851 Q0 15096448 3 20.019850 Anserini +test851 Q0 14593353 4 19.783922 Anserini +test851 Q0 394623 5 19.502518 Anserini +test851 Q0 14593341 6 19.436916 Anserini +test851 Q0 9864144 7 19.301582 Anserini +test851 Q0 14578058 8 19.241375 Anserini +test851 Q0 10279780 9 19.220589 Anserini +test851 Q0 10801652 10 19.154541 Anserini +test851 Q0 15096479 11 19.002634 Anserini +test851 Q0 15096444 12 18.918821 Anserini +test851 Q0 16181172 13 18.798813 Anserini +test851 Q0 10279743 14 18.791550 Anserini +test851 Q0 395022 15 18.639490 Anserini +test851 Q0 6747287 16 18.576027 Anserini +test851 Q0 12845022 17 18.542219 Anserini +test851 Q0 12832941 18 18.516123 Anserini +test851 Q0 15096480 19 18.488997 Anserini +test851 Q0 9472753 20 18.421774 Anserini +test851 Q0 289097 21 18.412453 Anserini +test851 Q0 4243474 22 18.358969 Anserini +test851 Q0 394402 23 18.269857 Anserini +test851 Q0 12330356 24 18.206066 Anserini +test851 Q0 16977326 25 18.105812 Anserini +test851 Q0 16181192 26 18.079750 Anserini +test851 Q0 10244987 27 18.032537 Anserini +test851 Q0 4243447 28 17.896261 Anserini +test851 Q0 9886447 29 17.868532 Anserini +test851 Q0 289101 30 17.739283 Anserini +test852 Q0 1248310 1 11.599910 Anserini +test852 Q0 6865951 2 11.554670 Anserini +test852 Q0 9847692 3 11.449986 Anserini +test852 Q0 6574364 4 11.353154 Anserini +test852 Q0 3312977 5 10.959064 Anserini +test852 Q0 16248546 6 10.938536 Anserini +test852 Q0 16549055 7 10.799288 Anserini +test852 Q0 3732072 8 10.709682 Anserini +test852 Q0 11841133 9 10.550002 Anserini +test852 Q0 5024788 10 10.510367 Anserini +test852 Q0 8940071 11 10.428410 Anserini +test852 Q0 4683923 12 10.391324 Anserini +test852 Q0 7861178 13 10.295535 Anserini +test852 Q0 1192342 14 10.294305 Anserini +test852 Q0 8940073 15 10.259392 Anserini +test852 Q0 10792094 16 10.214485 Anserini +test852 Q0 9762109 17 10.093849 Anserini +test852 Q0 7714553 18 10.086530 Anserini +test852 Q0 14608267 19 10.083179 Anserini +test852 Q0 7331567 20 10.012977 Anserini +test852 Q0 10032890 21 9.998444 Anserini +test852 Q0 20648380 22 9.987591 Anserini +test852 Q0 7731638 23 9.964552 Anserini +test852 Q0 9847694 24 9.928329 Anserini +test852 Q0 13205203 25 9.923906 Anserini +test852 Q0 7232729 26 9.853186 Anserini +test852 Q0 4359496 27 9.844540 Anserini +test852 Q0 1220002 28 9.841850 Anserini +test852 Q0 7751401 29 9.815292 Anserini +test852 Q0 2503153 30 9.810236 Anserini +test853 Q0 2828938 1 16.658106 Anserini +test853 Q0 2828955 2 16.658106 Anserini +test853 Q0 2828954 3 15.714807 Anserini +test853 Q0 708397 4 14.198150 Anserini +test853 Q0 708462 5 14.043440 Anserini +test853 Q0 9268371 6 13.585283 Anserini +test853 Q0 2828940 7 13.405640 Anserini +test853 Q0 12087578 8 13.192766 Anserini +test853 Q0 2828948 9 13.183743 Anserini +test853 Q0 708459 10 13.143531 Anserini +test853 Q0 2828945 11 12.868641 Anserini +test853 Q0 9268370 12 12.841012 Anserini +test853 Q0 4640513 13 12.830390 Anserini +test853 Q0 2828950 14 12.829584 Anserini +test853 Q0 9389846 15 12.798666 Anserini +test853 Q0 2828939 16 12.757540 Anserini +test853 Q0 2828943 17 12.673742 Anserini +test853 Q0 2828951 18 12.673742 Anserini +test853 Q0 708417 19 12.665895 Anserini +test853 Q0 708457 20 12.665895 Anserini +test853 Q0 708408 21 12.608773 Anserini +test853 Q0 2828942 22 12.555742 Anserini +test853 Q0 2828953 23 12.555742 Anserini +test853 Q0 708427 24 12.525695 Anserini +test853 Q0 12063017 25 12.465263 Anserini +test853 Q0 2828952 26 12.406977 Anserini +test853 Q0 708456 27 12.365360 Anserini +test853 Q0 16560130 28 12.338797 Anserini +test853 Q0 12063019 29 12.334042 Anserini +test853 Q0 708413 30 12.203112 Anserini +test854 Q0 550609 1 21.208073 Anserini +test854 Q0 6547649 2 16.548073 Anserini +test854 Q0 717893 3 16.505096 Anserini +test854 Q0 614927 4 16.452221 Anserini +test854 Q0 17634311 5 16.433895 Anserini +test854 Q0 16116121 6 16.138643 Anserini +test854 Q0 7481845 7 15.978394 Anserini +test854 Q0 8154189 8 15.978394 Anserini +test854 Q0 11687642 9 15.942542 Anserini +test854 Q0 20871597 10 15.813684 Anserini +test854 Q0 19272878 11 15.685066 Anserini +test854 Q0 5950355 12 15.548778 Anserini +test854 Q0 16116124 13 15.429615 Anserini +test854 Q0 20017729 14 15.333562 Anserini +test854 Q0 456991 15 15.235810 Anserini +test854 Q0 457015 16 15.235810 Anserini +test854 Q0 8926275 17 15.194656 Anserini +test854 Q0 3262560 18 15.072474 Anserini +test854 Q0 6586225 19 14.991508 Anserini +test854 Q0 20017730 20 14.943665 Anserini +test854 Q0 8064610 21 14.939620 Anserini +test854 Q0 881589 22 14.862597 Anserini +test854 Q0 4813372 23 14.809131 Anserini +test854 Q0 2288968 24 14.804520 Anserini +test854 Q0 2288957 25 14.804520 Anserini +test854 Q0 8919487 26 14.780985 Anserini +test854 Q0 8707244 27 14.780985 Anserini +test854 Q0 5367890 28 14.761195 Anserini +test854 Q0 19114900 29 14.564465 Anserini +test854 Q0 20623727 30 14.466474 Anserini +test855 Q0 19470571 1 13.030008 Anserini +test855 Q0 19470573 2 12.638971 Anserini +test855 Q0 19470572 3 12.503518 Anserini +test855 Q0 18350508 4 12.475606 Anserini +test855 Q0 20432485 5 12.414066 Anserini +test855 Q0 19470574 6 12.075642 Anserini +test855 Q0 19470580 7 12.075642 Anserini +test855 Q0 19470566 8 11.976425 Anserini +test855 Q0 19470588 9 11.976425 Anserini +test855 Q0 19470567 10 11.952541 Anserini +test855 Q0 16843096 11 11.946547 Anserini +test855 Q0 19470569 12 11.750014 Anserini +test855 Q0 18350514 13 11.516565 Anserini +test855 Q0 9245875 14 11.271843 Anserini +test855 Q0 3995769 15 11.244134 Anserini +test855 Q0 14125967 16 11.112978 Anserini +test855 Q0 7518921 17 11.089876 Anserini +test855 Q0 9245870 18 10.825541 Anserini +test855 Q0 14125965 19 10.741955 Anserini +test855 Q0 3995771 20 10.706177 Anserini +test855 Q0 18350513 21 10.698124 Anserini +test855 Q0 15676824 22 10.659515 Anserini +test855 Q0 15676828 23 10.659515 Anserini +test855 Q0 18350510 24 10.656535 Anserini +test855 Q0 19470583 25 10.633013 Anserini +test855 Q0 16390948 26 10.623532 Anserini +test855 Q0 14086318 27 10.587344 Anserini +test855 Q0 16695468 28 10.513770 Anserini +test855 Q0 19470584 29 10.513770 Anserini +test855 Q0 9245879 30 10.449509 Anserini +test856 Q0 5884080 1 12.128409 Anserini +test856 Q0 5194369 2 12.102511 Anserini +test856 Q0 5884037 3 11.866797 Anserini +test856 Q0 4804358 4 11.811014 Anserini +test856 Q0 5884069 5 11.700644 Anserini +test856 Q0 13004567 6 11.517406 Anserini +test856 Q0 5884029 7 11.490130 Anserini +test856 Q0 5884024 8 11.286249 Anserini +test856 Q0 5884070 9 11.033665 Anserini +test856 Q0 126600 10 11.024289 Anserini +test856 Q0 17529043 11 10.737416 Anserini +test856 Q0 13661977 12 10.712781 Anserini +test856 Q0 4804353 13 10.683876 Anserini +test856 Q0 12285229 14 10.589952 Anserini +test856 Q0 262123 15 10.493122 Anserini +test856 Q0 9021789 16 10.493122 Anserini +test856 Q0 12346972 17 10.489894 Anserini +test856 Q0 13662002 18 10.416533 Anserini +test856 Q0 8878995 19 10.408782 Anserini +test856 Q0 15609338 20 10.344190 Anserini +test856 Q0 829456 21 10.344190 Anserini +test856 Q0 5884030 22 10.329086 Anserini +test856 Q0 262176 23 10.272844 Anserini +test856 Q0 5884036 24 10.263922 Anserini +test856 Q0 13337483 25 10.255594 Anserini +test856 Q0 8878994 26 10.233592 Anserini +test856 Q0 6503017 27 10.215611 Anserini +test856 Q0 14856023 28 10.150908 Anserini +test856 Q0 8342388 29 10.068846 Anserini +test856 Q0 5884068 30 10.053089 Anserini +test857 Q0 5340064 1 11.283399 Anserini +test857 Q0 5340049 2 11.173986 Anserini +test857 Q0 7667744 3 11.030570 Anserini +test857 Q0 5218896 4 10.713695 Anserini +test857 Q0 6456587 5 10.283463 Anserini +test857 Q0 5340067 6 10.247490 Anserini +test857 Q0 5340065 7 10.195079 Anserini +test857 Q0 11322167 8 10.181537 Anserini +test857 Q0 18845461 9 10.174898 Anserini +test857 Q0 18474088 10 10.115089 Anserini +test857 Q0 18474094 11 10.115089 Anserini +test857 Q0 2935868 12 10.102700 Anserini +test857 Q0 5340058 13 10.102700 Anserini +test857 Q0 10891997 14 10.052759 Anserini +test857 Q0 11910523 15 9.978884 Anserini +test857 Q0 17578335 16 9.976003 Anserini +test857 Q0 7660472 17 9.914456 Anserini +test857 Q0 8017332 18 9.735756 Anserini +test857 Q0 18947545 19 9.715214 Anserini +test857 Q0 19936377 20 9.576608 Anserini +test857 Q0 11187825 21 9.547781 Anserini +test857 Q0 17340875 22 9.468964 Anserini +test857 Q0 17046992 23 9.468964 Anserini +test857 Q0 6443458 24 9.419484 Anserini +test857 Q0 17578327 25 9.349873 Anserini +test857 Q0 19153117 26 9.343231 Anserini +test857 Q0 9631217 27 9.324088 Anserini +test857 Q0 13480382 28 9.256823 Anserini +test857 Q0 8408455 29 9.241211 Anserini +test857 Q0 6482983 30 9.198118 Anserini +test858 Q0 667483 1 14.157301 Anserini +test858 Q0 20203148 2 13.916815 Anserini +test858 Q0 6616523 3 13.336505 Anserini +test858 Q0 4274542 4 13.060268 Anserini +test858 Q0 3071291 5 13.017199 Anserini +test858 Q0 11943323 6 12.889442 Anserini +test858 Q0 12291195 7 12.851705 Anserini +test858 Q0 5957313 8 12.715526 Anserini +test858 Q0 7994718 9 12.714920 Anserini +test858 Q0 1749352 10 12.661113 Anserini +test858 Q0 4212249 11 12.619925 Anserini +test858 Q0 1744921 12 12.576627 Anserini +test858 Q0 12842037 13 12.557048 Anserini +test858 Q0 11943321 14 12.497170 Anserini +test858 Q0 9919022 15 12.474861 Anserini +test858 Q0 11943316 16 12.471766 Anserini +test858 Q0 11943313 17 12.471766 Anserini +test858 Q0 3795325 18 12.455200 Anserini +test858 Q0 156850 19 12.430139 Anserini +test858 Q0 1743448 20 12.415185 Anserini +test858 Q0 19969262 21 12.408359 Anserini +test858 Q0 17162367 22 12.405930 Anserini +test858 Q0 13594554 23 12.381100 Anserini +test858 Q0 9919021 24 12.368412 Anserini +test858 Q0 2315369 25 12.365955 Anserini +test858 Q0 4274540 26 12.349916 Anserini +test858 Q0 6390794 27 12.328735 Anserini +test858 Q0 18298973 28 12.322777 Anserini +test858 Q0 14348737 29 12.262510 Anserini +test858 Q0 1924758 30 12.245747 Anserini +test859 Q0 2400256 1 14.929154 Anserini +test859 Q0 3586581 2 14.251104 Anserini +test859 Q0 9628480 3 14.242116 Anserini +test859 Q0 7293743 4 14.105367 Anserini +test859 Q0 3583650 5 13.950872 Anserini +test859 Q0 5526376 6 13.912110 Anserini +test859 Q0 20313846 7 13.860990 Anserini +test859 Q0 16732476 8 13.808780 Anserini +test859 Q0 4071584 9 13.798180 Anserini +test859 Q0 9330688 10 13.755356 Anserini +test859 Q0 5615753 11 13.625088 Anserini +test859 Q0 8029151 12 13.588692 Anserini +test859 Q0 10194928 13 13.568789 Anserini +test859 Q0 19122864 14 13.550428 Anserini +test859 Q0 11635274 15 13.390425 Anserini +test859 Q0 16732472 16 13.362059 Anserini +test859 Q0 16732471 17 13.360000 Anserini +test859 Q0 5997103 18 13.271611 Anserini +test859 Q0 679362 19 13.231654 Anserini +test859 Q0 15877271 20 13.133639 Anserini +test859 Q0 3586426 21 13.032626 Anserini +test859 Q0 8029144 22 13.007504 Anserini +test859 Q0 3668064 23 12.980051 Anserini +test859 Q0 7062549 24 12.979212 Anserini +test859 Q0 4862460 25 12.973482 Anserini +test859 Q0 2515292 26 12.948161 Anserini +test859 Q0 679296 27 12.915620 Anserini +test859 Q0 14011717 28 12.883575 Anserini +test859 Q0 5997097 29 12.804293 Anserini +test859 Q0 2627247 30 12.804293 Anserini +test86 Q0 11743221 1 20.917719 Anserini +test86 Q0 11743220 2 17.832685 Anserini +test86 Q0 11743624 3 13.089754 Anserini +test86 Q0 10369622 4 12.957853 Anserini +test86 Q0 16273704 5 12.677875 Anserini +test86 Q0 16064112 6 12.492809 Anserini +test86 Q0 5566907 7 12.346882 Anserini +test86 Q0 9150066 8 12.112582 Anserini +test86 Q0 14404788 9 11.839197 Anserini +test86 Q0 14404791 10 11.839197 Anserini +test86 Q0 14404811 11 11.839197 Anserini +test86 Q0 3563808 12 11.690891 Anserini +test86 Q0 14876214 13 11.585518 Anserini +test86 Q0 19432039 14 11.530995 Anserini +test86 Q0 17371789 15 11.524153 Anserini +test86 Q0 9604726 16 11.445446 Anserini +test86 Q0 10446235 17 11.250051 Anserini +test86 Q0 10436657 18 11.246457 Anserini +test86 Q0 3146336 19 11.221892 Anserini +test86 Q0 15668002 20 11.082568 Anserini +test86 Q0 7977695 21 10.935522 Anserini +test86 Q0 19459279 22 10.867319 Anserini +test86 Q0 12581565 23 10.810851 Anserini +test86 Q0 12581567 24 10.810851 Anserini +test86 Q0 15112001 25 10.802654 Anserini +test86 Q0 3411636 26 10.792965 Anserini +test86 Q0 18611226 27 10.735779 Anserini +test86 Q0 275816 28 10.722681 Anserini +test86 Q0 742807 29 10.660918 Anserini +test86 Q0 16357841 30 10.651014 Anserini +test860 Q0 8489404 1 12.682783 Anserini +test860 Q0 10038256 2 10.943182 Anserini +test860 Q0 20332373 3 10.938354 Anserini +test860 Q0 20332374 4 10.938354 Anserini +test860 Q0 5837827 5 10.775528 Anserini +test860 Q0 19396159 6 10.767597 Anserini +test860 Q0 18937851 7 10.720104 Anserini +test860 Q0 10038255 8 10.685223 Anserini +test860 Q0 12698093 9 10.663273 Anserini +test860 Q0 11382709 10 10.542926 Anserini +test860 Q0 11988588 11 10.519329 Anserini +test860 Q0 14319268 12 10.499962 Anserini +test860 Q0 19556258 13 10.413277 Anserini +test860 Q0 19556261 14 10.413277 Anserini +test860 Q0 14393167 15 10.228031 Anserini +test860 Q0 2602878 16 10.146317 Anserini +test860 Q0 7157649 17 10.116966 Anserini +test860 Q0 3257914 18 10.038674 Anserini +test860 Q0 4711478 19 9.941113 Anserini +test860 Q0 11382708 20 9.917521 Anserini +test860 Q0 6308016 21 9.813300 Anserini +test860 Q0 11382665 22 9.797522 Anserini +test860 Q0 2986036 23 9.797522 Anserini +test860 Q0 17580001 24 9.755117 Anserini +test860 Q0 7126102 25 9.727485 Anserini +test860 Q0 8841668 26 9.712036 Anserini +test860 Q0 10670978 27 9.687843 Anserini +test860 Q0 2368751 28 9.663168 Anserini +test860 Q0 2885031 29 9.632620 Anserini +test860 Q0 11357790 30 9.631145 Anserini +test861 Q0 3262182 1 17.444599 Anserini +test861 Q0 3262199 2 16.343348 Anserini +test861 Q0 2206149 3 16.249626 Anserini +test861 Q0 7420809 4 16.188530 Anserini +test861 Q0 1531793 5 16.009567 Anserini +test861 Q0 4002393 6 15.929104 Anserini +test861 Q0 429270 7 15.913728 Anserini +test861 Q0 4002212 8 15.864395 Anserini +test861 Q0 18550523 9 15.857903 Anserini +test861 Q0 12173638 10 15.850683 Anserini +test861 Q0 2468749 11 15.842411 Anserini +test861 Q0 4002209 12 15.842329 Anserini +test861 Q0 4040297 13 15.735130 Anserini +test861 Q0 4002351 14 15.725926 Anserini +test861 Q0 16875316 15 15.721359 Anserini +test861 Q0 4244705 16 15.699246 Anserini +test861 Q0 15586346 17 15.638716 Anserini +test861 Q0 4364169 18 15.622314 Anserini +test861 Q0 4002255 19 15.520167 Anserini +test861 Q0 4002181 20 15.422982 Anserini +test861 Q0 8074175 21 15.364983 Anserini +test861 Q0 11819144 22 15.351822 Anserini +test861 Q0 5306592 23 15.344433 Anserini +test861 Q0 4002283 24 15.333059 Anserini +test861 Q0 4003161 25 15.322900 Anserini +test861 Q0 2229922 26 15.244320 Anserini +test861 Q0 4002336 27 15.244320 Anserini +test861 Q0 4005880 28 15.244320 Anserini +test861 Q0 4002281 29 15.244320 Anserini +test861 Q0 4003504 30 15.235930 Anserini +test862 Q0 4619826 1 20.270718 Anserini +test862 Q0 16694128 2 19.648396 Anserini +test862 Q0 6999523 3 18.839384 Anserini +test862 Q0 16927996 4 18.407690 Anserini +test862 Q0 20970903 5 18.169405 Anserini +test862 Q0 1774465 6 18.077770 Anserini +test862 Q0 11950635 7 17.986591 Anserini +test862 Q0 19187664 8 17.779127 Anserini +test862 Q0 1774466 9 17.696609 Anserini +test862 Q0 1953339 10 17.623508 Anserini +test862 Q0 3022238 11 17.444929 Anserini +test862 Q0 1774460 12 17.307137 Anserini +test862 Q0 2445573 13 17.294668 Anserini +test862 Q0 11950644 14 17.288631 Anserini +test862 Q0 19632144 15 17.278328 Anserini +test862 Q0 19415161 16 17.272512 Anserini +test862 Q0 19632146 17 17.245209 Anserini +test862 Q0 3969373 18 17.226606 Anserini +test862 Q0 1774455 19 17.176085 Anserini +test862 Q0 20927913 20 17.090254 Anserini +test862 Q0 16694127 21 16.971056 Anserini +test862 Q0 20927915 22 16.968163 Anserini +test862 Q0 2103428 23 16.878565 Anserini +test862 Q0 17691183 24 16.871946 Anserini +test862 Q0 8761054 25 16.799694 Anserini +test862 Q0 1774452 26 16.677805 Anserini +test862 Q0 1774451 27 16.627785 Anserini +test862 Q0 4620587 28 16.526150 Anserini +test862 Q0 20346146 29 16.519884 Anserini +test862 Q0 16888986 30 16.519884 Anserini +test863 Q0 11028971 1 17.881437 Anserini +test863 Q0 11028937 2 16.128609 Anserini +test863 Q0 11028972 3 16.099884 Anserini +test863 Q0 11028926 4 16.093298 Anserini +test863 Q0 19548556 5 15.475218 Anserini +test863 Q0 11028934 6 15.023152 Anserini +test863 Q0 11028928 7 14.938492 Anserini +test863 Q0 18691116 8 14.535950 Anserini +test863 Q0 11028965 9 14.530440 Anserini +test863 Q0 11028951 10 14.481202 Anserini +test863 Q0 11028938 11 14.394850 Anserini +test863 Q0 11028956 12 14.369541 Anserini +test863 Q0 11028966 13 14.287951 Anserini +test863 Q0 12488656 14 14.271533 Anserini +test863 Q0 2178843 15 14.195007 Anserini +test863 Q0 11028948 16 14.034282 Anserini +test863 Q0 17056363 17 13.992430 Anserini +test863 Q0 11028954 18 13.938980 Anserini +test863 Q0 11028945 19 13.938980 Anserini +test863 Q0 11028941 20 13.903643 Anserini +test863 Q0 11028961 21 13.903643 Anserini +test863 Q0 11905528 22 13.894013 Anserini +test863 Q0 11905537 23 13.830618 Anserini +test863 Q0 11028963 24 13.816055 Anserini +test863 Q0 11905532 25 13.744863 Anserini +test863 Q0 2178835 26 13.719053 Anserini +test863 Q0 12488652 27 13.701517 Anserini +test863 Q0 17124296 28 13.663476 Anserini +test863 Q0 17124297 29 13.663476 Anserini +test863 Q0 11936939 30 13.645231 Anserini +test864 Q0 18178088 1 20.642361 Anserini +test864 Q0 13685853 2 20.179005 Anserini +test864 Q0 16651221 3 20.052393 Anserini +test864 Q0 18178139 4 19.839933 Anserini +test864 Q0 18229888 5 19.709822 Anserini +test864 Q0 13685851 6 18.894154 Anserini +test864 Q0 18178092 7 18.757423 Anserini +test864 Q0 6634379 8 18.732891 Anserini +test864 Q0 18178089 9 18.265339 Anserini +test864 Q0 18178084 10 17.871359 Anserini +test864 Q0 20095305 11 17.737736 Anserini +test864 Q0 5153869 12 17.447933 Anserini +test864 Q0 18178086 13 17.267576 Anserini +test864 Q0 18178126 14 16.863157 Anserini +test864 Q0 16651211 15 16.656698 Anserini +test864 Q0 18178090 16 16.568783 Anserini +test864 Q0 20338632 17 16.229612 Anserini +test864 Q0 18178085 18 16.198250 Anserini +test864 Q0 16651219 19 16.187193 Anserini +test864 Q0 6634385 20 16.107777 Anserini +test864 Q0 18178093 21 16.090519 Anserini +test864 Q0 18178106 22 15.956171 Anserini +test864 Q0 16651213 23 15.808160 Anserini +test864 Q0 6634380 24 15.808160 Anserini +test864 Q0 16651286 25 15.808160 Anserini +test864 Q0 18178083 26 15.746296 Anserini +test864 Q0 18229880 27 15.624805 Anserini +test864 Q0 20095306 28 15.522611 Anserini +test864 Q0 20123632 29 15.488007 Anserini +test864 Q0 19642122 30 15.408519 Anserini +test865 Q0 11028972 1 14.976049 Anserini +test865 Q0 11028926 2 14.592773 Anserini +test865 Q0 11028937 3 13.803423 Anserini +test865 Q0 19492877 4 13.366663 Anserini +test865 Q0 11028941 5 13.275266 Anserini +test865 Q0 12488656 6 13.151949 Anserini +test865 Q0 2178835 7 13.109914 Anserini +test865 Q0 2178843 8 13.079687 Anserini +test865 Q0 12488673 9 13.010169 Anserini +test865 Q0 11028965 10 12.930858 Anserini +test865 Q0 11028955 11 12.919166 Anserini +test865 Q0 18691116 12 12.919166 Anserini +test865 Q0 11028928 13 12.864540 Anserini +test865 Q0 19548556 14 12.852616 Anserini +test865 Q0 11028956 15 12.786797 Anserini +test865 Q0 11028934 16 12.721695 Anserini +test865 Q0 11028966 17 12.721695 Anserini +test865 Q0 11028948 18 12.675388 Anserini +test865 Q0 11028945 19 12.578316 Anserini +test865 Q0 17124296 20 12.543892 Anserini +test865 Q0 17124297 21 12.543892 Anserini +test865 Q0 11028950 22 12.488061 Anserini +test865 Q0 11028952 23 12.399116 Anserini +test865 Q0 11028951 24 12.392847 Anserini +test865 Q0 11028960 25 12.392847 Anserini +test865 Q0 17056363 26 12.392847 Anserini +test865 Q0 11028968 27 12.392847 Anserini +test865 Q0 11028938 28 12.320898 Anserini +test865 Q0 11028961 29 12.320898 Anserini +test865 Q0 11028963 30 12.249800 Anserini +test866 Q0 4494785 1 12.142389 Anserini +test866 Q0 12962915 2 11.983219 Anserini +test866 Q0 3704796 3 11.736879 Anserini +test866 Q0 4193894 4 11.602461 Anserini +test866 Q0 18527337 5 11.457699 Anserini +test866 Q0 5398243 6 11.306828 Anserini +test866 Q0 2363222 7 11.226107 Anserini +test866 Q0 4254381 8 11.149793 Anserini +test866 Q0 11384474 9 11.077474 Anserini +test866 Q0 10121173 10 10.984758 Anserini +test866 Q0 5718722 11 10.984758 Anserini +test866 Q0 9862531 12 10.975259 Anserini +test866 Q0 13318855 13 10.921778 Anserini +test866 Q0 7096933 14 10.909944 Anserini +test866 Q0 10725736 15 10.900545 Anserini +test866 Q0 4254384 16 10.881143 Anserini +test866 Q0 6005516 17 10.859087 Anserini +test866 Q0 9348021 18 10.683247 Anserini +test866 Q0 4331506 19 10.661777 Anserini +test866 Q0 10154178 20 10.616952 Anserini +test866 Q0 9405466 21 10.607727 Anserini +test866 Q0 4342347 22 10.581789 Anserini +test866 Q0 17570535 23 10.534681 Anserini +test866 Q0 6005538 24 10.534681 Anserini +test866 Q0 7049650 25 10.530758 Anserini +test866 Q0 9738639 26 10.490664 Anserini +test866 Q0 394937 27 10.453887 Anserini +test866 Q0 2199843 28 10.411040 Anserini +test866 Q0 10395636 29 10.395495 Anserini +test866 Q0 394290 30 10.394576 Anserini +test867 Q0 3919535 1 19.157841 Anserini +test867 Q0 3919531 2 17.977123 Anserini +test867 Q0 11754074 3 14.927954 Anserini +test867 Q0 8633111 4 14.227515 Anserini +test867 Q0 6326795 5 14.115894 Anserini +test867 Q0 6898817 6 14.076802 Anserini +test867 Q0 3919532 7 13.421304 Anserini +test867 Q0 6515078 8 13.338280 Anserini +test867 Q0 8977728 9 13.094192 Anserini +test867 Q0 18268873 10 13.063029 Anserini +test867 Q0 3504928 11 13.050285 Anserini +test867 Q0 8633113 12 12.923118 Anserini +test867 Q0 7479785 13 12.876425 Anserini +test867 Q0 3045637 14 12.862556 Anserini +test867 Q0 3919534 15 12.862556 Anserini +test867 Q0 5391869 16 12.753722 Anserini +test867 Q0 9076309 17 12.753722 Anserini +test867 Q0 9076310 18 12.753722 Anserini +test867 Q0 6515073 19 12.730745 Anserini +test867 Q0 6515075 20 12.626928 Anserini +test867 Q0 5973405 21 12.539279 Anserini +test867 Q0 8891602 22 12.503993 Anserini +test867 Q0 10289569 23 12.404440 Anserini +test867 Q0 8633107 24 12.314339 Anserini +test867 Q0 3610249 25 12.143275 Anserini +test867 Q0 6937630 26 12.143275 Anserini +test867 Q0 3919533 27 11.888617 Anserini +test867 Q0 9621256 28 10.983623 Anserini +test867 Q0 6690035 29 10.747789 Anserini +test867 Q0 1465336 30 10.697487 Anserini +test868 Q0 3422069 1 28.275160 Anserini +test868 Q0 7675324 2 27.455763 Anserini +test868 Q0 11726301 3 25.685347 Anserini +test868 Q0 7675956 4 25.665392 Anserini +test868 Q0 1608828 5 25.440651 Anserini +test868 Q0 7327440 6 25.407875 Anserini +test868 Q0 7327439 7 25.363899 Anserini +test868 Q0 6965517 8 24.919151 Anserini +test868 Q0 5462400 9 24.545561 Anserini +test868 Q0 6965580 10 24.536461 Anserini +test868 Q0 4794896 11 24.263231 Anserini +test868 Q0 3422084 12 23.978922 Anserini +test868 Q0 20089203 13 23.793043 Anserini +test868 Q0 4781231 14 23.637709 Anserini +test868 Q0 8568812 15 23.024279 Anserini +test868 Q0 8568815 16 23.024279 Anserini +test868 Q0 13569337 17 23.024279 Anserini +test868 Q0 7675326 18 22.974361 Anserini +test868 Q0 7327441 19 22.735064 Anserini +test868 Q0 15104657 20 22.537096 Anserini +test868 Q0 15396315 21 22.312078 Anserini +test868 Q0 5514775 22 22.303741 Anserini +test868 Q0 17934058 23 22.077200 Anserini +test868 Q0 2100526 24 21.958778 Anserini +test868 Q0 2100533 25 21.958778 Anserini +test868 Q0 10760574 26 21.951151 Anserini +test868 Q0 12208985 27 21.783199 Anserini +test868 Q0 13496587 28 21.506313 Anserini +test868 Q0 13496596 29 21.506313 Anserini +test868 Q0 6258854 30 21.362558 Anserini +test869 Q0 733942 1 17.451971 Anserini +test869 Q0 12906116 2 17.266691 Anserini +test869 Q0 2597237 3 17.131840 Anserini +test869 Q0 1922372 4 16.806095 Anserini +test869 Q0 7679672 5 16.802485 Anserini +test869 Q0 7679676 6 16.802485 Anserini +test869 Q0 2372071 7 16.215050 Anserini +test869 Q0 4250365 8 16.161736 Anserini +test869 Q0 733933 9 15.985720 Anserini +test869 Q0 733935 10 15.926112 Anserini +test869 Q0 733937 11 15.826125 Anserini +test869 Q0 282789 12 15.791984 Anserini +test869 Q0 14139672 13 15.731921 Anserini +test869 Q0 12906130 14 15.519605 Anserini +test869 Q0 1601100 15 15.480247 Anserini +test869 Q0 2006093 16 15.164354 Anserini +test869 Q0 4227378 17 14.918428 Anserini +test869 Q0 1472934 18 14.806817 Anserini +test869 Q0 733939 19 14.776569 Anserini +test869 Q0 1922374 20 14.658039 Anserini +test869 Q0 3693521 21 14.639426 Anserini +test869 Q0 3540531 22 14.609769 Anserini +test869 Q0 3540538 23 14.524542 Anserini +test869 Q0 14440857 24 14.480360 Anserini +test869 Q0 3261123 25 14.200068 Anserini +test869 Q0 733938 26 14.045563 Anserini +test869 Q0 11446398 27 13.908886 Anserini +test869 Q0 12906108 28 13.880796 Anserini +test869 Q0 3082627 29 13.774366 Anserini +test869 Q0 733940 30 13.689563 Anserini +test87 Q0 7835848 1 11.668770 Anserini +test87 Q0 2477584 2 11.300942 Anserini +test87 Q0 2477585 3 11.212132 Anserini +test87 Q0 2483694 4 11.071801 Anserini +test87 Q0 2291359 5 10.984916 Anserini +test87 Q0 12368365 6 10.899547 Anserini +test87 Q0 14283846 7 10.722134 Anserini +test87 Q0 13021823 8 10.496785 Anserini +test87 Q0 9822572 9 10.413816 Anserini +test87 Q0 16516989 10 10.413816 Anserini +test87 Q0 2477586 11 10.385264 Anserini +test87 Q0 19259280 12 10.378708 Anserini +test87 Q0 7023497 13 10.350256 Anserini +test87 Q0 2477547 14 10.343142 Anserini +test87 Q0 9988853 15 10.322471 Anserini +test87 Q0 7025477 16 10.280962 Anserini +test87 Q0 19289417 17 10.275666 Anserini +test87 Q0 3161163 18 10.145572 Anserini +test87 Q0 10764859 19 10.144697 Anserini +test87 Q0 14072404 20 10.128627 Anserini +test87 Q0 2477633 21 10.118101 Anserini +test87 Q0 2477546 22 10.081308 Anserini +test87 Q0 7025481 23 10.022190 Anserini +test87 Q0 2477559 24 9.929403 Anserini +test87 Q0 2477621 25 9.923836 Anserini +test87 Q0 3661535 26 9.918857 Anserini +test87 Q0 6657955 27 9.914909 Anserini +test87 Q0 2477628 28 9.889036 Anserini +test87 Q0 19259284 29 9.889036 Anserini +test87 Q0 2477579 30 9.883795 Anserini +test870 Q0 18553351 1 15.067463 Anserini +test870 Q0 18553304 2 14.732311 Anserini +test870 Q0 20071633 3 14.696026 Anserini +test870 Q0 19955601 4 14.666733 Anserini +test870 Q0 18553276 5 14.447146 Anserini +test870 Q0 18553299 6 14.427479 Anserini +test870 Q0 19955602 7 14.248658 Anserini +test870 Q0 8316069 8 14.117119 Anserini +test870 Q0 6915925 9 14.008897 Anserini +test870 Q0 18553301 10 13.900496 Anserini +test870 Q0 6915919 11 13.864101 Anserini +test870 Q0 17628848 12 13.816412 Anserini +test870 Q0 20071673 13 13.651746 Anserini +test870 Q0 18553293 14 13.587000 Anserini +test870 Q0 18553286 15 13.587000 Anserini +test870 Q0 18553287 16 13.562598 Anserini +test870 Q0 17816316 17 13.525144 Anserini +test870 Q0 18553308 18 13.514319 Anserini +test870 Q0 4755008 19 13.378253 Anserini +test870 Q0 18553337 20 13.331274 Anserini +test870 Q0 20071657 21 13.330963 Anserini +test870 Q0 18553331 22 13.330963 Anserini +test870 Q0 18553277 23 13.295124 Anserini +test870 Q0 18553338 24 13.246250 Anserini +test870 Q0 8316034 25 13.174780 Anserini +test870 Q0 18553318 26 13.148434 Anserini +test870 Q0 1208677 27 13.138168 Anserini +test870 Q0 19076141 28 13.071594 Anserini +test870 Q0 18553336 29 13.054904 Anserini +test870 Q0 18553282 30 12.984442 Anserini +test871 Q0 20874149 1 19.812809 Anserini +test871 Q0 5449978 2 18.903505 Anserini +test871 Q0 5449979 3 17.466459 Anserini +test871 Q0 10986318 4 16.507845 Anserini +test871 Q0 13036225 5 15.810266 Anserini +test871 Q0 15388087 6 14.690540 Anserini +test871 Q0 8507241 7 13.462745 Anserini +test871 Q0 10702879 8 13.131460 Anserini +test871 Q0 9440897 9 12.872448 Anserini +test871 Q0 11528434 10 12.781715 Anserini +test871 Q0 10702880 11 12.672572 Anserini +test871 Q0 14633370 12 12.664738 Anserini +test871 Q0 14633371 13 12.664738 Anserini +test871 Q0 3915429 14 12.594648 Anserini +test871 Q0 17847713 15 12.572709 Anserini +test871 Q0 20874150 16 12.519159 Anserini +test871 Q0 5626816 17 12.511046 Anserini +test871 Q0 11105198 18 12.418912 Anserini +test871 Q0 11105190 19 12.418912 Anserini +test871 Q0 17923613 20 12.294000 Anserini +test871 Q0 20090724 21 12.292792 Anserini +test871 Q0 17923612 22 12.292792 Anserini +test871 Q0 8610160 23 12.163240 Anserini +test871 Q0 17759004 24 12.145918 Anserini +test871 Q0 11518901 25 12.139262 Anserini +test871 Q0 15173946 26 12.137457 Anserini +test871 Q0 6450302 27 12.113675 Anserini +test871 Q0 12667378 28 12.112904 Anserini +test871 Q0 12667379 29 12.112904 Anserini +test871 Q0 12112879 30 12.102242 Anserini +test872 Q0 15405416 1 12.520946 Anserini +test872 Q0 3081490 2 11.543751 Anserini +test872 Q0 13255457 3 11.134868 Anserini +test872 Q0 13306501 4 11.123457 Anserini +test872 Q0 18785393 5 11.083885 Anserini +test872 Q0 15643801 6 10.950929 Anserini +test872 Q0 17873569 7 10.794208 Anserini +test872 Q0 4538175 8 10.741706 Anserini +test872 Q0 4538182 9 10.741706 Anserini +test872 Q0 3820305 10 10.692802 Anserini +test872 Q0 11053172 11 10.579194 Anserini +test872 Q0 7303473 12 10.577730 Anserini +test872 Q0 437883 13 10.575767 Anserini +test872 Q0 6659998 14 10.568976 Anserini +test872 Q0 7560889 15 10.531640 Anserini +test872 Q0 11642378 16 10.498520 Anserini +test872 Q0 10181337 17 10.461713 Anserini +test872 Q0 8044045 18 10.459721 Anserini +test872 Q0 7182639 19 10.412066 Anserini +test872 Q0 4230331 20 10.404364 Anserini +test872 Q0 4925947 21 10.366288 Anserini +test872 Q0 11642377 22 10.358797 Anserini +test872 Q0 6177700 23 10.349544 Anserini +test872 Q0 3776651 24 10.349190 Anserini +test872 Q0 8012608 25 10.329668 Anserini +test872 Q0 3937129 26 10.308536 Anserini +test872 Q0 10699585 27 10.298557 Anserini +test872 Q0 5013877 28 10.238195 Anserini +test872 Q0 10321653 29 10.237398 Anserini +test872 Q0 2311623 30 10.186997 Anserini +test873 Q0 10361274 1 11.757663 Anserini +test873 Q0 10361259 2 11.167192 Anserini +test873 Q0 11221725 3 10.588746 Anserini +test873 Q0 2714398 4 10.471018 Anserini +test873 Q0 2714396 5 9.961804 Anserini +test873 Q0 11530468 6 9.937247 Anserini +test873 Q0 3634509 7 9.751358 Anserini +test873 Q0 5882008 8 9.629808 Anserini +test873 Q0 6774073 9 9.601629 Anserini +test873 Q0 9935163 10 9.359216 Anserini +test873 Q0 3634515 11 9.320698 Anserini +test873 Q0 5882004 12 9.244604 Anserini +test873 Q0 3634537 13 9.244604 Anserini +test873 Q0 2714403 14 9.207022 Anserini +test873 Q0 7114103 15 9.060619 Anserini +test873 Q0 17612046 16 9.019684 Anserini +test873 Q0 2714402 17 8.894195 Anserini +test873 Q0 11932088 18 8.830330 Anserini +test873 Q0 3634523 19 8.828824 Anserini +test873 Q0 6005858 20 8.764429 Anserini +test873 Q0 690678 21 8.756154 Anserini +test873 Q0 10361270 22 8.711247 Anserini +test873 Q0 3634536 23 8.711247 Anserini +test873 Q0 18421765 24 8.697748 Anserini +test873 Q0 8127320 25 8.694441 Anserini +test873 Q0 11221727 26 8.666800 Anserini +test873 Q0 5001392 27 8.642124 Anserini +test873 Q0 13703491 28 8.630020 Anserini +test873 Q0 2046985 29 8.603793 Anserini +test873 Q0 5059755 30 8.603793 Anserini +test874 Q0 10064581 1 17.351137 Anserini +test874 Q0 10064590 2 16.758759 Anserini +test874 Q0 19678236 3 16.317371 Anserini +test874 Q0 19678237 4 16.317371 Anserini +test874 Q0 3996688 5 15.948488 Anserini +test874 Q0 5907847 6 15.838572 Anserini +test874 Q0 3996696 7 15.589615 Anserini +test874 Q0 10064583 8 14.973907 Anserini +test874 Q0 5097302 9 14.841656 Anserini +test874 Q0 3210242 10 14.722726 Anserini +test874 Q0 5907852 11 14.719846 Anserini +test874 Q0 3210248 12 14.703686 Anserini +test874 Q0 12830477 13 14.607609 Anserini +test874 Q0 20546595 14 14.577665 Anserini +test874 Q0 2163689 15 14.384463 Anserini +test874 Q0 5030664 16 13.968826 Anserini +test874 Q0 5030667 17 13.968826 Anserini +test874 Q0 1384472 18 13.780029 Anserini +test874 Q0 3210249 19 13.469694 Anserini +test874 Q0 20546592 20 13.396661 Anserini +test874 Q0 10064588 21 13.304066 Anserini +test874 Q0 20546597 22 13.271601 Anserini +test874 Q0 13815296 23 13.169758 Anserini +test874 Q0 13815297 24 13.169758 Anserini +test874 Q0 20263968 25 13.153922 Anserini +test874 Q0 2163686 26 13.118640 Anserini +test874 Q0 10064585 27 13.058837 Anserini +test874 Q0 8561489 28 12.804177 Anserini +test874 Q0 3210254 29 12.699049 Anserini +test874 Q0 15618330 30 12.699049 Anserini +test875 Q0 542032 1 10.054540 Anserini +test875 Q0 7485553 2 10.010206 Anserini +test875 Q0 8244 3 9.825432 Anserini +test875 Q0 4762279 4 9.805920 Anserini +test875 Q0 9875114 5 9.630849 Anserini +test875 Q0 16021970 6 9.597777 Anserini +test875 Q0 4762261 7 9.592680 Anserini +test875 Q0 10737059 8 9.398628 Anserini +test875 Q0 8866551 9 9.378770 Anserini +test875 Q0 7206441 10 9.371577 Anserini +test875 Q0 8662114 11 9.310443 Anserini +test875 Q0 5765354 12 9.289515 Anserini +test875 Q0 8866555 13 9.233265 Anserini +test875 Q0 8866562 14 9.065823 Anserini +test875 Q0 5521585 15 9.000520 Anserini +test875 Q0 15272402 16 8.974652 Anserini +test875 Q0 14849227 17 8.973465 Anserini +test875 Q0 5374057 18 8.965672 Anserini +test875 Q0 290289 19 8.949419 Anserini +test875 Q0 4762273 20 8.921314 Anserini +test875 Q0 242542 21 8.909081 Anserini +test875 Q0 6114393 22 8.907142 Anserini +test875 Q0 567692 23 8.865773 Anserini +test875 Q0 5147013 24 8.734507 Anserini +test875 Q0 8598531 25 8.733498 Anserini +test875 Q0 16857396 26 8.732949 Anserini +test875 Q0 8667513 27 8.717224 Anserini +test875 Q0 152045 28 8.706990 Anserini +test875 Q0 8866553 29 8.679447 Anserini +test875 Q0 8890974 30 8.676109 Anserini +test876 Q0 18972830 1 21.081455 Anserini +test876 Q0 2570728 2 18.564152 Anserini +test876 Q0 8060383 3 17.950521 Anserini +test876 Q0 8820768 4 17.880480 Anserini +test876 Q0 8820771 5 17.819040 Anserini +test876 Q0 18972831 6 16.771095 Anserini +test876 Q0 3586650 7 16.718954 Anserini +test876 Q0 6363597 8 16.478647 Anserini +test876 Q0 304960 9 16.416323 Anserini +test876 Q0 6805012 10 16.212505 Anserini +test876 Q0 11055478 11 16.202799 Anserini +test876 Q0 7162340 12 16.107826 Anserini +test876 Q0 18972838 13 16.061357 Anserini +test876 Q0 18972836 14 16.044287 Anserini +test876 Q0 6758080 15 15.998023 Anserini +test876 Q0 18701583 16 15.918618 Anserini +test876 Q0 17954283 17 15.822638 Anserini +test876 Q0 8853594 18 15.755449 Anserini +test876 Q0 8820776 19 15.626592 Anserini +test876 Q0 2444170 20 15.528938 Anserini +test876 Q0 19317850 21 15.446366 Anserini +test876 Q0 10861715 22 15.321095 Anserini +test876 Q0 11402469 23 15.135900 Anserini +test876 Q0 2432686 24 15.034271 Anserini +test876 Q0 17968613 25 14.989057 Anserini +test876 Q0 17952706 26 14.968646 Anserini +test876 Q0 14414843 27 14.806023 Anserini +test876 Q0 9259171 28 14.804601 Anserini +test876 Q0 17968594 29 14.778393 Anserini +test876 Q0 4409696 30 14.641666 Anserini +test877 Q0 2647890 1 19.188208 Anserini +test877 Q0 2647943 2 18.728205 Anserini +test877 Q0 7004346 3 18.114470 Anserini +test877 Q0 17641732 4 17.962791 Anserini +test877 Q0 14940696 5 16.828711 Anserini +test877 Q0 9502192 6 16.813663 Anserini +test877 Q0 6173524 7 16.418036 Anserini +test877 Q0 3515399 8 16.138264 Anserini +test877 Q0 17159797 9 16.113420 Anserini +test877 Q0 7374566 10 16.065113 Anserini +test877 Q0 18489369 11 16.041412 Anserini +test877 Q0 8249237 12 15.897643 Anserini +test877 Q0 20900196 13 15.884857 Anserini +test877 Q0 13041767 14 15.871902 Anserini +test877 Q0 18255615 15 15.574126 Anserini +test877 Q0 13295824 16 15.428389 Anserini +test877 Q0 6395866 17 15.220518 Anserini +test877 Q0 11556084 18 15.150784 Anserini +test877 Q0 5235644 19 15.116371 Anserini +test877 Q0 6234298 20 15.043857 Anserini +test877 Q0 3153558 21 14.936069 Anserini +test877 Q0 17609587 22 14.854198 Anserini +test877 Q0 3388727 23 14.821373 Anserini +test877 Q0 3388734 24 14.821373 Anserini +test877 Q0 6168073 25 14.819389 Anserini +test877 Q0 13781189 26 14.797788 Anserini +test877 Q0 1668055 27 14.797524 Anserini +test877 Q0 14689637 28 14.720410 Anserini +test877 Q0 16328052 29 14.710858 Anserini +test877 Q0 9194698 30 14.697290 Anserini +test878 Q0 10946416 1 12.808370 Anserini +test878 Q0 7729933 2 12.782662 Anserini +test878 Q0 19211996 3 12.399744 Anserini +test878 Q0 2280095 4 12.116049 Anserini +test878 Q0 6314216 5 12.107008 Anserini +test878 Q0 4029027 6 12.102836 Anserini +test878 Q0 12621707 7 11.953167 Anserini +test878 Q0 7568371 8 11.762564 Anserini +test878 Q0 2640124 9 11.669134 Anserini +test878 Q0 6420108 10 11.651903 Anserini +test878 Q0 781635 11 11.573757 Anserini +test878 Q0 7406905 12 11.558603 Anserini +test878 Q0 9067579 13 11.553963 Anserini +test878 Q0 192305 14 11.525692 Anserini +test878 Q0 11070366 15 11.484189 Anserini +test878 Q0 259025 16 11.437956 Anserini +test878 Q0 11604797 17 11.420458 Anserini +test878 Q0 13378707 18 11.348041 Anserini +test878 Q0 12049264 19 11.334846 Anserini +test878 Q0 13011016 20 11.310129 Anserini +test878 Q0 3838123 21 11.264334 Anserini +test878 Q0 7375600 22 11.259266 Anserini +test878 Q0 435713 23 11.241696 Anserini +test878 Q0 20476925 24 11.227215 Anserini +test878 Q0 12705595 25 11.213154 Anserini +test878 Q0 12018368 26 11.197473 Anserini +test878 Q0 12131428 27 11.065726 Anserini +test878 Q0 14249791 28 11.062140 Anserini +test878 Q0 323705 29 11.052248 Anserini +test878 Q0 3423600 30 11.038408 Anserini +test879 Q0 6917564 1 16.145498 Anserini +test879 Q0 3583746 2 14.993340 Anserini +test879 Q0 4929244 3 14.403661 Anserini +test879 Q0 6830243 4 14.154248 Anserini +test879 Q0 3583357 5 13.861529 Anserini +test879 Q0 3668043 6 13.643713 Anserini +test879 Q0 5894576 7 13.636702 Anserini +test879 Q0 5894579 8 13.587988 Anserini +test879 Q0 18769280 9 13.569146 Anserini +test879 Q0 3247832 10 13.556970 Anserini +test879 Q0 18097516 11 13.362308 Anserini +test879 Q0 4471364 12 13.350994 Anserini +test879 Q0 4652938 13 13.133200 Anserini +test879 Q0 4888378 14 13.113844 Anserini +test879 Q0 12899594 15 13.071039 Anserini +test879 Q0 3449277 16 13.046122 Anserini +test879 Q0 7875875 17 13.025928 Anserini +test879 Q0 6451722 18 12.972066 Anserini +test879 Q0 6812842 19 12.940993 Anserini +test879 Q0 6388367 20 12.939922 Anserini +test879 Q0 4717440 21 12.899162 Anserini +test879 Q0 304959 22 12.895044 Anserini +test879 Q0 7008220 23 12.893134 Anserini +test879 Q0 5076189 24 12.833140 Anserini +test879 Q0 3247829 25 12.822794 Anserini +test879 Q0 21013582 26 12.808479 Anserini +test879 Q0 3732908 27 12.788013 Anserini +test879 Q0 7008221 28 12.778590 Anserini +test879 Q0 12899893 29 12.726990 Anserini +test879 Q0 3583391 30 12.714417 Anserini +test88 Q0 4516830 1 13.802271 Anserini +test88 Q0 1645095 2 13.557215 Anserini +test88 Q0 1828433 3 13.404942 Anserini +test88 Q0 15283249 4 12.895981 Anserini +test88 Q0 2174650 5 12.765130 Anserini +test88 Q0 12571654 6 12.701148 Anserini +test88 Q0 11402637 7 12.556816 Anserini +test88 Q0 14473413 8 12.456303 Anserini +test88 Q0 4747774 9 12.396191 Anserini +test88 Q0 5029795 10 12.323915 Anserini +test88 Q0 3793298 11 12.286274 Anserini +test88 Q0 6936567 12 12.251287 Anserini +test88 Q0 4801946 13 12.149887 Anserini +test88 Q0 7149649 14 12.094672 Anserini +test88 Q0 2271055 15 12.094672 Anserini +test88 Q0 4638962 16 12.088242 Anserini +test88 Q0 19204872 17 12.081679 Anserini +test88 Q0 12652592 18 12.055506 Anserini +test88 Q0 4516831 19 12.012552 Anserini +test88 Q0 6058139 20 12.012388 Anserini +test88 Q0 10047201 21 12.008312 Anserini +test88 Q0 10968298 22 12.002028 Anserini +test88 Q0 3217566 23 11.944687 Anserini +test88 Q0 13752807 24 11.931644 Anserini +test88 Q0 1962308 25 11.902451 Anserini +test88 Q0 11926825 26 11.898067 Anserini +test88 Q0 17473919 27 11.869655 Anserini +test88 Q0 1456008 28 11.859803 Anserini +test88 Q0 8989994 29 11.858224 Anserini +test88 Q0 8661991 30 11.838009 Anserini +test880 Q0 9144398 1 15.935137 Anserini +test880 Q0 6224942 2 15.435940 Anserini +test880 Q0 20259594 3 15.257873 Anserini +test880 Q0 5695621 4 14.969498 Anserini +test880 Q0 19807796 5 14.814795 Anserini +test880 Q0 20259598 6 14.761545 Anserini +test880 Q0 11342772 7 14.710435 Anserini +test880 Q0 393918 8 14.526214 Anserini +test880 Q0 20569714 9 14.487399 Anserini +test880 Q0 17473833 10 14.469478 Anserini +test880 Q0 3094058 11 14.430560 Anserini +test880 Q0 5868502 12 14.288315 Anserini +test880 Q0 19807797 13 14.250931 Anserini +test880 Q0 20553972 14 14.142173 Anserini +test880 Q0 19807846 15 14.080406 Anserini +test880 Q0 271655 16 14.079969 Anserini +test880 Q0 9403913 17 14.059411 Anserini +test880 Q0 9860104 18 14.043946 Anserini +test880 Q0 3200081 19 13.991720 Anserini +test880 Q0 313849 20 13.991720 Anserini +test880 Q0 19807838 21 13.963064 Anserini +test880 Q0 3200035 22 13.854174 Anserini +test880 Q0 4545242 23 13.821845 Anserini +test880 Q0 16778801 24 13.793800 Anserini +test880 Q0 9144384 25 13.788147 Anserini +test880 Q0 19011682 26 13.752552 Anserini +test880 Q0 17025369 27 13.649463 Anserini +test880 Q0 394886 28 13.633096 Anserini +test880 Q0 8711484 29 13.598063 Anserini +test880 Q0 13904649 30 13.561735 Anserini +test881 Q0 9734000 1 11.374912 Anserini +test881 Q0 6538705 2 11.061734 Anserini +test881 Q0 2310749 3 10.439963 Anserini +test881 Q0 910134 4 10.424900 Anserini +test881 Q0 14173839 5 10.348701 Anserini +test881 Q0 7625608 6 10.342916 Anserini +test881 Q0 9726062 7 10.339335 Anserini +test881 Q0 2715670 8 10.271165 Anserini +test881 Q0 678093 9 9.924422 Anserini +test881 Q0 11632674 10 9.849629 Anserini +test881 Q0 1796892 11 9.801292 Anserini +test881 Q0 434519 12 9.684310 Anserini +test881 Q0 16963174 13 9.651157 Anserini +test881 Q0 5760573 14 9.544848 Anserini +test881 Q0 912466 15 9.544458 Anserini +test881 Q0 9733999 16 9.510866 Anserini +test881 Q0 20470390 17 9.456786 Anserini +test881 Q0 11070697 18 9.445611 Anserini +test881 Q0 13102579 19 9.419717 Anserini +test881 Q0 20291391 20 9.359329 Anserini +test881 Q0 7495628 21 9.353877 Anserini +test881 Q0 11123089 22 9.341632 Anserini +test881 Q0 11123112 23 9.341632 Anserini +test881 Q0 14443723 24 9.317551 Anserini +test881 Q0 13430262 25 9.271487 Anserini +test881 Q0 778767 26 9.244912 Anserini +test881 Q0 6936125 27 9.231081 Anserini +test881 Q0 10503490 28 9.223901 Anserini +test881 Q0 2664282 29 9.220247 Anserini +test881 Q0 18563454 30 9.217917 Anserini +test882 Q0 7662953 1 17.275421 Anserini +test882 Q0 17012572 2 16.840302 Anserini +test882 Q0 3053863 3 16.614933 Anserini +test882 Q0 17012573 4 16.606926 Anserini +test882 Q0 15226311 5 16.550255 Anserini +test882 Q0 11669637 6 16.340950 Anserini +test882 Q0 9322368 7 16.308250 Anserini +test882 Q0 16287278 8 16.138590 Anserini +test882 Q0 13372920 9 16.035980 Anserini +test882 Q0 9322370 10 15.949396 Anserini +test882 Q0 7663022 11 15.935646 Anserini +test882 Q0 15649909 12 15.845363 Anserini +test882 Q0 15649877 13 15.845363 Anserini +test882 Q0 16287274 14 15.832197 Anserini +test882 Q0 13456783 15 15.827901 Anserini +test882 Q0 14838101 16 15.766267 Anserini +test882 Q0 14743838 17 15.764060 Anserini +test882 Q0 16537317 18 15.734749 Anserini +test882 Q0 7663015 19 15.718710 Anserini +test882 Q0 6817719 20 15.685765 Anserini +test882 Q0 17659057 21 15.528417 Anserini +test882 Q0 14743890 22 15.485435 Anserini +test882 Q0 18649666 23 15.441542 Anserini +test882 Q0 17263335 24 15.424371 Anserini +test882 Q0 14838103 25 15.363804 Anserini +test882 Q0 9428823 26 15.282151 Anserini +test882 Q0 11907223 27 15.276763 Anserini +test882 Q0 7662947 28 15.257988 Anserini +test882 Q0 18649664 29 15.245674 Anserini +test882 Q0 11669635 30 15.235675 Anserini +test883 Q0 2105788 1 16.448700 Anserini +test883 Q0 145237 2 15.625045 Anserini +test883 Q0 6447504 3 15.389751 Anserini +test883 Q0 759463 4 15.181523 Anserini +test883 Q0 1468105 5 15.031975 Anserini +test883 Q0 365030 6 14.909449 Anserini +test883 Q0 1468109 7 14.825449 Anserini +test883 Q0 20667491 8 14.637502 Anserini +test883 Q0 1388234 9 14.280495 Anserini +test883 Q0 6447542 10 13.987937 Anserini +test883 Q0 475542 11 13.975471 Anserini +test883 Q0 1571983 12 13.952291 Anserini +test883 Q0 6447545 13 13.792120 Anserini +test883 Q0 819317 14 13.786356 Anserini +test883 Q0 365061 15 13.784757 Anserini +test883 Q0 759466 16 13.740480 Anserini +test883 Q0 3937168 17 13.738889 Anserini +test883 Q0 2395855 18 13.733335 Anserini +test883 Q0 13965869 19 13.731254 Anserini +test883 Q0 131989 20 13.626354 Anserini +test883 Q0 6447531 21 13.619797 Anserini +test883 Q0 6447539 22 13.604253 Anserini +test883 Q0 16339708 23 13.548422 Anserini +test883 Q0 16339767 24 13.532040 Anserini +test883 Q0 5235470 25 13.409112 Anserini +test883 Q0 1504121 26 13.186004 Anserini +test883 Q0 18004767 27 13.184280 Anserini +test883 Q0 6447492 28 13.182528 Anserini +test883 Q0 5516242 29 13.161946 Anserini +test883 Q0 364971 30 13.092402 Anserini +test884 Q0 10274579 1 14.554746 Anserini +test884 Q0 15849237 2 13.021211 Anserini +test884 Q0 8321273 3 13.010586 Anserini +test884 Q0 6160082 4 12.887327 Anserini +test884 Q0 499215 5 12.618289 Anserini +test884 Q0 10474197 6 12.537557 Anserini +test884 Q0 15326666 7 12.518264 Anserini +test884 Q0 470048 8 12.504858 Anserini +test884 Q0 6670544 9 12.422615 Anserini +test884 Q0 9415738 10 12.384854 Anserini +test884 Q0 20411650 11 12.332082 Anserini +test884 Q0 4248344 12 12.312348 Anserini +test884 Q0 6670630 13 12.283124 Anserini +test884 Q0 20318203 14 12.278880 Anserini +test884 Q0 7240661 15 12.237086 Anserini +test884 Q0 15192190 16 12.188772 Anserini +test884 Q0 1738091 17 12.149734 Anserini +test884 Q0 11619936 18 12.140039 Anserini +test884 Q0 15476814 19 12.130310 Anserini +test884 Q0 15013540 20 12.116213 Anserini +test884 Q0 7810206 21 12.021790 Anserini +test884 Q0 6389509 22 11.897476 Anserini +test884 Q0 3942361 23 11.816460 Anserini +test884 Q0 10642436 24 11.801090 Anserini +test884 Q0 12564051 25 11.796120 Anserini +test884 Q0 5781270 26 11.763997 Anserini +test884 Q0 6956416 27 11.717925 Anserini +test884 Q0 589253 28 11.693246 Anserini +test884 Q0 11759668 29 11.692455 Anserini +test884 Q0 9297546 30 11.691090 Anserini +test885 Q0 2678254 1 15.887002 Anserini +test885 Q0 12810061 2 14.940203 Anserini +test885 Q0 24749 3 14.572320 Anserini +test885 Q0 427406 4 14.475073 Anserini +test885 Q0 427382 5 14.475073 Anserini +test885 Q0 10861455 6 14.186751 Anserini +test885 Q0 12810052 7 14.129335 Anserini +test885 Q0 4648227 8 14.094253 Anserini +test885 Q0 7768284 9 13.785801 Anserini +test885 Q0 427385 10 13.717588 Anserini +test885 Q0 10110576 11 13.577662 Anserini +test885 Q0 29531 12 13.430878 Anserini +test885 Q0 2906401 13 13.422855 Anserini +test885 Q0 6062471 14 13.324656 Anserini +test885 Q0 5841502 15 13.316917 Anserini +test885 Q0 7608566 16 13.245527 Anserini +test885 Q0 7826925 17 13.124777 Anserini +test885 Q0 78980 18 13.111023 Anserini +test885 Q0 9579927 19 13.002857 Anserini +test885 Q0 427398 20 12.904090 Anserini +test885 Q0 4728631 21 12.904090 Anserini +test885 Q0 14339885 22 12.750843 Anserini +test885 Q0 12395352 23 12.750843 Anserini +test885 Q0 14361714 24 12.721708 Anserini +test885 Q0 19942693 25 12.721708 Anserini +test885 Q0 3062763 26 12.675606 Anserini +test885 Q0 288522 27 12.610486 Anserini +test885 Q0 6944226 28 12.610486 Anserini +test885 Q0 13981921 29 12.601271 Anserini +test885 Q0 11221614 30 12.501273 Anserini +test886 Q0 17910650 1 11.263106 Anserini +test886 Q0 11796809 2 10.604971 Anserini +test886 Q0 7289925 3 10.501520 Anserini +test886 Q0 14181023 4 10.347412 Anserini +test886 Q0 18569125 5 10.142451 Anserini +test886 Q0 18131928 6 10.077883 Anserini +test886 Q0 6836527 7 10.070439 Anserini +test886 Q0 6319497 8 10.030703 Anserini +test886 Q0 8153595 9 10.019770 Anserini +test886 Q0 15569793 10 9.970686 Anserini +test886 Q0 20487813 11 9.934882 Anserini +test886 Q0 5245641 12 9.933190 Anserini +test886 Q0 8062683 13 9.885955 Anserini +test886 Q0 20078661 14 9.836538 Anserini +test886 Q0 3549301 15 9.824068 Anserini +test886 Q0 7712134 16 9.810422 Anserini +test886 Q0 19193476 17 9.810422 Anserini +test886 Q0 20480953 18 9.714783 Anserini +test886 Q0 19766820 19 9.696191 Anserini +test886 Q0 6839112 20 9.683358 Anserini +test886 Q0 10961728 21 9.683358 Anserini +test886 Q0 16423635 22 9.671789 Anserini +test886 Q0 2166679 23 9.580388 Anserini +test886 Q0 17746560 24 9.568194 Anserini +test886 Q0 814575 25 9.556732 Anserini +test886 Q0 17354070 26 9.556302 Anserini +test886 Q0 19785451 27 9.512143 Anserini +test886 Q0 18954807 28 9.510234 Anserini +test886 Q0 13154568 29 9.475796 Anserini +test886 Q0 11238375 30 9.439673 Anserini +test887 Q0 20515401 1 14.300824 Anserini +test887 Q0 18295148 2 11.993827 Anserini +test887 Q0 20515400 3 11.667172 Anserini +test887 Q0 15419407 4 11.117390 Anserini +test887 Q0 20392427 5 10.731283 Anserini +test887 Q0 19828864 6 10.652009 Anserini +test887 Q0 10197407 7 10.582908 Anserini +test887 Q0 16810177 8 10.582779 Anserini +test887 Q0 9977768 9 10.538338 Anserini +test887 Q0 18096849 10 10.403307 Anserini +test887 Q0 7348363 11 10.372412 Anserini +test887 Q0 20122964 12 10.293233 Anserini +test887 Q0 17948886 13 10.216267 Anserini +test887 Q0 20515024 14 10.164188 Anserini +test887 Q0 15856180 15 10.160620 Anserini +test887 Q0 8991187 16 10.154832 Anserini +test887 Q0 3706070 17 10.150968 Anserini +test887 Q0 9086898 18 10.145070 Anserini +test887 Q0 4806158 19 10.106249 Anserini +test887 Q0 15813285 20 10.090590 Anserini +test887 Q0 16314291 21 10.008694 Anserini +test887 Q0 15616797 22 10.006342 Anserini +test887 Q0 19731955 23 10.005361 Anserini +test887 Q0 20515398 24 9.922994 Anserini +test887 Q0 20515399 25 9.919186 Anserini +test887 Q0 4360322 26 9.901130 Anserini +test887 Q0 10197409 27 9.891029 Anserini +test887 Q0 15847106 28 9.830253 Anserini +test887 Q0 8849661 29 9.810016 Anserini +test887 Q0 19828863 30 9.775759 Anserini +test888 Q0 6527858 1 12.040547 Anserini +test888 Q0 7801945 2 11.563414 Anserini +test888 Q0 7801946 3 11.563414 Anserini +test888 Q0 15198066 4 11.558643 Anserini +test888 Q0 14856187 5 11.376794 Anserini +test888 Q0 11129451 6 11.210609 Anserini +test888 Q0 12980212 7 11.204064 Anserini +test888 Q0 8670940 8 11.146448 Anserini +test888 Q0 15198064 9 11.137264 Anserini +test888 Q0 8670947 10 11.115628 Anserini +test888 Q0 3941521 11 11.109802 Anserini +test888 Q0 14856184 12 11.033514 Anserini +test888 Q0 286967 13 10.940403 Anserini +test888 Q0 11202096 14 10.843060 Anserini +test888 Q0 326783 15 10.824901 Anserini +test888 Q0 11057347 16 10.784260 Anserini +test888 Q0 14856192 17 10.685838 Anserini +test888 Q0 6445258 18 10.615212 Anserini +test888 Q0 8670952 19 10.530956 Anserini +test888 Q0 14856176 20 10.525531 Anserini +test888 Q0 11129668 21 10.522836 Anserini +test888 Q0 14562925 22 10.406196 Anserini +test888 Q0 8670939 23 10.336618 Anserini +test888 Q0 11127983 24 10.331409 Anserini +test888 Q0 11127981 25 10.331409 Anserini +test888 Q0 17580441 26 10.189325 Anserini +test888 Q0 8670979 27 10.171969 Anserini +test888 Q0 2505851 28 10.159429 Anserini +test888 Q0 13700648 29 10.149386 Anserini +test888 Q0 2048246 30 10.098425 Anserini +test889 Q0 332570 1 14.124061 Anserini +test889 Q0 3801515 2 12.224531 Anserini +test889 Q0 12333935 3 11.227836 Anserini +test889 Q0 18267069 4 11.082605 Anserini +test889 Q0 14990536 5 10.755380 Anserini +test889 Q0 4433536 6 10.741290 Anserini +test889 Q0 3299882 7 10.578979 Anserini +test889 Q0 14080223 8 10.549085 Anserini +test889 Q0 8274249 9 10.522984 Anserini +test889 Q0 7344969 10 10.510552 Anserini +test889 Q0 4593281 11 10.490392 Anserini +test889 Q0 7344970 12 10.447697 Anserini +test889 Q0 2661927 13 10.440908 Anserini +test889 Q0 18990666 14 10.381023 Anserini +test889 Q0 15345381 15 10.358074 Anserini +test889 Q0 9122067 16 10.336078 Anserini +test889 Q0 1764924 17 10.281114 Anserini +test889 Q0 16378334 18 10.264464 Anserini +test889 Q0 15099655 19 10.253707 Anserini +test889 Q0 17402916 20 10.248572 Anserini +test889 Q0 15473490 21 10.215162 Anserini +test889 Q0 16535001 22 10.213810 Anserini +test889 Q0 13597629 23 10.213190 Anserini +test889 Q0 332565 24 10.196072 Anserini +test889 Q0 332584 25 10.196072 Anserini +test889 Q0 2460787 26 10.150083 Anserini +test889 Q0 21008627 27 9.995039 Anserini +test889 Q0 18912417 28 9.937715 Anserini +test889 Q0 620298 29 9.923517 Anserini +test889 Q0 11509562 30 9.888343 Anserini +test89 Q0 10798170 1 10.470615 Anserini +test89 Q0 12988635 2 10.386834 Anserini +test89 Q0 3781840 3 10.319552 Anserini +test89 Q0 18766992 4 10.109327 Anserini +test89 Q0 2668178 5 10.041217 Anserini +test89 Q0 3560726 6 9.638320 Anserini +test89 Q0 12405743 7 9.611658 Anserini +test89 Q0 6390458 8 9.535509 Anserini +test89 Q0 10366025 9 9.373948 Anserini +test89 Q0 11154085 10 9.350059 Anserini +test89 Q0 18080667 11 9.310993 Anserini +test89 Q0 10583065 12 9.310217 Anserini +test89 Q0 7717255 13 9.268052 Anserini +test89 Q0 18650119 14 9.230254 Anserini +test89 Q0 11132288 15 9.165415 Anserini +test89 Q0 11290346 16 9.157749 Anserini +test89 Q0 7076907 17 9.114127 Anserini +test89 Q0 18852255 18 9.000525 Anserini +test89 Q0 13954576 19 8.996086 Anserini +test89 Q0 12734980 20 8.990836 Anserini +test89 Q0 867450 21 8.934686 Anserini +test89 Q0 13954579 22 8.905995 Anserini +test89 Q0 14251908 23 8.899638 Anserini +test89 Q0 11956766 24 8.859495 Anserini +test89 Q0 12213703 25 8.856586 Anserini +test89 Q0 14471058 26 8.854425 Anserini +test89 Q0 10637239 27 8.850933 Anserini +test89 Q0 14285532 28 8.847873 Anserini +test89 Q0 12025194 29 8.792509 Anserini +test89 Q0 10794448 30 8.787457 Anserini +test890 Q0 4669924 1 15.593528 Anserini +test890 Q0 16862484 2 15.329968 Anserini +test890 Q0 19096809 3 15.227541 Anserini +test890 Q0 6632716 4 15.121872 Anserini +test890 Q0 15489298 5 15.094626 Anserini +test890 Q0 19096830 6 15.004964 Anserini +test890 Q0 15489299 7 14.803792 Anserini +test890 Q0 19096810 8 14.644200 Anserini +test890 Q0 16840967 9 14.616868 Anserini +test890 Q0 16840969 10 14.608914 Anserini +test890 Q0 15235057 11 14.519843 Anserini +test890 Q0 18415630 12 14.413471 Anserini +test890 Q0 16730158 13 14.357486 Anserini +test890 Q0 19096803 14 14.341322 Anserini +test890 Q0 15235054 15 14.038708 Anserini +test890 Q0 13212344 16 13.975677 Anserini +test890 Q0 20986725 17 13.879043 Anserini +test890 Q0 20168758 18 13.850092 Anserini +test890 Q0 9914437 19 13.695010 Anserini +test890 Q0 19096808 20 13.593260 Anserini +test890 Q0 20088467 21 13.593260 Anserini +test890 Q0 13212352 22 13.395937 Anserini +test890 Q0 7397899 23 13.273064 Anserini +test890 Q0 8928832 24 13.223291 Anserini +test890 Q0 18571411 25 13.137629 Anserini +test890 Q0 8928860 26 13.136684 Anserini +test890 Q0 19096826 27 13.053006 Anserini +test890 Q0 2908884 28 13.016861 Anserini +test890 Q0 15489303 29 12.889629 Anserini +test890 Q0 18476057 30 12.887156 Anserini +test891 Q0 566029 1 11.383049 Anserini +test891 Q0 14671241 2 10.830376 Anserini +test891 Q0 11091661 3 9.928909 Anserini +test891 Q0 8647084 4 9.841676 Anserini +test891 Q0 16458419 5 9.806118 Anserini +test891 Q0 6543559 6 9.700239 Anserini +test891 Q0 5820569 7 9.619278 Anserini +test891 Q0 4312380 8 9.488974 Anserini +test891 Q0 3028560 9 9.365961 Anserini +test891 Q0 7575044 10 9.265062 Anserini +test891 Q0 7575037 11 9.228751 Anserini +test891 Q0 8647080 12 9.201753 Anserini +test891 Q0 9475738 13 9.162079 Anserini +test891 Q0 12527431 14 9.084221 Anserini +test891 Q0 11294705 15 9.079381 Anserini +test891 Q0 5136870 16 9.079381 Anserini +test891 Q0 7831713 17 9.079381 Anserini +test891 Q0 566025 18 9.034345 Anserini +test891 Q0 4419397 19 9.033213 Anserini +test891 Q0 18990989 20 9.019481 Anserini +test891 Q0 5722147 21 8.960469 Anserini +test891 Q0 17488161 22 8.888593 Anserini +test891 Q0 15056034 23 8.865454 Anserini +test891 Q0 8868253 24 8.865454 Anserini +test891 Q0 566044 25 8.849684 Anserini +test891 Q0 8868252 26 8.821943 Anserini +test891 Q0 8868255 27 8.786309 Anserini +test891 Q0 19630952 28 8.759289 Anserini +test891 Q0 15947760 29 8.755545 Anserini +test891 Q0 7508994 30 8.748719 Anserini +test892 Q0 7856656 1 14.032843 Anserini +test892 Q0 3910165 2 13.800485 Anserini +test892 Q0 16935539 3 13.448313 Anserini +test892 Q0 9080362 4 13.067636 Anserini +test892 Q0 18782632 5 12.952409 Anserini +test892 Q0 6579516 6 12.811364 Anserini +test892 Q0 7829398 7 12.630392 Anserini +test892 Q0 7829410 8 12.630392 Anserini +test892 Q0 6896017 9 12.615739 Anserini +test892 Q0 4717072 10 12.615739 Anserini +test892 Q0 1267699 11 12.525565 Anserini +test892 Q0 16175533 12 12.436836 Anserini +test892 Q0 6896074 13 12.181114 Anserini +test892 Q0 11429886 14 12.165373 Anserini +test892 Q0 20516325 15 12.141747 Anserini +test892 Q0 20516326 16 12.141747 Anserini +test892 Q0 10008621 17 12.095263 Anserini +test892 Q0 13492347 18 12.014591 Anserini +test892 Q0 11429885 19 11.939924 Anserini +test892 Q0 339894 20 11.938571 Anserini +test892 Q0 658976 21 11.912830 Anserini +test892 Q0 10008640 22 11.885675 Anserini +test892 Q0 3910189 23 11.857992 Anserini +test892 Q0 607131 24 11.826709 Anserini +test892 Q0 3910160 25 11.794645 Anserini +test892 Q0 15550398 26 11.724443 Anserini +test892 Q0 16935543 27 11.717239 Anserini +test892 Q0 597326 28 11.606153 Anserini +test892 Q0 6579517 29 11.475949 Anserini +test892 Q0 12184283 30 11.384195 Anserini +test893 Q0 13142808 1 19.326342 Anserini +test893 Q0 16709532 2 17.795258 Anserini +test893 Q0 8376735 3 17.723686 Anserini +test893 Q0 16709551 4 17.257521 Anserini +test893 Q0 8376764 5 17.234694 Anserini +test893 Q0 17008999 6 16.872108 Anserini +test893 Q0 8376768 7 16.739094 Anserini +test893 Q0 17009006 8 16.680096 Anserini +test893 Q0 18192192 9 16.540207 Anserini +test893 Q0 13087637 10 16.311192 Anserini +test893 Q0 13142827 11 16.121656 Anserini +test893 Q0 8376762 12 16.121656 Anserini +test893 Q0 8376754 13 15.863667 Anserini +test893 Q0 13142821 14 15.827214 Anserini +test893 Q0 10212693 15 15.701122 Anserini +test893 Q0 10212683 16 15.667465 Anserini +test893 Q0 8376757 17 15.564655 Anserini +test893 Q0 10212703 18 15.520590 Anserini +test893 Q0 12633912 19 15.453421 Anserini +test893 Q0 8376750 20 15.371315 Anserini +test893 Q0 12633901 21 15.286287 Anserini +test893 Q0 17009001 22 15.082038 Anserini +test893 Q0 13142810 23 15.070249 Anserini +test893 Q0 11379524 24 14.960829 Anserini +test893 Q0 9198597 25 14.957012 Anserini +test893 Q0 14674194 26 14.866742 Anserini +test893 Q0 14674214 27 14.866742 Anserini +test893 Q0 13142826 28 14.731317 Anserini +test893 Q0 12973942 29 14.638149 Anserini +test893 Q0 10212702 30 14.613915 Anserini +test894 Q0 17979391 1 12.693202 Anserini +test894 Q0 17244826 2 12.579390 Anserini +test894 Q0 3139363 3 12.404252 Anserini +test894 Q0 5401272 4 12.248091 Anserini +test894 Q0 428804 5 12.022101 Anserini +test894 Q0 13218482 6 12.011240 Anserini +test894 Q0 19066553 7 11.985335 Anserini +test894 Q0 15071105 8 11.983145 Anserini +test894 Q0 16872696 9 11.913703 Anserini +test894 Q0 17670629 10 11.900683 Anserini +test894 Q0 12952447 11 11.832860 Anserini +test894 Q0 10365904 12 11.776172 Anserini +test894 Q0 428913 13 11.756135 Anserini +test894 Q0 1294598 14 11.756135 Anserini +test894 Q0 2100026 15 11.752888 Anserini +test894 Q0 6999537 16 11.744851 Anserini +test894 Q0 12952463 17 11.714087 Anserini +test894 Q0 3168908 18 11.703626 Anserini +test894 Q0 3168907 19 11.628538 Anserini +test894 Q0 1424907 20 11.568215 Anserini +test894 Q0 4539970 21 11.512995 Anserini +test894 Q0 2031612 22 11.409896 Anserini +test894 Q0 6999514 23 11.409896 Anserini +test894 Q0 633563 24 11.394304 Anserini +test894 Q0 12482641 25 11.394304 Anserini +test894 Q0 2450063 26 11.394304 Anserini +test894 Q0 3641137 27 11.372665 Anserini +test894 Q0 17872118 28 11.322193 Anserini +test894 Q0 16239223 29 11.321728 Anserini +test894 Q0 785697 30 11.319403 Anserini +test895 Q0 9944287 1 12.641585 Anserini +test895 Q0 5240061 2 12.212250 Anserini +test895 Q0 15593360 3 11.774671 Anserini +test895 Q0 10141069 4 11.717587 Anserini +test895 Q0 4759000 5 11.051200 Anserini +test895 Q0 19115738 6 10.803349 Anserini +test895 Q0 15096840 7 10.800600 Anserini +test895 Q0 5128373 8 10.790489 Anserini +test895 Q0 9893558 9 10.700449 Anserini +test895 Q0 6563066 10 10.615243 Anserini +test895 Q0 4057169 11 10.318559 Anserini +test895 Q0 6267761 12 10.154892 Anserini +test895 Q0 7053087 13 9.848089 Anserini +test895 Q0 116387 14 9.809639 Anserini +test895 Q0 12464528 15 9.792681 Anserini +test895 Q0 14752481 16 9.780187 Anserini +test895 Q0 20493843 17 9.776137 Anserini +test895 Q0 1403636 18 9.768856 Anserini +test895 Q0 13409302 19 9.695852 Anserini +test895 Q0 16815633 20 9.641764 Anserini +test895 Q0 12439017 21 9.552030 Anserini +test895 Q0 20012122 22 9.532903 Anserini +test895 Q0 11935060 23 9.532620 Anserini +test895 Q0 112298 24 9.532620 Anserini +test895 Q0 701408 25 9.518921 Anserini +test895 Q0 7798529 26 9.474860 Anserini +test895 Q0 9537352 27 9.468384 Anserini +test895 Q0 6194739 28 9.463990 Anserini +test895 Q0 7831279 29 9.450908 Anserini +test895 Q0 9012905 30 9.428320 Anserini +test896 Q0 12897759 1 16.420055 Anserini +test896 Q0 1811563 2 15.932373 Anserini +test896 Q0 16142138 3 15.868952 Anserini +test896 Q0 17676059 4 15.867889 Anserini +test896 Q0 3543411 5 15.828559 Anserini +test896 Q0 11043368 6 15.799981 Anserini +test896 Q0 16463894 7 15.690818 Anserini +test896 Q0 18586296 8 15.557855 Anserini +test896 Q0 20167374 9 15.510672 Anserini +test896 Q0 3543387 10 15.381596 Anserini +test896 Q0 11043868 11 15.355824 Anserini +test896 Q0 16949850 12 15.328773 Anserini +test896 Q0 1811601 13 15.229527 Anserini +test896 Q0 1811599 14 15.197588 Anserini +test896 Q0 1811609 15 15.165168 Anserini +test896 Q0 1811590 16 15.137596 Anserini +test896 Q0 7446662 17 15.101484 Anserini +test896 Q0 16677114 18 14.981165 Anserini +test896 Q0 1811600 19 14.896142 Anserini +test896 Q0 1811571 20 14.843606 Anserini +test896 Q0 18586287 21 14.738605 Anserini +test896 Q0 5923825 22 14.694471 Anserini +test896 Q0 6321106 23 14.651779 Anserini +test896 Q0 8419382 24 14.585973 Anserini +test896 Q0 3796124 25 14.460313 Anserini +test896 Q0 14699784 26 14.380655 Anserini +test896 Q0 8294622 27 14.355167 Anserini +test896 Q0 10285535 28 14.247021 Anserini +test896 Q0 1701621 29 14.233727 Anserini +test896 Q0 18191438 30 14.172377 Anserini +test897 Q0 15198911 1 23.720924 Anserini +test897 Q0 5456593 2 23.229111 Anserini +test897 Q0 5456596 3 23.124866 Anserini +test897 Q0 15198888 4 23.085983 Anserini +test897 Q0 5456573 5 21.405628 Anserini +test897 Q0 5456571 6 21.382658 Anserini +test897 Q0 15198903 7 21.025427 Anserini +test897 Q0 15198901 8 20.289639 Anserini +test897 Q0 15198910 9 19.856960 Anserini +test897 Q0 4109802 10 19.417004 Anserini +test897 Q0 5456586 11 18.965960 Anserini +test897 Q0 15198897 12 18.601265 Anserini +test897 Q0 5456572 13 18.516001 Anserini +test897 Q0 4755002 14 18.351505 Anserini +test897 Q0 5456589 15 18.335556 Anserini +test897 Q0 5456574 16 17.897045 Anserini +test897 Q0 15198893 17 17.888178 Anserini +test897 Q0 5456576 18 17.875671 Anserini +test897 Q0 15198890 19 17.799297 Anserini +test897 Q0 5456578 20 17.748734 Anserini +test897 Q0 15198898 21 17.637028 Anserini +test897 Q0 5456582 22 17.621908 Anserini +test897 Q0 15198894 23 17.439939 Anserini +test897 Q0 5456575 24 17.281290 Anserini +test897 Q0 5456595 25 17.219679 Anserini +test897 Q0 3201152 26 17.219679 Anserini +test897 Q0 15198892 27 17.040577 Anserini +test897 Q0 5456580 28 16.789249 Anserini +test897 Q0 5456579 29 16.766319 Anserini +test897 Q0 5456577 30 16.326923 Anserini +test898 Q0 19318776 1 17.301918 Anserini +test898 Q0 18159796 2 16.649715 Anserini +test898 Q0 237559 3 15.659251 Anserini +test898 Q0 2702843 4 15.596279 Anserini +test898 Q0 11553333 5 15.345098 Anserini +test898 Q0 18656958 6 15.250840 Anserini +test898 Q0 7093850 7 15.192388 Anserini +test898 Q0 15911712 8 15.050832 Anserini +test898 Q0 18704790 9 14.946937 Anserini +test898 Q0 15911458 10 14.900018 Anserini +test898 Q0 12044162 11 14.821941 Anserini +test898 Q0 7102371 12 14.804749 Anserini +test898 Q0 16040174 13 14.654983 Anserini +test898 Q0 18696176 14 14.634988 Anserini +test898 Q0 6899579 15 14.518609 Anserini +test898 Q0 12459923 16 14.486837 Anserini +test898 Q0 8627562 17 14.285180 Anserini +test898 Q0 11657377 18 14.226794 Anserini +test898 Q0 9752162 19 14.136559 Anserini +test898 Q0 19628747 20 14.070839 Anserini +test898 Q0 6696175 21 14.049072 Anserini +test898 Q0 17275328 22 14.012564 Anserini +test898 Q0 2681124 23 13.996955 Anserini +test898 Q0 17009479 24 13.992356 Anserini +test898 Q0 18702893 25 13.980133 Anserini +test898 Q0 16244882 26 13.975558 Anserini +test898 Q0 16240308 27 13.964478 Anserini +test898 Q0 10529656 28 13.938075 Anserini +test898 Q0 17862268 29 13.927580 Anserini +test898 Q0 18159810 30 13.921385 Anserini +test899 Q0 13081025 1 18.327835 Anserini +test899 Q0 1271508 2 16.558155 Anserini +test899 Q0 16662635 3 16.437468 Anserini +test899 Q0 382977 4 16.379570 Anserini +test899 Q0 16662634 5 16.374716 Anserini +test899 Q0 1271542 6 16.373463 Anserini +test899 Q0 16662637 7 16.313940 Anserini +test899 Q0 382982 8 16.134911 Anserini +test899 Q0 13652669 9 16.005627 Anserini +test899 Q0 13081036 10 15.933415 Anserini +test899 Q0 13017586 11 15.847466 Anserini +test899 Q0 383010 12 15.693633 Anserini +test899 Q0 13017596 13 15.584238 Anserini +test899 Q0 1271511 14 15.560160 Anserini +test899 Q0 383004 15 15.304841 Anserini +test899 Q0 382975 16 14.884949 Anserini +test899 Q0 13652670 17 14.884949 Anserini +test899 Q0 382980 18 14.769176 Anserini +test899 Q0 16662636 19 14.750690 Anserini +test899 Q0 1271507 20 14.612046 Anserini +test899 Q0 16662665 21 14.563801 Anserini +test899 Q0 1271527 22 14.483765 Anserini +test899 Q0 382978 23 14.375278 Anserini +test899 Q0 1271575 24 14.329948 Anserini +test899 Q0 1271551 25 14.324122 Anserini +test899 Q0 383005 26 14.231148 Anserini +test899 Q0 382992 27 14.133883 Anserini +test899 Q0 16662640 28 14.133883 Anserini +test899 Q0 382996 29 13.938016 Anserini +test899 Q0 1271549 30 13.733526 Anserini +test9 Q0 20346146 1 19.209753 Anserini +test9 Q0 16694128 2 19.110157 Anserini +test9 Q0 1774460 3 19.016687 Anserini +test9 Q0 1774461 4 18.917946 Anserini +test9 Q0 1774452 5 18.501480 Anserini +test9 Q0 20970903 6 18.138288 Anserini +test9 Q0 20927913 7 17.388327 Anserini +test9 Q0 16694127 8 17.291214 Anserini +test9 Q0 17471336 9 17.099178 Anserini +test9 Q0 11956422 10 17.058138 Anserini +test9 Q0 2873151 11 16.843023 Anserini +test9 Q0 19187664 12 16.800838 Anserini +test9 Q0 19632144 13 16.754108 Anserini +test9 Q0 19632146 14 16.707827 Anserini +test9 Q0 7452958 15 16.689369 Anserini +test9 Q0 3022230 16 16.527836 Anserini +test9 Q0 7120842 17 16.367512 Anserini +test9 Q0 17379405 18 16.339582 Anserini +test9 Q0 19632145 19 16.233873 Anserini +test9 Q0 2945684 20 16.158262 Anserini +test9 Q0 16517052 21 16.150023 Anserini +test9 Q0 14665438 22 16.127928 Anserini +test9 Q0 1774458 23 16.123730 Anserini +test9 Q0 10615502 24 16.117035 Anserini +test9 Q0 1774451 25 16.093189 Anserini +test9 Q0 11950644 26 16.090916 Anserini +test9 Q0 1774449 27 16.062090 Anserini +test9 Q0 20267640 28 16.060495 Anserini +test9 Q0 21011623 29 16.038633 Anserini +test9 Q0 20362633 30 16.008345 Anserini +test90 Q0 12368803 1 21.499922 Anserini +test90 Q0 12326376 2 20.535614 Anserini +test90 Q0 12326325 3 20.007233 Anserini +test90 Q0 12326346 4 19.919310 Anserini +test90 Q0 12326378 5 19.915401 Anserini +test90 Q0 12326375 6 19.285461 Anserini +test90 Q0 13834509 7 19.057772 Anserini +test90 Q0 12326377 8 18.987806 Anserini +test90 Q0 591536 9 18.632360 Anserini +test90 Q0 5725188 10 18.530357 Anserini +test90 Q0 547927 11 18.349392 Anserini +test90 Q0 2083326 12 18.349392 Anserini +test90 Q0 3160363 13 17.972103 Anserini +test90 Q0 12326371 14 17.840912 Anserini +test90 Q0 12326356 15 17.840912 Anserini +test90 Q0 1975916 16 17.731367 Anserini +test90 Q0 9017492 17 17.664656 Anserini +test90 Q0 16359278 18 17.484467 Anserini +test90 Q0 12326331 19 17.320866 Anserini +test90 Q0 1413945 20 17.289873 Anserini +test90 Q0 16409996 21 17.284925 Anserini +test90 Q0 5621453 22 17.141590 Anserini +test90 Q0 12326347 23 17.110411 Anserini +test90 Q0 1884033 24 16.994612 Anserini +test90 Q0 10582201 25 16.967869 Anserini +test90 Q0 10582210 26 16.967869 Anserini +test90 Q0 12326363 27 16.955006 Anserini +test90 Q0 13806156 28 16.872410 Anserini +test90 Q0 5725190 29 16.770929 Anserini +test90 Q0 3160317 30 16.653330 Anserini +test900 Q0 17192450 1 17.269476 Anserini +test900 Q0 17192432 2 14.478439 Anserini +test900 Q0 17192446 3 14.336595 Anserini +test900 Q0 20489452 4 13.966120 Anserini +test900 Q0 20489459 5 13.890557 Anserini +test900 Q0 17192445 6 13.132306 Anserini +test900 Q0 10753666 7 13.067071 Anserini +test900 Q0 17192444 8 13.046481 Anserini +test900 Q0 17192433 9 13.046481 Anserini +test900 Q0 17192436 10 12.608252 Anserini +test900 Q0 20596092 11 12.499690 Anserini +test900 Q0 17163091 12 12.283129 Anserini +test900 Q0 6428087 13 12.152474 Anserini +test900 Q0 14305296 14 12.147925 Anserini +test900 Q0 17192442 15 11.973418 Anserini +test900 Q0 19872787 16 11.973418 Anserini +test900 Q0 20843215 17 11.954286 Anserini +test900 Q0 20135804 18 11.847375 Anserini +test900 Q0 8330467 19 11.817909 Anserini +test900 Q0 8330470 20 11.709319 Anserini +test900 Q0 17192439 21 11.589950 Anserini +test900 Q0 17248679 22 11.565585 Anserini +test900 Q0 11127055 23 11.510179 Anserini +test900 Q0 20443457 24 11.486763 Anserini +test900 Q0 18545315 25 11.441593 Anserini +test900 Q0 18545328 26 11.441593 Anserini +test900 Q0 10320846 27 11.413761 Anserini +test900 Q0 20679136 28 11.231183 Anserini +test900 Q0 17192438 29 11.207762 Anserini +test900 Q0 17404370 30 11.087240 Anserini +test901 Q0 7099568 1 12.242963 Anserini +test901 Q0 10587992 2 12.066294 Anserini +test901 Q0 60063 3 11.685497 Anserini +test901 Q0 844699 4 11.520027 Anserini +test901 Q0 13526892 5 11.508288 Anserini +test901 Q0 20554227 6 11.459383 Anserini +test901 Q0 7099559 7 11.413508 Anserini +test901 Q0 3123740 8 11.283069 Anserini +test901 Q0 10905918 9 11.272726 Anserini +test901 Q0 11368994 10 11.229058 Anserini +test901 Q0 11566880 11 11.191597 Anserini +test901 Q0 2669940 12 11.077692 Anserini +test901 Q0 3325027 13 11.052776 Anserini +test901 Q0 6369938 14 11.016145 Anserini +test901 Q0 604247 15 11.003302 Anserini +test901 Q0 20554225 16 10.937876 Anserini +test901 Q0 289394 17 10.921505 Anserini +test901 Q0 586849 18 10.896174 Anserini +test901 Q0 7672434 19 10.849958 Anserini +test901 Q0 11968462 20 10.833988 Anserini +test901 Q0 12209927 21 10.809259 Anserini +test901 Q0 10427178 22 10.804482 Anserini +test901 Q0 7618105 23 10.792154 Anserini +test901 Q0 689186 24 10.789928 Anserini +test901 Q0 17520748 25 10.770420 Anserini +test901 Q0 5308987 26 10.720071 Anserini +test901 Q0 17143406 27 10.710662 Anserini +test901 Q0 3802013 28 10.669073 Anserini +test901 Q0 2241485 29 10.662922 Anserini +test901 Q0 14565799 30 10.647650 Anserini +test902 Q0 4243483 1 14.908080 Anserini +test902 Q0 16989732 2 14.817149 Anserini +test902 Q0 16989734 3 14.480284 Anserini +test902 Q0 1285842 4 14.447659 Anserini +test902 Q0 1285828 5 14.447659 Anserini +test902 Q0 77682 6 14.174906 Anserini +test902 Q0 20749052 7 14.141562 Anserini +test902 Q0 9439665 8 14.075936 Anserini +test902 Q0 9439707 9 13.929600 Anserini +test902 Q0 14023571 10 13.801283 Anserini +test902 Q0 9439642 11 13.707708 Anserini +test902 Q0 9439654 12 13.707501 Anserini +test902 Q0 14019266 13 13.603231 Anserini +test902 Q0 8095290 14 13.417520 Anserini +test902 Q0 4243484 15 13.417520 Anserini +test902 Q0 6601385 16 13.269932 Anserini +test902 Q0 6601393 17 13.169829 Anserini +test902 Q0 9264747 18 13.125093 Anserini +test902 Q0 9439666 19 13.005485 Anserini +test902 Q0 11512569 20 12.950249 Anserini +test902 Q0 16668310 21 12.903931 Anserini +test902 Q0 16167177 22 12.882416 Anserini +test902 Q0 8095285 23 12.866116 Anserini +test902 Q0 12733688 24 12.842077 Anserini +test902 Q0 148082 25 12.840749 Anserini +test902 Q0 1559200 26 12.840749 Anserini +test902 Q0 20732383 27 12.790965 Anserini +test902 Q0 148083 28 12.712832 Anserini +test902 Q0 2520166 29 12.675486 Anserini +test902 Q0 9439699 30 12.626618 Anserini +test903 Q0 14917212 1 22.599659 Anserini +test903 Q0 16913830 2 22.588409 Anserini +test903 Q0 470657 3 22.350883 Anserini +test903 Q0 4436379 4 21.819363 Anserini +test903 Q0 4436339 5 21.416298 Anserini +test903 Q0 8095708 6 21.036060 Anserini +test903 Q0 20428020 7 20.793203 Anserini +test903 Q0 16913832 8 20.771994 Anserini +test903 Q0 10902981 9 20.665058 Anserini +test903 Q0 4436381 10 20.262203 Anserini +test903 Q0 20428019 11 20.206724 Anserini +test903 Q0 10902988 12 20.067730 Anserini +test903 Q0 470656 13 19.922375 Anserini +test903 Q0 470658 14 19.874847 Anserini +test903 Q0 4436366 15 19.774372 Anserini +test903 Q0 10902984 16 19.658306 Anserini +test903 Q0 9324155 17 19.556370 Anserini +test903 Q0 470668 18 19.531122 Anserini +test903 Q0 4436376 19 19.091040 Anserini +test903 Q0 20123434 20 18.864708 Anserini +test903 Q0 4436380 21 18.864103 Anserini +test903 Q0 10902982 22 18.746008 Anserini +test903 Q0 16423051 23 18.742786 Anserini +test903 Q0 470661 24 18.742020 Anserini +test903 Q0 10902987 25 18.736750 Anserini +test903 Q0 10902983 26 18.670652 Anserini +test903 Q0 470669 27 18.647398 Anserini +test903 Q0 4436336 28 18.596615 Anserini +test903 Q0 1354046 29 18.563740 Anserini +test903 Q0 4436363 30 18.540941 Anserini +test904 Q0 4179200 1 21.341274 Anserini +test904 Q0 1730016 2 20.716026 Anserini +test904 Q0 5812211 3 20.156265 Anserini +test904 Q0 2185444 4 20.002975 Anserini +test904 Q0 2185447 5 19.810339 Anserini +test904 Q0 684378 6 19.642229 Anserini +test904 Q0 12090257 7 19.553205 Anserini +test904 Q0 10256898 8 19.222088 Anserini +test904 Q0 7464046 9 19.176382 Anserini +test904 Q0 3002801 10 19.158955 Anserini +test904 Q0 2185443 11 19.145437 Anserini +test904 Q0 3002800 12 19.109358 Anserini +test904 Q0 2185448 13 19.070894 Anserini +test904 Q0 684381 14 18.999329 Anserini +test904 Q0 6377070 15 18.979753 Anserini +test904 Q0 684380 16 18.907867 Anserini +test904 Q0 2796254 17 18.895939 Anserini +test904 Q0 690247 18 18.865595 Anserini +test904 Q0 2185450 19 18.655872 Anserini +test904 Q0 2185440 20 18.655872 Anserini +test904 Q0 3330928 21 18.627806 Anserini +test904 Q0 7464040 22 18.564873 Anserini +test904 Q0 3044762 23 18.492569 Anserini +test904 Q0 2641424 24 18.390829 Anserini +test904 Q0 690246 25 18.258116 Anserini +test904 Q0 1694261 26 18.153944 Anserini +test904 Q0 1730015 27 18.112642 Anserini +test904 Q0 8486665 28 18.058113 Anserini +test904 Q0 2185446 29 17.966682 Anserini +test904 Q0 684379 30 17.917774 Anserini +test905 Q0 15822288 1 17.347696 Anserini +test905 Q0 15822282 2 17.169439 Anserini +test905 Q0 15992591 3 16.926939 Anserini +test905 Q0 15992590 4 16.658676 Anserini +test905 Q0 15822286 5 16.174585 Anserini +test905 Q0 15992589 6 15.691137 Anserini +test905 Q0 15822289 7 15.650496 Anserini +test905 Q0 15822262 8 15.330245 Anserini +test905 Q0 16129031 9 15.246201 Anserini +test905 Q0 16129032 10 14.592260 Anserini +test905 Q0 15628544 11 14.221379 Anserini +test905 Q0 15822284 12 14.180279 Anserini +test905 Q0 19296208 13 14.155976 Anserini +test905 Q0 15631579 14 13.811895 Anserini +test905 Q0 16076179 15 13.796999 Anserini +test905 Q0 15444172 16 13.770392 Anserini +test905 Q0 16003269 17 13.651833 Anserini +test905 Q0 15607978 18 13.482175 Anserini +test905 Q0 16129029 19 13.427691 Anserini +test905 Q0 16463457 20 13.380433 Anserini +test905 Q0 15992594 21 13.339546 Anserini +test905 Q0 15822269 22 13.259028 Anserini +test905 Q0 15992578 23 13.158740 Anserini +test905 Q0 16821943 24 13.133619 Anserini +test905 Q0 5257778 25 13.111331 Anserini +test905 Q0 15822265 26 13.024868 Anserini +test905 Q0 16137350 27 12.834018 Anserini +test905 Q0 12416326 28 12.761681 Anserini +test905 Q0 19667048 29 12.754820 Anserini +test905 Q0 3584762 30 12.656667 Anserini +test906 Q0 1465987 1 22.023401 Anserini +test906 Q0 16801441 2 21.813889 Anserini +test906 Q0 1465985 3 20.345514 Anserini +test906 Q0 13989728 4 20.246941 Anserini +test906 Q0 4920807 5 19.288012 Anserini +test906 Q0 7284711 6 18.935369 Anserini +test906 Q0 7284713 7 18.818512 Anserini +test906 Q0 9764383 8 18.762768 Anserini +test906 Q0 17275830 9 18.624687 Anserini +test906 Q0 13989730 10 18.507805 Anserini +test906 Q0 16801439 11 18.447775 Anserini +test906 Q0 7485141 12 18.167931 Anserini +test906 Q0 16999475 13 18.167931 Anserini +test906 Q0 1465981 14 18.052624 Anserini +test906 Q0 1465986 15 18.052624 Anserini +test906 Q0 19275599 16 17.849535 Anserini +test906 Q0 13989729 17 17.820169 Anserini +test906 Q0 1465968 18 17.713877 Anserini +test906 Q0 1465972 19 17.710224 Anserini +test906 Q0 20694833 20 17.592037 Anserini +test906 Q0 1465965 21 17.444586 Anserini +test906 Q0 18984085 22 17.384531 Anserini +test906 Q0 20323316 23 17.351032 Anserini +test906 Q0 18378726 24 16.978247 Anserini +test906 Q0 14303997 25 16.802914 Anserini +test906 Q0 18794058 26 16.790295 Anserini +test906 Q0 7079533 27 16.427292 Anserini +test906 Q0 6835177 28 16.403498 Anserini +test906 Q0 1465969 29 16.391993 Anserini +test906 Q0 12900321 30 16.355083 Anserini +test907 Q0 6713809 1 17.111473 Anserini +test907 Q0 13002271 2 15.659026 Anserini +test907 Q0 13002243 3 15.659026 Anserini +test907 Q0 17990392 4 14.687251 Anserini +test907 Q0 7662324 5 14.625512 Anserini +test907 Q0 8241205 6 14.535985 Anserini +test907 Q0 6713813 7 14.451279 Anserini +test907 Q0 13455878 8 14.422071 Anserini +test907 Q0 13455875 9 14.391290 Anserini +test907 Q0 12808739 10 14.314259 Anserini +test907 Q0 4595486 11 14.098578 Anserini +test907 Q0 6713812 12 14.005648 Anserini +test907 Q0 5291247 13 13.952689 Anserini +test907 Q0 4408701 14 13.935011 Anserini +test907 Q0 2512553 15 13.911849 Anserini +test907 Q0 12383025 16 13.878603 Anserini +test907 Q0 12989538 17 13.878603 Anserini +test907 Q0 5291241 18 13.874619 Anserini +test907 Q0 17845283 19 13.785734 Anserini +test907 Q0 13455882 20 13.763799 Anserini +test907 Q0 4432244 21 13.700473 Anserini +test907 Q0 8628423 22 13.678722 Anserini +test907 Q0 6713816 23 13.673159 Anserini +test907 Q0 17458687 24 13.637645 Anserini +test907 Q0 4432250 25 13.595893 Anserini +test907 Q0 4432236 26 13.508179 Anserini +test907 Q0 1918678 27 13.489684 Anserini +test907 Q0 7986086 28 13.386670 Anserini +test907 Q0 4432247 29 13.382612 Anserini +test907 Q0 7564790 30 13.380913 Anserini +test908 Q0 3305312 1 22.012991 Anserini +test908 Q0 3305391 2 21.908352 Anserini +test908 Q0 9948355 3 21.207062 Anserini +test908 Q0 9541055 4 20.440918 Anserini +test908 Q0 3305385 5 20.243570 Anserini +test908 Q0 4779822 6 20.229088 Anserini +test908 Q0 3305315 7 19.870977 Anserini +test908 Q0 835051 8 19.724997 Anserini +test908 Q0 9948358 9 19.629341 Anserini +test908 Q0 9541054 10 19.491253 Anserini +test908 Q0 42960 11 19.273857 Anserini +test908 Q0 9638432 12 19.220898 Anserini +test908 Q0 16703402 13 19.202677 Anserini +test908 Q0 11983979 14 19.009254 Anserini +test908 Q0 3305337 15 18.978313 Anserini +test908 Q0 14421673 16 18.759523 Anserini +test908 Q0 9541099 17 18.352877 Anserini +test908 Q0 835082 18 18.313383 Anserini +test908 Q0 835052 19 18.178003 Anserini +test908 Q0 3305323 20 18.124685 Anserini +test908 Q0 3305370 21 17.976400 Anserini +test908 Q0 9541080 22 17.948320 Anserini +test908 Q0 2091192 23 17.809048 Anserini +test908 Q0 3305371 24 17.801737 Anserini +test908 Q0 8002178 25 17.657284 Anserini +test908 Q0 16065458 26 17.651106 Anserini +test908 Q0 8975771 27 17.638863 Anserini +test908 Q0 3305340 28 17.536901 Anserini +test908 Q0 9898180 29 17.492842 Anserini +test908 Q0 15256908 30 17.492842 Anserini +test909 Q0 16633013 1 18.068892 Anserini +test909 Q0 890835 2 16.848490 Anserini +test909 Q0 3129545 3 16.823051 Anserini +test909 Q0 890821 4 16.124557 Anserini +test909 Q0 3129543 5 14.839939 Anserini +test909 Q0 16633010 6 14.746571 Anserini +test909 Q0 3129549 7 14.633209 Anserini +test909 Q0 17124272 8 14.423121 Anserini +test909 Q0 890855 9 14.195749 Anserini +test909 Q0 890823 10 14.183063 Anserini +test909 Q0 19677461 11 14.133489 Anserini +test909 Q0 16633015 12 14.116426 Anserini +test909 Q0 16956249 13 13.967237 Anserini +test909 Q0 16956250 14 13.785973 Anserini +test909 Q0 16633017 15 13.699050 Anserini +test909 Q0 16633011 16 13.583725 Anserini +test909 Q0 18233151 17 13.501766 Anserini +test909 Q0 14803726 18 13.460023 Anserini +test909 Q0 3992044 19 13.445515 Anserini +test909 Q0 9981903 20 13.395065 Anserini +test909 Q0 13142965 21 13.296204 Anserini +test909 Q0 1316173 22 13.279223 Anserini +test909 Q0 16956253 23 13.167174 Anserini +test909 Q0 5244910 24 13.129911 Anserini +test909 Q0 15759612 25 12.943434 Anserini +test909 Q0 890824 26 12.834837 Anserini +test909 Q0 15710519 27 12.517708 Anserini +test909 Q0 17124271 28 12.475658 Anserini +test909 Q0 8359043 29 12.473560 Anserini +test909 Q0 4493488 30 12.452442 Anserini +test91 Q0 9136784 1 9.997572 Anserini +test91 Q0 7055718 2 9.835247 Anserini +test91 Q0 10029071 3 9.718658 Anserini +test91 Q0 16382357 4 9.380268 Anserini +test91 Q0 15569031 5 9.286293 Anserini +test91 Q0 3952312 6 9.166111 Anserini +test91 Q0 1896770 7 9.157087 Anserini +test91 Q0 8346385 8 9.154616 Anserini +test91 Q0 5783634 9 9.012704 Anserini +test91 Q0 6199250 10 9.012704 Anserini +test91 Q0 10642821 11 8.975676 Anserini +test91 Q0 16102320 12 8.866661 Anserini +test91 Q0 7696528 13 8.845402 Anserini +test91 Q0 20551240 14 8.789262 Anserini +test91 Q0 9257535 15 8.772512 Anserini +test91 Q0 9986785 16 8.765408 Anserini +test91 Q0 15750368 17 8.750024 Anserini +test91 Q0 15750369 18 8.750024 Anserini +test91 Q0 14712085 19 8.724586 Anserini +test91 Q0 1387581 20 8.646244 Anserini +test91 Q0 18686759 21 8.621136 Anserini +test91 Q0 8407508 22 8.605962 Anserini +test91 Q0 7452375 23 8.605962 Anserini +test91 Q0 15215514 24 8.605538 Anserini +test91 Q0 6230283 25 8.555470 Anserini +test91 Q0 6230285 26 8.555470 Anserini +test91 Q0 10626782 27 8.542238 Anserini +test91 Q0 13583467 28 8.538666 Anserini +test91 Q0 11043360 29 8.538666 Anserini +test91 Q0 13733326 30 8.520737 Anserini +test910 Q0 9251691 1 12.640446 Anserini +test910 Q0 12870071 2 12.005753 Anserini +test910 Q0 10233487 3 11.665022 Anserini +test910 Q0 14637333 4 11.250978 Anserini +test910 Q0 10241418 5 10.472006 Anserini +test910 Q0 15245637 6 10.362143 Anserini +test910 Q0 14637332 7 10.362143 Anserini +test910 Q0 15272273 8 10.174439 Anserini +test910 Q0 9164930 9 10.174439 Anserini +test910 Q0 15272277 10 10.174439 Anserini +test910 Q0 18126591 11 10.117055 Anserini +test910 Q0 3265669 12 10.083837 Anserini +test910 Q0 20123621 13 10.021076 Anserini +test910 Q0 19346376 14 10.004200 Anserini +test910 Q0 7581600 15 9.994866 Anserini +test910 Q0 4056777 16 9.959023 Anserini +test910 Q0 6854484 17 9.950230 Anserini +test910 Q0 16796156 18 9.893789 Anserini +test910 Q0 1486348 19 9.845540 Anserini +test910 Q0 10241423 20 9.845368 Anserini +test910 Q0 4420213 21 9.839588 Anserini +test910 Q0 17883990 22 9.828103 Anserini +test910 Q0 15272274 23 9.765643 Anserini +test910 Q0 18944256 24 9.750399 Anserini +test910 Q0 20760597 25 9.727175 Anserini +test910 Q0 15780810 26 9.708738 Anserini +test910 Q0 16453773 27 9.690348 Anserini +test910 Q0 16453775 28 9.690348 Anserini +test910 Q0 4501585 29 9.633240 Anserini +test910 Q0 10481484 30 9.613758 Anserini +test911 Q0 20427806 1 17.920439 Anserini +test911 Q0 19103570 2 16.663532 Anserini +test911 Q0 19541893 3 16.663532 Anserini +test911 Q0 20620073 4 16.165707 Anserini +test911 Q0 17754960 5 15.701230 Anserini +test911 Q0 20427802 6 15.540047 Anserini +test911 Q0 20620072 7 15.430826 Anserini +test911 Q0 10922134 8 15.430826 Anserini +test911 Q0 20578306 9 15.386124 Anserini +test911 Q0 17754958 10 15.380499 Anserini +test911 Q0 19103569 11 15.340984 Anserini +test911 Q0 18467362 12 15.291795 Anserini +test911 Q0 18511548 13 15.291795 Anserini +test911 Q0 20952589 14 15.214647 Anserini +test911 Q0 16146200 15 15.186137 Anserini +test911 Q0 911931 16 15.183325 Anserini +test911 Q0 18478222 17 15.182666 Anserini +test911 Q0 18455475 18 15.182666 Anserini +test911 Q0 18467016 19 15.182666 Anserini +test911 Q0 18630331 20 15.182666 Anserini +test911 Q0 17148758 21 15.122012 Anserini +test911 Q0 20764747 22 15.121093 Anserini +test911 Q0 18467017 23 15.066192 Anserini +test911 Q0 18484464 24 15.054933 Anserini +test911 Q0 18600180 25 15.054933 Anserini +test911 Q0 18495156 26 15.054933 Anserini +test911 Q0 18495157 27 15.054933 Anserini +test911 Q0 20764748 28 15.040756 Anserini +test911 Q0 18134989 29 15.029355 Anserini +test911 Q0 19541892 30 15.029355 Anserini +test912 Q0 7096016 1 10.007688 Anserini +test912 Q0 5692895 2 10.003769 Anserini +test912 Q0 12550597 3 9.536893 Anserini +test912 Q0 11665617 4 9.526031 Anserini +test912 Q0 13736009 5 9.414957 Anserini +test912 Q0 13845301 6 9.324652 Anserini +test912 Q0 2655189 7 9.294223 Anserini +test912 Q0 5777904 8 9.252671 Anserini +test912 Q0 12095572 9 9.231063 Anserini +test912 Q0 14661284 10 9.231063 Anserini +test912 Q0 3992466 11 9.185104 Anserini +test912 Q0 12648517 12 9.127034 Anserini +test912 Q0 17356776 13 9.030116 Anserini +test912 Q0 19054838 14 9.001066 Anserini +test912 Q0 20170105 15 8.934953 Anserini +test912 Q0 10522075 16 8.934874 Anserini +test912 Q0 12550599 17 8.934874 Anserini +test912 Q0 16054654 18 8.915688 Anserini +test912 Q0 15732631 19 8.904014 Anserini +test912 Q0 46952 20 8.859665 Anserini +test912 Q0 8536349 21 8.750636 Anserini +test912 Q0 5021079 22 8.747995 Anserini +test912 Q0 12563408 23 8.737244 Anserini +test912 Q0 9919598 24 8.664445 Anserini +test912 Q0 18095468 25 8.653637 Anserini +test912 Q0 10785092 26 8.653637 Anserini +test912 Q0 507367 27 8.642686 Anserini +test912 Q0 14623648 28 8.626257 Anserini +test912 Q0 11665624 29 8.571663 Anserini +test912 Q0 18313748 30 8.538410 Anserini +test913 Q0 5225367 1 19.339287 Anserini +test913 Q0 13954845 2 19.170969 Anserini +test913 Q0 13954872 3 19.170969 Anserini +test913 Q0 14265003 4 17.733868 Anserini +test913 Q0 3294284 5 17.446606 Anserini +test913 Q0 3294275 6 17.357481 Anserini +test913 Q0 14265001 7 17.182499 Anserini +test913 Q0 5689372 8 16.445257 Anserini +test913 Q0 13954869 9 15.570454 Anserini +test913 Q0 5689367 10 15.277393 Anserini +test913 Q0 3294279 11 15.235722 Anserini +test913 Q0 5225365 12 15.160127 Anserini +test913 Q0 5723015 13 15.044706 Anserini +test913 Q0 15468406 14 14.931087 Anserini +test913 Q0 13954852 15 14.819225 Anserini +test913 Q0 13954855 16 14.796826 Anserini +test913 Q0 13954853 17 14.736179 Anserini +test913 Q0 13954860 18 14.736179 Anserini +test913 Q0 3294276 19 14.676026 Anserini +test913 Q0 4108972 20 14.153713 Anserini +test913 Q0 3294281 21 14.045410 Anserini +test913 Q0 13954858 22 14.045410 Anserini +test913 Q0 14265002 23 14.045410 Anserini +test913 Q0 3294280 24 13.972631 Anserini +test913 Q0 13954857 25 13.972631 Anserini +test913 Q0 3294282 26 13.900601 Anserini +test913 Q0 13954848 27 13.900601 Anserini +test913 Q0 13954861 28 13.900601 Anserini +test913 Q0 13954849 29 13.900601 Anserini +test913 Q0 3294283 30 13.829310 Anserini +test914 Q0 6309338 1 9.394328 Anserini +test914 Q0 9116243 2 9.179784 Anserini +test914 Q0 5052969 3 9.122926 Anserini +test914 Q0 4274307 4 8.980242 Anserini +test914 Q0 12246450 5 8.925885 Anserini +test914 Q0 4274302 6 8.925885 Anserini +test914 Q0 16385752 7 8.887187 Anserini +test914 Q0 12246456 8 8.872398 Anserini +test914 Q0 10582634 9 8.790777 Anserini +test914 Q0 4241664 10 8.731958 Anserini +test914 Q0 17346862 11 8.721343 Anserini +test914 Q0 10088211 12 8.636520 Anserini +test914 Q0 4742494 13 8.614736 Anserini +test914 Q0 14446471 14 8.558984 Anserini +test914 Q0 11573287 15 8.552644 Anserini +test914 Q0 3818905 16 8.504116 Anserini +test914 Q0 5691788 17 8.504116 Anserini +test914 Q0 6258325 18 8.495073 Anserini +test914 Q0 8258559 19 8.495073 Anserini +test914 Q0 9868610 20 8.449382 Anserini +test914 Q0 13248455 21 8.385132 Anserini +test914 Q0 5562541 22 8.377848 Anserini +test914 Q0 19198674 23 8.351127 Anserini +test914 Q0 19148824 24 8.351127 Anserini +test914 Q0 15190035 25 8.348666 Anserini +test914 Q0 13325088 26 8.308982 Anserini +test914 Q0 14576516 27 8.308982 Anserini +test914 Q0 8049813 28 8.287022 Anserini +test914 Q0 4409014 29 8.249008 Anserini +test914 Q0 15626326 30 8.227574 Anserini +test915 Q0 3298729 1 14.394701 Anserini +test915 Q0 11065598 2 14.342274 Anserini +test915 Q0 12059354 3 14.106763 Anserini +test915 Q0 147714 4 13.918018 Anserini +test915 Q0 7656301 5 13.368275 Anserini +test915 Q0 11592541 6 13.150940 Anserini +test915 Q0 7286547 7 13.015485 Anserini +test915 Q0 4622158 8 13.008194 Anserini +test915 Q0 2941928 9 12.939013 Anserini +test915 Q0 1819226 10 12.896386 Anserini +test915 Q0 13639226 11 12.858315 Anserini +test915 Q0 3398854 12 12.853456 Anserini +test915 Q0 147760 13 12.815163 Anserini +test915 Q0 11065595 14 12.798300 Anserini +test915 Q0 1318845 15 12.778835 Anserini +test915 Q0 5860631 16 12.770836 Anserini +test915 Q0 16017208 17 12.759867 Anserini +test915 Q0 11065600 18 12.702550 Anserini +test915 Q0 7521272 19 12.682361 Anserini +test915 Q0 16164586 20 12.618448 Anserini +test915 Q0 2008578 21 12.551740 Anserini +test915 Q0 8911635 22 12.493269 Anserini +test915 Q0 19948420 23 12.488128 Anserini +test915 Q0 6036281 24 12.442243 Anserini +test915 Q0 7512922 25 12.431341 Anserini +test915 Q0 147759 26 12.395684 Anserini +test915 Q0 4075236 27 12.395290 Anserini +test915 Q0 3385032 28 12.379990 Anserini +test915 Q0 147761 29 12.297676 Anserini +test915 Q0 3779854 30 12.282282 Anserini +test916 Q0 5677389 1 13.392462 Anserini +test916 Q0 826680 2 13.067362 Anserini +test916 Q0 6012438 3 13.014317 Anserini +test916 Q0 2225876 4 12.907722 Anserini +test916 Q0 7037073 5 12.692531 Anserini +test916 Q0 5677383 6 12.578173 Anserini +test916 Q0 1820148 7 12.435621 Anserini +test916 Q0 6864233 8 12.424305 Anserini +test916 Q0 10110986 9 12.405566 Anserini +test916 Q0 8364010 10 12.338372 Anserini +test916 Q0 19848520 11 12.325019 Anserini +test916 Q0 12252978 12 12.314322 Anserini +test916 Q0 3776743 13 12.285372 Anserini +test916 Q0 1737294 14 12.241118 Anserini +test916 Q0 384668 15 12.181091 Anserini +test916 Q0 7602003 16 12.167481 Anserini +test916 Q0 983686 17 12.160423 Anserini +test916 Q0 18182185 18 12.097137 Anserini +test916 Q0 988330 19 12.092913 Anserini +test916 Q0 1510457 20 12.088640 Anserini +test916 Q0 4007952 21 12.057536 Anserini +test916 Q0 4645007 22 12.043307 Anserini +test916 Q0 7003505 23 11.999971 Anserini +test916 Q0 7055753 24 11.959968 Anserini +test916 Q0 7602001 25 11.942818 Anserini +test916 Q0 1820150 26 11.931327 Anserini +test916 Q0 19848521 27 11.931225 Anserini +test916 Q0 13699953 28 11.923345 Anserini +test916 Q0 20081736 29 11.921995 Anserini +test916 Q0 15266508 30 11.894901 Anserini +test917 Q0 17810431 1 11.713747 Anserini +test917 Q0 5994823 2 11.440803 Anserini +test917 Q0 5994824 3 11.131417 Anserini +test917 Q0 14841423 4 10.913108 Anserini +test917 Q0 17537598 5 10.750322 Anserini +test917 Q0 19694450 6 10.750322 Anserini +test917 Q0 8349738 7 10.727035 Anserini +test917 Q0 9284038 8 10.617152 Anserini +test917 Q0 4241013 9 10.542186 Anserini +test917 Q0 4241014 10 10.542186 Anserini +test917 Q0 11654985 11 10.458845 Anserini +test917 Q0 14841424 12 10.426462 Anserini +test917 Q0 8728432 13 10.275469 Anserini +test917 Q0 2271826 14 10.258194 Anserini +test917 Q0 1605516 15 10.257921 Anserini +test917 Q0 19883629 16 10.098059 Anserini +test917 Q0 16008169 17 10.057182 Anserini +test917 Q0 15108701 18 10.020231 Anserini +test917 Q0 17189961 19 10.006505 Anserini +test917 Q0 11678716 20 9.990773 Anserini +test917 Q0 2271822 21 9.950034 Anserini +test917 Q0 12835682 22 9.893250 Anserini +test917 Q0 8728433 23 9.877412 Anserini +test917 Q0 8736339 24 9.839581 Anserini +test917 Q0 13340007 25 9.822987 Anserini +test917 Q0 6158873 26 9.758179 Anserini +test917 Q0 19414250 27 9.757081 Anserini +test917 Q0 12741685 28 9.748911 Anserini +test917 Q0 11678715 29 9.694584 Anserini +test917 Q0 19883628 30 9.694584 Anserini +test918 Q0 3105200 1 25.538841 Anserini +test918 Q0 6795495 2 24.185253 Anserini +test918 Q0 5037968 3 23.092148 Anserini +test918 Q0 560996 4 22.788088 Anserini +test918 Q0 5037944 5 22.587835 Anserini +test918 Q0 125354 6 21.440102 Anserini +test918 Q0 125288 7 21.440102 Anserini +test918 Q0 561030 8 20.994188 Anserini +test918 Q0 243011 9 20.507774 Anserini +test918 Q0 33866 10 20.170902 Anserini +test918 Q0 1990955 11 19.880686 Anserini +test918 Q0 3178057 12 19.871834 Anserini +test918 Q0 3105270 13 19.672199 Anserini +test918 Q0 9940796 14 19.259655 Anserini +test918 Q0 5139311 15 19.169930 Anserini +test918 Q0 3792464 16 19.143148 Anserini +test918 Q0 2639694 17 19.080702 Anserini +test918 Q0 10603753 18 19.028971 Anserini +test918 Q0 561018 19 18.869564 Anserini +test918 Q0 2653082 20 18.810555 Anserini +test918 Q0 4571093 21 18.788687 Anserini +test918 Q0 33878 22 18.766121 Anserini +test918 Q0 561031 23 18.764744 Anserini +test918 Q0 19747518 24 18.644802 Anserini +test918 Q0 656048 25 18.563616 Anserini +test918 Q0 3939516 26 18.559916 Anserini +test918 Q0 9652474 27 18.547260 Anserini +test918 Q0 1990923 28 18.539145 Anserini +test918 Q0 4510651 29 18.522350 Anserini +test918 Q0 5236960 30 18.505917 Anserini +test919 Q0 9015661 1 17.778767 Anserini +test919 Q0 19575074 2 16.999617 Anserini +test919 Q0 9936133 3 15.197539 Anserini +test919 Q0 9015647 4 15.157227 Anserini +test919 Q0 9015653 5 15.104139 Anserini +test919 Q0 18022138 6 14.033711 Anserini +test919 Q0 18891574 7 13.776603 Anserini +test919 Q0 9037126 8 13.776603 Anserini +test919 Q0 18842055 9 13.312869 Anserini +test919 Q0 9037150 10 13.276008 Anserini +test919 Q0 9037152 11 13.244351 Anserini +test919 Q0 14569061 12 13.223661 Anserini +test919 Q0 9015644 13 13.191358 Anserini +test919 Q0 19575075 14 13.169621 Anserini +test919 Q0 14569064 15 13.157090 Anserini +test919 Q0 18891570 16 13.120670 Anserini +test919 Q0 19289835 17 12.993402 Anserini +test919 Q0 9037396 18 12.901291 Anserini +test919 Q0 9037122 19 12.862090 Anserini +test919 Q0 9037169 20 12.791056 Anserini +test919 Q0 15021315 21 12.752765 Anserini +test919 Q0 8397450 22 12.635117 Anserini +test919 Q0 19575073 23 12.450178 Anserini +test919 Q0 19535010 24 12.393763 Anserini +test919 Q0 8397425 25 12.281431 Anserini +test919 Q0 4811543 26 12.183357 Anserini +test919 Q0 9015646 27 12.139452 Anserini +test919 Q0 9037395 28 12.131214 Anserini +test919 Q0 19335510 29 12.086246 Anserini +test919 Q0 9169894 30 12.059742 Anserini +test92 Q0 723338 1 16.369986 Anserini +test92 Q0 6700518 2 14.351571 Anserini +test92 Q0 4429993 3 14.141313 Anserini +test92 Q0 18713215 4 14.036043 Anserini +test92 Q0 1741517 5 13.538781 Anserini +test92 Q0 3236164 6 13.528666 Anserini +test92 Q0 4337387 7 13.290333 Anserini +test92 Q0 4759974 8 13.244393 Anserini +test92 Q0 2735449 9 13.244393 Anserini +test92 Q0 2796374 10 13.195599 Anserini +test92 Q0 6096431 11 13.047338 Anserini +test92 Q0 18036918 12 12.984015 Anserini +test92 Q0 1065245 13 12.965006 Anserini +test92 Q0 14425816 14 12.866467 Anserini +test92 Q0 4337389 15 12.845011 Anserini +test92 Q0 5746941 16 12.817262 Anserini +test92 Q0 723335 17 12.800448 Anserini +test92 Q0 14173680 18 12.761435 Anserini +test92 Q0 4093174 19 12.760017 Anserini +test92 Q0 7290598 20 12.756122 Anserini +test92 Q0 1711116 21 12.662648 Anserini +test92 Q0 6745471 22 12.624934 Anserini +test92 Q0 8398521 23 12.604370 Anserini +test92 Q0 11902784 24 12.553953 Anserini +test92 Q0 12805800 25 12.508403 Anserini +test92 Q0 720238 26 12.476534 Anserini +test92 Q0 8424486 27 12.474391 Anserini +test92 Q0 524758 28 12.470148 Anserini +test92 Q0 16586264 29 12.461495 Anserini +test92 Q0 3716650 30 12.440381 Anserini +test920 Q0 9202592 1 12.364414 Anserini +test920 Q0 14781882 2 12.019743 Anserini +test920 Q0 18939125 3 11.143353 Anserini +test920 Q0 87308 4 11.134901 Anserini +test920 Q0 1286104 5 10.962533 Anserini +test920 Q0 87309 6 10.927336 Anserini +test920 Q0 15913173 7 10.679745 Anserini +test920 Q0 353179 8 10.665295 Anserini +test920 Q0 13817951 9 10.490664 Anserini +test920 Q0 9878041 10 10.356450 Anserini +test920 Q0 5831771 11 10.332062 Anserini +test920 Q0 3568014 12 10.283696 Anserini +test920 Q0 6343004 13 10.208237 Anserini +test920 Q0 9784353 14 10.192765 Anserini +test920 Q0 9202609 15 10.159956 Anserini +test920 Q0 14781883 16 10.151234 Anserini +test920 Q0 353178 17 10.098080 Anserini +test920 Q0 353132 18 10.090847 Anserini +test920 Q0 353159 19 10.067972 Anserini +test920 Q0 20517858 20 10.035325 Anserini +test920 Q0 20967968 21 10.033900 Anserini +test920 Q0 20055533 22 10.029376 Anserini +test920 Q0 353142 23 10.018040 Anserini +test920 Q0 5836525 24 10.009223 Anserini +test920 Q0 20055538 25 9.974469 Anserini +test920 Q0 18850832 26 9.967199 Anserini +test920 Q0 19912931 27 9.902780 Anserini +test920 Q0 9202611 28 9.901360 Anserini +test920 Q0 679135 29 9.888305 Anserini +test920 Q0 18939126 30 9.853649 Anserini +test921 Q0 249208 1 13.859682 Anserini +test921 Q0 17545882 2 13.694300 Anserini +test921 Q0 12906747 3 13.557285 Anserini +test921 Q0 8164486 4 13.536226 Anserini +test921 Q0 6090659 5 13.474376 Anserini +test921 Q0 7703223 6 13.305673 Anserini +test921 Q0 11499738 7 13.047942 Anserini +test921 Q0 11499749 8 12.999321 Anserini +test921 Q0 13911619 9 12.975787 Anserini +test921 Q0 13359583 10 12.947950 Anserini +test921 Q0 7572984 11 12.881087 Anserini +test921 Q0 13960645 12 12.839672 Anserini +test921 Q0 13960629 13 12.792809 Anserini +test921 Q0 13597520 14 12.527943 Anserini +test921 Q0 12988351 15 12.500582 Anserini +test921 Q0 14350201 16 12.493517 Anserini +test921 Q0 5712346 17 12.403948 Anserini +test921 Q0 13960628 18 12.382432 Anserini +test921 Q0 6986451 19 12.368439 Anserini +test921 Q0 11278965 20 12.291568 Anserini +test921 Q0 16849571 21 12.263264 Anserini +test921 Q0 8707833 22 12.224401 Anserini +test921 Q0 9463405 23 12.205675 Anserini +test921 Q0 9450851 24 12.183683 Anserini +test921 Q0 14996035 25 12.175559 Anserini +test921 Q0 17298418 26 12.162170 Anserini +test921 Q0 13911613 27 12.154168 Anserini +test921 Q0 2181754 28 12.108051 Anserini +test921 Q0 1352664 29 12.105497 Anserini +test921 Q0 14996033 30 12.092408 Anserini +test922 Q0 5470749 1 13.774340 Anserini +test922 Q0 13983980 2 13.710391 Anserini +test922 Q0 1711907 3 13.292535 Anserini +test922 Q0 4811484 4 12.912046 Anserini +test922 Q0 15141341 5 12.480858 Anserini +test922 Q0 16152586 6 12.450681 Anserini +test922 Q0 16084106 7 12.258367 Anserini +test922 Q0 9799754 8 12.194659 Anserini +test922 Q0 11449851 9 12.170286 Anserini +test922 Q0 5998580 10 12.009863 Anserini +test922 Q0 6937961 11 11.843166 Anserini +test922 Q0 13366264 12 11.785021 Anserini +test922 Q0 20174417 13 11.762704 Anserini +test922 Q0 14763853 14 11.741690 Anserini +test922 Q0 19295860 15 11.712205 Anserini +test922 Q0 1786672 16 11.668688 Anserini +test922 Q0 14631940 17 11.656243 Anserini +test922 Q0 11141048 18 11.655846 Anserini +test922 Q0 14605328 19 11.603951 Anserini +test922 Q0 15484142 20 11.552365 Anserini +test922 Q0 16053762 21 11.512678 Anserini +test922 Q0 16117027 22 11.508770 Anserini +test922 Q0 2834168 23 11.503245 Anserini +test922 Q0 14629707 24 11.494720 Anserini +test922 Q0 14021759 25 11.491051 Anserini +test922 Q0 10658188 26 11.469474 Anserini +test922 Q0 5258544 27 11.437617 Anserini +test922 Q0 11260704 28 11.436625 Anserini +test922 Q0 3016413 29 11.404593 Anserini +test922 Q0 842784 30 11.387227 Anserini +test923 Q0 499395 1 15.952082 Anserini +test923 Q0 15790514 2 15.821336 Anserini +test923 Q0 8009513 3 15.710364 Anserini +test923 Q0 15642042 4 15.693613 Anserini +test923 Q0 499401 5 15.640856 Anserini +test923 Q0 20785513 6 15.615462 Anserini +test923 Q0 20788180 7 15.273556 Anserini +test923 Q0 8309374 8 15.231882 Anserini +test923 Q0 10677620 9 14.979268 Anserini +test923 Q0 7260579 10 14.838978 Anserini +test923 Q0 8844993 11 14.795942 Anserini +test923 Q0 17405757 12 14.698992 Anserini +test923 Q0 1489676 13 14.640128 Anserini +test923 Q0 2716308 14 14.564828 Anserini +test923 Q0 15977360 15 14.564828 Anserini +test923 Q0 11763061 16 14.564828 Anserini +test923 Q0 6181679 17 14.554424 Anserini +test923 Q0 2518123 18 14.546087 Anserini +test923 Q0 9904208 19 14.530231 Anserini +test923 Q0 2844612 20 14.526269 Anserini +test923 Q0 7387722 21 14.468777 Anserini +test923 Q0 4589805 22 14.461479 Anserini +test923 Q0 4129306 23 14.399659 Anserini +test923 Q0 15435723 24 14.356499 Anserini +test923 Q0 14036468 25 14.317487 Anserini +test923 Q0 499412 26 14.307940 Anserini +test923 Q0 12102339 27 14.306417 Anserini +test923 Q0 18400264 28 14.306417 Anserini +test923 Q0 499387 29 14.294340 Anserini +test923 Q0 15790490 30 14.294340 Anserini +test924 Q0 695637 1 19.271988 Anserini +test924 Q0 695640 2 18.900839 Anserini +test924 Q0 2066346 3 18.093405 Anserini +test924 Q0 695683 4 17.945406 Anserini +test924 Q0 15171713 5 17.645151 Anserini +test924 Q0 695645 6 17.620949 Anserini +test924 Q0 695671 7 17.528599 Anserini +test924 Q0 8852894 8 17.428764 Anserini +test924 Q0 695641 9 17.263077 Anserini +test924 Q0 14621425 10 17.250599 Anserini +test924 Q0 14806955 11 17.174793 Anserini +test924 Q0 695651 12 16.712755 Anserini +test924 Q0 4324927 13 16.653088 Anserini +test924 Q0 695638 14 16.611322 Anserini +test924 Q0 7835219 15 16.574547 Anserini +test924 Q0 7823968 16 16.547068 Anserini +test924 Q0 13271023 17 16.420929 Anserini +test924 Q0 8744632 18 16.299156 Anserini +test924 Q0 3058271 19 16.279406 Anserini +test924 Q0 1441510 20 16.088346 Anserini +test924 Q0 4049947 21 16.043379 Anserini +test924 Q0 8201158 22 16.035484 Anserini +test924 Q0 7823967 23 15.976688 Anserini +test924 Q0 1427115 24 15.943318 Anserini +test924 Q0 73990 25 15.909868 Anserini +test924 Q0 695642 26 15.904564 Anserini +test924 Q0 695639 27 15.893152 Anserini +test924 Q0 541809 28 15.857027 Anserini +test924 Q0 1358598 29 15.841822 Anserini +test924 Q0 695665 30 15.799267 Anserini +test925 Q0 5062611 1 12.425385 Anserini +test925 Q0 10343399 2 11.940521 Anserini +test925 Q0 5062607 3 11.476503 Anserini +test925 Q0 6564675 4 11.335472 Anserini +test925 Q0 5062604 5 11.138059 Anserini +test925 Q0 7916218 6 11.028447 Anserini +test925 Q0 12612083 7 11.007235 Anserini +test925 Q0 10009240 8 11.001815 Anserini +test925 Q0 14662017 9 10.928576 Anserini +test925 Q0 5062598 10 10.928484 Anserini +test925 Q0 5062609 11 10.924906 Anserini +test925 Q0 7916222 12 10.853956 Anserini +test925 Q0 10666483 13 10.837468 Anserini +test925 Q0 16661454 14 10.636727 Anserini +test925 Q0 16661455 15 10.602657 Anserini +test925 Q0 12085333 16 10.579615 Anserini +test925 Q0 16459839 17 10.562833 Anserini +test925 Q0 5062605 18 10.365691 Anserini +test925 Q0 14623430 19 10.365691 Anserini +test925 Q0 11183236 20 10.331124 Anserini +test925 Q0 17350602 21 10.267859 Anserini +test925 Q0 19466195 22 10.243801 Anserini +test925 Q0 16344530 23 10.239148 Anserini +test925 Q0 18645032 24 10.234982 Anserini +test925 Q0 4552663 25 10.169064 Anserini +test925 Q0 914185 26 10.135235 Anserini +test925 Q0 5062597 27 10.099346 Anserini +test925 Q0 17165501 28 10.068253 Anserini +test925 Q0 4247443 29 10.060040 Anserini +test925 Q0 20450420 30 10.027546 Anserini +test926 Q0 299580 1 17.245304 Anserini +test926 Q0 299572 2 16.796453 Anserini +test926 Q0 299560 3 16.662880 Anserini +test926 Q0 299586 4 15.757991 Anserini +test926 Q0 299573 5 15.422689 Anserini +test926 Q0 3383179 6 14.914474 Anserini +test926 Q0 3383177 7 14.914474 Anserini +test926 Q0 299558 8 13.940573 Anserini +test926 Q0 299571 9 13.244453 Anserini +test926 Q0 6160301 10 12.657526 Anserini +test926 Q0 3352843 11 12.578254 Anserini +test926 Q0 11417726 12 12.499637 Anserini +test926 Q0 1923955 13 12.315500 Anserini +test926 Q0 10398961 14 12.120589 Anserini +test926 Q0 1925454 15 12.093656 Anserini +test926 Q0 11417728 16 11.907780 Anserini +test926 Q0 11461808 17 11.775711 Anserini +test926 Q0 6033526 18 11.710068 Anserini +test926 Q0 5396503 19 11.594085 Anserini +test926 Q0 6160293 20 11.504218 Anserini +test926 Q0 299555 21 11.414007 Anserini +test926 Q0 1764687 22 11.387546 Anserini +test926 Q0 4769793 23 11.357606 Anserini +test926 Q0 11461805 24 11.332826 Anserini +test926 Q0 2126049 25 11.273153 Anserini +test926 Q0 18263258 26 11.269950 Anserini +test926 Q0 10398972 27 11.178539 Anserini +test926 Q0 299606 28 11.013398 Anserini +test926 Q0 12644079 29 11.006109 Anserini +test926 Q0 6160285 30 10.995920 Anserini +test927 Q0 15702161 1 22.394293 Anserini +test927 Q0 19739681 2 21.629848 Anserini +test927 Q0 13899137 3 21.595171 Anserini +test927 Q0 15207801 4 21.492294 Anserini +test927 Q0 15715493 5 21.317684 Anserini +test927 Q0 19739698 6 21.317684 Anserini +test927 Q0 13899151 7 20.967039 Anserini +test927 Q0 15207818 8 20.877941 Anserini +test927 Q0 15702167 9 20.793114 Anserini +test927 Q0 15715509 10 20.707888 Anserini +test927 Q0 14306295 11 20.337082 Anserini +test927 Q0 10241904 12 20.325777 Anserini +test927 Q0 15715494 13 20.287851 Anserini +test927 Q0 11831355 14 20.215145 Anserini +test927 Q0 12300173 15 19.948000 Anserini +test927 Q0 13610232 16 19.948000 Anserini +test927 Q0 15702164 17 19.860079 Anserini +test927 Q0 14306296 18 19.855825 Anserini +test927 Q0 18018602 19 19.785902 Anserini +test927 Q0 19527653 20 19.761868 Anserini +test927 Q0 15715506 21 19.699505 Anserini +test927 Q0 17478881 22 19.652287 Anserini +test927 Q0 12184107 23 19.433517 Anserini +test927 Q0 12272515 24 19.194950 Anserini +test927 Q0 13899146 25 19.162525 Anserini +test927 Q0 12272507 26 19.119530 Anserini +test927 Q0 15207814 27 19.058853 Anserini +test927 Q0 13899147 28 19.057943 Anserini +test927 Q0 20128718 29 19.029573 Anserini +test927 Q0 20128698 30 19.029573 Anserini +test928 Q0 6498428 1 13.520761 Anserini +test928 Q0 19050494 2 12.322232 Anserini +test928 Q0 19050500 3 12.281609 Anserini +test928 Q0 19050499 4 12.160941 Anserini +test928 Q0 19050497 5 12.006104 Anserini +test928 Q0 7226415 6 11.898028 Anserini +test928 Q0 9742181 7 11.887990 Anserini +test928 Q0 19037638 8 11.671882 Anserini +test928 Q0 5855093 9 11.518753 Anserini +test928 Q0 17283175 10 11.371111 Anserini +test928 Q0 19050495 11 11.251518 Anserini +test928 Q0 2737869 12 11.209835 Anserini +test928 Q0 9896633 13 11.103915 Anserini +test928 Q0 6498422 14 11.000780 Anserini +test928 Q0 38022 15 10.833236 Anserini +test928 Q0 17622144 16 10.738532 Anserini +test928 Q0 6498426 17 10.703194 Anserini +test928 Q0 1495511 18 10.682345 Anserini +test928 Q0 15746889 19 10.582741 Anserini +test928 Q0 6201056 20 10.542273 Anserini +test928 Q0 2640180 21 10.500326 Anserini +test928 Q0 5615554 22 10.468458 Anserini +test928 Q0 8754939 23 10.371299 Anserini +test928 Q0 13362828 24 10.323209 Anserini +test928 Q0 13472927 25 10.231401 Anserini +test928 Q0 15269364 26 10.169346 Anserini +test928 Q0 16076616 27 10.085497 Anserini +test928 Q0 5544410 28 9.999886 Anserini +test928 Q0 4914639 29 9.962481 Anserini +test928 Q0 12090753 30 9.938354 Anserini +test929 Q0 12800986 1 11.345442 Anserini +test929 Q0 19501833 2 11.279239 Anserini +test929 Q0 432380 3 10.463603 Anserini +test929 Q0 19447664 4 10.285585 Anserini +test929 Q0 13739445 5 10.280943 Anserini +test929 Q0 3347266 6 9.733925 Anserini +test929 Q0 2926227 7 9.624666 Anserini +test929 Q0 20263874 8 9.588691 Anserini +test929 Q0 19431648 9 9.586063 Anserini +test929 Q0 4765416 10 9.575317 Anserini +test929 Q0 6670636 11 9.460807 Anserini +test929 Q0 17849863 12 9.401079 Anserini +test929 Q0 16648926 13 9.314686 Anserini +test929 Q0 5364719 14 9.286468 Anserini +test929 Q0 18134132 15 9.282276 Anserini +test929 Q0 13739454 16 9.242978 Anserini +test929 Q0 12801023 17 9.221966 Anserini +test929 Q0 16613252 18 9.216508 Anserini +test929 Q0 15655650 19 9.210120 Anserini +test929 Q0 15562747 20 9.162879 Anserini +test929 Q0 20208256 21 9.140792 Anserini +test929 Q0 4036207 22 9.120859 Anserini +test929 Q0 20208249 23 9.113386 Anserini +test929 Q0 20309017 24 9.048680 Anserini +test929 Q0 17663087 25 9.012314 Anserini +test929 Q0 20263893 26 9.012314 Anserini +test929 Q0 16263735 27 9.009750 Anserini +test929 Q0 20886593 28 9.009432 Anserini +test929 Q0 13463849 29 9.008170 Anserini +test929 Q0 18134135 30 8.987408 Anserini +test93 Q0 18375863 1 15.954184 Anserini +test93 Q0 19815351 2 15.290904 Anserini +test93 Q0 18375866 3 15.024962 Anserini +test93 Q0 17649300 4 14.957502 Anserini +test93 Q0 19815348 5 14.760777 Anserini +test93 Q0 15036813 6 14.514592 Anserini +test93 Q0 16888405 7 14.303041 Anserini +test93 Q0 274744 8 14.286239 Anserini +test93 Q0 16888312 9 13.646215 Anserini +test93 Q0 274746 10 13.570128 Anserini +test93 Q0 13344364 11 13.457977 Anserini +test93 Q0 11031661 12 13.446159 Anserini +test93 Q0 18383598 13 13.437326 Anserini +test93 Q0 6253521 14 13.365876 Anserini +test93 Q0 16010647 15 13.264236 Anserini +test93 Q0 6532502 16 13.140525 Anserini +test93 Q0 6691427 17 12.987509 Anserini +test93 Q0 9215934 18 12.893840 Anserini +test93 Q0 16597376 19 12.835320 Anserini +test93 Q0 15036814 20 12.512824 Anserini +test93 Q0 16597374 21 12.465045 Anserini +test93 Q0 10962807 22 12.420375 Anserini +test93 Q0 16888315 23 12.363872 Anserini +test93 Q0 17606816 24 12.297443 Anserini +test93 Q0 12146959 25 12.280576 Anserini +test93 Q0 12146979 26 12.280576 Anserini +test93 Q0 20336700 27 12.194957 Anserini +test93 Q0 13279536 28 12.167172 Anserini +test93 Q0 18004082 29 12.107508 Anserini +test93 Q0 11061306 30 12.089043 Anserini +test930 Q0 7061725 1 14.987402 Anserini +test930 Q0 3389242 2 14.865089 Anserini +test930 Q0 4565926 3 14.377699 Anserini +test930 Q0 12211727 4 14.353497 Anserini +test930 Q0 20071043 5 14.319010 Anserini +test930 Q0 20071044 6 14.319010 Anserini +test930 Q0 3389232 7 14.319010 Anserini +test930 Q0 12211742 8 14.265169 Anserini +test930 Q0 4565608 9 14.161953 Anserini +test930 Q0 12211730 10 14.024457 Anserini +test930 Q0 11520298 11 13.827939 Anserini +test930 Q0 4565935 12 13.562448 Anserini +test930 Q0 5394722 13 13.404675 Anserini +test930 Q0 3389241 14 13.365954 Anserini +test930 Q0 20497508 15 12.394677 Anserini +test930 Q0 7654787 16 12.282063 Anserini +test930 Q0 4565607 17 12.181056 Anserini +test930 Q0 10013301 18 12.097042 Anserini +test930 Q0 4565928 19 12.097042 Anserini +test930 Q0 3389240 20 12.097042 Anserini +test930 Q0 5801961 21 12.060906 Anserini +test930 Q0 1697954 22 12.014179 Anserini +test930 Q0 18579289 23 12.014179 Anserini +test930 Q0 4331237 24 11.789096 Anserini +test930 Q0 1417581 25 11.716856 Anserini +test930 Q0 12211739 26 11.706913 Anserini +test930 Q0 18304598 27 11.637815 Anserini +test930 Q0 1029946 28 11.616688 Anserini +test930 Q0 3389235 29 11.451644 Anserini +test930 Q0 4565930 30 11.440571 Anserini +test931 Q0 10500495 1 15.927979 Anserini +test931 Q0 10500484 2 15.522969 Anserini +test931 Q0 12072683 3 13.108791 Anserini +test931 Q0 14023754 4 13.108791 Anserini +test931 Q0 14023745 5 12.765302 Anserini +test931 Q0 10500491 6 12.506144 Anserini +test931 Q0 8711983 7 11.151519 Anserini +test931 Q0 14023752 8 10.789002 Anserini +test931 Q0 8711984 9 10.753412 Anserini +test931 Q0 14023738 10 9.698545 Anserini +test931 Q0 10500485 11 9.445786 Anserini +test931 Q0 10500493 12 9.445786 Anserini +test931 Q0 10500492 13 9.335028 Anserini +test931 Q0 14023756 14 9.335028 Anserini +test931 Q0 10500494 15 9.279853 Anserini +test931 Q0 4781796 16 9.080994 Anserini +test931 Q0 9695030 17 9.038676 Anserini +test931 Q0 738381 18 9.018226 Anserini +test931 Q0 4781794 19 8.959092 Anserini +test931 Q0 13758627 20 8.957503 Anserini +test931 Q0 12057021 21 8.826334 Anserini +test931 Q0 18136644 22 8.748401 Anserini +test931 Q0 13915015 23 8.700119 Anserini +test931 Q0 12580781 24 8.681820 Anserini +test931 Q0 2700294 25 8.593225 Anserini +test931 Q0 6692052 26 8.587602 Anserini +test931 Q0 13444815 27 8.369341 Anserini +test931 Q0 17885482 28 8.302372 Anserini +test931 Q0 5734944 29 8.252999 Anserini +test931 Q0 16084202 30 8.200974 Anserini +test932 Q0 15411425 1 18.861917 Anserini +test932 Q0 6615284 2 17.565048 Anserini +test932 Q0 10325690 3 16.486067 Anserini +test932 Q0 10321315 4 16.353247 Anserini +test932 Q0 3957643 5 16.333952 Anserini +test932 Q0 5680160 6 16.255726 Anserini +test932 Q0 6393024 7 16.225233 Anserini +test932 Q0 13187163 8 16.126671 Anserini +test932 Q0 5191866 9 16.096214 Anserini +test932 Q0 19260776 10 16.079845 Anserini +test932 Q0 6982514 11 15.990241 Anserini +test932 Q0 5216474 12 15.916620 Anserini +test932 Q0 3957635 13 15.870872 Anserini +test932 Q0 5216490 14 15.863859 Anserini +test932 Q0 6974852 15 15.853775 Anserini +test932 Q0 6647503 16 15.797159 Anserini +test932 Q0 11841112 17 15.792330 Anserini +test932 Q0 5944045 18 15.762388 Anserini +test932 Q0 16421040 19 15.648487 Anserini +test932 Q0 3957625 20 15.575818 Anserini +test932 Q0 7011118 21 15.570653 Anserini +test932 Q0 6927943 22 15.554900 Anserini +test932 Q0 9334066 23 15.497441 Anserini +test932 Q0 6594309 24 15.488698 Anserini +test932 Q0 15914528 25 15.478096 Anserini +test932 Q0 3138136 26 15.470383 Anserini +test932 Q0 11924670 27 15.469651 Anserini +test932 Q0 16411313 28 15.444233 Anserini +test932 Q0 8581545 29 15.371162 Anserini +test932 Q0 8581546 30 15.371162 Anserini +test933 Q0 2634963 1 13.195968 Anserini +test933 Q0 2634979 2 12.891623 Anserini +test933 Q0 2634957 3 12.803199 Anserini +test933 Q0 2634971 4 12.666021 Anserini +test933 Q0 628908 5 12.478839 Anserini +test933 Q0 6453229 6 11.986488 Anserini +test933 Q0 2634962 7 11.877310 Anserini +test933 Q0 8438888 8 11.843948 Anserini +test933 Q0 9075566 9 11.790005 Anserini +test933 Q0 9075568 10 11.790005 Anserini +test933 Q0 7206597 11 11.548795 Anserini +test933 Q0 15219306 12 11.455746 Anserini +test933 Q0 5834447 13 11.432388 Anserini +test933 Q0 15219305 14 11.222530 Anserini +test933 Q0 3019413 15 11.195485 Anserini +test933 Q0 3019416 16 11.195485 Anserini +test933 Q0 2631196 17 11.174057 Anserini +test933 Q0 7206601 18 11.078924 Anserini +test933 Q0 5736629 19 11.023866 Anserini +test933 Q0 5834435 20 10.934450 Anserini +test933 Q0 5736625 21 10.627584 Anserini +test933 Q0 10640283 22 10.582614 Anserini +test933 Q0 5834415 23 10.518728 Anserini +test933 Q0 9596362 24 10.346333 Anserini +test933 Q0 4490669 25 10.254800 Anserini +test933 Q0 6386108 26 10.155978 Anserini +test933 Q0 3019414 27 10.127605 Anserini +test933 Q0 3119385 28 10.033404 Anserini +test933 Q0 18419607 29 9.978780 Anserini +test933 Q0 17646227 30 9.935232 Anserini +test934 Q0 16853303 1 18.738045 Anserini +test934 Q0 9892243 2 18.442739 Anserini +test934 Q0 4583292 3 17.499760 Anserini +test934 Q0 16853316 4 17.406788 Anserini +test934 Q0 9892230 5 17.001650 Anserini +test934 Q0 4583303 6 16.903152 Anserini +test934 Q0 16853304 7 16.219263 Anserini +test934 Q0 16853318 8 16.049017 Anserini +test934 Q0 6530637 9 15.904212 Anserini +test934 Q0 12510704 10 15.807974 Anserini +test934 Q0 13424724 11 15.672927 Anserini +test934 Q0 16525974 12 15.326117 Anserini +test934 Q0 12510672 13 15.319201 Anserini +test934 Q0 9439512 14 15.282241 Anserini +test934 Q0 17388478 15 15.264896 Anserini +test934 Q0 6530639 16 14.802174 Anserini +test934 Q0 16853323 17 14.716688 Anserini +test934 Q0 6530595 18 14.673584 Anserini +test934 Q0 16853317 19 14.605625 Anserini +test934 Q0 9892238 20 14.464573 Anserini +test934 Q0 6530586 21 14.454127 Anserini +test934 Q0 8646398 22 14.369675 Anserini +test934 Q0 8646380 23 14.369675 Anserini +test934 Q0 9892241 24 14.345986 Anserini +test934 Q0 8646385 25 14.258159 Anserini +test934 Q0 9085673 26 14.202656 Anserini +test934 Q0 16555474 27 13.952473 Anserini +test934 Q0 6530606 28 13.850219 Anserini +test934 Q0 17692917 29 13.245752 Anserini +test934 Q0 6530631 30 13.241578 Anserini +test935 Q0 192899 1 16.615711 Anserini +test935 Q0 13903328 2 15.780375 Anserini +test935 Q0 11114518 3 14.923501 Anserini +test935 Q0 13505180 4 14.879718 Anserini +test935 Q0 16674399 5 14.610232 Anserini +test935 Q0 764459 6 14.390028 Anserini +test935 Q0 9656999 7 14.130516 Anserini +test935 Q0 11126424 8 14.041897 Anserini +test935 Q0 192896 9 13.933825 Anserini +test935 Q0 13150423 10 13.732722 Anserini +test935 Q0 192894 11 13.553135 Anserini +test935 Q0 10959695 12 13.464354 Anserini +test935 Q0 11140073 13 13.459343 Anserini +test935 Q0 10915786 14 13.434039 Anserini +test935 Q0 11177801 15 13.362458 Anserini +test935 Q0 192900 16 13.353110 Anserini +test935 Q0 10479669 17 13.335711 Anserini +test935 Q0 10959699 18 13.335711 Anserini +test935 Q0 2609187 19 13.240396 Anserini +test935 Q0 14622037 20 13.154892 Anserini +test935 Q0 9644672 21 13.129583 Anserini +test935 Q0 11123907 22 13.090952 Anserini +test935 Q0 9009334 23 13.068735 Anserini +test935 Q0 11207963 24 13.055561 Anserini +test935 Q0 10973223 25 12.914797 Anserini +test935 Q0 11126428 26 12.851459 Anserini +test935 Q0 11114516 27 12.710558 Anserini +test935 Q0 11000072 28 12.588846 Anserini +test935 Q0 11035369 29 12.588846 Anserini +test935 Q0 11055533 30 12.588846 Anserini +test936 Q0 4944208 1 10.686522 Anserini +test936 Q0 7608292 2 10.550640 Anserini +test936 Q0 311786 3 9.998926 Anserini +test936 Q0 15005837 4 9.985167 Anserini +test936 Q0 7608289 5 9.742477 Anserini +test936 Q0 13583103 6 9.394269 Anserini +test936 Q0 13220730 7 9.315100 Anserini +test936 Q0 6635121 8 9.158752 Anserini +test936 Q0 3876459 9 9.134933 Anserini +test936 Q0 774251 10 9.114289 Anserini +test936 Q0 11620568 11 9.106153 Anserini +test936 Q0 5817577 12 9.013787 Anserini +test936 Q0 19121565 13 8.986535 Anserini +test936 Q0 13829932 14 8.976309 Anserini +test936 Q0 14019096 15 8.959523 Anserini +test936 Q0 4465556 16 8.933867 Anserini +test936 Q0 14287601 17 8.882918 Anserini +test936 Q0 12253229 18 8.882563 Anserini +test936 Q0 15671371 19 8.874221 Anserini +test936 Q0 3039874 20 8.861226 Anserini +test936 Q0 16548034 21 8.813913 Anserini +test936 Q0 20611712 22 8.787434 Anserini +test936 Q0 2116604 23 8.777793 Anserini +test936 Q0 15408965 24 8.773297 Anserini +test936 Q0 6493536 25 8.759512 Anserini +test936 Q0 13185375 26 8.758941 Anserini +test936 Q0 18810852 27 8.756618 Anserini +test936 Q0 4958096 28 8.753441 Anserini +test936 Q0 20179467 29 8.735590 Anserini +test936 Q0 8639388 30 8.732203 Anserini +test937 Q0 6593203 1 15.782356 Anserini +test937 Q0 1758208 2 15.745110 Anserini +test937 Q0 1758206 3 15.634810 Anserini +test937 Q0 1758214 4 15.196501 Anserini +test937 Q0 6424529 5 14.831765 Anserini +test937 Q0 6593190 6 14.814154 Anserini +test937 Q0 1758246 7 14.714352 Anserini +test937 Q0 17339331 8 14.665771 Anserini +test937 Q0 101101 9 14.643334 Anserini +test937 Q0 14989371 10 14.589097 Anserini +test937 Q0 101149 11 14.587293 Anserini +test937 Q0 1758221 12 14.467899 Anserini +test937 Q0 1758235 13 14.467899 Anserini +test937 Q0 15857303 14 14.445558 Anserini +test937 Q0 4917778 15 14.444954 Anserini +test937 Q0 17098644 16 14.410870 Anserini +test937 Q0 4917774 17 14.408707 Anserini +test937 Q0 20030939 18 14.395246 Anserini +test937 Q0 14452265 19 14.385898 Anserini +test937 Q0 5325397 20 14.374731 Anserini +test937 Q0 1758297 21 14.349366 Anserini +test937 Q0 15919429 22 14.267574 Anserini +test937 Q0 5003386 23 14.261442 Anserini +test937 Q0 15857293 24 14.175274 Anserini +test937 Q0 1758242 25 14.170045 Anserini +test937 Q0 3698849 26 14.107424 Anserini +test937 Q0 4393540 27 14.048618 Anserini +test937 Q0 3415844 28 14.039855 Anserini +test937 Q0 11778843 29 14.024038 Anserini +test937 Q0 5885591 30 14.003745 Anserini +test938 Q0 10946736 1 12.888681 Anserini +test938 Q0 300961 2 12.586849 Anserini +test938 Q0 9949615 3 12.284917 Anserini +test938 Q0 10491339 4 12.185748 Anserini +test938 Q0 11531696 5 11.995886 Anserini +test938 Q0 10491337 6 11.816045 Anserini +test938 Q0 8387755 7 11.601781 Anserini +test938 Q0 14050357 8 11.399247 Anserini +test938 Q0 9006999 9 11.361509 Anserini +test938 Q0 9006998 10 11.342641 Anserini +test938 Q0 4861841 11 11.249496 Anserini +test938 Q0 1191667 12 11.244708 Anserini +test938 Q0 232271 13 11.196187 Anserini +test938 Q0 19745738 14 11.170718 Anserini +test938 Q0 7464141 15 11.145754 Anserini +test938 Q0 14384367 16 11.051321 Anserini +test938 Q0 6283700 17 11.022825 Anserini +test938 Q0 18565580 18 10.981683 Anserini +test938 Q0 9722659 19 10.956120 Anserini +test938 Q0 12764191 20 10.937309 Anserini +test938 Q0 2967134 21 10.917835 Anserini +test938 Q0 5504369 22 10.903696 Anserini +test938 Q0 6874463 23 10.799121 Anserini +test938 Q0 9960378 24 10.765675 Anserini +test938 Q0 9950964 25 10.721735 Anserini +test938 Q0 14792684 26 10.719819 Anserini +test938 Q0 3370920 27 10.718359 Anserini +test938 Q0 4140267 28 10.696569 Anserini +test938 Q0 1496926 29 10.687581 Anserini +test938 Q0 11188177 30 10.645525 Anserini +test939 Q0 3453614 1 11.199512 Anserini +test939 Q0 9834497 2 10.946232 Anserini +test939 Q0 2886348 3 10.903368 Anserini +test939 Q0 5671281 4 10.870552 Anserini +test939 Q0 4721342 5 10.745284 Anserini +test939 Q0 11599883 6 10.713066 Anserini +test939 Q0 3874677 7 10.621332 Anserini +test939 Q0 16061642 8 10.599325 Anserini +test939 Q0 13304163 9 10.506116 Anserini +test939 Q0 20947824 10 10.431406 Anserini +test939 Q0 12774272 11 10.415554 Anserini +test939 Q0 18794814 12 10.365861 Anserini +test939 Q0 1271031 13 10.318048 Anserini +test939 Q0 15084078 14 10.314350 Anserini +test939 Q0 2886351 15 10.294991 Anserini +test939 Q0 2105840 16 10.282852 Anserini +test939 Q0 3249774 17 10.250181 Anserini +test939 Q0 9197007 18 10.204734 Anserini +test939 Q0 126118 19 10.199616 Anserini +test939 Q0 15541534 20 10.189007 Anserini +test939 Q0 39089 21 10.185726 Anserini +test939 Q0 11941940 22 10.180803 Anserini +test939 Q0 17679592 23 10.165684 Anserini +test939 Q0 1748481 24 10.164230 Anserini +test939 Q0 17244342 25 10.160723 Anserini +test939 Q0 16232597 26 10.151363 Anserini +test939 Q0 17937934 27 10.122138 Anserini +test939 Q0 11482245 28 10.075383 Anserini +test939 Q0 20947838 29 10.039957 Anserini +test939 Q0 15184935 30 10.019737 Anserini +test94 Q0 2249015 1 16.507814 Anserini +test94 Q0 20064224 2 15.638048 Anserini +test94 Q0 2249022 3 14.564695 Anserini +test94 Q0 2249018 4 13.741162 Anserini +test94 Q0 2249021 5 12.868516 Anserini +test94 Q0 2249020 6 12.855066 Anserini +test94 Q0 5371981 7 12.754998 Anserini +test94 Q0 11169030 8 12.749982 Anserini +test94 Q0 2249016 9 12.612417 Anserini +test94 Q0 10051008 10 12.148020 Anserini +test94 Q0 3354972 11 12.012222 Anserini +test94 Q0 12144093 12 12.010464 Anserini +test94 Q0 797705 13 11.737305 Anserini +test94 Q0 2249019 14 11.389261 Anserini +test94 Q0 2249017 15 11.261571 Anserini +test94 Q0 10074550 16 11.212139 Anserini +test94 Q0 12144097 17 11.197357 Anserini +test94 Q0 8046261 18 10.927603 Anserini +test94 Q0 5376095 19 10.927603 Anserini +test94 Q0 12144094 20 10.876865 Anserini +test94 Q0 10074541 21 10.820779 Anserini +test94 Q0 16165166 22 10.796829 Anserini +test94 Q0 3164790 23 10.793169 Anserini +test94 Q0 18629132 24 10.741166 Anserini +test94 Q0 4876712 25 10.736253 Anserini +test94 Q0 13114040 26 10.716075 Anserini +test94 Q0 4692835 27 10.716075 Anserini +test94 Q0 428410 28 10.716075 Anserini +test94 Q0 13113944 29 10.584086 Anserini +test94 Q0 14854021 30 10.580959 Anserini +test940 Q0 398412 1 24.057993 Anserini +test940 Q0 424262 2 23.566280 Anserini +test940 Q0 424242 3 23.349098 Anserini +test940 Q0 424243 4 22.982182 Anserini +test940 Q0 424237 5 22.686808 Anserini +test940 Q0 15070324 6 22.434484 Anserini +test940 Q0 8074389 7 22.434484 Anserini +test940 Q0 5745078 8 22.086090 Anserini +test940 Q0 424215 9 21.916901 Anserini +test940 Q0 398377 10 21.894409 Anserini +test940 Q0 398406 11 21.757580 Anserini +test940 Q0 398408 12 21.700640 Anserini +test940 Q0 2440144 13 21.590548 Anserini +test940 Q0 19721943 14 21.454554 Anserini +test940 Q0 194536 15 21.312857 Anserini +test940 Q0 3312183 16 21.251757 Anserini +test940 Q0 907074 17 21.211344 Anserini +test940 Q0 424226 18 21.185324 Anserini +test940 Q0 424231 19 21.181484 Anserini +test940 Q0 907066 20 21.154720 Anserini +test940 Q0 866462 21 21.123730 Anserini +test940 Q0 929819 22 21.092327 Anserini +test940 Q0 2440146 23 20.903576 Anserini +test940 Q0 398398 24 20.705944 Anserini +test940 Q0 1665439 25 20.506874 Anserini +test940 Q0 1665463 26 20.462934 Anserini +test940 Q0 398396 27 20.449013 Anserini +test940 Q0 398376 28 20.423332 Anserini +test940 Q0 6262780 29 20.336470 Anserini +test940 Q0 1665435 30 20.316401 Anserini +test941 Q0 14320304 1 14.318147 Anserini +test941 Q0 14320301 2 13.568224 Anserini +test941 Q0 12208592 3 12.827313 Anserini +test941 Q0 9114096 4 12.827313 Anserini +test941 Q0 7848568 5 12.350248 Anserini +test941 Q0 14320303 6 12.345078 Anserini +test941 Q0 14855472 7 12.313564 Anserini +test941 Q0 18285461 8 12.302375 Anserini +test941 Q0 14855471 9 12.237145 Anserini +test941 Q0 4222935 10 12.144949 Anserini +test941 Q0 5476244 11 11.423388 Anserini +test941 Q0 9692154 12 11.365505 Anserini +test941 Q0 2060566 13 11.221977 Anserini +test941 Q0 5713077 14 10.953299 Anserini +test941 Q0 9114097 15 10.882029 Anserini +test941 Q0 9636860 16 10.652699 Anserini +test941 Q0 9458766 17 10.624366 Anserini +test941 Q0 5833911 18 10.605246 Anserini +test941 Q0 14660614 19 10.561090 Anserini +test941 Q0 15370822 20 10.452653 Anserini +test941 Q0 11463397 21 10.448522 Anserini +test941 Q0 11463396 22 10.448522 Anserini +test941 Q0 5809468 23 10.406973 Anserini +test941 Q0 6104491 24 10.405375 Anserini +test941 Q0 10158973 25 10.359270 Anserini +test941 Q0 4197540 26 10.312090 Anserini +test941 Q0 4197568 27 10.312090 Anserini +test941 Q0 12227702 28 10.312090 Anserini +test941 Q0 11489687 29 10.287380 Anserini +test941 Q0 4197541 30 10.287380 Anserini +test942 Q0 1987329 1 17.267914 Anserini +test942 Q0 3294732 2 16.794344 Anserini +test942 Q0 8993113 3 16.482603 Anserini +test942 Q0 10482364 4 16.088369 Anserini +test942 Q0 4709249 5 16.071184 Anserini +test942 Q0 9303296 6 16.066475 Anserini +test942 Q0 3220872 7 15.811335 Anserini +test942 Q0 15915907 8 15.718273 Anserini +test942 Q0 13705833 9 15.708170 Anserini +test942 Q0 313834 10 15.681561 Anserini +test942 Q0 2363222 11 15.646425 Anserini +test942 Q0 2528005 12 15.637615 Anserini +test942 Q0 9722991 13 15.623573 Anserini +test942 Q0 9642049 14 15.534924 Anserini +test942 Q0 9868284 15 15.406207 Anserini +test942 Q0 7937051 16 15.330396 Anserini +test942 Q0 6802638 17 15.310951 Anserini +test942 Q0 11525952 18 15.297960 Anserini +test942 Q0 3220868 19 15.282607 Anserini +test942 Q0 4627565 20 15.258806 Anserini +test942 Q0 3135958 21 15.258144 Anserini +test942 Q0 9861591 22 15.219123 Anserini +test942 Q0 4569542 23 15.202147 Anserini +test942 Q0 9862531 24 15.196796 Anserini +test942 Q0 7700629 25 15.188104 Anserini +test942 Q0 14197183 26 15.121540 Anserini +test942 Q0 3198415 27 15.072369 Anserini +test942 Q0 15107087 28 14.998096 Anserini +test942 Q0 7937241 29 14.948456 Anserini +test942 Q0 3220825 30 14.908640 Anserini +test943 Q0 13544793 1 14.852202 Anserini +test943 Q0 4169799 2 14.166754 Anserini +test943 Q0 4342362 3 14.117215 Anserini +test943 Q0 1903698 4 14.097353 Anserini +test943 Q0 5502413 5 13.771599 Anserini +test943 Q0 242108 6 13.762025 Anserini +test943 Q0 4169933 7 13.587882 Anserini +test943 Q0 13544743 8 13.407766 Anserini +test943 Q0 5242883 9 13.173669 Anserini +test943 Q0 242076 10 13.120012 Anserini +test943 Q0 3864646 11 12.817879 Anserini +test943 Q0 4714385 12 12.805023 Anserini +test943 Q0 982487 13 12.785728 Anserini +test943 Q0 4342377 14 12.767960 Anserini +test943 Q0 10759539 15 12.762560 Anserini +test943 Q0 10759544 16 12.709860 Anserini +test943 Q0 16820123 17 12.645051 Anserini +test943 Q0 13544765 18 12.615695 Anserini +test943 Q0 8588064 19 12.614706 Anserini +test943 Q0 6829656 20 12.544537 Anserini +test943 Q0 4171610 21 12.544422 Anserini +test943 Q0 4171826 22 12.466001 Anserini +test943 Q0 7641987 23 12.465739 Anserini +test943 Q0 15198072 24 12.433234 Anserini +test943 Q0 4341596 25 12.422905 Anserini +test943 Q0 4171727 26 12.416134 Anserini +test943 Q0 2842329 27 12.405229 Anserini +test943 Q0 20012300 28 12.371492 Anserini +test943 Q0 10776267 29 12.331942 Anserini +test943 Q0 4341872 30 12.329997 Anserini +test944 Q0 66626 1 10.875689 Anserini +test944 Q0 15233170 2 10.287926 Anserini +test944 Q0 8833429 3 10.143691 Anserini +test944 Q0 1921538 4 9.602016 Anserini +test944 Q0 13122808 5 9.482642 Anserini +test944 Q0 2215563 6 9.443981 Anserini +test944 Q0 9663270 7 9.275121 Anserini +test944 Q0 2215643 8 8.963333 Anserini +test944 Q0 3667753 9 8.883563 Anserini +test944 Q0 15026559 10 8.818664 Anserini +test944 Q0 2001331 11 8.779932 Anserini +test944 Q0 9842519 12 8.779932 Anserini +test944 Q0 4402804 13 8.760406 Anserini +test944 Q0 14296599 14 8.747599 Anserini +test944 Q0 3341953 15 8.736507 Anserini +test944 Q0 9663271 16 8.736340 Anserini +test944 Q0 8930447 17 8.710798 Anserini +test944 Q0 8930451 18 8.710798 Anserini +test944 Q0 2017376 19 8.637351 Anserini +test944 Q0 1532123 20 8.607417 Anserini +test944 Q0 323128 21 8.574000 Anserini +test944 Q0 7760815 22 8.547045 Anserini +test944 Q0 190196 23 8.496874 Anserini +test944 Q0 4680452 24 8.483742 Anserini +test944 Q0 1394963 25 8.478960 Anserini +test944 Q0 11193793 26 8.473067 Anserini +test944 Q0 4661196 27 8.461309 Anserini +test944 Q0 309816 28 8.446489 Anserini +test944 Q0 335750 29 8.423812 Anserini +test944 Q0 758310 30 8.423196 Anserini +test945 Q0 160672 1 13.977548 Anserini +test945 Q0 845063 2 13.417971 Anserini +test945 Q0 794936 3 13.242338 Anserini +test945 Q0 794937 4 13.036080 Anserini +test945 Q0 9147784 5 13.021474 Anserini +test945 Q0 794968 6 12.910367 Anserini +test945 Q0 5284093 7 12.837133 Anserini +test945 Q0 690295 8 12.591231 Anserini +test945 Q0 91638 9 12.524175 Anserini +test945 Q0 15834884 10 12.451860 Anserini +test945 Q0 7865629 11 12.333879 Anserini +test945 Q0 4094565 12 12.159029 Anserini +test945 Q0 794963 13 11.989968 Anserini +test945 Q0 5284095 14 11.861856 Anserini +test945 Q0 10232346 15 11.849373 Anserini +test945 Q0 794944 16 11.794956 Anserini +test945 Q0 14224753 17 11.789587 Anserini +test945 Q0 794951 18 11.747605 Anserini +test945 Q0 794960 19 11.747605 Anserini +test945 Q0 794938 20 11.746416 Anserini +test945 Q0 9704146 21 11.646526 Anserini +test945 Q0 12090586 22 11.639616 Anserini +test945 Q0 8643094 23 11.634154 Anserini +test945 Q0 12090589 24 11.627673 Anserini +test945 Q0 9704150 25 11.620386 Anserini +test945 Q0 12176182 26 11.583958 Anserini +test945 Q0 18533082 27 11.579760 Anserini +test945 Q0 794948 28 11.575151 Anserini +test945 Q0 6365175 29 11.573860 Anserini +test945 Q0 15580739 30 11.562548 Anserini +test946 Q0 5262651 1 18.896135 Anserini +test946 Q0 17428795 2 17.014517 Anserini +test946 Q0 3115937 3 16.783875 Anserini +test946 Q0 6016503 4 15.858715 Anserini +test946 Q0 2404836 5 15.385352 Anserini +test946 Q0 7915135 6 15.108919 Anserini +test946 Q0 8545066 7 15.094225 Anserini +test946 Q0 2404698 8 15.067808 Anserini +test946 Q0 3237452 9 14.494436 Anserini +test946 Q0 12931741 10 14.494436 Anserini +test946 Q0 17428794 11 14.384233 Anserini +test946 Q0 10961131 12 14.334340 Anserini +test946 Q0 1078984 13 14.270716 Anserini +test946 Q0 2927680 14 14.247654 Anserini +test946 Q0 2927672 15 14.247654 Anserini +test946 Q0 10961132 16 14.128290 Anserini +test946 Q0 8291243 17 14.062380 Anserini +test946 Q0 17428796 18 13.822536 Anserini +test946 Q0 18565862 19 13.810399 Anserini +test946 Q0 8584121 20 13.756586 Anserini +test946 Q0 7042901 21 13.635426 Anserini +test946 Q0 2404780 22 13.542618 Anserini +test946 Q0 6533590 23 13.529916 Anserini +test946 Q0 2404724 24 13.516468 Anserini +test946 Q0 3115932 25 13.467527 Anserini +test946 Q0 3115939 26 13.378799 Anserini +test946 Q0 3292102 27 13.353193 Anserini +test946 Q0 6016504 28 13.337819 Anserini +test946 Q0 6642831 29 13.195916 Anserini +test946 Q0 3645731 30 13.195916 Anserini +test947 Q0 119751 1 17.064730 Anserini +test947 Q0 119659 2 17.009977 Anserini +test947 Q0 119688 3 16.635378 Anserini +test947 Q0 17970836 4 16.481058 Anserini +test947 Q0 17970838 5 16.481058 Anserini +test947 Q0 576052 6 16.166502 Anserini +test947 Q0 13223960 7 16.008411 Anserini +test947 Q0 13223963 8 15.466024 Anserini +test947 Q0 119752 9 15.372580 Anserini +test947 Q0 7601821 10 15.316487 Anserini +test947 Q0 13223955 11 15.021911 Anserini +test947 Q0 13223977 12 14.577048 Anserini +test947 Q0 576048 13 14.439176 Anserini +test947 Q0 11726666 14 14.382727 Anserini +test947 Q0 3734816 15 14.305473 Anserini +test947 Q0 119683 16 14.227285 Anserini +test947 Q0 2345731 17 14.223391 Anserini +test947 Q0 8812864 18 14.172117 Anserini +test947 Q0 13223954 19 14.155501 Anserini +test947 Q0 16437622 20 14.043041 Anserini +test947 Q0 16437629 21 14.043041 Anserini +test947 Q0 11726665 22 14.035299 Anserini +test947 Q0 13223959 23 13.936211 Anserini +test947 Q0 10021806 24 13.913624 Anserini +test947 Q0 119677 25 13.896038 Anserini +test947 Q0 10278533 26 13.843422 Anserini +test947 Q0 1319935 27 13.756939 Anserini +test947 Q0 902321 28 13.746801 Anserini +test947 Q0 119676 29 13.690091 Anserini +test947 Q0 119679 30 13.676781 Anserini +test948 Q0 19609721 1 16.307079 Anserini +test948 Q0 20330442 2 16.201496 Anserini +test948 Q0 4070587 3 15.323009 Anserini +test948 Q0 3869168 4 15.176193 Anserini +test948 Q0 20342785 5 14.824875 Anserini +test948 Q0 20342791 6 14.824875 Anserini +test948 Q0 20342786 7 14.673126 Anserini +test948 Q0 1526241 8 14.576076 Anserini +test948 Q0 70988 9 14.520699 Anserini +test948 Q0 11608814 10 14.516450 Anserini +test948 Q0 16749135 11 14.397522 Anserini +test948 Q0 5898755 12 14.346378 Anserini +test948 Q0 3948163 13 14.346378 Anserini +test948 Q0 5781682 14 14.326979 Anserini +test948 Q0 16749128 15 14.282434 Anserini +test948 Q0 19647215 16 14.156081 Anserini +test948 Q0 4184534 17 14.149015 Anserini +test948 Q0 5898790 18 14.086916 Anserini +test948 Q0 19647222 19 14.075119 Anserini +test948 Q0 19397614 20 14.070422 Anserini +test948 Q0 5898778 21 14.022018 Anserini +test948 Q0 2323375 22 13.991919 Anserini +test948 Q0 5446888 23 13.977365 Anserini +test948 Q0 19169336 24 13.970772 Anserini +test948 Q0 3948138 25 13.952002 Anserini +test948 Q0 18163854 26 13.846388 Anserini +test948 Q0 16867282 27 13.846388 Anserini +test948 Q0 1495437 28 13.841776 Anserini +test948 Q0 17271756 29 13.813647 Anserini +test948 Q0 174376 30 13.802000 Anserini +test949 Q0 89251 1 24.265638 Anserini +test949 Q0 810871 2 20.590740 Anserini +test949 Q0 18492864 3 20.528158 Anserini +test949 Q0 89249 4 19.902325 Anserini +test949 Q0 89252 5 19.586113 Anserini +test949 Q0 89250 6 19.539093 Anserini +test949 Q0 8445760 7 19.495230 Anserini +test949 Q0 8045368 8 19.314102 Anserini +test949 Q0 17138559 9 19.065737 Anserini +test949 Q0 6539031 10 18.914351 Anserini +test949 Q0 3612400 11 18.877817 Anserini +test949 Q0 1568334 12 17.898909 Anserini +test949 Q0 5877877 13 17.475376 Anserini +test949 Q0 19802386 14 17.417074 Anserini +test949 Q0 12934142 15 17.067307 Anserini +test949 Q0 13732970 16 16.946789 Anserini +test949 Q0 3919375 17 16.913313 Anserini +test949 Q0 17138558 18 16.827271 Anserini +test949 Q0 11471582 19 16.765612 Anserini +test949 Q0 1851877 20 16.647886 Anserini +test949 Q0 10480493 21 16.453566 Anserini +test949 Q0 810872 22 16.084021 Anserini +test949 Q0 8055415 23 15.795408 Anserini +test949 Q0 6539030 24 15.770018 Anserini +test949 Q0 10371369 25 15.618503 Anserini +test949 Q0 89255 26 15.457880 Anserini +test949 Q0 16546198 27 15.397566 Anserini +test949 Q0 195802 28 15.326805 Anserini +test949 Q0 6357309 29 15.322412 Anserini +test949 Q0 10556513 30 15.231105 Anserini +test95 Q0 5238989 1 21.282631 Anserini +test95 Q0 18743403 2 19.833189 Anserini +test95 Q0 20973151 3 19.748724 Anserini +test95 Q0 20973192 4 19.748724 Anserini +test95 Q0 5832105 5 19.738861 Anserini +test95 Q0 19233589 6 19.388660 Anserini +test95 Q0 5239084 7 19.075750 Anserini +test95 Q0 127652 8 18.682154 Anserini +test95 Q0 20973187 9 18.501568 Anserini +test95 Q0 12220110 10 18.323116 Anserini +test95 Q0 5709609 11 17.953428 Anserini +test95 Q0 5239044 12 17.825193 Anserini +test95 Q0 5239075 13 17.781820 Anserini +test95 Q0 20973180 14 17.771824 Anserini +test95 Q0 20973160 15 17.623016 Anserini +test95 Q0 127696 16 17.610203 Anserini +test95 Q0 9667436 17 17.605688 Anserini +test95 Q0 5239091 18 17.348888 Anserini +test95 Q0 5239059 19 17.262972 Anserini +test95 Q0 5239083 20 17.118469 Anserini +test95 Q0 5960182 21 17.079962 Anserini +test95 Q0 5239070 22 17.047314 Anserini +test95 Q0 5239089 23 17.013870 Anserini +test95 Q0 20973154 24 16.969450 Anserini +test95 Q0 5239090 25 16.938103 Anserini +test95 Q0 20973156 26 16.838816 Anserini +test95 Q0 20973159 27 16.792171 Anserini +test95 Q0 5239040 28 16.764557 Anserini +test95 Q0 5238992 29 16.691458 Anserini +test95 Q0 20973186 30 16.609999 Anserini +test950 Q0 1255008 1 11.899284 Anserini +test950 Q0 946599 2 11.743006 Anserini +test950 Q0 13411249 3 11.525294 Anserini +test950 Q0 13551228 4 11.333059 Anserini +test950 Q0 13521150 5 11.273191 Anserini +test950 Q0 11512110 6 11.224707 Anserini +test950 Q0 7014458 7 11.193427 Anserini +test950 Q0 4903973 8 11.127539 Anserini +test950 Q0 13647124 9 11.116878 Anserini +test950 Q0 3274074 10 11.106871 Anserini +test950 Q0 12820844 11 11.069466 Anserini +test950 Q0 4363648 12 10.990007 Anserini +test950 Q0 1079445 13 10.986923 Anserini +test950 Q0 2408545 14 10.969859 Anserini +test950 Q0 17283342 15 10.937352 Anserini +test950 Q0 1165869 16 10.911479 Anserini +test950 Q0 7961360 17 10.893229 Anserini +test950 Q0 11337130 18 10.863708 Anserini +test950 Q0 1547170 19 10.840958 Anserini +test950 Q0 1169257 20 10.825168 Anserini +test950 Q0 13533567 21 10.815621 Anserini +test950 Q0 12864496 22 10.775914 Anserini +test950 Q0 14267899 23 10.750460 Anserini +test950 Q0 5743167 24 10.662638 Anserini +test950 Q0 7343028 25 10.662638 Anserini +test950 Q0 947363 26 10.651233 Anserini +test950 Q0 1159125 27 10.592294 Anserini +test950 Q0 1043942 28 10.587214 Anserini +test950 Q0 3184476 29 10.581888 Anserini +test950 Q0 7030611 30 10.581531 Anserini +test951 Q0 16790813 1 16.466169 Anserini +test951 Q0 20616817 2 14.592222 Anserini +test951 Q0 9943346 3 14.117409 Anserini +test951 Q0 326154 4 13.844222 Anserini +test951 Q0 13570316 5 13.723403 Anserini +test951 Q0 1347068 6 13.682886 Anserini +test951 Q0 3512323 7 13.676067 Anserini +test951 Q0 1347074 8 13.583164 Anserini +test951 Q0 156468 9 13.294650 Anserini +test951 Q0 625577 10 13.133137 Anserini +test951 Q0 1347075 11 13.106976 Anserini +test951 Q0 1586462 12 13.047292 Anserini +test951 Q0 19548530 13 12.972930 Anserini +test951 Q0 7183675 14 12.951385 Anserini +test951 Q0 17235518 15 12.881569 Anserini +test951 Q0 923089 16 12.868905 Anserini +test951 Q0 8222336 17 12.832400 Anserini +test951 Q0 617080 18 12.781045 Anserini +test951 Q0 7334837 19 12.762443 Anserini +test951 Q0 6541813 20 12.680005 Anserini +test951 Q0 11697987 21 12.557760 Anserini +test951 Q0 4081507 22 12.545144 Anserini +test951 Q0 233972 23 12.477401 Anserini +test951 Q0 6017352 24 12.467344 Anserini +test951 Q0 326160 25 12.422923 Anserini +test951 Q0 3512344 26 12.422923 Anserini +test951 Q0 5451384 27 12.409109 Anserini +test951 Q0 4904 28 12.356112 Anserini +test951 Q0 12054217 29 12.290780 Anserini +test951 Q0 178929 30 12.282074 Anserini +test952 Q0 4320725 1 14.091190 Anserini +test952 Q0 11992264 2 13.386479 Anserini +test952 Q0 2267443 3 13.219648 Anserini +test952 Q0 763387 4 13.082528 Anserini +test952 Q0 4281 5 12.420342 Anserini +test952 Q0 11992303 6 12.355763 Anserini +test952 Q0 95367 7 12.346514 Anserini +test952 Q0 1823715 8 12.298765 Anserini +test952 Q0 11860557 9 12.292836 Anserini +test952 Q0 1222508 10 12.250035 Anserini +test952 Q0 1975114 11 12.109021 Anserini +test952 Q0 1634837 12 11.917436 Anserini +test952 Q0 4412 13 11.837852 Anserini +test952 Q0 7877820 14 11.815883 Anserini +test952 Q0 782498 15 11.812252 Anserini +test952 Q0 4407061 16 11.802123 Anserini +test952 Q0 12057797 17 11.788641 Anserini +test952 Q0 3115793 18 11.761358 Anserini +test952 Q0 2003453 19 11.739611 Anserini +test952 Q0 20643092 20 11.682199 Anserini +test952 Q0 12057801 21 11.577069 Anserini +test952 Q0 18513974 22 11.534395 Anserini +test952 Q0 8724068 23 11.532509 Anserini +test952 Q0 3838510 24 11.526888 Anserini +test952 Q0 6600598 25 11.501679 Anserini +test952 Q0 5172345 26 11.448742 Anserini +test952 Q0 2097306 27 11.407230 Anserini +test952 Q0 13879053 28 11.395414 Anserini +test952 Q0 482007 29 11.395339 Anserini +test952 Q0 13854832 30 11.381772 Anserini +test953 Q0 12365044 1 12.502529 Anserini +test953 Q0 7504872 2 11.584454 Anserini +test953 Q0 13785501 3 11.395715 Anserini +test953 Q0 2922087 4 11.235586 Anserini +test953 Q0 14755240 5 11.224156 Anserini +test953 Q0 6784962 6 11.208233 Anserini +test953 Q0 19704987 7 11.049320 Anserini +test953 Q0 3762796 8 11.027123 Anserini +test953 Q0 501027 9 10.834974 Anserini +test953 Q0 2922065 10 10.615974 Anserini +test953 Q0 6426633 11 10.502275 Anserini +test953 Q0 3426434 12 10.485025 Anserini +test953 Q0 4411965 13 10.439037 Anserini +test953 Q0 18951784 14 10.427190 Anserini +test953 Q0 6426644 15 10.391718 Anserini +test953 Q0 15964336 16 10.373816 Anserini +test953 Q0 195953 17 10.330771 Anserini +test953 Q0 12365050 18 10.324009 Anserini +test953 Q0 771934 19 10.269105 Anserini +test953 Q0 1440824 20 10.202742 Anserini +test953 Q0 4965082 21 10.177189 Anserini +test953 Q0 771945 22 10.174986 Anserini +test953 Q0 9878228 23 10.091114 Anserini +test953 Q0 12740402 24 10.082627 Anserini +test953 Q0 5710557 25 9.928454 Anserini +test953 Q0 13735091 26 9.899862 Anserini +test953 Q0 369011 27 9.879297 Anserini +test953 Q0 878846 28 9.780656 Anserini +test953 Q0 9024537 29 9.765469 Anserini +test953 Q0 15530294 30 9.761456 Anserini +test954 Q0 10266918 1 27.460495 Anserini +test954 Q0 20362811 2 24.041868 Anserini +test954 Q0 3003775 3 23.412464 Anserini +test954 Q0 3107843 4 22.671875 Anserini +test954 Q0 2826292 5 22.410408 Anserini +test954 Q0 18052704 6 22.306263 Anserini +test954 Q0 119349 7 21.721609 Anserini +test954 Q0 17955815 8 21.674232 Anserini +test954 Q0 7508750 9 21.640701 Anserini +test954 Q0 695751 10 21.631453 Anserini +test954 Q0 8813664 11 21.512798 Anserini +test954 Q0 15046973 12 21.355721 Anserini +test954 Q0 20362814 13 21.005920 Anserini +test954 Q0 15046977 14 21.005344 Anserini +test954 Q0 2826310 15 20.914055 Anserini +test954 Q0 2931919 16 20.791275 Anserini +test954 Q0 9247473 17 20.708509 Anserini +test954 Q0 2171041 18 20.429903 Anserini +test954 Q0 4413072 19 20.304661 Anserini +test954 Q0 3407815 20 20.293325 Anserini +test954 Q0 3107844 21 20.273207 Anserini +test954 Q0 15046974 22 20.260061 Anserini +test954 Q0 800848 23 20.237202 Anserini +test954 Q0 7508754 24 20.162231 Anserini +test954 Q0 8813670 25 20.123655 Anserini +test954 Q0 2032130 26 20.039318 Anserini +test954 Q0 8811763 27 19.896065 Anserini +test954 Q0 695750 28 19.768394 Anserini +test954 Q0 684381 29 19.739269 Anserini +test954 Q0 1663769 30 19.554235 Anserini +test955 Q0 18478874 1 12.095538 Anserini +test955 Q0 1458543 2 11.897524 Anserini +test955 Q0 6817716 3 11.632661 Anserini +test955 Q0 6817715 4 11.564656 Anserini +test955 Q0 18441834 5 11.531540 Anserini +test955 Q0 6751526 6 11.436560 Anserini +test955 Q0 7802126 7 11.410832 Anserini +test955 Q0 5256987 8 11.397219 Anserini +test955 Q0 18441783 9 11.352927 Anserini +test955 Q0 13576254 10 11.332840 Anserini +test955 Q0 6216085 11 11.328996 Anserini +test955 Q0 7802127 12 11.303722 Anserini +test955 Q0 11202723 13 11.270664 Anserini +test955 Q0 6751528 14 11.262359 Anserini +test955 Q0 6751525 15 11.198975 Anserini +test955 Q0 6751537 16 11.179216 Anserini +test955 Q0 5131002 17 11.142314 Anserini +test955 Q0 9575440 18 11.139083 Anserini +test955 Q0 5256983 19 11.127872 Anserini +test955 Q0 18922360 20 11.117559 Anserini +test955 Q0 8004109 21 11.008953 Anserini +test955 Q0 7284153 22 10.989699 Anserini +test955 Q0 19540296 23 10.989421 Anserini +test955 Q0 2259205 24 10.984493 Anserini +test955 Q0 3093933 25 10.940772 Anserini +test955 Q0 1458551 26 10.848344 Anserini +test955 Q0 18441929 27 10.818434 Anserini +test955 Q0 10256226 28 10.754132 Anserini +test955 Q0 18922353 29 10.695107 Anserini +test955 Q0 19070634 30 10.675088 Anserini +test956 Q0 77650 1 17.225655 Anserini +test956 Q0 6567938 2 16.345848 Anserini +test956 Q0 7443071 3 15.911896 Anserini +test956 Q0 3603115 4 15.883913 Anserini +test956 Q0 16129088 5 15.538083 Anserini +test956 Q0 166053 6 15.495593 Anserini +test956 Q0 12373026 7 15.480035 Anserini +test956 Q0 11366674 8 15.413954 Anserini +test956 Q0 10608209 9 15.185734 Anserini +test956 Q0 11366679 10 15.063148 Anserini +test956 Q0 234581 11 14.998495 Anserini +test956 Q0 77629 12 14.945375 Anserini +test956 Q0 2918806 13 14.887356 Anserini +test956 Q0 14112820 14 14.862577 Anserini +test956 Q0 3935007 15 14.772232 Anserini +test956 Q0 77689 16 14.751085 Anserini +test956 Q0 18349290 17 14.719137 Anserini +test956 Q0 16129108 18 14.604277 Anserini +test956 Q0 10143379 19 14.568280 Anserini +test956 Q0 3912619 20 14.564687 Anserini +test956 Q0 11665820 21 14.470098 Anserini +test956 Q0 7308871 22 14.445295 Anserini +test956 Q0 397656 23 14.374290 Anserini +test956 Q0 14022821 24 14.342528 Anserini +test956 Q0 18349294 25 14.316578 Anserini +test956 Q0 16026943 26 14.311632 Anserini +test956 Q0 8645886 27 14.304403 Anserini +test956 Q0 18349291 28 14.287507 Anserini +test956 Q0 2990056 29 14.222610 Anserini +test956 Q0 8645862 30 14.215163 Anserini +test957 Q0 678784 1 17.182198 Anserini +test957 Q0 678750 2 16.483978 Anserini +test957 Q0 9378779 3 16.392597 Anserini +test957 Q0 678789 4 16.360270 Anserini +test957 Q0 5422213 5 15.880667 Anserini +test957 Q0 678767 6 15.362639 Anserini +test957 Q0 885054 7 15.292930 Anserini +test957 Q0 7979747 8 15.229646 Anserini +test957 Q0 678752 9 15.173159 Anserini +test957 Q0 678765 10 15.072566 Anserini +test957 Q0 6394899 11 15.072566 Anserini +test957 Q0 5422210 12 14.852901 Anserini +test957 Q0 16381859 13 14.796993 Anserini +test957 Q0 5422218 14 14.743195 Anserini +test957 Q0 678779 15 14.695456 Anserini +test957 Q0 986868 16 14.665106 Anserini +test957 Q0 4209205 17 14.235024 Anserini +test957 Q0 14221247 18 14.178937 Anserini +test957 Q0 15724153 19 14.175025 Anserini +test957 Q0 15404466 20 14.130095 Anserini +test957 Q0 651057 21 14.024216 Anserini +test957 Q0 678780 22 14.020757 Anserini +test957 Q0 19505348 23 13.899520 Anserini +test957 Q0 287113 24 13.899520 Anserini +test957 Q0 5422214 25 13.899520 Anserini +test957 Q0 6249163 26 13.803654 Anserini +test957 Q0 678782 27 13.768042 Anserini +test957 Q0 678769 28 13.709101 Anserini +test957 Q0 11642362 29 13.604803 Anserini +test957 Q0 1825656 30 13.584470 Anserini +test958 Q0 8740450 1 13.537128 Anserini +test958 Q0 5360098 2 12.204885 Anserini +test958 Q0 5360099 3 12.204885 Anserini +test958 Q0 11477774 4 12.199572 Anserini +test958 Q0 499385 5 11.858075 Anserini +test958 Q0 1851628 6 11.650483 Anserini +test958 Q0 677572 7 11.000264 Anserini +test958 Q0 9979984 8 10.885670 Anserini +test958 Q0 19375525 9 10.175667 Anserini +test958 Q0 15125739 10 10.152775 Anserini +test958 Q0 18585065 11 10.118911 Anserini +test958 Q0 19123903 12 9.622774 Anserini +test958 Q0 243809 13 9.517751 Anserini +test958 Q0 7679277 14 9.346255 Anserini +test958 Q0 18149226 15 9.328542 Anserini +test958 Q0 17348985 16 9.319451 Anserini +test958 Q0 2878352 17 9.270765 Anserini +test958 Q0 15398723 18 9.249301 Anserini +test958 Q0 499386 19 9.234211 Anserini +test958 Q0 9025203 20 9.200775 Anserini +test958 Q0 19375526 21 9.200775 Anserini +test958 Q0 12935928 22 9.200775 Anserini +test958 Q0 12326483 23 9.152489 Anserini +test958 Q0 7400773 24 9.152489 Anserini +test958 Q0 12935930 25 9.152489 Anserini +test958 Q0 7194028 26 9.123021 Anserini +test958 Q0 7400777 27 9.104820 Anserini +test958 Q0 15579470 28 9.071837 Anserini +test958 Q0 17206861 29 9.014394 Anserini +test958 Q0 17106051 30 8.947689 Anserini +test959 Q0 17011194 1 15.032126 Anserini +test959 Q0 4861852 2 14.938832 Anserini +test959 Q0 2376591 3 14.573642 Anserini +test959 Q0 84902 4 14.373128 Anserini +test959 Q0 1076861 5 14.204209 Anserini +test959 Q0 9615329 6 14.091292 Anserini +test959 Q0 1223447 7 13.885753 Anserini +test959 Q0 1083276 8 13.828983 Anserini +test959 Q0 11270288 9 13.811973 Anserini +test959 Q0 7426372 10 13.767836 Anserini +test959 Q0 15469352 11 13.764740 Anserini +test959 Q0 1083290 12 13.704194 Anserini +test959 Q0 12443643 13 13.650262 Anserini +test959 Q0 12343158 14 13.647637 Anserini +test959 Q0 7370202 15 13.538179 Anserini +test959 Q0 7426376 16 13.421950 Anserini +test959 Q0 1162011 17 13.376679 Anserini +test959 Q0 3154526 18 13.317568 Anserini +test959 Q0 20213945 19 13.301770 Anserini +test959 Q0 6616366 20 13.263305 Anserini +test959 Q0 4861853 21 13.260664 Anserini +test959 Q0 12443615 22 13.144011 Anserini +test959 Q0 199740 23 13.124086 Anserini +test959 Q0 1223477 24 13.108065 Anserini +test959 Q0 14058346 25 12.981055 Anserini +test959 Q0 1890311 26 12.971184 Anserini +test959 Q0 15886554 27 12.909534 Anserini +test959 Q0 1038870 28 12.870740 Anserini +test959 Q0 1005853 29 12.852439 Anserini +test959 Q0 1164465 30 12.844278 Anserini +test96 Q0 16180172 1 15.228895 Anserini +test96 Q0 16180187 2 13.770702 Anserini +test96 Q0 16180162 3 13.490671 Anserini +test96 Q0 16180178 4 13.467031 Anserini +test96 Q0 16180161 5 13.406771 Anserini +test96 Q0 16180186 6 13.135780 Anserini +test96 Q0 6459154 7 13.018842 Anserini +test96 Q0 16180185 8 12.923249 Anserini +test96 Q0 115793 9 12.915648 Anserini +test96 Q0 16180177 10 12.886832 Anserini +test96 Q0 16180180 11 12.475316 Anserini +test96 Q0 16180183 12 12.405002 Anserini +test96 Q0 16180176 13 12.403311 Anserini +test96 Q0 2537617 14 12.139215 Anserini +test96 Q0 954275 15 12.139215 Anserini +test96 Q0 6459157 16 11.962540 Anserini +test96 Q0 11329705 17 11.819598 Anserini +test96 Q0 6459155 18 11.749703 Anserini +test96 Q0 7261952 19 11.586329 Anserini +test96 Q0 16180179 20 11.586329 Anserini +test96 Q0 16180184 21 11.586329 Anserini +test96 Q0 16180163 22 11.506966 Anserini +test96 Q0 16180171 23 11.491879 Anserini +test96 Q0 2266534 24 11.413373 Anserini +test96 Q0 2266542 25 11.413373 Anserini +test96 Q0 775488 26 11.413373 Anserini +test96 Q0 7054945 27 11.336077 Anserini +test96 Q0 16180170 28 11.238701 Anserini +test96 Q0 16180173 29 11.238701 Anserini +test96 Q0 16318186 30 11.238701 Anserini +test960 Q0 16653315 1 10.870137 Anserini +test960 Q0 8687682 2 10.844624 Anserini +test960 Q0 8687683 3 10.738974 Anserini +test960 Q0 11633571 4 10.652832 Anserini +test960 Q0 10031883 5 10.613345 Anserini +test960 Q0 19541686 6 10.613345 Anserini +test960 Q0 5325634 7 10.598434 Anserini +test960 Q0 14079776 8 10.590642 Anserini +test960 Q0 9351527 9 10.587617 Anserini +test960 Q0 15680370 10 10.544679 Anserini +test960 Q0 17750783 11 10.494675 Anserini +test960 Q0 7755495 12 10.460648 Anserini +test960 Q0 12371663 13 10.426466 Anserini +test960 Q0 18730967 14 10.397066 Anserini +test960 Q0 17555295 15 10.397066 Anserini +test960 Q0 15186432 16 10.358760 Anserini +test960 Q0 11832067 17 10.348737 Anserini +test960 Q0 20203760 18 10.316517 Anserini +test960 Q0 4512875 19 10.264730 Anserini +test960 Q0 12020996 20 10.238251 Anserini +test960 Q0 12124355 21 10.213710 Anserini +test960 Q0 13804253 22 10.213710 Anserini +test960 Q0 13165185 23 10.203025 Anserini +test960 Q0 4562435 24 10.179471 Anserini +test960 Q0 12726132 25 10.163272 Anserini +test960 Q0 14079782 26 10.163272 Anserini +test960 Q0 13519048 27 10.148470 Anserini +test960 Q0 13519049 28 10.148470 Anserini +test960 Q0 17828458 29 10.148470 Anserini +test960 Q0 12726115 30 10.113404 Anserini +test961 Q0 6146462 1 13.119119 Anserini +test961 Q0 3102303 2 10.881124 Anserini +test961 Q0 20709480 3 10.822596 Anserini +test961 Q0 20709472 4 10.780689 Anserini +test961 Q0 6146459 5 10.263676 Anserini +test961 Q0 3927071 6 10.160651 Anserini +test961 Q0 7708753 7 9.987384 Anserini +test961 Q0 19635094 8 9.939583 Anserini +test961 Q0 14693031 9 9.912756 Anserini +test961 Q0 4393124 10 9.782647 Anserini +test961 Q0 4114679 11 9.726288 Anserini +test961 Q0 15957633 12 9.605537 Anserini +test961 Q0 17112855 13 9.557552 Anserini +test961 Q0 13433457 14 9.510651 Anserini +test961 Q0 20090340 15 9.504238 Anserini +test961 Q0 13043927 16 9.499603 Anserini +test961 Q0 20854612 17 9.495337 Anserini +test961 Q0 1968127 18 9.482877 Anserini +test961 Q0 12114583 19 9.447289 Anserini +test961 Q0 19041880 20 9.400572 Anserini +test961 Q0 7744497 21 9.395703 Anserini +test961 Q0 1933910 22 9.377674 Anserini +test961 Q0 12994486 23 9.276030 Anserini +test961 Q0 13807249 24 9.274104 Anserini +test961 Q0 15011619 25 9.243807 Anserini +test961 Q0 18686143 26 9.226486 Anserini +test961 Q0 20854615 27 9.225348 Anserini +test961 Q0 19773453 28 9.161201 Anserini +test961 Q0 12403072 29 9.129828 Anserini +test961 Q0 18028562 30 9.123304 Anserini +test962 Q0 5650504 1 11.061922 Anserini +test962 Q0 5783928 2 10.750932 Anserini +test962 Q0 17144336 3 10.749739 Anserini +test962 Q0 14341038 4 10.503632 Anserini +test962 Q0 7304191 5 10.492173 Anserini +test962 Q0 19213257 6 10.325768 Anserini +test962 Q0 20051762 7 10.271974 Anserini +test962 Q0 3549024 8 10.239690 Anserini +test962 Q0 5573427 9 10.237700 Anserini +test962 Q0 18905762 10 10.094346 Anserini +test962 Q0 13590728 11 10.047061 Anserini +test962 Q0 14830243 12 9.959724 Anserini +test962 Q0 9895060 13 9.904812 Anserini +test962 Q0 4945516 14 9.858087 Anserini +test962 Q0 12273527 15 9.839918 Anserini +test962 Q0 19407391 16 9.776298 Anserini +test962 Q0 8279026 17 9.758261 Anserini +test962 Q0 11118209 18 9.757071 Anserini +test962 Q0 9001282 19 9.745812 Anserini +test962 Q0 2648554 20 9.742859 Anserini +test962 Q0 15058651 21 9.724932 Anserini +test962 Q0 13849985 22 9.716386 Anserini +test962 Q0 6493995 23 9.698196 Anserini +test962 Q0 4222576 24 9.692557 Anserini +test962 Q0 15423416 25 9.668601 Anserini +test962 Q0 6307312 26 9.661964 Anserini +test962 Q0 15423392 27 9.615433 Anserini +test962 Q0 19591667 28 9.608637 Anserini +test962 Q0 17958105 29 9.583052 Anserini +test962 Q0 15423414 30 9.579722 Anserini +test963 Q0 14617513 1 11.864550 Anserini +test963 Q0 14617509 2 11.808121 Anserini +test963 Q0 13488968 3 11.243205 Anserini +test963 Q0 13488979 4 11.162910 Anserini +test963 Q0 13488974 5 11.141345 Anserini +test963 Q0 14682558 6 10.954300 Anserini +test963 Q0 14827453 7 10.676734 Anserini +test963 Q0 14682559 8 10.580948 Anserini +test963 Q0 14617520 9 10.492267 Anserini +test963 Q0 16979793 10 10.353267 Anserini +test963 Q0 10361838 11 10.079034 Anserini +test963 Q0 18518818 12 10.053114 Anserini +test963 Q0 11976134 13 10.031004 Anserini +test963 Q0 17589533 14 10.015292 Anserini +test963 Q0 14617531 15 9.995177 Anserini +test963 Q0 15895405 16 9.936865 Anserini +test963 Q0 16979788 17 9.811215 Anserini +test963 Q0 14827452 18 9.731827 Anserini +test963 Q0 11583021 19 9.703623 Anserini +test963 Q0 10953890 20 9.665935 Anserini +test963 Q0 19931771 21 9.635359 Anserini +test963 Q0 11583032 22 9.598375 Anserini +test963 Q0 14617534 23 9.566704 Anserini +test963 Q0 17047637 24 9.538667 Anserini +test963 Q0 11583031 25 9.528297 Anserini +test963 Q0 14827476 26 9.507957 Anserini +test963 Q0 20866923 27 9.479374 Anserini +test963 Q0 14827473 28 9.461582 Anserini +test963 Q0 16728707 29 9.454260 Anserini +test963 Q0 16979803 30 9.374119 Anserini +test964 Q0 3705044 1 17.711569 Anserini +test964 Q0 3574861 2 16.510502 Anserini +test964 Q0 6000202 3 16.066732 Anserini +test964 Q0 13617802 4 15.882364 Anserini +test964 Q0 20530466 5 15.790347 Anserini +test964 Q0 20530494 6 15.790347 Anserini +test964 Q0 9294520 7 15.764220 Anserini +test964 Q0 20518690 8 15.679050 Anserini +test964 Q0 17751348 9 15.632396 Anserini +test964 Q0 20530390 10 15.624939 Anserini +test964 Q0 20530484 11 15.529376 Anserini +test964 Q0 20530492 12 15.529376 Anserini +test964 Q0 20530482 13 15.529376 Anserini +test964 Q0 459619 14 15.503812 Anserini +test964 Q0 17751337 15 15.480600 Anserini +test964 Q0 9293231 16 15.470201 Anserini +test964 Q0 19718566 17 15.448768 Anserini +test964 Q0 20786773 18 15.412621 Anserini +test964 Q0 459550 19 15.331379 Anserini +test964 Q0 6574272 20 15.287790 Anserini +test964 Q0 360287 21 15.272125 Anserini +test964 Q0 20519584 22 15.251751 Anserini +test964 Q0 11299788 23 15.239360 Anserini +test964 Q0 20503533 24 15.225979 Anserini +test964 Q0 20519689 25 15.199546 Anserini +test964 Q0 20530389 26 15.087668 Anserini +test964 Q0 20460320 27 15.030108 Anserini +test964 Q0 14013714 28 15.025471 Anserini +test964 Q0 20511954 29 15.023237 Anserini +test964 Q0 20514231 30 15.023237 Anserini +test965 Q0 10712326 1 11.175965 Anserini +test965 Q0 7794743 2 10.920207 Anserini +test965 Q0 14829552 3 10.782323 Anserini +test965 Q0 4438985 4 10.769756 Anserini +test965 Q0 17756116 5 10.676776 Anserini +test965 Q0 1567143 6 10.466336 Anserini +test965 Q0 5051084 7 10.461929 Anserini +test965 Q0 3370812 8 10.446171 Anserini +test965 Q0 5452509 9 10.387437 Anserini +test965 Q0 3156918 10 10.342200 Anserini +test965 Q0 19195977 11 10.276811 Anserini +test965 Q0 2215588 12 10.270397 Anserini +test965 Q0 6499754 13 10.240108 Anserini +test965 Q0 19617560 14 10.194149 Anserini +test965 Q0 5883357 15 10.175510 Anserini +test965 Q0 9042306 16 10.155380 Anserini +test965 Q0 2719831 17 10.131163 Anserini +test965 Q0 3505827 18 10.114638 Anserini +test965 Q0 5133064 19 10.095913 Anserini +test965 Q0 4136304 20 10.051347 Anserini +test965 Q0 14560623 21 10.036850 Anserini +test965 Q0 2055004 22 10.012953 Anserini +test965 Q0 12508431 23 9.990001 Anserini +test965 Q0 4683097 24 9.953403 Anserini +test965 Q0 8713969 25 9.945624 Anserini +test965 Q0 6818354 26 9.933899 Anserini +test965 Q0 6958255 27 9.926196 Anserini +test965 Q0 7044887 28 9.915051 Anserini +test965 Q0 12281804 29 9.905438 Anserini +test965 Q0 12281820 30 9.905438 Anserini +test966 Q0 1729171 1 13.481038 Anserini +test966 Q0 1729142 2 12.115632 Anserini +test966 Q0 20164367 3 11.622412 Anserini +test966 Q0 1729161 4 11.502625 Anserini +test966 Q0 1729179 5 11.372107 Anserini +test966 Q0 3019190 6 11.295580 Anserini +test966 Q0 5939926 7 10.993638 Anserini +test966 Q0 6826946 8 10.692273 Anserini +test966 Q0 1729167 9 10.509375 Anserini +test966 Q0 12618498 10 10.508558 Anserini +test966 Q0 20622858 11 10.418715 Anserini +test966 Q0 12491900 12 10.378949 Anserini +test966 Q0 5939933 13 10.367571 Anserini +test966 Q0 8073729 14 10.362396 Anserini +test966 Q0 1729180 15 10.345226 Anserini +test966 Q0 827589 16 10.340521 Anserini +test966 Q0 1729098 17 10.323859 Anserini +test966 Q0 8073732 18 10.292356 Anserini +test966 Q0 1729193 19 10.290919 Anserini +test966 Q0 1729173 20 10.270020 Anserini +test966 Q0 12259514 21 10.266447 Anserini +test966 Q0 1729096 22 10.252102 Anserini +test966 Q0 14411001 23 10.242444 Anserini +test966 Q0 14410999 24 10.238034 Anserini +test966 Q0 20164362 25 10.220053 Anserini +test966 Q0 5655110 26 10.212909 Anserini +test966 Q0 4155089 27 10.185050 Anserini +test966 Q0 1729139 28 10.111843 Anserini +test966 Q0 5110694 29 10.101466 Anserini +test966 Q0 6711161 30 10.089650 Anserini +test967 Q0 10335174 1 18.651598 Anserini +test967 Q0 17342217 2 16.665007 Anserini +test967 Q0 3210157 3 16.662018 Anserini +test967 Q0 15471944 4 15.948525 Anserini +test967 Q0 12710558 5 15.378895 Anserini +test967 Q0 12710550 6 15.378895 Anserini +test967 Q0 3210173 7 14.990629 Anserini +test967 Q0 12254860 8 14.955251 Anserini +test967 Q0 19475900 9 14.864762 Anserini +test967 Q0 12033319 10 14.791402 Anserini +test967 Q0 19475901 11 14.608122 Anserini +test967 Q0 12035740 12 14.267443 Anserini +test967 Q0 3328688 13 14.076694 Anserini +test967 Q0 13339506 14 13.764847 Anserini +test967 Q0 411626 15 13.653378 Anserini +test967 Q0 17676744 16 13.653378 Anserini +test967 Q0 7338061 17 13.615295 Anserini +test967 Q0 5795493 18 13.604097 Anserini +test967 Q0 5891840 19 13.387232 Anserini +test967 Q0 6767632 20 13.222260 Anserini +test967 Q0 17342216 21 13.190079 Anserini +test967 Q0 16029247 22 13.179875 Anserini +test967 Q0 16029246 23 13.179875 Anserini +test967 Q0 20815958 24 13.133060 Anserini +test967 Q0 12027561 25 13.122803 Anserini +test967 Q0 12027563 26 13.122803 Anserini +test967 Q0 14613288 27 13.017101 Anserini +test967 Q0 13662506 28 12.822571 Anserini +test967 Q0 13474041 29 12.804125 Anserini +test967 Q0 4236951 30 12.729808 Anserini +test968 Q0 14347856 1 18.773611 Anserini +test968 Q0 14347860 2 18.372066 Anserini +test968 Q0 19911065 3 17.853331 Anserini +test968 Q0 19911066 4 17.853331 Anserini +test968 Q0 8199930 5 17.607658 Anserini +test968 Q0 19949071 6 17.080385 Anserini +test968 Q0 19948117 7 16.955055 Anserini +test968 Q0 19956437 8 16.825430 Anserini +test968 Q0 19945521 9 16.825430 Anserini +test968 Q0 19911061 10 16.514511 Anserini +test968 Q0 19911062 11 16.490055 Anserini +test968 Q0 14347859 12 16.415928 Anserini +test968 Q0 19945520 13 16.310650 Anserini +test968 Q0 19950158 14 16.278240 Anserini +test968 Q0 19949070 15 16.139194 Anserini +test968 Q0 19948116 16 16.020367 Anserini +test968 Q0 20519404 17 15.859442 Anserini +test968 Q0 141188 18 15.844156 Anserini +test968 Q0 647167 19 15.805311 Anserini +test968 Q0 14347857 20 15.790883 Anserini +test968 Q0 20519406 21 15.743527 Anserini +test968 Q0 19911068 22 15.740791 Anserini +test968 Q0 19911067 23 15.740791 Anserini +test968 Q0 14167751 24 15.688138 Anserini +test968 Q0 19926218 25 15.649364 Anserini +test968 Q0 8755382 26 15.648121 Anserini +test968 Q0 14246473 27 15.590429 Anserini +test968 Q0 13186175 28 15.569786 Anserini +test968 Q0 13186180 29 15.569786 Anserini +test968 Q0 16264839 30 15.517461 Anserini +test969 Q0 753395 1 10.464009 Anserini +test969 Q0 753418 2 10.379827 Anserini +test969 Q0 3326074 3 9.919376 Anserini +test969 Q0 18652255 4 9.666165 Anserini +test969 Q0 14257616 5 9.618551 Anserini +test969 Q0 753280 6 9.488774 Anserini +test969 Q0 753406 7 9.488774 Anserini +test969 Q0 12734158 8 9.488774 Anserini +test969 Q0 753302 9 9.256626 Anserini +test969 Q0 13005935 10 9.099587 Anserini +test969 Q0 14081107 11 9.062640 Anserini +test969 Q0 12461583 12 9.057249 Anserini +test969 Q0 12509917 13 9.021124 Anserini +test969 Q0 753400 14 9.019931 Anserini +test969 Q0 9581425 15 9.000140 Anserini +test969 Q0 6815569 16 8.992659 Anserini +test969 Q0 7279865 17 8.989863 Anserini +test969 Q0 607000 18 8.989863 Anserini +test969 Q0 18272961 19 8.955841 Anserini +test969 Q0 753417 20 8.868577 Anserini +test969 Q0 18641542 21 8.850917 Anserini +test969 Q0 11912949 22 8.800793 Anserini +test969 Q0 19289919 23 8.791616 Anserini +test969 Q0 18649975 24 8.783444 Anserini +test969 Q0 619192 25 8.753756 Anserini +test969 Q0 753404 26 8.743822 Anserini +test969 Q0 3207204 27 8.717714 Anserini +test969 Q0 753405 28 8.711687 Anserini +test969 Q0 3325971 29 8.689274 Anserini +test969 Q0 3207212 30 8.667822 Anserini +test97 Q0 437326 1 11.877161 Anserini +test97 Q0 14465983 2 11.775167 Anserini +test97 Q0 437329 3 11.589625 Anserini +test97 Q0 437217 4 11.114397 Anserini +test97 Q0 11486728 5 10.258904 Anserini +test97 Q0 12543224 6 10.240650 Anserini +test97 Q0 11486730 7 9.974472 Anserini +test97 Q0 15654038 8 9.920664 Anserini +test97 Q0 6733229 9 9.771338 Anserini +test97 Q0 15672123 10 9.771053 Anserini +test97 Q0 12367758 11 9.721992 Anserini +test97 Q0 3129110 12 9.675004 Anserini +test97 Q0 17750769 13 9.584146 Anserini +test97 Q0 16537092 14 9.501705 Anserini +test97 Q0 16537093 15 9.501705 Anserini +test97 Q0 8005265 16 9.501705 Anserini +test97 Q0 6685864 17 9.384204 Anserini +test97 Q0 12543212 18 9.304635 Anserini +test97 Q0 6253874 19 9.280870 Anserini +test97 Q0 2523568 20 9.270569 Anserini +test97 Q0 15582387 21 9.233025 Anserini +test97 Q0 2735331 22 9.181069 Anserini +test97 Q0 5536388 23 9.160492 Anserini +test97 Q0 11886119 24 9.160492 Anserini +test97 Q0 13507791 25 9.149777 Anserini +test97 Q0 14654770 26 9.136631 Anserini +test97 Q0 5579285 27 9.120949 Anserini +test97 Q0 5805997 28 9.120949 Anserini +test97 Q0 2845279 29 9.119203 Anserini +test97 Q0 5536390 30 9.100904 Anserini +test970 Q0 18826645 1 14.245692 Anserini +test970 Q0 18826643 2 13.995792 Anserini +test970 Q0 3338041 3 12.974997 Anserini +test970 Q0 11695451 4 12.737843 Anserini +test970 Q0 11686335 5 12.638319 Anserini +test970 Q0 12463830 6 12.447605 Anserini +test970 Q0 11695452 7 12.392866 Anserini +test970 Q0 12463829 8 12.392866 Anserini +test970 Q0 11686334 9 12.338144 Anserini +test970 Q0 11750028 10 12.036429 Anserini +test970 Q0 10300936 11 11.835930 Anserini +test970 Q0 8446426 12 11.711362 Anserini +test970 Q0 11742151 13 11.463587 Anserini +test970 Q0 11742152 14 11.463587 Anserini +test970 Q0 15092466 15 11.403190 Anserini +test970 Q0 11695384 16 11.201541 Anserini +test970 Q0 8684334 17 11.028561 Anserini +test970 Q0 8891333 18 11.028561 Anserini +test970 Q0 8891334 19 11.028561 Anserini +test970 Q0 11742123 20 10.917898 Anserini +test970 Q0 17614744 21 10.766468 Anserini +test970 Q0 8018137 22 10.765638 Anserini +test970 Q0 408888 23 10.644152 Anserini +test970 Q0 11750029 24 10.594256 Anserini +test970 Q0 15617999 25 10.551702 Anserini +test970 Q0 13342063 26 10.519711 Anserini +test970 Q0 96917 27 10.493273 Anserini +test970 Q0 11681666 28 10.477272 Anserini +test970 Q0 7071320 29 10.414719 Anserini +test970 Q0 8684812 30 10.238235 Anserini +test971 Q0 20566223 1 13.707308 Anserini +test971 Q0 142500 2 13.632103 Anserini +test971 Q0 18663025 3 13.240167 Anserini +test971 Q0 102860 4 13.168726 Anserini +test971 Q0 17183100 5 12.831580 Anserini +test971 Q0 1605703 6 12.712072 Anserini +test971 Q0 2917455 7 12.595616 Anserini +test971 Q0 15961714 8 12.500902 Anserini +test971 Q0 2889862 9 12.443657 Anserini +test971 Q0 1961597 10 12.387008 Anserini +test971 Q0 17183081 11 12.375910 Anserini +test971 Q0 1861997 12 12.304324 Anserini +test971 Q0 2917445 13 12.203239 Anserini +test971 Q0 15907543 14 12.203239 Anserini +test971 Q0 1605702 15 12.043745 Anserini +test971 Q0 1605715 16 12.043745 Anserini +test971 Q0 14605129 17 12.005286 Anserini +test971 Q0 1605708 18 11.968027 Anserini +test971 Q0 17183083 19 11.927454 Anserini +test971 Q0 13775202 20 11.927454 Anserini +test971 Q0 5618172 21 11.913522 Anserini +test971 Q0 13775197 22 11.887156 Anserini +test971 Q0 1946168 23 11.887156 Anserini +test971 Q0 18726333 24 11.847128 Anserini +test971 Q0 9991454 25 11.847128 Anserini +test971 Q0 9991460 26 11.847128 Anserini +test971 Q0 2917495 27 11.846761 Anserini +test971 Q0 1605705 28 11.788054 Anserini +test971 Q0 6608833 29 11.780796 Anserini +test971 Q0 5608385 30 11.780796 Anserini +test972 Q0 3894553 1 20.134003 Anserini +test972 Q0 3894554 2 19.326832 Anserini +test972 Q0 17819370 3 16.552395 Anserini +test972 Q0 5497397 4 16.334604 Anserini +test972 Q0 5497396 5 16.164438 Anserini +test972 Q0 9096750 6 15.288950 Anserini +test972 Q0 4344845 7 14.023695 Anserini +test972 Q0 15462722 8 13.770619 Anserini +test972 Q0 8657701 9 13.140088 Anserini +test972 Q0 14290955 10 12.315364 Anserini +test972 Q0 4023654 11 12.185720 Anserini +test972 Q0 14290959 12 12.185720 Anserini +test972 Q0 6413434 13 12.058777 Anserini +test972 Q0 6413435 14 11.934450 Anserini +test972 Q0 18267827 15 11.873720 Anserini +test972 Q0 6413433 16 11.812662 Anserini +test972 Q0 10187937 17 11.693333 Anserini +test972 Q0 8944930 18 11.542676 Anserini +test972 Q0 3288241 19 10.582838 Anserini +test972 Q0 8657394 20 10.501193 Anserini +test972 Q0 16676738 21 10.200540 Anserini +test972 Q0 9812580 22 10.105516 Anserini +test972 Q0 8944927 23 10.103580 Anserini +test972 Q0 853196 24 10.042938 Anserini +test972 Q0 6700089 25 9.986950 Anserini +test972 Q0 1958742 26 9.936839 Anserini +test972 Q0 19465284 27 9.900211 Anserini +test972 Q0 12418006 28 9.884138 Anserini +test972 Q0 15583645 29 9.845799 Anserini +test972 Q0 12229449 30 9.824432 Anserini +test973 Q0 501766 1 18.309525 Anserini +test973 Q0 1332239 2 18.124603 Anserini +test973 Q0 8105416 3 17.768187 Anserini +test973 Q0 1332238 4 17.711592 Anserini +test973 Q0 14123210 5 17.573689 Anserini +test973 Q0 3622624 6 17.563423 Anserini +test973 Q0 65968 7 17.441992 Anserini +test973 Q0 14123205 8 17.441992 Anserini +test973 Q0 1332237 9 17.044861 Anserini +test973 Q0 14235461 10 16.753754 Anserini +test973 Q0 4312482 11 16.689365 Anserini +test973 Q0 501767 12 16.591536 Anserini +test973 Q0 3204261 13 15.944007 Anserini +test973 Q0 15117743 14 15.826130 Anserini +test973 Q0 13837540 15 15.824260 Anserini +test973 Q0 747657 16 15.774377 Anserini +test973 Q0 628163 17 15.440882 Anserini +test973 Q0 3891397 18 15.336079 Anserini +test973 Q0 8090104 19 15.291881 Anserini +test973 Q0 6397626 20 15.128417 Anserini +test973 Q0 39319 21 15.017921 Anserini +test973 Q0 15589778 22 14.986156 Anserini +test973 Q0 415906 23 14.732178 Anserini +test973 Q0 15664921 24 14.684201 Anserini +test973 Q0 39379 25 14.676411 Anserini +test973 Q0 618956 26 14.665604 Anserini +test973 Q0 8912919 27 14.665604 Anserini +test973 Q0 20659480 28 14.625549 Anserini +test973 Q0 173458 29 14.566032 Anserini +test973 Q0 17283316 30 14.501297 Anserini +test974 Q0 8120492 1 21.934294 Anserini +test974 Q0 8120494 2 20.830767 Anserini +test974 Q0 8120493 3 14.719838 Anserini +test974 Q0 8120487 4 14.370488 Anserini +test974 Q0 15335378 5 14.112792 Anserini +test974 Q0 6606510 6 13.467643 Anserini +test974 Q0 1292313 7 13.216662 Anserini +test974 Q0 2051260 8 13.185444 Anserini +test974 Q0 10143442 9 13.175519 Anserini +test974 Q0 7866199 10 13.175519 Anserini +test974 Q0 2518943 11 13.013385 Anserini +test974 Q0 2846380 12 12.783182 Anserini +test974 Q0 8323147 13 12.692368 Anserini +test974 Q0 1292334 14 12.646638 Anserini +test974 Q0 114081 15 12.646237 Anserini +test974 Q0 6606509 16 12.611480 Anserini +test974 Q0 18227741 17 12.290813 Anserini +test974 Q0 1292335 18 12.231094 Anserini +test974 Q0 16277366 19 12.219520 Anserini +test974 Q0 7316780 20 12.215039 Anserini +test974 Q0 2224586 21 12.210634 Anserini +test974 Q0 10519944 22 12.207429 Anserini +test974 Q0 8323151 23 12.199142 Anserini +test974 Q0 3331856 24 12.140421 Anserini +test974 Q0 7737568 25 12.114257 Anserini +test974 Q0 8021682 26 11.993237 Anserini +test974 Q0 8323149 27 11.981450 Anserini +test974 Q0 1292358 28 11.963697 Anserini +test974 Q0 6745992 29 11.938948 Anserini +test974 Q0 1292308 30 11.931811 Anserini +test975 Q0 1452111 1 14.810814 Anserini +test975 Q0 2766906 2 13.311820 Anserini +test975 Q0 20931303 3 13.062273 Anserini +test975 Q0 1452112 4 13.011853 Anserini +test975 Q0 6612776 5 12.987832 Anserini +test975 Q0 1452113 6 12.958389 Anserini +test975 Q0 2195148 7 12.930580 Anserini +test975 Q0 1452121 8 12.838199 Anserini +test975 Q0 16740531 9 12.608757 Anserini +test975 Q0 6785676 10 12.540943 Anserini +test975 Q0 2195147 11 12.250567 Anserini +test975 Q0 8531932 12 12.223365 Anserini +test975 Q0 19528218 13 12.076864 Anserini +test975 Q0 13969525 14 12.027534 Anserini +test975 Q0 8095901 15 11.951859 Anserini +test975 Q0 20931305 16 11.795757 Anserini +test975 Q0 20560029 17 11.734588 Anserini +test975 Q0 11055262 18 11.616131 Anserini +test975 Q0 14210922 19 11.540044 Anserini +test975 Q0 11640611 20 11.540044 Anserini +test975 Q0 658436 21 11.505058 Anserini +test975 Q0 10482993 22 11.440605 Anserini +test975 Q0 18503954 23 11.361733 Anserini +test975 Q0 16740537 24 11.361733 Anserini +test975 Q0 18941661 25 11.361733 Anserini +test975 Q0 658448 26 11.289484 Anserini +test975 Q0 17311068 27 11.260342 Anserini +test975 Q0 20560030 28 11.159409 Anserini +test975 Q0 14672923 29 11.159409 Anserini +test975 Q0 1452109 30 11.010543 Anserini +test976 Q0 8476188 1 22.677731 Anserini +test976 Q0 8476187 2 19.962627 Anserini +test976 Q0 1491342 3 19.789091 Anserini +test976 Q0 1491346 4 19.713833 Anserini +test976 Q0 1491335 5 19.695627 Anserini +test976 Q0 1491343 6 19.483524 Anserini +test976 Q0 8752410 7 19.271084 Anserini +test976 Q0 8752408 8 19.271084 Anserini +test976 Q0 6889264 9 19.271084 Anserini +test976 Q0 1491333 10 19.243998 Anserini +test976 Q0 1491336 11 19.225756 Anserini +test976 Q0 17009642 12 19.147726 Anserini +test976 Q0 17009646 13 19.147726 Anserini +test976 Q0 1491332 14 18.890093 Anserini +test976 Q0 1491341 15 18.890093 Anserini +test976 Q0 13437727 16 18.592239 Anserini +test976 Q0 1491324 17 18.428497 Anserini +test976 Q0 1491328 18 18.328136 Anserini +test976 Q0 1491337 19 18.178444 Anserini +test976 Q0 1491326 20 17.799215 Anserini +test976 Q0 19397562 21 17.580664 Anserini +test976 Q0 19630238 22 17.272438 Anserini +test976 Q0 15712089 23 17.272438 Anserini +test976 Q0 6881995 24 17.197245 Anserini +test976 Q0 1491331 25 17.165947 Anserini +test976 Q0 1491345 26 17.165947 Anserini +test976 Q0 17009643 27 17.165947 Anserini +test976 Q0 1491329 28 17.047552 Anserini +test976 Q0 8475581 29 17.047552 Anserini +test976 Q0 8475582 30 17.047552 Anserini +test977 Q0 18533003 1 15.542250 Anserini +test977 Q0 18532513 2 15.055809 Anserini +test977 Q0 17845946 3 15.055809 Anserini +test977 Q0 17968993 4 14.511721 Anserini +test977 Q0 14551664 5 13.745879 Anserini +test977 Q0 20493618 6 13.550150 Anserini +test977 Q0 14551672 7 13.103024 Anserini +test977 Q0 15655264 8 13.095995 Anserini +test977 Q0 14551668 9 12.969230 Anserini +test977 Q0 16747791 10 12.672542 Anserini +test977 Q0 18532986 11 12.588619 Anserini +test977 Q0 20091789 12 12.497980 Anserini +test977 Q0 18533007 13 12.493841 Anserini +test977 Q0 18533115 14 12.339671 Anserini +test977 Q0 18533052 15 12.339671 Anserini +test977 Q0 14551705 16 12.339671 Anserini +test977 Q0 5446145 17 12.302229 Anserini +test977 Q0 20262196 18 12.181005 Anserini +test977 Q0 20493651 19 12.003571 Anserini +test977 Q0 19877313 20 11.777045 Anserini +test977 Q0 20061169 21 11.521443 Anserini +test977 Q0 19877262 22 11.475748 Anserini +test977 Q0 18532509 23 11.392496 Anserini +test977 Q0 18533099 24 11.373207 Anserini +test977 Q0 19789085 25 11.347768 Anserini +test977 Q0 19275255 26 11.307820 Anserini +test977 Q0 14551710 27 11.288346 Anserini +test977 Q0 19789101 28 11.284790 Anserini +test977 Q0 14551667 29 11.248608 Anserini +test977 Q0 15655270 30 11.232511 Anserini +test978 Q0 11914280 1 11.280231 Anserini +test978 Q0 3032067 2 10.906260 Anserini +test978 Q0 4302817 3 10.833832 Anserini +test978 Q0 1282141 4 10.787153 Anserini +test978 Q0 6715196 5 10.692341 Anserini +test978 Q0 47405 6 10.528444 Anserini +test978 Q0 19010362 7 10.463152 Anserini +test978 Q0 1472685 8 10.137878 Anserini +test978 Q0 11123689 9 9.982224 Anserini +test978 Q0 16450569 10 9.963362 Anserini +test978 Q0 5326779 11 9.878435 Anserini +test978 Q0 620296 12 9.670941 Anserini +test978 Q0 13131216 13 9.662629 Anserini +test978 Q0 5326765 14 9.615105 Anserini +test978 Q0 11935109 15 9.520151 Anserini +test978 Q0 363999 16 9.493739 Anserini +test978 Q0 6814485 17 9.416728 Anserini +test978 Q0 1801332 18 9.413127 Anserini +test978 Q0 2109829 19 9.402643 Anserini +test978 Q0 7320357 20 9.382861 Anserini +test978 Q0 7320359 21 9.382861 Anserini +test978 Q0 10911430 22 9.354717 Anserini +test978 Q0 2500081 23 9.341499 Anserini +test978 Q0 668533 24 9.145608 Anserini +test978 Q0 12565603 25 9.067321 Anserini +test978 Q0 1347342 26 9.051270 Anserini +test978 Q0 10911431 27 9.032606 Anserini +test978 Q0 9887748 28 9.020342 Anserini +test978 Q0 5973525 29 9.003502 Anserini +test978 Q0 4763021 30 8.970275 Anserini +test979 Q0 6473470 1 13.233663 Anserini +test979 Q0 6473460 2 12.618708 Anserini +test979 Q0 5895979 3 12.135010 Anserini +test979 Q0 5895982 4 11.817076 Anserini +test979 Q0 7588532 5 11.619474 Anserini +test979 Q0 20502411 6 11.431228 Anserini +test979 Q0 1379341 7 11.319475 Anserini +test979 Q0 14583433 8 11.271412 Anserini +test979 Q0 7588525 9 11.202768 Anserini +test979 Q0 4098184 10 11.158682 Anserini +test979 Q0 5654319 11 11.143148 Anserini +test979 Q0 7875948 12 11.096992 Anserini +test979 Q0 4098187 13 11.090289 Anserini +test979 Q0 5895981 14 11.053109 Anserini +test979 Q0 9562222 15 10.993441 Anserini +test979 Q0 9047940 16 10.929455 Anserini +test979 Q0 14583431 17 10.912903 Anserini +test979 Q0 6473463 18 10.877816 Anserini +test979 Q0 15168089 19 10.877816 Anserini +test979 Q0 7875966 20 10.862997 Anserini +test979 Q0 18356967 21 10.861773 Anserini +test979 Q0 14516319 22 10.641130 Anserini +test979 Q0 11702627 23 10.635599 Anserini +test979 Q0 3156188 24 10.635599 Anserini +test979 Q0 7875946 25 10.619340 Anserini +test979 Q0 11023691 26 10.615842 Anserini +test979 Q0 14293310 27 10.553055 Anserini +test979 Q0 3550008 28 10.531915 Anserini +test979 Q0 11603236 29 10.476860 Anserini +test979 Q0 2214926 30 10.438907 Anserini +test98 Q0 19807846 1 19.825466 Anserini +test98 Q0 15096547 2 19.013071 Anserini +test98 Q0 15096554 3 18.856344 Anserini +test98 Q0 12529215 4 18.558302 Anserini +test98 Q0 10112355 5 18.455221 Anserini +test98 Q0 19807841 6 18.157787 Anserini +test98 Q0 12324556 7 18.038816 Anserini +test98 Q0 9862649 8 17.961607 Anserini +test98 Q0 16409522 9 17.839979 Anserini +test98 Q0 313805 10 17.838455 Anserini +test98 Q0 17025369 11 17.712250 Anserini +test98 Q0 5732110 12 17.610235 Anserini +test98 Q0 17161894 13 17.585140 Anserini +test98 Q0 18247241 14 17.509859 Anserini +test98 Q0 6224872 15 17.505999 Anserini +test98 Q0 10152678 16 17.453749 Anserini +test98 Q0 12386722 17 17.296133 Anserini +test98 Q0 3200087 18 17.283510 Anserini +test98 Q0 19807796 19 17.228556 Anserini +test98 Q0 19807797 20 17.220558 Anserini +test98 Q0 9452171 21 17.160044 Anserini +test98 Q0 6224933 22 17.146610 Anserini +test98 Q0 3200034 23 17.082981 Anserini +test98 Q0 16607460 24 16.997259 Anserini +test98 Q0 313880 25 16.980042 Anserini +test98 Q0 16396187 26 16.925356 Anserini +test98 Q0 394187 27 16.914545 Anserini +test98 Q0 7219606 28 16.896833 Anserini +test98 Q0 16433598 29 16.864498 Anserini +test98 Q0 11779866 30 16.847538 Anserini +test980 Q0 14111840 1 15.295246 Anserini +test980 Q0 14111841 2 15.213386 Anserini +test980 Q0 14962220 3 14.153492 Anserini +test980 Q0 9608306 4 14.129873 Anserini +test980 Q0 18961678 5 14.073675 Anserini +test980 Q0 1063786 6 13.898729 Anserini +test980 Q0 2798696 7 13.894173 Anserini +test980 Q0 3157147 8 13.894173 Anserini +test980 Q0 2885152 9 13.853817 Anserini +test980 Q0 10762048 10 13.678915 Anserini +test980 Q0 9608327 11 13.546741 Anserini +test980 Q0 3233322 12 13.454012 Anserini +test980 Q0 18961699 13 13.432325 Anserini +test980 Q0 707594 14 13.415948 Anserini +test980 Q0 13251733 15 13.386497 Anserini +test980 Q0 1433348 16 13.302910 Anserini +test980 Q0 20948077 17 13.283436 Anserini +test980 Q0 418900 18 13.252600 Anserini +test980 Q0 17214532 19 13.223839 Anserini +test980 Q0 18969510 20 13.166764 Anserini +test980 Q0 17987161 21 13.148893 Anserini +test980 Q0 1615327 22 13.118097 Anserini +test980 Q0 13449 23 13.083033 Anserini +test980 Q0 17641429 24 13.077908 Anserini +test980 Q0 2290413 25 13.072945 Anserini +test980 Q0 2290372 26 13.072945 Anserini +test980 Q0 20541731 27 13.032434 Anserini +test980 Q0 19611320 28 13.000483 Anserini +test980 Q0 2658539 29 13.000483 Anserini +test980 Q0 10949399 30 13.000483 Anserini +test981 Q0 702067 1 19.160427 Anserini +test981 Q0 14259413 2 16.671444 Anserini +test981 Q0 2728087 3 16.447670 Anserini +test981 Q0 15367868 4 16.373384 Anserini +test981 Q0 19325680 5 16.370035 Anserini +test981 Q0 13004245 6 16.311707 Anserini +test981 Q0 2108812 7 16.249027 Anserini +test981 Q0 5114426 8 16.170813 Anserini +test981 Q0 12372752 9 16.068888 Anserini +test981 Q0 15513325 10 15.981908 Anserini +test981 Q0 762142 11 15.981730 Anserini +test981 Q0 9714359 12 15.917687 Anserini +test981 Q0 18834165 13 15.905717 Anserini +test981 Q0 5114424 14 15.855000 Anserini +test981 Q0 14259410 15 15.721557 Anserini +test981 Q0 6447539 16 15.661990 Anserini +test981 Q0 15441518 17 15.656770 Anserini +test981 Q0 8021240 18 15.411675 Anserini +test981 Q0 4027360 19 15.379216 Anserini +test981 Q0 15509158 20 15.366889 Anserini +test981 Q0 12935943 21 15.359510 Anserini +test981 Q0 365061 22 15.306418 Anserini +test981 Q0 9920101 23 15.292917 Anserini +test981 Q0 13197312 24 15.275933 Anserini +test981 Q0 580635 25 15.214490 Anserini +test981 Q0 17904734 26 14.976882 Anserini +test981 Q0 16079729 27 14.958911 Anserini +test981 Q0 10883804 28 14.884369 Anserini +test981 Q0 17137908 29 14.831771 Anserini +test981 Q0 20807799 30 14.824083 Anserini +test982 Q0 5806347 1 11.342321 Anserini +test982 Q0 5806353 2 11.171641 Anserini +test982 Q0 5086702 3 10.731972 Anserini +test982 Q0 2890344 4 10.355997 Anserini +test982 Q0 9567041 5 10.342655 Anserini +test982 Q0 3136605 6 10.205341 Anserini +test982 Q0 8307316 7 10.174013 Anserini +test982 Q0 1668168 8 10.118297 Anserini +test982 Q0 14950477 9 10.070616 Anserini +test982 Q0 8591899 10 9.983197 Anserini +test982 Q0 4054963 11 9.983197 Anserini +test982 Q0 8629501 12 9.734503 Anserini +test982 Q0 5086708 13 9.697218 Anserini +test982 Q0 611621 14 9.595634 Anserini +test982 Q0 7657428 15 9.583460 Anserini +test982 Q0 10335670 16 9.551134 Anserini +test982 Q0 18932085 17 9.524052 Anserini +test982 Q0 18932070 18 9.524052 Anserini +test982 Q0 16092194 19 9.513407 Anserini +test982 Q0 9784613 20 9.432640 Anserini +test982 Q0 91947 21 9.432640 Anserini +test982 Q0 15696850 22 9.432640 Anserini +test982 Q0 9567013 23 9.396538 Anserini +test982 Q0 3496135 24 9.389425 Anserini +test982 Q0 1668163 25 9.375883 Anserini +test982 Q0 2497470 26 9.353296 Anserini +test982 Q0 3512624 27 9.353296 Anserini +test982 Q0 10328269 28 9.203691 Anserini +test982 Q0 10335661 29 9.193798 Anserini +test982 Q0 10328265 30 9.163817 Anserini +test983 Q0 17434167 1 9.871983 Anserini +test983 Q0 15926933 2 9.868497 Anserini +test983 Q0 18377607 3 9.740014 Anserini +test983 Q0 9473644 4 9.647559 Anserini +test983 Q0 18061265 5 9.628430 Anserini +test983 Q0 12640211 6 9.617025 Anserini +test983 Q0 14037629 7 9.432338 Anserini +test983 Q0 9830769 8 9.236874 Anserini +test983 Q0 13323689 9 9.225612 Anserini +test983 Q0 15693557 10 9.200967 Anserini +test983 Q0 6669927 11 9.154587 Anserini +test983 Q0 15693559 12 9.076312 Anserini +test983 Q0 3474686 13 9.017710 Anserini +test983 Q0 17650027 14 8.992954 Anserini +test983 Q0 17143046 15 8.964478 Anserini +test983 Q0 15640746 16 8.958191 Anserini +test983 Q0 18488963 17 8.956827 Anserini +test983 Q0 12944465 18 8.943743 Anserini +test983 Q0 5807787 19 8.943743 Anserini +test983 Q0 20618283 20 8.932050 Anserini +test983 Q0 3234882 21 8.890431 Anserini +test983 Q0 20725459 22 8.890081 Anserini +test983 Q0 19777757 23 8.889233 Anserini +test983 Q0 16598546 24 8.882692 Anserini +test983 Q0 16766059 25 8.865732 Anserini +test983 Q0 19789044 26 8.839254 Anserini +test983 Q0 3821615 27 8.809390 Anserini +test983 Q0 6229653 28 8.771866 Anserini +test983 Q0 11883227 29 8.768429 Anserini +test983 Q0 20739220 30 8.766474 Anserini +test984 Q0 9079500 1 16.282608 Anserini +test984 Q0 2724907 2 14.932860 Anserini +test984 Q0 2528443 3 14.733745 Anserini +test984 Q0 8974930 4 14.573215 Anserini +test984 Q0 7907982 5 14.224901 Anserini +test984 Q0 2528441 6 13.946568 Anserini +test984 Q0 16679442 7 13.824409 Anserini +test984 Q0 14862138 8 13.778780 Anserini +test984 Q0 19092348 9 13.675064 Anserini +test984 Q0 17246677 10 13.557109 Anserini +test984 Q0 11472446 11 13.542948 Anserini +test984 Q0 13986093 12 13.485572 Anserini +test984 Q0 2528453 13 13.458424 Anserini +test984 Q0 3000949 14 13.437483 Anserini +test984 Q0 8579113 15 13.345278 Anserini +test984 Q0 12335900 16 13.337680 Anserini +test984 Q0 18411292 17 13.334612 Anserini +test984 Q0 12907804 18 13.326077 Anserini +test984 Q0 15372044 19 13.240108 Anserini +test984 Q0 14074748 20 13.208650 Anserini +test984 Q0 15541871 21 13.193494 Anserini +test984 Q0 17011152 22 13.184109 Anserini +test984 Q0 14547998 23 13.167757 Anserini +test984 Q0 20747142 24 13.157773 Anserini +test984 Q0 13986092 25 13.152296 Anserini +test984 Q0 18411290 26 13.149501 Anserini +test984 Q0 2528442 27 13.130134 Anserini +test984 Q0 15171605 28 13.120377 Anserini +test984 Q0 4368862 29 13.116676 Anserini +test984 Q0 19426658 30 13.108189 Anserini +test985 Q0 6709070 1 16.985695 Anserini +test985 Q0 6709081 2 16.559105 Anserini +test985 Q0 10931572 3 16.036427 Anserini +test985 Q0 6709078 4 15.964386 Anserini +test985 Q0 10931575 5 15.738770 Anserini +test985 Q0 510460 6 15.552616 Anserini +test985 Q0 9487167 7 15.272153 Anserini +test985 Q0 10931573 8 15.199847 Anserini +test985 Q0 12661858 9 15.138149 Anserini +test985 Q0 12661856 10 14.930315 Anserini +test985 Q0 5148079 11 14.743643 Anserini +test985 Q0 18070413 12 14.705628 Anserini +test985 Q0 6709073 13 14.529859 Anserini +test985 Q0 3986115 14 14.511812 Anserini +test985 Q0 6709077 15 14.480433 Anserini +test985 Q0 12661859 16 14.431343 Anserini +test985 Q0 6709080 17 14.431343 Anserini +test985 Q0 18406192 18 14.431343 Anserini +test985 Q0 12661855 19 14.431343 Anserini +test985 Q0 16647365 20 14.408384 Anserini +test985 Q0 16647362 21 14.408384 Anserini +test985 Q0 6709082 22 14.401973 Anserini +test985 Q0 18406200 23 14.382585 Anserini +test985 Q0 5195380 24 14.228973 Anserini +test985 Q0 8796579 25 14.122728 Anserini +test985 Q0 10931574 26 14.103674 Anserini +test985 Q0 6709075 27 13.958174 Anserini +test985 Q0 6709072 28 13.901196 Anserini +test985 Q0 10621077 29 13.883042 Anserini +test985 Q0 6226370 30 13.851224 Anserini +test986 Q0 3282845 1 14.378002 Anserini +test986 Q0 1622670 2 13.822182 Anserini +test986 Q0 16601508 3 13.762429 Anserini +test986 Q0 9342586 4 13.747877 Anserini +test986 Q0 16072527 5 13.361373 Anserini +test986 Q0 16128624 6 13.276643 Anserini +test986 Q0 9267311 7 13.268268 Anserini +test986 Q0 1634947 8 13.231356 Anserini +test986 Q0 9267312 9 13.209384 Anserini +test986 Q0 3666429 10 13.169690 Anserini +test986 Q0 8580270 11 13.141716 Anserini +test986 Q0 6443660 12 13.128773 Anserini +test986 Q0 14212463 13 13.125612 Anserini +test986 Q0 17908688 14 13.117763 Anserini +test986 Q0 8897375 15 13.083202 Anserini +test986 Q0 12806678 16 13.050850 Anserini +test986 Q0 8718985 17 13.049075 Anserini +test986 Q0 18149366 18 12.996689 Anserini +test986 Q0 18347455 19 12.974751 Anserini +test986 Q0 19310918 20 12.965565 Anserini +test986 Q0 15972856 21 12.940481 Anserini +test986 Q0 9040714 22 12.932796 Anserini +test986 Q0 18272461 23 12.928120 Anserini +test986 Q0 12528147 24 12.904526 Anserini +test986 Q0 14779951 25 12.884675 Anserini +test986 Q0 8782437 26 12.862073 Anserini +test986 Q0 6509344 27 12.839487 Anserini +test986 Q0 9088450 28 12.817088 Anserini +test986 Q0 5085747 29 12.792689 Anserini +test986 Q0 9310202 30 12.762697 Anserini +test987 Q0 20263034 1 25.231941 Anserini +test987 Q0 19213067 2 24.383234 Anserini +test987 Q0 19213048 3 24.244080 Anserini +test987 Q0 19213060 4 23.805471 Anserini +test987 Q0 20263037 5 23.728180 Anserini +test987 Q0 20263039 6 23.652617 Anserini +test987 Q0 20263038 7 23.252905 Anserini +test987 Q0 19213061 8 22.156181 Anserini +test987 Q0 19213065 9 21.822004 Anserini +test987 Q0 20263035 10 21.447788 Anserini +test987 Q0 19307000 11 20.276535 Anserini +test987 Q0 19213052 12 19.775488 Anserini +test987 Q0 19213054 13 19.699091 Anserini +test987 Q0 19306982 14 19.691551 Anserini +test987 Q0 15742953 15 19.672365 Anserini +test987 Q0 19213059 16 19.289371 Anserini +test987 Q0 20263036 17 19.179808 Anserini +test987 Q0 19338372 18 19.171520 Anserini +test987 Q0 19338364 19 18.977644 Anserini +test987 Q0 19213066 20 18.931927 Anserini +test987 Q0 19306985 21 18.738304 Anserini +test987 Q0 19213051 22 18.217243 Anserini +test987 Q0 19213049 23 18.137564 Anserini +test987 Q0 19213064 24 17.870071 Anserini +test987 Q0 19213063 25 17.818394 Anserini +test987 Q0 11305785 26 17.487747 Anserini +test987 Q0 19213062 27 17.321226 Anserini +test987 Q0 12257839 28 15.972014 Anserini +test987 Q0 20081817 29 14.523211 Anserini +test987 Q0 19213055 30 14.341146 Anserini +test988 Q0 18002137 1 23.660997 Anserini +test988 Q0 19541673 2 23.659460 Anserini +test988 Q0 8268107 3 23.227793 Anserini +test988 Q0 10265953 4 23.192060 Anserini +test988 Q0 13341541 5 22.846495 Anserini +test988 Q0 16344973 6 22.822437 Anserini +test988 Q0 14953149 7 22.785913 Anserini +test988 Q0 19541688 8 22.704927 Anserini +test988 Q0 19541675 9 22.690332 Anserini +test988 Q0 16353735 10 22.640739 Anserini +test988 Q0 17261533 11 22.506830 Anserini +test988 Q0 14262898 12 22.421034 Anserini +test988 Q0 13607462 13 22.421034 Anserini +test988 Q0 17275798 14 22.369967 Anserini +test988 Q0 12083676 15 22.216974 Anserini +test988 Q0 14262900 16 22.216974 Anserini +test988 Q0 17004564 17 22.203157 Anserini +test988 Q0 20203760 18 22.048018 Anserini +test988 Q0 13809662 19 22.033184 Anserini +test988 Q0 17275794 20 21.986883 Anserini +test988 Q0 14109528 21 21.948278 Anserini +test988 Q0 20203759 22 21.945663 Anserini +test988 Q0 12895579 23 21.907616 Anserini +test988 Q0 16350488 24 21.887758 Anserini +test988 Q0 18701066 25 21.851545 Anserini +test988 Q0 18002140 26 21.815355 Anserini +test988 Q0 17011604 27 21.750746 Anserini +test988 Q0 14053426 28 21.750746 Anserini +test988 Q0 10676508 29 21.750746 Anserini +test988 Q0 17230001 30 21.739906 Anserini +test989 Q0 3282266 1 12.770411 Anserini +test989 Q0 289008 2 12.629540 Anserini +test989 Q0 20608021 3 12.549269 Anserini +test989 Q0 8660571 4 12.277591 Anserini +test989 Q0 8660570 5 12.242104 Anserini +test989 Q0 12082261 6 12.174517 Anserini +test989 Q0 16024503 7 11.958037 Anserini +test989 Q0 4181792 8 11.869415 Anserini +test989 Q0 17308083 9 11.851094 Anserini +test989 Q0 3967187 10 11.795014 Anserini +test989 Q0 7186569 11 11.722943 Anserini +test989 Q0 3447133 12 11.708296 Anserini +test989 Q0 20927132 13 11.607831 Anserini +test989 Q0 19791825 14 11.558905 Anserini +test989 Q0 15839866 15 11.479024 Anserini +test989 Q0 14363563 16 11.463655 Anserini +test989 Q0 16518606 17 11.395644 Anserini +test989 Q0 16518612 18 11.395644 Anserini +test989 Q0 16471640 19 11.327646 Anserini +test989 Q0 17522108 20 11.318909 Anserini +test989 Q0 2586270 21 11.240907 Anserini +test989 Q0 7893763 22 11.234370 Anserini +test989 Q0 4421137 23 11.231420 Anserini +test989 Q0 13074063 24 11.188375 Anserini +test989 Q0 712826 25 11.122111 Anserini +test989 Q0 7409050 26 11.049620 Anserini +test989 Q0 7554361 27 11.019142 Anserini +test989 Q0 8122859 28 11.016080 Anserini +test989 Q0 17992431 29 10.980540 Anserini +test989 Q0 3282257 30 10.965158 Anserini +test99 Q0 5991828 1 11.666907 Anserini +test99 Q0 5991839 2 11.337661 Anserini +test99 Q0 10272398 3 10.535932 Anserini +test99 Q0 8342032 4 10.238999 Anserini +test99 Q0 8342042 5 10.010579 Anserini +test99 Q0 20510799 6 9.902464 Anserini +test99 Q0 1617738 7 9.826688 Anserini +test99 Q0 5991831 8 9.673400 Anserini +test99 Q0 13608222 9 9.591117 Anserini +test99 Q0 91781 10 9.564475 Anserini +test99 Q0 91780 11 9.552394 Anserini +test99 Q0 4921841 12 9.552394 Anserini +test99 Q0 9963762 13 9.552069 Anserini +test99 Q0 6927189 14 9.507096 Anserini +test99 Q0 14765959 15 9.479726 Anserini +test99 Q0 510239 16 9.469615 Anserini +test99 Q0 17755570 17 9.467912 Anserini +test99 Q0 20510798 18 9.410032 Anserini +test99 Q0 3147499 19 9.107714 Anserini +test99 Q0 91785 20 9.085307 Anserini +test99 Q0 10248702 21 9.059962 Anserini +test99 Q0 804709 22 9.037687 Anserini +test99 Q0 91782 23 9.034501 Anserini +test99 Q0 5532253 24 8.981224 Anserini +test99 Q0 20510803 25 8.935844 Anserini +test99 Q0 3608675 26 8.873352 Anserini +test99 Q0 19319048 27 8.841335 Anserini +test99 Q0 6372866 28 8.790120 Anserini +test99 Q0 2000302 29 8.752073 Anserini +test99 Q0 5535775 30 8.715384 Anserini +test990 Q0 3969682 1 26.861103 Anserini +test990 Q0 3969686 2 25.967808 Anserini +test990 Q0 14691762 3 25.629986 Anserini +test990 Q0 3969684 4 25.144157 Anserini +test990 Q0 8960955 5 25.048462 Anserini +test990 Q0 561587 6 24.943924 Anserini +test990 Q0 8960960 7 24.429640 Anserini +test990 Q0 9195397 8 22.894894 Anserini +test990 Q0 8960956 9 22.405069 Anserini +test990 Q0 14691780 10 21.274780 Anserini +test990 Q0 5127169 11 20.634327 Anserini +test990 Q0 11520265 12 20.543150 Anserini +test990 Q0 14691774 13 20.401735 Anserini +test990 Q0 561574 14 20.299397 Anserini +test990 Q0 14691768 15 20.080135 Anserini +test990 Q0 1998948 16 20.058344 Anserini +test990 Q0 5127168 17 19.942160 Anserini +test990 Q0 561573 18 19.856422 Anserini +test990 Q0 14691761 19 19.810820 Anserini +test990 Q0 561575 20 19.781124 Anserini +test990 Q0 16334819 21 19.551226 Anserini +test990 Q0 1998947 22 19.356598 Anserini +test990 Q0 561557 23 19.264339 Anserini +test990 Q0 13574484 24 19.236649 Anserini +test990 Q0 3969685 25 19.175234 Anserini +test990 Q0 8960959 26 19.000237 Anserini +test990 Q0 561572 27 18.707340 Anserini +test990 Q0 8960957 28 18.610901 Anserini +test990 Q0 1998946 29 18.610260 Anserini +test990 Q0 561560 30 18.516403 Anserini +test991 Q0 9972450 1 11.619377 Anserini +test991 Q0 2409999 2 10.872717 Anserini +test991 Q0 12886877 3 10.680111 Anserini +test991 Q0 3085092 4 10.679483 Anserini +test991 Q0 2603332 5 10.290646 Anserini +test991 Q0 3436691 6 10.242813 Anserini +test991 Q0 2410001 7 10.242813 Anserini +test991 Q0 3768418 8 10.171180 Anserini +test991 Q0 3085101 9 10.171180 Anserini +test991 Q0 3085096 10 10.100541 Anserini +test991 Q0 14492671 11 10.015174 Anserini +test991 Q0 2603314 12 9.946112 Anserini +test991 Q0 5284103 13 9.923211 Anserini +test991 Q0 16249555 14 9.878124 Anserini +test991 Q0 4373497 15 9.801779 Anserini +test991 Q0 5284110 16 9.775131 Anserini +test991 Q0 14159314 17 9.775131 Anserini +test991 Q0 3085093 18 9.694659 Anserini +test991 Q0 15099636 19 9.645874 Anserini +test991 Q0 7103497 20 9.633255 Anserini +test991 Q0 1472098 21 9.591093 Anserini +test991 Q0 12886896 22 9.575500 Anserini +test991 Q0 6133207 23 9.331509 Anserini +test991 Q0 2410002 24 9.331509 Anserini +test991 Q0 6133212 25 9.331509 Anserini +test991 Q0 338527 26 9.331509 Anserini +test991 Q0 4507892 27 9.299231 Anserini +test991 Q0 3111431 28 9.254664 Anserini +test991 Q0 2603313 29 9.254664 Anserini +test991 Q0 2603322 30 9.254664 Anserini +test992 Q0 9803823 1 15.713445 Anserini +test992 Q0 7272783 2 15.603767 Anserini +test992 Q0 17464310 3 15.573509 Anserini +test992 Q0 4008256 4 15.390562 Anserini +test992 Q0 13470222 5 15.325788 Anserini +test992 Q0 9803825 6 15.244354 Anserini +test992 Q0 7272776 7 14.844677 Anserini +test992 Q0 14736989 8 14.637150 Anserini +test992 Q0 14737021 9 14.637150 Anserini +test992 Q0 13470208 10 14.617685 Anserini +test992 Q0 16250683 11 14.576788 Anserini +test992 Q0 7272782 12 14.537215 Anserini +test992 Q0 14737019 13 14.460790 Anserini +test992 Q0 7272765 14 14.454681 Anserini +test992 Q0 13470190 15 14.418135 Anserini +test992 Q0 16250677 16 14.415731 Anserini +test992 Q0 16029770 17 14.383449 Anserini +test992 Q0 7272814 18 14.271032 Anserini +test992 Q0 7272801 19 14.230377 Anserini +test992 Q0 8481065 20 14.206582 Anserini +test992 Q0 7495884 21 14.192899 Anserini +test992 Q0 7272805 22 14.177263 Anserini +test992 Q0 4143898 23 14.152428 Anserini +test992 Q0 7272770 24 14.139421 Anserini +test992 Q0 7272797 25 14.139421 Anserini +test992 Q0 16029774 26 14.079645 Anserini +test992 Q0 3582792 27 14.075148 Anserini +test992 Q0 7272807 28 14.069321 Anserini +test992 Q0 7272778 29 14.061733 Anserini +test992 Q0 19353315 30 14.056145 Anserini +test993 Q0 9449650 1 13.937230 Anserini +test993 Q0 5767835 2 13.638130 Anserini +test993 Q0 10763388 3 13.605351 Anserini +test993 Q0 2172308 4 13.600265 Anserini +test993 Q0 9497148 5 13.582734 Anserini +test993 Q0 20549296 6 13.399696 Anserini +test993 Q0 3268246 7 13.342170 Anserini +test993 Q0 10800164 8 13.273641 Anserini +test993 Q0 1663793 9 13.235835 Anserini +test993 Q0 16716218 10 13.225252 Anserini +test993 Q0 16341347 11 13.221096 Anserini +test993 Q0 17281989 12 13.192485 Anserini +test993 Q0 11202912 13 13.181297 Anserini +test993 Q0 7687898 14 13.149528 Anserini +test993 Q0 7687900 15 13.149528 Anserini +test993 Q0 5002030 16 13.135247 Anserini +test993 Q0 17285558 17 13.054008 Anserini +test993 Q0 7041866 18 12.966660 Anserini +test993 Q0 17285564 19 12.965791 Anserini +test993 Q0 12477843 20 12.926327 Anserini +test993 Q0 11366439 21 12.912488 Anserini +test993 Q0 192409 22 12.901005 Anserini +test993 Q0 7197719 23 12.870644 Anserini +test993 Q0 6205516 24 12.864264 Anserini +test993 Q0 7723340 25 12.848173 Anserini +test993 Q0 20145308 26 12.831646 Anserini +test993 Q0 15446589 27 12.825657 Anserini +test993 Q0 15487352 28 12.778227 Anserini +test993 Q0 10600033 29 12.755761 Anserini +test993 Q0 7197724 30 12.741777 Anserini +test994 Q0 4550923 1 11.239044 Anserini +test994 Q0 7709069 2 10.052745 Anserini +test994 Q0 3063700 3 9.912949 Anserini +test994 Q0 11754205 4 9.775973 Anserini +test994 Q0 158901 5 9.737818 Anserini +test994 Q0 6579640 6 9.425513 Anserini +test994 Q0 6296559 7 9.306206 Anserini +test994 Q0 1663802 8 9.272398 Anserini +test994 Q0 6164209 9 9.178425 Anserini +test994 Q0 9502139 10 9.160035 Anserini +test994 Q0 2065295 11 9.136217 Anserini +test994 Q0 14985022 12 9.113993 Anserini +test994 Q0 3690814 13 9.082392 Anserini +test994 Q0 17709971 14 9.048900 Anserini +test994 Q0 11183391 15 9.042965 Anserini +test994 Q0 9812581 16 9.024604 Anserini +test994 Q0 7764222 17 9.023003 Anserini +test994 Q0 7755180 18 9.014069 Anserini +test994 Q0 19174859 19 8.952941 Anserini +test994 Q0 16698253 20 8.944077 Anserini +test994 Q0 989477 21 8.941767 Anserini +test994 Q0 20385697 22 8.885441 Anserini +test994 Q0 4717962 23 8.860368 Anserini +test994 Q0 21011481 24 8.774978 Anserini +test994 Q0 7776995 25 8.766102 Anserini +test994 Q0 13145426 26 8.765881 Anserini +test994 Q0 14500599 27 8.747622 Anserini +test994 Q0 1737983 28 8.739316 Anserini +test994 Q0 11953374 29 8.732504 Anserini +test994 Q0 14452496 30 8.723575 Anserini +test995 Q0 11677010 1 15.555196 Anserini +test995 Q0 16003281 2 15.312024 Anserini +test995 Q0 16003276 3 15.244461 Anserini +test995 Q0 11677041 4 15.074009 Anserini +test995 Q0 11677033 5 14.907467 Anserini +test995 Q0 20004394 6 14.904620 Anserini +test995 Q0 13880958 7 14.722736 Anserini +test995 Q0 19987082 8 14.382900 Anserini +test995 Q0 16344250 9 14.343721 Anserini +test995 Q0 9918896 10 14.322032 Anserini +test995 Q0 16003018 11 14.261292 Anserini +test995 Q0 16001148 12 14.227247 Anserini +test995 Q0 16001791 13 14.190572 Anserini +test995 Q0 11677024 14 14.190250 Anserini +test995 Q0 16001835 15 14.179368 Anserini +test995 Q0 16003015 16 13.945526 Anserini +test995 Q0 8503363 17 13.782973 Anserini +test995 Q0 579648 18 13.765945 Anserini +test995 Q0 7281349 19 13.762276 Anserini +test995 Q0 11677042 20 13.680539 Anserini +test995 Q0 9452371 21 13.609863 Anserini +test995 Q0 16001784 22 13.536804 Anserini +test995 Q0 579583 23 13.519362 Anserini +test995 Q0 19987093 24 13.492887 Anserini +test995 Q0 17648564 25 13.488372 Anserini +test995 Q0 11677039 26 13.408207 Anserini +test995 Q0 16001151 27 13.383265 Anserini +test995 Q0 7281347 28 13.379572 Anserini +test995 Q0 16002997 29 13.340575 Anserini +test995 Q0 8388364 30 13.294363 Anserini +test996 Q0 3147311 1 12.894796 Anserini +test996 Q0 2522756 2 12.099485 Anserini +test996 Q0 8301899 3 11.561977 Anserini +test996 Q0 20039243 4 11.546268 Anserini +test996 Q0 7941518 5 11.545295 Anserini +test996 Q0 10242752 6 11.231432 Anserini +test996 Q0 8925476 7 11.117954 Anserini +test996 Q0 8750826 8 11.103973 Anserini +test996 Q0 6499145 9 10.990407 Anserini +test996 Q0 2416694 10 10.941258 Anserini +test996 Q0 13881655 11 10.936943 Anserini +test996 Q0 14692231 12 10.920507 Anserini +test996 Q0 3998995 13 10.905215 Anserini +test996 Q0 6059769 14 10.872057 Anserini +test996 Q0 16968673 15 10.819715 Anserini +test996 Q0 6506993 16 10.751345 Anserini +test996 Q0 5191265 17 10.751345 Anserini +test996 Q0 16204452 18 10.724168 Anserini +test996 Q0 12418464 19 10.632500 Anserini +test996 Q0 5629892 20 10.596969 Anserini +test996 Q0 18318200 21 10.566329 Anserini +test996 Q0 12860832 22 10.472982 Anserini +test996 Q0 8402853 23 10.469929 Anserini +test996 Q0 1881402 24 10.463529 Anserini +test996 Q0 4695284 25 10.461720 Anserini +test996 Q0 17441040 26 10.455317 Anserini +test996 Q0 11062152 27 10.425215 Anserini +test996 Q0 549703 28 10.400648 Anserini +test996 Q0 12920449 29 10.390994 Anserini +test996 Q0 6208735 30 10.388607 Anserini +test997 Q0 17435884 1 17.356968 Anserini +test997 Q0 17435910 2 17.076290 Anserini +test997 Q0 17435883 3 17.076290 Anserini +test997 Q0 3910223 4 16.724552 Anserini +test997 Q0 13307743 5 16.391138 Anserini +test997 Q0 5593923 6 15.931582 Anserini +test997 Q0 2022784 7 15.770950 Anserini +test997 Q0 9970365 8 15.714282 Anserini +test997 Q0 17435890 9 15.567823 Anserini +test997 Q0 830169 10 15.531645 Anserini +test997 Q0 8922339 11 15.519861 Anserini +test997 Q0 8922344 12 15.519861 Anserini +test997 Q0 5593914 13 15.516869 Anserini +test997 Q0 17435885 14 15.516869 Anserini +test997 Q0 17435917 15 15.437258 Anserini +test997 Q0 17435907 16 15.265591 Anserini +test997 Q0 5751332 17 15.228807 Anserini +test997 Q0 3804497 18 15.225468 Anserini +test997 Q0 8661270 19 15.189135 Anserini +test997 Q0 15729089 20 15.170889 Anserini +test997 Q0 3899674 21 15.101744 Anserini +test997 Q0 3804506 22 15.085996 Anserini +test997 Q0 8202827 23 15.026230 Anserini +test997 Q0 10190694 24 14.954839 Anserini +test997 Q0 5427196 25 14.906098 Anserini +test997 Q0 17435889 26 14.894625 Anserini +test997 Q0 17435881 27 14.832367 Anserini +test997 Q0 17378602 28 14.768357 Anserini +test997 Q0 17379005 29 14.767999 Anserini +test997 Q0 5167483 30 14.747900 Anserini +test998 Q0 3085097 1 26.180742 Anserini +test998 Q0 3304779 2 20.241257 Anserini +test998 Q0 3304796 3 19.366016 Anserini +test998 Q0 5818259 4 19.150450 Anserini +test998 Q0 3304782 5 18.703491 Anserini +test998 Q0 2410005 6 17.399492 Anserini +test998 Q0 3304781 7 17.063501 Anserini +test998 Q0 3815784 8 17.021927 Anserini +test998 Q0 3483035 9 16.648573 Anserini +test998 Q0 3783890 10 15.127221 Anserini +test998 Q0 3304784 11 15.013599 Anserini +test998 Q0 3815779 12 14.963305 Anserini +test998 Q0 3085096 13 14.917793 Anserini +test998 Q0 11560546 14 14.555573 Anserini +test998 Q0 11858047 15 13.888689 Anserini +test998 Q0 782105 16 13.872337 Anserini +test998 Q0 7243215 17 13.825556 Anserini +test998 Q0 782075 18 13.643363 Anserini +test998 Q0 3815843 19 13.427127 Anserini +test998 Q0 7243216 20 13.417042 Anserini +test998 Q0 3304786 21 13.415538 Anserini +test998 Q0 17200285 22 13.296975 Anserini +test998 Q0 11444111 23 13.229207 Anserini +test998 Q0 5818257 24 13.119350 Anserini +test998 Q0 3815846 25 13.066938 Anserini +test998 Q0 3062215 26 12.978359 Anserini +test998 Q0 12886857 27 12.967594 Anserini +test998 Q0 3304783 28 12.772245 Anserini +test998 Q0 20430963 29 12.687038 Anserini +test998 Q0 12886858 30 12.593834 Anserini +test999 Q0 16568342 1 13.081382 Anserini +test999 Q0 15910672 2 12.559532 Anserini +test999 Q0 20734830 3 12.209239 Anserini +test999 Q0 16373728 4 12.160625 Anserini +test999 Q0 10771065 5 12.096884 Anserini +test999 Q0 12939720 6 11.846439 Anserini +test999 Q0 18670559 7 11.775983 Anserini +test999 Q0 5786901 8 11.743203 Anserini +test999 Q0 12713009 9 11.641475 Anserini +test999 Q0 8847700 10 11.520136 Anserini +test999 Q0 8505377 11 11.316717 Anserini +test999 Q0 7649448 12 11.309949 Anserini +test999 Q0 16071084 13 11.266455 Anserini +test999 Q0 3947638 14 11.082080 Anserini +test999 Q0 2994728 15 11.037094 Anserini +test999 Q0 1660064 16 11.022435 Anserini +test999 Q0 5581456 17 10.952439 Anserini +test999 Q0 19958113 18 10.939390 Anserini +test999 Q0 11732352 19 10.911098 Anserini +test999 Q0 16063562 20 10.875387 Anserini +test999 Q0 15529239 21 10.786630 Anserini +test999 Q0 4606225 22 10.760141 Anserini +test999 Q0 8483926 23 10.664860 Anserini +test999 Q0 18049814 24 10.603642 Anserini +test999 Q0 11549175 25 10.542482 Anserini +test999 Q0 7957676 26 10.500765 Anserini +test999 Q0 16153737 27 10.497477 Anserini +test999 Q0 12714650 28 10.431790 Anserini +test999 Q0 10861811 29 10.418475 Anserini +test999 Q0 6786313 30 10.414605 Anserini diff --git a/runs/sparse.txt b/runs/sparse.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ae428483478cc9f7ef10c85ed799efc7c6327a2 --- /dev/null +++ b/runs/sparse.txt @@ -0,0 +1,20500 @@ +132_1-1 Q0 MARCO_33_1621342262-1 1 0.500000 hybrid +132_1-1 Q0 MARCO_30_1605964568-1 2 0.466455 hybrid +132_1-1 Q0 MARCO_33_1621342262-2 3 0.458617 hybrid +132_1-1 Q0 MARCO_33_1621342262-3 4 0.373113 hybrid +132_1-1 Q0 MARCO_30_1605964568-4 5 0.365441 hybrid +132_1-1 Q0 MARCO_30_1605964568-8 6 0.300813 hybrid +132_1-1 Q0 MARCO_30_1605964568-5 7 0.300568 hybrid +132_1-1 Q0 MARCO_30_1605964568-6 8 0.290181 hybrid +132_1-1 Q0 MARCO_30_1666412630-3 9 0.206626 hybrid +132_1-1 Q0 MARCO_30_1605964568-2 10 0.204527 hybrid +132_1-1 Q0 MARCO_07_1289912856-1 11 0.187707 hybrid +132_1-1 Q0 MARCO_57_1276848320-4 12 0.136008 hybrid +132_1-1 Q0 MARCO_16_3117875026-6 13 0.134271 hybrid +132_1-1 Q0 MARCO_57_1474727268-1 14 0.125518 hybrid +132_1-1 Q0 MARCO_16_3117875026-7 15 0.110735 hybrid +132_1-1 Q0 MARCO_16_3117875026-1 16 0.076708 hybrid +132_1-1 Q0 MARCO_27_1574256585-1 17 0.076550 hybrid +132_1-1 Q0 MARCO_30_1666412630-2 18 0.071214 hybrid +132_1-1 Q0 MARCO_06_763073632-16 19 0.054829 hybrid +132_1-1 Q0 MARCO_19_203198818-32 20 0.042271 hybrid +132_1-1 Q0 MARCO_55_296706312-6 21 0.034402 hybrid +132_1-1 Q0 MARCO_52_62728092-4 22 0.022681 hybrid +132_1-1 Q0 MARCO_32_233298730-8 23 0.001496 hybrid +132_1-1 Q0 MARCO_17_1512488010-120 24 -0.015790 hybrid +132_1-1 Q0 MARCO_50_657490639-3 25 -0.034275 hybrid +132_1-1 Q0 MARCO_16_3117875026-5 26 -0.034599 hybrid +132_1-1 Q0 MARCO_55_296706312-8 27 -0.039721 hybrid +132_1-1 Q0 MARCO_12_478606353-8 28 -0.045665 hybrid +132_1-1 Q0 MARCO_53_112499981-3 29 -0.045665 hybrid +132_1-1 Q0 MARCO_16_3130933251-9 30 -0.048261 hybrid +132_1-1 Q0 MARCO_49_1661153621-14 31 -0.048261 hybrid +132_1-1 Q0 MARCO_54_214915112-11 32 -0.067702 hybrid +132_1-1 Q0 MARCO_30_1605964568-7 33 -0.068673 hybrid +132_1-1 Q0 MARCO_39_8636-1 34 -0.090773 hybrid +132_1-1 Q0 MARCO_02_1096783254-1 35 -0.104191 hybrid +132_1-1 Q0 KILT_37081258-2 36 -0.114712 hybrid +132_1-1 Q0 MARCO_36_998866032-5 37 -0.121398 hybrid +132_1-1 Q0 MARCO_01_1245205933-5 38 -0.133340 hybrid +132_1-1 Q0 MARCO_18_2151603028-33 39 -0.146142 hybrid +132_1-1 Q0 MARCO_35_1328253675-3 40 -0.156182 hybrid +132_1-1 Q0 MARCO_36_684950861-5 41 -0.156182 hybrid +132_1-1 Q0 MARCO_30_1605964568-3 42 -0.163775 hybrid +132_1-1 Q0 MARCO_16_2411634799-25 43 -0.171139 hybrid +132_1-1 Q0 MARCO_16_3117875026-9 44 -0.190477 hybrid +132_1-1 Q0 MARCO_16_1458944068-14 45 -0.210004 hybrid +132_1-1 Q0 MARCO_19_203198818-34 46 -0.210004 hybrid +132_1-1 Q0 MARCO_39_1675559276-1 47 -0.210107 hybrid +132_1-1 Q0 MARCO_17_1512488010-57 48 -0.214732 hybrid +132_1-1 Q0 MARCO_14_1855504797-25 49 -0.219436 hybrid +132_1-1 Q0 MARCO_19_2484932551-34 50 -0.219436 hybrid +132_1-1 Q0 MARCO_19_2486544974-34 51 -0.219436 hybrid +132_1-1 Q0 MARCO_19_2510994380-22 52 -0.219436 hybrid +132_1-1 Q0 MARCO_32_233298730-7 53 -0.219437 hybrid +132_1-1 Q0 MARCO_59_689662115-4 54 -0.219437 hybrid +132_1-1 Q0 MARCO_54_1562379270-3 55 -0.219973 hybrid +132_1-1 Q0 MARCO_06_763073632-30 56 -0.223612 hybrid +132_1-1 Q0 MARCO_47_1576529973-5 57 -0.227811 hybrid +132_1-1 Q0 MARCO_08_393301765-1 58 -0.228213 hybrid +132_1-1 Q0 MARCO_19_2481922798-29 59 -0.228671 hybrid +132_1-1 Q0 MARCO_19_2496718831-25 60 -0.228671 hybrid +132_1-1 Q0 MARCO_19_2497924734-27 61 -0.228671 hybrid +132_1-1 Q0 MARCO_19_2509836341-27 62 -0.228671 hybrid +132_1-1 Q0 MARCO_52_1749976642-2 63 -0.228671 hybrid +132_1-1 Q0 KILT_68736-46 64 -0.229776 hybrid +132_1-1 Q0 MARCO_01_1746584207-1 65 -0.230636 hybrid +132_1-1 Q0 MARCO_04_643170393-1 66 -0.236667 hybrid +132_1-1 Q0 MARCO_43_354734750-13 67 -0.236888 hybrid +132_1-1 Q0 MARCO_39_8636-2 68 -0.243297 hybrid +132_1-1 Q0 KILT_44305780-1 69 -0.246178 hybrid +132_1-1 Q0 MARCO_34_590471208-1 70 -0.246762 hybrid +132_1-1 Q0 MARCO_41_713213597-10 71 -0.251245 hybrid +132_1-1 Q0 MARCO_54_1562379270-2 72 -0.251245 hybrid +132_1-1 Q0 MARCO_54_1562379270-4 73 -0.251245 hybrid +132_1-1 Q0 MARCO_39_1692133770-1 74 -0.252129 hybrid +132_1-1 Q0 MARCO_30_1508437232-4 75 -0.255184 hybrid +132_1-1 Q0 MARCO_16_3117875026-2 76 -0.256478 hybrid +132_1-1 Q0 MARCO_54_460949828-6 77 -0.257559 hybrid +132_1-1 Q0 MARCO_43_580627738-2 78 -0.257638 hybrid +132_1-1 Q0 MARCO_08_477154067-9 79 -0.258009 hybrid +132_1-1 Q0 KILT_3314050-1 80 -0.272343 hybrid +132_1-1 Q0 KILT_49023347-1 81 -0.275745 hybrid +132_1-1 Q0 MARCO_41_712781609-2 82 -0.277000 hybrid +132_1-1 Q0 KILT_44789198-2 83 -0.279407 hybrid +132_1-1 Q0 KILT_14345195-1 84 -0.281009 hybrid +132_1-1 Q0 MARCO_17_1512488010-86 85 -0.282446 hybrid +132_1-1 Q0 KILT_46838289-2 86 -0.289644 hybrid +132_1-1 Q0 MARCO_29_23858538-2 87 -0.290828 hybrid +132_1-1 Q0 MARCO_54_460949828-1 88 -0.292975 hybrid +132_1-1 Q0 MARCO_35_1698607703-1 89 -0.294088 hybrid +132_1-1 Q0 MARCO_34_818223578-10 90 -0.295406 hybrid +132_1-1 Q0 MARCO_25_1403534465-4 91 -0.298382 hybrid +132_1-1 Q0 MARCO_54_1562379270-1 92 -0.301152 hybrid +132_1-1 Q0 KILT_33144243-1 93 -0.302802 hybrid +132_1-1 Q0 MARCO_17_1839385075-8 94 -0.303023 hybrid +132_1-1 Q0 KILT_247477-10 95 -0.304609 hybrid +132_1-1 Q0 MARCO_18_732096637-17 96 -0.309487 hybrid +132_1-1 Q0 KILT_33144243-2 97 -0.310750 hybrid +132_1-1 Q0 MARCO_55_248915295-6 98 -0.311823 hybrid +132_1-1 Q0 KILT_68736-74 99 -0.312258 hybrid +132_1-1 Q0 MARCO_08_1326739-2 100 -0.316401 hybrid +132_1-3 Q0 MARCO_59_724229737-1 1 0.500000 hybrid +132_1-3 Q0 MARCO_45_1313575685-6 2 0.305949 hybrid +132_1-3 Q0 MARCO_26_222804180-2 3 0.238222 hybrid +132_1-3 Q0 MARCO_51_1632960714-1 4 0.029394 hybrid +132_1-3 Q0 MARCO_03_1167355426-16 5 0.007309 hybrid +132_1-3 Q0 MARCO_10_1315447023-2 6 -0.040857 hybrid +132_1-3 Q0 MARCO_40_1745996639-3 7 -0.042487 hybrid +132_1-3 Q0 MARCO_47_1569657986-1 8 -0.046725 hybrid +132_1-3 Q0 MARCO_39_961344741-1 9 -0.055482 hybrid +132_1-3 Q0 MARCO_11_94851275-2 10 -0.063868 hybrid +132_1-3 Q0 MARCO_44_1555015488-4 11 -0.068060 hybrid +132_1-3 Q0 MARCO_10_786565416-1 12 -0.068568 hybrid +132_1-3 Q0 MARCO_26_1756726441-7 13 -0.068712 hybrid +132_1-3 Q0 MARCO_40_1745996639-13 14 -0.071290 hybrid +132_1-3 Q0 MARCO_14_490950519-1 15 -0.078030 hybrid +132_1-3 Q0 MARCO_37_139343961-3 16 -0.080699 hybrid +132_1-3 Q0 MARCO_23_599477390-6 17 -0.089349 hybrid +132_1-3 Q0 MARCO_04_963881130-2 18 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963888901-2 19 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963896670-2 20 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963912457-2 21 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963904589-2 22 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963927991-2 23 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963920293-2 24 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963950838-2 25 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963974144-2 26 -0.095779 hybrid +132_1-3 Q0 MARCO_04_963998073-2 27 -0.095779 hybrid +132_1-3 Q0 MARCO_04_964005927-2 28 -0.095779 hybrid +132_1-3 Q0 MARCO_04_964036894-2 29 -0.095779 hybrid +132_1-3 Q0 MARCO_00_1680318572-1 30 -0.100972 hybrid +132_1-3 Q0 MARCO_50_2145826584-2 31 -0.106127 hybrid +132_1-3 Q0 MARCO_04_963935731-2 32 -0.107030 hybrid +132_1-3 Q0 MARCO_04_963943188-2 33 -0.107030 hybrid +132_1-3 Q0 MARCO_04_963982118-2 34 -0.107030 hybrid +132_1-3 Q0 MARCO_04_964013847-2 35 -0.107030 hybrid +132_1-3 Q0 MARCO_04_964075436-6 36 -0.112496 hybrid +132_1-3 Q0 MARCO_04_963958512-2 37 -0.136151 hybrid +132_1-3 Q0 MARCO_04_963966486-2 38 -0.136151 hybrid +132_1-3 Q0 MARCO_04_963989986-2 39 -0.136151 hybrid +132_1-3 Q0 MARCO_04_964066555-6 40 -0.136151 hybrid +132_1-3 Q0 MARCO_04_964058608-6 41 -0.136151 hybrid +132_1-3 Q0 MARCO_04_964021896-2 42 -0.141291 hybrid +132_1-3 Q0 MARCO_11_1248654770-1 43 -0.146378 hybrid +132_1-3 Q0 MARCO_02_1581399620-21 44 -0.150942 hybrid +132_1-3 Q0 MARCO_13_6031552-3 45 -0.160063 hybrid +132_1-3 Q0 MARCO_47_1487078282-22 46 -0.161443 hybrid +132_1-3 Q0 MARCO_48_944969543-4 47 -0.164726 hybrid +132_1-3 Q0 MARCO_17_4578119250-18 48 -0.165476 hybrid +132_1-3 Q0 MARCO_52_66443237-4 49 -0.168623 hybrid +132_1-3 Q0 MARCO_02_401915634-1 50 -0.172436 hybrid +132_1-3 Q0 MARCO_47_1565727471-2 51 -0.172831 hybrid +132_1-3 Q0 MARCO_12_248883443-2 52 -0.178987 hybrid +132_1-3 Q0 KILT_5178211-2 53 -0.185113 hybrid +132_1-3 Q0 MARCO_25_404061067-1 54 -0.187653 hybrid +132_1-3 Q0 MARCO_55_591255033-2 55 -0.189487 hybrid +132_1-3 Q0 MARCO_04_963858592-1 56 -0.190230 hybrid +132_1-3 Q0 KILT_32478026-2 57 -0.191443 hybrid +132_1-3 Q0 MARCO_03_1587318080-3 58 -0.192437 hybrid +132_1-3 Q0 MARCO_25_1317084896-4 59 -0.193559 hybrid +132_1-3 Q0 MARCO_23_1682959200-4 60 -0.194453 hybrid +132_1-3 Q0 MARCO_51_1653449826-7 61 -0.200610 hybrid +132_1-3 Q0 MARCO_06_637996497-1 62 -0.200617 hybrid +132_1-3 Q0 MARCO_50_2471791001-105 63 -0.201413 hybrid +132_1-3 Q0 MARCO_50_1207207903-4 64 -0.201860 hybrid +132_1-3 Q0 MARCO_23_1082902069-12 65 -0.202444 hybrid +132_1-3 Q0 KILT_8991205-3 66 -0.204021 hybrid +132_1-3 Q0 MARCO_24_1884247637-2 67 -0.206705 hybrid +132_1-3 Q0 KILT_17773-6 68 -0.207865 hybrid +132_1-3 Q0 MARCO_08_1156614044-1 69 -0.208191 hybrid +132_1-3 Q0 MARCO_20_69273219-12 70 -0.208244 hybrid +132_1-3 Q0 MARCO_00_1191031558-1 71 -0.208601 hybrid +132_1-3 Q0 KILT_1971404-6 72 -0.210875 hybrid +132_1-3 Q0 MARCO_18_883297872-7 73 -0.210875 hybrid +132_1-3 Q0 KILT_24355-12 74 -0.215704 hybrid +132_1-3 Q0 KILT_20220805-1 75 -0.216023 hybrid +132_1-3 Q0 MARCO_54_316032144-6 76 -0.216516 hybrid +132_1-3 Q0 MARCO_00_1102903870-3 77 -0.218737 hybrid +132_1-3 Q0 KILT_28867002-3 78 -0.221573 hybrid +132_1-3 Q0 MARCO_07_1579162542-1 79 -0.223711 hybrid +132_1-3 Q0 MARCO_19_604576804-42 80 -0.223764 hybrid +132_1-3 Q0 MARCO_39_960371317-4 81 -0.225288 hybrid +132_1-3 Q0 KILT_19857-11 82 -0.226903 hybrid +132_1-3 Q0 MARCO_39_943894073-4 83 -0.227767 hybrid +132_1-3 Q0 MARCO_44_132156977-6 84 -0.227873 hybrid +132_1-3 Q0 MARCO_23_1687492353-1 85 -0.230618 hybrid +132_1-3 Q0 MARCO_36_688012867-2 86 -0.230800 hybrid +132_1-3 Q0 MARCO_03_1117972418-3 87 -0.233347 hybrid +132_1-3 Q0 KILT_41560533-5 88 -0.237305 hybrid +132_1-3 Q0 MARCO_06_1659209929-2 89 -0.237805 hybrid +132_1-3 Q0 MARCO_36_1483794250-7 90 -0.239200 hybrid +132_1-3 Q0 KILT_25447994-1 91 -0.246107 hybrid +132_1-3 Q0 KILT_54374992-1 92 -0.247995 hybrid +132_1-3 Q0 MARCO_36_1480292942-7 93 -0.248616 hybrid +132_1-3 Q0 MARCO_01_638519173-1 94 -0.251823 hybrid +132_1-3 Q0 MARCO_17_441117681-7 95 -0.253287 hybrid +132_1-3 Q0 MARCO_03_1139166052-12 96 -0.255053 hybrid +132_1-3 Q0 MARCO_00_1245844534-1 97 -0.255523 hybrid +132_1-3 Q0 MARCO_07_240519221-3 98 -0.255599 hybrid +132_1-3 Q0 MARCO_06_721284153-1 99 -0.257297 hybrid +132_1-3 Q0 MARCO_27_54852603-23 100 -0.258381 hybrid +132_1-5 Q0 MARCO_02_1687136851-3 1 0.500000 hybrid +132_1-5 Q0 MARCO_33_1610789522-3 2 0.367187 hybrid +132_1-5 Q0 MARCO_12_248887769-1 3 0.263126 hybrid +132_1-5 Q0 MARCO_55_1657136210-2 4 0.261326 hybrid +132_1-5 Q0 MARCO_01_1068692596-4 5 0.235263 hybrid +132_1-5 Q0 MARCO_16_3677976422-3 6 0.179250 hybrid +132_1-5 Q0 MARCO_54_353043955-5 7 0.168840 hybrid +132_1-5 Q0 MARCO_15_1835245082-24 8 0.127680 hybrid +132_1-5 Q0 MARCO_17_540104257-24 9 0.098785 hybrid +132_1-5 Q0 MARCO_19_928224339-9 10 0.083920 hybrid +132_1-5 Q0 MARCO_33_1609514949-2 11 0.071622 hybrid +132_1-5 Q0 MARCO_08_1696774113-10 12 0.067323 hybrid +132_1-5 Q0 MARCO_24_1569592858-10 13 0.067323 hybrid +132_1-5 Q0 MARCO_50_2471791001-46 14 0.063823 hybrid +132_1-5 Q0 MARCO_02_1851769454-1 15 0.059424 hybrid +132_1-5 Q0 MARCO_47_1570433115-5 16 0.048648 hybrid +132_1-5 Q0 MARCO_31_1615209273-2 17 0.042449 hybrid +132_1-5 Q0 KILT_5042951-2 18 0.041416 hybrid +132_1-5 Q0 MARCO_05_1665728366-2 19 0.035750 hybrid +132_1-5 Q0 MARCO_07_673645771-7 20 0.034972 hybrid +132_1-5 Q0 KILT_1765998-4 21 0.033828 hybrid +132_1-5 Q0 MARCO_40_81925579-5 22 0.030595 hybrid +132_1-5 Q0 MARCO_48_1250962164-6 23 0.007054 hybrid +132_1-5 Q0 MARCO_00_1680318572-2 24 0.003477 hybrid +132_1-5 Q0 KILT_4243385-7 25 -0.004499 hybrid +132_1-5 Q0 MARCO_11_94800771-3 26 -0.009965 hybrid +132_1-5 Q0 MARCO_57_180589858-6 27 -0.019053 hybrid +132_1-5 Q0 MARCO_05_1665723266-3 28 -0.032928 hybrid +132_1-5 Q0 KILT_19258753-21 29 -0.035561 hybrid +132_1-5 Q0 MARCO_24_1719287855-3 30 -0.035650 hybrid +132_1-5 Q0 MARCO_08_1187531960-16 31 -0.035795 hybrid +132_1-5 Q0 MARCO_00_1103701897-3 32 -0.036083 hybrid +132_1-5 Q0 MARCO_10_1502523454-3 33 -0.039761 hybrid +132_1-5 Q0 MARCO_17_799787776-44 34 -0.043449 hybrid +132_1-5 Q0 MARCO_17_800023274-43 35 -0.043449 hybrid +132_1-5 Q0 MARCO_11_94813769-18 36 -0.044071 hybrid +132_1-5 Q0 MARCO_39_185924172-2 37 -0.046359 hybrid +132_1-5 Q0 MARCO_41_2054050347-10 38 -0.052359 hybrid +132_1-5 Q0 MARCO_00_1680318572-6 39 -0.053481 hybrid +132_1-5 Q0 MARCO_21_1594973900-2 40 -0.062546 hybrid +132_1-5 Q0 MARCO_23_121498598-1 41 -0.065956 hybrid +132_1-5 Q0 MARCO_39_971708395-2 42 -0.067967 hybrid +132_1-5 Q0 MARCO_08_289798619-3 43 -0.081210 hybrid +132_1-5 Q0 MARCO_41_2080437809-3 44 -0.083631 hybrid +132_1-5 Q0 MARCO_51_1226941260-7 45 -0.084820 hybrid +132_1-5 Q0 MARCO_05_1665685814-3 46 -0.086609 hybrid +132_1-5 Q0 MARCO_51_1661949147-2 47 -0.089431 hybrid +132_1-5 Q0 MARCO_53_1430174684-1 48 -0.093685 hybrid +132_1-5 Q0 MARCO_38_1727804927-3 49 -0.096574 hybrid +132_1-5 Q0 MARCO_00_1354350192-9 50 -0.108361 hybrid +132_1-5 Q0 MARCO_19_746909300-5 51 -0.115293 hybrid +132_1-5 Q0 MARCO_11_816485080-1 52 -0.115671 hybrid +132_1-5 Q0 MARCO_25_951365682-46 53 -0.123814 hybrid +132_1-5 Q0 KILT_185216-37 54 -0.124003 hybrid +132_1-5 Q0 MARCO_35_526447998-2 55 -0.125614 hybrid +132_1-5 Q0 MARCO_03_254326605-5 56 -0.126525 hybrid +132_1-5 Q0 MARCO_05_1126238249-4 57 -0.129780 hybrid +132_1-5 Q0 MARCO_10_1471037713-11 58 -0.130458 hybrid +132_1-5 Q0 MARCO_01_881150837-2 59 -0.131513 hybrid +132_1-5 Q0 MARCO_14_1167832580-3 60 -0.132135 hybrid +132_1-5 Q0 MARCO_46_1527293965-1 61 -0.132246 hybrid +132_1-5 Q0 MARCO_12_1541140214-3 62 -0.138134 hybrid +132_1-5 Q0 MARCO_50_920682403-22 63 -0.141700 hybrid +132_1-5 Q0 MARCO_47_1570433115-1 64 -0.143967 hybrid +132_1-5 Q0 MARCO_39_1338989635-3 65 -0.150910 hybrid +132_1-5 Q0 MARCO_01_7777230-4 66 -0.154354 hybrid +132_1-5 Q0 MARCO_27_1349125701-4 67 -0.154354 hybrid +132_1-5 Q0 MARCO_57_183498669-15 68 -0.157820 hybrid +132_1-5 Q0 MARCO_39_1015376504-1 69 -0.159086 hybrid +132_1-5 Q0 MARCO_05_1651662681-2 70 -0.159353 hybrid +132_1-5 Q0 MARCO_15_1887871279-1 71 -0.160520 hybrid +132_1-5 Q0 MARCO_41_162846710-8 72 -0.162986 hybrid +132_1-5 Q0 MARCO_00_1212667583-7 73 -0.163552 hybrid +132_1-5 Q0 KILT_37063005-59 74 -0.164086 hybrid +132_1-5 Q0 MARCO_36_1480730644-5 75 -0.165108 hybrid +132_1-5 Q0 KILT_46646396-26 76 -0.166030 hybrid +132_1-5 Q0 KILT_19258753-16 77 -0.166407 hybrid +132_1-5 Q0 MARCO_20_89423971-2 78 -0.168229 hybrid +132_1-5 Q0 MARCO_47_1515177960-13 79 -0.171318 hybrid +132_1-5 Q0 MARCO_56_1368481315-4 80 -0.172706 hybrid +132_1-5 Q0 KILT_40980474-9 81 -0.175928 hybrid +132_1-5 Q0 MARCO_57_2309306766-20 82 -0.177894 hybrid +132_1-5 Q0 MARCO_12_248875506-2 83 -0.178350 hybrid +132_1-5 Q0 MARCO_50_1123952012-18 84 -0.180661 hybrid +132_1-5 Q0 MARCO_19_1572027940-1 85 -0.180705 hybrid +132_1-5 Q0 KILT_60163117-7 86 -0.181227 hybrid +132_1-5 Q0 MARCO_48_1417581244-4 87 -0.181438 hybrid +132_1-5 Q0 MARCO_36_1480597812-5 88 -0.183938 hybrid +132_1-5 Q0 MARCO_04_653699290-7 89 -0.187404 hybrid +132_1-5 Q0 MARCO_55_883302635-6 90 -0.187515 hybrid +132_1-5 Q0 MARCO_44_1342460968-5 91 -0.188593 hybrid +132_1-5 Q0 MARCO_05_1581214602-10 92 -0.191737 hybrid +132_1-5 Q0 MARCO_50_130684606-7 93 -0.192926 hybrid +132_1-5 Q0 MARCO_47_1535584499-4 94 -0.192926 hybrid +132_1-5 Q0 MARCO_27_1284251600-5 95 -0.194725 hybrid +132_1-5 Q0 MARCO_31_582771071-2 96 -0.194781 hybrid +132_1-5 Q0 MARCO_50_389760981-7 97 -0.195636 hybrid +132_1-5 Q0 MARCO_16_3677795743-5 98 -0.195736 hybrid +132_1-5 Q0 KILT_54375067-5 99 -0.197180 hybrid +132_1-5 Q0 MARCO_47_1553745934-1 100 -0.197914 hybrid +132_1-7 Q0 MARCO_20_1068143192-2 1 0.500000 hybrid +132_1-7 Q0 MARCO_24_1429122752-1 2 0.499593 hybrid +132_1-7 Q0 MARCO_20_1061396219-2 3 0.437130 hybrid +132_1-7 Q0 MARCO_30_204228925-275 4 0.376777 hybrid +132_1-7 Q0 MARCO_20_1048511521-2 5 0.358053 hybrid +132_1-7 Q0 MARCO_20_1080149910-3 6 0.352845 hybrid +132_1-7 Q0 MARCO_20_1080149910-1 7 0.343434 hybrid +132_1-7 Q0 MARCO_20_1039883746-1 8 0.337761 hybrid +132_1-7 Q0 MARCO_33_1122911489-1 9 0.305600 hybrid +132_1-7 Q0 MARCO_47_125442160-2 10 0.293266 hybrid +132_1-7 Q0 MARCO_33_1122144812-1 11 0.287535 hybrid +132_1-7 Q0 MARCO_20_1048511521-3 12 0.283391 hybrid +132_1-7 Q0 MARCO_33_1132393456-1 13 0.265577 hybrid +132_1-7 Q0 MARCO_06_833099672-26 14 0.252566 hybrid +132_1-7 Q0 MARCO_31_92541914-10 15 0.224877 hybrid +132_1-7 Q0 MARCO_33_1132398009-1 16 0.222399 hybrid +132_1-7 Q0 MARCO_20_1080149910-2 17 0.191380 hybrid +132_1-7 Q0 MARCO_07_1592693514-4 18 0.182086 hybrid +132_1-7 Q0 MARCO_47_129342253-1 19 0.180382 hybrid +132_1-7 Q0 MARCO_07_711409109-3 20 0.172947 hybrid +132_1-7 Q0 MARCO_20_1045501279-3 21 0.171030 hybrid +132_1-7 Q0 MARCO_45_1636283350-15 22 0.155482 hybrid +132_1-7 Q0 MARCO_23_1549961384-6 23 0.139546 hybrid +132_1-7 Q0 MARCO_48_2110899124-5 24 0.137068 hybrid +132_1-7 Q0 MARCO_20_1049217908-1 25 0.136874 hybrid +132_1-7 Q0 MARCO_20_1067889150-2 26 0.134435 hybrid +132_1-7 Q0 MARCO_20_1073078385-3 27 0.132440 hybrid +132_1-7 Q0 MARCO_59_784731941-4 28 0.129245 hybrid +132_1-7 Q0 MARCO_50_1996470247-19 29 0.122798 hybrid +132_1-7 Q0 MARCO_39_435577081-4 30 0.122449 hybrid +132_1-7 Q0 MARCO_07_1590598339-1 31 0.111412 hybrid +132_1-7 Q0 MARCO_20_1042446638-3 32 0.109612 hybrid +132_1-7 Q0 MARCO_20_1049468685-2 33 0.107521 hybrid +132_1-7 Q0 MARCO_20_1058954508-4 34 0.106204 hybrid +132_1-7 Q0 MARCO_20_1091554644-2 35 0.105255 hybrid +132_1-7 Q0 MARCO_50_1996132144-20 36 0.103203 hybrid +132_1-7 Q0 MARCO_33_1138054433-1 37 0.101770 hybrid +132_1-7 Q0 MARCO_20_1091684857-2 38 0.085079 hybrid +132_1-7 Q0 MARCO_33_1136669906-2 39 0.082678 hybrid +132_1-7 Q0 MARCO_11_1506063492-4 40 0.076424 hybrid +132_1-7 Q0 MARCO_26_769518666-8 41 0.071313 hybrid +132_1-7 Q0 MARCO_20_1070473628-1 42 0.070286 hybrid +132_1-7 Q0 MARCO_57_816465259-3 43 0.064807 hybrid +132_1-7 Q0 MARCO_20_1038919473-2 44 0.062580 hybrid +132_1-7 Q0 MARCO_28_659728633-3 45 0.060682 hybrid +132_1-7 Q0 MARCO_05_1018251532-2 46 0.057236 hybrid +132_1-7 Q0 MARCO_20_1071347553-6 47 0.055610 hybrid +132_1-7 Q0 MARCO_02_1614569451-4 48 0.049588 hybrid +132_1-7 Q0 MARCO_02_1696536634-10 49 0.049588 hybrid +132_1-7 Q0 MARCO_02_1696536634-3 50 0.049587 hybrid +132_1-7 Q0 MARCO_11_1433487121-4 51 0.049587 hybrid +132_1-7 Q0 MARCO_33_1132393456-4 52 0.042172 hybrid +132_1-7 Q0 MARCO_30_400532908-5 53 0.036944 hybrid +132_1-7 Q0 MARCO_20_1047872002-2 54 0.031232 hybrid +132_1-7 Q0 MARCO_20_1070473628-4 55 0.029199 hybrid +132_1-7 Q0 MARCO_20_1061346679-1 56 0.022809 hybrid +132_1-7 Q0 MARCO_46_322808173-6 57 0.019092 hybrid +132_1-7 Q0 MARCO_20_1071341135-1 58 0.018085 hybrid +132_1-7 Q0 MARCO_20_1045501279-2 59 0.014503 hybrid +132_1-7 Q0 MARCO_23_823250290-6 60 0.012934 hybrid +132_1-7 Q0 MARCO_20_1083048235-1 61 0.011443 hybrid +132_1-7 Q0 MARCO_20_1039883746-2 62 0.006990 hybrid +132_1-7 Q0 MARCO_20_1067733829-2 63 0.001239 hybrid +132_1-7 Q0 MARCO_20_1067513128-6 64 -0.001762 hybrid +132_1-7 Q0 MARCO_20_1086685544-1 65 -0.001762 hybrid +132_1-7 Q0 MARCO_20_1089728379-2 66 -0.002517 hybrid +132_1-7 Q0 MARCO_20_1049049594-2 67 -0.002575 hybrid +132_1-7 Q0 MARCO_33_1132398009-4 68 -0.002672 hybrid +132_1-7 Q0 MARCO_20_1067513128-4 69 -0.004744 hybrid +132_1-7 Q0 MARCO_20_1090146664-4 70 -0.012566 hybrid +132_1-7 Q0 MARCO_33_1122144812-2 71 -0.012566 hybrid +132_1-7 Q0 MARCO_04_519638071-3 72 -0.013534 hybrid +132_1-7 Q0 MARCO_30_935612208-12 73 -0.013728 hybrid +132_1-7 Q0 MARCO_20_1091796581-3 74 -0.014444 hybrid +132_1-7 Q0 MARCO_33_1134306198-1 75 -0.015122 hybrid +132_1-7 Q0 MARCO_20_1068143192-1 76 -0.023797 hybrid +132_1-7 Q0 MARCO_28_91995860-2 77 -0.026004 hybrid +132_1-7 Q0 MARCO_29_1245218303-4 78 -0.027746 hybrid +132_1-7 Q0 MARCO_30_1787653271-1 79 -0.031406 hybrid +132_1-7 Q0 MARCO_55_626968910-2 80 -0.033652 hybrid +132_1-7 Q0 MARCO_20_1045501279-1 81 -0.034271 hybrid +132_1-7 Q0 MARCO_22_529289391-10 82 -0.035066 hybrid +132_1-7 Q0 MARCO_20_1088046429-2 83 -0.036982 hybrid +132_1-7 Q0 MARCO_20_1067816632-4 84 -0.043546 hybrid +132_1-7 Q0 MARCO_23_1433323736-5 85 -0.046063 hybrid +132_1-7 Q0 MARCO_33_1135087392-1 86 -0.047303 hybrid +132_1-7 Q0 MARCO_20_1054364266-4 87 -0.050091 hybrid +132_1-7 Q0 MARCO_47_126746417-1 88 -0.052201 hybrid +132_1-7 Q0 MARCO_47_126746417-3 89 -0.052202 hybrid +132_1-7 Q0 MARCO_20_1086650484-2 90 -0.055183 hybrid +132_1-7 Q0 MARCO_20_1067513128-2 91 -0.056519 hybrid +132_1-7 Q0 MARCO_20_1092927229-2 92 -0.059152 hybrid +132_1-7 Q0 MARCO_20_1067715301-4 93 -0.061244 hybrid +132_1-7 Q0 MARCO_03_1528595149-7 94 -0.064109 hybrid +132_1-7 Q0 MARCO_20_1093178614-2 95 -0.064109 hybrid +132_1-7 Q0 MARCO_07_1133358598-2 96 -0.064264 hybrid +132_1-7 Q0 MARCO_33_1138167765-1 97 -0.064768 hybrid +132_1-7 Q0 MARCO_21_250998191-7 98 -0.067885 hybrid +132_1-7 Q0 MARCO_09_1776940922-2 99 -0.068621 hybrid +132_1-7 Q0 MARCO_20_1067889150-1 100 -0.070983 hybrid +132_2-1 Q0 MARCO_02_1687136851-3 1 0.500000 hybrid +132_2-1 Q0 MARCO_33_1610789522-3 2 0.043808 hybrid +132_2-1 Q0 MARCO_19_928224339-9 3 -0.089095 hybrid +132_2-1 Q0 MARCO_06_213300327-13 4 -0.095402 hybrid +132_2-1 Q0 MARCO_01_1068692596-4 5 -0.145133 hybrid +132_2-1 Q0 MARCO_45_5758374-4 6 -0.167652 hybrid +132_2-1 Q0 MARCO_10_1471037713-11 7 -0.173942 hybrid +132_2-1 Q0 MARCO_05_1581214602-10 8 -0.181086 hybrid +132_2-1 Q0 MARCO_36_1480597812-5 9 -0.184744 hybrid +132_2-1 Q0 MARCO_12_248887769-1 10 -0.186893 hybrid +132_2-1 Q0 MARCO_17_540104257-24 11 -0.188667 hybrid +132_2-1 Q0 KILT_46646396-26 12 -0.190863 hybrid +132_2-1 Q0 MARCO_15_1887871279-2 13 -0.196004 hybrid +132_2-1 Q0 MARCO_31_899439621-2 14 -0.206888 hybrid +132_2-1 Q0 MARCO_47_1535584499-4 15 -0.208444 hybrid +132_2-1 Q0 MARCO_36_1481433107-10 16 -0.210770 hybrid +132_2-1 Q0 MARCO_24_1719287855-3 17 -0.218809 hybrid +132_2-1 Q0 MARCO_00_1212667583-7 18 -0.220416 hybrid +132_2-1 Q0 MARCO_11_94813769-18 19 -0.228221 hybrid +132_2-1 Q0 KILT_40980474-8 20 -0.242046 hybrid +132_2-1 Q0 MARCO_43_1668526597-5 21 -0.247889 hybrid +132_2-1 Q0 MARCO_36_683259887-2 22 -0.249398 hybrid +132_2-1 Q0 MARCO_08_1187531960-16 23 -0.250204 hybrid +132_2-1 Q0 MARCO_06_211514153-23 24 -0.257946 hybrid +132_2-1 Q0 MARCO_54_336681975-5 25 -0.258222 hybrid +132_2-1 Q0 MARCO_03_364431500-3 26 -0.261875 hybrid +132_2-1 Q0 MARCO_05_1665723266-3 27 -0.261968 hybrid +132_2-1 Q0 MARCO_36_684604970-1 28 -0.262015 hybrid +132_2-1 Q0 MARCO_47_619426680-1 29 -0.262249 hybrid +132_2-1 Q0 MARCO_19_609601020-29 30 -0.263082 hybrid +132_2-1 Q0 MARCO_50_2471791001-86 31 -0.265527 hybrid +132_2-1 Q0 MARCO_26_1697981170-3 32 -0.266578 hybrid +132_2-1 Q0 MARCO_02_694648736-46 33 -0.268691 hybrid +132_2-1 Q0 MARCO_44_1147498861-1 34 -0.269955 hybrid +132_2-1 Q0 MARCO_20_1691148513-26 35 -0.270044 hybrid +132_2-1 Q0 MARCO_07_673645771-7 36 -0.273925 hybrid +132_2-1 Q0 MARCO_09_135413271-1 37 -0.276032 hybrid +132_2-1 Q0 MARCO_01_1089136472-1 38 -0.277187 hybrid +132_2-1 Q0 MARCO_15_1835245082-24 39 -0.277213 hybrid +132_2-1 Q0 MARCO_16_3677795743-5 40 -0.277552 hybrid +132_2-1 Q0 MARCO_31_1615209273-2 41 -0.278088 hybrid +132_2-1 Q0 MARCO_47_1570433115-5 42 -0.279170 hybrid +132_2-1 Q0 KILT_9808909-9 43 -0.283775 hybrid +132_2-1 Q0 MARCO_50_2471791001-46 44 -0.285283 hybrid +132_2-1 Q0 MARCO_56_1072377115-2 45 -0.287188 hybrid +132_2-1 Q0 MARCO_50_2471791001-74 46 -0.287198 hybrid +132_2-1 Q0 MARCO_46_1380912906-4 47 -0.287776 hybrid +132_2-1 Q0 MARCO_13_1213091716-3 48 -0.287942 hybrid +132_2-1 Q0 MARCO_20_1670056934-3 49 -0.287948 hybrid +132_2-1 Q0 MARCO_56_940669272-1 50 -0.289040 hybrid +132_2-1 Q0 MARCO_11_94813769-17 51 -0.290211 hybrid +132_2-1 Q0 MARCO_51_1318862416-1 52 -0.292360 hybrid +132_2-1 Q0 MARCO_14_983008052-1 53 -0.295133 hybrid +132_2-1 Q0 MARCO_47_211150865-2 54 -0.295711 hybrid +132_2-1 Q0 MARCO_17_2684454601-2 55 -0.296564 hybrid +132_2-1 Q0 MARCO_00_1699290414-7 56 -0.296658 hybrid +132_2-1 Q0 MARCO_33_1609514949-2 57 -0.296980 hybrid +132_2-1 Q0 MARCO_54_1561773755-30 58 -0.297402 hybrid +132_2-1 Q0 MARCO_58_1574399558-4 59 -0.297958 hybrid +132_2-1 Q0 MARCO_32_71650109-4 60 -0.298021 hybrid +132_2-1 Q0 MARCO_08_1511470711-1 61 -0.299441 hybrid +132_2-1 Q0 MARCO_10_828766205-3 62 -0.300118 hybrid +132_2-1 Q0 MARCO_00_1680318572-2 63 -0.301642 hybrid +132_2-1 Q0 MARCO_48_1250962164-6 64 -0.302168 hybrid +132_2-1 Q0 MARCO_26_178079224-2 65 -0.302209 hybrid +132_2-1 Q0 KILT_37063005-59 66 -0.303526 hybrid +132_2-1 Q0 MARCO_03_1597279726-3 67 -0.303682 hybrid +132_2-1 Q0 MARCO_47_1568665536-17 68 -0.304623 hybrid +132_2-1 Q0 MARCO_06_770547898-30 69 -0.304629 hybrid +132_2-1 Q0 MARCO_06_770547898-2 70 -0.304738 hybrid +132_2-1 Q0 MARCO_03_254326605-5 71 -0.306413 hybrid +132_2-1 Q0 MARCO_35_1428083107-2 72 -0.307355 hybrid +132_2-1 Q0 MARCO_05_1661560165-3 73 -0.308427 hybrid +132_2-1 Q0 MARCO_56_1368481315-4 74 -0.308625 hybrid +132_2-1 Q0 MARCO_54_318992221-3 75 -0.308682 hybrid +132_2-1 Q0 MARCO_15_1887871279-1 76 -0.310378 hybrid +132_2-1 Q0 MARCO_39_185924172-2 77 -0.311002 hybrid +132_2-1 Q0 MARCO_50_2817239172-4 78 -0.311746 hybrid +132_2-1 Q0 MARCO_26_1570328160-4 79 -0.311830 hybrid +132_2-1 Q0 MARCO_04_653699290-7 80 -0.311908 hybrid +132_2-1 Q0 MARCO_48_1730558236-3 81 -0.312017 hybrid +132_2-1 Q0 MARCO_06_771599222-9 82 -0.312298 hybrid +132_2-1 Q0 MARCO_06_288733456-11 83 -0.312345 hybrid +132_2-1 Q0 MARCO_13_663552473-1 84 -0.312350 hybrid +132_2-1 Q0 MARCO_13_662686378-2 85 -0.312480 hybrid +132_2-1 Q0 MARCO_06_770547898-32 86 -0.312517 hybrid +132_2-1 Q0 MARCO_54_353043955-5 87 -0.312865 hybrid +132_2-1 Q0 MARCO_01_7777230-4 88 -0.313146 hybrid +132_2-1 Q0 MARCO_27_1349125701-4 89 -0.313146 hybrid +132_2-1 Q0 MARCO_16_3677976422-3 90 -0.313750 hybrid +132_2-1 Q0 MARCO_39_782276005-5 91 -0.318136 hybrid +132_2-1 Q0 MARCO_13_662508770-1 92 -0.318328 hybrid +132_2-1 Q0 MARCO_33_1613853617-1 93 -0.318974 hybrid +132_2-1 Q0 MARCO_40_1735427275-9 94 -0.320441 hybrid +132_2-1 Q0 MARCO_08_1696774113-10 95 -0.321528 hybrid +132_2-1 Q0 MARCO_24_1569592858-10 96 -0.321528 hybrid +132_2-1 Q0 MARCO_21_1409071773-1 97 -0.322970 hybrid +132_2-1 Q0 MARCO_25_406316876-2 98 -0.323147 hybrid +132_2-1 Q0 MARCO_57_661227871-4 99 -0.324099 hybrid +132_2-1 Q0 MARCO_05_1665728366-2 100 -0.326471 hybrid +132_2-11 Q0 MARCO_33_1621342262-1 1 0.500000 hybrid +132_2-11 Q0 MARCO_33_1621342262-2 2 0.184892 hybrid +132_2-11 Q0 MARCO_30_1605964568-7 3 0.097502 hybrid +132_2-11 Q0 MARCO_30_1605964568-1 4 0.075436 hybrid +132_2-11 Q0 MARCO_16_3117875026-6 5 0.053979 hybrid +132_2-11 Q0 MARCO_30_1605964568-8 6 0.010914 hybrid +132_2-11 Q0 MARCO_06_609309883-1 7 0.003349 hybrid +132_2-11 Q0 MARCO_33_1621342262-3 8 -0.020292 hybrid +132_2-11 Q0 MARCO_16_2411634799-25 9 -0.036616 hybrid +132_2-11 Q0 MARCO_30_1605964568-5 10 -0.068051 hybrid +132_2-11 Q0 MARCO_55_296706312-6 11 -0.071228 hybrid +132_2-11 Q0 MARCO_30_1605964568-4 12 -0.072468 hybrid +132_2-11 Q0 MARCO_30_1605964568-2 13 -0.077477 hybrid +132_2-11 Q0 MARCO_30_1605964568-6 14 -0.102816 hybrid +132_2-11 Q0 MARCO_39_8636-2 15 -0.106041 hybrid +132_2-11 Q0 MARCO_16_3117875026-2 16 -0.127678 hybrid +132_2-11 Q0 MARCO_55_296706312-8 17 -0.135540 hybrid +132_2-11 Q0 MARCO_07_1289912856-1 18 -0.141903 hybrid +132_2-11 Q0 MARCO_30_1605964568-3 19 -0.183003 hybrid +132_2-11 Q0 MARCO_16_3117875026-7 20 -0.194585 hybrid +132_2-11 Q0 MARCO_30_1666412630-3 21 -0.226545 hybrid +132_2-11 Q0 MARCO_16_3117875026-1 22 -0.229522 hybrid +132_2-11 Q0 MARCO_16_3117875026-5 23 -0.234607 hybrid +132_2-11 Q0 MARCO_39_1675559276-1 24 -0.239005 hybrid +132_2-11 Q0 MARCO_36_547706359-3 25 -0.249203 hybrid +132_2-11 Q0 MARCO_06_763073632-16 26 -0.253296 hybrid +132_2-11 Q0 MARCO_43_580627738-2 27 -0.280963 hybrid +132_2-11 Q0 MARCO_54_1585777016-1 28 -0.285304 hybrid +132_2-11 Q0 MARCO_41_713213597-10 29 -0.288729 hybrid +132_2-11 Q0 MARCO_54_1562379270-2 30 -0.288729 hybrid +132_2-11 Q0 MARCO_54_1562379270-4 31 -0.288729 hybrid +132_2-11 Q0 MARCO_39_1692133770-1 32 -0.289797 hybrid +132_2-11 Q0 MARCO_57_1276848320-4 33 -0.294071 hybrid +132_2-11 Q0 MARCO_08_477154067-9 34 -0.296905 hybrid +132_2-11 Q0 MARCO_39_8636-1 35 -0.300244 hybrid +132_2-11 Q0 MARCO_28_80782241-29 36 -0.301484 hybrid +132_2-11 Q0 MARCO_52_62728092-4 37 -0.303373 hybrid +132_2-11 Q0 MARCO_30_1666412630-2 38 -0.310471 hybrid +132_2-11 Q0 MARCO_02_1096783254-1 39 -0.316463 hybrid +132_2-11 Q0 MARCO_50_1661854532-28 40 -0.316472 hybrid +132_2-11 Q0 MARCO_27_1740946334-3 41 -0.320365 hybrid +132_2-11 Q0 MARCO_34_494597532-3 42 -0.330678 hybrid +132_2-11 Q0 MARCO_50_2171833519-2 43 -0.332157 hybrid +132_2-11 Q0 MARCO_13_302834546-5 44 -0.332586 hybrid +132_2-11 Q0 MARCO_39_1692133770-2 45 -0.335229 hybrid +132_2-11 Q0 MARCO_46_578904910-3 46 -0.339589 hybrid +132_2-11 Q0 MARCO_54_156803138-5 47 -0.339684 hybrid +132_2-11 Q0 MARCO_46_582440933-1 48 -0.342098 hybrid +132_2-11 Q0 MARCO_03_572787050-4 49 -0.342737 hybrid +132_2-11 Q0 MARCO_27_1574256585-1 50 -0.343548 hybrid +132_2-11 Q0 MARCO_52_1301542113-24 51 -0.346858 hybrid +132_2-11 Q0 MARCO_16_1458944068-6 52 -0.347221 hybrid +132_2-11 Q0 MARCO_35_1328253675-3 53 -0.349835 hybrid +132_2-11 Q0 MARCO_50_2383699212-10 54 -0.354490 hybrid +132_2-11 Q0 MARCO_30_133806116-2 55 -0.355979 hybrid +132_2-11 Q0 MARCO_26_832703396-2 56 -0.358641 hybrid +132_2-11 Q0 MARCO_08_1222491267-9 57 -0.359184 hybrid +132_2-11 Q0 MARCO_41_712781609-2 58 -0.359785 hybrid +132_2-11 Q0 MARCO_44_1985647329-19 59 -0.360596 hybrid +132_2-11 Q0 MARCO_30_254220875-4 60 -0.360863 hybrid +132_2-11 Q0 MARCO_54_7369733-9 61 -0.362304 hybrid +132_2-11 Q0 MARCO_11_1471263956-1 62 -0.363535 hybrid +132_2-11 Q0 MARCO_50_2078837388-50 63 -0.363764 hybrid +132_2-11 Q0 MARCO_31_803440338-3 64 -0.365386 hybrid +132_2-11 Q0 MARCO_28_836508334-7 65 -0.367608 hybrid +132_2-11 Q0 KILT_10924480-2 66 -0.368019 hybrid +132_2-11 Q0 MARCO_50_1436818158-15 67 -0.368066 hybrid +132_2-11 Q0 MARCO_46_582450323-2 68 -0.368267 hybrid +132_2-11 Q0 MARCO_47_308529444-4 69 -0.368868 hybrid +132_2-11 Q0 MARCO_41_1455886216-14 70 -0.369459 hybrid +132_2-11 Q0 MARCO_23_867275032-2 71 -0.369631 hybrid +132_2-11 Q0 MARCO_37_443072358-3 72 -0.370452 hybrid +132_2-11 Q0 MARCO_47_1576529973-5 73 -0.371043 hybrid +132_2-11 Q0 MARCO_25_239298258-5 74 -0.371673 hybrid +132_2-11 Q0 MARCO_40_1526476233-7 75 -0.373590 hybrid +132_2-11 Q0 MARCO_36_998866032-5 76 -0.373609 hybrid +132_2-11 Q0 MARCO_20_731430803-14 77 -0.373991 hybrid +132_2-11 Q0 MARCO_08_452921607-1 78 -0.374525 hybrid +132_2-11 Q0 MARCO_50_1838108534-10 79 -0.375308 hybrid +132_2-11 Q0 MARCO_28_155854017-1 80 -0.376052 hybrid +132_2-11 Q0 MARCO_08_135791193-4 81 -0.376395 hybrid +132_2-11 Q0 MARCO_10_1691823191-2 82 -0.376405 hybrid +132_2-11 Q0 MARCO_09_502073571-2 83 -0.377654 hybrid +132_2-11 Q0 MARCO_39_8636-3 84 -0.379009 hybrid +132_2-11 Q0 MARCO_15_764834691-8 85 -0.379076 hybrid +132_2-11 Q0 MARCO_58_659046044-19 86 -0.379124 hybrid +132_2-11 Q0 MARCO_50_1649475662-12 87 -0.380765 hybrid +132_2-11 Q0 MARCO_25_738402400-3 88 -0.383407 hybrid +132_2-11 Q0 MARCO_44_1877200897-1 89 -0.383865 hybrid +132_2-11 Q0 MARCO_33_1605490321-2 90 -0.384123 hybrid +132_2-11 Q0 MARCO_41_1166581237-33 91 -0.384209 hybrid +132_2-11 Q0 MARCO_23_1672578042-3 92 -0.384972 hybrid +132_2-11 Q0 MARCO_38_398835208-11 93 -0.386832 hybrid +132_2-11 Q0 MARCO_55_981024692-4 94 -0.389007 hybrid +132_2-11 Q0 MARCO_07_701204660-4 95 -0.389866 hybrid +132_2-11 Q0 MARCO_06_617024874-4 96 -0.390324 hybrid +132_2-11 Q0 MARCO_51_1208145227-4 97 -0.390505 hybrid +132_2-11 Q0 MARCO_16_3130933251-9 98 -0.390572 hybrid +132_2-11 Q0 MARCO_49_1661153621-14 99 -0.390572 hybrid +132_2-11 Q0 MARCO_57_1474727268-1 100 -0.390572 hybrid +132_2-13 Q0 KILT_59552393-2 1 0.500000 hybrid +132_2-13 Q0 MARCO_10_262743620-5 2 0.494604 hybrid +132_2-13 Q0 KILT_48808018-7 3 0.478303 hybrid +132_2-13 Q0 MARCO_10_1485053201-13 4 0.440455 hybrid +132_2-13 Q0 KILT_44479376-12 5 0.334815 hybrid +132_2-13 Q0 MARCO_10_1485053201-16 6 0.291888 hybrid +132_2-13 Q0 MARCO_19_266473698-27 7 0.233136 hybrid +132_2-13 Q0 KILT_31898-7 8 0.225633 hybrid +132_2-13 Q0 MARCO_19_204123815-20 9 0.214384 hybrid +132_2-13 Q0 KILT_31898-17 10 0.201886 hybrid +132_2-13 Q0 KILT_54199706-24 11 0.200656 hybrid +132_2-13 Q0 MARCO_19_204123815-10 12 0.189621 hybrid +132_2-13 Q0 KILT_48808018-1 13 0.140170 hybrid +132_2-13 Q0 KILT_21463988-30 14 0.047196 hybrid +132_2-13 Q0 KILT_48808018-9 15 0.019096 hybrid +132_2-13 Q0 KILT_51628478-11 16 0.005713 hybrid +132_2-13 Q0 KILT_55869832-8 17 -0.007502 hybrid +132_2-13 Q0 MARCO_52_20566683-24 18 -0.020429 hybrid +132_2-13 Q0 KILT_34927645-5 19 -0.066059 hybrid +132_2-13 Q0 KILT_48808018-6 20 -0.071623 hybrid +132_2-13 Q0 MARCO_10_1485053201-4 21 -0.108641 hybrid +132_2-13 Q0 MARCO_16_1458944068-14 22 -0.109238 hybrid +132_2-13 Q0 MARCO_19_203198818-34 23 -0.109238 hybrid +132_2-13 Q0 KILT_59440711-2 24 -0.117449 hybrid +132_2-13 Q0 KILT_30242372-4 25 -0.130459 hybrid +132_2-13 Q0 KILT_58894732-2 26 -0.132845 hybrid +132_2-13 Q0 MARCO_54_276512227-6 27 -0.148679 hybrid +132_2-13 Q0 KILT_21632898-10 28 -0.149751 hybrid +132_2-13 Q0 KILT_48808018-8 29 -0.157207 hybrid +132_2-13 Q0 KILT_48808018-10 30 -0.157813 hybrid +132_2-13 Q0 KILT_55254540-4 31 -0.159052 hybrid +132_2-13 Q0 MARCO_25_1173147974-3 32 -0.166844 hybrid +132_2-13 Q0 MARCO_57_270547649-12 33 -0.172342 hybrid +132_2-13 Q0 MARCO_17_4793843818-65 34 -0.177030 hybrid +132_2-13 Q0 KILT_58255078-1 35 -0.184868 hybrid +132_2-13 Q0 MARCO_00_1330634246-3 36 -0.197627 hybrid +132_2-13 Q0 MARCO_16_3117875026-9 37 -0.203228 hybrid +132_2-13 Q0 KILT_19258753-36 38 -0.211998 hybrid +132_2-13 Q0 MARCO_19_1595431796-2 39 -0.213024 hybrid +132_2-13 Q0 MARCO_10_1485053201-1 40 -0.227264 hybrid +132_2-13 Q0 MARCO_10_1485053201-3 41 -0.227264 hybrid +132_2-13 Q0 MARCO_47_1083167822-3 42 -0.233788 hybrid +132_2-13 Q0 KILT_4000711-5 43 -0.235904 hybrid +132_2-13 Q0 KILT_41873227-1 44 -0.235904 hybrid +132_2-13 Q0 KILT_6862631-2 45 -0.235904 hybrid +132_2-13 Q0 KILT_30242372-8 46 -0.246482 hybrid +132_2-13 Q0 KILT_932079-17 47 -0.248541 hybrid +132_2-13 Q0 MARCO_10_1485053201-8 48 -0.249175 hybrid +132_2-13 Q0 MARCO_18_1270178471-17 49 -0.256379 hybrid +132_2-13 Q0 KILT_39151134-5 50 -0.256482 hybrid +132_2-13 Q0 MARCO_41_2052529497-6 51 -0.257712 hybrid +132_2-13 Q0 MARCO_48_1251187189-25 52 -0.266585 hybrid +132_2-13 Q0 MARCO_10_1485053201-15 53 -0.266641 hybrid +132_2-13 Q0 KILT_42176864-1 54 -0.273584 hybrid +132_2-13 Q0 MARCO_03_1143822284-18 55 -0.274143 hybrid +132_2-13 Q0 MARCO_10_1485053201-10 56 -0.280769 hybrid +132_2-13 Q0 MARCO_10_1485053201-6 57 -0.282074 hybrid +132_2-13 Q0 MARCO_10_1485053201-7 58 -0.283239 hybrid +132_2-13 Q0 KILT_932079-2 59 -0.285998 hybrid +132_2-13 Q0 MARCO_48_1251187189-20 60 -0.288020 hybrid +132_2-13 Q0 MARCO_30_1666504494-2 61 -0.288691 hybrid +132_2-13 Q0 MARCO_48_1251187189-4 62 -0.289623 hybrid +132_2-13 Q0 MARCO_04_858408112-35 63 -0.299391 hybrid +132_2-13 Q0 MARCO_16_3678296457-56 64 -0.302858 hybrid +132_2-13 Q0 MARCO_03_414943714-1 65 -0.304582 hybrid +132_2-13 Q0 MARCO_18_1270013948-14 66 -0.307042 hybrid +132_2-13 Q0 MARCO_18_1270013948-13 67 -0.307210 hybrid +132_2-13 Q0 MARCO_48_1250278529-8 68 -0.309428 hybrid +132_2-13 Q0 MARCO_44_1640998791-470 69 -0.309913 hybrid +132_2-13 Q0 MARCO_18_1612225304-32 70 -0.311152 hybrid +132_2-13 Q0 KILT_55869832-7 71 -0.314573 hybrid +132_2-13 Q0 KILT_47290767-25 72 -0.314656 hybrid +132_2-13 Q0 MARCO_58_1622002836-9 73 -0.315318 hybrid +132_2-13 Q0 MARCO_48_1251187189-2 74 -0.320705 hybrid +132_2-13 Q0 MARCO_57_648233286-4 75 -0.320938 hybrid +132_2-13 Q0 MARCO_56_788986680-4 76 -0.323482 hybrid +132_2-13 Q0 MARCO_58_1652659016-4 77 -0.324442 hybrid +132_2-13 Q0 MARCO_12_557605549-8 78 -0.324722 hybrid +132_2-13 Q0 MARCO_48_1251187189-7 79 -0.326875 hybrid +132_2-13 Q0 MARCO_08_1664468555-1 80 -0.327965 hybrid +132_2-13 Q0 MARCO_18_1270013948-35 81 -0.331786 hybrid +132_2-13 Q0 MARCO_18_1269769279-3 82 -0.332746 hybrid +132_2-13 Q0 MARCO_19_266473698-10 83 -0.333054 hybrid +132_2-13 Q0 MARCO_19_1595431796-3 84 -0.333492 hybrid +132_2-13 Q0 MARCO_01_1204383453-1 85 -0.334126 hybrid +132_2-13 Q0 MARCO_56_788986680-2 86 -0.336977 hybrid +132_2-13 Q0 MARCO_33_586801026-8 87 -0.340659 hybrid +132_2-13 Q0 MARCO_05_340374422-4 88 -0.344899 hybrid +132_2-13 Q0 MARCO_04_1114708246-3 89 -0.346968 hybrid +132_2-13 Q0 MARCO_17_4282037389-14 90 -0.347257 hybrid +132_2-13 Q0 MARCO_41_1074854085-94 91 -0.347742 hybrid +132_2-13 Q0 MARCO_57_648233286-10 92 -0.347863 hybrid +132_2-13 Q0 KILT_54199706-3 93 -0.348991 hybrid +132_2-13 Q0 MARCO_19_266473698-5 94 -0.348991 hybrid +132_2-13 Q0 KILT_55794633-2 95 -0.350659 hybrid +132_2-13 Q0 MARCO_17_1956416675-53 96 -0.351759 hybrid +132_2-13 Q0 MARCO_35_10745548-1 97 -0.352802 hybrid +132_2-13 Q0 MARCO_48_1251187189-21 98 -0.354266 hybrid +132_2-13 Q0 MARCO_48_607931422-4 99 -0.354620 hybrid +132_2-13 Q0 MARCO_39_1701295628-2 100 -0.354862 hybrid +132_2-3 Q0 MARCO_30_1605964568-7 1 0.500000 hybrid +132_2-3 Q0 MARCO_33_1621342262-2 2 0.242813 hybrid +132_2-3 Q0 MARCO_33_1621342262-1 3 0.176584 hybrid +132_2-3 Q0 MARCO_33_1621342262-3 4 0.174212 hybrid +132_2-3 Q0 MARCO_30_1605964568-2 5 0.124067 hybrid +132_2-3 Q0 MARCO_30_1605964568-1 6 0.109426 hybrid +132_2-3 Q0 MARCO_30_1605964568-4 7 0.055210 hybrid +132_2-3 Q0 MARCO_30_1605964568-5 8 -0.040216 hybrid +132_2-3 Q0 MARCO_30_1605964568-8 9 -0.056845 hybrid +132_2-3 Q0 MARCO_30_1666412630-2 10 -0.067351 hybrid +132_2-3 Q0 MARCO_30_1605964568-6 11 -0.079160 hybrid +132_2-3 Q0 MARCO_49_1661153621-14 12 -0.092690 hybrid +132_2-3 Q0 MARCO_30_1666412630-3 13 -0.100481 hybrid +132_2-3 Q0 MARCO_25_45997789-14 14 -0.144982 hybrid +132_2-3 Q0 MARCO_30_779802445-3 15 -0.145453 hybrid +132_2-3 Q0 MARCO_16_3117875026-6 16 -0.150080 hybrid +132_2-3 Q0 MARCO_25_930663772-11 17 -0.151940 hybrid +132_2-3 Q0 MARCO_06_609309883-1 18 -0.158459 hybrid +132_2-3 Q0 MARCO_30_1605964568-3 19 -0.168986 hybrid +132_2-3 Q0 MARCO_14_1855504797-24 20 -0.172106 hybrid +132_2-3 Q0 MARCO_18_2668676154-15 21 -0.172619 hybrid +132_2-3 Q0 MARCO_16_3117875026-7 22 -0.181960 hybrid +132_2-3 Q0 MARCO_53_563960895-42 23 -0.188639 hybrid +132_2-3 Q0 MARCO_06_763073632-16 24 -0.190670 hybrid +132_2-3 Q0 MARCO_44_1395908402-11 25 -0.199369 hybrid +132_2-3 Q0 MARCO_01_1149432350-29 26 -0.211307 hybrid +132_2-3 Q0 MARCO_30_1666378518-18 27 -0.213348 hybrid +132_2-3 Q0 MARCO_43_580627738-2 28 -0.213851 hybrid +132_2-3 Q0 MARCO_30_1783142864-2 29 -0.219835 hybrid +132_2-3 Q0 MARCO_16_1458944068-6 30 -0.224965 hybrid +132_2-3 Q0 MARCO_16_3117875026-5 31 -0.226793 hybrid +132_2-3 Q0 MARCO_47_1576529973-5 32 -0.227231 hybrid +132_2-3 Q0 MARCO_22_328980077-1 33 -0.227658 hybrid +132_2-3 Q0 MARCO_39_1675559276-1 34 -0.231720 hybrid +132_2-3 Q0 MARCO_16_3117875026-1 35 -0.231826 hybrid +132_2-3 Q0 MARCO_47_589780824-2 36 -0.232425 hybrid +132_2-3 Q0 MARCO_53_563960895-33 37 -0.232425 hybrid +132_2-3 Q0 MARCO_57_1276848320-4 38 -0.239917 hybrid +132_2-3 Q0 MARCO_02_1096783254-1 39 -0.240729 hybrid +132_2-3 Q0 MARCO_36_998866032-5 40 -0.240814 hybrid +132_2-3 Q0 MARCO_55_296706312-6 41 -0.246115 hybrid +132_2-3 Q0 MARCO_09_502073571-2 42 -0.250614 hybrid +132_2-3 Q0 MARCO_39_824983034-1 43 -0.255317 hybrid +132_2-3 Q0 MARCO_04_659842335-1 44 -0.258042 hybrid +132_2-3 Q0 MARCO_03_1597279726-3 45 -0.260361 hybrid +132_2-3 Q0 MARCO_27_1346500056-5 46 -0.268526 hybrid +132_2-3 Q0 MARCO_22_170610519-4 47 -0.269574 hybrid +132_2-3 Q0 MARCO_33_1173952067-7 48 -0.271529 hybrid +132_2-3 Q0 MARCO_00_1699330259-624 49 -0.272833 hybrid +132_2-3 Q0 MARCO_03_1615894972-1 50 -0.273367 hybrid +132_2-3 Q0 MARCO_13_560938311-7 51 -0.273400 hybrid +132_2-3 Q0 MARCO_00_174504672-7 52 -0.276648 hybrid +132_2-3 Q0 MARCO_39_8636-2 53 -0.276659 hybrid +132_2-3 Q0 MARCO_03_1595515215-2 54 -0.280175 hybrid +132_2-3 Q0 MARCO_01_1210361281-2 55 -0.284407 hybrid +132_2-3 Q0 MARCO_03_1603438469-4 56 -0.286352 hybrid +132_2-3 Q0 MARCO_39_1692133770-1 57 -0.288618 hybrid +132_2-3 Q0 MARCO_57_1418474294-5 58 -0.289323 hybrid +132_2-3 Q0 MARCO_16_2842973389-68 59 -0.289740 hybrid +132_2-3 Q0 MARCO_00_1001647173-3 60 -0.291140 hybrid +132_2-3 Q0 MARCO_51_146377827-1 61 -0.291589 hybrid +132_2-3 Q0 MARCO_52_37032738-13 62 -0.292102 hybrid +132_2-3 Q0 MARCO_25_92086404-1 63 -0.292327 hybrid +132_2-3 Q0 MARCO_20_123501552-4 64 -0.293940 hybrid +132_2-3 Q0 MARCO_16_3117875026-2 65 -0.294507 hybrid +132_2-3 Q0 MARCO_08_477154067-9 66 -0.296580 hybrid +132_2-3 Q0 MARCO_05_1294788900-1 67 -0.298461 hybrid +132_2-3 Q0 MARCO_16_2411634799-25 68 -0.298899 hybrid +132_2-3 Q0 MARCO_39_8636-1 69 -0.300321 hybrid +132_2-3 Q0 MARCO_52_62728092-4 70 -0.304638 hybrid +132_2-3 Q0 MARCO_44_1717482549-152 71 -0.306989 hybrid +132_2-3 Q0 MARCO_16_17123436-19 72 -0.307128 hybrid +132_2-3 Q0 MARCO_27_1256377180-148 73 -0.308304 hybrid +132_2-3 Q0 MARCO_56_1459605074-4 74 -0.308336 hybrid +132_2-3 Q0 MARCO_19_1698929234-6 75 -0.308539 hybrid +132_2-3 Q0 MARCO_30_779530381-3 76 -0.310260 hybrid +132_2-3 Q0 MARCO_39_88420408-1 77 -0.310409 hybrid +132_2-3 Q0 MARCO_56_58162772-18 78 -0.312408 hybrid +132_2-3 Q0 MARCO_16_1554292396-5 79 -0.313733 hybrid +132_2-3 Q0 MARCO_41_713213597-10 80 -0.315197 hybrid +132_2-3 Q0 MARCO_56_399018867-21 81 -0.317014 hybrid +132_2-3 Q0 MARCO_34_509863127-15 82 -0.317057 hybrid +132_2-3 Q0 MARCO_32_895723239-2 83 -0.319451 hybrid +132_2-3 Q0 MARCO_20_1691516621-2 84 -0.319803 hybrid +132_2-3 Q0 MARCO_18_4369696194-6 85 -0.320487 hybrid +132_2-3 Q0 MARCO_54_109065643-2 86 -0.324035 hybrid +132_2-3 Q0 MARCO_45_107513354-4 87 -0.324751 hybrid +132_2-3 Q0 MARCO_33_1167910835-1 88 -0.327541 hybrid +132_2-3 Q0 MARCO_39_1294289368-2 89 -0.329486 hybrid +132_2-3 Q0 MARCO_38_1729286592-1 90 -0.329614 hybrid +132_2-3 Q0 MARCO_09_968302759-9 91 -0.330223 hybrid +132_2-3 Q0 MARCO_12_1925103714-1 92 -0.332553 hybrid +132_2-3 Q0 MARCO_03_1618157612-1 93 -0.333184 hybrid +132_2-3 Q0 MARCO_26_1139954214-4 94 -0.336155 hybrid +132_2-3 Q0 MARCO_34_1052094938-1 95 -0.339201 hybrid +132_2-3 Q0 MARCO_50_1021609578-29 96 -0.339660 hybrid +132_2-3 Q0 MARCO_03_1626136230-3 97 -0.340964 hybrid +132_2-3 Q0 MARCO_58_757617279-6 98 -0.342653 hybrid +132_2-3 Q0 MARCO_24_408832967-1 99 -0.342834 hybrid +132_2-3 Q0 MARCO_06_772219573-23 100 -0.344352 hybrid +132_2-5 Q0 MARCO_27_1304139795-1 1 0.500000 hybrid +132_2-5 Q0 MARCO_02_1888161351-4 2 0.460826 hybrid +132_2-5 Q0 MARCO_39_697672749-1 3 0.423677 hybrid +132_2-5 Q0 MARCO_27_1284698706-11 4 0.347765 hybrid +132_2-5 Q0 MARCO_03_1615262363-3 5 0.344880 hybrid +132_2-5 Q0 MARCO_06_280523478-1 6 0.323501 hybrid +132_2-5 Q0 MARCO_57_1511490001-7 7 0.300849 hybrid +132_2-5 Q0 MARCO_27_1309190046-22 8 0.286316 hybrid +132_2-5 Q0 KILT_46646396-11 9 0.286047 hybrid +132_2-5 Q0 MARCO_30_1098599698-1 10 0.258969 hybrid +132_2-5 Q0 MARCO_09_1146952253-2 11 0.250564 hybrid +132_2-5 Q0 MARCO_48_1373838068-2 12 0.243647 hybrid +132_2-5 Q0 MARCO_08_942952751-41 13 0.189527 hybrid +132_2-5 Q0 MARCO_00_1449441144-4 14 0.175926 hybrid +132_2-5 Q0 MARCO_16_3712560183-31 15 0.170406 hybrid +132_2-5 Q0 MARCO_03_1749016496-3 16 0.169815 hybrid +132_2-5 Q0 MARCO_36_683586993-1 17 0.167521 hybrid +132_2-5 Q0 MARCO_11_94627509-9 18 0.154385 hybrid +132_2-5 Q0 MARCO_36_1694272853-49 19 0.135981 hybrid +132_2-5 Q0 MARCO_20_1557165798-3 20 0.125139 hybrid +132_2-5 Q0 MARCO_52_180804701-9 21 0.124332 hybrid +132_2-5 Q0 MARCO_16_3677605305-6 22 0.121519 hybrid +132_2-5 Q0 KILT_37789728-1 23 0.117164 hybrid +132_2-5 Q0 KILT_10865637-1 24 0.112362 hybrid +132_2-5 Q0 MARCO_36_684454813-1 25 0.079872 hybrid +132_2-5 Q0 MARCO_41_430042154-8 26 0.079280 hybrid +132_2-5 Q0 MARCO_20_1557298483-6 27 0.063994 hybrid +132_2-5 Q0 MARCO_36_683727975-1 28 0.055177 hybrid +132_2-5 Q0 MARCO_53_562106675-2 29 0.050464 hybrid +132_2-5 Q0 MARCO_17_540926637-11 30 0.043923 hybrid +132_2-5 Q0 MARCO_23_441978206-2 31 0.042848 hybrid +132_2-5 Q0 MARCO_41_430457724-17 32 0.037364 hybrid +132_2-5 Q0 MARCO_20_1557165798-1 33 0.026415 hybrid +132_2-5 Q0 MARCO_49_394119859-3 34 0.025662 hybrid +132_2-5 Q0 MARCO_58_1510026052-2 35 0.022060 hybrid +132_2-5 Q0 MARCO_56_133605325-9 36 0.019748 hybrid +132_2-5 Q0 MARCO_36_685072360-5 37 0.009641 hybrid +132_2-5 Q0 MARCO_20_1115125642-10 38 0.008584 hybrid +132_2-5 Q0 MARCO_02_1888161351-3 39 0.001917 hybrid +132_2-5 Q0 KILT_59469035-3 40 -0.003674 hybrid +132_2-5 Q0 MARCO_50_1712782740-16 41 -0.003817 hybrid +132_2-5 Q0 MARCO_39_1701351680-10 42 -0.004803 hybrid +132_2-5 Q0 MARCO_47_1565625301-6 43 -0.005717 hybrid +132_2-5 Q0 MARCO_36_1075906546-17 44 -0.008458 hybrid +132_2-5 Q0 MARCO_25_594269445-2 45 -0.008924 hybrid +132_2-5 Q0 MARCO_20_1115463572-5 46 -0.013942 hybrid +132_2-5 Q0 MARCO_57_906315590-6 47 -0.015519 hybrid +132_2-5 Q0 MARCO_24_1882628648-16 48 -0.017562 hybrid +132_2-5 Q0 MARCO_05_1973567197-3 49 -0.025537 hybrid +132_2-5 Q0 MARCO_48_249024903-5 50 -0.030644 hybrid +132_2-5 Q0 MARCO_36_1481110015-1 51 -0.033422 hybrid +132_2-5 Q0 KILT_47658691-4 52 -0.036719 hybrid +132_2-5 Q0 MARCO_11_94813769-1 53 -0.040769 hybrid +132_2-5 Q0 MARCO_10_407401044-1 54 -0.044479 hybrid +132_2-5 Q0 MARCO_39_963205301-3 55 -0.047400 hybrid +132_2-5 Q0 MARCO_00_1007615247-2 56 -0.048314 hybrid +132_2-5 Q0 MARCO_47_1509828693-5 57 -0.050769 hybrid +132_2-5 Q0 MARCO_03_1216674960-2 58 -0.054030 hybrid +132_2-5 Q0 MARCO_01_1196988925-2 59 -0.057399 hybrid +132_2-5 Q0 MARCO_15_1835591157-5 60 -0.058618 hybrid +132_2-5 Q0 MARCO_31_708382670-3 61 -0.060553 hybrid +132_2-5 Q0 MARCO_08_1188635018-4 62 -0.062238 hybrid +132_2-5 Q0 MARCO_48_1250740998-5 63 -0.062668 hybrid +132_2-5 Q0 MARCO_26_1862745493-1 64 -0.064138 hybrid +132_2-5 Q0 MARCO_16_2206326968-16 65 -0.065482 hybrid +132_2-5 Q0 MARCO_09_279622102-25 66 -0.066145 hybrid +132_2-5 Q0 MARCO_25_404067505-4 67 -0.068188 hybrid +132_2-5 Q0 MARCO_21_1145909333-15 68 -0.068331 hybrid +132_2-5 Q0 MARCO_40_1648684090-103 69 -0.070876 hybrid +132_2-5 Q0 MARCO_28_16370355-6 70 -0.071825 hybrid +132_2-5 Q0 MARCO_47_1568568990-15 71 -0.075643 hybrid +132_2-5 Q0 MARCO_26_889685738-1 72 -0.079872 hybrid +132_2-5 Q0 KILT_12728109-17 73 -0.080248 hybrid +132_2-5 Q0 MARCO_16_3677905910-1 74 -0.083492 hybrid +132_2-5 Q0 MARCO_44_520721555-11 75 -0.083563 hybrid +132_2-5 Q0 MARCO_55_586239888-2 76 -0.084370 hybrid +132_2-5 Q0 KILT_22418684-4 77 -0.085660 hybrid +132_2-5 Q0 MARCO_41_430123399-4 78 -0.086431 hybrid +132_2-5 Q0 MARCO_06_1659256944-4 79 -0.090033 hybrid +132_2-5 Q0 MARCO_17_540697694-9 80 -0.091986 hybrid +132_2-5 Q0 MARCO_09_717996678-1 81 -0.093993 hybrid +132_2-5 Q0 MARCO_27_16332681-1 82 -0.097129 hybrid +132_2-5 Q0 MARCO_16_3686148987-10 83 -0.099441 hybrid +132_2-5 Q0 MARCO_10_399054889-4 84 -0.101645 hybrid +132_2-5 Q0 MARCO_14_491600455-1 85 -0.105982 hybrid +132_2-5 Q0 KILT_23478113-7 86 -0.108903 hybrid +132_2-5 Q0 KILT_1920925-4 87 -0.109817 hybrid +132_2-5 Q0 MARCO_15_1835245082-23 88 -0.110552 hybrid +132_2-5 Q0 MARCO_49_809087502-1 89 -0.111734 hybrid +132_2-5 Q0 MARCO_16_2202636141-16 90 -0.115964 hybrid +132_2-5 Q0 KILT_2119174-20 91 -0.118114 hybrid +132_2-5 Q0 KILT_2691841-2 92 -0.120695 hybrid +132_2-5 Q0 MARCO_16_3686944272-2 93 -0.123114 hybrid +132_2-5 Q0 MARCO_33_467608808-1 94 -0.123974 hybrid +132_2-5 Q0 MARCO_55_1714032211-2 95 -0.124153 hybrid +132_2-5 Q0 MARCO_51_1576592049-7 96 -0.124530 hybrid +132_2-5 Q0 MARCO_19_603398757-16 97 -0.127056 hybrid +132_2-5 Q0 MARCO_24_685760805-11 98 -0.128329 hybrid +132_2-5 Q0 MARCO_20_69273219-9 99 -0.128382 hybrid +132_2-5 Q0 KILT_30332064-1 100 -0.129583 hybrid +132_2-7 Q0 MARCO_48_1250278529-4 1 0.500000 hybrid +132_2-7 Q0 MARCO_48_1251187189-20 2 0.335645 hybrid +132_2-7 Q0 MARCO_25_570836921-8 3 0.276145 hybrid +132_2-7 Q0 MARCO_10_1485046460-4 4 0.270726 hybrid +132_2-7 Q0 KILT_5042951-28 5 0.257274 hybrid +132_2-7 Q0 MARCO_22_1644883624-32 6 0.231282 hybrid +132_2-7 Q0 KILT_57395175-2 7 0.211105 hybrid +132_2-7 Q0 MARCO_44_729349767-5 8 0.201526 hybrid +132_2-7 Q0 MARCO_40_512692206-2 9 0.200399 hybrid +132_2-7 Q0 MARCO_10_1485053201-8 10 0.179335 hybrid +132_2-7 Q0 MARCO_48_1250203503-1 11 0.161651 hybrid +132_2-7 Q0 MARCO_58_1622002836-9 12 0.160500 hybrid +132_2-7 Q0 MARCO_30_1666507691-5 13 0.156005 hybrid +132_2-7 Q0 MARCO_48_1250272123-1 14 0.148919 hybrid +132_2-7 Q0 MARCO_56_483182748-81 15 0.133633 hybrid +132_2-7 Q0 MARCO_30_1556961512-10 16 0.133382 hybrid +132_2-7 Q0 MARCO_35_679828792-4 17 0.132614 hybrid +132_2-7 Q0 MARCO_10_1485046460-1 18 0.118851 hybrid +132_2-7 Q0 MARCO_48_1251187189-3 19 0.118024 hybrid +132_2-7 Q0 MARCO_10_260560518-1 20 0.111790 hybrid +132_2-7 Q0 MARCO_44_1640998791-464 21 0.105927 hybrid +132_2-7 Q0 MARCO_54_1561992811-3 22 0.105280 hybrid +132_2-7 Q0 MARCO_52_62556199-3 23 0.087632 hybrid +132_2-7 Q0 MARCO_58_1530276786-3 24 0.085726 hybrid +132_2-7 Q0 MARCO_25_570836921-3 25 0.081134 hybrid +132_2-7 Q0 MARCO_48_1250292652-1 26 0.080091 hybrid +132_2-7 Q0 MARCO_48_1250278529-1 27 0.076639 hybrid +132_2-7 Q0 MARCO_25_568549484-3 28 0.064050 hybrid +132_2-7 Q0 MARCO_16_3676861391-42 29 0.063019 hybrid +132_2-7 Q0 MARCO_36_685402135-5 30 0.057373 hybrid +132_2-7 Q0 MARCO_19_1315433990-27 31 0.051258 hybrid +132_2-7 Q0 MARCO_25_570836921-6 32 0.038214 hybrid +132_2-7 Q0 MARCO_48_1439242324-4 33 0.033779 hybrid +132_2-7 Q0 MARCO_48_1250203503-6 34 0.030961 hybrid +132_2-7 Q0 MARCO_39_196501676-20 35 0.012474 hybrid +132_2-7 Q0 MARCO_19_1315433990-6 36 0.011659 hybrid +132_2-7 Q0 KILT_16775-22 37 0.007739 hybrid +132_2-7 Q0 MARCO_17_2570244818-7 38 0.003603 hybrid +132_2-7 Q0 MARCO_35_907416300-8 39 -0.001804 hybrid +132_2-7 Q0 MARCO_44_704159098-4 40 -0.003699 hybrid +132_2-7 Q0 MARCO_48_1250278529-2 41 -0.006192 hybrid +132_2-7 Q0 KILT_30242372-11 42 -0.009021 hybrid +132_2-7 Q0 MARCO_04_858408112-35 43 -0.010796 hybrid +132_2-7 Q0 MARCO_56_506900502-5 44 -0.014009 hybrid +132_2-7 Q0 MARCO_48_1250278529-3 45 -0.014021 hybrid +132_2-7 Q0 MARCO_45_1164371334-4 46 -0.021022 hybrid +132_2-7 Q0 MARCO_55_1295078458-4 47 -0.021022 hybrid +132_2-7 Q0 MARCO_19_204123815-9 48 -0.021178 hybrid +132_2-7 Q0 MARCO_54_1716269004-87 49 -0.021418 hybrid +132_2-7 Q0 MARCO_03_365124566-7 50 -0.029570 hybrid +132_2-7 Q0 KILT_8149492-16 51 -0.031668 hybrid +132_2-7 Q0 MARCO_18_1270013948-16 52 -0.032664 hybrid +132_2-7 Q0 MARCO_58_1481665100-3 53 -0.033107 hybrid +132_2-7 Q0 MARCO_54_276512227-10 54 -0.038166 hybrid +132_2-7 Q0 MARCO_54_1561920573-8 55 -0.038334 hybrid +132_2-7 Q0 MARCO_36_1484861419-2 56 -0.039833 hybrid +132_2-7 Q0 MARCO_01_1204383453-2 57 -0.043813 hybrid +132_2-7 Q0 MARCO_16_2116262142-15 58 -0.045875 hybrid +132_2-7 Q0 MARCO_31_644392863-2 59 -0.046007 hybrid +132_2-7 Q0 KILT_19258753-36 60 -0.051018 hybrid +132_2-7 Q0 KILT_32769825-44 61 -0.055382 hybrid +132_2-7 Q0 MARCO_13_1455142607-13 62 -0.055934 hybrid +132_2-7 Q0 KILT_31898-2 63 -0.058823 hybrid +132_2-7 Q0 MARCO_48_1250203503-2 64 -0.060466 hybrid +132_2-7 Q0 MARCO_34_276845054-80 65 -0.061820 hybrid +132_2-7 Q0 MARCO_44_1640998791-461 66 -0.062875 hybrid +132_2-7 Q0 KILT_41793940-2 67 -0.064194 hybrid +132_2-7 Q0 MARCO_18_1270178471-4 68 -0.068342 hybrid +132_2-7 Q0 MARCO_44_1640998791-66 69 -0.069853 hybrid +132_2-7 Q0 MARCO_35_1781241146-17 70 -0.070644 hybrid +132_2-7 Q0 KILT_16913583-9 71 -0.072215 hybrid +132_2-7 Q0 MARCO_18_1270013948-20 72 -0.073366 hybrid +132_2-7 Q0 MARCO_03_236978373-2 73 -0.074840 hybrid +132_2-7 Q0 MARCO_48_1251187189-1 74 -0.075224 hybrid +132_2-7 Q0 MARCO_28_436713620-13 75 -0.075835 hybrid +132_2-7 Q0 KILT_27179299-6 76 -0.075943 hybrid +132_2-7 Q0 KILT_30242372-12 77 -0.077142 hybrid +132_2-7 Q0 MARCO_48_1251187189-10 78 -0.078413 hybrid +132_2-7 Q0 KILT_54199706-18 79 -0.079732 hybrid +132_2-7 Q0 MARCO_10_1485033393-2 80 -0.080055 hybrid +132_2-7 Q0 MARCO_48_1251187189-9 81 -0.080343 hybrid +132_2-7 Q0 MARCO_16_3678296457-56 82 -0.082033 hybrid +132_2-7 Q0 MARCO_10_262743620-5 83 -0.082861 hybrid +132_2-7 Q0 MARCO_36_684950861-5 84 -0.083736 hybrid +132_2-7 Q0 MARCO_48_1251187189-7 85 -0.083784 hybrid +132_2-7 Q0 MARCO_16_1797043440-9 86 -0.086829 hybrid +132_2-7 Q0 MARCO_48_1251187189-21 87 -0.087404 hybrid +132_2-7 Q0 MARCO_46_724106717-11 88 -0.090330 hybrid +132_2-7 Q0 KILT_30820783-7 89 -0.091433 hybrid +132_2-7 Q0 MARCO_10_1485046460-2 90 -0.091984 hybrid +132_2-7 Q0 MARCO_54_1716269004-7 91 -0.092752 hybrid +132_2-7 Q0 KILT_1472607-3 92 -0.092811 hybrid +132_2-7 Q0 MARCO_29_1330386075-24 93 -0.096468 hybrid +132_2-7 Q0 MARCO_04_1137173644-2 94 -0.097739 hybrid +132_2-7 Q0 MARCO_03_1359169986-6 95 -0.100137 hybrid +132_2-7 Q0 KILT_58607878-1 96 -0.102558 hybrid +132_2-7 Q0 MARCO_44_1640998791-466 97 -0.102990 hybrid +132_2-7 Q0 MARCO_18_1612167061-10 98 -0.103134 hybrid +132_2-7 Q0 MARCO_35_907819391-8 99 -0.103134 hybrid +132_2-7 Q0 MARCO_00_192324029-4 100 -0.104561 hybrid +132_2-9 Q0 MARCO_33_1621342262-1 1 0.500000 hybrid +132_2-9 Q0 MARCO_33_1621342262-2 2 0.330513 hybrid +132_2-9 Q0 MARCO_30_1605964568-1 3 0.310614 hybrid +132_2-9 Q0 MARCO_16_3117875026-6 4 0.272023 hybrid +132_2-9 Q0 MARCO_30_1605964568-2 5 0.248167 hybrid +132_2-9 Q0 MARCO_30_1605964568-8 6 0.248007 hybrid +132_2-9 Q0 MARCO_30_1605964568-5 7 0.244804 hybrid +132_2-9 Q0 MARCO_16_3117875026-5 8 0.239707 hybrid +132_2-9 Q0 MARCO_30_1605964568-6 9 0.225612 hybrid +132_2-9 Q0 MARCO_16_3117875026-1 10 0.192749 hybrid +132_2-9 Q0 MARCO_39_8636-1 11 0.160461 hybrid +132_2-9 Q0 MARCO_39_8636-2 12 0.147779 hybrid +132_2-9 Q0 MARCO_30_1605964568-7 13 0.112514 hybrid +132_2-9 Q0 MARCO_16_3130933251-9 14 0.082534 hybrid +132_2-9 Q0 MARCO_08_477154067-9 15 0.077220 hybrid +132_2-9 Q0 MARCO_55_296706312-6 16 0.066998 hybrid +132_2-9 Q0 MARCO_33_1621342262-3 17 0.055852 hybrid +132_2-9 Q0 MARCO_39_1692133770-1 18 0.043585 hybrid +132_2-9 Q0 MARCO_16_3117875026-2 19 0.035821 hybrid +132_2-9 Q0 MARCO_57_1474727268-1 20 0.030413 hybrid +132_2-9 Q0 MARCO_30_1605964568-4 21 0.023677 hybrid +132_2-9 Q0 MARCO_30_1666412630-2 22 0.013181 hybrid +132_2-9 Q0 KILT_37081258-2 23 0.008329 hybrid +132_2-9 Q0 MARCO_30_1666754153-2 24 0.002148 hybrid +132_2-9 Q0 MARCO_52_1749976642-2 25 0.000603 hybrid +132_2-9 Q0 MARCO_36_998866032-5 26 0.000490 hybrid +132_2-9 Q0 MARCO_27_1574256585-1 27 -0.003024 hybrid +132_2-9 Q0 MARCO_06_1812531076-5 28 -0.008668 hybrid +132_2-9 Q0 MARCO_16_3117875026-7 29 -0.011513 hybrid +132_2-9 Q0 MARCO_41_713213597-10 30 -0.043764 hybrid +132_2-9 Q0 MARCO_57_1276848320-4 31 -0.046967 hybrid +132_2-9 Q0 MARCO_06_1812500138-7 32 -0.051339 hybrid +132_2-9 Q0 MARCO_16_2411634799-25 33 -0.055937 hybrid +132_2-9 Q0 MARCO_43_580627738-2 34 -0.073433 hybrid +132_2-9 Q0 MARCO_17_4116009428-5 35 -0.083203 hybrid +132_2-9 Q0 MARCO_17_4116009428-7 36 -0.083203 hybrid +132_2-9 Q0 MARCO_17_4116009428-9 37 -0.083203 hybrid +132_2-9 Q0 MARCO_30_1605964568-3 38 -0.085483 hybrid +132_2-9 Q0 MARCO_06_763073632-16 39 -0.090363 hybrid +132_2-9 Q0 MARCO_16_1458944068-14 40 -0.090561 hybrid +132_2-9 Q0 MARCO_43_290697563-3 41 -0.091221 hybrid +132_2-9 Q0 MARCO_50_657490639-3 42 -0.110733 hybrid +132_2-9 Q0 MARCO_32_233298730-7 43 -0.121804 hybrid +132_2-9 Q0 MARCO_30_1666412630-3 44 -0.128484 hybrid +132_2-9 Q0 MARCO_12_478606353-8 45 -0.134099 hybrid +132_2-9 Q0 MARCO_43_580627738-1 46 -0.134325 hybrid +132_2-9 Q0 MARCO_39_1675559276-1 47 -0.140788 hybrid +132_2-9 Q0 MARCO_08_393301765-1 48 -0.141627 hybrid +132_2-9 Q0 MARCO_49_1661153621-14 49 -0.152000 hybrid +132_2-9 Q0 MARCO_01_1245205933-5 50 -0.157785 hybrid +132_2-9 Q0 MARCO_19_203198818-32 51 -0.157945 hybrid +132_2-9 Q0 MARCO_09_1647522016-5 52 -0.166764 hybrid +132_2-9 Q0 MARCO_16_1458944068-11 53 -0.168017 hybrid +132_2-9 Q0 MARCO_55_296706312-8 54 -0.170175 hybrid +132_2-9 Q0 MARCO_10_175172278-1 55 -0.179003 hybrid +132_2-9 Q0 MARCO_47_1576529973-5 56 -0.181858 hybrid +132_2-9 Q0 MARCO_54_1562379270-1 57 -0.183940 hybrid +132_2-9 Q0 MARCO_01_1245205933-3 58 -0.184401 hybrid +132_2-9 Q0 MARCO_39_1740604538-5 59 -0.184693 hybrid +132_2-9 Q0 MARCO_48_1471185837-12 60 -0.184694 hybrid +132_2-9 Q0 MARCO_06_1812460446-34 61 -0.195236 hybrid +132_2-9 Q0 MARCO_35_1328253675-3 62 -0.197017 hybrid +132_2-9 Q0 MARCO_28_80782241-29 63 -0.204121 hybrid +132_2-9 Q0 MARCO_16_1458944068-6 64 -0.206297 hybrid +132_2-9 Q0 MARCO_32_233298730-8 65 -0.218687 hybrid +132_2-9 Q0 MARCO_18_2151603028-61 66 -0.229437 hybrid +132_2-9 Q0 MARCO_54_1562379270-3 67 -0.229993 hybrid +132_2-9 Q0 MARCO_14_1855504797-25 68 -0.231284 hybrid +132_2-9 Q0 MARCO_34_7237163-1 69 -0.239612 hybrid +132_2-9 Q0 MARCO_41_718961219-4 70 -0.246443 hybrid +132_2-9 Q0 MARCO_19_203198818-34 71 -0.250231 hybrid +132_2-9 Q0 MARCO_18_2151603028-33 72 -0.260274 hybrid +132_2-9 Q0 MARCO_39_1583926806-10 73 -0.260274 hybrid +132_2-9 Q0 MARCO_43_354734750-13 74 -0.260274 hybrid +132_2-9 Q0 MARCO_52_62728092-4 75 -0.260275 hybrid +132_2-9 Q0 MARCO_53_112499981-3 76 -0.260275 hybrid +132_2-9 Q0 MARCO_16_1554292396-5 77 -0.270101 hybrid +132_2-9 Q0 MARCO_57_1276435686-4 78 -0.270101 hybrid +132_2-9 Q0 MARCO_19_2484932551-34 79 -0.273220 hybrid +132_2-9 Q0 MARCO_19_2486544974-34 80 -0.273220 hybrid +132_2-9 Q0 MARCO_19_2510994380-22 81 -0.273220 hybrid +132_2-9 Q0 MARCO_09_502073571-2 82 -0.277714 hybrid +132_2-9 Q0 MARCO_05_1108545519-2 83 -0.279711 hybrid +132_2-9 Q0 MARCO_18_2668676154-15 84 -0.279711 hybrid +132_2-9 Q0 MARCO_32_119318134-3 85 -0.279711 hybrid +132_2-9 Q0 MARCO_36_547706359-3 86 -0.279711 hybrid +132_2-9 Q0 MARCO_19_2481922798-29 87 -0.282905 hybrid +132_2-9 Q0 MARCO_19_2496718831-25 88 -0.282905 hybrid +132_2-9 Q0 MARCO_19_2497924734-27 89 -0.282905 hybrid +132_2-9 Q0 MARCO_19_2509836341-27 90 -0.282905 hybrid +132_2-9 Q0 MARCO_30_1508437232-4 91 -0.283461 hybrid +132_2-9 Q0 MARCO_06_609309883-1 92 -0.284139 hybrid +132_2-9 Q0 MARCO_54_214915112-11 93 -0.289208 hybrid +132_2-9 Q0 MARCO_08_1018325778-1 94 -0.292374 hybrid +132_2-9 Q0 MARCO_47_1052407838-1 95 -0.292374 hybrid +132_2-9 Q0 MARCO_07_1289912856-1 96 -0.296717 hybrid +132_2-9 Q0 KILT_30803898-3 97 -0.298960 hybrid +132_2-9 Q0 MARCO_56_509777868-2 98 -0.299176 hybrid +132_2-9 Q0 MARCO_02_1096783254-1 99 -0.302870 hybrid +132_2-9 Q0 MARCO_54_1562379270-2 100 -0.302870 hybrid +132_3-1 Q0 MARCO_00_1330634246-2 1 0.500000 hybrid +132_3-1 Q0 MARCO_18_1573315574-26 2 0.458506 hybrid +132_3-1 Q0 MARCO_48_114247267-1 3 0.432445 hybrid +132_3-1 Q0 MARCO_19_266473698-6 4 0.428444 hybrid +132_3-1 Q0 MARCO_19_266473698-67 5 0.426195 hybrid +132_3-1 Q0 MARCO_04_644766581-1 6 0.424696 hybrid +132_3-1 Q0 MARCO_04_659842335-1 7 0.413253 hybrid +132_3-1 Q0 KILT_54199706-4 8 0.412151 hybrid +132_3-1 Q0 MARCO_44_729349767-6 9 0.388912 hybrid +132_3-1 Q0 MARCO_25_1173147974-1 10 0.384547 hybrid +132_3-1 Q0 MARCO_36_967104724-2 11 0.372938 hybrid +132_3-1 Q0 MARCO_48_1251187189-4 12 0.365067 hybrid +132_3-1 Q0 KILT_54199706-1 13 0.351100 hybrid +132_3-1 Q0 MARCO_19_266473698-1 14 0.339580 hybrid +132_3-1 Q0 MARCO_48_1251187189-1 15 0.291924 hybrid +132_3-1 Q0 KILT_50284451-4 16 0.288341 hybrid +132_3-1 Q0 MARCO_52_56044289-1 17 0.288275 hybrid +132_3-1 Q0 KILT_52992307-3 18 0.287878 hybrid +132_3-1 Q0 MARCO_19_217252192-2 19 0.283513 hybrid +132_3-1 Q0 KILT_54199706-25 20 0.279720 hybrid +132_3-1 Q0 MARCO_38_1434326681-9 21 0.276590 hybrid +132_3-1 Q0 MARCO_48_1251187189-25 22 0.274528 hybrid +132_3-1 Q0 MARCO_35_1435664725-3 23 0.273183 hybrid +132_3-1 Q0 MARCO_44_1640998791-469 24 0.242404 hybrid +132_3-1 Q0 MARCO_19_266473698-39 25 0.237433 hybrid +132_3-1 Q0 KILT_54199706-24 26 0.232637 hybrid +132_3-1 Q0 MARCO_23_146815887-8 27 0.227346 hybrid +132_3-1 Q0 MARCO_17_4282412444-6 28 0.225483 hybrid +132_3-1 Q0 MARCO_19_266473698-28 29 0.223289 hybrid +132_3-1 Q0 KILT_54199706-18 30 0.190129 hybrid +132_3-1 Q0 KILT_10658546-3 31 0.189953 hybrid +132_3-1 Q0 MARCO_17_2540112783-13 32 0.179535 hybrid +132_3-1 Q0 MARCO_25_525980938-4 33 0.176956 hybrid +132_3-1 Q0 MARCO_19_723620082-16 34 0.166450 hybrid +132_3-1 Q0 MARCO_17_1136196611-110 35 0.153827 hybrid +132_3-1 Q0 MARCO_19_2040255855-9 36 0.153442 hybrid +132_3-1 Q0 KILT_54904387-1 37 0.150476 hybrid +132_3-1 Q0 MARCO_19_266473698-20 38 0.147125 hybrid +132_3-1 Q0 MARCO_18_2020502941-27 39 0.140764 hybrid +132_3-1 Q0 MARCO_19_266473698-27 40 0.140081 hybrid +132_3-1 Q0 MARCO_57_180498497-1 41 0.138284 hybrid +132_3-1 Q0 MARCO_23_146815887-5 42 0.138041 hybrid +132_3-1 Q0 MARCO_19_266473698-29 43 0.137711 hybrid +132_3-1 Q0 MARCO_06_545235022-2 44 0.133775 hybrid +132_3-1 Q0 KILT_8164174-8 45 0.128484 hybrid +132_3-1 Q0 KILT_54146186-6 46 0.119334 hybrid +132_3-1 Q0 MARCO_42_1366117883-9 47 0.113094 hybrid +132_3-1 Q0 KILT_54592743-1 48 0.105774 hybrid +132_3-1 Q0 MARCO_43_336424836-1 49 0.096205 hybrid +132_3-1 Q0 MARCO_04_659842335-3 50 0.089635 hybrid +132_3-1 Q0 KILT_11914121-23 51 0.086890 hybrid +132_3-1 Q0 MARCO_35_1435664725-1 52 0.085259 hybrid +132_3-1 Q0 MARCO_48_1440485436-1 53 0.083859 hybrid +132_3-1 Q0 MARCO_19_208102285-9 54 0.081290 hybrid +132_3-1 Q0 MARCO_17_296744806-228 55 0.059672 hybrid +132_3-1 Q0 MARCO_16_1552729738-8 56 0.055781 hybrid +132_3-1 Q0 MARCO_17_4572861826-10 57 0.048715 hybrid +132_3-1 Q0 MARCO_17_3384341227-11 58 0.036985 hybrid +132_3-1 Q0 MARCO_19_266473698-21 59 0.036169 hybrid +132_3-1 Q0 MARCO_16_4207755409-6 60 0.027361 hybrid +132_3-1 Q0 KILT_54199706-17 61 0.026854 hybrid +132_3-1 Q0 KILT_53957539-3 62 0.026810 hybrid +132_3-1 Q0 KILT_27658059-12 63 0.021364 hybrid +132_3-1 Q0 KILT_55794633-1 64 0.018167 hybrid +132_3-1 Q0 MARCO_57_175410746-1 65 0.012644 hybrid +132_3-1 Q0 MARCO_19_266473698-52 66 0.011476 hybrid +132_3-1 Q0 MARCO_17_1136196611-10 67 0.010142 hybrid +132_3-1 Q0 MARCO_18_4220594491-16 68 0.008455 hybrid +132_3-1 Q0 MARCO_48_1432478809-1 69 0.006074 hybrid +132_3-1 Q0 KILT_26211264-8 70 0.001775 hybrid +132_3-1 Q0 MARCO_54_276703634-1 71 -0.000143 hybrid +132_3-1 Q0 KILT_8149492-18 72 -0.002348 hybrid +132_3-1 Q0 MARCO_16_2116262142-17 73 -0.002348 hybrid +132_3-1 Q0 MARCO_48_1440474473-3 74 -0.004784 hybrid +132_3-1 Q0 MARCO_50_1732807570-153 75 -0.006052 hybrid +132_3-1 Q0 MARCO_16_2698645027-36 76 -0.007607 hybrid +132_3-1 Q0 MARCO_19_266473698-56 77 -0.011289 hybrid +132_3-1 Q0 MARCO_04_1015478190-1 78 -0.012722 hybrid +132_3-1 Q0 KILT_30242372-1 79 -0.015059 hybrid +132_3-1 Q0 MARCO_44_1640998791-470 80 -0.020593 hybrid +132_3-1 Q0 MARCO_30_575902674-24 81 -0.022654 hybrid +132_3-1 Q0 KILT_22134442-58 82 -0.023922 hybrid +132_3-1 Q0 KILT_58255078-1 83 -0.026039 hybrid +132_3-1 Q0 MARCO_52_1332527885-1 84 -0.028585 hybrid +132_3-1 Q0 MARCO_07_641873960-1 85 -0.028695 hybrid +132_3-1 Q0 MARCO_39_1639128180-99 86 -0.033524 hybrid +132_3-1 Q0 MARCO_37_728302898-1 87 -0.034042 hybrid +132_3-1 Q0 MARCO_19_266473698-23 88 -0.039289 hybrid +132_3-1 Q0 MARCO_34_9293840-3 89 -0.039477 hybrid +132_3-1 Q0 MARCO_36_825264212-1 90 -0.041461 hybrid +132_3-1 Q0 MARCO_16_1808665578-25 91 -0.042222 hybrid +132_3-1 Q0 MARCO_48_1251187189-24 92 -0.043809 hybrid +132_3-1 Q0 MARCO_43_336354210-1 93 -0.044140 hybrid +132_3-1 Q0 MARCO_44_1640998791-66 94 -0.045628 hybrid +132_3-1 Q0 MARCO_16_3664296446-15 95 -0.049464 hybrid +132_3-1 Q0 KILT_52571341-5 96 -0.052132 hybrid +132_3-1 Q0 MARCO_17_2892247435-19 97 -0.055880 hybrid +132_3-1 Q0 MARCO_48_1484682905-45 98 -0.055979 hybrid +132_3-1 Q0 MARCO_48_1484782160-44 99 -0.055980 hybrid +132_3-1 Q0 MARCO_48_1484980559-48 100 -0.055980 hybrid +132_3-3 Q0 MARCO_18_1573315574-26 1 0.500000 hybrid +132_3-3 Q0 MARCO_57_648233286-4 2 0.451580 hybrid +132_3-3 Q0 MARCO_19_2040255855-9 3 0.430502 hybrid +132_3-3 Q0 MARCO_04_644766581-1 4 0.355213 hybrid +132_3-3 Q0 MARCO_36_967104724-2 5 0.292533 hybrid +132_3-3 Q0 KILT_54199706-4 6 0.268536 hybrid +132_3-3 Q0 MARCO_48_1440485436-1 7 0.248650 hybrid +132_3-3 Q0 MARCO_25_1173147974-1 8 0.224263 hybrid +132_3-3 Q0 KILT_47290767-25 9 0.209505 hybrid +132_3-3 Q0 MARCO_35_1435664725-3 10 0.178478 hybrid +132_3-3 Q0 MARCO_38_1434326681-9 11 0.170538 hybrid +132_3-3 Q0 MARCO_44_1640998791-470 12 0.165257 hybrid +132_3-3 Q0 MARCO_19_266473698-6 13 0.155568 hybrid +132_3-3 Q0 MARCO_48_1251187189-4 14 0.150287 hybrid +132_3-3 Q0 MARCO_58_1481665100-4 15 0.148065 hybrid +132_3-3 Q0 MARCO_18_1270013948-7 16 0.136084 hybrid +132_3-3 Q0 MARCO_17_699495021-69 17 0.127731 hybrid +132_3-3 Q0 KILT_30242372-1 18 0.118905 hybrid +132_3-3 Q0 KILT_54199706-23 19 0.118243 hybrid +132_3-3 Q0 MARCO_04_659842335-1 20 0.105140 hybrid +132_3-3 Q0 MARCO_35_1435664725-1 21 0.102670 hybrid +132_3-3 Q0 MARCO_57_659534166-1 22 0.096030 hybrid +132_3-3 Q0 MARCO_48_624646140-3 23 0.078697 hybrid +132_3-3 Q0 MARCO_17_3384341227-11 24 0.065345 hybrid +132_3-3 Q0 KILT_55794633-1 25 0.058953 hybrid +132_3-3 Q0 MARCO_54_301749291-10 26 0.039883 hybrid +132_3-3 Q0 MARCO_25_1173147974-4 27 0.037567 hybrid +132_3-3 Q0 MARCO_48_1440474473-1 28 0.037414 hybrid +132_3-3 Q0 MARCO_19_266473698-27 29 0.029497 hybrid +132_3-3 Q0 MARCO_39_1639128180-99 30 0.027949 hybrid +132_3-3 Q0 MARCO_16_3978389848-3 31 0.022538 hybrid +132_3-3 Q0 MARCO_48_1251187189-24 32 0.018344 hybrid +132_3-3 Q0 MARCO_07_270918508-95 33 0.014964 hybrid +132_3-3 Q0 MARCO_48_1188743878-1 34 0.008749 hybrid +132_3-3 Q0 MARCO_02_591973274-91 35 0.003373 hybrid +132_3-3 Q0 MARCO_18_1612225304-31 36 -0.000053 hybrid +132_3-3 Q0 MARCO_01_212731097-11 37 -0.002334 hybrid +132_3-3 Q0 MARCO_19_266473698-51 38 -0.002782 hybrid +132_3-3 Q0 MARCO_17_297531906-17 39 -0.007520 hybrid +132_3-3 Q0 MARCO_16_1808665578-7 40 -0.008324 hybrid +132_3-3 Q0 MARCO_34_924337768-4 41 -0.011691 hybrid +132_3-3 Q0 MARCO_18_1612225304-32 42 -0.012341 hybrid +132_3-3 Q0 MARCO_48_1440485436-3 43 -0.016890 hybrid +132_3-3 Q0 MARCO_07_791410178-1 44 -0.021699 hybrid +132_3-3 Q0 MARCO_48_1251187189-1 45 -0.024901 hybrid +132_3-3 Q0 MARCO_25_1173147974-3 46 -0.025409 hybrid +132_3-3 Q0 MARCO_16_464728146-3 47 -0.026472 hybrid +132_3-3 Q0 MARCO_23_146815887-5 48 -0.027618 hybrid +132_3-3 Q0 KILT_54199706-2 49 -0.032321 hybrid +132_3-3 Q0 MARCO_54_343432104-8 50 -0.035287 hybrid +132_3-3 Q0 MARCO_17_2540112783-13 51 -0.036421 hybrid +132_3-3 Q0 MARCO_57_180498497-1 52 -0.039682 hybrid +132_3-3 Q0 MARCO_04_659842335-3 53 -0.045625 hybrid +132_3-3 Q0 KILT_11914121-23 54 -0.047551 hybrid +132_3-3 Q0 MARCO_17_1190789284-46 55 -0.048792 hybrid +132_3-3 Q0 KILT_52506620-86 56 -0.049217 hybrid +132_3-3 Q0 KILT_54199706-1 57 -0.049784 hybrid +132_3-3 Q0 MARCO_48_581883428-4 58 -0.054274 hybrid +132_3-3 Q0 MARCO_17_2854875838-6 59 -0.056708 hybrid +132_3-3 Q0 MARCO_48_612298670-2 60 -0.059296 hybrid +132_3-3 Q0 MARCO_37_1226477362-26 61 -0.064376 hybrid +132_3-3 Q0 MARCO_48_1440474473-3 62 -0.065688 hybrid +132_3-3 Q0 MARCO_48_1251187189-2 63 -0.067460 hybrid +132_3-3 Q0 MARCO_19_266473698-1 64 -0.067590 hybrid +132_3-3 Q0 MARCO_17_1136196611-110 65 -0.070178 hybrid +132_3-3 Q0 MARCO_42_1366117883-9 66 -0.074112 hybrid +132_3-3 Q0 MARCO_18_1978806874-12 67 -0.074585 hybrid +132_3-3 Q0 MARCO_19_266473698-67 68 -0.075826 hybrid +132_3-3 Q0 MARCO_03_574768496-1 69 -0.077043 hybrid +132_3-3 Q0 MARCO_16_3677683636-40 70 -0.079961 hybrid +132_3-3 Q0 MARCO_48_1440474473-7 71 -0.080634 hybrid +132_3-3 Q0 MARCO_41_713327519-3 72 -0.080906 hybrid +132_3-3 Q0 MARCO_50_1732807570-153 73 -0.080989 hybrid +132_3-3 Q0 KILT_456252-20 74 -0.082478 hybrid +132_3-3 Q0 MARCO_11_296903612-2 75 -0.086471 hybrid +132_3-3 Q0 MARCO_17_298495255-43 76 -0.091375 hybrid +132_3-3 Q0 MARCO_19_2506731168-6 77 -0.093915 hybrid +132_3-3 Q0 MARCO_48_114247267-1 78 -0.095014 hybrid +132_3-3 Q0 KILT_54199706-25 79 -0.095144 hybrid +132_3-3 Q0 MARCO_19_266473698-12 80 -0.098298 hybrid +132_3-3 Q0 MARCO_19_266473698-29 81 -0.098310 hybrid +132_3-3 Q0 KILT_10658546-3 82 -0.102777 hybrid +132_3-3 Q0 MARCO_11_112838022-34 83 -0.105530 hybrid +132_3-3 Q0 MARCO_18_2292056654-25 84 -0.107881 hybrid +132_3-3 Q0 KILT_57213603-4 85 -0.111414 hybrid +132_3-3 Q0 KILT_1573080-8 86 -0.114273 hybrid +132_3-3 Q0 MARCO_35_1675666423-4 87 -0.118538 hybrid +132_3-3 Q0 MARCO_50_2146436541-44 88 -0.127542 hybrid +132_3-3 Q0 KILT_52233943-22 89 -0.128357 hybrid +132_3-3 Q0 MARCO_04_1015478190-8 90 -0.130377 hybrid +132_3-3 Q0 MARCO_54_337965324-11 91 -0.133508 hybrid +132_3-3 Q0 MARCO_54_276703634-2 92 -0.134584 hybrid +132_3-3 Q0 MARCO_44_745214926-4 93 -0.135470 hybrid +132_3-3 Q0 MARCO_48_608624164-2 94 -0.136498 hybrid +132_3-3 Q0 KILT_54199706-27 95 -0.137041 hybrid +132_3-3 Q0 MARCO_54_349248602-4 96 -0.137904 hybrid +132_3-3 Q0 KILT_48998216-33 97 -0.138046 hybrid +132_3-3 Q0 MARCO_35_1435664725-2 98 -0.138814 hybrid +132_3-3 Q0 KILT_20802345-5 99 -0.140090 hybrid +132_3-3 Q0 MARCO_04_859919078-20 100 -0.140680 hybrid +132_3-5 Q0 MARCO_29_633524644-1 1 0.500000 hybrid +132_3-5 Q0 MARCO_34_3414626-1 2 0.363770 hybrid +132_3-5 Q0 MARCO_29_1046750646-1 3 0.304400 hybrid +132_3-5 Q0 MARCO_45_185826758-1 4 0.273891 hybrid +132_3-5 Q0 MARCO_47_1021717824-2 5 0.258696 hybrid +132_3-5 Q0 MARCO_48_1475773959-1 6 0.245187 hybrid +132_3-5 Q0 MARCO_49_638131185-1 7 0.244206 hybrid +132_3-5 Q0 MARCO_56_1195231640-1 8 0.211403 hybrid +132_3-5 Q0 MARCO_11_1064378071-3 9 0.181581 hybrid +132_3-5 Q0 MARCO_59_409809526-2 10 0.163092 hybrid +132_3-5 Q0 MARCO_39_432867375-1 11 0.150974 hybrid +132_3-5 Q0 MARCO_40_1304657098-1 12 0.144661 hybrid +132_3-5 Q0 MARCO_50_2525659877-48 13 0.134426 hybrid +132_3-5 Q0 MARCO_34_3389127-1 14 0.130995 hybrid +132_3-5 Q0 MARCO_11_290370866-4 15 0.121662 hybrid +132_3-5 Q0 MARCO_22_984739871-1 16 0.108505 hybrid +132_3-5 Q0 MARCO_08_1274922016-1 17 0.094016 hybrid +132_3-5 Q0 MARCO_35_1441178363-1 18 0.091898 hybrid +132_3-5 Q0 MARCO_29_736814135-1 19 0.079703 hybrid +132_3-5 Q0 MARCO_20_1108305580-6 20 0.071605 hybrid +132_3-5 Q0 MARCO_18_1612539977-89 21 0.047645 hybrid +132_3-5 Q0 MARCO_56_1150064710-3 22 0.041194 hybrid +132_3-5 Q0 MARCO_48_612825074-2 23 0.038410 hybrid +132_3-5 Q0 MARCO_58_1660394029-1 24 0.027724 hybrid +132_3-5 Q0 MARCO_45_430807428-9 25 0.023293 hybrid +132_3-5 Q0 MARCO_24_1822494201-1 26 0.019764 hybrid +132_3-5 Q0 MARCO_47_149797480-1 27 0.013411 hybrid +132_3-5 Q0 MARCO_49_1656991046-1 28 0.008608 hybrid +132_3-5 Q0 MARCO_57_1359350797-1 29 0.005451 hybrid +132_3-5 Q0 MARCO_58_1617148606-1 30 0.005451 hybrid +132_3-5 Q0 MARCO_42_290764662-1 31 -0.002667 hybrid +132_3-5 Q0 MARCO_10_204380841-4 32 -0.019137 hybrid +132_3-5 Q0 MARCO_54_215450217-1 33 -0.023215 hybrid +132_3-5 Q0 MARCO_40_1112373426-1 34 -0.025940 hybrid +132_3-5 Q0 MARCO_56_978889983-1 35 -0.027215 hybrid +132_3-5 Q0 MARCO_48_1175129065-1 36 -0.032901 hybrid +132_3-5 Q0 MARCO_45_75168370-1 37 -0.039018 hybrid +132_3-5 Q0 MARCO_32_82837699-8 38 -0.041371 hybrid +132_3-5 Q0 MARCO_20_1108305580-5 39 -0.043724 hybrid +132_3-5 Q0 MARCO_22_1226706981-1 40 -0.051116 hybrid +132_3-5 Q0 MARCO_48_1448768290-1 41 -0.055449 hybrid +132_3-5 Q0 MARCO_05_1007031330-41 42 -0.058194 hybrid +132_3-5 Q0 MARCO_47_1005587682-3 43 -0.059606 hybrid +132_3-5 Q0 MARCO_08_497568833-2 44 -0.060841 hybrid +132_3-5 Q0 MARCO_24_1090469440-10 45 -0.061605 hybrid +132_3-5 Q0 MARCO_29_734696231-3 46 -0.061606 hybrid +132_3-5 Q0 MARCO_18_1612539977-104 47 -0.064429 hybrid +132_3-5 Q0 MARCO_20_1549806449-24 48 -0.066997 hybrid +132_3-5 Q0 MARCO_47_1390557568-2 49 -0.067076 hybrid +132_3-5 Q0 MARCO_24_1814731167-1 50 -0.070448 hybrid +132_3-5 Q0 MARCO_41_818434333-4 51 -0.071232 hybrid +132_3-5 Q0 MARCO_05_805347583-3 52 -0.073664 hybrid +132_3-5 Q0 MARCO_20_1619152178-1 53 -0.074879 hybrid +132_3-5 Q0 MARCO_56_1156135406-4 54 -0.076919 hybrid +132_3-5 Q0 MARCO_35_260604298-3 55 -0.079840 hybrid +132_3-5 Q0 MARCO_32_372239590-2 56 -0.080644 hybrid +132_3-5 Q0 MARCO_35_287430495-1 57 -0.081644 hybrid +132_3-5 Q0 MARCO_47_1026680406-3 58 -0.084212 hybrid +132_3-5 Q0 MARCO_56_968993950-7 59 -0.084369 hybrid +132_3-5 Q0 MARCO_35_1445425595-8 60 -0.085369 hybrid +132_3-5 Q0 MARCO_48_1476178655-1 61 -0.085644 hybrid +132_3-5 Q0 MARCO_57_1358114251-1 62 -0.087997 hybrid +132_3-5 Q0 MARCO_40_1301378408-2 63 -0.089996 hybrid +132_3-5 Q0 MARCO_49_637829042-8 64 -0.096859 hybrid +132_3-5 Q0 MARCO_54_214414182-1 65 -0.098741 hybrid +132_3-5 Q0 MARCO_48_1468851311-12 66 -0.099075 hybrid +132_3-5 Q0 MARCO_48_1449817055-1 67 -0.099349 hybrid +132_3-5 Q0 MARCO_47_1005528201-4 68 -0.104662 hybrid +132_3-5 Q0 MARCO_45_185826758-4 69 -0.106094 hybrid +132_3-5 Q0 MARCO_32_82837699-6 70 -0.108192 hybrid +132_3-5 Q0 MARCO_29_1589791785-1 71 -0.108290 hybrid +132_3-5 Q0 MARCO_36_857330758-2 72 -0.110290 hybrid +132_3-5 Q0 MARCO_48_598803143-2 73 -0.112760 hybrid +132_3-5 Q0 MARCO_21_994118370-1 74 -0.113211 hybrid +132_3-5 Q0 MARCO_08_140853393-4 75 -0.114760 hybrid +132_3-5 Q0 MARCO_35_1431545969-5 76 -0.116544 hybrid +132_3-5 Q0 MARCO_08_1024891650-11 77 -0.118937 hybrid +132_3-5 Q0 MARCO_54_1930862368-5 78 -0.120858 hybrid +132_3-5 Q0 MARCO_13_385722763-7 79 -0.121466 hybrid +132_3-5 Q0 MARCO_48_1475502503-2 80 -0.123446 hybrid +132_3-5 Q0 MARCO_22_1645080741-1 81 -0.123525 hybrid +132_3-5 Q0 MARCO_54_1930862368-11 82 -0.132171 hybrid +132_3-5 Q0 MARCO_49_1566743658-7 83 -0.132210 hybrid +132_3-5 Q0 MARCO_30_548806929-1 84 -0.133563 hybrid +132_3-5 Q0 MARCO_00_55215565-22 85 -0.135622 hybrid +132_3-5 Q0 MARCO_54_214579667-3 86 -0.135661 hybrid +132_3-5 Q0 MARCO_40_1153282003-2 87 -0.137799 hybrid +132_3-5 Q0 MARCO_20_1741574555-1 88 -0.140857 hybrid +132_3-5 Q0 MARCO_36_842621850-2 89 -0.142543 hybrid +132_3-5 Q0 MARCO_21_994251230-1 90 -0.144936 hybrid +132_3-5 Q0 MARCO_16_451164657-48 91 -0.150053 hybrid +132_3-5 Q0 MARCO_04_36629481-3 92 -0.151053 hybrid +132_3-5 Q0 MARCO_25_1777976253-4 93 -0.154680 hybrid +132_3-5 Q0 MARCO_49_1664375354-1 94 -0.155621 hybrid +132_3-5 Q0 MARCO_30_1129526407-1 95 -0.156131 hybrid +132_3-5 Q0 MARCO_49_638183610-1 96 -0.156876 hybrid +132_3-5 Q0 MARCO_11_291298463-9 97 -0.157955 hybrid +132_3-5 Q0 MARCO_34_13661699-5 98 -0.160170 hybrid +132_3-5 Q0 MARCO_08_1025993970-6 99 -0.161876 hybrid +132_3-5 Q0 MARCO_46_406039520-3 100 -0.163445 hybrid +132_3-7 Q0 KILT_30242372-20 1 0.500000 hybrid +132_3-7 Q0 MARCO_18_1270013948-7 2 0.439554 hybrid +132_3-7 Q0 KILT_54199706-1 3 0.349046 hybrid +132_3-7 Q0 MARCO_17_4282412444-5 4 0.348850 hybrid +132_3-7 Q0 MARCO_17_1136196611-110 5 0.304552 hybrid +132_3-7 Q0 KILT_50284451-4 6 0.295902 hybrid +132_3-7 Q0 KILT_58255078-1 7 0.293840 hybrid +132_3-7 Q0 MARCO_17_4282412444-6 8 0.253078 hybrid +132_3-7 Q0 KILT_54199706-4 9 0.231459 hybrid +132_3-7 Q0 MARCO_48_1251187189-4 10 0.221427 hybrid +132_3-7 Q0 MARCO_26_1737334641-7 11 0.220909 hybrid +132_3-7 Q0 MARCO_19_266473698-39 12 0.220390 hybrid +132_3-7 Q0 MARCO_44_1640998791-470 13 0.216152 hybrid +132_3-7 Q0 MARCO_19_266473698-6 14 0.216082 hybrid +132_3-7 Q0 KILT_54199706-3 15 0.214366 hybrid +132_3-7 Q0 MARCO_19_266473698-5 16 0.214366 hybrid +132_3-7 Q0 MARCO_19_266473698-2 17 0.172948 hybrid +132_3-7 Q0 KILT_54199706-26 18 0.171255 hybrid +132_3-7 Q0 KILT_50284451-3 19 0.170195 hybrid +132_3-7 Q0 MARCO_19_266473698-10 20 0.164897 hybrid +132_3-7 Q0 MARCO_19_266473698-29 21 0.164252 hybrid +132_3-7 Q0 KILT_55794633-1 22 0.121889 hybrid +132_3-7 Q0 MARCO_18_1573315574-26 23 0.113688 hybrid +132_3-7 Q0 MARCO_44_729349767-8 24 0.097275 hybrid +132_3-7 Q0 KILT_54203297-3 25 0.087680 hybrid +132_3-7 Q0 MARCO_19_217252192-2 26 0.083972 hybrid +132_3-7 Q0 KILT_54199706-8 27 0.070945 hybrid +132_3-7 Q0 MARCO_35_10757894-1 28 0.064334 hybrid +132_3-7 Q0 KILT_47290767-25 29 0.064310 hybrid +132_3-7 Q0 MARCO_18_1270013948-8 30 0.062894 hybrid +132_3-7 Q0 MARCO_39_196501676-18 31 0.044949 hybrid +132_3-7 Q0 MARCO_00_1330634246-3 32 0.040849 hybrid +132_3-7 Q0 MARCO_18_1612225304-32 33 0.036564 hybrid +132_3-7 Q0 MARCO_48_1440485436-1 34 0.033604 hybrid +132_3-7 Q0 MARCO_26_1671674679-6 35 0.026658 hybrid +132_3-7 Q0 MARCO_19_266473698-8 36 0.026071 hybrid +132_3-7 Q0 MARCO_04_644766581-2 37 0.026048 hybrid +132_3-7 Q0 MARCO_04_858408112-35 38 0.020704 hybrid +132_3-7 Q0 MARCO_19_266473698-19 39 0.019863 hybrid +132_3-7 Q0 KILT_52571341-5 40 0.019828 hybrid +132_3-7 Q0 MARCO_48_1439242324-4 41 0.017697 hybrid +132_3-7 Q0 MARCO_52_56044289-1 42 0.017271 hybrid +132_3-7 Q0 MARCO_54_214915112-11 43 0.011927 hybrid +132_3-7 Q0 MARCO_54_544550120-2 44 0.009543 hybrid +132_3-7 Q0 MARCO_19_266473698-1 45 0.009278 hybrid +132_3-7 Q0 MARCO_48_1433671672-2 46 0.003761 hybrid +132_3-7 Q0 KILT_54201665-1 47 0.003127 hybrid +132_3-7 Q0 KILT_52992307-3 48 -0.000777 hybrid +132_3-7 Q0 MARCO_19_217252192-9 49 -0.008253 hybrid +132_3-7 Q0 MARCO_25_1173147974-1 50 -0.008875 hybrid +132_3-7 Q0 KILT_54199706-16 51 -0.008875 hybrid +132_3-7 Q0 MARCO_57_659534166-3 52 -0.011685 hybrid +132_3-7 Q0 KILT_54199706-9 53 -0.017490 hybrid +132_3-7 Q0 MARCO_08_1664468555-4 54 -0.019494 hybrid +132_3-7 Q0 MARCO_28_283614502-17 55 -0.019817 hybrid +132_3-7 Q0 MARCO_44_729349767-6 56 -0.020393 hybrid +132_3-7 Q0 KILT_30242372-2 57 -0.023330 hybrid +132_3-7 Q0 MARCO_19_266473698-20 58 -0.024021 hybrid +132_3-7 Q0 MARCO_48_1251187189-25 59 -0.030436 hybrid +132_3-7 Q0 MARCO_17_699495021-69 60 -0.033293 hybrid +132_3-7 Q0 KILT_60065139-39 61 -0.036667 hybrid +132_3-7 Q0 MARCO_18_1735869040-7 62 -0.038983 hybrid +132_3-7 Q0 MARCO_48_1484880135-47 63 -0.045110 hybrid +132_3-7 Q0 MARCO_36_967104724-2 64 -0.051583 hybrid +132_3-7 Q0 KILT_54199706-18 65 -0.062491 hybrid +132_3-7 Q0 MARCO_18_1612225304-31 66 -0.063642 hybrid +132_3-7 Q0 KILT_54199706-7 67 -0.064403 hybrid +132_3-7 Q0 MARCO_19_266473698-9 68 -0.064403 hybrid +132_3-7 Q0 KILT_54199706-2 69 -0.068042 hybrid +132_3-7 Q0 KILT_47423035-15 70 -0.069401 hybrid +132_3-7 Q0 MARCO_42_1366117883-9 71 -0.069678 hybrid +132_3-7 Q0 MARCO_30_1666785499-6 72 -0.069816 hybrid +132_3-7 Q0 MARCO_48_1251187189-1 73 -0.070219 hybrid +132_3-7 Q0 KILT_25447994-41 74 -0.070415 hybrid +132_3-7 Q0 MARCO_16_2116262142-17 75 -0.077925 hybrid +132_3-7 Q0 MARCO_48_1440485436-8 76 -0.078305 hybrid +132_3-7 Q0 MARCO_34_276845054-80 77 -0.078524 hybrid +132_3-7 Q0 MARCO_19_174784341-17 78 -0.081092 hybrid +132_3-7 Q0 MARCO_26_1737334641-6 79 -0.084133 hybrid +132_3-7 Q0 MARCO_48_1479752404-3 80 -0.085457 hybrid +132_3-7 Q0 KILT_8149492-18 81 -0.085849 hybrid +132_3-7 Q0 MARCO_16_3664296446-16 82 -0.085953 hybrid +132_3-7 Q0 MARCO_19_266473698-50 83 -0.087911 hybrid +132_3-7 Q0 KILT_947442-14 84 -0.090399 hybrid +132_3-7 Q0 KILT_30242372-1 85 -0.092645 hybrid +132_3-7 Q0 KILT_52935795-42 86 -0.094626 hybrid +132_3-7 Q0 KILT_54199706-19 87 -0.097655 hybrid +132_3-7 Q0 MARCO_26_1606533812-6 88 -0.099601 hybrid +132_3-7 Q0 MARCO_48_1440474473-7 89 -0.103333 hybrid +132_3-7 Q0 MARCO_11_103028715-1 90 -0.105625 hybrid +132_3-7 Q0 MARCO_48_1251187189-24 91 -0.105648 hybrid +132_3-7 Q0 MARCO_19_266473698-68 92 -0.106581 hybrid +132_3-7 Q0 MARCO_30_575902674-24 93 -0.108378 hybrid +132_3-7 Q0 MARCO_48_1440474473-4 94 -0.108424 hybrid +132_3-7 Q0 MARCO_29_1175326324-10 95 -0.108655 hybrid +132_3-7 Q0 MARCO_48_1440474473-3 96 -0.115197 hybrid +132_3-7 Q0 MARCO_52_56044289-3 97 -0.121578 hybrid +132_3-7 Q0 MARCO_04_858408112-36 98 -0.123398 hybrid +132_3-7 Q0 MARCO_18_76941711-11 99 -0.126012 hybrid +132_3-7 Q0 KILT_14863992-6 100 -0.128535 hybrid +133_1-1 Q0 MARCO_30_1649987246-9 1 0.500000 hybrid +133_1-1 Q0 MARCO_51_1542142755-2 2 0.459567 hybrid +133_1-1 Q0 MARCO_47_587723733-24 3 0.457578 hybrid +133_1-1 Q0 MARCO_29_1259851436-1 4 0.429631 hybrid +133_1-1 Q0 MARCO_30_1649987246-6 5 0.404866 hybrid +133_1-1 Q0 MARCO_47_1374013015-7 6 0.395199 hybrid +133_1-1 Q0 MARCO_47_97926714-6 7 0.314593 hybrid +133_1-1 Q0 MARCO_00_731332696-2 8 0.302435 hybrid +133_1-1 Q0 MARCO_30_1649987246-8 9 0.247544 hybrid +133_1-1 Q0 MARCO_29_1246920216-8 10 0.230233 hybrid +133_1-1 Q0 MARCO_20_525756982-6 11 0.222624 hybrid +133_1-1 Q0 MARCO_50_620478106-1 12 0.220497 hybrid +133_1-1 Q0 MARCO_22_980780860-4 13 0.219476 hybrid +133_1-1 Q0 MARCO_28_684387256-7 14 0.211175 hybrid +133_1-1 Q0 MARCO_49_409052444-1 15 0.209221 hybrid +133_1-1 Q0 MARCO_29_1246920216-1 16 0.206938 hybrid +133_1-1 Q0 MARCO_26_219742166-1 17 0.205001 hybrid +133_1-1 Q0 MARCO_58_1094671039-2 18 0.197634 hybrid +133_1-1 Q0 MARCO_22_1600387989-11 19 0.181205 hybrid +133_1-1 Q0 MARCO_53_473898328-2 20 0.180513 hybrid +133_1-1 Q0 MARCO_36_709949869-6 21 0.171002 hybrid +133_1-1 Q0 MARCO_41_1847614301-1 22 0.159640 hybrid +133_1-1 Q0 MARCO_15_575327426-2 23 0.156267 hybrid +133_1-1 Q0 MARCO_41_943153706-5 24 0.150906 hybrid +133_1-1 Q0 MARCO_47_578333937-3 25 0.141862 hybrid +133_1-1 Q0 MARCO_54_1899505270-3 26 0.141689 hybrid +133_1-1 Q0 MARCO_19_1713670630-2 27 0.134927 hybrid +133_1-1 Q0 MARCO_27_1618713015-1 28 0.130551 hybrid +133_1-1 Q0 MARCO_47_587723733-25 29 0.127300 hybrid +133_1-1 Q0 MARCO_24_1057883035-3 30 0.112376 hybrid +133_1-1 Q0 MARCO_23_1059368765-4 31 0.112237 hybrid +133_1-1 Q0 MARCO_28_506130609-7 32 0.105199 hybrid +133_1-1 Q0 MARCO_52_497322663-2 33 0.097831 hybrid +133_1-1 Q0 MARCO_32_1011749359-4 34 0.090948 hybrid +133_1-1 Q0 MARCO_39_411033103-2 35 0.087507 hybrid +133_1-1 Q0 MARCO_39_1328316960-3 36 0.086487 hybrid +133_1-1 Q0 MARCO_30_1649987246-2 37 0.079310 hybrid +133_1-1 Q0 MARCO_42_1139270073-6 38 0.071078 hybrid +133_1-1 Q0 MARCO_49_407212670-1 39 0.068639 hybrid +133_1-1 Q0 MARCO_57_1416647975-6 40 0.066875 hybrid +133_1-1 Q0 MARCO_39_330494318-8 41 0.061860 hybrid +133_1-1 Q0 MARCO_39_414482061-2 42 0.042577 hybrid +133_1-1 Q0 MARCO_47_587723733-2 43 0.041367 hybrid +133_1-1 Q0 MARCO_46_175495362-15 44 0.038704 hybrid +133_1-1 Q0 MARCO_49_409825172-1 45 0.038341 hybrid +133_1-1 Q0 MARCO_52_1186887800-2 46 0.029054 hybrid +133_1-1 Q0 MARCO_30_1821251242-4 47 0.027445 hybrid +133_1-1 Q0 MARCO_58_1098135374-1 48 0.022465 hybrid +133_1-1 Q0 MARCO_29_1480542871-2 49 0.019905 hybrid +133_1-1 Q0 MARCO_51_832233330-7 50 0.018384 hybrid +133_1-1 Q0 MARCO_24_1083946425-4 51 0.015530 hybrid +133_1-1 Q0 MARCO_54_473908861-11 52 -0.007696 hybrid +133_1-1 Q0 MARCO_04_525233474-15 53 -0.011154 hybrid +133_1-1 Q0 MARCO_35_963526334-1 54 -0.014008 hybrid +133_1-1 Q0 MARCO_30_1768248609-1 55 -0.014613 hybrid +133_1-1 Q0 MARCO_49_407993445-8 56 -0.014786 hybrid +133_1-1 Q0 MARCO_25_268328667-3 57 -0.017691 hybrid +133_1-1 Q0 MARCO_24_1071261465-11 58 -0.021133 hybrid +133_1-1 Q0 MARCO_47_1153654881-1 59 -0.022326 hybrid +133_1-1 Q0 MARCO_33_107249545-2 60 -0.022672 hybrid +133_1-1 Q0 MARCO_39_1212317744-4 61 -0.023053 hybrid +133_1-1 Q0 MARCO_29_1259627605-12 62 -0.026978 hybrid +133_1-1 Q0 MARCO_30_583938226-1 63 -0.030575 hybrid +133_1-1 Q0 MARCO_49_408625879-19 64 -0.030973 hybrid +133_1-1 Q0 MARCO_48_1729406152-7 65 -0.031596 hybrid +133_1-1 Q0 MARCO_50_2806046410-4 66 -0.031596 hybrid +133_1-1 Q0 MARCO_30_1650070482-3 67 -0.032184 hybrid +133_1-1 Q0 MARCO_22_1129515956-3 68 -0.034674 hybrid +133_1-1 Q0 MARCO_15_1349804938-3 69 -0.035971 hybrid +133_1-1 Q0 MARCO_25_897715256-5 70 -0.043269 hybrid +133_1-1 Q0 MARCO_30_1320718948-5 71 -0.043667 hybrid +133_1-1 Q0 MARCO_11_1117830787-11 72 -0.048077 hybrid +133_1-1 Q0 MARCO_25_1381427070-1 73 -0.048751 hybrid +133_1-1 Q0 MARCO_13_826562370-6 74 -0.057139 hybrid +133_1-1 Q0 MARCO_21_281486039-5 75 -0.057173 hybrid +133_1-1 Q0 MARCO_20_570989692-2 76 -0.061168 hybrid +133_1-1 Q0 MARCO_23_1138737543-2 77 -0.062742 hybrid +133_1-1 Q0 MARCO_31_903812770-1 78 -0.062846 hybrid +133_1-1 Q0 MARCO_30_1650070482-2 79 -0.063918 hybrid +133_1-1 Q0 MARCO_27_1618713015-9 80 -0.066650 hybrid +133_1-1 Q0 MARCO_57_494464106-21 81 -0.066668 hybrid +133_1-1 Q0 MARCO_25_1089918131-5 82 -0.068501 hybrid +133_1-1 Q0 MARCO_47_578333937-1 83 -0.071181 hybrid +133_1-1 Q0 MARCO_46_145734772-6 84 -0.072081 hybrid +133_1-1 Q0 MARCO_24_1018547829-3 85 -0.072876 hybrid +133_1-1 Q0 MARCO_22_1777075033-2 86 -0.074588 hybrid +133_1-1 Q0 MARCO_37_1200261923-1 87 -0.075401 hybrid +133_1-1 Q0 MARCO_20_1490619555-13 88 -0.080762 hybrid +133_1-1 Q0 MARCO_00_1041083512-14 89 -0.083201 hybrid +133_1-1 Q0 MARCO_50_2558172285-2 90 -0.084134 hybrid +133_1-1 Q0 MARCO_37_191139838-12 91 -0.088268 hybrid +133_1-1 Q0 MARCO_30_582283410-3 92 -0.090257 hybrid +133_1-1 Q0 MARCO_25_475803299-2 93 -0.091225 hybrid +133_1-1 Q0 MARCO_20_1240935985-19 94 -0.093750 hybrid +133_1-1 Q0 MARCO_13_684840871-2 95 -0.094545 hybrid +133_1-1 Q0 MARCO_30_284463696-3 96 -0.096967 hybrid +133_1-1 Q0 MARCO_47_594513326-4 97 -0.100495 hybrid +133_1-1 Q0 MARCO_49_459733990-2 98 -0.101031 hybrid +133_1-1 Q0 MARCO_37_191894298-7 99 -0.102812 hybrid +133_1-1 Q0 MARCO_23_1638000205-2 100 -0.106755 hybrid +133_1-3 Q0 MARCO_21_291233325-14 1 0.500000 hybrid +133_1-3 Q0 MARCO_13_684840871-2 2 0.468266 hybrid +133_1-3 Q0 MARCO_42_258270495-16 3 0.421524 hybrid +133_1-3 Q0 MARCO_24_1079440211-1 4 0.399726 hybrid +133_1-3 Q0 MARCO_36_1802330173-1 5 0.385505 hybrid +133_1-3 Q0 MARCO_31_817983190-2 6 0.374607 hybrid +133_1-3 Q0 MARCO_23_895409741-1 7 0.353887 hybrid +133_1-3 Q0 MARCO_30_609445025-1 8 0.347797 hybrid +133_1-3 Q0 MARCO_50_246817545-14 9 0.343776 hybrid +133_1-3 Q0 MARCO_02_616080436-1 10 0.339055 hybrid +133_1-3 Q0 MARCO_36_1088009820-6 11 0.316645 hybrid +133_1-3 Q0 MARCO_53_1123534061-1 12 0.309302 hybrid +133_1-3 Q0 MARCO_28_646725838-8 13 0.293507 hybrid +133_1-3 Q0 MARCO_51_1542142755-2 14 0.266844 hybrid +133_1-3 Q0 MARCO_40_880336472-3 15 0.257781 hybrid +133_1-3 Q0 MARCO_31_1633658842-5 16 0.231495 hybrid +133_1-3 Q0 MARCO_47_597571919-1 17 0.228931 hybrid +133_1-3 Q0 MARCO_57_152792841-1 18 0.226133 hybrid +133_1-3 Q0 MARCO_04_961071946-6 19 0.225026 hybrid +133_1-3 Q0 MARCO_13_429571872-5 20 0.223511 hybrid +133_1-3 Q0 MARCO_38_1465377746-1 21 0.222986 hybrid +133_1-3 Q0 MARCO_47_597571919-3 22 0.221821 hybrid +133_1-3 Q0 MARCO_13_419575271-5 23 0.216838 hybrid +133_1-3 Q0 MARCO_08_12840639-1 24 0.213690 hybrid +133_1-3 Q0 MARCO_51_1577010259-7 25 0.207891 hybrid +133_1-3 Q0 MARCO_50_246854685-11 26 0.188221 hybrid +133_1-3 Q0 MARCO_01_2126535076-3 27 0.185307 hybrid +133_1-3 Q0 MARCO_30_1504157269-11 28 0.180907 hybrid +133_1-3 Q0 MARCO_50_620478106-1 29 0.171669 hybrid +133_1-3 Q0 MARCO_52_497322663-2 30 0.169454 hybrid +133_1-3 Q0 MARCO_47_762796054-1 31 0.167706 hybrid +133_1-3 Q0 MARCO_34_564001397-1 32 0.164850 hybrid +133_1-3 Q0 MARCO_27_1183858223-1 33 0.162606 hybrid +133_1-3 Q0 MARCO_26_487737468-4 34 0.159459 hybrid +133_1-3 Q0 MARCO_49_437499080-7 35 0.155350 hybrid +133_1-3 Q0 MARCO_48_1547038553-6 36 0.149201 hybrid +133_1-3 Q0 MARCO_50_246834801-16 37 0.137225 hybrid +133_1-3 Q0 MARCO_40_13257112-1 38 0.127667 hybrid +133_1-3 Q0 MARCO_24_1079996436-1 39 0.120498 hybrid +133_1-3 Q0 MARCO_21_1040085292-1 40 0.114844 hybrid +133_1-3 Q0 MARCO_39_1147513792-1 41 0.114524 hybrid +133_1-3 Q0 MARCO_00_675113896-19 42 0.111464 hybrid +133_1-3 Q0 MARCO_13_113442416-3 43 0.104587 hybrid +133_1-3 Q0 MARCO_55_800775315-5 44 0.103479 hybrid +133_1-3 Q0 MARCO_39_554166281-1 45 0.101323 hybrid +133_1-3 Q0 MARCO_41_1847614301-2 46 0.097185 hybrid +133_1-3 Q0 MARCO_49_1360460462-3 47 0.093717 hybrid +133_1-3 Q0 MARCO_11_222829653-2 48 0.082615 hybrid +133_1-3 Q0 MARCO_42_1710528731-14 49 0.082119 hybrid +133_1-3 Q0 MARCO_31_1800318406-3 50 0.078797 hybrid +133_1-3 Q0 MARCO_46_1227487864-8 51 0.072677 hybrid +133_1-3 Q0 MARCO_11_308322321-2 52 0.072386 hybrid +133_1-3 Q0 MARCO_52_892186597-3 53 0.067578 hybrid +133_1-3 Q0 MARCO_42_1710679323-11 54 0.062624 hybrid +133_1-3 Q0 MARCO_24_1053534655-9 55 0.060730 hybrid +133_1-3 Q0 MARCO_47_97926714-6 56 0.057553 hybrid +133_1-3 Q0 MARCO_28_646794507-4 57 0.054668 hybrid +133_1-3 Q0 MARCO_14_1645778116-3 58 0.051812 hybrid +133_1-3 Q0 MARCO_50_620478106-2 59 0.046655 hybrid +133_1-3 Q0 MARCO_02_1214561421-2 60 0.046596 hybrid +133_1-3 Q0 MARCO_47_1257884583-7 61 0.046509 hybrid +133_1-3 Q0 MARCO_32_1139830266-1 62 0.043129 hybrid +133_1-3 Q0 MARCO_31_816944903-2 63 0.041118 hybrid +133_1-3 Q0 MARCO_30_64196823-1 64 0.034386 hybrid +133_1-3 Q0 MARCO_24_1058410348-1 65 0.031006 hybrid +133_1-3 Q0 MARCO_48_303322050-1 66 0.024974 hybrid +133_1-3 Q0 MARCO_30_582283410-3 67 0.020107 hybrid +133_1-3 Q0 MARCO_28_336409697-1 68 0.019087 hybrid +133_1-3 Q0 MARCO_48_1547038553-13 69 0.016552 hybrid +133_1-3 Q0 MARCO_35_942701485-1 70 0.016552 hybrid +133_1-3 Q0 MARCO_45_1005541023-25 71 0.014366 hybrid +133_1-3 Q0 MARCO_39_1333209605-1 72 0.013988 hybrid +133_1-3 Q0 MARCO_47_557301416-1 73 0.013696 hybrid +133_1-3 Q0 MARCO_12_2015451455-6 74 0.009296 hybrid +133_1-3 Q0 MARCO_34_414315213-2 75 -0.007285 hybrid +133_1-3 Q0 MARCO_11_997411433-1 76 -0.009150 hybrid +133_1-3 Q0 MARCO_00_707897549-2 77 -0.013055 hybrid +133_1-3 Q0 MARCO_31_1264961274-2 78 -0.014716 hybrid +133_1-3 Q0 MARCO_23_93210761-2 79 -0.015095 hybrid +133_1-3 Q0 MARCO_04_777443159-24 80 -0.016669 hybrid +133_1-3 Q0 MARCO_24_1052231355-2 81 -0.030394 hybrid +133_1-3 Q0 MARCO_03_166475352-1 82 -0.032609 hybrid +133_1-3 Q0 MARCO_35_293514046-12 83 -0.035814 hybrid +133_1-3 Q0 MARCO_58_1054649362-2 84 -0.045839 hybrid +133_1-3 Q0 MARCO_34_563993750-1 85 -0.046305 hybrid +133_1-3 Q0 MARCO_12_779567100-1 86 -0.049481 hybrid +133_1-3 Q0 MARCO_24_1052030667-3 87 -0.049569 hybrid +133_1-3 Q0 MARCO_26_1029517439-3 88 -0.052687 hybrid +133_1-3 Q0 MARCO_23_1608201664-1 89 -0.054406 hybrid +133_1-3 Q0 MARCO_24_37895923-3 90 -0.054843 hybrid +133_1-3 Q0 MARCO_50_2820025911-6 91 -0.056038 hybrid +133_1-3 Q0 MARCO_21_1270401109-12 92 -0.058515 hybrid +133_1-3 Q0 MARCO_12_1246020662-3 93 -0.058748 hybrid +133_1-3 Q0 MARCO_31_1679493879-3 94 -0.059768 hybrid +133_1-3 Q0 MARCO_40_1521354690-1 95 -0.062245 hybrid +133_1-3 Q0 MARCO_53_208938831-7 96 -0.062682 hybrid +133_1-3 Q0 MARCO_13_1185695399-1 97 -0.063148 hybrid +133_1-3 Q0 MARCO_35_1322908826-1 98 -0.064168 hybrid +133_1-3 Q0 MARCO_31_422308754-5 99 -0.067228 hybrid +133_1-3 Q0 MARCO_43_1562521655-6 100 -0.068918 hybrid +133_1-5 Q0 MARCO_29_1697483266-99 1 0.500000 hybrid +133_1-5 Q0 MARCO_13_906499826-4 2 0.272530 hybrid +133_1-5 Q0 MARCO_52_1278805789-1 3 0.229305 hybrid +133_1-5 Q0 MARCO_14_1784314806-75 4 0.191084 hybrid +133_1-5 Q0 MARCO_30_1762569147-14 5 0.172707 hybrid +133_1-5 Q0 MARCO_24_37590056-14 6 0.156710 hybrid +133_1-5 Q0 MARCO_53_900538557-93 7 0.155295 hybrid +133_1-5 Q0 MARCO_14_1784314806-136 8 0.146990 hybrid +133_1-5 Q0 MARCO_14_1784314806-138 9 0.139701 hybrid +133_1-5 Q0 MARCO_01_767428241-2 10 0.127422 hybrid +133_1-5 Q0 MARCO_51_611403672-9 11 0.125861 hybrid +133_1-5 Q0 MARCO_22_1760305010-3 12 0.124445 hybrid +133_1-5 Q0 MARCO_05_1578263893-511 13 0.084809 hybrid +133_1-5 Q0 MARCO_53_107081473-31 14 0.063502 hybrid +133_1-5 Q0 MARCO_01_663758152-85 15 0.050949 hybrid +133_1-5 Q0 MARCO_21_194358716-7 16 0.048584 hybrid +133_1-5 Q0 MARCO_20_289017455-2 17 0.044689 hybrid +133_1-5 Q0 MARCO_02_1559497566-13 18 0.039331 hybrid +133_1-5 Q0 MARCO_13_1206619767-5 19 0.038027 hybrid +133_1-5 Q0 MARCO_01_1579096285-3 20 0.011072 hybrid +133_1-5 Q0 MARCO_21_1273251781-14 21 0.008320 hybrid +133_1-5 Q0 MARCO_09_1105492302-2 22 -0.000515 hybrid +133_1-5 Q0 MARCO_16_389157560-5 23 -0.016914 hybrid +133_1-5 Q0 MARCO_14_1023234825-5 24 -0.022369 hybrid +133_1-5 Q0 MARCO_50_1842735534-13 25 -0.028114 hybrid +133_1-5 Q0 MARCO_28_733056334-5 26 -0.035323 hybrid +133_1-5 Q0 MARCO_12_1212571743-57 27 -0.038059 hybrid +133_1-5 Q0 MARCO_58_1627298406-3 28 -0.040361 hybrid +133_1-5 Q0 MARCO_21_915586967-6 29 -0.040361 hybrid +133_1-5 Q0 MARCO_20_1631932139-4 30 -0.043708 hybrid +133_1-5 Q0 MARCO_52_49512857-26 31 -0.047811 hybrid +133_1-5 Q0 MARCO_00_700264067-15 32 -0.048375 hybrid +133_1-5 Q0 MARCO_24_1057323680-5 33 -0.050048 hybrid +133_1-5 Q0 MARCO_09_815499478-66 34 -0.051481 hybrid +133_1-5 Q0 MARCO_52_1779721723-66 35 -0.051481 hybrid +133_1-5 Q0 MARCO_47_569229605-7 36 -0.056759 hybrid +133_1-5 Q0 MARCO_49_1696342047-20 37 -0.058433 hybrid +133_1-5 Q0 MARCO_08_5046594-62 38 -0.058529 hybrid +133_1-5 Q0 MARCO_12_1296941649-8 39 -0.063711 hybrid +133_1-5 Q0 MARCO_30_598169540-10 40 -0.064162 hybrid +133_1-5 Q0 MARCO_41_749540093-4 41 -0.069118 hybrid +133_1-5 Q0 MARCO_41_76234712-4 42 -0.072562 hybrid +133_1-5 Q0 MARCO_24_657866613-4 43 -0.075587 hybrid +133_1-5 Q0 MARCO_14_1522921490-2 44 -0.075764 hybrid +133_1-5 Q0 MARCO_12_873808971-132 45 -0.077181 hybrid +133_1-5 Q0 MARCO_48_2040197943-2 46 -0.077905 hybrid +133_1-5 Q0 MARCO_59_812883133-25 47 -0.080592 hybrid +133_1-5 Q0 MARCO_06_1484111130-6 48 -0.085372 hybrid +133_1-5 Q0 MARCO_00_698687134-18 49 -0.085678 hybrid +133_1-5 Q0 MARCO_20_1041271128-3 50 -0.086965 hybrid +133_1-5 Q0 MARCO_45_955927431-48 51 -0.089121 hybrid +133_1-5 Q0 MARCO_41_1210859764-37 52 -0.089266 hybrid +133_1-5 Q0 MARCO_35_983491522-2 53 -0.090216 hybrid +133_1-5 Q0 MARCO_06_1160160445-195 54 -0.091632 hybrid +133_1-5 Q0 MARCO_50_1466627125-4 55 -0.094255 hybrid +133_1-5 Q0 MARCO_41_1268132798-24 56 -0.097345 hybrid +133_1-5 Q0 MARCO_06_171199603-3 57 -0.100515 hybrid +133_1-5 Q0 MARCO_30_58192945-8 58 -0.100660 hybrid +133_1-5 Q0 MARCO_32_1286634508-14 59 -0.100998 hybrid +133_1-5 Q0 MARCO_08_264778890-10 60 -0.106614 hybrid +133_1-5 Q0 MARCO_28_1373985091-17 61 -0.107580 hybrid +133_1-5 Q0 MARCO_31_1599687902-4 62 -0.109414 hybrid +133_1-5 Q0 MARCO_47_298456517-2 63 -0.110541 hybrid +133_1-5 Q0 MARCO_41_1779241576-104 64 -0.115063 hybrid +133_1-5 Q0 MARCO_25_239314277-4 65 -0.118152 hybrid +133_1-5 Q0 MARCO_05_737863394-1 66 -0.121371 hybrid +133_1-5 Q0 MARCO_06_1060129174-615 67 -0.121822 hybrid +133_1-5 Q0 MARCO_37_350591812-3 68 -0.122514 hybrid +133_1-5 Q0 MARCO_44_1872378565-3 69 -0.126521 hybrid +133_1-5 Q0 MARCO_39_1326739431-7 70 -0.128967 hybrid +133_1-5 Q0 MARCO_00_1257672081-14 71 -0.130978 hybrid +133_1-5 Q0 MARCO_19_2600736286-3 72 -0.132346 hybrid +133_1-5 Q0 MARCO_12_202504279-22 73 -0.132797 hybrid +133_1-5 Q0 MARCO_26_1555601750-2 74 -0.133730 hybrid +133_1-5 Q0 MARCO_23_894325738-7 75 -0.134535 hybrid +133_1-5 Q0 MARCO_50_2091324687-13 76 -0.136949 hybrid +133_1-5 Q0 MARCO_03_1201389245-34 77 -0.137657 hybrid +133_1-5 Q0 MARCO_07_1659578194-1 78 -0.138092 hybrid +133_1-5 Q0 MARCO_33_778814581-1 79 -0.139717 hybrid +133_1-5 Q0 MARCO_32_127829290-5 80 -0.139845 hybrid +133_1-5 Q0 MARCO_26_1015232005-7 81 -0.140891 hybrid +133_1-5 Q0 MARCO_05_655435524-14 82 -0.144287 hybrid +133_1-5 Q0 MARCO_50_1241826956-14 83 -0.144722 hybrid +133_1-5 Q0 MARCO_53_1456543191-6 84 -0.146041 hybrid +133_1-5 Q0 MARCO_49_1678105046-4 85 -0.146878 hybrid +133_1-5 Q0 MARCO_08_1660956288-6 86 -0.147168 hybrid +133_1-5 Q0 MARCO_11_870961588-55 87 -0.148326 hybrid +133_1-5 Q0 MARCO_30_754839507-19 88 -0.148777 hybrid +133_1-5 Q0 MARCO_46_566985631-9 89 -0.149147 hybrid +133_1-5 Q0 MARCO_37_773015197-3 90 -0.150563 hybrid +133_1-5 Q0 MARCO_06_1303194379-405 91 -0.152189 hybrid +133_1-5 Q0 MARCO_31_1264339439-3 92 -0.154908 hybrid +133_1-5 Q0 MARCO_02_20476921-40 93 -0.156694 hybrid +133_1-5 Q0 MARCO_34_1336142613-7 94 -0.157242 hybrid +133_1-5 Q0 MARCO_20_1189724099-3 95 -0.159221 hybrid +133_1-5 Q0 MARCO_50_917786963-14 96 -0.159800 hybrid +133_1-5 Q0 MARCO_24_1254143148-22 97 -0.160734 hybrid +133_1-5 Q0 MARCO_44_1419186627-4 98 -0.162295 hybrid +133_1-5 Q0 MARCO_29_561698049-2 99 -0.165594 hybrid +133_1-5 Q0 MARCO_19_1778609306-7 100 -0.165916 hybrid +133_1-7 Q0 MARCO_30_194675946-1 1 0.500000 hybrid +133_1-7 Q0 MARCO_30_365649674-13 2 0.366532 hybrid +133_1-7 Q0 MARCO_38_288045906-1 3 0.316183 hybrid +133_1-7 Q0 MARCO_29_1662389944-7 4 0.297869 hybrid +133_1-7 Q0 MARCO_11_81276089-9 5 0.294596 hybrid +133_1-7 Q0 MARCO_49_221130362-1 6 0.288197 hybrid +133_1-7 Q0 MARCO_30_311425679-4 7 0.261134 hybrid +133_1-7 Q0 MARCO_22_273153026-11 8 0.253897 hybrid +133_1-7 Q0 MARCO_29_1662389944-1 9 0.215422 hybrid +133_1-7 Q0 MARCO_41_2088263834-4 10 0.198701 hybrid +133_1-7 Q0 MARCO_48_1729636742-2 11 0.165366 hybrid +133_1-7 Q0 MARCO_57_2028275346-7 12 0.141660 hybrid +133_1-7 Q0 MARCO_52_1537871369-2 13 0.114933 hybrid +133_1-7 Q0 MARCO_13_1539133723-5 14 0.085080 hybrid +133_1-7 Q0 MARCO_09_647077943-48 15 0.080884 hybrid +133_1-7 Q0 MARCO_40_786620953-23 16 0.077590 hybrid +133_1-7 Q0 MARCO_47_408408009-1 17 0.076898 hybrid +133_1-7 Q0 MARCO_19_1900621734-27 18 0.076541 hybrid +133_1-7 Q0 MARCO_20_1648644072-26 19 0.065423 hybrid +133_1-7 Q0 MARCO_42_759114754-5 20 0.065150 hybrid +133_1-7 Q0 MARCO_29_1662490418-1 21 0.061059 hybrid +133_1-7 Q0 MARCO_31_815766870-5 22 0.059611 hybrid +133_1-7 Q0 MARCO_46_175198216-3 23 0.050800 hybrid +133_1-7 Q0 MARCO_15_1395353461-1 24 0.046814 hybrid +133_1-7 Q0 MARCO_19_2191011684-7 25 0.032486 hybrid +133_1-7 Q0 MARCO_46_175198216-14 26 0.029381 hybrid +133_1-7 Q0 MARCO_24_1073942976-23 27 0.027703 hybrid +133_1-7 Q0 MARCO_55_797456254-4 28 0.027472 hybrid +133_1-7 Q0 MARCO_12_1463327439-1 29 0.025815 hybrid +133_1-7 Q0 MARCO_38_637791013-1 30 0.024052 hybrid +133_1-7 Q0 MARCO_53_825816512-17 31 0.021640 hybrid +133_1-7 Q0 MARCO_29_1662447311-4 32 -0.001353 hybrid +133_1-7 Q0 MARCO_54_1782910208-1 33 -0.022479 hybrid +133_1-7 Q0 MARCO_28_334658990-2 34 -0.026318 hybrid +133_1-7 Q0 MARCO_22_285633306-2 35 -0.026423 hybrid +133_1-7 Q0 MARCO_58_106157570-10 36 -0.044549 hybrid +133_1-7 Q0 MARCO_54_1782403778-1 37 -0.048682 hybrid +133_1-7 Q0 MARCO_13_864543874-3 38 -0.048891 hybrid +133_1-7 Q0 MARCO_13_864543874-4 39 -0.048891 hybrid +133_1-7 Q0 MARCO_03_1667620678-1 40 -0.050800 hybrid +133_1-7 Q0 MARCO_56_267758959-9 41 -0.050863 hybrid +133_1-7 Q0 MARCO_42_692190066-2 42 -0.053192 hybrid +133_1-7 Q0 MARCO_25_1159362584-1 43 -0.054556 hybrid +133_1-7 Q0 MARCO_54_1782745429-2 44 -0.056863 hybrid +133_1-7 Q0 MARCO_12_1181119615-18 45 -0.057555 hybrid +133_1-7 Q0 MARCO_42_759114754-1 46 -0.059234 hybrid +133_1-7 Q0 MARCO_03_265491787-1 47 -0.059297 hybrid +133_1-7 Q0 MARCO_23_1183668531-2 48 -0.059318 hybrid +133_1-7 Q0 MARCO_42_1159003249-11 49 -0.062423 hybrid +133_1-7 Q0 MARCO_49_221130362-2 50 -0.062507 hybrid +133_1-7 Q0 MARCO_13_1133330228-1 51 -0.067877 hybrid +133_1-7 Q0 MARCO_24_1145916854-23 52 -0.071989 hybrid +133_1-7 Q0 MARCO_40_1307901113-3 53 -0.073751 hybrid +133_1-7 Q0 MARCO_33_1297408408-32 54 -0.075576 hybrid +133_1-7 Q0 MARCO_41_2111464089-30 55 -0.082709 hybrid +133_1-7 Q0 MARCO_48_1734675127-1 56 -0.084975 hybrid +133_1-7 Q0 MARCO_11_868542575-12 57 -0.090325 hybrid +133_1-7 Q0 MARCO_29_1662490418-5 58 -0.090618 hybrid +133_1-7 Q0 MARCO_33_1297408408-27 59 -0.093157 hybrid +133_1-7 Q0 MARCO_20_17312957-4 60 -0.094457 hybrid +133_1-7 Q0 MARCO_55_740747609-2 61 -0.094520 hybrid +133_1-7 Q0 MARCO_53_846314335-1 62 -0.099136 hybrid +133_1-7 Q0 MARCO_36_20195065-10 63 -0.100017 hybrid +133_1-7 Q0 MARCO_40_144046522-3 64 -0.101905 hybrid +133_1-7 Q0 MARCO_53_675339329-1 65 -0.102094 hybrid +133_1-7 Q0 MARCO_35_420901718-3 66 -0.104968 hybrid +133_1-7 Q0 MARCO_55_741358650-2 67 -0.104989 hybrid +133_1-7 Q0 MARCO_13_1539133723-1 68 -0.109625 hybrid +133_1-7 Q0 MARCO_33_1299873969-22 69 -0.110024 hybrid +133_1-7 Q0 MARCO_42_1809014251-2 70 -0.111513 hybrid +133_1-7 Q0 MARCO_30_128614145-1 71 -0.114954 hybrid +133_1-7 Q0 MARCO_48_1729636742-4 72 -0.116569 hybrid +133_1-7 Q0 MARCO_37_1153130083-13 73 -0.117178 hybrid +133_1-7 Q0 MARCO_15_1454184932-6 74 -0.120282 hybrid +133_1-7 Q0 MARCO_27_1059194514-8 75 -0.124122 hybrid +133_1-7 Q0 MARCO_14_1218298824-2 76 -0.129345 hybrid +133_1-7 Q0 MARCO_12_1463063337-4 77 -0.136394 hybrid +133_1-7 Q0 MARCO_40_689554317-3 78 -0.137191 hybrid +133_1-7 Q0 MARCO_13_1539133723-8 79 -0.138408 hybrid +133_1-7 Q0 MARCO_03_329321343-20 80 -0.139877 hybrid +133_1-7 Q0 MARCO_39_329314694-1 81 -0.140695 hybrid +133_1-7 Q0 MARCO_12_1463974930-4 82 -0.143758 hybrid +133_1-7 Q0 MARCO_52_381733676-19 83 -0.145772 hybrid +133_1-7 Q0 MARCO_50_1192854822-53 84 -0.151079 hybrid +133_1-7 Q0 MARCO_53_323330022-8 85 -0.152065 hybrid +133_1-7 Q0 MARCO_37_172279294-4 86 -0.154226 hybrid +133_1-7 Q0 MARCO_49_221130362-6 87 -0.155464 hybrid +133_1-7 Q0 MARCO_58_106157570-5 88 -0.162072 hybrid +133_1-7 Q0 MARCO_45_1173568251-3 89 -0.162240 hybrid +133_1-7 Q0 MARCO_31_816772864-6 90 -0.162555 hybrid +133_1-7 Q0 MARCO_49_1103091717-1 91 -0.162597 hybrid +133_1-7 Q0 MARCO_31_820034711-7 92 -0.162786 hybrid +133_1-7 Q0 MARCO_03_1681754731-3 93 -0.164380 hybrid +133_1-7 Q0 MARCO_31_1258453739-3 94 -0.165009 hybrid +133_1-7 Q0 MARCO_51_772241605-1 95 -0.165114 hybrid +133_1-7 Q0 MARCO_55_649919401-3 96 -0.166394 hybrid +133_1-7 Q0 MARCO_29_1662447311-1 97 -0.167821 hybrid +133_1-7 Q0 MARCO_08_272729083-5 98 -0.168135 hybrid +133_1-7 Q0 MARCO_15_1447963769-7 99 -0.168912 hybrid +133_1-7 Q0 MARCO_12_1181119615-4 100 -0.169646 hybrid +133_2-1 Q0 MARCO_47_127998938-1 1 0.500000 hybrid +133_2-1 Q0 MARCO_03_673301350-3 2 0.480196 hybrid +133_2-1 Q0 MARCO_24_558574702-9 3 0.318160 hybrid +133_2-1 Q0 MARCO_11_1449148621-23 4 0.306457 hybrid +133_2-1 Q0 MARCO_09_135812463-21 5 0.291890 hybrid +133_2-1 Q0 MARCO_58_846320297-1 6 0.271390 hybrid +133_2-1 Q0 MARCO_07_1128567916-3 7 0.266439 hybrid +133_2-1 Q0 MARCO_47_678340779-1 8 0.229040 hybrid +133_2-1 Q0 MARCO_33_1457053052-1 9 0.202075 hybrid +133_2-1 Q0 MARCO_33_1133729864-1 10 0.198965 hybrid +133_2-1 Q0 MARCO_03_909259324-1 11 0.194177 hybrid +133_2-1 Q0 MARCO_55_336556596-2 12 0.178710 hybrid +133_2-1 Q0 MARCO_21_211126644-1 13 0.174537 hybrid +133_2-1 Q0 MARCO_55_164773022-6 14 0.164062 hybrid +133_2-1 Q0 MARCO_21_1261023393-7 15 0.145485 hybrid +133_2-1 Q0 MARCO_47_128807292-1 16 0.144707 hybrid +133_2-1 Q0 MARCO_32_634315059-23 17 0.143930 hybrid +133_2-1 Q0 MARCO_29_563852884-19 18 0.133168 hybrid +133_2-1 Q0 MARCO_47_128448881-2 19 0.127072 hybrid +133_2-1 Q0 MARCO_24_546765656-1 20 0.122243 hybrid +133_2-1 Q0 MARCO_45_1643543469-2 21 0.121957 hybrid +133_2-1 Q0 MARCO_51_480796629-1 22 0.119911 hybrid +133_2-1 Q0 MARCO_21_281560079-2 23 0.111686 hybrid +133_2-1 Q0 MARCO_06_1696189649-2 24 0.110663 hybrid +133_2-1 Q0 MARCO_31_780433059-17 25 0.104116 hybrid +133_2-1 Q0 MARCO_27_629831071-1 26 0.092905 hybrid +133_2-1 Q0 MARCO_07_551672159-1 27 0.089017 hybrid +133_2-1 Q0 MARCO_51_869119027-12 28 0.085703 hybrid +133_2-1 Q0 MARCO_58_237859030-22 29 0.080056 hybrid +133_2-1 Q0 MARCO_23_1608525395-1 30 0.075678 hybrid +133_2-1 Q0 MARCO_12_873808971-11 31 0.069254 hybrid +133_2-1 Q0 MARCO_26_67587950-56 32 0.059884 hybrid +133_2-1 Q0 MARCO_33_1124428677-2 33 0.059229 hybrid +133_2-1 Q0 MARCO_03_425357970-1 34 0.058697 hybrid +133_2-1 Q0 MARCO_01_1233002918-204 35 0.058206 hybrid +133_2-1 Q0 MARCO_06_1198450377-204 36 0.058206 hybrid +133_2-1 Q0 MARCO_55_164705146-7 37 0.058083 hybrid +133_2-1 Q0 MARCO_58_1546792377-3 38 0.045235 hybrid +133_2-1 Q0 MARCO_33_1121697736-1 39 0.044785 hybrid +133_2-1 Q0 MARCO_07_1130934713-2 40 0.039998 hybrid +133_2-1 Q0 MARCO_24_1319827981-5 41 0.036356 hybrid +133_2-1 Q0 MARCO_33_1137419020-4 42 0.021584 hybrid +133_2-1 Q0 MARCO_39_1146890282-1 43 0.019293 hybrid +133_2-1 Q0 MARCO_21_1023307685-9 44 0.011887 hybrid +133_2-1 Q0 MARCO_52_940507284-2 45 0.011069 hybrid +133_2-1 Q0 MARCO_11_1508310377-1 46 0.003417 hybrid +133_2-1 Q0 MARCO_42_1137042334-4 47 0.003294 hybrid +133_2-1 Q0 MARCO_25_1840806663-1 48 0.002803 hybrid +133_2-1 Q0 MARCO_25_1841140490-1 49 0.001371 hybrid +133_2-1 Q0 MARCO_06_40626711-3 50 -0.000143 hybrid +133_2-1 Q0 MARCO_02_431061650-1 51 -0.003662 hybrid +133_2-1 Q0 MARCO_26_274691810-3 52 -0.011314 hybrid +133_2-1 Q0 MARCO_52_820345961-4 53 -0.012460 hybrid +133_2-1 Q0 MARCO_21_1435506521-3 54 -0.016224 hybrid +133_2-1 Q0 MARCO_07_1593022814-1 55 -0.019375 hybrid +133_2-1 Q0 MARCO_12_259477125-3 56 -0.020889 hybrid +133_2-1 Q0 MARCO_36_636554512-1 57 -0.025799 hybrid +133_2-1 Q0 MARCO_35_1745826491-1 58 -0.030914 hybrid +133_2-1 Q0 MARCO_23_652592045-5 59 -0.032182 hybrid +133_2-1 Q0 MARCO_40_1257245585-7 60 -0.032673 hybrid +133_2-1 Q0 MARCO_58_1438947113-11 61 -0.034964 hybrid +133_2-1 Q0 MARCO_41_1528547480-15 62 -0.035947 hybrid +133_2-1 Q0 MARCO_30_1253873494-4 63 -0.037952 hybrid +133_2-1 Q0 MARCO_06_757837672-20 64 -0.042044 hybrid +133_2-1 Q0 MARCO_20_723487731-42 65 -0.046790 hybrid +133_2-1 Q0 MARCO_43_1679487167-7 66 -0.047158 hybrid +133_2-1 Q0 MARCO_43_288859278-57 67 -0.048427 hybrid +133_2-1 Q0 MARCO_58_1056403093-26 68 -0.053705 hybrid +133_2-1 Q0 MARCO_13_1542148671-2 69 -0.060129 hybrid +133_2-1 Q0 MARCO_39_781387339-1 70 -0.061848 hybrid +133_2-1 Q0 MARCO_47_601315810-2 71 -0.069172 hybrid +133_2-1 Q0 MARCO_24_1523371828-2 72 -0.069377 hybrid +133_2-1 Q0 MARCO_04_1375520563-13 73 -0.070236 hybrid +133_2-1 Q0 MARCO_43_1541928265-2 74 -0.072036 hybrid +133_2-1 Q0 MARCO_04_1100614363-4 75 -0.073101 hybrid +133_2-1 Q0 MARCO_25_1848332974-1 76 -0.074164 hybrid +133_2-1 Q0 MARCO_50_517705338-8 77 -0.075842 hybrid +133_2-1 Q0 MARCO_39_913307486-3 78 -0.079197 hybrid +133_2-1 Q0 MARCO_15_807700296-4 79 -0.079197 hybrid +133_2-1 Q0 MARCO_23_1603710463-1 80 -0.080834 hybrid +133_2-1 Q0 MARCO_10_772690893-14 81 -0.081325 hybrid +133_2-1 Q0 MARCO_25_205138485-2 82 -0.082020 hybrid +133_2-1 Q0 MARCO_42_1501739453-4 83 -0.084476 hybrid +133_2-1 Q0 MARCO_51_1492806834-1 84 -0.087708 hybrid +133_2-1 Q0 MARCO_01_1428429050-44 85 -0.091759 hybrid +133_2-1 Q0 MARCO_53_307621465-1 86 -0.094705 hybrid +133_2-1 Q0 MARCO_30_1520135426-8 87 -0.095278 hybrid +133_2-1 Q0 MARCO_28_1186917936-1 88 -0.095524 hybrid +133_2-1 Q0 MARCO_07_1127800279-2 89 -0.102071 hybrid +133_2-1 Q0 MARCO_41_963865256-9 90 -0.102725 hybrid +133_2-1 Q0 MARCO_20_1057352222-1 91 -0.104157 hybrid +133_2-1 Q0 MARCO_05_1698021141-2 92 -0.106694 hybrid +133_2-1 Q0 MARCO_42_1512997326-1 93 -0.111032 hybrid +133_2-1 Q0 MARCO_40_59174509-7 94 -0.112464 hybrid +133_2-1 Q0 MARCO_53_1127835430-13 95 -0.112668 hybrid +133_2-1 Q0 MARCO_38_1447085152-1 96 -0.113773 hybrid +133_2-1 Q0 MARCO_41_1076151956-17 97 -0.113814 hybrid +133_2-1 Q0 MARCO_01_2010719762-3 98 -0.114632 hybrid +133_2-1 Q0 MARCO_10_1579323818-2 99 -0.114755 hybrid +133_2-1 Q0 MARCO_33_100330550-10 100 -0.115901 hybrid +133_2-3 Q0 MARCO_57_1553235055-1 1 0.500000 hybrid +133_2-3 Q0 MARCO_09_485993912-2 2 0.465768 hybrid +133_2-3 Q0 MARCO_29_1276940166-1 3 0.428803 hybrid +133_2-3 Q0 MARCO_04_686130362-5 4 0.425027 hybrid +133_2-3 Q0 MARCO_24_1842027267-1 5 0.369333 hybrid +133_2-3 Q0 MARCO_38_286379417-1 6 0.365026 hybrid +133_2-3 Q0 MARCO_24_620724330-2 7 0.361231 hybrid +133_2-3 Q0 MARCO_32_1165648680-9 8 0.360377 hybrid +133_2-3 Q0 MARCO_52_923089496-5 9 0.353546 hybrid +133_2-3 Q0 MARCO_34_78680335-1 10 0.348384 hybrid +133_2-3 Q0 MARCO_41_932084877-1 11 0.347967 hybrid +133_2-3 Q0 MARCO_58_854616617-1 12 0.346866 hybrid +133_2-3 Q0 MARCO_22_116980262-1 13 0.335025 hybrid +133_2-3 Q0 MARCO_22_851655506-1 14 0.327435 hybrid +133_2-3 Q0 MARCO_31_1156087527-5 15 0.308289 hybrid +133_2-3 Q0 MARCO_53_606754970-4 16 0.305196 hybrid +133_2-3 Q0 MARCO_25_783559615-4 17 0.304038 hybrid +133_2-3 Q0 MARCO_28_714818554-1 18 0.294911 hybrid +133_2-3 Q0 MARCO_32_1165648680-1 19 0.282406 hybrid +133_2-3 Q0 MARCO_58_846308228-2 20 0.280337 hybrid +133_2-3 Q0 MARCO_35_501435311-1 21 0.276580 hybrid +133_2-3 Q0 MARCO_38_1577666858-1 22 0.275783 hybrid +133_2-3 Q0 MARCO_30_140057120-1 23 0.272463 hybrid +133_2-3 Q0 MARCO_58_50181324-21 24 0.271267 hybrid +133_2-3 Q0 MARCO_28_265565874-1 25 0.270736 hybrid +133_2-3 Q0 MARCO_28_714818554-8 26 0.269958 hybrid +133_2-3 Q0 MARCO_03_935534459-1 27 0.261457 hybrid +133_2-3 Q0 MARCO_49_1392374775-4 28 0.248193 hybrid +133_2-3 Q0 MARCO_52_631840442-2 29 0.241551 hybrid +133_2-3 Q0 MARCO_42_729601197-1 30 0.240052 hybrid +133_2-3 Q0 MARCO_03_935534459-2 31 0.218116 hybrid +133_2-3 Q0 MARCO_24_1219722929-3 32 0.208420 hybrid +133_2-3 Q0 MARCO_53_613269735-1 33 0.205706 hybrid +133_2-3 Q0 MARCO_31_1320467209-1 34 0.197034 hybrid +133_2-3 Q0 MARCO_49_1392374775-1 35 0.196711 hybrid +133_2-3 Q0 MARCO_56_159920906-1 36 0.192784 hybrid +133_2-3 Q0 MARCO_49_1010572109-1 37 0.192632 hybrid +133_2-3 Q0 MARCO_23_1617440799-5 38 0.187641 hybrid +133_2-3 Q0 MARCO_00_397211596-1 39 0.187508 hybrid +133_2-3 Q0 MARCO_03_404055170-13 40 0.184643 hybrid +133_2-3 Q0 MARCO_42_1710298984-1 41 0.180981 hybrid +133_2-3 Q0 MARCO_24_1538440933-1 42 0.180905 hybrid +133_2-3 Q0 MARCO_40_1521346882-1 43 0.178742 hybrid +133_2-3 Q0 MARCO_24_1841901780-1 44 0.175440 hybrid +133_2-3 Q0 MARCO_58_675353474-28 45 0.171360 hybrid +133_2-3 Q0 MARCO_41_2136142806-1 46 0.163789 hybrid +133_2-3 Q0 MARCO_58_163346612-19 47 0.159424 hybrid +133_2-3 Q0 MARCO_53_575071251-1 48 0.156331 hybrid +133_2-3 Q0 MARCO_30_607381839-1 49 0.150999 hybrid +133_2-3 Q0 MARCO_29_1520458058-2 50 0.148058 hybrid +133_2-3 Q0 MARCO_52_631840442-3 51 0.145857 hybrid +133_2-3 Q0 MARCO_15_1920642478-3 52 0.144187 hybrid +133_2-3 Q0 MARCO_21_856912396-2 53 0.143504 hybrid +133_2-3 Q0 MARCO_21_1039299162-1 54 0.138703 hybrid +133_2-3 Q0 MARCO_49_1359903726-4 55 0.138646 hybrid +133_2-3 Q0 MARCO_27_1184583210-5 56 0.138589 hybrid +133_2-3 Q0 MARCO_31_274484371-13 57 0.138323 hybrid +133_2-3 Q0 MARCO_21_1040095444-1 58 0.134965 hybrid +133_2-3 Q0 MARCO_23_1183830167-5 59 0.132232 hybrid +133_2-3 Q0 MARCO_41_2136142806-3 60 0.131853 hybrid +133_2-3 Q0 MARCO_49_1359903726-13 61 0.129025 hybrid +133_2-3 Q0 MARCO_45_1223914346-3 62 0.127526 hybrid +133_2-3 Q0 MARCO_26_836952161-1 63 0.122422 hybrid +133_2-3 Q0 MARCO_23_1183648684-1 64 0.119765 hybrid +133_2-3 Q0 MARCO_02_616080436-6 65 0.117393 hybrid +133_2-3 Q0 MARCO_49_1392374775-2 66 0.116463 hybrid +133_2-3 Q0 MARCO_23_1360589767-3 67 0.116387 hybrid +133_2-3 Q0 MARCO_15_1920649376-1 68 0.112744 hybrid +133_2-3 Q0 MARCO_49_1359903726-6 69 0.107924 hybrid +133_2-3 Q0 MARCO_12_1183551060-3 70 0.107678 hybrid +133_2-3 Q0 MARCO_15_1920649376-2 71 0.107374 hybrid +133_2-3 Q0 MARCO_45_639747393-1 72 0.105363 hybrid +133_2-3 Q0 MARCO_28_265565874-2 73 0.104831 hybrid +133_2-3 Q0 MARCO_02_8956460-4 74 0.102744 hybrid +133_2-3 Q0 MARCO_23_1617842787-7 75 0.098000 hybrid +133_2-3 Q0 MARCO_30_500652419-3 76 0.096406 hybrid +133_2-3 Q0 MARCO_51_1495009927-1 77 0.095818 hybrid +133_2-3 Q0 MARCO_30_500652419-1 78 0.094167 hybrid +133_2-3 Q0 MARCO_13_166215815-7 79 0.093958 hybrid +133_2-3 Q0 MARCO_49_1369443200-10 80 0.093313 hybrid +133_2-3 Q0 MARCO_38_1707564475-19 81 0.091795 hybrid +133_2-3 Q0 MARCO_24_620724330-9 82 0.091738 hybrid +133_2-3 Q0 MARCO_08_801089296-4 83 0.090979 hybrid +133_2-3 Q0 MARCO_52_631840442-1 84 0.090429 hybrid +133_2-3 Q0 MARCO_45_1223914346-1 85 0.088892 hybrid +133_2-3 Q0 MARCO_04_1043910897-1 86 0.087772 hybrid +133_2-3 Q0 MARCO_23_1617308689-1 87 0.082744 hybrid +133_2-3 Q0 MARCO_53_598987969-1 88 0.080770 hybrid +133_2-3 Q0 MARCO_22_116945891-3 89 0.079461 hybrid +133_2-3 Q0 MARCO_45_803675808-4 90 0.079290 hybrid +133_2-3 Q0 MARCO_29_1276940166-6 91 0.078000 hybrid +133_2-3 Q0 MARCO_40_1521346882-2 92 0.073028 hybrid +133_2-3 Q0 MARCO_38_286379417-3 93 0.072497 hybrid +133_2-3 Q0 MARCO_50_955239873-16 94 0.069764 hybrid +133_2-3 Q0 MARCO_42_1710298984-10 95 0.066728 hybrid +133_2-3 Q0 MARCO_34_78680335-4 96 0.065362 hybrid +133_2-3 Q0 MARCO_47_589130452-1 97 0.064109 hybrid +133_2-3 Q0 MARCO_28_714818554-7 98 0.063787 hybrid +133_2-3 Q0 MARCO_22_116980262-2 99 0.062800 hybrid +133_2-3 Q0 MARCO_01_2110443113-1 100 0.062648 hybrid +133_3-2 Q0 MARCO_13_429571872-5 1 0.500000 hybrid +133_3-2 Q0 MARCO_29_1587501579-1 2 0.378062 hybrid +133_3-2 Q0 MARCO_22_710747250-8 3 0.270897 hybrid +133_3-2 Q0 MARCO_38_1465377746-1 4 0.253396 hybrid +133_3-2 Q0 MARCO_42_258270495-8 5 0.231520 hybrid +133_3-2 Q0 MARCO_50_2836467817-4 6 0.190253 hybrid +133_3-2 Q0 MARCO_28_646688736-1 7 0.186121 hybrid +133_3-2 Q0 MARCO_31_820609068-4 8 0.172158 hybrid +133_3-2 Q0 MARCO_28_364409134-5 9 0.149391 hybrid +133_3-2 Q0 MARCO_48_1533246224-5 10 0.145151 hybrid +133_3-2 Q0 MARCO_11_233204509-2 11 0.136617 hybrid +133_3-2 Q0 MARCO_42_1090437973-5 12 0.126192 hybrid +133_3-2 Q0 MARCO_21_942199222-2 13 0.123032 hybrid +133_3-2 Q0 MARCO_30_1786500933-4 14 0.122033 hybrid +133_3-2 Q0 MARCO_58_1131456744-1 15 0.108070 hybrid +133_3-2 Q0 MARCO_50_254729862-17 16 0.106098 hybrid +133_3-2 Q0 MARCO_43_976875257-5 17 0.103425 hybrid +133_3-2 Q0 MARCO_26_274603977-1 18 0.099049 hybrid +133_3-2 Q0 MARCO_41_2091351272-2 19 0.097240 hybrid +133_3-2 Q0 MARCO_39_958124027-1 20 0.096835 hybrid +133_3-2 Q0 MARCO_33_1202214293-14 21 0.093540 hybrid +133_3-2 Q0 MARCO_29_1370569511-5 22 0.092676 hybrid +133_3-2 Q0 MARCO_49_340350101-7 23 0.088057 hybrid +133_3-2 Q0 MARCO_47_541826574-12 24 0.076525 hybrid +133_3-2 Q0 MARCO_13_419575271-5 25 0.073932 hybrid +133_3-2 Q0 MARCO_41_1098695700-29 26 0.070800 hybrid +133_3-2 Q0 MARCO_31_816944903-2 27 0.070071 hybrid +133_3-2 Q0 MARCO_14_229813431-6 28 0.069557 hybrid +133_3-2 Q0 MARCO_33_1204802915-15 29 0.068774 hybrid +133_3-2 Q0 MARCO_28_1648046897-5 30 0.064885 hybrid +133_3-2 Q0 MARCO_51_542250465-10 31 0.063859 hybrid +133_3-2 Q0 MARCO_42_258270495-10 32 0.063130 hybrid +133_3-2 Q0 MARCO_31_807253227-8 33 0.048519 hybrid +133_3-2 Q0 MARCO_37_191894298-2 34 0.043333 hybrid +133_3-2 Q0 MARCO_36_1287798402-9 35 0.043144 hybrid +133_3-2 Q0 MARCO_56_84164625-8 36 0.031504 hybrid +133_3-2 Q0 MARCO_23_961678317-19 37 0.029452 hybrid +133_3-2 Q0 MARCO_27_1183858223-1 38 0.027102 hybrid +133_3-2 Q0 MARCO_23_1415989434-7 39 0.021592 hybrid +133_3-2 Q0 MARCO_04_777443159-31 40 0.018514 hybrid +133_3-2 Q0 MARCO_29_165314127-9 41 0.014921 hybrid +133_3-2 Q0 MARCO_47_97926714-2 42 0.011708 hybrid +133_3-2 Q0 MARCO_41_1847614301-2 43 0.008737 hybrid +133_3-2 Q0 MARCO_42_1025596866-8 44 0.007548 hybrid +133_3-2 Q0 MARCO_47_97926714-6 45 -0.004227 hybrid +133_3-2 Q0 MARCO_46_1227487864-8 46 -0.005874 hybrid +133_3-2 Q0 MARCO_42_259937908-10 47 -0.009655 hybrid +133_3-2 Q0 MARCO_37_191257609-2 48 -0.012356 hybrid +133_3-2 Q0 MARCO_31_422308754-14 49 -0.012626 hybrid +133_3-2 Q0 MARCO_47_97926714-3 50 -0.014354 hybrid +133_3-2 Q0 MARCO_06_1354095990-10 51 -0.014435 hybrid +133_3-2 Q0 MARCO_31_422308754-5 52 -0.022997 hybrid +133_3-2 Q0 MARCO_31_1263217589-1 53 -0.030721 hybrid +133_3-2 Q0 MARCO_13_689898265-3 54 -0.032395 hybrid +133_3-2 Q0 MARCO_12_1161299004-3 55 -0.035312 hybrid +133_3-2 Q0 MARCO_29_571816899-10 56 -0.038094 hybrid +133_3-2 Q0 MARCO_54_244563252-12 57 -0.038985 hybrid +133_3-2 Q0 MARCO_25_1375252120-4 58 -0.041416 hybrid +133_3-2 Q0 MARCO_41_1166175156-5 59 -0.042928 hybrid +133_3-2 Q0 MARCO_24_1307660-4 60 -0.044765 hybrid +133_3-2 Q0 MARCO_30_64196823-1 61 -0.045251 hybrid +133_3-2 Q0 MARCO_12_1861739069-5 62 -0.045575 hybrid +133_3-2 Q0 MARCO_32_1556944663-28 63 -0.048789 hybrid +133_3-2 Q0 MARCO_28_735418486-7 64 -0.050436 hybrid +133_3-2 Q0 MARCO_48_1274664692-1 65 -0.056108 hybrid +133_3-2 Q0 MARCO_28_735418486-8 66 -0.063211 hybrid +133_3-2 Q0 MARCO_19_1452105862-20 67 -0.064264 hybrid +133_3-2 Q0 MARCO_35_784708445-11 68 -0.065182 hybrid +133_3-2 Q0 MARCO_00_675113896-14 69 -0.068018 hybrid +133_3-2 Q0 MARCO_42_258270495-3 70 -0.068396 hybrid +133_3-2 Q0 MARCO_13_1140415336-5 71 -0.068585 hybrid +133_3-2 Q0 MARCO_35_956226044-3 72 -0.069638 hybrid +133_3-2 Q0 MARCO_31_1264792948-2 73 -0.072771 hybrid +133_3-2 Q0 MARCO_31_1263907534-2 74 -0.074392 hybrid +133_3-2 Q0 MARCO_33_1204802915-10 75 -0.074824 hybrid +133_3-2 Q0 MARCO_13_686500395-5 76 -0.075823 hybrid +133_3-2 Q0 MARCO_37_190733411-9 77 -0.083169 hybrid +133_3-2 Q0 MARCO_50_620478106-2 78 -0.083574 hybrid +133_3-2 Q0 MARCO_36_1797954746-1 79 -0.087031 hybrid +133_3-2 Q0 MARCO_06_1719144561-7 80 -0.089543 hybrid +133_3-2 Q0 MARCO_42_258270495-16 81 -0.090947 hybrid +133_3-2 Q0 MARCO_19_2327664387-6 82 -0.092108 hybrid +133_3-2 Q0 MARCO_00_675113896-21 83 -0.093621 hybrid +133_3-2 Q0 MARCO_09_497569108-3 84 -0.102560 hybrid +133_3-2 Q0 MARCO_42_1090437973-1 85 -0.103451 hybrid +133_3-2 Q0 MARCO_51_188397136-2 86 -0.104505 hybrid +133_3-2 Q0 MARCO_30_1786500933-1 87 -0.108853 hybrid +133_3-2 Q0 MARCO_35_391521667-6 88 -0.110716 hybrid +133_3-2 Q0 MARCO_55_202222818-1 89 -0.112661 hybrid +133_3-2 Q0 MARCO_32_952682869-5 90 -0.113822 hybrid +133_3-2 Q0 MARCO_02_831399706-3 91 -0.113903 hybrid +133_3-2 Q0 MARCO_45_612205528-13 92 -0.116415 hybrid +133_3-2 Q0 MARCO_49_963831900-23 93 -0.117765 hybrid +133_3-2 Q0 MARCO_59_244964076-2 94 -0.119629 hybrid +133_3-2 Q0 MARCO_47_568692186-3 95 -0.119899 hybrid +133_3-2 Q0 MARCO_36_1802338366-3 96 -0.120385 hybrid +133_3-2 Q0 MARCO_12_783299759-2 97 -0.121843 hybrid +133_3-2 Q0 MARCO_31_6162820-5 98 -0.122006 hybrid +133_3-2 Q0 MARCO_36_1692134046-16 99 -0.125084 hybrid +133_3-2 Q0 MARCO_15_801969228-9 100 -0.128082 hybrid +133_3-4 Q0 MARCO_09_647358937-8 1 0.500000 hybrid +133_3-4 Q0 MARCO_33_1249167428-3 2 0.462448 hybrid +133_3-4 Q0 MARCO_25_262671939-2 3 0.401916 hybrid +133_3-4 Q0 MARCO_47_521703086-1 4 0.334304 hybrid +133_3-4 Q0 MARCO_24_1861587724-1 5 0.313565 hybrid +133_3-4 Q0 MARCO_12_1183093643-2 6 0.289618 hybrid +133_3-4 Q0 MARCO_40_1422909687-32 7 0.200801 hybrid +133_3-4 Q0 MARCO_09_647348347-2 8 0.183988 hybrid +133_3-4 Q0 MARCO_40_1466793455-46 9 0.178539 hybrid +133_3-4 Q0 MARCO_09_647500476-2 10 0.159449 hybrid +133_3-4 Q0 MARCO_32_1308124451-15 11 0.158481 hybrid +133_3-4 Q0 MARCO_09_647422432-9 12 0.157405 hybrid +133_3-4 Q0 MARCO_43_383263971-3 13 0.151060 hybrid +133_3-4 Q0 MARCO_55_206603648-5 14 0.129533 hybrid +133_3-4 Q0 MARCO_20_445412957-3 15 0.103076 hybrid +133_3-4 Q0 MARCO_33_1249167428-5 16 0.092877 hybrid +133_3-4 Q0 MARCO_32_1476583679-9 17 0.048388 hybrid +133_3-4 Q0 MARCO_41_389190689-2 18 0.043458 hybrid +133_3-4 Q0 MARCO_32_1393588601-14 19 0.040232 hybrid +133_3-4 Q0 MARCO_22_533606299-4 20 0.038637 hybrid +133_3-4 Q0 MARCO_09_647486756-6 21 0.034998 hybrid +133_3-4 Q0 MARCO_41_2141321647-34 22 0.022164 hybrid +133_3-4 Q0 MARCO_52_1346393530-3 23 0.019314 hybrid +133_3-4 Q0 MARCO_09_647318725-3 24 0.011284 hybrid +133_3-4 Q0 MARCO_32_1598525218-11 25 0.009778 hybrid +133_3-4 Q0 MARCO_20_1410388206-4 26 0.008344 hybrid +133_3-4 Q0 MARCO_29_1528427220-1 27 0.006157 hybrid +133_3-4 Q0 MARCO_32_1491500570-7 28 0.006068 hybrid +133_3-4 Q0 MARCO_46_1244401254-1 29 0.001604 hybrid +133_3-4 Q0 MARCO_40_1488869611-50 30 -0.000045 hybrid +133_3-4 Q0 MARCO_09_647468143-3 31 -0.008846 hybrid +133_3-4 Q0 MARCO_49_111337307-2 32 -0.010244 hybrid +133_3-4 Q0 MARCO_50_245815671-3 33 -0.011248 hybrid +133_3-4 Q0 MARCO_48_63285570-2 34 -0.015102 hybrid +133_3-4 Q0 MARCO_35_242765430-9 35 -0.019869 hybrid +133_3-4 Q0 MARCO_58_68967561-3 36 -0.024010 hybrid +133_3-4 Q0 MARCO_40_1417697939-74 37 -0.024297 hybrid +133_3-4 Q0 MARCO_30_1600937428-2 38 -0.024817 hybrid +133_3-4 Q0 MARCO_14_1430151672-5 39 -0.029800 hybrid +133_3-4 Q0 MARCO_40_1443610107-67 40 -0.031628 hybrid +133_3-4 Q0 MARCO_40_1412356360-5 41 -0.034191 hybrid +133_3-4 Q0 MARCO_32_1376321448-12 42 -0.039479 hybrid +133_3-4 Q0 MARCO_09_647574508-3 43 -0.044175 hybrid +133_3-4 Q0 MARCO_40_1420789086-9 44 -0.046201 hybrid +133_3-4 Q0 MARCO_33_1163477676-2 45 -0.046936 hybrid +133_3-4 Q0 MARCO_09_647507223-4 46 -0.051381 hybrid +133_3-4 Q0 MARCO_09_647442524-5 47 -0.054625 hybrid +133_3-4 Q0 MARCO_09_647461262-3 48 -0.054626 hybrid +133_3-4 Q0 MARCO_09_647536750-4 49 -0.058659 hybrid +133_3-4 Q0 MARCO_09_647569303-3 50 -0.058659 hybrid +133_3-4 Q0 MARCO_13_947745675-11 51 -0.061975 hybrid +133_3-4 Q0 MARCO_09_647562261-4 52 -0.063875 hybrid +133_3-4 Q0 MARCO_44_354188337-1 53 -0.065273 hybrid +133_3-4 Q0 MARCO_54_475483157-8 54 -0.065936 hybrid +133_3-4 Q0 MARCO_40_1489056172-36 55 -0.067477 hybrid +133_3-4 Q0 MARCO_32_1506797268-10 56 -0.073106 hybrid +133_3-4 Q0 MARCO_01_685761764-1 57 -0.074540 hybrid +133_3-4 Q0 MARCO_43_164977078-1 58 -0.079093 hybrid +133_3-4 Q0 MARCO_44_338807215-3 59 -0.082194 hybrid +133_3-4 Q0 MARCO_41_544261583-1 60 -0.089937 hybrid +133_3-4 Q0 MARCO_40_1421620185-20 61 -0.094544 hybrid +133_3-4 Q0 MARCO_44_104603967-4 62 -0.095655 hybrid +133_3-4 Q0 MARCO_10_865816082-5 63 -0.100548 hybrid +133_3-4 Q0 MARCO_40_1422428000-19 64 -0.101445 hybrid +133_3-4 Q0 MARCO_47_521703086-2 65 -0.101642 hybrid +133_3-4 Q0 MARCO_30_324850487-14 66 -0.101642 hybrid +133_3-4 Q0 MARCO_24_1225244674-8 67 -0.101947 hybrid +133_3-4 Q0 MARCO_32_1393652991-13 68 -0.103381 hybrid +133_3-4 Q0 MARCO_25_262671939-1 69 -0.105209 hybrid +133_3-4 Q0 MARCO_36_1749715151-4 70 -0.105532 hybrid +133_3-4 Q0 MARCO_24_1222028986-8 71 -0.106177 hybrid +133_3-4 Q0 MARCO_44_338807215-1 72 -0.107234 hybrid +133_3-4 Q0 MARCO_32_1393609685-12 73 -0.108041 hybrid +133_3-4 Q0 MARCO_52_1346558059-27 74 -0.109367 hybrid +133_3-4 Q0 MARCO_48_63285570-9 75 -0.109816 hybrid +133_3-4 Q0 MARCO_54_1784076239-1 76 -0.109834 hybrid +133_3-4 Q0 MARCO_32_1393609685-16 77 -0.111662 hybrid +133_3-4 Q0 MARCO_30_1189950163-6 78 -0.113060 hybrid +133_3-4 Q0 MARCO_40_1521300842-3 79 -0.113060 hybrid +133_3-4 Q0 MARCO_09_647296300-14 80 -0.113598 hybrid +133_3-4 Q0 MARCO_32_1476583679-11 81 -0.113741 hybrid +133_3-4 Q0 MARCO_31_232392622-4 82 -0.114942 hybrid +133_3-4 Q0 MARCO_32_1514487227-8 83 -0.115964 hybrid +133_3-4 Q0 MARCO_40_1422841727-21 84 -0.116645 hybrid +133_3-4 Q0 MARCO_55_657652197-6 85 -0.124442 hybrid +133_3-4 Q0 MARCO_41_117772799-5 86 -0.130554 hybrid +133_3-4 Q0 MARCO_48_63285570-11 87 -0.131271 hybrid +133_3-4 Q0 MARCO_02_616080436-6 88 -0.133799 hybrid +133_3-4 Q0 MARCO_43_256909549-7 89 -0.134265 hybrid +133_3-4 Q0 MARCO_50_2619961568-4 90 -0.138029 hybrid +133_3-4 Q0 MARCO_40_1420643350-19 91 -0.140198 hybrid +133_3-4 Q0 MARCO_46_85033251-3 92 -0.140216 hybrid +133_3-4 Q0 MARCO_05_544638251-1 93 -0.140252 hybrid +133_3-4 Q0 MARCO_00_586953678-6 94 -0.142421 hybrid +133_3-4 Q0 MARCO_46_143990607-3 95 -0.142564 hybrid +133_3-4 Q0 MARCO_46_1244401254-3 96 -0.143837 hybrid +133_3-4 Q0 MARCO_32_1348121947-14 97 -0.145880 hybrid +133_3-4 Q0 MARCO_53_589486637-6 98 -0.145952 hybrid +133_3-4 Q0 MARCO_12_637774693-2 99 -0.146507 hybrid +133_3-4 Q0 MARCO_24_1222028986-3 100 -0.148210 hybrid +133_3-6 Q0 MARCO_54_1784076239-1 1 0.500000 hybrid +133_3-6 Q0 MARCO_38_614263928-4 2 0.474563 hybrid +133_3-6 Q0 MARCO_10_1112057649-17 3 0.399456 hybrid +133_3-6 Q0 MARCO_20_445412957-3 4 0.380701 hybrid +133_3-6 Q0 MARCO_12_1463113724-1 5 0.355390 hybrid +133_3-6 Q0 MARCO_05_1594891397-2 6 0.348241 hybrid +133_3-6 Q0 MARCO_12_1463113724-16 7 0.323001 hybrid +133_3-6 Q0 MARCO_20_445538889-4 8 0.321564 hybrid +133_3-6 Q0 MARCO_24_1074238301-4 9 0.310211 hybrid +133_3-6 Q0 MARCO_34_1308415921-4 10 0.305756 hybrid +133_3-6 Q0 MARCO_31_819013609-1 11 0.302989 hybrid +133_3-6 Q0 MARCO_52_1346393530-3 12 0.293073 hybrid +133_3-6 Q0 MARCO_31_14559616-9 13 0.284720 hybrid +133_3-6 Q0 MARCO_12_1463084501-2 14 0.276277 hybrid +133_3-6 Q0 MARCO_31_819013609-2 15 0.268049 hybrid +133_3-6 Q0 MARCO_12_1383302303-10 16 0.262247 hybrid +133_3-6 Q0 MARCO_23_1415106009-7 17 0.251630 hybrid +133_3-6 Q0 MARCO_03_212023070-12 18 0.228098 hybrid +133_3-6 Q0 MARCO_31_14559616-7 19 0.216044 hybrid +133_3-6 Q0 MARCO_45_1223837152-3 20 0.206289 hybrid +133_3-6 Q0 MARCO_41_2141321647-34 21 0.204798 hybrid +133_3-6 Q0 MARCO_58_105794544-8 22 0.200181 hybrid +133_3-6 Q0 MARCO_50_1330953809-3 23 0.195942 hybrid +133_3-6 Q0 MARCO_28_340191593-5 24 0.192762 hybrid +133_3-6 Q0 MARCO_29_1528427220-1 25 0.185667 hybrid +133_3-6 Q0 MARCO_41_2078271967-5 26 0.185271 hybrid +133_3-6 Q0 MARCO_23_1638240206-4 27 0.170307 hybrid +133_3-6 Q0 MARCO_58_846384298-14 28 0.160715 hybrid +133_3-6 Q0 MARCO_05_874163613-1 29 0.142786 hybrid +133_3-6 Q0 MARCO_53_589486637-6 30 0.135709 hybrid +133_3-6 Q0 MARCO_06_1456087722-3 31 0.125919 hybrid +133_3-6 Q0 MARCO_49_1392740537-23 32 0.125829 hybrid +133_3-6 Q0 MARCO_38_615042540-4 33 0.121032 hybrid +133_3-6 Q0 MARCO_12_1463084501-6 34 0.120547 hybrid +133_3-6 Q0 MARCO_56_1510139232-2 35 0.111781 hybrid +133_3-6 Q0 MARCO_33_1296663392-6 36 0.109751 hybrid +133_3-6 Q0 MARCO_57_1519426546-3 37 0.101416 hybrid +133_3-6 Q0 MARCO_34_1308471758-3 38 0.098649 hybrid +133_3-6 Q0 MARCO_03_150328208-20 39 0.090601 hybrid +133_3-6 Q0 MARCO_54_178224608-7 40 0.090296 hybrid +133_3-6 Q0 MARCO_32_1369107949-6 41 0.087853 hybrid +133_3-6 Q0 MARCO_32_1567412894-7 42 0.086739 hybrid +133_3-6 Q0 MARCO_48_33132735-2 43 0.083595 hybrid +133_3-6 Q0 MARCO_33_1249167428-3 44 0.082895 hybrid +133_3-6 Q0 MARCO_43_164977078-1 45 0.082284 hybrid +133_3-6 Q0 MARCO_33_500264550-1 46 0.073913 hybrid +133_3-6 Q0 MARCO_09_820490219-10 47 0.073625 hybrid +133_3-6 Q0 MARCO_32_1348121947-14 48 0.068667 hybrid +133_3-6 Q0 MARCO_48_1133824500-3 49 0.066979 hybrid +133_3-6 Q0 MARCO_49_111337307-2 50 0.066583 hybrid +133_3-6 Q0 MARCO_21_822357894-6 51 0.062020 hybrid +133_3-6 Q0 MARCO_48_33132735-1 52 0.061769 hybrid +133_3-6 Q0 MARCO_48_63285570-8 53 0.057619 hybrid +133_3-6 Q0 MARCO_15_1872813287-3 54 0.056218 hybrid +133_3-6 Q0 MARCO_01_685761764-1 55 0.054512 hybrid +133_3-6 Q0 MARCO_12_1463084501-8 56 0.053955 hybrid +133_3-6 Q0 MARCO_38_305400173-6 57 0.048565 hybrid +133_3-6 Q0 MARCO_48_63285570-1 58 0.044236 hybrid +133_3-6 Q0 MARCO_43_394270543-5 59 0.040482 hybrid +133_3-6 Q0 MARCO_55_894772392-15 60 0.033566 hybrid +133_3-6 Q0 MARCO_33_1163477676-2 61 0.028805 hybrid +133_3-6 Q0 MARCO_38_614263928-3 62 0.027584 hybrid +133_3-6 Q0 MARCO_48_63285570-10 63 0.027548 hybrid +133_3-6 Q0 MARCO_28_370332679-5 64 0.024081 hybrid +133_3-6 Q0 MARCO_56_1773599878-5 65 0.024063 hybrid +133_3-6 Q0 MARCO_12_1463786556-14 66 0.023201 hybrid +133_3-6 Q0 MARCO_38_1529230263-3 67 0.022446 hybrid +133_3-6 Q0 MARCO_21_281535220-1 68 0.017021 hybrid +133_3-6 Q0 MARCO_38_287433918-4 69 0.016985 hybrid +133_3-6 Q0 MARCO_12_1463113724-10 70 0.016428 hybrid +133_3-6 Q0 MARCO_12_1300924370-6 71 0.013590 hybrid +133_3-6 Q0 MARCO_03_150328208-8 72 0.010033 hybrid +133_3-6 Q0 MARCO_12_1850147072-2 73 0.009943 hybrid +133_3-6 Q0 MARCO_46_807680042-3 74 0.009691 hybrid +133_3-6 Q0 MARCO_39_1159132060-1 75 0.009440 hybrid +133_3-6 Q0 MARCO_29_1528427220-2 76 0.009063 hybrid +133_3-6 Q0 MARCO_53_840405462-3 77 0.006512 hybrid +133_3-6 Q0 MARCO_28_336460959-6 78 0.005542 hybrid +133_3-6 Q0 MARCO_33_1249167428-1 79 0.004590 hybrid +133_3-6 Q0 MARCO_05_1594845775-12 80 0.003943 hybrid +133_3-6 Q0 MARCO_58_68967561-16 81 0.003135 hybrid +133_3-6 Q0 MARCO_06_930126463-1 82 0.000296 hybrid +133_3-6 Q0 MARCO_49_111337307-1 83 -0.000997 hybrid +133_3-6 Q0 MARCO_55_894772392-3 84 -0.001949 hybrid +133_3-6 Q0 MARCO_30_1189950163-6 85 -0.002416 hybrid +133_3-6 Q0 MARCO_58_1112571409-1 86 -0.003584 hybrid +133_3-6 Q0 MARCO_48_495082889-17 87 -0.004626 hybrid +133_3-6 Q0 MARCO_20_533084860-14 88 -0.007176 hybrid +133_3-6 Q0 MARCO_30_465672706-10 89 -0.007787 hybrid +133_3-6 Q0 MARCO_28_715126725-9 90 -0.008649 hybrid +133_3-6 Q0 MARCO_48_63285570-6 91 -0.015404 hybrid +133_3-6 Q0 MARCO_47_521703086-1 92 -0.018242 hybrid +133_3-6 Q0 MARCO_52_1015556282-4 93 -0.018745 hybrid +133_3-6 Q0 MARCO_12_1400225244-11 94 -0.021494 hybrid +133_3-6 Q0 MARCO_35_411000462-6 95 -0.022231 hybrid +133_3-6 Q0 MARCO_32_531594590-1 96 -0.024404 hybrid +133_3-6 Q0 MARCO_24_1861587724-1 97 -0.024907 hybrid +133_3-6 Q0 MARCO_28_469368543-13 98 -0.025518 hybrid +133_3-6 Q0 MARCO_27_1617783849-4 99 -0.027781 hybrid +133_3-6 Q0 MARCO_13_345503516-3 100 -0.030153 hybrid +133_3-8 Q0 MARCO_41_2141321647-65 1 0.500000 hybrid +133_3-8 Q0 MARCO_25_1839354923-1 2 0.488810 hybrid +133_3-8 Q0 MARCO_59_252114185-5 3 0.419717 hybrid +133_3-8 Q0 MARCO_15_811940538-3 4 0.336477 hybrid +133_3-8 Q0 MARCO_54_1641052472-4 5 0.314009 hybrid +133_3-8 Q0 MARCO_05_1594891397-1 6 0.296397 hybrid +133_3-8 Q0 MARCO_58_846384298-1 7 0.254733 hybrid +133_3-8 Q0 MARCO_22_1214874541-1 8 0.213667 hybrid +133_3-8 Q0 MARCO_22_533606299-7 9 0.179693 hybrid +133_3-8 Q0 MARCO_06_203465624-7 10 0.179305 hybrid +133_3-8 Q0 MARCO_47_1517993602-1 11 0.178672 hybrid +133_3-8 Q0 MARCO_15_800204751-3 12 0.157365 hybrid +133_3-8 Q0 MARCO_58_846384298-2 13 0.135460 hybrid +133_3-8 Q0 MARCO_54_1784168347-2 14 0.130182 hybrid +133_3-8 Q0 MARCO_58_574441320-19 15 0.124587 hybrid +133_3-8 Q0 MARCO_30_248733071-4 16 0.120786 hybrid +133_3-8 Q0 MARCO_15_800204751-2 17 0.108998 hybrid +133_3-8 Q0 MARCO_39_1156345664-1 18 0.106763 hybrid +133_3-8 Q0 MARCO_59_252114185-10 19 0.101626 hybrid +133_3-8 Q0 MARCO_27_533277848-7 20 0.083767 hybrid +133_3-8 Q0 MARCO_00_44835598-3 21 0.069146 hybrid +133_3-8 Q0 MARCO_38_1530483363-4 22 0.058044 hybrid +133_3-8 Q0 MARCO_22_117511656-5 23 0.051675 hybrid +133_3-8 Q0 MARCO_41_2141321647-34 24 0.042438 hybrid +133_3-8 Q0 MARCO_23_1184191398-7 25 0.041875 hybrid +133_3-8 Q0 MARCO_09_915571544-4 26 0.003202 hybrid +133_3-8 Q0 MARCO_56_1503709689-10 27 -0.002076 hybrid +133_3-8 Q0 MARCO_25_635390250-1 28 -0.011102 hybrid +133_3-8 Q0 MARCO_41_2078271967-1 29 -0.014181 hybrid +133_3-8 Q0 MARCO_47_516281976-2 30 -0.016961 hybrid +133_3-8 Q0 MARCO_55_1295547228-5 31 -0.018492 hybrid +133_3-8 Q0 MARCO_12_203208468-3 32 -0.022627 hybrid +133_3-8 Q0 MARCO_37_520318622-3 33 -0.026269 hybrid +133_3-8 Q0 MARCO_54_1782877080-1 34 -0.033447 hybrid +133_3-8 Q0 MARCO_57_1308038062-1 35 -0.038866 hybrid +133_3-8 Q0 MARCO_50_1576239427-1 36 -0.040819 hybrid +133_3-8 Q0 MARCO_54_1782403778-2 37 -0.042878 hybrid +133_3-8 Q0 MARCO_46_279276893-2 38 -0.046572 hybrid +133_3-8 Q0 MARCO_59_837931325-2 39 -0.047892 hybrid +133_3-8 Q0 MARCO_25_657968517-17 40 -0.050989 hybrid +133_3-8 Q0 MARCO_39_1156271407-2 41 -0.051411 hybrid +133_3-8 Q0 MARCO_10_1535307000-1 42 -0.054173 hybrid +133_3-8 Q0 MARCO_12_1850137591-1 43 -0.054859 hybrid +133_3-8 Q0 MARCO_59_252114185-12 44 -0.061827 hybrid +133_3-8 Q0 MARCO_35_494736271-3 45 -0.062407 hybrid +133_3-8 Q0 MARCO_02_539378943-3 46 -0.062584 hybrid +133_3-8 Q0 MARCO_59_39247210-2 47 -0.064413 hybrid +133_3-8 Q0 MARCO_01_1679282652-4 48 -0.072823 hybrid +133_3-8 Q0 MARCO_00_682569184-29 49 -0.075779 hybrid +133_3-8 Q0 MARCO_35_494682519-4 50 -0.076184 hybrid +133_3-8 Q0 MARCO_23_352996215-2 51 -0.076712 hybrid +133_3-8 Q0 MARCO_00_672075635-1 52 -0.082588 hybrid +133_3-8 Q0 MARCO_13_1567016362-6 53 -0.087181 hybrid +133_3-8 Q0 MARCO_49_897670229-3 54 -0.088870 hybrid +133_3-8 Q0 MARCO_23_652150045-7 55 -0.089028 hybrid +133_3-8 Q0 MARCO_21_1041386698-14 56 -0.092670 hybrid +133_3-8 Q0 MARCO_13_1413175737-11 57 -0.092723 hybrid +133_3-8 Q0 MARCO_24_1167876343-27 58 -0.094254 hybrid +133_3-8 Q0 MARCO_48_1729855682-4 59 -0.097280 hybrid +133_3-8 Q0 MARCO_41_2141321647-23 60 -0.097720 hybrid +133_3-8 Q0 MARCO_39_1156345664-7 61 -0.101239 hybrid +133_3-8 Q0 MARCO_30_128962525-2 62 -0.105655 hybrid +133_3-8 Q0 MARCO_29_1312386098-9 63 -0.107714 hybrid +133_3-8 Q0 MARCO_41_2141278808-4 64 -0.111619 hybrid +133_3-8 Q0 MARCO_32_334978840-2 65 -0.112992 hybrid +133_3-8 Q0 MARCO_41_2078453470-2 66 -0.113590 hybrid +133_3-8 Q0 MARCO_49_221275597-6 67 -0.113695 hybrid +133_3-8 Q0 MARCO_27_533102350-2 68 -0.115121 hybrid +133_3-8 Q0 MARCO_58_846384298-12 69 -0.115930 hybrid +133_3-8 Q0 MARCO_12_203227576-6 70 -0.116757 hybrid +133_3-8 Q0 MARCO_52_443527941-7 71 -0.127120 hybrid +133_3-8 Q0 MARCO_52_1347015592-33 72 -0.129073 hybrid +133_3-8 Q0 MARCO_23_34287544-2 73 -0.129179 hybrid +133_3-8 Q0 MARCO_12_357889624-3 74 -0.133436 hybrid +133_3-8 Q0 MARCO_58_107346150-17 75 -0.136551 hybrid +133_3-8 Q0 MARCO_23_1638245674-3 76 -0.136991 hybrid +133_3-8 Q0 MARCO_00_1163866988-5 77 -0.137079 hybrid +133_3-8 Q0 MARCO_27_532862767-46 78 -0.137712 hybrid +133_3-8 Q0 MARCO_54_1784139197-1 79 -0.137730 hybrid +133_3-8 Q0 MARCO_35_494736271-5 80 -0.138029 hybrid +133_3-8 Q0 MARCO_25_1636461650-4 81 -0.139084 hybrid +133_3-8 Q0 MARCO_54_1783504324-4 82 -0.139542 hybrid +133_3-8 Q0 MARCO_58_678143784-12 83 -0.141372 hybrid +133_3-8 Q0 MARCO_00_534976548-3 84 -0.145260 hybrid +133_3-8 Q0 MARCO_54_1782897203-2 85 -0.145541 hybrid +133_3-8 Q0 MARCO_41_2141321647-116 86 -0.150503 hybrid +133_3-8 Q0 MARCO_54_1783955436-1 87 -0.154040 hybrid +133_3-8 Q0 MARCO_29_1561732600-2 88 -0.156134 hybrid +133_3-8 Q0 MARCO_34_1049639904-6 89 -0.157541 hybrid +133_3-8 Q0 MARCO_03_204759888-3 90 -0.157576 hybrid +133_3-8 Q0 MARCO_25_1850238517-10 91 -0.157647 hybrid +133_3-8 Q0 MARCO_52_675040013-11 92 -0.158843 hybrid +133_3-8 Q0 MARCO_54_1958314940-11 93 -0.160655 hybrid +133_3-8 Q0 MARCO_39_1156507595-2 94 -0.160937 hybrid +133_3-8 Q0 MARCO_03_900411239-5 95 -0.161922 hybrid +133_3-8 Q0 MARCO_25_1075378719-11 96 -0.162503 hybrid +133_3-8 Q0 MARCO_30_332238280-13 97 -0.165617 hybrid +133_3-8 Q0 MARCO_13_281055910-2 98 -0.167253 hybrid +133_3-8 Q0 MARCO_54_1958502850-3 99 -0.168942 hybrid +133_3-8 Q0 MARCO_54_1760725008-3 100 -0.171388 hybrid +134_1-1 Q0 MARCO_43_1521332427-2 1 0.500000 hybrid +134_1-1 Q0 MARCO_43_1521332427-1 2 0.393874 hybrid +134_1-1 Q0 MARCO_35_809364331-1 3 0.351240 hybrid +134_1-1 Q0 MARCO_33_98122006-3 4 0.194460 hybrid +134_1-1 Q0 MARCO_40_1646248045-10 5 0.193591 hybrid +134_1-1 Q0 MARCO_33_1577644476-1 6 0.167618 hybrid +134_1-1 Q0 MARCO_47_1302772421-2 7 0.162156 hybrid +134_1-1 Q0 MARCO_59_629018907-2 8 0.130472 hybrid +134_1-1 Q0 MARCO_55_1597758959-8 9 0.116617 hybrid +134_1-1 Q0 MARCO_21_46886089-10 10 0.113463 hybrid +134_1-1 Q0 MARCO_21_1318975980-1 11 0.098639 hybrid +134_1-1 Q0 MARCO_38_1661011384-6 12 0.088881 hybrid +134_1-1 Q0 MARCO_55_842795711-1 13 0.087143 hybrid +134_1-1 Q0 MARCO_48_1708398599-2 14 0.081183 hybrid +134_1-1 Q0 MARCO_31_1736624433-1 15 0.074752 hybrid +134_1-1 Q0 MARCO_31_352755696-1 16 0.060276 hybrid +134_1-1 Q0 MARCO_12_1404754546-9 17 0.047662 hybrid +134_1-1 Q0 MARCO_12_1142979423-16 18 0.044931 hybrid +134_1-1 Q0 MARCO_32_1369573051-15 19 0.033161 hybrid +134_1-1 Q0 MARCO_24_1520215941-43 20 0.024421 hybrid +134_1-1 Q0 MARCO_34_818893447-3 21 0.024396 hybrid +134_1-1 Q0 MARCO_42_324634806-29 22 0.021119 hybrid +134_1-1 Q0 MARCO_36_900453075-2 23 0.017270 hybrid +134_1-1 Q0 MARCO_33_76786222-41 24 0.013049 hybrid +134_1-1 Q0 MARCO_23_905165121-2 25 -0.004060 hybrid +134_1-1 Q0 MARCO_49_924142507-20 26 -0.007586 hybrid +134_1-1 Q0 MARCO_21_46847415-11 27 -0.012601 hybrid +134_1-1 Q0 MARCO_33_463873175-1 28 -0.016748 hybrid +134_1-1 Q0 MARCO_36_884253134-6 29 -0.018933 hybrid +134_1-1 Q0 MARCO_57_312809570-3 30 -0.020622 hybrid +134_1-1 Q0 MARCO_47_650811545-10 31 -0.022732 hybrid +134_1-1 Q0 MARCO_11_743650731-4 32 -0.023999 hybrid +134_1-1 Q0 MARCO_38_1638752375-11 33 -0.030926 hybrid +134_1-1 Q0 MARCO_33_933071673-5 34 -0.033211 hybrid +134_1-1 Q0 MARCO_14_37749737-1 35 -0.037258 hybrid +134_1-1 Q0 MARCO_22_1749690248-7 36 -0.050145 hybrid +134_1-1 Q0 MARCO_40_566767975-9 37 -0.050518 hybrid +134_1-1 Q0 MARCO_14_35733680-10 38 -0.059035 hybrid +134_1-1 Q0 MARCO_09_613224803-1 39 -0.064944 hybrid +134_1-1 Q0 MARCO_54_432596517-18 40 -0.068445 hybrid +134_1-1 Q0 MARCO_49_1558784452-1 41 -0.069687 hybrid +134_1-1 Q0 MARCO_38_1625210008-11 42 -0.071847 hybrid +134_1-1 Q0 MARCO_29_812687339-3 43 -0.072766 hybrid +134_1-1 Q0 MARCO_36_902206332-1 44 -0.076317 hybrid +134_1-1 Q0 MARCO_39_1636706274-1 45 -0.078601 hybrid +134_1-1 Q0 MARCO_22_1747948855-4 46 -0.080885 hybrid +134_1-1 Q0 MARCO_45_1060410444-2 47 -0.083666 hybrid +134_1-1 Q0 MARCO_11_1166150088-1 48 -0.085554 hybrid +134_1-1 Q0 MARCO_36_411498022-7 49 -0.086075 hybrid +134_1-1 Q0 MARCO_12_664518662-2 50 -0.087317 hybrid +134_1-1 Q0 MARCO_52_910971269-10 51 -0.087391 hybrid +134_1-1 Q0 MARCO_11_1166150088-3 52 -0.094170 hybrid +134_1-1 Q0 MARCO_47_540763366-7 53 -0.095933 hybrid +134_1-1 Q0 MARCO_56_692617252-3 54 -0.096454 hybrid +134_1-1 Q0 MARCO_21_1073998452-1 55 -0.097820 hybrid +134_1-1 Q0 MARCO_00_16611848-45 56 -0.098763 hybrid +134_1-1 Q0 MARCO_36_1037034250-1 57 -0.105517 hybrid +134_1-1 Q0 MARCO_50_2156613647-36 58 -0.108050 hybrid +134_1-1 Q0 MARCO_47_650811545-5 59 -0.108869 hybrid +134_1-1 Q0 MARCO_47_1302163644-6 60 -0.109018 hybrid +134_1-1 Q0 MARCO_35_248298095-9 61 -0.111204 hybrid +134_1-1 Q0 MARCO_29_1023734392-23 62 -0.112147 hybrid +134_1-1 Q0 MARCO_14_379060561-10 63 -0.115077 hybrid +134_1-1 Q0 MARCO_47_648335625-1 64 -0.117237 hybrid +134_1-1 Q0 MARCO_36_840752880-2 65 -0.117734 hybrid +134_1-1 Q0 MARCO_29_480738425-14 66 -0.118032 hybrid +134_1-1 Q0 MARCO_36_725843990-21 67 -0.120664 hybrid +134_1-1 Q0 MARCO_30_804904290-12 68 -0.126052 hybrid +134_1-1 Q0 MARCO_33_90820907-1 69 -0.127567 hybrid +134_1-1 Q0 MARCO_36_1702672319-88 70 -0.133228 hybrid +134_1-1 Q0 MARCO_51_128932208-6 71 -0.137201 hybrid +134_1-1 Q0 MARCO_53_859606807-11 72 -0.139287 hybrid +134_1-1 Q0 MARCO_37_495790049-5 73 -0.139734 hybrid +134_1-1 Q0 MARCO_58_1007513156-7 74 -0.145221 hybrid +134_1-1 Q0 MARCO_02_1027497681-2 75 -0.146314 hybrid +134_1-1 Q0 MARCO_58_1007251365-19 76 -0.146438 hybrid +134_1-1 Q0 MARCO_30_1820800898-1 77 -0.151181 hybrid +134_1-1 Q0 MARCO_55_893840635-15 78 -0.151702 hybrid +134_1-1 Q0 MARCO_35_809432927-1 79 -0.154657 hybrid +134_1-1 Q0 MARCO_49_1554131254-1 80 -0.157066 hybrid +134_1-1 Q0 MARCO_38_30279543-13 81 -0.157661 hybrid +134_1-1 Q0 MARCO_25_68243276-22 82 -0.158481 hybrid +134_1-1 Q0 MARCO_32_751701297-1 83 -0.160616 hybrid +134_1-1 Q0 MARCO_50_1211442904-5 84 -0.160691 hybrid +134_1-1 Q0 MARCO_48_667409043-1 85 -0.161262 hybrid +134_1-1 Q0 MARCO_55_908766775-7 86 -0.162007 hybrid +134_1-1 Q0 MARCO_12_664441147-10 87 -0.163149 hybrid +134_1-1 Q0 MARCO_24_1840497755-2 88 -0.164092 hybrid +134_1-1 Q0 MARCO_00_1533503261-1 89 -0.164217 hybrid +134_1-1 Q0 MARCO_27_320809725-2 90 -0.164391 hybrid +134_1-1 Q0 MARCO_49_1233819028-1 91 -0.167072 hybrid +134_1-1 Q0 MARCO_33_69096130-1 92 -0.169828 hybrid +134_1-1 Q0 MARCO_47_607571437-1 93 -0.171740 hybrid +134_1-1 Q0 MARCO_35_1359263162-2 94 -0.173553 hybrid +134_1-1 Q0 MARCO_26_147309001-1 95 -0.173925 hybrid +134_1-1 Q0 MARCO_58_254431300-29 96 -0.176185 hybrid +134_1-1 Q0 MARCO_53_80035122-1 97 -0.177898 hybrid +134_1-1 Q0 MARCO_43_160519707-2 98 -0.178072 hybrid +134_1-1 Q0 MARCO_32_651646140-1 99 -0.178643 hybrid +134_1-1 Q0 MARCO_58_1006573867-2 100 -0.178718 hybrid +134_1-11 Q0 MARCO_22_321254206-3 1 0.500000 hybrid +134_1-11 Q0 MARCO_33_68766082-1 2 0.311395 hybrid +134_1-11 Q0 MARCO_47_499667316-8 3 0.288515 hybrid +134_1-11 Q0 MARCO_13_709199646-1 4 0.279646 hybrid +134_1-11 Q0 MARCO_22_321467482-1 5 0.264528 hybrid +134_1-11 Q0 MARCO_49_1558476537-6 6 0.262087 hybrid +134_1-11 Q0 MARCO_33_68766082-11 7 0.248678 hybrid +134_1-11 Q0 MARCO_33_91849315-1 8 0.214619 hybrid +134_1-11 Q0 MARCO_22_321254206-1 9 0.208858 hybrid +134_1-11 Q0 MARCO_22_321898329-1 10 0.206222 hybrid +134_1-11 Q0 MARCO_22_322130305-1 11 0.198768 hybrid +134_1-11 Q0 MARCO_47_499667316-1 12 0.182577 hybrid +134_1-11 Q0 MARCO_31_1313070605-5 13 0.182284 hybrid +134_1-11 Q0 MARCO_48_698754707-2 14 0.179924 hybrid +134_1-11 Q0 MARCO_20_702879275-8 15 0.158802 hybrid +134_1-11 Q0 MARCO_22_321386794-5 16 0.155726 hybrid +134_1-11 Q0 MARCO_33_91839737-1 17 0.140950 hybrid +134_1-11 Q0 MARCO_22_322525079-1 18 0.139681 hybrid +134_1-11 Q0 MARCO_33_58188145-1 19 0.136475 hybrid +134_1-11 Q0 MARCO_20_702879275-5 20 0.133123 hybrid +134_1-11 Q0 MARCO_24_1958402667-8 21 0.125767 hybrid +134_1-11 Q0 MARCO_22_1749578967-3 22 0.122708 hybrid +134_1-11 Q0 MARCO_47_499667316-2 23 0.120902 hybrid +134_1-11 Q0 MARCO_36_910508219-1 24 0.117745 hybrid +134_1-11 Q0 MARCO_49_1235214536-1 25 0.116817 hybrid +134_1-11 Q0 MARCO_31_1313076914-4 26 0.116426 hybrid +134_1-11 Q0 MARCO_31_1313083030-1 27 0.107688 hybrid +134_1-11 Q0 MARCO_22_345249450-5 28 0.101341 hybrid +134_1-11 Q0 MARCO_26_1489430351-1 29 0.095467 hybrid +134_1-11 Q0 MARCO_22_323435903-2 30 0.092163 hybrid +134_1-11 Q0 MARCO_35_1717929950-1 31 0.089153 hybrid +134_1-11 Q0 MARCO_36_944454916-1 32 0.086028 hybrid +134_1-11 Q0 MARCO_24_1007831176-1 33 0.081472 hybrid +134_1-11 Q0 MARCO_22_322881482-6 34 0.075060 hybrid +134_1-11 Q0 MARCO_22_345249450-3 35 0.072912 hybrid +134_1-11 Q0 MARCO_37_1668274833-1 36 0.060268 hybrid +134_1-11 Q0 MARCO_45_155262180-2 37 0.056265 hybrid +134_1-11 Q0 MARCO_20_702371390-4 38 0.051643 hybrid +134_1-11 Q0 MARCO_24_1958402667-4 39 0.050293 hybrid +134_1-11 Q0 MARCO_24_1958402667-6 40 0.050292 hybrid +134_1-11 Q0 MARCO_31_1313064799-1 41 0.043132 hybrid +134_1-11 Q0 MARCO_31_53107448-1 42 0.040529 hybrid +134_1-11 Q0 MARCO_47_796838059-4 43 0.040301 hybrid +134_1-11 Q0 MARCO_36_1067600535-1 44 0.036770 hybrid +134_1-11 Q0 MARCO_44_125459934-1 45 0.032799 hybrid +134_1-11 Q0 MARCO_31_53216636-1 46 0.026160 hybrid +134_1-11 Q0 MARCO_31_53216636-3 47 0.025639 hybrid +134_1-11 Q0 MARCO_31_1313070605-4 48 0.024191 hybrid +134_1-11 Q0 MARCO_41_531852428-4 49 0.022482 hybrid +134_1-11 Q0 MARCO_33_85160705-1 50 0.022482 hybrid +134_1-11 Q0 MARCO_34_335269979-14 51 0.021148 hybrid +134_1-11 Q0 MARCO_22_323435903-1 52 0.019065 hybrid +134_1-11 Q0 MARCO_43_792409370-1 53 0.017144 hybrid +134_1-11 Q0 MARCO_22_322426764-2 54 0.013857 hybrid +134_1-11 Q0 MARCO_30_1698290851-1 55 0.013857 hybrid +134_1-11 Q0 MARCO_29_1502523997-1 56 0.012832 hybrid +134_1-11 Q0 MARCO_31_1313083030-5 57 0.012718 hybrid +134_1-11 Q0 MARCO_13_709014490-3 58 0.011904 hybrid +134_1-11 Q0 MARCO_22_321386794-6 59 0.010896 hybrid +134_1-11 Q0 MARCO_33_68786425-4 60 0.010489 hybrid +134_1-11 Q0 MARCO_24_1958348754-8 61 0.007999 hybrid +134_1-11 Q0 MARCO_31_53236361-3 62 0.005770 hybrid +134_1-11 Q0 MARCO_22_321898329-2 63 0.003768 hybrid +134_1-11 Q0 MARCO_43_254196353-1 64 0.000155 hybrid +134_1-11 Q0 MARCO_22_345217575-4 65 -0.000772 hybrid +134_1-11 Q0 MARCO_33_85141894-1 66 -0.000789 hybrid +134_1-11 Q0 MARCO_29_1499566896-1 67 -0.002107 hybrid +134_1-11 Q0 MARCO_22_321467482-2 68 -0.005524 hybrid +134_1-11 Q0 MARCO_31_53107448-2 69 -0.007949 hybrid +134_1-11 Q0 MARCO_24_1645973649-1 70 -0.009316 hybrid +134_1-11 Q0 MARCO_22_322130305-3 71 -0.011366 hybrid +134_1-11 Q0 MARCO_22_321509255-1 72 -0.013693 hybrid +134_1-11 Q0 MARCO_23_1313020026-1 73 -0.013937 hybrid +134_1-11 Q0 MARCO_22_322285521-1 74 -0.015793 hybrid +134_1-11 Q0 MARCO_22_322678137-6 75 -0.021293 hybrid +134_1-11 Q0 MARCO_31_53254925-2 76 -0.022904 hybrid +134_1-11 Q0 MARCO_36_910495706-10 77 -0.026500 hybrid +134_1-11 Q0 MARCO_57_473675598-14 78 -0.032196 hybrid +134_1-11 Q0 MARCO_31_1313064799-3 79 -0.032310 hybrid +134_1-11 Q0 MARCO_31_1313083030-4 80 -0.033335 hybrid +134_1-11 Q0 MARCO_41_532512844-3 81 -0.035353 hybrid +134_1-11 Q0 MARCO_31_1313070605-3 82 -0.041471 hybrid +134_1-11 Q0 MARCO_56_742078252-1 83 -0.041520 hybrid +134_1-11 Q0 MARCO_31_50218972-2 84 -0.043652 hybrid +134_1-11 Q0 MARCO_24_1958402667-1 85 -0.045507 hybrid +134_1-11 Q0 MARCO_29_816146098-1 86 -0.047574 hybrid +134_1-11 Q0 MARCO_36_910516131-1 87 -0.047606 hybrid +134_1-11 Q0 MARCO_13_709014490-1 88 -0.047639 hybrid +134_1-11 Q0 MARCO_39_1718412952-1 89 -0.049624 hybrid +134_1-11 Q0 MARCO_31_1313070605-1 90 -0.054701 hybrid +134_1-11 Q0 MARCO_24_1958358172-4 91 -0.055596 hybrid +134_1-11 Q0 MARCO_22_345217575-5 92 -0.055613 hybrid +134_1-11 Q0 MARCO_29_831363978-3 93 -0.056231 hybrid +134_1-11 Q0 MARCO_08_1180862764-1 94 -0.057549 hybrid +134_1-11 Q0 MARCO_22_345249450-1 95 -0.060364 hybrid +134_1-11 Q0 MARCO_55_284950232-1 96 -0.061015 hybrid +134_1-11 Q0 MARCO_22_321467482-3 97 -0.066548 hybrid +134_1-11 Q0 MARCO_13_709189234-1 98 -0.066613 hybrid +134_1-11 Q0 MARCO_36_910495706-2 99 -0.066874 hybrid +134_1-11 Q0 MARCO_12_65890848-4 100 -0.068908 hybrid +134_1-13 Q0 MARCO_36_945717607-3 1 0.500000 hybrid +134_1-13 Q0 MARCO_36_944414648-6 2 0.309053 hybrid +134_1-13 Q0 MARCO_36_945717607-1 3 0.289642 hybrid +134_1-13 Q0 MARCO_36_944270115-8 4 0.280253 hybrid +134_1-13 Q0 MARCO_36_945711051-4 5 0.235547 hybrid +134_1-13 Q0 MARCO_36_945711051-5 6 0.195274 hybrid +134_1-13 Q0 MARCO_36_932523501-3 7 0.091221 hybrid +134_1-13 Q0 MARCO_36_945711051-3 8 0.068832 hybrid +134_1-13 Q0 MARCO_36_945717607-2 9 0.066979 hybrid +134_1-13 Q0 MARCO_30_881883471-4 10 0.056979 hybrid +134_1-13 Q0 MARCO_31_53216636-3 11 0.036105 hybrid +134_1-13 Q0 MARCO_36_945717607-4 12 -0.021274 hybrid +134_1-13 Q0 MARCO_36_945717607-6 13 -0.021274 hybrid +134_1-13 Q0 MARCO_31_53236361-3 14 -0.045947 hybrid +134_1-13 Q0 MARCO_36_945711051-6 15 -0.046200 hybrid +134_1-13 Q0 MARCO_31_53254925-2 16 -0.055895 hybrid +134_1-13 Q0 MARCO_31_53236361-1 17 -0.094874 hybrid +134_1-13 Q0 MARCO_31_53254925-1 18 -0.112305 hybrid +134_1-13 Q0 MARCO_57_1464938685-10 19 -0.129789 hybrid +134_1-13 Q0 MARCO_57_1464938685-8 20 -0.129790 hybrid +134_1-13 Q0 MARCO_57_1457889444-4 21 -0.135547 hybrid +134_1-13 Q0 MARCO_57_1458134270-4 22 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1458300641-4 23 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1458597931-6 24 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1458750250-4 25 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1458847385-5 26 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1459925334-25 27 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1460284983-17 28 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1461235744-7 29 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1461700179-15 30 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1461511820-12 31 -0.135548 hybrid +134_1-13 Q0 MARCO_57_1461820561-8 32 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1462080969-10 33 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1462512355-17 34 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1463188556-18 35 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1463458257-20 36 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1463614320-11 37 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1464329520-10 38 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1463941792-13 39 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1464359543-10 40 -0.135549 hybrid +134_1-13 Q0 MARCO_57_1458210108-6 41 -0.138442 hybrid +134_1-13 Q0 MARCO_57_1458976154-18 42 -0.141768 hybrid +134_1-13 Q0 MARCO_57_1464739160-6 43 -0.141769 hybrid +134_1-13 Q0 MARCO_57_1464200671-9 44 -0.144526 hybrid +134_1-13 Q0 MARCO_57_1461353406-11 45 -0.151495 hybrid +134_1-13 Q0 MARCO_57_1461353406-9 46 -0.151495 hybrid +134_1-13 Q0 MARCO_57_1458335095-4 47 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1459834518-9 48 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1461222646-10 49 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1463210095-10 50 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1463481137-10 51 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1463995682-6 52 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1463814695-9 53 -0.160316 hybrid +134_1-13 Q0 MARCO_57_1464290693-11 54 -0.160317 hybrid +134_1-13 Q0 MARCO_57_1464504618-10 55 -0.160317 hybrid +134_1-13 Q0 MARCO_57_1459802241-9 56 -0.163305 hybrid +134_1-13 Q0 MARCO_57_1462867142-8 57 -0.163306 hybrid +134_1-13 Q0 MARCO_57_1461262047-33 58 -0.163306 hybrid +134_1-13 Q0 MARCO_57_1458820785-4 59 -0.169600 hybrid +134_1-13 Q0 MARCO_21_1101358846-2 60 -0.181221 hybrid +134_1-13 Q0 MARCO_57_1464598561-8 61 -0.182411 hybrid +134_1-13 Q0 MARCO_57_1464834186-6 62 -0.189695 hybrid +134_1-13 Q0 MARCO_57_1458220794-4 63 -0.195211 hybrid +134_1-13 Q0 MARCO_58_1003195566-15 64 -0.210295 hybrid +134_1-13 Q0 MARCO_47_635316773-6 65 -0.235011 hybrid +134_1-13 Q0 MARCO_57_1458220794-6 66 -0.236347 hybrid +134_1-13 Q0 MARCO_57_1464965738-3 67 -0.238800 hybrid +134_1-13 Q0 MARCO_31_50218972-2 68 -0.242190 hybrid +134_1-13 Q0 MARCO_57_1464598561-10 69 -0.246053 hybrid +134_1-13 Q0 MARCO_57_1460604452-18 70 -0.246263 hybrid +134_1-13 Q0 MARCO_57_1464834186-8 71 -0.249569 hybrid +134_1-13 Q0 MARCO_57_1464587665-9 72 -0.263895 hybrid +134_1-13 Q0 MARCO_03_67020016-2 73 -0.271410 hybrid +134_1-13 Q0 MARCO_29_488317756-2 74 -0.271411 hybrid +134_1-13 Q0 MARCO_57_1457787871-5 75 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1457957670-4 76 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1458789191-9 77 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1459311144-9 78 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1458799723-5 79 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1461593363-11 80 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1460155454-8 81 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1461664195-14 82 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1462348719-9 83 -0.272769 hybrid +134_1-13 Q0 MARCO_57_1462949039-9 84 -0.272770 hybrid +134_1-13 Q0 MARCO_57_1462427269-9 85 -0.272770 hybrid +134_1-13 Q0 MARCO_57_1463677465-14 86 -0.272770 hybrid +134_1-13 Q0 MARCO_57_1463254366-10 87 -0.272770 hybrid +134_1-13 Q0 MARCO_57_1463850868-9 88 -0.272770 hybrid +134_1-13 Q0 MARCO_41_2178753291-7 89 -0.273095 hybrid +134_1-13 Q0 MARCO_57_1458088805-6 90 -0.274253 hybrid +134_1-13 Q0 MARCO_57_1459770685-10 91 -0.274253 hybrid +134_1-13 Q0 MARCO_57_1461890858-15 92 -0.274253 hybrid +134_1-13 Q0 MARCO_57_1462440001-6 93 -0.274253 hybrid +134_1-13 Q0 MARCO_57_1463083299-15 94 -0.274253 hybrid +134_1-13 Q0 MARCO_57_1462177801-16 95 -0.274442 hybrid +134_1-13 Q0 MARCO_57_1458236566-5 96 -0.275895 hybrid +134_1-13 Q0 MARCO_57_1463143269-13 97 -0.275895 hybrid +134_1-13 Q0 MARCO_57_1460793681-12 98 -0.275895 hybrid +134_1-13 Q0 MARCO_57_1464608490-8 99 -0.278032 hybrid +134_1-13 Q0 MARCO_57_1457805875-5 100 -0.279853 hybrid +134_1-3 Q0 MARCO_33_366099507-25 1 0.500000 hybrid +134_1-3 Q0 MARCO_25_338925475-4 2 0.357661 hybrid +134_1-3 Q0 MARCO_22_1217200733-7 3 0.339089 hybrid +134_1-3 Q0 MARCO_55_220246020-2 4 0.323319 hybrid +134_1-3 Q0 MARCO_58_958233549-2 5 0.315517 hybrid +134_1-3 Q0 MARCO_31_1159380630-8 6 0.300187 hybrid +134_1-3 Q0 MARCO_21_1516119663-1 7 0.279499 hybrid +134_1-3 Q0 MARCO_36_683115325-15 8 0.220377 hybrid +134_1-3 Q0 MARCO_41_1560176098-56 9 0.214992 hybrid +134_1-3 Q0 MARCO_56_1871553326-3 10 0.198233 hybrid +134_1-3 Q0 MARCO_45_408980140-29 11 0.194002 hybrid +134_1-3 Q0 MARCO_46_724642024-9 12 0.173755 hybrid +134_1-3 Q0 MARCO_21_1514328332-25 13 0.159304 hybrid +134_1-3 Q0 MARCO_52_1346719828-16 14 0.157875 hybrid +134_1-3 Q0 MARCO_27_1173456584-72 15 0.148095 hybrid +134_1-3 Q0 MARCO_09_1297895436-5 16 0.143974 hybrid +134_1-3 Q0 MARCO_57_724773899-5 17 0.136006 hybrid +134_1-3 Q0 MARCO_35_487487427-4 18 0.131061 hybrid +134_1-3 Q0 MARCO_49_481305539-13 19 0.114550 hybrid +134_1-3 Q0 MARCO_50_1361113487-3 20 0.106225 hybrid +134_1-3 Q0 MARCO_50_2911430124-1 21 0.088368 hybrid +134_1-3 Q0 MARCO_45_411627898-5 22 0.075977 hybrid +134_1-3 Q0 MARCO_44_1837053557-6 23 0.056773 hybrid +134_1-3 Q0 MARCO_28_1848410261-6 24 0.056471 hybrid +134_1-3 Q0 MARCO_28_1848628602-6 25 0.056471 hybrid +134_1-3 Q0 MARCO_28_1848785123-6 26 0.056471 hybrid +134_1-3 Q0 MARCO_28_1848806383-6 27 0.056470 hybrid +134_1-3 Q0 MARCO_28_1848827790-6 28 0.056470 hybrid +134_1-3 Q0 MARCO_50_141738159-123 29 0.048449 hybrid +134_1-3 Q0 MARCO_14_1773758849-1 30 0.034410 hybrid +134_1-3 Q0 MARCO_55_341422719-11 31 0.033888 hybrid +134_1-3 Q0 MARCO_50_1673105746-2 32 0.031800 hybrid +134_1-3 Q0 MARCO_28_1669070371-36 33 0.029905 hybrid +134_1-3 Q0 MARCO_22_194776667-9 34 0.028174 hybrid +134_1-3 Q0 MARCO_36_270972748-6 35 0.015838 hybrid +134_1-3 Q0 MARCO_10_1409306573-4 36 0.011552 hybrid +134_1-3 Q0 MARCO_20_1664976460-23 37 0.009629 hybrid +134_1-3 Q0 MARCO_50_666544387-11 38 0.006415 hybrid +134_1-3 Q0 MARCO_28_1848550416-7 39 0.003228 hybrid +134_1-3 Q0 MARCO_34_296709656-23 40 0.000234 hybrid +134_1-3 Q0 MARCO_20_212777311-2 41 0.000206 hybrid +134_1-3 Q0 MARCO_11_735275981-4 42 -0.003915 hybrid +134_1-3 Q0 MARCO_42_194897940-6 43 -0.008366 hybrid +134_1-3 Q0 MARCO_50_145150309-47 44 -0.010976 hybrid +134_1-3 Q0 MARCO_45_810488798-7 45 -0.015289 hybrid +134_1-3 Q0 MARCO_41_1100692113-15 46 -0.016800 hybrid +134_1-3 Q0 MARCO_29_1243120715-18 47 -0.017377 hybrid +134_1-3 Q0 MARCO_45_812061526-5 48 -0.017679 hybrid +134_1-3 Q0 MARCO_28_974720971-1 49 -0.017899 hybrid +134_1-3 Q0 MARCO_11_794335480-15 50 -0.026883 hybrid +134_1-3 Q0 MARCO_37_1672733261-13 51 -0.029383 hybrid +134_1-3 Q0 MARCO_12_81835330-10 52 -0.031965 hybrid +134_1-3 Q0 MARCO_34_1046909091-20 53 -0.039026 hybrid +134_1-3 Q0 MARCO_31_902786773-13 54 -0.039081 hybrid +134_1-3 Q0 MARCO_02_1299494687-48 55 -0.039438 hybrid +134_1-3 Q0 MARCO_35_1120980531-18 56 -0.043147 hybrid +134_1-3 Q0 MARCO_20_1619902431-15 57 -0.043779 hybrid +134_1-3 Q0 MARCO_30_814767830-10 58 -0.046471 hybrid +134_1-3 Q0 MARCO_22_192475213-10 59 -0.056471 hybrid +134_1-3 Q0 MARCO_27_373489046-3 60 -0.058669 hybrid +134_1-3 Q0 MARCO_30_134328131-3 61 -0.060015 hybrid +134_1-3 Q0 MARCO_52_1215654989-12 62 -0.060620 hybrid +134_1-3 Q0 MARCO_42_392192491-3 63 -0.071142 hybrid +134_1-3 Q0 MARCO_26_957876221-2 64 -0.073560 hybrid +134_1-3 Q0 MARCO_26_845484243-3 65 -0.075868 hybrid +134_1-3 Q0 MARCO_51_1381099174-12 66 -0.081170 hybrid +134_1-3 Q0 MARCO_06_1728115125-5 67 -0.085346 hybrid +134_1-3 Q0 MARCO_24_1023164831-11 68 -0.094687 hybrid +134_1-3 Q0 MARCO_23_240574852-1 69 -0.096610 hybrid +134_1-3 Q0 MARCO_11_1499727470-8 70 -0.099577 hybrid +134_1-3 Q0 MARCO_16_146699063-8 71 -0.101747 hybrid +134_1-3 Q0 MARCO_11_798330823-3 72 -0.101830 hybrid +134_1-3 Q0 MARCO_51_994257159-2 73 -0.107050 hybrid +134_1-3 Q0 MARCO_50_1205477628-13 74 -0.110182 hybrid +134_1-3 Q0 MARCO_44_1837024115-9 75 -0.110429 hybrid +134_1-3 Q0 MARCO_44_1837039904-8 76 -0.110429 hybrid +134_1-3 Q0 MARCO_20_324815016-27 77 -0.111885 hybrid +134_1-3 Q0 MARCO_56_95873775-5 78 -0.116446 hybrid +134_1-3 Q0 MARCO_56_870951204-5 79 -0.116830 hybrid +134_1-3 Q0 MARCO_30_652488120-2 80 -0.120457 hybrid +134_1-3 Q0 MARCO_44_1863836355-3 81 -0.120457 hybrid +134_1-3 Q0 MARCO_16_147277866-8 82 -0.122572 hybrid +134_1-3 Q0 MARCO_44_337813767-2 83 -0.123616 hybrid +134_1-3 Q0 MARCO_22_194369849-10 84 -0.124880 hybrid +134_1-3 Q0 MARCO_12_708960982-2 85 -0.124990 hybrid +134_1-3 Q0 MARCO_57_157725287-7 86 -0.124990 hybrid +134_1-3 Q0 MARCO_05_1441183275-4 87 -0.126473 hybrid +134_1-3 Q0 MARCO_20_692018072-5 88 -0.127160 hybrid +134_1-3 Q0 MARCO_59_845539740-2 89 -0.128561 hybrid +134_1-3 Q0 MARCO_50_1404194564-55 90 -0.129852 hybrid +134_1-3 Q0 MARCO_43_138256790-15 91 -0.132820 hybrid +134_1-3 Q0 MARCO_29_830558746-7 92 -0.133012 hybrid +134_1-3 Q0 MARCO_29_1022508207-6 93 -0.133397 hybrid +134_1-3 Q0 MARCO_29_1663329282-7 94 -0.136336 hybrid +134_1-3 Q0 MARCO_41_1411226293-24 95 -0.136529 hybrid +134_1-3 Q0 MARCO_31_800176480-5 96 -0.137078 hybrid +134_1-3 Q0 MARCO_31_303307822-3 97 -0.138012 hybrid +134_1-3 Q0 MARCO_20_416054698-2 98 -0.138012 hybrid +134_1-3 Q0 MARCO_14_1894191625-4 99 -0.141336 hybrid +134_1-3 Q0 MARCO_34_392239506-3 100 -0.141364 hybrid +134_1-5 Q0 MARCO_24_1645907032-1 1 0.500000 hybrid +134_1-5 Q0 MARCO_30_1698996763-2 2 0.435418 hybrid +134_1-5 Q0 MARCO_32_1367701068-4 3 0.274155 hybrid +134_1-5 Q0 MARCO_24_1012072495-1 4 0.230297 hybrid +134_1-5 Q0 MARCO_27_1109745040-1 5 0.214566 hybrid +134_1-5 Q0 MARCO_27_1109750285-1 6 0.214566 hybrid +134_1-5 Q0 MARCO_53_1305804923-1 7 0.209732 hybrid +134_1-5 Q0 MARCO_57_149395939-1 8 0.205393 hybrid +134_1-5 Q0 MARCO_43_161271225-2 9 0.185195 hybrid +134_1-5 Q0 MARCO_13_709244433-1 10 0.182833 hybrid +134_1-5 Q0 MARCO_53_992344250-2 11 0.175223 hybrid +134_1-5 Q0 MARCO_53_1305472506-10 12 0.172894 hybrid +134_1-5 Q0 MARCO_22_347769678-3 13 0.166417 hybrid +134_1-5 Q0 MARCO_42_274239680-14 14 0.159445 hybrid +134_1-5 Q0 MARCO_52_1211461268-3 15 0.137109 hybrid +134_1-5 Q0 MARCO_53_1305472506-2 16 0.134620 hybrid +134_1-5 Q0 MARCO_30_1257398141-1 17 0.132419 hybrid +134_1-5 Q0 MARCO_39_1718421399-1 18 0.131430 hybrid +134_1-5 Q0 MARCO_29_887550815-1 19 0.129387 hybrid +134_1-5 Q0 MARCO_52_1211574383-3 20 0.123724 hybrid +134_1-5 Q0 MARCO_52_1211453359-3 21 0.117454 hybrid +134_1-5 Q0 MARCO_52_1211446480-3 22 0.117390 hybrid +134_1-5 Q0 MARCO_52_1211446480-5 23 0.117390 hybrid +134_1-5 Q0 MARCO_06_1359167554-1 24 0.114359 hybrid +134_1-5 Q0 MARCO_31_53883007-3 25 0.095692 hybrid +134_1-5 Q0 MARCO_14_752773680-1 26 0.092932 hybrid +134_1-5 Q0 MARCO_28_259515576-1 27 0.087763 hybrid +134_1-5 Q0 MARCO_24_1012032122-4 28 0.085865 hybrid +134_1-5 Q0 MARCO_15_1700224768-1 29 0.081860 hybrid +134_1-5 Q0 MARCO_49_1235260263-1 30 0.081286 hybrid +134_1-5 Q0 MARCO_13_709224943-1 31 0.079691 hybrid +134_1-5 Q0 MARCO_52_1211446480-1 32 0.075191 hybrid +134_1-5 Q0 MARCO_31_53883007-1 33 0.072958 hybrid +134_1-5 Q0 MARCO_13_709224943-5 34 0.071347 hybrid +134_1-5 Q0 MARCO_44_123841049-1 35 0.070022 hybrid +134_1-5 Q0 MARCO_41_533705887-1 36 0.068842 hybrid +134_1-5 Q0 MARCO_22_345264832-1 37 0.067183 hybrid +134_1-5 Q0 MARCO_43_797381524-1 38 0.065683 hybrid +134_1-5 Q0 MARCO_35_1249226879-1 39 0.065188 hybrid +134_1-5 Q0 MARCO_43_797390623-1 40 0.062939 hybrid +134_1-5 Q0 MARCO_29_976450025-1 41 0.062843 hybrid +134_1-5 Q0 MARCO_29_887550815-2 42 0.059971 hybrid +134_1-5 Q0 MARCO_26_146440763-3 43 0.059190 hybrid +134_1-5 Q0 MARCO_29_976450025-3 44 0.058344 hybrid +134_1-5 Q0 MARCO_32_1214850302-1 45 0.052808 hybrid +134_1-5 Q0 MARCO_22_345264832-3 46 0.050750 hybrid +134_1-5 Q0 MARCO_26_143756884-1 47 0.050750 hybrid +134_1-5 Q0 MARCO_27_1044935462-1 48 0.048819 hybrid +134_1-5 Q0 MARCO_44_124223613-1 49 0.043906 hybrid +134_1-5 Q0 MARCO_23_1313031046-3 50 0.043172 hybrid +134_1-5 Q0 MARCO_24_1012032122-1 51 0.042470 hybrid +134_1-5 Q0 MARCO_13_708970611-1 52 0.039981 hybrid +134_1-5 Q0 MARCO_22_321511964-1 53 0.034924 hybrid +134_1-5 Q0 MARCO_24_1645980440-5 54 0.027074 hybrid +134_1-5 Q0 MARCO_12_66049874-1 55 0.025638 hybrid +134_1-5 Q0 MARCO_51_838065602-1 56 0.023756 hybrid +134_1-5 Q0 MARCO_26_962809572-1 57 0.019352 hybrid +134_1-5 Q0 MARCO_53_1292263678-4 58 0.017948 hybrid +134_1-5 Q0 MARCO_32_1367701068-1 59 0.017789 hybrid +134_1-5 Q0 MARCO_11_1159856792-1 60 0.016927 hybrid +134_1-5 Q0 MARCO_22_1749099142-1 61 0.016528 hybrid +134_1-5 Q0 MARCO_52_1211439575-3 62 0.016002 hybrid +134_1-5 Q0 MARCO_52_1211439575-5 63 0.016002 hybrid +134_1-5 Q0 MARCO_43_254211948-1 64 0.015284 hybrid +134_1-5 Q0 MARCO_32_1214850302-4 65 0.010131 hybrid +134_1-5 Q0 MARCO_51_838065602-2 66 0.010115 hybrid +134_1-5 Q0 MARCO_52_1211461268-2 67 0.008807 hybrid +134_1-5 Q0 MARCO_49_1235271358-1 68 0.008073 hybrid +134_1-5 Q0 MARCO_42_274257559-5 69 0.006733 hybrid +134_1-5 Q0 MARCO_20_703935175-5 70 0.002792 hybrid +134_1-5 Q0 MARCO_22_322511528-3 71 0.001691 hybrid +134_1-5 Q0 MARCO_51_836313617-2 72 0.001691 hybrid +134_1-5 Q0 MARCO_42_274239680-1 73 0.001181 hybrid +134_1-5 Q0 MARCO_42_274257559-1 74 0.001180 hybrid +134_1-5 Q0 MARCO_31_53883007-15 75 0.000606 hybrid +134_1-5 Q0 MARCO_52_1211439575-1 76 -0.001500 hybrid +134_1-5 Q0 MARCO_52_1211461268-1 77 -0.001500 hybrid +134_1-5 Q0 MARCO_52_1211453359-1 78 -0.001500 hybrid +134_1-5 Q0 MARCO_52_1211574383-1 79 -0.001500 hybrid +134_1-5 Q0 MARCO_30_1698996763-8 80 -0.001659 hybrid +134_1-5 Q0 MARCO_20_703935175-9 81 -0.001835 hybrid +134_1-5 Q0 MARCO_47_499891887-3 82 -0.001867 hybrid +134_1-5 Q0 MARCO_47_499896894-3 83 -0.001867 hybrid +134_1-5 Q0 MARCO_29_878601710-1 84 -0.001962 hybrid +134_1-5 Q0 MARCO_52_1211446480-2 85 -0.003510 hybrid +134_1-5 Q0 MARCO_26_144095266-1 86 -0.004962 hybrid +134_1-5 Q0 MARCO_26_144142492-2 87 -0.008312 hybrid +134_1-5 Q0 MARCO_38_82858518-10 88 -0.011295 hybrid +134_1-5 Q0 MARCO_33_59708426-1 89 -0.012508 hybrid +134_1-5 Q0 MARCO_24_1645907032-5 90 -0.013098 hybrid +134_1-5 Q0 MARCO_28_74614503-7 91 -0.013130 hybrid +134_1-5 Q0 MARCO_24_1645980440-1 92 -0.013305 hybrid +134_1-5 Q0 MARCO_20_703918715-3 93 -0.013561 hybrid +134_1-5 Q0 MARCO_52_1211574383-2 94 -0.014024 hybrid +134_1-5 Q0 MARCO_00_815616478-3 95 -0.014438 hybrid +134_1-5 Q0 MARCO_39_1718359822-1 96 -0.014439 hybrid +134_1-5 Q0 MARCO_39_1718355717-1 97 -0.014439 hybrid +134_1-5 Q0 MARCO_50_610464733-1 98 -0.016848 hybrid +134_1-5 Q0 MARCO_42_274272593-6 99 -0.017119 hybrid +134_1-5 Q0 MARCO_30_882440604-5 100 -0.020054 hybrid +134_1-7 Q0 MARCO_22_1749042451-6 1 0.500000 hybrid +134_1-7 Q0 MARCO_31_50218972-8 2 0.160202 hybrid +134_1-7 Q0 MARCO_31_53254925-2 3 0.074482 hybrid +134_1-7 Q0 MARCO_49_1558476537-6 4 0.047803 hybrid +134_1-7 Q0 MARCO_28_186560699-4 5 -0.009341 hybrid +134_1-7 Q0 MARCO_28_186478106-4 6 -0.014622 hybrid +134_1-7 Q0 MARCO_28_186478106-6 7 -0.014622 hybrid +134_1-7 Q0 MARCO_57_1458220794-4 8 -0.053728 hybrid +134_1-7 Q0 MARCO_57_1464598561-8 9 -0.068892 hybrid +134_1-7 Q0 MARCO_49_1231809948-6 10 -0.068955 hybrid +134_1-7 Q0 MARCO_49_1231809948-8 11 -0.068955 hybrid +134_1-7 Q0 MARCO_14_1606737813-9 12 -0.072582 hybrid +134_1-7 Q0 MARCO_57_1464965738-3 13 -0.077725 hybrid +134_1-7 Q0 MARCO_57_1461262047-33 14 -0.077969 hybrid +134_1-7 Q0 MARCO_57_1464290693-11 15 -0.077969 hybrid +134_1-7 Q0 MARCO_57_1458220794-6 16 -0.097522 hybrid +134_1-7 Q0 MARCO_49_1235214536-1 17 -0.099876 hybrid +134_1-7 Q0 MARCO_20_1548538550-13 18 -0.124858 hybrid +134_1-7 Q0 MARCO_57_1458210108-6 19 -0.133914 hybrid +134_1-7 Q0 MARCO_57_1458597931-6 20 -0.133914 hybrid +134_1-7 Q0 MARCO_57_1464598561-10 21 -0.138484 hybrid +134_1-7 Q0 MARCO_57_1457889444-4 22 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1457907293-6 23 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1458134270-4 24 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1458142517-6 25 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1458142517-4 26 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1458300641-4 27 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1458750250-4 28 -0.148717 hybrid +134_1-7 Q0 MARCO_57_1458847385-5 29 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1458976154-18 30 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1459401063-7 31 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1459401063-9 32 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1459852017-11 33 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1459852017-9 34 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1459925334-25 35 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1460284983-17 36 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1460310342-12 37 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1460310342-10 38 -0.148718 hybrid +134_1-7 Q0 MARCO_57_1460364132-12 39 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1460364132-10 40 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1461011874-15 41 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1461011874-13 42 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1461235744-7 43 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1461700179-15 44 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1461511820-12 45 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1461820561-8 46 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1462080969-10 47 -0.148719 hybrid +134_1-7 Q0 MARCO_57_1462314537-16 48 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1462512355-17 49 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1462573799-11 50 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1462573799-9 51 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1462962896-9 52 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1463188556-18 53 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1463383975-25 54 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1463458257-20 55 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1463941792-13 56 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1463614320-11 57 -0.148720 hybrid +134_1-7 Q0 MARCO_57_1463959197-14 58 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1463959197-16 59 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464329520-10 60 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464359543-10 61 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464629607-9 62 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464629607-7 63 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464739160-6 64 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464749897-10 65 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464749897-8 66 -0.148721 hybrid +134_1-7 Q0 MARCO_57_1464834186-6 67 -0.150636 hybrid +134_1-7 Q0 MARCO_57_1464200671-9 68 -0.153139 hybrid +134_1-7 Q0 MARCO_58_1003195566-15 69 -0.161346 hybrid +134_1-7 Q0 MARCO_13_709199646-1 70 -0.168334 hybrid +134_1-7 Q0 MARCO_13_709014490-1 71 -0.168641 hybrid +134_1-7 Q0 MARCO_57_1457814632-5 72 -0.171462 hybrid +134_1-7 Q0 MARCO_57_1457814632-7 73 -0.171462 hybrid +134_1-7 Q0 MARCO_57_1457823448-4 74 -0.171462 hybrid +134_1-7 Q0 MARCO_57_1457823448-6 75 -0.171462 hybrid +134_1-7 Q0 MARCO_57_1457831596-4 76 -0.171462 hybrid +134_1-7 Q0 MARCO_57_1457864552-4 77 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1457831596-6 78 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458150674-4 79 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1457864552-6 80 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458199040-6 81 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458150674-6 82 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458199040-8 83 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458228075-4 84 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458245540-6 85 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458228075-6 86 -0.171463 hybrid +134_1-7 Q0 MARCO_57_1458245540-8 87 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458335095-4 88 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458370837-6 89 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458370837-8 90 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458677084-7 91 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458677084-9 92 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458701523-4 93 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458766742-5 94 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458701523-6 95 -0.171464 hybrid +134_1-7 Q0 MARCO_57_1458766742-7 96 -0.171465 hybrid +134_1-7 Q0 MARCO_57_1458925402-11 97 -0.171465 hybrid +134_1-7 Q0 MARCO_57_1458925402-13 98 -0.171465 hybrid +134_1-7 Q0 MARCO_57_1459097730-10 99 -0.171465 hybrid +134_1-7 Q0 MARCO_57_1459097730-8 100 -0.171465 hybrid +134_1-9 Q0 MARCO_57_1444172002-1 1 0.500000 hybrid +134_1-9 Q0 MARCO_29_818459952-1 2 0.479219 hybrid +134_1-9 Q0 MARCO_48_667255635-1 3 0.451781 hybrid +134_1-9 Q0 MARCO_35_1249226879-1 4 0.429437 hybrid +134_1-9 Q0 MARCO_42_274239680-3 5 0.350249 hybrid +134_1-9 Q0 MARCO_33_90560061-2 6 0.312546 hybrid +134_1-9 Q0 MARCO_30_882054039-6 7 0.310038 hybrid +134_1-9 Q0 MARCO_33_90566792-2 8 0.294158 hybrid +134_1-9 Q0 MARCO_29_555756860-2 9 0.289238 hybrid +134_1-9 Q0 MARCO_30_882420744-3 10 0.281095 hybrid +134_1-9 Q0 MARCO_53_992344250-2 11 0.257323 hybrid +134_1-9 Q0 MARCO_29_555398545-7 12 0.230947 hybrid +134_1-9 Q0 MARCO_24_1645946405-1 13 0.229017 hybrid +134_1-9 Q0 MARCO_36_1067723587-1 14 0.207156 hybrid +134_1-9 Q0 MARCO_30_882440604-7 15 0.200306 hybrid +134_1-9 Q0 MARCO_11_1159856792-1 16 0.168333 hybrid +134_1-9 Q0 MARCO_31_53883007-3 17 0.164668 hybrid +134_1-9 Q0 MARCO_48_667255635-4 18 0.152068 hybrid +134_1-9 Q0 MARCO_20_703935175-5 19 0.151238 hybrid +134_1-9 Q0 MARCO_53_1305472506-2 20 0.150717 hybrid +134_1-9 Q0 MARCO_46_558759851-14 21 0.149270 hybrid +134_1-9 Q0 MARCO_46_558759851-6 22 0.149269 hybrid +134_1-9 Q0 MARCO_31_53883007-6 23 0.146588 hybrid +134_1-9 Q0 MARCO_48_1125751325-2 24 0.146279 hybrid +134_1-9 Q0 MARCO_30_1698996763-8 25 0.145855 hybrid +134_1-9 Q0 MARCO_20_703935175-9 26 0.145642 hybrid +134_1-9 Q0 MARCO_29_878601710-1 27 0.145488 hybrid +134_1-9 Q0 MARCO_20_703918715-3 28 0.131460 hybrid +134_1-9 Q0 MARCO_15_1700224768-1 29 0.124765 hybrid +134_1-9 Q0 MARCO_49_1235260263-1 30 0.124089 hybrid +134_1-9 Q0 MARCO_51_838065602-4 31 0.112204 hybrid +134_1-9 Q0 MARCO_38_82412737-23 32 0.111972 hybrid +134_1-9 Q0 MARCO_22_345264832-6 33 0.107052 hybrid +134_1-9 Q0 MARCO_11_1159856792-2 34 0.106705 hybrid +134_1-9 Q0 MARCO_52_1211446480-1 35 0.105334 hybrid +134_1-9 Q0 MARCO_14_752773680-1 36 0.103636 hybrid +134_1-9 Q0 MARCO_13_709204236-1 37 0.099700 hybrid +134_1-9 Q0 MARCO_51_45716804-1 38 0.098060 hybrid +134_1-9 Q0 MARCO_28_591039173-4 39 0.091596 hybrid +134_1-9 Q0 MARCO_12_66049874-3 40 0.091017 hybrid +134_1-9 Q0 MARCO_52_1211461268-3 41 0.090593 hybrid +134_1-9 Q0 MARCO_30_1698996763-1 42 0.086637 hybrid +134_1-9 Q0 MARCO_24_1012072495-1 43 0.086618 hybrid +134_1-9 Q0 MARCO_32_1214850302-3 44 0.086579 hybrid +134_1-9 Q0 MARCO_52_1211453359-3 45 0.081852 hybrid +134_1-9 Q0 MARCO_52_1211574383-3 46 0.081852 hybrid +134_1-9 Q0 MARCO_13_709224943-1 47 0.080810 hybrid +134_1-9 Q0 MARCO_13_709244433-1 48 0.080810 hybrid +134_1-9 Q0 MARCO_53_1305804923-1 49 0.079228 hybrid +134_1-9 Q0 MARCO_11_1159856792-3 50 0.078475 hybrid +134_1-9 Q0 MARCO_30_1698996763-7 51 0.078128 hybrid +134_1-9 Q0 MARCO_30_1698996763-2 52 0.076295 hybrid +134_1-9 Q0 MARCO_52_1211446480-3 53 0.075813 hybrid +134_1-9 Q0 MARCO_52_1211446480-5 54 0.075812 hybrid +134_1-9 Q0 MARCO_12_66049874-2 55 0.073169 hybrid +134_1-9 Q0 MARCO_38_82412737-19 56 0.072648 hybrid +134_1-9 Q0 MARCO_38_82412737-11 57 0.072629 hybrid +134_1-9 Q0 MARCO_38_82412737-17 58 0.072629 hybrid +134_1-9 Q0 MARCO_38_82412737-15 59 0.072629 hybrid +134_1-9 Q0 MARCO_38_82412737-21 60 0.072628 hybrid +134_1-9 Q0 MARCO_38_82412737-26 61 0.072628 hybrid +134_1-9 Q0 MARCO_38_82412737-28 62 0.072628 hybrid +134_1-9 Q0 MARCO_26_147211314-3 63 0.069947 hybrid +134_1-9 Q0 MARCO_38_807903931-1 64 0.067690 hybrid +134_1-9 Q0 MARCO_38_82412737-13 65 0.066782 hybrid +134_1-9 Q0 MARCO_23_1665095932-2 66 0.066107 hybrid +134_1-9 Q0 MARCO_38_82412737-30 67 0.066030 hybrid +134_1-9 Q0 MARCO_22_345264832-1 68 0.065683 hybrid +134_1-9 Q0 MARCO_26_146361858-1 69 0.065682 hybrid +134_1-9 Q0 MARCO_29_1500838807-1 70 0.061168 hybrid +134_1-9 Q0 MARCO_54_244966628-2 71 0.060241 hybrid +134_1-9 Q0 MARCO_15_1699176652-1 72 0.059064 hybrid +134_1-9 Q0 MARCO_22_321287720-1 73 0.059064 hybrid +134_1-9 Q0 MARCO_43_792592473-1 74 0.059064 hybrid +134_1-9 Q0 MARCO_13_709110083-1 75 0.058775 hybrid +134_1-9 Q0 MARCO_50_610464733-2 76 0.058273 hybrid +134_1-9 Q0 MARCO_26_146440763-1 77 0.054106 hybrid +134_1-9 Q0 MARCO_12_66049874-1 78 0.052735 hybrid +134_1-9 Q0 MARCO_22_321291758-1 79 0.052735 hybrid +134_1-9 Q0 MARCO_26_144142492-1 80 0.051269 hybrid +134_1-9 Q0 MARCO_30_1698625658-1 81 0.049417 hybrid +134_1-9 Q0 MARCO_30_1698609926-6 82 0.048587 hybrid +134_1-9 Q0 MARCO_32_1214850302-1 83 0.048298 hybrid +134_1-9 Q0 MARCO_48_1125751325-18 84 0.046561 hybrid +134_1-9 Q0 MARCO_26_962809572-1 85 0.046503 hybrid +134_1-9 Q0 MARCO_15_1699172439-1 86 0.046445 hybrid +134_1-9 Q0 MARCO_24_1012032122-1 87 0.042606 hybrid +134_1-9 Q0 MARCO_53_1292263678-4 88 0.042046 hybrid +134_1-9 Q0 MARCO_31_53883007-1 89 0.041718 hybrid +134_1-9 Q0 MARCO_27_1044935462-1 90 0.039846 hybrid +134_1-9 Q0 MARCO_49_1235271358-1 91 0.035524 hybrid +134_1-9 Q0 MARCO_24_1012032122-4 92 0.034424 hybrid +134_1-9 Q0 MARCO_42_274257559-5 93 0.033903 hybrid +134_1-9 Q0 MARCO_13_708970611-1 94 0.032784 hybrid +134_1-9 Q0 MARCO_41_2180562057-1 95 0.032456 hybrid +134_1-9 Q0 MARCO_49_1232166542-2 96 0.032089 hybrid +134_1-9 Q0 MARCO_40_1779643404-2 97 0.031299 hybrid +134_1-9 Q0 MARCO_30_1698625658-6 98 0.028559 hybrid +134_1-9 Q0 MARCO_38_82412737-2 99 0.028443 hybrid +134_1-9 Q0 MARCO_27_1109745040-1 100 0.026957 hybrid +134_2-1 Q0 MARCO_11_119170152-4 1 0.500000 hybrid +134_2-1 Q0 MARCO_50_1012198764-6 2 0.416943 hybrid +134_2-1 Q0 MARCO_55_229545240-3 3 0.146230 hybrid +134_2-1 Q0 MARCO_33_1242858838-11 4 0.131282 hybrid +134_2-1 Q0 MARCO_40_1464386990-67 5 0.124854 hybrid +134_2-1 Q0 MARCO_41_1109768126-40 6 0.103201 hybrid +134_2-1 Q0 MARCO_36_905975776-1 7 0.095532 hybrid +134_2-1 Q0 MARCO_40_76037309-6 8 0.085678 hybrid +134_2-1 Q0 MARCO_02_1300367875-38 9 0.058523 hybrid +134_2-1 Q0 MARCO_27_1087098863-21 10 0.053819 hybrid +134_2-1 Q0 MARCO_05_702532480-10 11 0.041427 hybrid +134_2-1 Q0 MARCO_22_1284614035-10 12 0.037129 hybrid +134_2-1 Q0 MARCO_45_1637240152-2 13 0.030535 hybrid +134_2-1 Q0 MARCO_55_214137423-5 14 0.007585 hybrid +134_2-1 Q0 MARCO_58_970269991-5 15 0.004566 hybrid +134_2-1 Q0 MARCO_28_474264632-12 16 0.001047 hybrid +134_2-1 Q0 MARCO_45_867413028-4 17 -0.013438 hybrid +134_2-1 Q0 MARCO_52_300123075-274 18 -0.020051 hybrid +134_2-1 Q0 MARCO_20_696299228-4 19 -0.023589 hybrid +134_2-1 Q0 MARCO_20_696316050-5 20 -0.023589 hybrid +134_2-1 Q0 MARCO_08_1642202575-7 21 -0.039889 hybrid +134_2-1 Q0 MARCO_55_216644703-8 22 -0.041519 hybrid +134_2-1 Q0 MARCO_28_252169846-20 23 -0.049558 hybrid +134_2-1 Q0 MARCO_52_1171087868-18 24 -0.051410 hybrid +134_2-1 Q0 MARCO_20_382075984-4 25 -0.065395 hybrid +134_2-1 Q0 MARCO_05_614277732-6 26 -0.070878 hybrid +134_2-1 Q0 MARCO_12_92202134-69 27 -0.088605 hybrid +134_2-1 Q0 MARCO_33_1135783639-1 28 -0.090457 hybrid +134_2-1 Q0 MARCO_50_2284373252-6 29 -0.093976 hybrid +134_2-1 Q0 MARCO_02_1317223585-2 30 -0.094587 hybrid +134_2-1 Q0 MARCO_06_897976870-22 31 -0.097607 hybrid +134_2-1 Q0 MARCO_50_2173365569-8 32 -0.105331 hybrid +134_2-1 Q0 MARCO_50_510058971-13 33 -0.106442 hybrid +134_2-1 Q0 MARCO_38_866629951-45 34 -0.107943 hybrid +134_2-1 Q0 MARCO_51_109567731-2 35 -0.111629 hybrid +134_2-1 Q0 MARCO_52_1169830604-16 36 -0.119723 hybrid +134_2-1 Q0 MARCO_57_1884606343-13 37 -0.122668 hybrid +134_2-1 Q0 MARCO_20_756907000-3 38 -0.123057 hybrid +134_2-1 Q0 MARCO_36_939912639-3 39 -0.126225 hybrid +134_2-1 Q0 MARCO_50_2330577004-48 40 -0.128799 hybrid +134_2-1 Q0 MARCO_32_1253857810-11 41 -0.131670 hybrid +134_2-1 Q0 MARCO_55_213761152-16 42 -0.132004 hybrid +134_2-1 Q0 MARCO_13_1353952533-15 43 -0.132523 hybrid +134_2-1 Q0 MARCO_55_209334100-9 44 -0.133430 hybrid +134_2-1 Q0 MARCO_15_641358567-1 45 -0.133986 hybrid +134_2-1 Q0 MARCO_26_430454398-4 46 -0.134560 hybrid +134_2-1 Q0 MARCO_26_27585716-18 47 -0.137728 hybrid +134_2-1 Q0 MARCO_14_1535537025-6 48 -0.140024 hybrid +134_2-1 Q0 MARCO_41_1377037745-7 49 -0.141210 hybrid +134_2-1 Q0 MARCO_57_559059433-19 50 -0.144562 hybrid +134_2-1 Q0 MARCO_29_555976794-4 51 -0.145711 hybrid +134_2-1 Q0 MARCO_48_692965795-5 52 -0.146007 hybrid +134_2-1 Q0 MARCO_55_240061804-5 53 -0.146415 hybrid +134_2-1 Q0 MARCO_04_1096237509-4 54 -0.148767 hybrid +134_2-1 Q0 MARCO_42_1016000274-10 55 -0.151638 hybrid +134_2-1 Q0 MARCO_44_808370307-6 56 -0.157492 hybrid +134_2-1 Q0 MARCO_31_236742158-11 57 -0.158418 hybrid +134_2-1 Q0 MARCO_01_2115901464-10 58 -0.161752 hybrid +134_2-1 Q0 MARCO_05_1587598261-9 59 -0.164364 hybrid +134_2-1 Q0 MARCO_07_1200732950-10 60 -0.164401 hybrid +134_2-1 Q0 MARCO_05_1037156677-7 61 -0.165364 hybrid +134_2-1 Q0 MARCO_34_323470021-11 62 -0.165679 hybrid +134_2-1 Q0 MARCO_41_1270678948-24 63 -0.167846 hybrid +134_2-1 Q0 MARCO_34_329105468-5 64 -0.167957 hybrid +134_2-1 Q0 MARCO_33_1129645919-1 65 -0.169865 hybrid +134_2-1 Q0 MARCO_34_135122534-2 66 -0.172958 hybrid +134_2-1 Q0 MARCO_41_1097948720-49 67 -0.173644 hybrid +134_2-1 Q0 MARCO_55_207962530-7 68 -0.174533 hybrid +134_2-1 Q0 MARCO_41_1023348476-9 69 -0.175811 hybrid +134_2-1 Q0 MARCO_47_374849949-6 70 -0.183553 hybrid +134_2-1 Q0 MARCO_49_400153209-10 71 -0.186702 hybrid +134_2-1 Q0 MARCO_34_329105468-6 72 -0.187351 hybrid +134_2-1 Q0 MARCO_43_766434023-2 73 -0.188036 hybrid +134_2-1 Q0 MARCO_29_555952707-4 74 -0.188295 hybrid +134_2-1 Q0 MARCO_40_979694461-1 75 -0.188832 hybrid +134_2-1 Q0 MARCO_07_1426211455-142 76 -0.189370 hybrid +134_2-1 Q0 MARCO_07_91904366-10 77 -0.189407 hybrid +134_2-1 Q0 MARCO_55_215815447-9 78 -0.190148 hybrid +134_2-1 Q0 MARCO_01_1679764837-12 79 -0.191426 hybrid +134_2-1 Q0 MARCO_45_139701035-5 80 -0.191741 hybrid +134_2-1 Q0 MARCO_59_419970591-7 81 -0.192870 hybrid +134_2-1 Q0 MARCO_15_616461528-22 82 -0.192889 hybrid +134_2-1 Q0 MARCO_42_368808063-7 83 -0.194389 hybrid +134_2-1 Q0 MARCO_55_235286247-19 84 -0.194556 hybrid +134_2-1 Q0 MARCO_00_1209134438-1 85 -0.195075 hybrid +134_2-1 Q0 MARCO_05_128222084-7 86 -0.196594 hybrid +134_2-1 Q0 MARCO_55_207982813-2 87 -0.197520 hybrid +134_2-1 Q0 MARCO_08_1643779415-3 88 -0.197853 hybrid +134_2-1 Q0 MARCO_06_298627574-153 89 -0.198427 hybrid +134_2-1 Q0 MARCO_00_238354317-3 90 -0.199335 hybrid +134_2-1 Q0 MARCO_35_234868248-5 91 -0.203317 hybrid +134_2-1 Q0 MARCO_55_209137158-8 92 -0.203984 hybrid +134_2-1 Q0 MARCO_29_714495906-30 93 -0.205114 hybrid +134_2-1 Q0 MARCO_36_939840359-5 94 -0.205170 hybrid +134_2-1 Q0 MARCO_10_1626270401-14 95 -0.205633 hybrid +134_2-1 Q0 MARCO_05_1763925402-16 96 -0.206281 hybrid +134_2-1 Q0 MARCO_10_40082533-17 97 -0.206559 hybrid +134_2-1 Q0 MARCO_14_895563130-6 98 -0.206689 hybrid +134_2-1 Q0 MARCO_51_980837016-6 99 -0.208856 hybrid +134_2-1 Q0 MARCO_11_877903680-26 100 -0.209689 hybrid +134_2-3 Q0 MARCO_47_951489647-1 1 0.500000 hybrid +134_2-3 Q0 MARCO_58_1446037426-1 2 0.296820 hybrid +134_2-3 Q0 MARCO_50_2033468525-12 3 0.248098 hybrid +134_2-3 Q0 MARCO_53_721787782-1 4 0.243482 hybrid +134_2-3 Q0 MARCO_52_621018191-1 5 0.239636 hybrid +134_2-3 Q0 MARCO_09_946383723-8 6 0.218609 hybrid +134_2-3 Q0 MARCO_40_653332427-1 7 0.182451 hybrid +134_2-3 Q0 MARCO_15_1803991541-1 8 0.179973 hybrid +134_2-3 Q0 MARCO_42_27241706-2 9 0.167749 hybrid +134_2-3 Q0 MARCO_08_1494380228-3 10 0.167237 hybrid +134_2-3 Q0 MARCO_41_707896190-1 11 0.167236 hybrid +134_2-3 Q0 MARCO_07_1156626082-1 12 0.148517 hybrid +134_2-3 Q0 MARCO_15_466552679-2 13 0.136294 hybrid +134_2-3 Q0 MARCO_44_1996549323-9 14 0.119540 hybrid +134_2-3 Q0 MARCO_28_213608885-1 15 0.118429 hybrid +134_2-3 Q0 MARCO_06_1428568519-3 16 0.105351 hybrid +134_2-3 Q0 MARCO_50_2557300972-4 17 0.096889 hybrid +134_2-3 Q0 MARCO_55_205723866-3 18 0.091589 hybrid +134_2-3 Q0 MARCO_23_1228250676-1 19 0.079622 hybrid +134_2-3 Q0 MARCO_39_215014045-7 20 0.067057 hybrid +134_2-3 Q0 MARCO_41_707896190-3 21 0.060304 hybrid +134_2-3 Q0 MARCO_48_1705318825-3 22 0.050731 hybrid +134_2-3 Q0 MARCO_41_1162108640-30 23 0.039875 hybrid +134_2-3 Q0 MARCO_12_1716720298-1 24 0.022865 hybrid +134_2-3 Q0 MARCO_31_738962912-8 25 0.017908 hybrid +134_2-3 Q0 MARCO_50_2503968444-7 26 0.016369 hybrid +134_2-3 Q0 MARCO_30_131177147-1 27 0.015942 hybrid +134_2-3 Q0 MARCO_46_289337347-1 28 0.015087 hybrid +134_2-3 Q0 MARCO_44_96259872-11 29 0.013548 hybrid +134_2-3 Q0 MARCO_20_1207320683-1 30 0.012010 hybrid +134_2-3 Q0 MARCO_50_2187779167-20 31 0.011753 hybrid +134_2-3 Q0 MARCO_20_742789920-1 32 0.010044 hybrid +134_2-3 Q0 MARCO_15_1379863493-1 33 0.008847 hybrid +134_2-3 Q0 MARCO_02_291313411-1 34 0.005171 hybrid +134_2-3 Q0 MARCO_53_1049070637-7 35 -0.000812 hybrid +134_2-3 Q0 MARCO_38_714166213-29 36 -0.001581 hybrid +134_2-3 Q0 MARCO_22_180533651-11 37 -0.004488 hybrid +134_2-3 Q0 MARCO_08_1743934346-26 38 -0.006197 hybrid +134_2-3 Q0 MARCO_20_1457656494-1 39 -0.009958 hybrid +134_2-3 Q0 MARCO_20_1636487322-1 40 -0.016540 hybrid +134_2-3 Q0 MARCO_06_639374388-1 41 -0.018591 hybrid +134_2-3 Q0 MARCO_36_1374474204-23 42 -0.023464 hybrid +134_2-3 Q0 MARCO_52_1795087482-29 43 -0.026797 hybrid +134_2-3 Q0 MARCO_12_988315249-6 44 -0.029532 hybrid +134_2-3 Q0 MARCO_47_1240613706-1 45 -0.034319 hybrid +134_2-3 Q0 MARCO_57_1492392806-1 46 -0.036200 hybrid +134_2-3 Q0 MARCO_50_1270374290-85 47 -0.036798 hybrid +134_2-3 Q0 MARCO_14_1636803761-6 48 -0.038080 hybrid +134_2-3 Q0 MARCO_43_1557797038-1 49 -0.040644 hybrid +134_2-3 Q0 MARCO_39_120163521-10 50 -0.042525 hybrid +134_2-3 Q0 MARCO_11_628228048-23 51 -0.047654 hybrid +134_2-3 Q0 MARCO_30_1595485189-1 52 -0.051586 hybrid +134_2-3 Q0 MARCO_57_976763922-7 53 -0.059962 hybrid +134_2-3 Q0 MARCO_41_1494027208-16 54 -0.062783 hybrid +134_2-3 Q0 MARCO_55_207247288-11 55 -0.064236 hybrid +134_2-3 Q0 MARCO_14_1099126805-1 56 -0.066630 hybrid +134_2-3 Q0 MARCO_30_1582557610-1 57 -0.071074 hybrid +134_2-3 Q0 MARCO_50_1807162975-42 58 -0.071331 hybrid +134_2-3 Q0 MARCO_50_1982635580-14 59 -0.072271 hybrid +134_2-3 Q0 MARCO_15_1433107412-24 60 -0.073639 hybrid +134_2-3 Q0 MARCO_26_1046777764-1 61 -0.079280 hybrid +134_2-3 Q0 MARCO_31_1291100998-2 62 -0.079281 hybrid +134_2-3 Q0 MARCO_50_2405737183-51 63 -0.080220 hybrid +134_2-3 Q0 MARCO_04_1107647362-7 64 -0.081332 hybrid +134_2-3 Q0 MARCO_10_304901101-2 65 -0.081588 hybrid +134_2-3 Q0 MARCO_50_1036468952-22 66 -0.082956 hybrid +134_2-3 Q0 MARCO_52_583405666-2 67 -0.083725 hybrid +134_2-3 Q0 MARCO_52_1161001200-1 68 -0.085520 hybrid +134_2-3 Q0 MARCO_24_1479514366-8 69 -0.086888 hybrid +134_2-3 Q0 MARCO_06_1129222067-103 70 -0.087315 hybrid +134_2-3 Q0 MARCO_42_78806904-1 71 -0.087657 hybrid +134_2-3 Q0 MARCO_06_1219907707-110 72 -0.089110 hybrid +134_2-3 Q0 MARCO_51_370924526-12 73 -0.091162 hybrid +134_2-3 Q0 MARCO_54_2060713288-1 74 -0.092102 hybrid +134_2-3 Q0 MARCO_35_1266698134-8 75 -0.092957 hybrid +134_2-3 Q0 MARCO_53_475439961-5 76 -0.094581 hybrid +134_2-3 Q0 MARCO_02_712003865-11 77 -0.097145 hybrid +134_2-3 Q0 MARCO_57_1289737820-6 78 -0.099282 hybrid +134_2-3 Q0 MARCO_15_778177676-3 79 -0.102359 hybrid +134_2-3 Q0 MARCO_50_1416990440-1 80 -0.102445 hybrid +134_2-3 Q0 MARCO_26_415727841-10 81 -0.104325 hybrid +134_2-3 Q0 MARCO_25_1227223579-3 82 -0.107915 hybrid +134_2-3 Q0 MARCO_28_1581700153-4 83 -0.110736 hybrid +134_2-3 Q0 MARCO_51_361660244-9 84 -0.113471 hybrid +134_2-3 Q0 MARCO_53_875460446-9 85 -0.115181 hybrid +134_2-3 Q0 MARCO_41_707896190-8 86 -0.115437 hybrid +134_2-3 Q0 MARCO_29_712895325-21 87 -0.118172 hybrid +134_2-3 Q0 MARCO_20_156565102-1 88 -0.119540 hybrid +134_2-3 Q0 MARCO_33_273707300-25 89 -0.122446 hybrid +134_2-3 Q0 MARCO_30_383004794-2 90 -0.122874 hybrid +134_2-3 Q0 MARCO_45_608284319-1 91 -0.123472 hybrid +134_2-3 Q0 MARCO_50_1936532313-17 92 -0.124583 hybrid +134_2-3 Q0 MARCO_50_431730947-3 93 -0.125267 hybrid +134_2-3 Q0 MARCO_09_19886179-20 94 -0.127489 hybrid +134_2-3 Q0 MARCO_49_1817941365-1 95 -0.129028 hybrid +134_2-3 Q0 MARCO_41_1548724649-41 96 -0.129029 hybrid +134_2-3 Q0 MARCO_20_851615495-1 97 -0.130310 hybrid +134_2-3 Q0 MARCO_23_926585513-56 98 -0.131421 hybrid +134_2-3 Q0 MARCO_51_123635037-14 99 -0.132533 hybrid +134_2-3 Q0 MARCO_04_1219631432-2 100 -0.132533 hybrid +134_3-1 Q0 MARCO_43_1525559438-4 1 0.500000 hybrid +134_3-1 Q0 MARCO_04_62603617-3 2 0.454119 hybrid +134_3-1 Q0 MARCO_43_1527456020-2 3 0.437178 hybrid +134_3-1 Q0 MARCO_43_1526422030-1 4 0.381627 hybrid +134_3-1 Q0 MARCO_53_1320167529-13 5 0.324514 hybrid +134_3-1 Q0 MARCO_29_829755058-1 6 0.310090 hybrid +134_3-1 Q0 MARCO_33_50942814-1 7 0.296971 hybrid +134_3-1 Q0 MARCO_59_950531589-10 8 0.283432 hybrid +134_3-1 Q0 MARCO_11_753802296-9 9 0.277420 hybrid +134_3-1 Q0 MARCO_15_1649018272-3 10 0.276745 hybrid +134_3-1 Q0 MARCO_53_1287779363-1 11 0.276395 hybrid +134_3-1 Q0 MARCO_49_1370575421-26 12 0.266446 hybrid +134_3-1 Q0 MARCO_43_1521300793-4 13 0.265234 hybrid +134_3-1 Q0 MARCO_32_1254395771-13 14 0.253816 hybrid +134_3-1 Q0 MARCO_24_1010552548-2 15 0.250367 hybrid +134_3-1 Q0 MARCO_25_571895886-1 16 0.243353 hybrid +134_3-1 Q0 MARCO_33_289132285-1 17 0.209915 hybrid +134_3-1 Q0 MARCO_15_1644813778-5 18 0.202691 hybrid +134_3-1 Q0 MARCO_44_1119894799-1 19 0.201247 hybrid +134_3-1 Q0 MARCO_30_694378169-2 20 0.184865 hybrid +134_3-1 Q0 MARCO_15_1649183483-3 21 0.181137 hybrid +134_3-1 Q0 MARCO_43_1526777570-5 22 0.170325 hybrid +134_3-1 Q0 MARCO_33_286511929-2 23 0.162309 hybrid +134_3-1 Q0 MARCO_33_288827928-2 24 0.153594 hybrid +134_3-1 Q0 MARCO_41_609072423-2 25 0.142456 hybrid +134_3-1 Q0 MARCO_02_387021475-9 26 0.132833 hybrid +134_3-1 Q0 MARCO_47_540763366-6 27 0.128125 hybrid +134_3-1 Q0 MARCO_41_308526096-3 28 0.119038 hybrid +134_3-1 Q0 MARCO_24_1086567813-1 29 0.117849 hybrid +134_3-1 Q0 MARCO_36_909104267-9 30 0.113375 hybrid +134_3-1 Q0 MARCO_33_219107191-3 31 0.111954 hybrid +134_3-1 Q0 MARCO_15_1644862177-3 32 0.111138 hybrid +134_3-1 Q0 MARCO_04_62603617-2 33 0.100443 hybrid +134_3-1 Q0 MARCO_44_1169169258-1 34 0.099464 hybrid +134_3-1 Q0 MARCO_43_1526422030-3 35 0.098276 hybrid +134_3-1 Q0 MARCO_43_1521332427-2 36 0.086135 hybrid +134_3-1 Q0 MARCO_43_1527177923-7 37 0.085763 hybrid +134_3-1 Q0 MARCO_50_1927465220-1 38 0.080753 hybrid +134_3-1 Q0 MARCO_43_1519480019-5 39 0.079564 hybrid +134_3-1 Q0 MARCO_43_1527163076-2 40 0.078609 hybrid +134_3-1 Q0 MARCO_43_1524180834-5 41 0.074951 hybrid +134_3-1 Q0 MARCO_04_383230893-11 42 0.067471 hybrid +134_3-1 Q0 MARCO_26_144080684-5 43 0.064954 hybrid +134_3-1 Q0 MARCO_28_966163488-4 44 0.061459 hybrid +134_3-1 Q0 MARCO_24_1010209054-2 45 0.059665 hybrid +134_3-1 Q0 MARCO_33_95654368-1 46 0.037994 hybrid +134_3-1 Q0 MARCO_36_1289354136-2 47 0.036759 hybrid +134_3-1 Q0 MARCO_27_1108452548-1 48 0.030374 hybrid +134_3-1 Q0 MARCO_36_1661888719-3 49 0.019515 hybrid +134_3-1 Q0 MARCO_12_109046377-8 50 0.018094 hybrid +134_3-1 Q0 MARCO_53_1320167529-10 51 0.015111 hybrid +134_3-1 Q0 MARCO_43_1521332427-4 52 0.013760 hybrid +134_3-1 Q0 MARCO_24_1011006628-2 53 0.010987 hybrid +134_3-1 Q0 MARCO_53_908042501-1 54 0.010870 hybrid +134_3-1 Q0 MARCO_56_149902838-2 55 0.008051 hybrid +134_3-1 Q0 MARCO_51_642227128-1 56 0.005954 hybrid +134_3-1 Q0 MARCO_27_396002117-1 57 0.004579 hybrid +134_3-1 Q0 MARCO_14_900785922-1 58 0.002365 hybrid +134_3-1 Q0 MARCO_24_1645829668-2 59 0.001526 hybrid +134_3-1 Q0 MARCO_24_1955582603-1 60 0.000921 hybrid +134_3-1 Q0 MARCO_13_1194391138-4 61 -0.002365 hybrid +134_3-1 Q0 MARCO_40_977060270-4 62 -0.008657 hybrid +134_3-1 Q0 MARCO_38_1623748836-1 63 -0.009099 hybrid +134_3-1 Q0 MARCO_41_2227222408-1 64 -0.009286 hybrid +134_3-1 Q0 MARCO_12_1250763247-3 65 -0.020867 hybrid +134_3-1 Q0 MARCO_33_66653761-1 66 -0.032401 hybrid +134_3-1 Q0 MARCO_19_1910369657-2 67 -0.040091 hybrid +134_3-1 Q0 MARCO_41_607835578-1 68 -0.044169 hybrid +134_3-1 Q0 MARCO_50_2800018166-3 69 -0.044868 hybrid +134_3-1 Q0 MARCO_51_1375663603-5 70 -0.046755 hybrid +134_3-1 Q0 MARCO_14_34745860-8 71 -0.047244 hybrid +134_3-1 Q0 MARCO_57_1548216275-2 72 -0.047291 hybrid +134_3-1 Q0 MARCO_45_722866616-2 73 -0.051392 hybrid +134_3-1 Q0 MARCO_43_1526686450-4 74 -0.051579 hybrid +134_3-1 Q0 MARCO_33_289015346-11 75 -0.056146 hybrid +134_3-1 Q0 MARCO_53_1320131019-17 76 -0.057125 hybrid +134_3-1 Q0 MARCO_45_1042826087-2 77 -0.057847 hybrid +134_3-1 Q0 MARCO_15_581015685-1 78 -0.058220 hybrid +134_3-1 Q0 MARCO_57_598431548-4 79 -0.058965 hybrid +134_3-1 Q0 MARCO_38_66176751-3 80 -0.061272 hybrid +134_3-1 Q0 MARCO_51_476895609-3 81 -0.065630 hybrid +134_3-1 Q0 MARCO_44_1119894799-4 82 -0.074415 hybrid +134_3-1 Q0 MARCO_14_556989119-2 83 -0.076885 hybrid +134_3-1 Q0 MARCO_04_3777299-2 84 -0.077117 hybrid +134_3-1 Q0 MARCO_43_1522683443-1 85 -0.077118 hybrid +134_3-1 Q0 MARCO_00_1260276391-6 86 -0.078353 hybrid +134_3-1 Q0 MARCO_47_488939688-10 87 -0.078982 hybrid +134_3-1 Q0 MARCO_40_976655141-3 88 -0.080193 hybrid +134_3-1 Q0 MARCO_22_928793594-6 89 -0.081242 hybrid +134_3-1 Q0 MARCO_33_288901371-6 90 -0.083479 hybrid +134_3-1 Q0 MARCO_24_1010109763-6 91 -0.084388 hybrid +134_3-1 Q0 MARCO_54_1528235792-1 92 -0.086438 hybrid +134_3-1 Q0 MARCO_33_1024593517-1 93 -0.086578 hybrid +134_3-1 Q0 MARCO_19_2161109585-1 94 -0.089957 hybrid +134_3-1 Q0 MARCO_24_1010314004-1 95 -0.092264 hybrid +134_3-1 Q0 MARCO_44_1378409431-5 96 -0.093266 hybrid +134_3-1 Q0 MARCO_13_385566953-1 97 -0.093802 hybrid +134_3-1 Q0 MARCO_15_1648655169-4 98 -0.094640 hybrid +134_3-1 Q0 MARCO_33_323491619-2 99 -0.095969 hybrid +134_3-1 Q0 MARCO_43_1527296968-3 100 -0.097483 hybrid +134_3-3 Q0 MARCO_49_593352354-1 1 0.500000 hybrid +134_3-3 Q0 MARCO_36_932740181-4 2 0.470106 hybrid +134_3-3 Q0 MARCO_36_111462192-15 3 0.435781 hybrid +134_3-3 Q0 MARCO_10_1605638999-9 4 0.363012 hybrid +134_3-3 Q0 MARCO_53_1287791133-2 5 0.354500 hybrid +134_3-3 Q0 MARCO_16_1133103028-5 6 0.350604 hybrid +134_3-3 Q0 MARCO_46_7779561-9 7 0.275139 hybrid +134_3-3 Q0 MARCO_50_2446574456-38 8 0.263378 hybrid +134_3-3 Q0 MARCO_30_444306054-2 9 0.257746 hybrid +134_3-3 Q0 MARCO_14_1433640270-2 10 0.228775 hybrid +134_3-3 Q0 MARCO_36_111462192-6 11 0.227834 hybrid +134_3-3 Q0 MARCO_29_1497444290-7 12 0.220540 hybrid +134_3-3 Q0 MARCO_50_223577893-1 13 0.194671 hybrid +134_3-3 Q0 MARCO_36_111462192-8 14 0.181654 hybrid +134_3-3 Q0 MARCO_41_1844228176-76 15 0.163042 hybrid +134_3-3 Q0 MARCO_31_556972943-10 16 0.149876 hybrid +134_3-3 Q0 MARCO_00_1260276391-2 17 0.147716 hybrid +134_3-3 Q0 MARCO_41_354325666-1 18 0.109827 hybrid +134_3-3 Q0 MARCO_41_2220753518-4 19 0.094889 hybrid +134_3-3 Q0 MARCO_58_1696290165-1 20 0.093911 hybrid +134_3-3 Q0 MARCO_57_1149416975-2 21 0.093467 hybrid +134_3-3 Q0 MARCO_36_111462192-1 22 0.091270 hybrid +134_3-3 Q0 MARCO_20_1548582213-11 23 0.086414 hybrid +134_3-3 Q0 MARCO_11_1166065695-1 24 0.076739 hybrid +134_3-3 Q0 MARCO_56_112216252-2 25 0.051479 hybrid +134_3-3 Q0 MARCO_29_1312788065-1 26 0.046604 hybrid +134_3-3 Q0 MARCO_50_2446574456-33 27 0.044462 hybrid +134_3-3 Q0 MARCO_43_1525657113-1 28 0.040142 hybrid +134_3-3 Q0 MARCO_29_556126463-5 29 0.035046 hybrid +134_3-3 Q0 MARCO_37_1637048600-4 30 0.035027 hybrid +134_3-3 Q0 MARCO_36_111462192-9 31 0.015529 hybrid +134_3-3 Q0 MARCO_33_60742676-1 32 0.010783 hybrid +134_3-3 Q0 MARCO_29_831752572-1 33 0.009232 hybrid +134_3-3 Q0 MARCO_38_32360979-1 34 0.005779 hybrid +134_3-3 Q0 MARCO_47_489790266-1 35 0.001366 hybrid +134_3-3 Q0 MARCO_11_1166032306-7 36 -0.004118 hybrid +134_3-3 Q0 MARCO_41_1844228176-71 37 -0.008143 hybrid +134_3-3 Q0 MARCO_16_1133715027-4 38 -0.011319 hybrid +134_3-3 Q0 MARCO_12_1250770070-1 39 -0.015492 hybrid +134_3-3 Q0 MARCO_29_999041215-1 40 -0.019535 hybrid +134_3-3 Q0 MARCO_29_986268325-2 41 -0.037040 hybrid +134_3-3 Q0 MARCO_01_1386463257-4 42 -0.038092 hybrid +134_3-3 Q0 MARCO_50_1725621751-15 43 -0.040179 hybrid +134_3-3 Q0 MARCO_00_1260276391-87 44 -0.045460 hybrid +134_3-3 Q0 MARCO_15_1699747270-2 45 -0.046826 hybrid +134_3-3 Q0 MARCO_12_376841438-1 46 -0.046863 hybrid +134_3-3 Q0 MARCO_41_1844228176-41 47 -0.055560 hybrid +134_3-3 Q0 MARCO_38_66176751-1 48 -0.062706 hybrid +134_3-3 Q0 MARCO_00_1260276391-110 49 -0.064700 hybrid +134_3-3 Q0 MARCO_00_1268443533-6 50 -0.065438 hybrid +134_3-3 Q0 MARCO_00_1260276391-6 51 -0.066805 hybrid +134_3-3 Q0 MARCO_59_779788528-5 52 -0.072030 hybrid +134_3-3 Q0 MARCO_50_223577893-3 53 -0.073101 hybrid +134_3-3 Q0 MARCO_04_272468965-3 54 -0.077071 hybrid +134_3-3 Q0 MARCO_33_97517538-1 55 -0.078086 hybrid +134_3-3 Q0 MARCO_50_2446574456-24 56 -0.081816 hybrid +134_3-3 Q0 MARCO_50_1206422828-15 57 -0.083164 hybrid +134_3-3 Q0 MARCO_08_1657446791-4 58 -0.090993 hybrid +134_3-3 Q0 MARCO_00_1260276391-3 59 -0.091233 hybrid +134_3-3 Q0 MARCO_15_1699747270-1 60 -0.092950 hybrid +134_3-3 Q0 MARCO_13_1321371070-12 61 -0.094612 hybrid +134_3-3 Q0 MARCO_58_833894645-4 62 -0.096163 hybrid +134_3-3 Q0 MARCO_41_288676700-1 63 -0.096514 hybrid +134_3-3 Q0 MARCO_35_406898141-2 64 -0.098877 hybrid +134_3-3 Q0 MARCO_37_1668091923-15 65 -0.102035 hybrid +134_3-3 Q0 MARCO_41_2220997535-1 66 -0.103401 hybrid +134_3-3 Q0 MARCO_58_1699298423-3 67 -0.104546 hybrid +134_3-3 Q0 MARCO_55_285696593-5 68 -0.105451 hybrid +134_3-3 Q0 MARCO_14_1433640270-21 69 -0.108091 hybrid +134_3-3 Q0 MARCO_32_1692397041-6 70 -0.108830 hybrid +134_3-3 Q0 MARCO_24_4970257-1 71 -0.111544 hybrid +134_3-3 Q0 MARCO_29_592294875-5 72 -0.113132 hybrid +134_3-3 Q0 MARCO_00_1260276391-38 73 -0.116511 hybrid +134_3-3 Q0 MARCO_33_704628461-1 74 -0.117194 hybrid +134_3-3 Q0 MARCO_40_1779718880-1 75 -0.117268 hybrid +134_3-3 Q0 MARCO_41_1844228176-45 76 -0.118763 hybrid +134_3-3 Q0 MARCO_00_1260276391-21 77 -0.119059 hybrid +134_3-3 Q0 MARCO_53_1287779363-7 78 -0.119059 hybrid +134_3-3 Q0 MARCO_51_737199831-2 79 -0.119650 hybrid +134_3-3 Q0 MARCO_22_923946999-1 80 -0.121976 hybrid +134_3-3 Q0 MARCO_24_1010160799-4 81 -0.122678 hybrid +134_3-3 Q0 MARCO_29_986268325-6 82 -0.122899 hybrid +134_3-3 Q0 MARCO_49_1558777981-1 83 -0.124691 hybrid +134_3-3 Q0 MARCO_45_141710890-11 84 -0.126297 hybrid +134_3-3 Q0 MARCO_43_1522683443-5 85 -0.126518 hybrid +134_3-3 Q0 MARCO_54_93559213-2 86 -0.129621 hybrid +134_3-3 Q0 MARCO_50_2446574456-27 87 -0.131172 hybrid +134_3-3 Q0 MARCO_50_2446574456-29 88 -0.131172 hybrid +134_3-3 Q0 MARCO_30_1771721277-4 89 -0.133037 hybrid +134_3-3 Q0 MARCO_49_1236902872-19 90 -0.139868 hybrid +134_3-3 Q0 MARCO_29_1312797108-1 91 -0.141973 hybrid +134_3-3 Q0 MARCO_49_592433716-5 92 -0.142472 hybrid +134_3-3 Q0 MARCO_50_2522589290-14 93 -0.143986 hybrid +134_3-3 Q0 MARCO_43_1527163076-3 94 -0.151667 hybrid +134_3-3 Q0 MARCO_55_858822557-1 95 -0.151833 hybrid +134_3-3 Q0 MARCO_54_84407735-1 96 -0.153772 hybrid +134_3-3 Q0 MARCO_50_1181836085-8 97 -0.153772 hybrid +134_3-3 Q0 MARCO_00_1260276391-127 98 -0.156874 hybrid +134_3-3 Q0 MARCO_12_109127793-1 99 -0.159090 hybrid +134_3-3 Q0 MARCO_49_592433716-8 100 -0.159533 hybrid +134_3-5 Q0 MARCO_58_920132313-2 1 0.500000 hybrid +134_3-5 Q0 MARCO_29_858098854-4 2 0.489780 hybrid +134_3-5 Q0 MARCO_12_692462615-5 3 0.436588 hybrid +134_3-5 Q0 MARCO_28_1747520260-11 4 0.407647 hybrid +134_3-5 Q0 MARCO_58_920132313-5 5 0.407304 hybrid +134_3-5 Q0 MARCO_50_1581169528-1 6 0.314076 hybrid +134_3-5 Q0 MARCO_43_718709868-1 7 0.298450 hybrid +134_3-5 Q0 MARCO_55_656430583-4 8 0.297450 hybrid +134_3-5 Q0 MARCO_52_1731113659-2 9 0.281386 hybrid +134_3-5 Q0 MARCO_22_1079808634-2 10 0.254196 hybrid +134_3-5 Q0 MARCO_16_1130916381-1 11 0.244976 hybrid +134_3-5 Q0 MARCO_28_342834928-2 12 0.227881 hybrid +134_3-5 Q0 MARCO_36_920838991-1 13 0.225599 hybrid +134_3-5 Q0 MARCO_33_65471687-4 14 0.214817 hybrid +134_3-5 Q0 MARCO_10_175883351-2 15 0.195034 hybrid +134_3-5 Q0 MARCO_30_433509918-2 16 0.195033 hybrid +134_3-5 Q0 MARCO_22_1237929300-2 17 0.192752 hybrid +134_3-5 Q0 MARCO_08_822668977-2 18 0.190908 hybrid +134_3-5 Q0 MARCO_33_72833203-5 19 0.181439 hybrid +134_3-5 Q0 KILT_37848383-1 20 0.173500 hybrid +134_3-5 Q0 MARCO_29_420603151-1 21 0.169688 hybrid +134_3-5 Q0 MARCO_57_1164317272-56 22 0.163969 hybrid +134_3-5 Q0 MARCO_55_285602292-8 23 0.135059 hybrid +134_3-5 Q0 MARCO_29_963961855-2 24 0.129403 hybrid +134_3-5 Q0 MARCO_24_1010817940-4 25 0.128434 hybrid +134_3-5 Q0 MARCO_12_865112947-19 26 0.128090 hybrid +134_3-5 Q0 MARCO_31_1030579740-1 27 0.117839 hybrid +134_3-5 Q0 MARCO_15_1770265464-9 28 0.109245 hybrid +134_3-5 Q0 MARCO_31_1423583880-2 29 0.097931 hybrid +134_3-5 Q0 MARCO_27_696024453-23 30 0.097150 hybrid +134_3-5 Q0 MARCO_33_67647721-1 31 0.085023 hybrid +134_3-5 Q0 MARCO_05_323712534-1 32 0.081742 hybrid +134_3-5 Q0 MARCO_07_701837540-4 33 0.074522 hybrid +134_3-5 Q0 MARCO_15_1770071574-19 34 0.071960 hybrid +134_3-5 Q0 MARCO_15_1808939076-4 35 0.071116 hybrid +134_3-5 Q0 MARCO_22_937889472-4 36 0.068741 hybrid +134_3-5 Q0 MARCO_21_189571862-3 37 0.065147 hybrid +134_3-5 Q0 MARCO_46_91189409-9 38 0.065115 hybrid +134_3-5 Q0 MARCO_35_844191390-8 39 0.063334 hybrid +134_3-5 Q0 MARCO_57_1455458189-24 40 0.062772 hybrid +134_3-5 Q0 MARCO_00_621884290-2 41 0.055052 hybrid +134_3-5 Q0 MARCO_48_1880090160-2 42 0.054552 hybrid +134_3-5 Q0 MARCO_58_900486122-1 43 0.052677 hybrid +134_3-5 Q0 MARCO_36_920838991-5 44 0.051927 hybrid +134_3-5 Q0 MARCO_31_1746052345-5 45 0.043739 hybrid +134_3-5 Q0 MARCO_58_911016944-2 46 0.042926 hybrid +134_3-5 Q0 MARCO_50_679607114-13 47 0.040457 hybrid +134_3-5 Q0 MARCO_45_140269524-8 48 0.036519 hybrid +134_3-5 Q0 MARCO_52_387070614-2 49 0.030612 hybrid +134_3-5 Q0 MARCO_44_738875395-1 50 0.029362 hybrid +134_3-5 Q0 MARCO_27_846110671-21 51 0.028237 hybrid +134_3-5 Q0 MARCO_08_1152414318-15 52 0.024080 hybrid +134_3-5 Q0 MARCO_47_1066708545-7 53 0.021111 hybrid +134_3-5 Q0 MARCO_37_229907442-1 54 0.016580 hybrid +134_3-5 Q0 MARCO_13_342603457-3 55 0.015392 hybrid +134_3-5 Q0 MARCO_47_1023773487-1 56 0.014955 hybrid +134_3-5 Q0 MARCO_13_342603457-2 57 0.014517 hybrid +134_3-5 Q0 MARCO_35_210425166-4 58 0.006891 hybrid +134_3-5 Q0 MARCO_10_753801430-1 59 0.006516 hybrid +134_3-5 Q0 MARCO_55_936541442-5 60 0.005422 hybrid +134_3-5 Q0 MARCO_23_1010979095-2 61 -0.001297 hybrid +134_3-5 Q0 MARCO_50_1324320494-7 62 -0.004610 hybrid +134_3-5 Q0 MARCO_14_37386655-1 63 -0.004672 hybrid +134_3-5 Q0 MARCO_24_1924616872-9 64 -0.013267 hybrid +134_3-5 Q0 MARCO_50_31963040-1 65 -0.022143 hybrid +134_3-5 Q0 MARCO_07_701885635-1 66 -0.024862 hybrid +134_3-5 Q0 MARCO_36_1578031725-4 67 -0.030237 hybrid +134_3-5 Q0 MARCO_28_1736746326-7 68 -0.032363 hybrid +134_3-5 Q0 MARCO_58_1008788878-1 69 -0.038707 hybrid +134_3-5 Q0 MARCO_34_24206826-20 70 -0.038863 hybrid +134_3-5 Q0 MARCO_58_1019775624-1 71 -0.039176 hybrid +134_3-5 Q0 MARCO_15_1931937225-15 72 -0.041145 hybrid +134_3-5 Q0 KILT_44584349-5 73 -0.043426 hybrid +134_3-5 Q0 MARCO_45_1044758102-15 74 -0.043739 hybrid +134_3-5 Q0 MARCO_24_1198985838-1 75 -0.044989 hybrid +134_3-5 Q0 MARCO_34_264171729-11 76 -0.045114 hybrid +134_3-5 Q0 MARCO_27_1470501804-3 77 -0.049395 hybrid +134_3-5 Q0 MARCO_33_328132754-5 78 -0.056021 hybrid +134_3-5 Q0 MARCO_14_310207894-7 79 -0.057709 hybrid +134_3-5 Q0 MARCO_36_1394497411-1 80 -0.058052 hybrid +134_3-5 Q0 MARCO_46_398352973-8 81 -0.058146 hybrid +134_3-5 Q0 MARCO_25_1052109324-5 82 -0.064115 hybrid +134_3-5 Q0 MARCO_56_414780802-3 83 -0.071210 hybrid +134_3-5 Q0 MARCO_15_1808939076-2 84 -0.074085 hybrid +134_3-5 Q0 MARCO_48_939593681-4 85 -0.075179 hybrid +134_3-5 Q0 MARCO_40_472298374-4 86 -0.077867 hybrid +134_3-5 Q0 MARCO_29_900227011-7 87 -0.078710 hybrid +134_3-5 Q0 MARCO_56_1478210984-1 88 -0.080054 hybrid +134_3-5 Q0 MARCO_07_693899897-9 89 -0.080742 hybrid +134_3-5 Q0 MARCO_23_1122465349-6 90 -0.085211 hybrid +134_3-5 Q0 MARCO_35_844191390-4 91 -0.087336 hybrid +134_3-5 Q0 MARCO_55_1024154298-11 92 -0.090337 hybrid +134_3-5 Q0 MARCO_42_1861013082-1 93 -0.091087 hybrid +134_3-5 Q0 MARCO_08_1057896422-3 94 -0.091337 hybrid +134_3-5 Q0 MARCO_33_70337337-7 95 -0.094587 hybrid +134_3-5 Q0 MARCO_51_1393838083-1 96 -0.098837 hybrid +134_3-5 Q0 MARCO_50_204071114-2 97 -0.099681 hybrid +134_3-5 Q0 MARCO_10_248587851-3 98 -0.100213 hybrid +134_3-5 Q0 MARCO_00_990656388-2 99 -0.101744 hybrid +134_3-5 Q0 MARCO_41_517269136-7 100 -0.102088 hybrid +134_4-2 Q0 MARCO_27_1772437210-2 1 0.500000 hybrid +134_4-2 Q0 MARCO_34_1590894249-3 2 0.411837 hybrid +134_4-2 Q0 MARCO_55_274882838-10 3 0.352046 hybrid +134_4-2 Q0 MARCO_55_274925457-11 4 0.352046 hybrid +134_4-2 Q0 MARCO_50_1400482672-16 5 0.348294 hybrid +134_4-2 Q0 MARCO_53_650915793-10 6 0.346692 hybrid +134_4-2 Q0 MARCO_50_2532213439-11 7 0.316249 hybrid +134_4-2 Q0 MARCO_13_848901775-2 8 0.294678 hybrid +134_4-2 Q0 MARCO_37_1667887012-20 9 0.286119 hybrid +134_4-2 Q0 MARCO_11_116535980-46 10 0.275372 hybrid +134_4-2 Q0 MARCO_13_229403072-1 11 0.262476 hybrid +134_4-2 Q0 MARCO_43_1625245214-4 12 0.253254 hybrid +134_4-2 Q0 MARCO_33_538241031-16 13 0.243523 hybrid +134_4-2 Q0 MARCO_42_258255574-1 14 0.209329 hybrid +134_4-2 Q0 MARCO_48_822925434-3 15 0.199324 hybrid +134_4-2 Q0 MARCO_13_1351649531-4 16 0.178652 hybrid +134_4-2 Q0 MARCO_06_1364440334-2 17 0.172164 hybrid +134_4-2 Q0 MARCO_09_1023389557-2 18 0.170914 hybrid +134_4-2 Q0 MARCO_12_1229287267-18 19 0.167631 hybrid +134_4-2 Q0 MARCO_27_115618266-4 20 0.154891 hybrid +134_4-2 Q0 MARCO_54_42936764-2 21 0.153367 hybrid +134_4-2 Q0 MARCO_41_995365685-10 22 0.152898 hybrid +134_4-2 Q0 MARCO_05_880477775-21 23 0.146411 hybrid +134_4-2 Q0 MARCO_29_998566824-2 24 0.146255 hybrid +134_4-2 Q0 MARCO_55_274946337-15 25 0.140354 hybrid +134_4-2 Q0 MARCO_58_1048601450-2 26 0.129216 hybrid +134_4-2 Q0 MARCO_51_967618316-7 27 0.125816 hybrid +134_4-2 Q0 MARCO_19_2339421928-3 28 0.123472 hybrid +134_4-2 Q0 MARCO_55_274902286-14 29 0.118001 hybrid +134_4-2 Q0 MARCO_55_275003922-18 30 0.118000 hybrid +134_4-2 Q0 MARCO_23_475487155-4 31 0.116711 hybrid +134_4-2 Q0 MARCO_31_881347238-4 32 0.110106 hybrid +134_4-2 Q0 MARCO_42_257859314-7 33 0.109481 hybrid +134_4-2 Q0 MARCO_57_814283816-2 34 0.108661 hybrid +134_4-2 Q0 MARCO_11_87157629-1 35 0.102564 hybrid +134_4-2 Q0 MARCO_26_1017241857-2 36 0.100845 hybrid +134_4-2 Q0 MARCO_23_1728855958-8 37 0.099555 hybrid +134_4-2 Q0 MARCO_39_1357295596-6 38 0.089903 hybrid +134_4-2 Q0 MARCO_43_365838716-2 39 0.087870 hybrid +134_4-2 Q0 MARCO_55_696573678-3 40 0.084001 hybrid +134_4-2 Q0 MARCO_51_99430019-10 41 0.082673 hybrid +134_4-2 Q0 MARCO_34_988464228-17 42 0.082438 hybrid +134_4-2 Q0 MARCO_29_667716571-2 43 0.075873 hybrid +134_4-2 Q0 MARCO_41_1324182700-50 44 0.072199 hybrid +134_4-2 Q0 MARCO_48_1547511133-8 45 0.068995 hybrid +134_4-2 Q0 MARCO_37_1255807333-2 46 0.064931 hybrid +134_4-2 Q0 MARCO_13_975882391-8 47 0.064736 hybrid +134_4-2 Q0 MARCO_23_475487155-3 48 0.045469 hybrid +134_4-2 Q0 MARCO_41_1519415396-25 49 0.041913 hybrid +134_4-2 Q0 MARCO_50_846379263-10 50 0.038513 hybrid +134_4-2 Q0 MARCO_55_274946337-10 51 0.035934 hybrid +134_4-2 Q0 MARCO_40_1750232731-4 52 0.035348 hybrid +134_4-2 Q0 MARCO_49_1748796430-9 53 0.035348 hybrid +134_4-2 Q0 MARCO_27_936615230-2 54 0.035114 hybrid +134_4-2 Q0 MARCO_50_1123610913-18 55 0.033081 hybrid +134_4-2 Q0 MARCO_44_60617454-11 56 0.031948 hybrid +134_4-2 Q0 MARCO_22_397989880-6 57 0.031792 hybrid +134_4-2 Q0 MARCO_58_1050282928-17 58 0.031206 hybrid +134_4-2 Q0 MARCO_41_2085788191-5 59 0.027532 hybrid +134_4-2 Q0 MARCO_55_274902286-9 60 0.023585 hybrid +134_4-2 Q0 MARCO_55_275003922-13 61 0.023585 hybrid +134_4-2 Q0 MARCO_04_1270134299-2 62 0.015183 hybrid +134_4-2 Q0 MARCO_31_1664266562-5 63 0.014245 hybrid +134_4-2 Q0 MARCO_25_762540245-21 64 0.011119 hybrid +134_4-2 Q0 MARCO_12_574920595-4 65 0.009634 hybrid +134_4-2 Q0 MARCO_42_535482774-5 66 0.009438 hybrid +134_4-2 Q0 MARCO_49_1818354682-2 67 0.009048 hybrid +134_4-2 Q0 MARCO_30_10197917-2 68 0.008383 hybrid +134_4-2 Q0 MARCO_10_218756743-1 69 0.001779 hybrid +134_4-2 Q0 MARCO_40_1617606077-7 70 0.001427 hybrid +134_4-2 Q0 MARCO_37_1241763382-3 71 0.001193 hybrid +134_4-2 Q0 MARCO_49_1579203877-2 72 0.000919 hybrid +134_4-2 Q0 MARCO_45_1005313243-144 73 -0.002559 hybrid +134_4-2 Q0 MARCO_37_1515871856-5 74 -0.002989 hybrid +134_4-2 Q0 MARCO_58_1056552645-45 75 -0.004318 hybrid +134_4-2 Q0 MARCO_12_1289992590-11 76 -0.008226 hybrid +134_4-2 Q0 MARCO_21_1448725141-1 77 -0.008811 hybrid +134_4-2 Q0 MARCO_32_1279828262-16 78 -0.013150 hybrid +134_4-2 Q0 MARCO_24_1256278430-22 79 -0.015650 hybrid +134_4-2 Q0 MARCO_50_2532213439-10 80 -0.017643 hybrid +134_4-2 Q0 MARCO_50_465633366-6 81 -0.021004 hybrid +134_4-2 Q0 MARCO_08_1228353172-4 82 -0.021200 hybrid +134_4-2 Q0 MARCO_04_1471279324-5 83 -0.022020 hybrid +134_4-2 Q0 MARCO_27_107366901-2 84 -0.022177 hybrid +134_4-2 Q0 MARCO_41_988085910-13 85 -0.026944 hybrid +134_4-2 Q0 MARCO_14_1052139630-8 86 -0.031360 hybrid +134_4-2 Q0 MARCO_13_558814674-2 87 -0.034877 hybrid +134_4-2 Q0 MARCO_40_1295773894-4 88 -0.038668 hybrid +134_4-2 Q0 MARCO_20_1064218247-5 89 -0.039958 hybrid +134_4-2 Q0 KILT_10310645-3 90 -0.048086 hybrid +134_4-2 Q0 MARCO_27_526354468-14 91 -0.048282 hybrid +134_4-2 Q0 MARCO_03_326953722-4 92 -0.049806 hybrid +134_4-2 Q0 MARCO_27_1029058809-4 93 -0.052189 hybrid +134_4-2 Q0 MARCO_27_526895683-17 94 -0.058833 hybrid +134_4-2 Q0 MARCO_41_1666867140-10 95 -0.059693 hybrid +134_4-2 Q0 MARCO_20_1257752700-2 96 -0.061842 hybrid +134_4-2 Q0 MARCO_22_361653759-5 97 -0.063483 hybrid +134_4-2 Q0 MARCO_45_1455007433-3 98 -0.063718 hybrid +134_4-2 Q0 MARCO_48_819424811-12 99 -0.064148 hybrid +134_4-2 Q0 MARCO_54_1849942338-2 100 -0.070674 hybrid +134_4-4 Q0 MARCO_43_305944578-2 1 0.500000 hybrid +134_4-4 Q0 MARCO_43_306056917-1 2 0.468784 hybrid +134_4-4 Q0 MARCO_50_1341313370-48 3 0.427904 hybrid +134_4-4 Q0 MARCO_04_394310400-3 4 0.417247 hybrid +134_4-4 Q0 MARCO_52_821634475-2 5 0.361852 hybrid +134_4-4 Q0 MARCO_08_1257083081-3 6 0.321172 hybrid +134_4-4 Q0 MARCO_50_1213175807-15 7 0.300652 hybrid +134_4-4 Q0 MARCO_29_480761651-2 8 0.295523 hybrid +134_4-4 Q0 MARCO_29_480756274-2 9 0.284308 hybrid +134_4-4 Q0 MARCO_09_613681301-20 10 0.244145 hybrid +134_4-4 Q0 MARCO_33_1464368404-2 11 0.237305 hybrid +134_4-4 Q0 MARCO_50_2156613647-33 12 0.225256 hybrid +134_4-4 Q0 MARCO_43_305958405-2 13 0.224580 hybrid +134_4-4 Q0 MARCO_51_1253211780-10 14 0.224500 hybrid +134_4-4 Q0 MARCO_53_1288967934-2 15 0.200442 hybrid +134_4-4 Q0 MARCO_07_586034686-14 16 0.191653 hybrid +134_4-4 Q0 MARCO_52_478587868-19 17 0.186762 hybrid +134_4-4 Q0 MARCO_32_1552492365-8 18 0.170935 hybrid +134_4-4 Q0 MARCO_45_271658878-44 19 0.163738 hybrid +134_4-4 Q0 MARCO_29_1504114733-3 20 0.161948 hybrid +134_4-4 Q0 MARCO_53_1417132226-1 21 0.157096 hybrid +134_4-4 Q0 MARCO_08_30326820-3 22 0.153040 hybrid +134_4-4 Q0 MARCO_10_176038038-2 23 0.152007 hybrid +134_4-4 Q0 MARCO_04_387577324-16 24 0.147274 hybrid +134_4-4 Q0 MARCO_02_810627052-9 25 0.139798 hybrid +134_4-4 Q0 MARCO_00_1705183080-5 26 0.128226 hybrid +134_4-4 Q0 MARCO_00_1228393982-5 27 0.127908 hybrid +134_4-4 Q0 MARCO_02_1579575800-9 28 0.125085 hybrid +134_4-4 Q0 MARCO_04_377917065-17 29 0.120949 hybrid +134_4-4 Q0 MARCO_11_1456541715-2 30 0.115859 hybrid +134_4-4 Q0 MARCO_09_613681301-57 31 0.104406 hybrid +134_4-4 Q0 MARCO_56_746059831-1 32 0.102895 hybrid +134_4-4 Q0 MARCO_11_115839899-51 33 0.095260 hybrid +134_4-4 Q0 MARCO_32_937425486-10 34 0.088858 hybrid +134_4-4 Q0 MARCO_50_2151006936-15 35 0.088380 hybrid +134_4-4 Q0 MARCO_10_25084592-39 36 0.087108 hybrid +134_4-4 Q0 MARCO_55_385516765-8 37 0.083648 hybrid +134_4-4 Q0 MARCO_50_1725621751-18 38 0.058993 hybrid +134_4-4 Q0 MARCO_36_1702672319-83 39 0.058397 hybrid +134_4-4 Q0 MARCO_29_441740155-2 40 0.055017 hybrid +134_4-4 Q0 MARCO_41_853952670-2 41 0.046984 hybrid +134_4-4 Q0 MARCO_09_613417163-8 42 0.043882 hybrid +134_4-4 Q0 MARCO_29_1503807318-5 43 0.032748 hybrid +134_4-4 Q0 MARCO_43_305996735-2 44 0.029129 hybrid +134_4-4 Q0 MARCO_33_1464386016-6 45 0.028493 hybrid +134_4-4 Q0 MARCO_36_1716214261-15 46 0.024476 hybrid +134_4-4 Q0 MARCO_33_363583173-32 47 0.023919 hybrid +134_4-4 Q0 MARCO_20_1189276245-5 48 0.020977 hybrid +134_4-4 Q0 MARCO_45_141802555-1 49 0.020659 hybrid +134_4-4 Q0 MARCO_43_306012022-2 50 0.018233 hybrid +134_4-4 Q0 MARCO_03_1524232548-5 51 0.011313 hybrid +134_4-4 Q0 MARCO_33_61997149-2 52 0.011035 hybrid +134_4-4 Q0 MARCO_50_999258765-21 53 0.010598 hybrid +134_4-4 Q0 MARCO_47_1132263835-6 54 0.004554 hybrid +134_4-4 Q0 MARCO_48_1498397275-12 55 0.003838 hybrid +134_4-4 Q0 MARCO_47_1327979866-8 56 -0.004275 hybrid +134_4-4 Q0 MARCO_20_425313118-1 57 -0.005070 hybrid +134_4-4 Q0 MARCO_35_346674916-9 58 -0.005309 hybrid +134_4-4 Q0 MARCO_22_1020581386-68 59 -0.006462 hybrid +134_4-4 Q0 MARCO_51_575026536-10 60 -0.008530 hybrid +134_4-4 Q0 MARCO_36_1702050002-24 61 -0.008967 hybrid +134_4-4 Q0 MARCO_58_97908208-18 62 -0.011671 hybrid +134_4-4 Q0 MARCO_21_1079024609-1 63 -0.012665 hybrid +134_4-4 Q0 MARCO_54_83512906-1 64 -0.012666 hybrid +134_4-4 Q0 MARCO_07_649778987-5 65 -0.014853 hybrid +134_4-4 Q0 MARCO_33_714661127-18 66 -0.015648 hybrid +134_4-4 Q0 MARCO_48_664963568-9 67 -0.016364 hybrid +134_4-4 Q0 MARCO_50_1748691885-11 68 -0.016801 hybrid +134_4-4 Q0 MARCO_50_1748691885-9 69 -0.016801 hybrid +134_4-4 Q0 MARCO_09_613214301-1 70 -0.020261 hybrid +134_4-4 Q0 MARCO_24_1633742303-21 71 -0.024396 hybrid +134_4-4 Q0 MARCO_55_842795711-9 72 -0.032350 hybrid +134_4-4 Q0 MARCO_39_802465415-2 73 -0.039070 hybrid +134_4-4 Q0 MARCO_20_345738515-16 74 -0.039627 hybrid +134_4-4 Q0 MARCO_09_1180348730-5 75 -0.042371 hybrid +134_4-4 Q0 MARCO_29_970818206-7 76 -0.046745 hybrid +134_4-4 Q0 MARCO_44_1188506965-13 77 -0.047580 hybrid +134_4-4 Q0 MARCO_14_1014758167-2 78 -0.051398 hybrid +134_4-4 Q0 MARCO_52_1004305230-2 79 -0.051915 hybrid +134_4-4 Q0 MARCO_20_1271820273-12 80 -0.053943 hybrid +134_4-4 Q0 MARCO_52_763908836-3 81 -0.054738 hybrid +134_4-4 Q0 MARCO_10_786063779-2 82 -0.057442 hybrid +134_4-4 Q0 MARCO_11_1158021108-23 83 -0.059470 hybrid +134_4-4 Q0 MARCO_30_633835950-12 84 -0.061657 hybrid +134_4-4 Q0 MARCO_58_293731040-15 85 -0.062890 hybrid +134_4-4 Q0 MARCO_51_81967676-8 86 -0.066310 hybrid +134_4-4 Q0 MARCO_58_866684634-18 87 -0.068736 hybrid +134_4-4 Q0 MARCO_50_1358977466-9 88 -0.069889 hybrid +134_4-4 Q0 MARCO_10_1083587556-8 89 -0.072315 hybrid +134_4-4 Q0 MARCO_12_1322932688-8 90 -0.072633 hybrid +134_4-4 Q0 MARCO_00_16611848-17 91 -0.074860 hybrid +134_4-4 Q0 MARCO_48_942954681-2 92 -0.077245 hybrid +134_4-4 Q0 MARCO_48_942958903-2 93 -0.077246 hybrid +134_4-4 Q0 MARCO_33_619362738-11 94 -0.077365 hybrid +134_4-4 Q0 MARCO_29_480738425-7 95 -0.079473 hybrid +134_4-4 Q0 MARCO_29_1188532326-8 96 -0.080984 hybrid +134_4-4 Q0 MARCO_04_1092995227-4 97 -0.083847 hybrid +134_4-4 Q0 MARCO_50_844597639-10 98 -0.099435 hybrid +134_4-4 Q0 MARCO_40_489968068-4 99 -0.100708 hybrid +134_4-4 Q0 MARCO_55_845779129-12 100 -0.102895 hybrid +135_1-1 Q0 MARCO_36_1379121647-13 1 0.500000 hybrid +135_1-1 Q0 MARCO_08_18599332-13 2 0.188047 hybrid +135_1-1 Q0 MARCO_39_1389641760-108 3 0.101328 hybrid +135_1-1 Q0 MARCO_50_2432111535-20 4 0.089389 hybrid +135_1-1 Q0 MARCO_04_379895487-14 5 0.080864 hybrid +135_1-1 Q0 MARCO_50_1220983703-16 6 0.073266 hybrid +135_1-1 Q0 MARCO_05_898260757-29 7 0.046912 hybrid +135_1-1 Q0 MARCO_58_546166066-17 8 0.040385 hybrid +135_1-1 Q0 MARCO_04_389844596-14 9 0.029430 hybrid +135_1-1 Q0 MARCO_04_389844596-4 10 0.018242 hybrid +135_1-1 Q0 MARCO_36_1379121647-15 11 0.012613 hybrid +135_1-1 Q0 MARCO_10_1368555242-40 12 0.007707 hybrid +135_1-1 Q0 MARCO_58_39630207-19 13 -0.003090 hybrid +135_1-1 Q0 MARCO_38_876049311-7 14 -0.005435 hybrid +135_1-1 Q0 MARCO_08_434057454-1 15 -0.012584 hybrid +135_1-1 Q0 MARCO_31_1748062419-5 16 -0.022136 hybrid +135_1-1 Q0 MARCO_07_1114502647-44 17 -0.048186 hybrid +135_1-1 Q0 MARCO_05_1087960058-291 18 -0.054062 hybrid +135_1-1 Q0 MARCO_50_1954938037-8 19 -0.061848 hybrid +135_1-1 Q0 MARCO_44_842242336-1 20 -0.061862 hybrid +135_1-1 Q0 MARCO_09_1719420909-17 21 -0.067811 hybrid +135_1-1 Q0 MARCO_50_897874724-3 22 -0.072065 hybrid +135_1-1 Q0 MARCO_06_725982234-9 23 -0.077768 hybrid +135_1-1 Q0 MARCO_25_1050491541-2 24 -0.087623 hybrid +135_1-1 Q0 MARCO_49_1579691474-1 25 -0.087956 hybrid +135_1-1 Q0 MARCO_51_91572935-6 26 -0.093065 hybrid +135_1-1 Q0 MARCO_50_1180441098-9 27 -0.096350 hybrid +135_1-1 Q0 MARCO_08_1662932765-120 28 -0.109998 hybrid +135_1-1 Q0 MARCO_23_815149850-14 29 -0.122270 hybrid +135_1-1 Q0 MARCO_51_101047023-2 30 -0.124774 hybrid +135_1-1 Q0 MARCO_29_777029977-4 31 -0.128435 hybrid +135_1-1 Q0 MARCO_25_1592704512-11 32 -0.130433 hybrid +135_1-1 Q0 MARCO_07_934801547-6 33 -0.132835 hybrid +135_1-1 Q0 MARCO_07_934827493-4 34 -0.132835 hybrid +135_1-1 Q0 MARCO_45_980886909-9 35 -0.132835 hybrid +135_1-1 Q0 MARCO_39_1389641760-27 36 -0.134803 hybrid +135_1-1 Q0 MARCO_04_380168166-11 37 -0.135614 hybrid +135_1-1 Q0 MARCO_28_125493215-42 38 -0.138667 hybrid +135_1-1 Q0 MARCO_19_1705387193-108 39 -0.139955 hybrid +135_1-1 Q0 MARCO_20_320828470-2 40 -0.145715 hybrid +135_1-1 Q0 MARCO_58_1062320564-12 41 -0.149232 hybrid +135_1-1 Q0 MARCO_05_820673124-2 42 -0.153010 hybrid +135_1-1 Q0 MARCO_44_329994642-10 43 -0.155832 hybrid +135_1-1 Q0 MARCO_02_1831441321-1 44 -0.156121 hybrid +135_1-1 Q0 MARCO_58_838606825-4 45 -0.156266 hybrid +135_1-1 Q0 MARCO_20_1009669727-36 46 -0.156989 hybrid +135_1-1 Q0 MARCO_10_254203929-30 47 -0.158350 hybrid +135_1-1 Q0 MARCO_06_1752610726-1 48 -0.159320 hybrid +135_1-1 Q0 MARCO_20_1716989706-56 49 -0.161433 hybrid +135_1-1 Q0 MARCO_54_1858328826-5 50 -0.165326 hybrid +135_1-1 Q0 MARCO_32_1248260011-8 51 -0.168654 hybrid +135_1-1 Q0 MARCO_49_261188947-7 52 -0.168973 hybrid +135_1-1 Q0 MARCO_45_980875532-6 53 -0.172041 hybrid +135_1-1 Q0 MARCO_13_479383506-2 54 -0.173401 hybrid +135_1-1 Q0 MARCO_38_147080083-20 55 -0.173749 hybrid +135_1-1 Q0 MARCO_38_866907350-18 56 -0.182794 hybrid +135_1-1 Q0 MARCO_04_380954370-26 57 -0.183011 hybrid +135_1-1 Q0 MARCO_03_1642720939-3 58 -0.183677 hybrid +135_1-1 Q0 MARCO_45_154996499-7 59 -0.190218 hybrid +135_1-1 Q0 MARCO_53_171116042-4 60 -0.191463 hybrid +135_1-1 Q0 MARCO_04_389844596-22 61 -0.194299 hybrid +135_1-1 Q0 MARCO_39_412430229-5 62 -0.198091 hybrid +135_1-1 Q0 MARCO_04_380913138-30 63 -0.198771 hybrid +135_1-1 Q0 MARCO_06_999034251-23 64 -0.201868 hybrid +135_1-1 Q0 MARCO_28_722936869-8 65 -0.202013 hybrid +135_1-1 Q0 MARCO_07_696771004-7 66 -0.207426 hybrid +135_1-1 Q0 MARCO_59_69525119-5 67 -0.209134 hybrid +135_1-1 Q0 MARCO_30_816890522-2 68 -0.209264 hybrid +135_1-1 Q0 MARCO_40_810203755-4 69 -0.210537 hybrid +135_1-1 Q0 MARCO_54_1787251342-2 70 -0.214011 hybrid +135_1-1 Q0 MARCO_13_1489578044-7 71 -0.214488 hybrid +135_1-1 Q0 MARCO_40_706661118-249 72 -0.218439 hybrid +135_1-1 Q0 MARCO_44_1596276210-1 73 -0.220827 hybrid +135_1-1 Q0 MARCO_36_1708548116-19 74 -0.221044 hybrid +135_1-1 Q0 MARCO_19_1932433225-2 75 -0.221551 hybrid +135_1-1 Q0 MARCO_06_134151902-66 76 -0.223331 hybrid +135_1-1 Q0 MARCO_51_964601708-3 77 -0.223953 hybrid +135_1-1 Q0 MARCO_25_1026529738-70 78 -0.224011 hybrid +135_1-1 Q0 MARCO_46_1125759737-23 79 -0.225545 hybrid +135_1-1 Q0 MARCO_14_1688346790-37 80 -0.226182 hybrid +135_1-1 Q0 MARCO_01_1345706955-3 81 -0.230929 hybrid +135_1-1 Q0 MARCO_21_382838355-32 82 -0.231407 hybrid +135_1-1 Q0 MARCO_10_69934686-77 83 -0.231667 hybrid +135_1-1 Q0 MARCO_11_488484400-26 84 -0.233462 hybrid +135_1-1 Q0 MARCO_58_1061128227-22 85 -0.233664 hybrid +135_1-1 Q0 MARCO_57_1068665601-2 86 -0.238628 hybrid +135_1-1 Q0 MARCO_35_1179480011-7 87 -0.238831 hybrid +135_1-1 Q0 MARCO_00_1324152827-30 88 -0.239034 hybrid +135_1-1 Q0 MARCO_11_84259174-78 89 -0.246501 hybrid +135_1-1 Q0 MARCO_50_1134720024-37 90 -0.246964 hybrid +135_1-1 Q0 MARCO_50_1148873682-13 91 -0.246965 hybrid +135_1-1 Q0 MARCO_01_1353933873-3 92 -0.247428 hybrid +135_1-1 Q0 MARCO_34_598401262-56 93 -0.247804 hybrid +135_1-1 Q0 MARCO_03_1385199641-1 94 -0.248513 hybrid +135_1-1 Q0 MARCO_00_359638643-5 95 -0.252363 hybrid +135_1-1 Q0 MARCO_58_1384087793-1 96 -0.257211 hybrid +135_1-1 Q0 MARCO_27_1033511931-62 97 -0.258094 hybrid +135_1-1 Q0 MARCO_32_1576193244-8 98 -0.258195 hybrid +135_1-1 Q0 MARCO_23_808527832-1 99 -0.258962 hybrid +135_1-1 Q0 MARCO_31_774424096-184 100 -0.260033 hybrid +135_1-3 Q0 MARCO_51_957992620-3 1 0.500000 hybrid +135_1-3 Q0 MARCO_03_1539443481-9 2 0.453994 hybrid +135_1-3 Q0 MARCO_47_314305068-3 3 0.337929 hybrid +135_1-3 Q0 MARCO_43_747441218-5 4 0.336540 hybrid +135_1-3 Q0 MARCO_50_2503836713-29 5 0.205172 hybrid +135_1-3 Q0 MARCO_47_1261720351-8 6 0.195519 hybrid +135_1-3 Q0 MARCO_51_966154746-2 7 0.169142 hybrid +135_1-3 Q0 MARCO_08_1268970816-7 8 0.156002 hybrid +135_1-3 Q0 MARCO_50_2380427332-19 9 0.101860 hybrid +135_1-3 Q0 MARCO_49_1770625673-6 10 0.087235 hybrid +135_1-3 Q0 MARCO_32_1112556757-6 11 0.080939 hybrid +135_1-3 Q0 MARCO_24_432072998-6 12 0.074320 hybrid +135_1-3 Q0 MARCO_45_228378643-4 13 0.073707 hybrid +135_1-3 Q0 MARCO_11_1259120332-3 14 0.072674 hybrid +135_1-3 Q0 MARCO_07_807475415-9 15 0.067540 hybrid +135_1-3 Q0 MARCO_24_1543882016-24 16 0.060309 hybrid +135_1-3 Q0 MARCO_06_1779191195-2 17 0.053432 hybrid +135_1-3 Q0 MARCO_06_1779191195-8 18 0.053432 hybrid +135_1-3 Q0 MARCO_54_1706664393-14 19 0.050365 hybrid +135_1-3 Q0 MARCO_14_1627094206-1 20 0.046652 hybrid +135_1-3 Q0 MARCO_59_45432129-9 21 0.041228 hybrid +135_1-3 Q0 MARCO_29_1625348283-8 22 0.040905 hybrid +135_1-3 Q0 MARCO_01_1605300916-3 23 0.038129 hybrid +135_1-3 Q0 MARCO_32_1101206980-4 24 0.033125 hybrid +135_1-3 Q0 MARCO_50_910674203-18 25 0.027184 hybrid +135_1-3 Q0 MARCO_23_901609732-11 26 0.026668 hybrid +135_1-3 Q0 MARCO_52_1291510907-5 27 0.018112 hybrid +135_1-3 Q0 MARCO_40_762567563-18 28 0.011558 hybrid +135_1-3 Q0 MARCO_04_343836785-2 29 0.009104 hybrid +135_1-3 Q0 MARCO_11_1258772877-2 30 -0.003454 hybrid +135_1-3 Q0 MARCO_23_1157131447-3 31 -0.008846 hybrid +135_1-3 Q0 MARCO_47_314336073-2 32 -0.014980 hybrid +135_1-3 Q0 MARCO_20_641232245-3 33 -0.015303 hybrid +135_1-3 Q0 MARCO_10_768322024-2 34 -0.017305 hybrid +135_1-3 Q0 MARCO_54_1707613777-10 35 -0.018209 hybrid +135_1-3 Q0 MARCO_59_872491648-15 36 -0.030025 hybrid +135_1-3 Q0 MARCO_58_618425062-24 37 -0.034190 hybrid +135_1-3 Q0 MARCO_00_1171499895-1 38 -0.034577 hybrid +135_1-3 Q0 MARCO_28_1759557920-1 39 -0.038903 hybrid +135_1-3 Q0 MARCO_50_1516160368-17 40 -0.039581 hybrid +135_1-3 Q0 MARCO_23_1158069689-1 41 -0.040776 hybrid +135_1-3 Q0 MARCO_44_155330452-7 42 -0.045813 hybrid +135_1-3 Q0 MARCO_09_794908932-1 43 -0.047459 hybrid +135_1-3 Q0 MARCO_21_570441613-5 44 -0.052851 hybrid +135_1-3 Q0 MARCO_59_435012914-1 45 -0.054562 hybrid +135_1-3 Q0 MARCO_51_1346319337-4 46 -0.054917 hybrid +135_1-3 Q0 MARCO_47_276056244-12 47 -0.061471 hybrid +135_1-3 Q0 MARCO_58_618425062-25 48 -0.066540 hybrid +135_1-3 Q0 MARCO_50_1210621137-13 49 -0.066733 hybrid +135_1-3 Q0 MARCO_34_1595925152-29 50 -0.079873 hybrid +135_1-3 Q0 MARCO_50_336842772-23 51 -0.082133 hybrid +135_1-3 Q0 MARCO_56_1513010351-2 52 -0.082650 hybrid +135_1-3 Q0 MARCO_24_545861102-20 53 -0.084361 hybrid +135_1-3 Q0 MARCO_11_1258447115-7 54 -0.092077 hybrid +135_1-3 Q0 MARCO_37_1537691396-13 55 -0.092529 hybrid +135_1-3 Q0 MARCO_23_1370180884-1 56 -0.093562 hybrid +135_1-3 Q0 MARCO_11_1021516997-3 57 -0.095144 hybrid +135_1-3 Q0 MARCO_31_1564580081-5 58 -0.095725 hybrid +135_1-3 Q0 MARCO_13_17052356-3 59 -0.101246 hybrid +135_1-3 Q0 MARCO_15_1403911049-9 60 -0.101375 hybrid +135_1-3 Q0 MARCO_39_730899025-11 61 -0.101440 hybrid +135_1-3 Q0 MARCO_01_2104273346-6 62 -0.102505 hybrid +135_1-3 Q0 MARCO_13_490577753-13 63 -0.102570 hybrid +135_1-3 Q0 MARCO_03_796846828-7 64 -0.106024 hybrid +135_1-3 Q0 MARCO_29_1625643596-7 65 -0.111835 hybrid +135_1-3 Q0 MARCO_10_688493088-1 66 -0.112610 hybrid +135_1-3 Q0 MARCO_19_1491768062-4 67 -0.114386 hybrid +135_1-3 Q0 MARCO_50_1995777522-18 68 -0.114806 hybrid +135_1-3 Q0 MARCO_21_869763874-1 69 -0.115484 hybrid +135_1-3 Q0 MARCO_29_1582090883-20 70 -0.120004 hybrid +135_1-3 Q0 MARCO_52_343161190-3 71 -0.124524 hybrid +135_1-3 Q0 MARCO_37_1547557669-8 72 -0.125654 hybrid +135_1-3 Q0 MARCO_25_1631496127-14 73 -0.131659 hybrid +135_1-3 Q0 MARCO_48_116068234-5 74 -0.131852 hybrid +135_1-3 Q0 MARCO_27_1029451224-1 75 -0.138665 hybrid +135_1-3 Q0 MARCO_25_493065032-3 76 -0.139504 hybrid +135_1-3 Q0 MARCO_12_383508045-1 77 -0.139827 hybrid +135_1-3 Q0 MARCO_37_1546466659-8 78 -0.139859 hybrid +135_1-3 Q0 MARCO_54_637080954-13 79 -0.144282 hybrid +135_1-3 Q0 MARCO_22_384068471-9 80 -0.146219 hybrid +135_1-3 Q0 MARCO_29_404715941-4 81 -0.147672 hybrid +135_1-3 Q0 MARCO_50_497194613-8 82 -0.149190 hybrid +135_1-3 Q0 MARCO_29_1628426632-6 83 -0.149642 hybrid +135_1-3 Q0 MARCO_19_1796804400-3 84 -0.151353 hybrid +135_1-3 Q0 MARCO_51_958786406-4 85 -0.151611 hybrid +135_1-3 Q0 MARCO_22_1317398627-5 86 -0.151676 hybrid +135_1-3 Q0 MARCO_39_780734135-1 87 -0.155743 hybrid +135_1-3 Q0 MARCO_06_403684272-6 88 -0.156809 hybrid +135_1-3 Q0 MARCO_43_343453410-1 89 -0.158197 hybrid +135_1-3 Q0 MARCO_27_1245270188-1 90 -0.162588 hybrid +135_1-3 Q0 MARCO_29_1622282878-6 91 -0.163847 hybrid +135_1-3 Q0 MARCO_50_2050272017-7 92 -0.167398 hybrid +135_1-3 Q0 MARCO_51_963176845-2 93 -0.169432 hybrid +135_1-3 Q0 MARCO_32_1112963185-6 94 -0.169755 hybrid +135_1-3 Q0 MARCO_51_126040162-12 95 -0.170336 hybrid +135_1-3 Q0 MARCO_03_234134790-22 96 -0.171466 hybrid +135_1-3 Q0 MARCO_27_1029621297-15 97 -0.174081 hybrid +135_1-3 Q0 MARCO_50_2753017674-3 98 -0.174082 hybrid +135_1-3 Q0 MARCO_07_729573501-4 99 -0.174146 hybrid +135_1-3 Q0 MARCO_21_464309838-8 100 -0.174662 hybrid +135_1-5 Q0 MARCO_52_1291510907-5 1 0.500000 hybrid +135_1-5 Q0 MARCO_12_483641821-3 2 0.361425 hybrid +135_1-5 Q0 MARCO_46_1272244650-2 3 0.323513 hybrid +135_1-5 Q0 MARCO_29_1135035884-4 4 0.315490 hybrid +135_1-5 Q0 MARCO_51_958834692-1 5 0.249543 hybrid +135_1-5 Q0 MARCO_21_876716175-1 6 0.206007 hybrid +135_1-5 Q0 MARCO_24_655925721-2 7 0.195472 hybrid +135_1-5 Q0 MARCO_20_91291233-5 8 0.194958 hybrid +135_1-5 Q0 MARCO_51_958973959-5 9 0.185880 hybrid +135_1-5 Q0 MARCO_21_885530106-2 10 0.182026 hybrid +135_1-5 Q0 MARCO_44_224874707-8 11 0.162185 hybrid +135_1-5 Q0 MARCO_20_239116832-28 12 0.160900 hybrid +135_1-5 Q0 MARCO_21_879831243-2 13 0.151593 hybrid +135_1-5 Q0 MARCO_52_541427554-3 14 0.136548 hybrid +135_1-5 Q0 MARCO_28_1759557920-4 15 0.136376 hybrid +135_1-5 Q0 MARCO_42_416975659-1 16 0.114822 hybrid +135_1-5 Q0 MARCO_45_120013408-8 17 0.105287 hybrid +135_1-5 Q0 MARCO_21_570369913-7 18 0.102518 hybrid +135_1-5 Q0 MARCO_07_1012854612-8 19 0.101176 hybrid +135_1-5 Q0 MARCO_09_18346700-5 20 0.101062 hybrid +135_1-5 Q0 MARCO_21_879892092-3 21 0.098436 hybrid +135_1-5 Q0 MARCO_55_1292828480-3 22 0.096780 hybrid +135_1-5 Q0 MARCO_42_706445972-4 23 0.094867 hybrid +135_1-5 Q0 MARCO_31_1300740495-2 24 0.088529 hybrid +135_1-5 Q0 MARCO_23_1679946541-3 25 0.087872 hybrid +135_1-5 Q0 MARCO_50_2244208415-25 26 0.086274 hybrid +135_1-5 Q0 MARCO_13_254419015-7 27 0.075797 hybrid +135_1-5 Q0 MARCO_07_1401441779-2 28 0.075568 hybrid +135_1-5 Q0 MARCO_21_446186091-3 29 0.068288 hybrid +135_1-5 Q0 MARCO_48_2041982458-5 30 0.068145 hybrid +135_1-5 Q0 MARCO_56_1519242856-3 31 0.065462 hybrid +135_1-5 Q0 MARCO_27_1029671860-6 32 0.063692 hybrid +135_1-5 Q0 MARCO_52_373300995-7 33 0.057354 hybrid +135_1-5 Q0 MARCO_44_842166472-12 34 0.056783 hybrid +135_1-5 Q0 MARCO_27_1183994749-5 35 0.055441 hybrid +135_1-5 Q0 MARCO_00_1326001009-1 36 0.055327 hybrid +135_1-5 Q0 MARCO_27_1725175378-9 37 0.050674 hybrid +135_1-5 Q0 MARCO_57_2139017372-16 38 0.044421 hybrid +135_1-5 Q0 MARCO_24_545332153-2 39 0.041081 hybrid +135_1-5 Q0 MARCO_10_634723854-7 40 0.037798 hybrid +135_1-5 Q0 MARCO_58_794223224-15 41 0.037341 hybrid +135_1-5 Q0 MARCO_06_403700197-4 42 0.034886 hybrid +135_1-5 Q0 MARCO_46_281243411-6 43 0.029919 hybrid +135_1-5 Q0 MARCO_24_1201350974-4 44 0.024980 hybrid +135_1-5 Q0 MARCO_09_471105121-5 45 0.019470 hybrid +135_1-5 Q0 MARCO_51_965856014-3 46 0.019384 hybrid +135_1-5 Q0 MARCO_23_182916034-9 47 0.016501 hybrid +135_1-5 Q0 MARCO_09_18346700-4 48 0.016130 hybrid +135_1-5 Q0 MARCO_26_761332038-2 49 0.014874 hybrid +135_1-5 Q0 MARCO_07_997316723-5 50 -0.000286 hybrid +135_1-5 Q0 MARCO_56_1594787927-3 51 -0.000400 hybrid +135_1-5 Q0 MARCO_00_255450434-10 52 -0.002284 hybrid +135_1-5 Q0 MARCO_06_1448767834-3 53 -0.005481 hybrid +135_1-5 Q0 MARCO_40_744341994-3 54 -0.012875 hybrid +135_1-5 Q0 MARCO_16_9291008-2 55 -0.014560 hybrid +135_1-5 Q0 MARCO_09_17239019-2 56 -0.017815 hybrid +135_1-5 Q0 MARCO_34_482081868-6 57 -0.018471 hybrid +135_1-5 Q0 MARCO_00_1325948504-4 58 -0.023010 hybrid +135_1-5 Q0 MARCO_06_1471762089-2 59 -0.023981 hybrid +135_1-5 Q0 MARCO_52_541795620-2 60 -0.025294 hybrid +135_1-5 Q0 MARCO_28_1759557920-1 61 -0.026436 hybrid +135_1-5 Q0 MARCO_55_1347240246-1 62 -0.027778 hybrid +135_1-5 Q0 MARCO_07_1124558919-6 63 -0.028149 hybrid +135_1-5 Q0 MARCO_46_684976088-3 64 -0.037827 hybrid +135_1-5 Q0 MARCO_09_17815227-2 65 -0.038198 hybrid +135_1-5 Q0 MARCO_42_800370832-3 66 -0.041681 hybrid +135_1-5 Q0 MARCO_52_483672706-1 67 -0.042509 hybrid +135_1-5 Q0 MARCO_57_813511469-2 68 -0.043423 hybrid +135_1-5 Q0 MARCO_20_28204564-2 69 -0.043622 hybrid +135_1-5 Q0 MARCO_59_284396548-2 70 -0.044251 hybrid +135_1-5 Q0 MARCO_44_84762472-3 71 -0.049132 hybrid +135_1-5 Q0 MARCO_24_1441405406-5 72 -0.051587 hybrid +135_1-5 Q0 MARCO_59_759125384-3 73 -0.054100 hybrid +135_1-5 Q0 MARCO_14_270922954-3 74 -0.054242 hybrid +135_1-5 Q0 MARCO_09_18346700-6 75 -0.056155 hybrid +135_1-5 Q0 MARCO_37_184883300-9 76 -0.056526 hybrid +135_1-5 Q0 MARCO_45_56820973-2 77 -0.056726 hybrid +135_1-5 Q0 MARCO_10_806064397-5 78 -0.059410 hybrid +135_1-5 Q0 MARCO_56_1503917846-1 79 -0.060009 hybrid +135_1-5 Q0 MARCO_12_1456352205-1 80 -0.061380 hybrid +135_1-5 Q0 MARCO_04_985678968-44 81 -0.062864 hybrid +135_1-5 Q0 MARCO_46_971043453-2 82 -0.063835 hybrid +135_1-5 Q0 MARCO_48_524006386-4 83 -0.067660 hybrid +135_1-5 Q0 MARCO_42_1048646666-1 84 -0.068659 hybrid +135_1-5 Q0 MARCO_06_1404980825-8 85 -0.069744 hybrid +135_1-5 Q0 MARCO_37_1544838905-37 86 -0.071429 hybrid +135_1-5 Q0 MARCO_13_268972457-1 87 -0.074597 hybrid +135_1-5 Q0 MARCO_55_797344565-3 88 -0.077852 hybrid +135_1-5 Q0 MARCO_01_702665893-3 89 -0.078109 hybrid +135_1-5 Q0 MARCO_57_1295977882-6 90 -0.079337 hybrid +135_1-5 Q0 MARCO_21_787976834-5 91 -0.080650 hybrid +135_1-5 Q0 MARCO_24_545361357-2 92 -0.082134 hybrid +135_1-5 Q0 MARCO_21_870403840-2 93 -0.084390 hybrid +135_1-5 Q0 MARCO_55_797362811-3 94 -0.087073 hybrid +135_1-5 Q0 MARCO_56_1644415940-3 95 -0.088472 hybrid +135_1-5 Q0 MARCO_24_64176750-1 96 -0.090128 hybrid +135_1-5 Q0 MARCO_24_1401983236-4 97 -0.090756 hybrid +135_1-5 Q0 MARCO_21_427399074-4 98 -0.092612 hybrid +135_1-5 Q0 MARCO_48_537141280-3 99 -0.093839 hybrid +135_1-5 Q0 MARCO_21_237255551-5 100 -0.095981 hybrid +135_1-7 Q0 MARCO_21_583935744-4 1 0.500000 hybrid +135_1-7 Q0 MARCO_27_440715178-2 2 0.378738 hybrid +135_1-7 Q0 MARCO_21_237282101-4 3 0.329972 hybrid +135_1-7 Q0 MARCO_53_995786461-5 4 0.158477 hybrid +135_1-7 Q0 MARCO_30_192367960-10 5 0.149627 hybrid +135_1-7 Q0 MARCO_09_948565416-6 6 0.140841 hybrid +135_1-7 Q0 MARCO_53_995786461-7 7 0.031702 hybrid +135_1-7 Q0 MARCO_09_948565416-8 8 0.019934 hybrid +135_1-7 Q0 MARCO_21_583935744-1 9 -0.009423 hybrid +135_1-7 Q0 MARCO_21_583935744-5 10 -0.025366 hybrid +135_1-7 Q0 MARCO_44_1984942841-11 11 -0.028171 hybrid +135_1-7 Q0 MARCO_27_84545825-7 12 -0.036957 hybrid +135_1-7 Q0 MARCO_21_237282101-5 13 -0.058575 hybrid +135_1-7 Q0 MARCO_34_1590894249-4 14 -0.062751 hybrid +135_1-7 Q0 MARCO_24_1495248009-12 15 -0.070360 hybrid +135_1-7 Q0 MARCO_50_2143478118-63 16 -0.074245 hybrid +135_1-7 Q0 MARCO_30_931354089-38 17 -0.083063 hybrid +135_1-7 Q0 MARCO_21_583935744-3 18 -0.089899 hybrid +135_1-7 Q0 MARCO_55_881396183-31 19 -0.091736 hybrid +135_1-7 Q0 MARCO_31_25551789-2 20 -0.105600 hybrid +135_1-7 Q0 MARCO_02_1831456118-7 21 -0.107132 hybrid +135_1-7 Q0 MARCO_44_1985483110-13 22 -0.113774 hybrid +135_1-7 Q0 MARCO_27_1033511931-227 23 -0.121270 hybrid +135_1-7 Q0 MARCO_52_1291510907-5 24 -0.122721 hybrid +135_1-7 Q0 MARCO_27_1033511931-149 25 -0.123833 hybrid +135_1-7 Q0 MARCO_21_583935744-2 26 -0.129605 hybrid +135_1-7 Q0 MARCO_51_1761952064-55 27 -0.142292 hybrid +135_1-7 Q0 MARCO_46_701581995-13 28 -0.143098 hybrid +135_1-7 Q0 MARCO_30_1748977942-23 29 -0.144807 hybrid +135_1-7 Q0 MARCO_08_1617465729-55 30 -0.158042 hybrid +135_1-7 Q0 MARCO_51_356834546-5 31 -0.166102 hybrid +135_1-7 Q0 MARCO_47_313817461-4 32 -0.170745 hybrid +135_1-7 Q0 MARCO_27_440340234-23 33 -0.173437 hybrid +135_1-7 Q0 MARCO_03_1136137987-8 34 -0.175888 hybrid +135_1-7 Q0 MARCO_53_321674432-1 35 -0.176484 hybrid +135_1-7 Q0 MARCO_22_1168232426-4 36 -0.177436 hybrid +135_1-7 Q0 MARCO_21_1197994992-6 37 -0.177452 hybrid +135_1-7 Q0 MARCO_42_743680699-7 38 -0.181417 hybrid +135_1-7 Q0 MARCO_57_1966181811-26 39 -0.181579 hybrid +135_1-7 Q0 MARCO_28_467398472-2 40 -0.183433 hybrid +135_1-7 Q0 MARCO_28_1314344133-18 41 -0.191009 hybrid +135_1-7 Q0 MARCO_23_1676717433-17 42 -0.195023 hybrid +135_1-7 Q0 MARCO_55_881396183-24 43 -0.195572 hybrid +135_1-7 Q0 MARCO_27_640460266-4 44 -0.196120 hybrid +135_1-7 Q0 MARCO_40_1195215018-4 45 -0.200182 hybrid +135_1-7 Q0 MARCO_30_928897450-14 46 -0.204341 hybrid +135_1-7 Q0 MARCO_15_1653340650-5 47 -0.206905 hybrid +135_1-7 Q0 KILT_166022-1 48 -0.207292 hybrid +135_1-7 Q0 MARCO_58_422069381-9 49 -0.213837 hybrid +135_1-7 Q0 MARCO_10_1080258436-23 50 -0.215691 hybrid +135_1-7 Q0 MARCO_46_581664184-3 51 -0.221252 hybrid +135_1-7 Q0 MARCO_07_794319906-45 52 -0.221639 hybrid +135_1-7 Q0 MARCO_50_1768264228-18 53 -0.222558 hybrid +135_1-7 Q0 MARCO_29_665048364-4 54 -0.224944 hybrid +135_1-7 Q0 MARCO_52_1852613615-5 55 -0.226427 hybrid +135_1-7 Q0 MARCO_01_1815190240-20 56 -0.227378 hybrid +135_1-7 Q0 MARCO_09_244401429-6 57 -0.227878 hybrid +135_1-7 Q0 MARCO_15_912430252-42 58 -0.230731 hybrid +135_1-7 Q0 MARCO_50_1692578758-5 59 -0.231167 hybrid +135_1-7 Q0 MARCO_58_736838370-8 60 -0.231586 hybrid +135_1-7 Q0 MARCO_27_1033511931-239 61 -0.233794 hybrid +135_1-7 Q0 MARCO_20_90775362-5 62 -0.234020 hybrid +135_1-7 Q0 MARCO_46_284481784-6 63 -0.235245 hybrid +135_1-7 Q0 MARCO_46_842948657-5 64 -0.238260 hybrid +135_1-7 Q0 MARCO_51_964631145-3 65 -0.238873 hybrid +135_1-7 Q0 MARCO_15_1950587030-3 66 -0.242290 hybrid +135_1-7 Q0 MARCO_09_1197370146-3 67 -0.242355 hybrid +135_1-7 Q0 MARCO_04_947066041-2 68 -0.243048 hybrid +135_1-7 Q0 MARCO_48_377593017-16 69 -0.245385 hybrid +135_1-7 Q0 MARCO_53_320761678-1 70 -0.245450 hybrid +135_1-7 Q0 MARCO_41_328208933-17 71 -0.253526 hybrid +135_1-7 Q0 MARCO_14_1823564757-4 72 -0.255783 hybrid +135_1-7 Q0 MARCO_49_966347994-4 73 -0.256315 hybrid +135_1-7 Q0 MARCO_54_223456911-7 74 -0.257266 hybrid +135_1-7 Q0 MARCO_12_511961702-2 75 -0.258669 hybrid +135_1-7 Q0 MARCO_50_1138552156-21 76 -0.259024 hybrid +135_1-7 Q0 MARCO_51_2124069034-15 77 -0.259169 hybrid +135_1-7 Q0 MARCO_50_1109452564-14 78 -0.261410 hybrid +135_1-7 Q0 MARCO_53_321036469-9 79 -0.262570 hybrid +135_1-7 Q0 MARCO_21_150618773-2 80 -0.263634 hybrid +135_1-7 Q0 MARCO_50_317537409-4 81 -0.265746 hybrid +135_1-7 Q0 MARCO_50_648109016-4 82 -0.266649 hybrid +135_1-7 Q0 MARCO_10_1371006971-28 83 -0.268632 hybrid +135_1-7 Q0 MARCO_49_967272129-8 84 -0.269680 hybrid +135_1-7 Q0 MARCO_24_73024077-17 85 -0.270357 hybrid +135_1-7 Q0 MARCO_30_2048879029-125 86 -0.271372 hybrid +135_1-7 Q0 MARCO_29_567083529-2 87 -0.272050 hybrid +135_1-7 Q0 MARCO_07_794319906-41 88 -0.272388 hybrid +135_1-7 Q0 MARCO_30_1748977942-22 89 -0.273597 hybrid +135_1-7 Q0 MARCO_50_1446165255-17 90 -0.273597 hybrid +135_1-7 Q0 MARCO_51_369327013-3 91 -0.274065 hybrid +135_1-7 Q0 MARCO_27_440715178-3 92 -0.274742 hybrid +135_1-7 Q0 MARCO_50_111976071-1 93 -0.276241 hybrid +135_1-7 Q0 MARCO_51_962567772-4 94 -0.276853 hybrid +135_1-7 Q0 MARCO_07_1303831733-4 95 -0.276934 hybrid +135_1-7 Q0 KILT_35519105-4 96 -0.278320 hybrid +135_1-7 Q0 MARCO_23_1583008877-2 97 -0.278369 hybrid +135_1-7 Q0 MARCO_07_896681832-7 98 -0.278756 hybrid +135_1-7 Q0 MARCO_07_638191776-1 99 -0.279159 hybrid +135_1-7 Q0 MARCO_57_2221411032-11 100 -0.280094 hybrid +135_2-1 Q0 MARCO_20_353592428-2 1 0.500000 hybrid +135_2-1 Q0 MARCO_52_364389438-2 2 0.409065 hybrid +135_2-1 Q0 MARCO_20_17297398-5 3 0.370511 hybrid +135_2-1 Q0 MARCO_04_1103503251-4 4 0.241698 hybrid +135_2-1 Q0 MARCO_38_857467080-2 5 0.231260 hybrid +135_2-1 Q0 MARCO_56_1378957481-1 6 0.223880 hybrid +135_2-1 Q0 MARCO_29_25348656-12 7 0.184555 hybrid +135_2-1 Q0 MARCO_50_1299613644-14 8 0.166970 hybrid +135_2-1 Q0 MARCO_55_717978637-1 9 0.163467 hybrid +135_2-1 Q0 MARCO_50_986621897-2 10 0.157419 hybrid +135_2-1 Q0 MARCO_40_747901451-3 11 0.152515 hybrid +135_2-1 Q0 MARCO_42_706764605-1 12 0.124843 hybrid +135_2-1 Q0 MARCO_20_353592428-3 13 0.123254 hybrid +135_2-1 Q0 MARCO_11_1521194532-7 14 0.119682 hybrid +135_2-1 Q0 MARCO_11_1470577126-4 15 0.117346 hybrid +135_2-1 Q0 MARCO_23_60227988-35 16 0.110994 hybrid +135_2-1 Q0 MARCO_20_17318628-7 17 0.099715 hybrid +135_2-1 Q0 MARCO_36_1542686764-6 18 0.077157 hybrid +135_2-1 Q0 MARCO_21_50846219-1 19 0.065948 hybrid +135_2-1 Q0 MARCO_06_1852091296-5 20 0.055135 hybrid +135_2-1 Q0 MARCO_43_185113490-20 21 0.044907 hybrid +135_2-1 Q0 MARCO_08_618716956-26 22 0.033791 hybrid +135_2-1 Q0 MARCO_58_101205284-29 23 0.033441 hybrid +135_2-1 Q0 MARCO_29_25348656-1 24 0.031899 hybrid +135_2-1 Q0 MARCO_44_222064281-3 25 0.024707 hybrid +135_2-1 Q0 MARCO_56_1391086735-129 26 0.017818 hybrid +135_2-1 Q0 MARCO_05_1824501796-1 27 0.013475 hybrid +135_2-1 Q0 MARCO_50_844365983-11 28 0.004974 hybrid +135_2-1 Q0 MARCO_20_17334723-7 29 -0.010439 hybrid +135_2-1 Q0 MARCO_01_1887284477-28 30 -0.011139 hybrid +135_2-1 Q0 MARCO_52_540460166-10 31 -0.020107 hybrid +135_2-1 Q0 MARCO_23_1160138158-1 32 -0.023049 hybrid +135_2-1 Q0 MARCO_22_441624381-5 33 -0.026925 hybrid +135_2-1 Q0 MARCO_51_120043056-12 34 -0.028513 hybrid +135_2-1 Q0 MARCO_06_40509451-2 35 -0.028864 hybrid +135_2-1 Q0 MARCO_28_466260418-3 36 -0.034865 hybrid +135_2-1 Q0 MARCO_02_36949915-11 37 -0.035846 hybrid +135_2-1 Q0 MARCO_40_747911270-4 38 -0.036803 hybrid +135_2-1 Q0 MARCO_15_1322043236-3 39 -0.045164 hybrid +135_2-1 Q0 MARCO_46_1268754227-1 40 -0.045561 hybrid +135_2-1 Q0 MARCO_20_17261213-14 41 -0.047826 hybrid +135_2-1 Q0 MARCO_31_784283506-13 42 -0.050021 hybrid +135_2-1 Q0 MARCO_50_844388880-24 43 -0.052076 hybrid +135_2-1 Q0 MARCO_20_597371293-4 44 -0.053174 hybrid +135_2-1 Q0 MARCO_31_353157446-7 45 -0.053290 hybrid +135_2-1 Q0 MARCO_20_17254796-5 46 -0.053944 hybrid +135_2-1 Q0 MARCO_47_956373399-6 47 -0.057470 hybrid +135_2-1 Q0 MARCO_50_844388880-26 48 -0.063052 hybrid +135_2-1 Q0 MARCO_04_843885146-1 49 -0.065107 hybrid +135_2-1 Q0 MARCO_42_368721343-3 50 -0.073140 hybrid +135_2-1 Q0 MARCO_25_1420151040-5 51 -0.075639 hybrid +135_2-1 Q0 MARCO_20_17327538-6 52 -0.075872 hybrid +135_2-1 Q0 MARCO_50_1893048714-20 53 -0.077974 hybrid +135_2-1 Q0 MARCO_38_857196729-13 54 -0.078604 hybrid +135_2-1 Q0 MARCO_40_762920613-1 55 -0.082621 hybrid +135_2-1 Q0 MARCO_56_1151406737-3 56 -0.085096 hybrid +135_2-1 Q0 MARCO_20_17306835-5 57 -0.086567 hybrid +135_2-1 Q0 MARCO_23_845443503-14 58 -0.087595 hybrid +135_2-1 Q0 MARCO_15_523006617-1 59 -0.088459 hybrid +135_2-1 Q0 MARCO_08_678274631-1 60 -0.089019 hybrid +135_2-1 Q0 MARCO_50_2906772346-1 61 -0.089136 hybrid +135_2-1 Q0 MARCO_20_17297398-8 62 -0.090444 hybrid +135_2-1 Q0 MARCO_34_1335100605-6 63 -0.094064 hybrid +135_2-1 Q0 MARCO_02_487245467-1 64 -0.094367 hybrid +135_2-1 Q0 MARCO_20_17290870-5 65 -0.094671 hybrid +135_2-1 Q0 MARCO_14_485975470-10 66 -0.098524 hybrid +135_2-1 Q0 MARCO_05_1253127461-1 67 -0.103218 hybrid +135_2-1 Q0 MARCO_01_2144016315-2 68 -0.109149 hybrid +135_2-1 Q0 MARCO_52_952087073-19 69 -0.110994 hybrid +135_2-1 Q0 MARCO_24_1037638245-7 70 -0.114147 hybrid +135_2-1 Q0 MARCO_01_1576054866-7 71 -0.116529 hybrid +135_2-1 Q0 MARCO_28_719057733-1 72 -0.118187 hybrid +135_2-1 Q0 MARCO_08_618877102-6 73 -0.127458 hybrid +135_2-1 Q0 MARCO_29_25348656-9 74 -0.131871 hybrid +135_2-1 Q0 MARCO_20_17312957-4 75 -0.132011 hybrid +135_2-1 Q0 MARCO_13_1699035897-1 76 -0.132852 hybrid +135_2-1 Q0 MARCO_43_1122465090-13 77 -0.135187 hybrid +135_2-1 Q0 MARCO_11_1414984083-8 78 -0.137896 hybrid +135_2-1 Q0 MARCO_11_1555970196-7 79 -0.137896 hybrid +135_2-1 Q0 MARCO_11_1553874605-4 80 -0.138854 hybrid +135_2-1 Q0 MARCO_34_1331106926-5 81 -0.138877 hybrid +135_2-1 Q0 MARCO_10_1398862929-15 82 -0.141936 hybrid +135_2-1 Q0 MARCO_04_686433323-5 83 -0.145533 hybrid +135_2-1 Q0 MARCO_20_35799919-1 84 -0.145556 hybrid +135_2-1 Q0 MARCO_48_1151006253-4 85 -0.145649 hybrid +135_2-1 Q0 MARCO_40_747932675-6 86 -0.151744 hybrid +135_2-1 Q0 MARCO_20_98102417-1 87 -0.154640 hybrid +135_2-1 Q0 MARCO_50_1778625454-53 88 -0.154687 hybrid +135_2-1 Q0 MARCO_04_1278439780-1 89 -0.154920 hybrid +135_2-1 Q0 MARCO_10_584912356-4 90 -0.155644 hybrid +135_2-1 Q0 MARCO_20_17280102-3 91 -0.156462 hybrid +135_2-1 Q0 MARCO_58_1132557135-3 92 -0.157372 hybrid +135_2-1 Q0 MARCO_21_801054443-6 93 -0.158680 hybrid +135_2-1 Q0 MARCO_40_747917283-5 94 -0.160105 hybrid +135_2-1 Q0 MARCO_10_1102786185-19 95 -0.160478 hybrid +135_2-1 Q0 MARCO_48_446714697-2 96 -0.160712 hybrid +135_2-1 Q0 MARCO_24_1401796594-5 97 -0.161436 hybrid +135_2-1 Q0 MARCO_11_1512134640-4 98 -0.163374 hybrid +135_2-1 Q0 MARCO_11_1491559241-4 99 -0.165896 hybrid +135_2-1 Q0 MARCO_06_1401302412-1 100 -0.168301 hybrid +135_2-11 Q0 MARCO_51_971491333-4 1 0.500000 hybrid +135_2-11 Q0 MARCO_07_1237185290-1 2 0.143502 hybrid +135_2-11 Q0 MARCO_50_942738183-29 3 0.050605 hybrid +135_2-11 Q0 MARCO_13_1699264415-4 4 0.040254 hybrid +135_2-11 Q0 MARCO_42_707092932-6 5 0.026791 hybrid +135_2-11 Q0 KILT_49132-28 6 0.004688 hybrid +135_2-11 Q0 MARCO_51_971137917-5 7 -0.000992 hybrid +135_2-11 Q0 MARCO_33_752776293-4 8 -0.032351 hybrid +135_2-11 Q0 MARCO_09_796007700-3 9 -0.033966 hybrid +135_2-11 Q0 MARCO_42_161899714-2 10 -0.034573 hybrid +135_2-11 Q0 MARCO_55_1192964320-2 11 -0.036861 hybrid +135_2-11 Q0 MARCO_42_707092932-3 12 -0.047733 hybrid +135_2-11 Q0 MARCO_18_1491423692-12 13 -0.051147 hybrid +135_2-11 Q0 MARCO_48_1682534625-2 14 -0.060946 hybrid +135_2-11 Q0 MARCO_46_773010518-13 15 -0.063244 hybrid +135_2-11 Q0 MARCO_32_879868518-4 16 -0.081878 hybrid +135_2-11 Q0 MARCO_56_1655505817-1 17 -0.083125 hybrid +135_2-11 Q0 MARCO_23_65449010-6 18 -0.089412 hybrid +135_2-11 Q0 MARCO_08_163131777-11 19 -0.096132 hybrid +135_2-11 Q0 MARCO_45_519207963-9 20 -0.096967 hybrid +135_2-11 Q0 MARCO_23_182916034-10 21 -0.104555 hybrid +135_2-11 Q0 MARCO_33_1053951364-12 22 -0.113790 hybrid +135_2-11 Q0 MARCO_23_488370169-3 23 -0.118516 hybrid +135_2-11 Q0 MARCO_13_1356776531-3 24 -0.123156 hybrid +135_2-11 Q0 MARCO_21_646782726-2 25 -0.125129 hybrid +135_2-11 Q0 MARCO_50_942738183-28 26 -0.126982 hybrid +135_2-11 Q0 KILT_57276769-13 27 -0.129530 hybrid +135_2-11 Q0 MARCO_51_118282152-1 28 -0.131838 hybrid +135_2-11 Q0 MARCO_52_368432109-2 29 -0.133551 hybrid +135_2-11 Q0 MARCO_06_1566587255-6 30 -0.133779 hybrid +135_2-11 Q0 MARCO_07_1023905708-2 31 -0.134071 hybrid +135_2-11 Q0 MARCO_34_1292956605-7 32 -0.135123 hybrid +135_2-11 Q0 MARCO_13_1354044294-3 33 -0.135437 hybrid +135_2-11 Q0 MARCO_42_972338296-18 34 -0.139210 hybrid +135_2-11 Q0 MARCO_24_1849370235-5 35 -0.141139 hybrid +135_2-11 Q0 MARCO_11_1507927425-2 36 -0.142158 hybrid +135_2-11 Q0 MARCO_34_1285566989-5 37 -0.150483 hybrid +135_2-11 Q0 MARCO_06_1566587255-3 38 -0.154277 hybrid +135_2-11 Q0 MARCO_26_914468257-10 39 -0.155469 hybrid +135_2-11 Q0 MARCO_50_2013533582-1 40 -0.155816 hybrid +135_2-11 Q0 MARCO_56_1659415069-5 41 -0.156987 hybrid +135_2-11 Q0 MARCO_37_512646156-1 42 -0.160954 hybrid +135_2-11 Q0 MARCO_30_922759391-5 43 -0.166211 hybrid +135_2-11 Q0 MARCO_51_962893349-2 44 -0.168921 hybrid +135_2-11 Q0 MARCO_51_962960266-2 45 -0.169333 hybrid +135_2-11 Q0 MARCO_17_2178073897-3 46 -0.172498 hybrid +135_2-11 Q0 MARCO_52_876078364-1 47 -0.176802 hybrid +135_2-11 Q0 MARCO_50_1348060197-17 48 -0.182135 hybrid +135_2-11 Q0 MARCO_50_1210838297-12 49 -0.182937 hybrid +135_2-11 Q0 MARCO_50_1348086331-59 50 -0.182991 hybrid +135_2-11 Q0 MARCO_56_1551411346-5 51 -0.188736 hybrid +135_2-11 Q0 MARCO_09_1056110615-1 52 -0.200075 hybrid +135_2-11 Q0 MARCO_41_2181471087-2 53 -0.200172 hybrid +135_2-11 Q0 MARCO_26_898294424-6 54 -0.211045 hybrid +135_2-11 Q0 MARCO_17_2358433671-24 55 -0.214622 hybrid +135_2-11 Q0 MARCO_37_771784125-1 56 -0.214925 hybrid +135_2-11 Q0 MARCO_51_107676220-4 57 -0.216692 hybrid +135_2-11 Q0 MARCO_17_4736330206-37 58 -0.217418 hybrid +135_2-11 Q0 MARCO_20_949105377-5 59 -0.218014 hybrid +135_2-11 Q0 MARCO_56_1668422696-2 60 -0.219922 hybrid +135_2-11 Q0 MARCO_27_1028352385-3 61 -0.222546 hybrid +135_2-11 Q0 MARCO_51_971491333-2 62 -0.223174 hybrid +135_2-11 Q0 MARCO_11_214927063-8 63 -0.223207 hybrid +135_2-11 Q0 MARCO_13_1699264415-3 64 -0.224106 hybrid +135_2-11 Q0 MARCO_08_1080718189-34 65 -0.224247 hybrid +135_2-11 Q0 MARCO_49_842465758-34 66 -0.224247 hybrid +135_2-11 Q0 MARCO_20_100780411-7 67 -0.225808 hybrid +135_2-11 Q0 MARCO_51_970775019-11 68 -0.226936 hybrid +135_2-11 Q0 MARCO_02_1441798650-3 69 -0.227846 hybrid +135_2-11 Q0 MARCO_15_427685055-13 70 -0.228150 hybrid +135_2-11 Q0 MARCO_34_1301022000-3 71 -0.229396 hybrid +135_2-11 Q0 MARCO_42_707092932-1 72 -0.230459 hybrid +135_2-11 Q0 MARCO_00_17238060-2 73 -0.230589 hybrid +135_2-11 Q0 MARCO_15_440602455-1 74 -0.231250 hybrid +135_2-11 Q0 MARCO_25_1807727932-13 75 -0.231412 hybrid +135_2-11 Q0 MARCO_11_220923059-2 76 -0.232431 hybrid +135_2-11 Q0 MARCO_25_125699293-2 77 -0.233559 hybrid +135_2-11 Q0 MARCO_25_1807535157-5 78 -0.233645 hybrid +135_2-11 Q0 MARCO_51_964755384-2 79 -0.233916 hybrid +135_2-11 Q0 MARCO_15_418873288-5 80 -0.234849 hybrid +135_2-11 Q0 MARCO_15_436201372-4 81 -0.235651 hybrid +135_2-11 Q0 MARCO_10_1407080741-2 82 -0.235824 hybrid +135_2-11 Q0 MARCO_13_1356631724-6 83 -0.235965 hybrid +135_2-11 Q0 MARCO_15_437014581-10 84 -0.238718 hybrid +135_2-11 Q0 MARCO_34_1297983302-2 85 -0.239239 hybrid +135_2-11 Q0 MARCO_42_707048335-2 86 -0.242090 hybrid +135_2-11 Q0 MARCO_45_655694221-2 87 -0.243423 hybrid +135_2-11 Q0 MARCO_15_428511336-16 88 -0.246805 hybrid +135_2-11 Q0 MARCO_07_1023905708-1 89 -0.247434 hybrid +135_2-11 Q0 MARCO_47_1115969556-4 90 -0.247683 hybrid +135_2-11 Q0 MARCO_23_488297672-2 91 -0.247715 hybrid +135_2-11 Q0 MARCO_07_1237300246-2 92 -0.248084 hybrid +135_2-11 Q0 MARCO_21_867486171-2 93 -0.249222 hybrid +135_2-11 Q0 MARCO_51_118805833-5 94 -0.249439 hybrid +135_2-11 Q0 MARCO_30_727107817-12 95 -0.249753 hybrid +135_2-11 Q0 MARCO_42_445813563-3 96 -0.250187 hybrid +135_2-11 Q0 MARCO_24_687189545-39 97 -0.250686 hybrid +135_2-11 Q0 MARCO_13_1356776531-4 98 -0.250686 hybrid +135_2-11 Q0 MARCO_06_405148361-2 99 -0.251206 hybrid +135_2-11 Q0 KILT_159670-16 100 -0.251509 hybrid +135_2-3 Q0 MARCO_40_761913368-1 1 0.500000 hybrid +135_2-3 Q0 MARCO_10_661266732-1 2 0.361719 hybrid +135_2-3 Q0 MARCO_28_103127649-1 3 0.347941 hybrid +135_2-3 Q0 MARCO_08_808930129-1 4 0.331186 hybrid +135_2-3 Q0 MARCO_29_52735100-6 5 0.261875 hybrid +135_2-3 Q0 MARCO_05_1420945157-4 6 0.226231 hybrid +135_2-3 Q0 MARCO_23_898224248-1 7 0.222148 hybrid +135_2-3 Q0 MARCO_38_500120507-21 8 0.202943 hybrid +135_2-3 Q0 MARCO_08_808930129-7 9 0.195408 hybrid +135_2-3 Q0 MARCO_21_1098216156-8 10 0.180998 hybrid +135_2-3 Q0 MARCO_37_1293790867-13 11 0.177362 hybrid +135_2-3 Q0 MARCO_55_1353870280-1 12 0.159132 hybrid +135_2-3 Q0 MARCO_52_575070289-3 13 0.157077 hybrid +135_2-3 Q0 MARCO_07_1021926574-1 14 0.146777 hybrid +135_2-3 Q0 MARCO_52_582886704-1 15 0.139664 hybrid +135_2-3 Q0 MARCO_21_858513307-1 16 0.135923 hybrid +135_2-3 Q0 MARCO_02_1097911749-1 17 0.135159 hybrid +135_2-3 Q0 MARCO_02_1271577886-2 18 0.123963 hybrid +135_2-3 Q0 MARCO_40_761913368-2 19 0.123910 hybrid +135_2-3 Q0 MARCO_25_1605943708-1 20 0.118536 hybrid +135_2-3 Q0 MARCO_09_589622803-13 21 0.113346 hybrid +135_2-3 Q0 MARCO_31_1641084970-1 22 0.108551 hybrid +135_2-3 Q0 MARCO_09_859777870-1 23 0.104758 hybrid +135_2-3 Q0 MARCO_02_1271577886-3 24 0.104046 hybrid +135_2-3 Q0 MARCO_20_1650938743-1 25 0.097144 hybrid +135_2-3 Q0 MARCO_26_1060247035-1 26 0.087739 hybrid +135_2-3 Q0 MARCO_20_1137665710-3 27 0.084868 hybrid +135_2-3 Q0 MARCO_24_1401952457-1 28 0.081364 hybrid +135_2-3 Q0 MARCO_01_1971592762-3 29 0.070537 hybrid +135_2-3 Q0 MARCO_20_1650956476-1 30 0.067191 hybrid +135_2-3 Q0 MARCO_20_641172821-1 31 0.064846 hybrid +135_2-3 Q0 MARCO_40_744397707-1 32 0.052333 hybrid +135_2-3 Q0 MARCO_40_761744966-1 33 0.039714 hybrid +135_2-3 Q0 MARCO_00_1688871798-1 34 0.035393 hybrid +135_2-3 Q0 MARCO_42_697976022-1 35 0.029519 hybrid +135_2-3 Q0 MARCO_02_59069710-4 36 0.017058 hybrid +135_2-3 Q0 MARCO_52_566547069-2 37 0.016004 hybrid +135_2-3 Q0 MARCO_55_881381019-2 38 0.012658 hybrid +135_2-3 Q0 MARCO_48_843681698-1 39 0.012132 hybrid +135_2-3 Q0 MARCO_29_43062166-8 40 0.010419 hybrid +135_2-3 Q0 MARCO_47_602801421-10 41 0.005361 hybrid +135_2-3 Q0 MARCO_58_1128101591-3 42 0.005018 hybrid +135_2-3 Q0 MARCO_32_654127333-2 43 0.004860 hybrid +135_2-3 Q0 MARCO_49_1724812044-3 44 -0.008127 hybrid +135_2-3 Q0 MARCO_13_1302142198-8 45 -0.008865 hybrid +135_2-3 Q0 MARCO_32_51958693-1 46 -0.011736 hybrid +135_2-3 Q0 MARCO_01_1887629429-4 47 -0.013738 hybrid +135_2-3 Q0 MARCO_01_1059091778-2 48 -0.016689 hybrid +135_2-3 Q0 MARCO_53_604573585-6 49 -0.017453 hybrid +135_2-3 Q0 MARCO_12_1461809640-1 50 -0.018586 hybrid +135_2-3 Q0 MARCO_45_979087084-16 51 -0.018823 hybrid +135_2-3 Q0 MARCO_45_980984007-9 52 -0.018823 hybrid +135_2-3 Q0 MARCO_14_1823181054-1 53 -0.019798 hybrid +135_2-3 Q0 MARCO_28_103608125-1 54 -0.020325 hybrid +135_2-3 Q0 MARCO_39_1427675997-2 55 -0.021589 hybrid +135_2-3 Q0 MARCO_48_1538908013-4 56 -0.022063 hybrid +135_2-3 Q0 MARCO_47_602801421-2 57 -0.026437 hybrid +135_2-3 Q0 MARCO_07_1039473315-1 58 -0.034787 hybrid +135_2-3 Q0 MARCO_08_1054853294-4 59 -0.034814 hybrid +135_2-3 Q0 MARCO_31_1309062589-1 60 -0.041321 hybrid +135_2-3 Q0 MARCO_56_1548967988-1 61 -0.041690 hybrid +135_2-3 Q0 MARCO_47_1200012822-1 62 -0.041927 hybrid +135_2-3 Q0 MARCO_09_602109701-1 63 -0.042269 hybrid +135_2-3 Q0 MARCO_56_1544664555-1 64 -0.042375 hybrid +135_2-3 Q0 MARCO_20_122653631-3 65 -0.044482 hybrid +135_2-3 Q0 MARCO_03_109557421-4 66 -0.044667 hybrid +135_2-3 Q0 MARCO_30_2067626264-10 67 -0.047538 hybrid +135_2-3 Q0 MARCO_23_71273096-5 68 -0.048750 hybrid +135_2-3 Q0 MARCO_51_470574830-13 69 -0.049119 hybrid +135_2-3 Q0 MARCO_52_575033694-7 70 -0.052886 hybrid +135_2-3 Q0 MARCO_30_731968693-59 71 -0.061790 hybrid +135_2-3 Q0 MARCO_23_898224248-7 72 -0.062976 hybrid +135_2-3 Q0 MARCO_20_1630920151-1 73 -0.066269 hybrid +135_2-3 Q0 MARCO_04_1174580994-1 74 -0.073224 hybrid +135_2-3 Q0 MARCO_50_2892512264-7 75 -0.074962 hybrid +135_2-3 Q0 MARCO_51_971206917-1 76 -0.075884 hybrid +135_2-3 Q0 MARCO_07_652620264-3 77 -0.076095 hybrid +135_2-3 Q0 MARCO_15_520030197-2 78 -0.081707 hybrid +135_2-3 Q0 MARCO_41_2086300486-1 79 -0.082602 hybrid +135_2-3 Q0 MARCO_13_250781712-1 80 -0.085579 hybrid +135_2-3 Q0 MARCO_20_1650938743-2 81 -0.086448 hybrid +135_2-3 Q0 MARCO_28_361420043-1 82 -0.086765 hybrid +135_2-3 Q0 MARCO_34_1291512982-21 83 -0.087028 hybrid +135_2-3 Q0 MARCO_37_1534603946-10 84 -0.090242 hybrid +135_2-3 Q0 MARCO_37_852823318-39 85 -0.090901 hybrid +135_2-3 Q0 MARCO_22_868191701-12 86 -0.091428 hybrid +135_2-3 Q0 MARCO_56_1546850608-1 87 -0.092192 hybrid +135_2-3 Q0 MARCO_08_164896340-1 88 -0.093456 hybrid +135_2-3 Q0 MARCO_21_875119156-1 89 -0.094484 hybrid +135_2-3 Q0 MARCO_01_1059091778-1 90 -0.095774 hybrid +135_2-3 Q0 MARCO_38_912696412-6 91 -0.099199 hybrid +135_2-3 Q0 MARCO_15_127735082-1 92 -0.102861 hybrid +135_2-3 Q0 MARCO_01_1374029883-3 93 -0.103414 hybrid +135_2-3 Q0 MARCO_03_403369154-42 94 -0.106154 hybrid +135_2-3 Q0 MARCO_47_957092402-1 95 -0.106707 hybrid +135_2-3 Q0 MARCO_37_599496052-10 96 -0.109710 hybrid +135_2-3 Q0 MARCO_00_1688468518-3 97 -0.111976 hybrid +135_2-3 Q0 MARCO_21_384859636-81 98 -0.114136 hybrid +135_2-3 Q0 MARCO_33_1432734339-1 99 -0.117772 hybrid +135_2-3 Q0 MARCO_01_1887629429-6 100 -0.118404 hybrid +135_2-5 Q0 MARCO_42_161899714-2 1 0.500000 hybrid +135_2-5 Q0 MARCO_51_638868918-2 2 0.365188 hybrid +135_2-5 Q0 MARCO_21_870601055-1 3 0.346731 hybrid +135_2-5 Q0 MARCO_00_794012105-1 4 0.293509 hybrid +135_2-5 Q0 MARCO_01_1140054450-1 5 0.279741 hybrid +135_2-5 Q0 MARCO_50_899326001-8 6 0.267290 hybrid +135_2-5 Q0 MARCO_42_707092932-1 7 0.255001 hybrid +135_2-5 Q0 MARCO_03_1634155294-3 8 0.234188 hybrid +135_2-5 Q0 MARCO_03_1587233911-2 9 0.206399 hybrid +135_2-5 Q0 MARCO_03_1642744767-2 10 0.189998 hybrid +135_2-5 Q0 MARCO_49_1768010641-1 11 0.143682 hybrid +135_2-5 Q0 MARCO_04_956999677-1 12 0.133379 hybrid +135_2-5 Q0 MARCO_21_1197525938-14 13 0.119473 hybrid +135_2-5 Q0 MARCO_09_1681598911-2 14 0.097482 hybrid +135_2-5 Q0 MARCO_51_970775019-10 15 0.092492 hybrid +135_2-5 Q0 MARCO_22_1643905967-13 16 0.091915 hybrid +135_2-5 Q0 MARCO_31_235095564-11 17 0.087387 hybrid +135_2-5 Q0 MARCO_50_1877527704-49 18 0.081266 hybrid +135_2-5 Q0 MARCO_51_971491333-3 19 0.078748 hybrid +135_2-5 Q0 MARCO_44_1804815788-1 20 0.075306 hybrid +135_2-5 Q0 MARCO_50_2479705830-4 21 0.060799 hybrid +135_2-5 Q0 MARCO_08_1011355844-20 22 0.054331 hybrid +135_2-5 Q0 MARCO_24_375604309-10 23 0.049781 hybrid +135_2-5 Q0 MARCO_50_942738183-29 24 0.047355 hybrid +135_2-5 Q0 MARCO_36_1561530141-1 25 0.034119 hybrid +135_2-5 Q0 MARCO_44_1265462989-5 26 0.032433 hybrid +135_2-5 Q0 MARCO_25_1028866180-17 27 0.020559 hybrid +135_2-5 Q0 MARCO_11_1461524211-2 28 0.011134 hybrid +135_2-5 Q0 MARCO_53_318013039-1 29 0.003211 hybrid +135_2-5 Q0 MARCO_11_1551508332-3 30 0.001571 hybrid +135_2-5 Q0 MARCO_38_858931656-1 31 -0.006052 hybrid +135_2-5 Q0 MARCO_14_449063321-4 32 -0.007507 hybrid +135_2-5 Q0 MARCO_48_1032490753-27 33 -0.008270 hybrid +135_2-5 Q0 MARCO_15_1492732872-27 34 -0.011042 hybrid +135_2-5 Q0 MARCO_42_785046133-3 35 -0.013375 hybrid +135_2-5 Q0 MARCO_11_1475443670-1 36 -0.014160 hybrid +135_2-5 Q0 MARCO_51_971491333-4 37 -0.017417 hybrid +135_2-5 Q0 MARCO_48_9748755-5 38 -0.017533 hybrid +135_2-5 Q0 MARCO_32_1209093529-6 39 -0.019312 hybrid +135_2-5 Q0 MARCO_30_728197171-14 40 -0.019543 hybrid +135_2-5 Q0 MARCO_03_1570768411-3 41 -0.026958 hybrid +135_2-5 Q0 MARCO_56_1517301414-10 42 -0.035343 hybrid +135_2-5 Q0 MARCO_04_230765795-6 43 -0.035366 hybrid +135_2-5 Q0 MARCO_30_727440600-35 44 -0.040887 hybrid +135_2-5 Q0 MARCO_53_771065581-4 45 -0.043474 hybrid +135_2-5 Q0 MARCO_03_1643006006-2 46 -0.046316 hybrid +135_2-5 Q0 MARCO_42_892245414-1 47 -0.050173 hybrid +135_2-5 Q0 MARCO_10_1056350498-23 48 -0.051236 hybrid +135_2-5 Q0 MARCO_03_1750864767-3 49 -0.057057 hybrid +135_2-5 Q0 MARCO_42_471021744-1 50 -0.058351 hybrid +135_2-5 Q0 MARCO_21_566096227-1 51 -0.063248 hybrid +135_2-5 Q0 MARCO_07_1416285002-4 52 -0.064842 hybrid +135_2-5 Q0 MARCO_45_1616980238-6 53 -0.064934 hybrid +135_2-5 Q0 MARCO_07_1078615003-3 54 -0.071772 hybrid +135_2-5 Q0 MARCO_00_457656144-1 55 -0.082236 hybrid +135_2-5 Q0 MARCO_19_2143799719-5 56 -0.084893 hybrid +135_2-5 Q0 MARCO_58_1143695172-8 57 -0.088773 hybrid +135_2-5 Q0 MARCO_03_1642744767-4 58 -0.090437 hybrid +135_2-5 Q0 MARCO_50_1877527704-14 59 -0.091314 hybrid +135_2-5 Q0 MARCO_42_918820012-3 60 -0.095611 hybrid +135_2-5 Q0 MARCO_48_1014820922-13 61 -0.096951 hybrid +135_2-5 Q0 MARCO_11_1506770452-1 62 -0.098360 hybrid +135_2-5 Q0 MARCO_15_1610507878-13 63 -0.100439 hybrid +135_2-5 Q0 MARCO_12_1940239586-2 64 -0.100554 hybrid +135_2-5 Q0 MARCO_50_1353284563-3 65 -0.101132 hybrid +135_2-5 Q0 MARCO_06_803985282-2 66 -0.101502 hybrid +135_2-5 Q0 MARCO_30_242135164-3 67 -0.101640 hybrid +135_2-5 Q0 MARCO_34_1178876430-10 68 -0.104551 hybrid +135_2-5 Q0 MARCO_44_217468706-3 69 -0.105960 hybrid +135_2-5 Q0 MARCO_03_1570768411-2 70 -0.107831 hybrid +135_2-5 Q0 MARCO_04_119689290-1 71 -0.109864 hybrid +135_2-5 Q0 MARCO_03_1570768411-4 72 -0.110649 hybrid +135_2-5 Q0 MARCO_38_859052608-1 73 -0.112266 hybrid +135_2-5 Q0 MARCO_50_2428697373-4 74 -0.112312 hybrid +135_2-5 Q0 MARCO_38_819123983-10 75 -0.112567 hybrid +135_2-5 Q0 MARCO_49_948871758-1 76 -0.112636 hybrid +135_2-5 Q0 MARCO_03_1570768411-1 77 -0.114738 hybrid +135_2-5 Q0 MARCO_04_731142193-8 78 -0.115754 hybrid +135_2-5 Q0 MARCO_50_2827853951-5 79 -0.125156 hybrid +135_2-5 Q0 MARCO_09_909735869-9 80 -0.125387 hybrid +135_2-5 Q0 MARCO_21_812459785-21 81 -0.126565 hybrid +135_2-5 Q0 MARCO_29_1349651218-11 82 -0.126565 hybrid +135_2-5 Q0 MARCO_45_1615883178-5 83 -0.127720 hybrid +135_2-5 Q0 MARCO_42_916822632-3 84 -0.130839 hybrid +135_2-5 Q0 MARCO_50_1348060197-9 85 -0.131578 hybrid +135_2-5 Q0 MARCO_11_1422036862-2 86 -0.134558 hybrid +135_2-5 Q0 MARCO_31_375700808-12 87 -0.134904 hybrid +135_2-5 Q0 MARCO_09_918363424-3 88 -0.135713 hybrid +135_2-5 Q0 MARCO_01_1747400273-7 89 -0.137145 hybrid +135_2-5 Q0 MARCO_45_1614767715-6 90 -0.137307 hybrid +135_2-5 Q0 MARCO_45_1614782177-6 91 -0.137307 hybrid +135_2-5 Q0 MARCO_31_1704583375-5 92 -0.138138 hybrid +135_2-5 Q0 MARCO_06_1303811056-12 93 -0.140864 hybrid +135_2-5 Q0 MARCO_07_1150608937-1 94 -0.141210 hybrid +135_2-5 Q0 MARCO_05_855850956-2 95 -0.141857 hybrid +135_2-5 Q0 MARCO_45_1614434706-5 96 -0.143567 hybrid +135_2-5 Q0 MARCO_45_1617580808-4 97 -0.143567 hybrid +135_2-5 Q0 MARCO_34_1284636099-1 98 -0.146269 hybrid +135_2-5 Q0 MARCO_37_840595800-1 99 -0.150035 hybrid +135_2-5 Q0 MARCO_15_1861944571-1 100 -0.153292 hybrid +135_2-7 Q0 MARCO_42_161899714-2 1 0.500000 hybrid +135_2-7 Q0 MARCO_42_707092932-1 2 0.390771 hybrid +135_2-7 Q0 MARCO_51_971491333-4 3 0.331674 hybrid +135_2-7 Q0 MARCO_49_1073101946-6 4 0.328731 hybrid +135_2-7 Q0 MARCO_21_845826199-2 5 0.225906 hybrid +135_2-7 Q0 MARCO_42_471021744-1 6 0.188650 hybrid +135_2-7 Q0 MARCO_57_74046534-11 7 0.172899 hybrid +135_2-7 Q0 MARCO_40_961837537-4 8 0.163663 hybrid +135_2-7 Q0 MARCO_30_242135164-3 9 0.106858 hybrid +135_2-7 Q0 MARCO_07_431734152-1 10 0.104297 hybrid +135_2-7 Q0 MARCO_41_1422111649-46 11 0.100049 hybrid +135_2-7 Q0 MARCO_24_375604309-19 12 0.099241 hybrid +135_2-7 Q0 MARCO_00_1336506202-3 13 0.095825 hybrid +135_2-7 Q0 MARCO_34_1178876430-4 14 0.095353 hybrid +135_2-7 Q0 MARCO_15_1653793665-5 15 0.087376 hybrid +135_2-7 Q0 MARCO_51_971491333-3 16 0.072501 hybrid +135_2-7 Q0 MARCO_21_1444961832-3 17 0.066254 hybrid +135_2-7 Q0 MARCO_21_870601055-1 18 0.063221 hybrid +135_2-7 Q0 MARCO_03_1766279047-4 19 0.032009 hybrid +135_2-7 Q0 MARCO_51_970775019-2 20 0.029942 hybrid +135_2-7 Q0 MARCO_30_728197171-14 21 0.024706 hybrid +135_2-7 Q0 MARCO_21_797905578-15 22 0.020594 hybrid +135_2-7 Q0 MARCO_24_117116783-4 23 0.018999 hybrid +135_2-7 Q0 MARCO_03_1634155294-3 24 0.015449 hybrid +135_2-7 Q0 MARCO_47_1243089310-1 25 0.015404 hybrid +135_2-7 Q0 MARCO_53_755145623-6 26 0.014235 hybrid +135_2-7 Q0 MARCO_28_1624351255-1 27 0.014100 hybrid +135_2-7 Q0 MARCO_37_1545516869-11 28 0.010550 hybrid +135_2-7 Q0 MARCO_10_998427319-14 29 0.009516 hybrid +135_2-7 Q0 MARCO_27_610090026-6 30 0.003382 hybrid +135_2-7 Q0 MARCO_50_942738183-29 31 0.000798 hybrid +135_2-7 Q0 MARCO_38_1321151988-1 32 -0.007719 hybrid +135_2-7 Q0 MARCO_05_1587718539-79 33 -0.012303 hybrid +135_2-7 Q0 MARCO_34_76281650-1 34 -0.014033 hybrid +135_2-7 Q0 MARCO_00_906383037-2 35 -0.017785 hybrid +135_2-7 Q0 MARCO_57_83287083-11 36 -0.018909 hybrid +135_2-7 Q0 MARCO_05_1443936553-7 37 -0.028279 hybrid +135_2-7 Q0 MARCO_22_297928304-10 38 -0.040570 hybrid +135_2-7 Q0 MARCO_51_971491333-1 39 -0.043536 hybrid +135_2-7 Q0 MARCO_44_1804815788-6 40 -0.043626 hybrid +135_2-7 Q0 MARCO_27_505903154-6 41 -0.045064 hybrid +135_2-7 Q0 MARCO_50_1877527704-16 42 -0.047289 hybrid +135_2-7 Q0 MARCO_23_370794788-1 43 -0.057985 hybrid +135_2-7 Q0 MARCO_50_899326001-8 44 -0.064524 hybrid +135_2-7 Q0 MARCO_08_37064092-12 45 -0.066613 hybrid +135_2-7 Q0 MARCO_49_1768010641-1 46 -0.070344 hybrid +135_2-7 Q0 MARCO_22_965269132-2 47 -0.072950 hybrid +135_2-7 Q0 MARCO_50_2479705830-4 48 -0.078410 hybrid +135_2-7 Q0 MARCO_15_1610507878-13 49 -0.079309 hybrid +135_2-7 Q0 MARCO_42_785046133-3 50 -0.083466 hybrid +135_2-7 Q0 MARCO_33_1103703673-32 51 -0.085174 hybrid +135_2-7 Q0 MARCO_51_117493413-1 52 -0.087016 hybrid +135_2-7 Q0 MARCO_12_1234096440-2 53 -0.088477 hybrid +135_2-7 Q0 MARCO_03_785411152-3 54 -0.089398 hybrid +135_2-7 Q0 MARCO_49_1830241430-1 55 -0.091174 hybrid +135_2-7 Q0 MARCO_22_1531794337-3 56 -0.095465 hybrid +135_2-7 Q0 MARCO_08_1011355844-20 57 -0.099780 hybrid +135_2-7 Q0 MARCO_00_1171149098-11 58 -0.103487 hybrid +135_2-7 Q0 MARCO_37_1547557669-8 59 -0.106768 hybrid +135_2-7 Q0 MARCO_01_1872949174-3 60 -0.107172 hybrid +135_2-7 Q0 MARCO_03_1587233911-2 61 -0.107712 hybrid +135_2-7 Q0 MARCO_42_820363797-2 62 -0.112296 hybrid +135_2-7 Q0 MARCO_09_17958275-2 63 -0.112723 hybrid +135_2-7 Q0 MARCO_49_1179012444-4 64 -0.115015 hybrid +135_2-7 Q0 MARCO_01_1638796365-2 65 -0.115666 hybrid +135_2-7 Q0 MARCO_27_874574301-4 66 -0.115667 hybrid +135_2-7 Q0 MARCO_51_970775019-10 67 -0.115734 hybrid +135_2-7 Q0 MARCO_14_1514680951-7 68 -0.117352 hybrid +135_2-7 Q0 MARCO_07_1003589292-4 69 -0.118767 hybrid +135_2-7 Q0 MARCO_39_1297392189-6 70 -0.124317 hybrid +135_2-7 Q0 MARCO_03_183262169-10 71 -0.124677 hybrid +135_2-7 Q0 MARCO_57_94787065-2 72 -0.124767 hybrid +135_2-7 Q0 MARCO_29_1349651218-29 73 -0.125081 hybrid +135_2-7 Q0 MARCO_03_1750864767-3 74 -0.125643 hybrid +135_2-7 Q0 MARCO_51_970775019-11 75 -0.127890 hybrid +135_2-7 Q0 MARCO_29_128383610-6 76 -0.131058 hybrid +135_2-7 Q0 MARCO_24_375604309-2 77 -0.134317 hybrid +135_2-7 Q0 MARCO_58_736838370-8 78 -0.135710 hybrid +135_2-7 Q0 MARCO_13_559209327-2 79 -0.138002 hybrid +135_2-7 Q0 MARCO_34_144810400-8 80 -0.140047 hybrid +135_2-7 Q0 MARCO_52_1234423893-6 81 -0.142069 hybrid +135_2-7 Q0 MARCO_48_1439867211-4 82 -0.144114 hybrid +135_2-7 Q0 MARCO_22_854502332-2 83 -0.146900 hybrid +135_2-7 Q0 MARCO_41_1437738856-4 84 -0.147687 hybrid +135_2-7 Q0 MARCO_50_1563223177-13 85 -0.147889 hybrid +135_2-7 Q0 MARCO_09_848582719-20 86 -0.154136 hybrid +135_2-7 Q0 MARCO_11_1558680391-1 87 -0.154675 hybrid +135_2-7 Q0 MARCO_56_1569414789-3 88 -0.156225 hybrid +135_2-7 Q0 MARCO_56_1569414789-5 89 -0.156226 hybrid +135_2-7 Q0 MARCO_56_1569414789-7 90 -0.156226 hybrid +135_2-7 Q0 MARCO_29_1349651218-28 91 -0.156787 hybrid +135_2-7 Q0 MARCO_23_1821661030-1 92 -0.159573 hybrid +135_2-7 Q0 MARCO_14_449063321-4 93 -0.160337 hybrid +135_2-7 Q0 MARCO_50_2428697373-4 94 -0.160719 hybrid +135_2-7 Q0 MARCO_24_375604309-10 95 -0.161304 hybrid +135_2-7 Q0 MARCO_50_2110133203-8 96 -0.163146 hybrid +135_2-7 Q0 MARCO_11_1506770452-1 97 -0.164045 hybrid +135_2-7 Q0 MARCO_48_628433812-1 98 -0.165348 hybrid +135_2-7 Q0 MARCO_03_356034021-2 99 -0.165550 hybrid +135_2-7 Q0 MARCO_42_707092932-3 100 -0.165595 hybrid +135_2-9 Q0 MARCO_51_971491333-3 1 0.500000 hybrid +135_2-9 Q0 MARCO_34_1178876430-4 2 0.018578 hybrid +135_2-9 Q0 MARCO_21_870601055-1 3 -0.090660 hybrid +135_2-9 Q0 MARCO_22_932202796-1 4 -0.090788 hybrid +135_2-9 Q0 MARCO_23_580938627-7 5 -0.092865 hybrid +135_2-9 Q0 MARCO_07_1023905708-2 6 -0.114394 hybrid +135_2-9 Q0 MARCO_48_533439138-1 7 -0.119601 hybrid +135_2-9 Q0 MARCO_50_2479705830-1 8 -0.144927 hybrid +135_2-9 Q0 MARCO_10_469686495-1 9 -0.151112 hybrid +135_2-9 Q0 MARCO_38_276745843-4 10 -0.156712 hybrid +135_2-9 Q0 MARCO_53_170416477-1 11 -0.163501 hybrid +135_2-9 Q0 MARCO_50_1111820569-127 12 -0.167408 hybrid +135_2-9 Q0 MARCO_57_1234821657-1 13 -0.167737 hybrid +135_2-9 Q0 MARCO_34_1297094954-1 14 -0.174728 hybrid +135_2-9 Q0 MARCO_46_1273347812-4 15 -0.178534 hybrid +135_2-9 Q0 MARCO_46_567135259-6 16 -0.182752 hybrid +135_2-9 Q0 MARCO_50_28088782-9 17 -0.184481 hybrid +135_2-9 Q0 MARCO_26_997050396-1 18 -0.187903 hybrid +135_2-9 Q0 MARCO_04_930782920-2 19 -0.189212 hybrid +135_2-9 Q0 MARCO_27_332249691-1 20 -0.200264 hybrid +135_2-9 Q0 MARCO_42_707092932-3 21 -0.204455 hybrid +135_2-9 Q0 MARCO_50_1111820569-29 22 -0.215535 hybrid +135_2-9 Q0 MARCO_48_514866393-1 23 -0.222334 hybrid +135_2-9 Q0 MARCO_59_813262971-1 24 -0.223075 hybrid +135_2-9 Q0 MARCO_51_971491333-4 25 -0.228784 hybrid +135_2-9 Q0 MARCO_46_257335684-3 26 -0.229983 hybrid +135_2-9 Q0 MARCO_01_1140054450-2 27 -0.230065 hybrid +135_2-9 Q0 MARCO_28_1625293389-1 28 -0.230184 hybrid +135_2-9 Q0 MARCO_56_1576663188-3 29 -0.235253 hybrid +135_2-9 Q0 MARCO_50_942738183-29 30 -0.237806 hybrid +135_2-9 Q0 MARCO_24_389822841-2 31 -0.239864 hybrid +135_2-9 Q0 MARCO_12_981069019-29 32 -0.243808 hybrid +135_2-9 Q0 MARCO_09_918935707-10 33 -0.244412 hybrid +135_2-9 Q0 MARCO_14_100143523-1 34 -0.252720 hybrid +135_2-9 Q0 MARCO_40_410420314-3 35 -0.255282 hybrid +135_2-9 Q0 MARCO_50_1121915878-3 36 -0.255657 hybrid +135_2-9 Q0 MARCO_03_1634155294-3 37 -0.255886 hybrid +135_2-9 Q0 MARCO_20_195561966-2 38 -0.259692 hybrid +135_2-9 Q0 MARCO_12_1234096440-2 39 -0.263352 hybrid +135_2-9 Q0 MARCO_32_1288966558-7 40 -0.269345 hybrid +135_2-9 Q0 MARCO_30_583073289-1 41 -0.271385 hybrid +135_2-9 Q0 MARCO_23_944932744-2 42 -0.277662 hybrid +135_2-9 Q0 MARCO_14_1675649281-8 43 -0.278650 hybrid +135_2-9 Q0 MARCO_50_118574454-4 44 -0.279190 hybrid +135_2-9 Q0 MARCO_50_1584546584-15 45 -0.279428 hybrid +135_2-9 Q0 MARCO_33_615995413-2 46 -0.280013 hybrid +135_2-9 Q0 MARCO_54_450888438-1 47 -0.285650 hybrid +135_2-9 Q0 MARCO_50_825130220-3 48 -0.285723 hybrid +135_2-9 Q0 MARCO_46_15043157-8 49 -0.285851 hybrid +135_2-9 Q0 MARCO_52_896378808-1 50 -0.286354 hybrid +135_2-9 Q0 MARCO_28_1624351255-1 51 -0.288504 hybrid +135_2-9 Q0 MARCO_58_958296495-6 52 -0.289181 hybrid +135_2-9 Q0 MARCO_19_1451261122-1 53 -0.290307 hybrid +135_2-9 Q0 MARCO_49_1768010641-1 54 -0.291725 hybrid +135_2-9 Q0 MARCO_05_1443131556-2 55 -0.295174 hybrid +135_2-9 Q0 MARCO_27_790273620-6 56 -0.295357 hybrid +135_2-9 Q0 MARCO_44_217468706-3 57 -0.297160 hybrid +135_2-9 Q0 MARCO_42_962020096-1 58 -0.299155 hybrid +135_2-9 Q0 MARCO_57_695465214-7 59 -0.301643 hybrid +135_2-9 Q0 MARCO_25_1462443382-1 60 -0.304059 hybrid +135_2-9 Q0 MARCO_42_907145402-1 61 -0.304352 hybrid +135_2-9 Q0 MARCO_42_970517461-4 62 -0.304352 hybrid +135_2-9 Q0 MARCO_38_1329217397-1 63 -0.304507 hybrid +135_2-9 Q0 MARCO_53_770550428-12 64 -0.306163 hybrid +135_2-9 Q0 MARCO_25_1070140557-11 65 -0.307893 hybrid +135_2-9 Q0 MARCO_17_3936134617-47 66 -0.308926 hybrid +135_2-9 Q0 MARCO_06_929438170-7 67 -0.309796 hybrid +135_2-9 Q0 MARCO_11_1475443670-2 68 -0.310134 hybrid +135_2-9 Q0 MARCO_08_1292386887-1 69 -0.311132 hybrid +135_2-9 Q0 MARCO_45_1229266764-2 70 -0.311918 hybrid +135_2-9 Q0 MARCO_14_732801117-14 71 -0.312669 hybrid +135_2-9 Q0 MARCO_42_730341410-2 72 -0.312669 hybrid +135_2-9 Q0 MARCO_07_1416285002-4 73 -0.314965 hybrid +135_2-9 Q0 MARCO_21_824957135-1 74 -0.314965 hybrid +135_2-9 Q0 MARCO_37_511807745-4 75 -0.315313 hybrid +135_2-9 Q0 MARCO_46_1259313751-1 76 -0.315725 hybrid +135_2-9 Q0 MARCO_52_1109895139-7 77 -0.315972 hybrid +135_2-9 Q0 MARCO_42_603241921-3 78 -0.316759 hybrid +135_2-9 Q0 MARCO_32_374642125-1 79 -0.317198 hybrid +135_2-9 Q0 MARCO_26_13570859-2 80 -0.317463 hybrid +135_2-9 Q0 MARCO_57_12942388-2 81 -0.317838 hybrid +135_2-9 Q0 MARCO_44_182516244-8 82 -0.317957 hybrid +135_2-9 Q0 MARCO_21_858932039-2 83 -0.318406 hybrid +135_2-9 Q0 MARCO_57_997001267-2 84 -0.318927 hybrid +135_2-9 Q0 MARCO_50_2473584828-3 85 -0.318991 hybrid +135_2-9 Q0 MARCO_48_536657022-1 86 -0.319449 hybrid +135_2-9 Q0 MARCO_53_580038841-1 87 -0.320080 hybrid +135_2-9 Q0 MARCO_45_1229145162-1 88 -0.320080 hybrid +135_2-9 Q0 MARCO_27_610090026-6 89 -0.320107 hybrid +135_2-9 Q0 MARCO_20_478021325-1 90 -0.320382 hybrid +135_2-9 Q0 MARCO_54_142619105-4 91 -0.321699 hybrid +135_2-9 Q0 MARCO_42_965315468-4 92 -0.322139 hybrid +135_2-9 Q0 MARCO_42_970955073-4 93 -0.322139 hybrid +135_2-9 Q0 MARCO_21_1444961832-3 94 -0.323200 hybrid +135_2-9 Q0 MARCO_20_194348705-3 95 -0.323456 hybrid +135_2-9 Q0 MARCO_50_1877527704-74 96 -0.323456 hybrid +135_2-9 Q0 MARCO_37_514205061-1 97 -0.324545 hybrid +135_2-9 Q0 MARCO_08_37064092-12 98 -0.324737 hybrid +135_2-9 Q0 MARCO_31_200591367-1 99 -0.325570 hybrid +135_2-9 Q0 MARCO_51_1198117051-4 100 -0.326000 hybrid +135_3-1 Q0 MARCO_48_530993744-4 1 0.500000 hybrid +135_3-1 Q0 MARCO_28_645990301-1 2 0.323250 hybrid +135_3-1 Q0 MARCO_42_804317424-3 3 0.243771 hybrid +135_3-1 Q0 MARCO_21_875122949-1 4 0.242542 hybrid +135_3-1 Q0 MARCO_21_678173848-1 5 0.214694 hybrid +135_3-1 Q0 MARCO_31_1293626544-2 6 0.191780 hybrid +135_3-1 Q0 MARCO_46_1001754017-2 7 0.157466 hybrid +135_3-1 Q0 MARCO_05_1612795622-6 8 0.133701 hybrid +135_3-1 Q0 MARCO_07_1025136257-3 9 0.132227 hybrid +135_3-1 Q0 MARCO_34_853480584-8 10 0.130412 hybrid +135_3-1 Q0 MARCO_21_867486171-2 11 0.115268 hybrid +135_3-1 Q0 MARCO_12_522385574-1 12 0.097024 hybrid +135_3-1 Q0 MARCO_09_795682330-1 13 0.089084 hybrid +135_3-1 Q0 MARCO_50_910736706-30 14 0.086777 hybrid +135_3-1 Q0 MARCO_20_1646818330-4 15 0.082164 hybrid +135_3-1 Q0 MARCO_23_1161025400-1 16 0.081257 hybrid +135_3-1 Q0 MARCO_09_1039188309-5 17 0.080179 hybrid +135_3-1 Q0 MARCO_07_1024848861-3 18 0.079707 hybrid +135_3-1 Q0 MARCO_52_540445950-4 19 0.079045 hybrid +135_3-1 Q0 MARCO_33_1315161380-16 20 0.075113 hybrid +135_3-1 Q0 MARCO_45_1343190636-9 21 0.067947 hybrid +135_3-1 Q0 MARCO_07_992255008-3 22 0.044315 hybrid +135_3-1 Q0 MARCO_03_921528360-2 23 0.029096 hybrid +135_3-1 Q0 MARCO_42_805507948-4 24 0.029020 hybrid +135_3-1 Q0 MARCO_20_1169331240-3 25 0.026865 hybrid +135_3-1 Q0 MARCO_52_1684965918-5 26 0.025296 hybrid +135_3-1 Q0 MARCO_21_875826069-1 27 0.024370 hybrid +135_3-1 Q0 MARCO_31_1293385072-2 28 0.022555 hybrid +135_3-1 Q0 MARCO_08_1292330141-1 29 0.017998 hybrid +135_3-1 Q0 MARCO_06_1433849269-8 30 0.016373 hybrid +135_3-1 Q0 MARCO_35_439026276-3 31 0.011343 hybrid +135_3-1 Q0 MARCO_24_86433529-2 32 0.010001 hybrid +135_3-1 Q0 MARCO_53_29257599-2 33 0.009529 hybrid +135_3-1 Q0 MARCO_31_1300740495-2 34 -0.001021 hybrid +135_3-1 Q0 MARCO_21_601243286-2 35 -0.010814 hybrid +135_3-1 Q0 MARCO_48_98929793-4 36 -0.015975 hybrid +135_3-1 Q0 MARCO_30_269566336-25 37 -0.017166 hybrid +135_3-1 Q0 MARCO_35_819427791-2 38 -0.018074 hybrid +135_3-1 Q0 MARCO_20_26451631-3 39 -0.018433 hybrid +135_3-1 Q0 MARCO_44_1581725263-3 40 -0.019548 hybrid +135_3-1 Q0 MARCO_37_633346189-7 41 -0.023424 hybrid +135_3-1 Q0 MARCO_31_115808130-25 42 -0.032083 hybrid +135_3-1 Q0 MARCO_30_1243100018-4 43 -0.032518 hybrid +135_3-1 Q0 MARCO_30_583112810-2 44 -0.034522 hybrid +135_3-1 Q0 MARCO_48_513792677-5 45 -0.036356 hybrid +135_3-1 Q0 MARCO_37_513973702-6 46 -0.038398 hybrid +135_3-1 Q0 MARCO_57_116261937-2 47 -0.038492 hybrid +135_3-1 Q0 MARCO_55_1213418169-7 48 -0.044050 hybrid +135_3-1 Q0 MARCO_38_1389095510-3 49 -0.054316 hybrid +135_3-1 Q0 MARCO_53_618728720-3 50 -0.054959 hybrid +135_3-1 Q0 MARCO_46_567135259-2 51 -0.060631 hybrid +135_3-1 Q0 MARCO_01_2141797738-3 52 -0.062294 hybrid +135_3-1 Q0 MARCO_31_1306104962-4 53 -0.062918 hybrid +135_3-1 Q0 MARCO_50_2557612464-6 54 -0.064506 hybrid +135_3-1 Q0 MARCO_03_919763943-2 55 -0.071123 hybrid +135_3-1 Q0 MARCO_01_2143004947-4 56 -0.073411 hybrid +135_3-1 Q0 MARCO_50_1403314805-9 57 -0.080765 hybrid +135_3-1 Q0 MARCO_42_805507948-2 58 -0.082127 hybrid +135_3-1 Q0 MARCO_03_920752573-5 59 -0.083733 hybrid +135_3-1 Q0 MARCO_01_2141807205-3 60 -0.085586 hybrid +135_3-1 Q0 MARCO_42_1025536487-2 61 -0.086097 hybrid +135_3-1 Q0 MARCO_01_2142678642-3 62 -0.087288 hybrid +135_3-1 Q0 MARCO_09_1881497793-5 63 -0.087893 hybrid +135_3-1 Q0 MARCO_35_438658620-4 64 -0.088725 hybrid +135_3-1 Q0 MARCO_01_1106832362-6 65 -0.094907 hybrid +135_3-1 Q0 MARCO_50_910674203-13 66 -0.098159 hybrid +135_3-1 Q0 MARCO_55_951890046-2 67 -0.101732 hybrid +135_3-1 Q0 MARCO_08_1292161948-1 68 -0.103584 hybrid +135_3-1 Q0 MARCO_12_1955550652-2 69 -0.107687 hybrid +135_3-1 Q0 MARCO_01_1374029883-2 70 -0.107687 hybrid +135_3-1 Q0 MARCO_30_1378977976-1 71 -0.108103 hybrid +135_3-1 Q0 MARCO_21_811322005-6 72 -0.112338 hybrid +135_3-1 Q0 MARCO_21_615776720-2 73 -0.112621 hybrid +135_3-1 Q0 MARCO_21_866534909-1 74 -0.112829 hybrid +135_3-1 Q0 MARCO_11_1501221913-1 75 -0.119068 hybrid +135_3-1 Q0 MARCO_10_1399314690-7 76 -0.119314 hybrid +135_3-1 Q0 MARCO_55_1292833251-3 77 -0.120505 hybrid +135_3-1 Q0 MARCO_10_1408204491-3 78 -0.120543 hybrid +135_3-1 Q0 MARCO_15_526524970-10 79 -0.123681 hybrid +135_3-1 Q0 MARCO_00_1171451509-11 80 -0.124381 hybrid +135_3-1 Q0 MARCO_41_337480267-15 81 -0.124664 hybrid +135_3-1 Q0 MARCO_42_711163872-6 82 -0.124665 hybrid +135_3-1 Q0 MARCO_20_35633132-1 83 -0.124967 hybrid +135_3-1 Q0 MARCO_55_952883577-1 84 -0.125194 hybrid +135_3-1 Q0 MARCO_20_1169253885-4 85 -0.126309 hybrid +135_3-1 Q0 MARCO_34_470416245-6 86 -0.127330 hybrid +135_3-1 Q0 MARCO_28_467584734-4 87 -0.130204 hybrid +135_3-1 Q0 MARCO_57_1761832404-11 88 -0.130620 hybrid +135_3-1 Q0 MARCO_20_1650889929-3 89 -0.131376 hybrid +135_3-1 Q0 MARCO_52_550825103-4 90 -0.131584 hybrid +135_3-1 Q0 MARCO_42_840895595-3 91 -0.134647 hybrid +135_3-1 Q0 MARCO_52_540408973-5 92 -0.137010 hybrid +135_3-1 Q0 MARCO_42_804685723-6 93 -0.137615 hybrid +135_3-1 Q0 MARCO_23_965079934-3 94 -0.140243 hybrid +135_3-1 Q0 MARCO_21_867397176-1 95 -0.142020 hybrid +135_3-1 Q0 MARCO_31_1300715493-5 96 -0.142398 hybrid +135_3-1 Q0 MARCO_10_904399786-19 97 -0.146236 hybrid +135_3-1 Q0 MARCO_35_631705336-4 98 -0.148656 hybrid +135_3-1 Q0 MARCO_21_882896449-2 99 -0.151019 hybrid +135_3-1 Q0 MARCO_41_562925930-2 100 -0.151851 hybrid +135_3-3 Q0 MARCO_35_389752087-5 1 0.500000 hybrid +135_3-3 Q0 MARCO_29_404771415-4 2 0.373035 hybrid +135_3-3 Q0 MARCO_51_711815658-1 3 0.349941 hybrid +135_3-3 Q0 MARCO_24_1305859786-1 4 0.342875 hybrid +135_3-3 Q0 MARCO_17_4422212403-75 5 0.330777 hybrid +135_3-3 Q0 MARCO_19_873500202-10 6 0.330777 hybrid +135_3-3 Q0 MARCO_10_267564854-4 7 0.322482 hybrid +135_3-3 Q0 MARCO_30_1661277542-7 8 0.322482 hybrid +135_3-3 Q0 MARCO_16_4027265437-33 9 0.268253 hybrid +135_3-3 Q0 MARCO_10_68275442-4 10 0.263740 hybrid +135_3-3 Q0 MARCO_11_200410230-3 11 0.262628 hybrid +135_3-3 Q0 KILT_12137080-2 12 0.251049 hybrid +135_3-3 Q0 MARCO_19_108814423-6 13 0.211227 hybrid +135_3-3 Q0 MARCO_20_707083428-10 14 0.205432 hybrid +135_3-3 Q0 MARCO_55_950488029-1 15 0.202805 hybrid +135_3-3 Q0 MARCO_17_4422212403-73 16 0.196417 hybrid +135_3-3 Q0 KILT_36919877-3 17 0.192148 hybrid +135_3-3 Q0 MARCO_11_200308986-4 18 0.191830 hybrid +135_3-3 Q0 MARCO_19_873500202-8 19 0.188514 hybrid +135_3-3 Q0 MARCO_17_2182168865-16 20 0.175601 hybrid +135_3-3 Q0 MARCO_19_824328548-12 21 0.175601 hybrid +135_3-3 Q0 MARCO_14_1602202191-3 22 0.173948 hybrid +135_3-3 Q0 MARCO_28_471593118-3 23 0.131912 hybrid +135_3-3 Q0 MARCO_11_200321036-4 24 0.131732 hybrid +135_3-3 Q0 MARCO_24_1305848529-1 25 0.128946 hybrid +135_3-3 Q0 MARCO_20_1466440042-18 26 0.120832 hybrid +135_3-3 Q0 KILT_2554633-8 27 0.118141 hybrid +135_3-3 Q0 KILT_60088416-2 28 0.118141 hybrid +135_3-3 Q0 MARCO_18_2412119083-15 29 0.086550 hybrid +135_3-3 Q0 MARCO_19_863159881-17 30 0.086550 hybrid +135_3-3 Q0 MARCO_19_824086128-19 31 0.086550 hybrid +135_3-3 Q0 MARCO_51_246849357-2 32 0.078372 hybrid +135_3-3 Q0 MARCO_51_247095062-2 33 0.078372 hybrid +135_3-3 Q0 MARCO_51_247116646-2 34 0.078372 hybrid +135_3-3 Q0 MARCO_51_247204500-2 35 0.078372 hybrid +135_3-3 Q0 MARCO_51_247555214-2 36 0.078372 hybrid +135_3-3 Q0 MARCO_51_247976103-2 37 0.078371 hybrid +135_3-3 Q0 MARCO_51_247762269-2 38 0.078371 hybrid +135_3-3 Q0 MARCO_51_248064557-2 39 0.078371 hybrid +135_3-3 Q0 MARCO_51_248193301-2 40 0.078371 hybrid +135_3-3 Q0 MARCO_51_248231987-2 41 0.078371 hybrid +135_3-3 Q0 MARCO_51_248293780-2 42 0.078371 hybrid +135_3-3 Q0 MARCO_51_248390742-2 43 0.078371 hybrid +135_3-3 Q0 MARCO_51_248456411-2 44 0.078371 hybrid +135_3-3 Q0 MARCO_51_249000846-2 45 0.078371 hybrid +135_3-3 Q0 MARCO_51_248590531-2 46 0.078371 hybrid +135_3-3 Q0 MARCO_51_249502247-2 47 0.078370 hybrid +135_3-3 Q0 MARCO_51_249106405-2 48 0.078370 hybrid +135_3-3 Q0 MARCO_51_249664621-2 49 0.078370 hybrid +135_3-3 Q0 MARCO_51_249695625-2 50 0.078370 hybrid +135_3-3 Q0 MARCO_51_250073915-2 51 0.078370 hybrid +135_3-3 Q0 MARCO_51_250091533-2 52 0.078370 hybrid +135_3-3 Q0 MARCO_51_250253127-2 53 0.078370 hybrid +135_3-3 Q0 MARCO_51_250913961-2 54 0.078370 hybrid +135_3-3 Q0 MARCO_51_250878562-2 55 0.078370 hybrid +135_3-3 Q0 MARCO_51_251370982-2 56 0.078369 hybrid +135_3-3 Q0 MARCO_51_251480336-2 57 0.078369 hybrid +135_3-3 Q0 MARCO_16_4004650739-39 58 0.075660 hybrid +135_3-3 Q0 MARCO_17_860499465-11 59 0.075660 hybrid +135_3-3 Q0 MARCO_18_3000335834-67 60 0.075660 hybrid +135_3-3 Q0 MARCO_18_423199837-15 61 0.075660 hybrid +135_3-3 Q0 MARCO_17_861904720-21 62 0.069908 hybrid +135_3-3 Q0 MARCO_11_200342142-3 63 0.064134 hybrid +135_3-3 Q0 MARCO_24_1305946090-1 64 0.062715 hybrid +135_3-3 Q0 MARCO_17_329909081-24 65 0.054632 hybrid +135_3-3 Q0 MARCO_17_861983670-15 66 0.054303 hybrid +135_3-3 Q0 MARCO_52_368117471-4 67 0.053615 hybrid +135_3-3 Q0 MARCO_11_195769229-4 68 0.051909 hybrid +135_3-3 Q0 MARCO_27_1025089163-3 69 0.047809 hybrid +135_3-3 Q0 MARCO_18_4423206561-20 70 0.028550 hybrid +135_3-3 Q0 MARCO_19_184656190-19 71 0.028550 hybrid +135_3-3 Q0 MARCO_17_2376756487-15 72 0.025255 hybrid +135_3-3 Q0 MARCO_17_859726218-23 73 0.025255 hybrid +135_3-3 Q0 MARCO_17_2377181457-16 74 0.025255 hybrid +135_3-3 Q0 MARCO_17_862380314-18 75 0.025255 hybrid +135_3-3 Q0 MARCO_17_862334499-18 76 0.025255 hybrid +135_3-3 Q0 MARCO_19_824981652-16 77 0.025255 hybrid +135_3-3 Q0 MARCO_19_861520195-19 78 0.025255 hybrid +135_3-3 Q0 MARCO_19_864234500-22 79 0.025255 hybrid +135_3-3 Q0 MARCO_19_873156174-13 80 0.025255 hybrid +135_3-3 Q0 MARCO_19_876806883-14 81 0.025254 hybrid +135_3-3 Q0 MARCO_49_754637233-11 82 0.021272 hybrid +135_3-3 Q0 MARCO_50_2804175543-2 83 0.019524 hybrid +135_3-3 Q0 MARCO_17_861983670-13 84 0.016145 hybrid +135_3-3 Q0 MARCO_18_2412080775-27 85 0.015064 hybrid +135_3-3 Q0 MARCO_19_824911294-15 86 0.015064 hybrid +135_3-3 Q0 MARCO_19_108898672-4 87 0.011579 hybrid +135_3-3 Q0 MARCO_11_200332207-3 88 0.000826 hybrid +135_3-3 Q0 MARCO_16_3629296325-30 89 -0.001028 hybrid +135_3-3 Q0 MARCO_19_108814423-8 90 -0.001081 hybrid +135_3-3 Q0 MARCO_18_3606202302-18 91 -0.010159 hybrid +135_3-3 Q0 MARCO_17_329944072-17 92 -0.011515 hybrid +135_3-3 Q0 MARCO_17_2368005622-18 93 -0.012935 hybrid +135_3-3 Q0 MARCO_01_1122808231-6 94 -0.013772 hybrid +135_3-3 Q0 MARCO_01_1122916268-5 95 -0.013772 hybrid +135_3-3 Q0 MARCO_01_1122961693-4 96 -0.013772 hybrid +135_3-3 Q0 MARCO_01_1122971024-4 97 -0.013772 hybrid +135_3-3 Q0 MARCO_20_1323573394-15 98 -0.013772 hybrid +135_3-3 Q0 MARCO_20_1323685362-4 99 -0.013772 hybrid +135_3-3 Q0 MARCO_41_636279378-4 100 -0.013772 hybrid +135_3-5 Q0 MARCO_52_371953164-8 1 0.500000 hybrid +135_3-5 Q0 MARCO_06_412425592-1 2 0.417843 hybrid +135_3-5 Q0 MARCO_39_1519175279-2 3 0.215043 hybrid +135_3-5 Q0 MARCO_31_772556248-29 4 0.208898 hybrid +135_3-5 Q0 MARCO_48_1524676985-1 5 0.194450 hybrid +135_3-5 Q0 MARCO_22_1781560893-1 6 0.167480 hybrid +135_3-5 Q0 MARCO_12_1855160157-19 7 0.136170 hybrid +135_3-5 Q0 MARCO_20_110963190-15 8 0.134881 hybrid +135_3-5 Q0 MARCO_22_1781670237-8 9 0.134691 hybrid +135_3-5 Q0 MARCO_57_2412651541-12 10 0.128790 hybrid +135_3-5 Q0 MARCO_31_772556248-30 11 0.126837 hybrid +135_3-5 Q0 MARCO_14_227407182-1 12 0.118941 hybrid +135_3-5 Q0 MARCO_44_222998642-7 13 0.116594 hybrid +135_3-5 Q0 MARCO_08_1752547483-1 14 0.114274 hybrid +135_3-5 Q0 MARCO_34_1297180278-14 15 0.107885 hybrid +135_3-5 Q0 MARCO_24_1225655197-2 16 0.098049 hybrid +135_3-5 Q0 MARCO_50_1573920112-41 17 0.072626 hybrid +135_3-5 Q0 MARCO_44_2007973012-13 18 0.071392 hybrid +135_3-5 Q0 MARCO_33_500617816-14 19 0.061502 hybrid +135_3-5 Q0 MARCO_34_1300146671-1 20 0.055940 hybrid +135_3-5 Q0 MARCO_52_366060656-11 21 0.055167 hybrid +135_3-5 Q0 MARCO_35_440689300-7 22 0.054990 hybrid +135_3-5 Q0 MARCO_31_772556248-26 23 0.043758 hybrid +135_3-5 Q0 MARCO_30_130263933-14 24 0.038955 hybrid +135_3-5 Q0 MARCO_03_793285207-2 25 0.038507 hybrid +135_3-5 Q0 MARCO_56_1633614390-4 26 0.035089 hybrid +135_3-5 Q0 MARCO_26_473271913-3 27 0.032267 hybrid +135_3-5 Q0 MARCO_47_367786138-9 28 0.027980 hybrid +135_3-5 Q0 MARCO_24_1385663260-2 29 0.022418 hybrid +135_3-5 Q0 MARCO_50_1877959357-8 30 0.020071 hybrid +135_3-5 Q0 MARCO_50_2522958330-19 31 0.010303 hybrid +135_3-5 Q0 MARCO_22_1781670237-4 32 0.006898 hybrid +135_3-5 Q0 MARCO_04_1072754362-4 33 0.005827 hybrid +135_3-5 Q0 MARCO_21_854495536-3 34 -0.000319 hybrid +135_3-5 Q0 MARCO_39_1519175279-9 35 -0.006600 hybrid +135_3-5 Q0 MARCO_24_1856310815-2 36 -0.008065 hybrid +135_3-5 Q0 MARCO_58_962028278-7 37 -0.011145 hybrid +135_3-5 Q0 MARCO_06_541562863-4 38 -0.016381 hybrid +135_3-5 Q0 MARCO_15_1653577440-1 39 -0.023517 hybrid +135_3-5 Q0 MARCO_06_1078494775-18 40 -0.024195 hybrid +135_3-5 Q0 MARCO_32_1502303439-11 41 -0.026963 hybrid +135_3-5 Q0 MARCO_31_772556248-11 42 -0.029418 hybrid +135_3-5 Q0 MARCO_50_1877959357-6 43 -0.034750 hybrid +135_3-5 Q0 MARCO_50_1136410439-29 44 -0.040190 hybrid +135_3-5 Q0 MARCO_27_127766239-3 45 -0.044124 hybrid +135_3-5 Q0 MARCO_20_1168709532-7 46 -0.051124 hybrid +135_3-5 Q0 MARCO_58_1120006913-1 47 -0.053145 hybrid +135_3-5 Q0 MARCO_51_104706229-3 48 -0.053159 hybrid +135_3-5 Q0 MARCO_31_772556248-24 49 -0.056306 hybrid +135_3-5 Q0 MARCO_45_1352603357-9 50 -0.056374 hybrid +135_3-5 Q0 MARCO_35_243601670-6 51 -0.060444 hybrid +135_3-5 Q0 MARCO_23_435478482-7 52 -0.083059 hybrid +135_3-5 Q0 MARCO_00_467390227-28 53 -0.084171 hybrid +135_3-5 Q0 MARCO_24_965439749-4 54 -0.088851 hybrid +135_3-5 Q0 MARCO_50_2523362898-27 55 -0.093233 hybrid +135_3-5 Q0 MARCO_22_1781759803-4 56 -0.094169 hybrid +135_3-5 Q0 MARCO_36_866945259-3 57 -0.108197 hybrid +135_3-5 Q0 MARCO_22_1781670237-5 58 -0.108278 hybrid +135_3-5 Q0 MARCO_32_1317345979-7 59 -0.112497 hybrid +135_3-5 Q0 MARCO_30_441074113-6 60 -0.115699 hybrid +135_3-5 Q0 MARCO_25_1446976565-12 61 -0.118724 hybrid +135_3-5 Q0 MARCO_32_1317345979-6 62 -0.120121 hybrid +135_3-5 Q0 MARCO_12_883945794-3 63 -0.120813 hybrid +135_3-5 Q0 MARCO_41_1131093613-4 64 -0.122346 hybrid +135_3-5 Q0 MARCO_48_13308724-1 65 -0.123391 hybrid +135_3-5 Q0 MARCO_48_375141315-9 66 -0.124612 hybrid +135_3-5 Q0 MARCO_25_1381373184-13 67 -0.125209 hybrid +135_3-5 Q0 MARCO_36_1755506925-1 68 -0.128546 hybrid +135_3-5 Q0 MARCO_50_2523362898-11 69 -0.131490 hybrid +135_3-5 Q0 MARCO_29_1476328738-3 70 -0.132982 hybrid +135_3-5 Q0 MARCO_29_1687413549-1 71 -0.135288 hybrid +135_3-5 Q0 MARCO_19_1808348346-7 72 -0.135709 hybrid +135_3-5 Q0 MARCO_42_1014358475-21 73 -0.137581 hybrid +135_3-5 Q0 MARCO_03_342798704-27 74 -0.139399 hybrid +135_3-5 Q0 MARCO_37_346281506-5 75 -0.139697 hybrid +135_3-5 Q0 MARCO_37_346272606-4 76 -0.139792 hybrid +135_3-5 Q0 MARCO_11_1150504247-69 77 -0.140755 hybrid +135_3-5 Q0 MARCO_37_346250766-2 78 -0.147389 hybrid +135_3-5 Q0 MARCO_22_1781574098-8 79 -0.154498 hybrid +135_3-5 Q0 MARCO_58_612021414-8 80 -0.155420 hybrid +135_3-5 Q0 MARCO_37_346292776-5 81 -0.155448 hybrid +135_3-5 Q0 MARCO_14_864723566-4 82 -0.157577 hybrid +135_3-5 Q0 MARCO_44_473236971-1 83 -0.158378 hybrid +135_3-5 Q0 MARCO_59_878200252-2 84 -0.160955 hybrid +135_3-5 Q0 MARCO_03_443068025-6 85 -0.166518 hybrid +135_3-5 Q0 MARCO_27_1710873259-4 86 -0.167657 hybrid +135_3-5 Q0 MARCO_37_346201442-7 87 -0.169814 hybrid +135_3-5 Q0 MARCO_15_119087797-3 88 -0.170397 hybrid +135_3-5 Q0 MARCO_00_1815812-10 89 -0.171835 hybrid +135_3-5 Q0 MARCO_20_635705617-12 90 -0.172907 hybrid +135_3-5 Q0 MARCO_59_878200252-1 91 -0.172907 hybrid +135_3-5 Q0 MARCO_06_1227933791-5 92 -0.173640 hybrid +135_3-5 Q0 MARCO_08_1749399662-9 93 -0.176136 hybrid +135_3-5 Q0 MARCO_50_637347493-11 94 -0.176801 hybrid +135_3-5 Q0 MARCO_44_222998642-2 95 -0.178741 hybrid +135_3-5 Q0 MARCO_08_1752547483-4 96 -0.180057 hybrid +135_3-5 Q0 MARCO_31_772556248-28 97 -0.184683 hybrid +135_3-5 Q0 MARCO_37_208881727-3 98 -0.186622 hybrid +135_3-5 Q0 MARCO_49_1808831583-1 99 -0.186717 hybrid +135_3-5 Q0 MARCO_50_2523362898-15 100 -0.187626 hybrid +135_4-1 Q0 MARCO_13_347035492-6 1 0.500000 hybrid +135_4-1 Q0 MARCO_46_980151156-1 2 0.408133 hybrid +135_4-1 Q0 MARCO_20_1169579573-4 3 0.371633 hybrid +135_4-1 Q0 MARCO_06_410500018-4 4 0.369776 hybrid +135_4-1 Q0 MARCO_48_1134296071-3 5 0.368956 hybrid +135_4-1 Q0 MARCO_27_1029245984-1 6 0.330103 hybrid +135_4-1 Q0 MARCO_20_1169267221-4 7 0.326973 hybrid +135_4-1 Q0 MARCO_26_182237572-1 8 0.306381 hybrid +135_4-1 Q0 MARCO_26_761167713-13 9 0.271823 hybrid +135_4-1 Q0 MARCO_20_1169586367-4 10 0.252202 hybrid +135_4-1 Q0 MARCO_58_791781533-6 11 0.227098 hybrid +135_4-1 Q0 MARCO_20_27196571-4 12 0.198196 hybrid +135_4-1 Q0 MARCO_52_540493516-1 13 0.196706 hybrid +135_4-1 Q0 MARCO_49_1763386157-26 14 0.163249 hybrid +135_4-1 Q0 MARCO_41_560343773-2 15 0.154464 hybrid +135_4-1 Q0 MARCO_34_1290406610-3 16 0.149370 hybrid +135_4-1 Q0 MARCO_11_961408998-30 17 0.148895 hybrid +135_4-1 Q0 MARCO_50_2766437432-1 18 0.147924 hybrid +135_4-1 Q0 MARCO_47_355061654-1 19 0.130353 hybrid +135_4-1 Q0 MARCO_58_791781533-1 20 0.104494 hybrid +135_4-1 Q0 MARCO_40_753328481-4 21 0.102379 hybrid +135_4-1 Q0 MARCO_48_1134570771-3 22 0.100997 hybrid +135_4-1 Q0 MARCO_23_71282232-15 23 0.100026 hybrid +135_4-1 Q0 MARCO_58_791781533-20 24 0.097695 hybrid +135_4-1 Q0 MARCO_09_471550246-2 25 0.093291 hybrid +135_4-1 Q0 MARCO_09_1681136110-3 26 0.087032 hybrid +135_4-1 Q0 MARCO_26_1055585704-1 27 0.072893 hybrid +135_4-1 Q0 MARCO_31_1742094250-2 28 0.069181 hybrid +135_4-1 Q0 MARCO_20_91391445-1 29 0.069137 hybrid +135_4-1 Q0 MARCO_50_637347493-11 30 0.057374 hybrid +135_4-1 Q0 MARCO_23_944932744-14 31 0.055388 hybrid +135_4-1 Q0 MARCO_40_747906005-1 32 0.053726 hybrid +135_4-1 Q0 MARCO_11_961408998-42 33 0.051135 hybrid +135_4-1 Q0 MARCO_21_150922054-8 34 0.035443 hybrid +135_4-1 Q0 MARCO_20_31582550-8 35 0.031342 hybrid +135_4-1 Q0 MARCO_39_1427819777-3 36 0.029831 hybrid +135_4-1 Q0 MARCO_01_1375279388-1 37 0.023528 hybrid +135_4-1 Q0 MARCO_34_1291512982-16 38 0.022600 hybrid +135_4-1 Q0 MARCO_26_761399992-13 39 0.022168 hybrid +135_4-1 Q0 MARCO_57_1044009515-1 40 0.019988 hybrid +135_4-1 Q0 MARCO_01_864961659-6 41 0.014246 hybrid +135_4-1 Q0 MARCO_31_1302201394-1 42 0.013426 hybrid +135_4-1 Q0 MARCO_20_122653631-3 43 0.012520 hybrid +135_4-1 Q0 MARCO_52_559174988-5 44 0.011289 hybrid +135_4-1 Q0 MARCO_20_1169369859-6 45 0.010404 hybrid +135_4-1 Q0 MARCO_50_1944085309-13 46 0.009238 hybrid +135_4-1 Q0 MARCO_20_1169579573-3 47 0.008980 hybrid +135_4-1 Q0 MARCO_48_1134296071-6 48 0.008354 hybrid +135_4-1 Q0 MARCO_53_597310389-10 49 0.004792 hybrid +135_4-1 Q0 MARCO_11_961408998-14 50 0.003777 hybrid +135_4-1 Q0 MARCO_09_943027887-5 51 0.002590 hybrid +135_4-1 Q0 MARCO_48_2043815915-1 52 0.000712 hybrid +135_4-1 Q0 MARCO_49_1723427063-1 53 0.000173 hybrid +135_4-1 Q0 MARCO_57_1044976195-9 54 -0.008418 hybrid +135_4-1 Q0 MARCO_11_220500258-1 55 -0.010598 hybrid +135_4-1 Q0 MARCO_11_961408998-2 56 -0.014829 hybrid +135_4-1 Q0 MARCO_35_143106296-3 57 -0.015930 hybrid +135_4-1 Q0 MARCO_10_1407922961-2 58 -0.016966 hybrid +135_4-1 Q0 MARCO_19_1880587922-5 59 -0.018347 hybrid +135_4-1 Q0 MARCO_26_295920806-1 60 -0.022189 hybrid +135_4-1 Q0 MARCO_11_961408998-10 61 -0.023269 hybrid +135_4-1 Q0 MARCO_58_791781533-13 62 -0.026226 hybrid +135_4-1 Q0 MARCO_21_1520602675-1 63 -0.029205 hybrid +135_4-1 Q0 MARCO_49_1763386157-24 64 -0.030716 hybrid +135_4-1 Q0 MARCO_44_1804655367-10 65 -0.032637 hybrid +135_4-1 Q0 MARCO_11_141539749-4 66 -0.034083 hybrid +135_4-1 Q0 MARCO_52_559197992-1 67 -0.035659 hybrid +135_4-1 Q0 MARCO_58_455301950-15 68 -0.042005 hybrid +135_4-1 Q0 MARCO_50_1151052499-4 69 -0.043494 hybrid +135_4-1 Q0 MARCO_50_2557565841-9 70 -0.044034 hybrid +135_4-1 Q0 MARCO_42_1026174110-11 71 -0.044660 hybrid +135_4-1 Q0 MARCO_24_1401833115-2 72 -0.047250 hybrid +135_4-1 Q0 MARCO_08_217437566-1 73 -0.053963 hybrid +135_4-1 Q0 MARCO_58_741063592-39 74 -0.054567 hybrid +135_4-1 Q0 MARCO_50_2519588664-8 75 -0.056208 hybrid +135_4-1 Q0 MARCO_21_1273973333-1 76 -0.062705 hybrid +135_4-1 Q0 MARCO_48_1134255148-1 77 -0.063655 hybrid +135_4-1 Q0 MARCO_52_565396418-3 78 -0.068663 hybrid +135_4-1 Q0 MARCO_39_1435433647-8 79 -0.072613 hybrid +135_4-1 Q0 MARCO_20_1169323594-3 80 -0.073195 hybrid +135_4-1 Q0 MARCO_45_865173189-2 81 -0.076347 hybrid +135_4-1 Q0 MARCO_20_14386868-9 82 -0.080599 hybrid +135_4-1 Q0 MARCO_20_1169553624-3 83 -0.080707 hybrid +135_4-1 Q0 MARCO_42_394341529-2 84 -0.084161 hybrid +135_4-1 Q0 MARCO_28_1770196917-99 85 -0.085758 hybrid +135_4-1 Q0 MARCO_20_1169553624-4 86 -0.086535 hybrid +135_4-1 Q0 MARCO_20_122653631-1 87 -0.087766 hybrid +135_4-1 Q0 MARCO_13_1473421345-1 88 -0.091500 hybrid +135_4-1 Q0 MARCO_07_995662392-2 89 -0.092018 hybrid +135_4-1 Q0 MARCO_46_1001754017-4 90 -0.096680 hybrid +135_4-1 Q0 MARCO_37_513139074-1 91 -0.096939 hybrid +135_4-1 Q0 MARCO_20_1169569240-4 92 -0.096961 hybrid +135_4-1 Q0 MARCO_59_983089677-5 93 -0.098385 hybrid +135_4-1 Q0 MARCO_02_1474633910-6 94 -0.099054 hybrid +135_4-1 Q0 MARCO_34_1305387269-13 95 -0.099184 hybrid +135_4-1 Q0 MARCO_45_173058232-3 96 -0.100155 hybrid +135_4-1 Q0 MARCO_48_1134343682-3 97 -0.100674 hybrid +135_4-1 Q0 MARCO_31_330915314-2 98 -0.102897 hybrid +135_4-1 Q0 MARCO_48_2043997693-1 99 -0.105120 hybrid +135_4-1 Q0 MARCO_50_2901005348-1 100 -0.106890 hybrid +136_1-1 Q0 MARCO_04_148900856-2 1 0.500000 hybrid +136_1-1 Q0 MARCO_04_148900856-3 2 0.477516 hybrid +136_1-1 Q0 MARCO_04_148900856-1 3 0.392429 hybrid +136_1-1 Q0 MARCO_03_1700874885-2 4 0.382997 hybrid +136_1-1 Q0 MARCO_50_2733152614-1 5 0.353891 hybrid +136_1-1 Q0 MARCO_25_1326583303-30 6 0.347479 hybrid +136_1-1 Q0 MARCO_03_1735103357-1 7 0.342508 hybrid +136_1-1 Q0 MARCO_03_1700874885-3 8 0.307729 hybrid +136_1-1 Q0 MARCO_03_1700874885-4 9 0.275408 hybrid +136_1-1 Q0 MARCO_55_584368262-5 10 0.233743 hybrid +136_1-1 Q0 MARCO_34_1748142224-1 11 0.230494 hybrid +136_1-1 Q0 MARCO_04_143999592-1 12 0.221939 hybrid +136_1-1 Q0 MARCO_03_1735103357-2 13 0.203285 hybrid +136_1-1 Q0 MARCO_03_1463867408-17 14 0.196926 hybrid +136_1-1 Q0 MARCO_12_1247075937-1 15 0.183980 hybrid +136_1-1 Q0 MARCO_50_2128988370-45 16 0.182821 hybrid +136_1-1 Q0 MARCO_03_1716381201-3 17 0.173669 hybrid +136_1-1 Q0 MARCO_26_899502779-1 18 0.173476 hybrid +136_1-1 Q0 MARCO_03_1700874885-5 19 0.172651 hybrid +136_1-1 Q0 MARCO_03_1463867408-10 20 0.156701 hybrid +136_1-1 Q0 MARCO_11_1511196274-1 21 0.150782 hybrid +136_1-1 Q0 MARCO_09_970603565-11 22 0.149306 hybrid +136_1-1 Q0 MARCO_03_1463867408-16 23 0.141454 hybrid +136_1-1 Q0 MARCO_26_899502779-3 24 0.139610 hybrid +136_1-1 Q0 MARCO_03_1463867408-1 25 0.135992 hybrid +136_1-1 Q0 MARCO_08_724172429-1 26 0.130704 hybrid +136_1-1 Q0 MARCO_02_1884606143-1 27 0.123116 hybrid +136_1-1 Q0 MARCO_38_1380005313-1 28 0.123116 hybrid +136_1-1 Q0 MARCO_46_456960792-1 29 0.120253 hybrid +136_1-1 Q0 MARCO_36_967030024-1 30 0.113824 hybrid +136_1-1 Q0 MARCO_27_47894695-8 31 0.110399 hybrid +136_1-1 Q0 MARCO_09_970603565-6 32 0.104497 hybrid +136_1-1 Q0 MARCO_03_1463867408-9 33 0.102424 hybrid +136_1-1 Q0 MARCO_14_1388732263-45 34 0.097629 hybrid +136_1-1 Q0 MARCO_39_872301398-1 35 0.094361 hybrid +136_1-1 Q0 MARCO_55_596564721-6 36 0.093747 hybrid +136_1-1 Q0 MARCO_39_1711990001-1 37 0.093448 hybrid +136_1-1 Q0 MARCO_03_1463867408-13 38 0.093413 hybrid +136_1-1 Q0 MARCO_09_970001729-9 39 0.086808 hybrid +136_1-1 Q0 MARCO_01_1448508478-2 40 0.081504 hybrid +136_1-1 Q0 MARCO_09_1620949937-20 41 0.080151 hybrid +136_1-1 Q0 MARCO_26_1892461340-4 42 0.079852 hybrid +136_1-1 Q0 MARCO_50_2128988370-58 43 0.076093 hybrid +136_1-1 Q0 MARCO_19_611783145-1 44 0.075830 hybrid +136_1-1 Q0 MARCO_03_1463867408-15 45 0.074635 hybrid +136_1-1 Q0 MARCO_54_811879338-1 46 0.072791 hybrid +136_1-1 Q0 MARCO_09_970001729-1 47 0.068839 hybrid +136_1-1 Q0 MARCO_11_1527112956-1 48 0.062445 hybrid +136_1-1 Q0 MARCO_01_1448510883-2 49 0.055577 hybrid +136_1-1 Q0 MARCO_49_431849652-1 50 0.055577 hybrid +136_1-1 Q0 MARCO_12_1247075937-4 51 0.053943 hybrid +136_1-1 Q0 MARCO_05_629335936-12 52 0.052310 hybrid +136_1-1 Q0 MARCO_38_1349998578-1 53 0.045846 hybrid +136_1-1 Q0 MARCO_02_627068903-19 54 0.044845 hybrid +136_1-1 Q0 MARCO_03_1463867408-12 55 0.042754 hybrid +136_1-1 Q0 MARCO_03_1463867408-14 56 0.042754 hybrid +136_1-1 Q0 MARCO_20_948625899-2 57 0.042034 hybrid +136_1-1 Q0 MARCO_26_899502779-4 58 0.041033 hybrid +136_1-1 Q0 MARCO_00_4158519-1 59 0.038556 hybrid +136_1-1 Q0 MARCO_01_1448508478-1 60 0.035763 hybrid +136_1-1 Q0 MARCO_12_1247075937-2 61 0.034955 hybrid +136_1-1 Q0 MARCO_34_1748142224-2 62 0.034955 hybrid +136_1-1 Q0 MARCO_03_1700874885-1 63 0.034832 hybrid +136_1-1 Q0 MARCO_42_1359229219-2 64 0.034797 hybrid +136_1-1 Q0 MARCO_27_55279422-14 65 0.034042 hybrid +136_1-1 Q0 MARCO_31_574448546-1 66 0.030089 hybrid +136_1-1 Q0 MARCO_00_60617304-1 67 0.029791 hybrid +136_1-1 Q0 MARCO_31_35082547-4 68 0.028614 hybrid +136_1-1 Q0 MARCO_26_890532852-2 69 0.028087 hybrid +136_1-1 Q0 MARCO_31_574471399-1 70 0.027420 hybrid +136_1-1 Q0 MARCO_03_1463867408-7 71 0.020938 hybrid +136_1-1 Q0 MARCO_03_1328747716-2 72 0.015229 hybrid +136_1-1 Q0 MARCO_12_1247075937-7 73 0.015194 hybrid +136_1-1 Q0 MARCO_03_1463867408-8 74 0.014544 hybrid +136_1-1 Q0 MARCO_05_336914225-1 75 0.013947 hybrid +136_1-1 Q0 MARCO_26_1632560028-2 76 0.010486 hybrid +136_1-1 Q0 MARCO_14_436056341-1 77 0.007254 hybrid +136_1-1 Q0 MARCO_26_890532852-5 78 0.007254 hybrid +136_1-1 Q0 MARCO_08_680236959-1 79 0.005955 hybrid +136_1-1 Q0 MARCO_12_1247075937-15 80 0.005954 hybrid +136_1-1 Q0 MARCO_56_806901575-10 81 0.005954 hybrid +136_1-1 Q0 MARCO_03_1463867408-4 82 0.005182 hybrid +136_1-1 Q0 MARCO_04_232079116-1 83 0.003460 hybrid +136_1-1 Q0 MARCO_50_2128988370-70 84 0.003460 hybrid +136_1-1 Q0 MARCO_17_1218153622-5 85 0.000878 hybrid +136_1-1 Q0 MARCO_45_1217815366-9 86 0.000878 hybrid +136_1-1 Q0 KILT_35068448-4 87 -0.005199 hybrid +136_1-1 Q0 KILT_410934-12 88 -0.006482 hybrid +136_1-1 Q0 MARCO_50_2733152614-3 89 -0.007448 hybrid +136_1-1 Q0 MARCO_54_811872752-5 90 -0.017337 hybrid +136_1-1 Q0 MARCO_09_970001729-7 91 -0.021272 hybrid +136_1-1 Q0 MARCO_26_1673887721-3 92 -0.021272 hybrid +136_1-1 Q0 MARCO_01_1448510883-1 93 -0.022185 hybrid +136_1-1 Q0 MARCO_03_1463867408-2 94 -0.022185 hybrid +136_1-1 Q0 MARCO_10_1410354272-7 95 -0.023221 hybrid +136_1-1 Q0 MARCO_05_889833490-5 96 -0.025435 hybrid +136_1-1 Q0 MARCO_03_1463867408-6 97 -0.026506 hybrid +136_1-1 Q0 MARCO_09_1661332301-1 98 -0.026559 hybrid +136_1-1 Q0 MARCO_17_296503059-2 99 -0.029282 hybrid +136_1-1 Q0 MARCO_42_1359229219-1 100 -0.029896 hybrid +136_1-11 Q0 MARCO_03_1735103357-1 1 0.500000 hybrid +136_1-11 Q0 MARCO_00_1377517146-1 2 0.479379 hybrid +136_1-11 Q0 MARCO_09_970603565-11 3 0.445266 hybrid +136_1-11 Q0 MARCO_26_899502779-3 4 0.393294 hybrid +136_1-11 Q0 MARCO_03_1700874885-2 5 0.367840 hybrid +136_1-11 Q0 MARCO_04_148900856-3 6 0.353964 hybrid +136_1-11 Q0 MARCO_00_4158519-1 7 0.297250 hybrid +136_1-11 Q0 MARCO_13_818635228-1 8 0.269781 hybrid +136_1-11 Q0 MARCO_12_1247075937-19 9 0.259912 hybrid +136_1-11 Q0 MARCO_08_724172429-1 10 0.236167 hybrid +136_1-11 Q0 MARCO_03_1700874885-1 11 0.229127 hybrid +136_1-11 Q0 MARCO_04_148900856-1 12 0.179339 hybrid +136_1-11 Q0 MARCO_49_431849652-1 13 0.176034 hybrid +136_1-11 Q0 MARCO_03_1735103357-4 14 0.161932 hybrid +136_1-11 Q0 MARCO_17_1218153622-5 15 0.142488 hybrid +136_1-11 Q0 MARCO_26_1765545586-1 16 0.140383 hybrid +136_1-11 Q0 MARCO_03_1700874885-6 17 0.136003 hybrid +136_1-11 Q0 MARCO_20_948625899-2 18 0.128555 hybrid +136_1-11 Q0 MARCO_12_1247075937-1 19 0.123066 hybrid +136_1-11 Q0 MARCO_50_2128988370-15 20 0.118222 hybrid +136_1-11 Q0 MARCO_50_963931292-37 21 0.114295 hybrid +136_1-11 Q0 MARCO_03_1700874885-5 22 0.111012 hybrid +136_1-11 Q0 MARCO_12_1247075937-6 23 0.107809 hybrid +136_1-11 Q0 MARCO_04_3998593-1 24 0.092451 hybrid +136_1-11 Q0 MARCO_46_456960792-1 25 0.091568 hybrid +136_1-11 Q0 MARCO_04_148900856-2 26 0.089769 hybrid +136_1-11 Q0 MARCO_34_1748142224-1 27 0.089214 hybrid +136_1-11 Q0 MARCO_26_899502779-4 28 0.086158 hybrid +136_1-11 Q0 MARCO_02_674006859-2 29 0.085988 hybrid +136_1-11 Q0 MARCO_27_55279422-14 30 0.083589 hybrid +136_1-11 Q0 MARCO_40_1700476514-1 31 0.080567 hybrid +136_1-11 Q0 MARCO_03_1700874885-4 32 0.067155 hybrid +136_1-11 Q0 MARCO_06_638445323-5 33 0.062368 hybrid +136_1-11 Q0 MARCO_39_872075643-1 34 0.060002 hybrid +136_1-11 Q0 MARCO_03_1735103357-2 35 0.045312 hybrid +136_1-11 Q0 MARCO_09_970603565-6 36 0.042007 hybrid +136_1-11 Q0 MARCO_57_884445217-19 37 0.036416 hybrid +136_1-11 Q0 MARCO_09_970603565-4 38 0.030621 hybrid +136_1-11 Q0 MARCO_31_574448546-1 39 0.026139 hybrid +136_1-11 Q0 MARCO_38_1349998578-1 40 0.024735 hybrid +136_1-11 Q0 MARCO_02_627068903-10 41 0.022721 hybrid +136_1-11 Q0 MARCO_09_970603565-5 42 0.022506 hybrid +136_1-11 Q0 MARCO_08_1023669874-1 43 0.021487 hybrid +136_1-11 Q0 MARCO_12_1247075937-12 44 0.016349 hybrid +136_1-11 Q0 MARCO_03_1700874885-3 45 0.015217 hybrid +136_1-11 Q0 MARCO_26_1593056442-17 46 0.014493 hybrid +136_1-11 Q0 MARCO_36_967030024-1 47 0.014040 hybrid +136_1-11 Q0 MARCO_56_1150902301-11 48 0.008132 hybrid +136_1-11 Q0 MARCO_12_1247075937-11 49 0.002213 hybrid +136_1-11 Q0 MARCO_48_1187831782-8 50 -0.012286 hybrid +136_1-11 Q0 MARCO_50_2128988370-63 51 -0.012670 hybrid +136_1-11 Q0 MARCO_06_1902336129-1 52 -0.014651 hybrid +136_1-11 Q0 MARCO_55_584368262-5 53 -0.017673 hybrid +136_1-11 Q0 MARCO_04_232079116-1 54 -0.017888 hybrid +136_1-11 Q0 MARCO_03_735734322-2 55 -0.020152 hybrid +136_1-11 Q0 MARCO_33_471997422-1 56 -0.025177 hybrid +136_1-11 Q0 MARCO_05_348175078-2 57 -0.026682 hybrid +136_1-11 Q0 MARCO_14_1388732263-36 58 -0.035906 hybrid +136_1-11 Q0 KILT_41730508-1 59 -0.036687 hybrid +136_1-11 Q0 MARCO_27_47894695-8 60 -0.038396 hybrid +136_1-11 Q0 MARCO_04_205773472-2 61 -0.038419 hybrid +136_1-11 Q0 MARCO_09_970001729-7 62 -0.043218 hybrid +136_1-11 Q0 MARCO_12_1247075937-4 63 -0.043354 hybrid +136_1-11 Q0 MARCO_26_1892461340-4 64 -0.045312 hybrid +136_1-11 Q0 MARCO_35_1736112880-1 65 -0.051140 hybrid +136_1-11 Q0 MARCO_39_1711990001-1 66 -0.054434 hybrid +136_1-11 Q0 MARCO_05_889833490-5 67 -0.056380 hybrid +136_1-11 Q0 MARCO_14_1388732263-41 68 -0.058169 hybrid +136_1-11 Q0 KILT_47279701-3 69 -0.061077 hybrid +136_1-11 Q0 MARCO_50_2128988370-45 70 -0.062718 hybrid +136_1-11 Q0 MARCO_06_322904718-1 71 -0.064246 hybrid +136_1-11 Q0 MARCO_03_1463867408-15 72 -0.064405 hybrid +136_1-11 Q0 MARCO_10_1410354272-7 73 -0.065797 hybrid +136_1-11 Q0 KILT_71908-39 74 -0.066103 hybrid +136_1-11 Q0 MARCO_19_611783145-1 75 -0.067913 hybrid +136_1-11 Q0 MARCO_03_1716381201-3 76 -0.068604 hybrid +136_1-11 Q0 MARCO_48_1187831782-4 77 -0.069509 hybrid +136_1-11 Q0 MARCO_50_2128988370-58 78 -0.069521 hybrid +136_1-11 Q0 MARCO_07_372252911-24 79 -0.069906 hybrid +136_1-11 Q0 MARCO_03_1769290929-2 80 -0.070528 hybrid +136_1-11 Q0 MARCO_50_2366457832-36 81 -0.071660 hybrid +136_1-11 Q0 MARCO_30_367328370-1 82 -0.073753 hybrid +136_1-11 Q0 MARCO_03_1463867408-16 83 -0.075655 hybrid +136_1-11 Q0 MARCO_17_2458045526-12 84 -0.075723 hybrid +136_1-11 Q0 MARCO_34_1750164296-1 85 -0.076821 hybrid +136_1-11 Q0 KILT_243541-1 86 -0.080635 hybrid +136_1-11 Q0 MARCO_18_828833700-59 87 -0.081506 hybrid +136_1-11 Q0 KILT_35068448-4 88 -0.083261 hybrid +136_1-11 Q0 MARCO_18_3850987520-1 89 -0.084449 hybrid +136_1-11 Q0 MARCO_03_735687290-7 90 -0.085151 hybrid +136_1-11 Q0 MARCO_26_899502779-1 91 -0.086599 hybrid +136_1-11 Q0 MARCO_02_578376471-1 92 -0.087346 hybrid +136_1-11 Q0 MARCO_04_120525398-3 93 -0.087380 hybrid +136_1-11 Q0 MARCO_39_623677740-3 94 -0.087584 hybrid +136_1-11 Q0 MARCO_27_60146785-78 95 -0.089587 hybrid +136_1-11 Q0 KILT_36150932-1 96 -0.089712 hybrid +136_1-11 Q0 MARCO_31_574471399-1 97 -0.090414 hybrid +136_1-11 Q0 MARCO_26_1761366841-5 98 -0.091161 hybrid +136_1-11 Q0 MARCO_37_180462716-1 99 -0.093639 hybrid +136_1-11 Q0 MARCO_12_1247075937-15 100 -0.094714 hybrid +136_1-13 Q0 MARCO_14_1007513464-1 1 0.500000 hybrid +136_1-13 Q0 MARCO_03_1700874885-2 2 0.486095 hybrid +136_1-13 Q0 MARCO_04_148900856-3 3 0.379406 hybrid +136_1-13 Q0 MARCO_04_148900856-2 4 0.299034 hybrid +136_1-13 Q0 MARCO_03_1700874885-4 5 0.282995 hybrid +136_1-13 Q0 KILT_52382-40 6 0.281718 hybrid +136_1-13 Q0 MARCO_14_1007513464-3 7 0.272175 hybrid +136_1-13 Q0 MARCO_19_611783145-47 8 0.264740 hybrid +136_1-13 Q0 MARCO_50_963931292-37 9 0.257076 hybrid +136_1-13 Q0 MARCO_05_348185786-1 10 0.248027 hybrid +136_1-13 Q0 MARCO_05_348175078-1 11 0.218529 hybrid +136_1-13 Q0 MARCO_11_111437456-1 12 0.186356 hybrid +136_1-13 Q0 MARCO_09_970603565-6 13 0.168426 hybrid +136_1-13 Q0 MARCO_03_1735103357-1 14 0.156991 hybrid +136_1-13 Q0 MARCO_05_629335936-12 15 0.151098 hybrid +136_1-13 Q0 MARCO_03_1463867408-16 16 0.145049 hybrid +136_1-13 Q0 MARCO_04_497201-1 17 0.140868 hybrid +136_1-13 Q0 MARCO_30_310002268-1 18 0.137386 hybrid +136_1-13 Q0 MARCO_02_1884606143-1 19 0.122962 hybrid +136_1-13 Q0 MARCO_03_1735103357-2 20 0.114828 hybrid +136_1-13 Q0 MARCO_50_2128988370-45 21 0.113973 hybrid +136_1-13 Q0 MARCO_03_1463867408-10 22 0.110575 hybrid +136_1-13 Q0 MARCO_39_1711990001-1 23 0.101285 hybrid +136_1-13 Q0 MARCO_11_1511196274-3 24 0.100538 hybrid +136_1-13 Q0 MARCO_50_2128988370-70 25 0.098573 hybrid +136_1-13 Q0 MARCO_38_1380005313-1 26 0.097814 hybrid +136_1-13 Q0 MARCO_42_1367967096-1 27 0.095730 hybrid +136_1-13 Q0 MARCO_50_1481982535-85 28 0.093597 hybrid +136_1-13 Q0 MARCO_54_811879338-1 29 0.090536 hybrid +136_1-13 Q0 MARCO_12_1247075937-1 30 0.089729 hybrid +136_1-13 Q0 MARCO_03_1700874885-3 31 0.074450 hybrid +136_1-13 Q0 MARCO_09_970001729-1 32 0.073052 hybrid +136_1-13 Q0 MARCO_03_1463867408-9 33 0.070293 hybrid +136_1-13 Q0 MARCO_03_1463867408-14 34 0.066521 hybrid +136_1-13 Q0 MARCO_34_1748142224-1 35 0.064858 hybrid +136_1-13 Q0 MARCO_39_618236320-17 36 0.062689 hybrid +136_1-13 Q0 MARCO_06_545026672-1 37 0.059845 hybrid +136_1-13 Q0 MARCO_04_143999592-1 38 0.058279 hybrid +136_1-13 Q0 MARCO_00_60617304-1 39 0.057773 hybrid +136_1-13 Q0 MARCO_50_2733152614-2 40 0.056616 hybrid +136_1-13 Q0 MARCO_12_1247075937-6 41 0.056363 hybrid +136_1-13 Q0 MARCO_09_970603565-12 42 0.054037 hybrid +136_1-13 Q0 MARCO_17_45796309-1 43 0.052326 hybrid +136_1-13 Q0 MARCO_10_1410354272-7 44 0.051808 hybrid +136_1-13 Q0 MARCO_27_55279422-14 45 0.046506 hybrid +136_1-13 Q0 MARCO_46_456960792-1 46 0.046494 hybrid +136_1-13 Q0 MARCO_07_272830831-1 47 0.044843 hybrid +136_1-13 Q0 MARCO_12_1247075937-7 48 0.041168 hybrid +136_1-13 Q0 MARCO_00_54050556-1 49 0.035288 hybrid +136_1-13 Q0 MARCO_04_190591391-2 50 0.034938 hybrid +136_1-13 Q0 MARCO_50_2733152614-1 51 0.030143 hybrid +136_1-13 Q0 MARCO_05_889833490-5 52 0.029817 hybrid +136_1-13 Q0 MARCO_58_1731712325-3 53 0.026516 hybrid +136_1-13 Q0 MARCO_06_24550212-2 54 0.026106 hybrid +136_1-13 Q0 MARCO_34_1731230858-23 55 0.025455 hybrid +136_1-13 Q0 MARCO_11_1511196274-1 56 0.024600 hybrid +136_1-13 Q0 MARCO_00_60617304-3 57 0.024419 hybrid +136_1-13 Q0 MARCO_31_35082547-4 58 0.018936 hybrid +136_1-13 Q0 MARCO_26_1892461340-4 59 0.017719 hybrid +136_1-13 Q0 MARCO_56_806901575-10 60 0.016225 hybrid +136_1-13 Q0 MARCO_02_1884620640-10 61 0.015466 hybrid +136_1-13 Q0 MARCO_12_1247075937-16 62 0.015020 hybrid +136_1-13 Q0 MARCO_26_1632560028-2 63 0.014153 hybrid +136_1-13 Q0 MARCO_03_1700874885-5 64 0.011116 hybrid +136_1-13 Q0 MARCO_03_1700874885-1 65 0.010839 hybrid +136_1-13 Q0 MARCO_08_697017286-3 66 0.010538 hybrid +136_1-13 Q0 MARCO_34_1748142224-2 67 0.008152 hybrid +136_1-13 Q0 MARCO_34_1731230858-2 68 0.006706 hybrid +136_1-13 Q0 MARCO_06_24550212-1 69 0.002006 hybrid +136_1-13 Q0 MARCO_03_1463867408-7 70 -0.001464 hybrid +136_1-13 Q0 MARCO_04_232079116-1 71 -0.003247 hybrid +136_1-13 Q0 MARCO_09_970603565-4 72 -0.004067 hybrid +136_1-13 Q0 MARCO_26_899502779-1 73 -0.005537 hybrid +136_1-13 Q0 MARCO_42_1359229219-1 74 -0.007151 hybrid +136_1-13 Q0 MARCO_45_1217815366-1 75 -0.012827 hybrid +136_1-13 Q0 MARCO_06_1902336129-1 76 -0.014755 hybrid +136_1-13 Q0 MARCO_26_1632560028-1 77 -0.015177 hybrid +136_1-13 Q0 MARCO_57_173176140-1 78 -0.017550 hybrid +136_1-13 Q0 KILT_7771428-27 79 -0.018418 hybrid +136_1-13 Q0 MARCO_03_1463867408-1 80 -0.019249 hybrid +136_1-13 Q0 MARCO_00_463823905-8 81 -0.020189 hybrid +136_1-13 Q0 MARCO_50_2128988370-58 82 -0.020539 hybrid +136_1-13 Q0 MARCO_26_890532852-3 83 -0.025732 hybrid +136_1-13 Q0 KILT_243545-23 84 -0.032998 hybrid +136_1-13 Q0 MARCO_49_431849652-1 85 -0.034601 hybrid +136_1-13 Q0 MARCO_42_1368592926-5 86 -0.036300 hybrid +136_1-13 Q0 MARCO_48_623265237-2 87 -0.037565 hybrid +136_1-13 Q0 MARCO_01_541450174-8 88 -0.039734 hybrid +136_1-13 Q0 KILT_17317762-2 89 -0.041638 hybrid +136_1-13 Q0 MARCO_19_611783145-1 90 -0.043494 hybrid +136_1-13 Q0 MARCO_39_1705342260-27 91 -0.044373 hybrid +136_1-13 Q0 MARCO_26_899502779-4 92 -0.044590 hybrid +136_1-13 Q0 MARCO_09_1661332301-13 93 -0.046482 hybrid +136_1-13 Q0 MARCO_16_2852307220-4 94 -0.050531 hybrid +136_1-13 Q0 MARCO_09_970001729-7 95 -0.055182 hybrid +136_1-13 Q0 MARCO_14_436056341-1 96 -0.059026 hybrid +136_1-13 Q0 MARCO_03_1463867408-2 97 -0.060146 hybrid +136_1-13 Q0 MARCO_09_163336509-14 98 -0.062255 hybrid +136_1-13 Q0 MARCO_55_584368262-5 99 -0.062629 hybrid +136_1-13 Q0 MARCO_50_2128988370-37 100 -0.067111 hybrid +136_1-3 Q0 MARCO_50_2128988370-50 1 0.500000 hybrid +136_1-3 Q0 MARCO_34_1748142224-2 2 0.410694 hybrid +136_1-3 Q0 MARCO_14_1388732263-5 3 0.406508 hybrid +136_1-3 Q0 MARCO_04_473062102-4 4 0.382395 hybrid +136_1-3 Q0 MARCO_56_806901575-3 5 0.328762 hybrid +136_1-3 Q0 MARCO_03_1463867408-1 6 0.323958 hybrid +136_1-3 Q0 MARCO_17_1205403697-1 7 0.303247 hybrid +136_1-3 Q0 MARCO_02_1884620640-8 8 0.290198 hybrid +136_1-3 Q0 KILT_11585744-3 9 0.257806 hybrid +136_1-3 Q0 MARCO_37_1164698626-69 10 0.251553 hybrid +136_1-3 Q0 MARCO_50_2128988370-45 11 0.244321 hybrid +136_1-3 Q0 KILT_568270-4 12 0.241677 hybrid +136_1-3 Q0 MARCO_05_629335936-2 13 0.236800 hybrid +136_1-3 Q0 KILT_24245304-18 14 0.230299 hybrid +136_1-3 Q0 MARCO_27_47894695-8 15 0.222804 hybrid +136_1-3 Q0 MARCO_09_970001729-4 16 0.206971 hybrid +136_1-3 Q0 MARCO_34_1748142224-4 17 0.205307 hybrid +136_1-3 Q0 MARCO_02_1884620640-4 18 0.204267 hybrid +136_1-3 Q0 MARCO_50_2128988370-46 19 0.202872 hybrid +136_1-3 Q0 MARCO_09_970603565-12 20 0.190406 hybrid +136_1-3 Q0 MARCO_50_2311952398-34 21 0.172003 hybrid +136_1-3 Q0 KILT_710254-1 22 0.159054 hybrid +136_1-3 Q0 MARCO_09_970001729-5 23 0.157424 hybrid +136_1-3 Q0 MARCO_03_1700874885-3 24 0.155377 hybrid +136_1-3 Q0 MARCO_11_956172960-2 25 0.146407 hybrid +136_1-3 Q0 MARCO_18_8652746-20 26 0.144603 hybrid +136_1-3 Q0 MARCO_19_235748733-3 27 0.144602 hybrid +136_1-3 Q0 MARCO_27_52816716-21 28 0.126179 hybrid +136_1-3 Q0 KILT_870611-1 29 0.124173 hybrid +136_1-3 Q0 MARCO_38_1349998578-1 30 0.116686 hybrid +136_1-3 Q0 MARCO_29_95113102-4 31 0.101235 hybrid +136_1-3 Q0 MARCO_26_1635027659-20 32 0.098242 hybrid +136_1-3 Q0 MARCO_36_1487174364-2 33 0.096350 hybrid +136_1-3 Q0 MARCO_56_806901575-2 34 0.091010 hybrid +136_1-3 Q0 MARCO_36_967030024-1 35 0.083603 hybrid +136_1-3 Q0 MARCO_34_1749575110-10 36 0.070916 hybrid +136_1-3 Q0 MARCO_34_1748142224-1 37 0.062704 hybrid +136_1-3 Q0 KILT_52382-1 38 0.053875 hybrid +136_1-3 Q0 KILT_47279701-3 39 0.049708 hybrid +136_1-3 Q0 MARCO_00_1254173326-28 40 0.045555 hybrid +136_1-3 Q0 MARCO_10_1410354272-7 41 0.035082 hybrid +136_1-3 Q0 MARCO_26_890532852-3 42 0.033123 hybrid +136_1-3 Q0 MARCO_09_642893079-2 43 0.032103 hybrid +136_1-3 Q0 MARCO_04_148900856-2 44 0.025501 hybrid +136_1-3 Q0 MARCO_03_1735103357-2 45 0.024133 hybrid +136_1-3 Q0 MARCO_42_1356018583-1 46 0.019906 hybrid +136_1-3 Q0 MARCO_00_1254173326-1 47 0.019490 hybrid +136_1-3 Q0 MARCO_56_806901575-4 48 0.017135 hybrid +136_1-3 Q0 MARCO_48_1187831782-4 49 0.011775 hybrid +136_1-3 Q0 KILT_52382-4 50 0.004254 hybrid +136_1-3 Q0 MARCO_03_1735103357-1 51 0.003610 hybrid +136_1-3 Q0 MARCO_27_52816716-20 52 0.002328 hybrid +136_1-3 Q0 MARCO_42_1359229219-1 53 -0.003643 hybrid +136_1-3 Q0 MARCO_35_294734421-10 54 -0.004368 hybrid +136_1-3 Q0 MARCO_57_173176140-2 55 -0.016914 hybrid +136_1-3 Q0 MARCO_04_148900856-1 56 -0.017826 hybrid +136_1-3 Q0 MARCO_08_478922317-5 57 -0.023046 hybrid +136_1-3 Q0 MARCO_17_2937676008-6 58 -0.025340 hybrid +136_1-3 Q0 MARCO_04_1094368859-2 59 -0.026152 hybrid +136_1-3 Q0 MARCO_46_456960792-21 60 -0.030661 hybrid +136_1-3 Q0 MARCO_14_1388732263-37 61 -0.033613 hybrid +136_1-3 Q0 MARCO_39_872301398-1 62 -0.034371 hybrid +136_1-3 Q0 KILT_40609-1 63 -0.036686 hybrid +136_1-3 Q0 MARCO_18_2708092426-50 64 -0.037880 hybrid +136_1-3 Q0 KILT_587880-2 65 -0.038571 hybrid +136_1-3 Q0 MARCO_00_1201327383-3 66 -0.041134 hybrid +136_1-3 Q0 MARCO_23_672010598-11 67 -0.045562 hybrid +136_1-3 Q0 MARCO_09_970603565-1 68 -0.046931 hybrid +136_1-3 Q0 MARCO_09_970001729-8 69 -0.049326 hybrid +136_1-3 Q0 KILT_19283898-48 70 -0.050171 hybrid +136_1-3 Q0 MARCO_42_1368592926-2 71 -0.053318 hybrid +136_1-3 Q0 MARCO_27_1281136783-1 72 -0.054217 hybrid +136_1-3 Q0 MARCO_06_1615593549-25 73 -0.057954 hybrid +136_1-3 Q0 MARCO_42_1353177934-3 74 -0.064287 hybrid +136_1-3 Q0 MARCO_03_1254859519-2 75 -0.064562 hybrid +136_1-3 Q0 MARCO_57_59875912-1 76 -0.065897 hybrid +136_1-3 Q0 MARCO_55_584368262-1 77 -0.069299 hybrid +136_1-3 Q0 MARCO_42_1340957513-1 78 -0.071037 hybrid +136_1-3 Q0 MARCO_01_458481901-57 79 -0.071385 hybrid +136_1-3 Q0 MARCO_02_337202498-56 80 -0.071386 hybrid +136_1-3 Q0 MARCO_09_970001729-1 81 -0.072855 hybrid +136_1-3 Q0 KILT_19136337-3 82 -0.073297 hybrid +136_1-3 Q0 MARCO_17_2892192733-3 83 -0.073298 hybrid +136_1-3 Q0 MARCO_19_612130340-1 84 -0.076773 hybrid +136_1-3 Q0 MARCO_26_1768432741-26 85 -0.079987 hybrid +136_1-3 Q0 MARCO_06_638445323-1 86 -0.080255 hybrid +136_1-3 Q0 MARCO_08_143803383-7 87 -0.082744 hybrid +136_1-3 Q0 MARCO_08_1273856048-1 88 -0.082898 hybrid +136_1-3 Q0 MARCO_11_289326651-2 89 -0.088386 hybrid +136_1-3 Q0 MARCO_19_611783145-6 90 -0.093452 hybrid +136_1-3 Q0 KILT_625197-30 91 -0.094814 hybrid +136_1-3 Q0 MARCO_19_612130340-32 92 -0.094814 hybrid +136_1-3 Q0 MARCO_26_1979217808-2 93 -0.096639 hybrid +136_1-3 Q0 MARCO_24_680855317-4 94 -0.097048 hybrid +136_1-3 Q0 MARCO_14_1388732263-2 95 -0.101375 hybrid +136_1-3 Q0 MARCO_48_1187831782-1 96 -0.103750 hybrid +136_1-3 Q0 KILT_52382-41 97 -0.110728 hybrid +136_1-3 Q0 MARCO_19_611783145-48 98 -0.110728 hybrid +136_1-3 Q0 KILT_453736-5 99 -0.111278 hybrid +136_1-3 Q0 MARCO_14_1007513464-4 100 -0.113754 hybrid +136_1-5 Q0 MARCO_02_1884606143-4 1 0.500000 hybrid +136_1-5 Q0 MARCO_05_629335936-5 2 0.266035 hybrid +136_1-5 Q0 MARCO_39_872301398-1 3 0.254637 hybrid +136_1-5 Q0 MARCO_04_473062102-11 4 0.246079 hybrid +136_1-5 Q0 MARCO_38_1380005313-1 5 0.176423 hybrid +136_1-5 Q0 MARCO_56_806901575-7 6 0.157378 hybrid +136_1-5 Q0 MARCO_40_1318441471-1 7 0.124682 hybrid +136_1-5 Q0 MARCO_17_2959044550-12 8 0.088008 hybrid +136_1-5 Q0 MARCO_06_1615593549-127 9 0.073280 hybrid +136_1-5 Q0 MARCO_05_424740033-13 10 0.061444 hybrid +136_1-5 Q0 MARCO_26_1632560028-2 11 0.060555 hybrid +136_1-5 Q0 MARCO_04_473062102-4 12 0.051093 hybrid +136_1-5 Q0 KILT_14458938-48 13 0.043145 hybrid +136_1-5 Q0 MARCO_27_52816716-21 14 0.042256 hybrid +136_1-5 Q0 MARCO_34_1748142224-2 15 0.038226 hybrid +136_1-5 Q0 MARCO_03_1700874885-4 16 0.026210 hybrid +136_1-5 Q0 MARCO_01_14497761-1 17 0.023384 hybrid +136_1-5 Q0 MARCO_45_1217815366-5 18 0.021923 hybrid +136_1-5 Q0 MARCO_05_336914225-5 19 0.020650 hybrid +136_1-5 Q0 MARCO_03_1463867408-6 20 0.019926 hybrid +136_1-5 Q0 MARCO_08_478922317-20 21 0.018834 hybrid +136_1-5 Q0 MARCO_50_2128988370-68 22 0.018390 hybrid +136_1-5 Q0 MARCO_50_2128988370-10 23 0.016265 hybrid +136_1-5 Q0 MARCO_50_2128988370-50 24 0.014600 hybrid +136_1-5 Q0 MARCO_42_1340949625-2 25 0.013063 hybrid +136_1-5 Q0 MARCO_27_52816716-9 26 0.012355 hybrid +136_1-5 Q0 MARCO_46_456960792-21 27 0.012340 hybrid +136_1-5 Q0 MARCO_31_574468761-1 28 0.002351 hybrid +136_1-5 Q0 MARCO_46_456960792-3 29 -0.004204 hybrid +136_1-5 Q0 MARCO_06_1615593549-102 30 -0.004445 hybrid +136_1-5 Q0 MARCO_03_1254859519-3 31 -0.004814 hybrid +136_1-5 Q0 MARCO_42_1368592926-4 32 -0.010494 hybrid +136_1-5 Q0 MARCO_06_1615593549-126 33 -0.017930 hybrid +136_1-5 Q0 MARCO_09_970001729-5 34 -0.020190 hybrid +136_1-5 Q0 KILT_453736-5 35 -0.025614 hybrid +136_1-5 Q0 MARCO_40_1700476514-1 36 -0.027257 hybrid +136_1-5 Q0 MARCO_56_81919180-9 37 -0.030067 hybrid +136_1-5 Q0 MARCO_19_2370304558-177 38 -0.030926 hybrid +136_1-5 Q0 MARCO_57_173176140-2 39 -0.032319 hybrid +136_1-5 Q0 MARCO_03_1463867408-7 40 -0.037118 hybrid +136_1-5 Q0 MARCO_18_4247291090-5 41 -0.037962 hybrid +136_1-5 Q0 MARCO_36_967030024-3 42 -0.038180 hybrid +136_1-5 Q0 KILT_625197-30 43 -0.038293 hybrid +136_1-5 Q0 MARCO_19_612130340-32 44 -0.038294 hybrid +136_1-5 Q0 MARCO_42_1368592926-5 45 -0.039439 hybrid +136_1-5 Q0 MARCO_42_1340957513-3 46 -0.047266 hybrid +136_1-5 Q0 MARCO_10_580495942-5 47 -0.047560 hybrid +136_1-5 Q0 MARCO_11_111437456-1 48 -0.050649 hybrid +136_1-5 Q0 MARCO_03_1700874885-5 49 -0.051101 hybrid +136_1-5 Q0 MARCO_00_1254173326-28 50 -0.052170 hybrid +136_1-5 Q0 MARCO_06_1615593549-26 51 -0.052201 hybrid +136_1-5 Q0 MARCO_16_1906893262-6 52 -0.057813 hybrid +136_1-5 Q0 MARCO_42_1340957513-2 53 -0.060216 hybrid +136_1-5 Q0 MARCO_00_944207367-1 54 -0.060412 hybrid +136_1-5 Q0 MARCO_06_1615593549-112 55 -0.066379 hybrid +136_1-5 Q0 KILT_568270-4 56 -0.066673 hybrid +136_1-5 Q0 MARCO_06_545026672-5 57 -0.067471 hybrid +136_1-5 Q0 MARCO_09_1661332301-5 58 -0.068714 hybrid +136_1-5 Q0 MARCO_36_1487174364-5 59 -0.068767 hybrid +136_1-5 Q0 MARCO_18_8652746-20 60 -0.072074 hybrid +136_1-5 Q0 MARCO_08_1273856048-1 61 -0.072783 hybrid +136_1-5 Q0 MARCO_50_2128988370-36 62 -0.073709 hybrid +136_1-5 Q0 MARCO_11_1502557247-6 63 -0.074606 hybrid +136_1-5 Q0 MARCO_14_1388732263-3 64 -0.074719 hybrid +136_1-5 Q0 MARCO_21_971986878-7 65 -0.075020 hybrid +136_1-5 Q0 MARCO_06_1615538550-14 66 -0.075736 hybrid +136_1-5 Q0 MARCO_55_596564721-2 67 -0.077318 hybrid +136_1-5 Q0 MARCO_17_3295787855-7 68 -0.077348 hybrid +136_1-5 Q0 MARCO_26_1933602319-9 69 -0.080843 hybrid +136_1-5 Q0 MARCO_06_1615538550-25 70 -0.081627 hybrid +136_1-5 Q0 MARCO_46_456960792-20 71 -0.081627 hybrid +136_1-5 Q0 MARCO_39_677953001-23 72 -0.083556 hybrid +136_1-5 Q0 MARCO_04_497201-1 73 -0.084934 hybrid +136_1-5 Q0 MARCO_27_1281136783-5 74 -0.088068 hybrid +136_1-5 Q0 MARCO_06_545026672-1 75 -0.088196 hybrid +136_1-5 Q0 MARCO_56_806901575-1 76 -0.088904 hybrid +136_1-5 Q0 MARCO_42_1340957513-1 77 -0.089462 hybrid +136_1-5 Q0 MARCO_48_885474387-2 78 -0.097048 hybrid +136_1-5 Q0 KILT_295799-5 79 -0.098457 hybrid +136_1-5 Q0 MARCO_09_970603565-2 80 -0.098578 hybrid +136_1-5 Q0 MARCO_57_59875912-1 81 -0.099828 hybrid +136_1-5 Q0 MARCO_31_574471399-1 82 -0.101049 hybrid +136_1-5 Q0 MARCO_02_1884620640-8 83 -0.102322 hybrid +136_1-5 Q0 MARCO_18_828833700-59 84 -0.102405 hybrid +136_1-5 Q0 MARCO_05_629335936-3 85 -0.102668 hybrid +136_1-5 Q0 MARCO_50_2128988370-37 86 -0.104040 hybrid +136_1-5 Q0 MARCO_19_611783145-13 87 -0.107279 hybrid +136_1-5 Q0 MARCO_09_1661332301-4 88 -0.108703 hybrid +136_1-5 Q0 MARCO_01_1972779468-1 89 -0.108914 hybrid +136_1-5 Q0 KILT_52382-2 90 -0.109614 hybrid +136_1-5 Q0 MARCO_21_1378115203-26 91 -0.111046 hybrid +136_1-5 Q0 MARCO_19_611783145-5 92 -0.112304 hybrid +136_1-5 Q0 MARCO_08_697017286-3 93 -0.113072 hybrid +136_1-5 Q0 MARCO_08_697017286-11 94 -0.114202 hybrid +136_1-5 Q0 KILT_52382-17 95 -0.116899 hybrid +136_1-5 Q0 MARCO_19_611783145-21 96 -0.116900 hybrid +136_1-5 Q0 MARCO_23_1432422873-7 97 -0.120259 hybrid +136_1-5 Q0 MARCO_08_702604278-2 98 -0.121585 hybrid +136_1-5 Q0 MARCO_17_2937676008-7 99 -0.121691 hybrid +136_1-5 Q0 MARCO_04_473062102-12 100 -0.122098 hybrid +136_1-7 Q0 MARCO_01_458481901-58 1 0.500000 hybrid +136_1-7 Q0 MARCO_02_337202498-57 2 0.500000 hybrid +136_1-7 Q0 MARCO_57_884445217-23 3 0.493666 hybrid +136_1-7 Q0 MARCO_06_1605036905-4 4 0.482583 hybrid +136_1-7 Q0 MARCO_36_967030024-4 5 0.474162 hybrid +136_1-7 Q0 MARCO_55_494428548-9 6 0.448533 hybrid +136_1-7 Q0 MARCO_05_629335936-7 7 0.414539 hybrid +136_1-7 Q0 KILT_14458938-50 8 0.394507 hybrid +136_1-7 Q0 MARCO_14_1526002240-92 9 0.389201 hybrid +136_1-7 Q0 MARCO_42_1340949625-5 10 0.352243 hybrid +136_1-7 Q0 MARCO_26_1933602319-9 11 0.351573 hybrid +136_1-7 Q0 MARCO_04_473062102-21 12 0.331862 hybrid +136_1-7 Q0 KILT_3188742-1 13 0.331560 hybrid +136_1-7 Q0 MARCO_38_1349998578-2 14 0.329417 hybrid +136_1-7 Q0 MARCO_39_677953001-24 15 0.310339 hybrid +136_1-7 Q0 MARCO_27_72181676-12 16 0.301937 hybrid +136_1-7 Q0 KILT_416227-1 17 0.300936 hybrid +136_1-7 Q0 MARCO_27_47894695-15 18 0.296896 hybrid +136_1-7 Q0 MARCO_27_40265189-3 19 0.287352 hybrid +136_1-7 Q0 MARCO_50_2128988370-53 20 0.287343 hybrid +136_1-7 Q0 MARCO_19_612317498-2 21 0.283340 hybrid +136_1-7 Q0 MARCO_19_612317498-3 22 0.276015 hybrid +136_1-7 Q0 MARCO_02_1884606143-5 23 0.275014 hybrid +136_1-7 Q0 MARCO_42_1341211865-2 24 0.271606 hybrid +136_1-7 Q0 MARCO_01_2026600344-7 25 0.261061 hybrid +136_1-7 Q0 MARCO_08_710538681-1 26 0.251404 hybrid +136_1-7 Q0 MARCO_09_1661332301-10 27 0.245079 hybrid +136_1-7 Q0 KILT_3188742-3 28 0.241992 hybrid +136_1-7 Q0 MARCO_19_612317498-4 29 0.241992 hybrid +136_1-7 Q0 MARCO_02_1079086282-1 30 0.227766 hybrid +136_1-7 Q0 MARCO_03_1768684089-2 31 0.212917 hybrid +136_1-7 Q0 MARCO_52_654897371-1 32 0.209018 hybrid +136_1-7 Q0 MARCO_10_580069637-2 33 0.207376 hybrid +136_1-7 Q0 MARCO_21_1378115203-2 34 0.207272 hybrid +136_1-7 Q0 MARCO_16_1282904623-8 35 0.205582 hybrid +136_1-7 Q0 MARCO_03_735734322-3 36 0.204364 hybrid +136_1-7 Q0 MARCO_50_2128988370-17 37 0.200843 hybrid +136_1-7 Q0 MARCO_05_1029672944-7 38 0.199635 hybrid +136_1-7 Q0 MARCO_03_735745978-1 39 0.199200 hybrid +136_1-7 Q0 MARCO_31_574457820-1 40 0.197907 hybrid +136_1-7 Q0 MARCO_54_325976921-7 41 0.189638 hybrid +136_1-7 Q0 MARCO_18_828833700-64 42 0.186730 hybrid +136_1-7 Q0 MARCO_11_1502557247-7 43 0.179480 hybrid +136_1-7 Q0 MARCO_26_1761635823-8 44 0.176459 hybrid +136_1-7 Q0 MARCO_01_915966873-5 45 0.174458 hybrid +136_1-7 Q0 MARCO_02_346403764-5 46 0.174411 hybrid +136_1-7 Q0 MARCO_05_674315060-1 47 0.173712 hybrid +136_1-7 Q0 MARCO_18_2222386817-4 48 0.172891 hybrid +136_1-7 Q0 MARCO_08_697017286-3 49 0.171390 hybrid +136_1-7 Q0 MARCO_16_2736711786-32 50 0.170701 hybrid +136_1-7 Q0 KILT_40855058-2 51 0.170087 hybrid +136_1-7 Q0 MARCO_42_1340937711-5 52 0.169351 hybrid +136_1-7 Q0 MARCO_42_1334955667-9 53 0.165008 hybrid +136_1-7 Q0 MARCO_02_621959199-2 54 0.159316 hybrid +136_1-7 Q0 MARCO_26_1951166260-13 55 0.159174 hybrid +136_1-7 Q0 MARCO_04_1094368859-82 56 0.153690 hybrid +136_1-7 Q0 MARCO_04_473062102-23 57 0.147384 hybrid +136_1-7 Q0 MARCO_02_1884620640-10 58 0.144259 hybrid +136_1-7 Q0 MARCO_06_24550212-2 59 0.143249 hybrid +136_1-7 Q0 MARCO_12_1334356634-16 60 0.142437 hybrid +136_1-7 Q0 KILT_490153-12 61 0.137396 hybrid +136_1-7 Q0 MARCO_48_1440515497-2 62 0.136301 hybrid +136_1-7 Q0 MARCO_17_3486439294-7 63 0.136225 hybrid +136_1-7 Q0 MARCO_39_1700302430-1 64 0.133167 hybrid +136_1-7 Q0 MARCO_55_494428548-10 65 0.132733 hybrid +136_1-7 Q0 KILT_645101-8 66 0.130712 hybrid +136_1-7 Q0 KILT_645101-6 67 0.130174 hybrid +136_1-7 Q0 MARCO_33_171833748-4 68 0.128938 hybrid +136_1-7 Q0 KILT_964982-2 69 0.124812 hybrid +136_1-7 Q0 MARCO_11_111437456-1 70 0.124529 hybrid +136_1-7 Q0 KILT_3188742-2 71 0.124001 hybrid +136_1-7 Q0 MARCO_42_1359229219-4 72 0.118204 hybrid +136_1-7 Q0 KILT_690865-31 73 0.116656 hybrid +136_1-7 Q0 MARCO_37_1508036208-5 74 0.111134 hybrid +136_1-7 Q0 MARCO_19_611783145-25 75 0.101061 hybrid +136_1-7 Q0 MARCO_01_1445192363-4 76 0.099636 hybrid +136_1-7 Q0 MARCO_03_1700874885-2 77 0.099456 hybrid +136_1-7 Q0 MARCO_07_536012807-42 78 0.096218 hybrid +136_1-7 Q0 MARCO_42_1340957513-11 79 0.092867 hybrid +136_1-7 Q0 MARCO_02_1727427896-38 80 0.092301 hybrid +136_1-7 Q0 MARCO_19_611783145-32 81 0.092121 hybrid +136_1-7 Q0 MARCO_42_1327005698-3 82 0.090073 hybrid +136_1-7 Q0 MARCO_57_658975045-2 83 0.089270 hybrid +136_1-7 Q0 KILT_3659935-6 84 0.088260 hybrid +136_1-7 Q0 KILT_52382-18 85 0.085438 hybrid +136_1-7 Q0 MARCO_19_611783145-22 86 0.085437 hybrid +136_1-7 Q0 MARCO_48_885474387-1 87 0.084928 hybrid +136_1-7 Q0 MARCO_26_1892461340-4 88 0.082681 hybrid +136_1-7 Q0 MARCO_02_1727427896-37 89 0.079141 hybrid +136_1-7 Q0 MARCO_02_346403764-12 90 0.078291 hybrid +136_1-7 Q0 KILT_59459507-9 91 0.076488 hybrid +136_1-7 Q0 MARCO_02_1884620640-9 92 0.071400 hybrid +136_1-7 Q0 MARCO_17_3486439294-6 93 0.069503 hybrid +136_1-7 Q0 MARCO_04_125469378-5 94 0.068559 hybrid +136_1-7 Q0 MARCO_42_1340957513-17 95 0.067237 hybrid +136_1-7 Q0 MARCO_42_1336954439-1 96 0.065255 hybrid +136_1-7 Q0 MARCO_30_367328370-3 97 0.065189 hybrid +136_1-7 Q0 MARCO_48_885387819-2 98 0.061384 hybrid +136_1-7 Q0 MARCO_42_1403221825-1 99 0.060771 hybrid +136_1-7 Q0 KILT_344865-2 100 0.060100 hybrid +136_1-9 Q0 MARCO_04_148900856-3 1 0.500000 hybrid +136_1-9 Q0 MARCO_04_148900856-2 2 0.374784 hybrid +136_1-9 Q0 MARCO_11_1511196274-3 3 0.302294 hybrid +136_1-9 Q0 MARCO_04_497201-1 4 0.283590 hybrid +136_1-9 Q0 MARCO_11_111437456-1 5 0.223347 hybrid +136_1-9 Q0 MARCO_03_1700874885-2 6 0.211494 hybrid +136_1-9 Q0 MARCO_11_1511196274-1 7 0.202461 hybrid +136_1-9 Q0 MARCO_06_24550212-2 8 0.148441 hybrid +136_1-9 Q0 MARCO_38_1380005313-1 9 0.118552 hybrid +136_1-9 Q0 MARCO_30_310002268-1 10 0.109973 hybrid +136_1-9 Q0 MARCO_00_60617304-1 11 0.101991 hybrid +136_1-9 Q0 MARCO_03_1735103357-2 12 0.092472 hybrid +136_1-9 Q0 MARCO_03_1700874885-4 13 0.080549 hybrid +136_1-9 Q0 MARCO_09_970603565-6 14 0.072940 hybrid +136_1-9 Q0 MARCO_46_456960792-1 15 0.069444 hybrid +136_1-9 Q0 MARCO_03_1735103357-1 16 0.063351 hybrid +136_1-9 Q0 MARCO_26_899502779-4 17 0.058773 hybrid +136_1-9 Q0 MARCO_04_190591391-2 18 0.051336 hybrid +136_1-9 Q0 MARCO_01_1448510883-1 19 0.050993 hybrid +136_1-9 Q0 MARCO_45_1217815366-1 20 0.045061 hybrid +136_1-9 Q0 MARCO_03_1700874885-5 21 0.036432 hybrid +136_1-9 Q0 MARCO_50_2128988370-45 22 0.027277 hybrid +136_1-9 Q0 MARCO_03_1463867408-10 23 0.024428 hybrid +136_1-9 Q0 MARCO_04_125469378-1 24 0.024135 hybrid +136_1-9 Q0 MARCO_26_890532852-3 25 0.013798 hybrid +136_1-9 Q0 MARCO_36_1487174364-1 26 0.011100 hybrid +136_1-9 Q0 MARCO_48_619543422-1 27 -0.002481 hybrid +136_1-9 Q0 MARCO_03_1700874885-3 28 -0.005866 hybrid +136_1-9 Q0 MARCO_09_970001729-1 29 -0.007038 hybrid +136_1-9 Q0 MARCO_03_1463867408-14 30 -0.012515 hybrid +136_1-9 Q0 MARCO_34_1748142224-1 31 -0.013909 hybrid +136_1-9 Q0 MARCO_04_143999592-1 32 -0.019426 hybrid +136_1-9 Q0 MARCO_09_970603565-12 33 -0.022983 hybrid +136_1-9 Q0 MARCO_12_1247075937-7 34 -0.026833 hybrid +136_1-9 Q0 MARCO_36_1487174364-3 35 -0.027884 hybrid +136_1-9 Q0 MARCO_14_1007513464-1 36 -0.028116 hybrid +136_1-9 Q0 MARCO_05_629335936-12 37 -0.029086 hybrid +136_1-9 Q0 MARCO_44_836091499-1 38 -0.029389 hybrid +136_1-9 Q0 MARCO_55_698899462-1 39 -0.034401 hybrid +136_1-9 Q0 MARCO_04_232079116-1 40 -0.034896 hybrid +136_1-9 Q0 MARCO_50_2128988370-58 41 -0.035149 hybrid +136_1-9 Q0 MARCO_45_1132262598-3 42 -0.035846 hybrid +136_1-9 Q0 MARCO_26_1979217808-4 43 -0.043141 hybrid +136_1-9 Q0 MARCO_30_367328370-1 44 -0.047476 hybrid +136_1-9 Q0 MARCO_29_95113102-4 45 -0.050043 hybrid +136_1-9 Q0 MARCO_02_1884606143-1 46 -0.052680 hybrid +136_1-9 Q0 MARCO_26_1892461340-4 47 -0.053438 hybrid +136_1-9 Q0 MARCO_09_970603565-2 48 -0.055853 hybrid +136_1-9 Q0 MARCO_25_837110409-2 49 -0.055853 hybrid +136_1-9 Q0 MARCO_26_1632560028-2 50 -0.056429 hybrid +136_1-9 Q0 MARCO_04_1015096296-1 51 -0.057217 hybrid +136_1-9 Q0 MARCO_34_1748142224-2 52 -0.061461 hybrid +136_1-9 Q0 MARCO_34_1731230858-2 53 -0.062674 hybrid +136_1-9 Q0 MARCO_09_1713622147-3 54 -0.068575 hybrid +136_1-9 Q0 MARCO_03_1463867408-7 55 -0.069525 hybrid +136_1-9 Q0 MARCO_26_899502779-1 56 -0.072940 hybrid +136_1-9 Q0 MARCO_57_173176140-1 57 -0.073091 hybrid +136_1-9 Q0 MARCO_56_806901575-10 58 -0.074951 hybrid +136_1-9 Q0 MARCO_12_1247075937-1 59 -0.079579 hybrid +136_1-9 Q0 MARCO_12_22187102-12 60 -0.080337 hybrid +136_1-9 Q0 MARCO_06_1902336129-1 61 -0.080670 hybrid +136_1-9 Q0 MARCO_50_2128988370-36 62 -0.081024 hybrid +136_1-9 Q0 MARCO_54_811879338-1 63 -0.083934 hybrid +136_1-9 Q0 MARCO_09_970603565-4 64 -0.084055 hybrid +136_1-9 Q0 MARCO_03_1463867408-1 65 -0.084439 hybrid +136_1-9 Q0 MARCO_03_1463867408-16 66 -0.085914 hybrid +136_1-9 Q0 MARCO_09_970001729-9 67 -0.095948 hybrid +136_1-9 Q0 MARCO_49_431849652-1 68 -0.097312 hybrid +136_1-9 Q0 MARCO_31_35082547-4 69 -0.097747 hybrid +136_1-9 Q0 MARCO_50_1432093425-3 70 -0.100374 hybrid +136_1-9 Q0 MARCO_01_541450174-8 71 -0.101617 hybrid +136_1-9 Q0 MARCO_19_611783145-1 72 -0.104769 hybrid +136_1-9 Q0 MARCO_05_1024555796-2 73 -0.108680 hybrid +136_1-9 Q0 MARCO_16_2852307220-4 74 -0.110670 hybrid +136_1-9 Q0 MARCO_26_1933602319-9 75 -0.110761 hybrid +136_1-9 Q0 MARCO_50_2128988370-70 76 -0.113469 hybrid +136_1-9 Q0 MARCO_09_970603565-5 77 -0.113864 hybrid +136_1-9 Q0 MARCO_26_890532852-5 78 -0.114177 hybrid +136_1-9 Q0 MARCO_17_45796309-1 79 -0.115986 hybrid +136_1-9 Q0 MARCO_14_436056341-1 80 -0.117794 hybrid +136_1-9 Q0 MARCO_07_272830831-1 81 -0.119168 hybrid +136_1-9 Q0 MARCO_12_1247075937-12 82 -0.120684 hybrid +136_1-9 Q0 MARCO_55_584368262-5 83 -0.120816 hybrid +136_1-9 Q0 MARCO_00_463823905-9 84 -0.121108 hybrid +136_1-9 Q0 MARCO_39_1711990001-1 85 -0.123675 hybrid +136_1-9 Q0 MARCO_03_1463867408-9 86 -0.123978 hybrid +136_1-9 Q0 MARCO_26_1765545586-1 87 -0.125272 hybrid +136_1-9 Q0 MARCO_50_2733152614-3 88 -0.126242 hybrid +136_1-9 Q0 MARCO_08_748159641-10 89 -0.127949 hybrid +136_1-9 Q0 MARCO_03_1575037858-1 90 -0.130031 hybrid +136_1-9 Q0 MARCO_05_889833490-5 91 -0.130778 hybrid +136_1-9 Q0 MARCO_12_1734969240-5 92 -0.130950 hybrid +136_1-9 Q0 MARCO_10_580149073-1 93 -0.131860 hybrid +136_1-9 Q0 MARCO_03_1463867408-13 94 -0.134184 hybrid +136_1-9 Q0 MARCO_55_546974950-3 95 -0.134770 hybrid +136_1-9 Q0 MARCO_23_128308340-1 96 -0.135134 hybrid +136_1-9 Q0 MARCO_00_60617304-3 97 -0.135316 hybrid +136_1-9 Q0 MARCO_56_806901575-2 98 -0.135811 hybrid +136_1-9 Q0 MARCO_01_1448510883-2 99 -0.138236 hybrid +136_1-9 Q0 MARCO_26_1750995061-4 100 -0.138438 hybrid +136_2-1 Q0 MARCO_36_967030024-1 1 0.500000 hybrid +136_2-1 Q0 MARCO_04_148900856-3 2 0.485581 hybrid +136_2-1 Q0 MARCO_12_1247075937-4 3 0.479864 hybrid +136_2-1 Q0 MARCO_09_970001729-9 4 0.404035 hybrid +136_2-1 Q0 MARCO_06_322904718-1 5 0.292971 hybrid +136_2-1 Q0 MARCO_12_1247075937-10 6 0.283470 hybrid +136_2-1 Q0 MARCO_34_1748142224-1 7 0.273301 hybrid +136_2-1 Q0 MARCO_03_1700874885-5 8 0.235627 hybrid +136_2-1 Q0 MARCO_08_724172429-1 9 0.222461 hybrid +136_2-1 Q0 MARCO_03_1463867408-10 10 0.214318 hybrid +136_2-1 Q0 MARCO_04_148900856-2 11 0.202271 hybrid +136_2-1 Q0 MARCO_12_1247075937-1 12 0.190917 hybrid +136_2-1 Q0 MARCO_12_1247075937-2 13 0.186892 hybrid +136_2-1 Q0 MARCO_05_336914225-1 14 0.167328 hybrid +136_2-1 Q0 MARCO_11_1527112956-1 15 0.152016 hybrid +136_2-1 Q0 MARCO_27_55279422-14 16 0.124270 hybrid +136_2-1 Q0 MARCO_04_148900856-1 17 0.120659 hybrid +136_2-1 Q0 MARCO_14_1388732263-45 18 0.118113 hybrid +136_2-1 Q0 MARCO_12_1247075937-7 19 0.116168 hybrid +136_2-1 Q0 MARCO_09_970603565-1 20 0.115048 hybrid +136_2-1 Q0 MARCO_12_1247075937-14 21 0.114329 hybrid +136_2-1 Q0 MARCO_03_1700874885-2 22 0.113502 hybrid +136_2-1 Q0 MARCO_12_1247075937-15 23 0.106013 hybrid +136_2-1 Q0 MARCO_50_2733152614-1 24 0.091420 hybrid +136_2-1 Q0 MARCO_03_1735103357-1 25 0.082785 hybrid +136_2-1 Q0 MARCO_12_1247075937-11 26 0.081839 hybrid +136_2-1 Q0 MARCO_31_35082547-4 27 0.080839 hybrid +136_2-1 Q0 MARCO_31_574471399-1 28 0.079933 hybrid +136_2-1 Q0 MARCO_31_574448546-1 29 0.076708 hybrid +136_2-1 Q0 MARCO_12_1247075937-13 30 0.075029 hybrid +136_2-1 Q0 MARCO_03_1463867408-8 31 0.062368 hybrid +136_2-1 Q0 MARCO_03_1700874885-3 32 0.056398 hybrid +136_2-1 Q0 MARCO_03_1700874885-4 33 0.031877 hybrid +136_2-1 Q0 MARCO_14_1007513464-1 34 0.031851 hybrid +136_2-1 Q0 MARCO_12_1247075937-12 35 0.028399 hybrid +136_2-1 Q0 MARCO_30_367328370-1 36 0.023521 hybrid +136_2-1 Q0 MARCO_37_792341070-1 37 0.020576 hybrid +136_2-1 Q0 MARCO_09_163336509-1 38 0.012740 hybrid +136_2-1 Q0 MARCO_27_1281136783-1 39 0.010421 hybrid +136_2-1 Q0 MARCO_00_463823905-8 40 0.007916 hybrid +136_2-1 Q0 MARCO_09_970603565-5 41 0.006423 hybrid +136_2-1 Q0 MARCO_55_584368262-5 42 0.000266 hybrid +136_2-1 Q0 MARCO_04_143999592-1 43 -0.008689 hybrid +136_2-1 Q0 MARCO_17_45796309-4 44 -0.009075 hybrid +136_2-1 Q0 MARCO_57_173176140-1 45 -0.010035 hybrid +136_2-1 Q0 MARCO_02_627068903-14 46 -0.011554 hybrid +136_2-1 Q0 MARCO_03_735734322-2 47 -0.015446 hybrid +136_2-1 Q0 MARCO_09_970001729-8 48 -0.017378 hybrid +136_2-1 Q0 MARCO_42_1348383817-2 49 -0.017738 hybrid +136_2-1 Q0 MARCO_27_1510298108-3 50 -0.018537 hybrid +136_2-1 Q0 MARCO_02_674006859-1 51 -0.021043 hybrid +136_2-1 Q0 MARCO_10_580495942-5 52 -0.021989 hybrid +136_2-1 Q0 MARCO_03_1735103357-2 53 -0.022842 hybrid +136_2-1 Q0 MARCO_08_680236959-2 54 -0.023601 hybrid +136_2-1 Q0 MARCO_09_970001729-5 55 -0.024628 hybrid +136_2-1 Q0 MARCO_50_2703809285-3 56 -0.024721 hybrid +136_2-1 Q0 MARCO_03_1463867408-17 57 -0.027666 hybrid +136_2-1 Q0 MARCO_48_1187831782-4 58 -0.027933 hybrid +136_2-1 Q0 MARCO_06_1902336129-1 59 -0.031784 hybrid +136_2-1 Q0 MARCO_10_580495942-9 60 -0.036528 hybrid +136_2-1 Q0 MARCO_05_348175078-2 61 -0.036981 hybrid +136_2-1 Q0 MARCO_50_2128988370-45 62 -0.038367 hybrid +136_2-1 Q0 MARCO_01_541450174-8 63 -0.038754 hybrid +136_2-1 Q0 MARCO_08_1023669874-1 64 -0.038754 hybrid +136_2-1 Q0 MARCO_12_1247075937-19 65 -0.043631 hybrid +136_2-1 Q0 MARCO_03_1716381201-3 66 -0.045310 hybrid +136_2-1 Q0 MARCO_26_899502779-1 67 -0.045457 hybrid +136_2-1 Q0 MARCO_41_1918068634-4 68 -0.046936 hybrid +136_2-1 Q0 MARCO_37_1508036208-2 69 -0.050988 hybrid +136_2-1 Q0 MARCO_27_52816716-9 70 -0.053586 hybrid +136_2-1 Q0 MARCO_48_1393097012-1 71 -0.059477 hybrid +136_2-1 Q0 MARCO_33_471997422-1 72 -0.061635 hybrid +136_2-1 Q0 MARCO_11_1511196274-1 73 -0.062675 hybrid +136_2-1 Q0 MARCO_09_970603565-11 74 -0.063794 hybrid +136_2-1 Q0 MARCO_52_75660560-1 75 -0.063994 hybrid +136_2-1 Q0 MARCO_12_1247075937-18 76 -0.064514 hybrid +136_2-1 Q0 MARCO_03_1254859519-1 77 -0.069365 hybrid +136_2-1 Q0 MARCO_03_1463867408-16 78 -0.069751 hybrid +136_2-1 Q0 MARCO_26_899502779-3 79 -0.071151 hybrid +136_2-1 Q0 MARCO_03_1463867408-1 80 -0.073896 hybrid +136_2-1 Q0 MARCO_35_295756926-13 81 -0.074562 hybrid +136_2-1 Q0 MARCO_11_956172960-2 82 -0.075015 hybrid +136_2-1 Q0 KILT_66853-5 83 -0.080559 hybrid +136_2-1 Q0 MARCO_18_3810895977-6 84 -0.080559 hybrid +136_2-1 Q0 MARCO_02_1884606143-1 85 -0.083664 hybrid +136_2-1 Q0 MARCO_38_1380005313-1 86 -0.083664 hybrid +136_2-1 Q0 MARCO_46_456960792-1 87 -0.085837 hybrid +136_2-1 Q0 MARCO_49_1710174039-32 88 -0.088649 hybrid +136_2-1 Q0 MARCO_16_1906893262-16 89 -0.089701 hybrid +136_2-1 Q0 MARCO_55_538317909-1 90 -0.089821 hybrid +136_2-1 Q0 MARCO_09_576807564-2 91 -0.095072 hybrid +136_2-1 Q0 MARCO_09_970603565-6 92 -0.097791 hybrid +136_2-1 Q0 MARCO_03_1463867408-9 93 -0.099363 hybrid +136_2-1 Q0 KILT_3876620-11 94 -0.101482 hybrid +136_2-1 Q0 MARCO_14_1007513464-3 95 -0.104814 hybrid +136_2-1 Q0 MARCO_14_1388732263-13 96 -0.105027 hybrid +136_2-1 Q0 MARCO_39_872301398-1 97 -0.105480 hybrid +136_2-1 Q0 MARCO_55_596564721-6 98 -0.105946 hybrid +136_2-1 Q0 MARCO_39_1711990001-1 99 -0.106173 hybrid +136_2-1 Q0 MARCO_03_1463867408-13 100 -0.106200 hybrid +136_2-3 Q0 MARCO_10_1522477129-7 1 0.500000 hybrid +136_2-3 Q0 MARCO_17_45796309-10 2 0.498453 hybrid +136_2-3 Q0 MARCO_17_45796309-11 3 0.391828 hybrid +136_2-3 Q0 KILT_243545-16 4 0.371820 hybrid +136_2-3 Q0 MARCO_50_2312547038-5 5 0.290533 hybrid +136_2-3 Q0 MARCO_02_1721991996-21 6 0.275062 hybrid +136_2-3 Q0 MARCO_10_550584996-5 7 0.250915 hybrid +136_2-3 Q0 MARCO_25_34345716-107 8 0.217673 hybrid +136_2-3 Q0 MARCO_23_389783021-2 9 0.207470 hybrid +136_2-3 Q0 KILT_461561-8 10 0.201909 hybrid +136_2-3 Q0 MARCO_17_4778953000-35 11 0.191351 hybrid +136_2-3 Q0 MARCO_09_453642400-4 12 0.181336 hybrid +136_2-3 Q0 KILT_461561-1 13 0.175190 hybrid +136_2-3 Q0 MARCO_17_45796309-27 14 0.169315 hybrid +136_2-3 Q0 MARCO_45_666130355-35 15 0.156290 hybrid +136_2-3 Q0 MARCO_11_1461859438-1 16 0.149014 hybrid +136_2-3 Q0 MARCO_17_45796309-12 17 0.124825 hybrid +136_2-3 Q0 MARCO_17_45838517-13 18 0.122023 hybrid +136_2-3 Q0 MARCO_09_165023690-13 19 0.096308 hybrid +136_2-3 Q0 MARCO_31_1177209948-1 20 0.075965 hybrid +136_2-3 Q0 MARCO_14_1706578219-4 21 0.073582 hybrid +136_2-3 Q0 MARCO_17_45867964-4 22 0.069882 hybrid +136_2-3 Q0 MARCO_54_1959865413-33 23 0.067561 hybrid +136_2-3 Q0 KILT_1967935-30 24 0.064111 hybrid +136_2-3 Q0 MARCO_07_1422341563-4 25 0.062543 hybrid +136_2-3 Q0 MARCO_02_578176031-26 26 0.055330 hybrid +136_2-3 Q0 MARCO_02_1721991996-20 27 0.044981 hybrid +136_2-3 Q0 MARCO_32_1332191767-4 28 0.044396 hybrid +136_2-3 Q0 MARCO_06_409720571-8 29 0.040277 hybrid +136_2-3 Q0 MARCO_41_1009445128-59 30 0.036535 hybrid +136_2-3 Q0 MARCO_58_1126798034-8 31 0.034256 hybrid +136_2-3 Q0 MARCO_17_3561608068-4 32 0.027900 hybrid +136_2-3 Q0 MARCO_07_120387962-6 33 0.022653 hybrid +136_2-3 Q0 KILT_1967935-31 34 0.022214 hybrid +136_2-3 Q0 KILT_13574-22 35 0.021127 hybrid +136_2-3 Q0 MARCO_17_4778953000-33 36 0.016485 hybrid +136_2-3 Q0 MARCO_07_504454818-43 37 0.008938 hybrid +136_2-3 Q0 MARCO_59_48583543-9 38 0.001056 hybrid +136_2-3 Q0 KILT_939789-3 39 -0.000491 hybrid +136_2-3 Q0 MARCO_59_239478090-11 40 -0.005258 hybrid +136_2-3 Q0 MARCO_18_511276332-5 41 -0.009649 hybrid +136_2-3 Q0 KILT_22288303-4 42 -0.012889 hybrid +136_2-3 Q0 MARCO_06_1239857289-58 43 -0.019997 hybrid +136_2-3 Q0 KILT_6112615-1 44 -0.020374 hybrid +136_2-3 Q0 KILT_5471615-18 45 -0.026792 hybrid +136_2-3 Q0 MARCO_16_2852307220-19 46 -0.026792 hybrid +136_2-3 Q0 MARCO_18_4118915934-7 47 -0.034131 hybrid +136_2-3 Q0 MARCO_31_298717934-36 48 -0.037497 hybrid +136_2-3 Q0 KILT_461561-18 49 -0.039755 hybrid +136_2-3 Q0 KILT_939789-4 50 -0.042619 hybrid +136_2-3 Q0 MARCO_25_1282333788-3 51 -0.050542 hybrid +136_2-3 Q0 MARCO_37_359273750-2 52 -0.052131 hybrid +136_2-3 Q0 MARCO_22_362764317-4 53 -0.054975 hybrid +136_2-3 Q0 MARCO_12_1247075937-18 54 -0.059073 hybrid +136_2-3 Q0 MARCO_02_1721991996-12 55 -0.062230 hybrid +136_2-3 Q0 MARCO_46_456960792-9 56 -0.062418 hybrid +136_2-3 Q0 MARCO_52_534191647-2 57 -0.062439 hybrid +136_2-3 Q0 MARCO_06_1839526503-30 58 -0.065993 hybrid +136_2-3 Q0 MARCO_31_711161743-4 59 -0.069735 hybrid +136_2-3 Q0 MARCO_39_1711990001-5 60 -0.076530 hybrid +136_2-3 Q0 MARCO_34_921590484-2 61 -0.077094 hybrid +136_2-3 Q0 MARCO_10_1154138707-14 62 -0.077115 hybrid +136_2-3 Q0 MARCO_17_45796309-3 63 -0.077763 hybrid +136_2-3 Q0 MARCO_31_245466384-3 64 -0.078600 hybrid +136_2-3 Q0 MARCO_23_105243509-4 65 -0.079541 hybrid +136_2-3 Q0 MARCO_51_320739539-1 66 -0.080272 hybrid +136_2-3 Q0 MARCO_46_456960792-19 67 -0.081840 hybrid +136_2-3 Q0 MARCO_07_1423220955-13 68 -0.083910 hybrid +136_2-3 Q0 MARCO_49_379933064-26 69 -0.087067 hybrid +136_2-3 Q0 MARCO_03_1608284079-2 70 -0.090538 hybrid +136_2-3 Q0 MARCO_03_510097004-31 71 -0.092816 hybrid +136_2-3 Q0 MARCO_59_816593407-8 72 -0.092879 hybrid +136_2-3 Q0 MARCO_54_625988626-8 73 -0.097270 hybrid +136_2-3 Q0 MARCO_48_1971630662-12 74 -0.097270 hybrid +136_2-3 Q0 MARCO_48_1989660771-49 75 -0.097270 hybrid +136_2-3 Q0 MARCO_11_1531991211-2 76 -0.097604 hybrid +136_2-3 Q0 KILT_226199-9 77 -0.098419 hybrid +136_2-3 Q0 MARCO_32_1013651379-5 78 -0.100343 hybrid +136_2-3 Q0 KILT_10088047-5 79 -0.101430 hybrid +136_2-3 Q0 MARCO_52_231343805-2 80 -0.102266 hybrid +136_2-3 Q0 MARCO_21_693650626-1 81 -0.103730 hybrid +136_2-3 Q0 MARCO_11_973769626-16 82 -0.104378 hybrid +136_2-3 Q0 MARCO_16_2644949978-5 83 -0.107430 hybrid +136_2-3 Q0 MARCO_17_45796309-20 84 -0.109103 hybrid +136_2-3 Q0 MARCO_17_45796309-17 85 -0.113221 hybrid +136_2-3 Q0 MARCO_30_93440488-212 86 -0.120853 hybrid +136_2-3 Q0 MARCO_05_424740033-29 87 -0.126414 hybrid +136_2-3 Q0 MARCO_28_1206770934-16 88 -0.128776 hybrid +136_2-3 Q0 MARCO_54_1612192965-7 89 -0.128839 hybrid +136_2-3 Q0 MARCO_16_3424112420-22 90 -0.129257 hybrid +136_2-3 Q0 MARCO_28_1001828586-1 91 -0.129968 hybrid +136_2-3 Q0 MARCO_25_519370039-7 92 -0.131599 hybrid +136_2-3 Q0 MARCO_17_3955536734-19 93 -0.131662 hybrid +136_2-3 Q0 MARCO_18_3827205215-7 94 -0.131975 hybrid +136_2-3 Q0 MARCO_17_161486342-5 95 -0.137181 hybrid +136_2-3 Q0 KILT_940044-6 96 -0.138184 hybrid +136_2-3 Q0 MARCO_17_45796309-30 97 -0.138185 hybrid +136_2-3 Q0 MARCO_16_86148295-15 98 -0.138833 hybrid +136_2-3 Q0 MARCO_50_2075214670-5 99 -0.140484 hybrid +136_2-3 Q0 MARCO_22_1764297962-3 100 -0.144854 hybrid +136_2-5 Q0 MARCO_17_45796309-10 1 0.500000 hybrid +136_2-5 Q0 KILT_461561-8 2 0.249916 hybrid +136_2-5 Q0 MARCO_45_666130355-35 3 0.224315 hybrid +136_2-5 Q0 MARCO_10_1522477129-7 4 0.221865 hybrid +136_2-5 Q0 KILT_13574-22 5 0.196458 hybrid +136_2-5 Q0 MARCO_52_534191647-2 6 0.162641 hybrid +136_2-5 Q0 MARCO_17_45796309-11 7 0.130640 hybrid +136_2-5 Q0 KILT_243545-16 8 0.113767 hybrid +136_2-5 Q0 MARCO_11_1561677877-1 9 0.107789 hybrid +136_2-5 Q0 MARCO_21_693650626-1 10 0.080214 hybrid +136_2-5 Q0 MARCO_22_1764297962-3 11 0.045533 hybrid +136_2-5 Q0 MARCO_50_2312547038-5 12 0.045216 hybrid +136_2-5 Q0 MARCO_58_1677832172-16 13 0.034178 hybrid +136_2-5 Q0 MARCO_02_1721991996-21 14 0.032168 hybrid +136_2-5 Q0 MARCO_42_390780331-21 15 0.027443 hybrid +136_2-5 Q0 MARCO_10_550584996-5 16 0.011804 hybrid +136_2-5 Q0 MARCO_44_835504615-8 17 0.002830 hybrid +136_2-5 Q0 MARCO_48_1989660771-49 18 -0.002389 hybrid +136_2-5 Q0 MARCO_54_625988626-8 19 -0.005422 hybrid +136_2-5 Q0 MARCO_25_34345716-107 20 -0.016230 hybrid +136_2-5 Q0 MARCO_23_389783021-2 21 -0.024834 hybrid +136_2-5 Q0 MARCO_17_45796309-30 22 -0.030617 hybrid +136_2-5 Q0 MARCO_16_86148295-15 23 -0.031163 hybrid +136_2-5 Q0 MARCO_40_1700434017-4 24 -0.038375 hybrid +136_2-5 Q0 MARCO_17_4778953000-35 25 -0.038428 hybrid +136_2-5 Q0 MARCO_23_102113852-2 26 -0.041901 hybrid +136_2-5 Q0 MARCO_45_681567201-1 27 -0.041954 hybrid +136_2-5 Q0 MARCO_33_213191673-1 28 -0.045762 hybrid +136_2-5 Q0 MARCO_09_453642400-4 29 -0.046873 hybrid +136_2-5 Q0 KILT_461561-1 30 -0.052057 hybrid +136_2-5 Q0 MARCO_12_265232941-8 31 -0.054984 hybrid +136_2-5 Q0 MARCO_01_384143704-32 32 -0.055742 hybrid +136_2-5 Q0 MARCO_17_45796309-27 33 -0.057011 hybrid +136_2-5 Q0 MARCO_01_2198047216-20 34 -0.062054 hybrid +136_2-5 Q0 MARCO_11_1461859438-1 35 -0.074131 hybrid +136_2-5 Q0 MARCO_31_1814736667-5 36 -0.075947 hybrid +136_2-5 Q0 MARCO_17_4778953000-39 37 -0.078433 hybrid +136_2-5 Q0 MARCO_50_915361645-22 38 -0.090264 hybrid +136_2-5 Q0 MARCO_17_45796309-12 39 -0.094531 hybrid +136_2-5 Q0 MARCO_17_45838517-13 40 -0.096893 hybrid +136_2-5 Q0 MARCO_17_4778953000-36 41 -0.108407 hybrid +136_2-5 Q0 MARCO_27_1402217841-5 42 -0.112250 hybrid +136_2-5 Q0 MARCO_09_165023690-13 43 -0.118580 hybrid +136_2-5 Q0 MARCO_00_792839559-1 44 -0.121013 hybrid +136_2-5 Q0 MARCO_55_641068757-3 45 -0.126743 hybrid +136_2-5 Q0 MARCO_16_2887144109-77 46 -0.132227 hybrid +136_2-5 Q0 MARCO_08_1717642655-1 47 -0.133038 hybrid +136_2-5 Q0 MARCO_31_1177209948-1 48 -0.135735 hybrid +136_2-5 Q0 MARCO_14_1706578219-4 49 -0.137745 hybrid +136_2-5 Q0 MARCO_21_1215734981-8 50 -0.140161 hybrid +136_2-5 Q0 MARCO_17_45867964-4 51 -0.140866 hybrid +136_2-5 Q0 MARCO_15_558859410-3 52 -0.141289 hybrid +136_2-5 Q0 KILT_1967935-32 53 -0.141871 hybrid +136_2-5 Q0 MARCO_27_884821245-2 54 -0.142541 hybrid +136_2-5 Q0 MARCO_54_1959865413-33 55 -0.142823 hybrid +136_2-5 Q0 KILT_1967935-30 56 -0.145732 hybrid +136_2-5 Q0 MARCO_24_959256879-1 57 -0.145997 hybrid +136_2-5 Q0 MARCO_22_685251487-6 58 -0.146684 hybrid +136_2-5 Q0 MARCO_07_1422341563-4 59 -0.147055 hybrid +136_2-5 Q0 MARCO_23_1147339665-5 60 -0.148077 hybrid +136_2-5 Q0 MARCO_09_369888101-41 61 -0.149206 hybrid +136_2-5 Q0 MARCO_08_478922317-7 62 -0.150034 hybrid +136_2-5 Q0 MARCO_40_103958312-15 63 -0.151586 hybrid +136_2-5 Q0 MARCO_02_578176031-26 64 -0.153137 hybrid +136_2-5 Q0 KILT_31807775-5 65 -0.154636 hybrid +136_2-5 Q0 MARCO_02_1721991996-20 66 -0.161865 hybrid +136_2-5 Q0 MARCO_32_1332191767-4 67 -0.162359 hybrid +136_2-5 Q0 MARCO_06_409720571-8 68 -0.165832 hybrid +136_2-5 Q0 KILT_6040366-9 69 -0.167296 hybrid +136_2-5 Q0 MARCO_41_1009445128-59 70 -0.168988 hybrid +136_2-5 Q0 MARCO_58_1126798034-8 71 -0.170910 hybrid +136_2-5 Q0 MARCO_44_232423723-11 72 -0.171739 hybrid +136_2-5 Q0 MARCO_29_1450690863-10 73 -0.172603 hybrid +136_2-5 Q0 MARCO_13_976204917-4 74 -0.175265 hybrid +136_2-5 Q0 MARCO_17_3561608068-4 75 -0.176270 hybrid +136_2-5 Q0 MARCO_47_551099457-3 76 -0.177028 hybrid +136_2-5 Q0 MARCO_07_120387962-6 77 -0.180695 hybrid +136_2-5 Q0 KILT_1967935-31 78 -0.181066 hybrid +136_2-5 Q0 MARCO_00_141206044-253 79 -0.182882 hybrid +136_2-5 Q0 MARCO_17_4778953000-33 80 -0.185897 hybrid +136_2-5 Q0 MARCO_26_1344067081-7 81 -0.188823 hybrid +136_2-5 Q0 MARCO_07_504454818-43 82 -0.192262 hybrid +136_2-5 Q0 MARCO_04_1332456588-1 83 -0.197586 hybrid +136_2-5 Q0 MARCO_59_48583543-9 84 -0.198909 hybrid +136_2-5 Q0 KILT_939789-3 85 -0.200213 hybrid +136_2-5 Q0 MARCO_36_1259995001-15 86 -0.200249 hybrid +136_2-5 Q0 MARCO_25_1373638013-18 87 -0.201747 hybrid +136_2-5 Q0 MARCO_59_239478090-11 88 -0.204233 hybrid +136_2-5 Q0 MARCO_04_1434005573-6 89 -0.206102 hybrid +136_2-5 Q0 MARCO_00_754632990-4 90 -0.207636 hybrid +136_2-5 Q0 MARCO_18_511276332-5 91 -0.207936 hybrid +136_2-5 Q0 MARCO_01_152014418-1 92 -0.208289 hybrid +136_2-5 Q0 MARCO_23_836858002-7 93 -0.209664 hybrid +136_2-5 Q0 KILT_22288303-4 94 -0.210669 hybrid +136_2-5 Q0 MARCO_19_1449777160-16 95 -0.212308 hybrid +136_2-5 Q0 MARCO_42_402859664-4 96 -0.213878 hybrid +136_2-5 Q0 MARCO_57_1075697207-5 97 -0.214671 hybrid +136_2-5 Q0 MARCO_05_327072501-4 98 -0.215165 hybrid +136_2-5 Q0 MARCO_50_1085181741-16 99 -0.215764 hybrid +136_2-5 Q0 MARCO_25_1368994066-91 100 -0.216364 hybrid +137_1-1 Q0 MARCO_31_719719292-1 1 0.500000 hybrid +137_1-1 Q0 KILT_9912495-4 2 0.451671 hybrid +137_1-1 Q0 MARCO_18_2910246170-6 3 0.347760 hybrid +137_1-1 Q0 MARCO_55_1040397202-2 4 0.307799 hybrid +137_1-1 Q0 KILT_9912495-3 5 0.289973 hybrid +137_1-1 Q0 KILT_408292-13 6 0.281106 hybrid +137_1-1 Q0 MARCO_18_2910246170-4 7 0.273071 hybrid +137_1-1 Q0 MARCO_30_1549247804-2 8 0.271099 hybrid +137_1-1 Q0 MARCO_31_719719292-6 9 0.232744 hybrid +137_1-1 Q0 KILT_9912495-1 10 0.232677 hybrid +137_1-1 Q0 MARCO_31_719719292-3 11 0.206833 hybrid +137_1-1 Q0 MARCO_18_783618318-30 12 0.169226 hybrid +137_1-1 Q0 MARCO_18_2910246170-5 13 0.168968 hybrid +137_1-1 Q0 KILT_247365-2 14 0.165657 hybrid +137_1-1 Q0 MARCO_18_783618318-32 15 0.155168 hybrid +137_1-1 Q0 MARCO_04_654519061-15 16 0.147806 hybrid +137_1-1 Q0 KILT_247365-1 17 0.143373 hybrid +137_1-1 Q0 MARCO_31_719719292-2 18 0.138590 hybrid +137_1-1 Q0 MARCO_18_2910246170-9 19 0.112038 hybrid +137_1-1 Q0 MARCO_49_1738263214-3 20 0.109717 hybrid +137_1-1 Q0 MARCO_13_1026447714-6 21 0.090777 hybrid +137_1-1 Q0 MARCO_18_2910246170-3 22 0.089254 hybrid +137_1-1 Q0 KILT_9912495-6 23 0.088273 hybrid +137_1-1 Q0 MARCO_18_2910049991-3 24 0.083032 hybrid +137_1-1 Q0 MARCO_26_397313239-44 25 0.069973 hybrid +137_1-1 Q0 MARCO_18_2910246170-22 26 0.051931 hybrid +137_1-1 Q0 MARCO_18_783618318-27 27 0.049510 hybrid +137_1-1 Q0 MARCO_48_1450710232-2 28 0.044877 hybrid +137_1-1 Q0 MARCO_49_646751923-2 29 0.042989 hybrid +137_1-1 Q0 MARCO_48_104435441-7 30 0.036234 hybrid +137_1-1 Q0 KILT_9912495-13 31 0.034986 hybrid +137_1-1 Q0 MARCO_06_1854467530-4 32 0.013326 hybrid +137_1-1 Q0 MARCO_31_719719292-9 33 0.005582 hybrid +137_1-1 Q0 MARCO_31_719719292-4 34 -0.005265 hybrid +137_1-1 Q0 MARCO_48_104435441-2 35 -0.006621 hybrid +137_1-1 Q0 MARCO_14_1571463715-3 36 -0.007653 hybrid +137_1-1 Q0 MARCO_24_446293844-1 37 -0.011829 hybrid +137_1-1 Q0 MARCO_48_1450710232-5 38 -0.022010 hybrid +137_1-1 Q0 MARCO_18_2910049991-2 39 -0.027409 hybrid +137_1-1 Q0 MARCO_49_1738263214-4 40 -0.029347 hybrid +137_1-1 Q0 MARCO_26_331522881-121 41 -0.033082 hybrid +137_1-1 Q0 MARCO_48_602048401-2 42 -0.034096 hybrid +137_1-1 Q0 MARCO_18_2910246170-7 43 -0.043097 hybrid +137_1-1 Q0 MARCO_50_1340018063-101 44 -0.051914 hybrid +137_1-1 Q0 MARCO_13_1026447714-7 45 -0.052455 hybrid +137_1-1 Q0 MARCO_55_191290238-2 46 -0.053952 hybrid +137_1-1 Q0 MARCO_43_846023892-3 47 -0.067885 hybrid +137_1-1 Q0 MARCO_06_1854467530-1 48 -0.072743 hybrid +137_1-1 Q0 MARCO_30_2053025072-11 49 -0.072992 hybrid +137_1-1 Q0 MARCO_33_1476721706-2 50 -0.073941 hybrid +137_1-1 Q0 MARCO_18_2910246170-2 51 -0.074623 hybrid +137_1-1 Q0 MARCO_22_428501062-118 52 -0.080720 hybrid +137_1-1 Q0 MARCO_18_2910049991-11 53 -0.081211 hybrid +137_1-1 Q0 MARCO_18_783618318-20 54 -0.083240 hybrid +137_1-1 Q0 MARCO_35_313211833-3 55 -0.084630 hybrid +137_1-1 Q0 KILT_247365-3 56 -0.088082 hybrid +137_1-1 Q0 MARCO_03_293655812-300 57 -0.089088 hybrid +137_1-1 Q0 MARCO_58_1153356040-7 58 -0.097132 hybrid +137_1-1 Q0 MARCO_48_1564330825-4 59 -0.105492 hybrid +137_1-1 Q0 MARCO_18_2910246170-30 60 -0.115008 hybrid +137_1-1 Q0 MARCO_14_1571463715-2 61 -0.121388 hybrid +137_1-1 Q0 MARCO_58_1722082970-1 62 -0.123917 hybrid +137_1-1 Q0 MARCO_26_349288012-8 63 -0.127884 hybrid +137_1-1 Q0 MARCO_18_2910246170-31 64 -0.129340 hybrid +137_1-1 Q0 MARCO_43_846023892-2 65 -0.131702 hybrid +137_1-1 Q0 MARCO_18_783618318-12 66 -0.132684 hybrid +137_1-1 Q0 MARCO_35_313211833-7 67 -0.141909 hybrid +137_1-1 Q0 MARCO_49_1738263214-5 68 -0.142192 hybrid +137_1-1 Q0 MARCO_14_1002277169-2 69 -0.146126 hybrid +137_1-1 Q0 MARCO_26_353153774-59 70 -0.152207 hybrid +137_1-1 Q0 KILT_247365-8 71 -0.155160 hybrid +137_1-1 Q0 MARCO_18_2910049991-4 72 -0.157747 hybrid +137_1-1 Q0 MARCO_35_313211833-4 73 -0.164177 hybrid +137_1-1 Q0 MARCO_58_1471918465-3 74 -0.165316 hybrid +137_1-1 Q0 MARCO_25_216189390-62 75 -0.167762 hybrid +137_1-1 Q0 MARCO_31_884593487-115 76 -0.168935 hybrid +137_1-1 Q0 KILT_408292-10 77 -0.169517 hybrid +137_1-1 Q0 KILT_8481853-4 78 -0.173194 hybrid +137_1-1 Q0 MARCO_28_23289269-2 79 -0.177702 hybrid +137_1-1 Q0 MARCO_30_1549247804-1 80 -0.180530 hybrid +137_1-1 Q0 MARCO_47_694619243-7 81 -0.181944 hybrid +137_1-1 Q0 MARCO_54_1577290190-15 82 -0.187975 hybrid +137_1-1 Q0 KILT_9912495-5 83 -0.189306 hybrid +137_1-1 Q0 MARCO_17_1406390845-7 84 -0.192217 hybrid +137_1-1 Q0 MARCO_52_53056813-1 85 -0.192983 hybrid +137_1-1 Q0 MARCO_30_1549247804-3 86 -0.193141 hybrid +137_1-1 Q0 MARCO_18_2910049991-9 87 -0.195819 hybrid +137_1-1 Q0 MARCO_26_397313239-67 88 -0.198498 hybrid +137_1-1 Q0 MARCO_14_1002277169-3 89 -0.204354 hybrid +137_1-1 Q0 MARCO_50_1947007922-8 90 -0.205427 hybrid +137_1-1 Q0 MARCO_50_1805313576-8 91 -0.213496 hybrid +137_1-1 Q0 MARCO_25_216189390-63 92 -0.214427 hybrid +137_1-1 Q0 MARCO_26_397313239-45 93 -0.217131 hybrid +137_1-1 Q0 KILT_7230444-21 94 -0.220192 hybrid +137_1-1 Q0 MARCO_49_1738263214-2 95 -0.221855 hybrid +137_1-1 Q0 KILT_43294722-2 96 -0.223727 hybrid +137_1-1 Q0 KILT_4275935-4 97 -0.224259 hybrid +137_1-1 Q0 MARCO_06_1854467530-3 98 -0.227212 hybrid +137_1-1 Q0 MARCO_26_331522881-122 99 -0.231479 hybrid +137_1-1 Q0 MARCO_22_1650187650-3 100 -0.231779 hybrid +137_1-11 Q0 MARCO_50_2240949679-56 1 0.500000 hybrid +137_1-11 Q0 MARCO_44_609297930-1 2 0.458375 hybrid +137_1-11 Q0 MARCO_30_558934876-12 3 0.419196 hybrid +137_1-11 Q0 MARCO_35_1356084938-2 4 0.384256 hybrid +137_1-11 Q0 MARCO_44_609706399-6 5 0.309293 hybrid +137_1-11 Q0 MARCO_27_1554395827-1 6 0.252628 hybrid +137_1-11 Q0 MARCO_36_1385252696-8 7 0.248717 hybrid +137_1-11 Q0 MARCO_24_1290697822-2 8 0.242876 hybrid +137_1-11 Q0 MARCO_57_179961171-2 9 0.240688 hybrid +137_1-11 Q0 MARCO_30_562857078-9 10 0.216740 hybrid +137_1-11 Q0 MARCO_24_1291929822-10 11 0.159884 hybrid +137_1-11 Q0 MARCO_07_1580965634-5 12 0.128976 hybrid +137_1-11 Q0 MARCO_39_1130735262-4 13 0.125943 hybrid +137_1-11 Q0 MARCO_21_1014616977-34 14 0.125564 hybrid +137_1-11 Q0 MARCO_53_1361891562-2 15 0.124031 hybrid +137_1-11 Q0 MARCO_56_955861532-1 16 0.118759 hybrid +137_1-11 Q0 MARCO_44_609108777-2 17 0.113091 hybrid +137_1-11 Q0 MARCO_23_1813940565-1 18 0.107526 hybrid +137_1-11 Q0 MARCO_27_1552615991-4 19 0.094949 hybrid +137_1-11 Q0 MARCO_50_1362985060-7 20 0.091331 hybrid +137_1-11 Q0 MARCO_42_1104826988-12 21 0.086265 hybrid +137_1-11 Q0 MARCO_27_1427608066-2 22 0.081889 hybrid +137_1-11 Q0 MARCO_34_836152388-11 23 0.079081 hybrid +137_1-11 Q0 MARCO_32_1485465470-8 24 0.072344 hybrid +137_1-11 Q0 MARCO_32_1230545834-9 25 0.069381 hybrid +137_1-11 Q0 MARCO_47_1058827486-2 26 0.068847 hybrid +137_1-11 Q0 MARCO_57_875386862-15 27 0.058561 hybrid +137_1-11 Q0 MARCO_35_231027854-16 28 0.056459 hybrid +137_1-11 Q0 MARCO_59_803259316-2 29 0.055839 hybrid +137_1-11 Q0 MARCO_50_1280687382-44 30 0.043279 hybrid +137_1-11 Q0 MARCO_17_903307348-53 31 0.032838 hybrid +137_1-11 Q0 MARCO_24_1292018524-2 32 0.032080 hybrid +137_1-11 Q0 MARCO_43_581408031-3 33 0.028497 hybrid +137_1-11 Q0 MARCO_27_1553897305-5 34 0.016213 hybrid +137_1-11 Q0 MARCO_36_99529317-1 35 0.011492 hybrid +137_1-11 Q0 MARCO_04_1495812688-2 36 0.004790 hybrid +137_1-11 Q0 MARCO_27_1528155735-1 37 0.002067 hybrid +137_1-11 Q0 MARCO_41_101282651-1 38 0.001861 hybrid +137_1-11 Q0 MARCO_24_1292005910-2 39 -0.004790 hybrid +137_1-11 Q0 MARCO_05_1326139057-2 40 -0.007133 hybrid +137_1-11 Q0 MARCO_04_202171690-4 41 -0.007495 hybrid +137_1-11 Q0 MARCO_14_729243887-1 42 -0.008890 hybrid +137_1-11 Q0 MARCO_40_175150328-10 43 -0.009183 hybrid +137_1-11 Q0 MARCO_22_1795003517-3 44 -0.021329 hybrid +137_1-11 Q0 MARCO_23_1795388474-1 45 -0.027997 hybrid +137_1-11 Q0 MARCO_57_876525725-31 46 -0.028979 hybrid +137_1-11 Q0 MARCO_50_2240949679-176 47 -0.029375 hybrid +137_1-11 Q0 MARCO_51_185490121-3 48 -0.034113 hybrid +137_1-11 Q0 MARCO_22_709713539-1 49 -0.035836 hybrid +137_1-11 Q0 MARCO_35_1409874792-1 50 -0.038145 hybrid +137_1-11 Q0 MARCO_54_1151025974-2 51 -0.038799 hybrid +137_1-11 Q0 MARCO_27_1471073819-2 52 -0.039575 hybrid +137_1-11 Q0 MARCO_55_349411182-18 53 -0.041039 hybrid +137_1-11 Q0 MARCO_44_216057484-21 54 -0.041298 hybrid +137_1-11 Q0 MARCO_43_1305680217-3 55 -0.047655 hybrid +137_1-11 Q0 MARCO_50_1280687382-43 56 -0.051859 hybrid +137_1-11 Q0 KILT_462387-1 57 -0.053720 hybrid +137_1-11 Q0 MARCO_27_1471073819-1 58 -0.067761 hybrid +137_1-11 Q0 MARCO_27_1518220177-9 59 -0.069880 hybrid +137_1-11 Q0 MARCO_44_609464324-2 60 -0.070070 hybrid +137_1-11 Q0 MARCO_44_611084419-1 61 -0.076737 hybrid +137_1-11 Q0 MARCO_35_289780164-5 62 -0.078839 hybrid +137_1-11 Q0 MARCO_11_40200448-48 63 -0.082182 hybrid +137_1-11 Q0 MARCO_42_1439184466-15 64 -0.084353 hybrid +137_1-11 Q0 MARCO_54_1963790818-6 65 -0.085783 hybrid +137_1-11 Q0 MARCO_55_206408624-17 66 -0.087764 hybrid +137_1-11 Q0 MARCO_12_1477167620-5 67 -0.091899 hybrid +137_1-11 Q0 MARCO_29_130071069-2 68 -0.092209 hybrid +137_1-11 Q0 MARCO_50_1313119222-2 69 -0.094001 hybrid +137_1-11 Q0 MARCO_27_1522139341-10 70 -0.094690 hybrid +137_1-11 Q0 MARCO_24_1291867734-4 71 -0.096103 hybrid +137_1-11 Q0 MARCO_45_1459398455-6 72 -0.096999 hybrid +137_1-11 Q0 MARCO_35_1607012-5 73 -0.098119 hybrid +137_1-11 Q0 MARCO_07_146881531-7 74 -0.102409 hybrid +137_1-11 Q0 MARCO_36_882633336-6 75 -0.102546 hybrid +137_1-11 Q0 MARCO_41_1909087560-9 76 -0.107698 hybrid +137_1-11 Q0 MARCO_50_1126830836-18 77 -0.107853 hybrid +137_1-11 Q0 MARCO_50_2240949679-17 78 -0.109714 hybrid +137_1-11 Q0 MARCO_24_1291798482-3 79 -0.112849 hybrid +137_1-11 Q0 MARCO_07_146881531-25 80 -0.113142 hybrid +137_1-11 Q0 MARCO_24_1291916644-2 81 -0.113418 hybrid +137_1-11 Q0 MARCO_30_562993379-3 82 -0.114383 hybrid +137_1-11 Q0 MARCO_23_1788125778-13 83 -0.114503 hybrid +137_1-11 Q0 MARCO_23_1788125778-15 84 -0.114503 hybrid +137_1-11 Q0 MARCO_23_1778980280-1 85 -0.114607 hybrid +137_1-11 Q0 MARCO_23_1781072853-1 86 -0.116295 hybrid +137_1-11 Q0 MARCO_36_901871598-4 87 -0.117380 hybrid +137_1-11 Q0 MARCO_53_1361319057-4 88 -0.118173 hybrid +137_1-11 Q0 MARCO_50_1280687382-12 89 -0.119534 hybrid +137_1-11 Q0 MARCO_57_179961171-1 90 -0.123721 hybrid +137_1-11 Q0 MARCO_14_1214828158-2 91 -0.125306 hybrid +137_1-11 Q0 MARCO_43_581408031-2 92 -0.130130 hybrid +137_1-11 Q0 MARCO_36_1293167950-19 93 -0.134540 hybrid +137_1-11 Q0 MARCO_29_1477712102-2 94 -0.136160 hybrid +137_1-11 Q0 MARCO_48_402633577-23 95 -0.137934 hybrid +137_1-11 Q0 MARCO_55_282724775-2 96 -0.139761 hybrid +137_1-11 Q0 MARCO_36_107035810-9 97 -0.140260 hybrid +137_1-11 Q0 MARCO_58_1645748338-5 98 -0.141139 hybrid +137_1-11 Q0 MARCO_27_1484460425-4 99 -0.144240 hybrid +137_1-11 Q0 MARCO_27_1485412081-4 100 -0.144240 hybrid +137_1-3 Q0 MARCO_55_1040397202-2 1 0.500000 hybrid +137_1-3 Q0 KILT_9912495-1 2 0.471948 hybrid +137_1-3 Q0 MARCO_31_719719292-1 3 0.456394 hybrid +137_1-3 Q0 KILT_9912495-6 4 0.397425 hybrid +137_1-3 Q0 MARCO_30_1549247804-2 5 0.390512 hybrid +137_1-3 Q0 KILT_408292-13 6 0.364637 hybrid +137_1-3 Q0 MARCO_31_719719292-6 7 0.318118 hybrid +137_1-3 Q0 MARCO_18_2910246170-4 8 0.310829 hybrid +137_1-3 Q0 KILT_9912495-3 9 0.296483 hybrid +137_1-3 Q0 MARCO_31_719719292-3 10 0.293194 hybrid +137_1-3 Q0 KILT_9912495-4 11 0.290394 hybrid +137_1-3 Q0 KILT_247365-2 12 0.285585 hybrid +137_1-3 Q0 MARCO_18_2910246170-9 13 0.275424 hybrid +137_1-3 Q0 MARCO_26_397313239-44 14 0.269407 hybrid +137_1-3 Q0 MARCO_18_783618318-30 15 0.257021 hybrid +137_1-3 Q0 MARCO_18_2910246170-5 16 0.256773 hybrid +137_1-3 Q0 MARCO_18_783618318-32 17 0.243499 hybrid +137_1-3 Q0 MARCO_49_646751923-2 18 0.233202 hybrid +137_1-3 Q0 KILT_247365-1 19 0.232153 hybrid +137_1-3 Q0 MARCO_31_719719292-2 20 0.227553 hybrid +137_1-3 Q0 MARCO_48_1450710232-2 21 0.223704 hybrid +137_1-3 Q0 MARCO_18_2910246170-6 22 0.220352 hybrid +137_1-3 Q0 MARCO_49_1738263214-3 23 0.168592 hybrid +137_1-3 Q0 MARCO_31_719719292-4 24 0.165128 hybrid +137_1-3 Q0 MARCO_18_2910049991-2 25 0.163368 hybrid +137_1-3 Q0 MARCO_18_2910049991-3 26 0.131619 hybrid +137_1-3 Q0 MARCO_04_654519061-15 27 0.104607 hybrid +137_1-3 Q0 MARCO_24_446293844-1 28 0.100614 hybrid +137_1-3 Q0 MARCO_18_783618318-27 29 0.099374 hybrid +137_1-3 Q0 MARCO_30_2053025072-11 30 0.095382 hybrid +137_1-3 Q0 MARCO_26_331522881-121 31 0.086084 hybrid +137_1-3 Q0 MARCO_52_53056813-1 32 0.083668 hybrid +137_1-3 Q0 MARCO_18_783618318-12 33 0.063505 hybrid +137_1-3 Q0 MARCO_31_719719292-9 34 0.057120 hybrid +137_1-3 Q0 MARCO_18_2910246170-22 35 0.050847 hybrid +137_1-3 Q0 KILT_8481853-4 36 0.035509 hybrid +137_1-3 Q0 KILT_408292-10 37 0.028084 hybrid +137_1-3 Q0 MARCO_13_1026447714-6 38 0.025140 hybrid +137_1-3 Q0 MARCO_18_2910246170-2 39 0.022467 hybrid +137_1-3 Q0 MARCO_43_846023892-2 40 0.021483 hybrid +137_1-3 Q0 MARCO_18_2910246170-3 41 0.020419 hybrid +137_1-3 Q0 MARCO_30_1549247804-3 42 0.016907 hybrid +137_1-3 Q0 MARCO_14_1571463715-2 43 0.011226 hybrid +137_1-3 Q0 KILT_247365-3 44 0.009521 hybrid +137_1-3 Q0 KILT_9912495-13 45 0.006369 hybrid +137_1-3 Q0 MARCO_58_1153356040-7 46 -0.000904 hybrid +137_1-3 Q0 MARCO_48_1564330825-4 47 -0.001344 hybrid +137_1-3 Q0 MARCO_18_2910246170-30 48 -0.016378 hybrid +137_1-3 Q0 MARCO_35_313211833-7 49 -0.019115 hybrid +137_1-3 Q0 MARCO_49_1738263214-4 50 -0.024275 hybrid +137_1-3 Q0 MARCO_18_2910246170-31 51 -0.030164 hybrid +137_1-3 Q0 MARCO_33_1476721706-2 52 -0.032141 hybrid +137_1-3 Q0 MARCO_31_884593487-115 53 -0.036973 hybrid +137_1-3 Q0 MARCO_28_23289269-2 54 -0.046095 hybrid +137_1-3 Q0 MARCO_18_2910246170-7 55 -0.046159 hybrid +137_1-3 Q0 MARCO_06_1854467530-4 56 -0.046831 hybrid +137_1-3 Q0 KILT_4275935-4 57 -0.048047 hybrid +137_1-3 Q0 MARCO_13_1026447714-7 58 -0.051943 hybrid +137_1-3 Q0 MARCO_26_353153774-59 59 -0.052159 hybrid +137_1-3 Q0 KILT_247365-8 60 -0.055000 hybrid +137_1-3 Q0 MARCO_18_2910049991-4 61 -0.057488 hybrid +137_1-3 Q0 MARCO_18_2910049991-11 62 -0.060553 hybrid +137_1-3 Q0 MARCO_04_654519061-7 63 -0.060561 hybrid +137_1-3 Q0 MARCO_25_216189390-62 64 -0.068698 hybrid +137_1-3 Q0 MARCO_43_840301554-6 65 -0.070258 hybrid +137_1-3 Q0 MARCO_17_2294260093-18 66 -0.078499 hybrid +137_1-3 Q0 MARCO_43_846023892-1 67 -0.078635 hybrid +137_1-3 Q0 MARCO_49_1738263214-2 68 -0.078635 hybrid +137_1-3 Q0 MARCO_30_1549247804-1 69 -0.081004 hybrid +137_1-3 Q0 MARCO_55_191290238-2 70 -0.084932 hybrid +137_1-3 Q0 MARCO_26_349288012-8 71 -0.085396 hybrid +137_1-3 Q0 KILT_9912495-5 72 -0.087845 hybrid +137_1-3 Q0 MARCO_18_2910049991-9 73 -0.094110 hybrid +137_1-3 Q0 MARCO_58_1722082970-1 74 -0.100774 hybrid +137_1-3 Q0 MARCO_48_104435441-7 75 -0.102023 hybrid +137_1-3 Q0 MARCO_14_1002277169-3 76 -0.102319 hybrid +137_1-3 Q0 MARCO_18_260511749-7 77 -0.102783 hybrid +137_1-3 Q0 MARCO_50_1947007922-8 78 -0.105719 hybrid +137_1-3 Q0 MARCO_48_1450710232-5 79 -0.107808 hybrid +137_1-3 Q0 MARCO_48_602048401-2 80 -0.109824 hybrid +137_1-3 Q0 MARCO_25_216189390-63 81 -0.112008 hybrid +137_1-3 Q0 MARCO_18_783618318-20 82 -0.114608 hybrid +137_1-3 Q0 MARCO_26_397313239-45 83 -0.114609 hybrid +137_1-3 Q0 MARCO_06_1854467530-1 84 -0.115705 hybrid +137_1-3 Q0 MARCO_14_1571463715-3 85 -0.115793 hybrid +137_1-3 Q0 MARCO_03_1155658094-32 86 -0.116217 hybrid +137_1-3 Q0 MARCO_56_88810689-9 87 -0.116353 hybrid +137_1-3 Q0 KILT_7230444-21 88 -0.117553 hybrid +137_1-3 Q0 MARCO_35_313211833-3 89 -0.118977 hybrid +137_1-3 Q0 MARCO_58_1471918465-3 90 -0.119529 hybrid +137_1-3 Q0 MARCO_48_104435441-2 91 -0.120521 hybrid +137_1-3 Q0 MARCO_26_331522881-122 92 -0.124586 hybrid +137_1-3 Q0 MARCO_14_1002277169-2 93 -0.126482 hybrid +137_1-3 Q0 KILT_726659-1 94 -0.134875 hybrid +137_1-3 Q0 MARCO_36_824432747-3 95 -0.134875 hybrid +137_1-3 Q0 MARCO_48_104435441-5 96 -0.136604 hybrid +137_1-3 Q0 MARCO_18_783618318-1 97 -0.138580 hybrid +137_1-3 Q0 MARCO_26_397313239-67 98 -0.141148 hybrid +137_1-3 Q0 MARCO_43_846023892-3 99 -0.145837 hybrid +137_1-3 Q0 MARCO_18_2910246170-1 100 -0.152830 hybrid +137_1-5 Q0 KILT_9912495-4 1 0.500000 hybrid +137_1-5 Q0 MARCO_18_2910246170-6 2 0.447533 hybrid +137_1-5 Q0 MARCO_18_2910246170-4 3 0.183324 hybrid +137_1-5 Q0 MARCO_18_2910246170-5 4 0.128179 hybrid +137_1-5 Q0 KILT_9912495-3 5 0.110391 hybrid +137_1-5 Q0 KILT_9912495-1 6 0.101517 hybrid +137_1-5 Q0 MARCO_18_2910246170-7 7 0.072958 hybrid +137_1-5 Q0 MARCO_43_846023892-2 8 0.068171 hybrid +137_1-5 Q0 MARCO_18_2910246170-9 9 0.060699 hybrid +137_1-5 Q0 MARCO_28_23289269-2 10 0.056878 hybrid +137_1-5 Q0 MARCO_31_719719292-9 11 0.055295 hybrid +137_1-5 Q0 MARCO_49_1738263214-2 12 0.048831 hybrid +137_1-5 Q0 MARCO_48_1450710232-2 13 0.041548 hybrid +137_1-5 Q0 MARCO_58_1153356040-7 14 0.018637 hybrid +137_1-5 Q0 MARCO_13_1026447714-6 15 0.017663 hybrid +137_1-5 Q0 MARCO_31_719719292-1 16 0.009344 hybrid +137_1-5 Q0 KILT_9912495-2 17 -0.026143 hybrid +137_1-5 Q0 MARCO_26_397313239-44 18 -0.037338 hybrid +137_1-5 Q0 MARCO_31_719719292-4 19 -0.038990 hybrid +137_1-5 Q0 MARCO_18_2910049991-2 20 -0.040681 hybrid +137_1-5 Q0 KILT_9912495-5 21 -0.047135 hybrid +137_1-5 Q0 MARCO_15_104587312-71 22 -0.059804 hybrid +137_1-5 Q0 MARCO_18_2910246170-3 23 -0.067800 hybrid +137_1-5 Q0 MARCO_49_1738263214-3 24 -0.071470 hybrid +137_1-5 Q0 MARCO_30_2053025072-11 25 -0.079852 hybrid +137_1-5 Q0 KILT_9912495-6 26 -0.081955 hybrid +137_1-5 Q0 MARCO_18_2910049991-3 27 -0.091879 hybrid +137_1-5 Q0 MARCO_55_1040397202-2 28 -0.097298 hybrid +137_1-5 Q0 KILT_247365-1 29 -0.105796 hybrid +137_1-5 Q0 MARCO_24_446293844-1 30 -0.105908 hybrid +137_1-5 Q0 MARCO_31_719719292-6 31 -0.116789 hybrid +137_1-5 Q0 MARCO_48_104435441-2 32 -0.135158 hybrid +137_1-5 Q0 KILT_247365-2 33 -0.136715 hybrid +137_1-5 Q0 MARCO_24_446293844-3 34 -0.138360 hybrid +137_1-5 Q0 MARCO_35_313211833-3 35 -0.139311 hybrid +137_1-5 Q0 MARCO_55_191290238-2 36 -0.141316 hybrid +137_1-5 Q0 MARCO_58_1471918465-3 37 -0.143983 hybrid +137_1-5 Q0 MARCO_30_1549247804-2 38 -0.144855 hybrid +137_1-5 Q0 MARCO_33_1476721706-2 39 -0.156053 hybrid +137_1-5 Q0 MARCO_04_654519061-15 40 -0.160263 hybrid +137_1-5 Q0 MARCO_50_1340018063-101 41 -0.160664 hybrid +137_1-5 Q0 MARCO_18_783618318-12 42 -0.168308 hybrid +137_1-5 Q0 MARCO_18_2910049991-11 43 -0.179703 hybrid +137_1-5 Q0 MARCO_06_1854467530-3 44 -0.182710 hybrid +137_1-5 Q0 MARCO_52_54527362-2 45 -0.186740 hybrid +137_1-5 Q0 MARCO_18_2910246170-2 46 -0.187881 hybrid +137_1-5 Q0 MARCO_30_1549247804-1 47 -0.189857 hybrid +137_1-5 Q0 MARCO_31_719719292-2 48 -0.190860 hybrid +137_1-5 Q0 MARCO_43_846023892-1 49 -0.193131 hybrid +137_1-5 Q0 MARCO_48_104435441-5 50 -0.194647 hybrid +137_1-5 Q0 MARCO_13_1026447714-1 51 -0.207385 hybrid +137_1-5 Q0 MARCO_14_1002277169-2 52 -0.209888 hybrid +137_1-5 Q0 MARCO_24_426258085-3 53 -0.212908 hybrid +137_1-5 Q0 MARCO_25_365440623-2 54 -0.214269 hybrid +137_1-5 Q0 MARCO_18_2910246170-22 55 -0.215407 hybrid +137_1-5 Q0 MARCO_49_646751923-2 56 -0.218115 hybrid +137_1-5 Q0 MARCO_18_2910049991-8 57 -0.219974 hybrid +137_1-5 Q0 MARCO_18_2910246170-18 58 -0.220473 hybrid +137_1-5 Q0 MARCO_48_602048401-1 59 -0.223398 hybrid +137_1-5 Q0 MARCO_35_313211833-4 60 -0.227099 hybrid +137_1-5 Q0 MARCO_23_1068020442-8 61 -0.227165 hybrid +137_1-5 Q0 MARCO_30_1549247804-3 62 -0.231576 hybrid +137_1-5 Q0 MARCO_14_1571463715-2 63 -0.233799 hybrid +137_1-5 Q0 MARCO_14_1002277169-3 64 -0.233939 hybrid +137_1-5 Q0 MARCO_22_1258365156-9 65 -0.244209 hybrid +137_1-5 Q0 MARCO_03_293655812-300 66 -0.247979 hybrid +137_1-5 Q0 MARCO_43_846023892-3 67 -0.249055 hybrid +137_1-5 Q0 MARCO_52_53056813-1 68 -0.252175 hybrid +137_1-5 Q0 MARCO_31_719719292-7 69 -0.258542 hybrid +137_1-5 Q0 MARCO_56_88810689-10 70 -0.259079 hybrid +137_1-5 Q0 MARCO_48_1564330825-4 71 -0.261194 hybrid +137_1-5 Q0 KILT_247365-3 72 -0.263207 hybrid +137_1-5 Q0 KILT_408292-10 73 -0.266380 hybrid +137_1-5 Q0 MARCO_48_602048401-2 74 -0.269771 hybrid +137_1-5 Q0 MARCO_48_104435441-7 75 -0.271500 hybrid +137_1-5 Q0 MARCO_31_719719292-8 76 -0.271702 hybrid +137_1-5 Q0 MARCO_43_840301554-6 77 -0.272684 hybrid +137_1-5 Q0 MARCO_22_1256385126-3 78 -0.272820 hybrid +137_1-5 Q0 MARCO_14_1571463715-3 79 -0.274116 hybrid +137_1-5 Q0 MARCO_24_426258085-1 80 -0.283146 hybrid +137_1-5 Q0 MARCO_18_2910049991-4 81 -0.284624 hybrid +137_1-5 Q0 MARCO_58_1722082970-1 82 -0.286537 hybrid +137_1-5 Q0 MARCO_31_719719292-3 83 -0.293262 hybrid +137_1-5 Q0 MARCO_48_1450710232-3 84 -0.298678 hybrid +137_1-5 Q0 KILT_9912495-13 85 -0.302998 hybrid +137_1-5 Q0 MARCO_18_2910246170-1 86 -0.306813 hybrid +137_1-5 Q0 MARCO_13_1026447714-7 87 -0.308452 hybrid +137_1-5 Q0 MARCO_26_397313239-45 88 -0.311692 hybrid +137_1-5 Q0 MARCO_04_654519061-7 89 -0.312779 hybrid +137_1-5 Q0 MARCO_18_2910246170-8 90 -0.315802 hybrid +137_1-5 Q0 MARCO_16_2942216326-6 91 -0.316848 hybrid +137_1-5 Q0 MARCO_06_1854467530-2 92 -0.319479 hybrid +137_1-5 Q0 MARCO_18_2910049991-9 93 -0.321144 hybrid +137_1-5 Q0 MARCO_18_783618318-1 94 -0.322995 hybrid +137_1-5 Q0 MARCO_20_666600404-2 95 -0.323854 hybrid +137_1-5 Q0 MARCO_35_313211833-7 96 -0.324031 hybrid +137_1-5 Q0 MARCO_33_1476721706-1 97 -0.324773 hybrid +137_1-5 Q0 MARCO_48_104435441-1 98 -0.324836 hybrid +137_1-5 Q0 MARCO_35_313211833-6 99 -0.326887 hybrid +137_1-5 Q0 MARCO_22_428501062-118 100 -0.328626 hybrid +137_1-7 Q0 MARCO_26_410531635-58 1 0.500000 hybrid +137_1-7 Q0 MARCO_35_313211833-7 2 0.318401 hybrid +137_1-7 Q0 MARCO_42_91248100-252 3 0.201741 hybrid +137_1-7 Q0 MARCO_26_410531635-59 4 0.143790 hybrid +137_1-7 Q0 MARCO_22_1168232426-1 5 0.139396 hybrid +137_1-7 Q0 MARCO_04_654519061-8 6 0.138981 hybrid +137_1-7 Q0 MARCO_51_1645613397-3 7 0.116471 hybrid +137_1-7 Q0 MARCO_31_719719292-5 8 0.099164 hybrid +137_1-7 Q0 MARCO_31_430990620-9 9 0.094806 hybrid +137_1-7 Q0 MARCO_31_719719292-7 10 0.072043 hybrid +137_1-7 Q0 MARCO_18_2910049991-3 11 0.056448 hybrid +137_1-7 Q0 MARCO_00_831084902-5 12 0.044832 hybrid +137_1-7 Q0 MARCO_55_191290238-1 13 0.039358 hybrid +137_1-7 Q0 MARCO_23_1068020442-3 14 0.005790 hybrid +137_1-7 Q0 MARCO_14_1051986264-6 15 -0.004457 hybrid +137_1-7 Q0 MARCO_35_313211833-6 16 -0.011120 hybrid +137_1-7 Q0 MARCO_41_1179750603-35 17 -0.017531 hybrid +137_1-7 Q0 MARCO_48_1450710232-3 18 -0.023744 hybrid +137_1-7 Q0 MARCO_31_430990620-11 19 -0.024933 hybrid +137_1-7 Q0 MARCO_48_104435441-6 20 -0.025707 hybrid +137_1-7 Q0 MARCO_13_1026447714-10 21 -0.037629 hybrid +137_1-7 Q0 MARCO_31_719719292-6 22 -0.041411 hybrid +137_1-7 Q0 MARCO_30_2053025072-11 23 -0.047065 hybrid +137_1-7 Q0 MARCO_50_835581512-26 24 -0.049731 hybrid +137_1-7 Q0 MARCO_00_1049061660-2 25 -0.057853 hybrid +137_1-7 Q0 MARCO_44_189399265-7 26 -0.076528 hybrid +137_1-7 Q0 MARCO_20_161624623-22 27 -0.077050 hybrid +137_1-7 Q0 MARCO_56_971891588-1 28 -0.077212 hybrid +137_1-7 Q0 MARCO_50_1243427727-58 29 -0.079949 hybrid +137_1-7 Q0 MARCO_02_953186328-4 30 -0.083299 hybrid +137_1-7 Q0 MARCO_31_430990620-1 31 -0.089386 hybrid +137_1-7 Q0 MARCO_24_446293844-3 32 -0.115588 hybrid +137_1-7 Q0 MARCO_20_161624623-42 33 -0.119154 hybrid +137_1-7 Q0 MARCO_31_719719292-4 34 -0.120000 hybrid +137_1-7 Q0 MARCO_20_879268420-1 35 -0.133849 hybrid +137_1-7 Q0 KILT_41077350-5 36 -0.136766 hybrid +137_1-7 Q0 MARCO_00_71049447-136 37 -0.139954 hybrid +137_1-7 Q0 MARCO_20_1472173685-1 38 -0.141719 hybrid +137_1-7 Q0 MARCO_04_654519061-2 39 -0.143772 hybrid +137_1-7 Q0 MARCO_40_1276838012-18 40 -0.144150 hybrid +137_1-7 Q0 MARCO_50_521867189-1 41 -0.144798 hybrid +137_1-7 Q0 MARCO_01_1971657126-4 42 -0.145050 hybrid +137_1-7 Q0 MARCO_50_1689089314-21 43 -0.147626 hybrid +137_1-7 Q0 MARCO_14_113848999-4 44 -0.148220 hybrid +137_1-7 Q0 MARCO_13_1026447714-15 45 -0.148364 hybrid +137_1-7 Q0 MARCO_58_1153356040-7 46 -0.149552 hybrid +137_1-7 Q0 MARCO_50_868338397-17 47 -0.151732 hybrid +137_1-7 Q0 MARCO_32_305062564-5 48 -0.154073 hybrid +137_1-7 Q0 MARCO_36_1246328845-3 49 -0.159997 hybrid +137_1-7 Q0 MARCO_48_1450710232-2 50 -0.161492 hybrid +137_1-7 Q0 MARCO_19_2201897351-3 51 -0.162375 hybrid +137_1-7 Q0 MARCO_42_147415041-283 52 -0.166175 hybrid +137_1-7 Q0 MARCO_26_1097183196-4 53 -0.167381 hybrid +137_1-7 Q0 MARCO_24_446293844-4 54 -0.167849 hybrid +137_1-7 Q0 MARCO_20_601772450-9 55 -0.168461 hybrid +137_1-7 Q0 MARCO_35_384353340-3 56 -0.171757 hybrid +137_1-7 Q0 MARCO_23_1070091829-6 57 -0.172496 hybrid +137_1-7 Q0 MARCO_28_1134078954-3 58 -0.176854 hybrid +137_1-7 Q0 MARCO_30_1549247804-4 59 -0.178744 hybrid +137_1-7 Q0 MARCO_20_161624623-55 60 -0.179753 hybrid +137_1-7 Q0 MARCO_13_773302629-2 61 -0.183211 hybrid +137_1-7 Q0 MARCO_20_627078209-7 62 -0.183391 hybrid +137_1-7 Q0 MARCO_57_1382046677-6 63 -0.185894 hybrid +137_1-7 Q0 MARCO_55_1082330569-1 64 -0.188505 hybrid +137_1-7 Q0 KILT_247365-3 65 -0.188919 hybrid +137_1-7 Q0 MARCO_18_2910049991-4 66 -0.188920 hybrid +137_1-7 Q0 MARCO_26_125380672-7 67 -0.192629 hybrid +137_1-7 Q0 MARCO_54_119475336-8 68 -0.193025 hybrid +137_1-7 Q0 MARCO_47_1139450393-13 69 -0.194214 hybrid +137_1-7 Q0 MARCO_38_15353396-1 70 -0.194466 hybrid +137_1-7 Q0 MARCO_21_350262899-9 71 -0.196321 hybrid +137_1-7 Q0 MARCO_50_2339625356-45 72 -0.196879 hybrid +137_1-7 Q0 MARCO_31_430990620-5 73 -0.199364 hybrid +137_1-7 Q0 MARCO_18_2910246170-9 74 -0.200571 hybrid +137_1-7 Q0 MARCO_40_960506865-7 75 -0.200625 hybrid +137_1-7 Q0 MARCO_13_1026447714-9 76 -0.200715 hybrid +137_1-7 Q0 MARCO_06_1077572576-111 77 -0.202822 hybrid +137_1-7 Q0 MARCO_43_846023892-1 78 -0.203794 hybrid +137_1-7 Q0 MARCO_50_2043146978-89 79 -0.205721 hybrid +137_1-7 Q0 MARCO_31_719719292-1 80 -0.212889 hybrid +137_1-7 Q0 MARCO_11_1431052107-58 81 -0.214492 hybrid +137_1-7 Q0 MARCO_09_989969709-4 82 -0.214906 hybrid +137_1-7 Q0 MARCO_48_1994496658-5 83 -0.221425 hybrid +137_1-7 Q0 MARCO_26_397313239-44 84 -0.222343 hybrid +137_1-7 Q0 MARCO_53_84769261-15 85 -0.222559 hybrid +137_1-7 Q0 MARCO_28_1380860546-2 86 -0.223316 hybrid +137_1-7 Q0 MARCO_43_559702346-7 87 -0.223406 hybrid +137_1-7 Q0 MARCO_28_132770916-1 88 -0.223658 hybrid +137_1-7 Q0 MARCO_26_540157041-19 89 -0.224054 hybrid +137_1-7 Q0 MARCO_18_2910049991-12 90 -0.226593 hybrid +137_1-7 Q0 MARCO_32_151745117-4 91 -0.226953 hybrid +137_1-7 Q0 MARCO_34_1190988803-1 92 -0.227116 hybrid +137_1-7 Q0 MARCO_12_1562956367-24 93 -0.228466 hybrid +137_1-7 Q0 MARCO_02_1694928708-5 94 -0.230825 hybrid +137_1-7 Q0 MARCO_48_510602476-1 95 -0.230915 hybrid +137_1-7 Q0 MARCO_42_87964514-15 96 -0.233833 hybrid +137_1-7 Q0 MARCO_50_2028418033-4 97 -0.234121 hybrid +137_1-7 Q0 MARCO_19_2551542100-4 98 -0.235706 hybrid +137_1-7 Q0 MARCO_29_940135912-1 99 -0.237236 hybrid +137_1-7 Q0 MARCO_50_1875266040-19 100 -0.237272 hybrid +137_1-9 Q0 MARCO_25_365440623-3 1 0.500000 hybrid +137_1-9 Q0 MARCO_07_780339649-4 2 0.493514 hybrid +137_1-9 Q0 MARCO_16_1582713770-41 3 0.383033 hybrid +137_1-9 Q0 MARCO_46_1455096042-2 4 0.255876 hybrid +137_1-9 Q0 MARCO_08_756892048-28 5 0.239959 hybrid +137_1-9 Q0 MARCO_46_1413170949-2 6 0.235587 hybrid +137_1-9 Q0 MARCO_55_160398984-1 7 0.199127 hybrid +137_1-9 Q0 MARCO_26_1101159313-8 8 0.195315 hybrid +137_1-9 Q0 MARCO_27_763613530-1 9 0.189805 hybrid +137_1-9 Q0 MARCO_56_1314990292-1 10 0.179001 hybrid +137_1-9 Q0 MARCO_10_378336026-2 11 0.169949 hybrid +137_1-9 Q0 MARCO_07_1209443233-1 12 0.122378 hybrid +137_1-9 Q0 MARCO_07_780339649-1 13 0.099740 hybrid +137_1-9 Q0 MARCO_32_1619281421-15 14 0.088068 hybrid +137_1-9 Q0 MARCO_05_802198248-1 15 0.030308 hybrid +137_1-9 Q0 MARCO_37_1322912604-1 16 0.030037 hybrid +137_1-9 Q0 MARCO_51_866428929-4 17 0.029621 hybrid +137_1-9 Q0 MARCO_20_1703526236-3 18 0.022557 hybrid +137_1-9 Q0 MARCO_07_780339649-12 19 -0.013252 hybrid +137_1-9 Q0 MARCO_17_3317474959-26 20 -0.024617 hybrid +137_1-9 Q0 MARCO_34_16228045-4 21 -0.026188 hybrid +137_1-9 Q0 MARCO_31_166258844-6 22 -0.028158 hybrid +137_1-9 Q0 MARCO_43_65941739-1 23 -0.033795 hybrid +137_1-9 Q0 MARCO_12_1178852231-15 24 -0.041401 hybrid +137_1-9 Q0 MARCO_19_2179459214-2 25 -0.043461 hybrid +137_1-9 Q0 MARCO_05_487478111-12 26 -0.044508 hybrid +137_1-9 Q0 MARCO_31_1353232098-6 27 -0.057156 hybrid +137_1-9 Q0 MARCO_17_4337469976-13 28 -0.058474 hybrid +137_1-9 Q0 MARCO_12_1958255118-6 29 -0.071338 hybrid +137_1-9 Q0 MARCO_20_607257747-3 30 -0.073868 hybrid +137_1-9 Q0 MARCO_49_1302911115-78 31 -0.075674 hybrid +137_1-9 Q0 MARCO_29_1598174442-1 32 -0.076596 hybrid +137_1-9 Q0 MARCO_50_2056350954-2 33 -0.080209 hybrid +137_1-9 Q0 MARCO_52_1812230597-5 34 -0.087057 hybrid +137_1-9 Q0 MARCO_16_1582713770-43 35 -0.092350 hybrid +137_1-9 Q0 MARCO_41_966383574-27 36 -0.092567 hybrid +137_1-9 Q0 MARCO_50_2056350954-1 37 -0.094699 hybrid +137_1-9 Q0 MARCO_47_87374758-5 38 -0.099631 hybrid +137_1-9 Q0 MARCO_00_1152880314-5 39 -0.107382 hybrid +137_1-9 Q0 MARCO_56_1872666572-2 40 -0.110399 hybrid +137_1-9 Q0 MARCO_30_318386281-42 41 -0.115856 hybrid +137_1-9 Q0 MARCO_24_1934570686-4 42 -0.118421 hybrid +137_1-9 Q0 KILT_57069591-4 43 -0.121420 hybrid +137_1-9 Q0 MARCO_11_1458143844-1 44 -0.128160 hybrid +137_1-9 Q0 MARCO_18_189200557-19 45 -0.129388 hybrid +137_1-9 Q0 MARCO_59_222179673-2 46 -0.131881 hybrid +137_1-9 Q0 MARCO_41_1198512642-25 47 -0.133056 hybrid +137_1-9 Q0 MARCO_48_831620250-9 48 -0.134917 hybrid +137_1-9 Q0 MARCO_16_1551471086-38 49 -0.136272 hybrid +137_1-9 Q0 MARCO_27_1554283608-8 50 -0.138241 hybrid +137_1-9 Q0 KILT_1338275-11 51 -0.139271 hybrid +137_1-9 Q0 MARCO_12_1958255118-19 52 -0.140897 hybrid +137_1-9 Q0 MARCO_01_169769478-15 53 -0.141005 hybrid +137_1-9 Q0 MARCO_46_1455096042-4 54 -0.143318 hybrid +137_1-9 Q0 MARCO_25_658786868-2 55 -0.143661 hybrid +137_1-9 Q0 MARCO_34_914238823-4 56 -0.143896 hybrid +137_1-9 Q0 MARCO_29_1367230829-1 57 -0.145793 hybrid +137_1-9 Q0 MARCO_31_775559652-34 58 -0.146678 hybrid +137_1-9 Q0 MARCO_51_1406406054-15 59 -0.148666 hybrid +137_1-9 Q0 MARCO_07_5591286-49 60 -0.148846 hybrid +137_1-9 Q0 MARCO_54_1493800390-9 61 -0.148883 hybrid +137_1-9 Q0 MARCO_15_1720434934-15 62 -0.152225 hybrid +137_1-9 Q0 MARCO_22_435644010-7 63 -0.157555 hybrid +137_1-9 Q0 MARCO_55_611224457-14 64 -0.163228 hybrid +137_1-9 Q0 MARCO_42_895372015-3 65 -0.164673 hybrid +137_1-9 Q0 MARCO_51_775292659-2 66 -0.165703 hybrid +137_1-9 Q0 MARCO_21_1402655479-1 67 -0.167961 hybrid +137_1-9 Q0 MARCO_28_967902583-5 68 -0.169136 hybrid +137_1-9 Q0 MARCO_54_1979297755-9 69 -0.169353 hybrid +137_1-9 Q0 MARCO_54_1973651543-4 70 -0.172605 hybrid +137_1-9 Q0 MARCO_07_789090784-6 71 -0.177682 hybrid +137_1-9 Q0 MARCO_43_1223742962-25 72 -0.179398 hybrid +137_1-9 Q0 MARCO_38_239001346-1 73 -0.179470 hybrid +137_1-9 Q0 MARCO_16_2553170876-18 74 -0.179579 hybrid +137_1-9 Q0 MARCO_19_198648514-32 75 -0.180988 hybrid +137_1-9 Q0 KILT_22766825-8 76 -0.182397 hybrid +137_1-9 Q0 MARCO_07_916232472-1 77 -0.184638 hybrid +137_1-9 Q0 MARCO_24_510097825-13 78 -0.184945 hybrid +137_1-9 Q0 MARCO_08_466252661-3 79 -0.187185 hybrid +137_1-9 Q0 MARCO_18_4084812366-12 80 -0.187221 hybrid +137_1-9 Q0 MARCO_07_726737466-36 81 -0.187799 hybrid +137_1-9 Q0 MARCO_23_372345502-36 82 -0.187799 hybrid +137_1-9 Q0 MARCO_41_1111249879-26 83 -0.190925 hybrid +137_1-9 Q0 MARCO_47_687421850-4 84 -0.191611 hybrid +137_1-9 Q0 MARCO_18_1133607874-27 85 -0.192930 hybrid +137_1-9 Q0 MARCO_14_665614882-11 86 -0.193581 hybrid +137_1-9 Q0 MARCO_25_1186632762-1 87 -0.193780 hybrid +137_1-9 Q0 MARCO_54_2083990323-7 88 -0.195080 hybrid +137_1-9 Q0 MARCO_16_1582713770-37 89 -0.205884 hybrid +137_1-9 Q0 MARCO_24_445673686-2 90 -0.207276 hybrid +137_1-9 Q0 MARCO_07_779961238-47 91 -0.208920 hybrid +137_1-9 Q0 MARCO_12_1039105769-3 92 -0.210076 hybrid +137_1-9 Q0 MARCO_03_1380018427-44 93 -0.210130 hybrid +137_1-9 Q0 MARCO_16_2802168834-59 94 -0.210799 hybrid +137_1-9 Q0 MARCO_53_804410141-87 95 -0.211720 hybrid +137_1-9 Q0 MARCO_06_1493429767-35 96 -0.213075 hybrid +137_1-9 Q0 MARCO_45_958294136-31 97 -0.213419 hybrid +137_1-9 Q0 MARCO_12_1325430108-1 98 -0.213581 hybrid +137_1-9 Q0 MARCO_50_1880495975-35 99 -0.215026 hybrid +137_1-9 Q0 MARCO_16_1685033692-41 100 -0.216309 hybrid +138_1-1 Q0 MARCO_00_1673016414-87 1 0.500000 hybrid +138_1-1 Q0 MARCO_57_139128300-2 2 0.222126 hybrid +138_1-1 Q0 MARCO_55_811430049-1 3 0.213127 hybrid +138_1-1 Q0 MARCO_44_1519625347-3 4 0.151682 hybrid +138_1-1 Q0 MARCO_14_660217654-1 5 0.119169 hybrid +138_1-1 Q0 MARCO_00_1673016414-78 6 0.078806 hybrid +138_1-1 Q0 MARCO_47_715185503-3 7 0.029235 hybrid +138_1-1 Q0 MARCO_47_715345133-3 8 0.028939 hybrid +138_1-1 Q0 MARCO_14_1441937776-4 9 -0.018422 hybrid +138_1-1 Q0 MARCO_44_1519625347-2 10 -0.028026 hybrid +138_1-1 Q0 MARCO_25_222988143-1 11 -0.037147 hybrid +138_1-1 Q0 MARCO_00_995991042-5 12 -0.053194 hybrid +138_1-1 Q0 MARCO_25_1049627738-10 13 -0.055699 hybrid +138_1-1 Q0 MARCO_46_1324369355-1 14 -0.060119 hybrid +138_1-1 Q0 MARCO_50_468797757-20 15 -0.063155 hybrid +138_1-1 Q0 MARCO_32_652045395-19 16 -0.067660 hybrid +138_1-1 Q0 MARCO_54_1859241767-3 17 -0.068882 hybrid +138_1-1 Q0 MARCO_30_595028831-18 18 -0.068882 hybrid +138_1-1 Q0 MARCO_50_502499950-13 19 -0.070228 hybrid +138_1-1 Q0 MARCO_47_715185503-2 20 -0.079300 hybrid +138_1-1 Q0 MARCO_00_1163035772-1 21 -0.084855 hybrid +138_1-1 Q0 MARCO_22_1579067158-1 22 -0.085830 hybrid +138_1-1 Q0 MARCO_50_468941601-23 23 -0.092989 hybrid +138_1-1 Q0 MARCO_49_1770518418-1 24 -0.096791 hybrid +138_1-1 Q0 MARCO_32_652045395-51 25 -0.100407 hybrid +138_1-1 Q0 MARCO_47_359906930-3 26 -0.104308 hybrid +138_1-1 Q0 MARCO_32_652045395-30 27 -0.105641 hybrid +138_1-1 Q0 MARCO_00_1673016414-70 28 -0.107011 hybrid +138_1-1 Q0 MARCO_16_1124712427-2 29 -0.112627 hybrid +138_1-1 Q0 MARCO_29_778684157-5 30 -0.113491 hybrid +138_1-1 Q0 MARCO_14_660217654-6 31 -0.114948 hybrid +138_1-1 Q0 MARCO_23_229332365-7 32 -0.115935 hybrid +138_1-1 Q0 MARCO_06_1779944939-1 33 -0.116478 hybrid +138_1-1 Q0 MARCO_27_328268220-9 34 -0.119219 hybrid +138_1-1 Q0 MARCO_01_1119457269-1 35 -0.123576 hybrid +138_1-1 Q0 MARCO_47_715300561-12 36 -0.123724 hybrid +138_1-1 Q0 MARCO_07_934032591-11 37 -0.125773 hybrid +138_1-1 Q0 MARCO_45_979353361-14 38 -0.125773 hybrid +138_1-1 Q0 MARCO_39_1148891765-8 39 -0.127242 hybrid +138_1-1 Q0 MARCO_45_1000577752-5 40 -0.128414 hybrid +138_1-1 Q0 MARCO_02_468660746-42 41 -0.133450 hybrid +138_1-1 Q0 MARCO_25_1247145042-12 42 -0.133623 hybrid +138_1-1 Q0 MARCO_52_376669422-1 43 -0.134302 hybrid +138_1-1 Q0 MARCO_50_502499950-30 44 -0.140252 hybrid +138_1-1 Q0 MARCO_47_715203808-6 45 -0.144189 hybrid +138_1-1 Q0 MARCO_12_1178311517-6 46 -0.145078 hybrid +138_1-1 Q0 MARCO_14_660217654-2 47 -0.145584 hybrid +138_1-1 Q0 MARCO_28_771196057-2 48 -0.153175 hybrid +138_1-1 Q0 MARCO_06_843396173-107 49 -0.157742 hybrid +138_1-1 Q0 MARCO_49_126413834-1 50 -0.158039 hybrid +138_1-1 Q0 MARCO_59_986127279-2 51 -0.160174 hybrid +138_1-1 Q0 MARCO_26_729899077-2 52 -0.161063 hybrid +138_1-1 Q0 MARCO_47_715279555-6 53 -0.165753 hybrid +138_1-1 Q0 MARCO_54_534380097-3 54 -0.168358 hybrid +138_1-1 Q0 MARCO_49_1770518418-3 55 -0.169074 hybrid +138_1-1 Q0 MARCO_09_418969214-1 56 -0.170666 hybrid +138_1-1 Q0 MARCO_47_715203808-1 57 -0.175184 hybrid +138_1-1 Q0 MARCO_29_778684157-8 58 -0.177936 hybrid +138_1-1 Q0 MARCO_30_1654842567-1 59 -0.183602 hybrid +138_1-1 Q0 MARCO_37_519897006-5 60 -0.184194 hybrid +138_1-1 Q0 MARCO_19_1856090515-2 61 -0.185527 hybrid +138_1-1 Q0 MARCO_50_457149359-43 62 -0.186478 hybrid +138_1-1 Q0 MARCO_08_73885324-1 63 -0.187502 hybrid +138_1-1 Q0 MARCO_38_253332284-1 64 -0.188391 hybrid +138_1-1 Q0 MARCO_08_427828791-2 65 -0.193699 hybrid +138_1-1 Q0 MARCO_45_1504837310-1 66 -0.195563 hybrid +138_1-1 Q0 MARCO_33_1175173152-6 67 -0.198735 hybrid +138_1-1 Q0 MARCO_43_1632563219-2 68 -0.199031 hybrid +138_1-1 Q0 MARCO_52_580112520-3 69 -0.200006 hybrid +138_1-1 Q0 MARCO_22_886900178-2 70 -0.201203 hybrid +138_1-1 Q0 MARCO_42_1014894361-19 71 -0.201734 hybrid +138_1-1 Q0 MARCO_36_1032378502-1 72 -0.203746 hybrid +138_1-1 Q0 MARCO_47_715185503-7 73 -0.203931 hybrid +138_1-1 Q0 MARCO_19_1856090515-6 74 -0.204190 hybrid +138_1-1 Q0 MARCO_36_1032393094-2 75 -0.205770 hybrid +138_1-1 Q0 MARCO_23_1152368243-1 76 -0.206672 hybrid +138_1-1 Q0 MARCO_42_1014841049-4 77 -0.207462 hybrid +138_1-1 Q0 MARCO_13_242102348-2 78 -0.207857 hybrid +138_1-1 Q0 MARCO_52_376634696-3 79 -0.209165 hybrid +138_1-1 Q0 MARCO_04_1036773082-99 80 -0.210066 hybrid +138_1-1 Q0 MARCO_34_502963758-15 81 -0.211091 hybrid +138_1-1 Q0 MARCO_58_584469515-16 82 -0.211300 hybrid +138_1-1 Q0 MARCO_24_1259590382-1 83 -0.211671 hybrid +138_1-1 Q0 MARCO_04_1466701468-2 84 -0.212313 hybrid +138_1-1 Q0 MARCO_32_126767583-5 85 -0.214695 hybrid +138_1-1 Q0 MARCO_26_746487892-2 86 -0.215238 hybrid +138_1-1 Q0 MARCO_37_1247761256-2 87 -0.215324 hybrid +138_1-1 Q0 MARCO_41_1546042480-32 88 -0.215596 hybrid +138_1-1 Q0 MARCO_49_1760479427-4 89 -0.216287 hybrid +138_1-1 Q0 MARCO_33_1279925637-144 90 -0.216620 hybrid +138_1-1 Q0 MARCO_41_1701121204-2 91 -0.216682 hybrid +138_1-1 Q0 MARCO_27_1724284681-5 92 -0.217176 hybrid +138_1-1 Q0 MARCO_45_979353361-9 93 -0.217941 hybrid +138_1-1 Q0 MARCO_50_502499950-14 94 -0.218558 hybrid +138_1-1 Q0 MARCO_42_1014841049-12 95 -0.221410 hybrid +138_1-1 Q0 MARCO_47_359906930-1 96 -0.225001 hybrid +138_1-1 Q0 MARCO_42_281409169-13 97 -0.225261 hybrid +138_1-1 Q0 MARCO_42_1015125020-3 98 -0.227680 hybrid +138_1-1 Q0 MARCO_12_1527877968-6 99 -0.228445 hybrid +138_1-1 Q0 MARCO_46_1312503915-1 100 -0.230247 hybrid +138_1-11 Q0 MARCO_23_941472041-2 1 0.500000 hybrid +138_1-11 Q0 MARCO_19_1821842101-4 2 -0.069517 hybrid +138_1-11 Q0 MARCO_31_1355054571-1 3 -0.098749 hybrid +138_1-11 Q0 MARCO_50_1853099427-17 4 -0.149924 hybrid +138_1-11 Q0 MARCO_50_1319935467-21 5 -0.154354 hybrid +138_1-11 Q0 MARCO_50_495056206-11 6 -0.171080 hybrid +138_1-11 Q0 MARCO_14_230457370-5 7 -0.191898 hybrid +138_1-11 Q0 MARCO_25_1475816447-2 8 -0.201805 hybrid +138_1-11 Q0 MARCO_52_1362768233-5 9 -0.206936 hybrid +138_1-11 Q0 MARCO_30_96486630-1 10 -0.207657 hybrid +138_1-11 Q0 MARCO_23_941472041-1 11 -0.207960 hybrid +138_1-11 Q0 MARCO_43_1633302736-2 12 -0.209447 hybrid +138_1-11 Q0 MARCO_50_1044614616-31 13 -0.210428 hybrid +138_1-11 Q0 MARCO_44_576246312-4 14 -0.213185 hybrid +138_1-11 Q0 MARCO_41_1570571245-48 15 -0.216937 hybrid +138_1-11 Q0 MARCO_41_1499767598-9 16 -0.222760 hybrid +138_1-11 Q0 MARCO_06_133052613-12 17 -0.230358 hybrid +138_1-11 Q0 MARCO_23_941472041-3 18 -0.231354 hybrid +138_1-11 Q0 MARCO_46_746555502-1 19 -0.232090 hybrid +138_1-11 Q0 MARCO_42_252696709-7 20 -0.239068 hybrid +138_1-11 Q0 MARCO_20_1596948690-1 21 -0.246515 hybrid +138_1-11 Q0 MARCO_12_558354470-2 22 -0.248593 hybrid +138_1-11 Q0 MARCO_44_270628848-3 23 -0.249827 hybrid +138_1-11 Q0 MARCO_02_52071629-2 24 -0.251941 hybrid +138_1-11 Q0 MARCO_37_364064106-3 25 -0.253586 hybrid +138_1-11 Q0 MARCO_50_801760395-3 26 -0.255953 hybrid +138_1-11 Q0 MARCO_23_244603153-6 27 -0.256148 hybrid +138_1-11 Q0 MARCO_47_650283778-12 28 -0.257735 hybrid +138_1-11 Q0 MARCO_31_887607606-16 29 -0.261769 hybrid +138_1-11 Q0 MARCO_04_1336608344-10 30 -0.262635 hybrid +138_1-11 Q0 MARCO_27_1421491646-79 31 -0.266524 hybrid +138_1-11 Q0 MARCO_48_558452914-4 32 -0.268581 hybrid +138_1-11 Q0 MARCO_30_275672146-4 33 -0.271611 hybrid +138_1-11 Q0 MARCO_28_676672420-9 34 -0.274353 hybrid +138_1-11 Q0 MARCO_50_1732036884-3 35 -0.274642 hybrid +138_1-11 Q0 MARCO_10_1361551409-197 36 -0.275833 hybrid +138_1-11 Q0 MARCO_13_577696256-5 37 -0.280415 hybrid +138_1-11 Q0 MARCO_41_1524863889-48 38 -0.280920 hybrid +138_1-11 Q0 MARCO_50_1650363199-21 39 -0.281728 hybrid +138_1-11 Q0 MARCO_47_829365541-1 40 -0.282377 hybrid +138_1-11 Q0 MARCO_50_510424855-45 41 -0.283287 hybrid +138_1-11 Q0 MARCO_50_1022404584-5 42 -0.284463 hybrid +138_1-11 Q0 MARCO_45_1634336929-19 43 -0.284968 hybrid +138_1-11 Q0 MARCO_54_1570076030-2 44 -0.287183 hybrid +138_1-11 Q0 MARCO_49_885664231-2 45 -0.288092 hybrid +138_1-11 Q0 MARCO_44_216880444-3 46 -0.289276 hybrid +138_1-11 Q0 MARCO_40_1452300976-13 47 -0.291845 hybrid +138_1-11 Q0 MARCO_29_90396270-3 48 -0.292537 hybrid +138_1-11 Q0 MARCO_23_1061048013-5 49 -0.293952 hybrid +138_1-11 Q0 MARCO_50_1550928103-142 50 -0.295705 hybrid +138_1-11 Q0 MARCO_23_422523321-3 51 -0.296499 hybrid +138_1-11 Q0 MARCO_27_331944009-8 52 -0.297422 hybrid +138_1-11 Q0 MARCO_50_1512642266-18 53 -0.297892 hybrid +138_1-11 Q0 MARCO_29_90396270-1 54 -0.298996 hybrid +138_1-11 Q0 MARCO_50_2434544184-2 55 -0.299097 hybrid +138_1-11 Q0 MARCO_53_1403196903-2 56 -0.299602 hybrid +138_1-11 Q0 MARCO_32_653517888-44 57 -0.299883 hybrid +138_1-11 Q0 MARCO_48_558153575-2 58 -0.300958 hybrid +138_1-11 Q0 MARCO_50_256625566-13 59 -0.302416 hybrid +138_1-11 Q0 MARCO_24_831070345-18 60 -0.303845 hybrid +138_1-11 Q0 MARCO_24_941509368-8 61 -0.303946 hybrid +138_1-11 Q0 MARCO_27_203430866-2 62 -0.303982 hybrid +138_1-11 Q0 MARCO_50_1550928103-147 63 -0.304869 hybrid +138_1-11 Q0 MARCO_09_577095316-5 64 -0.306753 hybrid +138_1-11 Q0 MARCO_28_654332491-2 65 -0.307373 hybrid +138_1-11 Q0 MARCO_03_322600705-2 66 -0.307965 hybrid +138_1-11 Q0 MARCO_54_403702625-6 67 -0.309682 hybrid +138_1-11 Q0 MARCO_42_281291918-55 68 -0.310563 hybrid +138_1-11 Q0 MARCO_30_1764169124-5 69 -0.310750 hybrid +138_1-11 Q0 MARCO_21_285713661-7 70 -0.311667 hybrid +138_1-11 Q0 MARCO_50_494919994-41 71 -0.318262 hybrid +138_1-11 Q0 MARCO_00_1335156549-66 72 -0.319936 hybrid +138_1-11 Q0 MARCO_48_110242916-2 73 -0.320253 hybrid +138_1-11 Q0 MARCO_29_1653882681-4 74 -0.321935 hybrid +138_1-11 Q0 MARCO_50_2489393085-24 75 -0.322829 hybrid +138_1-11 Q0 MARCO_24_388031841-1 76 -0.323710 hybrid +138_1-11 Q0 MARCO_24_1258733989-4 77 -0.325420 hybrid +138_1-11 Q0 MARCO_10_316666294-4 78 -0.325470 hybrid +138_1-11 Q0 MARCO_28_654158755-12 79 -0.326185 hybrid +138_1-11 Q0 MARCO_23_488188787-58 80 -0.327455 hybrid +138_1-11 Q0 MARCO_54_1737611667-4 81 -0.327693 hybrid +138_1-11 Q0 MARCO_09_690622552-11 82 -0.328422 hybrid +138_1-11 Q0 MARCO_50_1550928103-164 83 -0.328667 hybrid +138_1-11 Q0 MARCO_00_1101200113-2 84 -0.328999 hybrid +138_1-11 Q0 MARCO_14_1778194735-87 85 -0.330312 hybrid +138_1-11 Q0 MARCO_50_1494362857-15 86 -0.330514 hybrid +138_1-11 Q0 MARCO_41_1025965024-39 87 -0.333184 hybrid +138_1-11 Q0 MARCO_15_254600904-1 88 -0.334505 hybrid +138_1-11 Q0 MARCO_02_51954746-2 89 -0.335558 hybrid +138_1-11 Q0 MARCO_12_279712772-3 90 -0.335666 hybrid +138_1-11 Q0 MARCO_59_849019931-1 91 -0.336410 hybrid +138_1-11 Q0 MARCO_25_1475802756-5 92 -0.337052 hybrid +138_1-11 Q0 KILT_15325852-20 93 -0.337333 hybrid +138_1-11 Q0 MARCO_33_231460105-4 94 -0.337535 hybrid +138_1-11 Q0 MARCO_24_1539046591-3 95 -0.339347 hybrid +138_1-11 Q0 MARCO_13_89373221-7 96 -0.339729 hybrid +138_1-11 Q0 MARCO_08_155031832-6 97 -0.340458 hybrid +138_1-11 Q0 MARCO_33_1055940873-7 98 -0.341215 hybrid +138_1-11 Q0 MARCO_59_800359685-1 99 -0.341547 hybrid +138_1-11 Q0 MARCO_22_841597254-1 100 -0.342817 hybrid +138_1-3 Q0 MARCO_47_578522580-4 1 0.500000 hybrid +138_1-3 Q0 MARCO_34_510953277-6 2 0.292552 hybrid +138_1-3 Q0 MARCO_57_2002673045-21 3 0.076257 hybrid +138_1-3 Q0 MARCO_40_174176965-1 4 0.073887 hybrid +138_1-3 Q0 MARCO_51_197971232-22 5 0.061086 hybrid +138_1-3 Q0 MARCO_02_397048557-9 6 0.044405 hybrid +138_1-3 Q0 MARCO_02_397048557-1 7 -0.001139 hybrid +138_1-3 Q0 MARCO_54_1404318251-6 8 -0.044857 hybrid +138_1-3 Q0 MARCO_40_406786154-2 9 -0.053160 hybrid +138_1-3 Q0 MARCO_54_1404294949-6 10 -0.057221 hybrid +138_1-3 Q0 MARCO_25_1447541151-1 11 -0.084454 hybrid +138_1-3 Q0 KILT_2742821-9 12 -0.090885 hybrid +138_1-3 Q0 MARCO_35_1406219944-4 13 -0.099112 hybrid +138_1-3 Q0 MARCO_26_327442900-18 14 -0.113317 hybrid +138_1-3 Q0 MARCO_26_363063723-42 15 -0.122707 hybrid +138_1-3 Q0 MARCO_16_2719689513-2 16 -0.124549 hybrid +138_1-3 Q0 MARCO_15_129203638-3 17 -0.147389 hybrid +138_1-3 Q0 MARCO_21_1345822618-2 18 -0.149789 hybrid +138_1-3 Q0 MARCO_47_420185202-11 19 -0.156341 hybrid +138_1-3 Q0 KILT_11304335-1 20 -0.158228 hybrid +138_1-3 Q0 MARCO_54_1982969412-9 21 -0.161654 hybrid +138_1-3 Q0 MARCO_08_1677790810-2 22 -0.163119 hybrid +138_1-3 Q0 MARCO_58_597204381-21 23 -0.164206 hybrid +138_1-3 Q0 MARCO_58_1338640177-6 24 -0.166515 hybrid +138_1-3 Q0 MARCO_58_305858656-14 25 -0.176026 hybrid +138_1-3 Q0 MARCO_00_656949820-5 26 -0.177656 hybrid +138_1-3 Q0 MARCO_45_415507496-2 27 -0.186034 hybrid +138_1-3 Q0 MARCO_05_489398312-11 28 -0.187816 hybrid +138_1-3 Q0 MARCO_27_1429024811-3 29 -0.206082 hybrid +138_1-3 Q0 MARCO_32_996398628-5 30 -0.206082 hybrid +138_1-3 Q0 MARCO_48_558860364-2 31 -0.206082 hybrid +138_1-3 Q0 MARCO_30_269186772-5 32 -0.206882 hybrid +138_1-3 Q0 MARCO_49_1770441156-7 33 -0.207621 hybrid +138_1-3 Q0 MARCO_02_1341044902-8 34 -0.208542 hybrid +138_1-3 Q0 MARCO_08_1453154721-5 35 -0.208844 hybrid +138_1-3 Q0 MARCO_38_370708947-4 36 -0.209524 hybrid +138_1-3 Q0 MARCO_27_1233260635-6 37 -0.211305 hybrid +138_1-3 Q0 MARCO_02_1226784544-1 38 -0.212135 hybrid +138_1-3 Q0 MARCO_31_902935712-1 39 -0.213841 hybrid +138_1-3 Q0 MARCO_02_422342405-5 40 -0.216332 hybrid +138_1-3 Q0 MARCO_24_1080576358-1 41 -0.216694 hybrid +138_1-3 Q0 MARCO_38_1647653636-6 42 -0.223065 hybrid +138_1-3 Q0 MARCO_32_571867541-6 43 -0.223321 hybrid +138_1-3 Q0 MARCO_33_1459687374-2 44 -0.223321 hybrid +138_1-3 Q0 MARCO_47_814659773-6 45 -0.225646 hybrid +138_1-3 Q0 MARCO_35_292915273-13 46 -0.228710 hybrid +138_1-3 Q0 MARCO_22_813393447-37 47 -0.233375 hybrid +138_1-3 Q0 MARCO_10_1147627542-12 48 -0.238251 hybrid +138_1-3 Q0 MARCO_26_1459997121-4 49 -0.238447 hybrid +138_1-3 Q0 MARCO_52_1008761703-6 50 -0.238447 hybrid +138_1-3 Q0 MARCO_01_1348566523-6 51 -0.238885 hybrid +138_1-3 Q0 MARCO_24_1494002255-5 52 -0.240138 hybrid +138_1-3 Q0 MARCO_04_649999127-2 53 -0.241935 hybrid +138_1-3 Q0 MARCO_13_678052899-3 54 -0.245105 hybrid +138_1-3 Q0 MARCO_38_916837490-2 55 -0.247475 hybrid +138_1-3 Q0 MARCO_19_1718485456-1 56 -0.252849 hybrid +138_1-3 Q0 MARCO_49_223963069-6 57 -0.254117 hybrid +138_1-3 Q0 MARCO_59_892259601-3 58 -0.254645 hybrid +138_1-3 Q0 MARCO_44_255067459-2 59 -0.259234 hybrid +138_1-3 Q0 MARCO_11_79972850-2 60 -0.262480 hybrid +138_1-3 Q0 MARCO_20_170283902-1 61 -0.263884 hybrid +138_1-3 Q0 MARCO_41_1784040995-1 62 -0.264805 hybrid +138_1-3 Q0 MARCO_12_1943900424-1 63 -0.265695 hybrid +138_1-3 Q0 MARCO_41_1905260428-13 64 -0.269001 hybrid +138_1-3 Q0 MARCO_45_1188703714-5 65 -0.269002 hybrid +138_1-3 Q0 KILT_47715862-1 66 -0.269469 hybrid +138_1-3 Q0 MARCO_04_920394635-1 67 -0.269892 hybrid +138_1-3 Q0 MARCO_31_887761133-8 68 -0.270134 hybrid +138_1-3 Q0 MARCO_32_603456343-2 69 -0.270224 hybrid +138_1-3 Q0 MARCO_46_371709758-25 70 -0.270436 hybrid +138_1-3 Q0 KILT_57420108-2 71 -0.271009 hybrid +138_1-3 Q0 MARCO_28_1018838576-4 72 -0.272942 hybrid +138_1-3 Q0 MARCO_21_45463698-5 73 -0.273047 hybrid +138_1-3 Q0 MARCO_04_1288002309-10 74 -0.273847 hybrid +138_1-3 Q0 MARCO_36_1497982703-13 75 -0.273847 hybrid +138_1-3 Q0 MARCO_00_1139370862-5 76 -0.274904 hybrid +138_1-3 Q0 MARCO_08_179307422-1 77 -0.275236 hybrid +138_1-3 Q0 MARCO_38_1389650230-3 78 -0.276112 hybrid +138_1-3 Q0 MARCO_57_2002163695-7 79 -0.276232 hybrid +138_1-3 Q0 MARCO_39_800684959-1 80 -0.277138 hybrid +138_1-3 Q0 MARCO_13_468626806-3 81 -0.277500 hybrid +138_1-3 Q0 MARCO_47_578522580-3 82 -0.280142 hybrid +138_1-3 Q0 MARCO_18_3524566253-3 83 -0.280474 hybrid +138_1-3 Q0 MARCO_54_110696050-3 84 -0.280625 hybrid +138_1-3 Q0 MARCO_53_495028382-2 85 -0.280626 hybrid +138_1-3 Q0 MARCO_44_789349167-4 86 -0.286060 hybrid +138_1-3 Q0 MARCO_24_1024709252-8 87 -0.288113 hybrid +138_1-3 Q0 MARCO_43_332323131-3 88 -0.288989 hybrid +138_1-3 Q0 MARCO_32_652116249-9 89 -0.289124 hybrid +138_1-3 Q0 MARCO_22_1454349166-6 90 -0.289441 hybrid +138_1-3 Q0 MARCO_34_1663145409-1 91 -0.290755 hybrid +138_1-3 Q0 MARCO_57_2325956373-11 92 -0.291072 hybrid +138_1-3 Q0 MARCO_27_462255913-70 93 -0.292808 hybrid +138_1-3 Q0 MARCO_03_687056234-1 94 -0.294921 hybrid +138_1-3 Q0 MARCO_09_974399000-1 95 -0.295042 hybrid +138_1-3 Q0 MARCO_16_3892415713-37 96 -0.295268 hybrid +138_1-3 Q0 MARCO_47_1192460568-1 97 -0.295495 hybrid +138_1-3 Q0 MARCO_58_659896637-3 98 -0.296234 hybrid +138_1-3 Q0 MARCO_49_224872492-4 99 -0.296340 hybrid +138_1-3 Q0 MARCO_20_1374115269-4 100 -0.297986 hybrid +138_1-5 Q0 MARCO_27_202004899-3 1 0.500000 hybrid +138_1-5 Q0 MARCO_25_1475802756-4 2 0.437676 hybrid +138_1-5 Q0 MARCO_27_202004899-2 3 0.419211 hybrid +138_1-5 Q0 MARCO_27_202004899-1 4 0.410895 hybrid +138_1-5 Q0 MARCO_40_47473416-4 5 0.365906 hybrid +138_1-5 Q0 MARCO_58_814882529-10 6 0.356503 hybrid +138_1-5 Q0 MARCO_47_547910745-8 7 0.348145 hybrid +138_1-5 Q0 MARCO_11_8761336-15 8 0.268315 hybrid +138_1-5 Q0 MARCO_56_1626970177-5 9 0.250341 hybrid +138_1-5 Q0 MARCO_27_202004899-4 10 0.196311 hybrid +138_1-5 Q0 MARCO_27_204237318-2 11 0.191045 hybrid +138_1-5 Q0 MARCO_15_632998547-2 12 0.181258 hybrid +138_1-5 Q0 MARCO_27_204237318-4 13 0.167591 hybrid +138_1-5 Q0 MARCO_27_202004899-5 14 0.164648 hybrid +138_1-5 Q0 MARCO_12_207364064-1 15 0.159979 hybrid +138_1-5 Q0 MARCO_50_256625566-15 16 0.149659 hybrid +138_1-5 Q0 MARCO_27_201971989-1 17 0.145416 hybrid +138_1-5 Q0 MARCO_30_290082041-9 18 0.143283 hybrid +138_1-5 Q0 MARCO_35_105736969-9 19 0.135480 hybrid +138_1-5 Q0 MARCO_50_558536627-1 20 0.124883 hybrid +138_1-5 Q0 MARCO_26_1638408369-19 21 0.111279 hybrid +138_1-5 Q0 MARCO_31_827484290-10 22 0.105373 hybrid +138_1-5 Q0 MARCO_27_509840862-3 23 0.101919 hybrid +138_1-5 Q0 MARCO_47_547910745-5 24 0.101045 hybrid +138_1-5 Q0 MARCO_59_892401454-1 25 0.096802 hybrid +138_1-5 Q0 MARCO_27_202227482-6 26 0.094200 hybrid +138_1-5 Q0 MARCO_47_576529639-1 27 0.092132 hybrid +138_1-5 Q0 MARCO_13_775499855-1 28 0.085928 hybrid +138_1-5 Q0 MARCO_47_565313582-3 29 0.078529 hybrid +138_1-5 Q0 MARCO_27_509840862-2 30 0.074840 hybrid +138_1-5 Q0 MARCO_47_547910745-2 31 0.067292 hybrid +138_1-5 Q0 MARCO_48_1447653557-4 32 0.063156 hybrid +138_1-5 Q0 MARCO_14_439750974-1 33 0.060917 hybrid +138_1-5 Q0 MARCO_40_47441614-5 34 0.056439 hybrid +138_1-5 Q0 MARCO_11_8761336-14 35 0.055714 hybrid +138_1-5 Q0 MARCO_57_950588460-15 36 0.045842 hybrid +138_1-5 Q0 MARCO_02_232304392-1 37 0.045394 hybrid +138_1-5 Q0 MARCO_27_918796134-1 38 0.038358 hybrid +138_1-5 Q0 MARCO_15_129203638-8 39 0.038145 hybrid +138_1-5 Q0 MARCO_30_268424526-6 40 0.026951 hybrid +138_1-5 Q0 MARCO_27_204428291-3 41 0.021876 hybrid +138_1-5 Q0 MARCO_58_814882529-15 42 0.021834 hybrid +138_1-5 Q0 MARCO_47_547910745-6 43 0.021258 hybrid +138_1-5 Q0 MARCO_50_558829949-1 44 0.018401 hybrid +138_1-5 Q0 MARCO_27_202227482-4 45 0.001834 hybrid +138_1-5 Q0 MARCO_59_892467898-1 46 0.001791 hybrid +138_1-5 Q0 MARCO_27_204254024-2 47 -0.000043 hybrid +138_1-5 Q0 MARCO_47_576529639-2 48 -0.005075 hybrid +138_1-5 Q0 MARCO_58_814882529-8 49 -0.007057 hybrid +138_1-5 Q0 MARCO_27_326374718-4 50 -0.007420 hybrid +138_1-5 Q0 MARCO_36_816020769-13 51 -0.010832 hybrid +138_1-5 Q0 MARCO_24_1434238204-23 52 -0.013326 hybrid +138_1-5 Q0 MARCO_19_1636059623-1 53 -0.013795 hybrid +138_1-5 Q0 MARCO_46_1219981039-5 54 -0.018443 hybrid +138_1-5 Q0 MARCO_29_1011671003-4 55 -0.021962 hybrid +138_1-5 Q0 MARCO_13_577696256-1 56 -0.023220 hybrid +138_1-5 Q0 MARCO_56_1626970177-1 57 -0.025842 hybrid +138_1-5 Q0 MARCO_14_440808977-1 58 -0.027036 hybrid +138_1-5 Q0 MARCO_36_1317353025-6 59 -0.028849 hybrid +138_1-5 Q0 MARCO_02_453969941-8 60 -0.033156 hybrid +138_1-5 Q0 MARCO_25_1475816447-2 61 -0.033753 hybrid +138_1-5 Q0 MARCO_31_781086006-5 62 -0.035565 hybrid +138_1-5 Q0 MARCO_09_218343702-1 63 -0.037292 hybrid +138_1-5 Q0 MARCO_27_202227482-2 64 -0.056055 hybrid +138_1-5 Q0 MARCO_43_1672791900-3 65 -0.057783 hybrid +138_1-5 Q0 MARCO_14_89943703-5 66 -0.059829 hybrid +138_1-5 Q0 MARCO_41_1780551787-5 67 -0.060299 hybrid +138_1-5 Q0 MARCO_14_1585534893-2 68 -0.063006 hybrid +138_1-5 Q0 MARCO_14_230387492-6 69 -0.063625 hybrid +138_1-5 Q0 MARCO_29_1011577571-4 70 -0.064200 hybrid +138_1-5 Q0 MARCO_47_566640258-1 71 -0.064392 hybrid +138_1-5 Q0 MARCO_33_877218628-7 72 -0.067868 hybrid +138_1-5 Q0 MARCO_27_204237318-1 73 -0.069829 hybrid +138_1-5 Q0 MARCO_59_892190934-1 74 -0.075501 hybrid +138_1-5 Q0 MARCO_34_1645056806-6 75 -0.077015 hybrid +138_1-5 Q0 MARCO_56_1794468946-3 76 -0.077271 hybrid +138_1-5 Q0 MARCO_11_8761336-16 77 -0.077505 hybrid +138_1-5 Q0 MARCO_45_1129641509-26 78 -0.078934 hybrid +138_1-5 Q0 MARCO_30_483703824-1 79 -0.082665 hybrid +138_1-5 Q0 MARCO_25_1475802756-1 80 -0.084286 hybrid +138_1-5 Q0 MARCO_47_1294875454-1 81 -0.086994 hybrid +138_1-5 Q0 MARCO_40_47473416-6 82 -0.091514 hybrid +138_1-5 Q0 MARCO_58_814882529-7 83 -0.092154 hybrid +138_1-5 Q0 MARCO_47_561956846-18 84 -0.093049 hybrid +138_1-5 Q0 MARCO_47_577931634-4 85 -0.093689 hybrid +138_1-5 Q0 MARCO_07_630693074-1 86 -0.093838 hybrid +138_1-5 Q0 MARCO_50_467679049-7 87 -0.097889 hybrid +138_1-5 Q0 MARCO_29_1011577571-7 88 -0.100128 hybrid +138_1-5 Q0 MARCO_02_1226816837-6 89 -0.101237 hybrid +138_1-5 Q0 MARCO_27_202110446-1 90 -0.101621 hybrid +138_1-5 Q0 MARCO_26_1127428648-4 91 -0.101940 hybrid +138_1-5 Q0 MARCO_47_547910745-3 92 -0.102260 hybrid +138_1-5 Q0 MARCO_27_202004899-7 93 -0.105949 hybrid +138_1-5 Q0 MARCO_47_565341189-5 94 -0.108060 hybrid +138_1-5 Q0 MARCO_47_547910745-14 95 -0.110128 hybrid +138_1-5 Q0 MARCO_07_630683441-1 96 -0.110299 hybrid +138_1-5 Q0 MARCO_07_630688436-1 97 -0.110299 hybrid +138_1-5 Q0 MARCO_47_561956846-4 98 -0.111706 hybrid +138_1-5 Q0 MARCO_47_1294883827-1 99 -0.112175 hybrid +138_1-5 Q0 MARCO_47_593842997-1 100 -0.113220 hybrid +138_1-7 Q0 MARCO_50_1441171657-12 1 0.500000 hybrid +138_1-7 Q0 MARCO_50_1181836085-5 2 0.391253 hybrid +138_1-7 Q0 MARCO_31_1317992653-14 3 0.322803 hybrid +138_1-7 Q0 MARCO_11_1101901839-1 4 0.269458 hybrid +138_1-7 Q0 MARCO_50_1276570100-11 5 0.167880 hybrid +138_1-7 Q0 MARCO_50_2490897344-7 6 0.155692 hybrid +138_1-7 Q0 MARCO_07_25977409-7 7 0.135069 hybrid +138_1-7 Q0 MARCO_19_2143868073-5 8 0.133395 hybrid +138_1-7 Q0 MARCO_35_378336812-1 9 0.130116 hybrid +138_1-7 Q0 MARCO_03_165348449-4 10 0.118584 hybrid +138_1-7 Q0 MARCO_11_811756776-1 11 0.115237 hybrid +138_1-7 Q0 MARCO_28_1331621467-9 12 0.107616 hybrid +138_1-7 Q0 MARCO_05_1066668513-3 13 0.101420 hybrid +138_1-7 Q0 MARCO_50_2535182177-2 14 0.065601 hybrid +138_1-7 Q0 MARCO_13_1263960801-1 15 0.063453 hybrid +138_1-7 Q0 MARCO_25_1375400046-10 16 0.055968 hybrid +138_1-7 Q0 MARCO_55_213300159-2 17 0.054181 hybrid +138_1-7 Q0 MARCO_20_533213870-1 18 0.050586 hybrid +138_1-7 Q0 MARCO_12_1863218652-1 19 0.044638 hybrid +138_1-7 Q0 MARCO_05_894716410-3 20 0.040319 hybrid +138_1-7 Q0 MARCO_57_1675371988-25 21 0.037560 hybrid +138_1-7 Q0 MARCO_31_641289906-5 22 0.033897 hybrid +138_1-7 Q0 MARCO_42_283699714-66 23 0.026118 hybrid +138_1-7 Q0 MARCO_03_930100800-38 24 0.023699 hybrid +138_1-7 Q0 MARCO_45_409522354-31 25 0.013749 hybrid +138_1-7 Q0 MARCO_55_226423778-1 26 -0.000814 hybrid +138_1-7 Q0 MARCO_19_2148051179-9 27 -0.004545 hybrid +138_1-7 Q0 MARCO_42_283699714-67 28 -0.017525 hybrid +138_1-7 Q0 MARCO_53_348747335-4 29 -0.023427 hybrid +138_1-7 Q0 MARCO_44_1978616340-12 30 -0.024264 hybrid +138_1-7 Q0 MARCO_26_224120701-1 31 -0.025078 hybrid +138_1-7 Q0 MARCO_26_118112649-3 32 -0.025101 hybrid +138_1-7 Q0 MARCO_27_466729859-4 33 -0.029940 hybrid +138_1-7 Q0 MARCO_00_368621294-19 34 -0.032337 hybrid +138_1-7 Q0 MARCO_27_1645230539-64 35 -0.035887 hybrid +138_1-7 Q0 MARCO_00_20752792-8 36 -0.036091 hybrid +138_1-7 Q0 MARCO_19_1788725632-5 37 -0.059473 hybrid +138_1-7 Q0 MARCO_13_14864014-4 38 -0.064696 hybrid +138_1-7 Q0 MARCO_55_213501726-13 39 -0.066958 hybrid +138_1-7 Q0 MARCO_34_59403630-5 40 -0.070417 hybrid +138_1-7 Q0 MARCO_30_535749579-35 41 -0.074216 hybrid +138_1-7 Q0 MARCO_01_1549951155-6 42 -0.082244 hybrid +138_1-7 Q0 MARCO_22_201835848-38 43 -0.083827 hybrid +138_1-7 Q0 MARCO_42_1141338211-2 44 -0.086631 hybrid +138_1-7 Q0 MARCO_24_1566977573-24 45 -0.086676 hybrid +138_1-7 Q0 MARCO_35_956358458-5 46 -0.088531 hybrid +138_1-7 Q0 MARCO_55_229757227-21 47 -0.088779 hybrid +138_1-7 Q0 MARCO_50_1553097056-98 48 -0.088847 hybrid +138_1-7 Q0 MARCO_31_622794480-2 49 -0.089820 hybrid +138_1-7 Q0 MARCO_25_788881322-9 50 -0.091222 hybrid +138_1-7 Q0 MARCO_52_1511831055-3 51 -0.092917 hybrid +138_1-7 Q0 MARCO_50_1494362857-2 52 -0.094478 hybrid +138_1-7 Q0 MARCO_49_456887452-1 53 -0.094523 hybrid +138_1-7 Q0 MARCO_41_1031381655-26 54 -0.095993 hybrid +138_1-7 Q0 MARCO_12_558794427-6 55 -0.098480 hybrid +138_1-7 Q0 MARCO_41_1277724319-80 56 -0.101104 hybrid +138_1-7 Q0 MARCO_13_347305423-6 57 -0.103614 hybrid +138_1-7 Q0 MARCO_57_863913027-55 58 -0.107729 hybrid +138_1-7 Q0 MARCO_31_1263322539-4 59 -0.108023 hybrid +138_1-7 Q0 MARCO_29_1557195752-1 60 -0.109493 hybrid +138_1-7 Q0 MARCO_50_2398856032-42 61 -0.112161 hybrid +138_1-7 Q0 MARCO_05_896205612-6 62 -0.113337 hybrid +138_1-7 Q0 MARCO_09_1738246172-123 63 -0.117385 hybrid +138_1-7 Q0 MARCO_12_1094555956-13 64 -0.117589 hybrid +138_1-7 Q0 MARCO_45_1530298473-8 65 -0.120144 hybrid +138_1-7 Q0 MARCO_07_1185846931-40 66 -0.122473 hybrid +138_1-7 Q0 MARCO_33_1434589230-5 67 -0.123151 hybrid +138_1-7 Q0 MARCO_58_1053890080-2 68 -0.123491 hybrid +138_1-7 Q0 MARCO_15_807936385-3 69 -0.123581 hybrid +138_1-7 Q0 MARCO_41_1494750574-19 70 -0.124734 hybrid +138_1-7 Q0 MARCO_31_770969517-7 71 -0.125187 hybrid +138_1-7 Q0 MARCO_58_1080520475-27 72 -0.127923 hybrid +138_1-7 Q0 MARCO_05_1066668513-2 73 -0.131563 hybrid +138_1-7 Q0 MARCO_35_373588529-5 74 -0.132445 hybrid +138_1-7 Q0 MARCO_33_1093862950-2 75 -0.134141 hybrid +138_1-7 Q0 MARCO_05_522880440-18 76 -0.135091 hybrid +138_1-7 Q0 MARCO_38_1447696313-20 77 -0.136493 hybrid +138_1-7 Q0 MARCO_47_577874521-3 78 -0.137081 hybrid +138_1-7 Q0 MARCO_32_464049034-36 79 -0.137126 hybrid +138_1-7 Q0 MARCO_41_1099098863-5 80 -0.142915 hybrid +138_1-7 Q0 MARCO_07_25192413-22 81 -0.143051 hybrid +138_1-7 Q0 MARCO_48_789209460-11 82 -0.147189 hybrid +138_1-7 Q0 MARCO_02_1329226707-5 83 -0.148863 hybrid +138_1-7 Q0 MARCO_31_118215713-8 84 -0.149043 hybrid +138_1-7 Q0 MARCO_09_233767517-8 85 -0.151757 hybrid +138_1-7 Q0 MARCO_50_468797757-34 86 -0.154742 hybrid +138_1-7 Q0 MARCO_39_781210112-5 87 -0.156461 hybrid +138_1-7 Q0 MARCO_08_1661523595-18 88 -0.158541 hybrid +138_1-7 Q0 MARCO_08_1661523595-25 89 -0.158541 hybrid +138_1-7 Q0 MARCO_22_1209196553-26 90 -0.162657 hybrid +138_1-7 Q0 MARCO_01_935689440-13 91 -0.163335 hybrid +138_1-7 Q0 MARCO_12_853871174-16 92 -0.165822 hybrid +138_1-7 Q0 MARCO_31_773985946-8 93 -0.166478 hybrid +138_1-7 Q0 MARCO_43_1576178915-19 94 -0.168491 hybrid +138_1-7 Q0 MARCO_45_1119236723-3 95 -0.169259 hybrid +138_1-7 Q0 MARCO_03_494593070-19 96 -0.171227 hybrid +138_1-7 Q0 MARCO_35_1315985387-1 97 -0.172064 hybrid +138_1-7 Q0 MARCO_44_843020438-76 98 -0.172606 hybrid +138_1-7 Q0 MARCO_12_1434971443-6 99 -0.172719 hybrid +138_1-7 Q0 MARCO_41_1309343666-36 100 -0.175230 hybrid +138_1-9 Q0 MARCO_27_202004899-3 1 0.500000 hybrid +138_1-9 Q0 MARCO_47_578522580-1 2 0.420151 hybrid +138_1-9 Q0 MARCO_27_202004899-2 3 0.403471 hybrid +138_1-9 Q0 MARCO_27_202004899-1 4 0.400026 hybrid +138_1-9 Q0 MARCO_32_154714576-3 5 0.395788 hybrid +138_1-9 Q0 MARCO_28_771528107-8 6 0.385999 hybrid +138_1-9 Q0 MARCO_25_16527695-6 7 0.375058 hybrid +138_1-9 Q0 MARCO_47_578522580-2 8 0.362328 hybrid +138_1-9 Q0 MARCO_35_619005595-3 9 0.277188 hybrid +138_1-9 Q0 MARCO_57_1677246923-24 10 0.217045 hybrid +138_1-9 Q0 MARCO_33_1510794933-4 11 0.207617 hybrid +138_1-9 Q0 MARCO_13_670837324-7 12 0.177330 hybrid +138_1-9 Q0 MARCO_39_787261460-10 13 0.166431 hybrid +138_1-9 Q0 MARCO_19_1636059623-1 14 0.147172 hybrid +138_1-9 Q0 MARCO_52_1362768233-3 15 0.121367 hybrid +138_1-9 Q0 MARCO_56_1801368036-5 16 0.119306 hybrid +138_1-9 Q0 MARCO_11_1279721721-1 17 0.112660 hybrid +138_1-9 Q0 MARCO_14_230373185-1 18 0.110094 hybrid +138_1-9 Q0 MARCO_57_2354240363-13 19 0.107643 hybrid +138_1-9 Q0 MARCO_13_577696256-2 20 0.105885 hybrid +138_1-9 Q0 MARCO_27_204237318-4 21 0.088787 hybrid +138_1-9 Q0 MARCO_50_2838921024-4 22 0.076087 hybrid +138_1-9 Q0 MARCO_36_577431870-3 23 0.072137 hybrid +138_1-9 Q0 MARCO_27_201971989-1 24 0.068692 hybrid +138_1-9 Q0 MARCO_45_160342515-25 25 0.065953 hybrid +138_1-9 Q0 MARCO_48_558840391-6 26 0.065318 hybrid +138_1-9 Q0 MARCO_31_1360261780-1 27 0.064814 hybrid +138_1-9 Q0 MARCO_27_509840862-4 28 0.060417 hybrid +138_1-9 Q0 MARCO_00_801665392-4 29 0.053252 hybrid +138_1-9 Q0 MARCO_31_274203118-5 30 0.044545 hybrid +138_1-9 Q0 MARCO_22_1037966551-5 31 0.042772 hybrid +138_1-9 Q0 MARCO_23_244603153-4 32 0.039730 hybrid +138_1-9 Q0 MARCO_41_1674961350-14 33 0.035175 hybrid +138_1-9 Q0 MARCO_25_1475754737-2 34 0.034267 hybrid +138_1-9 Q0 MARCO_14_230387492-4 35 0.032220 hybrid +138_1-9 Q0 MARCO_42_1001921215-3 36 0.026251 hybrid +138_1-9 Q0 MARCO_28_768234333-5 37 0.020052 hybrid +138_1-9 Q0 MARCO_57_1996211760-6 38 0.019822 hybrid +138_1-9 Q0 MARCO_47_359780365-9 39 0.017039 hybrid +138_1-9 Q0 MARCO_35_648746496-1 40 0.005781 hybrid +138_1-9 Q0 MARCO_47_1325017806-3 41 0.002652 hybrid +138_1-9 Q0 MARCO_46_685168129-2 42 -0.002595 hybrid +138_1-9 Q0 MARCO_22_1454425800-16 43 -0.003993 hybrid +138_1-9 Q0 MARCO_14_230387492-8 44 -0.006948 hybrid +138_1-9 Q0 MARCO_21_657257947-2 45 -0.017443 hybrid +138_1-9 Q0 MARCO_12_558354470-2 46 -0.018034 hybrid +138_1-9 Q0 MARCO_21_143315182-7 47 -0.018063 hybrid +138_1-9 Q0 MARCO_47_578522580-5 48 -0.019779 hybrid +138_1-9 Q0 MARCO_14_968630529-6 49 -0.020759 hybrid +138_1-9 Q0 MARCO_40_47441614-5 50 -0.022229 hybrid +138_1-9 Q0 MARCO_33_1486927464-5 51 -0.029279 hybrid +138_1-9 Q0 MARCO_21_657257947-1 52 -0.035463 hybrid +138_1-9 Q0 MARCO_47_573626712-11 53 -0.040898 hybrid +138_1-9 Q0 MARCO_27_204225268-4 54 -0.052661 hybrid +138_1-9 Q0 MARCO_48_1449460805-2 55 -0.053555 hybrid +138_1-9 Q0 MARCO_54_1737601891-2 56 -0.057317 hybrid +138_1-9 Q0 MARCO_57_828745262-2 57 -0.059047 hybrid +138_1-9 Q0 MARCO_37_76877071-2 58 -0.059956 hybrid +138_1-9 Q0 MARCO_47_578522580-6 59 -0.060114 hybrid +138_1-9 Q0 MARCO_40_47473416-4 60 -0.061714 hybrid +138_1-9 Q0 MARCO_25_426717205-1 61 -0.062767 hybrid +138_1-9 Q0 MARCO_26_740844680-22 62 -0.064079 hybrid +138_1-9 Q0 MARCO_47_356053163-9 63 -0.076318 hybrid +138_1-9 Q0 MARCO_20_1533908575-2 64 -0.077543 hybrid +138_1-9 Q0 MARCO_57_1746290983-21 65 -0.078826 hybrid +138_1-9 Q0 MARCO_56_1640516592-2 66 -0.081651 hybrid +138_1-9 Q0 MARCO_45_680344631-2 67 -0.081738 hybrid +138_1-9 Q0 MARCO_55_956185593-3 68 -0.087000 hybrid +138_1-9 Q0 MARCO_13_577696256-5 69 -0.099455 hybrid +138_1-9 Q0 MARCO_33_679527303-8 70 -0.101718 hybrid +138_1-9 Q0 MARCO_34_510616783-2 71 -0.108609 hybrid +138_1-9 Q0 MARCO_29_1352589267-3 72 -0.109532 hybrid +138_1-9 Q0 MARCO_41_1674961350-12 73 -0.117763 hybrid +138_1-9 Q0 MARCO_36_566975496-1 74 -0.117907 hybrid +138_1-9 Q0 MARCO_30_101042050-3 75 -0.119190 hybrid +138_1-9 Q0 MARCO_47_715279555-3 76 -0.121108 hybrid +138_1-9 Q0 MARCO_44_533330943-6 77 -0.123155 hybrid +138_1-9 Q0 MARCO_30_1654842567-4 78 -0.123313 hybrid +138_1-9 Q0 MARCO_57_1429666921-12 79 -0.126124 hybrid +138_1-9 Q0 MARCO_27_204428291-3 80 -0.126413 hybrid +138_1-9 Q0 MARCO_42_1015093568-1 81 -0.126557 hybrid +138_1-9 Q0 MARCO_47_577931634-1 82 -0.127927 hybrid +138_1-9 Q0 MARCO_40_47473416-5 83 -0.129584 hybrid +138_1-9 Q0 MARCO_48_1533462729-7 84 -0.132122 hybrid +138_1-9 Q0 MARCO_36_1317353025-5 85 -0.132914 hybrid +138_1-9 Q0 MARCO_42_1015177345-1 86 -0.133232 hybrid +138_1-9 Q0 MARCO_57_1590382269-9 87 -0.133592 hybrid +138_1-9 Q0 MARCO_36_1317353025-8 88 -0.140915 hybrid +138_1-9 Q0 MARCO_04_1336608344-10 89 -0.143092 hybrid +138_1-9 Q0 MARCO_26_746487892-13 90 -0.143914 hybrid +138_1-9 Q0 MARCO_25_1475745650-4 91 -0.144822 hybrid +138_1-9 Q0 MARCO_52_1362768233-6 92 -0.144894 hybrid +138_1-9 Q0 MARCO_30_511622944-3 93 -0.146855 hybrid +138_1-9 Q0 MARCO_02_1357070288-19 94 -0.147042 hybrid +138_1-9 Q0 MARCO_34_120945057-5 95 -0.147965 hybrid +138_1-9 Q0 MARCO_47_547910745-5 96 -0.148152 hybrid +138_1-9 Q0 MARCO_14_968630529-2 97 -0.149103 hybrid +138_1-9 Q0 MARCO_20_41721219-5 98 -0.150963 hybrid +138_1-9 Q0 MARCO_56_1626952454-5 99 -0.151381 hybrid +138_1-9 Q0 MARCO_11_29929514-4 100 -0.153457 hybrid +139_1-1 Q0 MARCO_58_1144549338-26 1 0.500000 hybrid +139_1-1 Q0 MARCO_03_934832731-22 2 0.436389 hybrid +139_1-1 Q0 MARCO_01_1906239093-118 3 0.390911 hybrid +139_1-1 Q0 MARCO_23_151543073-118 4 0.390910 hybrid +139_1-1 Q0 MARCO_24_1721054939-47 5 0.380651 hybrid +139_1-1 Q0 MARCO_03_931631759-7 6 0.284343 hybrid +139_1-1 Q0 MARCO_03_931631759-8 7 0.256377 hybrid +139_1-1 Q0 MARCO_44_1454117865-6 8 0.249919 hybrid +139_1-1 Q0 MARCO_19_1889192680-7 9 0.241987 hybrid +139_1-1 Q0 MARCO_45_92221891-18 10 0.216697 hybrid +139_1-1 Q0 MARCO_58_1143938334-24 11 0.215592 hybrid +139_1-1 Q0 MARCO_03_933532735-17 12 0.208377 hybrid +139_1-1 Q0 MARCO_03_932784641-12 13 0.185920 hybrid +139_1-1 Q0 MARCO_03_934832731-18 14 0.177774 hybrid +139_1-1 Q0 MARCO_03_934832731-13 15 0.173100 hybrid +139_1-1 Q0 MARCO_03_927337610-21 16 0.158148 hybrid +139_1-1 Q0 MARCO_15_656694627-1 17 0.152369 hybrid +139_1-1 Q0 MARCO_03_933579400-19 18 0.144883 hybrid +139_1-1 Q0 MARCO_03_932598157-15 19 0.144204 hybrid +139_1-1 Q0 MARCO_03_928407670-13 20 0.140228 hybrid +139_1-1 Q0 MARCO_58_1143807616-12 21 0.134449 hybrid +139_1-1 Q0 MARCO_03_928393097-6 22 0.130221 hybrid +139_1-1 Q0 MARCO_03_929664823-6 23 0.124112 hybrid +139_1-1 Q0 MARCO_48_102069672-8 24 0.120311 hybrid +139_1-1 Q0 MARCO_03_927427809-32 25 0.119050 hybrid +139_1-1 Q0 MARCO_03_927427809-23 26 0.111118 hybrid +139_1-1 Q0 MARCO_58_65090481-4 27 0.111060 hybrid +139_1-1 Q0 MARCO_58_1143468230-5 28 0.096321 hybrid +139_1-1 Q0 MARCO_03_929697718-13 29 0.088234 hybrid +139_1-1 Q0 MARCO_56_1028157659-29 30 0.086527 hybrid +139_1-1 Q0 MARCO_42_1160974766-1 31 0.085150 hybrid +139_1-1 Q0 MARCO_29_771503644-5 32 0.083579 hybrid +139_1-1 Q0 MARCO_03_928337241-6 33 0.082086 hybrid +139_1-1 Q0 MARCO_58_1144397703-8 34 0.081601 hybrid +139_1-1 Q0 MARCO_03_932246191-11 35 0.081349 hybrid +139_1-1 Q0 MARCO_03_934967743-14 36 0.072835 hybrid +139_1-1 Q0 MARCO_03_932680319-22 37 0.071245 hybrid +139_1-1 Q0 MARCO_33_625451467-6 38 0.066726 hybrid +139_1-1 Q0 MARCO_07_1133253260-3 39 0.065718 hybrid +139_1-1 Q0 MARCO_58_1143525507-14 40 0.060792 hybrid +139_1-1 Q0 MARCO_21_1262910055-23 41 0.058969 hybrid +139_1-1 Q0 MARCO_03_933174148-20 42 0.057863 hybrid +139_1-1 Q0 MARCO_31_1318740121-21 43 0.057650 hybrid +139_1-1 Q0 MARCO_03_931240405-4 44 0.051890 hybrid +139_1-1 Q0 MARCO_56_1026371295-80 45 0.044443 hybrid +139_1-1 Q0 MARCO_23_220082938-7 46 0.043318 hybrid +139_1-1 Q0 MARCO_03_927984973-19 47 0.042620 hybrid +139_1-1 Q0 MARCO_39_1694233731-3 48 0.040138 hybrid +139_1-1 Q0 MARCO_03_934684758-16 49 0.039071 hybrid +139_1-1 Q0 MARCO_12_1214698497-82 50 0.033486 hybrid +139_1-1 Q0 MARCO_53_1457271283-3 51 0.030751 hybrid +139_1-1 Q0 MARCO_08_127348438-25 52 0.027997 hybrid +139_1-1 Q0 MARCO_58_1145557357-21 53 0.026756 hybrid +139_1-1 Q0 MARCO_31_1317992653-17 54 0.023517 hybrid +139_1-1 Q0 MARCO_58_1145217063-16 55 0.019347 hybrid +139_1-1 Q0 MARCO_31_1318362822-8 56 0.016574 hybrid +139_1-1 Q0 MARCO_03_929508407-18 57 0.013413 hybrid +139_1-1 Q0 MARCO_03_931391568-28 58 0.010407 hybrid +139_1-1 Q0 MARCO_33_972001973-12 59 0.008274 hybrid +139_1-1 Q0 MARCO_58_1144437920-6 60 0.000051 hybrid +139_1-1 Q0 MARCO_03_927529769-19 61 -0.007765 hybrid +139_1-1 Q0 MARCO_28_770918280-22 62 -0.008463 hybrid +139_1-1 Q0 MARCO_03_929163407-8 63 -0.009200 hybrid +139_1-1 Q0 MARCO_03_934616998-20 64 -0.012439 hybrid +139_1-1 Q0 MARCO_13_1552590607-2 65 -0.012982 hybrid +139_1-1 Q0 MARCO_14_979830960-28 66 -0.021554 hybrid +139_1-1 Q0 MARCO_07_496702202-5 67 -0.022601 hybrid +139_1-1 Q0 MARCO_58_1441098403-7 68 -0.022853 hybrid +139_1-1 Q0 MARCO_03_931286771-8 69 -0.023532 hybrid +139_1-1 Q0 MARCO_53_1068935928-16 70 -0.024579 hybrid +139_1-1 Q0 MARCO_14_1508782618-14 71 -0.027003 hybrid +139_1-1 Q0 MARCO_58_1143649453-32 72 -0.029098 hybrid +139_1-1 Q0 MARCO_03_927936074-15 73 -0.029369 hybrid +139_1-1 Q0 MARCO_03_928824836-16 74 -0.032472 hybrid +139_1-1 Q0 MARCO_21_921696787-1 75 -0.035653 hybrid +139_1-1 Q0 MARCO_03_933765330-7 76 -0.036991 hybrid +139_1-1 Q0 MARCO_03_931862567-21 77 -0.037806 hybrid +139_1-1 Q0 MARCO_30_1690441889-8 78 -0.039086 hybrid +139_1-1 Q0 MARCO_03_931240405-22 79 -0.039745 hybrid +139_1-1 Q0 MARCO_12_26680983-9 80 -0.040075 hybrid +139_1-1 Q0 MARCO_47_707676438-5 81 -0.040288 hybrid +139_1-1 Q0 MARCO_03_931050531-12 82 -0.041200 hybrid +139_1-1 Q0 MARCO_23_913009646-6 83 -0.042305 hybrid +139_1-1 Q0 MARCO_03_929333314-30 84 -0.043197 hybrid +139_1-1 Q0 MARCO_03_932126682-19 85 -0.045098 hybrid +139_1-1 Q0 MARCO_44_1504707334-10 86 -0.047347 hybrid +139_1-1 Q0 MARCO_58_1143453800-13 87 -0.053379 hybrid +139_1-1 Q0 MARCO_58_1144227645-14 88 -0.054659 hybrid +139_1-1 Q0 MARCO_03_933950699-8 89 -0.054930 hybrid +139_1-1 Q0 MARCO_15_1761881462-8 90 -0.056462 hybrid +139_1-1 Q0 MARCO_03_930708679-45 91 -0.058208 hybrid +139_1-1 Q0 MARCO_03_933532735-24 92 -0.059488 hybrid +139_1-1 Q0 MARCO_12_683213602-5 93 -0.061660 hybrid +139_1-1 Q0 MARCO_03_931458054-14 94 -0.062455 hybrid +139_1-1 Q0 MARCO_40_1700681542-12 95 -0.066276 hybrid +139_1-1 Q0 MARCO_03_927427809-27 96 -0.067905 hybrid +139_1-1 Q0 MARCO_03_934832731-14 97 -0.068971 hybrid +139_1-1 Q0 MARCO_34_1105311582-38 98 -0.069766 hybrid +139_1-1 Q0 MARCO_03_932784641-16 99 -0.074906 hybrid +139_1-1 Q0 MARCO_03_931391568-23 100 -0.075449 hybrid +139_1-3 Q0 MARCO_19_685468020-1 1 0.500000 hybrid +139_1-3 Q0 KILT_35509755-2 2 0.311471 hybrid +139_1-3 Q0 KILT_1273025-2 3 0.303477 hybrid +139_1-3 Q0 MARCO_19_685468020-3 4 0.291562 hybrid +139_1-3 Q0 MARCO_49_1710547978-9 5 0.169798 hybrid +139_1-3 Q0 KILT_932074-6 6 0.162803 hybrid +139_1-3 Q0 KILT_640722-4 7 0.153708 hybrid +139_1-3 Q0 KILT_35509755-3 8 0.113813 hybrid +139_1-3 Q0 KILT_35509755-1 9 0.096401 hybrid +139_1-3 Q0 KILT_1944095-2 10 0.094560 hybrid +139_1-3 Q0 MARCO_52_1285555904-3 11 0.058529 hybrid +139_1-3 Q0 KILT_30839593-2 12 0.048630 hybrid +139_1-3 Q0 MARCO_49_1710547978-7 13 0.011348 hybrid +139_1-3 Q0 MARCO_49_1710547978-6 14 0.009721 hybrid +139_1-3 Q0 MARCO_03_697067489-1 15 -0.084855 hybrid +139_1-3 Q0 KILT_1273025-3 16 -0.190082 hybrid +139_1-3 Q0 KILT_932074-2 17 -0.209692 hybrid +139_1-3 Q0 MARCO_03_928407670-1 18 -0.215948 hybrid +139_1-3 Q0 MARCO_09_699402363-1 19 -0.244627 hybrid +139_1-3 Q0 MARCO_06_1678836371-1 20 -0.246099 hybrid +139_1-3 Q0 MARCO_03_1604933713-5 21 -0.249969 hybrid +139_1-3 Q0 MARCO_39_1705558799-13 22 -0.288055 hybrid +139_1-3 Q0 MARCO_16_3455649635-5 23 -0.288775 hybrid +139_1-3 Q0 MARCO_17_3383838218-3 24 -0.291218 hybrid +139_1-3 Q0 MARCO_04_195491508-5 25 -0.291595 hybrid +139_1-3 Q0 MARCO_30_496815996-6 26 -0.294778 hybrid +139_1-3 Q0 MARCO_48_1699945047-7 27 -0.295186 hybrid +139_1-3 Q0 MARCO_49_1710547978-11 28 -0.299484 hybrid +139_1-3 Q0 MARCO_04_221269825-2 29 -0.301928 hybrid +139_1-3 Q0 MARCO_58_1144437920-10 30 -0.308988 hybrid +139_1-3 Q0 MARCO_16_1637484022-2 31 -0.310589 hybrid +139_1-3 Q0 MARCO_32_1734806272-1 32 -0.318543 hybrid +139_1-3 Q0 MARCO_52_1285555904-1 33 -0.318608 hybrid +139_1-3 Q0 MARCO_03_1731659521-3 34 -0.319515 hybrid +139_1-3 Q0 MARCO_19_685468020-4 35 -0.320799 hybrid +139_1-3 Q0 MARCO_04_221269825-4 36 -0.321324 hybrid +139_1-3 Q0 MARCO_38_246524348-1 37 -0.324410 hybrid +139_1-3 Q0 MARCO_03_1597932249-2 38 -0.326711 hybrid +139_1-3 Q0 MARCO_05_612620960-4 39 -0.327534 hybrid +139_1-3 Q0 MARCO_50_1459970904-2 40 -0.328086 hybrid +139_1-3 Q0 MARCO_14_1009959490-1 41 -0.328513 hybrid +139_1-3 Q0 MARCO_17_292406934-12 42 -0.328565 hybrid +139_1-3 Q0 MARCO_18_3799168773-6 43 -0.331288 hybrid +139_1-3 Q0 MARCO_04_169403333-2 44 -0.331858 hybrid +139_1-3 Q0 KILT_958383-3 45 -0.335502 hybrid +139_1-3 Q0 MARCO_56_420712955-11 46 -0.335800 hybrid +139_1-3 Q0 KILT_13622982-11 47 -0.341317 hybrid +139_1-3 Q0 KILT_2236321-2 48 -0.341589 hybrid +139_1-3 Q0 MARCO_04_185643441-1 49 -0.342036 hybrid +139_1-3 Q0 MARCO_17_1313259671-26 50 -0.343573 hybrid +139_1-3 Q0 MARCO_37_469351031-3 51 -0.344013 hybrid +139_1-3 Q0 MARCO_23_769768332-3 52 -0.345368 hybrid +139_1-3 Q0 MARCO_22_696724720-5 53 -0.346198 hybrid +139_1-3 Q0 MARCO_37_1115532080-15 54 -0.346983 hybrid +139_1-3 Q0 MARCO_07_896237703-3 55 -0.348059 hybrid +139_1-3 Q0 MARCO_21_372569232-1 56 -0.348104 hybrid +139_1-3 Q0 MARCO_08_1356106303-94 57 -0.348221 hybrid +139_1-3 Q0 MARCO_15_1934961751-1 58 -0.349731 hybrid +139_1-3 Q0 KILT_1178931-7 59 -0.350341 hybrid +139_1-3 Q0 MARCO_41_1577444674-5 60 -0.351955 hybrid +139_1-3 Q0 MARCO_25_1295789183-25 61 -0.354133 hybrid +139_1-3 Q0 MARCO_03_1693949266-2 62 -0.355643 hybrid +139_1-3 Q0 MARCO_18_3972911672-5 63 -0.355929 hybrid +139_1-3 Q0 MARCO_54_1576982769-2 64 -0.357387 hybrid +139_1-3 Q0 MARCO_13_724192369-1 65 -0.357880 hybrid +139_1-3 Q0 MARCO_31_1024615140-8 66 -0.359313 hybrid +139_1-3 Q0 MARCO_00_1598661521-98 67 -0.359676 hybrid +139_1-3 Q0 MARCO_34_804695047-22 68 -0.361958 hybrid +139_1-3 Q0 MARCO_17_450420240-19 69 -0.363442 hybrid +139_1-3 Q0 MARCO_26_1717896939-1 70 -0.364090 hybrid +139_1-3 Q0 MARCO_17_2964670332-15 71 -0.364596 hybrid +139_1-3 Q0 MARCO_35_1693686823-5 72 -0.364914 hybrid +139_1-3 Q0 MARCO_14_691162073-2 73 -0.365374 hybrid +139_1-3 Q0 MARCO_03_1771714721-5 74 -0.366346 hybrid +139_1-3 Q0 MARCO_43_1161775983-24 75 -0.366982 hybrid +139_1-3 Q0 MARCO_04_861432290-7 76 -0.367695 hybrid +139_1-3 Q0 MARCO_41_1160209272-75 77 -0.368012 hybrid +139_1-3 Q0 MARCO_19_2583684011-1 78 -0.370709 hybrid +139_1-3 Q0 MARCO_53_1071535484-36 79 -0.371500 hybrid +139_1-3 Q0 MARCO_01_1749476030-1 80 -0.371863 hybrid +139_1-3 Q0 MARCO_41_1409798655-14 81 -0.372259 hybrid +139_1-3 Q0 MARCO_31_437740196-228 82 -0.374184 hybrid +139_1-3 Q0 MARCO_03_1574726877-1 83 -0.374333 hybrid +139_1-3 Q0 MARCO_04_115327913-4 84 -0.375720 hybrid +139_1-3 Q0 MARCO_04_163033616-6 85 -0.375720 hybrid +139_1-3 Q0 MARCO_40_77703743-1 86 -0.375831 hybrid +139_1-3 Q0 MARCO_12_1727051150-2 87 -0.376349 hybrid +139_1-3 Q0 MARCO_58_1143938334-5 88 -0.376621 hybrid +139_1-3 Q0 MARCO_27_24296749-1 89 -0.376978 hybrid +139_1-3 Q0 KILT_286236-2 90 -0.378475 hybrid +139_1-3 Q0 MARCO_31_1117711892-2 91 -0.378638 hybrid +139_1-3 Q0 MARCO_26_384425825-81 92 -0.380005 hybrid +139_1-3 Q0 MARCO_03_1771258956-2 93 -0.380142 hybrid +139_1-3 Q0 MARCO_04_152445496-3 94 -0.380193 hybrid +139_1-3 Q0 MARCO_40_79022235-1 95 -0.380206 hybrid +139_1-3 Q0 MARCO_32_83272984-3 96 -0.380569 hybrid +139_1-3 Q0 KILT_932074-7 97 -0.380764 hybrid +139_1-3 Q0 MARCO_48_623087858-2 98 -0.380842 hybrid +139_1-3 Q0 MARCO_19_1781706191-8 99 -0.381004 hybrid +139_1-3 Q0 MARCO_07_896237703-4 100 -0.381931 hybrid +139_1-5 Q0 MARCO_02_779860540-3 1 0.500000 hybrid +139_1-5 Q0 MARCO_32_152981865-1 2 0.464992 hybrid +139_1-5 Q0 MARCO_51_271641142-1 3 0.421629 hybrid +139_1-5 Q0 MARCO_03_931938374-4 4 0.418189 hybrid +139_1-5 Q0 MARCO_46_1152746885-1 5 0.407840 hybrid +139_1-5 Q0 MARCO_34_478860268-1 6 0.404400 hybrid +139_1-5 Q0 MARCO_31_606859212-13 7 0.349387 hybrid +139_1-5 Q0 MARCO_27_863094248-42 8 0.278504 hybrid +139_1-5 Q0 MARCO_03_934285477-1 9 0.230776 hybrid +139_1-5 Q0 MARCO_03_932641282-1 10 0.218143 hybrid +139_1-5 Q0 MARCO_52_1170350630-31 11 0.208054 hybrid +139_1-5 Q0 MARCO_48_906536335-15 12 0.144455 hybrid +139_1-5 Q0 MARCO_13_609472026-1 13 0.142229 hybrid +139_1-5 Q0 MARCO_50_2456038409-24 14 0.116038 hybrid +139_1-5 Q0 MARCO_02_482629013-1 15 0.115171 hybrid +139_1-5 Q0 MARCO_41_798155142-8 16 0.107799 hybrid +139_1-5 Q0 MARCO_52_1285555904-1 17 0.097826 hybrid +139_1-5 Q0 MARCO_00_545007325-7 18 0.089356 hybrid +139_1-5 Q0 MARCO_25_751605453-1 19 0.081926 hybrid +139_1-5 Q0 MARCO_26_433116529-3 20 0.081001 hybrid +139_1-5 Q0 MARCO_03_929078895-1 21 0.077243 hybrid +139_1-5 Q0 MARCO_02_404529608-1 22 0.077041 hybrid +139_1-5 Q0 MARCO_53_862318990-6 23 0.076289 hybrid +139_1-5 Q0 MARCO_34_984767858-8 24 0.073717 hybrid +139_1-5 Q0 MARCO_03_928850259-3 25 0.072705 hybrid +139_1-5 Q0 MARCO_00_274747018-3 26 0.056978 hybrid +139_1-5 Q0 MARCO_22_1173992181-1 27 0.049144 hybrid +139_1-5 Q0 MARCO_03_979872567-7 28 0.039749 hybrid +139_1-5 Q0 MARCO_22_1269664649-5 29 0.036945 hybrid +139_1-5 Q0 MARCO_27_762830124-47 30 0.034863 hybrid +139_1-5 Q0 MARCO_25_1376647457-13 31 0.033100 hybrid +139_1-5 Q0 MARCO_37_890585032-3 32 0.031423 hybrid +139_1-5 Q0 MARCO_31_1318992289-11 33 0.022549 hybrid +139_1-5 Q0 MARCO_51_865864891-5 34 0.014310 hybrid +139_1-5 Q0 MARCO_32_335073752-5 35 0.011795 hybrid +139_1-5 Q0 MARCO_41_1065781991-6 36 0.007574 hybrid +139_1-5 Q0 MARCO_54_1617993646-11 37 0.005088 hybrid +139_1-5 Q0 MARCO_11_1279424773-1 38 0.004481 hybrid +139_1-5 Q0 MARCO_58_1146178111-42 39 0.003267 hybrid +139_1-5 Q0 MARCO_41_1733083274-10 40 0.002977 hybrid +139_1-5 Q0 MARCO_30_275871984-3 41 -0.006244 hybrid +139_1-5 Q0 MARCO_50_2014964432-25 42 -0.011534 hybrid +139_1-5 Q0 MARCO_41_1491871112-18 43 -0.013500 hybrid +139_1-5 Q0 MARCO_14_229264298-3 44 -0.017171 hybrid +139_1-5 Q0 MARCO_12_1465370476-1 45 -0.019282 hybrid +139_1-5 Q0 MARCO_30_1668748379-1 46 -0.019889 hybrid +139_1-5 Q0 MARCO_24_1146074120-23 47 -0.021392 hybrid +139_1-5 Q0 MARCO_33_1135265883-1 48 -0.021710 hybrid +139_1-5 Q0 MARCO_45_1073739961-6 49 -0.023474 hybrid +139_1-5 Q0 MARCO_11_851548481-25 50 -0.024370 hybrid +139_1-5 Q0 MARCO_11_308890315-19 51 -0.025324 hybrid +139_1-5 Q0 MARCO_25_1025471830-13 52 -0.026827 hybrid +139_1-5 Q0 MARCO_11_80253099-1 53 -0.027926 hybrid +139_1-5 Q0 MARCO_49_520101231-1 54 -0.028995 hybrid +139_1-5 Q0 MARCO_06_1227182144-136 55 -0.029111 hybrid +139_1-5 Q0 MARCO_54_1741581556-3 56 -0.046311 hybrid +139_1-5 Q0 MARCO_49_259605953-13 57 -0.046456 hybrid +139_1-5 Q0 KILT_14427850-4 58 -0.050214 hybrid +139_1-5 Q0 MARCO_01_1687194728-6 59 -0.055938 hybrid +139_1-5 Q0 MARCO_02_267615946-4 60 -0.058915 hybrid +139_1-5 Q0 MARCO_27_1678027474-5 61 -0.061402 hybrid +139_1-5 Q0 MARCO_03_934944280-2 62 -0.062616 hybrid +139_1-5 Q0 MARCO_58_1144274088-14 63 -0.066258 hybrid +139_1-5 Q0 MARCO_03_928477095-20 64 -0.066374 hybrid +139_1-5 Q0 MARCO_12_268693539-7 65 -0.068686 hybrid +139_1-5 Q0 MARCO_00_545007325-8 66 -0.070739 hybrid +139_1-5 Q0 MARCO_25_1247811922-1 67 -0.071751 hybrid +139_1-5 Q0 MARCO_39_1157927729-3 68 -0.075306 hybrid +139_1-5 Q0 MARCO_47_985113025-6 69 -0.076058 hybrid +139_1-5 Q0 MARCO_53_863749380-8 70 -0.076203 hybrid +139_1-5 Q0 MARCO_35_1366803869-24 71 -0.076203 hybrid +139_1-5 Q0 MARCO_53_863721629-7 72 -0.080365 hybrid +139_1-5 Q0 MARCO_27_1063504315-6 73 -0.080394 hybrid +139_1-5 Q0 MARCO_41_1300786011-62 74 -0.081493 hybrid +139_1-5 Q0 MARCO_13_1723499074-17 75 -0.083169 hybrid +139_1-5 Q0 MARCO_58_1144836452-3 76 -0.084210 hybrid +139_1-5 Q0 MARCO_55_220658152-5 77 -0.085916 hybrid +139_1-5 Q0 MARCO_04_203163594-3 78 -0.089674 hybrid +139_1-5 Q0 MARCO_11_1274591969-1 79 -0.092912 hybrid +139_1-5 Q0 MARCO_03_929664823-7 80 -0.093634 hybrid +139_1-5 Q0 MARCO_14_228993184-6 81 -0.094617 hybrid +139_1-5 Q0 MARCO_34_1554578030-7 82 -0.094618 hybrid +139_1-5 Q0 MARCO_57_637068666-1 83 -0.095571 hybrid +139_1-5 Q0 MARCO_03_258900432-1 84 -0.096554 hybrid +139_1-5 Q0 MARCO_36_984543931-1 85 -0.099879 hybrid +139_1-5 Q0 MARCO_54_1757178358-9 86 -0.101469 hybrid +139_1-5 Q0 MARCO_52_857591041-4 87 -0.102856 hybrid +139_1-5 Q0 MARCO_39_1559212151-1 88 -0.103145 hybrid +139_1-5 Q0 MARCO_00_935625255-2 89 -0.103203 hybrid +139_1-5 Q0 MARCO_24_407892856-7 90 -0.108609 hybrid +139_1-5 Q0 MARCO_30_450384419-7 91 -0.114680 hybrid +139_1-5 Q0 MARCO_53_175842619-19 92 -0.118669 hybrid +139_1-5 Q0 MARCO_41_1524863889-63 93 -0.122225 hybrid +139_1-5 Q0 MARCO_47_1186708378-12 94 -0.122745 hybrid +139_1-5 Q0 MARCO_39_1325751946-7 95 -0.127110 hybrid +139_1-5 Q0 MARCO_11_984822135-4 96 -0.127371 hybrid +139_1-5 Q0 MARCO_41_1378958783-42 97 -0.127949 hybrid +139_1-5 Q0 MARCO_25_1281803057-4 98 -0.129625 hybrid +139_1-5 Q0 MARCO_25_909202644-4 99 -0.132198 hybrid +139_1-5 Q0 MARCO_03_932784641-1 100 -0.132459 hybrid +139_1-7 Q0 MARCO_41_1217638368-7 1 0.500000 hybrid +139_1-7 Q0 MARCO_42_1374843583-13 2 0.392620 hybrid +139_1-7 Q0 MARCO_26_898272393-1 3 0.376221 hybrid +139_1-7 Q0 MARCO_50_2652041956-5 4 0.306441 hybrid +139_1-7 Q0 MARCO_20_1732101213-5 5 0.290968 hybrid +139_1-7 Q0 MARCO_04_155282561-3 6 0.254367 hybrid +139_1-7 Q0 MARCO_52_221354867-5 7 0.240725 hybrid +139_1-7 Q0 MARCO_25_1031200656-15 8 0.211135 hybrid +139_1-7 Q0 MARCO_02_1590783239-1 9 0.208021 hybrid +139_1-7 Q0 MARCO_20_314890755-37 10 0.172371 hybrid +139_1-7 Q0 MARCO_09_370170308-35 11 0.170731 hybrid +139_1-7 Q0 MARCO_04_380859839-9 12 0.162412 hybrid +139_1-7 Q0 MARCO_27_108691393-24 13 0.145181 hybrid +139_1-7 Q0 MARCO_25_1080094176-4 14 0.120868 hybrid +139_1-7 Q0 MARCO_50_2153767895-1 15 0.113119 hybrid +139_1-7 Q0 MARCO_17_1581688443-14 16 0.110386 hybrid +139_1-7 Q0 MARCO_28_1344258427-26 17 0.090137 hybrid +139_1-7 Q0 MARCO_35_430586433-6 18 0.088449 hybrid +139_1-7 Q0 MARCO_02_449683614-66 19 0.085692 hybrid +139_1-7 Q0 MARCO_50_1562535838-8 20 0.076946 hybrid +139_1-7 Q0 MARCO_30_598056210-7 21 0.074498 hybrid +139_1-7 Q0 MARCO_00_439407346-1 22 0.066488 hybrid +139_1-7 Q0 MARCO_10_936331787-10 23 0.058146 hybrid +139_1-7 Q0 MARCO_03_796486565-1 24 0.050018 hybrid +139_1-7 Q0 MARCO_44_1774585519-9 25 0.047974 hybrid +139_1-7 Q0 MARCO_38_1687063377-1 26 0.046643 hybrid +139_1-7 Q0 MARCO_10_317288872-1 27 0.046025 hybrid +139_1-7 Q0 MARCO_44_1519211156-2 28 0.045573 hybrid +139_1-7 Q0 MARCO_29_567510058-8 29 0.044433 hybrid +139_1-7 Q0 MARCO_19_1666010030-243 30 0.042507 hybrid +139_1-7 Q0 MARCO_52_204370134-244 31 0.042507 hybrid +139_1-7 Q0 MARCO_59_789375037-27 32 0.042127 hybrid +139_1-7 Q0 MARCO_26_1458053129-6 33 0.041889 hybrid +139_1-7 Q0 MARCO_45_1024470034-8 34 0.032620 hybrid +139_1-7 Q0 MARCO_44_1794579358-6 35 0.028223 hybrid +139_1-7 Q0 MARCO_10_484837672-1 36 0.024730 hybrid +139_1-7 Q0 MARCO_19_1664792180-227 37 0.017932 hybrid +139_1-7 Q0 MARCO_24_1254695203-4 38 0.011776 hybrid +139_1-7 Q0 MARCO_41_987473146-4 39 -0.004124 hybrid +139_1-7 Q0 MARCO_41_1360499217-35 40 -0.009780 hybrid +139_1-7 Q0 MARCO_59_789063845-21 41 -0.009994 hybrid +139_1-7 Q0 MARCO_49_1435175202-10 42 -0.014011 hybrid +139_1-7 Q0 MARCO_20_1628240822-36 43 -0.018027 hybrid +139_1-7 Q0 MARCO_20_1732101213-11 44 -0.022424 hybrid +139_1-7 Q0 MARCO_19_1300168803-4 45 -0.023969 hybrid +139_1-7 Q0 MARCO_41_1316556611-43 46 -0.024445 hybrid +139_1-7 Q0 MARCO_00_781301235-5 47 -0.025181 hybrid +139_1-7 Q0 MARCO_17_1581688443-12 48 -0.028532 hybrid +139_1-7 Q0 MARCO_09_963471843-4 49 -0.031242 hybrid +139_1-7 Q0 MARCO_22_1854808628-48 50 -0.032739 hybrid +139_1-7 Q0 KILT_42485974-1 51 -0.034260 hybrid +139_1-7 Q0 MARCO_00_1546966429-78 52 -0.035829 hybrid +139_1-7 Q0 MARCO_27_108691393-1 53 -0.038063 hybrid +139_1-7 Q0 MARCO_24_37872054-17 54 -0.041652 hybrid +139_1-7 Q0 MARCO_12_153836851-189 55 -0.043910 hybrid +139_1-7 Q0 MARCO_16_1741811875-2 56 -0.045455 hybrid +139_1-7 Q0 MARCO_57_895142033-11 57 -0.046738 hybrid +139_1-7 Q0 MARCO_07_1423336088-4 58 -0.049139 hybrid +139_1-7 Q0 MARCO_09_963471843-1 59 -0.066061 hybrid +139_1-7 Q0 MARCO_44_1781698905-21 60 -0.070006 hybrid +139_1-7 Q0 MARCO_04_143322214-3 61 -0.070980 hybrid +139_1-7 Q0 MARCO_07_1424896788-6 62 -0.071765 hybrid +139_1-7 Q0 MARCO_20_1076038191-72 63 -0.073500 hybrid +139_1-7 Q0 MARCO_30_936123530-28 64 -0.075163 hybrid +139_1-7 Q0 MARCO_50_1388303478-13 65 -0.076542 hybrid +139_1-7 Q0 MARCO_51_860831248-1 66 -0.082484 hybrid +139_1-7 Q0 MARCO_11_843921865-12 67 -0.085669 hybrid +139_1-7 Q0 MARCO_18_1271281520-15 68 -0.086001 hybrid +139_1-7 Q0 MARCO_13_771289998-2 69 -0.088972 hybrid +139_1-7 Q0 MARCO_04_380859839-10 70 -0.095769 hybrid +139_1-7 Q0 MARCO_31_1263197421-1 71 -0.101046 hybrid +139_1-7 Q0 MARCO_31_1263204147-1 72 -0.101046 hybrid +139_1-7 Q0 MARCO_24_831214839-5 73 -0.102900 hybrid +139_1-7 Q0 MARCO_30_367390584-10 74 -0.104540 hybrid +139_1-7 Q0 MARCO_26_1819040736-2 75 -0.105847 hybrid +139_1-7 Q0 MARCO_07_98694102-12 76 -0.106179 hybrid +139_1-7 Q0 MARCO_30_1146842803-10 77 -0.106488 hybrid +139_1-7 Q0 MARCO_24_1255272326-12 78 -0.107439 hybrid +139_1-7 Q0 MARCO_57_895142033-10 79 -0.107867 hybrid +139_1-7 Q0 MARCO_31_1263210859-1 80 -0.110149 hybrid +139_1-7 Q0 MARCO_19_1808837577-9 81 -0.110862 hybrid +139_1-7 Q0 MARCO_31_1813970548-3 82 -0.113429 hybrid +139_1-7 Q0 MARCO_20_314890755-30 83 -0.113547 hybrid +139_1-7 Q0 MARCO_08_624857012-9 84 -0.114260 hybrid +139_1-7 Q0 MARCO_37_1286385776-73 85 -0.114450 hybrid +139_1-7 Q0 MARCO_41_1527242639-47 86 -0.115544 hybrid +139_1-7 Q0 MARCO_57_654601875-9 87 -0.116376 hybrid +139_1-7 Q0 MARCO_03_328494621-12 88 -0.121343 hybrid +139_1-7 Q0 MARCO_20_1732101213-6 89 -0.122912 hybrid +139_1-7 Q0 MARCO_50_2844257059-9 90 -0.126643 hybrid +139_1-7 Q0 MARCO_59_834393478-13 91 -0.130113 hybrid +139_1-7 Q0 MARCO_00_531131492-20 92 -0.130660 hybrid +139_1-7 Q0 MARCO_26_131321725-7 93 -0.131230 hybrid +139_1-7 Q0 MARCO_31_1734637428-1 94 -0.131777 hybrid +139_1-7 Q0 MARCO_41_1264450051-18 95 -0.133274 hybrid +139_1-7 Q0 MARCO_49_1762373997-7 96 -0.136768 hybrid +139_1-7 Q0 MARCO_52_1332798989-2 97 -0.137647 hybrid +139_1-7 Q0 MARCO_05_881957008-5 98 -0.137790 hybrid +139_1-7 Q0 MARCO_31_1263197421-4 99 -0.137956 hybrid +139_1-7 Q0 MARCO_29_1428696315-3 100 -0.138194 hybrid +139_2-1 Q0 MARCO_18_2773453818-1 1 0.500000 hybrid +139_2-1 Q0 MARCO_30_852084669-11 2 0.375724 hybrid +139_2-1 Q0 MARCO_10_1411108473-1 3 0.218948 hybrid +139_2-1 Q0 MARCO_15_1831919782-6 4 0.176453 hybrid +139_2-1 Q0 KILT_7094395-3 5 0.165480 hybrid +139_2-1 Q0 MARCO_31_1812618181-1 6 0.124067 hybrid +139_2-1 Q0 MARCO_50_1168213625-3 7 0.113303 hybrid +139_2-1 Q0 MARCO_42_1680116628-2 8 0.107791 hybrid +139_2-1 Q0 MARCO_20_1089879677-5 9 0.087851 hybrid +139_2-1 Q0 MARCO_33_412290557-1 10 0.073093 hybrid +139_2-1 Q0 MARCO_42_1754346027-22 11 0.060446 hybrid +139_2-1 Q0 MARCO_23_1110545684-3 12 0.055788 hybrid +139_2-1 Q0 MARCO_58_1542204908-1 13 0.043298 hybrid +139_2-1 Q0 MARCO_57_1408478931-5 14 0.042687 hybrid +139_2-1 Q0 MARCO_21_6211373-12 15 0.040559 hybrid +139_2-1 Q0 MARCO_17_2701144436-3 16 0.032796 hybrid +139_2-1 Q0 MARCO_09_1802288203-1 17 0.026865 hybrid +139_2-1 Q0 MARCO_27_106958038-1 18 0.011880 hybrid +139_2-1 Q0 MARCO_30_287409438-3 19 0.011339 hybrid +139_2-1 Q0 MARCO_23_117804075-4 20 0.007362 hybrid +139_2-1 Q0 MARCO_55_1091231358-3 21 0.007048 hybrid +139_2-1 Q0 MARCO_42_1765382169-8 22 0.004850 hybrid +139_2-1 Q0 MARCO_19_1805641588-8 23 -0.006891 hybrid +139_2-1 Q0 MARCO_51_513827094-6 24 -0.011636 hybrid +139_2-1 Q0 MARCO_52_1377814776-1 25 -0.018631 hybrid +139_2-1 Q0 KILT_32282725-1 26 -0.018823 hybrid +139_2-1 Q0 MARCO_45_1001354697-9 27 -0.021160 hybrid +139_2-1 Q0 MARCO_27_460368785-4 28 -0.025242 hybrid +139_2-1 Q0 MARCO_03_1028000543-2 29 -0.026568 hybrid +139_2-1 Q0 MARCO_58_1494932427-1 30 -0.030912 hybrid +139_2-1 Q0 MARCO_54_523879479-2 31 -0.032046 hybrid +139_2-1 Q0 MARCO_08_149604752-6 32 -0.035535 hybrid +139_2-1 Q0 MARCO_55_1169666415-1 33 -0.037907 hybrid +139_2-1 Q0 KILT_3282937-7 34 -0.038762 hybrid +139_2-1 Q0 MARCO_18_803229601-43 35 -0.041518 hybrid +139_2-1 Q0 MARCO_13_898780031-28 36 -0.043333 hybrid +139_2-1 Q0 MARCO_41_1377156599-33 37 -0.048409 hybrid +139_2-1 Q0 MARCO_30_21099410-1 38 -0.052945 hybrid +139_2-1 Q0 MARCO_20_1050682748-10 39 -0.056608 hybrid +139_2-1 Q0 KILT_11896247-2 40 -0.056817 hybrid +139_2-1 Q0 MARCO_20_1052662580-3 41 -0.064109 hybrid +139_2-1 Q0 MARCO_50_1562772054-30 42 -0.064249 hybrid +139_2-1 Q0 MARCO_31_1547946125-27 43 -0.064476 hybrid +139_2-1 Q0 MARCO_06_752339225-5 44 -0.072744 hybrid +139_2-1 Q0 MARCO_13_1016897150-3 45 -0.089108 hybrid +139_2-1 Q0 MARCO_45_1001669128-1 46 -0.092143 hybrid +139_2-1 Q0 MARCO_55_942681424-5 47 -0.098406 hybrid +139_2-1 Q0 MARCO_18_3968859993-2 48 -0.098964 hybrid +139_2-1 Q0 MARCO_51_1645862026-1 49 -0.099993 hybrid +139_2-1 Q0 MARCO_09_697627654-3 50 -0.103046 hybrid +139_2-1 Q0 MARCO_57_1410537016-1 51 -0.107896 hybrid +139_2-1 Q0 KILT_763394-7 52 -0.108105 hybrid +139_2-1 Q0 MARCO_15_1833801735-2 53 -0.108192 hybrid +139_2-1 Q0 MARCO_35_1623896835-2 54 -0.113321 hybrid +139_2-1 Q0 MARCO_07_1145749299-8 55 -0.117194 hybrid +139_2-1 Q0 MARCO_00_864750744-24 56 -0.118327 hybrid +139_2-1 Q0 MARCO_49_1465505436-7 57 -0.120386 hybrid +139_2-1 Q0 MARCO_27_459565227-1 58 -0.122253 hybrid +139_2-1 Q0 MARCO_45_1500112064-6 59 -0.126457 hybrid +139_2-1 Q0 MARCO_06_977839154-122 60 -0.131533 hybrid +139_2-1 Q0 MARCO_06_977839154-32 61 -0.131533 hybrid +139_2-1 Q0 MARCO_06_977839154-77 62 -0.131533 hybrid +139_2-1 Q0 MARCO_04_316503868-1 63 -0.133295 hybrid +139_2-1 Q0 MARCO_31_296343080-2 64 -0.133382 hybrid +139_2-1 Q0 MARCO_39_1330495787-6 65 -0.133434 hybrid +139_2-1 Q0 MARCO_50_1297145603-27 66 -0.135249 hybrid +139_2-1 Q0 MARCO_40_546550964-5 67 -0.136557 hybrid +139_2-1 Q0 MARCO_07_677766167-11 68 -0.137447 hybrid +139_2-1 Q0 MARCO_50_1422416858-37 69 -0.137534 hybrid +139_2-1 Q0 MARCO_20_1061667015-5 70 -0.140552 hybrid +139_2-1 Q0 MARCO_03_1068100937-3 71 -0.144582 hybrid +139_2-1 Q0 MARCO_50_1459424309-28 72 -0.145157 hybrid +139_2-1 Q0 KILT_218575-1 73 -0.147286 hybrid +139_2-1 Q0 KILT_57940889-1 74 -0.148960 hybrid +139_2-1 Q0 MARCO_18_160591906-8 75 -0.150705 hybrid +139_2-1 Q0 MARCO_44_775089654-4 76 -0.156148 hybrid +139_2-1 Q0 KILT_20563917-2 77 -0.159200 hybrid +139_2-1 Q0 MARCO_23_152842844-3 78 -0.159724 hybrid +139_2-1 Q0 MARCO_03_852796594-3 79 -0.160160 hybrid +139_2-1 Q0 MARCO_37_195409147-1 80 -0.160718 hybrid +139_2-1 Q0 MARCO_47_789231772-5 81 -0.161573 hybrid +139_2-1 Q0 KILT_10830516-1 82 -0.162497 hybrid +139_2-1 Q0 MARCO_23_464787452-2 83 -0.164172 hybrid +139_2-1 Q0 MARCO_38_210283388-3 84 -0.164573 hybrid +139_2-1 Q0 MARCO_50_245851919-1 85 -0.167295 hybrid +139_2-1 Q0 KILT_22343856-9 86 -0.167574 hybrid +139_2-1 Q0 MARCO_18_2678273765-10 87 -0.167574 hybrid +139_2-1 Q0 MARCO_08_1021803976-4 88 -0.169126 hybrid +139_2-1 Q0 MARCO_18_2323113865-49 89 -0.169510 hybrid +139_2-1 Q0 MARCO_09_953129214-66 90 -0.171098 hybrid +139_2-1 Q0 MARCO_18_1469071255-22 91 -0.171673 hybrid +139_2-1 Q0 KILT_52595754-1 92 -0.172092 hybrid +139_2-1 Q0 MARCO_41_2189612116-7 93 -0.173139 hybrid +139_2-1 Q0 MARCO_38_210626723-7 94 -0.176383 hybrid +139_2-1 Q0 MARCO_43_532651466-5 95 -0.180535 hybrid +139_2-1 Q0 MARCO_19_1868031572-1 96 -0.181216 hybrid +139_2-1 Q0 MARCO_17_2631201343-3 97 -0.186588 hybrid +139_2-1 Q0 KILT_46439-22 98 -0.189223 hybrid +139_2-1 Q0 MARCO_13_430885914-4 99 -0.190566 hybrid +139_2-1 Q0 MARCO_00_1520329473-1 100 -0.191456 hybrid +139_2-11 Q0 MARCO_14_752099999-1 1 0.500000 hybrid +139_2-11 Q0 MARCO_03_1700171198-4 2 0.248188 hybrid +139_2-11 Q0 MARCO_11_735247024-1 3 0.237203 hybrid +139_2-11 Q0 MARCO_50_2105041912-34 4 0.228689 hybrid +139_2-11 Q0 MARCO_31_1481499278-1 5 0.204851 hybrid +139_2-11 Q0 MARCO_04_185630830-3 6 0.198371 hybrid +139_2-11 Q0 MARCO_54_451773707-1 7 0.162568 hybrid +139_2-11 Q0 MARCO_05_1214240044-1 8 0.106226 hybrid +139_2-11 Q0 MARCO_22_960848634-12 9 0.089515 hybrid +139_2-11 Q0 MARCO_50_2113671794-1 10 0.086095 hybrid +139_2-11 Q0 MARCO_16_419536940-1 11 0.083217 hybrid +139_2-11 Q0 MARCO_11_1438803312-1 12 0.079073 hybrid +139_2-11 Q0 MARCO_16_419645055-1 13 0.078048 hybrid +139_2-11 Q0 MARCO_19_1717698725-1 14 0.073241 hybrid +139_2-11 Q0 MARCO_03_1702632140-3 15 0.044370 hybrid +139_2-11 Q0 MARCO_03_1766599918-3 16 0.044083 hybrid +139_2-11 Q0 MARCO_30_1030775139-1 17 0.035675 hybrid +139_2-11 Q0 MARCO_50_1594307184-19 18 0.022716 hybrid +139_2-11 Q0 MARCO_57_1573844171-1 19 0.018904 hybrid +139_2-11 Q0 KILT_34660438-6 20 0.018828 hybrid +139_2-11 Q0 MARCO_07_579423608-1 21 0.014805 hybrid +139_2-11 Q0 MARCO_37_1225565708-1 22 0.008988 hybrid +139_2-11 Q0 MARCO_12_8649142-1 23 0.005930 hybrid +139_2-11 Q0 MARCO_11_1456802242-1 24 0.004573 hybrid +139_2-11 Q0 MARCO_11_1556769736-1 25 -0.006849 hybrid +139_2-11 Q0 MARCO_47_1098361834-1 26 -0.009727 hybrid +139_2-11 Q0 MARCO_31_1481489554-7 27 -0.010556 hybrid +139_2-11 Q0 MARCO_53_880160990-16 28 -0.028758 hybrid +139_2-11 Q0 MARCO_10_853298218-1 29 -0.030597 hybrid +139_2-11 Q0 MARCO_37_1225565708-2 30 -0.031260 hybrid +139_2-11 Q0 MARCO_11_1039504833-6 31 -0.037559 hybrid +139_2-11 Q0 MARCO_03_1766880088-2 32 -0.038297 hybrid +139_2-11 Q0 MARCO_57_1573789934-1 33 -0.040166 hybrid +139_2-11 Q0 MARCO_55_1596394259-2 34 -0.042350 hybrid +139_2-11 Q0 MARCO_54_451773707-5 35 -0.042516 hybrid +139_2-11 Q0 MARCO_20_488106648-9 36 -0.043812 hybrid +139_2-11 Q0 MARCO_22_960848634-13 37 -0.050156 hybrid +139_2-11 Q0 MARCO_50_796011794-72 38 -0.054601 hybrid +139_2-11 Q0 MARCO_03_1721415124-3 39 -0.056877 hybrid +139_2-11 Q0 MARCO_03_1766859799-3 40 -0.056877 hybrid +139_2-11 Q0 MARCO_50_143733671-105 41 -0.062331 hybrid +139_2-11 Q0 MARCO_03_1700171198-1 42 -0.063371 hybrid +139_2-11 Q0 MARCO_55_1585561404-1 43 -0.065210 hybrid +139_2-11 Q0 MARCO_03_1758770549-2 44 -0.067304 hybrid +139_2-11 Q0 MARCO_11_735247024-15 45 -0.068781 hybrid +139_2-11 Q0 MARCO_11_735247024-10 46 -0.069052 hybrid +139_2-11 Q0 MARCO_03_932920353-3 47 -0.071327 hybrid +139_2-11 Q0 MARCO_41_709042212-11 48 -0.078575 hybrid +139_2-11 Q0 MARCO_29_1219423315-2 49 -0.078967 hybrid +139_2-11 Q0 MARCO_54_168272700-1 50 -0.080806 hybrid +139_2-11 Q0 MARCO_20_1079120036-5 51 -0.082644 hybrid +139_2-11 Q0 MARCO_55_1288243942-23 52 -0.084512 hybrid +139_2-11 Q0 MARCO_54_168282050-1 53 -0.096176 hybrid +139_2-11 Q0 MARCO_22_931435635-2 54 -0.097080 hybrid +139_2-11 Q0 MARCO_50_142075605-230 55 -0.097261 hybrid +139_2-11 Q0 MARCO_51_708535173-1 56 -0.098451 hybrid +139_2-11 Q0 MARCO_11_1484668804-1 57 -0.103198 hybrid +139_2-11 Q0 MARCO_53_880160990-14 58 -0.104328 hybrid +139_2-11 Q0 MARCO_50_2453789934-57 59 -0.105910 hybrid +139_2-11 Q0 MARCO_58_1499437200-1 60 -0.106076 hybrid +139_2-11 Q0 MARCO_41_709042212-9 61 -0.106392 hybrid +139_2-11 Q0 MARCO_10_413136154-1 62 -0.113520 hybrid +139_2-11 Q0 MARCO_30_1513644633-8 63 -0.121355 hybrid +139_2-11 Q0 MARCO_03_1766812192-5 64 -0.124233 hybrid +139_2-11 Q0 MARCO_57_1574362384-1 65 -0.125213 hybrid +139_2-11 Q0 MARCO_11_1038960623-8 66 -0.125800 hybrid +139_2-11 Q0 MARCO_50_1139372387-9 67 -0.125981 hybrid +139_2-11 Q0 MARCO_04_230255917-3 68 -0.129718 hybrid +139_2-11 Q0 MARCO_50_1269367723-19 69 -0.132129 hybrid +139_2-11 Q0 MARCO_09_1786810816-1 70 -0.136032 hybrid +139_2-11 Q0 MARCO_55_1606309601-1 71 -0.137509 hybrid +139_2-11 Q0 MARCO_15_1665745515-1 72 -0.140387 hybrid +139_2-11 Q0 MARCO_50_142569101-147 73 -0.140492 hybrid +139_2-11 Q0 MARCO_04_153615410-2 74 -0.140718 hybrid +139_2-11 Q0 MARCO_50_2265614905-44 75 -0.140884 hybrid +139_2-11 Q0 MARCO_48_1012362415-55 76 -0.142753 hybrid +139_2-11 Q0 MARCO_16_53252270-5 77 -0.143627 hybrid +139_2-11 Q0 MARCO_22_1677007173-9 78 -0.145284 hybrid +139_2-11 Q0 MARCO_36_577031378-3 79 -0.145586 hybrid +139_2-11 Q0 MARCO_06_1786664432-2 80 -0.146882 hybrid +139_2-11 Q0 MARCO_03_1766834055-2 81 -0.153451 hybrid +139_2-11 Q0 MARCO_50_2404117193-13 82 -0.156164 hybrid +139_2-11 Q0 MARCO_55_1599415937-8 83 -0.156556 hybrid +139_2-11 Q0 MARCO_04_177430836-3 84 -0.160941 hybrid +139_2-11 Q0 MARCO_37_1225565708-5 85 -0.162553 hybrid +139_2-11 Q0 MARCO_50_2230310958-7 86 -0.164180 hybrid +139_2-11 Q0 MARCO_11_860367198-1 87 -0.167465 hybrid +139_2-11 Q0 MARCO_40_1241379986-11 88 -0.171549 hybrid +139_2-11 Q0 MARCO_19_1917194315-1 89 -0.172287 hybrid +139_2-11 Q0 MARCO_16_419484728-1 90 -0.172468 hybrid +139_2-11 Q0 MARCO_14_752124532-6 91 -0.172649 hybrid +139_2-11 Q0 MARCO_48_1525234972-8 92 -0.174593 hybrid +139_2-11 Q0 MARCO_50_1594307184-18 93 -0.175211 hybrid +139_2-11 Q0 MARCO_50_2453789934-84 94 -0.175874 hybrid +139_2-11 Q0 MARCO_50_1278578409-27 95 -0.176024 hybrid +139_2-11 Q0 MARCO_50_2231383508-1 96 -0.176296 hybrid +139_2-11 Q0 MARCO_01_1847313812-1 97 -0.176672 hybrid +139_2-11 Q0 MARCO_03_1704096713-2 98 -0.178194 hybrid +139_2-11 Q0 MARCO_55_1286916478-1 99 -0.178360 hybrid +139_2-11 Q0 MARCO_50_1279667306-9 100 -0.178435 hybrid +139_2-13 Q0 MARCO_03_1799692237-2 1 0.500000 hybrid +139_2-13 Q0 MARCO_53_1028122158-1 2 0.496099 hybrid +139_2-13 Q0 MARCO_55_1658469788-5 3 0.486667 hybrid +139_2-13 Q0 MARCO_03_417885978-1 4 0.464313 hybrid +139_2-13 Q0 MARCO_40_1387930006-1 5 0.461348 hybrid +139_2-13 Q0 MARCO_03_109411891-1 6 0.409171 hybrid +139_2-13 Q0 MARCO_58_1494926115-3 7 0.395210 hybrid +139_2-13 Q0 MARCO_53_847900852-1 8 0.380978 hybrid +139_2-13 Q0 MARCO_53_847326536-3 9 0.378091 hybrid +139_2-13 Q0 MARCO_50_1976647136-18 10 0.368338 hybrid +139_2-13 Q0 MARCO_09_1780339664-4 11 0.354261 hybrid +139_2-13 Q0 MARCO_42_1443537043-6 12 0.343905 hybrid +139_2-13 Q0 MARCO_31_1319602620-1 13 0.332728 hybrid +139_2-13 Q0 MARCO_50_2056875471-15 14 0.330033 hybrid +139_2-13 Q0 MARCO_30_92494994-5 15 0.326928 hybrid +139_2-13 Q0 MARCO_41_2125966972-2 16 0.323309 hybrid +139_2-13 Q0 MARCO_07_1231136368-2 17 0.322565 hybrid +139_2-13 Q0 MARCO_46_250160478-2 18 0.322564 hybrid +139_2-13 Q0 MARCO_22_959148357-1 19 0.302315 hybrid +139_2-13 Q0 MARCO_18_3560969961-28 20 0.288995 hybrid +139_2-13 Q0 MARCO_03_109417930-1 21 0.288571 hybrid +139_2-13 Q0 MARCO_01_782255464-1 22 0.277805 hybrid +139_2-13 Q0 MARCO_10_522315065-1 23 0.274892 hybrid +139_2-13 Q0 MARCO_09_344751762-1 24 0.272659 hybrid +139_2-13 Q0 MARCO_19_2049478817-1 25 0.270939 hybrid +139_2-13 Q0 MARCO_53_1028118811-1 26 0.267423 hybrid +139_2-13 Q0 MARCO_10_566543307-1 27 0.265434 hybrid +139_2-13 Q0 MARCO_04_225728628-1 28 0.265011 hybrid +139_2-13 Q0 MARCO_09_668443100-1 29 0.255682 hybrid +139_2-13 Q0 MARCO_07_1231136368-4 30 0.254694 hybrid +139_2-13 Q0 MARCO_46_250160478-4 31 0.254693 hybrid +139_2-13 Q0 MARCO_09_668443100-2 32 0.240424 hybrid +139_2-13 Q0 MARCO_22_969313019-2 33 0.236779 hybrid +139_2-13 Q0 MARCO_00_16373164-4 34 0.232801 hybrid +139_2-13 Q0 MARCO_58_1155030887-4 35 0.232788 hybrid +139_2-13 Q0 MARCO_30_1169762783-4 36 0.230158 hybrid +139_2-13 Q0 MARCO_05_1606072199-1 37 0.224653 hybrid +139_2-13 Q0 MARCO_01_782343151-1 38 0.216517 hybrid +139_2-13 Q0 MARCO_58_1425662545-2 39 0.215785 hybrid +139_2-13 Q0 MARCO_04_222650713-1 40 0.207957 hybrid +139_2-13 Q0 MARCO_07_302777999-2 41 0.206674 hybrid +139_2-13 Q0 MARCO_09_1081478967-1 42 0.204929 hybrid +139_2-13 Q0 MARCO_55_134814551-1 43 0.201695 hybrid +139_2-13 Q0 MARCO_06_118129943-3 44 0.191339 hybrid +139_2-13 Q0 MARCO_50_2056875471-1 45 0.191031 hybrid +139_2-13 Q0 MARCO_46_1281483456-2 46 0.187579 hybrid +139_2-13 Q0 MARCO_10_1410563140-1 47 0.186604 hybrid +139_2-13 Q0 MARCO_22_969313019-1 48 0.181227 hybrid +139_2-13 Q0 KILT_49383962-1 49 0.174015 hybrid +139_2-13 Q0 MARCO_06_118129943-1 50 0.173964 hybrid +139_2-13 Q0 MARCO_08_1751713361-1 51 0.168061 hybrid +139_2-13 Q0 MARCO_06_1787324837-3 52 0.164789 hybrid +139_2-13 Q0 MARCO_49_1382824307-10 53 0.162979 hybrid +139_2-13 Q0 KILT_13138513-1 54 0.161940 hybrid +139_2-13 Q0 MARCO_58_1494943388-1 55 0.149621 hybrid +139_2-13 Q0 MARCO_45_811743473-1 56 0.127806 hybrid +139_2-13 Q0 MARCO_09_182073554-1 57 0.124366 hybrid +139_2-13 Q0 MARCO_04_101224264-4 58 0.116975 hybrid +139_2-13 Q0 MARCO_33_589324189-1 59 0.116192 hybrid +139_2-13 Q0 MARCO_01_782340366-1 60 0.114165 hybrid +139_2-13 Q0 MARCO_01_1088907354-1 61 0.111688 hybrid +139_2-13 Q0 MARCO_46_248743863-15 62 0.110507 hybrid +139_2-13 Q0 MARCO_09_1081496511-1 63 0.108711 hybrid +139_2-13 Q0 MARCO_30_345474285-7 64 0.104874 hybrid +139_2-13 Q0 MARCO_06_118113063-2 65 0.104861 hybrid +139_2-13 Q0 MARCO_56_217694377-1 66 0.100305 hybrid +139_2-13 Q0 MARCO_47_566773728-2 67 0.094325 hybrid +139_2-13 Q0 MARCO_24_583470793-1 68 0.092490 hybrid +139_2-13 Q0 MARCO_30_12340774-1 69 0.090976 hybrid +139_2-13 Q0 MARCO_16_403270218-2 70 0.090822 hybrid +139_2-13 Q0 MARCO_58_1146873160-1 71 0.088820 hybrid +139_2-13 Q0 MARCO_07_1231136368-1 72 0.082058 hybrid +139_2-13 Q0 MARCO_46_250160478-1 73 0.082057 hybrid +139_2-13 Q0 MARCO_18_477374892-11 74 0.078233 hybrid +139_2-13 Q0 MARCO_40_1298954370-6 75 0.076437 hybrid +139_2-13 Q0 MARCO_00_767771741-16 76 0.072626 hybrid +139_2-13 Q0 MARCO_50_2662673242-6 77 0.072202 hybrid +139_2-13 Q0 MARCO_16_2789589129-3 78 0.069084 hybrid +139_2-13 Q0 MARCO_22_959148357-2 79 0.061500 hybrid +139_2-13 Q0 MARCO_01_782337280-1 80 0.060922 hybrid +139_2-13 Q0 MARCO_58_1494943388-2 81 0.058112 hybrid +139_2-13 Q0 MARCO_47_566773728-3 82 0.057586 hybrid +139_2-13 Q0 MARCO_24_33154769-1 83 0.053287 hybrid +139_2-13 Q0 MARCO_58_1517976865-1 84 0.051336 hybrid +139_2-13 Q0 MARCO_49_1382824307-2 85 0.048962 hybrid +139_2-13 Q0 MARCO_50_1202432836-25 86 0.048770 hybrid +139_2-13 Q0 MARCO_20_766456170-3 87 0.047884 hybrid +139_2-13 Q0 MARCO_19_1805586907-3 88 0.047397 hybrid +139_2-13 Q0 MARCO_58_1154465212-2 89 0.046948 hybrid +139_2-13 Q0 MARCO_46_253467946-2 90 0.045151 hybrid +139_2-13 Q0 MARCO_50_2141096457-10 91 0.044792 hybrid +139_2-13 Q0 MARCO_04_786828265-1 92 0.041455 hybrid +139_2-13 Q0 MARCO_03_109437865-2 93 0.038183 hybrid +139_2-13 Q0 MARCO_38_125698486-11 94 0.036053 hybrid +139_2-13 Q0 MARCO_52_871693549-2 95 0.034834 hybrid +139_2-13 Q0 MARCO_06_118113063-6 96 0.031382 hybrid +139_2-13 Q0 MARCO_51_1634693693-2 97 0.028405 hybrid +139_2-13 Q0 MARCO_44_208787116-6 98 0.019614 hybrid +139_2-13 Q0 MARCO_03_1316364463-1 99 0.019601 hybrid +139_2-13 Q0 MARCO_49_1382824307-12 100 0.019460 hybrid +139_2-15 Q0 MARCO_04_226143120-4 1 0.500000 hybrid +139_2-15 Q0 MARCO_11_267211801-58 2 0.296541 hybrid +139_2-15 Q0 MARCO_15_131918859-1 3 0.246852 hybrid +139_2-15 Q0 MARCO_56_1875212486-4 4 0.233794 hybrid +139_2-15 Q0 MARCO_20_1636520521-1 5 0.224947 hybrid +139_2-15 Q0 MARCO_06_933601323-1 6 0.223033 hybrid +139_2-15 Q0 MARCO_52_233873450-3 7 0.208785 hybrid +139_2-15 Q0 MARCO_24_1653699550-1 8 0.201443 hybrid +139_2-15 Q0 MARCO_33_865959304-1 9 0.196370 hybrid +139_2-15 Q0 MARCO_24_1866677824-1 10 0.190504 hybrid +139_2-15 Q0 MARCO_15_134315224-2 11 0.189068 hybrid +139_2-15 Q0 MARCO_01_782316179-1 12 0.170636 hybrid +139_2-15 Q0 MARCO_32_389113202-2 13 0.169980 hybrid +139_2-15 Q0 MARCO_12_414891901-1 14 0.166781 hybrid +139_2-15 Q0 MARCO_33_863953162-1 15 0.161188 hybrid +139_2-15 Q0 MARCO_50_715162476-1 16 0.155992 hybrid +139_2-15 Q0 MARCO_04_74746223-1 17 0.155856 hybrid +139_2-15 Q0 MARCO_06_933624139-1 18 0.148007 hybrid +139_2-15 Q0 MARCO_38_266692016-3 19 0.147597 hybrid +139_2-15 Q0 MARCO_33_735600712-1 20 0.144042 hybrid +139_2-15 Q0 MARCO_30_1985156903-7 21 0.141936 hybrid +139_2-15 Q0 MARCO_04_78577922-4 22 0.137397 hybrid +139_2-15 Q0 MARCO_36_1657050914-1 23 0.136399 hybrid +139_2-15 Q0 MARCO_19_2051990023-5 24 0.136070 hybrid +139_2-15 Q0 MARCO_32_586895629-13 25 0.129958 hybrid +139_2-15 Q0 MARCO_52_233873450-5 26 0.125473 hybrid +139_2-15 Q0 MARCO_06_688995972-1 27 0.118076 hybrid +139_2-15 Q0 MARCO_58_1722763649-1 28 0.113318 hybrid +139_2-15 Q0 MARCO_45_816843258-2 29 0.109462 hybrid +139_2-15 Q0 MARCO_34_51783652-2 30 0.108573 hybrid +139_2-15 Q0 MARCO_19_1805530637-4 31 0.097388 hybrid +139_2-15 Q0 MARCO_54_221961904-1 32 0.092931 hybrid +139_2-15 Q0 MARCO_52_233783756-4 33 0.086327 hybrid +139_2-15 Q0 MARCO_15_1942604140-1 34 0.078779 hybrid +139_2-15 Q0 MARCO_15_588365057-1 35 0.078506 hybrid +139_2-15 Q0 KILT_70983-1 36 0.078150 hybrid +139_2-15 Q0 MARCO_20_1636518258-2 37 0.075730 hybrid +139_2-15 Q0 MARCO_03_442514811-4 38 0.067977 hybrid +139_2-15 Q0 MARCO_53_551701401-3 39 0.065817 hybrid +139_2-15 Q0 MARCO_33_735600712-2 40 0.065188 hybrid +139_2-15 Q0 MARCO_02_23367761-1 41 0.062248 hybrid +139_2-15 Q0 MARCO_33_864586256-2 42 0.060894 hybrid +139_2-15 Q0 MARCO_36_1657050914-2 43 0.060471 hybrid +139_2-15 Q0 MARCO_55_1675124152-1 44 0.055233 hybrid +139_2-15 Q0 MARCO_30_1004298367-1 45 0.054673 hybrid +139_2-15 Q0 MARCO_27_458330320-1 46 0.050762 hybrid +139_2-15 Q0 MARCO_40_1782128286-4 47 0.048848 hybrid +139_2-15 Q0 MARCO_58_1519122011-1 48 0.048670 hybrid +139_2-15 Q0 MARCO_27_459056140-1 49 0.047672 hybrid +139_2-15 Q0 MARCO_32_389113202-1 50 0.045840 hybrid +139_2-15 Q0 MARCO_34_51795653-1 51 0.043269 hybrid +139_2-15 Q0 MARCO_52_233873450-4 52 0.038689 hybrid +139_2-15 Q0 MARCO_10_1411108473-5 53 0.037472 hybrid +139_2-15 Q0 MARCO_04_78577922-3 54 0.034751 hybrid +139_2-15 Q0 MARCO_30_1179900441-3 55 0.031414 hybrid +139_2-15 Q0 MARCO_26_721402881-1 56 0.030239 hybrid +139_2-15 Q0 MARCO_29_1446691039-2 57 0.028584 hybrid +139_2-15 Q0 MARCO_01_1088611998-1 58 0.024291 hybrid +139_2-15 Q0 MARCO_04_470363392-1 59 0.023621 hybrid +139_2-15 Q0 MARCO_04_470714367-1 60 0.023621 hybrid +139_2-15 Q0 MARCO_30_91898173-4 61 0.021488 hybrid +139_2-15 Q0 MARCO_41_758942686-5 62 0.018999 hybrid +139_2-15 Q0 MARCO_36_1004519590-1 63 0.017140 hybrid +139_2-15 Q0 MARCO_02_1080465547-2 64 0.015389 hybrid +139_2-15 Q0 MARCO_55_1727330288-2 65 0.012094 hybrid +139_2-15 Q0 MARCO_41_2017120576-1 66 0.010850 hybrid +139_2-15 Q0 MARCO_49_1444487440-2 67 0.010590 hybrid +139_2-15 Q0 MARCO_58_1479702106-5 68 0.005791 hybrid +139_2-15 Q0 MARCO_04_226143120-3 69 -0.003726 hybrid +139_2-15 Q0 MARCO_06_933618262-1 70 -0.008047 hybrid +139_2-15 Q0 MARCO_04_662056154-1 71 -0.010467 hybrid +139_2-15 Q0 KILT_51017707-1 72 -0.012655 hybrid +139_2-15 Q0 MARCO_33_864786430-4 73 -0.014883 hybrid +139_2-15 Q0 MARCO_55_1245003267-3 74 -0.014897 hybrid +139_2-15 Q0 MARCO_23_153889814-8 75 -0.018192 hybrid +139_2-15 Q0 MARCO_00_885435574-4 76 -0.020366 hybrid +139_2-15 Q0 MARCO_07_674063770-3 77 -0.020900 hybrid +139_2-15 Q0 MARCO_09_1802486685-5 78 -0.022541 hybrid +139_2-15 Q0 MARCO_23_153889814-1 79 -0.022882 hybrid +139_2-15 Q0 MARCO_25_820995282-3 80 -0.025549 hybrid +139_2-15 Q0 MARCO_05_296592401-2 81 -0.025672 hybrid +139_2-15 Q0 MARCO_50_683316213-1 82 -0.025672 hybrid +139_2-15 Q0 MARCO_30_151874420-2 83 -0.027818 hybrid +139_2-15 Q0 MARCO_03_1138937037-2 84 -0.029992 hybrid +139_2-15 Q0 MARCO_15_588365057-7 85 -0.030471 hybrid +139_2-15 Q0 MARCO_19_2051990023-6 86 -0.030621 hybrid +139_2-15 Q0 MARCO_24_1653692745-1 87 -0.030704 hybrid +139_2-15 Q0 MARCO_30_345474285-12 88 -0.031045 hybrid +139_2-15 Q0 MARCO_13_467770045-1 89 -0.031086 hybrid +139_2-15 Q0 MARCO_15_132265984-1 90 -0.032727 hybrid +139_2-15 Q0 MARCO_05_1368032089-2 91 -0.033684 hybrid +139_2-15 Q0 MARCO_41_1793041917-1 92 -0.035886 hybrid +139_2-15 Q0 MARCO_58_1501182002-7 93 -0.036227 hybrid +139_2-15 Q0 MARCO_19_2051990023-16 94 -0.038812 hybrid +139_2-15 Q0 MARCO_33_138676065-1 95 -0.040275 hybrid +139_2-15 Q0 MARCO_32_387484335-4 96 -0.048711 hybrid +139_2-15 Q0 MARCO_19_1595706616-2 97 -0.051268 hybrid +139_2-15 Q0 MARCO_11_1217230203-1 98 -0.053251 hybrid +139_2-15 Q0 MARCO_34_51783652-5 99 -0.053634 hybrid +139_2-15 Q0 MARCO_36_1657050914-4 100 -0.054044 hybrid +139_2-17 Q0 MARCO_15_296401490-1 1 0.500000 hybrid +139_2-17 Q0 MARCO_22_332955208-14 2 0.490383 hybrid +139_2-17 Q0 MARCO_08_23873421-2 3 0.484841 hybrid +139_2-17 Q0 MARCO_46_1281483456-1 4 0.476481 hybrid +139_2-17 Q0 MARCO_56_1251028907-8 5 0.459831 hybrid +139_2-17 Q0 MARCO_30_1924631494-6 6 0.454219 hybrid +139_2-17 Q0 MARCO_17_1649032852-19 7 0.427557 hybrid +139_2-17 Q0 MARCO_30_1924360724-7 8 0.415937 hybrid +139_2-17 Q0 MARCO_07_792613825-1 9 0.407437 hybrid +139_2-17 Q0 MARCO_19_1805473275-4 10 0.392139 hybrid +139_2-17 Q0 MARCO_25_1069024729-7 11 0.389065 hybrid +139_2-17 Q0 MARCO_49_434009659-2 12 0.377003 hybrid +139_2-17 Q0 MARCO_01_1180303346-24 13 0.375652 hybrid +139_2-17 Q0 MARCO_03_928526805-1 14 0.358280 hybrid +139_2-17 Q0 MARCO_55_1278800307-4 15 0.356464 hybrid +139_2-17 Q0 MARCO_49_1456709203-2 16 0.324935 hybrid +139_2-17 Q0 MARCO_58_1485580408-1 17 0.299786 hybrid +139_2-17 Q0 MARCO_58_1501182002-15 18 0.298202 hybrid +139_2-17 Q0 MARCO_27_1067996191-1 19 0.264531 hybrid +139_2-17 Q0 MARCO_30_1984905172-10 20 0.263436 hybrid +139_2-17 Q0 MARCO_30_1924631494-4 21 0.260945 hybrid +139_2-17 Q0 MARCO_56_1863104864-5 22 0.253097 hybrid +139_2-17 Q0 MARCO_47_1258555487-1 23 0.246018 hybrid +139_2-17 Q0 MARCO_31_478744800-1 24 0.243457 hybrid +139_2-17 Q0 MARCO_07_674063770-1 25 0.233886 hybrid +139_2-17 Q0 MARCO_44_50642952-1 26 0.223943 hybrid +139_2-17 Q0 MARCO_52_876501676-2 27 0.222615 hybrid +139_2-17 Q0 MARCO_20_1155271384-1 28 0.221661 hybrid +139_2-17 Q0 MARCO_43_367747095-13 29 0.211275 hybrid +139_2-17 Q0 MARCO_48_1840360738-1 30 0.211019 hybrid +139_2-17 Q0 MARCO_03_928526805-7 31 0.205710 hybrid +139_2-17 Q0 MARCO_30_1925129417-1 32 0.198072 hybrid +139_2-17 Q0 MARCO_00_790685630-1 33 0.196768 hybrid +139_2-17 Q0 MARCO_47_1588867018-1 34 0.173738 hybrid +139_2-17 Q0 MARCO_32_1821905864-3 35 0.168429 hybrid +139_2-17 Q0 MARCO_54_491974833-14 36 0.166240 hybrid +139_2-17 Q0 MARCO_00_3084409-1 37 0.165075 hybrid +139_2-17 Q0 MARCO_30_1925445473-1 38 0.162933 hybrid +139_2-17 Q0 KILT_46986-1 39 0.161419 hybrid +139_2-17 Q0 MARCO_02_1546030744-1 40 0.136829 hybrid +139_2-17 Q0 MARCO_30_1070883181-1 41 0.136503 hybrid +139_2-17 Q0 MARCO_09_1286129239-4 42 0.128353 hybrid +139_2-17 Q0 MARCO_20_722527545-1 43 0.115918 hybrid +139_2-17 Q0 MARCO_13_1449590936-1 44 0.111168 hybrid +139_2-17 Q0 MARCO_55_1725945113-1 45 0.110353 hybrid +139_2-17 Q0 MARCO_02_1546030744-3 46 0.107256 hybrid +139_2-17 Q0 MARCO_03_928526805-10 47 0.106348 hybrid +139_2-17 Q0 MARCO_30_1925445473-6 48 0.104811 hybrid +139_2-17 Q0 MARCO_30_347171254-4 49 0.103344 hybrid +139_2-17 Q0 MARCO_07_488649384-1 50 0.099548 hybrid +139_2-17 Q0 MARCO_38_1487978435-2 51 0.097243 hybrid +139_2-17 Q0 MARCO_29_1526024371-1 52 0.093354 hybrid +139_2-17 Q0 MARCO_09_344678610-1 53 0.086485 hybrid +139_2-17 Q0 MARCO_30_1511531130-7 54 0.084179 hybrid +139_2-17 Q0 MARCO_27_1773817725-1 55 0.083434 hybrid +139_2-17 Q0 MARCO_20_1351858174-11 56 0.080780 hybrid +139_2-17 Q0 MARCO_30_1951945279-6 57 0.080430 hybrid +139_2-17 Q0 MARCO_01_2126091627-7 58 0.078940 hybrid +139_2-17 Q0 MARCO_30_1980783050-26 59 0.077776 hybrid +139_2-17 Q0 MARCO_38_1499716167-2 60 0.076076 hybrid +139_2-17 Q0 MARCO_56_1851308952-5 61 0.075540 hybrid +139_2-17 Q0 MARCO_55_1410079020-3 62 0.074213 hybrid +139_2-17 Q0 MARCO_58_1501182002-13 63 0.073212 hybrid +139_2-17 Q0 MARCO_11_331124980-1 64 0.072792 hybrid +139_2-17 Q0 MARCO_48_1850690322-1 65 0.072350 hybrid +139_2-17 Q0 MARCO_17_1625700623-2 66 0.066761 hybrid +139_2-17 Q0 MARCO_32_726639828-3 67 0.066575 hybrid +139_2-17 Q0 MARCO_16_3219197191-5 68 0.065946 hybrid +139_2-17 Q0 MARCO_20_1606291389-5 69 0.059869 hybrid +139_2-17 Q0 MARCO_20_1606026122-1 70 0.059868 hybrid +139_2-17 Q0 MARCO_24_34340549-1 71 0.057680 hybrid +139_2-17 Q0 MARCO_20_1606032002-1 72 0.052953 hybrid +139_2-17 Q0 MARCO_30_1155682688-13 73 0.049623 hybrid +139_2-17 Q0 MARCO_56_1863127111-5 74 0.046875 hybrid +139_2-17 Q0 MARCO_24_35973780-5 75 0.036885 hybrid +139_2-17 Q0 MARCO_12_1323104896-7 76 0.036070 hybrid +139_2-17 Q0 MARCO_32_726639828-1 77 0.035325 hybrid +139_2-17 Q0 MARCO_40_793941095-1 78 0.035185 hybrid +139_2-17 Q0 MARCO_17_1217065107-8 79 0.034068 hybrid +139_2-17 Q0 MARCO_30_1981042684-14 80 0.032391 hybrid +139_2-17 Q0 MARCO_58_1148862610-2 81 0.030458 hybrid +139_2-17 Q0 MARCO_57_637245196-1 82 0.030016 hybrid +139_2-17 Q0 MARCO_29_1526024371-5 83 0.029899 hybrid +139_2-17 Q0 MARCO_47_1258800843-3 84 0.028945 hybrid +139_2-17 Q0 MARCO_38_125698486-9 85 0.028665 hybrid +139_2-17 Q0 MARCO_19_1805456724-1 86 0.024194 hybrid +139_2-17 Q0 MARCO_30_1169651827-7 87 0.023030 hybrid +139_2-17 Q0 MARCO_13_157424877-1 88 0.022634 hybrid +139_2-17 Q0 MARCO_47_1258782808-1 89 0.021772 hybrid +139_2-17 Q0 MARCO_55_1393663608-2 90 0.021470 hybrid +139_2-17 Q0 MARCO_48_1524811571-19 91 0.020375 hybrid +139_2-17 Q0 MARCO_55_248101630-14 92 0.019747 hybrid +139_2-17 Q0 MARCO_41_1993579353-4 93 0.016999 hybrid +139_2-17 Q0 MARCO_54_573053284-1 94 0.016999 hybrid +139_2-17 Q0 MARCO_55_1709550013-7 95 0.016603 hybrid +139_2-17 Q0 MARCO_48_1852078191-1 96 0.014507 hybrid +139_2-17 Q0 MARCO_30_1924959982-28 97 0.013948 hybrid +139_2-17 Q0 MARCO_19_1930585014-1 98 0.010572 hybrid +139_2-17 Q0 MARCO_45_1309727404-1 99 0.009594 hybrid +139_2-17 Q0 MARCO_23_151124648-1 100 0.004890 hybrid +139_2-19 Q0 KILT_58206186-2 1 0.500000 hybrid +139_2-19 Q0 MARCO_05_965907775-1 2 0.406119 hybrid +139_2-19 Q0 MARCO_05_1883058231-258 3 0.360642 hybrid +139_2-19 Q0 MARCO_44_1051951835-11 4 0.280639 hybrid +139_2-19 Q0 MARCO_44_1483498128-1 5 0.267102 hybrid +139_2-19 Q0 MARCO_01_149997882-7 6 0.217183 hybrid +139_2-19 Q0 MARCO_05_1883058231-259 7 0.212059 hybrid +139_2-19 Q0 MARCO_31_1145483425-20 8 0.151913 hybrid +139_2-19 Q0 MARCO_58_1147102400-16 9 0.143821 hybrid +139_2-19 Q0 KILT_38355089-6 10 0.143394 hybrid +139_2-19 Q0 KILT_56436309-1 11 0.136476 hybrid +139_2-19 Q0 MARCO_05_1883058231-257 12 0.080899 hybrid +139_2-19 Q0 KILT_561874-9 13 0.060701 hybrid +139_2-19 Q0 MARCO_05_1158742223-4 14 0.047720 hybrid +139_2-19 Q0 KILT_3290313-2 15 0.045371 hybrid +139_2-19 Q0 KILT_35815426-1 16 0.032561 hybrid +139_2-19 Q0 MARCO_54_1522279287-7 17 0.031279 hybrid +139_2-19 Q0 MARCO_31_1135061448-57 18 0.028760 hybrid +139_2-19 Q0 KILT_45632133-18 19 0.026625 hybrid +139_2-19 Q0 KILT_11182-47 20 0.019323 hybrid +139_2-19 Q0 MARCO_18_257412923-10 21 0.005295 hybrid +139_2-19 Q0 MARCO_19_1393617347-1 22 -0.008497 hybrid +139_2-19 Q0 MARCO_03_205455923-2 23 -0.021564 hybrid +139_2-19 Q0 KILT_4946907-2 24 -0.025621 hybrid +139_2-19 Q0 KILT_14924687-1 25 -0.031962 hybrid +139_2-19 Q0 MARCO_26_1807535623-26 26 -0.042702 hybrid +139_2-19 Q0 MARCO_42_1294359321-32 27 -0.045157 hybrid +139_2-19 Q0 KILT_35471967-3 28 -0.053164 hybrid +139_2-19 Q0 MARCO_35_34939583-1 29 -0.056623 hybrid +139_2-19 Q0 MARCO_07_1314467352-4 30 -0.057989 hybrid +139_2-19 Q0 KILT_35333953-8 31 -0.062857 hybrid +139_2-19 Q0 MARCO_26_1807535623-28 32 -0.066316 hybrid +139_2-19 Q0 MARCO_17_1262084336-2 33 -0.067555 hybrid +139_2-19 Q0 MARCO_40_1349180600-11 34 -0.068708 hybrid +139_2-19 Q0 MARCO_55_295865117-6 35 -0.068836 hybrid +139_2-19 Q0 MARCO_32_1200106444-2 36 -0.069583 hybrid +139_2-19 Q0 KILT_21739179-1 37 -0.086066 hybrid +139_2-19 Q0 MARCO_35_15102795-2 38 -0.089867 hybrid +139_2-19 Q0 MARCO_46_626568448-1 39 -0.094436 hybrid +139_2-19 Q0 MARCO_35_15102795-3 40 -0.096315 hybrid +139_2-19 Q0 MARCO_16_4218910771-28 41 -0.104727 hybrid +139_2-19 Q0 MARCO_52_1236210091-17 42 -0.106072 hybrid +139_2-19 Q0 KILT_52395705-9 43 -0.107994 hybrid +139_2-19 Q0 MARCO_18_4323670113-8 44 -0.108570 hybrid +139_2-19 Q0 KILT_192314-7 45 -0.108762 hybrid +139_2-19 Q0 MARCO_21_1386201033-1 46 -0.109467 hybrid +139_2-19 Q0 MARCO_17_1262084336-9 47 -0.109744 hybrid +139_2-19 Q0 MARCO_56_196895657-55 48 -0.112008 hybrid +139_2-19 Q0 KILT_964617-14 49 -0.113118 hybrid +139_2-19 Q0 MARCO_01_2117247644-2 50 -0.119715 hybrid +139_2-19 Q0 MARCO_25_585515677-1 51 -0.120676 hybrid +139_2-19 Q0 MARCO_37_484082058-2 52 -0.122363 hybrid +139_2-19 Q0 MARCO_30_855703551-4 53 -0.128469 hybrid +139_2-19 Q0 KILT_60310902-2 54 -0.132142 hybrid +139_2-19 Q0 KILT_13325558-9 55 -0.136241 hybrid +139_2-19 Q0 MARCO_06_1942550258-627 56 -0.137608 hybrid +139_2-19 Q0 MARCO_22_806333405-16 57 -0.137608 hybrid +139_2-19 Q0 KILT_2243390-10 58 -0.140618 hybrid +139_2-19 Q0 MARCO_18_3234188766-45 59 -0.142134 hybrid +139_2-19 Q0 MARCO_44_976836883-11 60 -0.145209 hybrid +139_2-19 Q0 MARCO_05_981910427-2 61 -0.146724 hybrid +139_2-19 Q0 MARCO_44_552827027-12 62 -0.149180 hybrid +139_2-19 Q0 KILT_16522290-42 63 -0.150290 hybrid +139_2-19 Q0 MARCO_19_551137585-44 64 -0.150290 hybrid +139_2-19 Q0 KILT_1367040-4 65 -0.151358 hybrid +139_2-19 Q0 MARCO_08_445805489-24 66 -0.152745 hybrid +139_2-19 Q0 MARCO_56_189715357-2 67 -0.162140 hybrid +139_2-19 Q0 MARCO_10_525839861-20 68 -0.163869 hybrid +139_2-19 Q0 KILT_7018181-7 69 -0.165343 hybrid +139_2-19 Q0 MARCO_10_197841164-3 70 -0.166047 hybrid +139_2-19 Q0 MARCO_49_892592905-72 71 -0.167414 hybrid +139_2-19 Q0 KILT_55863535-1 72 -0.168994 hybrid +139_2-19 Q0 MARCO_15_1995541100-2 73 -0.171919 hybrid +139_2-19 Q0 MARCO_03_109417930-2 74 -0.172645 hybrid +139_2-19 Q0 MARCO_17_1262084336-3 75 -0.175997 hybrid +139_2-19 Q0 MARCO_36_265463104-2 76 -0.178452 hybrid +139_2-19 Q0 KILT_2649445-8 77 -0.183043 hybrid +139_2-19 Q0 MARCO_47_1575683671-1 78 -0.183640 hybrid +139_2-19 Q0 MARCO_50_2056875471-16 79 -0.183641 hybrid +139_2-19 Q0 MARCO_17_4878513347-10 80 -0.184281 hybrid +139_2-19 Q0 KILT_2857833-11 81 -0.185583 hybrid +139_2-19 Q0 KILT_49417564-4 82 -0.185584 hybrid +139_2-19 Q0 MARCO_30_92573188-9 83 -0.185605 hybrid +139_2-19 Q0 KILT_413695-29 84 -0.188060 hybrid +139_2-19 Q0 MARCO_32_471560589-4 85 -0.190153 hybrid +139_2-19 Q0 KILT_57154764-2 86 -0.190452 hybrid +139_2-19 Q0 MARCO_18_1121182221-10 87 -0.191049 hybrid +139_2-19 Q0 MARCO_03_109411891-4 88 -0.192138 hybrid +139_2-19 Q0 MARCO_16_1788643653-29 89 -0.192864 hybrid +139_2-19 Q0 MARCO_26_1570697169-3 90 -0.193227 hybrid +139_2-19 Q0 MARCO_02_828620392-8 91 -0.194273 hybrid +139_2-19 Q0 KILT_457229-3 92 -0.195191 hybrid +139_2-19 Q0 MARCO_24_60289442-5 93 -0.195896 hybrid +139_2-19 Q0 MARCO_45_1518535801-5 94 -0.197092 hybrid +139_2-19 Q0 KILT_35706196-1 95 -0.199035 hybrid +139_2-19 Q0 KILT_23704-17 96 -0.201191 hybrid +139_2-19 Q0 KILT_45656536-8 97 -0.201191 hybrid +139_2-19 Q0 MARCO_05_1158742223-1 98 -0.201213 hybrid +139_2-19 Q0 MARCO_58_1517976865-1 99 -0.201469 hybrid +139_2-19 Q0 MARCO_02_956984933-26 100 -0.202024 hybrid +139_2-3 Q0 MARCO_55_985944679-1 1 0.500000 hybrid +139_2-3 Q0 MARCO_31_634624646-4 2 0.449991 hybrid +139_2-3 Q0 MARCO_41_1271021522-6 3 0.425216 hybrid +139_2-3 Q0 MARCO_41_1566695089-90 4 0.408088 hybrid +139_2-3 Q0 MARCO_50_2819154406-1 5 0.387612 hybrid +139_2-3 Q0 MARCO_34_1555173315-3 6 0.379824 hybrid +139_2-3 Q0 MARCO_50_898665724-22 7 0.340952 hybrid +139_2-3 Q0 MARCO_41_1182651126-35 8 0.310256 hybrid +139_2-3 Q0 MARCO_50_1831648722-63 9 0.289921 hybrid +139_2-3 Q0 MARCO_23_647701103-3 10 0.289392 hybrid +139_2-3 Q0 MARCO_56_69977451-9 11 0.285692 hybrid +139_2-3 Q0 MARCO_39_789911526-4 12 0.284634 hybrid +139_2-3 Q0 MARCO_47_127733848-1 13 0.275436 hybrid +139_2-3 Q0 MARCO_55_229044321-10 14 0.263947 hybrid +139_2-3 Q0 MARCO_10_1411108473-1 15 0.257991 hybrid +139_2-3 Q0 MARCO_01_1766675132-1 16 0.255454 hybrid +139_2-3 Q0 MARCO_09_690104171-7 17 0.251154 hybrid +139_2-3 Q0 MARCO_30_1646317998-1 18 0.250026 hybrid +139_2-3 Q0 MARCO_25_216322554-1 19 0.249146 hybrid +139_2-3 Q0 MARCO_41_1943381249-2 20 0.230326 hybrid +139_2-3 Q0 MARCO_00_545007325-7 21 0.222185 hybrid +139_2-3 Q0 MARCO_08_1257598126-1 22 0.187648 hybrid +139_2-3 Q0 MARCO_33_1130469866-2 23 0.161745 hybrid +139_2-3 Q0 MARCO_23_1137488780-4 24 0.158960 hybrid +139_2-3 Q0 MARCO_07_794950389-1 25 0.154767 hybrid +139_2-3 Q0 MARCO_58_1144692611-14 26 0.146626 hybrid +139_2-3 Q0 MARCO_07_726147938-112 27 0.133339 hybrid +139_2-3 Q0 MARCO_33_100289532-12 28 0.126291 hybrid +139_2-3 Q0 MARCO_12_1442123866-10 29 0.120687 hybrid +139_2-3 Q0 MARCO_30_1985156903-7 30 0.118819 hybrid +139_2-3 Q0 MARCO_12_1568718437-4 31 0.112123 hybrid +139_2-3 Q0 MARCO_58_1144340942-22 32 0.100670 hybrid +139_2-3 Q0 MARCO_50_1703427006-13 33 0.098273 hybrid +139_2-3 Q0 MARCO_41_1011990460-14 34 0.097604 hybrid +139_2-3 Q0 MARCO_41_1692386068-2 35 0.096123 hybrid +139_2-3 Q0 MARCO_58_1099930275-3 36 0.095912 hybrid +139_2-3 Q0 MARCO_07_1590509091-1 37 0.086044 hybrid +139_2-3 Q0 MARCO_56_1875212486-4 38 0.084916 hybrid +139_2-3 Q0 MARCO_30_366584652-1 39 0.070291 hybrid +139_2-3 Q0 MARCO_38_1703243778-30 40 0.051507 hybrid +139_2-3 Q0 MARCO_14_402261671-3 41 0.046009 hybrid +139_2-3 Q0 MARCO_46_177117764-1 42 0.043930 hybrid +139_2-3 Q0 MARCO_06_998760815-13 43 0.043084 hybrid +139_2-3 Q0 MARCO_30_593906514-3 44 0.042203 hybrid +139_2-3 Q0 MARCO_30_1985156903-29 45 0.038855 hybrid +139_2-3 Q0 MARCO_33_1135265883-1 46 0.036423 hybrid +139_2-3 Q0 MARCO_13_947554563-35 47 0.036000 hybrid +139_2-3 Q0 MARCO_41_1436835877-15 48 0.034097 hybrid +139_2-3 Q0 MARCO_28_1344653250-25 49 0.021022 hybrid +139_2-3 Q0 MARCO_50_900557509-23 50 0.015242 hybrid +139_2-3 Q0 MARCO_41_1131760042-21 51 0.009921 hybrid +139_2-3 Q0 MARCO_08_1518939197-1 52 0.003718 hybrid +139_2-3 Q0 MARCO_50_2730049882-2 53 0.002767 hybrid +139_2-3 Q0 MARCO_45_868164362-2 54 0.001392 hybrid +139_2-3 Q0 MARCO_02_611513016-5 55 0.000582 hybrid +139_2-3 Q0 MARCO_25_346386411-1 56 -0.001639 hybrid +139_2-3 Q0 MARCO_04_972118706-2 57 -0.004141 hybrid +139_2-3 Q0 MARCO_26_881226169-54 58 -0.004388 hybrid +139_2-3 Q0 MARCO_40_14162468-1 59 -0.004916 hybrid +139_2-3 Q0 MARCO_58_847045450-7 60 -0.009216 hybrid +139_2-3 Q0 MARCO_33_1133224735-1 61 -0.012599 hybrid +139_2-3 Q0 MARCO_42_624817396-1 62 -0.014185 hybrid +139_2-3 Q0 MARCO_41_847316286-1 63 -0.014255 hybrid +139_2-3 Q0 MARCO_41_1096831686-27 64 -0.017110 hybrid +139_2-3 Q0 MARCO_45_1643004431-2 65 -0.029550 hybrid +139_2-3 Q0 MARCO_09_512694124-1 66 -0.031383 hybrid +139_2-3 Q0 MARCO_03_933094194-19 67 -0.033956 hybrid +139_2-3 Q0 MARCO_27_439743834-2 68 -0.037691 hybrid +139_2-3 Q0 MARCO_48_1185538155-1 69 -0.041956 hybrid +139_2-3 Q0 MARCO_03_928448506-10 70 -0.042837 hybrid +139_2-3 Q0 MARCO_13_635172013-6 71 -0.045621 hybrid +139_2-3 Q0 MARCO_52_663208064-5 72 -0.047207 hybrid +139_2-3 Q0 MARCO_33_797271146-24 73 -0.053762 hybrid +139_2-3 Q0 MARCO_08_40306630-1 74 -0.055665 hybrid +139_2-3 Q0 MARCO_03_932508504-11 75 -0.065110 hybrid +139_2-3 Q0 MARCO_42_1104330752-7 76 -0.074767 hybrid +139_2-3 Q0 MARCO_25_820995282-1 77 -0.079735 hybrid +139_2-3 Q0 MARCO_32_1726822610-4 78 -0.081392 hybrid +139_2-3 Q0 MARCO_24_1257985168-11 79 -0.086150 hybrid +139_2-3 Q0 MARCO_09_1209578097-1 80 -0.087841 hybrid +139_2-3 Q0 MARCO_35_1304227730-1 81 -0.088511 hybrid +139_2-3 Q0 MARCO_07_943645192-5 82 -0.089110 hybrid +139_2-3 Q0 MARCO_09_498091929-12 83 -0.089110 hybrid +139_2-3 Q0 MARCO_42_1142033241-2 84 -0.092458 hybrid +139_2-3 Q0 MARCO_25_1239985067-38 85 -0.095700 hybrid +139_2-3 Q0 MARCO_41_1507393913-7 86 -0.097145 hybrid +139_2-3 Q0 MARCO_30_1983141093-6 87 -0.097709 hybrid +139_2-3 Q0 MARCO_23_894520987-2 88 -0.098379 hybrid +139_2-3 Q0 MARCO_24_1916425122-1 89 -0.098943 hybrid +139_2-3 Q0 MARCO_24_1387252020-2 90 -0.101515 hybrid +139_2-3 Q0 MARCO_34_878796231-1 91 -0.101938 hybrid +139_2-3 Q0 MARCO_30_1527556988-34 92 -0.102326 hybrid +139_2-3 Q0 MARCO_12_1530469982-13 93 -0.105110 hybrid +139_2-3 Q0 MARCO_03_933366425-13 94 -0.108141 hybrid +139_2-3 Q0 MARCO_15_621934266-40 95 -0.108352 hybrid +139_2-3 Q0 MARCO_29_1247176368-25 96 -0.109269 hybrid +139_2-3 Q0 MARCO_48_510851411-105 97 -0.110255 hybrid +139_2-3 Q0 MARCO_22_978280083-30 98 -0.110396 hybrid +139_2-3 Q0 MARCO_25_751605453-1 99 -0.111101 hybrid +139_2-3 Q0 MARCO_42_111531648-49 100 -0.111277 hybrid +139_2-5 Q0 MARCO_00_625037583-14 1 0.500000 hybrid +139_2-5 Q0 MARCO_36_271361360-2 2 0.462486 hybrid +139_2-5 Q0 MARCO_06_206237590-1 3 0.395118 hybrid +139_2-5 Q0 MARCO_50_2514575866-25 4 0.329525 hybrid +139_2-5 Q0 MARCO_55_1239355906-7 5 0.299111 hybrid +139_2-5 Q0 MARCO_06_932721148-3 6 0.277963 hybrid +139_2-5 Q0 MARCO_06_932678775-1 7 0.273927 hybrid +139_2-5 Q0 MARCO_50_2197026986-2 8 0.251901 hybrid +139_2-5 Q0 MARCO_09_1778418402-14 9 0.235031 hybrid +139_2-5 Q0 MARCO_23_152883294-10 10 0.232061 hybrid +139_2-5 Q0 MARCO_11_1439804503-1 11 0.228978 hybrid +139_2-5 Q0 MARCO_36_262272194-6 12 0.224681 hybrid +139_2-5 Q0 MARCO_36_264240797-1 13 0.215135 hybrid +139_2-5 Q0 MARCO_45_161376293-1 14 0.197966 hybrid +139_2-5 Q0 MARCO_06_932699426-7 15 0.192753 hybrid +139_2-5 Q0 MARCO_55_1243978905-1 16 0.160302 hybrid +139_2-5 Q0 MARCO_55_1239328465-6 17 0.157892 hybrid +139_2-5 Q0 MARCO_55_1239450077-1 18 0.148383 hybrid +139_2-5 Q0 MARCO_01_1193218265-1 19 0.138781 hybrid +139_2-5 Q0 MARCO_50_2514575866-28 20 0.136725 hybrid +139_2-5 Q0 MARCO_04_1445478233-9 21 0.135025 hybrid +139_2-5 Q0 MARCO_05_1067521560-2 22 0.133437 hybrid +139_2-5 Q0 MARCO_53_532580263-5 23 0.133363 hybrid +139_2-5 Q0 MARCO_36_262648261-4 24 0.129962 hybrid +139_2-5 Q0 MARCO_55_1239450077-3 25 0.115913 hybrid +139_2-5 Q0 MARCO_50_1205460493-1 26 0.105022 hybrid +139_2-5 Q0 MARCO_54_1976394015-7 27 0.104742 hybrid +139_2-5 Q0 MARCO_14_1241244465-15 28 0.099006 hybrid +139_2-5 Q0 MARCO_36_266028786-2 29 0.097213 hybrid +139_2-5 Q0 MARCO_50_2514575866-42 30 0.071450 hybrid +139_2-5 Q0 MARCO_29_1389593918-1 31 0.064108 hybrid +139_2-5 Q0 MARCO_25_1416484797-13 32 0.063846 hybrid +139_2-5 Q0 MARCO_09_344733768-1 33 0.050657 hybrid +139_2-5 Q0 MARCO_50_1594509521-31 34 0.029415 hybrid +139_2-5 Q0 MARCO_38_180317462-3 35 0.025772 hybrid +139_2-5 Q0 MARCO_13_1547919406-2 36 0.018505 hybrid +139_2-5 Q0 MARCO_06_932662112-6 37 0.014637 hybrid +139_2-5 Q0 MARCO_50_2141242685-32 38 -0.013759 hybrid +139_2-5 Q0 MARCO_32_1837505028-3 39 -0.025156 hybrid +139_2-5 Q0 MARCO_58_1151079678-5 40 -0.026744 hybrid +139_2-5 Q0 MARCO_51_287562029-6 41 -0.029527 hybrid +139_2-5 Q0 MARCO_50_2514575866-38 42 -0.035188 hybrid +139_2-5 Q0 MARCO_02_269014256-1 43 -0.036141 hybrid +139_2-5 Q0 MARCO_50_1551611986-1 44 -0.043053 hybrid +139_2-5 Q0 MARCO_55_1241604722-1 45 -0.043128 hybrid +139_2-5 Q0 MARCO_06_932673477-1 46 -0.044137 hybrid +139_2-5 Q0 MARCO_30_1092514670-4 47 -0.044398 hybrid +139_2-5 Q0 MARCO_55_1092267610-13 48 -0.046677 hybrid +139_2-5 Q0 MARCO_15_12267148-2 49 -0.046733 hybrid +139_2-5 Q0 MARCO_06_932644882-1 50 -0.055159 hybrid +139_2-5 Q0 MARCO_06_932678775-3 51 -0.057214 hybrid +139_2-5 Q0 MARCO_06_932644882-5 52 -0.057606 hybrid +139_2-5 Q0 MARCO_06_932662112-9 53 -0.057607 hybrid +139_2-5 Q0 MARCO_06_932693305-5 54 -0.057607 hybrid +139_2-5 Q0 MARCO_50_2141242685-30 55 -0.058578 hybrid +139_2-5 Q0 MARCO_06_932673477-4 56 -0.059867 hybrid +139_2-5 Q0 MARCO_06_932721148-1 57 -0.060782 hybrid +139_2-5 Q0 MARCO_06_932712036-7 58 -0.063211 hybrid +139_2-5 Q0 MARCO_04_1449707528-1 59 -0.070049 hybrid +139_2-5 Q0 MARCO_06_932662112-1 60 -0.072365 hybrid +139_2-5 Q0 MARCO_50_1474354912-3 61 -0.073823 hybrid +139_2-5 Q0 MARCO_55_1241604722-4 62 -0.074663 hybrid +139_2-5 Q0 MARCO_06_932712036-1 63 -0.075205 hybrid +139_2-5 Q0 MARCO_03_1627594528-3 64 -0.077017 hybrid +139_2-5 Q0 MARCO_04_1447337074-3 65 -0.082472 hybrid +139_2-5 Q0 MARCO_06_932699426-1 66 -0.083537 hybrid +139_2-5 Q0 MARCO_23_152883294-5 67 -0.085125 hybrid +139_2-5 Q0 MARCO_06_932693305-1 68 -0.085405 hybrid +139_2-5 Q0 MARCO_50_1364473396-18 69 -0.088152 hybrid +139_2-5 Q0 MARCO_36_262638737-7 70 -0.090132 hybrid +139_2-5 Q0 MARCO_36_262648261-6 71 -0.090132 hybrid +139_2-5 Q0 MARCO_42_1377400651-1 72 -0.091104 hybrid +139_2-5 Q0 MARCO_55_1241613532-4 73 -0.091571 hybrid +139_2-5 Q0 MARCO_57_925870217-4 74 -0.094074 hybrid +139_2-5 Q0 MARCO_00_625037583-16 75 -0.095214 hybrid +139_2-5 Q0 MARCO_12_1209953017-1 76 -0.099604 hybrid +139_2-5 Q0 MARCO_03_1627594528-4 77 -0.099716 hybrid +139_2-5 Q0 MARCO_03_1627594528-2 78 -0.101360 hybrid +139_2-5 Q0 MARCO_04_1445478233-7 79 -0.102593 hybrid +139_2-5 Q0 MARCO_50_1102426817-5 80 -0.103396 hybrid +139_2-5 Q0 MARCO_36_262621965-7 81 -0.104854 hybrid +139_2-5 Q0 MARCO_36_262631588-5 82 -0.104854 hybrid +139_2-5 Q0 MARCO_58_1479965623-1 83 -0.107320 hybrid +139_2-5 Q0 MARCO_39_732127024-1 84 -0.107675 hybrid +139_2-5 Q0 MARCO_03_1672798894-1 85 -0.111803 hybrid +139_2-5 Q0 MARCO_50_772492839-3 86 -0.116474 hybrid +139_2-5 Q0 MARCO_50_1102426817-21 87 -0.116549 hybrid +139_2-5 Q0 MARCO_07_790985950-2 88 -0.117203 hybrid +139_2-5 Q0 MARCO_03_1672798894-3 89 -0.117632 hybrid +139_2-5 Q0 MARCO_02_797844008-5 90 -0.119351 hybrid +139_2-5 Q0 MARCO_56_1469799650-1 91 -0.120229 hybrid +139_2-5 Q0 MARCO_04_1449707528-6 92 -0.124059 hybrid +139_2-5 Q0 MARCO_50_1205460493-2 93 -0.126749 hybrid +139_2-5 Q0 MARCO_58_1487278006-1 94 -0.127011 hybrid +139_2-5 Q0 MARCO_06_932699426-8 95 -0.130728 hybrid +139_2-5 Q0 MARCO_06_932721148-4 96 -0.130729 hybrid +139_2-5 Q0 MARCO_03_1672798894-2 97 -0.130934 hybrid +139_2-5 Q0 MARCO_42_1443585397-2 98 -0.131924 hybrid +139_2-5 Q0 MARCO_23_152883294-16 99 -0.133026 hybrid +139_2-5 Q0 MARCO_01_1188973369-3 100 -0.134633 hybrid +139_2-7 Q0 MARCO_31_1319602620-4 1 0.500000 hybrid +139_2-7 Q0 MARCO_55_1241597858-1 2 0.461921 hybrid +139_2-7 Q0 MARCO_00_625037583-16 3 0.427583 hybrid +139_2-7 Q0 MARCO_23_805242325-2 4 0.358980 hybrid +139_2-7 Q0 MARCO_56_1469799650-4 5 0.344952 hybrid +139_2-7 Q0 MARCO_23_805242325-1 6 0.306391 hybrid +139_2-7 Q0 MARCO_23_152883294-1 7 0.295578 hybrid +139_2-7 Q0 MARCO_04_185938976-3 8 0.289909 hybrid +139_2-7 Q0 MARCO_42_1443585397-1 9 0.287615 hybrid +139_2-7 Q0 MARCO_04_1449360655-1 10 0.285861 hybrid +139_2-7 Q0 MARCO_25_1289549072-18 11 0.262351 hybrid +139_2-7 Q0 MARCO_07_701155566-1 12 0.257426 hybrid +139_2-7 Q0 MARCO_55_1686295870-4 13 0.257207 hybrid +139_2-7 Q0 MARCO_52_1808518894-3 14 0.250793 hybrid +139_2-7 Q0 MARCO_20_1635951560-1 15 0.247315 hybrid +139_2-7 Q0 MARCO_53_847326536-2 16 0.226098 hybrid +139_2-7 Q0 MARCO_54_548247608-2 17 0.222226 hybrid +139_2-7 Q0 MARCO_36_267453762-2 18 0.214716 hybrid +139_2-7 Q0 MARCO_37_426188766-1 19 0.207760 hybrid +139_2-7 Q0 MARCO_37_529836716-1 20 0.189335 hybrid +139_2-7 Q0 MARCO_23_1143351555-4 21 0.186105 hybrid +139_2-7 Q0 MARCO_46_332920260-21 22 0.170967 hybrid +139_2-7 Q0 MARCO_33_16395972-8 23 0.151212 hybrid +139_2-7 Q0 MARCO_03_1627594528-3 24 0.147618 hybrid +139_2-7 Q0 MARCO_58_1494943388-7 25 0.144388 hybrid +139_2-7 Q0 MARCO_28_424276497-4 26 0.142094 hybrid +139_2-7 Q0 MARCO_42_1443585397-3 27 0.140151 hybrid +139_2-7 Q0 MARCO_58_1516026117-3 28 0.138704 hybrid +139_2-7 Q0 MARCO_23_152883294-18 29 0.136673 hybrid +139_2-7 Q0 MARCO_55_1241613532-3 30 0.136425 hybrid +139_2-7 Q0 MARCO_55_1243987260-4 31 0.127438 hybrid +139_2-7 Q0 MARCO_39_1572411714-11 32 0.123815 hybrid +139_2-7 Q0 MARCO_04_181278967-3 33 0.121974 hybrid +139_2-7 Q0 MARCO_30_1072855002-1 34 0.120702 hybrid +139_2-7 Q0 MARCO_10_131509009-1 35 0.120249 hybrid +139_2-7 Q0 MARCO_56_1852189796-1 36 0.119723 hybrid +139_2-7 Q0 MARCO_55_1243960184-5 37 0.102920 hybrid +139_2-7 Q0 MARCO_55_1238873747-3 38 0.095643 hybrid +139_2-7 Q0 MARCO_06_118129943-3 39 0.095248 hybrid +139_2-7 Q0 MARCO_03_1672798894-3 40 0.089067 hybrid +139_2-7 Q0 MARCO_43_783282286-1 41 0.086349 hybrid +139_2-7 Q0 MARCO_42_1325439117-41 42 0.083281 hybrid +139_2-7 Q0 MARCO_55_1357905268-16 43 0.081060 hybrid +139_2-7 Q0 MARCO_30_152677617-2 44 0.077276 hybrid +139_2-7 Q0 MARCO_01_2126760722-6 45 0.074733 hybrid +139_2-7 Q0 MARCO_25_295133647-3 46 0.074119 hybrid +139_2-7 Q0 MARCO_55_1241613532-1 47 0.073988 hybrid +139_2-7 Q0 MARCO_42_1443585397-6 48 0.071504 hybrid +139_2-7 Q0 MARCO_36_266028786-1 49 0.067456 hybrid +139_2-7 Q0 MARCO_19_2051389514-1 50 0.067354 hybrid +139_2-7 Q0 MARCO_00_625037583-14 51 0.065995 hybrid +139_2-7 Q0 MARCO_55_1731089221-1 52 0.065600 hybrid +139_2-7 Q0 MARCO_55_1241604722-1 53 0.065396 hybrid +139_2-7 Q0 MARCO_32_387484335-4 54 0.064505 hybrid +139_2-7 Q0 MARCO_36_262704825-1 55 0.054393 hybrid +139_2-7 Q0 MARCO_36_262704825-3 56 0.054393 hybrid +139_2-7 Q0 MARCO_10_178145796-4 57 0.054159 hybrid +139_2-7 Q0 MARCO_58_1523522881-1 58 0.051105 hybrid +139_2-7 Q0 MARCO_00_625037583-15 59 0.048125 hybrid +139_2-7 Q0 MARCO_04_1449699608-5 60 0.047306 hybrid +139_2-7 Q0 MARCO_42_1443537043-1 61 0.045524 hybrid +139_2-7 Q0 MARCO_30_852084669-1 62 0.039956 hybrid +139_2-7 Q0 MARCO_57_941277296-1 63 0.038174 hybrid +139_2-7 Q0 MARCO_45_437225694-1 64 0.036698 hybrid +139_2-7 Q0 MARCO_48_1884565749-1 65 0.034170 hybrid +139_2-7 Q0 MARCO_50_1988414295-1 66 0.030123 hybrid +139_2-7 Q0 MARCO_03_1672798894-4 67 0.028851 hybrid +139_2-7 Q0 MARCO_36_264395918-3 68 0.028369 hybrid +139_2-7 Q0 MARCO_04_226143120-4 69 0.023927 hybrid +139_2-7 Q0 MARCO_54_514951222-1 70 0.021502 hybrid +139_2-7 Q0 MARCO_15_1832947825-1 71 0.019690 hybrid +139_2-7 Q0 MARCO_42_1443585397-5 72 0.019690 hybrid +139_2-7 Q0 MARCO_34_1750578886-1 73 0.017629 hybrid +139_2-7 Q0 MARCO_42_1439749884-1 74 0.011931 hybrid +139_2-7 Q0 MARCO_55_1239490027-8 75 0.009461 hybrid +139_2-7 Q0 MARCO_03_583240442-12 76 0.008979 hybrid +139_2-7 Q0 MARCO_23_1061347011-2 77 0.005691 hybrid +139_2-7 Q0 MARCO_31_1569008474-4 78 0.003704 hybrid +139_2-7 Q0 MARCO_51_1643622796-3 79 0.002111 hybrid +139_2-7 Q0 MARCO_55_1239295204-10 80 0.000110 hybrid +139_2-7 Q0 MARCO_45_161376293-1 81 -0.000723 hybrid +139_2-7 Q0 MARCO_09_1780339664-8 82 -0.004931 hybrid +139_2-7 Q0 MARCO_38_737980198-1 83 -0.005238 hybrid +139_2-7 Q0 MARCO_55_1228452216-3 84 -0.005574 hybrid +139_2-7 Q0 MARCO_09_1686133671-2 85 -0.007518 hybrid +139_2-7 Q0 MARCO_58_1155030887-5 86 -0.008935 hybrid +139_2-7 Q0 MARCO_55_1245673509-2 87 -0.011931 hybrid +139_2-7 Q0 MARCO_55_1237439465-1 88 -0.012018 hybrid +139_2-7 Q0 MARCO_11_984368933-3 89 -0.012559 hybrid +139_2-7 Q0 MARCO_39_465157494-8 90 -0.013933 hybrid +139_2-7 Q0 MARCO_06_932709120-1 91 -0.016475 hybrid +139_2-7 Q0 MARCO_55_207191995-10 92 -0.017323 hybrid +139_2-7 Q0 MARCO_58_1152555951-5 93 -0.018214 hybrid +139_2-7 Q0 MARCO_39_1724541261-2 94 -0.019134 hybrid +139_2-7 Q0 MARCO_56_1469799650-2 95 -0.021954 hybrid +139_2-7 Q0 MARCO_47_570532492-2 96 -0.022086 hybrid +139_2-7 Q0 MARCO_23_1059461598-5 97 -0.022349 hybrid +139_2-7 Q0 MARCO_06_932655480-5 98 -0.026543 hybrid +139_2-7 Q0 MARCO_51_1643928147-1 99 -0.031452 hybrid +139_2-7 Q0 MARCO_04_214322284-2 100 -0.031803 hybrid +139_2-9 Q0 MARCO_03_1627622233-3 1 0.500000 hybrid +139_2-9 Q0 MARCO_49_1382824307-11 2 0.460738 hybrid +139_2-9 Q0 MARCO_58_1425662545-2 3 0.377413 hybrid +139_2-9 Q0 MARCO_04_228353958-2 4 0.374440 hybrid +139_2-9 Q0 MARCO_50_1382168759-4 5 0.357724 hybrid +139_2-9 Q0 MARCO_04_222650713-2 6 0.355935 hybrid +139_2-9 Q0 MARCO_04_101224264-2 7 0.351380 hybrid +139_2-9 Q0 MARCO_09_344751762-1 8 0.347866 hybrid +139_2-9 Q0 MARCO_03_1799692237-2 9 0.324149 hybrid +139_2-9 Q0 MARCO_04_109572296-2 10 0.318552 hybrid +139_2-9 Q0 MARCO_03_1627622233-2 11 0.317007 hybrid +139_2-9 Q0 MARCO_58_1425665391-3 12 0.315965 hybrid +139_2-9 Q0 MARCO_04_109572296-3 13 0.296546 hybrid +139_2-9 Q0 MARCO_09_182073554-1 14 0.293947 hybrid +139_2-9 Q0 MARCO_04_228353958-4 15 0.277140 hybrid +139_2-9 Q0 MARCO_46_248743863-3 16 0.264297 hybrid +139_2-9 Q0 MARCO_03_1799692237-1 17 0.259175 hybrid +139_2-9 Q0 MARCO_03_1672660320-1 18 0.256434 hybrid +139_2-9 Q0 MARCO_30_1084424410-2 19 0.253642 hybrid +139_2-9 Q0 MARCO_04_109572296-1 20 0.239705 hybrid +139_2-9 Q0 MARCO_03_1799692237-3 21 0.229217 hybrid +139_2-9 Q0 MARCO_04_101224264-4 22 0.219167 hybrid +139_2-9 Q0 MARCO_00_442090690-28 23 0.213105 hybrid +139_2-9 Q0 MARCO_04_101224264-3 24 0.208305 hybrid +139_2-9 Q0 MARCO_19_2049478817-1 25 0.201369 hybrid +139_2-9 Q0 MARCO_46_248743863-1 26 0.194111 hybrid +139_2-9 Q0 MARCO_07_302777999-2 27 0.193365 hybrid +139_2-9 Q0 MARCO_04_228353958-3 28 0.190572 hybrid +139_2-9 Q0 MARCO_19_2049478817-2 29 0.166418 hybrid +139_2-9 Q0 MARCO_11_1498501225-2 30 0.165118 hybrid +139_2-9 Q0 MARCO_16_2789589129-1 31 0.163895 hybrid +139_2-9 Q0 MARCO_35_15102795-2 32 0.155788 hybrid +139_2-9 Q0 MARCO_09_1352032890-1 33 0.151297 hybrid +139_2-9 Q0 MARCO_21_1024712770-1 34 0.150023 hybrid +139_2-9 Q0 MARCO_49_1382824307-3 35 0.149779 hybrid +139_2-9 Q0 MARCO_10_1410563140-1 36 0.147102 hybrid +139_2-9 Q0 MARCO_53_847900852-1 37 0.144837 hybrid +139_2-9 Q0 MARCO_00_16373164-4 38 0.143962 hybrid +139_2-9 Q0 MARCO_50_2056875471-1 39 0.136112 hybrid +139_2-9 Q0 MARCO_29_662582548-12 40 0.130669 hybrid +139_2-9 Q0 MARCO_16_403270218-2 41 0.121365 hybrid +139_2-9 Q0 MARCO_03_1627622233-4 42 0.112807 hybrid +139_2-9 Q0 MARCO_50_1976647136-18 43 0.112601 hybrid +139_2-9 Q0 MARCO_07_1231136368-1 44 0.109834 hybrid +139_2-9 Q0 MARCO_46_250160478-1 45 0.109834 hybrid +139_2-9 Q0 MARCO_49_1382824307-4 46 0.106102 hybrid +139_2-9 Q0 MARCO_44_1956858776-17 47 0.105691 hybrid +139_2-9 Q0 MARCO_41_1793056022-1 48 0.103773 hybrid +139_2-9 Q0 MARCO_09_668443100-1 49 0.100543 hybrid +139_2-9 Q0 MARCO_49_1382824307-2 50 0.099423 hybrid +139_2-9 Q0 MARCO_28_322227037-2 51 0.097532 hybrid +139_2-9 Q0 MARCO_05_1606072199-1 52 0.095743 hybrid +139_2-9 Q0 MARCO_53_1028122158-1 53 0.092307 hybrid +139_2-9 Q0 MARCO_19_2049478817-5 54 0.092101 hybrid +139_2-9 Q0 MARCO_00_767771741-1 55 0.091084 hybrid +139_2-9 Q0 MARCO_02_1692356163-1 56 0.086889 hybrid +139_2-9 Q0 MARCO_53_847326536-3 57 0.084907 hybrid +139_2-9 Q0 MARCO_58_1425665391-2 58 0.084509 hybrid +139_2-9 Q0 MARCO_50_1202432836-1 59 0.083930 hybrid +139_2-9 Q0 MARCO_55_723871306-4 60 0.083055 hybrid +139_2-9 Q0 MARCO_05_901423819-1 61 0.082874 hybrid +139_2-9 Q0 MARCO_50_1203059730-18 62 0.080828 hybrid +139_2-9 Q0 MARCO_04_222650713-3 63 0.080416 hybrid +139_2-9 Q0 MARCO_50_2056875471-15 64 0.078808 hybrid +139_2-9 Q0 MARCO_11_1491761941-4 65 0.072618 hybrid +139_2-9 Q0 MARCO_42_1443537043-6 66 0.061281 hybrid +139_2-9 Q0 MARCO_03_1316364463-1 67 0.059144 hybrid +139_2-9 Q0 MARCO_02_388922843-2 68 0.056931 hybrid +139_2-9 Q0 MARCO_00_16373164-1 69 0.056674 hybrid +139_2-9 Q0 MARCO_06_118113063-2 70 0.056095 hybrid +139_2-9 Q0 MARCO_33_589357172-1 71 0.054036 hybrid +139_2-9 Q0 MARCO_23_652091561-1 72 0.051771 hybrid +139_2-9 Q0 MARCO_01_782340366-1 73 0.041141 hybrid +139_2-9 Q0 MARCO_10_496427416-4 74 0.036393 hybrid +139_2-9 Q0 MARCO_16_403270218-1 75 0.033368 hybrid +139_2-9 Q0 MARCO_03_1672660320-2 76 0.029122 hybrid +139_2-9 Q0 MARCO_11_1498501225-1 77 0.028993 hybrid +139_2-9 Q0 MARCO_40_1387930006-1 78 0.026715 hybrid +139_2-9 Q0 MARCO_53_847900852-4 79 0.026201 hybrid +139_2-9 Q0 MARCO_55_134814551-1 80 0.026162 hybrid +139_2-9 Q0 MARCO_00_767771741-16 81 0.025712 hybrid +139_2-9 Q0 MARCO_06_118113063-4 82 0.021259 hybrid +139_2-9 Q0 MARCO_10_496427416-2 83 0.020834 hybrid +139_2-9 Q0 KILT_30022293-1 84 0.020410 hybrid +139_2-9 Q0 MARCO_49_51627739-16 85 0.020062 hybrid +139_2-9 Q0 MARCO_12_416036453-1 86 0.019702 hybrid +139_2-9 Q0 MARCO_07_1232683103-3 87 0.018775 hybrid +139_2-9 Q0 MARCO_10_522315065-1 88 0.016948 hybrid +139_2-9 Q0 MARCO_24_583470793-1 89 0.016652 hybrid +139_2-9 Q0 MARCO_58_1517976865-1 90 0.012676 hybrid +139_2-9 Q0 MARCO_53_1028118811-1 91 0.011556 hybrid +139_2-9 Q0 MARCO_05_1200256536-5 92 0.010977 hybrid +139_2-9 Q0 MARCO_49_1382824307-7 93 0.009896 hybrid +139_2-9 Q0 MARCO_03_1072860214-1 94 0.005765 hybrid +139_2-9 Q0 MARCO_40_1298954370-6 95 0.003294 hybrid +139_2-9 Q0 MARCO_58_1494926115-3 96 0.002973 hybrid +139_2-9 Q0 MARCO_04_228353958-1 97 -0.000026 hybrid +139_2-9 Q0 MARCO_58_1147102400-12 98 -0.000257 hybrid +139_2-9 Q0 KILT_49383962-1 99 -0.002432 hybrid +139_2-9 Q0 MARCO_11_1498501225-3 100 -0.003385 hybrid +140_1-1 Q0 MARCO_25_1372751419-61 1 0.500000 hybrid +140_1-1 Q0 MARCO_06_998574656-39 2 0.196482 hybrid +140_1-1 Q0 MARCO_57_1622284502-14 3 0.188808 hybrid +140_1-1 Q0 MARCO_58_142307447-19 4 0.184300 hybrid +140_1-1 Q0 MARCO_37_1647907532-2 5 0.178887 hybrid +140_1-1 Q0 MARCO_56_69486241-118 6 0.173701 hybrid +140_1-1 Q0 MARCO_14_1893293306-3 7 0.166882 hybrid +140_1-1 Q0 MARCO_57_1946186551-13 8 0.163893 hybrid +140_1-1 Q0 MARCO_03_803632629-1 9 0.141515 hybrid +140_1-1 Q0 MARCO_57_2418023362-12 10 0.111834 hybrid +140_1-1 Q0 MARCO_25_1373535067-12 11 0.109959 hybrid +140_1-1 Q0 MARCO_27_1410264889-9 12 0.088599 hybrid +140_1-1 Q0 MARCO_25_1372658733-11 13 0.087113 hybrid +140_1-1 Q0 MARCO_20_471439889-4 14 0.086418 hybrid +140_1-1 Q0 MARCO_01_663758152-41 15 0.083914 hybrid +140_1-1 Q0 MARCO_53_900538557-93 16 0.061083 hybrid +140_1-1 Q0 MARCO_50_1652886599-14 17 0.048755 hybrid +140_1-1 Q0 MARCO_23_82094180-3 18 0.039707 hybrid +140_1-1 Q0 MARCO_25_640657672-4 19 0.037865 hybrid +140_1-1 Q0 MARCO_25_1372294396-13 20 0.032775 hybrid +140_1-1 Q0 MARCO_25_1373638013-32 21 0.030222 hybrid +140_1-1 Q0 MARCO_10_1380493974-30 22 0.025117 hybrid +140_1-1 Q0 MARCO_50_467552956-55 23 0.020883 hybrid +140_1-1 Q0 MARCO_58_591279028-16 24 0.017894 hybrid +140_1-1 Q0 MARCO_28_771311421-6 25 0.017264 hybrid +140_1-1 Q0 MARCO_25_1370793490-48 26 0.011884 hybrid +140_1-1 Q0 MARCO_50_449602758-4 27 0.010930 hybrid +140_1-1 Q0 MARCO_09_126627266-100 28 0.003450 hybrid +140_1-1 Q0 MARCO_57_1671383211-17 29 -0.001882 hybrid +140_1-1 Q0 MARCO_25_1372751419-59 30 -0.004451 hybrid +140_1-1 Q0 MARCO_58_496380890-21 31 -0.011852 hybrid +140_1-1 Q0 MARCO_14_1047207618-3 32 -0.015325 hybrid +140_1-1 Q0 MARCO_07_1311943272-3 33 -0.018137 hybrid +140_1-1 Q0 MARCO_50_2065016146-8 34 -0.026054 hybrid +140_1-1 Q0 MARCO_58_431855600-16 35 -0.026506 hybrid +140_1-1 Q0 MARCO_10_1204975417-16 36 -0.030917 hybrid +140_1-1 Q0 MARCO_03_545970910-30 37 -0.031628 hybrid +140_1-1 Q0 MARCO_06_1294863562-333 38 -0.037655 hybrid +140_1-1 Q0 MARCO_01_646633998-26 39 -0.039998 hybrid +140_1-1 Q0 MARCO_48_831107990-3 40 -0.044134 hybrid +140_1-1 Q0 MARCO_58_100941788-12 41 -0.046137 hybrid +140_1-1 Q0 MARCO_49_456695372-4 42 -0.049240 hybrid +140_1-1 Q0 MARCO_25_1373174246-25 43 -0.051793 hybrid +140_1-1 Q0 MARCO_30_816880784-7 44 -0.053457 hybrid +140_1-1 Q0 MARCO_57_1740553272-15 45 -0.053505 hybrid +140_1-1 Q0 MARCO_41_1776707724-36 46 -0.056187 hybrid +140_1-1 Q0 MARCO_10_975368759-20 47 -0.056478 hybrid +140_1-1 Q0 MARCO_15_160453067-32 48 -0.057189 hybrid +140_1-1 Q0 MARCO_50_2179336314-28 49 -0.061568 hybrid +140_1-1 Q0 MARCO_59_841984389-7 50 -0.067449 hybrid +140_1-1 Q0 MARCO_06_999198368-41 51 -0.068693 hybrid +140_1-1 Q0 MARCO_12_645259110-62 52 -0.070923 hybrid +140_1-1 Q0 MARCO_06_1151962448-79 53 -0.073379 hybrid +140_1-1 Q0 MARCO_58_577661583-17 54 -0.079923 hybrid +140_1-1 Q0 MARCO_07_477826751-1 55 -0.082831 hybrid +140_1-1 Q0 MARCO_25_1370793490-47 56 -0.082880 hybrid +140_1-1 Q0 MARCO_25_1374946711-16 57 -0.083219 hybrid +140_1-1 Q0 MARCO_25_1376647457-21 58 -0.083251 hybrid +140_1-1 Q0 MARCO_58_440547466-22 59 -0.083590 hybrid +140_1-1 Q0 MARCO_47_661129043-94 60 -0.084011 hybrid +140_1-1 Q0 MARCO_45_1605483015-19 61 -0.088438 hybrid +140_1-1 Q0 MARCO_58_593279562-18 62 -0.088923 hybrid +140_1-1 Q0 KILT_1142972-10 63 -0.091007 hybrid +140_1-1 Q0 MARCO_25_1374207499-16 64 -0.096000 hybrid +140_1-1 Q0 MARCO_12_1726591786-7 65 -0.096274 hybrid +140_1-1 Q0 MARCO_09_126627266-99 66 -0.098843 hybrid +140_1-1 Q0 MARCO_41_909296713-3 67 -0.100928 hybrid +140_1-1 Q0 MARCO_06_757837672-10 68 -0.105128 hybrid +140_1-1 Q0 MARCO_00_490422069-50 69 -0.106857 hybrid +140_1-1 Q0 MARCO_05_439154801-20 70 -0.113401 hybrid +140_1-1 Q0 MARCO_09_126627266-109 71 -0.114370 hybrid +140_1-1 Q0 KILT_6382050-1 72 -0.121738 hybrid +140_1-1 Q0 MARCO_26_1102149383-157 73 -0.124501 hybrid +140_1-1 Q0 MARCO_57_2418023362-13 74 -0.125681 hybrid +140_1-1 Q0 MARCO_08_92163544-4 75 -0.127345 hybrid +140_1-1 Q0 MARCO_04_914436455-15 76 -0.127571 hybrid +140_1-1 Q0 MARCO_03_1526269267-155 77 -0.128379 hybrid +140_1-1 Q0 MARCO_57_1704184837-17 78 -0.128427 hybrid +140_1-1 Q0 MARCO_50_1951864419-69 79 -0.131950 hybrid +140_1-1 Q0 MARCO_03_547024454-2 80 -0.133259 hybrid +140_1-1 Q0 MARCO_58_578753240-14 81 -0.135844 hybrid +140_1-1 Q0 MARCO_20_1085416973-2 82 -0.138606 hybrid +140_1-1 Q0 KILT_3949731-2 83 -0.138801 hybrid +140_1-1 Q0 MARCO_58_653767651-17 84 -0.138817 hybrid +140_1-1 Q0 MARCO_58_589993533-15 85 -0.139075 hybrid +140_1-1 Q0 MARCO_39_541840585-4 86 -0.140562 hybrid +140_1-1 Q0 MARCO_00_1106984249-206 87 -0.142856 hybrid +140_1-1 Q0 MARCO_04_529762544-36 88 -0.142856 hybrid +140_1-1 Q0 MARCO_01_1425791204-35 89 -0.142856 hybrid +140_1-1 Q0 MARCO_25_1368509692-41 90 -0.142857 hybrid +140_1-1 Q0 MARCO_08_182031194-38 91 -0.142905 hybrid +140_1-1 Q0 MARCO_57_2001809571-17 92 -0.143034 hybrid +140_1-1 Q0 MARCO_45_1603934594-72 93 -0.144262 hybrid +140_1-1 Q0 MARCO_36_1782718841-4 94 -0.146782 hybrid +140_1-1 Q0 MARCO_34_1324045633-3 95 -0.147186 hybrid +140_1-1 Q0 MARCO_42_103003148-515 96 -0.148770 hybrid +140_1-1 Q0 MARCO_54_1633903890-14 97 -0.148802 hybrid +140_1-1 Q0 MARCO_10_1043983637-15 98 -0.150062 hybrid +140_1-1 Q0 MARCO_31_233471928-20 99 -0.150741 hybrid +140_1-1 Q0 MARCO_26_1662811016-4 100 -0.150903 hybrid +140_1-11 Q0 KILT_28678189-3 1 0.500000 hybrid +140_1-11 Q0 KILT_33013283-3 2 0.247510 hybrid +140_1-11 Q0 MARCO_17_2078780409-24 3 0.087498 hybrid +140_1-11 Q0 KILT_21384-19 4 0.070684 hybrid +140_1-11 Q0 MARCO_34_1754841682-2 5 0.055631 hybrid +140_1-11 Q0 KILT_13924866-1 6 0.019090 hybrid +140_1-11 Q0 MARCO_16_3146698038-3 7 -0.006402 hybrid +140_1-11 Q0 KILT_28678189-4 8 -0.012728 hybrid +140_1-11 Q0 KILT_1442062-2 9 -0.017017 hybrid +140_1-11 Q0 MARCO_34_1754841682-1 10 -0.019001 hybrid +140_1-11 Q0 KILT_28678189-2 11 -0.031650 hybrid +140_1-11 Q0 KILT_9329471-4 12 -0.057082 hybrid +140_1-11 Q0 KILT_1442062-1 13 -0.057499 hybrid +140_1-11 Q0 MARCO_16_3146698038-2 14 -0.094491 hybrid +140_1-11 Q0 KILT_31165584-7 15 -0.098470 hybrid +140_1-11 Q0 KILT_28809191-5 16 -0.103387 hybrid +140_1-11 Q0 KILT_33013283-4 17 -0.107949 hybrid +140_1-11 Q0 KILT_33013283-1 18 -0.112264 hybrid +140_1-11 Q0 MARCO_10_1444399136-2 19 -0.112671 hybrid +140_1-11 Q0 MARCO_39_723657843-21 20 -0.115807 hybrid +140_1-11 Q0 KILT_29210637-2 21 -0.122506 hybrid +140_1-11 Q0 MARCO_54_575373635-2 22 -0.123774 hybrid +140_1-11 Q0 KILT_31165584-8 23 -0.130380 hybrid +140_1-11 Q0 MARCO_17_4722768323-6 24 -0.145402 hybrid +140_1-11 Q0 KILT_39388584-1 25 -0.158385 hybrid +140_1-11 Q0 KILT_58418055-1 26 -0.159429 hybrid +140_1-11 Q0 KILT_10602129-5 27 -0.159781 hybrid +140_1-11 Q0 MARCO_17_543589328-4 28 -0.160726 hybrid +140_1-11 Q0 MARCO_18_1168335695-3 29 -0.161458 hybrid +140_1-11 Q0 MARCO_16_3760072555-7 30 -0.163516 hybrid +140_1-11 Q0 KILT_28192817-1 31 -0.163765 hybrid +140_1-11 Q0 MARCO_42_114765095-36 32 -0.167293 hybrid +140_1-11 Q0 MARCO_12_1446464445-6 33 -0.173818 hybrid +140_1-11 Q0 KILT_9329483-4 34 -0.174900 hybrid +140_1-11 Q0 MARCO_53_509303884-4 35 -0.177561 hybrid +140_1-11 Q0 KILT_2881064-1 36 -0.178000 hybrid +140_1-11 Q0 KILT_28678189-1 37 -0.182606 hybrid +140_1-11 Q0 MARCO_10_1444399136-3 38 -0.194295 hybrid +140_1-11 Q0 KILT_43639639-1 39 -0.198676 hybrid +140_1-11 Q0 KILT_3959583-1 40 -0.201421 hybrid +140_1-11 Q0 KILT_2292869-5 41 -0.207248 hybrid +140_1-11 Q0 MARCO_17_4828987761-8 42 -0.209372 hybrid +140_1-11 Q0 KILT_3959583-3 43 -0.211605 hybrid +140_1-11 Q0 MARCO_16_3146698038-1 44 -0.215986 hybrid +140_1-11 Q0 MARCO_17_543589328-1 45 -0.221732 hybrid +140_1-11 Q0 KILT_9329483-15 46 -0.223451 hybrid +140_1-11 Q0 MARCO_01_1879724342-13 47 -0.226462 hybrid +140_1-11 Q0 KILT_29210637-1 48 -0.226769 hybrid +140_1-11 Q0 KILT_9677609-1 49 -0.227360 hybrid +140_1-11 Q0 KILT_38016858-1 50 -0.228333 hybrid +140_1-11 Q0 KILT_1227091-7 51 -0.228520 hybrid +140_1-11 Q0 MARCO_43_500983951-1 52 -0.228633 hybrid +140_1-11 Q0 MARCO_16_3760072555-18 53 -0.229299 hybrid +140_1-11 Q0 KILT_47903393-2 54 -0.236258 hybrid +140_1-11 Q0 KILT_9329483-9 55 -0.237134 hybrid +140_1-11 Q0 MARCO_00_1246086708-7 56 -0.239121 hybrid +140_1-11 Q0 MARCO_25_228567496-6 57 -0.239883 hybrid +140_1-11 Q0 MARCO_17_4828987761-6 58 -0.239930 hybrid +140_1-11 Q0 KILT_1442062-5 59 -0.240513 hybrid +140_1-11 Q0 KILT_32998945-3 60 -0.246859 hybrid +140_1-11 Q0 MARCO_24_1375511290-2 61 -0.248665 hybrid +140_1-11 Q0 MARCO_50_1597015214-10 62 -0.251143 hybrid +140_1-11 Q0 MARCO_17_467054059-6 63 -0.252584 hybrid +140_1-11 Q0 MARCO_42_114765095-43 64 -0.255891 hybrid +140_1-11 Q0 KILT_186641-19 65 -0.263910 hybrid +140_1-11 Q0 MARCO_42_114765095-87 66 -0.265635 hybrid +140_1-11 Q0 KILT_25606286-1 67 -0.266737 hybrid +140_1-11 Q0 MARCO_16_3146721972-19 68 -0.266798 hybrid +140_1-11 Q0 MARCO_29_1413332966-1 69 -0.268950 hybrid +140_1-11 Q0 MARCO_47_1260114631-8 70 -0.269205 hybrid +140_1-11 Q0 KILT_32998945-1 71 -0.271690 hybrid +140_1-11 Q0 KILT_52002085-1 72 -0.271895 hybrid +140_1-11 Q0 KILT_27674663-1 73 -0.272493 hybrid +140_1-11 Q0 MARCO_16_3760072555-12 74 -0.275368 hybrid +140_1-11 Q0 MARCO_41_1264195901-24 75 -0.276675 hybrid +140_1-11 Q0 KILT_3959583-2 76 -0.276767 hybrid +140_1-11 Q0 KILT_41138199-5 77 -0.277901 hybrid +140_1-11 Q0 MARCO_03_764534941-3 78 -0.278181 hybrid +140_1-11 Q0 KILT_39388584-2 79 -0.279565 hybrid +140_1-11 Q0 KILT_53406064-3 80 -0.279961 hybrid +140_1-11 Q0 KILT_53438811-1 81 -0.280008 hybrid +140_1-11 Q0 MARCO_16_2511868083-12 82 -0.281363 hybrid +140_1-11 Q0 MARCO_16_2651127708-11 83 -0.281861 hybrid +140_1-11 Q0 MARCO_17_4722768323-2 84 -0.282287 hybrid +140_1-11 Q0 MARCO_02_1615742650-6 85 -0.282358 hybrid +140_1-11 Q0 MARCO_31_554152250-21 86 -0.282560 hybrid +140_1-11 Q0 KILT_30863802-1 87 -0.282735 hybrid +140_1-11 Q0 KILT_1227091-6 88 -0.283113 hybrid +140_1-11 Q0 MARCO_16_4029279131-9 89 -0.286048 hybrid +140_1-11 Q0 KILT_28861602-2 90 -0.287405 hybrid +140_1-11 Q0 MARCO_01_414844028-9 91 -0.290641 hybrid +140_1-11 Q0 MARCO_10_1445973568-1 92 -0.291311 hybrid +140_1-11 Q0 MARCO_18_797705643-32 93 -0.291518 hybrid +140_1-11 Q0 KILT_905857-6 94 -0.291710 hybrid +140_1-11 Q0 KILT_22674098-6 95 -0.293219 hybrid +140_1-11 Q0 MARCO_17_4828987761-4 96 -0.294676 hybrid +140_1-11 Q0 MARCO_16_3146712539-2 97 -0.295849 hybrid +140_1-11 Q0 MARCO_18_797575356-4 98 -0.296264 hybrid +140_1-11 Q0 KILT_3959583-4 99 -0.296994 hybrid +140_1-11 Q0 MARCO_24_1368600633-1 100 -0.297272 hybrid +140_1-3 Q0 MARCO_22_258349794-1 1 0.500000 hybrid +140_1-3 Q0 MARCO_30_1029169387-1 2 0.445008 hybrid +140_1-3 Q0 MARCO_54_575373635-1 3 0.359869 hybrid +140_1-3 Q0 MARCO_22_258365490-7 4 0.194979 hybrid +140_1-3 Q0 MARCO_24_1718716761-3 5 0.144480 hybrid +140_1-3 Q0 MARCO_24_1719317684-11 6 0.117626 hybrid +140_1-3 Q0 MARCO_25_227492776-2 7 0.116376 hybrid +140_1-3 Q0 MARCO_08_823639828-4 8 0.046471 hybrid +140_1-3 Q0 MARCO_11_1564622896-3 9 0.032081 hybrid +140_1-3 Q0 MARCO_33_170886242-1 10 0.026373 hybrid +140_1-3 Q0 MARCO_20_1265986597-2 11 0.004146 hybrid +140_1-3 Q0 MARCO_14_1003065997-4 12 -0.007862 hybrid +140_1-3 Q0 MARCO_24_1718256148-8 13 -0.020276 hybrid +140_1-3 Q0 MARCO_30_1083103137-1 14 -0.025376 hybrid +140_1-3 Q0 MARCO_53_848280024-6 15 -0.026694 hybrid +140_1-3 Q0 MARCO_45_803650286-5 16 -0.030325 hybrid +140_1-3 Q0 MARCO_10_145182020-1 17 -0.032740 hybrid +140_1-3 Q0 MARCO_22_1022149739-1 18 -0.042299 hybrid +140_1-3 Q0 MARCO_49_1641047428-10 19 -0.043819 hybrid +140_1-3 Q0 MARCO_03_865429591-26 20 -0.044360 hybrid +140_1-3 Q0 MARCO_55_1288516685-1 21 -0.059054 hybrid +140_1-3 Q0 MARCO_22_258349794-9 22 -0.072920 hybrid +140_1-3 Q0 MARCO_00_875897638-1 23 -0.079034 hybrid +140_1-3 Q0 MARCO_03_451372036-1 24 -0.081854 hybrid +140_1-3 Q0 MARCO_52_1153380409-8 25 -0.089387 hybrid +140_1-3 Q0 MARCO_55_1236308018-1 26 -0.089775 hybrid +140_1-3 Q0 MARCO_55_1280659858-26 27 -0.107374 hybrid +140_1-3 Q0 MARCO_54_575373635-2 28 -0.113606 hybrid +140_1-3 Q0 MARCO_30_957713917-14 29 -0.114214 hybrid +140_1-3 Q0 MARCO_37_533947992-7 30 -0.117068 hybrid +140_1-3 Q0 MARCO_30_1081756789-46 31 -0.119416 hybrid +140_1-3 Q0 MARCO_19_1558320017-2 32 -0.120176 hybrid +140_1-3 Q0 MARCO_48_849595266-1 33 -0.127016 hybrid +140_1-3 Q0 MARCO_33_170698359-1 34 -0.130462 hybrid +140_1-3 Q0 MARCO_30_996308744-27 35 -0.130495 hybrid +140_1-3 Q0 MARCO_52_1191921141-18 36 -0.131593 hybrid +140_1-3 Q0 MARCO_09_1849404183-36 37 -0.134802 hybrid +140_1-3 Q0 MARCO_09_170320040-11 38 -0.139616 hybrid +140_1-3 Q0 MARCO_55_1085986893-2 39 -0.140528 hybrid +140_1-3 Q0 MARCO_45_802364591-7 40 -0.143078 hybrid +140_1-3 Q0 MARCO_30_1090109174-72 41 -0.144159 hybrid +140_1-3 Q0 MARCO_13_1205331301-1 42 -0.156066 hybrid +140_1-3 Q0 MARCO_18_3532223529-5 43 -0.161808 hybrid +140_1-3 Q0 MARCO_42_1444825899-1 44 -0.162011 hybrid +140_1-3 Q0 MARCO_30_1090715377-44 45 -0.162585 hybrid +140_1-3 Q0 MARCO_30_1079495440-4 46 -0.166368 hybrid +140_1-3 Q0 MARCO_39_537288997-1 47 -0.168463 hybrid +140_1-3 Q0 MARCO_39_537407384-1 48 -0.168463 hybrid +140_1-3 Q0 MARCO_54_574915571-1 49 -0.169459 hybrid +140_1-3 Q0 MARCO_57_4542973-3 50 -0.171621 hybrid +140_1-3 Q0 MARCO_30_1086311886-8 51 -0.173360 hybrid +140_1-3 Q0 MARCO_55_638108708-45 52 -0.177414 hybrid +140_1-3 Q0 MARCO_10_119766528-9 53 -0.178883 hybrid +140_1-3 Q0 MARCO_45_803689211-9 54 -0.179018 hybrid +140_1-3 Q0 MARCO_22_258349794-12 55 -0.179778 hybrid +140_1-3 Q0 MARCO_07_1234110295-1 56 -0.181957 hybrid +140_1-3 Q0 MARCO_50_1409583712-3 57 -0.183916 hybrid +140_1-3 Q0 MARCO_30_1085762707-11 58 -0.186923 hybrid +140_1-3 Q0 MARCO_49_522173046-10 59 -0.189135 hybrid +140_1-3 Q0 MARCO_30_1083198855-2 60 -0.197529 hybrid +140_1-3 Q0 MARCO_47_1049073372-16 61 -0.201093 hybrid +140_1-3 Q0 MARCO_45_803175282-4 62 -0.201211 hybrid +140_1-3 Q0 MARCO_50_790990846-13 63 -0.202258 hybrid +140_1-3 Q0 MARCO_36_267932455-9 64 -0.203305 hybrid +140_1-3 Q0 MARCO_22_1366122503-1 65 -0.207105 hybrid +140_1-3 Q0 MARCO_30_1087220271-29 66 -0.207477 hybrid +140_1-3 Q0 MARCO_54_574905051-7 67 -0.208946 hybrid +140_1-3 Q0 MARCO_44_1502399439-2 68 -0.209909 hybrid +140_1-3 Q0 MARCO_55_1654840169-1 69 -0.210534 hybrid +140_1-3 Q0 MARCO_01_1190747616-1 70 -0.213152 hybrid +140_1-3 Q0 MARCO_55_712432723-2 71 -0.214891 hybrid +140_1-3 Q0 MARCO_30_1088062134-16 72 -0.222390 hybrid +140_1-3 Q0 MARCO_30_1082732413-14 73 -0.222745 hybrid +140_1-3 Q0 MARCO_30_1088062134-3 74 -0.223995 hybrid +140_1-3 Q0 MARCO_55_1656252252-1 75 -0.223995 hybrid +140_1-3 Q0 MARCO_30_1086311886-49 76 -0.224788 hybrid +140_1-3 Q0 MARCO_30_1085703823-6 77 -0.226292 hybrid +140_1-3 Q0 MARCO_09_954873769-8 78 -0.234297 hybrid +140_1-3 Q0 MARCO_23_1129817478-4 79 -0.234297 hybrid +140_1-3 Q0 MARCO_30_851780152-1 80 -0.238384 hybrid +140_1-3 Q0 MARCO_24_1718716761-7 81 -0.238874 hybrid +140_1-3 Q0 MARCO_30_1610498711-1 82 -0.239077 hybrid +140_1-3 Q0 MARCO_30_1091987591-7 83 -0.240158 hybrid +140_1-3 Q0 MARCO_30_1082712997-8 84 -0.241745 hybrid +140_1-3 Q0 MARCO_30_1087990917-1 85 -0.241948 hybrid +140_1-3 Q0 MARCO_22_244073349-28 86 -0.242522 hybrid +140_1-3 Q0 MARCO_54_454271378-2 87 -0.243552 hybrid +140_1-3 Q0 MARCO_30_1086311886-27 88 -0.244228 hybrid +140_1-3 Q0 MARCO_55_1655390181-1 89 -0.246677 hybrid +140_1-3 Q0 MARCO_01_1146025942-2 90 -0.248417 hybrid +140_1-3 Q0 MARCO_30_1087220271-31 91 -0.248586 hybrid +140_1-3 Q0 MARCO_49_1365659525-14 92 -0.248822 hybrid +140_1-3 Q0 MARCO_30_1081756789-45 93 -0.248856 hybrid +140_1-3 Q0 MARCO_19_1810032528-1 94 -0.249379 hybrid +140_1-3 Q0 MARCO_29_1642004752-1 95 -0.250021 hybrid +140_1-3 Q0 MARCO_30_1088635053-6 96 -0.254074 hybrid +140_1-3 Q0 MARCO_30_1087620910-5 97 -0.254868 hybrid +140_1-3 Q0 MARCO_30_1090042340-5 98 -0.256827 hybrid +140_1-3 Q0 MARCO_30_1083227848-9 99 -0.257756 hybrid +140_1-3 Q0 MARCO_30_1082882181-35 100 -0.258331 hybrid +140_1-5 Q0 MARCO_54_575373635-2 1 0.500000 hybrid +140_1-5 Q0 KILT_21540356-1 2 0.132058 hybrid +140_1-5 Q0 KILT_2710824-1 3 0.069537 hybrid +140_1-5 Q0 MARCO_17_4390005194-3 4 -0.025554 hybrid +140_1-5 Q0 KILT_2213191-3 5 -0.046426 hybrid +140_1-5 Q0 KILT_10259157-6 6 -0.051822 hybrid +140_1-5 Q0 MARCO_01_1064363562-2 7 -0.061422 hybrid +140_1-5 Q0 MARCO_14_93878971-2 8 -0.065012 hybrid +140_1-5 Q0 KILT_35964707-1 9 -0.072011 hybrid +140_1-5 Q0 KILT_39470-36 10 -0.095766 hybrid +140_1-5 Q0 KILT_31296178-1 11 -0.112003 hybrid +140_1-5 Q0 KILT_28753082-1 12 -0.112388 hybrid +140_1-5 Q0 MARCO_14_93878971-3 13 -0.119065 hybrid +140_1-5 Q0 KILT_31891772-1 14 -0.123040 hybrid +140_1-5 Q0 MARCO_22_1821166097-10 15 -0.125020 hybrid +140_1-5 Q0 MARCO_28_278767164-1 16 -0.127526 hybrid +140_1-5 Q0 KILT_29000259-1 17 -0.130644 hybrid +140_1-5 Q0 MARCO_40_1565424675-3 18 -0.132592 hybrid +140_1-5 Q0 KILT_27068094-1 19 -0.135617 hybrid +140_1-5 Q0 KILT_31239705-7 20 -0.135766 hybrid +140_1-5 Q0 KILT_40058074-3 21 -0.137753 hybrid +140_1-5 Q0 KILT_15056230-1 22 -0.140628 hybrid +140_1-5 Q0 KILT_48017862-1 23 -0.144533 hybrid +140_1-5 Q0 KILT_31644281-1 24 -0.146897 hybrid +140_1-5 Q0 KILT_36749029-1 25 -0.148327 hybrid +140_1-5 Q0 MARCO_53_395664418-1 26 -0.148421 hybrid +140_1-5 Q0 MARCO_16_3563992780-5 27 -0.154517 hybrid +140_1-5 Q0 MARCO_25_1699576681-1 28 -0.156630 hybrid +140_1-5 Q0 KILT_46945871-1 29 -0.160369 hybrid +140_1-5 Q0 KILT_24490621-1 30 -0.160605 hybrid +140_1-5 Q0 MARCO_48_1855753765-3 31 -0.171877 hybrid +140_1-5 Q0 MARCO_18_206062244-16 32 -0.173511 hybrid +140_1-5 Q0 KILT_48188382-1 33 -0.180526 hybrid +140_1-5 Q0 KILT_27039537-1 34 -0.187478 hybrid +140_1-5 Q0 KILT_21176396-1 35 -0.188350 hybrid +140_1-5 Q0 KILT_4902047-1 36 -0.190511 hybrid +140_1-5 Q0 KILT_31644281-3 37 -0.193983 hybrid +140_1-5 Q0 KILT_125253-51 38 -0.197887 hybrid +140_1-5 Q0 MARCO_17_4800427746-32 39 -0.199615 hybrid +140_1-5 Q0 KILT_1032363-14 40 -0.201870 hybrid +140_1-5 Q0 KILT_2157205-5 41 -0.204572 hybrid +140_1-5 Q0 KILT_37078834-1 42 -0.206811 hybrid +140_1-5 Q0 KILT_13945-3 43 -0.207903 hybrid +140_1-5 Q0 KILT_25349111-1 44 -0.211940 hybrid +140_1-5 Q0 KILT_37607409-1 45 -0.213378 hybrid +140_1-5 Q0 KILT_366512-2 46 -0.213983 hybrid +140_1-5 Q0 KILT_26751164-1 47 -0.215075 hybrid +140_1-5 Q0 MARCO_00_1429422874-1 48 -0.222482 hybrid +140_1-5 Q0 KILT_373224-5 49 -0.223472 hybrid +140_1-5 Q0 KILT_26399847-4 50 -0.226198 hybrid +140_1-5 Q0 MARCO_18_2227509480-28 51 -0.227785 hybrid +140_1-5 Q0 KILT_50635656-9 52 -0.232545 hybrid +140_1-5 Q0 KILT_27049086-1 53 -0.233802 hybrid +140_1-5 Q0 MARCO_18_2501414458-2 54 -0.233928 hybrid +140_1-5 Q0 MARCO_16_2628261009-38 55 -0.236410 hybrid +140_1-5 Q0 MARCO_16_3565311114-38 56 -0.236410 hybrid +140_1-5 Q0 KILT_6101286-4 57 -0.238720 hybrid +140_1-5 Q0 KILT_353400-3 58 -0.243841 hybrid +140_1-5 Q0 KILT_40058074-1 59 -0.246834 hybrid +140_1-5 Q0 KILT_40106064-8 60 -0.246850 hybrid +140_1-5 Q0 KILT_21540356-7 61 -0.250605 hybrid +140_1-5 Q0 KILT_670152-1 62 -0.251320 hybrid +140_1-5 Q0 KILT_28968945-17 63 -0.255483 hybrid +140_1-5 Q0 KILT_228606-11 64 -0.255577 hybrid +140_1-5 Q0 MARCO_18_908886916-48 65 -0.256237 hybrid +140_1-5 Q0 KILT_60642369-1 66 -0.256339 hybrid +140_1-5 Q0 KILT_172024-1 67 -0.256614 hybrid +140_1-5 Q0 KILT_4673397-10 68 -0.258013 hybrid +140_1-5 Q0 MARCO_00_997494254-2 69 -0.258201 hybrid +140_1-5 Q0 MARCO_29_146210313-7 70 -0.259301 hybrid +140_1-5 Q0 KILT_32307591-1 71 -0.260134 hybrid +140_1-5 Q0 KILT_3121165-2 72 -0.260636 hybrid +140_1-5 Q0 KILT_53620268-1 73 -0.261815 hybrid +140_1-5 Q0 KILT_44897733-4 74 -0.263574 hybrid +140_1-5 Q0 KILT_94272-2 75 -0.263896 hybrid +140_1-5 Q0 MARCO_25_683948040-3 76 -0.265789 hybrid +140_1-5 Q0 MARCO_55_1666280117-3 77 -0.265876 hybrid +140_1-5 Q0 KILT_12794471-1 78 -0.266033 hybrid +140_1-5 Q0 MARCO_19_252208885-74 79 -0.268177 hybrid +140_1-5 Q0 KILT_36303696-2 80 -0.268217 hybrid +140_1-5 Q0 KILT_2350220-12 81 -0.269026 hybrid +140_1-5 Q0 KILT_31239705-1 82 -0.271383 hybrid +140_1-5 Q0 KILT_33294687-7 83 -0.274234 hybrid +140_1-5 Q0 MARCO_18_1677740654-50 84 -0.274839 hybrid +140_1-5 Q0 KILT_28320119-1 85 -0.275043 hybrid +140_1-5 Q0 KILT_7783720-1 86 -0.275805 hybrid +140_1-5 Q0 KILT_27909971-2 87 -0.276999 hybrid +140_1-5 Q0 MARCO_16_3146698038-3 88 -0.278492 hybrid +140_1-5 Q0 KILT_50781660-1 89 -0.278720 hybrid +140_1-5 Q0 KILT_41376901-1 90 -0.279199 hybrid +140_1-5 Q0 MARCO_19_441050607-71 91 -0.282529 hybrid +140_1-5 Q0 KILT_41078667-1 92 -0.284100 hybrid +140_1-5 Q0 MARCO_16_4066263007-8 93 -0.286229 hybrid +140_1-5 Q0 KILT_1442062-2 94 -0.287337 hybrid +140_1-5 Q0 KILT_2383541-1 95 -0.287895 hybrid +140_1-5 Q0 KILT_28968945-31 96 -0.288649 hybrid +140_1-5 Q0 MARCO_17_4391437666-45 97 -0.288649 hybrid +140_1-5 Q0 KILT_2710824-6 98 -0.289018 hybrid +140_1-5 Q0 KILT_31782623-57 99 -0.290463 hybrid +140_1-5 Q0 MARCO_58_1811452224-2 100 -0.290566 hybrid +140_1-7 Q0 KILT_28832499-1 1 0.500000 hybrid +140_1-7 Q0 KILT_28823410-1 2 0.433040 hybrid +140_1-7 Q0 KILT_28461170-1 3 0.412826 hybrid +140_1-7 Q0 KILT_28461170-2 4 0.373039 hybrid +140_1-7 Q0 KILT_11859745-4 5 0.366852 hybrid +140_1-7 Q0 KILT_28832499-2 6 0.294711 hybrid +140_1-7 Q0 KILT_3584813-1 7 0.253702 hybrid +140_1-7 Q0 KILT_25330048-1 8 0.243313 hybrid +140_1-7 Q0 MARCO_08_823639828-4 9 0.202408 hybrid +140_1-7 Q0 MARCO_48_849595266-4 10 0.163314 hybrid +140_1-7 Q0 KILT_24823649-1 11 0.149459 hybrid +140_1-7 Q0 MARCO_03_457133538-3 12 0.074216 hybrid +140_1-7 Q0 MARCO_03_445438352-4 13 0.070594 hybrid +140_1-7 Q0 MARCO_03_446178016-4 14 0.070594 hybrid +140_1-7 Q0 MARCO_29_1140391272-1 15 0.068541 hybrid +140_1-7 Q0 KILT_13294300-1 16 0.041724 hybrid +140_1-7 Q0 KILT_13294300-3 17 0.037002 hybrid +140_1-7 Q0 MARCO_03_446048207-3 18 0.032115 hybrid +140_1-7 Q0 KILT_13294300-5 19 0.026093 hybrid +140_1-7 Q0 KILT_13294300-7 20 0.026093 hybrid +140_1-7 Q0 KILT_24905569-2 21 0.012620 hybrid +140_1-7 Q0 KILT_44779750-1 22 0.006009 hybrid +140_1-7 Q0 MARCO_03_446024727-4 23 0.006009 hybrid +140_1-7 Q0 MARCO_22_258349794-7 24 0.006009 hybrid +140_1-7 Q0 MARCO_53_848280024-6 25 -0.080229 hybrid +140_1-7 Q0 MARCO_03_1469624429-2 26 -0.096501 hybrid +140_1-7 Q0 KILT_45547526-2 27 -0.097298 hybrid +140_1-7 Q0 MARCO_35_490481052-4 28 -0.112912 hybrid +140_1-7 Q0 MARCO_29_1413273308-2 29 -0.128655 hybrid +140_1-7 Q0 MARCO_02_308616172-17 30 -0.138420 hybrid +140_1-7 Q0 MARCO_25_1378508768-20 31 -0.163183 hybrid +140_1-7 Q0 MARCO_29_1413273308-3 32 -0.170826 hybrid +140_1-7 Q0 MARCO_08_1719099966-1 33 -0.178875 hybrid +140_1-7 Q0 MARCO_29_1413273308-1 34 -0.188778 hybrid +140_1-7 Q0 MARCO_01_1899298398-5 35 -0.211783 hybrid +140_1-7 Q0 MARCO_01_1780024357-2 36 -0.212675 hybrid +140_1-7 Q0 MARCO_54_1254356720-7 37 -0.214131 hybrid +140_1-7 Q0 MARCO_59_1043490676-45 38 -0.214503 hybrid +140_1-7 Q0 MARCO_41_1082014120-34 39 -0.215820 hybrid +140_1-7 Q0 MARCO_03_813468386-1 40 -0.217163 hybrid +140_1-7 Q0 MARCO_59_1043490676-46 41 -0.223454 hybrid +140_1-7 Q0 MARCO_17_3948760263-12 42 -0.240904 hybrid +140_1-7 Q0 MARCO_54_892147537-1 43 -0.243304 hybrid +140_1-7 Q0 MARCO_03_1469624429-11 44 -0.250721 hybrid +140_1-7 Q0 MARCO_54_760974149-7 45 -0.250929 hybrid +140_1-7 Q0 MARCO_41_1441718434-17 46 -0.251371 hybrid +140_1-7 Q0 MARCO_04_1279560037-18 47 -0.251631 hybrid +140_1-7 Q0 MARCO_00_1609299273-1 48 -0.252081 hybrid +140_1-7 Q0 MARCO_54_892150661-1 49 -0.254334 hybrid +140_1-7 Q0 MARCO_41_1137819179-7 50 -0.257350 hybrid +140_1-7 Q0 MARCO_32_619645074-20 51 -0.259706 hybrid +140_1-7 Q0 MARCO_25_227869196-5 52 -0.259802 hybrid +140_1-7 Q0 MARCO_36_1472463250-4 53 -0.259802 hybrid +140_1-7 Q0 MARCO_27_1251176728-3 54 -0.266300 hybrid +140_1-7 Q0 MARCO_41_1082014120-40 55 -0.266881 hybrid +140_1-7 Q0 MARCO_48_660795722-6 56 -0.269151 hybrid +140_1-7 Q0 MARCO_55_138996155-21 57 -0.270112 hybrid +140_1-7 Q0 MARCO_17_4323944276-2 58 -0.270320 hybrid +140_1-7 Q0 KILT_39672721-70 59 -0.272625 hybrid +140_1-7 Q0 KILT_12082009-1 60 -0.275086 hybrid +140_1-7 Q0 MARCO_31_1802734476-1 61 -0.275285 hybrid +140_1-7 Q0 MARCO_03_1469624429-14 62 -0.280536 hybrid +140_1-7 Q0 MARCO_12_1150490552-1 63 -0.280813 hybrid +140_1-7 Q0 MARCO_19_2034894847-2 64 -0.283378 hybrid +140_1-7 Q0 MARCO_30_1932040663-9 65 -0.283837 hybrid +140_1-7 Q0 MARCO_45_268329874-2 66 -0.283932 hybrid +140_1-7 Q0 MARCO_45_278949595-3 67 -0.290127 hybrid +140_1-7 Q0 MARCO_09_1233413749-33 68 -0.290162 hybrid +140_1-7 Q0 MARCO_19_2034894847-3 69 -0.292562 hybrid +140_1-7 Q0 MARCO_03_1469624429-1 70 -0.295569 hybrid +140_1-7 Q0 KILT_905857-7 71 -0.295664 hybrid +140_1-7 Q0 MARCO_27_1038013471-31 72 -0.296946 hybrid +140_1-7 Q0 MARCO_09_1233246493-36 73 -0.297510 hybrid +140_1-7 Q0 KILT_12635300-2 74 -0.299641 hybrid +140_1-7 Q0 MARCO_41_1484238225-8 75 -0.300421 hybrid +140_1-7 Q0 MARCO_17_2279808073-6 76 -0.301140 hybrid +140_1-7 Q0 MARCO_09_1233413749-8 77 -0.301998 hybrid +140_1-7 Q0 MARCO_48_1188200418-1 78 -0.304155 hybrid +140_1-7 Q0 MARCO_30_1954160000-5 79 -0.304216 hybrid +140_1-7 Q0 MARCO_11_8725288-13 80 -0.306685 hybrid +140_1-7 Q0 MARCO_09_643732234-2 81 -0.307898 hybrid +140_1-7 Q0 MARCO_55_139159595-9 82 -0.307907 hybrid +140_1-7 Q0 MARCO_31_1226592679-2 83 -0.308314 hybrid +140_1-7 Q0 MARCO_19_2034894847-1 84 -0.309406 hybrid +140_1-7 Q0 MARCO_45_268382863-1 85 -0.314007 hybrid +140_1-7 Q0 MARCO_09_1233187712-2 86 -0.314553 hybrid +140_1-7 Q0 MARCO_30_1932040663-8 87 -0.317300 hybrid +140_1-7 Q0 MARCO_51_903553952-1 88 -0.318842 hybrid +140_1-7 Q0 MARCO_45_268290683-3 89 -0.319206 hybrid +140_1-7 Q0 KILT_23691062-1 90 -0.319362 hybrid +140_1-7 Q0 MARCO_51_901575620-1 91 -0.320592 hybrid +140_1-7 Q0 KILT_5566319-1 92 -0.322299 hybrid +140_1-7 Q0 MARCO_56_952730361-3 93 -0.322299 hybrid +140_1-7 Q0 MARCO_09_1233413749-30 94 -0.322550 hybrid +140_1-7 Q0 MARCO_45_268278190-8 95 -0.327420 hybrid +140_1-7 Q0 MARCO_30_1943003821-21 96 -0.330400 hybrid +140_1-7 Q0 MARCO_19_1951335713-14 97 -0.331397 hybrid +140_1-7 Q0 MARCO_45_1347382396-1 98 -0.332454 hybrid +140_1-7 Q0 MARCO_55_1360286645-3 99 -0.332462 hybrid +140_1-7 Q0 MARCO_46_1516860742-1 100 -0.332878 hybrid +140_1-9 Q0 MARCO_54_575373635-2 1 0.500000 hybrid +140_1-9 Q0 KILT_21540356-1 2 0.044290 hybrid +140_1-9 Q0 KILT_2710824-1 3 -0.013759 hybrid +140_1-9 Q0 KILT_39470-36 4 -0.051868 hybrid +140_1-9 Q0 MARCO_17_4390005194-3 5 -0.102048 hybrid +140_1-9 Q0 KILT_2213191-3 6 -0.121427 hybrid +140_1-9 Q0 KILT_10259157-6 7 -0.126438 hybrid +140_1-9 Q0 MARCO_01_1064363562-2 8 -0.135350 hybrid +140_1-9 Q0 MARCO_14_93878971-2 9 -0.138684 hybrid +140_1-9 Q0 MARCO_14_93878971-3 10 -0.141718 hybrid +140_1-9 Q0 KILT_31891772-1 11 -0.144358 hybrid +140_1-9 Q0 KILT_35964707-1 12 -0.145182 hybrid +140_1-9 Q0 MARCO_28_278767164-1 13 -0.149573 hybrid +140_1-9 Q0 KILT_29000259-1 14 -0.150871 hybrid +140_1-9 Q0 MARCO_18_797679733-12 15 -0.152133 hybrid +140_1-9 Q0 KILT_40058074-3 16 -0.157472 hybrid +140_1-9 Q0 MARCO_56_472516218-2 17 -0.159157 hybrid +140_1-9 Q0 KILT_48017862-1 18 -0.164306 hybrid +140_1-9 Q0 MARCO_30_1985040879-2 19 -0.164707 hybrid +140_1-9 Q0 KILT_36749029-1 20 -0.167296 hybrid +140_1-9 Q0 KILT_26399847-4 21 -0.172971 hybrid +140_1-9 Q0 MARCO_25_1699576681-1 22 -0.175545 hybrid +140_1-9 Q0 KILT_46945871-1 23 -0.178470 hybrid +140_1-9 Q0 KILT_24490621-1 24 -0.178689 hybrid +140_1-9 Q0 KILT_31296178-1 25 -0.182314 hybrid +140_1-9 Q0 KILT_28753082-1 26 -0.182671 hybrid +140_1-9 Q0 MARCO_31_1177542281-1 27 -0.187791 hybrid +140_1-9 Q0 MARCO_22_1821166097-10 28 -0.194399 hybrid +140_1-9 Q0 MARCO_18_908886916-48 29 -0.200861 hybrid +140_1-9 Q0 MARCO_40_1565424675-3 30 -0.201430 hybrid +140_1-9 Q0 KILT_27068094-1 31 -0.204238 hybrid +140_1-9 Q0 KILT_31239705-7 32 -0.204377 hybrid +140_1-9 Q0 KILT_44897733-4 33 -0.206368 hybrid +140_1-9 Q0 KILT_15056230-1 34 -0.208892 hybrid +140_1-9 Q0 KILT_31644281-3 35 -0.209132 hybrid +140_1-9 Q0 KILT_31644281-1 36 -0.214712 hybrid +140_1-9 Q0 MARCO_00_1429422874-1 37 -0.214843 hybrid +140_1-9 Q0 MARCO_53_395664418-1 38 -0.216127 hybrid +140_1-9 Q0 KILT_33294687-7 39 -0.218855 hybrid +140_1-9 Q0 MARCO_16_3563992780-5 40 -0.221787 hybrid +140_1-9 Q0 MARCO_58_1513708420-1 41 -0.226739 hybrid +140_1-9 Q0 KILT_366512-2 42 -0.228249 hybrid +140_1-9 Q0 MARCO_02_1555647261-1 43 -0.229678 hybrid +140_1-9 Q0 MARCO_48_1855753765-3 44 -0.237905 hybrid +140_1-9 Q0 MARCO_18_206062244-16 45 -0.239423 hybrid +140_1-9 Q0 KILT_48188382-1 46 -0.245936 hybrid +140_1-9 Q0 MARCO_57_682773011-1 47 -0.249276 hybrid +140_1-9 Q0 KILT_27039537-1 48 -0.252390 hybrid +140_1-9 Q0 KILT_21176396-1 49 -0.253200 hybrid +140_1-9 Q0 KILT_4902047-1 50 -0.255206 hybrid +140_1-9 Q0 MARCO_58_2083805205-3 51 -0.259480 hybrid +140_1-9 Q0 KILT_40058074-1 52 -0.259830 hybrid +140_1-9 Q0 KILT_125253-51 53 -0.262054 hybrid +140_1-9 Q0 MARCO_17_4800427746-32 54 -0.263659 hybrid +140_1-9 Q0 MARCO_19_252208885-74 55 -0.263703 hybrid +140_1-9 Q0 MARCO_06_841381976-172 56 -0.264724 hybrid +140_1-9 Q0 KILT_1032363-14 57 -0.265752 hybrid +140_1-9 Q0 KILT_2157205-5 58 -0.268261 hybrid +140_1-9 Q0 KILT_37078834-1 59 -0.270340 hybrid +140_1-9 Q0 MARCO_29_146210313-7 60 -0.270872 hybrid +140_1-9 Q0 MARCO_36_584214453-2 61 -0.271033 hybrid +140_1-9 Q0 KILT_13945-3 62 -0.271354 hybrid +140_1-9 Q0 MARCO_25_1626526765-16 63 -0.271966 hybrid +140_1-9 Q0 KILT_25349111-1 64 -0.275103 hybrid +140_1-9 Q0 MARCO_25_683948040-3 65 -0.275803 hybrid +140_1-9 Q0 KILT_37607409-1 66 -0.276437 hybrid +140_1-9 Q0 KILT_26751164-1 67 -0.278013 hybrid +140_1-9 Q0 MARCO_55_1666280117-3 68 -0.278027 hybrid +140_1-9 Q0 KILT_50635656-8 69 -0.278297 hybrid +140_1-9 Q0 KILT_31239705-1 70 -0.282090 hybrid +140_1-9 Q0 MARCO_25_743464889-1 71 -0.283009 hybrid +140_1-9 Q0 KILT_31782623-57 72 -0.285766 hybrid +140_1-9 Q0 KILT_373224-5 73 -0.285810 hybrid +140_1-9 Q0 MARCO_18_2227509480-28 74 -0.289814 hybrid +140_1-9 Q0 MARCO_02_1060318205-2 75 -0.291134 hybrid +140_1-9 Q0 KILT_50635656-9 76 -0.294234 hybrid +140_1-9 Q0 KILT_27049086-1 77 -0.295401 hybrid +140_1-9 Q0 MARCO_18_2501414458-2 78 -0.295517 hybrid +140_1-9 Q0 MARCO_16_2628261009-38 79 -0.297822 hybrid +140_1-9 Q0 MARCO_16_3565311114-38 80 -0.297822 hybrid +140_1-9 Q0 KILT_17002826-1 81 -0.299157 hybrid +140_1-9 Q0 KILT_6101286-4 82 -0.299966 hybrid +140_1-9 Q0 MARCO_16_3173525561-4 83 -0.300958 hybrid +140_1-9 Q0 KILT_32722177-1 84 -0.304138 hybrid +140_1-9 Q0 KILT_353400-3 85 -0.304722 hybrid +140_1-9 Q0 KILT_40106064-8 86 -0.307515 hybrid +140_1-9 Q0 KILT_21969506-3 87 -0.307705 hybrid +140_1-9 Q0 MARCO_54_1081376921-1 88 -0.309951 hybrid +140_1-9 Q0 MARCO_58_2084790663-2 89 -0.310761 hybrid +140_1-9 Q0 KILT_21540356-7 90 -0.311002 hybrid +140_1-9 Q0 KILT_670152-1 91 -0.311665 hybrid +140_1-9 Q0 KILT_886363-13 92 -0.313598 hybrid +140_1-9 Q0 MARCO_58_1203216487-2 93 -0.314627 hybrid +140_1-9 Q0 MARCO_58_1203216487-4 94 -0.314627 hybrid +140_1-9 Q0 MARCO_58_1203216487-6 95 -0.314627 hybrid +140_1-9 Q0 MARCO_58_1203216487-8 96 -0.314627 hybrid +140_1-9 Q0 KILT_28968945-17 97 -0.315531 hybrid +140_1-9 Q0 KILT_228606-11 98 -0.315618 hybrid +140_1-9 Q0 KILT_60642369-1 99 -0.316326 hybrid +140_1-9 Q0 KILT_172024-1 100 -0.316581 hybrid +140_2-1 Q0 KILT_50059281-5 1 0.500000 hybrid +140_2-1 Q0 KILT_55702318-2 2 0.430384 hybrid +140_2-1 Q0 KILT_59101211-1 3 0.422398 hybrid +140_2-1 Q0 MARCO_06_200120676-1 4 0.415468 hybrid +140_2-1 Q0 KILT_55702318-1 5 0.405036 hybrid +140_2-1 Q0 MARCO_55_1280659858-26 6 0.379904 hybrid +140_2-1 Q0 MARCO_50_890815532-3 7 0.377962 hybrid +140_2-1 Q0 MARCO_22_258349794-10 8 0.332662 hybrid +140_2-1 Q0 MARCO_25_227670877-3 9 0.321463 hybrid +140_2-1 Q0 KILT_48032251-1 10 0.295372 hybrid +140_2-1 Q0 MARCO_55_1280232390-10 11 0.295371 hybrid +140_2-1 Q0 MARCO_04_1016596058-2 12 0.275132 hybrid +140_2-1 Q0 MARCO_22_1016696041-3 13 0.270744 hybrid +140_2-1 Q0 KILT_36594714-2 14 0.239520 hybrid +140_2-1 Q0 MARCO_02_162084491-4 15 0.234844 hybrid +140_2-1 Q0 KILT_42725077-5 16 0.233717 hybrid +140_2-1 Q0 MARCO_17_494635468-19 17 0.233717 hybrid +140_2-1 Q0 MARCO_49_1858156120-6 18 0.225755 hybrid +140_2-1 Q0 MARCO_18_3532223529-5 19 0.222518 hybrid +140_2-1 Q0 KILT_49883355-2 20 0.208129 hybrid +140_2-1 Q0 MARCO_18_4064677649-1 21 0.203789 hybrid +140_2-1 Q0 MARCO_18_4064677649-4 22 0.193837 hybrid +140_2-1 Q0 KILT_36594714-1 23 0.183333 hybrid +140_2-1 Q0 MARCO_18_3532223529-25 24 0.175300 hybrid +140_2-1 Q0 MARCO_31_426612870-40 25 0.172014 hybrid +140_2-1 Q0 KILT_27243997-3 26 0.170743 hybrid +140_2-1 Q0 KILT_42725077-6 27 0.155396 hybrid +140_2-1 Q0 MARCO_08_254744271-6 28 0.144748 hybrid +140_2-1 Q0 KILT_36594714-3 29 0.142782 hybrid +140_2-1 Q0 KILT_31600293-3 30 0.136235 hybrid +140_2-1 Q0 MARCO_30_1092667965-1 31 0.133213 hybrid +140_2-1 Q0 MARCO_25_227987521-59 32 0.131679 hybrid +140_2-1 Q0 MARCO_08_255872913-1 33 0.130120 hybrid +140_2-1 Q0 MARCO_53_848280024-1 34 0.125444 hybrid +140_2-1 Q0 MARCO_18_3532223529-24 35 0.122110 hybrid +140_2-1 Q0 MARCO_55_1281217641-1 36 0.122110 hybrid +140_2-1 Q0 MARCO_19_1470024508-9 37 0.118082 hybrid +140_2-1 Q0 MARCO_03_803632629-1 38 0.117818 hybrid +140_2-1 Q0 MARCO_41_1494750574-31 39 0.116930 hybrid +140_2-1 Q0 MARCO_39_1263326923-107 40 0.108561 hybrid +140_2-1 Q0 KILT_42725077-4 41 0.107506 hybrid +140_2-1 Q0 MARCO_25_228503185-2 42 0.103405 hybrid +140_2-1 Q0 MARCO_25_227987521-78 43 0.102974 hybrid +140_2-1 Q0 MARCO_06_653370553-5 44 0.092902 hybrid +140_2-1 Q0 KILT_17189631-4 45 0.091247 hybrid +140_2-1 Q0 MARCO_48_831107990-3 46 0.083693 hybrid +140_2-1 Q0 MARCO_47_1604463871-12 47 0.077746 hybrid +140_2-1 Q0 KILT_25606286-1 48 0.077314 hybrid +140_2-1 Q0 KILT_16279193-9 49 0.058633 hybrid +140_2-1 Q0 MARCO_02_1559411091-13 50 0.057362 hybrid +140_2-1 Q0 MARCO_39_1263326923-73 51 0.053142 hybrid +140_2-1 Q0 MARCO_25_227987521-47 52 0.052830 hybrid +140_2-1 Q0 KILT_49883355-3 53 0.049832 hybrid +140_2-1 Q0 MARCO_10_1603307364-3 54 0.049328 hybrid +140_2-1 Q0 MARCO_58_1505770958-4 55 0.047434 hybrid +140_2-1 Q0 MARCO_58_1505770958-1 56 0.046739 hybrid +140_2-1 Q0 MARCO_01_414844028-47 57 0.042398 hybrid +140_2-1 Q0 KILT_50059281-6 58 0.038297 hybrid +140_2-1 Q0 KILT_11859745-1 59 0.034916 hybrid +140_2-1 Q0 MARCO_19_737586084-470 60 0.032902 hybrid +140_2-1 Q0 KILT_29296203-1 61 0.031535 hybrid +140_2-1 Q0 KILT_51298676-3 62 0.024868 hybrid +140_2-1 Q0 KILT_53349007-2 63 0.022398 hybrid +140_2-1 Q0 MARCO_18_1558345297-5 64 0.022206 hybrid +140_2-1 Q0 MARCO_44_575703234-2 65 0.021415 hybrid +140_2-1 Q0 KILT_59101211-2 66 0.020863 hybrid +140_2-1 Q0 MARCO_22_258349794-1 67 0.017170 hybrid +140_2-1 Q0 MARCO_03_803632629-3 68 0.013549 hybrid +140_2-1 Q0 MARCO_03_803632629-4 69 0.011942 hybrid +140_2-1 Q0 MARCO_16_2907234871-7 70 0.008105 hybrid +140_2-1 Q0 MARCO_18_4064677649-3 71 0.008105 hybrid +140_2-1 Q0 KILT_31600293-1 72 0.003094 hybrid +140_2-1 Q0 KILT_50551268-3 73 0.000671 hybrid +140_2-1 Q0 MARCO_09_877077911-17 74 -0.000360 hybrid +140_2-1 Q0 MARCO_39_1269358202-29 75 -0.001343 hybrid +140_2-1 Q0 MARCO_01_414844028-82 76 -0.003405 hybrid +140_2-1 Q0 MARCO_25_205023828-1 77 -0.004868 hybrid +140_2-1 Q0 MARCO_25_227492776-1 78 -0.014364 hybrid +140_2-1 Q0 MARCO_02_611385070-1 79 -0.017650 hybrid +140_2-1 Q0 MARCO_18_1558345297-1 80 -0.019065 hybrid +140_2-1 Q0 KILT_42725077-3 81 -0.019568 hybrid +140_2-1 Q0 MARCO_17_860862124-47 82 -0.022998 hybrid +140_2-1 Q0 MARCO_17_860862124-49 83 -0.022998 hybrid +140_2-1 Q0 MARCO_19_2078509361-2 84 -0.029185 hybrid +140_2-1 Q0 MARCO_32_575441429-1 85 -0.032398 hybrid +140_2-1 Q0 MARCO_16_3146698038-1 86 -0.035084 hybrid +140_2-1 Q0 MARCO_30_1051656536-6 87 -0.035084 hybrid +140_2-1 Q0 KILT_3232790-3 88 -0.037938 hybrid +140_2-1 Q0 MARCO_25_1650825948-2 89 -0.039041 hybrid +140_2-1 Q0 MARCO_58_1418279322-2 90 -0.041798 hybrid +140_2-1 Q0 MARCO_18_4396327697-63 91 -0.043741 hybrid +140_2-1 Q0 KILT_11859745-5 92 -0.043837 hybrid +140_2-1 Q0 MARCO_08_254744271-3 93 -0.044772 hybrid +140_2-1 Q0 MARCO_45_802731714-6 94 -0.046307 hybrid +140_2-1 Q0 KILT_48032251-2 95 -0.047530 hybrid +140_2-1 Q0 MARCO_24_1717459682-4 96 -0.049904 hybrid +140_2-1 Q0 MARCO_17_860862124-45 97 -0.060480 hybrid +140_2-1 Q0 MARCO_27_588776995-2 98 -0.061727 hybrid +140_2-1 Q0 MARCO_03_450730870-1 99 -0.066954 hybrid +140_2-1 Q0 MARCO_41_1243447347-47 100 -0.067410 hybrid +140_2-3 Q0 MARCO_25_227670877-3 1 0.500000 hybrid +140_2-3 Q0 MARCO_01_414844028-47 2 0.293787 hybrid +140_2-3 Q0 KILT_36594714-2 3 0.211175 hybrid +140_2-3 Q0 KILT_36594714-3 4 0.188776 hybrid +140_2-3 Q0 KILT_36594714-1 5 0.181147 hybrid +140_2-3 Q0 MARCO_27_588776995-2 6 0.119807 hybrid +140_2-3 Q0 KILT_50402406-1 7 0.050133 hybrid +140_2-3 Q0 MARCO_22_296660908-7 8 0.036632 hybrid +140_2-3 Q0 KILT_48393303-1 9 -0.032760 hybrid +140_2-3 Q0 KILT_50059281-5 10 -0.049274 hybrid +140_2-3 Q0 MARCO_54_1901046870-4 11 -0.073520 hybrid +140_2-3 Q0 KILT_11859745-5 12 -0.074097 hybrid +140_2-3 Q0 MARCO_32_683060655-1 13 -0.081996 hybrid +140_2-3 Q0 KILT_49157301-4 14 -0.082649 hybrid +140_2-3 Q0 MARCO_48_1524913777-54 15 -0.087804 hybrid +140_2-3 Q0 KILT_2373341-1 16 -0.097831 hybrid +140_2-3 Q0 KILT_34914570-2 17 -0.097831 hybrid +140_2-3 Q0 MARCO_15_569758513-3 18 -0.098690 hybrid +140_2-3 Q0 MARCO_32_575441429-1 19 -0.102472 hybrid +140_2-3 Q0 KILT_22310611-1 20 -0.107793 hybrid +140_2-3 Q0 MARCO_26_820724676-1 21 -0.127282 hybrid +140_2-3 Q0 MARCO_22_1454383296-3 22 -0.128218 hybrid +140_2-3 Q0 MARCO_01_1897016763-19 23 -0.131924 hybrid +140_2-3 Q0 MARCO_56_758601032-18 24 -0.135770 hybrid +140_2-3 Q0 MARCO_55_1059880905-4 25 -0.144900 hybrid +140_2-3 Q0 KILT_51309424-2 26 -0.145053 hybrid +140_2-3 Q0 MARCO_56_758683218-1 27 -0.153118 hybrid +140_2-3 Q0 KILT_50402406-3 28 -0.154029 hybrid +140_2-3 Q0 MARCO_29_1263965849-1 29 -0.156721 hybrid +140_2-3 Q0 KILT_54269106-3 30 -0.168146 hybrid +140_2-3 Q0 MARCO_31_908133646-22 31 -0.169812 hybrid +140_2-3 Q0 MARCO_29_1263965849-2 32 -0.170389 hybrid +140_2-3 Q0 KILT_25854163-2 33 -0.174762 hybrid +140_2-3 Q0 KILT_48917653-2 34 -0.177044 hybrid +140_2-3 Q0 MARCO_18_1558345297-5 35 -0.187699 hybrid +140_2-3 Q0 KILT_43037442-1 36 -0.189661 hybrid +140_2-3 Q0 MARCO_31_908133646-20 37 -0.190173 hybrid +140_2-3 Q0 MARCO_32_683060655-2 38 -0.190597 hybrid +140_2-3 Q0 KILT_4036973-14 39 -0.190917 hybrid +140_2-3 Q0 MARCO_18_3481619515-17 40 -0.192712 hybrid +140_2-3 Q0 KILT_55801720-2 41 -0.199520 hybrid +140_2-3 Q0 MARCO_58_1508509746-2 42 -0.201226 hybrid +140_2-3 Q0 KILT_34157195-1 43 -0.202675 hybrid +140_2-3 Q0 MARCO_31_908133646-19 44 -0.206265 hybrid +140_2-3 Q0 MARCO_50_314443999-14 45 -0.206778 hybrid +140_2-3 Q0 MARCO_55_1059880905-3 46 -0.209804 hybrid +140_2-3 Q0 MARCO_50_314620889-16 47 -0.211291 hybrid +140_2-3 Q0 KILT_59101211-1 48 -0.220100 hybrid +140_2-3 Q0 MARCO_12_1883226547-1 49 -0.220433 hybrid +140_2-3 Q0 MARCO_24_1719507901-4 50 -0.221292 hybrid +140_2-3 Q0 MARCO_06_200362404-2 51 -0.221715 hybrid +140_2-3 Q0 KILT_35908204-1 52 -0.222651 hybrid +140_2-3 Q0 MARCO_57_835996500-5 53 -0.223600 hybrid +140_2-3 Q0 MARCO_44_575703234-2 54 -0.225331 hybrid +140_2-3 Q0 MARCO_13_1670797161-2 55 -0.227895 hybrid +140_2-3 Q0 MARCO_51_531910925-19 56 -0.228421 hybrid +140_2-3 Q0 MARCO_29_510879036-6 57 -0.228947 hybrid +140_2-3 Q0 MARCO_34_287804519-7 58 -0.230883 hybrid +140_2-3 Q0 MARCO_15_1890377756-4 59 -0.235601 hybrid +140_2-3 Q0 KILT_45451509-3 60 -0.236947 hybrid +140_2-3 Q0 KILT_68939-1 61 -0.237960 hybrid +140_2-3 Q0 MARCO_34_368412306-20 62 -0.238460 hybrid +140_2-3 Q0 MARCO_45_802731714-6 63 -0.239832 hybrid +140_2-3 Q0 MARCO_13_1148911669-5 64 -0.241563 hybrid +140_2-3 Q0 MARCO_34_375764327-5 65 -0.242063 hybrid +140_2-3 Q0 MARCO_00_1406884236-37 66 -0.242538 hybrid +140_2-3 Q0 KILT_53349007-2 67 -0.243102 hybrid +140_2-3 Q0 MARCO_52_636856781-2 68 -0.243551 hybrid +140_2-3 Q0 MARCO_50_314620889-1 69 -0.243563 hybrid +140_2-3 Q0 MARCO_22_1361181366-346 70 -0.243846 hybrid +140_2-3 Q0 MARCO_25_841262580-4 71 -0.244307 hybrid +140_2-3 Q0 MARCO_58_1480359745-3 72 -0.246243 hybrid +140_2-3 Q0 KILT_21038847-4 73 -0.247051 hybrid +140_2-3 Q0 MARCO_56_214181872-1 74 -0.248372 hybrid +140_2-3 Q0 KILT_50059281-1 75 -0.249974 hybrid +140_2-3 Q0 KILT_53802305-2 76 -0.252731 hybrid +140_2-3 Q0 MARCO_22_1362056654-285 77 -0.252821 hybrid +140_2-3 Q0 MARCO_43_1518578045-8 78 -0.254116 hybrid +140_2-3 Q0 MARCO_17_494635468-40 79 -0.254372 hybrid +140_2-3 Q0 MARCO_17_494635468-6 80 -0.254372 hybrid +140_2-3 Q0 MARCO_09_1291524654-16 81 -0.254693 hybrid +140_2-3 Q0 MARCO_52_1386965100-6 82 -0.255180 hybrid +140_2-3 Q0 MARCO_17_579975247-1 83 -0.258552 hybrid +140_2-3 Q0 MARCO_22_296549069-6 84 -0.258642 hybrid +140_2-3 Q0 MARCO_28_1027695630-13 85 -0.258642 hybrid +140_2-3 Q0 MARCO_22_855332377-6 86 -0.260283 hybrid +140_2-3 Q0 MARCO_57_836017483-5 87 -0.260681 hybrid +140_2-3 Q0 MARCO_00_677299028-1 88 -0.262219 hybrid +140_2-3 Q0 MARCO_17_488404421-3 89 -0.262847 hybrid +140_2-3 Q0 MARCO_18_2449693299-28 90 -0.262848 hybrid +140_2-3 Q0 MARCO_52_1155203415-4 91 -0.262886 hybrid +140_2-3 Q0 KILT_18576854-1 92 -0.263360 hybrid +140_2-3 Q0 MARCO_12_1173554200-1 93 -0.264168 hybrid +140_2-3 Q0 MARCO_16_3948327096-20 94 -0.265181 hybrid +140_2-3 Q0 KILT_59729833-5 95 -0.265425 hybrid +140_2-3 Q0 MARCO_50_314620889-19 96 -0.265604 hybrid +140_2-3 Q0 MARCO_19_867679941-4 97 -0.266309 hybrid +140_2-3 Q0 MARCO_15_569758513-2 98 -0.267053 hybrid +140_2-3 Q0 KILT_45340713-1 99 -0.267079 hybrid +140_2-3 Q0 MARCO_02_1690274250-1 100 -0.267784 hybrid +140_2-5 Q0 KILT_59101211-1 1 0.500000 hybrid +140_2-5 Q0 KILT_53802305-1 2 0.411815 hybrid +140_2-5 Q0 KILT_42725077-3 3 0.364497 hybrid +140_2-5 Q0 KILT_10143932-7 4 0.358065 hybrid +140_2-5 Q0 KILT_36594714-2 5 0.322856 hybrid +140_2-5 Q0 KILT_26991584-1 6 0.306448 hybrid +140_2-5 Q0 KILT_50059281-3 7 0.243190 hybrid +140_2-5 Q0 KILT_50059281-1 8 0.233658 hybrid +140_2-5 Q0 KILT_50059281-2 9 0.212729 hybrid +140_2-5 Q0 KILT_55860831-2 10 0.136703 hybrid +140_2-5 Q0 KILT_55860831-4 11 0.136703 hybrid +140_2-5 Q0 KILT_50059281-5 12 0.126250 hybrid +140_2-5 Q0 MARCO_03_1141628450-14 13 0.110519 hybrid +140_2-5 Q0 KILT_50059281-4 14 0.104382 hybrid +140_2-5 Q0 KILT_50059281-6 15 0.033674 hybrid +140_2-5 Q0 KILT_50059281-7 16 0.006074 hybrid +140_2-5 Q0 KILT_42725077-4 17 -0.101573 hybrid +140_2-5 Q0 MARCO_25_408104792-1 18 -0.179055 hybrid +140_2-5 Q0 MARCO_25_408104792-2 19 -0.191112 hybrid +140_2-5 Q0 KILT_51424908-8 20 -0.192386 hybrid +140_2-5 Q0 KILT_23192836-1 21 -0.202083 hybrid +140_2-5 Q0 KILT_42725077-5 22 -0.205040 hybrid +140_2-5 Q0 MARCO_25_1131909828-1 23 -0.223580 hybrid +140_2-5 Q0 KILT_10088945-8 24 -0.242934 hybrid +140_2-5 Q0 MARCO_31_2455582-2 25 -0.256293 hybrid +140_2-5 Q0 KILT_53802305-2 26 -0.259381 hybrid +140_2-5 Q0 MARCO_01_414844028-82 27 -0.260558 hybrid +140_2-5 Q0 KILT_21383-60 28 -0.266308 hybrid +140_2-5 Q0 KILT_6200214-3 29 -0.267059 hybrid +140_2-5 Q0 KILT_26799731-1 30 -0.275237 hybrid +140_2-5 Q0 KILT_31600293-1 31 -0.282278 hybrid +140_2-5 Q0 MARCO_25_227875829-5 32 -0.282568 hybrid +140_2-5 Q0 KILT_31600293-3 33 -0.287857 hybrid +140_2-5 Q0 MARCO_17_938724643-2 34 -0.288716 hybrid +140_2-5 Q0 KILT_54269106-3 35 -0.301950 hybrid +140_2-5 Q0 KILT_27461496-1 36 -0.303258 hybrid +140_2-5 Q0 KILT_52055609-2 37 -0.309843 hybrid +140_2-5 Q0 KILT_25786829-1 38 -0.316662 hybrid +140_2-5 Q0 KILT_45340713-1 39 -0.316679 hybrid +140_2-5 Q0 KILT_9856354-3 40 -0.318858 hybrid +140_2-5 Q0 MARCO_00_892205658-1 41 -0.319625 hybrid +140_2-5 Q0 KILT_33386426-1 42 -0.319802 hybrid +140_2-5 Q0 KILT_48686858-1 43 -0.320023 hybrid +140_2-5 Q0 KILT_43207725-3 44 -0.320427 hybrid +140_2-5 Q0 KILT_48522949-1 45 -0.321002 hybrid +140_2-5 Q0 KILT_56823-14 46 -0.322708 hybrid +140_2-5 Q0 KILT_47002652-1 47 -0.323970 hybrid +140_2-5 Q0 KILT_53349007-2 48 -0.325426 hybrid +140_2-5 Q0 MARCO_31_2455582-1 49 -0.326245 hybrid +140_2-5 Q0 KILT_51424908-6 50 -0.336056 hybrid +140_2-5 Q0 KILT_59633457-1 51 -0.337040 hybrid +140_2-5 Q0 KILT_24403072-1 52 -0.337295 hybrid +140_2-5 Q0 KILT_56882924-1 53 -0.337568 hybrid +140_2-5 Q0 KILT_3950337-1 54 -0.338399 hybrid +140_2-5 Q0 MARCO_51_406092400-10 55 -0.341003 hybrid +140_2-5 Q0 MARCO_56_433889789-11 56 -0.341424 hybrid +140_2-5 Q0 MARCO_10_107614716-10 57 -0.343045 hybrid +140_2-5 Q0 KILT_43207725-5 58 -0.344893 hybrid +140_2-5 Q0 KILT_32263934-7 59 -0.345883 hybrid +140_2-5 Q0 KILT_49450841-1 60 -0.346037 hybrid +140_2-5 Q0 MARCO_12_1173554200-1 61 -0.347163 hybrid +140_2-5 Q0 KILT_2217846-7 62 -0.348027 hybrid +140_2-5 Q0 KILT_44232467-3 63 -0.350188 hybrid +140_2-5 Q0 MARCO_25_274243533-1 64 -0.350524 hybrid +140_2-5 Q0 KILT_18360-17 65 -0.353163 hybrid +140_2-5 Q0 KILT_28173932-7 66 -0.354613 hybrid +140_2-5 Q0 MARCO_17_4377940623-6 67 -0.355039 hybrid +140_2-5 Q0 KILT_59633457-2 68 -0.355210 hybrid +140_2-5 Q0 MARCO_16_1680442149-22 69 -0.356581 hybrid +140_2-5 Q0 KILT_22082754-2 70 -0.357451 hybrid +140_2-5 Q0 MARCO_51_1712785474-36 71 -0.358111 hybrid +140_2-5 Q0 MARCO_19_283466612-9 72 -0.360135 hybrid +140_2-5 Q0 KILT_9519173-22 73 -0.361250 hybrid +140_2-5 Q0 KILT_4306579-6 74 -0.363638 hybrid +140_2-5 Q0 KILT_36594714-3 75 -0.364116 hybrid +140_2-5 Q0 KILT_46465421-7 76 -0.364742 hybrid +140_2-5 Q0 MARCO_10_107614716-9 77 -0.366016 hybrid +140_2-5 Q0 KILT_57658-27 78 -0.366687 hybrid +140_2-5 Q0 KILT_2217846-5 79 -0.366687 hybrid +140_2-5 Q0 MARCO_17_3160026717-93 80 -0.368939 hybrid +140_2-5 Q0 KILT_27243997-3 81 -0.369343 hybrid +140_2-5 Q0 KILT_6748189-1 82 -0.369445 hybrid +140_2-5 Q0 MARCO_08_558726228-1 83 -0.369729 hybrid +140_2-5 Q0 KILT_32238456-1 84 -0.369877 hybrid +140_2-5 Q0 MARCO_10_107614716-4 85 -0.370554 hybrid +140_2-5 Q0 KILT_26969348-2 86 -0.370560 hybrid +140_2-5 Q0 MARCO_50_314443999-18 87 -0.370725 hybrid +140_2-5 Q0 MARCO_06_1996783523-10 88 -0.370725 hybrid +140_2-5 Q0 MARCO_20_332780226-13 89 -0.370929 hybrid +140_2-5 Q0 MARCO_18_4152259221-31 90 -0.371100 hybrid +140_2-5 Q0 KILT_28565826-1 91 -0.371168 hybrid +140_2-5 Q0 KILT_9519173-23 92 -0.373830 hybrid +140_2-5 Q0 KILT_21038847-4 93 -0.374052 hybrid +140_2-5 Q0 KILT_43027511-1 94 -0.375041 hybrid +140_2-5 Q0 KILT_60889626-3 95 -0.375297 hybrid +140_2-5 Q0 KILT_29296203-1 96 -0.375320 hybrid +140_2-5 Q0 KILT_60515880-3 97 -0.378078 hybrid +140_2-5 Q0 MARCO_56_23914436-3 98 -0.378152 hybrid +140_2-5 Q0 MARCO_48_1598755457-2 99 -0.378681 hybrid +140_2-5 Q0 KILT_9463403-1 100 -0.379022 hybrid +140_3-1 Q0 MARCO_54_575373635-2 1 0.500000 hybrid +140_3-1 Q0 KILT_43639639-1 2 0.100717 hybrid +140_3-1 Q0 MARCO_05_1363328058-1 3 0.083037 hybrid +140_3-1 Q0 MARCO_16_3146698038-3 4 0.059990 hybrid +140_3-1 Q0 KILT_1442062-2 5 0.054390 hybrid +140_3-1 Q0 KILT_28678189-1 6 0.044346 hybrid +140_3-1 Q0 MARCO_34_1754841682-1 7 0.039367 hybrid +140_3-1 Q0 KILT_1442062-1 8 0.031810 hybrid +140_3-1 Q0 KILT_52002085-1 9 0.015419 hybrid +140_3-1 Q0 KILT_13924866-1 10 -0.062454 hybrid +140_3-1 Q0 MARCO_34_1754841682-2 11 -0.081731 hybrid +140_3-1 Q0 MARCO_16_3146698038-1 12 -0.090856 hybrid +140_3-1 Q0 MARCO_31_554152250-21 13 -0.126707 hybrid +140_3-1 Q0 MARCO_17_4828987761-8 14 -0.133232 hybrid +140_3-1 Q0 KILT_28678189-4 15 -0.143937 hybrid +140_3-1 Q0 MARCO_45_1439590880-1 16 -0.146144 hybrid +140_3-1 Q0 MARCO_29_1413346262-2 17 -0.146583 hybrid +140_3-1 Q0 KILT_26041112-3 18 -0.147878 hybrid +140_3-1 Q0 MARCO_50_2686188862-15 19 -0.165866 hybrid +140_3-1 Q0 MARCO_54_575373635-10 20 -0.166688 hybrid +140_3-1 Q0 KILT_3959583-1 21 -0.168775 hybrid +140_3-1 Q0 MARCO_17_543589328-1 22 -0.168775 hybrid +140_3-1 Q0 MARCO_16_3146698038-2 23 -0.168815 hybrid +140_3-1 Q0 KILT_28678189-3 24 -0.169226 hybrid +140_3-1 Q0 MARCO_24_1718716761-3 25 -0.170041 hybrid +140_3-1 Q0 KILT_39388584-2 26 -0.175573 hybrid +140_3-1 Q0 KILT_2001834-1 27 -0.178779 hybrid +140_3-1 Q0 KILT_39388584-1 28 -0.179149 hybrid +140_3-1 Q0 KILT_2292869-5 29 -0.181636 hybrid +140_3-1 Q0 MARCO_17_467054059-6 30 -0.181636 hybrid +140_3-1 Q0 KILT_25606286-1 31 -0.182286 hybrid +140_3-1 Q0 KILT_52148598-1 32 -0.186472 hybrid +140_3-1 Q0 KILT_35475162-17 33 -0.189763 hybrid +140_3-1 Q0 MARCO_16_3146712539-2 34 -0.193482 hybrid +140_3-1 Q0 MARCO_17_543589328-2 35 -0.193858 hybrid +140_3-1 Q0 KILT_39553706-92 36 -0.215057 hybrid +140_3-1 Q0 KILT_2881064-1 37 -0.215770 hybrid +140_3-1 Q0 MARCO_12_1446464445-2 38 -0.216728 hybrid +140_3-1 Q0 MARCO_10_145182020-2 39 -0.217812 hybrid +140_3-1 Q0 KILT_10602129-5 40 -0.219386 hybrid +140_3-1 Q0 MARCO_25_227869196-4 41 -0.221331 hybrid +140_3-1 Q0 MARCO_16_3146698038-13 42 -0.222534 hybrid +140_3-1 Q0 MARCO_16_3146698038-11 43 -0.223937 hybrid +140_3-1 Q0 MARCO_29_1413332966-1 44 -0.225049 hybrid +140_3-1 Q0 KILT_33013283-3 45 -0.231106 hybrid +140_3-1 Q0 KILT_40670265-1 46 -0.231329 hybrid +140_3-1 Q0 MARCO_06_555012177-3 47 -0.239017 hybrid +140_3-1 Q0 MARCO_15_820551194-16 48 -0.239473 hybrid +140_3-1 Q0 KILT_3959583-5 49 -0.245199 hybrid +140_3-1 Q0 MARCO_38_1499809394-5 50 -0.248479 hybrid +140_3-1 Q0 MARCO_17_543589328-4 51 -0.251992 hybrid +140_3-1 Q0 KILT_1442062-3 52 -0.252979 hybrid +140_3-1 Q0 MARCO_34_1754841682-3 53 -0.254034 hybrid +140_3-1 Q0 KILT_24731872-2 54 -0.254427 hybrid +140_3-1 Q0 MARCO_19_609025200-20 55 -0.255830 hybrid +140_3-1 Q0 KILT_29210637-1 56 -0.261437 hybrid +140_3-1 Q0 MARCO_10_1445973568-1 57 -0.262127 hybrid +140_3-1 Q0 MARCO_25_227869196-5 58 -0.265241 hybrid +140_3-1 Q0 KILT_2001834-2 59 -0.265383 hybrid +140_3-1 Q0 MARCO_34_1754841682-4 60 -0.266244 hybrid +140_3-1 Q0 MARCO_30_114166387-6 61 -0.267334 hybrid +140_3-1 Q0 MARCO_47_1260114631-8 62 -0.268976 hybrid +140_3-1 Q0 MARCO_48_849595266-3 63 -0.269313 hybrid +140_3-1 Q0 MARCO_42_114765095-245 64 -0.271571 hybrid +140_3-1 Q0 KILT_27088389-1 65 -0.275278 hybrid +140_3-1 Q0 MARCO_00_1532081462-2 66 -0.276299 hybrid +140_3-1 Q0 KILT_1442062-4 67 -0.276784 hybrid +140_3-1 Q0 MARCO_01_1879724342-13 68 -0.280856 hybrid +140_3-1 Q0 MARCO_53_848280024-6 69 -0.280999 hybrid +140_3-1 Q0 MARCO_48_1870391675-5 70 -0.283794 hybrid +140_3-1 Q0 MARCO_49_1449360966-2 71 -0.285020 hybrid +140_3-1 Q0 MARCO_00_202034002-1 72 -0.286069 hybrid +140_3-1 Q0 MARCO_24_1375511290-2 73 -0.287210 hybrid +140_3-1 Q0 MARCO_17_4722768323-6 74 -0.287774 hybrid +140_3-1 Q0 MARCO_09_355516610-2 75 -0.288550 hybrid +140_3-1 Q0 MARCO_29_1413320804-2 76 -0.288927 hybrid +140_3-1 Q0 KILT_1227091-8 77 -0.289080 hybrid +140_3-1 Q0 KILT_4414093-9 78 -0.289103 hybrid +140_3-1 Q0 MARCO_47_1377601934-9 79 -0.289234 hybrid +140_3-1 Q0 KILT_45576555-84 80 -0.289999 hybrid +140_3-1 Q0 MARCO_22_1362056654-156 81 -0.290637 hybrid +140_3-1 Q0 MARCO_31_554152250-10 82 -0.291048 hybrid +140_3-1 Q0 MARCO_54_574905051-7 83 -0.292485 hybrid +140_3-1 Q0 KILT_9244533-1 84 -0.292810 hybrid +140_3-1 Q0 MARCO_25_228567496-6 85 -0.294795 hybrid +140_3-1 Q0 MARCO_17_4828987761-6 86 -0.296637 hybrid +140_3-1 Q0 MARCO_16_3146698038-4 87 -0.297208 hybrid +140_3-1 Q0 MARCO_30_1985040879-2 88 -0.297305 hybrid +140_3-1 Q0 MARCO_16_3146698038-9 89 -0.298320 hybrid +140_3-1 Q0 MARCO_41_1264195901-24 90 -0.299324 hybrid +140_3-1 Q0 MARCO_35_32944392-1 91 -0.299483 hybrid +140_3-1 Q0 MARCO_36_584214453-3 92 -0.299860 hybrid +140_3-1 Q0 MARCO_22_258374845-7 93 -0.300287 hybrid +140_3-1 Q0 KILT_24833975-1 94 -0.302158 hybrid +140_3-1 Q0 MARCO_10_1444399136-1 95 -0.302175 hybrid +140_3-1 Q0 MARCO_12_1446464445-6 96 -0.304177 hybrid +140_3-1 Q0 MARCO_44_550413853-10 97 -0.305671 hybrid +140_3-1 Q0 MARCO_47_1260114631-7 98 -0.307605 hybrid +140_3-1 Q0 MARCO_17_4332854321-10 99 -0.307628 hybrid +140_3-1 Q0 MARCO_52_1057437050-4 100 -0.308249 hybrid +140_3-3 Q0 MARCO_03_1119841711-2 1 0.500000 hybrid +140_3-3 Q0 MARCO_03_1119841711-4 2 0.500000 hybrid +140_3-3 Q0 KILT_1455571-2 3 0.365310 hybrid +140_3-3 Q0 MARCO_41_1449203424-19 4 0.352569 hybrid +140_3-3 Q0 MARCO_01_404587467-5 5 0.344074 hybrid +140_3-3 Q0 MARCO_50_1349326789-1 6 0.309406 hybrid +140_3-3 Q0 MARCO_37_533858651-1 7 0.308353 hybrid +140_3-3 Q0 MARCO_25_1105808639-6 8 0.252300 hybrid +140_3-3 Q0 MARCO_24_1718716761-3 9 0.194339 hybrid +140_3-3 Q0 KILT_48393303-1 10 0.166387 hybrid +140_3-3 Q0 KILT_52665128-4 11 0.160954 hybrid +140_3-3 Q0 MARCO_16_4029279131-9 12 0.156362 hybrid +140_3-3 Q0 KILT_41339202-2 13 0.150830 hybrid +140_3-3 Q0 KILT_6481443-1 14 0.148065 hybrid +140_3-3 Q0 MARCO_10_145182020-2 15 0.148065 hybrid +140_3-3 Q0 KILT_905857-6 16 0.142945 hybrid +140_3-3 Q0 MARCO_18_830007945-10 17 0.141991 hybrid +140_3-3 Q0 MARCO_08_1642917401-42 18 0.118516 hybrid +140_3-3 Q0 KILT_4414093-9 19 0.085708 hybrid +140_3-3 Q0 MARCO_18_1847768021-2 20 0.081938 hybrid +140_3-3 Q0 MARCO_17_1140841368-10 21 0.074415 hybrid +140_3-3 Q0 MARCO_05_1363328058-1 22 0.058398 hybrid +140_3-3 Q0 MARCO_08_28631017-4 23 0.058052 hybrid +140_3-3 Q0 MARCO_09_1804293393-47 24 0.055023 hybrid +140_3-3 Q0 MARCO_09_1806426198-31 25 0.055023 hybrid +140_3-3 Q0 MARCO_09_1807544135-34 26 0.055023 hybrid +140_3-3 Q0 MARCO_55_344195359-30 27 0.055023 hybrid +140_3-3 Q0 MARCO_55_346682052-31 28 0.055023 hybrid +140_3-3 Q0 MARCO_55_349865254-30 29 0.055023 hybrid +140_3-3 Q0 MARCO_55_352467300-33 30 0.055022 hybrid +140_3-3 Q0 MARCO_55_354904209-53 31 0.055022 hybrid +140_3-3 Q0 MARCO_55_359547556-39 32 0.055022 hybrid +140_3-3 Q0 MARCO_55_359846488-32 33 0.055022 hybrid +140_3-3 Q0 MARCO_55_366204369-26 34 0.055022 hybrid +140_3-3 Q0 MARCO_17_4234111809-22 35 0.054496 hybrid +140_3-3 Q0 MARCO_16_1680442149-37 36 0.036076 hybrid +140_3-3 Q0 MARCO_10_1444399136-1 37 0.030265 hybrid +140_3-3 Q0 KILT_1455571-1 38 0.025162 hybrid +140_3-3 Q0 MARCO_48_1525369314-5 39 0.023911 hybrid +140_3-3 Q0 MARCO_40_521826240-2 40 0.020766 hybrid +140_3-3 Q0 MARCO_21_1337388555-5 41 0.011910 hybrid +140_3-3 Q0 MARCO_50_2481434035-92 42 0.009161 hybrid +140_3-3 Q0 MARCO_39_1678716629-9 43 -0.007811 hybrid +140_3-3 Q0 KILT_18508984-12 44 -0.009260 hybrid +140_3-3 Q0 MARCO_55_909214516-97 45 -0.010280 hybrid +140_3-3 Q0 MARCO_16_3146698038-12 46 -0.010297 hybrid +140_3-3 Q0 MARCO_53_1051503556-1 47 -0.018182 hybrid +140_3-3 Q0 KILT_60378250-1 48 -0.026923 hybrid +140_3-3 Q0 KILT_59692409-2 49 -0.027335 hybrid +140_3-3 Q0 MARCO_41_1264195901-24 50 -0.027894 hybrid +140_3-3 Q0 KILT_3013894-11 51 -0.029886 hybrid +140_3-3 Q0 MARCO_50_2875232263-3 52 -0.039944 hybrid +140_3-3 Q0 MARCO_11_962246638-28 53 -0.045377 hybrid +140_3-3 Q0 MARCO_29_1413346262-2 54 -0.046019 hybrid +140_3-3 Q0 MARCO_35_46028876-1 55 -0.046957 hybrid +140_3-3 Q0 MARCO_55_358607444-18 56 -0.046957 hybrid +140_3-3 Q0 MARCO_01_975753143-88 57 -0.051945 hybrid +140_3-3 Q0 MARCO_50_2336371252-43 58 -0.054217 hybrid +140_3-3 Q0 MARCO_50_2115805805-8 59 -0.057262 hybrid +140_3-3 Q0 MARCO_50_1675783459-26 60 -0.074596 hybrid +140_3-3 Q0 MARCO_54_1645889533-1 61 -0.075963 hybrid +140_3-3 Q0 MARCO_05_439308363-11 62 -0.080654 hybrid +140_3-3 Q0 KILT_5498402-1 63 -0.089609 hybrid +140_3-3 Q0 MARCO_49_1568296325-10 64 -0.091042 hybrid +140_3-3 Q0 MARCO_48_1525301872-17 65 -0.091470 hybrid +140_3-3 Q0 MARCO_09_560362269-27 66 -0.096984 hybrid +140_3-3 Q0 MARCO_24_1007494647-2 67 -0.097017 hybrid +140_3-3 Q0 MARCO_50_1420580993-8 68 -0.097083 hybrid +140_3-3 Q0 MARCO_28_1593886403-6 69 -0.097462 hybrid +140_3-3 Q0 MARCO_42_114765095-62 70 -0.098186 hybrid +140_3-3 Q0 MARCO_50_1284394057-6 71 -0.105396 hybrid +140_3-3 Q0 KILT_49439184-5 72 -0.111536 hybrid +140_3-3 Q0 MARCO_01_2156096262-1 73 -0.114928 hybrid +140_3-3 Q0 KILT_18699503-5 74 -0.118302 hybrid +140_3-3 Q0 MARCO_40_521826240-5 75 -0.118664 hybrid +140_3-3 Q0 MARCO_24_1799879104-66 76 -0.118928 hybrid +140_3-3 Q0 MARCO_50_1373769183-22 77 -0.123932 hybrid +140_3-3 Q0 MARCO_45_802606180-3 78 -0.128031 hybrid +140_3-3 Q0 MARCO_17_1140841368-9 79 -0.135356 hybrid +140_3-3 Q0 MARCO_25_227661072-3 80 -0.135357 hybrid +140_3-3 Q0 KILT_12311661-5 81 -0.135653 hybrid +140_3-3 Q0 KILT_14369009-1 82 -0.135653 hybrid +140_3-3 Q0 MARCO_01_1738246905-152 83 -0.144295 hybrid +140_3-3 Q0 MARCO_23_690288481-76 84 -0.146946 hybrid +140_3-3 Q0 MARCO_19_1287074897-14 85 -0.147028 hybrid +140_3-3 Q0 MARCO_48_801498544-9 86 -0.147653 hybrid +140_3-3 Q0 MARCO_35_394291482-3 87 -0.151818 hybrid +140_3-3 Q0 MARCO_34_1762666739-6 88 -0.159259 hybrid +140_3-3 Q0 MARCO_36_705542241-2 89 -0.161103 hybrid +140_3-3 Q0 MARCO_41_1115611597-20 90 -0.164510 hybrid +140_3-3 Q0 MARCO_41_1323177369-19 91 -0.165383 hybrid +140_3-3 Q0 MARCO_22_258417071-3 92 -0.166337 hybrid +140_3-3 Q0 KILT_3732880-1 93 -0.168593 hybrid +140_3-3 Q0 MARCO_30_1420554415-139 94 -0.171029 hybrid +140_3-3 Q0 MARCO_05_892726167-6 95 -0.176264 hybrid +140_3-3 Q0 MARCO_23_1165480646-1 96 -0.179112 hybrid +140_3-3 Q0 MARCO_52_1033050179-9 97 -0.180149 hybrid +140_3-3 Q0 KILT_48188404-2 98 -0.180659 hybrid +140_3-3 Q0 MARCO_25_228726155-3 99 -0.181202 hybrid +140_3-3 Q0 MARCO_50_518603422-16 100 -0.181383 hybrid +140_4-10 Q0 MARCO_37_1107517688-3 1 0.500000 hybrid +140_4-10 Q0 MARCO_37_1107517688-1 2 0.425568 hybrid +140_4-10 Q0 MARCO_37_1107517688-4 3 0.349611 hybrid +140_4-10 Q0 MARCO_37_1107517688-2 4 0.313641 hybrid +140_4-10 Q0 MARCO_20_1605557843-4 5 0.153494 hybrid +140_4-10 Q0 MARCO_51_38815629-2 6 0.131146 hybrid +140_4-10 Q0 MARCO_48_1525195976-1 7 0.121715 hybrid +140_4-10 Q0 MARCO_17_2985927323-3 8 0.109044 hybrid +140_4-10 Q0 MARCO_57_1935960136-19 9 0.092040 hybrid +140_4-10 Q0 MARCO_48_849543852-1 10 0.070039 hybrid +140_4-10 Q0 MARCO_20_1605557843-3 11 0.043393 hybrid +140_4-10 Q0 MARCO_11_904776446-3 12 0.035533 hybrid +140_4-10 Q0 MARCO_30_1025297153-2 13 0.025282 hybrid +140_4-10 Q0 MARCO_11_1562523903-2 14 0.011499 hybrid +140_4-10 Q0 MARCO_51_38815629-3 15 0.010029 hybrid +140_4-10 Q0 MARCO_12_7420345-4 16 0.000941 hybrid +140_4-10 Q0 KILT_4030485-5 17 -0.015751 hybrid +140_4-10 Q0 MARCO_17_2985927323-4 18 -0.015972 hybrid +140_4-10 Q0 KILT_12890526-11 19 -0.016742 hybrid +140_4-10 Q0 MARCO_36_979659662-4 20 -0.035940 hybrid +140_4-10 Q0 MARCO_29_1413265048-4 21 -0.036318 hybrid +140_4-10 Q0 MARCO_11_723817460-3 22 -0.036363 hybrid +140_4-10 Q0 KILT_4030485-4 23 -0.044007 hybrid +140_4-10 Q0 KILT_4030485-1 24 -0.055370 hybrid +140_4-10 Q0 KILT_4030485-3 25 -0.058842 hybrid +140_4-10 Q0 MARCO_07_704518188-161 26 -0.059939 hybrid +140_4-10 Q0 MARCO_24_1375511290-3 27 -0.065379 hybrid +140_4-10 Q0 MARCO_13_1204561650-4 28 -0.066738 hybrid +140_4-10 Q0 MARCO_19_654638400-10 29 -0.071342 hybrid +140_4-10 Q0 MARCO_50_1774816435-34 30 -0.078398 hybrid +140_4-10 Q0 MARCO_32_1002744496-1 31 -0.084678 hybrid +140_4-10 Q0 MARCO_41_1792252484-11 32 -0.098406 hybrid +140_4-10 Q0 MARCO_41_1792252484-9 33 -0.098406 hybrid +140_4-10 Q0 MARCO_51_38815629-1 34 -0.101314 hybrid +140_4-10 Q0 MARCO_31_87355756-2 35 -0.105949 hybrid +140_4-10 Q0 MARCO_30_1048979554-4 36 -0.106115 hybrid +140_4-10 Q0 MARCO_20_1605557843-1 37 -0.106236 hybrid +140_4-10 Q0 MARCO_37_1107482875-1 38 -0.108415 hybrid +140_4-10 Q0 MARCO_17_2985927323-1 39 -0.112632 hybrid +140_4-10 Q0 MARCO_03_450197128-2 40 -0.114071 hybrid +140_4-10 Q0 MARCO_51_38815629-6 41 -0.115505 hybrid +140_4-10 Q0 MARCO_22_1016868225-2 42 -0.115903 hybrid +140_4-10 Q0 MARCO_19_654145760-28 43 -0.128247 hybrid +140_4-10 Q0 MARCO_36_1004130531-3 44 -0.129294 hybrid +140_4-10 Q0 MARCO_11_1562495073-3 45 -0.133003 hybrid +140_4-10 Q0 MARCO_48_849543852-10 46 -0.134839 hybrid +140_4-10 Q0 MARCO_57_1937405093-17 47 -0.135851 hybrid +140_4-10 Q0 MARCO_13_1204561650-1 48 -0.142352 hybrid +140_4-10 Q0 MARCO_48_849543852-11 49 -0.144396 hybrid +140_4-10 Q0 MARCO_11_904776446-1 50 -0.145835 hybrid +140_4-10 Q0 MARCO_45_802527701-3 51 -0.147042 hybrid +140_4-10 Q0 MARCO_05_1762379500-340 52 -0.152286 hybrid +140_4-10 Q0 MARCO_48_849543852-9 53 -0.155019 hybrid +140_4-10 Q0 MARCO_11_723809604-5 54 -0.155064 hybrid +140_4-10 Q0 MARCO_11_1562523903-3 55 -0.155396 hybrid +140_4-10 Q0 MARCO_18_798247652-1 56 -0.156694 hybrid +140_4-10 Q0 MARCO_48_849543852-6 57 -0.158768 hybrid +140_4-10 Q0 MARCO_48_849543852-15 58 -0.160111 hybrid +140_4-10 Q0 MARCO_13_1204571746-1 59 -0.160921 hybrid +140_4-10 Q0 KILT_13439573-5 60 -0.161394 hybrid +140_4-10 Q0 MARCO_17_2985927323-7 61 -0.161933 hybrid +140_4-10 Q0 MARCO_17_2985927323-9 62 -0.161933 hybrid +140_4-10 Q0 MARCO_15_1458788650-1 63 -0.165471 hybrid +140_4-10 Q0 MARCO_48_849543852-12 64 -0.165949 hybrid +140_4-10 Q0 MARCO_48_1630480460-8 65 -0.166709 hybrid +140_4-10 Q0 MARCO_30_407817046-6 66 -0.168978 hybrid +140_4-10 Q0 MARCO_53_404698947-17 67 -0.168978 hybrid +140_4-10 Q0 MARCO_24_1719707759-1 68 -0.172023 hybrid +140_4-10 Q0 MARCO_48_849543852-2 69 -0.179113 hybrid +140_4-10 Q0 KILT_13583474-1 70 -0.180578 hybrid +140_4-10 Q0 MARCO_20_1605557843-2 71 -0.182787 hybrid +140_4-10 Q0 MARCO_37_1107475220-2 72 -0.185539 hybrid +140_4-10 Q0 MARCO_51_38815629-5 73 -0.188830 hybrid +140_4-10 Q0 MARCO_00_358922652-6 74 -0.189394 hybrid +140_4-10 Q0 MARCO_57_1935960136-1 75 -0.196021 hybrid +140_4-10 Q0 MARCO_18_3483116847-2 76 -0.201315 hybrid +140_4-10 Q0 MARCO_58_237288357-7 77 -0.205512 hybrid +140_4-10 Q0 MARCO_13_1205680173-1 78 -0.205532 hybrid +140_4-10 Q0 KILT_23242173-2 79 -0.206494 hybrid +140_4-10 Q0 MARCO_16_3577155134-6 80 -0.206494 hybrid +140_4-10 Q0 MARCO_30_427506360-1 81 -0.207334 hybrid +140_4-10 Q0 MARCO_57_1935960136-15 82 -0.207510 hybrid +140_4-10 Q0 MARCO_48_849543852-7 83 -0.209216 hybrid +140_4-10 Q0 MARCO_57_1935960136-11 84 -0.210343 hybrid +140_4-10 Q0 MARCO_57_1935960136-7 85 -0.211611 hybrid +140_4-10 Q0 MARCO_57_1935960136-12 86 -0.213946 hybrid +140_4-10 Q0 MARCO_57_1935960136-9 87 -0.213946 hybrid +140_4-10 Q0 MARCO_31_87355756-4 88 -0.216236 hybrid +140_4-10 Q0 MARCO_31_87359963-4 89 -0.216236 hybrid +140_4-10 Q0 KILT_45228085-2 90 -0.216900 hybrid +140_4-10 Q0 MARCO_57_1935960136-16 91 -0.217192 hybrid +140_4-10 Q0 MARCO_57_1935960136-10 92 -0.217514 hybrid +140_4-10 Q0 MARCO_57_1935960136-5 93 -0.217514 hybrid +140_4-10 Q0 MARCO_45_802527701-4 94 -0.219935 hybrid +140_4-10 Q0 MARCO_57_1935960136-3 95 -0.220685 hybrid +140_4-10 Q0 MARCO_39_1269636367-9 96 -0.221580 hybrid +140_4-10 Q0 MARCO_20_1605557843-6 97 -0.222889 hybrid +140_4-10 Q0 KILT_39511856-4 98 -0.225485 hybrid +140_4-10 Q0 KILT_1325731-3 99 -0.226235 hybrid +140_4-10 Q0 MARCO_51_38815629-7 100 -0.226824 hybrid +140_4-12 Q0 MARCO_37_1107517688-1 1 0.500000 hybrid +140_4-12 Q0 MARCO_37_1107517688-4 2 0.454321 hybrid +140_4-12 Q0 MARCO_37_1107517688-2 3 0.341679 hybrid +140_4-12 Q0 MARCO_37_1107517688-3 4 0.339359 hybrid +140_4-12 Q0 MARCO_17_2985927323-1 5 0.095991 hybrid +140_4-12 Q0 KILT_4030485-4 6 0.084552 hybrid +140_4-12 Q0 MARCO_29_710618272-1 7 0.010982 hybrid +140_4-12 Q0 MARCO_37_1107482875-1 8 -0.002110 hybrid +140_4-12 Q0 MARCO_57_1935960136-19 9 -0.002825 hybrid +140_4-12 Q0 MARCO_32_1002744496-1 10 -0.015520 hybrid +140_4-12 Q0 MARCO_17_2985927323-3 11 -0.023238 hybrid +140_4-12 Q0 MARCO_11_1562523903-2 12 -0.030502 hybrid +140_4-12 Q0 MARCO_48_849543852-1 13 -0.071759 hybrid +140_4-12 Q0 MARCO_48_849543852-10 14 -0.080410 hybrid +140_4-12 Q0 MARCO_57_1935960136-1 15 -0.083455 hybrid +140_4-12 Q0 MARCO_11_723809604-5 16 -0.085552 hybrid +140_4-12 Q0 MARCO_37_1107475220-2 17 -0.086818 hybrid +140_4-12 Q0 MARCO_48_1525195976-1 18 -0.103047 hybrid +140_4-12 Q0 MARCO_51_38815629-2 19 -0.107783 hybrid +140_4-12 Q0 MARCO_48_849543852-2 20 -0.110842 hybrid +140_4-12 Q0 MARCO_48_849543852-9 21 -0.118661 hybrid +140_4-12 Q0 MARCO_32_1002710668-2 22 -0.125519 hybrid +140_4-12 Q0 MARCO_48_849543852-6 23 -0.127003 hybrid +140_4-12 Q0 MARCO_48_849543852-15 24 -0.129221 hybrid +140_4-12 Q0 MARCO_20_1605557843-4 25 -0.129980 hybrid +140_4-12 Q0 KILT_4030485-5 26 -0.134769 hybrid +140_4-12 Q0 MARCO_20_1605557843-3 27 -0.135015 hybrid +140_4-12 Q0 MARCO_17_2985927323-7 28 -0.137533 hybrid +140_4-12 Q0 MARCO_17_2985927323-9 29 -0.137533 hybrid +140_4-12 Q0 MARCO_48_849543852-11 30 -0.141540 hybrid +140_4-12 Q0 MARCO_30_1025297153-2 31 -0.143908 hybrid +140_4-12 Q0 MARCO_11_1562523903-3 32 -0.149045 hybrid +140_4-12 Q0 MARCO_51_38815629-1 33 -0.153085 hybrid +140_4-12 Q0 MARCO_32_1002744496-3 34 -0.159600 hybrid +140_4-12 Q0 MARCO_50_1774816435-34 35 -0.163214 hybrid +140_4-12 Q0 MARCO_48_1525110936-1 36 -0.168593 hybrid +140_4-12 Q0 MARCO_07_704518188-161 37 -0.170522 hybrid +140_4-12 Q0 MARCO_48_849543852-12 38 -0.181526 hybrid +140_4-12 Q0 MARCO_48_849543852-7 39 -0.184851 hybrid +140_4-12 Q0 MARCO_12_7420345-4 40 -0.195531 hybrid +140_4-12 Q0 MARCO_18_3483116847-2 41 -0.198890 hybrid +140_4-12 Q0 MARCO_48_849543852-8 42 -0.200175 hybrid +140_4-12 Q0 MARCO_24_1375511290-3 43 -0.200504 hybrid +140_4-12 Q0 MARCO_13_1205680173-1 44 -0.210837 hybrid +140_4-12 Q0 KILT_4030485-1 45 -0.213412 hybrid +140_4-12 Q0 MARCO_11_723817460-3 46 -0.214108 hybrid +140_4-12 Q0 MARCO_35_451972693-1 47 -0.215099 hybrid +140_4-12 Q0 MARCO_37_1107494680-3 48 -0.215365 hybrid +140_4-12 Q0 MARCO_17_2985927323-4 49 -0.219661 hybrid +140_4-12 Q0 MARCO_19_654638400-10 50 -0.239234 hybrid +140_4-12 Q0 MARCO_17_2985927323-6 51 -0.240002 hybrid +140_4-12 Q0 MARCO_12_7420345-1 52 -0.240486 hybrid +140_4-12 Q0 MARCO_11_715729617-4 53 -0.245052 hybrid +140_4-12 Q0 MARCO_20_99977098-1 54 -0.249513 hybrid +140_4-12 Q0 MARCO_40_1002073335-1 55 -0.251669 hybrid +140_4-12 Q0 MARCO_48_1630480460-8 56 -0.257985 hybrid +140_4-12 Q0 MARCO_16_3577155134-6 57 -0.260730 hybrid +140_4-12 Q0 MARCO_23_1656841526-1 58 -0.261237 hybrid +140_4-12 Q0 MARCO_32_1002710668-3 59 -0.261605 hybrid +140_4-12 Q0 MARCO_03_1426671976-1 60 -0.261672 hybrid +140_4-12 Q0 MARCO_48_849543852-14 61 -0.262446 hybrid +140_4-12 Q0 MARCO_30_1048979554-4 62 -0.263939 hybrid +140_4-12 Q0 MARCO_06_486512416-7 63 -0.264891 hybrid +140_4-12 Q0 MARCO_45_802527701-4 64 -0.266984 hybrid +140_4-12 Q0 MARCO_24_396360485-6 65 -0.270879 hybrid +140_4-12 Q0 MARCO_03_450197128-2 66 -0.271294 hybrid +140_4-12 Q0 MARCO_29_1413346262-3 67 -0.272150 hybrid +140_4-12 Q0 MARCO_08_255202802-5 68 -0.274436 hybrid +140_4-12 Q0 MARCO_48_849543852-4 69 -0.281032 hybrid +140_4-12 Q0 MARCO_54_633088310-2 70 -0.283231 hybrid +140_4-12 Q0 MARCO_49_105945882-9 71 -0.284183 hybrid +140_4-12 Q0 MARCO_13_1205711706-6 72 -0.285464 hybrid +140_4-12 Q0 MARCO_04_531101151-1 73 -0.285517 hybrid +140_4-12 Q0 MARCO_04_531078427-2 74 -0.286228 hybrid +140_4-12 Q0 MARCO_47_486498315-19 75 -0.291283 hybrid +140_4-12 Q0 KILT_1325731-3 76 -0.291655 hybrid +140_4-12 Q0 MARCO_31_87355756-4 77 -0.292974 hybrid +140_4-12 Q0 MARCO_31_87359963-4 78 -0.292974 hybrid +140_4-12 Q0 MARCO_32_1002715402-1 79 -0.298619 hybrid +140_4-12 Q0 MARCO_59_391549261-6 80 -0.299730 hybrid +140_4-12 Q0 MARCO_59_190619415-1 81 -0.300373 hybrid +140_4-12 Q0 KILT_56060629-1 82 -0.305820 hybrid +140_4-12 Q0 MARCO_18_798247652-1 83 -0.305820 hybrid +140_4-12 Q0 MARCO_48_849568900-1 84 -0.305989 hybrid +140_4-12 Q0 MARCO_50_2628936301-15 85 -0.308101 hybrid +140_4-12 Q0 MARCO_09_976448303-9 86 -0.308226 hybrid +140_4-12 Q0 MARCO_05_1762379500-340 87 -0.310203 hybrid +140_4-12 Q0 MARCO_51_38815629-6 88 -0.310503 hybrid +140_4-12 Q0 KILT_45094210-1 89 -0.311865 hybrid +140_4-12 Q0 MARCO_41_749100887-5 90 -0.312199 hybrid +140_4-12 Q0 MARCO_29_1413265048-4 91 -0.312692 hybrid +140_4-12 Q0 MARCO_00_250834929-4 92 -0.312875 hybrid +140_4-12 Q0 MARCO_14_1267956680-31 93 -0.312962 hybrid +140_4-12 Q0 MARCO_30_427506360-1 94 -0.314702 hybrid +140_4-12 Q0 MARCO_40_1033557025-1 95 -0.315630 hybrid +140_4-12 Q0 MARCO_24_1719707759-1 96 -0.316080 hybrid +140_4-12 Q0 MARCO_48_1630480460-1 97 -0.316321 hybrid +140_4-12 Q0 MARCO_13_614210852-7 98 -0.317737 hybrid +140_4-12 Q0 MARCO_58_1941891135-6 99 -0.318868 hybrid +140_4-12 Q0 MARCO_54_1651421526-20 100 -0.320569 hybrid +140_4-14 Q0 MARCO_20_1605557843-3 1 0.500000 hybrid +140_4-14 Q0 MARCO_32_1002744496-1 2 0.485086 hybrid +140_4-14 Q0 MARCO_48_1525195976-1 3 0.400966 hybrid +140_4-14 Q0 MARCO_37_1107517688-1 4 0.395694 hybrid +140_4-14 Q0 MARCO_37_1107517688-4 5 0.384532 hybrid +140_4-14 Q0 MARCO_37_1107482875-1 6 0.344159 hybrid +140_4-14 Q0 MARCO_51_38815629-5 7 0.336507 hybrid +140_4-14 Q0 MARCO_51_38815629-2 8 0.330657 hybrid +140_4-14 Q0 MARCO_48_849543852-10 9 0.321835 hybrid +140_4-14 Q0 MARCO_30_1025297153-2 10 0.308804 hybrid +140_4-14 Q0 MARCO_48_849543852-7 11 0.296054 hybrid +140_4-14 Q0 MARCO_20_1605557843-4 12 0.292571 hybrid +140_4-14 Q0 MARCO_48_849543852-11 13 0.278154 hybrid +140_4-14 Q0 MARCO_39_1238313519-1 14 0.253315 hybrid +140_4-14 Q0 MARCO_20_1605557843-1 15 0.252966 hybrid +140_4-14 Q0 MARCO_15_1458788650-1 16 0.247371 hybrid +140_4-14 Q0 MARCO_51_38815629-6 17 0.228476 hybrid +140_4-14 Q0 MARCO_51_38815629-1 18 0.219936 hybrid +140_4-14 Q0 MARCO_48_849543852-1 19 0.216897 hybrid +140_4-14 Q0 MARCO_17_2985927323-1 20 0.208478 hybrid +140_4-14 Q0 MARCO_37_1107517688-2 21 0.201283 hybrid +140_4-14 Q0 MARCO_51_38815629-3 22 0.201283 hybrid +140_4-14 Q0 MARCO_13_1204561650-1 23 0.182442 hybrid +140_4-14 Q0 MARCO_17_2985927323-4 24 0.166290 hybrid +140_4-14 Q0 MARCO_48_849543852-8 25 0.161731 hybrid +140_4-14 Q0 MARCO_37_1107517688-3 26 0.159405 hybrid +140_4-14 Q0 KILT_4030485-5 27 0.153756 hybrid +140_4-14 Q0 MARCO_29_710618272-1 28 0.147597 hybrid +140_4-14 Q0 MARCO_57_1935960136-11 29 0.142473 hybrid +140_4-14 Q0 MARCO_17_2985927323-7 30 0.137390 hybrid +140_4-14 Q0 MARCO_17_2985927323-9 31 0.137390 hybrid +140_4-14 Q0 MARCO_57_1935960136-12 32 0.135816 hybrid +140_4-14 Q0 MARCO_57_1935960136-9 33 0.135816 hybrid +140_4-14 Q0 MARCO_48_849543852-9 34 0.134592 hybrid +140_4-14 Q0 MARCO_57_1935960136-10 35 0.129213 hybrid +140_4-14 Q0 MARCO_57_1935960136-15 36 0.129213 hybrid +140_4-14 Q0 MARCO_57_1935960136-5 37 0.129213 hybrid +140_4-14 Q0 MARCO_57_1935960136-7 38 0.129213 hybrid +140_4-14 Q0 MARCO_11_723809604-5 39 0.115576 hybrid +140_4-14 Q0 MARCO_17_2985927323-6 40 0.115576 hybrid +140_4-14 Q0 MARCO_48_849543852-12 41 0.115576 hybrid +140_4-14 Q0 KILT_4030485-4 42 0.111300 hybrid +140_4-14 Q0 MARCO_17_2985927323-3 43 0.111300 hybrid +140_4-14 Q0 MARCO_41_579307081-1 44 0.111299 hybrid +140_4-14 Q0 MARCO_37_1107494680-3 45 0.105826 hybrid +140_4-14 Q0 MARCO_57_1935960136-3 46 0.104965 hybrid +140_4-14 Q0 KILT_4030485-1 47 0.104858 hybrid +140_4-14 Q0 KILT_4030485-6 48 0.099801 hybrid +140_4-14 Q0 MARCO_48_849543852-6 49 0.098604 hybrid +140_4-14 Q0 MARCO_51_38815629-7 50 0.090280 hybrid +140_4-14 Q0 MARCO_28_1087396690-4 51 0.086850 hybrid +140_4-14 Q0 MARCO_13_1204561650-4 52 0.084847 hybrid +140_4-14 Q0 MARCO_19_654638400-10 53 0.079938 hybrid +140_4-14 Q0 MARCO_37_1107475220-2 54 0.075056 hybrid +140_4-14 Q0 MARCO_50_1774816435-34 55 0.070618 hybrid +140_4-14 Q0 MARCO_48_849543852-15 56 0.070215 hybrid +140_4-14 Q0 MARCO_48_849543852-2 57 0.070215 hybrid +140_4-14 Q0 MARCO_57_1935960136-1 58 0.070214 hybrid +140_4-14 Q0 MARCO_57_1935960136-4 59 0.070214 hybrid +140_4-14 Q0 MARCO_51_38815629-4 60 0.062670 hybrid +140_4-14 Q0 MARCO_32_1002744496-3 61 0.053431 hybrid +140_4-14 Q0 MARCO_32_1087103060-2 62 0.051185 hybrid +140_4-14 Q0 MARCO_15_1458788650-2 63 0.047003 hybrid +140_4-14 Q0 MARCO_03_1426671976-3 64 0.041193 hybrid +140_4-14 Q0 MARCO_48_849543852-14 65 0.041193 hybrid +140_4-14 Q0 MARCO_57_1935960136-13 66 0.041193 hybrid +140_4-14 Q0 KILT_12890526-11 67 0.035450 hybrid +140_4-14 Q0 MARCO_17_3305904780-10 68 0.035450 hybrid +140_4-14 Q0 MARCO_31_87355756-2 69 0.035450 hybrid +140_4-14 Q0 MARCO_57_1935960136-6 70 0.035450 hybrid +140_4-14 Q0 MARCO_57_1935960136-8 71 0.035450 hybrid +140_4-14 Q0 MARCO_57_1935960136-14 72 0.029735 hybrid +140_4-14 Q0 MARCO_11_1562523903-2 73 0.024086 hybrid +140_4-14 Q0 MARCO_12_7420345-4 74 0.024086 hybrid +140_4-14 Q0 MARCO_40_1002073335-1 75 0.021141 hybrid +140_4-14 Q0 MARCO_13_1204571746-1 76 0.018479 hybrid +140_4-14 Q0 MARCO_29_1340014164-4 77 0.018478 hybrid +140_4-14 Q0 MARCO_35_451972693-1 78 0.017093 hybrid +140_4-14 Q0 MARCO_36_1004130531-3 79 0.012279 hybrid +140_4-14 Q0 MARCO_13_1204561650-3 80 0.007948 hybrid +140_4-14 Q0 MARCO_57_1935960136-16 81 0.007410 hybrid +140_4-14 Q0 MARCO_32_1087103060-1 82 0.006361 hybrid +140_4-14 Q0 MARCO_30_1173301230-2 83 -0.018707 hybrid +140_4-14 Q0 MARCO_24_1810514576-3 84 -0.025700 hybrid +140_4-14 Q0 MARCO_39_1238313519-3 85 -0.025700 hybrid +140_4-14 Q0 MARCO_48_849543852-5 86 -0.025700 hybrid +140_4-14 Q0 MARCO_32_1002710668-2 87 -0.027192 hybrid +140_4-14 Q0 MARCO_20_217471662-2 88 -0.032612 hybrid +140_4-14 Q0 MARCO_52_1581410896-1 89 -0.034374 hybrid +140_4-14 Q0 KILT_4030485-3 90 -0.039444 hybrid +140_4-14 Q0 MARCO_07_704518188-161 91 -0.039444 hybrid +140_4-14 Q0 MARCO_13_1204703859-4 92 -0.039444 hybrid +140_4-14 Q0 MARCO_20_1605557843-6 93 -0.039444 hybrid +140_4-14 Q0 MARCO_40_1231437755-5 94 -0.039484 hybrid +140_4-14 Q0 MARCO_40_991082351-1 95 -0.040197 hybrid +140_4-14 Q0 MARCO_00_250834929-4 96 -0.046020 hybrid +140_4-14 Q0 KILT_358540-5 97 -0.046195 hybrid +140_4-14 Q0 MARCO_17_2985927323-5 98 -0.046195 hybrid +140_4-14 Q0 MARCO_41_579307081-2 99 -0.046195 hybrid +140_4-14 Q0 MARCO_11_723817460-3 100 -0.052892 hybrid +140_4-16 Q0 MARCO_17_1736077149-13 1 0.500000 hybrid +140_4-16 Q0 KILT_642012-12 2 0.364928 hybrid +140_4-16 Q0 MARCO_18_2882627036-2 3 0.165705 hybrid +140_4-16 Q0 MARCO_05_1908155114-294 4 0.139615 hybrid +140_4-16 Q0 MARCO_37_1107482875-1 5 0.060544 hybrid +140_4-16 Q0 MARCO_17_2985927323-1 6 0.052682 hybrid +140_4-16 Q0 MARCO_37_1107517688-4 7 0.027924 hybrid +140_4-16 Q0 MARCO_37_1107517688-2 8 -0.001077 hybrid +140_4-16 Q0 MARCO_37_1107517688-3 9 -0.010277 hybrid +140_4-16 Q0 MARCO_11_723809604-5 10 -0.019120 hybrid +140_4-16 Q0 MARCO_50_1491472222-6 11 -0.035028 hybrid +140_4-16 Q0 MARCO_07_1207611158-1 12 -0.036801 hybrid +140_4-16 Q0 MARCO_20_1605557843-3 13 -0.049559 hybrid +140_4-16 Q0 MARCO_20_1713928724-5 14 -0.052043 hybrid +140_4-16 Q0 MARCO_11_1562523903-2 15 -0.052597 hybrid +140_4-16 Q0 MARCO_17_2985927323-4 16 -0.056847 hybrid +140_4-16 Q0 KILT_12890526-11 17 -0.059780 hybrid +140_4-16 Q0 MARCO_51_38815629-1 18 -0.060399 hybrid +140_4-16 Q0 MARCO_06_1573731078-359 19 -0.061190 hybrid +140_4-16 Q0 MARCO_11_326412344-233 20 -0.064511 hybrid +140_4-16 Q0 MARCO_57_1935960136-1 21 -0.079022 hybrid +140_4-16 Q0 MARCO_29_1455516285-2 22 -0.081368 hybrid +140_4-16 Q0 KILT_4030485-5 23 -0.082258 hybrid +140_4-16 Q0 KILT_4030485-4 24 -0.086027 hybrid +140_4-16 Q0 MARCO_29_710618272-1 25 -0.090468 hybrid +140_4-16 Q0 MARCO_57_1886877689-9 26 -0.091760 hybrid +140_4-16 Q0 MARCO_45_116980330-4 27 -0.092149 hybrid +140_4-16 Q0 MARCO_48_849543852-10 28 -0.096175 hybrid +140_4-16 Q0 MARCO_51_38815629-2 29 -0.096735 hybrid +140_4-16 Q0 MARCO_19_654638400-10 30 -0.101994 hybrid +140_4-16 Q0 MARCO_45_630104966-2 31 -0.107740 hybrid +140_4-16 Q0 MARCO_04_12113655-4 32 -0.113500 hybrid +140_4-16 Q0 MARCO_18_409195426-10 33 -0.114686 hybrid +140_4-16 Q0 MARCO_18_409111507-10 34 -0.116597 hybrid +140_4-16 Q0 MARCO_31_1695105567-3 35 -0.117750 hybrid +140_4-16 Q0 MARCO_31_87355756-2 36 -0.121072 hybrid +140_4-16 Q0 KILT_358540-5 37 -0.121737 hybrid +140_4-16 Q0 MARCO_28_1087396690-4 38 -0.122983 hybrid +140_4-16 Q0 MARCO_16_4053119654-1 39 -0.123503 hybrid +140_4-16 Q0 MARCO_04_17417286-5 40 -0.132769 hybrid +140_4-16 Q0 MARCO_17_2985927323-3 41 -0.134752 hybrid +140_4-16 Q0 MARCO_13_1204561650-1 42 -0.134943 hybrid +140_4-16 Q0 MARCO_20_1713936221-10 43 -0.135167 hybrid +140_4-16 Q0 MARCO_29_1455516285-3 44 -0.137335 hybrid +140_4-16 Q0 MARCO_18_409195426-8 45 -0.137948 hybrid +140_4-16 Q0 MARCO_32_1002744496-1 46 -0.138245 hybrid +140_4-16 Q0 MARCO_57_1886877689-3 47 -0.139892 hybrid +140_4-16 Q0 KILT_4030485-6 48 -0.140281 hybrid +140_4-16 Q0 MARCO_13_1204561650-4 49 -0.141210 hybrid +140_4-16 Q0 MARCO_30_1025297153-2 50 -0.144288 hybrid +140_4-16 Q0 KILT_4030485-1 51 -0.146792 hybrid +140_4-16 Q0 MARCO_57_1886877689-1 52 -0.147233 hybrid +140_4-16 Q0 MARCO_48_849543852-1 53 -0.147385 hybrid +140_4-16 Q0 MARCO_18_409111507-8 54 -0.148307 hybrid +140_4-16 Q0 MARCO_21_1652125388-5 55 -0.150357 hybrid +140_4-16 Q0 MARCO_53_404698947-17 56 -0.161250 hybrid +140_4-16 Q0 MARCO_20_1713936221-6 57 -0.163042 hybrid +140_4-16 Q0 MARCO_20_1714067724-3 58 -0.163167 hybrid +140_4-16 Q0 KILT_12890526-8 59 -0.163866 hybrid +140_4-16 Q0 MARCO_45_630371732-2 60 -0.164281 hybrid +140_4-16 Q0 KILT_30529-46 61 -0.168393 hybrid +140_4-16 Q0 MARCO_24_1209348771-1 62 -0.169612 hybrid +140_4-16 Q0 MARCO_13_1204571746-1 63 -0.169764 hybrid +140_4-16 Q0 MARCO_24_1810514576-3 64 -0.173711 hybrid +140_4-16 Q0 MARCO_11_326412344-331 65 -0.175385 hybrid +140_4-16 Q0 MARCO_48_1339744271-4 66 -0.177948 hybrid +140_4-16 Q0 MARCO_19_654638400-8 67 -0.179504 hybrid +140_4-16 Q0 KILT_20216098-1 68 -0.180255 hybrid +140_4-16 Q0 MARCO_26_821380723-13 69 -0.180413 hybrid +140_4-16 Q0 MARCO_39_1268454937-17 70 -0.182291 hybrid +140_4-16 Q0 MARCO_55_46415069-2 71 -0.182871 hybrid +140_4-16 Q0 MARCO_30_115340187-1 72 -0.184347 hybrid +140_4-16 Q0 KILT_317450-5 73 -0.185771 hybrid +140_4-16 Q0 MARCO_36_1003973875-14 74 -0.186344 hybrid +140_4-16 Q0 MARCO_42_465921789-32 75 -0.186779 hybrid +140_4-16 Q0 MARCO_24_1209348771-14 76 -0.187372 hybrid +140_4-16 Q0 MARCO_29_1455516285-5 77 -0.189474 hybrid +140_4-16 Q0 MARCO_30_407817046-6 78 -0.190403 hybrid +140_4-16 Q0 MARCO_06_149943940-20 79 -0.191543 hybrid +140_4-16 Q0 MARCO_18_409111507-12 80 -0.192584 hybrid +140_4-16 Q0 MARCO_18_409195426-12 81 -0.192585 hybrid +140_4-16 Q0 MARCO_55_80577459-3 82 -0.195589 hybrid +140_4-16 Q0 MARCO_27_1785005494-1 83 -0.196947 hybrid +140_4-16 Q0 MARCO_24_1810518323-3 84 -0.197013 hybrid +140_4-16 Q0 MARCO_29_1455516285-8 85 -0.199550 hybrid +140_4-16 Q0 MARCO_57_1886877689-2 86 -0.200005 hybrid +140_4-16 Q0 KILT_4030485-3 87 -0.202726 hybrid +140_4-16 Q0 MARCO_11_1562495073-3 88 -0.202871 hybrid +140_4-16 Q0 KILT_12890526-10 89 -0.203945 hybrid +140_4-16 Q0 MARCO_45_116980330-2 90 -0.205468 hybrid +140_4-16 Q0 MARCO_36_1010386136-3 91 -0.206291 hybrid +140_4-16 Q0 MARCO_24_1209348771-12 92 -0.208472 hybrid +140_4-16 Q0 MARCO_36_299127110-5 93 -0.208940 hybrid +140_4-16 Q0 MARCO_57_1935960136-4 94 -0.209395 hybrid +140_4-16 Q0 MARCO_20_1713928724-4 95 -0.210087 hybrid +140_4-16 Q0 MARCO_18_409195426-9 96 -0.210443 hybrid +140_4-16 Q0 MARCO_24_1209348771-13 97 -0.210614 hybrid +140_4-16 Q0 MARCO_07_704518188-161 98 -0.210739 hybrid +140_4-16 Q0 MARCO_06_1059528231-73 99 -0.212354 hybrid +140_4-16 Q0 MARCO_55_89938771-2 100 -0.212446 hybrid +140_4-2 Q0 MARCO_06_200120676-1 1 0.500000 hybrid +140_4-2 Q0 MARCO_09_877077911-17 2 0.469424 hybrid +140_4-2 Q0 MARCO_50_890815532-3 3 0.459336 hybrid +140_4-2 Q0 MARCO_04_1016596058-2 4 0.347846 hybrid +140_4-2 Q0 MARCO_49_1858156120-6 5 0.294311 hybrid +140_4-2 Q0 MARCO_57_835996500-4 6 0.293921 hybrid +140_4-2 Q0 MARCO_29_1413290396-3 7 0.289449 hybrid +140_4-2 Q0 MARCO_07_818580910-14 8 0.277905 hybrid +140_4-2 Q0 MARCO_31_426612870-40 9 0.236044 hybrid +140_4-2 Q0 MARCO_24_1848199923-10 10 0.207938 hybrid +140_4-2 Q0 MARCO_08_254744271-6 11 0.206482 hybrid +140_4-2 Q0 MARCO_11_904812095-3 12 0.201386 hybrid +140_4-2 Q0 MARCO_25_227987521-59 13 0.192312 hybrid +140_4-2 Q0 MARCO_08_255872913-1 14 0.190622 hybrid +140_4-2 Q0 MARCO_23_1522526684-42 15 0.188022 hybrid +140_4-2 Q0 MARCO_53_848280024-1 16 0.185552 hybrid +140_4-2 Q0 MARCO_03_803632629-1 17 0.177284 hybrid +140_4-2 Q0 MARCO_41_1494750574-31 18 0.176322 hybrid +140_4-2 Q0 MARCO_02_1459424440-20 19 0.174918 hybrid +140_4-2 Q0 MARCO_39_1263326923-107 20 0.167247 hybrid +140_4-2 Q0 MARCO_25_228503185-2 21 0.161657 hybrid +140_4-2 Q0 MARCO_25_227987521-78 22 0.161189 hybrid +140_4-2 Q0 MARCO_06_653370553-5 23 0.150269 hybrid +140_4-2 Q0 MARCO_48_831107990-3 24 0.140285 hybrid +140_4-2 Q0 MARCO_01_1006240201-100 25 0.126505 hybrid +140_4-2 Q0 MARCO_08_254900524-1 26 0.126505 hybrid +140_4-2 Q0 MARCO_02_1559411091-13 27 0.111737 hybrid +140_4-2 Q0 KILT_51903763-2 28 0.108305 hybrid +140_4-2 Q0 MARCO_39_1263326923-73 29 0.107161 hybrid +140_4-2 Q0 MARCO_25_227987521-47 30 0.106823 hybrid +140_4-2 Q0 MARCO_19_737586084-470 31 0.085216 hybrid +140_4-2 Q0 MARCO_50_1049838337-48 32 0.066236 hybrid +140_4-2 Q0 MARCO_03_803632629-3 33 0.064234 hybrid +140_4-2 Q0 MARCO_03_803632629-4 34 0.062492 hybrid +140_4-2 Q0 MARCO_11_562882643-2 35 0.049258 hybrid +140_4-2 Q0 MARCO_39_1269358202-29 36 0.048088 hybrid +140_4-2 Q0 MARCO_39_1263326923-123 37 0.047152 hybrid +140_4-2 Q0 MARCO_10_445774288-101 38 0.031006 hybrid +140_4-2 Q0 MARCO_52_1181039218-4 39 0.029914 hybrid +140_4-2 Q0 MARCO_19_2078509361-2 40 0.017901 hybrid +140_4-2 Q0 MARCO_25_338005213-9 41 0.007241 hybrid +140_4-2 Q0 MARCO_58_1418279322-2 42 0.004225 hybrid +140_4-2 Q0 MARCO_11_904790106-5 43 0.003861 hybrid +140_4-2 Q0 MARCO_08_254744271-3 44 0.001001 hybrid +140_4-2 Q0 MARCO_41_1243447347-47 45 -0.023543 hybrid +140_4-2 Q0 MARCO_39_934284846-2 46 -0.023803 hybrid +140_4-2 Q0 MARCO_49_635989419-8 47 -0.024349 hybrid +140_4-2 Q0 MARCO_45_801248901-1 48 -0.034593 hybrid +140_4-2 Q0 MARCO_20_13432250-41 49 -0.035192 hybrid +140_4-2 Q0 MARCO_50_493970699-15 50 -0.035425 hybrid +140_4-2 Q0 MARCO_50_502152509-15 51 -0.035426 hybrid +140_4-2 Q0 MARCO_50_502152509-17 52 -0.035426 hybrid +140_4-2 Q0 MARCO_08_255160747-12 53 -0.035815 hybrid +140_4-2 Q0 MARCO_28_714343395-27 54 -0.035816 hybrid +140_4-2 Q0 MARCO_36_1634882790-4 55 -0.039326 hybrid +140_4-2 Q0 MARCO_39_1263326923-97 56 -0.041588 hybrid +140_4-2 Q0 MARCO_44_1872945754-9 57 -0.041588 hybrid +140_4-2 Q0 MARCO_30_1767571706-4 58 -0.042341 hybrid +140_4-2 Q0 MARCO_06_653370553-7 59 -0.048894 hybrid +140_4-2 Q0 MARCO_00_202300533-3 60 -0.051572 hybrid +140_4-2 Q0 MARCO_42_874466107-7 61 -0.056434 hybrid +140_4-2 Q0 MARCO_13_961857600-9 62 -0.059476 hybrid +140_4-2 Q0 MARCO_21_40950557-1 63 -0.059476 hybrid +140_4-2 Q0 MARCO_50_1675783459-27 64 -0.063454 hybrid +140_4-2 Q0 MARCO_06_1969398989-18 65 -0.067562 hybrid +140_4-2 Q0 MARCO_31_1413530103-74 66 -0.070084 hybrid +140_4-2 Q0 MARCO_39_1263326923-101 67 -0.071514 hybrid +140_4-2 Q0 MARCO_50_502152509-31 68 -0.076714 hybrid +140_4-2 Q0 MARCO_39_1697103382-5 69 -0.079912 hybrid +140_4-2 Q0 MARCO_31_1413530103-30 70 -0.080380 hybrid +140_4-2 Q0 MARCO_25_227435726-12 71 -0.082382 hybrid +140_4-2 Q0 MARCO_06_486512416-1 72 -0.084410 hybrid +140_4-2 Q0 MARCO_21_944306293-2 73 -0.088544 hybrid +140_4-2 Q0 MARCO_00_466408708-36 74 -0.093536 hybrid +140_4-2 Q0 MARCO_17_494635468-5 75 -0.093952 hybrid +140_4-2 Q0 MARCO_11_532557776-3 76 -0.095460 hybrid +140_4-2 Q0 MARCO_27_883014233-30 77 -0.098242 hybrid +140_4-2 Q0 MARCO_25_228314399-1 78 -0.100998 hybrid +140_4-2 Q0 MARCO_30_427506360-1 79 -0.111841 hybrid +140_4-2 Q0 MARCO_24_1848199923-8 80 -0.112595 hybrid +140_4-2 Q0 MARCO_22_719166958-4 81 -0.112828 hybrid +140_4-2 Q0 MARCO_47_1423580787-1 82 -0.112829 hybrid +140_4-2 Q0 MARCO_50_502152509-21 83 -0.112829 hybrid +140_4-2 Q0 MARCO_50_502152509-26 84 -0.112829 hybrid +140_4-2 Q0 MARCO_07_602210499-3 85 -0.113427 hybrid +140_4-2 Q0 MARCO_28_987485845-2 86 -0.116625 hybrid +140_4-2 Q0 MARCO_59_818913648-8 87 -0.121565 hybrid +140_4-2 Q0 MARCO_34_517877405-1 88 -0.128481 hybrid +140_4-2 Q0 MARCO_44_1548418435-4 89 -0.130015 hybrid +140_4-2 Q0 MARCO_22_383501534-3 90 -0.131575 hybrid +140_4-2 Q0 MARCO_32_8838252-9 91 -0.132979 hybrid +140_4-2 Q0 MARCO_00_1325455962-61 92 -0.134227 hybrid +140_4-2 Q0 MARCO_17_3304506154-23 93 -0.134825 hybrid +140_4-2 Q0 MARCO_57_835996500-2 94 -0.135345 hybrid +140_4-2 Q0 MARCO_25_227987521-30 95 -0.140363 hybrid +140_4-2 Q0 MARCO_09_877443894-21 96 -0.140909 hybrid +140_4-2 Q0 MARCO_31_1413530103-92 97 -0.141299 hybrid +140_4-2 Q0 KILT_8643423-3 98 -0.144679 hybrid +140_4-2 Q0 MARCO_08_253968900-11 99 -0.144679 hybrid +140_4-2 Q0 MARCO_25_227987521-8 100 -0.144679 hybrid +140_4-4 Q0 MARCO_30_1025211734-1 1 0.500000 hybrid +140_4-4 Q0 MARCO_56_874320135-2 2 0.489975 hybrid +140_4-4 Q0 MARCO_48_1630706195-2 3 0.458694 hybrid +140_4-4 Q0 MARCO_50_1732246764-40 4 0.392366 hybrid +140_4-4 Q0 MARCO_48_1630706195-5 5 0.384520 hybrid +140_4-4 Q0 MARCO_11_1562523903-2 6 0.379142 hybrid +140_4-4 Q0 MARCO_50_23689317-1 7 0.373961 hybrid +140_4-4 Q0 MARCO_48_1630706195-3 8 0.369082 hybrid +140_4-4 Q0 MARCO_25_228806808-1 9 0.368143 hybrid +140_4-4 Q0 MARCO_15_143403989-2 10 0.360135 hybrid +140_4-4 Q0 KILT_23242173-2 11 0.351570 hybrid +140_4-4 Q0 KILT_844568-1 12 0.348429 hybrid +140_4-4 Q0 MARCO_30_1025297153-3 13 0.343909 hybrid +140_4-4 Q0 MARCO_19_2582932327-1 14 0.342495 hybrid +140_4-4 Q0 KILT_12890526-9 15 0.341730 hybrid +140_4-4 Q0 MARCO_19_654638400-9 16 0.341730 hybrid +140_4-4 Q0 MARCO_47_1442290483-4 17 0.335333 hybrid +140_4-4 Q0 MARCO_50_23689317-2 18 0.335263 hybrid +140_4-4 Q0 MARCO_16_3916317424-8 19 0.333953 hybrid +140_4-4 Q0 MARCO_10_1110636104-1 20 0.321112 hybrid +140_4-4 Q0 KILT_1842316-6 21 0.307981 hybrid +140_4-4 Q0 MARCO_16_4065616439-8 22 0.307981 hybrid +140_4-4 Q0 MARCO_48_1630706195-4 23 0.305373 hybrid +140_4-4 Q0 MARCO_23_1375999528-3 24 0.304005 hybrid +140_4-4 Q0 KILT_38945-11 25 0.294548 hybrid +140_4-4 Q0 MARCO_19_947484619-2 26 0.291454 hybrid +140_4-4 Q0 MARCO_13_1204369497-1 27 0.289646 hybrid +140_4-4 Q0 MARCO_17_1272644831-8 28 0.260660 hybrid +140_4-4 Q0 MARCO_51_1907789940-3 29 0.255618 hybrid +140_4-4 Q0 KILT_60823736-1 30 0.248884 hybrid +140_4-4 Q0 MARCO_17_1272644831-2 31 0.246995 hybrid +140_4-4 Q0 MARCO_53_404698947-17 32 0.237816 hybrid +140_4-4 Q0 MARCO_37_1107475220-3 33 0.188768 hybrid +140_4-4 Q0 MARCO_30_1025297153-7 34 0.168023 hybrid +140_4-4 Q0 KILT_7416378-1 35 0.134493 hybrid +140_4-4 Q0 MARCO_17_3599769542-16 36 0.117248 hybrid +140_4-4 Q0 MARCO_11_758826070-8 37 0.113852 hybrid +140_4-4 Q0 MARCO_17_3599769542-6 38 0.113852 hybrid +140_4-4 Q0 MARCO_32_1002768793-4 39 0.110595 hybrid +140_4-4 Q0 MARCO_51_1907789940-4 40 0.110595 hybrid +140_4-4 Q0 MARCO_03_1304989738-2 41 0.098971 hybrid +140_4-4 Q0 KILT_39298866-1 42 0.087566 hybrid +140_4-4 Q0 KILT_4314987-7 43 0.087566 hybrid +140_4-4 Q0 MARCO_53_1088893000-2 44 0.087566 hybrid +140_4-4 Q0 MARCO_37_1107482875-3 45 0.087404 hybrid +140_4-4 Q0 MARCO_19_919092649-20 46 0.083614 hybrid +140_4-4 Q0 MARCO_01_248764900-15 47 0.076348 hybrid +140_4-4 Q0 MARCO_18_475809633-7 48 0.076347 hybrid +140_4-4 Q0 MARCO_32_1002737120-1 49 0.076347 hybrid +140_4-4 Q0 MARCO_11_723817460-4 50 0.073647 hybrid +140_4-4 Q0 MARCO_13_1205331301-3 51 0.073647 hybrid +140_4-4 Q0 MARCO_48_1341675494-6 52 0.069243 hybrid +140_4-4 Q0 MARCO_25_618539920-4 53 0.065337 hybrid +140_4-4 Q0 MARCO_11_723817460-3 54 0.063518 hybrid +140_4-4 Q0 MARCO_39_1269875058-12 55 0.059902 hybrid +140_4-4 Q0 MARCO_10_263239506-4 56 0.054524 hybrid +140_4-4 Q0 MARCO_11_904784803-2 57 0.054524 hybrid +140_4-4 Q0 MARCO_32_1002710668-3 58 0.054524 hybrid +140_4-4 Q0 MARCO_48_1630706195-6 59 0.054524 hybrid +140_4-4 Q0 KILT_1634911-37 60 0.050386 hybrid +140_4-4 Q0 KILT_24856961-1 61 0.049065 hybrid +140_4-4 Q0 MARCO_18_2483603488-19 62 0.048880 hybrid +140_4-4 Q0 MARCO_18_798247652-5 63 0.048880 hybrid +140_4-4 Q0 MARCO_18_798247652-9 64 0.048880 hybrid +140_4-4 Q0 MARCO_23_344543892-2 65 0.043896 hybrid +140_4-4 Q0 MARCO_05_1932475203-92 66 0.038078 hybrid +140_4-4 Q0 MARCO_16_3577155134-6 67 0.038078 hybrid +140_4-4 Q0 MARCO_50_573304538-1 68 0.038078 hybrid +140_4-4 Q0 KILT_50942624-4 69 0.037684 hybrid +140_4-4 Q0 KILT_51525715-1 70 0.025248 hybrid +140_4-4 Q0 MARCO_39_1269875058-21 71 0.017054 hybrid +140_4-4 Q0 KILT_17476877-7 72 0.013067 hybrid +140_4-4 Q0 KILT_50942624-1 73 0.013067 hybrid +140_4-4 Q0 MARCO_18_3335879760-6 74 0.013067 hybrid +140_4-4 Q0 MARCO_03_1426659796-2 75 0.004850 hybrid +140_4-4 Q0 MARCO_32_598442233-1 76 0.004850 hybrid +140_4-4 Q0 MARCO_03_1426659796-3 77 0.003483 hybrid +140_4-4 Q0 MARCO_04_3861741-2 78 0.003483 hybrid +140_4-4 Q0 MARCO_14_319631145-9 79 0.001130 hybrid +140_4-4 Q0 MARCO_18_3619683410-43 80 0.001130 hybrid +140_4-4 Q0 MARCO_03_1426659796-1 81 -0.005360 hybrid +140_4-4 Q0 MARCO_03_1426665131-1 82 -0.006971 hybrid +140_4-4 Q0 MARCO_41_579491805-1 83 -0.006971 hybrid +140_4-4 Q0 KILT_1325731-3 84 -0.010576 hybrid +140_4-4 Q0 KILT_13583474-4 85 -0.010576 hybrid +140_4-4 Q0 MARCO_24_1719707759-4 86 -0.010576 hybrid +140_4-4 Q0 MARCO_22_1565145566-2 87 -0.017692 hybrid +140_4-4 Q0 MARCO_23_1375999528-1 88 -0.019523 hybrid +140_4-4 Q0 KILT_32104663-6 89 -0.022038 hybrid +140_4-4 Q0 MARCO_11_1562523903-1 90 -0.022038 hybrid +140_4-4 Q0 MARCO_11_1566293313-7 91 -0.022038 hybrid +140_4-4 Q0 MARCO_17_3599769542-8 92 -0.022038 hybrid +140_4-4 Q0 MARCO_45_802527701-4 93 -0.022038 hybrid +140_4-4 Q0 MARCO_47_1442290483-1 94 -0.026257 hybrid +140_4-4 Q0 MARCO_48_1630480460-7 95 -0.033292 hybrid +140_4-4 Q0 MARCO_56_874320135-1 96 -0.034115 hybrid +140_4-4 Q0 MARCO_03_1426659796-4 97 -0.034242 hybrid +140_4-4 Q0 MARCO_06_1581800019-1 98 -0.034393 hybrid +140_4-4 Q0 MARCO_56_11932014-1 99 -0.038843 hybrid +140_4-4 Q0 MARCO_17_1272644831-1 100 -0.041138 hybrid +140_4-6 Q0 MARCO_30_1025211734-1 1 0.500000 hybrid +140_4-6 Q0 MARCO_03_1304989738-2 2 0.437923 hybrid +140_4-6 Q0 MARCO_50_23689317-1 3 0.429062 hybrid +140_4-6 Q0 MARCO_50_23689317-2 4 0.403076 hybrid +140_4-6 Q0 MARCO_11_1562523903-2 5 0.398521 hybrid +140_4-6 Q0 MARCO_48_1630706195-2 6 0.392288 hybrid +140_4-6 Q0 MARCO_30_1025297153-3 7 0.320418 hybrid +140_4-6 Q0 MARCO_03_1426659796-1 8 0.302030 hybrid +140_4-6 Q0 MARCO_32_1002710668-3 9 0.258663 hybrid +140_4-6 Q0 MARCO_48_1630706195-5 10 0.231046 hybrid +140_4-6 Q0 MARCO_25_228806808-1 11 0.205199 hybrid +140_4-6 Q0 MARCO_30_1025297153-7 12 0.201298 hybrid +140_4-6 Q0 MARCO_48_1630706195-3 13 0.192584 hybrid +140_4-6 Q0 MARCO_48_1630706195-1 14 0.180449 hybrid +140_4-6 Q0 MARCO_03_1426682152-1 15 0.165197 hybrid +140_4-6 Q0 MARCO_10_1110636104-1 16 0.163058 hybrid +140_4-6 Q0 MARCO_03_1426659796-2 17 0.151716 hybrid +140_4-6 Q0 MARCO_03_1426659796-3 18 0.148314 hybrid +140_4-6 Q0 KILT_39298866-1 19 0.143500 hybrid +140_4-6 Q0 MARCO_35_451972693-4 20 0.143187 hybrid +140_4-6 Q0 MARCO_11_904784803-2 21 0.141195 hybrid +140_4-6 Q0 MARCO_13_1204369497-1 22 0.140356 hybrid +140_4-6 Q0 MARCO_50_1732246764-40 23 0.121830 hybrid +140_4-6 Q0 MARCO_53_404698947-17 24 0.112581 hybrid +140_4-6 Q0 MARCO_19_2582932327-1 25 0.108958 hybrid +140_4-6 Q0 MARCO_55_112707963-5 26 0.107989 hybrid +140_4-6 Q0 KILT_23242173-2 27 0.102632 hybrid +140_4-6 Q0 MARCO_32_1002768793-4 28 0.102327 hybrid +140_4-6 Q0 MARCO_22_1565145566-1 29 0.088191 hybrid +140_4-6 Q0 MARCO_56_874320135-2 30 0.084448 hybrid +140_4-6 Q0 MARCO_32_597834653-1 31 0.077762 hybrid +140_4-6 Q0 MARCO_32_1002737120-1 32 0.075162 hybrid +140_4-6 Q0 MARCO_14_1599252652-1 33 0.072368 hybrid +140_4-6 Q0 KILT_844568-1 34 0.059643 hybrid +140_4-6 Q0 MARCO_47_1442290483-4 35 0.054829 hybrid +140_4-6 Q0 KILT_1842316-6 36 0.054691 hybrid +140_4-6 Q0 MARCO_16_4065616439-8 37 0.054691 hybrid +140_4-6 Q0 MARCO_16_3916317424-8 38 0.050117 hybrid +140_4-6 Q0 MARCO_03_1426659796-4 39 0.044354 hybrid +140_4-6 Q0 MARCO_19_947484619-2 40 0.041542 hybrid +140_4-6 Q0 MARCO_23_1375999528-1 41 0.040647 hybrid +140_4-6 Q0 MARCO_51_1324557930-3 42 0.022813 hybrid +140_4-6 Q0 MARCO_23_1375999528-3 43 0.022389 hybrid +140_4-6 Q0 MARCO_22_1835484253-1 44 0.017954 hybrid +140_4-6 Q0 MARCO_35_451972693-12 45 0.016580 hybrid +140_4-6 Q0 MARCO_40_995543173-1 46 0.016478 hybrid +140_4-6 Q0 MARCO_32_598442233-1 47 0.014828 hybrid +140_4-6 Q0 MARCO_51_1907789940-3 48 0.009774 hybrid +140_4-6 Q0 MARCO_11_1562523903-4 49 0.001540 hybrid +140_4-6 Q0 MARCO_15_143403989-2 50 -0.018857 hybrid +140_4-6 Q0 MARCO_17_1272644831-2 51 -0.019060 hybrid +140_4-6 Q0 KILT_60823736-1 52 -0.019558 hybrid +140_4-6 Q0 MARCO_11_1562523903-1 53 -0.026557 hybrid +140_4-6 Q0 MARCO_30_1025211734-3 54 -0.027101 hybrid +140_4-6 Q0 MARCO_03_1426665131-1 55 -0.027811 hybrid +140_4-6 Q0 MARCO_20_99832249-2 56 -0.028475 hybrid +140_4-6 Q0 MARCO_57_1408732862-3 57 -0.031324 hybrid +140_4-6 Q0 KILT_12890526-9 58 -0.033501 hybrid +140_4-6 Q0 MARCO_19_654638400-9 59 -0.033501 hybrid +140_4-6 Q0 MARCO_39_1269875058-12 60 -0.035087 hybrid +140_4-6 Q0 MARCO_23_204150005-1 61 -0.037134 hybrid +140_4-6 Q0 KILT_36008133-2 62 -0.046226 hybrid +140_4-6 Q0 MARCO_53_1088893000-2 63 -0.051712 hybrid +140_4-6 Q0 MARCO_55_105494193-2 64 -0.053649 hybrid +140_4-6 Q0 MARCO_38_594150692-11 65 -0.055622 hybrid +140_4-6 Q0 MARCO_05_1932475203-92 66 -0.057411 hybrid +140_4-6 Q0 MARCO_23_344543892-2 67 -0.057512 hybrid +140_4-6 Q0 MARCO_53_1091382755-1 68 -0.057937 hybrid +140_4-6 Q0 MARCO_10_1110636104-12 69 -0.059200 hybrid +140_4-6 Q0 MARCO_53_1116743670-15 70 -0.062243 hybrid +140_4-6 Q0 MARCO_48_1630706195-4 71 -0.062427 hybrid +140_4-6 Q0 MARCO_00_243350771-1 72 -0.064419 hybrid +140_4-6 Q0 MARCO_35_451972693-5 73 -0.065885 hybrid +140_4-6 Q0 KILT_38945-11 74 -0.071040 hybrid +140_4-6 Q0 MARCO_03_1426665131-2 75 -0.080519 hybrid +140_4-6 Q0 MARCO_55_112707963-2 76 -0.084872 hybrid +140_4-6 Q0 MARCO_11_758826070-8 77 -0.086495 hybrid +140_4-6 Q0 MARCO_14_1599252652-2 78 -0.089445 hybrid +140_4-6 Q0 MARCO_17_1272644831-8 79 -0.098003 hybrid +140_4-6 Q0 MARCO_51_1907789940-4 80 -0.098897 hybrid +140_4-6 Q0 MARCO_50_573304538-1 81 -0.101654 hybrid +140_4-6 Q0 MARCO_25_228806808-2 82 -0.105011 hybrid +140_4-6 Q0 MARCO_10_801962827-6 83 -0.105592 hybrid +140_4-6 Q0 MARCO_48_1343200687-5 84 -0.107325 hybrid +140_4-6 Q0 MARCO_32_598442233-2 85 -0.113706 hybrid +140_4-6 Q0 MARCO_25_618539920-4 86 -0.114112 hybrid +140_4-6 Q0 MARCO_22_1565145566-5 87 -0.115440 hybrid +140_4-6 Q0 MARCO_50_2079909466-43 88 -0.115551 hybrid +140_4-6 Q0 MARCO_46_847654838-4 89 -0.115993 hybrid +140_4-6 Q0 MARCO_30_117157083-3 90 -0.120659 hybrid +140_4-6 Q0 MARCO_29_710618272-4 91 -0.120890 hybrid +140_4-6 Q0 MARCO_53_1108287384-7 92 -0.121092 hybrid +140_4-6 Q0 MARCO_01_24181926-148 93 -0.121341 hybrid +140_4-6 Q0 MARCO_19_1735394148-2 94 -0.122549 hybrid +140_4-6 Q0 MARCO_40_1001840372-1 95 -0.133394 hybrid +140_4-6 Q0 MARCO_40_995543173-2 96 -0.133394 hybrid +140_4-6 Q0 MARCO_56_11932014-2 97 -0.134555 hybrid +140_4-6 Q0 MARCO_47_547331582-2 98 -0.137949 hybrid +140_4-6 Q0 MARCO_32_597828000-3 99 -0.141822 hybrid +140_4-6 Q0 MARCO_10_1110636104-4 100 -0.142652 hybrid +140_4-8 Q0 MARCO_51_38815629-2 1 0.500000 hybrid +140_4-8 Q0 MARCO_48_849543852-1 2 0.485452 hybrid +140_4-8 Q0 MARCO_17_2985927323-3 3 0.380618 hybrid +140_4-8 Q0 MARCO_20_1605557843-4 4 0.378556 hybrid +140_4-8 Q0 MARCO_37_1107517688-2 5 0.359459 hybrid +140_4-8 Q0 MARCO_30_1025297153-2 6 0.353604 hybrid +140_4-8 Q0 MARCO_20_1605557843-3 7 0.300501 hybrid +140_4-8 Q0 MARCO_51_38815629-1 8 0.251853 hybrid +140_4-8 Q0 MARCO_13_1204561650-4 9 0.236753 hybrid +140_4-8 Q0 MARCO_31_87355756-2 10 0.231601 hybrid +140_4-8 Q0 MARCO_31_87355756-4 11 0.194861 hybrid +140_4-8 Q0 MARCO_31_87359963-4 12 0.194861 hybrid +140_4-8 Q0 MARCO_19_654638400-10 13 0.183067 hybrid +140_4-8 Q0 MARCO_51_38815629-6 14 0.175289 hybrid +140_4-8 Q0 KILT_4030485-4 15 0.174870 hybrid +140_4-8 Q0 MARCO_51_38815629-3 16 0.161458 hybrid +140_4-8 Q0 MARCO_32_1002744496-1 17 0.158495 hybrid +140_4-8 Q0 MARCO_11_1562523903-2 18 0.137730 hybrid +140_4-8 Q0 MARCO_48_1525195976-1 19 0.137127 hybrid +140_4-8 Q0 MARCO_15_1458788650-1 20 0.136106 hybrid +140_4-8 Q0 MARCO_11_904776446-3 21 0.130148 hybrid +140_4-8 Q0 MARCO_12_7420345-4 22 0.124419 hybrid +140_4-8 Q0 MARCO_48_849543852-12 23 0.123500 hybrid +140_4-8 Q0 KILT_4030485-3 24 0.121533 hybrid +140_4-8 Q0 MARCO_30_407817046-6 25 0.107854 hybrid +140_4-8 Q0 KILT_4030485-5 26 0.103375 hybrid +140_4-8 Q0 MARCO_17_2985927323-4 27 0.103096 hybrid +140_4-8 Q0 MARCO_40_1002073335-1 28 0.102582 hybrid +140_4-8 Q0 MARCO_13_1204561650-1 29 0.098021 hybrid +140_4-8 Q0 MARCO_37_1107517688-3 30 0.095914 hybrid +140_4-8 Q0 MARCO_20_1605557843-6 31 0.094506 hybrid +140_4-8 Q0 MARCO_20_1605557843-1 32 0.093262 hybrid +140_4-8 Q0 MARCO_37_1107517688-4 33 0.085789 hybrid +140_4-8 Q0 MARCO_48_1630480460-8 34 0.080662 hybrid +140_4-8 Q0 MARCO_17_2985927323-7 35 0.079514 hybrid +140_4-8 Q0 MARCO_17_2985927323-9 36 0.079514 hybrid +140_4-8 Q0 MARCO_11_723817460-3 37 0.077389 hybrid +140_4-8 Q0 MARCO_48_849543852-11 38 0.075003 hybrid +140_4-8 Q0 MARCO_03_1304989738-2 39 0.071089 hybrid +140_4-8 Q0 MARCO_57_1937405093-17 40 0.069160 hybrid +140_4-8 Q0 MARCO_39_1269636367-9 41 0.056497 hybrid +140_4-8 Q0 MARCO_03_1426671976-3 42 0.054638 hybrid +140_4-8 Q0 KILT_4030485-1 43 0.053426 hybrid +140_4-8 Q0 MARCO_48_849543852-15 44 0.049822 hybrid +140_4-8 Q0 MARCO_07_704518188-161 45 0.047665 hybrid +140_4-8 Q0 MARCO_53_404698947-17 46 0.046358 hybrid +140_4-8 Q0 MARCO_24_1375511290-3 47 0.040807 hybrid +140_4-8 Q0 MARCO_17_2985927323-6 48 0.040509 hybrid +140_4-8 Q0 MARCO_48_849543852-2 49 0.031240 hybrid +140_4-8 Q0 MARCO_11_1562523903-3 50 0.024502 hybrid +140_4-8 Q0 MARCO_50_1774816435-34 51 0.024394 hybrid +140_4-8 Q0 MARCO_48_849543852-10 52 0.024128 hybrid +140_4-8 Q0 KILT_12890526-11 53 0.023151 hybrid +140_4-8 Q0 MARCO_29_710618272-1 54 0.019262 hybrid +140_4-8 Q0 MARCO_13_1204571746-1 55 0.014611 hybrid +140_4-8 Q0 MARCO_13_1205680173-1 56 0.012238 hybrid +140_4-8 Q0 MARCO_18_3483116847-2 57 0.009853 hybrid +140_4-8 Q0 MARCO_32_1087103060-1 58 0.007499 hybrid +140_4-8 Q0 MARCO_29_1340014164-4 59 -0.004473 hybrid +140_4-8 Q0 MARCO_32_1087103060-2 60 -0.007988 hybrid +140_4-8 Q0 MARCO_11_1562495073-3 61 -0.008216 hybrid +140_4-8 Q0 MARCO_48_849543852-6 62 -0.011077 hybrid +140_4-8 Q0 MARCO_40_1030939421-1 63 -0.012454 hybrid +140_4-8 Q0 MARCO_57_1935960136-10 64 -0.016210 hybrid +140_4-8 Q0 MARCO_40_1033557025-1 65 -0.016216 hybrid +140_4-8 Q0 KILT_39511856-4 66 -0.018367 hybrid +140_4-8 Q0 MARCO_51_38815629-7 67 -0.022326 hybrid +140_4-8 Q0 KILT_45228085-2 68 -0.031538 hybrid +140_4-8 Q0 MARCO_24_1719707759-1 69 -0.033168 hybrid +140_4-8 Q0 MARCO_54_633088310-2 70 -0.037546 hybrid +140_4-8 Q0 MARCO_49_105945882-9 71 -0.038732 hybrid +140_4-8 Q0 MARCO_36_1004130531-3 72 -0.039773 hybrid +140_4-8 Q0 MARCO_51_38815629-4 73 -0.040331 hybrid +140_4-8 Q0 MARCO_51_38815629-5 74 -0.042266 hybrid +140_4-8 Q0 MARCO_00_358922652-6 75 -0.043865 hybrid +140_4-8 Q0 MARCO_17_3599769542-27 76 -0.045711 hybrid +140_4-8 Q0 MARCO_32_1002744496-3 77 -0.046530 hybrid +140_4-8 Q0 MARCO_36_979659662-4 78 -0.046974 hybrid +140_4-8 Q0 MARCO_58_237288357-7 79 -0.052563 hybrid +140_4-8 Q0 MARCO_57_1935960136-8 80 -0.053096 hybrid +140_4-8 Q0 MARCO_37_1107475220-2 81 -0.054758 hybrid +140_4-8 Q0 MARCO_45_802527701-4 82 -0.056871 hybrid +140_4-8 Q0 MARCO_57_1935960136-13 83 -0.057835 hybrid +140_4-8 Q0 MARCO_41_1792252484-11 84 -0.060107 hybrid +140_4-8 Q0 MARCO_41_1792252484-9 85 -0.060107 hybrid +140_4-8 Q0 MARCO_11_904776446-1 86 -0.061058 hybrid +140_4-8 Q0 MARCO_29_1413265048-4 87 -0.064732 hybrid +140_4-8 Q0 MARCO_57_1935960136-16 88 -0.065506 hybrid +140_4-8 Q0 MARCO_45_802527701-3 89 -0.066070 hybrid +140_4-8 Q0 MARCO_11_904796505-5 90 -0.069236 hybrid +140_4-8 Q0 MARCO_18_798247652-1 91 -0.074318 hybrid +140_4-8 Q0 MARCO_11_723809604-5 92 -0.076183 hybrid +140_4-8 Q0 MARCO_03_1426671976-1 93 -0.076196 hybrid +140_4-8 Q0 MARCO_33_649058363-1 94 -0.076608 hybrid +140_4-8 Q0 MARCO_16_3577155134-6 95 -0.076627 hybrid +140_4-8 Q0 MARCO_48_849543852-8 96 -0.079133 hybrid +140_4-8 Q0 KILT_13439573-5 97 -0.080244 hybrid +140_4-8 Q0 MARCO_32_1002715402-1 98 -0.087971 hybrid +140_4-8 Q0 MARCO_11_904796505-1 99 -0.088491 hybrid +140_4-8 Q0 MARCO_32_1002710668-3 100 -0.088491 hybrid +141_1-1 Q0 MARCO_22_1220119571-1 1 0.500000 hybrid +141_1-1 Q0 MARCO_53_326252611-1 2 0.478526 hybrid +141_1-1 Q0 MARCO_13_1445183068-15 3 0.327359 hybrid +141_1-1 Q0 MARCO_25_858687283-5 4 0.304625 hybrid +141_1-1 Q0 MARCO_55_301987044-1 5 0.298245 hybrid +141_1-1 Q0 MARCO_25_282525914-6 6 0.287508 hybrid +141_1-1 Q0 MARCO_31_1407956315-6 7 0.251043 hybrid +141_1-1 Q0 MARCO_31_804926836-19 8 0.245364 hybrid +141_1-1 Q0 MARCO_20_881446882-1 9 0.237766 hybrid +141_1-1 Q0 MARCO_24_1121662097-1 10 0.214743 hybrid +141_1-1 Q0 MARCO_24_812846237-1 11 0.212203 hybrid +141_1-1 Q0 MARCO_11_1038201369-10 12 0.207021 hybrid +141_1-1 Q0 MARCO_03_72781943-1 13 0.203035 hybrid +141_1-1 Q0 MARCO_37_903434478-8 14 0.167913 hybrid +141_1-1 Q0 MARCO_38_745604047-11 15 0.161512 hybrid +141_1-1 Q0 MARCO_57_296791124-10 16 0.158290 hybrid +141_1-1 Q0 MARCO_33_1395283299-5 17 0.148173 hybrid +141_1-1 Q0 MARCO_38_451213395-1 18 0.134379 hybrid +141_1-1 Q0 MARCO_38_740873062-1 19 0.128887 hybrid +141_1-1 Q0 MARCO_54_1919094826-12 20 0.123911 hybrid +141_1-1 Q0 MARCO_04_485880276-5 21 0.120566 hybrid +141_1-1 Q0 MARCO_20_1244566170-1 22 0.114371 hybrid +141_1-1 Q0 MARCO_37_236223301-4 23 0.106773 hybrid +141_1-1 Q0 MARCO_30_226613034-9 24 0.104770 hybrid +141_1-1 Q0 MARCO_23_944211364-1 25 0.096386 hybrid +141_1-1 Q0 MARCO_54_332770683-3 26 0.088561 hybrid +141_1-1 Q0 MARCO_19_2571204554-1 27 0.086476 hybrid +141_1-1 Q0 MARCO_30_450226658-9 28 0.080962 hybrid +141_1-1 Q0 MARCO_51_1489726505-1 29 0.075656 hybrid +141_1-1 Q0 MARCO_04_583194743-6 30 0.075243 hybrid +141_1-1 Q0 MARCO_24_1652078144-8 31 0.070205 hybrid +141_1-1 Q0 MARCO_28_397700470-33 32 0.069523 hybrid +141_1-1 Q0 MARCO_25_858897902-10 33 0.064134 hybrid +141_1-1 Q0 MARCO_45_841300048-1 34 0.056762 hybrid +141_1-1 Q0 MARCO_30_249436887-1 35 0.042969 hybrid +141_1-1 Q0 MARCO_30_377846310-1 36 0.041813 hybrid +141_1-1 Q0 MARCO_01_1579809761-40 37 0.040388 hybrid +141_1-1 Q0 MARCO_55_336690112-1 38 0.036692 hybrid +141_1-1 Q0 MARCO_33_206654973-2 39 0.023064 hybrid +141_1-1 Q0 MARCO_14_375099531-15 40 0.014805 hybrid +141_1-1 Q0 MARCO_56_521583012-2 41 0.001301 hybrid +141_1-1 Q0 MARCO_00_394671263-4 42 -0.002209 hybrid +141_1-1 Q0 MARCO_54_1898621088-14 43 -0.003779 hybrid +141_1-1 Q0 MARCO_50_2761743467-7 44 -0.004687 hybrid +141_1-1 Q0 MARCO_24_1152285947-17 45 -0.012472 hybrid +141_1-1 Q0 MARCO_11_1037988336-9 46 -0.015011 hybrid +141_1-1 Q0 MARCO_47_991261137-5 47 -0.017241 hybrid +141_1-1 Q0 MARCO_53_326074698-2 48 -0.023044 hybrid +141_1-1 Q0 MARCO_20_1244277815-9 49 -0.037952 hybrid +141_1-1 Q0 MARCO_39_540651245-9 50 -0.041586 hybrid +141_1-1 Q0 MARCO_30_249140384-1 51 -0.045344 hybrid +141_1-1 Q0 MARCO_39_913307486-2 52 -0.046583 hybrid +141_1-1 Q0 MARCO_47_1302012847-6 53 -0.048710 hybrid +141_1-1 Q0 MARCO_30_688005143-40 54 -0.053128 hybrid +141_1-1 Q0 MARCO_54_1896564573-3 55 -0.054718 hybrid +141_1-1 Q0 MARCO_30_51713549-10 56 -0.057196 hybrid +141_1-1 Q0 MARCO_29_745901503-2 57 -0.057671 hybrid +141_1-1 Q0 MARCO_51_562175705-1 58 -0.060045 hybrid +141_1-1 Q0 MARCO_29_525219167-12 59 -0.061656 hybrid +141_1-1 Q0 MARCO_37_272750328-3 60 -0.063927 hybrid +141_1-1 Q0 MARCO_12_1932218907-5 61 -0.065269 hybrid +141_1-1 Q0 MARCO_08_50602299-7 62 -0.066013 hybrid +141_1-1 Q0 MARCO_55_336179375-1 63 -0.066033 hybrid +141_1-1 Q0 MARCO_36_873009821-6 64 -0.067355 hybrid +141_1-1 Q0 MARCO_36_882842844-7 65 -0.067355 hybrid +141_1-1 Q0 MARCO_36_883485074-5 66 -0.067355 hybrid +141_1-1 Q0 MARCO_36_886811173-7 67 -0.067356 hybrid +141_1-1 Q0 MARCO_36_886840099-9 68 -0.067356 hybrid +141_1-1 Q0 MARCO_36_886863931-7 69 -0.067356 hybrid +141_1-1 Q0 MARCO_36_887369985-7 70 -0.067356 hybrid +141_1-1 Q0 MARCO_36_887394736-7 71 -0.067356 hybrid +141_1-1 Q0 MARCO_36_893468331-10 72 -0.067357 hybrid +141_1-1 Q0 MARCO_36_896224653-8 73 -0.067357 hybrid +141_1-1 Q0 MARCO_36_899141693-8 74 -0.067357 hybrid +141_1-1 Q0 MARCO_36_904472583-3 75 -0.067357 hybrid +141_1-1 Q0 MARCO_36_905681713-7 76 -0.067358 hybrid +141_1-1 Q0 MARCO_36_909562414-5 77 -0.067358 hybrid +141_1-1 Q0 MARCO_36_910828153-3 78 -0.067358 hybrid +141_1-1 Q0 MARCO_36_912955959-11 79 -0.067358 hybrid +141_1-1 Q0 MARCO_36_912972179-11 80 -0.067358 hybrid +141_1-1 Q0 MARCO_36_913245353-4 81 -0.067358 hybrid +141_1-1 Q0 MARCO_36_916946509-9 82 -0.067359 hybrid +141_1-1 Q0 MARCO_36_917277547-7 83 -0.067359 hybrid +141_1-1 Q0 MARCO_36_918684606-5 84 -0.067359 hybrid +141_1-1 Q0 MARCO_36_918938815-5 85 -0.067359 hybrid +141_1-1 Q0 MARCO_36_919091060-5 86 -0.067359 hybrid +141_1-1 Q0 MARCO_36_921073667-8 87 -0.067360 hybrid +141_1-1 Q0 MARCO_54_1919094826-11 88 -0.073343 hybrid +141_1-1 Q0 MARCO_33_1549638353-1 89 -0.074355 hybrid +141_1-1 Q0 MARCO_36_1346399325-4 90 -0.074520 hybrid +141_1-1 Q0 MARCO_36_999524486-11 91 -0.075036 hybrid +141_1-1 Q0 MARCO_31_808148806-9 92 -0.078691 hybrid +141_1-1 Q0 MARCO_25_282640965-5 93 -0.079785 hybrid +141_1-1 Q0 MARCO_47_605232067-10 94 -0.079950 hybrid +141_1-1 Q0 MARCO_02_1329785546-2 95 -0.080260 hybrid +141_1-1 Q0 MARCO_37_282828455-2 96 -0.080942 hybrid +141_1-1 Q0 MARCO_31_1848021068-3 97 -0.083915 hybrid +141_1-1 Q0 MARCO_22_1327436522-4 98 -0.085939 hybrid +141_1-1 Q0 MARCO_04_580139221-3 99 -0.093702 hybrid +141_1-1 Q0 MARCO_34_722518002-11 100 -0.096221 hybrid +141_1-3 Q0 MARCO_21_578989055-7 1 0.500000 hybrid +141_1-3 Q0 MARCO_51_671708711-3 2 0.280319 hybrid +141_1-3 Q0 MARCO_51_1521484576-23 3 0.219539 hybrid +141_1-3 Q0 MARCO_41_757773188-7 4 0.165720 hybrid +141_1-3 Q0 MARCO_14_679973317-1 5 0.121925 hybrid +141_1-3 Q0 MARCO_50_1330150755-20 6 0.121763 hybrid +141_1-3 Q0 MARCO_10_480330655-1 7 0.121601 hybrid +141_1-3 Q0 MARCO_29_472642170-1 8 0.112286 hybrid +141_1-3 Q0 MARCO_39_1412081745-8 9 0.090226 hybrid +141_1-3 Q0 MARCO_52_946955713-8 10 0.066158 hybrid +141_1-3 Q0 MARCO_51_712754737-11 11 0.057432 hybrid +141_1-3 Q0 MARCO_51_737288953-1 12 0.049395 hybrid +141_1-3 Q0 MARCO_40_595672973-1 13 0.042069 hybrid +141_1-3 Q0 MARCO_47_1182657395-1 14 0.029487 hybrid +141_1-3 Q0 MARCO_53_1366781412-32 15 0.025083 hybrid +141_1-3 Q0 MARCO_31_1253700821-8 16 0.015707 hybrid +141_1-3 Q0 MARCO_49_606947502-12 17 0.007306 hybrid +141_1-3 Q0 MARCO_13_67602370-10 18 -0.006981 hybrid +141_1-3 Q0 MARCO_47_1183368395-1 19 -0.010512 hybrid +141_1-3 Q0 MARCO_48_2106485962-14 20 -0.020395 hybrid +141_1-3 Q0 MARCO_36_1374834335-7 21 -0.023967 hybrid +141_1-3 Q0 MARCO_29_473215419-4 22 -0.025834 hybrid +141_1-3 Q0 MARCO_47_348267440-4 23 -0.029406 hybrid +141_1-3 Q0 MARCO_40_9202009-1 24 -0.030684 hybrid +141_1-3 Q0 MARCO_55_133300922-8 25 -0.031699 hybrid +141_1-3 Q0 MARCO_55_1284674763-3 26 -0.032835 hybrid +141_1-3 Q0 MARCO_50_2024219645-9 27 -0.040730 hybrid +141_1-3 Q0 MARCO_24_1959886602-1 28 -0.047589 hybrid +141_1-3 Q0 MARCO_00_1167848177-20 29 -0.050045 hybrid +141_1-3 Q0 MARCO_21_1145129455-1 30 -0.053880 hybrid +141_1-3 Q0 MARCO_44_127192320-4 31 -0.054712 hybrid +141_1-3 Q0 MARCO_51_95487952-8 32 -0.054976 hybrid +141_1-3 Q0 MARCO_14_1452994220-209 33 -0.063053 hybrid +141_1-3 Q0 MARCO_51_123396035-24 34 -0.064250 hybrid +141_1-3 Q0 MARCO_50_2399125391-4 35 -0.065671 hybrid +141_1-3 Q0 MARCO_40_1642554375-18 36 -0.067497 hybrid +141_1-3 Q0 MARCO_25_898561752-10 37 -0.069628 hybrid +141_1-3 Q0 MARCO_31_1407927748-6 38 -0.080749 hybrid +141_1-3 Q0 MARCO_15_104262497-1 39 -0.082028 hybrid +141_1-3 Q0 MARCO_11_735079790-3 40 -0.086310 hybrid +141_1-3 Q0 MARCO_55_1284395314-3 41 -0.087690 hybrid +141_1-3 Q0 MARCO_03_711815224-26 42 -0.091586 hybrid +141_1-3 Q0 MARCO_20_393707349-6 43 -0.092621 hybrid +141_1-3 Q0 MARCO_31_1407927748-5 44 -0.101104 hybrid +141_1-3 Q0 MARCO_12_793617409-6 45 -0.105386 hybrid +141_1-3 Q0 MARCO_37_821210878-1 46 -0.106421 hybrid +141_1-3 Q0 MARCO_08_941482751-20 47 -0.108268 hybrid +141_1-3 Q0 MARCO_29_1459319244-2 48 -0.110155 hybrid +141_1-3 Q0 MARCO_47_1183368395-2 49 -0.112631 hybrid +141_1-3 Q0 MARCO_53_119208326-1 50 -0.116182 hybrid +141_1-3 Q0 MARCO_42_381467294-3 51 -0.124239 hybrid +141_1-3 Q0 MARCO_22_1491474537-13 52 -0.128866 hybrid +141_1-3 Q0 MARCO_26_1552491100-2 53 -0.129536 hybrid +141_1-3 Q0 MARCO_49_1238675989-9 54 -0.132559 hybrid +141_1-3 Q0 MARCO_02_1196300620-3 55 -0.132925 hybrid +141_1-3 Q0 MARCO_23_1615608480-9 56 -0.140555 hybrid +141_1-3 Q0 MARCO_21_187807199-2 57 -0.140880 hybrid +141_1-3 Q0 MARCO_21_1028285318-8 58 -0.141529 hybrid +141_1-3 Q0 MARCO_07_74717058-7 59 -0.141692 hybrid +141_1-3 Q0 MARCO_03_843440406-40 60 -0.142585 hybrid +141_1-3 Q0 MARCO_40_703637018-4 61 -0.142788 hybrid +141_1-3 Q0 MARCO_50_377193176-1 62 -0.143112 hybrid +141_1-3 Q0 MARCO_59_822252405-1 63 -0.144310 hybrid +141_1-3 Q0 MARCO_24_1662372809-1 64 -0.146542 hybrid +141_1-3 Q0 MARCO_48_1354761710-4 65 -0.147435 hybrid +141_1-3 Q0 MARCO_36_1373896642-13 66 -0.148064 hybrid +141_1-3 Q0 MARCO_47_1576629451-4 67 -0.149363 hybrid +141_1-3 Q0 MARCO_12_1363229808-4 68 -0.152711 hybrid +141_1-3 Q0 MARCO_45_591075926-18 69 -0.157643 hybrid +141_1-3 Q0 MARCO_52_1357476065-1 70 -0.158231 hybrid +141_1-3 Q0 MARCO_00_1195837614-5 71 -0.161072 hybrid +141_1-3 Q0 MARCO_50_1291615467-10 72 -0.163893 hybrid +141_1-3 Q0 MARCO_44_1167684774-1 73 -0.165415 hybrid +141_1-3 Q0 MARCO_14_1071374555-4 74 -0.169799 hybrid +141_1-3 Q0 MARCO_52_1469720732-1 75 -0.171057 hybrid +141_1-3 Q0 MARCO_03_803811787-21 76 -0.171118 hybrid +141_1-3 Q0 MARCO_05_1582593324-5 77 -0.171199 hybrid +141_1-3 Q0 MARCO_26_124583378-11 78 -0.171544 hybrid +141_1-3 Q0 MARCO_02_303951356-4 79 -0.172031 hybrid +141_1-3 Q0 MARCO_49_1682790691-16 80 -0.172477 hybrid +141_1-3 Q0 MARCO_51_1528368351-3 81 -0.172863 hybrid +141_1-3 Q0 MARCO_30_78412760-60 82 -0.174304 hybrid +141_1-3 Q0 MARCO_20_393707349-3 83 -0.175968 hybrid +141_1-3 Q0 MARCO_59_116338261-3 84 -0.176881 hybrid +141_1-3 Q0 MARCO_08_50706370-9 85 -0.180940 hybrid +141_1-3 Q0 MARCO_03_435521035-66 86 -0.182746 hybrid +141_1-3 Q0 MARCO_13_233508622-2 87 -0.183984 hybrid +141_1-3 Q0 MARCO_39_913307486-5 88 -0.184187 hybrid +141_1-3 Q0 MARCO_31_1253700821-7 89 -0.185729 hybrid +141_1-3 Q0 MARCO_20_363710101-4 90 -0.186277 hybrid +141_1-3 Q0 MARCO_04_1273236287-3 91 -0.188347 hybrid +141_1-3 Q0 MARCO_23_452833573-1 92 -0.189524 hybrid +141_1-3 Q0 MARCO_44_1167684774-2 93 -0.190032 hybrid +141_1-3 Q0 MARCO_08_191088189-6 94 -0.192122 hybrid +141_1-3 Q0 MARCO_50_1663268054-50 95 -0.193076 hybrid +141_1-3 Q0 MARCO_01_1128128837-6 96 -0.193096 hybrid +141_1-3 Q0 MARCO_01_1128177341-6 97 -0.193096 hybrid +141_1-3 Q0 MARCO_52_428554483-20 98 -0.195166 hybrid +141_1-3 Q0 MARCO_14_680435675-7 99 -0.195612 hybrid +141_1-3 Q0 MARCO_27_1313438387-16 100 -0.196160 hybrid +141_1-5 Q0 MARCO_55_277967890-3 1 0.500000 hybrid +141_1-5 Q0 MARCO_25_1372658733-7 2 0.499699 hybrid +141_1-5 Q0 MARCO_23_1427693654-6 3 0.355340 hybrid +141_1-5 Q0 MARCO_44_1418466281-2 4 0.273142 hybrid +141_1-5 Q0 MARCO_44_1953561730-13 5 0.260186 hybrid +141_1-5 Q0 MARCO_24_909443094-2 6 0.222609 hybrid +141_1-5 Q0 MARCO_20_469245448-15 7 0.212078 hybrid +141_1-5 Q0 MARCO_04_360919796-4 8 0.192272 hybrid +141_1-5 Q0 MARCO_03_158227160-12 9 0.165846 hybrid +141_1-5 Q0 MARCO_44_1996211859-13 10 0.130606 hybrid +141_1-5 Q0 MARCO_50_2536411829-2 11 0.118464 hybrid +141_1-5 Q0 MARCO_25_1380426681-20 12 0.115668 hybrid +141_1-5 Q0 MARCO_27_511244137-16 13 0.105278 hybrid +141_1-5 Q0 MARCO_58_502103458-18 14 0.099012 hybrid +141_1-5 Q0 MARCO_25_1372658733-35 15 0.090039 hybrid +141_1-5 Q0 MARCO_55_166606063-2 16 0.082056 hybrid +141_1-5 Q0 MARCO_56_15315482-1 17 0.075896 hybrid +141_1-5 Q0 MARCO_57_1924137489-10 18 0.067064 hybrid +141_1-5 Q0 MARCO_44_1993230393-18 19 0.054940 hybrid +141_1-5 Q0 MARCO_44_2003155138-2 20 0.042143 hybrid +141_1-5 Q0 MARCO_02_899021708-4 21 0.029930 hybrid +141_1-5 Q0 MARCO_06_999190889-1 22 0.028426 hybrid +141_1-5 Q0 MARCO_45_1604432792-25 23 0.005664 hybrid +141_1-5 Q0 MARCO_28_218609092-12 24 -0.004443 hybrid +141_1-5 Q0 MARCO_02_1074687361-17 25 -0.006691 hybrid +141_1-5 Q0 MARCO_59_486269619-53 26 -0.006744 hybrid +141_1-5 Q0 MARCO_21_1005854745-2 27 -0.008585 hybrid +141_1-5 Q0 MARCO_40_163148502-10 28 -0.011700 hybrid +141_1-5 Q0 MARCO_01_691823412-3 29 -0.013257 hybrid +141_1-5 Q0 MARCO_31_775072095-53 30 -0.014885 hybrid +141_1-5 Q0 MARCO_18_3594606631-6 31 -0.028036 hybrid +141_1-5 Q0 MARCO_33_618130160-15 32 -0.028638 hybrid +141_1-5 Q0 MARCO_44_2007973012-13 33 -0.033984 hybrid +141_1-5 Q0 MARCO_25_1372751419-41 34 -0.041913 hybrid +141_1-5 Q0 MARCO_02_437616497-4 35 -0.043276 hybrid +141_1-5 Q0 MARCO_46_183281770-3 36 -0.069348 hybrid +141_1-5 Q0 MARCO_25_1372658733-19 37 -0.069896 hybrid +141_1-5 Q0 MARCO_06_536807595-51 38 -0.075596 hybrid +141_1-5 Q0 MARCO_20_1005742453-7 39 -0.079489 hybrid +141_1-5 Q0 MARCO_03_1448277218-1 40 -0.083401 hybrid +141_1-5 Q0 MARCO_41_1564910691-8 41 -0.086410 hybrid +141_1-5 Q0 MARCO_21_578980168-5 42 -0.088977 hybrid +141_1-5 Q0 MARCO_45_1528792811-1 43 -0.092464 hybrid +141_1-5 Q0 MARCO_06_647187580-3 44 -0.094906 hybrid +141_1-5 Q0 MARCO_07_1207811088-1 45 -0.101579 hybrid +141_1-5 Q0 MARCO_25_1373047096-23 46 -0.108340 hybrid +141_1-5 Q0 MARCO_06_139874808-4 47 -0.110163 hybrid +141_1-5 Q0 MARCO_30_9681501-26 48 -0.111668 hybrid +141_1-5 Q0 MARCO_51_1470946506-4 49 -0.114818 hybrid +141_1-5 Q0 MARCO_25_1373047096-10 50 -0.128022 hybrid +141_1-5 Q0 MARCO_07_60567435-7 51 -0.131049 hybrid +141_1-5 Q0 MARCO_01_814238600-72 52 -0.131668 hybrid +141_1-5 Q0 MARCO_41_620581729-16 53 -0.135385 hybrid +141_1-5 Q0 MARCO_02_1618798166-5 54 -0.137651 hybrid +141_1-5 Q0 MARCO_23_1370142404-2 55 -0.138430 hybrid +141_1-5 Q0 MARCO_46_422059303-15 56 -0.139067 hybrid +141_1-5 Q0 MARCO_58_578638097-17 57 -0.141262 hybrid +141_1-5 Q0 MARCO_50_1404787987-24 58 -0.142961 hybrid +141_1-5 Q0 MARCO_27_510434820-6 59 -0.144111 hybrid +141_1-5 Q0 MARCO_23_1822453372-2 60 -0.144589 hybrid +141_1-5 Q0 MARCO_55_233714356-4 61 -0.146306 hybrid +141_1-5 Q0 MARCO_00_794152413-3 62 -0.146465 hybrid +141_1-5 Q0 MARCO_08_1728549946-6 63 -0.146642 hybrid +141_1-5 Q0 MARCO_02_1831965706-6 64 -0.148607 hybrid +141_1-5 Q0 MARCO_25_1373047096-64 65 -0.150005 hybrid +141_1-5 Q0 MARCO_21_341284306-11 66 -0.151297 hybrid +141_1-5 Q0 MARCO_25_1373047096-27 67 -0.151386 hybrid +141_1-5 Q0 MARCO_06_757639382-2 68 -0.152820 hybrid +141_1-5 Q0 MARCO_00_255541631-7 69 -0.155899 hybrid +141_1-5 Q0 MARCO_58_595891807-21 70 -0.156997 hybrid +141_1-5 Q0 MARCO_06_39851780-3 71 -0.160678 hybrid +141_1-5 Q0 MARCO_50_1699001281-14 72 -0.161068 hybrid +141_1-5 Q0 MARCO_12_1027608926-4 73 -0.162767 hybrid +141_1-5 Q0 MARCO_04_393239074-17 74 -0.164696 hybrid +141_1-5 Q0 MARCO_03_1596389526-4 75 -0.168626 hybrid +141_1-5 Q0 MARCO_50_1142250303-9 76 -0.171015 hybrid +141_1-5 Q0 MARCO_01_2175646273-1 77 -0.173935 hybrid +141_1-5 Q0 MARCO_10_1033564437-27 78 -0.173953 hybrid +141_1-5 Q0 MARCO_50_1759603587-61 79 -0.174148 hybrid +141_1-5 Q0 MARCO_07_42017708-14 80 -0.175316 hybrid +141_1-5 Q0 MARCO_25_1285354423-8 81 -0.178219 hybrid +141_1-5 Q0 MARCO_50_789652134-8 82 -0.180502 hybrid +141_1-5 Q0 MARCO_12_1708247255-23 83 -0.183069 hybrid +141_1-5 Q0 MARCO_44_1987542244-14 84 -0.183104 hybrid +141_1-5 Q0 MARCO_44_1996273826-15 85 -0.183617 hybrid +141_1-5 Q0 MARCO_50_1608869027-94 86 -0.183918 hybrid +141_1-5 Q0 MARCO_58_578721684-18 87 -0.184573 hybrid +141_1-5 Q0 MARCO_09_1738025599-121 88 -0.185493 hybrid +141_1-5 Q0 MARCO_58_577486422-9 89 -0.185741 hybrid +141_1-5 Q0 MARCO_30_482814881-25 90 -0.185865 hybrid +141_1-5 Q0 MARCO_44_1970749039-10 91 -0.186484 hybrid +141_1-5 Q0 MARCO_03_1526457892-1 92 -0.187122 hybrid +141_1-5 Q0 MARCO_25_1372751419-72 93 -0.187936 hybrid +141_1-5 Q0 MARCO_06_757915009-1 94 -0.188396 hybrid +141_1-5 Q0 MARCO_24_915226901-6 95 -0.188998 hybrid +141_1-5 Q0 MARCO_03_149575104-101 96 -0.189228 hybrid +141_1-5 Q0 MARCO_06_757750513-4 97 -0.193086 hybrid +141_1-5 Q0 MARCO_33_102564388-25 98 -0.193812 hybrid +141_1-5 Q0 MARCO_24_833314988-4 99 -0.195087 hybrid +141_1-5 Q0 MARCO_22_439386674-1 100 -0.199812 hybrid +141_2-1 Q0 MARCO_18_1642035430-2 1 0.500000 hybrid +141_2-1 Q0 MARCO_50_1399491563-1 2 0.404928 hybrid +141_2-1 Q0 MARCO_13_762551010-2 3 0.301357 hybrid +141_2-1 Q0 MARCO_02_420075955-2 4 0.290489 hybrid +141_2-1 Q0 KILT_47185-1 5 0.262606 hybrid +141_2-1 Q0 MARCO_16_1844161299-4 6 0.195518 hybrid +141_2-1 Q0 MARCO_48_821401453-15 7 0.137585 hybrid +141_2-1 Q0 MARCO_37_1604568449-1 8 0.112356 hybrid +141_2-1 Q0 MARCO_48_978771114-5 9 0.087950 hybrid +141_2-1 Q0 MARCO_55_174716170-1 10 0.070682 hybrid +141_2-1 Q0 KILT_23619041-3 11 0.056388 hybrid +141_2-1 Q0 MARCO_00_594570808-6 12 0.055447 hybrid +141_2-1 Q0 MARCO_11_1278885219-1 13 0.049333 hybrid +141_2-1 Q0 MARCO_14_1199417139-6 14 0.036215 hybrid +141_2-1 Q0 MARCO_51_100562040-3 15 0.031495 hybrid +141_2-1 Q0 MARCO_46_33251902-3 16 0.010229 hybrid +141_2-1 Q0 MARCO_35_881676792-3 17 0.009339 hybrid +141_2-1 Q0 MARCO_00_594570808-48 18 0.006668 hybrid +141_2-1 Q0 MARCO_57_1170590839-31 19 0.006501 hybrid +141_2-1 Q0 MARCO_01_2035501874-1 20 0.004905 hybrid +141_2-1 Q0 MARCO_54_542883391-5 21 -0.001831 hybrid +141_2-1 Q0 MARCO_28_1650353096-10 22 -0.012161 hybrid +141_2-1 Q0 MARCO_24_1629894509-1 23 -0.020761 hybrid +141_2-1 Q0 MARCO_28_590453689-9 24 -0.026069 hybrid +141_2-1 Q0 MARCO_19_1586568171-1 25 -0.031209 hybrid +141_2-1 Q0 MARCO_44_670736229-1 26 -0.034787 hybrid +141_2-1 Q0 MARCO_06_411156498-9 27 -0.038281 hybrid +141_2-1 Q0 MARCO_40_214920832-19 28 -0.040246 hybrid +141_2-1 Q0 MARCO_11_951426816-6 29 -0.047788 hybrid +141_2-1 Q0 MARCO_24_1121333174-9 30 -0.062922 hybrid +141_2-1 Q0 MARCO_17_1218658426-4 31 -0.068348 hybrid +141_2-1 Q0 MARCO_47_1302198068-14 32 -0.071405 hybrid +141_2-1 Q0 MARCO_35_881676792-2 33 -0.072513 hybrid +141_2-1 Q0 MARCO_47_1303047283-15 34 -0.073370 hybrid +141_2-1 Q0 KILT_20829722-39 35 -0.076511 hybrid +141_2-1 Q0 MARCO_23_1061629128-4 36 -0.084002 hybrid +141_2-1 Q0 KILT_45852-1 37 -0.086388 hybrid +141_2-1 Q0 MARCO_50_1056559959-61 38 -0.095693 hybrid +141_2-1 Q0 MARCO_09_1357168570-3 39 -0.096029 hybrid +141_2-1 Q0 MARCO_50_1399491563-8 40 -0.099389 hybrid +141_2-1 Q0 MARCO_00_594570808-8 41 -0.099859 hybrid +141_2-1 Q0 MARCO_12_2009249463-19 42 -0.102614 hybrid +141_2-1 Q0 MARCO_17_4108448752-3 43 -0.104529 hybrid +141_2-1 Q0 MARCO_27_13537265-4 44 -0.111684 hybrid +141_2-1 Q0 KILT_20829722-14 45 -0.116421 hybrid +141_2-1 Q0 MARCO_12_1166874951-11 46 -0.121124 hybrid +141_2-1 Q0 KILT_47185-3 47 -0.125407 hybrid +141_2-1 Q0 MARCO_28_313753082-2 48 -0.126382 hybrid +141_2-1 Q0 MARCO_02_407019929-7 49 -0.127524 hybrid +141_2-1 Q0 MARCO_48_386559405-2 50 -0.128364 hybrid +141_2-1 Q0 MARCO_03_1683965616-2 51 -0.132630 hybrid +141_2-1 Q0 MARCO_31_1848021068-3 52 -0.136947 hybrid +141_2-1 Q0 MARCO_31_1417372292-2 53 -0.137165 hybrid +141_2-1 Q0 MARCO_02_397758402-3 54 -0.147680 hybrid +141_2-1 Q0 MARCO_01_1705298236-3 55 -0.148537 hybrid +141_2-1 Q0 MARCO_00_594936998-15 56 -0.148537 hybrid +141_2-1 Q0 KILT_34997299-1 57 -0.149696 hybrid +141_2-1 Q0 MARCO_01_2035501874-3 58 -0.154886 hybrid +141_2-1 Q0 KILT_28333656-3 59 -0.158850 hybrid +141_2-1 Q0 MARCO_26_1436267815-4 60 -0.158884 hybrid +141_2-1 Q0 MARCO_52_1529849136-3 61 -0.159371 hybrid +141_2-1 Q0 MARCO_14_1549971571-20 62 -0.160009 hybrid +141_2-1 Q0 MARCO_04_580139221-3 63 -0.162075 hybrid +141_2-1 Q0 MARCO_19_2322308441-5 64 -0.164024 hybrid +141_2-1 Q0 MARCO_57_614712155-5 65 -0.164511 hybrid +141_2-1 Q0 MARCO_20_402078847-26 66 -0.164662 hybrid +141_2-1 Q0 MARCO_37_1558416988-2 67 -0.164847 hybrid +141_2-1 Q0 MARCO_50_2761743467-7 68 -0.165250 hybrid +141_2-1 Q0 MARCO_19_1512428476-1 69 -0.165704 hybrid +141_2-1 Q0 MARCO_19_1512428476-7 70 -0.166863 hybrid +141_2-1 Q0 MARCO_37_1604568449-2 71 -0.167199 hybrid +141_2-1 Q0 MARCO_09_1729161648-6 72 -0.167484 hybrid +141_2-1 Q0 MARCO_02_407019929-1 73 -0.168274 hybrid +141_2-1 Q0 MARCO_16_3430220161-2 74 -0.169617 hybrid +141_2-1 Q0 MARCO_27_781217732-15 75 -0.172120 hybrid +141_2-1 Q0 MARCO_02_1090267864-6 76 -0.172641 hybrid +141_2-1 Q0 MARCO_20_1212119481-1 77 -0.173262 hybrid +141_2-1 Q0 MARCO_28_590644255-8 78 -0.175345 hybrid +141_2-1 Q0 MARCO_00_594570808-206 79 -0.179830 hybrid +141_2-1 Q0 MARCO_40_454826006-13 80 -0.181594 hybrid +141_2-1 Q0 MARCO_14_666207898-18 81 -0.182921 hybrid +141_2-1 Q0 MARCO_12_1096626572-6 82 -0.185222 hybrid +141_2-1 Q0 MARCO_24_811920219-6 83 -0.188548 hybrid +141_2-1 Q0 MARCO_04_1122679264-1 84 -0.189875 hybrid +141_2-1 Q0 MARCO_13_994036468-1 85 -0.189959 hybrid +141_2-1 Q0 MARCO_52_1529875069-4 86 -0.190177 hybrid +141_2-1 Q0 KILT_45852-14 87 -0.190311 hybrid +141_2-1 Q0 MARCO_00_1701026419-2 88 -0.191235 hybrid +141_2-1 Q0 MARCO_37_905655665-7 89 -0.191336 hybrid +141_2-1 Q0 MARCO_11_1278885219-5 90 -0.195367 hybrid +141_2-1 Q0 KILT_39206304-3 91 -0.197383 hybrid +141_2-1 Q0 MARCO_23_811831986-9 92 -0.198727 hybrid +141_2-1 Q0 MARCO_53_182709760-5 93 -0.198945 hybrid +141_2-1 Q0 MARCO_15_103452208-12 94 -0.199264 hybrid +141_2-1 Q0 MARCO_38_124732742-5 95 -0.203144 hybrid +141_2-1 Q0 MARCO_11_226789073-8 96 -0.203262 hybrid +141_2-1 Q0 MARCO_13_315423958-6 97 -0.204219 hybrid +141_2-1 Q0 MARCO_24_1120972101-6 98 -0.206722 hybrid +141_2-1 Q0 MARCO_40_1675561799-10 99 -0.208503 hybrid +141_2-1 Q0 MARCO_16_3430220161-5 100 -0.210300 hybrid +141_2-11 Q0 MARCO_27_1237112784-2 1 0.500000 hybrid +141_2-11 Q0 MARCO_01_1858000790-4 2 0.430273 hybrid +141_2-11 Q0 MARCO_50_1309249709-17 3 0.357733 hybrid +141_2-11 Q0 MARCO_28_1650353096-10 4 0.338588 hybrid +141_2-11 Q0 MARCO_00_745300140-4 5 0.315481 hybrid +141_2-11 Q0 MARCO_09_810936368-2 6 0.313740 hybrid +141_2-11 Q0 MARCO_07_789633719-9 7 0.305722 hybrid +141_2-11 Q0 MARCO_28_313753082-1 8 0.280438 hybrid +141_2-11 Q0 MARCO_50_888083362-6 9 0.279024 hybrid +141_2-11 Q0 MARCO_19_1512428476-1 10 0.273430 hybrid +141_2-11 Q0 MARCO_01_1705298236-3 11 0.259740 hybrid +141_2-11 Q0 MARCO_51_1483456084-1 12 0.259460 hybrid +141_2-11 Q0 MARCO_02_589263084-1 13 0.232560 hybrid +141_2-11 Q0 MARCO_27_1695051807-23 14 0.222926 hybrid +141_2-11 Q0 MARCO_57_286606536-2 15 0.221356 hybrid +141_2-11 Q0 MARCO_20_502984134-3 16 0.216725 hybrid +141_2-11 Q0 MARCO_56_83934705-2 17 0.211162 hybrid +141_2-11 Q0 MARCO_59_636003786-5 18 0.177798 hybrid +141_2-11 Q0 MARCO_51_1483456084-2 19 0.167340 hybrid +141_2-11 Q0 MARCO_02_407019929-8 20 0.166392 hybrid +141_2-11 Q0 MARCO_28_313753082-2 21 0.164869 hybrid +141_2-11 Q0 MARCO_37_1604568449-2 22 0.160969 hybrid +141_2-11 Q0 MARCO_09_1357168570-2 23 0.160969 hybrid +141_2-11 Q0 KILT_47185-8 24 0.151365 hybrid +141_2-11 Q0 MARCO_03_263166621-1 25 0.150371 hybrid +141_2-11 Q0 MARCO_18_1642035430-9 26 0.146890 hybrid +141_2-11 Q0 MARCO_32_277789126-1 27 0.144077 hybrid +141_2-11 Q0 MARCO_02_407019929-7 28 0.143813 hybrid +141_2-11 Q0 MARCO_41_1954910648-8 29 0.140083 hybrid +141_2-11 Q0 MARCO_02_407019929-2 30 0.138281 hybrid +141_2-11 Q0 MARCO_52_1529875069-4 31 0.137970 hybrid +141_2-11 Q0 MARCO_15_600646838-2 32 0.135390 hybrid +141_2-11 Q0 MARCO_02_407019929-13 33 0.134520 hybrid +141_2-11 Q0 MARCO_52_1529875069-5 34 0.133696 hybrid +141_2-11 Q0 MARCO_54_542883391-5 35 0.132453 hybrid +141_2-11 Q0 MARCO_44_740722524-2 36 0.132158 hybrid +141_2-11 Q0 MARCO_18_3002209009-69 37 0.127791 hybrid +141_2-11 Q0 MARCO_01_994121131-1 38 0.127279 hybrid +141_2-11 Q0 MARCO_04_859221613-4 39 0.124419 hybrid +141_2-11 Q0 MARCO_44_647739316-2 40 0.122042 hybrid +141_2-11 Q0 MARCO_11_1278885219-2 41 0.113790 hybrid +141_2-11 Q0 KILT_48728-61 42 0.111397 hybrid +141_2-11 Q0 MARCO_52_1529875069-1 43 0.110107 hybrid +141_2-11 Q0 MARCO_32_277789126-2 44 0.093821 hybrid +141_2-11 Q0 MARCO_37_1462768622-2 45 0.091211 hybrid +141_2-11 Q0 MARCO_40_1061509765-9 46 0.089144 hybrid +141_2-11 Q0 MARCO_06_397037872-1 47 0.086207 hybrid +141_2-11 Q0 MARCO_14_1199417139-1 48 0.080659 hybrid +141_2-11 Q0 MARCO_10_224635018-3 49 0.079323 hybrid +141_2-11 Q0 MARCO_02_420075955-1 50 0.076448 hybrid +141_2-11 Q0 MARCO_50_879031887-34 51 0.070978 hybrid +141_2-11 Q0 MARCO_25_100364488-18 52 0.067046 hybrid +141_2-11 Q0 KILT_45852-19 53 0.066161 hybrid +141_2-11 Q0 MARCO_26_1635056371-18 54 0.061794 hybrid +141_2-11 Q0 MARCO_24_385299240-39 55 0.059572 hybrid +141_2-11 Q0 MARCO_44_670736229-3 56 0.058966 hybrid +141_2-11 Q0 MARCO_44_764275057-1 57 0.058655 hybrid +141_2-11 Q0 MARCO_14_669844652-2 58 0.054226 hybrid +141_2-11 Q0 MARCO_11_951426816-6 59 0.052828 hybrid +141_2-11 Q0 MARCO_27_1801624-6 60 0.048274 hybrid +141_2-11 Q0 MARCO_17_4108783458-36 61 0.046596 hybrid +141_2-11 Q0 MARCO_44_670736229-1 62 0.042136 hybrid +141_2-11 Q0 MARCO_50_888083362-5 63 0.039836 hybrid +141_2-11 Q0 MARCO_59_636003786-1 64 0.037303 hybrid +141_2-11 Q0 MARCO_44_638364475-1 65 0.035703 hybrid +141_2-11 Q0 MARCO_46_33251902-3 66 0.035206 hybrid +141_2-11 Q0 MARCO_47_612064244-1 67 0.032331 hybrid +141_2-11 Q0 MARCO_50_1754952024-1 68 0.028710 hybrid +141_2-11 Q0 MARCO_57_614712155-1 69 0.028601 hybrid +141_2-11 Q0 KILT_48732-7 70 0.027777 hybrid +141_2-11 Q0 KILT_42837394-2 71 0.022634 hybrid +141_2-11 Q0 MARCO_44_740722524-1 72 0.017102 hybrid +141_2-11 Q0 MARCO_07_426229670-1 73 0.016449 hybrid +141_2-11 Q0 MARCO_19_1512428476-4 74 0.016216 hybrid +141_2-11 Q0 MARCO_37_1558416988-1 75 0.014538 hybrid +141_2-11 Q0 MARCO_02_407019929-3 76 0.013061 hybrid +141_2-11 Q0 MARCO_44_670736229-2 77 0.012937 hybrid +141_2-11 Q0 MARCO_52_1529957938-4 78 0.010140 hybrid +141_2-11 Q0 MARCO_11_951426816-1 79 0.009083 hybrid +141_2-11 Q0 MARCO_00_594936998-15 80 0.006519 hybrid +141_2-11 Q0 MARCO_11_1278885219-11 81 0.005929 hybrid +141_2-11 Q0 MARCO_44_764647331-1 82 0.005882 hybrid +141_2-11 Q0 MARCO_00_594570808-29 83 0.005571 hybrid +141_2-11 Q0 MARCO_50_1309249709-18 84 0.004204 hybrid +141_2-11 Q0 MARCO_00_1701026419-1 85 0.003287 hybrid +141_2-11 Q0 MARCO_04_1088668455-1 86 -0.000272 hybrid +141_2-11 Q0 MARCO_37_1558416988-5 87 -0.000427 hybrid +141_2-11 Q0 MARCO_18_1642035430-14 88 -0.001406 hybrid +141_2-11 Q0 MARCO_28_313753082-4 89 -0.001608 hybrid +141_2-11 Q0 MARCO_57_286606536-1 90 -0.001608 hybrid +141_2-11 Q0 KILT_20829722-43 91 -0.001670 hybrid +141_2-11 Q0 MARCO_11_951426816-4 92 -0.001748 hybrid +141_2-11 Q0 MARCO_14_799915163-12 93 -0.001935 hybrid +141_2-11 Q0 MARCO_02_407019929-15 94 -0.004452 hybrid +141_2-11 Q0 MARCO_11_107464317-8 95 -0.005757 hybrid +141_2-11 Q0 MARCO_04_859221613-1 96 -0.006705 hybrid +141_2-11 Q0 MARCO_19_1512428476-2 97 -0.006814 hybrid +141_2-11 Q0 MARCO_54_543389983-3 98 -0.007824 hybrid +141_2-11 Q0 MARCO_18_1642035430-1 99 -0.012750 hybrid +141_2-11 Q0 MARCO_46_1389837794-1 100 -0.014910 hybrid +141_2-13 Q0 MARCO_36_854332665-4 1 0.500000 hybrid +141_2-13 Q0 MARCO_40_1750784239-26 2 0.496490 hybrid +141_2-13 Q0 MARCO_34_1003279232-5 3 0.444359 hybrid +141_2-13 Q0 MARCO_30_900016222-24 4 0.351425 hybrid +141_2-13 Q0 MARCO_00_1286684700-3 5 0.344796 hybrid +141_2-13 Q0 MARCO_16_2769231193-41 6 0.341389 hybrid +141_2-13 Q0 MARCO_00_1286684700-5 7 0.291536 hybrid +141_2-13 Q0 MARCO_34_1002676375-6 8 0.280966 hybrid +141_2-13 Q0 MARCO_22_1252478862-3 9 0.262905 hybrid +141_2-13 Q0 MARCO_14_665767216-5 10 0.252253 hybrid +141_2-13 Q0 MARCO_16_4043114873-17 11 0.234007 hybrid +141_2-13 Q0 MARCO_13_1439475348-9 12 0.208988 hybrid +141_2-13 Q0 MARCO_01_830855712-13 13 0.198212 hybrid +141_2-13 Q0 MARCO_01_831982137-19 14 0.198212 hybrid +141_2-13 Q0 MARCO_19_2489928640-11 15 0.198212 hybrid +141_2-13 Q0 MARCO_19_2513676244-13 16 0.198212 hybrid +141_2-13 Q0 MARCO_48_1441737376-6 17 0.194005 hybrid +141_2-13 Q0 KILT_56071119-7 18 0.186206 hybrid +141_2-13 Q0 MARCO_40_1241317956-1 19 0.185877 hybrid +141_2-13 Q0 MARCO_28_41600890-9 20 0.156836 hybrid +141_2-13 Q0 MARCO_56_958635063-1 21 0.156363 hybrid +141_2-13 Q0 MARCO_16_4043114873-1 22 0.147210 hybrid +141_2-13 Q0 MARCO_46_400607902-2 23 0.142325 hybrid +141_2-13 Q0 MARCO_23_267038408-1 24 0.140621 hybrid +141_2-13 Q0 MARCO_01_829924766-18 25 0.139800 hybrid +141_2-13 Q0 KILT_56071119-1 26 0.127548 hybrid +141_2-13 Q0 MARCO_16_449364321-1 27 0.127547 hybrid +141_2-13 Q0 MARCO_12_2009744151-1 28 0.103883 hybrid +141_2-13 Q0 MARCO_20_507073044-6 29 0.097151 hybrid +141_2-13 Q0 MARCO_24_1120060666-5 30 0.095325 hybrid +141_2-13 Q0 MARCO_36_854332665-1 31 0.090050 hybrid +141_2-13 Q0 MARCO_48_1441737376-1 32 0.082066 hybrid +141_2-13 Q0 MARCO_50_802872013-16 33 0.075786 hybrid +141_2-13 Q0 MARCO_26_921568583-3 34 0.074493 hybrid +141_2-13 Q0 MARCO_37_423739811-1 35 0.069977 hybrid +141_2-13 Q0 MARCO_34_1003534459-4 36 0.061850 hybrid +141_2-13 Q0 MARCO_50_286787825-2 37 0.060454 hybrid +141_2-13 Q0 MARCO_40_1750832933-1 38 0.059305 hybrid +141_2-13 Q0 MARCO_19_2537559232-2 39 0.058319 hybrid +141_2-13 Q0 MARCO_44_608217445-1 40 0.057991 hybrid +141_2-13 Q0 MARCO_17_2543288164-5 41 0.057950 hybrid +141_2-13 Q0 MARCO_48_598907350-14 42 0.057088 hybrid +141_2-13 Q0 MARCO_25_297146258-9 43 0.047914 hybrid +141_2-13 Q0 MARCO_44_710412798-5 44 0.043440 hybrid +141_2-13 Q0 MARCO_47_1301661852-23 45 0.043439 hybrid +141_2-13 Q0 MARCO_25_1440064272-8 46 0.038452 hybrid +141_2-13 Q0 MARCO_00_1286684700-4 47 0.037056 hybrid +141_2-13 Q0 MARCO_50_2155141197-18 48 0.033896 hybrid +141_2-13 Q0 MARCO_41_1707206451-10 49 0.030160 hybrid +141_2-13 Q0 MARCO_12_1872201330-1 50 0.011976 hybrid +141_2-13 Q0 MARCO_50_1876477087-139 51 0.003766 hybrid +141_2-13 Q0 KILT_57092775-1 52 0.000770 hybrid +141_2-13 Q0 MARCO_19_2537559232-1 53 0.000708 hybrid +141_2-13 Q0 MARCO_16_4043114873-3 54 0.000564 hybrid +141_2-13 Q0 MARCO_16_449364321-3 55 0.000564 hybrid +141_2-13 Q0 MARCO_44_658616880-3 56 -0.005039 hybrid +141_2-13 Q0 MARCO_50_938168189-30 57 -0.009410 hybrid +141_2-13 Q0 MARCO_12_2008901471-3 58 -0.010498 hybrid +141_2-13 Q0 MARCO_21_190181953-4 59 -0.010498 hybrid +141_2-13 Q0 MARCO_40_1214550829-5 60 -0.010498 hybrid +141_2-13 Q0 MARCO_12_1167771301-12 61 -0.018379 hybrid +141_2-13 Q0 MARCO_01_829924766-21 62 -0.019796 hybrid +141_2-13 Q0 MARCO_01_831982137-22 63 -0.019796 hybrid +141_2-13 Q0 MARCO_19_2489928640-14 64 -0.019796 hybrid +141_2-13 Q0 MARCO_19_2513676244-16 65 -0.019796 hybrid +141_2-13 Q0 MARCO_22_1248997535-2 66 -0.024537 hybrid +141_2-13 Q0 MARCO_16_4043114873-10 67 -0.027759 hybrid +141_2-13 Q0 MARCO_24_385123947-1 68 -0.031433 hybrid +141_2-13 Q0 MARCO_50_1754952024-25 69 -0.033649 hybrid +141_2-13 Q0 MARCO_50_1890744981-13 70 -0.033649 hybrid +141_2-13 Q0 MARCO_45_1625486606-1 71 -0.046046 hybrid +141_2-13 Q0 MARCO_34_256175571-8 72 -0.046744 hybrid +141_2-13 Q0 KILT_36662188-21 73 -0.057765 hybrid +141_2-13 Q0 MARCO_14_1550361835-7 74 -0.057765 hybrid +141_2-13 Q0 MARCO_23_180934152-2 75 -0.057766 hybrid +141_2-13 Q0 KILT_36662188-19 76 -0.058730 hybrid +141_2-13 Q0 MARCO_46_97484708-12 77 -0.058730 hybrid +141_2-13 Q0 MARCO_50_908244450-13 78 -0.062014 hybrid +141_2-13 Q0 MARCO_41_1669217714-2 79 -0.063512 hybrid +141_2-13 Q0 MARCO_40_1071204222-5 80 -0.068376 hybrid +141_2-13 Q0 MARCO_30_899339558-8 81 -0.077161 hybrid +141_2-13 Q0 MARCO_57_836364708-10 82 -0.077161 hybrid +141_2-13 Q0 MARCO_50_2520098395-291 83 -0.082066 hybrid +141_2-13 Q0 MARCO_36_859944270-1 84 -0.082251 hybrid +141_2-13 Q0 KILT_56071119-8 85 -0.084508 hybrid +141_2-13 Q0 MARCO_48_821650797-24 86 -0.090070 hybrid +141_2-13 Q0 MARCO_21_199262582-27 87 -0.090932 hybrid +141_2-13 Q0 MARCO_31_1411678621-66 88 -0.090933 hybrid +141_2-13 Q0 MARCO_34_1008106323-7 89 -0.090933 hybrid +141_2-13 Q0 MARCO_57_837296236-13 90 -0.092656 hybrid +141_2-13 Q0 MARCO_01_930441588-5 91 -0.095489 hybrid +141_2-13 Q0 MARCO_35_1443876931-3 92 -0.095489 hybrid +141_2-13 Q0 MARCO_44_689577098-3 93 -0.096063 hybrid +141_2-13 Q0 MARCO_47_637952450-16 94 -0.097582 hybrid +141_2-13 Q0 MARCO_40_514241915-8 95 -0.101646 hybrid +141_2-13 Q0 MARCO_50_1876477087-138 96 -0.107516 hybrid +141_2-13 Q0 MARCO_17_2543288164-14 97 -0.111251 hybrid +141_2-13 Q0 MARCO_02_1705998227-4 98 -0.112709 hybrid +141_2-13 Q0 MARCO_20_258523086-4 99 -0.114658 hybrid +141_2-13 Q0 MARCO_14_1550310400-5 100 -0.115377 hybrid +141_2-3 Q0 MARCO_28_313753082-2 1 0.500000 hybrid +141_2-3 Q0 MARCO_52_1529875069-1 2 0.490836 hybrid +141_2-3 Q0 MARCO_51_1483456084-1 3 0.472932 hybrid +141_2-3 Q0 MARCO_02_420075955-1 4 0.459787 hybrid +141_2-3 Q0 MARCO_14_1199417139-1 5 0.458737 hybrid +141_2-3 Q0 MARCO_50_1309249709-17 6 0.425639 hybrid +141_2-3 Q0 MARCO_52_1529849136-1 7 0.373162 hybrid +141_2-3 Q0 MARCO_51_1483456084-2 8 0.372519 hybrid +141_2-3 Q0 MARCO_57_286606536-1 9 0.366336 hybrid +141_2-3 Q0 MARCO_18_1642035430-6 10 0.357917 hybrid +141_2-3 Q0 MARCO_19_2322308441-5 11 0.338709 hybrid +141_2-3 Q0 MARCO_54_345126522-1 12 0.303815 hybrid +141_2-3 Q0 KILT_20829722-1 13 0.301968 hybrid +141_2-3 Q0 MARCO_37_1462768622-1 14 0.287960 hybrid +141_2-3 Q0 MARCO_44_740722524-2 15 0.266702 hybrid +141_2-3 Q0 MARCO_40_1675561799-4 16 0.253083 hybrid +141_2-3 Q0 KILT_47185-7 17 0.252067 hybrid +141_2-3 Q0 MARCO_56_83934705-2 18 0.251829 hybrid +141_2-3 Q0 MARCO_18_1642035430-8 19 0.251711 hybrid +141_2-3 Q0 MARCO_02_589263084-1 20 0.251406 hybrid +141_2-3 Q0 MARCO_19_1512428476-1 21 0.248967 hybrid +141_2-3 Q0 MARCO_57_286606536-5 22 0.230012 hybrid +141_2-3 Q0 KILT_20829722-3 23 0.224439 hybrid +141_2-3 Q0 MARCO_57_286606536-2 24 0.223813 hybrid +141_2-3 Q0 MARCO_07_1191803437-4 25 0.210990 hybrid +141_2-3 Q0 MARCO_14_1199417139-3 26 0.209584 hybrid +141_2-3 Q0 MARCO_44_1466399527-2 27 0.199844 hybrid +141_2-3 Q0 MARCO_37_1462768622-3 28 0.198608 hybrid +141_2-3 Q0 MARCO_18_1642035430-9 29 0.195796 hybrid +141_2-3 Q0 MARCO_02_407019929-2 30 0.186768 hybrid +141_2-3 Q0 MARCO_44_764275057-1 31 0.186581 hybrid +141_2-3 Q0 MARCO_32_277789126-2 32 0.177671 hybrid +141_2-3 Q0 MARCO_52_1529875069-2 33 0.169151 hybrid +141_2-3 Q0 MARCO_44_670736229-1 34 0.168575 hybrid +141_2-3 Q0 MARCO_14_1199417139-2 35 0.167373 hybrid +141_2-3 Q0 MARCO_50_888083362-5 36 0.166068 hybrid +141_2-3 Q0 MARCO_47_612064244-1 37 0.157887 hybrid +141_2-3 Q0 MARCO_32_277789126-1 38 0.157667 hybrid +141_2-3 Q0 MARCO_57_614712155-1 39 0.153822 hybrid +141_2-3 Q0 MARCO_28_1650353096-10 40 0.147961 hybrid +141_2-3 Q0 MARCO_02_407019929-13 41 0.145911 hybrid +141_2-3 Q0 MARCO_02_407019929-8 42 0.141795 hybrid +141_2-3 Q0 MARCO_44_740722524-1 43 0.141287 hybrid +141_2-3 Q0 MARCO_37_1558416988-1 44 0.138492 hybrid +141_2-3 Q0 MARCO_36_1096184208-2 45 0.137814 hybrid +141_2-3 Q0 MARCO_11_951426816-1 46 0.132546 hybrid +141_2-3 Q0 MARCO_28_313753082-1 47 0.131886 hybrid +141_2-3 Q0 KILT_47185-6 48 0.130090 hybrid +141_2-3 Q0 KILT_45852-11 49 0.126940 hybrid +141_2-3 Q0 MARCO_00_1701026419-1 50 0.126228 hybrid +141_2-3 Q0 MARCO_03_263166621-1 51 0.124314 hybrid +141_2-3 Q0 MARCO_37_1604568449-2 52 0.122485 hybrid +141_2-3 Q0 MARCO_11_1278885219-2 53 0.121943 hybrid +141_2-3 Q0 MARCO_18_1642035430-14 54 0.121113 hybrid +141_2-3 Q0 MARCO_28_313753082-4 55 0.120892 hybrid +141_2-3 Q0 MARCO_01_1858000790-4 56 0.113033 hybrid +141_2-3 Q0 MARCO_46_1389837794-1 57 0.106393 hybrid +141_2-3 Q0 MARCO_01_994121131-1 58 0.099143 hybrid +141_2-3 Q0 MARCO_14_1549971571-20 59 0.098567 hybrid +141_2-3 Q0 MARCO_52_1529875069-5 60 0.098550 hybrid +141_2-3 Q0 MARCO_51_1474738036-2 61 0.098465 hybrid +141_2-3 Q0 MARCO_54_345126522-5 62 0.097059 hybrid +141_2-3 Q0 MARCO_56_920297485-15 63 0.088929 hybrid +141_2-3 Q0 MARCO_10_224635018-3 64 0.084372 hybrid +141_2-3 Q0 MARCO_09_1357168570-2 65 0.076377 hybrid +141_2-3 Q0 MARCO_36_587257206-3 66 0.076293 hybrid +141_2-3 Q0 MARCO_44_623879817-4 67 0.070906 hybrid +141_2-3 Q0 MARCO_09_1541907932-3 68 0.070262 hybrid +141_2-3 Q0 KILT_2535900-1 69 0.069619 hybrid +141_2-3 Q0 MARCO_09_1357168570-4 70 0.060912 hybrid +141_2-3 Q0 MARCO_11_951426816-6 71 0.058219 hybrid +141_2-3 Q0 MARCO_14_669844652-2 72 0.057016 hybrid +141_2-3 Q0 MARCO_48_290493236-2 73 0.050139 hybrid +141_2-3 Q0 KILT_429839-9 74 0.049529 hybrid +141_2-3 Q0 MARCO_51_1483456084-4 75 0.049140 hybrid +141_2-3 Q0 MARCO_06_397037872-1 76 0.046785 hybrid +141_2-3 Q0 MARCO_59_636003786-5 77 0.043956 hybrid +141_2-3 Q0 MARCO_04_722383505-1 78 0.038570 hybrid +141_2-3 Q0 MARCO_37_1604568449-1 79 0.038299 hybrid +141_2-3 Q0 KILT_1803257-5 80 0.032692 hybrid +141_2-3 Q0 MARCO_36_840746247-2 81 0.032624 hybrid +141_2-3 Q0 KILT_29441521-2 82 0.029999 hybrid +141_2-3 Q0 MARCO_01_1705298236-3 83 0.028661 hybrid +141_2-3 Q0 MARCO_02_420075955-2 84 0.026899 hybrid +141_2-3 Q0 MARCO_01_2035501874-1 85 0.024036 hybrid +141_2-3 Q0 KILT_42837394-2 86 0.023952 hybrid +141_2-3 Q0 MARCO_22_768698212-6 87 0.022478 hybrid +141_2-3 Q0 MARCO_54_109964311-1 88 0.020936 hybrid +141_2-3 Q0 MARCO_54_345126522-4 89 0.020936 hybrid +141_2-3 Q0 KILT_20829722-4 90 0.015550 hybrid +141_2-3 Q0 MARCO_02_407019929-3 91 0.012145 hybrid +141_2-3 Q0 MARCO_54_301163892-2 92 0.011874 hybrid +141_2-3 Q0 MARCO_32_704060259-2 93 0.011857 hybrid +141_2-3 Q0 MARCO_42_1165081234-9 94 0.010282 hybrid +141_2-3 Q0 MARCO_44_764560028-2 95 0.010197 hybrid +141_2-3 Q0 MARCO_18_1642035430-7 96 0.009554 hybrid +141_2-3 Q0 MARCO_01_2035501874-7 97 0.006166 hybrid +141_2-3 Q0 MARCO_00_594570808-29 98 0.002592 hybrid +141_2-3 Q0 MARCO_47_612064244-10 99 0.002270 hybrid +141_2-3 Q0 MARCO_50_1309249709-18 100 0.001084 hybrid +141_2-5 Q0 KILT_59601191-15 1 0.500000 hybrid +141_2-5 Q0 KILT_59601191-14 2 0.458740 hybrid +141_2-5 Q0 KILT_59601191-1 3 0.344988 hybrid +141_2-5 Q0 KILT_59601191-3 4 0.276287 hybrid +141_2-5 Q0 MARCO_16_1727721624-4 5 0.245261 hybrid +141_2-5 Q0 KILT_47185-1 6 0.235379 hybrid +141_2-5 Q0 KILT_59601191-13 7 0.192601 hybrid +141_2-5 Q0 MARCO_18_1642035430-1 8 0.184306 hybrid +141_2-5 Q0 MARCO_44_740722524-2 9 0.184306 hybrid +141_2-5 Q0 KILT_59601191-11 10 0.180266 hybrid +141_2-5 Q0 MARCO_50_1321848492-11 11 0.168599 hybrid +141_2-5 Q0 KILT_382697-4 12 0.062285 hybrid +141_2-5 Q0 KILT_23004368-1 13 0.001510 hybrid +141_2-5 Q0 KILT_34768-6 14 -0.039999 hybrid +141_2-5 Q0 MARCO_16_1240512591-8 15 -0.049932 hybrid +141_2-5 Q0 KILT_59601191-5 16 -0.060929 hybrid +141_2-5 Q0 KILT_25015270-1 17 -0.096708 hybrid +141_2-5 Q0 MARCO_48_2046575553-1 18 -0.138465 hybrid +141_2-5 Q0 MARCO_38_198564457-1 19 -0.145430 hybrid +141_2-5 Q0 MARCO_25_914232632-1 20 -0.161265 hybrid +141_2-5 Q0 MARCO_03_1656664215-2 21 -0.170898 hybrid +141_2-5 Q0 MARCO_17_3853295482-52 22 -0.185773 hybrid +141_2-5 Q0 MARCO_54_212717219-1 23 -0.195834 hybrid +141_2-5 Q0 MARCO_13_618209299-30 24 -0.196504 hybrid +141_2-5 Q0 MARCO_27_951354830-8 25 -0.198151 hybrid +141_2-5 Q0 KILT_22885261-2 26 -0.198888 hybrid +141_2-5 Q0 KILT_47185-11 27 -0.198888 hybrid +141_2-5 Q0 MARCO_35_826595331-1 28 -0.202577 hybrid +141_2-5 Q0 MARCO_41_1440865516-19 29 -0.207320 hybrid +141_2-5 Q0 KILT_28286904-1 30 -0.210777 hybrid +141_2-5 Q0 KILT_4623493-1 31 -0.210777 hybrid +141_2-5 Q0 MARCO_17_4108448752-3 32 -0.210777 hybrid +141_2-5 Q0 MARCO_03_1646803683-3 33 -0.219278 hybrid +141_2-5 Q0 KILT_59601191-7 34 -0.219999 hybrid +141_2-5 Q0 KILT_3697391-2 35 -0.222383 hybrid +141_2-5 Q0 MARCO_18_1672128934-17 36 -0.222383 hybrid +141_2-5 Q0 KILT_59601191-8 37 -0.224408 hybrid +141_2-5 Q0 MARCO_04_659378380-18 38 -0.226098 hybrid +141_2-5 Q0 KILT_59601191-10 39 -0.228782 hybrid +141_2-5 Q0 KILT_59601191-9 40 -0.228782 hybrid +141_2-5 Q0 KILT_33906116-3 41 -0.233740 hybrid +141_2-5 Q0 KILT_6062856-1 42 -0.233741 hybrid +141_2-5 Q0 MARCO_43_1071519058-18 43 -0.233741 hybrid +141_2-5 Q0 KILT_25074046-1 44 -0.236811 hybrid +141_2-5 Q0 MARCO_37_1357505775-2 45 -0.238501 hybrid +141_2-5 Q0 MARCO_12_535813263-1 46 -0.241383 hybrid +141_2-5 Q0 MARCO_23_311439160-3 47 -0.243211 hybrid +141_2-5 Q0 KILT_28333656-3 48 -0.244849 hybrid +141_2-5 Q0 MARCO_18_1642035430-13 49 -0.244849 hybrid +141_2-5 Q0 MARCO_55_161005766-1 50 -0.252183 hybrid +141_2-5 Q0 MARCO_10_552175256-1 51 -0.254894 hybrid +141_2-5 Q0 MARCO_04_189083627-4 52 -0.255546 hybrid +141_2-5 Q0 KILT_20829722-1 53 -0.255717 hybrid +141_2-5 Q0 MARCO_16_1237812962-8 54 -0.255717 hybrid +141_2-5 Q0 MARCO_16_1242759636-29 55 -0.255717 hybrid +141_2-5 Q0 MARCO_18_1672128934-19 56 -0.255717 hybrid +141_2-5 Q0 MARCO_34_1359246125-7 57 -0.258119 hybrid +141_2-5 Q0 MARCO_23_337257153-46 58 -0.259388 hybrid +141_2-5 Q0 MARCO_34_1359246125-2 59 -0.259414 hybrid +141_2-5 Q0 MARCO_17_3853295482-59 60 -0.260392 hybrid +141_2-5 Q0 MARCO_27_511392854-6 61 -0.261096 hybrid +141_2-5 Q0 MARCO_37_817176554-3 62 -0.262725 hybrid +141_2-5 Q0 MARCO_42_1408368694-15 63 -0.263120 hybrid +141_2-5 Q0 MARCO_43_49136997-17 64 -0.263566 hybrid +141_2-5 Q0 MARCO_37_817181750-3 65 -0.266508 hybrid +141_2-5 Q0 MARCO_47_1103378026-3 66 -0.266534 hybrid +141_2-5 Q0 MARCO_25_1048678474-1 67 -0.268198 hybrid +141_2-5 Q0 MARCO_18_2601709980-7 68 -0.272882 hybrid +141_2-5 Q0 MARCO_35_165406936-4 69 -0.273113 hybrid +141_2-5 Q0 MARCO_06_1901146297-3 70 -0.273534 hybrid +141_2-5 Q0 MARCO_40_603837177-9 71 -0.275858 hybrid +141_2-5 Q0 KILT_34631031-2 72 -0.275910 hybrid +141_2-5 Q0 MARCO_49_1416114335-1 73 -0.276227 hybrid +141_2-5 Q0 MARCO_54_282826142-43 74 -0.278346 hybrid +141_2-5 Q0 MARCO_41_1466732531-26 75 -0.279744 hybrid +141_2-5 Q0 MARCO_24_667722180-1 76 -0.281134 hybrid +141_2-5 Q0 MARCO_22_1818084186-3 77 -0.284968 hybrid +141_2-5 Q0 MARCO_09_698743771-5 78 -0.285174 hybrid +141_2-5 Q0 KILT_59601191-12 79 -0.288331 hybrid +141_2-5 Q0 KILT_59601191-4 80 -0.288331 hybrid +141_2-5 Q0 KILT_59601191-6 81 -0.288331 hybrid +141_2-5 Q0 MARCO_40_586776943-10 82 -0.291633 hybrid +141_2-5 Q0 MARCO_28_855713246-3 83 -0.294936 hybrid +141_2-5 Q0 KILT_30885435-21 84 -0.295339 hybrid +141_2-5 Q0 MARCO_42_1408368694-4 85 -0.298976 hybrid +141_2-5 Q0 MARCO_41_1311610652-37 86 -0.299139 hybrid +141_2-5 Q0 MARCO_03_1656664215-1 87 -0.299979 hybrid +141_2-5 Q0 MARCO_03_1599865544-1 88 -0.300460 hybrid +141_2-5 Q0 MARCO_58_1131848681-2 89 -0.300666 hybrid +141_2-5 Q0 MARCO_07_1129366527-41 90 -0.301995 hybrid +141_2-5 Q0 MARCO_04_857731883-1 91 -0.303934 hybrid +141_2-5 Q0 MARCO_40_594295013-10 92 -0.304268 hybrid +141_2-5 Q0 MARCO_37_1503718043-5 93 -0.306773 hybrid +141_2-5 Q0 MARCO_17_3853295482-50 94 -0.307219 hybrid +141_2-5 Q0 MARCO_04_1292035644-1 95 -0.309055 hybrid +141_2-5 Q0 MARCO_40_610442706-2 96 -0.309878 hybrid +141_2-5 Q0 MARCO_48_2046575553-4 97 -0.309973 hybrid +141_2-5 Q0 MARCO_00_2027257-71 98 -0.310633 hybrid +141_2-5 Q0 KILT_40883169-3 99 -0.312357 hybrid +141_2-5 Q0 MARCO_52_260107202-4 100 -0.314356 hybrid +141_2-7 Q0 MARCO_52_1529875069-1 1 0.500000 hybrid +141_2-7 Q0 MARCO_00_594936998-15 2 0.485398 hybrid +141_2-7 Q0 MARCO_08_190244827-56 3 0.470725 hybrid +141_2-7 Q0 MARCO_00_594570808-147 4 0.458946 hybrid +141_2-7 Q0 MARCO_40_1675561799-4 5 0.448417 hybrid +141_2-7 Q0 MARCO_14_1199417139-1 6 0.435433 hybrid +141_2-7 Q0 MARCO_03_263166621-1 7 0.414885 hybrid +141_2-7 Q0 MARCO_01_2035501874-5 8 0.413210 hybrid +141_2-7 Q0 MARCO_18_1642035430-7 9 0.385609 hybrid +141_2-7 Q0 MARCO_44_743272561-3 10 0.377960 hybrid +141_2-7 Q0 MARCO_27_1695883043-2 11 0.377095 hybrid +141_2-7 Q0 MARCO_56_920297485-15 12 0.367133 hybrid +141_2-7 Q0 MARCO_19_1512428476-2 13 0.367005 hybrid +141_2-7 Q0 MARCO_59_636003786-1 14 0.354986 hybrid +141_2-7 Q0 MARCO_18_3002209009-69 15 0.352077 hybrid +141_2-7 Q0 KILT_48728-61 16 0.338283 hybrid +141_2-7 Q0 MARCO_06_397037872-2 17 0.335502 hybrid +141_2-7 Q0 MARCO_28_1650353096-10 18 0.328208 hybrid +141_2-7 Q0 MARCO_54_109964311-1 19 0.324916 hybrid +141_2-7 Q0 KILT_47185-7 20 0.319013 hybrid +141_2-7 Q0 MARCO_00_594570808-231 21 0.317934 hybrid +141_2-7 Q0 MARCO_18_1642035430-2 22 0.312939 hybrid +141_2-7 Q0 MARCO_56_83934705-2 23 0.300210 hybrid +141_2-7 Q0 MARCO_37_1604568449-3 24 0.299600 hybrid +141_2-7 Q0 MARCO_44_764275057-1 25 0.292107 hybrid +141_2-7 Q0 MARCO_01_2035501874-1 26 0.279321 hybrid +141_2-7 Q0 MARCO_28_41657031-10 27 0.278115 hybrid +141_2-7 Q0 MARCO_54_345126522-5 28 0.264208 hybrid +141_2-7 Q0 MARCO_18_1642035430-8 29 0.257525 hybrid +141_2-7 Q0 KILT_47185-5 30 0.253651 hybrid +141_2-7 Q0 MARCO_18_1642035430-6 31 0.248102 hybrid +141_2-7 Q0 MARCO_44_764560028-2 32 0.245576 hybrid +141_2-7 Q0 MARCO_46_33251902-3 33 0.239772 hybrid +141_2-7 Q0 MARCO_37_1604568449-2 34 0.231754 hybrid +141_2-7 Q0 KILT_45852-1 35 0.228079 hybrid +141_2-7 Q0 MARCO_42_1337775733-5 36 0.227228 hybrid +141_2-7 Q0 MARCO_00_1701026419-3 37 0.225865 hybrid +141_2-7 Q0 MARCO_02_407019929-2 38 0.223751 hybrid +141_2-7 Q0 MARCO_06_397037872-7 39 0.212285 hybrid +141_2-7 Q0 MARCO_18_1642035430-9 40 0.210681 hybrid +141_2-7 Q0 KILT_21213034-2 41 0.203373 hybrid +141_2-7 Q0 MARCO_52_1529875069-5 42 0.202266 hybrid +141_2-7 Q0 MARCO_27_1202500253-6 43 0.200975 hybrid +141_2-7 Q0 KILT_39206304-1 44 0.199315 hybrid +141_2-7 Q0 MARCO_08_190244827-19 45 0.197299 hybrid +141_2-7 Q0 MARCO_18_1887785741-8 46 0.190900 hybrid +141_2-7 Q0 MARCO_27_1695883043-3 47 0.190786 hybrid +141_2-7 Q0 MARCO_01_994121131-1 48 0.189665 hybrid +141_2-7 Q0 MARCO_11_951426816-6 49 0.188743 hybrid +141_2-7 Q0 KILT_236093-7 50 0.188345 hybrid +141_2-7 Q0 KILT_45852-14 51 0.176709 hybrid +141_2-7 Q0 MARCO_00_594570808-29 52 0.170437 hybrid +141_2-7 Q0 MARCO_25_927576905-22 53 0.169912 hybrid +141_2-7 Q0 KILT_45852-19 54 0.169358 hybrid +141_2-7 Q0 MARCO_01_2035501874-4 55 0.160390 hybrid +141_2-7 Q0 MARCO_15_401680439-3 56 0.160390 hybrid +141_2-7 Q0 MARCO_14_1199417139-3 57 0.157764 hybrid +141_2-7 Q0 MARCO_40_575452941-12 58 0.153763 hybrid +141_2-7 Q0 MARCO_16_3430220161-21 59 0.151634 hybrid +141_2-7 Q0 MARCO_02_407019929-15 60 0.151606 hybrid +141_2-7 Q0 MARCO_16_3430220161-3 61 0.148555 hybrid +141_2-7 Q0 MARCO_11_1278885219-2 62 0.148101 hybrid +141_2-7 Q0 MARCO_27_1801624-6 63 0.147519 hybrid +141_2-7 Q0 MARCO_44_1466399527-2 64 0.147036 hybrid +141_2-7 Q0 MARCO_16_3430220161-2 65 0.140650 hybrid +141_2-7 Q0 MARCO_37_1558416988-6 66 0.139870 hybrid +141_2-7 Q0 MARCO_11_1278885219-11 67 0.136748 hybrid +141_2-7 Q0 KILT_20829722-3 68 0.135911 hybrid +141_2-7 Q0 MARCO_14_467333725-5 69 0.134605 hybrid +141_2-7 Q0 MARCO_14_669844652-3 70 0.131398 hybrid +141_2-7 Q0 MARCO_54_301163892-2 71 0.129638 hybrid +141_2-7 Q0 MARCO_54_393844626-3 72 0.129638 hybrid +141_2-7 Q0 MARCO_51_1474738036-2 73 0.126900 hybrid +141_2-7 Q0 MARCO_02_407019929-4 74 0.126900 hybrid +141_2-7 Q0 KILT_21940799-23 75 0.124885 hybrid +141_2-7 Q0 MARCO_51_917108008-1 76 0.119038 hybrid +141_2-7 Q0 MARCO_12_1166874951-11 77 0.116228 hybrid +141_2-7 Q0 MARCO_47_1205866816-1 78 0.113972 hybrid +141_2-7 Q0 MARCO_46_1389837794-1 79 0.113319 hybrid +141_2-7 Q0 MARCO_57_286606536-5 80 0.110041 hybrid +141_2-7 Q0 KILT_47185-10 81 0.098561 hybrid +141_2-7 Q0 MARCO_16_3430220161-8 82 0.096716 hybrid +141_2-7 Q0 MARCO_16_3998233483-4 83 0.092133 hybrid +141_2-7 Q0 MARCO_04_1088668455-1 84 0.091139 hybrid +141_2-7 Q0 MARCO_18_1904461076-9 85 0.090302 hybrid +141_2-7 Q0 MARCO_44_695883972-3 86 0.087932 hybrid +141_2-7 Q0 MARCO_26_1087345031-2 87 0.086343 hybrid +141_2-7 Q0 MARCO_00_594570808-18 88 0.079801 hybrid +141_2-7 Q0 MARCO_00_594570808-200 89 0.079631 hybrid +141_2-7 Q0 MARCO_40_1227089389-6 90 0.078268 hybrid +141_2-7 Q0 MARCO_18_2707092972-9 91 0.074905 hybrid +141_2-7 Q0 MARCO_44_638364475-1 92 0.073983 hybrid +141_2-7 Q0 KILT_19360175-4 93 0.068222 hybrid +141_2-7 Q0 MARCO_00_594570808-145 94 0.066788 hybrid +141_2-7 Q0 MARCO_50_61431273-4 95 0.066703 hybrid +141_2-7 Q0 MARCO_50_1890744981-50 96 0.055379 hybrid +141_2-7 Q0 MARCO_14_1547330682-8 97 0.051519 hybrid +141_2-7 Q0 KILT_20829722-1 98 0.050072 hybrid +141_2-7 Q0 MARCO_32_1249808698-5 99 0.049362 hybrid +141_2-7 Q0 KILT_20829722-2 100 0.047688 hybrid +141_2-9 Q0 MARCO_25_338337063-5 1 0.500000 hybrid +141_2-9 Q0 MARCO_29_1105653731-18 2 0.343151 hybrid +141_2-9 Q0 MARCO_29_884588221-7 3 0.337828 hybrid +141_2-9 Q0 MARCO_30_1574895595-19 4 0.334704 hybrid +141_2-9 Q0 MARCO_30_1576788415-25 5 0.292742 hybrid +141_2-9 Q0 MARCO_30_864372818-12 6 0.281196 hybrid +141_2-9 Q0 MARCO_30_1575935551-11 7 0.263427 hybrid +141_2-9 Q0 MARCO_49_388703262-15 8 0.243034 hybrid +141_2-9 Q0 MARCO_37_197720626-8 9 0.242084 hybrid +141_2-9 Q0 MARCO_36_717767941-10 10 0.210494 hybrid +141_2-9 Q0 MARCO_29_525950796-8 11 0.193375 hybrid +141_2-9 Q0 MARCO_44_501336810-15 12 0.189701 hybrid +141_2-9 Q0 MARCO_23_1043515404-5 13 0.188277 hybrid +141_2-9 Q0 MARCO_30_1577264631-19 14 0.170682 hybrid +141_2-9 Q0 MARCO_49_389308204-7 15 0.169957 hybrid +141_2-9 Q0 MARCO_45_1377877934-8 16 0.168758 hybrid +141_2-9 Q0 MARCO_22_834739325-3 17 0.158436 hybrid +141_2-9 Q0 MARCO_34_1098659076-12 18 0.138318 hybrid +141_2-9 Q0 MARCO_19_2182678434-3 19 0.136418 hybrid +141_2-9 Q0 MARCO_30_1576287472-15 20 0.125597 hybrid +141_2-9 Q0 MARCO_18_1445975768-36 21 0.120923 hybrid +141_2-9 Q0 MARCO_30_1575229398-10 22 0.118899 hybrid +141_2-9 Q0 MARCO_50_2869009780-10 23 0.118549 hybrid +141_2-9 Q0 MARCO_22_1208046421-3 24 0.106753 hybrid +141_2-9 Q0 MARCO_49_1641184916-6 25 0.106628 hybrid +141_2-9 Q0 MARCO_03_232666044-14 26 0.101130 hybrid +141_2-9 Q0 MARCO_30_1577716781-15 27 0.097381 hybrid +141_2-9 Q0 MARCO_13_423746144-22 28 0.090183 hybrid +141_2-9 Q0 MARCO_25_632969774-2 29 0.081636 hybrid +141_2-9 Q0 MARCO_09_1305802808-7 30 0.072064 hybrid +141_2-9 Q0 MARCO_51_947060689-4 31 0.063417 hybrid +141_2-9 Q0 MARCO_30_1577264631-17 32 0.059043 hybrid +141_2-9 Q0 KILT_8029370-6 33 0.056419 hybrid +141_2-9 Q0 MARCO_57_1442859831-11 34 0.046123 hybrid +141_2-9 Q0 MARCO_30_1574540193-17 35 0.045273 hybrid +141_2-9 Q0 MARCO_37_1137052722-9 36 0.042199 hybrid +141_2-9 Q0 MARCO_26_265932816-7 37 0.039875 hybrid +141_2-9 Q0 MARCO_33_1327665276-1 38 0.038675 hybrid +141_2-9 Q0 MARCO_17_4733837249-27 39 0.030278 hybrid +141_2-9 Q0 MARCO_51_382332076-15 40 0.027979 hybrid +141_2-9 Q0 MARCO_13_383083244-6 41 0.025829 hybrid +141_2-9 Q0 MARCO_20_277295920-10 42 0.011959 hybrid +141_2-9 Q0 MARCO_44_392274636-24 43 0.010984 hybrid +141_2-9 Q0 MARCO_37_1343280262-12 44 0.010184 hybrid +141_2-9 Q0 MARCO_12_103069260-7 45 0.005936 hybrid +141_2-9 Q0 MARCO_20_1392776742-27 46 0.004136 hybrid +141_2-9 Q0 MARCO_40_1437869446-103 47 0.001337 hybrid +141_2-9 Q0 MARCO_14_567360940-5 48 -0.004886 hybrid +141_2-9 Q0 MARCO_30_1575031953-15 49 -0.013208 hybrid +141_2-9 Q0 MARCO_30_1576107406-4 50 -0.015182 hybrid +141_2-9 Q0 MARCO_00_1020250294-13 51 -0.016507 hybrid +141_2-9 Q0 MARCO_14_732065008-1 52 -0.017657 hybrid +141_2-9 Q0 MARCO_37_893104142-11 53 -0.020481 hybrid +141_2-9 Q0 MARCO_38_1431244752-4 54 -0.023680 hybrid +141_2-9 Q0 MARCO_23_1350418648-1 55 -0.034826 hybrid +141_2-9 Q0 MARCO_30_1576643426-10 56 -0.034951 hybrid +141_2-9 Q0 MARCO_07_807092923-17 57 -0.040974 hybrid +141_2-9 Q0 MARCO_00_1300716625-20 58 -0.043348 hybrid +141_2-9 Q0 MARCO_23_1044573944-1 59 -0.043573 hybrid +141_2-9 Q0 MARCO_44_1695676422-5 60 -0.045448 hybrid +141_2-9 Q0 MARCO_52_1236177125-7 61 -0.047322 hybrid +141_2-9 Q0 MARCO_24_1023494604-5 62 -0.047347 hybrid +141_2-9 Q0 MARCO_30_1576481671-17 63 -0.048297 hybrid +141_2-9 Q0 MARCO_23_444314954-5 64 -0.050146 hybrid +141_2-9 Q0 MARCO_09_452086783-4 65 -0.052720 hybrid +141_2-9 Q0 MARCO_48_1813421288-11 66 -0.059518 hybrid +141_2-9 Q0 MARCO_30_938233041-8 67 -0.060843 hybrid +141_2-9 Q0 MARCO_56_298437938-5 68 -0.063167 hybrid +141_2-9 Q0 MARCO_52_1064972339-19 69 -0.063517 hybrid +141_2-9 Q0 MARCO_21_1327671780-3 70 -0.068490 hybrid +141_2-9 Q0 MARCO_21_9381384-2 71 -0.069340 hybrid +141_2-9 Q0 MARCO_09_1305802808-8 72 -0.069415 hybrid +141_2-9 Q0 MARCO_00_1028819086-4 73 -0.070439 hybrid +141_2-9 Q0 MARCO_03_475518077-4 74 -0.071539 hybrid +141_2-9 Q0 MARCO_57_5191895-4 75 -0.071814 hybrid +141_2-9 Q0 MARCO_02_407019929-7 76 -0.071939 hybrid +141_2-9 Q0 MARCO_30_1577881855-12 77 -0.072489 hybrid +141_2-9 Q0 MARCO_22_201198580-5 78 -0.072564 hybrid +141_2-9 Q0 MARCO_14_1070378818-3 79 -0.072639 hybrid +141_2-9 Q0 MARCO_14_1545463150-21 80 -0.074438 hybrid +141_2-9 Q0 MARCO_32_1837544642-5 81 -0.080861 hybrid +141_2-9 Q0 MARCO_25_317201377-9 82 -0.082086 hybrid +141_2-9 Q0 MARCO_52_1326978515-7 83 -0.082261 hybrid +141_2-9 Q0 MARCO_34_891600530-4 84 -0.082611 hybrid +141_2-9 Q0 MARCO_45_1530827633-4 85 -0.082885 hybrid +141_2-9 Q0 MARCO_50_2040153683-31 86 -0.083210 hybrid +141_2-9 Q0 KILT_6054681-7 87 -0.084535 hybrid +141_2-9 Q0 MARCO_33_260707017-4 88 -0.085285 hybrid +141_2-9 Q0 MARCO_42_1750907348-6 89 -0.089134 hybrid +141_2-9 Q0 MARCO_42_1762297575-17 90 -0.089134 hybrid +141_2-9 Q0 MARCO_20_1202794568-6 91 -0.091483 hybrid +141_2-9 Q0 MARCO_30_392524422-5 92 -0.093457 hybrid +141_2-9 Q0 MARCO_04_835571061-15 93 -0.093457 hybrid +141_2-9 Q0 MARCO_26_860216823-5 94 -0.102429 hybrid +141_2-9 Q0 MARCO_28_1272866936-5 95 -0.105203 hybrid +141_2-9 Q0 MARCO_57_928228352-6 96 -0.105653 hybrid +141_2-9 Q0 MARCO_49_1639133666-6 97 -0.108027 hybrid +141_2-9 Q0 MARCO_33_1332886129-8 98 -0.108077 hybrid +141_2-9 Q0 MARCO_33_1329295446-10 99 -0.110277 hybrid +141_2-9 Q0 MARCO_30_1577040656-8 100 -0.111776 hybrid +142_1-1 Q0 MARCO_01_704783737-85 1 0.500000 hybrid +142_1-1 Q0 MARCO_56_1849852997-2 2 0.465751 hybrid +142_1-1 Q0 MARCO_33_1122565344-2 3 0.353678 hybrid +142_1-1 Q0 MARCO_54_1803514151-2 4 0.353678 hybrid +142_1-1 Q0 KILT_113746-15 5 0.345183 hybrid +142_1-1 Q0 MARCO_33_1122565344-1 6 0.328997 hybrid +142_1-1 Q0 MARCO_54_1821438646-1 7 0.303511 hybrid +142_1-1 Q0 MARCO_54_1803514151-1 8 0.278159 hybrid +142_1-1 Q0 MARCO_20_1075471306-3 9 0.265510 hybrid +142_1-1 Q0 MARCO_01_704783737-3 10 0.252244 hybrid +142_1-1 Q0 MARCO_00_592589246-44 11 0.246376 hybrid +142_1-1 Q0 MARCO_27_1641185764-6 12 0.246375 hybrid +142_1-1 Q0 MARCO_06_461503960-1 13 0.237987 hybrid +142_1-1 Q0 MARCO_50_1235890157-1 14 0.237344 hybrid +142_1-1 Q0 MARCO_04_562061917-2 15 0.231341 hybrid +142_1-1 Q0 MARCO_20_1075471306-1 16 0.218933 hybrid +142_1-1 Q0 MARCO_27_590521239-1 17 0.207222 hybrid +142_1-1 Q0 MARCO_25_297460066-2 18 0.193528 hybrid +142_1-1 Q0 MARCO_06_461503960-5 19 0.166702 hybrid +142_1-1 Q0 MARCO_08_286761210-4 20 0.157966 hybrid +142_1-1 Q0 MARCO_40_919328460-1 21 0.133794 hybrid +142_1-1 Q0 MARCO_02_740635833-11 22 0.132561 hybrid +142_1-1 Q0 MARCO_44_1773108811-4 23 0.130095 hybrid +142_1-1 Q0 MARCO_48_836448592-5 24 0.117661 hybrid +142_1-1 Q0 MARCO_25_1069394213-80 25 0.107021 hybrid +142_1-1 Q0 MARCO_12_1321971001-6 26 0.103028 hybrid +142_1-1 Q0 MARCO_01_704783737-46 27 0.102653 hybrid +142_1-1 Q0 MARCO_56_1849852997-9 28 0.100268 hybrid +142_1-1 Q0 MARCO_20_337149396-2 29 0.091960 hybrid +142_1-1 Q0 MARCO_28_984965689-5 30 0.086815 hybrid +142_1-1 Q0 MARCO_12_1120414121-1 31 0.080651 hybrid +142_1-1 Q0 MARCO_50_142834401-105 32 0.051494 hybrid +142_1-1 Q0 MARCO_29_1447151846-1 33 0.049457 hybrid +142_1-1 Q0 MARCO_40_930823638-11 34 0.049324 hybrid +142_1-1 Q0 MARCO_41_1523877029-23 35 0.042248 hybrid +142_1-1 Q0 MARCO_42_1069464691-5 36 0.036460 hybrid +142_1-1 Q0 MARCO_05_522107162-209 37 0.029707 hybrid +142_1-1 Q0 KILT_59975617-12 38 0.024749 hybrid +142_1-1 Q0 MARCO_25_1069394213-26 39 0.023248 hybrid +142_1-1 Q0 MARCO_44_1215854994-1 40 0.020783 hybrid +142_1-1 Q0 MARCO_28_1091934754-1 41 0.018933 hybrid +142_1-1 Q0 MARCO_39_1259607096-58 42 0.010385 hybrid +142_1-1 Q0 MARCO_03_1587404707-3 43 0.005159 hybrid +142_1-1 Q0 MARCO_48_1732666647-2 44 0.000255 hybrid +142_1-1 Q0 MARCO_42_50318708-21 45 0.000014 hybrid +142_1-1 Q0 MARCO_08_624816258-16 46 -0.008937 hybrid +142_1-1 Q0 MARCO_50_831962007-1 47 -0.014645 hybrid +142_1-1 Q0 MARCO_03_1702556126-2 48 -0.020916 hybrid +142_1-1 Q0 MARCO_41_1122037639-7 49 -0.022310 hybrid +142_1-1 Q0 MARCO_01_704783737-31 50 -0.042248 hybrid +142_1-1 Q0 MARCO_06_221404070-4 51 -0.042543 hybrid +142_1-1 Q0 MARCO_50_1271011813-29 52 -0.043347 hybrid +142_1-1 Q0 MARCO_41_385382121-27 53 -0.043669 hybrid +142_1-1 Q0 MARCO_28_615742594-3 54 -0.047018 hybrid +142_1-1 Q0 MARCO_29_1547779821-3 55 -0.052941 hybrid +142_1-1 Q0 MARCO_25_1069394213-36 56 -0.054495 hybrid +142_1-1 Q0 MARCO_04_562061917-12 57 -0.054603 hybrid +142_1-1 Q0 MARCO_37_854781414-1 58 -0.056827 hybrid +142_1-1 Q0 MARCO_50_919254570-6 59 -0.060418 hybrid +142_1-1 Q0 MARCO_20_378677727-1 60 -0.064197 hybrid +142_1-1 Q0 MARCO_20_13432250-58 61 -0.065697 hybrid +142_1-1 Q0 MARCO_42_1069464691-3 62 -0.065698 hybrid +142_1-1 Q0 MARCO_26_767392254-17 63 -0.075935 hybrid +142_1-1 Q0 MARCO_52_1576671550-19 64 -0.077355 hybrid +142_1-1 Q0 MARCO_52_1730371404-2 65 -0.079820 hybrid +142_1-1 Q0 MARCO_12_1156845077-1 66 -0.082822 hybrid +142_1-1 Q0 MARCO_03_583636368-78 67 -0.089066 hybrid +142_1-1 Q0 MARCO_01_704783737-4 68 -0.089093 hybrid +142_1-1 Q0 MARCO_50_732355243-2 69 -0.092898 hybrid +142_1-1 Q0 MARCO_08_684624134-2 70 -0.093220 hybrid +142_1-1 Q0 MARCO_25_1069394213-32 71 -0.093916 hybrid +142_1-1 Q0 MARCO_20_1733261318-171 72 -0.096221 hybrid +142_1-1 Q0 MARCO_36_378876542-5 73 -0.096570 hybrid +142_1-1 Q0 MARCO_57_1444818704-2 74 -0.097722 hybrid +142_1-1 Q0 MARCO_36_256859582-1 75 -0.098338 hybrid +142_1-1 Q0 MARCO_50_2317486971-19 76 -0.100054 hybrid +142_1-1 Q0 MARCO_29_1447088347-1 77 -0.102948 hybrid +142_1-1 Q0 MARCO_03_721593473-3 78 -0.103591 hybrid +142_1-1 Q0 MARCO_03_1587404707-2 79 -0.109299 hybrid +142_1-1 Q0 MARCO_36_1304988780-8 80 -0.109379 hybrid +142_1-1 Q0 MARCO_07_367851817-7 81 -0.115784 hybrid +142_1-1 Q0 MARCO_20_183484976-5 82 -0.119483 hybrid +142_1-1 Q0 MARCO_13_249202343-2 83 -0.123851 hybrid +142_1-1 Q0 MARCO_41_1117115865-64 84 -0.124119 hybrid +142_1-1 Q0 MARCO_34_1114107766-3 85 -0.125780 hybrid +142_1-1 Q0 MARCO_55_462165312-3 86 -0.127871 hybrid +142_1-1 Q0 MARCO_07_820254742-1 87 -0.130390 hybrid +142_1-1 Q0 MARCO_45_1440789593-6 88 -0.131569 hybrid +142_1-1 Q0 MARCO_19_1555784506-33 89 -0.132078 hybrid +142_1-1 Q0 MARCO_09_727630593-4 90 -0.135187 hybrid +142_1-1 Q0 MARCO_39_1449925078-16 91 -0.135374 hybrid +142_1-1 Q0 MARCO_50_1279567642-36 92 -0.138617 hybrid +142_1-1 Q0 MARCO_50_1628435472-17 93 -0.139073 hybrid +142_1-1 Q0 MARCO_56_520152891-2 94 -0.140037 hybrid +142_1-1 Q0 MARCO_20_1075471306-2 95 -0.141029 hybrid +142_1-1 Q0 MARCO_41_1040863455-7 96 -0.146228 hybrid +142_1-1 Q0 MARCO_50_2087765541-53 97 -0.146255 hybrid +142_1-1 Q0 MARCO_47_383465507-32 98 -0.148077 hybrid +142_1-1 Q0 MARCO_10_1330311829-149 99 -0.149095 hybrid +142_1-1 Q0 MARCO_19_1931473931-1 100 -0.151373 hybrid +142_1-3 Q0 MARCO_58_1512159116-1 1 0.500000 hybrid +142_1-3 Q0 MARCO_14_640274414-1 2 0.289811 hybrid +142_1-3 Q0 MARCO_10_1509357985-1 3 0.283609 hybrid +142_1-3 Q0 MARCO_16_3046749093-1 4 0.279252 hybrid +142_1-3 Q0 MARCO_55_1226469146-1 5 0.238920 hybrid +142_1-3 Q0 MARCO_00_1016195658-1 6 0.223249 hybrid +142_1-3 Q0 MARCO_53_848365201-1 7 0.222437 hybrid +142_1-3 Q0 MARCO_47_1604104921-3 8 0.221680 hybrid +142_1-3 Q0 MARCO_04_163634112-2 9 0.217194 hybrid +142_1-3 Q0 MARCO_16_153757223-1 10 0.215072 hybrid +142_1-3 Q0 MARCO_47_1604104921-2 11 0.209497 hybrid +142_1-3 Q0 MARCO_52_1576671550-21 12 0.196595 hybrid +142_1-3 Q0 MARCO_53_848365201-3 13 0.149931 hybrid +142_1-3 Q0 MARCO_10_803200487-1 14 0.149746 hybrid +142_1-3 Q0 MARCO_04_1066234969-1 15 0.132247 hybrid +142_1-3 Q0 KILT_4929220-1 16 0.111906 hybrid +142_1-3 Q0 MARCO_32_932733367-1 17 0.100572 hybrid +142_1-3 Q0 MARCO_09_1875219515-1 18 0.100535 hybrid +142_1-3 Q0 MARCO_20_1201793411-1 19 0.089848 hybrid +142_1-3 Q0 KILT_2301467-1 20 0.080212 hybrid +142_1-3 Q0 MARCO_58_1481052929-4 21 0.071647 hybrid +142_1-3 Q0 MARCO_18_628220128-1 22 0.063489 hybrid +142_1-3 Q0 MARCO_30_1152610115-1 23 0.060628 hybrid +142_1-3 Q0 KILT_905798-1 24 0.060572 hybrid +142_1-3 Q0 MARCO_29_1447180055-1 25 0.060129 hybrid +142_1-3 Q0 MARCO_58_1495240820-1 26 0.059040 hybrid +142_1-3 Q0 MARCO_06_1095318-193 27 0.057176 hybrid +142_1-3 Q0 MARCO_24_1495214326-1 28 0.054444 hybrid +142_1-3 Q0 MARCO_55_1696718216-2 29 0.046027 hybrid +142_1-3 Q0 MARCO_31_1448358963-1 30 0.040138 hybrid +142_1-3 Q0 MARCO_16_3046749093-108 31 0.039862 hybrid +142_1-3 Q0 MARCO_13_917476032-8 32 0.033733 hybrid +142_1-3 Q0 MARCO_22_188443098-11 33 0.033420 hybrid +142_1-3 Q0 MARCO_54_462511606-1 34 0.032257 hybrid +142_1-3 Q0 MARCO_54_753999880-73 35 0.032035 hybrid +142_1-3 Q0 MARCO_07_1066352140-1 36 0.030005 hybrid +142_1-3 Q0 MARCO_58_1520336455-4 37 0.025316 hybrid +142_1-3 Q0 MARCO_27_589212775-1 38 0.025132 hybrid +142_1-3 Q0 MARCO_27_1334580338-1 39 0.015976 hybrid +142_1-3 Q0 KILT_255932-1 40 0.014333 hybrid +142_1-3 Q0 KILT_31001363-1 41 0.011491 hybrid +142_1-3 Q0 MARCO_52_1576671550-17 42 0.003092 hybrid +142_1-3 Q0 MARCO_34_1754594337-1 43 -0.000877 hybrid +142_1-3 Q0 KILT_744749-1 44 -0.002630 hybrid +142_1-3 Q0 MARCO_40_1750131313-2 45 -0.002963 hybrid +142_1-3 Q0 MARCO_16_3046944575-1 46 -0.006008 hybrid +142_1-3 Q0 MARCO_17_4305908008-3 47 -0.008629 hybrid +142_1-3 Q0 MARCO_18_1847347101-1 48 -0.014481 hybrid +142_1-3 Q0 MARCO_52_1576671550-15 49 -0.014850 hybrid +142_1-3 Q0 KILT_28952662-1 50 -0.016640 hybrid +142_1-3 Q0 MARCO_36_1789358836-1 51 -0.016917 hybrid +142_1-3 Q0 MARCO_03_975951086-1 52 -0.019095 hybrid +142_1-3 Q0 MARCO_58_1506642595-1 53 -0.019797 hybrid +142_1-3 Q0 MARCO_29_1447276115-1 54 -0.023156 hybrid +142_1-3 Q0 MARCO_36_259021788-1 55 -0.023728 hybrid +142_1-3 Q0 KILT_2381508-1 56 -0.024485 hybrid +142_1-3 Q0 KILT_2596357-1 57 -0.024652 hybrid +142_1-3 Q0 MARCO_33_812761022-4 58 -0.024836 hybrid +142_1-3 Q0 MARCO_33_812761022-6 59 -0.024836 hybrid +142_1-3 Q0 MARCO_37_393599859-1 60 -0.025999 hybrid +142_1-3 Q0 KILT_11710533-1 61 -0.027143 hybrid +142_1-3 Q0 MARCO_45_5519406-1 62 -0.027549 hybrid +142_1-3 Q0 KILT_2960024-1 63 -0.027992 hybrid +142_1-3 Q0 KILT_18966130-1 64 -0.028712 hybrid +142_1-3 Q0 MARCO_07_271456782-5 65 -0.029414 hybrid +142_1-3 Q0 MARCO_29_789772576-15 66 -0.029414 hybrid +142_1-3 Q0 MARCO_16_3046944575-3 67 -0.030632 hybrid +142_1-3 Q0 MARCO_17_3315029226-1 68 -0.031370 hybrid +142_1-3 Q0 MARCO_11_94282642-4 69 -0.031776 hybrid +142_1-3 Q0 MARCO_39_573556216-1 70 -0.032644 hybrid +142_1-3 Q0 MARCO_09_1774525647-1 71 -0.041006 hybrid +142_1-3 Q0 MARCO_09_1774525647-3 72 -0.041006 hybrid +142_1-3 Q0 MARCO_34_1754599641-1 73 -0.041320 hybrid +142_1-3 Q0 KILT_38911237-1 74 -0.041818 hybrid +142_1-3 Q0 MARCO_16_2205575292-1 75 -0.042058 hybrid +142_1-3 Q0 MARCO_18_1224363045-1 76 -0.047614 hybrid +142_1-3 Q0 MARCO_55_1085477970-6 77 -0.049054 hybrid +142_1-3 Q0 MARCO_05_1056114070-2 78 -0.050346 hybrid +142_1-3 Q0 MARCO_09_727737151-3 79 -0.052303 hybrid +142_1-3 Q0 MARCO_17_4305908008-1 80 -0.053576 hybrid +142_1-3 Q0 MARCO_29_1447088347-2 81 -0.054831 hybrid +142_1-3 Q0 KILT_23116211-1 82 -0.059095 hybrid +142_1-3 Q0 MARCO_00_418209982-3 83 -0.060240 hybrid +142_1-3 Q0 KILT_26355497-1 84 -0.067974 hybrid +142_1-3 Q0 MARCO_43_782790719-2 85 -0.070687 hybrid +142_1-3 Q0 MARCO_03_849955296-2 86 -0.071555 hybrid +142_1-3 Q0 KILT_592794-1 87 -0.073272 hybrid +142_1-3 Q0 MARCO_33_812761022-10 88 -0.073419 hybrid +142_1-3 Q0 MARCO_25_297460066-18 89 -0.073420 hybrid +142_1-3 Q0 MARCO_33_812761022-8 90 -0.073420 hybrid +142_1-3 Q0 MARCO_05_721982118-2 91 -0.076428 hybrid +142_1-3 Q0 MARCO_57_223283149-1 92 -0.076687 hybrid +142_1-3 Q0 MARCO_45_436667831-1 93 -0.076760 hybrid +142_1-3 Q0 MARCO_51_20661379-1 94 -0.078385 hybrid +142_1-3 Q0 MARCO_47_1602505698-8 95 -0.079381 hybrid +142_1-3 Q0 KILT_7700792-1 96 -0.079806 hybrid +142_1-3 Q0 MARCO_48_1542395416-10 97 -0.081301 hybrid +142_1-3 Q0 MARCO_06_1095318-192 98 -0.081984 hybrid +142_1-3 Q0 MARCO_09_727737151-2 99 -0.085934 hybrid +142_1-3 Q0 KILT_4704680-1 100 -0.087097 hybrid +142_1-5 Q0 MARCO_56_1849852997-1 1 0.500000 hybrid +142_1-5 Q0 MARCO_53_1065767658-8 2 0.276542 hybrid +142_1-5 Q0 MARCO_13_1435729398-6 3 0.267204 hybrid +142_1-5 Q0 MARCO_41_2107613758-1 4 0.256800 hybrid +142_1-5 Q0 MARCO_53_1065767658-13 5 0.256393 hybrid +142_1-5 Q0 MARCO_07_972175447-1 6 0.235353 hybrid +142_1-5 Q0 MARCO_56_1849852997-2 7 0.187752 hybrid +142_1-5 Q0 MARCO_41_1014954356-23 8 0.180661 hybrid +142_1-5 Q0 MARCO_55_1704796583-1 9 0.145672 hybrid +142_1-5 Q0 MARCO_20_1062970047-3 10 0.135636 hybrid +142_1-5 Q0 MARCO_17_4256986552-2 11 0.134745 hybrid +142_1-5 Q0 MARCO_50_781658274-38 12 0.125523 hybrid +142_1-5 Q0 MARCO_53_1065767658-6 13 0.114616 hybrid +142_1-5 Q0 MARCO_55_1654783944-7 14 0.110218 hybrid +142_1-5 Q0 MARCO_53_1065767658-9 15 0.106440 hybrid +142_1-5 Q0 KILT_11153771-8 16 0.092820 hybrid +142_1-5 Q0 MARCO_25_297460066-2 17 0.091851 hybrid +142_1-5 Q0 MARCO_37_854781414-1 18 0.088054 hybrid +142_1-5 Q0 KILT_5335433-3 19 0.062403 hybrid +142_1-5 Q0 MARCO_45_1280788304-3 20 0.060369 hybrid +142_1-5 Q0 MARCO_56_1849852997-3 21 0.045955 hybrid +142_1-5 Q0 KILT_60107725-7 22 0.042235 hybrid +142_1-5 Q0 KILT_255919-44 23 0.037295 hybrid +142_1-5 Q0 MARCO_25_937745370-10 24 0.030010 hybrid +142_1-5 Q0 MARCO_37_854765368-1 25 0.028731 hybrid +142_1-5 Q0 MARCO_53_1065767658-14 26 0.025864 hybrid +142_1-5 Q0 MARCO_29_1447232874-3 27 0.021621 hybrid +142_1-5 Q0 MARCO_58_1748897174-1 28 0.016894 hybrid +142_1-5 Q0 KILT_60107725-8 29 0.014550 hybrid +142_1-5 Q0 MARCO_53_1065767658-11 30 0.014182 hybrid +142_1-5 Q0 MARCO_30_426878678-18 31 0.010539 hybrid +142_1-5 Q0 MARCO_55_1684040125-1 32 0.006219 hybrid +142_1-5 Q0 MARCO_43_782020638-3 33 -0.005328 hybrid +142_1-5 Q0 MARCO_35_131732716-1 34 -0.008757 hybrid +142_1-5 Q0 MARCO_45_283374648-3 35 -0.012942 hybrid +142_1-5 Q0 KILT_48936063-3 36 -0.014589 hybrid +142_1-5 Q0 MARCO_10_1509357985-1 37 -0.015964 hybrid +142_1-5 Q0 KILT_5192308-4 38 -0.016332 hybrid +142_1-5 Q0 MARCO_17_761939039-6 39 -0.016332 hybrid +142_1-5 Q0 MARCO_51_1413203830-7 40 -0.016352 hybrid +142_1-5 Q0 MARCO_28_853338048-35 41 -0.020807 hybrid +142_1-5 Q0 MARCO_09_1875219515-1 42 -0.023965 hybrid +142_1-5 Q0 MARCO_39_1449992234-6 43 -0.025477 hybrid +142_1-5 Q0 MARCO_03_849955296-57 44 -0.026658 hybrid +142_1-5 Q0 KILT_45457060-1 45 -0.026716 hybrid +142_1-5 Q0 MARCO_39_345183342-1 46 -0.026852 hybrid +142_1-5 Q0 MARCO_24_1494711467-11 47 -0.029003 hybrid +142_1-5 Q0 MARCO_54_462511606-10 48 -0.037101 hybrid +142_1-5 Q0 MARCO_41_1807787932-11 49 -0.042719 hybrid +142_1-5 Q0 MARCO_50_142569101-50 50 -0.045412 hybrid +142_1-5 Q0 MARCO_40_920484028-11 51 -0.045838 hybrid +142_1-5 Q0 MARCO_50_2496722075-18 52 -0.047737 hybrid +142_1-5 Q0 MARCO_51_22133322-13 53 -0.049636 hybrid +142_1-5 Q0 MARCO_11_1448564973-3 54 -0.053123 hybrid +142_1-5 Q0 KILT_25455429-1 55 -0.053879 hybrid +142_1-5 Q0 MARCO_59_381730934-9 56 -0.055603 hybrid +142_1-5 Q0 KILT_34244940-4 57 -0.059361 hybrid +142_1-5 Q0 MARCO_50_2263570338-18 58 -0.061260 hybrid +142_1-5 Q0 MARCO_56_1849852997-10 59 -0.062422 hybrid +142_1-5 Q0 MARCO_54_457710829-7 60 -0.062965 hybrid +142_1-5 Q0 MARCO_55_1409415917-12 61 -0.065561 hybrid +142_1-5 Q0 MARCO_11_1448564973-2 62 -0.067111 hybrid +142_1-5 Q0 KILT_255919-41 63 -0.070114 hybrid +142_1-5 Q0 MARCO_34_1608756851-6 64 -0.070211 hybrid +142_1-5 Q0 MARCO_50_2180596259-20 65 -0.071083 hybrid +142_1-5 Q0 KILT_6394375-17 66 -0.077050 hybrid +142_1-5 Q0 MARCO_09_1875219515-7 67 -0.077050 hybrid +142_1-5 Q0 MARCO_55_1226469146-3 68 -0.077864 hybrid +142_1-5 Q0 KILT_59104479-5 69 -0.077864 hybrid +142_1-5 Q0 KILT_13350007-6 70 -0.079336 hybrid +142_1-5 Q0 MARCO_54_462511606-4 71 -0.086194 hybrid +142_1-5 Q0 KILT_51247321-19 72 -0.087589 hybrid +142_1-5 Q0 KILT_5335433-2 73 -0.089255 hybrid +142_1-5 Q0 MARCO_27_1641181660-1 74 -0.090786 hybrid +142_1-5 Q0 MARCO_25_298148041-32 75 -0.091018 hybrid +142_1-5 Q0 MARCO_26_1687706228-6 76 -0.091328 hybrid +142_1-5 Q0 KILT_15669531-10 77 -0.091386 hybrid +142_1-5 Q0 KILT_26580625-1 78 -0.091522 hybrid +142_1-5 Q0 KILT_23640379-2 79 -0.097353 hybrid +142_1-5 Q0 MARCO_13_917476032-8 80 -0.097354 hybrid +142_1-5 Q0 KILT_15368304-5 81 -0.097528 hybrid +142_1-5 Q0 KILT_42143713-1 82 -0.099175 hybrid +142_1-5 Q0 MARCO_05_1464284051-2 83 -0.099291 hybrid +142_1-5 Q0 MARCO_01_704783737-75 84 -0.102642 hybrid +142_1-5 Q0 MARCO_30_1052365471-3 85 -0.105452 hybrid +142_1-5 Q0 MARCO_55_1089635597-9 86 -0.109268 hybrid +142_1-5 Q0 MARCO_35_37197736-1 87 -0.117773 hybrid +142_1-5 Q0 KILT_48911104-6 88 -0.118452 hybrid +142_1-5 Q0 KILT_6275053-1 89 -0.122481 hybrid +142_1-5 Q0 MARCO_44_268940388-6 90 -0.124206 hybrid +142_1-5 Q0 MARCO_10_120187103-9 91 -0.127209 hybrid +142_1-5 Q0 MARCO_50_2004624263-14 92 -0.128507 hybrid +142_1-5 Q0 MARCO_01_239388571-10 93 -0.128894 hybrid +142_1-5 Q0 MARCO_03_1387185114-1 94 -0.129611 hybrid +142_1-5 Q0 MARCO_30_2012950219-4 95 -0.133350 hybrid +142_1-5 Q0 MARCO_36_1010598455-8 96 -0.136411 hybrid +142_1-5 Q0 KILT_56452499-6 97 -0.138523 hybrid +142_1-5 Q0 KILT_19290290-2 98 -0.139627 hybrid +142_1-5 Q0 KILT_60339768-7 99 -0.139627 hybrid +142_1-5 Q0 KILT_2597700-10 100 -0.141293 hybrid +142_2-2 Q0 MARCO_30_1052365471-1 1 0.500000 hybrid +142_2-2 Q0 KILT_17269759-1 2 0.268757 hybrid +142_2-2 Q0 MARCO_37_86008475-6 3 0.247087 hybrid +142_2-2 Q0 MARCO_39_1259607096-1 4 0.220877 hybrid +142_2-2 Q0 MARCO_17_761939039-10 5 0.182876 hybrid +142_2-2 Q0 MARCO_30_213814120-1 6 0.154197 hybrid +142_2-2 Q0 MARCO_05_1958159595-169 7 0.149275 hybrid +142_2-2 Q0 MARCO_50_2221062872-10 8 0.146857 hybrid +142_2-2 Q0 MARCO_25_297460066-2 9 0.125396 hybrid +142_2-2 Q0 MARCO_54_2086360355-1 10 0.122109 hybrid +142_2-2 Q0 MARCO_50_781658274-28 11 0.102090 hybrid +142_2-2 Q0 MARCO_24_807685158-32 12 0.101882 hybrid +142_2-2 Q0 MARCO_05_848957007-8 13 0.097343 hybrid +142_2-2 Q0 MARCO_41_1807666760-7 14 0.090664 hybrid +142_2-2 Q0 MARCO_18_118734742-26 15 0.090090 hybrid +142_2-2 Q0 KILT_5486558-2 16 0.084890 hybrid +142_2-2 Q0 MARCO_26_1889692957-6 17 0.074455 hybrid +142_2-2 Q0 KILT_12471937-8 18 0.071376 hybrid +142_2-2 Q0 KILT_2228629-2 19 0.060993 hybrid +142_2-2 Q0 KILT_40892583-4 20 0.035080 hybrid +142_2-2 Q0 MARCO_16_2206432408-10 21 0.032923 hybrid +142_2-2 Q0 MARCO_39_1259607096-18 22 0.030279 hybrid +142_2-2 Q0 KILT_2222-9 23 0.023027 hybrid +142_2-2 Q0 MARCO_18_3127967367-2 24 0.021270 hybrid +142_2-2 Q0 MARCO_39_1264136836-9 25 0.014853 hybrid +142_2-2 Q0 KILT_61326433-1 26 0.012470 hybrid +142_2-2 Q0 KILT_1248379-3 27 0.009618 hybrid +142_2-2 Q0 MARCO_05_1877300306-293 28 0.008992 hybrid +142_2-2 Q0 MARCO_25_297460066-5 29 0.000348 hybrid +142_2-2 Q0 MARCO_39_1259607096-3 30 -0.002139 hybrid +142_2-2 Q0 MARCO_29_1447143343-3 31 -0.005357 hybrid +142_2-2 Q0 MARCO_50_781658274-26 32 -0.010105 hybrid +142_2-2 Q0 KILT_30232327-1 33 -0.011809 hybrid +142_2-2 Q0 MARCO_00_418231658-1 34 -0.021740 hybrid +142_2-2 Q0 KILT_474383-1 35 -0.024749 hybrid +142_2-2 Q0 MARCO_18_4339396981-2 36 -0.024749 hybrid +142_2-2 Q0 KILT_18706892-1 37 -0.028401 hybrid +142_2-2 Q0 MARCO_16_2205065656-68 38 -0.030992 hybrid +142_2-2 Q0 MARCO_19_2045799633-2 39 -0.036123 hybrid +142_2-2 Q0 MARCO_17_674008977-3 40 -0.036419 hybrid +142_2-2 Q0 MARCO_24_33938881-6 41 -0.042558 hybrid +142_2-2 Q0 KILT_5488261-1 42 -0.044697 hybrid +142_2-2 Q0 MARCO_16_2206602406-1 43 -0.051567 hybrid +142_2-2 Q0 MARCO_17_964928401-11 44 -0.052576 hybrid +142_2-2 Q0 MARCO_16_4061399225-23 45 -0.053498 hybrid +142_2-2 Q0 MARCO_16_3206698032-13 46 -0.054158 hybrid +142_2-2 Q0 MARCO_55_1091349376-9 47 -0.057915 hybrid +142_2-2 Q0 MARCO_54_466426969-5 48 -0.058350 hybrid +142_2-2 Q0 MARCO_00_135103123-8 49 -0.061341 hybrid +142_2-2 Q0 KILT_12471937-6 50 -0.064785 hybrid +142_2-2 Q0 MARCO_01_704783737-31 51 -0.068350 hybrid +142_2-2 Q0 MARCO_29_1447088347-2 52 -0.072263 hybrid +142_2-2 Q0 MARCO_03_851003198-11 53 -0.072872 hybrid +142_2-2 Q0 KILT_40892583-2 54 -0.080681 hybrid +142_2-2 Q0 MARCO_10_145175219-1 55 -0.083186 hybrid +142_2-2 Q0 MARCO_28_266419898-2 56 -0.084090 hybrid +142_2-2 Q0 MARCO_35_37197736-1 57 -0.090473 hybrid +142_2-2 Q0 MARCO_16_2206602406-5 58 -0.092508 hybrid +142_2-2 Q0 MARCO_05_130334455-5 59 -0.092768 hybrid +142_2-2 Q0 KILT_24554890-1 60 -0.101604 hybrid +142_2-2 Q0 KILT_18065547-1 61 -0.101812 hybrid +142_2-2 Q0 MARCO_20_1372009862-1 62 -0.103186 hybrid +142_2-2 Q0 MARCO_52_1807890701-1 63 -0.105725 hybrid +142_2-2 Q0 MARCO_18_3127967367-4 64 -0.106247 hybrid +142_2-2 Q0 MARCO_06_1026573705-48 65 -0.106943 hybrid +142_2-2 Q0 MARCO_20_232780208-7 66 -0.107169 hybrid +142_2-2 Q0 MARCO_45_1274927235-1 67 -0.109673 hybrid +142_2-2 Q0 MARCO_16_3199838401-3 68 -0.112717 hybrid +142_2-2 Q0 KILT_60947347-1 69 -0.113534 hybrid +142_2-2 Q0 KILT_14886352-8 70 -0.115308 hybrid +142_2-2 Q0 MARCO_54_466426969-1 71 -0.115969 hybrid +142_2-2 Q0 KILT_5192308-13 72 -0.117691 hybrid +142_2-2 Q0 KILT_58097146-1 73 -0.118717 hybrid +142_2-2 Q0 MARCO_39_1259607096-2 74 -0.119813 hybrid +142_2-2 Q0 KILT_3011071-4 75 -0.124683 hybrid +142_2-2 Q0 MARCO_30_418367268-1 76 -0.127761 hybrid +142_2-2 Q0 MARCO_16_1772433796-5 77 -0.128874 hybrid +142_2-2 Q0 MARCO_22_393668005-3 78 -0.128874 hybrid +142_2-2 Q0 MARCO_36_1304988780-3 79 -0.132492 hybrid +142_2-2 Q0 MARCO_09_1309744505-3 80 -0.134179 hybrid +142_2-2 Q0 MARCO_50_2456753220-16 81 -0.134474 hybrid +142_2-2 Q0 MARCO_29_1447163270-2 82 -0.134596 hybrid +142_2-2 Q0 KILT_1313846-1 83 -0.140057 hybrid +142_2-2 Q0 KILT_5582148-1 84 -0.141640 hybrid +142_2-2 Q0 MARCO_01_1666744190-39 85 -0.142231 hybrid +142_2-2 Q0 MARCO_13_279514476-4 86 -0.143292 hybrid +142_2-2 Q0 KILT_23434534-2 87 -0.145188 hybrid +142_2-2 Q0 KILT_5486558-4 88 -0.146666 hybrid +142_2-2 Q0 MARCO_05_848986452-2 89 -0.147657 hybrid +142_2-2 Q0 MARCO_50_2831196537-1 90 -0.148283 hybrid +142_2-2 Q0 MARCO_05_1273363310-2 91 -0.149153 hybrid +142_2-2 Q0 MARCO_50_1170968973-6 92 -0.149814 hybrid +142_2-2 Q0 KILT_247169-8 93 -0.152405 hybrid +142_2-2 Q0 MARCO_06_151818996-1 94 -0.153049 hybrid +142_2-2 Q0 MARCO_16_2206537617-2 95 -0.154214 hybrid +142_2-2 Q0 MARCO_52_598433949-1 96 -0.154579 hybrid +142_2-2 Q0 MARCO_32_396746715-2 97 -0.156666 hybrid +142_2-2 Q0 MARCO_06_31525472-2 98 -0.159832 hybrid +142_2-2 Q0 MARCO_29_1447143343-1 99 -0.160840 hybrid +142_2-2 Q0 MARCO_16_2206839194-11 100 -0.162945 hybrid +142_2-4 Q0 MARCO_55_1245662540-6 1 0.500000 hybrid +142_2-4 Q0 MARCO_55_1245662540-1 2 0.387570 hybrid +142_2-4 Q0 MARCO_33_868655730-8 3 0.209374 hybrid +142_2-4 Q0 MARCO_33_868655730-9 4 0.184264 hybrid +142_2-4 Q0 MARCO_04_739200346-4 5 0.121303 hybrid +142_2-4 Q0 MARCO_09_727719485-4 6 0.121303 hybrid +142_2-4 Q0 MARCO_52_1472442561-1 7 0.106075 hybrid +142_2-4 Q0 MARCO_55_1245662540-8 8 0.103401 hybrid +142_2-4 Q0 MARCO_25_297692704-10 9 0.093016 hybrid +142_2-4 Q0 MARCO_25_660341045-6 10 0.054683 hybrid +142_2-4 Q0 KILT_16594665-10 11 0.038786 hybrid +142_2-4 Q0 MARCO_52_1472442561-9 12 0.031259 hybrid +142_2-4 Q0 MARCO_45_22302590-9 13 0.029521 hybrid +142_2-4 Q0 MARCO_31_1694990413-1 14 0.028616 hybrid +142_2-4 Q0 MARCO_28_329136270-3 15 -0.020514 hybrid +142_2-4 Q0 KILT_2222-23 16 -0.034076 hybrid +142_2-4 Q0 MARCO_16_2206432408-24 17 -0.037665 hybrid +142_2-4 Q0 MARCO_16_2206432408-20 18 -0.041017 hybrid +142_2-4 Q0 MARCO_27_30574068-2 19 -0.041809 hybrid +142_2-4 Q0 MARCO_18_106335865-1 20 -0.061541 hybrid +142_2-4 Q0 KILT_46207366-1 21 -0.068256 hybrid +142_2-4 Q0 MARCO_01_651672954-4 22 -0.079165 hybrid +142_2-4 Q0 MARCO_02_859848405-3 23 -0.085674 hybrid +142_2-4 Q0 KILT_12255257-2 24 -0.089839 hybrid +142_2-4 Q0 MARCO_23_203843672-4 25 -0.089839 hybrid +142_2-4 Q0 KILT_5302486-3 26 -0.089900 hybrid +142_2-4 Q0 MARCO_02_1717587934-4 27 -0.094044 hybrid +142_2-4 Q0 MARCO_28_986422727-3 28 -0.094044 hybrid +142_2-4 Q0 MARCO_18_106335865-2 29 -0.096563 hybrid +142_2-4 Q0 MARCO_02_859848405-4 30 -0.106507 hybrid +142_2-4 Q0 MARCO_25_794773696-8 31 -0.109787 hybrid +142_2-4 Q0 MARCO_02_1261032022-3 32 -0.120769 hybrid +142_2-4 Q0 MARCO_38_1575935851-4 33 -0.120769 hybrid +142_2-4 Q0 MARCO_38_1575935851-8 34 -0.120769 hybrid +142_2-4 Q0 MARCO_08_1170054893-1 35 -0.125910 hybrid +142_2-4 Q0 MARCO_06_486574834-19 36 -0.126856 hybrid +142_2-4 Q0 MARCO_36_127164723-1 37 -0.132182 hybrid +142_2-4 Q0 MARCO_52_1635048905-4 38 -0.142341 hybrid +142_2-4 Q0 MARCO_52_1621186195-5 39 -0.150917 hybrid +142_2-4 Q0 KILT_164372-7 40 -0.156202 hybrid +142_2-4 Q0 MARCO_40_920538064-8 41 -0.160439 hybrid +142_2-4 Q0 MARCO_10_624819786-9 42 -0.164860 hybrid +142_2-4 Q0 MARCO_16_4024952049-8 43 -0.168017 hybrid +142_2-4 Q0 MARCO_20_232780208-6 44 -0.168017 hybrid +142_2-4 Q0 MARCO_45_22302590-7 45 -0.169251 hybrid +142_2-4 Q0 MARCO_55_524139535-2 46 -0.177909 hybrid +142_2-4 Q0 MARCO_02_859848405-1 47 -0.179832 hybrid +142_2-4 Q0 MARCO_08_1170054893-3 48 -0.179832 hybrid +142_2-4 Q0 MARCO_55_247213724-16 49 -0.179832 hybrid +142_2-4 Q0 MARCO_26_1683729744-7 50 -0.194094 hybrid +142_2-4 Q0 MARCO_16_2205454508-13 51 -0.201867 hybrid +142_2-4 Q0 MARCO_20_315498384-10 52 -0.201867 hybrid +142_2-4 Q0 MARCO_37_171316582-6 53 -0.201867 hybrid +142_2-4 Q0 MARCO_45_22302590-3 54 -0.201868 hybrid +142_2-4 Q0 KILT_12255257-1 55 -0.206525 hybrid +142_2-4 Q0 MARCO_19_1394828228-3 56 -0.206525 hybrid +142_2-4 Q0 MARCO_03_304517922-3 57 -0.212654 hybrid +142_2-4 Q0 MARCO_17_674008977-4 58 -0.212654 hybrid +142_2-4 Q0 MARCO_52_1472442561-10 59 -0.212654 hybrid +142_2-4 Q0 MARCO_18_1462330817-16 60 -0.217209 hybrid +142_2-4 Q0 MARCO_19_1394833765-4 61 -0.220582 hybrid +142_2-4 Q0 MARCO_55_25409365-5 62 -0.222474 hybrid +142_2-4 Q0 MARCO_01_1159938790-7 63 -0.227666 hybrid +142_2-4 Q0 MARCO_22_1189445202-15 64 -0.227666 hybrid +142_2-4 Q0 MARCO_51_875663106-1 65 -0.227666 hybrid +142_2-4 Q0 MARCO_00_1055590783-4 66 -0.227985 hybrid +142_2-4 Q0 MARCO_45_1295334392-1 67 -0.229085 hybrid +142_2-4 Q0 MARCO_30_1050868990-1 68 -0.230905 hybrid +142_2-4 Q0 MARCO_33_101404883-5 69 -0.230905 hybrid +142_2-4 Q0 MARCO_13_620086192-13 70 -0.232818 hybrid +142_2-4 Q0 MARCO_15_278690796-3 71 -0.232818 hybrid +142_2-4 Q0 MARCO_37_1194837970-3 72 -0.232818 hybrid +142_2-4 Q0 MARCO_55_571877741-3 73 -0.232818 hybrid +142_2-4 Q0 KILT_22524325-1 74 -0.233003 hybrid +142_2-4 Q0 MARCO_17_3851175486-56 75 -0.237908 hybrid +142_2-4 Q0 MARCO_30_197775896-7 76 -0.237908 hybrid +142_2-4 Q0 MARCO_52_1635048905-5 77 -0.237908 hybrid +142_2-4 Q0 MARCO_56_112930611-2 78 -0.237908 hybrid +142_2-4 Q0 MARCO_35_465018758-6 79 -0.238154 hybrid +142_2-4 Q0 MARCO_04_1474402086-4 80 -0.242987 hybrid +142_2-4 Q0 MARCO_34_1099412811-2 81 -0.245280 hybrid +142_2-4 Q0 MARCO_19_1394833765-2 82 -0.247923 hybrid +142_2-4 Q0 MARCO_44_1740511055-5 83 -0.259213 hybrid +142_2-4 Q0 KILT_22768351-1 84 -0.265640 hybrid +142_2-4 Q0 KILT_47638336-4 85 -0.265815 hybrid +142_2-4 Q0 MARCO_04_91290089-1 86 -0.267470 hybrid +142_2-4 Q0 MARCO_03_1702556126-1 87 -0.273393 hybrid +142_2-4 Q0 MARCO_04_149729031-1 88 -0.274400 hybrid +142_2-4 Q0 MARCO_04_6170953-1 89 -0.275028 hybrid +142_2-4 Q0 MARCO_03_1798187849-1 90 -0.275830 hybrid +142_2-4 Q0 MARCO_03_1661746476-1 91 -0.276529 hybrid +142_2-4 Q0 MARCO_10_219115180-80 92 -0.276909 hybrid +142_2-4 Q0 KILT_2047222-15 93 -0.280385 hybrid +142_2-4 Q0 MARCO_10_219115180-79 94 -0.282914 hybrid +142_2-4 Q0 MARCO_03_1587404707-1 95 -0.288580 hybrid +142_2-4 Q0 MARCO_04_85570988-1 96 -0.289968 hybrid +142_2-4 Q0 MARCO_39_1264697842-25 97 -0.294030 hybrid +142_2-4 Q0 MARCO_59_83703267-4 98 -0.294739 hybrid +142_2-4 Q0 MARCO_02_859848405-5 99 -0.296940 hybrid +142_2-4 Q0 MARCO_18_106335865-6 100 -0.299737 hybrid +142_3-1 Q0 MARCO_55_1245662540-1 1 0.500000 hybrid +142_3-1 Q0 MARCO_45_22302590-3 2 -0.100815 hybrid +142_3-1 Q0 MARCO_37_854774456-1 3 -0.120101 hybrid +142_3-1 Q0 MARCO_50_2855786327-1 4 -0.154524 hybrid +142_3-1 Q0 MARCO_25_937745370-10 5 -0.168845 hybrid +142_3-1 Q0 MARCO_05_1056114070-1 6 -0.169447 hybrid +142_3-1 Q0 MARCO_45_22302590-9 7 -0.174289 hybrid +142_3-1 Q0 MARCO_36_259021788-2 8 -0.178996 hybrid +142_3-1 Q0 MARCO_35_1741934393-1 9 -0.187775 hybrid +142_3-1 Q0 MARCO_10_1612385551-11 10 -0.195874 hybrid +142_3-1 Q0 MARCO_09_1096320400-1 11 -0.195968 hybrid +142_3-1 Q0 MARCO_03_849955296-56 12 -0.207653 hybrid +142_3-1 Q0 MARCO_30_426878678-18 13 -0.215433 hybrid +142_3-1 Q0 MARCO_30_1004054024-7 14 -0.215442 hybrid +142_3-1 Q0 MARCO_37_854774456-4 15 -0.217985 hybrid +142_3-1 Q0 MARCO_53_1065767658-2 16 -0.221039 hybrid +142_3-1 Q0 KILT_34244921-1 17 -0.235688 hybrid +142_3-1 Q0 MARCO_03_415341416-9 18 -0.239611 hybrid +142_3-1 Q0 MARCO_13_429847964-1 19 -0.249393 hybrid +142_3-1 Q0 MARCO_45_283374648-3 20 -0.249771 hybrid +142_3-1 Q0 MARCO_37_854787432-1 21 -0.252710 hybrid +142_3-1 Q0 KILT_34244948-2 22 -0.259713 hybrid +142_3-1 Q0 MARCO_25_297460066-5 23 -0.260260 hybrid +142_3-1 Q0 MARCO_13_429898392-1 24 -0.260378 hybrid +142_3-1 Q0 MARCO_20_1631271525-1 25 -0.261681 hybrid +142_3-1 Q0 MARCO_27_1226593374-94 26 -0.262921 hybrid +142_3-1 Q0 KILT_3255433-1 27 -0.266925 hybrid +142_3-1 Q0 MARCO_27_1641181660-1 28 -0.268274 hybrid +142_3-1 Q0 MARCO_16_2207010817-23 29 -0.268521 hybrid +142_3-1 Q0 MARCO_39_1078232837-1 30 -0.269149 hybrid +142_3-1 Q0 MARCO_41_1296235289-2 31 -0.272325 hybrid +142_3-1 Q0 MARCO_51_876291753-23 32 -0.274205 hybrid +142_3-1 Q0 MARCO_10_1612385551-10 33 -0.274458 hybrid +142_3-1 Q0 KILT_4612169-5 34 -0.274746 hybrid +142_3-1 Q0 KILT_8401330-2 35 -0.278940 hybrid +142_3-1 Q0 MARCO_16_2206136040-2 36 -0.279090 hybrid +142_3-1 Q0 MARCO_24_1832376406-4 37 -0.279515 hybrid +142_3-1 Q0 MARCO_33_827028099-4 38 -0.280093 hybrid +142_3-1 Q0 MARCO_29_1448879597-2 39 -0.283316 hybrid +142_3-1 Q0 KILT_255919-30 40 -0.284619 hybrid +142_3-1 Q0 MARCO_05_849004482-5 41 -0.285562 hybrid +142_3-1 Q0 MARCO_10_1612385551-27 42 -0.287077 hybrid +142_3-1 Q0 MARCO_53_1065767658-15 43 -0.289063 hybrid +142_3-1 Q0 MARCO_00_1334150352-2 44 -0.290316 hybrid +142_3-1 Q0 MARCO_10_158548580-13 45 -0.291287 hybrid +142_3-1 Q0 MARCO_01_574379408-3 46 -0.292305 hybrid +142_3-1 Q0 MARCO_41_1807666760-7 47 -0.295850 hybrid +142_3-1 Q0 MARCO_25_297460066-7 48 -0.296169 hybrid +142_3-1 Q0 MARCO_26_767392254-2 49 -0.297196 hybrid +142_3-1 Q0 MARCO_10_120187103-2 50 -0.298771 hybrid +142_3-1 Q0 KILT_6060924-1 51 -0.302516 hybrid +142_3-1 Q0 MARCO_05_1671278326-4 52 -0.303784 hybrid +142_3-1 Q0 MARCO_16_3046749093-40 53 -0.304449 hybrid +142_3-1 Q0 MARCO_09_1214020601-33 54 -0.304580 hybrid +142_3-1 Q0 MARCO_03_849955296-57 55 -0.306573 hybrid +142_3-1 Q0 MARCO_03_702645269-1 56 -0.307282 hybrid +142_3-1 Q0 KILT_14914953-1 57 -0.308163 hybrid +142_3-1 Q0 MARCO_06_151818996-11 58 -0.311995 hybrid +142_3-1 Q0 KILT_31100420-19 59 -0.312054 hybrid +142_3-1 Q0 MARCO_11_1448564973-11 60 -0.312735 hybrid +142_3-1 Q0 KILT_57026231-5 61 -0.313091 hybrid +142_3-1 Q0 MARCO_08_635410990-5 62 -0.313472 hybrid +142_3-1 Q0 MARCO_55_1409415917-11 63 -0.313525 hybrid +142_3-1 Q0 MARCO_52_1624445141-2 64 -0.313972 hybrid +142_3-1 Q0 MARCO_24_1139351957-10 65 -0.314072 hybrid +142_3-1 Q0 MARCO_55_1245662540-3 66 -0.314431 hybrid +142_3-1 Q0 KILT_41423357-4 67 -0.314534 hybrid +142_3-1 Q0 MARCO_13_343037176-1 68 -0.314825 hybrid +142_3-1 Q0 MARCO_59_381730934-9 69 -0.315606 hybrid +142_3-1 Q0 MARCO_34_1720985463-1 70 -0.316199 hybrid +142_3-1 Q0 MARCO_10_120187103-10 71 -0.317511 hybrid +142_3-1 Q0 MARCO_16_3046749093-41 72 -0.317673 hybrid +142_3-1 Q0 KILT_42986208-1 73 -0.319488 hybrid +142_3-1 Q0 KILT_5335433-3 74 -0.319794 hybrid +142_3-1 Q0 KILT_247169-5 75 -0.321406 hybrid +142_3-1 Q0 MARCO_29_1447365717-1 76 -0.321518 hybrid +142_3-1 Q0 MARCO_22_1189428320-5 77 -0.321781 hybrid +142_3-1 Q0 MARCO_10_158548580-1 78 -0.321980 hybrid +142_3-1 Q0 MARCO_19_2045799633-16 79 -0.323995 hybrid +142_3-1 Q0 MARCO_10_158548580-5 80 -0.324876 hybrid +142_3-1 Q0 MARCO_54_1571592040-4 81 -0.326060 hybrid +142_3-1 Q0 MARCO_17_1359996266-10 82 -0.326106 hybrid +142_3-1 Q0 MARCO_12_1102872949-2 83 -0.327471 hybrid +142_3-1 Q0 MARCO_34_1754594337-3 84 -0.328143 hybrid +142_3-1 Q0 MARCO_55_1708317826-5 85 -0.328280 hybrid +142_3-1 Q0 MARCO_14_1532200398-3 86 -0.329058 hybrid +142_3-1 Q0 MARCO_55_1409415917-6 87 -0.330385 hybrid +142_3-1 Q0 MARCO_05_1671278326-1 88 -0.331088 hybrid +142_3-1 Q0 MARCO_32_1208243439-3 89 -0.331963 hybrid +142_3-1 Q0 MARCO_05_1671278326-14 90 -0.334702 hybrid +142_3-1 Q0 MARCO_29_1447240465-2 91 -0.335611 hybrid +142_3-1 Q0 KILT_4612169-4 92 -0.335764 hybrid +142_3-1 Q0 MARCO_10_1612385551-26 93 -0.336182 hybrid +142_3-1 Q0 KILT_576061-5 94 -0.338472 hybrid +142_3-1 Q0 MARCO_37_854765368-1 95 -0.340986 hybrid +142_3-1 Q0 MARCO_27_912003150-1 96 -0.341030 hybrid +142_3-1 Q0 KILT_16594735-5 97 -0.342451 hybrid +142_3-1 Q0 KILT_41604640-4 98 -0.343816 hybrid +142_3-1 Q0 MARCO_30_1983866718-3 99 -0.343869 hybrid +142_3-1 Q0 MARCO_45_593282026-5 100 -0.345715 hybrid +142_3-3 Q0 MARCO_05_849004482-2 1 0.500000 hybrid +142_3-3 Q0 MARCO_05_849015218-3 2 0.329472 hybrid +142_3-3 Q0 MARCO_05_849004482-7 3 0.242852 hybrid +142_3-3 Q0 MARCO_10_790347853-4 4 0.226062 hybrid +142_3-3 Q0 MARCO_34_1754594337-3 5 0.219154 hybrid +142_3-3 Q0 MARCO_45_1237326115-3 6 0.216000 hybrid +142_3-3 Q0 MARCO_13_429898392-1 7 0.193483 hybrid +142_3-3 Q0 KILT_262752-1 8 0.163974 hybrid +142_3-3 Q0 MARCO_05_848986452-3 9 0.107802 hybrid +142_3-3 Q0 MARCO_05_849004482-1 10 0.076046 hybrid +142_3-3 Q0 MARCO_35_1741934393-1 11 0.071923 hybrid +142_3-3 Q0 MARCO_05_1885118257-163 12 0.071427 hybrid +142_3-3 Q0 KILT_576061-3 13 0.054531 hybrid +142_3-3 Q0 MARCO_39_1259607096-8 14 0.052907 hybrid +142_3-3 Q0 MARCO_07_735489390-16 15 0.051673 hybrid +142_3-3 Q0 MARCO_05_849004482-6 16 0.050692 hybrid +142_3-3 Q0 MARCO_51_101597409-6 17 0.033459 hybrid +142_3-3 Q0 MARCO_56_1866819645-2 18 0.021225 hybrid +142_3-3 Q0 MARCO_01_574379408-2 19 0.014549 hybrid +142_3-3 Q0 MARCO_05_1010052703-1 20 0.014254 hybrid +142_3-3 Q0 MARCO_36_259021788-2 21 -0.005637 hybrid +142_3-3 Q0 MARCO_09_1214020601-32 22 -0.015741 hybrid +142_3-3 Q0 MARCO_33_606991198-8 23 -0.025359 hybrid +142_3-3 Q0 MARCO_45_1255488010-2 24 -0.028439 hybrid +142_3-3 Q0 MARCO_00_1334589289-2 25 -0.040072 hybrid +142_3-3 Q0 MARCO_17_4567932370-1 26 -0.041053 hybrid +142_3-3 Q0 MARCO_30_2012938093-7 27 -0.043668 hybrid +142_3-3 Q0 KILT_252924-1 28 -0.050988 hybrid +142_3-3 Q0 MARCO_54_1646111923-1 29 -0.053941 hybrid +142_3-3 Q0 MARCO_05_849036905-3 30 -0.058929 hybrid +142_3-3 Q0 KILT_960664-25 31 -0.060016 hybrid +142_3-3 Q0 MARCO_48_1576677686-23 32 -0.062283 hybrid +142_3-3 Q0 MARCO_40_1510937140-1 33 -0.067504 hybrid +142_3-3 Q0 MARCO_37_751280871-11 34 -0.068769 hybrid +142_3-3 Q0 MARCO_09_1187981600-1 35 -0.069708 hybrid +142_3-3 Q0 MARCO_16_2206136040-28 36 -0.078683 hybrid +142_3-3 Q0 MARCO_50_1053444155-27 37 -0.081584 hybrid +142_3-3 Q0 KILT_376118-7 38 -0.081763 hybrid +142_3-3 Q0 MARCO_04_181543666-2 39 -0.086129 hybrid +142_3-3 Q0 MARCO_00_1334589289-1 40 -0.097910 hybrid +142_3-3 Q0 MARCO_01_1664921376-1 41 -0.098216 hybrid +142_3-3 Q0 MARCO_36_816068485-4 42 -0.103088 hybrid +142_3-3 Q0 MARCO_09_1209653735-11 43 -0.103331 hybrid +142_3-3 Q0 MARCO_05_849015218-10 44 -0.109543 hybrid +142_3-3 Q0 MARCO_50_1256610195-25 45 -0.113677 hybrid +142_3-3 Q0 MARCO_50_1630527488-12 46 -0.113677 hybrid +142_3-3 Q0 MARCO_36_816068485-12 47 -0.116577 hybrid +142_3-3 Q0 MARCO_20_19875054-3 48 -0.117083 hybrid +142_3-3 Q0 MARCO_04_181543666-4 49 -0.118760 hybrid +142_3-3 Q0 MARCO_22_1854099206-41 50 -0.120216 hybrid +142_3-3 Q0 MARCO_24_1414289955-1 51 -0.124139 hybrid +142_3-3 Q0 MARCO_16_3905561194-11 52 -0.124424 hybrid +142_3-3 Q0 MARCO_45_1237326115-1 53 -0.130446 hybrid +142_3-3 Q0 MARCO_10_511544416-1 54 -0.131648 hybrid +142_3-3 Q0 MARCO_05_1671278326-1 55 -0.133557 hybrid +142_3-3 Q0 MARCO_05_849004482-3 56 -0.137470 hybrid +142_3-3 Q0 MARCO_13_429847964-1 57 -0.141910 hybrid +142_3-3 Q0 MARCO_10_158548580-6 58 -0.145907 hybrid +142_3-3 Q0 MARCO_55_1698156649-8 59 -0.146625 hybrid +142_3-3 Q0 MARCO_05_848975837-6 60 -0.147173 hybrid +142_3-3 Q0 MARCO_50_461877807-6 61 -0.148860 hybrid +142_3-3 Q0 MARCO_07_735489390-7 62 -0.150875 hybrid +142_3-3 Q0 MARCO_36_1249042315-3 63 -0.152868 hybrid +142_3-3 Q0 MARCO_27_912003150-1 64 -0.152984 hybrid +142_3-3 Q0 MARCO_05_849029985-1 65 -0.153838 hybrid +142_3-3 Q0 MARCO_00_1334150352-1 66 -0.156338 hybrid +142_3-3 Q0 MARCO_01_574379408-19 67 -0.156950 hybrid +142_3-3 Q0 MARCO_34_492883917-3 68 -0.158500 hybrid +142_3-3 Q0 MARCO_09_1096297887-1 69 -0.159186 hybrid +142_3-3 Q0 KILT_12728139-1 70 -0.161200 hybrid +142_3-3 Q0 MARCO_29_1447365717-1 71 -0.162761 hybrid +142_3-3 Q0 KILT_56867475-3 72 -0.165260 hybrid +142_3-3 Q0 MARCO_50_557041500-7 73 -0.166030 hybrid +142_3-3 Q0 KILT_3485044-2 74 -0.166505 hybrid +142_3-3 Q0 MARCO_40_1510937140-3 75 -0.168910 hybrid +142_3-3 Q0 MARCO_05_848538444-11 76 -0.170122 hybrid +142_3-3 Q0 KILT_262752-17 77 -0.170354 hybrid +142_3-3 Q0 KILT_3321715-1 78 -0.171810 hybrid +142_3-3 Q0 MARCO_09_1209653735-5 79 -0.171820 hybrid +142_3-3 Q0 KILT_960664-14 80 -0.172253 hybrid +142_3-3 Q0 MARCO_16_1730396730-6 81 -0.173413 hybrid +142_3-3 Q0 MARCO_01_574379408-1 82 -0.174046 hybrid +142_3-3 Q0 KILT_56867475-1 83 -0.180912 hybrid +142_3-3 Q0 MARCO_03_118211685-1 84 -0.181228 hybrid +142_3-3 Q0 MARCO_39_345183342-1 85 -0.182240 hybrid +142_3-3 Q0 KILT_58067-10 86 -0.182821 hybrid +142_3-3 Q0 MARCO_49_520124878-2 87 -0.183337 hybrid +142_3-3 Q0 MARCO_09_1187981600-12 88 -0.183422 hybrid +142_3-3 Q0 MARCO_05_848538444-14 89 -0.185521 hybrid +142_3-3 Q0 MARCO_00_1662329811-1 90 -0.185963 hybrid +142_3-3 Q0 MARCO_16_2206136040-17 91 -0.186153 hybrid +142_3-3 Q0 MARCO_04_181543666-3 92 -0.188389 hybrid +142_3-3 Q0 KILT_262770-1 93 -0.191522 hybrid +142_3-3 Q0 MARCO_09_1096301539-1 94 -0.191732 hybrid +142_3-3 Q0 MARCO_19_1432707969-13 95 -0.192334 hybrid +142_3-3 Q0 MARCO_19_1432707969-15 96 -0.192334 hybrid +142_3-3 Q0 MARCO_39_1127039276-3 97 -0.192671 hybrid +142_3-3 Q0 MARCO_51_20657772-1 98 -0.192882 hybrid +142_3-3 Q0 MARCO_23_1355964299-2 99 -0.193536 hybrid +142_3-3 Q0 MARCO_49_1377582050-4 100 -0.194295 hybrid +142_3-5 Q0 MARCO_04_135230917-3 1 0.500000 hybrid +142_3-5 Q0 MARCO_30_901383913-1 2 0.289877 hybrid +142_3-5 Q0 KILT_13510226-1 3 0.235811 hybrid +142_3-5 Q0 MARCO_12_1102872949-1 4 0.165377 hybrid +142_3-5 Q0 MARCO_03_1206509662-1 5 0.157772 hybrid +142_3-5 Q0 MARCO_09_676087227-1 6 0.144769 hybrid +142_3-5 Q0 MARCO_58_833765956-5 7 0.135460 hybrid +142_3-5 Q0 MARCO_03_1774553245-2 8 0.133318 hybrid +142_3-5 Q0 MARCO_26_1700877525-1 9 0.092211 hybrid +142_3-5 Q0 MARCO_20_337149396-14 10 0.062119 hybrid +142_3-5 Q0 MARCO_58_933447283-2 11 0.057071 hybrid +142_3-5 Q0 KILT_52132991-1 12 0.043041 hybrid +142_3-5 Q0 MARCO_24_555406937-1 13 0.042778 hybrid +142_3-5 Q0 KILT_162898-21 14 0.037905 hybrid +142_3-5 Q0 MARCO_46_435057343-2 15 0.025405 hybrid +142_3-5 Q0 MARCO_50_1561417067-12 16 0.019526 hybrid +142_3-5 Q0 MARCO_53_292121852-3 17 -0.003398 hybrid +142_3-5 Q0 MARCO_12_1102872949-4 18 -0.007878 hybrid +142_3-5 Q0 MARCO_15_1890843658-3 19 -0.008949 hybrid +142_3-5 Q0 KILT_49303743-1 20 -0.022629 hybrid +142_3-5 Q0 MARCO_49_446521076-4 21 -0.027000 hybrid +142_3-5 Q0 KILT_49623066-1 22 -0.028901 hybrid +142_3-5 Q0 MARCO_49_446113906-4 23 -0.035829 hybrid +142_3-5 Q0 KILT_2527950-5 24 -0.036288 hybrid +142_3-5 Q0 MARCO_26_1770120127-6 25 -0.036987 hybrid +142_3-5 Q0 MARCO_34_1029448518-1 26 -0.040702 hybrid +142_3-5 Q0 MARCO_19_1399831327-11 27 -0.048220 hybrid +142_3-5 Q0 MARCO_19_1399831327-9 28 -0.048220 hybrid +142_3-5 Q0 MARCO_52_1623405322-4 29 -0.060305 hybrid +142_3-5 Q0 MARCO_58_833765956-3 30 -0.071057 hybrid +142_3-5 Q0 KILT_24531487-2 31 -0.072368 hybrid +142_3-5 Q0 MARCO_31_900217158-1 32 -0.077744 hybrid +142_3-5 Q0 MARCO_26_1797484646-2 33 -0.085087 hybrid +142_3-5 Q0 MARCO_17_4256986552-2 34 -0.087207 hybrid +142_3-5 Q0 KILT_57303275-1 35 -0.088387 hybrid +142_3-5 Q0 MARCO_38_595193469-1 36 -0.088540 hybrid +142_3-5 Q0 MARCO_24_412440911-1 37 -0.090616 hybrid +142_3-5 Q0 MARCO_46_641033483-4 38 -0.093566 hybrid +142_3-5 Q0 KILT_1329929-1 39 -0.095620 hybrid +142_3-5 Q0 KILT_960664-3 40 -0.095621 hybrid +142_3-5 Q0 MARCO_03_721593473-1 41 -0.099270 hybrid +142_3-5 Q0 MARCO_17_481275423-53 42 -0.105236 hybrid +142_3-5 Q0 MARCO_43_35727307-3 43 -0.105455 hybrid +142_3-5 Q0 MARCO_17_487833164-35 44 -0.106810 hybrid +142_3-5 Q0 MARCO_03_1759023951-1 45 -0.107312 hybrid +142_3-5 Q0 KILT_67340-47 46 -0.110634 hybrid +142_3-5 Q0 MARCO_16_2655475-5 47 -0.111049 hybrid +142_3-5 Q0 KILT_25282151-24 48 -0.113912 hybrid +142_3-5 Q0 KILT_25282151-33 49 -0.125036 hybrid +142_3-5 Q0 KILT_8614958-3 50 -0.128248 hybrid +142_3-5 Q0 MARCO_18_3004648283-4 51 -0.128248 hybrid +142_3-5 Q0 MARCO_42_1168259903-3 52 -0.134782 hybrid +142_3-5 Q0 MARCO_55_1653935165-3 53 -0.137361 hybrid +142_3-5 Q0 MARCO_52_1576671550-21 54 -0.138760 hybrid +142_3-5 Q0 MARCO_17_1457111661-11 55 -0.140114 hybrid +142_3-5 Q0 KILT_20122471-1 56 -0.140246 hybrid +142_3-5 Q0 MARCO_01_296840608-5 57 -0.140552 hybrid +142_3-5 Q0 MARCO_18_2129679325-3 58 -0.142191 hybrid +142_3-5 Q0 MARCO_09_877964613-2 59 -0.142213 hybrid +142_3-5 Q0 MARCO_50_769079288-3 60 -0.146474 hybrid +142_3-5 Q0 MARCO_16_4061399225-22 61 -0.146758 hybrid +142_3-5 Q0 MARCO_02_245901504-1 62 -0.149665 hybrid +142_3-5 Q0 MARCO_18_2129679325-16 63 -0.150801 hybrid +142_3-5 Q0 KILT_707063-13 64 -0.151085 hybrid +142_3-5 Q0 MARCO_27_1196957625-18 65 -0.154232 hybrid +142_3-5 Q0 MARCO_18_3608727007-16 66 -0.154254 hybrid +142_3-5 Q0 MARCO_14_1634870354-4 67 -0.154298 hybrid +142_3-5 Q0 KILT_31165684-22 68 -0.155871 hybrid +142_3-5 Q0 MARCO_54_2086360355-1 69 -0.158756 hybrid +142_3-5 Q0 MARCO_17_2615869087-11 70 -0.160919 hybrid +142_3-5 Q0 MARCO_12_1102872949-3 71 -0.161422 hybrid +142_3-5 Q0 KILT_22326444-1 72 -0.163935 hybrid +142_3-5 Q0 MARCO_17_897362065-48 73 -0.163979 hybrid +142_3-5 Q0 KILT_8959911-1 74 -0.167694 hybrid +142_3-5 Q0 KILT_35060585-13 75 -0.169595 hybrid +142_3-5 Q0 KILT_67620-4 76 -0.169595 hybrid +142_3-5 Q0 MARCO_50_981384998-24 77 -0.170098 hybrid +142_3-5 Q0 KILT_2936924-1 78 -0.173660 hybrid +142_3-5 Q0 KILT_51584-36 79 -0.178162 hybrid +142_3-5 Q0 MARCO_17_1143989822-7 80 -0.181440 hybrid +142_3-5 Q0 KILT_692834-1 81 -0.182663 hybrid +142_3-5 Q0 MARCO_21_1374352837-11 82 -0.185089 hybrid +142_3-5 Q0 MARCO_53_673385388-6 83 -0.186706 hybrid +142_3-5 Q0 MARCO_50_781658274-30 84 -0.189984 hybrid +142_3-5 Q0 KILT_25282151-23 85 -0.191034 hybrid +142_3-5 Q0 MARCO_25_297460066-12 86 -0.192214 hybrid +142_3-5 Q0 MARCO_26_1894007552-6 87 -0.193481 hybrid +142_3-5 Q0 MARCO_16_2205065656-44 88 -0.193721 hybrid +142_3-5 Q0 MARCO_18_3184873923-11 89 -0.193722 hybrid +142_3-5 Q0 KILT_68259-10 90 -0.195863 hybrid +142_3-5 Q0 MARCO_21_1374352837-1 91 -0.197699 hybrid +142_3-5 Q0 MARCO_06_130717715-3 92 -0.198158 hybrid +142_3-5 Q0 MARCO_06_130717715-5 93 -0.198158 hybrid +142_3-5 Q0 MARCO_54_528403656-2 94 -0.198660 hybrid +142_3-5 Q0 MARCO_42_1384569064-1 95 -0.198923 hybrid +142_3-5 Q0 MARCO_14_800073169-3 96 -0.200518 hybrid +142_3-5 Q0 MARCO_41_1584258463-1 97 -0.200802 hybrid +142_3-5 Q0 MARCO_06_146071112-18 98 -0.205085 hybrid +142_3-5 Q0 KILT_2890448-1 99 -0.205195 hybrid +142_3-5 Q0 KILT_40112073-1 100 -0.205195 hybrid +142_4-1 Q0 MARCO_34_1754594337-3 1 0.500000 hybrid +142_4-1 Q0 MARCO_11_1448564973-10 2 0.328807 hybrid +142_4-1 Q0 KILT_43628081-2 3 -0.083682 hybrid +142_4-1 Q0 MARCO_54_871189766-1 4 -0.085245 hybrid +142_4-1 Q0 KILT_22096158-1 5 -0.118146 hybrid +142_4-1 Q0 KILT_1359000-1 6 -0.140385 hybrid +142_4-1 Q0 KILT_1347662-1 7 -0.151988 hybrid +142_4-1 Q0 KILT_9113619-1 8 -0.153685 hybrid +142_4-1 Q0 KILT_566821-74 9 -0.157497 hybrid +142_4-1 Q0 MARCO_10_120187103-3 10 -0.188221 hybrid +142_4-1 Q0 MARCO_58_1419053757-1 11 -0.192112 hybrid +142_4-1 Q0 KILT_45338270-1 12 -0.194653 hybrid +142_4-1 Q0 MARCO_30_1004054024-7 13 -0.200979 hybrid +142_4-1 Q0 MARCO_01_1859246882-5 14 -0.204080 hybrid +142_4-1 Q0 KILT_21507264-1 15 -0.205644 hybrid +142_4-1 Q0 MARCO_10_120187103-9 16 -0.206621 hybrid +142_4-1 Q0 KILT_22364320-2 17 -0.208683 hybrid +142_4-1 Q0 MARCO_54_585529597-1 18 -0.208683 hybrid +142_4-1 Q0 KILT_24180581-1 19 -0.213196 hybrid +142_4-1 Q0 MARCO_31_1668687564-6 20 -0.213942 hybrid +142_4-1 Q0 MARCO_31_1668761071-5 21 -0.213943 hybrid +142_4-1 Q0 MARCO_27_1679646173-8 22 -0.215462 hybrid +142_4-1 Q0 KILT_51611377-16 23 -0.216057 hybrid +142_4-1 Q0 KILT_2652684-1 24 -0.222285 hybrid +142_4-1 Q0 MARCO_29_1447295533-4 25 -0.232450 hybrid +142_4-1 Q0 KILT_39114241-2 26 -0.232672 hybrid +142_4-1 Q0 KILT_6554910-6 27 -0.237123 hybrid +142_4-1 Q0 KILT_38236138-8 28 -0.241557 hybrid +142_4-1 Q0 MARCO_03_438137118-35 29 -0.242418 hybrid +142_4-1 Q0 MARCO_06_138415556-13 30 -0.247616 hybrid +142_4-1 Q0 MARCO_55_1654783944-1 31 -0.251534 hybrid +142_4-1 Q0 KILT_22918325-3 32 -0.251907 hybrid +142_4-1 Q0 MARCO_17_3302332987-23 33 -0.251907 hybrid +142_4-1 Q0 KILT_57698198-3 34 -0.256181 hybrid +142_4-1 Q0 MARCO_18_801605388-33 35 -0.271925 hybrid +142_4-1 Q0 KILT_889153-33 36 -0.278438 hybrid +142_4-1 Q0 KILT_19321330-25 37 -0.278784 hybrid +142_4-1 Q0 MARCO_18_3820620089-2 38 -0.280659 hybrid +142_4-1 Q0 KILT_4704929-1 39 -0.281263 hybrid +142_4-1 Q0 MARCO_00_1237121713-41 40 -0.285394 hybrid +142_4-1 Q0 MARCO_54_585529597-7 41 -0.286736 hybrid +142_4-1 Q0 MARCO_54_462511606-1 42 -0.287402 hybrid +142_4-1 Q0 MARCO_40_963946044-10 43 -0.289126 hybrid +142_4-1 Q0 MARCO_43_370982799-12 44 -0.289126 hybrid +142_4-1 Q0 KILT_27799661-2 45 -0.291916 hybrid +142_4-1 Q0 MARCO_55_1652338223-2 46 -0.292262 hybrid +142_4-1 Q0 KILT_41498893-2 47 -0.296856 hybrid +142_4-1 Q0 MARCO_56_1249601607-2 48 -0.296856 hybrid +142_4-1 Q0 KILT_33396412-1 49 -0.298277 hybrid +142_4-1 Q0 MARCO_16_2920714618-37 50 -0.298642 hybrid +142_4-1 Q0 MARCO_16_3742583297-3 51 -0.302231 hybrid +142_4-1 Q0 KILT_6554910-2 52 -0.302720 hybrid +142_4-1 Q0 KILT_6554910-3 53 -0.302720 hybrid +142_4-1 Q0 MARCO_18_801605388-31 54 -0.304186 hybrid +142_4-1 Q0 KILT_1347662-6 55 -0.305563 hybrid +142_4-1 Q0 KILT_19321330-23 56 -0.309463 hybrid +142_4-1 Q0 KILT_2983859-1 57 -0.309472 hybrid +142_4-1 Q0 MARCO_58_211684576-26 58 -0.309526 hybrid +142_4-1 Q0 KILT_18988957-1 59 -0.313444 hybrid +142_4-1 Q0 KILT_23315904-25 60 -0.314634 hybrid +142_4-1 Q0 KILT_23315904-27 61 -0.314635 hybrid +142_4-1 Q0 KILT_23315904-29 62 -0.314635 hybrid +142_4-1 Q0 KILT_23315904-31 63 -0.318037 hybrid +142_4-1 Q0 KILT_23315904-33 64 -0.318037 hybrid +142_4-1 Q0 KILT_23315904-35 65 -0.318038 hybrid +142_4-1 Q0 KILT_23315904-37 66 -0.318038 hybrid +142_4-1 Q0 KILT_23315904-39 67 -0.318038 hybrid +142_4-1 Q0 KILT_43356807-4 68 -0.318846 hybrid +142_4-1 Q0 MARCO_44_1354597519-2 69 -0.318846 hybrid +142_4-1 Q0 KILT_1152214-2 70 -0.320969 hybrid +142_4-1 Q0 KILT_12163365-1 71 -0.323519 hybrid +142_4-1 Q0 KILT_48420676-2 72 -0.326416 hybrid +142_4-1 Q0 MARCO_16_2106426731-26 73 -0.326656 hybrid +142_4-1 Q0 KILT_30729200-2 74 -0.328744 hybrid +142_4-1 Q0 KILT_30339147-1 75 -0.329437 hybrid +142_4-1 Q0 KILT_2573032-2 76 -0.331302 hybrid +142_4-1 Q0 KILT_8950607-1 77 -0.332226 hybrid +142_4-1 Q0 KILT_5546185-4 78 -0.333293 hybrid +142_4-1 Q0 MARCO_55_1654783944-7 79 -0.333293 hybrid +142_4-1 Q0 KILT_23486968-45 80 -0.334750 hybrid +142_4-1 Q0 KILT_23498957-5 81 -0.337771 hybrid +142_4-1 Q0 KILT_5213841-1 82 -0.339254 hybrid +142_4-1 Q0 KILT_1694736-2 83 -0.340907 hybrid +142_4-1 Q0 KILT_3821543-1 84 -0.342018 hybrid +142_4-1 Q0 KILT_24198046-2 85 -0.343972 hybrid +142_4-1 Q0 KILT_23640379-1 86 -0.343981 hybrid +142_4-1 Q0 MARCO_55_1089635597-9 87 -0.343981 hybrid +142_4-1 Q0 KILT_12660786-1 88 -0.345785 hybrid +142_4-1 Q0 KILT_1311561-5 89 -0.346549 hybrid +142_4-1 Q0 MARCO_00_418209982-6 90 -0.346549 hybrid +142_4-1 Q0 MARCO_30_426878678-17 91 -0.347713 hybrid +142_4-1 Q0 KILT_1347662-3 92 -0.349161 hybrid +142_4-1 Q0 KILT_21916302-1 93 -0.349259 hybrid +142_4-1 Q0 MARCO_43_1078963592-41 94 -0.350254 hybrid +142_4-1 Q0 KILT_1369785-1 95 -0.352209 hybrid +142_4-1 Q0 MARCO_58_1512159116-1 96 -0.352982 hybrid +142_4-1 Q0 MARCO_27_589212775-1 97 -0.354092 hybrid +142_4-1 Q0 MARCO_55_1654783944-4 98 -0.354456 hybrid +142_4-1 Q0 MARCO_17_4268750370-2 99 -0.354590 hybrid +142_4-1 Q0 KILT_26214907-1 100 -0.355389 hybrid +142_5-1 Q0 MARCO_54_1941586628-5 1 0.500000 hybrid +142_5-1 Q0 MARCO_47_127994858-1 2 0.385475 hybrid +142_5-1 Q0 MARCO_40_905208818-8 3 0.360930 hybrid +142_5-1 Q0 MARCO_04_519138088-1 4 0.332954 hybrid +142_5-1 Q0 MARCO_30_815199115-1 5 0.206358 hybrid +142_5-1 Q0 MARCO_50_1337561730-13 6 0.172696 hybrid +142_5-1 Q0 MARCO_08_127493798-69 7 0.146188 hybrid +142_5-1 Q0 MARCO_21_460607436-3 8 0.125495 hybrid +142_5-1 Q0 MARCO_01_1084920994-1 9 0.119772 hybrid +142_5-1 Q0 MARCO_06_1382149523-8 10 0.097942 hybrid +142_5-1 Q0 MARCO_27_1021233516-27 11 0.097868 hybrid +142_5-1 Q0 MARCO_33_1128368102-2 12 0.075433 hybrid +142_5-1 Q0 MARCO_00_1212067385-1 13 0.069049 hybrid +142_5-1 Q0 MARCO_11_543305113-5 14 0.066151 hybrid +142_5-1 Q0 MARCO_20_1057132532-2 15 0.064738 hybrid +142_5-1 Q0 MARCO_45_1510114236-4 16 0.062940 hybrid +142_5-1 Q0 MARCO_10_23692722-30 17 0.049237 hybrid +142_5-1 Q0 MARCO_30_1347640391-11 18 0.035644 hybrid +142_5-1 Q0 MARCO_40_1006345180-1 19 0.017813 hybrid +142_5-1 Q0 MARCO_52_1520366144-3 20 0.013942 hybrid +142_5-1 Q0 MARCO_50_874945679-8 21 0.007081 hybrid +142_5-1 Q0 MARCO_42_446861141-9 22 0.003174 hybrid +142_5-1 Q0 MARCO_12_859225363-17 23 0.001523 hybrid +142_5-1 Q0 MARCO_51_357182451-4 24 -0.000147 hybrid +142_5-1 Q0 MARCO_53_993583809-7 25 -0.002293 hybrid +142_5-1 Q0 MARCO_23_1393438802-9 26 -0.006292 hybrid +142_5-1 Q0 MARCO_50_1462989198-4 27 -0.011722 hybrid +142_5-1 Q0 MARCO_41_1734252530-8 28 -0.014896 hybrid +142_5-1 Q0 MARCO_54_1944081497-2 29 -0.015574 hybrid +142_5-1 Q0 MARCO_10_131220960-6 30 -0.016272 hybrid +142_5-1 Q0 MARCO_52_1001273191-2 31 -0.017116 hybrid +142_5-1 Q0 MARCO_13_1205805238-3 32 -0.017721 hybrid +142_5-1 Q0 MARCO_15_629077466-6 33 -0.028636 hybrid +142_5-1 Q0 MARCO_45_430857940-1 34 -0.031259 hybrid +142_5-1 Q0 MARCO_51_856150187-9 35 -0.032562 hybrid +142_5-1 Q0 MARCO_59_72961956-8 36 -0.050026 hybrid +142_5-1 Q0 MARCO_36_708957277-12 37 -0.050117 hybrid +142_5-1 Q0 MARCO_52_1520366144-1 38 -0.051897 hybrid +142_5-1 Q0 MARCO_30_1653200622-8 39 -0.054685 hybrid +142_5-1 Q0 MARCO_33_1122393461-1 40 -0.057235 hybrid +142_5-1 Q0 MARCO_46_1315539867-4 41 -0.057951 hybrid +142_5-1 Q0 MARCO_09_581007031-1 42 -0.058831 hybrid +142_5-1 Q0 MARCO_08_265362540-5 43 -0.059950 hybrid +142_5-1 Q0 MARCO_01_1233002918-205 44 -0.060904 hybrid +142_5-1 Q0 MARCO_07_1592688014-1 45 -0.061821 hybrid +142_5-1 Q0 MARCO_26_497391951-1 46 -0.066481 hybrid +142_5-1 Q0 MARCO_20_1058880251-3 47 -0.066664 hybrid +142_5-1 Q0 MARCO_42_1729619983-18 48 -0.068334 hybrid +142_5-1 Q0 MARCO_50_1539171305-6 49 -0.068774 hybrid +142_5-1 Q0 MARCO_30_279294805-3 50 -0.074607 hybrid +142_5-1 Q0 MARCO_33_1455132251-2 51 -0.086146 hybrid +142_5-1 Q0 MARCO_04_1125358646-3 52 -0.087228 hybrid +142_5-1 Q0 MARCO_08_690358905-1 53 -0.096676 hybrid +142_5-1 Q0 MARCO_00_240416208-9 54 -0.100271 hybrid +142_5-1 Q0 MARCO_32_1071876554-8 55 -0.100272 hybrid +142_5-1 Q0 MARCO_20_1048613710-2 56 -0.106454 hybrid +142_5-1 Q0 MARCO_08_127493798-32 57 -0.107609 hybrid +142_5-1 Q0 MARCO_20_1057135829-2 58 -0.113993 hybrid +142_5-1 Q0 MARCO_50_2497082517-7 59 -0.114232 hybrid +142_5-1 Q0 MARCO_30_475072852-7 60 -0.114544 hybrid +142_5-1 Q0 MARCO_20_1089443737-8 61 -0.117332 hybrid +142_5-1 Q0 MARCO_14_1658980464-21 62 -0.123569 hybrid +142_5-1 Q0 MARCO_28_870558277-2 63 -0.123918 hybrid +142_5-1 Q0 MARCO_02_821985949-201 64 -0.126358 hybrid +142_5-1 Q0 MARCO_12_1058781447-37 65 -0.128045 hybrid +142_5-1 Q0 MARCO_50_2726135487-6 66 -0.128375 hybrid +142_5-1 Q0 MARCO_41_1024409836-25 67 -0.130522 hybrid +142_5-1 Q0 MARCO_51_785180492-11 68 -0.130687 hybrid +142_5-1 Q0 MARCO_08_151941739-3 69 -0.133017 hybrid +142_5-1 Q0 MARCO_48_1735785811-6 70 -0.133402 hybrid +142_5-1 Q0 MARCO_23_44468513-2 71 -0.133842 hybrid +142_5-1 Q0 MARCO_54_1921477908-28 72 -0.136080 hybrid +142_5-1 Q0 MARCO_02_81149163-9 73 -0.136814 hybrid +142_5-1 Q0 MARCO_20_1089236024-2 74 -0.139419 hybrid +142_5-1 Q0 MARCO_20_1082941205-1 75 -0.140006 hybrid +142_5-1 Q0 MARCO_20_1050043950-2 76 -0.142281 hybrid +142_5-1 Q0 MARCO_02_811307513-25 77 -0.144354 hybrid +142_5-1 Q0 MARCO_52_1592538479-1 78 -0.146261 hybrid +142_5-1 Q0 MARCO_11_1498986754-1 79 -0.148334 hybrid +142_5-1 Q0 MARCO_36_1629329223-1 80 -0.149545 hybrid +142_5-1 Q0 MARCO_08_89606705-10 81 -0.151233 hybrid +142_5-1 Q0 MARCO_50_837197591-12 82 -0.152792 hybrid +142_5-1 Q0 MARCO_45_95352580-32 83 -0.153783 hybrid +142_5-1 Q0 MARCO_47_355458710-6 84 -0.156553 hybrid +142_5-1 Q0 MARCO_44_1504597393-14 85 -0.159451 hybrid +142_5-1 Q0 MARCO_26_216300190-16 86 -0.160790 hybrid +142_5-1 Q0 MARCO_13_1205805238-2 87 -0.161029 hybrid +142_5-1 Q0 MARCO_03_350985608-2 88 -0.162716 hybrid +142_5-1 Q0 MARCO_33_1131065089-2 89 -0.165560 hybrid +142_5-1 Q0 MARCO_51_120445793-14 90 -0.165560 hybrid +142_5-1 Q0 MARCO_50_1650642772-3 91 -0.166147 hybrid +142_5-1 Q0 MARCO_08_126821959-59 92 -0.167376 hybrid +142_5-1 Q0 MARCO_20_1036712457-3 93 -0.168550 hybrid +142_5-1 Q0 MARCO_40_894748779-1 94 -0.170971 hybrid +142_5-1 Q0 MARCO_10_1361551409-165 95 -0.172971 hybrid +142_5-1 Q0 MARCO_27_444800731-4 96 -0.173760 hybrid +142_5-1 Q0 MARCO_24_551786279-4 97 -0.173797 hybrid +142_5-1 Q0 MARCO_04_1379860135-16 98 -0.174127 hybrid +142_5-1 Q0 MARCO_02_280919706-48 99 -0.175393 hybrid +142_5-1 Q0 MARCO_36_10773406-15 100 -0.176787 hybrid +142_5-3 Q0 MARCO_03_1751773927-1 1 0.500000 hybrid +142_5-3 Q0 MARCO_04_115311916-3 2 0.484668 hybrid +142_5-3 Q0 MARCO_12_278047340-3 3 0.273710 hybrid +142_5-3 Q0 MARCO_20_99785551-1 4 0.241798 hybrid +142_5-3 Q0 MARCO_13_279027-2 5 0.236787 hybrid +142_5-3 Q0 KILT_13688573-3 6 0.198861 hybrid +142_5-3 Q0 MARCO_13_517437-2 7 0.168952 hybrid +142_5-3 Q0 MARCO_13_287632-9 8 0.156398 hybrid +142_5-3 Q0 MARCO_18_226403271-2 9 0.142455 hybrid +142_5-3 Q0 MARCO_03_1751773927-2 10 0.132046 hybrid +142_5-3 Q0 MARCO_33_868388479-12 11 0.094630 hybrid +142_5-3 Q0 MARCO_50_53779187-10 12 0.093839 hybrid +142_5-3 Q0 KILT_95411-6 13 0.087914 hybrid +142_5-3 Q0 KILT_859068-1 14 0.085839 hybrid +142_5-3 Q0 MARCO_14_287205439-4 15 0.085136 hybrid +142_5-3 Q0 MARCO_30_75810221-3 16 0.078349 hybrid +142_5-3 Q0 KILT_1093071-2 17 0.059957 hybrid +142_5-3 Q0 MARCO_06_296863553-7 18 0.049408 hybrid +142_5-3 Q0 MARCO_04_165784069-4 19 0.047825 hybrid +142_5-3 Q0 MARCO_39_670955540-31 20 0.042691 hybrid +142_5-3 Q0 KILT_22527511-11 21 0.038418 hybrid +142_5-3 Q0 MARCO_13_279027-3 22 0.031737 hybrid +142_5-3 Q0 MARCO_13_287632-1 23 0.018005 hybrid +142_5-3 Q0 MARCO_39_751118425-2 24 0.015913 hybrid +142_5-3 Q0 MARCO_04_165843454-2 25 0.014154 hybrid +142_5-3 Q0 MARCO_30_1025252083-5 26 0.009055 hybrid +142_5-3 Q0 MARCO_13_279027-1 27 0.008282 hybrid +142_5-3 Q0 MARCO_20_232780208-4 28 0.007737 hybrid +142_5-3 Q0 MARCO_30_1645809882-5 29 0.006893 hybrid +142_5-3 Q0 MARCO_17_1547445763-5 30 0.005275 hybrid +142_5-3 Q0 MARCO_18_3085854998-3 31 0.000088 hybrid +142_5-3 Q0 MARCO_34_305867070-6 32 -0.006084 hybrid +142_5-3 Q0 MARCO_45_995056145-4 33 -0.008985 hybrid +142_5-3 Q0 MARCO_36_1003753285-1 34 -0.010145 hybrid +142_5-3 Q0 MARCO_45_5581863-8 35 -0.011675 hybrid +142_5-3 Q0 MARCO_30_1025312089-1 36 -0.011763 hybrid +142_5-3 Q0 MARCO_05_1348674499-4 37 -0.013117 hybrid +142_5-3 Q0 MARCO_13_287632-10 38 -0.013117 hybrid +142_5-3 Q0 MARCO_36_256859582-5 39 -0.014822 hybrid +142_5-3 Q0 MARCO_01_893146519-2 40 -0.019042 hybrid +142_5-3 Q0 MARCO_30_1173691025-5 41 -0.023860 hybrid +142_5-3 Q0 MARCO_06_151818996-7 42 -0.026040 hybrid +142_5-3 Q0 MARCO_16_3306273242-13 43 -0.030717 hybrid +142_5-3 Q0 MARCO_31_81295761-4 44 -0.030910 hybrid +142_5-3 Q0 MARCO_02_1678181223-4 45 -0.034093 hybrid +142_5-3 Q0 MARCO_10_1350873646-1 46 -0.036273 hybrid +142_5-3 Q0 MARCO_07_259262889-3 47 -0.037486 hybrid +142_5-3 Q0 MARCO_58_1561811768-22 48 -0.037486 hybrid +142_5-3 Q0 MARCO_16_2206432408-3 49 -0.044150 hybrid +142_5-3 Q0 MARCO_16_2614557965-35 50 -0.044326 hybrid +142_5-3 Q0 MARCO_55_1048177948-1 51 -0.045926 hybrid +142_5-3 Q0 MARCO_08_1293178531-1 52 -0.046453 hybrid +142_5-3 Q0 MARCO_10_145278072-1 53 -0.048546 hybrid +142_5-3 Q0 MARCO_17_2709649937-52 54 -0.053821 hybrid +142_5-3 Q0 MARCO_00_73261768-3 55 -0.055561 hybrid +142_5-3 Q0 MARCO_17_4465817128-1 56 -0.057144 hybrid +142_5-3 Q0 MARCO_25_297692704-10 57 -0.057144 hybrid +142_5-3 Q0 MARCO_42_1780568248-7 58 -0.058040 hybrid +142_5-3 Q0 KILT_10423540-21 59 -0.064230 hybrid +142_5-3 Q0 MARCO_28_1829509253-7 60 -0.068889 hybrid +142_5-3 Q0 MARCO_09_1712686455-7 61 -0.069645 hybrid +142_5-3 Q0 MARCO_33_868334401-3 62 -0.071562 hybrid +142_5-3 Q0 KILT_991819-1 63 -0.073302 hybrid +142_5-3 Q0 MARCO_08_1496490338-1 64 -0.075852 hybrid +142_5-3 Q0 MARCO_24_509111941-7 65 -0.089215 hybrid +142_5-3 Q0 MARCO_31_1694150685-2 66 -0.090973 hybrid +142_5-3 Q0 MARCO_13_279027-6 67 -0.093294 hybrid +142_5-3 Q0 MARCO_16_4061399225-19 68 -0.094366 hybrid +142_5-3 Q0 MARCO_17_2706356175-11 69 -0.095544 hybrid +142_5-3 Q0 MARCO_16_3577067503-2 70 -0.095966 hybrid +142_5-3 Q0 MARCO_25_297692704-4 71 -0.104617 hybrid +142_5-3 Q0 MARCO_01_1631382135-1 72 -0.104846 hybrid +142_5-3 Q0 MARCO_00_1687935662-9 73 -0.106991 hybrid +142_5-3 Q0 MARCO_18_2514537436-2 74 -0.108485 hybrid +142_5-3 Q0 MARCO_55_1048177948-6 75 -0.108784 hybrid +142_5-3 Q0 MARCO_04_85570988-1 76 -0.112230 hybrid +142_5-3 Q0 MARCO_04_165777232-2 77 -0.113074 hybrid +142_5-3 Q0 KILT_312362-4 78 -0.115571 hybrid +142_5-3 Q0 MARCO_03_721490022-3 79 -0.115571 hybrid +142_5-3 Q0 MARCO_23_1082356693-8 80 -0.116222 hybrid +142_5-3 Q0 MARCO_30_1645757420-5 81 -0.117118 hybrid +142_5-3 Q0 MARCO_24_1494711467-10 82 -0.119791 hybrid +142_5-3 Q0 MARCO_58_1503508797-2 83 -0.120336 hybrid +142_5-3 Q0 MARCO_30_1645809882-1 84 -0.125681 hybrid +142_5-3 Q0 MARCO_17_4465817128-2 85 -0.126472 hybrid +142_5-3 Q0 KILT_1994221-1 86 -0.127228 hybrid +142_5-3 Q0 MARCO_39_1259607096-30 87 -0.127914 hybrid +142_5-3 Q0 MARCO_31_81295761-1 88 -0.128072 hybrid +142_5-3 Q0 MARCO_55_676979672-1 89 -0.132556 hybrid +142_5-3 Q0 MARCO_18_1024333139-11 90 -0.133365 hybrid +142_5-3 Q0 MARCO_30_1173268043-1 91 -0.136196 hybrid +142_5-3 Q0 KILT_3329237-1 92 -0.139484 hybrid +142_5-3 Q0 MARCO_23_126361596-9 93 -0.139572 hybrid +142_5-3 Q0 MARCO_17_3401016447-26 94 -0.140205 hybrid +142_5-3 Q0 MARCO_06_485771024-1 95 -0.146886 hybrid +142_5-3 Q0 KILT_5960210-1 96 -0.147589 hybrid +142_5-3 Q0 MARCO_57_1555250081-7 97 -0.153110 hybrid +142_5-3 Q0 MARCO_47_156505055-2 98 -0.156504 hybrid +142_5-3 Q0 MARCO_07_259262889-1 99 -0.157348 hybrid +142_5-3 Q0 MARCO_57_1553725712-11 100 -0.157998 hybrid +142_5-5 Q0 MARCO_31_890709863-1 1 0.500000 hybrid +142_5-5 Q0 MARCO_03_804487947-1 2 0.337691 hybrid +142_5-5 Q0 MARCO_04_85570988-1 3 0.321444 hybrid +142_5-5 Q0 MARCO_04_129132076-2 4 0.315616 hybrid +142_5-5 Q0 MARCO_04_199655822-2 5 0.269470 hybrid +142_5-5 Q0 MARCO_31_890918659-3 6 0.257055 hybrid +142_5-5 Q0 MARCO_04_163634112-3 7 0.255618 hybrid +142_5-5 Q0 MARCO_58_1508113613-1 8 0.222925 hybrid +142_5-5 Q0 MARCO_31_227129805-3 9 0.205999 hybrid +142_5-5 Q0 KILT_22768351-1 10 0.187917 hybrid +142_5-5 Q0 MARCO_04_129132076-1 11 0.161291 hybrid +142_5-5 Q0 MARCO_31_890918659-2 12 0.137300 hybrid +142_5-5 Q0 MARCO_03_1702556126-3 13 0.119137 hybrid +142_5-5 Q0 MARCO_29_1327271037-1 14 0.110395 hybrid +142_5-5 Q0 MARCO_01_893146519-2 15 0.101213 hybrid +142_5-5 Q0 MARCO_19_2674002498-12 16 0.099577 hybrid +142_5-5 Q0 KILT_20122493-1 17 0.089637 hybrid +142_5-5 Q0 MARCO_30_197851814-1 18 0.087481 hybrid +142_5-5 Q0 MARCO_30_2013022621-1 19 0.056545 hybrid +142_5-5 Q0 MARCO_20_93305987-1 20 0.054708 hybrid +142_5-5 Q0 MARCO_47_380950325-1 21 0.042413 hybrid +142_5-5 Q0 MARCO_48_136848411-3 22 0.015109 hybrid +142_5-5 Q0 MARCO_48_606147230-6 23 0.009480 hybrid +142_5-5 Q0 MARCO_01_1088575910-2 24 0.009081 hybrid +142_5-5 Q0 MARCO_18_1616913451-2 25 0.009081 hybrid +142_5-5 Q0 MARCO_33_827028099-1 26 0.006127 hybrid +142_5-5 Q0 MARCO_31_848686365-10 27 0.002096 hybrid +142_5-5 Q0 MARCO_58_1515337119-1 28 -0.009361 hybrid +142_5-5 Q0 MARCO_48_1585275087-1 29 -0.010678 hybrid +142_5-5 Q0 MARCO_58_1506642595-1 30 -0.011916 hybrid +142_5-5 Q0 MARCO_01_704783737-29 31 -0.017225 hybrid +142_5-5 Q0 MARCO_27_1641185764-4 32 -0.017225 hybrid +142_5-5 Q0 MARCO_52_625302881-2 33 -0.018662 hybrid +142_5-5 Q0 KILT_67621-1 34 -0.019700 hybrid +142_5-5 Q0 MARCO_04_91290089-2 35 -0.023293 hybrid +142_5-5 Q0 MARCO_30_1038261334-1 36 -0.032075 hybrid +142_5-5 Q0 MARCO_28_1107653150-1 37 -0.032115 hybrid +142_5-5 Q0 MARCO_18_2412720052-11 38 -0.035148 hybrid +142_5-5 Q0 MARCO_04_111624257-1 39 -0.037384 hybrid +142_5-5 Q0 MARCO_57_1227901179-1 40 -0.037504 hybrid +142_5-5 Q0 KILT_1435040-1 41 -0.046006 hybrid +142_5-5 Q0 MARCO_00_168844242-2 42 -0.047443 hybrid +142_5-5 Q0 MARCO_47_1601261835-1 43 -0.050277 hybrid +142_5-5 Q0 MARCO_47_1602505698-3 44 -0.050278 hybrid +142_5-5 Q0 MARCO_02_1061281860-1 45 -0.052713 hybrid +142_5-5 Q0 MARCO_04_209010221-2 46 -0.054429 hybrid +142_5-5 Q0 MARCO_04_88913097-3 47 -0.054509 hybrid +142_5-5 Q0 MARCO_19_1796006251-23 48 -0.057423 hybrid +142_5-5 Q0 MARCO_30_1645809882-1 49 -0.057662 hybrid +142_5-5 Q0 MARCO_35_1703678344-1 50 -0.071394 hybrid +142_5-5 Q0 MARCO_47_1602505698-7 51 -0.073430 hybrid +142_5-5 Q0 MARCO_44_1964745951-4 52 -0.073869 hybrid +142_5-5 Q0 MARCO_44_1964745951-6 53 -0.073870 hybrid +142_5-5 Q0 MARCO_20_951285334-5 54 -0.078460 hybrid +142_5-5 Q0 MARCO_27_329941092-6 55 -0.078580 hybrid +142_5-5 Q0 KILT_42990138-1 56 -0.080217 hybrid +142_5-5 Q0 MARCO_58_1516318768-1 57 -0.085765 hybrid +142_5-5 Q0 MARCO_58_1505463998-1 58 -0.089278 hybrid +142_5-5 Q0 MARCO_27_1641185764-6 59 -0.089637 hybrid +142_5-5 Q0 MARCO_56_1362416952-1 60 -0.091274 hybrid +142_5-5 Q0 MARCO_53_286887826-6 61 -0.093829 hybrid +142_5-5 Q0 MARCO_16_69603537-1 62 -0.093869 hybrid +142_5-5 Q0 MARCO_37_86008475-6 63 -0.094427 hybrid +142_5-5 Q0 MARCO_08_756471455-1 64 -0.097342 hybrid +142_5-5 Q0 MARCO_48_136848411-1 65 -0.100455 hybrid +142_5-5 Q0 MARCO_53_286887826-4 66 -0.102132 hybrid +142_5-5 Q0 MARCO_48_1585278423-1 67 -0.107401 hybrid +142_5-5 Q0 MARCO_17_520804818-14 68 -0.108080 hybrid +142_5-5 Q0 MARCO_58_1405519265-2 69 -0.108838 hybrid +142_5-5 Q0 MARCO_13_662496130-4 70 -0.108918 hybrid +142_5-5 Q0 MARCO_41_1816072373-1 71 -0.115784 hybrid +142_5-5 Q0 MARCO_43_714092140-1 72 -0.115784 hybrid +142_5-5 Q0 KILT_49789844-1 73 -0.121093 hybrid +142_5-5 Q0 KILT_49822115-1 74 -0.121692 hybrid +142_5-5 Q0 KILT_49790482-1 75 -0.125325 hybrid +142_5-5 Q0 KILT_49800530-1 76 -0.125325 hybrid +142_5-5 Q0 KILT_34456198-1 77 -0.128318 hybrid +142_5-5 Q0 MARCO_47_1602505698-8 78 -0.128997 hybrid +142_5-5 Q0 MARCO_19_1796006251-4 79 -0.129077 hybrid +142_5-5 Q0 MARCO_03_1767727234-1 80 -0.129316 hybrid +142_5-5 Q0 KILT_3261711-1 81 -0.132151 hybrid +142_5-5 Q0 MARCO_33_455103245-14 82 -0.132829 hybrid +142_5-5 Q0 MARCO_24_762328327-33 83 -0.134226 hybrid +142_5-5 Q0 MARCO_03_444110329-1 84 -0.136063 hybrid +142_5-5 Q0 MARCO_50_2448710081-57 85 -0.136063 hybrid +142_5-5 Q0 MARCO_02_1061281860-3 86 -0.138458 hybrid +142_5-5 Q0 MARCO_29_1327271037-12 87 -0.142330 hybrid +142_5-5 Q0 MARCO_17_4740436647-4 88 -0.143368 hybrid +142_5-5 Q0 KILT_7825009-4 89 -0.143847 hybrid +142_5-5 Q0 MARCO_10_470574062-4 90 -0.144645 hybrid +142_5-5 Q0 KILT_18951905-68 91 -0.147839 hybrid +142_5-5 Q0 KILT_454699-13 92 -0.150673 hybrid +142_5-5 Q0 MARCO_16_2206555884-1 93 -0.151032 hybrid +142_5-5 Q0 KILT_34902789-1 94 -0.151511 hybrid +142_5-5 Q0 MARCO_04_181563425-1 95 -0.151870 hybrid +142_5-5 Q0 MARCO_56_1849852997-2 96 -0.155703 hybrid +142_5-5 Q0 MARCO_00_73261768-4 97 -0.160253 hybrid +142_5-5 Q0 MARCO_19_2045799633-12 98 -0.160254 hybrid +142_5-5 Q0 MARCO_51_876291753-12 99 -0.160254 hybrid +142_5-5 Q0 MARCO_54_466426969-5 100 -0.160254 hybrid +142_5-7 Q0 MARCO_04_113777060-3 1 0.500000 hybrid +142_5-7 Q0 MARCO_04_165784069-4 2 0.447296 hybrid +142_5-7 Q0 MARCO_04_109113832-3 3 0.318323 hybrid +142_5-7 Q0 MARCO_19_1931473931-2 4 0.254497 hybrid +142_5-7 Q0 MARCO_33_868388479-12 5 0.250829 hybrid +142_5-7 Q0 MARCO_00_418231658-1 6 0.166256 hybrid +142_5-7 Q0 MARCO_10_1612385551-16 7 0.165375 hybrid +142_5-7 Q0 MARCO_57_163956097-13 8 0.165375 hybrid +142_5-7 Q0 MARCO_43_1199677737-42 9 0.163556 hybrid +142_5-7 Q0 MARCO_44_1395908402-12 10 0.144188 hybrid +142_5-7 Q0 MARCO_24_32548538-1 11 0.132744 hybrid +142_5-7 Q0 MARCO_32_1007056214-21 12 0.130777 hybrid +142_5-7 Q0 MARCO_10_803208538-1 13 0.128224 hybrid +142_5-7 Q0 MARCO_13_429890505-1 14 0.128224 hybrid +142_5-7 Q0 MARCO_33_868655730-13 15 0.128224 hybrid +142_5-7 Q0 MARCO_52_1576671550-22 16 0.107389 hybrid +142_5-7 Q0 MARCO_12_1313288283-1 17 0.102929 hybrid +142_5-7 Q0 KILT_327582-3 18 0.096033 hybrid +142_5-7 Q0 KILT_28759353-22 19 0.057649 hybrid +142_5-7 Q0 MARCO_07_65961841-12 20 0.056739 hybrid +142_5-7 Q0 MARCO_33_1204879783-3 21 0.045588 hybrid +142_5-7 Q0 MARCO_40_1583135483-1 22 0.036814 hybrid +142_5-7 Q0 KILT_17249541-3 23 0.025692 hybrid +142_5-7 Q0 KILT_2758249-30 24 0.006236 hybrid +142_5-7 Q0 MARCO_05_693203043-2 25 -0.003301 hybrid +142_5-7 Q0 MARCO_07_28914901-7 26 -0.008789 hybrid +142_5-7 Q0 MARCO_28_956809085-1 27 -0.012457 hybrid +142_5-7 Q0 MARCO_06_97361245-7 28 -0.016947 hybrid +142_5-7 Q0 MARCO_13_471074249-2 29 -0.016947 hybrid +142_5-7 Q0 MARCO_19_2045799633-4 30 -0.027247 hybrid +142_5-7 Q0 MARCO_52_1576671550-12 31 -0.030974 hybrid +142_5-7 Q0 MARCO_10_1343331733-1 32 -0.036726 hybrid +142_5-7 Q0 MARCO_15_1930934013-11 33 -0.039484 hybrid +142_5-7 Q0 MARCO_30_963037345-1 34 -0.052455 hybrid +142_5-7 Q0 MARCO_19_2045799633-17 35 -0.055155 hybrid +142_5-7 Q0 MARCO_31_303104895-2 36 -0.059233 hybrid +142_5-7 Q0 MARCO_10_1612385551-24 37 -0.061933 hybrid +142_5-7 Q0 MARCO_52_1576925732-16 38 -0.067832 hybrid +142_5-7 Q0 MARCO_45_1311864081-1 39 -0.076459 hybrid +142_5-7 Q0 MARCO_45_1171104263-4 40 -0.076694 hybrid +142_5-7 Q0 MARCO_39_1442197277-4 41 -0.077075 hybrid +142_5-7 Q0 MARCO_50_2732036935-1 42 -0.077369 hybrid +142_5-7 Q0 MARCO_50_2732036935-3 43 -0.077369 hybrid +142_5-7 Q0 MARCO_52_1576962599-1 44 -0.079276 hybrid +142_5-7 Q0 MARCO_55_1679179033-1 45 -0.080010 hybrid +142_5-7 Q0 MARCO_04_209010221-2 46 -0.085527 hybrid +142_5-7 Q0 KILT_33075864-1 47 -0.088197 hybrid +142_5-7 Q0 MARCO_57_1367874132-1 48 -0.088960 hybrid +142_5-7 Q0 MARCO_10_1612385551-14 49 -0.091220 hybrid +142_5-7 Q0 MARCO_43_1199677737-49 50 -0.098439 hybrid +142_5-7 Q0 MARCO_20_343735186-1 51 -0.098908 hybrid +142_5-7 Q0 MARCO_03_1587404707-3 52 -0.098996 hybrid +142_5-7 Q0 MARCO_50_781658274-30 53 -0.104308 hybrid +142_5-7 Q0 MARCO_52_1472442561-12 54 -0.105423 hybrid +142_5-7 Q0 MARCO_03_404974066-21 55 -0.107066 hybrid +142_5-7 Q0 MARCO_33_827028099-1 56 -0.121181 hybrid +142_5-7 Q0 KILT_54042079-2 57 -0.128371 hybrid +142_5-7 Q0 MARCO_31_1227877602-1 58 -0.130366 hybrid +142_5-7 Q0 MARCO_34_1420419391-10 59 -0.130396 hybrid +142_5-7 Q0 MARCO_10_60317101-1 60 -0.133770 hybrid +142_5-7 Q0 MARCO_10_60317101-3 61 -0.133771 hybrid +142_5-7 Q0 KILT_2411478-2 62 -0.135619 hybrid +142_5-7 Q0 MARCO_54_457710829-25 63 -0.136852 hybrid +142_5-7 Q0 MARCO_34_1420922656-17 64 -0.137615 hybrid +142_5-7 Q0 MARCO_34_1420611550-7 65 -0.140989 hybrid +142_5-7 Q0 MARCO_34_1420629899-9 66 -0.140990 hybrid +142_5-7 Q0 MARCO_33_1204879783-1 67 -0.145802 hybrid +142_5-7 Q0 MARCO_03_404974066-18 68 -0.147123 hybrid +142_5-7 Q0 MARCO_17_718405512-5 69 -0.150791 hybrid +142_5-7 Q0 KILT_20610-25 70 -0.150850 hybrid +142_5-7 Q0 MARCO_50_2448710081-51 71 -0.150850 hybrid +142_5-7 Q0 KILT_2758249-33 72 -0.156630 hybrid +142_5-7 Q0 MARCO_08_997572908-1 73 -0.156631 hybrid +142_5-7 Q0 MARCO_24_1832376406-7 74 -0.156631 hybrid +142_5-7 Q0 MARCO_30_1645809882-13 75 -0.160211 hybrid +142_5-7 Q0 MARCO_28_956796884-1 76 -0.161179 hybrid +142_5-7 Q0 MARCO_27_93737071-1 77 -0.162089 hybrid +142_5-7 Q0 MARCO_17_481275423-6 78 -0.163791 hybrid +142_5-7 Q0 MARCO_47_1550050671-2 79 -0.163791 hybrid +142_5-7 Q0 KILT_2222-2 80 -0.170188 hybrid +142_5-7 Q0 KILT_45506843-3 81 -0.170188 hybrid +142_5-7 Q0 MARCO_17_885753890-36 82 -0.170189 hybrid +142_5-7 Q0 MARCO_03_404974066-2 83 -0.170540 hybrid +142_5-7 Q0 MARCO_03_445915974-1 84 -0.171890 hybrid +142_5-7 Q0 MARCO_33_868655730-12 85 -0.172536 hybrid +142_5-7 Q0 MARCO_50_2448710081-53 86 -0.174267 hybrid +142_5-7 Q0 MARCO_04_40312767-2 87 -0.179109 hybrid +142_5-7 Q0 MARCO_43_1199677737-40 88 -0.179989 hybrid +142_5-7 Q0 MARCO_08_997572908-2 89 -0.183540 hybrid +142_5-7 Q0 MARCO_30_1168775751-4 90 -0.183834 hybrid +142_5-7 Q0 MARCO_30_1173268043-4 91 -0.183834 hybrid +142_5-7 Q0 MARCO_56_1403695660-1 92 -0.185770 hybrid +142_5-7 Q0 KILT_44380271-2 93 -0.189380 hybrid +142_5-7 Q0 MARCO_28_956802896-1 94 -0.192138 hybrid +142_5-7 Q0 MARCO_24_1292031580-11 95 -0.197127 hybrid +142_5-7 Q0 MARCO_20_589199492-1 96 -0.198301 hybrid +142_5-7 Q0 MARCO_30_1958508143-12 97 -0.200795 hybrid +142_5-7 Q0 MARCO_58_1508113613-1 98 -0.200971 hybrid +142_5-7 Q0 MARCO_13_662496130-4 99 -0.201969 hybrid +142_5-7 Q0 KILT_27619007-7 100 -0.202292 hybrid +142_5-9 Q0 MARCO_08_632127924-1 1 0.500000 hybrid +142_5-9 Q0 MARCO_33_868347963-2 2 0.494183 hybrid +142_5-9 Q0 KILT_46564261-23 3 0.484102 hybrid +142_5-9 Q0 MARCO_34_1752340892-3 4 0.446944 hybrid +142_5-9 Q0 KILT_4967803-1 5 0.390079 hybrid +142_5-9 Q0 MARCO_16_2206283069-2 6 0.337186 hybrid +142_5-9 Q0 MARCO_50_594653562-1 7 0.284434 hybrid +142_5-9 Q0 MARCO_08_632127924-3 8 0.255546 hybrid +142_5-9 Q0 MARCO_32_1766097055-8 9 0.193974 hybrid +142_5-9 Q0 MARCO_45_997362083-1 10 0.180715 hybrid +142_5-9 Q0 KILT_7168919-2 11 0.180505 hybrid +142_5-9 Q0 MARCO_18_1672631797-2 12 0.166207 hybrid +142_5-9 Q0 MARCO_47_1573841321-3 13 0.160355 hybrid +142_5-9 Q0 KILT_4967803-5 14 0.140660 hybrid +142_5-9 Q0 MARCO_34_1752340892-1 15 0.132717 hybrid +142_5-9 Q0 MARCO_16_2206283069-11 16 0.121059 hybrid +142_5-9 Q0 KILT_42211547-1 17 0.106878 hybrid +142_5-9 Q0 MARCO_34_1778141449-4 18 0.091564 hybrid +142_5-9 Q0 KILT_4967803-10 19 0.090150 hybrid +142_5-9 Q0 MARCO_54_1199821837-5 20 0.084228 hybrid +142_5-9 Q0 MARCO_16_2206326968-16 21 0.058774 hybrid +142_5-9 Q0 MARCO_34_1752323477-9 22 0.042864 hybrid +142_5-9 Q0 MARCO_55_1712506719-4 23 0.027784 hybrid +142_5-9 Q0 MARCO_52_461366759-2 24 0.022340 hybrid +142_5-9 Q0 MARCO_07_271124511-3 25 0.019315 hybrid +142_5-9 Q0 MARCO_36_259056980-1 26 0.017773 hybrid +142_5-9 Q0 MARCO_39_670955540-31 27 0.009538 hybrid +142_5-9 Q0 MARCO_30_778282701-2 28 0.006524 hybrid +142_5-9 Q0 MARCO_50_594653562-2 29 0.005216 hybrid +142_5-9 Q0 MARCO_01_1087907517-6 30 -0.003989 hybrid +142_5-9 Q0 MARCO_18_1299865625-4 31 -0.005741 hybrid +142_5-9 Q0 MARCO_16_2206283069-3 32 -0.007342 hybrid +142_5-9 Q0 MARCO_25_937745370-8 33 -0.023684 hybrid +142_5-9 Q0 MARCO_04_1055356703-3 34 -0.024887 hybrid +142_5-9 Q0 MARCO_34_1778141449-1 35 -0.034477 hybrid +142_5-9 Q0 MARCO_03_1155604422-9 36 -0.040750 hybrid +142_5-9 Q0 KILT_4967803-2 37 -0.048939 hybrid +142_5-9 Q0 MARCO_22_1186906798-4 38 -0.050539 hybrid +142_5-9 Q0 MARCO_38_595193469-1 39 -0.051836 hybrid +142_5-9 Q0 MARCO_19_1955854098-2 40 -0.052794 hybrid +142_5-9 Q0 MARCO_51_876291753-15 41 -0.053728 hybrid +142_5-9 Q0 KILT_48551844-2 42 -0.060597 hybrid +142_5-9 Q0 KILT_2625258-1 43 -0.061414 hybrid +142_5-9 Q0 MARCO_37_305210397-8 44 -0.061835 hybrid +142_5-9 Q0 MARCO_27_93737071-1 45 -0.062676 hybrid +142_5-9 Q0 MARCO_30_213793238-1 46 -0.066087 hybrid +142_5-9 Q0 MARCO_16_3602952744-2 47 -0.072757 hybrid +142_5-9 Q0 MARCO_17_693365828-1 48 -0.074860 hybrid +142_5-9 Q0 MARCO_54_2086360355-1 49 -0.075082 hybrid +142_5-9 Q0 KILT_25126047-1 50 -0.076600 hybrid +142_5-9 Q0 MARCO_55_1685432076-1 51 -0.082406 hybrid +142_5-9 Q0 MARCO_18_2114119889-1 52 -0.087382 hybrid +142_5-9 Q0 KILT_2974325-1 53 -0.092241 hybrid +142_5-9 Q0 KILT_17335975-13 54 -0.092522 hybrid +142_5-9 Q0 MARCO_19_2201103427-15 55 -0.096353 hybrid +142_5-9 Q0 MARCO_04_91290089-1 56 -0.098689 hybrid +142_5-9 Q0 MARCO_03_1155604422-12 57 -0.099133 hybrid +142_5-9 Q0 MARCO_29_1447143343-1 58 -0.101762 hybrid +142_5-9 Q0 MARCO_19_831367637-4 59 -0.104051 hybrid +142_5-9 Q0 MARCO_33_868452360-1 60 -0.104332 hybrid +142_5-9 Q0 MARCO_16_2262210383-2 61 -0.107404 hybrid +142_5-9 Q0 KILT_27209869-1 62 -0.112952 hybrid +142_5-9 Q0 MARCO_17_3369212537-10 63 -0.113069 hybrid +142_5-9 Q0 MARCO_35_1745685522-1 64 -0.113233 hybrid +142_5-9 Q0 KILT_21235118-3 65 -0.116340 hybrid +142_5-9 Q0 MARCO_57_1266592091-1 66 -0.120090 hybrid +142_5-9 Q0 MARCO_16_2206326968-55 67 -0.122437 hybrid +142_5-9 Q0 MARCO_24_1832376406-8 68 -0.122438 hybrid +142_5-9 Q0 MARCO_20_208807894-4 69 -0.126024 hybrid +142_5-9 Q0 KILT_2625258-3 70 -0.126795 hybrid +142_5-9 Q0 MARCO_46_1389720552-1 71 -0.126888 hybrid +142_5-9 Q0 MARCO_45_5519406-2 72 -0.127040 hybrid +142_5-9 Q0 MARCO_17_748684876-1 73 -0.130276 hybrid +142_5-9 Q0 KILT_17335975-2 74 -0.133044 hybrid +142_5-9 Q0 MARCO_21_1369354727-3 75 -0.137273 hybrid +142_5-9 Q0 MARCO_18_1233591122-10 76 -0.137506 hybrid +142_5-9 Q0 MARCO_34_1752379868-3 77 -0.139597 hybrid +142_5-9 Q0 MARCO_50_594653562-5 78 -0.141630 hybrid +142_5-9 Q0 MARCO_59_257252666-1 79 -0.145461 hybrid +142_5-9 Q0 MARCO_03_1155604422-1 80 -0.146921 hybrid +142_5-9 Q0 MARCO_18_2114119889-4 81 -0.148090 hybrid +142_5-9 Q0 MARCO_34_1752379868-2 82 -0.148101 hybrid +142_5-9 Q0 MARCO_25_937668882-9 83 -0.151629 hybrid +142_5-9 Q0 MARCO_22_98914933-1 84 -0.152470 hybrid +142_5-9 Q0 MARCO_46_250489649-2 85 -0.153194 hybrid +142_5-9 Q0 MARCO_18_2114119889-2 86 -0.157061 hybrid +142_5-9 Q0 MARCO_11_1186712487-11 87 -0.157586 hybrid +142_5-9 Q0 MARCO_34_1752351119-7 88 -0.158463 hybrid +142_5-9 Q0 KILT_30865437-9 89 -0.159163 hybrid +142_5-9 Q0 KILT_17335975-37 90 -0.159864 hybrid +142_5-9 Q0 MARCO_51_876291753-1 91 -0.160986 hybrid +142_5-9 Q0 KILT_25815454-1 92 -0.161885 hybrid +142_5-9 Q0 MARCO_36_1325583578-2 93 -0.162820 hybrid +142_5-9 Q0 MARCO_00_852431378-2 94 -0.163778 hybrid +142_5-9 Q0 KILT_67340-48 95 -0.163778 hybrid +142_5-9 Q0 MARCO_00_418209982-1 96 -0.163918 hybrid +142_5-9 Q0 MARCO_04_1055356703-1 97 -0.165752 hybrid +142_5-9 Q0 MARCO_34_1772838085-3 98 -0.169630 hybrid +142_5-9 Q0 MARCO_30_742746465-5 99 -0.172854 hybrid +142_5-9 Q0 MARCO_10_803214201-1 100 -0.173473 hybrid +142_6-1 Q0 MARCO_55_1245662540-6 1 0.500000 hybrid +142_6-1 Q0 MARCO_33_868655730-9 2 0.336943 hybrid +142_6-1 Q0 MARCO_33_868655730-8 3 0.320690 hybrid +142_6-1 Q0 MARCO_55_1245662540-1 4 0.261259 hybrid +142_6-1 Q0 MARCO_52_1472442561-1 5 0.245040 hybrid +142_6-1 Q0 MARCO_52_1472442561-9 6 0.236106 hybrid +142_6-1 Q0 MARCO_25_297692704-10 7 0.191607 hybrid +142_6-1 Q0 MARCO_01_651672954-4 8 0.171128 hybrid +142_6-1 Q0 MARCO_16_2206432408-24 9 0.145235 hybrid +142_6-1 Q0 MARCO_04_739200346-4 10 0.123086 hybrid +142_6-1 Q0 MARCO_09_727719485-4 11 0.123086 hybrid +142_6-1 Q0 MARCO_28_329136270-3 12 0.109176 hybrid +142_6-1 Q0 MARCO_02_859848405-4 13 0.077992 hybrid +142_6-1 Q0 MARCO_25_794773696-8 14 0.072208 hybrid +142_6-1 Q0 MARCO_13_620086192-13 15 0.069709 hybrid +142_6-1 Q0 MARCO_45_22302590-7 16 0.068644 hybrid +142_6-1 Q0 MARCO_06_486574834-19 17 0.060383 hybrid +142_6-1 Q0 MARCO_25_660341045-6 18 0.055059 hybrid +142_6-1 Q0 MARCO_16_2206432408-20 19 0.047739 hybrid +142_6-1 Q0 MARCO_55_524139535-2 20 0.033537 hybrid +142_6-1 Q0 MARCO_45_22302590-9 21 0.023035 hybrid +142_6-1 Q0 MARCO_23_203843672-4 22 0.001412 hybrid +142_6-1 Q0 MARCO_55_1245662540-8 23 -0.001681 hybrid +142_6-1 Q0 MARCO_02_859848405-3 24 -0.003172 hybrid +142_6-1 Q0 MARCO_23_203843672-1 25 -0.005851 hybrid +142_6-1 Q0 MARCO_02_1717587934-4 26 -0.008395 hybrid +142_6-1 Q0 MARCO_28_986422727-3 27 -0.008396 hybrid +142_6-1 Q0 MARCO_44_1770848712-2 28 -0.012901 hybrid +142_6-1 Q0 MARCO_52_1472442561-10 29 -0.034546 hybrid +142_6-1 Q0 KILT_2222-23 30 -0.046293 hybrid +142_6-1 Q0 MARCO_06_34190103-1 31 -0.054173 hybrid +142_6-1 Q0 MARCO_37_1194837970-3 32 -0.059688 hybrid +142_6-1 Q0 MARCO_17_3851175486-56 33 -0.064922 hybrid +142_6-1 Q0 MARCO_18_106335865-1 34 -0.076232 hybrid +142_6-1 Q0 MARCO_31_1694990413-1 35 -0.082039 hybrid +142_6-1 Q0 KILT_46207366-1 36 -0.083552 hybrid +142_6-1 Q0 MARCO_20_315498384-10 37 -0.093382 hybrid +142_6-1 Q0 MARCO_40_1404982256-1 38 -0.097978 hybrid +142_6-1 Q0 KILT_12255257-2 39 -0.107080 hybrid +142_6-1 Q0 KILT_5302486-3 40 -0.107147 hybrid +142_6-1 Q0 MARCO_18_106335865-2 41 -0.114410 hybrid +142_6-1 Q0 KILT_16594665-10 42 -0.129800 hybrid +142_6-1 Q0 MARCO_52_1635048905-5 43 -0.134620 hybrid +142_6-1 Q0 MARCO_03_1587404707-2 44 -0.139137 hybrid +142_6-1 Q0 MARCO_02_1261032022-3 45 -0.140796 hybrid +142_6-1 Q0 MARCO_38_1575935851-4 46 -0.140796 hybrid +142_6-1 Q0 MARCO_38_1575935851-8 47 -0.140796 hybrid +142_6-1 Q0 MARCO_55_25409365-5 48 -0.145437 hybrid +142_6-1 Q0 MARCO_19_1313158466-413 49 -0.151669 hybrid +142_6-1 Q0 MARCO_01_1159938790-7 50 -0.156859 hybrid +142_6-1 Q0 MARCO_51_875663106-1 51 -0.156859 hybrid +142_6-1 Q0 MARCO_52_1635048905-4 52 -0.164313 hybrid +142_6-1 Q0 MARCO_35_465018758-6 53 -0.169805 hybrid +142_6-1 Q0 MARCO_00_1055590783-4 54 -0.170265 hybrid +142_6-1 Q0 MARCO_34_1099412811-2 55 -0.174188 hybrid +142_6-1 Q0 KILT_164372-7 56 -0.179422 hybrid +142_6-1 Q0 MARCO_40_920538064-8 57 -0.184041 hybrid +142_6-1 Q0 MARCO_10_624819786-9 58 -0.188860 hybrid +142_6-1 Q0 MARCO_16_4024952049-8 59 -0.192302 hybrid +142_6-1 Q0 MARCO_20_232780208-6 60 -0.192302 hybrid +142_6-1 Q0 MARCO_40_501412170-2 61 -0.198085 hybrid +142_6-1 Q0 MARCO_41_1062297429-15 62 -0.200731 hybrid +142_6-1 Q0 MARCO_33_455103245-12 63 -0.201145 hybrid +142_6-1 Q0 MARCO_06_34190103-3 64 -0.202737 hybrid +142_6-1 Q0 MARCO_50_1690747119-19 65 -0.205248 hybrid +142_6-1 Q0 MARCO_40_919328460-1 66 -0.205304 hybrid +142_6-1 Q0 MARCO_12_1283048623-5 67 -0.208543 hybrid +142_6-1 Q0 MARCO_52_1635048905-2 68 -0.211648 hybrid +142_6-1 Q0 MARCO_33_455103245-11 69 -0.219506 hybrid +142_6-1 Q0 MARCO_40_514668580-8 70 -0.221075 hybrid +142_6-1 Q0 MARCO_06_353388148-6 71 -0.221692 hybrid +142_6-1 Q0 MARCO_16_2205454508-13 72 -0.229202 hybrid +142_6-1 Q0 MARCO_37_171316582-6 73 -0.229202 hybrid +142_6-1 Q0 MARCO_45_22302590-3 74 -0.229202 hybrid +142_6-1 Q0 MARCO_33_101404883-5 75 -0.233326 hybrid +142_6-1 Q0 KILT_12255257-1 76 -0.234279 hybrid +142_6-1 Q0 MARCO_19_1394828228-3 77 -0.234279 hybrid +142_6-1 Q0 MARCO_40_1329492568-4 78 -0.237440 hybrid +142_6-1 Q0 MARCO_03_304517922-3 79 -0.240960 hybrid +142_6-1 Q0 MARCO_17_674008977-4 80 -0.240960 hybrid +142_6-1 Q0 MARCO_27_30574068-2 81 -0.240960 hybrid +142_6-1 Q0 MARCO_55_524139535-7 82 -0.241150 hybrid +142_6-1 Q0 MARCO_18_1462330817-16 83 -0.245925 hybrid +142_6-1 Q0 MARCO_02_859848405-1 84 -0.249266 hybrid +142_6-1 Q0 MARCO_08_1170054893-1 85 -0.251664 hybrid +142_6-1 Q0 MARCO_08_1170054893-3 86 -0.251877 hybrid +142_6-1 Q0 MARCO_00_1601426549-1 87 -0.256462 hybrid +142_6-1 Q0 MARCO_08_1170054893-2 88 -0.256507 hybrid +142_6-1 Q0 MARCO_30_1033038304-3 89 -0.256507 hybrid +142_6-1 Q0 MARCO_22_1189445202-15 90 -0.257325 hybrid +142_6-1 Q0 MARCO_36_127164723-1 91 -0.257325 hybrid +142_6-1 Q0 MARCO_15_278690796-3 92 -0.262941 hybrid +142_6-1 Q0 MARCO_55_571877741-3 93 -0.262941 hybrid +142_6-1 Q0 MARCO_40_514668580-9 94 -0.263053 hybrid +142_6-1 Q0 KILT_22524325-1 95 -0.263142 hybrid +142_6-1 Q0 MARCO_36_1738863153-1 96 -0.263994 hybrid +142_6-1 Q0 MARCO_48_1161104858-2 97 -0.265362 hybrid +142_6-1 Q0 MARCO_33_590231696-4 98 -0.266079 hybrid +142_6-1 Q0 MARCO_30_197775896-7 99 -0.268489 hybrid +142_6-1 Q0 MARCO_56_112930611-2 100 -0.268489 hybrid +142_6-3 Q0 MARCO_55_1245662540-6 1 0.500000 hybrid +142_6-3 Q0 MARCO_55_1245662540-1 2 0.253255 hybrid +142_6-3 Q0 MARCO_25_297692704-10 3 0.241557 hybrid +142_6-3 Q0 MARCO_33_868655730-8 4 0.224907 hybrid +142_6-3 Q0 MARCO_33_868655730-9 5 0.186537 hybrid +142_6-3 Q0 MARCO_52_1472442561-9 6 0.174948 hybrid +142_6-3 Q0 MARCO_52_1472442561-1 7 0.174213 hybrid +142_6-3 Q0 MARCO_55_1245662540-8 8 0.168497 hybrid +142_6-3 Q0 MARCO_02_1717587934-4 9 0.151514 hybrid +142_6-3 Q0 MARCO_28_986422727-3 10 0.151514 hybrid +142_6-3 Q0 MARCO_04_739200346-4 11 0.144809 hybrid +142_6-3 Q0 MARCO_09_727719485-4 12 0.144809 hybrid +142_6-3 Q0 MARCO_27_30574068-2 13 0.088409 hybrid +142_6-3 Q0 MARCO_02_859848405-4 14 0.059797 hybrid +142_6-3 Q0 MARCO_01_651672954-4 15 0.012539 hybrid +142_6-3 Q0 MARCO_25_660341045-6 16 0.003974 hybrid +142_6-3 Q0 MARCO_31_1694990413-1 17 -0.012490 hybrid +142_6-3 Q0 MARCO_01_1159938790-7 18 -0.032860 hybrid +142_6-3 Q0 MARCO_25_794773696-8 19 -0.046514 hybrid +142_6-3 Q0 MARCO_02_859848405-3 20 -0.059063 hybrid +142_6-3 Q0 MARCO_16_2206432408-20 21 -0.066013 hybrid +142_6-3 Q0 MARCO_16_2206432408-24 22 -0.067550 hybrid +142_6-3 Q0 MARCO_37_1194837970-3 23 -0.068607 hybrid +142_6-3 Q0 MARCO_45_22302590-9 24 -0.087586 hybrid +142_6-3 Q0 MARCO_40_920538064-8 25 -0.099773 hybrid +142_6-3 Q0 MARCO_08_1170054893-3 26 -0.106116 hybrid +142_6-3 Q0 MARCO_45_22302590-7 27 -0.107153 hybrid +142_6-3 Q0 KILT_12255257-2 28 -0.107212 hybrid +142_6-3 Q0 MARCO_13_154095447-4 29 -0.133983 hybrid +142_6-3 Q0 MARCO_28_329136270-3 30 -0.135217 hybrid +142_6-3 Q0 MARCO_33_101404883-5 31 -0.136890 hybrid +142_6-3 Q0 MARCO_20_315498384-10 32 -0.137439 hybrid +142_6-3 Q0 MARCO_04_1474402086-4 33 -0.142763 hybrid +142_6-3 Q0 MARCO_06_486574834-19 34 -0.147726 hybrid +142_6-3 Q0 KILT_2222-23 35 -0.148128 hybrid +142_6-3 Q0 MARCO_08_1170054893-1 36 -0.151573 hybrid +142_6-3 Q0 MARCO_26_1683729744-7 37 -0.157064 hybrid +142_6-3 Q0 MARCO_22_1189445202-15 38 -0.162007 hybrid +142_6-3 Q0 MARCO_00_1055590783-4 39 -0.165061 hybrid +142_6-3 Q0 MARCO_13_620086192-13 40 -0.171336 hybrid +142_6-3 Q0 MARCO_07_1252886573-2 41 -0.173029 hybrid +142_6-3 Q0 MARCO_18_106335865-1 42 -0.174272 hybrid +142_6-3 Q0 MARCO_35_465018758-6 43 -0.175378 hybrid +142_6-3 Q0 MARCO_52_1472442561-10 44 -0.177884 hybrid +142_6-3 Q0 MARCO_40_514668580-8 45 -0.178344 hybrid +142_6-3 Q0 MARCO_52_1635048905-5 46 -0.179157 hybrid +142_6-3 Q0 KILT_46207366-1 47 -0.180664 hybrid +142_6-3 Q0 MARCO_30_197775896-7 48 -0.187173 hybrid +142_6-3 Q0 MARCO_41_1062297429-15 49 -0.189346 hybrid +142_6-3 Q0 MARCO_25_660341045-8 50 -0.195151 hybrid +142_6-3 Q0 MARCO_55_524139535-2 51 -0.199722 hybrid +142_6-3 Q0 MARCO_23_203843672-4 52 -0.201210 hybrid +142_6-3 Q0 KILT_5302486-3 53 -0.201269 hybrid +142_6-3 Q0 MARCO_33_868388479-12 54 -0.203863 hybrid +142_6-3 Q0 MARCO_18_106335865-2 55 -0.207611 hybrid +142_6-3 Q0 MARCO_50_2448710081-50 56 -0.208169 hybrid +142_6-3 Q0 MARCO_08_1170054893-2 57 -0.213161 hybrid +142_6-3 Q0 MARCO_06_34190103-1 58 -0.216039 hybrid +142_6-3 Q0 MARCO_02_859848405-1 59 -0.218281 hybrid +142_6-3 Q0 MARCO_55_247213724-16 60 -0.218281 hybrid +142_6-3 Q0 MARCO_52_1621186195-5 61 -0.218721 hybrid +142_6-3 Q0 KILT_16594665-10 62 -0.221051 hybrid +142_6-3 Q0 MARCO_54_598616069-1 63 -0.221942 hybrid +142_6-3 Q0 MARCO_01_704783737-31 64 -0.222558 hybrid +142_6-3 Q0 MARCO_44_1770848712-2 65 -0.224604 hybrid +142_6-3 Q0 MARCO_02_1261032022-3 66 -0.230653 hybrid +142_6-3 Q0 MARCO_38_1575935851-4 67 -0.230653 hybrid +142_6-3 Q0 MARCO_38_1575935851-8 68 -0.230653 hybrid +142_6-3 Q0 MARCO_36_127164723-1 69 -0.241518 hybrid +142_6-3 Q0 MARCO_50_1271011813-17 70 -0.244200 hybrid +142_6-3 Q0 MARCO_51_875663106-1 71 -0.244680 hybrid +142_6-3 Q0 MARCO_55_25409365-5 72 -0.246520 hybrid +142_6-3 Q0 MARCO_20_1433209415-1 73 -0.248899 hybrid +142_6-3 Q0 MARCO_26_228061710-1 74 -0.249995 hybrid +142_6-3 Q0 MARCO_03_304517922-3 75 -0.250514 hybrid +142_6-3 Q0 MARCO_04_118351913-3 76 -0.250798 hybrid +142_6-3 Q0 MARCO_52_1635048905-4 77 -0.251189 hybrid +142_6-3 Q0 MARCO_18_1462330817-16 78 -0.253353 hybrid +142_6-3 Q0 MARCO_50_1441723234-17 79 -0.255555 hybrid +142_6-3 Q0 MARCO_17_3851175486-56 80 -0.256338 hybrid +142_6-3 Q0 MARCO_54_1054320953-5 81 -0.256700 hybrid +142_6-3 Q0 MARCO_19_1313158466-413 82 -0.263092 hybrid +142_6-3 Q0 MARCO_28_984794031-5 83 -0.263435 hybrid +142_6-3 Q0 KILT_164372-7 84 -0.264384 hybrid +142_6-3 Q0 MARCO_09_1309744505-6 85 -0.265490 hybrid +142_6-3 Q0 MARCO_00_1189344270-22 86 -0.265852 hybrid +142_6-3 Q0 MARCO_10_624819786-9 87 -0.272626 hybrid +142_6-3 Q0 MARCO_16_4024952049-8 88 -0.275631 hybrid +142_6-3 Q0 MARCO_20_232780208-6 89 -0.275631 hybrid +142_6-3 Q0 MARCO_50_2863122322-4 90 -0.278342 hybrid +142_6-3 Q0 MARCO_09_1309744505-3 91 -0.279027 hybrid +142_6-3 Q0 MARCO_52_1635506086-4 92 -0.280613 hybrid +142_6-3 Q0 MARCO_34_1099412811-2 93 -0.282062 hybrid +142_6-3 Q0 MARCO_50_1954392654-9 94 -0.282532 hybrid +142_6-3 Q0 MARCO_28_985963656-2 95 -0.282806 hybrid +142_6-3 Q0 MARCO_40_1404968498-2 96 -0.283971 hybrid +142_6-3 Q0 MARCO_45_1295334392-1 97 -0.283990 hybrid +142_6-3 Q0 MARCO_52_1635048905-2 98 -0.284411 hybrid +142_6-3 Q0 MARCO_40_501412170-2 99 -0.284597 hybrid +142_6-3 Q0 MARCO_20_1432399742-2 100 -0.285155 hybrid +142_7-1 Q0 MARCO_03_444110329-1 1 0.500000 hybrid +142_7-1 Q0 MARCO_10_1612385551-2 2 0.491849 hybrid +142_7-1 Q0 MARCO_54_1821438646-9 3 0.406995 hybrid +142_7-1 Q0 MARCO_44_1920711678-2 4 0.399353 hybrid +142_7-1 Q0 MARCO_55_316070415-3 5 0.344641 hybrid +142_7-1 Q0 MARCO_38_256944338-2 6 0.251039 hybrid +142_7-1 Q0 MARCO_24_1494711467-42 7 0.220281 hybrid +142_7-1 Q0 MARCO_10_1612385551-4 8 0.211435 hybrid +142_7-1 Q0 MARCO_03_539017592-1 9 0.195498 hybrid +142_7-1 Q0 MARCO_55_316070415-1 10 0.189702 hybrid +142_7-1 Q0 MARCO_09_668405802-1 11 0.186135 hybrid +142_7-1 Q0 MARCO_55_1226350753-2 12 0.176583 hybrid +142_7-1 Q0 MARCO_22_846187279-8 13 0.143186 hybrid +142_7-1 Q0 MARCO_03_324305277-5 14 0.134750 hybrid +142_7-1 Q0 MARCO_55_1233612003-4 15 0.133278 hybrid +142_7-1 Q0 MARCO_44_597642201-6 16 0.126402 hybrid +142_7-1 Q0 MARCO_22_846187279-4 17 0.122389 hybrid +142_7-1 Q0 MARCO_44_1920711678-3 18 0.112918 hybrid +142_7-1 Q0 MARCO_54_1821438646-1 19 0.104714 hybrid +142_7-1 Q0 MARCO_52_1576671550-15 20 0.101254 hybrid +142_7-1 Q0 MARCO_22_846187279-23 21 0.100701 hybrid +142_7-1 Q0 MARCO_54_1821438646-4 22 0.096224 hybrid +142_7-1 Q0 MARCO_54_1821438646-5 23 0.090008 hybrid +142_7-1 Q0 MARCO_57_2292388215-1 24 0.088751 hybrid +142_7-1 Q0 MARCO_30_1081355542-30 25 0.086504 hybrid +142_7-1 Q0 MARCO_09_893833241-5 26 0.083748 hybrid +142_7-1 Q0 MARCO_56_1353248874-2 27 0.078478 hybrid +142_7-1 Q0 MARCO_54_1821438646-3 28 0.073965 hybrid +142_7-1 Q0 MARCO_55_1233612003-3 29 0.073109 hybrid +142_7-1 Q0 MARCO_43_782572363-1 30 0.063085 hybrid +142_7-1 Q0 MARCO_22_846187279-22 31 0.062836 hybrid +142_7-1 Q0 MARCO_09_668405802-2 32 0.053811 hybrid +142_7-1 Q0 MARCO_55_316070415-15 33 0.048183 hybrid +142_7-1 Q0 MARCO_30_1078961907-1 34 0.045749 hybrid +142_7-1 Q0 MARCO_01_1132954638-2 35 0.044616 hybrid +142_7-1 Q0 MARCO_54_1690212117-5 36 0.044518 hybrid +142_7-1 Q0 MARCO_58_1499458452-1 37 0.044135 hybrid +142_7-1 Q0 MARCO_38_256944338-5 38 0.041700 hybrid +142_7-1 Q0 MARCO_34_72552988-1 39 0.040425 hybrid +142_7-1 Q0 MARCO_04_1008113445-1 40 0.036590 hybrid +142_7-1 Q0 MARCO_22_846187279-20 41 0.035832 hybrid +142_7-1 Q0 MARCO_54_1821438646-8 42 0.031231 hybrid +142_7-1 Q0 MARCO_56_1855702377-17 43 0.024881 hybrid +142_7-1 Q0 MARCO_38_256944338-1 44 0.021064 hybrid +142_7-1 Q0 MARCO_22_846187279-26 45 0.019557 hybrid +142_7-1 Q0 MARCO_32_1740544110-13 46 0.019093 hybrid +142_7-1 Q0 MARCO_30_1024441304-1 47 0.018380 hybrid +142_7-1 Q0 MARCO_30_1004788738-2 48 0.014759 hybrid +142_7-1 Q0 MARCO_55_316131939-3 49 0.012467 hybrid +142_7-1 Q0 MARCO_22_846187279-10 50 0.006332 hybrid +142_7-1 Q0 MARCO_34_1420419391-3 51 0.002381 hybrid +142_7-1 Q0 MARCO_23_670215090-2 52 -0.003888 hybrid +142_7-1 Q0 MARCO_55_316070415-2 53 -0.005913 hybrid +142_7-1 Q0 MARCO_38_256944338-9 54 -0.007955 hybrid +142_7-1 Q0 MARCO_13_429894363-2 55 -0.010006 hybrid +142_7-1 Q0 MARCO_30_1645809882-12 56 -0.010907 hybrid +142_7-1 Q0 MARCO_04_556306459-1 57 -0.011745 hybrid +142_7-1 Q0 MARCO_38_256944338-4 58 -0.013261 hybrid +142_7-1 Q0 MARCO_57_1214887757-2 59 -0.013502 hybrid +142_7-1 Q0 MARCO_22_846187279-5 60 -0.019566 hybrid +142_7-1 Q0 MARCO_28_1651236929-7 61 -0.023017 hybrid +142_7-1 Q0 MARCO_01_1859820011-3 62 -0.025095 hybrid +142_7-1 Q0 MARCO_03_324305277-1 63 -0.025300 hybrid +142_7-1 Q0 MARCO_50_2074769870-29 64 -0.026379 hybrid +142_7-1 Q0 MARCO_54_1821438646-2 65 -0.027003 hybrid +142_7-1 Q0 MARCO_34_72552988-4 66 -0.027690 hybrid +142_7-1 Q0 MARCO_03_721593473-2 67 -0.028412 hybrid +142_7-1 Q0 MARCO_03_324305277-2 68 -0.029429 hybrid +142_7-1 Q0 MARCO_22_846187279-21 69 -0.029893 hybrid +142_7-1 Q0 MARCO_28_1651236929-6 70 -0.031266 hybrid +142_7-1 Q0 MARCO_22_846187279-9 71 -0.034200 hybrid +142_7-1 Q0 MARCO_55_1689162150-3 72 -0.034601 hybrid +142_7-1 Q0 MARCO_22_846220311-4 73 -0.037045 hybrid +142_7-1 Q0 MARCO_55_1654783944-11 74 -0.038971 hybrid +142_7-1 Q0 MARCO_32_387484335-5 75 -0.039453 hybrid +142_7-1 Q0 MARCO_55_316131939-5 76 -0.039453 hybrid +142_7-1 Q0 MARCO_28_1651236929-8 77 -0.039497 hybrid +142_7-1 Q0 MARCO_48_1012925883-3 78 -0.039586 hybrid +142_7-1 Q0 MARCO_30_1958508143-12 79 -0.039667 hybrid +142_7-1 Q0 MARCO_29_1447180055-3 80 -0.041058 hybrid +142_7-1 Q0 MARCO_38_256944338-3 81 -0.043065 hybrid +142_7-1 Q0 MARCO_34_72552988-5 82 -0.043546 hybrid +142_7-1 Q0 MARCO_55_316070415-11 83 -0.044714 hybrid +142_7-1 Q0 MARCO_01_782253747-1 84 -0.045142 hybrid +142_7-1 Q0 MARCO_04_345387698-1 85 -0.045472 hybrid +142_7-1 Q0 MARCO_35_128151915-16 86 -0.046846 hybrid +142_7-1 Q0 MARCO_22_846187279-1 87 -0.047773 hybrid +142_7-1 Q0 MARCO_05_1351112908-2 88 -0.047996 hybrid +142_7-1 Q0 MARCO_03_324305277-4 89 -0.048273 hybrid +142_7-1 Q0 MARCO_38_256944338-7 90 -0.049441 hybrid +142_7-1 Q0 MARCO_30_1024441304-3 91 -0.050431 hybrid +142_7-1 Q0 MARCO_38_256944338-8 92 -0.050823 hybrid +142_7-1 Q0 MARCO_44_1920711678-1 93 -0.053383 hybrid +142_7-1 Q0 MARCO_34_72552988-2 94 -0.054542 hybrid +142_7-1 Q0 MARCO_22_846187279-17 95 -0.054667 hybrid +142_7-1 Q0 MARCO_03_324305277-3 96 -0.054720 hybrid +142_7-1 Q0 MARCO_51_1473003357-5 97 -0.055701 hybrid +142_7-1 Q0 MARCO_55_1689162150-8 98 -0.055862 hybrid +142_7-1 Q0 MARCO_55_316131939-1 99 -0.056700 hybrid +142_7-1 Q0 MARCO_55_1654783944-8 100 -0.057208 hybrid +142_8-1 Q0 MARCO_04_99228362-2 1 0.500000 hybrid +142_8-1 Q0 MARCO_46_532855364-1 2 0.287122 hybrid +142_8-1 Q0 MARCO_04_99228362-3 3 0.254969 hybrid +142_8-1 Q0 MARCO_25_83632931-1 4 0.253595 hybrid +142_8-1 Q0 MARCO_50_1122672093-14 5 0.224962 hybrid +142_8-1 Q0 MARCO_03_1594732117-1 6 0.214703 hybrid +142_8-1 Q0 MARCO_22_1843328364-1 7 0.211869 hybrid +142_8-1 Q0 MARCO_26_767418330-1 8 0.202983 hybrid +142_8-1 Q0 MARCO_50_1948948503-13 9 0.202983 hybrid +142_8-1 Q0 MARCO_58_418672816-14 10 0.185555 hybrid +142_8-1 Q0 MARCO_00_1397853465-2 11 0.179502 hybrid +142_8-1 Q0 MARCO_24_667484948-1 12 0.169543 hybrid +142_8-1 Q0 MARCO_07_492899890-1 13 0.168512 hybrid +142_8-1 Q0 MARCO_30_75908412-4 14 0.167053 hybrid +142_8-1 Q0 MARCO_25_1797973461-1 15 0.163876 hybrid +142_8-1 Q0 MARCO_00_1424571421-1 16 0.161386 hybrid +142_8-1 Q0 MARCO_58_1545474295-1 17 0.155033 hybrid +142_8-1 Q0 MARCO_04_193064962-3 18 0.152973 hybrid +142_8-1 Q0 MARCO_08_1313206637-1 19 0.151127 hybrid +142_8-1 Q0 MARCO_24_667386638-1 20 0.148551 hybrid +142_8-1 Q0 MARCO_13_429808957-1 21 0.142842 hybrid +142_8-1 Q0 MARCO_46_532794430-1 22 0.139493 hybrid +142_8-1 Q0 MARCO_30_75908412-8 23 0.139236 hybrid +142_8-1 Q0 MARCO_07_1231707281-1 24 0.137862 hybrid +142_8-1 Q0 MARCO_24_667355633-2 25 0.109272 hybrid +142_8-1 Q0 MARCO_06_381132527-1 26 0.107512 hybrid +142_8-1 Q0 MARCO_06_902668541-1 27 0.107383 hybrid +142_8-1 Q0 MARCO_48_1337090955-1 28 0.107383 hybrid +142_8-1 Q0 MARCO_19_2196766055-1 29 0.105323 hybrid +142_8-1 Q0 MARCO_47_136133583-1 30 0.097252 hybrid +142_8-1 Q0 MARCO_00_1424573078-1 31 0.096608 hybrid +142_8-1 Q0 MARCO_40_624081889-3 32 0.095149 hybrid +142_8-1 Q0 MARCO_45_5492064-5 33 0.083945 hybrid +142_8-1 Q0 MARCO_26_235646266-1 34 0.082271 hybrid +142_8-1 Q0 MARCO_25_1694780894-1 35 0.082056 hybrid +142_8-1 Q0 MARCO_51_1402719622-2 36 0.082056 hybrid +142_8-1 Q0 MARCO_30_1515212325-2 37 0.074973 hybrid +142_8-1 Q0 MARCO_01_1939815120-3 38 0.069264 hybrid +142_8-1 Q0 MARCO_55_95203735-1 39 0.067461 hybrid +142_8-1 Q0 MARCO_25_83632931-3 40 0.052522 hybrid +142_8-1 Q0 MARCO_13_913799025-1 41 0.047628 hybrid +142_8-1 Q0 MARCO_55_16758168-1 42 0.044451 hybrid +142_8-1 Q0 MARCO_57_915533078-1 43 0.044065 hybrid +142_8-1 Q0 MARCO_29_1707891563-1 44 0.042906 hybrid +142_8-1 Q0 MARCO_37_1057559306-2 45 0.040502 hybrid +142_8-1 Q0 MARCO_31_1596318239-2 46 0.038012 hybrid +142_8-1 Q0 MARCO_30_1515212325-1 47 0.035265 hybrid +142_8-1 Q0 MARCO_39_250905410-1 48 0.033805 hybrid +142_8-1 Q0 MARCO_35_1248533401-1 49 0.031831 hybrid +142_8-1 Q0 MARCO_10_1107669941-9 50 0.031616 hybrid +142_8-1 Q0 MARCO_53_848124790-1 51 0.031487 hybrid +142_8-1 Q0 MARCO_22_1041222181-3 52 0.029598 hybrid +142_8-1 Q0 MARCO_22_1843328364-3 53 0.029212 hybrid +142_8-1 Q0 MARCO_44_1096288280-1 54 0.029212 hybrid +142_8-1 Q0 MARCO_51_1402740913-2 55 0.029126 hybrid +142_8-1 Q0 MARCO_37_526471659-1 56 0.023116 hybrid +142_8-1 Q0 MARCO_45_1280232346-1 57 0.016634 hybrid +142_8-1 Q0 MARCO_31_894825016-13 58 0.010410 hybrid +142_8-1 Q0 MARCO_54_458274590-33 59 0.009723 hybrid +142_8-1 Q0 MARCO_09_621513656-4 60 0.008092 hybrid +142_8-1 Q0 MARCO_50_1095238339-1 61 -0.005516 hybrid +142_8-1 Q0 MARCO_03_1661752769-2 62 -0.005731 hybrid +142_8-1 Q0 MARCO_29_1530078234-2 63 -0.008736 hybrid +142_8-1 Q0 MARCO_54_1471659199-2 64 -0.008736 hybrid +142_8-1 Q0 MARCO_09_1302050803-3 65 -0.010582 hybrid +142_8-1 Q0 MARCO_24_1161264225-9 66 -0.010582 hybrid +142_8-1 Q0 MARCO_46_148318196-2 67 -0.018781 hybrid +142_8-1 Q0 MARCO_14_1603185282-1 68 -0.020112 hybrid +142_8-1 Q0 MARCO_54_1671016773-2 69 -0.020112 hybrid +142_8-1 Q0 MARCO_00_1424569147-1 70 -0.020713 hybrid +142_8-1 Q0 MARCO_22_1492857948-2 71 -0.023718 hybrid +142_8-1 Q0 MARCO_15_289784545-2 72 -0.024319 hybrid +142_8-1 Q0 MARCO_07_704518188-165 73 -0.025048 hybrid +142_8-1 Q0 MARCO_07_492901852-2 74 -0.025220 hybrid +142_8-1 Q0 MARCO_04_1463681425-1 75 -0.026594 hybrid +142_8-1 Q0 MARCO_41_1848388206-1 76 -0.028440 hybrid +142_8-1 Q0 MARCO_39_1024660137-1 77 -0.031745 hybrid +142_8-1 Q0 MARCO_51_1402750447-4 78 -0.033291 hybrid +142_8-1 Q0 MARCO_48_1337090955-4 79 -0.033634 hybrid +142_8-1 Q0 MARCO_03_1716580963-3 80 -0.035780 hybrid +142_8-1 Q0 MARCO_39_1028751824-1 81 -0.035781 hybrid +142_8-1 Q0 MARCO_07_492916705-1 82 -0.036768 hybrid +142_8-1 Q0 MARCO_14_1603176641-1 83 -0.038613 hybrid +142_8-1 Q0 MARCO_19_2483609053-11 84 -0.039773 hybrid +142_8-1 Q0 MARCO_31_1596318239-1 85 -0.041533 hybrid +142_8-1 Q0 MARCO_41_1848197894-2 86 -0.041533 hybrid +142_8-1 Q0 MARCO_42_1729952827-4 87 -0.044709 hybrid +142_8-1 Q0 MARCO_39_1469345872-7 88 -0.047242 hybrid +142_8-1 Q0 MARCO_40_277475515-3 89 -0.047242 hybrid +142_8-1 Q0 MARCO_46_393617423-1 90 -0.047243 hybrid +142_8-1 Q0 MARCO_00_1397853465-3 91 -0.048101 hybrid +142_8-1 Q0 MARCO_14_1603185282-2 92 -0.048573 hybrid +142_8-1 Q0 MARCO_23_1167691428-2 93 -0.054454 hybrid +142_8-1 Q0 MARCO_29_654443744-2 94 -0.057029 hybrid +142_8-1 Q0 MARCO_11_1423879174-1 95 -0.059949 hybrid +142_8-1 Q0 MARCO_24_667364101-1 96 -0.063812 hybrid +142_8-1 Q0 MARCO_54_1671016773-1 97 -0.064413 hybrid +142_8-1 Q0 MARCO_22_1041178555-2 98 -0.064585 hybrid +142_8-1 Q0 MARCO_02_473573827-4 99 -0.068448 hybrid +142_8-1 Q0 MARCO_08_747562198-6 100 -0.068963 hybrid +142_9-1 Q0 MARCO_04_113777060-3 1 0.500000 hybrid +142_9-1 Q0 MARCO_16_188635818-10 2 0.327314 hybrid +142_9-1 Q0 MARCO_33_827028099-1 3 0.296254 hybrid +142_9-1 Q0 MARCO_55_1245662540-1 4 0.261030 hybrid +142_9-1 Q0 MARCO_50_1912057131-10 5 0.252606 hybrid +142_9-1 Q0 MARCO_33_868347963-1 6 0.153263 hybrid +142_9-1 Q0 MARCO_10_1612385551-16 7 0.146981 hybrid +142_9-1 Q0 MARCO_33_868645797-1 8 0.140980 hybrid +142_9-1 Q0 MARCO_45_593249002-8 9 0.124251 hybrid +142_9-1 Q0 MARCO_10_803208538-1 10 0.118321 hybrid +142_9-1 Q0 MARCO_55_1232655087-3 11 0.115944 hybrid +142_9-1 Q0 MARCO_50_1954392654-9 12 0.080297 hybrid +142_9-1 Q0 MARCO_34_859491572-2 13 0.079779 hybrid +142_9-1 Q0 MARCO_25_297460066-2 14 0.078744 hybrid +142_9-1 Q0 MARCO_24_1494711467-41 15 0.063802 hybrid +142_9-1 Q0 MARCO_51_22133322-4 16 0.019307 hybrid +142_9-1 Q0 MARCO_37_854781414-2 17 0.014719 hybrid +142_9-1 Q0 MARCO_48_836448592-6 18 0.014719 hybrid +142_9-1 Q0 MARCO_52_1000442909-1 19 0.005001 hybrid +142_9-1 Q0 MARCO_13_471074249-2 20 0.001895 hybrid +142_9-1 Q0 MARCO_10_1612385551-24 21 -0.000834 hybrid +142_9-1 Q0 MARCO_11_1247195404-2 22 -0.001587 hybrid +142_9-1 Q0 MARCO_33_868334401-2 23 -0.001588 hybrid +142_9-1 Q0 MARCO_34_1420419391-9 24 -0.007776 hybrid +142_9-1 Q0 MARCO_44_1215854994-1 25 -0.022411 hybrid +142_9-1 Q0 MARCO_50_594653562-4 26 -0.028294 hybrid +142_9-1 Q0 MARCO_50_1954392654-8 27 -0.030459 hybrid +142_9-1 Q0 MARCO_20_572879405-4 28 -0.033353 hybrid +142_9-1 Q0 MARCO_59_257252666-3 29 -0.038435 hybrid +142_9-1 Q0 MARCO_58_938143298-1 30 -0.046930 hybrid +142_9-1 Q0 MARCO_25_298148041-32 31 -0.050271 hybrid +142_9-1 Q0 MARCO_03_1023220358-1 32 -0.053941 hybrid +142_9-1 Q0 MARCO_13_429847964-1 33 -0.054083 hybrid +142_9-1 Q0 MARCO_13_429894363-1 34 -0.054083 hybrid +142_9-1 Q0 MARCO_26_27146340-1 35 -0.054953 hybrid +142_9-1 Q0 MARCO_39_1440386672-1 36 -0.056906 hybrid +142_9-1 Q0 MARCO_10_1612385551-14 37 -0.057636 hybrid +142_9-1 Q0 MARCO_39_751118425-2 38 -0.061001 hybrid +142_9-1 Q0 MARCO_41_793885323-11 39 -0.063824 hybrid +142_9-1 Q0 MARCO_24_1494711467-4 40 -0.065165 hybrid +142_9-1 Q0 MARCO_30_2012938093-1 41 -0.069918 hybrid +142_9-1 Q0 MARCO_48_255702655-3 42 -0.075260 hybrid +142_9-1 Q0 MARCO_36_1304988780-1 43 -0.078201 hybrid +142_9-1 Q0 MARCO_31_1228338960-4 44 -0.078342 hybrid +142_9-1 Q0 KILT_24531487-9 45 -0.079495 hybrid +142_9-1 Q0 MARCO_17_4690198672-7 46 -0.080624 hybrid +142_9-1 Q0 MARCO_33_868556577-1 47 -0.080625 hybrid +142_9-1 Q0 MARCO_35_128151915-16 48 -0.080625 hybrid +142_9-1 Q0 MARCO_52_1623405322-3 49 -0.081495 hybrid +142_9-1 Q0 MARCO_34_1469965472-2 50 -0.085260 hybrid +142_9-1 Q0 MARCO_44_1164789807-39 51 -0.085942 hybrid +142_9-1 Q0 MARCO_55_1245662540-8 52 -0.089025 hybrid +142_9-1 Q0 MARCO_10_60317101-1 53 -0.092884 hybrid +142_9-1 Q0 MARCO_10_60317101-3 54 -0.092884 hybrid +142_9-1 Q0 KILT_27710302-1 55 -0.094436 hybrid +142_9-1 Q0 MARCO_44_762474365-6 56 -0.096719 hybrid +142_9-1 Q0 MARCO_50_1279567642-21 57 -0.100131 hybrid +142_9-1 Q0 KILT_1248379-3 58 -0.100343 hybrid +142_9-1 Q0 MARCO_10_1612385551-34 59 -0.100343 hybrid +142_9-1 Q0 MARCO_15_781789337-1 60 -0.107284 hybrid +142_9-1 Q0 MARCO_13_287632-1 61 -0.108955 hybrid +142_9-1 Q0 MARCO_16_3647777330-4 62 -0.108955 hybrid +142_9-1 Q0 MARCO_30_2012938093-9 63 -0.111731 hybrid +142_9-1 Q0 MARCO_55_250684567-10 64 -0.111731 hybrid +142_9-1 Q0 MARCO_55_1088449322-1 65 -0.112625 hybrid +142_9-1 Q0 MARCO_00_73261768-4 66 -0.113449 hybrid +142_9-1 Q0 MARCO_13_273959-1 67 -0.113449 hybrid +142_9-1 Q0 MARCO_32_525278927-11 68 -0.113449 hybrid +142_9-1 Q0 MARCO_10_363505337-3 69 -0.114696 hybrid +142_9-1 Q0 MARCO_26_356606854-63 70 -0.114696 hybrid +142_9-1 Q0 MARCO_40_656729176-3 71 -0.120343 hybrid +142_9-1 Q0 KILT_2402129-3 72 -0.120955 hybrid +142_9-1 Q0 MARCO_33_455168444-2 73 -0.120955 hybrid +142_9-1 Q0 MARCO_55_1652338223-3 74 -0.124743 hybrid +142_9-1 Q0 MARCO_51_876291753-23 75 -0.125355 hybrid +142_9-1 Q0 MARCO_26_283330105-2 76 -0.126790 hybrid +142_9-1 Q0 MARCO_40_894236387-4 77 -0.129190 hybrid +142_9-1 Q0 MARCO_10_363510473-3 78 -0.131896 hybrid +142_9-1 Q0 MARCO_57_1518522697-17 79 -0.132908 hybrid +142_9-1 Q0 MARCO_30_1958508143-12 80 -0.133543 hybrid +142_9-1 Q0 MARCO_33_868655730-4 81 -0.141190 hybrid +142_9-1 Q0 MARCO_52_1624445141-2 82 -0.144508 hybrid +142_9-1 Q0 MARCO_00_665459970-5 83 -0.145567 hybrid +142_9-1 Q0 MARCO_07_1234318134-5 84 -0.148579 hybrid +142_9-1 Q0 MARCO_06_1564241632-3 85 -0.148814 hybrid +142_9-1 Q0 MARCO_41_2165790035-5 86 -0.148814 hybrid +142_9-1 Q0 MARCO_41_711030515-1 87 -0.148815 hybrid +142_9-1 Q0 MARCO_50_2732036935-1 88 -0.149214 hybrid +142_9-1 Q0 MARCO_50_2732036935-3 89 -0.149214 hybrid +142_9-1 Q0 MARCO_04_209010221-2 90 -0.155756 hybrid +142_9-1 Q0 MARCO_28_1020770683-6 91 -0.158226 hybrid +142_9-1 Q0 MARCO_30_1645757420-5 92 -0.158367 hybrid +142_9-1 Q0 MARCO_40_921485384-6 93 -0.158368 hybrid +142_9-1 Q0 KILT_8225393-1 94 -0.158861 hybrid +142_9-1 Q0 MARCO_27_1226593374-93 95 -0.165873 hybrid +142_9-1 Q0 MARCO_55_1658853311-3 96 -0.165874 hybrid +142_9-1 Q0 MARCO_03_1587404707-3 97 -0.166556 hybrid +142_9-1 Q0 MARCO_32_525306201-7 98 -0.170932 hybrid +142_9-1 Q0 MARCO_00_1236047453-12 99 -0.171215 hybrid +142_9-1 Q0 MARCO_49_107031135-2 100 -0.176580 hybrid +143_1-1 Q0 MARCO_45_129345730-7 1 0.500000 hybrid +143_1-1 Q0 MARCO_40_580050801-1 2 0.452768 hybrid +143_1-1 Q0 MARCO_04_148650586-1 3 0.439574 hybrid +143_1-1 Q0 MARCO_04_148650586-2 4 0.403910 hybrid +143_1-1 Q0 MARCO_04_156351761-2 5 0.357730 hybrid +143_1-1 Q0 MARCO_45_129345730-6 6 0.318338 hybrid +143_1-1 Q0 MARCO_03_1702669529-2 7 0.299311 hybrid +143_1-1 Q0 MARCO_24_1050108208-13 8 0.297686 hybrid +143_1-1 Q0 MARCO_45_129345730-8 9 0.265752 hybrid +143_1-1 Q0 MARCO_41_806087571-1 10 0.263649 hybrid +143_1-1 Q0 MARCO_43_510305100-1 11 0.258294 hybrid +143_1-1 Q0 MARCO_48_1598029286-1 12 0.244144 hybrid +143_1-1 Q0 MARCO_00_1016165974-1 13 0.240128 hybrid +143_1-1 Q0 MARCO_04_148650586-3 14 0.233244 hybrid +143_1-1 Q0 MARCO_16_3690758-1 15 0.223683 hybrid +143_1-1 Q0 MARCO_24_1911131524-1 16 0.216608 hybrid +143_1-1 Q0 MARCO_03_1584326435-3 17 0.203891 hybrid +143_1-1 Q0 MARCO_31_116587039-1 18 0.195860 hybrid +143_1-1 Q0 MARCO_35_302867130-6 19 0.193661 hybrid +143_1-1 Q0 MARCO_37_269758957-14 20 0.180180 hybrid +143_1-1 Q0 MARCO_13_1176052480-1 21 0.179510 hybrid +143_1-1 Q0 MARCO_39_1447934426-1 22 0.173104 hybrid +143_1-1 Q0 MARCO_11_1037735022-1 23 0.169854 hybrid +143_1-1 Q0 MARCO_39_1447027953-1 24 0.169853 hybrid +143_1-1 Q0 MARCO_24_1050108208-15 25 0.163448 hybrid +143_1-1 Q0 MARCO_36_28162569-1 26 0.158667 hybrid +143_1-1 Q0 MARCO_54_2064036137-2 27 0.156851 hybrid +143_1-1 Q0 MARCO_41_808822467-1 28 0.151305 hybrid +143_1-1 Q0 MARCO_45_130096265-1 29 0.147576 hybrid +143_1-1 Q0 MARCO_43_68724268-1 30 0.147480 hybrid +143_1-1 Q0 MARCO_21_9035895-8 31 0.145186 hybrid +143_1-1 Q0 MARCO_03_798134171-1 32 0.145089 hybrid +143_1-1 Q0 MARCO_33_1376783323-2 33 0.143656 hybrid +143_1-1 Q0 MARCO_54_1895336364-1 34 0.142222 hybrid +143_1-1 Q0 MARCO_36_258215482-1 35 0.128741 hybrid +143_1-1 Q0 MARCO_03_1584326435-1 36 0.126733 hybrid +143_1-1 Q0 MARCO_06_1922863471-3 37 0.123291 hybrid +143_1-1 Q0 MARCO_41_807647263-1 38 0.117459 hybrid +143_1-1 Q0 MARCO_28_1371000193-1 39 0.115737 hybrid +143_1-1 Q0 MARCO_58_212373988-22 40 0.114686 hybrid +143_1-1 Q0 MARCO_53_418922408-1 41 0.114208 hybrid +143_1-1 Q0 MARCO_36_64285135-1 42 0.113252 hybrid +143_1-1 Q0 MARCO_33_1334936010-2 43 0.112774 hybrid +143_1-1 Q0 MARCO_10_115223260-1 44 0.111244 hybrid +143_1-1 Q0 MARCO_39_1583814534-11 45 0.109523 hybrid +143_1-1 Q0 MARCO_37_1158648384-1 46 0.106941 hybrid +143_1-1 Q0 MARCO_33_1327727011-6 47 0.105889 hybrid +143_1-1 Q0 MARCO_47_1092661166-1 48 0.102734 hybrid +143_1-1 Q0 MARCO_41_807247528-6 49 0.096807 hybrid +143_1-1 Q0 MARCO_41_807396874-11 50 0.094703 hybrid +143_1-1 Q0 MARCO_31_1256724571-1 51 0.089827 hybrid +143_1-1 Q0 MARCO_32_930593007-5 52 0.089349 hybrid +143_1-1 Q0 MARCO_33_1037325593-2 53 0.089253 hybrid +143_1-1 Q0 MARCO_19_2424115160-1 54 0.088488 hybrid +143_1-1 Q0 MARCO_32_1186259104-1 55 0.086672 hybrid +143_1-1 Q0 MARCO_32_930757754-5 56 0.083803 hybrid +143_1-1 Q0 MARCO_28_550255697-4 57 0.082751 hybrid +143_1-1 Q0 MARCO_48_1597910815-10 58 0.081031 hybrid +143_1-1 Q0 MARCO_44_1963168815-9 59 0.079118 hybrid +143_1-1 Q0 MARCO_34_1195318788-1 60 0.071469 hybrid +143_1-1 Q0 MARCO_40_596485802-1 61 0.069175 hybrid +143_1-1 Q0 MARCO_48_384278383-8 62 0.067741 hybrid +143_1-1 Q0 MARCO_49_1636298913-8 63 0.066211 hybrid +143_1-1 Q0 MARCO_40_527170334-2 64 0.065924 hybrid +143_1-1 Q0 MARCO_41_807492160-1 65 0.061430 hybrid +143_1-1 Q0 MARCO_40_1707578590-1 66 0.060761 hybrid +143_1-1 Q0 MARCO_33_1375516151-6 67 0.054355 hybrid +143_1-1 Q0 MARCO_34_341961686-12 68 0.053399 hybrid +143_1-1 Q0 MARCO_32_930362644-5 69 0.050339 hybrid +143_1-1 Q0 MARCO_45_130262354-2 70 0.050338 hybrid +143_1-1 Q0 MARCO_49_1636273357-17 71 0.048045 hybrid +143_1-1 Q0 MARCO_49_1348932170-1 72 0.046706 hybrid +143_1-1 Q0 MARCO_14_722129775-1 73 0.046610 hybrid +143_1-1 Q0 MARCO_41_806704048-1 74 0.044985 hybrid +143_1-1 Q0 MARCO_47_1377756535-2 75 0.044794 hybrid +143_1-1 Q0 MARCO_32_275221609-1 76 0.040874 hybrid +143_1-1 Q0 MARCO_51_1432315574-1 77 0.034946 hybrid +143_1-1 Q0 MARCO_35_654092259-1 78 0.034659 hybrid +143_1-1 Q0 MARCO_04_1120881342-1 79 0.029783 hybrid +143_1-1 Q0 MARCO_49_209298623-2 80 0.028827 hybrid +143_1-1 Q0 MARCO_45_130456173-1 81 0.026245 hybrid +143_1-1 Q0 MARCO_03_1733287619-3 82 0.019935 hybrid +143_1-1 Q0 MARCO_51_1484297418-1 83 0.018979 hybrid +143_1-1 Q0 MARCO_32_930903674-5 84 0.016876 hybrid +143_1-1 Q0 MARCO_41_806005423-3 85 0.016780 hybrid +143_1-1 Q0 MARCO_33_1375516151-18 86 0.014294 hybrid +143_1-1 Q0 MARCO_03_1584326435-2 87 0.012764 hybrid +143_1-1 Q0 MARCO_32_930693578-6 88 0.010374 hybrid +143_1-1 Q0 MARCO_34_342732226-13 89 0.008748 hybrid +143_1-1 Q0 MARCO_24_1911131524-8 90 0.007983 hybrid +143_1-1 Q0 MARCO_34_342153575-14 91 0.007888 hybrid +143_1-1 Q0 MARCO_41_807396874-2 92 0.007887 hybrid +143_1-1 Q0 MARCO_03_1640936701-2 93 0.006358 hybrid +143_1-1 Q0 MARCO_04_156351761-3 94 -0.004542 hybrid +143_1-1 Q0 MARCO_23_754860061-1 95 -0.007697 hybrid +143_1-1 Q0 MARCO_40_1704746220-5 96 -0.007698 hybrid +143_1-1 Q0 MARCO_43_68453465-1 97 -0.008939 hybrid +143_1-1 Q0 MARCO_40_568738029-1 98 -0.010183 hybrid +143_1-1 Q0 MARCO_44_1924833160-3 99 -0.012477 hybrid +143_1-1 Q0 MARCO_48_1597910815-1 100 -0.012764 hybrid +143_1-11 Q0 MARCO_12_793940038-1 1 0.500000 hybrid +143_1-11 Q0 MARCO_27_1588465286-2 2 0.467321 hybrid +143_1-11 Q0 MARCO_12_50857731-1 3 0.426765 hybrid +143_1-11 Q0 MARCO_27_1590067365-1 4 0.403627 hybrid +143_1-11 Q0 MARCO_43_565671836-1 5 0.400351 hybrid +143_1-11 Q0 MARCO_30_601429875-6 6 0.391187 hybrid +143_1-11 Q0 MARCO_39_972892800-1 7 0.325491 hybrid +143_1-11 Q0 MARCO_32_1186423390-1 8 0.299987 hybrid +143_1-11 Q0 MARCO_36_120724090-1 9 0.288847 hybrid +143_1-11 Q0 MARCO_00_1372456933-4 10 0.271286 hybrid +143_1-11 Q0 MARCO_28_1322461854-8 11 0.250552 hybrid +143_1-11 Q0 KILT_20671794-4 12 0.246575 hybrid +143_1-11 Q0 MARCO_45_1047642109-1 13 0.245587 hybrid +143_1-11 Q0 MARCO_26_1094299993-3 14 0.242675 hybrid +143_1-11 Q0 MARCO_19_631914680-5 15 0.226778 hybrid +143_1-11 Q0 MARCO_18_1062294767-4 16 0.221968 hybrid +143_1-11 Q0 MARCO_53_1404098173-1 17 0.196152 hybrid +143_1-11 Q0 MARCO_53_1412146736-1 18 0.177226 hybrid +143_1-11 Q0 MARCO_48_754726967-19 19 0.175523 hybrid +143_1-11 Q0 MARCO_56_219699965-1 20 0.164240 hybrid +143_1-11 Q0 MARCO_15_1264381327-20 21 0.147927 hybrid +143_1-11 Q0 MARCO_03_167957933-11 22 0.131756 hybrid +143_1-11 Q0 MARCO_27_1588577135-1 23 0.124139 hybrid +143_1-11 Q0 MARCO_42_341000900-1 24 0.120590 hybrid +143_1-11 Q0 KILT_2915176-5 25 0.114442 hybrid +143_1-11 Q0 MARCO_49_1342526086-2 26 0.088067 hybrid +143_1-11 Q0 MARCO_53_1292134409-7 27 0.076160 hybrid +143_1-11 Q0 MARCO_48_1555077849-1 28 0.053100 hybrid +143_1-11 Q0 MARCO_29_977669212-2 29 0.051151 hybrid +143_1-11 Q0 MARCO_33_632066513-1 30 0.050150 hybrid +143_1-11 Q0 MARCO_23_1005047219-7 31 0.042870 hybrid +143_1-11 Q0 KILT_31555205-1 32 0.039165 hybrid +143_1-11 Q0 MARCO_01_1688688954-1 33 0.032796 hybrid +143_1-11 Q0 KILT_21846371-2 34 0.032458 hybrid +143_1-11 Q0 MARCO_44_1097020626-18 35 0.032445 hybrid +143_1-11 Q0 MARCO_53_904267232-2 36 0.030638 hybrid +143_1-11 Q0 MARCO_42_76458986-10 37 0.028350 hybrid +143_1-11 Q0 MARCO_44_791092871-3 38 0.026063 hybrid +143_1-11 Q0 MARCO_36_482769747-2 39 0.012583 hybrid +143_1-11 Q0 MARCO_37_207489734-1 40 0.011413 hybrid +143_1-11 Q0 MARCO_27_1588378390-1 41 0.011192 hybrid +143_1-11 Q0 MARCO_53_1408763481-1 42 0.010919 hybrid +143_1-11 Q0 MARCO_24_1093154676-1 43 0.010399 hybrid +143_1-11 Q0 MARCO_36_800995613-2 44 -0.000065 hybrid +143_1-11 Q0 MARCO_27_232978415-8 45 -0.003796 hybrid +143_1-11 Q0 MARCO_43_565671836-7 46 -0.009294 hybrid +143_1-11 Q0 MARCO_26_728934083-6 47 -0.013896 hybrid +143_1-11 Q0 MARCO_53_1407512734-1 48 -0.015299 hybrid +143_1-11 Q0 MARCO_08_849463321-8 49 -0.022176 hybrid +143_1-11 Q0 MARCO_47_1092515194-1 50 -0.023229 hybrid +143_1-11 Q0 KILT_2035148-2 51 -0.026466 hybrid +143_1-11 Q0 MARCO_43_574632404-3 52 -0.028844 hybrid +143_1-11 Q0 MARCO_15_1264381327-11 53 -0.033069 hybrid +143_1-11 Q0 MARCO_15_1265182150-13 54 -0.033069 hybrid +143_1-11 Q0 MARCO_30_918555510-4 55 -0.033368 hybrid +143_1-11 Q0 MARCO_43_565671836-5 56 -0.049889 hybrid +143_1-11 Q0 MARCO_53_869806361-1 57 -0.052554 hybrid +143_1-11 Q0 MARCO_15_371617059-1 58 -0.055037 hybrid +143_1-11 Q0 MARCO_43_1564482312-5 59 -0.057819 hybrid +143_1-11 Q0 MARCO_51_1978478597-4 60 -0.059873 hybrid +143_1-11 Q0 MARCO_57_124385329-3 61 -0.061536 hybrid +143_1-11 Q0 MARCO_57_124385329-5 62 -0.061537 hybrid +143_1-11 Q0 MARCO_56_1174287067-8 63 -0.062888 hybrid +143_1-11 Q0 MARCO_21_1068859054-1 64 -0.063226 hybrid +143_1-11 Q0 MARCO_52_353228995-7 65 -0.065956 hybrid +143_1-11 Q0 MARCO_18_1061184897-1 66 -0.069037 hybrid +143_1-11 Q0 KILT_41972603-2 67 -0.070921 hybrid +143_1-11 Q0 MARCO_45_822105198-8 68 -0.071247 hybrid +143_1-11 Q0 KILT_16028103-6 69 -0.076316 hybrid +143_1-11 Q0 MARCO_13_4424228-14 70 -0.081658 hybrid +143_1-11 Q0 MARCO_35_1724389397-1 71 -0.083114 hybrid +143_1-11 Q0 MARCO_15_1276162789-1 72 -0.085909 hybrid +143_1-11 Q0 MARCO_42_77383684-1 73 -0.088301 hybrid +143_1-11 Q0 MARCO_45_1115908296-2 74 -0.088405 hybrid +143_1-11 Q0 MARCO_27_1588458453-2 75 -0.089549 hybrid +143_1-11 Q0 MARCO_16_471632801-1 76 -0.089705 hybrid +143_1-11 Q0 MARCO_27_232922985-1 77 -0.090927 hybrid +143_1-11 Q0 MARCO_27_1591417054-1 78 -0.095567 hybrid +143_1-11 Q0 MARCO_17_4598555588-2 79 -0.096269 hybrid +143_1-11 Q0 MARCO_12_798196939-10 80 -0.102106 hybrid +143_1-11 Q0 MARCO_02_1493111039-1 81 -0.103224 hybrid +143_1-11 Q0 MARCO_44_697254068-2 82 -0.104251 hybrid +143_1-11 Q0 KILT_12398-30 83 -0.106460 hybrid +143_1-11 Q0 MARCO_16_1950412725-1 84 -0.107019 hybrid +143_1-11 Q0 MARCO_42_62420069-1 85 -0.107669 hybrid +143_1-11 Q0 MARCO_38_1397449827-1 86 -0.110126 hybrid +143_1-11 Q0 MARCO_48_1555077849-2 87 -0.111439 hybrid +143_1-11 Q0 MARCO_17_1391165896-1 88 -0.113285 hybrid +143_1-11 Q0 MARCO_28_1308417846-2 89 -0.115560 hybrid +143_1-11 Q0 MARCO_27_1588597136-2 90 -0.115962 hybrid +143_1-11 Q0 MARCO_17_204953445-23 91 -0.116144 hybrid +143_1-11 Q0 MARCO_43_1679525471-4 92 -0.117418 hybrid +143_1-11 Q0 MARCO_32_1698919773-67 93 -0.120070 hybrid +143_1-11 Q0 KILT_35186455-4 94 -0.120317 hybrid +143_1-11 Q0 MARCO_17_1290977993-4 95 -0.120317 hybrid +143_1-11 Q0 KILT_417983-2 96 -0.120811 hybrid +143_1-11 Q0 KILT_1520386-1 97 -0.121396 hybrid +143_1-11 Q0 MARCO_36_490975151-13 98 -0.121448 hybrid +143_1-11 Q0 MARCO_27_1615212672-3 99 -0.122748 hybrid +143_1-11 Q0 MARCO_36_490175679-57 100 -0.123086 hybrid +143_1-13 Q0 MARCO_37_1201513680-35 1 0.500000 hybrid +143_1-13 Q0 MARCO_11_193448462-7 2 0.368302 hybrid +143_1-13 Q0 MARCO_20_1143791571-1 3 0.262808 hybrid +143_1-13 Q0 MARCO_18_3496363884-8 4 0.249130 hybrid +143_1-13 Q0 MARCO_31_35259431-1 5 0.185849 hybrid +143_1-13 Q0 MARCO_37_96811655-12 6 0.176880 hybrid +143_1-13 Q0 KILT_39246006-4 7 0.080756 hybrid +143_1-13 Q0 MARCO_27_850805309-14 8 0.054651 hybrid +143_1-13 Q0 MARCO_44_1172749368-2 9 0.054175 hybrid +143_1-13 Q0 MARCO_44_1172786686-2 10 0.054175 hybrid +143_1-13 Q0 MARCO_23_940058441-1 11 0.014894 hybrid +143_1-13 Q0 MARCO_24_1124133783-1 12 -0.003745 hybrid +143_1-13 Q0 MARCO_53_1431288133-6 13 -0.012363 hybrid +143_1-13 Q0 MARCO_16_2830024638-11 14 -0.025014 hybrid +143_1-13 Q0 MARCO_48_1723625993-4 15 -0.028246 hybrid +143_1-13 Q0 MARCO_13_1441026267-1 16 -0.032780 hybrid +143_1-13 Q0 MARCO_43_1640460050-2 17 -0.067853 hybrid +143_1-13 Q0 MARCO_13_131903842-67 18 -0.069656 hybrid +143_1-13 Q0 MARCO_28_685730504-2 19 -0.070583 hybrid +143_1-13 Q0 KILT_58697449-2 20 -0.085539 hybrid +143_1-13 Q0 KILT_48859708-3 21 -0.101021 hybrid +143_1-13 Q0 MARCO_54_65255662-5 22 -0.101297 hybrid +143_1-13 Q0 MARCO_44_1639088779-3 23 -0.106558 hybrid +143_1-13 Q0 MARCO_38_4703197-8 24 -0.116504 hybrid +143_1-13 Q0 KILT_27573364-1 25 -0.125247 hybrid +143_1-13 Q0 KILT_58693883-1 26 -0.125247 hybrid +143_1-13 Q0 MARCO_53_1436866185-5 27 -0.125247 hybrid +143_1-13 Q0 MARCO_31_1560814610-9 28 -0.127927 hybrid +143_1-13 Q0 MARCO_52_488994585-2 29 -0.128178 hybrid +143_1-13 Q0 MARCO_50_1978919509-6 30 -0.129004 hybrid +143_1-13 Q0 KILT_27913227-3 31 -0.129330 hybrid +143_1-13 Q0 MARCO_43_1632533343-1 32 -0.130007 hybrid +143_1-13 Q0 MARCO_50_1613826976-14 33 -0.135693 hybrid +143_1-13 Q0 KILT_51020150-3 34 -0.136971 hybrid +143_1-13 Q0 MARCO_28_241022800-4 35 -0.140052 hybrid +143_1-13 Q0 MARCO_36_651627711-2 36 -0.150549 hybrid +143_1-13 Q0 MARCO_33_195241282-2 37 -0.154056 hybrid +143_1-13 Q0 MARCO_03_545348496-4 38 -0.154607 hybrid +143_1-13 Q0 MARCO_20_1379310987-2 39 -0.157639 hybrid +143_1-13 Q0 KILT_38265496-4 40 -0.161221 hybrid +143_1-13 Q0 MARCO_48_655460979-1 41 -0.163726 hybrid +143_1-13 Q0 MARCO_50_1617390941-8 42 -0.171944 hybrid +143_1-13 Q0 MARCO_47_390302506-1 43 -0.172419 hybrid +143_1-13 Q0 MARCO_23_170346643-5 44 -0.173396 hybrid +143_1-13 Q0 MARCO_36_889579235-8 45 -0.173397 hybrid +143_1-13 Q0 MARCO_57_881382653-39 46 -0.173497 hybrid +143_1-13 Q0 MARCO_36_1394665728-13 47 -0.175401 hybrid +143_1-13 Q0 MARCO_44_1171864407-3 48 -0.178106 hybrid +143_1-13 Q0 MARCO_28_579084822-41 49 -0.179409 hybrid +143_1-13 Q0 MARCO_38_676073250-3 50 -0.181213 hybrid +143_1-13 Q0 MARCO_33_195241282-3 51 -0.185096 hybrid +143_1-13 Q0 MARCO_12_1222317050-1 52 -0.187676 hybrid +143_1-13 Q0 MARCO_53_676795613-1 53 -0.191108 hybrid +143_1-13 Q0 MARCO_04_54064806-3 54 -0.192235 hybrid +143_1-13 Q0 MARCO_23_847475141-1 55 -0.192737 hybrid +143_1-13 Q0 MARCO_27_683459029-12 56 -0.194540 hybrid +143_1-13 Q0 MARCO_50_1784054995-12 57 -0.195367 hybrid +143_1-13 Q0 MARCO_33_195241282-4 58 -0.197121 hybrid +143_1-13 Q0 MARCO_20_1143791571-4 59 -0.197296 hybrid +143_1-13 Q0 MARCO_50_2003396237-6 60 -0.197296 hybrid +143_1-13 Q0 MARCO_12_182777868-3 61 -0.202507 hybrid +143_1-13 Q0 MARCO_47_401499219-2 62 -0.203734 hybrid +143_1-13 Q0 MARCO_57_1580776117-2 63 -0.204160 hybrid +143_1-13 Q0 MARCO_16_2830024638-7 64 -0.205112 hybrid +143_1-13 Q0 MARCO_49_495148784-5 65 -0.205263 hybrid +143_1-13 Q0 MARCO_50_2412662600-8 66 -0.206265 hybrid +143_1-13 Q0 MARCO_26_1441705734-1 67 -0.208068 hybrid +143_1-13 Q0 MARCO_24_393299128-3 68 -0.208219 hybrid +143_1-13 Q0 MARCO_04_54064806-2 69 -0.213404 hybrid +143_1-13 Q0 MARCO_28_662863355-4 70 -0.213605 hybrid +143_1-13 Q0 MARCO_40_984683994-2 71 -0.214532 hybrid +143_1-13 Q0 MARCO_25_185581287-1 72 -0.215333 hybrid +143_1-13 Q0 MARCO_45_1029429431-2 73 -0.215734 hybrid +143_1-13 Q0 MARCO_50_1584655921-5 74 -0.217037 hybrid +143_1-13 Q0 MARCO_50_1936207539-4 75 -0.218365 hybrid +143_1-13 Q0 MARCO_50_1131974436-3 76 -0.219141 hybrid +143_1-13 Q0 KILT_38431387-1 77 -0.222198 hybrid +143_1-13 Q0 MARCO_35_478003738-1 78 -0.222774 hybrid +143_1-13 Q0 MARCO_50_1817345850-1 79 -0.222799 hybrid +143_1-13 Q0 MARCO_30_2005813472-2 80 -0.223601 hybrid +143_1-13 Q0 MARCO_36_879016495-3 81 -0.223801 hybrid +143_1-13 Q0 MARCO_01_2210142409-2 82 -0.224452 hybrid +143_1-13 Q0 MARCO_30_1324271975-6 83 -0.226056 hybrid +143_1-13 Q0 MARCO_29_1578596037-2 84 -0.226331 hybrid +143_1-13 Q0 MARCO_12_181271992-6 85 -0.227033 hybrid +143_1-13 Q0 MARCO_12_17053172-1 86 -0.227509 hybrid +143_1-13 Q0 MARCO_40_1710170922-7 87 -0.227659 hybrid +143_1-13 Q0 MARCO_50_2088962648-6 88 -0.230515 hybrid +143_1-13 Q0 MARCO_20_622818649-1 89 -0.232068 hybrid +143_1-13 Q0 MARCO_54_376992038-3 90 -0.233722 hybrid +143_1-13 Q0 MARCO_31_1241893813-11 91 -0.234273 hybrid +143_1-13 Q0 MARCO_51_754261866-1 92 -0.234273 hybrid +143_1-13 Q0 MARCO_47_810424742-1 93 -0.235525 hybrid +143_1-13 Q0 MARCO_54_67053706-3 94 -0.237029 hybrid +143_1-13 Q0 MARCO_12_664007224-3 95 -0.239484 hybrid +143_1-13 Q0 MARCO_57_1145156032-2 96 -0.240210 hybrid +143_1-13 Q0 MARCO_16_115417932-1 97 -0.240962 hybrid +143_1-13 Q0 MARCO_22_1172840778-1 98 -0.240962 hybrid +143_1-13 Q0 MARCO_35_245411384-1 99 -0.240962 hybrid +143_1-13 Q0 MARCO_35_255923275-1 100 -0.240962 hybrid +143_1-15 Q0 MARCO_37_639963665-2 1 0.500000 hybrid +143_1-15 Q0 MARCO_14_1547266281-2 2 0.444898 hybrid +143_1-15 Q0 MARCO_36_1101816955-2 3 0.376586 hybrid +143_1-15 Q0 MARCO_12_1874771675-1 4 0.280899 hybrid +143_1-15 Q0 MARCO_05_647948692-1 5 0.275735 hybrid +143_1-15 Q0 MARCO_27_821234309-4 6 0.263046 hybrid +143_1-15 Q0 MARCO_12_1873845415-3 7 0.251197 hybrid +143_1-15 Q0 MARCO_22_1239041714-2 8 0.250278 hybrid +143_1-15 Q0 MARCO_34_264785717-7 9 0.222949 hybrid +143_1-15 Q0 MARCO_04_1056544470-3 10 0.210442 hybrid +143_1-15 Q0 MARCO_44_608147575-1 11 0.208569 hybrid +143_1-15 Q0 MARCO_12_1871335959-1 12 0.196368 hybrid +143_1-15 Q0 MARCO_51_496936088-6 13 0.184860 hybrid +143_1-15 Q0 MARCO_26_424399158-1 14 0.177210 hybrid +143_1-15 Q0 MARCO_14_915019117-9 15 0.150891 hybrid +143_1-15 Q0 MARCO_36_1101816955-7 16 0.139212 hybrid +143_1-15 Q0 MARCO_34_1003951780-14 17 0.134480 hybrid +143_1-15 Q0 MARCO_50_286844634-6 18 0.129032 hybrid +143_1-15 Q0 MARCO_36_873712722-2 19 0.118034 hybrid +143_1-15 Q0 MARCO_40_587042737-2 20 0.117682 hybrid +143_1-15 Q0 MARCO_39_1183208038-9 21 0.114209 hybrid +143_1-15 Q0 MARCO_36_1089011748-1 22 0.096005 hybrid +143_1-15 Q0 MARCO_26_851233260-1 23 0.086596 hybrid +143_1-15 Q0 MARCO_22_1239041714-7 24 0.082227 hybrid +143_1-15 Q0 MARCO_43_257441977-4 25 0.081500 hybrid +143_1-15 Q0 MARCO_21_191109096-3 26 0.078970 hybrid +143_1-15 Q0 MARCO_56_68688855-2 27 0.078209 hybrid +143_1-15 Q0 MARCO_29_968190446-8 28 0.074384 hybrid +143_1-15 Q0 MARCO_13_1439488366-6 29 0.063137 hybrid +143_1-15 Q0 MARCO_37_787651230-6 30 0.063035 hybrid +143_1-15 Q0 MARCO_34_1003796230-12 31 0.061264 hybrid +143_1-15 Q0 MARCO_50_1975747916-5 32 0.060277 hybrid +143_1-15 Q0 MARCO_01_1386309276-1 33 0.058881 hybrid +143_1-15 Q0 MARCO_33_355511915-4 34 0.041153 hybrid +143_1-15 Q0 MARCO_50_1140407370-68 35 0.038021 hybrid +143_1-15 Q0 MARCO_50_1876477087-10 36 0.036489 hybrid +143_1-15 Q0 MARCO_36_1088601297-1 37 0.035932 hybrid +143_1-15 Q0 MARCO_14_666950050-1 38 0.034570 hybrid +143_1-15 Q0 MARCO_29_1408663772-3 39 0.033515 hybrid +143_1-15 Q0 MARCO_40_576696186-4 40 0.029645 hybrid +143_1-15 Q0 MARCO_14_663802239-2 41 0.029520 hybrid +143_1-15 Q0 MARCO_40_1276361600-4 42 0.028930 hybrid +143_1-15 Q0 MARCO_14_666885503-2 43 0.015106 hybrid +143_1-15 Q0 MARCO_44_1408972680-4 44 0.012031 hybrid +143_1-15 Q0 MARCO_34_1004068986-16 45 0.005834 hybrid +143_1-15 Q0 MARCO_22_1239041714-8 46 0.005607 hybrid +143_1-15 Q0 MARCO_34_1004143396-12 47 0.005448 hybrid +143_1-15 Q0 MARCO_49_1260781550-1 48 0.002054 hybrid +143_1-15 Q0 MARCO_14_1554596026-2 49 -0.000329 hybrid +143_1-15 Q0 MARCO_24_1142582525-2 50 -0.000647 hybrid +143_1-15 Q0 MARCO_22_1239041714-3 51 -0.004097 hybrid +143_1-15 Q0 MARCO_59_1043149266-3 52 -0.006435 hybrid +143_1-15 Q0 MARCO_14_1547655241-3 53 -0.006844 hybrid +143_1-15 Q0 MARCO_26_921448867-13 54 -0.007525 hybrid +143_1-15 Q0 MARCO_29_1408663772-4 55 -0.008989 hybrid +143_1-15 Q0 MARCO_14_1549599732-2 56 -0.012689 hybrid +143_1-15 Q0 MARCO_35_434340657-2 57 -0.013676 hybrid +143_1-15 Q0 MARCO_14_1545043841-2 58 -0.015492 hybrid +143_1-15 Q0 MARCO_14_663100481-2 59 -0.015719 hybrid +143_1-15 Q0 MARCO_30_899683844-15 60 -0.026626 hybrid +143_1-15 Q0 MARCO_14_88339581-5 61 -0.027148 hybrid +143_1-15 Q0 MARCO_34_1003951780-2 62 -0.027227 hybrid +143_1-15 Q0 MARCO_00_1286684700-1 63 -0.029497 hybrid +143_1-15 Q0 MARCO_14_1547684745-2 64 -0.030258 hybrid +143_1-15 Q0 MARCO_34_1002545807-9 65 -0.030666 hybrid +143_1-15 Q0 MARCO_34_311550009-4 66 -0.031915 hybrid +143_1-15 Q0 MARCO_50_1598728601-3 67 -0.034207 hybrid +143_1-15 Q0 MARCO_14_1543808204-5 68 -0.034570 hybrid +143_1-15 Q0 MARCO_24_399961101-9 69 -0.038577 hybrid +143_1-15 Q0 MARCO_44_620167734-2 70 -0.039190 hybrid +143_1-15 Q0 MARCO_35_320502492-6 71 -0.041596 hybrid +143_1-15 Q0 MARCO_11_627888578-9 72 -0.042197 hybrid +143_1-15 Q0 MARCO_44_693249514-6 73 -0.044286 hybrid +143_1-15 Q0 MARCO_57_278797129-3 74 -0.045364 hybrid +143_1-15 Q0 MARCO_34_1003236534-1 75 -0.046328 hybrid +143_1-15 Q0 MARCO_14_663253591-2 76 -0.047554 hybrid +143_1-15 Q0 MARCO_36_1096025289-22 77 -0.049030 hybrid +143_1-15 Q0 MARCO_36_873712722-1 78 -0.052480 hybrid +143_1-15 Q0 MARCO_29_1371992294-2 79 -0.053138 hybrid +143_1-15 Q0 MARCO_50_1417341413-22 80 -0.054375 hybrid +143_1-15 Q0 MARCO_40_587789055-1 81 -0.056906 hybrid +143_1-15 Q0 MARCO_20_1003582089-5 82 -0.057689 hybrid +143_1-15 Q0 MARCO_14_1547691354-1 83 -0.058416 hybrid +143_1-15 Q0 MARCO_14_1549493516-2 84 -0.064170 hybrid +143_1-15 Q0 MARCO_14_663320441-8 85 -0.066156 hybrid +143_1-15 Q0 MARCO_40_575419499-1 86 -0.066213 hybrid +143_1-15 Q0 MARCO_40_575486252-1 87 -0.066576 hybrid +143_1-15 Q0 MARCO_30_899449670-2 88 -0.068108 hybrid +143_1-15 Q0 MARCO_12_1871163727-3 89 -0.069697 hybrid +143_1-15 Q0 MARCO_14_1547249654-1 90 -0.071796 hybrid +143_1-15 Q0 MARCO_14_663303959-3 91 -0.073556 hybrid +143_1-15 Q0 MARCO_01_930428166-2 92 -0.074770 hybrid +143_1-15 Q0 MARCO_55_141566090-11 93 -0.075020 hybrid +143_1-15 Q0 MARCO_50_590317577-2 94 -0.075803 hybrid +143_1-15 Q0 MARCO_34_1004019909-6 95 -0.076405 hybrid +143_1-15 Q0 MARCO_01_829924766-21 96 -0.078209 hybrid +143_1-15 Q0 MARCO_01_831982137-22 97 -0.078209 hybrid +143_1-15 Q0 MARCO_19_2489928640-14 98 -0.078209 hybrid +143_1-15 Q0 MARCO_19_2513676244-16 99 -0.078210 hybrid +143_1-15 Q0 MARCO_50_2234424627-34 100 -0.078481 hybrid +143_1-17 Q0 MARCO_31_935635753-1 1 0.500000 hybrid +143_1-17 Q0 MARCO_04_109236336-1 2 0.301347 hybrid +143_1-17 Q0 MARCO_03_1600099379-4 3 0.288118 hybrid +143_1-17 Q0 MARCO_13_738450686-3 4 0.242292 hybrid +143_1-17 Q0 MARCO_31_935479567-4 5 0.225774 hybrid +143_1-17 Q0 MARCO_33_577267015-1 6 0.215835 hybrid +143_1-17 Q0 MARCO_02_432582087-2 7 0.188719 hybrid +143_1-17 Q0 MARCO_13_722281433-1 8 0.182068 hybrid +143_1-17 Q0 MARCO_33_1486857172-3 9 0.179583 hybrid +143_1-17 Q0 MARCO_04_140448105-3 10 0.163577 hybrid +143_1-17 Q0 MARCO_04_182354326-3 11 0.154441 hybrid +143_1-17 Q0 MARCO_04_120290876-2 12 0.141431 hybrid +143_1-17 Q0 MARCO_40_671856246-4 13 0.139604 hybrid +143_1-17 Q0 MARCO_02_22149679-8 14 0.138873 hybrid +143_1-17 Q0 MARCO_04_57938591-2 15 0.136534 hybrid +143_1-17 Q0 MARCO_03_1767503946-5 16 0.131637 hybrid +143_1-17 Q0 MARCO_31_936522350-1 17 0.127106 hybrid +143_1-17 Q0 MARCO_03_1766635921-2 18 0.124109 hybrid +143_1-17 Q0 MARCO_02_446371868-1 19 0.121551 hybrid +143_1-17 Q0 MARCO_03_1704937636-4 20 0.111977 hybrid +143_1-17 Q0 MARCO_14_1530156707-2 21 0.104376 hybrid +143_1-17 Q0 MARCO_04_115374518-1 22 0.101087 hybrid +143_1-17 Q0 MARCO_04_89012131-2 23 0.093120 hybrid +143_1-17 Q0 MARCO_14_92395712-5 24 0.086835 hybrid +143_1-17 Q0 MARCO_11_1049562292-24 25 0.081061 hybrid +143_1-17 Q0 MARCO_39_1472864279-11 26 0.079672 hybrid +143_1-17 Q0 MARCO_22_1330966107-1 27 0.065858 hybrid +143_1-17 Q0 MARCO_13_1450774782-2 28 0.059134 hybrid +143_1-17 Q0 MARCO_37_195339642-1 29 0.058769 hybrid +143_1-17 Q0 MARCO_13_381481906-1 30 0.049048 hybrid +143_1-17 Q0 MARCO_04_181617020-3 31 0.048975 hybrid +143_1-17 Q0 MARCO_19_2148839809-1 32 0.039912 hybrid +143_1-17 Q0 MARCO_54_1549647766-19 33 0.034869 hybrid +143_1-17 Q0 MARCO_50_1527356543-1 34 0.033700 hybrid +143_1-17 Q0 MARCO_20_1734420017-1 35 0.027049 hybrid +143_1-17 Q0 MARCO_40_914894193-1 36 0.016524 hybrid +143_1-17 Q0 MARCO_04_132447363-3 37 0.015574 hybrid +143_1-17 Q0 MARCO_15_1888237285-2 38 0.010531 hybrid +143_1-17 Q0 MARCO_41_1452876079-23 39 0.009288 hybrid +143_1-17 Q0 MARCO_04_6797397-3 40 0.001249 hybrid +143_1-17 Q0 MARCO_09_1295091235-1 41 -0.000579 hybrid +143_1-17 Q0 MARCO_30_1031738861-1 42 -0.000725 hybrid +143_1-17 Q0 MARCO_31_936605678-1 43 -0.000725 hybrid +143_1-17 Q0 MARCO_19_1752523235-1 44 -0.003429 hybrid +143_1-17 Q0 MARCO_04_223353464-2 45 -0.005841 hybrid +143_1-17 Q0 MARCO_34_173199552-30 46 -0.007668 hybrid +143_1-17 Q0 MARCO_49_1134162950-1 47 -0.007669 hybrid +143_1-17 Q0 MARCO_03_1721229318-2 48 -0.009422 hybrid +143_1-17 Q0 MARCO_50_1435357291-31 49 -0.009788 hybrid +143_1-17 Q0 MARCO_50_2209065241-22 50 -0.009788 hybrid +143_1-17 Q0 MARCO_30_1746099519-1 51 -0.010007 hybrid +143_1-17 Q0 MARCO_04_115361639-4 52 -0.015123 hybrid +143_1-17 Q0 MARCO_29_899781007-11 53 -0.015927 hybrid +143_1-17 Q0 MARCO_04_1266004399-7 54 -0.017681 hybrid +143_1-17 Q0 MARCO_30_1081598155-8 55 -0.018047 hybrid +143_1-17 Q0 MARCO_04_123624641-4 56 -0.021701 hybrid +143_1-17 Q0 MARCO_27_1330280154-1 57 -0.022870 hybrid +143_1-17 Q0 MARCO_03_1775623438-1 58 -0.023016 hybrid +143_1-17 Q0 MARCO_26_1622944927-2 59 -0.024332 hybrid +143_1-17 Q0 MARCO_03_1703111759-4 60 -0.024697 hybrid +143_1-17 Q0 MARCO_03_1775623438-3 61 -0.026232 hybrid +143_1-17 Q0 MARCO_08_381172818-5 62 -0.026306 hybrid +143_1-17 Q0 MARCO_03_1743273328-3 63 -0.026525 hybrid +143_1-17 Q0 MARCO_01_1146115082-1 64 -0.031275 hybrid +143_1-17 Q0 MARCO_48_1475514440-1 65 -0.031276 hybrid +143_1-17 Q0 MARCO_50_1309922276-58 66 -0.031277 hybrid +143_1-17 Q0 MARCO_03_1766726260-2 67 -0.032225 hybrid +143_1-17 Q0 MARCO_11_1119674618-30 68 -0.033249 hybrid +143_1-17 Q0 MARCO_39_1219433913-1 69 -0.034345 hybrid +143_1-17 Q0 MARCO_04_27726088-1 70 -0.034637 hybrid +143_1-17 Q0 MARCO_20_96341667-1 71 -0.034638 hybrid +143_1-17 Q0 MARCO_24_1141071116-3 72 -0.034639 hybrid +143_1-17 Q0 MARCO_33_1160047511-1 73 -0.034930 hybrid +143_1-17 Q0 MARCO_30_1888315374-1 74 -0.035807 hybrid +143_1-17 Q0 MARCO_31_935499303-1 75 -0.042823 hybrid +143_1-17 Q0 MARCO_04_89012131-1 76 -0.043627 hybrid +143_1-17 Q0 MARCO_33_1469033193-3 77 -0.045162 hybrid +143_1-17 Q0 MARCO_58_1508378661-1 78 -0.045163 hybrid +143_1-17 Q0 MARCO_22_1388485234-5 79 -0.046112 hybrid +143_1-17 Q0 MARCO_03_1565182144-3 80 -0.048158 hybrid +143_1-17 Q0 MARCO_34_1379890983-28 81 -0.053129 hybrid +143_1-17 Q0 MARCO_27_27516771-2 82 -0.055467 hybrid +143_1-17 Q0 MARCO_03_1718990545-3 83 -0.059049 hybrid +143_1-17 Q0 MARCO_11_267076900-7 84 -0.065407 hybrid +143_1-17 Q0 MARCO_30_1746099519-3 85 -0.065408 hybrid +143_1-17 Q0 MARCO_47_664970956-12 86 -0.065409 hybrid +143_1-17 Q0 MARCO_01_2010242349-2 87 -0.066723 hybrid +143_1-17 Q0 MARCO_25_734854946-1 88 -0.069573 hybrid +143_1-17 Q0 MARCO_05_525510476-32 89 -0.070523 hybrid +143_1-17 Q0 MARCO_24_1141071116-1 90 -0.072862 hybrid +143_1-17 Q0 MARCO_50_726761794-2 91 -0.072935 hybrid +143_1-17 Q0 MARCO_03_1703268461-2 92 -0.075786 hybrid +143_1-17 Q0 MARCO_26_1613970950-6 93 -0.075787 hybrid +143_1-17 Q0 MARCO_50_1989440479-25 94 -0.075787 hybrid +143_1-17 Q0 MARCO_26_1919870865-12 95 -0.076882 hybrid +143_1-17 Q0 MARCO_03_1601622773-3 96 -0.079148 hybrid +143_1-17 Q0 MARCO_04_172867802-1 97 -0.079149 hybrid +143_1-17 Q0 MARCO_26_1622122459-5 98 -0.086237 hybrid +143_1-17 Q0 MARCO_04_27742012-1 99 -0.086968 hybrid +143_1-17 Q0 MARCO_48_1011809944-8 100 -0.086969 hybrid +143_1-19 Q0 MARCO_51_340692408-2 1 0.500000 hybrid +143_1-19 Q0 MARCO_31_295248992-6 2 0.317909 hybrid +143_1-19 Q0 MARCO_30_900416977-6 3 0.291701 hybrid +143_1-19 Q0 MARCO_23_180832328-3 4 0.253660 hybrid +143_1-19 Q0 KILT_602839-7 5 0.156735 hybrid +143_1-19 Q0 MARCO_05_670220206-271 6 0.151557 hybrid +143_1-19 Q0 MARCO_47_465288285-1 7 0.130340 hybrid +143_1-19 Q0 MARCO_13_371803608-7 8 0.116264 hybrid +143_1-19 Q0 MARCO_13_751228545-1 9 0.104674 hybrid +143_1-19 Q0 MARCO_50_468316732-32 10 0.103310 hybrid +143_1-19 Q0 MARCO_45_508984159-1 11 0.094150 hybrid +143_1-19 Q0 MARCO_13_430403233-3 12 0.065175 hybrid +143_1-19 Q0 KILT_51192992-3 13 0.064278 hybrid +143_1-19 Q0 MARCO_50_1142559583-17 14 0.050856 hybrid +143_1-19 Q0 MARCO_32_1748833973-5 15 0.050202 hybrid +143_1-19 Q0 MARCO_24_936466006-22 16 0.044089 hybrid +143_1-19 Q0 MARCO_05_264874856-4 17 0.037659 hybrid +143_1-19 Q0 MARCO_30_900212772-4 18 0.024816 hybrid +143_1-19 Q0 MARCO_43_257417797-2 19 0.012404 hybrid +143_1-19 Q0 MARCO_41_1017897843-9 20 0.011264 hybrid +143_1-19 Q0 MARCO_37_1669593347-3 21 0.007581 hybrid +143_1-19 Q0 MARCO_47_612361272-1 22 -0.001018 hybrid +143_1-19 Q0 MARCO_44_39882752-1 23 -0.009916 hybrid +143_1-19 Q0 MARCO_25_68841104-10 24 -0.019804 hybrid +143_1-19 Q0 MARCO_41_1261123264-34 25 -0.021655 hybrid +143_1-19 Q0 MARCO_14_666872929-6 26 -0.025188 hybrid +143_1-19 Q0 MARCO_37_348402975-4 27 -0.027076 hybrid +143_1-19 Q0 MARCO_46_137272355-3 28 -0.036610 hybrid +143_1-19 Q0 MARCO_36_1501614405-1 29 -0.045975 hybrid +143_1-19 Q0 MARCO_14_663292036-7 30 -0.046106 hybrid +143_1-19 Q0 MARCO_30_898738123-37 31 -0.046742 hybrid +143_1-19 Q0 MARCO_39_433640276-6 32 -0.054518 hybrid +143_1-19 Q0 MARCO_14_680680940-1 33 -0.059696 hybrid +143_1-19 Q0 MARCO_22_1394314481-9 34 -0.059827 hybrid +143_1-19 Q0 MARCO_35_305984262-2 35 -0.060369 hybrid +143_1-19 Q0 MARCO_01_941336862-6 36 -0.062369 hybrid +143_1-19 Q0 MARCO_39_1706424961-1 37 -0.068314 hybrid +143_1-19 Q0 MARCO_36_1500913083-4 38 -0.068594 hybrid +143_1-19 Q0 MARCO_25_1274773446-29 39 -0.070482 hybrid +143_1-19 Q0 MARCO_50_1876477087-42 40 -0.070575 hybrid +143_1-19 Q0 MARCO_36_972226623-6 41 -0.075454 hybrid +143_1-19 Q0 MARCO_14_1549599732-17 42 -0.086278 hybrid +143_1-19 Q0 MARCO_25_250880460-13 43 -0.089231 hybrid +143_1-19 Q0 MARCO_23_180968154-1 44 -0.091662 hybrid +143_1-19 Q0 MARCO_05_326289349-1 45 -0.094166 hybrid +143_1-19 Q0 MARCO_44_738928019-4 46 -0.094353 hybrid +143_1-19 Q0 MARCO_41_1507643819-31 47 -0.095531 hybrid +143_1-19 Q0 MARCO_33_173143478-10 48 -0.097045 hybrid +143_1-19 Q0 MARCO_49_318095782-4 49 -0.097269 hybrid +143_1-19 Q0 KILT_235224-3 50 -0.100765 hybrid +143_1-19 Q0 MARCO_28_1571019334-2 51 -0.110486 hybrid +143_1-19 Q0 MARCO_15_1719201349-7 52 -0.111009 hybrid +143_1-19 Q0 MARCO_25_1443461979-6 53 -0.113234 hybrid +143_1-19 Q0 MARCO_30_432067887-12 54 -0.115776 hybrid +143_1-19 Q0 MARCO_50_2823588468-12 55 -0.116150 hybrid +143_1-19 Q0 MARCO_05_571614455-5 56 -0.118225 hybrid +143_1-19 Q0 MARCO_01_833068749-27 57 -0.120206 hybrid +143_1-19 Q0 MARCO_19_2501258328-25 58 -0.120206 hybrid +143_1-19 Q0 MARCO_18_3913499604-6 59 -0.124412 hybrid +143_1-19 Q0 MARCO_01_941336862-5 60 -0.132955 hybrid +143_1-19 Q0 MARCO_34_1002360839-1 61 -0.133535 hybrid +143_1-19 Q0 MARCO_53_208809765-13 62 -0.138264 hybrid +143_1-19 Q0 MARCO_27_1643809758-16 63 -0.138395 hybrid +143_1-19 Q0 MARCO_00_1280213068-4 64 -0.141311 hybrid +143_1-19 Q0 MARCO_26_235703194-23 65 -0.143984 hybrid +143_1-19 Q0 MARCO_54_1749042174-1 66 -0.146919 hybrid +143_1-19 Q0 MARCO_05_324521388-4 67 -0.148059 hybrid +143_1-19 Q0 MARCO_47_892317792-4 68 -0.150845 hybrid +143_1-19 Q0 MARCO_17_870205272-1 69 -0.151760 hybrid +143_1-19 Q0 MARCO_48_614229486-3 70 -0.153162 hybrid +143_1-19 Q0 MARCO_44_689145553-1 71 -0.154378 hybrid +143_1-19 Q0 KILT_57484690-1 72 -0.158752 hybrid +143_1-19 Q0 MARCO_14_1214841376-1 73 -0.163631 hybrid +143_1-19 Q0 MARCO_28_1725007195-10 74 -0.163724 hybrid +143_1-19 Q0 MARCO_41_1384048369-49 75 -0.166285 hybrid +143_1-19 Q0 MARCO_49_526936181-27 76 -0.174043 hybrid +143_1-19 Q0 MARCO_54_723749864-3 77 -0.174492 hybrid +143_1-19 Q0 MARCO_30_899028894-12 78 -0.177090 hybrid +143_1-19 Q0 MARCO_09_1210712770-1 79 -0.179389 hybrid +143_1-19 Q0 MARCO_47_466635470-13 80 -0.179632 hybrid +143_1-19 Q0 MARCO_41_1463051846-4 81 -0.180062 hybrid +143_1-19 Q0 MARCO_48_456973088-1 82 -0.181015 hybrid +143_1-19 Q0 MARCO_58_1155404436-12 83 -0.181576 hybrid +143_1-19 Q0 MARCO_20_672266130-8 84 -0.182062 hybrid +143_1-19 Q0 MARCO_18_4230733443-49 85 -0.182474 hybrid +143_1-19 Q0 MARCO_21_1027701084-16 86 -0.182660 hybrid +143_1-19 Q0 MARCO_40_1104405689-2 87 -0.183240 hybrid +143_1-19 Q0 MARCO_16_412611598-5 88 -0.183726 hybrid +143_1-19 Q0 MARCO_01_2035411807-9 89 -0.185876 hybrid +143_1-19 Q0 MARCO_23_705551737-9 90 -0.185876 hybrid +143_1-19 Q0 MARCO_54_547997919-7 91 -0.186717 hybrid +143_1-19 Q0 MARCO_40_601329428-4 92 -0.188399 hybrid +143_1-19 Q0 MARCO_50_1142559583-16 93 -0.189203 hybrid +143_1-19 Q0 KILT_60448362-5 94 -0.189596 hybrid +143_1-19 Q0 MARCO_40_587789055-10 95 -0.190773 hybrid +143_1-19 Q0 MARCO_05_264874856-5 96 -0.194306 hybrid +143_1-19 Q0 MARCO_24_1143430543-2 97 -0.195521 hybrid +143_1-19 Q0 MARCO_14_1553784563-1 98 -0.195540 hybrid +143_1-19 Q0 MARCO_43_580273458-2 99 -0.195802 hybrid +143_1-19 Q0 MARCO_16_2406310924-10 100 -0.196213 hybrid +143_1-3 Q0 MARCO_51_1439694472-1 1 0.500000 hybrid +143_1-3 Q0 MARCO_11_226013166-18 2 0.226858 hybrid +143_1-3 Q0 MARCO_23_762117817-1 3 0.107316 hybrid +143_1-3 Q0 MARCO_48_1914459474-3 4 0.067210 hybrid +143_1-3 Q0 MARCO_16_171147433-5 5 0.049211 hybrid +143_1-3 Q0 MARCO_35_1781628187-16 6 0.004663 hybrid +143_1-3 Q0 MARCO_38_1685027474-15 7 -0.018484 hybrid +143_1-3 Q0 MARCO_44_698962011-4 8 -0.066523 hybrid +143_1-3 Q0 MARCO_26_528481307-1 9 -0.120467 hybrid +143_1-3 Q0 MARCO_04_388374061-14 10 -0.123975 hybrid +143_1-3 Q0 MARCO_25_1019464116-1 11 -0.133230 hybrid +143_1-3 Q0 MARCO_15_1889614341-1 12 -0.135698 hybrid +143_1-3 Q0 MARCO_45_1174402691-3 13 -0.135839 hybrid +143_1-3 Q0 MARCO_48_1914459474-1 14 -0.138149 hybrid +143_1-3 Q0 MARCO_11_867333174-5 15 -0.140952 hybrid +143_1-3 Q0 MARCO_13_980360380-16 16 -0.141692 hybrid +143_1-3 Q0 MARCO_49_1549997107-7 17 -0.144601 hybrid +143_1-3 Q0 MARCO_04_164473184-3 18 -0.146434 hybrid +143_1-3 Q0 MARCO_53_1216669344-282 19 -0.151318 hybrid +143_1-3 Q0 MARCO_14_1284117889-15 20 -0.154156 hybrid +143_1-3 Q0 MARCO_53_1216669344-221 21 -0.155284 hybrid +143_1-3 Q0 KILT_57038-3 22 -0.160009 hybrid +143_1-3 Q0 MARCO_10_245673124-5 23 -0.162089 hybrid +143_1-3 Q0 MARCO_23_1703943373-5 24 -0.166196 hybrid +143_1-3 Q0 KILT_2394038-1 25 -0.166884 hybrid +143_1-3 Q0 KILT_364578-56 26 -0.169987 hybrid +143_1-3 Q0 MARCO_24_781786007-8 27 -0.178149 hybrid +143_1-3 Q0 MARCO_01_675153200-4 28 -0.178466 hybrid +143_1-3 Q0 KILT_43100631-2 29 -0.179718 hybrid +143_1-3 Q0 MARCO_14_705730197-5 30 -0.180758 hybrid +143_1-3 Q0 MARCO_07_190223914-3 31 -0.181833 hybrid +143_1-3 Q0 KILT_42836571-3 32 -0.182080 hybrid +143_1-3 Q0 MARCO_03_1624164383-1 33 -0.188515 hybrid +143_1-3 Q0 MARCO_04_638623228-1 34 -0.189044 hybrid +143_1-3 Q0 MARCO_03_1789864147-1 35 -0.189290 hybrid +143_1-3 Q0 MARCO_40_420034335-25 36 -0.189361 hybrid +143_1-3 Q0 KILT_15619869-2 37 -0.190225 hybrid +143_1-3 Q0 MARCO_44_829590771-11 38 -0.190295 hybrid +143_1-3 Q0 MARCO_03_138245845-1 39 -0.199057 hybrid +143_1-3 Q0 MARCO_03_1794517528-1 40 -0.199356 hybrid +143_1-3 Q0 MARCO_26_1839264047-5 41 -0.199973 hybrid +143_1-3 Q0 MARCO_29_758563114-2 42 -0.200185 hybrid +143_1-3 Q0 MARCO_04_379700185-22 43 -0.200344 hybrid +143_1-3 Q0 MARCO_50_2592748420-8 44 -0.201084 hybrid +143_1-3 Q0 MARCO_25_1031256445-1 45 -0.201683 hybrid +143_1-3 Q0 MARCO_00_655538424-16 46 -0.205456 hybrid +143_1-3 Q0 MARCO_04_392775502-21 47 -0.210709 hybrid +143_1-3 Q0 MARCO_45_876142269-2 48 -0.211080 hybrid +143_1-3 Q0 MARCO_33_863966135-1 49 -0.211802 hybrid +143_1-3 Q0 MARCO_14_532108874-3 50 -0.213988 hybrid +143_1-3 Q0 MARCO_33_1157932230-2 51 -0.215346 hybrid +143_1-3 Q0 MARCO_17_779849799-72 52 -0.216421 hybrid +143_1-3 Q0 KILT_32045-23 53 -0.216633 hybrid +143_1-3 Q0 MARCO_17_31666164-3 54 -0.216915 hybrid +143_1-3 Q0 MARCO_21_1059417396-1 55 -0.217602 hybrid +143_1-3 Q0 MARCO_15_1931232721-1 56 -0.219683 hybrid +143_1-3 Q0 KILT_24135470-3 57 -0.219929 hybrid +143_1-3 Q0 MARCO_46_34750069-9 58 -0.222468 hybrid +143_1-3 Q0 MARCO_26_527328656-1 59 -0.223438 hybrid +143_1-3 Q0 MARCO_26_769822721-6 60 -0.224266 hybrid +143_1-3 Q0 MARCO_33_863966135-2 61 -0.230277 hybrid +143_1-3 Q0 MARCO_04_379637452-15 62 -0.232745 hybrid +143_1-3 Q0 MARCO_04_375414108-15 63 -0.233927 hybrid +143_1-3 Q0 MARCO_56_751961880-13 64 -0.235302 hybrid +143_1-3 Q0 MARCO_33_1373848173-4 65 -0.239198 hybrid +143_1-3 Q0 MARCO_17_2374067149-63 66 -0.239339 hybrid +143_1-3 Q0 MARCO_33_1157932230-10 67 -0.239427 hybrid +143_1-3 Q0 MARCO_33_1372815597-1 68 -0.241084 hybrid +143_1-3 Q0 KILT_226864-3 69 -0.241842 hybrid +143_1-3 Q0 MARCO_17_3463690380-3 70 -0.242036 hybrid +143_1-3 Q0 MARCO_03_1584326435-1 71 -0.242794 hybrid +143_1-3 Q0 KILT_480747-3 72 -0.243305 hybrid +143_1-3 Q0 MARCO_52_831819443-9 73 -0.244345 hybrid +143_1-3 Q0 MARCO_47_544904080-3 74 -0.247889 hybrid +143_1-3 Q0 MARCO_50_1841213840-9 75 -0.248277 hybrid +143_1-3 Q0 MARCO_50_777771910-15 76 -0.248999 hybrid +143_1-3 Q0 MARCO_26_1174809560-60 77 -0.251062 hybrid +143_1-3 Q0 MARCO_25_227987521-15 78 -0.251467 hybrid +143_1-3 Q0 MARCO_45_532291240-3 79 -0.252490 hybrid +143_1-3 Q0 MARCO_26_1649298685-3 80 -0.259489 hybrid +143_1-3 Q0 MARCO_01_1755461596-4 81 -0.262098 hybrid +143_1-3 Q0 MARCO_14_799964066-19 82 -0.262292 hybrid +143_1-3 Q0 MARCO_17_1031048578-15 83 -0.262309 hybrid +143_1-3 Q0 MARCO_04_392189174-19 84 -0.267316 hybrid +143_1-3 Q0 KILT_28738830-1 85 -0.268726 hybrid +143_1-3 Q0 KILT_429844-6 86 -0.268885 hybrid +143_1-3 Q0 MARCO_48_398232529-11 87 -0.269273 hybrid +143_1-3 Q0 MARCO_48_398232529-13 88 -0.269273 hybrid +143_1-3 Q0 MARCO_48_398232529-15 89 -0.269273 hybrid +143_1-3 Q0 MARCO_17_4311193218-6 90 -0.270595 hybrid +143_1-3 Q0 KILT_160353-15 91 -0.271582 hybrid +143_1-3 Q0 MARCO_56_780852516-1 92 -0.272164 hybrid +143_1-3 Q0 MARCO_27_911476054-2 93 -0.273081 hybrid +143_1-3 Q0 KILT_14357424-1 94 -0.273169 hybrid +143_1-3 Q0 MARCO_14_666078890-9 95 -0.273874 hybrid +143_1-3 Q0 MARCO_53_1307333401-7 96 -0.274279 hybrid +143_1-3 Q0 MARCO_52_186203385-14 97 -0.275178 hybrid +143_1-3 Q0 MARCO_13_1507017915-1 98 -0.276095 hybrid +143_1-3 Q0 MARCO_06_1922479398-13 99 -0.276324 hybrid +143_1-3 Q0 MARCO_41_1285317593-12 100 -0.276412 hybrid +143_1-5 Q0 MARCO_30_1754924467-9 1 0.500000 hybrid +143_1-5 Q0 MARCO_44_51723768-4 2 0.203172 hybrid +143_1-5 Q0 MARCO_40_265738671-23 3 0.173673 hybrid +143_1-5 Q0 MARCO_24_1094783790-2 4 0.148097 hybrid +143_1-5 Q0 MARCO_48_417853656-6 5 0.133744 hybrid +143_1-5 Q0 MARCO_37_268933100-2 6 0.124447 hybrid +143_1-5 Q0 MARCO_36_258567781-4 7 0.099891 hybrid +143_1-5 Q0 MARCO_39_1436316514-1 8 0.087080 hybrid +143_1-5 Q0 MARCO_33_1367395824-11 9 0.086672 hybrid +143_1-5 Q0 MARCO_54_290673059-10 10 0.072909 hybrid +143_1-5 Q0 MARCO_43_510056228-19 11 0.061209 hybrid +143_1-5 Q0 MARCO_40_274248920-37 12 0.041664 hybrid +143_1-5 Q0 MARCO_56_1002091853-3 13 0.023003 hybrid +143_1-5 Q0 MARCO_51_1439694472-2 14 0.004954 hybrid +143_1-5 Q0 MARCO_50_845218021-8 15 0.003843 hybrid +143_1-5 Q0 MARCO_48_417869836-5 16 -0.001984 hybrid +143_1-5 Q0 MARCO_24_1050508445-21 17 -0.005589 hybrid +143_1-5 Q0 MARCO_51_184011502-6 18 -0.006746 hybrid +143_1-5 Q0 MARCO_56_796830399-2 19 -0.013185 hybrid +143_1-5 Q0 MARCO_33_1375764492-3 20 -0.014364 hybrid +143_1-5 Q0 MARCO_02_1759175683-1 21 -0.017176 hybrid +143_1-5 Q0 MARCO_20_1371938149-21 22 -0.021189 hybrid +143_1-5 Q0 MARCO_43_510056228-15 23 -0.041029 hybrid +143_1-5 Q0 MARCO_56_1005279037-3 24 -0.042911 hybrid +143_1-5 Q0 MARCO_13_960110949-9 25 -0.048443 hybrid +143_1-5 Q0 MARCO_31_458509713-19 26 -0.052207 hybrid +143_1-5 Q0 MARCO_43_510056228-12 27 -0.055949 hybrid +143_1-5 Q0 MARCO_41_807799926-1 28 -0.056765 hybrid +143_1-5 Q0 MARCO_30_167021994-2 29 -0.059010 hybrid +143_1-5 Q0 MARCO_28_604730029-2 30 -0.059508 hybrid +143_1-5 Q0 MARCO_56_1000305341-22 31 -0.065540 hybrid +143_1-5 Q0 MARCO_33_1367395824-18 32 -0.070868 hybrid +143_1-5 Q0 MARCO_33_1367395824-14 33 -0.072297 hybrid +143_1-5 Q0 MARCO_33_1327755819-4 34 -0.074655 hybrid +143_1-5 Q0 MARCO_24_1048940224-2 35 -0.081004 hybrid +143_1-5 Q0 MARCO_47_1377756535-1 36 -0.085606 hybrid +143_1-5 Q0 MARCO_47_614323063-24 37 -0.088804 hybrid +143_1-5 Q0 MARCO_20_1414337456-4 38 -0.091230 hybrid +143_1-5 Q0 MARCO_43_510056228-7 39 -0.093066 hybrid +143_1-5 Q0 MARCO_00_1699330259-565 40 -0.102091 hybrid +143_1-5 Q0 KILT_921278-14 41 -0.106625 hybrid +143_1-5 Q0 MARCO_40_610379159-5 42 -0.107147 hybrid +143_1-5 Q0 MARCO_28_513161199-14 43 -0.115355 hybrid +143_1-5 Q0 MARCO_30_1803731405-6 44 -0.121568 hybrid +143_1-5 Q0 MARCO_53_375654980-5 45 -0.124402 hybrid +143_1-5 Q0 MARCO_44_1953438940-4 46 -0.126216 hybrid +143_1-5 Q0 MARCO_56_1000305341-21 47 -0.128937 hybrid +143_1-5 Q0 MARCO_26_1880487096-4 48 -0.131907 hybrid +143_1-5 Q0 MARCO_31_455783692-2 49 -0.132814 hybrid +143_1-5 Q0 MARCO_23_1182034884-3 50 -0.133880 hybrid +143_1-5 Q0 MARCO_19_2655252071-4 51 -0.135082 hybrid +143_1-5 Q0 MARCO_57_239779256-7 52 -0.139140 hybrid +143_1-5 Q0 MARCO_47_1377756535-11 53 -0.139775 hybrid +143_1-5 Q0 MARCO_14_1466567048-4 54 -0.140931 hybrid +143_1-5 Q0 MARCO_40_1508503943-1 55 -0.145602 hybrid +143_1-5 Q0 MARCO_32_540242530-9 56 -0.147915 hybrid +143_1-5 Q0 MARCO_36_1188222711-2 57 -0.150999 hybrid +143_1-5 Q0 MARCO_51_1439694472-1 58 -0.154423 hybrid +143_1-5 Q0 MARCO_28_1327057925-1 59 -0.157552 hybrid +143_1-5 Q0 MARCO_33_1367395824-19 60 -0.159796 hybrid +143_1-5 Q0 MARCO_12_1119667206-9 61 -0.163923 hybrid +143_1-5 Q0 MARCO_26_1908403895-11 62 -0.164241 hybrid +143_1-5 Q0 MARCO_34_1109221255-20 63 -0.165624 hybrid +143_1-5 Q0 MARCO_41_807715013-7 64 -0.168254 hybrid +143_1-5 Q0 MARCO_35_948805654-45 65 -0.169932 hybrid +143_1-5 Q0 MARCO_37_256400583-3 66 -0.170453 hybrid +143_1-5 Q0 MARCO_28_605042457-6 67 -0.175079 hybrid +143_1-5 Q0 MARCO_28_595411498-2 68 -0.181904 hybrid +143_1-5 Q0 MARCO_37_1053736877-5 69 -0.182811 hybrid +143_1-5 Q0 MARCO_37_1053722321-3 70 -0.183514 hybrid +143_1-5 Q0 MARCO_28_595411498-10 71 -0.184149 hybrid +143_1-5 Q0 MARCO_40_1508520889-4 72 -0.184602 hybrid +143_1-5 Q0 MARCO_40_1146215230-49 73 -0.184761 hybrid +143_1-5 Q0 MARCO_32_930845439-6 74 -0.185191 hybrid +143_1-5 Q0 MARCO_33_1376783323-3 75 -0.186620 hybrid +143_1-5 Q0 MARCO_33_1376783323-2 76 -0.189159 hybrid +143_1-5 Q0 MARCO_34_1213789084-1 77 -0.191722 hybrid +143_1-5 Q0 MARCO_44_910762792-25 78 -0.193195 hybrid +143_1-5 Q0 MARCO_40_272533853-8 79 -0.193944 hybrid +143_1-5 Q0 MARCO_45_461631973-3 80 -0.193944 hybrid +143_1-5 Q0 MARCO_44_670317189-1 81 -0.194715 hybrid +143_1-5 Q0 MARCO_04_131031409-3 82 -0.201018 hybrid +143_1-5 Q0 MARCO_37_1156490243-15 83 -0.202039 hybrid +143_1-5 Q0 MARCO_19_2655336378-2 84 -0.202378 hybrid +143_1-5 Q0 MARCO_48_419308317-6 85 -0.205802 hybrid +143_1-5 Q0 MARCO_00_553417761-9 86 -0.206777 hybrid +143_1-5 Q0 MARCO_04_577072377-9 87 -0.206778 hybrid +143_1-5 Q0 MARCO_56_904352360-5 88 -0.207911 hybrid +143_1-5 Q0 MARCO_54_2063636464-6 89 -0.208365 hybrid +143_1-5 Q0 MARCO_28_612238797-1 90 -0.209204 hybrid +143_1-5 Q0 MARCO_21_1059417396-1 91 -0.209725 hybrid +143_1-5 Q0 MARCO_46_33614586-5 92 -0.211720 hybrid +143_1-5 Q0 MARCO_14_559485096-15 93 -0.212083 hybrid +143_1-5 Q0 MARCO_51_1452141501-3 94 -0.212650 hybrid +143_1-5 Q0 MARCO_12_1892061757-3 95 -0.212695 hybrid +143_1-5 Q0 MARCO_14_47894950-3 96 -0.214577 hybrid +143_1-5 Q0 MARCO_14_47894950-5 97 -0.214578 hybrid +143_1-5 Q0 MARCO_13_458172103-1 98 -0.215053 hybrid +143_1-5 Q0 MARCO_40_1066671681-3 99 -0.215439 hybrid +143_1-5 Q0 MARCO_19_104099051-38 100 -0.217570 hybrid +143_1-7 Q0 MARCO_50_1897370819-16 1 0.500000 hybrid +143_1-7 Q0 MARCO_40_1166790196-3 2 0.386564 hybrid +143_1-7 Q0 MARCO_27_1292101712-3 3 0.329624 hybrid +143_1-7 Q0 MARCO_06_1833576180-16 4 0.319868 hybrid +143_1-7 Q0 MARCO_02_1444615956-4 5 0.289266 hybrid +143_1-7 Q0 MARCO_27_1292256081-3 6 0.289265 hybrid +143_1-7 Q0 MARCO_27_1292446299-4 7 0.289265 hybrid +143_1-7 Q0 MARCO_47_1181304031-9 8 0.257775 hybrid +143_1-7 Q0 MARCO_02_1444586713-2 9 0.255238 hybrid +143_1-7 Q0 MARCO_27_1292093865-5 10 0.255237 hybrid +143_1-7 Q0 MARCO_27_1292261349-5 11 0.255237 hybrid +143_1-7 Q0 MARCO_27_1292270650-5 12 0.255237 hybrid +143_1-7 Q0 MARCO_56_1001826133-4 13 0.253930 hybrid +143_1-7 Q0 MARCO_02_1444859871-7 14 0.246711 hybrid +143_1-7 Q0 MARCO_27_1292440845-3 15 0.246711 hybrid +143_1-7 Q0 MARCO_44_1555608026-2 16 0.235830 hybrid +143_1-7 Q0 MARCO_27_1292125742-3 17 0.227696 hybrid +143_1-7 Q0 MARCO_40_605380166-1 18 0.221026 hybrid +143_1-7 Q0 MARCO_09_877956354-4 19 0.218463 hybrid +143_1-7 Q0 MARCO_51_883170522-4 20 0.174496 hybrid +143_1-7 Q0 MARCO_19_2497924734-15 21 0.173633 hybrid +143_1-7 Q0 MARCO_02_1444501388-3 22 0.159430 hybrid +143_1-7 Q0 MARCO_35_1470109302-3 23 0.141880 hybrid +143_1-7 Q0 MARCO_28_1134605989-2 24 0.134504 hybrid +143_1-7 Q0 MARCO_07_292622183-2 25 0.131862 hybrid +143_1-7 Q0 MARCO_01_930142702-3 26 0.131758 hybrid +143_1-7 Q0 MARCO_02_1444455083-11 27 0.128201 hybrid +143_1-7 Q0 MARCO_02_1444576699-3 28 0.128200 hybrid +143_1-7 Q0 MARCO_27_1292059270-8 29 0.128200 hybrid +143_1-7 Q0 MARCO_27_1292277622-3 30 0.128200 hybrid +143_1-7 Q0 MARCO_27_1292282494-4 31 0.128200 hybrid +143_1-7 Q0 MARCO_32_1773116803-7 32 0.116195 hybrid +143_1-7 Q0 MARCO_25_1055351809-3 33 0.113292 hybrid +143_1-7 Q0 MARCO_06_10898394-1 34 0.112874 hybrid +143_1-7 Q0 MARCO_59_542136689-14 35 0.109395 hybrid +143_1-7 Q0 MARCO_45_801547507-1 36 0.105158 hybrid +143_1-7 Q0 MARCO_57_1355044287-5 37 0.093650 hybrid +143_1-7 Q0 MARCO_40_1509835109-11 38 0.087241 hybrid +143_1-7 Q0 MARCO_33_1283607636-8 39 0.081330 hybrid +143_1-7 Q0 MARCO_39_1436326863-5 40 0.075707 hybrid +143_1-7 Q0 MARCO_45_1433057985-8 41 0.073745 hybrid +143_1-7 Q0 MARCO_38_172388574-1 42 0.072882 hybrid +143_1-7 Q0 MARCO_30_1722718213-5 43 0.072359 hybrid +143_1-7 Q0 MARCO_50_665146265-2 44 0.069168 hybrid +143_1-7 Q0 MARCO_57_1274253151-4 45 0.063754 hybrid +143_1-7 Q0 MARCO_35_85655095-4 46 0.050545 hybrid +143_1-7 Q0 MARCO_01_1153593570-2 47 0.049028 hybrid +143_1-7 Q0 MARCO_08_740080442-11 48 0.045550 hybrid +143_1-7 Q0 MARCO_50_1517632184-27 49 0.045341 hybrid +143_1-7 Q0 MARCO_47_1378068752-1 50 0.031844 hybrid +143_1-7 Q0 MARCO_10_1311533540-12 51 0.031635 hybrid +143_1-7 Q0 MARCO_29_1537123869-6 52 0.024076 hybrid +143_1-7 Q0 MARCO_51_140925506-4 53 0.016805 hybrid +143_1-7 Q0 MARCO_47_1180439686-1 54 0.008592 hybrid +143_1-7 Q0 MARCO_33_1382673312-3 55 -0.002236 hybrid +143_1-7 Q0 MARCO_14_1467357241-6 56 -0.003518 hybrid +143_1-7 Q0 MARCO_51_535288776-1 57 -0.003806 hybrid +143_1-7 Q0 MARCO_39_923445251-2 58 -0.004669 hybrid +143_1-7 Q0 MARCO_03_950797002-3 59 -0.007467 hybrid +143_1-7 Q0 MARCO_37_234714619-3 60 -0.009508 hybrid +143_1-7 Q0 MARCO_06_10866555-1 61 -0.009978 hybrid +143_1-7 Q0 MARCO_48_265798626-1 62 -0.012489 hybrid +143_1-7 Q0 MARCO_35_27573402-4 63 -0.019891 hybrid +143_1-7 Q0 MARCO_06_11119815-1 64 -0.023422 hybrid +143_1-7 Q0 MARCO_28_109244999-2 65 -0.023579 hybrid +143_1-7 Q0 MARCO_32_538191260-17 66 -0.026378 hybrid +143_1-7 Q0 MARCO_48_265798626-2 67 -0.026718 hybrid +143_1-7 Q0 MARCO_41_698610915-8 68 -0.027502 hybrid +143_1-7 Q0 MARCO_47_1180234271-4 69 -0.028235 hybrid +143_1-7 Q0 MARCO_40_1262214946-2 70 -0.032655 hybrid +143_1-7 Q0 MARCO_47_1182585013-11 71 -0.033649 hybrid +143_1-7 Q0 KILT_21954995-1 72 -0.034617 hybrid +143_1-7 Q0 MARCO_33_1374093562-6 73 -0.040580 hybrid +143_1-7 Q0 MARCO_57_835710020-4 74 -0.041260 hybrid +143_1-7 Q0 MARCO_46_1223747573-4 75 -0.043980 hybrid +143_1-7 Q0 MARCO_53_1055096775-1 76 -0.046674 hybrid +143_1-7 Q0 MARCO_44_678878624-5 77 -0.047459 hybrid +143_1-7 Q0 MARCO_34_1316229737-1 78 -0.048688 hybrid +143_1-7 Q0 MARCO_47_1183023985-6 79 -0.049185 hybrid +143_1-7 Q0 MARCO_06_11055744-1 80 -0.053004 hybrid +143_1-7 Q0 MARCO_29_1536976345-5 81 -0.058314 hybrid +143_1-7 Q0 MARCO_25_109621767-1 82 -0.059464 hybrid +143_1-7 Q0 MARCO_14_1464350673-17 83 -0.059595 hybrid +143_1-7 Q0 MARCO_29_1324920517-6 84 -0.060903 hybrid +143_1-7 Q0 MARCO_44_607939347-1 85 -0.060955 hybrid +143_1-7 Q0 MARCO_37_1509737183-2 86 -0.063309 hybrid +143_1-7 Q0 MARCO_13_434531078-14 87 -0.065140 hybrid +143_1-7 Q0 MARCO_40_1067378737-5 88 -0.065532 hybrid +143_1-7 Q0 MARCO_48_626136930-2 89 -0.068514 hybrid +143_1-7 Q0 MARCO_33_1376783323-2 90 -0.069403 hybrid +143_1-7 Q0 MARCO_03_1684239217-2 91 -0.071627 hybrid +143_1-7 Q0 MARCO_56_392871977-13 92 -0.072228 hybrid +143_1-7 Q0 KILT_7083645-5 93 -0.078558 hybrid +143_1-7 Q0 MARCO_35_258997373-8 94 -0.079944 hybrid +143_1-7 Q0 MARCO_15_1930174190-3 95 -0.082638 hybrid +143_1-7 Q0 MARCO_33_1382011398-3 96 -0.083266 hybrid +143_1-7 Q0 MARCO_47_1179098483-4 97 -0.084783 hybrid +143_1-7 Q0 MARCO_14_1463914599-24 98 -0.088471 hybrid +143_1-7 Q0 MARCO_11_448763193-21 99 -0.088471 hybrid +143_1-7 Q0 MARCO_10_1311533540-5 100 -0.088523 hybrid +143_1-9 Q0 MARCO_50_1073343936-19 1 0.500000 hybrid +143_1-9 Q0 MARCO_50_773630521-27 2 0.392742 hybrid +143_1-9 Q0 MARCO_50_2445817136-17 3 0.363915 hybrid +143_1-9 Q0 KILT_1544200-9 4 0.314259 hybrid +143_1-9 Q0 MARCO_50_1283041584-12 5 0.311070 hybrid +143_1-9 Q0 MARCO_44_834533184-9 6 0.308210 hybrid +143_1-9 Q0 MARCO_18_2863955559-8 7 0.300592 hybrid +143_1-9 Q0 MARCO_17_1566326486-5 8 0.204065 hybrid +143_1-9 Q0 KILT_37412-4 9 0.162280 hybrid +143_1-9 Q0 MARCO_55_1590818232-1 10 0.140995 hybrid +143_1-9 Q0 MARCO_17_4053241815-12 11 0.140362 hybrid +143_1-9 Q0 MARCO_53_848594339-3 12 0.136060 hybrid +143_1-9 Q0 KILT_19097669-37 13 0.133630 hybrid +143_1-9 Q0 MARCO_16_616370407-35 14 0.124620 hybrid +143_1-9 Q0 MARCO_17_4053241815-22 15 0.105563 hybrid +143_1-9 Q0 MARCO_20_605849543-4 16 0.093136 hybrid +143_1-9 Q0 KILT_15546705-1 17 0.075319 hybrid +143_1-9 Q0 MARCO_01_548968781-10 18 0.066587 hybrid +143_1-9 Q0 MARCO_17_3703353004-2 19 0.062411 hybrid +143_1-9 Q0 MARCO_29_1548247658-2 20 0.060994 hybrid +143_1-9 Q0 MARCO_28_324768197-1 21 0.060640 hybrid +143_1-9 Q0 MARCO_18_4238618079-5 22 0.040773 hybrid +143_1-9 Q0 MARCO_50_1282874067-13 23 0.032901 hybrid +143_1-9 Q0 MARCO_18_1597752365-4 24 0.027511 hybrid +143_1-9 Q0 MARCO_13_303403819-16 25 0.021158 hybrid +143_1-9 Q0 MARCO_17_464651031-32 26 0.018830 hybrid +143_1-9 Q0 MARCO_16_2900622394-2 27 0.009415 hybrid +143_1-9 Q0 MARCO_26_1653945685-2 28 -0.001443 hybrid +143_1-9 Q0 MARCO_17_4305852418-12 29 -0.008048 hybrid +143_1-9 Q0 MARCO_36_282694078-7 30 -0.015615 hybrid +143_1-9 Q0 MARCO_02_1123723486-1 31 -0.016324 hybrid +143_1-9 Q0 MARCO_23_1679012616-1 32 -0.025790 hybrid +143_1-9 Q0 MARCO_28_203172931-1 33 -0.028017 hybrid +143_1-9 Q0 KILT_8310995-7 34 -0.040317 hybrid +143_1-9 Q0 MARCO_18_925150896-26 35 -0.041329 hybrid +143_1-9 Q0 MARCO_18_4238618079-4 36 -0.050086 hybrid +143_1-9 Q0 MARCO_16_3177523171-1 37 -0.051124 hybrid +143_1-9 Q0 MARCO_17_4302464843-18 38 -0.051402 hybrid +143_1-9 Q0 MARCO_17_4302464843-20 39 -0.051402 hybrid +143_1-9 Q0 MARCO_01_192572442-106 40 -0.051605 hybrid +143_1-9 Q0 MARCO_16_2396734314-126 41 -0.051605 hybrid +143_1-9 Q0 MARCO_17_1446199211-108 42 -0.051605 hybrid +143_1-9 Q0 MARCO_18_888818110-72 43 -0.051605 hybrid +143_1-9 Q0 KILT_31717-4 44 -0.056540 hybrid +143_1-9 Q0 MARCO_21_1020404558-6 45 -0.059096 hybrid +143_1-9 Q0 MARCO_17_2076633680-27 46 -0.063424 hybrid +143_1-9 Q0 MARCO_18_3373037761-7 47 -0.063424 hybrid +143_1-9 Q0 MARCO_18_3286897378-2 48 -0.063550 hybrid +143_1-9 Q0 MARCO_09_1868080419-1 49 -0.065955 hybrid +143_1-9 Q0 MARCO_17_2450864829-5 50 -0.066764 hybrid +143_1-9 Q0 MARCO_15_1927913691-3 51 -0.068106 hybrid +143_1-9 Q0 MARCO_57_139721956-5 52 -0.068182 hybrid +143_1-9 Q0 MARCO_32_1713563364-5 53 -0.068764 hybrid +143_1-9 Q0 MARCO_17_2884683724-1 54 -0.071193 hybrid +143_1-9 Q0 MARCO_17_4302464843-24 55 -0.073117 hybrid +143_1-9 Q0 KILT_7844974-10 56 -0.076179 hybrid +143_1-9 Q0 KILT_60933139-1 57 -0.079242 hybrid +143_1-9 Q0 MARCO_17_4305852418-10 58 -0.082279 hybrid +143_1-9 Q0 MARCO_00_409483360-334 59 -0.082431 hybrid +143_1-9 Q0 MARCO_01_441417678-163 60 -0.086429 hybrid +143_1-9 Q0 MARCO_16_1666011119-103 61 -0.086430 hybrid +143_1-9 Q0 MARCO_16_1823931470-36 62 -0.086430 hybrid +143_1-9 Q0 MARCO_16_1823931470-38 63 -0.086430 hybrid +143_1-9 Q0 MARCO_17_939675547-93 64 -0.086430 hybrid +143_1-9 Q0 MARCO_17_939675547-95 65 -0.086431 hybrid +143_1-9 Q0 MARCO_18_345279462-99 66 -0.086431 hybrid +143_1-9 Q0 MARCO_18_869462499-10 67 -0.086431 hybrid +143_1-9 Q0 MARCO_18_869462499-12 68 -0.086431 hybrid +143_1-9 Q0 MARCO_19_45553442-143 69 -0.086432 hybrid +143_1-9 Q0 MARCO_11_94211345-8 70 -0.087315 hybrid +143_1-9 Q0 MARCO_19_45754302-1 71 -0.090125 hybrid +143_1-9 Q0 KILT_1443028-4 72 -0.090201 hybrid +143_1-9 Q0 MARCO_17_4090458305-9 73 -0.092352 hybrid +143_1-9 Q0 MARCO_17_4364242756-11 74 -0.092655 hybrid +143_1-9 Q0 MARCO_01_456675822-105 75 -0.095490 hybrid +143_1-9 Q0 MARCO_01_456675822-107 76 -0.095490 hybrid +143_1-9 Q0 MARCO_16_2627628291-10 77 -0.096755 hybrid +143_1-9 Q0 MARCO_09_853444025-5 78 -0.097945 hybrid +143_1-9 Q0 KILT_92972-1 79 -0.101362 hybrid +143_1-9 Q0 MARCO_17_666970886-19 80 -0.102323 hybrid +143_1-9 Q0 KILT_30086135-2 81 -0.102349 hybrid +143_1-9 Q0 MARCO_50_2453766270-14 82 -0.103614 hybrid +143_1-9 Q0 MARCO_32_1515283303-10 83 -0.106980 hybrid +143_1-9 Q0 MARCO_18_4086411701-183 84 -0.110017 hybrid +143_1-9 Q0 KILT_28324003-7 85 -0.111789 hybrid +143_1-9 Q0 KILT_57927278-25 86 -0.111789 hybrid +143_1-9 Q0 MARCO_18_4238618079-7 87 -0.112422 hybrid +143_1-9 Q0 MARCO_13_542213961-5 88 -0.113940 hybrid +143_1-9 Q0 MARCO_21_1427529193-38 89 -0.114902 hybrid +143_1-9 Q0 KILT_17413840-4 90 -0.115712 hybrid +143_1-9 Q0 MARCO_15_756536823-13 91 -0.115712 hybrid +143_1-9 Q0 KILT_6337983-1 92 -0.115788 hybrid +143_1-9 Q0 MARCO_16_1843718592-142 93 -0.117635 hybrid +143_1-9 Q0 MARCO_19_253667368-1 94 -0.117711 hybrid +143_1-9 Q0 MARCO_19_199371815-1 95 -0.119609 hybrid +143_1-9 Q0 MARCO_05_1287610005-1 96 -0.119736 hybrid +143_1-9 Q0 MARCO_25_1254922630-15 97 -0.120875 hybrid +143_1-9 Q0 KILT_2198844-5 98 -0.122317 hybrid +143_1-9 Q0 MARCO_01_206006162-106 99 -0.122570 hybrid +143_1-9 Q0 MARCO_17_1141683759-61 100 -0.122570 hybrid +144_1-1 Q0 MARCO_14_1634020448-14 1 0.500000 hybrid +144_1-1 Q0 MARCO_09_1759309645-3 2 0.413552 hybrid +144_1-1 Q0 MARCO_12_677956436-2 3 0.355423 hybrid +144_1-1 Q0 MARCO_10_974621470-14 4 0.265409 hybrid +144_1-1 Q0 MARCO_21_915017138-1 5 0.264555 hybrid +144_1-1 Q0 MARCO_03_1800345131-2 6 0.263306 hybrid +144_1-1 Q0 MARCO_29_1180808781-1 7 0.260623 hybrid +144_1-1 Q0 MARCO_29_1635161166-3 8 0.253003 hybrid +144_1-1 Q0 MARCO_41_2136117154-1 9 0.239133 hybrid +144_1-1 Q0 MARCO_24_612999146-1 10 0.224441 hybrid +144_1-1 Q0 MARCO_03_1785354231-4 11 0.216576 hybrid +144_1-1 Q0 MARCO_19_2647113719-1 12 0.196671 hybrid +144_1-1 Q0 MARCO_42_864833888-5 13 0.163476 hybrid +144_1-1 Q0 MARCO_42_393639436-4 14 0.154210 hybrid +144_1-1 Q0 MARCO_03_735338062-1 15 0.148052 hybrid +144_1-1 Q0 MARCO_04_439774715-13 16 0.145370 hybrid +144_1-1 Q0 MARCO_34_50005813-5 17 0.144730 hybrid +144_1-1 Q0 MARCO_37_1026430625-1 18 0.138267 hybrid +144_1-1 Q0 MARCO_42_387177828-4 19 0.137566 hybrid +144_1-1 Q0 MARCO_04_1024625159-1 20 0.130647 hybrid +144_1-1 Q0 MARCO_26_897754916-1 21 0.124093 hybrid +144_1-1 Q0 MARCO_42_384007923-2 22 0.118210 hybrid +144_1-1 Q0 MARCO_40_1608309254-1 23 0.116869 hybrid +144_1-1 Q0 MARCO_42_400159690-3 24 0.100195 hybrid +144_1-1 Q0 MARCO_35_1314038311-1 25 0.095653 hybrid +144_1-1 Q0 MARCO_22_562148650-1 26 0.092666 hybrid +144_1-1 Q0 MARCO_36_1077059542-16 27 0.088246 hybrid +144_1-1 Q0 MARCO_15_780402076-3 28 0.080747 hybrid +144_1-1 Q0 MARCO_50_703076190-1 29 0.077821 hybrid +144_1-1 Q0 MARCO_34_1328672837-6 30 0.074041 hybrid +144_1-1 Q0 MARCO_57_116774049-1 31 0.069896 hybrid +144_1-1 Q0 MARCO_04_355630283-13 32 0.060020 hybrid +144_1-1 Q0 MARCO_35_1314027140-1 33 0.058343 hybrid +144_1-1 Q0 MARCO_41_713690320-1 34 0.051850 hybrid +144_1-1 Q0 MARCO_15_1918598532-2 35 0.048619 hybrid +144_1-1 Q0 MARCO_21_582435469-1 36 0.047827 hybrid +144_1-1 Q0 MARCO_15_1918615594-3 37 0.038987 hybrid +144_1-1 Q0 MARCO_27_948321933-4 38 0.030421 hybrid +144_1-1 Q0 MARCO_04_1278251348-1 39 0.026733 hybrid +144_1-1 Q0 MARCO_42_385701921-4 40 0.023593 hybrid +144_1-1 Q0 MARCO_40_1530841983-1 41 0.009267 hybrid +144_1-1 Q0 MARCO_12_677956436-8 42 -0.004450 hybrid +144_1-1 Q0 MARCO_42_400094660-4 43 -0.009023 hybrid +144_1-1 Q0 MARCO_37_644034222-1 44 -0.015394 hybrid +144_1-1 Q0 MARCO_27_665797661-14 45 -0.034140 hybrid +144_1-1 Q0 MARCO_36_307435493-5 46 -0.037676 hybrid +144_1-1 Q0 MARCO_38_1747835845-2 47 -0.042340 hybrid +144_1-1 Q0 MARCO_59_648890492-1 48 -0.042675 hybrid +144_1-1 Q0 MARCO_06_1811405270-2 49 -0.046882 hybrid +144_1-1 Q0 MARCO_42_402859664-4 50 -0.047339 hybrid +144_1-1 Q0 MARCO_25_1315334932-2 51 -0.048406 hybrid +144_1-1 Q0 MARCO_32_416936185-8 52 -0.052186 hybrid +144_1-1 Q0 MARCO_22_415321575-1 53 -0.057642 hybrid +144_1-1 Q0 MARCO_20_1158325019-2 54 -0.060355 hybrid +144_1-1 Q0 MARCO_38_1748646749-2 55 -0.061025 hybrid +144_1-1 Q0 MARCO_20_444053475-1 56 -0.062976 hybrid +144_1-1 Q0 MARCO_50_2003470951-43 57 -0.063921 hybrid +144_1-1 Q0 MARCO_58_1136872834-1 58 -0.065628 hybrid +144_1-1 Q0 MARCO_05_891761001-12 59 -0.066146 hybrid +144_1-1 Q0 MARCO_35_961343108-1 60 -0.066817 hybrid +144_1-1 Q0 MARCO_42_391111661-2 61 -0.072517 hybrid +144_1-1 Q0 MARCO_01_1170918597-2 62 -0.073005 hybrid +144_1-1 Q0 MARCO_42_389615433-2 63 -0.074773 hybrid +144_1-1 Q0 MARCO_27_665797661-1 64 -0.075108 hybrid +144_1-1 Q0 MARCO_24_1423747607-15 65 -0.075108 hybrid +144_1-1 Q0 MARCO_02_564340652-1 66 -0.081357 hybrid +144_1-1 Q0 MARCO_04_805857969-29 67 -0.083491 hybrid +144_1-1 Q0 MARCO_06_1402407639-4 68 -0.084649 hybrid +144_1-1 Q0 MARCO_08_807555250-2 69 -0.085411 hybrid +144_1-1 Q0 MARCO_30_221334229-1 70 -0.085686 hybrid +144_1-1 Q0 MARCO_42_388841655-2 71 -0.088002 hybrid +144_1-1 Q0 MARCO_12_1077445259-8 72 -0.089526 hybrid +144_1-1 Q0 MARCO_39_1243143696-21 73 -0.096263 hybrid +144_1-1 Q0 MARCO_25_1047552535-1 74 -0.098976 hybrid +144_1-1 Q0 MARCO_26_889912352-1 75 -0.104432 hybrid +144_1-1 Q0 MARCO_50_703306073-2 76 -0.104768 hybrid +144_1-1 Q0 MARCO_54_665610135-41 77 -0.106078 hybrid +144_1-1 Q0 MARCO_42_384401467-3 78 -0.107419 hybrid +144_1-1 Q0 MARCO_42_404154062-4 79 -0.107450 hybrid +144_1-1 Q0 MARCO_29_93317972-1 80 -0.109766 hybrid +144_1-1 Q0 MARCO_42_395288890-4 81 -0.113089 hybrid +144_1-1 Q0 MARCO_50_666297024-1 82 -0.115284 hybrid +144_1-1 Q0 MARCO_50_174238891-6 83 -0.116015 hybrid +144_1-1 Q0 MARCO_42_402215549-4 84 -0.117875 hybrid +144_1-1 Q0 MARCO_13_565028630-1 85 -0.118027 hybrid +144_1-1 Q0 MARCO_27_665797661-17 86 -0.120710 hybrid +144_1-1 Q0 MARCO_04_107514566-3 87 -0.124581 hybrid +144_1-1 Q0 MARCO_30_1796607833-5 88 -0.125160 hybrid +144_1-1 Q0 MARCO_42_389298425-2 89 -0.128544 hybrid +144_1-1 Q0 MARCO_42_399128482-1 90 -0.129245 hybrid +144_1-1 Q0 MARCO_52_1443022228-1 91 -0.129671 hybrid +144_1-1 Q0 MARCO_06_1403271782-3 92 -0.129885 hybrid +144_1-1 Q0 MARCO_42_401373106-3 93 -0.133085 hybrid +144_1-1 Q0 MARCO_42_402541201-3 94 -0.133207 hybrid +144_1-1 Q0 MARCO_25_1859421533-1 95 -0.133268 hybrid +144_1-1 Q0 MARCO_06_1400666785-3 96 -0.136743 hybrid +144_1-1 Q0 MARCO_42_399554491-1 97 -0.137353 hybrid +144_1-1 Q0 MARCO_13_856553854-3 98 -0.137963 hybrid +144_1-1 Q0 MARCO_42_402710488-3 99 -0.138085 hybrid +144_1-1 Q0 MARCO_12_1951033227-1 100 -0.139700 hybrid +144_1-3 Q0 MARCO_10_1622826223-1 1 0.500000 hybrid +144_1-3 Q0 MARCO_55_481900208-1 2 0.295791 hybrid +144_1-3 Q0 MARCO_37_1192498200-1 3 0.240133 hybrid +144_1-3 Q0 MARCO_52_1611685648-5 4 0.182159 hybrid +144_1-3 Q0 MARCO_36_600591729-1 5 0.166575 hybrid +144_1-3 Q0 KILT_1311283-12 6 0.123949 hybrid +144_1-3 Q0 MARCO_18_3115991036-15 7 0.105221 hybrid +144_1-3 Q0 MARCO_15_1918677929-3 8 0.104406 hybrid +144_1-3 Q0 MARCO_24_595898031-1 9 0.099645 hybrid +144_1-3 Q0 KILT_36716-1 10 0.094397 hybrid +144_1-3 Q0 MARCO_01_1437130646-41 11 0.090886 hybrid +144_1-3 Q0 MARCO_52_1604550369-1 12 0.065805 hybrid +144_1-3 Q0 MARCO_18_3116878569-1 13 0.065424 hybrid +144_1-3 Q0 MARCO_51_607329168-1 14 0.062097 hybrid +144_1-3 Q0 MARCO_45_1660487292-3 15 0.054219 hybrid +144_1-3 Q0 MARCO_50_1312951478-17 16 0.051956 hybrid +144_1-3 Q0 KILT_34666187-13 17 0.051312 hybrid +144_1-3 Q0 MARCO_41_2052806350-3 18 0.048419 hybrid +144_1-3 Q0 MARCO_43_1640931331-3 19 0.042789 hybrid +144_1-3 Q0 MARCO_16_2867492614-25 20 0.039304 hybrid +144_1-3 Q0 MARCO_01_686831562-14 21 0.036661 hybrid +144_1-3 Q0 MARCO_18_2311885906-3 22 0.031242 hybrid +144_1-3 Q0 MARCO_52_1611979994-4 23 0.030795 hybrid +144_1-3 Q0 MARCO_55_1247380471-3 24 0.027954 hybrid +144_1-3 Q0 MARCO_28_972935301-4 25 0.027520 hybrid +144_1-3 Q0 MARCO_52_1611676624-2 26 0.024403 hybrid +144_1-3 Q0 MARCO_18_3120209234-3 27 0.018367 hybrid +144_1-3 Q0 MARCO_16_3531944488-34 28 0.012225 hybrid +144_1-3 Q0 MARCO_18_3116878569-16 29 0.011422 hybrid +144_1-3 Q0 MARCO_52_1619575137-4 30 0.010554 hybrid +144_1-3 Q0 KILT_8664816-4 31 0.001874 hybrid +144_1-3 Q0 MARCO_52_1606191086-1 32 0.000046 hybrid +144_1-3 Q0 MARCO_35_1438388696-6 33 -0.000296 hybrid +144_1-3 Q0 KILT_6385385-9 34 -0.001322 hybrid +144_1-3 Q0 KILT_37910-5 35 -0.002782 hybrid +144_1-3 Q0 MARCO_41_860914117-2 36 -0.004767 hybrid +144_1-3 Q0 MARCO_17_4123255984-13 37 -0.011528 hybrid +144_1-3 Q0 MARCO_24_595648379-1 38 -0.019274 hybrid +144_1-3 Q0 MARCO_40_1275785480-2 39 -0.019314 hybrid +144_1-3 Q0 MARCO_21_1370755966-12 40 -0.023825 hybrid +144_1-3 Q0 MARCO_17_4036719909-46 41 -0.026389 hybrid +144_1-3 Q0 MARCO_57_673503315-3 42 -0.031466 hybrid +144_1-3 Q0 MARCO_01_1437130646-3 43 -0.034385 hybrid +144_1-3 Q0 MARCO_01_686831562-15 44 -0.034543 hybrid +144_1-3 Q0 MARCO_51_62921713-9 45 -0.040291 hybrid +144_1-3 Q0 KILT_34666187-14 46 -0.042250 hybrid +144_1-3 Q0 MARCO_30_575563641-6 47 -0.042645 hybrid +144_1-3 Q0 MARCO_24_595648379-9 48 -0.051286 hybrid +144_1-3 Q0 KILT_336014-1 49 -0.051470 hybrid +144_1-3 Q0 MARCO_18_3116878569-17 50 -0.056586 hybrid +144_1-3 Q0 MARCO_39_442496316-3 51 -0.058519 hybrid +144_1-3 Q0 MARCO_21_1370755966-3 52 -0.060018 hybrid +144_1-3 Q0 KILT_168239-4 53 -0.060203 hybrid +144_1-3 Q0 MARCO_16_69991661-8 54 -0.063030 hybrid +144_1-3 Q0 MARCO_34_1182835705-1 55 -0.065739 hybrid +144_1-3 Q0 MARCO_36_850146522-3 56 -0.067028 hybrid +144_1-3 Q0 MARCO_18_3115949394-18 57 -0.067055 hybrid +144_1-3 Q0 KILT_1935077-8 58 -0.068002 hybrid +144_1-3 Q0 KILT_8617105-12 59 -0.068777 hybrid +144_1-3 Q0 MARCO_52_1611676624-1 60 -0.069448 hybrid +144_1-3 Q0 MARCO_30_790149164-7 61 -0.069830 hybrid +144_1-3 Q0 KILT_34666187-17 62 -0.073591 hybrid +144_1-3 Q0 MARCO_50_968070383-27 63 -0.076037 hybrid +144_1-3 Q0 MARCO_52_1619598857-5 64 -0.077892 hybrid +144_1-3 Q0 MARCO_18_3116878569-8 65 -0.080798 hybrid +144_1-3 Q0 MARCO_37_648931179-1 66 -0.081679 hybrid +144_1-3 Q0 MARCO_33_1164612080-9 67 -0.082337 hybrid +144_1-3 Q0 KILT_31406060-13 68 -0.082508 hybrid +144_1-3 Q0 KILT_336014-5 69 -0.083876 hybrid +144_1-3 Q0 MARCO_10_1622826223-4 70 -0.084573 hybrid +144_1-3 Q0 KILT_2459800-2 71 -0.086217 hybrid +144_1-3 Q0 KILT_34666187-6 72 -0.089571 hybrid +144_1-3 Q0 MARCO_47_1515060083-8 73 -0.094055 hybrid +144_1-3 Q0 MARCO_08_195608010-72 74 -0.096041 hybrid +144_1-3 Q0 KILT_1935077-7 75 -0.099921 hybrid +144_1-3 Q0 MARCO_25_1628277830-6 76 -0.104643 hybrid +144_1-3 Q0 MARCO_15_1918663797-3 77 -0.105484 hybrid +144_1-3 Q0 MARCO_28_973101830-4 78 -0.106418 hybrid +144_1-3 Q0 MARCO_13_245355270-1 79 -0.107523 hybrid +144_1-3 Q0 MARCO_50_2822597510-8 80 -0.109232 hybrid +144_1-3 Q0 MARCO_09_112205215-11 81 -0.110798 hybrid +144_1-3 Q0 MARCO_18_3441333240-2 82 -0.112560 hybrid +144_1-3 Q0 MARCO_18_3122089436-19 83 -0.115111 hybrid +144_1-3 Q0 MARCO_51_62874176-14 84 -0.115743 hybrid +144_1-3 Q0 KILT_34666187-1 85 -0.117466 hybrid +144_1-3 Q0 MARCO_15_1842334034-10 86 -0.120241 hybrid +144_1-3 Q0 MARCO_27_665797661-11 87 -0.120320 hybrid +144_1-3 Q0 MARCO_09_739564359-1 88 -0.120359 hybrid +144_1-3 Q0 KILT_43091601-3 89 -0.120806 hybrid +144_1-3 Q0 MARCO_01_613947080-18 90 -0.122555 hybrid +144_1-3 Q0 MARCO_48_621185535-3 91 -0.123358 hybrid +144_1-3 Q0 MARCO_39_526833347-20 92 -0.127093 hybrid +144_1-3 Q0 MARCO_42_783200250-2 93 -0.128368 hybrid +144_1-3 Q0 MARCO_32_697437548-216 94 -0.128579 hybrid +144_1-3 Q0 MARCO_02_1451142284-78 95 -0.129763 hybrid +144_1-3 Q0 MARCO_38_1481493330-1 96 -0.130341 hybrid +144_1-3 Q0 KILT_23339031-1 97 -0.130959 hybrid +144_1-3 Q0 MARCO_45_96374216-26 98 -0.132853 hybrid +144_1-3 Q0 KILT_55715896-1 99 -0.132866 hybrid +144_1-3 Q0 MARCO_02_1715461544-2 100 -0.133892 hybrid +144_1-5 Q0 MARCO_50_1923995771-4 1 0.500000 hybrid +144_1-5 Q0 MARCO_50_1923995771-35 2 0.404482 hybrid +144_1-5 Q0 MARCO_28_320267721-2 3 0.254448 hybrid +144_1-5 Q0 MARCO_31_1026116175-2 4 0.254448 hybrid +144_1-5 Q0 MARCO_46_534206214-1 5 0.248347 hybrid +144_1-5 Q0 MARCO_50_1923995771-22 6 0.240616 hybrid +144_1-5 Q0 MARCO_50_1715454007-10 7 0.222065 hybrid +144_1-5 Q0 MARCO_50_1923995771-10 8 0.221133 hybrid +144_1-5 Q0 MARCO_04_151937623-2 9 0.218731 hybrid +144_1-5 Q0 MARCO_52_1604550369-2 10 0.058039 hybrid +144_1-5 Q0 KILT_573160-3 11 0.034218 hybrid +144_1-5 Q0 MARCO_52_165220427-124 12 0.033242 hybrid +144_1-5 Q0 MARCO_23_822961621-6 13 0.030665 hybrid +144_1-5 Q0 MARCO_01_1726198138-32 14 0.029587 hybrid +144_1-5 Q0 MARCO_50_1923995771-11 15 0.028291 hybrid +144_1-5 Q0 MARCO_34_805735963-113 16 0.026632 hybrid +144_1-5 Q0 MARCO_34_1827422564-2 17 0.022685 hybrid +144_1-5 Q0 KILT_19622-16 18 0.019089 hybrid +144_1-5 Q0 MARCO_05_390872029-1 19 0.013440 hybrid +144_1-5 Q0 MARCO_01_2114727105-10 20 0.011881 hybrid +144_1-5 Q0 MARCO_17_4652126956-4 21 -0.006640 hybrid +144_1-5 Q0 MARCO_39_444862558-6 22 -0.007018 hybrid +144_1-5 Q0 KILT_18426568-16 23 -0.008838 hybrid +144_1-5 Q0 KILT_6385634-13 24 -0.017953 hybrid +144_1-5 Q0 MARCO_23_127403245-2 25 -0.018157 hybrid +144_1-5 Q0 MARCO_18_3120274746-2 26 -0.019584 hybrid +144_1-5 Q0 MARCO_52_1604550369-3 27 -0.026821 hybrid +144_1-5 Q0 MARCO_16_4020882285-15 28 -0.028714 hybrid +144_1-5 Q0 MARCO_50_2049034577-15 29 -0.031597 hybrid +144_1-5 Q0 KILT_571414-1 30 -0.031917 hybrid +144_1-5 Q0 MARCO_21_1370755966-44 31 -0.048312 hybrid +144_1-5 Q0 MARCO_18_544395132-25 32 -0.049186 hybrid +144_1-5 Q0 MARCO_20_1669851241-7 33 -0.063019 hybrid +144_1-5 Q0 KILT_29441-32 34 -0.064140 hybrid +144_1-5 Q0 KILT_5943897-3 35 -0.068887 hybrid +144_1-5 Q0 MARCO_18_2950493748-39 36 -0.077128 hybrid +144_1-5 Q0 MARCO_38_1342435215-1 37 -0.077405 hybrid +144_1-5 Q0 MARCO_15_1864608113-1 38 -0.078511 hybrid +144_1-5 Q0 MARCO_50_1582662596-12 39 -0.081613 hybrid +144_1-5 Q0 KILT_29838000-2 40 -0.083258 hybrid +144_1-5 Q0 MARCO_16_2896457280-2 41 -0.085064 hybrid +144_1-5 Q0 KILT_680000-21 42 -0.090393 hybrid +144_1-5 Q0 MARCO_40_1275785480-2 43 -0.093888 hybrid +144_1-5 Q0 MARCO_18_3120004089-1 44 -0.096188 hybrid +144_1-5 Q0 MARCO_47_1564132401-4 45 -0.099886 hybrid +144_1-5 Q0 MARCO_02_1715461544-1 46 -0.102886 hybrid +144_1-5 Q0 MARCO_01_1897446416-54 47 -0.104313 hybrid +144_1-5 Q0 MARCO_11_1527955758-1 48 -0.105114 hybrid +144_1-5 Q0 MARCO_02_1455308628-2 49 -0.105158 hybrid +144_1-5 Q0 KILT_5829815-12 50 -0.105696 hybrid +144_1-5 Q0 MARCO_49_504516632-2 51 -0.113108 hybrid +144_1-5 Q0 MARCO_56_209636695-3 52 -0.116325 hybrid +144_1-5 Q0 MARCO_40_1411222251-2 53 -0.117913 hybrid +144_1-5 Q0 MARCO_50_2210977855-21 54 -0.119849 hybrid +144_1-5 Q0 MARCO_50_918592541-29 55 -0.119849 hybrid +144_1-5 Q0 KILT_7702855-1 56 -0.122761 hybrid +144_1-5 Q0 MARCO_40_1411222251-1 57 -0.122820 hybrid +144_1-5 Q0 MARCO_25_1349987241-2 58 -0.123489 hybrid +144_1-5 Q0 KILT_7664847-15 59 -0.124217 hybrid +144_1-5 Q0 MARCO_03_1743785469-1 60 -0.130741 hybrid +144_1-5 Q0 MARCO_50_1923995771-32 61 -0.132590 hybrid +144_1-5 Q0 KILT_23558519-2 62 -0.134322 hybrid +144_1-5 Q0 KILT_36716-20 63 -0.134323 hybrid +144_1-5 Q0 MARCO_04_418046273-9 64 -0.135546 hybrid +144_1-5 Q0 MARCO_03_1743785469-2 65 -0.135837 hybrid +144_1-5 Q0 MARCO_52_1604630303-4 66 -0.142171 hybrid +144_1-5 Q0 MARCO_21_1367908785-2 67 -0.143321 hybrid +144_1-5 Q0 MARCO_17_3819110996-3 68 -0.144224 hybrid +144_1-5 Q0 MARCO_18_3119373597-15 69 -0.144806 hybrid +144_1-5 Q0 MARCO_01_1437130646-4 70 -0.145927 hybrid +144_1-5 Q0 MARCO_50_410421745-7 71 -0.147354 hybrid +144_1-5 Q0 KILT_373603-2 72 -0.154212 hybrid +144_1-5 Q0 MARCO_05_391010858-7 73 -0.156557 hybrid +144_1-5 Q0 MARCO_50_1715454007-12 74 -0.157518 hybrid +144_1-5 Q0 MARCO_50_1923995771-2 75 -0.157809 hybrid +144_1-5 Q0 KILT_28189-12 76 -0.159207 hybrid +144_1-5 Q0 MARCO_47_1508930553-1 77 -0.160459 hybrid +144_1-5 Q0 KILT_26496950-1 78 -0.162498 hybrid +144_1-5 Q0 MARCO_02_1451142284-2 79 -0.164288 hybrid +144_1-5 Q0 MARCO_47_1510033951-4 80 -0.166138 hybrid +144_1-5 Q0 MARCO_02_1715461544-2 81 -0.169050 hybrid +144_1-5 Q0 MARCO_04_131887860-1 82 -0.169967 hybrid +144_1-5 Q0 MARCO_47_1513130965-1 83 -0.170986 hybrid +144_1-5 Q0 MARCO_18_3118367795-7 84 -0.171045 hybrid +144_1-5 Q0 MARCO_27_1308592275-28 85 -0.171947 hybrid +144_1-5 Q0 MARCO_09_1766914802-2 86 -0.171977 hybrid +144_1-5 Q0 MARCO_06_1613239254-67 87 -0.172282 hybrid +144_1-5 Q0 MARCO_49_1740161577-6 88 -0.172326 hybrid +144_1-5 Q0 MARCO_27_1302199768-14 89 -0.174000 hybrid +144_1-5 Q0 MARCO_35_14503714-5 90 -0.176257 hybrid +144_1-5 Q0 MARCO_18_1122908661-8 91 -0.177743 hybrid +144_1-5 Q0 KILT_548862-31 92 -0.178733 hybrid +144_1-5 Q0 MARCO_26_683270281-4 93 -0.179111 hybrid +144_1-5 Q0 MARCO_47_1514272696-1 94 -0.180000 hybrid +144_1-5 Q0 MARCO_28_979735058-5 95 -0.180363 hybrid +144_1-5 Q0 MARCO_33_194421810-4 96 -0.182271 hybrid +144_1-5 Q0 MARCO_17_4780728338-5 97 -0.183581 hybrid +144_1-5 Q0 MARCO_17_2377947346-7 98 -0.185431 hybrid +144_1-5 Q0 MARCO_28_969980760-1 99 -0.186625 hybrid +144_1-5 Q0 MARCO_50_1168825780-9 100 -0.186727 hybrid +144_2-1 Q0 MARCO_09_739564359-1 1 0.500000 hybrid +144_2-1 Q0 MARCO_36_854436803-9 2 0.491569 hybrid +144_2-1 Q0 KILT_33840718-3 3 0.404018 hybrid +144_2-1 Q0 MARCO_18_3116878569-63 4 0.342760 hybrid +144_2-1 Q0 MARCO_18_3116878569-16 5 0.339257 hybrid +144_2-1 Q0 KILT_31406060-13 6 0.335481 hybrid +144_2-1 Q0 MARCO_52_1611218176-12 7 0.301016 hybrid +144_2-1 Q0 MARCO_55_771177327-1 8 0.286899 hybrid +144_2-1 Q0 MARCO_17_885090853-18 9 0.283442 hybrid +144_2-1 Q0 MARCO_15_599583395-42 10 0.256664 hybrid +144_2-1 Q0 MARCO_01_686831562-15 11 0.234071 hybrid +144_2-1 Q0 MARCO_52_1610238832-1 12 0.229810 hybrid +144_2-1 Q0 MARCO_35_259954299-6 13 0.214890 hybrid +144_2-1 Q0 MARCO_17_2092527764-23 14 0.211190 hybrid +144_2-1 Q0 MARCO_35_1438388696-6 15 0.197710 hybrid +144_2-1 Q0 MARCO_39_526833347-20 16 0.182471 hybrid +144_2-1 Q0 MARCO_22_1172742654-5 17 0.180773 hybrid +144_2-1 Q0 MARCO_08_374778006-1 18 0.177286 hybrid +144_2-1 Q0 MARCO_01_686831562-60 19 0.163472 hybrid +144_2-1 Q0 MARCO_36_850146522-3 20 0.162578 hybrid +144_2-1 Q0 MARCO_22_1169935394-9 21 0.146293 hybrid +144_2-1 Q0 MARCO_18_3116171216-28 22 0.145049 hybrid +144_2-1 Q0 MARCO_50_2210096877-9 23 0.144306 hybrid +144_2-1 Q0 MARCO_50_1312847755-68 24 0.142517 hybrid +144_2-1 Q0 MARCO_39_444876423-17 25 0.141365 hybrid +144_2-1 Q0 MARCO_18_3116317508-1 26 0.134208 hybrid +144_2-1 Q0 MARCO_09_738827493-1 27 0.129947 hybrid +144_2-1 Q0 MARCO_52_1611893899-3 28 0.118878 hybrid +144_2-1 Q0 MARCO_17_3916290866-1 29 0.113874 hybrid +144_2-1 Q0 MARCO_01_686831562-7 30 0.111205 hybrid +144_2-1 Q0 MARCO_18_3116878569-75 31 0.110538 hybrid +144_2-1 Q0 KILT_44212980-1 32 0.109340 hybrid +144_2-1 Q0 MARCO_32_697437548-216 33 0.100425 hybrid +144_2-1 Q0 MARCO_01_686831562-71 34 0.099803 hybrid +144_2-1 Q0 MARCO_35_308927978-14 35 0.087111 hybrid +144_2-1 Q0 KILT_39636436-3 36 0.085428 hybrid +144_2-1 Q0 KILT_34666187-2 37 0.079348 hybrid +144_2-1 Q0 MARCO_14_1201111187-4 38 0.077665 hybrid +144_2-1 Q0 MARCO_18_3116878569-9 39 0.074890 hybrid +144_2-1 Q0 MARCO_52_1611569890-5 40 0.072327 hybrid +144_2-1 Q0 MARCO_50_1312847755-12 41 0.071175 hybrid +144_2-1 Q0 KILT_2647515-17 42 0.070932 hybrid +144_2-1 Q0 MARCO_17_884867375-26 43 0.070932 hybrid +144_2-1 Q0 MARCO_40_1075686646-4 44 0.067369 hybrid +144_2-1 Q0 MARCO_17_884867375-73 45 0.063791 hybrid +144_2-1 Q0 MARCO_18_3116878569-48 46 0.063791 hybrid +144_2-1 Q0 MARCO_50_1077067859-13 47 0.061501 hybrid +144_2-1 Q0 MARCO_18_3116878569-61 48 0.059863 hybrid +144_2-1 Q0 MARCO_01_686831562-51 49 0.058317 hybrid +144_2-1 Q0 MARCO_01_686831562-50 50 0.055451 hybrid +144_2-1 Q0 MARCO_50_2736140935-4 51 0.053283 hybrid +144_2-1 Q0 MARCO_01_686831562-46 52 0.052797 hybrid +144_2-1 Q0 MARCO_36_847077396-2 53 0.052797 hybrid +144_2-1 Q0 MARCO_18_3441333240-11 54 0.052267 hybrid +144_2-1 Q0 MARCO_37_1192498200-1 55 0.049947 hybrid +144_2-1 Q0 KILT_34666187-7 56 0.046293 hybrid +144_2-1 Q0 MARCO_18_3116878569-53 57 0.043336 hybrid +144_2-1 Q0 MARCO_48_658213781-1 58 0.043108 hybrid +144_2-1 Q0 MARCO_52_1615359082-2 59 0.037574 hybrid +144_2-1 Q0 MARCO_18_3116878569-42 60 0.031827 hybrid +144_2-1 Q0 MARCO_18_3116878569-1 61 0.029659 hybrid +144_2-1 Q0 MARCO_52_1610253652-1 62 0.025352 hybrid +144_2-1 Q0 MARCO_36_843942796-4 63 0.024973 hybrid +144_2-1 Q0 MARCO_35_308968491-3 64 0.023245 hybrid +144_2-1 Q0 KILT_40667983-9 65 0.022744 hybrid +144_2-1 Q0 MARCO_01_686831562-1 66 0.020834 hybrid +144_2-1 Q0 MARCO_38_41321427-2 67 0.016770 hybrid +144_2-1 Q0 MARCO_16_3762229120-26 68 0.012707 hybrid +144_2-1 Q0 MARCO_38_5369152-3 69 0.012646 hybrid +144_2-1 Q0 MARCO_18_3116878569-69 70 0.011979 hybrid +144_2-1 Q0 KILT_2647515-21 71 0.006020 hybrid +144_2-1 Q0 KILT_34666187-4 72 0.001713 hybrid +144_2-1 Q0 KILT_40305820-12 73 0.001713 hybrid +144_2-1 Q0 MARCO_01_686831562-4 74 0.001713 hybrid +144_2-1 Q0 MARCO_19_341242094-12 75 0.001713 hybrid +144_2-1 Q0 MARCO_52_1605932689-3 76 -0.001274 hybrid +144_2-1 Q0 MARCO_02_1715461544-1 77 -0.002244 hybrid +144_2-1 Q0 MARCO_01_686831562-63 78 -0.002669 hybrid +144_2-1 Q0 MARCO_35_259954299-9 79 -0.003578 hybrid +144_2-1 Q0 MARCO_18_3116878569-47 80 -0.006202 hybrid +144_2-1 Q0 MARCO_17_884867375-41 81 -0.008067 hybrid +144_2-1 Q0 KILT_34666187-6 82 -0.009174 hybrid +144_2-1 Q0 MARCO_44_608838647-3 83 -0.012358 hybrid +144_2-1 Q0 MARCO_16_3795358717-32 84 -0.014754 hybrid +144_2-1 Q0 MARCO_17_884969207-33 85 -0.015876 hybrid +144_2-1 Q0 MARCO_50_2252222268-21 86 -0.016785 hybrid +144_2-1 Q0 MARCO_49_1740273108-3 87 -0.016968 hybrid +144_2-1 Q0 MARCO_38_5472417-1 88 -0.018833 hybrid +144_2-1 Q0 MARCO_44_613784868-1 89 -0.019242 hybrid +144_2-1 Q0 MARCO_35_308978221-8 90 -0.020546 hybrid +144_2-1 Q0 MARCO_52_1615352188-1 91 -0.021077 hybrid +144_2-1 Q0 MARCO_18_3116878569-8 92 -0.027172 hybrid +144_2-1 Q0 MARCO_02_1715454942-1 93 -0.028673 hybrid +144_2-1 Q0 MARCO_17_884867375-34 94 -0.031782 hybrid +144_2-1 Q0 MARCO_52_1610278899-4 95 -0.037650 hybrid +144_2-1 Q0 MARCO_19_341242094-11 96 -0.041350 hybrid +144_2-1 Q0 MARCO_18_3116878569-6 97 -0.041486 hybrid +144_2-1 Q0 MARCO_21_1011923209-5 98 -0.041956 hybrid +144_2-1 Q0 MARCO_18_3270644462-15 99 -0.043973 hybrid +144_2-1 Q0 MARCO_31_882254318-6 100 -0.045307 hybrid +144_2-11 Q0 MARCO_03_1748077988-4 1 0.500000 hybrid +144_2-11 Q0 MARCO_52_635891760-15 2 0.459728 hybrid +144_2-11 Q0 MARCO_30_74645172-3 3 0.456546 hybrid +144_2-11 Q0 MARCO_47_1508643911-1 4 0.435962 hybrid +144_2-11 Q0 MARCO_49_1305225391-1 5 0.419207 hybrid +144_2-11 Q0 MARCO_04_487834639-1 6 0.406702 hybrid +144_2-11 Q0 MARCO_17_1914277110-19 7 0.389798 hybrid +144_2-11 Q0 MARCO_07_1118258898-1 8 0.376945 hybrid +144_2-11 Q0 MARCO_52_1054170063-5 9 0.352309 hybrid +144_2-11 Q0 MARCO_50_982609737-21 10 0.349923 hybrid +144_2-11 Q0 MARCO_09_1793419217-7 11 0.341620 hybrid +144_2-11 Q0 MARCO_19_2033821273-2 12 0.298762 hybrid +144_2-11 Q0 MARCO_50_1983145593-17 13 0.290285 hybrid +144_2-11 Q0 MARCO_37_1606225821-1 14 0.240268 hybrid +144_2-11 Q0 MARCO_41_2016199554-2 15 0.237036 hybrid +144_2-11 Q0 MARCO_12_1388234380-4 16 0.216676 hybrid +144_2-11 Q0 MARCO_30_74716097-1 17 0.210262 hybrid +144_2-11 Q0 MARCO_06_808201610-25 18 0.182991 hybrid +144_2-11 Q0 MARCO_17_3580319373-4 19 0.175682 hybrid +144_2-11 Q0 KILT_40250-13 20 0.175359 hybrid +144_2-11 Q0 MARCO_19_1706185577-3 21 0.167181 hybrid +144_2-11 Q0 MARCO_30_74918479-8 22 0.164943 hybrid +144_2-11 Q0 MARCO_05_591000936-1 23 0.155820 hybrid +144_2-11 Q0 MARCO_18_117178057-43 24 0.139263 hybrid +144_2-11 Q0 MARCO_31_1390241442-1 25 0.134515 hybrid +144_2-11 Q0 MARCO_30_419629173-1 26 0.125292 hybrid +144_2-11 Q0 MARCO_56_1350234326-4 27 0.114329 hybrid +144_2-11 Q0 MARCO_31_715611191-10 28 0.113335 hybrid +144_2-11 Q0 MARCO_00_1205188173-10 29 0.113061 hybrid +144_2-11 Q0 KILT_3030004-11 30 0.106921 hybrid +144_2-11 Q0 KILT_1396249-12 31 0.106722 hybrid +144_2-11 Q0 KILT_8364208-1 32 0.100085 hybrid +144_2-11 Q0 MARCO_27_1300054537-10 33 0.089221 hybrid +144_2-11 Q0 MARCO_50_1027016728-1 34 0.076816 hybrid +144_2-11 Q0 MARCO_15_1824570089-1 35 0.070850 hybrid +144_2-11 Q0 KILT_13876361-1 36 0.053175 hybrid +144_2-11 Q0 MARCO_30_74745413-6 37 0.049645 hybrid +144_2-11 Q0 MARCO_30_74812355-1 38 0.045592 hybrid +144_2-11 Q0 MARCO_54_663478559-10 39 0.040099 hybrid +144_2-11 Q0 MARCO_19_1767990244-14 40 0.036917 hybrid +144_2-11 Q0 MARCO_37_1592787173-2 41 0.034679 hybrid +144_2-11 Q0 MARCO_50_1027016728-2 42 0.027992 hybrid +144_2-11 Q0 MARCO_29_631342289-1 43 0.023020 hybrid +144_2-11 Q0 KILT_20486-12 44 0.016681 hybrid +144_2-11 Q0 MARCO_18_2310956562-10 45 0.016631 hybrid +144_2-11 Q0 MARCO_17_2573233900-8 46 0.013300 hybrid +144_2-11 Q0 MARCO_51_691754722-2 47 0.011162 hybrid +144_2-11 Q0 MARCO_33_314889025-5 48 0.008925 hybrid +144_2-11 Q0 MARCO_44_387336796-5 49 0.008477 hybrid +144_2-11 Q0 MARCO_39_1725212899-1 50 0.007010 hybrid +144_2-11 Q0 KILT_27623318-3 51 0.005817 hybrid +144_2-11 Q0 MARCO_18_117041573-13 52 0.004077 hybrid +144_2-11 Q0 MARCO_06_931643751-1 53 0.004052 hybrid +144_2-11 Q0 MARCO_41_2015988874-4 54 0.002909 hybrid +144_2-11 Q0 MARCO_06_545753773-1 55 0.000995 hybrid +144_2-11 Q0 KILT_55634182-1 56 -0.001914 hybrid +144_2-11 Q0 MARCO_24_774358607-12 57 -0.012355 hybrid +144_2-11 Q0 MARCO_50_1263476844-52 58 -0.013349 hybrid +144_2-11 Q0 KILT_26301-8 59 -0.025456 hybrid +144_2-11 Q0 MARCO_21_1422525329-13 60 -0.029160 hybrid +144_2-11 Q0 MARCO_05_1376596409-12 61 -0.030702 hybrid +144_2-11 Q0 MARCO_34_459109137-1 62 -0.032516 hybrid +144_2-11 Q0 KILT_14280337-6 63 -0.035499 hybrid +144_2-11 Q0 KILT_364438-3 64 -0.036742 hybrid +144_2-11 Q0 MARCO_33_314889025-6 65 -0.038532 hybrid +144_2-11 Q0 MARCO_33_317035497-2 66 -0.039402 hybrid +144_2-11 Q0 MARCO_27_1287682760-1 67 -0.041466 hybrid +144_2-11 Q0 MARCO_12_1388234380-3 68 -0.045195 hybrid +144_2-11 Q0 MARCO_51_1662066934-2 69 -0.047879 hybrid +144_2-11 Q0 MARCO_44_1259396836-3 70 -0.048774 hybrid +144_2-11 Q0 MARCO_50_688412580-1 71 -0.049644 hybrid +144_2-11 Q0 MARCO_21_1418491015-6 72 -0.049818 hybrid +144_2-11 Q0 MARCO_09_1564112529-2 73 -0.049893 hybrid +144_2-11 Q0 MARCO_10_1095440416-4 74 -0.050788 hybrid +144_2-11 Q0 MARCO_52_1614516530-4 75 -0.051956 hybrid +144_2-11 Q0 MARCO_55_455729321-5 76 -0.053622 hybrid +144_2-11 Q0 MARCO_47_1512775494-13 77 -0.055511 hybrid +144_2-11 Q0 MARCO_08_1715968434-1 78 -0.059141 hybrid +144_2-11 Q0 MARCO_30_74812355-13 79 -0.062074 hybrid +144_2-11 Q0 MARCO_36_960049435-1 80 -0.062472 hybrid +144_2-11 Q0 MARCO_50_2050362693-14 81 -0.062596 hybrid +144_2-11 Q0 MARCO_47_1513107290-1 82 -0.064560 hybrid +144_2-11 Q0 MARCO_50_982609737-81 83 -0.065878 hybrid +144_2-11 Q0 MARCO_30_74645172-1 84 -0.070676 hybrid +144_2-11 Q0 MARCO_46_542586042-3 85 -0.071247 hybrid +144_2-11 Q0 MARCO_27_1412516399-2 86 -0.072267 hybrid +144_2-11 Q0 KILT_989795-15 87 -0.073708 hybrid +144_2-11 Q0 MARCO_08_1469869024-1 88 -0.075846 hybrid +144_2-11 Q0 MARCO_14_808421246-1 89 -0.077462 hybrid +144_2-11 Q0 MARCO_53_1287200466-3 90 -0.081017 hybrid +144_2-11 Q0 MARCO_16_3784944291-5 91 -0.081539 hybrid +144_2-11 Q0 MARCO_28_320476317-2 92 -0.081639 hybrid +144_2-11 Q0 MARCO_44_389938294-1 93 -0.084249 hybrid +144_2-11 Q0 MARCO_07_1094255287-10 94 -0.086088 hybrid +144_2-11 Q0 MARCO_23_1348894609-10 95 -0.086089 hybrid +144_2-11 Q0 MARCO_19_888420387-8 96 -0.086959 hybrid +144_2-11 Q0 MARCO_19_1519730876-3 97 -0.087903 hybrid +144_2-11 Q0 MARCO_18_2311608613-1 98 -0.088873 hybrid +144_2-11 Q0 MARCO_50_1992801986-28 99 -0.090961 hybrid +144_2-11 Q0 MARCO_18_2311617394-1 100 -0.091906 hybrid +144_2-13 Q0 MARCO_17_1351854116-1 1 0.500000 hybrid +144_2-13 Q0 MARCO_17_575493501-4 2 0.481922 hybrid +144_2-13 Q0 MARCO_18_3233548707-15 3 0.472297 hybrid +144_2-13 Q0 MARCO_18_1749944364-4 4 0.463621 hybrid +144_2-13 Q0 KILT_1295452-1 5 0.463500 hybrid +144_2-13 Q0 MARCO_18_1886765989-7 6 0.434627 hybrid +144_2-13 Q0 MARCO_16_3740644116-11 7 0.415237 hybrid +144_2-13 Q0 MARCO_17_2335823991-34 8 0.408599 hybrid +144_2-13 Q0 MARCO_17_1914277110-19 9 0.386748 hybrid +144_2-13 Q0 MARCO_17_578853990-11 10 0.378032 hybrid +144_2-13 Q0 MARCO_17_2350087193-12 11 0.345789 hybrid +144_2-13 Q0 MARCO_18_919757789-7 12 0.330334 hybrid +144_2-13 Q0 MARCO_18_2918414305-31 13 0.314777 hybrid +144_2-13 Q0 MARCO_17_1351854116-5 14 0.313345 hybrid +144_2-13 Q0 MARCO_19_370150585-17 15 0.306888 hybrid +144_2-13 Q0 MARCO_17_2633212999-43 16 0.299806 hybrid +144_2-13 Q0 KILT_14280337-8 17 0.258141 hybrid +144_2-13 Q0 MARCO_18_3039199927-60 18 0.256648 hybrid +144_2-13 Q0 KILT_158681-14 19 0.254731 hybrid +144_2-13 Q0 KILT_15944-10 20 0.253319 hybrid +144_2-13 Q0 MARCO_18_3042853877-29 21 0.253258 hybrid +144_2-13 Q0 MARCO_17_575493501-2 22 0.250414 hybrid +144_2-13 Q0 MARCO_17_575493501-1 23 0.246842 hybrid +144_2-13 Q0 MARCO_17_3580319373-27 24 0.246338 hybrid +144_2-13 Q0 MARCO_16_4041869224-10 25 0.243291 hybrid +144_2-13 Q0 MARCO_18_924403543-33 26 0.230983 hybrid +144_2-13 Q0 MARCO_18_4195875377-4 27 0.230318 hybrid +144_2-13 Q0 MARCO_17_1645219867-42 28 0.227674 hybrid +144_2-13 Q0 MARCO_18_2311617394-42 29 0.226262 hybrid +144_2-13 Q0 KILT_51669100-1 30 0.223437 hybrid +144_2-13 Q0 MARCO_30_74918479-8 31 0.222106 hybrid +144_2-13 Q0 MARCO_18_3122901390-27 32 0.221823 hybrid +144_2-13 Q0 MARCO_30_74812355-1 33 0.220613 hybrid +144_2-13 Q0 MARCO_17_1700049285-8 34 0.219705 hybrid +144_2-13 Q0 KILT_233944-2 35 0.216799 hybrid +144_2-13 Q0 KILT_1295284-9 36 0.199427 hybrid +144_2-13 Q0 MARCO_17_1290071141-11 37 0.193697 hybrid +144_2-13 Q0 MARCO_16_2124735062-8 38 0.191901 hybrid +144_2-13 Q0 MARCO_18_923431213-19 39 0.191901 hybrid +144_2-13 Q0 KILT_14280337-6 40 0.189823 hybrid +144_2-13 Q0 MARCO_18_3039781159-10 41 0.183487 hybrid +144_2-13 Q0 MARCO_31_266519964-1 42 0.181954 hybrid +144_2-13 Q0 MARCO_18_827749479-8 43 0.174529 hybrid +144_2-13 Q0 MARCO_18_1554688095-9 44 0.172309 hybrid +144_2-13 Q0 MARCO_59_345932663-1 45 0.165591 hybrid +144_2-13 Q0 MARCO_17_1798582100-20 46 0.163613 hybrid +144_2-13 Q0 KILT_4759545-13 47 0.163048 hybrid +144_2-13 Q0 KILT_20953139-1 48 0.162947 hybrid +144_2-13 Q0 MARCO_18_2311699605-19 49 0.162887 hybrid +144_2-13 Q0 MARCO_00_515410767-4 50 0.161918 hybrid +144_2-13 Q0 MARCO_16_2597075316-18 51 0.158670 hybrid +144_2-13 Q0 KILT_2376390-1 52 0.157520 hybrid +144_2-13 Q0 MARCO_03_1748077988-4 53 0.151568 hybrid +144_2-13 Q0 MARCO_17_3581880174-24 54 0.149550 hybrid +144_2-13 Q0 KILT_13876361-1 55 0.138534 hybrid +144_2-13 Q0 KILT_8364208-1 56 0.123704 hybrid +144_2-13 Q0 MARCO_18_3233548707-1 57 0.119668 hybrid +144_2-13 Q0 MARCO_30_74645172-12 58 0.115330 hybrid +144_2-13 Q0 MARCO_17_4840279354-18 59 0.110266 hybrid +144_2-13 Q0 MARCO_30_74812355-7 60 0.109661 hybrid +144_2-13 Q0 KILT_314978-5 61 0.095860 hybrid +144_2-13 Q0 MARCO_38_125938102-2 62 0.081252 hybrid +144_2-13 Q0 KILT_1179352-1 63 0.080768 hybrid +144_2-13 Q0 MARCO_19_1767990244-3 64 0.079113 hybrid +144_2-13 Q0 MARCO_50_1912727352-59 65 0.072777 hybrid +144_2-13 Q0 MARCO_17_3580319373-22 66 0.067168 hybrid +144_2-13 Q0 MARCO_26_1067160456-1 67 0.063073 hybrid +144_2-13 Q0 KILT_35149623-1 68 0.058412 hybrid +144_2-13 Q0 KILT_1295452-2 69 0.054961 hybrid +144_2-13 Q0 KILT_49315050-1 70 0.052621 hybrid +144_2-13 Q0 MARCO_30_419629173-2 71 0.051067 hybrid +144_2-13 Q0 KILT_11667533-2 72 0.049998 hybrid +144_2-13 Q0 MARCO_18_3233548707-10 73 0.048969 hybrid +144_2-13 Q0 MARCO_47_1508643911-1 74 0.041968 hybrid +144_2-13 Q0 KILT_520402-17 75 0.041080 hybrid +144_2-13 Q0 MARCO_17_3580319373-19 76 0.041080 hybrid +144_2-13 Q0 MARCO_50_1912727352-23 77 0.032343 hybrid +144_2-13 Q0 MARCO_04_59504196-2 78 0.032202 hybrid +144_2-13 Q0 MARCO_17_3580319373-2 79 0.031092 hybrid +144_2-13 Q0 MARCO_29_631342289-1 80 0.024716 hybrid +144_2-13 Q0 MARCO_19_1706185577-3 81 0.018542 hybrid +144_2-13 Q0 MARCO_54_604956140-1 82 0.014124 hybrid +144_2-13 Q0 MARCO_18_2310956562-10 83 0.014083 hybrid +144_2-13 Q0 KILT_26301-14 84 0.013539 hybrid +144_2-13 Q0 MARCO_02_1249301926-1 85 0.010008 hybrid +144_2-13 Q0 MARCO_06_931643751-1 86 0.006679 hybrid +144_2-13 Q0 KILT_8101244-1 87 0.005791 hybrid +144_2-13 Q0 KILT_23595810-1 88 0.003390 hybrid +144_2-13 Q0 MARCO_18_3123329102-41 89 0.000242 hybrid +144_2-13 Q0 MARCO_30_74645172-3 90 0.000141 hybrid +144_2-13 Q0 MARCO_22_85091400-1 91 -0.000061 hybrid +144_2-13 Q0 MARCO_18_423294061-15 92 -0.005771 hybrid +144_2-13 Q0 KILT_1295284-1 93 -0.012288 hybrid +144_2-13 Q0 MARCO_13_1454041509-1 94 -0.013559 hybrid +144_2-13 Q0 MARCO_44_1714764290-3 95 -0.016222 hybrid +144_2-13 Q0 MARCO_04_22320906-2 96 -0.017211 hybrid +144_2-13 Q0 MARCO_19_1767990244-11 97 -0.018139 hybrid +144_2-13 Q0 MARCO_41_868037264-1 98 -0.018300 hybrid +144_2-13 Q0 KILT_11262086-4 99 -0.022598 hybrid +144_2-13 Q0 KILT_11917710-2 100 -0.033756 hybrid +144_2-15 Q0 MARCO_18_2918414305-24 1 0.500000 hybrid +144_2-15 Q0 MARCO_28_972935301-4 2 0.454417 hybrid +144_2-15 Q0 MARCO_16_69991661-8 3 0.391545 hybrid +144_2-15 Q0 MARCO_19_1767990244-20 4 0.344082 hybrid +144_2-15 Q0 KILT_38458-5 5 0.297101 hybrid +144_2-15 Q0 MARCO_37_328852305-4 6 0.296909 hybrid +144_2-15 Q0 MARCO_50_2252222268-21 7 0.284955 hybrid +144_2-15 Q0 MARCO_47_724693245-5 8 0.222999 hybrid +144_2-15 Q0 MARCO_09_1208107094-18 9 0.199010 hybrid +144_2-15 Q0 MARCO_54_131077001-9 10 0.155291 hybrid +144_2-15 Q0 MARCO_25_65164806-2 11 0.143240 hybrid +144_2-15 Q0 MARCO_24_1085683610-2 12 0.133729 hybrid +144_2-15 Q0 MARCO_07_1050833873-30 13 0.132813 hybrid +144_2-15 Q0 MARCO_39_326869460-2 14 0.124008 hybrid +144_2-15 Q0 MARCO_18_3116878569-64 15 0.122642 hybrid +144_2-15 Q0 MARCO_50_1194863296-1 16 0.120634 hybrid +144_2-15 Q0 MARCO_42_664977715-7 17 0.116344 hybrid +144_2-15 Q0 MARCO_39_444862558-4 18 0.106784 hybrid +144_2-15 Q0 MARCO_02_1715461544-1 19 0.106671 hybrid +144_2-15 Q0 MARCO_52_1619588246-1 20 0.097963 hybrid +144_2-15 Q0 MARCO_52_1615146712-3 21 0.093673 hybrid +144_2-15 Q0 MARCO_52_1611218176-12 22 0.089881 hybrid +144_2-15 Q0 MARCO_40_1275785480-2 23 0.084370 hybrid +144_2-15 Q0 MARCO_24_1790812484-5 24 0.079324 hybrid +144_2-15 Q0 MARCO_28_972935301-3 25 0.069797 hybrid +144_2-15 Q0 MARCO_29_1226941908-19 26 0.052540 hybrid +144_2-15 Q0 MARCO_50_968070383-27 27 0.039606 hybrid +144_2-15 Q0 MARCO_01_1554889409-30 28 0.039108 hybrid +144_2-15 Q0 MARCO_01_686831562-61 29 0.034930 hybrid +144_2-15 Q0 MARCO_21_1236158078-7 30 0.029885 hybrid +144_2-15 Q0 MARCO_30_571723866-2 31 0.027443 hybrid +144_2-15 Q0 MARCO_51_607329168-1 32 0.027411 hybrid +144_2-15 Q0 MARCO_30_754445019-32 33 0.026447 hybrid +144_2-15 Q0 MARCO_43_1633529616-3 34 0.016807 hybrid +144_2-15 Q0 MARCO_10_1622826223-1 35 0.006491 hybrid +144_2-15 Q0 MARCO_31_238580222-2 36 0.001157 hybrid +144_2-15 Q0 MARCO_20_239446762-1 37 -0.002394 hybrid +144_2-15 Q0 MARCO_29_1586278890-6 38 -0.006957 hybrid +144_2-15 Q0 MARCO_10_1328610282-8 39 -0.007439 hybrid +144_2-15 Q0 MARCO_12_379590358-4 40 -0.007889 hybrid +144_2-15 Q0 MARCO_48_658213781-1 41 -0.009255 hybrid +144_2-15 Q0 MARCO_52_323885813-2 42 -0.013272 hybrid +144_2-15 Q0 MARCO_30_74697165-1 43 -0.013384 hybrid +144_2-15 Q0 MARCO_04_602929800-7 44 -0.013464 hybrid +144_2-15 Q0 MARCO_24_595898031-1 45 -0.015489 hybrid +144_2-15 Q0 MARCO_41_429697168-2 46 -0.036987 hybrid +144_2-15 Q0 MARCO_10_1622826223-3 47 -0.041197 hybrid +144_2-15 Q0 MARCO_10_1622826223-4 48 -0.045455 hybrid +144_2-15 Q0 KILT_233500-27 49 -0.054227 hybrid +144_2-15 Q0 MARCO_36_847077396-2 50 -0.055641 hybrid +144_2-15 Q0 MARCO_45_96374216-26 51 -0.059513 hybrid +144_2-15 Q0 MARCO_12_810429180-11 52 -0.061554 hybrid +144_2-15 Q0 MARCO_55_208543006-25 53 -0.068656 hybrid +144_2-15 Q0 MARCO_52_1619575137-4 54 -0.071548 hybrid +144_2-15 Q0 MARCO_38_5378023-1 55 -0.072833 hybrid +144_2-15 Q0 MARCO_24_1563887649-9 56 -0.076593 hybrid +144_2-15 Q0 MARCO_09_1766914802-15 57 -0.077846 hybrid +144_2-15 Q0 MARCO_18_2660662920-31 58 -0.078136 hybrid +144_2-15 Q0 MARCO_32_1383154385-9 59 -0.080514 hybrid +144_2-15 Q0 MARCO_35_892324178-12 60 -0.086073 hybrid +144_2-15 Q0 MARCO_18_3121388572-4 61 -0.088274 hybrid +144_2-15 Q0 MARCO_03_1662839664-8 62 -0.093544 hybrid +144_2-15 Q0 MARCO_47_1462866254-4 63 -0.094412 hybrid +144_2-15 Q0 MARCO_50_2871905454-11 64 -0.094412 hybrid +144_2-15 Q0 MARCO_50_1159216861-26 65 -0.094444 hybrid +144_2-15 Q0 MARCO_44_613784868-1 66 -0.099425 hybrid +144_2-15 Q0 MARCO_30_289446084-39 67 -0.100180 hybrid +144_2-15 Q0 MARCO_57_673503315-3 68 -0.100276 hybrid +144_2-15 Q0 MARCO_49_1740161577-5 69 -0.101980 hybrid +144_2-15 Q0 MARCO_40_1068991835-1 70 -0.103072 hybrid +144_2-15 Q0 MARCO_50_1109192953-41 71 -0.105755 hybrid +144_2-15 Q0 MARCO_27_1302199768-13 72 -0.106896 hybrid +144_2-15 Q0 MARCO_39_373578316-5 73 -0.108021 hybrid +144_2-15 Q0 MARCO_50_982609737-4 74 -0.108230 hybrid +144_2-15 Q0 MARCO_15_1918615594-17 75 -0.110849 hybrid +144_2-15 Q0 MARCO_14_466458461-1 76 -0.111282 hybrid +144_2-15 Q0 MARCO_13_1194942911-7 77 -0.113178 hybrid +144_2-15 Q0 MARCO_51_752988518-6 78 -0.113307 hybrid +144_2-15 Q0 MARCO_40_689997287-9 79 -0.114223 hybrid +144_2-15 Q0 MARCO_01_1669058880-4 80 -0.114946 hybrid +144_2-15 Q0 MARCO_13_1027983829-5 81 -0.120473 hybrid +144_2-15 Q0 MARCO_20_391549216-5 82 -0.120842 hybrid +144_2-15 Q0 MARCO_00_72603262-1 83 -0.121308 hybrid +144_2-15 Q0 MARCO_58_1062648550-13 84 -0.121726 hybrid +144_2-15 Q0 MARCO_13_1442028760-5 85 -0.125598 hybrid +144_2-15 Q0 MARCO_44_613784868-4 86 -0.129567 hybrid +144_2-15 Q0 MARCO_53_226870521-2 87 -0.129840 hybrid +144_2-15 Q0 MARCO_05_699838003-66 88 -0.130017 hybrid +144_2-15 Q0 MARCO_00_207639407-3 89 -0.130997 hybrid +144_2-15 Q0 MARCO_36_850146522-3 90 -0.131495 hybrid +144_2-15 Q0 MARCO_23_1123984842-4 91 -0.133231 hybrid +144_2-15 Q0 MARCO_52_1609989698-1 92 -0.133937 hybrid +144_2-15 Q0 MARCO_31_805294361-37 93 -0.133970 hybrid +144_2-15 Q0 MARCO_57_1310014663-3 94 -0.137408 hybrid +144_2-15 Q0 MARCO_20_1638253020-1 95 -0.140734 hybrid +144_2-15 Q0 MARCO_08_623525406-13 96 -0.142180 hybrid +144_2-15 Q0 MARCO_15_126917048-2 97 -0.145988 hybrid +144_2-15 Q0 MARCO_54_221629191-3 98 -0.146872 hybrid +144_2-15 Q0 MARCO_51_538459583-7 99 -0.151596 hybrid +144_2-15 Q0 MARCO_19_1851970474-1 100 -0.153925 hybrid +144_2-17 Q0 MARCO_18_3233548707-7 1 0.500000 hybrid +144_2-17 Q0 MARCO_44_613849939-1 2 0.359908 hybrid +144_2-17 Q0 MARCO_18_3233548707-9 3 0.319067 hybrid +144_2-17 Q0 KILT_1295284-6 4 0.313478 hybrid +144_2-17 Q0 MARCO_19_1767990244-46 5 0.161463 hybrid +144_2-17 Q0 MARCO_18_3116444373-5 6 0.156239 hybrid +144_2-17 Q0 KILT_37724098-1 7 0.155397 hybrid +144_2-17 Q0 MARCO_48_658173120-8 8 0.147309 hybrid +144_2-17 Q0 MARCO_02_1715119966-10 9 0.085667 hybrid +144_2-17 Q0 MARCO_18_3116444373-3 10 0.056680 hybrid +144_2-17 Q0 MARCO_18_3116977530-6 11 0.050137 hybrid +144_2-17 Q0 MARCO_19_1767990244-6 12 0.034234 hybrid +144_2-17 Q0 MARCO_18_3233548707-4 13 0.007333 hybrid +144_2-17 Q0 MARCO_18_3116444373-37 14 0.006066 hybrid +144_2-17 Q0 KILT_23595810-1 15 0.002684 hybrid +144_2-17 Q0 MARCO_18_3116444373-10 16 -0.002458 hybrid +144_2-17 Q0 MARCO_28_975973065-1 17 -0.010953 hybrid +144_2-17 Q0 KILT_23595810-21 18 -0.016159 hybrid +144_2-17 Q0 KILT_37724098-5 19 -0.020243 hybrid +144_2-17 Q0 MARCO_18_3116977530-5 20 -0.020470 hybrid +144_2-17 Q0 KILT_23595810-11 21 -0.028116 hybrid +144_2-17 Q0 MARCO_18_3116977530-7 22 -0.028732 hybrid +144_2-17 Q0 KILT_23595810-8 23 -0.030138 hybrid +144_2-17 Q0 KILT_23595810-12 24 -0.035007 hybrid +144_2-17 Q0 KILT_37724098-6 25 -0.037244 hybrid +144_2-17 Q0 MARCO_18_3116444373-29 26 -0.038092 hybrid +144_2-17 Q0 MARCO_18_3116444373-14 27 -0.041091 hybrid +144_2-17 Q0 MARCO_50_1382852659-102 28 -0.042659 hybrid +144_2-17 Q0 KILT_55382641-12 29 -0.048597 hybrid +144_2-17 Q0 KILT_37724098-7 30 -0.052293 hybrid +144_2-17 Q0 MARCO_18_3116444373-6 31 -0.053158 hybrid +144_2-17 Q0 MARCO_18_3116444373-53 32 -0.053199 hybrid +144_2-17 Q0 MARCO_18_3116444373-13 33 -0.059376 hybrid +144_2-17 Q0 KILT_43851474-9 34 -0.061060 hybrid +144_2-17 Q0 KILT_49189453-1 35 -0.062205 hybrid +144_2-17 Q0 MARCO_18_3116977530-1 36 -0.065959 hybrid +144_2-17 Q0 MARCO_18_3116444373-7 37 -0.073001 hybrid +144_2-17 Q0 MARCO_44_613784868-4 38 -0.075476 hybrid +144_2-17 Q0 MARCO_18_3116444373-27 39 -0.077068 hybrid +144_2-17 Q0 KILT_23595810-4 40 -0.078393 hybrid +144_2-17 Q0 MARCO_26_1067160456-1 41 -0.078904 hybrid +144_2-17 Q0 MARCO_19_1767990244-41 42 -0.080066 hybrid +144_2-17 Q0 KILT_23595810-5 43 -0.086190 hybrid +144_2-17 Q0 MARCO_17_2932665485-17 44 -0.086574 hybrid +144_2-17 Q0 KILT_42907493-3 45 -0.091071 hybrid +144_2-17 Q0 MARCO_58_1548130772-6 46 -0.093819 hybrid +144_2-17 Q0 MARCO_26_1067150539-6 47 -0.093848 hybrid +144_2-17 Q0 KILT_23595810-7 48 -0.097445 hybrid +144_2-17 Q0 MARCO_16_2409784215-11 49 -0.102000 hybrid +144_2-17 Q0 MARCO_26_1067160456-6 50 -0.105498 hybrid +144_2-17 Q0 MARCO_50_1312951478-24 51 -0.106085 hybrid +144_2-17 Q0 KILT_82488-5 52 -0.108391 hybrid +144_2-17 Q0 MARCO_18_3270644462-18 53 -0.111500 hybrid +144_2-17 Q0 KILT_20649079-3 54 -0.112214 hybrid +144_2-17 Q0 KILT_11463948-3 55 -0.112708 hybrid +144_2-17 Q0 KILT_40305820-13 56 -0.116200 hybrid +144_2-17 Q0 KILT_23595810-9 57 -0.116253 hybrid +144_2-17 Q0 MARCO_23_127383780-6 58 -0.117054 hybrid +144_2-17 Q0 KILT_55382641-2 59 -0.117391 hybrid +144_2-17 Q0 MARCO_47_1516406453-8 60 -0.121238 hybrid +144_2-17 Q0 MARCO_36_831952686-2 61 -0.121645 hybrid +144_2-17 Q0 MARCO_19_1767990244-4 62 -0.121691 hybrid +144_2-17 Q0 MARCO_18_3116444373-35 63 -0.122975 hybrid +144_2-17 Q0 MARCO_18_3116444373-1 64 -0.125642 hybrid +144_2-17 Q0 KILT_832774-14 65 -0.129128 hybrid +144_2-17 Q0 MARCO_28_970280486-1 66 -0.129361 hybrid +144_2-17 Q0 MARCO_50_1715454007-6 67 -0.129587 hybrid +144_2-17 Q0 MARCO_17_3580319373-21 68 -0.130377 hybrid +144_2-17 Q0 MARCO_18_3116977530-2 69 -0.136176 hybrid +144_2-17 Q0 MARCO_34_7241200-3 70 -0.138692 hybrid +144_2-17 Q0 MARCO_18_3116756863-14 71 -0.141783 hybrid +144_2-17 Q0 MARCO_53_1398750048-7 72 -0.143021 hybrid +144_2-17 Q0 KILT_1295284-8 73 -0.143485 hybrid +144_2-17 Q0 KILT_704428-5 74 -0.143642 hybrid +144_2-17 Q0 MARCO_18_542810802-8 75 -0.143642 hybrid +144_2-17 Q0 MARCO_17_2092527764-13 76 -0.144090 hybrid +144_2-17 Q0 MARCO_19_1767990244-12 77 -0.145194 hybrid +144_2-17 Q0 MARCO_18_3116444373-42 78 -0.147349 hybrid +144_2-17 Q0 MARCO_18_3116444373-2 79 -0.147739 hybrid +144_2-17 Q0 MARCO_50_1312847755-4 80 -0.148506 hybrid +144_2-17 Q0 MARCO_16_2410204749-29 81 -0.152323 hybrid +144_2-17 Q0 MARCO_31_426936964-15 82 -0.153282 hybrid +144_2-17 Q0 MARCO_32_743907275-11 83 -0.156402 hybrid +144_2-17 Q0 MARCO_18_3116444373-36 84 -0.158000 hybrid +144_2-17 Q0 MARCO_16_3824816359-3 85 -0.164228 hybrid +144_2-17 Q0 MARCO_18_108375057-14 86 -0.164519 hybrid +144_2-17 Q0 MARCO_18_3116510005-17 87 -0.169893 hybrid +144_2-17 Q0 MARCO_27_1146612109-1 88 -0.171509 hybrid +144_2-17 Q0 MARCO_28_975973065-2 89 -0.173246 hybrid +144_2-17 Q0 KILT_51019505-2 90 -0.176860 hybrid +144_2-17 Q0 MARCO_18_3116444373-22 91 -0.180486 hybrid +144_2-17 Q0 MARCO_40_1241219316-3 92 -0.182112 hybrid +144_2-17 Q0 MARCO_02_1715119966-6 93 -0.182211 hybrid +144_2-17 Q0 KILT_55382641-21 94 -0.182449 hybrid +144_2-17 Q0 MARCO_18_3270644462-29 95 -0.182699 hybrid +144_2-17 Q0 MARCO_18_3116664840-29 96 -0.184588 hybrid +144_2-17 Q0 KILT_23595810-17 97 -0.185012 hybrid +144_2-17 Q0 KILT_43064873-4 98 -0.186418 hybrid +144_2-17 Q0 KILT_1078982-9 99 -0.188626 hybrid +144_2-17 Q0 MARCO_18_3116977530-11 100 -0.189009 hybrid +144_2-3 Q0 MARCO_19_1767990244-45 1 0.500000 hybrid +144_2-3 Q0 MARCO_18_3116977530-1 2 0.475817 hybrid +144_2-3 Q0 KILT_37724098-1 3 0.455820 hybrid +144_2-3 Q0 MARCO_36_633444448-28 4 0.453991 hybrid +144_2-3 Q0 MARCO_18_3116977530-10 5 0.429106 hybrid +144_2-3 Q0 MARCO_08_1291511765-1 6 0.426601 hybrid +144_2-3 Q0 KILT_37724098-9 7 0.413394 hybrid +144_2-3 Q0 MARCO_49_615030085-4 8 0.394324 hybrid +144_2-3 Q0 MARCO_36_633444448-35 9 0.382922 hybrid +144_2-3 Q0 KILT_20649079-3 10 0.357988 hybrid +144_2-3 Q0 MARCO_17_2092527764-13 11 0.345458 hybrid +144_2-3 Q0 MARCO_00_624541009-1 12 0.310099 hybrid +144_2-3 Q0 MARCO_39_444876423-10 13 0.303684 hybrid +144_2-3 Q0 MARCO_52_1615424938-5 14 0.303683 hybrid +144_2-3 Q0 KILT_832774-13 15 0.303358 hybrid +144_2-3 Q0 MARCO_32_743907275-18 16 0.301504 hybrid +144_2-3 Q0 MARCO_02_1715119966-4 17 0.301253 hybrid +144_2-3 Q0 KILT_23595810-11 18 0.287921 hybrid +144_2-3 Q0 MARCO_18_3116444373-10 19 0.285340 hybrid +144_2-3 Q0 KILT_20649079-2 20 0.278173 hybrid +144_2-3 Q0 MARCO_36_633444448-8 21 0.274239 hybrid +144_2-3 Q0 MARCO_36_633444448-36 22 0.264841 hybrid +144_2-3 Q0 MARCO_28_975973065-1 23 0.256471 hybrid +144_2-3 Q0 MARCO_18_3116756863-11 24 0.255168 hybrid +144_2-3 Q0 MARCO_51_113246341-10 25 0.255068 hybrid +144_2-3 Q0 MARCO_50_2737838994-6 26 0.237677 hybrid +144_2-3 Q0 MARCO_49_1568296325-17 27 0.237000 hybrid +144_2-3 Q0 MARCO_26_1067160456-1 28 0.229006 hybrid +144_2-3 Q0 MARCO_52_1615415502-2 29 0.227703 hybrid +144_2-3 Q0 KILT_42907493-3 30 0.227277 hybrid +144_2-3 Q0 MARCO_36_853402536-2 31 0.224821 hybrid +144_2-3 Q0 MARCO_18_108375057-14 32 0.222215 hybrid +144_2-3 Q0 MARCO_01_485275176-27 33 0.222140 hybrid +144_2-3 Q0 MARCO_11_474590389-12 34 0.216201 hybrid +144_2-3 Q0 KILT_23595810-8 35 0.215299 hybrid +144_2-3 Q0 KILT_53357431-12 36 0.214597 hybrid +144_2-3 Q0 MARCO_18_3116878569-9 37 0.213469 hybrid +144_2-3 Q0 MARCO_49_615023184-4 38 0.208107 hybrid +144_2-3 Q0 MARCO_36_633444448-26 39 0.205350 hybrid +144_2-3 Q0 MARCO_36_831952686-2 40 0.198910 hybrid +144_2-3 Q0 MARCO_18_108375057-1 41 0.194900 hybrid +144_2-3 Q0 MARCO_33_640939994-5 42 0.191668 hybrid +144_2-3 Q0 MARCO_48_593647008-2 43 0.189237 hybrid +144_2-3 Q0 MARCO_50_1312847755-31 44 0.184050 hybrid +144_2-3 Q0 MARCO_52_1619593621-3 45 0.172547 hybrid +144_2-3 Q0 MARCO_50_1382852659-102 46 0.172046 hybrid +144_2-3 Q0 MARCO_50_1715454007-19 47 0.171595 hybrid +144_2-3 Q0 MARCO_36_633444448-33 48 0.158689 hybrid +144_2-3 Q0 MARCO_18_3116444373-13 49 0.157637 hybrid +144_2-3 Q0 MARCO_09_1864268454-2 50 0.151773 hybrid +144_2-3 Q0 MARCO_18_3116444373-27 51 0.150670 hybrid +144_2-3 Q0 MARCO_36_633444448-29 52 0.146009 hybrid +144_2-3 Q0 MARCO_00_80517741-12 53 0.134657 hybrid +144_2-3 Q0 MARCO_18_3116977530-5 54 0.133755 hybrid +144_2-3 Q0 KILT_37724098-5 55 0.128969 hybrid +144_2-3 Q0 MARCO_06_1774067857-11 56 0.128618 hybrid +144_2-3 Q0 MARCO_52_1608109622-1 57 0.127014 hybrid +144_2-3 Q0 MARCO_52_1608109622-3 58 0.127014 hybrid +144_2-3 Q0 MARCO_18_3116444373-6 59 0.125861 hybrid +144_2-3 Q0 KILT_832774-14 60 0.123806 hybrid +144_2-3 Q0 KILT_23595810-4 61 0.122178 hybrid +144_2-3 Q0 MARCO_36_1581152068-2 62 0.118795 hybrid +144_2-3 Q0 MARCO_26_1067160456-6 63 0.118694 hybrid +144_2-3 Q0 MARCO_35_308868762-4 64 0.118318 hybrid +144_2-3 Q0 KILT_42274720-4 65 0.118043 hybrid +144_2-3 Q0 KILT_34666187-7 66 0.113056 hybrid +144_2-3 Q0 MARCO_18_3116317508-4 67 0.111051 hybrid +144_2-3 Q0 KILT_49189453-1 68 0.110425 hybrid +144_2-3 Q0 KILT_34666187-30 69 0.110249 hybrid +144_2-3 Q0 MARCO_52_1615419340-3 70 0.110249 hybrid +144_2-3 Q0 KILT_23595810-12 71 0.109923 hybrid +144_2-3 Q0 MARCO_44_613849939-1 72 0.107718 hybrid +144_2-3 Q0 MARCO_04_1101137070-2 73 0.107042 hybrid +144_2-3 Q0 MARCO_18_3116444373-14 74 0.106641 hybrid +144_2-3 Q0 MARCO_44_613784868-4 75 0.106165 hybrid +144_2-3 Q0 MARCO_18_3116977530-11 76 0.100752 hybrid +144_2-3 Q0 MARCO_07_234060609-6 77 0.099925 hybrid +144_2-3 Q0 KILT_23595810-9 78 0.099624 hybrid +144_2-3 Q0 MARCO_36_633444448-32 79 0.098371 hybrid +144_2-3 Q0 MARCO_50_2210096877-13 80 0.097118 hybrid +144_2-3 Q0 MARCO_40_1058404863-1 81 0.093810 hybrid +144_2-3 Q0 KILT_44484413-1 82 0.093610 hybrid +144_2-3 Q0 MARCO_52_1615403696-1 83 0.091530 hybrid +144_2-3 Q0 MARCO_17_2932665485-17 84 0.090302 hybrid +144_2-3 Q0 MARCO_18_3116797241-1 85 0.089299 hybrid +144_2-3 Q0 MARCO_17_884867375-34 86 0.082057 hybrid +144_2-3 Q0 MARCO_18_3116878569-42 87 0.080579 hybrid +144_2-3 Q0 KILT_40305820-15 88 0.080002 hybrid +144_2-3 Q0 KILT_42907493-2 89 0.079376 hybrid +144_2-3 Q0 KILT_23595810-5 90 0.077923 hybrid +144_2-3 Q0 MARCO_51_1286627262-1 91 0.077371 hybrid +144_2-3 Q0 MARCO_52_1615396821-2 92 0.076895 hybrid +144_2-3 Q0 KILT_1078982-9 93 0.075717 hybrid +144_2-3 Q0 KILT_840611-11 94 0.074464 hybrid +144_2-3 Q0 MARCO_22_1495952378-5 95 0.069402 hybrid +144_2-3 Q0 MARCO_47_1013629926-12 96 0.066946 hybrid +144_2-3 Q0 KILT_23595810-10 97 0.062160 hybrid +144_2-3 Q0 MARCO_54_131142513-1 98 0.057900 hybrid +144_2-3 Q0 MARCO_31_882254318-6 99 0.055068 hybrid +144_2-3 Q0 MARCO_28_975973065-2 100 0.053264 hybrid +144_2-5 Q0 KILT_23595810-1 1 0.500000 hybrid +144_2-5 Q0 MARCO_18_3116977530-2 2 0.481755 hybrid +144_2-5 Q0 MARCO_28_970280486-9 3 0.415932 hybrid +144_2-5 Q0 MARCO_18_3116977530-6 4 0.302136 hybrid +144_2-5 Q0 KILT_12471884-1 5 0.300171 hybrid +144_2-5 Q0 MARCO_26_1067160456-4 6 0.283101 hybrid +144_2-5 Q0 KILT_37724098-1 7 0.272307 hybrid +144_2-5 Q0 MARCO_27_551517218-2 8 0.257494 hybrid +144_2-5 Q0 MARCO_19_1767990244-6 9 0.251657 hybrid +144_2-5 Q0 MARCO_26_1067160456-6 10 0.215674 hybrid +144_2-5 Q0 MARCO_50_1879385803-9 11 0.186635 hybrid +144_2-5 Q0 MARCO_17_2497921507-37 12 0.180110 hybrid +144_2-5 Q0 KILT_23595810-9 13 0.176734 hybrid +144_2-5 Q0 MARCO_39_444862558-2 14 0.134790 hybrid +144_2-5 Q0 MARCO_27_551504842-3 15 0.099846 hybrid +144_2-5 Q0 MARCO_47_1512775494-7 16 0.098808 hybrid +144_2-5 Q0 MARCO_39_693892223-40 17 0.097554 hybrid +144_2-5 Q0 KILT_37724098-4 18 0.078745 hybrid +144_2-5 Q0 KILT_642298-2 19 0.058625 hybrid +144_2-5 Q0 MARCO_57_410040915-12 20 0.055136 hybrid +144_2-5 Q0 MARCO_26_1067150539-6 21 0.053161 hybrid +144_2-5 Q0 KILT_401458-3 22 0.049525 hybrid +144_2-5 Q0 MARCO_26_1067160456-1 23 0.046545 hybrid +144_2-5 Q0 MARCO_18_3116444373-12 24 0.029507 hybrid +144_2-5 Q0 MARCO_18_3116977530-1 25 0.017393 hybrid +144_2-5 Q0 MARCO_26_1067150539-1 26 0.016027 hybrid +144_2-5 Q0 MARCO_50_812101681-10 27 0.013644 hybrid +144_2-5 Q0 KILT_832774-13 28 0.003675 hybrid +144_2-5 Q0 MARCO_50_1365341758-3 29 -0.002670 hybrid +144_2-5 Q0 MARCO_28_970280486-8 30 -0.013588 hybrid +144_2-5 Q0 KILT_2952567-8 31 -0.013611 hybrid +144_2-5 Q0 MARCO_36_1482767367-10 32 -0.014491 hybrid +144_2-5 Q0 MARCO_50_1365341758-4 33 -0.017449 hybrid +144_2-5 Q0 KILT_16992-15 34 -0.017720 hybrid +144_2-5 Q0 MARCO_17_3245501240-14 35 -0.024314 hybrid +144_2-5 Q0 MARCO_24_1169643665-1 36 -0.025420 hybrid +144_2-5 Q0 MARCO_50_1365341758-8 37 -0.039940 hybrid +144_2-5 Q0 MARCO_50_812101681-9 38 -0.040866 hybrid +144_2-5 Q0 MARCO_01_1701257605-9 39 -0.046477 hybrid +144_2-5 Q0 KILT_58671-3 40 -0.047990 hybrid +144_2-5 Q0 MARCO_28_972973498-8 41 -0.054132 hybrid +144_2-5 Q0 MARCO_50_1365341758-7 42 -0.054674 hybrid +144_2-5 Q0 MARCO_50_2121083196-2 43 -0.064090 hybrid +144_2-5 Q0 MARCO_44_1910691191-1 44 -0.067070 hybrid +144_2-5 Q0 MARCO_50_1879385803-24 45 -0.068877 hybrid +144_2-5 Q0 KILT_16920-14 46 -0.074522 hybrid +144_2-5 Q0 MARCO_17_3581880174-11 47 -0.078090 hybrid +144_2-5 Q0 MARCO_50_812101681-15 48 -0.080314 hybrid +144_2-5 Q0 MARCO_50_812101681-14 49 -0.090792 hybrid +144_2-5 Q0 MARCO_26_1160466626-40 50 -0.100637 hybrid +144_2-5 Q0 MARCO_51_2068291433-17 51 -0.106067 hybrid +144_2-5 Q0 MARCO_11_985788415-7 52 -0.107693 hybrid +144_2-5 Q0 MARCO_28_972973498-5 53 -0.110956 hybrid +144_2-5 Q0 MARCO_44_150687175-3 54 -0.113530 hybrid +144_2-5 Q0 MARCO_13_1609306642-15 55 -0.120542 hybrid +144_2-5 Q0 MARCO_18_3116444373-40 56 -0.128942 hybrid +144_2-5 Q0 MARCO_50_1879385803-10 57 -0.130308 hybrid +144_2-5 Q0 MARCO_18_3116444373-9 58 -0.132939 hybrid +144_2-5 Q0 MARCO_46_288657565-3 59 -0.133831 hybrid +144_2-5 Q0 MARCO_28_972973498-1 60 -0.135016 hybrid +144_2-5 Q0 KILT_37724098-6 61 -0.138843 hybrid +144_2-5 Q0 MARCO_26_1067160456-3 62 -0.147176 hybrid +144_2-5 Q0 KILT_51215-18 63 -0.154424 hybrid +144_2-5 Q0 MARCO_50_1715454007-6 64 -0.155621 hybrid +144_2-5 Q0 MARCO_15_518384160-34 65 -0.159561 hybrid +144_2-5 Q0 MARCO_11_807666677-17 66 -0.161368 hybrid +144_2-5 Q0 MARCO_01_299436966-31 67 -0.163129 hybrid +144_2-5 Q0 KILT_43851474-5 68 -0.165308 hybrid +144_2-5 Q0 MARCO_27_1365305430-1 69 -0.167566 hybrid +144_2-5 Q0 MARCO_23_125873038-9 70 -0.168785 hybrid +144_2-5 Q0 KILT_37724098-2 71 -0.171168 hybrid +144_2-5 Q0 MARCO_23_525070746-3 72 -0.175639 hybrid +144_2-5 Q0 MARCO_03_979976705-1 73 -0.178823 hybrid +144_2-5 Q0 MARCO_54_656937915-4 74 -0.179003 hybrid +144_2-5 Q0 MARCO_17_820929208-5 75 -0.181205 hybrid +144_2-5 Q0 MARCO_11_471762243-3 76 -0.181453 hybrid +144_2-5 Q0 KILT_1078982-4 77 -0.183745 hybrid +144_2-5 Q0 MARCO_18_1294400184-18 78 -0.184027 hybrid +144_2-5 Q0 MARCO_18_653093240-28 79 -0.188013 hybrid +144_2-5 Q0 MARCO_20_1481473889-3 80 -0.188995 hybrid +144_2-5 Q0 MARCO_46_288657565-5 81 -0.190000 hybrid +144_2-5 Q0 MARCO_17_1271336276-7 82 -0.191152 hybrid +144_2-5 Q0 MARCO_00_515635549-4 83 -0.192303 hybrid +144_2-5 Q0 MARCO_40_126582492-1 84 -0.193026 hybrid +144_2-5 Q0 MARCO_41_2058971511-3 85 -0.196402 hybrid +144_2-5 Q0 MARCO_25_68543874-6 86 -0.197395 hybrid +144_2-5 Q0 MARCO_13_1602218841-11 87 -0.200444 hybrid +144_2-5 Q0 MARCO_16_3391424302-9 88 -0.200805 hybrid +144_2-5 Q0 MARCO_47_1537508213-5 89 -0.201110 hybrid +144_2-5 Q0 MARCO_28_975734311-18 90 -0.201121 hybrid +144_2-5 Q0 KILT_807570-3 91 -0.203040 hybrid +144_2-5 Q0 MARCO_50_1715454007-2 92 -0.204486 hybrid +144_2-5 Q0 KILT_21188370-5 93 -0.206303 hybrid +144_2-5 Q0 KILT_22131-23 94 -0.206845 hybrid +144_2-5 Q0 MARCO_36_1479418996-4 95 -0.206891 hybrid +144_2-5 Q0 MARCO_05_491259834-2 96 -0.207466 hybrid +144_2-5 Q0 KILT_23092516-16 97 -0.207591 hybrid +144_2-5 Q0 MARCO_16_2409784215-11 98 -0.208595 hybrid +144_2-5 Q0 KILT_18953129-18 99 -0.210029 hybrid +144_2-5 Q0 MARCO_17_2877139673-11 100 -0.210357 hybrid +144_2-7 Q0 MARCO_26_1067160456-1 1 0.500000 hybrid +144_2-7 Q0 MARCO_31_882254318-6 2 0.300886 hybrid +144_2-7 Q0 MARCO_26_1067150539-1 3 0.278324 hybrid +144_2-7 Q0 MARCO_26_1067150539-2 4 0.209080 hybrid +144_2-7 Q0 MARCO_26_1067160456-6 5 0.157378 hybrid +144_2-7 Q0 MARCO_26_1067150539-6 6 0.094510 hybrid +144_2-7 Q0 MARCO_17_3581880174-11 7 0.060511 hybrid +144_2-7 Q0 MARCO_50_2210096877-9 8 0.039970 hybrid +144_2-7 Q0 MARCO_26_1067160456-2 9 0.033525 hybrid +144_2-7 Q0 MARCO_18_3116444373-43 10 0.019485 hybrid +144_2-7 Q0 MARCO_27_1146612109-1 11 -0.024241 hybrid +144_2-7 Q0 MARCO_29_1645007063-1 12 -0.029163 hybrid +144_2-7 Q0 MARCO_50_1715454007-19 13 -0.032563 hybrid +144_2-7 Q0 MARCO_18_3116444373-40 14 -0.050839 hybrid +144_2-7 Q0 MARCO_50_2210096877-13 15 -0.068881 hybrid +144_2-7 Q0 KILT_23595810-1 16 -0.076240 hybrid +144_2-7 Q0 MARCO_18_3116756863-11 17 -0.084063 hybrid +144_2-7 Q0 MARCO_26_1067150539-5 18 -0.091976 hybrid +144_2-7 Q0 MARCO_16_2409784215-11 19 -0.103115 hybrid +144_2-7 Q0 KILT_40305820-12 20 -0.113223 hybrid +144_2-7 Q0 MARCO_17_3581880174-21 21 -0.113389 hybrid +144_2-7 Q0 MARCO_56_708842463-7 22 -0.117169 hybrid +144_2-7 Q0 MARCO_09_739627690-6 23 -0.118838 hybrid +144_2-7 Q0 MARCO_49_1740214942-4 24 -0.119668 hybrid +144_2-7 Q0 KILT_37724098-4 25 -0.120665 hybrid +144_2-7 Q0 MARCO_52_1619588246-1 26 -0.126051 hybrid +144_2-7 Q0 MARCO_18_3116977530-4 27 -0.133501 hybrid +144_2-7 Q0 MARCO_50_2210096877-32 28 -0.136007 hybrid +144_2-7 Q0 MARCO_31_882254318-3 29 -0.136221 hybrid +144_2-7 Q0 MARCO_17_884867375-34 30 -0.141552 hybrid +144_2-7 Q0 MARCO_23_127383780-8 31 -0.141587 hybrid +144_2-7 Q0 MARCO_50_2737838994-1 32 -0.143968 hybrid +144_2-7 Q0 MARCO_02_1715461544-1 33 -0.145415 hybrid +144_2-7 Q0 MARCO_49_1740161577-5 34 -0.149964 hybrid +144_2-7 Q0 MARCO_18_108375057-14 35 -0.151286 hybrid +144_2-7 Q0 MARCO_44_613784868-4 36 -0.152200 hybrid +144_2-7 Q0 MARCO_26_1067150539-3 37 -0.153668 hybrid +144_2-7 Q0 MARCO_49_1740273108-5 38 -0.156215 hybrid +144_2-7 Q0 MARCO_35_259954299-6 39 -0.157191 hybrid +144_2-7 Q0 MARCO_36_847077396-2 40 -0.161241 hybrid +144_2-7 Q0 MARCO_38_5154368-1 41 -0.161241 hybrid +144_2-7 Q0 MARCO_19_1767990244-41 42 -0.163353 hybrid +144_2-7 Q0 MARCO_50_2049034577-22 43 -0.165603 hybrid +144_2-7 Q0 MARCO_50_1017969259-19 44 -0.171086 hybrid +144_2-7 Q0 MARCO_52_1608508127-3 45 -0.173287 hybrid +144_2-7 Q0 MARCO_35_308927978-13 46 -0.176070 hybrid +144_2-7 Q0 MARCO_52_1611201508-5 47 -0.178847 hybrid +144_2-7 Q0 MARCO_18_3116878569-16 48 -0.179303 hybrid +144_2-7 Q0 MARCO_40_1075686646-4 49 -0.181374 hybrid +144_2-7 Q0 MARCO_18_3116444373-44 50 -0.183083 hybrid +144_2-7 Q0 MARCO_53_1398750048-7 51 -0.183873 hybrid +144_2-7 Q0 MARCO_39_444862558-1 52 -0.184510 hybrid +144_2-7 Q0 MARCO_52_1611685648-5 53 -0.185527 hybrid +144_2-7 Q0 MARCO_50_1312847755-68 54 -0.186753 hybrid +144_2-7 Q0 MARCO_09_739564359-3 55 -0.186877 hybrid +144_2-7 Q0 MARCO_44_608424211-2 56 -0.187757 hybrid +144_2-7 Q0 MARCO_48_1474043178-8 57 -0.192146 hybrid +144_2-7 Q0 KILT_40667983-9 58 -0.195247 hybrid +144_2-7 Q0 MARCO_09_739564359-2 59 -0.195760 hybrid +144_2-7 Q0 MARCO_18_3116878569-44 60 -0.196417 hybrid +144_2-7 Q0 MARCO_50_1715454007-31 61 -0.196694 hybrid +144_2-7 Q0 MARCO_50_1017969259-27 62 -0.196777 hybrid +144_2-7 Q0 MARCO_50_1312847755-48 63 -0.198072 hybrid +144_2-7 Q0 KILT_2647515-17 64 -0.200730 hybrid +144_2-7 Q0 MARCO_17_884867375-26 65 -0.200730 hybrid +144_2-7 Q0 MARCO_28_972973498-9 66 -0.202011 hybrid +144_2-7 Q0 MARCO_01_686831562-68 67 -0.203230 hybrid +144_2-7 Q0 MARCO_44_613784868-1 68 -0.204019 hybrid +144_2-7 Q0 MARCO_17_2092527764-13 69 -0.204074 hybrid +144_2-7 Q0 MARCO_17_2092527764-3 70 -0.204379 hybrid +144_2-7 Q0 MARCO_38_5378023-2 71 -0.204455 hybrid +144_2-7 Q0 MARCO_09_738827493-2 72 -0.204607 hybrid +144_2-7 Q0 MARCO_17_885024530-14 73 -0.205570 hybrid +144_2-7 Q0 MARCO_52_323885813-2 74 -0.206712 hybrid +144_2-7 Q0 MARCO_18_3116878569-48 75 -0.207646 hybrid +144_2-7 Q0 KILT_909036-10 76 -0.207896 hybrid +144_2-7 Q0 MARCO_59_374982210-3 77 -0.208276 hybrid +144_2-7 Q0 MARCO_40_1068991835-1 78 -0.208733 hybrid +144_2-7 Q0 MARCO_36_854436803-9 79 -0.208775 hybrid +144_2-7 Q0 MARCO_37_1192498200-1 80 -0.209800 hybrid +144_2-7 Q0 MARCO_36_902495645-2 81 -0.211018 hybrid +144_2-7 Q0 KILT_44484413-1 82 -0.212354 hybrid +144_2-7 Q0 MARCO_50_1017969259-16 83 -0.212839 hybrid +144_2-7 Q0 MARCO_52_1615294398-3 84 -0.213033 hybrid +144_2-7 Q0 MARCO_01_686831562-42 85 -0.214216 hybrid +144_2-7 Q0 MARCO_52_1605932689-3 86 -0.214417 hybrid +144_2-7 Q0 MARCO_16_2375172633-3 87 -0.220253 hybrid +144_2-7 Q0 MARCO_32_697437548-216 88 -0.220918 hybrid +144_2-7 Q0 MARCO_50_1312951478-17 89 -0.221624 hybrid +144_2-7 Q0 MARCO_50_2252222268-21 90 -0.222344 hybrid +144_2-7 Q0 MARCO_18_3116878569-1 91 -0.223507 hybrid +144_2-7 Q0 MARCO_50_2121083196-2 92 -0.223680 hybrid +144_2-7 Q0 KILT_40305820-15 93 -0.223722 hybrid +144_2-7 Q0 MARCO_50_1382852659-102 94 -0.223888 hybrid +144_2-7 Q0 MARCO_09_738827493-1 95 -0.225695 hybrid +144_2-7 Q0 MARCO_35_251502771-2 96 -0.227059 hybrid +144_2-7 Q0 MARCO_17_2130887577-28 97 -0.231019 hybrid +144_2-7 Q0 KILT_42274720-1 98 -0.231946 hybrid +144_2-7 Q0 KILT_1295284-6 99 -0.234695 hybrid +144_2-7 Q0 KILT_43450436-12 100 -0.234979 hybrid +144_2-9 Q0 MARCO_06_1561972038-10 1 0.500000 hybrid +144_2-9 Q0 MARCO_54_1978539296-15 2 0.381702 hybrid +144_2-9 Q0 MARCO_08_1036385169-64 3 0.371970 hybrid +144_2-9 Q0 MARCO_39_765898479-2 4 0.329041 hybrid +144_2-9 Q0 MARCO_15_1918955320-1 5 0.272810 hybrid +144_2-9 Q0 MARCO_03_1802977506-3 6 0.268660 hybrid +144_2-9 Q0 MARCO_56_32638359-4 7 0.160522 hybrid +144_2-9 Q0 MARCO_50_1124059534-19 8 0.156498 hybrid +144_2-9 Q0 MARCO_41_1816846170-1 9 0.142591 hybrid +144_2-9 Q0 MARCO_54_197091096-4 10 0.136505 hybrid +144_2-9 Q0 MARCO_00_1180027187-1 11 0.121467 hybrid +144_2-9 Q0 MARCO_11_906621233-1 12 0.092395 hybrid +144_2-9 Q0 MARCO_17_871897909-12 13 0.088346 hybrid +144_2-9 Q0 MARCO_23_1623818577-1 14 0.078488 hybrid +144_2-9 Q0 MARCO_01_1135777943-15 15 0.073433 hybrid +144_2-9 Q0 MARCO_22_1494927212-2 16 0.064179 hybrid +144_2-9 Q0 MARCO_48_1355912084-4 17 0.038150 hybrid +144_2-9 Q0 MARCO_43_526662722-2 18 0.036968 hybrid +144_2-9 Q0 MARCO_50_916869061-11 19 0.023011 hybrid +144_2-9 Q0 MARCO_50_1879385803-9 20 0.018434 hybrid +144_2-9 Q0 MARCO_50_1617367207-3 21 0.009431 hybrid +144_2-9 Q0 MARCO_14_457645845-1 22 0.000176 hybrid +144_2-9 Q0 MARCO_22_1245441228-1 23 -0.007444 hybrid +144_2-9 Q0 MARCO_50_1030988788-13 24 -0.017730 hybrid +144_2-9 Q0 MARCO_19_1083554153-11 25 -0.022508 hybrid +144_2-9 Q0 MARCO_44_1988604499-4 26 -0.023916 hybrid +144_2-9 Q0 MARCO_47_1415542353-1 27 -0.024545 hybrid +144_2-9 Q0 MARCO_02_1432985660-8 28 -0.027261 hybrid +144_2-9 Q0 MARCO_02_1433024531-26 29 -0.027261 hybrid +144_2-9 Q0 MARCO_02_1433056509-9 30 -0.027261 hybrid +144_2-9 Q0 MARCO_02_1433068528-10 31 -0.027262 hybrid +144_2-9 Q0 MARCO_26_768462490-2 32 -0.027839 hybrid +144_2-9 Q0 MARCO_50_834441021-11 33 -0.034026 hybrid +144_2-9 Q0 MARCO_50_1143883143-6 34 -0.035962 hybrid +144_2-9 Q0 MARCO_50_834441021-5 35 -0.036742 hybrid +144_2-9 Q0 MARCO_25_282951392-5 36 -0.041092 hybrid +144_2-9 Q0 MARCO_02_1569528688-1 37 -0.045569 hybrid +144_2-9 Q0 MARCO_56_256211312-3 38 -0.051705 hybrid +144_2-9 Q0 MARCO_02_1432985660-1 39 -0.055830 hybrid +144_2-9 Q0 MARCO_27_1399507588-14 40 -0.055830 hybrid +144_2-9 Q0 MARCO_06_1877975272-1 41 -0.061086 hybrid +144_2-9 Q0 MARCO_50_2132501745-23 42 -0.073383 hybrid +144_2-9 Q0 MARCO_38_536276356-1 43 -0.083694 hybrid +144_2-9 Q0 MARCO_50_1725090542-13 44 -0.088623 hybrid +144_2-9 Q0 MARCO_58_1470489104-53 45 -0.088723 hybrid +144_2-9 Q0 MARCO_22_1495942667-4 46 -0.090459 hybrid +144_2-9 Q0 MARCO_02_951756985-2 47 -0.091213 hybrid +144_2-9 Q0 MARCO_58_1157990560-3 48 -0.091314 hybrid +144_2-9 Q0 MARCO_13_809145767-2 49 -0.092395 hybrid +144_2-9 Q0 MARCO_53_1394234875-4 50 -0.094005 hybrid +144_2-9 Q0 MARCO_50_1823804266-10 51 -0.095765 hybrid +144_2-9 Q0 MARCO_08_1332757210-2 52 -0.098179 hybrid +144_2-9 Q0 MARCO_39_938428329-4 53 -0.101348 hybrid +144_2-9 Q0 MARCO_13_1438795712-1 54 -0.101423 hybrid +144_2-9 Q0 MARCO_17_4799535060-25 55 -0.102882 hybrid +144_2-9 Q0 MARCO_02_937086335-13 56 -0.103637 hybrid +144_2-9 Q0 MARCO_06_1561972038-1 57 -0.105548 hybrid +144_2-9 Q0 MARCO_42_1191198866-3 58 -0.106302 hybrid +144_2-9 Q0 MARCO_33_381783827-2 59 -0.108968 hybrid +144_2-9 Q0 MARCO_53_468022945-1 60 -0.110276 hybrid +144_2-9 Q0 MARCO_39_1565905913-3 61 -0.110879 hybrid +144_2-9 Q0 MARCO_06_1877975272-4 62 -0.110955 hybrid +144_2-9 Q0 MARCO_27_1352516943-3 63 -0.112891 hybrid +144_2-9 Q0 MARCO_45_1312010596-1 64 -0.112941 hybrid +144_2-9 Q0 MARCO_54_1538933058-5 65 -0.114903 hybrid +144_2-9 Q0 MARCO_04_108237148-1 66 -0.118650 hybrid +144_2-9 Q0 MARCO_44_785101059-1 67 -0.120134 hybrid +144_2-9 Q0 MARCO_50_1715454007-6 68 -0.122523 hybrid +144_2-9 Q0 MARCO_50_2431144355-39 69 -0.123831 hybrid +144_2-9 Q0 MARCO_51_710748572-1 70 -0.125440 hybrid +144_2-9 Q0 MARCO_44_106508308-1 71 -0.136078 hybrid +144_2-9 Q0 MARCO_52_47572470-6 72 -0.136883 hybrid +144_2-9 Q0 KILT_5082226-30 73 -0.140202 hybrid +144_2-9 Q0 MARCO_43_53953579-1 74 -0.143723 hybrid +144_2-9 Q0 MARCO_52_485841859-1 75 -0.146816 hybrid +144_2-9 Q0 MARCO_25_130789180-3 76 -0.146942 hybrid +144_2-9 Q0 MARCO_13_449254264-2 77 -0.147068 hybrid +144_2-9 Q0 MARCO_13_449259655-2 78 -0.147068 hybrid +144_2-9 Q0 MARCO_13_449264993-2 79 -0.147068 hybrid +144_2-9 Q0 MARCO_13_449306936-18 80 -0.147069 hybrid +144_2-9 Q0 MARCO_16_1811109911-25 81 -0.147420 hybrid +144_2-9 Q0 MARCO_20_870069371-2 82 -0.147420 hybrid +144_2-9 Q0 MARCO_02_113384926-11 83 -0.149784 hybrid +144_2-9 Q0 MARCO_51_710751446-1 84 -0.151519 hybrid +144_2-9 Q0 MARCO_50_1124059534-18 85 -0.152072 hybrid +144_2-9 Q0 MARCO_50_1164950708-19 86 -0.156021 hybrid +144_2-9 Q0 MARCO_50_1027016728-22 87 -0.158359 hybrid +144_2-9 Q0 MARCO_50_1344944975-30 88 -0.159089 hybrid +144_2-9 Q0 MARCO_36_1725610026-2 89 -0.161905 hybrid +144_2-9 Q0 MARCO_41_2052388823-5 90 -0.173096 hybrid +144_2-9 Q0 MARCO_11_900352739-7 91 -0.177522 hybrid +144_2-9 Q0 MARCO_22_1432682025-2 92 -0.178679 hybrid +144_2-9 Q0 MARCO_31_1293503683-4 93 -0.178906 hybrid +144_2-9 Q0 MARCO_28_266187884-5 94 -0.181018 hybrid +144_2-9 Q0 MARCO_17_2016617555-33 95 -0.181144 hybrid +144_2-9 Q0 MARCO_43_536784903-1 96 -0.181622 hybrid +144_2-9 Q0 MARCO_15_820192490-4 97 -0.185796 hybrid +144_2-9 Q0 MARCO_00_1003164416-5 98 -0.186525 hybrid +144_2-9 Q0 MARCO_01_1609643897-1 99 -0.188764 hybrid +144_2-9 Q0 MARCO_19_2554021958-3 100 -0.188764 hybrid +144_3-1 Q0 MARCO_50_2174712329-22 1 0.500000 hybrid +144_3-1 Q0 MARCO_42_1429885490-2 2 0.326880 hybrid +144_3-1 Q0 MARCO_35_832818110-1 3 0.272600 hybrid +144_3-1 Q0 MARCO_40_773018126-13 4 0.254564 hybrid +144_3-1 Q0 MARCO_04_849827808-2 5 0.218880 hybrid +144_3-1 Q0 MARCO_19_1804763398-6 6 0.218394 hybrid +144_3-1 Q0 MARCO_24_1264863632-5 7 0.211271 hybrid +144_3-1 Q0 MARCO_50_2413981820-9 8 0.187037 hybrid +144_3-1 Q0 MARCO_50_1597611796-13 9 0.172549 hybrid +144_3-1 Q0 MARCO_50_1811325195-18 10 0.172549 hybrid +144_3-1 Q0 MARCO_51_173322432-1 11 0.172549 hybrid +144_3-1 Q0 MARCO_28_166822641-3 12 0.166715 hybrid +144_3-1 Q0 MARCO_50_1537821753-13 13 0.156871 hybrid +144_3-1 Q0 MARCO_50_1812136085-11 14 0.156870 hybrid +144_3-1 Q0 MARCO_35_832818110-3 15 0.155388 hybrid +144_3-1 Q0 MARCO_40_1222846375-2 16 0.140147 hybrid +144_3-1 Q0 MARCO_24_1265547418-3 17 0.134775 hybrid +144_3-1 Q0 MARCO_23_1681322289-1 18 0.131201 hybrid +144_3-1 Q0 MARCO_24_1265897864-1 19 0.110880 hybrid +144_3-1 Q0 MARCO_50_1076872376-16 20 0.107428 hybrid +144_3-1 Q0 MARCO_44_540204572-7 21 0.106091 hybrid +144_3-1 Q0 MARCO_48_1714161408-5 22 0.102275 hybrid +144_3-1 Q0 MARCO_39_1564727731-10 23 0.090899 hybrid +144_3-1 Q0 MARCO_15_1809491569-6 24 0.089927 hybrid +144_3-1 Q0 MARCO_50_2250289377-24 25 0.082999 hybrid +144_3-1 Q0 MARCO_49_1442524361-7 26 0.068244 hybrid +144_3-1 Q0 MARCO_50_1310545372-31 27 0.065886 hybrid +144_3-1 Q0 MARCO_39_216645191-3 28 0.062459 hybrid +144_3-1 Q0 MARCO_56_1006526073-1 29 0.057063 hybrid +144_3-1 Q0 MARCO_49_238088672-2 30 0.052541 hybrid +144_3-1 Q0 MARCO_23_1681038643-2 31 0.047242 hybrid +144_3-1 Q0 MARCO_50_2497640154-7 32 0.036352 hybrid +144_3-1 Q0 MARCO_24_104585648-2 33 0.025924 hybrid +144_3-1 Q0 MARCO_31_25079875-1 34 0.020990 hybrid +144_3-1 Q0 MARCO_55_204304509-26 35 0.017611 hybrid +144_3-1 Q0 MARCO_50_1153643370-36 36 0.003464 hybrid +144_3-1 Q0 MARCO_59_721736513-1 37 0.001082 hybrid +144_3-1 Q0 MARCO_50_1104901456-1 38 -0.001835 hybrid +144_3-1 Q0 MARCO_29_111827905-3 39 -0.011972 hybrid +144_3-1 Q0 MARCO_52_1741655285-1 40 -0.016857 hybrid +144_3-1 Q0 MARCO_44_196653807-6 41 -0.017028 hybrid +144_3-1 Q0 MARCO_24_1312795837-6 42 -0.017392 hybrid +144_3-1 Q0 MARCO_02_59595046-3 43 -0.027091 hybrid +144_3-1 Q0 MARCO_42_251519514-1 44 -0.046173 hybrid +144_3-1 Q0 KILT_2093258-1 45 -0.046805 hybrid +144_3-1 Q0 MARCO_00_624706452-1 46 -0.047218 hybrid +144_3-1 Q0 MARCO_03_1723288227-4 47 -0.048263 hybrid +144_3-1 Q0 MARCO_13_336910672-2 48 -0.051715 hybrid +144_3-1 Q0 MARCO_51_173244366-1 49 -0.068901 hybrid +144_3-1 Q0 MARCO_40_1641810489-2 50 -0.071356 hybrid +144_3-1 Q0 MARCO_44_485004067-8 51 -0.073349 hybrid +144_3-1 Q0 MARCO_11_1259747878-14 52 -0.076630 hybrid +144_3-1 Q0 MARCO_57_714926689-1 53 -0.077749 hybrid +144_3-1 Q0 MARCO_03_1594653534-2 54 -0.078915 hybrid +144_3-1 Q0 MARCO_06_13765161-37 55 -0.079499 hybrid +144_3-1 Q0 MARCO_51_179065511-1 56 -0.082051 hybrid +144_3-1 Q0 MARCO_07_658838109-1 57 -0.082562 hybrid +144_3-1 Q0 MARCO_50_2016810983-32 58 -0.086256 hybrid +144_3-1 Q0 MARCO_03_1725067314-4 59 -0.086913 hybrid +144_3-1 Q0 MARCO_01_1961700619-28 60 -0.089416 hybrid +144_3-1 Q0 MARCO_59_626428691-4 61 -0.091531 hybrid +144_3-1 Q0 MARCO_54_1986291667-4 62 -0.094643 hybrid +144_3-1 Q0 MARCO_40_1222254179-3 63 -0.095104 hybrid +144_3-1 Q0 MARCO_50_1076872376-15 64 -0.098532 hybrid +144_3-1 Q0 MARCO_50_1739975746-14 65 -0.100720 hybrid +144_3-1 Q0 MARCO_31_249955320-9 66 -0.106651 hybrid +144_3-1 Q0 MARCO_12_848277320-4 67 -0.107161 hybrid +144_3-1 Q0 MARCO_50_1104829561-2 68 -0.107842 hybrid +144_3-1 Q0 MARCO_51_1652327338-4 69 -0.109033 hybrid +144_3-1 Q0 MARCO_32_611322411-5 70 -0.110637 hybrid +144_3-1 Q0 MARCO_26_466293829-1 71 -0.111853 hybrid +144_3-1 Q0 MARCO_27_551542643-8 72 -0.117200 hybrid +144_3-1 Q0 MARCO_50_1103614231-1 73 -0.117395 hybrid +144_3-1 Q0 MARCO_06_383590337-3 74 -0.118950 hybrid +144_3-1 Q0 MARCO_12_1425631333-4 75 -0.123326 hybrid +144_3-1 Q0 MARCO_12_486136674-1 76 -0.125246 hybrid +144_3-1 Q0 MARCO_30_1490870548-2 77 -0.126267 hybrid +144_3-1 Q0 MARCO_13_654001928-6 78 -0.126510 hybrid +144_3-1 Q0 MARCO_23_1680484998-1 79 -0.129233 hybrid +144_3-1 Q0 MARCO_09_1768820011-1 80 -0.133292 hybrid +144_3-1 Q0 MARCO_23_836941909-6 81 -0.133948 hybrid +144_3-1 Q0 MARCO_51_164771501-1 82 -0.136331 hybrid +144_3-1 Q0 MARCO_03_1725067314-3 83 -0.137497 hybrid +144_3-1 Q0 KILT_514199-17 84 -0.139150 hybrid +144_3-1 Q0 MARCO_44_1947614369-7 85 -0.142748 hybrid +144_3-1 Q0 MARCO_55_1025939137-14 86 -0.144279 hybrid +144_3-1 Q0 MARCO_53_792022816-5 87 -0.145106 hybrid +144_3-1 Q0 MARCO_02_583956890-2 88 -0.146200 hybrid +144_3-1 Q0 MARCO_49_1282162714-1 89 -0.147804 hybrid +144_3-1 Q0 MARCO_41_1371875277-12 90 -0.148898 hybrid +144_3-1 Q0 MARCO_24_1312795837-36 91 -0.149773 hybrid +144_3-1 Q0 MARCO_21_85153648-7 92 -0.149797 hybrid +144_3-1 Q0 MARCO_20_439978184-5 93 -0.150599 hybrid +144_3-1 Q0 MARCO_00_515410767-4 94 -0.154099 hybrid +144_3-1 Q0 MARCO_14_1130689841-5 95 -0.158864 hybrid +144_3-1 Q0 MARCO_14_1130615956-5 96 -0.158961 hybrid +144_3-1 Q0 MARCO_14_1130624207-5 97 -0.158961 hybrid +144_3-1 Q0 MARCO_14_1130632415-5 98 -0.158962 hybrid +144_3-1 Q0 MARCO_14_1130640746-5 99 -0.158962 hybrid +144_3-1 Q0 MARCO_14_1130648996-5 100 -0.158962 hybrid +145_1-1 Q0 MARCO_54_2053931769-1 1 0.500000 hybrid +145_1-1 Q0 MARCO_04_208872235-3 2 0.412889 hybrid +145_1-1 Q0 MARCO_25_1277790022-20 3 0.308896 hybrid +145_1-1 Q0 MARCO_00_530877945-1 4 0.269212 hybrid +145_1-1 Q0 MARCO_04_2609510-4 5 0.267208 hybrid +145_1-1 Q0 MARCO_15_757516206-3 6 0.260589 hybrid +145_1-1 Q0 MARCO_25_595279481-8 7 0.259587 hybrid +145_1-1 Q0 MARCO_33_1621373075-1 8 0.242189 hybrid +145_1-1 Q0 MARCO_19_2051990023-15 9 0.236906 hybrid +145_1-1 Q0 MARCO_27_1301405256-1 10 0.235843 hybrid +145_1-1 Q0 MARCO_54_2053977583-1 11 0.235843 hybrid +145_1-1 Q0 MARCO_12_499248875-1 12 0.224153 hybrid +145_1-1 Q0 MARCO_22_707367975-3 13 0.221482 hybrid +145_1-1 Q0 MARCO_26_1888543332-2 14 0.213921 hybrid +145_1-1 Q0 MARCO_25_595279481-9 15 0.205298 hybrid +145_1-1 Q0 MARCO_16_191558108-2 16 0.198740 hybrid +145_1-1 Q0 MARCO_33_1621373075-2 17 0.187991 hybrid +145_1-1 Q0 MARCO_27_1160161170-1 18 0.169409 hybrid +145_1-1 Q0 MARCO_36_981529605-2 19 0.166100 hybrid +145_1-1 Q0 MARCO_25_595279481-6 20 0.162729 hybrid +145_1-1 Q0 MARCO_58_1574227328-1 21 0.152437 hybrid +145_1-1 Q0 MARCO_00_1103730034-3 22 0.150099 hybrid +145_1-1 Q0 MARCO_24_435431530-3 23 0.145150 hybrid +145_1-1 Q0 MARCO_26_1606606793-1 24 0.144178 hybrid +145_1-1 Q0 MARCO_55_130999384-3 25 0.138136 hybrid +145_1-1 Q0 MARCO_19_2053330574-3 26 0.136709 hybrid +145_1-1 Q0 MARCO_26_1596688070-3 27 0.132792 hybrid +145_1-1 Q0 MARCO_19_2053330574-4 28 0.131425 hybrid +145_1-1 Q0 MARCO_52_591276133-1 29 0.125383 hybrid +145_1-1 Q0 MARCO_29_1511526341-2 30 0.120495 hybrid +145_1-1 Q0 MARCO_35_255953235-1 31 0.120495 hybrid +145_1-1 Q0 MARCO_00_1103658282-3 32 0.119948 hybrid +145_1-1 Q0 MARCO_27_455491924-2 33 0.118339 hybrid +145_1-1 Q0 MARCO_50_2386869195-9 34 0.112297 hybrid +145_1-1 Q0 MARCO_25_595279481-14 35 0.110840 hybrid +145_1-1 Q0 MARCO_27_1567992001-3 36 0.107712 hybrid +145_1-1 Q0 MARCO_48_932996886-10 37 0.107712 hybrid +145_1-1 Q0 MARCO_19_1758672222-6 38 0.095658 hybrid +145_1-1 Q0 MARCO_26_1917936880-3 39 0.095658 hybrid +145_1-1 Q0 MARCO_25_595279481-1 40 0.093867 hybrid +145_1-1 Q0 MARCO_26_259783399-3 41 0.090588 hybrid +145_1-1 Q0 MARCO_27_1301405256-2 42 0.090011 hybrid +145_1-1 Q0 MARCO_33_391805635-3 43 0.087278 hybrid +145_1-1 Q0 MARCO_58_314126154-16 44 0.087278 hybrid +145_1-1 Q0 MARCO_34_51783652-5 45 0.081904 hybrid +145_1-1 Q0 MARCO_26_1594444537-23 46 0.081539 hybrid +145_1-1 Q0 MARCO_34_1792149692-4 47 0.079444 hybrid +145_1-1 Q0 MARCO_09_393605320-3 48 0.077926 hybrid +145_1-1 Q0 MARCO_05_1663908927-2 49 0.077198 hybrid +145_1-1 Q0 MARCO_24_435431530-4 50 0.077197 hybrid +145_1-1 Q0 MARCO_15_133803271-1 51 0.076347 hybrid +145_1-1 Q0 MARCO_41_1028317029-34 52 0.072491 hybrid +145_1-1 Q0 MARCO_08_1596682186-4 53 0.069546 hybrid +145_1-1 Q0 MARCO_34_1692756323-3 54 0.069091 hybrid +145_1-1 Q0 MARCO_29_1271392330-1 55 0.064506 hybrid +145_1-1 Q0 MARCO_50_2386869195-6 56 0.059101 hybrid +145_1-1 Q0 MARCO_58_1142343649-2 57 0.058798 hybrid +145_1-1 Q0 MARCO_27_1578886873-1 58 0.056824 hybrid +145_1-1 Q0 MARCO_24_165148535-3 59 0.056581 hybrid +145_1-1 Q0 MARCO_22_1063811612-1 60 0.055640 hybrid +145_1-1 Q0 MARCO_19_2051990023-14 61 0.053818 hybrid +145_1-1 Q0 MARCO_44_1129125636-2 62 0.050266 hybrid +145_1-1 Q0 MARCO_36_685464632-8 63 0.046561 hybrid +145_1-1 Q0 MARCO_55_339238680-3 64 0.046167 hybrid +145_1-1 Q0 MARCO_19_2583800306-1 65 0.046015 hybrid +145_1-1 Q0 MARCO_25_605683395-4 66 0.044952 hybrid +145_1-1 Q0 MARCO_55_339238680-2 67 0.041582 hybrid +145_1-1 Q0 MARCO_31_283025842-1 68 0.041400 hybrid +145_1-1 Q0 MARCO_19_2008365164-2 69 0.038728 hybrid +145_1-1 Q0 MARCO_02_696788888-2 70 0.037088 hybrid +145_1-1 Q0 MARCO_28_528320265-8 71 0.032503 hybrid +145_1-1 Q0 MARCO_15_676279070-3 72 0.032078 hybrid +145_1-1 Q0 MARCO_54_928949724-9 73 0.031410 hybrid +145_1-1 Q0 MARCO_03_447802610-3 74 0.031289 hybrid +145_1-1 Q0 MARCO_12_469868252-4 75 0.031289 hybrid +145_1-1 Q0 MARCO_56_402418044-11 76 0.031288 hybrid +145_1-1 Q0 MARCO_33_1452111963-3 77 0.029558 hybrid +145_1-1 Q0 MARCO_36_1680005636-15 78 0.027251 hybrid +145_1-1 Q0 MARCO_12_226263694-1 79 0.026583 hybrid +145_1-1 Q0 MARCO_21_1325416203-6 80 0.023091 hybrid +145_1-1 Q0 MARCO_25_595279481-7 81 0.015713 hybrid +145_1-1 Q0 MARCO_34_1124001146-3 82 0.010551 hybrid +145_1-1 Q0 MARCO_03_1756460994-3 83 0.007788 hybrid +145_1-1 Q0 MARCO_30_435276155-1 84 0.005997 hybrid +145_1-1 Q0 MARCO_13_1702160838-2 85 0.000076 hybrid +145_1-1 Q0 MARCO_57_1511704721-5 86 -0.000106 hybrid +145_1-1 Q0 MARCO_12_213328869-5 87 -0.001625 hybrid +145_1-1 Q0 MARCO_25_595279481-4 88 -0.003568 hybrid +145_1-1 Q0 MARCO_14_1156621032-1 89 -0.004478 hybrid +145_1-1 Q0 MARCO_36_685450476-4 90 -0.006725 hybrid +145_1-1 Q0 MARCO_04_249190784-16 91 -0.010672 hybrid +145_1-1 Q0 MARCO_48_932996886-5 92 -0.010673 hybrid +145_1-1 Q0 MARCO_24_1765055683-2 93 -0.015379 hybrid +145_1-1 Q0 MARCO_31_1235355240-14 94 -0.017413 hybrid +145_1-1 Q0 MARCO_52_46235441-3 95 -0.017413 hybrid +145_1-1 Q0 MARCO_55_339606469-2 96 -0.021026 hybrid +145_1-1 Q0 MARCO_57_1042382953-13 97 -0.021027 hybrid +145_1-1 Q0 MARCO_14_1633033248-6 98 -0.023698 hybrid +145_1-1 Q0 MARCO_16_153763118-1 99 -0.023698 hybrid +145_1-1 Q0 MARCO_02_24353285-5 100 -0.023911 hybrid +145_1-3 Q0 MARCO_54_2053931769-1 1 0.500000 hybrid +145_1-3 Q0 MARCO_35_255953235-1 2 0.249125 hybrid +145_1-3 Q0 MARCO_06_2601963-37 3 0.188239 hybrid +145_1-3 Q0 MARCO_36_981529605-2 4 0.153412 hybrid +145_1-3 Q0 MARCO_25_595279481-6 5 0.146286 hybrid +145_1-3 Q0 MARCO_25_595279481-8 6 0.140133 hybrid +145_1-3 Q0 MARCO_22_1063811612-2 7 0.092101 hybrid +145_1-3 Q0 MARCO_07_885852465-5 8 0.085315 hybrid +145_1-3 Q0 MARCO_55_339238680-2 9 0.072791 hybrid +145_1-3 Q0 MARCO_44_1129125636-2 10 0.066674 hybrid +145_1-3 Q0 MARCO_19_2051990023-12 11 0.059123 hybrid +145_1-3 Q0 MARCO_30_435276155-1 12 0.057347 hybrid +145_1-3 Q0 MARCO_27_1301405256-2 13 0.046841 hybrid +145_1-3 Q0 MARCO_15_132547451-5 14 0.045394 hybrid +145_1-3 Q0 MARCO_22_962673540-2 15 0.028868 hybrid +145_1-3 Q0 MARCO_34_1124001146-3 16 0.025743 hybrid +145_1-3 Q0 MARCO_47_1568009670-3 17 0.014154 hybrid +145_1-3 Q0 MARCO_36_685464632-8 18 0.010458 hybrid +145_1-3 Q0 MARCO_31_283025842-1 19 0.008391 hybrid +145_1-3 Q0 MARCO_55_381146103-5 20 0.000657 hybrid +145_1-3 Q0 MARCO_47_1568000980-4 21 -0.003101 hybrid +145_1-3 Q0 MARCO_36_1680067743-2 22 -0.006226 hybrid +145_1-3 Q0 MARCO_22_962673540-3 23 -0.016586 hybrid +145_1-3 Q0 MARCO_27_1197599215-5 24 -0.025184 hybrid +145_1-3 Q0 MARCO_58_1574227328-1 25 -0.030449 hybrid +145_1-3 Q0 MARCO_00_530877945-3 26 -0.032626 hybrid +145_1-3 Q0 MARCO_00_530877945-1 27 -0.035070 hybrid +145_1-3 Q0 MARCO_03_1633878862-4 28 -0.036857 hybrid +145_1-3 Q0 MARCO_00_1342582786-3 29 -0.040481 hybrid +145_1-3 Q0 MARCO_02_591754390-2 30 -0.051279 hybrid +145_1-3 Q0 MARCO_15_132327400-3 31 -0.051984 hybrid +145_1-3 Q0 MARCO_13_1702160838-1 32 -0.055718 hybrid +145_1-3 Q0 MARCO_09_504890329-2 33 -0.056386 hybrid +145_1-3 Q0 MARCO_15_133803271-2 34 -0.057615 hybrid +145_1-3 Q0 MARCO_26_1594444537-2 35 -0.066127 hybrid +145_1-3 Q0 MARCO_25_1277790022-20 36 -0.067063 hybrid +145_1-3 Q0 MARCO_27_1322243361-4 37 -0.067866 hybrid +145_1-3 Q0 MARCO_27_1301405256-1 38 -0.072024 hybrid +145_1-3 Q0 MARCO_26_1586966035-2 39 -0.073666 hybrid +145_1-3 Q0 MARCO_26_1911372872-4 40 -0.074639 hybrid +145_1-3 Q0 MARCO_44_35321293-1 41 -0.075539 hybrid +145_1-3 Q0 MARCO_45_1331683068-3 42 -0.079138 hybrid +145_1-3 Q0 MARCO_27_1354721193-1 43 -0.079551 hybrid +145_1-3 Q0 MARCO_58_1510071633-3 44 -0.085960 hybrid +145_1-3 Q0 MARCO_01_881692451-1 45 -0.091444 hybrid +145_1-3 Q0 MARCO_36_685450476-3 46 -0.091809 hybrid +145_1-3 Q0 MARCO_36_1651942660-4 47 -0.092757 hybrid +145_1-3 Q0 MARCO_19_2055102818-15 48 -0.094022 hybrid +145_1-3 Q0 MARCO_35_255953235-6 49 -0.094861 hybrid +145_1-3 Q0 MARCO_33_1621373075-1 50 -0.096223 hybrid +145_1-3 Q0 MARCO_25_591005995-1 51 -0.100528 hybrid +145_1-3 Q0 MARCO_09_408870814-1 52 -0.101561 hybrid +145_1-3 Q0 MARCO_33_865959304-2 53 -0.101829 hybrid +145_1-3 Q0 MARCO_33_391843786-4 54 -0.104990 hybrid +145_1-3 Q0 MARCO_15_132547451-8 55 -0.107739 hybrid +145_1-3 Q0 MARCO_04_855681999-2 56 -0.111435 hybrid +145_1-3 Q0 MARCO_06_111663488-5 57 -0.118610 hybrid +145_1-3 Q0 MARCO_06_772258944-3 58 -0.123024 hybrid +145_1-3 Q0 MARCO_21_1038592258-3 59 -0.128824 hybrid +145_1-3 Q0 MARCO_27_1567992001-3 60 -0.130454 hybrid +145_1-3 Q0 MARCO_11_249673495-1 61 -0.130539 hybrid +145_1-3 Q0 MARCO_27_1384560881-4 62 -0.134698 hybrid +145_1-3 Q0 MARCO_45_5758374-2 63 -0.135269 hybrid +145_1-3 Q0 KILT_1900543-14 64 -0.143088 hybrid +145_1-3 Q0 MARCO_49_1532014907-1 65 -0.147101 hybrid +145_1-3 Q0 MARCO_26_1917936880-4 66 -0.148670 hybrid +145_1-3 Q0 MARCO_15_1830192483-2 67 -0.151953 hybrid +145_1-3 Q0 MARCO_05_347910875-7 68 -0.152220 hybrid +145_1-3 Q0 MARCO_27_455491924-1 69 -0.152707 hybrid +145_1-3 Q0 MARCO_55_339238680-4 70 -0.153619 hybrid +145_1-3 Q0 MARCO_15_133803271-3 71 -0.154567 hybrid +145_1-3 Q0 MARCO_38_1351614866-1 72 -0.159261 hybrid +145_1-3 Q0 MARCO_12_218500984-1 73 -0.160830 hybrid +145_1-3 Q0 MARCO_34_51783652-5 74 -0.161146 hybrid +145_1-3 Q0 KILT_60319668-3 75 -0.162593 hybrid +145_1-3 Q0 MARCO_15_133842840-7 76 -0.163067 hybrid +145_1-3 Q0 MARCO_51_1656120076-4 77 -0.168393 hybrid +145_1-3 Q0 MARCO_17_541106127-15 78 -0.168673 hybrid +145_1-3 Q0 MARCO_22_1050479581-11 79 -0.170473 hybrid +145_1-3 Q0 MARCO_01_556632483-5 80 -0.173257 hybrid +145_1-3 Q0 MARCO_52_284738563-12 81 -0.174023 hybrid +145_1-3 Q0 MARCO_29_638852845-1 82 -0.176626 hybrid +145_1-3 Q0 MARCO_25_595279481-9 83 -0.178109 hybrid +145_1-3 Q0 MARCO_29_1511526341-2 84 -0.178462 hybrid +145_1-3 Q0 KILT_35895879-13 85 -0.179666 hybrid +145_1-3 Q0 MARCO_42_158537531-3 86 -0.180383 hybrid +145_1-3 Q0 MARCO_11_1217233819-1 87 -0.180991 hybrid +145_1-3 Q0 MARCO_28_710145674-5 88 -0.189029 hybrid +145_1-3 Q0 MARCO_24_722482029-13 89 -0.191716 hybrid +145_1-3 Q0 KILT_87410-4 90 -0.192616 hybrid +145_1-3 Q0 MARCO_02_693671181-13 91 -0.196301 hybrid +145_1-3 Q0 MARCO_11_1245999089-4 92 -0.196301 hybrid +145_1-3 Q0 MARCO_23_130923933-4 93 -0.196301 hybrid +145_1-3 Q0 MARCO_58_1473744735-4 94 -0.197116 hybrid +145_1-3 Q0 MARCO_33_1621373075-4 95 -0.197870 hybrid +145_1-3 Q0 MARCO_21_360645354-6 96 -0.200095 hybrid +145_1-3 Q0 MARCO_36_1651942660-1 97 -0.200788 hybrid +145_1-3 Q0 MARCO_13_759418170-1 98 -0.201676 hybrid +145_1-3 Q0 MARCO_07_885852465-2 99 -0.202661 hybrid +145_1-3 Q0 MARCO_15_132382047-6 100 -0.202661 hybrid +145_1-5 Q0 MARCO_06_299057920-5 1 0.500000 hybrid +145_1-5 Q0 MARCO_54_737799151-5 2 0.479350 hybrid +145_1-5 Q0 MARCO_26_120251417-33 3 0.412632 hybrid +145_1-5 Q0 MARCO_35_997867028-12 4 0.326386 hybrid +145_1-5 Q0 MARCO_12_1144579640-7 5 0.261385 hybrid +145_1-5 Q0 MARCO_40_133976380-3 6 0.237826 hybrid +145_1-5 Q0 MARCO_50_1877139932-28 7 0.237755 hybrid +145_1-5 Q0 MARCO_31_880237522-3 8 0.218017 hybrid +145_1-5 Q0 MARCO_11_972970472-6 9 0.212688 hybrid +145_1-5 Q0 MARCO_22_477635610-4 10 0.211846 hybrid +145_1-5 Q0 MARCO_20_1570841468-5 11 0.178891 hybrid +145_1-5 Q0 MARCO_47_684172890-6 12 0.167952 hybrid +145_1-5 Q0 MARCO_50_1734482458-36 13 0.164341 hybrid +145_1-5 Q0 MARCO_09_580955532-2 14 0.148214 hybrid +145_1-5 Q0 MARCO_50_1692909129-29 15 0.139764 hybrid +145_1-5 Q0 MARCO_39_541832086-2 16 0.132577 hybrid +145_1-5 Q0 MARCO_06_300561274-35 17 0.126337 hybrid +145_1-5 Q0 MARCO_52_411816003-2 18 0.111822 hybrid +145_1-5 Q0 MARCO_26_761167713-2 19 0.099656 hybrid +145_1-5 Q0 MARCO_14_219113838-2 20 0.092574 hybrid +145_1-5 Q0 MARCO_19_1537537845-12 21 0.091277 hybrid +145_1-5 Q0 MARCO_25_1409483974-8 22 0.080444 hybrid +145_1-5 Q0 MARCO_06_299071332-1 23 0.078691 hybrid +145_1-5 Q0 MARCO_03_558081135-207 24 0.077674 hybrid +145_1-5 Q0 MARCO_24_1499497256-88 25 0.077078 hybrid +145_1-5 Q0 MARCO_36_8609922-2 26 0.076973 hybrid +145_1-5 Q0 MARCO_59_1359951-8 27 0.068033 hybrid +145_1-5 Q0 MARCO_15_132861171-1 28 0.067191 hybrid +145_1-5 Q0 MARCO_40_695460785-7 29 0.057445 hybrid +145_1-5 Q0 MARCO_42_1653074068-10 30 0.056463 hybrid +145_1-5 Q0 MARCO_06_565551293-3 31 0.036970 hybrid +145_1-5 Q0 MARCO_03_1617599722-3 32 0.035007 hybrid +145_1-5 Q0 MARCO_06_299579149-337 33 0.033885 hybrid +145_1-5 Q0 MARCO_35_461758494-1 34 0.030449 hybrid +145_1-5 Q0 MARCO_40_1201266942-3 35 0.025366 hybrid +145_1-5 Q0 MARCO_15_1658224391-4 36 0.023192 hybrid +145_1-5 Q0 MARCO_59_947170550-3 37 0.020527 hybrid +145_1-5 Q0 MARCO_24_1497013184-7 38 0.020177 hybrid +145_1-5 Q0 MARCO_59_1809164-9 39 0.014357 hybrid +145_1-5 Q0 MARCO_25_1075541031-22 40 0.009063 hybrid +145_1-5 Q0 MARCO_03_558081135-203 41 0.000298 hybrid +145_1-5 Q0 MARCO_41_1313536082-13 42 -0.002191 hybrid +145_1-5 Q0 MARCO_05_368252908-56 43 -0.002717 hybrid +145_1-5 Q0 MARCO_44_1119487096-1 44 -0.005872 hybrid +145_1-5 Q0 MARCO_11_776998572-17 45 -0.019335 hybrid +145_1-5 Q0 MARCO_23_267463421-11 46 -0.019686 hybrid +145_1-5 Q0 MARCO_08_1027109798-213 47 -0.020843 hybrid +145_1-5 Q0 MARCO_29_998672874-4 48 -0.022035 hybrid +145_1-5 Q0 MARCO_21_1270016770-15 49 -0.022736 hybrid +145_1-5 Q0 MARCO_52_37452372-14 50 -0.025927 hybrid +145_1-5 Q0 MARCO_41_1520129197-10 51 -0.027224 hybrid +145_1-5 Q0 MARCO_21_1331072677-1 52 -0.028381 hybrid +145_1-5 Q0 MARCO_03_558081135-202 53 -0.028661 hybrid +145_1-5 Q0 MARCO_24_1499084685-5 54 -0.034025 hybrid +145_1-5 Q0 MARCO_21_1612018300-1 55 -0.036900 hybrid +145_1-5 Q0 MARCO_28_1130968217-3 56 -0.037356 hybrid +145_1-5 Q0 MARCO_50_2394049069-1 57 -0.037601 hybrid +145_1-5 Q0 MARCO_13_1019364838-6 58 -0.038197 hybrid +145_1-5 Q0 MARCO_28_6513402-9 59 -0.040021 hybrid +145_1-5 Q0 MARCO_47_1523201212-10 60 -0.042545 hybrid +145_1-5 Q0 MARCO_06_757645122-2 61 -0.043526 hybrid +145_1-5 Q0 MARCO_06_297372017-206 62 -0.047698 hybrid +145_1-5 Q0 MARCO_06_300561274-44 63 -0.050188 hybrid +145_1-5 Q0 MARCO_58_1575864882-6 64 -0.054395 hybrid +145_1-5 Q0 MARCO_23_64227602-11 65 -0.058777 hybrid +145_1-5 Q0 MARCO_36_1321640649-8 66 -0.058917 hybrid +145_1-5 Q0 MARCO_00_910867660-8 67 -0.060109 hybrid +145_1-5 Q0 MARCO_25_1307298729-8 68 -0.063615 hybrid +145_1-5 Q0 MARCO_25_1298434775-2 69 -0.064913 hybrid +145_1-5 Q0 MARCO_24_1499354251-14 70 -0.068594 hybrid +145_1-5 Q0 MARCO_00_1609908170-3 71 -0.069751 hybrid +145_1-5 Q0 MARCO_50_1639902850-17 72 -0.069821 hybrid +145_1-5 Q0 MARCO_20_1691541435-2 73 -0.070347 hybrid +145_1-5 Q0 MARCO_44_1116744266-3 74 -0.072906 hybrid +145_1-5 Q0 MARCO_41_1234888635-15 75 -0.082337 hybrid +145_1-5 Q0 MARCO_50_113510653-3 76 -0.082512 hybrid +145_1-5 Q0 MARCO_11_209492617-27 77 -0.082898 hybrid +145_1-5 Q0 MARCO_50_377794454-8 78 -0.084230 hybrid +145_1-5 Q0 MARCO_02_345141423-1 79 -0.087140 hybrid +145_1-5 Q0 MARCO_50_805694418-28 80 -0.087807 hybrid +145_1-5 Q0 MARCO_50_2443472417-33 81 -0.091312 hybrid +145_1-5 Q0 MARCO_11_496058579-6 82 -0.094783 hybrid +145_1-5 Q0 MARCO_26_36079771-19 83 -0.094853 hybrid +145_1-5 Q0 MARCO_50_1180140614-5 84 -0.096256 hybrid +145_1-5 Q0 MARCO_41_1548217530-16 85 -0.103864 hybrid +145_1-5 Q0 MARCO_19_1925949521-3 86 -0.105476 hybrid +145_1-5 Q0 MARCO_43_1207250519-15 87 -0.106248 hybrid +145_1-5 Q0 MARCO_55_157167546-7 88 -0.109929 hybrid +145_1-5 Q0 MARCO_33_102319244-7 89 -0.112558 hybrid +145_1-5 Q0 MARCO_01_1104781023-5 90 -0.113680 hybrid +145_1-5 Q0 MARCO_26_338660784-12 91 -0.114487 hybrid +145_1-5 Q0 MARCO_49_1768411218-4 92 -0.116380 hybrid +145_1-5 Q0 MARCO_05_551144376-8 93 -0.117817 hybrid +145_1-5 Q0 MARCO_59_614103960-2 94 -0.118764 hybrid +145_1-5 Q0 MARCO_06_299579149-395 95 -0.120061 hybrid +145_1-5 Q0 MARCO_13_261191053-2 96 -0.121568 hybrid +145_1-5 Q0 MARCO_50_1569387229-52 97 -0.122726 hybrid +145_1-5 Q0 MARCO_38_252467233-1 98 -0.124303 hybrid +145_1-5 Q0 MARCO_51_1186140417-3 99 -0.125636 hybrid +145_1-5 Q0 MARCO_31_10356006-243 100 -0.126792 hybrid +145_1-7 Q0 MARCO_24_31979062-5 1 0.500000 hybrid +145_1-7 Q0 MARCO_05_524370505-2 2 0.340142 hybrid +145_1-7 Q0 MARCO_00_1217640893-1 3 0.206240 hybrid +145_1-7 Q0 MARCO_52_657758176-3 4 0.195561 hybrid +145_1-7 Q0 MARCO_01_881694147-1 5 0.173649 hybrid +145_1-7 Q0 MARCO_02_694352459-1 6 0.116430 hybrid +145_1-7 Q0 MARCO_20_4843211-9 7 0.113381 hybrid +145_1-7 Q0 MARCO_04_937666623-1 8 0.071438 hybrid +145_1-7 Q0 MARCO_05_524370505-4 9 0.047725 hybrid +145_1-7 Q0 KILT_25279689-7 10 0.033728 hybrid +145_1-7 Q0 MARCO_57_115093826-7 11 0.031422 hybrid +145_1-7 Q0 MARCO_04_110329995-3 12 0.012069 hybrid +145_1-7 Q0 MARCO_12_1781831931-8 13 0.003318 hybrid +145_1-7 Q0 MARCO_25_962209202-7 14 0.003317 hybrid +145_1-7 Q0 MARCO_40_716227814-6 15 -0.003507 hybrid +145_1-7 Q0 MARCO_51_1329800857-7 16 -0.005814 hybrid +145_1-7 Q0 MARCO_59_603880583-3 17 -0.013902 hybrid +145_1-7 Q0 MARCO_45_1354436933-12 18 -0.020632 hybrid +145_1-7 Q0 MARCO_08_339400141-2 19 -0.024155 hybrid +145_1-7 Q0 MARCO_51_2007527708-13 20 -0.024439 hybrid +145_1-7 Q0 MARCO_01_1895804369-2 21 -0.025893 hybrid +145_1-7 Q0 MARCO_57_1511704721-5 22 -0.033460 hybrid +145_1-7 Q0 MARCO_26_1639714077-5 23 -0.043049 hybrid +145_1-7 Q0 MARCO_46_288684951-2 24 -0.043507 hybrid +145_1-7 Q0 MARCO_00_318125183-7 25 -0.049842 hybrid +145_1-7 Q0 MARCO_32_389113202-4 26 -0.052512 hybrid +145_1-7 Q0 MARCO_06_467815885-6 27 -0.055577 hybrid +145_1-7 Q0 MARCO_50_2763480501-2 28 -0.060743 hybrid +145_1-7 Q0 MARCO_55_1324688819-4 29 -0.063428 hybrid +145_1-7 Q0 MARCO_31_1132335014-12 30 -0.066145 hybrid +145_1-7 Q0 MARCO_50_618659817-5 31 -0.067251 hybrid +145_1-7 Q0 MARCO_14_1279284393-8 32 -0.067362 hybrid +145_1-7 Q0 KILT_43143-28 33 -0.069953 hybrid +145_1-7 Q0 MARCO_44_1129125636-1 34 -0.070664 hybrid +145_1-7 Q0 MARCO_15_1748698838-7 35 -0.078025 hybrid +145_1-7 Q0 MARCO_27_458832253-7 36 -0.082306 hybrid +145_1-7 Q0 MARCO_27_41694783-6 37 -0.086477 hybrid +145_1-7 Q0 MARCO_04_1455707183-10 38 -0.087931 hybrid +145_1-7 Q0 MARCO_04_1455727823-9 39 -0.088120 hybrid +145_1-7 Q0 MARCO_26_1917936880-4 40 -0.088720 hybrid +145_1-7 Q0 MARCO_25_595279481-13 41 -0.089305 hybrid +145_1-7 Q0 MARCO_01_619542446-1 42 -0.089605 hybrid +145_1-7 Q0 MARCO_17_475482737-30 43 -0.091611 hybrid +145_1-7 Q0 MARCO_15_133450036-5 44 -0.102859 hybrid +145_1-7 Q0 MARCO_03_1739464008-1 45 -0.104487 hybrid +145_1-7 Q0 MARCO_43_543759418-3 46 -0.106098 hybrid +145_1-7 Q0 MARCO_20_1112325414-3 47 -0.110442 hybrid +145_1-7 Q0 MARCO_50_1519091796-2 48 -0.113491 hybrid +145_1-7 Q0 MARCO_04_664141058-3 49 -0.118878 hybrid +145_1-7 Q0 MARCO_14_1348797499-7 50 -0.120442 hybrid +145_1-7 Q0 MARCO_14_1369004927-22 51 -0.120443 hybrid +145_1-7 Q0 MARCO_55_478370109-2 52 -0.121643 hybrid +145_1-7 Q0 MARCO_27_1380687171-5 53 -0.121769 hybrid +145_1-7 Q0 MARCO_26_1727334591-4 54 -0.124376 hybrid +145_1-7 Q0 MARCO_47_1574944912-3 55 -0.127551 hybrid +145_1-7 Q0 MARCO_08_1597096379-3 56 -0.129731 hybrid +145_1-7 Q0 MARCO_26_74668745-5 57 -0.131359 hybrid +145_1-7 Q0 MARCO_25_961507016-7 58 -0.132164 hybrid +145_1-7 Q0 MARCO_11_1086504249-2 59 -0.132401 hybrid +145_1-7 Q0 MARCO_58_1006129946-1 60 -0.133223 hybrid +145_1-7 Q0 MARCO_03_928114-6 61 -0.134044 hybrid +145_1-7 Q0 MARCO_15_535085063-4 62 -0.134408 hybrid +145_1-7 Q0 MARCO_26_1680668938-1 63 -0.134945 hybrid +145_1-7 Q0 MARCO_02_1273723386-3 64 -0.135735 hybrid +145_1-7 Q0 MARCO_05_524381886-2 65 -0.140900 hybrid +145_1-7 Q0 MARCO_47_757824924-3 66 -0.140916 hybrid +145_1-7 Q0 MARCO_42_1007832740-2 67 -0.144502 hybrid +145_1-7 Q0 MARCO_15_133450036-3 68 -0.144834 hybrid +145_1-7 Q0 MARCO_26_1594444537-4 69 -0.145529 hybrid +145_1-7 Q0 MARCO_50_2032621762-5 70 -0.146446 hybrid +145_1-7 Q0 MARCO_08_181606868-2 71 -0.148547 hybrid +145_1-7 Q0 MARCO_25_595279481-15 72 -0.151485 hybrid +145_1-7 Q0 MARCO_02_873546189-7 73 -0.151532 hybrid +145_1-7 Q0 MARCO_36_1694249057-3 74 -0.152812 hybrid +145_1-7 Q0 MARCO_08_1226249486-2 75 -0.154092 hybrid +145_1-7 Q0 MARCO_27_458777191-10 76 -0.154803 hybrid +145_1-7 Q0 MARCO_14_1269887941-7 77 -0.155213 hybrid +145_1-7 Q0 MARCO_01_1899625698-4 78 -0.155608 hybrid +145_1-7 Q0 MARCO_51_157706791-4 79 -0.156303 hybrid +145_1-7 Q0 MARCO_36_1657334291-4 80 -0.158515 hybrid +145_1-7 Q0 MARCO_20_1356347702-3 81 -0.161517 hybrid +145_1-7 Q0 MARCO_26_1563679006-6 82 -0.165956 hybrid +145_1-7 Q0 KILT_55617041-4 83 -0.170442 hybrid +145_1-7 Q0 MARCO_03_1784100468-3 84 -0.173760 hybrid +145_1-7 Q0 MARCO_11_898833862-16 85 -0.174218 hybrid +145_1-7 Q0 MARCO_55_1326559565-1 86 -0.175024 hybrid +145_1-7 Q0 MARCO_00_135837416-7 87 -0.176066 hybrid +145_1-7 Q0 MARCO_02_873546189-2 88 -0.177030 hybrid +145_1-7 Q0 MARCO_58_1142343649-2 89 -0.177267 hybrid +145_1-7 Q0 MARCO_08_1226249486-4 90 -0.177457 hybrid +145_1-7 Q0 MARCO_03_1455491584-8 91 -0.181469 hybrid +145_1-7 Q0 MARCO_24_31979062-6 92 -0.181848 hybrid +145_1-7 Q0 MARCO_48_1216050186-10 93 -0.184566 hybrid +145_1-7 Q0 MARCO_27_1578020982-4 94 -0.185134 hybrid +145_1-7 Q0 MARCO_04_116333727-8 95 -0.188104 hybrid +145_1-7 Q0 MARCO_00_1694706276-2 96 -0.189242 hybrid +145_1-7 Q0 MARCO_56_1220282953-9 97 -0.191517 hybrid +145_1-7 Q0 MARCO_27_1379471908-3 98 -0.192464 hybrid +145_1-7 Q0 MARCO_17_4766960555-5 99 -0.194866 hybrid +145_1-7 Q0 KILT_39985740-1 100 -0.195166 hybrid +145_2-1 Q0 MARCO_15_133803271-2 1 0.500000 hybrid +145_2-1 Q0 MARCO_00_1103730034-3 2 0.393844 hybrid +145_2-1 Q0 MARCO_26_1917936880-4 3 0.344972 hybrid +145_2-1 Q0 MARCO_58_1574227328-1 4 0.326299 hybrid +145_2-1 Q0 MARCO_16_1169037935-4 5 0.307342 hybrid +145_2-1 Q0 MARCO_36_685450476-3 6 0.277906 hybrid +145_2-1 Q0 KILT_27687935-13 7 0.258380 hybrid +145_2-1 Q0 MARCO_12_1781831931-9 8 0.254904 hybrid +145_2-1 Q0 MARCO_14_1369004927-23 9 0.254904 hybrid +145_2-1 Q0 MARCO_14_1348797499-8 10 0.254904 hybrid +145_2-1 Q0 MARCO_27_1160161170-1 11 0.235120 hybrid +145_2-1 Q0 MARCO_25_981381376-10 12 0.201949 hybrid +145_2-1 Q0 MARCO_55_339238680-2 13 0.194622 hybrid +145_2-1 Q0 MARCO_14_1279284393-7 14 0.189324 hybrid +145_2-1 Q0 MARCO_07_673645771-7 15 0.188949 hybrid +145_2-1 Q0 MARCO_57_648247851-2 16 0.186907 hybrid +145_2-1 Q0 MARCO_15_132390467-4 17 0.185848 hybrid +145_2-1 Q0 MARCO_17_698547504-17 18 0.184336 hybrid +145_2-1 Q0 MARCO_17_610564815-13 19 0.164539 hybrid +145_2-1 Q0 MARCO_58_1506018316-3 20 0.158931 hybrid +145_2-1 Q0 MARCO_36_1680067743-2 21 0.119078 hybrid +145_2-1 Q0 MARCO_26_1586966035-3 22 0.112385 hybrid +145_2-1 Q0 MARCO_14_1269887941-9 23 0.103455 hybrid +145_2-1 Q0 MARCO_48_1220807804-3 24 0.101840 hybrid +145_2-1 Q0 MARCO_25_961507016-8 25 0.088013 hybrid +145_2-1 Q0 MARCO_28_1827986570-4 26 0.061781 hybrid +145_2-1 Q0 MARCO_02_1558785340-2 27 0.059378 hybrid +145_2-1 Q0 MARCO_45_1316021768-7 28 0.059145 hybrid +145_2-1 Q0 MARCO_14_1333941473-10 29 0.052762 hybrid +145_2-1 Q0 MARCO_25_1003138952-10 30 0.052761 hybrid +145_2-1 Q0 MARCO_57_1511704721-5 31 0.050797 hybrid +145_2-1 Q0 MARCO_22_962673540-3 32 0.048523 hybrid +145_2-1 Q0 MARCO_16_3116620304-34 33 0.047683 hybrid +145_2-1 Q0 MARCO_39_688608734-12 34 0.039103 hybrid +145_2-1 Q0 MARCO_26_1586966035-2 35 0.036583 hybrid +145_2-1 Q0 MARCO_25_962209202-8 36 0.034800 hybrid +145_2-1 Q0 MARCO_05_296592401-3 37 0.028817 hybrid +145_2-1 Q0 MARCO_02_957086691-10 38 0.028338 hybrid +145_2-1 Q0 MARCO_59_786261717-3 39 0.017613 hybrid +145_2-1 Q0 MARCO_27_41694783-6 40 0.017161 hybrid +145_2-1 Q0 MARCO_40_1299348951-2 41 0.014886 hybrid +145_2-1 Q0 MARCO_20_666561210-3 42 0.013607 hybrid +145_2-1 Q0 MARCO_58_314126154-10 43 0.011721 hybrid +145_2-1 Q0 MARCO_08_1226249486-2 44 0.010738 hybrid +145_2-1 Q0 MARCO_05_296592401-4 45 0.010209 hybrid +145_2-1 Q0 MARCO_05_617136203-3 46 0.010170 hybrid +145_2-1 Q0 MARCO_58_882430285-2 47 0.008063 hybrid +145_2-1 Q0 MARCO_55_381146103-5 48 0.007211 hybrid +145_2-1 Q0 MARCO_35_255953235-6 49 0.006371 hybrid +145_2-1 Q0 MARCO_55_339238680-3 50 0.003773 hybrid +145_2-1 Q0 MARCO_48_1251179110-2 51 0.003437 hybrid +145_2-1 Q0 MARCO_17_541106127-15 52 0.002546 hybrid +145_2-1 Q0 MARCO_27_20423854-3 53 -0.006784 hybrid +145_2-1 Q0 MARCO_52_1387348062-1 54 -0.007637 hybrid +145_2-1 Q0 MARCO_14_491943698-3 55 -0.009485 hybrid +145_2-1 Q0 MARCO_15_132120884-6 56 -0.014628 hybrid +145_2-1 Q0 MARCO_08_1226249486-4 57 -0.014667 hybrid +145_2-1 Q0 MARCO_45_1335492968-4 58 -0.015998 hybrid +145_2-1 Q0 MARCO_50_1823096962-9 59 -0.016230 hybrid +145_2-1 Q0 MARCO_00_1027258728-3 60 -0.017497 hybrid +145_2-1 Q0 KILT_35895879-13 61 -0.017846 hybrid +145_2-1 Q0 MARCO_27_1373724630-5 62 -0.018414 hybrid +145_2-1 Q0 MARCO_25_594493657-1 63 -0.019293 hybrid +145_2-1 Q0 MARCO_25_962209202-9 64 -0.023803 hybrid +145_2-1 Q0 MARCO_31_745709695-28 65 -0.025069 hybrid +145_2-1 Q0 MARCO_52_1142099112-3 66 -0.027524 hybrid +145_2-1 Q0 MARCO_20_1109717538-15 67 -0.027990 hybrid +145_2-1 Q0 MARCO_28_908612979-1 68 -0.029178 hybrid +145_2-1 Q0 MARCO_38_256435579-9 69 -0.034929 hybrid +145_2-1 Q0 MARCO_55_489407448-3 70 -0.046507 hybrid +145_2-1 Q0 MARCO_15_132327400-3 71 -0.048497 hybrid +145_2-1 Q0 MARCO_27_1347644377-5 72 -0.048678 hybrid +145_2-1 Q0 MARCO_07_669693370-1 73 -0.050965 hybrid +145_2-1 Q0 MARCO_00_1103658282-3 74 -0.052038 hybrid +145_2-1 Q0 MARCO_57_1511897374-4 75 -0.053589 hybrid +145_2-1 Q0 MARCO_02_696788888-2 76 -0.054157 hybrid +145_2-1 Q0 MARCO_20_1109717538-3 77 -0.055475 hybrid +145_2-1 Q0 MARCO_15_766740202-7 78 -0.056574 hybrid +145_2-1 Q0 MARCO_14_1156621032-1 79 -0.057401 hybrid +145_2-1 Q0 MARCO_54_2053931769-1 80 -0.058008 hybrid +145_2-1 Q0 MARCO_15_133842840-7 81 -0.059675 hybrid +145_2-1 Q0 KILT_2801560-16 82 -0.061665 hybrid +145_2-1 Q0 MARCO_43_543759418-4 83 -0.061820 hybrid +145_2-1 Q0 MARCO_14_1633033248-2 84 -0.065890 hybrid +145_2-1 Q0 MARCO_29_1271661606-7 85 -0.066252 hybrid +145_2-1 Q0 MARCO_39_963610524-5 86 -0.069121 hybrid +145_2-1 Q0 MARCO_25_595279481-12 87 -0.072080 hybrid +145_2-1 Q0 MARCO_57_1473240068-2 88 -0.072998 hybrid +145_2-1 Q0 MARCO_17_698547504-18 89 -0.074122 hybrid +145_2-1 Q0 MARCO_36_1480785355-2 90 -0.076164 hybrid +145_2-1 Q0 MARCO_20_1109717538-16 91 -0.076668 hybrid +145_2-1 Q0 MARCO_36_1480232399-5 92 -0.078399 hybrid +145_2-1 Q0 MARCO_28_800368329-1 93 -0.079691 hybrid +145_2-1 Q0 MARCO_32_384683146-2 94 -0.080144 hybrid +145_2-1 Q0 MARCO_23_153889814-2 95 -0.083995 hybrid +145_2-1 Q0 MARCO_15_132382047-6 96 -0.089654 hybrid +145_2-1 Q0 MARCO_58_1574353977-6 97 -0.092226 hybrid +145_2-1 Q0 MARCO_00_873147001-2 98 -0.093156 hybrid +145_2-1 Q0 MARCO_27_1372919712-3 99 -0.093286 hybrid +145_2-1 Q0 MARCO_45_5758374-2 100 -0.095741 hybrid +145_2-3 Q0 MARCO_58_1574227328-1 1 0.500000 hybrid +145_2-3 Q0 MARCO_28_528320265-2 2 0.428588 hybrid +145_2-3 Q0 MARCO_58_314126154-18 3 0.332881 hybrid +145_2-3 Q0 MARCO_27_1567992001-3 4 0.276783 hybrid +145_2-3 Q0 MARCO_58_1574227328-3 5 0.258662 hybrid +145_2-3 Q0 MARCO_14_1633033248-5 6 0.214784 hybrid +145_2-3 Q0 MARCO_46_285239740-4 7 0.208387 hybrid +145_2-3 Q0 MARCO_46_285239740-3 8 0.196480 hybrid +145_2-3 Q0 MARCO_45_1331683068-1 9 0.176898 hybrid +145_2-3 Q0 MARCO_41_721362333-7 10 0.172302 hybrid +145_2-3 Q0 MARCO_09_408870814-3 11 0.168594 hybrid +145_2-3 Q0 MARCO_43_452642351-1 12 0.153685 hybrid +145_2-3 Q0 MARCO_29_1393317664-1 13 0.120865 hybrid +145_2-3 Q0 MARCO_00_774111622-5 14 0.115838 hybrid +145_2-3 Q0 MARCO_36_1694272853-51 15 0.105512 hybrid +145_2-3 Q0 MARCO_10_1502508384-3 16 0.095211 hybrid +145_2-3 Q0 MARCO_58_1480662252-1 17 0.089415 hybrid +145_2-3 Q0 MARCO_36_1680067743-2 18 0.070746 hybrid +145_2-3 Q0 MARCO_25_591684491-2 19 0.063004 hybrid +145_2-3 Q0 MARCO_46_285254536-2 20 0.062182 hybrid +145_2-3 Q0 MARCO_29_1393317664-5 21 0.051973 hybrid +145_2-3 Q0 MARCO_33_1621373075-1 22 0.043513 hybrid +145_2-3 Q0 MARCO_11_1217233819-1 23 0.036176 hybrid +145_2-3 Q0 MARCO_48_932996886-4 24 0.023721 hybrid +145_2-3 Q0 MARCO_33_1621373075-2 25 0.016880 hybrid +145_2-3 Q0 MARCO_02_693671181-12 26 0.015901 hybrid +145_2-3 Q0 MARCO_13_467770045-5 27 0.013173 hybrid +145_2-3 Q0 MARCO_36_1680067743-4 28 0.010940 hybrid +145_2-3 Q0 MARCO_36_1680067743-6 29 0.010940 hybrid +145_2-3 Q0 MARCO_15_131989551-2 30 0.010770 hybrid +145_2-3 Q0 MARCO_30_1004298367-7 31 0.009021 hybrid +145_2-3 Q0 MARCO_48_932996886-9 32 0.004426 hybrid +145_2-3 Q0 MARCO_36_981529605-2 33 0.002468 hybrid +145_2-3 Q0 MARCO_44_278686313-2 34 0.002428 hybrid +145_2-3 Q0 MARCO_02_693671181-13 35 0.002089 hybrid +145_2-3 Q0 MARCO_00_1091275867-4 36 0.000809 hybrid +145_2-3 Q0 MARCO_58_1574227328-2 37 -0.001084 hybrid +145_2-3 Q0 MARCO_48_932867009-4 38 -0.004974 hybrid +145_2-3 Q0 MARCO_36_685464632-8 39 -0.007650 hybrid +145_2-3 Q0 MARCO_08_559214280-4 40 -0.007964 hybrid +145_2-3 Q0 MARCO_46_285239740-5 41 -0.013225 hybrid +145_2-3 Q0 MARCO_05_1652659719-2 42 -0.013603 hybrid +145_2-3 Q0 MARCO_05_1663908927-1 43 -0.014374 hybrid +145_2-3 Q0 MARCO_20_1673107226-1 44 -0.015666 hybrid +145_2-3 Q0 MARCO_52_602648000-2 45 -0.018578 hybrid +145_2-3 Q0 MARCO_27_1160161170-2 46 -0.024713 hybrid +145_2-3 Q0 MARCO_09_504890329-13 47 -0.025497 hybrid +145_2-3 Q0 MARCO_08_743306876-4 48 -0.028630 hybrid +145_2-3 Q0 MARCO_05_1663908927-3 49 -0.033473 hybrid +145_2-3 Q0 MARCO_27_458412740-1 50 -0.036058 hybrid +145_2-3 Q0 MARCO_02_277599372-10 51 -0.039910 hybrid +145_2-3 Q0 MARCO_25_595279481-1 52 -0.040837 hybrid +145_2-3 Q0 MARCO_56_813834955-6 53 -0.041502 hybrid +145_2-3 Q0 MARCO_58_314126154-17 54 -0.041946 hybrid +145_2-3 Q0 MARCO_08_559214280-2 55 -0.041999 hybrid +145_2-3 Q0 MARCO_25_595279481-9 56 -0.043278 hybrid +145_2-3 Q0 MARCO_44_2013110312-5 57 -0.043722 hybrid +145_2-3 Q0 MARCO_01_881688628-1 58 -0.044192 hybrid +145_2-3 Q0 MARCO_51_146829149-1 59 -0.047730 hybrid +145_2-3 Q0 KILT_33930275-1 60 -0.047860 hybrid +145_2-3 Q0 MARCO_36_1680067743-3 61 -0.048304 hybrid +145_2-3 Q0 MARCO_32_389113202-1 62 -0.048343 hybrid +145_2-3 Q0 MARCO_30_1004298367-3 63 -0.050811 hybrid +145_2-3 Q0 MARCO_09_1221242571-14 64 -0.055236 hybrid +145_2-3 Q0 MARCO_20_1636524982-2 65 -0.060524 hybrid +145_2-3 Q0 MARCO_00_774111622-4 66 -0.062834 hybrid +145_2-3 Q0 MARCO_58_314126154-10 67 -0.066150 hybrid +145_2-3 Q0 MARCO_14_1156594478-1 68 -0.067652 hybrid +145_2-3 Q0 KILT_399912-4 69 -0.068226 hybrid +145_2-3 Q0 MARCO_16_3929298904-5 70 -0.068226 hybrid +145_2-3 Q0 MARCO_36_1694269896-1 71 -0.069192 hybrid +145_2-3 Q0 MARCO_15_1830192483-2 72 -0.069284 hybrid +145_2-3 Q0 MARCO_57_1473240068-2 73 -0.070106 hybrid +145_2-3 Q0 MARCO_40_717206995-14 74 -0.072469 hybrid +145_2-3 Q0 MARCO_15_133877816-1 75 -0.072574 hybrid +145_2-3 Q0 MARCO_33_1452111963-2 76 -0.073396 hybrid +145_2-3 Q0 MARCO_54_2053931769-1 77 -0.075446 hybrid +145_2-3 Q0 MARCO_15_131989551-1 78 -0.076529 hybrid +145_2-3 Q0 MARCO_13_1702160838-2 79 -0.077248 hybrid +145_2-3 Q0 MARCO_55_339644324-1 80 -0.077756 hybrid +145_2-3 Q0 MARCO_29_1393317664-2 81 -0.080120 hybrid +145_2-3 Q0 MARCO_56_1873351811-6 82 -0.082104 hybrid +145_2-3 Q0 MARCO_45_1331683068-6 83 -0.084493 hybrid +145_2-3 Q0 MARCO_16_3929298904-53 84 -0.084545 hybrid +145_2-3 Q0 MARCO_16_3929298904-55 85 -0.084545 hybrid +145_2-3 Q0 MARCO_15_132390467-4 86 -0.085054 hybrid +145_2-3 Q0 MARCO_05_294927663-1 87 -0.086334 hybrid +145_2-3 Q0 MARCO_36_683251813-1 88 -0.086334 hybrid +145_2-3 Q0 MARCO_15_131999270-1 89 -0.087561 hybrid +145_2-3 Q0 MARCO_25_595279481-8 90 -0.087861 hybrid +145_2-3 Q0 KILT_399912-17 91 -0.088697 hybrid +145_2-3 Q0 MARCO_41_2052436389-7 92 -0.090042 hybrid +145_2-3 Q0 MARCO_34_51783652-5 93 -0.090055 hybrid +145_2-3 Q0 MARCO_05_345692262-3 94 -0.090746 hybrid +145_2-3 Q0 MARCO_28_11489321-1 95 -0.091034 hybrid +145_2-3 Q0 MARCO_09_1221242571-13 96 -0.091243 hybrid +145_2-3 Q0 MARCO_26_1594444537-21 97 -0.091504 hybrid +145_2-3 Q0 MARCO_36_1680067743-5 98 -0.091608 hybrid +145_2-3 Q0 MARCO_00_530877945-1 99 -0.091726 hybrid +145_2-3 Q0 MARCO_05_347910875-9 100 -0.091791 hybrid +145_2-5 Q0 MARCO_28_528320265-2 1 0.500000 hybrid +145_2-5 Q0 MARCO_20_1668885308-6 2 0.475473 hybrid +145_2-5 Q0 MARCO_02_693671181-13 3 0.470458 hybrid +145_2-5 Q0 MARCO_27_1567992001-3 4 0.442679 hybrid +145_2-5 Q0 MARCO_16_1163477169-9 5 0.401871 hybrid +145_2-5 Q0 MARCO_41_721362333-6 6 0.371231 hybrid +145_2-5 Q0 MARCO_47_1573412885-12 7 0.364062 hybrid +145_2-5 Q0 MARCO_34_51783652-3 8 0.360778 hybrid +145_2-5 Q0 MARCO_36_1680067743-1 9 0.344666 hybrid +145_2-5 Q0 MARCO_29_1511557603-1 10 0.342755 hybrid +145_2-5 Q0 MARCO_36_1680067743-4 11 0.335142 hybrid +145_2-5 Q0 MARCO_36_1680067743-6 12 0.335142 hybrid +145_2-5 Q0 MARCO_15_131999270-1 13 0.335111 hybrid +145_2-5 Q0 MARCO_23_1830774907-7 14 0.322325 hybrid +145_2-5 Q0 MARCO_05_296592401-1 15 0.305262 hybrid +145_2-5 Q0 MARCO_18_2641518114-73 16 0.300712 hybrid +145_2-5 Q0 MARCO_17_700326814-19 17 0.278539 hybrid +145_2-5 Q0 MARCO_16_3929298904-4 18 0.276860 hybrid +145_2-5 Q0 MARCO_33_138676065-6 19 0.264190 hybrid +145_2-5 Q0 MARCO_54_2053931769-2 20 0.262913 hybrid +145_2-5 Q0 MARCO_05_347910875-7 21 0.248385 hybrid +145_2-5 Q0 MARCO_30_435276155-4 22 0.246685 hybrid +145_2-5 Q0 MARCO_50_1744021001-97 23 0.241532 hybrid +145_2-5 Q0 MARCO_09_1221242571-14 24 0.236549 hybrid +145_2-5 Q0 MARCO_34_51783652-5 25 0.230625 hybrid +145_2-5 Q0 MARCO_25_962209202-8 26 0.227004 hybrid +145_2-5 Q0 MARCO_05_345692262-2 27 0.226951 hybrid +145_2-5 Q0 MARCO_16_2629632909-4 28 0.217428 hybrid +145_2-5 Q0 MARCO_36_685464632-8 29 0.211378 hybrid +145_2-5 Q0 MARCO_30_435276155-3 30 0.207545 hybrid +145_2-5 Q0 MARCO_12_1781831931-9 31 0.207355 hybrid +145_2-5 Q0 KILT_399912-1 32 0.206457 hybrid +145_2-5 Q0 MARCO_46_285239740-1 33 0.200165 hybrid +145_2-5 Q0 MARCO_08_743306876-4 34 0.198771 hybrid +145_2-5 Q0 MARCO_05_337896579-2 35 0.193344 hybrid +145_2-5 Q0 MARCO_55_339644324-1 36 0.191074 hybrid +145_2-5 Q0 MARCO_17_1649482821-13 37 0.184612 hybrid +145_2-5 Q0 KILT_70983-10 38 0.177897 hybrid +145_2-5 Q0 KILT_35895879-20 39 0.174899 hybrid +145_2-5 Q0 MARCO_17_541106127-25 40 0.174898 hybrid +145_2-5 Q0 MARCO_58_1506018316-3 41 0.174075 hybrid +145_2-5 Q0 MARCO_27_13394940-26 42 0.171277 hybrid +145_2-5 Q0 MARCO_20_1312884650-5 43 0.170770 hybrid +145_2-5 Q0 MARCO_00_668324844-4 44 0.169577 hybrid +145_2-5 Q0 MARCO_46_285239740-3 45 0.165037 hybrid +145_2-5 Q0 MARCO_08_559214280-4 46 0.161690 hybrid +145_2-5 Q0 MARCO_41_2052436389-6 47 0.161078 hybrid +145_2-5 Q0 KILT_9186994-3 48 0.158776 hybrid +145_2-5 Q0 MARCO_18_3507972172-4 49 0.153993 hybrid +145_2-5 Q0 KILT_1900543-14 50 0.150773 hybrid +145_2-5 Q0 KILT_399912-14 51 0.149221 hybrid +145_2-5 Q0 MARCO_02_277599372-5 52 0.147848 hybrid +145_2-5 Q0 MARCO_58_314126154-10 53 0.143868 hybrid +145_2-5 Q0 MARCO_00_774111622-5 54 0.142474 hybrid +145_2-5 Q0 MARCO_03_1218066139-2 55 0.139222 hybrid +145_2-5 Q0 MARCO_56_402418044-9 56 0.133911 hybrid +145_2-5 Q0 MARCO_58_1506018316-2 57 0.133088 hybrid +145_2-5 Q0 MARCO_14_1348797499-8 58 0.132612 hybrid +145_2-5 Q0 MARCO_14_1369004927-23 59 0.132612 hybrid +145_2-5 Q0 MARCO_29_1511631268-4 60 0.131377 hybrid +145_2-5 Q0 MARCO_15_133450036-2 61 0.129825 hybrid +145_2-5 Q0 MARCO_58_314126154-16 62 0.128188 hybrid +145_2-5 Q0 MARCO_44_1192649375-1 63 0.126837 hybrid +145_2-5 Q0 MARCO_58_1574227328-2 64 0.122540 hybrid +145_2-5 Q0 MARCO_36_1657334291-5 65 0.121685 hybrid +145_2-5 Q0 MARCO_45_1331683068-2 66 0.119890 hybrid +145_2-5 Q0 MARCO_00_1217729703-2 67 0.119351 hybrid +145_2-5 Q0 MARCO_54_2053960415-1 68 0.116564 hybrid +145_2-5 Q0 MARCO_02_277599372-1 69 0.115709 hybrid +145_2-5 Q0 MARCO_04_1026495472-3 70 0.114431 hybrid +145_2-5 Q0 MARCO_15_131999270-7 71 0.114104 hybrid +145_2-5 Q0 MARCO_10_1502508384-5 72 0.112742 hybrid +145_2-5 Q0 MARCO_22_962673540-3 73 0.110282 hybrid +145_2-5 Q0 MARCO_51_1656120076-1 74 0.106702 hybrid +145_2-5 Q0 MARCO_13_1702160838-2 75 0.102300 hybrid +145_2-5 Q0 MARCO_05_338959584-12 76 0.101539 hybrid +145_2-5 Q0 MARCO_39_963610524-4 77 0.095764 hybrid +145_2-5 Q0 MARCO_36_65882223-1 78 0.092596 hybrid +145_2-5 Q0 MARCO_27_455422788-2 79 0.091224 hybrid +145_2-5 Q0 MARCO_19_1796295079-5 80 0.090390 hybrid +145_2-5 Q0 MARCO_07_885852465-3 81 0.090390 hybrid +145_2-5 Q0 MARCO_02_957086691-9 82 0.088954 hybrid +145_2-5 Q0 MARCO_28_528320265-3 83 0.088637 hybrid +145_2-5 Q0 MARCO_48_1438883239-4 84 0.086620 hybrid +145_2-5 Q0 MARCO_33_1621373075-4 85 0.085871 hybrid +145_2-5 Q0 MARCO_16_3677244539-23 86 0.083168 hybrid +145_2-5 Q0 MARCO_55_159656957-3 87 0.082555 hybrid +145_2-5 Q0 MARCO_16_3929298904-17 88 0.081289 hybrid +145_2-5 Q0 MARCO_26_45074739-13 89 0.064775 hybrid +145_2-5 Q0 MARCO_00_1679486504-1 90 0.063899 hybrid +145_2-5 Q0 MARCO_54_1562289197-5 91 0.057564 hybrid +145_2-5 Q0 MARCO_16_3929298904-41 92 0.057342 hybrid +145_2-5 Q0 MARCO_09_234536342-17 93 0.055885 hybrid +145_2-5 Q0 MARCO_59_603880583-2 94 0.054175 hybrid +145_2-5 Q0 KILT_27687935-21 95 0.053763 hybrid +145_2-5 Q0 MARCO_05_549260636-1 96 0.053436 hybrid +145_2-5 Q0 MARCO_48_1188978655-4 97 0.051662 hybrid +145_2-5 Q0 MARCO_36_1478249508-2 98 0.050015 hybrid +145_2-5 Q0 MARCO_26_1594444537-21 99 0.049265 hybrid +145_2-5 Q0 MARCO_52_233783756-21 100 0.048642 hybrid +146_1-1 Q0 MARCO_12_1701775897-7 1 0.500000 hybrid +146_1-1 Q0 MARCO_33_294270713-2 2 0.274044 hybrid +146_1-1 Q0 MARCO_49_195021032-1 3 0.203767 hybrid +146_1-1 Q0 MARCO_20_1203659160-1 4 0.199310 hybrid +146_1-1 Q0 MARCO_40_769976188-9 5 0.199294 hybrid +146_1-1 Q0 MARCO_14_1671866225-4 6 0.179266 hybrid +146_1-1 Q0 MARCO_51_244719074-1 7 0.138993 hybrid +146_1-1 Q0 MARCO_03_442066020-5 8 0.126819 hybrid +146_1-1 Q0 MARCO_42_281072732-1 9 0.125851 hybrid +146_1-1 Q0 MARCO_38_1462592335-2 10 0.109465 hybrid +146_1-1 Q0 MARCO_20_1203659160-8 11 0.103163 hybrid +146_1-1 Q0 MARCO_21_866526698-1 12 0.070561 hybrid +146_1-1 Q0 MARCO_37_608176264-1 13 0.068640 hybrid +146_1-1 Q0 MARCO_40_769976188-1 14 0.068440 hybrid +146_1-1 Q0 MARCO_55_1325718304-8 15 0.055267 hybrid +146_1-1 Q0 MARCO_12_1749972286-18 16 0.049487 hybrid +146_1-1 Q0 MARCO_18_438706474-27 17 0.047335 hybrid +146_1-1 Q0 MARCO_37_608189296-1 18 0.030888 hybrid +146_1-1 Q0 MARCO_37_835523985-12 19 0.029951 hybrid +146_1-1 Q0 MARCO_54_230199498-2 20 0.018392 hybrid +146_1-1 Q0 MARCO_03_1125529773-1 21 0.003497 hybrid +146_1-1 Q0 MARCO_54_117226208-1 22 0.001868 hybrid +146_1-1 Q0 MARCO_24_1275788134-10 23 -0.001606 hybrid +146_1-1 Q0 MARCO_55_1325718304-13 24 -0.006387 hybrid +146_1-1 Q0 MARCO_03_442066020-1 25 -0.007125 hybrid +146_1-1 Q0 MARCO_20_973561150-3 26 -0.007248 hybrid +146_1-1 Q0 KILT_188773-23 27 -0.011767 hybrid +146_1-1 Q0 MARCO_03_442110904-3 28 -0.018576 hybrid +146_1-1 Q0 MARCO_37_609096777-6 29 -0.036729 hybrid +146_1-1 Q0 MARCO_37_608510878-6 30 -0.046152 hybrid +146_1-1 Q0 MARCO_37_608510878-8 31 -0.046152 hybrid +146_1-1 Q0 MARCO_54_1756642323-1 32 -0.046721 hybrid +146_1-1 Q0 MARCO_37_835512353-9 33 -0.051393 hybrid +146_1-1 Q0 MARCO_34_809598418-8 34 -0.051916 hybrid +146_1-1 Q0 MARCO_12_1747186728-18 35 -0.052608 hybrid +146_1-1 Q0 MARCO_09_489452976-8 36 -0.054114 hybrid +146_1-1 Q0 MARCO_02_1407541985-14 37 -0.058295 hybrid +146_1-1 Q0 MARCO_37_608189296-8 38 -0.065596 hybrid +146_1-1 Q0 MARCO_20_1203659160-2 39 -0.067764 hybrid +146_1-1 Q0 MARCO_12_1756562736-1 40 -0.075588 hybrid +146_1-1 Q0 MARCO_31_920596580-26 41 -0.075926 hybrid +146_1-1 Q0 MARCO_01_336137320-3 42 -0.076479 hybrid +146_1-1 Q0 MARCO_12_1702559790-1 43 -0.080429 hybrid +146_1-1 Q0 MARCO_55_941816802-11 44 -0.085210 hybrid +146_1-1 Q0 MARCO_12_1701715017-9 45 -0.087992 hybrid +146_1-1 Q0 MARCO_24_1275788134-1 46 -0.096339 hybrid +146_1-1 Q0 KILT_910509-3 47 -0.097430 hybrid +146_1-1 Q0 MARCO_22_1743962079-2 48 -0.102041 hybrid +146_1-1 Q0 MARCO_31_116000666-41 49 -0.104731 hybrid +146_1-1 Q0 MARCO_10_218838894-6 50 -0.105530 hybrid +146_1-1 Q0 MARCO_10_1123846059-10 51 -0.112571 hybrid +146_1-1 Q0 MARCO_56_1646324554-3 52 -0.114323 hybrid +146_1-1 Q0 MARCO_37_608206971-10 53 -0.115353 hybrid +146_1-1 Q0 MARCO_37_608176264-7 54 -0.116183 hybrid +146_1-1 Q0 MARCO_37_608206971-8 55 -0.116183 hybrid +146_1-1 Q0 MARCO_37_608218438-6 56 -0.116183 hybrid +146_1-1 Q0 MARCO_37_608234952-7 57 -0.116183 hybrid +146_1-1 Q0 MARCO_02_1407541985-34 58 -0.119918 hybrid +146_1-1 Q0 MARCO_37_610478525-4 59 -0.120763 hybrid +146_1-1 Q0 MARCO_51_244719074-14 60 -0.122008 hybrid +146_1-1 Q0 MARCO_37_835747822-1 61 -0.122346 hybrid +146_1-1 Q0 MARCO_32_526041354-2 62 -0.122577 hybrid +146_1-1 Q0 MARCO_12_1743660916-2 63 -0.123792 hybrid +146_1-1 Q0 MARCO_37_608189296-10 64 -0.124145 hybrid +146_1-1 Q0 MARCO_49_1339439061-2 65 -0.127896 hybrid +146_1-1 Q0 MARCO_42_281072732-3 66 -0.130078 hybrid +146_1-1 Q0 MARCO_54_233504405-1 67 -0.130278 hybrid +146_1-1 Q0 MARCO_30_1079167306-1 68 -0.133076 hybrid +146_1-1 Q0 MARCO_24_1275788134-8 69 -0.133783 hybrid +146_1-1 Q0 MARCO_29_1306897671-4 70 -0.136503 hybrid +146_1-1 Q0 MARCO_38_1677670259-8 71 -0.137841 hybrid +146_1-1 Q0 MARCO_37_608611258-1 72 -0.139993 hybrid +146_1-1 Q0 MARCO_31_617832895-6 73 -0.140500 hybrid +146_1-1 Q0 MARCO_34_812933705-2 74 -0.143543 hybrid +146_1-1 Q0 MARCO_34_810305765-9 75 -0.145588 hybrid +146_1-1 Q0 MARCO_51_244719074-3 76 -0.147217 hybrid +146_1-1 Q0 MARCO_39_1226135999-3 77 -0.150291 hybrid +146_1-1 Q0 MARCO_51_243380946-6 78 -0.150998 hybrid +146_1-1 Q0 MARCO_38_1627233129-7 79 -0.151152 hybrid +146_1-1 Q0 MARCO_37_1597961657-3 80 -0.152781 hybrid +146_1-1 Q0 MARCO_37_609905850-2 81 -0.154626 hybrid +146_1-1 Q0 MARCO_41_344780177-5 82 -0.156148 hybrid +146_1-1 Q0 MARCO_51_1178663022-4 83 -0.156962 hybrid +146_1-1 Q0 MARCO_12_1748924052-4 84 -0.157331 hybrid +146_1-1 Q0 MARCO_30_987608264-3 85 -0.157593 hybrid +146_1-1 Q0 MARCO_55_1325718304-15 86 -0.157839 hybrid +146_1-1 Q0 MARCO_10_408073512-7 87 -0.158607 hybrid +146_1-1 Q0 MARCO_37_608218438-8 88 -0.158853 hybrid +146_1-1 Q0 MARCO_41_819356691-2 89 -0.162573 hybrid +146_1-1 Q0 MARCO_37_835486393-2 90 -0.162742 hybrid +146_1-1 Q0 MARCO_54_234308923-2 91 -0.166431 hybrid +146_1-1 Q0 MARCO_15_1879999540-5 92 -0.167522 hybrid +146_1-1 Q0 MARCO_34_1420276884-1 93 -0.168475 hybrid +146_1-1 Q0 MARCO_30_389401783-10 94 -0.170182 hybrid +146_1-1 Q0 MARCO_24_1261382361-12 95 -0.172057 hybrid +146_1-1 Q0 MARCO_06_585184285-11 96 -0.173240 hybrid +146_1-1 Q0 MARCO_30_515884578-9 97 -0.173256 hybrid +146_1-1 Q0 MARCO_40_759718694-6 98 -0.174117 hybrid +146_1-1 Q0 MARCO_10_218838894-1 99 -0.174147 hybrid +146_1-1 Q0 MARCO_12_1701792557-1 100 -0.174824 hybrid +146_1-11 Q0 MARCO_49_448087206-1 1 0.500000 hybrid +146_1-11 Q0 MARCO_57_1415155159-1 2 0.459207 hybrid +146_1-11 Q0 MARCO_24_1053383617-1 3 0.394688 hybrid +146_1-11 Q0 MARCO_08_377508112-1 4 0.393011 hybrid +146_1-11 Q0 MARCO_49_448087206-7 5 0.313201 hybrid +146_1-11 Q0 MARCO_54_1665814459-1 6 0.216817 hybrid +146_1-11 Q0 MARCO_49_448087206-8 7 0.188060 hybrid +146_1-11 Q0 MARCO_40_714643604-1 8 0.161374 hybrid +146_1-11 Q0 MARCO_33_582041232-10 9 0.144159 hybrid +146_1-11 Q0 MARCO_30_168273889-5 10 0.140411 hybrid +146_1-11 Q0 MARCO_40_714773698-1 11 0.134294 hybrid +146_1-11 Q0 MARCO_11_65302890-20 12 0.114564 hybrid +146_1-11 Q0 MARCO_51_542383476-2 13 0.111111 hybrid +146_1-11 Q0 MARCO_50_2763897432-2 14 0.089210 hybrid +146_1-11 Q0 MARCO_41_1015316952-32 15 0.055619 hybrid +146_1-11 Q0 MARCO_40_852595781-1 16 0.050834 hybrid +146_1-11 Q0 MARCO_39_1435115757-2 17 0.046493 hybrid +146_1-11 Q0 MARCO_30_441369437-8 18 0.043928 hybrid +146_1-11 Q0 MARCO_59_68693787-7 19 0.043928 hybrid +146_1-11 Q0 MARCO_47_553487152-2 20 0.042843 hybrid +146_1-11 Q0 MARCO_31_1696233896-6 21 0.041462 hybrid +146_1-11 Q0 MARCO_33_582221119-13 22 0.041461 hybrid +146_1-11 Q0 MARCO_50_2561620043-12 23 0.036283 hybrid +146_1-11 Q0 MARCO_23_5530032-26 24 0.033915 hybrid +146_1-11 Q0 MARCO_50_1086615146-2 25 0.029969 hybrid +146_1-11 Q0 MARCO_11_813133201-1 26 0.029278 hybrid +146_1-11 Q0 MARCO_49_272150547-9 27 0.026911 hybrid +146_1-11 Q0 MARCO_12_738277058-11 28 0.023458 hybrid +146_1-11 Q0 MARCO_30_1964390254-5 29 0.015664 hybrid +146_1-11 Q0 MARCO_50_1211985963-14 30 0.015664 hybrid +146_1-11 Q0 MARCO_49_272150547-7 31 0.014135 hybrid +146_1-11 Q0 MARCO_20_1722547813-1 32 0.010534 hybrid +146_1-11 Q0 MARCO_07_1239415678-3 33 0.005059 hybrid +146_1-11 Q0 MARCO_30_1200569166-1 34 0.004813 hybrid +146_1-11 Q0 MARCO_55_1278846437-9 35 0.003776 hybrid +146_1-11 Q0 MARCO_50_1292487299-14 36 0.002790 hybrid +146_1-11 Q0 MARCO_49_448087206-2 37 0.002593 hybrid +146_1-11 Q0 MARCO_33_1168039306-16 38 0.001113 hybrid +146_1-11 Q0 MARCO_53_186623509-1 39 0.000768 hybrid +146_1-11 Q0 MARCO_56_813882352-11 40 -0.001452 hybrid +146_1-11 Q0 MARCO_11_803637603-5 41 -0.002439 hybrid +146_1-11 Q0 MARCO_21_1300060736-1 42 -0.005398 hybrid +146_1-11 Q0 MARCO_20_1642266084-2 43 -0.006681 hybrid +146_1-11 Q0 MARCO_30_666097535-2 44 -0.008950 hybrid +146_1-11 Q0 MARCO_36_67086845-1 45 -0.015855 hybrid +146_1-11 Q0 MARCO_52_750552453-1 46 -0.016250 hybrid +146_1-11 Q0 MARCO_11_880352210-1 47 -0.020689 hybrid +146_1-11 Q0 MARCO_20_461944464-7 48 -0.021232 hybrid +146_1-11 Q0 MARCO_28_503744139-1 49 -0.023451 hybrid +146_1-11 Q0 MARCO_33_582059404-16 50 -0.026658 hybrid +146_1-11 Q0 MARCO_12_1032345355-1 51 -0.027003 hybrid +146_1-11 Q0 MARCO_52_276302706-27 52 -0.029124 hybrid +146_1-11 Q0 MARCO_30_774035663-11 53 -0.032774 hybrid +146_1-11 Q0 MARCO_27_1771514910-2 54 -0.033218 hybrid +146_1-11 Q0 MARCO_32_1110695509-1 55 -0.033662 hybrid +146_1-11 Q0 MARCO_34_1218722569-1 56 -0.035635 hybrid +146_1-11 Q0 MARCO_38_356103994-3 57 -0.037904 hybrid +146_1-11 Q0 MARCO_30_515868258-1 58 -0.038891 hybrid +146_1-11 Q0 MARCO_33_582280975-17 59 -0.043823 hybrid +146_1-11 Q0 MARCO_25_785459505-1 60 -0.044267 hybrid +146_1-11 Q0 MARCO_03_1337025146-2 61 -0.046487 hybrid +146_1-11 Q0 MARCO_05_594570631-1 62 -0.048559 hybrid +146_1-11 Q0 MARCO_45_230050455-1 63 -0.051124 hybrid +146_1-11 Q0 MARCO_50_1211985963-13 64 -0.052011 hybrid +146_1-11 Q0 MARCO_20_1642451275-2 65 -0.053689 hybrid +146_1-11 Q0 MARCO_41_1428521408-18 66 -0.057585 hybrid +146_1-11 Q0 MARCO_44_1320326918-1 67 -0.058079 hybrid +146_1-11 Q0 MARCO_45_230050455-2 68 -0.058079 hybrid +146_1-11 Q0 MARCO_12_853948544-1 69 -0.061383 hybrid +146_1-11 Q0 MARCO_11_65302890-5 70 -0.064442 hybrid +146_1-11 Q0 MARCO_33_582089611-15 71 -0.064540 hybrid +146_1-11 Q0 MARCO_20_1722569406-1 72 -0.067549 hybrid +146_1-11 Q0 MARCO_41_1166124275-1 73 -0.068980 hybrid +146_1-11 Q0 MARCO_39_1341022345-4 74 -0.069078 hybrid +146_1-11 Q0 MARCO_24_1075999093-6 75 -0.074356 hybrid +146_1-11 Q0 MARCO_55_1221713840-1 76 -0.075737 hybrid +146_1-11 Q0 MARCO_26_560350434-1 77 -0.077217 hybrid +146_1-11 Q0 MARCO_24_821441467-8 78 -0.080177 hybrid +146_1-11 Q0 MARCO_30_336370341-3 79 -0.081213 hybrid +146_1-11 Q0 MARCO_30_1950000896-5 80 -0.085701 hybrid +146_1-11 Q0 MARCO_45_958952911-1 81 -0.089549 hybrid +146_1-11 Q0 MARCO_21_6518792-13 82 -0.089894 hybrid +146_1-11 Q0 MARCO_20_1642425164-3 83 -0.090782 hybrid +146_1-11 Q0 MARCO_40_1771202902-1 84 -0.090783 hybrid +146_1-11 Q0 MARCO_24_1053383617-2 85 -0.092706 hybrid +146_1-11 Q0 MARCO_49_1528405192-1 86 -0.093248 hybrid +146_1-11 Q0 MARCO_45_1487342405-4 87 -0.093446 hybrid +146_1-11 Q0 MARCO_25_785349657-1 88 -0.095715 hybrid +146_1-11 Q0 MARCO_55_1610741501-1 89 -0.098477 hybrid +146_1-11 Q0 MARCO_38_359258290-4 90 -0.101042 hybrid +146_1-11 Q0 MARCO_33_1211211184-2 91 -0.104347 hybrid +146_1-11 Q0 MARCO_12_1268107838-14 92 -0.104741 hybrid +146_1-11 Q0 MARCO_30_1987832975-5 93 -0.104742 hybrid +146_1-11 Q0 MARCO_24_1433046861-5 94 -0.107109 hybrid +146_1-11 Q0 MARCO_00_829826729-1 95 -0.108885 hybrid +146_1-11 Q0 MARCO_45_1589619392-1 96 -0.108885 hybrid +146_1-11 Q0 MARCO_49_1502705217-29 97 -0.110167 hybrid +146_1-11 Q0 MARCO_33_582221119-14 98 -0.111400 hybrid +146_1-11 Q0 MARCO_30_170232347-4 99 -0.112338 hybrid +146_1-11 Q0 MARCO_42_1824315400-5 100 -0.113669 hybrid +146_1-3 Q0 MARCO_03_1125529773-1 1 0.500000 hybrid +146_1-3 Q0 MARCO_12_1756585178-1 2 0.341947 hybrid +146_1-3 Q0 MARCO_54_225020737-2 3 0.323660 hybrid +146_1-3 Q0 MARCO_12_1743660916-4 4 0.317235 hybrid +146_1-3 Q0 MARCO_54_225041213-7 5 0.296711 hybrid +146_1-3 Q0 MARCO_54_229368095-2 6 0.275222 hybrid +146_1-3 Q0 MARCO_34_849058819-4 7 0.260991 hybrid +146_1-3 Q0 MARCO_37_609905850-2 8 0.251826 hybrid +146_1-3 Q0 MARCO_47_818541108-17 9 0.244984 hybrid +146_1-3 Q0 MARCO_34_811815260-2 10 0.219242 hybrid +146_1-3 Q0 MARCO_03_1125529773-2 11 0.211567 hybrid +146_1-3 Q0 MARCO_55_941816802-11 12 0.209769 hybrid +146_1-3 Q0 MARCO_51_711735410-1 13 0.207445 hybrid +146_1-3 Q0 MARCO_47_815326413-1 14 0.207138 hybrid +146_1-3 Q0 MARCO_41_346849634-3 15 0.196634 hybrid +146_1-3 Q0 MARCO_54_225020737-11 16 0.195363 hybrid +146_1-3 Q0 MARCO_55_1333165338-1 17 0.192600 hybrid +146_1-3 Q0 MARCO_12_1701940503-5 18 0.189442 hybrid +146_1-3 Q0 MARCO_29_132611724-3 19 0.185846 hybrid +146_1-3 Q0 MARCO_32_525653703-3 20 0.179180 hybrid +146_1-3 Q0 MARCO_29_1307402207-9 21 0.177865 hybrid +146_1-3 Q0 MARCO_55_1333165338-3 22 0.165169 hybrid +146_1-3 Q0 MARCO_04_844029332-6 23 0.164182 hybrid +146_1-3 Q0 MARCO_10_408073512-7 24 0.160038 hybrid +146_1-3 Q0 MARCO_51_711755387-1 25 0.154600 hybrid +146_1-3 Q0 MARCO_12_1756607742-8 26 0.151091 hybrid +146_1-3 Q0 MARCO_10_218838894-2 27 0.146815 hybrid +146_1-3 Q0 MARCO_51_246849357-2 28 0.137540 hybrid +146_1-3 Q0 MARCO_51_247095062-2 29 0.137540 hybrid +146_1-3 Q0 MARCO_51_247116646-2 30 0.137540 hybrid +146_1-3 Q0 MARCO_51_247204500-2 31 0.137539 hybrid +146_1-3 Q0 MARCO_51_247555214-2 32 0.137539 hybrid +146_1-3 Q0 MARCO_51_247762269-2 33 0.137539 hybrid +146_1-3 Q0 MARCO_51_247976103-2 34 0.137539 hybrid +146_1-3 Q0 MARCO_51_248064557-2 35 0.137539 hybrid +146_1-3 Q0 MARCO_51_248193301-2 36 0.137538 hybrid +146_1-3 Q0 MARCO_51_248231987-2 37 0.137538 hybrid +146_1-3 Q0 MARCO_51_248293780-2 38 0.137538 hybrid +146_1-3 Q0 MARCO_51_248390742-2 39 0.137538 hybrid +146_1-3 Q0 MARCO_51_248456411-2 40 0.137537 hybrid +146_1-3 Q0 MARCO_51_248590531-2 41 0.137537 hybrid +146_1-3 Q0 MARCO_51_249000846-2 42 0.137537 hybrid +146_1-3 Q0 MARCO_51_249106405-2 43 0.137537 hybrid +146_1-3 Q0 MARCO_51_249502247-2 44 0.137537 hybrid +146_1-3 Q0 MARCO_51_249664621-2 45 0.137536 hybrid +146_1-3 Q0 MARCO_51_249695625-2 46 0.137536 hybrid +146_1-3 Q0 MARCO_51_250073915-2 47 0.137536 hybrid +146_1-3 Q0 MARCO_51_250091533-2 48 0.137536 hybrid +146_1-3 Q0 MARCO_51_250253127-2 49 0.137535 hybrid +146_1-3 Q0 MARCO_51_250878562-2 50 0.137535 hybrid +146_1-3 Q0 MARCO_51_250913961-2 51 0.137535 hybrid +146_1-3 Q0 MARCO_51_251370982-2 52 0.137535 hybrid +146_1-3 Q0 MARCO_51_251480336-2 53 0.137535 hybrid +146_1-3 Q0 MARCO_12_1743660916-22 54 0.137167 hybrid +146_1-3 Q0 MARCO_03_1125529773-4 55 0.136619 hybrid +146_1-3 Q0 MARCO_51_244737344-2 56 0.130523 hybrid +146_1-3 Q0 MARCO_51_711755387-2 57 0.125809 hybrid +146_1-3 Q0 MARCO_32_1754030392-2 58 0.125721 hybrid +146_1-3 Q0 MARCO_34_849058819-1 59 0.125326 hybrid +146_1-3 Q0 MARCO_08_887707240-11 60 0.123770 hybrid +146_1-3 Q0 MARCO_23_298260747-10 61 0.114451 hybrid +146_1-3 Q0 MARCO_12_1756596976-1 62 0.110394 hybrid +146_1-3 Q0 MARCO_29_1307402207-2 63 0.102325 hybrid +146_1-3 Q0 MARCO_32_525653703-36 64 0.099650 hybrid +146_1-3 Q0 MARCO_51_244737344-5 65 0.093795 hybrid +146_1-3 Q0 MARCO_03_442066020-5 66 0.093071 hybrid +146_1-3 Q0 MARCO_31_919842847-4 67 0.092764 hybrid +146_1-3 Q0 MARCO_31_919842847-2 68 0.090484 hybrid +146_1-3 Q0 MARCO_32_525653703-30 69 0.081669 hybrid +146_1-3 Q0 MARCO_51_243402704-5 70 0.071955 hybrid +146_1-3 Q0 MARCO_32_525653703-40 71 0.071802 hybrid +146_1-3 Q0 MARCO_52_1010310868-2 72 0.069368 hybrid +146_1-3 Q0 MARCO_03_442066020-2 73 0.067241 hybrid +146_1-3 Q0 MARCO_00_938352697-2 74 0.065903 hybrid +146_1-3 Q0 MARCO_31_919676654-12 75 0.062680 hybrid +146_1-3 Q0 MARCO_51_711745598-2 76 0.062373 hybrid +146_1-3 Q0 MARCO_26_967669245-4 77 0.061649 hybrid +146_1-3 Q0 MARCO_55_941816802-12 78 0.060268 hybrid +146_1-3 Q0 MARCO_37_608312704-2 79 0.058316 hybrid +146_1-3 Q0 MARCO_47_818541108-2 80 0.044875 hybrid +146_1-3 Q0 MARCO_37_608626104-10 81 0.040840 hybrid +146_1-3 Q0 MARCO_37_608626104-12 82 0.040840 hybrid +146_1-3 Q0 MARCO_37_608626104-14 83 0.040840 hybrid +146_1-3 Q0 MARCO_37_608626104-16 84 0.040840 hybrid +146_1-3 Q0 MARCO_37_608626104-6 85 0.040839 hybrid +146_1-3 Q0 MARCO_37_608626104-8 86 0.040839 hybrid +146_1-3 Q0 MARCO_18_438706474-27 87 0.040533 hybrid +146_1-3 Q0 MARCO_51_711745598-1 88 0.039086 hybrid +146_1-3 Q0 MARCO_34_849043041-4 89 0.038538 hybrid +146_1-3 Q0 MARCO_37_608538811-10 90 0.036542 hybrid +146_1-3 Q0 MARCO_51_244719074-4 91 0.034942 hybrid +146_1-3 Q0 MARCO_47_711565247-2 92 0.033999 hybrid +146_1-3 Q0 MARCO_12_1743660916-3 93 0.033319 hybrid +146_1-3 Q0 MARCO_12_1743660916-19 94 0.028627 hybrid +146_1-3 Q0 MARCO_49_271194644-5 95 0.024351 hybrid +146_1-3 Q0 MARCO_04_844029332-1 96 0.022947 hybrid +146_1-3 Q0 MARCO_51_249597365-2 97 0.022794 hybrid +146_1-3 Q0 MARCO_10_218838894-6 98 0.015711 hybrid +146_1-3 Q0 MARCO_00_263170174-1 99 0.015163 hybrid +146_1-3 Q0 MARCO_11_1017467432-1 100 0.015163 hybrid +146_1-5 Q0 MARCO_15_602151208-14 1 0.500000 hybrid +146_1-5 Q0 MARCO_00_655400828-2 2 0.473732 hybrid +146_1-5 Q0 MARCO_32_1468200452-2 3 0.425639 hybrid +146_1-5 Q0 MARCO_12_1701940503-5 4 0.409444 hybrid +146_1-5 Q0 MARCO_00_655400828-3 5 0.405099 hybrid +146_1-5 Q0 MARCO_58_226578815-2 6 0.401708 hybrid +146_1-5 Q0 MARCO_00_655407799-1 7 0.385348 hybrid +146_1-5 Q0 MARCO_31_919676654-12 8 0.370930 hybrid +146_1-5 Q0 MARCO_24_1350596615-3 9 0.348448 hybrid +146_1-5 Q0 MARCO_24_1262066728-1 10 0.340251 hybrid +146_1-5 Q0 MARCO_35_891563171-14 11 0.331759 hybrid +146_1-5 Q0 MARCO_30_41437296-6 12 0.307136 hybrid +146_1-5 Q0 MARCO_37_606572934-3 13 0.305293 hybrid +146_1-5 Q0 MARCO_25_1254359082-9 14 0.266286 hybrid +146_1-5 Q0 MARCO_49_1339439061-2 15 0.265101 hybrid +146_1-5 Q0 MARCO_04_844029332-5 16 0.261710 hybrid +146_1-5 Q0 MARCO_12_1701775897-7 17 0.248872 hybrid +146_1-5 Q0 MARCO_03_1125529773-1 18 0.243474 hybrid +146_1-5 Q0 MARCO_31_919842847-20 19 0.236397 hybrid +146_1-5 Q0 MARCO_40_371573050-1 20 0.235113 hybrid +146_1-5 Q0 MARCO_52_934705195-4 21 0.216778 hybrid +146_1-5 Q0 MARCO_04_844029332-6 22 0.215362 hybrid +146_1-5 Q0 MARCO_37_608312704-2 23 0.211873 hybrid +146_1-5 Q0 MARCO_31_919676654-23 24 0.204269 hybrid +146_1-5 Q0 MARCO_31_919842847-8 25 0.203808 hybrid +146_1-5 Q0 MARCO_41_2058907049-1 26 0.203578 hybrid +146_1-5 Q0 MARCO_54_1927911864-9 27 0.201537 hybrid +146_1-5 Q0 MARCO_38_1677945496-2 28 0.197456 hybrid +146_1-5 Q0 MARCO_12_1741232047-4 29 0.197291 hybrid +146_1-5 Q0 MARCO_14_925509232-7 30 0.196995 hybrid +146_1-5 Q0 MARCO_16_115261508-2 31 0.175104 hybrid +146_1-5 Q0 MARCO_34_814737336-4 32 0.168751 hybrid +146_1-5 Q0 MARCO_56_1659778096-4 33 0.165591 hybrid +146_1-5 Q0 MARCO_39_1226135999-1 34 0.162760 hybrid +146_1-5 Q0 MARCO_58_226578815-6 35 0.157395 hybrid +146_1-5 Q0 MARCO_34_849043041-4 36 0.152457 hybrid +146_1-5 Q0 MARCO_12_1701940503-8 37 0.152095 hybrid +146_1-5 Q0 MARCO_30_340396239-3 38 0.151733 hybrid +146_1-5 Q0 MARCO_24_745002491-4 39 0.141298 hybrid +146_1-5 Q0 MARCO_19_2657882399-2 40 0.119013 hybrid +146_1-5 Q0 MARCO_12_1749997210-1 41 0.117993 hybrid +146_1-5 Q0 MARCO_51_1178306488-4 42 0.116807 hybrid +146_1-5 Q0 MARCO_51_244737344-2 43 0.109796 hybrid +146_1-5 Q0 MARCO_30_389401783-9 44 0.109730 hybrid +146_1-5 Q0 MARCO_54_100038943-7 45 0.109171 hybrid +146_1-5 Q0 MARCO_00_655407799-2 46 0.107788 hybrid +146_1-5 Q0 MARCO_44_358554067-2 47 0.098440 hybrid +146_1-5 Q0 MARCO_25_1254359082-8 48 0.092350 hybrid +146_1-5 Q0 MARCO_10_218838894-2 49 0.082738 hybrid +146_1-5 Q0 MARCO_09_523477011-1 50 0.079743 hybrid +146_1-5 Q0 MARCO_30_1147383025-2 51 0.078623 hybrid +146_1-5 Q0 MARCO_16_126664808-4 52 0.072961 hybrid +146_1-5 Q0 MARCO_18_438706474-27 53 0.068781 hybrid +146_1-5 Q0 MARCO_30_741901098-4 54 0.068189 hybrid +146_1-5 Q0 MARCO_24_1275891854-8 55 0.067761 hybrid +146_1-5 Q0 MARCO_02_84732513-1 56 0.067168 hybrid +146_1-5 Q0 MARCO_01_956121572-1 57 0.064337 hybrid +146_1-5 Q0 MARCO_03_442110904-3 58 0.063481 hybrid +146_1-5 Q0 MARCO_55_964567770-1 59 0.058445 hybrid +146_1-5 Q0 MARCO_30_340396239-4 60 0.055252 hybrid +146_1-5 Q0 MARCO_51_711755387-1 61 0.054824 hybrid +146_1-5 Q0 MARCO_03_806486075-5 62 0.049096 hybrid +146_1-5 Q0 MARCO_58_226578815-5 63 0.047253 hybrid +146_1-5 Q0 MARCO_55_964567770-23 64 0.045805 hybrid +146_1-5 Q0 MARCO_24_1275891854-9 65 0.043369 hybrid +146_1-5 Q0 MARCO_36_293572803-2 66 0.039978 hybrid +146_1-5 Q0 MARCO_34_849427477-7 67 0.038398 hybrid +146_1-5 Q0 MARCO_14_1671619688-6 68 0.037180 hybrid +146_1-5 Q0 MARCO_30_741965646-5 69 0.034218 hybrid +146_1-5 Q0 MARCO_12_1756652757-1 70 0.031387 hybrid +146_1-5 Q0 MARCO_11_143714751-6 71 0.031024 hybrid +146_1-5 Q0 MARCO_12_1371068248-5 72 0.029214 hybrid +146_1-5 Q0 MARCO_03_442066020-1 73 0.023651 hybrid +146_1-5 Q0 MARCO_16_127024235-13 74 0.018483 hybrid +146_1-5 Q0 MARCO_24_1276104201-1 75 0.012887 hybrid +146_1-5 Q0 MARCO_40_759666078-4 76 0.011702 hybrid +146_1-5 Q0 MARCO_34_433461859-1 77 0.011472 hybrid +146_1-5 Q0 MARCO_12_1741794597-16 78 0.010813 hybrid +146_1-5 Q0 MARCO_24_1271288585-2 79 0.010320 hybrid +146_1-5 Q0 MARCO_34_811234431-5 80 0.008772 hybrid +146_1-5 Q0 MARCO_12_1747899831-6 81 0.000115 hybrid +146_1-5 Q0 MARCO_39_1185840767-12 82 0.000115 hybrid +146_1-5 Q0 MARCO_39_1226135999-3 83 -0.002354 hybrid +146_1-5 Q0 MARCO_44_1467490515-16 84 -0.003473 hybrid +146_1-5 Q0 MARCO_49_232322813-23 85 -0.003901 hybrid +146_1-5 Q0 MARCO_51_246662613-3 86 -0.003934 hybrid +146_1-5 Q0 MARCO_39_1620180517-4 87 -0.008772 hybrid +146_1-5 Q0 MARCO_35_891470731-16 88 -0.010945 hybrid +146_1-5 Q0 MARCO_43_522491151-6 89 -0.011373 hybrid +146_1-5 Q0 MARCO_29_1307402207-2 90 -0.011998 hybrid +146_1-5 Q0 MARCO_54_229415056-10 91 -0.012690 hybrid +146_1-5 Q0 MARCO_44_1578331269-1 92 -0.013249 hybrid +146_1-5 Q0 MARCO_24_1275388621-4 93 -0.014566 hybrid +146_1-5 Q0 MARCO_51_244737344-8 94 -0.015356 hybrid +146_1-5 Q0 MARCO_09_173296247-1 95 -0.016607 hybrid +146_1-5 Q0 MARCO_49_269824078-8 96 -0.017529 hybrid +146_1-5 Q0 MARCO_40_769927701-8 97 -0.018911 hybrid +146_1-5 Q0 MARCO_50_1969713905-55 98 -0.019273 hybrid +146_1-5 Q0 MARCO_49_1339439061-3 99 -0.021939 hybrid +146_1-5 Q0 MARCO_52_1058182808-12 100 -0.024046 hybrid +146_1-7 Q0 MARCO_12_1702080295-2 1 0.500000 hybrid +146_1-7 Q0 MARCO_13_1195795467-5 2 0.394524 hybrid +146_1-7 Q0 MARCO_57_318090457-5 3 0.284208 hybrid +146_1-7 Q0 MARCO_34_810087357-110 4 0.177922 hybrid +146_1-7 Q0 MARCO_12_1168581743-1 5 0.150268 hybrid +146_1-7 Q0 MARCO_08_736900657-1 6 0.147444 hybrid +146_1-7 Q0 MARCO_38_1325365608-3 7 0.124366 hybrid +146_1-7 Q0 MARCO_12_1748606616-7 8 0.107731 hybrid +146_1-7 Q0 MARCO_55_1293601656-6 9 0.090518 hybrid +146_1-7 Q0 MARCO_41_2011649214-2 10 0.074593 hybrid +146_1-7 Q0 MARCO_12_1168581743-3 11 0.061394 hybrid +146_1-7 Q0 MARCO_41_2011649214-9 12 0.049368 hybrid +146_1-7 Q0 MARCO_34_851516230-5 13 0.048674 hybrid +146_1-7 Q0 MARCO_33_293771640-22 14 0.026687 hybrid +146_1-7 Q0 MARCO_08_96087187-8 15 0.024705 hybrid +146_1-7 Q0 MARCO_01_956076507-1 16 0.018725 hybrid +146_1-7 Q0 MARCO_50_1639591761-34 17 0.017139 hybrid +146_1-7 Q0 MARCO_08_1020500152-3 18 0.007871 hybrid +146_1-7 Q0 MARCO_38_1325365608-11 19 0.004832 hybrid +146_1-7 Q0 MARCO_32_1548448720-12 20 0.001611 hybrid +146_1-7 Q0 MARCO_14_1670110090-1 21 -0.014000 hybrid +146_1-7 Q0 MARCO_34_810087357-94 22 -0.020344 hybrid +146_1-7 Q0 MARCO_15_1903746249-15 23 -0.024027 hybrid +146_1-7 Q0 MARCO_13_496062660-1 24 -0.033163 hybrid +146_1-7 Q0 MARCO_34_810087357-121 25 -0.034864 hybrid +146_1-7 Q0 MARCO_25_1222500509-1 26 -0.039523 hybrid +146_1-7 Q0 MARCO_56_1378639823-9 27 -0.043025 hybrid +146_1-7 Q0 MARCO_29_1190957465-29 28 -0.046824 hybrid +146_1-7 Q0 MARCO_00_781964321-1 29 -0.049847 hybrid +146_1-7 Q0 MARCO_29_1307236570-15 30 -0.056257 hybrid +146_1-7 Q0 MARCO_34_851291841-10 31 -0.057149 hybrid +146_1-7 Q0 MARCO_34_851700327-11 32 -0.057149 hybrid +146_1-7 Q0 MARCO_29_1566644523-3 33 -0.058487 hybrid +146_1-7 Q0 MARCO_07_1396575856-3 34 -0.078921 hybrid +146_1-7 Q0 MARCO_04_697376747-5 35 -0.085099 hybrid +146_1-7 Q0 MARCO_00_1325865836-5 36 -0.085446 hybrid +146_1-7 Q0 MARCO_12_1741630321-2 37 -0.087462 hybrid +146_1-7 Q0 MARCO_08_95919061-40 38 -0.090468 hybrid +146_1-7 Q0 MARCO_12_1748283911-16 39 -0.095308 hybrid +146_1-7 Q0 MARCO_33_293491782-15 40 -0.098381 hybrid +146_1-7 Q0 MARCO_03_212491633-13 41 -0.102329 hybrid +146_1-7 Q0 MARCO_44_1621862603-3 42 -0.102808 hybrid +146_1-7 Q0 MARCO_29_1191435494-4 43 -0.103866 hybrid +146_1-7 Q0 MARCO_55_1191322233-18 44 -0.107368 hybrid +146_1-7 Q0 MARCO_29_1191366413-31 45 -0.107682 hybrid +146_1-7 Q0 MARCO_00_648697852-7 46 -0.110242 hybrid +146_1-7 Q0 MARCO_00_648780007-4 47 -0.110242 hybrid +146_1-7 Q0 MARCO_33_293626448-57 48 -0.110820 hybrid +146_1-7 Q0 MARCO_31_1188126474-5 49 -0.111580 hybrid +146_1-7 Q0 MARCO_20_967545792-20 50 -0.118320 hybrid +146_1-7 Q0 MARCO_00_648790034-7 51 -0.119047 hybrid +146_1-7 Q0 MARCO_00_648847345-8 52 -0.119047 hybrid +146_1-7 Q0 MARCO_34_851317433-6 53 -0.119047 hybrid +146_1-7 Q0 MARCO_34_851465117-7 54 -0.119047 hybrid +146_1-7 Q0 MARCO_34_851503588-9 55 -0.119047 hybrid +146_1-7 Q0 MARCO_34_851602657-6 56 -0.119048 hybrid +146_1-7 Q0 MARCO_34_810087357-41 57 -0.121293 hybrid +146_1-7 Q0 MARCO_10_656257999-7 58 -0.127455 hybrid +146_1-7 Q0 MARCO_01_2078103011-74 59 -0.127901 hybrid +146_1-7 Q0 MARCO_04_842076364-19 60 -0.128099 hybrid +146_1-7 Q0 MARCO_56_1464951476-5 61 -0.129091 hybrid +146_1-7 Q0 MARCO_57_2375444497-9 62 -0.129190 hybrid +146_1-7 Q0 MARCO_12_1700399106-5 63 -0.133402 hybrid +146_1-7 Q0 MARCO_57_436554814-28 64 -0.139680 hybrid +146_1-7 Q0 MARCO_51_243416638-1 65 -0.140918 hybrid +146_1-7 Q0 MARCO_56_767634499-1 66 -0.145395 hybrid +146_1-7 Q0 MARCO_13_496062660-2 67 -0.154398 hybrid +146_1-7 Q0 MARCO_50_2243025117-5 68 -0.155092 hybrid +146_1-7 Q0 MARCO_59_446171268-11 69 -0.160114 hybrid +146_1-7 Q0 MARCO_03_337616464-15 70 -0.162030 hybrid +146_1-7 Q0 MARCO_21_151919715-1 71 -0.162608 hybrid +146_1-7 Q0 MARCO_49_1344148802-52 72 -0.163616 hybrid +146_1-7 Q0 MARCO_10_1200041593-18 73 -0.166903 hybrid +146_1-7 Q0 MARCO_12_1700682183-9 74 -0.167531 hybrid +146_1-7 Q0 MARCO_01_963122788-5 75 -0.169216 hybrid +146_1-7 Q0 MARCO_34_810087357-125 76 -0.179227 hybrid +146_1-7 Q0 MARCO_14_1670110090-2 77 -0.180928 hybrid +146_1-7 Q0 MARCO_50_1432054715-12 78 -0.182134 hybrid +146_1-7 Q0 MARCO_55_212962939-17 79 -0.183324 hybrid +146_1-7 Q0 MARCO_14_1670032268-2 80 -0.187866 hybrid +146_1-7 Q0 MARCO_38_126640031-2 81 -0.190840 hybrid +146_1-7 Q0 MARCO_58_587115798-17 82 -0.192426 hybrid +146_1-7 Q0 MARCO_29_1566720175-15 83 -0.194160 hybrid +146_1-7 Q0 MARCO_30_517297549-9 84 -0.195383 hybrid +146_1-7 Q0 MARCO_20_998807430-20 85 -0.195961 hybrid +146_1-7 Q0 MARCO_12_1742679895-3 86 -0.197299 hybrid +146_1-7 Q0 MARCO_34_810087357-144 87 -0.198736 hybrid +146_1-7 Q0 MARCO_29_1191406343-1 88 -0.199760 hybrid +146_1-7 Q0 MARCO_12_1748373948-6 89 -0.200289 hybrid +146_1-7 Q0 MARCO_44_1501844706-9 90 -0.200851 hybrid +146_1-7 Q0 MARCO_54_641736820-4 91 -0.201958 hybrid +146_1-7 Q0 MARCO_12_1742418613-30 92 -0.202271 hybrid +146_1-7 Q0 MARCO_29_1191406343-2 93 -0.202437 hybrid +146_1-7 Q0 MARCO_34_854848387-6 94 -0.202635 hybrid +146_1-7 Q0 MARCO_44_1569762516-8 95 -0.204501 hybrid +146_1-7 Q0 MARCO_01_1207441506-1 96 -0.205509 hybrid +146_1-7 Q0 MARCO_34_854637846-12 97 -0.205757 hybrid +146_1-7 Q0 MARCO_12_1412073683-10 98 -0.205906 hybrid +146_1-7 Q0 MARCO_34_310245824-5 99 -0.206665 hybrid +146_1-7 Q0 MARCO_12_1741630321-25 100 -0.209540 hybrid +146_1-9 Q0 MARCO_20_647094895-1 1 0.500000 hybrid +146_1-9 Q0 MARCO_42_1825385929-2 2 0.418986 hybrid +146_1-9 Q0 MARCO_59_874124800-2 3 0.418210 hybrid +146_1-9 Q0 MARCO_39_1620180517-1 4 0.395517 hybrid +146_1-9 Q0 MARCO_12_1168581743-1 5 0.384060 hybrid +146_1-9 Q0 MARCO_12_1168581743-2 6 0.377259 hybrid +146_1-9 Q0 MARCO_12_1741630321-2 7 0.354345 hybrid +146_1-9 Q0 MARCO_25_1222141158-2 8 0.349799 hybrid +146_1-9 Q0 MARCO_24_1276004124-1 9 0.342702 hybrid +146_1-9 Q0 MARCO_41_2011649214-2 10 0.319086 hybrid +146_1-9 Q0 MARCO_27_283884848-1 11 0.312951 hybrid +146_1-9 Q0 MARCO_42_1823278916-3 12 0.297021 hybrid +146_1-9 Q0 MARCO_47_1332461670-1 13 0.296873 hybrid +146_1-9 Q0 MARCO_20_647094895-4 14 0.293362 hybrid +146_1-9 Q0 MARCO_34_376961247-1 15 0.253853 hybrid +146_1-9 Q0 MARCO_20_647094895-2 16 0.251414 hybrid +146_1-9 Q0 MARCO_29_1566570920-10 17 0.243283 hybrid +146_1-9 Q0 MARCO_27_284011020-1 18 0.242802 hybrid +146_1-9 Q0 MARCO_34_433476982-1 19 0.240844 hybrid +146_1-9 Q0 MARCO_56_281799930-1 20 0.237406 hybrid +146_1-9 Q0 MARCO_37_610816880-1 21 0.228388 hybrid +146_1-9 Q0 MARCO_25_1222114287-18 22 0.222734 hybrid +146_1-9 Q0 MARCO_33_291455743-1 23 0.222031 hybrid +146_1-9 Q0 MARCO_12_1744532862-5 24 0.218853 hybrid +146_1-9 Q0 MARCO_31_769888305-2 25 0.214898 hybrid +146_1-9 Q0 MARCO_39_1620180517-5 26 0.189692 hybrid +146_1-9 Q0 MARCO_59_874124800-17 27 0.186033 hybrid +146_1-9 Q0 MARCO_27_284011020-5 28 0.173172 hybrid +146_1-9 Q0 MARCO_56_269474329-2 29 0.170621 hybrid +146_1-9 Q0 MARCO_34_377207718-1 30 0.160643 hybrid +146_1-9 Q0 MARCO_20_647094895-3 31 0.145600 hybrid +146_1-9 Q0 MARCO_29_1566720175-1 32 0.138689 hybrid +146_1-9 Q0 MARCO_04_843443607-2 33 0.134845 hybrid +146_1-9 Q0 MARCO_12_1280258786-20 34 0.123388 hybrid +146_1-9 Q0 MARCO_56_269024389-17 35 0.118990 hybrid +146_1-9 Q0 MARCO_12_1280258786-17 36 0.109307 hybrid +146_1-9 Q0 MARCO_33_293771640-2 37 0.109195 hybrid +146_1-9 Q0 MARCO_38_1325365608-3 38 0.106461 hybrid +146_1-9 Q0 MARCO_33_293710912-1 39 0.100473 hybrid +146_1-9 Q0 MARCO_12_1748283911-10 40 0.096630 hybrid +146_1-9 Q0 MARCO_34_811044749-1 41 0.088573 hybrid +146_1-9 Q0 MARCO_38_125911948-2 42 0.085690 hybrid +146_1-9 Q0 MARCO_27_284011020-6 43 0.084137 hybrid +146_1-9 Q0 MARCO_24_1276004124-2 44 0.083324 hybrid +146_1-9 Q0 MARCO_25_1222114287-17 45 0.082474 hybrid +146_1-9 Q0 MARCO_29_1351233683-8 46 0.079222 hybrid +146_1-9 Q0 MARCO_37_835539785-1 47 0.076561 hybrid +146_1-9 Q0 MARCO_41_2011779787-2 48 0.075267 hybrid +146_1-9 Q0 MARCO_31_303307822-1 49 0.066545 hybrid +146_1-9 Q0 MARCO_12_1748283911-19 50 0.062405 hybrid +146_1-9 Q0 MARCO_56_269054438-3 51 0.060521 hybrid +146_1-9 Q0 MARCO_12_1748283911-9 52 0.057342 hybrid +146_1-9 Q0 MARCO_29_1661448116-15 53 0.056344 hybrid +146_1-9 Q0 MARCO_56_269544509-9 54 0.054533 hybrid +146_1-9 Q0 MARCO_56_269054438-15 55 0.049396 hybrid +146_1-9 Q0 MARCO_12_1747653960-32 56 0.044111 hybrid +146_1-9 Q0 MARCO_08_1720727027-2 57 0.038493 hybrid +146_1-9 Q0 MARCO_12_1748283911-4 58 0.036054 hybrid +146_1-9 Q0 MARCO_39_1435115757-1 59 0.034908 hybrid +146_1-9 Q0 MARCO_21_151059437-19 60 0.034797 hybrid +146_1-9 Q0 MARCO_13_1535428297-2 61 0.032912 hybrid +146_1-9 Q0 MARCO_21_881047045-1 62 0.031175 hybrid +146_1-9 Q0 MARCO_42_1825385929-5 63 0.029401 hybrid +146_1-9 Q0 MARCO_12_1744392103-11 64 0.029253 hybrid +146_1-9 Q0 MARCO_14_1443154131-19 65 0.027109 hybrid +146_1-9 Q0 MARCO_12_1756857378-1 66 0.026962 hybrid +146_1-9 Q0 MARCO_59_779032477-5 67 0.024005 hybrid +146_1-9 Q0 MARCO_12_1234936969-7 68 0.023340 hybrid +146_1-9 Q0 MARCO_21_616965254-1 69 0.021787 hybrid +146_1-9 Q0 MARCO_30_40841124-2 70 0.020235 hybrid +146_1-9 Q0 MARCO_12_1748283911-5 71 0.016576 hybrid +146_1-9 Q0 MARCO_24_1263071172-2 72 0.015209 hybrid +146_1-9 Q0 MARCO_27_423710640-2 73 0.009554 hybrid +146_1-9 Q0 MARCO_12_1286324504-3 74 0.008926 hybrid +146_1-9 Q0 MARCO_14_1443154131-2 75 0.008113 hybrid +146_1-9 Q0 MARCO_03_212491633-40 76 0.002569 hybrid +146_1-9 Q0 MARCO_20_26778100-5 77 0.000240 hybrid +146_1-9 Q0 MARCO_20_647094895-5 78 -0.000018 hybrid +146_1-9 Q0 MARCO_15_607981062-3 79 -0.000425 hybrid +146_1-9 Q0 MARCO_19_1880892789-3 80 -0.003862 hybrid +146_1-9 Q0 MARCO_12_1756857378-3 81 -0.005969 hybrid +146_1-9 Q0 MARCO_26_977714524-1 82 -0.009665 hybrid +146_1-9 Q0 MARCO_42_1823278916-5 83 -0.012030 hybrid +146_1-9 Q0 MARCO_42_1823278916-7 84 -0.012030 hybrid +146_1-9 Q0 MARCO_25_1222141158-9 85 -0.012141 hybrid +146_1-9 Q0 MARCO_56_281799930-2 86 -0.014210 hybrid +146_1-9 Q0 MARCO_12_1748283911-12 87 -0.014728 hybrid +146_1-9 Q0 MARCO_42_1823278916-4 88 -0.015430 hybrid +146_1-9 Q0 MARCO_59_874124800-3 89 -0.015504 hybrid +146_1-9 Q0 MARCO_56_269544509-4 90 -0.017204 hybrid +146_1-9 Q0 MARCO_12_1748606616-2 91 -0.020531 hybrid +146_1-9 Q0 MARCO_03_1403567554-1 92 -0.020605 hybrid +146_1-9 Q0 MARCO_47_1332566004-10 93 -0.024005 hybrid +146_1-9 Q0 MARCO_12_1371995338-4 94 -0.024448 hybrid +146_1-9 Q0 MARCO_37_606572934-3 95 -0.030325 hybrid +146_1-9 Q0 MARCO_19_2366667153-21 96 -0.031064 hybrid +146_1-9 Q0 MARCO_32_383536298-1 97 -0.033651 hybrid +146_1-9 Q0 MARCO_59_874124800-14 98 -0.034021 hybrid +146_1-9 Q0 MARCO_20_25450151-2 99 -0.034649 hybrid +146_1-9 Q0 MARCO_13_1623710694-2 100 -0.036201 hybrid +147_1-1 Q0 MARCO_41_952400628-1 1 0.500000 hybrid +147_1-1 Q0 MARCO_30_352398788-1 2 0.413889 hybrid +147_1-1 Q0 MARCO_51_870940831-5 3 0.305013 hybrid +147_1-1 Q0 MARCO_51_866656309-11 4 0.263911 hybrid +147_1-1 Q0 MARCO_50_2498449365-18 5 0.247471 hybrid +147_1-1 Q0 MARCO_51_869623541-6 6 0.243993 hybrid +147_1-1 Q0 MARCO_36_1317706650-9 7 0.226423 hybrid +147_1-1 Q0 MARCO_51_874839195-8 8 0.221364 hybrid +147_1-1 Q0 MARCO_47_123138973-1 9 0.215018 hybrid +147_1-1 Q0 MARCO_51_857096217-5 10 0.204720 hybrid +147_1-1 Q0 MARCO_44_608267500-1 11 0.178229 hybrid +147_1-1 Q0 MARCO_23_678075708-5 12 0.177123 hybrid +147_1-1 Q0 MARCO_31_633759086-5 13 0.159756 hybrid +147_1-1 Q0 MARCO_36_109240224-2 14 0.154133 hybrid +147_1-1 Q0 MARCO_51_860812267-5 15 0.146432 hybrid +147_1-1 Q0 MARCO_14_763449557-8 16 0.143654 hybrid +147_1-1 Q0 MARCO_50_362153526-3 17 0.141622 hybrid +147_1-1 Q0 MARCO_14_763253137-2 18 0.136834 hybrid +147_1-1 Q0 MARCO_36_109240224-6 19 0.132972 hybrid +147_1-1 Q0 MARCO_36_100737020-1 20 0.114024 hybrid +147_1-1 Q0 MARCO_15_1454041092-1 21 0.101852 hybrid +147_1-1 Q0 MARCO_14_764065453-1 22 0.095800 hybrid +147_1-1 Q0 MARCO_50_1238476289-15 23 0.091034 hybrid +147_1-1 Q0 MARCO_11_985899771-18 24 0.090086 hybrid +147_1-1 Q0 MARCO_51_865651677-5 25 0.089995 hybrid +147_1-1 Q0 MARCO_14_763197838-6 26 0.082430 hybrid +147_1-1 Q0 MARCO_50_2660065561-1 27 0.069715 hybrid +147_1-1 Q0 MARCO_51_857737131-5 28 0.058401 hybrid +147_1-1 Q0 MARCO_31_770751179-3 29 0.056278 hybrid +147_1-1 Q0 MARCO_55_627916958-15 30 0.052349 hybrid +147_1-1 Q0 MARCO_37_332591817-2 31 0.051784 hybrid +147_1-1 Q0 MARCO_41_111760599-2 32 0.045867 hybrid +147_1-1 Q0 MARCO_51_859221097-10 33 0.044941 hybrid +147_1-1 Q0 MARCO_23_1296007062-1 34 0.040515 hybrid +147_1-1 Q0 MARCO_42_1136295478-1 35 0.040447 hybrid +147_1-1 Q0 MARCO_00_624637201-1 36 0.035930 hybrid +147_1-1 Q0 MARCO_31_633346284-6 37 0.034892 hybrid +147_1-1 Q0 MARCO_51_857317021-16 38 0.030217 hybrid +147_1-1 Q0 MARCO_51_854074886-20 39 0.029901 hybrid +147_1-1 Q0 MARCO_51_854741556-8 40 0.029200 hybrid +147_1-1 Q0 MARCO_51_858934319-5 41 0.029200 hybrid +147_1-1 Q0 MARCO_25_292475598-2 42 0.027891 hybrid +147_1-1 Q0 MARCO_55_391280925-1 43 0.023442 hybrid +147_1-1 Q0 MARCO_50_1786533852-15 44 0.017299 hybrid +147_1-1 Q0 MARCO_45_16282482-8 45 0.009937 hybrid +147_1-1 Q0 MARCO_08_724315935-1 46 0.009711 hybrid +147_1-1 Q0 KILT_46493532-26 47 0.005962 hybrid +147_1-1 Q0 MARCO_17_3677963878-30 48 0.005962 hybrid +147_1-1 Q0 MARCO_02_39386057-16 49 0.000384 hybrid +147_1-1 Q0 MARCO_12_1138353779-1 50 0.000361 hybrid +147_1-1 Q0 MARCO_47_852242045-1 51 -0.004788 hybrid +147_1-1 Q0 MARCO_51_860452309-5 52 -0.008379 hybrid +147_1-1 Q0 MARCO_27_1545007085-13 53 -0.010095 hybrid +147_1-1 Q0 MARCO_29_1409745900-1 54 -0.010953 hybrid +147_1-1 Q0 MARCO_03_218287864-3 55 -0.012940 hybrid +147_1-1 Q0 MARCO_23_1026345919-9 56 -0.015221 hybrid +147_1-1 Q0 MARCO_14_727740514-1 57 -0.015763 hybrid +147_1-1 Q0 MARCO_02_1478824187-3 58 -0.018360 hybrid +147_1-1 Q0 MARCO_50_1354871674-22 59 -0.019580 hybrid +147_1-1 Q0 MARCO_24_1367747952-56 60 -0.026287 hybrid +147_1-1 Q0 MARCO_51_854621181-14 61 -0.026852 hybrid +147_1-1 Q0 MARCO_51_867158802-5 62 -0.026852 hybrid +147_1-1 Q0 MARCO_51_864618495-15 63 -0.027236 hybrid +147_1-1 Q0 MARCO_46_1250495844-1 64 -0.031346 hybrid +147_1-1 Q0 MARCO_02_39434638-10 65 -0.036043 hybrid +147_1-1 Q0 MARCO_54_1838414310-3 66 -0.039386 hybrid +147_1-1 Q0 MARCO_50_1285188383-47 67 -0.041780 hybrid +147_1-1 Q0 MARCO_02_40079893-1 68 -0.042118 hybrid +147_1-1 Q0 MARCO_36_100737020-5 69 -0.045686 hybrid +147_1-1 Q0 MARCO_12_1878902756-45 70 -0.048148 hybrid +147_1-1 Q0 MARCO_54_1965179312-3 71 -0.048532 hybrid +147_1-1 Q0 MARCO_24_1367747952-37 72 -0.050339 hybrid +147_1-1 Q0 MARCO_29_1477678795-1 73 -0.051942 hybrid +147_1-1 Q0 MARCO_24_1367747952-9 74 -0.052597 hybrid +147_1-1 Q0 MARCO_23_1777680026-31 75 -0.054833 hybrid +147_1-1 Q0 MARCO_24_1367747952-18 76 -0.056685 hybrid +147_1-1 Q0 MARCO_54_1965179312-5 77 -0.057001 hybrid +147_1-1 Q0 MARCO_39_912764731-11 78 -0.057859 hybrid +147_1-1 Q0 MARCO_02_1478680358-3 79 -0.059553 hybrid +147_1-1 Q0 MARCO_55_213044500-19 80 -0.063166 hybrid +147_1-1 Q0 MARCO_51_867283367-11 81 -0.065086 hybrid +147_1-1 Q0 MARCO_31_1676328483-5 82 -0.065876 hybrid +147_1-1 Q0 MARCO_49_1673943566-6 83 -0.066283 hybrid +147_1-1 Q0 MARCO_33_57943164-1 84 -0.069738 hybrid +147_1-1 Q0 MARCO_00_1486305240-3 85 -0.069874 hybrid +147_1-1 Q0 MARCO_32_1279848437-7 86 -0.070122 hybrid +147_1-1 Q0 MARCO_03_732161428-2 87 -0.070122 hybrid +147_1-1 Q0 MARCO_44_244756337-3 88 -0.073622 hybrid +147_1-1 Q0 MARCO_51_858237974-5 89 -0.075745 hybrid +147_1-1 Q0 MARCO_51_870516485-6 90 -0.077484 hybrid +147_1-1 Q0 MARCO_36_888502504-1 91 -0.081165 hybrid +147_1-1 Q0 MARCO_54_1959164419-8 92 -0.083311 hybrid +147_1-1 Q0 MARCO_50_2240949679-176 93 -0.084914 hybrid +147_1-1 Q0 MARCO_51_862178491-5 94 -0.085004 hybrid +147_1-1 Q0 MARCO_54_1751916603-3 95 -0.086834 hybrid +147_1-1 Q0 MARCO_19_1827048764-11 96 -0.087556 hybrid +147_1-1 Q0 MARCO_50_1285188383-49 97 -0.088550 hybrid +147_1-1 Q0 MARCO_51_859818282-9 98 -0.088686 hybrid +147_1-1 Q0 MARCO_36_864202522-5 99 -0.088844 hybrid +147_1-1 Q0 MARCO_02_1480599401-3 100 -0.090424 hybrid +147_1-11 Q0 MARCO_27_1501635766-1 1 0.500000 hybrid +147_1-11 Q0 KILT_1074657-1 2 0.498120 hybrid +147_1-11 Q0 MARCO_06_1965268772-7 3 0.390218 hybrid +147_1-11 Q0 KILT_55994110-1 4 0.370550 hybrid +147_1-11 Q0 KILT_22783445-14 5 0.364720 hybrid +147_1-11 Q0 KILT_11208322-3 6 0.362813 hybrid +147_1-11 Q0 MARCO_38_40200777-8 7 0.361451 hybrid +147_1-11 Q0 MARCO_20_454211596-8 8 0.358890 hybrid +147_1-11 Q0 MARCO_50_2623345285-3 9 0.337560 hybrid +147_1-11 Q0 MARCO_36_422580709-1 10 0.334319 hybrid +147_1-11 Q0 MARCO_42_1454335479-1 11 0.333665 hybrid +147_1-11 Q0 MARCO_50_2498449365-18 12 0.332957 hybrid +147_1-11 Q0 MARCO_17_3686166367-17 13 0.324376 hybrid +147_1-11 Q0 KILT_35625166-27 14 0.320072 hybrid +147_1-11 Q0 MARCO_35_475291777-1 15 0.307568 hybrid +147_1-11 Q0 KILT_55755841-1 16 0.299968 hybrid +147_1-11 Q0 KILT_44254295-45 17 0.294601 hybrid +147_1-11 Q0 KILT_1074657-20 18 0.294083 hybrid +147_1-11 Q0 MARCO_18_2921726631-97 19 0.279019 hybrid +147_1-11 Q0 KILT_47495546-49 20 0.272399 hybrid +147_1-11 Q0 MARCO_17_3800214442-1 21 0.265589 hybrid +147_1-11 Q0 MARCO_04_1496790789-4 22 0.264036 hybrid +147_1-11 Q0 MARCO_47_1000204684-1 23 0.263982 hybrid +147_1-11 Q0 MARCO_43_841730796-5 24 0.245594 hybrid +147_1-11 Q0 MARCO_02_1480453124-1 25 0.232845 hybrid +147_1-11 Q0 MARCO_18_3238248519-2 26 0.228595 hybrid +147_1-11 Q0 MARCO_30_562930811-3 27 0.224100 hybrid +147_1-11 Q0 MARCO_02_58328264-6 28 0.213286 hybrid +147_1-11 Q0 MARCO_36_1293167950-1 29 0.212550 hybrid +147_1-11 Q0 MARCO_27_1501956103-1 30 0.211869 hybrid +147_1-11 Q0 MARCO_30_561903930-26 31 0.204923 hybrid +147_1-11 Q0 MARCO_30_1407694039-4 32 0.203234 hybrid +147_1-11 Q0 MARCO_17_4816477810-109 33 0.201545 hybrid +147_1-11 Q0 MARCO_27_1710600199-1 34 0.191629 hybrid +147_1-11 Q0 MARCO_01_692444269-5 35 0.190785 hybrid +147_1-11 Q0 MARCO_43_841730796-7 36 0.184573 hybrid +147_1-11 Q0 MARCO_18_3527115620-2 37 0.175148 hybrid +147_1-11 Q0 MARCO_57_875386862-15 38 0.172179 hybrid +147_1-11 Q0 MARCO_16_2381616729-44 39 0.167384 hybrid +147_1-11 Q0 KILT_5727147-5 40 0.165259 hybrid +147_1-11 Q0 MARCO_16_3241163921-23 41 0.162971 hybrid +147_1-11 Q0 MARCO_17_4818119431-2 42 0.153246 hybrid +147_1-11 Q0 MARCO_22_1257533157-1 43 0.152456 hybrid +147_1-11 Q0 MARCO_30_558934876-3 44 0.152456 hybrid +147_1-11 Q0 MARCO_35_1383547965-6 45 0.142213 hybrid +147_1-11 Q0 MARCO_17_4816382521-6 46 0.140470 hybrid +147_1-11 Q0 MARCO_25_360772300-1 47 0.137146 hybrid +147_1-11 Q0 MARCO_45_895030166-2 48 0.134150 hybrid +147_1-11 Q0 MARCO_14_791867527-13 49 0.133115 hybrid +147_1-11 Q0 MARCO_44_684023906-1 50 0.129710 hybrid +147_1-11 Q0 MARCO_35_310373996-2 51 0.128674 hybrid +147_1-11 Q0 MARCO_36_107035810-3 52 0.126087 hybrid +147_1-11 Q0 MARCO_36_422340567-3 53 0.126086 hybrid +147_1-11 Q0 MARCO_00_1486305240-7 54 0.125187 hybrid +147_1-11 Q0 MARCO_18_3163465006-6 55 0.119794 hybrid +147_1-11 Q0 MARCO_50_1280687382-13 56 0.101760 hybrid +147_1-11 Q0 MARCO_27_1505283221-5 57 0.101624 hybrid +147_1-11 Q0 MARCO_25_13117317-1 58 0.099717 hybrid +147_1-11 Q0 MARCO_02_1480882337-5 59 0.091245 hybrid +147_1-11 Q0 KILT_1043595-1 60 0.090700 hybrid +147_1-11 Q0 MARCO_39_1133071304-2 61 0.086178 hybrid +147_1-11 Q0 MARCO_53_1337906616-1 62 0.085116 hybrid +147_1-11 Q0 MARCO_27_1456437245-2 63 0.084843 hybrid +147_1-11 Q0 MARCO_35_289780164-5 64 0.080921 hybrid +147_1-11 Q0 MARCO_49_1672991792-5 65 0.080920 hybrid +147_1-11 Q0 MARCO_57_179361475-2 66 0.071468 hybrid +147_1-11 Q0 MARCO_27_1452833113-1 67 0.070160 hybrid +147_1-11 Q0 MARCO_44_609433579-2 68 0.067763 hybrid +147_1-11 Q0 MARCO_34_165929951-2 69 0.067082 hybrid +147_1-11 Q0 MARCO_30_561945896-4 70 0.063541 hybrid +147_1-11 Q0 MARCO_30_563318021-7 71 0.063404 hybrid +147_1-11 Q0 MARCO_54_1930561583-6 72 0.062696 hybrid +147_1-11 Q0 MARCO_24_1294693954-1 73 0.058746 hybrid +147_1-11 Q0 MARCO_38_39328900-3 74 0.054605 hybrid +147_1-11 Q0 MARCO_17_4818965892-4 75 0.046378 hybrid +147_1-11 Q0 MARCO_43_251233843-13 76 0.045044 hybrid +147_1-11 Q0 MARCO_50_1280687382-59 77 0.044472 hybrid +147_1-11 Q0 MARCO_44_684023906-4 78 0.044145 hybrid +147_1-11 Q0 MARCO_02_1479573894-1 79 0.042674 hybrid +147_1-11 Q0 MARCO_36_104919483-5 80 0.042674 hybrid +147_1-11 Q0 KILT_37505644-1 81 0.040549 hybrid +147_1-11 Q0 MARCO_37_1120681070-12 82 0.037007 hybrid +147_1-11 Q0 KILT_446464-2 83 0.036844 hybrid +147_1-11 Q0 KILT_35625166-26 84 0.036272 hybrid +147_1-11 Q0 MARCO_22_1319527229-1 85 0.026138 hybrid +147_1-11 Q0 MARCO_27_1470292476-1 86 0.026111 hybrid +147_1-11 Q0 MARCO_29_1584008662-3 87 0.024177 hybrid +147_1-11 Q0 MARCO_00_1486305240-1 88 0.023795 hybrid +147_1-11 Q0 MARCO_35_1367470636-6 89 0.023795 hybrid +147_1-11 Q0 MARCO_05_316414893-2 90 0.019655 hybrid +147_1-11 Q0 MARCO_30_1399743287-8 91 0.018838 hybrid +147_1-11 Q0 MARCO_50_2240949679-30 92 0.018837 hybrid +147_1-11 Q0 MARCO_55_360381306-27 93 0.018837 hybrid +147_1-11 Q0 MARCO_18_3746971958-29 94 0.017176 hybrid +147_1-11 Q0 MARCO_39_912764731-1 95 0.016413 hybrid +147_1-11 Q0 MARCO_38_39880400-7 96 0.008023 hybrid +147_1-11 Q0 MARCO_59_214033106-2 97 0.007669 hybrid +147_1-11 Q0 MARCO_49_1673714430-4 98 0.002765 hybrid +147_1-11 Q0 MARCO_20_1322652724-1 99 0.001322 hybrid +147_1-11 Q0 MARCO_17_3471268453-21 100 -0.000258 hybrid +147_1-13 Q0 MARCO_17_2668085167-5 1 0.500000 hybrid +147_1-13 Q0 MARCO_35_1381829109-2 2 0.427419 hybrid +147_1-13 Q0 MARCO_11_840593986-2 3 0.403225 hybrid +147_1-13 Q0 KILT_16368269-5 4 0.351031 hybrid +147_1-13 Q0 MARCO_14_1214834864-3 5 0.347314 hybrid +147_1-13 Q0 KILT_52464392-12 6 0.337872 hybrid +147_1-13 Q0 MARCO_17_4818119431-10 7 0.296743 hybrid +147_1-13 Q0 MARCO_17_4819044320-14 8 0.279689 hybrid +147_1-13 Q0 MARCO_17_2783238626-4 9 0.273346 hybrid +147_1-13 Q0 MARCO_16_3243279203-66 10 0.268979 hybrid +147_1-13 Q0 MARCO_19_1286364023-8 11 0.264140 hybrid +147_1-13 Q0 MARCO_06_1676624295-19 12 0.247441 hybrid +147_1-13 Q0 MARCO_18_3842159303-7 13 0.231773 hybrid +147_1-13 Q0 MARCO_13_1026308475-9 14 0.229236 hybrid +147_1-13 Q0 MARCO_36_100737020-1 15 0.220621 hybrid +147_1-13 Q0 MARCO_30_257662348-2 16 0.214779 hybrid +147_1-13 Q0 MARCO_44_643044646-7 17 0.187989 hybrid +147_1-13 Q0 MARCO_17_3094322423-19 18 0.137978 hybrid +147_1-13 Q0 MARCO_27_1501384267-1 19 0.117355 hybrid +147_1-13 Q0 MARCO_32_873077775-2 20 0.115555 hybrid +147_1-13 Q0 MARCO_02_1676620108-1 21 0.114375 hybrid +147_1-13 Q0 MARCO_20_742151787-3 22 0.112486 hybrid +147_1-13 Q0 MARCO_18_2389435848-7 23 0.111188 hybrid +147_1-13 Q0 MARCO_36_100737020-5 24 0.110155 hybrid +147_1-13 Q0 KILT_41259294-6 25 0.109890 hybrid +147_1-13 Q0 MARCO_50_2240949679-117 26 0.089738 hybrid +147_1-13 Q0 MARCO_51_1574979833-11 27 0.077346 hybrid +147_1-13 Q0 MARCO_20_742151787-4 28 0.067875 hybrid +147_1-13 Q0 MARCO_36_864202522-3 29 0.057431 hybrid +147_1-13 Q0 MARCO_35_1381811664-1 30 0.054864 hybrid +147_1-13 Q0 MARCO_27_1501384267-3 31 0.054687 hybrid +147_1-13 Q0 MARCO_35_1373373996-1 32 0.046396 hybrid +147_1-13 Q0 MARCO_15_781599454-1 33 0.034889 hybrid +147_1-13 Q0 MARCO_27_1438015774-1 34 0.020727 hybrid +147_1-13 Q0 MARCO_32_1710681317-1 35 0.019370 hybrid +147_1-13 Q0 MARCO_13_620495137-1 36 0.017039 hybrid +147_1-13 Q0 MARCO_24_436508401-3 37 0.016685 hybrid +147_1-13 Q0 MARCO_45_1457315114-3 38 0.013144 hybrid +147_1-13 Q0 MARCO_16_1783030393-18 39 0.011521 hybrid +147_1-13 Q0 MARCO_19_1321718648-24 40 0.011404 hybrid +147_1-13 Q0 MARCO_35_409800712-2 41 0.008778 hybrid +147_1-13 Q0 MARCO_36_1317706650-9 42 0.008660 hybrid +147_1-13 Q0 MARCO_05_640355155-5 43 -0.002228 hybrid +147_1-13 Q0 MARCO_14_726433370-6 44 -0.005739 hybrid +147_1-13 Q0 MARCO_50_2240949679-158 45 -0.005975 hybrid +147_1-13 Q0 MARCO_08_936746974-3 46 -0.007804 hybrid +147_1-13 Q0 MARCO_22_1853099804-1 47 -0.015829 hybrid +147_1-13 Q0 MARCO_23_1830544655-1 48 -0.019724 hybrid +147_1-13 Q0 MARCO_27_454392969-3 49 -0.020963 hybrid +147_1-13 Q0 MARCO_20_815122724-4 50 -0.034948 hybrid +147_1-13 Q0 MARCO_06_1210871486-266 51 -0.036187 hybrid +147_1-13 Q0 MARCO_39_661900891-31 52 -0.036188 hybrid +147_1-13 Q0 MARCO_01_1664659609-3 53 -0.052828 hybrid +147_1-13 Q0 MARCO_41_1358746452-38 54 -0.053448 hybrid +147_1-13 Q0 MARCO_35_1346382367-2 55 -0.065043 hybrid +147_1-13 Q0 MARCO_45_1183907701-1 56 -0.068436 hybrid +147_1-13 Q0 MARCO_26_327764484-36 57 -0.069026 hybrid +147_1-13 Q0 MARCO_23_1830567156-1 58 -0.071062 hybrid +147_1-13 Q0 KILT_39293265-6 59 -0.075281 hybrid +147_1-13 Q0 MARCO_50_1216880557-9 60 -0.075576 hybrid +147_1-13 Q0 MARCO_43_353595745-1 61 -0.076874 hybrid +147_1-13 Q0 MARCO_43_353595745-2 62 -0.086021 hybrid +147_1-13 Q0 MARCO_21_926468758-3 63 -0.090741 hybrid +147_1-13 Q0 MARCO_27_1502081267-1 64 -0.090742 hybrid +147_1-13 Q0 MARCO_35_1383005145-1 65 -0.090742 hybrid +147_1-13 Q0 MARCO_23_1830557751-1 66 -0.091214 hybrid +147_1-13 Q0 MARCO_45_1513374586-2 67 -0.093161 hybrid +147_1-13 Q0 MARCO_48_1165176782-5 68 -0.093928 hybrid +147_1-13 Q0 MARCO_02_850969047-2 69 -0.094784 hybrid +147_1-13 Q0 MARCO_50_2240949679-4 70 -0.101157 hybrid +147_1-13 Q0 MARCO_17_4817097038-7 71 -0.102160 hybrid +147_1-13 Q0 MARCO_34_35341406-1 72 -0.103989 hybrid +147_1-13 Q0 MARCO_50_2450900162-16 73 -0.105818 hybrid +147_1-13 Q0 MARCO_13_618770204-4 74 -0.109772 hybrid +147_1-13 Q0 MARCO_06_348313710-1 75 -0.110067 hybrid +147_1-13 Q0 MARCO_00_973333555-1 76 -0.113283 hybrid +147_1-13 Q0 MARCO_58_1155903382-9 77 -0.113726 hybrid +147_1-13 Q0 MARCO_09_1305693785-2 78 -0.118210 hybrid +147_1-13 Q0 MARCO_27_1446502356-15 79 -0.118211 hybrid +147_1-13 Q0 MARCO_27_1457199454-14 80 -0.118211 hybrid +147_1-13 Q0 MARCO_41_108688338-2 81 -0.119508 hybrid +147_1-13 Q0 MARCO_30_1460782982-4 82 -0.120217 hybrid +147_1-13 Q0 MARCO_05_422199552-1 83 -0.120748 hybrid +147_1-13 Q0 MARCO_12_1866611257-3 84 -0.129864 hybrid +147_1-13 Q0 MARCO_10_1455509414-6 85 -0.134202 hybrid +147_1-13 Q0 MARCO_14_777889446-19 86 -0.134202 hybrid +147_1-13 Q0 MARCO_12_1866611257-14 87 -0.134349 hybrid +147_1-13 Q0 KILT_2867396-8 88 -0.134379 hybrid +147_1-13 Q0 KILT_1661521-11 89 -0.135146 hybrid +147_1-13 Q0 MARCO_01_1713073338-1 90 -0.135972 hybrid +147_1-13 Q0 MARCO_38_1762727723-497 91 -0.137477 hybrid +147_1-13 Q0 MARCO_49_676978382-1 92 -0.137595 hybrid +147_1-13 Q0 MARCO_08_1282200701-3 93 -0.141430 hybrid +147_1-13 Q0 MARCO_13_620495137-5 94 -0.141431 hybrid +147_1-13 Q0 MARCO_35_1367470636-6 95 -0.141431 hybrid +147_1-13 Q0 MARCO_17_3094322423-37 96 -0.141873 hybrid +147_1-13 Q0 MARCO_06_1964872279-2 97 -0.142492 hybrid +147_1-13 Q0 MARCO_14_763368349-4 98 -0.144735 hybrid +147_1-13 Q0 MARCO_39_954503800-9 99 -0.148807 hybrid +147_1-13 Q0 MARCO_51_824760256-1 100 -0.149013 hybrid +147_1-15 Q0 MARCO_43_353595745-9 1 0.500000 hybrid +147_1-15 Q0 MARCO_35_1352396670-1 2 0.220059 hybrid +147_1-15 Q0 MARCO_27_1536320595-2 3 0.107054 hybrid +147_1-15 Q0 MARCO_19_2175002886-11 4 -0.041027 hybrid +147_1-15 Q0 KILT_10854413-4 5 -0.061040 hybrid +147_1-15 Q0 MARCO_27_1480499709-1 6 -0.077806 hybrid +147_1-15 Q0 MARCO_48_629899526-5 7 -0.081417 hybrid +147_1-15 Q0 MARCO_27_1554716899-6 8 -0.082803 hybrid +147_1-15 Q0 KILT_73499-4 9 -0.085461 hybrid +147_1-15 Q0 MARCO_55_627867452-24 10 -0.110870 hybrid +147_1-15 Q0 MARCO_28_479804071-2 11 -0.112381 hybrid +147_1-15 Q0 MARCO_36_650474562-3 12 -0.127192 hybrid +147_1-15 Q0 MARCO_45_424191780-2 13 -0.136040 hybrid +147_1-15 Q0 MARCO_27_1508004974-1 14 -0.142810 hybrid +147_1-15 Q0 MARCO_05_347552213-7 15 -0.146786 hybrid +147_1-15 Q0 MARCO_47_1037301988-1 16 -0.156713 hybrid +147_1-15 Q0 MARCO_30_802757031-1 17 -0.159144 hybrid +147_1-15 Q0 MARCO_44_51041772-2 18 -0.166606 hybrid +147_1-15 Q0 MARCO_47_908923819-3 19 -0.174114 hybrid +147_1-15 Q0 MARCO_27_1536320595-6 20 -0.181134 hybrid +147_1-15 Q0 MARCO_18_1285635701-5 21 -0.185211 hybrid +147_1-15 Q0 MARCO_40_59856963-5 22 -0.194468 hybrid +147_1-15 Q0 MARCO_39_1745929739-16 23 -0.195184 hybrid +147_1-15 Q0 MARCO_41_2165144374-21 24 -0.209325 hybrid +147_1-15 Q0 MARCO_41_635975520-2 25 -0.218480 hybrid +147_1-15 Q0 MARCO_35_1393209326-1 26 -0.222706 hybrid +147_1-15 Q0 MARCO_35_1382020158-1 27 -0.222740 hybrid +147_1-15 Q0 MARCO_24_1498543941-10 28 -0.224568 hybrid +147_1-15 Q0 MARCO_28_1645652755-2 29 -0.226442 hybrid +147_1-15 Q0 MARCO_18_3429174369-15 30 -0.231088 hybrid +147_1-15 Q0 KILT_52464392-12 31 -0.231349 hybrid +147_1-15 Q0 MARCO_40_972276726-1 32 -0.231872 hybrid +147_1-15 Q0 MARCO_17_1669828173-9 33 -0.238176 hybrid +147_1-15 Q0 KILT_17254442-3 34 -0.238505 hybrid +147_1-15 Q0 MARCO_43_353595745-2 35 -0.238914 hybrid +147_1-15 Q0 MARCO_33_1462096896-3 36 -0.244582 hybrid +147_1-15 Q0 MARCO_35_1393944602-1 37 -0.245502 hybrid +147_1-15 Q0 MARCO_35_1760052217-1 38 -0.249250 hybrid +147_1-15 Q0 MARCO_12_756713754-5 39 -0.250840 hybrid +147_1-15 Q0 MARCO_42_1375247535-22 40 -0.251772 hybrid +147_1-15 Q0 MARCO_35_1390736374-1 41 -0.252930 hybrid +147_1-15 Q0 MARCO_27_1465591908-3 42 -0.257360 hybrid +147_1-15 Q0 KILT_19121315-13 43 -0.262313 hybrid +147_1-15 Q0 KILT_3555476-4 44 -0.262846 hybrid +147_1-15 Q0 MARCO_06_1905588132-2 45 -0.263471 hybrid +147_1-15 Q0 MARCO_13_611665937-1 46 -0.265175 hybrid +147_1-15 Q0 MARCO_27_1545906401-2 47 -0.265368 hybrid +147_1-15 Q0 MARCO_20_210170346-1 48 -0.268298 hybrid +147_1-15 Q0 MARCO_45_1248015362-2 49 -0.268492 hybrid +147_1-15 Q0 MARCO_31_1580484585-1 50 -0.269082 hybrid +147_1-15 Q0 MARCO_27_1536320595-4 51 -0.269855 hybrid +147_1-15 Q0 MARCO_18_448855663-9 52 -0.270706 hybrid +147_1-15 Q0 MARCO_48_1432184170-4 53 -0.271536 hybrid +147_1-15 Q0 MARCO_12_80651690-10 54 -0.272274 hybrid +147_1-15 Q0 MARCO_07_1581112806-11 55 -0.274750 hybrid +147_1-15 Q0 KILT_54769-3 56 -0.278623 hybrid +147_1-15 Q0 MARCO_36_1742669718-4 57 -0.278930 hybrid +147_1-15 Q0 MARCO_14_760432601-2 58 -0.281792 hybrid +147_1-15 Q0 MARCO_24_1499719803-16 59 -0.282599 hybrid +147_1-15 Q0 MARCO_43_715610491-16 60 -0.283053 hybrid +147_1-15 Q0 MARCO_17_4819044320-14 61 -0.284030 hybrid +147_1-15 Q0 MARCO_31_108126189-2 62 -0.284109 hybrid +147_1-15 Q0 MARCO_41_1179833590-14 63 -0.285052 hybrid +147_1-15 Q0 MARCO_30_1425940733-22 64 -0.289652 hybrid +147_1-15 Q0 MARCO_25_1744600447-2 65 -0.290482 hybrid +147_1-15 Q0 KILT_9021936-1 66 -0.290675 hybrid +147_1-15 Q0 MARCO_20_317900954-4 67 -0.290947 hybrid +147_1-15 Q0 MARCO_20_802964364-5 68 -0.292378 hybrid +147_1-15 Q0 MARCO_30_1557943648-4 69 -0.293208 hybrid +147_1-15 Q0 MARCO_14_1075441533-9 70 -0.294116 hybrid +147_1-15 Q0 MARCO_50_1883342863-6 71 -0.294536 hybrid +147_1-15 Q0 MARCO_19_1894178650-2 72 -0.297138 hybrid +147_1-15 Q0 MARCO_41_103764063-12 73 -0.301647 hybrid +147_1-15 Q0 KILT_19533905-2 74 -0.303828 hybrid +147_1-15 Q0 MARCO_46_1301639229-2 75 -0.304225 hybrid +147_1-15 Q0 MARCO_37_666824555-4 76 -0.304918 hybrid +147_1-15 Q0 MARCO_51_328537405-2 77 -0.305304 hybrid +147_1-15 Q0 MARCO_39_958889010-2 78 -0.306202 hybrid +147_1-15 Q0 KILT_12576808-9 79 -0.306395 hybrid +147_1-15 Q0 MARCO_05_832101229-1 80 -0.306985 hybrid +147_1-15 Q0 MARCO_41_1369595424-57 81 -0.307871 hybrid +147_1-15 Q0 MARCO_20_808665745-6 82 -0.309246 hybrid +147_1-15 Q0 MARCO_41_1205142198-10 83 -0.309291 hybrid +147_1-15 Q0 KILT_5840791-1 84 -0.309598 hybrid +147_1-15 Q0 MARCO_50_417967994-1 85 -0.309916 hybrid +147_1-15 Q0 MARCO_41_1174092344-32 86 -0.310109 hybrid +147_1-15 Q0 MARCO_16_3310027016-2 87 -0.310438 hybrid +147_1-15 Q0 MARCO_37_1080643187-26 88 -0.313437 hybrid +147_1-15 Q0 MARCO_03_1544990596-6 89 -0.313642 hybrid +147_1-15 Q0 MARCO_03_659271470-1 90 -0.314868 hybrid +147_1-15 Q0 MARCO_35_1386112905-2 91 -0.315311 hybrid +147_1-15 Q0 MARCO_49_224145666-4 92 -0.315675 hybrid +147_1-15 Q0 MARCO_47_1054661125-3 93 -0.316356 hybrid +147_1-15 Q0 KILT_50160500-1 94 -0.320354 hybrid +147_1-15 Q0 MARCO_45_1459574427-2 95 -0.321581 hybrid +147_1-15 Q0 MARCO_55_1208509594-4 96 -0.322183 hybrid +147_1-15 Q0 MARCO_02_1298501613-3 97 -0.322887 hybrid +147_1-15 Q0 MARCO_01_500783122-6 98 -0.323421 hybrid +147_1-15 Q0 MARCO_39_1009043702-2 99 -0.323739 hybrid +147_1-15 Q0 KILT_32020267-21 100 -0.323830 hybrid +147_1-3 Q0 MARCO_31_1416243046-1 1 0.500000 hybrid +147_1-3 Q0 MARCO_55_248475370-9 2 0.446390 hybrid +147_1-3 Q0 MARCO_41_991260222-29 3 0.390418 hybrid +147_1-3 Q0 MARCO_23_1778040914-16 4 0.376715 hybrid +147_1-3 Q0 MARCO_14_768618022-102 5 0.340810 hybrid +147_1-3 Q0 KILT_47436493-31 6 0.312586 hybrid +147_1-3 Q0 MARCO_15_671634030-5 7 0.281941 hybrid +147_1-3 Q0 MARCO_30_1470404408-9 8 0.279787 hybrid +147_1-3 Q0 MARCO_27_1442572480-1 9 0.272755 hybrid +147_1-3 Q0 MARCO_27_1442572480-2 10 0.271726 hybrid +147_1-3 Q0 MARCO_21_1255731408-1 11 0.216992 hybrid +147_1-3 Q0 MARCO_48_382875781-11 12 0.209579 hybrid +147_1-3 Q0 MARCO_02_45668185-20 13 0.160314 hybrid +147_1-3 Q0 MARCO_24_1266739861-14 14 0.150862 hybrid +147_1-3 Q0 MARCO_48_382875781-6 15 0.148899 hybrid +147_1-3 Q0 MARCO_24_650670225-4 16 0.123704 hybrid +147_1-3 Q0 MARCO_04_933136670-14 17 0.121875 hybrid +147_1-3 Q0 MARCO_04_933159178-12 18 0.121875 hybrid +147_1-3 Q0 MARCO_35_1378085562-2 19 0.119874 hybrid +147_1-3 Q0 MARCO_02_39522089-11 20 0.095003 hybrid +147_1-3 Q0 MARCO_51_186065222-6 21 0.095003 hybrid +147_1-3 Q0 MARCO_45_1191868147-1 22 0.084998 hybrid +147_1-3 Q0 MARCO_23_1778040914-19 23 0.084579 hybrid +147_1-3 Q0 MARCO_23_1556538954-4 24 0.083778 hybrid +147_1-3 Q0 MARCO_37_1196192544-9 25 0.073411 hybrid +147_1-3 Q0 MARCO_47_853147065-1 26 0.070800 hybrid +147_1-3 Q0 MARCO_02_46620966-163 27 0.067522 hybrid +147_1-3 Q0 MARCO_53_731995266-131 28 0.064034 hybrid +147_1-3 Q0 MARCO_36_1293066427-1 29 0.059746 hybrid +147_1-3 Q0 MARCO_52_495894601-4 30 0.051323 hybrid +147_1-3 Q0 MARCO_42_1454403101-1 31 0.048312 hybrid +147_1-3 Q0 MARCO_16_3553443908-5 32 0.046330 hybrid +147_1-3 Q0 MARCO_36_420324808-3 33 0.041298 hybrid +147_1-3 Q0 MARCO_09_1194677850-3 34 0.034838 hybrid +147_1-3 Q0 MARCO_54_1844013231-1 35 0.032322 hybrid +147_1-3 Q0 MARCO_54_520695107-5 36 0.015971 hybrid +147_1-3 Q0 MARCO_41_325541422-10 37 0.010844 hybrid +147_1-3 Q0 MARCO_23_1556538954-3 38 0.004269 hybrid +147_1-3 Q0 MARCO_50_972719298-2 39 -0.004783 hybrid +147_1-3 Q0 MARCO_35_1382108349-6 40 -0.007813 hybrid +147_1-3 Q0 MARCO_14_766359705-4 41 -0.008252 hybrid +147_1-3 Q0 MARCO_50_2368813575-19 42 -0.013073 hybrid +147_1-3 Q0 MARCO_50_1079261357-26 43 -0.013626 hybrid +147_1-3 Q0 MARCO_35_1383520949-3 44 -0.015989 hybrid +147_1-3 Q0 MARCO_57_174821984-3 45 -0.030054 hybrid +147_1-3 Q0 MARCO_52_1095046929-2 46 -0.031864 hybrid +147_1-3 Q0 MARCO_48_382875781-7 47 -0.044804 hybrid +147_1-3 Q0 MARCO_41_94269083-3 48 -0.045338 hybrid +147_1-3 Q0 MARCO_23_1808024726-13 49 -0.046558 hybrid +147_1-3 Q0 MARCO_23_1809586002-4 50 -0.046596 hybrid +147_1-3 Q0 MARCO_23_1798882430-23 51 -0.055458 hybrid +147_1-3 Q0 MARCO_27_1491334648-3 52 -0.056220 hybrid +147_1-3 Q0 MARCO_57_174821984-1 53 -0.056220 hybrid +147_1-3 Q0 MARCO_15_671549562-40 54 -0.058469 hybrid +147_1-3 Q0 MARCO_02_47756713-105 55 -0.062147 hybrid +147_1-3 Q0 MARCO_05_1050265109-2 56 -0.068417 hybrid +147_1-3 Q0 MARCO_50_2629510041-9 57 -0.076288 hybrid +147_1-3 Q0 MARCO_07_833162818-141 58 -0.079909 hybrid +147_1-3 Q0 MARCO_36_623057088-3 59 -0.079947 hybrid +147_1-3 Q0 KILT_42163310-17 60 -0.080557 hybrid +147_1-3 Q0 MARCO_22_349085136-3 61 -0.084063 hybrid +147_1-3 Q0 MARCO_27_1456237500-1 62 -0.084483 hybrid +147_1-3 Q0 MARCO_36_909840830-6 63 -0.089114 hybrid +147_1-3 Q0 KILT_34974765-10 64 -0.093516 hybrid +147_1-3 Q0 MARCO_23_1811616883-30 65 -0.098719 hybrid +147_1-3 Q0 MARCO_16_150246833-19 66 -0.099977 hybrid +147_1-3 Q0 MARCO_01_2197780107-20 67 -0.101044 hybrid +147_1-3 Q0 MARCO_50_893041555-9 68 -0.101654 hybrid +147_1-3 Q0 MARCO_43_877714042-4 69 -0.106761 hybrid +147_1-3 Q0 MARCO_00_1517709176-19 70 -0.108229 hybrid +147_1-3 Q0 MARCO_23_1814151964-1 71 -0.113412 hybrid +147_1-3 Q0 MARCO_36_909840830-2 72 -0.118806 hybrid +147_1-3 Q0 KILT_3935110-6 73 -0.119911 hybrid +147_1-3 Q0 MARCO_46_449853223-4 74 -0.123627 hybrid +147_1-3 Q0 MARCO_12_761118279-3 75 -0.129916 hybrid +147_1-3 Q0 MARCO_07_159041440-8 76 -0.131251 hybrid +147_1-3 Q0 MARCO_41_991260222-27 77 -0.131536 hybrid +147_1-3 Q0 MARCO_38_33511537-3 78 -0.131670 hybrid +147_1-3 Q0 MARCO_20_147165286-5 79 -0.135405 hybrid +147_1-3 Q0 MARCO_08_469858160-5 80 -0.138683 hybrid +147_1-3 Q0 MARCO_23_282237097-3 81 -0.139560 hybrid +147_1-3 Q0 MARCO_38_33511537-2 82 -0.142590 hybrid +147_1-3 Q0 MARCO_02_49153124-153 83 -0.143314 hybrid +147_1-3 Q0 MARCO_07_159041440-42 84 -0.144038 hybrid +147_1-3 Q0 MARCO_07_159041440-16 85 -0.144419 hybrid +147_1-3 Q0 MARCO_55_840951779-6 86 -0.144420 hybrid +147_1-3 Q0 MARCO_17_4817034960-6 87 -0.147392 hybrid +147_1-3 Q0 MARCO_55_801049665-3 88 -0.147774 hybrid +147_1-3 Q0 MARCO_35_369639352-1 89 -0.150022 hybrid +147_1-3 Q0 MARCO_22_1600249812-2 90 -0.150232 hybrid +147_1-3 Q0 MARCO_56_1313781070-6 91 -0.150594 hybrid +147_1-3 Q0 MARCO_48_1389280348-2 92 -0.153567 hybrid +147_1-3 Q0 MARCO_50_2355991632-24 93 -0.154101 hybrid +147_1-3 Q0 MARCO_43_877758127-5 94 -0.155073 hybrid +147_1-3 Q0 MARCO_27_1437599771-1 95 -0.157760 hybrid +147_1-3 Q0 MARCO_32_1692472695-8 96 -0.157779 hybrid +147_1-3 Q0 MARCO_23_1806191614-2 97 -0.160333 hybrid +147_1-3 Q0 MARCO_27_1529557787-4 98 -0.160561 hybrid +147_1-3 Q0 MARCO_14_784836153-6 99 -0.160714 hybrid +147_1-3 Q0 MARCO_44_229371445-14 100 -0.161343 hybrid +147_1-5 Q0 MARCO_50_2209194864-24 1 0.500000 hybrid +147_1-5 Q0 MARCO_53_497047460-4 2 0.495268 hybrid +147_1-5 Q0 MARCO_36_1293066427-1 3 0.466623 hybrid +147_1-5 Q0 MARCO_43_1434459158-5 4 0.371007 hybrid +147_1-5 Q0 MARCO_27_1437599771-1 5 0.361201 hybrid +147_1-5 Q0 MARCO_02_45741576-149 6 0.329653 hybrid +147_1-5 Q0 MARCO_15_670620880-2 7 0.306438 hybrid +147_1-5 Q0 MARCO_49_1323862759-9 8 0.286036 hybrid +147_1-5 Q0 MARCO_27_1438126425-5 9 0.247173 hybrid +147_1-5 Q0 MARCO_49_1675926014-13 10 0.238441 hybrid +147_1-5 Q0 MARCO_15_671549562-31 11 0.235405 hybrid +147_1-5 Q0 MARCO_45_425293262-16 12 0.226792 hybrid +147_1-5 Q0 MARCO_27_1437716547-2 13 0.223575 hybrid +147_1-5 Q0 MARCO_23_1796740640-4 14 0.209524 hybrid +147_1-5 Q0 MARCO_45_1456225220-5 15 0.206349 hybrid +147_1-5 Q0 MARCO_16_3553334913-21 16 0.177041 hybrid +147_1-5 Q0 MARCO_27_1437758015-3 17 0.169321 hybrid +147_1-5 Q0 MARCO_35_1383480701-5 18 0.159201 hybrid +147_1-5 Q0 MARCO_49_1706836981-3 19 0.150106 hybrid +147_1-5 Q0 MARCO_50_1364294280-5 20 0.147831 hybrid +147_1-5 Q0 MARCO_27_1437497848-9 21 0.146986 hybrid +147_1-5 Q0 MARCO_15_697674994-1 22 0.146546 hybrid +147_1-5 Q0 MARCO_30_559539125-10 23 0.142575 hybrid +147_1-5 Q0 MARCO_49_1323862759-14 24 0.141598 hybrid +147_1-5 Q0 MARCO_23_1556538954-5 25 0.136880 hybrid +147_1-5 Q0 MARCO_27_1456302865-5 26 0.133585 hybrid +147_1-5 Q0 MARCO_02_48661155-112 27 0.131833 hybrid +147_1-5 Q0 MARCO_02_46620966-163 28 0.121545 hybrid +147_1-5 Q0 MARCO_27_1437497848-8 29 0.114098 hybrid +147_1-5 Q0 MARCO_23_1796973702-138 30 0.105534 hybrid +147_1-5 Q0 MARCO_15_750793040-15 31 0.103565 hybrid +147_1-5 Q0 MARCO_39_1181847923-6 32 0.096844 hybrid +147_1-5 Q0 MARCO_15_669451360-23 33 0.094163 hybrid +147_1-5 Q0 MARCO_15_665919478-22 34 0.089110 hybrid +147_1-5 Q0 MARCO_27_1437608994-1 35 0.087624 hybrid +147_1-5 Q0 MARCO_15_728345547-2 36 0.086172 hybrid +147_1-5 Q0 MARCO_02_49153124-153 37 0.085655 hybrid +147_1-5 Q0 MARCO_02_45479251-151 38 0.084706 hybrid +147_1-5 Q0 MARCO_57_885434885-9 39 0.074250 hybrid +147_1-5 Q0 MARCO_11_238569465-2 40 0.071542 hybrid +147_1-5 Q0 MARCO_35_1404927520-5 41 0.063850 hybrid +147_1-5 Q0 MARCO_50_1126820692-6 42 0.060479 hybrid +147_1-5 Q0 MARCO_45_1459323048-1 43 0.057380 hybrid +147_1-5 Q0 MARCO_39_1715291846-4 44 0.042876 hybrid +147_1-5 Q0 MARCO_23_1807528251-23 45 0.041152 hybrid +147_1-5 Q0 MARCO_14_763110490-1 46 0.033370 hybrid +147_1-5 Q0 MARCO_39_1181847923-5 47 0.032735 hybrid +147_1-5 Q0 MARCO_23_1800521495-59 48 0.028826 hybrid +147_1-5 Q0 MARCO_35_1362732274-3 49 0.027151 hybrid +147_1-5 Q0 MARCO_30_561903930-25 50 0.016905 hybrid +147_1-5 Q0 MARCO_02_48504470-3 51 0.008397 hybrid +147_1-5 Q0 MARCO_23_1806754010-45 52 -0.012410 hybrid +147_1-5 Q0 MARCO_07_616682014-21 53 -0.012661 hybrid +147_1-5 Q0 MARCO_23_1813210700-131 54 -0.013408 hybrid +147_1-5 Q0 MARCO_23_1779384130-51 55 -0.013478 hybrid +147_1-5 Q0 MARCO_52_1286403136-1 56 -0.019180 hybrid +147_1-5 Q0 MARCO_51_186050017-1 57 -0.020604 hybrid +147_1-5 Q0 MARCO_42_1454325458-1 58 -0.022510 hybrid +147_1-5 Q0 MARCO_23_1811970198-18 59 -0.028791 hybrid +147_1-5 Q0 MARCO_36_421044673-6 60 -0.029720 hybrid +147_1-5 Q0 MARCO_09_1635511369-1 61 -0.030906 hybrid +147_1-5 Q0 MARCO_49_1675926014-11 62 -0.037125 hybrid +147_1-5 Q0 MARCO_23_1798935570-81 63 -0.038738 hybrid +147_1-5 Q0 MARCO_30_562993379-2 64 -0.038905 hybrid +147_1-5 Q0 MARCO_27_1437659259-1 65 -0.039833 hybrid +147_1-5 Q0 MARCO_38_37637565-5 66 -0.040085 hybrid +147_1-5 Q0 MARCO_48_1639886448-9 67 -0.041446 hybrid +147_1-5 Q0 MARCO_45_1456754317-1 68 -0.045201 hybrid +147_1-5 Q0 MARCO_44_203400296-2 69 -0.045975 hybrid +147_1-5 Q0 MARCO_18_3321833430-37 70 -0.048732 hybrid +147_1-5 Q0 MARCO_30_561903930-14 71 -0.049710 hybrid +147_1-5 Q0 MARCO_27_1501816437-3 72 -0.049968 hybrid +147_1-5 Q0 MARCO_02_46464666-125 73 -0.051343 hybrid +147_1-5 Q0 MARCO_23_1800328492-97 74 -0.054965 hybrid +147_1-5 Q0 MARCO_23_1807846622-22 75 -0.055161 hybrid +147_1-5 Q0 MARCO_23_1799145552-2 76 -0.057492 hybrid +147_1-5 Q0 MARCO_02_46823634-50 77 -0.059055 hybrid +147_1-5 Q0 MARCO_02_47637759-3 78 -0.059181 hybrid +147_1-5 Q0 MARCO_21_1249562858-4 79 -0.059258 hybrid +147_1-5 Q0 MARCO_23_1778040914-19 80 -0.059509 hybrid +147_1-5 Q0 MARCO_44_203353122-4 81 -0.059544 hybrid +147_1-5 Q0 MARCO_17_4818251921-3 82 -0.059600 hybrid +147_1-5 Q0 MARCO_23_1796455788-27 83 -0.059698 hybrid +147_1-5 Q0 MARCO_27_1438126425-9 84 -0.064039 hybrid +147_1-5 Q0 MARCO_35_1364092499-13 85 -0.071661 hybrid +147_1-5 Q0 MARCO_23_1799128069-4 86 -0.073427 hybrid +147_1-5 Q0 MARCO_16_971573932-49 87 -0.074900 hybrid +147_1-5 Q0 MARCO_53_497047460-2 88 -0.075290 hybrid +147_1-5 Q0 MARCO_45_425293262-13 89 -0.087980 hybrid +147_1-5 Q0 MARCO_48_382875781-2 90 -0.090597 hybrid +147_1-5 Q0 MARCO_23_1780613870-4 91 -0.091218 hybrid +147_1-5 Q0 MARCO_27_1453108854-1 92 -0.091379 hybrid +147_1-5 Q0 MARCO_57_443556489-15 93 -0.092251 hybrid +147_1-5 Q0 MARCO_13_883835396-10 94 -0.093110 hybrid +147_1-5 Q0 MARCO_02_47756713-105 95 -0.094659 hybrid +147_1-5 Q0 MARCO_49_1561702548-12 96 -0.096355 hybrid +147_1-5 Q0 MARCO_15_665876449-5 97 -0.098023 hybrid +147_1-5 Q0 MARCO_51_186050017-3 98 -0.101716 hybrid +147_1-5 Q0 MARCO_16_3241163921-45 99 -0.103084 hybrid +147_1-5 Q0 MARCO_23_1812569441-4 100 -0.103635 hybrid +147_1-7 Q0 MARCO_31_292579249-1 1 0.500000 hybrid +147_1-7 Q0 MARCO_50_2325178761-36 2 0.442527 hybrid +147_1-7 Q0 MARCO_57_876525725-35 3 0.407530 hybrid +147_1-7 Q0 MARCO_50_2324755045-2 4 0.388958 hybrid +147_1-7 Q0 MARCO_27_1519680337-1 5 0.356502 hybrid +147_1-7 Q0 MARCO_41_81092612-3 6 0.349706 hybrid +147_1-7 Q0 MARCO_35_1381851614-6 7 0.322704 hybrid +147_1-7 Q0 MARCO_27_1437798007-19 8 0.279196 hybrid +147_1-7 Q0 MARCO_49_1675867411-1 9 0.276283 hybrid +147_1-7 Q0 MARCO_55_199988456-1 10 0.262793 hybrid +147_1-7 Q0 MARCO_50_1128860273-19 11 0.252133 hybrid +147_1-7 Q0 MARCO_27_1529313116-3 12 0.248642 hybrid +147_1-7 Q0 MARCO_27_1469100962-17 13 0.234862 hybrid +147_1-7 Q0 MARCO_50_1280687382-19 14 0.233416 hybrid +147_1-7 Q0 MARCO_25_323598048-1 15 0.233292 hybrid +147_1-7 Q0 MARCO_50_1319187576-11 16 0.211703 hybrid +147_1-7 Q0 MARCO_15_1768252777-4 17 0.208522 hybrid +147_1-7 Q0 MARCO_50_1280687382-5 18 0.197614 hybrid +147_1-7 Q0 MARCO_50_2359418999-45 19 0.195713 hybrid +147_1-7 Q0 MARCO_27_1503903517-7 20 0.195507 hybrid +147_1-7 Q0 MARCO_30_1471434701-32 21 0.186479 hybrid +147_1-7 Q0 MARCO_50_1084588181-15 22 0.186231 hybrid +147_1-7 Q0 MARCO_50_2324755045-3 23 0.186231 hybrid +147_1-7 Q0 MARCO_27_1529325433-12 24 0.182182 hybrid +147_1-7 Q0 MARCO_27_1502478943-6 25 0.173587 hybrid +147_1-7 Q0 MARCO_36_105709443-12 26 0.173360 hybrid +147_1-7 Q0 MARCO_19_1809702312-1 27 0.158506 hybrid +147_1-7 Q0 MARCO_36_105709443-6 28 0.153961 hybrid +147_1-7 Q0 MARCO_35_1382480184-1 29 0.151544 hybrid +147_1-7 Q0 MARCO_27_1553652159-1 30 0.145388 hybrid +147_1-7 Q0 MARCO_15_1768252777-3 31 0.141690 hybrid +147_1-7 Q0 MARCO_51_323987477-1 32 0.138839 hybrid +147_1-7 Q0 MARCO_27_1471865385-1 33 0.137641 hybrid +147_1-7 Q0 MARCO_20_742151787-6 34 0.126733 hybrid +147_1-7 Q0 MARCO_15_1768252777-5 35 0.122208 hybrid +147_1-7 Q0 MARCO_43_4226835-1 36 0.094360 hybrid +147_1-7 Q0 MARCO_43_846287811-1 37 0.084299 hybrid +147_1-7 Q0 MARCO_41_100366926-4 38 0.080994 hybrid +147_1-7 Q0 MARCO_35_1374032233-7 39 0.077420 hybrid +147_1-7 Q0 MARCO_11_985899771-20 40 0.077172 hybrid +147_1-7 Q0 MARCO_50_2240949679-6 41 0.060996 hybrid +147_1-7 Q0 MARCO_50_2255250854-11 42 0.055666 hybrid +147_1-7 Q0 MARCO_49_1677000987-1 43 0.044592 hybrid +147_1-7 Q0 MARCO_15_115668472-5 44 0.042981 hybrid +147_1-7 Q0 MARCO_00_1486305240-14 45 0.039469 hybrid +147_1-7 Q0 MARCO_24_1293995984-1 46 0.037816 hybrid +147_1-7 Q0 MARCO_27_1552578080-6 47 0.037197 hybrid +147_1-7 Q0 MARCO_24_1291111045-1 48 0.037114 hybrid +147_1-7 Q0 MARCO_49_1676045599-11 49 0.034366 hybrid +147_1-7 Q0 MARCO_20_1179193737-4 50 0.034015 hybrid +147_1-7 Q0 MARCO_27_1446937947-7 51 0.028871 hybrid +147_1-7 Q0 MARCO_27_1453084829-1 52 0.026041 hybrid +147_1-7 Q0 MARCO_46_1249515612-3 53 0.024450 hybrid +147_1-7 Q0 MARCO_14_1685735957-14 54 0.021186 hybrid +147_1-7 Q0 MARCO_09_1808409184-17 55 0.019760 hybrid +147_1-7 Q0 MARCO_36_1293073008-8 56 0.017653 hybrid +147_1-7 Q0 MARCO_27_1461050502-1 57 0.013996 hybrid +147_1-7 Q0 KILT_55755841-17 58 0.012819 hybrid +147_1-7 Q0 MARCO_53_1559103184-3 59 0.012220 hybrid +147_1-7 Q0 MARCO_19_2362075688-1 60 0.009679 hybrid +147_1-7 Q0 MARCO_50_1288341146-18 61 0.005361 hybrid +147_1-7 Q0 MARCO_50_2240949679-4 62 0.002779 hybrid +147_1-7 Q0 MARCO_53_496976677-1 63 -0.000692 hybrid +147_1-7 Q0 MARCO_19_2362075688-2 64 -0.001002 hybrid +147_1-7 Q0 MARCO_24_1367747952-9 65 -0.003088 hybrid +147_1-7 Q0 MARCO_24_1293963554-1 66 -0.004390 hybrid +147_1-7 Q0 MARCO_53_1390146476-1 67 -0.005134 hybrid +147_1-7 Q0 MARCO_12_1488578051-4 68 -0.006001 hybrid +147_1-7 Q0 MARCO_27_1503528120-2 69 -0.006105 hybrid +147_1-7 Q0 MARCO_35_1399083457-13 70 -0.006146 hybrid +147_1-7 Q0 MARCO_27_1202875577-4 71 -0.007200 hybrid +147_1-7 Q0 MARCO_36_422340567-1 72 -0.007654 hybrid +147_1-7 Q0 MARCO_24_1293941552-1 73 -0.007799 hybrid +147_1-7 Q0 MARCO_27_1506203682-5 74 -0.009328 hybrid +147_1-7 Q0 MARCO_45_1459855268-1 75 -0.018025 hybrid +147_1-7 Q0 MARCO_12_1488268213-2 76 -0.020917 hybrid +147_1-7 Q0 MARCO_47_851624191-24 77 -0.024781 hybrid +147_1-7 Q0 MARCO_50_2240949679-1 78 -0.031371 hybrid +147_1-7 Q0 MARCO_45_425222695-2 79 -0.032610 hybrid +147_1-7 Q0 MARCO_50_1819733998-11 80 -0.034759 hybrid +147_1-7 Q0 MARCO_51_320641387-1 81 -0.041349 hybrid +147_1-7 Q0 MARCO_27_1456205891-1 82 -0.043808 hybrid +147_1-7 Q0 MARCO_44_609297930-1 83 -0.045997 hybrid +147_1-7 Q0 MARCO_22_1795003517-3 84 -0.051265 hybrid +147_1-7 Q0 MARCO_19_2448474791-6 85 -0.052195 hybrid +147_1-7 Q0 MARCO_35_1400355716-14 86 -0.053497 hybrid +147_1-7 Q0 MARCO_11_985885145-1 87 -0.055624 hybrid +147_1-7 Q0 MARCO_54_518250967-21 88 -0.056905 hybrid +147_1-7 Q0 MARCO_15_1965034966-42 89 -0.057918 hybrid +147_1-7 Q0 MARCO_47_846252338-1 90 -0.066615 hybrid +147_1-7 Q0 MARCO_28_1332369854-1 91 -0.072771 hybrid +147_1-7 Q0 MARCO_50_2240949679-176 92 -0.073474 hybrid +147_1-7 Q0 MARCO_50_2295788772-28 93 -0.076779 hybrid +147_1-7 Q0 MARCO_27_1501270123-1 94 -0.076862 hybrid +147_1-7 Q0 MARCO_50_2251099482-22 95 -0.079072 hybrid +147_1-7 Q0 MARCO_24_1367747952-47 96 -0.079403 hybrid +147_1-7 Q0 MARCO_35_1407231883-13 97 -0.079651 hybrid +147_1-7 Q0 MARCO_00_1161503580-1 98 -0.082316 hybrid +147_1-7 Q0 MARCO_27_1503865106-2 99 -0.084650 hybrid +147_1-7 Q0 MARCO_37_160522729-2 100 -0.086386 hybrid +147_1-9 Q0 MARCO_53_496976677-4 1 0.500000 hybrid +147_1-9 Q0 MARCO_36_932776067-11 2 0.462773 hybrid +147_1-9 Q0 MARCO_27_1438141246-1 3 0.341560 hybrid +147_1-9 Q0 MARCO_27_1503679797-1 4 0.266909 hybrid +147_1-9 Q0 MARCO_27_1438156053-4 5 0.233725 hybrid +147_1-9 Q0 MARCO_50_2240949679-3 6 0.206474 hybrid +147_1-9 Q0 MARCO_27_1543213346-1 7 0.204551 hybrid +147_1-9 Q0 MARCO_35_1383610996-2 8 0.185683 hybrid +147_1-9 Q0 MARCO_50_2306031031-65 9 0.176874 hybrid +147_1-9 Q0 MARCO_50_1101752988-15 10 0.159485 hybrid +147_1-9 Q0 MARCO_17_4817669284-44 11 0.157775 hybrid +147_1-9 Q0 MARCO_02_48799579-45 12 0.152351 hybrid +147_1-9 Q0 MARCO_25_1749129501-5 13 0.151185 hybrid +147_1-9 Q0 MARCO_50_1888991651-6 14 0.140567 hybrid +147_1-9 Q0 MARCO_27_1543213346-2 15 0.132891 hybrid +147_1-9 Q0 MARCO_50_2240949679-34 16 0.113826 hybrid +147_1-9 Q0 MARCO_19_1809724453-4 17 0.111788 hybrid +147_1-9 Q0 MARCO_50_2465931623-2 18 0.074101 hybrid +147_1-9 Q0 KILT_44240443-7 19 0.066343 hybrid +147_1-9 Q0 MARCO_19_2041249079-44 20 0.065571 hybrid +147_1-9 Q0 MARCO_43_1449814384-53 21 0.065127 hybrid +147_1-9 Q0 MARCO_23_1806853430-12 22 0.055430 hybrid +147_1-9 Q0 MARCO_50_2306031031-20 23 0.052488 hybrid +147_1-9 Q0 MARCO_50_2240949679-83 24 0.051190 hybrid +147_1-9 Q0 MARCO_50_1126830836-8 25 0.046538 hybrid +147_1-9 Q0 MARCO_18_3903302440-39 26 0.037433 hybrid +147_1-9 Q0 MARCO_47_1000462428-8 27 0.036891 hybrid +147_1-9 Q0 MARCO_30_835825400-2 28 0.031976 hybrid +147_1-9 Q0 MARCO_27_1456317022-8 29 0.027309 hybrid +147_1-9 Q0 MARCO_36_932776067-3 30 0.026947 hybrid +147_1-9 Q0 MARCO_28_83915283-2 31 0.023840 hybrid +147_1-9 Q0 MARCO_53_898223174-11 32 0.022411 hybrid +147_1-9 Q0 MARCO_23_1812338070-13 33 0.018696 hybrid +147_1-9 Q0 MARCO_02_45186110-1 34 0.008046 hybrid +147_1-9 Q0 MARCO_50_2297261491-51 35 -0.001372 hybrid +147_1-9 Q0 MARCO_00_1524703379-29 36 -0.002046 hybrid +147_1-9 Q0 MARCO_50_1126830836-15 37 -0.004232 hybrid +147_1-9 Q0 MARCO_35_289764123-5 38 -0.006483 hybrid +147_1-9 Q0 MARCO_04_208927901-2 39 -0.009393 hybrid +147_1-9 Q0 MARCO_51_186091150-1 40 -0.021801 hybrid +147_1-9 Q0 MARCO_49_535133112-100 41 -0.029806 hybrid +147_1-9 Q0 MARCO_27_1490209751-3 42 -0.042215 hybrid +147_1-9 Q0 MARCO_26_25686146-2 43 -0.052668 hybrid +147_1-9 Q0 MARCO_30_1183947188-4 44 -0.053687 hybrid +147_1-9 Q0 MARCO_23_1781275447-3 45 -0.054344 hybrid +147_1-9 Q0 MARCO_19_2362414531-2 46 -0.056251 hybrid +147_1-9 Q0 MARCO_34_836152388-32 47 -0.058683 hybrid +147_1-9 Q0 MARCO_57_1375309707-12 48 -0.060179 hybrid +147_1-9 Q0 MARCO_27_1437798007-8 49 -0.061116 hybrid +147_1-9 Q0 MARCO_02_45050679-90 50 -0.065619 hybrid +147_1-9 Q0 MARCO_36_419583277-6 51 -0.070336 hybrid +147_1-9 Q0 MARCO_39_725954118-1 52 -0.075431 hybrid +147_1-9 Q0 MARCO_53_733432913-8 53 -0.084043 hybrid +147_1-9 Q0 MARCO_27_1502096454-19 54 -0.084537 hybrid +147_1-9 Q0 MARCO_35_1361234858-10 55 -0.086312 hybrid +147_1-9 Q0 MARCO_23_1804028801-2 56 -0.086624 hybrid +147_1-9 Q0 MARCO_02_39118721-58 57 -0.089895 hybrid +147_1-9 Q0 MARCO_15_669338168-11 58 -0.092245 hybrid +147_1-9 Q0 MARCO_34_1552690727-2 59 -0.093576 hybrid +147_1-9 Q0 MARCO_50_1126830836-2 60 -0.098704 hybrid +147_1-9 Q0 MARCO_50_1128860273-13 61 -0.099148 hybrid +147_1-9 Q0 MARCO_27_1553652159-5 62 -0.118394 hybrid +147_1-9 Q0 MARCO_23_1296007062-2 63 -0.118789 hybrid +147_1-9 Q0 MARCO_49_1720367725-2 64 -0.129160 hybrid +147_1-9 Q0 MARCO_22_1318837761-13 65 -0.129801 hybrid +147_1-9 Q0 MARCO_48_382841535-5 66 -0.131066 hybrid +147_1-9 Q0 MARCO_40_175150328-3 67 -0.131066 hybrid +147_1-9 Q0 MARCO_23_1796973702-19 68 -0.131641 hybrid +147_1-9 Q0 MARCO_50_2240949679-60 69 -0.132973 hybrid +147_1-9 Q0 MARCO_55_835928108-2 70 -0.134600 hybrid +147_1-9 Q0 MARCO_36_888487863-6 71 -0.136737 hybrid +147_1-9 Q0 MARCO_22_1318837761-5 72 -0.139350 hybrid +147_1-9 Q0 MARCO_50_1740967306-21 73 -0.143870 hybrid +147_1-9 Q0 MARCO_20_801674481-4 74 -0.144659 hybrid +147_1-9 Q0 MARCO_21_1249562858-5 75 -0.149704 hybrid +147_1-9 Q0 MARCO_45_1470468331-7 76 -0.160108 hybrid +147_1-9 Q0 MARCO_54_1489646693-3 77 -0.160996 hybrid +147_1-9 Q0 MARCO_53_1390146476-3 78 -0.162031 hybrid +147_1-9 Q0 MARCO_50_2029098670-28 79 -0.162606 hybrid +147_1-9 Q0 MARCO_02_48799579-46 80 -0.165006 hybrid +147_1-9 Q0 MARCO_50_1268893867-27 81 -0.169920 hybrid +147_1-9 Q0 MARCO_27_1540705231-2 82 -0.170841 hybrid +147_1-9 Q0 MARCO_22_299156330-5 83 -0.172090 hybrid +147_1-9 Q0 MARCO_02_45186110-14 84 -0.172353 hybrid +147_1-9 Q0 MARCO_23_1296007062-4 85 -0.173865 hybrid +147_1-9 Q0 MARCO_14_763368349-3 86 -0.174391 hybrid +147_1-9 Q0 MARCO_44_35079726-12 87 -0.174539 hybrid +147_1-9 Q0 MARCO_13_890390430-4 88 -0.175262 hybrid +147_1-9 Q0 MARCO_50_1452516695-31 89 -0.179815 hybrid +147_1-9 Q0 MARCO_44_608064125-3 90 -0.181162 hybrid +147_1-9 Q0 MARCO_12_761852774-7 91 -0.183249 hybrid +147_1-9 Q0 MARCO_27_1491503533-1 92 -0.185945 hybrid +147_1-9 Q0 MARCO_20_823430145-16 93 -0.188032 hybrid +147_1-9 Q0 MARCO_20_826746873-12 94 -0.188033 hybrid +147_1-9 Q0 MARCO_20_825339361-28 95 -0.188033 hybrid +147_1-9 Q0 MARCO_41_51235923-28 96 -0.188033 hybrid +147_1-9 Q0 MARCO_41_58646552-25 97 -0.188033 hybrid +147_1-9 Q0 MARCO_00_1160843662-1 98 -0.188953 hybrid +147_1-9 Q0 KILT_22144990-22 99 -0.189167 hybrid +147_1-9 Q0 KILT_18813956-4 100 -0.190563 hybrid +147_2-1 Q0 MARCO_51_320444747-1 1 0.500000 hybrid +147_2-1 Q0 MARCO_30_562455563-1 2 0.476768 hybrid +147_2-1 Q0 MARCO_30_562930811-1 3 0.428606 hybrid +147_2-1 Q0 MARCO_30_562299449-1 4 0.427025 hybrid +147_2-1 Q0 MARCO_23_1830567156-1 5 0.308865 hybrid +147_2-1 Q0 MARCO_32_914387130-1 6 0.232076 hybrid +147_2-1 Q0 MARCO_23_1806883365-3 7 0.228797 hybrid +147_2-1 Q0 MARCO_09_576029491-2 8 0.179124 hybrid +147_2-1 Q0 MARCO_23_1780393135-12 9 0.177031 hybrid +147_2-1 Q0 MARCO_52_1094877669-1 10 0.167659 hybrid +147_2-1 Q0 MARCO_17_4816477810-123 11 0.153520 hybrid +147_2-1 Q0 MARCO_30_559363186-1 12 0.123009 hybrid +147_2-1 Q0 MARCO_00_1486305240-1 13 0.111986 hybrid +147_2-1 Q0 MARCO_00_1517709176-1 14 0.094591 hybrid +147_2-1 Q0 MARCO_30_561903930-4 15 0.092568 hybrid +147_2-1 Q0 MARCO_50_1285188383-50 16 0.092195 hybrid +147_2-1 Q0 MARCO_46_450477269-56 17 0.086591 hybrid +147_2-1 Q0 MARCO_23_1830544655-1 18 0.082870 hybrid +147_2-1 Q0 MARCO_23_1830557751-1 19 0.079056 hybrid +147_2-1 Q0 MARCO_31_164708709-1 20 0.074987 hybrid +147_2-1 Q0 MARCO_54_1754005427-1 21 0.074940 hybrid +147_2-1 Q0 MARCO_23_1806853430-11 22 0.069870 hybrid +147_2-1 Q0 MARCO_46_449775679-1 23 0.068801 hybrid +147_2-1 Q0 MARCO_24_1291111045-1 24 0.068661 hybrid +147_2-1 Q0 MARCO_44_252862919-2 25 0.064615 hybrid +147_2-1 Q0 MARCO_33_62785826-1 26 0.060382 hybrid +147_2-1 Q0 MARCO_14_764623428-1 27 0.050057 hybrid +147_2-1 Q0 MARCO_09_1102966525-2 28 0.047220 hybrid +147_2-1 Q0 MARCO_28_440940849-43 29 0.047080 hybrid +147_2-1 Q0 MARCO_16_3241163921-23 30 0.046476 hybrid +147_2-1 Q0 MARCO_17_4816477810-1 31 0.036569 hybrid +147_2-1 Q0 MARCO_24_433914770-1 32 0.034941 hybrid +147_2-1 Q0 MARCO_31_143768625-1 33 0.032592 hybrid +147_2-1 Q0 MARCO_17_3800206230-3 34 0.032011 hybrid +147_2-1 Q0 MARCO_26_456985349-1 35 0.028732 hybrid +147_2-1 Q0 MARCO_08_1414371258-8 36 0.024988 hybrid +147_2-1 Q0 MARCO_31_292579249-1 37 0.024895 hybrid +147_2-1 Q0 MARCO_08_1414165897-5 38 0.018406 hybrid +147_2-1 Q0 MARCO_46_180160081-11 39 0.016244 hybrid +147_2-1 Q0 MARCO_27_1437906360-1 40 0.016174 hybrid +147_2-1 Q0 MARCO_27_1543423099-1 41 0.011872 hybrid +147_2-1 Q0 MARCO_47_548936940-1 42 -0.000733 hybrid +147_2-1 Q0 MARCO_23_1805608158-1 43 -0.003174 hybrid +147_2-1 Q0 MARCO_17_4816477810-237 44 -0.006872 hybrid +147_2-1 Q0 MARCO_17_4816477810-239 45 -0.006872 hybrid +147_2-1 Q0 MARCO_31_139707867-1 46 -0.008453 hybrid +147_2-1 Q0 MARCO_31_171424509-1 47 -0.010104 hybrid +147_2-1 Q0 MARCO_55_351697089-4 48 -0.013779 hybrid +147_2-1 Q0 MARCO_31_121704207-1 49 -0.016802 hybrid +147_2-1 Q0 MARCO_25_11296890-2 50 -0.017337 hybrid +147_2-1 Q0 MARCO_31_131612596-1 51 -0.018523 hybrid +147_2-1 Q0 MARCO_31_138568627-1 52 -0.018523 hybrid +147_2-1 Q0 MARCO_31_188837339-1 53 -0.018523 hybrid +147_2-1 Q0 MARCO_27_1427608066-1 54 -0.024104 hybrid +147_2-1 Q0 MARCO_18_1451097188-1 55 -0.029151 hybrid +147_2-1 Q0 MARCO_27_1457199454-1 56 -0.030918 hybrid +147_2-1 Q0 MARCO_50_1216520111-15 57 -0.031639 hybrid +147_2-1 Q0 MARCO_07_779160978-1 58 -0.032197 hybrid +147_2-1 Q0 MARCO_17_2668085167-5 59 -0.032941 hybrid +147_2-1 Q0 KILT_16368269-5 60 -0.034081 hybrid +147_2-1 Q0 MARCO_33_418050929-17 61 -0.038615 hybrid +147_2-1 Q0 MARCO_23_1809450626-1 62 -0.042197 hybrid +147_2-1 Q0 KILT_52281037-9 63 -0.042429 hybrid +147_2-1 Q0 MARCO_23_98965919-2 64 -0.045127 hybrid +147_2-1 Q0 MARCO_54_1851578348-1 65 -0.047941 hybrid +147_2-1 Q0 MARCO_17_4816848696-28 66 -0.053243 hybrid +147_2-1 Q0 MARCO_26_778310060-9 67 -0.053801 hybrid +147_2-1 Q0 MARCO_23_273085780-3 68 -0.054778 hybrid +147_2-1 Q0 MARCO_21_814730143-4 69 -0.054987 hybrid +147_2-1 Q0 MARCO_38_242825135-1 70 -0.055708 hybrid +147_2-1 Q0 MARCO_16_4172793984-30 71 -0.056382 hybrid +147_2-1 Q0 MARCO_13_563068921-1 72 -0.056661 hybrid +147_2-1 Q0 MARCO_49_1675867411-4 73 -0.062429 hybrid +147_2-1 Q0 MARCO_23_1812095606-2 74 -0.063196 hybrid +147_2-1 Q0 MARCO_02_38589484-5 75 -0.064522 hybrid +147_2-1 Q0 MARCO_30_561903930-2 76 -0.064847 hybrid +147_2-1 Q0 MARCO_23_1781575170-22 77 -0.065568 hybrid +147_2-1 Q0 MARCO_50_2295633894-92 78 -0.066103 hybrid +147_2-1 Q0 MARCO_09_1789952703-2 79 -0.067010 hybrid +147_2-1 Q0 MARCO_18_4310883501-55 80 -0.067545 hybrid +147_2-1 Q0 MARCO_30_562857078-1 81 -0.068080 hybrid +147_2-1 Q0 MARCO_13_118539219-2 82 -0.069777 hybrid +147_2-1 Q0 MARCO_31_188148118-1 83 -0.070638 hybrid +147_2-1 Q0 MARCO_27_1529028875-4 84 -0.070638 hybrid +147_2-1 Q0 MARCO_46_1249515612-1 85 -0.072917 hybrid +147_2-1 Q0 MARCO_14_763508425-1 86 -0.074498 hybrid +147_2-1 Q0 MARCO_27_1393756162-3 87 -0.076405 hybrid +147_2-1 Q0 KILT_27306717-38 88 -0.080033 hybrid +147_2-1 Q0 MARCO_55_346195084-1 89 -0.081870 hybrid +147_2-1 Q0 MARCO_17_4473613656-1 90 -0.084382 hybrid +147_2-1 Q0 MARCO_15_1965471060-9 91 -0.085173 hybrid +147_2-1 Q0 MARCO_43_2993777-1 92 -0.085173 hybrid +147_2-1 Q0 MARCO_23_1806853430-10 93 -0.085242 hybrid +147_2-1 Q0 MARCO_44_684023906-1 94 -0.085638 hybrid +147_2-1 Q0 MARCO_05_1033549259-1 95 -0.086172 hybrid +147_2-1 Q0 MARCO_50_1319187576-31 96 -0.093312 hybrid +147_2-1 Q0 MARCO_16_2790395129-44 97 -0.094521 hybrid +147_2-1 Q0 MARCO_16_2790395129-46 98 -0.094521 hybrid +147_2-1 Q0 MARCO_16_3689048096-20 99 -0.094521 hybrid +147_2-1 Q0 MARCO_16_3689048096-22 100 -0.094522 hybrid +147_2-3 Q0 KILT_41219344-2 1 0.500000 hybrid +147_2-3 Q0 KILT_39293265-6 2 0.429471 hybrid +147_2-3 Q0 MARCO_17_4817097038-7 3 0.392546 hybrid +147_2-3 Q0 KILT_16173936-6 4 0.376059 hybrid +147_2-3 Q0 KILT_18309880-2 5 0.333859 hybrid +147_2-3 Q0 KILT_53971068-2 6 0.328399 hybrid +147_2-3 Q0 MARCO_09_587075624-5 7 0.313881 hybrid +147_2-3 Q0 MARCO_17_4817185859-25 8 0.271081 hybrid +147_2-3 Q0 MARCO_17_4816382521-3 9 0.260777 hybrid +147_2-3 Q0 MARCO_14_769895365-1 10 0.257824 hybrid +147_2-3 Q0 MARCO_17_4409145952-1 11 0.249843 hybrid +147_2-3 Q0 KILT_10925881-2 12 0.225820 hybrid +147_2-3 Q0 KILT_5727147-2 13 0.225220 hybrid +147_2-3 Q0 MARCO_17_1866865445-4 14 0.214670 hybrid +147_2-3 Q0 MARCO_19_1286364023-8 15 0.207811 hybrid +147_2-3 Q0 KILT_1344840-3 16 0.197476 hybrid +147_2-3 Q0 MARCO_17_2857684702-6 17 0.195262 hybrid +147_2-3 Q0 MARCO_17_3094322423-19 18 0.189510 hybrid +147_2-3 Q0 MARCO_27_1497675795-2 19 0.188157 hybrid +147_2-3 Q0 KILT_4710589-3 20 0.185665 hybrid +147_2-3 Q0 KILT_20966-23 21 0.181036 hybrid +147_2-3 Q0 KILT_46476174-5 22 0.170563 hybrid +147_2-3 Q0 KILT_10846785-1 23 0.159013 hybrid +147_2-3 Q0 KILT_18309880-1 24 0.158413 hybrid +147_2-3 Q0 KILT_6944255-5 25 0.151770 hybrid +147_2-3 Q0 KILT_2122904-1 26 0.128547 hybrid +147_2-3 Q0 KILT_1321703-1 27 0.118950 hybrid +147_2-3 Q0 KILT_3027082-1 28 0.109723 hybrid +147_2-3 Q0 MARCO_17_2668085167-4 29 0.104648 hybrid +147_2-3 Q0 MARCO_16_4110877543-34 30 0.100988 hybrid +147_2-3 Q0 KILT_1321703-5 31 0.085178 hybrid +147_2-3 Q0 KILT_17659721-1 32 0.080933 hybrid +147_2-3 Q0 KILT_6944255-6 33 0.076473 hybrid +147_2-3 Q0 MARCO_09_587075624-1 34 0.050190 hybrid +147_2-3 Q0 KILT_49062241-1 35 0.048621 hybrid +147_2-3 Q0 KILT_49050916-41 36 0.045623 hybrid +147_2-3 Q0 MARCO_18_4359692882-12 37 0.036626 hybrid +147_2-3 Q0 KILT_20786773-3 38 0.032043 hybrid +147_2-3 Q0 KILT_4836215-1 39 0.031566 hybrid +147_2-3 Q0 KILT_2291862-11 40 0.028013 hybrid +147_2-3 Q0 KILT_3745622-7 41 0.025630 hybrid +147_2-3 Q0 KILT_3745622-1 42 0.025476 hybrid +147_2-3 Q0 MARCO_44_21312572-4 43 0.019785 hybrid +147_2-3 Q0 MARCO_18_2480592752-5 44 0.018986 hybrid +147_2-3 Q0 MARCO_00_1365163276-11 45 0.015725 hybrid +147_2-3 Q0 KILT_15003536-3 46 0.007882 hybrid +147_2-3 Q0 MARCO_43_353595745-9 47 0.007021 hybrid +147_2-3 Q0 MARCO_46_450979501-1 48 0.006990 hybrid +147_2-3 Q0 MARCO_17_4817578814-3 49 -0.001545 hybrid +147_2-3 Q0 MARCO_18_3756735521-41 50 -0.002622 hybrid +147_2-3 Q0 KILT_30151699-3 51 -0.007589 hybrid +147_2-3 Q0 MARCO_17_927669631-4 52 -0.007590 hybrid +147_2-3 Q0 MARCO_00_1524703379-45 53 -0.010681 hybrid +147_2-3 Q0 KILT_43029221-11 54 -0.012388 hybrid +147_2-3 Q0 KILT_35812202-5 55 -0.016878 hybrid +147_2-3 Q0 MARCO_27_236878275-9 56 -0.017970 hybrid +147_2-3 Q0 MARCO_18_3251149523-3 57 -0.018616 hybrid +147_2-3 Q0 KILT_82217-1 58 -0.025306 hybrid +147_2-3 Q0 MARCO_17_3674752928-7 59 -0.025706 hybrid +147_2-3 Q0 MARCO_11_40146335-13 60 -0.029720 hybrid +147_2-3 Q0 MARCO_17_4817340245-15 61 -0.048944 hybrid +147_2-3 Q0 KILT_2422791-2 62 -0.052358 hybrid +147_2-3 Q0 KILT_22114132-40 63 -0.052712 hybrid +147_2-3 Q0 KILT_46476174-1 64 -0.053373 hybrid +147_2-3 Q0 MARCO_17_2857684702-2 65 -0.069598 hybrid +147_2-3 Q0 MARCO_09_423113473-27 66 -0.073305 hybrid +147_2-3 Q0 MARCO_06_1964730573-2 67 -0.076934 hybrid +147_2-3 Q0 KILT_9727571-1 68 -0.080579 hybrid +147_2-3 Q0 KILT_3745622-9 69 -0.082763 hybrid +147_2-3 Q0 KILT_43815-2 70 -0.083117 hybrid +147_2-3 Q0 MARCO_27_236878275-6 71 -0.083163 hybrid +147_2-3 Q0 MARCO_13_622964593-1 72 -0.084224 hybrid +147_2-3 Q0 KILT_335195-21 73 -0.086561 hybrid +147_2-3 Q0 MARCO_17_3094322423-37 74 -0.086761 hybrid +147_2-3 Q0 KILT_1167665-1 75 -0.087131 hybrid +147_2-3 Q0 MARCO_50_1285188383-16 76 -0.087838 hybrid +147_2-3 Q0 KILT_9105-27 77 -0.102802 hybrid +147_2-3 Q0 KILT_5027882-11 78 -0.103602 hybrid +147_2-3 Q0 MARCO_41_652583919-2 79 -0.105585 hybrid +147_2-3 Q0 KILT_5578171-1 80 -0.106939 hybrid +147_2-3 Q0 MARCO_00_973333555-1 81 -0.108000 hybrid +147_2-3 Q0 MARCO_46_450672211-1 82 -0.108338 hybrid +147_2-3 Q0 MARCO_01_282457723-39 83 -0.111553 hybrid +147_2-3 Q0 MARCO_07_296780689-1 84 -0.113721 hybrid +147_2-3 Q0 MARCO_18_3823079190-11 85 -0.116735 hybrid +147_2-3 Q0 MARCO_09_1737004245-1 86 -0.117028 hybrid +147_2-3 Q0 KILT_19106003-5 87 -0.118658 hybrid +147_2-3 Q0 KILT_5027882-10 88 -0.128685 hybrid +147_2-3 Q0 KILT_19207402-7 89 -0.128746 hybrid +147_2-3 Q0 MARCO_35_1381811664-1 90 -0.129669 hybrid +147_2-3 Q0 MARCO_00_66103210-1 91 -0.129777 hybrid +147_2-3 Q0 MARCO_36_1729753709-6 92 -0.130669 hybrid +147_2-3 Q0 KILT_54653881-6 93 -0.131530 hybrid +147_2-3 Q0 KILT_3491110-2 94 -0.131576 hybrid +147_2-3 Q0 MARCO_03_1576074477-2 95 -0.132791 hybrid +147_2-3 Q0 MARCO_32_458462841-5 96 -0.132883 hybrid +147_2-3 Q0 KILT_32651035-3 97 -0.135436 hybrid +147_2-3 Q0 MARCO_17_3166511070-16 98 -0.137436 hybrid +147_2-3 Q0 KILT_7588705-1 99 -0.137605 hybrid +147_2-3 Q0 KILT_50870289-14 100 -0.142203 hybrid +147_2-5 Q0 MARCO_04_1015710436-2 1 0.500000 hybrid +147_2-5 Q0 MARCO_30_1719750339-1 2 0.452898 hybrid +147_2-5 Q0 MARCO_23_1779943980-7 3 0.431721 hybrid +147_2-5 Q0 MARCO_18_4414483041-1 4 0.382508 hybrid +147_2-5 Q0 MARCO_27_1502096454-1 5 0.366430 hybrid +147_2-5 Q0 MARCO_23_1813079667-16 6 0.339450 hybrid +147_2-5 Q0 MARCO_09_576029491-2 7 0.315937 hybrid +147_2-5 Q0 MARCO_36_418245519-21 8 0.308752 hybrid +147_2-5 Q0 MARCO_19_542516438-1 9 0.307697 hybrid +147_2-5 Q0 MARCO_44_200355596-5 10 0.298427 hybrid +147_2-5 Q0 MARCO_03_529301538-7 11 0.287977 hybrid +147_2-5 Q0 MARCO_09_1102966525-1 12 0.284837 hybrid +147_2-5 Q0 MARCO_35_1371884408-1 13 0.267478 hybrid +147_2-5 Q0 MARCO_09_1789966428-2 14 0.264112 hybrid +147_2-5 Q0 MARCO_57_941722943-8 15 0.255169 hybrid +147_2-5 Q0 MARCO_46_449818260-1 16 0.238991 hybrid +147_2-5 Q0 MARCO_46_450477269-56 17 0.227159 hybrid +147_2-5 Q0 MARCO_23_1806853430-11 18 0.209096 hybrid +147_2-5 Q0 MARCO_46_449832563-1 19 0.207715 hybrid +147_2-5 Q0 MARCO_57_153268953-1 20 0.205730 hybrid +147_2-5 Q0 MARCO_19_542516438-3 21 0.188371 hybrid +147_2-5 Q0 MARCO_17_4816477810-1 22 0.173123 hybrid +147_2-5 Q0 MARCO_05_1033549259-3 23 0.170736 hybrid +147_2-5 Q0 MARCO_16_971573932-1 24 0.158100 hybrid +147_2-5 Q0 MARCO_45_1457010153-1 25 0.149810 hybrid +147_2-5 Q0 MARCO_52_1094877669-1 26 0.129537 hybrid +147_2-5 Q0 MARCO_35_1408633592-1 27 0.118886 hybrid +147_2-5 Q0 MARCO_46_449775679-1 28 0.107707 hybrid +147_2-5 Q0 MARCO_27_1475566154-7 29 0.096930 hybrid +147_2-5 Q0 MARCO_35_1479408617-3 30 0.093790 hybrid +147_2-5 Q0 MARCO_23_1807630496-4 31 0.082410 hybrid +147_2-5 Q0 KILT_597264-18 32 0.079596 hybrid +147_2-5 Q0 MARCO_17_4816477810-123 33 0.079496 hybrid +147_2-5 Q0 MARCO_26_778310060-9 34 0.075502 hybrid +147_2-5 Q0 MARCO_02_38589484-5 35 0.063921 hybrid +147_2-5 Q0 MARCO_31_125165974-1 36 0.059851 hybrid +147_2-5 Q0 MARCO_30_563318021-7 37 0.059726 hybrid +147_2-5 Q0 MARCO_27_1438156053-1 38 0.055731 hybrid +147_2-5 Q0 MARCO_36_1293017830-3 39 0.053772 hybrid +147_2-5 Q0 MARCO_27_1519358559-1 40 0.052265 hybrid +147_2-5 Q0 MARCO_23_1806853430-10 41 0.041538 hybrid +147_2-5 Q0 MARCO_31_189549858-1 42 0.041538 hybrid +147_2-5 Q0 MARCO_54_1479042562-3 43 0.041437 hybrid +147_2-5 Q0 KILT_362238-25 44 0.040005 hybrid +147_2-5 Q0 MARCO_23_1806883365-3 45 0.039930 hybrid +147_2-5 Q0 KILT_54537218-1 46 0.039202 hybrid +147_2-5 Q0 MARCO_14_763324740-2 47 0.035257 hybrid +147_2-5 Q0 MARCO_32_914387130-1 48 0.034655 hybrid +147_2-5 Q0 MARCO_02_297147101-1 49 0.033147 hybrid +147_2-5 Q0 MARCO_31_131612596-1 50 0.024355 hybrid +147_2-5 Q0 MARCO_31_292579249-1 51 0.023853 hybrid +147_2-5 Q0 MARCO_44_33070735-2 52 0.023852 hybrid +147_2-5 Q0 MARCO_55_353238279-5 53 0.020963 hybrid +147_2-5 Q0 MARCO_23_1778040914-2 54 0.019934 hybrid +147_2-5 Q0 MARCO_36_417954033-2 55 0.002173 hybrid +147_2-5 Q0 MARCO_35_231027854-15 56 0.001872 hybrid +147_2-5 Q0 MARCO_43_842462175-1 57 -0.002625 hybrid +147_2-5 Q0 MARCO_17_4815941315-20 58 -0.005590 hybrid +147_2-5 Q0 MARCO_40_1365351917-1 59 -0.005816 hybrid +147_2-5 Q0 MARCO_18_3163465006-7 60 -0.009785 hybrid +147_2-5 Q0 MARCO_31_128245876-2 61 -0.009986 hybrid +147_2-5 Q0 MARCO_26_777997059-37 62 -0.022195 hybrid +147_2-5 Q0 MARCO_24_1538687409-1 63 -0.022245 hybrid +147_2-5 Q0 MARCO_31_128214538-4 64 -0.023677 hybrid +147_2-5 Q0 MARCO_27_1491466475-1 65 -0.026315 hybrid +147_2-5 Q0 MARCO_16_3281833985-1 66 -0.027118 hybrid +147_2-5 Q0 MARCO_49_1561702548-1 67 -0.028123 hybrid +147_2-5 Q0 MARCO_16_2790279801-54 68 -0.028349 hybrid +147_2-5 Q0 MARCO_17_4816848696-1 69 -0.033399 hybrid +147_2-5 Q0 MARCO_50_2203503006-21 70 -0.033574 hybrid +147_2-5 Q0 MARCO_31_128214538-1 71 -0.035283 hybrid +147_2-5 Q0 MARCO_17_4816848696-26 72 -0.040458 hybrid +147_2-5 Q0 KILT_30779156-5 73 -0.042593 hybrid +147_2-5 Q0 MARCO_50_2240949679-94 74 -0.046236 hybrid +147_2-5 Q0 MARCO_17_3800339950-1 75 -0.046989 hybrid +147_2-5 Q0 MARCO_00_1517709176-1 76 -0.047115 hybrid +147_2-5 Q0 KILT_27306717-77 77 -0.047165 hybrid +147_2-5 Q0 MARCO_23_1779160232-7 78 -0.048597 hybrid +147_2-5 Q0 MARCO_16_2790395129-1 79 -0.048873 hybrid +147_2-5 Q0 KILT_58488308-1 80 -0.049200 hybrid +147_2-5 Q0 MARCO_23_1813963321-1 81 -0.051084 hybrid +147_2-5 Q0 KILT_42163310-58 82 -0.054526 hybrid +147_2-5 Q0 MARCO_35_1406335493-1 83 -0.054877 hybrid +147_2-5 Q0 MARCO_30_561903930-5 84 -0.056184 hybrid +147_2-5 Q0 MARCO_17_4816915718-1 85 -0.056460 hybrid +147_2-5 Q0 KILT_27306717-33 86 -0.059374 hybrid +147_2-5 Q0 MARCO_17_2668085167-5 87 -0.064072 hybrid +147_2-5 Q0 MARCO_27_469455764-9 88 -0.065252 hybrid +147_2-5 Q0 KILT_16368269-5 89 -0.066031 hybrid +147_2-5 Q0 MARCO_27_1503639389-1 90 -0.066031 hybrid +147_2-5 Q0 MARCO_00_1152048975-1 91 -0.067513 hybrid +147_2-5 Q0 MARCO_35_1377717077-1 92 -0.067689 hybrid +147_2-5 Q0 MARCO_36_106828560-5 93 -0.068594 hybrid +147_2-5 Q0 MARCO_58_1645748338-5 94 -0.068594 hybrid +147_2-5 Q0 MARCO_26_456985349-1 95 -0.068619 hybrid +147_2-5 Q0 MARCO_16_2100671853-1 96 -0.071357 hybrid +147_2-5 Q0 MARCO_02_38773097-10 97 -0.073191 hybrid +147_2-5 Q0 MARCO_23_1803752983-22 98 -0.074773 hybrid +147_2-5 Q0 MARCO_17_4817034960-1 99 -0.074949 hybrid +147_2-5 Q0 MARCO_17_3800206230-1 100 -0.076431 hybrid +148_1-1 Q0 MARCO_42_1882453792-1 1 0.500000 hybrid +148_1-1 Q0 MARCO_52_1001076716-1 2 0.444693 hybrid +148_1-1 Q0 MARCO_03_1679934199-3 3 0.423374 hybrid +148_1-1 Q0 MARCO_28_451602786-1 4 0.365244 hybrid +148_1-1 Q0 MARCO_19_2295949404-14 5 0.322555 hybrid +148_1-1 Q0 MARCO_28_451781132-1 6 0.310090 hybrid +148_1-1 Q0 MARCO_01_958870689-10 7 0.308589 hybrid +148_1-1 Q0 MARCO_03_961465353-5 8 0.246082 hybrid +148_1-1 Q0 MARCO_41_699357295-8 9 0.229953 hybrid +148_1-1 Q0 MARCO_42_1882453792-2 10 0.215961 hybrid +148_1-1 Q0 MARCO_59_577552856-9 11 0.215172 hybrid +148_1-1 Q0 MARCO_03_24067282-7 12 0.208583 hybrid +148_1-1 Q0 MARCO_05_452599377-2 13 0.205047 hybrid +148_1-1 Q0 MARCO_13_1490755811-6 14 0.204259 hybrid +148_1-1 Q0 MARCO_13_1489639922-1 15 0.197975 hybrid +148_1-1 Q0 MARCO_31_1404857866-3 16 0.194184 hybrid +148_1-1 Q0 MARCO_03_1580548158-4 17 0.171314 hybrid +148_1-1 Q0 MARCO_01_636074665-7 18 0.156635 hybrid +148_1-1 Q0 MARCO_31_1400537354-3 19 0.147909 hybrid +148_1-1 Q0 MARCO_59_598305400-3 20 0.145110 hybrid +148_1-1 Q0 MARCO_00_927202162-1 21 0.132314 hybrid +148_1-1 Q0 MARCO_03_567229613-1 22 0.126819 hybrid +148_1-1 Q0 MARCO_05_881484581-4 23 0.102854 hybrid +148_1-1 Q0 MARCO_41_688639321-7 24 0.094001 hybrid +148_1-1 Q0 MARCO_41_686629467-7 25 0.092984 hybrid +148_1-1 Q0 MARCO_44_8807373-2 26 0.091559 hybrid +148_1-1 Q0 MARCO_36_834781133-1 27 0.089346 hybrid +148_1-1 Q0 MARCO_41_688639321-9 28 0.088608 hybrid +148_1-1 Q0 MARCO_41_686629467-9 29 0.088532 hybrid +148_1-1 Q0 MARCO_54_380523371-3 30 0.086624 hybrid +148_1-1 Q0 MARCO_25_1039281360-10 31 0.075582 hybrid +148_1-1 Q0 MARCO_06_1794042768-1 32 0.070978 hybrid +148_1-1 Q0 MARCO_01_2104368515-1 33 0.064567 hybrid +148_1-1 Q0 MARCO_57_294852708-5 34 0.063041 hybrid +148_1-1 Q0 MARCO_11_923840720-9 35 0.058156 hybrid +148_1-1 Q0 MARCO_02_2850072-6 36 0.057393 hybrid +148_1-1 Q0 MARCO_02_545481877-1 37 0.052814 hybrid +148_1-1 Q0 MARCO_13_1506950402-1 38 0.052050 hybrid +148_1-1 Q0 MARCO_22_481671692-1 39 0.043350 hybrid +148_1-1 Q0 MARCO_35_224934834-3 40 0.041595 hybrid +148_1-1 Q0 MARCO_03_949101054-4 41 0.039432 hybrid +148_1-1 Q0 MARCO_01_2104311079-1 42 0.024168 hybrid +148_1-1 Q0 MARCO_03_25893117-11 43 0.020225 hybrid +148_1-1 Q0 MARCO_11_13788954-2 44 0.017884 hybrid +148_1-1 Q0 MARCO_03_1669669734-2 45 0.011295 hybrid +148_1-1 Q0 MARCO_03_961622911-3 46 0.009184 hybrid +148_1-1 Q0 MARCO_03_1679087045-1 47 0.007479 hybrid +148_1-1 Q0 MARCO_41_697850256-3 48 0.001399 hybrid +148_1-1 Q0 MARCO_56_465382230-20 49 -0.001654 hybrid +148_1-1 Q0 MARCO_03_1675972221-3 50 -0.003918 hybrid +148_1-1 Q0 MARCO_04_957281288-7 51 -0.005215 hybrid +148_1-1 Q0 MARCO_10_458190079-5 52 -0.012567 hybrid +148_1-1 Q0 MARCO_11_1466826155-2 53 -0.014831 hybrid +148_1-1 Q0 MARCO_57_145879357-1 54 -0.016536 hybrid +148_1-1 Q0 MARCO_08_1610932714-1 55 -0.022336 hybrid +148_1-1 Q0 MARCO_00_213698368-1 56 -0.024168 hybrid +148_1-1 Q0 MARCO_04_957171423-4 57 -0.025745 hybrid +148_1-1 Q0 MARCO_03_953997891-4 58 -0.028926 hybrid +148_1-1 Q0 MARCO_11_1457641804-3 59 -0.029765 hybrid +148_1-1 Q0 MARCO_59_582501632-6 60 -0.030681 hybrid +148_1-1 Q0 MARCO_01_636454023-1 61 -0.032309 hybrid +148_1-1 Q0 MARCO_53_806393639-1 62 -0.032462 hybrid +148_1-1 Q0 MARCO_04_367258189-7 63 -0.036812 hybrid +148_1-1 Q0 MARCO_13_1489118611-4 64 -0.041289 hybrid +148_1-1 Q0 MARCO_31_1391063534-1 65 -0.041696 hybrid +148_1-1 Q0 MARCO_01_1996504086-7 66 -0.044444 hybrid +148_1-1 Q0 MARCO_03_1677355823-3 67 -0.049379 hybrid +148_1-1 Q0 MARCO_03_1679250489-3 68 -0.049379 hybrid +148_1-1 Q0 MARCO_03_943505780-3 69 -0.050397 hybrid +148_1-1 Q0 MARCO_56_1820687505-1 70 -0.052254 hybrid +148_1-1 Q0 MARCO_28_451787654-8 71 -0.052432 hybrid +148_1-1 Q0 MARCO_03_1679224641-3 72 -0.053653 hybrid +148_1-1 Q0 MARCO_03_959702426-5 73 -0.054849 hybrid +148_1-1 Q0 MARCO_32_170154545-1 74 -0.056248 hybrid +148_1-1 Q0 MARCO_03_942158184-3 75 -0.061438 hybrid +148_1-1 Q0 MARCO_33_1511672053-5 76 -0.064796 hybrid +148_1-1 Q0 MARCO_03_954737133-4 77 -0.065178 hybrid +148_1-1 Q0 MARCO_03_954785604-3 78 -0.065814 hybrid +148_1-1 Q0 MARCO_03_954842955-3 79 -0.070902 hybrid +148_1-1 Q0 MARCO_41_697850256-1 80 -0.072275 hybrid +148_1-1 Q0 MARCO_05_414435381-4 81 -0.075150 hybrid +148_1-1 Q0 MARCO_03_1587224773-2 82 -0.076804 hybrid +148_1-1 Q0 MARCO_42_506394540-1 83 -0.076956 hybrid +148_1-1 Q0 MARCO_30_244985897-10 84 -0.077287 hybrid +148_1-1 Q0 MARCO_41_697850256-5 85 -0.079170 hybrid +148_1-1 Q0 MARCO_06_1515220974-2 86 -0.079653 hybrid +148_1-1 Q0 MARCO_02_1394257274-1 87 -0.080950 hybrid +148_1-1 Q0 MARCO_31_1373358976-4 88 -0.081663 hybrid +148_1-1 Q0 MARCO_11_13786071-1 89 -0.089015 hybrid +148_1-1 Q0 MARCO_03_944165905-4 90 -0.089804 hybrid +148_1-1 Q0 MARCO_03_954847683-5 91 -0.090948 hybrid +148_1-1 Q0 MARCO_41_657132045-2 92 -0.091432 hybrid +148_1-1 Q0 MARCO_00_213704543-2 93 -0.091661 hybrid +148_1-1 Q0 MARCO_03_1679934199-2 94 -0.091712 hybrid +148_1-1 Q0 MARCO_03_111713709-11 95 -0.092806 hybrid +148_1-1 Q0 MARCO_13_1488403286-10 96 -0.093289 hybrid +148_1-1 Q0 MARCO_10_1578114003-2 97 -0.096393 hybrid +148_1-1 Q0 MARCO_32_170164725-1 98 -0.097614 hybrid +148_1-1 Q0 MARCO_03_22321571-1 99 -0.097614 hybrid +148_1-1 Q0 MARCO_03_957269184-3 100 -0.102753 hybrid +148_1-3 Q0 MARCO_19_1519183645-1 1 0.500000 hybrid +148_1-3 Q0 MARCO_31_845797036-4 2 0.404845 hybrid +148_1-3 Q0 MARCO_57_249748652-1 3 0.341871 hybrid +148_1-3 Q0 MARCO_52_904757328-14 4 0.285313 hybrid +148_1-3 Q0 MARCO_55_1193551546-12 5 0.251076 hybrid +148_1-3 Q0 MARCO_54_428880039-6 6 0.240201 hybrid +148_1-3 Q0 MARCO_41_296769629-2 7 0.225728 hybrid +148_1-3 Q0 MARCO_32_292573942-2 8 0.171046 hybrid +148_1-3 Q0 MARCO_52_1304239835-13 9 0.140629 hybrid +148_1-3 Q0 MARCO_47_1324213266-6 10 0.134976 hybrid +148_1-3 Q0 MARCO_45_669318836-2 11 0.103544 hybrid +148_1-3 Q0 MARCO_01_1356132923-2 12 0.100308 hybrid +148_1-3 Q0 MARCO_36_433866314-6 13 0.096517 hybrid +148_1-3 Q0 MARCO_01_1029091257-22 14 0.091878 hybrid +148_1-3 Q0 MARCO_41_2173328219-2 15 0.078169 hybrid +148_1-3 Q0 MARCO_23_615926436-2 16 0.071113 hybrid +148_1-3 Q0 MARCO_54_49455780-1 17 0.065654 hybrid +148_1-3 Q0 MARCO_01_1029091257-13 18 0.058029 hybrid +148_1-3 Q0 MARCO_06_1961366959-1 19 0.053488 hybrid +148_1-3 Q0 MARCO_00_602096381-2 20 0.038529 hybrid +148_1-3 Q0 MARCO_45_669313280-3 21 0.034293 hybrid +148_1-3 Q0 MARCO_32_701100208-6 22 0.018500 hybrid +148_1-3 Q0 MARCO_45_943897332-2 23 0.018445 hybrid +148_1-3 Q0 MARCO_29_637544303-6 24 0.015320 hybrid +148_1-3 Q0 MARCO_01_1029091257-39 25 0.013986 hybrid +148_1-3 Q0 MARCO_51_1180699988-10 26 -0.001486 hybrid +148_1-3 Q0 MARCO_31_1405904548-1 27 -0.002750 hybrid +148_1-3 Q0 MARCO_37_468305940-2 28 -0.006306 hybrid +148_1-3 Q0 MARCO_25_841762115-4 29 -0.006389 hybrid +148_1-3 Q0 MARCO_40_1178113770-2 30 -0.009653 hybrid +148_1-3 Q0 MARCO_34_1582338347-1 31 -0.016098 hybrid +148_1-3 Q0 MARCO_41_1817901719-3 32 -0.022251 hybrid +148_1-3 Q0 MARCO_01_1029091257-30 33 -0.024529 hybrid +148_1-3 Q0 MARCO_52_1302731929-1 34 -0.027098 hybrid +148_1-3 Q0 MARCO_49_328102263-3 35 -0.028348 hybrid +148_1-3 Q0 MARCO_00_1400523710-7 36 -0.032209 hybrid +148_1-3 Q0 MARCO_56_352891759-15 37 -0.049210 hybrid +148_1-3 Q0 MARCO_57_701868253-1 38 -0.050502 hybrid +148_1-3 Q0 MARCO_26_491319070-2 39 -0.061099 hybrid +148_1-3 Q0 MARCO_30_1600420937-2 40 -0.065307 hybrid +148_1-3 Q0 MARCO_12_589017303-6 41 -0.065919 hybrid +148_1-3 Q0 MARCO_33_525677612-1 42 -0.071433 hybrid +148_1-3 Q0 MARCO_52_1304819803-2 43 -0.081919 hybrid +148_1-3 Q0 MARCO_48_1317618258-2 44 -0.084238 hybrid +148_1-3 Q0 MARCO_44_31650804-7 45 -0.093530 hybrid +148_1-3 Q0 MARCO_34_354937039-12 46 -0.093558 hybrid +148_1-3 Q0 MARCO_49_1411250000-2 47 -0.099711 hybrid +148_1-3 Q0 MARCO_36_220462875-2 48 -0.105823 hybrid +148_1-3 Q0 MARCO_56_1224571911-4 49 -0.106281 hybrid +148_1-3 Q0 MARCO_57_1363749775-3 50 -0.108100 hybrid +148_1-3 Q0 MARCO_57_248815376-2 51 -0.108864 hybrid +148_1-3 Q0 MARCO_33_831094601-2 52 -0.112156 hybrid +148_1-3 Q0 MARCO_50_2481434035-42 53 -0.114406 hybrid +148_1-3 Q0 MARCO_26_995770184-5 54 -0.123587 hybrid +148_1-3 Q0 MARCO_23_1149277394-15 55 -0.125545 hybrid +148_1-3 Q0 MARCO_23_854591388-6 56 -0.127837 hybrid +148_1-3 Q0 MARCO_43_1672339813-4 57 -0.128281 hybrid +148_1-3 Q0 MARCO_57_251178962-3 58 -0.129254 hybrid +148_1-3 Q0 MARCO_19_1523446225-4 59 -0.129532 hybrid +148_1-3 Q0 MARCO_31_1386842420-1 60 -0.130615 hybrid +148_1-3 Q0 MARCO_10_577815162-1 61 -0.131823 hybrid +148_1-3 Q0 MARCO_24_1890412095-2 62 -0.132337 hybrid +148_1-3 Q0 MARCO_47_1210401269-4 63 -0.133782 hybrid +148_1-3 Q0 MARCO_26_491165576-1 64 -0.134587 hybrid +148_1-3 Q0 MARCO_32_63259840-8 65 -0.134851 hybrid +148_1-3 Q0 MARCO_25_902949068-2 66 -0.136504 hybrid +148_1-3 Q0 MARCO_37_97115974-2 67 -0.139671 hybrid +148_1-3 Q0 MARCO_57_248698581-1 68 -0.141240 hybrid +148_1-3 Q0 MARCO_23_855467947-5 69 -0.141434 hybrid +148_1-3 Q0 MARCO_40_1503774375-5 70 -0.143171 hybrid +148_1-3 Q0 MARCO_48_1772825104-2 71 -0.143365 hybrid +148_1-3 Q0 MARCO_25_847570367-5 72 -0.145726 hybrid +148_1-3 Q0 MARCO_25_854401458-1 73 -0.145893 hybrid +148_1-3 Q0 MARCO_07_570711851-1 74 -0.150990 hybrid +148_1-3 Q0 MARCO_47_1318726726-3 75 -0.154296 hybrid +148_1-3 Q0 MARCO_47_1210401269-23 76 -0.155213 hybrid +148_1-3 Q0 MARCO_01_1029091257-35 77 -0.157227 hybrid +148_1-3 Q0 MARCO_38_222748232-3 78 -0.157310 hybrid +148_1-3 Q0 MARCO_29_637544303-5 79 -0.160949 hybrid +148_1-3 Q0 MARCO_34_354937039-13 80 -0.164838 hybrid +148_1-3 Q0 MARCO_36_1416058024-23 81 -0.165491 hybrid +148_1-3 Q0 MARCO_43_1657730480-4 82 -0.166046 hybrid +148_1-3 Q0 MARCO_14_1408909461-1 83 -0.167282 hybrid +148_1-3 Q0 MARCO_39_165414745-8 84 -0.170630 hybrid +148_1-3 Q0 MARCO_06_187548384-7 85 -0.171463 hybrid +148_1-3 Q0 MARCO_00_1149278682-2 86 -0.174435 hybrid +148_1-3 Q0 MARCO_52_949095458-1 87 -0.175699 hybrid +148_1-3 Q0 MARCO_48_1826126490-18 88 -0.176713 hybrid +148_1-3 Q0 MARCO_04_756949576-4 89 -0.176727 hybrid +148_1-3 Q0 MARCO_01_1029091257-34 90 -0.177297 hybrid +148_1-3 Q0 MARCO_27_852370055-3 91 -0.180144 hybrid +148_1-3 Q0 MARCO_34_359113142-7 92 -0.180283 hybrid +148_1-3 Q0 MARCO_43_1661084635-5 93 -0.181741 hybrid +148_1-3 Q0 MARCO_43_1670579391-5 94 -0.187186 hybrid +148_1-3 Q0 MARCO_57_250728567-1 95 -0.187241 hybrid +148_1-3 Q0 MARCO_35_972068013-5 96 -0.187478 hybrid +148_1-3 Q0 MARCO_02_424229366-5 97 -0.188811 hybrid +148_1-3 Q0 MARCO_36_432820711-3 98 -0.189325 hybrid +148_1-3 Q0 MARCO_25_841262580-6 99 -0.190894 hybrid +148_1-3 Q0 MARCO_25_864004626-1 100 -0.192422 hybrid +148_1-5 Q0 MARCO_19_1519183645-2 1 0.500000 hybrid +148_1-5 Q0 MARCO_19_1519183645-1 2 0.003155 hybrid +148_1-5 Q0 MARCO_03_1032124989-2 3 -0.009789 hybrid +148_1-5 Q0 MARCO_38_429595741-7 4 -0.010488 hybrid +148_1-5 Q0 MARCO_15_1639759002-16 5 -0.015547 hybrid +148_1-5 Q0 MARCO_32_147080142-10 6 -0.031308 hybrid +148_1-5 Q0 MARCO_36_1151730727-6 7 -0.082357 hybrid +148_1-5 Q0 MARCO_04_33842015-3 8 -0.099662 hybrid +148_1-5 Q0 MARCO_28_409744214-2 9 -0.128097 hybrid +148_1-5 Q0 MARCO_48_1039220146-1 10 -0.143587 hybrid +148_1-5 Q0 MARCO_50_1516527274-46 11 -0.144859 hybrid +148_1-5 Q0 MARCO_30_409324684-6 12 -0.153193 hybrid +148_1-5 Q0 MARCO_20_1229320529-26 13 -0.160213 hybrid +148_1-5 Q0 MARCO_47_1544743513-2 14 -0.170498 hybrid +148_1-5 Q0 MARCO_14_717400203-4 15 -0.177831 hybrid +148_1-5 Q0 MARCO_08_55947818-7 16 -0.179500 hybrid +148_1-5 Q0 MARCO_48_1713970483-1 17 -0.180731 hybrid +148_1-5 Q0 MARCO_07_1210639062-2 18 -0.182869 hybrid +148_1-5 Q0 MARCO_46_705334403-1 19 -0.193863 hybrid +148_1-5 Q0 MARCO_57_886600451-16 20 -0.194927 hybrid +148_1-5 Q0 MARCO_11_1480750570-2 21 -0.197994 hybrid +148_1-5 Q0 MARCO_06_12231190-1 22 -0.203199 hybrid +148_1-5 Q0 MARCO_32_145930651-10 23 -0.214673 hybrid +148_1-5 Q0 MARCO_41_794623386-10 24 -0.217156 hybrid +148_1-5 Q0 MARCO_50_1944967831-16 25 -0.220619 hybrid +148_1-5 Q0 MARCO_48_265813505-1 26 -0.222569 hybrid +148_1-5 Q0 MARCO_24_590888447-2 27 -0.226158 hybrid +148_1-5 Q0 MARCO_28_697348467-2 28 -0.227524 hybrid +148_1-5 Q0 MARCO_58_1438376727-5 29 -0.232207 hybrid +148_1-5 Q0 MARCO_13_1492412248-1 30 -0.232917 hybrid +148_1-5 Q0 MARCO_51_1012925869-8 31 -0.234106 hybrid +148_1-5 Q0 MARCO_25_620181844-13 32 -0.234200 hybrid +148_1-5 Q0 MARCO_19_2572917523-3 33 -0.236411 hybrid +148_1-5 Q0 MARCO_19_2572917523-5 34 -0.236411 hybrid +148_1-5 Q0 MARCO_19_2572917523-9 35 -0.236411 hybrid +148_1-5 Q0 MARCO_44_766483581-1 36 -0.238090 hybrid +148_1-5 Q0 MARCO_43_188156958-3 37 -0.238748 hybrid +148_1-5 Q0 MARCO_53_889273199-8 38 -0.242816 hybrid +148_1-5 Q0 MARCO_50_1522625191-16 39 -0.242847 hybrid +148_1-5 Q0 MARCO_58_557247495-4 40 -0.243671 hybrid +148_1-5 Q0 MARCO_42_1702983934-3 41 -0.245048 hybrid +148_1-5 Q0 MARCO_10_880621742-13 42 -0.248042 hybrid +148_1-5 Q0 MARCO_59_992888663-12 43 -0.249053 hybrid +148_1-5 Q0 MARCO_44_1474664164-2 44 -0.251056 hybrid +148_1-5 Q0 MARCO_06_14783170-15 45 -0.252381 hybrid +148_1-5 Q0 MARCO_36_31093847-2 46 -0.254133 hybrid +148_1-5 Q0 MARCO_55_1357995226-6 47 -0.254363 hybrid +148_1-5 Q0 MARCO_33_1236772326-13 48 -0.254842 hybrid +148_1-5 Q0 MARCO_13_1027129138-6 49 -0.260475 hybrid +148_1-5 Q0 MARCO_21_253002238-1 50 -0.267297 hybrid +148_1-5 Q0 MARCO_36_1158228196-8 51 -0.267746 hybrid +148_1-5 Q0 MARCO_03_1032124989-1 52 -0.269842 hybrid +148_1-5 Q0 MARCO_06_475204686-1 53 -0.269988 hybrid +148_1-5 Q0 MARCO_40_970736494-1 54 -0.271313 hybrid +148_1-5 Q0 MARCO_50_1338802612-29 55 -0.273316 hybrid +148_1-5 Q0 MARCO_50_1516527274-39 56 -0.275245 hybrid +148_1-5 Q0 MARCO_50_374718711-3 57 -0.275683 hybrid +148_1-5 Q0 MARCO_39_752676778-1 58 -0.277311 hybrid +148_1-5 Q0 MARCO_50_1186856656-19 59 -0.280252 hybrid +148_1-5 Q0 MARCO_50_1516527274-40 60 -0.282005 hybrid +148_1-5 Q0 MARCO_37_96545867-1 61 -0.284571 hybrid +148_1-5 Q0 MARCO_50_1508999748-49 62 -0.284748 hybrid +148_1-5 Q0 MARCO_46_705334403-7 63 -0.285176 hybrid +148_1-5 Q0 MARCO_34_350522780-6 64 -0.285708 hybrid +148_1-5 Q0 MARCO_54_726180376-15 65 -0.287314 hybrid +148_1-5 Q0 MARCO_57_147127605-7 66 -0.287825 hybrid +148_1-5 Q0 MARCO_23_523313896-4 67 -0.288378 hybrid +148_1-5 Q0 MARCO_26_1767096224-2 68 -0.289098 hybrid +148_1-5 Q0 MARCO_41_23059652-9 69 -0.289411 hybrid +148_1-5 Q0 MARCO_32_147120101-10 70 -0.289995 hybrid +148_1-5 Q0 MARCO_50_1149263974-17 71 -0.291705 hybrid +148_1-5 Q0 MARCO_13_29968108-3 72 -0.292102 hybrid +148_1-5 Q0 MARCO_03_1062607185-6 73 -0.292404 hybrid +148_1-5 Q0 MARCO_55_187163561-4 74 -0.293885 hybrid +148_1-5 Q0 MARCO_55_511465968-1 75 -0.295085 hybrid +148_1-5 Q0 MARCO_53_409025275-5 76 -0.296055 hybrid +148_1-5 Q0 MARCO_21_1146899820-7 77 -0.296764 hybrid +148_1-5 Q0 MARCO_13_491469100-1 78 -0.297161 hybrid +148_1-5 Q0 MARCO_23_1643266009-2 79 -0.298006 hybrid +148_1-5 Q0 MARCO_13_159247667-6 80 -0.298704 hybrid +148_1-5 Q0 MARCO_10_888472158-50 81 -0.299685 hybrid +148_1-5 Q0 MARCO_40_739100190-4 82 -0.300791 hybrid +148_1-5 Q0 MARCO_48_1762577383-16 83 -0.300791 hybrid +148_1-5 Q0 MARCO_54_1661172102-5 84 -0.300874 hybrid +148_1-5 Q0 MARCO_50_2562231231-1 85 -0.300926 hybrid +148_1-5 Q0 MARCO_26_662495889-1 86 -0.303722 hybrid +148_1-5 Q0 MARCO_08_1611140689-5 87 -0.306747 hybrid +148_1-5 Q0 MARCO_41_2016794754-1 88 -0.307299 hybrid +148_1-5 Q0 MARCO_40_739046572-1 89 -0.308520 hybrid +148_1-5 Q0 MARCO_46_541414494-1 90 -0.309010 hybrid +148_1-5 Q0 MARCO_38_179319792-7 91 -0.311023 hybrid +148_1-5 Q0 MARCO_55_1154023884-5 92 -0.311461 hybrid +148_1-5 Q0 MARCO_29_1292864424-8 93 -0.312244 hybrid +148_1-5 Q0 MARCO_43_1638030388-6 94 -0.313193 hybrid +148_1-5 Q0 MARCO_40_1319747134-1 95 -0.314163 hybrid +148_1-5 Q0 MARCO_28_1797550278-2 96 -0.314476 hybrid +148_1-5 Q0 MARCO_51_1553651865-6 97 -0.314664 hybrid +148_1-5 Q0 MARCO_47_814842570-1 98 -0.317501 hybrid +148_1-5 Q0 MARCO_40_1012047888-1 99 -0.318335 hybrid +148_1-5 Q0 MARCO_11_44529899-1 100 -0.318356 hybrid +148_1-7 Q0 MARCO_19_1519183645-1 1 0.500000 hybrid +148_1-7 Q0 MARCO_13_1492412248-1 2 0.347876 hybrid +148_1-7 Q0 MARCO_27_1742305415-5 3 0.284627 hybrid +148_1-7 Q0 MARCO_06_475204686-1 4 0.247464 hybrid +148_1-7 Q0 MARCO_43_568057493-3 5 0.243730 hybrid +148_1-7 Q0 MARCO_32_720682436-1 6 0.211463 hybrid +148_1-7 Q0 MARCO_19_1519183645-2 7 0.210688 hybrid +148_1-7 Q0 MARCO_40_1525023277-15 8 0.193832 hybrid +148_1-7 Q0 MARCO_48_1713767188-1 9 0.180657 hybrid +148_1-7 Q0 MARCO_46_705334403-1 10 0.167324 hybrid +148_1-7 Q0 MARCO_48_1714100690-1 11 0.155770 hybrid +148_1-7 Q0 MARCO_55_187163561-4 12 0.099496 hybrid +148_1-7 Q0 MARCO_24_428612881-6 13 0.089668 hybrid +148_1-7 Q0 MARCO_47_684172890-6 14 0.065045 hybrid +148_1-7 Q0 MARCO_45_1087542845-5 15 0.054953 hybrid +148_1-7 Q0 MARCO_52_904699483-2 16 0.050532 hybrid +148_1-7 Q0 MARCO_13_137346759-1 17 0.037851 hybrid +148_1-7 Q0 MARCO_40_970736494-1 18 0.036547 hybrid +148_1-7 Q0 MARCO_46_705334403-7 19 0.013139 hybrid +148_1-7 Q0 MARCO_06_14783170-12 20 -0.002554 hybrid +148_1-7 Q0 MARCO_31_37937799-7 21 -0.006693 hybrid +148_1-7 Q0 MARCO_43_568057493-4 22 -0.007943 hybrid +148_1-7 Q0 MARCO_50_1565648514-25 23 -0.008789 hybrid +148_1-7 Q0 MARCO_53_327288120-4 24 -0.011466 hybrid +148_1-7 Q0 MARCO_13_384658701-1 25 -0.011537 hybrid +148_1-7 Q0 MARCO_35_1765427389-1 26 -0.018670 hybrid +148_1-7 Q0 MARCO_48_1713970483-1 27 -0.026613 hybrid +148_1-7 Q0 MARCO_37_1438058942-3 28 -0.033641 hybrid +148_1-7 Q0 MARCO_53_470563523-1 29 -0.038925 hybrid +148_1-7 Q0 MARCO_50_1112795230-30 30 -0.046551 hybrid +148_1-7 Q0 MARCO_57_830776167-1 31 -0.047273 hybrid +148_1-7 Q0 MARCO_03_1062607185-6 32 -0.053561 hybrid +148_1-7 Q0 MARCO_13_1169168638-3 33 -0.055516 hybrid +148_1-7 Q0 MARCO_34_308809627-5 34 -0.062843 hybrid +148_1-7 Q0 MARCO_36_834781133-1 35 -0.068022 hybrid +148_1-7 Q0 MARCO_43_208788695-6 36 -0.071791 hybrid +148_1-7 Q0 MARCO_19_1977191078-6 37 -0.072812 hybrid +148_1-7 Q0 MARCO_02_54755622-18 38 -0.084772 hybrid +148_1-7 Q0 MARCO_23_1826114980-18 39 -0.084772 hybrid +148_1-7 Q0 MARCO_40_700398362-36 40 -0.089791 hybrid +148_1-7 Q0 MARCO_50_2052770615-18 41 -0.094371 hybrid +148_1-7 Q0 MARCO_50_2339546187-2 42 -0.099514 hybrid +148_1-7 Q0 MARCO_11_228773317-2 43 -0.101152 hybrid +148_1-7 Q0 MARCO_15_1986259474-5 44 -0.112002 hybrid +148_1-7 Q0 MARCO_48_1039220146-1 45 -0.113076 hybrid +148_1-7 Q0 MARCO_40_970736494-4 46 -0.114996 hybrid +148_1-7 Q0 MARCO_54_1661548594-1 47 -0.116141 hybrid +148_1-7 Q0 MARCO_59_996459752-9 48 -0.116845 hybrid +148_1-7 Q0 MARCO_38_612487240-10 49 -0.117691 hybrid +148_1-7 Q0 MARCO_55_146474125-5 50 -0.125299 hybrid +148_1-7 Q0 MARCO_53_1450947763-9 51 -0.126021 hybrid +148_1-7 Q0 MARCO_55_1357995226-6 52 -0.127202 hybrid +148_1-7 Q0 MARCO_52_1209978787-3 53 -0.128153 hybrid +148_1-7 Q0 MARCO_19_1518854745-1 54 -0.128980 hybrid +148_1-7 Q0 MARCO_11_708231896-24 55 -0.131746 hybrid +148_1-7 Q0 KILT_3197361-34 56 -0.134282 hybrid +148_1-7 Q0 MARCO_57_815924685-1 57 -0.136043 hybrid +148_1-7 Q0 MARCO_07_279834906-3 58 -0.138069 hybrid +148_1-7 Q0 MARCO_47_814865714-1 59 -0.143916 hybrid +148_1-7 Q0 MARCO_48_1714212417-6 60 -0.147457 hybrid +148_1-7 Q0 MARCO_20_1144027453-13 61 -0.147509 hybrid +148_1-7 Q0 MARCO_04_33842015-3 62 -0.148672 hybrid +148_1-7 Q0 MARCO_52_893829140-3 63 -0.150099 hybrid +148_1-7 Q0 MARCO_07_634890252-2 64 -0.150275 hybrid +148_1-7 Q0 MARCO_46_1384141587-1 65 -0.152969 hybrid +148_1-7 Q0 MARCO_47_676720398-1 66 -0.155611 hybrid +148_1-7 Q0 MARCO_07_703370056-1 67 -0.163326 hybrid +148_1-7 Q0 MARCO_28_451800353-1 68 -0.164383 hybrid +148_1-7 Q0 MARCO_40_1584945747-1 69 -0.165545 hybrid +148_1-7 Q0 MARCO_11_329057141-21 70 -0.165898 hybrid +148_1-7 Q0 MARCO_36_862320820-1 71 -0.170583 hybrid +148_1-7 Q0 MARCO_28_1637254832-16 72 -0.172450 hybrid +148_1-7 Q0 MARCO_40_970720095-1 73 -0.172608 hybrid +148_1-7 Q0 MARCO_21_375612653-11 74 -0.174052 hybrid +148_1-7 Q0 MARCO_19_1519444451-1 75 -0.176483 hybrid +148_1-7 Q0 MARCO_46_200243172-9 76 -0.178438 hybrid +148_1-7 Q0 MARCO_40_970720095-12 77 -0.178473 hybrid +148_1-7 Q0 MARCO_26_850489874-5 78 -0.180340 hybrid +148_1-7 Q0 MARCO_04_857828781-4 79 -0.181168 hybrid +148_1-7 Q0 MARCO_06_14783170-15 80 -0.181186 hybrid +148_1-7 Q0 MARCO_50_1627036972-13 81 -0.183176 hybrid +148_1-7 Q0 MARCO_50_1516527274-4 82 -0.189076 hybrid +148_1-7 Q0 MARCO_40_1527364079-1 83 -0.191384 hybrid +148_1-7 Q0 MARCO_52_1741727712-1 84 -0.192405 hybrid +148_1-7 Q0 MARCO_11_46658903-1 85 -0.200807 hybrid +148_1-7 Q0 MARCO_48_1714059438-1 86 -0.203431 hybrid +148_1-7 Q0 MARCO_40_700398362-4 87 -0.204136 hybrid +148_1-7 Q0 MARCO_06_13137902-8 88 -0.204593 hybrid +148_1-7 Q0 MARCO_43_14505244-1 89 -0.205192 hybrid +148_1-7 Q0 MARCO_08_1297981437-3 90 -0.207200 hybrid +148_1-7 Q0 MARCO_57_1146718957-1 91 -0.207235 hybrid +148_1-7 Q0 MARCO_51_632824983-2 92 -0.208098 hybrid +148_1-7 Q0 MARCO_58_1450581087-1 93 -0.208151 hybrid +148_1-7 Q0 MARCO_50_1979974839-27 94 -0.208556 hybrid +148_1-7 Q0 MARCO_51_1204987404-7 95 -0.210194 hybrid +148_1-7 Q0 MARCO_52_258924349-1 96 -0.211040 hybrid +148_1-7 Q0 MARCO_14_644412657-2 97 -0.212026 hybrid +148_1-7 Q0 MARCO_50_2403873835-35 98 -0.212132 hybrid +148_1-7 Q0 MARCO_51_140532310-25 99 -0.212537 hybrid +148_1-7 Q0 MARCO_10_888472158-50 100 -0.215602 hybrid +148_1-9 Q0 MARCO_13_1488609592-13 1 0.500000 hybrid +148_1-9 Q0 MARCO_19_1519183645-2 2 0.494021 hybrid +148_1-9 Q0 MARCO_40_739116028-6 3 0.484705 hybrid +148_1-9 Q0 MARCO_36_435419135-2 4 0.447463 hybrid +148_1-9 Q0 MARCO_47_676720398-1 5 0.407175 hybrid +148_1-9 Q0 MARCO_31_1405478324-2 6 0.398822 hybrid +148_1-9 Q0 MARCO_22_1378400972-1 7 0.357549 hybrid +148_1-9 Q0 MARCO_59_996459752-9 8 0.342702 hybrid +148_1-9 Q0 MARCO_47_1208746567-6 9 0.313410 hybrid +148_1-9 Q0 MARCO_46_705435328-7 10 0.281767 hybrid +148_1-9 Q0 MARCO_03_960752020-3 11 0.275227 hybrid +148_1-9 Q0 MARCO_08_364153308-2 12 0.242509 hybrid +148_1-9 Q0 MARCO_54_501247390-4 13 0.239710 hybrid +148_1-9 Q0 MARCO_15_1809153533-17 14 0.229700 hybrid +148_1-9 Q0 MARCO_26_1513729990-63 15 0.229095 hybrid +148_1-9 Q0 MARCO_54_501225424-4 16 0.206028 hybrid +148_1-9 Q0 MARCO_44_1159605723-1 17 0.204416 hybrid +148_1-9 Q0 MARCO_07_829315173-1 18 0.203162 hybrid +148_1-9 Q0 MARCO_41_1791693187-2 19 0.170959 hybrid +148_1-9 Q0 MARCO_05_371790768-4 20 0.170511 hybrid +148_1-9 Q0 MARCO_36_435268652-8 21 0.161755 hybrid +148_1-9 Q0 MARCO_09_1175397293-1 22 0.152461 hybrid +148_1-9 Q0 MARCO_05_371796821-6 23 0.150782 hybrid +148_1-9 Q0 MARCO_29_879795504-2 24 0.143683 hybrid +148_1-9 Q0 MARCO_13_1665016531-1 25 0.140861 hybrid +148_1-9 Q0 MARCO_47_498770717-1 26 0.140211 hybrid +148_1-9 Q0 MARCO_34_355328727-11 27 0.133471 hybrid +148_1-9 Q0 MARCO_47_1391740857-9 28 0.132799 hybrid +148_1-9 Q0 MARCO_20_642181245-1 29 0.129820 hybrid +148_1-9 Q0 MARCO_05_371752122-5 30 0.125028 hybrid +148_1-9 Q0 MARCO_05_371790768-3 31 0.125028 hybrid +148_1-9 Q0 MARCO_36_1073919702-5 32 0.125027 hybrid +148_1-9 Q0 MARCO_38_1338793638-52 33 0.115555 hybrid +148_1-9 Q0 MARCO_25_1516782482-2 34 0.093183 hybrid +148_1-9 Q0 MARCO_40_276357027-1 35 0.092041 hybrid +148_1-9 Q0 MARCO_03_945785333-1 36 0.091123 hybrid +148_1-9 Q0 MARCO_54_1798187061-1 37 0.085255 hybrid +148_1-9 Q0 MARCO_43_1671621319-7 38 0.080486 hybrid +148_1-9 Q0 MARCO_40_1527364079-1 39 0.064115 hybrid +148_1-9 Q0 MARCO_46_705334403-7 40 0.063958 hybrid +148_1-9 Q0 MARCO_36_1419281838-8 41 0.063846 hybrid +148_1-9 Q0 MARCO_47_498766794-2 42 0.056815 hybrid +148_1-9 Q0 MARCO_40_451964875-1 43 0.054015 hybrid +148_1-9 Q0 MARCO_25_863094452-9 44 0.049872 hybrid +148_1-9 Q0 MARCO_34_355459807-5 45 0.047834 hybrid +148_1-9 Q0 MARCO_36_433741868-3 46 0.044453 hybrid +148_1-9 Q0 MARCO_48_1038759700-1 47 0.039437 hybrid +148_1-9 Q0 MARCO_19_1519183645-1 48 0.034286 hybrid +148_1-9 Q0 MARCO_41_1791693187-3 49 0.027478 hybrid +148_1-9 Q0 MARCO_27_1742305415-5 50 0.025463 hybrid +148_1-9 Q0 MARCO_59_559660135-25 51 0.022327 hybrid +148_1-9 Q0 MARCO_54_1800083554-1 52 0.021700 hybrid +148_1-9 Q0 MARCO_49_1524728412-7 53 0.021499 hybrid +148_1-9 Q0 MARCO_39_173598246-7 54 0.017983 hybrid +148_1-9 Q0 MARCO_44_1426314562-5 55 0.016908 hybrid +148_1-9 Q0 MARCO_43_378885851-5 56 0.009271 hybrid +148_1-9 Q0 MARCO_54_382691089-5 57 0.008443 hybrid +148_1-9 Q0 MARCO_50_2243228940-32 58 0.007301 hybrid +148_1-9 Q0 MARCO_22_1173642391-4 59 -0.002530 hybrid +148_1-9 Q0 MARCO_36_435244427-2 60 -0.004860 hybrid +148_1-9 Q0 MARCO_53_1434844302-3 61 -0.006046 hybrid +148_1-9 Q0 MARCO_41_751023142-8 62 -0.006248 hybrid +148_1-9 Q0 MARCO_41_751059363-10 63 -0.006248 hybrid +148_1-9 Q0 MARCO_54_380523371-3 64 -0.007972 hybrid +148_1-9 Q0 MARCO_50_2753846193-6 65 -0.011891 hybrid +148_1-9 Q0 MARCO_07_829276426-7 66 -0.013884 hybrid +148_1-9 Q0 MARCO_08_851708536-7 67 -0.016124 hybrid +148_1-9 Q0 MARCO_15_161307517-2 68 -0.021409 hybrid +148_1-9 Q0 MARCO_13_1488403286-3 69 -0.025440 hybrid +148_1-9 Q0 MARCO_34_1203149666-6 70 -0.026806 hybrid +148_1-9 Q0 MARCO_20_1716989706-18 71 -0.028239 hybrid +148_1-9 Q0 MARCO_40_739087763-5 72 -0.029605 hybrid +148_1-9 Q0 MARCO_13_1488957065-1 73 -0.030412 hybrid +148_1-9 Q0 MARCO_40_739127445-1 74 -0.031912 hybrid +148_1-9 Q0 MARCO_50_1219917421-10 75 -0.034017 hybrid +148_1-9 Q0 MARCO_03_19398776-5 76 -0.034532 hybrid +148_1-9 Q0 MARCO_02_403501344-1 77 -0.035204 hybrid +148_1-9 Q0 MARCO_27_1603154085-1 78 -0.035898 hybrid +148_1-9 Q0 MARCO_22_1629805077-4 79 -0.036458 hybrid +148_1-9 Q0 MARCO_36_1417036773-3 80 -0.042236 hybrid +148_1-9 Q0 MARCO_52_1413024465-1 81 -0.044386 hybrid +148_1-9 Q0 MARCO_08_364186377-2 82 -0.047947 hybrid +148_1-9 Q0 MARCO_03_325832193-3 83 -0.049245 hybrid +148_1-9 Q0 MARCO_40_451570859-5 84 -0.049469 hybrid +148_1-9 Q0 MARCO_39_173609105-5 85 -0.050858 hybrid +148_1-9 Q0 MARCO_42_341014451-2 86 -0.054620 hybrid +148_1-9 Q0 MARCO_22_1172152038-13 87 -0.056591 hybrid +148_1-9 Q0 MARCO_34_369375145-6 88 -0.057285 hybrid +148_1-9 Q0 MARCO_41_540002819-14 89 -0.060062 hybrid +148_1-9 Q0 MARCO_08_55947818-7 90 -0.061697 hybrid +148_1-9 Q0 MARCO_41_753625213-8 91 -0.063220 hybrid +148_1-9 Q0 MARCO_34_364197324-28 92 -0.064899 hybrid +148_1-9 Q0 MARCO_08_363991687-2 93 -0.066064 hybrid +148_1-9 Q0 MARCO_53_1440322425-11 94 -0.066556 hybrid +148_1-9 Q0 MARCO_41_751925618-14 95 -0.072401 hybrid +148_1-9 Q0 MARCO_41_751959344-8 96 -0.072401 hybrid +148_1-9 Q0 MARCO_41_753494766-8 97 -0.072402 hybrid +148_1-9 Q0 MARCO_48_1625076118-1 98 -0.072424 hybrid +148_1-9 Q0 MARCO_38_1686285878-3 99 -0.073454 hybrid +148_1-9 Q0 MARCO_44_1598754821-2 100 -0.073924 hybrid +148_2-1 Q0 MARCO_19_1518854745-1 1 0.500000 hybrid +148_2-1 Q0 MARCO_19_1519183645-2 2 0.399026 hybrid +148_2-1 Q0 MARCO_50_2146881794-5 3 0.386708 hybrid +148_2-1 Q0 MARCO_01_1824500589-7 4 0.219502 hybrid +148_2-1 Q0 MARCO_19_1519183645-1 5 0.216588 hybrid +148_2-1 Q0 MARCO_41_1136319190-5 6 0.213514 hybrid +148_2-1 Q0 MARCO_12_1458549127-7 7 0.167236 hybrid +148_2-1 Q0 MARCO_04_857828781-4 8 0.144007 hybrid +148_2-1 Q0 MARCO_35_293105677-15 9 0.135085 hybrid +148_2-1 Q0 MARCO_27_753061959-1 10 0.135025 hybrid +148_2-1 Q0 MARCO_50_778661070-14 11 0.117864 hybrid +148_2-1 Q0 MARCO_40_1527364079-1 12 0.080147 hybrid +148_2-1 Q0 MARCO_48_1714052848-1 13 0.070743 hybrid +148_2-1 Q0 MARCO_20_1017993889-1 14 0.057078 hybrid +148_2-1 Q0 MARCO_57_259904356-2 15 0.047152 hybrid +148_2-1 Q0 MARCO_22_1158524938-3 16 0.025590 hybrid +148_2-1 Q0 MARCO_13_244999871-1 17 0.011082 hybrid +148_2-1 Q0 MARCO_43_568057493-4 18 0.007505 hybrid +148_2-1 Q0 MARCO_39_195798748-2 19 0.003446 hybrid +148_2-1 Q0 MARCO_26_115399005-7 20 0.001376 hybrid +148_2-1 Q0 MARCO_37_188100441-1 21 -0.020567 hybrid +148_2-1 Q0 MARCO_22_713179169-4 22 -0.024103 hybrid +148_2-1 Q0 MARCO_49_722593240-2 23 -0.034934 hybrid +148_2-1 Q0 MARCO_43_568057493-3 24 -0.041264 hybrid +148_2-1 Q0 MARCO_16_2712177343-7 25 -0.045504 hybrid +148_2-1 Q0 MARCO_53_854298937-1 26 -0.049181 hybrid +148_2-1 Q0 MARCO_58_1613720999-6 27 -0.049181 hybrid +148_2-1 Q0 MARCO_36_1419281838-8 28 -0.051090 hybrid +148_2-1 Q0 MARCO_31_202905428-1 29 -0.052798 hybrid +148_2-1 Q0 MARCO_50_2506231202-65 30 -0.053079 hybrid +148_2-1 Q0 MARCO_07_703370056-1 31 -0.056516 hybrid +148_2-1 Q0 MARCO_25_960936338-1 32 -0.056917 hybrid +148_2-1 Q0 MARCO_48_1714308224-1 33 -0.062926 hybrid +148_2-1 Q0 MARCO_13_703898002-1 34 -0.070059 hybrid +148_2-1 Q0 MARCO_24_427971615-8 35 -0.077173 hybrid +148_2-1 Q0 MARCO_22_1257551163-1 36 -0.080348 hybrid +148_2-1 Q0 MARCO_13_368191043-5 37 -0.081794 hybrid +148_2-1 Q0 MARCO_13_383854570-1 38 -0.081995 hybrid +148_2-1 Q0 MARCO_50_851931334-19 39 -0.084125 hybrid +148_2-1 Q0 MARCO_50_900557509-111 40 -0.087481 hybrid +148_2-1 Q0 MARCO_50_1991937343-21 41 -0.092264 hybrid +148_2-1 Q0 MARCO_29_861032985-4 42 -0.101105 hybrid +148_2-1 Q0 MARCO_50_1626090782-12 43 -0.101608 hybrid +148_2-1 Q0 MARCO_53_1287951568-1 44 -0.105305 hybrid +148_2-1 Q0 MARCO_50_2210096877-13 45 -0.111755 hybrid +148_2-1 Q0 MARCO_46_705334403-1 46 -0.118266 hybrid +148_2-1 Q0 MARCO_40_1524867105-1 47 -0.119873 hybrid +148_2-1 Q0 KILT_3197361-34 48 -0.121722 hybrid +148_2-1 Q0 MARCO_26_862180979-2 49 -0.128896 hybrid +148_2-1 Q0 MARCO_35_1282894174-2 50 -0.129056 hybrid +148_2-1 Q0 MARCO_50_845769683-15 51 -0.129358 hybrid +148_2-1 Q0 MARCO_09_519144814-23 52 -0.130443 hybrid +148_2-1 Q0 MARCO_50_1715454007-19 53 -0.131689 hybrid +148_2-1 Q0 MARCO_50_887569727-19 54 -0.133417 hybrid +148_2-1 Q0 MARCO_15_1986259474-5 55 -0.135708 hybrid +148_2-1 Q0 MARCO_12_975384939-2 56 -0.135989 hybrid +148_2-1 Q0 MARCO_28_1364358523-1 57 -0.138400 hybrid +148_2-1 Q0 MARCO_48_1714059438-1 58 -0.141254 hybrid +148_2-1 Q0 MARCO_02_1315272571-70 59 -0.145132 hybrid +148_2-1 Q0 MARCO_29_1186524776-2 60 -0.145293 hybrid +148_2-1 Q0 MARCO_13_1024203473-7 61 -0.145916 hybrid +148_2-1 Q0 MARCO_02_1284699990-1 62 -0.146981 hybrid +148_2-1 Q0 MARCO_14_1807705713-1 63 -0.147584 hybrid +148_2-1 Q0 MARCO_02_1284725524-1 64 -0.148407 hybrid +148_2-1 Q0 MARCO_19_1519183645-3 65 -0.151723 hybrid +148_2-1 Q0 MARCO_13_1488609592-13 66 -0.154014 hybrid +148_2-1 Q0 MARCO_34_1151483886-1 67 -0.155139 hybrid +148_2-1 Q0 MARCO_46_200243172-9 68 -0.158294 hybrid +148_2-1 Q0 MARCO_13_1489135130-3 69 -0.159399 hybrid +148_2-1 Q0 MARCO_54_1797654244-1 70 -0.161348 hybrid +148_2-1 Q0 MARCO_50_1127157132-32 71 -0.162634 hybrid +148_2-1 Q0 MARCO_23_465126950-11 72 -0.168984 hybrid +148_2-1 Q0 MARCO_50_1516527274-12 73 -0.171938 hybrid +148_2-1 Q0 MARCO_29_16533411-1 74 -0.173425 hybrid +148_2-1 Q0 MARCO_55_146474125-5 75 -0.173445 hybrid +148_2-1 Q0 KILT_155516-15 76 -0.174209 hybrid +148_2-1 Q0 MARCO_19_1518854745-8 77 -0.175816 hybrid +148_2-1 Q0 MARCO_02_1345221468-4 78 -0.180478 hybrid +148_2-1 Q0 MARCO_54_1655028179-1 79 -0.180860 hybrid +148_2-1 Q0 MARCO_50_1991937343-24 80 -0.185160 hybrid +148_2-1 Q0 MARCO_07_1575102468-1 81 -0.186788 hybrid +148_2-1 Q0 MARCO_34_1825379810-3 82 -0.187130 hybrid +148_2-1 Q0 MARCO_41_23152962-5 83 -0.187290 hybrid +148_2-1 Q0 MARCO_23_224659330-71 84 -0.189279 hybrid +148_2-1 Q0 MARCO_54_1802980131-2 85 -0.189722 hybrid +148_2-1 Q0 MARCO_54_1799755367-1 86 -0.189822 hybrid +148_2-1 Q0 MARCO_02_1315272571-238 87 -0.190043 hybrid +148_2-1 Q0 MARCO_50_2367349057-2 88 -0.192615 hybrid +148_2-1 Q0 MARCO_40_519028691-5 89 -0.192816 hybrid +148_2-1 Q0 MARCO_50_2316161419-37 90 -0.193881 hybrid +148_2-1 Q0 MARCO_25_933442645-8 91 -0.194785 hybrid +148_2-1 Q0 MARCO_48_1713970483-4 92 -0.195227 hybrid +148_2-1 Q0 MARCO_40_970736494-1 93 -0.198603 hybrid +148_2-1 Q0 MARCO_47_658834062-13 94 -0.201477 hybrid +148_2-1 Q0 MARCO_13_1492689810-1 95 -0.201879 hybrid +148_2-1 Q0 MARCO_19_1563474977-7 96 -0.202200 hybrid +148_2-1 Q0 MARCO_37_92428910-9 97 -0.202341 hybrid +148_2-1 Q0 MARCO_01_651130393-13 98 -0.205255 hybrid +148_2-1 Q0 MARCO_50_2192929163-6 99 -0.208208 hybrid +148_2-1 Q0 MARCO_13_1492412248-1 100 -0.210901 hybrid +148_2-3 Q0 MARCO_31_1852604756-6 1 0.500000 hybrid +148_2-3 Q0 MARCO_37_787669308-4 2 0.458883 hybrid +148_2-3 Q0 MARCO_50_1516410155-23 3 0.345251 hybrid +148_2-3 Q0 MARCO_44_655635825-8 4 0.340836 hybrid +148_2-3 Q0 MARCO_53_1021420296-30 5 0.285031 hybrid +148_2-3 Q0 MARCO_47_233508789-2 6 0.201931 hybrid +148_2-3 Q0 MARCO_44_578029262-4 7 0.197970 hybrid +148_2-3 Q0 MARCO_13_55446283-27 8 0.156028 hybrid +148_2-3 Q0 MARCO_13_190015872-9 9 0.130591 hybrid +148_2-3 Q0 MARCO_00_705166565-8 10 0.126527 hybrid +148_2-3 Q0 MARCO_51_481186708-1 11 0.126155 hybrid +148_2-3 Q0 MARCO_52_1304733455-16 12 0.099356 hybrid +148_2-3 Q0 MARCO_43_1680206762-6 13 0.087968 hybrid +148_2-3 Q0 MARCO_13_184801200-3 14 0.084234 hybrid +148_2-3 Q0 MARCO_14_584186710-3 15 0.084152 hybrid +148_2-3 Q0 MARCO_45_1119676683-2 16 0.074703 hybrid +148_2-3 Q0 MARCO_09_1213778241-4 17 0.055125 hybrid +148_2-3 Q0 MARCO_45_802066604-2 18 0.050937 hybrid +148_2-3 Q0 MARCO_48_2104916450-9 19 0.048193 hybrid +148_2-3 Q0 MARCO_35_998865514-7 20 0.044562 hybrid +148_2-3 Q0 MARCO_53_889069367-71 21 0.039425 hybrid +148_2-3 Q0 MARCO_53_1431170844-2 22 0.037073 hybrid +148_2-3 Q0 MARCO_08_667954582-2 23 0.019516 hybrid +148_2-3 Q0 MARCO_22_528027533-1 24 0.018588 hybrid +148_2-3 Q0 MARCO_43_1678281860-10 25 -0.016092 hybrid +148_2-3 Q0 MARCO_11_105671998-29 26 -0.025396 hybrid +148_2-3 Q0 MARCO_10_598118885-8 27 -0.037857 hybrid +148_2-3 Q0 MARCO_57_827894280-5 28 -0.037857 hybrid +148_2-3 Q0 MARCO_00_202228554-4 29 -0.040663 hybrid +148_2-3 Q0 MARCO_47_233508789-3 30 -0.041797 hybrid +148_2-3 Q0 MARCO_26_161501407-2 31 -0.042127 hybrid +148_2-3 Q0 MARCO_40_1264689473-5 32 -0.043943 hybrid +148_2-3 Q0 MARCO_59_533329192-12 33 -0.044747 hybrid +148_2-3 Q0 MARCO_13_182291341-6 34 -0.054382 hybrid +148_2-3 Q0 MARCO_45_1123314056-5 35 -0.057394 hybrid +148_2-3 Q0 MARCO_50_1505044238-35 36 -0.059952 hybrid +148_2-3 Q0 MARCO_22_1325025556-10 37 -0.065956 hybrid +148_2-3 Q0 MARCO_24_523392716-19 38 -0.066141 hybrid +148_2-3 Q0 MARCO_30_858101398-2 39 -0.067400 hybrid +148_2-3 Q0 MARCO_28_1364700413-1 40 -0.069793 hybrid +148_2-3 Q0 MARCO_45_802066604-3 41 -0.074001 hybrid +148_2-3 Q0 MARCO_52_935114136-3 42 -0.078313 hybrid +148_2-3 Q0 MARCO_59_996662560-5 43 -0.079799 hybrid +148_2-3 Q0 MARCO_33_948249091-7 44 -0.080397 hybrid +148_2-3 Q0 MARCO_57_1164075240-1 45 -0.085163 hybrid +148_2-3 Q0 MARCO_00_2327453-90 46 -0.087081 hybrid +148_2-3 Q0 MARCO_12_381413270-1 47 -0.091310 hybrid +148_2-3 Q0 MARCO_50_997365353-29 48 -0.093064 hybrid +148_2-3 Q0 MARCO_25_105188938-8 49 -0.097623 hybrid +148_2-3 Q0 MARCO_22_1537869364-1 50 -0.099233 hybrid +148_2-3 Q0 MARCO_25_902088908-9 51 -0.101337 hybrid +148_2-3 Q0 MARCO_49_36841457-3 52 -0.102802 hybrid +148_2-3 Q0 MARCO_31_221208450-2 53 -0.103132 hybrid +148_2-3 Q0 MARCO_51_481846906-2 54 -0.105484 hybrid +148_2-3 Q0 MARCO_07_557912692-6 55 -0.107774 hybrid +148_2-3 Q0 MARCO_55_227171774-24 56 -0.113447 hybrid +148_2-3 Q0 MARCO_22_798540280-1 57 -0.113818 hybrid +148_2-3 Q0 MARCO_49_257550665-3 58 -0.114313 hybrid +148_2-3 Q0 MARCO_32_290699109-2 59 -0.114664 hybrid +148_2-3 Q0 MARCO_50_1614024152-9 60 -0.114932 hybrid +148_2-3 Q0 MARCO_06_310259706-1 61 -0.115551 hybrid +148_2-3 Q0 MARCO_37_1642881723-5 62 -0.116418 hybrid +148_2-3 Q0 MARCO_28_423590527-1 63 -0.120688 hybrid +148_2-3 Q0 MARCO_35_1001776058-17 64 -0.121637 hybrid +148_2-3 Q0 MARCO_15_1987383855-1 65 -0.123865 hybrid +148_2-3 Q0 MARCO_36_1416331472-15 66 -0.124897 hybrid +148_2-3 Q0 MARCO_22_1196664070-7 67 -0.125000 hybrid +148_2-3 Q0 MARCO_36_1395533784-1 68 -0.125640 hybrid +148_2-3 Q0 MARCO_39_766368870-6 69 -0.127826 hybrid +148_2-3 Q0 MARCO_45_841880826-2 70 -0.128817 hybrid +148_2-3 Q0 MARCO_30_1570902256-4 71 -0.130673 hybrid +148_2-3 Q0 MARCO_13_1027908922-9 72 -0.132014 hybrid +148_2-3 Q0 MARCO_21_210558409-11 73 -0.132283 hybrid +148_2-3 Q0 MARCO_58_337492907-9 74 -0.132736 hybrid +148_2-3 Q0 MARCO_54_292486334-4 75 -0.133293 hybrid +148_2-3 Q0 MARCO_55_1149723513-1 76 -0.134923 hybrid +148_2-3 Q0 MARCO_47_1133194692-2 77 -0.135398 hybrid +148_2-3 Q0 MARCO_13_1484096390-5 78 -0.135480 hybrid +148_2-3 Q0 MARCO_34_1648394288-1 79 -0.135480 hybrid +148_2-3 Q0 MARCO_48_1022390354-1 80 -0.140493 hybrid +148_2-3 Q0 MARCO_30_472028034-4 81 -0.140679 hybrid +148_2-3 Q0 MARCO_26_977003839-6 82 -0.140700 hybrid +148_2-3 Q0 MARCO_19_2661661320-14 83 -0.141896 hybrid +148_2-3 Q0 MARCO_02_299904207-3 84 -0.143175 hybrid +148_2-3 Q0 MARCO_25_1834028161-2 85 -0.146992 hybrid +148_2-3 Q0 MARCO_00_833079904-4 86 -0.149199 hybrid +148_2-3 Q0 MARCO_29_1473722934-2 87 -0.149695 hybrid +148_2-3 Q0 MARCO_50_2109555673-26 88 -0.150252 hybrid +148_2-3 Q0 MARCO_43_1685993539-2 89 -0.150602 hybrid +148_2-3 Q0 MARCO_44_16882340-4 90 -0.152273 hybrid +148_2-3 Q0 MARCO_33_1503565268-5 91 -0.152624 hybrid +148_2-3 Q0 MARCO_29_1370462547-3 92 -0.152996 hybrid +148_2-3 Q0 MARCO_01_1567579638-4 93 -0.153202 hybrid +148_2-3 Q0 MARCO_08_1557811664-11 94 -0.153841 hybrid +148_2-3 Q0 MARCO_38_458796725-10 95 -0.155306 hybrid +148_2-3 Q0 MARCO_40_1525598674-5 96 -0.155946 hybrid +148_2-3 Q0 MARCO_40_913379211-10 97 -0.157122 hybrid +148_2-3 Q0 MARCO_02_1121262792-7 98 -0.157534 hybrid +148_2-3 Q0 MARCO_52_479285435-4 99 -0.157596 hybrid +148_2-3 Q0 MARCO_53_361664784-1 100 -0.159226 hybrid +148_2-5 Q0 MARCO_43_1677717891-5 1 0.500000 hybrid +148_2-5 Q0 MARCO_13_503360138-9 2 0.454505 hybrid +148_2-5 Q0 MARCO_13_503360138-17 3 0.436659 hybrid +148_2-5 Q0 MARCO_43_1680016746-10 4 0.401388 hybrid +148_2-5 Q0 MARCO_40_822655009-10 5 0.391867 hybrid +148_2-5 Q0 MARCO_22_1197950647-7 6 0.342831 hybrid +148_2-5 Q0 MARCO_50_312745419-4 7 0.313166 hybrid +148_2-5 Q0 MARCO_40_1187187759-8 8 0.306154 hybrid +148_2-5 Q0 MARCO_22_202231425-9 9 0.262417 hybrid +148_2-5 Q0 MARCO_27_918869608-1 10 0.234745 hybrid +148_2-5 Q0 MARCO_45_1167526407-1 11 0.233315 hybrid +148_2-5 Q0 MARCO_50_1574251402-75 12 0.225435 hybrid +148_2-5 Q0 MARCO_04_369060071-17 13 0.201398 hybrid +148_2-5 Q0 MARCO_24_414959279-2 14 0.189860 hybrid +148_2-5 Q0 MARCO_27_1418084228-10 15 0.182660 hybrid +148_2-5 Q0 MARCO_41_672922410-3 16 0.175719 hybrid +148_2-5 Q0 MARCO_30_931120865-1 17 0.159631 hybrid +148_2-5 Q0 MARCO_22_843428635-21 18 0.154496 hybrid +148_2-5 Q0 MARCO_02_655687548-4 19 0.152338 hybrid +148_2-5 Q0 MARCO_09_1708062060-1 20 0.129004 hybrid +148_2-5 Q0 MARCO_25_9153540-11 21 0.118827 hybrid +148_2-5 Q0 MARCO_13_1503456477-2 22 0.114840 hybrid +148_2-5 Q0 MARCO_55_1207119358-11 23 0.109845 hybrid +148_2-5 Q0 MARCO_59_795812895-3 24 0.104193 hybrid +148_2-5 Q0 MARCO_53_1021420296-5 25 0.100371 hybrid +148_2-5 Q0 MARCO_04_367685523-39 26 0.099855 hybrid +148_2-5 Q0 MARCO_19_1516985221-2 27 0.092913 hybrid +148_2-5 Q0 MARCO_43_1680016746-20 28 0.089395 hybrid +148_2-5 Q0 MARCO_43_1680016746-9 29 0.082431 hybrid +148_2-5 Q0 MARCO_04_368618282-1 30 0.070846 hybrid +148_2-5 Q0 MARCO_23_487958489-3 31 0.066671 hybrid +148_2-5 Q0 MARCO_13_1502773009-3 32 0.066414 hybrid +148_2-5 Q0 MARCO_04_1495644447-1 33 0.050678 hybrid +148_2-5 Q0 MARCO_46_702650276-43 34 0.044510 hybrid +148_2-5 Q0 MARCO_59_994614779-6 35 0.039656 hybrid +148_2-5 Q0 MARCO_00_761177399-19 36 0.039281 hybrid +148_2-5 Q0 MARCO_51_155164219-3 37 0.035904 hybrid +148_2-5 Q0 MARCO_12_762757949-8 38 0.027086 hybrid +148_2-5 Q0 MARCO_42_1457344699-8 39 0.024342 hybrid +148_2-5 Q0 MARCO_53_461721209-1 40 0.022888 hybrid +148_2-5 Q0 MARCO_44_1419429159-2 41 0.015361 hybrid +148_2-5 Q0 MARCO_29_1351946911-1 42 0.012922 hybrid +148_2-5 Q0 MARCO_22_711314510-11 43 0.002298 hybrid +148_2-5 Q0 MARCO_59_997600373-6 44 -0.006590 hybrid +148_2-5 Q0 MARCO_58_742042147-8 45 -0.012335 hybrid +148_2-5 Q0 MARCO_16_168071279-8 46 -0.021270 hybrid +148_2-5 Q0 MARCO_03_545348496-4 47 -0.022419 hybrid +148_2-5 Q0 MARCO_14_620073075-11 48 -0.022489 hybrid +148_2-5 Q0 MARCO_07_559054457-1 49 -0.024295 hybrid +148_2-5 Q0 MARCO_02_412967385-4 50 -0.026406 hybrid +148_2-5 Q0 MARCO_44_1417851409-2 51 -0.028352 hybrid +148_2-5 Q0 MARCO_34_313418935-9 52 -0.031800 hybrid +148_2-5 Q0 MARCO_49_1770226843-5 53 -0.036724 hybrid +148_2-5 Q0 MARCO_47_678995673-1 54 -0.040805 hybrid +148_2-5 Q0 MARCO_30_189079613-1 55 -0.041438 hybrid +148_2-5 Q0 MARCO_19_1494139325-8 56 -0.043032 hybrid +148_2-5 Q0 MARCO_44_1470427551-4 57 -0.043502 hybrid +148_2-5 Q0 MARCO_36_1163248924-4 58 -0.046831 hybrid +148_2-5 Q0 MARCO_14_722635357-298 59 -0.049950 hybrid +148_2-5 Q0 MARCO_42_1103646140-21 60 -0.050631 hybrid +148_2-5 Q0 MARCO_51_1181238036-6 61 -0.055860 hybrid +148_2-5 Q0 MARCO_41_285668458-2 62 -0.056447 hybrid +148_2-5 Q0 MARCO_01_628921716-24 63 -0.056986 hybrid +148_2-5 Q0 MARCO_53_1021420296-22 64 -0.058299 hybrid +148_2-5 Q0 MARCO_18_576533302-5 65 -0.059777 hybrid +148_2-5 Q0 MARCO_22_1597369241-1 66 -0.060550 hybrid +148_2-5 Q0 MARCO_44_1419815522-6 67 -0.061676 hybrid +148_2-5 Q0 MARCO_54_1802027457-4 68 -0.066741 hybrid +148_2-5 Q0 MARCO_04_1022851532-1 69 -0.069837 hybrid +148_2-5 Q0 MARCO_22_1619224126-20 70 -0.074527 hybrid +148_2-5 Q0 MARCO_47_639218338-2 71 -0.076568 hybrid +148_2-5 Q0 MARCO_00_760286197-3 72 -0.078256 hybrid +148_2-5 Q0 MARCO_43_1677830774-6 73 -0.079382 hybrid +148_2-5 Q0 MARCO_21_975023222-2 74 -0.080718 hybrid +148_2-5 Q0 MARCO_52_1153735543-2 75 -0.082993 hybrid +148_2-5 Q0 MARCO_54_1709774081-1 76 -0.087285 hybrid +148_2-5 Q0 MARCO_13_1502162129-1 77 -0.089700 hybrid +148_2-5 Q0 MARCO_13_1503380329-7 78 -0.090310 hybrid +148_2-5 Q0 MARCO_59_537093455-12 79 -0.091506 hybrid +148_2-5 Q0 MARCO_13_48694851-41 80 -0.093452 hybrid +148_2-5 Q0 MARCO_03_208072659-3 81 -0.094625 hybrid +148_2-5 Q0 MARCO_49_1405248988-9 82 -0.101379 hybrid +148_2-5 Q0 MARCO_53_1021420296-1 83 -0.101988 hybrid +148_2-5 Q0 MARCO_10_125369613-6 84 -0.102106 hybrid +148_2-5 Q0 MARCO_13_1003669159-12 85 -0.103231 hybrid +148_2-5 Q0 MARCO_14_612892200-8 86 -0.104592 hybrid +148_2-5 Q0 MARCO_32_608482885-7 87 -0.107242 hybrid +148_2-5 Q0 MARCO_39_1079891342-1 88 -0.108320 hybrid +148_2-5 Q0 MARCO_00_740746689-5 89 -0.109399 hybrid +148_2-5 Q0 MARCO_21_935717424-7 90 -0.110079 hybrid +148_2-5 Q0 MARCO_26_1016599499-12 91 -0.114277 hybrid +148_2-5 Q0 MARCO_36_1384582229-19 92 -0.114347 hybrid +148_2-5 Q0 MARCO_23_916643861-1 93 -0.115191 hybrid +148_2-5 Q0 MARCO_55_648033594-7 94 -0.115778 hybrid +148_2-5 Q0 MARCO_40_1283914475-7 95 -0.117068 hybrid +148_2-5 Q0 MARCO_13_1503380329-3 96 -0.118099 hybrid +148_2-5 Q0 MARCO_58_1165833561-6 97 -0.118217 hybrid +148_2-5 Q0 MARCO_12_1481995207-2 98 -0.119530 hybrid +148_2-5 Q0 MARCO_53_1446941273-6 99 -0.121640 hybrid +148_2-5 Q0 MARCO_13_1503272490-4 100 -0.122086 hybrid +149_1-1 Q0 MARCO_50_2268879788-13 1 0.500000 hybrid +149_1-1 Q0 KILT_25606638-7 2 0.383623 hybrid +149_1-1 Q0 MARCO_18_2680083328-16 3 0.377342 hybrid +149_1-1 Q0 MARCO_50_796224832-20 4 0.375083 hybrid +149_1-1 Q0 KILT_4059023-13 5 0.359363 hybrid +149_1-1 Q0 MARCO_50_2268879788-14 6 0.330493 hybrid +149_1-1 Q0 MARCO_14_257204425-1 7 0.316187 hybrid +149_1-1 Q0 MARCO_53_1448548338-2 8 0.298079 hybrid +149_1-1 Q0 MARCO_19_739382593-3 9 0.293782 hybrid +149_1-1 Q0 MARCO_53_495578912-1 10 0.291450 hybrid +149_1-1 Q0 MARCO_14_257204425-4 11 0.279825 hybrid +149_1-1 Q0 MARCO_53_495549415-1 12 0.277823 hybrid +149_1-1 Q0 MARCO_50_1789079732-12 13 0.259532 hybrid +149_1-1 Q0 MARCO_50_2268879788-1 14 0.256483 hybrid +149_1-1 Q0 MARCO_50_796224832-21 15 0.255932 hybrid +149_1-1 Q0 MARCO_48_119371286-2 16 0.206035 hybrid +149_1-1 Q0 MARCO_16_1884092099-1 17 0.194668 hybrid +149_1-1 Q0 MARCO_11_91688302-1 18 0.182565 hybrid +149_1-1 Q0 MARCO_39_758110571-4 19 0.172483 hybrid +149_1-1 Q0 MARCO_50_796224832-22 20 0.167598 hybrid +149_1-1 Q0 MARCO_50_1781293610-9 21 0.165045 hybrid +149_1-1 Q0 MARCO_19_2056728389-2 22 0.156598 hybrid +149_1-1 Q0 KILT_60912658-6 23 0.145358 hybrid +149_1-1 Q0 MARCO_41_1834051265-1 24 0.132852 hybrid +149_1-1 Q0 MARCO_37_685404558-6 25 0.131879 hybrid +149_1-1 Q0 MARCO_41_1834051265-6 26 0.128995 hybrid +149_1-1 Q0 MARCO_54_2019229665-3 27 0.114542 hybrid +149_1-1 Q0 MARCO_27_1674081299-4 28 0.114432 hybrid +149_1-1 Q0 MARCO_50_2268879788-8 29 0.113624 hybrid +149_1-1 Q0 MARCO_19_739382593-4 30 0.113385 hybrid +149_1-1 Q0 MARCO_50_2268879788-21 31 0.110006 hybrid +149_1-1 Q0 MARCO_50_1876380199-7 32 0.103101 hybrid +149_1-1 Q0 MARCO_54_2019229665-5 33 0.103101 hybrid +149_1-1 Q0 MARCO_29_953215470-1 34 0.094341 hybrid +149_1-1 Q0 MARCO_52_258700460-1 35 0.090227 hybrid +149_1-1 Q0 MARCO_16_379446895-11 36 0.089897 hybrid +149_1-1 Q0 MARCO_50_796224832-19 37 0.085452 hybrid +149_1-1 Q0 MARCO_29_517941810-4 38 0.084791 hybrid +149_1-1 Q0 MARCO_14_257204425-5 39 0.083432 hybrid +149_1-1 Q0 MARCO_50_1579886183-1 40 0.082018 hybrid +149_1-1 Q0 MARCO_50_1876380199-21 41 0.069475 hybrid +149_1-1 Q0 MARCO_28_351207684-1 42 0.068594 hybrid +149_1-1 Q0 MARCO_23_1546529510-1 43 0.065582 hybrid +149_1-1 Q0 MARCO_50_887569727-21 44 0.062037 hybrid +149_1-1 Q0 MARCO_14_1507239773-1 45 0.059613 hybrid +149_1-1 Q0 MARCO_16_5552086-1 46 0.059613 hybrid +149_1-1 Q0 MARCO_50_1781293610-1 47 0.059430 hybrid +149_1-1 Q0 MARCO_32_1102217822-5 48 0.056987 hybrid +149_1-1 Q0 MARCO_55_280879879-4 49 0.052433 hybrid +149_1-1 Q0 MARCO_16_2695108729-3 50 0.048668 hybrid +149_1-1 Q0 MARCO_50_2268879788-2 51 0.045785 hybrid +149_1-1 Q0 MARCO_48_119371286-1 52 0.043030 hybrid +149_1-1 Q0 MARCO_17_1590052482-33 53 0.039743 hybrid +149_1-1 Q0 MARCO_19_731655567-9 54 0.036694 hybrid +149_1-1 Q0 KILT_2117890-3 55 0.032268 hybrid +149_1-1 Q0 MARCO_00_1125943866-4 56 0.026869 hybrid +149_1-1 Q0 MARCO_50_2268879788-22 57 0.026649 hybrid +149_1-1 Q0 MARCO_18_42421250-8 58 0.025859 hybrid +149_1-1 Q0 MARCO_50_887569727-20 59 0.015905 hybrid +149_1-1 Q0 MARCO_50_1282039167-14 60 0.015207 hybrid +149_1-1 Q0 MARCO_16_1884092099-7 61 0.013977 hybrid +149_1-1 Q0 MARCO_31_217727076-2 62 0.013977 hybrid +149_1-1 Q0 MARCO_52_258700460-4 63 0.006576 hybrid +149_1-1 Q0 MARCO_09_383239358-27 64 0.005070 hybrid +149_1-1 Q0 MARCO_42_1058213907-2 65 0.003068 hybrid +149_1-1 Q0 MARCO_16_1883837804-20 66 0.002242 hybrid +149_1-1 Q0 MARCO_23_141388715-3 67 -0.001156 hybrid +149_1-1 Q0 MARCO_50_2268879788-31 68 -0.001156 hybrid +149_1-1 Q0 MARCO_24_407549356-3 69 -0.002937 hybrid +149_1-1 Q0 MARCO_30_1637653303-5 70 -0.003194 hybrid +149_1-1 Q0 MARCO_41_521733446-3 71 -0.005912 hybrid +149_1-1 Q0 MARCO_19_739382593-7 72 -0.006647 hybrid +149_1-1 Q0 KILT_56463048-1 73 -0.007749 hybrid +149_1-1 Q0 MARCO_09_229877739-1 74 -0.010008 hybrid +149_1-1 Q0 MARCO_15_341533485-8 75 -0.013056 hybrid +149_1-1 Q0 MARCO_17_831833609-1 76 -0.014764 hybrid +149_1-1 Q0 MARCO_53_1373867727-1 77 -0.014764 hybrid +149_1-1 Q0 MARCO_50_2268879788-9 78 -0.014783 hybrid +149_1-1 Q0 MARCO_52_258700460-2 79 -0.016123 hybrid +149_1-1 Q0 MARCO_50_1876380199-18 80 -0.020861 hybrid +149_1-1 Q0 MARCO_52_952717852-13 81 -0.029878 hybrid +149_1-1 Q0 KILT_60912658-7 82 -0.046443 hybrid +149_1-1 Q0 MARCO_46_579292980-28 83 -0.047582 hybrid +149_1-1 Q0 MARCO_14_257274681-2 84 -0.047600 hybrid +149_1-1 Q0 MARCO_14_257204425-7 85 -0.048041 hybrid +149_1-1 Q0 MARCO_40_1240654691-21 86 -0.048555 hybrid +149_1-1 Q0 KILT_1934622-2 87 -0.052650 hybrid +149_1-1 Q0 MARCO_52_45879039-10 88 -0.058931 hybrid +149_1-1 Q0 MARCO_12_586645920-12 89 -0.059574 hybrid +149_1-1 Q0 MARCO_53_1365652193-2 90 -0.059574 hybrid +149_1-1 Q0 MARCO_50_1876380199-12 91 -0.061392 hybrid +149_1-1 Q0 MARCO_34_1658348456-2 92 -0.067471 hybrid +149_1-1 Q0 MARCO_18_1849918782-2 93 -0.067673 hybrid +149_1-1 Q0 MARCO_11_775612189-5 94 -0.068334 hybrid +149_1-1 Q0 MARCO_19_1693359708-3 95 -0.068334 hybrid +149_1-1 Q0 KILT_25606638-6 96 -0.077076 hybrid +149_1-1 Q0 KILT_31737261-1 97 -0.077259 hybrid +149_1-1 Q0 MARCO_20_1578045839-8 98 -0.077259 hybrid +149_1-1 Q0 MARCO_50_887569727-14 99 -0.079298 hybrid +149_1-1 Q0 MARCO_18_3009965221-28 100 -0.080381 hybrid +149_1-3 Q0 MARCO_14_257204425-1 1 0.500000 hybrid +149_1-3 Q0 MARCO_50_1789079732-12 2 0.423350 hybrid +149_1-3 Q0 MARCO_53_1448548338-2 3 0.419487 hybrid +149_1-3 Q0 MARCO_19_739382593-3 4 0.376470 hybrid +149_1-3 Q0 MARCO_50_2268879788-8 5 0.343341 hybrid +149_1-3 Q0 MARCO_50_2268879788-13 6 0.337441 hybrid +149_1-3 Q0 KILT_25606638-7 7 0.335300 hybrid +149_1-3 Q0 MARCO_53_495549415-1 8 0.333830 hybrid +149_1-3 Q0 MARCO_50_796224832-21 9 0.310548 hybrid +149_1-3 Q0 MARCO_16_5552086-1 10 0.285669 hybrid +149_1-3 Q0 MARCO_14_257204425-4 11 0.282079 hybrid +149_1-3 Q0 MARCO_39_758110571-4 12 0.279854 hybrid +149_1-3 Q0 MARCO_18_2680083328-16 13 0.257537 hybrid +149_1-3 Q0 KILT_4059023-13 14 0.235976 hybrid +149_1-3 Q0 KILT_60912658-6 15 0.215632 hybrid +149_1-3 Q0 MARCO_50_2268879788-14 16 0.210090 hybrid +149_1-3 Q0 MARCO_48_119371286-2 17 0.201356 hybrid +149_1-3 Q0 MARCO_50_1781293610-9 18 0.187164 hybrid +149_1-3 Q0 MARCO_50_1579886183-1 19 0.185484 hybrid +149_1-3 Q0 MARCO_50_2268879788-9 20 0.184624 hybrid +149_1-3 Q0 MARCO_50_887569727-21 21 0.165414 hybrid +149_1-3 Q0 MARCO_53_495578912-1 22 0.163356 hybrid +149_1-3 Q0 MARCO_14_1507239773-1 23 0.144063 hybrid +149_1-3 Q0 MARCO_52_258700460-1 24 0.122565 hybrid +149_1-3 Q0 MARCO_50_1449276333-3 25 0.119478 hybrid +149_1-3 Q0 MARCO_50_1916589262-7 26 0.116371 hybrid +149_1-3 Q0 MARCO_41_1834051265-6 27 0.112152 hybrid +149_1-3 Q0 MARCO_50_2268879788-21 28 0.087966 hybrid +149_1-3 Q0 MARCO_50_887569727-20 29 0.085006 hybrid +149_1-3 Q0 MARCO_59_810794801-3 30 0.084271 hybrid +149_1-3 Q0 MARCO_23_141388715-3 31 0.081353 hybrid +149_1-3 Q0 MARCO_50_2506569724-109 32 0.075076 hybrid +149_1-3 Q0 MARCO_59_811553321-4 33 0.073375 hybrid +149_1-3 Q0 MARCO_19_1553740604-3 34 0.070520 hybrid +149_1-3 Q0 MARCO_50_796224832-20 35 0.068252 hybrid +149_1-3 Q0 MARCO_19_2056728389-2 36 0.066741 hybrid +149_1-3 Q0 MARCO_14_257204425-5 37 0.057713 hybrid +149_1-3 Q0 MARCO_48_119371286-1 38 0.051016 hybrid +149_1-3 Q0 MARCO_52_258700460-2 39 0.032751 hybrid +149_1-3 Q0 MARCO_50_796224832-22 40 0.028216 hybrid +149_1-3 Q0 MARCO_50_796224832-5 41 0.020259 hybrid +149_1-3 Q0 MARCO_41_521733446-3 42 0.019861 hybrid +149_1-3 Q0 MARCO_54_2019229665-3 43 0.015935 hybrid +149_1-3 Q0 MARCO_15_341533485-8 44 0.009112 hybrid +149_1-3 Q0 MARCO_50_1876380199-21 45 0.005290 hybrid +149_1-3 Q0 MARCO_54_2019229665-5 46 0.000168 hybrid +149_1-3 Q0 MARCO_50_1781293610-1 47 -0.009280 hybrid +149_1-3 Q0 MARCO_19_739382593-4 48 -0.023745 hybrid +149_1-3 Q0 MARCO_31_217727076-2 49 -0.025361 hybrid +149_1-3 Q0 MARCO_16_27789798-1 50 -0.027943 hybrid +149_1-3 Q0 MARCO_50_2268879788-31 51 -0.036635 hybrid +149_1-3 Q0 KILT_56463048-1 52 -0.039322 hybrid +149_1-3 Q0 MARCO_50_1835150300-1 53 -0.044865 hybrid +149_1-3 Q0 MARCO_27_904423267-2 54 -0.045936 hybrid +149_1-3 Q0 MARCO_07_937700298-4 55 -0.049148 hybrid +149_1-3 Q0 MARCO_50_2268879788-20 56 -0.051331 hybrid +149_1-3 Q0 MARCO_50_1876380199-9 57 -0.053430 hybrid +149_1-3 Q0 MARCO_14_257204425-7 58 -0.054585 hybrid +149_1-3 Q0 MARCO_24_407549356-3 59 -0.054900 hybrid +149_1-3 Q0 MARCO_24_420277293-4 60 -0.064515 hybrid +149_1-3 Q0 MARCO_16_379446895-11 61 -0.064956 hybrid +149_1-3 Q0 MARCO_11_775612189-5 62 -0.066762 hybrid +149_1-3 Q0 MARCO_50_2268879788-1 63 -0.067329 hybrid +149_1-3 Q0 MARCO_29_517941810-4 64 -0.068651 hybrid +149_1-3 Q0 MARCO_47_672091238-29 65 -0.069806 hybrid +149_1-3 Q0 MARCO_41_1834051265-1 66 -0.079442 hybrid +149_1-3 Q0 MARCO_13_341312255-5 67 -0.084019 hybrid +149_1-3 Q0 MARCO_58_344126604-20 68 -0.086958 hybrid +149_1-3 Q0 MARCO_50_796224832-31 69 -0.087420 hybrid +149_1-3 Q0 MARCO_50_1781293610-8 70 -0.088155 hybrid +149_1-3 Q0 MARCO_23_1546529510-1 71 -0.092753 hybrid +149_1-3 Q0 MARCO_16_1884092099-7 72 -0.099030 hybrid +149_1-3 Q0 MARCO_55_280879879-4 73 -0.103439 hybrid +149_1-3 Q0 MARCO_21_146199531-2 74 -0.103817 hybrid +149_1-3 Q0 MARCO_16_27789798-24 75 -0.109317 hybrid +149_1-3 Q0 MARCO_12_1246869217-12 76 -0.115595 hybrid +149_1-3 Q0 KILT_5376868-7 77 -0.117043 hybrid +149_1-3 Q0 MARCO_23_689435777-4 78 -0.117484 hybrid +149_1-3 Q0 MARCO_51_562011635-25 79 -0.117841 hybrid +149_1-3 Q0 MARCO_19_1693359708-3 80 -0.119478 hybrid +149_1-3 Q0 MARCO_50_1499672928-13 81 -0.122229 hybrid +149_1-3 Q0 MARCO_17_1589523020-7 82 -0.128212 hybrid +149_1-3 Q0 MARCO_59_989112174-5 83 -0.129409 hybrid +149_1-3 Q0 MARCO_00_1125943866-4 84 -0.130438 hybrid +149_1-3 Q0 MARCO_50_1767525718-10 85 -0.132264 hybrid +149_1-3 Q0 KILT_59160-2 86 -0.132285 hybrid +149_1-3 Q0 MARCO_50_796224832-19 87 -0.137849 hybrid +149_1-3 Q0 MARCO_16_1884092099-1 88 -0.137996 hybrid +149_1-3 Q0 MARCO_13_329604627-13 89 -0.149080 hybrid +149_1-3 Q0 MARCO_11_91688302-1 90 -0.151831 hybrid +149_1-3 Q0 MARCO_50_2001347706-10 91 -0.153552 hybrid +149_1-3 Q0 MARCO_28_351207684-1 92 -0.154350 hybrid +149_1-3 Q0 MARCO_30_1637653303-5 93 -0.155295 hybrid +149_1-3 Q0 MARCO_50_1459198655-20 94 -0.161089 hybrid +149_1-3 Q0 MARCO_40_637293839-11 95 -0.162034 hybrid +149_1-3 Q0 MARCO_16_2695108729-3 96 -0.162895 hybrid +149_1-3 Q0 MARCO_16_27822744-2 97 -0.163294 hybrid +149_1-3 Q0 MARCO_31_315656683-2 98 -0.166170 hybrid +149_1-3 Q0 MARCO_52_45879039-8 99 -0.167555 hybrid +149_1-3 Q0 MARCO_33_1039937735-1 100 -0.168206 hybrid +149_1-5 Q0 MARCO_14_1324408663-7 1 0.500000 hybrid +149_1-5 Q0 MARCO_26_1124922906-2 2 0.438941 hybrid +149_1-5 Q0 MARCO_21_1385040724-17 3 0.397366 hybrid +149_1-5 Q0 MARCO_24_436535769-54 4 0.373523 hybrid +149_1-5 Q0 MARCO_46_454253917-79 5 0.373523 hybrid +149_1-5 Q0 MARCO_18_1295495503-13 6 0.365954 hybrid +149_1-5 Q0 MARCO_01_1446070844-117 7 0.356184 hybrid +149_1-5 Q0 KILT_75469-13 8 0.352637 hybrid +149_1-5 Q0 MARCO_13_577643923-2 9 0.333083 hybrid +149_1-5 Q0 MARCO_50_2170752409-5 10 0.331331 hybrid +149_1-5 Q0 MARCO_22_825900840-7 11 0.326453 hybrid +149_1-5 Q0 KILT_486842-1 12 0.325066 hybrid +149_1-5 Q0 MARCO_50_1784118219-36 13 0.321715 hybrid +149_1-5 Q0 MARCO_16_789022350-2 14 0.300171 hybrid +149_1-5 Q0 MARCO_03_283029107-6 15 0.286729 hybrid +149_1-5 Q0 MARCO_35_553828989-4 16 0.247312 hybrid +149_1-5 Q0 MARCO_50_1457425192-1 17 0.245364 hybrid +149_1-5 Q0 MARCO_27_10228444-1 18 0.235874 hybrid +149_1-5 Q0 MARCO_12_475795995-1 19 0.234865 hybrid +149_1-5 Q0 MARCO_26_884150944-2 20 0.231697 hybrid +149_1-5 Q0 MARCO_02_835152930-7 21 0.223020 hybrid +149_1-5 Q0 MARCO_50_1467974407-16 22 0.210027 hybrid +149_1-5 Q0 MARCO_07_910684566-12 23 0.191244 hybrid +149_1-5 Q0 MARCO_41_1450100997-93 24 0.182721 hybrid +149_1-5 Q0 MARCO_46_855191999-2 25 0.172096 hybrid +149_1-5 Q0 MARCO_59_267991679-3 26 0.154995 hybrid +149_1-5 Q0 MARCO_16_1884092099-7 27 0.153748 hybrid +149_1-5 Q0 MARCO_50_1552139554-52 28 0.142029 hybrid +149_1-5 Q0 MARCO_36_1232360626-2 29 0.141567 hybrid +149_1-5 Q0 MARCO_51_728854461-3 30 0.141300 hybrid +149_1-5 Q0 MARCO_47_358606916-9 31 0.135525 hybrid +149_1-5 Q0 MARCO_38_1453513769-4 32 0.135497 hybrid +149_1-5 Q0 MARCO_28_293422367-1 33 0.134572 hybrid +149_1-5 Q0 MARCO_50_1760278495-37 34 0.134362 hybrid +149_1-5 Q0 MARCO_27_23226404-5 35 0.131881 hybrid +149_1-5 Q0 MARCO_44_1964465105-16 36 0.130339 hybrid +149_1-5 Q0 MARCO_19_1479007642-12 37 0.126877 hybrid +149_1-5 Q0 MARCO_04_661251323-5 38 0.111542 hybrid +149_1-5 Q0 MARCO_41_1032909409-37 39 0.110953 hybrid +149_1-5 Q0 KILT_52522301-2 40 0.110350 hybrid +149_1-5 Q0 MARCO_05_1286221069-2 41 0.108178 hybrid +149_1-5 Q0 MARCO_39_697502375-10 42 0.104856 hybrid +149_1-5 Q0 MARCO_28_293422367-2 43 0.103538 hybrid +149_1-5 Q0 MARCO_50_1776617987-3 44 0.095857 hybrid +149_1-5 Q0 MARCO_19_1560652565-3 45 0.094721 hybrid +149_1-5 Q0 KILT_40786-1 46 0.088133 hybrid +149_1-5 Q0 MARCO_14_1609649799-2 47 0.085105 hybrid +149_1-5 Q0 MARCO_50_1465157992-23 48 0.084755 hybrid +149_1-5 Q0 MARCO_52_1381578077-1 49 0.084559 hybrid +149_1-5 Q0 MARCO_33_609135774-2 50 0.084124 hybrid +149_1-5 Q0 MARCO_56_189278371-83 51 0.079793 hybrid +149_1-5 Q0 MARCO_54_1849887059-1 52 0.068817 hybrid +149_1-5 Q0 MARCO_50_1811232422-5 53 0.065902 hybrid +149_1-5 Q0 MARCO_49_1655856862-19 54 0.057379 hybrid +149_1-5 Q0 MARCO_50_1552139554-55 55 0.051464 hybrid +149_1-5 Q0 MARCO_45_902892436-4 56 0.045255 hybrid +149_1-5 Q0 MARCO_22_782533582-1 57 0.044904 hybrid +149_1-5 Q0 MARCO_41_1576803203-2 58 0.044105 hybrid +149_1-5 Q0 MARCO_17_2427591020-35 59 0.042045 hybrid +149_1-5 Q0 MARCO_41_1328904068-50 60 0.039984 hybrid +149_1-5 Q0 MARCO_52_1097406000-83 61 0.031195 hybrid +149_1-5 Q0 MARCO_26_1765983551-4 62 0.026920 hybrid +149_1-5 Q0 KILT_7730261-12 63 0.024761 hybrid +149_1-5 Q0 MARCO_02_452442400-11 64 0.019449 hybrid +149_1-5 Q0 MARCO_14_257204425-3 65 0.012763 hybrid +149_1-5 Q0 MARCO_55_543896772-3 66 0.012651 hybrid +149_1-5 Q0 MARCO_14_1518866517-1 67 0.009286 hybrid +149_1-5 Q0 KILT_15179951-25 68 0.008992 hybrid +149_1-5 Q0 MARCO_17_2427591020-15 69 0.008642 hybrid +149_1-5 Q0 MARCO_24_1236420321-4 70 0.005768 hybrid +149_1-5 Q0 MARCO_45_244258907-9 71 -0.006483 hybrid +149_1-5 Q0 MARCO_50_95890828-4 72 -0.006749 hybrid +149_1-5 Q0 MARCO_46_454253917-13 73 -0.008417 hybrid +149_1-5 Q0 MARCO_50_1457425192-2 74 -0.011067 hybrid +149_1-5 Q0 MARCO_50_1467974407-17 75 -0.011067 hybrid +149_1-5 Q0 MARCO_27_1264306551-125 76 -0.011543 hybrid +149_1-5 Q0 MARCO_45_1106143025-4 77 -0.011599 hybrid +149_1-5 Q0 MARCO_50_1459198655-37 78 -0.014305 hybrid +149_1-5 Q0 MARCO_11_72516011-3 79 -0.020963 hybrid +149_1-5 Q0 MARCO_26_1718206077-3 80 -0.021551 hybrid +149_1-5 Q0 MARCO_24_436535769-10 81 -0.028574 hybrid +149_1-5 Q0 KILT_75469-15 82 -0.028756 hybrid +149_1-5 Q0 MARCO_22_825900840-41 83 -0.028981 hybrid +149_1-5 Q0 MARCO_36_608754203-14 84 -0.034783 hybrid +149_1-5 Q0 MARCO_50_1528546939-7 85 -0.036396 hybrid +149_1-5 Q0 MARCO_24_1236426613-36 86 -0.038330 hybrid +149_1-5 Q0 MARCO_50_1846519635-1 87 -0.043839 hybrid +149_1-5 Q0 MARCO_54_248338979-6 88 -0.045142 hybrid +149_1-5 Q0 MARCO_09_475976063-2 89 -0.047483 hybrid +149_1-5 Q0 MARCO_46_454253917-35 90 -0.048591 hybrid +149_1-5 Q0 MARCO_14_1192325914-4 91 -0.049992 hybrid +149_1-5 Q0 MARCO_50_2478023004-16 92 -0.051268 hybrid +149_1-5 Q0 MARCO_23_1709422974-7 93 -0.052908 hybrid +149_1-5 Q0 MARCO_27_1314080225-39 94 -0.054240 hybrid +149_1-5 Q0 KILT_60912658-4 95 -0.054295 hybrid +149_1-5 Q0 MARCO_56_189439749-1 96 -0.055375 hybrid +149_1-5 Q0 MARCO_19_1479007642-4 97 -0.055473 hybrid +149_1-5 Q0 MARCO_09_766543284-1 98 -0.059790 hybrid +149_1-5 Q0 KILT_11054-6 99 -0.060996 hybrid +149_1-5 Q0 KILT_1886914-2 100 -0.061879 hybrid +149_2-1 Q0 MARCO_56_189439749-1 1 0.500000 hybrid +149_2-1 Q0 MARCO_16_1884092099-7 2 0.469413 hybrid +149_2-1 Q0 MARCO_56_189278371-83 3 0.407239 hybrid +149_2-1 Q0 MARCO_46_540480160-2 4 0.311165 hybrid +149_2-1 Q0 KILT_28452110-1 5 0.304040 hybrid +149_2-1 Q0 MARCO_14_1324408663-7 6 0.298239 hybrid +149_2-1 Q0 MARCO_35_553828989-4 7 0.272516 hybrid +149_2-1 Q0 KILT_40786-1 8 0.268105 hybrid +149_2-1 Q0 MARCO_14_1518866517-1 9 0.252351 hybrid +149_2-1 Q0 MARCO_33_609135774-2 10 0.242834 hybrid +149_2-1 Q0 MARCO_24_436535769-54 11 0.233059 hybrid +149_2-1 Q0 MARCO_46_454253917-79 12 0.233058 hybrid +149_2-1 Q0 MARCO_16_3877084168-22 13 0.232477 hybrid +149_2-1 Q0 MARCO_22_825900840-7 14 0.194442 hybrid +149_2-1 Q0 MARCO_48_601755679-5 15 0.169462 hybrid +149_2-1 Q0 MARCO_26_884150944-2 16 0.166505 hybrid +149_2-1 Q0 MARCO_17_2427591020-35 17 0.155469 hybrid +149_2-1 Q0 MARCO_50_1784118219-36 18 0.150073 hybrid +149_2-1 Q0 KILT_1886914-2 19 0.140023 hybrid +149_2-1 Q0 MARCO_17_2567781546-11 20 0.128583 hybrid +149_2-1 Q0 MARCO_26_1124922906-2 21 0.123477 hybrid +149_2-1 Q0 MARCO_22_1705357382-3 22 0.122960 hybrid +149_2-1 Q0 KILT_15179951-25 23 0.118274 hybrid +149_2-1 Q0 MARCO_50_1459198655-37 24 0.103005 hybrid +149_2-1 Q0 MARCO_41_1328904068-50 25 0.093214 hybrid +149_2-1 Q0 MARCO_50_1499672928-13 26 0.093181 hybrid +149_2-1 Q0 MARCO_51_728854461-3 27 0.092907 hybrid +149_2-1 Q0 KILT_222839-22 28 0.080740 hybrid +149_2-1 Q0 MARCO_54_2026277907-2 29 0.077702 hybrid +149_2-1 Q0 MARCO_28_438623662-5 30 0.071207 hybrid +149_2-1 Q0 MARCO_27_707758493-3 31 0.070674 hybrid +149_2-1 Q0 MARCO_18_1873917194-16 32 0.055211 hybrid +149_2-1 Q0 MARCO_18_2139383250-22 33 0.052642 hybrid +149_2-1 Q0 MARCO_30_399657783-7 34 0.051592 hybrid +149_2-1 Q0 MARCO_17_3210677273-82 35 0.034222 hybrid +149_2-1 Q0 MARCO_28_293422367-1 36 -0.001422 hybrid +149_2-1 Q0 MARCO_16_3811249059-1 37 -0.005623 hybrid +149_2-1 Q0 MARCO_50_1811232422-5 38 -0.006108 hybrid +149_2-1 Q0 MARCO_24_1909947062-23 39 -0.007125 hybrid +149_2-1 Q0 MARCO_02_452442400-11 40 -0.008628 hybrid +149_2-1 Q0 MARCO_26_125927043-45 41 -0.015802 hybrid +149_2-1 Q0 MARCO_12_1214668905-6 42 -0.017305 hybrid +149_2-1 Q0 MARCO_08_871949691-1 43 -0.018387 hybrid +149_2-1 Q0 KILT_25606638-7 44 -0.019922 hybrid +149_2-1 Q0 MARCO_07_870036977-21 45 -0.020294 hybrid +149_2-1 Q0 MARCO_30_1631001772-5 46 -0.029213 hybrid +149_2-1 Q0 MARCO_22_782533582-1 47 -0.029876 hybrid +149_2-1 Q0 KILT_14684661-2 48 -0.030603 hybrid +149_2-1 Q0 MARCO_16_2048344420-19 49 -0.035902 hybrid +149_2-1 Q0 KILT_25346749-16 50 -0.039667 hybrid +149_2-1 Q0 MARCO_18_1611565766-56 51 -0.041170 hybrid +149_2-1 Q0 MARCO_23_195349687-3 52 -0.042462 hybrid +149_2-1 Q0 MARCO_14_257204425-5 53 -0.047843 hybrid +149_2-1 Q0 MARCO_18_589879625-7 54 -0.050056 hybrid +149_2-1 Q0 MARCO_09_383239358-27 55 -0.053353 hybrid +149_2-1 Q0 MARCO_25_275710040-1 56 -0.057101 hybrid +149_2-1 Q0 MARCO_16_1883837804-1 57 -0.061028 hybrid +149_2-1 Q0 MARCO_14_1501631004-4 58 -0.063144 hybrid +149_2-1 Q0 MARCO_17_2537176014-19 59 -0.063241 hybrid +149_2-1 Q0 MARCO_18_3011212459-7 60 -0.063241 hybrid +149_2-1 Q0 MARCO_18_394256677-31 61 -0.063242 hybrid +149_2-1 Q0 MARCO_50_2361108108-64 62 -0.063791 hybrid +149_2-1 Q0 MARCO_27_96874174-3 63 -0.065019 hybrid +149_2-1 Q0 MARCO_17_3522587810-140 64 -0.065729 hybrid +149_2-1 Q0 MARCO_01_594254822-1 65 -0.067588 hybrid +149_2-1 Q0 MARCO_36_608754203-14 66 -0.068428 hybrid +149_2-1 Q0 MARCO_50_1760278495-37 67 -0.069688 hybrid +149_2-1 Q0 MARCO_55_543896772-3 68 -0.070464 hybrid +149_2-1 Q0 MARCO_50_1776617987-3 69 -0.071255 hybrid +149_2-1 Q0 MARCO_50_1465157992-23 70 -0.079415 hybrid +149_2-1 Q0 KILT_37440011-37 71 -0.084262 hybrid +149_2-1 Q0 MARCO_52_1144563151-2 72 -0.084892 hybrid +149_2-1 Q0 MARCO_41_1032909409-37 73 -0.086654 hybrid +149_2-1 Q0 MARCO_46_731023295-6 74 -0.087138 hybrid +149_2-1 Q0 MARCO_19_1560652565-3 75 -0.089772 hybrid +149_2-1 Q0 MARCO_49_634332028-1 76 -0.091194 hybrid +149_2-1 Q0 MARCO_18_261416683-26 77 -0.091469 hybrid +149_2-1 Q0 MARCO_19_876690979-36 78 -0.093488 hybrid +149_2-1 Q0 MARCO_50_1552139554-55 79 -0.093892 hybrid +149_2-1 Q0 MARCO_01_1747424502-65 80 -0.097980 hybrid +149_2-1 Q0 MARCO_15_1984988784-16 81 -0.100242 hybrid +149_2-1 Q0 MARCO_02_1130127393-3 82 -0.100921 hybrid +149_2-1 Q0 MARCO_18_1977897218-2 83 -0.103021 hybrid +149_2-1 Q0 MARCO_13_577643923-2 84 -0.103684 hybrid +149_2-1 Q0 MARCO_50_796224832-20 85 -0.103765 hybrid +149_2-1 Q0 KILT_56669067-9 86 -0.108790 hybrid +149_2-1 Q0 KILT_51058-3 87 -0.112215 hybrid +149_2-1 Q0 MARCO_01_338395246-40 88 -0.112603 hybrid +149_2-1 Q0 MARCO_34_24598867-13 89 -0.117757 hybrid +149_2-1 Q0 MARCO_02_1233279717-10 90 -0.120391 hybrid +149_2-1 Q0 MARCO_41_1450100997-50 91 -0.121538 hybrid +149_2-1 Q0 KILT_21881-1 92 -0.122540 hybrid +149_2-1 Q0 MARCO_00_1624820999-39 93 -0.123574 hybrid +149_2-1 Q0 KILT_26541830-3 94 -0.124834 hybrid +149_2-1 Q0 MARCO_31_1921529215-2 95 -0.126418 hybrid +149_2-1 Q0 MARCO_41_1834051265-6 96 -0.126903 hybrid +149_2-1 Q0 MARCO_08_703895923-7 97 -0.129439 hybrid +149_2-1 Q0 MARCO_14_1698527596-1 98 -0.132994 hybrid +149_2-1 Q0 MARCO_33_1468069140-3 99 -0.133705 hybrid +149_2-1 Q0 MARCO_05_1735044270-3 100 -0.135838 hybrid +149_2-3 Q0 MARCO_16_1884092099-2 1 0.500000 hybrid +149_2-3 Q0 MARCO_16_1884092099-1 2 -0.002684 hybrid +149_2-3 Q0 KILT_56463048-1 3 -0.021307 hybrid +149_2-3 Q0 MARCO_04_333901086-3 4 -0.025263 hybrid +149_2-3 Q0 MARCO_13_262772542-10 5 -0.065267 hybrid +149_2-3 Q0 MARCO_34_1682478814-7 6 -0.079685 hybrid +149_2-3 Q0 MARCO_34_1683165184-6 7 -0.079685 hybrid +149_2-3 Q0 MARCO_34_1682504260-6 8 -0.079685 hybrid +149_2-3 Q0 MARCO_34_1685104156-8 9 -0.079685 hybrid +149_2-3 Q0 MARCO_34_1684489396-8 10 -0.079685 hybrid +149_2-3 Q0 MARCO_34_1682303994-7 11 -0.095798 hybrid +149_2-3 Q0 MARCO_12_1214668905-5 12 -0.097587 hybrid +149_2-3 Q0 KILT_57559533-3 13 -0.099370 hybrid +149_2-3 Q0 MARCO_34_1684767503-5 14 -0.108776 hybrid +149_2-3 Q0 MARCO_34_1684411854-5 15 -0.129094 hybrid +149_2-3 Q0 MARCO_34_1682171026-8 16 -0.131671 hybrid +149_2-3 Q0 MARCO_22_1195396790-1 17 -0.134160 hybrid +149_2-3 Q0 MARCO_34_1681514603-9 18 -0.136609 hybrid +149_2-3 Q0 MARCO_34_1682661220-6 19 -0.136609 hybrid +149_2-3 Q0 MARCO_34_1683328715-9 20 -0.136609 hybrid +149_2-3 Q0 MARCO_34_1684749903-8 21 -0.136609 hybrid +149_2-3 Q0 MARCO_34_1683450110-7 22 -0.136609 hybrid +149_2-3 Q0 MARCO_12_1246869217-10 23 -0.141184 hybrid +149_2-3 Q0 MARCO_41_1779048611-6 24 -0.141635 hybrid +149_2-3 Q0 MARCO_34_1682893166-3 25 -0.158548 hybrid +149_2-3 Q0 MARCO_34_1685057566-5 26 -0.158549 hybrid +149_2-3 Q0 MARCO_13_468455708-29 27 -0.159833 hybrid +149_2-3 Q0 MARCO_30_222021655-18 28 -0.173942 hybrid +149_2-3 Q0 MARCO_51_2234559626-28 29 -0.174298 hybrid +149_2-3 Q0 MARCO_39_900606687-3 30 -0.176108 hybrid +149_2-3 Q0 MARCO_23_684316854-31 31 -0.183610 hybrid +149_2-3 Q0 MARCO_01_2081748520-2 32 -0.188185 hybrid +149_2-3 Q0 MARCO_34_1681563519-6 33 -0.193621 hybrid +149_2-3 Q0 MARCO_17_2604139427-3 34 -0.201142 hybrid +149_2-3 Q0 MARCO_31_790347143-2 35 -0.210804 hybrid +149_2-3 Q0 MARCO_49_1212385936-1 36 -0.214861 hybrid +149_2-3 Q0 MARCO_45_1193267770-5 37 -0.218090 hybrid +149_2-3 Q0 MARCO_16_2118184555-11 38 -0.223526 hybrid +149_2-3 Q0 MARCO_17_220210699-1 39 -0.224333 hybrid +149_2-3 Q0 MARCO_49_430015578-20 40 -0.225309 hybrid +149_2-3 Q0 MARCO_45_683395424-6 41 -0.225497 hybrid +149_2-3 Q0 KILT_41964576-6 42 -0.230631 hybrid +149_2-3 Q0 MARCO_50_1344034635-28 43 -0.237614 hybrid +149_2-3 Q0 MARCO_41_1784996672-1 44 -0.239390 hybrid +149_2-3 Q0 MARCO_18_1402511538-1 45 -0.240911 hybrid +149_2-3 Q0 MARCO_34_1684589642-11 46 -0.244631 hybrid +149_2-3 Q0 MARCO_34_1684999560-8 47 -0.245015 hybrid +149_2-3 Q0 MARCO_34_1683216584-8 48 -0.247982 hybrid +149_2-3 Q0 MARCO_34_1683356482-4 49 -0.247982 hybrid +149_2-3 Q0 MARCO_34_1684433822-8 50 -0.247982 hybrid +149_2-3 Q0 MARCO_01_1222647381-1 51 -0.249139 hybrid +149_2-3 Q0 MARCO_37_156834002-47 52 -0.249765 hybrid +149_2-3 Q0 MARCO_14_1585073314-6 53 -0.252853 hybrid +149_2-3 Q0 MARCO_30_1867981197-8 54 -0.254716 hybrid +149_2-3 Q0 MARCO_54_1857124017-3 55 -0.255604 hybrid +149_2-3 Q0 MARCO_55_594729534-4 56 -0.255725 hybrid +149_2-3 Q0 MARCO_18_2194982937-1 57 -0.256210 hybrid +149_2-3 Q0 MARCO_16_1884092099-5 58 -0.257232 hybrid +149_2-3 Q0 MARCO_16_2694881782-1 59 -0.260354 hybrid +149_2-3 Q0 MARCO_55_219869364-15 60 -0.261067 hybrid +149_2-3 Q0 MARCO_00_1301350500-8 61 -0.261330 hybrid +149_2-3 Q0 MARCO_34_1680837859-10 62 -0.264122 hybrid +149_2-3 Q0 MARCO_34_1681337090-7 63 -0.264122 hybrid +149_2-3 Q0 MARCO_34_1681916592-6 64 -0.264122 hybrid +149_2-3 Q0 MARCO_34_1682153035-9 65 -0.264122 hybrid +149_2-3 Q0 MARCO_34_1683110563-8 66 -0.264122 hybrid +149_2-3 Q0 MARCO_34_1684002954-7 67 -0.264122 hybrid +149_2-3 Q0 MARCO_16_2116216888-2 68 -0.264357 hybrid +149_2-3 Q0 MARCO_50_768872557-44 69 -0.264539 hybrid +149_2-3 Q0 MARCO_16_3894483066-14 70 -0.264761 hybrid +149_2-3 Q0 MARCO_09_1879732296-12 71 -0.264835 hybrid +149_2-3 Q0 MARCO_24_415846148-3 72 -0.265508 hybrid +149_2-3 Q0 MARCO_55_554556952-3 73 -0.265622 hybrid +149_2-3 Q0 MARCO_18_2097882093-36 74 -0.266376 hybrid +149_2-3 Q0 MARCO_44_809962679-1 75 -0.267156 hybrid +149_2-3 Q0 MARCO_56_1038194738-8 76 -0.268421 hybrid +149_2-3 Q0 MARCO_17_2604139427-4 77 -0.268831 hybrid +149_2-3 Q0 MARCO_57_2348228679-16 78 -0.270002 hybrid +149_2-3 Q0 MARCO_41_1282930520-16 79 -0.270029 hybrid +149_2-3 Q0 KILT_11226235-5 80 -0.270083 hybrid +149_2-3 Q0 MARCO_41_1469456035-41 81 -0.271307 hybrid +149_2-3 Q0 MARCO_17_219955475-29 82 -0.271347 hybrid +149_2-3 Q0 MARCO_37_156834002-14 83 -0.275270 hybrid +149_2-3 Q0 MARCO_34_1682813825-20 84 -0.275754 hybrid +149_2-3 Q0 MARCO_34_1683862591-13 85 -0.275754 hybrid +149_2-3 Q0 MARCO_18_3371460971-1 86 -0.278647 hybrid +149_2-3 Q0 MARCO_34_1680495963-26 87 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1680582570-7 88 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1681856008-4 89 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1682231675-9 90 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1682512091-8 91 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1683098564-4 92 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1683312688-6 93 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1683391963-7 94 -0.279024 hybrid +149_2-3 Q0 MARCO_34_1685140942-7 95 -0.279024 hybrid +149_2-3 Q0 MARCO_39_896071790-2 96 -0.280013 hybrid +149_2-3 Q0 MARCO_18_1405081530-1 97 -0.281399 hybrid +149_2-3 Q0 MARCO_33_241101445-3 98 -0.281426 hybrid +149_2-3 Q0 MARCO_34_1681563519-5 99 -0.282052 hybrid +149_2-3 Q0 MARCO_46_18077426-15 100 -0.282092 hybrid +149_2-5 Q0 MARCO_53_1373867727-4 1 0.500000 hybrid +149_2-5 Q0 MARCO_16_1884092099-2 2 0.207267 hybrid +149_2-5 Q0 MARCO_19_1611231381-29 3 0.204114 hybrid +149_2-5 Q0 MARCO_19_1611231381-31 4 0.204114 hybrid +149_2-5 Q0 MARCO_32_104275416-2 5 0.160977 hybrid +149_2-5 Q0 MARCO_35_67061241-11 6 0.126543 hybrid +149_2-5 Q0 MARCO_37_1649059650-12 7 0.121208 hybrid +149_2-5 Q0 KILT_56463048-1 8 0.110713 hybrid +149_2-5 Q0 MARCO_41_356353793-5 9 0.080873 hybrid +149_2-5 Q0 MARCO_35_67061241-4 10 0.078704 hybrid +149_2-5 Q0 MARCO_11_1132346939-4 11 0.076683 hybrid +149_2-5 Q0 MARCO_52_509401473-3 12 0.059021 hybrid +149_2-5 Q0 MARCO_31_310410627-5 13 0.049159 hybrid +149_2-5 Q0 MARCO_24_415846148-5 14 0.036388 hybrid +149_2-5 Q0 KILT_55817338-18 15 0.032751 hybrid +149_2-5 Q0 MARCO_45_900717827-10 16 0.025328 hybrid +149_2-5 Q0 MARCO_40_1216533571-4 17 0.017702 hybrid +149_2-5 Q0 MARCO_16_3772557373-7 18 0.006790 hybrid +149_2-5 Q0 MARCO_35_67061241-54 19 0.003947 hybrid +149_2-5 Q0 MARCO_50_1807360184-8 20 0.002735 hybrid +149_2-5 Q0 MARCO_45_900717827-9 21 0.002506 hybrid +149_2-5 Q0 KILT_40786-20 22 -0.003907 hybrid +149_2-5 Q0 MARCO_50_2268879788-8 23 -0.005874 hybrid +149_2-5 Q0 MARCO_52_1417961743-15 24 -0.009457 hybrid +149_2-5 Q0 MARCO_54_2014547813-6 25 -0.009834 hybrid +149_2-5 Q0 MARCO_13_461945084-2 26 -0.011060 hybrid +149_2-5 Q0 KILT_233488-27 27 -0.017689 hybrid +149_2-5 Q0 KILT_233488-30 28 -0.022835 hybrid +149_2-5 Q0 MARCO_17_757985744-6 29 -0.024452 hybrid +149_2-5 Q0 MARCO_37_1649059650-13 30 -0.025664 hybrid +149_2-5 Q0 MARCO_21_381040827-2 31 -0.031309 hybrid +149_2-5 Q0 MARCO_30_1131722693-17 32 -0.032845 hybrid +149_2-5 Q0 MARCO_24_415846148-3 33 -0.032898 hybrid +149_2-5 Q0 MARCO_24_415846148-7 34 -0.032899 hybrid +149_2-5 Q0 KILT_172827-33 35 -0.034394 hybrid +149_2-5 Q0 MARCO_34_1115159358-6 36 -0.036980 hybrid +149_2-5 Q0 MARCO_27_583264304-5 37 -0.038786 hybrid +149_2-5 Q0 MARCO_35_67061241-37 38 -0.044969 hybrid +149_2-5 Q0 MARCO_30_853577273-2 39 -0.058738 hybrid +149_2-5 Q0 MARCO_11_1132346939-1 40 -0.059115 hybrid +149_2-5 Q0 MARCO_24_411144558-3 41 -0.062375 hybrid +149_2-5 Q0 MARCO_59_692705986-3 42 -0.068020 hybrid +149_2-5 Q0 KILT_13659583-7 43 -0.070068 hybrid +149_2-5 Q0 MARCO_49_1146910026-22 44 -0.070135 hybrid +149_2-5 Q0 MARCO_34_1115159358-1 45 -0.073880 hybrid +149_2-5 Q0 MARCO_41_1834051265-1 46 -0.077127 hybrid +149_2-5 Q0 MARCO_24_411144558-5 47 -0.077477 hybrid +149_2-5 Q0 MARCO_13_67495081-6 48 -0.078986 hybrid +149_2-5 Q0 KILT_251484-5 49 -0.085426 hybrid +149_2-5 Q0 MARCO_27_583264304-7 50 -0.090397 hybrid +149_2-5 Q0 MARCO_53_1373867727-1 51 -0.090666 hybrid +149_2-5 Q0 MARCO_24_571574-9 52 -0.091407 hybrid +149_2-5 Q0 MARCO_28_1475759532-4 53 -0.091879 hybrid +149_2-5 Q0 MARCO_22_1591611225-2 54 -0.092148 hybrid +149_2-5 Q0 MARCO_34_1115159358-2 55 -0.095139 hybrid +149_2-5 Q0 MARCO_29_1459233498-7 56 -0.105095 hybrid +149_2-5 Q0 KILT_624839-2 57 -0.105566 hybrid +149_2-5 Q0 MARCO_28_355079994-3 58 -0.105768 hybrid +149_2-5 Q0 MARCO_41_1316706538-19 59 -0.109689 hybrid +149_2-5 Q0 MARCO_32_104275416-1 60 -0.109797 hybrid +149_2-5 Q0 MARCO_49_729537287-7 61 -0.113030 hybrid +149_2-5 Q0 MARCO_18_4142325179-21 62 -0.125828 hybrid +149_2-5 Q0 MARCO_50_1385990267-20 63 -0.129937 hybrid +149_2-5 Q0 KILT_2112366-7 64 -0.130301 hybrid +149_2-5 Q0 MARCO_40_1179347780-5 65 -0.133750 hybrid +149_2-5 Q0 MARCO_00_1412172913-5 66 -0.137926 hybrid +149_2-5 Q0 MARCO_01_227947145-8 67 -0.142924 hybrid +149_2-5 Q0 MARCO_16_379446895-11 68 -0.143733 hybrid +149_2-5 Q0 MARCO_25_1131743504-2 69 -0.145201 hybrid +149_2-5 Q0 MARCO_45_761587911-3 70 -0.148084 hybrid +149_2-5 Q0 MARCO_27_40314930-12 71 -0.148892 hybrid +149_2-5 Q0 MARCO_14_257204425-4 72 -0.150064 hybrid +149_2-5 Q0 MARCO_26_1141532609-14 73 -0.155992 hybrid +149_2-5 Q0 MARCO_39_808769298-1 74 -0.156342 hybrid +149_2-5 Q0 MARCO_19_1576385229-3 75 -0.156976 hybrid +149_2-5 Q0 MARCO_16_1884092099-1 76 -0.158282 hybrid +149_2-5 Q0 MARCO_35_67061241-12 77 -0.158727 hybrid +149_2-5 Q0 MARCO_31_1026974819-3 78 -0.160371 hybrid +149_2-5 Q0 MARCO_24_415846148-2 79 -0.160909 hybrid +149_2-5 Q0 MARCO_50_887569727-13 80 -0.160977 hybrid +149_2-5 Q0 MARCO_39_120937684-4 81 -0.165934 hybrid +149_2-5 Q0 MARCO_37_666833347-3 82 -0.166406 hybrid +149_2-5 Q0 MARCO_16_3117515279-4 83 -0.167484 hybrid +149_2-5 Q0 MARCO_40_1179347780-4 84 -0.171323 hybrid +149_2-5 Q0 MARCO_52_54754167-1 85 -0.174125 hybrid +149_2-5 Q0 MARCO_54_217237492-3 86 -0.174947 hybrid +149_2-5 Q0 MARCO_27_583264304-2 87 -0.177682 hybrid +149_2-5 Q0 MARCO_27_583264304-3 88 -0.181212 hybrid +149_2-5 Q0 MARCO_54_763304735-4 89 -0.185752 hybrid +149_2-5 Q0 MARCO_54_812586833-4 90 -0.185752 hybrid +149_2-5 Q0 MARCO_54_909190851-4 91 -0.185752 hybrid +149_2-5 Q0 MARCO_52_332368644-4 92 -0.187072 hybrid +149_2-5 Q0 MARCO_16_1883837804-20 93 -0.187463 hybrid +149_2-5 Q0 MARCO_50_249914157-6 94 -0.187746 hybrid +149_2-5 Q0 MARCO_12_88124827-2 95 -0.190750 hybrid +149_2-5 Q0 MARCO_16_1883837804-21 96 -0.190750 hybrid +149_2-5 Q0 MARCO_27_331604633-15 97 -0.194576 hybrid +149_2-5 Q0 MARCO_16_1883837804-8 98 -0.194953 hybrid +149_2-5 Q0 MARCO_40_1179347780-3 99 -0.200126 hybrid +149_2-5 Q0 MARCO_25_1552872131-3 100 -0.202713 hybrid +149_2-7 Q0 MARCO_08_862157188-1 1 0.500000 hybrid +149_2-7 Q0 MARCO_51_260588399-7 2 0.102962 hybrid +149_2-7 Q0 MARCO_30_424201204-2 3 0.057890 hybrid +149_2-7 Q0 MARCO_57_937969806-1 4 0.045534 hybrid +149_2-7 Q0 MARCO_12_865018792-5 5 0.045236 hybrid +149_2-7 Q0 MARCO_34_1105710245-4 6 0.038666 hybrid +149_2-7 Q0 MARCO_27_1594764816-1 7 0.029781 hybrid +149_2-7 Q0 MARCO_18_2680197841-10 8 0.024494 hybrid +149_2-7 Q0 MARCO_50_1863173636-4 9 0.018454 hybrid +149_2-7 Q0 MARCO_15_267741118-1 10 0.016024 hybrid +149_2-7 Q0 MARCO_45_1622976834-4 11 0.007829 hybrid +149_2-7 Q0 MARCO_42_1214883977-5 12 0.000366 hybrid +149_2-7 Q0 MARCO_30_591556917-2 13 -0.000005 hybrid +149_2-7 Q0 MARCO_45_1453176728-1 14 -0.009994 hybrid +149_2-7 Q0 MARCO_52_256786340-1 15 -0.011395 hybrid +149_2-7 Q0 MARCO_14_948624727-1 16 -0.012712 hybrid +149_2-7 Q0 MARCO_48_1884909095-34 17 -0.026840 hybrid +149_2-7 Q0 MARCO_33_547176492-1 18 -0.031957 hybrid +149_2-7 Q0 MARCO_46_387713679-2 19 -0.039005 hybrid +149_2-7 Q0 MARCO_41_633308289-2 20 -0.048644 hybrid +149_2-7 Q0 MARCO_57_938384155-2 21 -0.051765 hybrid +149_2-7 Q0 MARCO_31_424934706-2 22 -0.058696 hybrid +149_2-7 Q0 MARCO_53_1413538815-1 23 -0.060597 hybrid +149_2-7 Q0 MARCO_14_947909862-1 24 -0.064726 hybrid +149_2-7 Q0 MARCO_23_122543682-2 25 -0.067210 hybrid +149_2-7 Q0 MARCO_51_261332805-9 26 -0.071031 hybrid +149_2-7 Q0 MARCO_33_1616650488-3 27 -0.079715 hybrid +149_2-7 Q0 MARCO_13_655380145-2 28 -0.081965 hybrid +149_2-7 Q0 MARCO_52_442828871-2 29 -0.083090 hybrid +149_2-7 Q0 MARCO_51_261259948-2 30 -0.089852 hybrid +149_2-7 Q0 MARCO_34_1086915840-4 31 -0.090181 hybrid +149_2-7 Q0 MARCO_08_816090904-5 32 -0.094671 hybrid +149_2-7 Q0 MARCO_00_541680406-1 33 -0.095605 hybrid +149_2-7 Q0 MARCO_48_1744425002-1 34 -0.096550 hybrid +149_2-7 Q0 MARCO_52_386499294-5 35 -0.107049 hybrid +149_2-7 Q0 MARCO_58_1441708925-1 36 -0.110976 hybrid +149_2-7 Q0 MARCO_53_1413384179-1 37 -0.113779 hybrid +149_2-7 Q0 MARCO_15_267741118-2 38 -0.115233 hybrid +149_2-7 Q0 MARCO_24_1920876291-21 39 -0.120891 hybrid +149_2-7 Q0 MARCO_41_355611566-25 40 -0.121825 hybrid +149_2-7 Q0 MARCO_37_928008044-2 41 -0.124914 hybrid +149_2-7 Q0 MARCO_42_1214883977-4 42 -0.129892 hybrid +149_2-7 Q0 MARCO_23_186389307-3 43 -0.130954 hybrid +149_2-7 Q0 MARCO_45_1623090797-4 44 -0.136283 hybrid +149_2-7 Q0 MARCO_23_1561465938-2 45 -0.137769 hybrid +149_2-7 Q0 MARCO_23_87306883-1 46 -0.137822 hybrid +149_2-7 Q0 MARCO_28_11509435-22 47 -0.142832 hybrid +149_2-7 Q0 MARCO_09_1839665831-13 48 -0.149000 hybrid +149_2-7 Q0 MARCO_51_261312422-4 49 -0.156090 hybrid +149_2-7 Q0 MARCO_58_1441634175-3 50 -0.156335 hybrid +149_2-7 Q0 MARCO_23_643774778-20 51 -0.157375 hybrid +149_2-7 Q0 MARCO_52_441410899-7 52 -0.158734 hybrid +149_2-7 Q0 MARCO_18_2679892723-9 53 -0.160496 hybrid +149_2-7 Q0 KILT_12431-14 54 -0.161504 hybrid +149_2-7 Q0 MARCO_55_922535175-2 55 -0.165304 hybrid +149_2-7 Q0 KILT_14064991-6 56 -0.165814 hybrid +149_2-7 Q0 MARCO_58_1441465824-2 57 -0.166005 hybrid +149_2-7 Q0 MARCO_53_192579990-34 58 -0.167894 hybrid +149_2-7 Q0 MARCO_45_1622773229-1 59 -0.168340 hybrid +149_2-7 Q0 MARCO_16_2337184670-3 60 -0.170676 hybrid +149_2-7 Q0 MARCO_31_747571962-2 61 -0.171748 hybrid +149_2-7 Q0 MARCO_41_832711163-1 62 -0.172321 hybrid +149_2-7 Q0 MARCO_52_441928679-1 63 -0.173807 hybrid +149_2-7 Q0 MARCO_36_1072442750-2 64 -0.174911 hybrid +149_2-7 Q0 MARCO_17_1590052482-15 65 -0.175357 hybrid +149_2-7 Q0 MARCO_58_1441634175-4 66 -0.176737 hybrid +149_2-7 Q0 MARCO_03_1049905924-2 67 -0.176960 hybrid +149_2-7 Q0 MARCO_46_1395226424-1 68 -0.178074 hybrid +149_2-7 Q0 MARCO_50_1395351585-24 69 -0.178658 hybrid +149_2-7 Q0 MARCO_32_278789547-2 70 -0.180081 hybrid +149_2-7 Q0 MARCO_52_254332051-4 71 -0.180675 hybrid +149_2-7 Q0 MARCO_28_451295707-8 72 -0.180813 hybrid +149_2-7 Q0 KILT_25606638-8 73 -0.181577 hybrid +149_2-7 Q0 MARCO_50_1995471798-4 74 -0.182055 hybrid +149_2-7 Q0 MARCO_18_1211583652-4 75 -0.183711 hybrid +149_2-7 Q0 MARCO_05_519638150-3 76 -0.183934 hybrid +149_2-7 Q0 MARCO_02_1770546041-5 77 -0.185261 hybrid +149_2-7 Q0 MARCO_52_97617859-1 78 -0.186195 hybrid +149_2-7 Q0 MARCO_41_355611566-41 79 -0.187639 hybrid +149_2-7 Q0 MARCO_34_877438981-13 80 -0.188594 hybrid +149_2-7 Q0 MARCO_41_374353186-1 81 -0.188881 hybrid +149_2-7 Q0 MARCO_09_429773504-1 82 -0.188934 hybrid +149_2-7 Q0 MARCO_56_210360567-2 83 -0.191067 hybrid +149_2-7 Q0 MARCO_22_994896697-2 84 -0.191396 hybrid +149_2-7 Q0 MARCO_41_829462345-3 85 -0.191715 hybrid +149_2-7 Q0 MARCO_02_1490678448-1 86 -0.192490 hybrid +149_2-7 Q0 MARCO_31_753761448-6 87 -0.193105 hybrid +149_2-7 Q0 MARCO_13_175410844-1 88 -0.193265 hybrid +149_2-7 Q0 MARCO_37_197044926-2 89 -0.193551 hybrid +149_2-7 Q0 MARCO_43_947651551-4 90 -0.198317 hybrid +149_2-7 Q0 MARCO_50_983690115-16 91 -0.198625 hybrid +149_2-7 Q0 MARCO_18_396639853-2 92 -0.201608 hybrid +149_2-7 Q0 MARCO_28_583909164-2 93 -0.201619 hybrid +149_2-7 Q0 MARCO_50_747341245-10 94 -0.202298 hybrid +149_2-7 Q0 MARCO_40_109096483-2 95 -0.206067 hybrid +149_2-7 Q0 MARCO_52_683807464-2 96 -0.206364 hybrid +149_2-7 Q0 MARCO_11_775487494-1 97 -0.209644 hybrid +149_2-7 Q0 MARCO_31_753678742-9 98 -0.209814 hybrid +149_2-7 Q0 MARCO_57_935710637-3 99 -0.209835 hybrid +149_2-7 Q0 KILT_286747-1 100 -0.210238 hybrid +149_3-1 Q0 MARCO_31_319361176-2 1 0.500000 hybrid +149_3-1 Q0 KILT_25606638-3 2 0.302717 hybrid +149_3-1 Q0 MARCO_22_844493257-2 3 0.294516 hybrid +149_3-1 Q0 MARCO_36_1500020236-5 4 0.257811 hybrid +149_3-1 Q0 MARCO_50_2268879788-1 5 0.217711 hybrid +149_3-1 Q0 MARCO_52_258700460-5 6 0.187723 hybrid +149_3-1 Q0 MARCO_48_119371286-2 7 0.165812 hybrid +149_3-1 Q0 MARCO_13_1165329628-2 8 0.115497 hybrid +149_3-1 Q0 MARCO_50_1782720238-1 9 0.075623 hybrid +149_3-1 Q0 MARCO_02_423200817-1 10 0.074717 hybrid +149_3-1 Q0 MARCO_33_1616650488-1 11 0.070491 hybrid +149_3-1 Q0 MARCO_13_1758131954-1 12 0.064830 hybrid +149_3-1 Q0 MARCO_25_1130821317-2 13 0.056302 hybrid +149_3-1 Q0 MARCO_57_1170242445-1 14 0.050994 hybrid +149_3-1 Q0 MARCO_50_1904874157-12 15 0.047673 hybrid +149_3-1 Q0 MARCO_14_952280569-1 16 0.047497 hybrid +149_3-1 Q0 KILT_25606638-1 17 0.042214 hybrid +149_3-1 Q0 MARCO_50_1781293610-3 18 0.041962 hybrid +149_3-1 Q0 MARCO_32_278789547-1 19 0.040176 hybrid +149_3-1 Q0 MARCO_57_936034668-2 20 0.037057 hybrid +149_3-1 Q0 MARCO_30_1507114449-13 21 0.035044 hybrid +149_3-1 Q0 MARCO_12_865018792-5 22 0.033560 hybrid +149_3-1 Q0 MARCO_16_1128132242-2 23 0.032654 hybrid +149_3-1 Q0 MARCO_11_775487494-2 24 0.025384 hybrid +149_3-1 Q0 MARCO_24_1300380353-22 25 0.020453 hybrid +149_3-1 Q0 MARCO_29_276396392-1 26 0.004227 hybrid +149_3-1 Q0 MARCO_22_1052919064-3 27 0.002113 hybrid +149_3-1 Q0 MARCO_45_1623090797-2 28 -0.015144 hybrid +149_3-1 Q0 MARCO_41_2216793185-5 29 -0.018365 hybrid +149_3-1 Q0 MARCO_34_543863470-11 30 -0.020729 hybrid +149_3-1 Q0 MARCO_22_842265175-1 31 -0.026893 hybrid +149_3-1 Q0 MARCO_36_1774933131-1 32 -0.031346 hybrid +149_3-1 Q0 MARCO_08_1381626170-2 33 -0.042717 hybrid +149_3-1 Q0 MARCO_59_863512793-1 34 -0.043195 hybrid +149_3-1 Q0 MARCO_24_1148096296-15 35 -0.044880 hybrid +149_3-1 Q0 MARCO_10_1206479759-12 36 -0.045107 hybrid +149_3-1 Q0 MARCO_38_741872935-2 37 -0.047044 hybrid +149_3-1 Q0 MARCO_33_184931692-1 38 -0.054314 hybrid +149_3-1 Q0 MARCO_31_315656683-16 39 -0.055799 hybrid +149_3-1 Q0 MARCO_14_257204425-1 40 -0.058868 hybrid +149_3-1 Q0 MARCO_49_1314398418-1 41 -0.060654 hybrid +149_3-1 Q0 MARCO_24_1152092076-12 42 -0.061610 hybrid +149_3-1 Q0 MARCO_52_258700460-3 43 -0.062214 hybrid +149_3-1 Q0 MARCO_08_816090904-1 44 -0.066138 hybrid +149_3-1 Q0 MARCO_22_1192665728-1 45 -0.066742 hybrid +149_3-1 Q0 MARCO_28_397645202-6 46 -0.070893 hybrid +149_3-1 Q0 MARCO_30_1478860014-5 47 -0.070994 hybrid +149_3-1 Q0 MARCO_54_2075854916-10 48 -0.071723 hybrid +149_3-1 Q0 MARCO_30_1146842803-19 49 -0.071748 hybrid +149_3-1 Q0 MARCO_45_1621897570-1 50 -0.072176 hybrid +149_3-1 Q0 MARCO_30_1639930689-3 51 -0.073736 hybrid +149_3-1 Q0 MARCO_15_1927880800-2 52 -0.074516 hybrid +149_3-1 Q0 MARCO_28_12474719-2 53 -0.080578 hybrid +149_3-1 Q0 MARCO_25_325494024-7 54 -0.081233 hybrid +149_3-1 Q0 MARCO_14_1321835983-18 55 -0.081861 hybrid +149_3-1 Q0 MARCO_52_259435409-2 56 -0.085509 hybrid +149_3-1 Q0 MARCO_24_1923766591-2 57 -0.085610 hybrid +149_3-1 Q0 MARCO_52_952717852-7 58 -0.090339 hybrid +149_3-1 Q0 MARCO_58_1441619104-1 59 -0.091673 hybrid +149_3-1 Q0 MARCO_26_1513072209-1 60 -0.095270 hybrid +149_3-1 Q0 MARCO_41_633308289-2 61 -0.095849 hybrid +149_3-1 Q0 MARCO_22_999100161-2 62 -0.100201 hybrid +149_3-1 Q0 MARCO_13_426826304-1 63 -0.100679 hybrid +149_3-1 Q0 MARCO_54_1640884054-1 64 -0.101308 hybrid +149_3-1 Q0 MARCO_50_626383470-4 65 -0.101761 hybrid +149_3-1 Q0 MARCO_45_1621762693-15 66 -0.102113 hybrid +149_3-1 Q0 MARCO_33_1616650488-3 67 -0.102918 hybrid +149_3-1 Q0 MARCO_57_189648656-2 68 -0.105660 hybrid +149_3-1 Q0 MARCO_13_216304868-2 69 -0.108201 hybrid +149_3-1 Q0 MARCO_51_261332805-2 70 -0.110994 hybrid +149_3-1 Q0 MARCO_49_797850653-2 71 -0.112679 hybrid +149_3-1 Q0 MARCO_16_1128132242-1 72 -0.114214 hybrid +149_3-1 Q0 MARCO_11_775487494-1 73 -0.114792 hybrid +149_3-1 Q0 MARCO_40_907990614-1 74 -0.114893 hybrid +149_3-1 Q0 MARCO_50_2268879788-2 75 -0.114943 hybrid +149_3-1 Q0 MARCO_57_1166084704-1 76 -0.118516 hybrid +149_3-1 Q0 MARCO_34_1162361325-8 77 -0.119673 hybrid +149_3-1 Q0 MARCO_24_1152534971-3 78 -0.119874 hybrid +149_3-1 Q0 MARCO_32_1109478414-4 79 -0.121761 hybrid +149_3-1 Q0 MARCO_31_833710914-1 80 -0.122188 hybrid +149_3-1 Q0 MARCO_57_939933682-7 81 -0.129836 hybrid +149_3-1 Q0 MARCO_29_819372691-2 82 -0.131295 hybrid +149_3-1 Q0 MARCO_32_1219913600-2 83 -0.133358 hybrid +149_3-1 Q0 MARCO_47_1169529386-1 84 -0.133560 hybrid +149_3-1 Q0 MARCO_45_1623255368-2 85 -0.133912 hybrid +149_3-1 Q0 MARCO_53_1370314242-16 86 -0.134365 hybrid +149_3-1 Q0 MARCO_37_931185838-1 87 -0.135773 hybrid +149_3-1 Q0 MARCO_50_1782720238-4 88 -0.135874 hybrid +149_3-1 Q0 MARCO_45_1623090797-3 89 -0.135975 hybrid +149_3-1 Q0 MARCO_28_1365474135-28 90 -0.136478 hybrid +149_3-1 Q0 MARCO_22_1021378647-2 91 -0.138717 hybrid +149_3-1 Q0 MARCO_45_1623405673-2 92 -0.139195 hybrid +149_3-1 Q0 MARCO_34_1105710245-4 93 -0.140151 hybrid +149_3-1 Q0 MARCO_11_601141109-4 94 -0.141962 hybrid +149_3-1 Q0 MARCO_20_1717362366-13 95 -0.144503 hybrid +149_3-1 Q0 MARCO_57_1492530210-6 96 -0.144578 hybrid +149_3-1 Q0 MARCO_47_285449199-1 97 -0.144629 hybrid +149_3-1 Q0 MARCO_53_1325079042-1 98 -0.144906 hybrid +149_3-1 Q0 MARCO_52_1209978787-1 99 -0.147195 hybrid +149_3-1 Q0 MARCO_25_1410454799-3 100 -0.148402 hybrid +149_3-3 Q0 MARCO_53_926374721-10 1 0.500000 hybrid +149_3-3 Q0 KILT_25606638-2 2 0.454039 hybrid +149_3-3 Q0 MARCO_55_1217051053-1 3 0.364850 hybrid +149_3-3 Q0 MARCO_14_257204425-1 4 0.364569 hybrid +149_3-3 Q0 MARCO_52_343680628-1 5 0.334057 hybrid +149_3-3 Q0 MARCO_19_739382593-8 6 0.331570 hybrid +149_3-3 Q0 MARCO_50_1678017049-1 7 0.249982 hybrid +149_3-3 Q0 MARCO_11_1343590925-1 8 0.249247 hybrid +149_3-3 Q0 MARCO_08_21442928-8 9 0.245288 hybrid +149_3-3 Q0 KILT_25606638-7 10 0.230890 hybrid +149_3-3 Q0 MARCO_19_739382593-7 11 0.211098 hybrid +149_3-3 Q0 MARCO_58_877835644-1 12 0.157185 hybrid +149_3-3 Q0 MARCO_57_1245236006-1 13 0.143873 hybrid +149_3-3 Q0 MARCO_30_377762017-2 14 0.096406 hybrid +149_3-3 Q0 MARCO_46_1462462632-1 15 0.087508 hybrid +149_3-3 Q0 MARCO_53_1448548338-2 16 0.055559 hybrid +149_3-3 Q0 KILT_25606638-1 17 0.040951 hybrid +149_3-3 Q0 MARCO_41_946620623-1 18 0.036537 hybrid +149_3-3 Q0 MARCO_50_650983538-4 19 0.022840 hybrid +149_3-3 Q0 MARCO_00_1678523231-1 20 0.004834 hybrid +149_3-3 Q0 MARCO_57_1251244355-1 21 0.002172 hybrid +149_3-3 Q0 MARCO_44_1245385510-2 22 0.002102 hybrid +149_3-3 Q0 MARCO_39_354099364-1 23 -0.002592 hybrid +149_3-3 Q0 MARCO_06_295884254-12 24 -0.005815 hybrid +149_3-3 Q0 MARCO_46_1493082489-4 25 -0.008513 hybrid +149_3-3 Q0 MARCO_46_1493088484-5 26 -0.011946 hybrid +149_3-3 Q0 MARCO_33_338522234-2 27 -0.014258 hybrid +149_3-3 Q0 MARCO_33_1492861083-1 28 -0.019302 hybrid +149_3-3 Q0 MARCO_52_1032927616-4 29 -0.020108 hybrid +149_3-3 Q0 MARCO_53_1448548338-4 30 -0.025538 hybrid +149_3-3 Q0 MARCO_03_1610362254-1 31 -0.025643 hybrid +149_3-3 Q0 MARCO_46_1493073917-1 32 -0.031178 hybrid +149_3-3 Q0 MARCO_44_1245367899-2 33 -0.034471 hybrid +149_3-3 Q0 MARCO_14_257204425-5 34 -0.038534 hybrid +149_3-3 Q0 MARCO_58_1677261212-1 35 -0.039340 hybrid +149_3-3 Q0 MARCO_15_1940818050-1 36 -0.040041 hybrid +149_3-3 Q0 MARCO_12_652543527-1 37 -0.043053 hybrid +149_3-3 Q0 MARCO_57_1234151105-1 38 -0.043054 hybrid +149_3-3 Q0 MARCO_26_1668573550-11 39 -0.047292 hybrid +149_3-3 Q0 MARCO_23_1578326827-1 40 -0.050550 hybrid +149_3-3 Q0 MARCO_12_806452048-4 41 -0.050935 hybrid +149_3-3 Q0 MARCO_45_483500326-48 42 -0.053563 hybrid +149_3-3 Q0 KILT_25606638-3 43 -0.056295 hybrid +149_3-3 Q0 MARCO_16_140567681-2 44 -0.056575 hybrid +149_3-3 Q0 MARCO_36_412918166-3 45 -0.066104 hybrid +149_3-3 Q0 MARCO_36_412918166-5 46 -0.066104 hybrid +149_3-3 Q0 MARCO_37_1449403454-2 47 -0.066524 hybrid +149_3-3 Q0 MARCO_16_16180614-1 48 -0.066734 hybrid +149_3-3 Q0 MARCO_12_2020123824-2 49 -0.070027 hybrid +149_3-3 Q0 MARCO_20_1739295618-31 50 -0.070028 hybrid +149_3-3 Q0 MARCO_31_1623641182-1 51 -0.072059 hybrid +149_3-3 Q0 MARCO_10_764125113-1 52 -0.072339 hybrid +149_3-3 Q0 MARCO_31_1518249678-1 53 -0.072340 hybrid +149_3-3 Q0 MARCO_57_1250834433-1 54 -0.073601 hybrid +149_3-3 Q0 MARCO_18_718482580-3 55 -0.079801 hybrid +149_3-3 Q0 MARCO_50_1876380199-5 56 -0.083584 hybrid +149_3-3 Q0 MARCO_20_1739295618-75 57 -0.086282 hybrid +149_3-3 Q0 MARCO_25_304805054-1 58 -0.093498 hybrid +149_3-3 Q0 MARCO_43_722747104-9 59 -0.094865 hybrid +149_3-3 Q0 MARCO_57_1229761860-1 60 -0.100820 hybrid +149_3-3 Q0 MARCO_06_1290292865-493 61 -0.102046 hybrid +149_3-3 Q0 MARCO_18_718545576-1 62 -0.105304 hybrid +149_3-3 Q0 MARCO_18_718599093-1 63 -0.106215 hybrid +149_3-3 Q0 MARCO_53_142711000-1 64 -0.106215 hybrid +149_3-3 Q0 MARCO_45_769158906-2 65 -0.106635 hybrid +149_3-3 Q0 MARCO_20_306951518-1 66 -0.107441 hybrid +149_3-3 Q0 MARCO_08_21442928-2 67 -0.111189 hybrid +149_3-3 Q0 MARCO_39_698885136-3 68 -0.117179 hybrid +149_3-3 Q0 MARCO_53_754861908-3 69 -0.127303 hybrid +149_3-3 Q0 MARCO_27_1224282422-19 70 -0.129265 hybrid +149_3-3 Q0 MARCO_12_135685310-31 71 -0.131367 hybrid +149_3-3 Q0 MARCO_26_1688415491-1 72 -0.132208 hybrid +149_3-3 Q0 MARCO_57_1268971174-1 73 -0.132208 hybrid +149_3-3 Q0 MARCO_46_21771389-7 74 -0.133854 hybrid +149_3-3 Q0 MARCO_12_773399910-17 75 -0.135185 hybrid +149_3-3 Q0 MARCO_50_2032642805-1 76 -0.135186 hybrid +149_3-3 Q0 MARCO_31_755392048-4 77 -0.135536 hybrid +149_3-3 Q0 MARCO_50_1023700155-2 78 -0.137217 hybrid +149_3-3 Q0 MARCO_45_764708471-2 79 -0.138443 hybrid +149_3-3 Q0 MARCO_55_49662976-3 80 -0.149828 hybrid +149_3-3 Q0 MARCO_20_1008465589-10 81 -0.151790 hybrid +149_3-3 Q0 MARCO_20_1008478677-10 82 -0.151790 hybrid +149_3-3 Q0 MARCO_20_1008491789-10 83 -0.151791 hybrid +149_3-3 Q0 MARCO_54_1540034142-8 84 -0.151791 hybrid +149_3-3 Q0 MARCO_05_1495414328-5 85 -0.151930 hybrid +149_3-3 Q0 MARCO_23_763672308-1 86 -0.152771 hybrid +149_3-3 Q0 MARCO_49_1304038086-1 87 -0.154452 hybrid +149_3-3 Q0 MARCO_11_1396687442-1 88 -0.157080 hybrid +149_3-3 Q0 MARCO_43_829804997-4 89 -0.157465 hybrid +149_3-3 Q0 MARCO_13_1644364585-17 90 -0.159847 hybrid +149_3-3 Q0 MARCO_06_1290292865-572 91 -0.160688 hybrid +149_3-3 Q0 MARCO_53_142723642-1 92 -0.160688 hybrid +149_3-3 Q0 MARCO_01_946302476-1 93 -0.161949 hybrid +149_3-3 Q0 MARCO_33_1220523407-1 94 -0.165207 hybrid +149_3-3 Q0 MARCO_50_1259935836-26 95 -0.165207 hybrid +149_3-3 Q0 MARCO_50_1993783094-31 96 -0.165208 hybrid +149_3-3 Q0 MARCO_41_954155016-1 97 -0.166433 hybrid +149_3-3 Q0 MARCO_15_1733197737-1 98 -0.166889 hybrid +149_3-3 Q0 MARCO_12_844843963-1 99 -0.167134 hybrid +149_3-3 Q0 MARCO_23_762674214-1 100 -0.170777 hybrid +149_3-5 Q0 MARCO_22_1026309507-2 1 0.500000 hybrid +149_3-5 Q0 MARCO_53_407359303-14 2 0.417286 hybrid +149_3-5 Q0 MARCO_52_916482449-10 3 0.350825 hybrid +149_3-5 Q0 MARCO_28_1615819406-7 4 0.312200 hybrid +149_3-5 Q0 MARCO_24_1571220944-7 5 0.311021 hybrid +149_3-5 Q0 MARCO_11_1527834791-1 6 0.263873 hybrid +149_3-5 Q0 MARCO_34_385317234-19 7 0.195485 hybrid +149_3-5 Q0 MARCO_20_712557990-1 8 0.185443 hybrid +149_3-5 Q0 MARCO_44_1974342956-17 9 0.181204 hybrid +149_3-5 Q0 MARCO_03_247875288-3 10 0.173883 hybrid +149_3-5 Q0 MARCO_06_1925269929-1 11 0.173293 hybrid +149_3-5 Q0 MARCO_50_1317455774-16 12 0.156406 hybrid +149_3-5 Q0 MARCO_53_845215970-5 13 0.151011 hybrid +149_3-5 Q0 MARCO_29_825761413-1 14 0.142239 hybrid +149_3-5 Q0 MARCO_50_1552139554-83 15 0.133149 hybrid +149_3-5 Q0 MARCO_15_560133885-1 16 0.107603 hybrid +149_3-5 Q0 MARCO_55_227218267-8 17 0.098082 hybrid +149_3-5 Q0 MARCO_50_510883349-22 18 0.077296 hybrid +149_3-5 Q0 MARCO_50_1931425493-13 19 0.072173 hybrid +149_3-5 Q0 MARCO_34_509035062-7 20 0.070201 hybrid +149_3-5 Q0 MARCO_41_1344124843-37 21 0.067572 hybrid +149_3-5 Q0 MARCO_11_1137167620-1 22 0.058845 hybrid +149_3-5 Q0 MARCO_51_1304491847-12 23 0.049869 hybrid +149_3-5 Q0 MARCO_41_1158608252-19 24 0.038739 hybrid +149_3-5 Q0 MARCO_00_498547202-2 25 0.032392 hybrid +149_3-5 Q0 MARCO_09_892655563-1 26 0.031644 hybrid +149_3-5 Q0 MARCO_58_1601174092-5 27 0.027836 hybrid +149_3-5 Q0 MARCO_01_1425048900-1 28 0.027224 hybrid +149_3-5 Q0 MARCO_04_1299765233-33 29 0.026158 hybrid +149_3-5 Q0 MARCO_04_1299765233-40 30 0.026158 hybrid +149_3-5 Q0 MARCO_08_1188135981-1 31 0.023121 hybrid +149_3-5 Q0 MARCO_11_1038002471-1 32 0.022169 hybrid +149_3-5 Q0 MARCO_50_2506569724-5 33 0.014621 hybrid +149_3-5 Q0 MARCO_41_2212297065-6 34 0.008500 hybrid +149_3-5 Q0 MARCO_57_1470440585-9 35 0.007208 hybrid +149_3-5 Q0 MARCO_50_1560339513-10 36 0.006370 hybrid +149_3-5 Q0 MARCO_50_1379052086-35 37 0.002516 hybrid +149_3-5 Q0 MARCO_50_1644710520-4 38 0.002221 hybrid +149_3-5 Q0 MARCO_50_2077076382-25 39 -0.001360 hybrid +149_3-5 Q0 MARCO_50_1315164681-14 40 -0.003604 hybrid +149_3-5 Q0 MARCO_02_763266747-1 41 -0.005599 hybrid +149_3-5 Q0 MARCO_41_1369007039-8 42 -0.006528 hybrid +149_3-5 Q0 MARCO_28_1535375610-5 43 -0.008999 hybrid +149_3-5 Q0 MARCO_25_282534727-1 44 -0.015414 hybrid +149_3-5 Q0 MARCO_44_1973913217-3 45 -0.022985 hybrid +149_3-5 Q0 MARCO_40_1351004375-1 46 -0.027224 hybrid +149_3-5 Q0 MARCO_48_2082703206-11 47 -0.027586 hybrid +149_3-5 Q0 MARCO_53_769555536-1 48 -0.029876 hybrid +149_3-5 Q0 MARCO_50_2077076382-34 49 -0.030964 hybrid +149_3-5 Q0 MARCO_50_2283814490-26 50 -0.036699 hybrid +149_3-5 Q0 MARCO_04_613350801-6 51 -0.037492 hybrid +149_3-5 Q0 MARCO_51_117563185-6 52 -0.040167 hybrid +149_3-5 Q0 MARCO_08_223388877-4 53 -0.040439 hybrid +149_3-5 Q0 MARCO_50_885479717-28 54 -0.044496 hybrid +149_3-5 Q0 MARCO_45_1646411330-2 55 -0.045403 hybrid +149_3-5 Q0 MARCO_35_1167187260-4 56 -0.048780 hybrid +149_3-5 Q0 MARCO_29_826101442-12 57 -0.050412 hybrid +149_3-5 Q0 MARCO_41_524535027-2 58 -0.052317 hybrid +149_3-5 Q0 MARCO_53_1320660228-1 59 -0.055309 hybrid +149_3-5 Q0 MARCO_00_4138283-10 60 -0.057371 hybrid +149_3-5 Q0 MARCO_35_1167192347-7 61 -0.059185 hybrid +149_3-5 Q0 MARCO_54_179484637-2 62 -0.059797 hybrid +149_3-5 Q0 MARCO_22_1683425360-2 63 -0.066484 hybrid +149_3-5 Q0 MARCO_51_483924409-5 64 -0.075823 hybrid +149_3-5 Q0 MARCO_50_1277879967-28 65 -0.076231 hybrid +149_3-5 Q0 MARCO_50_1399796977-9 66 -0.079608 hybrid +149_3-5 Q0 MARCO_41_1834147334-1 67 -0.081218 hybrid +149_3-5 Q0 MARCO_41_1045491395-29 68 -0.083802 hybrid +149_3-5 Q0 MARCO_13_351431779-3 69 -0.084867 hybrid +149_3-5 Q0 MARCO_13_362953068-9 70 -0.089401 hybrid +149_3-5 Q0 MARCO_41_1293044214-49 71 -0.090217 hybrid +149_3-5 Q0 MARCO_54_468722629-6 72 -0.092347 hybrid +149_3-5 Q0 MARCO_42_1314525983-6 73 -0.095589 hybrid +149_3-5 Q0 MARCO_40_1460009513-38 74 -0.100440 hybrid +149_3-5 Q0 MARCO_50_1789079732-8 75 -0.100848 hybrid +149_3-5 Q0 MARCO_55_1016848694-11 76 -0.100916 hybrid +149_3-5 Q0 MARCO_55_237078208-7 77 -0.101618 hybrid +149_3-5 Q0 MARCO_23_337485167-3 78 -0.102298 hybrid +149_3-5 Q0 MARCO_37_1643605608-6 79 -0.103319 hybrid +149_3-5 Q0 MARCO_14_480109671-3 80 -0.104225 hybrid +149_3-5 Q0 MARCO_14_488348294-2 81 -0.111479 hybrid +149_3-5 Q0 MARCO_50_2018252936-5 82 -0.112839 hybrid +149_3-5 Q0 MARCO_07_1275912160-31 83 -0.115944 hybrid +149_3-5 Q0 MARCO_22_1308147251-4 84 -0.116692 hybrid +149_3-5 Q0 MARCO_49_276793997-16 85 -0.117327 hybrid +149_3-5 Q0 MARCO_13_1549589922-1 86 -0.117712 hybrid +149_3-5 Q0 MARCO_29_1239289308-1 87 -0.118506 hybrid +149_3-5 Q0 MARCO_39_864041024-2 88 -0.120818 hybrid +149_3-5 Q0 MARCO_34_484381870-1 89 -0.121135 hybrid +149_3-5 Q0 MARCO_35_1167339499-7 90 -0.121316 hybrid +149_3-5 Q0 MARCO_40_1227098757-1 91 -0.122495 hybrid +149_3-5 Q0 MARCO_32_1194341818-5 92 -0.126575 hybrid +149_3-5 Q0 MARCO_13_180574972-12 93 -0.126711 hybrid +149_3-5 Q0 MARCO_12_1422618863-1 94 -0.128751 hybrid +149_3-5 Q0 MARCO_02_462464732-27 95 -0.129318 hybrid +149_3-5 Q0 MARCO_25_1648654089-78 96 -0.129998 hybrid +149_3-5 Q0 MARCO_41_2196400773-7 97 -0.130134 hybrid +149_3-5 Q0 MARCO_50_1552139554-15 98 -0.130451 hybrid +149_3-5 Q0 MARCO_53_1331879317-1 99 -0.133194 hybrid +149_3-5 Q0 MARCO_50_2018481130-35 100 -0.134328 hybrid +149_3-7 Q0 MARCO_50_796224832-21 1 0.500000 hybrid +149_3-7 Q0 MARCO_23_183358734-8 2 0.394987 hybrid +149_3-7 Q0 MARCO_28_857644874-7 3 0.377827 hybrid +149_3-7 Q0 MARCO_14_257204425-6 4 0.335616 hybrid +149_3-7 Q0 MARCO_14_257204425-5 5 0.188988 hybrid +149_3-7 Q0 MARCO_50_1789079732-8 6 0.141473 hybrid +149_3-7 Q0 MARCO_22_1400646671-10 7 0.117627 hybrid +149_3-7 Q0 MARCO_27_848519093-4 8 0.109485 hybrid +149_3-7 Q0 MARCO_36_1082288384-14 9 0.099189 hybrid +149_3-7 Q0 MARCO_27_848519093-11 10 0.089591 hybrid +149_3-7 Q0 MARCO_15_1519913159-5 11 0.086114 hybrid +149_3-7 Q0 MARCO_20_451501418-8 12 0.073574 hybrid +149_3-7 Q0 MARCO_52_258715295-8 13 0.069058 hybrid +149_3-7 Q0 MARCO_04_851003612-1 14 0.047440 hybrid +149_3-7 Q0 MARCO_14_257274681-13 15 0.043785 hybrid +149_3-7 Q0 MARCO_51_340597512-2 16 0.030874 hybrid +149_3-7 Q0 MARCO_13_92855621-2 17 0.026357 hybrid +149_3-7 Q0 MARCO_03_929823532-4 18 0.025288 hybrid +149_3-7 Q0 MARCO_47_230803156-1 19 0.018483 hybrid +149_3-7 Q0 MARCO_24_407549356-4 20 0.014130 hybrid +149_3-7 Q0 MARCO_36_1360561883-3 21 0.011619 hybrid +149_3-7 Q0 MARCO_40_1240645500-7 22 0.009242 hybrid +149_3-7 Q0 MARCO_52_1056638332-4 23 0.004368 hybrid +149_3-7 Q0 MARCO_06_982384916-3 24 0.003254 hybrid +149_3-7 Q0 MARCO_50_796224832-18 25 -0.000520 hybrid +149_3-7 Q0 MARCO_11_454480284-1 26 -0.006879 hybrid +149_3-7 Q0 MARCO_23_912687125-5 27 -0.007013 hybrid +149_3-7 Q0 MARCO_23_955504535-2 28 -0.007681 hybrid +149_3-7 Q0 MARCO_50_1015330767-2 29 -0.013119 hybrid +149_3-7 Q0 MARCO_23_141388715-3 30 -0.018527 hybrid +149_3-7 Q0 MARCO_31_751769512-8 31 -0.029150 hybrid +149_3-7 Q0 MARCO_23_183358734-13 32 -0.029388 hybrid +149_3-7 Q0 MARCO_51_44402076-1 33 -0.038303 hybrid +149_3-7 Q0 MARCO_12_2022229325-3 34 -0.039447 hybrid +149_3-7 Q0 MARCO_52_254811103-7 35 -0.048718 hybrid +149_3-7 Q0 MARCO_50_796224832-32 36 -0.051541 hybrid +149_3-7 Q0 MARCO_27_626845395-7 37 -0.053353 hybrid +149_3-7 Q0 MARCO_37_1640242516-5 38 -0.058509 hybrid +149_3-7 Q0 MARCO_34_543863470-33 39 -0.059593 hybrid +149_3-7 Q0 MARCO_55_554582707-7 40 -0.062788 hybrid +149_3-7 Q0 MARCO_50_2268879788-13 41 -0.064348 hybrid +149_3-7 Q0 MARCO_22_1400646671-3 42 -0.071331 hybrid +149_3-7 Q0 MARCO_23_183358734-16 43 -0.078106 hybrid +149_3-7 Q0 MARCO_31_1743142440-9 44 -0.079503 hybrid +149_3-7 Q0 MARCO_31_315758213-8 45 -0.090943 hybrid +149_3-7 Q0 MARCO_31_319414396-5 46 -0.095147 hybrid +149_3-7 Q0 MARCO_36_1356561455-6 47 -0.096752 hybrid +149_3-7 Q0 MARCO_24_501184339-9 48 -0.097436 hybrid +149_3-7 Q0 MARCO_54_337359495-4 49 -0.099352 hybrid +149_3-7 Q0 MARCO_30_1596058341-2 50 -0.100407 hybrid +149_3-7 Q0 MARCO_50_1293674950-47 51 -0.107182 hybrid +149_3-7 Q0 MARCO_50_2506569724-87 52 -0.111015 hybrid +149_3-7 Q0 MARCO_22_1564453916-2 53 -0.117523 hybrid +149_3-7 Q0 MARCO_48_1535919141-21 54 -0.118474 hybrid +149_3-7 Q0 MARCO_32_699254699-5 55 -0.119009 hybrid +149_3-7 Q0 MARCO_50_2268879788-12 56 -0.123748 hybrid +149_3-7 Q0 MARCO_31_283791517-6 57 -0.125992 hybrid +149_3-7 Q0 MARCO_58_1178714539-5 58 -0.127165 hybrid +149_3-7 Q0 MARCO_10_988610214-7 59 -0.127195 hybrid +149_3-7 Q0 MARCO_52_253961287-5 60 -0.133539 hybrid +149_3-7 Q0 MARCO_37_603603508-3 61 -0.134460 hybrid +149_3-7 Q0 MARCO_44_636935772-5 62 -0.135129 hybrid +149_3-7 Q0 MARCO_34_543863470-13 63 -0.139037 hybrid +149_3-7 Q0 MARCO_29_959627429-2 64 -0.139274 hybrid +149_3-7 Q0 MARCO_21_190921791-2 65 -0.139393 hybrid +149_3-7 Q0 MARCO_04_401800808-1 66 -0.142885 hybrid +149_3-7 Q0 MARCO_14_257312850-4 67 -0.149110 hybrid +149_3-7 Q0 MARCO_50_796224832-19 68 -0.153359 hybrid +149_3-7 Q0 MARCO_20_1578045839-1 69 -0.156152 hybrid +149_3-7 Q0 MARCO_13_836854668-12 70 -0.157297 hybrid +149_3-7 Q0 MARCO_31_315656683-6 71 -0.158307 hybrid +149_3-7 Q0 MARCO_53_407359303-14 72 -0.162006 hybrid +149_3-7 Q0 KILT_47615485-1 73 -0.163046 hybrid +149_3-7 Q0 MARCO_23_183358734-11 74 -0.165973 hybrid +149_3-7 Q0 MARCO_36_1415468243-7 75 -0.167637 hybrid +149_3-7 Q0 MARCO_03_243356662-4 76 -0.168232 hybrid +149_3-7 Q0 MARCO_31_315656683-16 77 -0.168395 hybrid +149_3-7 Q0 MARCO_50_2101083509-24 78 -0.168648 hybrid +149_3-7 Q0 MARCO_13_181670612-5 79 -0.172065 hybrid +149_3-7 Q0 MARCO_09_1227938855-3 80 -0.172154 hybrid +149_3-7 Q0 MARCO_22_1837641199-2 81 -0.174204 hybrid +149_3-7 Q0 MARCO_23_1396791583-2 82 -0.175096 hybrid +149_3-7 Q0 MARCO_46_95461683-6 83 -0.176047 hybrid +149_3-7 Q0 MARCO_50_939074992-1 84 -0.178543 hybrid +149_3-7 Q0 KILT_19359874-4 85 -0.184575 hybrid +149_3-7 Q0 MARCO_53_837429271-7 86 -0.185303 hybrid +149_3-7 Q0 MARCO_33_852894347-11 87 -0.187769 hybrid +149_3-7 Q0 MARCO_13_253182094-1 88 -0.187814 hybrid +149_3-7 Q0 MARCO_13_1182089927-50 89 -0.188705 hybrid +149_3-7 Q0 MARCO_33_524528955-32 90 -0.190652 hybrid +149_3-7 Q0 MARCO_24_147534689-6 91 -0.192910 hybrid +149_3-7 Q0 MARCO_15_1981407870-4 92 -0.194470 hybrid +149_3-7 Q0 MARCO_26_1348522969-5 93 -0.196996 hybrid +149_3-7 Q0 MARCO_28_1130725438-3 94 -0.198095 hybrid +149_3-7 Q0 MARCO_15_245751439-3 95 -0.200710 hybrid +149_3-7 Q0 MARCO_15_245938807-3 96 -0.200710 hybrid +149_3-7 Q0 MARCO_15_246555532-3 97 -0.200710 hybrid +149_3-7 Q0 MARCO_15_246770580-3 98 -0.200711 hybrid +149_3-7 Q0 MARCO_15_246997139-3 99 -0.200711 hybrid +149_3-7 Q0 MARCO_15_247004807-3 100 -0.200711 hybrid +149_3-9 Q0 MARCO_49_545533397-1 1 0.500000 hybrid +149_3-9 Q0 MARCO_53_1339025320-2 2 0.459992 hybrid +149_3-9 Q0 MARCO_30_377762017-1 3 0.437188 hybrid +149_3-9 Q0 MARCO_15_1940818050-1 4 0.429022 hybrid +149_3-9 Q0 MARCO_30_377762017-2 5 0.415316 hybrid +149_3-9 Q0 MARCO_53_1339025320-1 6 0.396477 hybrid +149_3-9 Q0 MARCO_49_545533397-6 7 0.391363 hybrid +149_3-9 Q0 MARCO_43_236748055-5 8 0.374744 hybrid +149_3-9 Q0 MARCO_49_545533397-9 9 0.369392 hybrid +149_3-9 Q0 MARCO_17_501082452-9 10 0.360374 hybrid +149_3-9 Q0 MARCO_43_236748055-1 11 0.336975 hybrid +149_3-9 Q0 MARCO_50_1290238291-3 12 0.334072 hybrid +149_3-9 Q0 MARCO_49_545533397-8 13 0.331327 hybrid +149_3-9 Q0 MARCO_00_1678523231-1 14 0.300337 hybrid +149_3-9 Q0 MARCO_17_501082452-10 15 0.299970 hybrid +149_3-9 Q0 MARCO_41_543467334-1 16 0.298613 hybrid +149_3-9 Q0 MARCO_30_377762017-3 17 0.270041 hybrid +149_3-9 Q0 MARCO_17_501082452-13 18 0.269952 hybrid +149_3-9 Q0 MARCO_30_377762017-4 19 0.263917 hybrid +149_3-9 Q0 MARCO_53_1339025320-4 20 0.256424 hybrid +149_3-9 Q0 MARCO_49_545533397-13 21 0.251796 hybrid +149_3-9 Q0 MARCO_51_261213207-5 22 0.247981 hybrid +149_3-9 Q0 MARCO_13_943611038-2 23 0.247109 hybrid +149_3-9 Q0 MARCO_49_545533397-4 24 0.247109 hybrid +149_3-9 Q0 MARCO_46_91899625-1 25 0.246108 hybrid +149_3-9 Q0 MARCO_30_377762017-5 26 0.239240 hybrid +149_3-9 Q0 MARCO_27_637496644-18 27 0.231936 hybrid +149_3-9 Q0 MARCO_49_545533397-2 28 0.226575 hybrid +149_3-9 Q0 MARCO_53_1339025320-3 29 0.221015 hybrid +149_3-9 Q0 MARCO_13_956563554-5 30 0.218062 hybrid +149_3-9 Q0 MARCO_50_1290238291-9 31 0.213513 hybrid +149_3-9 Q0 MARCO_50_1290238291-2 32 0.208558 hybrid +149_3-9 Q0 MARCO_15_1940820807-1 33 0.201085 hybrid +149_3-9 Q0 MARCO_13_956563554-3 34 0.197983 hybrid +149_3-9 Q0 MARCO_11_1009473786-4 35 0.196041 hybrid +149_3-9 Q0 MARCO_27_1467987309-2 36 0.194525 hybrid +149_3-9 Q0 MARCO_13_956563554-4 37 0.189411 hybrid +149_3-9 Q0 MARCO_17_501082452-2 38 0.187409 hybrid +149_3-9 Q0 MARCO_42_72768012-4 39 0.186418 hybrid +149_3-9 Q0 MARCO_52_1318587130-1 40 0.185367 hybrid +149_3-9 Q0 MARCO_49_545533397-3 41 0.184703 hybrid +149_3-9 Q0 MARCO_13_82022852-1 42 0.180660 hybrid +149_3-9 Q0 MARCO_15_1940812375-1 43 0.178054 hybrid +149_3-9 Q0 MARCO_15_1940812375-3 44 0.178054 hybrid +149_3-9 Q0 MARCO_15_1940822006-1 45 0.176230 hybrid +149_3-9 Q0 MARCO_50_1290238291-11 46 0.175497 hybrid +149_3-9 Q0 MARCO_33_363644625-2 47 0.173941 hybrid +149_3-9 Q0 KILT_45138227-2 48 0.172088 hybrid +149_3-9 Q0 MARCO_13_82014588-1 49 0.170849 hybrid +149_3-9 Q0 MARCO_41_2216793185-5 50 0.169570 hybrid +149_3-9 Q0 MARCO_11_775099364-6 51 0.167469 hybrid +149_3-9 Q0 MARCO_13_82012516-1 52 0.162930 hybrid +149_3-9 Q0 MARCO_11_612498428-2 53 0.158927 hybrid +149_3-9 Q0 MARCO_15_1940819552-1 54 0.156737 hybrid +149_3-9 Q0 MARCO_22_1125019120-1 55 0.156727 hybrid +149_3-9 Q0 MARCO_49_545533397-7 56 0.154239 hybrid +149_3-9 Q0 MARCO_00_395785390-3 57 0.152426 hybrid +149_3-9 Q0 MARCO_35_1318095742-3 58 0.144864 hybrid +149_3-9 Q0 MARCO_13_82022852-6 59 0.144785 hybrid +149_3-9 Q0 MARCO_13_216304868-1 60 0.144468 hybrid +149_3-9 Q0 MARCO_20_236904717-4 61 0.143149 hybrid +149_3-9 Q0 MARCO_43_236748055-3 62 0.139572 hybrid +149_3-9 Q0 MARCO_29_1363681826-1 63 0.138749 hybrid +149_3-9 Q0 MARCO_43_236748055-7 64 0.138264 hybrid +149_3-9 Q0 MARCO_29_987730034-8 65 0.135905 hybrid +149_3-9 Q0 MARCO_43_236748055-8 66 0.134815 hybrid +149_3-9 Q0 MARCO_56_987506629-2 67 0.132387 hybrid +149_3-9 Q0 MARCO_47_680902989-6 68 0.130752 hybrid +149_3-9 Q0 MARCO_23_1606638999-21 69 0.127432 hybrid +149_3-9 Q0 MARCO_13_1206028526-1 70 0.126510 hybrid +149_3-9 Q0 MARCO_17_501082452-11 71 0.126510 hybrid +149_3-9 Q0 MARCO_52_1318587130-4 72 0.126510 hybrid +149_3-9 Q0 MARCO_51_560118025-5 73 0.125400 hybrid +149_3-9 Q0 MARCO_13_82014588-3 74 0.122268 hybrid +149_3-9 Q0 MARCO_48_1536612134-12 75 0.118958 hybrid +149_3-9 Q0 MARCO_35_348971114-4 76 0.117878 hybrid +149_3-9 Q0 MARCO_00_1678523231-3 77 0.117363 hybrid +149_3-9 Q0 MARCO_50_716263520-5 78 0.117105 hybrid +149_3-9 Q0 MARCO_27_1724553370-15 79 0.112943 hybrid +149_3-9 Q0 MARCO_43_236748055-4 80 0.106967 hybrid +149_3-9 Q0 MARCO_52_1318587130-3 81 0.104133 hybrid +149_3-9 Q0 MARCO_49_545533397-12 82 0.103667 hybrid +149_3-9 Q0 MARCO_13_82022852-3 83 0.101923 hybrid +149_3-9 Q0 MARCO_15_1940815006-1 84 0.101863 hybrid +149_3-9 Q0 MARCO_41_628939702-1 85 0.096591 hybrid +149_3-9 Q0 MARCO_49_545533397-10 86 0.096333 hybrid +149_3-9 Q0 MARCO_51_560118025-10 87 0.094490 hybrid +149_3-9 Q0 MARCO_20_236904717-2 88 0.090050 hybrid +149_3-9 Q0 MARCO_00_395785390-1 89 0.080824 hybrid +149_3-9 Q0 MARCO_14_292480659-2 90 0.078871 hybrid +149_3-9 Q0 MARCO_14_292480659-6 91 0.078871 hybrid +149_3-9 Q0 MARCO_43_236748055-2 92 0.078871 hybrid +149_3-9 Q0 MARCO_23_1606638999-20 93 0.078257 hybrid +149_3-9 Q0 MARCO_50_1290238291-1 94 0.076374 hybrid +149_3-9 Q0 MARCO_06_957299508-8 95 0.075442 hybrid +149_3-9 Q0 MARCO_13_956563554-1 96 0.075066 hybrid +149_3-9 Q0 MARCO_14_292480659-27 97 0.075066 hybrid +149_3-9 Q0 MARCO_14_292480659-18 98 0.074481 hybrid +149_3-9 Q0 MARCO_20_524558982-4 99 0.074342 hybrid +149_3-9 Q0 MARCO_14_292480659-5 100 0.074243 hybrid +149_4-1 Q0 MARCO_50_796224832-21 1 0.500000 hybrid +149_4-1 Q0 MARCO_50_2268879788-13 2 0.474511 hybrid +149_4-1 Q0 MARCO_48_137094139-5 3 0.470463 hybrid +149_4-1 Q0 MARCO_50_1876380199-12 4 0.441836 hybrid +149_4-1 Q0 MARCO_11_775612189-5 5 0.434855 hybrid +149_4-1 Q0 MARCO_50_1789079732-12 6 0.339719 hybrid +149_4-1 Q0 MARCO_50_1379052086-36 7 0.311228 hybrid +149_4-1 Q0 MARCO_50_796224832-20 8 0.306862 hybrid +149_4-1 Q0 MARCO_50_2268879788-14 9 0.227984 hybrid +149_4-1 Q0 MARCO_50_1781293610-9 10 0.226165 hybrid +149_4-1 Q0 MARCO_34_1228812694-2 11 0.195218 hybrid +149_4-1 Q0 MARCO_57_1645525248-14 12 0.186487 hybrid +149_4-1 Q0 MARCO_50_887569727-21 13 0.184122 hybrid +149_4-1 Q0 MARCO_50_1399796977-10 14 0.165522 hybrid +149_4-1 Q0 MARCO_37_685404558-6 15 0.153084 hybrid +149_4-1 Q0 MARCO_50_887569727-14 16 0.152630 hybrid +149_4-1 Q0 MARCO_24_396572641-10 17 0.138600 hybrid +149_4-1 Q0 MARCO_46_70787827-5 18 0.134576 hybrid +149_4-1 Q0 MARCO_24_440574470-3 19 0.130324 hybrid +149_4-1 Q0 MARCO_50_1781293610-8 20 0.105539 hybrid +149_4-1 Q0 MARCO_50_1779963048-5 21 0.093874 hybrid +149_4-1 Q0 MARCO_50_887569727-20 22 0.083460 hybrid +149_4-1 Q0 MARCO_50_2268879788-20 23 0.080686 hybrid +149_4-1 Q0 MARCO_50_2268879788-21 24 0.079504 hybrid +149_4-1 Q0 MARCO_56_1784272036-7 25 0.070977 hybrid +149_4-1 Q0 MARCO_23_940126685-10 26 0.049967 hybrid +149_4-1 Q0 MARCO_50_2504117447-18 27 0.045010 hybrid +149_4-1 Q0 MARCO_40_1213016460-2 28 0.044601 hybrid +149_4-1 Q0 MARCO_50_1979463506-11 29 0.042782 hybrid +149_4-1 Q0 MARCO_02_161741159-2 30 0.039462 hybrid +149_4-1 Q0 MARCO_27_134525988-1 31 0.031868 hybrid +149_4-1 Q0 MARCO_16_2695084455-1 32 0.030776 hybrid +149_4-1 Q0 MARCO_24_413414706-17 33 0.029253 hybrid +149_4-1 Q0 MARCO_23_1538329176-11 34 0.021453 hybrid +149_4-1 Q0 MARCO_17_2621145569-1 35 0.020794 hybrid +149_4-1 Q0 KILT_60912658-6 36 0.015405 hybrid +149_4-1 Q0 MARCO_14_257204425-4 37 0.012108 hybrid +149_4-1 Q0 MARCO_56_1399379364-9 38 0.011449 hybrid +149_4-1 Q0 MARCO_53_1448548338-2 39 0.006105 hybrid +149_4-1 Q0 MARCO_41_1328904068-34 40 0.005059 hybrid +149_4-1 Q0 MARCO_12_967385619-4 41 0.004559 hybrid +149_4-1 Q0 MARCO_13_362953068-9 42 0.003263 hybrid +149_4-1 Q0 MARCO_50_1876380199-21 43 -0.002535 hybrid +149_4-1 Q0 MARCO_31_935752851-3 44 -0.005332 hybrid +149_4-1 Q0 MARCO_32_1730524036-4 45 -0.007219 hybrid +149_4-1 Q0 MARCO_51_371614478-7 46 -0.011267 hybrid +149_4-1 Q0 MARCO_43_271210636-3 47 -0.011358 hybrid +149_4-1 Q0 MARCO_03_289266512-18 48 -0.012813 hybrid +149_4-1 Q0 MARCO_16_27865611-2 49 -0.017429 hybrid +149_4-1 Q0 MARCO_11_91688302-1 50 -0.023477 hybrid +149_4-1 Q0 MARCO_12_1398248480-14 51 -0.024159 hybrid +149_4-1 Q0 MARCO_30_14259057-7 52 -0.030503 hybrid +149_4-1 Q0 MARCO_18_2680083328-16 53 -0.031003 hybrid +149_4-1 Q0 MARCO_10_988610214-8 54 -0.031845 hybrid +149_4-1 Q0 MARCO_50_1781293610-1 55 -0.031890 hybrid +149_4-1 Q0 KILT_4059023-13 56 -0.035710 hybrid +149_4-1 Q0 KILT_5376868-7 57 -0.035801 hybrid +149_4-1 Q0 MARCO_13_141012286-33 58 -0.041327 hybrid +149_4-1 Q0 MARCO_57_613983176-11 59 -0.041531 hybrid +149_4-1 Q0 MARCO_00_504114580-20 60 -0.044169 hybrid +149_4-1 Q0 MARCO_17_4097213332-1 61 -0.046693 hybrid +149_4-1 Q0 KILT_23469564-16 62 -0.048785 hybrid +149_4-1 Q0 MARCO_27_1313319523-12 63 -0.054424 hybrid +149_4-1 Q0 MARCO_30_1909833118-26 64 -0.059608 hybrid +149_4-1 Q0 MARCO_34_1162426808-1 65 -0.077753 hybrid +149_4-1 Q0 MARCO_53_1373867727-4 66 -0.078276 hybrid +149_4-1 Q0 MARCO_50_988690107-12 67 -0.079117 hybrid +149_4-1 Q0 MARCO_31_1027021731-39 68 -0.080663 hybrid +149_4-1 Q0 MARCO_50_2418617466-13 69 -0.082801 hybrid +149_4-1 Q0 MARCO_21_1027957157-7 70 -0.083961 hybrid +149_4-1 Q0 MARCO_13_1167167495-9 71 -0.086985 hybrid +149_4-1 Q0 MARCO_50_708316564-9 72 -0.087781 hybrid +149_4-1 Q0 MARCO_41_884716676-10 73 -0.091987 hybrid +149_4-1 Q0 MARCO_21_381040827-1 74 -0.095853 hybrid +149_4-1 Q0 MARCO_39_758110571-4 75 -0.096285 hybrid +149_4-1 Q0 MARCO_12_1259610080-11 76 -0.100423 hybrid +149_4-1 Q0 MARCO_56_488292098-2 77 -0.100832 hybrid +149_4-1 Q0 MARCO_02_1250148931-5 78 -0.101423 hybrid +149_4-1 Q0 MARCO_53_1365652193-2 79 -0.102015 hybrid +149_4-1 Q0 MARCO_26_1740757656-7 80 -0.105152 hybrid +149_4-1 Q0 MARCO_41_1834051265-1 81 -0.106176 hybrid +149_4-1 Q0 MARCO_17_2621145569-16 82 -0.108700 hybrid +149_4-1 Q0 MARCO_32_104275416-3 83 -0.109382 hybrid +149_4-1 Q0 MARCO_50_2504117447-30 84 -0.109541 hybrid +149_4-1 Q0 MARCO_01_683295006-5 85 -0.110473 hybrid +149_4-1 Q0 MARCO_50_1764254651-1 86 -0.111087 hybrid +149_4-1 Q0 MARCO_02_1144286529-2 87 -0.116954 hybrid +149_4-1 Q0 MARCO_55_724844030-13 88 -0.117499 hybrid +149_4-1 Q0 MARCO_00_541715615-5 89 -0.117727 hybrid +149_4-1 Q0 MARCO_13_362953068-5 90 -0.125549 hybrid +149_4-1 Q0 MARCO_16_379446895-11 91 -0.129869 hybrid +149_4-1 Q0 MARCO_19_739382593-7 92 -0.131915 hybrid +149_4-1 Q0 MARCO_15_1058437874-2 93 -0.132256 hybrid +149_4-1 Q0 MARCO_50_1698904451-15 94 -0.132393 hybrid +149_4-1 Q0 MARCO_28_1524553236-16 95 -0.133893 hybrid +149_4-1 Q0 MARCO_09_383239358-27 96 -0.134235 hybrid +149_4-1 Q0 MARCO_26_734266391-16 97 -0.141306 hybrid +149_4-1 Q0 MARCO_50_2018481130-31 98 -0.142943 hybrid +149_4-1 Q0 MARCO_01_1912299189-8 99 -0.144262 hybrid +149_4-1 Q0 KILT_59627354-5 100 -0.144467 hybrid diff --git a/scripts/20newsgroups-replication.py b/scripts/20newsgroups-replication.py new file mode 100644 index 0000000000000000000000000000000000000000..99c930544a507bde211cd7c8cb2dbde06f805f85 --- /dev/null +++ b/scripts/20newsgroups-replication.py @@ -0,0 +1,73 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from sklearn.linear_model import LogisticRegression +from sklearn import metrics +import os +import importlib +import argparse +import sys +sys.path.insert(0, './') + + +def get_info(path): + docs = [] + targets = [] + for root, _, files in os.walk(path, topdown=False): + for doc_id in files: + docs.append(doc_id) + category = root.split('/')[-1] + targets.append(target_to_index[category]) + + return docs, targets + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Replication script of pyserini vectorizer') + parser.add_argument('--vectorizer', type=str, required=True, help='E.g. TfidfVectorizer') + args = parser.parse_args() + + target_names = ['alt.atheism', 'comp.graphics', 'comp.os.ms-windows.misc', 'comp.sys.ibm.pc.hardware', 'comp.sys.mac.hardware', 'comp.windows.x', 'misc.forsale', 'rec.autos', 'rec.motorcycles', 'rec.sport.baseball', + 'rec.sport.hockey', 'sci.crypt', 'sci.electronics', 'sci.med', 'sci.space', 'soc.religion.christian', 'talk.politics.guns', 'talk.politics.mideast', 'talk.politics.misc', 'talk.religion.misc', ] + + target_to_index = {t: i for i, t in enumerate(target_names)} + + train_docs, train_labels = get_info('./20newsgroups/20news-bydate-train/') + test_docs, test_labels = get_info('./20newsgroups/20news-bydate-test/') + + # get vectorizer + lucene_index_path = '20newsgroups/lucene-index.20newsgroup.pos+docvectors+raw' + module = importlib.import_module("pyserini.vectorizer") + VectorizerClass = getattr(module, args.vectorizer) + vectorizer = VectorizerClass(lucene_index_path, min_df=5, verbose=True) + + train_vectors = vectorizer.get_vectors(train_docs) + test_vectors = vectorizer.get_vectors(test_docs) + + # classifier + clf = LogisticRegression() + clf.fit(train_vectors, train_labels) + pred = clf.predict(test_vectors) + score = metrics.f1_score(test_labels, pred, average='macro') + print(f'f1 score: {score}') + + score = round(score, 7) + if args.vectorizer == 'TfidfVectorizer': + assert score == 0.8359058, "tf-idf vectorizer score mismatch" + elif args.vectorizer == 'BM25Vectorizer': + assert score == 0.8421606, "bm25 vectorizer score mismatch" + else: + print('No matching f1 score assertion') diff --git a/scripts/ance/encode_corpus_msmarco_doc.py b/scripts/ance/encode_corpus_msmarco_doc.py new file mode 100644 index 0000000000000000000000000000000000000000..e56b058a7b15a6e68b95dee1dd09e56debac0c35 --- /dev/null +++ b/scripts/ance/encode_corpus_msmarco_doc.py @@ -0,0 +1,87 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +import sys +import numpy as np +import faiss +from tqdm import tqdm +from transformers import RobertaTokenizer +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.dsearch import AnceEncoder + + +def encode_passage(texts, tokenizer, model, device='cuda:0'): + max_length = 512 # hardcode for now + inputs = tokenizer( + texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(device) + embeddings = model(inputs["input_ids"]).detach().cpu().numpy() + return embeddings + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--batch', type=int, help='batch size', default=8) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + tokenizer = RobertaTokenizer.from_pretrained(args.encoder) + model = AnceEncoder.from_pretrained(args.encoder) + model.to(args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + texts = [] + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json') or file.endswith('jsonl'): + print(f'Loading {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + text = info['contents'] + id_file.write(f'{docid}\n') + url, title, text = text.split('\n') + text = f"{url} {title} {text}" + texts.append(text.lower()) + for idx in tqdm(range(0, len(texts), args.batch)): + text_batch = texts[idx: idx+args.batch] + embeddings = encode_passage(text_batch, tokenizer, model, args.device) + index.add(np.array(embeddings)) + faiss.write_index(index, os.path.join(args.index, 'index')) diff --git a/scripts/ance/encode_corpus_msmarco_passage.py b/scripts/ance/encode_corpus_msmarco_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..52a570d41c00b61106213031f20751983dd439ce --- /dev/null +++ b/scripts/ance/encode_corpus_msmarco_passage.py @@ -0,0 +1,85 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +import sys +import numpy as np +import faiss +from tqdm import tqdm +from transformers import RobertaTokenizer +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.dsearch import AnceEncoder + + +def encode_passage(texts, tokenizer, model, device='cuda:0'): + max_length = 512 # hardcode for now + inputs = tokenizer( + texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(device) + embeddings = model(inputs["input_ids"]).detach().cpu().numpy() + return embeddings + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--batch', type=int, help='batch size', default=8) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + tokenizer = RobertaTokenizer.from_pretrained(args.encoder) + model = AnceEncoder.from_pretrained(args.encoder) + model.to(args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + texts = [] + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json') or file.endswith('jsonl'): + print(f'Loading {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + text = info['contents'].strip().replace('\n', ' ') + id_file.write(f'{docid}\n') + texts.append(text.lower()) + for idx in tqdm(range(0, len(texts), args.batch)): + text_batch = texts[idx: idx+args.batch] + embeddings = encode_passage(text_batch, tokenizer, model, args.device) + index.add(np.array(embeddings)) + faiss.write_index(index, os.path.join(args.index, 'index')) diff --git a/scripts/ance/encode_corpus_wiki.py b/scripts/ance/encode_corpus_wiki.py new file mode 100644 index 0000000000000000000000000000000000000000..4e263869af2bb8b1998e94de53be4992f604d28d --- /dev/null +++ b/scripts/ance/encode_corpus_wiki.py @@ -0,0 +1,85 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os + +import faiss +import numpy as np +from tqdm import tqdm +from transformers import DPRContextEncoderTokenizer, DPRContextEncoder + + +def encode_passage(titles, texts, tokenizer, model, device='cuda:0'): + max_length = 256 # hardcode for now + inputs = tokenizer( + titles, + text_pair=texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(device) + embeddings = model(inputs["input_ids"]).pooler_output.detach().cpu().numpy() + return embeddings + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--batch', type=int, help='batch size', default=8) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + tokenizer = DPRContextEncoderTokenizer.from_pretrained(args.encoder) + model = DPRContextEncoder.from_pretrained(args.encoder) + model.to(args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + titles = [] + texts = [] + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json') or file.endswith('jsonl'): + print(f'Encoding {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + title, text = info['contents'].split('\n') + title = title.replace('"', '') + text = text.replace('""', '"') + id_file.write(f'{docid}\n') + titles.append(title) + texts.append(text) + for idx in tqdm(range(0, len(titles), args.batch)): + title_batch = titles[idx: idx+args.batch] + text_batch = texts[idx: idx+args.batch] + embeddings = encode_passage(title_batch, text_batch, tokenizer, model, args.device) + index.add(np.array(embeddings)) + faiss.write_index(index, os.path.join(args.index, 'index')) \ No newline at end of file diff --git a/scripts/ance/encode_queries_msmarco_passage.py b/scripts/ance/encode_queries_msmarco_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..4f4dd69d33fd3228a69fe4f36f7a037d04902616 --- /dev/null +++ b/scripts/ance/encode_queries_msmarco_passage.py @@ -0,0 +1,49 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import pandas as pd +from tqdm import tqdm +import sys + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.dsearch import AnceQueryEncoder + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--input', type=str, help='query file to be encoded.', required=True) + parser.add_argument('--output', type=str, help='path to store query embeddings', required=True) + parser.add_argument('--device', type=str, + help='device cpu or cuda [cuda:0, cuda:1...]', default='cpu', required=False) + args = parser.parse_args() + + encoder = AnceQueryEncoder(args.encoder, device=args.device) + embeddings = {'id': [], 'text': [], 'embedding': []} + for line in tqdm(open(args.input, 'r').readlines()): + qid, text = line.rstrip().split('\t') + qid = qid.strip() + text = text.strip() + embeddings['id'].append(qid) + embeddings['text'].append(text) + embeddings['embedding'].append(encoder.encode(text)) + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(args.output) diff --git a/scripts/beir/compare_domains.py b/scripts/beir/compare_domains.py new file mode 100644 index 0000000000000000000000000000000000000000..247854616e5ef506ead3bf5f7ce742ae381f12ba --- /dev/null +++ b/scripts/beir/compare_domains.py @@ -0,0 +1,163 @@ +import argparse +import numpy as np + +from pyserini.index.lucene import IndexReader + + +def index2stats(index_path): + index_reader = IndexReader(index_path) + + terms = index_reader.terms() + + cf_dict = {} + df_dict = {} + for t in terms: + txt = t.term + df = t.df + cf = t.cf + cf_dict[txt] = int(cf) + df_dict[txt] = int(df) + + return cf_dict, df_dict, index_reader.stats() + +def count_total(d): + s = 0 + for t in d: + s += d[t] + return s + +def kl_divergence(d1, d2): + value = float(0) + for w in d1: + if w in d2: + value += d1[w] * np.log(d1[w] / d2[w]) + return value + +def js_divergence(d1, d2): + mean = {} + for w in d1: + mean[w] = d1[w] * 0.5 + for w in d2: + if w in mean: + mean[w] += d2[w] * 0.5 + else: + mean[w] = d2[w] * 0.5 + + jsd = 0.5 * (kl_divergence(d1, mean) + kl_divergence(d2, mean)) + return jsd + +def jaccard(d1, d2): + ret = (float(len(set(d1).intersection(set(d2)))) / + float(len(set(d1).union(set(d2))))) + return ret + +def weighted_jaccard(d1, d2): + term_union = set(d1).union(set(d2)) + min_sum = max_sum = 0 + for t in term_union: + if t not in d1: + max_sum += d2[t] + elif t not in d2: + max_sum += d1[t] + else: + min_sum += min(d1[t], d2[t]) + max_sum += max(d1[t], d2[t]) + ret = float(min_sum) / float(max_sum) + return ret + +def cf2freq(d): + total = count_total(d) + new_d = {} + for t in d: + new_d[t] = float(d[t]) / float(total) + return new_d + +def df2idf(d, n): + total = n + new_d = {} + for t in d: + new_d[t] = float(n) / float(d[t]) + return new_d + +def filter_freq_dict(freq_d, threshold=0.0001): + new_d = {} + for t in freq_d: + if freq_d[t] > threshold: + new_d[t] = freq_d[t] + return new_d + +def print_results(datasets, results, save_file): + f = open(save_file, 'w') + + f.write("\t{}\n".format("\t".join(datasets))) + for d1 in datasets: + f.write(d1) + for d2 in datasets: + f.write("\t{:.4f}".format(results[d1][d2])) + f.write("\n") + f.close() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--index_path', type=str, help='path to indexes of all the beir dataset', required=True) + parser.add_argument('--index_name_format', type=str, help='define your own index dir path name', default="/lucene-index-beir-{}") + parser.add_argument('--compare_metric', type=str, help='the metric for comparing two vocab, choose from: jaccard, weight_jaccard, df_filter, tf_filter, kl_divergence, js_divergence', default="weight_jaccard") + parser.add_argument('--compare_threshold', type=float, help='when choosing df_filter, or tf_filter, you can choolse the threshold', default=0.0001) + parser.add_argument('--output_path', type=str, help='path to save the stat results', required=True) + args = parser.parse_args() + + beir_datasets = ['trec-covid', 'bioasq', 'nfcorpus', 'nq', 'hotpotqa', 'climate-fever', 'fever', 'dbpedia-entity', 'fiqa', 'signal1m', 'trec-news', 'robust04', 'arguana', 'webis-touche2020', 'quora', 'cqadupstack', 'scidocs', 'scifact', 'msmarco'] + #beir_datasets = ['arguana', 'fiqa'] + cfs = dfs = stats = {} + for d in beir_datasets: + cf, df, stat = index2stats(args.index_path + args.index_name_format.format(d)) + cfs[d] = cf # count frequency -- int + dfs[d] = df # document frequency -- int + stat[d] = stat + + results = {} + for d1 in beir_datasets: + metric_d1 = {} + for d2 in beir_datasets: + if d1 == d2: + if args.compare_metric in ["jaccard", "weight_jaccard", "df_filter", "tf_filter"]: + metric_d1[d2] = 1 + elif args.compare_metric in ["kl_divergence", "js_divergence"]: + metric_d1[d2] = 0 + else: + if args.compare_metric == "jaccard": + metric_d1[d2] = jaccard(cfs[d1], cfs[d2]) + elif args.compare_metric == "weight_jaccard": + new_d1 = filter_freq_dict(cf2freq(cfs[d1])) + new_d2 = filter_freq_dict(cf2freq(cfs[d2])) + metric_d1[d2] = weighted_jaccard(new_d1, new_d2) + elif args.compare_metric == "df_filter": + new_d1 = filter_freq_dict(cf2freq(cfs[d1])) + new_d2 = filter_freq_dict(cf2freq(cfs[d2])) + metric_d1[d2] = jaccard(new_d1, new_d2) + elif args.compare_metric == "tf_filter": + new_d1 = filter_freq_dict(df2idf(dfs[d1], 1)) + new_d2 = filter_freq_dict(df2idf(dfs[d2], 1)) + metric_d1[d2] = jaccard(new_d1, new_d2) + elif args.compare_metric == "kl_divergence": + new_d1 = filter_freq_dict(cf2freq(cfs[d1])) + new_d2 = filter_freq_dict(cf2freq(cfs[d2])) + metric_d1[d2] = kl_divergence(new_d1, new_d2) + elif args.compare_metric == "js_divergence": + new_d1 = filter_freq_dict(cf2freq(cfs[d1])) + new_d2 = filter_freq_dict(cf2freq(cfs[d2])) + metric_d1[d2] = js_divergence(new_d1, new_d2) + else: + raise NotImplementedError + results[d1] = metric_d1 + + print_results(beir_datasets, results, args.output_path) + + + + + + + + diff --git a/scripts/beir/gather_beir_index_stats.py b/scripts/beir/gather_beir_index_stats.py new file mode 100644 index 0000000000000000000000000000000000000000..9a5e632d3d2f4fa2480c0c495fcd75db417b6afc --- /dev/null +++ b/scripts/beir/gather_beir_index_stats.py @@ -0,0 +1,116 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os + +from pyserini.index.lucene import IndexReader +from pyserini.util import compute_md5 + +beir_keys = { + 'trec-covid': 'TREC-COVID', + 'bioasq': 'BioASQ', + 'nfcorpus': 'NFCorpus', + 'nq': 'NQ', + 'hotpotqa': 'HotpotQA', + 'fiqa': 'FiQA-2018', + 'signal1m': 'Signal-1M', + 'trec-news': 'TREC-NEWS', + 'robust04': 'Robust04', + 'arguana': 'ArguAna', + 'webis-touche2020': 'Webis-Touche2020', + 'cqadupstack-android': 'CQADupStack-android', + 'cqadupstack-english': 'CQADupStack-english', + 'cqadupstack-gaming': 'CQADupStack-gaming', + 'cqadupstack-gis': 'CQADupStack-gis', + 'cqadupstack-mathematica': 'CQADupStack-mathematica', + 'cqadupstack-physics': 'CQADupStack-physics', + 'cqadupstack-programmers': 'CQADupStack-programmers', + 'cqadupstack-stats': 'CQADupStack-stats', + 'cqadupstack-tex': 'CQADupStack-tex', + 'cqadupstack-unix': 'CQADupStack-unix', + 'cqadupstack-webmasters': 'CQADupStack-webmasters', + 'cqadupstack-wordpress': 'CQADupStack-wordpress', + 'quora': 'Quora', + 'dbpedia-entity': 'DBPedia', + 'scidocs': 'SCIDOCS', + 'fever': 'FEVER', + 'climate-fever': 'Climate-FEVER', + 'scifact': 'SciFact' +} + +commitid = '505594' +date = '20221116' +type = 'flat' + +for key in beir_keys: + index_reader = IndexReader(f'indexes/lucene-index.beir-v1.0.0-{key}.{type}.{date}.{commitid}') + stats = index_reader.stats() + md5 = compute_md5(f'indexes/lucene-index.beir-v1.0.0-{key}.{type}.{date}.{commitid}.tar.gz') + size = os.path.getsize(f'indexes/lucene-index.beir-v1.0.0-{key}.{type}.{date}.{commitid}.tar.gz') + print(f' "beir-v1.0.0-{key}.{type}": {{') + print(f' "description": "Lucene flat index of BEIR (v1.0.0): {beir_keys[key]}",') + print(f' "filename": "lucene-index.beir-v1.0.0-{key}.{type}.{date}.{commitid}.tar.gz",') + print(f' "readme": "lucene-index.beir-v1.0.0-{key}.{type}.{date}.{commitid}.README.md",') + print(f' "urls": [') + print(f' "https://rgw.cs.uwaterloo.ca/pyserini/indexes/lucene-index.beir-v1.0.0-{key}.{type}.{date}.{commitid}.tar.gz"') + print(f' ],') + print(f' "md5": "{md5}",') + print(f' "size compressed (bytes)": {size},') + print(f' "total_terms": {stats["total_terms"]},') + print(f' "documents": {stats["documents"]},') + print(f' "unique_terms": {stats["unique_terms"]},') + print(f' "downloaded": False') + print(f' }},') + +# Stats for "contriever" indexes +for key in beir_keys: + index_reader = IndexReader(f'indexes/faiss.beir-v1.0.0-{key}.contriever.{date}.{commitid}') + stats = index_reader.stats() + md5 = compute_md5(f'indexes/faiss.beir-v1.0.0-{key}.contriever.{date}.{commitid}.tar.gz') + size = os.path.getsize(f'indexes/faiss.beir-v1.0.0-{key}.contriever.{date}.{commitid}.tar.gz') + print(f' "beir-v1.0.0-{key}.contriever": {{') + print(f' "description": "Faiss index for BEIR v1.0.0 ({beir_keys[key]}) corpus encoded by Contriever encoder.",') + print(f' "filename": "faiss.beir-v1.0.0-{key}.contriever.{date}.{commitid}.tar.gz",') + print(f' "readme": "faiss.beir-v1.0.0-{key}.contriever.{date}.{commitid}.README.md",') + print(f' "urls": [') + print(f' "https://rgw.cs.uwaterloo.ca/JIMMYLIN-bucket0/pyserini-indexes/faiss.beir-v1.0.0-{key}.contriever.{date}.{commitid}.tar.gz"') + print(f' ],') + print(f' "md5": "{md5}",') + print(f' "size compressed (bytes)": {size},') + print(f' "documents": {stats["documents"]},') + print(f' "downloaded": False,') + print(f' "texts": "beir-v1.0.0-{key}.flat"') + print(f' }},') + +# Stats for "contriever" indexes with msmarco-ft +for key in beir_keys: + index_reader = IndexReader(f'indexes/faiss.beir-v1.0.0-{key}.contriever-msmarco.{date}') + stats = index_reader.stats() + md5 = compute_md5(f'indexes/faiss.beir-v1.0.0-{key}.contriever-msmarco.{date}.tar.gz') + size = os.path.getsize(f'indexes/faiss.beir-v1.0.0-{key}.contriever-msmarco.{date}.tar.gz') + print(f' "beir-v1.0.0-{key}.contriever": {{') + print(f' "description": "Faiss index for BEIR v1.0.0 ({beir_keys[key]}) corpus encoded by Contriever encoder fine-tuned with MS MARCO.",') + print(f' "filename": "faiss.beir-v1.0.0-{key}.contriever-msmarco.{date}.tar.gz",') + print(f' "readme": "faiss.beir-v1.0.0-{key}.contriever-msmarco.{date}.README.md",') + print(f' "urls": [') + print(f' "https://rgw.cs.uwaterloo.ca/pyserini/indexes/faiss.beir-v1.0.0-{key}.contriever-msmarco.20230124.tar.gz"') + print(f' ],') + print(f' "md5": "{md5}",') + print(f' "size compressed (bytes)": {size},') + print(f' "documents": {stats["documents"]},') + print(f' "downloaded": False,') + print(f' "texts": "beir-v1.0.0-{key}.flat"') + print(f' }},') diff --git a/scripts/beir/index_bm25.sh b/scripts/beir/index_bm25.sh new file mode 100644 index 0000000000000000000000000000000000000000..f46598388c802c13202aab373e27454ba1567cc8 --- /dev/null +++ b/scripts/beir/index_bm25.sh @@ -0,0 +1,13 @@ +#mkdir -p indexes + +#for corpora in arguana bioasq climate-fever dbpedia-entity fever hotpotqa nfcorpus quora robust04 scidocs scifact signal1m trec-covid trec-news webis-touche2020 fiqa nq +#do + +#for corpora in android english gaming gis mathematica physics programmers stats tex unix webmasters wordpress +#for corpora in fiqa # BeirFlatCollection +for corpora in msmarco +do +python -m pyserini.index -collection JsonCollection -generator DefaultLuceneDocumentGenerator \ + -threads 20 -input /store/scratch/y247xie/00_data/wp-tokenized/${corpora} \ + -index indexes/lucene-index-beir-${corpora} -storePositions -storeDocvectors -storeRaw -pretokenized +done diff --git a/scripts/beir/indexes_df_filter.tsv b/scripts/beir/indexes_df_filter.tsv new file mode 100644 index 0000000000000000000000000000000000000000..0a408a4086cd113c4fa1532912f247a73d5d0eed --- /dev/null +++ b/scripts/beir/indexes_df_filter.tsv @@ -0,0 +1,20 @@ + trec-covid bioasq nfcorpus nq hotpotqa climate-fever fever dbpedia-entity fiqa signal1m trec-news robust04 arguana webis-touche2020 quora cqadupstack scidocs scifact msmarco +trec-covid 1.0000 0.6805 0.5963 0.3362 0.2377 0.2603 0.2604 0.2334 0.2451 0.2251 0.2787 0.3180 0.2927 0.2760 0.2149 0.2772 0.4241 0.6367 0.3485 +bioasq 0.6805 1.0000 0.6533 0.3165 0.2267 0.2464 0.2465 0.2242 0.2259 0.2182 0.2541 0.2943 0.2567 0.2586 0.2031 0.2753 0.3823 0.7174 0.3335 +nfcorpus 0.5963 0.6533 1.0000 0.3165 0.2207 0.2400 0.2401 0.2187 0.2338 0.2096 0.2508 0.2908 0.2665 0.2540 0.2047 0.2594 0.3541 0.6115 0.3318 +nq 0.3362 0.3165 0.3165 1.0000 0.4995 0.5694 0.5689 0.4902 0.3926 0.3710 0.5455 0.5439 0.4421 0.4387 0.3717 0.3437 0.3329 0.2937 0.5508 +hotpotqa 0.2377 0.2267 0.2207 0.4995 1.0000 0.8334 0.8340 0.9355 0.2344 0.3446 0.3469 0.3274 0.2709 0.2543 0.2790 0.2427 0.2235 0.2107 0.3767 +climate-fever 0.2603 0.2464 0.2400 0.5694 0.8334 1.0000 0.9993 0.8253 0.2640 0.3549 0.3949 0.3762 0.3064 0.2862 0.2933 0.2677 0.2449 0.2280 0.4122 +fever 0.2604 0.2465 0.2401 0.5689 0.8340 0.9993 1.0000 0.8258 0.2636 0.3544 0.3945 0.3758 0.3060 0.2858 0.2935 0.2673 0.2450 0.2281 0.4117 +dbpedia-entity 0.2334 0.2242 0.2187 0.4902 0.9355 0.8253 0.8258 1.0000 0.2255 0.3425 0.3405 0.3231 0.2635 0.2463 0.2751 0.2402 0.2177 0.2084 0.3691 +fiqa 0.2451 0.2259 0.2338 0.3926 0.2344 0.2640 0.2636 0.2255 1.0000 0.3077 0.4699 0.4494 0.4356 0.5031 0.4116 0.4062 0.3054 0.2202 0.4680 +signal1m 0.2251 0.2182 0.2096 0.3710 0.3446 0.3549 0.3544 0.3425 0.3077 1.0000 0.4079 0.3431 0.2916 0.3211 0.3555 0.3037 0.2081 0.2048 0.3654 +trec-news 0.2787 0.2541 0.2508 0.5455 0.3469 0.3949 0.3945 0.3405 0.4699 0.4079 1.0000 0.5913 0.4754 0.5179 0.3765 0.3568 0.3016 0.2400 0.5027 +robust04 0.3180 0.2943 0.2908 0.5439 0.3274 0.3762 0.3758 0.3231 0.4494 0.3431 0.5913 1.0000 0.4845 0.4528 0.3275 0.3324 0.3199 0.2800 0.4757 +arguana 0.2927 0.2567 0.2665 0.4421 0.2709 0.3064 0.3060 0.2635 0.4356 0.2916 0.4754 0.4845 1.0000 0.5555 0.3461 0.3116 0.3413 0.2539 0.4240 +webis-touche2020 0.2760 0.2586 0.2540 0.4387 0.2543 0.2862 0.2858 0.2463 0.5031 0.3211 0.5179 0.4528 0.5555 1.0000 0.3838 0.3866 0.3364 0.2508 0.4530 +quora 0.2149 0.2031 0.2047 0.3717 0.2790 0.2933 0.2935 0.2751 0.4116 0.3555 0.3765 0.3275 0.3461 0.3838 1.0000 0.3551 0.2515 0.1920 0.4549 +cqadupstack 0.2772 0.2753 0.2594 0.3437 0.2427 0.2677 0.2673 0.2402 0.4062 0.3037 0.3568 0.3324 0.3116 0.3866 0.3551 1.0000 0.3632 0.2598 0.4230 +scidocs 0.4241 0.3823 0.3541 0.3329 0.2235 0.2449 0.2450 0.2177 0.3054 0.2081 0.3016 0.3199 0.3413 0.3364 0.2515 0.3632 1.0000 0.3796 0.3599 +scifact 0.6367 0.7174 0.6115 0.2937 0.2107 0.2280 0.2281 0.2084 0.2202 0.2048 0.2400 0.2800 0.2539 0.2508 0.1920 0.2598 0.3796 1.0000 0.3112 +msmarco 0.3485 0.3335 0.3318 0.5508 0.3767 0.4122 0.4117 0.3691 0.4680 0.3654 0.5027 0.4757 0.4240 0.4530 0.4549 0.4230 0.3599 0.3112 1.0000 diff --git a/scripts/beir/indexes_js_divergence.tsv b/scripts/beir/indexes_js_divergence.tsv new file mode 100644 index 0000000000000000000000000000000000000000..60a55173cc3bc286eaca196d3eefe65ad9a1b070 --- /dev/null +++ b/scripts/beir/indexes_js_divergence.tsv @@ -0,0 +1,20 @@ + trec-covid bioasq nfcorpus nq hotpotqa climate-fever fever dbpedia-entity fiqa signal1m trec-news robust04 arguana webis-touche2020 quora cqadupstack scidocs scifact msmarco +trec-covid 1.0000 0.0546 0.0839 0.1642 0.2218 0.2017 0.2016 0.2221 0.2382 0.2489 0.2108 0.1854 0.2013 0.2163 0.2808 0.2252 0.1392 0.0701 0.1624 +bioasq 0.0546 1.0000 0.0603 0.1658 0.2205 0.2011 0.2011 0.2198 0.2425 0.2449 0.2189 0.1922 0.2182 0.2217 0.2816 0.2191 0.1519 0.0423 0.1618 +nfcorpus 0.0839 0.0603 1.0000 0.1814 0.2409 0.2211 0.2211 0.2402 0.2556 0.2684 0.2329 0.2050 0.2236 0.2356 0.2987 0.2441 0.1775 0.0782 0.1776 +nq 0.1642 0.1658 0.1814 1.0000 0.0816 0.0633 0.0634 0.0821 0.1366 0.1482 0.0943 0.0854 0.1052 0.1224 0.1754 0.1559 0.1576 0.1849 0.0672 +hotpotqa 0.2218 0.2205 0.2409 0.0816 1.0000 0.0201 0.0201 0.0049 0.2208 0.1691 0.1765 0.1673 0.1931 0.2166 0.2170 0.2207 0.2222 0.2379 0.1214 +climate-fever 0.2017 0.2011 0.2211 0.0633 0.0201 1.0000 0.0000 0.0198 0.1984 0.1606 0.1437 0.1355 0.1701 0.1893 0.2078 0.2005 0.2019 0.2193 0.1060 +fever 0.2016 0.2011 0.2211 0.0634 0.0201 0.0000 1.0000 0.0198 0.1985 0.1606 0.1438 0.1356 0.1702 0.1894 0.2078 0.2006 0.2019 0.2193 0.1061 +dbpedia-entity 0.2221 0.2198 0.2402 0.0821 0.0049 0.0198 0.0198 1.0000 0.2229 0.1685 0.1764 0.1670 0.1943 0.2184 0.2183 0.2201 0.2237 0.2377 0.1218 +fiqa 0.2382 0.2425 0.2556 0.1366 0.2208 0.1984 0.1985 0.2229 1.0000 0.1826 0.1164 0.1233 0.1182 0.0883 0.1501 0.1238 0.2003 0.2568 0.0970 +signal1m 0.2489 0.2449 0.2684 0.1482 0.1691 0.1606 0.1606 0.1685 0.1826 1.0000 0.1560 0.1744 0.2006 0.1852 0.1916 0.1812 0.2486 0.2621 0.1393 +trec-news 0.2108 0.2189 0.2329 0.0943 0.1765 0.1437 0.1438 0.1764 0.1164 0.1560 1.0000 0.0696 0.1098 0.0908 0.1901 0.1623 0.1953 0.2341 0.1108 +robust04 0.1854 0.1922 0.2050 0.0854 0.1673 0.1355 0.1356 0.1670 0.1233 0.1744 0.0696 1.0000 0.1082 0.1147 0.2092 0.1736 0.1809 0.2089 0.1086 +arguana 0.2013 0.2182 0.2236 0.1052 0.1931 0.1701 0.1702 0.1943 0.1182 0.2006 0.1098 0.1082 1.0000 0.0857 0.1902 0.1766 0.1702 0.2274 0.1143 +webis-touche2020 0.2163 0.2217 0.2356 0.1224 0.2166 0.1893 0.1894 0.2184 0.0883 0.1852 0.0908 0.1147 0.0857 1.0000 0.1707 0.1352 0.1846 0.2341 0.1122 +quora 0.2808 0.2816 0.2987 0.1754 0.2170 0.2078 0.2078 0.2183 0.1501 0.1916 0.1901 0.2092 0.1902 0.1707 1.0000 0.1669 0.2471 0.2970 0.1350 +cqadupstack 0.2252 0.2191 0.2441 0.1559 0.2207 0.2005 0.2006 0.2201 0.1238 0.1812 0.1623 0.1736 0.1766 0.1352 0.1669 1.0000 0.1833 0.2358 0.1205 +scidocs 0.1392 0.1519 0.1775 0.1576 0.2222 0.2019 0.2019 0.2237 0.2003 0.2486 0.1953 0.1809 0.1702 0.1846 0.2471 0.1833 1.0000 0.1602 0.1482 +scifact 0.0701 0.0423 0.0782 0.1849 0.2379 0.2193 0.2193 0.2377 0.2568 0.2621 0.2341 0.2089 0.2274 0.2341 0.2970 0.2358 0.1602 1.0000 0.1805 +msmarco 0.1624 0.1618 0.1776 0.0672 0.1214 0.1060 0.1061 0.1218 0.0970 0.1393 0.1108 0.1086 0.1143 0.1122 0.1350 0.1205 0.1482 0.1805 1.0000 diff --git a/scripts/beir/indexes_kl_divergence.tsv b/scripts/beir/indexes_kl_divergence.tsv new file mode 100644 index 0000000000000000000000000000000000000000..476033474990e878a940e420914bffabae88062d --- /dev/null +++ b/scripts/beir/indexes_kl_divergence.tsv @@ -0,0 +1,20 @@ + trec-covid bioasq nfcorpus nq hotpotqa climate-fever fever dbpedia-entity fiqa signal1m trec-news robust04 arguana webis-touche2020 quora cqadupstack scidocs scifact msmarco +trec-covid 1.0000 0.0448 0.0336 0.1378 0.1141 0.1268 0.1268 0.1026 0.0769 0.1147 0.2565 0.1991 0.0948 0.1706 0.1257 0.0665 0.0856 0.0569 0.1137 +bioasq 0.0609 1.0000 0.0194 0.1555 0.1295 0.1447 0.1447 0.1217 0.0999 0.1345 0.2773 0.2233 0.1397 0.1957 0.1517 0.0833 0.1371 0.0239 0.1279 +nfcorpus 0.1186 0.0863 1.0000 0.1908 0.1527 0.1706 0.1706 0.1435 0.1212 0.1509 0.3080 0.2669 0.1566 0.2258 0.1755 0.1044 0.1849 0.1257 0.1794 +nq 0.1812 0.1576 0.1643 1.0000 0.0616 0.0384 0.0383 0.0815 0.0574 0.1851 0.2639 0.1940 0.0632 0.1516 0.1579 0.0737 0.1527 0.1855 0.0489 +hotpotqa 0.2694 0.2197 0.2561 0.1654 1.0000 0.0588 0.0588 0.0050 0.1574 0.2180 0.4821 0.3698 0.2383 0.3233 0.1839 0.1503 0.2188 0.2563 0.1190 +climate-fever 0.1456 0.1090 0.1328 0.0707 -0.0202 1.0000 -0.0000 -0.0222 0.0586 0.1299 0.3001 0.2246 0.1211 0.1858 0.1071 0.0644 0.1062 0.1335 0.0523 +fever 0.1456 0.1090 0.1328 0.0708 -0.0202 0.0000 1.0000 -0.0222 0.0588 0.1300 0.3002 0.2247 0.1212 0.1858 0.1071 0.0645 0.1062 0.1335 0.0523 +dbpedia-entity 0.2553 0.2071 0.2423 0.1618 0.0013 0.0604 0.0604 1.0000 0.1551 0.2109 0.4672 0.3603 0.2314 0.3199 0.1803 0.1449 0.2111 0.2426 0.1218 +fiqa 0.3243 0.3136 0.3265 0.3440 0.3525 0.3592 0.3582 0.3496 1.0000 0.3400 0.4209 0.4279 0.2379 0.2018 0.2046 0.1204 0.3096 0.3201 0.2314 +signal1m 0.3184 0.2348 0.2533 0.2131 0.2702 0.2878 0.2878 0.2469 0.2958 1.0000 0.4628 0.2995 0.2113 0.3399 0.1300 0.2227 0.3798 0.2558 0.1895 +trec-news 0.0620 0.0436 0.0422 0.0681 0.0835 0.0679 0.0677 0.0795 -0.0693 0.1217 1.0000 0.0441 -0.0241 -0.0209 0.0574 -0.0204 0.0600 0.0454 0.0254 +robust04 0.0416 0.0256 0.0194 0.0370 0.0584 0.0599 0.0595 0.0594 -0.0747 0.0811 0.0656 1.0000 -0.0266 -0.0126 0.0488 -0.0377 0.0326 0.0366 0.0053 +arguana 0.2747 0.2292 0.2534 0.2178 0.2459 0.2374 0.2373 0.2517 0.0637 0.2840 0.3115 0.2616 1.0000 0.1559 0.1798 0.1154 0.2201 0.2417 0.1416 +webis-touche2020 0.1759 0.1677 0.1734 0.1959 0.2135 0.2161 0.2161 0.2093 -0.0209 0.2110 0.2116 0.2317 0.0718 1.0000 0.1017 0.0445 0.1768 0.1711 0.1255 +quora 0.6807 0.9262 0.7167 1.0242 0.5189 0.6385 0.6385 0.5243 0.5093 0.7571 0.9984 1.0744 0.7696 0.6971 1.0000 0.4465 1.0338 0.6816 0.7129 +cqadupstack 0.3405 0.3268 0.3328 0.3428 0.3404 0.3548 0.3544 0.3385 0.1287 0.3009 0.4360 0.4501 0.2323 0.2593 0.1877 1.0000 0.3545 0.3202 0.2640 +scidocs 0.1595 0.1440 0.1419 0.1746 0.1613 0.1796 0.1796 0.1526 0.1121 0.1258 0.3094 0.2685 0.1335 0.1828 0.1601 0.1383 1.0000 0.1584 0.1128 +scifact 0.0915 0.0563 0.0574 0.1600 0.1297 0.1442 0.1442 0.1215 0.0911 0.1241 0.2662 0.2197 0.1328 0.1859 0.1368 0.0746 0.1293 1.0000 0.1346 +msmarco 0.2116 0.1982 0.2083 0.1484 0.1556 0.1780 0.1779 0.1526 0.0356 0.1836 0.3661 0.3101 0.1353 0.1968 0.1138 0.0810 0.1784 0.2204 1.0000 diff --git a/scripts/beir/indexes_tf_filter.tsv b/scripts/beir/indexes_tf_filter.tsv new file mode 100644 index 0000000000000000000000000000000000000000..957e1a47311798795f437ce1c6c05d6a453bcbea --- /dev/null +++ b/scripts/beir/indexes_tf_filter.tsv @@ -0,0 +1,20 @@ + trec-covid bioasq nfcorpus nq hotpotqa climate-fever fever dbpedia-entity fiqa signal1m trec-news robust04 arguana webis-touche2020 quora cqadupstack scidocs scifact msmarco +trec-covid 1.0000 0.5225 0.5367 0.7852 0.7695 0.6963 0.6962 0.7722 0.8216 0.8511 0.7654 0.7957 0.7335 0.8538 0.8450 0.8544 0.8116 0.5629 0.6933 +bioasq 0.5225 1.0000 0.1540 0.6365 0.6223 0.6332 0.6332 0.6220 0.4986 0.6195 0.6504 0.6609 0.4141 0.6220 0.5379 0.5949 0.4224 0.1639 0.7079 +nfcorpus 0.5367 0.1540 1.0000 0.3979 0.3977 0.3425 0.3424 0.3994 0.5425 0.4687 0.3922 0.4194 0.5547 0.4648 0.5216 0.4705 0.5858 0.7047 0.3258 +nq 0.7852 0.6365 0.3979 1.0000 0.9263 0.8870 0.8869 0.9260 0.7417 0.8924 0.8971 0.8946 0.6171 0.8980 0.8011 0.8941 0.6824 0.4205 0.8288 +hotpotqa 0.7695 0.6223 0.3977 0.9263 1.0000 0.9088 0.9086 0.9868 0.7290 0.8748 0.8540 0.8523 0.6093 0.8689 0.7865 0.8719 0.6740 0.4207 0.8053 +climate-fever 0.6963 0.6332 0.3425 0.8870 0.9088 1.0000 0.9998 0.9053 0.6556 0.8019 0.8279 0.8134 0.5391 0.8035 0.7134 0.7997 0.6032 0.3634 0.8089 +fever 0.6962 0.6332 0.3424 0.8869 0.9086 0.9998 1.0000 0.9051 0.6556 0.8019 0.8277 0.8135 0.5392 0.8034 0.7133 0.7996 0.6031 0.3633 0.8090 +dbpedia-entity 0.7722 0.6220 0.3994 0.9260 0.9868 0.9053 0.9051 1.0000 0.7312 0.8771 0.8534 0.8530 0.6119 0.8693 0.7896 0.8735 0.6768 0.4225 0.8040 +fiqa 0.8216 0.4986 0.5425 0.7417 0.7290 0.6556 0.6556 0.7312 1.0000 0.8267 0.7301 0.7637 0.7555 0.8191 0.8492 0.8219 0.7839 0.5677 0.6590 +signal1m 0.8511 0.6195 0.4687 0.8924 0.8748 0.8019 0.8019 0.8771 0.8267 1.0000 0.8723 0.8941 0.7018 0.9403 0.8771 0.9303 0.7535 0.4918 0.7968 +trec-news 0.7654 0.6504 0.3922 0.8971 0.8540 0.8279 0.8277 0.8534 0.7301 0.8723 1.0000 0.9119 0.6057 0.8787 0.7784 0.8435 0.6608 0.4139 0.8578 +robust04 0.7957 0.6609 0.4194 0.8946 0.8523 0.8134 0.8135 0.8530 0.7637 0.8941 0.9119 1.0000 0.6504 0.9016 0.8087 0.8625 0.6967 0.4421 0.8584 +arguana 0.7335 0.4141 0.5547 0.6171 0.6093 0.5391 0.5392 0.6119 0.7555 0.7018 0.6057 0.6504 1.0000 0.6962 0.7429 0.6963 0.7329 0.5798 0.5498 +webis-touche2020 0.8538 0.6220 0.4648 0.8980 0.8689 0.8035 0.8034 0.8693 0.8191 0.9403 0.8787 0.9016 0.6962 1.0000 0.8729 0.9344 0.7545 0.4876 0.8016 +quora 0.8450 0.5379 0.5216 0.8011 0.7865 0.7134 0.7133 0.7896 0.8492 0.8771 0.7784 0.8087 0.7429 0.8729 1.0000 0.8732 0.7931 0.5468 0.7044 +cqadupstack 0.8544 0.5949 0.4705 0.8941 0.8719 0.7997 0.7996 0.8735 0.8219 0.9303 0.8435 0.8625 0.6963 0.9344 0.8732 1.0000 0.7626 0.4936 0.7674 +scidocs 0.8116 0.4224 0.5858 0.6824 0.6740 0.6032 0.6031 0.6768 0.7839 0.7535 0.6608 0.6967 0.7329 0.7545 0.7931 0.7626 1.0000 0.6193 0.5921 +scifact 0.5629 0.1639 0.7047 0.4205 0.4207 0.3634 0.3633 0.4225 0.5677 0.4918 0.4139 0.4421 0.5798 0.4876 0.5468 0.4936 0.6193 1.0000 0.3492 +msmarco 0.6933 0.7079 0.3258 0.8288 0.8053 0.8089 0.8090 0.8040 0.6590 0.7968 0.8578 0.8584 0.5498 0.8016 0.7044 0.7674 0.5921 0.3492 1.0000 diff --git a/scripts/beir/indexes_weight_jaccard.tsv b/scripts/beir/indexes_weight_jaccard.tsv new file mode 100644 index 0000000000000000000000000000000000000000..29da5e6127d52380c31aea0031724588cdbd39a2 --- /dev/null +++ b/scripts/beir/indexes_weight_jaccard.tsv @@ -0,0 +1,20 @@ + trec-covid bioasq nfcorpus nq hotpotqa climate-fever fever dbpedia-entity fiqa signal1m trec-news robust04 arguana webis-touche2020 quora cqadupstack scidocs scifact msmarco +trec-covid 1.0000 0.6702 0.5867 0.3619 0.2564 0.2955 0.2955 0.2574 0.2721 0.2390 0.2698 0.3307 0.3119 0.2911 0.2042 0.2993 0.4355 0.6190 0.3553 +bioasq 0.6702 1.0000 0.6530 0.3559 0.2588 0.2973 0.2973 0.2613 0.2633 0.2417 0.2546 0.3170 0.2876 0.2771 0.1991 0.3053 0.4019 0.7019 0.3516 +nfcorpus 0.5867 0.6530 1.0000 0.3325 0.2350 0.2689 0.2689 0.2371 0.2546 0.2178 0.2441 0.3039 0.2827 0.2703 0.1884 0.2767 0.3613 0.5820 0.3299 +nq 0.3619 0.3559 0.3325 1.0000 0.4992 0.5883 0.5882 0.4983 0.4031 0.3688 0.4455 0.4913 0.4459 0.4018 0.3214 0.3668 0.3770 0.3273 0.5709 +hotpotqa 0.2564 0.2588 0.2350 0.4992 1.0000 0.7719 0.7720 0.9361 0.2598 0.3286 0.2760 0.3020 0.2817 0.2387 0.2806 0.2604 0.2573 0.2395 0.4378 +climate-fever 0.2955 0.2973 0.2689 0.5883 0.7719 1.0000 0.9998 0.7741 0.2988 0.3495 0.3382 0.3659 0.3258 0.2803 0.2792 0.2969 0.2969 0.2736 0.4613 +fever 0.2955 0.2973 0.2689 0.5882 0.7720 0.9998 1.0000 0.7742 0.2987 0.3494 0.3381 0.3658 0.3257 0.2802 0.2792 0.2968 0.2970 0.2736 0.4612 +dbpedia-entity 0.2574 0.2613 0.2371 0.4983 0.9361 0.7741 0.7742 1.0000 0.2595 0.3332 0.2758 0.3038 0.2807 0.2372 0.2783 0.2624 0.2566 0.2410 0.4396 +fiqa 0.2721 0.2633 0.2546 0.4031 0.2598 0.2988 0.2987 0.2595 1.0000 0.3152 0.4142 0.4030 0.4821 0.5323 0.3748 0.4754 0.3243 0.2503 0.4781 +signal1m 0.2390 0.2417 0.2178 0.3688 0.3286 0.3495 0.3494 0.3332 0.3152 1.0000 0.3237 0.3063 0.2794 0.2937 0.2944 0.3244 0.2371 0.2291 0.3960 +trec-news 0.2698 0.2546 0.2441 0.4455 0.2760 0.3382 0.3381 0.2758 0.4142 0.3237 1.0000 0.5740 0.4239 0.4964 0.2756 0.3322 0.2825 0.2412 0.4140 +robust04 0.3307 0.3170 0.3039 0.4913 0.3020 0.3659 0.3658 0.3038 0.4030 0.3063 0.5740 1.0000 0.4421 0.4458 0.2602 0.3248 0.3196 0.2954 0.4329 +arguana 0.3119 0.2876 0.2827 0.4459 0.2817 0.3258 0.3257 0.2807 0.4821 0.2794 0.4239 0.4421 1.0000 0.5237 0.3105 0.3709 0.3706 0.2801 0.4409 +webis-touche2020 0.2911 0.2771 0.2703 0.4018 0.2387 0.2803 0.2802 0.2372 0.5323 0.2937 0.4964 0.4458 0.5237 1.0000 0.3264 0.4141 0.3237 0.2693 0.4234 +quora 0.2042 0.1991 0.1884 0.3214 0.2806 0.2792 0.2792 0.2783 0.3748 0.2944 0.2756 0.2602 0.3105 0.3264 1.0000 0.3405 0.2409 0.1884 0.4022 +cqadupstack 0.2993 0.3053 0.2767 0.3668 0.2604 0.2969 0.2968 0.2624 0.4754 0.3244 0.3322 0.3248 0.3709 0.4141 0.3405 1.0000 0.3477 0.2874 0.4328 +scidocs 0.4355 0.4019 0.3613 0.3770 0.2573 0.2969 0.2970 0.2566 0.3243 0.2371 0.2825 0.3196 0.3706 0.3237 0.2409 0.3477 1.0000 0.3946 0.3868 +scifact 0.6190 0.7019 0.5820 0.3273 0.2395 0.2736 0.2736 0.2410 0.2503 0.2291 0.2412 0.2954 0.2801 0.2693 0.1884 0.2874 0.3946 1.0000 0.3270 +msmarco 0.3553 0.3516 0.3299 0.5709 0.4378 0.4613 0.4612 0.4396 0.4781 0.3960 0.4140 0.4329 0.4409 0.4234 0.4022 0.4328 0.3868 0.3270 1.0000 diff --git a/scripts/beir/run_beir_baselines.py b/scripts/beir/run_beir_baselines.py new file mode 100644 index 0000000000000000000000000000000000000000..c292d8de71c279b12bef0df42662e630b3455213 --- /dev/null +++ b/scripts/beir/run_beir_baselines.py @@ -0,0 +1,120 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os + + +beir_keys = { + 'trec-covid': 'TREC-COVID', + 'bioasq': 'BioASQ', + 'nfcorpus': 'NFCorpus', + 'nq': 'NQ', + 'hotpotqa': 'HotpotQA', + 'fiqa': 'FiQA-2018', + 'signal1m': 'Signal-1M', + 'trec-news': 'TREC-NEWS', + 'robust04': 'Robust04', + 'arguana': 'ArguAna', + 'webis-touche2020': 'Webis-Touche2020', + 'cqadupstack-android': 'CQADupStack-android', + 'cqadupstack-english': 'CQADupStack-english', + 'cqadupstack-gaming': 'CQADupStack-gaming', + 'cqadupstack-gis': 'CQADupStack-gis', + 'cqadupstack-mathematica': 'CQADupStack-mathematica', + 'cqadupstack-physics': 'CQADupStack-physics', + 'cqadupstack-programmers': 'CQADupStack-programmers', + 'cqadupstack-stats': 'CQADupStack-stats', + 'cqadupstack-tex': 'CQADupStack-tex', + 'cqadupstack-unix': 'CQADupStack-unix', + 'cqadupstack-webmasters': 'CQADupStack-webmasters', + 'cqadupstack-wordpress': 'CQADupStack-wordpress', + 'quora': 'Quora', + 'dbpedia-entity': 'DBPedia', + 'scidocs': 'SCIDOCS', + 'fever': 'FEVER', + 'climate-fever': 'Climate-FEVER', + 'scifact': 'SciFact' +} + +commitid = '1842ee' +date = '20220501' + + +# Runs on "flat" index +for key in beir_keys: + cmd = f'python -m pyserini.search.lucene \ + --index beir-v1.0.0-{key}-flat \ + --topics beir-v1.0.0-{key}-test \ + --output runs/run.beir-v1.0.0-{key}-flat.trec \ + --output-format trec \ + --batch 36 --threads 12 \ + --remove-query --hits 1000' + os.system(cmd) + cmd = f'python -m pyserini.eval.trec_eval -c -m ndcg_cut.10 -m recall.100,1000 beir-v1.0.0-{key}-test runs/run.beir-v1.0.0-{key}-flat.trec' + os.system(cmd) + +# Runs on "multifield" index +for key in beir_keys: + cmd = f'python -m pyserini.search.lucene \ + --index beir-v1.0.0-{key}-multifield \ + --topics beir-v1.0.0-{key}-test \ + --output runs/run.beir-v1.0.0-{key}-multifield.trec \ + --output-format trec \ + --batch 36 --threads 12 \ + --fields contents=1.0 title=1.0 \ + --remove-query --hits 1000' + os.system(cmd) + cmd = f'python -m pyserini.eval.trec_eval -c -m ndcg_cut.10 -m recall.100,1000 beir-v1.0.0-{key}-test runs/run.beir-v1.0.0-{key}-multifield.trec' + os.system(cmd) + +# Runs on SPLADE-distill CoCodenser-medium index +for key in beir_keys: + cmd = f'python -m pyserini.search.lucene \ + --index beir-v1.0.0-{key}-splade_distil_cocodenser_medium \ + --topics beir-v1.0.0-{key}-test-splade_distil_cocodenser_medium \ + --output runs/run.beir-v1.0.0-{key}-splade_distil_cocodenser_medium.trec \ + --output-format trec \ + --batch 36 --threads 12 \ + --remove-query --impact --hits 1000' + os.system(cmd) + cmd = f'python -m pyserini.eval.trec_eval -c -m ndcg_cut.10 -m recall.100,1000 beir-v1.0.0-{key}-test runs/run.beir-v1.0.0-{key}-splade_distil_cocodenser_medium.trec' + os.system(cmd) + +# Runs on Contriever index +for key in beir_keys: + cmd = f'python -m pyserini.search.faiss \ + --encoder-class contriever --encoder facebook/contriever \ + --index beir-v1.0.0-{key}.contriever \ + --topics beir-v1.0.0-{key}-test \ + --output runs/run.beir.contriever.{key}.txt \ + --batch 128 --threads 16 \ + --remove-query --hits 1000' + os.system(cmd) + cmd = f'python -m pyserini.eval.trec_eval -c -m ndcg_cut.10 -m recall.100,1000 beir-v1.0.0-{key}-test runs/run.beir.contriever.{key}.txt' + os.system(cmd) + +# Runs on Contriever index ft with MS MARCO +for key in beir_keys: + cmd = f'python -m pyserini.search.faiss \ + --encoder-class contriever --encoder facebook/contriever-msmarco \ + --index beir-v1.0.0-{key}.contriever-ft \ + --topics beir-v1.0.0-{key}-test \ + --output runs/run.beir.contriever-msmarco.{key}.txt \ + --batch 128 --threads 16 \ + --remove-query --hits 1000' + os.system(cmd) + cmd = f'python -m pyserini.eval.trec_eval -c -m ndcg_cut.10 -m recall.100,1000 beir-v1.0.0-{key}-test runs/run.beir.contriever-msmarco.{key}.txt' + os.system(cmd) \ No newline at end of file diff --git a/scripts/beir/test_compare_domains.sh b/scripts/beir/test_compare_domains.sh new file mode 100644 index 0000000000000000000000000000000000000000..e7ea8be5cc826540a250120e22536bda905181c4 --- /dev/null +++ b/scripts/beir/test_compare_domains.sh @@ -0,0 +1,7 @@ +for metric in weight_jaccard kl_divergence tf_filter df_filter +do +python compare_domains.py \ + --index_path indexes \ + --output_path indexes_${metric}.tsv \ + --compare_metric ${metric} +done diff --git a/scripts/beir/tokenize_corpus.py b/scripts/beir/tokenize_corpus.py new file mode 100644 index 0000000000000000000000000000000000000000..69ecb03fa74f3c4367a2d2af7f8cba5c920e0d69 --- /dev/null +++ b/scripts/beir/tokenize_corpus.py @@ -0,0 +1,110 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import argparse +import multiprocessing +import json +import time +from joblib import Parallel, delayed +from transformers import AutoTokenizer + +'''Replace original contents fields with bert tokenization''' + + +parser = argparse.ArgumentParser(description='Convert BEIR original documents to word piece tokenized.') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) +parser.add_argument('--workers', metavar='# of processes', help='# of workers to spawn', + type=int, default=multiprocessing.cpu_count() - 2) +parser.add_argument('--tokenizer', metavar='tokenizer', help='tokenizer', + type=str, default='bert-base-cased') + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +def get_retokenized(tokenizer, text): + """ + copy from pyserini.scripts.ltr_msmarco.convert_common.get_retokenized + Obtain a space separated re-tokenized text. + :param tokenizer: a tokenizer that has the function + tokenize that returns an array of tokens. + :param text: a text to re-tokenize. + """ + return ' '.join(tokenizer.tokenize(text)) + + +def batch_file(iterable, n=10000): + batch = [] + for line in iterable: + batch.append(line) + if len(batch) == n: + yield batch + batch = [] + if len(batch) > 0: + yield batch + batch = [] + return + + +def batch_process(batch): + bert_tokenizer = AutoTokenizer.from_pretrained(args.tokenizer) + + def process(line): + if not line: + return None + json_line = json.loads(line) + pid = json_line['_id'] + title = json_line['title'] + body = json_line['text'] + + doc = {"_id": pid, + "title": get_retokenized(bert_tokenizer, title.lower()), + "text": get_retokenized(bert_tokenizer, body.lower())} + return doc + + res = [] + start = time.time() + for line in batch: + res.append(process(line)) + if len(res) % 100000 == 0: + end = time.time() + print(f"finish {len(res)} using {end-start}") + start = end + return res + + +if __name__ == '__main__': + workers = args.workers + print(f"Spawning {workers} processes") + pool = Parallel(n_jobs=workers, verbose=10) + line_num = 0 + + with open(args.input) as inFile: + with open(args.output, 'w') as outFile: + for batch_json in pool([delayed(batch_process)(batch) for batch in batch_file(inFile)]): + for doc_json in batch_json: + line_num = line_num + 1 + if doc_json is not None: + outFile.write(json.dumps(doc_json) + '\n') + else: + print(f"Ignoring misformatted line {line_num}") + + if line_num % 10000 == 0: + print(f"Processed {line_num} passages") + + print(f"Processed {line_num} passages") diff --git a/scripts/beir/tokenize_corpus.sh b/scripts/beir/tokenize_corpus.sh new file mode 100644 index 0000000000000000000000000000000000000000..7a3064741d73a651077cdabe1d84cc3cf97f8ca5 --- /dev/null +++ b/scripts/beir/tokenize_corpus.sh @@ -0,0 +1,33 @@ +for corpora in arguana bioasq climate-fever dbpedia-entity fever fiqa hotpotqa nfcorpus quora robust04 scidocs scifact signal1m trec-covid trec-news webis-touche2020 +do +mkdir -p /store/scratch/y247xie/00_data/wp-tokenized-anserini/${corpora}/ +python tokenize_corpus.py \ + --input /store/collections/beir-v1.0.0/original/${corpora}/corpus.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized-anserini/${corpora}/corpus.jsonl + +python tokenize_queries.py \ + --input /store/collections/beir-v1.0.0/original/${corpora}/queries.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized-anserini/${corpora}/queries.jsonl +done + +for corpora in android english gaming gis mathematica physics programmers stats tex unix webmasters wordpress +do +mkdir -p /store/scratch/y247xie/00_data/wp-tokenized-anserini/cqadupstack/${corpora}/ +python tokenize_corpus.py \ + --input /store/collections/beir-v1.0.0/original/cqadupstack/${corpora}/corpus.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized-anserini/cqadupstack/${corpora}/corpus.jsonl +done + +for corpora in nq +do +mkdir -p /store/scratch/y247xie/00_data/wp-tokenized-anserini/${corpora}/ +python tokenize_corpus.py \ + --input /store/scratch/y247xie/00_data/nq/corpus.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized-anserini/${corpora}/corpus.jsonl + +python tokenize_queries.py \ + --input /store/scratch/y247xie/00_data/nq/queries.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized-anserini/${corpora}/queries.jsonl + +done + diff --git a/scripts/beir/tokenize_queries.py b/scripts/beir/tokenize_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..a875d67fd52a47a3b7dce669e3a1a06614cb3926 --- /dev/null +++ b/scripts/beir/tokenize_queries.py @@ -0,0 +1,111 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import argparse +import multiprocessing +import json +import time +from joblib import Parallel, delayed +from transformers import AutoTokenizer + +'''Replace original contents fields with bert tokenization''' + + +parser = argparse.ArgumentParser(description='Convert BEIR original documents to word piece tokenized.') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) +parser.add_argument('--workers', metavar='# of processes', help='# of workers to spawn', + type=int, default=multiprocessing.cpu_count() - 2) +parser.add_argument('--tokenizer', metavar='tokenizer', help='tokenizer', + type=str, default='bert-base-cased') + + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +def get_retokenized(tokenizer, text): + """ + copy from pyserini.scripts.ltr_msmarco.convert_common.get_retokenized + Obtain a space separated re-tokenized text. + :param tokenizer: a tokenizer that has the function + tokenize that returns an array of tokens. + :param text: a text to re-tokenize. + """ + return ' '.join(tokenizer.tokenize(text)) + + +def batch_file(iterable, n=10000): + batch = [] + for line in iterable: + batch.append(line) + if len(batch) == n: + yield batch + batch = [] + if len(batch) > 0: + yield batch + batch = [] + return + + +def batch_process(batch): + bert_tokenizer = AutoTokenizer.from_pretrained(args.tokenizer) + + def process(line): + if not line: + return None + json_line = json.loads(line) + pid = json_line['_id'] + body = json_line['text'] + metadata = json_line['metadata'] + + doc = {"_id": pid, + "text": get_retokenized(bert_tokenizer, body.lower()), + "metadata":metadata, } + return doc + + res = [] + start = time.time() + for line in batch: + res.append(process(line)) + if len(res) % 1000 == 0: + end = time.time() + print(f"finish {len(res)} using {end-start}") + start = end + return res + + +if __name__ == '__main__': + workers = args.workers + print(f"Spawning {workers} processes") + pool = Parallel(n_jobs=workers, verbose=10) + line_num = 0 + + with open(args.input) as inFile: + with open(args.output, 'w') as outFile: + for batch_json in pool([delayed(batch_process)(batch) for batch in batch_file(inFile)]): + for doc_json in batch_json: + line_num = line_num + 1 + if doc_json is not None: + outFile.write(json.dumps(doc_json) + '\n') + else: + print(f"Ignoring misformatted line {line_num}") + + if line_num % 10000 == 0: + print(f"Processed {line_num} passages") + + print(f"Processed {line_num} passages") diff --git a/scripts/beir/tokenize_queries.sh b/scripts/beir/tokenize_queries.sh new file mode 100644 index 0000000000000000000000000000000000000000..630b32ef4f30bc8bbad6ffb37f600e536d516e4d --- /dev/null +++ b/scripts/beir/tokenize_queries.sh @@ -0,0 +1,38 @@ +for corpora in arguana bioasq climate-fever dbpedia-entity fever fiqa hotpotqa nfcorpus quora robust04 scidocs scifact signal1m trec-covid trec-news webis-touche2020 +do + +#for corpora in android english gaming gis mathematica physics programmers stats tex unix webmasters wordpress +#do +#for corpora in nq +#do +#mkdir -p /store/scratch/y247xie/00_data/wp-tokenized/${corpora}/ +#mkdir -p /store/scratch/y247xie/00_data/wp-tokenized/cqadupstack/${corpora} +#python tokenize_corpus.py \ +# --input /store/collections/beir-v1.0.0/original/${corpora}/corpus.jsonl \ +# --output /store/scratch/y247xie/00_data/wp-tokenized/${corpora}/corpus.jsonl +#python tokenize_corpus.py \ +# --input /store/collections/beir-v1.0.0/original/cqadupstack/${corpora}/corpus.jsonl \ +# --output /store/scratch/y247xie/00_data/wp-tokenized/cqadupstack/${corpora}/corpus.jsonl +python tokenize_queries.py \ + --input /store/collections/beir-v1.0.0/original/${corpora}/queries.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized/${corpora}/queries.jsonl + +done + +for corpora in android english gaming gis mathematica physics programmers stats tex unix webmasters wordpress +do +python tokenize_queries.py \ + --input /store/collections/beir-v1.0.0/original/cqadupstack/${corpora}/queries.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized/cqadupstack/${corpora}/queries.jsonl +done + +for corpora in nq +do +python tokenize_queries.py \ + --input /store/scratch/y247xie/00_data/nq/queries.jsonl \ + --output /store/scratch/y247xie/00_data/wp-tokenized/${corpora}/queries.jsonl +done + + + + diff --git a/scripts/bpr/encode_queries.py b/scripts/bpr/encode_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..b6530d0fa91ead95abd6ff79e30c8f378e18ff51 --- /dev/null +++ b/scripts/bpr/encode_queries.py @@ -0,0 +1,76 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import csv +import json + +import pandas as pd +from tqdm import tqdm +import sys + +# We're going to explicitly use a local installation of Pyserini. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.dsearch import BprQueryEncoder + +def parse_qa_csv_file(location): + with open(location) as file: + reader = csv.reader(file, delimiter='\t') + for row in reader: + question = row[0] + answers = eval(row[1]) + yield question, answers + + +def parse_qa_json_file(location): + with open(location) as file: + for line in file: + qa = json.loads(line) + question = qa['question'] + answers = qa['answer'] + yield question, answers + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', + default='facebook/dpr-question_encoder-multiset-base', required=False) + parser.add_argument('--input', type=str, help='qas file, json file by default', required=True) + parser.add_argument('--format', type=str, help='qas file format', default='json', required=False) + parser.add_argument('--output', type=str, help='path to store query embeddings', required=True) + args = parser.parse_args() + + model = BprQueryEncoder(args.encoder) + tokenizer = model.tokenizer + + embeddings = {'id': [], 'text': [], 'dense_embedding': [], 'sparse_embedding': []} + qa_parser = None + if args.format == 'csv': + qa_parser = parse_qa_csv_file + elif args.format == 'json': + qa_parser = parse_qa_json_file + if qa_parser is None: + print(f'No QA parser defined for file format: {args.format}, or format not match') + for qid, (question, answers) in enumerate(tqdm(list(qa_parser(args.input)))): + embeddings['id'].append(qid) + embeddings['text'].append(question) + ret = model.encode(question) + embeddings['dense_embedding'].append(ret['dense']) + embeddings['sparse_embedding'].append(ret['sparse']) + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(args.output) diff --git a/scripts/check_download_links.py b/scripts/check_download_links.py new file mode 100644 index 0000000000000000000000000000000000000000..005f7bf8227aa249880ff68ae34654784ca96e20 --- /dev/null +++ b/scripts/check_download_links.py @@ -0,0 +1,72 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +# Starting point for writing this script +# https://stackoverflow.com/questions/13129618/histogram-values-of-a-pandas-series + +import argparse +import os +import re +import sys +import urllib.request + +# Use Pyserini in this repo (as opposed to pip install) +sys.path.insert(0, './') + +from pyserini.util import download_url + + +def main(args): + print(args.url) + contents = urllib.request.urlopen(args.url).read().decode('utf-8') + pattern = None + if args.dropbox: + pattern = re.compile('https://www.dropbox.com/[^)]+') + elif args.gitlab: + pattern = re.compile('https://git.uwaterloo.ca/([^)]+).tar.gz') + # See https://git.uwaterloo.ca/jimmylin/anserini-indexes/-/raw/master/README.md + # Tricky pattern to write because some lines might have two GitLab URLs + elif args.vault: + pattern = re.compile('https://vault.cs.uwaterloo.ca/[^)]+') + else: + print('Must specify one of --dropbox, --gitlab, --vault: type of link to check.') + exit(0) + + md5sum_pattern = re.compile('`([a-z0-9]{32})`') + for line in contents.splitlines(): + match = pattern.search(line) + if match: + md5sum_match = md5sum_pattern.search(line) + if md5sum_match: + url = match.group() + if args.vault: + if not url.endswith('/download'): + url = url + '/download' + md5sum = md5sum_match.group(1) + print(f'Downloading and verifying {url}') + destination = download_url(url, '.', md5=md5sum) + print(f'Finished downloading to {destination}, removing...') + os.remove(destination) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument('--url', type=str, metavar='url', required=True, help='URL to check.') + parser.add_argument('--dropbox', action='store_true', default=False, help='Check Dropbox links.') + parser.add_argument('--gitlab', action='store_true', default=False, help='Check UWaterloo GitLab links.') + parser.add_argument('--vault', action='store_true', default=False, help='Check UWaterloo CS Vault links.') + + main(parser.parse_args()) diff --git a/scripts/classifier_prf/cross_validate.py b/scripts/classifier_prf/cross_validate.py new file mode 100644 index 0000000000000000000000000000000000000000..b9fc96c3589ed982c74162934ec036fabeeb839f --- /dev/null +++ b/scripts/classifier_prf/cross_validate.py @@ -0,0 +1,146 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +import pandas as pd + + +def get_file_extension(rm3: bool): + return '_bm25+rm3.txt' if rm3 is True else '_bm25.txt' + + +def get_file_path(run_file, collection, classifier, alpha: str, rm3: bool): + res = f'{run_file}/{collection}/{collection}_{classifier}_A{alpha}' + return res + get_file_extension(rm3) + + +def get_res_file_path(run_file, collection, classifier, alpha: str, rm3: bool): + res = f'{run_file}/scripts/classifier_prf/cv/{collection}/{collection}_{classifier}_A' + alpha + return res + get_file_extension(rm3) + + +def get_trec_eval_cmd(anserini_root: str): + return os.path.join(anserini_root, 'tools/eval/trec_eval.9.0.4/trec_eval') + + +def get_qrels_path(anserini_root: str, collection: str): + return f"{anserini_root}/src/main/resources/topics-and-qrels/qrels.{collection}.txt" + + +def read_topics_alpha_map(anserini_root, collection, run_file, classifier, rm3: bool): + res_paths = [] + + for num in range(0, 11): + alpha = str(num / 10) + file_path = get_file_path(run_file, collection, classifier, alpha, rm3) + cv_folder_path = os.path.join( + run_file, f"scripts/classifier_prf/cv/{collection}") + os.system(f"mkdir -p {cv_folder_path}") + res_filename = get_res_file_path( + run_file, collection, classifier, alpha, rm3) + + res_paths.append(res_filename) + trec_eval_cmd = get_trec_eval_cmd(anserini_root) + qrels_path = get_qrels_path(anserini_root, collection) + cmd = f'{trec_eval_cmd} -q -m map -m P.30 {qrels_path} {file_path} > {res_filename}' + res = os.system(cmd) + if res == 0: + print(file_path + ' run successfully!') + print('save result in ' + res_filename) + + return res_paths + + +def load_in_res(res_paths): + df = pd.read_csv( + res_paths[0], sep='\s+', header=None, + names=['Type', 'topicid', '0.0'], dtype={'0.0': float}) + df.set_index('topicid', inplace=True) + + for num in range(1, 11): + dataset = pd.read_csv( + res_paths[num], sep='\s+', header=None, names=['Type', 'topicid', 'score'], + dtype={'topicid': str, 'score': float}) + df[str(num / 10)] = dataset.score.values + + df = df[df['Type'] == 'map'][:-1] + df = df.drop(['Type'], axis=1) + return df + + +def generate_run_file(folders, df, collection, run_file, classifier, rm3, output_path): + highest_alpha_lst, write_lst = [], [] + + with open(output_path, 'w') as target_file: + for folder in folders: + train_topicids = [str(topic) + for f in folders for topic in f if f != folder and str(topic) in df.index] + train_df = df.loc[train_topicids, :] + train_df.loc['Mean', :] = train_df.mean(axis=0) + highest_alpha = train_df.iloc[-1, :].idxmax(axis=0) + highest_alpha_lst.append(highest_alpha) + + for topic in folder: + alpha_run_file = get_file_path( + run_file, collection, classifier, highest_alpha, rm3) + + with open(alpha_run_file) as fp: + Lines = fp.readlines() + for line in Lines: + if line.startswith(str(topic)): + write_lst.append(line) + + write_lst.sort(key=lambda x: (x.split(" ")[0], int(x.split(" ")[3]))) + target_file.write("".join(write_lst)) + + print(highest_alpha_lst) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Get Best alpha score for corresponding topics') + parser.add_argument('--anserini', metavar='path', required=True, + help='the path to anserini root') + parser.add_argument('--pyserini', metavar='path', required=True, + help='a path to the folder json file') + parser.add_argument('--collection', metavar='collectionsname', required=True, + help='one of the collectionname in robust04,robust05, core17,core18') + parser.add_argument('--run_file', metavar='path', required=True, + help='the path to run files root') + parser.add_argument('--output', metavar='path', required=True, + help='the path to the output file') + parser.add_argument('--classifier', metavar='name', required=True, + help='one of three classifers lr or svm or lr+svm') + parser.add_argument('-rm3', action='store_true', + help='use rm3 ranker') + + args = parser.parse_args() + + res_paths = read_topics_alpha_map( + args.anserini, args.collection, args.run_file, args.classifier, args.rm3) + clean_df = load_in_res(res_paths) + folders_path = os.path.join( + args.pyserini, f'scripts/classifier_prf/folds/{args.collection}.json') + + with open(folders_path) as f: + folders = json.load(f) + + generate_run_file(folders, clean_df, args.collection, + args.run_file, args.classifier, args.rm3, args.output) + + print("Successfully generated a trained runfile in " + args.output) diff --git a/scripts/classifier_prf/folds/core17.json b/scripts/classifier_prf/folds/core17.json new file mode 100644 index 0000000000000000000000000000000000000000..4bbefbe4123a86da1b4fb10872c790384ab81d11 --- /dev/null +++ b/scripts/classifier_prf/folds/core17.json @@ -0,0 +1 @@ +[[426, 408, 354, 399, 310, 363, 393, 442, 433, 690], [445, 379, 355, 321, 422, 394, 350, 330, 345, 620], [356, 435, 400, 375, 439, 614, 404, 341, 427, 378], [325, 336, 372, 344, 419, 436, 353, 626, 423, 367], [362, 646, 677, 307, 416, 443, 414, 397, 389, 347]] \ No newline at end of file diff --git a/scripts/classifier_prf/folds/core18.json b/scripts/classifier_prf/folds/core18.json new file mode 100644 index 0000000000000000000000000000000000000000..521ec5614f4b4f25061bb254622505477cea15d3 --- /dev/null +++ b/scripts/classifier_prf/folds/core18.json @@ -0,0 +1 @@ +[[805, 439, 341, 816, 690, 815, 422, 414, 442, 821], [808, 810, 367, 427, 362, 375, 626, 426, 812, 809], [820, 823, 807, 321, 433, 802, 347, 806, 400, 378], [408, 822, 813, 824, 819, 814, 818, 811, 646, 350], [336, 803, 393, 825, 801, 804, 363, 817, 445, 397]] \ No newline at end of file diff --git a/scripts/classifier_prf/folds/robust04.json b/scripts/classifier_prf/folds/robust04.json new file mode 100644 index 0000000000000000000000000000000000000000..3621d6c2f4b632c751021cfdf466fb8280828948 --- /dev/null +++ b/scripts/classifier_prf/folds/robust04.json @@ -0,0 +1 @@ +[[681, 357, 677, 692, 321, 349, 400, 362, 368, 670, 405, 696, 381, 449, 444, 340, 442, 643, 370, 700, 693, 432, 384, 395, 618, 419, 308, 418, 688, 327, 329, 649, 352, 678, 422, 650, 441, 375, 661, 379, 412, 636, 393, 450, 605, 684, 666, 623, 640, 676], [331, 617, 401, 690, 302, 631, 695, 635, 404, 372, 446, 658, 376, 664, 639, 383, 627, 655, 334, 668, 355, 657, 628, 332, 652, 359, 409, 685, 633, 392, 430, 396, 338, 323, 410, 389, 673, 346, 638, 653, 378, 683, 398, 385, 311, 629, 390, 620, 320, 336], [391, 667, 309, 609, 414, 682, 343, 614, 680, 669, 686, 621, 607, 361, 438, 672, 354, 602, 440, 344, 687, 645, 317, 436, 367, 691, 644, 420, 397, 421, 601, 314, 324, 399, 624, 350, 303, 433, 671, 611, 402, 351, 406, 679, 603, 619, 337, 358, 431, 646], [613, 648, 305, 659, 307, 634, 694, 345, 380, 437, 665, 428, 675, 637, 386, 426, 373, 326, 333, 377, 306, 388, 423, 622, 647, 663, 610, 651, 411, 415, 356, 360, 699, 413, 301, 318, 310, 312, 382, 348, 353, 632, 369, 689, 427, 654, 365, 339, 316, 697], [322, 616, 374, 641, 304, 330, 319, 342, 660, 366, 341, 625, 371, 604, 626, 387, 313, 425, 335, 363, 407, 698, 447, 612, 608, 674, 662, 408, 435, 615, 315, 445, 434, 656, 606, 443, 642, 630, 328, 424, 417, 347, 364, 448, 325, 439, 403, 416, 429, 394]] \ No newline at end of file diff --git a/scripts/classifier_prf/folds/robust05.json b/scripts/classifier_prf/folds/robust05.json new file mode 100644 index 0000000000000000000000000000000000000000..5fd215d9dddf4b9c90f289c610b9da6d9641cd1f --- /dev/null +++ b/scripts/classifier_prf/folds/robust05.json @@ -0,0 +1 @@ +[[622, 426, 393, 658, 639, 347, 363, 378, 638, 383], [404, 362, 689, 427, 397, 416, 651, 336, 625, 435], [648, 448, 389, 394, 310, 372, 307, 443, 344, 330], [436, 439, 408, 375, 401, 374, 322, 419, 341, 367], [650, 433, 399, 353, 345, 354, 314, 303, 409, 325]] \ No newline at end of file diff --git a/scripts/classifier_prf/rank_trec_covid.py b/scripts/classifier_prf/rank_trec_covid.py new file mode 100644 index 0000000000000000000000000000000000000000..73b5ae950808f99207bd6ef498f80b68105259a1 --- /dev/null +++ b/scripts/classifier_prf/rank_trec_covid.py @@ -0,0 +1,315 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os +import json +import sys +sys.path.append('..') +sys.path.append('../pyserini') +import subprocess + +from enum import Enum +from pyserini.vectorizer import TfidfVectorizer +from pyserini.vectorizer import BM25Vectorizer +from sklearn.naive_bayes import MultinomialNB +from sklearn.linear_model import LogisticRegression +from sklearn.svm import SVC +from typing import List +from sklearn import preprocessing +from typing import List, Set + +def normalize(scores): + low = min(scores) + high = max(scores) + width = high - low + + return [(s-low)/width for s in scores] + + +def sort_dual_list(pred, docs): + zipped_lists = zip(pred, docs) + sorted_pairs = sorted(zipped_lists) + + tuples = zip(*sorted_pairs) + pred, docs = [list(tuple) for tuple in tuples] + + pred.reverse() + docs.reverse() + return pred, docs + + +def sort_str_topics_list(topics: List[str]) -> List[str]: + res = sorted([int(t) for t in topics]) + return [str(t) for t in res] + + +def get_topics_from_qrun(path: str) -> Set[str]: + res = set() + with open(path, 'r') as f: + for line in f: + res.add(line.split()[0]) + return sort_str_topics_list(res) + + +def get_lines_by_topic(path, topic, tag): + res = [] + with open(path, 'r') as f: + for line in f: + tokens = line.split() + if tokens[0] != topic: + continue + tokens[-1] = tag + new_line = ' '.join(tokens) + res.append(new_line) + + return res + + +def read_qrels(path: str): + qrels = [] + + with open(path, 'r') as f: + for line in f: + line = line.strip() + tokens = line.split() + topic = tokens[0] + doc_id = tokens[-2] + relevance = int(tokens[-1]) + qrels.append({ + 'topic': topic, + 'doc_id': doc_id, + 'relevance': relevance + }) + + return qrels + + +def get_doc_to_id_from_qrun_by_topic(path: str, topic: str): + res = {} + with open(path, 'r') as f: + for line in f: + tokens = line.strip().split() + t = tokens[0] + if topic != t: + continue + doc_id = tokens[2] + score = float(tokens[-2]) + res[doc_id] = score + + return res + + +def get_docs_from_qrun_by_topic(path: str, topic: str): + x, y = [], [] + with open(path, 'r') as f: + for line in f: + tokens = line.strip().split() + t = tokens[0] + if topic != t: + continue + doc_id = tokens[2] + score = float(tokens[-2]) + x.append(doc_id) + y.append(score) + + return x, y + + +def get_X_Y_from_qrels_by_topic(path: str, topic: str, R: List[int]): + # always include topic 0 + R.append(0) + qrels = [qrel for qrel in read_qrels(path) if qrel['topic'] == topic and qrel['relevance'] in R] + x, y = [], [] + for pack in qrels: + x.append(pack['doc_id']) + label = 0 if pack['relevance'] == 0 else 1 + y.append(label) + + return x, y + + +class SpecterVectorizer: + def __init__(self): + path = "data/specter.csv" + self.vectors = {} + + with open(path, 'r') as f: + for line in f: + tokens = line.strip().split(',') + doc_id = tokens[0] + vector = [float(item) for item in tokens[1:]] + self.vectors[doc_id] = vector + + def get_vectors(self, doc_ids: List[str]): + res = [] + + for doc_id in doc_ids: + if doc_id in self.vectors: + res.append(self.vectors[doc_id]) + else: + print(f'{doc_id} not found') + + return preprocessing.normalize(res) + + +class ClassifierType(Enum): + SVM = 'svm' + LR = 'lr' + NB = 'nb' + + +ClassifierStr = { + ClassifierType.SVM: 'svm', + ClassifierType.LR: 'lr', + ClassifierType.NB: 'nb', +} + + +class VectorizerType(Enum): + TFIDF = 'tfidf' + BM25 = 'bm25' + SPECTER = 'specter' + + +VectorizerStr = { + VectorizerType.TFIDF: 'tfidf', + VectorizerType.BM25: 'bm25', + VectorizerType.SPECTER: 'specter', +} + + +def evaluate(qrels_path: str, run_path: str, options: str = ''): + curdir = os.getcwd() + if curdir.endswith('clprf'): + anserini_root = '../../../anserini' + else: + anserini_root = '../anserini' + prefix = f"{anserini_root}/tools/eval/trec_eval.9.0.4/trec_eval -c -M1000 -m all_trec {qrels_path}" + cmd1 = f"{prefix} {run_path} {options} | grep 'ndcg_cut_20 '" + cmd2 = f"{prefix} {run_path} {options} | grep 'map '" + ndcg_score = str(subprocess.check_output(cmd1, shell=True)).split('\\t')[-1].split('\\n')[0] + map_score = str(subprocess.check_output(cmd2, shell=True)).split('\\t')[-1].split('\\n')[0] + print(str(map_score),str(ndcg_score)) + return str(map_score),str(ndcg_score) + + +def rank(new_qrels: str, base: str,tmp_base:str, qrels_path: str, lucene_index_path: str, R: List[int], score_path: str, alpha: float, clf_type: ClassifierType, vec_type: VectorizerType, tag: str): + # build output path + base_str = base.split('/')[-1] + R_str = ''.join([str(i) for i in R]) + curdir = os.getcwd() + if curdir.endswith('integrations'): + output_path = f'{tmp_base}/runs/{base_str}.{ClassifierStr[clf_type]}.{VectorizerStr[vec_type]}.R{R_str}.A{alpha}.txt' + else: + output_path = f'integrations/{tmp_base}/runs/{base_str}.{ClassifierStr[clf_type]}.{VectorizerStr[vec_type]}.R{R_str}.A{alpha}.txt' + print(f'Output -> {output_path}') + os.system('mkdir -p runs') + + vectorizer = None + if vec_type == VectorizerType.TFIDF: + vectorizer = TfidfVectorizer(lucene_index_path, min_df=5) + elif vec_type == VectorizerType.SPECTER: + base += '.specter' + qrels_path += '.specter' + vectorizer = SpecterVectorizer() + elif vec_type == VectorizerType.BM25: + vectorizer = BM25Vectorizer(lucene_index_path, min_df=5) + else: + print('invalid vectorizer') + exit() + + f = open(output_path, 'w+') + + skipped_topics = set() + topics = get_topics_from_qrun(base) + for topic in topics: + train_docs, train_labels = get_X_Y_from_qrels_by_topic(qrels_path, topic, R) + if len(train_docs) == 0: + print(f'[topic][{topic}] skipped') + skipped_topics.add(topic) + continue + + print(f'[topic][{topic}] eligible train docs {len(train_docs)}') + + clf = None + if clf_type == ClassifierType.NB: + clf = MultinomialNB() + elif clf_type == ClassifierType.LR: + clf = LogisticRegression() + elif clf_type == ClassifierType.SVM: + clf = SVC(kernel='linear', probability=True) + else: + print('ClassifierType not supported') + exit() + + train_vectors = vectorizer.get_vectors(train_docs) + clf.fit(train_vectors, train_labels) + + test_docs, base_scores = get_docs_from_qrun_by_topic(base, topic) + print(f'[topic][{topic}] eligible test docs {len(test_docs)}') + test_vectors = vectorizer.get_vectors(test_docs) + + rank_scores = clf.predict_proba(test_vectors) + rank_scores = [row[1] for row in rank_scores] + + rank_scores = normalize(rank_scores) + base_scores = normalize(base_scores) + + preds = [a * alpha + b * (1-alpha) for a, b in zip(rank_scores, base_scores)] + preds, docs = sort_dual_list(preds, test_docs) + + for index, (score, doc_id) in enumerate(zip(preds, docs)): + rank = index + 1 + f.write(f'{topic} Q0 {doc_id} {rank} {score} {tag}\n') + + for topic in sort_str_topics_list(list(skipped_topics)): + lines = get_lines_by_topic(base, topic, tag) + print(f'Copying over skipped topic {topic} with {len(lines)} lines') + for line in lines: + f.write(f'{line}\n') + + f.close() + map_score,ndcg_score = evaluate(new_qrels, output_path) + with open(score_path, 'w') as outfile: + json.dump({'map':map_score,'ndcg':ndcg_score}, outfile) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='use tfidf vectorizer on cord-19 dataset with ccrf technique') + parser.add_argument('-tag', type=str, default="interpolation", + metavar="tag_name", help='tag name for resulting Qrun') + parser.add_argument('-new_qrels', type=str, default="data/qrels-rnd1+2+3+4.txt", + metavar="path_to_new_qrels", help='path to new_qrels file') + parser.add_argument('-base', type=str, default="data/covidex.t5.final.txt", + metavar="path_to_base_run", help='path to base run') + parser.add_argument('-tmp_base', type=str, default="tmp101}", + metavar="tmp file folder name", help='"tmp file folder name') + parser.add_argument('-qrels', type=str, default="data/qrels-rnd1+2.txt", + metavar="path_to_qrels", help='path to qrels file') + parser.add_argument('-index', type=str, default="data/lucene-index-cord19-abstract-2020-05-19", + metavar="path_to_lucene_index", help='path to lucene index folder') + parser.add_argument('-output', type=str, default="data/output.json", + metavar="path_to_base_run", help='the path to map and ndcg scores') + parser.add_argument('-alpha', type=float, required=True, help='alpha value for interpolation') + parser.add_argument('-clf', type=ClassifierType, required=True, help='which classifier to use') + parser.add_argument('-vectorizer', type=VectorizerType, required=True, help='which vectorizer to use') + args = parser.parse_args() + + R = [1, 2] + print('Using base run:', args.base) + rank(args.new_qrels, args.base, args.tmp_base, args.qrels, args.index, R, args.output, args.alpha, args.clf, args.vectorizer, args.tag) diff --git a/scripts/compute_doc_length_histogram.py b/scripts/compute_doc_length_histogram.py new file mode 100644 index 0000000000000000000000000000000000000000..477917a37a6c6a62a0f1b4991f1e5b36b1680361 --- /dev/null +++ b/scripts/compute_doc_length_histogram.py @@ -0,0 +1,87 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +# Starting point for writing this script +# https://stackoverflow.com/questions/13129618/histogram-values-of-a-pandas-series + +import argparse +import matplotlib.pyplot as plt +import numpy as np +import sys + +# Use Pyserini in this repo (as opposed to pip install) +sys.path.insert(0, './') + +from pyserini.search.lucene import LuceneSearcher +from tqdm import tqdm + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("--index", type=str, help='Index Location.', required=True) + parser.add_argument("--name", type=str, help='Name of collection.') + parser.add_argument("--max", type=int, help='Max number of documents to analyze.') + parser.add_argument("--bin-min", type=int, help='Minimum bin.', default=0) + parser.add_argument("--bin-max", type=int, help='Maximum bin.', default=2000) + parser.add_argument("--bin-width", type=int, help='Width of each bin.', default=50) + parser.add_argument("--plot", type=str, help='Output file of histogram PDF.') + parser.add_argument("--output", type=str, help='Prefix of raw count and bin data file.') + + args = parser.parse_args() + + plt.switch_backend('agg') + + searcher = LuceneSearcher(args.index) + + # Determine how many documents to iterate over: + if args.max: + num_docs = args.max if args.max < searcher.num_docs else searcher.num_docs + else: + num_docs = searcher.num_docs + + print(f'Computing lengths for {num_docs} from {args.index}') + doclengths = [] + for i in tqdm(range(num_docs)): + doclengths.append(len(searcher.doc(i).raw().split())) + + doclengths = np.asarray(doclengths) + + # Compute bins: + bins = np.arange(args.bin_min, args.bin_max + args.bin_width, args.bin_width) + + # If user wants raw output of counts: + if args.output: + counts, bins = np.histogram(doclengths, bins=bins) + np.savetxt(f'{args.output}-counts.txt', counts, fmt="%s") + np.savetxt(f'{args.output}-bins.txt', counts, fmt="%s") + + # If user wants plot: + if args.plot: + _ = plt.hist(doclengths, bins=bins) + title = f'Document Lengths: {args.name}' if args.name else 'Document Lengths' + plt.title(title) + + plt.xlabel('Length') + plt.ylabel('Count') + + plt.savefig(args.plot, bbox_inches='tight', format='pdf') + + # Print summary statistics + print(f'\n# Summary statistics') + print(f'min: {np.amin(doclengths)}') + print(f'max: {np.amax(doclengths)}') + print(f'median: {np.median(doclengths)}') + print(f'mean: {np.mean(doclengths)}') diff --git a/scripts/cord19/extract_citation_graph.py b/scripts/cord19/extract_citation_graph.py new file mode 100644 index 0000000000000000000000000000000000000000..4757996d3752de2f11ecc862ce5038fa70f795a1 --- /dev/null +++ b/scripts/cord19/extract_citation_graph.py @@ -0,0 +1,69 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os +import csv + +import pyserini.collection + + +def escape_title(title): + # Neo4j CSV loader is sensitive to double qoutes + return title.replace("\"", "\\'").replace("\\", "") + + +def main(path): + collection = pyserini.collection.Collection('Cord19AbstractCollection', path) + articles = collection.__next__() + + with open("articles.csv", 'w') as article_csv, open("edges.csv", 'w') as edge_csv: + article_csv = csv.writer(article_csv) + edge_csv = csv.writer(edge_csv) + article_csv.writerow(["cord_uid", "title", "pmcid"]) + edge_csv.writerow(["cord_uid", "target_title", "doi"]) + + prev_titles = set() + prev_cord_uid = set() + for d in articles: + article = pyserini.collection.Cord19Article(d.raw) + title = article.title() + cord_uid = article.cord_uid() + if article.is_full_text() and title and title not in prev_titles \ + and cord_uid not in prev_cord_uid: + article_data = [article.cord_uid(), escape_title(title), + article.json["paper_id"]] + article_csv.writerow(article_data) + prev_titles.add(title) + prev_cord_uid.add(cord_uid) + + bib_entries = article.bib_entries() + # Create edge between article and each cited title + for bib_ref in bib_entries: + ref = bib_entries[bib_ref] + if ref['title']: + doi = ref['other_ids'].get('DOI') + doi = None if doi == [] or doi is None else doi[0] + edge = [article.cord_uid(), escape_title(ref['title']), doi] + edge_csv.writerow(edge) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Load CORD-19 citation data into Neo4j') + parser.add_argument('--path', type=str, required=True, + help='The path to CORD-19 collection') + args = parser.parse_args() + main(args.path) diff --git a/scripts/cord19/extract_df.py b/scripts/cord19/extract_df.py new file mode 100644 index 0000000000000000000000000000000000000000..5deac2146c88783a7d9ae02ce51b4ef498c44e86 --- /dev/null +++ b/scripts/cord19/extract_df.py @@ -0,0 +1,94 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import pandas as pd + +from pyserini.collection import Collection, Cord19Article + + +def load(old_path, new_path): + empty_date = dict() + normal_old_dates = dict() + normal_new_dates = dict() + + cnt = 0 + collection_old = Collection('Cord19AbstractCollection', old_path) + collection_new = Collection('Cord19AbstractCollection', new_path) + articles = collection_old.__next__() + + # iterate through raw old collection + for (i, d) in enumerate(articles): + article = Cord19Article(d.raw) + metadata = article.metadata() + date = metadata['publish_time'] + if len(date) == 0: + empty_date.setdefault(article.cord_uid(), []) + empty_date[article.cord_uid()].append(article.metadata()["doi"]) + empty_date[article.cord_uid()].append(len(article.title())) + else: + normal_old_dates.setdefault(article.cord_uid(), []) + normal_old_dates[article.cord_uid()].append(article.metadata()["doi"]) + normal_old_dates[article.cord_uid()].append(len(article.title())) + normal_old_dates[article.cord_uid()].append(date) + cnt = cnt + 1 + if cnt % 1000 == 0: + print(f'{cnt} articles read... in old data') + + cnt = 0 + articles = collection_new.__next__() + # iterate through raw new collection + for (i, d) in enumerate(articles): + article = Cord19Article(d.raw) + metadata = article.metadata() + date = metadata['publish_time'] + if len(date) != 0: + normal_new_dates.setdefault(article.cord_uid(), []) + normal_new_dates[article.cord_uid()].append(article.metadata()["doi"]) + normal_new_dates[article.cord_uid()].append(len(article.title())) + normal_new_dates[article.cord_uid()].append(date) + cnt = cnt + 1 + if cnt % 1000 == 0: + print(f'{cnt} articles read... in new data') + + #create df for old and new collection and groupby publish_date column, record the size of each group in column counts + normal_old_dates_df = pd.DataFrame([([k] + v) for k, v in normal_old_dates.items()]) + normal_old_dates_df = normal_old_dates_df.loc[:, [0, 1, 2, 3]] + normal_old_dates_df.columns = ['docid', 'DOI', 'title', 'publish_date'] + df1 = pd.DataFrame(normal_old_dates_df) + date_df = df1.sort_values('publish_date').groupby('publish_date') + date_df_counts = date_df.size().reset_index(name='counts') + + normal_new_dates_df = pd.DataFrame([([k] + v) for k, v in normal_new_dates.items()]) + normal_new_dates_df = normal_new_dates_df.loc[:, [0, 1, 2, 3]] + normal_new_dates_df.columns = ['docid', 'DOI', 'title', 'publish_date'] + df2 = pd.DataFrame(normal_new_dates_df) + date_new_df = df2.sort_values('publish_date').groupby('publish_date') + # date_df_counts has two columns + date_new_df_counts = date_new_df.size().reset_index(name='counts') + + return date_df_counts, date_new_df_counts + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Extract Dataframes of CORD-19') + parser.add_argument('--old_path', type=str, required=True, help='Path to old collection') + parser.add_argument('--new_path', type=str, required=True, help='Path to new collection') + args = parser.parse_args() + date_df_counts, date_new_df_counts = load(args.old_path, args.new_path) + date_df_counts.to_csv('date_df_counts.csv', index=False) + date_new_df_counts.to_csv('date_new_df_counts.csv', index=False) + print(f'saved dfs to date_df_counts.csv and date_new_df_counts.csv') diff --git a/scripts/cord19/find_cord19_length_outlier.py b/scripts/cord19/find_cord19_length_outlier.py new file mode 100644 index 0000000000000000000000000000000000000000..7502c344759be3b2012e9466f1742a0c756c511f --- /dev/null +++ b/scripts/cord19/find_cord19_length_outlier.py @@ -0,0 +1,97 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import sys +import argparse +import pandas as pd + +sys.path.insert(0, './') + +from pyserini.collection import Collection, Cord19Article + + +def main(path, coef, top): + documents_with_text = dict() + documents_without_text = dict() + documents_zero_abs = dict() + documents_empty_body = dict() + + cnt = 0 + collection = Collection('Cord19AbstractCollection', path) + articles = collection.__next__() + + # iterate through raw collection + for (i, d) in enumerate(articles): + article = Cord19Article(d.raw) + # documents with empty abstract + if len(article.abstract()) == 0: + documents_zero_abs.setdefault(article.cord_uid(), []) + documents_zero_abs[article.cord_uid()].append(article.metadata()["doi"]) + else: + # document does not have text + if not article.is_full_text(): + documents_without_text.setdefault(article.cord_uid(), []) + documents_without_text[article.cord_uid()].append(article.metadata()["doi"]) + documents_without_text[article.cord_uid()].append(len(article.title())) + documents_without_text[article.cord_uid()].append(len(article.abstract())) + # document whose text body is empty + elif len(article.body()) == 0: + documents_empty_body.setdefault(article.cord_uid(), []) + documents_empty_body[article.cord_uid()].append(article.metadata()["doi"]) + # normal document and we save for analysis later + else: + num_paragraph = len(article.body()) + title_len = len(article.title()) * num_paragraph + abstract_len = len(article.abstract()) * num_paragraph + documents_with_text.setdefault(article.cord_uid(), []) + documents_with_text[article.cord_uid()].append(article.metadata()["doi"]) + documents_with_text[article.cord_uid()].append(title_len) + documents_with_text[article.cord_uid()].append(abstract_len) + documents_with_text[article.cord_uid()].append(num_paragraph) + + cnt = cnt + 1 + if cnt % 1000 == 0: + print(f'{cnt} articles read...') + + documents_with_text_df = pd.DataFrame([([k] + v) for k, v in documents_with_text.items()]) + documents_with_text_df = documents_with_text_df.loc[:, [0, 1, 2, 3, 4]] + documents_with_text_df.columns = ['docid', 'DOI', 'title', 'abstract', 'num_paragraph'] + + # using quantile to find outliers return a df + q1 = documents_with_text_df['abstract'].quantile(0.25) + q3 = documents_with_text_df['abstract'].quantile(0.75) + iqr = q3 - q1 + + # We only consider extreme big value, since small value will not cause file explosion; + # Could choose other coefficient to find more "extreme" outliers. + filter = documents_with_text_df['abstract'] >= q3 + coef * iqr + + # abstract outlier + outlier = documents_with_text_df.loc[filter] + sorted = outlier.sort_values(by=['abstract'], ascending=False) + tops = sorted.head(top) + tops.to_csv('length_outlier.csv') + + print(f'found {len(documents_with_text_df.index)} outliers and saved top {top} into file length_outlier.csv') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Identifies outliers in CORD-19') + parser.add_argument('--path', type=str, required=True, help='the path to collection') + parser.add_argument('--coefficient', type=int, default=1.5, help='outlier coefficient') + parser.add_argument('--top', type=int, default=10, help='number of top outliers') + args = parser.parse_args() + main(args.path, args.coefficient, args.top) diff --git a/scripts/cord19/temporal_analysis.py b/scripts/cord19/temporal_analysis.py new file mode 100644 index 0000000000000000000000000000000000000000..7f0fac758dd74f31334e1b7d3c77fd6ae15e0a05 --- /dev/null +++ b/scripts/cord19/temporal_analysis.py @@ -0,0 +1,98 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import pandas as pd +import matplotlib.pyplot as plt + +from pyserini.collection import Collection, Cord19Article + + +def load(path): + empty_date = dict() + normal_dates = dict() + + cnt = 0 + collection = Collection('Cord19AbstractCollection', path) + articles = collection.__next__() + + #iterate through raw collection + for (i, d) in enumerate(articles): + article = Cord19Article(d.raw) + # documents with empty abstract + metadata = article.metadata() + date = metadata['publish_time'] + if len(date) == 0: + empty_date.setdefault(article.cord_uid(), []) + empty_date[article.cord_uid()].append(article.metadata()["doi"]) + empty_date[article.cord_uid()].append(len(article.title())) + else: + normal_dates.setdefault(article.cord_uid(), []) + normal_dates[article.cord_uid()].append(article.metadata()["doi"]) + normal_dates[article.cord_uid()].append(len(article.title())) + normal_dates[article.cord_uid()].append(date) + cnt = cnt + 1 + if cnt % 1000 == 0: + print(f'{cnt} articles read...') + #this df has 4 columns: docid, DOI, title, publish_date + normal_dates_df = pd.DataFrame([([k] + v) for k, v in normal_dates.items()]) + normal_dates_df = normal_dates_df.loc[:, [0, 1, 2, 3]] + normal_dates_df.columns = ['docid', 'DOI', 'title', 'publish_date'] + + df1 = pd.DataFrame(normal_dates_df) + date_df = df1.sort_values('publish_date').groupby('publish_date') + #date_df_counts has two columns: publish_date, counts + date_df_counts = date_df.size().reset_index(name='counts') + #all dfs below have two columns: publish_date, counts (they are massaged df based on date_df_counts) + #two dfs based on year unit + only_year_filter = date_df_counts['publish_date'].str.len() == 4 + with_date_filter = date_df_counts['publish_date'].str.len() > 4 + only_year = date_df_counts.loc[only_year_filter].loc[date_df_counts['publish_date'] >= '2003'] #before 2003 are all under 2000 + exact_year_total = date_df_counts.groupby(date_df_counts['publish_date'].str[:4])['counts'].agg('sum').reset_index(name='counts') + exact_year_total = exact_year_total.loc[exact_year_total['publish_date'] >= '2003'] + + #on monthly basis + exact_date = date_df_counts.loc[with_date_filter].groupby(date_df_counts['publish_date'].str[:7])['counts'].agg('sum').reset_index(name='counts') + before_2003 = exact_date.loc[exact_date['publish_date'] <= '2002-12'] + between_03_19 = exact_date.loc[exact_date['publish_date'] > '2002-12'].loc[exact_date['publish_date'] <= '2019-12'] + after_19 = exact_date.loc[exact_date['publish_date'] >= '2019-12'] + + #weekly basis after 2019-12 + weekly_update_19 = date_df_counts.loc[with_date_filter].loc[date_df_counts['publish_date'] >= '2019-12'].groupby(date_df_counts['publish_date'])['counts'].agg('sum').reset_index(name='counts') + weekly_update_19['publish_date'] = pd.to_datetime(weekly_update_19['publish_date']) + weekly_update_19 = weekly_update_19.groupby(pd.Grouper(key='publish_date', freq='W'))['counts'].agg('sum').reset_index(name='counts') + return only_year, exact_year_total, before_2003, between_03_19, after_19, weekly_update_19 + + +def plot_bars(only_year, exact_year_total, before_2003, between_03_19, after_19, weekly_update_19): + only_year.plot.bar(x='publish_date', y='counts', title='number of publishes only has year') + exact_year_total.plot.bar(x='publish_date', y='counts', title='number of publishes for all in year units') + before_2003.plot.bar(x='publish_date', y='counts', title='publish_date before 2003', figsize=(30, 10), fontsize=6) + between_03_19.plot.bar(x='publish_date', y='counts', title='between_03_19', figsize=(30, 10), fontsize=6) + after_19.plot.bar(x='publish_date', y='counts', title='after_19', figsize=(20, 10), fontsize=8) + graph_weekly_19 = weekly_update_19.loc[weekly_update_19['publish_date'] < '2020-08-09'] # omit after 2020-08-09 to make graph readable + graph_weekly_19.plot.bar(x='publish_date', y='counts', title='after 2019-12 weekly growth', figsize=(20, 10)) + plt.savefig('bar_plots.pdf') + print(f'draw 6 bar plots for documents based on their publish_dates and saved into file bar_plots.pdf') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Return bar charts of temporal analysis on CORD-19') + parser.add_argument('--path', type=str, required=True, help='Path to input collection') + args = parser.parse_args() + only_year, exact_year_total, before_2003, between_03_19, after_19, weekly_update_19 = load(args.path) + plot_bars(only_year, exact_year_total, before_2003, between_03_19, after_19, weekly_update_19) + diff --git a/scripts/deepimpact/brute-force.py b/scripts/deepimpact/brute-force.py new file mode 100644 index 0000000000000000000000000000000000000000..f9a777cc0e12195f5e67f018d3bf8ded94cb400d --- /dev/null +++ b/scripts/deepimpact/brute-force.py @@ -0,0 +1,99 @@ +import argparse +import json +import os + +from scipy.sparse import csr_matrix +from tqdm import tqdm +import numpy as np +from multiprocessing import Pool, Manager + + +def token_dict_to_sparse_vector(token_dict, token2id): + matrix_row, matrix_col, matrix_data = [], [], [] + tokens = token_dict.keys() + col = [] + data = [] + for tok in tokens: + if tok in token2id: + col.append(token2id[tok]) + data.append(token_dict[tok]) + matrix_row.extend([0] * len(col)) + matrix_col.extend(col) + matrix_data.extend(data) + vector = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(1, len(token2id))) + return vector + + +parser = argparse.ArgumentParser() +parser.add_argument('--corpus', type=str, help='path to corpus with vectors', required=True) +parser.add_argument('--topics', type=str, help='path to topics with vectors', required=True) +parser.add_argument('--tokens', type=str, help='path to token list', required=True) +parser.add_argument('--run', type=str, help='path to run file', required=True) +parser.add_argument('--threads', type=int, help='threads for hnsw', required=False, default=12) + +args = parser.parse_args() + +token2id = {} +with open(args.tokens) as tok_f: + for idx, line in enumerate(tok_f): + tok = line.rstrip() + token2id[tok] = idx + +corpus = [] +for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json') or file.endswith('jsonl'): + print(f'Loading {file}') + with open(file, 'r') as f: + for idx, line in enumerate(tqdm(f.readlines())): + info = json.loads(line) + corpus.append(info) + +ids = [] +vectors = [] +matrix_row, matrix_col, matrix_data = [], [], [] +for i, d in enumerate(tqdm(corpus)): + weight_dict = d['vector'] + tokens = weight_dict.keys() + col = [token2id[tok] for tok in tokens] + data = weight_dict.values() + matrix_row.extend([i] * len(weight_dict)) + matrix_col.extend(col) + matrix_data.extend(data) + ids.append(d['id']) +vectors = csr_matrix((matrix_data, (matrix_row, matrix_col)), shape=(len(corpus), len(token2id))) + +topic_ids = [] +topic_vectors = [] +with open(args.topics) as topic_f: + for line in topic_f: + info = json.loads(line) + topic_ids.append(info['id']) + topic_vectors.append(token_dict_to_sparse_vector(info['vector'], token2id)) + +vectors_T = vectors.T + +manager = Manager() +results = manager.dict() + + +def run_search(idx): + global results + qid = topic_ids[idx] + t_vec = topic_vectors[idx] + scores = np.array(t_vec.dot(vectors_T).todense())[0] + top_idx = sorted(range(len(scores)), key=lambda x: scores[x], reverse=True)[:1000] + result = [(ids[x], scores[x]) for x in top_idx] + results[qid] = result + + +with Pool(args.threads) as p: + for _ in tqdm(p.imap_unordered(run_search, list(range(len(topic_ids)))), total=len(topic_ids)): + pass + +with open(args.run, 'w') as f: + for qid in results: + for idx, item in enumerate(results[qid]): + did = item[0] + score = item[1] + f.write(f'{qid} Q0 {did} {idx+1} {score} bf\n') diff --git a/scripts/distilbert_kd/encode_corpus_msmarco_passage.py b/scripts/distilbert_kd/encode_corpus_msmarco_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..cd8af22d2e6205639e8bb50c4f158d6bb33e072d --- /dev/null +++ b/scripts/distilbert_kd/encode_corpus_msmarco_passage.py @@ -0,0 +1,79 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os + +import faiss +import numpy as np +from tqdm import tqdm +from transformers import AutoTokenizer, AutoModel + + +def encode_passage(texts, tokenizer, model, device='cuda:0'): + max_length = 512 # hardcode for now + inputs = tokenizer( + texts, + max_length=max_length, + padding='longest', + truncation=True, + add_special_tokens=True, + return_tensors='pt' + ) + inputs.to(device) + embeddings = model(**inputs)[0][:, 0, :].detach().cpu().numpy() + return embeddings + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--batch', type=int, help='batch size', default=8) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + tokenizer = AutoTokenizer.from_pretrained(args.encoder) + model = AutoModel.from_pretrained(args.encoder) + model.to(args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + texts = [] + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json') or file.endswith('jsonl'): + print(f'Loading {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + text = info['contents'].strip().replace('\n', ' ') + id_file.write(f'{docid}\n') + texts.append(text.lower()) + for idx in tqdm(range(0, len(texts), args.batch)): + text_batch = texts[idx: idx+args.batch] + embeddings = encode_passage(text_batch, tokenizer, model, args.device) + index.add(np.array(embeddings)) + faiss.write_index(index, os.path.join(args.index, 'index')) diff --git a/scripts/dkrr/convert_dkrr_embeddings_to_faiss.py b/scripts/dkrr/convert_dkrr_embeddings_to_faiss.py new file mode 100644 index 0000000000000000000000000000000000000000..fb55a9fb626e0867c06606154a705fc5f668fe67 --- /dev/null +++ b/scripts/dkrr/convert_dkrr_embeddings_to_faiss.py @@ -0,0 +1,35 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import faiss +import pickle +import argparse +import numpy as np + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--embeddings', type=str, required=True, help="Path to embeddings file from generate_passage_embeddings.py from dkrr repo") + parser.add_argument('--output', type=str, help='Path to store faiss IndexFlatIP', required=True) + args = parser.parse_args() + + with open(args.embeddings, 'rb') as embeddings_file: + ids, embeddings = pickle.load(embeddings_file) + embeddings = np.array(embeddings, dtype=np.float32) + index = faiss.IndexFlatIP(embeddings.shape[1]) + index.add(embeddings) + faiss.write_index(index, args.output) + + diff --git a/scripts/dkrr/convert_dkrr_format_to_topic_file.py b/scripts/dkrr/convert_dkrr_format_to_topic_file.py new file mode 100644 index 0000000000000000000000000000000000000000..0172b5cb89336fc79f84631eaee2a678501ab1cb --- /dev/null +++ b/scripts/dkrr/convert_dkrr_format_to_topic_file.py @@ -0,0 +1,46 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json + + +def load_data(data_path): + with open(data_path, 'r') as fin: + data = json.load(fin) + examples = [] + for k, example in enumerate(data): + if not 'id' in example: + example['id'] = k + + example['answers'] = list(map(lambda answer: answer.replace('\xa0', ' ').replace('"','""'), example['answers'])) + examples.append(example) + return examples + + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--input', type=str, metavar='path', + help="Path to data json file") + parser.add_argument('--output', type=str, metavar='path', + help="Path to topic json file") + args = parser.parse_args() + + topic = {} + with open(args.output, 'w') as fout: + for idx, example in enumerate(load_data(args.input)): + fout.write(f"{example['question']}\t{example['answers']}\n") diff --git a/scripts/dkrr/encode_queries.py b/scripts/dkrr/encode_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..524cc50995e31320f0a360c43594ae7c1ccc236a --- /dev/null +++ b/scripts/dkrr/encode_queries.py @@ -0,0 +1,73 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + +import pandas as pd + +from tqdm import tqdm +from pyserini.query_iterator import get_query_iterator, TopicsFormat +from transformers import BertModel, BertTokenizerFast +import torch + +class DkrrDprQueryEncoder(): + + def __init__(self, encoder: str = None, device: str = 'cpu', prefix: str = "question:"): + self.device = device + self.model = BertModel.from_pretrained(encoder) + self.model.to(self.device) + self.tokenizer = BertTokenizerFast.from_pretrained("bert-base-uncased") + self.prefix = prefix + + @staticmethod + def _mean_pooling(model_output, attention_mask): + model_output = model_output[0].masked_fill(1 - attention_mask[:, :, None], 0.) + model_output = torch.sum(model_output, dim=1) / torch.clamp(torch.sum(attention_mask, dim=1), min=1e-9)[:, None] + return model_output.flatten() + + def encode(self, query: str): + if self.prefix: + query = f'{self.prefix} {query}' + inputs = self.tokenizer(query, return_tensors='pt', max_length=40, padding="max_length") + inputs.to(self.device) + outputs = self.model(input_ids=inputs["input_ids"], + attention_mask=inputs["attention_mask"]) + embeddings = self._mean_pooling(outputs, inputs['attention_mask']).detach().cpu().numpy() + return embeddings.flatten() + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--topics', type=str, metavar='topic_name', required=True, + help="Name of topics.") + parser.add_argument('--encoder', type=str, help='encoder name or path', + default='facebook/dpr-question_encoder-multiset-base', required=False) + parser.add_argument('--output', type=str, help='path to store query embeddings', required=True) + parser.add_argument('--device', type=str, + help='device cpu or cuda [cuda:0, cuda:1...]', default='cpu', required=False) + args = parser.parse_args() + + query_iterator = get_query_iterator(args.topics, TopicsFormat(TopicsFormat.DEFAULT.value)) + topics = query_iterator.topics + + encoder = DkrrDprQueryEncoder(args.encoder, args.device) + + embeddings = {'id': [], 'text': [], 'embedding': []} + for index, (topic_id, text) in enumerate(tqdm(query_iterator, total=len(topics.keys()))): + embeddings['id'].append(topic_id) + embeddings['text'].append(text) + embeddings['embedding'].append(encoder.encode(text)) + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(args.output) diff --git a/scripts/dpr/convert_qas_csv_to_topic_json.py b/scripts/dpr/convert_qas_csv_to_topic_json.py new file mode 100644 index 0000000000000000000000000000000000000000..60cbd9078bb3d0ababd5f458541ee83b3984261f --- /dev/null +++ b/scripts/dpr/convert_qas_csv_to_topic_json.py @@ -0,0 +1,43 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import csv +import json + + +def parse_qa_csv_file(location): + with open(location) as file: + reader = csv.reader(file, delimiter='\t') + for row in reader: + question = row[0] + answers = eval(row[1]) + yield question, answers + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--input', type=str, metavar='path', + help="Path to question answers csv file") + parser.add_argument('--output', type=str, metavar='path', + help="Path to topic json file") + args = parser.parse_args() + + topic = {} + for idx, (question, answers) in enumerate(parse_qa_csv_file(args.input)): + topic[str(idx)] = {'title': question, 'answers': answers} + + json.dump(topic, open(args.output, 'w'), indent=4) diff --git a/scripts/dpr/encode_queries.py b/scripts/dpr/encode_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..635a6877b7a50d54727c2a2504ec4dde6576ec00 --- /dev/null +++ b/scripts/dpr/encode_queries.py @@ -0,0 +1,79 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import csv +import json + +import pandas as pd +from tqdm import tqdm +from transformers import DPRQuestionEncoder, DPRQuestionEncoderTokenizer + + +def parse_qa_csv_file(location): + with open(location) as file: + reader = csv.reader(file, delimiter='\t') + for row in reader: + question = row[0] + answers = eval(row[1]) + yield question, answers + + +def parse_qa_json_file(location): + with open(location) as file: + for line in file: + qa = json.loads(line) + question = qa['question'] + answers = qa['answer'] + yield question, answers + + +def encode_query(text, tokenizer, model, device='cpu'): + input_ids = tokenizer(text, return_tensors='pt') + input_ids.to(device) + embeddings = model(input_ids["input_ids"]).pooler_output.detach().cpu().numpy() + return embeddings.flatten() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', + default='facebook/dpr-question_encoder-multiset-base', required=False) + parser.add_argument('--input', type=str, help='qas file, json file by default', required=True) + parser.add_argument('--format', type=str, help='qas file format', default='json', required=False) + parser.add_argument('--output', type=str, help='path to store query embeddings', required=True) + parser.add_argument('--device', type=str, + help='device cpu or cuda [cuda:0, cuda:1...]', default='cpu', required=False) + args = parser.parse_args() + + tokenizer = DPRQuestionEncoderTokenizer.from_pretrained(args.encoder) + model = DPRQuestionEncoder.from_pretrained(args.encoder) + model.to(args.device) + + embeddings = {'id': [], 'text': [], 'embedding': []} + qa_parser = None + if args.format == 'csv': + qa_parser = parse_qa_csv_file + elif args.format == 'json': + qa_parser = parse_qa_json_file + if qa_parser is None: + print(f'No QA parser defined for file format: {args.format}, or format not match') + for qid, (question, answers) in enumerate(tqdm(list(qa_parser(args.input)))): + embeddings['id'].append(qid) + embeddings['text'].append(question) + embeddings['embedding'].append(encode_query(question, tokenizer, model, args.device)) + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(args.output) diff --git a/scripts/dpr/interpolate_runs.py b/scripts/dpr/interpolate_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..a6d8807666cac606c070b2a0ae9bcbc96570ce25 --- /dev/null +++ b/scripts/dpr/interpolate_runs.py @@ -0,0 +1,84 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os + +import numpy as np +from tqdm import tqdm + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Interpolate runs') + parser.add_argument('--run1', required=True, help='retrieval run1') + parser.add_argument('--run2', required=True, help='retrieval run2') + parser.add_argument('--start-weight', type=float, required=True, help='start hybrid alpha') + parser.add_argument('--end-weight', type=float, required=True, help='end hybrid alpha') + parser.add_argument('--step', type=float, required=True, help='changes of alpha per step') + parser.add_argument('--output-dir', required=True, help='hybrid result') + args = parser.parse_args() + + if not os.path.exists(args.output_dir): + os.makedirs(args.output_dir) + + for alpha in np.arange(args.start_weight, args.end_weight, args.step): + run1_result = json.load(open(args.run1)) + run2_result = json.load(open(args.run2)) + hybrid_result = {} + for key in tqdm(list(run1_result.keys())): + question = run1_result[key]['question'] + answers = run1_result[key]['answers'] + run2_contexts = run2_result[key]['contexts'] + run1_contexts = run1_result[key]['contexts'] + run1_hits = {hit['docid']: float(hit['score']) for hit in run1_contexts} + run2_hits = {hit['docid']: float(hit['score']) for hit in run2_contexts} + hybrid_scores = {} + run1_scores = {} + run2_scores = {} + min_run1_score = min(run1_hits.values()) + min_run2_score = min(run2_hits.values()) + for doc in set(run1_hits.keys()) | set(run2_hits.keys()): + if doc not in run1_hits: + score = alpha * run2_hits[doc] + min_run1_score + run2_scores[doc] = run2_hits[doc] + run1_scores[doc] = -1 + elif doc not in run2_hits: + score = alpha * min_run2_score + run1_hits[doc] + run2_scores[doc] = -1 + run1_scores[doc] = run1_hits[doc] + else: + score = alpha * run2_hits[doc] + run1_hits[doc] + run2_scores[doc] = run2_hits[doc] + run1_scores[doc] = run1_hits[doc] + hybrid_scores[doc] = score + total_ids = [] + total_context = [] + for sctx, dctx in zip(run2_contexts, run1_contexts): + if sctx['docid'] not in total_ids: + total_ids.append(sctx['docid']) + sctx['score'] = hybrid_scores[sctx['docid']] + sctx['run2_score'] = run2_scores[sctx['docid']] + sctx['run1_score'] = run1_scores[sctx['docid']] + total_context.append(sctx) + if dctx['docid'] not in total_ids: + total_ids.append(dctx['docid']) + dctx['score'] = hybrid_scores[dctx['docid']] + dctx['run2_score'] = run2_scores[dctx['docid']] + dctx['run1_score'] = run1_scores[dctx['docid']] + total_context.append(dctx) + total_context = sorted(total_context, key=lambda x: x['score'], reverse=True) + hybrid_result[key] = {'question': question, 'answers': answers, 'contexts': total_context} + json.dump(hybrid_result, open(os.path.join(args.output_dir, f'run_fused_weight_{alpha}.json'), 'w'), indent=4) diff --git a/scripts/dpr/wiki_generate_tsv.py b/scripts/dpr/wiki_generate_tsv.py new file mode 100644 index 0000000000000000000000000000000000000000..514ad15b19a94afc80e310e85664af790953041d --- /dev/null +++ b/scripts/dpr/wiki_generate_tsv.py @@ -0,0 +1,304 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import argparse +from tqdm import tqdm +import sqlite3 +import re +import wikitextparser as wtp +import mwparserfromhell +import unidecode +from xml.sax import saxutils +from pygaggle.rerank.base import Text +from pygaggle.data.segmentation import SegmentProcessor +import pickle + +'''After WikiExtractor and https://github.com/facebookresearch/DrQA/tree/main/scripts/retriever pre-processing is done on the XML dump, +the final pre-processing is done in this script to generate the WIKI-TL_6_3 and WIKI-TL_8_4 corpuses (with tables and lists). +Note: This requires a lot of memory because the entire XML dump is loaded into memory. ''' + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='generate .tsv files for wiki corpuses of passages with tables and lists') + parser.add_argument('-db_path', type=str, required=True, help='path to .db file containing preprocessed wiki pages from DrQA') + parser.add_argument('-xml_path', type=str, required=True, help='path to full wikipedia xml dump file') + parser.add_argument('-output_path_6_3', type=str, default="../collections/wiki_6_3.tsv", help='path to write .tsv with segment 6, stride 3') + parser.add_argument('-output_path_8_4', type=str, default="../collections/wiki_8_4.tsv", help='path to write .tsv with segment 8, stride 4') + args = parser.parse_args() + + sqliteConnection = sqlite3.connect(args.db_path) + cursor = sqliteConnection.cursor() + sqlite_select_query = "SELECT id, text FROM documents" + cursor.execute(sqlite_select_query) + pages = cursor.fetchall() + cursor.close() + + dump_file = open(args.xml_path,"r") + markup = dump_file.read() + selector = re.compile(r'(.*?)', re.DOTALL) + xml_pages = re.findall(selector, markup) + dump_file.close() + + print("DB PAGES: ", len(pages)) + print("XML PAGES: ", len(xml_pages)) + + parsed_pages_tables = {} + infoboxes_params = {} + # Get tables and infoboxes from XML dump. Store them in parsed_pages_tables and infoboxes_params respectively. + for page in tqdm(xml_pages): + p = wtp.parse(page) + title = unidecode.unidecode(re.search('(.*?)', page).group(1).strip()) + parsed_pages_tables[title] = p.tables + + #mwparserfromhell is slow, so we first filter to relevant infobox wikitext using wikitextparser + infobox_text = "" + for template_text in p.templates: + if "Infobox" in template_text: + infobox_text += str(template_text) + templates = mwparserfromhell.parse(infobox_text).filter_templates() + for template in templates: + if "Infobox" in template.name: + if title not in infoboxes_params: + infoboxes_params[title] = [template.params] + else: + infoboxes_params[title].append(template.params) + + documents = {} + + # For matching tables from xml dump to articles in .db file + key_error_fails = 0 + missing_table_fails = 0 + table_data_fails = 0 + extracted_tables = 0 + + # To avoid duplicate pages + for row in tqdm(pages): + text = row[1] + title = row[0] + + if title in documents: + documents[title] += " " + text + else: + documents[title] = text + + f1 = open(args.output_path_6_3, "w") + f2 = open(args.output_path_8_4, "w") + f1.write("id\ttext\ttitle\n") + f2.write("id\ttext\ttitle\n") + + SegmentProcessor = SegmentProcessor() + id1 = 1 + id2 = 1 + for document in tqdm(documents): + texts = [] + text = documents[document] + text = text.strip() + + if text.startswith("REDIRECT") or text.startswith("redirect"): + continue + if text.endswith(". References."): + text = text[:-len(" References.")].strip() + + infobox_text = "" + # Need to match document name from XML dump with document name from .db from WikiExtractor and DrQA pre-processing + matching_doc_name = unidecode.unidecode(document.strip()) + if matching_doc_name not in infoboxes_params: + matching_doc_name = saxutils.escape(matching_doc_name) + if matching_doc_name not in infoboxes_params: + matching_doc_name = matching_doc_name.replace("\"", """) + if matching_doc_name not in infoboxes_params: + print("FAILED TO MATCH DOC TITLE", unidecode.unidecode(saxutils.escape(document.strip()))) + key_error_fails += 1 + if matching_doc_name in infoboxes_params: + for infobox_params in infoboxes_params[matching_doc_name]: + for param in infobox_params: + param_name = str(param.name).strip().replace("\n", " ").replace("_", " ") + # no useful information + if "maplink" in param_name: + continue + + param_text = str(param.value).replace("\n", " ") + param_text = re.sub('<ref>.*?</ref>', '', param_text) + param_text = re.sub('<.*?>', '', param_text) + param_text = param_text.strip() + + if param_text != "" and "<" not in param_text and ">" not in param_text: + param_text = param_text.replace('|df=yes', '').replace('|mf=yes', '') + param_text = param_text.replace("|", " | ") + infobox_text += param_name + ": " + param_text + ". " + # add infobox text to beginning of text + text = infobox_text + text + + table_num = -1 + table_found = True + p_tables = [] + + # Need to match document name from XML dump with document name from .db from WikiExtractor and DrQA pre-processing + matching_doc_name = unidecode.unidecode(document.strip()) + if matching_doc_name in parsed_pages_tables: + p_tables = parsed_pages_tables[matching_doc_name] + else: + matching_doc_name = saxutils.escape(matching_doc_name) + if matching_doc_name in parsed_pages_tables: + p_tables = parsed_pages_tables[matching_doc_name] + else: + matching_doc_name = matching_doc_name.replace("\"", """) + if matching_doc_name in parsed_pages_tables: + p_tables = parsed_pages_tables[matching_doc_name] + else: + print("FAILED TO MATCH DOC TITLE", unidecode.unidecode(saxutils.escape(document.strip()))) + key_error_fails += 1 + table_found = False + + # TABLETOREPLACE was added in the WikiExtractor step, where tables were replaced with the string TABLETOREPLACE so that they were included in the processed text corpus as TABLETOREPLACE, instead of gotten rid of by default. + while table_found and ("TABLETOREPLACE" in text or len(p_tables) > table_num + 1): + # Trying to put the tables back in the appropriate location in the text + # However, might have parsed more tables in some article than there are occurrences of TABLETOREPLACE in the article for some reason. Add these extra linearized tables to end of text. + table_num +=1 + table_text = "" + if len(p_tables) < table_num+1: + # Failed to get table from dump + #print("FAILED TO GET TABLE FROM DUMP, NOT ENOUGH TABLES PARSED", saxutils.escape(document.strip())) + missing_table_fails+=1 + break + + # table formatting concerns. Sometimes the top row of a table doesn't consist of column names, but rather some text spanning all of the columns. + try: + table_data = p_tables[table_num].data(span=False) + if len(table_data[0]) <= 2 and len(table_data) > 1 and len(table_data[0]) + 2 < len(table_data[1]): + for elem in table_data[0]: + if elem.strip() != "": + table_text += elem + ", " + table_data = table_data[1:] + if len(table_data) == 1: + for elem in table_data[0]: + if elem.strip() != "": + table_text += elem + ", " + table_text += ". " + except: # working with p_tables[table_num].data sometimes throws unexplained errors + table_data_fails+=1 + continue + + # linearize table parsed from wikitextparser in format: "column_name1: row_elem1, column_name2: row_elem2, ..." for each row + for row in range(1, len(table_data)): + for column in range(len(table_data[row])): + if column < len(table_data[0]) and table_data[row][column] is not None and str(table_data[row][column]).strip() != "": + if table_data[0][column] is not None: + table_text += table_data[0][column] + ": " + table_text += table_data[row][column] + ', ' + table_text += ". " + table_text = table_text.replace("''", "") + table_text = table_text.replace("|", " | ") + # Try to add table in appropriate place in text. + if "TABLETOREPLACE" in text: + text = text.replace("TABLETOREPLACE", '. ' + table_text.replace("\n", " "), 1) + else: + text += " " + table_text + extracted_tables += 1 + + text = re.sub('\{\{cite .*?\}\}', ' ', text) + text = text.replace(r"TABLETOREPLACE", " ") + text = text.replace(r"'''", " ") + text = text.replace(r"[[", " ") + text = text.replace(r"]]", " ") + text = text.replace(r"{{", " ") + text = text.replace(r"}}", " ") + text = text.replace("
", " ") + text = text.replace(""", "\"") + text = text.replace("&", "&") + text = text.replace("& amp;", "&") + text = text.replace("nbsp;", " ") + text = text.replace("formatnum:", "") + + #text = re.sub('', ' ', text, flags=re.DOTALL) # might have useful information? + text = re.sub('', '', text, flags=re.DOTALL) + text = re.sub('', '', text, flags=re.DOTALL) + text = re.sub('', '', text, flags=re.DOTALL) + + # clean residual mess from xml dump that shouldn't have made its way here. + # a lot of this mess was reintroduced from adding in the tables and infoboxes + text = re.sub('\| ?item[0-9]?_?style= ?.*? ', ' ', text) + text = re.sub('\| ?col[0-9]?_?style= ?.*? ', ' ', text) + text = re.sub('\| ?row[0-9]?_?style= ?.*? ', ' ', text) + text = re.sub('\| ?style= ?.*? ', ' ', text) + text = re.sub('\| ?bodystyle= ?.*? ', ' ', text) + text = re.sub('\| ?frame_?style= ?.*? ', ' ', text) + text = re.sub('\| ?data_?style= ?.*? ', ' ', text) + text = re.sub('\| ?label_?style= ?.*? ', ' ', text) + text = re.sub('\| ?headerstyle= ?.*? ', ' ', text) + text = re.sub('\| ?list_?style= ?.*? ', ' ', text) + text = re.sub('\| ?title_?style= ?.*? ', ' ', text) + text = re.sub('\| ?ul_?style= ?.*? ', ' ', text) + text = re.sub('\| ?li_?style= ?.*? ', ' ', text) + text = re.sub('\| ?border-style= ?.*? ', ' ', text) + text = re.sub('\|? ?style=\".*?\"', '', text) + text = re.sub('\|? ?rowspan=\".*?\"', '', text) + text = re.sub('\|? ?colspan=\".*?\"', '', text) + text = re.sub('\|? ?scope=\".*?\"', '', text) + text = re.sub('\|? ?align=\".*?\"', '', text) + text = re.sub('\|? ?valign=\".*?\"', '', text) + text = re.sub('\|? ?lang=\".*?\"', '', text) + text = re.sub('\|? ?bgcolor=\".*?\"', '', text) + text = re.sub('\|? ?bg=\#[a-z]+', '', text) + text = re.sub('\|? ?width=\".*?\"', '', text) + text = re.sub('\|? ?height=[0-9]+', '', text) + text = re.sub('\|? ?width=[0-9]+', '', text) + text = re.sub('\|? ?rowspan=[0-9]+', '', text) + text = re.sub('\|? ?colspan=[0-9]+', '', text) + text = re.sub(r'[\n\t]', ' ', text) + text = re.sub('<.*?/>', '', text) + text = re.sub('\|? ?align=[a-z]+', '', text) + text = re.sub('\|? ?valign=[a-z]+', '', text) + text = re.sub('\|? ?scope=[a-z]+', '', text) + text = re.sub('<ref>.*?</ref>', ' ', text) + text = re.sub('<.*?>', ' ', text) + text = re.sub('File:[A-Za-z0-9 ]+\.[a-z]{3,4}(\|[0-9]+px)?', '', text) + text = re.sub('Source: \[.*?\]', '', text) + text = text.replace("Country flag |", "country:") + text = text.replace("flag |", "country:") + text = text.replace("flagicon |", "country:") + text = text.replace("flagcountry |", "country:") + text = text.replace("Flagu |", "country:") + text = text.replace("display=inline", "") + text = text.replace("display=it", "") + text = text.replace("abbr=on", "") + text = text.replace("disp=table", "") + text = text.replace("sortname |", "") + + texts.append(Text(text)) + + document = document.replace("\n", " ").replace("\t", " ") + segments = SegmentProcessor.segment(texts, seg_size=6, stride=3).segments + for segment in segments: + if segment.text is None: + continue + text = segment.text.replace("\n", " ").replace("\t", " ") + f1.write(str(id1) + '\t' + text + '\t' + document + '\n') + id1+=1 + + segments = SegmentProcessor.segment(texts, seg_size=8, stride=4).segments + for segment in segments: + if segment.text is None: + continue + text = segment.text.replace("\n", " ").replace("\t", " ") + f2.write(str(id2) + '\t' + text + '\t' + document + '\n') + id2+=1 + + print("key_error_fails:", key_error_fails) + print("missing_table_fails:", missing_table_fails) + print("table_data_fails:", table_data_fails) + print("Extracted tables: ", extracted_tables) + + f1.close() + f2.close() diff --git a/scripts/dpr/wiki_generate_tsv_no_tables_lists.py b/scripts/dpr/wiki_generate_tsv_no_tables_lists.py new file mode 100644 index 0000000000000000000000000000000000000000..51a071cb8b6d79ca2933b02c4705e240c5fd61d9 --- /dev/null +++ b/scripts/dpr/wiki_generate_tsv_no_tables_lists.py @@ -0,0 +1,200 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import argparse +from tqdm import tqdm +import sqlite3 +import re +from pygaggle.rerank.base import Text +from pygaggle.data.segmentation import SegmentProcessor +import spacy + +'''After WikiExtractor and https://github.com/facebookresearch/DrQA/tree/main/scripts/retriever pre-processing is done on the XML dump, +the final pre-processing is done in this script to generate the WIKI_6_3, WIKI_8_4, and WIKI_100w corpuses (without tables and lists) ''' + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='generate .tsv files for wiki corpuses of passages without tables and lists') + parser.add_argument('-db_path', type=str, required=True, help='path to .db file containing preprocessed wiki pages from DrQA') + parser.add_argument('-output_path_6_3', type=str, default="../collections/wiki_6_3.tsv", help='path to write .tsv with segment 6, stride 3') + parser.add_argument('-output_path_8_4', type=str, default="../collections/wiki_8_4.tsv", help='path to write .tsv with segment 8, stride 4') + parser.add_argument('-output_path_100w', type=str, default="../collections/wiki_100w.tsv", help='path to write .tsv with 100 word splits') + args = parser.parse_args() + + sqliteConnection = sqlite3.connect(args.db_path) + cursor = sqliteConnection.cursor() + sqlite_select_query = "SELECT id, text FROM documents" + cursor.execute(sqlite_select_query) + pages = cursor.fetchall() + cursor.close() + + print("PAGES: ", len(pages)) + + documents = {} + + nlp = spacy.load("en_core_web_lg") + + # To avoid duplicate pages + for row in tqdm(pages): + text = row[1] + title = row[0] + + if title in documents: + documents[title] += " " + text + else: + documents[title] = text + + f1 = open(args.output_path_6_3, "w") + f2 = open(args.output_path_8_4, "w") + f3 = open(args.output_path_100w, "w") + f1.write("id\ttext\ttitle\n") + f2.write("id\ttext\ttitle\n") + f3.write("id\ttext\ttitle\n") + + SegmentProcessor = SegmentProcessor() + id1 = 1 + id2 = 1 + id3 = 1 + for document in tqdm(documents): + texts = [] + text = documents[document] + text = text.strip() + + if text.startswith("REDIRECT") or text.startswith("redirect"): + continue + if text.endswith(". References."): + text = text[:-len(" References.")].strip() + + text = re.sub('\{\{cite .*?\}\}', ' ', text, flags=re.DOTALL) + text = text.replace(r"TABLETOREPLACE", " ") + text = text.replace(r"'''", " ") + text = text.replace(r"[[", " ") + text = text.replace(r"]]", " ") + text = text.replace(r"{{", " ") + text = text.replace(r"}}", " ") + text = text.replace("
", " ") + text = text.replace(""", "\"") + text = text.replace("&", "&") + text = text.replace("& amp;", "&") + text = text.replace("nbsp;", " ") + text = text.replace("formatnum:", "") + + #text = re.sub('', ' ', text, flags=re.DOTALL) # might have useful information? + text = re.sub('', '', text, flags=re.DOTALL) + text = re.sub('', '', text, flags=re.DOTALL) + text = re.sub('', '', text, flags=re.DOTALL) + + # clean residual mess from xml dump that shouldn't have made its way here + text = re.sub('\| ?item[0-9]?_?style= ?.*? ', ' ', text) + text = re.sub('\| ?col[0-9]?_?style= ?.*? ', ' ', text) + text = re.sub('\| ?row[0-9]?_?style= ?.*? ', ' ', text) + text = re.sub('\| ?style= ?.*? ', ' ', text) + text = re.sub('\| ?bodystyle= ?.*? ', ' ', text) + text = re.sub('\| ?frame_?style= ?.*? ', ' ', text) + text = re.sub('\| ?data_?style= ?.*? ', ' ', text) + text = re.sub('\| ?label_?style= ?.*? ', ' ', text) + text = re.sub('\| ?headerstyle= ?.*? ', ' ', text) + text = re.sub('\| ?list_?style= ?.*? ', ' ', text) + text = re.sub('\| ?title_?style= ?.*? ', ' ', text) + text = re.sub('\| ?ul_?style= ?.*? ', ' ', text) + text = re.sub('\| ?li_?style= ?.*? ', ' ', text) + text = re.sub('\| ?border-style= ?.*? ', ' ', text) + text = re.sub('\|? ?style=\".*?\"', '', text) + text = re.sub('\|? ?rowspan=\".*?\"', '', text) + text = re.sub('\|? ?colspan=\".*?\"', '', text) + text = re.sub('\|? ?scope=\".*?\"', '', text) + text = re.sub('\|? ?align=\".*?\"', '', text) + text = re.sub('\|? ?valign=\".*?\"', '', text) + text = re.sub('\|? ?lang=\".*?\"', '', text) + text = re.sub('\|? ?bgcolor=\".*?\"', '', text) + text = re.sub('\|? ?bg=\#[a-z]+', '', text) + text = re.sub('\|? ?width=\".*?\"', '', text) + text = re.sub('\|? ?height=[0-9]+', '', text) + text = re.sub('\|? ?width=[0-9]+', '', text) + text = re.sub('\|? ?rowspan=[0-9]+', '', text) + text = re.sub('\|? ?colspan=[0-9]+', '', text) + text = re.sub(r'[\n\t]', ' ', text) + text = re.sub('<.*?/>', '', text) + text = re.sub('\|? ?align=[a-z]+', '', text) + text = re.sub('\|? ?valign=[a-z]+', '', text) + text = re.sub('\|? ?scope=[a-z]+', '', text) + text = re.sub('<ref>.*?</ref>', ' ', text) + text = re.sub('<.*?>', ' ', text) + text = re.sub('File:[A-Za-z0-9 ]+\.[a-z]{3,4}(\|[0-9]+px)?', '', text) + text = re.sub('Source: \[.*?\]', '', text) + text = text.replace("Country flag|", "country:") + text = text.replace("flag|", "country:") + text = text.replace("flagicon|", "country:") + text = text.replace("flagcountry|", "country:") + text = text.replace("Flagu|", "country:") + text = text.replace("display=inline", "") + text = text.replace("display=it", "") + text = text.replace("abbr=on", "") + text = text.replace("disp=table", "") + + texts.append(Text(text)) + + document = document.replace("\n", " ").replace("\t", " ") + segments = SegmentProcessor.segment(texts, seg_size=6, stride=3).segments + for segment in segments: + if segment.text is None: + continue + text = segment.text.replace("\n", " ").replace("\t", " ") + f1.write(str(id1) + '\t' + text + '\t' + document + '\n') + id1+=1 + + segments = SegmentProcessor.segment(texts, seg_size=8, stride=4).segments + for segment in segments: + if segment.text is None: + continue + text = segment.text.replace("\n", " ").replace("\t", " ") + f2.write(str(id2) + '\t' + text + '\t' + document + '\n') + id2+=1 + + full_text = "" + for text in texts: + full_text += text.text + " " + doc = nlp.make_doc(full_text) + segments = [] + word_count = 0 + segment_tokens = [] + for token in doc: + segment_tokens.append(token.text_with_ws) + if not token.is_space and not token.is_punct: + word_count+=1 + if word_count == 100: + word_count = 0 + segments.append(''.join([token for token in segment_tokens])) + segment_tokens = [] + if word_count != 0: + for token in doc: + segment_tokens.append(token.text_with_ws) + if not token.is_space and not token.is_punct: + word_count+=1 + if word_count == 100: + word_count = 0 + segments.append(''.join([token for token in segment_tokens])) + break + if word_count != 0: + segments.append(''.join([token for token in segment_tokens])) + if len(segments) > 0: + segments[0] = document + " " + segments[0] + for segment in segments: + text = segment.replace("\n", " ").replace("\t", " ") + f3.write(str(id3) + '\t' + text + '\t' + document + '\n') + id3+=1 + + f1.close() + f2.close() + f3.close() diff --git a/scripts/encode_queries.py b/scripts/encode_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..9bd100eb077aa6b620d3ad51a94cf39d319df1ab --- /dev/null +++ b/scripts/encode_queries.py @@ -0,0 +1,64 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import pandas as pd +from tqdm import tqdm +import sys +import os + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.dsearch import AnceQueryEncoder, AutoQueryEncoder, TctColBertQueryEncoder, DprQueryEncoder +from pyserini.search import get_topics + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--topics', type=str, help='topic name', required=True) + parser.add_argument('--output', type=str, help='dir to store query embeddings', required=True) + parser.add_argument('--device', type=str, + help='device cpu or cuda [cuda:0, cuda:1...]', default='cpu', required=False) + args = parser.parse_args() + device = args.device + topics = get_topics(args.topics) + + if not os.path.exists(args.output): + os.mkdir(args.output) + + if 'dpr' in args.encoder: + encoder = DprQueryEncoder(encoder_dir=args.encoder, device=device) + elif 'tct_colbert' in args.encoder: + encoder = TctColBertQueryEncoder(encoder_dir=args.encoder, device=device) + elif 'ance' in args.encoder: + encoder = AnceQueryEncoder(encoder_dir=args.encoder, device=device) + elif 'sentence' in args.encoder: + encoder = AutoQueryEncoder(encoder_dir=args.encoder, device=device, pooling='mean', l2_norm=True) + else: + encoder = AutoQueryEncoder(encoder_dir=args.encoder, device=device) + + embeddings = {'id': [], 'text': [], 'embedding': []} + for key in tqdm(topics): + qid = str(key) + text = topics[key]['title'] + embeddings['id'].append(qid) + embeddings['text'].append(text) + embeddings['embedding'].append(encoder.encode(text.strip())) + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(os.path.join(args.output, 'embedding.pkl')) diff --git a/scripts/entity_linking.py b/scripts/entity_linking.py new file mode 100644 index 0000000000000000000000000000000000000000..38e56b3b3a4dc0aa6c65367fcb2dedc1ecd8c817 --- /dev/null +++ b/scripts/entity_linking.py @@ -0,0 +1,165 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import jsonlines +import spacy +import sys +from REL.mention_detection import MentionDetectionBase +from REL.utils import process_results, split_in_words +from REL.entity_disambiguation import EntityDisambiguation +from REL.ner import Span +from wikimapper import WikiMapper +from typing import Dict, List, Tuple +from tqdm import tqdm + +# Spacy Mention Detection class which overrides the NERBase class in the REL entity linking process +class NERSpacyMD(MentionDetectionBase): + def __init__(self, base_url:str, wiki_version:str, spacy_model:str): + super().__init__(base_url, wiki_version) + # we only want to link entities of specific types + self.ner_labels = ['PERSON', 'NORP', 'FAC', 'ORG', 'GPE', 'LOC', 'PRODUCT', 'EVENT', 'WORK_OF_ART', + 'LAW', 'LANGUAGE', 'DATE', 'TIME', 'MONEY', 'QUANTITY'] + self.spacy_model = spacy_model + spacy.prefer_gpu() + self.tagger = spacy.load(spacy_model) + + # mandatory function which overrides NERBase.predict() + def predict(self, doc: spacy.tokens.Doc) -> List[Span]: + spans = [] + for ent in doc.ents: + if ent.label_ in self.ner_labels: + spans.append(Span(ent.text, ent.start_char, ent.end_char, 0, ent.label_)) + return spans + + """ + Responsible for finding mentions given a set of documents in a batch-wise manner. More specifically, + it returns the mention, its left/right context and a set of candidates. + :return: Dictionary with mentions per document. + """ + + def find_mentions(self, dataset: Dict[str, str]) -> Tuple[Dict[str, List[Dict]], int]: + results = {} + total_ment = 0 + for i, doc in tqdm(enumerate(dataset), desc='Finding mentions', total=len(dataset)): + result_doc = [] + doc_text = dataset[doc] + spacy_doc = self.tagger(doc_text) + spans = self.predict(spacy_doc) + for entity in spans: + text, start_pos, end_pos, conf, tag = ( + entity.text, + entity.start_pos, + entity.end_pos, + entity.score, + entity.tag, + ) + m = self.preprocess_mention(text) + cands = self.get_candidates(m) + if len(cands) == 0: + continue + total_ment += 1 + # Re-create ngram as 'text' is at times changed by Flair (e.g. double spaces are removed). + ngram = doc_text[start_pos:end_pos] + left_ctxt = " ".join(split_in_words(doc_text[:start_pos])[-100:]) + right_ctxt = " ".join(split_in_words(doc_text[end_pos:])[:100]) + res = { + "mention": m, + "context": (left_ctxt, right_ctxt), + "candidates": cands, + "gold": ["NONE"], + "pos": start_pos, + "sent_idx": 0, + "ngram": ngram, + "end_pos": end_pos, + "sentence": doc_text, + "conf_md": conf, + "tag": tag, + } + result_doc.append(res) + results[doc] = result_doc + return results, total_ment + + +# run REL entity linking on processed doc +def rel_entity_linking(docs: Dict[str,str], spacy_model:str, rel_base_url:str, rel_wiki_version:str, rel_ed_model_path:str) -> Dict[str, List[Tuple]]: + mention_detection = NERSpacyMD(rel_base_url, rel_wiki_version, spacy_model) + mentions_dataset, _ = mention_detection.find_mentions(docs) + config = { + 'mode': 'eval', + 'model_path': rel_ed_model_path, + } + ed_model = EntityDisambiguation(rel_base_url, rel_wiki_version, config) + predictions, _ = ed_model.predict(mentions_dataset) + + linked_entities = process_results(mentions_dataset, predictions, docs) + return linked_entities + + +# read input pyserini json docs into a dictionary +def read_docs(input_path: str) -> Dict[str, str]: + docs = {} + with jsonlines.open(input_path) as reader: + for obj in tqdm(reader, desc='Reading docs'): + docs[obj['id']] = obj['contents'] + return docs + + +# enrich REL entity linking results with entities' wikidata ids, and write final results as json objects +# rel_linked_entities: Tuples of entities are composed by start_pos:int, mention_length:int, ent_text:str, ent_wikipedia_id:str, conf_score:float, ner_score:int, ent_type:str +def enrich_el_results(rel_linked_entities: Dict[str, List[Tuple]], docs: Dict[str, str], wikimapper_index:str) -> List[Dict]: + wikimapper = WikiMapper(wikimapper_index) + linked_entities_json = [] + for docid, doc_text in tqdm(docs.items(), desc='Enriching EL results', total=len(rel_linked_entities)): + if docid not in rel_linked_entities: + linked_entities_json.append({'id': docid, 'contents': doc_text, 'entities': []}) + else: + linked_entities_info = [] + ents = rel_linked_entities[docid] + for start_pos, mention_length, ent_text, ent_wikipedia_id, conf_score, ner_score, ent_type in ents: + # find entities' wikidata ids using their REL results (i.e. linked wikipedia ids) + ent_wikipedia_id = ent_wikipedia_id.replace('&', '&') + ent_wikidata_id = wikimapper.title_to_id(ent_wikipedia_id) + + # write results as json objects + linked_entities_info.append({'start_pos': start_pos, 'end_pos': start_pos + mention_length, 'ent_text': ent_text, + 'wikipedia_id': ent_wikipedia_id, 'wikidata_id': ent_wikidata_id, + 'ent_type': ent_type}) + linked_entities_json.append({'id': docid, 'contents': doc_text, 'entities': linked_entities_info}) + return linked_entities_json + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('-p', '--input_path', type=str, help='path to input texts') + parser.add_argument('-u', '--rel_base_url', type=str, help='directory containing all required REL data folders') + parser.add_argument('-m', '--rel_ed_model_path', type=str, help='path to the REL entity disambiguation model') + parser.add_argument('-v', '--rel_wiki_version', type=str, help='wikipedia corpus version used for REL') + parser.add_argument('-w', '--wikimapper_index', type=str, help='precomputed index used by Wikimapper') + parser.add_argument('-s', '--spacy_model', type=str, help='spacy model type') + parser.add_argument('-o', '--output_path', type=str, help='path to output json file') + args = parser.parse_args() + + docs = read_docs(args.input_path) + rel_linked_entities = rel_entity_linking(docs, args.spacy_model, args.rel_base_url, args.rel_wiki_version, + args.rel_ed_model_path) + linked_entities_json = enrich_el_results(rel_linked_entities, docs, args.wikimapper_index) + with jsonlines.open(args.output_path, mode='w') as writer: + writer.write_all(linked_entities_json) + + +if __name__ == '__main__': + main() + sys.exit(0) diff --git a/scripts/es/README.md b/scripts/es/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1f59585cb38201500399f173aa594a8c315204a5 --- /dev/null +++ b/scripts/es/README.md @@ -0,0 +1,50 @@ +## UniCOIL with ElasticSearch +1. Setup ElasticSearch with Docker by following document [here](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html). +```bash +docker pull docker.elastic.co/elasticsearch/elasticsearch:8.2.3 +docker network create elastic +docker run --name es01 --net elastic -d -p 9200:9200 -p 9300:9300 \ + -e "discovery.type=single-node" \ + -e "xpack.security.enabled=false" \ + -it docker.elastic.co/elasticsearch/elasticsearch:8.2.2 +``` +2. (Optional) Setup Kibana by following document [here](https://www.elastic.co/guide/en/kibana/current/docker.html). +```bash +docker pull docker.elastic.co/kibana/kibana:8.2.2 +docker run -d --name kib-01 --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:8.2.2 +``` + +3. Create ES index +```bash +python create_es.py +``` +This will create index based on two search field: + +- `document`: contains raw text for BM25 search +- `vector`: contains pseudo text from uniCOIL for impact search + +4. Create document entry for BM25 index +```bash +python index_bm25.py +``` + +5. Add uniCOIL encoded document for impact search +```bash +python index_unicoil_update.py +``` + +6. BM25 search +```bash +python search_bm25.py +``` + +7. uniCOIL search +```bash +python search_unicoil.py +``` + +8. Hybrid Search + +```bash +python search_unicoil.py +``` \ No newline at end of file diff --git a/scripts/es/check_status.py b/scripts/es/check_status.py new file mode 100644 index 0000000000000000000000000000000000000000..4a2c3ca38a82315a52c20259e8107c3ba6bff493 --- /dev/null +++ b/scripts/es/check_status.py @@ -0,0 +1,29 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch + +# Create the client instance +client = Elasticsearch("http://localhost:9200") + +resp = client.search(index="msmarco-v1-passage", query={"bool": { + "must_not": { + "exists": { + "field": "vector" + } + } +}}, track_total_hits=True) + +print(resp['hits']['total']['value']) diff --git a/scripts/es/create_es.py b/scripts/es/create_es.py new file mode 100644 index 0000000000000000000000000000000000000000..0d15b6b9047c2b8d5e328b1abdc80269d91ba918 --- /dev/null +++ b/scripts/es/create_es.py @@ -0,0 +1,56 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch + +# Create the client instance +client = Elasticsearch("http://localhost:9200") +print(client.info()) + +impact_index_config = { + "settings": { + "number_of_shards": 1, + "similarity": { + "default": { + "type": "BM25", + "k1": 0.9, + "b": 0.4 + }, + "impact_similarity": { + "type": "scripted", + "script": { + "source": "double tf = doc.freq; return query.boost * tf;" + } + }, + } + }, + "mappings": { + "properties": { + "document": { + "type": "text", + "analyzer": "english", + "similarity": "default", + }, + "vector": { + "type": "text", + "analyzer": "whitespace", + "similarity": "impact_similarity" + } + } + } +} + +client.indices.create(index='msmarco-v1-passage', body=impact_index_config) + diff --git a/scripts/es/create_es_ann.py b/scripts/es/create_es_ann.py new file mode 100644 index 0000000000000000000000000000000000000000..72f1a5c01fffdb3f6d34d93b469db329515cb743 --- /dev/null +++ b/scripts/es/create_es_ann.py @@ -0,0 +1,36 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch + + +# Create the client instance +client = Elasticsearch("http://localhost:9200", timeout=1000) +print(client.info()) + +ann_index_config = { + "mappings": { + "properties": { + "text-vector": { + "type": "dense_vector", + "dims": 768, + "index": True, + "similarity": "dot_product", + }, + } + } +} + +client.indices.create(index='es-hnsw', body=ann_index_config) diff --git a/scripts/es/index_bm25.py b/scripts/es/index_bm25.py new file mode 100644 index 0000000000000000000000000000000000000000..43ba065a77c2ca458528298d8be47a68da8213e9 --- /dev/null +++ b/scripts/es/index_bm25.py @@ -0,0 +1,50 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import json +import os +from elasticsearch import Elasticsearch +from elasticsearch.helpers import streaming_bulk +from tqdm import tqdm + +INDEX_NAME = "msmarco-v1-passage" +MSMARCO_PATH = 'data/msmarco-passage-unicoil/' + + +def generate_msmarco_passage(): + for file in os.listdir(MSMARCO_PATH): + path = os.path.join(MSMARCO_PATH, file) + with open(path) as f: + for line in f: + info = json.loads(line) + docid = info['id'] + text = info['contents'] + action = { + "_index": INDEX_NAME, + "_id": docid, + "document": text + } + yield action + +client = Elasticsearch("http://localhost:9200") + + +print("Indexing documents...") +successes = 0 +for ok, action in tqdm(streaming_bulk( + client=client, index=INDEX_NAME, actions=generate_msmarco_passage(), +)): + successes += ok +print(f"Indexed {successes} documents") diff --git a/scripts/es/index_es_hnsw.py b/scripts/es/index_es_hnsw.py new file mode 100644 index 0000000000000000000000000000000000000000..2f8dfd01591e18c148d485ff923834b69c2465d6 --- /dev/null +++ b/scripts/es/index_es_hnsw.py @@ -0,0 +1,49 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import os +from elasticsearch import Elasticsearch +from elasticsearch.helpers import streaming_bulk +from tqdm import tqdm +import faiss + +INDEX_NAME = "es-hnsw" +MSMARCO_PATH = '/dindex-msmarco-passage-sbert-bf-20210313-a0fbb3/' + +bf_index = faiss.read_index(os.path.join(MSMARCO_PATH, 'index')) +vectors = bf_index.reconstruct_n(0, bf_index.ntotal) +docids = [x.rstrip() for x in open(os.path.join(MSMARCO_PATH, 'docid')).readlines()] + +def generate_msmarco_passage(): + for idx in range(len(vectors)): + docid = docids[idx] + vector = vectors[idx] + action = { + "_index": INDEX_NAME, + "_id": docid, + "text-vector": vector + } + yield action + +client = Elasticsearch("http://localhost:9200", timeout=1000) + + +print("Indexing documents...") +successes = 0 +for ok, action in tqdm(streaming_bulk( + client=client, index=INDEX_NAME, actions=generate_msmarco_passage(), +)): + successes += ok +print(f"Indexed {successes} documents") diff --git a/scripts/es/index_unicoil_update.py b/scripts/es/index_unicoil_update.py new file mode 100644 index 0000000000000000000000000000000000000000..cf6da6f49f9eb78ac263704eb84c1170b92b26ce --- /dev/null +++ b/scripts/es/index_unicoil_update.py @@ -0,0 +1,57 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import json +import os +from elasticsearch import Elasticsearch +from elasticsearch.helpers import streaming_bulk +from tqdm import tqdm + +INDEX_NAME = "msmarco-v1-passage" +MSMARCO_PATH = 'data/msmarco-passage-unicoil/' + +def create_pseudo_doc(vector): + results = [] + for key in vector: + results += [key] * vector[key] + pesudo_doc = " ".join(results) + return pesudo_doc + +def generate_unicoil_vector(): + for file in os.listdir(MSMARCO_PATH): + path = os.path.join(MSMARCO_PATH, file) + with open(path) as f: + for line in f: + info = json.loads(line) + docid = info['id'] + text = create_pseudo_doc(info['vector']) + action = { + "_op_type": "update", + "_index": INDEX_NAME, + "_id": docid, + "doc": {"vector": text}, + } + yield action + +client = Elasticsearch("http://localhost:9200") + + +print("Indexing documents...") +successes = 0 +for ok, action in tqdm(streaming_bulk( + client=client, index=INDEX_NAME, actions=generate_unicoil_vector(), +)): + successes += ok +print(f"Indexed {successes} documents") \ No newline at end of file diff --git a/scripts/es/search_bm25.py b/scripts/es/search_bm25.py new file mode 100644 index 0000000000000000000000000000000000000000..18c3f7a8a72ae241f2b532c63f95ab879a3b13fc --- /dev/null +++ b/scripts/es/search_bm25.py @@ -0,0 +1,52 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch +from pyserini.search import get_topics +from tqdm import tqdm + +client = Elasticsearch("http://localhost:9200", timeout=60) +topics = get_topics("msmarco-passage-dev-subset") + +def escape_query(query): + escaped = "" + for c in query: + if c not in ['+', '-', '=', '&&', '||', '>', '<', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\', '/']: + escaped += c + else: + escaped += f'\{c}' + return escaped + +with open('run.es_bm25.tsv', 'w') as f: + for qid in tqdm(topics): + query = escape_query(topics[qid]['title']) + formated_query = { + "query_string": { + "query": query, + "default_field": "document" + } + } + resp = client.search(index="msmarco-v1-passage", query=formated_query, timeout="60s") + for i in range(len(resp["hits"]["hits"])): + pid = resp["hits"]["hits"][i]['_id'] + record = f"{qid}\t{pid}\t{i+1}\n" + f.write(record) + +""" +##################### +MRR @10: 0.18397376859053075 +QueriesRanked: 6980 +##################### +""" \ No newline at end of file diff --git a/scripts/es/search_hnsw_ann.py b/scripts/es/search_hnsw_ann.py new file mode 100644 index 0000000000000000000000000000000000000000..b67444276711ebdfbaa311c227c8204322342b43 --- /dev/null +++ b/scripts/es/search_hnsw_ann.py @@ -0,0 +1,37 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch +from pyserini.search import get_topics, QueryEncoder +from tqdm import tqdm + + +client = Elasticsearch("http://localhost:9200", timeout=1000) +topics = get_topics("msmarco-passage-dev-subset") +query_encoder = QueryEncoder.load_encoded_queries('sbert-msmarco-passage-dev-subset') +with open('run.es_sbert.tsv', 'w') as f: + for qid in tqdm(topics): + query = topics[qid]['title'] + formated_query = { + "field": "text-vector", + "query_vector": query_encoder.encode(query), + "k": 10, + "num_candidates": 100 + } + resp = client.knn_search(index="tct-colbert-hnsw", knn=formated_query) + for i in range(len(resp["hits"]["hits"])): + pid = resp["hits"]["hits"][i]['_id'] + record = f"{qid}\t{pid}\t{i+1}\n" + f.write(record) diff --git a/scripts/es/search_hybrid.py b/scripts/es/search_hybrid.py new file mode 100644 index 0000000000000000000000000000000000000000..3b0b17a526d8ade330c4ea437a2cf444d24da881 --- /dev/null +++ b/scripts/es/search_hybrid.py @@ -0,0 +1,77 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch +from pyserini.search import get_topics +from tqdm import tqdm + +client = Elasticsearch("http://localhost:9200", timeout=60) +topics = get_topics("msmarco-passage-dev-subset") +topics_unicoil = get_topics("msmarco-passage-dev-subset-unicoil") + + +def escape_query(query): + escaped = "" + for c in query: + if c not in ['+', '-', '=', '&&', '||', '>', '<', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\', '/']: + escaped += c + else: + escaped += f'\{c}' + return escaped + + +def convert_pseudo_query_to_boost(query): + tf = {} + tokens = query.split() + for tok in tokens: + if tok not in tf: + tf[tok] = 0 + tf[tok] += 1 + boost = "" + for tok in tf: + if tok != "[SEP]": + escaped = tok + if tok in ['+', '-', '=', '&&', '||', '>', '<', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\', '/']: + escaped = tok.replace(tok, f"\\{tok}") + boost += f"{escaped}^{tf[tok]} " + return boost.rstrip() + + +with open('run.es_hybrid.tsv', 'w') as f: + for qid in tqdm(topics): + query_bm25 = escape_query(topics[qid]['title']) + query_unicoil = convert_pseudo_query_to_boost( + topics_unicoil[qid]['title']) + formated_query = { + "bool": { + "should": [ + {"query_string": { + "query": query_unicoil, + "default_field": "vector", + "boost": 1 + }}, + {"query_string": { + "query": query_bm25, + "default_field": "document", + "boost": 1 + }}, + ] + } + } + resp = client.search(index="msmarco-v1-passage", query=formated_query) + for i in range(len(resp["hits"]["hits"])): + pid = resp["hits"]["hits"][i]['_id'] + record = f"{qid}\t{pid}\t{i+1}\n" + f.write(record) diff --git a/scripts/es/search_unicoil.py b/scripts/es/search_unicoil.py new file mode 100644 index 0000000000000000000000000000000000000000..53c1dff5dc1731ffbfa2c1bb3fb5e3b1bc72b976 --- /dev/null +++ b/scripts/es/search_unicoil.py @@ -0,0 +1,62 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from elasticsearch import Elasticsearch +from pyserini.search import get_topics +from tqdm import tqdm + +client = Elasticsearch("http://localhost:9200") +topics = get_topics("msmarco-passage-dev-subset-unicoil") + + +def convert_pseudo_query_to_boost(query): + tf = {} + tokens = query.split() + for tok in tokens: + if tok not in tf: + tf[tok] = 0 + tf[tok] += 1 + boost = "" + for tok in tf: + if tok != "[SEP]": + escaped = tok + if tok in ['+', '-', '=', '&&', '||', '>', '<', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\', '/']: + escaped = tok.replace(tok, f"\\{tok}") + boost += f"{escaped}^{tf[tok]} " + return boost.rstrip() + + +with open('run.es_unicoil.tsv', 'w') as f: + for qid in tqdm(topics): + query = convert_pseudo_query_to_boost(topics[qid]['title']) + formated_query = { + "query_string": { + "query": query, + "default_field": "vector" + } + } + resp = client.search(index="msmarco-v1-passage", query=formated_query) + for i in range(len(resp["hits"]["hits"])): + pid = resp["hits"]["hits"][i]['_id'] + record = f"{qid}\t{pid}\t{i+1}\n" + f.write(record) + + +""" +##################### +MRR @10: 0.35155222404147773 +QueriesRanked: 6980 +##################### +""" diff --git a/scripts/gar/query_augmentation_tsv.py b/scripts/gar/query_augmentation_tsv.py new file mode 100644 index 0000000000000000000000000000000000000000..956876af65e64b5878be457983e470b2bc81dd72 --- /dev/null +++ b/scripts/gar/query_augmentation_tsv.py @@ -0,0 +1,64 @@ +from email.policy import default +import argparse +from random import choices +from datasets import load_dataset +import os + +def def_args(parser): + parser.add_argument('--data_split', type=str, choices=['validation','test'], default='test') + parser.add_argument('--dataset',type=str, choices=['nq','trivia'],default='nq') + parser.add_argument('--output_path', type=str, + default='./augmented_topics.tsv', help="output txt path") + parser.add_argument('--k', type=int, default=1, + help="first k augmentations to be added to the query") + parser.add_argument('--answers', action='store_true', default=False) + parser.add_argument('--titles', action='store_true', default=False) + parser.add_argument('--sentences', action='store_true', default=False) + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Query augmentations.') + def_args(parser) + args = parser.parse_args() + final_list = [] + json_list = [] + anserini_path = os.environ['ANSERINI'] + data_path = '' + if args.dataset == 'nq': + if args.data_split == 'validation': + data_path = os.path.join(anserini_path,'src/main/resources/topics-and-qrels/topics.nq.dev.txt') + elif args.data_split == 'test': + data_path = os.path.join(anserini_path,'src/main/resources/topics-and-qrels/topics.nq.test.txt') + elif args.dataset == 'trivia': + if args.data_split == 'validation': + data_path = os.path.join(anserini_path,'src/main/resources/topics-and-qrels/topics.dpr.trivia.dev.txt') + elif args.data_split == 'test': + data_path = os.path.join(anserini_path,'src/main/resources/topics-and-qrels/topics.dpr.trivia.test.txt') + + dataset = 'castorini/triviaqa_gar-t5_expansions' if args.dataset == 'trivia' else 'castorini/nq_gar-t5_expansions' + with open(data_path, 'r') as file: + file = file.readlines() + concatenated = list(map(lambda x: x.split('\t'), file)) + + data_files = {"dev":"dev/dev.jsonl", "test": "test/test.jsonl"} + json_list = load_dataset(dataset, data_files=data_files)[args.data_split] + for i in range(len(json_list)): + temp_list = [] + temp2_list = [] + temp_list.append(json_list[i]['id']+'\t') + temp_list.append(concatenated[i][0] + ' ') + + if args.answers: + temp2_list.append( + ' '.join(json_list[i]['predicted_answers'][:args.k])) + if args.titles: + temp2_list.append( + ' '.join(json_list[i]['predicted_titles'][:args.k])) + if args.sentences: + temp2_list.append( + ' '.join(json_list[i]['predicted_sentences'][:args.k])) + + final_list.append(''.join(temp_list) + ' '.join(temp2_list)+'\n') + + with open(args.output_path, 'w') as output_file: + output_file.writelines(final_list) + print("Done") diff --git a/scripts/generate_docs_from_prebuilt_indexes.py b/scripts/generate_docs_from_prebuilt_indexes.py new file mode 100644 index 0000000000000000000000000000000000000000..0796f3273495679f52145012f2420d23d4ebfb3f --- /dev/null +++ b/scripts/generate_docs_from_prebuilt_indexes.py @@ -0,0 +1,95 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import sys + +# Use Pyserini in this repo (as opposed to pip install) +sys.path.insert(0, './') + +from pyserini.prebuilt_index_info import TF_INDEX_INFO_CURRENT, IMPACT_INDEX_INFO_CURRENT, FAISS_INDEX_INFO + + +__boilerplate__ = ''' +# Pyserini: Prebuilt Indexes + +Pyserini provides a number of pre-built Lucene indexes. +To list what's available in code: + +```python +from pyserini.search.lucene import LuceneSearcher +LuceneSearcher.list_prebuilt_indexes() + +from pyserini.index.lucene import IndexReader +IndexReader.list_prebuilt_indexes() +``` + +It's easy initialize a searcher from a pre-built index: + +```python +searcher = LuceneSearcher.from_prebuilt_index('robust04') +``` + +You can use this simple Python one-liner to download the pre-built index: + +``` +python -c "from pyserini.search.lucene import LuceneSearcher; LuceneSearcher.from_prebuilt_index('robust04')" +``` + +The downloaded index will be in `~/.cache/pyserini/indexes/`. + +It's similarly easy initialize an index reader from a pre-built index: + +```python +index_reader = IndexReader.from_prebuilt_index('robust04') +index_reader.stats() +``` + +The output will be: + +``` +{'total_terms': 174540872, 'documents': 528030, 'non_empty_documents': 528030, 'unique_terms': 923436} +``` + +Note that unless the underlying index was built with the `-optimize` option (i.e., merging all index segments into a single segment), `unique_terms` will show -1. +Nope, that's not a bug. + +Below is a summary of the pre-built indexes that are currently available. +Detailed configuration information for the pre-built indexes are stored in [`pyserini/prebuilt_index_info.py`](../pyserini/prebuilt_index_info.py). + +''' + + +def generate_prebuilt(index): + print('
') + for entry in index: + # No, this is not an HTML bug. This is intentional to get GitHub formatting to not add italics to the entry. + print(f'
{entry}') + if 'readme' in index[entry]: + print(f'[readme]') + print(f'
{index[entry]["description"]}') + print(f'
') + print('
') + + +if __name__ == '__main__': + print(__boilerplate__) + print('\n\n## Standard Lucene Indexes') + generate_prebuilt(TF_INDEX_INFO_CURRENT) + print('\n\n## Lucene Impact Indexes') + generate_prebuilt(IMPACT_INDEX_INFO_CURRENT) + print('\n\n## Faiss Indexes') + generate_prebuilt(FAISS_INDEX_INFO) diff --git a/scripts/generate_trec_covid_round1_OSHU_RUN2.py b/scripts/generate_trec_covid_round1_OSHU_RUN2.py new file mode 100644 index 0000000000000000000000000000000000000000..23a907a1f932a8224bd2151bac7bc9995f586018 --- /dev/null +++ b/scripts/generate_trec_covid_round1_OSHU_RUN2.py @@ -0,0 +1,215 @@ +#Title: TREC_COVID_Round1_OHSU.py +#Author: Jimmy Chen, School of Medicine, OHSU +#Description: Generate 1000 documents per topic in Round 1 TREC_COVID and get trec_eval metrics + +# To replicate OSHU_RUN2 +# Results: https://ir.nist.gov/covidSubmit/archive/round1/OHSU_RUN2.pdf +# +# In root pyserini directory: +# +# 1. wget https://www.dropbox.com/s/gtq2c3xq81mjowk/lucene-index-covid-full-text-2020-04-10.tar.gz +# 2. tar xvfz lucene-index-covid-full-text-2020-04-10.tar.gz +# 3. python bin/generate_trec_covid_round1_OSHU_RUN2.py +# 4. trec_eval -c -q -M1000 -m all_trec qrels-rnd1.txt Round1_data/full_R1.txt + +import sys +sys.path.insert(0, "./") + +import pandas as pd +import numpy as np +#import torch +import os +from tqdm.auto import tqdm +import json +from pyserini.search import pysearch +import xml.etree.ElementTree as ET +import requests +import urllib.request +from trectools import misc, TrecRun, TrecQrel, procedures +from pyserini.analysis.pyanalysis import get_lucene_analyzer, Analyzer +import nltk +from nltk.corpus import stopwords + +#Round 1 indexes +#Replace with url to folder containing your index +R1_fulltext = 'lucene-index-covid-full-text-2020-04-10' + +#Download round 1 topics and parse into dataframe +tree = ET.fromstring(requests.get('https://ir.nist.gov/covidSubmit/data/topics-rnd1.xml').text) +topicid = [] +query = [] +question = [] +narrative = [] +for child in tree.iter(): + tag =child.tag + text = child.text + attrib = child.attrib + if (tag == 'topic'): + topicid.append(attrib['number']) + if (tag == 'query'): + query.append(text) + if (tag == 'question'): + question.append(text) + if (tag == 'narrative'): + narrative.append(text) + +#Join to CSV +my_dict = {'Topic':topicid, 'Query':query, 'Question':question , 'Narrative':narrative} +R1_topics = pd.DataFrame(my_dict) +R1_topics = R1_topics[['Topic', 'Query', 'Question', 'Narrative']] + +curr_dir = os.getcwd() +Pyserini_files = os.path.join(curr_dir, 'Round1_data') +if (os.path.exists(Pyserini_files) == False): + os.mkdir(Pyserini_files) + +#Topics +full_searcher = pysearch.LuceneSearcher(R1_fulltext) + +#Configure searcher parameters +full_searcher.set_bm25_similarity(k1=1.5, b=0.4) +full_searcher.set_lm_dirichlet_similarity(mu = 2000) +full_searcher.set_rm3_reranker(fb_terms=10, fb_docs=10, original_query_weight=0.5) + +#Stopwords for tokenization - manual review +stopwords_manual = ['seek', 'seeking', 'look', 'looking', 'studies', 'study', 'information', + 'about', 'range', 'studies', 'its', 'coronaviru', + 'other', '2', '19', 'well', ' will', 'from', 'have', 'more', 'covid', 'any', 'what', + 'should', 'may', 'due', 'help', 'non', 's', 'those', 'people', 'ways', 'all', 'gain', + 'possible', 'toward', 'specifically', 'learned', 'number', 'proportion', 'including', + 'etc', 'still', 'while', 'human', 'specific', 'result', 'results', 'assess', 'need', + 'between', 'take', 'taking', 'patient', 'type', 'cause' ,'frequency', 'less', 'face', + 'likely', 'infect', 'upon', 'develop', 'represent', 'promising', 'step', 'related', + 'papers', 'describe', 'also', 'relevant', 'who', 'show', 'science', 'basic', 'complete', + 'do', 'how', 'been', 'against', 'use', 'to', 'had', 'has', 'approach', 'Studies', 'Stud', 'Inst', 'Divi' ,'Thomae', + 'Brigham', 'Young', 'Univ', 'studies', 'volition', 'severe acute respiratory syndrome', 'affect', 'affected'] + +#NLTK stopwords +nltk.download('stopwords') +stopwords = list(set(stopwords.words('English'))) +stopwords_manual = list(np.append(stopwords_manual, stopwords)) + +token_narrative_list = [] + +#Extract important narrative text +for i in range(len(R1_topics)): + analyzer = Analyzer(get_lucene_analyzer(stemmer='krovetz')) + tokens = analyzer.analyze(R1_topics['Narrative'][i]) + #Remove stopwords and duplicates from token + tokens = [w for w in tokens if not w in stopwords_manual] + tokens = list(set(tokens)) + token_narrative_list.append(tokens) + +#Tokenize question +token_question_list = [] + +#Extract important question text - NOT USED YET +for i in range(len(R1_topics)): + analyzer = Analyzer(get_lucene_analyzer(stemmer='krovetz')) + tokens = analyzer.analyze(R1_topics['Question'][i]) + #Remove stopwords and duplicates from token + tokens = [w for w in tokens if not w in stopwords_manual] + tokens = list(set(tokens)) + token_question_list.append(tokens) + +#Anserini searcher can take both query and keywords +#keywords_list = '2019-nCoV, SARS-CoV-2, COVID-19' +keywords_list = 'COVID-19' + +#Extract search results from the searcher +docid_list = [] +rank_list = [] +score_list = [] +topic_id_list = [] +title_list = [] +doi_list = [] + +print('Searching topics for documents') +#Search extra - will drop duplicates and excess to 1000 +n_papers = 1100 +for ii, row in R1_topics.iterrows(): + query = R1_topics['Query'][ii] + question = R1_topics['Question'][ii] + topic_num = R1_topics['Topic'][ii] + token_topic = ', '.join(token_narrative_list[ii]) + token_question = ','.join(token_question_list[ii]) + input_query = query + '. ' + token_question + '. ' + token_topic + ' . ' + keywords_list + + hits = full_searcher.search(q = input_query, k=n_papers) + print(topic_num) + #Each key is a qid, value is the anserini search list + for i in tqdm(range(0, n_papers), position = 0, leave = True): + topic_id_list.append(topic_num) + docid_list.append(hits[i].docid) + rank_list.append(str(i+1)) + score_list.append(hits[i].score) + title_list.append(hits[i].lucene_document.get("title")) + doi_list.append('https://doi.org/' + str(hits[i].lucene_document.get("doi"))) + + +#Make dataframe from lists generated from search +def TREC_df(topic_id_list, docid_list, rank_list, score_list, title_list, doi_list, run_param): + #Run-tag for TREC run requirements + Q0 = ['q0'] * len(topic_id_list) + qid = [run_param] * len(topic_id_list) + + df = {'topic': topic_id_list , 'q0':Q0, 'docid':docid_list, 'rank':rank_list, + 'score':score_list, 'title': title_list, 'doi':doi_list, 'qid':qid} + df = pd.DataFrame(df) + df = df[['topic', 'q0', 'docid', 'rank', 'score', 'title', 'doi', 'qid']] + + #Remove duplicates + df.drop_duplicates(subset=['topic', 'docid'], keep='first', inplace = True) + + #Re-rank + df['rank'] = df.groupby('topic')['score'].rank(ascending=False) + df['rank'] = df['rank'].astype(int) + + df = df[df['rank'] <= 1000] + #Reset index + df.reset_index(drop=True, inplace=True) + + #Get columns for submission + succinct_results = df[['topic', 'q0', 'docid', 'rank', 'score', 'qid']] + + return succinct_results + +full_df = TREC_df(topic_id_list, docid_list, rank_list, score_list, title_list, doi_list, 'FullTxt_run') +full_df.to_csv(os.path.join(Pyserini_files, 'full_R1.txt'), sep=' ', index=False, header=None) + +#Use Trec Eval to evaluate initial runs +#Run TREC_Eval +print('Running trec_eval on search results') +r = requests.get('https://ir.nist.gov/covidSubmit/data/qrels-rnd1.txt') +qrels_file = os.path.join(os.getcwd(), 'qrels.txt') +with open(qrels_file, 'wb') as f: + f.write(r.content) +qrels = TrecQrel(qrels_file) + +#Generate metrics for all 3 indices (1000 docs retrieved for each) +runs = procedures.list_of_runs_from_path(Pyserini_files, "*.txt") +results = procedures.evaluate_runs(runs, qrels, per_query=True) +p5 = procedures.extract_metric_from_results(results, "P_5") +p10 = procedures.extract_metric_from_results(results, "P_10") +Bpref = procedures.extract_metric_from_results(results, "bpref") +Mean_avgP = procedures.extract_metric_from_results(results, 'map') + +#Aggregate results to dataframe +runs_names = [os.path.basename(str(x)).split('.')[0] for x in runs] +p5_list = [] +p10_list = [] +map_list = [] +bpref_list = [] +ndcg_list = [] + +for i in range(len(runs)): + p5_list.append(p5[i][1]) + p10_list.append(p10[i][1]) + map_list.append(Mean_avgP[i][1]) + bpref_list.append(Bpref[i][1]) + +Result_df = {'Run':runs_names, 'P@5': p5_list, 'P@10': p10_list, 'MAP': map_list, 'Bpref': bpref_list} +Result_df = pd.DataFrame(Result_df) + +with pd.option_context('display.max_rows', None, 'display.max_columns', None): # more options can be specified also + print(Result_df) diff --git a/scripts/generate_wp_stat.py b/scripts/generate_wp_stat.py new file mode 100644 index 0000000000000000000000000000000000000000..333ff7057077db04cf28b0644b4b344fd4940f5a --- /dev/null +++ b/scripts/generate_wp_stat.py @@ -0,0 +1,32 @@ +from collections import defaultdict +import os +from tqdm import tqdm +import argparse +import json +import pickle + +parser = argparse.ArgumentParser(description='Extract term statistics on collection.') +parser.add_argument('--input', metavar='input file', help='input collection', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output pickle', + type=str, required=True) + +args = parser.parse_args() +print(args) + +res = defaultdict(int) +total = 0 + +for file_name in os.listdir(args.input): + file_path = os.path.join(args.input, file_name) + with open(file_path) as fin: + for line in tqdm(fin): + contents = json.loads(line)['contents'].split(' ') + for word in contents: + res[word] += 1 + total += 1 + +res['TOTAL'] = total + +with open(args.output, 'wb') as handle: + pickle.dump(res, handle, protocol=pickle.HIGHEST_PROTOCOL) diff --git a/scripts/kilt/anserini_retriever.py b/scripts/kilt/anserini_retriever.py new file mode 100644 index 0000000000000000000000000000000000000000..fd1f410d8c2b486ac338c637194d79519b0b4c1c --- /dev/null +++ b/scripts/kilt/anserini_retriever.py @@ -0,0 +1,171 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import multiprocessing +from multiprocessing.pool import ThreadPool + +from tqdm import tqdm +from pyserini.search.lucene import LuceneSearcher + +import kilt.kilt_utils as utils +from kilt.retrievers.base_retriever import Retriever + +import jnius + +from nltk import bigrams, word_tokenize, SnowballStemmer +from nltk.corpus import stopwords +import string + +ent_start_token = "[START_ENT]" +ent_end_token = "[END_ENT]" +STOPWORDS = set(stopwords.words('english') + list(string.punctuation)) +stemmer = SnowballStemmer("english") + + +def parse_hits(hits): + doc_ids = [] + doc_scores = [] + for hit in hits: + wikipedia_id = hit.docid.split('-')[0] + if wikipedia_id and wikipedia_id not in doc_ids: + doc_ids.append(wikipedia_id) + doc_scores.append(hit.score) + return doc_ids, doc_scores + + +def _get_predictions_thread(arguments): + + id = arguments["id"] + queries_data = arguments["queries_data"] + topk = arguments["topk"] + ranker = arguments["ranker"] + logger = arguments["logger"] + use_bigrams = arguments["use_bigrams"] + stem_bigrams = arguments["stem_bigrams"] + + if id == 0: + iter_ = tqdm(queries_data) + else: + iter_ = queries_data + + result_doc_ids = [] + result_doc_scores = [] + result_query_id = [] + + for query_element in iter_: + + query = ( + query_element["query"] + .replace(ent_start_token, "") + .replace(ent_end_token, "") + .strip() + ) + result_query_id.append(query_element["id"]) + + doc_ids = [] + doc_scores = [] + + if use_bigrams: + tokens = filter(lambda word: word.lower() not in STOPWORDS, word_tokenize(query)) + if stem_bigrams: + tokens = map(stemmer.stem, tokens) + bigram_query = bigrams(tokens) + bigram_query = " ".join(["".join(bigram) for bigram in bigram_query]) + query += " " + bigram_query + try: + hits = ranker.search(query, k=topk) + doc_ids, doc_scores = parse_hits(hits) + # doc_ids = [hit.docid for hit in hits] + # doc_scores = [hit.score for hit in hits] + + except RuntimeError as e: + if logger: + logger.warning("RuntimeError: {}".format(e)) + except jnius.JavaException as e: + if logger: + logger.warning("{query} jnius.JavaException: {}".format(query_element, e)) + if 'maxClauseCount' in str(e): + query = " ".join(query.split()[:950]) + hits = ranker.search(query, k=topk) + doc_ids, doc_scores = parse_hits(hits) + else: + print(query, str(e)) + raise e + # doc_ids = [hit.docid for hit in hits] + # doc_scores = [hit.score for hit in hits] + except Exception as e: + print(query, str(e)) + raise e + + result_doc_ids.append(doc_ids) + result_doc_scores.append(doc_scores) + + return result_doc_ids, result_doc_scores, result_query_id + + +class Anserini(Retriever): + def __init__(self, name, num_threads, index_dir=None, k1=0.9, b=0.4, use_bigrams=False, stem_bigrams=False): + super().__init__(name) + + self.num_threads = min(num_threads, int(multiprocessing.cpu_count())) + + # initialize a ranker per thread + self.arguments = [] + for id in tqdm(range(self.num_threads)): + ranker = LuceneSearcher(index_dir) + ranker.set_bm25(k1, b) + self.arguments.append( + { + "id": id, + "ranker": ranker, + "use_bigrams": use_bigrams, + "stem_bigrams": stem_bigrams + } + ) + + def fed_data(self, queries_data, topk, logger=None): + + chunked_queries = utils.chunk_it(queries_data, self.num_threads) + + for idx, arg in enumerate(self.arguments): + arg["queries_data"] = chunked_queries[idx] + arg["topk"] = topk + arg["logger"] = logger + + def run(self): + pool = ThreadPool(self.num_threads) + results = pool.map(_get_predictions_thread, self.arguments) + + all_doc_id = [] + all_doc_scores = [] + all_query_id = [] + provenance = {} + + for x in results: + i, s, q = x + all_doc_id.extend(i) + all_doc_scores.extend(s) + all_query_id.extend(q) + for query_id, doc_ids in zip(q, i): + provenance[query_id] = [] + for d_id in doc_ids: + provenance[query_id].append({"wikipedia_id": str(d_id).strip()}) + + pool.terminate() + pool.join() + + return all_doc_id, all_doc_scores, all_query_id, provenance + diff --git a/scripts/kilt/convert_kilt_100w_passage_tsv_to_jsonl.py b/scripts/kilt/convert_kilt_100w_passage_tsv_to_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..8c85bd324b0d1b64d650291ffe74e1d3b61e4a43 --- /dev/null +++ b/scripts/kilt/convert_kilt_100w_passage_tsv_to_jsonl.py @@ -0,0 +1,61 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import argparse +import pickle +import csv +from tqdm import tqdm +import os + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert KILT 100 words passage tsv into a 100-words Passage-level JSONL that can be processed by Pyserini') + parser.add_argument('--input', required=True, help='Path to the kilt_w100_title.tsv file') + parser.add_argument('--mapping', required=True, help='Path to the mapping_KILT_title.p file') + parser.add_argument('--output-dir', required=True, help='Path to the output directory') + parser.add_argument('--concat-title', action="store_true", default=False, help='Concatenate the title into each paragraph') + + args = parser.parse_args() + + # Map of title -> wikipedia id + KILT_mapping = pickle.load(open(args.mapping, "rb")) + + not_found = set() + with open(args.input, 'r') as f, open(os.path.join(args.output_dir, '100w_passage_kilt_knowledgesource.jsonl'), 'w') as outp: + tsv = csv.reader(f, delimiter="\t") + next(tsv) # Get rid of headers + for row in tqdm(tsv, mininterval=10.0, maxinterval=20.0): + i = row[0] + text = row[1] + title = row[2] + + if title not in KILT_mapping: + not_found.add(f"{title}#{i}") + continue + + wikipedia_id = str(KILT_mapping[title]) + + doc = {} + + doc["id"] = f"{wikipedia_id}#{i}" + doc["wikipedia_title"] = title + doc["wikipedia_id"] = wikipedia_id + doc["contents"] = f"{title}\n{text}" if args.concat_title else text + + _ = outp.write(json.dumps(doc)) + _ = outp.write('\n') + print(f"Not found: {not_found}") + diff --git a/scripts/kilt/convert_kilt_dpr_to_pyserini_format.py b/scripts/kilt/convert_kilt_dpr_to_pyserini_format.py new file mode 100644 index 0000000000000000000000000000000000000000..f5255ec9e90833cd0b3e29a507f195835bac389d --- /dev/null +++ b/scripts/kilt/convert_kilt_dpr_to_pyserini_format.py @@ -0,0 +1,81 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import pickle +import csv +from tqdm import tqdm +import glob +import os + +import faiss +from dpr.indexer.faiss_indexers import DenseFlatIndexer + + +# All files required for this script can be found at: +# https://github.com/facebookresearch/KILT/tree/master/kilt/retrievers#download-models-1 +# Note: Use this script +# https://github.com/huggingface/transformers/blob/053efc5d2d2e87833e9b7290a0dd83fa77cd6ae8/src/transformers/models/dpr/convert_dpr_original_checkpoint_to_pytorch.py +# to convert KILT's dpr_multi_set_f_bert.0 model into a PyTorch checkpoint + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert KILT-dpr corpus into the index & docid file read by pyserini') + parser.add_argument('--input_dir', required=True, help='Path to the input dir. Must contain the files: ' + 'kilt_w100_title.tsv,' + 'mapping_KILT_title.p,' + 'kilt_passages_2048_0.pkl') + parser.add_argument('--output_dir', required=True, help='Path of the output dir') + parser.add_argument('--passage', action="store_true", + help='If true, includes the index i in the docid, delimited by #,' + ' which makes it suitable for hybrid search w/ a passage level index') + + args = parser.parse_args() + + print('Loading KILT mapping...') + + with open(os.path.join(args.input_dir, 'mapping_KILT_title.p'), "rb") as f: + KILT_mapping = pickle.load(f) + + print('Creating docid file...') + not_found = set() + + with open(os.path.join(args.input_dir, 'kilt_w100_title.tsv'), 'r') as f, \ + open(os.path.join(args.input_dir, 'docid'), 'w') as outp: + tsv = csv.reader(f, delimiter='\t') + next(tsv) # skip headers + for row in tqdm(tsv, mininterval=10.0, maxinterval=20.0): + i = row[0] + title = row[2] + if title not in KILT_mapping: + not_found.add(f"{title}#{i}") + wikipedia_id = 'N/A' + else: + wikipedia_id = KILT_mapping[title] + docid = f"{wikipedia_id}#{i}" if args.passage else wikipedia_id + _ = outp.write(f'{docid}\n') + + print("Done writing docid file!") + print(f'Some documents did not have a docid in the mapping: {not_found}') + + print('Creating index file...') + ctx_files_pattern = f'{args.input_dir}/kilt_passages_2048_0.pkl' + input_paths = glob.glob(ctx_files_pattern) + + vector_size = 768 + index = DenseFlatIndexer(vector_size) + index.index_data(input_paths) + faiss.write_index(index, f'{args.output_dir}/index') + print('Done writing index file!') diff --git a/scripts/kilt/convert_kilt_to_document_jsonl.py b/scripts/kilt/convert_kilt_to_document_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..cb1612cefed4dc2416418238fa2278145b398b96 --- /dev/null +++ b/scripts/kilt/convert_kilt_to_document_jsonl.py @@ -0,0 +1,56 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import argparse +import string +from nltk import bigrams, word_tokenize, SnowballStemmer +from nltk.corpus import stopwords +from tqdm import tqdm + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert KILT Knowledge Source into a Document-level JSONL that can be processed by Pyserini') + parser.add_argument('--input', required=True, help='Path to the kilt_knowledgesource.json file') + parser.add_argument('--output', required=True, help='Path to the output directory and file name') + parser.add_argument('--bigrams', action='store_true', help='Enable bigrams') + parser.add_argument('--stem', action='store_true', help='Enable stemming on bigrams') + parser.add_argument('--flen', default=5903530, type=int, help='Number of lines in the file') + + args = parser.parse_args() + + FILE_LENGTH = args.flen + STOPWORDS = set(stopwords.words('english') + list(string.punctuation)) + stemmer = SnowballStemmer("english") + + with open(args.input, 'r') as f, open(f'{args.output}', 'w') as outp: + for line in tqdm(f, total=FILE_LENGTH, mininterval=10.0, maxinterval=20.0): + raw = json.loads(line) + doc = {} + doc["id"] = raw["_id"] + doc["contents"] = "".join(raw["text"]) + if args.bigrams: + tokens = filter(lambda word: word.lower() not in STOPWORDS, word_tokenize(doc["contents"])) + if args.stem: + tokens = map(stemmer.stem, tokens) + bigram_doc = bigrams(tokens) + bigram_doc = " ".join(["".join(bigram) for bigram in bigram_doc]) + doc["contents"] += " " + bigram_doc + doc["wikipedia_id"] = raw["wikipedia_id"] + doc["wikipedia_title"] = raw["wikipedia_title"] + doc["categories"] = raw["categories"] + _ = outp.write(json.dumps(doc)) + _ = outp.write('\n') + diff --git a/scripts/kilt/convert_kilt_to_passage_jsonl.py b/scripts/kilt/convert_kilt_to_passage_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..fe5540816e6222da6d64e5bd4278f9120c3b9a88 --- /dev/null +++ b/scripts/kilt/convert_kilt_to_passage_jsonl.py @@ -0,0 +1,73 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import argparse +from tqdm import tqdm +from nltk import bigrams, word_tokenize, SnowballStemmer +from nltk.corpus import stopwords +import string + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert KILT Knowledge Source into a Passage-level JSONL that can be processed by Pyserini') + parser.add_argument('--input', dest="input", required=True, help='Path to the kilt_knowledgesource.json file') + parser.add_argument('--output', dest="output", required=True, help='Path to the output directory and file name') + parser.add_argument('--bigrams', action='store_true', help='Enable bigrams') + parser.add_argument('--stem', action='store_true', help='Enable stemming on bigrams') + parser.add_argument('--sections', action='store_true', help='Split article by sections') + parser.add_argument('--flen', default=5903530, type=int, help='Number of lines in the file') + + args = parser.parse_args() + + FILE_LENGTH = args.flen + STOPWORDS = set(stopwords.words('english') + list(string.punctuation)) + stemmer = SnowballStemmer("english") + + with open(args.input, 'r') as f, open(f'{args.output}', 'w') as outp: + for line in tqdm(f, total=FILE_LENGTH, mininterval=10.0, maxinterval=20.0): + raw = json.loads(line) + + texts = raw["text"] + + if args.sections: + sections = [[]] + for i in range(1, len(texts)): + p = texts[i] + if p.startswith('Section::::'): + sections.append([]) + sections[-1].append(p) + texts = [raw["text"][0]] + ["".join(s) for s in sections] + + for i in range(1, len(texts)): + # The first passage is actually the wikipedia title + doc = {} + doc["id"] = f"{raw['_id']}-{i}" + p = texts[i] + if args.bigrams: + tokens = filter(lambda word: word.lower() not in STOPWORDS, word_tokenize(p)) + if args.stem: + tokens = map(stemmer.stem, tokens) + bigram_doc = bigrams(tokens) + bigram_doc = " ".join(["".join(bigram) for bigram in bigram_doc]) + p += " " + bigram_doc + doc["contents"] = raw["text"][0] + p + doc["wikipedia_id"] = raw["wikipedia_id"] + doc["wikipedia_title"] = raw["wikipedia_title"] + doc["categories"] = raw["categories"] + _ = outp.write(json.dumps(doc)) + _ = outp.write('\n') + diff --git a/scripts/kilt/dev_data.json b/scripts/kilt/dev_data.json new file mode 100644 index 0000000000000000000000000000000000000000..2d240451f607a9b9b08427249153c0b7e69460bd --- /dev/null +++ b/scripts/kilt/dev_data.json @@ -0,0 +1,23 @@ +{ + "Fact Checking": { + "FEVER": "KILT/data/fever-dev-kilt.jsonl" + }, + "Entity Linking": { + "AIDA-YAGO2": "KILT/data/aidayago2-dev-kilt.jsonl", + "WNED": "KILT/data/wned-dev-kilt.jsonl", + "CWEB": "KILT/data/cweb-dev-kilt.jsonl" + }, + "Slot Filling": { + "Zero Shot RE": "KILT/data/structured_zeroshot-dev-kilt.jsonl", + "T-REx": "KILT/data/trex-dev-kilt.jsonl" + }, + "Open Domain QA": { + "Natural Questions": "KILT/data/nq-dev-kilt.jsonl", + "HotpotQA": "KILT/data/hotpotqa-dev-kilt.jsonl", + "TriviaQA": "KILT/data/triviaqa-dev-kilt.jsonl", + "ELI5": "KILT/data/eli5-dev-kilt.jsonl" + }, + "Dialogue": { + "Wizard of Wikipedia": "KILT/data/wow-dev-kilt.jsonl" + } +} diff --git a/scripts/kilt/dev_data_no_entity_linking.json b/scripts/kilt/dev_data_no_entity_linking.json new file mode 100644 index 0000000000000000000000000000000000000000..5218b160f36074ff8d8010f7cc0908251e0054c8 --- /dev/null +++ b/scripts/kilt/dev_data_no_entity_linking.json @@ -0,0 +1,18 @@ +{ + "Fact Checking": { + "FEVER": "KILT/data/fever-dev-kilt.jsonl" + }, + "Slot Filling": { + "Zero Shot RE": "KILT/data/structured_zeroshot-dev-kilt.jsonl", + "T-REx": "KILT/data/trex-dev-kilt.jsonl" + }, + "Open Domain QA": { + "Natural Questions": "KILT/data/nq-dev-kilt.jsonl", + "HotpotQA": "KILT/data/hotpotqa-dev-kilt.jsonl", + "TriviaQA": "KILT/data/triviaqa-dev-kilt.jsonl", + "ELI5": "KILT/data/eli5-dev-kilt.jsonl" + }, + "Dialogue": { + "Wizard of Wikipedia": "KILT/data/wow-dev-kilt.jsonl" + } +} diff --git a/scripts/kilt/encode_kilt_topics.py b/scripts/kilt/encode_kilt_topics.py new file mode 100644 index 0000000000000000000000000000000000000000..6174da9edf2adfca817d8e4a0754427468d1ea91 --- /dev/null +++ b/scripts/kilt/encode_kilt_topics.py @@ -0,0 +1,53 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + +import pandas as pd +from tqdm import tqdm + +from pyserini.dsearch import DprQueryEncoder +from pyserini.query_iterator import get_query_iterator, TopicsFormat + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Compute embeddings for KILT topics') + parser.add_argument('--topics', required=True) + parser.add_argument('--output', default="embedding.pkl", help="Name and path to output file.") + parser.add_argument('--encoder', metavar='path to query encoder checkpoint or encoder name', + required=True, + help="Path to query encoder pytorch checkpoint or hgf encoder model name") + parser.add_argument('--tokenizer', metavar='name or path', + required=True, + help="Path to a hgf tokenizer name or path") + parser.add_argument('--device', metavar='device to run query encoder', required=False, default='cpu', + help="Device to run query encoder, cpu or [cuda:0, cuda:1, ...]") + args = parser.parse_args() + + query_iterator = get_query_iterator(args.topics, TopicsFormat.KILT) + query_encoder = DprQueryEncoder(encoder_dir=args.encoder, tokenizer_name=args.tokenizer, device=args.device) + + texts = [] + embeddings = [] + for i, (topic_id, text) in enumerate(tqdm(query_iterator)): + texts.append(text) + embeddings.append(query_encoder.encode(text)) + + df = pd.DataFrame({ + 'text': texts, + 'embedding': embeddings + }) + + df.to_pickle(args.output) diff --git a/scripts/kilt/eval_runs.sh b/scripts/kilt/eval_runs.sh new file mode 100644 index 0000000000000000000000000000000000000000..e02824783473066fb2bde9487e813b27ac8b5742 --- /dev/null +++ b/scripts/kilt/eval_runs.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -x + +python KILT/kilt/eval_retrieval.py $1/fever-dev-kilt.jsonl KILT/data/fever-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/aidayago2-dev-kilt.jsonl KILT/data/aidayago2-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/wned-dev-kilt.jsonl KILT/data/wned-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/cweb-dev-kilt.jsonl KILT/data/cweb-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/trex-dev-kilt.jsonl KILT/data/trex-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/structured_zeroshot-dev-kilt.jsonl KILT/data/structured_zeroshot-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/nq-dev-kilt.jsonl KILT/data/nq-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/hotpotqa-dev-kilt.jsonl KILT/data/hotpotqa-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/triviaqa-dev-kilt.jsonl KILT/data/triviaqa-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/eli5-dev-kilt.jsonl KILT/data/eli5-dev-kilt.jsonl --ks $2 +python KILT/kilt/eval_retrieval.py $1/wow-dev-kilt.jsonl KILT/data/wow-dev-kilt.jsonl --ks $2 + diff --git a/scripts/kilt/run_drqa_retrieval.py b/scripts/kilt/run_drqa_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..a0456ee51f0305d3be0b88f5e12edb1284f8deba --- /dev/null +++ b/scripts/kilt/run_drqa_retrieval.py @@ -0,0 +1,80 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import argparse + +from kilt import retrieval +from kilt import kilt_utils as utils + +from kilt.retrievers import DrQA_tfidf + + +def execute( + logger, test_config_json, retriever, log_directory, model_name, output_folder, topk +): + + # run evaluation + retrieval.run( + test_config_json, retriever, model_name, logger, output_folder=output_folder, topk=topk + ) + + +def main(args): + + # load configs + with open(args.config, "r") as fin: + test_config_json = json.load(fin) + + # create a new directory to log and store results + log_directory = utils.create_logdir_with_timestamp("logs") + logger = None + + logger = utils.init_logging(log_directory, args.name, logger) + logger.info("loading {} ...".format(args.name)) + + retriever = DrQA_tfidf.DrQA(args.name, args.index_dir, args.threads) + + execute( + logger, + test_config_json, + retriever, + log_directory, + args.name, + f"{args.output_dir}/{args.name}", + args.topk + ) + + +if __name__ == '__main__': + + parser = argparse.ArgumentParser(description='Execute retrieval on KILT') + parser.add_argument('--config', required=False, default="kilt/configs/dev_data.json", + help='Config json containing which tasks to run') + parser.add_argument('--index_dir', required=False, default="models/kilt_db_simple.npz", + help='Path to the DRQA index directory') + parser.add_argument('--output_dir', required=False, default="outputs", + help='Output directory') + parser.add_argument('--topk', required=False, type=int, default=100, + help='Return the top k elements for a query') + parser.add_argument('--name', required=False, default="drqa", + help='Name of the retriever') + parser.add_argument('--threads', required=False, type=int, default=8, + help='Num of threads') + + args = parser.parse_args() + main(args) + diff --git a/scripts/kilt/run_retrieval.py b/scripts/kilt/run_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..24f673b1c8f3ab6e9826851b259cd4b84b064fc4 --- /dev/null +++ b/scripts/kilt/run_retrieval.py @@ -0,0 +1,86 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import argparse + +from kilt import retrieval +from kilt import kilt_utils as utils + +from anserini_retriever import Anserini + + +def execute( + logger, test_config_json, retriever, log_directory, model_name, output_folder, topk +): + + # run evaluation + retrieval.run( + test_config_json, retriever, model_name, logger, output_folder=output_folder, topk=topk + ) + + +def main(args): + + # load configs + with open(args.config, "r") as fin: + test_config_json = json.load(fin) + + # create a new directory to log and store results + log_directory = utils.create_logdir_with_timestamp("logs") + logger = None + + logger = utils.init_logging(log_directory, args.name, logger) + logger.info("loading {} ...".format(args.name)) + + retriever = Anserini(args.name, args.threads, args.index_dir, args.k1, args.b, args.bigrams, args.stem) + + execute( + logger, + test_config_json, + retriever, + log_directory, + args.name, + f"{args.output_dir}/{args.name}", + args.topk + ) + + +if __name__ == '__main__': + + parser = argparse.ArgumentParser(description='Execute retrieval on KILT') + parser.add_argument('--config', required=False, default="kilt/configs/dev_data.json", + help='Config json containing which tasks to run') + parser.add_argument('--index_dir', required=False, default="anserini/indexes/document_kilt_knowledgesource", + help='Path to the Anserini index directory') + parser.add_argument('--output_dir', required=False, default="outputs", + help='Output directory') + parser.add_argument('--topk', required=False, type=int, default=100, + help='Return the top k elements for a query') + parser.add_argument('--k1', required=False, type=float, default=0.9, + help='BM25 k1 parameter') + parser.add_argument('--b', required=False, type=float, default=0.4, + help='BM25 k1 parameter') + parser.add_argument('--name', required=False, default="anserini", + help='Name of the retriever') + parser.add_argument('--threads', required=False, type=int, default=8, + help='Num of threads') + parser.add_argument('--bigrams', action='store_true', help='Enable bigrams') + parser.add_argument('--stem', action='store_true', help='Enable stemming on bigrams') + + args = parser.parse_args() + main(args) + diff --git a/scripts/ltr_msmarco/append_d2q_to_collection_jsonl.py b/scripts/ltr_msmarco/append_d2q_to_collection_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..5dc0d5bafa114f1d13411898bd209abddd068dff --- /dev/null +++ b/scripts/ltr_msmarco/append_d2q_to_collection_jsonl.py @@ -0,0 +1,69 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +from pyserini.analysis import Analyzer, get_lucene_analyzer +""" +append d2q prediction as an extra field to collection jsonl +""" +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Converts MSMARCO\'s tsv collection to Anserini jsonl files.') + parser.add_argument('--collection_path', required=True, help='MS MARCO .tsv collection file') + parser.add_argument('--predictions', required=True, help='File containing predicted queries.') + parser.add_argument('--output_folder', required=True, help='output folder') + parser.add_argument('--max_docs_per_file', default=1000000, type=int, + help='maximum number of documents in each jsonl file.') + + args = parser.parse_args() + if not os.path.exists(args.output_folder): + os.makedirs(args.output_folder) + analyzer = Analyzer(get_lucene_analyzer()) + print('Converting collection...') + + file_index = 0 + new_words = 0 + total_words = 0 + + with open(args.collection_path) as f_corpus, open(args.predictions) as f_pred: + for i, (line_doc, line_pred) in enumerate(zip(f_corpus, f_pred)): + # Write to a new file when the current one reaches maximum capacity. + if i % args.max_docs_per_file == 0: + if i > 0: + output_jsonl_file.close() + output_path = os.path.join(args.output_folder, f'docs{file_index:02d}.json') + output_jsonl_file = open(output_path, 'w') + file_index += 1 + + doc_json = json.loads(line_doc) + pred_text = line_pred.rstrip() + + predict_text = pred_text + ' ' + analyzed = analyzer.analyze(predict_text) + for token in analyzed: + assert ' ' not in token + predict = ' '.join(analyzed) + + doc_json['predict'] = predict + output_jsonl_file.write(json.dumps(doc_json) + '\n') + + if i % 100000 == 0: + print('Converted {} docs in {} files'.format(i, file_index)) + + output_jsonl_file.close() + print('Done!') \ No newline at end of file diff --git a/scripts/ltr_msmarco/convert_collection_to_jsonl.py b/scripts/ltr_msmarco/convert_collection_to_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..fed296af0133314c87113976c13377226989d0af --- /dev/null +++ b/scripts/ltr_msmarco/convert_collection_to_jsonl.py @@ -0,0 +1,58 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os +import argparse + +""" +convert collection to jsonl +""" +def convert_collection(args): + print('Converting collection...') + file_index = 0 + with open(args.collection_path, encoding='utf-8') as f: + for i, line in enumerate(f): + doc_json = line.rstrip() + + if i % args.max_docs_per_file == 0: + if i > 0: + output_jsonl_file.close() + output_path = os.path.join(args.output_folder, 'docs{:02d}.json'.format(file_index)) + output_jsonl_file = open(output_path, 'w', encoding='utf-8', newline='\n') + file_index += 1 + output_jsonl_file.write(doc_json + '\n') + + if i % 100000 == 0: + print(f'Converted {i:,} docs, writing into file {file_index}') + + output_jsonl_file.close() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert MSMARCO tsv collection into jsonl files for Anserini.') + parser.add_argument('--collection-path', required=True, help='Path to MS MARCO tsv collection.') + parser.add_argument('--output-folder', required=True, help='Output folder.') + parser.add_argument('--max-docs-per-file', default=1000000, type=int, + help='Maximum number of documents in each jsonl file.') + + args = parser.parse_args() + + if not os.path.exists(args.output_folder): + os.makedirs(args.output_folder) + + convert_collection(args) + print('Done!') \ No newline at end of file diff --git a/scripts/ltr_msmarco/convert_common.py b/scripts/ltr_msmarco/convert_common.py new file mode 100644 index 0000000000000000000000000000000000000000..6475cbb8368982da0b94f585f9f5e2aafc93306d --- /dev/null +++ b/scripts/ltr_msmarco/convert_common.py @@ -0,0 +1,143 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import re +import spacy +""" +This file provides helpers to convert passage and queries +""" +def read_stopwords(fileName='stopwords.txt', lower_case=True): + """Reads a list of stopwords from a file. By default the words + are read from a standard repo location and are lower_cased. + :param fileName a stopword file name + :param lower_case a boolean flag indicating if lowercasing is needed. + :return a list of stopwords + """ + stopwords = set() + with open(fileName) as f: + for w in f: + w = w.strip() + if w: + if lower_case: + w = w.lower() + stopwords.add(w) + return stopwords + +def is_alpha_num(s): + return s and (re.match("^[a-zA-Z-_.0-9]+$", s) is not None) + +class SpacyTextParser: + def __init__(self, model_name, stopwords, + remove_punct=True, + sent_split=False, + keep_only_alpha_num=False, + lower_case=True, + enable_POS=True): + """Constructor. + :param model_name a name of the spacy model to use, e.g., en_core_web_sm + :param stopwords a list of stop words to be excluded (case insensitive); + a token is also excluded when its lemma is in the stop word list. + :param remove_punct a bool flag indicating if the punctuation tokens need to be removed + :param sent_split a bool flag indicating if sentence splitting is necessary + :param keep_only_alpha_num a bool flag indicating if we need to keep only alpha-numeric characters + :param enable_POS a bool flag that enables POS tagging (which, e.g., can improve lemmatization) + """ + + disable_list = ['ner', 'parser'] + if not enable_POS: + disable_list.append('tagger') + print('Disabled Spacy components: ', disable_list) + + self._nlp = spacy.load(model_name, disable=disable_list) + if sent_split: + sentencizer = self._nlp.create_pipe("sentencizer") + self._nlp.add_pipe(sentencizer) + + self._remove_punct = remove_punct + self._stopwords = frozenset([w.lower() for w in stopwords]) + self._keep_only_alpha_num = keep_only_alpha_num + self._lower_case = lower_case + + @staticmethod + def _basic_clean(text): + return text.replace("’", "'") + + def __call__(self, text): + """A thin wrapper that merely calls spacy. + :param text input text string + :return a spacy Doc object + """ + + return self._nlp(SpacyTextParser._basic_clean(text)) + + def proc_text(self, text): + """Process text, remove stopwords and obtain lemmas, but does not split into sentences. + This function should not emit newlines! + :param text input text string + :return a tuple (lemmatized text, original-form text). Text is white-space separated. + """ + + lemmas = [] + tokens = [] + doc = self(text) + for tokObj in doc: + if self._remove_punct and tokObj.is_punct: + continue + lemma = tokObj.lemma_ + text = tokObj.text + if self._keep_only_alpha_num and not is_alpha_num(text): + continue + tok1 = text.lower() + tok2 = lemma.lower() + if tok1 in self._stopwords or tok2 in self._stopwords: + continue + + if self._lower_case: + text = text.lower() + lemma = lemma.lower() + + lemmas.append(lemma) + tokens.append(text) + + return ' '.join(lemmas), ' '.join(tokens) + + +def get_retokenized(tokenizer, text): + """Obtain a space separated re-tokenized text. + :param tokenizer: a tokenizer that has the function + tokenize that returns an array of tokens. + :param text: a text to re-tokenize. + """ + return ' '.join(tokenizer.tokenize(text)) + + +def add_retokenized_field(data_entry, + src_field, + dst_field, + tokenizer): + """ + Create a re-tokenized field from an existing one. + :param data_entry: a dictionary of entries (keys are field names, values are text items) + :param src_field: a source field + :param dst_field: a target field + :param tokenizer: a tokenizer to use, if None, nothing is done + """ + if tokenizer is not None: + dst = '' + if src_field in data_entry: + dst = get_retokenized(tokenizer, data_entry[src_field]) + + data_entry[dst_field] = dst \ No newline at end of file diff --git a/scripts/ltr_msmarco/convert_msmarco_passage_doc_to_anserini.py b/scripts/ltr_msmarco/convert_msmarco_passage_doc_to_anserini.py new file mode 100644 index 0000000000000000000000000000000000000000..819989319780f37927a27988df76d4243992155c --- /dev/null +++ b/scripts/ltr_msmarco/convert_msmarco_passage_doc_to_anserini.py @@ -0,0 +1,92 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +''' +Segment the documents and append their url, title, predicted queries to them. Then, they are saved into +json which can be used for indexing. +''' + +import argparse +import gzip +import json +import os +import spacy +from tqdm import tqdm +import re + +def create_segments(doc_text, max_length, stride): + doc_text = doc_text.strip() + doc = nlp(doc_text[:10000]) + sentences = [str(sent).strip() for sent in doc.sents] + segments = [] + + for i in range(0, len(sentences), stride): + segment = " ".join(sentences[i:i+max_length]) + segments.append(segment) + if i + max_length >= len(sentences): + break + return segments + +parser = argparse.ArgumentParser( + description='Concatenate MS MARCO original docs with predicted queries') +parser.add_argument('--original_docs_path', required=True, help='MS MARCO .tsv corpus file.') +parser.add_argument('--doc_ids_path', required=True, help='File mapping segments to doc ids.') +parser.add_argument('--output_docs_path', required=True, help='Output file in the anserini jsonl format.') +parser.add_argument('--predictions_path', default=None, help='File containing predicted queries.') +parser.add_argument('--max_length', default=3) +parser.add_argument('--stride', default=1) +args = parser.parse_args() + +os.makedirs(os.path.dirname(args.output_docs_path), exist_ok=True) + +f_corpus = gzip.open(args.original_docs_path, mode='rt') +f_out = open(args.output_docs_path, 'w') +max_length = int(args.max_length) +stride = int(args.stride) +nlp = spacy.blank("en") +nlp.add_pipe("sentencizer") + +print('Spliting documents...') +doc_id_ref = None +if args.predictions_path == None: + doc_ids_queries = zip(open(args.doc_ids_path)) +else: + doc_ids_queries = zip(open(args.doc_ids_path),open(args.predictions_path)) +for doc_id_query in tqdm(doc_ids_queries): + doc_id = doc_id_query[0].strip() + if doc_id != doc_id_ref: + f_doc_id, doc_url, doc_title, doc_text = next(f_corpus).split('\t') + while f_doc_id != doc_id: + f_doc_id, doc_url, doc_title, doc_text = next(f_corpus).split('\t') + segments = create_segments(doc_text, args.max_length, args.stride) + seg_id = 0 + else: + seg_id += 1 + doc_seg = f'{doc_id}#{seg_id}' + if seg_id < len(segments): + segment = segments[seg_id] + if args.predictions_path == None: + expanded_text = f'{doc_url} {doc_title} {segment}' + else: + predicted_queries_partial = doc_id_query[1] + expanded_text = f'{doc_url} {doc_title} {segment} {predicted_queries_partial}' + output_dict = {'id': doc_seg, 'contents': expanded_text} + f_out.write(json.dumps(output_dict) + '\n') + doc_id_ref = doc_id + +f_corpus.close() +f_out.close() +print('Done!') \ No newline at end of file diff --git a/scripts/ltr_msmarco/convert_passage.py b/scripts/ltr_msmarco/convert_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..74026280b6c01b7d5202d9cb93813653e1dde8ab --- /dev/null +++ b/scripts/ltr_msmarco/convert_passage.py @@ -0,0 +1,136 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import multiprocessing +from joblib import Parallel, delayed +import json +import argparse +from transformers import AutoTokenizer, AutoModel +import spacy +import re +from convert_common import read_stopwords, SpacyTextParser, get_retokenized +from pyserini.analysis import Analyzer, get_lucene_analyzer +import time +import os +""" +add fields to jsonl with text(lemmatized), text_unlemm, contents(analyzer), raw, text_bert_tok(BERT token) +""" + +parser = argparse.ArgumentParser(description='Convert MSMARCO-adhoc documents.') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) +parser.add_argument('--max_doc_size', metavar='max doc size bytes', + help='the threshold for the document size, if a document is larger it is truncated', + type=int, default=16536 ) +parser.add_argument('--proc_qty', metavar='# of processes', help='# of NLP processes to span', + type=int, default=multiprocessing.cpu_count() - 2) + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +inpFile = open(args.input) +outFile = open(args.output, 'w') +maxDocSize = args.max_doc_size + + +def batch_file(iterable, n=10000): + batch = [] + for line in iterable: + batch.append(line) + if len(batch) == n: + yield batch + batch = [] + if len(batch)>0: + yield batch + batch = [] + return + +def batch_process(batch): + if(os.getcwd().endswith('ltr_msmarco')): + stopwords = read_stopwords('stopwords.txt', lower_case=True) + else: + stopwords = read_stopwords('./scripts/ltr_msmarco/stopwords.txt', lower_case=True) + nlp = SpacyTextParser('en_core_web_sm', stopwords, keep_only_alpha_num=True, lower_case=True) + analyzer = Analyzer(get_lucene_analyzer()) + #nlp_ent = spacy.load("en_core_web_sm") + bert_tokenizer =AutoTokenizer.from_pretrained("bert-base-uncased") + + def process(line): + if not line: + return None + + line = line[:maxDocSize] # cut documents that are too long! + fields = line.split('\t') + if len(fields) != 2: + return None + + pid, body = fields + + text, text_unlemm = nlp.proc_text(body) + + + #doc = nlp_ent(body) + #entity = {} + #for i in range(len(doc.ents)): + #entity[doc.ents[i].text] = doc.ents[i].label_ + #entity = json.dumps(entity) + + analyzed = analyzer.analyze(body) + for token in analyzed: + assert ' ' not in token + contents = ' '.join(analyzed) + + doc = {"id": pid, + "text": text, + "text_unlemm": text_unlemm, + 'contents': contents, + "raw": body} + doc["text_bert_tok"] = get_retokenized(bert_tokenizer, body.lower()) + return doc + res = [] + start = time.time() + for line in batch: + res.append(process(line)) + if len(res) % 1000 == 0: + end = time.time() + print(f'finish {len(res)} using {end-start}') + start = end + return res + + +if __name__ == '__main__': + proc_qty = args.proc_qty + print(f'Spanning {proc_qty} processes') + pool = Parallel(n_jobs=proc_qty, verbose=10) + ln = 0 + for batch_json in pool([delayed(batch_process)(batch) for batch in batch_file(inpFile)]): + for docJson in batch_json: + ln = ln + 1 + if docJson is not None: + outFile.write(json.dumps(docJson) + '\n') + else: + print('Ignoring misformatted line %d' % ln) + + if ln % 100 == 0: + print('Processed %d passages' % ln) + + print('Processed %d passages' % ln) + + inpFile.close() + outFile.close() diff --git a/scripts/ltr_msmarco/convert_passage_doc.py b/scripts/ltr_msmarco/convert_passage_doc.py new file mode 100644 index 0000000000000000000000000000000000000000..675e7ec7495f53014c6806754f4f289538532bca --- /dev/null +++ b/scripts/ltr_msmarco/convert_passage_doc.py @@ -0,0 +1,135 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import multiprocessing +from joblib import Parallel, delayed +import json +import argparse +from transformers import AutoTokenizer, AutoModel +import spacy +import re +from convert_common import read_stopwords, SpacyTextParser, get_retokenized +from pyserini.analysis import Analyzer, get_lucene_analyzer +import time +import os +""" +add fields to jsonl with text(lemmatized), text_unlemm, contents(analyzer), raw, text_bert_tok(BERT token) +""" + +parser = argparse.ArgumentParser(description='Convert MSMARCO-adhoc documents.') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--input-format', metavar='input format', help='input format', + type=str, default='passage') +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) +parser.add_argument('--max_doc_size', metavar='max doc size bytes', + help='the threshold for the document size, if a document is larger it is truncated', + type=int, default=16536 ) +parser.add_argument('--proc_qty', metavar='# of processes', help='# of NLP processes to span', + type=int, default=16)#multiprocessing.cpu_count() - 2) + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +inpFile = open(args.input) +outFile = open(args.output, 'w') +maxDocSize = args.max_doc_size + + +def batch_file(iterable, n=10000): + batch = [] + for line in iterable: + batch.append(line) + if len(batch) == n: + yield batch + batch = [] + if len(batch)>0: + yield batch + batch = [] + return + +def batch_process(batch): + #assume call the script from the root dir + stopwords = read_stopwords('./scripts/ltr_msmarco/stopwords.txt', lower_case=True) + nlp = SpacyTextParser('en_core_web_sm', stopwords, keep_only_alpha_num=True, lower_case=True) + analyzer = Analyzer(get_lucene_analyzer()) + bert_tokenizer =AutoTokenizer.from_pretrained("bert-base-uncased") + + def process(line): + if not line: + return None + json_line = json.loads(line) + pid = json_line['id'] + body = json_line['contents'] + #url = json_line['url'] + #title = json_line['title'] + + text, text_unlemm = nlp.proc_text(body) + + #_,title_unlemm = nlp.proc_text(title) + + analyzed = analyzer.analyze(body) + for token in analyzed: + assert ' ' not in token + contents = ' '.join(analyzed) + + doc = {"id": pid, + "text": text, + "text_unlemm": text_unlemm, + 'contents': contents, + #"title_unlemm": title_unlemm, + #"url": url, + "raw": body} + + if (len(body)>512): + doc["text_bert_tok"] = get_retokenized(bert_tokenizer, body.lower()[:512]) + else: + doc["text_bert_tok"] = get_retokenized(bert_tokenizer, body.lower()) + return doc + + res = [] + start = time.time() + for line in batch: + res.append(process(line)) + if len(res) % 10000 == 0: + end = time.time() + print(f'finish {len(res)} using {end-start}') + start = end + return res + + +if __name__ == '__main__': + proc_qty = args.proc_qty + print(f'Spanning {proc_qty} processes') + pool = Parallel(n_jobs=proc_qty, verbose=10) + ln = 0 + for batch_json in pool([delayed(batch_process)(batch) for batch in batch_file(inpFile)]): + for docJson in batch_json: + ln = ln + 1 + if docJson is not None: + outFile.write(json.dumps(docJson) + '\n') + else: + print('Ignoring misformatted line %d' % ln) + + if ln % 100 == 0: + print('Processed %d passages' % ln) + + print('Processed %d passages' % ln) + + inpFile.close() + outFile.close() \ No newline at end of file diff --git a/scripts/ltr_msmarco/convert_queries.py b/scripts/ltr_msmarco/convert_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..f96fd1c96f2776105971ad8af9e3b1f130964ffd --- /dev/null +++ b/scripts/ltr_msmarco/convert_queries.py @@ -0,0 +1,104 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Convert MSMARCO queries""" + +import json +import argparse +from transformers import AutoTokenizer, AutoModel +import spacy +from convert_common import read_stopwords, SpacyTextParser, get_retokenized +from pyserini.analysis import Analyzer, get_lucene_analyzer +from tqdm import tqdm +import os +""" +add fields to query json with text(lemmatized), text_unlemm, contents(analyzer), raw, entity(NER), text_bert_tok(BERT token) +""" + +parser = argparse.ArgumentParser(description='Convert MSMARCO-adhoc queries.') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) +parser.add_argument('--min_query_token_qty', type=int, default=0, + metavar='min # of query tokens', help='ignore queries that have smaller # of tokens') + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +inpFile = open(args.input) +outFile = open(args.output, 'w') +minQueryTokQty = args.min_query_token_qty +if os.getcwd().endswith('ltr_msmarco'): + stopwords = read_stopwords('stopwords.txt', lower_case=True) +else: + stopwords = read_stopwords('./scripts/ltr_msmarco/stopwords.txt', lower_case=True) +print(stopwords) +nlp = SpacyTextParser('en_core_web_sm', stopwords, keep_only_alpha_num=True, lower_case=True) +analyzer = Analyzer(get_lucene_analyzer()) +nlp_ent = spacy.load("en_core_web_sm") +bert_tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") + +# Input file is a TSV file +ln = 0 +for line in tqdm(inpFile): + ln += 1 + line = line.strip() + if not line: + continue + fields = line.split('\t') + if len(fields) != 2: + print('Misformated line %d ignoring:' % ln) + print(line.replace('\t', '')) + continue + + did, query = fields + + query_lemmas, query_unlemm = nlp.proc_text(query) + analyzed = analyzer.analyze(query) + for token in analyzed: + if ' ' in token: + print(analyzed) + + query_toks = query_lemmas.split() + + doc = nlp_ent(query) + entity = {} + for i in range(len(doc.ents)): + entity[doc.ents[i].text] = doc.ents[i].label_ + entity = json.dumps(entity) + + if len(query_toks) >= minQueryTokQty: + doc = {"id": did, + "text": query_lemmas, + "text_unlemm": query_unlemm, + "analyzed": ' '.join(analyzed), + "entity": entity, + "raw": query} + + doc["text_bert_tok"] = get_retokenized(bert_tokenizer, query.lower()) + + docStr = json.dumps(doc) + '\n' + outFile.write(docStr) + + if ln % 10000 == 0: + print('Processed %d queries' % ln) + +print('Processed %d queries' % ln) + +inpFile.close() +outFile.close() \ No newline at end of file diff --git a/scripts/ltr_msmarco/generate_document_score_withmaxP.py b/scripts/ltr_msmarco/generate_document_score_withmaxP.py new file mode 100644 index 0000000000000000000000000000000000000000..6db258d9dc4368d7cdd426274026d56cf4fe625b --- /dev/null +++ b/scripts/ltr_msmarco/generate_document_score_withmaxP.py @@ -0,0 +1,28 @@ +from tqdm import tqdm +import collections +import argparse + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Generate document level score') + parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) + parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) + args = parser.parse_args() + + scores = collections.defaultdict(dict) + with open(args.input) as fin: + for line in tqdm(fin): + qid, _, pid, rank, score, _ = line.split('\t') + score = float(score) + docid = pid.split('#')[0] + if (qid not in scores or docid not in scores[qid] or score > scores[qid][docid]): + scores[qid][docid] = score + + with open(args.output, 'w') as fout: + for qid, docid_score in tqdm(scores.items()): + rank = 1 + docid_score = sorted(docid_score.items(),key=lambda kv: kv[1], reverse=True) + for docid, score in docid_score: + fout.write(f'{qid}\t{docid}\t{rank}\n') + rank += 1 diff --git a/scripts/ltr_msmarco/stopwords.txt b/scripts/ltr_msmarco/stopwords.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d22d7fd67d0af018a9afb8212017fb56bdde893 --- /dev/null +++ b/scripts/ltr_msmarco/stopwords.txt @@ -0,0 +1,425 @@ +a +about +above +according +across +after +afterwards +again +against +albeit +all +almost +alone +along +already +also +although +always +am +among +amongst +an +and +another +any +anybody +anyhow +anyone +anything +anyway +anywhere +apart +are +around +as +at +av +be +became +because +become +becomes +becoming +been +before +beforehand +behind +being +below +beside +besides +between +beyond +both +but +by +can +cannot +canst +certain +cf +choose +contrariwise +cos +could +cu +day +do +does +doesn't +doing +dost +doth +double +down +dual +during +each +either +else +elsewhere +enough +et +etc +even +ever +every +everybody +everyone +everything +everywhere +except +excepted +excepting +exception +exclude +excluding +exclusive +far +farther +farthest +few +ff +first +for +formerly +forth +forward +from +front +further +furthermore +furthest +get +go +had +halves +hardly +has +hast +hath +have +he +hence +henceforth +her +here +hereabouts +hereafter +hereby +herein +hereto +hereupon +hers +herself +him +himself +hindmost +his +hither +hitherto +how +however +howsoever +i +ie +if +in +inasmuch +inc +include +included +including +indeed +indoors +inside +insomuch +instead +into +inward +inwards +is +it +its +itself +just +kind +kg +km +last +latter +latterly +less +lest +let +like +little +ltd +many +may +maybe +me +meantime +meanwhile +might +moreover +most +mostly +more +mr +mrs +ms +much +must +my +myself +namely +need +neither +never +nevertheless +next +no +nobody +none +nonetheless +noone +nope +nor +not +nothing +notwithstanding +now +nowadays +nowhere +of +off +often +ok +on +once +one +only +onto +or +other +others +otherwise +ought +our +ours +ourselves +out +outside +over +own +per +perhaps +plenty +provide +quite +rather +really +round +said +sake +same +sang +save +saw +see +seeing +seem +seemed +seeming +seems +seen +seldom +selves +sent +several +shalt +she +should +shown +sideways +since +slept +slew +slung +slunk +smote +so +some +somebody +somehow +someone +something +sometime +sometimes +somewhat +somewhere +spake +spat +spoke +spoken +sprang +sprung +stave +staves +still +such +supposing +than +that +the +thee +their +them +themselves +then +thence +thenceforth +there +thereabout +thereabouts +thereafter +thereby +therefore +therein +thereof +thereon +thereto +thereupon +these +they +this +those +thou +though +thrice +through +throughout +thru +thus +thy +thyself +till +to +together +too +toward +towards +ugh +unable +under +underneath +unless +unlike +until +up +upon +upward +upwards +us +use +used +using +very +via +vs +want +was +we +week +well +were +what +whatever +whatsoever +when +whence +whenever +whensoever +where +whereabouts +whereafter +whereas +whereat +whereby +wherefore +wherefrom +wherein +whereinto +whereof +whereon +wheresoever +whereto +whereunto +whereupon +wherever +wherewith +whether +whew +which +whichever +whichsoever +while +whilst +whither +who +whoa +whoever +whole +whom +whomever +whomsoever +whose +whosoever +why +will +wilt +with +within +without +worse +worst +would +wow +ye +yet +year +yippee +you +your +yours +yourself +yourselves +n't +'d +'ll +'m +'re +'s +'ves \ No newline at end of file diff --git a/scripts/ltr_msmarco/train_ltr_model.py b/scripts/ltr_msmarco/train_ltr_model.py new file mode 100644 index 0000000000000000000000000000000000000000..2df43b19c2333082160f68e4d2969826c2abd9d7 --- /dev/null +++ b/scripts/ltr_msmarco/train_ltr_model.py @@ -0,0 +1,636 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import datetime +import glob +import hashlib +import multiprocessing +import pickle +import os +import random +import subprocess +import uuid +import json +import time + +import sys + +sys.path.append('..') + +import numpy as np +import pandas as pd +import lightgbm as lgb +from collections import defaultdict +from tqdm import tqdm +from pyserini.search.lucene.ltr import * +import argparse + +""" +train a LTR model with lambdaRank library and save to pickle for future inference +run from python root dir +""" +def train_data_loader(task='triple', neg_sample=20, random_seed=12345): + print(f'train_{task}_sampled_with_{neg_sample}_{random_seed}.pickle') + if os.path.exists(f'./collections/msmarco-ltr-passage/train_{task}_sampled_with_{neg_sample}_{random_seed}.pickle'): + sampled_train = pd.read_pickle(f'./collections/msmarco-ltr-passage/train_{task}_sampled_with_{neg_sample}_{random_seed}.pickle') + print(sampled_train.shape) + print(sampled_train.index.get_level_values('qid').drop_duplicates().shape) + print(sampled_train.groupby('qid').count().mean()) + print(sampled_train.head(10)) + print(sampled_train.info()) + return sampled_train + else: + if task == 'triple': + train = pd.read_csv('./collections/msmarco-passage/qidpidtriples.train.full.2.tsv', sep="\t", + names=['qid', 'pos_pid', 'neg_pid'], dtype=np.int32) + pos_half = train[['qid', 'pos_pid']].rename(columns={"pos_pid": "pid"}).drop_duplicates() + pos_half['rel'] = np.int32(1) + neg_half = train[['qid', 'neg_pid']].rename(columns={"neg_pid": "pid"}).drop_duplicates() + neg_half['rel'] = np.int32(0) + del train + sampled_neg_half = [] + for qid, group in tqdm(neg_half.groupby('qid')): + sampled_neg_half.append(group.sample(n=min(neg_sample, len(group)), random_state=random_seed)) + sampled_train = pd.concat([pos_half] + sampled_neg_half, axis=0, ignore_index=True) + sampled_train = sampled_train.sort_values(['qid', 'pid']).set_index(['qid', 'pid']) + print(sampled_train.shape) + print(sampled_train.index.get_level_values('qid').drop_duplicates().shape) + print(sampled_train.groupby('qid').count().mean()) + print(sampled_train.head(10)) + print(sampled_train.info()) + + sampled_train.to_pickle(f'./collections/msmarco-ltr-passage/train_{task}_sampled_with_{neg_sample}_{random_seed}.pickle') + elif task == 'rank': + qrel = defaultdict(list) + with open("./collections/msmarco-passage/qrels.train.tsv") as f: + for line in f: + topicid, _, docid, rel = line.strip().split('\t') + assert rel == "1", line.split(' ') + qrel[topicid].append(docid) + + qid2pos = defaultdict(list) + qid2neg = defaultdict(list) + with open("./runs/msmarco-passage/run.train.small.tsv") as f: + for line in tqdm(f): + topicid, docid, rank = line.split() + assert topicid in qrel + if docid in qrel[topicid]: + qid2pos[topicid].append(docid) + else: + qid2neg[topicid].append(docid) + sampled_train = [] + for topicid, pos_list in tqdm(qid2pos.items()): + neg_list = random.sample(qid2neg[topicid], min(len(qid2neg[topicid]), neg_sample)) + for positive_docid in pos_list: + sampled_train.append((int(topicid), int(positive_docid), 1)) + for negative_docid in neg_list: + sampled_train.append((int(topicid), int(negative_docid), 0)) + sampled_train = pd.DataFrame(sampled_train, columns=['qid', 'pid', 'rel'], dtype=np.int32) + sampled_train = sampled_train.sort_values(['qid', 'pid']).set_index(['qid', 'pid']) + print(sampled_train.shape) + print(sampled_train.index.get_level_values('qid').drop_duplicates().shape) + print(sampled_train.groupby('qid').count().mean()) + print(sampled_train.head(10)) + print(sampled_train.info()) + + sampled_train.to_pickle(f'./collections/msmarco-ltr-passage/train_{task}_sampled_with_{neg_sample}_{random_seed}.pickle') + else: + raise Exception('unknown parameters') + return sampled_train + + +def dev_data_loader(task='anserini'): + if os.path.exists(f'./collections/msmarco-ltr-passage/dev_{task}.pickle'): + dev = pd.read_pickle(f'./collections/msmarco-ltr-passage/dev_{task}.pickle') + print(dev.shape) + print(dev.index.get_level_values('qid').drop_duplicates().shape) + print(dev.groupby('qid').count().mean()) + print(dev.head(10)) + print(dev.info()) + dev_qrel = pd.read_pickle(f'./collections/msmarco-ltr-passage/dev_qrel.pickle') + return dev, dev_qrel + else: + if task == 'rerank': + dev = pd.read_csv('./collections/msmarco-passage/top1000.dev', sep="\t", + names=['qid', 'pid', 'query', 'doc'], usecols=['qid', 'pid'], dtype=np.int32) + elif task == 'anserini': + dev = pd.read_csv('./runs/run.msmarco-passage.bm25tuned.txt', sep="\t", + names=['qid', 'pid', 'rank'], dtype=np.int32) + elif task == 'pygaggle': + #pygaggle bm25 top 1000 input + dev = pd.read_csv('./collections/msmarco-passage/run.dev.small.tsv', sep="\t", + names=['qid', 'pid', 'rank'], dtype=np.int32) + else: + raise Exception('unknown parameters') + dev_qrel = pd.read_csv('./collections/msmarco-passage/qrels.dev.small.tsv', sep="\t", + names=["qid", "q0", "pid", "rel"], usecols=['qid', 'pid', 'rel'], dtype=np.int32) + dev = dev.merge(dev_qrel, left_on=['qid', 'pid'], right_on=['qid', 'pid'], how='left') + dev['rel'] = dev['rel'].fillna(0).astype(np.int32) + dev = dev.sort_values(['qid', 'pid']).set_index(['qid', 'pid']) + + print(dev.shape) + print(dev.index.get_level_values('qid').drop_duplicates().shape) + print(dev.groupby('qid').count().mean()) + print(dev.head(10)) + print(dev.info()) + + dev.to_pickle(f'./collections/msmarco-ltr-passage/dev_{task}.pickle') + dev_qrel.to_pickle(f'./collections/msmarco-ltr-passage/dev_qrel.pickle') + return dev, dev_qrel + + +def query_loader(): + queries = {} + with open('./collections/msmarco-ltr-passage/queries.eval.small.json') as f: + for line in f: + query = json.loads(line) + qid = query.pop('id') + query['analyzed'] = query['analyzed'].split(" ") + query['text'] = query['text_unlemm'].split(" ") + query['text_unlemm'] = query['text_unlemm'].split(" ") + query['text_bert_tok'] = query['text_bert_tok'].split(" ") + queries[qid] = query + with open('./collections/msmarco-ltr-passage/queries.dev.small.json') as f: + for line in f: + query = json.loads(line) + qid = query.pop('id') + query['analyzed'] = query['analyzed'].split(" ") + query['text'] = query['text_unlemm'].split(" ") + query['text_unlemm'] = query['text_unlemm'].split(" ") + query['text_bert_tok'] = query['text_bert_tok'].split(" ") + queries[qid] = query + with open('./collections/msmarco-ltr-passage/queries.train.json') as f: + for line in f: + query = json.loads(line) + qid = query.pop('id') + query['analyzed'] = query['analyzed'].split(" ") + query['text'] = query['text_unlemm'].split(" ") + query['text_unlemm'] = query['text_unlemm'].split(" ") + query['text_bert_tok'] = query['text_bert_tok'].split(" ") + queries[qid] = query + return queries + + +def batch_extract(df, queries, fe): + tasks = [] + task_infos = [] + group_lst = [] + + info_dfs = [] + feature_dfs = [] + group_dfs = [] + + for qid, group in tqdm(df.groupby('qid')): + task = { + "qid": str(qid), + "docIds": [], + "rels": [], + "query_dict": queries[str(qid)] + } + for t in group.reset_index().itertuples(): + task["docIds"].append(str(t.pid)) + task_infos.append((qid, t.pid, t.rel)) + tasks.append(task) + group_lst.append((qid, len(task['docIds']))) + if len(tasks) == 10000: + features = fe.batch_extract(tasks) + task_infos = pd.DataFrame(task_infos, columns=['qid', 'pid', 'rel']) + group = pd.DataFrame(group_lst, columns=['qid', 'count']) + print(features.shape) + print(task_infos.qid.drop_duplicates().shape) + print(group.mean()) + print(features.head(10)) + print(features.info()) + info_dfs.append(task_infos) + feature_dfs.append(features) + group_dfs.append(group) + tasks = [] + task_infos = [] + group_lst = [] + # deal with rest + if len(tasks) > 0: + features = fe.batch_extract(tasks) + task_infos = pd.DataFrame(task_infos, columns=['qid', 'pid', 'rel']) + group = pd.DataFrame(group_lst, columns=['qid', 'count']) + print(features.shape) + print(task_infos.qid.drop_duplicates().shape) + print(group.mean()) + print(features.head(10)) + print(features.info()) + info_dfs.append(task_infos) + feature_dfs.append(features) + group_dfs.append(group) + info_dfs = pd.concat(info_dfs, axis=0, ignore_index=True) + feature_dfs = pd.concat(feature_dfs, axis=0, ignore_index=True, copy=False) + group_dfs = pd.concat(group_dfs, axis=0, ignore_index=True) + return info_dfs, feature_dfs, group_dfs + + +def hash_df(df): + h = pd.util.hash_pandas_object(df) + return hex(h.sum().astype(np.uint64)) + + +def hash_anserini_jar(): + find = glob.glob(os.environ['ANSERINI_CLASSPATH'] + "/*fatjar.jar") + assert len(find) == 1 + md5Hash = hashlib.md5(open(find[0], 'rb').read()) + return md5Hash.hexdigest() + + +def hash_fe(fe): + return hashlib.md5(','.join(sorted(fe.feature_names())).encode()).hexdigest() + + +def data_loader(task, df, queries, fe): + df_hash = hash_df(df) + jar_hash = hash_anserini_jar() + fe_hash = hash_fe(fe) + if task == 'train' or task == 'dev': + info, data, group = batch_extract(df, queries, fe) + obj = {'info': info, 'data': data, 'group': group, + 'df_hash': df_hash, 'jar_hash': jar_hash, 'fe_hash': fe_hash} + print(info.shape) + print(info.qid.drop_duplicates().shape) + print(group.mean()) + return obj + else: + raise Exception('unknown parameters') + + +def gen_dev_group_rel_num(dev_qrel, dev_extracted): + dev_rel_num = dev_qrel[dev_qrel['rel'] > 0].groupby('qid').count()['rel'] + prev_qid = None + dev_rel_num_list = [] + for t in dev_extracted['info'].itertuples(): + if prev_qid is None or t.qid != prev_qid: + prev_qid = t.qid + dev_rel_num_list.append(dev_rel_num.loc[t.qid]) + else: + continue + assert len(dev_rel_num_list) == dev_qrel.qid.drop_duplicates().shape[0] + + def recall_at_200(preds, dataset): + labels = dataset.get_label() + groups = dataset.get_group() + idx = 0 + recall = 0 + assert len(dev_rel_num_list) == len(groups) + for g, gnum in zip(groups, dev_rel_num_list): + top_preds = labels[idx:idx + g][np.argsort(preds[idx:idx + g])] + recall += np.sum(top_preds[-200:]) / gnum + idx += g + assert idx == len(preds) + return 'recall@200', recall / len(groups), True + + return recall_at_200 + +def mrr_at_10(preds, dataset): + labels = dataset.get_label() + groups = dataset.get_group() + idx = 0 + recall = 0 + MRR = [] + for g in groups: + top_preds = labels[idx:idx + g][np.argsort(preds[idx:idx + g])][-10:][::-1] + rank = 0 + while(rank < len(top_preds)): + if(top_preds[rank] > 0): + MRR.append(1.0/(rank+1)) + break + rank += 1 + if (rank == len(top_preds)): + MRR.append(0.) + idx += g + assert idx == len(preds) + return 'mrr@10', np.mean(MRR).item(), True + + +def train(train_extracted, dev_extracted, feature_name, eval_fn): + lgb_train = lgb.Dataset(train_extracted['data'].loc[:, feature_name], + label=train_extracted['info']['rel'], + group=train_extracted['group']['count']) + lgb_valid = lgb.Dataset(dev_extracted['data'].loc[:, feature_name], + label=dev_extracted['info']['rel'], + group=dev_extracted['group']['count'], + free_raw_data=False) + # max_leaves = -1 seems to work better for many settings, although 10 is also good + params = { + 'boosting_type': 'goss', + 'objective': 'lambdarank', + 'max_bin': 255, + 'num_leaves': 200, + 'max_depth': -1, + 'min_data_in_leaf': 50, + 'min_sum_hessian_in_leaf': 0, + 'feature_fraction': 1, + 'learning_rate': 0.1, + 'num_boost_round': 1000, + 'early_stopping_round': 200, + 'metric': 'custom', + 'label_gain': [0, 1], + 'seed': 12345, + 'num_threads': max(multiprocessing.cpu_count() // 2, 1) + } + num_boost_round = params.pop('num_boost_round') + early_stopping_round = params.pop('early_stopping_round') + gbm = lgb.train(params, lgb_train, + valid_sets=lgb_valid, + num_boost_round=num_boost_round, + early_stopping_rounds=early_stopping_round, + feval=eval_fn, + feature_name=feature_name, + verbose_eval=True) + del lgb_train + dev_extracted['info']['score'] = gbm.predict(lgb_valid.get_data()) + best_score = gbm.best_score['valid_0']['mrr@10'] + print(best_score) + best_iteration = gbm.best_iteration + print(best_iteration) + feature_importances = sorted(list(zip(feature_name, gbm.feature_importance().tolist())), + key=lambda x: x[1], reverse=True) + print(feature_importances) + params['num_boost_round'] = num_boost_round + params['early_stopping_round'] = early_stopping_round + return {'model': [gbm], 'params': params, + 'feature_names': feature_name, + 'feature_importances': feature_importances} + + +def eval_mrr(dev_data): + score_tie_counter = 0 + score_tie_query = set() + MRR = [] + for qid, group in tqdm(dev_data.groupby('qid')): + group = group.reset_index() + rank = 0 + prev_score = None + assert len(group['pid'].tolist()) == len(set(group['pid'].tolist())) + # stable sort is also used in LightGBM + + for t in group.sort_values('score', ascending=False, kind='mergesort').itertuples(): + if prev_score is not None and abs(t.score - prev_score) < 1e-8: + score_tie_counter += 1 + score_tie_query.add(qid) + prev_score = t.score + rank += 1 + if t.rel > 0: + MRR.append(1.0 / rank) + break + elif rank == 10 or rank == len(group): + MRR.append(0.) + break + + score_tie = f'score_tie occurs {score_tie_counter} times in {len(score_tie_query)} queries' + print(score_tie) + mrr_10 = np.mean(MRR).item() + print(f'MRR@10:{mrr_10} with {len(MRR)} queries') + return {'score_tie': score_tie, 'mrr_10': mrr_10} + + +def eval_recall(dev_qrel, dev_data): + dev_rel_num = dev_qrel[dev_qrel['rel'] > 0].groupby('qid').count()['rel'] + + score_tie_counter = 0 + score_tie_query = set() + + recall_point = [10, 20, 50, 100, 200, 500, 1000] + recall_curve = {k: [] for k in recall_point} + for qid, group in tqdm(dev_data.groupby('qid')): + group = group.reset_index() + rank = 0 + prev_score = None + assert len(group['pid'].tolist()) == len(set(group['pid'].tolist())) + # stable sort is also used in LightGBM + total_rel = dev_rel_num.loc[qid] + query_recall = [0 for k in recall_point] + for t in group.sort_values('score', ascending=False, kind='mergesort').itertuples(): + if prev_score is not None and abs(t.score - prev_score) < 1e-8: + score_tie_counter += 1 + score_tie_query.add(qid) + prev_score = t.score + rank += 1 + if t.rel > 0: + for i, p in enumerate(recall_point): + if rank <= p: + query_recall[i] += 1 + for i, p in enumerate(recall_point): + if total_rel > 0: + recall_curve[p].append(query_recall[i] / total_rel) + else: + recall_curve[p].append(0.) + + score_tie = f'score_tie occurs {score_tie_counter} times in {len(score_tie_query)} queries' + print(score_tie) + res = {'score_tie': score_tie} + + for k, v in recall_curve.items(): + avg = np.mean(v) + print(f'recall@{k}:{avg}') + res[f'recall@{k}'] = avg + + return res + + +def gen_exp_dir(): + dirname = datetime.datetime.now().strftime('%Y-%m-%d_%H:%M:%S') + '_' + str(uuid.uuid1()) + dirname = './runs/'+dirname + assert not os.path.exists(dirname) + os.mkdir(dirname) + return dirname + + +def save_exp(dirname, + train_extracted, dev_extracted, + train_res, eval_res): + dev_extracted['info'][['qid', 'pid', 'score']].to_json(f'{dirname}/output.json') + subprocess.check_output(['gzip', f'{dirname}/output.json']) + with open(f'{dirname}/model.pkl', 'wb') as f: + pickle.dump(train_res['model'], f) + metadata = { + 'train_df_hash': train_extracted['df_hash'], + 'train_jar_hash': train_extracted['jar_hash'], + 'train_fe_hash': train_extracted['fe_hash'], + 'dev_df_hash': dev_extracted['df_hash'], + 'dev_jar_hash': dev_extracted['jar_hash'], + 'dev_fe_hash': dev_extracted['fe_hash'], + 'feature_names': train_res['feature_names'], + 'feature_importances': train_res['feature_importances'], + 'params': train_res['params'], + 'score_tie': eval_res['score_tie'], + 'mrr_10': eval_res['mrr_10'] + } + json.dump(metadata, open(f'{dirname}/metadata.json', 'w')) + + +if __name__ == '__main__': + os.environ["ANSERINI_CLASSPATH"] = "pyserini/resources/jars" + parser = argparse.ArgumentParser(description='Learning to rank training') + parser.add_argument('--index', required=True) + parser.add_argument('--neg-sample', default=10) + parser.add_argument('--opt', default='mrr_at_10') + args = parser.parse_args() + total_start_time = time.time() + sampled_train = train_data_loader(task='triple', neg_sample = args.neg_sample) + dev, dev_qrel = dev_data_loader(task='anserini') + queries = query_loader() + + fe = FeatureExtractor(args.index, + max(multiprocessing.cpu_count() // 2, 1)) + #fe.add(RunList('./collections/msmarco-ltr-passage/run.monot5.run_list.whole.trec','t5')) + #fe.add(RunList('./collections/msmarco-ltr-passage/run.monobert.run_list.whole.trec','bert')) + for qfield, ifield in [('analyzed', 'contents'), + ('text_unlemm', 'text_unlemm'), + ('text_bert_tok', 'text_bert_tok')]: + print(qfield, ifield) + + fe.add(BM25Stat(SumPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + fe.add(BM25Stat(AvgPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + fe.add(BM25Stat(MedianPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + fe.add(BM25Stat(MaxPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + fe.add(BM25Stat(MinPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + fe.add(BM25Stat(MaxMinRatioPooler(), k1=2.0, b=0.75, field=ifield, qfield=qfield)) + + fe.add(LmDirStat(SumPooler(), mu=1000, field=ifield, qfield=qfield)) + fe.add(LmDirStat(AvgPooler(), mu=1000, field=ifield, qfield=qfield)) + fe.add(LmDirStat(MedianPooler(), mu=1000, field=ifield, qfield=qfield)) + fe.add(LmDirStat(MaxPooler(), mu=1000, field=ifield, qfield=qfield)) + fe.add(LmDirStat(MinPooler(), mu=1000, field=ifield, qfield=qfield)) + fe.add(LmDirStat(MaxMinRatioPooler(), mu=1000, field=ifield, qfield=qfield)) + + fe.add(NormalizedTfIdf(field=ifield, qfield=qfield)) + fe.add(ProbalitySum(field=ifield, qfield=qfield)) + + fe.add(DfrGl2Stat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(DfrGl2Stat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(DfrGl2Stat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(DfrGl2Stat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(DfrGl2Stat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(DfrGl2Stat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(DfrInExpB2Stat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(DfrInExpB2Stat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(DfrInExpB2Stat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(DfrInExpB2Stat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(DfrInExpB2Stat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(DfrInExpB2Stat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(DphStat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(DphStat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(DphStat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(DphStat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(DphStat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(DphStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(Proximity(field=ifield, qfield=qfield)) + fe.add(TpScore(field=ifield, qfield=qfield)) + fe.add(TpDist(field=ifield, qfield=qfield)) + + fe.add(DocSize(field=ifield)) + + fe.add(QueryLength(qfield=qfield)) + fe.add(QueryCoverageRatio(qfield=qfield)) + fe.add(UniqueTermCount(qfield=qfield)) + fe.add(MatchingTermCount(field=ifield, qfield=qfield)) + fe.add(SCS(field=ifield, qfield=qfield)) + + fe.add(TfStat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(TfStat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(TfStat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(TfStat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(TfStat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(TfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(TfIdfStat(True, AvgPooler(), field=ifield, qfield=qfield)) + fe.add(TfIdfStat(True, MedianPooler(), field=ifield, qfield=qfield)) + fe.add(TfIdfStat(True, SumPooler(), field=ifield, qfield=qfield)) + fe.add(TfIdfStat(True, MinPooler(), field=ifield, qfield=qfield)) + fe.add(TfIdfStat(True, MaxPooler(), field=ifield, qfield=qfield)) + fe.add(TfIdfStat(True, MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(NormalizedTfStat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(NormalizedTfStat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(NormalizedTfStat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(NormalizedTfStat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(NormalizedTfStat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(NormalizedTfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(IdfStat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(IdfStat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(IdfStat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(IdfStat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(IdfStat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(IdfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(IcTfStat(AvgPooler(), field=ifield, qfield=qfield)) + fe.add(IcTfStat(MedianPooler(), field=ifield, qfield=qfield)) + fe.add(IcTfStat(SumPooler(), field=ifield, qfield=qfield)) + fe.add(IcTfStat(MinPooler(), field=ifield, qfield=qfield)) + fe.add(IcTfStat(MaxPooler(), field=ifield, qfield=qfield)) + fe.add(IcTfStat(MaxMinRatioPooler(), field=ifield, qfield=qfield)) + + fe.add(UnorderedSequentialPairs(3, field=ifield, qfield=qfield)) + fe.add(UnorderedSequentialPairs(8, field=ifield, qfield=qfield)) + fe.add(UnorderedSequentialPairs(15, field=ifield, qfield=qfield)) + fe.add(OrderedSequentialPairs(3, field=ifield, qfield=qfield)) + fe.add(OrderedSequentialPairs(8, field=ifield, qfield=qfield)) + fe.add(OrderedSequentialPairs(15, field=ifield, qfield=qfield)) + fe.add(UnorderedQueryPairs(3, field=ifield, qfield=qfield)) + fe.add(UnorderedQueryPairs(8, field=ifield, qfield=qfield)) + fe.add(UnorderedQueryPairs(15, field=ifield, qfield=qfield)) + fe.add(OrderedQueryPairs(3, field=ifield, qfield=qfield)) + fe.add(OrderedQueryPairs(8, field=ifield, qfield=qfield)) + fe.add(OrderedQueryPairs(15, field=ifield, qfield=qfield)) + + start = time.time() + fe.add(IbmModel1("collections/msmarco-ltr-passage/ibm_model/title_unlemm","text_unlemm","title_unlemm","text_unlemm")) + end = time.time() + print('IBM model Load takes %.2f seconds'%(end-start)) + start = end + fe.add(IbmModel1("collections/msmarco-ltr-passage/ibm_model/url_unlemm","text_unlemm","url_unlemm","text_unlemm")) + end = time.time() + print('IBM model Load takes %.2f seconds'%(end-start)) + start = end + fe.add(IbmModel1("collections/msmarco-ltr-passage/ibm_model/body","text_unlemm","body","text_unlemm")) + end = time.time() + print('IBM model Load takes %.2f seconds'%(end-start)) + start = end + fe.add(IbmModel1("collections/msmarco-ltr-passage/ibm_model/text_bert_tok","text_bert_tok","text_bert_tok","text_bert_tok")) + end = time.time() + print('IBM model Load takes %.2f seconds'%(end-start)) + start = end + + + + + train_extracted = data_loader('train', sampled_train, queries, fe) + print("train_extracted") + dev_extracted = data_loader('dev', dev, queries, fe) + print("dev extracted") + feature_name = fe.feature_names() + del sampled_train, dev, queries, fe + recall_at_20 = gen_dev_group_rel_num(dev_qrel, dev_extracted) + print("start train") + train_res = train(train_extracted, dev_extracted, feature_name, mrr_at_10) + print("end train") + eval_res = eval_mrr(dev_extracted['info']) + eval_res.update(eval_recall(dev_qrel, dev_extracted['info'])) + + dirname = gen_exp_dir() + save_exp(dirname, train_extracted, dev_extracted, train_res, eval_res) + total_time = (time.time() - total_start_time) + print(f'Total training time: {total_time:0.3f} s') + print('Done!') \ No newline at end of file diff --git a/scripts/mrtydi/combine_corpus.py b/scripts/mrtydi/combine_corpus.py new file mode 100644 index 0000000000000000000000000000000000000000..2a10155890affde6b93eca4b82ed0912e685b331 --- /dev/null +++ b/scripts/mrtydi/combine_corpus.py @@ -0,0 +1,29 @@ +import json +import gzip +import os +from tqdm import tqdm +from argparse import ArgumentParser + +langs = "arabic bengali english finnish indonesian japanese korean russian swahili telugu thai".split() + +def main(input_dir, output_dir): + os.makedirs(output_dir, exist_ok=True) + with open(os.path.join(output_dir, 'combined-corpus.jsonl'), 'w') as fout: + for lang in tqdm(langs, desc="Merging corpus."): + gz_fn = f"{input_dir}/{lang}/corpus.jsonl.gz" + with gzip.open(gz_fn, 'rb') as fin: + for line in fin: + obj = json.loads(line.decode()) + obj['docid'] = f"{lang}-" + obj['docid'] + line = json.dumps(obj, ensure_ascii=False) + fout.write(line + '\n') + + +if __name__ == "__main__": + parser = ArgumentParser() + parser.add_argument('--input', '-i', type=str, required=True, help="Input directory to mbert tokenized mrtydi corpus.") + parser.add_argument('--output', '-o', type=str, required=True, help="Output directory to the merged mbert tokenized mrtydi corpus.") + + args = parser.parse_args() + main(args.input, args.output) + diff --git a/scripts/mrtydi/index-combined-corpus.sh b/scripts/mrtydi/index-combined-corpus.sh new file mode 100644 index 0000000000000000000000000000000000000000..57188efab962418352e08ed9683654b6dbeb7cad --- /dev/null +++ b/scripts/mrtydi/index-combined-corpus.sh @@ -0,0 +1,29 @@ +set -e + +sep_collection_dir=all-mbert-mrtydi-corpus # the dir to the combined collection +merged_collection_dir=merged-mbert-mrtydi-corpus # the dir to the combined collection +index_dir=all-language-index-optimized + +mkdir -p $sep_collection_dir +mkdir -p $merged_collection_dir + +# download files +for lang in arabic bengali english finnish indonesian japanese korean russian swahili telugu thai ; do + echo "Downloading $lang corpus" + lang_dir=$sep_collection_dir/$lang + mkdir -p $lang_dir + wget "https://huggingface.co/datasets/crystina-z/mbert-mrtydi-corpus/resolve/main/mr-tydi-v1.1-mbert-tokenize-$lang/corpus.jsonl.gz" -P $lang_dir +done + +python scripts/mrtydi/combine_corpus.py -i $sep_collection_dir -o $merged_collection_dir + +# index +python -m pyserini.index \ + -collection MrTyDiCollection \ + -generator DefaultLuceneDocumentGenerator \ + -threads 12 \ + -input $merged_collection_dir \ + -index $index_dir \ + -storePositions -storeRaw -storeDocvectors \ + -pretokenized -optimize + diff --git a/scripts/mrtydi/mbert-tokenize-mrtydi.py b/scripts/mrtydi/mbert-tokenize-mrtydi.py new file mode 100644 index 0000000000000000000000000000000000000000..ba553b8c0ac988564570e9d97be32018490cd1eb --- /dev/null +++ b/scripts/mrtydi/mbert-tokenize-mrtydi.py @@ -0,0 +1,98 @@ +"""tokenize mrtydi files and save in original format""" + +from tqdm import tqdm +import os +import json + +from datasets import load_dataset +from tools import get_mbert_tokenize_fn + + +LANGS = "arabic bengali english finnish indonesian japanese korean russian swahili telugu thai".split() + +n_proc = 15 + +token_type = "mbert" +assert token_type in {"mbert", "whitespace"} +print(f"Preparing tokenized mrtydi with {token_type} tokenizer.") + + +def gen_mrtydi(lang, set_name): + dataset = load_dataset("castorini/mr-tydi", lang, set_name) + for entry in tqdm(dataset[set_name], desc=f"{lang}-topics-{set_name}"): + yield entry + + +def gen_mrtydi_corpus(lang): + dataset = load_dataset("castorini/mr-tydi-corpus", lang) + for entry in tqdm(dataset["train"], desc=f"{lang}-documents"): + yield entry + + +def tokenize_single_lang(lang, outp_dir): + mbert_tokenize = get_mbert_tokenize_fn() + def _tokenize_psgs(psgs): + return [{ + "docid": psg["docid"], + "title": mbert_tokenize(psg["title"]), + "text": mbert_tokenize(psg["text"]), + } for psg in psgs] + + mrtydi_dir = os.path.join(outp_dir, "mr-tydi", f"mr-tydi-v1.1-mbert-tokenize-{lang}") + os.makedirs(mrtydi_dir, exist_ok=True) + + # tokenize "mr-tydi" + for set_name in ["train", "dev", "test"]: + outp_fn = os.path.join(mrtydi_dir, f"{set_name}.jsonl") + if os.path.exists(outp_fn): + print(f"Found existing file: {outp_fn}.") + continue + + with open(outp_fn, "w") as fout: + for entry in gen_mrtydi(lang=lang, set_name=set_name): + query = entry["query"] + pos_psgs = entry["positive_passages"] + neg_psgs = entry["negative_passages"] + + if set_name == "train": + pos_psgs = _tokenize_psgs(pos_psgs) + neg_psgs = _tokenize_psgs(neg_psgs) + + mbert_entry = { + "query_id": entry["query_id"], + "query": mbert_tokenize(query), + "positive_passages": pos_psgs, + "negative_passages": neg_psgs, + } + line = json.dumps(mbert_entry, ensure_ascii=False) + fout.write(line + "\n") + + # tokenize "mr-tydi-corpus" + mrtydi_corpus_dir = os.path.join(outp_dir, "mr-tydi-corpus", f"mr-tydi-v1.1-mbert-tokenize-{lang}") + os.makedirs(mrtydi_corpus_dir, exist_ok=True) + outp_fn = os.path.join(mrtydi_corpus_dir, f"corpus.jsonl") + if os.path.exists(outp_fn): + print(f"Found existing file: {outp_fn}.") + return + + with open(outp_fn, "w") as fout: + for entry in gen_mrtydi_corpus(lang): + mbert_entry = { + "docid": entry["docid"], + "title": mbert_tokenize(entry["title"]), + "text": mbert_tokenize(entry["text"]), + } + line = json.dumps(mbert_entry, ensure_ascii=False) + fout.write(line + "\n") + + + +def main(): + outp_dir = f"mbert-mrtydi/" + for i, lang in enumerate(LANGS): + tokenize_single_lang(lang, outp_dir + lang) + + +if __name__ == "__main__": + main() + diff --git a/scripts/mrtydi/search.py b/scripts/mrtydi/search.py new file mode 100644 index 0000000000000000000000000000000000000000..dc790199d613f756873b7c4b696ace0e805f231e --- /dev/null +++ b/scripts/mrtydi/search.py @@ -0,0 +1,39 @@ +import logging +from argparse import ArgumentParser + +from transformers import AutoTokenizer + +from pyserini.search import SimpleSearcher +from pyserini.analysis import JWhiteSpaceAnalyzer + + +# logger = logging.getLogger(__name__) +logger = logging.getLogger(os.path.basename(__file__)) +logger.setLevel(logging.INFO) + + +def main(args): + query = args.query + index = args.index + if args.do_tokenize: + tokenizer = AutoTokenizer.from_pretrained('bert-multilingual-base-uncased') + query = " ".join(tokenizer.tokenize(query)) + + logger.info(f'searching for: {query}') + searcher = SimpleSearcher(index) + searcher.set_analyzer(JWhiteSpaceAnalyzer()) + hits = searcher.search(query, 1000) + + for i in range(len(hits)): + doc = hits[i] + print(f'{i+1:2} {hits[i].docid:4} {hits[i].score:.5f}') + + +if __name__ == "__main__": + parser = ArgumentParser() + parser.add_argument('--query', '-q', type=str, required=True, help="The query to search in the index") + parser.add_argument('--index', '-i', type=str, required=True, help="Path to the anserini index directory") + parser.add_argument('--do-tokenize', '-t', action='store_false', help="Whether to perform mbert tokenization on the query") + + args = parser.parse_args() + main(args) diff --git a/scripts/msmarco-doc/convert_msmarco_doc_to_anserini_collection.py b/scripts/msmarco-doc/convert_msmarco_doc_to_anserini_collection.py new file mode 100644 index 0000000000000000000000000000000000000000..e0d8b32a919585909bb8d4ab53c93b1aab7dedbe --- /dev/null +++ b/scripts/msmarco-doc/convert_msmarco_doc_to_anserini_collection.py @@ -0,0 +1,32 @@ +import argparse +import gzip +import json +import os +from tqdm import tqdm + + +def generate_output_dict(doc): + doc_id, doc_url, doc_title, doc_text = doc[0], doc[1], doc[2], doc[3] + doc_text = doc_text.strip() + doc_text = f'{doc_url}\n{doc_title}\n{doc_text}' + output_dict = {'id': doc_id, 'contents': doc_text} + return output_dict + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Convert MS MARCO V1 document ranking corpus to anserini\'s default jsonl collection format') + parser.add_argument('--original_docs_path', required=True, help='Original corpus file.') + parser.add_argument('--output_docs_path', required=True, help='Output file in the anserini jsonl format.') + + args = parser.parse_args() + + os.makedirs(os.path.dirname(args.output_docs_path), exist_ok=True) + + f_corpus = gzip.open(args.original_docs_path, mode='rt') + f_out = open(args.output_docs_path, 'w') + + for line in tqdm(f_corpus): + output_dict = generate_output_dict(line.split('\t')) + f_out.write(json.dumps(output_dict) + '\n') + print('Done!') diff --git a/scripts/msmarco-doc/convert_msmarco_doc_to_segmented_anserini_collection.py b/scripts/msmarco-doc/convert_msmarco_doc_to_segmented_anserini_collection.py new file mode 100644 index 0000000000000000000000000000000000000000..cfc6581558ae921aa2389a8c0b243c679186af57 --- /dev/null +++ b/scripts/msmarco-doc/convert_msmarco_doc_to_segmented_anserini_collection.py @@ -0,0 +1,48 @@ +import argparse +import gzip +import json +import os +# Uses space==2.1.6 +import spacy +from tqdm import tqdm + + +def generate_output_dicts(doc, nlp, max_length, stride): + doc_id, doc_url, doc_title, doc_text = doc[0], doc[1], doc[2], doc[3] + doc_text = doc_text.strip() + doc = nlp(doc_text[:10000]) + sentences = [sent.string.strip() for sent in doc.sents] + output_dicts = [] + for ind, pos in enumerate(range(0, len(sentences), stride)): + segment = ' '.join(sentences[pos:pos + max_length]) + doc_text = f'{doc_url}\n{doc_title}\n{segment}' + output_dicts.append({'id': f'{doc_id}#{ind}', 'contents': doc_text}) + if pos + max_length >= len(sentences): + break + return output_dicts + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Convert MS MARCO V1 document ranking corpus to seg anserini\'s default jsonl collection format') + parser.add_argument('--original_docs_path', required=True, help='Original corpus file.') + parser.add_argument('--output_docs_path', required=True, help='Output file in the anserini jsonl format.') + parser.add_argument('--stride', default=5, help='Sliding-window stride') + parser.add_argument('--max_length', default=10, help='Sliding-window length') + args = parser.parse_args() + + # Load spacy model + nlp = spacy.blank("en") + nlp.add_pipe(nlp.create_pipe("sentencizer")) + + os.makedirs(os.path.dirname(args.output_docs_path), exist_ok=True) + + f_corpus = gzip.open(args.original_docs_path, mode='rt') + f_out = open(args.output_docs_path, 'w') + + print('Creating collection...') + for line in tqdm(f_corpus): + output_dicts = generate_output_dicts(line.split('\t'), nlp, args.max_length, args.stride) + for output_dict in output_dicts: + f_out.write(json.dumps(output_dict) + '\n') + print('Done!') diff --git a/scripts/msmarco-doc/rerank_with_maxp.py b/scripts/msmarco-doc/rerank_with_maxp.py new file mode 100644 index 0000000000000000000000000000000000000000..0abb05c78aa5380962c89aef46aa08c11daf42f8 --- /dev/null +++ b/scripts/msmarco-doc/rerank_with_maxp.py @@ -0,0 +1,233 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +"""Script that takes a base run for MS MARCO doc and reranks it using MaxP BM25. +For each topic, each document in the base run is segmented into passages; a new index is built over these passages, +and then MaxP retrieval is performed using this index. These MaxP results are then fused with the original base run.""" + +import argparse +import csv +import json +import os +import shutil +import sys + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.trectools import TrecRun +from pyserini.search.lucene import LuceneSearcher +from pyserini.dsearch import FaissSearcher + +# Fixes this error: "OMP: Error #15: Initializing libomp.a, but found libomp.dylib already initialized." +# https://stackoverflow.com/questions/53014306/error-15-initializing-libiomp5-dylib-but-found-libiomp5-dylib-already-initial +os.environ['KMP_DUPLICATE_LIB_OK'] = 'True' + + +def load_queries(query_file: str): + queries = [] + with open(query_file, newline='') as f: + reader = csv.reader(f, delimiter='\t') + for row in reader: + queries.append([row[0], row[1]]) + return queries + + +def generate_passage_collection(docs, collection_path): + with open(collection_path, 'w') as writer: + for doc in docs: + docid = doc['docid'] + doc_tokens = doc['text'].split() + + for i in range(0, len(doc_tokens), 100): + passage = ' '.join(doc_tokens[i: i + 150]) + json_doc = {"id": docid, "contents": passage} + writer.write(json.dumps(json_doc) + '\n') + + +def bm25(qid, query, docs, index_path): + s = LuceneSearcher(index_path) + hits = s.search(query, 1000) + + n = 1 + seen_docids = {} + with open(f'run-passage-{qid}.txt', 'w') as writer: + for i in range(0, len(hits)): + if hits[i].docid in seen_docids: + continue + writer.write(f'{qid} Q0 {hits[i].docid} {n} {hits[i].score:.5f} pyserini\n') + n = n + 1 + seen_docids[hits[i].docid] = 1 + + with open(f'run-doc-{qid}.txt', 'w') as writer: + for doc in docs: + writer.write(f'{qid} Q0 {doc["docid"]} {doc["rank"]} {doc["score"]} base\n') + n = n + 1 + + os.system(f'python -m pyserini.fusion --method rrf --runs run-passage-{qid}.txt run-doc-{qid}.txt ' + + f'--output run-rrf-{qid}.txt --runtag test') + fused_run = TrecRun(f'run-rrf-{qid}.txt') + + output = [] + for idx, r in fused_run.get_docs_by_topic(qid).iterrows(): + output.append([qid, r["docid"], r["rank"]]) + + return output + + +def ance(qid, query, docs, index_path): + searcher = FaissSearcher(index_path, 'castorini/ance-msmarco-doc-maxp') + hits = searcher.search(query, 1000) + + output = [] + n = 1 + seen_docids = {} + for i in range(0, len(hits)): + if hits[i].docid in seen_docids: + continue + output.append([qid, hits[i].docid, n]) + n = n + 1 + seen_docids[hits[i].docid] = 1 + + return output + + +def rerank(cache, qid, query, docs, reranker): + # Check if we're using a cache: + if cache: + root = cache + else: + root = '.' + + collection_dir = os.path.join(root, f'docs-{qid}') + collection_path = os.path.join(root, f'docs-{qid}/docs.json') + index_path = '' + if reranker == 'bm25': + index_path = os.path.join(root, f'qid-index-{qid}') + elif reranker == 'ance': + index_path = os.path.join(root, f'qid-dindex-{qid}') + + if not os.path.exists(index_path): + # Create a passage collection from docs: + if not os.path.exists(collection_dir): + os.mkdir(collection_dir) + generate_passage_collection(docs, collection_path) + + # Build index over this passage collection: + if reranker == 'bm25': + os.system(f'python -m pyserini.index -collection JsonCollection ' + + f'-generator DefaultLuceneDocumentGenerator -threads 1 ' + + f'-input {collection_dir} -index {index_path}') + elif reranker == 'ance': + os.system(f'python -m pyserini.encode input --corpus {collection_dir} \ + --fields text \ + output --embeddings {index_path} \ + --to-faiss \ + encoder --encoder castorini/ance-msmarco-doc-maxp \ + --fields text \ + --batch 64 --device cpu ') + + output = [] + # Choose which reranker to use: + if reranker == 'bm25': + output = bm25(qid, query, docs, index_path) + elif reranker == 'ance': + output = ance(qid, query, docs, index_path) + + # If we're using a cache, don't clean up: + if not args.cache: + shutil.rmtree(collection_dir) + shutil.rmtree(index_path) + + # Clean up run files. + if reranker == 'bm25': + os.remove(f'run-passage-{qid}.txt') + os.remove(f'run-doc-{qid}.txt') + os.remove(f'run-rrf-{qid}.txt') + + return output + + +def main(args): + if args.cache and not os.path.exists(args.cache): + os.mkdir(args.cache) + + # Load queries: + queries = load_queries(args.queries) + # Load base run to rerank: + base_run = TrecRun(args.input) + + # LuceneSearcher to fetch document texts. + searcher = LuceneSearcher.from_prebuilt_index('msmarco-doc') + + output = [] + + if args.bm25: + reranker = 'bm25' + elif args.ance: + reranker = 'ance' + elif not args.identity: + sys.exit('Unknown reranking method!') + + cnt = 1 + for row in queries: + qid = int(row[0]) + query = row[1] + print(f'{cnt} {qid} {query}') + qid_results = base_run.get_docs_by_topic(qid) + + # Don't actually do reranking, just pass along the base run: + if args.identity: + rank = 1 + for docid in qid_results['docid'].tolist(): + output.append([qid, docid, rank]) + rank = rank + 1 + cnt = cnt + 1 + continue + + # Gather results for reranking: + results_to_rerank = [] + for index, result in qid_results.iterrows(): + raw_doc = searcher.doc(result['docid']).raw().lstrip('').rstrip('') + results_to_rerank.append({'docid': result['docid'], + 'rank': result['rank'], + 'score': result['score'], + 'text': raw_doc}) + + # Perform the actual reranking: + output.extend(rerank(args.cache, qid, query, results_to_rerank, reranker)) + cnt = cnt + 1 + + # Write the output run file: + with open(args.output, 'w') as writer: + for r in output: + writer.write(f'{r[0]}\t{r[1]}\t{r[2]}\n') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--queries', type=str, help='Queries.', required=True) + parser.add_argument('--input', type=str, help='Base run.', required=True) + parser.add_argument('--output', type=str, help='Output.', required=True) + parser.add_argument('--cache', type=str, help='Cache directory.', required=False) + parser.add_argument('--identity', action='store_true', help="Identity reranker.") + parser.add_argument('--bm25', action='store_true', help="BM25 reranker.") + parser.add_argument('--ance', action='store_true', help="ANCE reranker.") + + args = parser.parse_args() + main(args) diff --git a/scripts/msmarco-passage/build_hnsw_index.py b/scripts/msmarco-passage/build_hnsw_index.py new file mode 100644 index 0000000000000000000000000000000000000000..2d15d857f94384bd71d537b0ca79185942dd43f9 --- /dev/null +++ b/scripts/msmarco-passage/build_hnsw_index.py @@ -0,0 +1,43 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os + +import faiss +import shutil + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--bf-index', type=str, help='path to brute force index', required=True) + parser.add_argument('--hnsw-index', type=str, help='path to hnsw index', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + args = parser.parse_args() + + if not os.path.exists(args.hnsw_index): + os.mkdir(args.hnsw_index) + shutil.copy(os.path.join(args.bf_index, 'docid'), os.path.join(args.hnsw_index, 'docid')) + + bf_index = faiss.read_index(os.path.join(args.bf_index, 'index')) + hnsw_index = faiss.IndexHNSWFlat(args.dimension, 256, faiss.METRIC_INNER_PRODUCT) + hnsw_index.hnsw.efConstruction = 256 # hardcode for now + hnsw_index.hnsw.efSearch = 256 # hardcode for now + vectors = bf_index.reconstruct_n(0, bf_index.ntotal) + print(vectors) + print('Indexing') + hnsw_index.add(vectors) + faiss.write_index(hnsw_index, os.path.join(args.hnsw_index, 'index')) diff --git a/scripts/msmarco-passage/encode_corpus.py b/scripts/msmarco-passage/encode_corpus.py new file mode 100644 index 0000000000000000000000000000000000000000..be60c05302973b84be1299137378bc609d395e13 --- /dev/null +++ b/scripts/msmarco-passage/encode_corpus.py @@ -0,0 +1,74 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os + +import faiss +import numpy as np +from tqdm import tqdm +from transformers import BertModel, BertTokenizer + + +def encode_passage(text, tokenizer, model, device='cuda:0'): + max_length = 154 # hardcode for now + inputs = tokenizer( + '[CLS] [D] ' + text, + max_length=max_length, + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(device) + outputs = model(**inputs) + embeddings = outputs.last_hidden_state.detach().cpu().numpy() + return np.mean(embeddings[:, 4:, :], axis=-2).flatten() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + tokenizer = BertTokenizer.from_pretrained(args.encoder) + model = BertModel.from_pretrained(args.encoder) + model.to(args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json'): + print(f'Encoding {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + text = info['contents'] + id_file.write(f'{docid}\n') + embedding = encode_passage(text, tokenizer, model, args.device) + index.add(np.array([embedding])) + faiss.write_index(index, os.path.join(args.index, 'index')) \ No newline at end of file diff --git a/scripts/msmarco-passage/encode_queries.py b/scripts/msmarco-passage/encode_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..87e76944df96ec932ae5f2aec8543f453d3f3205 --- /dev/null +++ b/scripts/msmarco-passage/encode_queries.py @@ -0,0 +1,61 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + +import numpy as np +import pandas as pd +from tqdm import tqdm +from transformers import BertModel, BertTokenizer + + +def encode_query(text, tokenizer, model, device='cpu'): + max_length = 36 # hardcode for now + inputs = tokenizer( + '[CLS] [Q] ' + text + ' [MASK]' * max_length, + max_length=max_length, + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(device) + outputs = model(**inputs) + embeddings = outputs.last_hidden_state.detach().cpu().numpy() + return np.average(embeddings[:, 4:, :], axis=-2).flatten() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--input', type=str, help='query file to be encoded.', required=True) + parser.add_argument('--output', type=str, help='path to store query embeddings', required=True) + parser.add_argument('--device', type=str, + help='device cpu or cuda [cuda:0, cuda:1...]', default='cpu', required=False) + args = parser.parse_args() + + tokenizer = BertTokenizer.from_pretrained(args.encoder) + model = BertModel.from_pretrained(args.encoder) + model.to(args.device) + embeddings = {'id': [], 'text': [], 'embedding': []} + for line in tqdm(open(args.input, 'r').readlines()): + qid, text = line.rstrip().split('\t') + qid = qid.strip() + text = text.strip() + embeddings['id'].append(qid) + embeddings['text'].append(text) + embeddings['embedding'].append(encode_query(text, tokenizer, model, args.device)) + embeddings = pd.DataFrame(embeddings) + embeddings.to_pickle(args.output) diff --git a/scripts/msmarco-passage/index_msmarco_passage.py b/scripts/msmarco-passage/index_msmarco_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..0f29126272dc3d1a4e4bf9e0ffeb1e292fa773a0 --- /dev/null +++ b/scripts/msmarco-passage/index_msmarco_passage.py @@ -0,0 +1,49 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import gzip +import os +import time + +from pyserini.index.lucene import LuceneIndexer + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Index MS MARCO Passage corpus.') + parser.add_argument('--input', required=True, help='Path to MS MARCO Passage corpus.') + parser.add_argument('--index', required=True, help='Path to index.') + args = parser.parse_args() + + start = time.time() + + print(f'input: {args.input}') + print(f'index: {args.index}') + + indexer = LuceneIndexer(args.index) + cnt = 0 + for file in os.listdir(args.input): + if not file.endswith('gz'): + continue + with gzip.open(os.path.join(args.input, file), 'r') as f: + for line in f: + indexer.add(line.decode()) + cnt += 1 + if cnt % 100000 == 0: + print(f'{cnt} docs indexed') + + indexer.close() + end = time.time() + print(f'Total {cnt} docs indexed in {end - start:.0f}s') diff --git a/scripts/msmarco-passage/index_msmarco_passage2.py b/scripts/msmarco-passage/index_msmarco_passage2.py new file mode 100644 index 0000000000000000000000000000000000000000..7477d150883b07c11d414708ab31aba01aa4333b --- /dev/null +++ b/scripts/msmarco-passage/index_msmarco_passage2.py @@ -0,0 +1,88 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import gzip +import json +import os +import time + +from pyserini.index.lucene import LuceneIndexer, JacksonObjectMapper + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Index MS MARCO Passage corpus.') + parser.add_argument('--input', required=True, type=str, help='Path to MS MARCO Passage corpus.') + parser.add_argument('--index', required=True, type=str, help='Path to index.') + parser.add_argument('--threads', required=True, type=int, help='Number of threads.') + parser.add_argument('--batch-size', required=True, type=int, help='Batch size.') + parser.add_argument('--raw', action='store_true', default=False, help="Directly index raw documents.") + parser.add_argument('--dict', action='store_true', default=False, help="Parse and index Python dictionaries.") + args = parser.parse_args() + + mapper = JacksonObjectMapper() + start = time.time() + + print(f'input: {args.input}') + print(f'index: {args.index}') + print(f'threads: {args.threads}') + print(f'batch size: {args.batch_size}') + print(f'index raw? {args.raw}') + + batch = [] + indexer = LuceneIndexer(args.index, threads=args.threads) + cnt = 0 + batch_cnt = 0 + for file in os.listdir(args.input): + if not file.endswith('gz'): + continue + with gzip.open(os.path.join(args.input, file), 'r') as f: + for line in f: + if args.raw: + batch.append(line.decode()) + elif args.dict: + obj = json.loads(line.decode()) + batch.append({'id': obj['id'], 'contents': obj['contents']}) + else: + obj = json.loads(line.decode()) + batch.append(mapper.createObjectNode().put('id', obj['id']).put('contents', obj['contents'])) + cnt += 1 + + if len(batch) == args.batch_size: + if args.raw: + indexer.add_batch_raw(batch) + elif args.dict: + indexer.add_batch_dict(batch) + else: + indexer.add_batch_json(batch) + batch = [] + batch_cnt += 1 + + if cnt % 100000 == 0: + cur = time.time() + print(f'{cnt} docs indexed, {batch_cnt} batches, {cnt/(cur - start):.0f} docs/s') + + # Remember to add the final batch. + if args.raw: + indexer.add_batch_raw(batch) + elif args.dict: + indexer.add_batch_dict(batch) + else: + indexer.add_batch_json(batch) + + indexer.close() + end = time.time() + print(f'Total {cnt} docs indexed in {end - start:.0f}s, {cnt/(end - start):.0f} docs/s') diff --git a/scripts/msmarco-passage/interpolate_runs.py b/scripts/msmarco-passage/interpolate_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..18df60aea1274c4e3022000511b66cd2498b58a8 --- /dev/null +++ b/scripts/msmarco-passage/interpolate_runs.py @@ -0,0 +1,75 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os +import numpy as np +from tqdm import tqdm + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Interpolate runs') + parser.add_argument('--run1', required=True, help='retrieval run1') + parser.add_argument('--run2', required=True, help='retrieval run2') + parser.add_argument('--start-weight', type=float, required=True, help='start hybrid alpha') + parser.add_argument('--end-weight', type=float, required=True, help='end hybrid alpha') + parser.add_argument('--step', type=float, required=True, help='changes of alpha per step') + parser.add_argument('--output-dir', required=True, help='hybrid result') + args = parser.parse_args() + + if not os.path.exists(args.output_dir): + os.makedirs(args.output_dir) + + run1_result = {} + with open(args.run1) as f: + for line in f: + qid, _, docid, rank, score, _ = line.rstrip().split() + score = float(score) + if qid in run1_result: + run1_result[qid][docid] = score + else: + run1_result[qid] = {docid: score} + run2_result = {} + with open(args.run2) as f: + for line in f: + qid, _, docid, rank, score, _ = line.rstrip().split() + score = float(score) + if qid in run2_result: + run2_result[qid][docid] = score + else: + run2_result[qid] = {docid: score} + + hybrid_result = {} + + for alpha in np.arange(args.start_weight, args.end_weight, args.step): + output_f = open(args.output_dir, 'w') + for key in tqdm(list(run1_result.keys())): + run1_hits = {docid: float(run1_result[key][docid]) for docid in run1_result[key]} + run2_hits = {docid: float(run2_result[key][docid]) for docid in run2_result[key]} + hybrid_scores = [] + min_run1_score = min(run1_hits.values()) + min_run2_score = min(run2_hits.values()) + for doc in set(run1_hits.keys()) | set(run2_hits.keys()): + if doc not in run1_hits: + score = alpha * run2_hits[doc] + min_run1_score + elif doc not in run2_hits: + score = alpha * min_run2_score + run1_hits[doc] + else: + score = alpha * run2_hits[doc] + run1_hits[doc] + hybrid_scores.append((doc, score)) + hybrid_scores = sorted(hybrid_scores, key=lambda x: x[1], reverse=True) + for idx, item in enumerate(hybrid_scores): + output_f.write(f'{key} Q0 {item[0]} {idx+1} {item[1]} hybrid\n') + output_f.close() diff --git a/scripts/msmarco-passage/lookup_docs_from_qrels.py b/scripts/msmarco-passage/lookup_docs_from_qrels.py new file mode 100644 index 0000000000000000000000000000000000000000..830dae1d3d96d9afed179464ea4ad461ef7aff2b --- /dev/null +++ b/scripts/msmarco-passage/lookup_docs_from_qrels.py @@ -0,0 +1,39 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import sys + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') + +from pyserini.search.lucene import LuceneSearcher + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--qrels', type=str, help='qrels file', required=True) + parser.add_argument('--index', type=str, help='index location', required=True) + args = parser.parse_args() + + searcher = LuceneSearcher(args.index) + with open(args.qrels, 'r') as reader: + for line in reader.readlines(): + arr = line.split('\t') + doc = json.loads(searcher.doc(arr[2]).raw())['contents'] + print(f'{arr[2]}\t{doc}') diff --git a/scripts/msmarco_v2/augment_passage_corpus.py b/scripts/msmarco_v2/augment_passage_corpus.py new file mode 100644 index 0000000000000000000000000000000000000000..8359fccf70c940ff3b31c316a19894038415be3b --- /dev/null +++ b/scripts/msmarco_v2/augment_passage_corpus.py @@ -0,0 +1,133 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +# Starting point for writing this script +# https://github.com/jacklin64/pyserini/blob/msmarcov2/scripts/msmarco_v2/segment_docs.py + +import argparse +import os +import sys +import gzip +import json +from tqdm import tqdm +import re +import glob +from multiprocessing import Pool, Manager + + +def read_doc_corpus(f_ins, docid_to_title, docid_to_headings, docid_to_url): + for f_in in f_ins: + print('read {}...'.format(f_in)) + with gzip.open(f_in, 'rt', encoding='utf8') as in_fh: + for json_string in tqdm(in_fh): + doc = json.loads(json_string) + docid = doc['docid'] + headings = doc['headings'] + title = doc['title'] + url = doc['url'] + docid_to_title[docid] = title + docid_to_headings[docid] = headings + docid_to_url[docid] = url + docid_to_pass_num[docid] = 0 + +def passage_corpus_to_tsv(f_ins, f_out): + print('Output passages...') + output = open(f_out, 'w') + output_id = open(f_out.replace(".json", ".id"), 'w') + + max_len = 0 + total_len = 0 + counter = 0 + for f_in in f_ins: + with gzip.open(f_in, 'rt', encoding='utf8') as in_fh: + for json_string in tqdm(in_fh): + input_dict = json.loads(json_string) + docid = input_dict['docid'] + pid = input_dict['pid'] + passage = input_dict['passage'] + passage_len = len(input_dict['passage']) + doc_url = docid_to_url[docid] + doc_title = docid_to_title[docid] + doc_headings = docid_to_headings[docid] + docid_to_pass_num[docid]+=1 + + total_len += passage_len + if (passage_len > max_len): + max_len = passage_len + counter+=1 + output_dict = input_dict + output_dict['url'] = doc_url + output_dict['title'] = doc_title + output_dict['headings'] = doc_headings + output.write(json.dumps(output_dict) + '\n') + output_id.write(pid+'\n') + print('maximum passage length: {}'.format(max_len)) + print('average passage length: {}'.format(total_len/counter)) + output.close() + output_id.close() + print('Done!') + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Concatenate MS MARCO original docs with predicted queries') + parser.add_argument('--original_psg_path', required=True, help='MS MARCO .tsv corpus file.') + parser.add_argument('--original_doc_path', required=True, help='doc json file path.') + parser.add_argument('--output_psg_path', required=True, help='Output file in the anserini jsonl format.') + parser.add_argument('--num_workers', default=1, type=int) + args = parser.parse_args() + + + os.makedirs(args.output_psg_path, exist_ok=True) + doc_files = glob.glob(os.path.join(args.original_doc_path, '*.gz')) + psg_files = glob.glob(os.path.join(args.original_psg_path, '*.gz')) + manager = Manager() + + docid_to_title = manager.dict() + docid_to_headings = manager.dict() + docid_to_url = manager.dict() + docid_to_pass_num = manager.dict() + num_files = len(doc_files) + pool = Pool(args.num_workers) + num_files_per_worker=num_files//args.num_workers + for i in range(args.num_workers): + if i==(args.num_workers-1): + file_list = doc_files[i*num_files_per_worker:] + else: + file_list = doc_files[i*num_files_per_worker:((i+1)*num_files_per_worker)] + pool.apply_async(read_doc_corpus ,(file_list, docid_to_title, docid_to_headings, docid_to_url)) + pool.close() + pool.join() + print('Total document size: {}'.format(len(docid_to_title))) + + + + num_files = len(psg_files) + pool = Pool(args.num_workers) + num_files_per_worker=num_files//args.num_workers + for i in range(args.num_workers): + f_out = os.path.join(args.output_psg_path, 'psg' + str(i) + '.json') + if i==(args.num_workers-1): + file_list = psg_files[i*num_files_per_worker:] + else: + file_list = psg_files[i*num_files_per_worker:((i+1)*num_files_per_worker)] + + pool.apply_async(passage_corpus_to_tsv ,(file_list, f_out)) + + pool.close() + pool.join() + + print('Done!') + + diff --git a/scripts/msmarco_v2/build_passage_to_doc_id_map.py b/scripts/msmarco_v2/build_passage_to_doc_id_map.py new file mode 100644 index 0000000000000000000000000000000000000000..6bddc569eaa2c5166817f72064ee9a86d095e370 --- /dev/null +++ b/scripts/msmarco_v2/build_passage_to_doc_id_map.py @@ -0,0 +1,63 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +# This file generates the .tsv files which map each passage to its original docid +# from the passage collection +# +# Usage: +# python scripts/msmarco_v2/build_passage_to_doc_id_map.py \ +# --input collections/msmarco_v2_passage \ +# --output /path/to/idmap_dir +import os +import math +import json +import gzip +import argparse +from multiprocessing import Pool + + +def write_mapping(psg_fn, outp_fn): + open_handle = gzip.open if psg_fn.endswith(".gz") else open + with open_handle(psg_fn) as fin, open(outp_fn, "w") as fout: + for line in fin: + line = json.loads(line) + pid, docid = line["pid"], line["docid"] + fout.write(f"{pid}\t{docid}\n") + + +def main(args): + input_dir, output_dir = args.input, args.output + threads = args.threads + if not os.path.exists(output_dir): + os.makedirs(output_dir, exist_ok=True) + + inp_outp_fn_pairs = [( + os.path.join(input_dir, psg_fn), + os.path.join(output_dir, f"{psg_fn.rstrip('.gz')}.idmap.tsv") + ) for psg_fn in os.listdir(input_dir)] + + with Pool(threads) as p: + p.starmap(write_mapping, inp_outp_fn_pairs) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Build mapping from passage id to document id (MS MARCO v2)") + parser.add_argument("--input", type=str, required=True, help="path to msmarco passage.") + parser.add_argument("--output", type=str, required=True, help="output directory to store the mapping tsv files.") + parser.add_argument("--threads", type=int, default=5, help="Number of threads to use.") + + args = parser.parse_args() + + main(args) diff --git a/scripts/msmarco_v2/convert_passage_run_to_doc_run.py b/scripts/msmarco_v2/convert_passage_run_to_doc_run.py new file mode 100644 index 0000000000000000000000000000000000000000..f96ffe0585898753b71a6cbd8cff3b20d86cdaec --- /dev/null +++ b/scripts/msmarco_v2/convert_passage_run_to_doc_run.py @@ -0,0 +1,85 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +# This file converts the runfile containing the passage id from MS MARCO Passage v2 to the +# runfile containing the docid from MS MARCO Doc v2. The passage with the max score are +# selected as the document score +# +# Note that this file can only be used after running `build_passage_to_doc_id_map.py` under the +# same folder, to prepare for the idmap.tsv files. +# +# Usage: +# python scripts/msmarco_v2/convert_passage_run_to_doc_run.py \ +# --input runs/run.mspsg.dev.txt \ +# --id-map /path/to/id_map_dir # generated by build_psg_doc_idmap.py \ +# --output runs/run.msdoc-converted-from-psg.dev.txt +import os +import argparse +from collections import defaultdict + + +def load_id_map_from_file(id_map_fn): + psgid2docid = {} + with open(id_map_fn) as f: + for line in f: + psgid, docid = line.strip().split("\t") + psgid2docid[psgid] = docid + return psgid2docid + + +def load_id_map_from_dir(id_map_dir): + return { + fn.replace(".idmap.tsv", ""): load_id_map_from_file(os.path.join(id_map_dir, fn)) + for fn in os.listdir(id_map_dir) + } + + +def main(args): + input_runfile, output_runfile = args.input, args.output + id_map_dir = args.id_map + id_map = load_id_map_from_dir(id_map_dir) + + docid_runs = defaultdict(dict) + with open(input_runfile) as f: + for line in f: + qid, _, psgid, rank, score, tag = line.strip().split() + score = float(score) + + psg_fn = "_".join(psgid.split("_")[:-1]) + docid = id_map[psg_fn][psgid] + + if docid not in docid_runs[qid]: + docid_runs[qid][docid] = score + else: + docid_runs[qid][docid] = max(score, docid_runs[qid][docid]) + + with open(output_runfile, "w") as f: + for qid in sorted(docid_runs, key=lambda q: int(q)): + docid2score = docid_runs[qid] + for rank, (docid, score) in enumerate(sorted(docid2score.items(), key=lambda kv: kv[1], reverse=True)): + f.write(f"{qid} Q0 {docid} {rank} {score} convert-from-passage-v2\n") + + print("finished") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Convert runfile that contain psg id into runfile that contain doc id.") + parser.add_argument("--input", type=str, required=True, help="path to msmarco passage runfile.") + parser.add_argument("--id-map", type=str, required=True, help="directory that contains msmarco passage-doc id mapping .tsv files. Generated by `build_passage_to_doc_id_map.py` under the same directory.") + parser.add_argument("--output", type=str, required=True, help="output path to store document id runfile.") + + args = parser.parse_args() + + main(args) diff --git a/scripts/msmarco_v2/generate_train_triplet.py b/scripts/msmarco_v2/generate_train_triplet.py new file mode 100644 index 0000000000000000000000000000000000000000..6e393d9c8f636419c44b6ae61c64b3cf52f7f6ef --- /dev/null +++ b/scripts/msmarco_v2/generate_train_triplet.py @@ -0,0 +1,119 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +# This file generate the training triple .tsv in `qid\tpos-docid\tneg-docid` format per line +# for both MS MARCO Document and Passage collections +# +# Usage: +# python scripts/msmarco_v2/generate_train_triplet.py \ +# -r v2_train_top100.txt \ +# -q v2_train_qrels.tsv \ +# -nneg 40 \ +# -o train-triple-ids.nneg-40.tsv +# -topk 1000 + +import os +import random +import argparse +from collections import defaultdict +from tqdm import tqdm + +def load_qrels(fn): + """ + Loading trec format query relevance file into a dictionary + :param fn: qrel file path + :return: dict, in format {qid: {docid: label, ...}, ...} + """ + qrels = defaultdict(dict) + with open(fn, "r", encoding="utf-8") as f: + for line in f: + qid, _, docid, label = line.strip().split() + qrels[qid][docid] = int(label) + return qrels + + +def load_run(fn, topk): + """ + Loading trec format runfile into a dictionary + :param fn: runfile path + :param topk: top results to include + :return: dict, in format {qid: [docid, ...], ...} + """ + run = defaultdict(list) + with open(fn, "r", encoding="utf-8") as f: + for line in f: + qid, _, docid, _, score, _ = line.strip().split() + run[qid].append((docid, float(score))) + + sorted_run = defaultdict(list) + for query_id, docid_scores in tqdm(run.items()): + docid_scores.sort(key=lambda x: x[1], reverse=True) + doc_ids = [doc_id for doc_id, _ in docid_scores][:topk] + sorted_run[query_id] = doc_ids + + return sorted_run + + +def open_as_write(fn): + parent = os.path.dirname(fn) + if parent != "": + os.makedirs(parent, exist_ok=True) + return open(fn, "w") + + +def main(args): + assert args.output.endswith(".tsv") + n_neg = args.n_neg_per_query + require_pos_in_topk = args.require_pos_in_topk + run = load_run(args.run_file, args.topk) + qrels = load_qrels(args.qrel_file) + n_not_in_topk, n_total = 0, len(qrels) + + with open_as_write(args.output) as fout: + for n_processed, qid in tqdm(enumerate(qrels)): + if qid not in run: + continue + + top_k = run[qid] + if require_pos_in_topk: + pos_docids = [docid for docid in top_k if qrels[qid].get(docid, 0) > 0] + else: + pos_docids = [docid for docid in qrels[qid] if qrels[qid][docid] > 0] + + neg_docids = [docid for docid in top_k if qrels[qid].get(docid, 0) == 0] + + if len(pos_docids) == 0: + n_not_in_topk += 1 + + for pos_docid in pos_docids: + sampled_neg_docids = random.choices(neg_docids, k=n_neg) + lines = [f"{qid}\t{pos_docid}\t{neg_docid}\n" for neg_docid in sampled_neg_docids] + fout.writelines(lines) + + print(f"Finished. {n_not_in_topk} out of {n_total} queries have no positive document in the runfile.") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Generate MS MARCO V2 training triple .tsv') + parser.add_argument('--run-file', '-r', required=True, help='MS MARCO V2 doc or passage train_top100.txt path.') + parser.add_argument('--qrel-file', '-q', required=True, help='MS MARCO V2 doc or passsage train_qrels.tsv path.') + parser.add_argument('--output', '-o', required=True, help='output training triple .tsv path') + parser.add_argument('--n-neg-per-query', '-nneg', default=40, type=int, help='number of negative documents sampled for each query') + parser.add_argument('--topk' , default=1000, type=int, help='top-k documents in the run file from which we sample negatives') + parser.add_argument('--require-pos-in-topk', action='store_true', default=False, help='if specified, then only keep the positive documents if they appear in the given runfile') + args = parser.parse_args() + + random.seed(123_456) + main(args) diff --git a/scripts/msmarco_v2/segment_docs.py b/scripts/msmarco_v2/segment_docs.py new file mode 100644 index 0000000000000000000000000000000000000000..8a8c7aa7b18102c2e982de1abcdb2314945e2d88 --- /dev/null +++ b/scripts/msmarco_v2/segment_docs.py @@ -0,0 +1,106 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +# Starting point for writing this script +# https://github.com/castorini/docTTTTTquery/blob/master/convert_msmarco_passages_doc_to_anserini.py +import argparse +import os +import sys +import gzip +import json +import spacy #Currently using spacy 2.3.5 +from tqdm import tqdm +import re +import glob +from multiprocessing import Pool + +def create_segments(doc_text, max_length, stride): + doc_text = doc_text.strip() + doc = nlp(doc_text[:10000]) + sentences = [sent.string.strip() for sent in doc.sents] + segments = [] + + for i in range(0, len(sentences), stride): + segment = " ".join(sentences[i:i+max_length]) + segments.append(segment) + if i + max_length >= len(sentences): + break + return segments + +def split_document(f_ins, f_out): + print('Spliting documents...') + output = open(f_out, 'w') + output_id = open(f_out.replace(".json", ".id"), 'w') + for f_in in f_ins: + with gzip.open(f_in, 'rt', encoding='utf8') as in_fh: + for json_string in tqdm(in_fh): + doc = json.loads(json_string) + f_doc_id = doc['docid'] + doc_url = doc['url'] + doc_title = doc['title'] + doc_headings = doc['headings'] + doc_text = doc['body'] + + segments = create_segments(doc_text, args.max_length, args.stride) + + for seg_id, segment in enumerate(segments): + # expanded_text = f'{doc_url}\n{doc_headings}\n{doc_title}\n{segment}' + doc_seg = f'{f_doc_id}#{seg_id}' + output_dict = {'docid': doc_seg, 'url': doc_url, 'title': doc_title, 'headings': doc_headings, 'segment': segment} + output.write(json.dumps(output_dict) + '\n') + output_id.write(doc_seg+'\n') + + output.close() + output_id.close() + print('Done!') + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Segment MS MARCO V2 original docs into passages') + parser.add_argument('--input', required=True, help='MS MARCO V2 corpus path.') + parser.add_argument('--output', required=True, help='output file path with json format.') + parser.add_argument('--max_length', default=10, help='maximum sentence length per passage') + parser.add_argument('--stride', default=5, help='the distance between each beginning sentence of passage in a document') + parser.add_argument('--num_workers', default=1, type=int) + args = parser.parse_args() + + + os.makedirs(os.path.dirname(args.output_docs_path), exist_ok=True) + + + max_length = args.max_length + stride = args.stride + nlp = spacy.blank("en") + nlp.add_pipe(nlp.create_pipe("sentencizer")) + + files = glob.glob(os.path.join(args.original_docs_path, '*.gz')) + num_files = len(files) + pool = Pool(args.num_workers) + num_files_per_worker=num_files//args.num_workers + for i in range(args.num_workers): + f_out = os.path.join(args.output_docs_path, 'doc' + str(i) + '.json') + if i==(args.num_workers-1): + file_list = files[i*num_files_per_worker:] + else: + file_list = files[i*num_files_per_worker:((i+1)*num_files_per_worker)] + + pool.apply_async(split_document ,(file_list, f_out)) + + pool.close() + pool.join() + + print('Done!') + + diff --git a/scripts/repro_matrix/beir_html.template b/scripts/repro_matrix/beir_html.template new file mode 100644 index 0000000000000000000000000000000000000000..88fd3eb101822bf3e708915e0029513a60be58d1 --- /dev/null +++ b/scripts/repro_matrix/beir_html.template @@ -0,0 +1,234 @@ + + + + + + + Pyserini Reproductions + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ +

Key:

+ +
    +
  • BM25 Flat: BM25 "flat" baseline
  • +
  • BM25 Multifield: BM25 "multifield" baseline
  • +
  • SPLADE: SPLADE-distill CoCodenser-medium
  • +
  • Contriever: mContriever
  • +
  • Contriever-msmarco: Contriever FT MS MARCO
  • +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +$rows + + +
BM25 FlatBM25 MultifieldSPLADEContrieverContriever MSMARCO
nDCG@10R@100nDCG@10R@100nDCG@10R@100nDCG@10R@100nDCG@10R@100
+
+ +
+ + + + + + + + + + + + diff --git a/scripts/repro_matrix/beir_html_row.template b/scripts/repro_matrix/beir_html_row.template new file mode 100644 index 0000000000000000000000000000000000000000..222707c6b836ff93a36d25528b1e830c29d4a92e --- /dev/null +++ b/scripts/repro_matrix/beir_html_row.template @@ -0,0 +1,116 @@ + + + +$dataset +$s1 +$s2 + +$s3 +$s4 + +$s5 +$s6 + +$s7 +$s8 + +$s9 +$s10 + + + + +
+ + + + + + +
+
+Command to generate run: + +
+
$cmd1
+
+Evaluation commands: + +
+
${eval_cmd1}
+
+ +
+
+Command to generate run: + +
+
$cmd2
+
+Evaluation commands: + +
+
${eval_cmd2}
+
+ +
+
+Command to generate run: + +
+
$cmd3
+
+Evaluation commands: + +
+
${eval_cmd3}
+
+ +
+
+Command to generate run: + +
+
$cmd4
+
+Evaluation commands: + +
+
${eval_cmd4}
+
+ +
+
+Command to generate run: + +
+
$cmd5
+
+Evaluation commands: + +
+
${eval_cmd5}
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/scripts/repro_matrix/defs_beir.py b/scripts/repro_matrix/defs_beir.py new file mode 100644 index 0000000000000000000000000000000000000000..c4a7978605cd00c69571bfab316dd4a1b7f02a30 --- /dev/null +++ b/scripts/repro_matrix/defs_beir.py @@ -0,0 +1,52 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +trec_eval_metric_definitions = { + 'nDCG@10': '-c -m ndcg_cut.10', + 'R@100': '-c -m recall.100', + 'R@1000': '-c -m recall.1000' +} + +beir_keys = ['trec-covid', + 'bioasq', + 'nfcorpus', + 'nq', + 'hotpotqa', + 'fiqa', + 'signal1m', + 'trec-news', + 'robust04', + 'arguana', + 'webis-touche2020', + 'cqadupstack-android', + 'cqadupstack-english', + 'cqadupstack-gaming', + 'cqadupstack-gis', + 'cqadupstack-mathematica', + 'cqadupstack-physics', + 'cqadupstack-programmers', + 'cqadupstack-stats', + 'cqadupstack-tex', + 'cqadupstack-unix', + 'cqadupstack-webmasters', + 'cqadupstack-wordpress', + 'quora', + 'dbpedia-entity', + 'scidocs', + 'fever', + 'climate-fever', + 'scifact' + ] diff --git a/scripts/repro_matrix/defs_miracl.py b/scripts/repro_matrix/defs_miracl.py new file mode 100644 index 0000000000000000000000000000000000000000..4ae0e2c90a736e9d89956412b3d19ba0aae3841d --- /dev/null +++ b/scripts/repro_matrix/defs_miracl.py @@ -0,0 +1,51 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +from collections import OrderedDict + +languages = [ + ['ar', 'arabic'], + ['bn', 'bengali'], + ['en', 'english'], + ['es', 'spanish'], + ['fa', 'persian'], + ['fi', 'finnish'], + ['fr', 'french'], + ['hi', 'hindi'], + ['id', 'indonesian'], + ['ja', 'japanese'], + ['ko', 'korean'], + ['ru', 'russian'], + ['sw', 'swahili'], + ['te', 'telugu'], + ['th', 'thai'], + ['zh', 'chinese'], + ['de', 'german'], + ['yo', 'yoruba'] +] + + +html_display = OrderedDict() +html_display['bm25'] = 'BM25' +html_display['mdpr-tied-pft-msmarco'] = 'mDPR (tied encoders), pre-FT w/ MS MARCO' +html_display['mdpr-tied-pft-msmarco-ft-all'] = 'mDPR (tied encoders), pre-FT w/ MS MARCO then FT w/ all Mr. TyDi' +html_display['bm25-mdpr-tied-pft-msmarco-hybrid'] = 'Hybrid of `bm25` and `mdpr-tied-pft-msmarco`' + +models = list(html_display) + +trec_eval_metric_definitions = { + 'nDCG@10': '-c -M 100 -m ndcg_cut.10', + 'R@100': '-c -m recall.100', +} diff --git a/scripts/repro_matrix/defs_mrtydi.py b/scripts/repro_matrix/defs_mrtydi.py new file mode 100644 index 0000000000000000000000000000000000000000..c8dcd8316b99e3b104a36209c014b253b332e3a6 --- /dev/null +++ b/scripts/repro_matrix/defs_mrtydi.py @@ -0,0 +1,44 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +languages = [ + ['ar', 'arabic'], + ['bn', 'bengali'], + ['en', 'english'], + ['fi', 'finnish'], + ['id', 'indonesian'], + ['ja', 'japanese'], + ['ko', 'korean'], + ['ru', 'russian'], + ['sw', 'swahili'], + ['te', 'telugu'], + ['th', 'thai'] +] + +models = ['bm25', 'mdpr-split-pft-nq', 'mdpr-tied-pft-nq', 'mdpr-tied-pft-msmarco', 'mdpr-tied-pft-msmarco-ft-all'] + +html_display = { + 'bm25': 'BM25', + 'mdpr-split-pft-nq': 'mDPR (split encoders), pre-FT w/ NQ', + 'mdpr-tied-pft-nq': 'mDPR (tied encoders), pre-FT w/ NQ', + 'mdpr-tied-pft-msmarco': 'mDPR (tied encoders), pre-FT w/ MS MARCO', + 'mdpr-tied-pft-msmarco-ft-all': 'mDPR (tied encoders), pre-FT w/ MS MARCO, FT w/ all' +} + +trec_eval_metric_definitions = { + 'MRR@100': '-c -M 100 -m recip_rank', + 'R@100': '-c -m recall.100', +} \ No newline at end of file diff --git a/scripts/repro_matrix/defs_odqa.py b/scripts/repro_matrix/defs_odqa.py new file mode 100644 index 0000000000000000000000000000000000000000..bfc3858b4c28eec17fd90f64cf4f86c254666500 --- /dev/null +++ b/scripts/repro_matrix/defs_odqa.py @@ -0,0 +1,33 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +# The models: the rows of the results table will be ordered this way. +models = { + 'models': + ['BM25-k1_0.9_b_0.4', + 'BM25-k1_0.9_b_0.4_dpr-topics', + 'GarT5-RRF', + 'DPR', + 'DPR-DKRR', + 'DPR-Hybrid', + 'GarT5RRF-DKRR-RRF' + ] +} + +evaluate_dpr_retrieval_metric_definitions = { + 'Top5-1000': '--topk 5 20 100 500 1000', + 'Top5-100': '--topk 5 20 100' +} diff --git a/scripts/repro_matrix/demo.html b/scripts/repro_matrix/demo.html new file mode 100644 index 0000000000000000000000000000000000000000..c95a67c74f9975ce484a939bb34ae4a0df237957 --- /dev/null +++ b/scripts/repro_matrix/demo.html @@ -0,0 +1,240 @@ + + + + + + + Material Design for Bootstrap + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TREC 2021devdev2
#
MAP@100
nDCG@10MRR@100R@100R@1KMRR@100R@1KMRR@100R@1K
+
+ + + + + + +
+
+Command to generate run on TREC 2021: +
+

+ python -m pyserini.search.lucene \
+   --index msmarco-v2-passage-slim \
+   --topics dl21 --output run.dl21.txt \
+   --bm25
+   
+
+
+
+ Command to generate run on dev: +
+

+ python -m pyserini.search.lucene \
+   --index msmarco-v2-passage-slim \
+   --topics msmarco-v2-passage-dev --output run.msmarco-v2-passage-dev.txt \
+   --bm25
+   
+
+
+
+ Command to generate run on dev2: +
+

+ python -m pyserini.search.lucene \
+   --index msmarco-v2-passage-slim \
+   --topics msmarco-v2-passage-dev2 --output run.msmarco-v2-passage-dev2.txt \
+   --bm25
+   
+
+ +
+
+ + +
+
+ + + + + + +
+
+Command to generate run on TREC 2021: +
+

+ python -m pyserini.search.lucene \
+   --index msmarco-v2-passage-augmented--slim \
+   --topics dl21 --output run.dl21.txt \
+   --bm25
+   
+
+
+
+ Command to generate run on dev: +
+

+ python -m pyserini.search.lucene \
+   --index msmarco-v2-passage-augmented--slim \
+   --topics msmarco-v2-passage-dev --output run.msmarco-v2-passage-dev.txt \
+   --bm25
+   
+
+
+
+ Command to generate run on dev2: +
+

+ python -m pyserini.search.lucene \
+   --index msmarco-v2-passage-augmented--slim \
+   --topics msmarco-v2-passage-dev2 --output run.msmarco-v2-passage-dev2.txt \
+   --bm25
+   
+
+ +
+
+ + +
+
+ +
+ + + + + + + + + diff --git a/scripts/repro_matrix/generate_html_beir.py b/scripts/repro_matrix/generate_html_beir.py new file mode 100644 index 0000000000000000000000000000000000000000..d8aaa9de34da1f3e6ea5c8dd1452754403d7cff8 --- /dev/null +++ b/scripts/repro_matrix/generate_html_beir.py @@ -0,0 +1,108 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from collections import defaultdict +from string import Template + +import yaml + +from scripts.repro_matrix.defs_beir import beir_keys, trec_eval_metric_definitions + + +def format_run_command(raw): + return raw.replace('--topics', '\\\n --topics')\ + .replace('--index', '\\\n --index')\ + .replace('--encoder-class', '\\\n --encoder-class')\ + .replace('--output ', '\\\n --output ')\ + .replace('--output-format trec', '\\\n --output-format trec \\\n ') \ + .replace('--hits ', '\\\n --hits ') + + +def format_eval_command(raw): + return raw.replace('-c ', '\\\n -c ')\ + .replace('run.', '\\\n run.') + + +def read_file(f): + fin = open(f, 'r') + text = fin.read() + fin.close() + + return text + + +if __name__ == '__main__': + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + commands = defaultdict(lambda: defaultdict(lambda: '')) + eval_commands = defaultdict(lambda: defaultdict(lambda: '')) + + html_template = read_file('scripts/repro_matrix/beir_html.template') + row_template = read_file('scripts/repro_matrix/beir_html_row.template') + + with open('pyserini/resources/beir.yaml') as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + cmd_template = condition['command'] + + for datasets in condition['datasets']: + dataset = datasets['dataset'] + + runfile = f'run.beir-{name}.{dataset}.txt' + cmd = Template(cmd_template).substitute(dataset=dataset, output=runfile) + commands[dataset][name] = format_run_command(cmd) + + for expected in datasets['scores']: + for metric in expected: + eval_cmd = f'python -m pyserini.eval.trec_eval ' + \ + f'{trec_eval_metric_definitions[metric]} beir-v1.0.0-{dataset}-test {runfile}' + eval_commands[dataset][name] += format_eval_command(eval_cmd) + '\n\n' + + table[dataset][name][metric] = expected[metric] + + row_cnt = 1 + html_rows = [] + for dataset in beir_keys: + s = Template(row_template) + s = s.substitute(row_cnt=row_cnt, + dataset=dataset, + s1=f'{table[dataset]["bm25-flat"]["nDCG@10"]:8.4f}', + s2=f'{table[dataset]["bm25-flat"]["R@100"]:8.4f}', + s3=f'{table[dataset]["bm25-multifield"]["nDCG@10"]:8.4f}', + s4=f'{table[dataset]["bm25-multifield"]["R@100"]:8.4f}', + s5=f'{table[dataset]["splade-distil-cocodenser-medium"]["nDCG@10"]:8.4f}', + s6=f'{table[dataset]["splade-distil-cocodenser-medium"]["R@100"]:8.4f}', + s7=f'{table[dataset]["contriever"]["nDCG@10"]:8.4f}', + s8=f'{table[dataset]["contriever"]["R@100"]:8.4f}', + s9=f'{table[dataset]["contriever-msmarco"]["nDCG@10"]:8.4f}', + s10=f'{table[dataset]["contriever-msmarco"]["R@100"]:8.4f}', + cmd1=commands[dataset]["bm25-flat"], + cmd2=commands[dataset]["bm25-multifield"], + cmd3=commands[dataset]["splade-distil-cocodenser-medium"], + cmd4=commands[dataset]["contriever"], + cmd5=commands[dataset]["contriever-msmarco"], + eval_cmd1=eval_commands[dataset]["bm25-flat"].rstrip(), + eval_cmd2=eval_commands[dataset]["bm25-multifield"].rstrip(), + eval_cmd3=eval_commands[dataset]["splade-distil-cocodenser-medium"].rstrip(), + eval_cmd4=eval_commands[dataset]["contriever"].rstrip(), + eval_cmd5=eval_commands[dataset]["contriever-msmarco"].rstrip(), + ) + + html_rows.append(s) + row_cnt += 1 + + all_rows = '\n'.join(html_rows) + print(Template(html_template).substitute(title='BEIR', rows=all_rows)) diff --git a/scripts/repro_matrix/generate_html_miracl.py b/scripts/repro_matrix/generate_html_miracl.py new file mode 100644 index 0000000000000000000000000000000000000000..77abb52a9dc8fd498e6953774df30cadf674581a --- /dev/null +++ b/scripts/repro_matrix/generate_html_miracl.py @@ -0,0 +1,211 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from collections import defaultdict +from string import Template + +import os +import yaml + +from scripts.repro_matrix.defs_miracl import models, languages, html_display, trec_eval_metric_definitions + + +def format_run_command(raw): + return raw.replace('--lang', '\\\n --lang')\ + .replace('--encoder', '\\\n --encoder')\ + .replace('--topics', '\\\n --topics')\ + .replace('--index', '\\\n --index')\ + .replace('--output ', '\\\n --output ')\ + .replace('--runs', '\\\n --runs ')\ + .replace('--batch ', '\\\n --batch ') \ + .replace('--threads 12', '--threads 12 \\\n ') + + +def format_eval_command(raw): + return raw.replace('-c ', '\\\n -c ')\ + .replace('run.', '\\\n run.') + + +def read_file(f): + fin = open(f, 'r') + text = fin.read() + fin.close() + + return text + + +def generate_table_rows(table_id, split, metric): + row_cnt = 1 + html_rows = [] + + for model in models: + s = Template(row_template) + + keys = {} + for lang in languages: + keys[lang[0]] = f'{model}.{lang[0]}' + + sum = table[keys["ar"]][split][metric] + \ + table[keys["bn"]][split][metric] + \ + table[keys["en"]][split][metric] + \ + table[keys["es"]][split][metric] + \ + table[keys["fa"]][split][metric] + \ + table[keys["fi"]][split][metric] + \ + table[keys["fr"]][split][metric] + \ + table[keys["hi"]][split][metric] + \ + table[keys["id"]][split][metric] + \ + table[keys["ja"]][split][metric] + \ + table[keys["ko"]][split][metric] + \ + table[keys["ru"]][split][metric] + \ + table[keys["sw"]][split][metric] + \ + table[keys["te"]][split][metric] + \ + table[keys["th"]][split][metric] + \ + table[keys["zh"]][split][metric] + \ + table[keys["de"]][split][metric] + \ + table[keys["yo"]][split][metric] + avg = sum / 18 + + s = s.substitute(table_cnt=table_id, + row_cnt=row_cnt, + model=html_display[model], + ar=f'{table[keys["ar"]][split][metric]:.3f}', + bn=f'{table[keys["bn"]][split][metric]:.3f}', + en=f'{table[keys["en"]][split][metric]:.3f}', + es=f'{table[keys["es"]][split][metric]:.3f}', + fa=f'{table[keys["fa"]][split][metric]:.3f}', + fi=f'{table[keys["fi"]][split][metric]:.3f}', + fr=f'{table[keys["fr"]][split][metric]:.3f}', + hi=f'{table[keys["hi"]][split][metric]:.3f}', + id=f'{table[keys["id"]][split][metric]:.3f}', + ja=f'{table[keys["ja"]][split][metric]:.3f}', + ko=f'{table[keys["ko"]][split][metric]:.3f}', + ru=f'{table[keys["ru"]][split][metric]:.3f}', + sw=f'{table[keys["sw"]][split][metric]:.3f}', + te=f'{table[keys["te"]][split][metric]:.3f}', + th=f'{table[keys["th"]][split][metric]:.3f}', + zh=f'{table[keys["zh"]][split][metric]:.3f}', + de=f'{table[keys["de"]][split][metric]:.3f}', + yo=f'{table[keys["yo"]][split][metric]:.3f}', + avg=f'{avg:.3f}', + cmd1=f'{commands[keys["ar"]]}', + cmd2=f'{commands[keys["bn"]]}', + cmd3=f'{commands[keys["en"]]}', + cmd4=f'{commands[keys["es"]]}', + cmd5=f'{commands[keys["fa"]]}', + cmd6=f'{commands[keys["fi"]]}', + cmd7=f'{commands[keys["fr"]]}', + cmd8=f'{commands[keys["hi"]]}', + cmd9=f'{commands[keys["id"]]}', + cmd10=f'{commands[keys["ja"]]}', + cmd11=f'{commands[keys["ko"]]}', + cmd12=f'{commands[keys["ru"]]}', + cmd13=f'{commands[keys["sw"]]}', + cmd14=f'{commands[keys["te"]]}', + cmd15=f'{commands[keys["th"]]}', + cmd16=f'{commands[keys["zh"]]}', + cmd17=f'{commands[keys["de"]]}', + cmd18=f'{commands[keys["yo"]]}', + eval_cmd1=f'{eval_commands[keys["ar"]][metric]}', + eval_cmd2=f'{eval_commands[keys["bn"]][metric]}', + eval_cmd3=f'{eval_commands[keys["en"]][metric]}', + eval_cmd4=f'{eval_commands[keys["es"]][metric]}', + eval_cmd5=f'{eval_commands[keys["fa"]][metric]}', + eval_cmd6=f'{eval_commands[keys["fi"]][metric]}', + eval_cmd7=f'{eval_commands[keys["fr"]][metric]}', + eval_cmd8=f'{eval_commands[keys["hi"]][metric]}', + eval_cmd9=f'{eval_commands[keys["id"]][metric]}', + eval_cmd10=f'{eval_commands[keys["ja"]][metric]}', + eval_cmd11=f'{eval_commands[keys["ko"]][metric]}', + eval_cmd12=f'{eval_commands[keys["ru"]][metric]}', + eval_cmd13=f'{eval_commands[keys["sw"]][metric]}', + eval_cmd14=f'{eval_commands[keys["te"]][metric]}', + eval_cmd15=f'{eval_commands[keys["th"]][metric]}', + eval_cmd16=f'{eval_commands[keys["zh"]][metric]}', + eval_cmd17=f'{eval_commands[keys["de"]][metric]}', + eval_cmd18=f'{eval_commands[keys["yo"]][metric]}' + ) + + s = s.replace("0.000", "--") + html_rows.append(s) + row_cnt += 1 + + return html_rows + + +if __name__ == '__main__': + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + commands = defaultdict(lambda: '') + eval_commands = defaultdict(lambda: defaultdict(lambda: '')) + + html_template = read_file('scripts/repro_matrix/mrtydi_html.template') + table_template = read_file('scripts/repro_matrix/miracl_html_table.template') + row_template = read_file('scripts/repro_matrix/miracl_html_table_row.template') + + with open('pyserini/resources/miracl.yaml') as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + eval_key = condition['eval_key'] + cmd_template = condition['command'] + cmd_lst = cmd_template.split() + lang = name.split('.')[-1] + is_hybrid_run = 'hybrid' in name + + for splits in condition['splits']: + split = splits['split'] + if is_hybrid_run: + hits = int(cmd_lst[cmd_lst.index('--k') + 1]) + else: + hits = int(cmd_lst[cmd_lst.index('--hits') + 1]) + + runfile = f'run.miracl.{name}.{split}.txt' + if is_hybrid_run: + bm25_output = f'runs/run.miracl.bm25.{lang}.{split}.top{hits}.txt' + mdpr_output = f'runs/run.miracl.mdpr-tied-pft-msmarco.{lang}.{split}.top{hits}.txt' + cmd = Template(cmd_template).substitute(split=split, output=runfile, bm25_output=bm25_output, mdpr_output=mdpr_output) + else: + cmd = Template(cmd_template).substitute(split=split, output=runfile) + + commands[name] = format_run_command(cmd) + + for expected in splits['scores']: + for metric in expected: + if str(expected[metric])[-1] == "5": + # without adding espilon, there is a chance that f-string would round 0.5 to 0 rather than 1 + # e.g., 0.8885 -> 0.888 rather than 0.889 + # add a espilon to the expected score to avoid rounding error + expected[metric] += 1e-5 + table[name][split][metric] = expected[metric] + + eval_cmd = f'python -m pyserini.eval.trec_eval ' + \ + f'{trec_eval_metric_definitions[metric]} {eval_key}-{split} {runfile}' + eval_commands[name][metric] = format_eval_command(eval_cmd) + + tables_html = [] + + split = 'dev' + + # Build the table for MRR@100, test queries + html_rows = generate_table_rows(1, split, 'nDCG@10') + all_rows = '\n'.join(html_rows) + tables_html.append(Template(table_template).substitute(desc=f'nDCG@10, {split} queries', rows=all_rows)) + + # Build the table for R@100, test queries + html_rows = generate_table_rows(2, split, 'R@100') + all_rows = '\n'.join(html_rows) + tables_html.append(Template(table_template).substitute(desc=f'Recall@100, {split} queries', rows=all_rows)) + + print(Template(html_template).substitute(title='MIRACL', tables=' '.join(tables_html))) diff --git a/scripts/repro_matrix/generate_html_mrtydi.py b/scripts/repro_matrix/generate_html_mrtydi.py new file mode 100644 index 0000000000000000000000000000000000000000..7ffa5c9daec17695de75dc2a9106b8162b61b58f --- /dev/null +++ b/scripts/repro_matrix/generate_html_mrtydi.py @@ -0,0 +1,160 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from collections import defaultdict +from string import Template + +import yaml + +from scripts.repro_matrix.defs_mrtydi import models, languages, html_display, trec_eval_metric_definitions + + +def format_run_command(raw): + return raw.replace('--lang', '\\\n --lang')\ + .replace('--encoder', '\\\n --encoder')\ + .replace('--topics', '\\\n --topics')\ + .replace('--index', '\\\n --index')\ + .replace('--output ', '\\\n --output ')\ + .replace('--batch ', '\\\n --batch ') \ + .replace('--threads 12', '--threads 12 \\\n ') + + +def format_eval_command(raw): + return raw.replace('-c ', '\\\n -c ')\ + .replace('run.', '\\\n run.') + + +def read_file(f): + fin = open(f, 'r') + text = fin.read() + fin.close() + + return text + + +def generate_table_rows(table_id, split, metric): + row_cnt = 1 + html_rows = [] + + for model in models: + s = Template(row_template) + + keys = {} + for lang in languages: + keys[lang[0]] = f'{model}.{lang[0]}' + + sum = table[keys["ar"]][split][metric] + \ + table[keys["bn"]][split][metric] + \ + table[keys["en"]][split][metric] + \ + table[keys["fi"]][split][metric] + \ + table[keys["id"]][split][metric] + \ + table[keys["ja"]][split][metric] + \ + table[keys["ko"]][split][metric] + \ + table[keys["ru"]][split][metric] + \ + table[keys["sw"]][split][metric] + \ + table[keys["te"]][split][metric] + \ + table[keys["th"]][split][metric] + avg = sum / 11 + + s = s.substitute(table_cnt=table_id, + row_cnt=row_cnt, + model=html_display[model], + ar=f'{table[keys["ar"]][split][metric]:.3f}', + bn=f'{table[keys["bn"]][split][metric]:.3f}', + en=f'{table[keys["en"]][split][metric]:.3f}', + fi=f'{table[keys["fi"]][split][metric]:.3f}', + id=f'{table[keys["id"]][split][metric]:.3f}', + ja=f'{table[keys["ja"]][split][metric]:.3f}', + ko=f'{table[keys["ko"]][split][metric]:.3f}', + ru=f'{table[keys["ru"]][split][metric]:.3f}', + sw=f'{table[keys["sw"]][split][metric]:.3f}', + te=f'{table[keys["te"]][split][metric]:.3f}', + th=f'{table[keys["th"]][split][metric]:.3f}', + avg=f'{avg:.3f}', + cmd1=f'{commands[keys["ar"]]}', + cmd2=f'{commands[keys["bn"]]}', + cmd3=f'{commands[keys["en"]]}', + cmd4=f'{commands[keys["fi"]]}', + cmd5=f'{commands[keys["id"]]}', + cmd6=f'{commands[keys["ja"]]}', + cmd7=f'{commands[keys["ko"]]}', + cmd8=f'{commands[keys["ru"]]}', + cmd9=f'{commands[keys["sw"]]}', + cmd10=f'{commands[keys["te"]]}', + cmd11=f'{commands[keys["th"]]}', + eval_cmd1=f'{eval_commands[keys["ar"]][metric]}', + eval_cmd2=f'{eval_commands[keys["bn"]][metric]}', + eval_cmd3=f'{eval_commands[keys["en"]][metric]}', + eval_cmd4=f'{eval_commands[keys["fi"]][metric]}', + eval_cmd5=f'{eval_commands[keys["id"]][metric]}', + eval_cmd6=f'{eval_commands[keys["ja"]][metric]}', + eval_cmd7=f'{eval_commands[keys["ko"]][metric]}', + eval_cmd8=f'{eval_commands[keys["ru"]][metric]}', + eval_cmd9=f'{eval_commands[keys["sw"]][metric]}', + eval_cmd10=f'{eval_commands[keys["te"]][metric]}', + eval_cmd11=f'{eval_commands[keys["th"]][metric]}' + ) + + html_rows.append(s) + row_cnt += 1 + + return html_rows + + +if __name__ == '__main__': + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + commands = defaultdict(lambda: '') + eval_commands = defaultdict(lambda: defaultdict(lambda: '')) + + html_template = read_file('scripts/repro_matrix/mrtydi_html.template') + table_template = read_file('scripts/repro_matrix/mrtydi_html_table.template') + row_template = read_file('scripts/repro_matrix/mrtydi_html_table_row.template') + + with open('pyserini/resources/mrtydi.yaml') as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + eval_key = condition['eval_key'] + cmd_template = condition['command'] + + for splits in condition['splits']: + split = splits['split'] + + runfile = f'run.mrtydi.{name}.{split}.txt' + cmd = Template(cmd_template).substitute(split=split, output=runfile) + commands[name] = format_run_command(cmd) + + for expected in splits['scores']: + for metric in expected: + table[name][split][metric] = expected[metric] + + eval_cmd = f'python -m pyserini.eval.trec_eval ' + \ + f'{trec_eval_metric_definitions[metric]} {eval_key}-{split} {runfile}' + eval_commands[name][metric] = format_eval_command(eval_cmd) + + tables_html = [] + + # Build the table for MRR@100, test queries + html_rows = generate_table_rows(1, 'test', 'MRR@100') + all_rows = '\n'.join(html_rows) + tables_html.append(Template(table_template).substitute(desc='MRR@100, test queries', rows=all_rows)) + + # Build the table for R@100, test queries + html_rows = generate_table_rows(2, 'test', 'R@100') + all_rows = '\n'.join(html_rows) + tables_html.append(Template(table_template).substitute(desc='Recall@100, test queries', rows=all_rows)) + + print(Template(html_template).substitute(title='Mr.TyDi', tables=' '.join(tables_html))) diff --git a/scripts/repro_matrix/generate_html_odqa.py b/scripts/repro_matrix/generate_html_odqa.py new file mode 100644 index 0000000000000000000000000000000000000000..f3e2c1e47de6e5782fc1b42fba514db95763af67 --- /dev/null +++ b/scripts/repro_matrix/generate_html_odqa.py @@ -0,0 +1,274 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from collections import defaultdict +from string import Template +import argparse + +import yaml + +# from scripts.repro_matrix.defs_odqa import models +from defs_odqa import models + +# global vars +TQA_TOPICS = 'dpr-trivia-test' +NQ_TOPICS = 'nq-test' +PRINT_TQA_TOPICS = 'TriviaQA' +PRINT_NQ_TOPICS = 'Natural Question' +TQA_DKRR_RUN = f'runs/run.odqa.DPR-DKRR.{TQA_TOPICS}.hits-100.txt' +NQ_DKRR_RUN = f'runs/run.odqa.DPR-DKRR.{NQ_TOPICS}.hits-100.txt' +HITS_1K = set(['GarT5-RRF', 'DPR-DKRR']) + + +def format_run_command(raw): + return raw.replace('--encoded-queries', '\\\n --encoded-queries')\ + .replace('--encoder', '\\\n --encoder')\ + .replace('--topics', '\\\n --topics')\ + .replace('--index', '\\\n --index')\ + .replace('--output', '\\\n --output')\ + .replace('--batch', '\\\n --batch') \ + .replace('--threads', '\\\n --threads')\ + .replace('--bm25', '\\\n --bm25')\ + .replace('--hits 100', '\\\n --hits 100') + +def format_hybrid_search_command(raw): + return raw.replace('--encoder', '\\\n\t--encoder')\ + .replace(' dense', ' \\\n dense ')\ + .replace(' sparse', ' \\\n sparse')\ + .replace(' fusion', ' \\\n fusion')\ + .replace(' run ', ' \\\n run\t')\ + .replace('--output', '\\\n\t--output')\ + .replace('--batch', '\\\n\t--batch') \ + .replace('--threads', '\\\n\t--threads')\ + .replace('--lang', '\\\n\t--lang')\ + .replace('--hits 100', '\\\n\t--hits 100') + +def format_convert_command(raw): + return raw.replace('--topics', '\\\n --topics')\ + .replace('--index', '\\\n --index')\ + .replace('--input', '\\\n --input')\ + .replace('--output', '\\\n --output')\ + + +def format_eval_command(raw): + return raw.replace('--retrieval ', '\\\n --retrieval ')\ + .replace('--topk', '\\\n --topk') + + +def read_file(f): + fin = open(f, 'r') + text = fin.read() + fin.close() + + return text + + +def generate_table_rows(table_id): + row_cnt = 1 + html_rows = [] + + for model in models['models']: + if model == "GarT5-RRF": + s = Template(row_template_garrrf) + s = s.substitute(table_cnt=table_id, + row_cnt=row_cnt, + model=model, + TQA_Top20=table[model][TQA_TOPICS]["Top20"], + TQA_Top100=table[model][TQA_TOPICS]["Top100"], + NQ_Top20=table[model][NQ_TOPICS]["Top20"], + NQ_Top100=table[model][NQ_TOPICS]["Top100"], + cmd1=f'{commands[model][TQA_TOPICS][0]}', + cmd2=f'{commands[model][TQA_TOPICS][1]}', + cmd3=f'{commands[model][TQA_TOPICS][2]}', + cmd4=f'{commands[model][NQ_TOPICS][0]}', + cmd5=f'{commands[model][NQ_TOPICS][1]}', + cmd6=f'{commands[model][NQ_TOPICS][2]}', + fusion_cmd1=fusion_cmd_tqa[0], + fusion_cmd2=fusion_cmd_nq[0], + convert_cmd1=f'{convert_commands[model][TQA_TOPICS]}', + convert_cmd2=f'{convert_commands[model][NQ_TOPICS]}', + eval_cmd1=f'{eval_commands[model][TQA_TOPICS]}', + eval_cmd2=f'{eval_commands[model][NQ_TOPICS]}' + ) + elif model == "GarT5RRF-DKRR-RRF": + s = Template(row_template_rrf) + s = s.substitute(table_cnt=table_id, + row_cnt=row_cnt, + model=model, + TQA_Top20=table[model][TQA_TOPICS]["Top20"], + TQA_Top100=table[model][TQA_TOPICS]["Top100"], + NQ_Top20=table[model][NQ_TOPICS]["Top20"], + NQ_Top100=table[model][NQ_TOPICS]["Top100"], + fusion_cmd1=fusion_cmd_tqa[1], + fusion_cmd2=fusion_cmd_nq[1], + convert_cmd1=f'{convert_commands[model][TQA_TOPICS]}', + convert_cmd2=f'{convert_commands[model][NQ_TOPICS]}', + eval_cmd1=f'{eval_commands[model][TQA_TOPICS]}', + eval_cmd2=f'{eval_commands[model][NQ_TOPICS]}' + ) + else: + s = Template(row_template) + s = s.substitute(table_cnt=table_id, + row_cnt=row_cnt, + model=model, + TQA_Top20=table[model][TQA_TOPICS]["Top20"], + TQA_Top100=table[model][TQA_TOPICS]["Top100"], + NQ_Top20=table[model][NQ_TOPICS]["Top20"], + NQ_Top100=table[model][NQ_TOPICS]["Top100"], + cmd1=commands[model][TQA_TOPICS][0], + cmd2=commands[model][NQ_TOPICS][0], + convert_cmd1=f'{convert_commands[model][TQA_TOPICS]}', + convert_cmd2=f'{convert_commands[model][NQ_TOPICS]}', + eval_cmd1=f'{eval_commands[model][TQA_TOPICS]}', + eval_cmd2=f'{eval_commands[model][NQ_TOPICS]}' + ) + html_rows.append(s) + row_cnt += 1 + + return html_rows + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Generate HTML rendering of regression matrix for MS MARCO corpora.') + args = parser.parse_args() + + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + commands = defaultdict(lambda: defaultdict(lambda: [])) + eval_commands = defaultdict(lambda: defaultdict(lambda: '')) + convert_commands = defaultdict(lambda: defaultdict(lambda: '')) + + html_template = read_file('scripts/repro_matrix/odqa_html.template') + table_template = read_file('scripts/repro_matrix/odqa_html_table.template') + row_template = read_file('scripts/repro_matrix/odqa_html_table_row.template') + row_template_garrrf = read_file('scripts/repro_matrix/odqa_html_table_row_gar-rrf.template') + row_template_rrf = read_file('scripts/repro_matrix/odqa_html_table_row_rrf.template') + tqa_yaml_path = 'pyserini/resources/triviaqa.yaml' + nq_yaml_path = 'pyserini/resources/naturalquestion.yaml' + + garrrf_ls = ['answers','titles','sentences'] + prefusion_runfile_tqa = [] + prefusion_runfile_nq = [] + fusion_cmd_tqa = [] + fusion_cmd_nq = [] + tqa_fused_run = {} + nq_fused_run = {} + + + with open(tqa_yaml_path) as f_tqa, open(nq_yaml_path) as f_nq: + tqa_yaml_data = yaml.safe_load(f_tqa) + nq_yaml_data = yaml.safe_load(f_nq) + for condition_tqa, condition_nq in zip(tqa_yaml_data['conditions'], nq_yaml_data['conditions']): + name = condition_tqa['model_name'] + cmd_template_tqa = condition_tqa['command'] + cmd_template_nq = condition_nq['command'] + if 'RRF' in name: + if name == 'GarT5-RRF': + runfile_tqa = [f'runs/run.odqa.{name}.{TQA_TOPICS}.{garrrf_ls[i]}.hits-1000.txt' for i in range(len(cmd_template_tqa))] + runfile_nq = [f'runs/run.odqa.{name}.{NQ_TOPICS}.{garrrf_ls[i]}.hits-1000.txt' for i in range(len(cmd_template_nq))] + tqa_fused_run.update({name: runfile_tqa[0].replace('.answers.hits-1000.txt', '.hits-100.fusion.txt')}) + nq_fused_run.update({name: runfile_nq[0].replace('.answers.hits-1000.txt', '.hits-100.fusion.txt')}) + jsonfile_tqa = tqa_fused_run[name].replace('.txt', '.json').replace('.hits-1000', '') + jsonfile_nq = nq_fused_run[name].replace('.txt', '.json').replace('.hits-1000', '') + elif name == 'GarT5RRF-DKRR-RRF': + jsonfile_tqa = f'runs/run.odqa.{name}.{TQA_TOPICS}.json' + jsonfile_nq = f'runs/run.odqa.{name}.{TQA_TOPICS}.json' + tqa_fused_run.update({name: jsonfile_tqa.replace('.json','.txt')}) + nq_fused_run.update({name: jsonfile_nq.replace('.json','.txt')}) + else: + raise NameError('Wrong model name in yaml config') + else: + if 'dpr-topics' in name: + runfile_nq = [f'runs/run.odqa.{name}.dpr-nq-test.hits-100.txt'] + else: + runfile_nq = [f'runs/run.odqa.{name}.{NQ_TOPICS}.hits-100.txt'] + runfile_tqa = [f'runs/run.odqa.{name}.{TQA_TOPICS}.hits-100.txt'] + jsonfile_tqa = runfile_tqa[0].replace('.answers', '').replace('.txt', '.json') + jsonfile_nq = runfile_nq[0].replace('.answers', '').replace('.txt', '.json') + + display_runfile_tqa = jsonfile_tqa.replace('.json','.txt') + display_runfile_nq = jsonfile_nq.replace('.json','.txt') + + # fusion commands + if "RRF" in name: + if name == "GarT5RRF-DKRR-RRF": + nq_runs = ' \\\n\t '.join([NQ_DKRR_RUN, nq_fused_run['GarT5-RRF']]) + tqa_runs = ' \\\n\t '.join([TQA_DKRR_RUN, tqa_fused_run['GarT5-RRF']]) + else: + tqa_runs = ' \\\n\t '.join(runfile_tqa) + nq_runs = ' \\\n\t '.join(runfile_nq) + + fusion_cmd_tqa.append(f'python -m pyserini.fusion \\\n' + \ + f' --runs {tqa_runs} \\\n' + \ + f' --output {tqa_fused_run[name]} \\\n' + f' --k 100') + fusion_cmd_nq.append(f'python -m pyserini.fusion \\\n' + \ + f' --runs {nq_runs} \\\n' + \ + f' --output {nq_fused_run[name]} \\\n' + \ + f' --k 100') + + if name != "GarT5RRF-DKRR-RRF": + hits = 100 if name not in HITS_1K else 1000 + cmd_tqa = [Template(cmd_template_tqa[i]).substitute( + output=runfile_tqa[i]) + f" --hits {hits}" for i in range(len(cmd_template_tqa))] + cmd_nq = [Template(cmd_template_nq[i]).substitute(output=runfile_nq[i]) + f" --hits {hits}" for i in range(len(cmd_template_nq))] + if name == 'DPR-Hybrid': + commands[name][TQA_TOPICS].extend([format_hybrid_search_command(i) for i in cmd_tqa]) + commands[name][NQ_TOPICS].extend([format_hybrid_search_command(i) for i in cmd_nq]) + else: + commands[name][TQA_TOPICS].extend([format_run_command(i) for i in cmd_tqa]) + commands[name][NQ_TOPICS].extend([format_run_command(i) for i in cmd_nq]) + + # convertion commands: + if 'dpr-topics' in name: + temp_nq_topics = 'dpr-nq-test' + else: + temp_nq_topics = NQ_TOPICS + + convert_cmd_tqa = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run ' + \ + f'--topics {TQA_TOPICS} ' + \ + f'--index wikipedia-dpr ' +\ + f'--input {display_runfile_tqa} ' + \ + f'--output {jsonfile_tqa}' + convert_cmd_nq = f'python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run ' + \ + f'--topics {temp_nq_topics} ' + \ + f'--index wikipedia-dpr ' +\ + f'--input {display_runfile_nq} ' + \ + f'--output {jsonfile_nq}' + convert_commands[name][TQA_TOPICS] = format_convert_command(convert_cmd_tqa) + convert_commands[name][NQ_TOPICS] = format_convert_command(convert_cmd_nq) + + # eval commands + eval_cmd_tqa = f'python -m pyserini.eval.evaluate_dpr_retrieval ' + \ + f'--retrieval {jsonfile_tqa} ' + \ + f'--topk 20 100' + eval_cmd_nq = f'python -m pyserini.eval.evaluate_dpr_retrieval ' + \ + f'--retrieval {jsonfile_nq} ' + \ + f'--topk 20 100' + eval_commands[name][TQA_TOPICS] = format_eval_command(eval_cmd_tqa) + eval_commands[name][NQ_TOPICS] = format_eval_command(eval_cmd_nq) + + for expected_tqa, expected_nq in zip(condition_tqa['scores'], condition_nq['scores']): + table[name][TQA_TOPICS].update(expected_tqa) + table[name][NQ_TOPICS].update(expected_nq) + tables_html = [] + + html_rows = generate_table_rows(1) + all_rows = '\n'.join(html_rows) + tables_html.append(Template(table_template).substitute(desc='Models', rows=all_rows)) + + print(Template(html_template).substitute( + title=f'Retrieval for Open-Domain QA Datasets', tables=' '.join(tables_html))) diff --git a/scripts/repro_matrix/miracl_html_table.template b/scripts/repro_matrix/miracl_html_table.template new file mode 100644 index 0000000000000000000000000000000000000000..c008b40149c0fe1fd71d0d20e941374917824a64 --- /dev/null +++ b/scripts/repro_matrix/miracl_html_table.template @@ -0,0 +1,35 @@ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +$rows + + +
$descarbnenesfafifrhiidjakoruswtethzhdeyoavg
+
diff --git a/scripts/repro_matrix/miracl_html_table_row.template b/scripts/repro_matrix/miracl_html_table_row.template new file mode 100644 index 0000000000000000000000000000000000000000..24a78c846692b22c275bbfd9f5124dd7b2ae4c56 --- /dev/null +++ b/scripts/repro_matrix/miracl_html_table_row.template @@ -0,0 +1,336 @@ + + + +$model +$ar +$bn +$en +$es +$fa +$fi +$fr +$hi +$id +$ja +$ko +$ru +$sw +$te +$th +$zh +$de +$yo + +$avg + + + +
+ + + + + + +
+
+Command to generate run: + +
+
$cmd1
+
+Evaluation commands: + +
+
${eval_cmd1}
+
+ +
+
+Command to generate run: + +
+
$cmd2
+
+Evaluation commands: + +
+
${eval_cmd2}
+
+ +
+
+Command to generate run: + +
+
$cmd3
+
+Evaluation commands: + +
+
${eval_cmd3}
+
+ +
+
+Command to generate run: + +
+
$cmd4
+
+Evaluation commands: + +
+
${eval_cmd4}
+
+ +
+
+Command to generate run: + +
+
$cmd5
+
+Evaluation commands: + +
+
${eval_cmd5}
+
+ +
+
+Command to generate run: + +
+
$cmd6
+
+Evaluation commands: + +
+
${eval_cmd6}
+
+ +
+
+Command to generate run: + +
+
$cmd7
+
+Evaluation commands: + +
+
${eval_cmd7}
+
+ +
+
+Command to generate run: + +
+
$cmd8
+
+Evaluation commands: + +
+
${eval_cmd8}
+
+ +
+
+Command to generate run: + +
+
$cmd9
+
+Evaluation commands: + +
+
${eval_cmd9}
+
+ +
+
+Command to generate run: + +
+
$cmd10
+
+Evaluation commands: + +
+
${eval_cmd10}
+
+ +
+
+Command to generate run: + +
+
$cmd11
+
+Evaluation commands: + +
+
${eval_cmd11}
+
+ +
+
+Command to generate run: + +
+
$cmd12
+
+Evaluation commands: + +
+
${eval_cmd12}
+
+ +
+
+Command to generate run: + +
+
$cmd13
+
+Evaluation commands: + +
+
${eval_cmd13}
+
+ +
+
+ +Command to generate run: + +
+
$cmd14
+
+Evaluation commands: + +
+
${eval_cmd14}
+
+ +
+
+ +Command to generate run: + +
+
$cmd15
+
+Evaluation commands: + +
+
${eval_cmd15}
+
+ +
+ +
+Command to generate run: + +
+
$cmd16
+
+Evaluation commands: + +
+
${eval_cmd16}
+
+ +
+ +
+Command to generate run: + +
+
$cmd17
+
+Evaluation commands: + +
+
${eval_cmd17}
+
+ +
+ +
+Command to generate run: + +
+
$cmd18
+
+Evaluation commands: + +
+
${eval_cmd18}
+
+ +
+ +
+ + +
+ diff --git a/scripts/repro_matrix/mrtydi_html.template b/scripts/repro_matrix/mrtydi_html.template new file mode 100644 index 0000000000000000000000000000000000000000..d0c1e105d2697afb2fc09d239ec90afcd9610906 --- /dev/null +++ b/scripts/repro_matrix/mrtydi_html.template @@ -0,0 +1,185 @@ + + + + + + + Pyserini Reproductions + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ + $tables + +
+ + + + + + + + + + diff --git a/scripts/repro_matrix/mrtydi_html_table.template b/scripts/repro_matrix/mrtydi_html_table.template new file mode 100644 index 0000000000000000000000000000000000000000..f61a3d2102360cfa860c75ecd91f0dd13d4fe049 --- /dev/null +++ b/scripts/repro_matrix/mrtydi_html_table.template @@ -0,0 +1,28 @@ +
+ + + + + + + + + + + + + + + + + + + + + + +$rows + + +
$descarbnenfiidjakoruswtethavg
+
diff --git a/scripts/repro_matrix/mrtydi_html_table_row.template b/scripts/repro_matrix/mrtydi_html_table_row.template new file mode 100644 index 0000000000000000000000000000000000000000..913cbc5b7cfc6a38cd92f14321e12ca6b48b2aa1 --- /dev/null +++ b/scripts/repro_matrix/mrtydi_html_table_row.template @@ -0,0 +1,212 @@ + + + +$model +$ar +$bn +$en +$fi +$id +$ja +$ko +$ru +$sw +$te +$th + +$avg + + + + + +
+ + + + + + +
+
+Command to generate run: + +
+
$cmd1
+
+Evaluation commands: + +
+
${eval_cmd1}
+
+ +
+
+Command to generate run: + +
+
$cmd2
+
+Evaluation commands: + +
+
${eval_cmd2}
+
+ +
+
+Command to generate run: + +
+
$cmd3
+
+Evaluation commands: + +
+
${eval_cmd3}
+
+ +
+
+Command to generate run: + +
+
$cmd4
+
+Evaluation commands: + +
+
${eval_cmd4}
+
+ +
+
+Command to generate run: + +
+
$cmd5
+
+Evaluation commands: + +
+
${eval_cmd5}
+
+ +
+
+Command to generate run: + +
+
$cmd6
+
+Evaluation commands: + +
+
${eval_cmd6}
+
+ +
+
+Command to generate run: + +
+
$cmd7
+
+Evaluation commands: + +
+
${eval_cmd7}
+
+ +
+
+Command to generate run: + +
+
$cmd8
+
+Evaluation commands: + +
+
${eval_cmd8}
+
+ +
+
+Command to generate run: + +
+
$cmd9
+
+Evaluation commands: + +
+
${eval_cmd9}
+
+ +
+
+Command to generate run: + +
+
$cmd10
+
+Evaluation commands: + +
+
${eval_cmd10}
+
+ +
+
+Command to generate run: + +
+
$cmd11
+
+Evaluation commands: + +
+
${eval_cmd11}
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/scripts/repro_matrix/odqa_html.template b/scripts/repro_matrix/odqa_html.template new file mode 100644 index 0000000000000000000000000000000000000000..d0c1e105d2697afb2fc09d239ec90afcd9610906 --- /dev/null +++ b/scripts/repro_matrix/odqa_html.template @@ -0,0 +1,185 @@ + + + + + + + Pyserini Reproductions + + + + + + + + + + + + +
+
+
+
+

$title

+
+
+
+
+ + +
+ + $tables + +
+ + + + + + + + + + diff --git a/scripts/repro_matrix/odqa_html_table.template b/scripts/repro_matrix/odqa_html_table.template new file mode 100644 index 0000000000000000000000000000000000000000..fd657203a9c958437addcdc17797b9e12e2ef9c0 --- /dev/null +++ b/scripts/repro_matrix/odqa_html_table.template @@ -0,0 +1,27 @@ +
+ + + + + + + + + + + + + + + + + + + + + +$rows + + +
$descTriviaQANatural Question
Top20Top100Top20Top100
+
diff --git a/scripts/repro_matrix/odqa_html_table_row.template b/scripts/repro_matrix/odqa_html_table_row.template new file mode 100644 index 0000000000000000000000000000000000000000..d2fdd68527be59dda64f5b6df6e9eba74442b107 --- /dev/null +++ b/scripts/repro_matrix/odqa_html_table_row.template @@ -0,0 +1,74 @@ + + + +$model +$TQA_Top20 +$TQA_Top100 +$NQ_Top20 +$NQ_Top100 + + + + + +
+ + + + + + +
+
+Command to generate run: + +
+
$cmd1
+
+ +Converting from trec into json +
+
$convert_cmd1
+
+ + +Evaluation commands: + +
+
$eval_cmd1
+
+ +
+
+Command to generate run: + +
+
$cmd2
+
+ +Converting from trec into json +
+
$convert_cmd2
+
+ + +Evaluation commands: + +
+
$eval_cmd2
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/scripts/repro_matrix/odqa_html_table_row_gar-rrf.template b/scripts/repro_matrix/odqa_html_table_row_gar-rrf.template new file mode 100644 index 0000000000000000000000000000000000000000..b39a03cba524225af7067068ccd2323c2693ff23 --- /dev/null +++ b/scripts/repro_matrix/odqa_html_table_row_gar-rrf.template @@ -0,0 +1,100 @@ + + + +$model +$TQA_Top20 +$TQA_Top100 +$NQ_Top20 +$NQ_Top100 + + + + + +
+ + + + + + +
+
+Command to generate runs: + +
+
$cmd1
+
+ +
+
$cmd2
+
+ +
+
$cmd3
+
+ +Fusing the results using RRF +
+
$fusion_cmd1
+
+ +Converting from trec into json +
+
$convert_cmd1
+
+ + +Evaluation commands: + +
+
$eval_cmd1
+
+ +
+
+Command to generate runs: + +
+
$cmd4
+
+ +
+
$cmd5
+
+ +
+
$cmd6
+
+ +Fusing the results using RRF +
+
$fusion_cmd2
+
+ +Converting from trec into json +
+
$convert_cmd2
+
+ + +Evaluation commands: + +
+
$eval_cmd2
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/scripts/repro_matrix/odqa_html_table_row_rrf.template b/scripts/repro_matrix/odqa_html_table_row_rrf.template new file mode 100644 index 0000000000000000000000000000000000000000..0a08717a36219c336fc060cccaec554cd0343549 --- /dev/null +++ b/scripts/repro_matrix/odqa_html_table_row_rrf.template @@ -0,0 +1,74 @@ + + + +$model +$TQA_Top20 +$TQA_Top100 +$NQ_Top20 +$NQ_Top100 + + + + + +
+ + + + + + +
+
+Runs can be generated using the commands above. + +Fusing the results using RRF +
+
$fusion_cmd1
+
+ +Converting from trec into json +
+
$convert_cmd1
+
+ +Evaluation commands: + +
+
$eval_cmd1
+
+ +
+
+Runs can be generated using the commands above. + +Fusing the results using RRF +
+
$fusion_cmd2
+
+ +Converting from trec into json +
+
$convert_cmd2
+
+ +Evaluation commands: + +
+
$eval_cmd2
+
+ +
+
+ + +
+ \ No newline at end of file diff --git a/scripts/repro_matrix/run_all_beir.py b/scripts/repro_matrix/run_all_beir.py new file mode 100644 index 0000000000000000000000000000000000000000..7f4dab89facab2c89d0534a3f0022dcc44b30f99 --- /dev/null +++ b/scripts/repro_matrix/run_all_beir.py @@ -0,0 +1,119 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import math +import os +import time +from collections import defaultdict +from string import Template + +import yaml + +from scripts.repro_matrix.defs_beir import beir_keys, trec_eval_metric_definitions +from scripts.repro_matrix.utils import run_eval_and_return_metric, ok_str, fail_str + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Generate regression matrix for BEIR.') + parser.add_argument('--skip-eval', action='store_true', default=False, help='Skip running trec_eval.') + args = parser.parse_args() + + start = time.time() + + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + + with open('pyserini/resources/beir.yaml') as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + cmd_template = condition['command'] + + print(f'condition {name}:') + + for datasets in condition['datasets']: + dataset = datasets['dataset'] + + print(f' - dataset: {dataset}') + + runfile = f'runs/run.beir.{name}.{dataset}.txt' + cmd = Template(cmd_template).substitute(dataset=dataset, output=runfile) + + if not os.path.exists(runfile): + print(f' Running: {cmd}') + os.system(cmd) + + for expected in datasets['scores']: + for metric in expected: + if not args.skip_eval: + score = float(run_eval_and_return_metric(metric, f'beir-v1.0.0-{dataset}-test', + trec_eval_metric_definitions[metric], runfile)) + result = ok_str if math.isclose(score, float(expected[metric])) \ + else fail_str + f' expected {expected[metric]:.4f}' + print(f' {metric:7}: {score:.4f} {result}') + + table[dataset][name][metric] = score + else: + table[dataset][name][metric] = expected[metric] + + print('') + + models = ['bm25-flat', 'bm25-multifield', 'splade-distil-cocodenser-medium', 'contriever', 'contriever-msmarco'] + metrics = ['nDCG@10', 'R@100', 'R@1000'] + + top_level_sums = defaultdict(lambda: defaultdict(float)) + cqadupstack_sums = defaultdict(lambda: defaultdict(float)) + final_scores = defaultdict(lambda: defaultdict(float)) + + # Compute the running sums to compute the final mean scores + for key in beir_keys: + for model in models: + for metric in metrics: + if key.startswith('cqa'): + # The running sum for cqa needs to be kept separately. + cqadupstack_sums[model][metric] += table[key][model][metric] + else: + top_level_sums[model][metric] += table[key][model][metric] + + # Compute the final mean + for model in models: + for metric in metrics: + # Compute mean over cqa sub-collections first + cqa_score = cqadupstack_sums[model][metric] / 12 + # Roll cqa scores into final overall mean + final_score = (top_level_sums[model][metric] + cqa_score) / 18 + final_scores[model][metric] = final_score + + print(' ' * 30 + 'BM25-flat' + ' ' * 10 + 'BM25-mf' + ' ' * 13 + 'SPLADE' + ' ' * 11 + 'Contriever' + ' ' * 5 + 'Contriever-msmarco') + print(' ' * 26 + 'nDCG@10 R@100 ' * 5) + print(' ' * 27 + '-' * 14 + ' ' + '-' * 14 + ' ' + '-' * 14 + ' ' + '-' * 14 + ' ' + '-' * 14) + for dataset in beir_keys: + print(f'{dataset:25}' + + f'{table[dataset]["bm25-flat"]["nDCG@10"]:8.4f}{table[dataset]["bm25-flat"]["R@100"]:8.4f} ' + + f'{table[dataset]["bm25-multifield"]["nDCG@10"]:8.4f}{table[dataset]["bm25-multifield"]["R@100"]:8.4f} ' + + f'{table[dataset]["splade-distil-cocodenser-medium"]["nDCG@10"]:8.4f}{table[dataset]["splade-distil-cocodenser-medium"]["R@100"]:8.4f} ' + + f'{table[dataset]["contriever"]["nDCG@10"]:8.4f}{table[dataset]["contriever"]["R@100"]:8.4f} ' + + f'{table[dataset]["contriever-msmarco"]["nDCG@10"]:8.4f}{table[dataset]["contriever-msmarco"]["R@100"]:8.4f}') + print(' ' * 27 + '-' * 14 + ' ' + '-' * 14 + ' ' + '-' * 14 + ' ' + '-' * 14 + ' ' + '-' * 14) + print('avg' + ' ' * 22 + f'{final_scores["bm25-flat"]["nDCG@10"]:8.4f}{final_scores["bm25-flat"]["R@100"]:8.4f} ' + + f'{final_scores["bm25-multifield"]["nDCG@10"]:8.4f}{final_scores["bm25-multifield"]["R@100"]:8.4f} ' + + f'{final_scores["splade-distil-cocodenser-medium"]["nDCG@10"]:8.4f}{final_scores["splade-distil-cocodenser-medium"]["R@100"]:8.4f} ' + + f'{final_scores["contriever"]["nDCG@10"]:8.4f}{final_scores["contriever"]["R@100"]:8.4f} ' + + f'{final_scores["contriever-msmarco"]["nDCG@10"]:8.4f}{final_scores["contriever-msmarco"]["R@100"]:8.4f}') + + end = time.time() + + print('\n') + print(f'Total elapsed time: {end - start:.0f}s') diff --git a/scripts/repro_matrix/run_all_miracl.py b/scripts/repro_matrix/run_all_miracl.py new file mode 100644 index 0000000000000000000000000000000000000000..01710acfad8fb48c94bcb52c0f92c7bc312bfaa9 --- /dev/null +++ b/scripts/repro_matrix/run_all_miracl.py @@ -0,0 +1,155 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import math +import os +import subprocess +import time +from collections import defaultdict +from string import Template + +import yaml + +from scripts.repro_matrix.defs_miracl import models, languages, trec_eval_metric_definitions +from scripts.repro_matrix.utils import run_eval_and_return_metric, ok_str, okish_str, fail_str + + +def print_results(metric, split): + print(f'Metric = {metric}, Split = {split}') + print(' ' * 35, end='') + for lang in languages: + print(f'{lang[0]:3} ', end='') + print('') + for model in models: + print(f'{model:33}', end='') + for lang in languages: + key = f'{model}.{lang[0]}' + print(f'{table[key][split][metric]:7.3f}', end='') + print('') + print('') + + +def extract_topic_fn_from_cmd(cmd): + cmd = cmd.split() + topic_idx = cmd.index('--topics') + return cmd[topic_idx + 1] + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Generate regression matrix for MIRACL.') + parser.add_argument('--skip-eval', action='store_true', default=False, help='Skip running trec_eval.') + args = parser.parse_args() + + start = time.time() + + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + + with open('pyserini/resources/miracl.yaml') as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + eval_key = condition['eval_key'] + cmd_template = condition['command'] + cmd_lst = cmd_template.split() + + print(f'condition {name}:') + lang = name.split('.')[-1] + is_hybrid_run = 'hybrid' in name + + for splits in condition['splits']: + split = splits['split'] + if is_hybrid_run: + hits = int(cmd_lst[cmd_lst.index('--k') + 1]) + else: + hits = int(cmd_lst[cmd_lst.index('--hits') + 1]) + + print(f' - split: {split}') + + runfile = f'runs/run.miracl.{name}.{split}.top{hits}.txt' + if is_hybrid_run: + bm25_output = f'runs/run.miracl.bm25.{lang}.{split}.top{hits}.txt' + mdpr_output = f'runs/run.miracl.mdpr-tied-pft-msmarco.{lang}.{split}.top{hits}.txt' + if not os.path.exists(bm25_output): + print(f'Missing BM25 file: {bm25_output}') + continue + if not os.path.exists(mdpr_output): + print(f'Missing mDPR file: {mdpr_output}') + continue + cmd = Template(cmd_template).substitute(split=split, output=runfile, bm25_output=bm25_output, mdpr_output=mdpr_output) + else: + cmd = Template(cmd_template).substitute(split=split, output=runfile) + + # In the yaml file, the topics are written as something like '--topics miracl-v1.0-ar-${split}' + # This works for the dev split because the topics are directly included in Anserini/Pyserini. + # For this training split, we have to map the symbol into a file in tools/topics-and-qrels/ + # Here, we assume that the developer has cloned the miracl repo and placed the topics there. + if split == 'train': + cmd = cmd.replace(f'--topics miracl-v1.0-{lang}-{split}', + f'--topics tools/topics-and-qrels/topics.miracl-v1.0-{lang}-{split}.tsv') + + if not os.path.exists(runfile): + print(f' Running: {cmd}') + rtn = subprocess.run(cmd.split(), capture_output=True) + stderr = rtn.stderr.decode() + if '--topics' in cmd: + topic_fn = extract_topic_fn_from_cmd(cmd) + if f'ValueError: Topic {topic_fn} Not Found' in stderr: + print(f'Skipping {topic_fn}: file not found.') + continue + + for expected in splits['scores']: + for metric in expected: + if not args.skip_eval: + # We have the translate the training qrels into a file located in tools/topics-and-qrels/ + # because they are not included with Anserini/Pyserini by default. + # Here, we assume that the developer has cloned the miracl repo and placed the qrels there. + if split == 'train': + qrels = f'tools/topics-and-qrels/qrels.{eval_key}-train.tsv' + else: + qrels = f'{eval_key}-{split}' + score = float(run_eval_and_return_metric(metric, qrels, + trec_eval_metric_definitions[metric], runfile)) + if math.isclose(score, float(expected[metric])): + result_str = ok_str + # Flaky tests + elif (name == 'mdpr-tied-pft-msmarco.hi' and split == 'train' + and math.isclose(score, float(expected[metric]), abs_tol=2e-4)) or \ + (name == 'mdpr-tied-pft-msmarco-ft-all.ru' + and split == 'dev' and metric == 'nDCG@10' + and math.isclose(score, float(expected[metric]), abs_tol=2e-4)) or \ + (name == 'bm25-mdpr-tied-pft-msmarco-hybrid.te' + and split == 'train' and metric == 'nDCG@10' + and math.isclose(score, float(expected[metric]), abs_tol=2e-4)) or \ + (name == 'bm25-mdpr-tied-pft-msmarco-hybrid.zh' + and split == 'dev' and metric == 'nDCG@10' + and math.isclose(score, float(expected[metric]), abs_tol=2e-4)): + result_str = okish_str + else: + result_str = fail_str + f' expected {expected[metric]:.4f}' + print(f' {metric:7}: {score:.4f} {result_str}') + table[name][split][metric] = score + else: + table[name][split][metric] = expected[metric] + + print('') + + for metric in ['nDCG@10', 'R@100']: + for split in ['dev', 'train']: + print_results(metric, split) + + end = time.time() + print(f'Total elapsed time: {end - start:.0f}s') diff --git a/scripts/repro_matrix/run_all_mrtydi.py b/scripts/repro_matrix/run_all_mrtydi.py new file mode 100644 index 0000000000000000000000000000000000000000..25eb3e9f6af971be145392c65aa15262b3ebe8d8 --- /dev/null +++ b/scripts/repro_matrix/run_all_mrtydi.py @@ -0,0 +1,104 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import math +import os +import time +from collections import defaultdict +from string import Template + +import yaml + +from scripts.repro_matrix.defs_mrtydi import models, languages, trec_eval_metric_definitions +from scripts.repro_matrix.utils import run_eval_and_return_metric, ok_str, okish_str, fail_str + + +def print_results(metric, split): + print(f'Metric = {metric}, Split = {split}') + print(' ' * 32, end='') + for lang in languages: + print(f'{lang[0]:3} ', end='') + print('') + for model in models: + print(f'{model:30}', end='') + for lang in languages: + key = f'{model}.{lang[0]}' + print(f'{table[key][split][metric]:7.3f}', end='') + print('') + print('') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Generate regression matrix for Mr.TyDi.') + parser.add_argument('--skip-eval', action='store_true', default=False, help='Skip running trec_eval.') + args = parser.parse_args() + + start = time.time() + + table = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0.0))) + + with open('pyserini/resources/mrtydi.yaml') as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['name'] + eval_key = condition['eval_key'] + cmd_template = condition['command'] + + print(f'condition {name}:') + + for splits in condition['splits']: + split = splits['split'] + + print(f' - split: {split}') + + runfile = f'runs/run.mrtydi.{name}.{split}.txt' + cmd = Template(cmd_template).substitute(split=split, output=runfile) + + if not os.path.exists(runfile): + print(f' Running: {cmd}') + os.system(cmd) + + for expected in splits['scores']: + for metric in expected: + if not args.skip_eval: + score = float(run_eval_and_return_metric(metric, f'{eval_key}-{split}', + trec_eval_metric_definitions[metric], runfile)) + if math.isclose(score, float(expected[metric])): + result_str = ok_str + # Flaky test: small difference on orca + elif name == 'mdpr-tied-pft-nq.te' and split == 'dev' \ + and math.isclose(score, float(expected[metric]), abs_tol=2e-4): + result_str = okish_str + # Flaky test: small difference on orca + elif name == 'mdpr-tied-pft-msmarco-ft-all.ko' and split == 'train' \ + and math.isclose(score, float(expected[metric]), abs_tol=4e-4): + result_str = okish_str + else: + result_str = fail_str + f' expected {expected[metric]:.4f}' + print(f' {metric:7}: {score:.4f} {result_str}') + table[name][split][metric] = score + else: + table[name][split][metric] = expected[metric] + + print('') + + for metric in ['MRR@100', 'R@100']: + for split in ['test', 'dev', 'train']: + print_results(metric, split) + + end = time.time() + print(f'Total elapsed time: {end - start:.0f}s') diff --git a/scripts/repro_matrix/run_all_odqa.py b/scripts/repro_matrix/run_all_odqa.py new file mode 100644 index 0000000000000000000000000000000000000000..76fc78d84f04ed4214263ed6b577c5ffa128bf12 --- /dev/null +++ b/scripts/repro_matrix/run_all_odqa.py @@ -0,0 +1,152 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import math +import os +import time +from collections import defaultdict +from string import Template + +import yaml + +from defs_odqa import models, evaluate_dpr_retrieval_metric_definitions +from utils import run_dpr_retrieval_eval_and_return_metric, convert_trec_run_to_dpr_retrieval_json, run_fusion, ok_str, fail_str + +GARRRF_LS = ['answers','titles','sentences'] +HITS_1K = set(['GarT5-RRF', 'DPR-DKRR', 'DPR-Hybrid']) + +def print_results(metric, topics): + print(f'Metric = {metric}, Topics = {topics}') + for model in models['models']: + print(' ' * 32, end='') + print(f'{model:30}', end='') + key = f'{model}' + print(f'{table[key][metric]:7.2f}', end='\n') + print('') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Generate regression matrix for GarDKRR') + parser.add_argument('--skip-eval', action='store_true', + default=False, help='Skip running trec_eval.') + parser.add_argument('--topics', choices=['tqa', 'nq'], + help='Topics to be run [tqa, nq]', required=True) + parser.add_argument('--full-topk', action='store_true', + default=False, help='Run topk 5-1000, default is topk 5-100') + args = parser.parse_args() + hits = 1000 if args.full_topk else 100 + yaml_path = 'pyserini/resources/triviaqa.yaml' if args.topics == "tqa" else 'pyserini/resources/naturalquestion.yaml' + topics = 'dpr-trivia-test' if args.topics == 'tqa' else 'nq-test' + start = time.time() + table = defaultdict(lambda: defaultdict(lambda: 0.0)) + + with open(yaml_path) as f: + yaml_data = yaml.safe_load(f) + for condition in yaml_data['conditions']: + name = condition['model_name'] + cmd_template = condition['command'] + + if not args.full_topk: + # if using topk100 + if name in HITS_1K: + # if running topk1000 is a must to ensure scores match with the ones in the table + hits = 1000 + else: + hits = 100 + + print(f'model {name}:') + if topics == 'nq-test' and name == 'BM25-k1_0.9_b_0.4_dpr-topics': + topics = 'dpr-nq-test' + elif args.topics == 'nq': + topics = 'nq-test' + print(f' - Topics: {topics}') + + # running retrieval + if name == "GarT5-RRF": + runfile = [f'runs/run.odqa.{name}.{topics}.{i}.hits-{hits}.txt' for i in GARRRF_LS] + else: + runfile = [f'runs/run.odqa.{name}.{topics}.hits-{hits}.txt'] + + if name != "GarT5RRF-DKRR-RRF": + cmd = [Template(cmd_template[i]).substitute(output=runfile[i]) for i in range(len(runfile))] + if hits == 100: + cmd = [i + ' --hits 100' for i in cmd] + for i in range(len(runfile)): + if not os.path.exists(runfile[i]): + print(f' Running: {cmd[i]}') + os.system(cmd[i]) + + # fusion + if 'RRF' in name: + runs = [] + output = '' + if name == 'GarT5-RRF': + runs = runfile + output = f'runs/run.odqa.{name}.{topics}.hits-{hits}.fusion.txt' + elif name == 'GarT5RRF-DKRR-RRF': + runs = [f'runs/run.odqa.DPR-DKRR.{topics}.hits-1000.txt', f'runs/run.odqa.GarT5-RRF.{topics}.hits-1000.fusion.txt'] + output = runfile[0].replace('.txt','.fusion.txt') + else: + raise NameError('Unexpected model name') + if not os.path.exists(output): + if not args.full_topk and name != 'GarT5-RRF': + # if using topk100, we change it back for methods that require topk1000 to generate runs + hits = 100 + status = run_fusion(runs, output, hits) + if status != 0: + raise RuntimeError('fusion failed') + runfile = [output] + + + # trec conversion + evaluation + if not args.skip_eval: + jsonfile = runfile[0].replace('.txt', '.json') + runfile = jsonfile.replace('.json','.txt') + if not os.path.exists(jsonfile): + status = convert_trec_run_to_dpr_retrieval_json( + topics, 'wikipedia-dpr', runfile, jsonfile) + if status != 0: + raise RuntimeError("dpr retrieval convertion failed") + topk_defs = evaluate_dpr_retrieval_metric_definitions['Top5-100'] + if args.full_topk: + topk_defs = evaluate_dpr_retrieval_metric_definitions['Top5-1000'] + score = run_dpr_retrieval_eval_and_return_metric(topk_defs, jsonfile) + + # comparing ground truth scores with the generated ones + for expected in condition['scores']: + for metric, expected_score in expected.items(): + if metric not in score.keys(): continue + if not args.skip_eval: + if math.isclose(score[metric], float(expected_score),abs_tol=2e-2): + result_str = ok_str + else: + result_str = fail_str + \ + f' expected {expected[metric]:.4f}' + print(f' {metric:7}: {score[metric]:.2f} {result_str}') + table[name][metric] = score[metric] + else: + table[name][metric] = expected_score + + print('') + metric_ls = ['Top5', 'Top20', 'Top100', 'Top500', 'Top1000'] + metric_ls = metric_ls[:3] if not args.full_topk else metric_ls + for metric in metric_ls: + print_results(metric, topics) + + end = time.time() + print(f'Total elapsed time: {end - start:.0f}s') diff --git a/scripts/repro_matrix/utils.py b/scripts/repro_matrix/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..d99cd11eeafb4cb24e82eb48173dfceaf8bfe33a --- /dev/null +++ b/scripts/repro_matrix/utils.py @@ -0,0 +1,118 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import subprocess +import os + +fail_str = '\033[91m[FAIL]\033[0m' +ok_str = '[OK]' +okish_str = '\033[94m[OKish]\033[0m' + + +def find_msmarco_table_topic_set_key_v1(topic_key): + # E.g., we want to map variants like 'dl19-passage-unicoil' and 'dl19-passage' both into 'dl19' + key = '' + if topic_key.startswith('dl19'): + key = 'dl19' + elif topic_key.startswith('dl20'): + key = 'dl20' + elif topic_key.startswith('msmarco'): + key = 'dev' + + return key + + +def find_msmarco_table_topic_set_key_v2(topic_key): + key = '' + if topic_key.endswith('dev') or topic_key.endswith('dev-unicoil') or topic_key.endswith('dev-unicoil-noexp'): + key = 'dev' + elif topic_key.endswith('dev2') or topic_key.endswith('dev2-unicoil') or topic_key.endswith('dev2-unicoil-noexp'): + key = 'dev2' + elif topic_key.startswith('dl21'): + key = 'dl21' + + return key + + +def run_command(cmd): + process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) + stdout, stderr = process.communicate() + stdout = stdout.decode('utf-8') + stderr = stderr.decode('utf-8') + + return stdout, stderr + + +def run_eval_and_return_metric(metric, eval_key, defs, runfile): + eval_cmd = f'python -m pyserini.eval.trec_eval {defs} {eval_key} {runfile}' + eval_stdout, eval_stderr = run_command(eval_cmd) + + for line in eval_stdout.split('\n'): + parts = line.split('\t') + if len(parts) == 3 and parts[1] == 'all': + return round(float(parts[2]), 4) + + return 0.0 + +def run_dpr_retrieval_eval_and_return_metric(defs, json_file): + """Generate dpr retrieval evaluation scores + + Args: + defs: topk definitions (e.g., '--topk 5 20') + json_file: dpr retrieval json file + + Returns: + topk: a dictionary of topk scores (e.g., {"Top5": }) + """ + eval_cmd = f'python -m pyserini.eval.evaluate_dpr_retrieval --retrieval {json_file} {defs} ' + eval_stdout, eval_stderr = run_command(eval_cmd) + topk = {} + for line in eval_stdout.split('\n'): + parts = line.split('\t') + if len(parts) == 2 and 'accuracy' in parts[1]: + topk.update({parts[0]:round(float(parts[1][10:])*100, 4)}) + return topk + + +def convert_trec_run_to_dpr_retrieval_json(topics,index,runfile,output): + """Convert trec runfile to dpr retrieval json file + + Args: + topics: topics field + index: index field + runfile: input runfile + output: output jsonfile + + Returns: + exit status: exit status + """ + cmd = f"python -m pyserini.eval.convert_trec_run_to_dpr_retrieval_run --topics {topics} --index {index} --input {runfile} --output {output}" + return os.system(cmd) + +def run_fusion(run_ls, output, k): + """run fusion command and return status code + + Args: + run_ls: a list of runfile paths + output: output path + k: topk value + + Returns: + status code: status code + """ + run_files = ' '.join(run_ls) + cmd = f'python -m pyserini.fusion --runs {run_files} --output {output} --k {k}' + return os.system(cmd) diff --git a/scripts/sbert/encode_corpus_msmarco_passage.py b/scripts/sbert/encode_corpus_msmarco_passage.py new file mode 100644 index 0000000000000000000000000000000000000000..1e6706b4690ce6a3f97cd4991e9ca244c0af615a --- /dev/null +++ b/scripts/sbert/encode_corpus_msmarco_passage.py @@ -0,0 +1,62 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +import numpy as np +import faiss +from tqdm import tqdm + +from sentence_transformers import SentenceTransformer + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='directory that contains corpus files to be encoded, in jsonl format.', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--batch', type=int, help='batch size', default=64) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + model = SentenceTransformer(args.encoder, device=args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + texts = [] + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + for file in sorted(os.listdir(args.corpus)): + file = os.path.join(args.corpus, file) + if file.endswith('json') or file.endswith('jsonl'): + print(f'Loading {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + text = info['contents'].strip().replace('\n', ' ') + id_file.write(f'{docid}\n') + texts.append(text.lower()) + for idx in tqdm(range(0, len(texts), args.batch)): + text_batch = texts[idx: idx+args.batch] + embeddings = model.encode(text_batch, batch_size=len(text_batch), device=args.device) + faiss.normalize_L2(embeddings) + index.add(np.array(embeddings)) + faiss.write_index(index, os.path.join(args.index, 'index')) diff --git a/scripts/tct_colbert/encode_corpus_msmarco_doc.py b/scripts/tct_colbert/encode_corpus_msmarco_doc.py new file mode 100644 index 0000000000000000000000000000000000000000..9c9b61ca920a670b483b9f7492ee3ff6a7478f75 --- /dev/null +++ b/scripts/tct_colbert/encode_corpus_msmarco_doc.py @@ -0,0 +1,109 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import json +import os +import sys +import numpy as np +import faiss +import torch +from tqdm import tqdm + +from transformers import BertTokenizer, BertModel + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +def mean_pooling(last_hidden_state, attention_mask): + token_embeddings = last_hidden_state + input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() + sum_embeddings = torch.sum(token_embeddings * input_mask_expanded, 1) + sum_mask = torch.clamp(input_mask_expanded.sum(1), min=1e-9) + return sum_embeddings / sum_mask + + +class TctColBertDocumentEncoder(torch.nn.Module): + def __init__(self, model_name, tokenizer_name=None, device='cuda:0'): + super().__init__() + self.device = device + self.model = BertModel.from_pretrained(model_name) + self.model.to(self.device) + self.tokenizer = BertTokenizer.from_pretrained(tokenizer_name or model_name) + + def encode(self, texts, titles=None): + texts = ['[CLS] [D] ' + text for text in texts] + max_length = 512 # hardcode for now + inputs = self.tokenizer( + texts, + max_length=max_length, + padding="longest", + truncation=True, + add_special_tokens=False, + return_tensors='pt' + ) + inputs.to(self.device) + outputs = self.model(**inputs) + embeddings = mean_pooling(outputs["last_hidden_state"][:, 4:, :], inputs['attention_mask'][:, 4:]) + return embeddings.detach().cpu().numpy() + + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--encoder', type=str, help='encoder name or path', required=True) + parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) + parser.add_argument('--corpus', type=str, + help='collection file to be encoded (format: jsonl)', required=True) + parser.add_argument('--index', type=str, help='directory to store brute force index of corpus', required=True) + parser.add_argument('--batch', type=int, help='batch size', default=8) + parser.add_argument('--device', type=str, help='device cpu or cuda [cuda:0, cuda:1...]', default='cuda:0') + args = parser.parse_args() + + # tokenizer = AutoTokenizer.from_pretrained(args.encoder) + # model = AutoModel.from_pretrained(args.encoder) + model = TctColBertDocumentEncoder(model_name=args.encoder, device=args.device) + + index = faiss.IndexFlatIP(args.dimension) + + if not os.path.exists(args.index): + os.mkdir(args.index) + + texts = [] + with open(os.path.join(args.index, 'docid'), 'w') as id_file: + file = os.path.join(args.corpus) + print(f'Loading {file}') + with open(file, 'r') as corpus: + for idx, line in enumerate(tqdm(corpus.readlines())): + info = json.loads(line) + docid = info['id'] + text = info['contents'] + id_file.write(f'{docid}\n') + # docs can have many \n ... + fields = text.split('\n') + title, text = fields[1], fields[2:] + if len(text) > 1: + text = ' '.join(text) + text = f"{title} {text}" + texts.append(text.lower()) + + for idx in tqdm(range(0, len(texts), args.batch)): + text_batch = texts[idx: idx+args.batch] + embeddings = model.encode(text_batch) + index.add(np.array(embeddings)) + faiss.write_index(index, os.path.join(args.index, 'index')) diff --git a/scripts/tct_colbert/merge_indexes.py b/scripts/tct_colbert/merge_indexes.py new file mode 100644 index 0000000000000000000000000000000000000000..05919bcbf8e424c387da4b69907c3299a0869509 --- /dev/null +++ b/scripts/tct_colbert/merge_indexes.py @@ -0,0 +1,70 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse + +import faiss +import os + + +parser = argparse.ArgumentParser() +parser.add_argument('--dimension', type=int, help='dimension of passage embeddings', required=False, default=768) +parser.add_argument('--prefix', type=str, help='directory to store brute force index of corpus', required=True) +parser.add_argument('--segment-num', type=int, help='number of passage segments, use -1 for MaxP', default=1) +parser.add_argument('--shard-num', type=int, help='number of shards', default=1) +args = parser.parse_args() + +new_index = faiss.IndexFlatIP(args.dimension) +docid_list = [] +for i in range(args.shard_num): + index = os.path.join(args.prefix + f"{i:02d}", 'index') + docid = os.path.join(args.prefix + f"{i:02d}", 'docid') + print(f"reading ... {index}") + line_idx = [] + with open(docid, 'r') as f: + for idx, line in enumerate(f): + doc_id, psg_id = line.strip().split("#") + if args.segment_num == -1: + line_idx.append(idx) + docid_list.append(doc_id + "#" + psg_id) + + elif int(psg_id) < args.segment_num: + line_idx.append(idx) + docid_list.append(doc_id + "#" + psg_id) + + index = faiss.read_index(index) + vectors = index.reconstruct_n(0, index.ntotal) + new_index.add(vectors[line_idx]) # filter segments + +if args.segment_num == -1: + postfix = 'maxp' +elif args.segment_num == 1: + postfix = 'firstp' +else: + postfix = f'seg{args.segment_num}' + +if not os.path.exists(args.prefix + f'full-{postfix}'): + os.mkdir(args.prefix + f'full-{postfix}') + + +print(f"number of docs: {len(docid_list)}") +print(f"number of vecs: {new_index.ntotal}") +assert len(docid_list) == new_index.ntotal +faiss.write_index(new_index, os.path.join(args.prefix + f'full-{postfix}', 'index')) + +with open(os.path.join(args.prefix + f'full-{postfix}', 'docid'), 'w') as wfd: + for docid in docid_list: + wfd.write(docid + '\n') diff --git a/scripts/tokenize_corpus.py b/scripts/tokenize_corpus.py new file mode 100644 index 0000000000000000000000000000000000000000..5a987cb8923b37fb4794caf712e9e4acb5a94f12 --- /dev/null +++ b/scripts/tokenize_corpus.py @@ -0,0 +1,97 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# +import argparse +import multiprocessing +import json +import time +from joblib import Parallel, delayed +from transformers import AutoTokenizer +from ltr_msmarco.convert_common import get_retokenized + +'''Replace original contents fields with bert tokenization''' + + +parser = argparse.ArgumentParser(description='Convert MSMARCO-adhoc documents.') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) +parser.add_argument('--workers', metavar='# of processes', help='# of workers to spawn', + type=int, default=multiprocessing.cpu_count() - 2) + + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +def batch_file(iterable, n=10000): + batch = [] + for line in iterable: + batch.append(line) + if len(batch) == n: + yield batch + batch = [] + if len(batch) > 0: + yield batch + batch = [] + return + + +def batch_process(batch): + bert_tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") + + def process(line): + if not line: + return None + json_line = json.loads(line) + pid = json_line['id'] + body = json_line['contents'] + + doc = {"id": pid, + "contents": get_retokenized(bert_tokenizer, body.lower())} + return doc + + res = [] + start = time.time() + for line in batch: + res.append(process(line)) + if len(res) % 1000 == 0: + end = time.time() + print(f"finish {len(res)} using {end-start}") + start = end + return res + + +if __name__ == '__main__': + workers = args.workers + print(f"Spawning {workers} processes") + pool = Parallel(n_jobs=workers, verbose=10) + line_num = 0 + + with open(args.input) as inFile: + with open(args.output, 'w') as outFile: + for batch_json in pool([delayed(batch_process)(batch) for batch in batch_file(inFile)]): + for doc_json in batch_json: + line_num = line_num + 1 + if doc_json is not None: + outFile.write(json.dumps(doc_json) + '\n') + else: + print(f"Ignoring misformatted line {line_num}") + + if line_num % 100 == 0: + print(f"Processed {line_num} passages") + + print(f"Processed {line_num} passages") diff --git a/scripts/tokenize_queries.py b/scripts/tokenize_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..664e6bdff6c30c3b6c3d7c89c3862a27b2d85664 --- /dev/null +++ b/scripts/tokenize_queries.py @@ -0,0 +1,62 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +'''Convert MSMARCO queries''' + +import argparse +from transformers import AutoTokenizer +from tqdm import tqdm +from ltr_msmarco.convert_common import get_retokenized + + +parser = argparse.ArgumentParser(description='Convert queries in tsv format with tokenization') +parser.add_argument('--input', metavar='input file', help='input file', + type=str, required=True) +parser.add_argument('--output', metavar='output file', help='output file', + type=str, required=True) + +args = parser.parse_args() +print(args) +arg_vars = vars(args) + +bert_tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") + +with open(args.input) as inFile: + with open(args.output, 'w') as outFile: + # Input file is a TSV file + line_num = 0 + for line in tqdm(inFile): + line_num += 1 + line = line.strip() + if not line: + continue + fields = line.split('\t') + if len(fields) != 2: + print(f"Misformated line {line_num} ignoring:") + print(line.replace('\t', '')) + continue + + did, query = fields + + doc = {"id": did, + "contents": get_retokenized(bert_tokenizer, query.lower())} + docStr = f"{doc['id']}\t{doc['contents']}\n" + outFile.write(docStr) + + if line_num % 10000 == 0: + print(f"Processed {line_num} queries") + + print(f"Processed {line_num} queries") diff --git a/scripts/trec-covid-ranker.py b/scripts/trec-covid-ranker.py new file mode 100644 index 0000000000000000000000000000000000000000..42a12aa4c813a0b65a526f61186865a060ed14c8 --- /dev/null +++ b/scripts/trec-covid-ranker.py @@ -0,0 +1,314 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import argparse +import os +import json +import sys +sys.path.append('..') +sys.path.append('../pyserini') +import subprocess + +from enum import Enum +from pyserini.vectorizer import TfidfVectorizer +from pyserini.vectorizer import BM25Vectorizer +from sklearn.naive_bayes import MultinomialNB +from sklearn.linear_model import LogisticRegression +from sklearn.svm import SVC +from typing import List +from sklearn import preprocessing +from typing import List, Set + +def normalize(scores): + low = min(scores) + high = max(scores) + width = high - low + + return [(s-low)/width for s in scores] + + +def sort_dual_list(pred, docs): + zipped_lists = zip(pred, docs) + sorted_pairs = sorted(zipped_lists) + + tuples = zip(*sorted_pairs) + pred, docs = [list(tuple) for tuple in tuples] + + pred.reverse() + docs.reverse() + return pred, docs + + +def sort_str_topics_list(topics: List[str]) -> List[str]: + res = sorted([int(t) for t in topics]) + return [str(t) for t in res] + + +def get_topics_from_qrun(path: str) -> Set[str]: + res = set() + with open(path, 'r') as f: + for line in f: + res.add(line.split()[0]) + return sort_str_topics_list(res) + + +def get_lines_by_topic(path, topic, tag): + res = [] + with open(path, 'r') as f: + for line in f: + tokens = line.split() + if tokens[0] != topic: + continue + tokens[-1] = tag + new_line = ' '.join(tokens) + res.append(new_line) + + return res + + +def read_qrels(path: str): + qrels = [] + + with open(path, 'r') as f: + for line in f: + line = line.strip() + tokens = line.split() + topic = tokens[0] + doc_id = tokens[-2] + relevance = int(tokens[-1]) + qrels.append({ + 'topic': topic, + 'doc_id': doc_id, + 'relevance': relevance + }) + + return qrels + + +def get_doc_to_id_from_qrun_by_topic(path: str, topic: str): + res = {} + with open(path, 'r') as f: + for line in f: + tokens = line.strip().split() + t = tokens[0] + if topic != t: + continue + doc_id = tokens[2] + score = float(tokens[-2]) + res[doc_id] = score + + return res + + +def get_docs_from_qrun_by_topic(path: str, topic: str): + x, y = [], [] + with open(path, 'r') as f: + for line in f: + tokens = line.strip().split() + t = tokens[0] + if topic != t: + continue + doc_id = tokens[2] + score = float(tokens[-2]) + x.append(doc_id) + y.append(score) + + return x, y + + +def get_X_Y_from_qrels_by_topic(path: str, topic: str, R: List[int]): + # always include topic 0 + R.append(0) + qrels = [qrel for qrel in read_qrels(path) if qrel['topic'] == topic and qrel['relevance'] in R] + x, y = [], [] + for pack in qrels: + x.append(pack['doc_id']) + label = 0 if pack['relevance'] == 0 else 1 + y.append(label) + + return x, y + + +class SpecterVectorizer: + def __init__(self): + path = "data/specter.csv" + self.vectors = {} + + with open(path, 'r') as f: + for line in f: + tokens = line.strip().split(',') + doc_id = tokens[0] + vector = [float(item) for item in tokens[1:]] + self.vectors[doc_id] = vector + + def get_vectors(self, doc_ids: List[str]): + res = [] + + for doc_id in doc_ids: + if doc_id in self.vectors: + res.append(self.vectors[doc_id]) + else: + print(f'{doc_id} not found') + + return preprocessing.normalize(res) + + +class ClassifierType(Enum): + SVM = 'svm' + LR = 'lr' + NB = 'nb' + + +ClassifierStr = { + ClassifierType.SVM: 'svm', + ClassifierType.LR: 'lr', + ClassifierType.NB: 'nb', +} + + +class VectorizerType(Enum): + TFIDF = 'tfidf' + BM25 = 'bm25' + SPECTER = 'specter' + + +VectorizerStr = { + VectorizerType.TFIDF: 'tfidf', + VectorizerType.BM25: 'bm25', + VectorizerType.SPECTER: 'specter', +} + + +def evaluate(qrels_path: str, run_path: str, options: str = ''): + curdir = os.getcwd() + if curdir.endswith('clprf'): + anserini_root = '../../../anserini' + else: + anserini_root = '../anserini' + prefix = f"{anserini_root}/tools/eval/trec_eval.9.0.4/trec_eval -c -M1000 -m all_trec {qrels_path}" + cmd1 = f"{prefix} {run_path} {options} | grep 'ndcg_cut_20 '" + cmd2 = f"{prefix} {run_path} {options} | grep 'map '" + ndcg_score = str(subprocess.check_output(cmd1, shell=True)).split('\\t')[-1] + map_score = str(subprocess.check_output(cmd2, shell=True)).split('\\t')[-1] + return str(map_score),str(ndcg_score) + + +def rank(new_qrels: str, base: str,tmp_base:str, qrels_path: str, lucene_index_path: str, R: List[int], score_path: str, alpha: float, clf_type: ClassifierType, vec_type: VectorizerType, tag: str): + # build output path + base_str = base.split('/')[-1] + R_str = ''.join([str(i) for i in R]) + curdir = os.getcwd() + if curdir.endswith('integrations'): + output_path = f'{tmp_base}/runs/{base_str}.{ClassifierStr[clf_type]}.{VectorizerStr[vec_type]}.R{R_str}.A{alpha}.txt' + else: + output_path = f'integrations/{tmp_base}/runs/{base_str}.{ClassifierStr[clf_type]}.{VectorizerStr[vec_type]}.R{R_str}.A{alpha}.txt' + print(f'Output -> {output_path}') + os.system('mkdir -p runs') + + vectorizer = None + if vec_type == VectorizerType.TFIDF: + vectorizer = TfidfVectorizer(lucene_index_path, min_df=5) + elif vec_type == VectorizerType.SPECTER: + base += '.specter' + qrels_path += '.specter' + vectorizer = SpecterVectorizer() + elif vec_type == VectorizerType.BM25: + vectorizer = BM25Vectorizer(lucene_index_path, min_df=5) + else: + print('invalid vectorizer') + exit() + + f = open(output_path, 'w+') + + skipped_topics = set() + topics = get_topics_from_qrun(base) + for topic in topics: + train_docs, train_labels = get_X_Y_from_qrels_by_topic(qrels_path, topic, R) + if len(train_docs) == 0: + print(f'[topic][{topic}] skipped') + skipped_topics.add(topic) + continue + + print(f'[topic][{topic}] eligible train docs {len(train_docs)}') + + clf = None + if clf_type == ClassifierType.NB: + clf = MultinomialNB() + elif clf_type == ClassifierType.LR: + clf = LogisticRegression() + elif clf_type == ClassifierType.SVM: + clf = SVC(kernel='linear', probability=True) + else: + print('ClassifierType not supported') + exit() + + train_vectors = vectorizer.get_vectors(train_docs) + clf.fit(train_vectors, train_labels) + + test_docs, base_scores = get_docs_from_qrun_by_topic(base, topic) + print(f'[topic][{topic}] eligible test docs {len(test_docs)}') + test_vectors = vectorizer.get_vectors(test_docs) + + rank_scores = clf.predict_proba(test_vectors) + rank_scores = [row[1] for row in rank_scores] + + rank_scores = normalize(rank_scores) + base_scores = normalize(base_scores) + + preds = [a * alpha + b * (1-alpha) for a, b in zip(rank_scores, base_scores)] + preds, docs = sort_dual_list(preds, test_docs) + + for index, (score, doc_id) in enumerate(zip(preds, docs)): + rank = index + 1 + f.write(f'{topic} Q0 {doc_id} {rank} {score} {tag}\n') + + for topic in sort_str_topics_list(list(skipped_topics)): + lines = get_lines_by_topic(base, topic, tag) + print(f'Copying over skipped topic {topic} with {len(lines)} lines') + for line in lines: + f.write(f'{line}\n') + + f.close() + map_score,ndcg_score = evaluate(new_qrels, output_path) + with open(score_path, 'w') as outfile: + json.dump({'map':map_score,'ndcg':ndcg_score}, outfile) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='use tfidf vectorizer on cord-19 dataset with ccrf technique') + parser.add_argument('-tag', type=str, default="interpolation", + metavar="tag_name", help='tag name for resulting Qrun') + parser.add_argument('-new_qrels', type=str, default="data/qrels-rnd1+2+3+4.txt", + metavar="path_to_new_qrels", help='path to new_qrels file') + parser.add_argument('-base', type=str, default="data/covidex.t5.final.txt", + metavar="path_to_base_run", help='path to base run') + parser.add_argument('-tmp_base', type=str, default="tmp101}", + metavar="tmp file folder name", help='"tmp file folder name') + parser.add_argument('-qrels', type=str, default="data/qrels-rnd1+2.txt", + metavar="path_to_qrels", help='path to qrels file') + parser.add_argument('-index', type=str, default="data/lucene-index-cord19-abstract-2020-05-19", + metavar="path_to_lucene_index", help='path to lucene index folder') + parser.add_argument('-output', type=str, default="data/output.json", + metavar="path_to_base_run", help='the path to map and ndcg scores') + parser.add_argument('-alpha', type=float, required=True, help='alpha value for interpolation') + parser.add_argument('-clf', type=ClassifierType, required=True, help='which classifier to use') + parser.add_argument('-vectorizer', type=VectorizerType, required=True, help='which vectorizer to use') + args = parser.parse_args() + + R = [1, 2] + print('Using base run:', args.base) + rank(args.new_qrels, args.base, args.tmp_base, args.qrels, args.index, R, args.output, args.alpha, args.clf, args.vectorizer, args.tag) diff --git a/scripts/trec-ct/convert_topic_xml_to_tsv.py b/scripts/trec-ct/convert_topic_xml_to_tsv.py new file mode 100644 index 0000000000000000000000000000000000000000..4467264ffd68a651266369949c056b20ebf3b5ce --- /dev/null +++ b/scripts/trec-ct/convert_topic_xml_to_tsv.py @@ -0,0 +1,29 @@ +import argparse +import xml.etree.ElementTree as ET +import re +from ftfy import fix_text + +def load_topic_trec(args): + xml = ET.parse(args.topics) + root = xml.getroot() + with open(args.queries, 'w') as fout: + for child in root: + qid = child.attrib['number'] + topic = repr(child.text)[1:-1] + topic = fix_text(topic) + topic = topic.replace('\\n', ' ') + topic = re.sub('\s\s+'," ",topic) + fout.write(f"{qid}\t{topic}\n") + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("--topics", required=True, type=str, help='topic file') + parser.add_argument('--queries', required=True, type=str, help='convert to qid\\tquery tsv format') + + + args = parser.parse_args() + + load_topic_trec(args) + + print('Done!') + diff --git a/scripts/trec-ct/convert_trec21_ct_to_json.py b/scripts/trec-ct/convert_trec21_ct_to_json.py new file mode 100644 index 0000000000000000000000000000000000000000..c080804d1da25438bf3f165ce8223473c24565e3 --- /dev/null +++ b/scripts/trec-ct/convert_trec21_ct_to_json.py @@ -0,0 +1,74 @@ +import os +import glob +import argparse +import xml.etree.ElementTree as ET +import re +import json +from pathlib import Path +from tqdm import tqdm +from ftfy import fix_text + +def convert_collection(args): + print('converting collection....') + xml_list = list(Path(args.input_dir).rglob('*.xml')) + output_path = os.path.join(args.output_dir, 'trec21.json') + output_json_file = open(output_path, 'w', encoding='utf-8', newline='\n') + for i in tqdm(range(len(xml_list))): + parse_result = parse_xml(xml_list[i]) + result_dict = { + 'id': parse_result[0], + 'contents': f'{parse_result[1]} {parse_result[2]} {parse_result[3]} {parse_result[4]} {parse_result[5]}', + 'title': parse_result[1], + 'condition': parse_result[2], + 'summary': parse_result[3], + 'detailed_description': parse_result[4], + 'eligibility': parse_result[5] + } + output_json_file.write(json.dumps(result_dict) + '\n') + output_json_file.close() + + +def parse_xml(file_dir): + xml = ET.parse(file_dir) + doc_id = ''.join(xml.find('.//nct_id').itertext()) + title = xml.find('.//official_title') + if not title: + title = xml.find('.//brief_title') + title = ''.join(title.itertext()) + condition = xml.find('.//condition') + condition = ''.join(condition.itertext()) if condition else '' + summary = xml.find('.//brief_summary') + summary = ''.join(summary.itertext()) if summary else '' + detailed_description = xml.find('.//detailed_description') + detailed_description = ''.join(detailed_description.itertext()) if detailed_description else '' + eligibility = xml.find('.//eligibility/criteria') + eligibility = ''.join(eligibility.itertext()) if eligibility else '' + + doc_id = re.sub('\s\s+'," ", doc_id) + title = re.sub('\s\s+'," ", title) + condition = re.sub('\s\s+'," ", condition) + summary = re.sub('\s\s+'," ", summary) + detailed_description = re.sub('\s\s+'," ", detailed_description) + eligibility = re.sub('\s\s+'," ", eligibility) + doc_id = fix_text(doc_id) + title = fix_text(title) + condition = fix_text(condition) + summary = fix_text(summary) + detailed_description = fix_text(detailed_description) + eligibility = fix_text(eligibility) + return [doc_id, title, condition, summary, detailed_description, eligibility] + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("--input_dir", required=True, help='input directory to trec xml data files') + parser.add_argument('--output_dir', required=True, help='output folder for json files') + + + args = parser.parse_args() + + if not os.path.exists(args.output_dir): + os.makedirs(args.output_dir) + + convert_collection(args) + print('Done!') + diff --git a/scripts/trec-fair/convert_trec_fair_2022_data_to_jsonl.py b/scripts/trec-fair/convert_trec_fair_2022_data_to_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..e9298a7fdc7788c71a2b045943f8bda50293f910 --- /dev/null +++ b/scripts/trec-fair/convert_trec_fair_2022_data_to_jsonl.py @@ -0,0 +1,35 @@ +import json +import argparse +import os +from pathlib import Path +from tqdm import tqdm + +parser = argparse.ArgumentParser() +parser.add_argument('--input', type=str, required=True, help='input file containing the downloaded trec fair 2022 corpus') +parser.add_argument('--output', type=str, required=True, help='output file containing the corpus in jsonl format for indexing') +args = parser.parse_args() + +Path(os.path.dirname(args.output)).mkdir(parents=True, exist_ok=True) + +print("converting collection...") + +with open(args.input, 'r') as f, open(args.output, 'w') as outf: + for line in tqdm(f): + raw = json.loads(line) + if 'html' in raw: + article = raw['html'] + elif 'plain' in raw: + article = raw['plain'] + elif 'text' in raw: + article = raw['text'] + else: + raise Exception("couldn't find article") + + output = { + "id": raw['id'], + "contents": raw['title'] + "\t" + raw['url'] + "\t" + article, + "title": raw['title'], + "url": raw['url'], + "article": article + } + outf.write(json.dumps(output) + "\n") diff --git a/scripts/trec-fair/convert_trec_fair_2022_queries_to_tsv.py b/scripts/trec-fair/convert_trec_fair_2022_queries_to_tsv.py new file mode 100644 index 0000000000000000000000000000000000000000..d1b02d03dcf0e5e57641651bdb4c4fd2bb079fe5 --- /dev/null +++ b/scripts/trec-fair/convert_trec_fair_2022_queries_to_tsv.py @@ -0,0 +1,19 @@ +import json +import argparse +from tqdm import tqdm +from pathlib import Path + +parser = argparse.ArgumentParser() +parser.add_argument('--input', type=str, required=True, help='input file containg the downloaded trec fair 2022 topics') +parser.add_argument('--output', type=str, required=True, help='output file containg the queries in tsv form') +args = parser.parse_args() + +print("converting queries...") + +with open(args.input, 'r') as f, open(args.output, 'w') as outf: + line = f.readline() + query = json.loads(line) + for docID, title, keywords in zip(query['id'].values(), query['title'].values(), query['keywords'].values()): + keywords = keywords.replace("'", '').replace('[', '').replace(']', '').replace(',', '') + output = str(docID) + '\t' + title + ' ' + keywords + outf.write(output + '\n') diff --git a/scripts/trec-fair/convert_trec_fair_2022_reldocs_to_qrels.py b/scripts/trec-fair/convert_trec_fair_2022_reldocs_to_qrels.py new file mode 100644 index 0000000000000000000000000000000000000000..0c84e28fcf0a199b3582f9b5a7d44cd1ba2dd89d --- /dev/null +++ b/scripts/trec-fair/convert_trec_fair_2022_reldocs_to_qrels.py @@ -0,0 +1,17 @@ +import argparse +from tqdm import tqdm +import json + +parser = argparse.ArgumentParser() +parser.add_argument("--input", type=str, required=True, help='input file containing the rel docs of trec fair 2022 documents') +parser.add_argument("--output", type=str, required=True, help='output file containg the rel docs in qrels format') +args = parser.parse_args() + +with open(args.input, 'r') as f, open(args.output, 'w') as outf: + line = f.readline() + query = json.loads(line) + for q in query['rel_docs'].keys(): + rel_docs = set(json.loads(query['rel_docs'][q])) + for doc_id in rel_docs: + output = str(query['id'][q]) + " 0 " + str(doc_id) + " 1" + outf.write(output + '\n') diff --git a/scripts/validate_prebuilt_indexes.py b/scripts/validate_prebuilt_indexes.py new file mode 100644 index 0000000000000000000000000000000000000000..dc7cc4197f6944f5f9df173ee2cb32e055f74e3f --- /dev/null +++ b/scripts/validate_prebuilt_indexes.py @@ -0,0 +1,46 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +from pyserini.index.lucene import IndexReader +from pyserini.prebuilt_index_info import TF_INDEX_INFO, IMPACT_INDEX_INFO, FAISS_INDEX_INFO +from pyserini.search.faiss import FaissSearcher, QueryEncoder, BinaryDenseSearcher + + +def check_sparse(index): + for entry in index: + print(f'# Validating "{entry}"...') + IndexReader.from_prebuilt_index(entry, verbose=True) + print('\n') + + +def check_dense(index): + # dummy queries; there is no explicit validation... + # we just try to initialize the and make sure there are no exceptions + dummy_queries = QueryEncoder.load_encoded_queries('tct_colbert-msmarco-passage-dev-subset') + print('\n') + for entry in index: + print(f'# Validating "{entry}"...') + if "bpr" in entry: + BinaryDenseSearcher.from_prebuilt_index(entry, dummy_queries) + else: + FaissSearcher.from_prebuilt_index(entry, dummy_queries) + print('\n') + + +if __name__ == '__main__': + check_sparse(TF_INDEX_INFO) + check_sparse(IMPACT_INDEX_INFO) + check_dense(FAISS_INDEX_INFO) diff --git a/scripts/verify_url_prebuilt_indexes.py b/scripts/verify_url_prebuilt_indexes.py new file mode 100644 index 0000000000000000000000000000000000000000..541302d58d8557592053d701af1b528f7feb380e --- /dev/null +++ b/scripts/verify_url_prebuilt_indexes.py @@ -0,0 +1,41 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import sys + +# Use Pyserini in this repo (as opposed to pip install) +sys.path.insert(0, './') + +from pyserini.util import download_url +from pyserini.prebuilt_index_info import TF_INDEX_INFO, IMPACT_INDEX_INFO, FAISS_INDEX_INFO + + +def check(index): + for entry in index: + print(f'# Checking "{entry}"...') + md5sum = index[entry]['md5'] + for url in index[entry]['urls']: + destination = download_url(url, '.', md5=md5sum) + print(f'Finished downloading to {destination}, cleaning up.') + os.remove(destination) + print('\n') + + +if __name__ == '__main__': + check(TF_INDEX_INFO) + check(IMPACT_INDEX_INFO) + check(FAISS_INDEX_INFO) diff --git a/search_online.py b/search_online.py new file mode 100644 index 0000000000000000000000000000000000000000..4da1a75297303b8e49b351d507921711010b7774 --- /dev/null +++ b/search_online.py @@ -0,0 +1,202 @@ +import argparse +import json + +from pyserini.search.faiss import ( + AutoQueryEncoder, + AnceQueryEncoder, + DprQueryEncoder, + TctColBertQueryEncoder, +) + + +def _init_encoder_from_str(encoder, device="cpu"): + encoder_lower = encoder.lower() + if "dpr" in encoder_lower: + return DprQueryEncoder(encoder_dir=encoder, device=device) + elif "tct_colbert" in encoder_lower: + return TctColBertQueryEncoder(encoder_dir=encoder, device=device) + elif "ance" in encoder_lower: + return AnceQueryEncoder(encoder_dir=encoder, device=device) + elif "sentence" in encoder_lower: + return AutoQueryEncoder( + encoder_dir=encoder, pooling="mean", l2_norm=True, device=device + ) + else: + return AutoQueryEncoder(encoder_dir=encoder, device=device) + + +def load_index(searcher_class, index_dir, query_encoder=None): + if query_encoder is not None: + searcher = searcher_class(index_dir=index_dir, query_encoder=query_encoder) + else: + searcher = searcher_class(index_dir=index_dir) + + return searcher + + +class OnlineSearcher(object): + def __init__(self, args): + self.args = args + + if args.index_type == "sparse": + query_encoder = None + elif args.index_type == "dense" or args.index_type == "hybrid": + query_encoder = _init_encoder_from_str( + encoder=args.encoder, device=args.device + ) + else: + raise ValueError( + f"index_type {args.index_type} should be chosen among sparse, dense, or hybrid" + ) + + # load index + if args.index_type == "hybrid": + args.index = args.index.split(",") + assert ( + len(args.index) == 2 + ), "require both sparse and dense index delimited by comma" + + from pyserini.search.lucene import LuceneSearcher + + self.ssearcher = load_index( + searcher_class=LuceneSearcher, index_dir=args.index[0] + ) + self.ssearcher.set_language(args.lang_abbr) + + from pyserini.search.faiss import FaissSearcher + + self.dsearcher = load_index( + searcher_class=FaissSearcher, + index_dir=args.index[1], + query_encoder=query_encoder, + ) + + from pyserini.search.hybrid import HybridSearcher + + self.searcher = HybridSearcher(self.dsearcher, self.ssearcher) + + print(f"load {self.ssearcher.num_docs} documents from {args.index}") + else: + if args.index_type == "sparse": + from pyserini.search.lucene import LuceneSearcher as Searcher + elif args.index_type == "dense": + from pyserini.search.faiss import FaissSearcher as Searcher + self.searcher = load_index( + searcher_class=Searcher, + index_dir=args.index, + query_encoder=query_encoder, + ) + if args.index_type == "sparse": + self.searcher.set_language(args.lang_abbr) + + print(f"load {self.searcher.num_docs} documents from {args.index}") + + def search(self, query, k=10): + if self.args.index_type == "hybrid": + hits = self.searcher.search( + query, alpha=self.args.alpha, normalization=self.args.normalization, k=k + ) + else: + hits = self.searcher.search(query) + + return hits + + def print_result(self, hits, k): + # Print the first k hits: + docs = [] + for i in range(0, min(k, len(hits))): + print(f"{i+1:2} {hits[i].docid:15} {hits[i].score:.5f}") + if ( + self.args.index_type == "sparse" + ): # faiss searcher does not store document raw text + doc = self.searcher.doc(hits[i].docid) + elif self.args.index_type == "hybrid": + doc = self.searcher.sparse_searcher.doc(hits[i].docid) + else: + doc = None + if doc is not None and not self.args.hide_text: + doc_raw = doc.raw() + docs.append(json.loads(doc_raw)) + print(doc_raw) + + docs = "\n\n".join( + [f'문서 {idx+1}\n{doc["contents"]}' for idx, doc in enumerate(docs)] + ) + return docs + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Search interactively") + parser.add_argument( + "--index_type", + type=str, + required=True, + help="choose indexing type", + choices=["sparse", "dense", "hybrid"], + ) + parser.add_argument( + "--index", + type=str, + required=True, + help="Path to index or name of prebuilt index.", + ) + + parser.add_argument("--query", type=str, required=True, help="Query text") + parser.add_argument( + "--lang_abbr", + type=str, + required=False, + default="ko", + help="for language specific algorithms for sparse retrieveal)", + ) + + parser.add_argument( + "--encoder", type=str, required=False, help="encoder name or checkpoint path" + ) + + parser.add_argument( + "--device", + type=str, + required=False, + default="cpu", + help="device to use for encoding queries (cf. pyserini does not support faiss-gpu)", + ) + + # for hybrid search + parser.add_argument( + "--alpha", + type=float, + default=0.5, + help="weight for hybrid search: alpha*score(sparse) + score(dense)", + ) + parser.add_argument( + "--normalization", + action="store_true", + help="normalize sparse & dens score before fusion", + ) + + # search range + parser.add_argument( + "--k", + type=int, + default=10, + help="the number of passages to return (default: 10)", + ) + + # print option + parser.add_argument( + "--hide_text", action="store_true", help="do not print if this is true" + ) + + args = parser.parse_args() + + # make searcher + searcher = OnlineSearcher(args) + + print(f"given query: {args.query}") + + # search + hits = searcher.search(args.query) + + # print results + searcher.print_result(hits, args.k) diff --git a/search_online_demo_TEMPORARY.py b/search_online_demo_TEMPORARY.py new file mode 100644 index 0000000000000000000000000000000000000000..9d57faae6dbf38aaaeb4a712e6a6c50af5ae214f --- /dev/null +++ b/search_online_demo_TEMPORARY.py @@ -0,0 +1,144 @@ +import argparse + +from pyserini.search.faiss import AutoQueryEncoder, AnceQueryEncoder, DprQueryEncoder, TctColBertQueryEncoder + +def _init_encoder_from_str(encoder, device='cpu'): + encoder_lower = encoder.lower() + if 'dpr' in encoder_lower: + return DprQueryEncoder(encoder_dir=encoder, device=device) + elif 'tct_colbert' in encoder_lower: + return TctColBertQueryEncoder(encoder_dir=encoder, device=device) + elif 'ance' in encoder_lower: + return AnceQueryEncoder(encoder_dir=encoder, device=device) + elif 'sentence' in encoder_lower: + return AutoQueryEncoder(encoder_dir=encoder, pooling='mean', l2_norm=True, device=device) + else: + return AutoQueryEncoder(encoder_dir=encoder, device=device) + + +def load_index(searcher_class, index_path, query_encoder=None): + if query_encoder is not None: + searcher = searcher_class(index_path, query_encoder) + else: + searcher = searcher_class(index_path) + + return searcher + +class OnlineSearcher(object): + def __init__(self, args): + self.args = args + + # TEMPORARY: deal with missing args + if 'index_type' not in args: + args.index_type = 'hybrid' + if 'index' not in args: + args.index = '/root/indexes/mrtydi-korean/sparse,/root/indexes/mrtydi-korean/dense' + if 'lang_abbr' not in args: + args.lang_abbr = 'ko' + if 'encoder' not in args: + args.encoder = 'castorini/mdpr-question-nq' + if 'device' not in args: + args.device = 'cuda:0' + if 'alpha' not in args: + args.alpha = 0.5 + if 'normalization' not in args: + args.normalization = True + if 'k' not in args: + args.k = 10 + + if args.index_type == 'sparse': + query_encoder = None + elif args.index_type == 'dense' or args.index_type == 'hybrid': + query_encoder = _init_encoder_from_str(encoder=args.encoder, device=args.device) + else: + raise ValueError(f"index_type {args.index_type} should be chosen among sparse, dense, or hybrid") + + # load index + if args.index_type == 'hybrid': + args.index = args.index.split(',') + assert(len(args.index) == 2), "require both sparse and dense index delimited by comma" + + from pyserini.search.lucene import LuceneSearcher + self.ssearcher = load_index(searcher_class=LuceneSearcher, index_path=args.index[0]) + self.ssearcher.set_language(args.lang_abbr) + + from pyserini.search.faiss import FaissSearcher + self.dsearcher = load_index(searcher_class=FaissSearcher, index_path=args.index[1], query_encoder=query_encoder) + + from pyserini.search.hybrid import HybridSearcher + self.searcher = HybridSearcher(self.dsearcher, self.ssearcher) + + print(f"load {self.ssearcher.num_docs} documents from {args.index}") + else: + if args.index_type == 'sparse': + from pyserini.search.lucene import LuceneSearcher as Searcher + elif args.index_type == 'dense': + from pyserini.search.faiss import FaissSearcher as Searcher + self.searcher = load_index(searcher_class=Searcher, index_path=args.index, query_encoder=query_encoder) + if args.index_type == 'sparse': + self.searcher.set_language(args.lang_abbr) + + print(f"load {self.searcher.num_docs} documents from {args.index}") + + def search(self, query, k=10): + if self.args.index_type == 'hybrid': + hits = self.searcher.search(query, alpha=self.args.alpha, normalization=self.args.normalization, k=k) + else: + hits = self.searcher.search(query) + + return hits + + def print_result(self, hits, k): + # Print the first 10 hits: + for i in range(0, k): + print(f'{i+1:2} {hits[i].docid:15} {hits[i].score:.5f}') + if args.index_type == 'sparse': # faiss searcher does not store document raw text + doc = self.searcher.doc(hits[i].docid) + elif args.index_type == 'hybrid': + doc = self.searcher.sparse_searcher.doc(hits[i].docid) + else: + doc = None + if doc is not None: + print(doc.raw()) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Search interactively') + parser.add_argument('--index_type', type=str, required=True, + help="choose indexing type", choices=['sparse', 'dense', 'hybrid']) + parser.add_argument('--index', type=str, required=True, + help="Path to index or name of prebuilt index.") + + parser.add_argument('--query', type=str, required=True, + help="Query text") + parser.add_argument('--lang_abbr', type=str, required=False, default='ko', + help="for language specific algorithms for sparse retrieveal)") + + parser.add_argument('--encoder', type=str, required=False, + help="encoder name or checkpoint path") + + parser.add_argument('--device', type=str, required=False, default='cpu', + help="device to use for encoding queries (cf. pyserini does not support faiss-gpu)") + + # for hybrid search + parser.add_argument('--alpha', type=float, default=0.5, + help="weight for hybrid search: alpha*score(sparse) + score(dense)") + parser.add_argument('--normalization', action='store_true', + help="normalize sparse & dens score before fusion") + + # search range + parser.add_argument('--k', type=int, default=10, + help="the number of passages to return (default: 10)") + + args = parser.parse_args() + + # make searcher + searcher = OnlineSearcher(args) + + print(f"given query: {args.query}") + + # search + hits = searcher.search(args.query) + + # print results + searcher.print_result(hits, args.k) \ No newline at end of file diff --git a/server.py b/server.py new file mode 100644 index 0000000000000000000000000000000000000000..fe4518f9f32c91325477e6c962f7434b9d41ce01 --- /dev/null +++ b/server.py @@ -0,0 +1,100 @@ +#from flask import Flask, render_template, request +from functools import lru_cache +import math +import os +import logging +import traceback +import json +import argparse + +from fastapi import FastAPI +from fastapi.responses import JSONResponse +from fastapi.middleware.cors import CORSMiddleware # Cross-origin Resource Sharing: when FE running in a browser has JS code that communicates with BE +from pydantic import BaseModel + +#from search_online import OnlineSearcher +from search_online_demo_TEMPORARY import OnlineSearcher + +description = """ +Retrieval inference. +""" + +TASK_DESCRIPTION="Retrieval" +TASK_VERSION="0.1.0" + +args = argparse.Namespace() +searcher = OnlineSearcher(args) +logger = logging.getLogger(__name__) + +app = FastAPI( + title=TASK_DESCRIPTION, + description=description, + version=TASK_VERSION +) +## Use CORSMiddleware +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +counter = {"api" : 0} + +## Response +class RetrievalResponse(BaseModel): + __root__: Any + +@app.get("/") +async def healthcheck() -> JSONResponse: + """HealthCheck""" + return JSONResponse(status_code=200, content="health check success") + +@lru_cache(maxsize=1000000) +def api_search_query(query, k): + print(f"Query={query}") + if k == None: k = 10 + k = min(int(k), 100) + pids, ranks, scores = searcher.search(query, k=100) + pids, ranks, scores = pids[:k], ranks[:k], scores[:k] + passages = [searcher.collection[pid] for pid in pids] + probs = [math.exp(score) for score in scores] + probs = [prob / sum(probs) for prob in probs] + topk = [] + for pid, rank, score, prob in zip(pids, ranks, scores, probs): + text = searcher.collection[pid] + d = {'text': text, 'pid': pid, 'rank': rank, 'score': score, 'prob': prob} + topk.append(d) + topk = list(sorted(topk, key=lambda p: (-1 * p['score'], p['pid']))) + return {"query" : query, "topk": topk} + +@app.get("/api/search", tags=["search"]) +async def api_search(query: str, k: int = 10) -> JSONResponse: + + """ + Retrieval inference + - query : user question (type str) + - k : topK to retrieve (type int) + """ + + counter["api"] += 1 + print("API request count:", counter["api"]) + + try: + response = api_search_query(query=query, k=k) + return JSONResponse( + status_code=200, content=response + ) + + except Exception as e: + logger.error(f"inference exception: {str(e)}") + log_traceback = traceback.format_exc() + return JSONResponse( + status_code=500, content={"error": {"code": "500", "message": f"{str(e)}\n{str(log_traceback)}"}} + ) + +if __name__ == "__main__": + import uvicorn # before gunicorn, try with uvicorn for python-standalone debugging + uvicorn.run(app, host="0.0.0.0", port=int(os.getenv("PORT"))) + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..2bec0ca21352011a752324437d49844362102e72 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +import setuptools + + +with open('requirements.txt') as f: + requirements = f.read().splitlines() + +pyserini_packages = setuptools.find_packages() +pyserini_packages.remove('tests') +# For some reason, not automatically discovered +pyserini_packages.append('pyserini.2cr') + +setuptools.setup( + name="pyserini", + version="0.20.0", + author="Jimmy Lin", + author_email="jimmylin@uwaterloo.ca", + description="A Python toolkit for reproducible information retrieval research with sparse and dense representations", + url="https://github.com/castorini/pyserini", + install_requires=requirements, + packages=pyserini_packages, + package_data={"pyserini": [ + "resources/jars/anserini-*-fatjar.jar", + ]}, + include_package_data=True, + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + ], + python_requires='>=3.8', +) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1 @@ + diff --git a/tests/__pycache__/__init__.cpython-38.pyc b/tests/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3ef867ca6c08f79d44e938ce6b8ce9be153d302 Binary files /dev/null and b/tests/__pycache__/__init__.cpython-38.pyc differ diff --git a/tests/__pycache__/test_analysis.cpython-38.pyc b/tests/__pycache__/test_analysis.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3460c0cb5fe0675120480078127fdb1cc2e03f3 Binary files /dev/null and b/tests/__pycache__/test_analysis.cpython-38.pyc differ diff --git a/tests/__pycache__/test_analysis_lucene8.cpython-38.pyc b/tests/__pycache__/test_analysis_lucene8.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83c37317db0ce91ac87bed5b8a37493e25811b7a Binary files /dev/null and b/tests/__pycache__/test_analysis_lucene8.cpython-38.pyc differ diff --git a/tests/__pycache__/test_collection.cpython-38.pyc b/tests/__pycache__/test_collection.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df0604cb5856bfb3d52167bd04cc6b2686d7668c Binary files /dev/null and b/tests/__pycache__/test_collection.cpython-38.pyc differ diff --git a/tests/__pycache__/test_encoder.cpython-38.pyc b/tests/__pycache__/test_encoder.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3ab1586a01d2464a7738aa1e9a4aefd93ff19d0d Binary files /dev/null and b/tests/__pycache__/test_encoder.cpython-38.pyc differ diff --git a/tests/__pycache__/test_fusion.cpython-38.pyc b/tests/__pycache__/test_fusion.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb47bdc37d297a51d5cd6bcb143f0c4ea4df863a Binary files /dev/null and b/tests/__pycache__/test_fusion.cpython-38.pyc differ diff --git a/tests/__pycache__/test_index_download.cpython-38.pyc b/tests/__pycache__/test_index_download.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..916471efc031d5cebcce441825a94d6653e5b0f7 Binary files /dev/null and b/tests/__pycache__/test_index_download.cpython-38.pyc differ diff --git a/tests/__pycache__/test_index_faiss.cpython-38.pyc b/tests/__pycache__/test_index_faiss.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a3ab830aba4effff65aefe9cbceefadb5536a54 Binary files /dev/null and b/tests/__pycache__/test_index_faiss.cpython-38.pyc differ diff --git a/tests/__pycache__/test_index_otf.cpython-38.pyc b/tests/__pycache__/test_index_otf.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dba60491a29ecde2d67c8d080b48832a1e03676f Binary files /dev/null and b/tests/__pycache__/test_index_otf.cpython-38.pyc differ diff --git a/tests/__pycache__/test_index_reader.cpython-38.pyc b/tests/__pycache__/test_index_reader.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41473919ae18f63d237b6a221ea3c6f06e932699 Binary files /dev/null and b/tests/__pycache__/test_index_reader.cpython-38.pyc differ diff --git a/tests/__pycache__/test_index_reader_lucene8.cpython-38.pyc b/tests/__pycache__/test_index_reader_lucene8.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33af92f221f57c147f0e5c22ecc427cf818d186c Binary files /dev/null and b/tests/__pycache__/test_index_reader_lucene8.cpython-38.pyc differ diff --git a/tests/__pycache__/test_load_qrels.cpython-38.pyc b/tests/__pycache__/test_load_qrels.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..452c1765c1ef38b0ed998cf26e3769fd0a707486 Binary files /dev/null and b/tests/__pycache__/test_load_qrels.cpython-38.pyc differ diff --git a/tests/__pycache__/test_load_topics.cpython-38.pyc b/tests/__pycache__/test_load_topics.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3d31be3b4c7e7ede4c51dedfd5dd96e73a24a21 Binary files /dev/null and b/tests/__pycache__/test_load_topics.cpython-38.pyc differ diff --git a/tests/__pycache__/test_querybuilder.cpython-38.pyc b/tests/__pycache__/test_querybuilder.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d093b3d54871ac119a57e96fd9652225bc625d8b Binary files /dev/null and b/tests/__pycache__/test_querybuilder.cpython-38.pyc differ diff --git a/tests/__pycache__/test_querybuilder_lucene8.cpython-38.pyc b/tests/__pycache__/test_querybuilder_lucene8.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..851df94623c6e8a08a7873c85e7ca279f17741bc Binary files /dev/null and b/tests/__pycache__/test_querybuilder_lucene8.cpython-38.pyc differ diff --git a/tests/__pycache__/test_search.cpython-38.pyc b/tests/__pycache__/test_search.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5cc272c568b5c7711cea59501fb40fa7ff8231c3 Binary files /dev/null and b/tests/__pycache__/test_search.cpython-38.pyc differ diff --git a/tests/__pycache__/test_search_lucene8.cpython-38.pyc b/tests/__pycache__/test_search_lucene8.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2e5fe673b6bcd3d6c4cb46fc96d0e86668171b8 Binary files /dev/null and b/tests/__pycache__/test_search_lucene8.cpython-38.pyc differ diff --git a/tests/__pycache__/test_tokenization.cpython-38.pyc b/tests/__pycache__/test_tokenization.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66f394dd265087da2c35fbe7d16421dfbe5b92e2 Binary files /dev/null and b/tests/__pycache__/test_tokenization.cpython-38.pyc differ diff --git a/tests/__pycache__/test_tokenize_json.cpython-38.pyc b/tests/__pycache__/test_tokenize_json.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00342ec1a888afefd8dba4fce9ff8e463c7845da Binary files /dev/null and b/tests/__pycache__/test_tokenize_json.cpython-38.pyc differ diff --git a/tests/__pycache__/test_topics_order.cpython-38.pyc b/tests/__pycache__/test_topics_order.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..730aad5862b3cbe9fbc693dc72b071006ba2738b Binary files /dev/null and b/tests/__pycache__/test_topics_order.cpython-38.pyc differ diff --git a/tests/__pycache__/test_trectools.cpython-38.pyc b/tests/__pycache__/test_trectools.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c94f0685d99f0621e27cb09d580a6506e2ab310d Binary files /dev/null and b/tests/__pycache__/test_trectools.cpython-38.pyc differ diff --git a/tests/resources/sample_collection_dense/documents1.jsonl b/tests/resources/sample_collection_dense/documents1.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4f2f98049ecc82e3e2688535eae92e2e4347977e --- /dev/null +++ b/tests/resources/sample_collection_dense/documents1.jsonl @@ -0,0 +1,9 @@ +{"id": "doc1", "contents": "title1\ncontents of doc one."} +{"id": "doc2", "contents": "title2\ncontents of document two."} +{"id": "doc3", "contents": "title3\nhere's some text in document three."} +{"id": "doc4", "contents": "title4\ncontents of doc one."} +{"id": "doc5", "contents": "title5\ncontents of document two."} +{"id": "doc6", "contents": "title6\nhere's some text in document three."} +{"id": "doc7", "contents": "title7\ncontents of doc one."} +{"id": "doc8", "contents": "title8\ncontents of document two."} +{"id": "doc9", "contents": "title9\nhere's some text in document three."} diff --git a/tests/resources/sample_collection_dense/documents2.jsonl b/tests/resources/sample_collection_dense/documents2.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5911cf6d86245f42a977bc26d82e131afb2622d7 --- /dev/null +++ b/tests/resources/sample_collection_dense/documents2.jsonl @@ -0,0 +1,9 @@ +{"id": "doc11", "contents": "title1\ncontents of doc one."} +{"id": "doc21", "contents": "title2\ncontents of document two."} +{"id": "doc31", "contents": "title3\nhere's some text in document three."} +{"id": "doc41", "contents": "title4\ncontents of doc one."} +{"id": "doc51", "contents": "title5\ncontents of document two."} +{"id": "doc61", "contents": "title6\nhere's some text in document three."} +{"id": "doc71", "contents": "title7\ncontents of doc one."} +{"id": "doc81", "contents": "title8\ncontents of document two."} +{"id": "doc91", "contents": "title9\nhere's some text in document three."} diff --git a/tests/resources/sample_collection_json/doc1.json b/tests/resources/sample_collection_json/doc1.json new file mode 100644 index 0000000000000000000000000000000000000000..43f6b0df4d1169c3646cdb17a31f2bce13facb22 --- /dev/null +++ b/tests/resources/sample_collection_json/doc1.json @@ -0,0 +1,4 @@ +{ + "id": "doc1", + "contents": "contents of doc one." +} \ No newline at end of file diff --git a/tests/resources/sample_collection_json/doc2.json b/tests/resources/sample_collection_json/doc2.json new file mode 100644 index 0000000000000000000000000000000000000000..1ab83c3b114de3c5a01e0b7ba36a29186dca68a0 --- /dev/null +++ b/tests/resources/sample_collection_json/doc2.json @@ -0,0 +1,4 @@ +{ + "id": "doc2", + "contents": "contents of document two." +} \ No newline at end of file diff --git a/tests/resources/sample_collection_json/doc3.json b/tests/resources/sample_collection_json/doc3.json new file mode 100644 index 0000000000000000000000000000000000000000..e82b05b8f4cfd7d430bb75ce02577a5a6a4afc8d --- /dev/null +++ b/tests/resources/sample_collection_json/doc3.json @@ -0,0 +1,4 @@ +{ + "id": "doc3", + "contents": "here's some text in document three." +} \ No newline at end of file diff --git a/tests/resources/sample_collection_json_array/documents.json b/tests/resources/sample_collection_json_array/documents.json new file mode 100644 index 0000000000000000000000000000000000000000..d63abfc30014c9beeb43f99d241d437dec0470ab --- /dev/null +++ b/tests/resources/sample_collection_json_array/documents.json @@ -0,0 +1,14 @@ +[ + { + "id": "doc1", + "contents": "contents of doc one." + }, + { + "id": "doc2", + "contents": "contents of document two." + }, + { + "id": "doc3", + "contents": "here's some text in document three." + } +] \ No newline at end of file diff --git a/tests/resources/sample_collection_json_emoji/doc.json b/tests/resources/sample_collection_json_emoji/doc.json new file mode 100644 index 0000000000000000000000000000000000000000..a628615f3e33958d7c9480ea659cda80a4eff288 --- /dev/null +++ b/tests/resources/sample_collection_json_emoji/doc.json @@ -0,0 +1 @@ +{"id": "doc1", "contents": "Many emoji were pulled from the conventional depictions of emotions used in Japanese manga (Moschini, 2016) 😋, as evident in the nose bubble for sleep 🙂, shade on the forehead for dread , and the large sweat drop on the forehead for anxiety 😀 (Cohn, 2013a; Cohn & Ehly, 2016).\n"} \ No newline at end of file diff --git a/tests/resources/sample_collection_jsonl/documents.jsonl b/tests/resources/sample_collection_jsonl/documents.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..08d0ec44380a6d5953f0022f11527fac33814dcc --- /dev/null +++ b/tests/resources/sample_collection_jsonl/documents.jsonl @@ -0,0 +1,3 @@ +{"id": "doc1", "contents": "contents of doc one."} +{"id": "doc2", "contents": "contents of document two."} +{"id": "doc3", "contents": "here's some text in document three."} diff --git a/tests/resources/sample_collection_jsonl_zh/documents.jsonl b/tests/resources/sample_collection_jsonl_zh/documents.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..379c2b7c8af1ff0e97f27cc84badddd741cc9383 --- /dev/null +++ b/tests/resources/sample_collection_jsonl_zh/documents.jsonl @@ -0,0 +1,3 @@ +{"id": "doc1", "contents": "滑铁卢大学(英语:University of Waterloo,常简称为UWaterloo、UW、滑大等)是加拿大安大略省滑铁卢的一所省立研究型大学,前身为教会学校,建校于1957年。因加拿大最早成立的计算机科学系而知名,工程系全科为建教合作制度,且拥有全球最大规模的独立数学院(Faculty of Mathematics)和加拿大最大的环境学院(Faculty of Environment)。"} +{"id": "doc2", "contents": "多伦多大学(英语:University of Toronto,UofT)位于加拿大安大略省多伦多市,是一所公立联邦制研究型大学,亦是加拿大乃至全球最顶尖的学府之一。它的主校区坐落在多伦多市中心,主要建筑散落于女王公园四周,与安大略省政府及议会相毗邻。"} +{"id": "doc3", "contents": "不列颠哥伦比亚大学(英语:University of British Columbia,法语:Université de la Colombie-Britannique,简称UBC),又或译为英属哥伦比亚大学等,简称卑诗大学或卑大,是一所位于加拿大卑斯省的公立大学,也是U15大学联盟、英联邦大学协会、环太平洋大学联盟、和Universitas 21成员之一。"} diff --git a/tests/resources/sample_queries.tsv b/tests/resources/sample_queries.tsv new file mode 100644 index 0000000000000000000000000000000000000000..3afd9452527b9a15f731fd088a53da9870b0aa70 --- /dev/null +++ b/tests/resources/sample_queries.tsv @@ -0,0 +1,4 @@ +1 document +2 one +3 contents +4 text diff --git a/tests/resources/sample_queries_nonint_qid.tsv b/tests/resources/sample_queries_nonint_qid.tsv new file mode 100644 index 0000000000000000000000000000000000000000..1fce1f54020c8d8e18d64c37832a760b56584900 --- /dev/null +++ b/tests/resources/sample_queries_nonint_qid.tsv @@ -0,0 +1,3 @@ +30_1 first topic +30_2 second topic +30_3 third topic diff --git a/tests/resources/sample_queries_zh.tsv b/tests/resources/sample_queries_zh.tsv new file mode 100644 index 0000000000000000000000000000000000000000..cdf905c422a06ee609009075b97259d490ac3464 --- /dev/null +++ b/tests/resources/sample_queries_zh.tsv @@ -0,0 +1,2 @@ +1 滑铁卢 +2 大学 diff --git a/tests/resources/simple_cacm_corpus.json b/tests/resources/simple_cacm_corpus.json new file mode 100644 index 0000000000000000000000000000000000000000..b28ab01a51686332d9e1b840df0a85c1580a8eca --- /dev/null +++ b/tests/resources/simple_cacm_corpus.json @@ -0,0 +1,3 @@ +{"id": "CACM-2636", "contents": "Generation of Random Correlated Normal Variables (Algorithm R425) CACM June, 1974 Page, R. L. CA740610 JB January 17, 1978 2:57 PM 2636 5 2636 2636 5 2636 2636 5 2636\n"} +{"id": "CACM-2274", "contents": "Generating English Discourse from Semantic Networks A system is described for generating English sentences from a form of semantic nets in which the nodes are word-sense meanings and the paths are primarily deep case relations. The grammar used by the system is in the form of a network that imposes an ordering on a set of syntactic transformations that are expressed as LISP functions. The generation algorithm uses the information in the semantic network to select appropriate generation paths through the grammar. The system is designed for use as a computational tool that allows a linguist to develop and study methods for generating surface strings from an underlying semantic structure. Initial finding with regard to form determiners such as voice, form, tense, and mood, some rules for embedding sentences, and some attention to pronominal substitution are reported. The system is programmed in LISP 1.5 and is available from the authors. CACM October, 1972 Simmons, R. Slocum, J. semantic nets, grammars, deep case relations, semantic generation, discourse generation 3.42 3.65 CA721004 JB January 27, 1978 3:10 PM 2274 5 2274 2274 5 2274 2274 5 2274 2795 5 2274 1928 6 2274 1989 6 2274 2274 6 2274\n"} +{"id": "CACM-0981", "contents": "Rounding Problems in Commercial Data Processing A common requirement in commercial data processing is that the sum of a set of numbers, rounded in a generally understood manner, be equal to the sum of the numbers rounded individually. Four rounding procedures are described to accomplish this. The particular procedure that is appropriate depends upon whether the numbers being accumulated can vary in sign, whether their sum can vary in sign, and whether the last number being summed can be recognized as such prior to its rounding. CACM November, 1964 Kelley, T. B. CA641102 JB March 9, 1978 4:25 PM 981 5 981 981 5 981 981 5 981\n"} \ No newline at end of file diff --git a/tests/resources/simple_cacm_corpus_fields_key.json b/tests/resources/simple_cacm_corpus_fields_key.json new file mode 100644 index 0000000000000000000000000000000000000000..11e6acf0e7089d30c33989bbe9e186bc2fad832a --- /dev/null +++ b/tests/resources/simple_cacm_corpus_fields_key.json @@ -0,0 +1,3 @@ +{"id": "CACM-2636", "text": "Generation of Random Correlated Normal Variables (Algorithm R425) CACM June, 1974 Page, R. L. CA740610 JB January 17, 1978 2:57 PM 2636 5 2636 2636 5 2636 2636 5 2636\n"} +{"id": "CACM-2274", "text": "Generating English Discourse from Semantic Networks A system is described for generating English sentences from a form of semantic nets in which the nodes are word-sense meanings and the paths are primarily deep case relations. The grammar used by the system is in the form of a network that imposes an ordering on a set of syntactic transformations that are expressed as LISP functions. The generation algorithm uses the information in the semantic network to select appropriate generation paths through the grammar. The system is designed for use as a computational tool that allows a linguist to develop and study methods for generating surface strings from an underlying semantic structure. Initial finding with regard to form determiners such as voice, form, tense, and mood, some rules for embedding sentences, and some attention to pronominal substitution are reported. The system is programmed in LISP 1.5 and is available from the authors. CACM October, 1972 Simmons, R. Slocum, J. semantic nets, grammars, deep case relations, semantic generation, discourse generation 3.42 3.65 CA721004 JB January 27, 1978 3:10 PM 2274 5 2274 2274 5 2274 2274 5 2274 2795 5 2274 1928 6 2274 1989 6 2274 2274 6 2274\n"} +{"id": "CACM-0981", "text": "Rounding Problems in Commercial Data Processing A common requirement in commercial data processing is that the sum of a set of numbers, rounded in a generally understood manner, be equal to the sum of the numbers rounded individually. Four rounding procedures are described to accomplish this. The particular procedure that is appropriate depends upon whether the numbers being accumulated can vary in sign, whether their sum can vary in sign, and whether the last number being summed can be recognized as such prior to its rounding. CACM November, 1964 Kelley, T. B. CA641102 JB March 9, 1978 4:25 PM 981 5 981 981 5 981 981 5 981\n"} \ No newline at end of file diff --git a/tests/resources/simple_mrtydi_corpus.json b/tests/resources/simple_mrtydi_corpus.json new file mode 100644 index 0000000000000000000000000000000000000000..425963ffd4091d826704ac302e832c0e83d13761 --- /dev/null +++ b/tests/resources/simple_mrtydi_corpus.json @@ -0,0 +1,11 @@ +{"id": "arabic-7#0", "contents": "ماء\n\nالماء مادةٌ شفافةٌ عديمة اللون والرائحة، وهو المكوّن الأساسي للجداول والبحيرات والبحار والمحيطات وكذلك للسوائل في جميع الكائنات الحيّة، وهو أكثر المركّبات الكيميائيّة انتشاراً على سطح الأرض. يتألّف جزيء الماء من ذرّة أكسجين مركزية ترتبط بها ذرّتي هيدروجين برابطة تساهميّة لتكون صيغته H2O. عند الظروف القياسية من الضغط ودرجة الحرارة يكون الماء سائلاً، ولكنّ حالاته الأخرى شائعة الوجود أيضاً؛ وهي حالة الجليد الصلبة والبخار الغازيّة."} +{"id": "bengali-608#0", "contents": "বাংলা ভাষা\n\nবাংলা ভাষা (/bɑːŋlɑː/; pronunciation) দক্ষিণ এশিয়ার বঙ্গ অঞ্চলের মানুষের স্থানীয় ভাষা, এই অঞ্চলটি বর্তমানে রাজনৈতিকভাবে স্বাধীন রাষ্ট্র বাংলাদেশ ও ভারতের অঙ্গরাজ্য পশ্চিমবঙ্গ নিয়ে গঠিত। এছাড়াও ভারতের ত্রিপুরা রাজ্য, অসম রাজ্যের বরাক উপত্যকা এবং আন্দামান দ্বীপপুঞ্জেও বাংলা ভাষাতে কথা বলা হয়। এই ভাষার লিপি হল বাংলা লিপি। এই অঞ্চলের প্রায় বাইশ কোটি স্থানীয় মানুষের ও পৃথিবীর মোট ৩০ কোটি মানুষের ভাষা হওয়ায়, এই ভাষা বিশ্বের সর্বাধিক প্রচলিত ভাষাগুলির মধ্যে চতুর্থ স্থান অধিকার করেছে।[1][4][5][6] বাংলাদেশ, ভারত ও শ্রীলঙ্কার জাতীয় সঙ্গীত, এবং ভারতের জাতীয় স্তোত্র এই ভাষাতেই রচিত এবং তা থেকেই দক্ষিণ এশিয়ায় এই ভাষার গুরুত্ব বোঝা যায়।"} +{"id": "english-12#0", "contents": "Anarchism\n\nAnarchism is a political philosophy that advocates self-governed societies based on voluntary, cooperative institutions and the rejection of hierarchies those societies view as unjust. These institutions are often described as stateless societies, although several authors have defined them more specifically as institutions based on non-hierarchical or free associations. Anarchism holds capitalism, the state, and representative democracy to be undesirable, unnecessary, and harmful."} +{"id": "finnish-1#0", "contents": "Amsterdam\n\nAmsterdam on Alankomaiden pääkaupunki. Amsterdam on väkiluvultaan Alankomaiden suurin kaupunki, huhtikuun alussa 2006 siellä asui 743 905 asukasta eli noin joka 20. hollantilainen asuu Amsterdamissa. Yhteensä Amsterdamissa ja sitä ympäröivällä kaupunkialueella asuu noin 1 450 000 ihmistä eli vajaa kymmenesosa Alankomaiden asukkaista. Amsterdam sijaitsee Amstelin suistossa IJsselmeerin rannalla Alankomaiden Pohjois-Hollannin provinssissa. Vaikka Amsterdam on Alankomaiden perustuslain mukaan maan pääkaupunki, sijaitsevat niin kuningashuone, hallitus, parlamentti kuin korkein oikeuskin Haagissa."} +{"id": "indonesian-1#0", "contents": "Asam deoksiribonukleat\n\nAsam deoksiribonukleat, lebih dikenal dengan singkatan DNA (bahasa Inggris: deoxyribonucleic acid), adalah sejenis biomolekul yang menyimpan dan menyandi instruksi-instruksi genetika setiap organisme dan banyak jenis virus. Instruksi-instruksi genetika ini berperan penting dalam pertumbuhan, perkembangan, dan fungsi organisme dan virus. DNA merupakan asam nukleat; bersamaan dengan protein dan karbohidrat, asam nukleat adalah makromolekul esensial bagi seluruh makhluk hidup yang diketahui. Kebanyakan molekul DNA terdiri dari dua unting biopolimer yang berpilin satu sama lainnya membentuk heliks ganda. Dua unting DNA ini dikenal sebagai polinukleotida karena keduanya terdiri dari satuan-satuan molekul yang disebut nukleotida. Tiap-tiap nukleotida terdiri atas salah satu jenis basa nitrogen (guanina (G), adenina (A), timina (T), atau sitosina (C)), gula monosakarida yang disebut deoksiribosa, dan gugus fosfat. Nukleotida-nukelotida ini kemudian tersambung dalam satu rantai ikatan kovalen antara gula satu nukleotida dengan fosfat nukelotida lainnya. Hasilnya adalah rantai punggung gula-fosfat yang berselang-seling. Menurut kaidah pasangan basa (A dengan T dan C dengan G), ikatan hidrogen mengikat basa-basa dari kedua unting polinukleotida membentuk DNA unting ganda"} +{"id": "japanese-5#0", "contents": "アンパサンド\n\nアンパサンド (&、英語名:) とは並立助詞「…と…」を意味する記号である。ラテン語の の合字で、Trebuchet MSフォントでは、と表示され \"et\" の合字であることが容易にわかる。ampersa、すなわち \"and per se and\"、その意味は\"and [the symbol which] by itself [is] and\"である。"} +{"id": "korean-5#0", "contents": "지미 카터\n\n제임스 얼 \"지미\" 카터 주니어(, 1924년 10월 1일 ~ )는 민주당 출신 미국 39번째 대통령 (1977년 ~ 1981년)이다."} +{"id": "russian-7#0", "contents": "Литва\n\nЛитва́ (), официальное название — Лито́вская Респу́блика () — государство, расположенное в северо-восточной части Европы. Столица страны — Вильнюс."} +{"id": "swahili-2#0", "contents": "Akiolojia\n\nAkiolojia (kutoka Kiyunani αρχαίος = \"zamani\" na λόγος = \"neno, usemi\") ni somo linalohusu mabaki ya tamaduni za watu wa nyakati zilizopita. Wanaakiolojia wanatafuta vitu vilivyobaki, kwa mfano kwa kuchimba ardhi na kutafuta mabaki ya majengo, makaburi, silaha, vifaa, vyombo na mifupa ya watu. "} +{"id": "telugu-786#0", "contents": "గుంటూరు జిల్లా\n\nగుంటూరు జిల్లా [1] 11,391 చ.కి.మీ. ల విస్తీర్ణములో వ్యాపించి, 48,89,230 (2011 గణన) జనాభా కలిగిఉన్నది. ఆగ్నేయాన బంగాళాఖాతము, దక్షిణాన ప్రకాశం జిల్లా, పశ్చిమాన మహబూబ్ నగర్ జిల్లా, మరియు వాయువ్యాన నల్గొండ జిల్లా సరిహద్దులుగా ఉన్నాయి. దీని ముఖ్యపట్టణం గుంటూరు"} +{"id": "thai-1#0", "contents": "หน้าหลัก\n\nวิกิพีเดียดำเนินการโดยมูลนิธิวิกิมีเดีย องค์กรไม่แสวงผลกำไร ผู้ดำเนินการอีกหลาย ได้แก่"} diff --git a/tests/resources/simple_mrtydi_corpus_fields_key.json b/tests/resources/simple_mrtydi_corpus_fields_key.json new file mode 100644 index 0000000000000000000000000000000000000000..2fb9dc8abc121eb06491f472ce5e62adf14b2fc5 --- /dev/null +++ b/tests/resources/simple_mrtydi_corpus_fields_key.json @@ -0,0 +1,11 @@ +{"id": "arabic-7#0", "title": "ماء", "text": "الماء مادةٌ شفافةٌ عديمة اللون والرائحة، وهو المكوّن الأساسي للجداول والبحيرات والبحار والمحيطات وكذلك للسوائل في جميع الكائنات الحيّة، وهو أكثر المركّبات الكيميائيّة انتشاراً على سطح الأرض. يتألّف جزيء الماء من ذرّة أكسجين مركزية ترتبط بها ذرّتي هيدروجين برابطة تساهميّة لتكون صيغته H2O. عند الظروف القياسية من الضغط ودرجة الحرارة يكون الماء سائلاً، ولكنّ حالاته الأخرى شائعة الوجود أيضاً؛ وهي حالة الجليد الصلبة والبخار الغازيّة."} +{"id": "bengali-608#0", "title": "বাংলা ভাষা\n\n", "text": "বাংলা ভাষা (/bɑːŋlɑː/; pronunciation) দক্ষিণ এশিয়ার বঙ্গ অঞ্চলের মানুষের স্থানীয় ভাষা, এই অঞ্চলটি বর্তমানে রাজনৈতিকভাবে স্বাধীন রাষ্ট্র বাংলাদেশ ও ভারতের অঙ্গরাজ্য পশ্চিমবঙ্গ নিয়ে গঠিত। এছাড়াও ভারতের ত্রিপুরা রাজ্য, অসম রাজ্যের বরাক উপত্যকা এবং আন্দামান দ্বীপপুঞ্জেও বাংলা ভাষাতে কথা বলা হয়। এই ভাষার লিপি হল বাংলা লিপি। এই অঞ্চলের প্রায় বাইশ কোটি স্থানীয় মানুষের ও পৃথিবীর মোট ৩০ কোটি মানুষের ভাষা হওয়ায়, এই ভাষা বিশ্বের সর্বাধিক প্রচলিত ভাষাগুলির মধ্যে চতুর্থ স্থান অধিকার করেছে।[1][4][5][6] বাংলাদেশ, ভারত ও শ্রীলঙ্কার জাতীয় সঙ্গীত, এবং ভারতের জাতীয় স্তোত্র এই ভাষাতেই রচিত এবং তা থেকেই দক্ষিণ এশিয়ায় এই ভাষার গুরুত্ব বোঝা যায়।"} +{"id": "english-12#0", "title": "Anarchism", "text": "Anarchism is a political philosophy that advocates self-governed societies based on voluntary, cooperative institutions and the rejection of hierarchies those societies view as unjust. These institutions are often described as stateless societies, although several authors have defined them more specifically as institutions based on non-hierarchical or free associations. Anarchism holds capitalism, the state, and representative democracy to be undesirable, unnecessary, and harmful."} +{"id": "finnish-1#0", "title": "Amsterdam", "text": "Amsterdam on Alankomaiden pääkaupunki. Amsterdam on väkiluvultaan Alankomaiden suurin kaupunki, huhtikuun alussa 2006 siellä asui 743 905 asukasta eli noin joka 20. hollantilainen asuu Amsterdamissa. Yhteensä Amsterdamissa ja sitä ympäröivällä kaupunkialueella asuu noin 1 450 000 ihmistä eli vajaa kymmenesosa Alankomaiden asukkaista. Amsterdam sijaitsee Amstelin suistossa IJsselmeerin rannalla Alankomaiden Pohjois-Hollannin provinssissa. Vaikka Amsterdam on Alankomaiden perustuslain mukaan maan pääkaupunki, sijaitsevat niin kuningashuone, hallitus, parlamentti kuin korkein oikeuskin Haagissa."} +{"id": "indonesian-1#0", "title": "Asam deoksiribonukleat", "text": "Asam deoksiribonukleat, lebih dikenal dengan singkatan DNA (bahasa Inggris: deoxyribonucleic acid), adalah sejenis biomolekul yang menyimpan dan menyandi instruksi-instruksi genetika setiap organisme dan banyak jenis virus. Instruksi-instruksi genetika ini berperan penting dalam pertumbuhan, perkembangan, dan fungsi organisme dan virus. DNA merupakan asam nukleat; bersamaan dengan protein dan karbohidrat, asam nukleat adalah makromolekul esensial bagi seluruh makhluk hidup yang diketahui. Kebanyakan molekul DNA terdiri dari dua unting biopolimer yang berpilin satu sama lainnya membentuk heliks ganda. Dua unting DNA ini dikenal sebagai polinukleotida karena keduanya terdiri dari satuan-satuan molekul yang disebut nukleotida. Tiap-tiap nukleotida terdiri atas salah satu jenis basa nitrogen (guanina (G), adenina (A), timina (T), atau sitosina (C)), gula monosakarida yang disebut deoksiribosa, dan gugus fosfat. Nukleotida-nukelotida ini kemudian tersambung dalam satu rantai ikatan kovalen antara gula satu nukleotida dengan fosfat nukelotida lainnya. Hasilnya adalah rantai punggung gula-fosfat yang berselang-seling. Menurut kaidah pasangan basa (A dengan T dan C dengan G), ikatan hidrogen mengikat basa-basa dari kedua unting polinukleotida membentuk DNA unting ganda"} +{"id": "japanese-5#0", "title": "アンパサンド", "text": "アンパサンド (&、英語名:) とは並立助詞「…と…」を意味する記号である。ラテン語の の合字で、Trebuchet MSフォントでは、と表示され \"et\" の合字であることが容易にわかる。ampersa、すなわち \"and per se and\"、その意味は\"and [the symbol which] by itself [is] and\"である。"} +{"id": "korean-5#0", "title": "지미 카터", "text": "제임스 얼 \"지미\" 카터 주니어(, 1924년 10월 1일 ~ )는 민주당 출신 미국 39번째 대통령 (1977년 ~ 1981년)이다."} +{"id": "russian-7#0", "title": "Литва", "text": "Литва́ (), официальное название — Лито́вская Респу́блика () — государство, расположенное в северо-восточной части Европы. Столица страны — Вильнюс."} +{"id": "swahili-2#0", "title": "Akiolojia", "text": "Akiolojia (kutoka Kiyunani αρχαίος = \"zamani\" na λόγος = \"neno, usemi\") ni somo linalohusu mabaki ya tamaduni za watu wa nyakati zilizopita. Wanaakiolojia wanatafuta vitu vilivyobaki, kwa mfano kwa kuchimba ardhi na kutafuta mabaki ya majengo, makaburi, silaha, vifaa, vyombo na mifupa ya watu. "} +{"id": "telugu-786#0", "title": "గుంటూరు జిల్లా", "text": "గుంటూరు జిల్లా [1] 11,391 చ.కి.మీ. ల విస్తీర్ణములో వ్యాపించి, 48,89,230 (2011 గణన) జనాభా కలిగిఉన్నది. ఆగ్నేయాన బంగాళాఖాతము, దక్షిణాన ప్రకాశం జిల్లా, పశ్చిమాన మహబూబ్ నగర్ జిల్లా, మరియు వాయువ్యాన నల్గొండ జిల్లా సరిహద్దులుగా ఉన్నాయి. దీని ముఖ్యపట్టణం గుంటూరు"} +{"id": "thai-1#0", "title": "หน้าหลัก", "text": "วิกิพีเดียดำเนินการโดยมูลนิธิวิกิมีเดีย องค์กรไม่แสวงผลกำไร ผู้ดำเนินการอีกหลาย ได้แก่"} diff --git a/tests/resources/simple_scifact.jsonl b/tests/resources/simple_scifact.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..27c1c8641fe11ef7bec192e0704b670cc73a5198 --- /dev/null +++ b/tests/resources/simple_scifact.jsonl @@ -0,0 +1,3 @@ +{"id": "e275f643c97ca1f4c7715635bb72cf02df928d06", "contents": "From Databases to Big Data\n"} +{"id": "bf003bb2d52304fea114d824bc0bf7bfbc7c3106", "contents": "Dissecting social engineering\n"} +{"id": "50bc77f3ec070940b1923b823503a4c2b09e9921", "contents": "PHANTOM: A Scalable BlockDAG Protocol\n"} diff --git a/tests/resources/simple_test_run_convert_trec_run_dpr.trec b/tests/resources/simple_test_run_convert_trec_run_dpr.trec new file mode 100644 index 0000000000000000000000000000000000000000..131350ad76813f3722a2a239a087871081f35920 --- /dev/null +++ b/tests/resources/simple_test_run_convert_trec_run_dpr.trec @@ -0,0 +1,2 @@ +0 Q0 doc3 1 15.218000 simple +1 Q0 doc7 1 12.150800 simple \ No newline at end of file diff --git a/tests/resources/simple_topics_dpr.txt b/tests/resources/simple_topics_dpr.txt new file mode 100644 index 0000000000000000000000000000000000000000..b18124dc020281fd91dba11d4ad284cd14913005 --- /dev/null +++ b/tests/resources/simple_topics_dpr.txt @@ -0,0 +1,2 @@ +what is in document three ['text'] +what is document two ['contents'] \ No newline at end of file diff --git a/tests/resources/simple_trec_run_average_verify.txt b/tests/resources/simple_trec_run_average_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7acf45a856de1b1a52a3d4d1e852c51e732640a --- /dev/null +++ b/tests/resources/simple_trec_run_average_verify.txt @@ -0,0 +1,4 @@ +1 Q0 pyeb86on 1 13.2 test +1 Q0 2054tkb7 2 7.15 test +2 Q0 hanxiao2 1 49.5 test +3 Q0 hanxiao2 1 1.65 test diff --git a/tests/resources/simple_trec_run_filter.txt b/tests/resources/simple_trec_run_filter.txt new file mode 100644 index 0000000000000000000000000000000000000000..30a78d144313377c98aa03aeea54f3ed248876e2 --- /dev/null +++ b/tests/resources/simple_trec_run_filter.txt @@ -0,0 +1,6 @@ +1 Q0 010vptx3 1 2.4 reciprocal_rank_fusion_k=60 +1 Q0 whati123 3 1.3 reciprocal_rank_fusion_k=60 +2 Q0 02f0opkr 1 4.1 reciprocal_rank_fusion_k=60 +2 Q0 sbnugd2g 2 3.3 reciprocal_rank_fusion_k=60 +3 Q0 hanxiao2 1 123 reciprocal_rank_fusion_k=60 +4 Q0 athjtu2j 1 561 reciprocal_rank_fusion_k=60 diff --git a/tests/resources/simple_trec_run_fusion_1.txt b/tests/resources/simple_trec_run_fusion_1.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6037a91df16bda2ed82ad4e12d42ec66bcf36f5 --- /dev/null +++ b/tests/resources/simple_trec_run_fusion_1.txt @@ -0,0 +1,3 @@ +1 Q0 pyeb86on 1 24 reciprocal_rank_fusion_k=60 +1 Q0 2054tkb7 2 13 reciprocal_rank_fusion_k=60 +2 Q0 hanxiao2 1 99 reciprocal_rank_fusion_k=60 diff --git a/tests/resources/simple_trec_run_fusion_2.txt b/tests/resources/simple_trec_run_fusion_2.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcc65c7f1a8c14b87602e5e78dcbc194a5a3b296 --- /dev/null +++ b/tests/resources/simple_trec_run_fusion_2.txt @@ -0,0 +1,3 @@ +1 Q0 pyeb86on 1 2.4 reciprocal_rank_fusion_k=60 +1 Q0 2054tkb7 3 1.3 reciprocal_rank_fusion_k=60 +3 Q0 hanxiao2 1 3.3 reciprocal_rank_fusion_k=60 diff --git a/tests/resources/simple_trec_run_interpolation_verify.txt b/tests/resources/simple_trec_run_interpolation_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..14738ad4d9e0fdc6448a0a242422c20955049fb8 --- /dev/null +++ b/tests/resources/simple_trec_run_interpolation_verify.txt @@ -0,0 +1,4 @@ +1 Q0 pyeb86on 1 11.040000000000001 test +1 Q0 2054tkb7 2 5.98 test +2 Q0 hanxiao2 1 39.6 test +3 Q0 hanxiao2 1 1.9799999999999998 test diff --git a/tests/resources/simple_trec_run_keep_verify.txt b/tests/resources/simple_trec_run_keep_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..46a35e5a2c7ea1fdaabe485c42069d6d3f41217d --- /dev/null +++ b/tests/resources/simple_trec_run_keep_verify.txt @@ -0,0 +1,3 @@ +1 Q0 010vptx3 1 2.4 reciprocal_rank_fusion_k=60 +2 Q0 sbnugd2g 2 3.3 reciprocal_rank_fusion_k=60 +4 Q0 athjtu2j 1 561.0 reciprocal_rank_fusion_k=60 diff --git a/tests/resources/simple_trec_run_msmarco_doc1.txt b/tests/resources/simple_trec_run_msmarco_doc1.txt new file mode 100644 index 0000000000000000000000000000000000000000..301408ce1a7753267856e425d321a4478205cec8 --- /dev/null +++ b/tests/resources/simple_trec_run_msmarco_doc1.txt @@ -0,0 +1,20 @@ +174249 Q0 D3126539 1 -5.99003 IndriQueryLikelihood +174249 Q0 D978773 2 -6.18444 IndriQueryLikelihood +174249 Q0 D399803 3 -6.20982 IndriQueryLikelihood +174249 Q0 D2204704 4 -6.24312 IndriQueryLikelihood +174249 Q0 D3126541 5 -6.24726 IndriQueryLikelihood +320792 Q0 D1138810 1 -4.9232 IndriQueryLikelihood +320792 Q0 D2390144 2 -4.95035 IndriQueryLikelihood +320792 Q0 D21859 3 -5.13558 IndriQueryLikelihood +320792 Q0 D372998 4 -5.26112 IndriQueryLikelihood +320792 Q0 D2031563 5 -5.27684 IndriQueryLikelihood +1090270 Q0 D342531 1 -5.49737 IndriQueryLikelihood +1090270 Q0 D313313 2 -5.77856 IndriQueryLikelihood +1090270 Q0 D75528 3 -6.00462 IndriQueryLikelihood +1090270 Q0 D2977007 4 -6.09276 IndriQueryLikelihood +1090270 Q0 D75525 5 -6.11605 IndriQueryLikelihood +1101279 Q0 D2858049 1 -5.44929 IndriQueryLikelihood +1101279 Q0 D3031912 2 -5.53813 IndriQueryLikelihood +1101279 Q0 D410011 3 -5.54634 IndriQueryLikelihood +1101279 Q0 D1249182 4 -5.5793 IndriQueryLikelihood +1101279 Q0 D653069 5 -5.59541 IndriQueryLikelihood diff --git a/tests/resources/simple_trec_run_normalize_verify.txt b/tests/resources/simple_trec_run_normalize_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..3cfa0d6398b8c7d1973898bb4e7543f786159228 --- /dev/null +++ b/tests/resources/simple_trec_run_normalize_verify.txt @@ -0,0 +1,3 @@ +1 Q0 pyeb86on 1 1.0 reciprocal_rank_fusion_k=60 +1 Q0 2054tkb7 2 0.0 reciprocal_rank_fusion_k=60 +2 Q0 hanxiao2 1 1.0 reciprocal_rank_fusion_k=60 diff --git a/tests/resources/simple_trec_run_read.txt b/tests/resources/simple_trec_run_read.txt new file mode 100644 index 0000000000000000000000000000000000000000..24aa0575ca1dfccaccad7ad730eea290272d8df9 --- /dev/null +++ b/tests/resources/simple_trec_run_read.txt @@ -0,0 +1,2 @@ +1 Q0 sqrn6kjy 1 0.0296312554872695 simple +35 Q0 ew9ghz53 1000 0.0013623978201634 simple diff --git a/tests/resources/simple_trec_run_read_verify.txt b/tests/resources/simple_trec_run_read_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..7da011c872a7ac738637979bacb75ad9c85ae277 --- /dev/null +++ b/tests/resources/simple_trec_run_read_verify.txt @@ -0,0 +1,2 @@ +1 Q0 sqrn6kjy 1 0.0296312554872695 simple +35 Q0 ew9ghz53 1000 0.0013623978201634 simple diff --git a/tests/resources/simple_trec_run_remove_verify.txt b/tests/resources/simple_trec_run_remove_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..405f4250e3023b97bc1a17c8a9c74155d3d620f6 --- /dev/null +++ b/tests/resources/simple_trec_run_remove_verify.txt @@ -0,0 +1,3 @@ +1 Q0 whati123 3 1.3 reciprocal_rank_fusion_k=60 +2 Q0 02f0opkr 1 4.1 reciprocal_rank_fusion_k=60 +3 Q0 hanxiao2 1 123.0 reciprocal_rank_fusion_k=60 diff --git a/tests/resources/simple_trec_run_rrf_verify.txt b/tests/resources/simple_trec_run_rrf_verify.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae365d90c42ec5d427a5598d6177ee6c43def4ff --- /dev/null +++ b/tests/resources/simple_trec_run_rrf_verify.txt @@ -0,0 +1,4 @@ +1 Q0 pyeb86on 1 0.03278688524590164 test +1 Q0 2054tkb7 2 0.03200204813108039 test +2 Q0 hanxiao2 1 0.01639344262295082 test +3 Q0 hanxiao2 1 0.01639344262295082 test diff --git a/tests/resources/simple_trec_run_unjudged_keep.txt b/tests/resources/simple_trec_run_unjudged_keep.txt new file mode 100644 index 0000000000000000000000000000000000000000..edaf0a6d3bada7d934f91607aff6d14148bfec7b --- /dev/null +++ b/tests/resources/simple_trec_run_unjudged_keep.txt @@ -0,0 +1,5 @@ +Results: +ndcg_cut_5 all 0.0848 +ndcg_cut_10 all 0.0550 +judged_5 all 0.5000 +judged_10 all 0.5000 diff --git a/tests/resources/simple_trec_run_unjudged_remove.txt b/tests/resources/simple_trec_run_unjudged_remove.txt new file mode 100644 index 0000000000000000000000000000000000000000..48a44c19029c12df822a3ba4c1849d87cf89bd17 --- /dev/null +++ b/tests/resources/simple_trec_run_unjudged_remove.txt @@ -0,0 +1,5 @@ +Results: +ndcg_cut_5 all 0.1131 +ndcg_cut_10 all 0.0734 +judged_5 all 1.0000 +judged_10 all 1.0000 diff --git a/tests/test_analysis.py b/tests/test_analysis.py new file mode 100644 index 0000000000000000000000000000000000000000..e4c7ea8df97e39fd63e31e0fdb634fa08df2ecff --- /dev/null +++ b/tests/test_analysis.py @@ -0,0 +1,118 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve + +from pyserini.analysis import JAnalyzer, JAnalyzerUtils, Analyzer, get_lucene_analyzer +from pyserini.index.lucene import IndexReader +from pyserini.search.lucene import LuceneSearcher + + +class TestAnalyzers(unittest.TestCase): + def setUp(self): + # Download pre-built CACM index built using Lucene 9; append a random value to avoid filename clashes. + r = randint(0, 10000000) + self.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene9-index.cacm.tar.gz' + self.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + self.index_dir = 'index{}/'.format(r) + + _, _ = urlretrieve(self.collection_url, self.tarball_name) + + tarball = tarfile.open(self.tarball_name) + tarball.extractall(self.index_dir) + tarball.close() + self.searcher = LuceneSearcher(f'{self.index_dir}lucene9-index.cacm') + self.index_utils = IndexReader(f'{self.index_dir}lucene9-index.cacm') + + def test_different_analyzers_are_different(self): + self.searcher.set_analyzer(get_lucene_analyzer(stemming=False)) + hits_first = self.searcher.search('information retrieval') + self.searcher.set_analyzer(get_lucene_analyzer()) + hits_second = self.searcher.search('information retrieval') + self.assertNotEqual(hits_first, hits_second) + + def test_analyze_with_analyzer(self): + analyzer = get_lucene_analyzer(stemming=False) + self.assertTrue(isinstance(analyzer, JAnalyzer)) + query = 'information retrieval' + only_tokenization = JAnalyzerUtils.analyze(analyzer, query) + token_list = [] + for token in only_tokenization.toArray(): + token_list.append(token) + self.assertEqual(token_list, ['information', 'retrieval']) + + def test_analysis(self): + # Default is Porter stemmer + analyzer = Analyzer(get_lucene_analyzer()) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('City buses are running on time.') + self.assertEqual(tokens, ['citi', 'buse', 'run', 'time']) + + # Specify Porter stemmer explicitly + analyzer = Analyzer(get_lucene_analyzer(stemmer='porter')) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('City buses are running on time.') + self.assertEqual(tokens, ['citi', 'buse', 'run', 'time']) + + # Specify Krovetz stemmer explicitly + analyzer = Analyzer(get_lucene_analyzer(stemmer='krovetz')) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('City buses are running on time.') + self.assertEqual(tokens, ['city', 'bus', 'running', 'time']) + + # No stemming + analyzer = Analyzer(get_lucene_analyzer(stemming=False)) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('City buses are running on time.') + self.assertEqual(tokens, ['city', 'buses', 'running', 'time']) + + # No stopword filter, no stemming + analyzer = Analyzer(get_lucene_analyzer(stemming=False, stopwords=False)) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('City buses are running on time.') + self.assertEqual(tokens, ['city', 'buses', 'are', 'running', 'on', 'time']) + + # No stopword filter, with stemming + analyzer = Analyzer(get_lucene_analyzer(stemming=True, stopwords=False)) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('City buses are running on time.') + self.assertEqual(tokens, ['citi', 'buse', 'ar', 'run', 'on', 'time']) + + # HuggingFace analyzer, with bert wordpiece tokenizer + analyzer = Analyzer(get_lucene_analyzer(language="hgf_tokenizer", huggingFaceTokenizer="bert-base-uncased")) + self.assertTrue(isinstance(analyzer, Analyzer)) + tokens = analyzer.analyze('This tokenizer generates wordpiece tokens') + self.assertEqual(tokens, ['this', 'token', '##izer', 'generates', 'word', '##piece', 'token', '##s']) + + def test_invalid_analyzer_wrapper(self): + # Invalid JAnalyzer, make sure we get an exception. + with self.assertRaises(TypeError): + Analyzer('str') + + def test_invalid_analysis(self): + # Invalid configuration, make sure we get an exception. + with self.assertRaises(ValueError): + Analyzer(get_lucene_analyzer('blah')) + + def tearDown(self): + self.searcher.close() + os.remove(self.tarball_name) + shutil.rmtree(self.index_dir) diff --git a/tests/test_analysis_lucene8.py b/tests/test_analysis_lucene8.py new file mode 100644 index 0000000000000000000000000000000000000000..25fb59b9ce166698f4c60f52f87134eb98ba740e --- /dev/null +++ b/tests/test_analysis_lucene8.py @@ -0,0 +1,56 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve + +from pyserini.analysis import get_lucene_analyzer +from pyserini.index.lucene import IndexReader +from pyserini.search.lucene import LuceneSearcher + + +class TestAnalyzersForLucene8(unittest.TestCase): + # This class contains the test cases from test_analysis that require Lucene 8 backwards compatibility. + def setUp(self): + # Download pre-built CACM index built using Lucene 8; append a random value to avoid filename clashes. + r = randint(0, 10000000) + self.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene8-index.cacm.tar.gz' + self.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + self.index_dir = 'index{}/'.format(r) + + _, _ = urlretrieve(self.collection_url, self.tarball_name) + + tarball = tarfile.open(self.tarball_name) + tarball.extractall(self.index_dir) + tarball.close() + self.searcher = LuceneSearcher(f'{self.index_dir}lucene-index.cacm') + self.index_utils = IndexReader(f'{self.index_dir}lucene-index.cacm') + + def test_different_analyzers_are_different(self): + self.searcher.set_analyzer(get_lucene_analyzer(stemming=False)) + hits_first = self.searcher.search('information retrieval') + self.searcher.set_analyzer(get_lucene_analyzer()) + hits_second = self.searcher.search('information retrieval') + self.assertNotEqual(hits_first, hits_second) + + def tearDown(self): + self.searcher.close() + os.remove(self.tarball_name) + shutil.rmtree(self.index_dir) diff --git a/tests/test_collection.py b/tests/test_collection.py new file mode 100644 index 0000000000000000000000000000000000000000..d7f93d4b0eb1c160d8ac6b4e948aae140e517d9d --- /dev/null +++ b/tests/test_collection.py @@ -0,0 +1,77 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve + +from pyserini import collection, index + + +class TestIterateCollection(unittest.TestCase): + + def test_cacm(self): + # We're going to append a random value to downloaded files: + r = randint(0, 10000000) + url = 'https://github.com/castorini/anserini/blob/master/src/main/resources/cacm/cacm.tar.gz?raw=true' + tarball_name = 'cacm{}.tar.gz'.format(r) + directory = 'collection{}/'.format(r) + + _, _ = urlretrieve(url, tarball_name) + + tarball = tarfile.open(tarball_name) + tarball.extractall(directory) + tarball.close() + + cacm = collection.Collection('HtmlCollection', directory) + generator = index.Generator('DefaultLuceneDocumentGenerator') + + cnt = 0 + for (i, fs) in enumerate(cacm): + for (j, doc) in enumerate(fs): + self.assertTrue(isinstance(doc, collection.SourceDocument)) + self.assertTrue(doc.raw is not None) + self.assertTrue(doc.raw != '') + self.assertTrue('' in doc.raw) + self.assertTrue(doc.contents is not None) + self.assertTrue(doc.contents != '') + self.assertTrue('' not in doc.contents) + + parsed = generator.create_document(doc) + docid = parsed.get('id') # FIELD_ID + raw = parsed.get('raw') # FIELD_RAW + contents = parsed.get('contents') # FIELD_BODY + self.assertTrue(docid != '') + self.assertTrue(raw is not None) + self.assertTrue(raw != '') + self.assertTrue('html' in raw) + self.assertTrue(contents is not None) + self.assertTrue(contents != '') + self.assertTrue('html' not in contents) + cnt += 1 + + self.assertEqual(cnt, 3204) + + # Clean up + os.remove(tarball_name) + shutil.rmtree(directory) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_encoder.py b/tests/test_encoder.py new file mode 100644 index 0000000000000000000000000000000000000000..0d400885c51c1b5fb0d498565e76da6994574825 --- /dev/null +++ b/tests/test_encoder.py @@ -0,0 +1,253 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os +import pathlib as pl +import shutil +import unittest + +import faiss + +from pyserini.encode import JsonlCollectionIterator, TctColBertDocumentEncoder, DprDocumentEncoder, \ + UniCoilDocumentEncoder + + +class TestSearch(unittest.TestCase): + def setUp(self): + self.docids = [] + self.texts = [] + self.test_file = 'tests/resources/simple_cacm_corpus.json' + + with open(self.test_file) as f: + for line in f: + line = json.loads(line) + self.docids.append(line['id']) + self.texts.append(line['contents']) + + def assertIsFile(self, path): + if not pl.Path(path).resolve().is_file(): + raise AssertionError("File does not exist: %s" % str(path)) + + def test_dpr_encoder(self): + encoder = DprDocumentEncoder('facebook/dpr-ctx_encoder-multiset-base', device='cpu') + vectors = encoder.encode(self.texts[:3]) + self.assertAlmostEqual(vectors[0][0], -0.59793323, places=4) + self.assertAlmostEqual(vectors[0][-1], -0.13036962, places=4) + self.assertAlmostEqual(vectors[2][0], -0.3044764, places=4) + self.assertAlmostEqual(vectors[2][-1], 0.1516793, places=4) + + def test_tct_colbert_encoder(self): + encoder = TctColBertDocumentEncoder('castorini/tct_colbert-msmarco', device='cpu') + vectors = encoder.encode(self.texts[:3]) + self.assertAlmostEqual(vectors[0][0], -0.01649557, places=4) + self.assertAlmostEqual(vectors[0][-1], -0.05648308, places=4) + self.assertAlmostEqual(vectors[2][0], -0.10293338, places=4) + self.assertAlmostEqual(vectors[2][-1], 0.05549275, places=4) + + def test_unicoil_encoder(self): + encoder = UniCoilDocumentEncoder('castorini/unicoil-msmarco-passage', device='cpu') + vectors = encoder.encode(self.texts[:3]) + self.assertAlmostEqual(vectors[0]['generation'], 2.2441017627716064, places=4) + self.assertAlmostEqual(vectors[0]['normal'], 2.4618067741394043, places=4) + self.assertAlmostEqual(vectors[2]['rounding'], 3.9474332332611084, places=4) + self.assertAlmostEqual(vectors[2]['commercial'], 3.288801670074463, places=4) + + def test_tct_colbert_v2_encoder_cmd(self): + index_dir = 'temp_index' + cmd = f'python -m pyserini.encode \ + input --corpus {self.test_file} \ + --fields text \ + output --embeddings {index_dir} \ + encoder --encoder castorini/tct_colbert-v2-hnp-msmarco \ + --fields text \ + --batch 1 \ + --device cpu' + status = os.system(cmd) + self.assertEqual(status, 0) + + embedding_json_fn = os.path.join(index_dir, 'embeddings.jsonl') + self.assertIsFile(embedding_json_fn) + + with open(embedding_json_fn) as f: + embeddings = [json.loads(line) for line in f] + + self.assertListEqual([entry["id"] for entry in embeddings], self.docids) + self.assertListEqual( + [entry["contents"] for entry in embeddings], + [entry.strip() for entry in self.texts], + ) + + self.assertAlmostEqual(embeddings[0]['vector'][0], 0.12679848074913025, places=4) + self.assertAlmostEqual(embeddings[0]['vector'][-1], -0.0037349488120526075, places=4) + self.assertAlmostEqual(embeddings[2]['vector'][0], 0.03678430616855621, places=4) + self.assertAlmostEqual(embeddings[2]['vector'][-1], 0.13209162652492523, places=4) + + shutil.rmtree(index_dir) + + def test_tct_colbert_v2_encoder_cmd_shard(self): + cleanup_list = [] + for shard_i in range(2): + index_dir = f'temp_index-{shard_i}' + cleanup_list.append(index_dir) + cmd = f'python -m pyserini.encode \ + input --corpus {self.test_file} \ + --fields text \ + --shard-id {shard_i} \ + --shard-num 2 \ + output --embeddings {index_dir} \ + --to-faiss \ + encoder --encoder castorini/tct_colbert-v2-hnp-msmarco \ + --fields text \ + --batch 1 \ + --device cpu' + status = os.system(cmd) + self.assertEqual(status, 0) + self.assertIsFile(os.path.join(index_dir, 'docid')) + self.assertIsFile(os.path.join(index_dir, 'index')) + + cmd = f'python -m pyserini.index.merge_faiss_indexes --prefix temp_index- --shard-num 2' + index_dir = 'temp_index-full' + cleanup_list.append(index_dir) + docid_fn = os.path.join(index_dir, 'docid') + index_fn = os.path.join(index_dir, 'index') + + status = os.system(cmd) + self.assertEqual(status, 0) + self.assertIsFile(docid_fn) + self.assertIsFile(index_fn) + + index = faiss.read_index(index_fn) + vectors = index.reconstruct_n(0, index.ntotal) + + with open(docid_fn) as f: + self.assertListEqual([docid.strip() for docid in f], self.docids) + + self.assertAlmostEqual(vectors[0][0], 0.12679848074913025, places=4) + self.assertAlmostEqual(vectors[0][-1], -0.0037349488120526075, places=4) + self.assertAlmostEqual(vectors[2][0], 0.03678430616855621, places=4) + self.assertAlmostEqual(vectors[2][-1], 0.13209162652492523, places=4) + + for index_dir in cleanup_list: + shutil.rmtree(index_dir) + + +class TestJsonlCollectionIterator(unittest.TestCase): + def setUp(self): + return + + def test_missing_fields(self): + json_fn = 'tests/resources/simple_scifact.jsonl' + all_expected_info = [ + ("e275f643c97ca1f4c7715635bb72cf02df928d06", "From Databases to Big Data", ""), + ("bf003bb2d52304fea114d824bc0bf7bfbc7c3106", "Dissecting social engineering", ""), + ("50bc77f3ec070940b1923b823503a4c2b09e9921", "PHANTOM: A Scalable BlockDAG Protocol", ""), + ] + collection_iterator = JsonlCollectionIterator(json_fn, ["title", "text"], delimiter="\n") + for i, info in enumerate(collection_iterator): + expected_info = all_expected_info[i] + + self.assertEqual(expected_info[0], info["id"][0]) + self.assertEqual(expected_info[1], info["title"][0]) + self.assertEqual(expected_info[2], info["text"][0]) + + def test_upper_lower_case(self): + json_fn = 'tests/resources/simple_cacm_corpus.json' + all_expected_info = [ + ("CACM-2636", + "Generation of Random Correlated Normal Variables (Algorithm R425) CACM June, 1974 Page, R. L. CA740610 JB January 17, 1978 2:57 PM 2636 5 2636 2636 5 2636 2636 5 2636"), + ("CACM-2274", + "Generating English Discourse from Semantic Networks A system is described for generating English sentences from a form of semantic nets in which the nodes are word-sense meanings and the paths are primarily deep case relations. The grammar used by the system is in the form of a network that imposes an ordering on a set of syntactic transformations that are expressed as LISP functions. The generation algorithm uses the information in the semantic network to select appropriate generation paths through the grammar. The system is designed for use as a computational tool that allows a linguist to develop and study methods for generating surface strings from an underlying semantic structure. Initial finding with regard to form determiners such as voice, form, tense, and mood, some rules for embedding sentences, and some attention to pronominal substitution are reported. The system is programmed in LISP 1.5 and is available from the authors. CACM October, 1972 Simmons, R. Slocum, J. semantic nets, grammars, deep case relations, semantic generation, discourse generation 3.42 3.65 CA721004 JB January 27, 1978 3:10 PM 2274 5 2274 2274 5 2274 2274 5 2274 2795 5 2274 1928 6 2274 1989 6 2274 2274 6 2274"), + ("CACM-0981", + "Rounding Problems in Commercial Data Processing A common requirement in commercial data processing is that the sum of a set of numbers, rounded in a generally understood manner, be equal to the sum of the numbers rounded individually. Four rounding procedures are described to accomplish this. The particular procedure that is appropriate depends upon whether the numbers being accumulated can vary in sign, whether their sum can vary in sign, and whether the last number being summed can be recognized as such prior to its rounding. CACM November, 1964 Kelley, T. B. CA641102 JB March 9, 1978 4:25 PM 981 5 981 981 5 981 981 5 981"), + ] + collection_iterator = JsonlCollectionIterator(json_fn, ["text"], delimiter="\n") + for i, info in enumerate(collection_iterator): + expected_info = all_expected_info[i] + + self.assertEqual(expected_info[0], info["id"][0]) + self.assertEqual(expected_info[1], info["text"][0]) + + def test_delimiter(self): + json_fn = 'tests/resources/simple_mrtydi_corpus.json' + all_expected_info = [ + ("arabic-7#0", "ماء", "الماء مادةٌ شفافةٌ عديمة اللون والرائحة، وهو المكوّن الأساسي للجداول والبحيرات والبحار والمحيطات وكذلك للسوائل في جميع الكائنات الحيّة، وهو أكثر المركّبات الكيميائيّة انتشاراً على سطح الأرض. يتألّف جزيء الماء من ذرّة أكسجين مركزية ترتبط بها ذرّتي هيدروجين برابطة تساهميّة لتكون صيغته H2O. عند الظروف القياسية من الضغط ودرجة الحرارة يكون الماء سائلاً، ولكنّ حالاته الأخرى شائعة الوجود أيضاً؛ وهي حالة الجليد الصلبة والبخار الغازيّة."), + ("bengali-608#0", "বাংলা ভাষা", "বাংলা ভাষা (/bɑːŋlɑː/; pronunciation) দক্ষিণ এশিয়ার বঙ্গ অঞ্চলের মানুষের স্থানীয় ভাষা, এই অঞ্চলটি বর্তমানে রাজনৈতিকভাবে স্বাধীন রাষ্ট্র বাংলাদেশ ও ভারতের অঙ্গরাজ্য পশ্চিমবঙ্গ নিয়ে গঠিত। এছাড়াও ভারতের ত্রিপুরা রাজ্য, অসম রাজ্যের বরাক উপত্যকা এবং আন্দামান দ্বীপপুঞ্জেও বাংলা ভাষাতে কথা বলা হয়। এই ভাষার লিপি হল বাংলা লিপি। এই অঞ্চলের প্রায় বাইশ কোটি স্থানীয় মানুষের ও পৃথিবীর মোট ৩০ কোটি মানুষের ভাষা হওয়ায়, এই ভাষা বিশ্বের সর্বাধিক প্রচলিত ভাষাগুলির মধ্যে চতুর্থ স্থান অধিকার করেছে।[1][4][5][6] বাংলাদেশ, ভারত ও শ্রীলঙ্কার জাতীয় সঙ্গীত, এবং ভারতের জাতীয় স্তোত্র এই ভাষাতেই রচিত এবং তা থেকেই দক্ষিণ এশিয়ায় এই ভাষার গুরুত্ব বোঝা যায়।"), + ("english-12#0", "Anarchism", "Anarchism is a political philosophy that advocates self-governed societies based on voluntary, cooperative institutions and the rejection of hierarchies those societies view as unjust. These institutions are often described as stateless societies, although several authors have defined them more specifically as institutions based on non-hierarchical or free associations. Anarchism holds capitalism, the state, and representative democracy to be undesirable, unnecessary, and harmful."), + ("finnish-1#0", "Amsterdam", "Amsterdam on Alankomaiden pääkaupunki. Amsterdam on väkiluvultaan Alankomaiden suurin kaupunki, huhtikuun alussa 2006 siellä asui 743 905 asukasta eli noin joka 20. hollantilainen asuu Amsterdamissa. Yhteensä Amsterdamissa ja sitä ympäröivällä kaupunkialueella asuu noin 1 450 000 ihmistä eli vajaa kymmenesosa Alankomaiden asukkaista. Amsterdam sijaitsee Amstelin suistossa IJsselmeerin rannalla Alankomaiden Pohjois-Hollannin provinssissa. Vaikka Amsterdam on Alankomaiden perustuslain mukaan maan pääkaupunki, sijaitsevat niin kuningashuone, hallitus, parlamentti kuin korkein oikeuskin Haagissa."), + ("indonesian-1#0", "Asam deoksiribonukleat", "Asam deoksiribonukleat, lebih dikenal dengan singkatan DNA (bahasa Inggris: deoxyribonucleic acid), adalah sejenis biomolekul yang menyimpan dan menyandi instruksi-instruksi genetika setiap organisme dan banyak jenis virus. Instruksi-instruksi genetika ini berperan penting dalam pertumbuhan, perkembangan, dan fungsi organisme dan virus. DNA merupakan asam nukleat; bersamaan dengan protein dan karbohidrat, asam nukleat adalah makromolekul esensial bagi seluruh makhluk hidup yang diketahui. Kebanyakan molekul DNA terdiri dari dua unting biopolimer yang berpilin satu sama lainnya membentuk heliks ganda. Dua unting DNA ini dikenal sebagai polinukleotida karena keduanya terdiri dari satuan-satuan molekul yang disebut nukleotida. Tiap-tiap nukleotida terdiri atas salah satu jenis basa nitrogen (guanina (G), adenina (A), timina (T), atau sitosina (C)), gula monosakarida yang disebut deoksiribosa, dan gugus fosfat. Nukleotida-nukelotida ini kemudian tersambung dalam satu rantai ikatan kovalen antara gula satu nukleotida dengan fosfat nukelotida lainnya. Hasilnya adalah rantai punggung gula-fosfat yang berselang-seling. Menurut kaidah pasangan basa (A dengan T dan C dengan G), ikatan hidrogen mengikat basa-basa dari kedua unting polinukleotida membentuk DNA unting ganda"), + ("japanese-5#0", "アンパサンド", "アンパサンド (&、英語名:) とは並立助詞「…と…」を意味する記号である。ラテン語の の合字で、Trebuchet MSフォントでは、と表示され \"et\" の合字であることが容易にわかる。ampersa、すなわち \"and per se and\"、その意味は\"and [the symbol which] by itself [is] and\"である。"), + ("korean-5#0", "지미 카터", "제임스 얼 \"지미\" 카터 주니어(, 1924년 10월 1일 ~ )는 민주당 출신 미국 39번째 대통령 (1977년 ~ 1981년)이다."), + ("russian-7#0", "Литва", "Литва́ (), официальное название — Лито́вская Респу́блика () — государство, расположенное в северо-восточной части Европы. Столица страны — Вильнюс."), + ("swahili-2#0", "Akiolojia", "Akiolojia (kutoka Kiyunani αρχαίος = \"zamani\" na λόγος = \"neno, usemi\") ni somo linalohusu mabaki ya tamaduni za watu wa nyakati zilizopita. Wanaakiolojia wanatafuta vitu vilivyobaki, kwa mfano kwa kuchimba ardhi na kutafuta mabaki ya majengo, makaburi, silaha, vifaa, vyombo na mifupa ya watu."), + ("telugu-786#0", "గుంటూరు జిల్లా", "గుంటూరు జిల్లా [1] 11,391 చ.కి.మీ. ల విస్తీర్ణములో వ్యాపించి, 48,89,230 (2011 గణన) జనాభా కలిగిఉన్నది. ఆగ్నేయాన బంగాళాఖాతము, దక్షిణాన ప్రకాశం జిల్లా, పశ్చిమాన మహబూబ్ నగర్ జిల్లా, మరియు వాయువ్యాన నల్గొండ జిల్లా సరిహద్దులుగా ఉన్నాయి. దీని ముఖ్యపట్టణం గుంటూరు"), + ("thai-1#0", "หน้าหลัก", "วิกิพีเดียดำเนินการโดยมูลนิธิวิกิมีเดีย องค์กรไม่แสวงผลกำไร ผู้ดำเนินการอีกหลาย ได้แก่"), + ] + delimiter = "\n\n" + collection_iterator = JsonlCollectionIterator(json_fn, ["title", "text"], delimiter=delimiter) + for i, info in enumerate(collection_iterator): + expected_info = all_expected_info[i] + + self.assertEqual(expected_info[0], info["id"][0]) + self.assertEqual(expected_info[1], info["title"][0]) + self.assertEqual(expected_info[2], info["text"][0]) + + def test_loading_field_key_jsonl(self): + """ + Test the jsonl file loading, where the keys are fields name rather than 'contents' + """ + json_fn = 'tests/resources/simple_cacm_corpus_fields_key.json' + all_expected_info = [ + ("CACM-2636", + "Generation of Random Correlated Normal Variables (Algorithm R425) CACM June, 1974 Page, R. L. CA740610 JB January 17, 1978 2:57 PM 2636 5 2636 2636 5 2636 2636 5 2636"), + ("CACM-2274", + "Generating English Discourse from Semantic Networks A system is described for generating English sentences from a form of semantic nets in which the nodes are word-sense meanings and the paths are primarily deep case relations. The grammar used by the system is in the form of a network that imposes an ordering on a set of syntactic transformations that are expressed as LISP functions. The generation algorithm uses the information in the semantic network to select appropriate generation paths through the grammar. The system is designed for use as a computational tool that allows a linguist to develop and study methods for generating surface strings from an underlying semantic structure. Initial finding with regard to form determiners such as voice, form, tense, and mood, some rules for embedding sentences, and some attention to pronominal substitution are reported. The system is programmed in LISP 1.5 and is available from the authors. CACM October, 1972 Simmons, R. Slocum, J. semantic nets, grammars, deep case relations, semantic generation, discourse generation 3.42 3.65 CA721004 JB January 27, 1978 3:10 PM 2274 5 2274 2274 5 2274 2274 5 2274 2795 5 2274 1928 6 2274 1989 6 2274 2274 6 2274"), + ("CACM-0981", + "Rounding Problems in Commercial Data Processing A common requirement in commercial data processing is that the sum of a set of numbers, rounded in a generally understood manner, be equal to the sum of the numbers rounded individually. Four rounding procedures are described to accomplish this. The particular procedure that is appropriate depends upon whether the numbers being accumulated can vary in sign, whether their sum can vary in sign, and whether the last number being summed can be recognized as such prior to its rounding. CACM November, 1964 Kelley, T. B. CA641102 JB March 9, 1978 4:25 PM 981 5 981 981 5 981 981 5 981"), + ] + collection_iterator = JsonlCollectionIterator(json_fn, ["text"], delimiter="\n") + for i, info in enumerate(collection_iterator): + expected_info = all_expected_info[i] + + self.assertEqual(expected_info[0], info["id"][0]) + self.assertEqual(expected_info[1], info["text"][0]) + + json_fn = 'tests/resources/simple_mrtydi_corpus_fields_key.json' + all_expected_info = [ + ("arabic-7#0", "ماء", "الماء مادةٌ شفافةٌ عديمة اللون والرائحة، وهو المكوّن الأساسي للجداول والبحيرات والبحار والمحيطات وكذلك للسوائل في جميع الكائنات الحيّة، وهو أكثر المركّبات الكيميائيّة انتشاراً على سطح الأرض. يتألّف جزيء الماء من ذرّة أكسجين مركزية ترتبط بها ذرّتي هيدروجين برابطة تساهميّة لتكون صيغته H2O. عند الظروف القياسية من الضغط ودرجة الحرارة يكون الماء سائلاً، ولكنّ حالاته الأخرى شائعة الوجود أيضاً؛ وهي حالة الجليد الصلبة والبخار الغازيّة."), + ("bengali-608#0", "বাংলা ভাষা", "বাংলা ভাষা (/bɑːŋlɑː/; pronunciation) দক্ষিণ এশিয়ার বঙ্গ অঞ্চলের মানুষের স্থানীয় ভাষা, এই অঞ্চলটি বর্তমানে রাজনৈতিকভাবে স্বাধীন রাষ্ট্র বাংলাদেশ ও ভারতের অঙ্গরাজ্য পশ্চিমবঙ্গ নিয়ে গঠিত। এছাড়াও ভারতের ত্রিপুরা রাজ্য, অসম রাজ্যের বরাক উপত্যকা এবং আন্দামান দ্বীপপুঞ্জেও বাংলা ভাষাতে কথা বলা হয়। এই ভাষার লিপি হল বাংলা লিপি। এই অঞ্চলের প্রায় বাইশ কোটি স্থানীয় মানুষের ও পৃথিবীর মোট ৩০ কোটি মানুষের ভাষা হওয়ায়, এই ভাষা বিশ্বের সর্বাধিক প্রচলিত ভাষাগুলির মধ্যে চতুর্থ স্থান অধিকার করেছে।[1][4][5][6] বাংলাদেশ, ভারত ও শ্রীলঙ্কার জাতীয় সঙ্গীত, এবং ভারতের জাতীয় স্তোত্র এই ভাষাতেই রচিত এবং তা থেকেই দক্ষিণ এশিয়ায় এই ভাষার গুরুত্ব বোঝা যায়।"), + ("english-12#0", "Anarchism", "Anarchism is a political philosophy that advocates self-governed societies based on voluntary, cooperative institutions and the rejection of hierarchies those societies view as unjust. These institutions are often described as stateless societies, although several authors have defined them more specifically as institutions based on non-hierarchical or free associations. Anarchism holds capitalism, the state, and representative democracy to be undesirable, unnecessary, and harmful."), + ("finnish-1#0", "Amsterdam", "Amsterdam on Alankomaiden pääkaupunki. Amsterdam on väkiluvultaan Alankomaiden suurin kaupunki, huhtikuun alussa 2006 siellä asui 743 905 asukasta eli noin joka 20. hollantilainen asuu Amsterdamissa. Yhteensä Amsterdamissa ja sitä ympäröivällä kaupunkialueella asuu noin 1 450 000 ihmistä eli vajaa kymmenesosa Alankomaiden asukkaista. Amsterdam sijaitsee Amstelin suistossa IJsselmeerin rannalla Alankomaiden Pohjois-Hollannin provinssissa. Vaikka Amsterdam on Alankomaiden perustuslain mukaan maan pääkaupunki, sijaitsevat niin kuningashuone, hallitus, parlamentti kuin korkein oikeuskin Haagissa."), + ("indonesian-1#0", "Asam deoksiribonukleat", "Asam deoksiribonukleat, lebih dikenal dengan singkatan DNA (bahasa Inggris: deoxyribonucleic acid), adalah sejenis biomolekul yang menyimpan dan menyandi instruksi-instruksi genetika setiap organisme dan banyak jenis virus. Instruksi-instruksi genetika ini berperan penting dalam pertumbuhan, perkembangan, dan fungsi organisme dan virus. DNA merupakan asam nukleat; bersamaan dengan protein dan karbohidrat, asam nukleat adalah makromolekul esensial bagi seluruh makhluk hidup yang diketahui. Kebanyakan molekul DNA terdiri dari dua unting biopolimer yang berpilin satu sama lainnya membentuk heliks ganda. Dua unting DNA ini dikenal sebagai polinukleotida karena keduanya terdiri dari satuan-satuan molekul yang disebut nukleotida. Tiap-tiap nukleotida terdiri atas salah satu jenis basa nitrogen (guanina (G), adenina (A), timina (T), atau sitosina (C)), gula monosakarida yang disebut deoksiribosa, dan gugus fosfat. Nukleotida-nukelotida ini kemudian tersambung dalam satu rantai ikatan kovalen antara gula satu nukleotida dengan fosfat nukelotida lainnya. Hasilnya adalah rantai punggung gula-fosfat yang berselang-seling. Menurut kaidah pasangan basa (A dengan T dan C dengan G), ikatan hidrogen mengikat basa-basa dari kedua unting polinukleotida membentuk DNA unting ganda"), + ("japanese-5#0", "アンパサンド", "アンパサンド (&、英語名:) とは並立助詞「…と…」を意味する記号である。ラテン語の の合字で、Trebuchet MSフォントでは、と表示され \"et\" の合字であることが容易にわかる。ampersa、すなわち \"and per se and\"、その意味は\"and [the symbol which] by itself [is] and\"である。"), + ("korean-5#0", "지미 카터", "제임스 얼 \"지미\" 카터 주니어(, 1924년 10월 1일 ~ )는 민주당 출신 미국 39번째 대통령 (1977년 ~ 1981년)이다."), + ("russian-7#0", "Литва", "Литва́ (), официальное название — Лито́вская Респу́блика () — государство, расположенное в северо-восточной части Европы. Столица страны — Вильнюс."), + ("swahili-2#0", "Akiolojia", "Akiolojia (kutoka Kiyunani αρχαίος = \"zamani\" na λόγος = \"neno, usemi\") ni somo linalohusu mabaki ya tamaduni za watu wa nyakati zilizopita. Wanaakiolojia wanatafuta vitu vilivyobaki, kwa mfano kwa kuchimba ardhi na kutafuta mabaki ya majengo, makaburi, silaha, vifaa, vyombo na mifupa ya watu."), + ("telugu-786#0", "గుంటూరు జిల్లా", "గుంటూరు జిల్లా [1] 11,391 చ.కి.మీ. ల విస్తీర్ణములో వ్యాపించి, 48,89,230 (2011 గణన) జనాభా కలిగిఉన్నది. ఆగ్నేయాన బంగాళాఖాతము, దక్షిణాన ప్రకాశం జిల్లా, పశ్చిమాన మహబూబ్ నగర్ జిల్లా, మరియు వాయువ్యాన నల్గొండ జిల్లా సరిహద్దులుగా ఉన్నాయి. దీని ముఖ్యపట్టణం గుంటూరు"), + ("thai-1#0", "หน้าหลัก", "วิกิพีเดียดำเนินการโดยมูลนิธิวิกิมีเดีย องค์กรไม่แสวงผลกำไร ผู้ดำเนินการอีกหลาย ได้แก่"), + ] + delimiter = "\n\n" + collection_iterator = JsonlCollectionIterator(json_fn, ["title", "text"], delimiter=delimiter) + for i, info in enumerate(collection_iterator): + expected_info = all_expected_info[i] + + self.assertEqual(expected_info[0], info["id"][0]) + self.assertEqual(expected_info[1], info["title"][0]) + self.assertEqual(expected_info[2], info["text"][0]) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_fusion.py b/tests/test_fusion.py new file mode 100644 index 0000000000000000000000000000000000000000..c6506d3911a3a909cfc1b27c74ff749353307f42 --- /dev/null +++ b/tests/test_fusion.py @@ -0,0 +1,75 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import filecmp +import os +import unittest + + +class TestSearch(unittest.TestCase): + def setUp(self): + self.output_path = 'output_test_fusion.txt' + + def test_reciprocal_rank_fusion_simple(self): + input_paths = ['tests/resources/simple_trec_run_fusion_1.txt', 'tests/resources/simple_trec_run_fusion_2.txt'] + verify_path = 'tests/resources/simple_trec_run_rrf_verify.txt' + + qruns_str = ' '.join(input_paths) + os.system( + f'python -m pyserini.fusion --method rrf --runs {qruns_str} --output {self.output_path} --runtag test') + self.assertTrue(filecmp.cmp(verify_path, self.output_path)) + + def test_interpolation_fusion_simple(self): + input_paths = ['tests/resources/simple_trec_run_fusion_1.txt', 'tests/resources/simple_trec_run_fusion_2.txt'] + verify_path = 'tests/resources/simple_trec_run_interpolation_verify.txt' + + qruns_str = ' '.join(input_paths) + os.system( + f'python -m pyserini.fusion --method interpolation --alpha 0.4 --runs {qruns_str} --output {self.output_path} --runtag test') + self.assertTrue(filecmp.cmp(verify_path, self.output_path)) + + def test_average_fusion_simple(self): + input_paths = ['tests/resources/simple_trec_run_fusion_1.txt', 'tests/resources/simple_trec_run_fusion_2.txt'] + verify_path = 'tests/resources/simple_trec_run_average_verify.txt' + + qruns_str = ' '.join(input_paths) + os.system( + f'python -m pyserini.fusion --method average --runs {qruns_str} --output {self.output_path} --runtag test') + self.assertTrue(filecmp.cmp(verify_path, self.output_path)) + + def test_reciprocal_rank_fusion_complex(self): + os.system('wget -q -nc https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round2/anserini.covid-r2.abstract.qq.bm25.txt.gz') + os.system('wget -q -nc https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round2/anserini.covid-r2.full-text.qq.bm25.txt.gz') + os.system('wget -q -nc https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round2/anserini.covid-r2.paragraph.qq.bm25.txt.gz') + os.system('wget -q -nc https://git.uwaterloo.ca/jimmylin/covidex-trec-covid-runs/raw/master/round2/anserini.covid-r2.fusion1.txt.gz') + os.system('gunzip -f anserini.covid-r2.*.txt.gz') + + txt_paths = ['anserini.covid-r2.abstract.qq.bm25.txt', + 'anserini.covid-r2.full-text.qq.bm25.txt', 'anserini.covid-r2.paragraph.qq.bm25.txt'] + + qruns_str = ' '.join(txt_paths) + os.system( + f'python -m pyserini.fusion --method rrf --runs {qruns_str} --output {self.output_path} --runtag reciprocal_rank_fusion_k=60') + verify_path = 'anserini.covid-r2.fusion1.txt' + self.assertTrue(filecmp.cmp(verify_path, self.output_path)) + os.system('rm anserini.covid-r2.*') + + def tearDown(self): + if os.path.exists(self.output_path): + os.remove(self.output_path) + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_index_download.py b/tests/test_index_download.py new file mode 100644 index 0000000000000000000000000000000000000000..3c76ba390a67379f6b1b0be1e0b35f67c14e4da0 --- /dev/null +++ b/tests/test_index_download.py @@ -0,0 +1,38 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import unittest + +from pyserini.search.lucene import LuceneSearcher + + +class TestIndexDownload(unittest.TestCase): + + def test_default_cache(self): + LuceneSearcher.from_prebuilt_index('cacm') + self.assertTrue(os.path.exists(os.path.expanduser('~/.cache/pyserini/indexes'))) + + def test_custom_cache(self): + os.environ['PYSERINI_CACHE'] = 'temp_dir' + LuceneSearcher.from_prebuilt_index('cacm') + self.assertTrue(os.path.exists('temp_dir/indexes')) + + def tearDown(self): + if os.path.exists('temp_dir'): + shutil.rmtree('temp_dir') + os.environ['PYSERINI_CACHE'] = '' diff --git a/tests/test_index_faiss.py b/tests/test_index_faiss.py new file mode 100644 index 0000000000000000000000000000000000000000..ce3f2be1b6f75b3fa5466dcb243dde0af7d82a2b --- /dev/null +++ b/tests/test_index_faiss.py @@ -0,0 +1,119 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os +import faiss +import shutil +import unittest +import pathlib as pl + + +class TestSearch(unittest.TestCase): + def setUp(self): + self.docids = [] + self.texts = [] + self.test_file = 'tests/resources/simple_cacm_corpus.json' + self.tmp_dir = "temp_dir" + + with open(self.test_file) as f: + for line in f: + line = json.loads(line) + self.docids.append(line['id']) + self.texts.append(line['contents']) + + def assertIsFile(self, path): + if not pl.Path(path).resolve().is_file(): + raise AssertionError("File does not exist: %s" % str(path)) + + def prepare_encoded_collection(self): + encoded_corpus_dir = f'{self.tmp_dir}/temp_index' + cmd = f'python -m pyserini.encode \ + input --corpus {self.test_file} \ + --fields text \ + output --embeddings {encoded_corpus_dir} \ + --to-faiss \ + encoder --encoder castorini/tct_colbert-v2-hnp-msmarco \ + --fields text \ + --max-length 512 \ + --batch 1 \ + --device cpu' + status = os.system(cmd) + self.assertEqual(status, 0) + self.assertIsFile(os.path.join(encoded_corpus_dir, 'docid')) + self.assertIsFile(os.path.join(encoded_corpus_dir, 'index')) + return encoded_corpus_dir + + def test_faiss_hnsw(self): + index_dir = f'{self.tmp_dir}/temp_hnsw' + encoded_corpus_dir = self.prepare_encoded_collection() + cmd = f'python -m pyserini.index.faiss \ + --input {encoded_corpus_dir} \ + --output {index_dir} \ + --M 3 \ + --hnsw' + + status = os.system(cmd) + self.assertEqual(status, 0) + + docid_fn = os.path.join(index_dir, 'docid') + index_fn = os.path.join(index_dir, 'index') + self.assertIsFile(docid_fn) + self.assertIsFile(index_fn) + + index = faiss.read_index(index_fn) + vectors = index.reconstruct_n(0, index.ntotal) + + with open(docid_fn) as f: + self.assertListEqual([docid.strip() for docid in f], self.docids) + + self.assertAlmostEqual(vectors[0][0], 0.12679848074913025, places=4) + self.assertAlmostEqual(vectors[0][-1], -0.0037349488120526075, places=4) + self.assertAlmostEqual(vectors[2][0], 0.03678430616855621, places=4) + self.assertAlmostEqual(vectors[2][-1], 0.13209162652492523, places=4) + + def test_faiss_pq(self): + index_dir = f'{self.tmp_dir}/temp_pq' + encoded_corpus_dir = self.prepare_encoded_collection() + cmd = f'python -m pyserini.index.faiss \ + --input {encoded_corpus_dir} \ + --output {index_dir} \ + --pq-m 3 \ + --efC 1 \ + --pq-nbits 128 \ + --pq' + + status = os.system(cmd) + self.assertEqual(status, 0) + + docid_fn = os.path.join(index_dir, 'docid') + index_fn = os.path.join(index_dir, 'index') + self.assertIsFile(docid_fn) + self.assertIsFile(index_fn) + + index = faiss.read_index(index_fn) + vectors = index.reconstruct_n(0, index.ntotal) + + with open(docid_fn) as f: + self.assertListEqual([docid.strip() for docid in f], self.docids) + + self.assertAlmostEqual(vectors[0][0], 0.04343192, places=4) + self.assertAlmostEqual(vectors[0][-1], 0.075478144, places=4) + self.assertAlmostEqual(vectors[2][0], 0.04343192, places=4) + self.assertAlmostEqual(vectors[2][-1], 0.075478144, places=4) + + def tearDown(self): + shutil.rmtree(self.tmp_dir) \ No newline at end of file diff --git a/tests/test_index_otf.py b/tests/test_index_otf.py new file mode 100644 index 0000000000000000000000000000000000000000..1246a76193bdadd5d4c330aff93be4e033d6f484 --- /dev/null +++ b/tests/test_index_otf.py @@ -0,0 +1,284 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import unittest +from typing import List + +from pyserini.index.lucene import LuceneIndexer, IndexReader, JacksonObjectMapper +from pyserini.search.lucene import JLuceneSearcherResult, LuceneSearcher + + +class TestSearch(unittest.TestCase): + def setUp(self): + self.docs = [] + self.tmp_dir = "temp_dir" + + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('tests'): + self.test_file = '../tests/resources/simple_cacm_corpus.json' + else: + self.test_file = 'tests/resources/simple_cacm_corpus.json' + + def test_indexer(self): + indexer = LuceneIndexer(self.tmp_dir) + + with open(self.test_file) as f: + for doc in f: + indexer.add_doc_raw(doc) + + indexer.close() + + searcher = LuceneSearcher(self.tmp_dir) + self.assertEqual(3, searcher.num_docs) + + hits = searcher.search('semantic networks') + + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(1, len(hits)) + self.assertEqual('CACM-2274', hits[0].docid) + self.assertAlmostEqual(1.53650, hits[0].score, places=5) + + def test_indexer_batch1(self): + batch = [] + with open(self.test_file) as f: + for doc in f: + batch.append(doc) + + # Test different ways to initialize indexer. + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_batch_raw(batch) + indexer.close() + + searcher = LuceneSearcher(self.tmp_dir) + self.assertEqual(3, searcher.num_docs) + + hits = searcher.search('semantic networks') + + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(1, len(hits)) + self.assertEqual('CACM-2274', hits[0].docid) + self.assertAlmostEqual(1.53650, hits[0].score, places=5) + + # Test different ways to initialize indexer. + indexer = LuceneIndexer(self.tmp_dir, threads=2) + indexer.add_batch_raw(batch) + indexer.close() + + searcher = LuceneSearcher(self.tmp_dir) + self.assertEqual(3, searcher.num_docs) + + hits = searcher.search('semantic networks') + + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(1, len(hits)) + self.assertEqual('CACM-2274', hits[0].docid) + self.assertAlmostEqual(1.53650, hits[0].score, places=5) + + # Test different ways to initialize indexer. + indexer = LuceneIndexer(self.tmp_dir, threads=4) + indexer.add_batch_raw(batch) + indexer.close() + + searcher = LuceneSearcher(self.tmp_dir) + self.assertEqual(3, searcher.num_docs) + + hits = searcher.search('semantic networks') + + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(1, len(hits)) + self.assertEqual('CACM-2274', hits[0].docid) + self.assertAlmostEqual(1.53650, hits[0].score, places=5) + + # Test different ways to initialize indexer + indexer = LuceneIndexer(args=['-index', self.tmp_dir, '-threads', '4']) + indexer.add_batch_raw(batch) + indexer.close() + + searcher = LuceneSearcher(self.tmp_dir) + self.assertEqual(3, searcher.num_docs) + + hits = searcher.search('semantic networks') + + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(1, len(hits)) + self.assertEqual('CACM-2274', hits[0].docid) + self.assertAlmostEqual(1.53650, hits[0].score, places=5) + + def test_indexer_with_args(self): + indexer = LuceneIndexer(args=['-index', self.tmp_dir, '-pretokenized']) + + with open(self.test_file) as f: + for doc in f: + indexer.add_doc_raw(doc) + + indexer.close() + + searcher = LuceneSearcher(self.tmp_dir) + self.assertEqual(3, searcher.num_docs) + + hits = searcher.search('semantic networks') + + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(1, len(hits)) + self.assertEqual('CACM-2274', hits[0].docid) + self.assertAlmostEqual(0.62610, hits[0].score, places=5) + + def test_indexer_append1(self): + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_doc_raw('{"id": "0", "contents": "Document 0"}') + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(1, stats['documents']) + self.assertIsNotNone(reader.doc('0')) + + indexer = LuceneIndexer(self.tmp_dir, append=True) + indexer.add_doc_raw('{"id": "1", "contents": "Document 1"}') + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('0')) + self.assertIsNotNone(reader.doc('1')) + + def test_indexer_append2(self): + # Make sure it's okay if we append to an empty index. + indexer = LuceneIndexer(self.tmp_dir, append=True) + indexer.add_doc_raw('{"id": "0", "contents": "Document 0"}') + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(1, stats['documents']) + self.assertIsNotNone(reader.doc('0')) + + # Confirm that we are overwriting. + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_doc_raw('{"id": "1", "contents": "Document 1"}') + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(1, stats['documents']) + self.assertIsNone(reader.doc('0')) + self.assertIsNotNone(reader.doc('1')) + + # Now we're appending. + indexer = LuceneIndexer(self.tmp_dir, append=True) + indexer.add_doc_raw('{"id": "x", "contents": "Document x"}') + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNone(reader.doc('0')) + self.assertIsNotNone(reader.doc('1')) + self.assertIsNotNone(reader.doc('x')) + + def test_indexer_type_raw(self): + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_doc_raw('{"id": "doc0", "contents": "document 0 contents"}') + indexer.add_doc_raw('{"id": "doc1", "contents": "document 1 contents"}') + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('doc0')) + self.assertIsNotNone(reader.doc('doc1')) + + def test_indexer_type_raw_batch(self): + batch = ['{"id": "doc0", "contents": "document 0 contents"}', + '{"id": "doc1", "contents": "document 1 contents"}'] + + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_batch_raw(batch) + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('doc0')) + self.assertIsNotNone(reader.doc('doc1')) + + def test_indexer_type_dict(self): + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_doc_dict({'id': 'doc0', 'contents': 'document 0 contents'}) + indexer.add_doc_dict({'id': 'doc1', 'contents': 'document 1 contents'}) + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('doc0')) + self.assertIsNotNone(reader.doc('doc1')) + + def test_indexer_type_dict_batch(self): + batch = [{'id': 'doc0', 'contents': 'document 0 contents'}, + {'id': 'doc1', 'contents': 'document 1 contents'}] + + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_batch_dict(batch) + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('doc0')) + self.assertIsNotNone(reader.doc('doc1')) + + def test_indexer_type_json(self): + mapper = JacksonObjectMapper() + + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_doc_json(mapper.createObjectNode().put('id', 'doc0').put('contents', 'document 0 contents')) + indexer.add_doc_json(mapper.createObjectNode().put('id', 'doc1').put('contents', 'document 1 contents')) + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('doc0')) + self.assertIsNotNone(reader.doc('doc1')) + + def test_indexer_type_json_batch(self): + mapper = JacksonObjectMapper() + batch = [mapper.createObjectNode().put('id', 'doc0').put('contents', 'document 0 contents'), + mapper.createObjectNode().put('id', 'doc1').put('contents', 'document 1 contents')] + + indexer = LuceneIndexer(self.tmp_dir) + indexer.add_batch_json(batch) + indexer.close() + + reader = IndexReader(self.tmp_dir) + stats = reader.stats() + self.assertEqual(2, stats['documents']) + self.assertIsNotNone(reader.doc('doc0')) + self.assertIsNotNone(reader.doc('doc1')) + + def tearDown(self): + shutil.rmtree(self.tmp_dir) diff --git a/tests/test_index_reader.py b/tests/test_index_reader.py new file mode 100644 index 0000000000000000000000000000000000000000..76b51d829bdeb67d9b66af2bc1d9e7f41d6c8ac7 --- /dev/null +++ b/tests/test_index_reader.py @@ -0,0 +1,509 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve +import json +import heapq + +from sklearn.linear_model import LogisticRegression +from sklearn.naive_bayes import MultinomialNB + +from pyserini import analysis, search +from pyserini.index.lucene import IndexReader +from pyserini.pyclass import JString +from pyserini.vectorizer import BM25Vectorizer, TfidfVectorizer + + +class TestIndexUtils(unittest.TestCase): + def setUp(self): + # Download pre-built CACM index built using Lucene 9; append a random value to avoid filename clashes. + r = randint(0, 10000000) + self.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene9-index.cacm.tar.gz' + self.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + self.index_dir = 'index{}/'.format(r) + + _, _ = urlretrieve(self.collection_url, self.tarball_name) + + tarball = tarfile.open(self.tarball_name) + tarball.extractall(self.index_dir) + tarball.close() + + self.index_path = os.path.join(self.index_dir, 'lucene9-index.cacm') + self.searcher = search.LuceneSearcher(self.index_path) + self.index_reader = IndexReader(self.index_path) + + self.temp_folders = [] + + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('tests'): + self.emoji_corpus_path = '../tests/resources/sample_collection_json_emoji' + else: + self.emoji_corpus_path = 'tests/resources/sample_collection_json_emoji' + + # See https://github.com/castorini/pyserini/issues/770 + # tldr -- a longstanding issue about whether we need the `encode` in `JString(my_str.encode('utf-8'))`. + # As it turns out, the solution is to remove the `JString` wrapping, which also has performance benefits as well. + # See: + # - https://github.com/castorini/pyserini/pull/862 + # - https://github.com/castorini/pyserini/issues/841 + def test_doc_vector_emoji_test(self): + index_dir = 'temp_index' + self.temp_folders.append(index_dir) + cmd1 = f'python -m pyserini.index.lucene -collection JsonCollection ' + \ + f'-generator DefaultLuceneDocumentGenerator ' + \ + f'-threads 1 -input {self.emoji_corpus_path} -index {index_dir} -storeDocvectors' + _ = os.system(cmd1) + temp_index_reader = IndexReader(index_dir) + + df, cf = temp_index_reader.get_term_counts('emoji') + self.assertEqual(df, 1) + self.assertEqual(cf, 1) + + df, cf = temp_index_reader.get_term_counts('🙂') + self.assertEqual(df, 1) + self.assertEqual(cf, 1) + + doc_vector = temp_index_reader.get_document_vector('doc1') + self.assertEqual(doc_vector['emoji'], 1) + self.assertEqual(doc_vector['🙂'], 1) + self.assertEqual(doc_vector['😀'], 1) + + def test_tfidf_vectorizer_train(self): + vectorizer = TfidfVectorizer(self.index_path, min_df=5) + train_docs = ['CACM-0239', 'CACM-0440', 'CACM-3168', 'CACM-3169'] + train_labels = [1, 1, 0, 0] + test_docs = ['CACM-0634', 'CACM-3134'] + train_vectors = vectorizer.get_vectors(train_docs) + test_vectors = vectorizer.get_vectors(test_docs) + clf = MultinomialNB() + clf.fit(train_vectors, train_labels) + pred = clf.predict_proba(test_vectors) + self.assertAlmostEqual(0.49975694, pred[0][0], places=8) + self.assertAlmostEqual(0.50024306, pred[0][1], places=8) + self.assertAlmostEqual(0.51837413, pred[1][0], places=8) + self.assertAlmostEqual(0.48162587, pred[1][1], places=8) + + def test_bm25_vectorizer_train(self): + vectorizer = BM25Vectorizer(self.index_path, min_df=5) + train_docs = ['CACM-0239', 'CACM-0440', 'CACM-3168', 'CACM-3169'] + train_labels = [1, 1, 0, 0] + test_docs = ['CACM-0634', 'CACM-3134'] + train_vectors = vectorizer.get_vectors(train_docs) + test_vectors = vectorizer.get_vectors(test_docs) + clf = LogisticRegression() + clf.fit(train_vectors, train_labels) + pred = clf.predict_proba(test_vectors) + self.assertAlmostEqual(0.4629749, pred[0][0], places=8) + self.assertAlmostEqual(0.5370251, pred[0][1], places=8) + self.assertAlmostEqual(0.48288416, pred[1][0], places=8) + self.assertAlmostEqual(0.51711584, pred[1][1], places=8) + + def test_tfidf_vectorizer(self): + vectorizer = TfidfVectorizer(self.index_path, min_df=5) + result = vectorizer.get_vectors(['CACM-0239', 'CACM-0440'], norm=None) + self.assertAlmostEqual(result[0, 190], 2.907369334264736, places=8) + self.assertAlmostEqual(result[1, 391], 0.07516490235060004, places=8) + + def test_bm25_vectorizer(self): + vectorizer = BM25Vectorizer(self.index_path, min_df=5) + result = vectorizer.get_vectors(['CACM-0239', 'CACM-0440'], norm=None) + self.assertAlmostEqual(result[0, 190], 1.7513844966888428, places=8) + self.assertAlmostEqual(result[1, 391], 0.03765463829040527, places=8) + + def test_vectorizer_query(self): + vectorizer = BM25Vectorizer(self.index_path, min_df=5) + result = vectorizer.get_query_vector('this is a query to test query vector') + self.assertEqual(result[0, 2703], 2) + self.assertEqual(result[0, 3078], 1) + self.assertEqual(result[0, 3204], 1) + + def test_terms_count(self): + # We're going to iterate through the index and make sure we have the correct number of terms. + self.assertEqual(sum(1 for x in self.index_reader.terms()), 14363) + + def test_terms_contents(self): + # We're going to examine the first two index terms to make sure the statistics are correct. + iterator = self.index_reader.terms() + index_term = next(iterator) + self.assertEqual(index_term.term, '0') + self.assertEqual(index_term.df, 19) + self.assertEqual(index_term.cf, 30) + + index_term = next(iterator) + self.assertEqual(index_term.term, '0,1') + self.assertEqual(index_term.df, 1) + self.assertEqual(index_term.cf, 1) + + def test_analyze(self): + self.assertEqual(' '.join(self.index_reader.analyze('retrieval')), 'retriev') + self.assertEqual(' '.join(self.index_reader.analyze('rapid retrieval, space economy')), + 'rapid retriev space economi') + tokenizer = analysis.get_lucene_analyzer(stemming=False) + self.assertEqual(' '.join(self.index_reader.analyze('retrieval', analyzer=tokenizer)), 'retrieval') + self.assertEqual(' '.join(self.index_reader.analyze('rapid retrieval, space economy', analyzer=tokenizer)), + 'rapid retrieval space economy') + # Test utf encoding: + self.assertEqual(self.index_reader.analyze('zoölogy')[0], 'zoölog') + self.assertEqual(self.index_reader.analyze('zoölogy', analyzer=tokenizer)[0], 'zoölogy') + + def test_term_stats(self): + df, cf = self.index_reader.get_term_counts('retrieval') + self.assertEqual(df, 138) + self.assertEqual(cf, 275) + + df, cf = self.index_reader.get_term_counts('information retrieval') + self.assertEqual(df, 74) + self.assertEqual(cf, None) + + df_no_stem, cf_no_stem = self.index_reader.get_term_counts('retrieval', analyzer=None) + # 'retrieval' does not occur as a stemmed word, only 'retriev' does. + self.assertEqual(df_no_stem, 0) + self.assertEqual(cf_no_stem, 0) + + df_no_stopword, cf_no_stopword = self.index_reader.get_term_counts('on', analyzer=None) + self.assertEqual(df_no_stopword, 326) + self.assertEqual(cf_no_stopword, 443) + + # Should gracefully handle non-existent term. + df, cf = self.index_reader.get_term_counts('sdgsc') + self.assertEqual(df, 0) + self.assertEqual(cf, 0) + + def test_postings1(self): + term = 'retrieval' + postings = list(self.index_reader.get_postings_list(term)) + self.assertEqual(len(postings), 138) + + self.assertEqual(postings[0].docid, 238) + self.assertEqual(self.index_reader.convert_internal_docid_to_collection_docid(postings[0].docid), 'CACM-0239') + self.assertEqual(postings[0].tf, 1) + self.assertEqual(len(postings[0].positions), 1) + + self.assertEqual(postings[-1].docid, 3168) + self.assertEqual(self.index_reader.convert_internal_docid_to_collection_docid(postings[-1].docid), 'CACM-3169') + self.assertEqual(postings[-1].tf, 1) + self.assertEqual(len(postings[-1].positions), 1) + + def test_postings2(self): + self.assertIsNone(self.index_reader.get_postings_list('asdf')) + + postings = list(self.index_reader.get_postings_list('retrieval')) + self.assertEqual(len(postings), 138) + + # If we don't analyze, then we can't find the postings list: + self.assertIsNone(self.index_reader.get_postings_list('retrieval', analyzer=None)) + + # Supply the analyzed form directly, and we're good: + postings = list(self.index_reader.get_postings_list('retriev', analyzer=None)) + self.assertEqual(len(postings), 138) + postings = list(self.index_reader.get_postings_list(self.index_reader.analyze('retrieval')[0], analyzer=None)) + self.assertEqual(len(postings), 138) + + # Test utf encoding: + self.assertEqual(self.index_reader.get_postings_list('zoölogy'), None) + self.assertEqual(self.index_reader.get_postings_list('zoölogy', analyzer=None), None) + self.assertEqual(self.index_reader.get_postings_list('zoölogy'), None) + + def test_doc_vector(self): + doc_vector = self.index_reader.get_document_vector('CACM-3134') + self.assertEqual(len(doc_vector), 94) + self.assertEqual(doc_vector['inform'], 8) + self.assertEqual(doc_vector['retriev'], 7) + + def test_doc_vector_invalid(self): + self.assertTrue(self.index_reader.get_document_vector('foo') is None) + + def test_doc_vector_matches_index(self): + # From the document vector, look up the term frequency of "information". + doc_vector = self.index_reader.get_document_vector('CACM-3134') + self.assertEqual(doc_vector['inform'], 8) + + # Now look up the postings list for "information". + term = 'information' + postings_list = list(self.index_reader.get_postings_list(term)) + + for i in range(len(postings_list)): + # Go through the postings and find the matching document. + if self.index_reader.convert_internal_docid_to_collection_docid(postings_list[i].docid) == 'CACM-3134': + # The tf values should match. + self.assertEqual(postings_list[i].tf, 8) + + def test_term_position(self): + term_positions = self.index_reader.get_term_positions('CACM-3134') + self.assertEqual(len(term_positions), 94) + self.assertEqual(term_positions['inform'], [7,24,36,46,60,112,121,159]) + self.assertEqual(term_positions['retriev'], [10,20,44,132,160,164,172]) + + def test_term_position_invalid(self): + self.assertTrue(self.index_reader.get_term_positions('foo') is None) + + def test_term_position_matches_index(self): + # From the term positions mapping, look up the position list of "information". + term_positions = self.index_reader.get_term_positions('CACM-3134') + self.assertEqual(term_positions['inform'], [7,24,36,46,60,112,121,159]) + + # Now look up the postings list for "information". + term = 'information' + postings_list = list(self.index_reader.get_postings_list(term)) + + for i in range(len(postings_list)): + # Go through the postings and find the matching document. + if self.index_reader.convert_internal_docid_to_collection_docid(postings_list[i].docid) == 'CACM-3134': + # The position list should match. + self.assertEqual(postings_list[i].positions, [7, 24, 36, 46, 60, 112, 121, 159]) + + def test_doc_invalid(self): + self.assertTrue(self.index_reader.doc('foo') is None) + self.assertTrue(self.index_reader.doc_contents('foo') is None) + self.assertTrue(self.index_reader.doc_raw('foo') is None) + self.assertTrue(self.index_reader.doc_by_field('foo', 'bar') is None) + + def test_doc_raw(self): + raw = self.index_reader.doc('CACM-3134').raw() + self.assertTrue(isinstance(raw, str)) + lines = raw.splitlines() + self.assertEqual(len(lines), 55) + # Note that the raw document contents will still have HTML tags. + self.assertEqual(lines[0], '') + self.assertEqual(lines[4], 'The Use of Normal Multiplication Tables') + self.assertEqual(lines[29], 'rapid retrieval, space economy') + + # Now that we've verified the 'raw', check that alternative ways of fetching give the same results. + self.assertEqual(raw, self.index_reader.doc_raw('CACM-3134')) + self.assertEqual(raw, self.index_reader.doc('CACM-3134').raw()) + self.assertEqual(raw, self.index_reader.doc('CACM-3134').get('raw')) + self.assertEqual(raw, self.index_reader.doc('CACM-3134').lucene_document().get('raw')) + + def test_doc_contents(self): + contents = self.index_reader.doc('CACM-3134').contents() + self.assertTrue(isinstance(contents, str)) + lines = contents.splitlines() + self.assertEqual(len(lines), 48) + self.assertEqual(lines[0], 'The Use of Normal Multiplication Tables') + self.assertEqual(lines[47], '3134\t5\t3134') + + # Now that we've verified the 'raw', check that alternative ways of fetching give the same results. + self.assertEqual(contents, self.index_reader.doc_contents('CACM-3134')) + self.assertEqual(contents, self.index_reader.doc('CACM-3134').contents()) + self.assertEqual(contents, self.index_reader.doc('CACM-3134').get('contents')) + self.assertEqual(contents, self.index_reader.doc('CACM-3134').lucene_document().get('contents')) + + def test_doc_by_field(self): + self.assertEqual(self.index_reader.doc('CACM-3134').docid(), + self.index_reader.doc_by_field('id', 'CACM-3134').docid()) + + def test_bm25_weight(self): + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'inform', analyzer=None, k1=1.2, b=0.75), + 1.925014, places=5) + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'information', k1=1.2, b=0.75), + 1.925014, places=5) + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'retriev', analyzer=None, k1=1.2, b=0.75), + 2.496352, places=5) + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'retrieval', k1=1.2, b=0.75), + 2.496352, places=5) + + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'inform', analyzer=None), + 2.06514, places=5) + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'information'), + 2.06514, places=5) + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'retriev', analyzer=None), + 2.70038, places=5) + self.assertAlmostEqual( + self.index_reader.compute_bm25_term_weight('CACM-3134', 'retrieval'), + 2.70038, places=5) + + self.assertAlmostEqual(self.index_reader.compute_bm25_term_weight('CACM-3134', 'fox', analyzer=None), + 0., places=5) + self.assertAlmostEqual(self.index_reader.compute_bm25_term_weight('CACM-3134', 'fox'), 0., places=5) + + def test_docid_converstion(self): + self.assertEqual(self.index_reader.convert_internal_docid_to_collection_docid(1), 'CACM-0002') + self.assertEqual(self.index_reader.convert_collection_docid_to_internal_docid('CACM-0002'), 1) + self.assertEqual(self.index_reader.convert_internal_docid_to_collection_docid(1000), 'CACM-1001') + self.assertEqual(self.index_reader.convert_collection_docid_to_internal_docid('CACM-1001'), 1000) + + def test_query_doc_score_default(self): + queries = ['information retrieval', 'databases'] + + for query in queries: + hits = self.searcher.search(query) + + # We're going to verify that the score of each hit is about the same as the output of + # compute_query_document_score + for i in range(0, len(hits)): + self.assertAlmostEqual(hits[i].score, + self.index_reader.compute_query_document_score(hits[i].docid, query), places=4) + + def test_query_doc_score_custom_similarity(self): + custom_bm25 = search.LuceneSimilarities.bm25(0.8, 0.2) + queries = ['information retrieval', 'databases'] + self.searcher.set_bm25(0.8, 0.2) + + for query in queries: + hits = self.searcher.search(query) + + # We're going to verify that the score of each hit is about the same as the output of + # compute_query_document_score + for i in range(0, len(hits)): + self.assertAlmostEqual(hits[i].score, + self.index_reader.compute_query_document_score( + hits[i].docid, query, similarity=custom_bm25), places=4) + + custom_qld = search.LuceneSimilarities.qld(500) + self.searcher.set_qld(500) + + for query in queries: + hits = self.searcher.search(query) + + # We're going to verify that the score of each hit is about the same as the output of + # compute_query_document_score + for i in range(0, len(hits)): + self.assertAlmostEqual(hits[i].score, + self.index_reader.compute_query_document_score( + hits[i].docid, query, similarity=custom_qld), places=4) + + def test_index_stats(self): + self.assertEqual(3204, self.index_reader.stats()['documents']) + self.assertEqual(14363, self.index_reader.stats()['unique_terms']) + + def test_jstring_encoding(self): + # When using pyjnius in a version prior 1.3.0, creating a JString with non-ASCII characters resulted in a + # failure. This test simply ensures that a compatible version of pyjnius is used. More details can be found in + # the discussion here: https://github.com/castorini/pyserini/issues/770 + JString('zoölogy') + + def test_dump_documents_BM25(self): + file_path = 'collections/cacm_documents_bm25_dump.jsonl' + self.index_reader.dump_documents_BM25(file_path) + dump_file = open(file_path, 'r') + + num_lines = sum(1 for line in dump_file) + dump_file.seek(0) + assert num_lines == self.index_reader.stats()['documents'] + + def compare_searcher(query): + """Comparing searching with LuceneSearcher to brute-force searching through documents in dump + The scores should match. + + Parameters + ---------- + query : str + The query for search. + """ + # Search through documents BM25 dump + query_terms = self.index_reader.analyze(query, analyzer=analysis.get_lucene_analyzer()) + heap = [] # heapq implements a min-heap, we can invert the values to have a max-heap + + for line in dump_file: + doc = json.loads(line) + score = 0 + for term in query_terms: + if term in doc['vector']: + score += doc['vector'][term] + heapq.heappush(heap, (-1*score, doc['id'])) + dump_file.seek(0) + + # Using LuceneSearcher instead + hits = self.searcher.search(query) + + for i in range(0, 10): + top = heapq.heappop(heap) + self.assertEqual(hits[i].docid, top[1]) + self.assertAlmostEqual(hits[i].score, -1*top[0], places=3) + + compare_searcher('I am interested in articles written either by Prieve or Udo Pooch') + compare_searcher('Performance evaluation and modelling of computer systems') + compare_searcher('Addressing schemes for resources in networks; resource addressing in network operating systems') + + dump_file.close() + os.remove(file_path) + + def test_quantize_weights(self): + dump_file_path = 'collections/cacm_documents_bm25_dump.jsonl' + quantized_file_path = 'collections/cacm_documents_bm25_dump_quantized.jsonl' + self.index_reader.dump_documents_BM25(dump_file_path) + self.index_reader.quantize_weights(dump_file_path, quantized_file_path) + + quantized_weights_file = open(quantized_file_path, 'r') + + num_lines = sum(1 for line in quantized_weights_file) + quantized_weights_file.seek(0) + assert num_lines == self.index_reader.stats()['documents'] + + def compare_searcher_quantized(query, tolerance=1): + """Comparing searching with LuceneSearcher to brute-force searching through documents in dump + If the weights are quantized the scores will not match but the rankings should still roughly match. + + Parameters + ---------- + query : str + The query for search. + tolerance : int + Number of places within which rankings should match i.e. if the ranking of some document with + searching through documents in the dump is 2, then with a tolerance of 1 the ranking of the same + document with Lucene searcher should be between 1-3. + """ + query_terms = self.index_reader.analyze(query, analyzer=analysis.get_lucene_analyzer()) + heap = [] + for line in quantized_weights_file: + doc = json.loads(line) + score = 0 + for term in query_terms: + if term in doc['vector']: + score += doc['vector'][term] + heapq.heappush(heap, (-1*score, doc['id'])) + quantized_weights_file.seek(0) + + hits = self.searcher.search(query) + + for i in range(0, 10): + top = heapq.heappop(heap) + match_within_tolerance = False + for j in range(tolerance+1): + match_within_tolerance = (i-j >= 0 and hits[i-j].docid == top[1]) or (hits[i+j].docid == top[1]) + if match_within_tolerance: + break + self.assertEqual(match_within_tolerance, True) + + compare_searcher_quantized('I am interested in articles written either by Prieve or Udo Pooch') + compare_searcher_quantized('Performance evaluation and modelling of computer systems') + compare_searcher_quantized('Addressing schemes for resources in networks; resource addressing in network operating systems') + + quantized_weights_file.close() + os.remove(quantized_file_path) + + def tearDown(self): + os.remove(self.tarball_name) + shutil.rmtree(self.index_dir) + for f in self.temp_folders: + shutil.rmtree(f) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_index_reader_lucene8.py b/tests/test_index_reader_lucene8.py new file mode 100644 index 0000000000000000000000000000000000000000..353fbb3c9e60c8a205d0ec209022e791adb9c54a --- /dev/null +++ b/tests/test_index_reader_lucene8.py @@ -0,0 +1,199 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import heapq +import json +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve + +from pyserini import analysis, search +from pyserini.index.lucene import IndexReader + + +class TestIndexUtilsForLucene8(unittest.TestCase): + # This class contains the test cases from test_index_reader that require Lucene 8 backwards compatibility. + def setUp(self): + # Download pre-built CACM index built using Lucene 8; append a random value to avoid filename clashes. + r = randint(0, 10000000) + self.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene8-index.cacm.tar.gz' + self.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + self.index_dir = 'index{}/'.format(r) + + _, _ = urlretrieve(self.collection_url, self.tarball_name) + + tarball = tarfile.open(self.tarball_name) + tarball.extractall(self.index_dir) + tarball.close() + + self.index_path = os.path.join(self.index_dir, 'lucene-index.cacm') + self.searcher = search.LuceneSearcher(self.index_path) + self.index_reader = IndexReader(self.index_path) + + self.temp_folders = [] + + def test_query_doc_score_default(self): + queries = ['information retrieval', 'databases'] + + for query in queries: + hits = self.searcher.search(query) + + # We're going to verify that the score of each hit is about the same as the output of + # compute_query_document_score + for i in range(0, len(hits)): + self.assertAlmostEqual(hits[i].score, + self.index_reader.compute_query_document_score(hits[i].docid, query), places=4) + + def test_query_doc_score_custom_similarity(self): + custom_bm25 = search.LuceneSimilarities.bm25(0.8, 0.2) + queries = ['information retrieval', 'databases'] + self.searcher.set_bm25(0.8, 0.2) + + for query in queries: + hits = self.searcher.search(query) + + # We're going to verify that the score of each hit is about the same as the output of + # compute_query_document_score + for i in range(0, len(hits)): + self.assertAlmostEqual(hits[i].score, + self.index_reader.compute_query_document_score( + hits[i].docid, query, similarity=custom_bm25), places=4) + + custom_qld = search.LuceneSimilarities.qld(500) + self.searcher.set_qld(500) + + for query in queries: + hits = self.searcher.search(query) + + # We're going to verify that the score of each hit is about the same as the output of + # compute_query_document_score + for i in range(0, len(hits)): + self.assertAlmostEqual(hits[i].score, + self.index_reader.compute_query_document_score( + hits[i].docid, query, similarity=custom_qld), places=4) + + def test_dump_documents_BM25(self): + file_path = 'collections/cacm_documents_bm25_dump.jsonl' + self.index_reader.dump_documents_BM25(file_path) + dump_file = open(file_path, 'r') + + num_lines = sum(1 for line in dump_file) + dump_file.seek(0) + assert num_lines == self.index_reader.stats()['documents'] + + def compare_searcher(query): + """Comparing searching with LuceneSearcher to brute-force searching through documents in dump + The scores should match. + + Parameters + ---------- + query : str + The query for search. + """ + # Search through documents BM25 dump + query_terms = self.index_reader.analyze(query, analyzer=analysis.get_lucene_analyzer()) + heap = [] # heapq implements a min-heap, we can invert the values to have a max-heap + + for line in dump_file: + doc = json.loads(line) + score = 0 + for term in query_terms: + if term in doc['vector']: + score += doc['vector'][term] + heapq.heappush(heap, (-1*score, doc['id'])) + dump_file.seek(0) + + # Using LuceneSearcher instead + hits = self.searcher.search(query) + + for i in range(0, 10): + top = heapq.heappop(heap) + self.assertEqual(hits[i].docid, top[1]) + self.assertAlmostEqual(hits[i].score, -1*top[0], places=3) + + compare_searcher('I am interested in articles written either by Prieve or Udo Pooch') + compare_searcher('Performance evaluation and modelling of computer systems') + compare_searcher('Addressing schemes for resources in networks; resource addressing in network operating systems') + + dump_file.close() + os.remove(file_path) + + def test_quantize_weights(self): + dump_file_path = 'collections/cacm_documents_bm25_dump.jsonl' + quantized_file_path = 'collections/cacm_documents_bm25_dump_quantized.jsonl' + self.index_reader.dump_documents_BM25(dump_file_path) + self.index_reader.quantize_weights(dump_file_path, quantized_file_path) + + quantized_weights_file = open(quantized_file_path, 'r') + + num_lines = sum(1 for line in quantized_weights_file) + quantized_weights_file.seek(0) + assert num_lines == self.index_reader.stats()['documents'] + + def compare_searcher_quantized(query, tolerance=1): + """Comparing searching with LuceneSearcher to brute-force searching through documents in dump + If the weights are quantized the scores will not match but the rankings should still roughly match. + + Parameters + ---------- + query : str + The query for search. + tolerance : int + Number of places within which rankings should match i.e. if the ranking of some document with + searching through documents in the dump is 2, then with a tolerance of 1 the ranking of the same + document with Lucene searcher should be between 1-3. + """ + query_terms = self.index_reader.analyze(query, analyzer=analysis.get_lucene_analyzer()) + heap = [] + for line in quantized_weights_file: + doc = json.loads(line) + score = 0 + for term in query_terms: + if term in doc['vector']: + score += doc['vector'][term] + heapq.heappush(heap, (-1*score, doc['id'])) + quantized_weights_file.seek(0) + + hits = self.searcher.search(query) + + for i in range(0, 10): + top = heapq.heappop(heap) + match_within_tolerance = False + for j in range(tolerance+1): + match_within_tolerance = (i-j >= 0 and hits[i-j].docid == top[1]) or (hits[i+j].docid == top[1]) + if match_within_tolerance: + break + self.assertEqual(match_within_tolerance, True) + + compare_searcher_quantized('I am interested in articles written either by Prieve or Udo Pooch') + compare_searcher_quantized('Performance evaluation and modelling of computer systems') + compare_searcher_quantized('Addressing schemes for resources in networks; resource addressing in network operating systems') + + quantized_weights_file.close() + os.remove(quantized_file_path) + + def tearDown(self): + os.remove(self.tarball_name) + shutil.rmtree(self.index_dir) + for f in self.temp_folders: + shutil.rmtree(f) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_load_qrels.py b/tests/test_load_qrels.py new file mode 100644 index 0000000000000000000000000000000000000000..fc1f231e786cd7822b3d9eff2cfcc1f1ed347d6f --- /dev/null +++ b/tests/test_load_qrels.py @@ -0,0 +1,1029 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import unittest + +from pyserini import search + + +def read_file_lines(path): + with open(path) as f: + return f.readlines() + + +class TestGetQrels(unittest.TestCase): + + def setUp(self): + os.environ['PYSERINI_CACHE'] = 'temp_dir' + + def test_trec1_adhoc(self): + qrels = search.get_qrels('trec1-adhoc') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2_adhoc(self): + qrels = search.get_qrels('trec2-adhoc') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec3_adhoc(self): + qrels = search.get_qrels('trec3-adhoc') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_robust04a(self): + qrels_path = search.get_qrels_file('robust04') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length//2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 311410) + self.assertEqual(first_line, "301 0 FBIS3-10082 1") + self.assertEqual(mid_line, "409 0 LA010189-0112 0") + self.assertEqual(last_line, "700 0 LA123090-0137 0") + + def test_robust04b(self): + qrels = search.get_qrels('robust04') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 249) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_robust05a(self): + qrels_path = search.get_qrels_file('robust05') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 37798) + self.assertEqual(first_line, "303 0 APW19980609.1531 2") + self.assertEqual(mid_line, "397 0 XIE19960920.0297 0") + self.assertEqual(last_line, "689 0 XIE20000925.0055 0") + + def test_robust05b(self): + qrels = search.get_qrels('robust05') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_core17a(self): + qrels_path = search.get_qrels_file('core17') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 30030) + self.assertEqual(first_line, "307 0 1001536 1") + self.assertEqual(mid_line, "393 0 1586039 2") + self.assertEqual(last_line, "690 0 996059 0") + + def test_core17b(self): + qrels = search.get_qrels('core17') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_core18a(self): + qrels_path = search.get_qrels_file('core18') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 26233) + self.assertEqual(first_line, "321 0 004c6120d0aa69da29cc045da0562168 0") + self.assertEqual(mid_line, "646 0 260365e8-eb18-11e2-a301-ea5a8116d211 0") + self.assertEqual(last_line, "825 0 ff3a25b0-0ba4-11e4-8341-b8072b1e7348 0") + + def test_core18b(self): + qrels = search.get_qrels('core18') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_wt10g(self): + qrels = search.get_qrels('wt10g') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 100) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2004_terabyte(self): + qrels = search.get_qrels('trec2004-terabyte') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 49) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2005_terabyte(self): + qrels = search.get_qrels('trec2005-terabyte') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2006_terabyte(self): + qrels = search.get_qrels('trec2006-terabyte') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2011_web(self): + qrels = search.get_qrels('trec2011-web') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2012_web(self): + qrels = search.get_qrels('trec2012-web') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2013_web(self): + qrels = search.get_topics('trec2013-web') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2014_web(self): + qrels = search.get_qrels('trec2014-web') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mb11(self): + qrels = search.get_qrels('mb11') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 49) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mb12(self): + qrels = search.get_qrels('mb12') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 59) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mb13(self): + qrels = search.get_qrels('mb13') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 60) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mb14(self): + qrels = search.get_qrels('mb14') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 55) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_car15a(self): + qrels_path = search.get_qrels_file('car17v1.5-benchmarkY1test') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 5820) + self.assertEqual(first_line, "Aftertaste/Aftertaste%20processing%20in%20the%20cerebral%20cortex " + "0 38c1bd25ddca2705164677a3f598c46df85afba7 1") + self.assertEqual(mid_line, "Insular%20cortex/Function/Interoceptive%20awareness " + "0 f037f925acd4c59e802a58aa74430fc6aa163606 1") + self.assertEqual(last_line, "Yellowstone%20National%20Park/Recreation" + " 0 e80b5185da1493edde41bea19a389a3f62167369 1") + + def test_car15b(self): + qrels = search.get_qrels('car17v1.5-benchmarkY1test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 2125) + self.assertFalse(isinstance(next(iter(qrels.keys())), int)) + + def test_car20a(self): + qrels_path = search.get_qrels_file('car17v2.0-benchmarkY1test') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 6192) + self.assertEqual(first_line, "enwiki:Aftertaste 0 327cca6c4d38953196fa6789f615546f03287b25 1") + self.assertEqual(mid_line, "enwiki:Insular%20cortex/Function/Interoceptive%20awareness" + " 0 f037f925acd4c59e802a58aa74430fc6aa163606 1") + self.assertEqual(last_line, "enwiki:Yellowstone%20National%20Park/Recreation" + " 0 b812fca195f74f8c563db4262260554fe3ff3731 1") + + def test_car20b(self): + qrels = search.get_qrels('car17v2.0-benchmarkY1test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 2254) + self.assertFalse(isinstance(next(iter(qrels.keys())), int)) + + def test_msmarco_doc1(self): + qrels_path = search.get_qrels_file('msmarco-doc-dev') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 5193) + self.assertEqual(first_line, "2 0 D1650436 1") + self.assertEqual(mid_line, "855050 0 D2851565 1") + self.assertEqual(last_line, "1102400 0 D677570 1") + + def test_msmarco_doc2(self): + qrels = search.get_qrels('msmarco-doc-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 5193) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_msmarco_passage1(self): + qrels_path = search.get_qrels_file('msmarco-passage-dev-subset') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 7437) + self.assertEqual(first_line, "300674 0 7067032 1") + self.assertEqual(mid_line, "573452 0 3182069 1") + self.assertEqual(last_line, "195199 0 8009377 1") + + def test_msmarco_passage2(self): + qrels = search.get_qrels('msmarco-passage-dev-subset') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 6980) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_dl19_doc(self): + topics = search.get_topics('dl19-doc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-doc-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-doc-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + qrels = search.get_qrels('dl19-doc') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 43) + self.assertFalse(isinstance(next(iter(qrels.keys())), str)) + + def test_dl19_passage(self): + topics = search.get_topics('dl19-passage') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-passage-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-passage-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + qrels = search.get_qrels('dl19-passage') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 43) + self.assertFalse(isinstance(next(iter(qrels.keys())), str)) + + def test_dl20(self): + qrels = search.get_qrels('dl20-doc') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 45) + self.assertFalse(isinstance(next(iter(qrels.keys())), str)) + + qrels = search.get_qrels('dl20-passage') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 54) + self.assertFalse(isinstance(next(iter(qrels.keys())), str)) + + # MS MARCO V2 + def test_msmarco_v2_doc(self): + qrels = search.get_qrels('msmarco-v2-doc-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 4552) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('msmarco-v2-doc-dev2') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 5000) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_msmarco_v2_passage(self): + qrels = search.get_qrels('msmarco-v2-passage-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3903) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('msmarco-v2-passage-dev2') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 4281) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_dl21(self): + qrels = search.get_qrels('dl21-doc') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 57) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 13058) + self.assertFalse(isinstance(next(iter(qrels.keys())), str)) + + qrels = search.get_qrels('dl21-passage') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 53) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 10828) + self.assertFalse(isinstance(next(iter(qrels.keys())), str)) + + # Various multi-lingual test collections + def test_ntcir8_zh(self): + qrels = search.get_qrels('ntcir8-zh') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 100) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) + + def test_clef2006_fr(self): + qrels = search.get_qrels('clef2006-fr') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 49) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) + + def test_trec2002_ar(self): + qrels = search.get_qrels('trec2002-ar') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_fire2012_bn(self): + qrels = search.get_qrels('fire2012-bn') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_fire2012_hi(self): + qrels = search.get_qrels('fire2012-hi') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_fire2012_en(self): + qrels = search.get_qrels('fire2012-en') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_covid_round1(self): + qrels_path = search.get_qrels_file('covid-round1') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 8691) + self.assertEqual(first_line, "1 0.5 010vptx3 2") + self.assertEqual(mid_line, "15 0.5 01rdlf8l 0") + self.assertEqual(last_line, "30 0.5 zn87f1lk 1") + + qrels = search.get_qrels('covid-round1') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 30) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_covid_round2(self): + qrels_path = search.get_qrels_file('covid-round2') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 12037) + self.assertEqual(first_line, "1 1.5 08efpohc 0") + self.assertEqual(mid_line, "16 2 uj0i2anr 0") + self.assertEqual(last_line, "35 2 zzmfhr2s 0") + + qrels = search.get_qrels('covid-round2') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 35) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_covid_round3(self): + qrels_path = search.get_qrels_file('covid-round3') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 12713) + self.assertEqual(first_line, "1 2.5 0194oljo 1") + self.assertEqual(mid_line, "19 2.5 s0o0egw8 2") + self.assertEqual(last_line, "40 3 zsx7wfyj 1") + + qrels = search.get_qrels('covid-round3') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 40) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_covid_round4(self): + qrels_path = search.get_qrels_file('covid-round4') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 13262) + self.assertEqual(first_line, "1 4 00fmeepz 1") + self.assertEqual(mid_line, "27 4 hmh4s3w4 0") + self.assertEqual(last_line, "45 4 zzrsk1ls 2") + + qrels = search.get_qrels('covid-round4') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 45) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_covid_round5(self): + qrels_path = search.get_qrels_file('covid-round5') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 23151) + self.assertEqual(first_line, "1 4.5 005b2j4b 2") + self.assertEqual(mid_line, "36 4.5 ylgmn69k 0") + self.assertEqual(last_line, "50 5 zz8wvos9 1") + + qrels = search.get_qrels('covid-round5') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_covid_round3_cumulative(self): + qrels_path = search.get_qrels_file('covid-round3-cumulative') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 33068) + self.assertEqual(first_line, "1 0.5 010vptx3 2") + self.assertEqual(mid_line, "17 1.5 4txctk7k 0") + self.assertEqual(last_line, "40 3 zsx7wfyj 1") + + def test_covid_round4_cumulative(self): + qrels_path = search.get_qrels_file('covid-round4-cumulative') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 46203) + self.assertEqual(first_line, "1 4 00fmeepz 1") + self.assertEqual(mid_line, "19 1 bt5857p3 0") + self.assertEqual(last_line, "45 4 zzrsk1ls 2") + + def test_covid_complete(self): + qrels_path = search.get_qrels_file('covid-complete') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 69318) + self.assertEqual(first_line, "1 4.5 005b2j4b 2") + self.assertEqual(mid_line, "23 5 71jjbyds 0") + self.assertEqual(last_line, "50 5 zz8wvos9 1") + + def test_trec2018_bl(self): + qrels_path = search.get_qrels_file('trec2018-bl') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 8508) + self.assertEqual(first_line, "321 0 00f57310e5c8ec7833d6756ba637332e 16") + self.assertEqual(mid_line, "809 0 921073ca-c0a3-11e1-9ce8-ff26651238d0 0") + self.assertEqual(last_line, "825 0 f66b624ba8689d704872fa776fb52860 0") + + qrels = search.get_qrels('trec2018-bl') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2019_bl(self): + qrels_path = search.get_qrels_file('trec2019-bl') + lines = read_file_lines(qrels_path) + length = len(lines) + first_line = lines[0].rstrip() + mid_line = lines[length // 2].rstrip() + last_line = lines[-1].rstrip() + self.assertEqual(length, 15655) + self.assertEqual(first_line, "826 0 0154349511cd8c49ab862d6cb0d8f6a8 2") + self.assertEqual(mid_line, "853 0 2444d88d62539b0b88dc919909cb9701 2") + self.assertEqual(last_line, "885 0 fde80cb0-b4f0-11e2-bbf2-a6f9e9d79e19 0") + + qrels = search.get_qrels('trec2019-bl') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 57) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_trec2020_bl(self): + qrels = search.get_qrels('trec2020-bl') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 49) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_ar(self): + qrels = search.get_qrels('mrtydi-v1.1-arabic-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 12377) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-arabic-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3115) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-arabic-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1081) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_bn(self): + qrels = search.get_qrels('mrtydi-v1.1-bengali-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1713) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-bengali-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 440) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-bengali-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 111) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_en(self): + qrels = search.get_qrels('mrtydi-v1.1-english-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3547) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-english-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 878) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-english-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 744) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_fi(self): + qrels = search.get_qrels('mrtydi-v1.1-finnish-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 6561) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-finnish-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1738) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-finnish-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1254) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_id(self): + qrels = search.get_qrels('mrtydi-v1.1-indonesian-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 4902) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-indonesian-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1224) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-indonesian-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 829) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_ja(self): + qrels = search.get_qrels('mrtydi-v1.1-japanese-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3697) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-japanese-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 928) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-japanese-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 720) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_ko(self): + qrels = search.get_qrels('mrtydi-v1.1-korean-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1295) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-korean-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 303) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-korean-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 421) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_ru(self): + qrels = search.get_qrels('mrtydi-v1.1-russian-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 5366) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-russian-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1375) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-russian-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 995) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_sw(self): + qrels = search.get_qrels('mrtydi-v1.1-swahili-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 2072) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-swahili-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 526) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-swahili-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 670) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_te(self): + qrels = search.get_qrels('mrtydi-v1.1-telugu-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3880) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-telugu-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 983) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-telugu-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 646) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mrtydi_11_th(self): + qrels = search.get_qrels('mrtydi-v1.1-thai-train') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3319) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-thai-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 807) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('mrtydi-v1.1-thai-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1190) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_mircal_10(self): + qrels = search.get_qrels('miracl-v1.0-ar-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 2896) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-bn-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 411) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-en-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 799) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-es-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 648) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + qrels = search.get_qrels('miracl-v1.0-fa-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 632) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + qrels = search.get_qrels('miracl-v1.0-fi-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1271) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-fr-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 343) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + qrels = search.get_qrels('miracl-v1.0-hi-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 350) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + qrels = search.get_qrels('miracl-v1.0-id-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 960) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-ja-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 860) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-ko-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 213) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-ru-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1252) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-sw-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 482) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-te-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 828) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-th-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 733) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('miracl-v1.0-zh-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 393) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + qrels = search.get_qrels('miracl-v1.0-de-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 305) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + qrels = search.get_qrels('miracl-v1.0-yo-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 119) + self.assertTrue(isinstance(next(iter(qrels.keys())), str)) # note, not int + + def test_beir(self): + qrels = search.get_qrels('beir-v1.0.0-trec-covid-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 66334) + + qrels = search.get_qrels('beir-v1.0.0-bioasq-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 500) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 2359) + + qrels = search.get_qrels('beir-v1.0.0-nfcorpus-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 323) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 12334) + + qrels = search.get_qrels('beir-v1.0.0-nq-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 3452) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 4201) + + qrels = search.get_qrels('beir-v1.0.0-hotpotqa-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 7405) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 14810) + + qrels = search.get_qrels('beir-v1.0.0-fiqa-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 648) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1706) + + qrels = search.get_qrels('beir-v1.0.0-signal1m-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 97) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1899) + + qrels = search.get_qrels('beir-v1.0.0-trec-news-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 57) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 15655) + + qrels = search.get_qrels('beir-v1.0.0-robust04-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 249) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 311410) + + qrels = search.get_qrels('beir-v1.0.0-arguana-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1406) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1406) + + qrels = search.get_qrels('beir-v1.0.0-webis-touche2020-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 49) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 932) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-android-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 699) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1696) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-english-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1570) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 3765) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-gaming-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1595) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 2263) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-gis-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 885) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1114) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-mathematica-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 804) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1358) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-physics-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1039) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1933) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-programmers-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 876) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1675) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-stats-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 652) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 913) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-tex-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 2906) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 5154) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-unix-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1072) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1693) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-webmasters-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 506) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 1395) + + qrels = search.get_qrels('beir-v1.0.0-cqadupstack-wordpress-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 541) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 744) + + qrels = search.get_qrels('beir-v1.0.0-quora-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 10000) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 15675) + + qrels = search.get_qrels('beir-v1.0.0-dbpedia-entity-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 400) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 43515) + + qrels = search.get_qrels('beir-v1.0.0-scidocs-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1000) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 29928) + + qrels = search.get_qrels('beir-v1.0.0-fever-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 6666) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 7937) + + qrels = search.get_qrels('beir-v1.0.0-climate-fever-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 1535) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 4681) + + qrels = search.get_qrels('beir-v1.0.0-scifact-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 300) + self.assertEqual(sum([len(qrels[topic_id]) for topic_id in qrels]), 339) + + def test_hc4_10_fa(self): + qrels = search.get_qrels('hc4-v1.0-fa-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 10) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('hc4-v1.0-fa-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_hc4_10_ru(self): + qrels = search.get_qrels('hc4-v1.0-ru-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 4) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('hc4-v1.0-ru-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_hc4_10_zh(self): + qrels = search.get_qrels('hc4-v1.0-zh-dev') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 10) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + qrels = search.get_qrels('hc4-v1.0-zh-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_hc4_neuclir22(self): + qrels = search.get_qrels('hc4-neuclir22-fa-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('hc4-neuclir22-ru-test') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 50) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + qrels = search.get_qrels('hc4-neuclir22-zh-test') + self.assertIsNotNone(qrels) + # For whatever reason, these qrels also have dev topics. + self.assertEqual(len(qrels), 60) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def tearDown(self): + if os.path.exists('temp_dir'): + shutil.rmtree('temp_dir') + os.environ['PYSERINI_CACHE'] = '' + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_load_topics.py b/tests/test_load_topics.py new file mode 100644 index 0000000000000000000000000000000000000000..8c41d65ad24d9b0ec3abf36746bd1e180a39a1f2 --- /dev/null +++ b/tests/test_load_topics.py @@ -0,0 +1,1166 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import unittest + +from pyserini import search + + +class TestLoadTopics(unittest.TestCase): + + def test_trec1_adhoc(self): + topics = search.get_topics('trec1-adhoc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2_adhoc(self): + topics = search.get_topics('trec2-adhoc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec3_adhoc(self): + topics = search.get_topics('trec3-adhoc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_robust04(self): + topics = search.get_topics('robust04') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 250) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_robust05(self): + topics = search.get_topics('robust05') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_core17(self): + topics = search.get_topics('core17') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_core18(self): + topics = search.get_topics('core18') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_wt10g(self): + topics = search.get_topics('wt10g') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 100) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2004_terabyte(self): + topics = search.get_topics('trec2004-terabyte') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2005_terabyte(self): + topics = search.get_topics('trec2005-terabyte') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2006_terabyte(self): + topics = search.get_topics('trec2006-terabyte') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2007_million_query(self): + topics = search.get_topics('trec2007-million-query') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10000) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2008_million_query(self): + topics = search.get_topics('trec2008-million-query') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10000) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2009_million_query(self): + topics = search.get_topics('trec2009-million-query') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 40000) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2010_web(self): + topics = search.get_topics('trec2010-web') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2011_web(self): + topics = search.get_topics('trec2011-web') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2012_web(self): + topics = search.get_topics('trec2012-web') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2013_web(self): + topics = search.get_topics('trec2013-web') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2014_web(self): + topics = search.get_topics('trec2014-web') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mb11(self): + topics = search.get_topics('mb11') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mb12(self): + topics = search.get_topics('mb12') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 60) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mb13(self): + topics = search.get_topics('mb13') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 60) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mb14(self): + topics = search.get_topics('mb14') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 55) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_car15(self): + topics = search.get_topics('car17v1.5-benchmarkY1test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 2125) + self.assertFalse(isinstance(next(iter(topics.keys())), int)) + + def test_car20(self): + topics = search.get_topics('car17v2.0-benchmarkY1test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 2254) + self.assertFalse(isinstance(next(iter(topics.keys())), int)) + + # MS MARCO V1 + def test_msmarco_doc(self): + topics = search.get_topics('msmarco-doc-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5193) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-doc-dev-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5193) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-doc-dev-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5193) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-doc-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5793) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_msmarco_passage(self): + topics = search.get_topics('msmarco-passage-dev-subset') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6980) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-passage-dev-subset-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6980) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-passage-dev-subset-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6980) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-passage-test-subset') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6837) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_msmarco_passage_deepimpact(self): + topics = search.get_topics('msmarco-passage-dev-subset-deepimpact') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6980) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_msmarco_passage_unicoil_tidle(self): + topics = search.get_topics('msmarco-passage-dev-subset-unicoil-tilde') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6980) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_msmarco_passage_distill_splade_max(self): + topics = search.get_topics('msmarco-passage-dev-subset-distill-splade-max') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6980) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dl19_doc(self): + topics = search.get_topics('dl19-doc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-doc-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-doc-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + def test_dl19_passage(self): + topics = search.get_topics('dl19-passage') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-passage-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl19-passage-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 43) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + def test_dl20(self): + topics = search.get_topics('dl20') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 200) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl20-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 200) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('dl20-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 200) + self.assertFalse(isinstance(next(iter(topics.keys())), str)) + + # MS MARCO V2 + def test_msmarco_v2_doc(self): + topics = search.get_topics('msmarco-v2-doc-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4552) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-doc-dev-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4552) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-doc-dev-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4552) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-doc-dev2') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5000) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-doc-dev2-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5000) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-doc-dev2-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5000) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + qrels = search.get_qrels('msmarco-v2-doc-dev2') + self.assertIsNotNone(qrels) + self.assertEqual(len(qrels), 5000) + self.assertTrue(isinstance(next(iter(qrels.keys())), int)) + + def test_msmarco_v2_passage(self): + topics = search.get_topics('msmarco-v2-passage-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3903) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-passage-dev-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3903) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-passage-dev-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3903) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-passage-dev2') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4281) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-passage-dev2-unicoil') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4281) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('msmarco-v2-passage-dev2-unicoil-noexp') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4281) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + # TODO: Add DL21 + + # Various multi-lingual test collections + def test_ntcir8_zh(self): + topics = search.get_topics('ntcir8-zh') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 73) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + def test_clef2006_fr(self): + topics = search.get_topics('clef2006-fr') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 49) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + def test_trec2002_ar(self): + topics = search.get_topics('trec2002-ar') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_fire2012_bn(self): + topics = search.get_topics('fire2012-bn') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_fire2012_hi(self): + topics = search.get_topics('fire2012-hi') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_fire2012_en(self): + topics = search.get_topics('fire2012-en') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + # Epidemic QA + def test_epidemic_qa_expert_prelim(self): + topics = search.get_topics('epidemic-qa-expert-prelim') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 45) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_epidemic_qa_consumer_prelim(self): + topics = search.get_topics('epidemic-qa-consumer-prelim') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 42) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + # DPR datasets + def test_dpr_nq_dev(self): + topics = search.get_topics('dpr-nq-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 8757) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dpr_nq_test(self): + topics = search.get_topics('dpr-nq-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3610) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dpr_wq_test(self): + topics = search.get_topics('dpr-wq-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 2032) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dpr_squad_test(self): + topics = search.get_topics('dpr-squad-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10570) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dpr_curated_test(self): + topics = search.get_topics('dpr-curated-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 694) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dpr_trivia_test(self): + topics = search.get_topics('dpr-trivia-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 11313) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_dpr_trivia_dev(self): + topics = search.get_topics('dpr-trivia-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 8837) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + # GarT5 topics + def test_gart5_nq_test(self): + topics = search.get_topics('nq-test-gar-t5-answers') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3610) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('nq-test-gar-t5-titles') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3610) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('nq-test-gar-t5-sentences') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3610) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('nq-test-gar-t5-all') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3610) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_gart5_trivia_test(self): + topics = search.get_topics('dpr-trivia-test-gar-t5-answers') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 11313) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('dpr-trivia-test-gar-t5-titles') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 11313) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('dpr-trivia-test-gar-t5-sentences') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 11313) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('dpr-trivia-test-gar-t5-all') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 11313) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + # TREC-COVID + def test_covid_round1(self): + topics = search.get_topics('covid-round1') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 30) + self.assertEqual('coronavirus origin', topics[1]['query']) + self.assertEqual('coronavirus remdesivir', topics[30]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('covid-round1-udel') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 30) + self.assertEqual('coronavirus origin origin COVID-19', topics[1]['query']) + self.assertEqual('coronavirus remdesivir remdesivir effective treatment COVID-19', topics[30]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_covid_round2(self): + topics = search.get_topics('covid-round2') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 35) + self.assertEqual('coronavirus origin', topics[1]['query']) + self.assertEqual('coronavirus public datasets', topics[35]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('covid-round2-udel') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 35) + self.assertEqual('coronavirus origin origin COVID-19', topics[1]['query']) + self.assertEqual('coronavirus public datasets public datasets COVID-19', topics[35]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_covid_round3(self): + topics = search.get_topics('covid-round3') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 40) + self.assertEqual('coronavirus origin', topics[1]['query']) + self.assertEqual('coronavirus mutations', topics[40]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('covid-round3-udel') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 40) + self.assertEqual('coronavirus origin origin COVID-19', topics[1]['query']) + self.assertEqual('coronavirus mutations observed mutations SARS-CoV-2 genome mutations', topics[40]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_covid_round4(self): + topics = search.get_topics('covid-round4') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 45) + self.assertEqual('coronavirus origin', topics[1]['query']) + self.assertEqual('coronavirus mental health impact', topics[45]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('covid-round4-udel') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 45) + self.assertEqual('coronavirus origin origin COVID-19', topics[1]['query']) + self.assertEqual('coronavirus mental health impact COVID-19 pandemic impacted mental health', topics[45]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_covid_round5(self): + topics = search.get_topics('covid-round5') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + self.assertEqual('coronavirus origin', topics[1]['query']) + self.assertEqual('mRNA vaccine coronavirus', topics[50]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('covid-round5-udel') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertEqual('coronavirus origin origin COVID-19', topics[1]['query']) + self.assertEqual('mRNA vaccine coronavirus mRNA vaccine SARS-CoV-2 virus', topics[50]['query']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + # TREC News Tracks + def test_trec2018_bl(self): + topics = search.get_topics('trec2018-bl') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertEqual('fef0f232a9bd94bdb96bac48c7705503', topics[393]['title']) + self.assertEqual('a1c41a70-35c7-11e3-8a0e-4e2cf80831fc', topics[825]['title']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2019_bl(self): + topics = search.get_topics('trec2019-bl') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 60) + self.assertEqual('d7d906991e2883889f850de9ae06655e', topics[870]['title']) + self.assertEqual('0d7f5e24cafc019265d3ee4b9745e7ea', topics[829]['title']) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_trec2020_bl(self): + topics = search.get_topics('trec2020-bl') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_ar(self): + topics = search.get_topics('mrtydi-v1.1-arabic-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 12377) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-arabic-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3115) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-arabic-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1081) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_bn(self): + topics = search.get_topics('mrtydi-v1.1-bengali-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1713) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-bengali-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 440) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-bengali-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 111) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_en(self): + topics = search.get_topics('mrtydi-v1.1-english-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3547) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-english-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 878) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-english-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 744) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_fi(self): + topics = search.get_topics('mrtydi-v1.1-finnish-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6561) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-finnish-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1738) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-finnish-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1254) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_id(self): + topics = search.get_topics('mrtydi-v1.1-indonesian-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4902) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-indonesian-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1224) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-indonesian-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 829) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_ja(self): + topics = search.get_topics('mrtydi-v1.1-japanese-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3697) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-japanese-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 928) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-japanese-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 720) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_ko(self): + topics = search.get_topics('mrtydi-v1.1-korean-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1295) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-korean-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 303) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-korean-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 421) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_ru(self): + topics = search.get_topics('mrtydi-v1.1-russian-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 5366) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-russian-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1375) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-russian-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 995) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_sw(self): + topics = search.get_topics('mrtydi-v1.1-swahili-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 2072) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-swahili-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 526) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-swahili-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 670) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_te(self): + topics = search.get_topics('mrtydi-v1.1-telugu-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3880) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-telugu-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 983) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-telugu-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 646) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_mrtydi_11_th(self): + topics = search.get_topics('mrtydi-v1.1-thai-train') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3319) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-thai-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 807) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('mrtydi-v1.1-thai-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1190) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_beir(self): + topics = search.get_topics('beir-v1.0.0-trec-covid-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + + topics = search.get_topics('beir-v1.0.0-bioasq-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 500) + + topics = search.get_topics('beir-v1.0.0-nfcorpus-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 323) + + topics = search.get_topics('beir-v1.0.0-nq-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 3452) + + topics = search.get_topics('beir-v1.0.0-hotpotqa-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 7405) + + topics = search.get_topics('beir-v1.0.0-fiqa-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 648) + + topics = search.get_topics('beir-v1.0.0-signal1m-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 97) + + topics = search.get_topics('beir-v1.0.0-trec-news-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 57) + + topics = search.get_topics('beir-v1.0.0-robust04-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 249) + + topics = search.get_topics('beir-v1.0.0-arguana-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1406) + + topics = search.get_topics('beir-v1.0.0-webis-touche2020-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 49) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-android-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 699) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-english-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1570) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-gaming-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1595) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-gis-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 885) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-mathematica-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 804) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-physics-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1039) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-programmers-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 876) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-stats-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 652) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-tex-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 2906) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-unix-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1072) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-webmasters-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 506) + + topics = search.get_topics('beir-v1.0.0-cqadupstack-wordpress-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 541) + + topics = search.get_topics('beir-v1.0.0-quora-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10000) + + topics = search.get_topics('beir-v1.0.0-dbpedia-entity-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 400) + + topics = search.get_topics('beir-v1.0.0-scidocs-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1000) + + topics = search.get_topics('beir-v1.0.0-fever-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 6666) + + topics = search.get_topics('beir-v1.0.0-climate-fever-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1535) + + topics = search.get_topics('beir-v1.0.0-scifact-test') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 300) + + def test_hc4_1_0_fa(self): + topics = search.get_topics('hc4-v1.0-fa-dev-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-dev-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-dev-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-test-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-test-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-test-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-en-test-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-en-test-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-fa-en-test-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_hc4_1_0_ru(self): + topics = search.get_topics('hc4-v1.0-ru-dev-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-dev-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-dev-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 4) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-test-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-test-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-test-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-en-test-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-en-test-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-ru-en-test-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_hc4_1_0_zh(self): + topics = search.get_topics('hc4-v1.0-zh-dev-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-zh-dev-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-zh-dev-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 10) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-zh-en-test-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-zh-en-test-desc') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('hc4-v1.0-zh-en-test-desc-title') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 50) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_neurclir22(self): + for key in ['neuclir22-en-title', 'neuclir22-en-title', 'neuclir22-en-desc-title']: + topics = search.get_topics(key) + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 114) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + for key in ['neuclir22-fa-ht-title', 'neuclir22-fa-ht-desc', 'neuclir22-fa-ht-desc-title', + 'neuclir22-fa-mt-title', 'neuclir22-fa-mt-desc', 'neuclir22-fa-mt-desc-title']: + topics = search.get_topics(key) + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 114) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + for key in ['neuclir22-ru-ht-title', 'neuclir22-ru-ht-desc', 'neuclir22-ru-ht-desc-title', + 'neuclir22-ru-mt-title', 'neuclir22-ru-mt-desc', 'neuclir22-ru-mt-desc-title']: + topics = search.get_topics(key) + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 114) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + for key in ['neuclir22-zh-ht-title', 'neuclir22-zh-ht-desc', 'neuclir22-zh-ht-desc-title', + 'neuclir22-zh-mt-title', 'neuclir22-zh-mt-desc', 'neuclir22-zh-mt-desc-title']: + topics = search.get_topics(key) + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 114) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + def test_miracl_10(self): + topics = search.get_topics('miracl-v1.0-ar-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 2896) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-bn-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 411) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-en-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 799) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-es-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 648) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('miracl-v1.0-fa-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 632) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('miracl-v1.0-fi-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1271) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-fr-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 343) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('miracl-v1.0-hi-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 350) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('miracl-v1.0-id-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 960) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-ja-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 860) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-ko-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 213) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-ru-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 1252) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-sw-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 482) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-te-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 828) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-th-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 733) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + topics = search.get_topics('miracl-v1.0-zh-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 393) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('miracl-v1.0-de-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 305) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + topics = search.get_topics('miracl-v1.0-yo-dev') + self.assertIsNotNone(topics) + self.assertEqual(len(topics), 119) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + + # General test cases + def test_tsv_int_topicreader(self): + # Running from command-line, we're in root of repo, but running in IDE, we're in tests/ + path = 'tools/topics-and-qrels/topics.msmarco-doc.dev.txt' + if not os.path.exists(path): + path = f'../{path}' + + self.assertTrue(os.path.exists(path)) + topics = search.get_topics_with_reader('io.anserini.search.topicreader.TsvIntTopicReader', path) + self.assertEqual(len(topics), 5193) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + self.assertEqual(search.get_topics('msmarco-doc-dev'), topics) + + def test_trec_topicreader(self): + # Running from command-line, we're in root of repo, but running in IDE, we're in tests/ + path = 'tools/topics-and-qrels/topics.robust04.txt' + if not os.path.exists(path): + path = f'../{path}' + + self.assertTrue(os.path.exists(path)) + topics = search.get_topics_with_reader('io.anserini.search.topicreader.TrecTopicReader', path) + self.assertEqual(len(topics), 250) + self.assertTrue(isinstance(next(iter(topics.keys())), int)) + + self.assertEqual(search.get_topics('robust04'), topics) + + def test_trec_topicreader_nonint_qid(self): + # Running from command-line, we're in root of repo, but running in IDE, we're in tests/ + path = 'tests/resources/sample_queries_nonint_qid.tsv' + if not os.path.exists(path): + path = f'../{path}' + + self.assertTrue(os.path.exists(path)) + topics = search.get_topics_with_reader('io.anserini.search.topicreader.TsvStringTopicReader', path) + self.assertEqual(len(topics), 3) + self.assertTrue(isinstance(next(iter(topics.keys())), str)) + self.assertEqual({'30_1', '30_2', '30_3'}, set(topics)) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_querybuilder.py b/tests/test_querybuilder.py new file mode 100644 index 0000000000000000000000000000000000000000..0ef17481ae4e9600dc5b40943ff4e10754f85f0f --- /dev/null +++ b/tests/test_querybuilder.py @@ -0,0 +1,139 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve + +from pyserini.analysis import get_lucene_analyzer +from pyserini.search.lucene import LuceneSearcher, querybuilder + + +class TestQueryBuilding(unittest.TestCase): + def setUp(self): + # Download pre-built CACM index built using Lucene 9; append a random value to avoid filename clashes. + r = randint(0, 10000000) + self.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene9-index.cacm.tar.gz' + self.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + self.index_dir = 'index{}/'.format(r) + + filename, headers = urlretrieve(self.collection_url, self.tarball_name) + + tarball = tarfile.open(self.tarball_name) + tarball.extractall(self.index_dir) + tarball.close() + + self.searcher = LuceneSearcher(f'{self.index_dir}lucene9-index.cacm') + + def testBuildBoostedQuery(self): + term_query1 = querybuilder.get_term_query('information') + term_query2 = querybuilder.get_term_query('retrieval') + + boost1 = querybuilder.get_boost_query(term_query1, 2.) + boost2 = querybuilder.get_boost_query(term_query2, 2.) + + should = querybuilder.JBooleanClauseOccur['should'].value + + boolean_query = querybuilder.get_boolean_query_builder() + boolean_query.add(boost1, should) + boolean_query.add(boost2, should) + + bq = boolean_query.build() + hits1 = self.searcher.search(bq) + + boolean_query2 = querybuilder.get_boolean_query_builder() + boolean_query2.add(term_query1, should) + boolean_query2.add(term_query2, should) + + bq2 = boolean_query2.build() + hits2 = self.searcher.search(bq2) + + for h1, h2 in zip(hits1, hits2): + self.assertEqual(h1.docid, h2.docid) + self.assertAlmostEqual(h1.score, h2.score*2, delta=0.001) + + boost3 = querybuilder.get_boost_query(term_query1, 2.) + boost4 = querybuilder.get_boost_query(term_query2, 3.) + + boolean_query = querybuilder.get_boolean_query_builder() + boolean_query.add(boost3, should) + boolean_query.add(boost4, should) + + bq3 = boolean_query.build() + hits3 = self.searcher.search(bq3) + + for h1, h3 in zip(hits1, hits3): + self.assertNotEqual(h1.score, h3.score) + + def testTermQuery(self): + should = querybuilder.JBooleanClauseOccur['should'].value + query_builder = querybuilder.get_boolean_query_builder() + query_builder.add(querybuilder.get_term_query('information'), should) + query_builder.add(querybuilder.get_term_query('retrieval'), should) + + query = query_builder.build() + hits1 = self.searcher.search(query) + hits2 = self.searcher.search('information retrieval') + + for h1, h2 in zip(hits1, hits2): + self.assertEqual(h1.docid, h2.docid) + self.assertEqual(h1.score, h2.score) + + def testIncompatabilityWithRM3(self): + should = querybuilder.JBooleanClauseOccur['should'].value + query_builder = querybuilder.get_boolean_query_builder() + query_builder.add(querybuilder.get_term_query('information'), should) + query_builder.add(querybuilder.get_term_query('retrieval'), should) + + query = query_builder.build() + hits = self.searcher.search(query) + self.assertEqual(10, len(hits)) + + self.searcher.set_rm3() + self.assertTrue(self.searcher.is_using_rm3()) + + with self.assertRaises(NotImplementedError): + self.searcher.search(query) + + def testTermQuery2(self): + term_query1 = querybuilder.get_term_query('inform', analyzer=get_lucene_analyzer(stemming=False)) + term_query2 = querybuilder.get_term_query('retriev', analyzer=get_lucene_analyzer(stemming=False)) + + should = querybuilder.JBooleanClauseOccur['should'].value + + boolean_query1 = querybuilder.get_boolean_query_builder() + boolean_query1.add(term_query1, should) + boolean_query1.add(term_query2, should) + + bq1 = boolean_query1.build() + hits1 = self.searcher.search(bq1) + hits2 = self.searcher.search('information retrieval') + + for h1, h2 in zip(hits1, hits2): + self.assertEqual(h1.docid, h2.docid) + self.assertEqual(h1.score, h2.score) + + def tearDown(self): + self.searcher.close() + os.remove(self.tarball_name) + shutil.rmtree(self.index_dir) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_querybuilder_lucene8.py b/tests/test_querybuilder_lucene8.py new file mode 100644 index 0000000000000000000000000000000000000000..a26c81df50227f38f0e803a09139fa6b1a7e9498 --- /dev/null +++ b/tests/test_querybuilder_lucene8.py @@ -0,0 +1,140 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from urllib.request import urlretrieve + +from pyserini.analysis import get_lucene_analyzer +from pyserini.search.lucene import LuceneSearcher, querybuilder + + +class TestQueryBuildingForLucene8(unittest.TestCase): + # This class contains the test cases from test_querybuilder that require Lucene 8 backwards compatibility. + def setUp(self): + # Download pre-built CACM index built using Lucene 8; append a random value to avoid filename clashes. + r = randint(0, 10000000) + self.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene8-index.cacm.tar.gz' + self.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + self.index_dir = 'index{}/'.format(r) + + filename, headers = urlretrieve(self.collection_url, self.tarball_name) + + tarball = tarfile.open(self.tarball_name) + tarball.extractall(self.index_dir) + tarball.close() + + self.searcher = LuceneSearcher(f'{self.index_dir}lucene-index.cacm') + + def testBuildBoostedQuery(self): + term_query1 = querybuilder.get_term_query('information') + term_query2 = querybuilder.get_term_query('retrieval') + + boost1 = querybuilder.get_boost_query(term_query1, 2.) + boost2 = querybuilder.get_boost_query(term_query2, 2.) + + should = querybuilder.JBooleanClauseOccur['should'].value + + boolean_query = querybuilder.get_boolean_query_builder() + boolean_query.add(boost1, should) + boolean_query.add(boost2, should) + + bq = boolean_query.build() + hits1 = self.searcher.search(bq) + + boolean_query2 = querybuilder.get_boolean_query_builder() + boolean_query2.add(term_query1, should) + boolean_query2.add(term_query2, should) + + bq2 = boolean_query2.build() + hits2 = self.searcher.search(bq2) + + for h1, h2 in zip(hits1, hits2): + self.assertEqual(h1.docid, h2.docid) + self.assertAlmostEqual(h1.score, h2.score*2, delta=0.001) + + boost3 = querybuilder.get_boost_query(term_query1, 2.) + boost4 = querybuilder.get_boost_query(term_query2, 3.) + + boolean_query = querybuilder.get_boolean_query_builder() + boolean_query.add(boost3, should) + boolean_query.add(boost4, should) + + bq3 = boolean_query.build() + hits3 = self.searcher.search(bq3) + + for h1, h3 in zip(hits1, hits3): + self.assertNotEqual(h1.score, h3.score) + + def testTermQuery(self): + should = querybuilder.JBooleanClauseOccur['should'].value + query_builder = querybuilder.get_boolean_query_builder() + query_builder.add(querybuilder.get_term_query('information'), should) + query_builder.add(querybuilder.get_term_query('retrieval'), should) + + query = query_builder.build() + hits1 = self.searcher.search(query) + hits2 = self.searcher.search('information retrieval') + + for h1, h2 in zip(hits1, hits2): + self.assertEqual(h1.docid, h2.docid) + self.assertEqual(h1.score, h2.score) + + def testIncompatabilityWithRM3(self): + should = querybuilder.JBooleanClauseOccur['should'].value + query_builder = querybuilder.get_boolean_query_builder() + query_builder.add(querybuilder.get_term_query('information'), should) + query_builder.add(querybuilder.get_term_query('retrieval'), should) + + query = query_builder.build() + hits = self.searcher.search(query) + self.assertEqual(10, len(hits)) + + self.searcher.set_rm3() + self.assertTrue(self.searcher.is_using_rm3()) + + with self.assertRaises(NotImplementedError): + self.searcher.search(query) + + def testTermQuery2(self): + term_query1 = querybuilder.get_term_query('inform', analyzer=get_lucene_analyzer(stemming=False)) + term_query2 = querybuilder.get_term_query('retriev', analyzer=get_lucene_analyzer(stemming=False)) + + should = querybuilder.JBooleanClauseOccur['should'].value + + boolean_query1 = querybuilder.get_boolean_query_builder() + boolean_query1.add(term_query1, should) + boolean_query1.add(term_query2, should) + + bq1 = boolean_query1.build() + hits1 = self.searcher.search(bq1) + hits2 = self.searcher.search('information retrieval') + + for h1, h2 in zip(hits1, hits2): + self.assertEqual(h1.docid, h2.docid) + self.assertEqual(h1.score, h2.score) + + def tearDown(self): + self.searcher.close() + os.remove(self.tarball_name) + shutil.rmtree(self.index_dir) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_search.py b/tests/test_search.py new file mode 100644 index 0000000000000000000000000000000000000000..eb2bbabd405a00d60fd638af517438d06567a3d8 --- /dev/null +++ b/tests/test_search.py @@ -0,0 +1,414 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from typing import List, Dict +from urllib.request import urlretrieve + +from pyserini.search.lucene import LuceneSearcher, JLuceneSearcherResult +from pyserini.index.lucene import Document + + +class TestSearch(unittest.TestCase): + @classmethod + def setUpClass(cls): + # Download pre-built CACM index built using Lucene 9; append a random value to avoid filename clashes. + r = randint(0, 10000000) + cls.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene9-index.cacm.tar.gz' + cls.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + cls.index_dir = 'index{}/'.format(r) + + filename, headers = urlretrieve(cls.collection_url, cls.tarball_name) + + tarball = tarfile.open(cls.tarball_name) + tarball.extractall(cls.index_dir) + tarball.close() + + cls.searcher = LuceneSearcher(f'{cls.index_dir}lucene9-index.cacm') + + # Create index without document vectors + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('tests'): + corpus_path = '../tests/resources/sample_collection_json' + else: + corpus_path = 'tests/resources/sample_collection_json' + cls.no_vec_index_dir = 'no_vec_index' + cmd1 = f'python -m pyserini.index.lucene -collection JsonCollection ' + \ + f'-generator DefaultLuceneDocumentGenerator ' + \ + f'-threads 1 -input {corpus_path} -index {cls.no_vec_index_dir}' + os.system(cmd1) + cls.no_vec_searcher = LuceneSearcher(cls.no_vec_index_dir) + + def test_basic(self): + self.assertTrue(self.searcher.get_similarity().toString().startswith('BM25')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(hits, List)) + + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertEqual(hits[0].lucene_docid, 3133) + self.assertEqual(len(hits[0].contents), 1500) + self.assertEqual(len(hits[0].raw), 1532) + self.assertAlmostEqual(hits[0].score, 4.76550, places=5) + + # Test accessing the raw Lucene document and fetching fields from it: + self.assertEqual(hits[0].lucene_document.getField('id').stringValue(), 'CACM-3134') + self.assertEqual(hits[0].lucene_document.get('id'), 'CACM-3134') # simpler call, same result as above + self.assertEqual(len(hits[0].lucene_document.getField('raw').stringValue()), 1532) + self.assertEqual(len(hits[0].lucene_document.get('raw')), 1532) # simpler call, same result as above + + self.assertTrue(isinstance(hits[9], JLuceneSearcherResult)) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.21740, places=5) + + hits = self.searcher.search('search') + + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(hits[0].docid, 'CACM-3058') + self.assertAlmostEqual(hits[0].score, 2.85760, places=5) + + self.assertTrue(isinstance(hits[9], JLuceneSearcherResult)) + self.assertEqual(hits[9].docid, 'CACM-3040') + self.assertAlmostEqual(hits[9].score, 2.68780, places=5) + + def test_batch(self): + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], threads=2) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(results['q1'][0].docid, 'CACM-3134') + self.assertAlmostEqual(results['q1'][0].score, 4.76550, places=5) + + self.assertTrue(isinstance(results['q1'][9], JLuceneSearcherResult)) + self.assertEqual(results['q1'][9].docid, 'CACM-2516') + self.assertAlmostEqual(results['q1'][9].score, 4.21740, places=5) + + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(results['q2'][0].docid, 'CACM-3058') + self.assertAlmostEqual(results['q2'][0].score, 2.85760, places=5) + + self.assertTrue(isinstance(results['q2'][9], JLuceneSearcherResult)) + self.assertEqual(results['q2'][9].docid, 'CACM-3040') + self.assertAlmostEqual(results['q2'][9].score, 2.68780, places=5) + + def test_batch_rocchio(self): + self.searcher.set_rocchio() + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], threads=2) + self.searcher.unset_rocchio() + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(results['q1'][0].docid, 'CACM-3134') + self.assertAlmostEqual(results['q1'][0].score, 7.18830, places=5) + + self.assertTrue(isinstance(results['q1'][9], JLuceneSearcherResult)) + self.assertEqual(results['q1'][9].docid, 'CACM-2140') + self.assertAlmostEqual(results['q1'][9].score, 5.57970, places=5) + + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(results['q2'][0].docid, 'CACM-3041') + self.assertAlmostEqual(results['q2'][0].score, 6.14870, places=5) + + self.assertTrue(isinstance(results['q2'][9], JLuceneSearcherResult)) + self.assertEqual(results['q2'][9].docid, 'CACM-2251') + self.assertAlmostEqual(results['q2'][9].score, 4.97380, places=5) + + def test_basic_k(self): + hits = self.searcher.search('information retrieval', k=100) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(len(hits), 100) + + def test_batch_k(self): + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], k=100, threads=2) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q1']), 100) + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q2']), 100) + + def test_basic_fields(self): + # This test just provides a sanity check, it's not that interesting as it only searches one field. + hits = self.searcher.search('information retrieval', k=42, fields={'contents': 2.0}) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(len(hits), 42) + + def test_batch_fields(self): + # This test just provides a sanity check, it's not that interesting as it only searches one field. + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], k=42, + threads=2, fields={'contents': 2.0}) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q1']), 42) + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q2']), 42) + + def test_different_similarity(self): + # qld, default mu + self.searcher.set_qld() + self.assertTrue(self.searcher.get_similarity().toString().startswith('LM Dirichlet')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 3.68030, places=5) + self.assertEqual(hits[9].docid, 'CACM-1927') + self.assertAlmostEqual(hits[9].score, 2.53240, places=5) + + # bm25, default parameters + self.searcher.set_bm25() + self.assertTrue(self.searcher.get_similarity().toString().startswith('BM25')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.76550, places=5) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.21740, places=5) + + # qld, custom mu + self.searcher.set_qld(100) + self.assertTrue(self.searcher.get_similarity().toString().startswith('LM Dirichlet')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 6.35580, places=5) + self.assertEqual(hits[9].docid, 'CACM-2631') + self.assertAlmostEqual(hits[9].score, 5.18960, places=5) + + # bm25, custom parameters + self.searcher.set_bm25(0.8, 0.3) + self.assertTrue(self.searcher.get_similarity().toString().startswith('BM25')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.86880, places=5) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.33320, places=5) + + def test_rm3(self): + self.searcher = LuceneSearcher(f'{self.index_dir}lucene9-index.cacm') + self.searcher.set_rm3() + self.assertTrue(self.searcher.is_using_rm3()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 2.17350, places=5) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 1.70180, places=5) + + feedback_terms = self.searcher.get_feedback_terms('information retrieval') + self.assertEqual(len(feedback_terms), 10) + self.assertAlmostEqual(feedback_terms['storag'], 0.024701, places=5) + + self.searcher.unset_rm3() + self.assertFalse(self.searcher.is_using_rm3()) + self.assertIsNone(self.searcher.get_feedback_terms('information retrieval')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.76550, places=5) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.21740, places=5) + + self.searcher.set_rm3(fb_docs=4, fb_terms=6, original_query_weight=0.3) + self.assertTrue(self.searcher.is_using_rm3()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 2.17150, places=5) + self.assertEqual(hits[9].docid, 'CACM-1457') + self.assertAlmostEqual(hits[9].score, 1.45560, places=5) + + with self.assertRaises(TypeError): + self.no_vec_searcher.set_rm3() + + def test_rocchio(self): + self.searcher = LuceneSearcher(f'{self.index_dir}lucene9-index.cacm') + self.searcher.set_rocchio() + self.assertTrue(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 7.18830, places=5) + self.assertEqual(hits[9].docid, 'CACM-2140') + self.assertAlmostEqual(hits[9].score, 5.57970, places=5) + + feedback_terms = self.searcher.get_feedback_terms('information retrieval') + self.assertEqual(len(feedback_terms), 10) + self.assertAlmostEqual(feedback_terms['storag'], 0.132200, places=5) + + self.searcher.unset_rocchio() + self.assertFalse(self.searcher.is_using_rocchio()) + self.assertIsNone(self.searcher.get_feedback_terms('information retrieval')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.76550, places=5) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.21740, places=5) + + self.searcher.set_rocchio(top_fb_terms=10, top_fb_docs=8, bottom_fb_terms=10, + bottom_fb_docs=8, alpha=0.4, beta=0.5, gamma=0.1, + debug=False, use_negative=True) + self.assertTrue(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 3.64890, places=5) + self.assertEqual(hits[9].docid, 'CACM-1032') + self.assertAlmostEqual(hits[9].score, 2.57510, places=5) + + self.searcher.set_rocchio(top_fb_terms=10, top_fb_docs=8, bottom_fb_terms=10, + bottom_fb_docs=8, alpha=0.4, beta=0.5, gamma=0.1, + debug=False, use_negative=False) + self.assertTrue(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.03900, places=5) + self.assertEqual(hits[9].docid, 'CACM-1032') + self.assertAlmostEqual(hits[9].score, 2.91550, places=5) + + with self.assertRaises(TypeError): + self.no_vec_searcher.set_rocchio() + + def test_doc_int(self): + # The doc method is overloaded: if input is int, it's assumed to be a Lucene internal docid. + doc = self.searcher.doc(1) + self.assertTrue(isinstance(doc, Document)) + + # These are all equivalent ways to get the docid. + self.assertEqual('CACM-0002', doc.id()) + self.assertEqual('CACM-0002', doc.docid()) + self.assertEqual('CACM-0002', doc.get('id')) + self.assertEqual('CACM-0002', doc.lucene_document().getField('id').stringValue()) + + # These are all equivalent ways to get the 'raw' field + self.assertEqual(186, len(doc.raw())) + self.assertEqual(186, len(doc.get('raw'))) + self.assertEqual(186, len(doc.lucene_document().get('raw'))) + self.assertEqual(186, len(doc.lucene_document().getField('raw').stringValue())) + + # These are all equivalent ways to get the 'contents' field + self.assertEqual(154, len(doc.contents())) + self.assertEqual(154, len(doc.get('contents'))) + self.assertEqual(154, len(doc.lucene_document().get('contents'))) + self.assertEqual(154, len(doc.lucene_document().getField('contents').stringValue())) + + # Should return None if we request a docid that doesn't exist + self.assertTrue(self.searcher.doc(314159) is None) + + def test_doc_str(self): + # The doc method is overloaded: if input is str, it's assumed to be an external collection docid. + doc = self.searcher.doc('CACM-0002') + self.assertTrue(isinstance(doc, Document)) + + # These are all equivalent ways to get the docid. + self.assertEqual(doc.lucene_document().getField('id').stringValue(), 'CACM-0002') + self.assertEqual(doc.id(), 'CACM-0002') + self.assertEqual(doc.docid(), 'CACM-0002') + self.assertEqual(doc.get('id'), 'CACM-0002') + + # These are all equivalent ways to get the 'raw' field + self.assertEqual(186, len(doc.raw())) + self.assertEqual(186, len(doc.get('raw'))) + self.assertEqual(186, len(doc.lucene_document().get('raw'))) + self.assertEqual(186, len(doc.lucene_document().getField('raw').stringValue())) + + # These are all equivalent ways to get the 'contents' field + self.assertEqual(154, len(doc.contents())) + self.assertEqual(154, len(doc.get('contents'))) + self.assertEqual(154, len(doc.lucene_document().get('contents'))) + self.assertEqual(154, len(doc.lucene_document().getField('contents').stringValue())) + + # Should return None if we request a docid that doesn't exist + self.assertTrue(self.searcher.doc('foo') is None) + + def test_batch_doc(self): + docids = ['CACM-0002', 'CACM-3134', 'Fake Doc1', 'Fake Doc2'] + batch_doc = self.searcher.batch_doc(docids, threads=2) + + # Doc Id should have corresponding Document object in batch result + for docid in docids[:2]: + doc = batch_doc.get(docid) + self.assertTrue(isinstance(doc, Document)) + self.assertEqual(doc.lucene_document().getField('id').stringValue(), docid) + self.assertEqual(doc.id(), docid) + self.assertEqual(doc.docid(), docid) + self.assertEqual(doc.get('id'), docid) + + # None should be returned for docids that don't exist + for docid in docids[2:]: + doc = batch_doc.get(docid[-1]) + self.assertEqual(doc, None) + + def test_doc_by_field(self): + self.assertEqual(self.searcher.doc('CACM-3134').docid(), + self.searcher.doc_by_field('id', 'CACM-3134').docid()) + + # Should return None if we request a docid that doesn't exist + self.assertTrue(self.searcher.doc_by_field('foo', 'bar') is None) + + @classmethod + def tearDownClass(cls): + cls.searcher.close() + cls.no_vec_searcher.close() + os.remove(cls.tarball_name) + shutil.rmtree(cls.index_dir) + shutil.rmtree(cls.no_vec_index_dir) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_search_lucene8.py b/tests/test_search_lucene8.py new file mode 100644 index 0000000000000000000000000000000000000000..26b032d4ef334516e2c09364b038b52ff22013c5 --- /dev/null +++ b/tests/test_search_lucene8.py @@ -0,0 +1,277 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import os +import shutil +import tarfile +import unittest +from random import randint +from typing import List, Dict +from urllib.request import urlretrieve + +from pyserini.search.lucene import LuceneSearcher, JLuceneSearcherResult + + +class TestSearch(unittest.TestCase): + @classmethod + def setUpClass(cls): + # Download pre-built CACM index; append a random value to avoid filename clashes. + r = randint(0, 10000000) + cls.collection_url = 'https://github.com/castorini/anserini-data/raw/master/CACM/lucene-index.cacm.tar.gz' + cls.tarball_name = 'lucene-index.cacm-{}.tar.gz'.format(r) + cls.index_dir = 'index{}/'.format(r) + urlretrieve(cls.collection_url, cls.tarball_name) + + tarball = tarfile.open(cls.tarball_name) + tarball.extractall(cls.index_dir) + tarball.close() + + cls.searcher = LuceneSearcher(f'{cls.index_dir}lucene-index.cacm') + + def test_basic(self): + self.assertTrue(self.searcher.get_similarity().toString().startswith('BM25')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(hits, List)) + + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertEqual(hits[0].lucene_docid, 3133) + self.assertEqual(len(hits[0].contents), 1500) + self.assertEqual(len(hits[0].raw), 1532) + self.assertAlmostEqual(hits[0].score, 4.7655, places=4) + + # Test accessing the raw Lucene document and fetching fields from it: + self.assertEqual(hits[0].lucene_document.getField('id').stringValue(), 'CACM-3134') + self.assertEqual(hits[0].lucene_document.get('id'), 'CACM-3134') # simpler call, same result as above + self.assertEqual(len(hits[0].lucene_document.getField('raw').stringValue()), 1532) + self.assertEqual(len(hits[0].lucene_document.get('raw')), 1532) # simpler call, same result as above + + self.assertTrue(isinstance(hits[9], JLuceneSearcherResult)) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.2174, places=4) + + hits = self.searcher.search('search') + + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(hits[0].docid, 'CACM-3058') + self.assertAlmostEqual(hits[0].score, 2.8576, places=4) + + self.assertTrue(isinstance(hits[9], JLuceneSearcherResult)) + self.assertEqual(hits[9].docid, 'CACM-3040') + self.assertAlmostEqual(hits[9].score, 2.6878, places=4) + + def test_batch(self): + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], threads=2) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(results['q1'][0].docid, 'CACM-3134') + self.assertAlmostEqual(results['q1'][0].score, 4.7655, places=4) + + self.assertTrue(isinstance(results['q1'][9], JLuceneSearcherResult)) + self.assertEqual(results['q1'][9].docid, 'CACM-2516') + self.assertAlmostEqual(results['q1'][9].score, 4.2174, places=4) + + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(results['q2'][0].docid, 'CACM-3058') + self.assertAlmostEqual(results['q2'][0].score, 2.8576, places=4) + + self.assertTrue(isinstance(results['q2'][9], JLuceneSearcherResult)) + self.assertEqual(results['q2'][9].docid, 'CACM-3040') + self.assertAlmostEqual(results['q2'][9].score, 2.6878, places=4) + + def test_basic_k(self): + hits = self.searcher.search('information retrieval', k=100) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(len(hits), 100) + + def test_batch_k(self): + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], k=100, threads=2) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q1']), 100) + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q2']), 100) + + def test_basic_fields(self): + # This test just provides a sanity check, it's not that interesting as it only searches one field. + hits = self.searcher.search('information retrieval', k=42, fields={'contents': 2.0},) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(hits, List)) + self.assertTrue(isinstance(hits[0], JLuceneSearcherResult)) + self.assertEqual(len(hits), 42) + + def test_batch_fields(self): + # This test just provides a sanity check, it's not that interesting as it only searches one field. + results = self.searcher.batch_search(['information retrieval', 'search'], ['q1', 'q2'], k=42, + threads=2, fields={'contents': 2.0}) + + self.assertEqual(3204, self.searcher.num_docs) + self.assertTrue(isinstance(results, Dict)) + self.assertTrue(isinstance(results['q1'], List)) + self.assertTrue(isinstance(results['q1'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q1']), 42) + self.assertTrue(isinstance(results['q2'], List)) + self.assertTrue(isinstance(results['q2'][0], JLuceneSearcherResult)) + self.assertEqual(len(results['q2']), 42) + + def test_different_similarity(self): + # qld, default mu + self.searcher.set_qld() + self.assertTrue(self.searcher.get_similarity().toString().startswith('LM Dirichlet')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 3.6803, places=4) + self.assertEqual(hits[9].docid, 'CACM-1927') + self.assertAlmostEqual(hits[9].score, 2.5324, places=4) + + # bm25, default parameters + self.searcher.set_bm25() + self.assertTrue(self.searcher.get_similarity().toString().startswith('BM25')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.7655, places=4) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.2174, places=4) + + # qld, custom mu + self.searcher.set_qld(100) + self.assertTrue(self.searcher.get_similarity().toString().startswith('LM Dirichlet')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 6.3558, places=4) + self.assertEqual(hits[9].docid, 'CACM-2631') + self.assertAlmostEqual(hits[9].score, 5.1896, places=4) + + # bm25, custom parameters + self.searcher.set_bm25(0.8, 0.3) + self.assertTrue(self.searcher.get_similarity().toString().startswith('BM25')) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.8688, places=4) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.3332, places=4) + + def test_rm3(self): + self.searcher = LuceneSearcher(f'{self.index_dir}lucene-index.cacm') + self.searcher.set_rm3() + self.assertTrue(self.searcher.is_using_rm3()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 2.1735, places=4) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 1.7018, places=4) + + self.searcher.unset_rm3() + self.assertFalse(self.searcher.is_using_rm3()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.7655, places=4) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.2174, places=4) + + self.searcher.set_rm3(fb_docs=4, fb_terms=6, original_query_weight=0.3) + self.assertTrue(self.searcher.is_using_rm3()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 2.1715, places=4) + self.assertEqual(hits[9].docid, 'CACM-1457') + self.assertAlmostEqual(hits[9].score, 1.4556, places=4) + + def test_rocchio(self): + self.searcher = LuceneSearcher(f'{self.index_dir}lucene-index.cacm') + self.searcher.set_rocchio() + self.assertTrue(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 7.1883, places=4) + self.assertEqual(hits[9].docid, 'CACM-2140') + self.assertAlmostEqual(hits[9].score, 5.5797, places=4) + + self.searcher.unset_rocchio() + self.assertFalse(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.7655, places=4) + self.assertEqual(hits[9].docid, 'CACM-2516') + self.assertAlmostEqual(hits[9].score, 4.2174, places=4) + + self.searcher.set_rocchio(top_fb_terms=10, top_fb_docs=8, bottom_fb_terms=10, + bottom_fb_docs=8, alpha=0.4, beta=0.5, gamma=0.1, + debug=False, use_negative=True) + self.assertTrue(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 3.6489, places=4) + self.assertEqual(hits[9].docid, 'CACM-1032') + self.assertAlmostEqual(hits[9].score, 2.5751, places=4) + + self.searcher.set_rocchio(top_fb_terms=10, top_fb_docs=8, bottom_fb_terms=10, + bottom_fb_docs=8, alpha=0.4, beta=0.5, gamma=0.1, + debug=False, use_negative=False) + self.assertTrue(self.searcher.is_using_rocchio()) + + hits = self.searcher.search('information retrieval') + + self.assertEqual(hits[0].docid, 'CACM-3134') + self.assertAlmostEqual(hits[0].score, 4.0390, places=4) + self.assertEqual(hits[9].docid, 'CACM-1032') + self.assertAlmostEqual(hits[9].score, 2.9155, places=4) + + @classmethod + def tearDownClass(cls): + cls.searcher.close() + os.remove(cls.tarball_name) + shutil.rmtree(cls.index_dir) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_tokenization.py b/tests/test_tokenization.py new file mode 100644 index 0000000000000000000000000000000000000000..c8cb36bc6af99c8c53308278a104da68751fe173 --- /dev/null +++ b/tests/test_tokenization.py @@ -0,0 +1,641 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import unittest + +from transformers import BertTokenizer, T5Tokenizer, AutoTokenizer +from pyserini.analysis import Analyzer, get_lucene_analyzer + + +class TestTokenization(unittest.TestCase): + def setUp(self): + pass + + def test_bert_base_uncased_demo(self): + # https://huggingface.co/transformers/tokenizer_summary.html + tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') + tokens = tokenizer.tokenize('I have a new GPU!') + self.assertEqual(['i', 'have', 'a', 'new', 'gp', '##u', '!'], tokens) + + def test_bert_base_uncased_en_book_examples(self): + # These are examples used in the ptr4tr book + tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') + + tokens = tokenizer.tokenize('walking talking balking biking hiking rolling scrolling') + self.assertEqual(['walking', 'talking', 'bal', '##king', 'biking', 'hiking', 'rolling', 'scrolling'], tokens) + + tokens = tokenizer.tokenize('biostatistics') + self.assertEqual(['bio', '##sta', '##tist', '##ics'], tokens) + + tokens = tokenizer.tokenize('adversarial') + self.assertEqual(['ad', '##vers', '##aria', '##l'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-cased') + tokens = tokenizer.tokenize('walking talking balking biking hiking') + self.assertEqual(['walking', 'talking', 'b', '##alk', '##ing', 'bi', '##king', 'hiking'], tokens) + + tokens = tokenizer.tokenize('rolling scrolling') + self.assertEqual(['rolling', 'scroll', '##ing'], tokens) + + tokens = tokenizer.tokenize('biostatistics') + self.assertEqual(['bio', '##sta', '##tist', '##ics'], tokens) + + tokens = tokenizer.tokenize('adversarial') + self.assertEqual(['ad', '##vers', '##aria', '##l'], tokens) + + def test_xlm_roberta_base_en_book_examples(self): + # These are examples used in the ptr4tr book + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('walking talking balking biking hiking rolling scrolling') + self.assertEqual(['▁walking', '▁talking', '▁bal', 'king', '▁bi', 'king', '▁hi', 'king', '▁roll', 'ing', '▁scroll', 'ing'], tokens) + + tokens = tokenizer.tokenize('rolling scrolling') + self.assertEqual(['▁roll', 'ing', '▁scroll', 'ing'], tokens) + + tokens = tokenizer.tokenize('biostatistics') + self.assertEqual(['▁bio', 'stat', 'istic', 's'], tokens) + + tokens = tokenizer.tokenize('adversarial') + self.assertEqual(['▁adversari', 'al'], tokens) + + def test_bert_base_multilingual_en_book_examples(self): + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('walking talking balking biking hiking rolling scrolling') + self.assertEqual(['walking', 'talking', 'bal', '##king', 'bi', '##king', 'hi', '##king', 'rolling', 'sc', '##roll', '##ing'], tokens) + + tokens = tokenizer.tokenize('rolling scrolling') + self.assertEqual(['rolling', 'sc', '##roll', '##ing'], tokens) + + tokens = tokenizer.tokenize('biostatistics') + self.assertEqual(['bio', '##stat', '##istic', '##s'], tokens) + + tokens = tokenizer.tokenize('adversarial') + self.assertEqual(['ad', '##versari', '##al'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + tokens = tokenizer.tokenize('walking talking balking biking hiking') + self.assertEqual(['walking', 'talking', 'bal', '##king', 'bi', '##king', 'hi', '##king'], tokens) + + tokens = tokenizer.tokenize('rolling scrolling') + self.assertEqual(['rolling', 's', '##cro', '##lling'], tokens) + + tokens = tokenizer.tokenize('biostatistics') + self.assertEqual(['bio', '##stati', '##stic', '##s'], tokens) + + tokens = tokenizer.tokenize('adversarial') + self.assertEqual(['ad', '##versari', '##al'], tokens) + + def test_lucene_analyzer_en_book_examples(self): + analyzer = Analyzer(get_lucene_analyzer()) + + tokens = analyzer.analyze('walking talking balking biking hiking rolling scrolling') + self.assertEqual(['walk', 'talk', 'balk', 'bike', 'hike', 'roll', 'scroll'], tokens) + + tokens = analyzer.analyze('rolling scrolling') + self.assertEqual(['roll', 'scroll'], tokens) + + tokens = analyzer.analyze('biostatistics') + self.assertEqual(['biostatist'], tokens) + + tokens = analyzer.analyze('adversarial') + self.assertEqual(['adversari'], tokens) + + def test_bert_base_multilingual_fr_book_examples(self): + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('marche parler vélo randonnée rouler défilement') + self.assertEqual(['marche', 'parler', 'velo', 'rand', '##onne', '##e', 'ro', '##uler', 'def', '##ile', '##ment'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('défilement roulant') + self.assertEqual(['def', '##ile', '##ment', 'ro', '##ulant'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('biostatistique') + self.assertEqual(['bio', '##stat', '##istique'], tokens) + + # adversarial + tokens = tokenizer.tokenize('antagoniste') + self.assertEqual(['ant', '##ago', '##niste'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('marche parler vélo randonnée rouler défilement') + self.assertEqual(['marche', 'parler', 'v', '##él', '##o', 'rand', '##onnée', 'ro', '##uler', 'dé', '##file', '##ment'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('défilement roulant') + self.assertEqual(['dé', '##file', '##ment', 'ro', '##ulant'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('biostatistique') + self.assertEqual(['bio', '##stati', '##stique'], tokens) + + # adversarial + tokens = tokenizer.tokenize('antagoniste') + self.assertEqual(['ant', '##agon', '##iste'], tokens) + + def test_lucene_analyzer_fr_book_examples(self): + analyzer = Analyzer(get_lucene_analyzer(language='fr')) + + tokens = analyzer.analyze('marche parler vélo randonnée rouler défilement') + self.assertEqual(['march', 'parl', 'vélo', 'randon', 'roul', 'defil'], tokens) + + tokens = analyzer.analyze('défilement roulant') + self.assertEqual(['defil', 'roulant'], tokens) + + tokens = analyzer.analyze('biostatistique') + self.assertEqual(['biostatist'], tokens) + + tokens = analyzer.analyze('antagoniste') + self.assertEqual(['antagonist'], tokens) + + def test_bert_base_multilingual_zh_book_examples(self): + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('走路说话骑自行车远足滚动滚动') + self.assertEqual(['走', '路', '说', '话', '骑', '自', '行', '车', '远', '足', '滚', '动', '滚', '动'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('滚动滚动') + self.assertEqual(['滚', '动', '滚', '动'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('生物统计学') + self.assertEqual(['生', '物', '统', '计', '学'], tokens) + + # adversarial + tokens = tokenizer.tokenize('对抗的') + self.assertEqual(['对', '抗', '的'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('走路说话骑自行车远足滚动滚动') + self.assertEqual(['走', '路', '说', '话', '骑', '自', '行', '车', '远', '足', '滚', '动', '滚', '动'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('滚动滚动') + self.assertEqual(['滚', '动', '滚', '动'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('生物统计学') + self.assertEqual(['生', '物', '统', '计', '学'], tokens) + + # adversarial + tokens = tokenizer.tokenize('对抗的') + self.assertEqual(['对', '抗', '的'], tokens) + + def test_lucene_analyzer_zh_book_examples(self): + analyzer = Analyzer(get_lucene_analyzer(language='zh')) + + tokens = analyzer.analyze('走路说话骑自行车远足滚动滚动') + self.assertEqual(['走路', '路说', '说话', '话骑', '骑自', '自行', '行车', '车远', '远足', '足滚', '滚动', '动滚', '滚动'], tokens) + + tokens = analyzer.analyze('滚动滚动') + self.assertEqual(['滚动', '动滚', '滚动'], tokens) + + tokens = analyzer.analyze('生物统计学') + self.assertEqual(['生物', '物统', '统计', '计学'], tokens) + + tokens = analyzer.analyze('对抗的') + self.assertEqual(['对抗', '抗的'], tokens) + + def test_bert_base_multilingual_ar_book_examples(self): + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('المشي الحديث ركوب الدراجات المشي لمسافات طويلة المتداول التمرير') + self.assertEqual(['ال', '##م', '##شي', 'الحديث', 'ر', '##كو', '##ب', 'ال', '##در', '##اج', '##ات', 'ال', '##م', '##شي', 'لم', '##سا', '##فات', 'طويلة', 'ال', '##مت', '##دا', '##ول', 'ال', '##تم', '##رير'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('المتداول التمرير') + self.assertEqual(['ال', '##مت', '##دا', '##ول', 'ال', '##تم', '##رير'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('الإحصاء الحيوي') + self.assertEqual(['الاحصاء', 'ال', '##حي', '##وي'], tokens) + + # adversarial + tokens = tokenizer.tokenize('عدائي') + self.assertEqual(['ع', '##دا', '##يي'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('المشي الحديث ركوب الدراجات المشي لمسافات طويلة المتداول التمرير') + self.assertEqual(['ال', '##م', '##شي', 'الحديث', 'ر', '##كو', '##ب', 'ال', '##در', '##اجات', 'ال', '##م', '##شي', 'لم', '##سا', '##فات', 'طويلة', 'ال', '##مت', '##دا', '##ول', 'ال', '##تم', '##رير'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('المتداول التمرير') + self.assertEqual(['ال', '##مت', '##دا', '##ول', 'ال', '##تم', '##رير'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('الإحصاء الحيوي') + self.assertEqual(['الإحصاء', 'ال', '##حي', '##وي'], tokens) + + # adversarial + tokens = tokenizer.tokenize('عدائي') + self.assertEqual(['ع', '##دا', '##ئي'], tokens) + + def test_bert_base_multilingual_hi_book_examples(self): + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('चलने की बात करते हुए बाइक चलाना लंबी पैदल यात्रा स्क्रॉल') + self.assertEqual(['चल', '##न', 'की', 'बात', 'करत', 'हए', 'ब', '##ा', '##इ', '##क', 'चल', '##ाना', 'ल', '##बी', 'पद', '##ल', 'यातरा', 'सक', '##र', '##ॉल'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('रोलिंग स्क्रॉल') + self.assertEqual(['र', '##ोल', '##िग', 'सक', '##र', '##ॉल'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('जैव सांख्यिकी') + self.assertEqual(['ज', '##व', 'स', '##ा', '##ख', '##यिक', '##ी'], tokens) + + # adversarial + tokens = tokenizer.tokenize('विरोधात्मक') + self.assertEqual(['वि', '##रो', '##धा', '##तमक'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('चलने की बात करते हुए बाइक चलाना लंबी पैदल यात्रा स्क्रॉल') + self.assertEqual(['च', '##लन', '##े', 'की', 'बात', 'करते', 'हुए', 'ब', '##ा', '##इ', '##क', 'च', '##ला', '##ना', 'ल', '##ं', '##बी', 'प', '##ै', '##दल', 'यात्रा', 'स', '##्क', '##्र', '##ॉल'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('रोलिंग स्क्रॉल') + self.assertEqual(['र', '##ोल', '##िंग', 'स', '##्क', '##्र', '##ॉल'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('जैव सांख्यिकी') + self.assertEqual(['ज', '##ै', '##व', 'स', '##ा', '##ं', '##ख', '##्य', '##िकी'], tokens) + + # adversarial + tokens = tokenizer.tokenize('विरोधात्मक') + self.assertEqual(['वि', '##रो', '##धा', '##त्मक'], tokens) + + def test_bert_base_multilingual_bn_book_examples(self): + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('হাঁটাচলা বাইকিং হাইকিং রোলিং স্ক্রোলিং') + self.assertEqual(['হ', '##াট', '##া', '##চ', '##লা', 'বা', '##ই', '##কি', '##ং', 'হ', '##াই', '##কি', '##ং', 'র', '##ো', '##লি', '##ং', 'স', '##কর', '##ো', '##লি', '##ং'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('ঘূর্ণায়মান স্ক্রোলিং') + self.assertEqual(['ঘর', '##ণা', '##য', '##মান', 'স', '##কর', '##ো', '##লি', '##ং'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('বায়োস্টাটিক্স') + self.assertEqual(['বা', '##যে', '##াস', '##টা', '##টি', '##ক', '##স'], tokens) + + # adversarial + tokens = tokenizer.tokenize('প্রতিকূল') + self.assertEqual(['পরতি', '##ক', '##ল'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + # walking talking biking hiking rolling scrolling + tokens = tokenizer.tokenize('হাঁটাচলা বাইকিং হাইকিং রোলিং স্ক্রোলিং') + self.assertEqual(['হ', '##া', '##ঁ', '##টা', '##চ', '##লা', 'বা', '##ই', '##কি', '##ং', 'হ', '##াই', '##কি', '##ং', 'র', '##োল', '##িং', 'স', '##্ক', '##্র', '##োল', '##িং'], tokens) + + # rolling scrolling + tokens = tokenizer.tokenize('ঘূর্ণায়মান স্ক্রোলিং') + self.assertEqual(['ঘ', '##ূর্ণ', '##ায়', '##মান', 'স', '##্ক', '##্র', '##োল', '##িং'], tokens) + + # biostatistics + tokens = tokenizer.tokenize('বায়োস্টাটিক্স') + self.assertEqual(['বা', '##য়', '##ো', '##স্ট', '##াট', '##িক', '##্স'], tokens) + + # adversarial + tokens = tokenizer.tokenize('প্রতিকূল') + self.assertEqual(['প্রতি', '##ক', '##ূ', '##ল'], tokens) + + def test_bert_base_multilingual_am(self): + """ + amharic + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('የሽፋኑ ርዕሰ ጉዳይ የሞቱ ሰዎች ይነሳሉ') + self.assertEqual(['[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]'], tokens) + + tokens = tokenizer.tokenize('የሽፋኑ') + self.assertEqual(['[UNK]'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('የሽፋኑ ርዕሰ ጉዳይ የሞቱ ሰዎች ይነሳሉ') + self.assertEqual(['[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]'], tokens) + + tokens = tokenizer.tokenize('የሽፋኑ') + self.assertEqual(['[UNK]'], tokens) + + def test_xlmr_base_multilingual_am(self): + """ + amharic + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('የሽፋኑ ርዕሰ ጉዳይ የሞቱ ሰዎች ይነሳሉ') + self.assertEqual(['▁የ', 'ሽ', 'ፋ', 'ኑ', '▁ርዕሰ', '▁ጉዳይ', '▁የ', 'ሞቱ', '▁ሰዎች', '▁ይ', 'ነሳ', 'ሉ'], tokens) + + tokens = tokenizer.tokenize('የሽፋኑ') + self.assertEqual(['▁የ', 'ሽ', 'ፋ', 'ኑ'], tokens) + + def test_bert_base_multilingual_ha(self): + """ + hausa + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Ya san kungiyar, ya san komai game da kungiyar') + self.assertEqual(['ya', 'san', 'kung', '##iya', '##r', ',', 'ya', 'san', 'koma', '##i', 'game', 'da', 'kung', '##iya', '##r'], tokens) + + tokens = tokenizer.tokenize('kungiyar') + self.assertEqual(['kung', '##iya', '##r'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Ya san kungiyar, ya san komai game da kungiyar') + self.assertEqual(['Ya', 'san', 'kung', '##iya', '##r', ',', 'ya', 'san', 'koma', '##i', 'game', 'da', 'kung', '##iya', '##r'], tokens) + + tokens = tokenizer.tokenize('kungiyar') + self.assertEqual(['kung', '##iya', '##r'], tokens) + + def test_xlmr_base_multilingual_ha(self): + """ + hausa + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Ya san kungiyar, ya san komai game da kungiyar') + self.assertEqual(['▁Ya', '▁san', '▁kungiyar', ',', '▁ya', '▁san', '▁koma', 'i', '▁game', '▁da', '▁kungiyar'], tokens) + + tokens = tokenizer.tokenize('kungiyar') + self.assertEqual(['▁kungiyar'], tokens) + + def test_bert_base_multilingual_ig(self): + """ + igbo + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Oke Ọñụ Adaa Dịka Lọọlọ Ezenneka gbàrà Ahọ Otu Narị') + self.assertEqual(['ok', '##e', 'onu', 'ada', '##a', 'dik', '##a', 'lo', '##olo', 'ezen', '##nek', '##a', 'gba', '##ra', 'ah', '##o', 'ot', '##u', 'nar', '##i'], tokens) + + tokens = tokenizer.tokenize('Ezenneka') + self.assertEqual(['ezen', '##nek', '##a'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Oke Ọñụ Adaa Dịka Lọọlọ Ezenneka gbàrà Ahọ Otu Narị') + self.assertEqual(['Ok', '##e', 'Ọ', '##ñ', '##ụ', 'Ada', '##a', 'D', '##ị', '##ka', 'L', '##ọ', '##ọ', '##l', '##ọ', 'Ezen', '##nek', '##a', 'g', '##bà', '##rà', 'Ah', '##ọ', 'O', '##tu', 'Na', '##r', '##ị'], tokens) + + tokens = tokenizer.tokenize('Ezenneka') + self.assertEqual(['Ezen', '##nek', '##a'], tokens) + + def test_xlmr_base_multilingual_ig(self): + """ + igbo + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Oke Ọñụ Adaa Dịka Lọọlọ Ezenneka gbàrà Ahọ Otu Narị') + self.assertEqual(['▁O', 'ke', '▁', 'Ọ', 'ñ', 'ụ', '▁Ada', 'a', '▁D', 'ị', 'ka', '▁L', 'ọ', 'ọ', 'l', 'ọ', '▁Ezen', 'nek', 'a', '▁', 'gb', 'à', 'rà', '▁Ah', 'ọ', '▁O', 'tu', '▁Nar', 'ị'], tokens) + + tokens = tokenizer.tokenize('Ezenneka') + self.assertEqual(['▁Ezen', 'nek', 'a'], tokens) + + def test_bert_base_multilingual_om(self): + """ + Afaan Oromoo + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Ani obbolaa keessan, Abdii Baalee Oromiyaatii') + self.assertEqual(['ani', 'ob', '##bola', '##a', 'ke', '##essa', '##n', ',', 'abd', '##ii', 'ba', '##ale', '##e', 'oro', '##mi', '##ya', '##atii'], tokens) + + tokens = tokenizer.tokenize('Oromiyaatii') + self.assertEqual(['oro', '##mi', '##ya', '##atii'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Ani obbolaa keessan, Abdii Baalee Oromiyaatii') + self.assertEqual(['Ani', 'ob', '##bola', '##a', 'ke', '##essa', '##n', ',', 'Abd', '##ii', 'Ba', '##ale', '##e', 'Oro', '##mi', '##ya', '##ati', '##i'], tokens) + + tokens = tokenizer.tokenize('Oromiyaatii') + self.assertEqual(['Oro', '##mi', '##ya', '##ati', '##i'], tokens) + + def test_xlmr_base_multilingual_om(self): + """ + Afaan Oromoo + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Ani obbolaa keessan, Abdii Baalee Oromiyaatii') + self.assertEqual(['▁Ani', '▁ob', 'bola', 'a', '▁keessa', 'n', ',', '▁Ab', 'dii', '▁Ba', 'ale', 'e', '▁Oromiyaa', 'tii'], tokens) + + tokens = tokenizer.tokenize('Oromiyaatii') + self.assertEqual(['▁Oromiyaa', 'tii'], tokens) + + def test_bert_base_multilingual_pcm(self): + """ + Nigerian Pidgin + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Crude oil dey kill pickin for Nigeria?') + self.assertEqual(['cru', '##de', 'oil', 'de', '##y', 'kill', 'pick', '##in', 'for', 'nigeria', '?'], tokens) + + tokens = tokenizer.tokenize('wahala') + self.assertEqual(['wah', '##ala'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Crude oil dey kill pickin for Nigeria?') + self.assertEqual(['C', '##rude', 'oil', 'de', '##y', 'kill', 'pick', '##in', 'for', 'Nigeria', '?'], tokens) + + tokens = tokenizer.tokenize('wahala') + self.assertEqual(['wa', '##hala'], tokens) + + def test_xlmr_base_multilingual_pcm(self): + """ + Nigerian Pidgin + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Crude oil dey kill pickin for Nigeria?') + self.assertEqual(['▁Cru', 'de', '▁oil', '▁de', 'y', '▁kill', '▁pick', 'in', '▁for', '▁Nigeria', '?'], tokens) + + tokens = tokenizer.tokenize('wahala') + self.assertEqual(['▁wa', 'hala'], tokens) + + def test_bert_base_multilingual_so(self): + """ + Somali + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Rabbigu wuxuu amar ku bixiyey in la dumiyo qalcadaha Kancaan.') + self.assertEqual(['rabbi', '##gu', 'wu', '##xu', '##u', 'amar', 'ku', 'bi', '##xi', '##ye', '##y', 'in', 'la', 'dum', '##iy', '##o', 'qal', '##cada', '##ha', 'kan', '##ca', '##an', '.'], tokens) + + tokens = tokenizer.tokenize('bixiyey') + self.assertEqual(['bi', '##xi', '##ye', '##y'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Rabbigu wuxuu amar ku bixiyey in la dumiyo qalcadaha Kancaan.') + self.assertEqual(['Rabbi', '##gu', 'w', '##ux', '##uu', 'amar', 'ku', 'bi', '##xi', '##ye', '##y', 'in', 'la', 'dum', '##iyo', 'q', '##al', '##cada', '##ha', 'Kan', '##ca', '##an', '.'], tokens) + + tokens = tokenizer.tokenize('bixiyey') + self.assertEqual(['bi', '##xi', '##ye', '##y'], tokens) + + def test_xlmr_base_multilingual_so(self): + """ + Somali + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Rabbigu wuxuu amar ku bixiyey in la dumiyo qalcadaha Kancaan.') + self.assertEqual(['▁Rabbi', 'gu', '▁wuxuu', '▁amar', '▁ku', '▁bixi', 'yey', '▁in', '▁la', '▁dum', 'iyo', '▁qal', 'cada', 'ha', '▁Kan', 'ca', 'an', '.'], tokens) + + tokens = tokenizer.tokenize('bixiyey') + self.assertEqual(['▁bixi', 'yey'], tokens) + + def test_bert_base_multilingual_sw(self): + """ + Swahili + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Huduma ya upasuaji mkubwa na mdogo') + self.assertEqual(['hu', '##dum', '##a', 'ya', 'up', '##asu', '##aji', 'mk', '##ubwa', 'na', 'md', '##ogo'], tokens) + + tokens = tokenizer.tokenize('upasuaji') + self.assertEqual(['up', '##asu', '##aji'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Huduma ya upasuaji mkubwa na mdogo') + self.assertEqual(['Hu', '##dum', '##a', 'ya', 'up', '##asu', '##aji', 'mk', '##ub', '##wa', 'na', 'm', '##dogo'], tokens) + + tokens = tokenizer.tokenize('upasuaji') + self.assertEqual(['up', '##asu', '##aji'], tokens) + + def test_xlmr_base_multilingual_sw(self): + """ + Swahili + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Huduma ya upasuaji mkubwa na mdogo') + self.assertEqual(['▁Huduma', '▁ya', '▁up', 'asu', 'aji', '▁mkubwa', '▁na', '▁mdogo'], tokens) + + tokens = tokenizer.tokenize('upasuaji') + self.assertEqual(['▁up', 'asu', 'aji'], tokens) + + def test_bert_base_multilingual_ti(self): + """ + Tigrinya + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('ስርዓተ ቀብሪ ኢንጂነር ስመኘው በቀለ ትማሊ ተፈፂሙ') + self.assertEqual(['[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]'], tokens) + + tokens = tokenizer.tokenize('ኢንጂነር') + self.assertEqual(['[UNK]'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('ስርዓተ ቀብሪ ኢንጂነር ስመኘው በቀለ ትማሊ ተፈፂሙ') + self.assertEqual(['[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]', '[UNK]'], tokens) + + tokens = tokenizer.tokenize('ኢንጂነር') + self.assertEqual(['[UNK]'], tokens) + + def test_xlmr_base_multilingual_ti(self): + """ + Tigrinya + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('ስርዓተ ቀብሪ ኢንጂነር ስመኘው በቀለ ትማሊ ተፈፂሙ') + self.assertEqual(['▁ስር', 'ዓ', 'ተ', '▁ቀ', 'ብሪ', '▁ኢን', 'ጂ', 'ነ', 'ር', '▁ስ', 'መ', 'ኘ', 'ው', '▁በቀለ', '▁ት', 'ማ', 'ሊ', '▁ተፈ', 'ፂ', 'ሙ'], tokens) + + tokens = tokenizer.tokenize('ኢንጂነር') + self.assertEqual(['▁ኢን', 'ጂ', 'ነ', 'ር'], tokens) + + def test_bert_base_multilingual_yo(self): + """ + Yoruba + """ + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-uncased') + + tokens = tokenizer.tokenize('Orúkọ ọmọbinrin rẹ̀ àgbà ni Merabu, ti èyí àbúrò ni Mikali.') + self.assertEqual(['oru', '##ko', 'omo', '##bin', '##rin', 're', 'ag', '##ba', 'ni', 'mera', '##bu', ',', 'ti', 'e', '##yi', 'abu', '##ro', 'ni', 'mika', '##li', '.'], tokens) + + tokens = tokenizer.tokenize('ọmọbinrin') + self.assertEqual(['omo', '##bin', '##rin'], tokens) + + tokenizer = BertTokenizer.from_pretrained('bert-base-multilingual-cased') + + tokens = tokenizer.tokenize('Orúkọ ọmọbinrin rẹ̀ àgbà ni Merabu, ti èyí àbúrò ni Mikali.') + self.assertEqual(['Or', '##ú', '##k', '##ọ', 'ọ', '##m', '##ọ', '##bin', '##rin', 'r', '##ẹ̀', 'à', '##g', '##bà', 'ni', 'Mer', '##abu', ',', 'ti', 'è', '##y', '##í', 'à', '##b', '##úr', '##ò', 'ni', 'Mika', '##li', '.'], tokens) + + tokens = tokenizer.tokenize('ọmọbinrin') + self.assertEqual(['ọ', '##m', '##ọ', '##bin', '##rin'], tokens) + + def test_xlmr_base_multilingual_yo(self): + """ + Yoruba + """ + tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base') + + tokens = tokenizer.tokenize('Orúkọ ọmọbinrin rẹ̀ àgbà ni Merabu, ti èyí àbúrò ni Mikali.') + self.assertEqual(['▁O', 'rú', 'k', 'ọ', '▁', 'ọ', 'm', 'ọ', 'bin', 'rin', '▁r', 'ẹ', '̀', '▁à', 'gb', 'à', '▁ni', '▁Mera', 'bu', ',', '▁ti', '▁è', 'y', 'í', '▁à', 'bú', 'rò', '▁ni', '▁Mi', 'kali', '.'], tokens) + + tokens = tokenizer.tokenize('ọmọbinrin') + self.assertEqual(['▁', 'ọ', 'm', 'ọ', 'bin', 'rin'], tokens) + + def test_doc2query(self): + tokenizer = T5Tokenizer.from_pretrained('castorini/doc2query-t5-base-msmarco') + tokens = tokenizer.tokenize('I have a new GPU!') + self.assertEqual(['▁I', '▁have', '▁', 'a', '▁new', '▁GPU', '!'], tokens) + + tokenizer = T5Tokenizer.from_pretrained('castorini/doc2query-t5-base-msmarco') + tokens = tokenizer.tokenize('walking talking biking scrolling') + self.assertEqual(['▁walking', '▁talking', '▁biking', '▁scroll', 'ing'], tokens) + + tokens = tokenizer.tokenize('biostatistics') + self.assertEqual(['▁bio', 'stat', 'istic', 's'], tokens) + + tokens = tokenizer.tokenize('adversarial') + self.assertEqual(['▁adversar', 'i', 'al'], tokens) + + def tearDown(self): + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_tokenize_json.py b/tests/test_tokenize_json.py new file mode 100644 index 0000000000000000000000000000000000000000..a4417e4c0eca704660ba2306d95ced775f1535db --- /dev/null +++ b/tests/test_tokenize_json.py @@ -0,0 +1,80 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import json +import os +import unittest +from shutil import rmtree + + +class TestTokenizeJson(unittest.TestCase): + def test_bert_single_file(self): + inj = 'test_bert_single_file.json' + outj = 'out_test_bert_single_file.json' + f = open(inj, 'w') + f.write('{"id": "doc1","contents": "I have a new gpu!"}\n{"id": "doc2","contents": "I do have an old gpu!"}') + f.close() + if(os.getcwd().endswith('tests')): + os.system(f'python ../pyserini/tokenize_json_collection.py --input {inj} --output {outj}') + else: + os.system(f'python pyserini/tokenize_json_collection.py --input {inj} --output {outj}') + with open(outj, 'r') as ret: + for i, line in enumerate(ret): + contents = json.loads(line)['contents'] + if (i == 0): + self.assertEqual('i have a new gp ##u !', contents) + else: + self.assertEqual('i do have an old gp ##u !', contents) + ret.close() + os.remove(inj) + os.remove(outj) + + def test_bert_dir(self): + indir = './test_tokenize_json' + outdir = './test_out_tokenize_json' + if(os.path.isdir(indir)): + rmtree(indir) + os.mkdir(indir) + f1 = open(indir+'/doc00.json', 'w') + f1.write('{"id": "doc1","contents": "I have a new gpu!"}\n{"id": "doc2","contents": "I do have an old gpu!"}') + f1.close() + f2 = open(indir+'/doc01.json', 'w') + f2.write('{"id": "doc1","contents": "A new gpu!"}\n{"id": "doc2","contents": "An old gpu!"}') + f2.close() + if (os.getcwd().endswith('tests')): + os.system(f'python ../pyserini/tokenize_json_collection.py --input {indir} --output {outdir}') + else: + os.system(f'python pyserini/tokenize_json_collection.py --input {indir} --output {outdir}') + with open(outdir+'/docs00.json', 'r') as ret: + for i, line in enumerate(ret): + contents = json.loads(line)['contents'] + if (i == 0): + self.assertEqual('i have a new gp ##u !', contents) + else: + self.assertEqual('i do have an old gp ##u !', contents) + with open(outdir+'/docs01.json', 'r') as ret: + for i, line in enumerate(ret): + contents = json.loads(line)['contents'] + if (i == 0): + self.assertEqual('a new gp ##u !', contents) + else: + self.assertEqual('an old gp ##u !', contents) + rmtree(outdir) + rmtree(indir) + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_topics_order.py b/tests/test_topics_order.py new file mode 100644 index 0000000000000000000000000000000000000000..4ce1cdd43de61ae2001cd5795c7cc5200df76e56 --- /dev/null +++ b/tests/test_topics_order.py @@ -0,0 +1,42 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import unittest + +from pyserini.query_iterator import DefaultQueryIterator + + +class TestEncodedQueries(unittest.TestCase): + + def setUp(self): + pass + + def test_default_order(self): + query_iterator = DefaultQueryIterator.from_topics('core17') + topic_ids, _ = zip(*list(query_iterator)) + self.assertTrue(topic_ids[0], 307) + self.assertTrue(topic_ids[1], 310) + self.assertTrue(topic_ids[-1], 690) + + def test_specified_order(self): + query_iterator = DefaultQueryIterator.from_topics('msmarco-passage-dev-subset') + topic_ids, _ = zip(*list(query_iterator)) + self.assertTrue(topic_ids[0], 1048585) + self.assertTrue(topic_ids[1], 2) + self.assertTrue(topic_ids[-1], 524332) + + def tearDown(self): + pass diff --git a/tests/test_trectools.py b/tests/test_trectools.py new file mode 100644 index 0000000000000000000000000000000000000000..0194955085b54c86f575d20704611bbdefd8d841 --- /dev/null +++ b/tests/test_trectools.py @@ -0,0 +1,110 @@ +# +# Pyserini: Reproducible IR research with sparse and dense representations +# +# 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. +# + +import filecmp +import os +import unittest +import subprocess + +from pyserini.trectools import TrecRun, Qrels, RescoreMethod + + +class TestTrecTools(unittest.TestCase): + def setUp(self): + # The current directory depends on if you're running inside an IDE or from command line. + curdir = os.getcwd() + if curdir.endswith('tests'): + self.root = '../' + else: + self.root = '.' + + self.output_path = os.path.join(self.root, 'output_test_trectools.txt') + + def test_trec_run_read(self): + input_path = os.path.join(self.root, 'tests/resources/simple_trec_run_read.txt') + verify_path = os.path.join(self.root, 'tests/resources/simple_trec_run_read_verify.txt') + + run = TrecRun(filepath=input_path) + run.save_to_txt(self.output_path) + self.assertTrue(filecmp.cmp(verify_path, self.output_path)) + + def test_trec_run_topics(self): + input_path = os.path.join(self.root, 'tests/resources/simple_trec_run_msmarco_doc1.txt') + + run = TrecRun(filepath=input_path) + self.assertEqual(run.topics(), {320792, 174249, 1090270, 1101279}) + + for topic in run.topics(): + self.assertEqual(len(run.get_docs_by_topic(topic)), 5) + + def test_simple_qrels(self): + qrels = Qrels(os.path.join(self.root, 'tools/topics-and-qrels/qrels.covid-round1.txt')) + self.assertEqual(len(qrels.get_docids(topic=1, relevance_grades=[1, 2])), 101) + self.assertEqual(len(qrels.get_docids(topic=1, relevance_grades=[2])), 56) + self.assertEqual(len(qrels.get_docids(topic=1, relevance_grades=[1])), 45) + + def test_discard_qrels(self): + run = TrecRun(os.path.join(self.root, 'tests/resources/simple_trec_run_filter.txt')) + qrels = Qrels(os.path.join(self.root, 'tools/topics-and-qrels/qrels.covid-round1.txt')) + + run.discard_qrels(qrels, clone=False).save_to_txt(output_path=self.output_path) + self.assertTrue(filecmp.cmp(os.path.join(self.root, 'tests/resources/simple_trec_run_remove_verify.txt'), + self.output_path)) + + def test_retain_qrels(self): + run = TrecRun(os.path.join(self.root, 'tests/resources/simple_trec_run_filter.txt')) + qrels = Qrels(os.path.join(self.root, 'tools/topics-and-qrels/qrels.covid-round1.txt')) + + run.retain_qrels(qrels, clone=True).save_to_txt(output_path=self.output_path) + self.assertTrue(filecmp.cmp(os.path.join(self.root, 'tests/resources/simple_trec_run_keep_verify.txt'), + self.output_path)) + + def test_normalize_scores(self): + run = TrecRun(os.path.join(self.root, 'tests/resources/simple_trec_run_fusion_1.txt')) + run.rescore(RescoreMethod.NORMALIZE).save_to_txt(self.output_path) + self.assertTrue(filecmp.cmp(os.path.join(self.root, 'tests/resources/simple_trec_run_normalize_verify.txt'), + self.output_path)) + + # This and the next test case go together - to keep and to remove unjudged docs. + def test_undjudged_keep(self): + qrels_path = os.path.join(self.root, 'tools/topics-and-qrels/qrels.covid-round1.txt') + run_path = os.path.join(self.root, 'tests/resources/simple_trec_run_filter.txt') + results = subprocess.check_output( + f'python -m pyserini.eval.trec_eval -m ndcg_cut.5,10 -m judged.5,10 {qrels_path} {run_path}', shell=True) + results = '\n'.join(results.decode('utf-8').split('\n')[-6:]) + with open(self.output_path, 'w') as writer: + writer.write(results) + self.assertTrue(filecmp.cmp(os.path.join(self.root, 'tests/resources/simple_trec_run_unjudged_keep.txt'), + self.output_path)) + + def test_remove_undjudged(self): + qrels_path = os.path.join(self.root, 'tools/topics-and-qrels/qrels.covid-round1.txt') + run_path = os.path.join(self.root, 'tests/resources/simple_trec_run_filter.txt') + results = subprocess.check_output( + f'python -m pyserini.eval.trec_eval -m ndcg_cut.5,10 -m judged.5,10 {qrels_path} {run_path} -remove-unjudged', shell=True) + results = '\n'.join(results.decode('utf-8').split('\n')[-6:]) + with open(self.output_path, 'w') as writer: + writer.write(results) + self.assertTrue(filecmp.cmp(os.path.join(self.root, 'tests/resources/simple_trec_run_unjudged_remove.txt'), + self.output_path)) + + def tearDown(self): + if os.path.exists(self.output_path): + os.remove(self.output_path) + + +if __name__ == '__main__': + unittest.main() diff --git a/tools/.gitignore b/tools/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..18b4da6bbe0dfa4843f145e12b36ec26fb1913e7 --- /dev/null +++ b/tools/.gitignore @@ -0,0 +1,16 @@ +.DS_Store +*~ + +eval/ndeval/ndeval +eval/trec_eval.9.0.4/ + +# Not public yet +qrels.dl22* +qrels.neuclir22* + +# Too big to check in, must download separately +topics-and-qrels/msmarco-v2-passage-neardupes.txt.gz + +# MIRACL training set not public +qrels.miracl-v1.0-*-train.tsv +topics.miracl-v1.0-*-train.tsv diff --git a/tools/README.md b/tools/README.md new file mode 100644 index 0000000000000000000000000000000000000000..80fc6fdd9b2ba6a3ff739307c49e1403a36fe475 --- /dev/null +++ b/tools/README.md @@ -0,0 +1,10 @@ +# Anserini Tools + +This repo holds various tools and scripts shared across [anserini](http://anserini.io/), [pyserini](http://pyserini.io/), and [pygaggle](http://pygaggle.ai/) as a Git submodule. + +Build the included evaluation tools as follows (you might get warnings, but you can ignore): + +```bash +cd eval && tar xvfz trec_eval.9.0.4.tar.gz && cd trec_eval.9.0.4 && make && cd ../.. +cd eval && cd ndeval && make && cd ../.. +``` diff --git a/tools/eval/compute_qrel_statistics.py b/tools/eval/compute_qrel_statistics.py new file mode 100644 index 0000000000000000000000000000000000000000..9efed9321dd06478840276d73710982fcec52a81 --- /dev/null +++ b/tools/eval/compute_qrel_statistics.py @@ -0,0 +1,105 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +"""Compute various statistics for qrels.""" + +import argparse +import collections + + +def is_relevant(grade: int, threshold: int): + return grade > threshold + + +def main(): + parser = argparse.ArgumentParser(description=__doc__, + formatter_class=lambda prog: argparse.HelpFormatter(prog, width=100)) + parser.add_argument('--qrels', metavar='FILE', type=str, required=True, help='Qrels file.') + parser.add_argument('--output', metavar='FILE', type=str, help='File to store per-topic statistics.') + parser.add_argument('--relevance-threshold', metavar='INT', type=int, default=0, + help='Threshold for considering a judgment "relevant". ' + + 'Default is zero, which means any relevance grade above zero is considered relevant.') + + args = parser.parse_args() + + qrels = collections.defaultdict(dict) + with open(args.qrels) as f: + for i, line in enumerate(f): + qid, _, docid, relevance = line.rstrip().split() + qrels[qid][docid] = int(relevance) + + total_judgments_count = 0 + total_topics_count = 0 + total_rel_count = 0 + + max_per_topic_judged = 0 + min_per_topic_judged = 10000000 + + max_per_topic_relevant = 0 + min_per_topic_relevant = 10000000 + + per_topic_output = ['qid,rel_count,not_rel_count,total'] + + for qid in sorted(qrels): + total_topics_count += 1 + rel_count = 0 + not_rel_count = 0 + for docid in qrels[qid]: + if is_relevant(qrels[qid][docid], args.relevance_threshold): + rel_count += 1 + total_rel_count += 1 + else: + not_rel_count += 1 + total_judgments_count += 1 + + assert len(qrels[qid]) == rel_count + not_rel_count + + if rel_count > max_per_topic_relevant: + max_per_topic_relevant = rel_count + + if rel_count + not_rel_count > max_per_topic_judged: + max_per_topic_judged = rel_count + not_rel_count + + if rel_count < min_per_topic_relevant: + min_per_topic_relevant = rel_count + + if rel_count + not_rel_count < min_per_topic_judged: + min_per_topic_judged = rel_count + not_rel_count + + per_topic_output.append(f'{qid},{rel_count},{not_rel_count},{rel_count+not_rel_count}') + + per_topic_output.append(f'total,{total_rel_count},{total_judgments_count-total_rel_count},{total_judgments_count}') + per_topic_output.append(f'avg,{total_rel_count/total_topics_count:.2f},' + + f'{(total_judgments_count-total_rel_count)/total_topics_count:.2f},' + + f'{total_judgments_count/total_topics_count:.2f}') + + if args.output: + with open(args.output, 'w') as f: + for line in per_topic_output: + f.write(line + '\n') + + print('# Summary Statistics') + print(f'Total number of topics: {total_topics_count}') + print(f'Total number of judgments: {total_judgments_count}') + print(f'Total number of relevant labels: {total_rel_count}') + print(f'Avg. judgments per topic: {total_judgments_count/total_topics_count:.2f}' + + f' (max = {max_per_topic_judged}, min = {min_per_topic_judged})') + print(f'Avg. relevant labels per topic: {total_rel_count/total_topics_count:.2f}' + + f' (max = {max_per_topic_relevant}, min = {min_per_topic_relevant})') + + +if __name__ == "__main__": + main() diff --git a/tools/eval/gdeval.pl b/tools/eval/gdeval.pl new file mode 100644 index 0000000000000000000000000000000000000000..7ae757213e5ecc1d0cd0dff4b3f801ddeea7fd0d --- /dev/null +++ b/tools/eval/gdeval.pl @@ -0,0 +1,340 @@ +#!/usr/bin/perl -w + +# Graded relevance assessment script for the TREC 2010 Web track +# Evalution measures are written to standard output in CSV format. +# +# Currently reports only NDCG and ERR +# (see http://learningtorankchallenge.yahoo.com/instructions.php) + +use constant LOGBASEDIV => log(2.0); + +# gloals +my $QRELS; +my $VERSION = "version 1.3 (Mon Apr 29 20:50:24 EDT 2013)"; +my $MAX_JUDGMENT = 4; # Maximum gain value allowed in qrels file. +my $K = 20; # Reporting depth for results. +my $USAGE = "usage: $0 [options] qrels run\n + options:\n + -c + Average over the complete set of topics in the relevance judgments + instead of the topics in the intersection of relevance judgments + and results.\n + -k value + Non-negative integer depth of ranking to evaluate in range [1,inf]. + Default value is k=@{[($K)]}.\n + -baseline BASELINE_RUN_FILE + Baseline run to use for risk-sensitive evaluation\n + -riskAlpha value + Non-negative Risk sensitivity value to use when doing risk-sensitive + evaluation. A baseline must still be specified. By default 0. + The final weight to downside changes in performance is (1+value).\n"; + + + +use strict 'vars'; + +{ # main block to scope variables + if ($#ARGV >= 0 && ($ARGV[0] eq "-v" || $ARGV[0] eq "-version")) { + print "$0: $VERSION\n"; + exit 0; + } + + my $baselineRun = undef; + my $riskAlpha = 0; + my $cflag = 0; + while ($#ARGV != 1) # should probably replace this with perl's argument parsing + { + if ($#ARGV >= 0 && $ARGV[0] eq "-help") { + print "$USAGE\n"; + exit 0; + } + elsif ($#ARGV >= 2 and ("-c" eq $ARGV[0])) + { + $cflag = 1; + shift @ARGV; + } + elsif ($#ARGV >= 3 and ("-k" eq $ARGV[0])) + { + $K = int($ARGV[1]); + die $USAGE if ($K < 1); +# print STDERR "k=$K\n"; + shift @ARGV; shift @ARGV; + } + elsif ($#ARGV >= 3 and ("-baseline" eq $ARGV[0])) + { + $baselineRun = $ARGV[1]; + shift @ARGV; shift @ARGV; + } + elsif ($#ARGV >= 3 and ("-riskAlpha" eq $ARGV[0])) + { + $riskAlpha = $ARGV[1]; + die $USAGE if ($riskAlpha < 0.0); + shift @ARGV; shift @ARGV; + } + else + { + die $USAGE; + } + } + + die $USAGE unless $#ARGV == 1; + $QRELS = $ARGV[0]; + my $run = $ARGV[1]; + + # Read qrels file, check format, and sort + my @qrels = (); + my %seen = (); + open (QRELS,"<$QRELS") || die "$0: cannot open \"$QRELS\": $!\n"; + while () { + s/[\r\n]//g; + my ($topic, $zero, $docno, $judgment) = split (' '); + $topic =~ s/^.*\-//; + die "$0: format error on line $. of \"$QRELS\"\n" + unless + $topic =~ /^[0-9]+$/ && $zero == 0 + && $judgment =~ /^-?[0-9]+$/ && $judgment <= $MAX_JUDGMENT; + if ($judgment > 0) { + $qrels[$#qrels + 1]= "$topic $docno $judgment"; + $seen{$topic} = 1; + } + } + close (QRELS); + @qrels = sort qrelsOrder (@qrels); + + # Process qrels: store judgments and compute ideal gains + my $topicCurrent = -1; + my %ideal = (); + my @gain = (); + my %judgment = (); + for (my $i = 0; $i <= $#qrels; $i++) { + my ($topic, $docno, $judgment) = split (' ', $qrels[$i]); + if ($topic != $topicCurrent) { + if ($topicCurrent >= 0) { + $ideal{$topicCurrent} = &dcg($K, @gain); + $#gain = -1; + } + $topicCurrent = $topic; + } + next if $judgment < 0; + $judgment{"$topic:$docno"} = $gain[$#gain + 1] = $judgment; + } + if ($topicCurrent >= 0) { + $ideal{$topicCurrent} = &dcg($K, @gain); + $#gain = -1; + } + + # process baseline if doing risk sensitive + my ($baseNDCGByTopic,$baseERRByTopic,$baserunname); + if (defined $baselineRun) + { + ($baseNDCGByTopic,$baseERRByTopic,$baserunname) = processRun($baselineRun,0,\%seen,\%ideal,\%judgment,$cflag,0); + } + + # process main run + processRun($run,1,\%seen,\%ideal,\%judgment,$cflag,defined($baselineRun),$riskAlpha,$baserunname,$baseNDCGByTopic,$baseERRByTopic); + + exit 0; + +} # end main block + +# comparison function for qrels: by topic then judgment +sub qrelsOrder { + my ($topicA, $docnoA, $judgmentA) = split (' ', $a); + my ($topicB, $docnoB, $judgmentB) = split (' ', $b); + + if ($topicA < $topicB) { + return -1; + } elsif ($topicA > $topicB) { + return 1; + } else { + return $judgmentB <=> $judgmentA; + } +} + +# comparison function for runs: by topic then score then docno +sub runOrder { + my ($topicA, $docnoA, $scoreA) = split (' ', $a); + my ($topicB, $docnoB, $scoreB) = split (' ', $b); + + if ($topicA < $topicB) { + return -1; + } elsif ($topicA > $topicB) { + return 1; + } elsif ($scoreA < $scoreB) { + return 1; + } elsif ($scoreA > $scoreB) { + return -1; + } elsif ($docnoA lt $docnoB) { + return 1; + } elsif ($docnoA gt $docnoB) { + return -1; + } else { + return 0; + } +} + +# compute DCG over a sorted array of gain values, reporting at depth $k +sub dcg { + my ($k, @gain) = @_; + my ($i, $score) = (0, 0); + + for ($i = 0; $i <= ($k <= $#gain ? $k - 1 : $#gain); $i++) { + $score += (2**$gain[$i] - 1)/(log ($i + 2)/ +LOGBASEDIV); + } + return $score; +} + +# compute ERR over a sorted array of gain values, reporting at depth $k +sub err { + my ($k, @gain) = @_; + my ($i, $score, $decay, $r); + + $score = 0.0; + $decay = 1.0; + for ($i = 0; $i <= ($k <= $#gain ? $k - 1 : $#gain); $i++) { + $r = (2**$gain[$i] - 1)/(2**$MAX_JUDGMENT); + $score += $r*$decay/($i + 1); + $decay *= (1 - $r); + } + return $score; +} + +sub riskWeighted +{ + my ($run,$base,$alpha) = @_; + if ($run < $base) + { + $run = (1+$alpha) * ($run - $base); + } + else + { + $run = $run - $base; + } + return $run; +} +# compute and report information for current topic +sub topicDone { + my ($printTopic, $runid, $topic, $pndcgTotal, $perrTotal, $ptopics, $pseen, $pideal, + $isRiskSensitive, $riskAlpha, $baseNDCG, $baseERR, @gain) = @_; + my($ndcg, $err) = (0, 0); + if (exists($$pseen{$topic}) and defined($$pseen{$topic}) and $$pseen{$topic}) { + $ndcg = &dcg($K, @gain)/$$pideal{$topic}; + $err = &err ($K, @gain); + $ndcg = riskWeighted($ndcg,$baseNDCG,$riskAlpha) if ($isRiskSensitive); + $err = riskWeighted($err,$baseERR,$riskAlpha) if ($isRiskSensitive); + $$pndcgTotal += $ndcg; + $$perrTotal += $err; + $$ptopics++; + printf("$runid,$topic,%.5f,%.5f\n",$ndcg,$err) if ($printTopic); + return ($ndcg,$err); + } +} + +sub processRun +{ + my ($run,$printTopics,$pseen,$pideal,$pjudgment,$avgOverAllTopics,$isRiskSensitive,$riskAlpha,$baserunname,$baseNDCGByTopic,$baseERRByTopic) = @_; + my $ndcgByTopic = {()}; + my $errByTopic = {()}; + my $runid = "?????"; + my @run = (); + # Read run rile, check format, and sort + open (RUN,"<$run") || die "$0: cannot open \"$run\": $!\n"; + while () { + s/[\r\n]//g; + my ($topic, $q0, $docno, $rank, $score); + ($topic, $q0, $docno, $rank, $score, $runid) = split (' '); + $topic =~ s/^.*\-//; + die "$0: format error on line $. of \"$run\"\n" + unless + $topic =~ /^[0-9]+$/ && $q0 eq "Q0" && $rank =~ /^[0-9]+$/ && $runid; + $run[$#run + 1] = "$topic $docno $score"; + } + + @run = sort runOrder (@run); + + my %processed = (); + foreach my $topic (%$pseen) + { + $processed{$topic} = 0; + } + + if ($isRiskSensitive) + { + $runid = sprintf("%s (rel to. %s, rs=1+a, a=%s)",$runid,$baserunname,$riskAlpha); + } + + # Process runs: compute measures for each topic and average + my $ndcgTotal = 0; + my $errTotal = 0; + my $topics = 0; + print "runid,topic,ndcg\@$K,err\@$K\n" if ($printTopics); + my $topicCurrent = -1; + my @gain = (); + for (my $i = 0; $i <= $#run; $i++) { + my ($topic, $docno, $score) = split (' ', $run[$i]); + if ($topic != $topicCurrent) { + if ($topicCurrent >= 0) { + my ($baseNDCG,$baseERR) = 0; + if ($isRiskSensitive) + { + $baseNDCG = $$baseNDCGByTopic{$topicCurrent} if (exists($$baseNDCGByTopic{$topicCurrent}) and defined($$baseNDCGByTopic{$topicCurrent})); + $baseERR = $$baseERRByTopic{$topicCurrent} if (exists($$baseERRByTopic{$topicCurrent}) and defined($$baseERRByTopic{$topicCurrent})); + } + my ($ndcg,$err) = &topicDone ($printTopics, $runid, $topicCurrent, \$ndcgTotal, \$errTotal, \$topics, + $pseen, $pideal, $isRiskSensitive, $riskAlpha, $baseNDCG, $baseERR, @gain); + $$ndcgByTopic{$topicCurrent} = $ndcg; + $$errByTopic{$topicCurrent} = $err; + $processed{$topicCurrent} = 1; + $#gain = -1; + } + $topicCurrent = $topic; + } + my $j = $$pjudgment{"$topic:$docno"}; + $j = 0 unless $j; + $gain[$#gain + 1] = $j; + } + if ($topicCurrent >= 0) { + my ($baseNDCG,$baseERR) = 0; + if ($isRiskSensitive) + { + $baseNDCG = $$baseNDCGByTopic{$topicCurrent} if (exists($$baseNDCGByTopic{$topicCurrent}) and defined($$baseNDCGByTopic{$topicCurrent})); + $baseERR = $$baseERRByTopic{$topicCurrent} if (exists($$baseERRByTopic{$topicCurrent}) and defined($$baseERRByTopic{$topicCurrent})); + } + my ($ndcg,$err) = &topicDone ($printTopics, $runid, $topicCurrent, \$ndcgTotal, \$errTotal, \$topics, + $pseen, $pideal, $isRiskSensitive, $riskAlpha, $baseNDCG, $baseERR, @gain); + $$ndcgByTopic{$topicCurrent} = $ndcg; + $$errByTopic{$topicCurrent} = $err; + $processed{$topicCurrent} = 1; + $#gain = -1; + } + my $numTopics = $topics; # $topics has the number in the run (at this point) + if ($avgOverAllTopics) + { + $numTopics = scalar(keys %$pseen); # we want denominator to change whenever flag is on but only need to compute differences for risk + if ($isRiskSensitive) + { # need to process any topics that were missing from run + my ($baseNDCG,$baseERR) = 0; + my @gain = (); + foreach my $topicCurrent (sort {$a <=> $b} keys %processed) + { + next if ($processed{$topicCurrent}); + $baseNDCG = $$baseNDCGByTopic{$topicCurrent} if (exists($$baseNDCGByTopic{$topicCurrent}) and defined($$baseNDCGByTopic{$topicCurrent})); + $baseERR = $$baseERRByTopic{$topicCurrent} if (exists($$baseERRByTopic{$topicCurrent}) and defined($$baseERRByTopic{$topicCurrent})); + my ($ndcg,$err) = &topicDone ($printTopics, $runid, $topicCurrent, \$ndcgTotal, \$errTotal, \$topics, + $pseen, $pideal, $isRiskSensitive, $riskAlpha, $baseNDCG, $baseERR, @gain); + } + } + } + + my $ndcgAvg = $ndcgTotal; + my $errAvg = $errTotal; + if ($numTopics > 0) + { + $ndcgAvg /= $numTopics; + $errAvg /= $numTopics; + } + printf "$runid,amean,%.5f,%.5f\n",$ndcgAvg,$errAvg if ($printTopics); + + return ($ndcgByTopic,$errByTopic,$runid); + close(RUN); +} diff --git a/tools/eval/measure_judged.py b/tools/eval/measure_judged.py new file mode 100644 index 0000000000000000000000000000000000000000..c90e726f8543d004bc802e209f7b2f16923083f3 --- /dev/null +++ b/tools/eval/measure_judged.py @@ -0,0 +1,95 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +"""Compute the fraction of judged documents at various cutoffs.""" + +import argparse +import collections + +from typing import Dict +from typing import List +from typing import Set + + +def load_qrels(path: str) -> Dict[str, Set[str]]: + """Loads qrels into a dict of key: query_id, value: set of relevant doc ids.""" + qrels = collections.defaultdict(set) + with open(path) as f: + for i, line in enumerate(f): + line = ' '.join(line.split()) + query_id, _, doc_id, relevance = line.rstrip().split() + qrels[query_id].add(doc_id) + + return qrels + + +def load_run(path: str) -> Dict[str, List[str]]: + """Loads run into a dict of key: query_id, value: list of candidate doc ids.""" + run = collections.OrderedDict() + with open(path) as f: + for line in f: + query_id, _, doc_title, rank, _, _ = line.split() + if query_id not in run: + run[query_id] = [] + run[query_id].append((doc_title, int(rank))) + + # Sort candidate docs by rank. + sorted_run = collections.OrderedDict() + for query_id, doc_titles_ranks in run.items(): + doc_titles_ranks.sort(key=lambda x: x[1]) + doc_titles = [doc_titles for doc_titles, _ in doc_titles_ranks] + sorted_run[query_id] = doc_titles + + return sorted_run + + +def main(): + parser = argparse.ArgumentParser(description=__doc__, + formatter_class=lambda prog: argparse.HelpFormatter(prog, width=100)) + parser.add_argument('--qrels', metavar='FILE', type=str, required=True, help='Qrels file.') + parser.add_argument('--run', metavar='FILE', type=str, required=True, help='Run file.') + parser.add_argument('--cutoffs', metavar='N', nargs='+', type=int, default=[10, 100, 1000], + help='Space-separated list of cutoffs, e.g., --cutoffs 10 100 1000.') + parser.add_argument('--q', '-q', action='store_true', dest='print_topic', help='Print metrics per topic.') + parser.add_argument('--topics-in-qrels-only', action='store_true', help='Ignore unlisted topicIds in qrels') + + args = parser.parse_args() + + qrels = load_qrels(args.qrels) + run = load_run(args.run) + + # Filters out topicIds from the run that are not in the qrels + if args.topics_in_qrels_only: + run = {key: value for key, value in run.items() if key in qrels} + + + for max_rank in args.cutoffs: + percentage_judged = 0 + + for query_id, doc_ids in run.items(): + doc_ids = doc_ids[:max_rank] + n_judged = len(set(doc_ids).intersection(qrels[query_id])) + percentage_judged_per_topic = n_judged / len(doc_ids) + if args.print_topic: + print(f'judged_cut_{max_rank}\t{query_id}\t{percentage_judged_per_topic:.4f}') + percentage_judged += percentage_judged_per_topic + + percentage_judged /= max(1, len(run)) + print(f'judged_cut_{max_rank}\tall\t{percentage_judged:.4f}') + + +if __name__ == "__main__": + main() diff --git a/tools/eval/ndeval/Makefile b/tools/eval/ndeval/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f789269f9bd1a531ddc596189b6ad224b02e3f36 --- /dev/null +++ b/tools/eval/ndeval/Makefile @@ -0,0 +1,4 @@ +ndeval: ndeval.c + gcc -o ndeval ndeval.c -lm +clean: + rm -f ndeval \ No newline at end of file diff --git a/tools/eval/ndeval/ndeval b/tools/eval/ndeval/ndeval new file mode 100644 index 0000000000000000000000000000000000000000..ef3f7f392904cb7a987aca2646bd5bfabc43e4cb Binary files /dev/null and b/tools/eval/ndeval/ndeval differ diff --git a/tools/eval/ndeval/ndeval.c b/tools/eval/ndeval/ndeval.c new file mode 100644 index 0000000000000000000000000000000000000000..4d6abd5708b335f2dacaf14fba1c64f59137b9d3 --- /dev/null +++ b/tools/eval/ndeval/ndeval.c @@ -0,0 +1,1521 @@ +/* only evaluate e (which could cause out-of-bound reference) when z is false */ +#define TopicVal(z,e) (z ? 0 : e) +#define RiskBased(r,b,a) ((r) >= (b) ? (r) - (b) : ((a)+1) * ((r)-(b))) + +char *usageText = + "Usage: %s [options] qrels run (-help for full usage information)\n"; + +char *helpText = +"ndeval [options] qrels run\n" +" Compute novelty and diversity evaluation measures for TREC Web tasks.\n" +" Evalution measures are written to standard output as a CSV file.\n" +"\n" +" options:\n" +" -alpha value\n" +" Redundancy intolerance (parameter for computing alpha-nDCG and NRBP)\n" +" -beta value\n" +" Patience (parameter for computing NRBP)\n" +" -traditional\n" +" Sort runs by score and then by docno, which is the traditional\n" +" behavior for TREC. By default, the program sorts runs by rank.\n" +" -baseline BASELINE_RUN_FILE\n" +" Baseline run to use for risk-sensitive evaluation\n" +" -riskAlpha value\n" +" Non-negative Risk sensitivity value to use when doing risk-sensitive\n" +" evaluation. A baseline must still be specified. By default 0.\n" +" The final weight to downside changes in performance is (1+value).\n" +" -c\n" +" Average over the complete set of topics in the relevance judgments\n" +" instead of the topics in the union of the intersection of relevance\n" +" judgments and results and the topics in the risk baseline (if\n" +" specified).\n" +" -M depth\n" +" Cut off run at given depth.\n" +"\n" +" Computes the following measures. All measures are \"intent aware\" in\n" +" the sense of Agrawal et al. (WSDM 20009). Normalization may be collection\n" +" dependent or collection independent.\n" +"\n" +" ERR-IA@k for k = 5, 10 and 20\n" +" Chapelle et al. (CIKM 2009) with collection-independent normalization\n" +" nERR-IA@k for k = 5, 10 and 20\n" +" Chapelle et al. (CIKM 2009) with collection-dependent normalization\n" +" alpha-DCG@k for k = 5, 10 and 20\n" +" Clarke et al. (SIGIR 2008) with collection-independent normalization\n" +" alpha-nDCG@k for k = 5, 10 and 20\n" +" Clarke et al., SIGIR 2008 with collection-dependent normalization\n" +" NRBP\n" +" Clarke et al. (ICTIR 2009) with collection-independent normalization\n" +" nNRBP\n" +" Clarke et al. (ICTIR 2009) with collection-dependent normalization\n" +" MAP-IA\n" +" intent aware mean average precision\n" +" P-IA@k for k = 5, 10, 20\n" +" intent aware precision@k\n" +" strec@k for k = 5, 10, 20\n" +" subtopic recall (the number of subtopics covered by the top k docs)\n"; + +#include +#include +#include +#include +#include +#include + +#define DEPTH 20 /* max depth for computing alpha-ndcg, precision-ia, etc. */ +#define ALPHA 0.5 /* default alpha value for alpha-nDCG and NRBP */ +#define BETA 0.5 /* default beta value for NRBP */ + +static char *version = "version 4.5 (Mon 29 Apr 2013 20:51:02 EDT)"; + +#define LARGE_ENOUGH 100000 + +/* Global command line parameters */ +static double alpha = ALPHA; /* alpha value for alpha-nDCG and NRBP */ +static double beta = BETA; /* beta value for NRBP */ +static int traditional = 0; /* use traditional TREC sort order for runs */ +static int depthM = 0; /* cut off rank for runs (0 => no cut off) */ + +static char *programName = (char *) 0; + +static void +error (char *format, ...) +{ + va_list args; + + fflush (stderr); + if (programName) + fprintf (stderr, "%s: ", programName); + va_start (args, format); + vfprintf (stderr, format, args); + va_end (args); + fflush (stderr); + exit (1); +} + +static void * +localMalloc (size_t size) +{ + void *memory; + + if ((memory = malloc (size))) + return memory; + else + { + error ("Out of memory!\n"); + /*NOTREACHED*/ + return (void *) 0; + } +} + +static void * +localRealloc (void *memory, size_t size) +{ + if ((memory = realloc (memory, size))) + return memory; + else + { + error ("Out of memory!\n"); + /*NOTREACHED*/ + return (void *) 0; + } +} + +static char * +localStrdup (const char *string) +{ + return strcpy (localMalloc (strlen (string) + 1), string); +} + +static void +setProgramName (char *argv0) +{ + char *pn; + + if (argv0 == (char *) 0) + { + programName = (char *) 0; + return; + } + + for (pn = argv0 + strlen (argv0); pn > argv0; --pn) + if (*pn == '/') + { + pn++; + break; + } + + programName = localStrdup (pn); +} + +static char * +mygetline (FILE *fp) +{ + int const GETLINE_INITIAL_BUFSIZ = 256; + static unsigned bufsiz = 0; + static char *buffer = (char *) 0; + unsigned count = 0; + + if (bufsiz == 0) + { + buffer = (char *) localMalloc ((unsigned) GETLINE_INITIAL_BUFSIZ); + bufsiz = GETLINE_INITIAL_BUFSIZ; + } + + if (fgets (buffer, bufsiz, fp) == NULL) + return (char *) 0; + + for (;;) + { + unsigned nlpos = strlen (buffer + count) - 1; + if (buffer[nlpos + count] == '\n') + { + if (nlpos && buffer[nlpos + count - 1] == '\r') + --nlpos; + buffer[nlpos + count] = '\0'; + return buffer; + } + count = bufsiz - 1; + bufsiz <<= 1; + buffer = (char *) localRealloc (buffer, (unsigned) bufsiz); + if (fgets (buffer + count, count + 2, fp) == NULL) + { + buffer[count] = '\0'; + return buffer; + } + } +} + +static int +split (char *s, char **a, int m) +{ + int n = 0; + + while (n < m) + { + for (; isspace (*s); s++) + ; + if (*s == '\0') + return n; + + a[n++] = s; + + for (s++; *s && !isspace (*s); s++) + ; + if (*s == '\0') + return n; + + *s++ = '\0'; + } + + return n; +} + +static int +naturalNumber (char *s) +{ + int value = 0; + + if (s == (char *) 0 || *s == '\0') + return -1; + + for (; *s; s++) + if (*s >= '0' && *s <= '9') + { + if (value > LARGE_ENOUGH) + return -1; + value = 10*value + (*s - '0'); + } + else + return -1; + + return value; +} + +/* parseTopic: + topic numbers in run files may be prefaced by a string indicating the task; + remove this string (e.g., "wt09-") and extract the topic number; + we assume the string ends with a "-" character; +*/ +static int parseTopic(char *s) +{ + if (*s >= '0' && *s <= '9') + return naturalNumber (s); + + for (;*s && *s != '-'; s++) + ; + + return naturalNumber (s + 1); +} + + +struct result { /* a single result, with a pointer to relevance judgments */ + char *docno; + int topic, rank, *rel; + double score; /* used only for traditional sort */ +}; + +struct rList { /* result list (or summarized qrels) for a single topic */ + struct result *list; + int topic, subtopics, actualSubtopics, results; + int nrel, *nrelSub; + double mapIA, map; + double nrbp, nnrbp; + double dcg[DEPTH], ndcg[DEPTH]; + double err[DEPTH], nerr[DEPTH]; + double precision[DEPTH]; /* really precision-IA */ + double strec[DEPTH]; /* subtopic recall */ +}; + +struct qrel { /* a single qrel */ + char *docno; + int topic, subtopic, judgment; +}; + +/* qrelCompare: + qsort comparison function for qrels +*/ +static int +qrelCompare (const void *a, const void *b) +{ + struct qrel *aq = (struct qrel *) a; + struct qrel *bq = (struct qrel *) b; + + if (aq->topic < bq->topic) + return -1; + if (aq->topic > bq->topic) + return 1; + return strcmp (aq->docno, bq->docno); +} + +/* qrelSort: + sort qrels by topic and then by docno +*/ +static void +qrelSort (struct qrel *q, int n) +{ + qsort (q, n, sizeof (struct qrel), qrelCompare); +} + +/* qrelCountTopics: + count the number of distinct topics in a qrel file; assume qrels are sorted +*/ +static int +qrelCountTopics (struct qrel *q, int n) +{ + int i, topics = 1, currentTopic = q[0].topic; + + for (i = 1; i < n; i++) + if (q[i].topic != currentTopic) + { + topics++; + currentTopic = q[i].topic; + } + + return topics; +} + +/* nrel: + for a given qrel result list, compute overall number of relevant documents + by assuming that a document which is relevant to any subtopic is relevant + to the topic as a whole; used to compute (non-intent-aware) MAP. +*/ +static void +nrel (struct rList *rl) +{ + int i, j; + + rl->nrel = 0; + for (i = 0; i < rl->results; i++) + { + int todo = 1; + + for (j = 0; todo && j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + { + rl->nrel++; + todo = 0; + } + } +} + +/* actualSubtopics: + for a given qrel result list, determine the number of subtopics actually + represented; if a subtopic has never received a positive judgment, we + ignore it. +*/ +static void +actualSubtopics (struct rList *rl) +{ + int i; + + rl->actualSubtopics = 0; + for (i = 0; i < rl->subtopics; i++) + if (rl->nrelSub[i]) + rl->actualSubtopics++; +} + +/* idealResult: + for a qrel result list, assign ranks to maximize gain at each rank; + the problem is NP-complete, but a simple greedy algorithm works fine +*/ +static void +idealResult (struct rList *rl) +{ + int i, rank; + double *subtopicGain = (double *) alloca (rl->subtopics*sizeof(double)); + + for (i = 0; i < rl->subtopics; i++) + subtopicGain[i] = 1.0; + + for (i = 0; i < rl->results; i++) + rl->list[i].rank = 0; + + /* horrible quadratic greedy approximation of the ideal result */ + for (rank = 1; rank <= rl->results; rank++) + { + int where = -1; + double maxScore = 0.0; + + for (i = 0; i < rl->results; i++) + if (rl->list[i].rank == 0) + { + int j; + double currentScore = 0.0; + + for (j = 0; j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + currentScore += subtopicGain[j]; + + /* tied scores are arbitrarily resolved by docno */ + if ( + where == -1 + || currentScore > maxScore + || ( + currentScore == maxScore + && strcmp (rl->list[i].docno, rl->list[where].docno) > 0 + ) + ) + { + maxScore = currentScore; + where = i; + } + } + + rl->list[where].rank = rank; + + for (i = 0; i < rl->subtopics; i++) + if (rl->list[where].rel[i]) + subtopicGain[i] *= (1.0 - alpha); + } +} + +/* resultCompareByRank: + qsort comparison funtion for results; sort by topic and then by rank +*/ +int +resultCompareByRank (const void *a, const void *b) +{ + struct result *ar = (struct result *) a; + struct result *br = (struct result *) b; + if (ar->topic < br->topic) + return -1; + if (ar->topic > br->topic) + return 1; + return ar->rank - br->rank; +} + +/* resultSortByRank: + sort results, first by topic and then by rank +*/ +static void +resultSortByRank (struct result *list, int results) +{ + qsort (list, results, sizeof (struct result), resultCompareByRank); +} + +/* resultCompareByDocno: + qsort comparison funtion for results; sort by topic and then by docno +*/ +static int +resultCompareByDocno (const void *a, const void *b) +{ + struct result *ar = (struct result *) a; + struct result *br = (struct result *) b; + if (ar->topic < br->topic) + return -1; + if (ar->topic > br->topic) + return 1; + return strcmp(ar->docno, br->docno); +} + +/* resultSortByRank: + sort results, first by topic and then by docno +*/ +static void +resultSortByDocno (struct result *list, int results) +{ + qsort (list, results, sizeof (struct result), resultCompareByDocno); +} + +/* resultCompareByScore: + qsort comparison funtion for results; sort by topic, then by score, and + then by docno, which is the traditional sort order for TREC runs +*/ +int +resultCompareByScore (const void *a, const void *b) +{ + struct result *ar = (struct result *) a; + struct result *br = (struct result *) b; + if (ar->topic < br->topic) + return -1; + if (ar->topic > br->topic) + return 1; + if (ar->score < br->score) + return 1; + if (ar->score > br->score) + return -1; + return strcmp (br->docno, ar->docno); +} + +/* resultSortByScore: + sort results; first by topic, then by score, and then by docno +*/ +static void +resultSortByScore (struct result *list, int results) +{ + qsort (list, results, sizeof (struct result), resultCompareByScore); +} + +/* computeMAP: + compute intent-aware mean average precision (MAP-IA); + also computes standard MAP by assuming that a document relevant to any + subtopic is relevant to the topic as a whole. +*/ +static void +computeMAP (struct rList *rl) +{ + int i,j; + double count = 0.0, total = 0.0; + int *subtopicCount = (int *) alloca (rl->subtopics*sizeof(int)); + double *subtopicTotal = (double *) alloca (rl->subtopics*sizeof(double)); + + rl->map = rl->mapIA = 0.0; + + if (rl->actualSubtopics == 0) + return; + + for (j = 0; j < rl->subtopics; j++) + subtopicCount[j] = subtopicTotal[j] = 0.0; + + for (i = 0; i < rl->results; i++) + { + int todo = 1; + + if (rl->list[i].rel) + for (j = 0; j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + { + subtopicCount[j]++; + subtopicTotal[j] += subtopicCount[j]/((double)(i+1)); + if (todo) + { + count++; + total += count/((double)(i+1)); + todo = 0; + } + } + } + + rl->map = total/rl->nrel; + rl->mapIA = 0.0; + for (j = 0; j < rl->subtopics; j++) + if (rl->nrelSub[j]) + rl->mapIA += subtopicTotal[j]/rl->nrelSub[j]; + rl->mapIA /= rl->actualSubtopics; +} + +/* computeNRBP: + compute NRBP for a result list; + assumes all results are labeled with relevance judgments +*/ +static void +computeNRBP (struct rList *rl) +{ + int i; + double decay = 1.0; + double *subtopicGain = (double *) alloca (rl->subtopics*sizeof(double)); + + rl->nrbp = 0.0; + if (rl->actualSubtopics == 0) + return; + + for (i = 0; i < rl->subtopics; i++) + subtopicGain[i] = 1.0; + + for (i = 0; i < rl->results; i++) + { + int j; + double score = 0.0; + + if (rl->list[i].rel) + for (j = 0; j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + { + score += subtopicGain[j]; + subtopicGain[j] *= (1.0 - alpha); + } + rl->nrbp += score*decay; + decay *= beta; + } + + rl->nrbp *= (1 - (1 - alpha)*beta)/rl->actualSubtopics; +} + +/* discount: + compute (and cache) ranked based discount for ndcg +*/ +double +discount (int rank) +{ + static double cache[LARGE_ENOUGH]; + static int top = 0; + + if (rank > 0) + if (rank < top) + return cache[rank]; + else if (rank < LARGE_ENOUGH) + { + do + { + cache[top] = log(2.0)/log(top + 2.0); + top++; + } + while (rank >= top); + return cache[rank]; + } + else + return log(2.0)/log(rank + 2.0); + else + return 1; +} + +/* computeERR: + compute ERR for a result list (a run or qrels); + assumes all results are labeled with relevance judgments; + the result is normalized using a simple "ideal ideal" normalization +*/ +static void +computeERR (struct rList *rl) +{ + int i; + double *subtopicGain = (double *) alloca (rl->subtopics*sizeof(double)); + double idealIdeal[DEPTH], idealIdealGain = (double) rl->actualSubtopics; + + for (i = 0; i < DEPTH; i++) + rl->err[i] = 0.0; + + if (rl->actualSubtopics == 0) + return; + + for (i = 0; i < rl->subtopics; i++) + subtopicGain[i] = 1.0; + + for (i = 0; i < DEPTH && i < rl->results; i++) + { + int j; + double score = 0.0; + + if (rl->list[i].rel) + for (j = 0; j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + { + score += subtopicGain[j]; + subtopicGain[j] *= (1.0 - alpha); + } + rl->err[i] = score/((double)(i + 1)); + } + + for (i = 0; i < DEPTH; i++) + { + idealIdeal[i] = idealIdealGain/((double)(i + 1)); + idealIdealGain *= (1.0 - alpha); + } + + for (i = 1; i < DEPTH; i++) + { + rl->err[i] += rl->err[i-1]; + idealIdeal[i] += idealIdeal[i - 1]; + } + + /* simple normalization ("ideal ideal normalization") */ + for (i = 1; i < DEPTH; i++) + rl->err[i] /= idealIdeal[i]; +} + +/* computeDCG: + compute DCG for a result list (a run or qrels); + assumes all results are labeled with relevance judgments; + the result is normalized using a simple "ideal ideal" normalization + (standard nDCG normalization comes later) +*/ +static void +computeDCG (struct rList *rl) +{ + int i; + double *subtopicGain = (double *) alloca (rl->subtopics*sizeof(double)); + double idealIdeal[DEPTH], idealIdealGain = (double) rl->actualSubtopics; + + for (i = 0; i < DEPTH; i++) + rl->dcg[i] = 0.0; + + if (rl->actualSubtopics == 0) + return; + + for (i = 0; i < rl->subtopics; i++) + subtopicGain[i] = 1.0; + + for (i = 0; i < DEPTH && i < rl->results; i++) + { + int j; + double score = 0.0; + + if (rl->list[i].rel) + for (j = 0; j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + { + score += subtopicGain[j]; + subtopicGain[j] *= (1.0 - alpha); + } + rl->dcg[i] = score*discount(i); + } + + for (i = 0; i < DEPTH; i++) + { + idealIdeal[i] = idealIdealGain*discount(i); + idealIdealGain *= (1.0 - alpha); + } + + for (i = 1; i < DEPTH; i++) + { + /* cumulative gain */ + rl->dcg[i] += rl->dcg[i-1]; + idealIdeal[i] += idealIdeal[i - 1]; + } + + /* simple normalization ("ideal ideal normalization") */ + for (i = 1; i < DEPTH; i++) + rl->dcg[i] /= idealIdeal[i]; +} + +/* computeSTRecall + compute subtopic recall for a result list; + assumes all results are labeled with relevance judgments +*/ +static void +computeSTRecall (struct rList *rl) +{ + int i, j, count = 0; + int *subtopicSeen = (int *) alloca (rl->subtopics*sizeof(int)); + + if (rl->actualSubtopics == 0) + return; + + for (j = 0; j < rl->subtopics; j++) + subtopicSeen[j] = 0; + + for (i = 0; i < DEPTH && i < rl->results; i++) + { + if (rl->list[i].rel) + for (j = 0; j < rl->subtopics; j++) + if (subtopicSeen[j] == 0 && rl->list[i].rel[j]) + { + count++; + subtopicSeen[j] = 1; + } + rl->strec[i] = ((double) count/ (double) rl->actualSubtopics); + } + + for (; i < DEPTH; i++) + rl->strec[i] = ((double) count/ (double) rl->actualSubtopics); +} + +/* computePrecision: + compute intent aware precision for a result list; + assumes all results are labeled with relevance judgments +*/ +static void +computePrecision (struct rList *rl) +{ + int i, count = 0; + + if (rl->actualSubtopics == 0) + return; + + for (i = 0; i < DEPTH && i < rl->results; i++) + { + if (rl->list[i].rel) + { + int j; + + for (j = 0; j < rl->subtopics; j++) + if (rl->list[i].rel[j]) + count++; + } + rl->precision[i] = ((double) count)/((i + 1)*rl->actualSubtopics); + } + + for (; i < DEPTH; i++) + rl->precision[i] = ((double) count)/((i + 1)*rl->actualSubtopics); +} + +/* qrelPopulateResultList: + populate an ideal result list from the qrels; + also used to label the run with relevance judgments +*/ +static void +qrelPopulateResultList (struct qrel *q, int n, struct rList *rl, int topics) +{ + int i, j, k, currentTopic; + char *currentDocno = ""; + + j = currentTopic = -1; + for (i = 0; i < n; i++) + { + if (q[i].topic != currentTopic) + { + j++; + currentTopic = q[i].topic; + currentDocno = ""; + rl[j].topic = currentTopic; + rl[j].subtopics = rl[j].results = 0; + rl[j].nrel = 0; + rl[j].mapIA = rl[j].map = 0.0; + rl[j].nrbp = rl[j].nnrbp = 0.0; + for (k = 0; k < DEPTH; k++) + rl[j].dcg[k] = rl[j].ndcg[k] = rl[j].err[k] = rl[j].nerr[k] + = rl[j].precision[k] = rl[j].strec[k] = 0.0; + } + if (rl[j].subtopics <= q[i].subtopic) + rl[j].subtopics = q[i].subtopic + 1; + if (strcmp (q[i].docno, currentDocno) != 0) + { + currentDocno = q[i].docno; + rl[j].results++; + } + } + + for (i = 0; i < topics; i++) + { + rl[i].list = + (struct result *) localMalloc (rl[i].results*sizeof (struct result)); + rl[i].nrelSub = (int *) localMalloc (rl[i].subtopics*sizeof (int)); + for (j = 0; j < rl[i].subtopics; j++) + rl[i].nrelSub[j] = 0; + for (j = 0; j < rl[i].results; j++) + { + rl[i].list[j].topic = rl[i].topic; + rl[i].list[j].rel = + (int *) localMalloc (rl[i].subtopics*sizeof (int)); + for (k = 0; k < rl[i].subtopics; k++) + rl[i].list[j].rel[k] = 0; + } + } + + j = k = currentTopic = -1; + currentDocno = ""; + for (i = 0; i < n; i++) + { + if (q[i].topic != currentTopic) + { + j++; + currentTopic = q[i].topic; + k = -1; + currentDocno = ""; + } + if (strcmp (q[i].docno, currentDocno) != 0) + { + currentDocno = q[i].docno; + k++; + rl[j].list[k].docno = localStrdup (currentDocno); + } + rl[j].list[k].rel[q[i].subtopic] = q[i].judgment; + rl[j].nrelSub[q[i].subtopic] += q[i].judgment; + } + + for (i = 0; i < topics; i++) + { + nrel(rl + i); + actualSubtopics (rl + i); + idealResult (rl + i); + resultSortByRank (rl[i].list, rl[i].results); + computeDCG (rl + i); + computeNRBP(rl + i); + computeERR (rl + i); + resultSortByDocno (rl[i].list, rl[i].results); + } +} + +/* qrelToRList: + construct an ideal result list from the qrels +*/ +static struct rList * +qrelToRList (struct qrel *q, int n, int *topics) +{ + struct rList *rl; + + *topics = qrelCountTopics (q, n); + rl = (struct rList *) localMalloc ((*topics)*sizeof (struct rList)); + qrelPopulateResultList (q, n, rl, *topics); + + return rl; +} + +/* qrelToRList: + process the qrels file, contructing an ideal result list +*/ +static struct rList * +processQrels (char *fileName, int *topics) +{ + FILE *fp; + char *line; + struct qrel *q; + int i = 0, n = 0; + + if ((fp = fopen (fileName, "r")) == NULL) + error ("cannot open qrel file \"%s\"\n", fileName); + + while (mygetline(fp)) + n++; + + fclose (fp); + + if (n == 0) + error ("qrel file \"%s\" is empty\n", fileName); + + q = localMalloc (n*sizeof (struct qrel)); + + if ((fp = fopen (fileName, "r")) == NULL) + error ("cannot open qrel file \"%s\"\n", fileName); + + while ((line = mygetline (fp))) + { + char *a[4]; + int topic, subtopic, judgment; + + if ( + split (line, a, 4) != 4 + || (topic = naturalNumber (a[0])) < 0 + || (subtopic = naturalNumber (a[1])) < 0 + || (judgment = naturalNumber (a[3])) < 0 + ) + error ( + "syntax error in qrel file \"%s\" at line %d\n", fileName, i + 1 + ); + else + { + q[i].topic = topic; + q[i].subtopic = subtopic; + if (judgment > 1) judgment = 1; /* binary assessment only */ + q[i].judgment = judgment; + q[i].docno = localStrdup (a[2]); + i++; + } + } + + fclose (fp); + + qrelSort (q, n); + + return qrelToRList (q, n, topics); +} + +/* resultCountTopics: + count the number of distinct topics in a run; assumes results are sorted +*/ +static int +resultCountTopics (struct result *r, int n) +{ + int i, topics = 1, currentTopic = r[0].topic; + + for (i = 1; i < n; i++) + if (r[i].topic != currentTopic) + { + topics++; + currentTopic = r[i].topic; + } + + return topics; +} + + +/* populateResultList: + populate a result list from a run +*/ +static void +populateResultList (struct result *r, int n, struct rList *rl, int topics) +{ + int i, j, k, currentTopic = -1; + + j = 0; + for (i = 0; i < n; i++) + if (r[i].topic != currentTopic) + { + currentTopic = r[i].topic; + rl[j].list = r + i; + rl[j].topic = currentTopic; + rl[j].subtopics = 0; + rl[j].actualSubtopics = 0; + if (j > 0) + rl[j-1].results = rl[j].list - rl[j-1].list; + rl[j].nrel = 0; + rl[j].mapIA = rl[j].map = 0.0; + rl[j].nrbp = rl[j].nnrbp = 0.0; + for (k = 0; k < DEPTH; k++) + rl[j].dcg[k] = rl[j].ndcg[k] = rl[j].err[k] = rl[j].nerr[k] + = rl[j].precision[k] = rl[j].strec[k] = 0.0; + j++; + } + if (j > 0) + rl[j-1].results = (r + n) - rl[j-1].list; +} + +/* forceTraditionalRanks: + Re-assign ranks so that runs are sorted by score and then by docno, + which is the traditional sort order for TREC runs. +*/ +static void +forceTraditionalRanks (struct result *r, int n) +{ + int i, rank, currentTopic = -1; + + resultSortByScore (r, n); + + for (i = 0; i < n; i++) + { + if (r[i].topic != currentTopic) + { + currentTopic = r[i].topic; + rank = 1; + } + r[i].rank = rank; + rank++; + } +} + +/* applyCutoff: + Throw away results deeper than a specified depth. + Run must be sorted by topic and then rank. + Return number of remaing results. +*/ +static int +applyCutoff (struct result *r, int n, int depthMax) +{ + int i, j, depth, currentTopic = -1; + + j = 0; + for (i = 0; i < n; i++) + { + if (r[i].topic != currentTopic) + { + currentTopic = r[i].topic; + depth = 1; + } + else + depth++; + if (depth <= depthMax) + r[j++] = r[i]; + } + + return j; +} + + + +/* processRun: + process a run file, returning a result list +*/ +static struct rList * +processRun (char *fileName, int *topics, char **runid) +{ + FILE *fp; + char *line; + int i = 0, n = 0; + int needRunid = 1; + struct result *r; + struct rList *rl; + + if ((fp = fopen (fileName, "r")) == NULL) + error ("cannot open run file \"%s\"n", fileName); + + while (mygetline(fp)) + n++; + + fclose (fp); + + if (n == 0) + error ("run file \"%s\" is empty\n", fileName); + + r = localMalloc (n*sizeof (struct result)); + + if ((fp = fopen (fileName, "r")) == NULL) + error ("cannot open run file \"%s\"\n", fileName); + + while ((line = mygetline (fp))) + { + char *a[6]; + int topic, rank; + + if ( + split (line, a, 6) != 6 + || (topic = parseTopic (a[0])) < 0 + || (rank = naturalNumber (a[3])) < 0 + ) + error ("syntax error in run file \"%s\" at line %d\n", fileName, i + 1); + else + { + if (needRunid) + { + *runid = localStrdup (a[5]); + needRunid = 0; + } + r[i].docno = localStrdup (a[2]); + r[i].topic = topic; + r[i].rank = rank; + r[i].rel = (int *) 0; + sscanf (a[4],"%lf", &(r[i].score)); + i++; + } + } + + /* force ranks to be consistent with traditional TREC sort order */ + if (traditional) + forceTraditionalRanks (r, n); + + /* for each topic, verify that ranks have not been duplicated */ + resultSortByRank (r, n); + for (i = 1; i < n; i++) + if (r[i].topic == r[i-1].topic && r[i].rank == r[i-1].rank) + error ( + "duplicate rank (%d) for topic %d in run file \"%s\"\n", + r[i].rank, r[i].topic, fileName + ); + + /* apply depth cutoff if specified on the command line */ + if (depthM > 0) + n = applyCutoff (r, n, depthM); + + /* for each topic, verify that docnos have not been duplicated */ + resultSortByDocno (r, n); + for (i = 1; i < n; i++) + if (r[i].topic == r[i-1].topic && strcmp(r[i].docno,r[i-1].docno) == 0) + error ( + "duplicate docno (%s) for topic %d in run file \"%s\"\n", + r[i].docno, r[i].topic, fileName + ); + + /* split results by topic */ + *topics = resultCountTopics (r, n); + rl = (struct rList *) localMalloc ((*topics)*sizeof (struct rList)); + populateResultList (r, n, rl, *topics); + + return rl; +} + +/* applyJudgments: + copy relevance judgments from qrel results to run results; + assumes results are sorted by docno +*/ +static void +applyJudgments (struct result *q, int qResults, struct result *r, int rResults) +{ + int i = 0, j = 0; + + while (i < qResults && j < rResults) + { + int cmp = strcmp (q[i].docno, r[j].docno); + + if (cmp < 0) + i++; + else if (cmp > 0) + j++; + else + { + r[j].rel = q[i].rel; + i++; + j++; + } + } +} + +/* renormalize: + normalize a result list against an ideal result list (created from qrels) +*/ +static void +renormalize (struct rList *ql, struct rList *rl) +{ + int i; + + for (i = 0; i < DEPTH; i++) + if (rl->dcg[i]) + { + rl->ndcg[i] = rl->dcg[i]/ql->dcg[i]; + rl->nerr[i] = rl->err[i]/ql->err[i]; + } + + rl->nnrbp = rl->nrbp/ql->nrbp; +} + +/* applyQrels: + transfer relevance judgments from qrels to a run +*/ +static int +applyQrels (struct rList *qrl, int qTopics, struct rList *rrl, int rTopics) +{ + int actualTopics = 0, i = 0, j = 0; + + while (i < qTopics && j < rTopics) + if (qrl[i].topic < rrl[j].topic) + i++; + else if (qrl[i].topic > rrl[j].topic) + j++; + else + { + rrl[j].subtopics = qrl[i].subtopics; + rrl[j].actualSubtopics = qrl[i].actualSubtopics; + rrl[j].nrel = qrl[i].nrel; + rrl[j].nrelSub = qrl[i].nrelSub; + applyJudgments ( + qrl[i].list, qrl[i].results, rrl[j].list, rrl[j].results + ); + resultSortByRank (rrl[j].list, rrl[j].results); + computeDCG (rrl + j); + computeNRBP (rrl + j); + computeERR (rrl + j); + renormalize (qrl + i, rrl + j); + computeSTRecall (rrl + j); + computePrecision (rrl + j); + computeMAP (rrl + j); + i++; + j++; + actualTopics++; + } + + return actualTopics; +} + + +/* outputMeasures: + output evaluation measures as a CSV file (ugly, ugly, ugly) +*/ +static void +outputMeasures ( +struct rList *rl, int rTopics, int actualTopics, char *runid, int AvgOverAllTopics, int all, + struct rList *bl, double riskAlpha, char * riskAlphaString, int bTopics, char *brunid + ) +{ +int i, j, nexti, nextj, numTopics; + double totalERR5 = 0.0, totalERR10 = 0.0, totalERR20 = 0.0; + double totalnERR5 = 0.0, totalnERR10 = 0.0, totalnERR20 = 0.0; + double totalDCG5 = 0.0, totalDCG10 = 0.0, totalDCG20 = 0.0; + double totalnDCG5 = 0.0, totalnDCG10 = 0.0, totalnDCG20 = 0.0; + double totalNRBP = 0.0, totalnNRBP = 0.0; + double totalMAPIA = 0.0; + double totalP5 = 0.0, totalP10 = 0.0, totalP20 = 0.0; + double totalSTRec5 = 0.0, totalSTRec10 = 0.0, totalSTRec20 = 0.0; + char * runstring = NULL; + + printf ("runid,topic"); + printf (",ERR-IA@5,ERR-IA@10,ERR-IA@20"); + printf (",nERR-IA@5,nERR-IA@10,nERR-IA@20"); + printf (",alpha-DCG@5,alpha-DCG@10,alpha-DCG@20"); + printf (",alpha-nDCG@5,alpha-nDCG@10,alpha-nDCG@20"); + printf (",NRBP,nNRBP"); + printf (",MAP-IA"); + printf (",P-IA@5,P-IA@10,P-IA@20"); + printf (",strec@5,strec@10,strec@20"); + printf ("\n"); + + int ZeroBaseline = 0; + if ((bl == NULL) || (bTopics == 0)) + { + ZeroBaseline = 1; + runstring = localStrdup(runid); + } + else + { + static char * between = " (rel to. "; + static char * rwstr = ", rs=1+a, a="; /* risk-sensitivity weight */ + static char * end = ")"; + runstring = localMalloc(strlen(runid) + strlen(between) + strlen(brunid) + strlen(rwstr) + strlen(riskAlphaString) + strlen(end) + 1); + sprintf(runstring,"%s%s%s%s%s%s",runid,between,brunid,rwstr,riskAlphaString,end); + } + + + /* shortcut is hard to get right with baseline */ +/* if (actualTopics == 0) */ +/* { */ +/* printf ("%s,amean", runid); */ +/* printf (",0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00"); */ +/* printf (",0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00"); */ +/* printf ("\n"); */ +/* return; */ +/* } */ + + i = j = nexti = nextj = 0; + numTopics = 0; + while ((i < rTopics) || ((j < bTopics) && AvgOverAllTopics)) + { + int ZeroRun = 0; + int ZeroBase = ZeroBaseline; + int topic = 0; + if (i >= rTopics) + ZeroRun = 1; + if (j >= bTopics) + ZeroBase = 1; + if (!ZeroRun && !ZeroBase) + { + if (rl[i].topic == bl[j].topic) + { + topic = rl[i].topic; + nexti++; + nextj++; + } + else if (rl[i].topic > bl[j].topic) + { + /* process baseline, run is zero */ + ZeroRun = 1; + topic = bl[j].topic; + nextj++; + if (!AvgOverAllTopics) + { + i = nexti; + j = nextj; + continue; + } + } + else /* (rl[i].topic < bl[j].topic) */ + { + /* process run, baseline is zero */ + topic = rl[i].topic; + ZeroBase = 1; + nexti++; + } + } + else if (ZeroRun) + { + topic = bl[j].topic; + nextj++; /* process baseline */ + } + else /* (ZeroBase) */ + { + topic = rl[i].topic; + nexti++; /* process run */ + } + + printf ( + "%s,%d" + ",%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f" + ",%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f\n", + runstring, topic, + RiskBased(TopicVal(ZeroRun,rl[i].err[4]),TopicVal(ZeroBase,bl[j].err[4]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].err[9]),TopicVal(ZeroBase,bl[j].err[9]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].err[19]),TopicVal(ZeroBase,bl[j].err[19]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].nerr[4]),TopicVal(ZeroBase,bl[j].nerr[4]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].nerr[9]),TopicVal(ZeroBase,bl[j].nerr[9]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].nerr[19]),TopicVal(ZeroBase,bl[j].nerr[19]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].dcg[4]),TopicVal(ZeroBase,bl[j].dcg[4]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].dcg[9]),TopicVal(ZeroBase,bl[j].dcg[9]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].dcg[19]),TopicVal(ZeroBase,bl[j].dcg[19]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].ndcg[4]),TopicVal(ZeroBase,bl[j].ndcg[4]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].ndcg[9]),TopicVal(ZeroBase,bl[j].ndcg[9]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].ndcg[19]),TopicVal(ZeroBase,bl[j].ndcg[19]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].nrbp),TopicVal(ZeroBase,bl[j].nrbp), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].nnrbp),TopicVal(ZeroBase,bl[j].nnrbp), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].mapIA),TopicVal(ZeroBase,bl[j].mapIA), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].precision[4]),TopicVal(ZeroBase,bl[j].precision[4]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].precision[9]),TopicVal(ZeroBase,bl[j].precision[9]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].precision[19]),TopicVal(ZeroBase,bl[j].precision[19]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].strec[4]),TopicVal(ZeroBase,bl[j].strec[4]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].strec[9]),TopicVal(ZeroBase,bl[j].strec[9]), riskAlpha), + RiskBased(TopicVal(ZeroRun,rl[i].strec[19]),TopicVal(ZeroBase,bl[j].strec[19]), riskAlpha) + ); + totalERR5 += RiskBased(TopicVal(ZeroRun,rl[i].err[4]),TopicVal(ZeroBase,bl[j].err[4]), riskAlpha); + totalERR10 += RiskBased(TopicVal(ZeroRun,rl[i].err[9]),TopicVal(ZeroBase,bl[j].err[9]), riskAlpha); + totalERR20 += RiskBased(TopicVal(ZeroRun,rl[i].err[19]),TopicVal(ZeroBase,bl[j].err[19]), riskAlpha); + + + totalnERR5 += RiskBased(TopicVal(ZeroRun,rl[i].nerr[4]),TopicVal(ZeroBase,bl[j].nerr[4]), riskAlpha); + totalnERR10 += RiskBased(TopicVal(ZeroRun,rl[i].nerr[9]),TopicVal(ZeroBase,bl[j].nerr[9]), riskAlpha); + totalnERR20 += RiskBased(TopicVal(ZeroRun,rl[i].nerr[19]),TopicVal(ZeroBase,bl[j].nerr[19]), riskAlpha); + + totalDCG5 += RiskBased(TopicVal(ZeroRun,rl[i].dcg[4]),TopicVal(ZeroBase,bl[j].dcg[4]), riskAlpha); + totalDCG10 += RiskBased(TopicVal(ZeroRun,rl[i].dcg[9]),TopicVal(ZeroBase,bl[j].dcg[9]), riskAlpha); + totalDCG20 += RiskBased(TopicVal(ZeroRun,rl[i].dcg[19]),TopicVal(ZeroBase,bl[j].dcg[19]), riskAlpha); + + + totalnDCG5 += RiskBased(TopicVal(ZeroRun,rl[i].ndcg[4]),TopicVal(ZeroBase,bl[j].ndcg[4]), riskAlpha); + totalnDCG10 += RiskBased(TopicVal(ZeroRun,rl[i].ndcg[9]),TopicVal(ZeroBase,bl[j].ndcg[9]), riskAlpha); + totalnDCG20 += RiskBased(TopicVal(ZeroRun,rl[i].ndcg[19]),TopicVal(ZeroBase,bl[j].ndcg[19]), riskAlpha); + + + totalNRBP += RiskBased(TopicVal(ZeroRun,rl[i].nrbp),TopicVal(ZeroBase,bl[j].nrbp), riskAlpha); + totalnNRBP += RiskBased(TopicVal(ZeroRun,rl[i].nnrbp),TopicVal(ZeroBase,bl[j].nnrbp), riskAlpha); + + totalMAPIA += RiskBased(TopicVal(ZeroRun,rl[i].mapIA),TopicVal(ZeroBase,bl[j].mapIA), riskAlpha); + + totalP5 += RiskBased(TopicVal(ZeroRun,rl[i].precision[4]),TopicVal(ZeroBase,bl[j].precision[4]), riskAlpha); + totalP10 += RiskBased(TopicVal(ZeroRun,rl[i].precision[9]),TopicVal(ZeroBase,bl[j].precision[9]), riskAlpha); + totalP20 += RiskBased(TopicVal(ZeroRun,rl[i].precision[19]),TopicVal(ZeroBase,bl[j].precision[19]), riskAlpha); + + totalSTRec5 += RiskBased(TopicVal(ZeroRun,rl[i].strec[4]),TopicVal(ZeroBase,bl[j].strec[4]), riskAlpha); + totalSTRec10 += RiskBased(TopicVal(ZeroRun,rl[i].strec[9]),TopicVal(ZeroBase,bl[j].strec[9]), riskAlpha); + totalSTRec20 += RiskBased(TopicVal(ZeroRun,rl[i].strec[19]),TopicVal(ZeroBase,bl[j].strec[19]), riskAlpha); + + i = nexti; + j = nextj; + numTopics++; + } + + if ((bl != NULL) && (bTopics != 0)) + { + if (numTopics > actualTopics) + actualTopics = numTopics; /* not using the full set but baseline contains some not in the run */ + } + + + printf ( + "%s,amean" + ",%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f" + ",%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f,%.6f\n", + runstring, + totalERR5/actualTopics, totalERR10/actualTopics, totalERR20/actualTopics, + totalnERR5/actualTopics, totalnERR10/actualTopics, totalnERR20/actualTopics, + totalDCG5/actualTopics, totalDCG10/actualTopics, totalDCG20/actualTopics, + totalnDCG5/actualTopics, totalnDCG10/actualTopics, totalnDCG20/actualTopics, + totalNRBP/actualTopics, totalnNRBP/actualTopics, + totalMAPIA/actualTopics, + totalP5/actualTopics, totalP10/actualTopics, totalP20/actualTopics, + totalSTRec5/actualTopics,totalSTRec10/actualTopics,totalSTRec20/actualTopics + ); + free(runstring); +} + +static void +usage () +{ + error (usageText, programName); +} + +int +main (int argc, char **argv) +{ + char *runid; + char *brunid = NULL; /* baseline run ID */ + int qTopics, rTopics, actualTopics; + int bTopics = 0; + double riskAlpha = 0; + static char * riskAlphaDefString = "0"; /* set to match riskAlpha */ + char * riskAlphaStr = NULL; + struct rList *qrl, *rrl, *brl; + int cFlag = 0; /* average over complete set of queries */ + int aFlag = 0; /* report all measures */ + char *baselineRun = NULL; + brl = NULL; + setProgramName (argv[0]); + + while (argc != 3) + if (argc >= 2 && strcmp ("-version", argv[1]) == 0) + { + printf ("%s: %s\n", programName, version); + exit (0); + } + else if (argc >= 2 && strcmp ("-help", argv[1]) == 0) + { + printf (helpText); + exit (0); + } + else if (argc >= 5 && strcmp ("-alpha", argv[1]) == 0) + { + sscanf (argv[2], "%lf", &alpha); + if (alpha < 0.0 || alpha > 1.0) + usage(); + argc -= 2; + argv += 2; + } + else if (argc >= 5 && strcmp ("-beta", argv[1]) == 0) + { + sscanf (argv[2], "%lf", &beta); + if (beta < 0.0 || beta > 1.0) + usage(); + argc -= 2; + argv += 2; + } + else if (argc >= 5 && strcmp ("-M", argv[1]) == 0) + { + sscanf (argv[2], "%d", &depthM); + if (depthM <= 0) + usage(); + argc -= 2; + argv += 2; + } + else if (argc >= 5 && strcmp ("-baseline", argv[1]) == 0) + { + baselineRun = argv[2]; + argc -= 2; + argv += 2; + } + else if (argc >= 5 && strcmp ("-riskAlpha", argv[1]) == 0) + { + sscanf (argv[2], "%lf", &riskAlpha); + riskAlphaStr = argv[2]; + if (riskAlpha < 0.0) + usage(); + argc -= 2; + argv += 2; + } + else if (argc >= 4 && strcmp ("-traditional", argv[1]) == 0) + { + traditional = 1; + --argc; + argv++; + } + else if (argc >= 4 && argv[1][0] == '-') + { + int i; + + for (i = 1; argv[1][i]; i++) + switch (argv[1][i]) + { + case 'c': + cFlag = 1; + break; + case 'a': + aFlag = 1; + break; + default: + usage(); + } + --argc; + argv++; + } + else + usage(); + + qrl = processQrels (argv[1], &qTopics); + rrl = processRun (argv[2], &rTopics, &runid); + actualTopics = applyQrels (qrl, qTopics, rrl, rTopics); + if (baselineRun != NULL) + { + brl = processRun (baselineRun, &bTopics, &brunid); + applyQrels (qrl, qTopics, brl, bTopics); + } + if (cFlag) + actualTopics = qTopics; + outputMeasures (rrl, rTopics, actualTopics, runid, cFlag, aFlag, brl, riskAlpha, + (riskAlphaStr == NULL? riskAlphaDefString : riskAlphaStr), + bTopics, brunid); + + return 0; +} + diff --git a/tools/eval/rbp_eval-0.2.tar.gz b/tools/eval/rbp_eval-0.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..296f6a9cbe6f85f5af615fde094668978ddfea98 --- /dev/null +++ b/tools/eval/rbp_eval-0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5467fb35116c10527979fbdc152e4041cb62414c6295fd1ed31312b60a1c69a9 +size 207230 diff --git a/tools/eval/trec_eval.9.0.4.tar.gz b/tools/eval/trec_eval.9.0.4.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..a13bff93486643431e151acbaa65657ec33282f0 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bb6ce52dc14f4a0a8baf066244aea9d4bc9f5988c0cfa1a70641f02a0a9d8a +size 204298 diff --git a/tools/eval/trec_eval.9.0.4/CHANGELOG b/tools/eval/trec_eval.9.0.4/CHANGELOG new file mode 100644 index 0000000000000000000000000000000000000000..cd4fee7dc224da9e0b5ed18254c40c547f9add02 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/CHANGELOG @@ -0,0 +1,100 @@ +------------------------------------------------------------------------------ +Change Log (only recent) +------------------------------------------------------------------------------ +12/5/12 Version 9.0.4 + Fixed yaap measure (Stephen Robertson). +12/5/12 Version 9.0.3 + Added yaap measure (Stephen Robertson). +2/28/12 Version 9.0.2 + Cleaned up warning messages again, Corrected -c flag implementation +7/14/09 Version 9.0 + Long past time to get this out there, despite my plans + for more features! Minor cleanup of warning messages + in 64bit and gcc 4.4 compilers +12/31/08 + comments and documentation of Zscore file format corrected. + trec_eval.c get_zscores.c +3/3/08 Version 9.0alpha. + Complete rewrite of entire trec_eval (needed for a long time - + core code was written in the 1980's and was ugly then!). + Complete separation of individual measure calculations - + computers are now fast enough so can afford recalculation of lots + of intermediate values. + Parameters for measures (eg, cutoffs for P) can be specified on the + command line. + Choice of measures can be specifed on the command line. + Should be much easier to add measures, and much easier to add + new input file formats with associated measures. + An initial set of preference evaluation measures (with their own + input rel_info format) have been added. + Help now gives targeted measure and format descriptions. Try + trec_eval -h -m all_prefs -R prefs + to get info on preference measures and formats, for instance. + All internal calculations are in double rather than float. Yields + minor variations in output at rare times; mostly when going from a + double percentage to a corresponding doc cutoff (eg, in iprec_at_recall). + All globally known procedure names or variables now begin with 'te_' + to allow incorporation of procedures in other programs. + + Measures added: + ndcg, ndcg_cut, set_F, success, map_avgjg, P_avgjg, runid, + relstring, ndcg_p + various preference evaluation measures. + Measures renamed: + set_P was exact_prec + set_recall was exact_recall + set_relative_P was exact_relative_prec + set_recall was exact_recall + set_map was exact_unranked_avg_prec + gm_map was gm_ap + 11pt_avg was 11-pt_avg + Rprec-mult_* was *R-prec + P_* was P* + recall_* was recall* + relative_P_* was relative_P* + iprec_at_recall_* was ircl_prn.* + Measures dropped for now: + 3-pt_avg + avg_doc_prec + avg_relative_prec + exact_relative_unranked_avg_prec + map_at_R + int_map + exact_int_R_rcl_prec + int_map_at_R + unranked_avg_prec* + relative_unranked_avg_prec* + rcl_at_142_nonrel + fallout_recall_* + int_*R-prec + micro_prec + micro_recall + micro_bpref + bpref variants + time base measures. + Input formats added: + prefs - allows expression of preferences + qrels_prefs - same as standard qrels, except treated as prefs + qrels_jg - same as standard qrels, except allows judgment sets + from multiple users (judgment groups). + +Version 8.1, Added infAP, minor bug fixes +7/24/06 Improved infAP comments (implementation verified by Yilmaz). + trec_eval_help.c: allow longer measure explanations. +6/27/06 get_opt.c Fixed error message +6/22/06 Added measure infAP (Aslam et al) to allow judging only sample + of pools. -1 for rel in qrels file interpreted as pool doc not judged. +6/22/06 trvec_teval.c: fixed bugs in calculation of bpref if multiple + relevance levels were used and a non-default relevance level + was given. (Eg. A doc with rel level of 2 was counted as unjudged + rather than judged nonrel if a relevance level of 3 was needed + to consider relevant.) +4/5/06 Changed comments in README, trec_eval.c, trec_eval_help.c files + which incorrectly claimed queries with no relevant docs are + ignored (this was true with very old versions of trec_eval). Now + reads that queries with no relevance information are ignored. + Giorgio Di Nunzio and Nicola Ferro, +------------------------------------------------------------------------------ +Version 8.0, full bpref bug fix, see file bpref_bug. I decided to up the + version number since bpref results are incompatible with previous + results (though the changes are small). diff --git a/tools/eval/trec_eval.9.0.4/Makefile b/tools/eval/trec_eval.9.0.4/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..ee3524d5c1e6e1709ed9eb2d7019de5aee15b234 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/Makefile @@ -0,0 +1,134 @@ +BIN = /usr/local/bin +# Copyright (c) 2008 - Chris Buckley. +# +# Permission is granted for use and modification of this file for +# research, non-commercial purposes. + +H = . + +VERSIONID = 9.0.4 + +# gcc +CC = gcc +#CFLAGS = -g -I$H -Wall -DVERSIONID=\"$(VERSIONID)\" +#CFLAGS = -g -I$H -Wall -DMDEBUG -DVERSIONID=\"$(VERSIONID)\" +#CFLAGS = -pg -I$H -O3 -Wall -DVERSIONID=\"$(VERSIONID)\" +#CFLAGS = -g -I$H -O3 -Wall -DVERSIONID=\"$(VERSIONID)\" +CFLAGS = -g -I$H -Wall -DVERSIONID=\"$(VERSIONID)\" + +# Other macros used in some or all makefiles +INSTALL = /bin/mv + +TOP_SRCS = trec_eval.c formats.c meas_init.c meas_acc.c meas_avg.c \ + meas_print_single.c meas_print_final.c + +FORMAT_SRCS = get_qrels.c get_trec_results.c get_prefs.c get_qrels_prefs.c \ + get_qrels_jg.c form_res_rels.c form_res_rels_jg.c \ + form_prefs_counts.c \ + utility_pool.c get_zscores.c convert_zscores.c + +MEAS_SRCS = measures.c m_map.c m_P.c m_num_q.c m_num_ret.c m_num_rel.c \ + m_num_rel_ret.c m_gm_map.c m_Rprec.c m_recip_rank.c m_bpref.c \ + m_iprec_at_recall.c m_recall.c m_Rprec_mult.c m_utility.c m_11pt_avg.c \ + m_ndcg.c m_ndcg_cut.c m_Rndcg.c m_ndcg_rel.c \ + m_binG.c m_G.c \ + m_rel_P.c m_success.c m_infap.c m_map_cut.c \ + m_gm_bpref.c m_runid.c m_relstring.c \ + m_set_P.c m_set_recall.c m_set_rel_P.c m_set_map.c m_set_F.c \ + m_num_nonrel_judged_ret.c \ + m_prefs_num_prefs_poss.c m_prefs_num_prefs_ful.c \ + m_prefs_num_prefs_ful_ret.c\ + m_prefs_simp.c m_prefs_pair.c m_prefs_avgjg.c m_prefs_avgjg_Rnonrel.c \ + m_prefs_simp_ret.c m_prefs_pair_ret.c m_prefs_avgjg_ret.c\ + m_prefs_avgjg_Rnonrel_ret.c \ + m_prefs_simp_imp.c m_prefs_pair_imp.c m_prefs_avgjg_imp.c\ + m_map_avgjg.c m_Rprec_mult_avgjg.c m_P_avgjg.c m_yaap.c + +SRCS = $(TOP_SRCS) $(FORMAT_SRCS) $(MEAS_SRCS) + +SRCH = common.h trec_eval.h sysfunc.h functions.h trec_format.h + +SRCOTHER = README Makefile test bpref_bug CHANGELOG + +trec_eval: $(SRCS) Makefile $(SRCH) + $(CC) $(CFLAGS) -o trec_eval $(SRCS) -lm + +install: $(BIN)/trec_eval + +quicktest: trec_eval + ./trec_eval test/qrels.test test/results.test | diff - test/out.test + ./trec_eval -m all_trec test/qrels.test test/results.test | diff - test/out.test.a + ./trec_eval -m all_trec -q test/qrels.test test/results.test | diff - test/out.test.aq + ./trec_eval -m all_trec -q -c test/qrels.test test/results.trunc | diff - test/out.test.aqc + ./trec_eval -m all_trec -q -c -M100 test/qrels.test test/results.trunc | diff - test/out.test.aqcM + ./trec_eval -m all_trec -mrelstring.20 -q -l2 test/qrels.rel_level test/results.test | diff - test/out.test.aql + ./trec_eval -m all_prefs -q -R prefs test/prefs.test test/prefs.results.test | diff - test/out.test.prefs + ./trec_eval -m all_prefs -q -R qrels_prefs test/qrels.test test/results.test | diff - test/out.test.qrels_prefs + ./trec_eval -m qrels_jg -q -R qrels_jg test/qrels.123 test/results.test | diff - test/out.test.qrels_jg + ./trec_eval -q -miprec_at_recall..10,.20,.25,.75,.50 -m P.5,7,3 -m recall.20,2000 -m Rprec_mult.5.0,0.2,0.35 -mutility.2,-1,0,0 -m 11pt_avg..25,.5,.75 -mndcg.1=3,2=9,4=4.5 -mndcg_cut.10,20,23.4 -msuccess.2,5,20 test/qrels.test test/results.test | diff - test/out.test.meas_params + ./trec_eval -q -m all_trec -Z test/zscores_file test/qrels.test test/results.test | diff - test/out.test.aqZ + /bin/echo "Test succeeeded" + +longtest: trec_eval + /bin/rm -rf test.long; mkdir test.long + ./trec_eval test/qrels.test test/results.test > test.long/out.test + ./trec_eval -m all_trec test/qrels.test test/results.test > test.long/out.test.a + ./trec_eval -m all_trec -q test/qrels.test test/results.test > test.long/out.test.aq + ./trec_eval -m all_trec -q -c test/qrels.test test/results.trunc > test.long/out.test.aqc + ./trec_eval -m all_trec -q -c -M100 test/qrels.test test/results.trunc > test.long/out.test.aqcM + ./trec_eval -m all_trec -mrelstring.20 -q -l2 test/qrels.rel_level test/results.test > test.long/out.test.aql + ./trec_eval -m all_prefs -q -R prefs test/prefs.test test/prefs.results.test > test.long/out.test.prefs + ./trec_eval -m all_prefs -q -R qrels_prefs test/qrels.test test/results.test > test.long/out.test.qrels_prefs + ./trec_eval -m qrels_jg -q -R qrels_jg test/qrels.123 test/results.test > test.long/out.test.qrels_jg + ./trec_eval -q -miprec_at_recall..10,.20,.25,.75,.50 -m P.5,7,3 -m recall.20,2000 -m Rprec_mult.5.0,0.2,0.35 -mutility.2,-1,0,0 -m 11pt_avg..25,.5,.75 -mndcg.1=3,2=9,4=4.5 -mndcg_cut.10,20,23.4 -msuccess.2,5,20 test/qrels.test test/results.test > test.long/out.test.meas_params + ./trec_eval -q -m all_trec -Z test/zscores_file test/qrels.test test/results.test > test.long/out.test.aqZ + diff test.long test + +$(BIN)/trec_eval: trec_eval + if [ -f $@ ]; then $(INSTALL) $@ $@.old; fi; + $(INSTALL) trec_eval $@ + +##4########################################################################## +##5########################################################################## +# All code below this line (except for automatically created dependencies) +# is independent of this particular makefile, and should not be changed! +############################################################################# + +######################################################################### +# Odds and ends # +######################################################################### +clean semiclean: + /bin/rm -f *.o *.BAK *~ trec_eval trec_eval.*.tar out.trec_eval Makefile.bak + +tar: + -/bin/rm -rf ./trec_eval.$(VERSIONID) + mkdir trec_eval.$(VERSIONID) + cp -rp $(SRCOTHER) $(SRCS) $(SRCH) trec_eval.$(VERSIONID) + tar cf - ./trec_eval.$(VERSIONID) > trec_eval.$(VERSIONID).tar + +######################################################################### +# Determining program dependencies # +######################################################################### +depend: + grep '^#[ ]*include' *.c \ + | sed -e 's?:[^"]*"\([^"]*\)".*?: \$H/\1?' \ + -e '/ makedep + echo '/^# DO NOT DELETE THIS LINE/+2,$$d' >eddep + echo '$$r makedep' >>eddep + echo 'w' >>eddep + cp Makefile Makefile.bak + ed - Makefile < eddep + /bin/rm eddep makedep + echo '# DEPENDENCIES MUST END AT END OF FILE' >> Makefile + echo '# IF YOU PUT STUFF HERE IT WILL GO AWAY' >> Makefile + echo '# see make depend above' >> Makefile + +# DO NOT DELETE THIS LINE -- make depend uses it +# DEPENDENCIES MUST END AT END OF FILE +# IF YOU PUT STUFF HERE IT WILL GO AWAY +# see make depend above diff --git a/tools/eval/trec_eval.9.0.4/README b/tools/eval/trec_eval.9.0.4/README new file mode 100644 index 0000000000000000000000000000000000000000..2de1d511d0b9080e029ebfbb784667e0ca40d2ba --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/README @@ -0,0 +1,185 @@ +trec_eval is the standard tool used by the TREC community for +evaluating an ad hoc retrieval run, given the results file and a +standard set of judged results. + +------------------------------------------------------------------------------ +Installation: Should be as easy as typing "make" in the source directory. +If you wish the trec_eval binary to be placed in a standard location, alter +the first line of Makefile appropriately. + +------------------------------------------------------------------------------ +Testing: sample input and output files are included in the directory test. +"make quicktest" will perform some sample simple evaluations and compare +the results. + +------------------------------------------------------------------------------ +Usage: Most options can be ignored. The only one most folks will need +is the "-q" flag, to indicate whether to output official results for individual +queries as well as the averages over all queries. Official TREC usage +might be something like + trec_eval -q -c -M1000 official_qrels submitted_results +to ensure correct evaluation if submitted_results doesn't have results +for all queries, or returns more than 1000 documents per query. +If you wish to output only one particular measure: + trec_eval -m measure[.params] rel_info_file results_file + + +------------------------------------------------------------------------------ +Change Log (only recent) +------------------------------------------------------------------------------ +12/31/08 + comments and documentation of Zscore file format corrected. + trec_eval.c get_zscores.c +2/25/08 Version 9.0alpha. + Complete rewrite of entire trec_eval (needed for a long time!). + Complete separation of individual measure calculations - + computers are now fast enough so can afford recalculation of lots + of intermediate values. + Should be much easier to add measures to, and much easier to add + new input file formats with associated measures. + Parameters for measures (eg, cutoffs for P) can be specified on the + command line. + Choice of measures can be specifed on the command line. + An initial set of preference evaluation measures (with their own + input rel_info format) have been added. + Help now gives targeted measure and format descriptions. Try + trec_eval -h -m all_prefs -R prefs + to get info on preference measures and formats, for instance. + All internal calculations are in double rather than float. Yields + minor variations in output at rare times; mostly when going from a + double percentage to a corresponding doc cutoff (eg, in iprec_at_recall). + All globally known procedure names or variables now begin with 'te_' + to allow incorporation of procedures in other programs. + + Measures added: + ndcg, ndcg_cut, set_F, success, map_avgjg, P_avgjg, + various preference evaluation measures. + Measures renamed: + Rprec-mult_* was *R-prec + set_P was exact_prec + set_recall was exact_recall + set_relative_P was exact_relative_prec + set_recall was exact_recall + set_map was exact_unranked_avg_prec + gm_map was gm_ap + 11pt_avg was 11-pt_avg + P_* was P* + recall_* was recall* + relative_P_* was relative_P* + iprec_at_recall_* was ircl_prn.* + Measures dropped for now: + 3-pt_avg + avg_doc_prec + avg_relative_prec + exact_relative_unranked_avg_prec + map_at_R + int_map + exact_int_R_rcl_prec + int_map_at_R + unranked_avg_prec* + relative_unranked_avg_prec* + rcl_at_142_nonrel + fallout_recall_* + int_*R-prec + micro_prec + micro_recall + micro_bpref + bpref variants + time base measures. + Input formats added: + prefs - allows expression of preferences + qrels_prefs - same as standard qrels, except treated as prefs + qrels_jg - same as standard qrels, except allows judgment sets + from multiple users (judgment groups). + +Version 8.1, Added infAP, minor bug fixes +7/24/06 Improved infAP comments (implementation verified by Yilmaz). + trec_eval_help.c: allow longer measure explanations. +6/27/06 get_opt.c Fixed error message +6/22/06 Added measure infAP (Aslam et al) to allow judging only sample + of pools. -1 for rel in qrels file interpreted as pool doc not judged. +6/22/06 trvec_teval.c: fixed bugs in calculation of bpref if multiple + relevance levels were used and a non-default relevance level + was given. (Eg. A doc with rel level of 2 was counted as unjudged + rather than judged nonrel if a relevance level of 3 was needed + to consider relevant.) +4/5/06 Changed comments in README, trec_eval.c, trec_eval_help.c files + which incorrectly claimed queries with no relevant docs are + ignored (this was true with very old versions of trec_eval). Now + reads that queries with no relevance information are ignored. + Giorgio Di Nunzio and Nicola Ferro, +------------------------------------------------------------------------------ +Version 8.0, full bpref bug fix, see file bpref_bug. I decided to up the + version number since bpref results are incompatible with previous + results (though the changes are small). +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ + +Files: +Main procedure: +trec_eval.c +--- +Procedures to read input files of various formats: +formats.c Mapping names of input file formats to input procedures +get_qrels.c Read the standard judged documents (qrels format) +get_qrels_jg.c Read qrels format with multiple judgment groups per query +get_prefs.c Read preferences judgments instead of doc judgments - see + formats.c for full description. +get_qrels_prefs.c Read qrels_jg format file, interpret as prefs file. +get_trec_results.c Read the standard result file (trec_results format). +--- +Procedures to merge rel_info and results from input form into form that measures +can easily use, if they wish: +form_res_rels.c 'qrels' and 'trec_results' into RES_RELS format. +form_res_rels_jg.c 'qrels_jg' and 'trec_results' into RES_RELS_JG format. +form_pref_counts.c ('prefs' or 'qrels_prefs') and 'trec_results' format +--- +The actual measures: +measures.c Associates measure name with parameters and + init, calculation, accumulation, printing procedures +meas_*.c Common procedures used by many measures for init, acc, printing. +m_.c measure specific procedures +--- +Miscellaneous: +Makefile Compile and test trec_eval +README This file +CHANGELOG Recent changes +test Directory of collection of sample input and output for trec_eval +trec_eval.h Basic evaluation structures. +functions.h Prototype decorations of measure procedures. +sysfunc.h +common.h +bpref_bug: Description of bug in bpref that existed in trec_eval versions 6 + through 7.3. + +------------------------------------------------------------------------------ +------------------------------------------------------------------------------ +Adding a new measure. + +Assuming it uses standard input files: +1. In m_.c, write any needed measure specific procedures needed to + initialize measure + calculate measure + accumulate measure (adding one topic's value to summary value over topics) + calculate the ending average for a measure. + print single + print final query measure value (and cleanup if needed) + Most measures require only a new calculate measure procedure - the + other procedures are generic and already implemented depending on the type of + measure (has cutoffs and value for each cutoff, parameters, is a float, etc). + See functions.h to see fit for these generic procedures. +2. In same file, construct TREC_MEAS te_meas* entry pointing to above + procedures and any default cutoffs or parameters. +3. Add pointer to that TREC_MEAS entry in "measures.c" +4. Add measure source file to Makefile + +------------------------------------------------------------------------------ +Adding a new file format +1. Implement reading of new format in get_.c, with returned top + level output of type ALL_REL_INFO or ALL_RESULTS. The individual topic + returned values will be in a format dependent form which will be passed + to the appropriate measures. +2. Add format to appropriate format list in formats.c +3. Add measures to take advantage of format (see above) +4. To use, invoke trec_eval with -R or -T values, and -m measures that + are appropriate. diff --git a/tools/eval/trec_eval.9.0.4/README.windows.md b/tools/eval/trec_eval.9.0.4/README.windows.md new file mode 100644 index 0000000000000000000000000000000000000000..ab1c04e0b203822c021092f570f0444e2a2c7632 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/README.windows.md @@ -0,0 +1,13 @@ +## Compiling + +To achieve a compilation of trec_eval for Windows, you will need Cygwin installed. + +Download and install the [Cygwin](https://www.cygwin.com/) platform. You will need make and gcc installed by Cygwin. To achieve this, on top of the default Cygwin installation, it is recommended to install automake, make, gcc, cygwin-gcc and git from the Develop category, and permitting dependencies to be installed. + +Then, to compile trec_eval, open a Cygwin Terminal, navigate using cd to the directory of the trec_eval source, and type make. + +## Running + +The resulting trec_eval.exe should be usable directly from the Cygwin Terminal. + +The resulting trec_eval.exe should be usable on any machine without Cygwin installed, as long as the cygwin1.dll is available. For instance, place a copy the cygwin1.dll from Cygwin's /bin directory into the same directory as trec_eval.exe. diff --git a/tools/eval/trec_eval.9.0.4/bpref_bug b/tools/eval/trec_eval.9.0.4/bpref_bug new file mode 100644 index 0000000000000000000000000000000000000000..40e76ccae3e8a63d7a92987a7464364c397ac010 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/bpref_bug @@ -0,0 +1,176 @@ +November 8, 2005 +We found a bug in the calculation of the bpref measure within trec_eval. + +BUG DESCRIPTION: The bpref measure calculates the fraction of +preferences between pairs of judged relevant and non-relevant +documents that were correctly ordered in a document ranking. +When a run does not retrieve R judged non-relevant documents, +only the retrieved non-relevant documents were considered. Thus +a (worst case) run which retrieved only 5 judged documents, the +first non-relevant and the following 4 relevant, would have a +score of 0.0 since the fraction of correct preferences among the +retrieved judged documents was 0.0. However, the retrieved judged +relevant documents should have been counted as being preferred +over any judged non-relevant document that wasn't retrieved. If +the nonretrieved documents included 3 judged non-relevant +documents and 2 judged relevant documents, then the bpref score +should be 0.5. (= ((4 * (3/4)) + 2 * (0/4)) / 6). + +BUG IMPACT: Almost no impact for standard TREC-type ad hoc runs +(retrieve 1000 documents). Topics with large numbers of relevant +documents (eg, over 300) had their scores artificially depressed +for those topics, and thus performance with the corrected bpref +will be higher on those topics. Kendall tau of system rankings +show very strong (.95 - .98) agreement between the buggy and new +bpref. + +There may be more impact for non-standard environments where the +number of retrieved judged documents is small. Eg, I've been +told the 2005 Terabyte efficiency track (only retrieve 20 +documents) is more strongly affected. + +BUG FIX: Version 8.0, available from the usual places at NIST, +implements the corrected bpref calculations. It also adds the +measures "old_bpref" and "old_bpref_top10pRnonrel" that calculate +the buggy numbers for comparisons with old results (the latter +measure was used in the SIGIR 2004 bpref paper). People using +bpref should switch to Version 8.0 or higher as soon as possible. + +BUG APOLOGY: I want to apologize to the community for the error. +Doing research and using new measures is hard enough without +having to worry about buggy implementations! + +Chris Buckley + +####################################################################### +For those of you working with bpref who want to know more details +about the bug and its effects, here's a fuller version of above. + +BUG DESCRIPTION: Here's code, pseudo_code, and comments comparing +old_bpref (the buggy version) and bpref on a single topic: + long nonrel_so_far; /* Number of non-relevant documents seen while + going through the ranking */ + long num_nonrel; /* Number of judged non-relevant documents */ + long nonrel_ret; /* Number of retrieved judged non-relevant documents */ + long pref_top_Rnonrel_num; /* set to R (eval->num_rel) */ + + nonrel_so_far = 0; + foreach doc in retrieved documents (sorted in decreasing score) { + if (doc is not relevant) + nonrel_so_far++; + else { + /* Add fraction of correct preferences for this doc */ + if (nonrel_so_far) { +-->new eval->bpref += 1.0 - + (((float) MIN (nonrel_so_far, pref_top_Rnonrel_num)) / + (float) MIN (num_nonrel, pref_top_Rnonrel_num)); +-->buggy eval->old_bpref += 1.0 - + (((float) MIN (nonrel_so_far, pref_top_Rnonrel_num)) / + (float) MIN (nonrel_ret, pref_top_Rnonrel_num)); + } + else { + eval->bpref += 1.0; + eval->old_bpref += 1.0; + } + } + } + if (eval->num_rel) { + eval->bpref /= eval->num_rel; + eval->old_bpref /= eval->num_rel; + } + +BUG HOW IT HAPPENED:The first versions of bpref I wrote were +defined only on the retrieved documents. When I switched to +variants using the TREC standard of considering all documents +(which improved the measures greatly), I overlooked making the +needed change to the denominator in the code above. + +BUG HOW DISCOVERED: On November 4, Ian Soboroff (NIST) was +looking at the bpref code and couldn't understand the "corner" +conditions in the code. We talked some, I stared at the code a +couple of minutes, and then went "OOPS", (or words to that +effect). + +CHANGES CAUSED BY BUG: I made the obvious changes to the bpref +code, and also revamped the whole structure of the main function, +to at least break apart the major different kinds of measures +(eg, compute the cutoff measures, the per document average +measures, the bpref measures, and the time measures separately.) +It was impossible to understand the function and now it's merely +very difficult! I should probably rewrite it to compute most +measures separately; execution speed is no longer the critical +factor it once was. + +BUG IMPACT VALIDATION: I reran the complete set of runs that went +into the Buckley, Voorhees SIGIR 2004 bpref paper. That included +comparing all systems in tasks in TREC 8, TREC 10, and TREC 12 at +various levels of completeness of the document set and relevance +levels. In the comparisons of bpref system rankings versus +original MAP rankings, the Kendall Tau scores of the two versions +of bpref were basically identical. They did not vary from each +other by more than .01, except when only using 1% or 2% of the +judgements in which case it was less than .03. (I was actually +expecting much greater differences when using very small number +of relevant and non-relevant documents. But it looks like it was +the same for all systems.) + +Using full information, the actual scores of the old and new bprefs +were pretty much the same when averaged over all systems, except for 3 +topics in TREC 10. Here's the topics with the top differences in old +and new bpref scores when averaged over all systems: + qid old_bpref bpref diff + 541 0.189271 0.324097 -0.134826 + 544 0.555475 0.633235 -0.07776 + 549 0.278118 0.321332 -0.043214 + 530 0.391955 0.394681 -0.002726 + 519 0.132094 0.132671 -0.000577 + 509 0.266160 0.266544 -0.000384 + 547 0.167335 0.167504 -0.000169 + 511 0.303595 0.303679 -8.4e-05 + 501 0.175508 0.175508 0 ... all other topics tied at 0 +Here's the number of relevant documents per topic + num_rel 541 372 + num_rel 549 367 + num_rel 544 324 + num_rel 511 165 + num_rel 519 149 + num_rel 547 144 + num_rel 509 140 + num_rel 530 124 + num_rel 527 93 +Clearly there's a big impact in scores on the 3 topics with over +300 relevant documents, a small impact on the 5 topics with +between 100 and 200 relevant documents, and no impact on the +rest. + +For TREC 8, there was 1 topic with a diff greater than .01 (.029) +and 23 topics that had any differences at all. For TREC 12, +there was a small impact on 32/100 topics with the largest being +.008. + + +Overall, I conclude that there's a minor impact on the standard +TREC 1000 document evaluations due to the buggy bpref on topics +which have hundreds of relevant documents. The average scores of +all systems will change because of these topics, but it should +not have an important effect on system ranking (except possibly +for systems which consistently retrieve less than 1000 +documents). + +I sent trec_eval Version 8.0beta to Ian to run on this year's bpref +oriented runs. His report was that there was strong agreement in +Kendall Tau between the buggy and nonbuggy versions, and when you +compared each against MAP, they were within .016 of each other (closer +depending on task). It actually was the buggy version that tracked +MAP slightly more closely, perhaps indicating that MAP emphasize +topics with lots of relevant documents a bit less than bpref. + +Ian reported the runs on Terabyte efficiency track, where systems only +retrieved 20 documents per topic (running 50,000 topics but evaluating +over 50), had much larger bpref differences in score (the new bpref +average scores being 50% higher than the old), but still had a 90% +Kendall Tau between the versions; about the same that either had with +MAP. That's good enough to reassure me that most conclusions people +have reached in experiments with bpref will still be valid, though +the numbers will have to be redone. + diff --git a/tools/eval/trec_eval.9.0.4/common.h b/tools/eval/trec_eval.9.0.4/common.h new file mode 100644 index 0000000000000000000000000000000000000000..0ff80c88b28be4d8b836ba33c6ceccc1e1b2a2d4 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/common.h @@ -0,0 +1,37 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#ifndef COMMONH +#define COMMONH + +#include + +#ifndef FALSE +#define FALSE 0 +#endif +#ifndef TRUE +#define TRUE 1 +#endif + +#define UNDEF -1 + +#define MAX(A,B) ((A) > (B) ? (A) : (B)) +#define MIN(A,B) ((A) > (B) ? (B) : (A)) + +#ifndef MAXLONG +#define MAXLONG 2147483647L /* largest long int. no. */ +#endif + +/* + * Some useful macros for making malloc et al easier to use. + * Macros handle the casting and the like that's needed. + */ +#define Malloc(n,type) (type *) malloc( (unsigned) ((n)*sizeof(type))) +#define Realloc(loc,n,type) (type *) realloc( (char *)(loc), \ + (unsigned) ((n)*sizeof(type))) +#define Free(loc) (void) free( (char *)(loc) ) + +#endif /* COMMONH */ diff --git a/tools/eval/trec_eval.9.0.4/convert_zscores.c b/tools/eval/trec_eval.9.0.4/convert_zscores.c new file mode 100644 index 0000000000000000000000000000000000000000..4cc0e2cabdd0328d9c99b154e30ae04de51edd0d --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/convert_zscores.c @@ -0,0 +1,115 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +/* +Convert all values in a trec_eval object for a single query from being +a raw score into being a zscore: score expressed in units of standard +deviation from a mean. Means and standard deviations from a reference +set of runs are given by all_zscores. + +If the mean and stddev values for this measure and query are not found +in all_zscores, then the value is set to MISSING_ZSCORE_VALUE. +*/ + +static ZSCORES *find_qid (const ALL_ZSCORES *all_zscores, const char *qid); +static ZSCORE_QID *find_meas (const ZSCORES *zscores, const char *meas); + +int +te_convert_to_zscore (const ALL_ZSCORES *all_zscores, TREC_EVAL *q_eval) +{ + int return_value = 1; + long i; + ZSCORES *zscores; + ZSCORE_QID *zscores_qid; + + /* Do a binary search to find q_eval->qid */ + if (NULL == (zscores = find_qid (all_zscores, q_eval->qid))) { + /* If q_eval->qid not found, set all values in q_eval to + MISSING_ZSCORE_VALUE and return 0 */ + for (i = 0; i < q_eval->num_values; i++) + q_eval->values[i].value = MISSING_ZSCORE_VALUE; + return (0); + } + + /* For each measure in q_eval, do a binary search for that measure + within zscores */ + for (i = 0; i < q_eval->num_values; i++) { + if (NULL == (zscores_qid = find_meas (zscores, + q_eval->values[i].name))) { + q_eval->values[i].value = MISSING_ZSCORE_VALUE; + return_value = 0; + } + else { + if (zscores_qid->stddev) + q_eval->values[i].value = + (q_eval->values[i].value - zscores_qid->mean) / + zscores_qid->stddev; + else { + if (q_eval->values[i].value == zscores_qid->mean) + q_eval->values[i].value = 0; + else { + q_eval->values[i].value = MISSING_ZSCORE_VALUE; + return_value = 0; + } + } + } + } + + return (return_value); +} + +static ZSCORES * +find_qid (const ALL_ZSCORES *all_zscores, const char *qid) +{ + ZSCORES *base; + long start, end, current; + int result; + + base = all_zscores->q_zscores; + end = all_zscores->num_q_zscores; + start = 0; + while (start <= end) { + current = (start + end) / 2; + result = strcmp (qid, base[current].qid); + if (result < 0) + end = current - 1; + else if (result > 0) + start = current + 1; + else + return (&base[current]); + } + return (NULL); +} + +static ZSCORE_QID * +find_meas (const ZSCORES *zscores, const char *meas) +{ + ZSCORE_QID *base; + long start, end, current; + int result; + + base = zscores->zscores; + end = zscores->num_zscores; + start = 0; + while (start <= end) { + current = (start + end) / 2; + result = strcmp (meas, base[current].meas); + if (result < 0) + end = current - 1; + else if (result > 0) + start = current + 1; + else + return (&base[current]); + } + return (NULL); +} + diff --git a/tools/eval/trec_eval.9.0.4/form_prefs_counts.c b/tools/eval/trec_eval.9.0.4/form_prefs_counts.c new file mode 100644 index 0000000000000000000000000000000000000000..807dfd715bb9c4d2e6f5b9b6445cfcdd47b414fa --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/form_prefs_counts.c @@ -0,0 +1,1219 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +/* Copyright 2008 Chris Buckley */ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include "functions.h" + +/* Takes the top docs and judged prefs for a query, and returns a +results_prefs_info object giving the preferences from judged_prefs that +are observed in the retrieved docs. + +Three part process here: +1. Add a docid_rank (0..num_judged) to the judgment prefs that for + every docno in any judgment pref gives the relative rank at which + it occurs in the results (a number 0 to num_judged_ret-1). If the + docno does not occur in the results, it is given a (consistent) + value from num_judged_ret to num_judged-1. These docid_ranks are + used to represent the docs within preferences. + +2. Go through the judgements again and represent all preferences per judgment + group (JG). Two options for representing the preferences within a JG: + A. If there is only 1 judgment sub-group (JSG), then the preferences are + given by a set of equivalence classes (ECs) where all docs with the + same rel_level in the input are in the same equivalence class. Thus all + docs in a higher EC.rel_level are preferred to the docs in a lower + EC.rel_level. Since there is only 1 JSG, there are complete preferences + between any pair of docs not in the same EC. + B. If there are multiple JSGs, then the JG preference relation is assumed to + be partial. Preferences are given by a preference array, where array[i][j] + is 1 iff doc with docid_rank i is preferred to doc with docid_rank j + in this JG. Transitive preferences that aren't explicitly in the + judgments are added - this happens when (doc A > doc B in JSG jsg1) and + (doc B > doc C in JSG jsg2). Note that a JG represents a single information + need set of judgments, and is required to be consistent (inconsistent + preferences are represented in different JGs). Preference array is of + size num_judged * num_judged. +3. Go through the preference in each JG, and count num_fulfilled and + num_possible preferences in categories "retrieved", "implied" and + "not_retrieved" where + retrieved means both A and B were retrieved in a pref A > B + implied means exactly one of A or B was retrieved. + not_retrieved means neither was retrieved. + Different evaluation measures may want to do different things with these + categories. Counting preferences is accomplished in the two preference + representations by: + A. When comparing EC1 and EC2 with EC1.rel_level > EC2.rel_level, compare + each (docid) rank1 in EC1->ranks with rank2 in EC2->ranks. + If rank1 < num_judged_ret then it was retrieved, similarly for rank2. + If both retrieved, then if rank1 < rank2 the preference is fulfilled + otherwise it wasn't. + If rank1 retrieved and rank2 was not, then implied pref fulfilled. + If rank1 not retrieved and rank2 was, then preference was not fulfilled. + If both not retrieved, then that count is incremented. + B. Given preference array PA there are five areas of importance, divided + by lines i == NJR (where NJR is num_judged_ret), j == NJR, and i == j + NJR + \................|... + .\...............|... + ..\.......A1.....|.A3 + ...\.............|... + ....\............|... + ... + ...A2..........\.|... + ................\|... + NJR -----------------|--- + .................|... + ..........A4.....|.A5 + .................|... + + Area A1 is preferences fulfilled, both retrieved. + Area A2 is preferences not fulfilled, both retrieved. + Area A3 is preference implied fulfilled (i retrieved, j not) + Area A4 is preference implied not fulfilled (i not retrieved, j retrieved) + Area A5 is both i and j not retrieved. + Simply count the marks (PA[i][j] == 1) in each appropriate area. + + As well as storing counts within each JG, a counts array for the + entire pref_results is constructed. Counts_array CA is exactly the same + format and size as the preference arrays, except CA[i][j] is the sum + of the conceptual PA[i][j] over all JGs. This allows counts of + confirmations (CA[i][j] > 1) and conflicts (CA[i][j] and CA[j][i] both + non-zero). + + Not mentioned in steps 2 and 3 above since it adds even more confusion, + is that the relevant (rel_level > 0.0) and nonrelevant docs are also + tracked. Different measures may deal with those preferences differently. + + + This procedure may be called repeatedly for a given topic - returned + values are cached until the qid changes. + + results and prefs_info formats must be "trec_results" and "prefs" + respectively. + + UNDEF returned if error, 0 if used cache values, 1 if new values. +*/ + +typedef struct { + char *docno; + float sim; + long rank; +} DOCNO_RESULTS; + +typedef struct { + char *jg; + char *jsg; + float rel_level; + char *docno; + long rank; +} PREFS_AND_RANKS; + + +static int form_jg_ec (const PREFS_AND_RANKS *prefs, const long num_prefs, + long *rank_pool_ptr, JG *jg, + RESULTS_PREFS *results_prefs); +static int add_ec_pref_to_jg (JG *jg, RESULTS_PREFS *results_prefs); + +static int form_jg_pa (const PREFS_AND_RANKS *prefs, const long num_prefs, + JG *jg, RESULTS_PREFS *results_prefs); +static int add_transitives (PREFS_ARRAY *pa); +static int add_pa_pref_to_jg (JG *jg, RESULTS_PREFS *results_prefs); +static int mult_and_check_change (const PREFS_ARRAY *a1, const PREFS_ARRAY *a2, + PREFS_ARRAY *res); + +static int form_prefs_and_ranks (const EPI*epi, + const TEXT_RESULTS_INFO *text_results_info, + const TEXT_PREFS_INFO *trec_prefs, + PREFS_AND_RANKS *prefs_and_ranks, + long *num_judged, long *num_judged_ret); + +static void init_prefs_array (PREFS_ARRAY *pa); +static void init_counts_array (COUNTS_ARRAY *ca); +static int comp_prefs_and_ranks_jg_rel_level (); +static int comp_prefs_and_ranks_docno(); +static int comp_sim_docno (), comp_docno (), comp_results_inc_rank (); +static void debug_print_ec (EC *ec),debug_print_prefs_array (PREFS_ARRAY *pa), + debug_print_counts_array (COUNTS_ARRAY *ca), debug_print_jg (JG *jg), + debug_print_results_prefs (RESULTS_PREFS *rp); +static void debug_print_docno_results (DOCNO_RESULTS *dr, long num_results, + char *location); +static void debug_print_prefs_and_ranks (PREFS_AND_RANKS *par, long num_prefs, + char *location); + + +/* Intermediate Temp storage. Not malloc'd and freed every query just + for memory management efficiency (avoids fragmentations and + thus effects on caching) */ + /* Temp Structure for mapping results docno to results rank */ + +/* Current cached query */ +static char *current_query = "no query"; +static long max_current_query = 0; + +/* Space reserved for cached returned values */ +static long num_judged_ret; +static long num_judged; +static long num_jgs; +static JG *jgs; +static long max_num_jgs = 0; +static long *rank_pool; +static long max_rank_pool = 0; +static EC *ec_pool; +static long max_ec_pool = 0; +static unsigned short *ca_pool; +static long max_ca_pool = 0; +static unsigned short **ca_ptr_pool; +static long max_ca_ptr_pool = 0; +static unsigned char *pa_pool; +static long max_pa_pool = 0; +static unsigned char **pa_ptr_pool; +static long max_pa_ptr_pool = 0; +static float *rel_pool; +static long max_rel_pool = 0; +/* Space reserved for intermediate values */ +static PREFS_AND_RANKS *prefs_and_ranks; +static long max_prefs_and_ranks = 0; +static DOCNO_RESULTS *docno_results; +static long max_docno_results = 0; +static unsigned char *temp_pa_pool; +static long max_temp_pa_pool; +static unsigned char **temp_pa_ptr_pool; +static long max_temp_pa_ptr_pool; + +static long saved_num_judged = 0; + + + +int +form_prefs_counts (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, RESULTS_PREFS *results_prefs) +{ + long i; + char *jgid, *jsgid; + long jg_ind; + long num_jgs_with_subgroups; + float rel_level; + + EC * ec_pool_ptr; + float *rel_pool_ptr; + long *rank_pool_ptr; + unsigned char *pa_pool_ptr; + unsigned char **pa_ptr_pool_ptr; + + long start_jg; + long num_rel_level; + long num_sub_group; + + TEXT_RESULTS_INFO *text_results_info; + TEXT_PREFS_INFO *trec_prefs; + + if (epi->debug_level >= 3) + printf ("Debug: Form_prefs starting query '%s'\n", results->qid); + + if (0 == strcmp (current_query, results->qid)) { + /* Have done this query already. Return cached values */ + results_prefs->num_jgs = num_jgs; + results_prefs->jgs = jgs; + results_prefs->num_judged = num_judged; + results_prefs->num_judged_ret = num_judged_ret; + results_prefs->pref_counts = (COUNTS_ARRAY) {ca_pool, + ca_ptr_pool, + num_judged}; + if (epi->debug_level >= 3) + printf ("Returned Cached Form_prefs\n"); + return (0); + } + + /* Check that format type of result info and rel info are correct */ + if ((strcmp ("prefs", rel_info->rel_format) && + strcmp ("qrels_prefs", rel_info->rel_format)) || + strcmp ("trec_results", results->ret_format)) { + fprintf (stderr, "trec_eval.form_prefs_info: prefs_info format not (prefs or qrels_prefs) or results format not trec_results\n"); + return (UNDEF); + } + + /* Make sure enough space for query and save copy */ + i = strlen(results->qid)+1; + if (NULL == (current_query = + te_chk_and_malloc (current_query, &max_current_query, + i, sizeof (char)))) + return (UNDEF); + (void) strncpy (current_query, results->qid, i); + + text_results_info = (TEXT_RESULTS_INFO *) results->q_results; + trec_prefs = (TEXT_PREFS_INFO *) rel_info->q_rel_info; + + + /* Reserve space for returned and intermediate values, if needed */ + if (NULL == (prefs_and_ranks = + te_chk_and_malloc (prefs_and_ranks, &max_prefs_and_ranks, + trec_prefs->num_text_prefs, + sizeof (PREFS_AND_RANKS))) || + NULL == (ec_pool = + te_chk_and_malloc (ec_pool, &max_ec_pool, + trec_prefs->num_text_prefs, sizeof (EC))) || + NULL == (rank_pool = + te_chk_and_malloc (rank_pool, &max_rank_pool, + trec_prefs->num_text_prefs, sizeof (long)))) + return (UNDEF); + + /* get prefs_and_ranks from results and prefs. Will be sorted by + jg, jsg, rel_level, rank. Set num_judged, num_judged_ret */ + if (UNDEF == form_prefs_and_ranks (epi, text_results_info, trec_prefs, + prefs_and_ranks, &num_judged, + &num_judged_ret)) + return (UNDEF); + + /* Go through prefs_and ranks, count and reserve space for judgment groups. + Also count number of JGs that have subgroups and will need preference + arrays. */ + jgid = ""; jsgid = ""; + num_jgs = 0; num_jgs_with_subgroups = 0; + for (i = 0; i < trec_prefs->num_text_prefs; i++) { + if (strcmp (jgid, prefs_and_ranks[i].jg)) { + /* New JG */ + jgid = prefs_and_ranks[i].jg; + jsgid = prefs_and_ranks[i].jsg; + num_jgs++; + } + else if (strcmp (jsgid, prefs_and_ranks[i].jsg)) { + jsgid = prefs_and_ranks[i].jsg; + num_jgs_with_subgroups++; + } + } + + /* Reserve pool space for JGs, and final pref_counts */ + if (NULL == (jgs = + te_chk_and_malloc (jgs, &max_num_jgs, num_jgs, sizeof (JG))) || + NULL == (ca_pool = + te_chk_and_malloc (ca_pool, &max_ca_pool, + num_judged * num_judged, + sizeof (unsigned short))) || + NULL == (ca_ptr_pool = + te_chk_and_malloc (ca_ptr_pool, &max_ca_ptr_pool, num_judged, + sizeof (unsigned short *)))) + return (UNDEF); + + if (num_jgs_with_subgroups) { + /* Reserve pool space for preference arrays, and rel_level arrays */ + if (NULL == (rel_pool = + te_chk_and_malloc (rel_pool, &max_rel_pool, + num_judged * num_jgs_with_subgroups, + sizeof (float))) || + NULL == (pa_pool = + te_chk_and_malloc (pa_pool, &max_pa_pool, + num_judged * num_judged * num_jgs_with_subgroups, + sizeof (unsigned char))) || + NULL == (pa_ptr_pool = + te_chk_and_malloc (pa_ptr_pool, &max_pa_ptr_pool, + num_judged * num_jgs_with_subgroups, + sizeof (unsigned char *)))) + return (UNDEF); + } + + ec_pool_ptr = ec_pool; + rel_pool_ptr = rel_pool; + rank_pool_ptr = rank_pool; + pa_pool_ptr = pa_pool; + pa_ptr_pool_ptr = pa_ptr_pool; + + /* setup returned results_prefs so its summary values can be filled in */ + results_prefs->num_jgs = num_jgs; + results_prefs->jgs = jgs; + results_prefs->num_judged = num_judged; + results_prefs->num_judged_ret = num_judged_ret; + results_prefs->pref_counts = (COUNTS_ARRAY) {ca_pool, ca_ptr_pool, + num_judged}; + init_counts_array (&results_prefs->pref_counts); + + /* Go through prefs_and_ranks, determine and construct appropriate JG + preference format. Preferences are counted and add to summary values + as each JG is handled. */ + jg_ind = 0; + start_jg = 0; + num_rel_level = 0; + num_sub_group = 0; + rel_level = -3.0; /* Illegal rel_level */ + jgid = prefs_and_ranks[0].jg; + jsgid = ""; + for (i = 0; i < trec_prefs->num_text_prefs; i++) { + if (strcmp (jgid, prefs_and_ranks[i].jg)) { + /* New judgment group. Form previous JG and initialize coounts + for new JG */ + if (num_sub_group > 1) { + /* Preference array JG */ + jgs[jg_ind].num_ecs = 0; /* Indicator thet prefs_array used */ + jgs[jg_ind].prefs_array = (PREFS_ARRAY) {pa_pool_ptr, + pa_ptr_pool_ptr, + num_judged}; + pa_pool_ptr += num_judged * num_judged; + pa_ptr_pool_ptr += num_judged; + jgs[jg_ind].rel_array = rel_pool_ptr; + rel_pool_ptr += num_judged; + if (UNDEF == form_jg_pa (&prefs_and_ranks[start_jg], + i - start_jg, + &jgs[jg_ind], + results_prefs)) + return (UNDEF); + } + else { + /* EC JG */ + jgs[jg_ind].ecs = ec_pool_ptr; + ec_pool_ptr += num_rel_level; + jgs[jg_ind].num_ecs = num_rel_level; + if (UNDEF == form_jg_ec (&prefs_and_ranks[start_jg], + i - start_jg, + rank_pool_ptr, + &jgs[jg_ind], + results_prefs)) + return (UNDEF); + rank_pool_ptr += i - start_jg; + } + jgid = prefs_and_ranks[i].jg; + jg_ind++; + jsgid = ""; + start_jg = i; + num_sub_group = 0; + num_rel_level = 0; + rel_level = -3.0; /* Illegal rel_level */ + } + if (strcmp (jsgid, prefs_and_ranks[i].jsg)) { + num_sub_group++; + jsgid = prefs_and_ranks[i].jsg; + } + if (rel_level != prefs_and_ranks[i].rel_level) { + num_rel_level++; + rel_level = prefs_and_ranks[i].rel_level; + } + } + /* Form last JG */ + if (num_sub_group > 1) { + /* Preference array JG */ + jgs[jg_ind].num_ecs = 0; /* Indicator thet prefs_array used */ + jgs[jg_ind].prefs_array = (PREFS_ARRAY) {pa_pool_ptr, + pa_ptr_pool_ptr, + num_judged}; + pa_pool_ptr += num_judged * num_judged; + pa_ptr_pool_ptr += num_judged; + jgs[jg_ind].rel_array = rel_pool_ptr; + rel_pool_ptr += num_judged; + if (UNDEF == form_jg_pa (&prefs_and_ranks[start_jg], + i - start_jg, + &jgs[jg_ind], + results_prefs)) + return (UNDEF); + } + else { + /* EC JG */ + jgs[jg_ind].ecs = ec_pool_ptr; + ec_pool_ptr += num_rel_level; + jgs[jg_ind].num_ecs = num_rel_level; + if (UNDEF == form_jg_ec (&prefs_and_ranks[start_jg], + i - start_jg, + rank_pool_ptr, + &jgs[jg_ind], + results_prefs)) + return (UNDEF); + } + if (epi->debug_level >= 3) + debug_print_results_prefs (results_prefs); + + return (1); +} + +static int +form_jg_ec (const PREFS_AND_RANKS *prefs, const long num_prefs, + long *rank_pool_ptr, JG *jg, RESULTS_PREFS *results_prefs) +{ + EC *ec_ptr =jg->ecs; + long *rank_ptr = rank_pool_ptr; + long i; + float rel_level; + + /* Fill in prefs array with all known info from prefs */ + /* prefs is sorted by jsg, then rel_level, then rank */ + rel_level = prefs[0].rel_level; + *ec_ptr = (EC) {rel_level, 0, rank_ptr}; + for (i = 0; i < num_prefs; i++) { + if (prefs[i].rel_level != rel_level) { + /* new equivalence class */ + rel_level = prefs[i].rel_level; + rank_ptr += ec_ptr->num_in_ec; + ec_ptr++; + *ec_ptr = (EC) {prefs[i].rel_level, 0, rank_ptr}; + } + ec_ptr->docid_ranks[ec_ptr->num_in_ec++] = prefs[i].rank; + } + + /* Add counts of preference fulfilled and possible to jg and + summary counts */ + if (UNDEF == add_ec_pref_to_jg (jg, results_prefs)) + return (UNDEF); + + return (1); +} + +/* Add counts of preference fulfilled and possible to jg for EC pref info */ +static int +add_ec_pref_to_jg (JG *jg, RESULTS_PREFS *results_prefs) +{ + long num_judged_ret = results_prefs->num_judged_ret; + unsigned short **pc = results_prefs->pref_counts.array; + long *ptr1, *ptr2; + long ec1, ec2; + + jg->num_prefs_fulfilled_ret = 0; + jg->num_prefs_possible_ret = 0; + jg->num_prefs_fulfilled_imp = 0; + jg->num_prefs_possible_imp = 0; + jg->num_prefs_possible_notoccur = 0; + jg->num_nonrel = 0; + jg->num_nonrel_ret = 0; + jg->num_rel = 0; + jg->num_rel_ret = 0; + + /* Go through all ecs counting preferences, and setting up + prefs_count */ + for (ec1 = 0; ec1 < jg->num_ecs; ec1++) { + /* Count num rel and ret */ + for (ptr1 = jg->ecs[ec1].docid_ranks; + ptr1 < &jg->ecs[ec1].docid_ranks[jg->ecs[ec1].num_in_ec]; + ptr1++) { + if (*ptr1 >= num_judged_ret) + break; + } + if (jg->ecs[ec1].rel_level > 0.0) { + jg->num_rel_ret += ptr1 - jg->ecs[ec1].docid_ranks; + jg->num_rel += jg->ecs[ec1].num_in_ec; + } + else { + jg->num_nonrel_ret += ptr1 - jg->ecs[ec1].docid_ranks; + jg->num_nonrel += jg->ecs[ec1].num_in_ec; + } + + /* Count prefs */ + for (ec2 = ec1 + 1; ec2 < jg->num_ecs; ec2++) { + for (ptr1 = jg->ecs[ec1].docid_ranks; + ptr1 < &jg->ecs[ec1].docid_ranks[jg->ecs[ec1].num_in_ec]; + ptr1++) { + for (ptr2 = jg->ecs[ec2].docid_ranks; + ptr2 < &jg->ecs[ec2].docid_ranks[jg->ecs[ec2].num_in_ec]; + ptr2++) { + /* Add pref to summary info */ + pc[*ptr1][*ptr2]++; + /* check for inconsistency: same doc in multiple ec */ + if (*ptr1 == *ptr2) { + fprintf (stderr, + "trec_eval.form_prefs_counts: Internal docid %ld occurs with different rel_level in same jsg\n", *ptr1); + return (UNDEF); + /* need to check this in pa also? */ + } + /* Add count to appropriate jg_num* */ + if (*ptr1 < *ptr2) { + /* judgment fulfilled */ + if (*ptr2 < num_judged_ret) + jg->num_prefs_fulfilled_ret++; + else if (*ptr1 < num_judged_ret) + jg->num_prefs_fulfilled_imp++; + else + jg->num_prefs_possible_notoccur++; + } + else { + if (*ptr1 < num_judged_ret) + jg->num_prefs_possible_ret++; + else if (*ptr2 < num_judged_ret) + jg->num_prefs_possible_imp++; + else + jg->num_prefs_possible_notoccur++; + } + } + } + } + } + + jg->num_prefs_possible_ret += jg->num_prefs_fulfilled_ret; + jg->num_prefs_possible_imp += jg->num_prefs_fulfilled_imp; + return (1); +} + +static int +form_jg_pa (const PREFS_AND_RANKS *prefs, const long num_prefs, + JG *jg, RESULTS_PREFS *results_prefs) +{ + long i,j; + + PREFS_ARRAY *pa = &jg->prefs_array; + + /* Initialize and zero prefs_array */ + init_prefs_array(pa); + + /* Initialize and set rel_level to -1. Will check for inconsistencies + (rel_level for some docid 0.0 and some > 0.0) as prefs handled */ + for (i = 0; i < pa->num_judged; i++) { + jg->rel_array[i] = -1.0; + } + + /* Fill in prefs array with all known info from prefs */ + /* prefs is sorted by jsg, then rel_level, then rank */ + for (i = 0; i < num_prefs; i++) { + /* check for consistency and add rel_level info */ + if ((jg->rel_array[prefs[i].rank] > 0.0 && + prefs[i].rel_level == 0.0) || + (jg->rel_array[prefs[i].rank] == 0.0 && + prefs[i].rel_level > 0.0)) { + fprintf (stderr, + "trec_eval.form_prefs_counts: doc '%s' has both 0 and non-0 rel_level assigned\n", + prefs[i].docno); + return (UNDEF); + } + jg->rel_array[prefs[i].rank] = prefs[i].rel_level; + + /* Add preference for i to all other entries in this JSG with lower + rel_levels */ + j = i+1; + /* Just skip over all docs at same rel_level */ + while (j < num_prefs && + 0 == strcmp (prefs[i].jsg, prefs[j].jsg) && + prefs[i].rel_level == prefs[j].rel_level) + j++; + /* Rest of JSG has lower rel_level */ + while (j < num_prefs && + 0 == strcmp (prefs[i].jsg, prefs[j].jsg)) { + pa->array[prefs[i].rank][prefs[j].rank] = 1; + j++; + } + } + + /* Add transitive preferences to pa */ + if (UNDEF == add_transitives (pa)) + return (UNDEF); + + /* Add counts of preference fulfilled and possible to jg and + summary counts */ + if (UNDEF == add_pa_pref_to_jg (jg, results_prefs)) + return (UNDEF); + + return (1); +} + +static int +add_transitives(PREFS_ARRAY *pa) +{ + PREFS_ARRAY m1; + PREFS_ARRAY m2; + + long i, j; + PREFS_ARRAY *array_in, *array_out, *temp; + + /* Need two temporary arrays of same size as pa. Reserve space and + zero out arrays */ + if (NULL == (temp_pa_pool = + te_chk_and_malloc (temp_pa_pool, &max_temp_pa_pool, + 2 * pa->num_judged * pa->num_judged, + sizeof (unsigned char))) || + NULL == (temp_pa_ptr_pool = + te_chk_and_malloc (temp_pa_ptr_pool, &max_temp_pa_ptr_pool, + 2 * pa->num_judged, + sizeof (unsigned char *)))) + return (UNDEF); + + m1 = (PREFS_ARRAY) {temp_pa_pool, temp_pa_ptr_pool, pa->num_judged}; + m2 = (PREFS_ARRAY) {temp_pa_pool + pa->num_judged * pa->num_judged, + temp_pa_ptr_pool + pa->num_judged, + pa->num_judged}; + if (pa->num_judged != saved_num_judged) { + /* if new size array, must reset row pointers */ + saved_num_judged = pa->num_judged; + for (i = 0; i < pa->num_judged; i++) { + m1.array[i] = m1.full_array + i * pa->num_judged; + m2.array[i] = m2.full_array + i * pa->num_judged; + } + } + + /* Add diagonal all ones in pa */ + for (i = 0; i < pa->num_judged; i++) { + pa->array[i][i] = 1; + } + + /* Multiply prefs_array by itself until there are no changes */ + array_in = pa; + array_out = &m1; + if (mult_and_check_change (pa, array_in, array_out)) { + array_in = array_out; + array_out = &m2; + while (mult_and_check_change (pa, array_in, array_out)) { + temp = array_in; + array_in = array_out; + array_out = temp; + } + /* There were changes, now set pa values to those of array_out */ + for (i = 0; i < pa->num_judged; i++) { + for (j = 0; j num_judged; j++) { + pa->array[i][j] = array_out->array[i][j]; + } + } + } + + /* Reset all diagonals to 0 in pa */ + for (i = 0; i < pa->num_judged; i++) { + pa->array[i][i] = 0; + } + + /* Check for inconsistencies */ + for (i = 0; i < pa->num_judged; i++) { + for (j = 0; j num_judged; j++) { + if (i != j && pa->array[i][j] && pa->array[j][i]) { + fprintf (stderr, "trec_eval.form_prefs_counts: Pref inconsistency found\n internal rank %ld and internal rank %ld are conflicted\n", i, j); + abort(); + return (-1); + } + } + } + + return (1); +} + + +/* Add counts of preference fulfilled and possible to jg */ +static int +add_pa_pref_to_jg (JG *jg, RESULTS_PREFS *results_prefs) +{ + unsigned char **a = jg->prefs_array.array; + unsigned short **c = results_prefs->pref_counts.array; + long num_judged = results_prefs->num_judged; + long num_judged_ret = results_prefs->num_judged_ret; + long i,j; + + jg->num_prefs_fulfilled_ret = 0; + jg->num_prefs_possible_ret = 0; + jg->num_prefs_fulfilled_imp = 0; + jg->num_prefs_possible_imp = 0; + jg->num_prefs_possible_notoccur = 0; + jg->num_nonrel = 0; + jg->num_nonrel_ret = 0; + jg->num_rel = 0; + jg->num_rel_ret = 0; + + for (i = 0; i < num_judged_ret; i++) { + if (jg->rel_array[i] > 0.0) + jg->num_rel_ret++; + else if (jg->rel_array[i] == 0.0) + jg->num_nonrel_ret++; + } + jg->num_rel = jg->num_rel_ret; + jg->num_nonrel = jg->num_nonrel_ret; + for (i = num_judged_ret; i < num_judged; i++) { + if (jg->rel_array[i] > 0.0) + jg->num_rel++; + else if (jg->rel_array[i] == 0.0) + jg->num_nonrel++; + } + + for (i = 0; i < num_judged_ret; i++) { + for (j = 0; j < i; j++) { + if (a[i][j]) { + /* Pref not fulfilled. Area A2 (see comment at top) */ + c[i][j]++; + jg->num_prefs_possible_ret++; + } + } + for (j = i+1; j < num_judged_ret; j++) { + if (a[i][j]) { + /* Pref fulfilled. Area A1 (see comment at top) */ + c[i][j]++; + jg->num_prefs_fulfilled_ret++; + } + } + for (j = num_judged_ret; j < num_judged; j++) { + if (a[i][j]) { + /* Pref fulfilled implied. Area A3 (see comment at top) */ + c[i][j]++; + jg->num_prefs_fulfilled_imp++; + } + } + } + for (i = num_judged_ret; i < num_judged; i++) { + for (j = 0; j < num_judged_ret; j++) { + if (a[i][j]) { + /* Pref not fulfilled implied. Area A4 (see comment at top) */ + c[i][j]++; + jg->num_prefs_possible_imp++; + } + } + for (j = num_judged_ret; j < num_judged; j++) { + if (a[i][j]) { + /* Pref not occur at all. Area A5 (see comment at top) */ + c[i][j]++; + jg->num_prefs_possible_notoccur++; + } + } + } + + jg->num_prefs_possible_ret += jg->num_prefs_fulfilled_ret; + jg->num_prefs_possible_imp += jg->num_prefs_fulfilled_imp; + return (1); +} + +/* Multiply array a1 * array a2 and put result in array res. + Return (1) if array res is changed from array a2 after multiplication + else return 0 */ +static int +mult_and_check_change (const PREFS_ARRAY *a1, const PREFS_ARRAY *a2, PREFS_ARRAY *res) +{ + int change = 0; + long i, j, k; + for (i = 0; i < a1->num_judged; i++) { + for (j = 0; j < a1->num_judged; j++) { + res->array[i][j] = 0; + for (k = 0; k < a1->num_judged; k++) { + if (a1->array[i][k] && a2->array[k][j]) { + res->array[i][j] = 1; + break; + } + } + + if (a2->array[i][j] != res->array[i][j]) change = 1; + } + } + return (change); +} + +static int form_prefs_and_ranks (const EPI*epi, + const TEXT_RESULTS_INFO *text_results_info, + const TEXT_PREFS_INFO *trec_prefs, + PREFS_AND_RANKS *prefs_and_ranks, + long *num_judged, long *num_judged_ret) +{ + long lnum_judged_ret; /* local num_judged_ret */ + long next_unretrieved_rank; + long i; + long num_results; /* Current number of results (changes as docs + thrown away from docno_results) */ + long num_prefs = trec_prefs->num_text_prefs; + PREFS_AND_RANKS *ranks_ptr, *end_ranks, *start_ptr; + + /* Copy docno results and add ranks */ + num_results = text_results_info->num_text_results; + if (NULL == (docno_results = + te_chk_and_malloc (docno_results, &max_docno_results, + num_results, sizeof (DOCNO_RESULTS)))) + return (UNDEF); + + for (i = 0; i < num_results; i++) { + docno_results[i].docno = text_results_info->text_results[i].docno; + docno_results[i].sim = text_results_info->text_results[i].sim; + } + /* Sort results by sim, breaking ties lexicographically using docno */ + qsort ((char *) docno_results, + (int) num_results, + sizeof (DOCNO_RESULTS), + comp_sim_docno); + + if (epi->debug_level >= 5) + debug_print_docno_results (docno_results, num_results, + "After input, before ranks"); + + /* Only look at epi->max_num_docs_per_topic (not normally an issue) */ + if (num_results > epi->max_num_docs_per_topic) + num_results = epi->max_num_docs_per_topic; + /* Add ranks to docno_results (starting at 1) */ + for (i = 0; i < num_results; i++) { + docno_results[i].rank = i+1; + } + /* Sort docno_results by increasing docno */ + qsort ((char *) docno_results, + (int) num_results, + sizeof (DOCNO_RESULTS), + comp_docno); + /* Error checking for duplicates */ + for (i = 1; i < num_results; i++) { + if (0 == strcmp (docno_results[i].docno, + docno_results[i-1].docno)) { + fprintf (stderr, "trec_eval.form_prefs_counts: duplicate docs %s", + docno_results[i].docno); + return (UNDEF); + } + } + + if (epi->debug_level >= 5) + debug_print_docno_results (docno_results, num_results, + "After -M, ranks"); + + /* Copy trec_prefs - sort by docno. Space already reserved */ + for (i = 0; i < num_prefs; i++) { + prefs_and_ranks[i].jg = trec_prefs->text_prefs[i].jg; + prefs_and_ranks[i].jsg = trec_prefs->text_prefs[i].jsg; + prefs_and_ranks[i].rel_level = trec_prefs->text_prefs[i].rel_level; + prefs_and_ranks[i].docno = trec_prefs->text_prefs[i].docno; + } + qsort ((char *) prefs_and_ranks, + (int) num_prefs, + sizeof (PREFS_AND_RANKS), + comp_prefs_and_ranks_docno); + + if (epi->debug_level >= 5) + debug_print_prefs_and_ranks (prefs_and_ranks, num_prefs, + "Input, before ranks"); + + /* Go through docno_results and prefs_and_ranks in parallel (both sorted + by docno) and assign ranks of -1 to those docs in docno_results that + are not in prefs_and_ranks */ + ranks_ptr = prefs_and_ranks; + end_ranks = &prefs_and_ranks[num_prefs]; + for (i = 0; i < num_results && ranks_ptr < end_ranks; i++) { + while (ranks_ptr < end_ranks && + strcmp (ranks_ptr->docno, docno_results[i].docno) < 0) + ranks_ptr++; + if (ranks_ptr < end_ranks && + strcmp (ranks_ptr->docno, docno_results[i].docno) == 0) { + do { + ranks_ptr++; + } while (ranks_ptr < end_ranks && + strcmp (ranks_ptr->docno, docno_results[i].docno) == 0); + } + else + /* dpcno_results[i] not judged */ + docno_results[i].rank = -1; + } + /* sort docno_results[0..i] by increasing rank */ + num_results = i; + qsort ((char *) docno_results, + (int) num_results, + sizeof (DOCNO_RESULTS), + comp_results_inc_rank); + + if (epi->debug_level >= 5) + debug_print_docno_results (docno_results, num_results, + "After marking not judged"); + + /* Assign new docid ranks starting at 0 for only judged docs */ + lnum_judged_ret = 0; + for (i = 0; i < num_results; i ++) { + if (docno_results[i].rank > -1) { + docno_results[lnum_judged_ret].docno = docno_results[i].docno; + docno_results[lnum_judged_ret].rank = lnum_judged_ret; + lnum_judged_ret++; + } + } + num_results = lnum_judged_ret; + /* Sort docno_results by increasing docno */ + qsort ((char *) docno_results, + (int) num_results, + sizeof (DOCNO_RESULTS), + comp_docno); + + if (epi->debug_level >= 5) + debug_print_docno_results (docno_results, num_results, + "After assigning docid_ranks"); + /* Go through reduced docno_results and prefs_and_ranks in parallel and + assign ranks in prefs_and_ranks from docno_results. Note all docnos + in docno_results now guaranteed to be in prefs_and_ranks */ + ranks_ptr = prefs_and_ranks; + end_ranks = &prefs_and_ranks[num_prefs]; + next_unretrieved_rank = num_results; + for (i = 0; i < num_results; i++) { + while (strcmp (ranks_ptr->docno, docno_results[i].docno) < 0) { + ranks_ptr->rank = next_unretrieved_rank++; + start_ptr = ranks_ptr++; + while (strcmp (ranks_ptr->docno, start_ptr->docno) == 0) { + ranks_ptr->rank = start_ptr->rank; + ranks_ptr++; + } + } + ranks_ptr->rank = docno_results[i].rank; + start_ptr = ranks_ptr++; + while (ranks_ptr < end_ranks && + strcmp (ranks_ptr->docno, start_ptr->docno) == 0) { + ranks_ptr->rank = start_ptr->rank; + ranks_ptr++; + } + } + while (ranks_ptr < end_ranks) { + ranks_ptr->rank = next_unretrieved_rank++; + start_ptr = ranks_ptr++; + while (ranks_ptr < end_ranks && + strcmp (ranks_ptr->docno, start_ptr->docno) == 0) { + ranks_ptr->rank = start_ptr->rank; + ranks_ptr++; + } + } + + /* Now sort prefs_and_ranks by jg, jsg, rel_level, docid_rank */ + qsort ((void *) prefs_and_ranks, + num_prefs, + sizeof (PREFS_AND_RANKS), + comp_prefs_and_ranks_jg_rel_level); + + if (epi->debug_level >= 4) { + printf ("Form_prefs: num_judged %ld, num_judged_ret %ld\n", + next_unretrieved_rank, num_results); + debug_print_prefs_and_ranks (prefs_and_ranks, num_prefs, + "Final prefs"); + } + + *num_judged = next_unretrieved_rank; + *num_judged_ret = num_results; + return (1); +} + +static void +init_prefs_array (PREFS_ARRAY *pa) +{ + unsigned char *row_ptr; + long i; + (void) memset ((void *) pa->full_array, 0, + pa->num_judged * pa->num_judged * + sizeof (unsigned char)); + row_ptr = pa->full_array; + for (i = 0; i < pa->num_judged; i++) { + pa->array[i] = row_ptr; + row_ptr += pa->num_judged; + } +} + +static void +init_counts_array (COUNTS_ARRAY *ca) +{ + unsigned short *row_ptr; + long i; + (void) memset ((void *) ca->full_array, 0, + ca->num_judged * ca->num_judged * + sizeof (unsigned short)); + row_ptr = ca->full_array; + for (i = 0; i < ca->num_judged; i++) { + ca->array[i] = row_ptr; + row_ptr += ca->num_judged; + } +} + + +static int +comp_prefs_and_ranks_docno (PREFS_AND_RANKS *ptr1, PREFS_AND_RANKS *ptr2) +{ + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +comp_prefs_and_ranks_jg_rel_level (PREFS_AND_RANKS *ptr1, PREFS_AND_RANKS *ptr2) +{ + int jg_comp = strcmp (ptr1->jg, ptr2->jg); + if (jg_comp != 0) return (jg_comp); + jg_comp = strcmp (ptr1->jsg, ptr2->jsg); + if (jg_comp != 0) return (jg_comp); + if (ptr1->rel_level > ptr2->rel_level) return (-1); + if (ptr1->rel_level < ptr2->rel_level) return (1); + return (ptr1->rank - ptr2->rank); +} + +static int +comp_sim_docno (ptr1, ptr2) +DOCNO_RESULTS *ptr1; +DOCNO_RESULTS *ptr2; +{ + if (ptr1->sim > ptr2->sim) + return (-1); + if (ptr1->sim < ptr2->sim) + return (1); + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +comp_docno (DOCNO_RESULTS *ptr1, DOCNO_RESULTS *ptr2) +{ + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +comp_results_inc_rank (DOCNO_RESULTS *ptr1, DOCNO_RESULTS *ptr2) +{ + return (ptr1->rank - ptr2->rank); +} + + +static void +debug_print_prefs_and_ranks (PREFS_AND_RANKS *par, long num_prefs, + char *location) +{ + long i; + printf ("Prefs_and_ranks Dump. num_pref_lines %ld, %s\n", + num_prefs, location); + for (i = 0; i < num_prefs; i++) { + printf (" %s\t%s\t%4.2f\t%s\t%3ld\n", + par[i].jg, par[i].jsg, par[i].rel_level, par[i].docno, + par[i].rank); + } + fflush (stdout); +} + +static void +debug_print_docno_results (DOCNO_RESULTS *dr, long num_results, + char *location) +{ + long i; + printf ("Docno_results Dump. num_results %ld, %s\n", + num_results, location); + for (i = 0; i < num_results; i++) { + printf (" %s\t%4.2f\t%3ld\n", + dr[i].docno, dr[i].sim, dr[i].rank); + } + fflush (stdout); +} + +static void +debug_print_ec (EC *ec) { + long i; + printf (" EC Dump. Rel_level %4.2f. Num_docid_ranks %ld", + ec->rel_level, ec->num_in_ec); + for (i = 0; i < ec->num_in_ec; i++) { + if (0 == (i % 10)) + printf ("\n "); + printf ("%3ld ", ec->docid_ranks[i]); + } + putchar ('\n'); + fflush (stdout); +} + +static void +debug_print_prefs_array (PREFS_ARRAY *pa) { + long i,j; + printf (" Prefs_Array Dump. Num_judged %ld", pa->num_judged); + for (i = 0; i < pa->num_judged; i++) { + printf ("\n Row %3ld\n ", i); + for (j = 0; j < pa->num_judged; j++) { + if (j && 0 == (j % 20)) + printf (" (%ld)\n ", j); + printf ("%2hhd", pa->array[i][j]); + } + } + putchar ('\n'); + fflush (stdout); +} + +static void +debug_print_counts_array (COUNTS_ARRAY *ca) { + long i,j; + printf (" Counts_Array Dump. Num_judged %ld", ca->num_judged); + for (i = 0; i < ca->num_judged; i++) { + printf ("\n Row %3ld\n ", i); + for (j = 0; j < ca->num_judged; j++) { + if (j && 0 == (j % 20)) + printf (" (%ld)\n ", j); + printf ("%2hd ", ca->array[i][j]); + } + } + putchar ('\n'); + fflush (stdout); +} + + +static void +debug_print_jg (JG *jg) { + long i; + printf (" JG Dump. Type %s\n", jg->num_ecs > 0 ? "EC":"Prefs_array"); + printf (" num_prefs_fulfilled_ret %ld\n", jg->num_prefs_fulfilled_ret); + printf (" num_prefs_possible_ret %ld\n", jg->num_prefs_possible_ret); + printf (" num_prefs_fulfilled_imp %ld\n", jg->num_prefs_fulfilled_imp); + printf (" num_prefs_possible_imp %ld\n", jg->num_prefs_possible_imp); + printf (" num_prefs_possible_notoccur %ld\n", jg->num_prefs_possible_notoccur); + printf (" num_nonrel %ld\n", jg->num_nonrel); + printf (" num_nonrel_ret %ld\n", jg->num_nonrel_ret); + printf (" num_rel %ld\n", jg->num_rel); + printf (" num_rel_ret %ld\n", jg->num_rel_ret); + if (0 == jg->num_ecs && jg->rel_array) { + debug_print_prefs_array (&jg->prefs_array); + printf (" Rel_array Dump. %ld values", + jg->prefs_array.num_judged); + for (i = 0; i < jg->prefs_array.num_judged; i++) { + if (0 == (i % 10)) + printf ("\n "); + printf ("%4.2f ", jg->rel_array[i]); + } + putchar ('\n'); + } + else if (0 == jg->num_ecs) + printf (" JG is not initialized (0 ECs and no rel_array\n"); + else { + printf (" Dump of %ld ECs within JG\n", jg->num_ecs); + for (i = 0; i < jg->num_ecs; i++) + debug_print_ec (&jg->ecs[i]); + } + fflush (stdout); +} + +static void +debug_print_results_prefs (RESULTS_PREFS *rp) { + long i; + printf ("Results_prefs Dump. %ld Judgment Groups\n", rp->num_jgs); + printf (" num_judged_ret %ld, num_judged %ld\n", + rp->num_judged_ret, rp->num_judged); + for (i = 0; i < rp->num_jgs; i++) + debug_print_jg (&rp->jgs[i]); + debug_print_counts_array (&rp->pref_counts); +} + +int +te_form_pref_counts_cleanup () +{ + if (max_current_query > 0) { + Free (current_query); + max_current_query = 0; + current_query = "no_query"; + } + if (max_num_jgs > 0) { + Free (jgs); + max_num_jgs = 0; + } + if (max_rank_pool > 0) { + Free (rank_pool); + max_rank_pool = 0; + } + if (max_ec_pool > 0) { + Free (ec_pool); + max_ec_pool = 0; + } + if (max_ca_pool > 0) { + Free (ca_pool); + max_ca_pool = 0; + } + if (max_ca_ptr_pool > 0) { + Free (ca_ptr_pool); + max_ca_ptr_pool = 0; + } + if (max_pa_pool > 0) { + Free (pa_pool); + max_pa_pool = 0; + } + if (max_pa_ptr_pool > 0) { + Free (pa_ptr_pool); + max_pa_ptr_pool = 0; + } + if (max_rel_pool > 0) { + Free (rel_pool); + max_rel_pool = 0; + } + if (max_prefs_and_ranks > 0) { + Free (prefs_and_ranks); + max_prefs_and_ranks = 0; + } + if (max_docno_results > 0) { + Free (docno_results); + max_docno_results = 0; + } + if (max_temp_pa_pool > 0) { + Free (temp_pa_pool); + max_temp_pa_pool = 0; + } + if (max_temp_pa_ptr_pool > 0) { + Free (temp_pa_ptr_pool); + max_temp_pa_ptr_pool = 0; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/form_res_rels.c b/tools/eval/trec_eval.9.0.4/form_res_rels.c new file mode 100644 index 0000000000000000000000000000000000000000..c6e4f57c87d81731bdf8e5a47ade3a0847d30510 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/form_res_rels.c @@ -0,0 +1,317 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include "functions.h" +/* Takes the top docs and judged docs for a query, and returns a + rel_rank object giving the ordered relevance values for retrieved + docs, plus relevance occurrence statatistics. + Relevance value is + value in text_qrels if docno is in text_qrels and was judged + (assumed to be a small non-negative integer) + RELVALUE_NONPOOL (-1) if docno is not in text_qrels + RELVALUE_UNJUDGED (-2) if docno is in text_qrels and was not judged. + + This procedure may be called repeatedly for a given topic - returned + values are cached until the query changes. + + results and rel_info formats must be "trec_results" and "qrels" + respectively. + + UNDEF returned if error, 0 if used cache values, 1 if new values. +*/ + +static int comp_rank_judged (), comp_sim_docno (), comp_docno (); + +/* Definitions used for temporary and cached values */ +typedef struct { + char *docno; + float sim; + long rank; + long rel; +} DOCNO_INFO; + +/* Current cached query */ +static char *current_query = "no query"; +static long max_current_query = 0; + +/* Space reserved for cached returned values */ +static long *rel_levels; +static long max_rel_levels = 0; +static RES_RELS saved_res_rels; +static long *ranked_rel_list; +static long max_ranked_rel_list = 0; + +/* Space reserved for intermediate values */ +static DOCNO_INFO *docno_info; +static long max_docno_info = 0; + + +int +te_form_res_rels (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, RES_RELS *res_rels) +{ + long i; + long num_results; + long max_rel; + + TEXT_RESULTS_INFO *text_results_info; + TEXT_QRELS_INFO *trec_qrels; + + TEXT_QRELS *qrels_ptr, *end_qrels; + + if (0 == strcmp (current_query, results->qid)) { + /* Have done this query already. Return cached values */ + *res_rels = saved_res_rels; + return (0); + } + + /* Check that format type of result info and rel info are correct */ + if (strcmp ("qrels", rel_info->rel_format) || + strcmp ("trec_results", results->ret_format)) { + fprintf (stderr, "trec_eval.form_res_qrels: rel_info format not qrels or results format not trec_results\n"); + return (UNDEF); + } + + /* Make sure enough space for query and save copy */ + i = strlen(results->qid)+1; + if (NULL == (current_query = + te_chk_and_malloc (current_query, &max_current_query, + i, sizeof (char)))) + return (UNDEF); + (void) strncpy (current_query, results->qid, i); + + text_results_info = (TEXT_RESULTS_INFO *) results->q_results; + trec_qrels = (TEXT_QRELS_INFO *) rel_info->q_rel_info; + + num_results = text_results_info->num_text_results; + + /* Check and reserve space for output structure */ + /* Reserve space for temp structure copying results */ + if (NULL == (ranked_rel_list = + te_chk_and_malloc (ranked_rel_list, &max_ranked_rel_list, + num_results, sizeof (long))) || + NULL == (docno_info = + te_chk_and_malloc (docno_info, &max_docno_info, + num_results, sizeof (DOCNO_INFO)))) + return (UNDEF); + + for (i = 0; i < num_results; i++) { + docno_info[i].docno = text_results_info->text_results[i].docno; + docno_info[i].sim = text_results_info->text_results[i].sim; + } + + /* Sort results by sim, breaking ties lexicographically using docno */ + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_sim_docno); + + /* Only look at epi->max_num_docs_per_topic (not normally an issue) */ + if (num_results > epi->max_num_docs_per_topic) + num_results = epi->max_num_docs_per_topic; + + /* Add ranks to docno_info (starting at 1) */ + for (i = 0; i < num_results; i++) { + docno_info[i].rank = i+1; + } + + /* Sort trec_top lexicographically */ + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_docno); + + /* Error checking for duplicates */ + for (i = 1; i < num_results; i++) { + if (0 == strcmp (docno_info[i].docno, + docno_info[i-1].docno)) { + fprintf (stderr, "trec_eval.form_res_qrels: duplicate docs %s", + docno_info[i].docno); + return (UNDEF); + } + } + + /* Find max_rel among qid, reserve and zero space for rel_levels */ + /* Check for duplicate docnos. */ + qrels_ptr = trec_qrels->text_qrels; + end_qrels = &trec_qrels->text_qrels [trec_qrels->num_text_qrels]; + max_rel = qrels_ptr->rel; + qrels_ptr++; + while (qrels_ptr < end_qrels) { + if (max_rel < qrels_ptr->rel) + max_rel = qrels_ptr->rel; + if (0 == strcmp ((qrels_ptr-1)->docno, qrels_ptr->docno)) { + fprintf (stderr, "trec_eval.form_res_rels: duplicate docs %s\n", + qrels_ptr->docno); + return (UNDEF); + } + qrels_ptr++; + } + if (NULL == (rel_levels = + te_chk_and_malloc (rel_levels, &max_rel_levels, + (max_rel+1), + sizeof (long)))) + return (UNDEF); + (void) memset (rel_levels, 0, (max_rel+1) * sizeof (long)); + + /* Construct rank_rel array and rel_levels */ + /* Go through docno_info, trec_qrels in parallel to determine relevance + for each doc in docno_info. + Note that trec_qrels already sorted by docno with no duplicates */ + qrels_ptr = trec_qrels->text_qrels; + end_qrels = &trec_qrels->text_qrels [trec_qrels->num_text_qrels]; + for (i = 0; i < num_results; i++) { + while (qrels_ptr < end_qrels && + strcmp (qrels_ptr->docno, docno_info[i].docno) < 0) { + if (qrels_ptr->rel >= 0) + rel_levels[qrels_ptr->rel]++; + qrels_ptr++; + } + if (qrels_ptr >= end_qrels || + strcmp (qrels_ptr->docno, docno_info[i].docno) > 0) { + /* Doc is non-judged */ + docno_info[i].rel = RELVALUE_NONPOOL; + } + else { + /* Doc is in pool, assign relevance */ + if (qrels_ptr->rel < 0) + /* In pool, but unjudged (eg, infAP uses a sample of pool)*/ + docno_info[i].rel = RELVALUE_UNJUDGED; + else { + docno_info[i].rel = qrels_ptr->rel; + } + if (qrels_ptr->rel >= 0) + rel_levels[qrels_ptr->rel]++; + qrels_ptr++; + } + } + /* Finish counting rels */ + while (qrels_ptr < end_qrels) { + if (qrels_ptr->rel >= 0) + rel_levels[qrels_ptr->rel]++; + qrels_ptr++; + } + + /* Construct ranked_rel_list and associated counts */ + saved_res_rels.num_rel_ret = 0; + saved_res_rels.num_nonpool = 0; + saved_res_rels.num_unjudged_in_pool = 0; + saved_res_rels.results_rel_list = ranked_rel_list; + saved_res_rels.rel_levels = rel_levels; + if (epi->judged_docs_only_flag) { + /* If judged_docs_only_flag, then must fix up ranks to + reflect unjudged docs being thrown out. Note: done this way + to preserve original tie-breaking based on text docno */ + long rrl; + /* Sort tuples by increasing rank among judged docs*/ + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_rank_judged); + rrl = 0; i = 0; + while (i < num_results && docno_info[i].rel >= 0) { + if (docno_info[i].rel >= epi->relevance_level) + saved_res_rels.num_rel_ret++; + saved_res_rels.results_rel_list[rrl++] = docno_info[i++].rel; + } + saved_res_rels.num_ret = rrl; + } + else { + /* Normal path. Assign rel value to appropriate rank */ + for (i = 0; i < num_results; i++) { + saved_res_rels.results_rel_list[docno_info[i].rank - 1] = + docno_info[i].rel; + if (RELVALUE_NONPOOL == docno_info[i].rel) + saved_res_rels.num_nonpool++; + else if (RELVALUE_UNJUDGED == docno_info[i].rel) + saved_res_rels.num_unjudged_in_pool++; + else { + if (docno_info[i].rel >= epi->relevance_level) + saved_res_rels.num_rel_ret++; + } + } + saved_res_rels.num_ret = num_results; + } + saved_res_rels.num_rel = 0; + for (i = 0; i <= max_rel; i++) { + if (saved_res_rels.rel_levels[i]) { + saved_res_rels.num_rel_levels = i + 1; + if (i >= epi->relevance_level) + saved_res_rels.num_rel += saved_res_rels.rel_levels[i]; + } + } + + *res_rels = saved_res_rels; + + return (1); +} + +static int +comp_rank_judged (ptr1, ptr2) +DOCNO_INFO *ptr1; +DOCNO_INFO *ptr2; +{ + if (ptr1->rel >= 0 && ptr2->rel >= 0) { + if (ptr1->rank < ptr2->rank) + return (-1); + if (ptr1->rank > ptr2->rank) + return (1); + return (0); + } + if (ptr1->rel >= 0) + return (-1); + if (ptr2->rel >= 0) + return (1); + return(0); +} + +static int +comp_sim_docno (ptr1, ptr2) +DOCNO_INFO *ptr1; +DOCNO_INFO *ptr2; +{ + if (ptr1->sim > ptr2->sim) + return (-1); + if (ptr1->sim < ptr2->sim) + return (1); + return (strcmp (ptr2->docno, ptr1->docno)); +} + +static int +comp_docno (ptr1, ptr2) +DOCNO_INFO *ptr1; +DOCNO_INFO *ptr2; +{ + return (strcmp (ptr1->docno, ptr2->docno)); +} + + +int +te_form_res_rels_cleanup () +{ + if (max_current_query > 0) { + Free (current_query); + max_current_query = 0; + current_query = "no_query"; + } + if (max_rel_levels > 0) { + Free (rel_levels); + max_rel_levels = 0; + } + if (max_ranked_rel_list > 0) { + Free (ranked_rel_list); + max_ranked_rel_list = 0; + } + if (max_docno_info > 0) { + Free (docno_info); + max_docno_info = 0; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/form_res_rels_jg.c b/tools/eval/trec_eval.9.0.4/form_res_rels_jg.c new file mode 100644 index 0000000000000000000000000000000000000000..b5f13407058777ab7a1d9022e55a517e80831ca6 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/form_res_rels_jg.c @@ -0,0 +1,338 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include "functions.h" +/* Takes the top docs and judged docs for a query, and returns a + rel_rank object giving the ordered relevance values for retrieved + docs, plus relevance occurrence statistics, for every judgment + group in the query. + Relevance value is + value in text_qrels if docno is in text_qrels and was judged + (assumed to be a small non-negative integer) + RELVALUE_NONPOOL (-1) if docno is not in text_qrels + RELVALUE_UNJUDGED (-2) if docno is in text_qrels and was not judged. + + This procedure may be called repeatedly for a given topic - returned + values are cached until the query changes. + + results and rel_info formats must be "trec_results" and "qrels_jg" + respectively. + + UNDEF returned if error, 0 if used cache values, 1 if new values. +*/ + +static int comp_rank_judged (), comp_sim_docno (), comp_docno (); + +/* Definitions used for temporary and cached values */ +typedef struct { + char *docno; + float sim; + long rank; + long rel; +} DOCNO_INFO; + +/* Current cached query */ +static char *current_query = "no query"; +static long max_current_query = 0; + +/* Space reserved for cached returned values */ +static long *rel_levels; +static long max_rel_levels = 0; +static RES_RELS *jgs; +static long num_jgs; +static long max_num_jgs = 0; +static long *ranked_rel_list; +static long max_ranked_rel_list = 0; +static DOCNO_INFO *docno_info; +static long max_docno_info = 0; + +int +te_form_res_rels_jg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, RES_RELS_JG *res_rels) +{ + long i; + long num_results; + long jg; + + TEXT_RESULTS_INFO *text_results_info; + TEXT_QRELS_JG_INFO *trec_qrels; + + TEXT_QRELS *qrels_ptr, *end_qrels; + long max_rel; + + long *rel_level_ptr; + + if (0 == strcmp (current_query, results->qid)) { + /* Have done this query already. Return cached values */ + res_rels->qid = results->qid; + res_rels->num_jgs = num_jgs; + res_rels->jgs = jgs; + return (0); + } + + /* Check that format type of result info and rel info are correct */ + if (strcmp ("qrels_jg", rel_info->rel_format) || + strcmp ("trec_results", results->ret_format)) { + fprintf (stderr, "trec_eval: rel_info format not qrels_jg or results format not trec_results\n"); + return (UNDEF); + } + + /* Make sure enough space for query and save copy */ + i = strlen(results->qid)+1; + if (NULL == (current_query = + te_chk_and_malloc (current_query, &max_current_query, + i, sizeof (char)))) + return (UNDEF); + (void) strncpy (current_query, results->qid, i); + + text_results_info = (TEXT_RESULTS_INFO *) results->q_results; + trec_qrels = (TEXT_QRELS_JG_INFO *) rel_info->q_rel_info; + + num_results = text_results_info->num_text_results; + num_jgs = trec_qrels->num_text_qrels_jg; + + /* Check and reserve space for output structure */ + /* Need an output array of size num_results for each of the jg in queries */ + /* Reserve space for temp structure copying results */ + if (NULL == (ranked_rel_list = + te_chk_and_malloc (ranked_rel_list, &max_ranked_rel_list, + num_results * num_jgs, sizeof (long))) || + NULL == (jgs = te_chk_and_malloc (jgs, &max_num_jgs, + num_jgs, sizeof (RES_RELS))) || + NULL == (docno_info = + te_chk_and_malloc (docno_info, &max_docno_info, + num_results, sizeof (DOCNO_INFO)))) + return (UNDEF); + + for (i = 0; i < num_results; i++) { + docno_info[i].docno = text_results_info->text_results[i].docno; + docno_info[i].sim = text_results_info->text_results[i].sim; + } + + /* Sort results by sim, breaking ties lexicographically using docno */ + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_sim_docno); + + /* Only look at epi->max_num_docs_per_topic (not normally an issue) */ + if (num_results > epi->max_num_docs_per_topic) + num_results = epi->max_num_docs_per_topic; + + /* Add ranks to docno_info (starting at 1) */ + for (i = 0; i < num_results; i++) { + docno_info[i].rank = i+1; + } + + /* Sort trec_top lexicographically */ + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_docno); + + /* Error checking for duplicates */ + for (i = 1; i < num_results; i++) { + if (0 == strcmp (docno_info[i].docno, + docno_info[i-1].docno)) { + fprintf (stderr, "trec_eval.form_res_qrels: duplicate docs %s", + docno_info[i].docno); + return (UNDEF); + } + } + + /* Find max_rel among all JGs, reserve and zero space for rel_levels */ + max_rel = 0; + for (jg = 0; jg < trec_qrels->num_text_qrels_jg; jg++) { + qrels_ptr = trec_qrels->text_qrels_jg[jg].text_qrels; + end_qrels = &trec_qrels->text_qrels_jg[jg].text_qrels + [trec_qrels->text_qrels_jg[jg].num_text_qrels]; + while (qrels_ptr < end_qrels) { + if (max_rel < qrels_ptr->rel) + max_rel = qrels_ptr->rel; + qrels_ptr++; + } + } + if (NULL == (rel_levels = + te_chk_and_malloc (rel_levels, &max_rel_levels, + (max_rel+1) * num_jgs, + sizeof (long)))) + return (UNDEF); + (void) memset (rel_levels, 0, (max_rel+1) * num_jgs * sizeof (long)); + + /* Construct rank_rel array and rel_levels separately for each JG */ + for (jg = 0; jg < trec_qrels->num_text_qrels_jg; jg++) { + /* Go through docno_info, trec_qrels in parallel to determine relevance + for each doc in docno_info. + Note that trec_qrels already sorted by docno with no duplicates */ + rel_level_ptr = &rel_levels[(max_rel+1) * jg]; + qrels_ptr = trec_qrels->text_qrels_jg[jg].text_qrels; + end_qrels = &trec_qrels->text_qrels_jg[jg].text_qrels + [trec_qrels->text_qrels_jg[jg].num_text_qrels]; + for (i = 0; i < num_results; i++) { + while (qrels_ptr < end_qrels && + strcmp (qrels_ptr->docno, docno_info[i].docno) < 0) { + if (qrels_ptr->rel >= 0) + rel_level_ptr[qrels_ptr->rel]++; + qrels_ptr++; + } + if (qrels_ptr >= end_qrels || + strcmp (qrels_ptr->docno, docno_info[i].docno) > 0) { + /* Doc is non-judged */ + docno_info[i].rel = RELVALUE_NONPOOL; + } + else { + /* Doc is in pool, assign relevance */ + if (qrels_ptr->rel < 0) + /* In pool, but unjudged (eg, infAP uses a sample of pool)*/ + docno_info[i].rel = RELVALUE_UNJUDGED; + else { + docno_info[i].rel = qrels_ptr->rel; + } + if (qrels_ptr->rel >= 0) + rel_level_ptr[qrels_ptr->rel]++; + qrels_ptr++; + } + } + /* Finish counting rels */ + while (qrels_ptr < end_qrels) { + if (qrels_ptr->rel >= 0) + rel_level_ptr[qrels_ptr->rel]++; + qrels_ptr++; + } + + /* Construct ranked_rel_list and associated counts */ + jgs[jg].num_rel_ret = 0; + jgs[jg].num_nonpool = 0; + jgs[jg].num_unjudged_in_pool = 0; + jgs[jg].results_rel_list = &ranked_rel_list[jg * num_results]; + jgs[jg].rel_levels = &rel_levels[jg * (max_rel + 1)]; + if (epi->judged_docs_only_flag) { + /* If judged_docs_only_flag, then must fix up ranks to + reflect unjudged docs being thrown out. Note: done this way + to preserve original tie-breaking based on text docno */ + long rrl; + /* Sort tuples by increasing rank among judged docs*/ + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_rank_judged); + rrl = 0; i = 0; + while (i < num_results && docno_info[i].rel >= 0) { + if (docno_info[i].rel >= epi->relevance_level) + jgs[jg].num_rel_ret++; + jgs[jg].results_rel_list[rrl++] = docno_info[i++].rel; + } + jgs[jg].num_ret = rrl; + /* resort by docno for next jg */ + if (jg != num_jgs-1) + qsort ((char *) docno_info, + (int) num_results, + sizeof (DOCNO_INFO), + comp_docno); + } + else { + /* Normal path. Assign rel value to appropriate rank */ + for (i = 0; i < num_results; i++) { + jgs[jg].results_rel_list[docno_info[i].rank - 1] = + docno_info[i].rel; + if (RELVALUE_NONPOOL == docno_info[i].rel) + jgs[jg].num_nonpool++; + else if (RELVALUE_UNJUDGED == docno_info[i].rel) + jgs[jg].num_unjudged_in_pool++; + else { + if (docno_info[i].rel >= epi->relevance_level) + jgs[jg].num_rel_ret++; + } + } + jgs[jg].num_ret = num_results; + } + jgs[jg].num_rel = 0; + for (i = 0; i <= max_rel; i++) { + if (jgs[jg].rel_levels[i]) { + jgs[jg].num_rel_levels = i + 1; + if (i >= epi->relevance_level) + jgs[jg].num_rel += jgs[jg].rel_levels[i]; + } + } + } + + res_rels->qid = results->qid; + res_rels->num_jgs = num_jgs; + res_rels->jgs = jgs; + + return (1); +} + +static int +comp_rank_judged (ptr1, ptr2) +DOCNO_INFO *ptr1; +DOCNO_INFO *ptr2; +{ + if (ptr1->rel >= 0 && ptr2->rel >= 0) { + if (ptr1->rank < ptr2->rank) + return (-1); + if (ptr1->rank > ptr2->rank) + return (1); + return (0); + } + if (ptr1->rel >= 0) + return (-1); + if (ptr2->rel >= 0) + return (1); + return(0); +} + +static int +comp_sim_docno (ptr1, ptr2) +DOCNO_INFO *ptr1; +DOCNO_INFO *ptr2; +{ + if (ptr1->sim > ptr2->sim) + return (-1); + if (ptr1->sim < ptr2->sim) + return (1); + return (strcmp (ptr2->docno, ptr1->docno)); +} + +static int +comp_docno (ptr1, ptr2) +DOCNO_INFO *ptr1; +DOCNO_INFO *ptr2; +{ + return (strcmp (ptr1->docno, ptr2->docno)); +} + +int +te_form_res_rels_jg_cleanup () +{ + if (max_current_query > 0) { + Free (current_query); + max_current_query = 0; + current_query = "no_query"; + } + if (max_rel_levels > 0) { + Free (rel_levels); + max_rel_levels = 0; + } + if (max_num_jgs > 0) { + Free (jgs); + max_num_jgs = 0; + num_jgs = 0; + } + if (max_ranked_rel_list > 0) { + Free (ranked_rel_list); + max_ranked_rel_list = 0; + } + if (max_docno_info > 0) { + Free (docno_info); + max_docno_info = 0; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/formats.c b/tools/eval/trec_eval.9.0.4/formats.c new file mode 100644 index 0000000000000000000000000000000000000000..379f57065ddd1a254a20f1edc0bfe7ea5e6f7770 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/formats.c @@ -0,0 +1,286 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "functions.h" +#include "trec_eval.h" +#include "trec_format.h" + +int te_get_qrels (EPI *epi, char *text_qrels_file, ALL_REL_INFO *all_rel_info); +int te_get_qrels_jg (EPI *epi, char *text_qrels_file, + ALL_REL_INFO *all_rel_info); +int te_get_prefs (EPI *epi, char *text_prefs_file, ALL_REL_INFO *all_rel_info); +int te_get_qrels_prefs (EPI *epi, char *text_prefs_file, + ALL_REL_INFO *all_rel_info); +int te_get_trec_results (EPI *epi, char *trec_results_file, + ALL_RESULTS *all_results); +int te_get_qrels_cleanup (); +int te_get_qrels_jg_cleanup (); +int te_get_prefs_cleanup (); +int te_get_qrels_prefs_cleanup (); +int te_get_trec_results_cleanup (); + +REL_INFO_FILE_FORMAT te_rel_info_format[] = { + {"qrels", +"Rel_info_file format: Standard 'qrels'\n\ +Relevance for each docno to qid is determined from rel_info_file, which \n\ +consists of text tuples of the form \n\ + qid iter docno rel \n\ +giving TREC document numbers (docno, a string) and their relevance (rel, \n\ +a non-negative integer less than 128, or -1 (unjudged)) \n\ +to query qid (a string). iter string field is ignored. \n\ +Fields are separated by whitespace, string fields can contain no whitespace. \n\ +File may contain no NULL characters. \n\ +", + te_get_qrels, te_get_qrels_cleanup}, + + + {"qrels_jg", +"Rel_info_file format: Standard 'qrels'\n\ +Relevance for each docno to qid is determined from rel_info_file, which \n\ +consists of text tuples of the form \n\ + qid ujg docno rel \n\ +giving TREC document numbers (docno, a string) and their relevance (rel, \n\ +a non-negative integer less than 128, or -1 (unjudged)) \n\ +to query qid (a string) for a particular user judgment group. \n\ +This allows averaging (or other operations) of appropriate evaluation measures\n\ +across multiple users, whoc may differ in their judgments. \n\ +Fields are separated by whitespace, string fields can contain no whitespace. \n\ +File may contain no NULL characters. \n\ +", + te_get_qrels_jg, te_get_qrels_jg_cleanup}, + + + {"prefs", +"Rel_info_file format: Non-standard 'prefs'\n\ +Preferences of user(s) for docs for a given qid is determined from\n\ +text_prefs_file, which consists of text tuples of the form\n\ + qid ujg ujsubg docno rel_level\n\ +giving TREC document numbers (docno, a string) and their relevance\n\ +level (rel_level,a non-negative float) to query qid (a string) for a \n\ +user judgment sub-group (ujsubg, a string) within a user judgment\n\ +group (ujg, a string).\n\ +Fields are separated by whitespace, string fields can contain no whitespace.\n\ +File may contain no NULL characters.\n\ +\n\ +Preferences are indicated indirectly by comparing rel_level of\n\ +different docnos within the same user judgment sub group(JSG). A\n\ +judgment sub group establishes preferences between all docnos with\n\ +non-tied rel_levels within the group. Except possibly for 0.0, the\n\ +actual values of rel_level are ignored by default; they only serve to\n\ +establish a ranking within the JSG.\n\ +\n\ +If a user only expresses a preference between two docs, then that user JSG\n\ +will have 2 lines in text_prefs_file:\n\ + qid1 ujg1 sub1 docno1 3.0\n\ + qid1 ujg1 sub1 docno2 2.0\n\ +\n\ +If a user completely ranks some small number N (5-10) of docs, then N lines \n\ +are used.\n\ +For example:\n\ + qid1 ujg1 sub1 docno1 3.0\n\ + qid1 ujg1 sub1 docno2 2.0\n\ + qid1 ujg1 sub1 docno3 0.0\n\ + qid1 ujg1 sub1 docno4 6.0\n\ + qid1 ujg1 sub1 docno5 0.0\n\ + qid1 ujg1 sub1 docno6 2.0\n\ +establishes a total of 13 preferences (5 with docno4 preferred, 4 with docno1 \n\ +preferred, 2 each with docno2 and docno6 preferred).\n\ +\n\ +If a given user has multiple preferences that aren't complete, the preferences\n\ +are expressed in multiple JSGs within a single JG.\n\ +For example:\n\ + qid1 ujg1 sub1 docno1 3.0\n\ + qid1 ujg1 sub1 docno2 2.0\n\ + qid1 ujg1 sub1 docno3 1.0\n\ + qid1 ujg1 sub2 docno1 2.0\n\ + qid1 ujg1 sub2 docno2 1.0\n\ + qid1 ujg1 sub2 docno4 3.0\n\ +expressses 5 preferences (1>2, 1>3, 2 > 3, 4>1, 4>2). Note the duplicate\n\ +1 > 2 is not counted as a separate preference\n\ +\n\ +Multiple users are indicated by different JGs.\n\ +For example:\n\ + qid1 ujg1 sub1 docno1 3.0\n\ + qid1 ujg1 sub1 docno2 2.0\n\ + qid1 ujg2 sub1 docno1 0.0\n\ + qid1 ujg2 sub1 docno3 6.0\n\ + qid1 ujg2 sub1 docno4 2.0\n\ + qid1 ujg2 sub2 docno1 0.0\n\ + qid1 ujg2 sub2 docno2 8.0\n\ +expressses 5 preferences (1>2, 3>1, 4>1, 3>4, 2>1).\n\ +\n\ +A Judgment Group (JG) conceptually represents preferences for a single\n\ +information need of a user at a single time. Within a single JG, it\n\ +is an error if there are inconsistencies (doc A > doc B in one JSG,\n\ +but B > A or B == A in another). The different JSGs within a JG are\n\ +just a mechanism tha allows expressing partial ordering within a JG.\n\ +Within a single JG, preferences are transistive:\n\ + qid1 ujg1 sub1 docno1 3.0\n\ + qid1 ujg1 sub1 docno2 2.0\n\ + qid1 ujg1 sub1 docno3 1.0\n\ + qid1 ujg1 sub2 docno2 5.0\n\ + qid1 ujg1 sub2 docno4 4.0\n\ +expresses 5 preferences (1>2, 1>3, 2>3, 2>4, 1>4). There is no\n\ +preference expressed between 3 and 4.\n\ +\n\ +Different JGs may contain contradictory preferences, as in an earlier\n\ +example. These disagreements are realistic and desirable: users (or\n\ +even the same user at different times) often do not agree with each\n\ +other's preferences. Individual preference evaluation measures will\n\ +handle these contradictions (or confirmations) in different ways.\n\ +\n\ +A rel_level of 0.0 by convention means that doc is non-relevant to the\n\ +topic (in that user's opinion). it is an inconsistency (and an error)\n\ +if a doc is assigned a rel_level of 0.0 in one JSG, but a different\n\ +rel_level value in another JSG of the same JG. Some preference\n\ +evaluation measures may handle 0.0 differently. Thus when converting\n\ +a preference file in some other format into text_prefs format, do not\n\ +assign a rel_level of 0.0 to a docno unless it is known that docno was\n\ +considered nonrelevant.\n\ +\n\ +Handling of rel_level 0.0 separately addresses the general problem\n\ +that the number of nonrelevant docs judged for a topic can be critical\n\ +to fair evaluation - adding a couple of hundred preferences involving\n\ +nonrelevant docs (out of the possibly millions or billions in a\n\ +collection) can both change the importance of the topic when averaging\n\ +and even change whether system A scores better than system B on a\n\ +topic (even given identical retrieval on the added nonrel docs). How\n\ +to handle this correctly for preference evaluation will be an\n\ +important future research problem.\n\ +", + te_get_prefs, te_get_prefs_cleanup}, + +{"qrels_prefs", +"Rel_info_file format: Non-standard 'qrels_prefs'\n\ +The file format is exactly the same as rel_info_file format 'qrels',\n\ +however it is interpreted as a restricted 'prefs' rel_info_file.\n\ +It cannot represent some user preferences (in particular, if a single user\n\ +prefers Doc A to Doc B, and A to C, but does not express a preference\n\ +between A and C) , but it allows the standard TREC qrels file to serve as \n\ +input for preference evaluation measures.\n\ +\n\ +Read all relevance preference information from text_qrels_prefs_file.\n\ +Preferences of user(s) for docs for a given qid is determined from\n\ +text_prefs_file, which consists of text tuples of the form\n\ + qid ujg docno rel_level\n\ +giving TREC document numbers (docno, a string) and their relevance\n\ +level (rel_level,a non-negative float) to query qid (a string) for a \n\ + user judgment group (ujg, a string).\n\ +Fields are separated by whitespace, string fields can contain no whitespace.\n\ +File may contain no NULL characters.\n\ +\n\ +Preferences are indicated indirectly by comparing rel_level of\n\ +different docnos within the same user judgment group(JG). A\n\ +judgment group establishes preferences between all docnos with\n\ +non-tied rel_levels within the group. Except possibly for 0.0, the\n\ +actual values of rel_level are ignored by default; they only serve to\n\ +establish a ranking within the JSG.\n\ +\n\ +If a user only expresses a preference between two docs, then that user JSG\n\ +will have 2 lines in text_prefs_file:\n\ + qid1 ujg1 docno1 3.0\n\ + qid1 ujg1 docno2 2.0\n\ +\n\ +If a user completely ranks some small number N (5-10) of docs, then N lines \n\ +are used.\n\ +For example:\n\ + qid1 ujg1 docno1 3.0\n\ + qid1 ujg1 docno2 2.0\n\ + qid1 ujg1 docno3 0.0\n\ + qid1 ujg1 docno4 6.0\n\ + qid1 ujg1 docno5 0.0\n\ + qid1 ujg1 docno6 2.0\n\ +establishes a total of 13 preferences (5 with docno4 preferred, 4 with docno1 \n\ +preferred, 2 each with docno2 and docno6 preferred).\n\ +\n\ +A Judgment Group (JG) conceptually represents preferences for a single\n\ +information need of a user at a single time. Within a single JG, it\n\ +is an error if there are inconsistencies (doc A > doc B in one JSG,\n\ +but B > A or B == A in another).\n\ +\n\ +Different JGs may contain contradictory preferences, These\n\ +disagreements are realistic and desirable: users (or even the same\n\ +user at different times) often do not agree with each other's\n\ +preferences. Individual preference evaluation measures will handle\n\ +these contradictions (or confirmations) in different ways.\n\ +\n\ +A rel_level of 0.0 by convention means that doc is non-relevant to the\n\ +topic (in that user's opinion). Some preference evaluation measures\n\ +may handle 0.0 differently. Thus when converting a preference file in\n\ +some other format into text_prefs format, do not assign a rel_level of\n\ +0.0 to a docno unless it is known that docno was considered\n\ +nonrelevant.\n\ +\n\ +Handling of rel_level 0.0 separately addresses the general problem\n\ +that the number of nonrelevant docs judged for a topic can be critical\n\ +to fair evaluation - adding a couple of hundred preferences involving\n\ +nonrelevant docs (out of the possibly millions or billions in a\n\ +collection) can both change the importance of the topic when averaging\n\ +and even change whether system A scores better than system B on a\n\ +topic (even given identical retrieval on the added nonrel docs). How\n\ +to handle this correctly for preference evaluation will be an\n\ +important future research problem.\n\ +", + te_get_qrels_prefs, te_get_qrels_prefs_cleanup}, +}; +int te_num_rel_info_format = + sizeof (te_rel_info_format)/sizeof (te_rel_info_format[0]); + +RESULTS_FILE_FORMAT te_results_format[] = { + {"trec_results", +"Results_file format: Standard 'trec_results'\n\ +Lines of results_file are of the form \n\ + 030 Q0 ZF08-175-870 0 4238 prise1 \n\ + qid iter docno rank sim run_id \n\ +giving TREC document numbers (a string) retrieved by query qid \n\ +(a string) with similarity sim (a float). The other fields are ignored, \n\ +with the exception that the run_id field of the last line is kept and \n\ +output. In particular, note that the rank field is ignored here; \n\ +internally ranks are assigned by sorting by the sim field with ties \n\ +broken deterministicly (using docno). \n\ +Sim is assumed to be higher for the docs to be retrieved first. \n\ +File may contain no NULL characters. \n\ +Lines may contain fields after the run_id; they are ignored. \n\ +", + te_get_trec_results, te_get_trec_results_cleanup}, +}; +int te_num_results_format = + sizeof (te_results_format)/sizeof (te_results_format[0]); + +int te_form_res_rels_cleanup (), te_form_res_rels_jg_cleanup (), + te_form_pref_counts_cleanup (), te_form_pref_counts_cleanup (); + +FORM_INTER_PROCS te_form_inter_procs[] = { + {"qrels", "trec_results", + "Process for evaluating qrels and trec_results", + /* te_form_res_rels, */ + te_form_res_rels_cleanup}, + {"qrels_jg", "trec_results", + "Process for evaluating qrels_jg and trec_results", + /* te_form_res_rels_jg, */ + te_form_res_rels_jg_cleanup}, + {"prefs", "trec_results", + "Process for evaluating prefs and trec_results", + /* te_form_prefs_counts, */ + te_form_pref_counts_cleanup}, + {"qrels_prefs", "trec_results", + " Copyright (c) 2008 - Chris Buckley. \n\ +\n\ + Permission is granted for use and modification of this file for\n\ + research, non-commercial purposes. \n\ +\n\ + Process for evaluating qrels_prefs and trec_results", + /* te_form_prefs_counts, */ + te_form_pref_counts_cleanup}, +}; + +int te_num_form_inter_procs = + sizeof (te_form_inter_procs)/sizeof (te_form_inter_procs[0]); + + diff --git a/tools/eval/trec_eval.9.0.4/functions.h b/tools/eval/trec_eval.9.0.4/functions.h new file mode 100644 index 0000000000000000000000000000000000000000..d1918ae0a84a649a035ea916a103041c22639b63 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/functions.h @@ -0,0 +1,103 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#ifndef FUNCTIONSH +#define FUNCTIONSH + +#include "trec_eval.h" +/* Utility functions */ +void * te_chk_and_malloc (void *ptr, long *current_bound, + const long needed, const size_t size); +void * te_chk_and_realloc (void *ptr, long *current_bound, + const long needed, const int size); +/* Functions for dealing with zscores */ +int te_get_zscores (const EPI *epi, const char *zscores_file, + ALL_ZSCORES *zscores); +int te_get_zscores_cleanup (); +int te_convert_to_zscore (const ALL_ZSCORES *all_zscores, TREC_EVAL *q_eval); + +/* ------------------- Generic Routines for Measures ------------------------ */ + +/* -------- Initialize measure -------- */ +/* Code is in meas_init.c */ +/* Measure does not require initialization or storage */ +int te_init_meas_empty (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); +/* Measure is a single float measure, no parameters */ +int te_init_meas_s_float (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); +/* Measure is a single long measure, no parameters. */ +int te_init_meas_s_long (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); +/* Measure is a float array with long cutoffs */ +int te_init_meas_a_float_cut_long (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); +/* Measure is a float array with float cutoffs */ +int te_init_meas_a_float_cut_float (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); +/* Measure is a single float with float params */ +int te_init_meas_s_float_p_float (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); +/* Measure is a single float with paired name=float params */ +int te_init_meas_s_float_p_pair (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); + + +/* -------- Accumulate Measure -------- */ +/* Code is in meas_acc.c */ +/* Measure does not require accumulation */ +int te_acc_meas_empty (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *q_eval, TREC_EVAL *accum_eval); +/* Accumulate a single value */ +int te_acc_meas_s (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *q_eval, TREC_EVAL *accum_eval); +/* Accumulate an array of values (one per cutoff) */ +int te_acc_meas_a_cut (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *q_eval, TREC_EVAL *accum_eval); + +/* ----- Calculate Average measure ---- */ +/* Code is in meas_calc_avg.c */ +/* Measure does not require final averaging */ +int te_calc_avg_meas_empty (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *eval); +/* Measure is a single value with averaging */ +int te_calc_avg_meas_s (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval); +/* Measure is an array of values (one per cutoff) with averaging */ +int te_calc_avg_meas_a_cut (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval); +/* Measure is a single value using geometric mean */ +int te_calc_avg_meas_s_gm (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval); + +/* ----- Print single query for measure ---- */ +/* Code is in meas_print_single.c */ +/* Measure does not require printing */ +int te_print_single_meas_empty (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval); +/* Measure is a single float measure with no parameters, */ +int te_print_single_meas_s_float (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval); +/* Measure is a single long measure with no parameters. */ +int te_print_single_meas_s_long (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval); +/* Measure is a float array with cutoffs */ +int te_print_single_meas_a_cut (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval); + + +/* ----- Print final query for measure ---- */ +/* Code is in meas_print_final.c */ +/* Measure does not require printing or storage */ +int te_print_final_meas_empty (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval); +/* Measure is a single float measure with no parameters */ +int te_print_final_meas_s_float (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval); +/* Measure is a single long measure with no parameters. */ +int te_print_final_meas_s_long (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval); +/* Measure is a float array with cutoffs */ +int te_print_final_meas_a_cut (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval); +/* Measure is a single float with float params */ +int te_print_final_meas_s_float_p (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval); + +#endif /* FUNCTIONSH */ diff --git a/tools/eval/trec_eval.9.0.4/get_prefs.c b/tools/eval/trec_eval.9.0.4/get_prefs.c new file mode 100644 index 0000000000000000000000000000000000000000..4b858a0dea0998830cc19de0ecd1d3159da7a9f2 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/get_prefs.c @@ -0,0 +1,327 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include + + +/* Read all relevance preference information from text_prefs_file. +Preferences of user(s) for docs for a given qid is determined from +text_prefs_file, which consists of text tuples of the form + qid ujg ujsubg docno rel_level +giving TREC document numbers (docno, a string) and their relevance +level (rel_level,a non-negative float) to query qid (a string) for a +user judgment sub-group (ujsubg, a string) within a user judgment +group (ujg, a string). +Fields are separated by whitespace, string fields can contain no whitespace. +File may contain no NULL characters. + +Preferences are indicated indirectly by comparing rel_level of +different docnos within the same user judgment sub group(JSG). A +judgment sub group establishes preferences between all docnos with +non-tied rel_levels within the group. Except possibly for 0.0, the +actual values of rel_level are ignored by default; they only serve to +establish a ranking within the JSG. + +If a user only expresses a preference between two docs, then that user JSG +will have 2 lines in text_prefs_file: + qid1 ujg1 sub1 docno1 3.0 + qid1 ujg1 sub1 docno2 2.0 + +If a user completely ranks some small number N (5-10) of docs, then N lines +are used. +For example: + qid1 ujg1 sub1 docno1 3.0 + qid1 ujg1 sub1 docno2 2.0 + qid1 ujg1 sub1 docno3 0.0 + qid1 ujg1 sub1 docno4 6.0 + qid1 ujg1 sub1 docno5 0.0 + qid1 ujg1 sub1 docno6 2.0 +establishes a total of 13 preferences (5 with docno4 preferred, 4 with docno1 +preferred, 2 each with docno2 and docno6 preferred). + +If a given user has multiple preferences that aren't complete, the preferences +are expressed in multiple JSGs within a single JG. +For example: + qid1 ujg1 sub1 docno1 3.0 + qid1 ujg1 sub1 docno2 2.0 + qid1 ujg1 sub1 docno3 1.0 + qid1 ujg1 sub2 docno1 2.0 + qid1 ujg1 sub2 docno2 1.0 + qid1 ujg1 sub2 docno4 3.0 +expressses 5 preferences (1>2, 1>3, 2 > 3, 4>1, 4>2). Note the duplicate +1 > 2 is not counted as a separate preference. +A conventional pairwise preference file with no transistivity could be converted +into this form, with two entries per JSG, the preferred doc with a rel of 2.0 and +the non-preferred doc with a rel of 1.0. + +Multiple users are indicated by different JGs. +For example: + qid1 ujg1 sub1 docno1 3.0 + qid1 ujg1 sub1 docno2 2.0 + qid1 ujg2 sub1 docno1 0.0 + qid1 ujg2 sub1 docno3 6.0 + qid1 ujg2 sub1 docno4 2.0 + qid1 ujg2 sub2 docno1 0.0 + qid1 ujg2 sub2 docno2 8.0 +expressses 5 preferences (1>2, 3>1, 4>1, 3>4, 2>1). + +A Judgment Group (JG) conceptually represents preferences for a single +information need of a user at a single time. Within a single JG, it +is an error if there are inconsistencies (doc A > doc B in one JSG, +but B > A or B == A in another). The different JSGs within a JG are +just a mechanism tha allows expressing partial ordering within a JG. +Within a single JG, preferences are transistive: + qid1 ujg1 sub1 docno1 3.0 + qid1 ujg1 sub1 docno2 2.0 + qid1 ujg1 sub1 docno3 1.0 + qid1 ujg1 sub2 docno2 5.0 + qid1 ujg1 sub2 docno4 4.0 +expresses 5 preferences (1>2, 1>3, 2>3, 2>4, 1>4). There is no +preference expressed between 3 and 4. + +Different JGs may contain contradictory preferences, as in an earlier +example. These disagreements are realistic and desirable: users (or +even the same user at different times) often do not agree with each +other's preferences. Individual preference evaluation measures will +handle these contradictions (or confirmations) in different ways. + +A rel_level of 0.0 by convention means that doc is non-relevant to the +topic (in that user's opinion). it is an inconsistency (and an error) +if a doc is assigned a rel_level of 0.0 in one JSG, but a different +rel_level value in another JSG of the same JG. Some preference +evaluation measures may handle 0.0 differently. Thus when converting +a preference file in some other format into text_prefs format, do not +assign a rel_level of 0.0 to a docno unless it is known that docno was +considered nonrelevant. + +Handling of rel_level 0.0 separately addresses the general problem +that the number of nonrelevant docs judged for a topic can be critical +to fair evaluation - adding a couple of hundred preferences involving +nonrelevant docs (out of the possibly millions or billions in a +collection) can both change the importance of the topic when averaging +and even change whether system A scores better than system B on a +topic (even given identical retrieval on the added nonrel docs). How +to handle this correctly for preference evaluation will be an +important future research problem. + +*/ + +static int parse_prefs_line (char **start_ptr, char **qid_ptr, char **jg_ptr, + char **jsg_ptr, char **docno_ptr, char **rel_ptr); +static int comp_lines_qid_docno (); + + +/* static pools of memory, allocated here and never changed. + Declared static so one day I can write a cleanup procedure to free them */ +static char *trec_prefs_buf = NULL; +static TEXT_PREFS_INFO *text_info_pool = NULL; +static TEXT_PREFS *text_prefs_pool = NULL; +static REL_INFO *rel_info_pool = NULL; + +/* Temp structure for values in input line */ +typedef struct { + char *qid; + char *jg; + char *jsg; + char *docno; + char *rel; +} LINES; + +int +te_get_prefs (EPI *epi, char *text_prefs_file, ALL_REL_INFO *all_rel_info) +{ + int fd; + int size = 0; + char *ptr; + char *current_qid; + long i; + LINES *lines; + LINES *line_ptr; + long num_lines; + long num_qid; + /* current pointers into static pools above */ + REL_INFO *rel_info_ptr; + TEXT_PREFS_INFO *text_info_ptr; + TEXT_PREFS *text_prefs_ptr; + + /* Read entire file into memory */ + if (-1 == (fd = open (text_prefs_file, 0)) || + 0 >= (size = lseek (fd, 0L, 2)) || + NULL == (trec_prefs_buf = malloc ((unsigned) size+2)) || + -1 == lseek (fd, 0L, 0) || + size != read (fd, trec_prefs_buf, size) || + -1 == close (fd)) { + fprintf (stderr, + "trec_eval.get_prefs: Cannot read prefs file '%s'\n", + text_prefs_file); + return (UNDEF); + } + + /* Append ending newline if not present, Append NULL terminator */ + if (trec_prefs_buf[size-1] != '\n') { + trec_prefs_buf[size] = '\n'; + size++; + } + trec_prefs_buf[size] = '\0'; + + /* Count number of lines in file */ + num_lines = 0; + for (ptr = trec_prefs_buf; *ptr; ptr = index(ptr,'\n')+1) + num_lines++; + + /* Get all lines */ + if (NULL == (lines = Malloc (num_lines, LINES))) + return (UNDEF); + line_ptr = lines; + ptr = trec_prefs_buf; + while (*ptr) { + if (UNDEF == parse_prefs_line (&ptr, &line_ptr->qid, &line_ptr->jg, + &line_ptr->jsg, &line_ptr->docno, + &line_ptr->rel)) { + fprintf (stderr, "trec_eval.get_prefs: Malformed line %ld\n", + (long) (line_ptr - lines + 1)); + return (UNDEF); + } + line_ptr++; + } + num_lines = line_ptr-lines; + + /* Sort all lines by qid, then docno */ + qsort ((char *) lines, + (int) num_lines, + sizeof (LINES), + comp_lines_qid_docno); + + /* Go through lines and count number of qid */ + num_qid = 1; + for (i = 1; i < num_lines; i++) { + if (strcmp (lines[i-1].qid, lines[i].qid)) + /* New query */ + num_qid++; + } + + /* Allocate space for queries */ + if (NULL == (rel_info_pool = Malloc (num_qid, REL_INFO)) || + NULL == (text_info_pool = Malloc (num_qid, TEXT_PREFS_INFO)) || + NULL == (text_prefs_pool = Malloc (num_lines, TEXT_PREFS))) + return (UNDEF); + + rel_info_ptr = rel_info_pool; + text_info_ptr = text_info_pool; + text_prefs_ptr = text_prefs_pool; + + /* Go through lines and store all info */ + current_qid = ""; + for (i = 0; i < num_lines; i++) { + if (strcmp (current_qid, lines[i].qid)) { + /* New query. End old query and start new one */ + if (i != 0) { + text_info_ptr->num_text_prefs = + text_prefs_ptr - text_info_ptr->text_prefs; + text_info_ptr++; + rel_info_ptr++; + } + current_qid = lines[i].qid; + text_info_ptr->text_prefs = text_prefs_ptr; + *rel_info_ptr = + (REL_INFO) {current_qid, "prefs", text_info_ptr}; + } + text_prefs_ptr->jg = lines[i].jg; + text_prefs_ptr->jsg = lines[i].jsg; + text_prefs_ptr->rel_level = atof (lines[i].rel); + text_prefs_ptr->docno = lines[i].docno; + text_prefs_ptr++; + } + /* End last qid */ + text_info_ptr->num_text_prefs = text_prefs_ptr - text_info_ptr->text_prefs; + + all_rel_info->num_q_rels = num_qid; + all_rel_info->rel_info = rel_info_pool; + + Free (lines); + return (1); +} + +static int comp_lines_qid_docno (LINES *ptr1, LINES *ptr2) +{ + int cmp = strcmp (ptr1->qid, ptr2->qid); + if (cmp) return (cmp); + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +parse_prefs_line (char **start_ptr, char **qid_ptr, char**jg_ptr, + char **jsg_ptr, char **docno_ptr, char **rel_ptr) +{ + char *ptr = *start_ptr; + + /* Get qid */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *qid_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get Judgment Group */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *jg_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get Judgment Sub Group */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *jsg_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get docno */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *docno_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get relevance */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *rel_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr != '\n') { + *ptr++ = '\0'; + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr != '\n') return (UNDEF); + } + *ptr++ = '\0'; + *start_ptr = ptr; + return (0); +} + + + +int +te_get_prefs_cleanup () +{ + if (trec_prefs_buf != NULL) { + Free (trec_prefs_buf); + trec_prefs_buf = NULL; + } + if (text_info_pool != NULL) { + Free (text_info_pool); + text_info_pool = NULL; + } + if (text_prefs_pool != NULL) { + Free (text_prefs_pool); + text_prefs_pool = NULL; + } + if (rel_info_pool != NULL) { + Free (rel_info_pool); + rel_info_pool = NULL; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/get_qrels.c b/tools/eval/trec_eval.9.0.4/get_qrels.c new file mode 100644 index 0000000000000000000000000000000000000000..44dd56b63bcc478473617c448a797d0a8e3ca8a3 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/get_qrels.c @@ -0,0 +1,253 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include + + +/* Read all relevance information from text_qrels_file. +Relevance for each docno to qid is determined from text_qrels_file, which +consists of text tuples of the form + qid iter docno rel +giving TREC document numbers (docno, a string) and their relevance (rel, +an integer between -127 and 127) to query qid (a string). Iter is ignored +Fields are separated by whitespace, string fields can contain no whitespace. +File may contain no NULL characters. + +All pairs stored in per query arrays within all_rel_info. +Each list of query judgments is sorted lexicographically by docno. +*/ + +/* Declarations in trec_eval.h (generic q info) and trec_format.h + (qrels specific info) for the output format */ +/* + typedef struct { * For each relevance judgement * + char *docno; * document id * + long rel; * document judgement * + } TEXT_QRELS; + + typedef struct { * For each qid in query * + long num_text_qrels; * number of judged documents * + TEXT_QRELS *text_qrels; * Array of judged TEXT_QRELS. + Kept sorted by docno * + } TEXT_QRELS_INFO; + + typedef struct { + char *qid; * query id * + char *rel_format; * format of rel_info data. Eg, "qrels" * + void *q_rel_info; * relevance info for this qid * + } REL_INFO; + + typedef struct { * Overall relevance judgements * + long num_q_rels; * Number of REL_INFO queries * + long max_num_q_rels; * Num queries space reserved for * + REL_INFO *rel_info; * Array of REL_INFO queries * + } ALL_REL_INFO; +*/ +/* Temp structure for values in input line */ +typedef struct { + char *qid; + char *docno; + char *rel; +} LINES; + +static int parse_qrels_line (char **start_ptr, char **qid_ptr, + char **docno_ptr, char **rel_ptr); + +static int comp_lines_qid_docno (); + + +/* static pools of memory, allocated here and never changed. + Declared static so one day I can write a cleanup procedure to free them */ +static char *trec_qrels_buf = NULL; +static TEXT_QRELS_INFO *text_info_pool = NULL; +static TEXT_QRELS *text_qrels_pool = NULL; +static REL_INFO *rel_info_pool = NULL; + +int +te_get_qrels (EPI *epi, char *text_qrels_file, ALL_REL_INFO *all_rel_info) +{ + int fd; + int size = 0; + char *ptr; + char *current_qid; + long i; + LINES *lines; + LINES *line_ptr; + long num_lines; + long num_qid; + /* current pointers into static pools above */ + REL_INFO *rel_info_ptr; + TEXT_QRELS_INFO *text_info_ptr; + TEXT_QRELS *text_qrels_ptr; + + /* Read entire file into memory */ + if (-1 == (fd = open (text_qrels_file, 0)) || + 0 >= (size = lseek (fd, 0L, 2)) || + NULL == (trec_qrels_buf = malloc ((unsigned) size+2)) || + -1 == lseek (fd, 0L, 0) || + size != read (fd, trec_qrels_buf, size) || + -1 == close (fd)) { + fprintf (stderr, + "trec_eval.get_qrels: Cannot read qrels file '%s'\n", + text_qrels_file); + return (UNDEF); + } + + /* Append ending newline if not present, Append NULL terminator */ + if (trec_qrels_buf[size-1] != '\n') { + trec_qrels_buf[size] = '\n'; + size++; + } + trec_qrels_buf[size] = '\0'; + + /* Count number of lines in file */ + num_lines = 0; + for (ptr = trec_qrels_buf; *ptr; ptr = index(ptr,'\n')+1) + num_lines++; + + /* Get all lines */ + if (NULL == (lines = Malloc (num_lines, LINES))) + return (UNDEF); + line_ptr = lines; + ptr = trec_qrels_buf; + while (*ptr) { + if (UNDEF == parse_qrels_line (&ptr, &line_ptr->qid, + &line_ptr->docno, &line_ptr->rel)) { + fprintf (stderr, "trec_eval.get_qrels: Malformed line %ld\n", + (long) (line_ptr - lines + 1)); + return (UNDEF); + } + line_ptr++; + } + num_lines = line_ptr-lines; + + /* Sort all lines by qid, then docno */ + qsort ((char *) lines, + (int) num_lines, + sizeof (LINES), + comp_lines_qid_docno); + + /* Go through lines and count number of qid */ + num_qid = 1; + for (i = 1; i < num_lines; i++) { + if (strcmp (lines[i-1].qid, lines[i].qid)) + /* New query */ + num_qid++; + } + + /* Allocate space for queries */ + if (NULL == (rel_info_pool = Malloc (num_qid, REL_INFO)) || + NULL == (text_info_pool = Malloc (num_qid, TEXT_QRELS_INFO)) || + NULL == (text_qrels_pool = Malloc (num_lines, TEXT_QRELS))) + return (UNDEF); + + rel_info_ptr = rel_info_pool; + text_info_ptr = text_info_pool; + text_qrels_ptr = text_qrels_pool; + + /* Go through lines and store all info */ + current_qid = ""; + for (i = 0; i < num_lines; i++) { + if (strcmp (current_qid, lines[i].qid)) { + /* New query. End old query and start new one */ + if (i != 0) { + text_info_ptr->num_text_qrels = + text_qrels_ptr - text_info_ptr->text_qrels; + text_info_ptr++; + rel_info_ptr++; + } + current_qid = lines[i].qid; + text_info_ptr->text_qrels = text_qrels_ptr; + *rel_info_ptr = + (REL_INFO) {current_qid, "qrels", text_info_ptr}; + } + text_qrels_ptr->docno = lines[i].docno; + text_qrels_ptr->rel = atol (lines[i].rel); + text_qrels_ptr++; + } + /* End last qid */ + text_info_ptr->num_text_qrels = text_qrels_ptr - text_info_ptr->text_qrels; + + all_rel_info->num_q_rels = num_qid; + all_rel_info->rel_info = rel_info_pool; + + Free (lines); + return (1); +} + +static int comp_lines_qid_docno (LINES *ptr1, LINES *ptr2) +{ + int cmp = strcmp (ptr1->qid, ptr2->qid); + if (cmp) return (cmp); + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +parse_qrels_line (char **start_ptr, char **qid_ptr, + char **docno_ptr, char **rel_ptr) +{ + char *ptr = *start_ptr; + + /* Get qid */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *qid_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get iter, ignore */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + ptr++; + /* Get docno */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *docno_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get relevance */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *rel_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr != '\n') { + *ptr++ = '\0'; + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr != '\n') return (UNDEF); + } + *ptr++ = '\0'; + *start_ptr = ptr; + return (0); +} + + +int +te_get_qrels_cleanup () +{ + if (trec_qrels_buf != NULL) { + Free (trec_qrels_buf); + trec_qrels_buf = NULL; + } + if (text_info_pool != NULL) { + Free (text_info_pool); + text_info_pool = NULL; + } + if (text_qrels_pool != NULL) { + Free (text_qrels_pool); + text_qrels_pool = NULL; + } + if (rel_info_pool != NULL) { + Free (rel_info_pool); + rel_info_pool = NULL; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/get_qrels_jg.c b/tools/eval/trec_eval.9.0.4/get_qrels_jg.c new file mode 100644 index 0000000000000000000000000000000000000000..f0a1caed7896977ed29c64ca19e5947efa9492aa --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/get_qrels_jg.c @@ -0,0 +1,297 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include + + +/* Read all relevance information from text_qrels_file. +Relevance for each docno to qid is determined from text_qrels_file, which +consists of text tuples of the form + qid ujg docno rel +giving TREC document numbers (docno, a string) and their relevance (rel, +an integer between -127 and 127) to query qid (a string) as judged by user ujg. +Fields are separated by whitespace, string fields can contain no whitespace. +File may contain no NULL characters. + +All pairs stored in per judgment group per query arrays +within all_rel_info. +Each list of query judgments is sorted lexicographically by docno, +and checked for duplicates (error if any). +*/ + +/* Decalrations in trec_eval.h (generic q info) and trec_format.h + (qrels_jg specific info) for the output format */ +/* + typedef struct { * For each relevance judgement * + char *docno; * document id * + long rel; * document judgement * + } TEXT_QRELS; + + typedef struct { * For each jg in query * + long num_text_qrels; * number of judged documents * + TEXT_QRELS *text_qrels; * Array of judged TEXT_QRELS. + Kept sorted by docno * + } TEXT_QRELS_JG; + + typedef struct { * For each query in rel judgments * + long num_text_qrels_jg; * number of judgment groups * + TEXT_QRELS_JG *text_qrels_jg; * Array of judged TEXT_QRELS_JG * + } TEXT_QRELS_JG_INFO; + + typedef struct { + char *qid; * query id * + char *rel_format; * format of rel_info data. Eg, "qrels" * + void *q_rel_info; * relevance info for this qid * + } REL_INFO; + + typedef struct { * Overall relevance judgements * + long num_q_rels; * Number of REL_INFO queries * + long max_num_q_rels; * Num queries space reserved for * + REL_INFO *rel_info; * Array of REL_INFO queries * + } ALL_REL_INFO; +*/ +/* Temp structure for values in input line */ +typedef struct { + char *qid; + char *jg; + char *docno; + char *rel; +} LINES; + +static int parse_qrels_line (char **start_ptr, char **qid_ptr, char **jg_ptr, + char **docno_ptr, char **rel_ptr); + +static int comp_lines_qid_jg_docno (); + + +/* static pools of memory, allocated here and never changed. + Declared static so one day I can write a cleanup procedure to free them */ +static char *trec_qrels_buf = NULL; +static TEXT_QRELS_JG_INFO *text_jg_info_pool = NULL; +static TEXT_QRELS_JG *text_jg_pool = NULL; +static TEXT_QRELS *text_qrels_pool = NULL; +static REL_INFO *rel_info_pool = NULL; + +int +te_get_qrels_jg (EPI *epi, char *text_qrels_file, ALL_REL_INFO *all_rel_info) +{ + int fd; + int size = 0; + char *ptr; + char *current_qid, *current_jg; + long i; + LINES *lines; + LINES *line_ptr; + long num_lines; + long num_qid, num_jg; + /* current pointers into static pools above */ + REL_INFO *rel_info_ptr; + TEXT_QRELS_JG_INFO *text_jg_info_ptr; + TEXT_QRELS_JG *text_jg_ptr; + TEXT_QRELS *text_qrels_ptr; + + /* Read entire file into memory */ + if (-1 == (fd = open (text_qrels_file, 0)) || + 0 >= (size = lseek (fd, 0L, 2)) || + NULL == (trec_qrels_buf = malloc ((unsigned) size+2)) || + -1 == lseek (fd, 0L, 0) || + size != read (fd, trec_qrels_buf, size) || + -1 == close (fd)) { + fprintf (stderr, + "trec_eval.get_qrels: Cannot read qrels file '%s'\n", + text_qrels_file); + return (UNDEF); + } + + /* Append ending newline if not present, Append NULL terminator */ + if (trec_qrels_buf[size-1] != '\n') { + trec_qrels_buf[size] = '\n'; + size++; + } + trec_qrels_buf[size] = '\0'; + + /* Count number of lines in file */ + num_lines = 0; + for (ptr = trec_qrels_buf; *ptr; ptr = index(ptr,'\n') + 1) + num_lines++; + + /* Get all lines */ + if (NULL == (lines = Malloc (num_lines, LINES))) + return (UNDEF); + line_ptr = lines; + ptr = trec_qrels_buf; + while (*ptr) { + if (UNDEF == parse_qrels_line (&ptr, &line_ptr->qid, &line_ptr->jg, + &line_ptr->docno, &line_ptr->rel)) { + fprintf (stderr, "trec_eval.get_qrels_jg: Malformed line %ld\n", + (long) (line_ptr - lines + 1)); + return (UNDEF); + } + line_ptr++; + } + num_lines = line_ptr-lines; + + /* Sort all lines by qid, then jg, then docno */ + qsort ((char *) lines, + (int) num_lines, + sizeof (LINES), + comp_lines_qid_jg_docno); + + /* Go through lines and count number of qid, jg. check for duplicate docno*/ + num_qid = 1; num_jg = 1; + for (i = 1; i < num_lines; i++) { + if (strcmp (lines[i-1].qid, lines[i].qid)) { + /* New query */ + num_qid++; + num_jg++; + } + else if (strcmp (lines[i-1].jg, lines[i].jg)) { + /* New jg within current_query */ + num_jg++; + } + else if (0 == strcmp (lines[i-1].docno, lines[i].docno)) { + fprintf (stderr, "trec_eval.get_qrels: duplicate docs %s\n", + lines[i].docno); + return (UNDEF); + } + } + + /* Allocate space for queries and jgs */ + if (NULL == (rel_info_pool = Malloc (num_qid, REL_INFO)) || + NULL == (text_jg_info_pool = Malloc (num_qid, TEXT_QRELS_JG_INFO)) || + NULL == (text_jg_pool = Malloc (num_jg, TEXT_QRELS_JG)) || + NULL == (text_qrels_pool = Malloc (num_lines, TEXT_QRELS))) + return (UNDEF); + + rel_info_ptr = rel_info_pool; + text_jg_info_ptr = text_jg_info_pool; + text_jg_ptr = text_jg_pool; + text_qrels_ptr = text_qrels_pool; + + /* Go through lines and store all info */ + current_qid = ""; current_jg = ""; + for (i = 0; i < num_lines; i++) { + if (strcmp (current_qid, lines[i].qid)) { + /* New query. End old query and start new one */ + if (i != 0) { + text_jg_info_ptr->num_text_qrels_jg = + text_jg_ptr - text_jg_info_ptr->text_qrels_jg + 1; + text_jg_info_ptr++; + rel_info_ptr++; + text_jg_ptr->num_text_qrels = + text_qrels_ptr - text_jg_ptr->text_qrels; + text_jg_ptr++; + } + current_qid = lines[i].qid; + text_jg_info_ptr->text_qrels_jg = text_jg_ptr; + *rel_info_ptr = + (REL_INFO) {current_qid, "qrels_jg", text_jg_info_ptr}; + current_jg = lines[i].jg; + text_jg_ptr->text_qrels = text_qrels_ptr; + } + else if (strcmp (current_jg, lines[i].jg)) { + /* New jg. End old jg and start new one */ + if (i != 0) { + text_jg_ptr->num_text_qrels = + text_qrels_ptr - text_jg_ptr->text_qrels; + text_jg_ptr++; + } + current_jg = lines[i].jg; + text_jg_ptr->text_qrels = text_qrels_ptr; + } + text_qrels_ptr->docno = lines[i].docno; + text_qrels_ptr->rel = atol (lines[i].rel); + text_qrels_ptr++; + } + /* End last qid and jg */ + text_jg_info_ptr->num_text_qrels_jg = + text_jg_ptr - text_jg_info_ptr->text_qrels_jg + 1; + text_jg_ptr->num_text_qrels = text_qrels_ptr - text_jg_ptr->text_qrels; + + all_rel_info->num_q_rels = num_qid; + all_rel_info->rel_info = rel_info_pool; + Free (lines); + return (1); +} + +static int comp_lines_qid_jg_docno (LINES *ptr1, LINES *ptr2) +{ + int cmp = strcmp (ptr1->qid, ptr2->qid); + if (cmp) return (cmp); + cmp = strcmp (ptr1->jg, ptr2->jg); + if (cmp) return (cmp); + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +parse_qrels_line (char **start_ptr, char **qid_ptr, char **jg_ptr, + char **docno_ptr, char **rel_ptr) +{ + char *ptr = *start_ptr; + + /* Get qid */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *qid_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get jg */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *jg_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get docno */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *docno_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get relevance */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *rel_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr != '\n') { + *ptr++ = '\0'; + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr != '\n') return (UNDEF); + } + *ptr++ = '\0'; + *start_ptr = ptr; + return (0); +} + +int +te_get_qrels_jg_cleanup () +{ + if (trec_qrels_buf != NULL) { + Free (trec_qrels_buf); + trec_qrels_buf = NULL; + } + if (text_jg_info_pool != NULL) { + Free (text_jg_info_pool); + text_jg_info_pool = NULL; + } + if (text_jg_pool != NULL) { + Free (text_jg_pool); + text_jg_pool = NULL; + } + if (text_qrels_pool != NULL) { + Free (text_qrels_pool); + text_qrels_pool = NULL; + } + if (rel_info_pool != NULL) { + Free (rel_info_pool); + rel_info_pool = NULL; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/get_qrels_prefs.c b/tools/eval/trec_eval.9.0.4/get_qrels_prefs.c new file mode 100644 index 0000000000000000000000000000000000000000..5ffd7ca6e7a393c9ee9d565f096967957c92050c --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/get_qrels_prefs.c @@ -0,0 +1,289 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include + + +/* Exactly the same as get_prefs.c except it reads a standard + TREC qrels file as if it were a prefs file, associating + JG with the iter field, and assigning JSG a constant '0' + for all lines. This normally will yield a single JG and + a single JSG per query, with two levels of relevance if + it is a binary relevance file, and more if a multiple + relevance file. + +Read all relevance preference information from text_qrels_prefs_file. +Preferences of user(s) for docs for a given qid is determined from +text_prefs_file, which consists of text tuples of the form + qid ujg docno rel_level +giving TREC document numbers (docno, a string) and their relevance +level (rel_level,a non-negative float) to query qid (a string) for a + user judgment group (ujg, a string). +Fields are separated by whitespace, string fields can contain no whitespace. +File may contain no NULL characters. + +Preferences are indicated indirectly by comparing rel_level of +different docnos within the same user judgment group(JG). A +judgment group establishes preferences between all docnos with +non-tied rel_levels within the group. Except possibly for 0.0, the +actual values of rel_level are ignored by default; they only serve to +establish a ranking within the JSG. + +If a user only expresses a preference between two docs, then that user JSG +will have 2 lines in text_prefs_file: + qid1 ujg1 docno1 3.0 + qid1 ujg1 docno2 2.0 + +If a user completely ranks some small number N (5-10) of docs, then N lines +are used. +For example: + qid1 ujg1 docno1 3.0 + qid1 ujg1 docno2 2.0 + qid1 ujg1 docno3 0.0 + qid1 ujg1 docno4 6.0 + qid1 ujg1 docno5 0.0 + qid1 ujg1 docno6 2.0 +establishes a total of 13 preferences (5 with docno4 preferred, 4 with docno1 +preferred, 2 each with docno2 and docno6 preferred). + +A Judgment Group (JG) conceptually represents preferences for a single +information need of a user at a single time. Within a single JG, it +is an error if there are inconsistencies (doc A > doc B in one JSG, +but B > A or B == A in another). + +Different JGs may contain contradictory preferences, These +disagreements are realistic and desirable: users (or even the same +user at different times) often do not agree with each other's +preferences. Individual preference evaluation measures will handle +these contradictions (or confirmations) in different ways. + +A rel_level of 0.0 by convention means that doc is non-relevant to the +topic (in that user's opinion). Some preference evaluation measures +may handle 0.0 differently. Thus when converting a preference file in +some other format into text_prefs format, do not assign a rel_level of +0.0 to a docno unless it is known that docno was considered +nonrelevant. + +Handling of rel_level 0.0 separately addresses the general problem +that the number of nonrelevant docs judged for a topic can be critical +to fair evaluation - adding a couple of hundred preferences involving +nonrelevant docs (out of the possibly millions or billions in a +collection) can both change the importance of the topic when averaging +and even change whether system A scores better than system B on a +topic (even given identical retrieval on the added nonrel docs). How +to handle this correctly for preference evaluation will be an +important future research problem. + +*/ + +static int parse_qrels_prefs_line (char **start_ptr, char **qid_ptr, + char **jg_ptr, char **docno_ptr, + char **rel_ptr); + +static int comp_lines_qid_docno (); + + +/* static pools of memory, allocated here and never changed. + Declared static so one day I can write a cleanup procedure to free them */ +static char *trec_prefs_buf = NULL; +static TEXT_PREFS_INFO *text_info_pool = NULL; +static TEXT_PREFS *text_prefs_pool = NULL; +static REL_INFO *rel_info_pool = NULL; + +/* Temp structure for values in input line */ +typedef struct { + char *qid; + char *jg; + char *docno; + char *rel; +} LINES; + +int +te_get_qrels_prefs (EPI *epi, char *text_prefs_file, ALL_REL_INFO *all_rel_info) +{ + int fd; + int size = 0; + char *ptr; + char *current_qid; + long i; + LINES *lines; + LINES *line_ptr; + long num_lines; + long num_qid; + /* current pointers into static pools above */ + REL_INFO *rel_info_ptr; + TEXT_PREFS_INFO *text_info_ptr; + TEXT_PREFS *text_prefs_ptr; + + /* Read entire file into memory */ + if (-1 == (fd = open (text_prefs_file, 0)) || + 0 >= (size = lseek (fd, 0L, 2)) || + NULL == (trec_prefs_buf = malloc ((unsigned) size+2)) || + -1 == lseek (fd, 0L, 0) || + size != read (fd, trec_prefs_buf, size) || + -1 == close (fd)) { + fprintf (stderr, + "trec_eval.get_prefs: Cannot read prefs file '%s'\n", + text_prefs_file); + return (UNDEF); + } + + /* Append ending newline if not present, Append NULL terminator */ + if (trec_prefs_buf[size-1] != '\n') { + trec_prefs_buf[size] = '\n'; + size++; + } + trec_prefs_buf[size] = '\0'; + + /* Count number of lines in file */ + num_lines = 0; + for (ptr = trec_prefs_buf; *ptr; ptr = index(ptr,'\n')+1) + num_lines++; + + /* Get all lines */ + if (NULL == (lines = Malloc (num_lines, LINES))) + return (UNDEF); + line_ptr = lines; + ptr = trec_prefs_buf; + while (*ptr) { + if (UNDEF == parse_qrels_prefs_line (&ptr, &line_ptr->qid,&line_ptr->jg, + &line_ptr->docno, &line_ptr->rel)){ + fprintf (stderr, "trec_eval.get_qrels_prefs: Malformed line %ld\n", + (long) (line_ptr - lines + 1)); + return (UNDEF); + } + line_ptr++; + } + num_lines = line_ptr-lines; + + /* Sort all lines by qid, then docno */ + qsort ((char *) lines, + (int) num_lines, + sizeof (LINES), + comp_lines_qid_docno); + + /* Go through lines and count number of qid */ + num_qid = 1; + for (i = 1; i < num_lines; i++) { + if (strcmp (lines[i-1].qid, lines[i].qid)) + /* New query */ + num_qid++; + } + + /* Allocate space for queries */ + if (NULL == (rel_info_pool = Malloc (num_qid, REL_INFO)) || + NULL == (text_info_pool = Malloc (num_qid, TEXT_PREFS_INFO)) || + NULL == (text_prefs_pool = Malloc (num_lines, TEXT_PREFS))) + return (UNDEF); + + rel_info_ptr = rel_info_pool; + text_info_ptr = text_info_pool; + text_prefs_ptr = text_prefs_pool; + + /* Go through lines and store all info */ + current_qid = ""; + for (i = 0; i < num_lines; i++) { + if (strcmp (current_qid, lines[i].qid)) { + /* New query. End old query and start new one */ + if (i != 0) { + text_info_ptr->num_text_prefs = + text_prefs_ptr - text_info_ptr->text_prefs; + text_info_ptr++; + rel_info_ptr++; + } + current_qid = lines[i].qid; + text_info_ptr->text_prefs = text_prefs_ptr; + *rel_info_ptr = + (REL_INFO) {current_qid, "prefs", text_info_ptr}; + } + text_prefs_ptr->jg = lines[i].jg; + text_prefs_ptr->jsg = "0"; + text_prefs_ptr->rel_level = atof (lines[i].rel); + text_prefs_ptr->docno = lines[i].docno; + text_prefs_ptr++; + } + /* End last qid */ + text_info_ptr->num_text_prefs = text_prefs_ptr - text_info_ptr->text_prefs; + + all_rel_info->num_q_rels = num_qid; + all_rel_info->rel_info = rel_info_pool; + + Free (lines); + return (1); +} + +static int comp_lines_qid_docno (LINES *ptr1, LINES *ptr2) +{ + int cmp = strcmp (ptr1->qid, ptr2->qid); + if (cmp) return (cmp); + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +parse_qrels_prefs_line (char **start_ptr, char **qid_ptr, char**jg_ptr, + char **docno_ptr, char **rel_ptr) +{ + char *ptr = *start_ptr; + + /* Get qid */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *qid_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get Judgment Group */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *jg_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get docno */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *docno_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get relevance */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *rel_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr != '\n') { + *ptr++ = '\0'; + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr != '\n') return (UNDEF); + } + *ptr++ = '\0'; + *start_ptr = ptr; + return (0); +} + +int +te_get_qrels_prefs_cleanup () +{ + if (trec_prefs_buf != NULL) { + Free (trec_prefs_buf); + trec_prefs_buf = NULL; + } + if (text_info_pool != NULL) { + Free (text_info_pool); + text_info_pool = NULL; + } + if (text_prefs_pool != NULL) { + Free (text_prefs_pool); + text_prefs_pool = NULL; + } + if (rel_info_pool != NULL) { + Free (rel_info_pool); + rel_info_pool = NULL; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/get_trec_results.c b/tools/eval/trec_eval.9.0.4/get_trec_results.c new file mode 100644 index 0000000000000000000000000000000000000000..b1397480fc62d95d3867d928b62ffdfd77c9a48b --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/get_trec_results.c @@ -0,0 +1,267 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include +#include + +/* Read all retrieved results information from trec_results_file. +Read text tuples from trec_results_file of the form + 030 Q0 ZF08-175-870 0 4238 prise1 + qid iter docno rank sim run_id +giving TREC document numbers (a string) retrieved by query qid +(a string) with similarity sim (a float). The other fields are ignored, +with the exception that the run_id field of the last line is kept and +output. In particular, note that the rank field is ignored here; +internally ranks will be assigned by sorting by the sim field with ties +broken determinstically (using docno). +Sim is assumed to be higher for the docs to be retrieved first. +File may contain no NULL characters. +Any field following run_id is ignored. +The runid is stored, but only from the last content line of the file (no +check is made that it is consistent throughout). +*/ + +/* Temp structure for values in input line */ +typedef struct { + char *qid; + char *docno; + char *sim; +} LINES; + +static int parse_results_line (char **start_ptr, char **qid_ptr, + char **docno_ptr, char **sim_ptr, + char **run_id_ptr); + +static int comp_lines_qid_docno (); + + +/* static pools of memory, allocated here and never changed. + Declared static so one day I can write a cleanup procedure to free them */ +static char *trec_results_buf = NULL; +static TEXT_RESULTS_INFO *text_info_pool = NULL; +static TEXT_RESULTS *text_results_pool = NULL; +static RESULTS *q_results_pool = NULL; + +int +te_get_trec_results (EPI *epi, char *text_results_file, + ALL_RESULTS *all_results) +{ + int fd; + char *orig_buf; + size_t size = 0; + char *ptr; + char *current_qid; + long i; + LINES *lines; + LINES *line_ptr; + size_t num_lines; + long num_qid; + char *run_id_ptr = NULL; + /* current pointers into static pools above */ + RESULTS *q_results_ptr; + TEXT_RESULTS_INFO *text_info_ptr; + TEXT_RESULTS *text_results_ptr; + + /* mmap entire file into memory and copy it into writable memory */ + if (-1 == (fd = open (text_results_file, 0)) || + 0 >= (size = lseek (fd, 0L, 2)) || + (char *) -1 == (orig_buf = (char *) mmap ((caddr_t) 0, + (size_t) size, + PROT_READ, + MAP_SHARED, + fd, + (off_t) 0))) { + fprintf (stderr, + "trec_eval.get_results: Cannot read results file '%s'\n", + text_results_file); + return (UNDEF); + } + if (NULL == (trec_results_buf = malloc ((size_t) size+2))) { + fprintf (stderr, + "trec_eval.get_results: Cannot copy results file '%s'\n", + text_results_file); + return (UNDEF); + } + (void) memcpy (trec_results_buf, orig_buf, size); + if (-1 == munmap (orig_buf, size) || + -1 == close (fd)) { + fprintf (stderr, + "trec_eval.get_results: Cannot close results file '%s'\n", + text_results_file); + return (UNDEF); + } + + /* Append ending newline if not present, Append NULL terminator */ + if (trec_results_buf[size-1] != '\n') { + trec_results_buf[size] = '\n'; + size++; + } + trec_results_buf[size] = '\0'; + + /* Count number of lines in file */ + num_lines = 0; + for (ptr = trec_results_buf; *ptr; ptr = index(ptr,'\n')+1) + num_lines++; + + /* Get all lines */ + if (NULL == (lines = Malloc (num_lines, LINES))) + return (UNDEF); + line_ptr = lines; + ptr = trec_results_buf; + while (*ptr) { + /* Get current line */ + /* Ignore blank lines (people seem to insist on them!) */ + while (*ptr && *ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') { + ptr++; + continue; + } + if (UNDEF == parse_results_line (&ptr, &line_ptr->qid,&line_ptr->docno, + &line_ptr->sim, &run_id_ptr)) { + fprintf (stderr, "trec_eval.get_results: Malformed line %ld\n", + (long) (line_ptr - lines + 1)); + return (UNDEF); + } + line_ptr++; + } + num_lines = line_ptr-lines; + + /* Sort all lines by qid, then docno */ + qsort ((char *) lines, + (int) num_lines, + sizeof (LINES), + comp_lines_qid_docno); + + /* Go through lines and count number of qid */ + num_qid = 1; + for (i = 1; i < num_lines; i++) { + if (strcmp (lines[i-1].qid, lines[i].qid)) + /* New query */ + num_qid++; + } + + /* Allocate space for queries */ + if (NULL == (q_results_pool = Malloc (num_qid, RESULTS)) || + NULL == (text_info_pool = Malloc (num_qid, TEXT_RESULTS_INFO)) || + NULL == (text_results_pool = Malloc (num_lines, TEXT_RESULTS))) + return (UNDEF); + + q_results_ptr = q_results_pool; + text_info_ptr = text_info_pool; + text_results_ptr = text_results_pool; + + /* Go through lines and store all info */ + current_qid = ""; + for (i = 0; i < num_lines; i++) { + if (strcmp (current_qid, lines[i].qid)) { + /* New query. End old query and start new one */ + if (i != 0) { + text_info_ptr->num_text_results = + text_results_ptr - text_info_ptr->text_results; + text_info_ptr++; + q_results_ptr++; + } + current_qid = lines[i].qid; + text_info_ptr->text_results = text_results_ptr; + *q_results_ptr = + (RESULTS) {current_qid, run_id_ptr, "trec_results", + text_info_ptr}; + } + text_results_ptr->docno = lines[i].docno; + text_results_ptr->sim = atof (lines[i].sim); + text_results_ptr++; + } + /* End last qid */ + text_info_ptr->num_text_results = + text_results_ptr - text_info_ptr->text_results; + + all_results->num_q_results = num_qid; + all_results->results = q_results_pool; + + Free (lines); + return (1); +} + +static int comp_lines_qid_docno (LINES *ptr1, LINES *ptr2) +{ + int cmp = strcmp (ptr1->qid, ptr2->qid); + if (cmp) return (cmp); + return (strcmp (ptr1->docno, ptr2->docno)); +} + +static int +parse_results_line (char **start_ptr, char **qid_ptr, char **docno_ptr, + char **sim_ptr, char **run_id_ptr) +{ + char *ptr = *start_ptr; + + /* Get qid */ + *qid_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Skip iter */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + while (! isspace (*ptr)) ptr++; + if (*ptr++ == '\n') return (UNDEF); + /* Get docno */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *docno_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Skip rank */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + while (! isspace (*ptr)) ptr++; + if (*ptr++ == '\n') return (UNDEF); + /* Get sim */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *sim_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n')return (UNDEF); + *ptr++ = '\0'; + /* Get run_id */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *run_id_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr != '\n') { + /* Skip over rest of line */ + *ptr++ = '\0'; + while (*ptr != '\n') ptr++; + } + *ptr++ = '\0'; + *start_ptr = ptr; + return (0); +} + +int +te_get_trec_results_cleanup () +{ + if (trec_results_buf != NULL) { + Free (trec_results_buf); + trec_results_buf = NULL; + } + if (text_info_pool != NULL) { + Free (text_info_pool); + text_info_pool = NULL; + } + if (text_results_pool != NULL) { + Free (text_results_pool); + text_results_pool = NULL; + } + if (q_results_pool != NULL) { + Free (q_results_pool); + q_results_pool = NULL; + } + return (1); +} + diff --git a/tools/eval/trec_eval.9.0.4/get_zscores.c b/tools/eval/trec_eval.9.0.4/get_zscores.c new file mode 100644 index 0000000000000000000000000000000000000000..32bd3030ce189cea2b2039bdab2d55c9483c2afc --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/get_zscores.c @@ -0,0 +1,238 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "trec_format.h" +#include + + +/* Read a Zscore file containing means and stddev from a reference set of runs +for each measure and qid to be calculated. +Format of Zscore file is + qid measure_name mean stddev +where measure_name and qid are strings, and mean and stddev are doubles. + +Fields are separated by whitespace, string fields can contain no whitespace. +File may contain no NULL characters. + +All values are stored in per query arrays within Zscores. +Each list of query judgments is sorted lexicographically by docno. +*/ + +/* Declarations in trec_eval.h (generic q info) for the input format */ +/* + typedef struct { + char *meas; + double mean; + double stddev; + } ZSCORE_QID; + typedef struct { + char *qid; + long num_zscores; + ZSCORE_QID *zscores; + } ZSCORES; + typedef struct { + long num_q_zscores; + ZSCORES *q_zscores; + } ALL_ZSCORES; +*/ + +/* Temp structure for values in input line */ +typedef struct { + char *qid; + char *meas; + char *mean; + char *stddev; +} LINES; + +static int parse_zscore_line (char **start_ptr, char **qid_ptr, char **meas_ptr, + char **mean_ptr, char **stddev_ptr); + +static int comp_lines_qid_meas (); + + +/* static pools of memory, allocated here and never changed. */ +static char *trec_zscores_buf = NULL; +static ZSCORE_QID *text_zscores_pool = NULL; +static ZSCORES *zscores_pool = NULL; + +int +te_get_zscores (const EPI *epi, const char *zscores_file, + ALL_ZSCORES *all_zscores) +{ + int fd; + int size = 0; + char *ptr; + char *current_qid; + long i; + LINES *lines; + LINES *line_ptr; + long num_lines; + long num_qid; + /* current pointers into static pools above */ + ZSCORE_QID *text_zscores_ptr; + ZSCORES *zscores_ptr; + + /* Read entire file into memory */ + if (-1 == (fd = open (zscores_file, 0)) || + 0 >= (size = lseek (fd, 0L, 2)) || + NULL == (trec_zscores_buf = malloc ((unsigned) size+2)) || + -1 == lseek (fd, 0L, 0) || + size != read (fd, trec_zscores_buf, size) || + -1 == close (fd)) { + fprintf (stderr, + "trec_eval.get_zscores: Cannot read zscores file '%s'\n", + zscores_file); + return (UNDEF); + } + + /* Append ending newline if not present, Append NULL terminator */ + if (trec_zscores_buf[size-1] != '\n') { + trec_zscores_buf[size] = '\n'; + size++; + } + trec_zscores_buf[size] = '\0'; + + /* Count number of lines in file */ + num_lines = 0; + for (ptr = trec_zscores_buf; *ptr; ptr = index(ptr,'\n')+1) + num_lines++; + + /* Get all lines */ + if (NULL == (lines = Malloc (num_lines, LINES))) + return (UNDEF); + line_ptr = lines; + ptr = trec_zscores_buf; + while (*ptr) { + if (UNDEF == parse_zscore_line (&ptr, &line_ptr->qid, &line_ptr->meas, + &line_ptr->mean, &line_ptr->stddev)) { + fprintf (stderr, "trec_eval.get_zscores: Malformed line %ld\n", + (long) (line_ptr - lines + 1)); + return (UNDEF); + } + line_ptr++; + } + num_lines = line_ptr-lines; + + /* Sort all lines by qid, then meas */ + qsort ((char *) lines, + (int) num_lines, + sizeof (LINES), + comp_lines_qid_meas); + + /* Go through lines and count number of qid */ + num_qid = 1; + for (i = 1; i < num_lines; i++) { + if (strcmp (lines[i-1].qid, lines[i].qid)) + /* New query */ + num_qid++; + } + + /* Allocate space for queries */ + if (NULL == (zscores_pool = Malloc (num_qid, ZSCORES)) || + NULL == (text_zscores_pool = Malloc (num_lines, ZSCORE_QID))) + return (UNDEF); + + zscores_ptr = zscores_pool; + text_zscores_ptr = text_zscores_pool; + + /* Go through lines and store all info */ + current_qid = ""; + for (i = 0; i < num_lines; i++) { + if (strcmp (current_qid, lines[i].qid)) { + /* New query. End old query and start new one */ + if (i != 0) { + zscores_ptr->num_zscores = + text_zscores_ptr - zscores_ptr->zscores; + zscores_ptr++; + } + current_qid = lines[i].qid; + zscores_ptr->qid = current_qid; + zscores_ptr->zscores = text_zscores_ptr; + } + text_zscores_ptr->meas = lines[i].meas; + text_zscores_ptr->mean = atof (lines[i].mean); + text_zscores_ptr->stddev = atof (lines[i].stddev); + text_zscores_ptr++; + } + /* End last qid */ + zscores_ptr->num_zscores = text_zscores_ptr - zscores_ptr->zscores; + + all_zscores->num_q_zscores = num_qid; + all_zscores->q_zscores = zscores_pool; + + Free (lines); + return (1); +} + +static int comp_lines_qid_meas (LINES *ptr1, LINES *ptr2) +{ + int cmp = strcmp (ptr1->qid, ptr2->qid); + if (cmp) return (cmp); + return (strcmp (ptr1->meas, ptr2->meas)); +} + +static int +parse_zscore_line (char **start_ptr, char **qid_ptr, char **meas_ptr, + char **mean_ptr, char **stddev_ptr) +{ + char *ptr = *start_ptr; + + /* Get qid */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *qid_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get meas */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *meas_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get mean */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + *mean_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *ptr++ = '\0'; + /* Get stddev */ + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr == '\n') return (UNDEF); + *stddev_ptr = ptr; + while (! isspace (*ptr)) ptr++; + if (*ptr != '\n') { + *ptr++ = '\0'; + while (*ptr != '\n' && isspace (*ptr)) ptr++; + if (*ptr != '\n') return (UNDEF); + } + *ptr++ = '\0'; + *start_ptr = ptr; + return (0); +} + + +int +te_get_zscores_cleanup () +{ + if (trec_zscores_buf != NULL) { + Free (trec_zscores_buf); + trec_zscores_buf = NULL; + } + if (text_zscores_pool != NULL) { + Free (text_zscores_pool); + text_zscores_pool = NULL; + } + if (zscores_pool != NULL) { + Free (zscores_pool); + zscores_pool = NULL; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_11pt_avg.c b/tools/eval/trec_eval.9.0.4/m_11pt_avg.c new file mode 100644 index 0000000000000000000000000000000000000000..d20e312f351ea358820639305fa136da3cb7c5c0 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_11pt_avg.c @@ -0,0 +1,109 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_11ptavg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static double float_cutoff_array[] = { + 0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0}; +static PARAMS default_11ptavg_cutoffs = { + NULL, sizeof (float_cutoff_array) / sizeof (float_cutoff_array[0]), + &float_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_11pt_avg = + {"11pt_avg", + " Interpolated Precision averaged over 11 recall points\n\ + Obsolete, only use for comparisons of old runs; should use map instead.\n\ + Average interpolated at the given recall points - default is the\n\ + 11 points being reported for ircl_prn.\n\ + Both map and 11-pt_avg (and even R-prec) can be regarded as estimates of\n\ + the area under the standard ircl_prn curve.\n\ + Warning: name assumes user does not change default parameter values:\n\ + measure name is independent of parameter values and number of parameters.\n\ + Will actually average over all parameter values given.\n\ + To get 3-pt_avg as in trec_eval version 8 and earlier, use\n\ + trec_eval -m 11-pt_avg.0.2,0.5,0.8 ...\n\ + Default usage: -m 11-pt_avg.0.0,.1,.2,.3,.4,.5,.6,.7,.8..9,1.0\n", + te_init_meas_s_float_p_float, + te_calc_11ptavg, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + &default_11ptavg_cutoffs, -1}; + +static int +te_calc_11ptavg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + double *cutoff_percents = (double *) tm->meas_params->param_values; + long *cutoffs; /* cutoffs expressed in num rel docs instead of percents*/ + long current_cut; /* current index into cutoffs */ + RES_RELS rr; + long rel_so_far; + long i; + double precis, int_precis; + double sum = 0.0; + + if (0 == tm->meas_params->num_params) { + fprintf (stderr, "trec_eval.calc_m_11ptavg: No cutoff values\n"); + return (UNDEF); + } + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &rr)) + return (UNDEF); + + /* translate percentage of rels as given in the measure params, to + an actual cutoff number of docs. Note addition of 0.9 + means the default 11 percentages should have same cutoffs as + historical MAP implementations (eg, old trec_eval) */ + if (NULL == (cutoffs = Malloc (tm->meas_params->num_params, long))) + return (UNDEF); + for (i = 0; i < tm->meas_params->num_params; i++) + cutoffs[i] = (long) (cutoff_percents[i] * rr.num_rel+0.9); + + current_cut = tm->meas_params->num_params - 1; + while (current_cut >= 0 && cutoffs[current_cut] > rr.num_rel_ret) + current_cut--; + + /* Loop over all retrieved docs in reverse order. Needs to be + reverse order since are calcualting interpolated precision. + Int_Prec (X) defined to be MAX (Prec (Y)) for all Y >= X. */ + precis = (double) rr.num_rel_ret / (double) rr.num_ret; + int_precis = precis; + rel_so_far = rr.num_rel_ret; + for (i = rr.num_ret; i > 0 && rel_so_far > 0; i--) { + precis = (double) rel_so_far / (double) i; + if (int_precis < precis) + int_precis = precis; + if (rr.results_rel_list[i-1] >= epi->relevance_level) { + while (current_cut >= 0 && rel_so_far == cutoffs[current_cut]) { + sum += int_precis; + current_cut--; + } + rel_so_far--; + } + } + + while (current_cut >= 0) { + sum += int_precis; + current_cut--; + } + + eval->values[tm->eval_index].value = + sum / (double) tm->meas_params->num_params; + (void) Free (cutoffs); + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_G.c b/tools/eval/trec_eval.9.0.4/m_G.c new file mode 100644 index 0000000000000000000000000000000000000000..a55106316ec9c0ae7c623b5b1e054066af2d0abe --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_G.c @@ -0,0 +1,235 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_G (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static PARAMS default_G_gains = { NULL, 0, NULL}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_G = + {"G", + " Normalized Gain\n\ + Experimental measure 4/10/2008\n\ + G is a gain related measure that combines qualities of MAP and NDCG.\n\ + Contribution of doc doc retrieved at rank i is \n\ + G(doc) == gain (doc) / log2 (2+ideal_gain(i)-results_gain(i))\n\ + where results_gain(i) is sum gain(doc) for all docs before i\n\ + and ideal_gain is the maximum possible results_gain(i)\n\ + G is the sum of G(doc) over all docs, normalized by max ideal_gain.\n\ + Gain values are set to the appropriate relevance level by default. \n\ + The default gain can be overridden on the command line by having \n\ + comma separated parameters 'rel_level=gain'.\n\ + Eg, 'trec_eval -m G.1=3.5,2=9.0,4=7.0 ...'\n\ + will give gains 3.5, 9.0, 3.0, 7.0 for relevance levels 1,2,3,4\n\ + respectively (level 3 remains at the default).\n\ + Gains are allowed to be 0 or negative, and relevance level 0\n\ + can be given a gain.\n\ + The idea behind G is that the contribution of a doc retrieved at i\n\ + should not be independent of the docs before. If most docs before have\n\ + higher gain, then the retrieval of this doc at i is nearly as good as \n\ + possible, and should be rewarded appropriately\n", + te_init_meas_s_float_p_pair, + te_calc_G, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + &default_G_gains, -1}; + +/* Keep track of valid rel_levels and associated gains */ +/* Initialized in setup_gains */ +typedef struct { + long rel_level; + long num_at_level; + double gain; +} REL_GAIN; + +typedef struct { + REL_GAIN *rel_gains; + long num_gains; + long total_num_at_levels; +} GAINS; + +static int setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, + GAINS *gains); +static double get_gain (const long rel_level, const GAINS *gains); +static int comp_rel_gain (); + +static int +te_calc_G (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double results_gain, sum_results; + double ideal_gain, sum_ideal; + double sum_cost, min_cost; + double results_g; + long cur_level, num_at_level; + long i; + GAINS gains; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (UNDEF == setup_gains (tm, &res_rels, &gains)) + return (UNDEF); + + results_g = 0.0; + sum_results = 0.0; + sum_ideal = 0.0; + sum_cost = 0.0; + cur_level = gains.num_gains - 1; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain : 0.0; + num_at_level = 0; + min_cost = 1.0; + + for (i = 0; i < res_rels.num_ret && ideal_gain > 0.0; i++) { + /* Calculate change in actual results */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + sum_results += results_gain; + /* Calculate change in ideal results */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + if (ideal_gain > 0.0) + sum_ideal += ideal_gain; + if (ideal_gain >= min_cost) + sum_cost += ideal_gain; + else + sum_cost += min_cost; + + /* Calculate G */ + if (results_gain != 0) + results_g += results_gain / + log2((double) (2 + sum_cost - sum_results)); + + if (epi->debug_level > 0) + printf("G: %ld %ld %3.1f %6.4f %3.1f %6.4f %6.4f %6.4f\n", + i, cur_level, results_gain, sum_results, + ideal_gain, sum_ideal, sum_cost, results_g); + } + while (i < res_rels.num_ret) { + /* Calculate change in results gain */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + sum_results += results_gain; + sum_cost += min_cost; + if (results_gain != 0) + results_g += results_gain / + log2((double) (2 + sum_cost - sum_results)); + if (epi->debug_level > 0) + printf("G: %ld %ld %3.1f %6.4f %3.1f %6.4f %6.4f\n", + i, cur_level, results_gain, sum_results, 0.0, + sum_ideal, results_g); + i++; + } + while (ideal_gain > 0.0) { + /* Calculate change in ideal results gain*/ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + if (ideal_gain > 0.0) + sum_ideal += ideal_gain; + if (epi->debug_level > 0) + printf("G: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, 0.0, sum_results, + ideal_gain, sum_ideal); + i++; + } + + /* Compare sum to ideal G */ + if (sum_ideal > 0.0) { + eval->values[tm->eval_index].value = results_g / sum_ideal; + } + + Free (gains.rel_gains); + return (1); +} + +static int +setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, GAINS *gains) +{ + FLOAT_PARAM_PAIR *pairs = NULL; + long num_pairs = 0; + long i,j; + long num_gains; + + if (tm->meas_params) { + pairs = (FLOAT_PARAM_PAIR *) tm->meas_params->param_values; + num_pairs = tm->meas_params->num_params; + } + + if (NULL == (gains->rel_gains = Malloc(res_rels->num_rel_levels + num_pairs, + REL_GAIN))) + return (UNDEF); + num_gains = 0; + for (i = 0; i < num_pairs; i++) { + gains->rel_gains[num_gains].rel_level = atol (pairs[i].name); + gains->rel_gains[num_gains].gain = (double) pairs[i].value; + gains->rel_gains[num_gains].num_at_level = 0; + num_gains++; + } + + for (i = 0; i < res_rels->num_rel_levels; i++) { + for (j = 0; j < num_gains && gains->rel_gains[j].rel_level != i; j++) + ; + if (j < num_gains) + /* Was included in list of parameters. Update occurrence info */ + gains->rel_gains[j].num_at_level = res_rels->rel_levels[i]; + else { + /* Not included in list of parameters. New gain level */ + gains->rel_gains[num_gains].rel_level = i; + gains->rel_gains[num_gains].gain = (double) i; + gains->rel_gains[num_gains].num_at_level = res_rels->rel_levels[i]; + num_gains++; + } + } + + /* Sort gains by increasing gain value */ + qsort ((char *) gains->rel_gains, + (int) num_gains, + sizeof (REL_GAIN), + comp_rel_gain); + + gains->total_num_at_levels = 0; + for (i = 0; i < num_gains; i++) + gains->total_num_at_levels += gains->rel_gains[i].num_at_level; + + gains->num_gains = num_gains; + return (1); +} + +static int comp_rel_gain (REL_GAIN *ptr1, REL_GAIN *ptr2) +{ + return (ptr1->gain - ptr2->gain); +} + +static double +get_gain (const long rel_level, const GAINS *gains) +{ + long i; + for (i = 0; i < gains->num_gains; i++) + if (rel_level == gains->rel_gains[i].rel_level) + return (gains->rel_gains[i].gain); + return (0.0); /* Print Error ?? */ +} + diff --git a/tools/eval/trec_eval.9.0.4/m_P.c b/tools/eval/trec_eval.9.0.4/m_P.c new file mode 100644 index 0000000000000000000000000000000000000000..0ea09eaf0193e20e4ef40a48ffe432d6f306af69 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_P.c @@ -0,0 +1,80 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); +static long long_cutoff_array[] = {5, 10, 15, 20, 30, 100, 200, 500, 1000}; +static PARAMS default_P_cutoffs = { + NULL, sizeof (long_cutoff_array) / sizeof (long_cutoff_array[0]), + &long_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_P = + {"P", + " Precision at cutoffs\n\ + Precision measured at various doc level cutoffs in the ranking.\n\ + If the cutoff is larger than the number of docs retrieved, then\n\ + it is assumed nonrelevant docs fill in the rest. Eg, if a method\n\ + retrieves 15 docs of which 4 are relevant, then P20 is 0.2 (4/20).\n\ + Precision is a very nice user oriented measure, and a good comparison\n\ + number for a single topic, but it does not average well. For example,\n\ + P20 has very different expected characteristics if there 300\n\ + total relevant docs for a topic as opposed to 10.\n\ + Note: trec_eval -m P.50 ...\n\ + is different from \n\ + trec_eval -M 50 -m set_P ...\n\ + in that the latter will not fill in with nonrel docs if less than 50\n\ + docs retrieved\n\ + Cutoffs must be positive without duplicates\n\ + Default param: -m P.5,10,15,20,30,100,200,500,1000\n", + te_init_meas_a_float_cut_long, + te_calc_P, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_P_cutoffs, -1}; + +static int +te_calc_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index = 0; + long i; + RES_RELS res_rels; + long rel_so_far = 0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + for (i = 0; i < res_rels.num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note all guaranteed to be positive by init_meas */ + eval->values[tm->eval_index + cutoff_index].value = + (double) rel_so_far / (double) i; + if (++cutoff_index == tm->meas_params->num_params) + break; + } + if (res_rels.results_rel_list[i] >= epi->relevance_level) + rel_so_far++; + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + eval->values[tm->eval_index+cutoff_index].value = + (double) rel_so_far / (double) cutoffs[cutoff_index]; + cutoff_index++; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_P_avgjg.c b/tools/eval/trec_eval.9.0.4/m_P_avgjg.c new file mode 100644 index 0000000000000000000000000000000000000000..e77320541045a9ae209d199ed3337b3eaf8bffc0 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_P_avgjg.c @@ -0,0 +1,85 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_P_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static long long_cutoff_array[] = {5, 10, 15, 20, 30, 100, 200, 500, 1000}; +static PARAMS default_P_avgjg_cutoffs = { + NULL, sizeof (long_cutoff_array) / sizeof (long_cutoff_array[0]), + &long_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_P_avgjg = + {"P_avgjg", + " Precision at cutoffs, averaged over judgment groups (users)\n\ + Precision measured at various doc level cutoffs in the ranking.\n\ + If the cutoff is larger than the number of docs retrieved, then\n\ + it is assumed nonrelevant docs fill in the rest. Eg, if a method\n\ + retrieves 15 docs of which 4 are relevant, then P20 is 0.2 (4/20).\n\ + If there are multiple relevance judgment sets for this query, Precision\n\ + is averaged over the judgment groups.\n\ + Cutoffs must be positive without duplicates\n\ + Default param: trec_eval -m P.5,10,15,20,30,100,200,500,1000\n", + te_init_meas_a_float_cut_long, + te_calc_P_avgjg, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_P_avgjg_cutoffs, -1}; + +static int +te_calc_P_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index; + long i,jg; + RES_RELS_JG rr; + long rel_so_far; + + if (UNDEF == te_form_res_rels_jg (epi, rel_info, results, &rr)) + return (UNDEF); + + for (jg = 0; jg < rr.num_jgs; jg++) { + cutoff_index = 0; + rel_so_far = 0; + for (i = 0; i < rr.jgs[jg].num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note all guaranteed to be positive by init_meas */ + eval->values[tm->eval_index+cutoff_index].value += + (double) rel_so_far / (double) i; + if (++cutoff_index == tm->meas_params->num_params) + break; + } + if (rr.jgs[jg].results_rel_list[i] >= epi->relevance_level) + rel_so_far++; + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + eval->values[tm->eval_index+cutoff_index].value += + (double) rel_so_far/(double) cutoffs[cutoff_index]; + cutoff_index++; + } + } + + if (rr.num_jgs > 1) { + for (cutoff_index = 0; cutoff_index < tm->meas_params->num_params; + cutoff_index++) + eval->values[tm->eval_index + cutoff_index].value /= rr.num_jgs; + } + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_Rndcg.c b/tools/eval/trec_eval.9.0.4/m_Rndcg.c new file mode 100644 index 0000000000000000000000000000000000000000..10db47460713cec0c7dd0414ff494a866d9e1999 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_Rndcg.c @@ -0,0 +1,254 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_Rndcg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static PARAMS default_ndcg_gains = { NULL, 0, NULL}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_Rndcg = + {"Rndcg", + " Normalized Discounted Cumulative Gain at R levels\n\ + Experimental measure\n\ + Compute a traditional nDCG measure according to Jarvelin and\n\ + Kekalainen (ACM ToIS v. 20, pp. 422-446, 2002), averaged at the various\n\ + R level points. The R levels are the number of docs at each non-negative\n\ + gain level in the judgments, with the gain levels sorted in decreasing\n\ + order. Thus if there are 5 docs with gain_level 3, 3 with gain 2, 10\n\ + with gain 1, and 50 with gain 0, then \n\ + Rndcg = 1/4 (ndcg_at_5 + ndcg_at_8 + ndcg_at_18 + ndcg_at_68).\n\ + In this formulation, all unjudged docs have gain 0.0, and thus there is\n\ + a final implied R-level change at num_retrieved.\n\ + Idea behind Rndcg, is that the expected value of ndcg is a smoothly\n\ + decreasing function, with discontinuities upward at each transistion\n\ + between positive gain levels in the ideal ndcg. Once the gain level \n\ + becomes 0, the expected value of ndcg then increases until all docs are\n\ + retrieved. Thus averaging ndcg is problematic, because these transistions\n\ + occur at different points for each topic. Since it is not unusual for\n\ + ndcg to start off near 1.0, decrease to 0.25, and then increase to 0.75\n\ + at various cutoffs, the points at which ndcg is measured are important.\n\ + \n\ + Gain values are set to the appropriate relevance level by default. \n\ + The default gain can be overridden on the command line by having \n\ + comma separated parameters 'rel_level=gain'.\n\ + Eg, 'trec_eval -m Rndcg.1=3.5,2=9.0,4=7.0 ...'\n\ + will give gains 3.5, 9.0, 3.0, 7.0 for relevance levels 1,2,3,4\n\ + respectively (level 3 remains at the default).\n\ + Gains are allowed to be 0 or negative, and relevance level 0\n\ + can be given a gain.\n", + te_init_meas_s_float_p_pair, + te_calc_Rndcg, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + &default_ndcg_gains, -1}; + +/* Keep track of valid rel_levels and associated gains */ +/* Initialized in setup_gains */ +typedef struct { + long rel_level; + long num_at_level; + double gain; +} REL_GAIN; + +typedef struct { + REL_GAIN *rel_gains; + long num_gains; + long total_num_at_levels; +} GAINS; + +static int setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, + GAINS *gains); +static double get_gain (const long rel_level, const GAINS *gains); +static int comp_rel_gain (); + +static int +te_calc_Rndcg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double results_gain, results_dcg; + double old_ideal_gain, ideal_gain, ideal_dcg; + double sum = 0.0; + long num_changed_ideal_gain; + long cur_level, num_at_level; + long i; + GAINS gains; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (UNDEF == setup_gains (tm, &res_rels, &gains)) + return (UNDEF); + + if (res_rels.num_rel == 0) + return (0); + + results_dcg = 0.0; + ideal_dcg = 0.0; + cur_level = gains.num_gains - 1; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain : 0.0; + old_ideal_gain = ideal_gain; + num_changed_ideal_gain = 0; + num_at_level = 0; + + for (i = 0; i < res_rels.num_ret && ideal_gain > 0.0; i++) { + /* Calculate change in results dcg */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + /* Calculate change in ideal dcg */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + /* See if at boundary for changed ideal gain - if so, calc ndcg at + this point for later averaging */ + if (old_ideal_gain != ideal_gain) { + if (ideal_dcg > 0.0) { + sum += results_dcg / ideal_dcg; + num_changed_ideal_gain++; + } + old_ideal_gain = ideal_gain; + } + if (results_gain != 0) + /* Note: i+2 since doc i has rank i+1 */ + results_dcg += results_gain / log2((double) (i+2)); + if (ideal_gain > 0.0) + ideal_dcg += ideal_gain / log2((double)(i + 2)); + if (epi->debug_level > 0) + printf("Rndcg: %ld %ld %3.1f %6.4f %3.1f %6.4f %6.4f\n", + i, cur_level, results_gain, results_dcg, + ideal_gain, ideal_dcg, sum); + } + if (i < res_rels.num_ret) { + while (i < res_rels.num_ret) { + /* Calculate change in results dcg */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + if (results_gain != 0) + results_dcg += results_gain / log2((double) (i+2)); + if (epi->debug_level > 0) + printf("Rndcg: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, results_gain, results_dcg, 0.0, ideal_dcg); + i++; + } + if (ideal_dcg > 0.0) { + sum += results_dcg / ideal_dcg; + num_changed_ideal_gain++; + } + } + while (ideal_gain > 0.0) { + /* Calculate change in ideal dcg */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + /* See if at boundary for changed ideal gain - if so, calc ndcg at + this point for later averaging */ + if (old_ideal_gain != ideal_gain) { + if (ideal_dcg > 0.0) { + sum += results_dcg / ideal_dcg; + num_changed_ideal_gain++; + } + old_ideal_gain = ideal_gain; + } + if (ideal_gain > 0.0) + ideal_dcg += ideal_gain / log2((double)(i + 2)); + if (epi->debug_level > 0) + printf("Rndcg: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, 0.0, results_dcg, + ideal_gain, ideal_dcg); + i++; + } + + eval->values[tm->eval_index].value = sum / num_changed_ideal_gain; + + Free (gains.rel_gains); + return (1); +} + +static int +setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, GAINS *gains) +{ + FLOAT_PARAM_PAIR *pairs = NULL; + long num_pairs = 0; + long i,j; + long num_gains; + + if (tm->meas_params) { + pairs = (FLOAT_PARAM_PAIR *) tm->meas_params->param_values; + num_pairs = tm->meas_params->num_params; + } + + if (NULL == (gains->rel_gains = Malloc(res_rels->num_rel_levels + num_pairs, + REL_GAIN))) + return (UNDEF); + num_gains = 0; + for (i = 0; i < num_pairs; i++) { + gains->rel_gains[num_gains].rel_level = atol (pairs[i].name); + gains->rel_gains[num_gains].gain = (double) pairs[i].value; + gains->rel_gains[num_gains].num_at_level = 0; + num_gains++; + } + + for (i = 0; i < res_rels->num_rel_levels; i++) { + for (j = 0; j < num_gains && gains->rel_gains[j].rel_level != i; j++) + ; + if (j < num_gains) + /* Was included in list of parameters. Update occurrence info */ + gains->rel_gains[j].num_at_level = res_rels->rel_levels[i]; + else { + /* Not included in list of parameters. New gain level */ + gains->rel_gains[num_gains].rel_level = i; + gains->rel_gains[num_gains].gain = (double) i; + gains->rel_gains[num_gains].num_at_level = res_rels->rel_levels[i]; + num_gains++; + } + } + + /* Sort gains by increasing gain value */ + qsort ((char *) gains->rel_gains, + (int) num_gains, + sizeof (REL_GAIN), + comp_rel_gain); + + gains->total_num_at_levels = 0; + for (i = 0; i < num_gains; i++) + gains->total_num_at_levels += gains->rel_gains[i].num_at_level; + + gains->num_gains = num_gains; + return (1); +} + +static int comp_rel_gain (REL_GAIN *ptr1, REL_GAIN *ptr2) +{ + return (ptr1->gain - ptr2->gain); +} + +static double +get_gain (const long rel_level, const GAINS *gains) +{ + long i; + for (i = 0; i < gains->num_gains; i++) + if (rel_level == gains->rel_gains[i].rel_level) + return (gains->rel_gains[i].gain); + return (0.0); /* Print Error ?? */ +} + diff --git a/tools/eval/trec_eval.9.0.4/m_Rprec.c b/tools/eval/trec_eval.9.0.4/m_Rprec.c new file mode 100644 index 0000000000000000000000000000000000000000..679d86c59d1722bdcfa033e2ce32bf790f206b75 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_Rprec.c @@ -0,0 +1,65 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_Rprec (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_Rprec = + {"Rprec", + " Precision after R documents have been retrieved.\n\ + R is the total number of relevant docs for the topic. \n\ + This is a good single point measure for an entire retrieval\n\ + ranking that averages well since each topic is being averaged\n\ + at an equivalent point in its result ranking.\n\ + Note that this is the point that Precision = Recall.\n\ + History: Originally developed for IR rankings by Chris Buckley\n\ + after TREC 1, but analogs were used in other disciplines previously.\n\ + (the point where P = R is an important one!)\n\ + Cite: 'Retrieval System Evaluation', Chris Buckley and Ellen Voorhees.\n\ + Chapter 3 in TREC: Experiment and Evaluation in Information Retrieval\n\ + edited by Ellen Voorhees and Donna Harman. MIT Press 2005\n", + te_init_meas_s_float, + te_calc_Rprec, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_Rprec (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + long num_to_look_at; + long rel_so_far; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + rel_so_far = 0; + num_to_look_at = MIN (res_rels.num_ret, res_rels.num_rel); + if (0 == num_to_look_at) + return (0); + + for (i = 0; i < num_to_look_at; i++) { + if (res_rels.results_rel_list[i] >= epi->relevance_level) + rel_so_far++; + } + eval->values[tm->eval_index].value = + (double) rel_so_far / (double) res_rels.num_rel; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_Rprec_mult.c b/tools/eval/trec_eval.9.0.4/m_Rprec_mult.c new file mode 100644 index 0000000000000000000000000000000000000000..955089e4241eefc363dea7adb217c3c170fb46f4 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_Rprec_mult.c @@ -0,0 +1,92 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_Rprec_mult (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); +static double Rprec_cutoff_array[] = { + 0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0}; +static PARAMS default_Rprec_cutoffs = { + NULL, sizeof (Rprec_cutoff_array) / sizeof (Rprec_cutoff_array[0]), + &Rprec_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_Rprec_mult = + {"Rprec_mult", + " Precision measured at multiples of R (num_rel).\n\ + This is an attempt to measure topics at the same multiple milestones\n\ + in a retrieval (see explanation of R-prec), in order to determine\n\ + whether methods are precision oriented or recall oriented. If method A\n\ + dominates method B at the low multiples but performs less well at the\n\ + high multiples then it is precision oriented (compared to B).\n\ + Default param: -m Rprec_mult.0.2,0.4,0.6,0.8,1.0,1.2,1.4,1.6,1.8,2.0 ...\n", + te_init_meas_a_float_cut_float, + te_calc_Rprec_mult, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_Rprec_cutoffs, -1}; + +static int +te_calc_Rprec_mult (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + double *cutoff_percents = (double *) tm->meas_params->param_values; + long *cutoffs; /* cutoffs expressed in num ret docs instead of percents*/ + long current_cut; /* current index into cutoffs */ + RES_RELS rr; + long rel_so_far; + long i; + double precis, int_precis; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &rr)) + return (UNDEF); + + /* translate percentage of rels as given in the measure params, to + an actual cutoff number of docs. */ + if (NULL == (cutoffs = Malloc (tm->meas_params->num_params, long))) + return (UNDEF); + for (i = 0; i < tm->meas_params->num_params; i++) + cutoffs[i] = (long)(cutoff_percents[i] * rr.num_rel +0.9); + precis = (double) rr.num_rel_ret / (double) rr.num_ret; + int_precis = precis; + + current_cut = tm->meas_params->num_params - 1; + while (current_cut >= 0 && cutoffs[current_cut] > rr.num_ret) { + eval->values[tm->eval_index + current_cut].value = + (double) rr.num_rel_ret / (double) cutoffs[current_cut]; + current_cut--; + } + + /* Loop over all retrieved docs in reverse order. */ + rel_so_far = rr.num_rel_ret; + for (i = rr.num_ret; i > 0 && rel_so_far > 0; i--) { + precis = (double) rel_so_far / (double) i; + if (int_precis < precis) + int_precis = precis; + while (current_cut >= 0 && i == cutoffs[current_cut]) { + eval->values[tm->eval_index + current_cut].value = precis; + current_cut--; + } + if (rr.results_rel_list[i-1] >= epi->relevance_level) { + rel_so_far--; + } + } + + (void) Free (cutoffs); + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_Rprec_mult_avgjg.c b/tools/eval/trec_eval.9.0.4/m_Rprec_mult_avgjg.c new file mode 100644 index 0000000000000000000000000000000000000000..ba0accf45158be3d96c546bcd63c9d82a0754ec8 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_Rprec_mult_avgjg.c @@ -0,0 +1,106 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_Rprec_mult_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); +static double Rprec_cutoff_array[] = { + 0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0}; +static PARAMS default_Rprec_avgjg_cutoffs = { + NULL, sizeof (Rprec_cutoff_array) / sizeof (Rprec_cutoff_array[0]), + &Rprec_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_Rprec_mult_avgjg = + {"Rprec_mult_avgjg", + " Precision measured at multiples of R(num_rel) averged over users.\n\ + This is an attempt to measure topics at the same multiple milestones\n\ + in a retrieval (see explanation of R-prec), in order to determine\n\ + whether methods are precision oriented or recall oriented. If method A\n\ + dominates method B at the low multiples but performs less well at the\n\ + high multiples then it is precision oriented (compared to B).\n\ + If there is more than one judgment group (set of evalutation judgments\n\ + of a user), then the measure is averaged over those jgs.\n\ + Default param: \n\ + trec_eval -m Rprec_mult_avgjg.0.2,0.4,0.6,0.8,1.0,1.2,1.4,1.6,1.8,2.0 ...\n", + te_init_meas_a_float_cut_float, + te_calc_Rprec_mult_avgjg, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_Rprec_avgjg_cutoffs, -1}; + +static int +te_calc_Rprec_mult_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + double *cutoff_percents = (double *) tm->meas_params->param_values; + long *cutoffs; /* cutoffs expressed in num ret docs instead of percents*/ + long current_cut; /* current index into cutoffs */ + RES_RELS_JG rr; + long rel_so_far; + long i, jg; + double precis, int_precis; + + if (UNDEF == te_form_res_rels_jg (epi, rel_info, results, &rr)) + return (UNDEF); + + /* Need to translate percentage of rels as given in the measure params, to + an actual cutoff number of docs. */ + if (NULL == (cutoffs = Malloc (tm->meas_params->num_params, long))) + return (UNDEF); + + for (jg = 0; jg < rr.num_jgs; jg++) { + for (i = 0; i < tm->meas_params->num_params; i++) + cutoffs[i] = (long)(cutoff_percents[i] + * rr.jgs[jg].num_rel +0.9); + precis = (double) rr.jgs[jg].num_rel_ret / (double) rr.jgs[jg].num_ret; + int_precis = precis; + + current_cut = tm->meas_params->num_params - 1; + while (current_cut >= 0 && cutoffs[current_cut] > rr.jgs[jg].num_ret) { + eval->values[tm->eval_index + current_cut].value += + (double) rr.jgs[jg].num_rel_ret / (double) cutoffs[current_cut]; + current_cut--; + } + + /* Loop over all retrieved docs in reverse order. */ + rel_so_far = rr.jgs[jg].num_rel_ret; + for (i = rr.jgs[jg].num_ret; i > 0 && rel_so_far > 0; i--) { + precis = (double) rel_so_far / (double) i; + if (int_precis < precis) + int_precis = precis; + while (current_cut >= 0 && i == cutoffs[current_cut]) { + eval->values[tm->eval_index + current_cut].value += precis; + current_cut--; + } + if (rr.jgs[jg].results_rel_list[i-1] >= epi->relevance_level) { + rel_so_far--; + } + } + } + + if (rr.num_jgs > 1) { + for (current_cut = 0; + current_cut < tm->meas_params->num_params; + current_cut++) + eval->values[tm->eval_index + current_cut].value /= rr.num_jgs; + } + + Free (cutoffs); + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_binG.c b/tools/eval/trec_eval.9.0.4/m_binG.c new file mode 100644 index 0000000000000000000000000000000000000000..0251fd3ade3325840fc56d24c6ee759df68635ae --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_binG.c @@ -0,0 +1,65 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_binG (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_binG = {"binG", + " Binary G\n\ + Experimental measure. (4/10/2008)\n\ + G is a gain related measure that combines qualities of MAP and NDCG.\n\ + G(doc) == rel_level_gain (doc) / log2 (2+num_nonrel retrieved before doc)\n\ + G is the average of G(doc) over all docs, normalized by\n\ + sum (rel_level_gain).\n\ + BinG restricts the gain to either 0 or 1 (nonrel or rel), and thus is the\n\ + average over all rel docs of (1 / log2 (2+num_nonrel before doc))\n", + te_init_meas_s_float, + te_calc_binG, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_binG (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double sum; + long rel_so_far; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + rel_so_far = 0; + sum = 0.0; + for (i = 0; i < res_rels.num_ret; i++) { + if (res_rels.results_rel_list[i] >= epi->relevance_level) { + rel_so_far++; + sum += (double) 1.0 / (double) log2 ((double) (3 + i - rel_so_far)); + if (epi->debug_level > 0) + printf("binG: %ld %ld %6.4f\n", + i, rel_so_far, sum); + } + } + /* Average over the rel docs */ + if (rel_so_far) { + eval->values[tm->eval_index].value = + sum / (double) res_rels.num_rel; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_bpref.c b/tools/eval/trec_eval.9.0.4/m_bpref.c new file mode 100644 index 0000000000000000000000000000000000000000..f39a4d9329c010b4d791450f4498c99d491388cf --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_bpref.c @@ -0,0 +1,93 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_bpref (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_bpref = + {"bpref", + " Main binary preference measure.\n\ + Fraction of the top R nonrelevant docs that are retrieved after each\n\ + relevant doc. Put another way: when looking at the R relevant docs, and\n\ + the top R nonrelevant docs, if all relevant docs are to be preferred to\n\ + nonrelevant docs, bpref is the fraction of the preferences that the\n\ + ranking preserves.\n\ + Cite: 'Retrieval Evaluation with Incomplete Information', Chris Buckley\n\ + and Ellen Voorhees. In Proceedings of 27th SIGIR, 2004.\n", + te_init_meas_s_float, + te_calc_bpref, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_bpref (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + long j; + long nonrel_so_far, rel_so_far, pool_unjudged_so_far; + long num_nonrel = 0; + double bpref = 0.0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + for (j = 0; j < epi->relevance_level; j++) + num_nonrel += res_rels.rel_levels[j]; + + /* Calculate judgement based measures (dependent on only + judged docs; no assumption of non-relevance if not judged) */ + /* Binary Preference measures; here expressed as all docs with a higher + value of rel are to be preferred. Optimize by keeping track of nonrel + seen so far */ + nonrel_so_far = 0; + rel_so_far = 0; + pool_unjudged_so_far = 0; + for (j = 0; j < res_rels.num_ret; j++) { + if (res_rels.results_rel_list[j] == RELVALUE_NONPOOL) + /* document not in pool. Skip */ + continue; + if (res_rels.results_rel_list[j] == RELVALUE_UNJUDGED) { + /* document in pool but unjudged. */ + pool_unjudged_so_far++; + continue; + } + + if (res_rels.results_rel_list[j] >= 0 && + res_rels.results_rel_list[j] < epi->relevance_level) + nonrel_so_far++; + else { + /* Judged Rel doc */ + rel_so_far++; + /* Add fraction of correct preferences. */ + /* Special case nonrel_so_far == 0 to avoid division by 0 */ + if (nonrel_so_far > 0) { + bpref += 1.0 - + (((double) MIN (nonrel_so_far, res_rels.num_rel)) / + (double) MIN (num_nonrel, res_rels.num_rel)); + } + else + bpref += 1.0; + } + } + if (res_rels.num_rel) + bpref /= res_rels.num_rel; + + eval->values[tm->eval_index].value = bpref; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_gm_bpref.c b/tools/eval/trec_eval.9.0.4/m_gm_bpref.c new file mode 100644 index 0000000000000000000000000000000000000000..7964f2c037504b744b8a485a646c1cb806fde1a1 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_gm_bpref.c @@ -0,0 +1,102 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_gm_bpref (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_gm_bpref = + {"gm_bpref", + " Binary preference (bpref), but using goemetric mean over topics\n\ + See the explanation for 'bpref' for the base measure for a single topic.\n\ + Gm_bpref uses the geometric mean to combine the single topic scores.\n\ + This rewards methods that are more consistent across topics as opposed to\n\ + high scores for some topics and low scores for others.\n\ + Gm_bpref is printed only as a summary measure across topics, not for the\n\ + individual topics.\n", + te_init_meas_s_float, + te_calc_gm_bpref, + te_acc_meas_s, + te_calc_avg_meas_s_gm, + te_print_single_meas_empty, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_gm_bpref (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + long j; + long nonrel_so_far, rel_so_far, pool_unjudged_so_far; + long num_nonrel = 0; + double bpref = 0.0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + for (j = 0; j < epi->relevance_level; j++) + num_nonrel += res_rels.rel_levels[j]; + + /* Calculate judgement based measures (dependent on only + judged docs; no assumption of non-relevance if not judged) */ + /* Binary Preference measures; here expressed as all docs with a higher + value of rel are to be preferred. Optimize by keeping track of nonrel + seen so far */ + nonrel_so_far = 0; + rel_so_far = 0; + pool_unjudged_so_far = 0; + for (j = 0; j < res_rels.num_ret; j++) { + if (res_rels.results_rel_list[j] == RELVALUE_NONPOOL) + /* document not in pool. Skip */ + continue; + if (res_rels.results_rel_list[j] == RELVALUE_UNJUDGED) { + /* document in pool but unjudged. */ + pool_unjudged_so_far++; + continue; + } + + if (res_rels.results_rel_list[j] >= 0 && + res_rels.results_rel_list[j] < epi->relevance_level) + nonrel_so_far++; + else { + /* Judged Rel doc */ + rel_so_far++; + /* Add fraction of correct preferences. */ + /* Special case nonrel_so_far == 0 to avoid division by 0 */ + if (nonrel_so_far > 0) { + bpref += 1.0 - + (((double) MIN (nonrel_so_far, res_rels.num_rel)) / + (double) MIN (num_nonrel, res_rels.num_rel)); + } + else + bpref += 1.0; + } + } + if (res_rels.num_rel) + bpref /= res_rels.num_rel; + + /* Original measure value is constrained to be greater than + MIN_GEO_MEAN (for time being .00001, since trec_eval prints to + four significant digits) */ + eval->values[tm->eval_index].value = + (double) log ((double)(MAX (bpref, MIN_GEO_MEAN))); + + if (epi->debug_level > 1) + printf ("gm_bpref: bpref %6.4f, gm_bpref %6.4f", + bpref, eval->values[tm->eval_index].value); + + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_gm_map.c b/tools/eval/trec_eval.9.0.4/m_gm_map.c new file mode 100644 index 0000000000000000000000000000000000000000..fe612b2621aa440d5d4522b304bcedca0acbb202 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_gm_map.c @@ -0,0 +1,64 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_gm_map (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_gm_map = + {"gm_map", + " Geometric Mean Average Precision\n\ + This is the same measure as 'map' (see description of 'map') on an\n\ + individual topic, but the geometric mean is calculated when averaging\n\ + over topics. This rewards methods that are more consistent over topics\n\ + as opposed to methods which do very well for some topics but very poorly\n\ + for others.\n\ + gm_ap is reported only in the summary over all topics, not for individual\n\ + topics.\n", + te_init_meas_s_float, + te_calc_gm_map, + te_acc_meas_s, + te_calc_avg_meas_s_gm, + te_print_single_meas_empty, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_gm_map (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double sum; + long rel_so_far; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + rel_so_far = 0; + sum = 0.0; + for (i = 0; i < res_rels.num_ret; i++) { + if (res_rels.results_rel_list[i] >= epi->relevance_level) { + rel_so_far++; + sum += (double) rel_so_far / (double) (i + 1); + } + } + + if (rel_so_far) { + sum = sum / (double) res_rels.num_rel; + } + eval->values[tm->eval_index].value = + (double) log ((double)(MAX (sum, MIN_GEO_MEAN))); + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_infap.c b/tools/eval/trec_eval.9.0.4/m_infap.c new file mode 100644 index 0000000000000000000000000000000000000000..a641ec7c91a2a8fd050066e4bf822f4ec8ec4bf1 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_infap.c @@ -0,0 +1,92 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_infap (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_infAP = + {"infAP", + " Inferred AP\n\ + A measure that allows sampling of judgement pool: Qrels/results divided\n\ + into unpooled, pooled_but_unjudged, pooled_judged_rel,pooled_judged_nonrel.\n\ + My intuition of infAP:\n\ + Assume a judgment pool with a random subset that has been judged.\n\ + Calculate P at rel doc using only the judged higher retrieved docs,\n\ + then average in 0's from higher docs that were not in the judgment pool.\n\ + (Those in the pool but not judged are ignored, since they are assumed\n\ + to be relevant in the same proportion as those judged.)\n\ + Cite: 'Estimating Average Precision with Incomplete and Imperfect\n\ + Judgments', Emine Yilmaz and Javed A. Aslam. CIKM \n", + te_init_meas_s_float, + te_calc_infap, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_infap (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + long j; + long nonrel_so_far, rel_so_far, pool_unjudged_so_far; + double inf_ap = 0.0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + nonrel_so_far = 0; + rel_so_far = 0; + pool_unjudged_so_far = 0; + for (j = 0; j < res_rels.num_ret; j++) { + if (res_rels.results_rel_list[j] == RELVALUE_NONPOOL) + /* document not in pool. Skip */ + continue; + if (res_rels.results_rel_list[j] == RELVALUE_UNJUDGED) { + /* document in pool but unjudged. */ + pool_unjudged_so_far++; + continue; + } + + if (res_rels.results_rel_list[j] >= 0 && + res_rels.results_rel_list[j] < epi->relevance_level) { + nonrel_so_far++; + } + else { + /* Judged Rel doc */ + rel_so_far++; + /* Special case nonrel_so_far == 0 to avoid division by 0 */ + /* inf_ap */ + if (0 == j) + inf_ap += 1.0; + else { + double fj = (double) j; + inf_ap += 1.0 / (fj+1.0) + + (fj / (fj+1.0)) * + ((rel_so_far-1+nonrel_so_far+pool_unjudged_so_far) / fj) * + ((rel_so_far-1 + INFAP_EPSILON) / + (rel_so_far-1 + nonrel_so_far + 2 * INFAP_EPSILON)); + } + } + } + if (res_rels.num_rel) { + inf_ap /= res_rels.num_rel; + } + eval->values[tm->eval_index].value = inf_ap; + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_iprec_at_recall.c b/tools/eval/trec_eval.9.0.4/m_iprec_at_recall.c new file mode 100644 index 0000000000000000000000000000000000000000..67e73d52e1cd8bc21335bd38557f5c4cc84792d4 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_iprec_at_recall.c @@ -0,0 +1,98 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_iprec_at_recall (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); +static double float_cutoff_array[] = { + 0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0}; +static PARAMS default_iprec_at_recall_cutoffs = { + NULL, sizeof (float_cutoff_array) / sizeof (float_cutoff_array[0]), + &float_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_iprec_at_recall = + {"iprec_at_recall", + " Interpolated Precision at recall cutoffs.\n\ + This is the data shown in the standard Recall-Precision graph.\n\ + The standard cutoffs and interpolation are needed to average data over\n\ + multiple topics; otherwise, how is a topic with 5 relevant docs averaged\n\ + with a topic with 3 relevant docs for graphing purposes? The Precision \n\ + interpolation used here is\n\ + Int_Prec (rankX) == MAX (Prec (rankY)) for all Y >= X.\n\ + Default usage: -m iprec_at_recall.0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1 ...\n", + te_init_meas_a_float_cut_float, + te_calc_iprec_at_recall, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_iprec_at_recall_cutoffs, -1}; + +static int +te_calc_iprec_at_recall (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + double *cutoff_percents = (double *) tm->meas_params->param_values; + long *cutoffs; /* cutoffs expressed in num rel docs instead of percents*/ + long current_cut; /* current index into cutoffs */ + RES_RELS rr; + long rel_so_far; + long i; + double precis, int_precis; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &rr)) + return (UNDEF); + + /* translate percentage of rels as given in the measure params, to + an actual cutoff number of docs. Note addition of 0.9 + means the default 11 percentages should have same cutoffs as + historical MAP implementations (eg, old trec_eval) */ + if (NULL == (cutoffs = Malloc (tm->meas_params->num_params, long))) + return (UNDEF); + for (i = 0; i < tm->meas_params->num_params; i++) + cutoffs[i] = (long) (cutoff_percents[i] * rr.num_rel+0.9); + + current_cut = tm->meas_params->num_params - 1; + while (current_cut >= 0 && cutoffs[current_cut] > rr.num_rel_ret) + current_cut--; + + /* Loop over all retrieved docs in reverse order. Needs to be + reverse order since are calcualting interpolated precision. + Int_Prec (X) defined to be MAX (Prec (Y)) for all Y >= X. */ + precis = (double) rr.num_rel_ret / (double) rr.num_ret; + int_precis = precis; + rel_so_far = rr.num_rel_ret; + for (i = rr.num_ret; i > 0 && rel_so_far > 0; i--) { + precis = (double) rel_so_far / (double) i; + if (int_precis < precis) + int_precis = precis; + if (rr.results_rel_list[i-1] >= epi->relevance_level) { + while (current_cut >= 0 && rel_so_far == cutoffs[current_cut]) { + eval->values[tm->eval_index+current_cut].value = int_precis; + current_cut--; + } + rel_so_far--; + } + } + + while (current_cut >= 0) { + eval->values[tm->eval_index+current_cut].value = int_precis; + current_cut--; + } + + (void) Free (cutoffs); + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_map.c b/tools/eval/trec_eval.9.0.4/m_map.c new file mode 100644 index 0000000000000000000000000000000000000000..c29fb5935030dbad0db661ddfc6abb263cc334f3 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_map.c @@ -0,0 +1,68 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_map (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_map = {"map", + " Mean Average Precision\n\ + Precision measured after each relevant doc is retrieved, then averaged\n\ + for the topic, and then averaged over topics (if more than one).\n\ + This is the main single-valued number used to compare the entire rankings\n\ + of two or more retrieval methods. It has proven in practice to be useful\n\ + and robust.\n\ + The name of the measure is unfortunately inaccurate since it is \n\ + calculated for a single topic (and thus don't want both 'mean' and\n\ + 'average') but was dictated by common usage and the need to distiguish\n\ + map from Precision averaged over topics (I had to give up my attempts to\n\ + call it something else!)\n\ + History: Developed by Chris Buckley after TREC 1.\n\ + Cite: 'Retrieval System Evaluation', Chris Buckley and Ellen Voorhees.\n\ + Chapter 3 in TREC: Experiment and Evaluation in Information Retrieval\n\ + edited by Ellen Voorhees and Donna Harman. MIT Press 2005\n", + te_init_meas_s_float, + te_calc_map, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_map (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double sum; + long rel_so_far; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + rel_so_far = 0; + sum = 0.0; + for (i = 0; i < res_rels.num_ret; i++) { + if (res_rels.results_rel_list[i] >= epi->relevance_level) { + rel_so_far++; + sum += (double) rel_so_far / (double) (i + 1); + } + } + /* Average over the rel docs */ + if (rel_so_far) { + eval->values[tm->eval_index].value = + sum / (double) res_rels.num_rel; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_map_avgjg.c b/tools/eval/trec_eval.9.0.4/m_map_avgjg.c new file mode 100644 index 0000000000000000000000000000000000000000..cb986d0c59c1558d83b2eb1ef1b18d7406b99d96 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_map_avgjg.c @@ -0,0 +1,70 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_map_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm,TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_map_avgjg = + {"map_avgjg", + " Mean Average Precision over judgment groups \n\ + Precision measured after each relevant doc is retrieved, then averaged\n\ + for the topic, and then averaged over judgement group (user) and then \n\ + averaged over topics (if more than one).\n\ + Same as the workhorse measure 'map' except if there is more than one\n\ + set of relevance judgments for this query (each set indicated by a\n\ + different judgment group), the score will be averaged over the judgment\n\ + groups.\n", + te_init_meas_s_float, + te_calc_map_avgjg, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_map_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS_JG rr; + double sum; + long rel_so_far; + long i, jg; + + if (UNDEF == te_form_res_rels_jg (epi, rel_info, results, &rr)) + return (UNDEF); + + for (jg = 0; jg < rr.num_jgs; jg++) { + rel_so_far = 0; + sum = 0.0; + for (i = 0; i < rr.jgs[jg].num_ret; i++) { + if (rr.jgs[jg].results_rel_list[i] >= epi->relevance_level) { + rel_so_far++; + sum += (double) rel_so_far / (double) (i + 1); + } + } + /* Average over the rel docs */ + if (rel_so_far) { + eval->values[tm->eval_index].value += + sum / (double) rr.jgs[jg].num_rel; + } + } + + if (rr.num_jgs > 1) { + eval->values[tm->eval_index].value /= rr.num_jgs; + } + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_map_cut.c b/tools/eval/trec_eval.9.0.4/m_map_cut.c new file mode 100644 index 0000000000000000000000000000000000000000..1763cc8d33c444027fcc3eace67055fcb00c4826 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_map_cut.c @@ -0,0 +1,78 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_map_cut (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static long long_cutoff_array[] = {5, 10, 15, 20, 30, 100, 200, 500, 1000}; +static PARAMS default_map_cutoffs = { + NULL, sizeof (long_cutoff_array) / sizeof (long_cutoff_array[0]), + &long_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_map_cut = + {"map_cut", + " Mean Average Precision at cutoffs\n\ + Map measured at various doc level cutoffs in the ranking.\n\ + If the cutoff is larger than the number of docs retrieved, then\n\ + it is assumed nonrelevant docs fill in the rest.\n\ + Map itself is precision measured after each relevant doc is retrieved,\n\ + averaged over all relevant docs for the topic.\n\ + Cutoffs must be positive without duplicates\n\ + Default param: -m map_cut.5,10,15,20,30,100,200,500,1000\n", + te_init_meas_a_float_cut_long, + te_calc_map_cut, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_map_cutoffs, -1}; + +static int +te_calc_map_cut (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index = 0; + long i; + RES_RELS res_rels; + long rel_so_far = 0; + double sum = 0.0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (res_rels.num_rel == 0) + return (0); + + for (i = 0; i < res_rels.num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note all guaranteed to be positive by init_meas */ + eval->values[tm->eval_index + cutoff_index].value = + sum / (double) res_rels.num_rel; + if (++cutoff_index == tm->meas_params->num_params) + break; + } + if (res_rels.results_rel_list[i] >= epi->relevance_level) { + rel_so_far++; + sum += (double) rel_so_far / (double) (i+1); + } + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + eval->values[tm->eval_index+cutoff_index].value = + sum / (double) res_rels.num_rel; + cutoff_index++; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_ndcg.c b/tools/eval/trec_eval.9.0.4/m_ndcg.c new file mode 100644 index 0000000000000000000000000000000000000000..0f0013e3ef32ae6bd0b1200c592e54b7ea39afe0 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_ndcg.c @@ -0,0 +1,210 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_ndcg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static PARAMS default_ndcg_gains = { NULL, 0, NULL}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_ndcg = + {"ndcg", + " Normalized Discounted Cumulative Gain\n\ + Compute a traditional nDCG measure according to Jarvelin and\n\ + Kekalainen (ACM ToIS v. 20, pp. 422-446, 2002)\n\ + Gain values are set to the appropriate relevance level by default. \n\ + The default gain can be overridden on the command line by having \n\ + comma separated parameters 'rel_level=gain'.\n\ + Eg, 'trec_eval -m ndcg.1=3.5,2=9.0,4=7.0 ...'\n\ + will give gains 3.5, 9.0, 3.0, 7.0 for relevance levels 1,2,3,4\n\ + respectively (level 3 remains at the default).\n\ + Gains are allowed to be 0 or negative, and relevance level 0\n\ + can be given a gain.\n\ + Based on an implementation by Ian Soboroff\n", + te_init_meas_s_float_p_pair, + te_calc_ndcg, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + &default_ndcg_gains, -1}; + +/* Keep track of valid rel_levels and associated gains */ +/* Initialized in setup_gains */ +typedef struct { + long rel_level; + long num_at_level; + double gain; +} REL_GAIN; + +typedef struct { + REL_GAIN *rel_gains; + long num_gains; + long total_num_at_levels; +} GAINS; + +static int setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, + GAINS *gains); +static double get_gain (const long rel_level, const GAINS *gains); +static int comp_rel_gain (); + +static int +te_calc_ndcg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double results_gain, results_dcg; + double ideal_gain, ideal_dcg; + long cur_level, num_at_level; + long i; + GAINS gains; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (UNDEF == setup_gains (tm, &res_rels, &gains)) + return (UNDEF); + + results_dcg = 0.0; + ideal_dcg = 0.0; + cur_level = gains.num_gains - 1; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain : 0.0; + num_at_level = 0; + + for (i = 0; i < res_rels.num_ret && ideal_gain > 0.0; i++) { + /* Calculate change in results dcg */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + if (results_gain != 0) + /* Note: i+2 since doc i has rank i+1 */ + results_dcg += results_gain / log2((double) (i+2)); + /* Calculate change in ideal dcg */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + if (ideal_gain > 0.0) + ideal_dcg += ideal_gain / log2((double)(i + 2)); + if (epi->debug_level > 0) + printf("ndcg: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, results_gain, results_dcg, + ideal_gain, ideal_dcg); + } + while (i < res_rels.num_ret) { + /* Calculate change in results dcg */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + if (results_gain != 0) + results_dcg += results_gain / log2((double) (i+2)); + if (epi->debug_level > 0) + printf("ndcg: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, results_gain, results_dcg, 0.0, ideal_dcg); + i++; + } + while (ideal_gain > 0.0) { + /* Calculate change in ideal dcg */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + if (ideal_gain > 0.0) + ideal_dcg += ideal_gain / log2((double)(i + 2)); + if (epi->debug_level > 0) + printf("ndcg: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, 0.0, results_dcg, + ideal_gain, ideal_dcg); + i++; + } + + /* Compare sum to ideal NDCG */ + if (ideal_dcg > 0.0) { + eval->values[tm->eval_index].value = results_dcg / ideal_dcg; + } + + Free (gains.rel_gains); + return (1); +} + +static int +setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, GAINS *gains) +{ + FLOAT_PARAM_PAIR *pairs = NULL; + long num_pairs = 0; + long i,j; + long num_gains; + + if (tm->meas_params) { + pairs = (FLOAT_PARAM_PAIR *) tm->meas_params->param_values; + num_pairs = tm->meas_params->num_params; + } + + if (NULL == (gains->rel_gains = Malloc(res_rels->num_rel_levels + num_pairs, + REL_GAIN))) + return (UNDEF); + num_gains = 0; + for (i = 0; i < num_pairs; i++) { + gains->rel_gains[num_gains].rel_level = atol (pairs[i].name); + gains->rel_gains[num_gains].gain = (double) pairs[i].value; + gains->rel_gains[num_gains].num_at_level = 0; + num_gains++; + } + + for (i = 0; i < res_rels->num_rel_levels; i++) { + for (j = 0; j < num_gains && gains->rel_gains[j].rel_level != i; j++) + ; + if (j < num_gains) + /* Was included in list of parameters. Update occurrence info */ + gains->rel_gains[j].num_at_level = res_rels->rel_levels[i]; + else { + /* Not included in list of parameters. New gain level */ + gains->rel_gains[num_gains].rel_level = i; + gains->rel_gains[num_gains].gain = (double) i; + gains->rel_gains[num_gains].num_at_level = res_rels->rel_levels[i]; + num_gains++; + } + } + + /* Sort gains by increasing gain value */ + qsort ((char *) gains->rel_gains, + (int) num_gains, + sizeof (REL_GAIN), + comp_rel_gain); + + gains->total_num_at_levels = 0; + for (i = 0; i < num_gains; i++) + gains->total_num_at_levels += gains->rel_gains[i].num_at_level; + + gains->num_gains = num_gains; + return (1); +} + +static int comp_rel_gain (REL_GAIN *ptr1, REL_GAIN *ptr2) +{ + return (ptr1->gain - ptr2->gain); +} + +static double +get_gain (const long rel_level, const GAINS *gains) +{ + long i; + for (i = 0; i < gains->num_gains; i++) + if (rel_level == gains->rel_gains[i].rel_level) + return (gains->rel_gains[i].gain); + return (0.0); /* Print Error ?? */ +} + diff --git a/tools/eval/trec_eval.9.0.4/m_ndcg_cut.c b/tools/eval/trec_eval.9.0.4/m_ndcg_cut.c new file mode 100644 index 0000000000000000000000000000000000000000..d6dc67836b43c5329a025baa2dd240a5c8976e3a --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_ndcg_cut.c @@ -0,0 +1,126 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_ndcg_cut (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static long long_cutoff_array[] = {5, 10, 15, 20, 30, 100, 200, 500, 1000}; +static PARAMS default_ndcg_cutoffs = { + NULL, sizeof (long_cutoff_array) / sizeof (long_cutoff_array[0]), + &long_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_ndcg_cut = + {"ndcg_cut", + " Normalized Discounted Cumulative Gain at cutoffs.\n\ + Compute a traditional nDCG measure according to Jarvelin and\n\ + Kekalainen (ACM ToIS v. 20, pp. 422-446, 2002) at cutoffs.\n\ + See comments for ndcg.\n\ + Gain values are the relevance values in the qrels file. For now, if you\n\ + want different gains, change the qrels file appropriately.\n\ + Cutoffs must be positive without duplicates\n\ + Default params: -m ndcg_cut.5,10,15,20,30,100,200,500,1000\n\ + Based on an implementation by Ian Soboroff\n", + te_init_meas_a_float_cut_long, + te_calc_ndcg_cut, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_ndcg_cutoffs, -1}; + +static int +te_calc_ndcg_cut (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index = 0; + RES_RELS res_rels; + double gain, sum; + double ideal_dcg; /* ideal discounted cumulative gain */ + long cur_lvl, lvl_count; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + sum = 0.0; + for (i = 0; i < res_rels.num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note i guaranteed to be positive by init_meas */ + eval->values[tm->eval_index + cutoff_index].value = sum; + if (++cutoff_index == tm->meas_params->num_params) + break; + if (epi->debug_level > 0) + printf("ndcg_cut: cutoff %ld dcg %6.4f\n", i, sum); + } + gain = res_rels.results_rel_list[i]; + if (gain > 0) { + /* Note: i+2 since doc i has rank i+1 */ + sum += gain / log2((double) (i+2)); + if (epi->debug_level > 1) + printf("ndcg_cut:%ld %3.1f %6.4f\n", i, gain, sum); + } + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + eval->values[tm->eval_index + cutoff_index].value = sum; + if (epi->debug_level > 0) + printf("ndcg_cut: cutoff %ld dcg %6.4f\n", + cutoffs[cutoff_index], sum); + cutoff_index++; + } + /* Calculate ideal discounted cumulative gain for this topic, and + normalize previous sum by it */ + cutoff_index = 0; + cur_lvl = res_rels.num_rel_levels - 1; + lvl_count = 0; + ideal_dcg = 0.0; + for (i = 0; 1; i++) { + lvl_count++; + while (cur_lvl > 0 && lvl_count > res_rels.rel_levels[cur_lvl]) { + cur_lvl--; + lvl_count = 1; + } + if (cur_lvl == 0) + break; + + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note i guaranteed to be positive by init_meas */ + if (ideal_dcg > 0.0) + eval->values[tm->eval_index + cutoff_index].value /= ideal_dcg; + if (epi->debug_level > 0) + printf("ndcg_cut: cutoff %ld idcg %6.4f\n", i, ideal_dcg); + if (++cutoff_index == tm->meas_params->num_params) + break; + } + gain = cur_lvl; + ideal_dcg += gain / (double) log2((double)(i + 2)); + if (epi->debug_level > 0) + printf("ndcg_cut:%ld %ld %3.1f %6.4f\n",i, cur_lvl, gain,ideal_dcg); + } + + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + if (ideal_dcg > 0.0) + eval->values[tm->eval_index + cutoff_index].value /= ideal_dcg; + if (epi->debug_level > 0) + printf("ndcg_cut: cutoff %ld idcg %6.4f\n", + cutoffs[cutoff_index], ideal_dcg); + cutoff_index++; + } + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_ndcg_p.c b/tools/eval/trec_eval.9.0.4/m_ndcg_p.c new file mode 100644 index 0000000000000000000000000000000000000000..e4f534a6a9f16ff3cf1c4acd7aa748ee427e5b6b --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_ndcg_p.c @@ -0,0 +1,191 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_ndcg_p (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static PARAMS default_ndcg_gains = { NULL, 0, NULL}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_ndcg_p = + {"ndcg_p", + " Normalized Discounted Cumulative Gain\n\ + Compute a traditional nDCG measure according to Jarvelin and\n\ + Kekalainen (ACM ToIS v. 20, pp. 422-446, 2002).\n\ + Gain values are set to the appropriate relevance level by default. \n\ + The default gain can be overridden on the command line by having \n\ + comma separated parameters 'rel_level=gain'.\n\ + Eg, 'trec_eval -m ndcg_p.1=3.5,2=9.0,4=7.0 ...'\n\ + will give gains 3.5, 9.0, 3.0, 7.0 for relevance levels 1,2,3,4\n\ + respectively (level 3 remains at the default).\n\ + Gains are allowed to be 0 or negative, and relevance level 0\n\ + can be given a gain.\n\ + Based on an implementation by Ian Soboroff\n", + te_init_meas_s_float_p_pair, + te_calc_ndcg_p, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + &default_ndcg_gains, -1}; + +/* Keep track of valid rel_levels and associated gains */ +/* Initialized in setup_gains */ +typedef struct { + long rel_level; + long num_at_level; + double gain; +} REL_GAIN; + +typedef struct { + REL_GAIN *rel_gains; + long num_gains; + long total_num_at_levels; +} GAINS; + +static int setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, + GAINS *gains); +static double get_gain (const long rel_level, const GAINS *gains); +static int comp_rel_gain (); + +static int +te_calc_ndcg_p (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double gain, sum; + double ideal_dcg; /* ideal discounted cumulative gain */ + long cur_lvl, lvl_count; + long i; + GAINS gains; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (UNDEF == setup_gains (tm, &res_rels, &gains)) + return (UNDEF); + + sum = 0.0; + for (i = 0; i < res_rels.num_ret; i++) { + gain = get_gain (res_rels.results_rel_list[i], &gains); + if (gain != 0) { + if (i > 0) + sum += gain / log2((double) (i+1)); + else + sum += gain; + if (epi->debug_level > 0) + printf("ndcg_p:%ld %3.1f %6.4f\n", i, gain, sum); + } + } + /* Calculate ideal discounted cumulative gain for this topic */ + cur_lvl = gains.num_gains - 1; + lvl_count = 0; + ideal_dcg = 0.0; + for (i = 0; i < gains.total_num_at_levels; i++) { + lvl_count++; + while (lvl_count > gains.rel_gains[cur_lvl].num_at_level) { + lvl_count = 1; + cur_lvl--; + if (cur_lvl < 0 || gains.rel_gains[cur_lvl].gain <= 0.0) + break; + } + if (cur_lvl < 0 || gains.rel_gains[cur_lvl].gain <= 0.0) + break; + gain = gains.rel_gains[cur_lvl].gain; + if (i == 0) + ideal_dcg += gain; + else + ideal_dcg += gain / (float) log2((double)(i + 1)); + if (epi->debug_level > 0) + printf("ndcg_p:%ld %ld %3.1f %6.4f\n", i, cur_lvl, gain, ideal_dcg); + } + + /* Compare sum to ideal NDCG */ + if (res_rels.num_rel_ret > 0) { + eval->values[tm->eval_index].value = + sum / ideal_dcg; + } + + Free (gains.rel_gains); + return (1); +} + +static int +setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, GAINS *gains) +{ + FLOAT_PARAM_PAIR *pairs = NULL; + long num_pairs = 0; + long i,j; + long num_gains; + + if (tm->meas_params) { + pairs = (FLOAT_PARAM_PAIR *) tm->meas_params->param_values; + num_pairs = tm->meas_params->num_params; + } + + if (NULL == (gains->rel_gains = Malloc(res_rels->num_rel_levels + num_pairs, + REL_GAIN))) + return (UNDEF); + num_gains = 0; + for (i = 0; i < num_pairs; i++) { + gains->rel_gains[num_gains].rel_level = atol (pairs[i].name); + gains->rel_gains[num_gains].gain = (double) pairs[i].value; + gains->rel_gains[num_gains].num_at_level = 0; + num_gains++; + } + + for (i = 0; i < res_rels->num_rel_levels; i++) { + for (j = 0; j < num_gains && gains->rel_gains[j].rel_level != i; j++) + ; + if (j < num_gains) + /* Was included in list of parameters. Update occurrence info */ + gains->rel_gains[j].num_at_level = res_rels->rel_levels[i]; + else { + /* Not included in list of parameters. New gain level */ + gains->rel_gains[num_gains].rel_level = i; + gains->rel_gains[num_gains].gain = (double) i; + gains->rel_gains[num_gains].num_at_level = res_rels->rel_levels[i]; + num_gains++; + } + } + + /* Sort gains by increasing gain value */ + qsort ((char *) gains->rel_gains, + (int) num_gains, + sizeof (REL_GAIN), + comp_rel_gain); + + gains->total_num_at_levels = 0; + for (i = 0; i < num_gains; i++) + gains->total_num_at_levels += gains->rel_gains[i].num_at_level; + + gains->num_gains = num_gains; + return (1); +} + +static int comp_rel_gain (REL_GAIN *ptr1, REL_GAIN *ptr2) +{ + return (ptr1->gain - ptr2->gain); +} + +static double +get_gain (const long rel_level, const GAINS *gains) +{ + long i; + for (i = 0; i < gains->num_gains; i++) + if (rel_level == gains->rel_gains[i].rel_level) + return (gains->rel_gains[i].gain); + return (0.0); /* Print Error ?? */ +} + diff --git a/tools/eval/trec_eval.9.0.4/m_ndcg_rel.c b/tools/eval/trec_eval.9.0.4/m_ndcg_rel.c new file mode 100644 index 0000000000000000000000000000000000000000..de60954babc268f62497ccde79532c0008c70992 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_ndcg_rel.c @@ -0,0 +1,244 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" +double log2(double x); + +static int +te_calc_ndcg_rel (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static PARAMS default_ndcg_gains = { NULL, 0, NULL}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_ndcg_rel = + {"ndcg_rel", + " Normalized Discounted Cumulative Gain averaged over rel docs\n\ + Experimental measure\n\ + Compute a traditional nDCG measure according to Jarvelin and\n\ + Kekalainen (ACM ToIS v. 20, pp. 422-446, 2002), averaged at rel docs.\n\ + Idea behind ndcg_rel, is that the expected value of ndcg is a smoothly\n\ + decreasing function, with discontinuities upward at each transistion\n\ + between positive gain levels in the ideal ndcg. Once the gain level \n\ + becomes 0, the expected value of ndcg then increases until all rel docs are\n\ + retrieved. Thus averaging ndcg is problematic, because these transistions\n\ + occur at different points for each topic. Since it is not unusual for\n\ + ndcg to start off near 1.0, decrease to 0.25, and then increase to 0.75\n\ + at various cutoffs, the points at which ndcg is measured are important.\n\ + This version averages ndcg over each relevant doc, where relevant is\n\ + defined as expected gain > 0. If a rel doc is not retrieved, then\n\ + ndcg for the doc is the dcg at the end of the retrieval / ideal dcg. \n\ + \n\ + Gain values are set to the appropriate relevance level by default. \n\ + The default gain can be overridden on the command line by having \n\ + comma separated parameters 'rel_level=gain'.\n\ + Eg, 'trec_eval -m ndcg_rel.1=3.5,2=9.0,4=7.0 ...'\n\ + will give gains 3.5, 9.0, 3.0, 7.0 for relevance levels 1,2,3,4\n\ + respectively (level 3 remains at the default).\n\ + Gains are allowed to be 0 or negative, and relevance level 0\n\ + can be given a gain.\n", + te_init_meas_s_float_p_pair, + te_calc_ndcg_rel, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + &default_ndcg_gains, -1}; + +/* Keep track of valid rel_levels and associated gains */ +/* Initialized in setup_gains */ +typedef struct { + long rel_level; + long num_at_level; + double gain; +} REL_GAIN; + +typedef struct { + REL_GAIN *rel_gains; + long num_gains; + long total_num_at_levels; +} GAINS; + +static int setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, + GAINS *gains); +static double get_gain (const long rel_level, const GAINS *gains); +static int comp_rel_gain (); + +static int +te_calc_ndcg_rel (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double results_gain, results_dcg; + double ideal_gain, ideal_dcg; + double sum = 0.0; + long num_rel_ret = 0; + long num_rel = 0; + long cur_level, num_at_level; + long i; + GAINS gains; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (UNDEF == setup_gains (tm, &res_rels, &gains)) + return (UNDEF); + + results_dcg = 0.0; + ideal_dcg = 0.0; + cur_level = gains.num_gains - 1; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain : 0.0; + num_at_level = 0; + + for (i = 0; i < res_rels.num_ret && ideal_gain > 0.0; i++) { + /* Calculate change in results dcg */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + if (results_gain != 0) + /* Note: i+2 since doc i has rank i+1 */ + results_dcg += results_gain / log2((double) (i+2)); + /* Calculate change in ideal dcg */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + if (ideal_gain > 0.0) { + num_rel++; + ideal_dcg += ideal_gain / log2((double)(i + 2)); + } + /* Average will include this point if rel */ + if (results_gain > 0) { + sum += results_dcg / ideal_dcg; + num_rel_ret++; + } + if (epi->debug_level > 0) + printf("ndcg_rel: %ld %ld %3.1f %6.4f %3.1f %6.4f %6.4f\n", + i, cur_level, results_gain, results_dcg, + ideal_gain, ideal_dcg, sum); + } + if (i < res_rels.num_ret) { + while (i < res_rels.num_ret) { + /* Calculate change in results dcg */ + results_gain = get_gain (res_rels.results_rel_list[i], &gains); + if (results_gain != 0) + results_dcg += results_gain / log2((double) (i+2)); + /* Average will include this point if rel */ + if (results_gain > 0) { + sum += results_dcg / ideal_dcg; + num_rel_ret++; + } + if (epi->debug_level > 0) + printf("ndcg_rel: %ld %ld %3.1f %6.4f %3.1f %6.4f %6.4f\n", + i, cur_level, results_gain, results_dcg, + 0.0, ideal_dcg, sum); + i++; + } + } + while (ideal_gain > 0.0) { + /* Calculate change in ideal dcg */ + num_at_level++; + while (cur_level >= 0 && + num_at_level > gains.rel_gains[cur_level].num_at_level) { + num_at_level = 1; + cur_level--; + ideal_gain = (cur_level >= 0) ? gains.rel_gains[cur_level].gain:0.0; + } + if (ideal_gain > 0.0) { + num_rel++; + ideal_dcg += ideal_gain / log2((double)(i + 2)); + } + if (epi->debug_level > 0) + printf("ndcg_rel: %ld %ld %3.1f %6.4f %3.1f %6.4f\n", + i, cur_level, 0.0, results_dcg, + ideal_gain, ideal_dcg); + i++; + } + + sum += ((double) (num_rel - num_rel_ret)) * results_dcg / ideal_dcg; + if (epi->debug_level > 0) + printf("ndcg_rel: %ld %ld %6.4f %6.4f %6.4f\n", + i, cur_level, results_dcg, ideal_dcg, sum); + if (sum > 0.0) + eval->values[tm->eval_index].value = sum / num_rel; + + Free (gains.rel_gains); + return (1); +} + +static int +setup_gains (const TREC_MEAS *tm, const RES_RELS *res_rels, GAINS *gains) +{ + FLOAT_PARAM_PAIR *pairs = NULL; + long num_pairs = 0; + long i,j; + long num_gains; + + if (tm->meas_params) { + pairs = (FLOAT_PARAM_PAIR *) tm->meas_params->param_values; + num_pairs = tm->meas_params->num_params; + } + + if (NULL == (gains->rel_gains = Malloc(res_rels->num_rel_levels + num_pairs, + REL_GAIN))) + return (UNDEF); + num_gains = 0; + for (i = 0; i < num_pairs; i++) { + gains->rel_gains[num_gains].rel_level = atol (pairs[i].name); + gains->rel_gains[num_gains].gain = (double) pairs[i].value; + gains->rel_gains[num_gains].num_at_level = 0; + num_gains++; + } + + for (i = 0; i < res_rels->num_rel_levels; i++) { + for (j = 0; j < num_gains && gains->rel_gains[j].rel_level != i; j++) + ; + if (j < num_gains) + /* Was included in list of parameters. Update occurrence info */ + gains->rel_gains[j].num_at_level = res_rels->rel_levels[i]; + else { + /* Not included in list of parameters. New gain level */ + gains->rel_gains[num_gains].rel_level = i; + gains->rel_gains[num_gains].gain = (double) i; + gains->rel_gains[num_gains].num_at_level = res_rels->rel_levels[i]; + num_gains++; + } + } + + /* Sort gains by increasing gain value */ + qsort ((char *) gains->rel_gains, + (int) num_gains, + sizeof (REL_GAIN), + comp_rel_gain); + + gains->total_num_at_levels = 0; + for (i = 0; i < num_gains; i++) + gains->total_num_at_levels += gains->rel_gains[i].num_at_level; + + gains->num_gains = num_gains; + return (1); +} + +static int comp_rel_gain (REL_GAIN *ptr1, REL_GAIN *ptr2) +{ + return (ptr1->gain - ptr2->gain); +} + +static double +get_gain (const long rel_level, const GAINS *gains) +{ + long i; + for (i = 0; i < gains->num_gains; i++) + if (rel_level == gains->rel_gains[i].rel_level) + return (gains->rel_gains[i].gain); + return (0.0); /* Print Error ?? */ +} + diff --git a/tools/eval/trec_eval.9.0.4/m_num_nonrel_judged_ret.c b/tools/eval/trec_eval.9.0.4/m_num_nonrel_judged_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..a68de02a04d26fec7e2a858a66ac3bfb8eb551e0 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_num_nonrel_judged_ret.c @@ -0,0 +1,50 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_num_nonrel_judged_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_num_nonrel_judged_ret = + {"num_nonrel_judged_ret", + " Number of non-relevant judged documents retrieved for topic. \n\ + Not an evaluation number per se, but gives details of retrieval results.\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_num_nonrel_judged_ret, + te_acc_meas_s, + te_calc_avg_meas_empty, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_num_nonrel_judged_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RES_RELS res_rels; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + eval->values[tm->eval_index].value = (double) + res_rels.num_ret - + res_rels.num_nonpool - + res_rels.num_unjudged_in_pool - + res_rels.num_rel_ret; + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_num_q.c b/tools/eval/trec_eval.9.0.4/m_num_q.c new file mode 100644 index 0000000000000000000000000000000000000000..95f1925dd1adfb5fc1d8ab2667cf6ef8fa1a1bec --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_num_q.c @@ -0,0 +1,55 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_num_q (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static int +te_calc_avg_num_q (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_num_q = + {"num_q", + " Number of topics results averaged over. May be different from\n\ + number of topics in the results file if -c was used on the command line \n\ + in which case number of topics in the rel_info file is used.\n", + te_init_meas_s_long, + te_calc_num_q, + te_acc_meas_s, + te_calc_avg_num_q, + te_print_single_meas_empty, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_num_q (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + eval->values[tm->eval_index].value = 1; + return (1); +} + +/* Need custom calc_avg because after -c flag, calculated value may not + agree with eval->num_queries. (Actually other ways to better do it now) */ +static int +te_calc_avg_num_q (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval) +{ + long num_queries = accum_eval->num_queries; + if (epi->average_complete_flag) + num_queries = all_rel_info->num_q_rels; + + accum_eval->values[tm->eval_index].value = num_queries; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_num_rel.c b/tools/eval/trec_eval.9.0.4/m_num_rel.c new file mode 100644 index 0000000000000000000000000000000000000000..078e4c322039ecb51a8df2afba31d9a8579213a3 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_num_rel.c @@ -0,0 +1,89 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_num_rel (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static int +te_calc_avg_num_rel (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_num_rel = + {"num_rel", + " Number of relevant documents for topic. \n\ + May be affected by Judged_docs_only and Max_retrieved_per_topic command\n\ + line parameters (as are most measures).\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_num_rel, + te_acc_meas_s, + te_calc_avg_num_rel, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_num_rel (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + eval->values[tm->eval_index].value = (double) res_rels.num_rel; + return (1); +} + +/* Need custom calc_avg because of -c flag (epi->average_comple_flag). + Have to go back to original qrels info to get num_qrels in all topics (not + just those with retrieved docs) */ +static int +te_calc_avg_num_rel (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval) +{ + long i,j,k; + long num_rel; + + if (! epi->average_complete_flag) + return (1); + + num_rel = 0; + for (i = 0; i < all_rel_info->num_q_rels; i++) { + if (0 == strcmp ("qrels", all_rel_info->rel_info[i].rel_format)) { + TEXT_QRELS_INFO *trec_qrels; + trec_qrels = (TEXT_QRELS_INFO *) all_rel_info->rel_info[i].q_rel_info; + for (j = 0; j < trec_qrels->num_text_qrels; j++) { + if (trec_qrels->text_qrels[j].rel > 0) + num_rel++; + } + } + else if (0 == strcmp ("qrels_jg", all_rel_info->rel_info[i].rel_format)) { + TEXT_QRELS_JG_INFO *trec_qrels; + trec_qrels = (TEXT_QRELS_JG_INFO *) all_rel_info->rel_info[i].q_rel_info; + for (j = 0; j < trec_qrels->num_text_qrels_jg; j++) { + for (k = 0; k < trec_qrels->text_qrels_jg[j].num_text_qrels; k++) { + if (trec_qrels->text_qrels_jg[j].text_qrels[k].rel > 0) + num_rel++; + } + } + } + else { + fprintf (stderr, "trec_eval: m_num_rel: rel_info format not qrels or qrels_jg\n"); + return (UNDEF); + } + } + + accum_eval->values[tm->eval_index].value = num_rel; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_num_rel_ret.c b/tools/eval/trec_eval.9.0.4/m_num_rel_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..6edc83d6375b643cb97108abf1a877fddb8943f9 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_num_rel_ret.c @@ -0,0 +1,46 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_num_rel_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_num_rel_ret = + {"num_rel_ret", + " Number of relevant documents retrieved for topic. \n\ + May be affected by Judged_docs_only and Max_retrieved_per_topic command\n\ + line parameters (as are most measures).\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_num_rel_ret, + te_acc_meas_s, + te_calc_avg_meas_empty, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_num_rel_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + + /* Can't just use results, since epi->only_judged_docs may be set */ + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + eval->values[tm->eval_index].value = (double) res_rels.num_rel_ret; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_num_ret.c b/tools/eval/trec_eval.9.0.4/m_num_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..3b2cdc88618871009e4b1178860c72f7c77467f6 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_num_ret.c @@ -0,0 +1,45 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_num_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_num_ret = + {"num_ret", + " Number of documents retrieved for topic. \n\ + May be affected by Judged_docs_only and Max_retrieved_per_topic command\n\ + line parameters (as are most measures).\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_num_ret, + te_acc_meas_s, + te_calc_avg_meas_empty, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_num_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + + /* Can't just use results, since epi->only_judged_docs may be set */ + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + eval->values[tm->eval_index].value = (double) res_rels.num_ret; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_avgjg.c b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg.c new file mode 100644 index 0000000000000000000000000000000000000000..7135a9f48818fc9f7a36fcd06228750271584bf0 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg.c @@ -0,0 +1,72 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_avgjg = + {"prefs_avgjg", + " Simple ratio of preferences fulfilled to preferences possible\n\ + within a judgment group, averaged over jgs. I.e., rather than considering\n\ + all preferences equal (prefs_simp), consider all judgment groups equal.\n\ + prefs_avgjg = AVERAGE_OVER_JG (fulfilled_jg / possible_jg);\n\ + May be useful in applications where user satisfaction is represented\n\ + by a jg per user, and it is not desirable for many preferences expressed\n\ + by user1 to swamp a few preferences by user2.\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), and counts as failure if neither A nor B retrieved.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_avgjg, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_avgjg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long ful, poss; + double sum; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + sum = 0.0; + + for (i = 0; i < results_prefs.num_jgs; i++) { + ful = results_prefs.jgs[i].num_prefs_fulfilled_ret; + ful += results_prefs.jgs[i].num_prefs_fulfilled_imp; + poss = results_prefs.jgs[i].num_prefs_possible_ret; + poss += results_prefs.jgs[i].num_prefs_possible_imp; + poss += results_prefs.jgs[i].num_prefs_possible_notoccur; + + if (poss) + sum += (double) ful / (double) poss; + } + /* Simple ratio of preferences fulfilled to preferences possible in + each jg, averaged over jgs */ + if (sum > 0.0) { + eval->values[tm->eval_index].value = + sum / (double) results_prefs.num_jgs; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_Rnonrel.c b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_Rnonrel.c new file mode 100644 index 0000000000000000000000000000000000000000..c7945c4aab2c00c2e0b2aa5a1d5abf9865c2418a --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_Rnonrel.c @@ -0,0 +1,231 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_avgjg_Rnonrel (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_avgjg_Rnonrel = + {"prefs_avgjg_Rnonrel", + " Ratio of preferences fulfilled to preferences possible within a\n\ + judgment group, averaged over jgs, except that the number of\n\ + nonrelevant retrieved docs (rel_level == 0.0) in each jg is set to\n\ + R, the number of relevant retrieved docs (rel_level > 0.0) in that jg.\n\ + \n\ + This addresses the general problem that the number of\n\ + nonrelevant docs judged for a topic can be critical to fair\n\ + evaluation - adding a couple of hundred preferences involving\n\ + nonrelevant docs (out of the possibly millions in a collection) can\n\ + both change the importance of the topic when averaging and even\n\ + change whether system A scores better than system B (even given\n\ + identical retrieval on the added nonrel docs).\n\ + \n\ + This measure conceptually sets the number of nonrelevant retrieved\n\ + docs of a jg to R. If the actual number, N, is less than R, then R\n\ + * (R-N) fulfilled preferences are added. If N is greater than R,\n\ + then only the first R (rank order) docs in the single ec with\n\ + rel_level = 0.0 are used and the number of preferences are\n\ + recalculated. \n\ + If there is a single jg with two equivalence classes (one of them 0.0), \n\ + then prefs_avgjg_Rnonrel is akin to the ranked measure bpref.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_avgjg_Rnonrel, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static void recalculate (const JG *jg, const long num_judged_ret, + long *ret_num_ful, long *ret_num_poss); + +static int +te_calc_prefs_avgjg_Rnonrel (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS rp; + long i; + double sum; + long R, N; + long num_ful, num_poss; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &rp)) + return (UNDEF); + + sum = 0.0; + for (i = 0; i < rp.num_jgs; i++) { + R = rp.jgs[i].num_rel; + N = rp.jgs[i].num_nonrel; + if (R >= N) { + /* All pref counts calculated are good, need to add R-N non_relevant + successes to all retrieved rel docs */ + num_ful = rp.jgs[i].num_prefs_fulfilled_ret; + num_ful += rp.jgs[i].num_prefs_fulfilled_imp; + num_poss = rp.jgs[i].num_prefs_possible_ret; + num_poss += rp.jgs[i].num_prefs_possible_imp; + num_poss += rp.jgs[i].num_prefs_possible_notoccur; + num_ful += rp.jgs[i].num_rel_ret * (R - N); + num_poss += rp.jgs[i].num_rel * (R - N); + sum += (double) num_ful / (double) num_poss; + } + else { + /* Need to recalculate pref counts from scratch since want to + ignore some nonrelevant docs that were counted */ + recalculate (&rp.jgs[i], rp.num_judged_ret, &num_ful, &num_poss); + sum += (double) num_ful / (double) num_poss; + } + } + /* average over jgs */ + if (sum > 0.0) { + eval->values[tm->eval_index].value = + sum / (double) rp.num_jgs; + } + return (1); +} + + +/* Recalculate preferences for this jg. Code here adapted from + form_prefs_counts. */ +/* Note: know num_nonrel_ret > 0, so don't have to worry + about degenerate cases here. Nonrel docs are in last jg->jg_ec_list. */ +static void +recalculate (const JG *jg, const long num_judged_ret, long *ret_num_ful, + long *ret_num_poss) +{ + long num_ful = 0; + long num_poss = 0; + + /* Prefs are represented in one of two possible ways in this JG - + either thorugh EC or through prefs_array. Calculate separately */ + if (jg->num_ecs > 0) { + long ec1, ec2; + long *ptr1, *ptr2; + /* Construct new last EC, composed of first R nonrel docs */ + EC new_nonrel_ec = {0.0, jg->num_rel, + jg->ecs[jg->num_ecs-1].docid_ranks}; + /* Calculate all prefs between rel docs */ + for (ec1 = 0; ec1 < jg->num_ecs; ec1++) { + for (ec2 = ec1 + 1; ec2 < jg->num_ecs-1; ec2++) { + for (ptr1 = jg->ecs[ec1].docid_ranks; + ptr1 < &jg->ecs[ec1].docid_ranks[jg->ecs[ec1].num_in_ec]; + ptr1++) { + for (ptr2 = jg->ecs[ec2].docid_ranks; + ptr2 < &jg->ecs[ec2].docid_ranks[jg->ecs[ec2].num_in_ec]; + ptr2++) { + if (*ptr1 < *ptr2 && *ptr1 < num_judged_ret) + /* judgment fulfilled */ + num_ful++; + else + num_poss++; + } + } + } + } + /* Calculate all prefs between rel docs and new non_rel EC */ + for (ec1 = 0; ec1 < jg->num_ecs; ec1++) { + for (ptr1 = jg->ecs[ec1].docid_ranks; + ptr1 < &jg->ecs[ec1].docid_ranks[jg->ecs[ec1].num_in_ec]; + ptr1++) { + for (ptr2 = new_nonrel_ec.docid_ranks; + ptr2 < &new_nonrel_ec.docid_ranks[new_nonrel_ec.num_in_ec]; + ptr2++) { + if (*ptr1 < *ptr2 && *ptr1 < num_judged_ret) + /* judgment fulfilled */ + num_ful++; + else + num_poss++; + } + } + } + num_poss += num_ful; + } + else { + /* Preference array. Go through jg->rel_array in order and find + the num_rel'th nonrel doc (rel_array = 0.0). Any nonrel doc + after that, will not be considered part of the pref array. + Will therefore ignore all rows and columns of the prefs array + that correspond to those nonrel docs. + Note code is now inefficient, but want it to remain parallel + to the code in form_prefs_count for now */ + long i,j; + long first_discarded_nonrel; + unsigned char **a = jg->prefs_array.array; + long num_nonrel_seen = 0; + long num_judged = jg->prefs_array.num_judged; + + for (i = 0; i < num_judged; i++) { + if (jg->rel_array[i] == 0.0) { + num_nonrel_seen++; + if (num_nonrel_seen == jg->num_rel + 1) + break; + } + } + first_discarded_nonrel = i; + + for (i = 0; i < num_judged_ret; i++) { + if (i >= first_discarded_nonrel && jg->rel_array[i] == 0.0) + continue; + for (j = 0; j < i; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref not fulfilled. Area A2 (see comment at top) */ + num_poss++; + } + } + for (j = i+1; j < num_judged_ret; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref fulfilled. Area A1 (see comment at top) */ + num_ful++; + } + } + for (j = num_judged_ret; j < num_judged; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref fulfilled implied. Area A3 (see comment at top) */ + num_ful++; + } + } + } + for (i = num_judged_ret; i < num_judged; i++) { + if (i >= first_discarded_nonrel && jg->rel_array[i] == 0.0) + continue; + for (j = 0; j < num_judged_ret; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref not fulfilled implied. Area A4 (see comment at top) */ + num_poss++; + } + } + for (j = num_judged_ret; j < num_judged; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref not occur at all. Area A5 (see comment at top) */ + num_poss++; + } + } + } + num_poss += num_ful; + } + *ret_num_ful = num_ful; + *ret_num_poss = num_poss; +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_Rnonrel_ret.c b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_Rnonrel_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..7696eaf44058e399bec0f69252b59d451433d74f --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_Rnonrel_ret.c @@ -0,0 +1,207 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_avgjg_Rnonrel_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_avgjg_Rnonrel_ret = + {"prefs_avgjg_Rnonrel_ret", + " Ratio of preferences fulfilled to preferences possible within a\n\ + judgment group, averaged over jgs, except that the number of\n\ + nonrelevant retrieved docs (rel_level == 0.0) in each jg is set to\n\ + R, the number of relevant retrieved docs (rel_level > 0.0) in that jg.\n\ + \n\ + This addresses the general problem that the number of\n\ + nonrelevant docs judged for a topic can be critical to fair\n\ + evaluation - adding a couple of hundred preferences involving\n\ + nonrelevant docs (out of the possibly millions in a collection) can\n\ + both change the importance of the topic when averaging and even\n\ + change whether system A scores better than system B (even given\n\ + identical retrieval on the added nonrel docs).\n\ + \n\ + This measure conceptually sets the number of nonrelevant retrieved\n\ + docs of a jg to R. If the actual number, N, is less than R, then R\n\ + * (R-N) fulfilled preferences are added. If N is greater than R,\n\ + then only the first R (rank order) docs in the single ec with\n\ + rel_level = 0.0 are used and the number of preferences are\n\ + recalculated. \n\ + If there is a single jg with two equivalence classes (one of them 0.0), \n\ + then prefs_avgjg_Rnonrel is akin to the ranked measure bpref.\n\ + For doc pref A>B, A and B must both be retrieved to be counted as either\n\ + fulfilled or possible.\n\ + pref_*_ret measures should be used for dynamic collections but are\n\ + inferior in most other applications.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_avgjg_Rnonrel_ret, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static void recalculate (const JG *jg, const long num_judged_ret, + long *ret_num_ful, long *ret_num_poss); + +static int +te_calc_prefs_avgjg_Rnonrel_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS rp; + long i; + double sum; + long R, N; + long num_ful, num_poss; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &rp)) + return (UNDEF); + + sum = 0.0; + for (i = 0; i < rp.num_jgs; i++) { + R = rp.jgs[i].num_rel_ret; + N = rp.jgs[i].num_nonrel_ret; + if (R >= N) { + /* All pref counts calculated are good, need to add R-N non_relevant + successes to all retrieved rel docs */ + num_ful = rp.jgs[i].num_prefs_fulfilled_ret; + num_poss = rp.jgs[i].num_prefs_possible_ret; + num_ful += rp.jgs[i].num_rel_ret * (R - N); + num_poss += rp.jgs[i].num_rel * (R - N); + sum += (double) num_ful / (double) num_poss; + } + else { + /* Need to recalculate pref counts from scratch since want to + ignore some nonrelevant docs that were counted */ + recalculate (&rp.jgs[i], rp.num_judged_ret, &num_ful, &num_poss); + sum += (double) num_ful / (double) num_poss; + } + } + /* average over jgs */ + if (sum > 0.0) { + eval->values[tm->eval_index].value = + sum / (double) rp.num_jgs; + } + return (1); +} + + +/* Recalculate preferences for this jg. Code here adapted from + form_prefs_counts. */ +/* Note: know num_nonrel_ret > 0, so don't have to worry + about degenerate cases here. Nonrel docs are in last jg->jg_ec_list. */ +static void +recalculate (const JG *jg, const long num_judged_ret, long *ret_num_ful, + long *ret_num_poss) +{ + long num_ful = 0; + long num_poss = 0; + + /* Prefs are represented in one of two possible ways in this JG - + either thorugh EC or through prefs_array. Calculate separately */ + if (jg->num_ecs > 0) { + long ec1, ec2; + long *ptr1, *ptr2; + /* Construct new last EC, composed of first R nonrel docs */ + EC new_nonrel_ec = {0.0, jg->num_rel_ret, + jg->ecs[jg->num_ecs-1].docid_ranks}; + /* Calculate all prefs between rel docs */ + for (ec1 = 0; ec1 < jg->num_ecs; ec1++) { + for (ec2 = ec1 + 1; ec2 < jg->num_ecs-1; ec2++) { + for (ptr1 = jg->ecs[ec1].docid_ranks; + ptr1 < &jg->ecs[ec1].docid_ranks[jg->ecs[ec1].num_in_ec] && + *ptr1 < num_judged_ret; + ptr1++) { + for (ptr2 = jg->ecs[ec2].docid_ranks; + ptr2 < &jg->ecs[ec2].docid_ranks[jg->ecs[ec2].num_in_ec] && + *ptr2 < num_judged_ret; + ptr2++) { + if (*ptr1 < *ptr2) + /* judgment fulfilled */ + num_ful++; + else + num_poss++; + } + } + } + } + /* Calculate all prefs between rel docs and new non_rel EC */ + for (ec1 = 0; ec1 < jg->num_ecs; ec1++) { + for (ptr1 = jg->ecs[ec1].docid_ranks; + ptr1 < &jg->ecs[ec1].docid_ranks[jg->ecs[ec1].num_in_ec] && + *ptr1 < num_judged_ret; + ptr1++) { + for (ptr2 = new_nonrel_ec.docid_ranks; + ptr2 < &new_nonrel_ec.docid_ranks[new_nonrel_ec.num_in_ec] && + *ptr2 < num_judged_ret; + ptr2++) { + if (*ptr1 < *ptr2) + /* judgment fulfilled */ + num_ful++; + else + num_poss++; + } + } + } + num_poss += num_ful; + } + else { + /* Preference array. Go through jg->rel_array in order and find + the num_rel'th nonrel doc (rel_array = 0.0). Any nonrel doc + after that, will not be considered part of the pref array. + Will therefore ignore all rows and columns of the prefs array + that correspond to those nonrel docs. + Note code is now inefficient, but want it to remain parallel + to the code in form_prefs_count for now */ + long i,j; + long first_discarded_nonrel; + unsigned char **a = jg->prefs_array.array; + long num_nonrel_seen = 0; + + for (i = 0; i < num_judged_ret; i++) { + if (jg->rel_array[i] == 0.0) { + num_nonrel_seen++; + if (num_nonrel_seen == jg->num_rel + 1) + break; + } + } + first_discarded_nonrel = i; + + for (i = 0; i < num_judged_ret; i++) { + if (i >= first_discarded_nonrel && jg->rel_array[i] == 0.0) + continue; + for (j = 0; j < i; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref not fulfilled. Area A2 (see comment at top) */ + num_poss++; + } + } + for (j = i+1; j < num_judged_ret; j++) { + if (j >= first_discarded_nonrel && jg->rel_array[j] == 0.0) + continue; + if (a[i][j]) { + /* Pref fulfilled. Area A1 (see comment at top) */ + num_ful++; + } + } + } + num_poss += num_ful; + } + *ret_num_ful = num_ful; + *ret_num_poss = num_poss; +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_imp.c b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_imp.c new file mode 100644 index 0000000000000000000000000000000000000000..8b93c15b1117e3024ce7a5d6e69696579f06b9cb --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_imp.c @@ -0,0 +1,72 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_avgjg_imp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_avgjg_imp = + {"prefs_avgjg_imp", + " Simple ratio of preferences fulfilled to preferences possible\n\ + within a judgment group, averaged over jgs. I.e., rather than considering\n\ + all preferences equal (prefs_simp), consider all judgment groups equal.\n\ + prefs_avgjg = AVERAGE_OVER_JG (fulfilled_jg / possible_jg);\n\ + May be useful in applications where user satisfaction is represented\n\ + by a jg per user, and it is not desirable for many preferences expressed\n\ + by user1 to swamp a few preferences by user2.\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), but ignores pair if neither A nor B retrieved.\n\ + pref_*_imp measures don't have any preferred applications that I know of,\n\ + but some people like them.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_avgjg_imp, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_avgjg_imp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long ful, poss; + double sum; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + sum = 0.0; + + for (i = 0; i < results_prefs.num_jgs; i++) { + ful = results_prefs.jgs[i].num_prefs_fulfilled_ret; + ful += results_prefs.jgs[i].num_prefs_fulfilled_imp; + poss = results_prefs.jgs[i].num_prefs_possible_ret; + poss += results_prefs.jgs[i].num_prefs_possible_imp; + + if (poss) + sum += (double) ful / (double) poss; + } + /* Simple ratio of preferences fulfilled to preferences possible in + each jg, averaged over jgs */ + if (sum > 0.0) { + eval->values[tm->eval_index].value = + sum / (double) results_prefs.num_jgs; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_ret.c b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..dd43e66c4df4395e9f1a0e35f867568311da94e8 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_avgjg_ret.c @@ -0,0 +1,71 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_avgjg_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_avgjg_ret = + {"prefs_avgjg_ret", + " Simple ratio of preferences fulfilled to preferences possible\n\ + within a judgment group, averaged over jgs. I.e., rather than considering\n\ + all preferences equal (prefs_simp), consider all judgment groups equal.\n\ + prefs_avgjg = AVERAGE_OVER_JG (fulfilled_jg / possible_jg);\n\ + May be useful in applications where user satisfaction is represented\n\ + by a jg per user, and it is not desirable for many preferences expressed\n\ + by user1 to swamp a few preferences by user2.\n\ + For doc pref A>B, A and B must both be retrieved to be counted as either\n\ + fulfilled or possible.\n\ + pref_*_ret measures should be used for dynamic collections but are\n\ + inferior in most other applications.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_avgjg_ret, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_avgjg_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long ful, poss; + double sum; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + sum = 0.0; + + for (i = 0; i < results_prefs.num_jgs; i++) { + ful = results_prefs.jgs[i].num_prefs_fulfilled_ret; + poss = results_prefs.jgs[i].num_prefs_possible_ret; + + if (poss) + sum += (double) ful / (double) poss; + } + /* Simple ratio of preferences fulfilled to preferences possible in + each jg, averaged over jgs */ + if (sum > 0.0) { + eval->values[tm->eval_index].value = + sum / (double) results_prefs.num_jgs; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_ful.c b/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_ful.c new file mode 100644 index 0000000000000000000000000000000000000000..0b2e4fcf6fd1ce456287e3c78bacf425d26ce20f --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_ful.c @@ -0,0 +1,53 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_num_prefs_ful (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_num_prefs_ful = + {"prefs_num_prefs_ful", + " Number of prefs fulfilled\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), and counts as failure if neither A nor B retrieved.\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_prefs_num_prefs_ful, + te_acc_meas_s, + te_calc_avg_meas_empty, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_prefs_num_prefs_ful (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long ful; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + ful = 0; + for (i = 0; i < results_prefs.num_jgs; i++) { + ful += results_prefs.jgs[i].num_prefs_fulfilled_ret; + ful += results_prefs.jgs[i].num_prefs_fulfilled_imp; + } + eval->values[tm->eval_index].value = (double) ful; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_ful_ret.c b/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_ful_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..f55f1a90b5720aaf806df86219dbc9b8b5a1f002 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_ful_ret.c @@ -0,0 +1,51 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_num_prefs_ful_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_num_prefs_ful_ret = + {"prefs_num_prefs_ful_ret", + " Number of prefs fulfilled among retrieved docs\n\ + For doc pref A>B, both A nd B must be retrieved to be counted.\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_prefs_num_prefs_ful_ret, + te_acc_meas_s, + te_calc_avg_meas_empty, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_prefs_num_prefs_ful_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long ful; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + ful = 0; + for (i = 0; i < results_prefs.num_jgs; i++) { + ful += results_prefs.jgs[i].num_prefs_fulfilled_ret; + } + eval->values[tm->eval_index].value = (double) ful; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_poss.c b/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_poss.c new file mode 100644 index 0000000000000000000000000000000000000000..ad29aca0b421181325d60df62bc44f34ed136283 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_num_prefs_poss.c @@ -0,0 +1,52 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_num_prefs_poss (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_num_prefs_poss = + {"prefs_num_prefs_poss", + " Number of possible prefs independent of whether documents retrieved\n\ + Summary figure is sum of individual topics, not average.\n", + te_init_meas_s_long, + te_calc_prefs_num_prefs_poss, + te_acc_meas_s, + te_calc_avg_meas_empty, + te_print_single_meas_s_long, + te_print_final_meas_s_long, + NULL, -1}; + +static int +te_calc_prefs_num_prefs_poss (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long poss; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + poss = 0; + for (i = 0; i < results_prefs.num_jgs; i++) { + poss += results_prefs.jgs[i].num_prefs_possible_ret; + poss += results_prefs.jgs[i].num_prefs_possible_imp; + poss += results_prefs.jgs[i].num_prefs_possible_notoccur; + } + eval->values[tm->eval_index].value = (double) poss; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_pair.c b/tools/eval/trec_eval.9.0.4/m_prefs_pair.c new file mode 100644 index 0000000000000000000000000000000000000000..f0d8916f8bd9818f1713de5746db38446f64e817 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_pair.c @@ -0,0 +1,87 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_pair (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_pair = + {"prefs_pair", + " Average over doc pairs of preference ratio for that pair.\n\ + If a doc pair satisfies 3 preferences but fails 2 preferences (preferences\n\ + from 5 different users), then the score for doc pair is 3/5.\n\ + Same as prefs_simp if there are no doc_pairs in multiple judgment groups.\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), and counts as failure if neither A nor B retrieved.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_pair, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_pair (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS rp; + long i, j; + double sum = 0; + long num_pairs = 0; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &rp)) + return (UNDEF); + + for (i = 0; i < rp.num_judged_ret; i++) { + for (j = i+1; j < rp.num_judged_ret; j++) { + if (rp.pref_counts.array[i][j] || + rp.pref_counts.array[j][i]) { + num_pairs++; + sum += (double) rp.pref_counts.array[i][j] / + (double) (rp.pref_counts.array[i][j] + + rp.pref_counts.array[j][i]); + } + } + } + + for (i = 0; i < rp.num_judged_ret; i++) { + for (j = rp.num_judged_ret; j < rp.num_judged; j++) { + if (rp.pref_counts.array[i][j] || + rp.pref_counts.array[j][i]) { + num_pairs++; + sum += (double) rp.pref_counts.array[i][j] / + (double) (rp.pref_counts.array[i][j] + + rp.pref_counts.array[j][i]); + } + } + } + for (i = rp.num_judged_ret; i < rp.num_judged; i++) { + for (j = i+1; j < rp.num_judged; j++) { + if (rp.pref_counts.array[i][j] || + rp.pref_counts.array[j][i]) { + num_pairs++; + } + } + } + + if (num_pairs) { + eval->values[tm->eval_index].value = + sum / (double) num_pairs; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_pair_imp.c b/tools/eval/trec_eval.9.0.4/m_prefs_pair_imp.c new file mode 100644 index 0000000000000000000000000000000000000000..4f61bb58fd4c1e9eabdc9a5aaa1b0a7906f3a24c --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_pair_imp.c @@ -0,0 +1,81 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_pair_imp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_pair_imp = + {"prefs_pair_imp", + " Average over doc pairs of preference ratio for that pair.\n\ + If a doc pair satisfies 3 preferences but fails 2 preferences (preferences\n\ + from 5 different users), then the score for doc pair is 3/5.\n\ + Same as prefs_simp if there are no doc_pairs in multiple judgment groups.\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), but ignores pair if neither A nor B retrieved.\n\ + pref_*_imp measures don't have any preferred applications that I know of,\n\ + but some people like them.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_pair_imp, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_pair_imp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS rp; + long i, j; + double sum = 0; + long num_pairs = 0; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &rp)) + return (UNDEF); + + for (i = 0; i < rp.num_judged_ret; i++) { + for (j = i+1; j < rp.num_judged_ret; j++) { + if (rp.pref_counts.array[i][j] || + rp.pref_counts.array[j][i]) { + num_pairs++; + sum += (double) rp.pref_counts.array[i][j] / + (double) (rp.pref_counts.array[i][j] + + rp.pref_counts.array[j][i]); + } + } + } + + for (i = 0; i < rp.num_judged_ret; i++) { + for (j = rp.num_judged_ret; j < rp.num_judged; j++) { + if (rp.pref_counts.array[i][j] || + rp.pref_counts.array[j][i]) { + num_pairs++; + sum += (double) rp.pref_counts.array[i][j] / + (double) (rp.pref_counts.array[i][j] + + rp.pref_counts.array[j][i]); + } + } + } + + if (num_pairs) { + eval->values[tm->eval_index].value = + sum / (double) num_pairs; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_pair_ret.c b/tools/eval/trec_eval.9.0.4/m_prefs_pair_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..61a73cbadcd40e54e24134acd9acf8682d3e9f16 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_pair_ret.c @@ -0,0 +1,71 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_pair_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_pair_ret = + {"prefs_pair_ret", + " Average over doc pairs of preference ratio for that pair.\n\ + If a doc pair satisfies 3 preferences but fails 2 preferences (preferences\n\ + from 5 different users), then the score for doc pair is 3/5.\n\ + Same as prefs_simp if there are no doc_pairs in multiple judgment groups.\n\ + For doc pref A>B, A and B must both be retrieved to be counted as either\n\ + fulfilled or possible.\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), and counts as failure if neither A nor B retrieved.\n\ + pref_*_ret measures should be used for dynamic collections but are\n\ + inferior in most other applications.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_pair_ret, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_pair_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS rp; + long i, j; + double sum = 0; + long num_pairs = 0; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &rp)) + return (UNDEF); + + for (i = 0; i < rp.num_judged_ret; i++) { + for (j = i+1; j < rp.num_judged_ret; j++) { + if (rp.pref_counts.array[i][j] || + rp.pref_counts.array[j][i]) { + num_pairs++; + sum += (double) rp.pref_counts.array[i][j] / + (double) (rp.pref_counts.array[i][j] + + rp.pref_counts.array[j][i]); + } + } + } + + if (num_pairs) { + eval->values[tm->eval_index].value = + sum / (double) num_pairs; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_simp.c b/tools/eval/trec_eval.9.0.4/m_prefs_simp.c new file mode 100644 index 0000000000000000000000000000000000000000..752e9c8059eed6f99afc02056331062492ec0d03 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_simp.c @@ -0,0 +1,63 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_simp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_simp = + {"prefs_simp", + " Simple ratio of preferences fulfilled to preferences possible.\n\ + If a doc pair satisfies two preferences, both are counted.\n\ + If preferences are conflicted for a doc pair, all are counted\n\ + (and thus max possible score may be less than 1.0 for topic).\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), and counts as failure if neither A nor B retrieved.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_simp, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_simp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long poss, ful; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + ful = poss = 0; + for (i = 0; i < results_prefs.num_jgs; i++) { + ful += results_prefs.jgs[i].num_prefs_fulfilled_ret; + ful += results_prefs.jgs[i].num_prefs_fulfilled_imp; + poss += results_prefs.jgs[i].num_prefs_possible_ret; + poss += results_prefs.jgs[i].num_prefs_possible_imp; + poss += results_prefs.jgs[i].num_prefs_possible_notoccur; + } + /* Simple ratio of preferences fulfilled to preferences possible */ + if (poss) { + eval->values[tm->eval_index].value = + (double) ful / (double) poss; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_simp_imp.c b/tools/eval/trec_eval.9.0.4/m_prefs_simp_imp.c new file mode 100644 index 0000000000000000000000000000000000000000..0a812df1b5504c0bfe4f6ebc600af772335d8d5c --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_simp_imp.c @@ -0,0 +1,64 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_simp_imp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_simp_imp = + {"prefs_simp_imp", + " Simple ratio of preferences fulfilled to preferences possible.\n\ + If a doc pair satisfies two preferences, both are counted.\n\ + If preferences are conflicted for a doc pair, all are counted\n\ + (and thus max possible score may be less than 1.0 for topic).\n\ + For doc pref A>B, this includes implied preferences (only one of A or B\n\ + retrieved), but ignores pair if neither A nor B retrieved.\n\ + pref_*_imp measures don't have any preferred applications that I know of,\n\ + but some people like them.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_simp_imp, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_simp_imp (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long poss, ful; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + ful = poss = 0; + for (i = 0; i < results_prefs.num_jgs; i++) { + ful += results_prefs.jgs[i].num_prefs_fulfilled_ret; + ful += results_prefs.jgs[i].num_prefs_fulfilled_imp; + poss += results_prefs.jgs[i].num_prefs_possible_ret; + poss += results_prefs.jgs[i].num_prefs_possible_imp; + } + /* Simple ratio of preferences fulfilled to preferences possible */ + if (poss) { + eval->values[tm->eval_index].value = + (double) ful / (double) poss; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_prefs_simp_ret.c b/tools/eval/trec_eval.9.0.4/m_prefs_simp_ret.c new file mode 100644 index 0000000000000000000000000000000000000000..d2816dc99a41d2dbf5653ebe44c33101ec947474 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_prefs_simp_ret.c @@ -0,0 +1,63 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_prefs_simp_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_prefs_simp_ret = + {"prefs_simp_ret", + " Simple ratio of preferences fulfilled to preferences possible among.\n\ + the retrieved docs. \n\ + If a doc pair satisfies two preferences, both are counted.\n\ + If preferences are conflicted for a doc pair, all are counted\n\ + (and thus max possible score may be less than 1.0 for topic).\n\ + For doc pref A>B, A and B must both be retrieved to be counted as either\n\ + fulfilled or possible.\n\ + pref_*_ret measures should be used for dynamic collections but are\n\ + inferior in most other applications.\n\ + Assumes '-R prefs' or '-R qrels_prefs'\n", + te_init_meas_s_float, + te_calc_prefs_simp_ret, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_prefs_simp_ret (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RESULTS_PREFS results_prefs; + long i; + long poss, ful; + + if (UNDEF == form_prefs_counts (epi, rel_info, results, &results_prefs)) + return (UNDEF); + + ful = poss = 0; + for (i = 0; i < results_prefs.num_jgs; i++) { + ful += results_prefs.jgs[i].num_prefs_fulfilled_ret; + poss += results_prefs.jgs[i].num_prefs_possible_ret; + } + /* Simple ratio of preferences fulfilled to preferences possible */ + if (poss) { + eval->values[tm->eval_index].value = + (double) ful / (double) poss; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_recall.c b/tools/eval/trec_eval.9.0.4/m_recall.c new file mode 100644 index 0000000000000000000000000000000000000000..5d29c86009540df4a9273c1883c6e4152ba5debe --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_recall.c @@ -0,0 +1,75 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_recall (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static long long_cutoff_array[] = {5, 10, 15, 20, 30, 100, 200, 500, 1000}; +static PARAMS default_recall_cutoffs = { + NULL, sizeof (long_cutoff_array) / sizeof (long_cutoff_array[0]), + &long_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_recall = + {"recall", + " Recall at cutoffs\n\ + Recall (relevant retrieved / relevant) measured at various doc level\n\ + cutoffs in the ranking. If the cutoff is larger than the number of docs\n\ + retrieved, then it is assumed nonrelevant docs fill in the rest.\n\ + REcall is a fine single topic measure, but does not average well.\n\ + Cutoffs must be positive without duplicates\n\ + Default param: -m recall.5,10,15,20,30,100,200,500,1000\n", + te_init_meas_a_float_cut_long, + te_calc_recall, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_recall_cutoffs, -1}; + +static int +te_calc_recall (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index = 0; + long i; + RES_RELS res_rels; + long rel_so_far = 0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (0 == res_rels.num_rel) + return (0); + + for (i = 0; i < res_rels.num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note cutoffs guaranteed to be positive by init_meas */ + eval->values[tm->eval_index + cutoff_index].value = + (double) rel_so_far / (double) res_rels.num_rel; + if (++cutoff_index == tm->meas_params->num_params) + break; + } + if (res_rels.results_rel_list[i] >= epi->relevance_level) + rel_so_far++; + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + eval->values[tm->eval_index + cutoff_index].value = + (double) rel_so_far / (double) res_rels.num_rel; + cutoff_index++; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_recip_rank.c b/tools/eval/trec_eval.9.0.4/m_recip_rank.c new file mode 100644 index 0000000000000000000000000000000000000000..8f46ec4d843ee7bfe75d692d5f93e574e30a910e --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_recip_rank.c @@ -0,0 +1,52 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_recip_rank (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_recip_rank = + {"recip_rank", + " Reciprocal Rank of the first relevant retrieved doc.\n\ + Measure is most useful for tasks in which there is only one relevant\n\ + doc, or the user only wants one relevant doc.\n", + te_init_meas_s_float, + te_calc_recip_rank, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_recip_rank (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RES_RELS res_rels; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + for (i = 0; i < res_rels.num_ret; i++) { + if (res_rels.results_rel_list[i] >= epi->relevance_level) + break; + } + if (i < res_rels.num_ret) + eval->values[tm->eval_index].value = + (double) 1.0 / (double) (i+1); + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_rel_P.c b/tools/eval/trec_eval.9.0.4/m_rel_P.c new file mode 100644 index 0000000000000000000000000000000000000000..bad52014b4df2a2797b57b885106ba8d7adb4bc4 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_rel_P.c @@ -0,0 +1,74 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_rel_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); +static long long_cutoff_array[] = {5, 10, 15, 20, 30, 100, 200, 500, 1000}; +static PARAMS default_relative_P_cutoffs = { + NULL, sizeof (long_cutoff_array) / sizeof (long_cutoff_array[0]), + &long_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_relative_P = + {"relative_P", + " Relative Precision at cutoffs\n\ + Precision at cutoff relative to the maximum possible precision at that\n\ + cutoff. Equivalent to Precision up until R, and then recall after R\n\ + Cutoffs must be positive without duplicates\n\ + Default params: -m relative_P.5,10,15,20,30,100,200,500,1000\n", + te_init_meas_a_float_cut_long, + te_calc_rel_P, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_relative_P_cutoffs, -1}; + +static int +te_calc_rel_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index = 0; + long i; + RES_RELS rr; + long rel_so_far = 0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &rr)) + return (UNDEF); + + if (rr.num_rel == 0) + return (0); + + for (i = 0; i < rr.num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note cutoffs guaranteed to be positive by init_meas */ + eval->values[tm->eval_index + cutoff_index].value = + (double) rel_so_far / (double)((i > rr.num_rel) ? rr.num_rel:i); + if (++cutoff_index == tm->meas_params->num_params) + break; + } + if (rr.results_rel_list[i] >= epi->relevance_level) + rel_so_far++; + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + i = cutoffs[cutoff_index]; + eval->values[tm->eval_index + cutoff_index].value = + (double) rel_so_far / (double) ((i > rr.num_rel) ? rr.num_rel : i); + cutoff_index++; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_relstring.c b/tools/eval/trec_eval.9.0.4/m_relstring.c new file mode 100644 index 0000000000000000000000000000000000000000..5123619068e794732200e93922a2941315703b63 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_relstring.c @@ -0,0 +1,105 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + + +static double relstring_len[] = {10.0}; +static PARAMS default_relstring_params = {NULL, 1, &relstring_len[0]}; + +static char *current_string; +static long string_len = 0; + +static int te_calc_relstring(const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); +static int te_print_q_relstring (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval); +static int te_print_relstring (const EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_relstring = + {"relstring", + " The relevance values for the first N (default 10) retrieved docs\n\ + are printed as a string, one character per relevance value for a doc.\n\ + If the relevance value is between 0 and 9, it is printed.\n\ + If the value is > 9, '>' is printed.\n\ + If the document was not in the pool to be judged, '-' is printed.\n\ + if the document was in the pool, but unjudged (eg, infAP), '.' is printed\n\ + if the document has some other relevance value, '<' is printed.\n\ + Measure is only printed for individual queries.\n\ + Default usage: -m relstring.10 \n", + te_init_meas_s_float_p_float, + te_calc_relstring, + te_acc_meas_empty, + te_calc_avg_meas_empty, + te_print_q_relstring, + te_print_relstring, + (void *) &default_relstring_params, -1}; + +static int +te_calc_relstring (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + double *params = (double *) tm->meas_params->param_values; + RES_RELS res_rels; + long i, len; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + len = MIN ((long) params[0], res_rels.num_ret); + if (len < 0) len = 0; + + if (NULL == (current_string = + te_chk_and_malloc (current_string, &string_len, len+1, 1))) + return (UNDEF); + + for (i = 0; i < len; i++) { + char c; + long rel = res_rels.results_rel_list[i]; + if (rel > 9) c = '>'; + else if (rel >= 0) c = '0' + rel; + else if (rel == RELVALUE_NONPOOL) c = '-'; + else if (rel == RELVALUE_UNJUDGED) c = '.'; + else c = '<'; + current_string[i] = c; + } + current_string[i] = '\0'; + + return (1); +} + +static int +te_print_q_relstring (const EPI *epi, const TREC_MEAS *tm,const TREC_EVAL *eval) +{ + printf ("%-22s\t%s\t'%s'\n", + eval->values[tm->eval_index].name, + eval->qid, + current_string); + return (1); +} + + +static int +te_print_relstring (const EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + if (string_len > 0) { + string_len = 0; + Free (current_string); + } + if (tm->meas_params->printable_params) { + Free (eval->values[tm->eval_index].name); + Free (tm->meas_params->printable_params); + Free (tm->meas_params->param_values); + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_runid.c b/tools/eval/trec_eval.9.0.4/m_runid.c new file mode 100644 index 0000000000000000000000000000000000000000..66c1b5ea02a118b8bb12ae72821fc3a8b6ea7458 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_runid.c @@ -0,0 +1,47 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_runid (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static int +te_print_runid (const EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_runid = + {"runid", + " Runid given by results input file.\n", + te_init_meas_empty, + te_calc_runid, + te_acc_meas_empty, + te_calc_avg_meas_empty, + te_print_single_meas_empty, + te_print_runid, + NULL, -1}; + +static char *runid; +static int +te_calc_runid (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + runid = results->run_id; + return (1); +} + +static int +te_print_runid (const EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + if (epi->summary_flag) + printf ("%-22s\t%s\t%s\n", "runid", eval->qid, runid); + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_set_F.c b/tools/eval/trec_eval.9.0.4/m_set_F.c new file mode 100644 index 0000000000000000000000000000000000000000..6108bbad22369eb66ece53ecf5b0e77142e3b5cd --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_set_F.c @@ -0,0 +1,60 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_set_F (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); +static double set_F_param_array[] = {1.0}; +static PARAMS default_set_F_params = { + NULL, sizeof (set_F_param_array) / sizeof (set_F_param_array[0]), + &set_F_param_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_set_F = + {"set_F", + " Set F measure: weighted harmonic mean of recall and precision\n\ + set_Fx = (x+1) * P * R / (R + x*P)\n\ + where x is the relative importance of R to P (default 1.0).\n\ + Default usage: trec_eval -m set_F.1.0 ...\n\ + Cite: Variant of van Rijsbergen's E measure ('Information Retrieval',\n\ + Butterworths, 1979).\n", + te_init_meas_s_float_p_float, + te_calc_set_F, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + (void *) &default_set_F_params, -1}; + +static int +te_calc_set_F (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + double *params = (double *) tm->meas_params->param_values; + RES_RELS res_rels; + double x, P, R; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (res_rels.num_rel_ret) { + P = (double) res_rels.num_rel_ret / + (double) res_rels.num_ret; + R = (double) res_rels.num_rel_ret / + (double) res_rels.num_rel; + x = params[0]; + eval->values[tm->eval_index].value = + (x + 1.0) * P * R / (x * P + R); + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_set_P.c b/tools/eval/trec_eval.9.0.4/m_set_P.c new file mode 100644 index 0000000000000000000000000000000000000000..8d96dff76b4fae9546a7e85f4a9743987fa6760b --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_set_P.c @@ -0,0 +1,51 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_set_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_set_P = + {"set_P", + " Set Precision: num_relevant_retrieved / num_retrieved \n\ + Precision over all docs retrieved for a topic.\n\ + Was known as exact_prec in earlier versions of trec_eval\n\ + Note: trec_eval -m P.50 ...\n\ + is different from \n\ + trec_eval -M 50 -m set_P ...\n\ + in that the latter will not fill in with nonrel docs if less than \n\ + 50 docs retrieved\n", + te_init_meas_s_float, + te_calc_set_P, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_set_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (res_rels.num_ret) + eval->values[tm->eval_index].value = + (double) res_rels.num_rel_ret / + (double) res_rels.num_ret; + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_set_map.c b/tools/eval/trec_eval.9.0.4/m_set_map.c new file mode 100644 index 0000000000000000000000000000000000000000..f46d4ff8a451622c79a360f72fc5f0c07c7acb59 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_set_map.c @@ -0,0 +1,53 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_set_map (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_set_map = + {"set_map", + " Set map: num_relevant_retrieved**2 / (num_retrieved*num_rel)\n\ + Unranked set map, where the precision due to all relevant retrieved docs\n\ + is the set precision, and the precision due to all relevant not-retrieved\n\ + docs is set to 0.\n\ + Was known as exact_unranked_avg_prec in earlier versions of trec_eval.\n\ + Another way of loooking at this is Recall * Precision on the set of\n\ + docs retrieved for a topic.\n", + te_init_meas_s_float, + te_calc_set_map, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_set_map (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (res_rels.num_ret && res_rels.num_rel) + eval->values[tm->eval_index].value = + ((double) res_rels.num_rel_ret * + (double) res_rels.num_rel_ret) / + ((double) res_rels.num_ret * + (double) res_rels.num_rel); + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_set_recall.c b/tools/eval/trec_eval.9.0.4/m_set_recall.c new file mode 100644 index 0000000000000000000000000000000000000000..6be7493e3fe63568911d374178570aaec4b94536 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_set_recall.c @@ -0,0 +1,49 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_set_recall (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_set_recall = + {"set_recall", + " Set Recall: num_relevant_retrieved / num_relevant \n\ + Recall over all docs retrieved for a topic.\n\ + Was known as exact_recall in earlier versions of trec_eval", + te_init_meas_s_float, + te_calc_set_recall, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_set_recall (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RES_RELS res_rels; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (res_rels.num_rel) + eval->values[tm->eval_index].value = + (double) res_rels.num_rel_ret / + (double) res_rels.num_rel; + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_set_rel_P.c b/tools/eval/trec_eval.9.0.4/m_set_rel_P.c new file mode 100644 index 0000000000000000000000000000000000000000..93a72a7048079291b94d9d5750fe91b36d15fd1a --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_set_rel_P.c @@ -0,0 +1,52 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_set_relative_P (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval); + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_set_relative_P = + {"set_relative_P", + " Relative Set Precision: P / (Max possible P for this size set) \n\ + Relative precision over all docs retrieved for a topic.\n\ + Was known as exact_relative_prec in earlier versions of trec_eval\n\ + Note: trec_eval -m relative_P.50 ...\n\ + is different from \n\ + trec_eval -M 50 -m set_relative_P ...\n", + te_init_meas_s_float, + te_calc_set_relative_P, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_set_relative_P (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, + TREC_EVAL *eval) +{ + RES_RELS res_rels; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + if (res_rels.num_ret && res_rels.num_rel) + eval->values[tm->eval_index].value = + (double) res_rels.num_rel_ret / + (double) MIN (res_rels.num_ret, res_rels.num_rel); + + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_success.c b/tools/eval/trec_eval.9.0.4/m_success.c new file mode 100644 index 0000000000000000000000000000000000000000..3cf815c90ec131099f5ff3f7d5855f8ced36a70a --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_success.c @@ -0,0 +1,72 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_success (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static long success_cutoff_array[] = {1, 5, 10}; +static PARAMS default_success_cutoffs = { + NULL, sizeof (success_cutoff_array) / sizeof (success_cutoff_array[0]), + &success_cutoff_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_success = + {"success", + " Success at cutoffs\n\ + Success (a relevant doc has been retrieved) measured at various doc level\n\ + cutoffs in the ranking.\n\ + If the cutoff is larger than the number of docs retrieved, then\n\ + it is assumed nonrelevant docs fill in the rest.\n\ + Cutoffs must be positive without duplicates\n\ + Default param: trec_eval -m success.1,5,10\n\ + History: Developed by Stephen Tomlinson.\n", + te_init_meas_a_float_cut_long, + te_calc_success, + te_acc_meas_a_cut, + te_calc_avg_meas_a_cut, + te_print_single_meas_a_cut, + te_print_final_meas_a_cut, + (void *) &default_success_cutoffs, -1}; + +static int +te_calc_success (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs = (long *) tm->meas_params->param_values; + long cutoff_index = 0; + long i; + RES_RELS res_rels; + long rel_so_far = 0; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + for (i = 0; i < res_rels.num_ret; i++) { + if (i == cutoffs[cutoff_index]) { + /* Calculate previous cutoff threshold. + Note i guaranteed to be positive by init_meas */ + eval->values[tm->eval_index + cutoff_index].value = + rel_so_far ? 1.0 : 0.0; + if (++cutoff_index == tm->meas_params->num_params) + break; + } + if (res_rels.results_rel_list[i] >= epi->relevance_level) + rel_so_far++; + } + /* calculate values for those cutoffs not achieved */ + while (cutoff_index < tm->meas_params->num_params) { + eval->values[tm->eval_index + cutoff_index].value = + rel_so_far ? 1.0 : 0.0; + cutoff_index++; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_utility.c b/tools/eval/trec_eval.9.0.4/m_utility.c new file mode 100644 index 0000000000000000000000000000000000000000..8486d84f98ee04fa4c0ef278446876c708ffe64e --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_utility.c @@ -0,0 +1,73 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_utility (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +static double utility_param_array[] = {1.0, -1.0, 0.0, 0.0}; +static PARAMS default_utility_params = { + NULL, sizeof (utility_param_array) / sizeof (utility_param_array[0]), + &utility_param_array[0]}; + +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_utility = + {"utility", + " Set utility measure\n\ + Set evaluation based on contingency table:\n\ + relevant nonrelevant\n\ + retrieved a b\n\ + nonretrieved c d\n\ + where utility = p1 * a + p2 * b + p3 * c + p4 * d\n\ + and p1-4 are parameters (given on command line in that order).\n\ + Conceptually, each retrieved relevant doc is worth something positive to\n\ + a user, each retrieved nonrelevant doc has a negative worth, each \n\ + relevant doc not retrieved may have a negative worth, and each\n\ + nonrelevant doc not retrieved may have a (small) positive worth.\n\ + The overall measure is simply a weighted sum of these values.\n\ + If p4 is non-zero, then '-N num_docs_in_coll' may also be needed - the\n\ + standard results and rel_info files do not contain that information.\n\ + Default usage: -m utility.1.0,-1.0,0.0,0.0 ...\n\ + Warning: Current version summary evaluation averages over all topics;\n\ + it could be argued that simply summing is more useful (but not backward\n\ + compatible)\n", + te_init_meas_s_float_p_float, + te_calc_utility, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float_p, + (void *) &default_utility_params, -1}; + +static int +te_calc_utility (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval) +{ + double *params = (double *) tm->meas_params->param_values; + RES_RELS rr; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &rr)) + return (UNDEF); + + if (tm->meas_params->num_params != 4) { + fprintf (stderr, + "trec_eval.calc_utility: improper number of coefficients\n"); + return (UNDEF); + } + + eval->values[tm->eval_index].value = + params[0] * rr.num_rel_ret + + params[1] * (rr.num_ret - rr.num_rel_ret) + + params[2] * (rr.num_rel - rr.num_rel_ret) + + params[3] * (epi->num_docs_in_coll + rr.num_rel_ret - rr.num_ret - + rr.num_rel); + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/m_yaap.c b/tools/eval/trec_eval.9.0.4/m_yaap.c new file mode 100644 index 0000000000000000000000000000000000000000..b6bf2559576ab9872959607469fa3d31618330d8 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/m_yaap.c @@ -0,0 +1,60 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +static int +te_calc_yaap (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, const TREC_MEAS *tm, TREC_EVAL *eval); +/* See trec_eval.h for definition of TREC_MEAS */ +TREC_MEAS te_meas_yaap = {"yaap", + " Yet Another Average Precision\n\ + Adaptation of MAP proposed by Stephen Robertson to get a value\n\ + that is more globally averagable than MAP. Should be monotonic with\n\ + MAP on a single topic, but handles extreme values better.\n\ + log ((1 + sum_probrel) / (1 + num_rel - sum_probrel))\n\ + where sum_probrel = sum over all rels of (numrel_before_it / current rank)\n\ + Cite: 'On Smoothing Average Precision', Stephen Robertson.\n\ + ECIR 2012, LNCS 7224, pp.158-169. 2012.\n\ + Edited by R.Baeza-Yates et al. Springer-Verlag Berlin\n", + te_init_meas_s_float, + te_calc_yaap, + te_acc_meas_s, + te_calc_avg_meas_s, + te_print_single_meas_s_float, + te_print_final_meas_s_float, + NULL, -1}; + +static int +te_calc_yaap (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results, + const TREC_MEAS *tm, TREC_EVAL *eval) +{ + RES_RELS res_rels; + double sum; + long rel_so_far; + long i; + + if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels)) + return (UNDEF); + + rel_so_far = 0; + sum = 0.0; + for (i = 0; i < res_rels.num_ret; i++) { + if (res_rels.results_rel_list[i] >= epi->relevance_level) { + rel_so_far++; + sum += (double) rel_so_far / (double) (i + 1); + } + } + eval->values[tm->eval_index].value = + log ( (1.0 + sum) / + (1.0 + (double) res_rels.num_rel - sum)); + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/meas_acc.c b/tools/eval/trec_eval.9.0.4/meas_acc.c new file mode 100644 index 0000000000000000000000000000000000000000..0f7ddf8ce5a3235f6f215f1bed0b149ce52a594f --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/meas_acc.c @@ -0,0 +1,57 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" + +/* Procedures for accumulations of results of several default + formats of measure values. + Used in acc_meas procedure description of TREC_MEAS in trec_eval.h: + typedef struct trec_meas { + ... + * Merge info for single query into summary info * + int (* acc_meas) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *q_eval, TREC_EVAL *summ_eval); + ... + } TREC_MEAS; + Measures are defined in measures.c. +*/ + +/* ---------------- Acc measure generic procedures -------------- */ + +/* Measure does not require accumulation */ +int +te_acc_meas_empty (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *q_eval, TREC_EVAL *accum_eval) +{ + return (1); +} + +/* Measure is a single float/long that should now be summed */ +int +te_acc_meas_s (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *q_eval, TREC_EVAL *accum_eval) +{ + accum_eval->values[tm->eval_index].value += + q_eval->values[tm->eval_index].value; + return (1); +} + +/* Measure is an array with cutoffs */ +int +te_acc_meas_a_cut (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *q_eval, TREC_EVAL *accum_eval) +{ + long i; + + for (i = 0; i < tm->meas_params->num_params; i++) { + accum_eval->values[tm->eval_index + i].value += + q_eval->values[tm->eval_index + i].value; + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/meas_avg.c b/tools/eval/trec_eval.9.0.4/meas_avg.c new file mode 100644 index 0000000000000000000000000000000000000000..c4035e504555ab54a21e6f8c474bc0f65b538659 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/meas_avg.c @@ -0,0 +1,90 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" + +/* Generic procedures for calculating averages of measures, see trec_eval.h + typedef struct trec_meas { + ... + * Calculate final averages (if needed) from summary info * + int (* calc_average) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *eval); + ... + } TREC_MEAS; + Measures are defined in measures.c. +*/ + +/* Measure does not require averaging */ +int +te_calc_avg_meas_empty (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *eval) +{ + return (1); +} + +/* Measure is a single float/long that should now be averaged */ +int +te_calc_avg_meas_s (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval) +{ + long num_queries = accum_eval->num_queries; + if (epi->average_complete_flag) + num_queries = all_rel_info->num_q_rels; + + if (num_queries) + accum_eval->values[tm->eval_index].value /= num_queries; + return (1); +} + +/* Measure is an array with cutoffs */ +int +te_calc_avg_meas_a_cut (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval) +{ + long i; + long num_queries = accum_eval->num_queries; + if (epi->average_complete_flag) + num_queries = all_rel_info->num_q_rels; + + if (num_queries) { + for (i = 0; i < tm->meas_params->num_params; i++) { + accum_eval->values[tm->eval_index + i].value /= + num_queries; + } + } + return (1); +} + +/* Measure is a single float with no parameters to be averaged with + geometric mean */ +int +te_calc_avg_meas_s_gm (const EPI *epi, const TREC_MEAS *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *accum_eval) +{ + double sum; + long num_queries = accum_eval->num_queries; + if (epi->average_complete_flag) + num_queries = all_rel_info->num_q_rels; + + if (num_queries > 0) { + sum = accum_eval->values[tm->eval_index].value; + if (epi->average_complete_flag) + /* Must patch up averages for any missing queries, since */ + /* value of 0 means perfection */ + sum += (num_queries - accum_eval->num_queries) * + log (MIN_GEO_MEAN); + + accum_eval->values[tm->eval_index].value = + exp ((double) (sum / num_queries)); + } + return (1); +} + + diff --git a/tools/eval/trec_eval.9.0.4/meas_init.c b/tools/eval/trec_eval.9.0.4/meas_init.c new file mode 100644 index 0000000000000000000000000000000000000000..5a41dd3645c3276633abd476bc77644a40da2477 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/meas_init.c @@ -0,0 +1,519 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" + +/* Procedures for initialization of several default formats of measure values. + Used in init_meas procedure description of TREC_MEAS in trec_eval.h: + typedef struct trec_meas { + ... + * Store parameters for measure in meas_params. Reserve space in + TREC_EVAL.values for results of measure. Store individual measure + names (possibly altered by parameters) in TREC_EVAL.values. + Set tm->eval_index to start of reserved space * + ... + } TREC_MEAS; + Measures are defined in measures.c. +*/ + +/* Static utility functions defined later */ +static int get_long_cutoffs (PARAMS *params, char *param_string); +static int get_float_cutoffs (PARAMS *params, char *param_string); +static int get_float_params (PARAMS *params, char *param_string); +static int get_param_pairs (PARAMS *params, char *param_string); +static int comp_long (); +static int comp_float (); +static char *append_long (char *name, long value); +static char *append_float (char *name, double value); +static char *append_string (char *name, char *value); + +/* ---------------- Init measure generic procedures -------------- */ + +/* Measure does not require initialization or storage (eg num_q) */ +int +te_init_meas_empty (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + tm->eval_index = 0; + return (1); +} + +/* Measure is a single float measure with no parameters */ +int +te_init_meas_s_float (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + /* Make sure enough space */ + if (NULL == (eval->values = + te_chk_and_realloc (eval->values, &eval->max_num_values, + eval->num_values + 1, + sizeof (TREC_EVAL_VALUE)))) + return (UNDEF); + + /* Set location of value of measure, zero it, and increment + space used for values */ + tm->eval_index = eval->num_values; + eval->values[tm->eval_index] = (TREC_EVAL_VALUE) {tm->name, 0.0}; + eval->num_values++; + return (1); +} + +/* Measure is a single long measure with no parameters */ +int +te_init_meas_s_long (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + /* Make sure enough space */ + if (NULL == (eval->values = + te_chk_and_realloc (eval->values, &eval->max_num_values, + eval->num_values + 1, + sizeof (TREC_EVAL_VALUE)))) + return (UNDEF); + + /* Set location of value of measure, zero it, and increment + space used for values */ + tm->eval_index = eval->num_values; + eval->values[tm->eval_index] = (TREC_EVAL_VALUE) {tm->name, 0.0}; + eval->num_values++; + return (1); +} + +/* Measure is a float array with long cutoffs */ +int +te_init_meas_a_float_cut_long (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + long *cutoffs; + long i; + /* See if there are command line parameters for this measure. + Use those if given, otherwise use default cutoffs */ + if (epi->meas_arg) { + MEAS_ARG *meas_arg_ptr = epi->meas_arg; + while (meas_arg_ptr->measure_name) { + if (0 == strcmp (meas_arg_ptr->measure_name, tm->name)) { + if (UNDEF == get_long_cutoffs (tm->meas_params, + meas_arg_ptr->parameters)) + return (UNDEF); + break; + } + meas_arg_ptr++; + } + } + cutoffs = (long *) tm->meas_params->param_values; + + /* Make sure enough space */ + if (NULL == (eval->values = + te_chk_and_realloc (eval->values, &eval->max_num_values, + eval->num_values + tm->meas_params->num_params, + sizeof (TREC_EVAL_VALUE)))) + return (UNDEF); + + /* Initialize full measure name and value for each cutoff */ + for (i = 0; i < tm->meas_params->num_params; i++) { + eval->values[eval->num_values+i] = (TREC_EVAL_VALUE) + {append_long (tm->name, cutoffs[i]), 0.0}; + if (NULL == eval->values[eval->num_values+i].name) + return (UNDEF); + } + + /* Set location of value of measure, and increment space used for values */ + tm->eval_index = eval->num_values; + eval->num_values += tm->meas_params->num_params; + return (1); +} + +/* Measure is a float array with float cutoffs */ +int +te_init_meas_a_float_cut_float (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + double *cutoffs; + long i; + /* See if there are command line parameters for this measure. + Use those if given, otherwise use default cutoffs */ + if (epi->meas_arg) { + MEAS_ARG *meas_arg_ptr = epi->meas_arg; + while (meas_arg_ptr->measure_name) { + if (0 == strcmp (meas_arg_ptr->measure_name, tm->name)) { + if (UNDEF == get_float_cutoffs (tm->meas_params, + meas_arg_ptr->parameters)) + return (UNDEF); + break; + } + meas_arg_ptr++; + } + } + cutoffs = (double *) tm->meas_params->param_values; + + /* Make sure enough space */ + if (NULL == (eval->values = + te_chk_and_realloc (eval->values, &eval->max_num_values, + eval->num_values + tm->meas_params->num_params, + sizeof (TREC_EVAL_VALUE)))) + return (UNDEF); + + /* Initialize full measure name and value for each cutoff */ + for (i = 0; i < tm->meas_params->num_params; i++) { + eval->values[eval->num_values+i] = (TREC_EVAL_VALUE) + {append_float (tm->name, cutoffs[i]), 0.0}; + if (NULL == eval->values[eval->num_values+i].name) + return (UNDEF); + } + + /* Set location of value of measure, and increment space used for values */ + tm->eval_index = eval->num_values; + eval->num_values += tm->meas_params->num_params; + return (1); +} + +/* Note difference between float cutoffs and float params is that + cutoff values are unordered, assumed unique, and one eval value is + allocated to each cutoff. Param values are ordered and can be anything, + and number of params means nothing about number of values*/ + +/* Measure is a single float with float params */ +int +te_init_meas_s_float_p_float (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + /* See if there are command line parameters for this measure. + Use those if given, otherwise use default cutoffs */ + if (epi->meas_arg) { + MEAS_ARG *meas_arg_ptr = epi->meas_arg; + while (meas_arg_ptr->measure_name) { + if (0 == strcmp (meas_arg_ptr->measure_name, tm->name)) { + if (UNDEF == get_float_params (tm->meas_params, + meas_arg_ptr->parameters)) + return (UNDEF); + break; + } + meas_arg_ptr++; + } + } + + /* Make sure enough space */ + if (NULL == (eval->values = + te_chk_and_realloc (eval->values, &eval->max_num_values, + eval->num_values + 1, + sizeof (TREC_EVAL_VALUE)))) + return (UNDEF); + + /* Set location of value of measure, zero it, and increment + space used for values */ + tm->eval_index = eval->num_values; + if (tm->meas_params->printable_params) + eval->values[tm->eval_index] = (TREC_EVAL_VALUE) + {append_string(tm->name, tm->meas_params->printable_params), 0.0}; + else + eval->values[tm->eval_index] = (TREC_EVAL_VALUE) {tm->name, 0.0}; + + if (NULL == eval->values[eval->num_values].name) + return (UNDEF); + eval->num_values++; + return (1); +} + +/* Measure is a single float with paired name=float params */ +int +te_init_meas_s_float_p_pair (EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + if (epi->meas_arg) { + MEAS_ARG *meas_arg_ptr = epi->meas_arg; + while (meas_arg_ptr->measure_name) { + if (0 == strcmp (meas_arg_ptr->measure_name, tm->name)) { + if (UNDEF == get_param_pairs (tm->meas_params, + meas_arg_ptr->parameters)) + return (UNDEF); + break; + } + meas_arg_ptr++; + } + } + + /* Make sure enough space */ + if (NULL == (eval->values = + te_chk_and_realloc (eval->values, &eval->max_num_values, + eval->num_values + 1, + sizeof (TREC_EVAL_VALUE)))) + return (UNDEF); + + /* Set location of value of measure, zero it, and increment + space used for values */ + tm->eval_index = eval->num_values; + if (tm->meas_params->printable_params) + eval->values[tm->eval_index] = (TREC_EVAL_VALUE) + {append_string(tm->name, tm->meas_params->printable_params), 0.0}; + else + eval->values[tm->eval_index] = (TREC_EVAL_VALUE) {tm->name, 0.0}; + if (NULL == eval->values[eval->num_values].name) + return (UNDEF); + eval->num_values++; + return (1); +} + + +/* ----------------- Utility procedures for initialization -------------- */ +static int +get_long_cutoffs (PARAMS *params, char *param_string) +{ + long num_cutoffs; + char *ptr, *start_ptr; + long *cutoffs; + long i; + + /* Count number of parameters in param_string (comma separated) */ + num_cutoffs = 1; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') num_cutoffs++; + } + + /* Reserve space for cutoffs */ + if (NULL == (params->printable_params = + Malloc (strlen(param_string)+1, char)) || + NULL == (cutoffs = Malloc (num_cutoffs, long))) + return (UNDEF); + (void) strncpy (params->printable_params, + param_string, + strlen(param_string)+1); + + params->num_params = num_cutoffs; + params->param_values = cutoffs; + start_ptr = param_string; + num_cutoffs = 0; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') { + *ptr = '\0'; + cutoffs[num_cutoffs++] = atol(start_ptr); + start_ptr = ptr+1; + } + } + cutoffs[num_cutoffs++] = atol(start_ptr); + + /* Sort cutoffs in increasing order */ + qsort ((char *) cutoffs, + (int) num_cutoffs, + sizeof (long), + comp_long); + + /* Sanity checking: cutoffs > 0 and non-duplicates */ + if (cutoffs[0] <= 0) { + fprintf (stderr, "trec_eval: Negative cutoff detected\n"); + return (UNDEF); + } + for (i = 1; i < num_cutoffs; i++) { + if (cutoffs[i-1] == cutoffs[i]) { + fprintf (stderr, "trec_eval: duplicate cutoffs detected\n"); + return (UNDEF); + } + } + + return (1); +} + +static int +get_float_cutoffs (PARAMS *params, char *param_string) +{ + long num_cutoffs; + char *ptr, *start_ptr; + double *cutoffs; + long i; + + /* Count number of parameters in param_string (comma separated) */ + num_cutoffs = 1; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') num_cutoffs++; + } + + /* Reserve space for cutoffs */ + if (NULL == (params->printable_params = + Malloc (strlen(param_string)+1, char)) || + NULL == (cutoffs = Malloc (num_cutoffs, double))) + return (UNDEF); + (void) strncpy (params->printable_params, + param_string, + strlen(param_string)+1); + + params->num_params = num_cutoffs; + params->param_values = cutoffs; + start_ptr = param_string; + num_cutoffs = 0; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') { + *ptr = '\0'; + cutoffs[num_cutoffs++] = atof(start_ptr); + start_ptr = ptr+1; + } + } + cutoffs[num_cutoffs++] = atof(start_ptr); + + /* Sort cutoffs in increasing order */ + qsort ((char *) cutoffs, + (int) num_cutoffs, + sizeof (double), + comp_float); + + /* Sanity checking: non-duplicates */ + for (i = 1; i < num_cutoffs; i++) { + if (cutoffs[i-1] == cutoffs[i]) { + fprintf (stderr, "trec_eval: duplicate cutoffs detected\n"); + return (UNDEF); + } + } + + return (1); +} + +static int +get_float_params (PARAMS *params, char *param_string) +{ + long num_params; + char *ptr, *start_ptr; + double *values; + + /* Count number of parameters in param_string (comma separated) */ + num_params = 1; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') num_params++; + } + + /* Reserve space for params */ + if (NULL == (params->printable_params = + Malloc (strlen(param_string)+1, char)) || + NULL == (values = Malloc (num_params, double))) + return (UNDEF); + + (void) strncpy (params->printable_params, + param_string, + strlen(param_string)+1); + + start_ptr = param_string; + num_params = 0; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') { + *ptr = '\0'; + values[num_params++] = atof(start_ptr); + start_ptr = ptr+1; + } + } + values[num_params++] = atof(start_ptr); + params->param_values = values; + params->num_params = num_params; + return (1); +} + +/* Params are in comma separated form name=float. Eg, -m ndcg_p.1=4.0,2=8.0 */ +static int +get_param_pairs (PARAMS *params, char *param_string) +{ + long num_params; + char last_seen; + char *ptr, *start_ptr; + FLOAT_PARAM_PAIR *values; + + /* Count number of parameters in param_string (comma separated), all + of form name=value. Return error if not of right form */ + num_params = 1; + last_seen = ','; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == ',') { + num_params++; + if (*ptr == last_seen) /* Error */ + break; + last_seen = ','; + } + else if (*ptr == '=') { + if (*ptr == last_seen) {/* Flag as error */ + last_seen = ','; + break; + } + last_seen = '='; + } + } + if (last_seen != '=') { + fprintf (stderr, "trec_eval: malformed pair parameters in '%s'\n", + param_string); + return (UNDEF); + } + + /* Reserve space for params */ + if (NULL == (params->printable_params = + Malloc (strlen(param_string)+1, char)) || + NULL == (values = Malloc (num_params, FLOAT_PARAM_PAIR))) + return (UNDEF); + + (void) strncpy (params->printable_params, + param_string, + strlen(param_string)+1); + + start_ptr = param_string; + num_params = 0; + for (ptr = param_string; *ptr; ptr++) { + if (*ptr == '=') { + *ptr = '\0'; + values[num_params].name = start_ptr; + start_ptr = ptr+1; + } + else if (*ptr == ',') { + *ptr = '\0'; + values[num_params++].value = atof(start_ptr); + start_ptr = ptr+1; + } + } + values[num_params++].value = atof(start_ptr); + + params->param_values = values; + params->num_params = num_params; + + return (1); +} + +static int +comp_long (long *ptr1, long *ptr2) +{ + return (*ptr1 - *ptr2); +} +static int +comp_float (double *ptr1, double *ptr2) +{ + if (*ptr1 < *ptr2) + return (-1); + if (*ptr1 > *ptr2) + return (1); + return (0); +} + +static char * +append_long (char *name, long value) +{ + long length_required = strlen(name) + 20 + 2; + char *full_name; + if (NULL == (full_name = Malloc (length_required, char))) + return (NULL); + snprintf (full_name, length_required, "%s_%ld", name, value); + return (full_name); +} + +static char * +append_float (char *name, double value) +{ + long length_required = strlen(name) + 8 + 2; + char *full_name; + if (NULL == (full_name = Malloc (length_required, char))) + return (NULL); + snprintf (full_name, length_required, "%s_%3.2f", name, value); + return (full_name); +} +static char * +append_string (char *name, char *value) +{ + long length_required; + char *full_name; + if (NULL == value) + return (name); + length_required = strlen(name) + strlen(value) + 2; + if (NULL == (full_name = Malloc (length_required, char))) + return (NULL); + snprintf (full_name, length_required, "%s_%s", name, value); + return (full_name); +} diff --git a/tools/eval/trec_eval.9.0.4/meas_print_final.c b/tools/eval/trec_eval.9.0.4/meas_print_final.c new file mode 100644 index 0000000000000000000000000000000000000000..7ce66afa58658454dd2f5ac6aef16772a27e8d41 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/meas_print_final.c @@ -0,0 +1,113 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" + +/* Procedures for printing of summary and cleaning up several default formats + of measure values. + Used in init_meas procedure description of TREC_MEAS in trec_eval.h: + typedef struct trec_meas { + ... + * Store parameters for measure in meas_params. Reserve space in + TREC_EVAL.values for results of measure. Store individual measure + names (possibly altered by parameters) in TREC_EVAL.values. + Set tm->eval_index to start of reserved space * + ... + } TREC_MEAS; + Measures are defined in measures.c. +*/ + +/* ---------------- Print final measure generic procedures -------------- */ + +/* Measure does not require printing or storage */ +int +te_print_final_meas_empty (const EPI *epi, TREC_MEAS *tm, TREC_EVAL *eval) +{ + return (1); +} + + +/* Measure is a single float measure with no parameters */ +int +te_print_final_meas_s_float (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval) +{ + if (epi->summary_flag) + printf ("%s%-22s\t%s\t%6.4f\n", + epi->zscore_flag ? "Z": "", + eval->values[tm->eval_index].name, + eval->qid, + eval->values[tm->eval_index].value); + return (1); +} + +/* Measure is a single long measure with no parameters. */ +int +te_print_final_meas_s_long (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval) +{ + if (epi->summary_flag) { + if (epi->zscore_flag) + printf ("Z%-22s\t%s\t%6.4f\n", + eval->values[tm->eval_index].name, + eval->qid, + eval->values[tm->eval_index].value); + else + printf ("%-22s\t%s\t%ld\n", + eval->values[tm->eval_index].name, + eval->qid, + (long) eval->values[tm->eval_index].value); + } + return (1); +} + + +/* Measure is a float array with cutoffs */ +int +te_print_final_meas_a_cut (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval) +{ + long i; + + for (i = 0; i < tm->meas_params->num_params; i++) { + if (epi->summary_flag) + printf ("%s%-22s\t%s\t%6.4f\n", + epi->zscore_flag ? "Z": "", + eval->values[tm->eval_index + i].name, + eval->qid, + eval->values[tm->eval_index + i].value); + Free (eval->values[tm->eval_index + i].name); + } + if (tm->meas_params->printable_params) { + Free (tm->meas_params->param_values); + Free (tm->meas_params->printable_params); + } + + return (1); +} + +/* Measure is a single float with float params */ +int +te_print_final_meas_s_float_p (const EPI *epi, TREC_MEAS *tm, + TREC_EVAL *eval) +{ + if (epi->summary_flag) + printf ("%s%-22s\t%s\t%6.4f\n", + epi->zscore_flag ? "Z": "", + eval->values[tm->eval_index].name, + eval->qid, + eval->values[tm->eval_index].value); + if (tm->meas_params->printable_params) { + Free (eval->values[tm->eval_index].name); + Free (tm->meas_params->printable_params); + Free (tm->meas_params->param_values); + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/meas_print_single.c b/tools/eval/trec_eval.9.0.4/meas_print_single.c new file mode 100644 index 0000000000000000000000000000000000000000..13b3f1693219797cd904a7f4c9b4a3d8f061a03f --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/meas_print_single.c @@ -0,0 +1,93 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" + +/* Procedures for printing single query default formats of measure values. + Used in init_meas procedure description of TREC_MEAS in trec_eval.h: + typedef struct trec_meas { + ... + * Store parameters for measure in meas_params. Reserve space in + TREC_EVAL.values for results of measure. Store individual measure + names (possibly altered by parameters) in TREC_EVAL.values. + Set tm->eval_index to start of reserved space * + ... + } TREC_MEAS; + Measures are defined in measures.c. +*/ + + +/* ---------------- print single measure generic procedures -------------- */ + +/* Measure does not require printing */ +int +te_print_single_meas_empty (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval) +{ + return (1); +} + + +/* Measure is a single float measure with no parameters, */ +int +te_print_single_meas_s_float (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval) +{ + if (epi->zscore_flag) + printf ("Z%-22s\t%s\t%6.4f\n", + eval->values[tm->eval_index].name, + eval->qid, + eval->values[tm->eval_index].value); + else + printf ("%-22s\t%s\t%6.4f\n", + eval->values[tm->eval_index].name, + eval->qid, + eval->values[tm->eval_index].value); + return (1); +} + +/* Measure is a single long measure with no parameters. */ +int +te_print_single_meas_s_long (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval) +{ + if (epi->zscore_flag) + printf ("Z%-22s\t%s\t%6.4f\n", + eval->values[tm->eval_index].name, + eval->qid, + eval->values[tm->eval_index].value); + else + printf ("%-22s\t%s\t%ld\n", + eval->values[tm->eval_index].name, + eval->qid, + (long) eval->values[tm->eval_index].value); + return (1); +} + +/* Measure is a float array with cutoffs */ +int +te_print_single_meas_a_cut (const EPI *epi, const TREC_MEAS *tm, + const TREC_EVAL *eval) +{ + long i; + for (i = 0; i < tm->meas_params->num_params; i++) { + if (epi->zscore_flag) + printf ("Z%-22s\t%s\t%6.4f\n", + eval->values[tm->eval_index+i].name, + eval->qid, + eval->values[tm->eval_index+i].value); + else + printf ("%-22s\t%s\t%6.4f\n", + eval->values[tm->eval_index+i].name, + eval->qid, + eval->values[tm->eval_index+i].value); + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/measures.c b/tools/eval/trec_eval.9.0.4/measures.c new file mode 100644 index 0000000000000000000000000000000000000000..26880256864991b981e6016c04e5c35119b80a5b --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/measures.c @@ -0,0 +1,213 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "functions.h" +#include "trec_eval.h" + +/* Actual measures. Definition of TREC_MEAS below is from "trec_eval.h". + Function prototypes for each function are defined in "functions.h". + Code implementing each measure is normally found in "m_.c". + Code implementing standard init, acc, average, print routines are found in + "meas_{init,acc,calc_avg,print_single,print_final}.c". + Measures are calculated and printed out in the order they occur here; + the first measures tend to be the more important. */ + +/* Measure definition: + typedef struct trec_meas { + * Nmae of measure (or root name of set of measures) * + char *name; + * Full explanation of measure, printed upon help request * + char *explanation; + * Store parameters for measure in meas_params. Reserve space in + TREC_EVAL.values for results of measure. Store individual measure + names (possibly altered by parameters) in TREC_EVAL.values and + initialize value to 0.0. + Set tm->eval_index to start of reserved space * + int (* init_meas) (EPI *epi, struct trec_meas *tm, TREC_EVAL *eval); + * Calculate actual measure for single query * + int (* calc_meas) (const EPI *epi, const REL_INFO *rel, + const RESULTS *results, const struct trec_meas *tm, + TREC_EVAL *eval); + * Merge info for single query into summary info * + int (* acc_meas) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *q_eval, TREC_EVAL *summ_eval); + * Calculate final averages (if needed) from summary info * + int (* calc_avg) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *eval); + * Print single query value * + int (* print_single_meas) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *eval); + * Print final summary value, and cleanup measure malloc's * + int (* print_final_and_cleanup_meas) (const EPI *epi, + const struct trec_meas *tm, + TREC_EVAL *eval); + * Measure dependent parameters, defaults given here can normally be + overridden from command line by init_meas procedure * + void *meas_params; + * Index within TREC_EVAL.values for values for measure. + -1 indicates measure not to be calculated (default). + -2 indicates measure to be calculated, but has not yet been initialized. + Set in init_meas * + long eval_index; + } TREC_MEAS; +*/ + +extern TREC_MEAS te_meas_runid; +extern TREC_MEAS te_meas_num_q; +extern TREC_MEAS te_meas_num_ret; +extern TREC_MEAS te_meas_num_rel; +extern TREC_MEAS te_meas_num_rel_ret; +extern TREC_MEAS te_meas_map; +extern TREC_MEAS te_meas_gm_map; +extern TREC_MEAS te_meas_Rprec; +extern TREC_MEAS te_meas_bpref; +extern TREC_MEAS te_meas_recip_rank; +extern TREC_MEAS te_meas_iprec_at_recall; +extern TREC_MEAS te_meas_P; +extern TREC_MEAS te_meas_relstring; +extern TREC_MEAS te_meas_recall; +extern TREC_MEAS te_meas_infAP; +extern TREC_MEAS te_meas_gm_bpref; +extern TREC_MEAS te_meas_Rprec_mult; +extern TREC_MEAS te_meas_utility; +extern TREC_MEAS te_meas_11pt_avg; +extern TREC_MEAS te_meas_binG; +extern TREC_MEAS te_meas_G; +extern TREC_MEAS te_meas_ndcg; +extern TREC_MEAS te_meas_ndcg_rel; +extern TREC_MEAS te_meas_Rndcg; +extern TREC_MEAS te_meas_ndcg_cut; +extern TREC_MEAS te_meas_map_cut; +extern TREC_MEAS te_meas_relative_P; +extern TREC_MEAS te_meas_success; +extern TREC_MEAS te_meas_set_P; +extern TREC_MEAS te_meas_set_relative_P; +extern TREC_MEAS te_meas_set_recall; +extern TREC_MEAS te_meas_set_map; +extern TREC_MEAS te_meas_set_F; +extern TREC_MEAS te_meas_num_nonrel_judged_ret; +extern TREC_MEAS te_meas_prefs_num_prefs_poss; +extern TREC_MEAS te_meas_prefs_num_prefs_ful; +extern TREC_MEAS te_meas_prefs_num_prefs_ful_ret; +extern TREC_MEAS te_meas_prefs_simp; +extern TREC_MEAS te_meas_prefs_pair; +extern TREC_MEAS te_meas_prefs_avgjg; +extern TREC_MEAS te_meas_prefs_avgjg_Rnonrel; +extern TREC_MEAS te_meas_prefs_simp_ret; +extern TREC_MEAS te_meas_prefs_pair_ret; +extern TREC_MEAS te_meas_prefs_avgjg_ret; +extern TREC_MEAS te_meas_prefs_avgjg_Rnonrel_ret; +extern TREC_MEAS te_meas_prefs_simp_imp; +extern TREC_MEAS te_meas_prefs_pair_imp; +extern TREC_MEAS te_meas_prefs_avgjg_imp; +extern TREC_MEAS te_meas_map_avgjg; +extern TREC_MEAS te_meas_P_avgjg; +extern TREC_MEAS te_meas_Rprec_mult_avgjg; +extern TREC_MEAS te_meas_yaap; + +TREC_MEAS *te_trec_measures[] = { + &te_meas_runid, + &te_meas_num_q, + &te_meas_num_ret, + &te_meas_num_rel, + &te_meas_num_rel_ret, + &te_meas_map, + &te_meas_gm_map, + &te_meas_Rprec, + &te_meas_bpref, + &te_meas_recip_rank, + &te_meas_iprec_at_recall, + &te_meas_P, + &te_meas_relstring, + &te_meas_recall, + &te_meas_infAP, + &te_meas_gm_bpref, + &te_meas_Rprec_mult, + &te_meas_utility, + &te_meas_11pt_avg, + &te_meas_binG, + &te_meas_G, + &te_meas_ndcg, + &te_meas_ndcg_rel, + &te_meas_Rndcg, + &te_meas_ndcg_cut, + &te_meas_map_cut, + &te_meas_relative_P, + &te_meas_success, + &te_meas_set_P, + &te_meas_set_relative_P, + &te_meas_set_recall, + &te_meas_set_map, + &te_meas_set_F, + &te_meas_num_nonrel_judged_ret, + &te_meas_prefs_num_prefs_poss, + &te_meas_prefs_num_prefs_ful, + &te_meas_prefs_num_prefs_ful_ret, + &te_meas_prefs_simp, + &te_meas_prefs_pair, + &te_meas_prefs_avgjg, + &te_meas_prefs_avgjg_Rnonrel, + &te_meas_prefs_simp_ret, + &te_meas_prefs_pair_ret, + &te_meas_prefs_avgjg_ret, + &te_meas_prefs_avgjg_Rnonrel_ret, + &te_meas_prefs_simp_imp, + &te_meas_prefs_pair_imp, + &te_meas_prefs_avgjg_imp, + &te_meas_map_avgjg, + &te_meas_P_avgjg, + &te_meas_Rprec_mult_avgjg, + &te_meas_yaap, +}; +int te_num_trec_measures = sizeof (te_trec_measures) / sizeof (te_trec_measures[0]); + +static char *off_names[] = { + "runid", "num_q", "num_ret", "num_rel", "num_rel_ret", "map", "gm_map", + "Rprec", "bpref", "recip_rank", "iprec_at_recall", "P", NULL}; +static char *trec_names[] = { + "runid", "num_q", "num_ret", "num_rel", "num_rel_ret", "map", "gm_map", + "Rprec", "bpref", "recip_rank", "iprec_at_recall", "P", "relstring", + "recall", "infAP","gm_bpref", + "utility", "11pt_avg", "ndcg", "relative_P", "Rprec_mult", "success", + "map_cut", "ndcg_cut", "ndcg_rel", "Rndcg", "binG", "G", + "set_P", "set_recall", "set_relative_P", "set_map", "set_F", + "num_nonrel_judged_ret", + NULL}; +static char *set_names[] = { + "runid", "num_q", "num_ret", "num_rel", "num_rel_ret", "utility", "set_P", + "set_recall", "set_relative_P", "set_map", "set_F", + NULL}; +static char *prefs_names[] = { + "runid", "num_q","prefs_num_prefs_poss", "prefs_num_prefs_ful", + "prefs_num_prefs_ful_ret", + "prefs_simp", "prefs_pair", "prefs_avgjg", "prefs_avgjg_Rnonrel", + "prefs_simp_ret", "prefs_pair_ret", "prefs_avgjg_ret", + "prefs_avgjg_Rnonrel_ret", + "prefs_simp_imp", "prefs_pair_imp", "prefs_avgjg_imp", + NULL}; +static char *prefs_off_name[] = { + "runid", "num_q", + "prefs_num_prefs_poss", "prefs_num_prefs_ful", "prefs_num_prefs_ful_ret", + "prefs_simp", "prefs_pair", "prefs_avgjg", + NULL}; +static char *qrels_jg_names[] = { + "runid", "num_q", + "map_avgjg", "P_avgjg", "Rprec_mult_avgjg", + NULL}; + +TREC_MEASURE_NICKNAMES te_trec_measure_nicknames[] = { + {"official", off_names}, + {"set", set_names}, + {"all_trec", trec_names}, + {"all_prefs", prefs_names}, + {"prefs", prefs_off_name}, + {"qrels_jg", qrels_jg_names}, +}; +int te_num_trec_measure_nicknames = + sizeof (te_trec_measure_nicknames) / sizeof (te_trec_measure_nicknames[0]); diff --git a/tools/eval/trec_eval.9.0.4/sysfunc.h b/tools/eval/trec_eval.9.0.4/sysfunc.h new file mode 100644 index 0000000000000000000000000000000000000000..84bc129cf8fecf8d0f1318e1c48a5f48e83bc407 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/sysfunc.h @@ -0,0 +1,52 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#ifndef SYSFUNCH +#define SYSFUNCH +/* Declarations of major functions within standard C libraries */ +/* Once all of the major systems get their act together (and I follow + suit!), this file should just include system header files from + /usr/include. Until then... */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +/* see http://stackoverflow.com/questions/33058014/trec-eval-make-error-using-cygwin/34927338 */ +#ifdef __CYGWIN__ +#undef log2 +#endif + +/* For time being, define Berkeley constructs in terms of SVR4 constructs*/ +#define bzero(dest,len) memset(dest,'\0',len) +#define bcopy(source,dest,len) memcpy(dest,source,len) +#define srandom(seed) srand(seed) +#define random() rand() + +/* ANSI should give us an offsetof suitable for the implementation; + * otherwise, try a non-portable but commonly supported definition + */ +#ifdef __STDC__ +#include +#endif +#ifndef offsetof +#define offsetof(type, member) ((size_t) \ + ((char *)&((type*)0)->member - (char *)(type *)0)) +#endif + +#endif /* SYSFUNCH */ diff --git a/tools/eval/trec_eval.9.0.4/test/out.test b/tools/eval/trec_eval.9.0.4/test/out.test new file mode 100644 index 0000000000000000000000000000000000000000..d334752456811377a816eec4ce488111b6c183aa --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test @@ -0,0 +1,30 @@ +runid all STANDARD +num_q all 3 +num_ret all 1500 +num_rel all 561 +num_rel_ret all 131 +map all 0.1785 +gm_map all 0.1051 +Rprec all 0.2174 +bpref all 0.1981 +recip_rank all 0.4064 +iprec_at_recall_0.00 all 0.4665 +iprec_at_recall_0.10 all 0.3884 +iprec_at_recall_0.20 all 0.3186 +iprec_at_recall_0.30 all 0.2852 +iprec_at_recall_0.40 all 0.2666 +iprec_at_recall_0.50 all 0.2184 +iprec_at_recall_0.60 all 0.0822 +iprec_at_recall_0.70 all 0.0348 +iprec_at_recall_0.80 all 0.0312 +iprec_at_recall_0.90 all 0.0312 +iprec_at_recall_1.00 all 0.0312 +P_5 all 0.2667 +P_10 all 0.3000 +P_15 all 0.3111 +P_20 all 0.3667 +P_30 all 0.3333 +P_100 all 0.2467 +P_200 all 0.1600 +P_500 all 0.0873 +P_1000 all 0.0437 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.a b/tools/eval/trec_eval.9.0.4/test/out.test.a new file mode 100644 index 0000000000000000000000000000000000000000..dd6cff62971f6909f784a3dbfbf57dbff6b4fe25 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.a @@ -0,0 +1,94 @@ +runid all STANDARD +num_q all 3 +num_ret all 1500 +num_rel all 561 +num_rel_ret all 131 +map all 0.1785 +gm_map all 0.1051 +Rprec all 0.2174 +bpref all 0.1981 +recip_rank all 0.4064 +iprec_at_recall_0.00 all 0.4665 +iprec_at_recall_0.10 all 0.3884 +iprec_at_recall_0.20 all 0.3186 +iprec_at_recall_0.30 all 0.2852 +iprec_at_recall_0.40 all 0.2666 +iprec_at_recall_0.50 all 0.2184 +iprec_at_recall_0.60 all 0.0822 +iprec_at_recall_0.70 all 0.0348 +iprec_at_recall_0.80 all 0.0312 +iprec_at_recall_0.90 all 0.0312 +iprec_at_recall_1.00 all 0.0312 +P_5 all 0.2667 +P_10 all 0.3000 +P_15 all 0.3111 +P_20 all 0.3667 +P_30 all 0.3333 +P_100 all 0.2467 +P_200 all 0.1600 +P_500 all 0.0873 +P_1000 all 0.0437 +recall_5 all 0.0173 +recall_10 all 0.0317 +recall_15 all 0.0534 +recall_20 all 0.1061 +recall_30 all 0.1335 +recall_100 all 0.4980 +recall_200 all 0.5533 +recall_500 all 0.5997 +recall_1000 all 0.5997 +infAP all 0.1785 +gm_bpref all 0.0083 +Rprec_mult_0.20 all 0.3445 +Rprec_mult_0.40 all 0.3157 +Rprec_mult_0.60 all 0.2842 +Rprec_mult_0.80 all 0.2613 +Rprec_mult_1.00 all 0.2174 +Rprec_mult_1.20 all 0.1921 +Rprec_mult_1.40 all 0.1653 +Rprec_mult_1.60 all 0.1468 +Rprec_mult_1.80 all 0.1308 +Rprec_mult_2.00 all 0.1369 +utility all -412.6667 +11pt_avg all 0.1958 +binG all 0.1393 +G all 0.1393 +ndcg all 0.4021 +ndcg_rel all 0.3682 +Rndcg all 0.3232 +ndcg_cut_5 all 0.2768 +ndcg_cut_10 all 0.3016 +ndcg_cut_15 all 0.3087 +ndcg_cut_20 all 0.3525 +ndcg_cut_30 all 0.3363 +ndcg_cut_100 all 0.3916 +ndcg_cut_200 all 0.4045 +ndcg_cut_500 all 0.4021 +ndcg_cut_1000 all 0.4021 +map_cut_5 all 0.0154 +map_cut_10 all 0.0259 +map_cut_15 all 0.0425 +map_cut_20 all 0.0591 +map_cut_30 all 0.0795 +map_cut_100 all 0.1622 +map_cut_200 all 0.1711 +map_cut_500 all 0.1785 +map_cut_1000 all 0.1785 +relative_P_5 all 0.2667 +relative_P_10 all 0.3000 +relative_P_15 all 0.3111 +relative_P_20 all 0.3833 +relative_P_30 all 0.3556 +relative_P_100 all 0.5585 +relative_P_200 all 0.5938 +relative_P_500 all 0.5997 +relative_P_1000 all 0.5997 +success_1 all 0.3333 +success_5 all 0.3333 +success_10 all 0.6667 +set_P all 0.0873 +set_relative_P all 0.5997 +set_recall all 0.5997 +set_map all 0.0354 +set_F all 0.1194 +num_nonrel_judged_ret all 607 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.aq b/tools/eval/trec_eval.9.0.4/test/out.test.aq new file mode 100644 index 0000000000000000000000000000000000000000..80a1e03c5d2604e396759242c671495f4e0ca9fc --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.aq @@ -0,0 +1,367 @@ +num_ret 301 500 +num_rel 301 474 +num_rel_ret 301 71 +map 301 0.0324 +Rprec 301 0.1456 +bpref 301 0.1230 +recip_rank 301 0.1667 +iprec_at_recall_0.00 301 0.2857 +iprec_at_recall_0.10 301 0.2096 +iprec_at_recall_0.20 301 0.0000 +iprec_at_recall_0.30 301 0.0000 +iprec_at_recall_0.40 301 0.0000 +iprec_at_recall_0.50 301 0.0000 +iprec_at_recall_0.60 301 0.0000 +iprec_at_recall_0.70 301 0.0000 +iprec_at_recall_0.80 301 0.0000 +iprec_at_recall_0.90 301 0.0000 +iprec_at_recall_1.00 301 0.0000 +P_5 301 0.0000 +P_10 301 0.2000 +P_15 301 0.1333 +P_20 301 0.2500 +P_30 301 0.2333 +P_100 301 0.2300 +P_200 301 0.2100 +P_500 301 0.1420 +P_1000 301 0.0710 +relstring 301 '0000011000' +recall_5 301 0.0000 +recall_10 301 0.0042 +recall_15 301 0.0042 +recall_20 301 0.0105 +recall_30 301 0.0148 +recall_100 301 0.0485 +recall_200 301 0.0886 +recall_500 301 0.1498 +recall_1000 301 0.1498 +infAP 301 0.0324 +Rprec_mult_0.20 301 0.2211 +Rprec_mult_0.40 301 0.2053 +Rprec_mult_0.60 301 0.1930 +Rprec_mult_0.80 301 0.1711 +Rprec_mult_1.00 301 0.1456 +Rprec_mult_1.20 301 0.1248 +Rprec_mult_1.40 301 0.1069 +Rprec_mult_1.60 301 0.0935 +Rprec_mult_1.80 301 0.0831 +Rprec_mult_2.00 301 0.0749 +utility 301 -358.0000 +11pt_avg 301 0.0450 +binG 301 0.0238 +G 301 0.0238 +ndcg 301 0.1584 +ndcg_rel 301 0.1651 +Rndcg 301 0.1567 +ndcg_cut_5 301 0.0000 +ndcg_cut_10 301 0.1518 +ndcg_cut_15 301 0.1176 +ndcg_cut_20 301 0.1985 +ndcg_cut_30 301 0.1975 +ndcg_cut_100 301 0.2166 +ndcg_cut_200 301 0.2063 +ndcg_cut_500 301 0.1584 +ndcg_cut_1000 301 0.1584 +map_cut_5 301 0.0000 +map_cut_10 301 0.0010 +map_cut_15 301 0.0010 +map_cut_20 301 0.0023 +map_cut_30 301 0.0033 +map_cut_100 301 0.0118 +map_cut_200 301 0.0208 +map_cut_500 301 0.0324 +map_cut_1000 301 0.0324 +relative_P_5 301 0.0000 +relative_P_10 301 0.2000 +relative_P_15 301 0.1333 +relative_P_20 301 0.2500 +relative_P_30 301 0.2333 +relative_P_100 301 0.2300 +relative_P_200 301 0.2100 +relative_P_500 301 0.1498 +relative_P_1000 301 0.1498 +success_1 301 0.0000 +success_5 301 0.0000 +success_10 301 1.0000 +set_P 301 0.1420 +set_relative_P 301 0.1498 +set_recall 301 0.1498 +set_map 301 0.0213 +set_F 301 0.1458 +num_nonrel_judged_ret 301 188 +num_ret 302 500 +num_rel 302 77 +num_rel_ret 302 50 +map 302 0.4175 +Rprec 302 0.5065 +bpref 302 0.4712 +recip_rank 302 1.0000 +iprec_at_recall_0.00 302 1.0000 +iprec_at_recall_0.10 302 0.8421 +iprec_at_recall_0.20 302 0.8421 +iprec_at_recall_0.30 302 0.7419 +iprec_at_recall_0.40 302 0.6863 +iprec_at_recall_0.50 302 0.5417 +iprec_at_recall_0.60 302 0.1420 +iprec_at_recall_0.70 302 0.0000 +iprec_at_recall_0.80 302 0.0000 +iprec_at_recall_0.90 302 0.0000 +iprec_at_recall_1.00 302 0.0000 +P_5 302 0.8000 +P_10 302 0.7000 +P_15 302 0.8000 +P_20 302 0.8000 +P_30 302 0.7333 +P_100 302 0.4200 +P_200 302 0.2200 +P_500 302 0.1000 +P_1000 302 0.0500 +relstring 302 '1101110110' +recall_5 302 0.0519 +recall_10 302 0.0909 +recall_15 302 0.1558 +recall_20 302 0.2078 +recall_30 302 0.2857 +recall_100 302 0.5455 +recall_200 302 0.5714 +recall_500 302 0.6494 +recall_1000 302 0.6494 +infAP 302 0.4175 +Rprec_mult_0.20 302 0.8125 +Rprec_mult_0.40 302 0.7419 +Rprec_mult_0.60 302 0.6596 +Rprec_mult_0.80 302 0.6129 +Rprec_mult_1.00 302 0.5065 +Rprec_mult_1.20 302 0.4516 +Rprec_mult_1.40 302 0.3889 +Rprec_mult_1.60 302 0.3468 +Rprec_mult_1.80 302 0.3094 +Rprec_mult_2.00 302 0.2857 +utility 302 -400.0000 +11pt_avg 302 0.4360 +binG 302 0.2160 +G 302 0.2160 +ndcg 302 0.6617 +ndcg_rel 302 0.7130 +Rndcg 302 0.6196 +ndcg_cut_5 302 0.8304 +ndcg_cut_10 302 0.7530 +ndcg_cut_15 302 0.8085 +ndcg_cut_20 302 0.8082 +ndcg_cut_30 302 0.7604 +ndcg_cut_100 302 0.6046 +ndcg_cut_200 302 0.6209 +ndcg_cut_500 302 0.6617 +ndcg_cut_1000 302 0.6617 +map_cut_5 302 0.0461 +map_cut_10 302 0.0768 +map_cut_15 302 0.1265 +map_cut_20 302 0.1695 +map_cut_30 302 0.2298 +map_cut_100 302 0.3983 +map_cut_200 302 0.4068 +map_cut_500 302 0.4175 +map_cut_1000 302 0.4175 +relative_P_5 302 0.8000 +relative_P_10 302 0.7000 +relative_P_15 302 0.8000 +relative_P_20 302 0.8000 +relative_P_30 302 0.7333 +relative_P_100 302 0.5455 +relative_P_200 302 0.5714 +relative_P_500 302 0.6494 +relative_P_1000 302 0.6494 +success_1 302 1.0000 +success_5 302 1.0000 +success_10 302 1.0000 +set_P 302 0.1000 +set_relative_P 302 0.6494 +set_recall 302 0.6494 +set_map 302 0.0649 +set_F 302 0.1733 +num_nonrel_judged_ret 302 214 +num_ret 303 500 +num_rel 303 10 +num_rel_ret 303 10 +map 303 0.0858 +Rprec 303 0.0000 +bpref 303 0.0000 +recip_rank 303 0.0526 +iprec_at_recall_0.00 303 0.1136 +iprec_at_recall_0.10 303 0.1136 +iprec_at_recall_0.20 303 0.1136 +iprec_at_recall_0.30 303 0.1136 +iprec_at_recall_0.40 303 0.1136 +iprec_at_recall_0.50 303 0.1136 +iprec_at_recall_0.60 303 0.1045 +iprec_at_recall_0.70 303 0.1045 +iprec_at_recall_0.80 303 0.0935 +iprec_at_recall_0.90 303 0.0935 +iprec_at_recall_1.00 303 0.0935 +P_5 303 0.0000 +P_10 303 0.0000 +P_15 303 0.0000 +P_20 303 0.0500 +P_30 303 0.0333 +P_100 303 0.0900 +P_200 303 0.0500 +P_500 303 0.0200 +P_1000 303 0.0100 +relstring 303 '0000000000' +recall_5 303 0.0000 +recall_10 303 0.0000 +recall_15 303 0.0000 +recall_20 303 0.1000 +recall_30 303 0.1000 +recall_100 303 0.9000 +recall_200 303 1.0000 +recall_500 303 1.0000 +recall_1000 303 1.0000 +infAP 303 0.0858 +Rprec_mult_0.20 303 0.0000 +Rprec_mult_0.40 303 0.0000 +Rprec_mult_0.60 303 0.0000 +Rprec_mult_0.80 303 0.0000 +Rprec_mult_1.00 303 0.0000 +Rprec_mult_1.20 303 0.0000 +Rprec_mult_1.40 303 0.0000 +Rprec_mult_1.60 303 0.0000 +Rprec_mult_1.80 303 0.0000 +Rprec_mult_2.00 303 0.0500 +utility 303 -480.0000 +11pt_avg 303 0.1065 +binG 303 0.1782 +G 303 0.1782 +ndcg 303 0.3862 +ndcg_rel 303 0.2263 +Rndcg 303 0.1931 +ndcg_cut_5 303 0.0000 +ndcg_cut_10 303 0.0000 +ndcg_cut_15 303 0.0000 +ndcg_cut_20 303 0.0509 +ndcg_cut_30 303 0.0509 +ndcg_cut_100 303 0.3537 +ndcg_cut_200 303 0.3862 +ndcg_cut_500 303 0.3862 +ndcg_cut_1000 303 0.3862 +map_cut_5 303 0.0000 +map_cut_10 303 0.0000 +map_cut_15 303 0.0000 +map_cut_20 303 0.0053 +map_cut_30 303 0.0053 +map_cut_100 303 0.0764 +map_cut_200 303 0.0858 +map_cut_500 303 0.0858 +map_cut_1000 303 0.0858 +relative_P_5 303 0.0000 +relative_P_10 303 0.0000 +relative_P_15 303 0.0000 +relative_P_20 303 0.1000 +relative_P_30 303 0.1000 +relative_P_100 303 0.9000 +relative_P_200 303 1.0000 +relative_P_500 303 1.0000 +relative_P_1000 303 1.0000 +success_1 303 0.0000 +success_5 303 0.0000 +success_10 303 0.0000 +set_P 303 0.0200 +set_relative_P 303 1.0000 +set_recall 303 1.0000 +set_map 303 0.0200 +set_F 303 0.0392 +num_nonrel_judged_ret 303 205 +runid all STANDARD +num_q all 3 +num_ret all 1500 +num_rel all 561 +num_rel_ret all 131 +map all 0.1785 +gm_map all 0.1051 +Rprec all 0.2174 +bpref all 0.1981 +recip_rank all 0.4064 +iprec_at_recall_0.00 all 0.4665 +iprec_at_recall_0.10 all 0.3884 +iprec_at_recall_0.20 all 0.3186 +iprec_at_recall_0.30 all 0.2852 +iprec_at_recall_0.40 all 0.2666 +iprec_at_recall_0.50 all 0.2184 +iprec_at_recall_0.60 all 0.0822 +iprec_at_recall_0.70 all 0.0348 +iprec_at_recall_0.80 all 0.0312 +iprec_at_recall_0.90 all 0.0312 +iprec_at_recall_1.00 all 0.0312 +P_5 all 0.2667 +P_10 all 0.3000 +P_15 all 0.3111 +P_20 all 0.3667 +P_30 all 0.3333 +P_100 all 0.2467 +P_200 all 0.1600 +P_500 all 0.0873 +P_1000 all 0.0437 +recall_5 all 0.0173 +recall_10 all 0.0317 +recall_15 all 0.0534 +recall_20 all 0.1061 +recall_30 all 0.1335 +recall_100 all 0.4980 +recall_200 all 0.5533 +recall_500 all 0.5997 +recall_1000 all 0.5997 +infAP all 0.1785 +gm_bpref all 0.0083 +Rprec_mult_0.20 all 0.3445 +Rprec_mult_0.40 all 0.3157 +Rprec_mult_0.60 all 0.2842 +Rprec_mult_0.80 all 0.2613 +Rprec_mult_1.00 all 0.2174 +Rprec_mult_1.20 all 0.1921 +Rprec_mult_1.40 all 0.1653 +Rprec_mult_1.60 all 0.1468 +Rprec_mult_1.80 all 0.1308 +Rprec_mult_2.00 all 0.1369 +utility all -412.6667 +11pt_avg all 0.1958 +binG all 0.1393 +G all 0.1393 +ndcg all 0.4021 +ndcg_rel all 0.3682 +Rndcg all 0.3232 +ndcg_cut_5 all 0.2768 +ndcg_cut_10 all 0.3016 +ndcg_cut_15 all 0.3087 +ndcg_cut_20 all 0.3525 +ndcg_cut_30 all 0.3363 +ndcg_cut_100 all 0.3916 +ndcg_cut_200 all 0.4045 +ndcg_cut_500 all 0.4021 +ndcg_cut_1000 all 0.4021 +map_cut_5 all 0.0154 +map_cut_10 all 0.0259 +map_cut_15 all 0.0425 +map_cut_20 all 0.0591 +map_cut_30 all 0.0795 +map_cut_100 all 0.1622 +map_cut_200 all 0.1711 +map_cut_500 all 0.1785 +map_cut_1000 all 0.1785 +relative_P_5 all 0.2667 +relative_P_10 all 0.3000 +relative_P_15 all 0.3111 +relative_P_20 all 0.3833 +relative_P_30 all 0.3556 +relative_P_100 all 0.5585 +relative_P_200 all 0.5938 +relative_P_500 all 0.5997 +relative_P_1000 all 0.5997 +success_1 all 0.3333 +success_5 all 0.3333 +success_10 all 0.6667 +set_P all 0.0873 +set_relative_P all 0.5997 +set_recall all 0.5997 +set_map all 0.0354 +set_F all 0.1194 +num_nonrel_judged_ret all 607 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.aqZ b/tools/eval/trec_eval.9.0.4/test/out.test.aqZ new file mode 100644 index 0000000000000000000000000000000000000000..f9e56714f2ae93f0d26f63bc8bafe6d0f1b57ff3 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.aqZ @@ -0,0 +1,367 @@ +Znum_ret 301 -1.8922 +Znum_rel 301 -1000000.0000 +Znum_rel_ret 301 -0.5873 +Zmap 301 -0.5933 +ZRprec 301 -0.2881 +Zbpref 301 -0.5720 +Zrecip_rank 301 -0.9628 +Ziprec_at_recall_0.00 301 -1.0441 +Ziprec_at_recall_0.10 301 -0.3743 +Ziprec_at_recall_0.20 301 -0.7506 +Ziprec_at_recall_0.30 301 -0.5891 +Ziprec_at_recall_0.40 301 -0.5167 +Ziprec_at_recall_0.50 301 -0.4189 +Ziprec_at_recall_0.60 301 -0.2656 +Ziprec_at_recall_0.70 301 -0.1845 +Ziprec_at_recall_0.80 301 0.0000 +Ziprec_at_recall_0.90 301 0.0000 +Ziprec_at_recall_1.00 301 0.0000 +ZP_5 301 -1.2355 +ZP_10 301 -0.7171 +ZP_15 301 -1.0219 +ZP_20 301 -0.6264 +ZP_30 301 -0.6319 +ZP_100 301 -0.4285 +ZP_200 301 -0.2601 +ZP_500 301 -0.2511 +ZP_1000 301 -0.5872 +relstring 301 '0000011000' +Zrecall_5 301 -1.2368 +Zrecall_10 301 -0.7508 +Zrecall_15 301 -1.0517 +Zrecall_20 301 -0.6823 +Zrecall_30 301 -0.6810 +Zrecall_100 301 -0.4959 +Zrecall_200 301 -0.3372 +Zrecall_500 301 -0.3163 +Zrecall_1000 301 -0.6336 +ZinfAP 301 -0.5933 +ZRprec_mult_0.20 301 -0.5113 +ZRprec_mult_0.40 301 -0.3452 +ZRprec_mult_0.60 301 -0.2004 +ZRprec_mult_0.80 301 -0.2111 +ZRprec_mult_1.00 301 -0.2881 +ZRprec_mult_1.20 301 -0.3505 +ZRprec_mult_1.40 301 -0.4275 +ZRprec_mult_1.60 301 -0.4901 +ZRprec_mult_1.80 301 -0.5509 +ZRprec_mult_2.00 301 -0.5956 +Zutility 301 1.4081 +Z11pt_avg 301 -0.7366 +ZbinG 301 -0.6209 +ZG 301 -0.6209 +Zndcg 301 -0.6262 +Zndcg_rel 301 -0.6261 +ZRndcg 301 -0.5263 +Zndcg_cut_5 301 -1.2003 +Zndcg_cut_10 301 -0.8489 +Zndcg_cut_15 301 -1.0340 +Zndcg_cut_20 301 -0.7855 +Zndcg_cut_30 301 -0.7744 +Zndcg_cut_100 301 -0.5637 +Zndcg_cut_200 301 -0.4121 +Zndcg_cut_500 301 -0.4012 +Zndcg_cut_1000 301 -0.6262 +Zmap_cut_5 301 -0.9474 +Zmap_cut_10 301 -0.8449 +Zmap_cut_15 301 -0.8890 +Zmap_cut_20 301 -0.8128 +Zmap_cut_30 301 -0.7947 +Zmap_cut_100 301 -0.6599 +Zmap_cut_200 301 -0.5777 +Zmap_cut_500 301 -0.5311 +Zmap_cut_1000 301 -0.5933 +Zrelative_P_5 301 -1.2355 +Zrelative_P_10 301 -0.7171 +Zrelative_P_15 301 -1.0219 +Zrelative_P_20 301 -0.6264 +Zrelative_P_30 301 -0.6319 +Zrelative_P_100 301 -0.4285 +Zrelative_P_200 301 -0.2601 +Zrelative_P_500 301 -0.3163 +Zrelative_P_1000 301 -0.6336 +Zsuccess_1 301 -0.8010 +Zsuccess_5 301 -1.7530 +Zsuccess_10 301 0.4423 +Zset_P 301 0.1175 +Zset_relative_P 301 -0.6852 +Zset_recall 301 -0.6336 +Zset_map 301 -0.4675 +Zset_F 301 nan +Znum_nonrel_judged_ret 301 -0.2633 +Znum_ret 302 -1.6693 +Znum_rel 302 -1000000.0000 +Znum_rel_ret 302 -0.1901 +Zmap 302 -0.4204 +ZRprec 302 0.0054 +Zbpref 302 -0.2055 +Zrecip_rank 302 0.3618 +Ziprec_at_recall_0.00 302 0.3190 +Ziprec_at_recall_0.10 302 0.3366 +Ziprec_at_recall_0.20 302 0.6255 +Ziprec_at_recall_0.30 302 0.3699 +Ziprec_at_recall_0.40 302 0.3427 +Ziprec_at_recall_0.50 302 0.0229 +Ziprec_at_recall_0.60 302 -1.5090 +Ziprec_at_recall_0.70 302 -1.5573 +Ziprec_at_recall_0.80 302 -1.3611 +Ziprec_at_recall_0.90 302 -1.0515 +Ziprec_at_recall_1.00 302 -0.4362 +ZP_5 302 0.1902 +ZP_10 302 -0.0091 +ZP_15 302 0.6095 +ZP_20 302 0.6810 +ZP_30 302 0.4891 +ZP_100 302 0.0475 +ZP_200 302 -0.2658 +ZP_500 302 -0.0927 +ZP_1000 302 -0.1899 +relstring 302 '1101110110' +Zrecall_5 302 -0.3289 +Zrecall_10 302 -0.5622 +Zrecall_15 302 -0.0256 +Zrecall_20 302 0.0492 +Zrecall_30 302 -0.0874 +Zrecall_100 302 -0.4093 +Zrecall_200 302 -0.6538 +Zrecall_500 302 -0.5320 +Zrecall_1000 302 -0.6255 +ZinfAP 302 -0.4204 +ZRprec_mult_0.20 302 0.6179 +ZRprec_mult_0.40 302 0.4432 +ZRprec_mult_0.60 302 0.2770 +ZRprec_mult_0.80 302 0.3150 +ZRprec_mult_1.00 302 0.0054 +ZRprec_mult_1.20 302 -0.1067 +ZRprec_mult_1.40 302 -0.3008 +ZRprec_mult_1.60 302 -0.4071 +ZRprec_mult_1.80 302 -0.4812 +ZRprec_mult_2.00 302 -0.4859 +Zutility 302 1.7482 +Z11pt_avg 302 -0.3741 +ZbinG 302 -0.4454 +ZG 302 -0.4454 +Zndcg 302 -0.3706 +Zndcg_rel 302 0.1388 +ZRndcg 302 -0.1743 +Zndcg_cut_5 302 0.1840 +Zndcg_cut_10 302 0.0724 +Zndcg_cut_15 302 0.4600 +Zndcg_cut_20 302 0.5456 +Zndcg_cut_30 302 0.4514 +Zndcg_cut_100 302 -0.2048 +Zndcg_cut_200 302 -0.3998 +Zndcg_cut_500 302 -0.3218 +Zndcg_cut_1000 302 -0.3706 +Zmap_cut_5 302 -0.4160 +Zmap_cut_10 302 -0.5745 +Zmap_cut_15 302 -0.1069 +Zmap_cut_20 302 0.0581 +Zmap_cut_30 302 -0.0191 +Zmap_cut_100 302 -0.2522 +Zmap_cut_200 302 -0.4264 +Zmap_cut_500 302 -0.4091 +Zmap_cut_1000 302 -0.4204 +Zrelative_P_5 302 0.1902 +Zrelative_P_10 302 -0.0091 +Zrelative_P_15 302 0.6095 +Zrelative_P_20 302 0.6810 +Zrelative_P_30 302 0.4891 +Zrelative_P_100 302 -0.4093 +Zrelative_P_200 302 -0.6538 +Zrelative_P_500 302 -0.5320 +Zrelative_P_1000 302 -0.6255 +Zsuccess_1 302 0.3819 +Zsuccess_5 302 0.2605 +Zsuccess_10 302 0.2605 +Zset_P 302 0.4234 +Zset_relative_P 302 -0.6890 +Zset_recall 302 -0.6255 +Zset_map 302 0.4257 +Zset_F 302 nan +Znum_nonrel_judged_ret 302 -0.0899 +Znum_ret 303 -1.6644 +Znum_rel 303 0.0000 +Znum_rel_ret 303 0.3233 +Zmap 303 -0.8091 +ZRprec 303 -1.1731 +Zbpref 303 -1.1380 +Zrecip_rank 303 -0.9744 +Ziprec_at_recall_0.00 303 -0.9156 +Ziprec_at_recall_0.10 303 -0.9156 +Ziprec_at_recall_0.20 303 -0.5362 +Ziprec_at_recall_0.30 303 -0.5342 +Ziprec_at_recall_0.40 303 -0.4555 +Ziprec_at_recall_0.50 303 -0.4182 +Ziprec_at_recall_0.60 303 -0.5026 +Ziprec_at_recall_0.70 303 -0.4765 +Ziprec_at_recall_0.80 303 -0.6261 +Ziprec_at_recall_0.90 303 -0.5746 +Ziprec_at_recall_1.00 303 -0.2207 +ZP_5 303 -1.0695 +ZP_10 303 -1.1731 +ZP_15 303 -1.2451 +ZP_20 303 -0.5510 +ZP_30 303 -0.9594 +ZP_100 303 0.0646 +ZP_200 303 0.3333 +ZP_500 303 0.3208 +ZP_1000 303 0.3077 +relstring 303 '0000000000' +Zrecall_5 303 -1.0703 +Zrecall_10 303 -1.1731 +Zrecall_15 303 -1.2450 +Zrecall_20 303 -0.5513 +Zrecall_30 303 -0.9600 +Zrecall_100 303 0.0657 +Zrecall_200 303 0.3349 +Zrecall_500 303 0.3276 +Zrecall_1000 303 0.3231 +ZinfAP 303 -0.8091 +ZRprec_mult_0.20 303 -0.9142 +ZRprec_mult_0.40 303 -1.1004 +ZRprec_mult_0.60 303 -1.1481 +ZRprec_mult_0.80 303 -1.1427 +ZRprec_mult_1.00 303 -1.1731 +ZRprec_mult_1.20 303 -1.1792 +ZRprec_mult_1.40 303 -1.2590 +ZRprec_mult_1.60 303 -1.2229 +ZRprec_mult_1.80 303 -1.2054 +ZRprec_mult_2.00 303 -0.5510 +Zutility 303 1.6802 +Z11pt_avg 303 -0.8425 +ZbinG 303 -0.4708 +ZG 303 -0.4708 +Zndcg 303 -0.4517 +Zndcg_rel 303 -0.7082 +ZRndcg 303 -0.7923 +Zndcg_cut_5 303 -1.0403 +Zndcg_cut_10 303 -1.1487 +Zndcg_cut_15 303 -1.2265 +Zndcg_cut_20 303 -0.8854 +Zndcg_cut_30 303 -1.0816 +Zndcg_cut_100 303 -0.5746 +Zndcg_cut_200 303 -0.4451 +Zndcg_cut_500 303 -0.4474 +Zndcg_cut_1000 303 -0.4517 +Zmap_cut_5 303 -0.9156 +Zmap_cut_10 303 -0.9633 +Zmap_cut_15 303 -1.0034 +Zmap_cut_20 303 -0.9215 +Zmap_cut_30 303 -0.9870 +Zmap_cut_100 303 -0.8738 +Zmap_cut_200 303 -0.8101 +Zmap_cut_500 303 -0.8091 +Zmap_cut_1000 303 -0.8091 +Zrelative_P_5 303 -1.0695 +Zrelative_P_10 303 -1.1731 +Zrelative_P_15 303 -1.2450 +Zrelative_P_20 303 -0.5513 +Zrelative_P_30 303 -0.9600 +Zrelative_P_100 303 0.0657 +Zrelative_P_200 303 0.3349 +Zrelative_P_500 303 0.3276 +Zrelative_P_1000 303 0.3231 +Zsuccess_1 303 -0.5283 +Zsuccess_5 303 -1.2017 +Zsuccess_10 303 -1.5274 +Zset_P 303 0.1185 +Zset_relative_P 303 0.3224 +Zset_recall 303 0.3231 +Zset_map 303 1.0123 +Zset_F 303 nan +Znum_nonrel_judged_ret 303 -0.4112 +runid all STANDARD +Znum_q all 3.0000 +Znum_ret all -5.2259 +Znum_rel all -2000000.0000 +Znum_rel_ret all -0.4541 +Zmap all -0.6076 +Zgm_map all 0.0000 +ZRprec all -0.4853 +Zbpref all -0.6385 +Zrecip_rank all -0.5251 +Ziprec_at_recall_0.00 all -0.5469 +Ziprec_at_recall_0.10 all -0.3177 +Ziprec_at_recall_0.20 all -0.2204 +Ziprec_at_recall_0.30 all -0.2511 +Ziprec_at_recall_0.40 all -0.2098 +Ziprec_at_recall_0.50 all -0.2714 +Ziprec_at_recall_0.60 all -0.7591 +Ziprec_at_recall_0.70 all -0.7394 +Ziprec_at_recall_0.80 all -0.6624 +Ziprec_at_recall_0.90 all -0.5421 +Ziprec_at_recall_1.00 all -0.2190 +ZP_5 all -0.7049 +ZP_10 all -0.6331 +ZP_15 all -0.5525 +ZP_20 all -0.1655 +ZP_30 all -0.3674 +ZP_100 all -0.1055 +ZP_200 all -0.0642 +ZP_500 all -0.0077 +ZP_1000 all -0.1565 +Zrecall_5 all -0.8787 +Zrecall_10 all -0.8287 +Zrecall_15 all -0.7741 +Zrecall_20 all -0.3948 +Zrecall_30 all -0.5761 +Zrecall_100 all -0.2798 +Zrecall_200 all -0.2187 +Zrecall_500 all -0.1735 +Zrecall_1000 all -0.3120 +ZinfAP all -0.6076 +Zgm_bpref all 0.0000 +ZRprec_mult_0.20 all -0.2692 +ZRprec_mult_0.40 all -0.3341 +ZRprec_mult_0.60 all -0.3572 +ZRprec_mult_0.80 all -0.3463 +ZRprec_mult_1.00 all -0.4853 +ZRprec_mult_1.20 all -0.5455 +ZRprec_mult_1.40 all -0.6624 +ZRprec_mult_1.60 all -0.7067 +ZRprec_mult_1.80 all -0.7458 +ZRprec_mult_2.00 all -0.5441 +Zutility all 1.6122 +Z11pt_avg all -0.6511 +ZbinG all -0.5123 +ZG all -0.5123 +Zndcg all -0.4828 +Zndcg_rel all -0.3985 +ZRndcg all -0.4976 +Zndcg_cut_5 all -0.6856 +Zndcg_cut_10 all -0.6418 +Zndcg_cut_15 all -0.6002 +Zndcg_cut_20 all -0.3751 +Zndcg_cut_30 all -0.4682 +Zndcg_cut_100 all -0.4477 +Zndcg_cut_200 all -0.4190 +Zndcg_cut_500 all -0.3901 +Zndcg_cut_1000 all -0.4828 +Zmap_cut_5 all -0.7597 +Zmap_cut_10 all -0.7942 +Zmap_cut_15 all -0.6665 +Zmap_cut_20 all -0.5588 +Zmap_cut_30 all -0.6003 +Zmap_cut_100 all -0.5953 +Zmap_cut_200 all -0.6047 +Zmap_cut_500 all -0.5831 +Zmap_cut_1000 all -0.6076 +Zrelative_P_5 all -0.7049 +Zrelative_P_10 all -0.6331 +Zrelative_P_15 all -0.5524 +Zrelative_P_20 all -0.1656 +Zrelative_P_30 all -0.3676 +Zrelative_P_100 all -0.2574 +Zrelative_P_200 all -0.1930 +Zrelative_P_500 all -0.1735 +Zrelative_P_1000 all -0.3120 +Zsuccess_1 all -0.3158 +Zsuccess_5 all -0.8981 +Zsuccess_10 all -0.2749 +Zset_P all 0.2198 +Zset_relative_P all -0.3506 +Zset_recall all -0.3120 +Zset_map all 0.3235 +Zset_F all nan +Znum_nonrel_judged_ret all -0.7645 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.aqc b/tools/eval/trec_eval.9.0.4/test/out.test.aqc new file mode 100644 index 0000000000000000000000000000000000000000..0e1814bd633d31a46fc58b7c0de74ef0a21f2fa6 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.aqc @@ -0,0 +1,276 @@ +num_ret 301 500 +num_rel 301 474 +num_rel_ret 301 71 +map 301 0.0324 +Rprec 301 0.1456 +bpref 301 0.1230 +recip_rank 301 0.1667 +iprec_at_recall_0.00 301 0.2857 +iprec_at_recall_0.10 301 0.2096 +iprec_at_recall_0.20 301 0.0000 +iprec_at_recall_0.30 301 0.0000 +iprec_at_recall_0.40 301 0.0000 +iprec_at_recall_0.50 301 0.0000 +iprec_at_recall_0.60 301 0.0000 +iprec_at_recall_0.70 301 0.0000 +iprec_at_recall_0.80 301 0.0000 +iprec_at_recall_0.90 301 0.0000 +iprec_at_recall_1.00 301 0.0000 +P_5 301 0.0000 +P_10 301 0.2000 +P_15 301 0.1333 +P_20 301 0.2500 +P_30 301 0.2333 +P_100 301 0.2300 +P_200 301 0.2100 +P_500 301 0.1420 +P_1000 301 0.0710 +relstring 301 '0000011000' +recall_5 301 0.0000 +recall_10 301 0.0042 +recall_15 301 0.0042 +recall_20 301 0.0105 +recall_30 301 0.0148 +recall_100 301 0.0485 +recall_200 301 0.0886 +recall_500 301 0.1498 +recall_1000 301 0.1498 +infAP 301 0.0324 +Rprec_mult_0.20 301 0.2211 +Rprec_mult_0.40 301 0.2053 +Rprec_mult_0.60 301 0.1930 +Rprec_mult_0.80 301 0.1711 +Rprec_mult_1.00 301 0.1456 +Rprec_mult_1.20 301 0.1248 +Rprec_mult_1.40 301 0.1069 +Rprec_mult_1.60 301 0.0935 +Rprec_mult_1.80 301 0.0831 +Rprec_mult_2.00 301 0.0749 +utility 301 -358.0000 +11pt_avg 301 0.0450 +binG 301 0.0238 +G 301 0.0238 +ndcg 301 0.1584 +ndcg_rel 301 0.1651 +Rndcg 301 0.1567 +ndcg_cut_5 301 0.0000 +ndcg_cut_10 301 0.1518 +ndcg_cut_15 301 0.1176 +ndcg_cut_20 301 0.1985 +ndcg_cut_30 301 0.1975 +ndcg_cut_100 301 0.2166 +ndcg_cut_200 301 0.2063 +ndcg_cut_500 301 0.1584 +ndcg_cut_1000 301 0.1584 +map_cut_5 301 0.0000 +map_cut_10 301 0.0010 +map_cut_15 301 0.0010 +map_cut_20 301 0.0023 +map_cut_30 301 0.0033 +map_cut_100 301 0.0118 +map_cut_200 301 0.0208 +map_cut_500 301 0.0324 +map_cut_1000 301 0.0324 +relative_P_5 301 0.0000 +relative_P_10 301 0.2000 +relative_P_15 301 0.1333 +relative_P_20 301 0.2500 +relative_P_30 301 0.2333 +relative_P_100 301 0.2300 +relative_P_200 301 0.2100 +relative_P_500 301 0.1498 +relative_P_1000 301 0.1498 +success_1 301 0.0000 +success_5 301 0.0000 +success_10 301 1.0000 +set_P 301 0.1420 +set_relative_P 301 0.1498 +set_recall 301 0.1498 +set_map 301 0.0213 +set_F 301 0.1458 +num_nonrel_judged_ret 301 188 +num_ret 303 84 +num_rel 303 10 +num_rel_ret 303 6 +map 303 0.2723 +Rprec 303 0.4000 +bpref 303 0.3300 +recip_rank 303 0.3333 +iprec_at_recall_0.00 303 0.6000 +iprec_at_recall_0.10 303 0.6000 +iprec_at_recall_0.20 303 0.6000 +iprec_at_recall_0.30 303 0.6000 +iprec_at_recall_0.40 303 0.5714 +iprec_at_recall_0.50 303 0.3846 +iprec_at_recall_0.60 303 0.3333 +iprec_at_recall_0.70 303 0.0000 +iprec_at_recall_0.80 303 0.0000 +iprec_at_recall_0.90 303 0.0000 +iprec_at_recall_1.00 303 0.0000 +P_5 303 0.6000 +P_10 303 0.4000 +P_15 303 0.3333 +P_20 303 0.3000 +P_30 303 0.2000 +P_100 303 0.0600 +P_200 303 0.0300 +P_500 303 0.0120 +P_1000 303 0.0060 +relstring 303 '0011101000' +recall_5 303 0.3000 +recall_10 303 0.4000 +recall_15 303 0.5000 +recall_20 303 0.6000 +recall_30 303 0.6000 +recall_100 303 0.6000 +recall_200 303 0.6000 +recall_500 303 0.6000 +recall_1000 303 0.6000 +infAP 303 0.2723 +Rprec_mult_0.20 303 0.0000 +Rprec_mult_0.40 303 0.5000 +Rprec_mult_0.60 303 0.5000 +Rprec_mult_0.80 303 0.5000 +Rprec_mult_1.00 303 0.4000 +Rprec_mult_1.20 303 0.3333 +Rprec_mult_1.40 303 0.3571 +Rprec_mult_1.60 303 0.3125 +Rprec_mult_1.80 303 0.3333 +Rprec_mult_2.00 303 0.3000 +utility 303 -72.0000 +11pt_avg 303 0.3354 +binG 303 0.2494 +G 303 0.2494 +ndcg 303 0.4730 +ndcg_rel 303 0.4285 +Rndcg 303 0.4182 +ndcg_cut_5 303 0.4469 +ndcg_cut_10 303 0.3633 +ndcg_cut_15 303 0.4211 +ndcg_cut_20 303 0.4730 +ndcg_cut_30 303 0.4730 +ndcg_cut_100 303 0.4730 +ndcg_cut_200 303 0.4730 +ndcg_cut_500 303 0.4730 +ndcg_cut_1000 303 0.4730 +map_cut_5 303 0.1433 +map_cut_10 303 0.2005 +map_cut_15 303 0.2389 +map_cut_20 303 0.2723 +map_cut_30 303 0.2723 +map_cut_100 303 0.2723 +map_cut_200 303 0.2723 +map_cut_500 303 0.2723 +map_cut_1000 303 0.2723 +relative_P_5 303 0.6000 +relative_P_10 303 0.4000 +relative_P_15 303 0.5000 +relative_P_20 303 0.6000 +relative_P_30 303 0.6000 +relative_P_100 303 0.6000 +relative_P_200 303 0.6000 +relative_P_500 303 0.6000 +relative_P_1000 303 0.6000 +success_1 303 0.0000 +success_5 303 1.0000 +success_10 303 1.0000 +set_P 303 0.0714 +set_relative_P 303 0.6000 +set_recall 303 0.6000 +set_map 303 0.0429 +set_F 303 0.1277 +num_nonrel_judged_ret 303 61 +runid all STANDARD +num_q all 3 +num_ret all 584 +num_rel all 561 +num_rel_ret all 77 +map all 0.1016 +gm_map all 0.0045 +Rprec all 0.1819 +bpref all 0.1510 +recip_rank all 0.1667 +iprec_at_recall_0.00 all 0.2952 +iprec_at_recall_0.10 all 0.2699 +iprec_at_recall_0.20 all 0.2000 +iprec_at_recall_0.30 all 0.2000 +iprec_at_recall_0.40 all 0.1905 +iprec_at_recall_0.50 all 0.1282 +iprec_at_recall_0.60 all 0.1111 +iprec_at_recall_0.70 all 0.0000 +iprec_at_recall_0.80 all 0.0000 +iprec_at_recall_0.90 all 0.0000 +iprec_at_recall_1.00 all 0.0000 +P_5 all 0.2000 +P_10 all 0.2000 +P_15 all 0.1556 +P_20 all 0.1833 +P_30 all 0.1444 +P_100 all 0.0967 +P_200 all 0.0800 +P_500 all 0.0513 +P_1000 all 0.0257 +recall_5 all 0.1000 +recall_10 all 0.1347 +recall_15 all 0.1681 +recall_20 all 0.2035 +recall_30 all 0.2049 +recall_100 all 0.2162 +recall_200 all 0.2295 +recall_500 all 0.2499 +recall_1000 all 0.2499 +infAP all 0.1016 +gm_bpref all 0.0074 +Rprec_mult_0.20 all 0.0737 +Rprec_mult_0.40 all 0.2351 +Rprec_mult_0.60 all 0.2310 +Rprec_mult_0.80 all 0.2237 +Rprec_mult_1.00 all 0.1819 +Rprec_mult_1.20 all 0.1527 +Rprec_mult_1.40 all 0.1547 +Rprec_mult_1.60 all 0.1353 +Rprec_mult_1.80 all 0.1388 +Rprec_mult_2.00 all 0.1250 +utility all -143.3333 +11pt_avg all 0.1268 +binG all 0.0911 +G all 0.0911 +ndcg all 0.2105 +ndcg_rel all 0.1979 +Rndcg all 0.1916 +ndcg_cut_5 all 0.1490 +ndcg_cut_10 all 0.1717 +ndcg_cut_15 all 0.1796 +ndcg_cut_20 all 0.2238 +ndcg_cut_30 all 0.2235 +ndcg_cut_100 all 0.2299 +ndcg_cut_200 all 0.2264 +ndcg_cut_500 all 0.2105 +ndcg_cut_1000 all 0.2105 +map_cut_5 all 0.0478 +map_cut_10 all 0.0671 +map_cut_15 all 0.0800 +map_cut_20 all 0.0915 +map_cut_30 all 0.0919 +map_cut_100 all 0.0947 +map_cut_200 all 0.0977 +map_cut_500 all 0.1016 +map_cut_1000 all 0.1016 +relative_P_5 all 0.2000 +relative_P_10 all 0.2000 +relative_P_15 all 0.2111 +relative_P_20 all 0.2833 +relative_P_30 all 0.2778 +relative_P_100 all 0.2767 +relative_P_200 all 0.2700 +relative_P_500 all 0.2499 +relative_P_1000 all 0.2499 +success_1 all 0.0000 +success_5 all 0.3333 +success_10 all 0.6667 +set_P all 0.0711 +set_relative_P all 0.2499 +set_recall all 0.2499 +set_map all 0.0214 +set_F all 0.0912 +num_nonrel_judged_ret all 249 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.aqcM b/tools/eval/trec_eval.9.0.4/test/out.test.aqcM new file mode 100644 index 0000000000000000000000000000000000000000..b33a3b5ad968d1723c4571352285a5fe2f8a5db8 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.aqcM @@ -0,0 +1,276 @@ +num_ret 301 100 +num_rel 301 474 +num_rel_ret 301 23 +map 301 0.0118 +Rprec 301 0.0485 +bpref 301 0.0456 +recip_rank 301 0.1667 +iprec_at_recall_0.00 301 0.2857 +iprec_at_recall_0.10 301 0.0000 +iprec_at_recall_0.20 301 0.0000 +iprec_at_recall_0.30 301 0.0000 +iprec_at_recall_0.40 301 0.0000 +iprec_at_recall_0.50 301 0.0000 +iprec_at_recall_0.60 301 0.0000 +iprec_at_recall_0.70 301 0.0000 +iprec_at_recall_0.80 301 0.0000 +iprec_at_recall_0.90 301 0.0000 +iprec_at_recall_1.00 301 0.0000 +P_5 301 0.0000 +P_10 301 0.2000 +P_15 301 0.1333 +P_20 301 0.2500 +P_30 301 0.2333 +P_100 301 0.2300 +P_200 301 0.1150 +P_500 301 0.0460 +P_1000 301 0.0230 +relstring 301 '0000011000' +recall_5 301 0.0000 +recall_10 301 0.0042 +recall_15 301 0.0042 +recall_20 301 0.0105 +recall_30 301 0.0148 +recall_100 301 0.0485 +recall_200 301 0.0485 +recall_500 301 0.0485 +recall_1000 301 0.0485 +infAP 301 0.0118 +Rprec_mult_0.20 301 0.2211 +Rprec_mult_0.40 301 0.1211 +Rprec_mult_0.60 301 0.0807 +Rprec_mult_0.80 301 0.0605 +Rprec_mult_1.00 301 0.0485 +Rprec_mult_1.20 301 0.0404 +Rprec_mult_1.40 301 0.0346 +Rprec_mult_1.60 301 0.0303 +Rprec_mult_1.80 301 0.0269 +Rprec_mult_2.00 301 0.0243 +utility 301 -54.0000 +11pt_avg 301 0.0260 +binG 301 0.0102 +G 301 0.0102 +ndcg 301 0.0670 +ndcg_rel 301 0.0739 +Rndcg 301 0.0670 +ndcg_cut_5 301 0.0000 +ndcg_cut_10 301 0.1518 +ndcg_cut_15 301 0.1176 +ndcg_cut_20 301 0.1985 +ndcg_cut_30 301 0.1975 +ndcg_cut_100 301 0.2166 +ndcg_cut_200 301 0.1303 +ndcg_cut_500 301 0.0670 +ndcg_cut_1000 301 0.0670 +map_cut_5 301 0.0000 +map_cut_10 301 0.0010 +map_cut_15 301 0.0010 +map_cut_20 301 0.0023 +map_cut_30 301 0.0033 +map_cut_100 301 0.0118 +map_cut_200 301 0.0118 +map_cut_500 301 0.0118 +map_cut_1000 301 0.0118 +relative_P_5 301 0.0000 +relative_P_10 301 0.2000 +relative_P_15 301 0.1333 +relative_P_20 301 0.2500 +relative_P_30 301 0.2333 +relative_P_100 301 0.2300 +relative_P_200 301 0.1150 +relative_P_500 301 0.0485 +relative_P_1000 301 0.0485 +success_1 301 0.0000 +success_5 301 0.0000 +success_10 301 1.0000 +set_P 301 0.2300 +set_relative_P 301 0.2300 +set_recall 301 0.0485 +set_map 301 0.0112 +set_F 301 0.0801 +num_nonrel_judged_ret 301 50 +num_ret 303 84 +num_rel 303 10 +num_rel_ret 303 6 +map 303 0.2723 +Rprec 303 0.4000 +bpref 303 0.3300 +recip_rank 303 0.3333 +iprec_at_recall_0.00 303 0.6000 +iprec_at_recall_0.10 303 0.6000 +iprec_at_recall_0.20 303 0.6000 +iprec_at_recall_0.30 303 0.6000 +iprec_at_recall_0.40 303 0.5714 +iprec_at_recall_0.50 303 0.3846 +iprec_at_recall_0.60 303 0.3333 +iprec_at_recall_0.70 303 0.0000 +iprec_at_recall_0.80 303 0.0000 +iprec_at_recall_0.90 303 0.0000 +iprec_at_recall_1.00 303 0.0000 +P_5 303 0.6000 +P_10 303 0.4000 +P_15 303 0.3333 +P_20 303 0.3000 +P_30 303 0.2000 +P_100 303 0.0600 +P_200 303 0.0300 +P_500 303 0.0120 +P_1000 303 0.0060 +relstring 303 '0011101000' +recall_5 303 0.3000 +recall_10 303 0.4000 +recall_15 303 0.5000 +recall_20 303 0.6000 +recall_30 303 0.6000 +recall_100 303 0.6000 +recall_200 303 0.6000 +recall_500 303 0.6000 +recall_1000 303 0.6000 +infAP 303 0.2723 +Rprec_mult_0.20 303 0.0000 +Rprec_mult_0.40 303 0.5000 +Rprec_mult_0.60 303 0.5000 +Rprec_mult_0.80 303 0.5000 +Rprec_mult_1.00 303 0.4000 +Rprec_mult_1.20 303 0.3333 +Rprec_mult_1.40 303 0.3571 +Rprec_mult_1.60 303 0.3125 +Rprec_mult_1.80 303 0.3333 +Rprec_mult_2.00 303 0.3000 +utility 303 -72.0000 +11pt_avg 303 0.3354 +binG 303 0.2494 +G 303 0.2494 +ndcg 303 0.4730 +ndcg_rel 303 0.4285 +Rndcg 303 0.4182 +ndcg_cut_5 303 0.4469 +ndcg_cut_10 303 0.3633 +ndcg_cut_15 303 0.4211 +ndcg_cut_20 303 0.4730 +ndcg_cut_30 303 0.4730 +ndcg_cut_100 303 0.4730 +ndcg_cut_200 303 0.4730 +ndcg_cut_500 303 0.4730 +ndcg_cut_1000 303 0.4730 +map_cut_5 303 0.1433 +map_cut_10 303 0.2005 +map_cut_15 303 0.2389 +map_cut_20 303 0.2723 +map_cut_30 303 0.2723 +map_cut_100 303 0.2723 +map_cut_200 303 0.2723 +map_cut_500 303 0.2723 +map_cut_1000 303 0.2723 +relative_P_5 303 0.6000 +relative_P_10 303 0.4000 +relative_P_15 303 0.5000 +relative_P_20 303 0.6000 +relative_P_30 303 0.6000 +relative_P_100 303 0.6000 +relative_P_200 303 0.6000 +relative_P_500 303 0.6000 +relative_P_1000 303 0.6000 +success_1 303 0.0000 +success_5 303 1.0000 +success_10 303 1.0000 +set_P 303 0.0714 +set_relative_P 303 0.6000 +set_recall 303 0.6000 +set_map 303 0.0429 +set_F 303 0.1277 +num_nonrel_judged_ret 303 61 +runid all STANDARD +num_q all 3 +num_ret all 184 +num_rel all 561 +num_rel_ret all 29 +map all 0.0947 +gm_map all 0.0032 +Rprec all 0.1495 +bpref all 0.1252 +recip_rank all 0.1667 +iprec_at_recall_0.00 all 0.2952 +iprec_at_recall_0.10 all 0.2000 +iprec_at_recall_0.20 all 0.2000 +iprec_at_recall_0.30 all 0.2000 +iprec_at_recall_0.40 all 0.1905 +iprec_at_recall_0.50 all 0.1282 +iprec_at_recall_0.60 all 0.1111 +iprec_at_recall_0.70 all 0.0000 +iprec_at_recall_0.80 all 0.0000 +iprec_at_recall_0.90 all 0.0000 +iprec_at_recall_1.00 all 0.0000 +P_5 all 0.2000 +P_10 all 0.2000 +P_15 all 0.1556 +P_20 all 0.1833 +P_30 all 0.1444 +P_100 all 0.0967 +P_200 all 0.0483 +P_500 all 0.0193 +P_1000 all 0.0097 +recall_5 all 0.1000 +recall_10 all 0.1347 +recall_15 all 0.1681 +recall_20 all 0.2035 +recall_30 all 0.2049 +recall_100 all 0.2162 +recall_200 all 0.2162 +recall_500 all 0.2162 +recall_1000 all 0.2162 +infAP all 0.0947 +gm_bpref all 0.0053 +Rprec_mult_0.20 all 0.0737 +Rprec_mult_0.40 all 0.2070 +Rprec_mult_0.60 all 0.1936 +Rprec_mult_0.80 all 0.1868 +Rprec_mult_1.00 all 0.1495 +Rprec_mult_1.20 all 0.1246 +Rprec_mult_1.40 all 0.1306 +Rprec_mult_1.60 all 0.1143 +Rprec_mult_1.80 all 0.1201 +Rprec_mult_2.00 all 0.1081 +utility all -42.0000 +11pt_avg all 0.1205 +binG all 0.0865 +G all 0.0865 +ndcg all 0.1800 +ndcg_rel all 0.1674 +Rndcg all 0.1617 +ndcg_cut_5 all 0.1490 +ndcg_cut_10 all 0.1717 +ndcg_cut_15 all 0.1796 +ndcg_cut_20 all 0.2238 +ndcg_cut_30 all 0.2235 +ndcg_cut_100 all 0.2299 +ndcg_cut_200 all 0.2011 +ndcg_cut_500 all 0.1800 +ndcg_cut_1000 all 0.1800 +map_cut_5 all 0.0478 +map_cut_10 all 0.0671 +map_cut_15 all 0.0800 +map_cut_20 all 0.0915 +map_cut_30 all 0.0919 +map_cut_100 all 0.0947 +map_cut_200 all 0.0947 +map_cut_500 all 0.0947 +map_cut_1000 all 0.0947 +relative_P_5 all 0.2000 +relative_P_10 all 0.2000 +relative_P_15 all 0.2111 +relative_P_20 all 0.2833 +relative_P_30 all 0.2778 +relative_P_100 all 0.2767 +relative_P_200 all 0.2383 +relative_P_500 all 0.2162 +relative_P_1000 all 0.2162 +success_1 all 0.0000 +success_5 all 0.3333 +success_10 all 0.6667 +set_P all 0.1005 +set_relative_P all 0.2767 +set_recall all 0.2162 +set_map all 0.0180 +set_F all 0.0693 +num_nonrel_judged_ret all 111 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.aql b/tools/eval/trec_eval.9.0.4/test/out.test.aql new file mode 100644 index 0000000000000000000000000000000000000000..898efa162a8575a6d45c29779998904799c9a373 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.aql @@ -0,0 +1,367 @@ +num_ret 301 500 +num_rel 301 12 +num_rel_ret 301 1 +map 301 0.0003 +Rprec 301 0.0000 +bpref 301 0.0000 +recip_rank 301 0.0033 +iprec_at_recall_0.00 301 0.0033 +iprec_at_recall_0.10 301 0.0000 +iprec_at_recall_0.20 301 0.0000 +iprec_at_recall_0.30 301 0.0000 +iprec_at_recall_0.40 301 0.0000 +iprec_at_recall_0.50 301 0.0000 +iprec_at_recall_0.60 301 0.0000 +iprec_at_recall_0.70 301 0.0000 +iprec_at_recall_0.80 301 0.0000 +iprec_at_recall_0.90 301 0.0000 +iprec_at_recall_1.00 301 0.0000 +P_5 301 0.0000 +P_10 301 0.0000 +P_15 301 0.0000 +P_20 301 0.0000 +P_30 301 0.0000 +P_100 301 0.0000 +P_200 301 0.0000 +P_500 301 0.0020 +P_1000 301 0.0010 +relstring_20 301 '0000011000000--10101' +recall_5 301 0.0000 +recall_10 301 0.0000 +recall_15 301 0.0000 +recall_20 301 0.0000 +recall_30 301 0.0000 +recall_100 301 0.0000 +recall_200 301 0.0000 +recall_500 301 0.0833 +recall_1000 301 0.0833 +infAP 301 0.0003 +Rprec_mult_0.20 301 0.0000 +Rprec_mult_0.40 301 0.0000 +Rprec_mult_0.60 301 0.0000 +Rprec_mult_0.80 301 0.0000 +Rprec_mult_1.00 301 0.0000 +Rprec_mult_1.20 301 0.0000 +Rprec_mult_1.40 301 0.0000 +Rprec_mult_1.60 301 0.0000 +Rprec_mult_1.80 301 0.0000 +Rprec_mult_2.00 301 0.0000 +utility 301 -498.0000 +11pt_avg 301 0.0003 +binG 301 0.0101 +G 301 0.0213 +ndcg 301 0.1396 +ndcg_rel 301 0.1393 +Rndcg 301 0.0861 +ndcg_cut_5 301 0.0000 +ndcg_cut_10 301 0.0439 +ndcg_cut_15 301 0.0393 +ndcg_cut_20 301 0.0746 +ndcg_cut_30 301 0.0867 +ndcg_cut_100 301 0.1390 +ndcg_cut_200 301 0.1544 +ndcg_cut_500 301 0.1396 +ndcg_cut_1000 301 0.1396 +map_cut_5 301 0.0000 +map_cut_10 301 0.0000 +map_cut_15 301 0.0000 +map_cut_20 301 0.0000 +map_cut_30 301 0.0000 +map_cut_100 301 0.0000 +map_cut_200 301 0.0000 +map_cut_500 301 0.0003 +map_cut_1000 301 0.0003 +relative_P_5 301 0.0000 +relative_P_10 301 0.0000 +relative_P_15 301 0.0000 +relative_P_20 301 0.0000 +relative_P_30 301 0.0000 +relative_P_100 301 0.0000 +relative_P_200 301 0.0000 +relative_P_500 301 0.0833 +relative_P_1000 301 0.0833 +success_1 301 0.0000 +success_5 301 0.0000 +success_10 301 0.0000 +set_P 301 0.0020 +set_relative_P 301 0.0833 +set_recall 301 0.0833 +set_map 301 0.0002 +set_F 301 0.0039 +num_nonrel_judged_ret 301 258 +num_ret 302 500 +num_rel 302 77 +num_rel_ret 302 50 +map 302 0.4175 +Rprec 302 0.5065 +bpref 302 0.4712 +recip_rank 302 1.0000 +iprec_at_recall_0.00 302 1.0000 +iprec_at_recall_0.10 302 0.8421 +iprec_at_recall_0.20 302 0.8421 +iprec_at_recall_0.30 302 0.7419 +iprec_at_recall_0.40 302 0.6863 +iprec_at_recall_0.50 302 0.5417 +iprec_at_recall_0.60 302 0.1420 +iprec_at_recall_0.70 302 0.0000 +iprec_at_recall_0.80 302 0.0000 +iprec_at_recall_0.90 302 0.0000 +iprec_at_recall_1.00 302 0.0000 +P_5 302 0.8000 +P_10 302 0.7000 +P_15 302 0.8000 +P_20 302 0.8000 +P_30 302 0.7333 +P_100 302 0.4200 +P_200 302 0.2200 +P_500 302 0.1000 +P_1000 302 0.0500 +relstring_20 302 '33033303303333333330' +recall_5 302 0.0519 +recall_10 302 0.0909 +recall_15 302 0.1558 +recall_20 302 0.2078 +recall_30 302 0.2857 +recall_100 302 0.5455 +recall_200 302 0.5714 +recall_500 302 0.6494 +recall_1000 302 0.6494 +infAP 302 0.4175 +Rprec_mult_0.20 302 0.8125 +Rprec_mult_0.40 302 0.7419 +Rprec_mult_0.60 302 0.6596 +Rprec_mult_0.80 302 0.6129 +Rprec_mult_1.00 302 0.5065 +Rprec_mult_1.20 302 0.4516 +Rprec_mult_1.40 302 0.3889 +Rprec_mult_1.60 302 0.3468 +Rprec_mult_1.80 302 0.3094 +Rprec_mult_2.00 302 0.2857 +utility 302 -400.0000 +11pt_avg 302 0.4360 +binG 302 0.2160 +G 302 0.1623 +ndcg 302 0.6617 +ndcg_rel 302 0.7130 +Rndcg 302 0.6196 +ndcg_cut_5 302 0.8304 +ndcg_cut_10 302 0.7530 +ndcg_cut_15 302 0.8085 +ndcg_cut_20 302 0.8082 +ndcg_cut_30 302 0.7604 +ndcg_cut_100 302 0.6046 +ndcg_cut_200 302 0.6209 +ndcg_cut_500 302 0.6617 +ndcg_cut_1000 302 0.6617 +map_cut_5 302 0.0461 +map_cut_10 302 0.0768 +map_cut_15 302 0.1265 +map_cut_20 302 0.1695 +map_cut_30 302 0.2298 +map_cut_100 302 0.3983 +map_cut_200 302 0.4068 +map_cut_500 302 0.4175 +map_cut_1000 302 0.4175 +relative_P_5 302 0.8000 +relative_P_10 302 0.7000 +relative_P_15 302 0.8000 +relative_P_20 302 0.8000 +relative_P_30 302 0.7333 +relative_P_100 302 0.5455 +relative_P_200 302 0.5714 +relative_P_500 302 0.6494 +relative_P_1000 302 0.6494 +success_1 302 1.0000 +success_5 302 1.0000 +success_10 302 1.0000 +set_P 302 0.1000 +set_relative_P 302 0.6494 +set_recall 302 0.6494 +set_map 302 0.0649 +set_F 302 0.1733 +num_nonrel_judged_ret 302 214 +num_ret 303 500 +num_rel 303 8 +num_rel_ret 303 8 +map 303 0.0823 +Rprec 303 0.0000 +bpref 303 0.0000 +recip_rank 303 0.0526 +iprec_at_recall_0.00 303 0.1136 +iprec_at_recall_0.10 303 0.1136 +iprec_at_recall_0.20 303 0.1136 +iprec_at_recall_0.30 303 0.1136 +iprec_at_recall_0.40 303 0.1136 +iprec_at_recall_0.50 303 0.1136 +iprec_at_recall_0.60 303 0.1136 +iprec_at_recall_0.70 303 0.1045 +iprec_at_recall_0.80 303 0.1045 +iprec_at_recall_0.90 303 0.0748 +iprec_at_recall_1.00 303 0.0748 +P_5 303 0.0000 +P_10 303 0.0000 +P_15 303 0.0000 +P_20 303 0.0500 +P_30 303 0.0333 +P_100 303 0.0700 +P_200 303 0.0400 +P_500 303 0.0160 +P_1000 303 0.0080 +relstring_20 303 '0000.....00..0.0.02.' +recall_5 303 0.0000 +recall_10 303 0.0000 +recall_15 303 0.0000 +recall_20 303 0.1250 +recall_30 303 0.1250 +recall_100 303 0.8750 +recall_200 303 1.0000 +recall_500 303 1.0000 +recall_1000 303 1.0000 +infAP 303 0.1200 +Rprec_mult_0.20 303 0.0000 +Rprec_mult_0.40 303 0.0000 +Rprec_mult_0.60 303 0.0000 +Rprec_mult_0.80 303 0.0000 +Rprec_mult_1.00 303 0.0000 +Rprec_mult_1.20 303 0.0000 +Rprec_mult_1.40 303 0.0000 +Rprec_mult_1.60 303 0.0000 +Rprec_mult_1.80 303 0.0000 +Rprec_mult_2.00 303 0.0000 +utility 303 -484.0000 +11pt_avg 303 0.1049 +binG 303 0.1839 +G 303 0.1783 +ndcg 303 0.3669 +ndcg_rel 303 0.2186 +Rndcg 303 0.1834 +ndcg_cut_5 303 0.0000 +ndcg_cut_10 303 0.0000 +ndcg_cut_15 303 0.0000 +ndcg_cut_20 303 0.0585 +ndcg_cut_30 303 0.0585 +ndcg_cut_100 303 0.3294 +ndcg_cut_200 303 0.3669 +ndcg_cut_500 303 0.3669 +ndcg_cut_1000 303 0.3669 +map_cut_5 303 0.0000 +map_cut_10 303 0.0000 +map_cut_15 303 0.0000 +map_cut_20 303 0.0066 +map_cut_30 303 0.0066 +map_cut_100 303 0.0729 +map_cut_200 303 0.0823 +map_cut_500 303 0.0823 +map_cut_1000 303 0.0823 +relative_P_5 303 0.0000 +relative_P_10 303 0.0000 +relative_P_15 303 0.0000 +relative_P_20 303 0.1250 +relative_P_30 303 0.1250 +relative_P_100 303 0.8750 +relative_P_200 303 1.0000 +relative_P_500 303 1.0000 +relative_P_1000 303 1.0000 +success_1 303 0.0000 +success_5 303 0.0000 +success_10 303 0.0000 +set_P 303 0.0160 +set_relative_P 303 1.0000 +set_recall 303 1.0000 +set_map 303 0.0160 +set_F 303 0.0315 +num_nonrel_judged_ret 303 138 +runid all STANDARD +num_q all 3 +num_ret all 1500 +num_rel all 97 +num_rel_ret all 59 +map all 0.1667 +gm_map all 0.0210 +Rprec all 0.1688 +bpref all 0.1571 +recip_rank all 0.3520 +iprec_at_recall_0.00 all 0.3723 +iprec_at_recall_0.10 all 0.3186 +iprec_at_recall_0.20 all 0.3186 +iprec_at_recall_0.30 all 0.2852 +iprec_at_recall_0.40 all 0.2666 +iprec_at_recall_0.50 all 0.2184 +iprec_at_recall_0.60 all 0.0852 +iprec_at_recall_0.70 all 0.0348 +iprec_at_recall_0.80 all 0.0348 +iprec_at_recall_0.90 all 0.0249 +iprec_at_recall_1.00 all 0.0249 +P_5 all 0.2667 +P_10 all 0.2333 +P_15 all 0.2667 +P_20 all 0.2833 +P_30 all 0.2556 +P_100 all 0.1633 +P_200 all 0.0867 +P_500 all 0.0393 +P_1000 all 0.0197 +recall_5 all 0.0173 +recall_10 all 0.0303 +recall_15 all 0.0519 +recall_20 all 0.1109 +recall_30 all 0.1369 +recall_100 all 0.4735 +recall_200 all 0.5238 +recall_500 all 0.5776 +recall_1000 all 0.5776 +infAP all 0.1792 +gm_bpref all 0.0004 +Rprec_mult_0.20 all 0.2708 +Rprec_mult_0.40 all 0.2473 +Rprec_mult_0.60 all 0.2199 +Rprec_mult_0.80 all 0.2043 +Rprec_mult_1.00 all 0.1688 +Rprec_mult_1.20 all 0.1505 +Rprec_mult_1.40 all 0.1296 +Rprec_mult_1.60 all 0.1156 +Rprec_mult_1.80 all 0.1031 +Rprec_mult_2.00 all 0.0952 +utility all -460.6667 +11pt_avg all 0.1804 +binG all 0.1367 +G all 0.1206 +ndcg all 0.3894 +ndcg_rel all 0.3570 +Rndcg all 0.2964 +ndcg_cut_5 all 0.2768 +ndcg_cut_10 all 0.2656 +ndcg_cut_15 all 0.2826 +ndcg_cut_20 all 0.3138 +ndcg_cut_30 all 0.3019 +ndcg_cut_100 all 0.3577 +ndcg_cut_200 all 0.3807 +ndcg_cut_500 all 0.3894 +ndcg_cut_1000 all 0.3894 +map_cut_5 all 0.0154 +map_cut_10 all 0.0256 +map_cut_15 all 0.0422 +map_cut_20 all 0.0587 +map_cut_30 all 0.0788 +map_cut_100 all 0.1571 +map_cut_200 all 0.1630 +map_cut_500 all 0.1667 +map_cut_1000 all 0.1667 +relative_P_5 all 0.2667 +relative_P_10 all 0.2333 +relative_P_15 all 0.2667 +relative_P_20 all 0.3083 +relative_P_30 all 0.2861 +relative_P_100 all 0.4735 +relative_P_200 all 0.5238 +relative_P_500 all 0.5776 +relative_P_1000 all 0.5776 +success_1 all 0.3333 +success_5 all 0.3333 +success_10 all 0.3333 +set_P all 0.0393 +set_relative_P all 0.5776 +set_recall all 0.5776 +set_map all 0.0270 +set_F all 0.0696 +num_nonrel_judged_ret all 610 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.meas_params b/tools/eval/trec_eval.9.0.4/test/out.test.meas_params new file mode 100644 index 0000000000000000000000000000000000000000..07560b6551e16f03329cafb7b67068521a58203d --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.meas_params @@ -0,0 +1,88 @@ +iprec_at_recall_0.10 301 0.2096 +iprec_at_recall_0.20 301 0.0000 +iprec_at_recall_0.25 301 0.0000 +iprec_at_recall_0.50 301 0.0000 +iprec_at_recall_0.75 301 0.0000 +P_3 301 0.0000 +P_5 301 0.0000 +P_7 301 0.2857 +recall_20 301 0.0105 +recall_2000 301 0.1498 +Rprec_mult_0.20 301 0.2211 +Rprec_mult_0.35 301 0.2169 +Rprec_mult_5.00 301 0.0300 +utility_2,-1,0,0 301 -287.0000 +11pt_avg_.25,.5,.75 301 0.0000 +ndcg_1=3,2=9,4=4.5 301 0.1584 +ndcg_cut_10 301 0.1518 +ndcg_cut_20 301 0.1985 +ndcg_cut_23 301 0.1814 +success_2 301 0.0000 +success_5 301 0.0000 +success_20 301 1.0000 +iprec_at_recall_0.10 302 0.8421 +iprec_at_recall_0.20 302 0.8421 +iprec_at_recall_0.25 302 0.7500 +iprec_at_recall_0.50 302 0.5417 +iprec_at_recall_0.75 302 0.0000 +P_3 302 0.6667 +P_5 302 0.8000 +P_7 302 0.7143 +recall_20 302 0.2078 +recall_2000 302 0.6494 +Rprec_mult_0.20 302 0.8125 +Rprec_mult_0.35 302 0.7407 +Rprec_mult_5.00 302 0.1247 +utility_2,-1,0,0 302 -350.0000 +11pt_avg_.25,.5,.75 302 0.4306 +ndcg_1=3,2=9,4=4.5 302 0.6617 +ndcg_cut_10 302 0.7530 +ndcg_cut_20 302 0.8082 +ndcg_cut_23 302 0.7964 +success_2 302 1.0000 +success_5 302 1.0000 +success_20 302 1.0000 +iprec_at_recall_0.10 303 0.1136 +iprec_at_recall_0.20 303 0.1136 +iprec_at_recall_0.25 303 0.1136 +iprec_at_recall_0.50 303 0.1136 +iprec_at_recall_0.75 303 0.0935 +P_3 303 0.0000 +P_5 303 0.0000 +P_7 303 0.0000 +recall_20 303 0.1000 +recall_2000 303 1.0000 +Rprec_mult_0.20 303 0.0000 +Rprec_mult_0.35 303 0.0000 +Rprec_mult_5.00 303 0.1000 +utility_2,-1,0,0 303 -470.0000 +11pt_avg_.25,.5,.75 303 0.1069 +ndcg_1=3,2=9,4=4.5 303 0.3862 +ndcg_cut_10 303 0.0000 +ndcg_cut_20 303 0.0509 +ndcg_cut_23 303 0.0509 +success_2 303 0.0000 +success_5 303 0.0000 +success_20 303 1.0000 +iprec_at_recall_0.10 all 0.3884 +iprec_at_recall_0.20 all 0.3186 +iprec_at_recall_0.25 all 0.2879 +iprec_at_recall_0.50 all 0.2184 +iprec_at_recall_0.75 all 0.0312 +P_3 all 0.2222 +P_5 all 0.2667 +P_7 all 0.3333 +recall_20 all 0.1061 +recall_2000 all 0.5997 +Rprec_mult_0.20 all 0.3445 +Rprec_mult_0.35 all 0.3192 +Rprec_mult_5.00 all 0.0849 +utility_2,-1,0,0 all -369.0000 +11pt_avg_.25,.5,.75 all 0.1792 +ndcg_1=3,2=9,4=4.5 all 0.4021 +ndcg_cut_10 all 0.3016 +ndcg_cut_20 all 0.3525 +ndcg_cut_23 all 0.3429 +success_2 all 0.3333 +success_5 all 0.3333 +success_20 all 1.0000 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.prefs b/tools/eval/trec_eval.9.0.4/test/out.test.prefs new file mode 100644 index 0000000000000000000000000000000000000000..13d709332f02a78a3056131143ebe687cc290f8d --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.prefs @@ -0,0 +1,352 @@ +prefs_num_prefs_poss 1.EC.AB 1 +prefs_num_prefs_ful 1.EC.AB 1 +prefs_num_prefs_ful_ret 1.EC.AB 1 +prefs_simp 1.EC.AB 1.0000 +prefs_pair 1.EC.AB 1.0000 +prefs_avgjg 1.EC.AB 1.0000 +prefs_avgjg_Rnonrel 1.EC.AB 1.0000 +prefs_simp_ret 1.EC.AB 1.0000 +prefs_pair_ret 1.EC.AB 1.0000 +prefs_avgjg_ret 1.EC.AB 1.0000 +prefs_avgjg_Rnonrel_ret 1.EC.AB 1.0000 +prefs_simp_imp 1.EC.AB 1.0000 +prefs_pair_imp 1.EC.AB 1.0000 +prefs_avgjg_imp 1.EC.AB 1.0000 +prefs_num_prefs_poss 11.PA=1 1 +prefs_num_prefs_ful 11.PA=1 1 +prefs_num_prefs_ful_ret 11.PA=1 1 +prefs_simp 11.PA=1 1.0000 +prefs_pair 11.PA=1 1.0000 +prefs_avgjg 11.PA=1 1.0000 +prefs_avgjg_Rnonrel 11.PA=1 1.0000 +prefs_simp_ret 11.PA=1 1.0000 +prefs_pair_ret 11.PA=1 1.0000 +prefs_avgjg_ret 11.PA=1 1.0000 +prefs_avgjg_Rnonrel_ret 11.PA=1 1.0000 +prefs_simp_imp 11.PA=1 1.0000 +prefs_pair_imp 11.PA=1 1.0000 +prefs_avgjg_imp 11.PA=1 1.0000 +prefs_num_prefs_poss 12.PA=2 1 +prefs_num_prefs_ful 12.PA=2 1 +prefs_num_prefs_ful_ret 12.PA=2 0 +prefs_simp 12.PA=2 1.0000 +prefs_pair 12.PA=2 1.0000 +prefs_avgjg 12.PA=2 1.0000 +prefs_avgjg_Rnonrel 12.PA=2 1.0000 +prefs_simp_ret 12.PA=2 0.0000 +prefs_pair_ret 12.PA=2 0.0000 +prefs_avgjg_ret 12.PA=2 0.0000 +prefs_avgjg_Rnonrel_ret 12.PA=2 1.0000 +prefs_simp_imp 12.PA=2 1.0000 +prefs_pair_imp 12.PA=2 1.0000 +prefs_avgjg_imp 12.PA=2 1.0000 +prefs_num_prefs_poss 13.PA=3 1 +prefs_num_prefs_ful 13.PA=3 0 +prefs_num_prefs_ful_ret 13.PA=3 0 +prefs_simp 13.PA=3 0.0000 +prefs_pair 13.PA=3 0.0000 +prefs_avgjg 13.PA=3 0.0000 +prefs_avgjg_Rnonrel 13.PA=3 0.0000 +prefs_simp_ret 13.PA=3 0.0000 +prefs_pair_ret 13.PA=3 0.0000 +prefs_avgjg_ret 13.PA=3 0.0000 +prefs_avgjg_Rnonrel_ret 13.PA=3 0.0000 +prefs_simp_imp 13.PA=3 0.0000 +prefs_pair_imp 13.PA=3 0.0000 +prefs_avgjg_imp 13.PA=3 0.0000 +prefs_num_prefs_poss 14.PA=4 1 +prefs_num_prefs_ful 14.PA=4 0 +prefs_num_prefs_ful_ret 14.PA=4 0 +prefs_simp 14.PA=4 0.0000 +prefs_pair 14.PA=4 0.0000 +prefs_avgjg 14.PA=4 0.0000 +prefs_avgjg_Rnonrel 14.PA=4 0.0000 +prefs_simp_ret 14.PA=4 0.0000 +prefs_pair_ret 14.PA=4 0.0000 +prefs_avgjg_ret 14.PA=4 0.0000 +prefs_avgjg_Rnonrel_ret 14.PA=4 0.0000 +prefs_simp_imp 14.PA=4 0.0000 +prefs_pair_imp 14.PA=4 0.0000 +prefs_avgjg_imp 14.PA=4 0.0000 +prefs_num_prefs_poss 15.PA=5 0 +prefs_num_prefs_ful 15.PA=5 0 +prefs_num_prefs_ful_ret 15.PA=5 0 +prefs_simp 15.PA=5 0.0000 +prefs_pair 15.PA=5 0.0000 +prefs_avgjg 15.PA=5 0.0000 +prefs_avgjg_Rnonrel 15.PA=5 1.0000 +prefs_simp_ret 15.PA=5 0.0000 +prefs_pair_ret 15.PA=5 0.0000 +prefs_avgjg_ret 15.PA=5 0.0000 +prefs_avgjg_Rnonrel_ret 15.PA=5 1.0000 +prefs_simp_imp 15.PA=5 0.0000 +prefs_pair_imp 15.PA=5 0.0000 +prefs_avgjg_imp 15.PA=5 0.0000 +prefs_num_prefs_poss 16.PA=6 0 +prefs_num_prefs_ful 16.PA=6 0 +prefs_num_prefs_ful_ret 16.PA=6 0 +prefs_simp 16.PA=6 0.0000 +prefs_pair 16.PA=6 0.0000 +prefs_avgjg 16.PA=6 0.0000 +prefs_avgjg_Rnonrel 16.PA=6 0.0000 +prefs_simp_ret 16.PA=6 0.0000 +prefs_pair_ret 16.PA=6 0.0000 +prefs_avgjg_ret 16.PA=6 0.0000 +prefs_avgjg_Rnonrel_ret 16.PA=6 0.0000 +prefs_simp_imp 16.PA=6 0.0000 +prefs_pair_imp 16.PA=6 0.0000 +prefs_avgjg_imp 16.PA=6 0.0000 +prefs_num_prefs_poss 17.PA=7 0 +prefs_num_prefs_ful 17.PA=7 0 +prefs_num_prefs_ful_ret 17.PA=7 0 +prefs_simp 17.PA=7 0.0000 +prefs_pair 17.PA=7 0.0000 +prefs_avgjg 17.PA=7 0.0000 +prefs_avgjg_Rnonrel 17.PA=7 1.0000 +prefs_simp_ret 17.PA=7 0.0000 +prefs_pair_ret 17.PA=7 0.0000 +prefs_avgjg_ret 17.PA=7 0.0000 +prefs_avgjg_Rnonrel_ret 17.PA=7 1.0000 +prefs_simp_imp 17.PA=7 0.0000 +prefs_pair_imp 17.PA=7 0.0000 +prefs_avgjg_imp 17.PA=7 0.0000 +prefs_num_prefs_poss 2.EC.A 1 +prefs_num_prefs_ful 2.EC.A 1 +prefs_num_prefs_ful_ret 2.EC.A 0 +prefs_simp 2.EC.A 1.0000 +prefs_pair 2.EC.A 1.0000 +prefs_avgjg 2.EC.A 1.0000 +prefs_avgjg_Rnonrel 2.EC.A 1.0000 +prefs_simp_ret 2.EC.A 0.0000 +prefs_pair_ret 2.EC.A 0.0000 +prefs_avgjg_ret 2.EC.A 0.0000 +prefs_avgjg_Rnonrel_ret 2.EC.A 1.0000 +prefs_simp_imp 2.EC.A 1.0000 +prefs_pair_imp 2.EC.A 1.0000 +prefs_avgjg_imp 2.EC.A 1.0000 +prefs_num_prefs_poss 21.EC.cb 30 +prefs_num_prefs_ful 21.EC.cb 12 +prefs_num_prefs_ful_ret 21.EC.cb 4 +prefs_simp 21.EC.cb 0.4000 +prefs_pair 21.EC.cb 0.4000 +prefs_avgjg 21.EC.cb 0.4000 +prefs_avgjg_Rnonrel 21.EC.cb 0.4444 +prefs_simp_ret 21.EC.cb 0.3333 +prefs_pair_ret 21.EC.cb 0.3333 +prefs_avgjg_ret 21.EC.cb 0.3333 +prefs_avgjg_Rnonrel_ret 21.EC.cb 0.4444 +prefs_simp_imp 21.EC.cb 0.4615 +prefs_pair_imp 21.EC.cb 0.4615 +prefs_avgjg_imp 21.EC.cb 0.4615 +prefs_num_prefs_poss 22.EC.c3l 41 +prefs_num_prefs_ful 22.EC.c3l 19 +prefs_num_prefs_ful_ret 22.EC.c3l 9 +prefs_simp 22.EC.c3l 0.4634 +prefs_pair 22.EC.c3l 0.4634 +prefs_avgjg 22.EC.c3l 0.4634 +prefs_avgjg_Rnonrel 22.EC.c3l 0.4894 +prefs_simp_ret 22.EC.c3l 0.5294 +prefs_pair_ret 22.EC.c3l 0.5294 +prefs_avgjg_ret 22.EC.c3l 0.5294 +prefs_avgjg_Rnonrel_ret 22.EC.c3l 0.5652 +prefs_simp_imp 22.EC.c3l 0.5278 +prefs_pair_imp 22.EC.c3l 0.5278 +prefs_avgjg_imp 22.EC.c3l 0.5278 +prefs_num_prefs_poss 23.EC.cml 52 +prefs_num_prefs_ful 23.EC.cml 31 +prefs_num_prefs_ful_ret 23.EC.cml 17 +prefs_simp 23.EC.cml 0.5962 +prefs_pair 23.EC.cml 0.5962 +prefs_avgjg 23.EC.cml 0.5962 +prefs_avgjg_Rnonrel 23.EC.cml 0.6243 +prefs_simp_ret 23.EC.cml 0.8095 +prefs_pair_ret 23.EC.cml 0.8095 +prefs_avgjg_ret 23.EC.cml 0.8095 +prefs_avgjg_Rnonrel_ret 23.EC.cml 0.6735 +prefs_simp_imp 23.EC.cml 0.6739 +prefs_pair_imp 23.EC.cml 0.6739 +prefs_avgjg_imp 23.EC.cml 0.6739 +prefs_num_prefs_poss 24.EC.mg 16 +prefs_num_prefs_ful 24.EC.mg 9 +prefs_num_prefs_ful_ret 24.EC.mg 4 +prefs_simp 24.EC.mg 0.5625 +prefs_pair 24.EC.mg 0.5833 +prefs_avgjg 24.EC.mg 0.5333 +prefs_avgjg_Rnonrel 24.EC.mg 0.5616 +prefs_simp_ret 24.EC.mg 0.5714 +prefs_pair_ret 24.EC.mg 0.6111 +prefs_avgjg_ret 24.EC.mg 0.5000 +prefs_avgjg_Rnonrel_ret 24.EC.mg 0.4810 +prefs_simp_imp 24.EC.mg 0.5625 +prefs_pair_imp 24.EC.mg 0.5833 +prefs_avgjg_imp 24.EC.mg 0.5333 +prefs_num_prefs_poss 3.EC.B 1 +prefs_num_prefs_ful 3.EC.B 0 +prefs_num_prefs_ful_ret 3.EC.B 0 +prefs_simp 3.EC.B 0.0000 +prefs_pair 3.EC.B 0.0000 +prefs_avgjg 3.EC.B 0.0000 +prefs_avgjg_Rnonrel 3.EC.B 0.0000 +prefs_simp_ret 3.EC.B 0.0000 +prefs_pair_ret 3.EC.B 0.0000 +prefs_avgjg_ret 3.EC.B 0.0000 +prefs_avgjg_Rnonrel_ret 3.EC.B 0.0000 +prefs_simp_imp 3.EC.B 0.0000 +prefs_pair_imp 3.EC.B 0.0000 +prefs_avgjg_imp 3.EC.B 0.0000 +prefs_num_prefs_poss 31.PA.cb 30 +prefs_num_prefs_ful 31.PA.cb 12 +prefs_num_prefs_ful_ret 31.PA.cb 4 +prefs_simp 31.PA.cb 0.4000 +prefs_pair 31.PA.cb 0.4000 +prefs_avgjg 31.PA.cb 0.4000 +prefs_avgjg_Rnonrel 31.PA.cb 0.4444 +prefs_simp_ret 31.PA.cb 0.3333 +prefs_pair_ret 31.PA.cb 0.3333 +prefs_avgjg_ret 31.PA.cb 0.3333 +prefs_avgjg_Rnonrel_ret 31.PA.cb 0.4444 +prefs_simp_imp 31.PA.cb 0.4615 +prefs_pair_imp 31.PA.cb 0.4615 +prefs_avgjg_imp 31.PA.cb 0.4615 +prefs_num_prefs_poss 32.PA.c3l 41 +prefs_num_prefs_ful 32.PA.c3l 19 +prefs_num_prefs_ful_ret 32.PA.c3l 9 +prefs_simp 32.PA.c3l 0.4634 +prefs_pair 32.PA.c3l 0.4634 +prefs_avgjg 32.PA.c3l 0.4634 +prefs_avgjg_Rnonrel 32.PA.c3l 0.4894 +prefs_simp_ret 32.PA.c3l 0.5294 +prefs_pair_ret 32.PA.c3l 0.5294 +prefs_avgjg_ret 32.PA.c3l 0.5294 +prefs_avgjg_Rnonrel_ret 32.PA.c3l 0.5652 +prefs_simp_imp 32.PA.c3l 0.5278 +prefs_pair_imp 32.PA.c3l 0.5278 +prefs_avgjg_imp 32.PA.c3l 0.5278 +prefs_num_prefs_poss 33.PA.cml 52 +prefs_num_prefs_ful 33.PA.cml 31 +prefs_num_prefs_ful_ret 33.PA.cml 17 +prefs_simp 33.PA.cml 0.5962 +prefs_pair 33.PA.cml 0.5962 +prefs_avgjg 33.PA.cml 0.5962 +prefs_avgjg_Rnonrel 33.PA.cml 0.6243 +prefs_simp_ret 33.PA.cml 0.8095 +prefs_pair_ret 33.PA.cml 0.8095 +prefs_avgjg_ret 33.PA.cml 0.8095 +prefs_avgjg_Rnonrel_ret 33.PA.cml 0.6735 +prefs_simp_imp 33.PA.cml 0.6739 +prefs_pair_imp 33.PA.cml 0.6739 +prefs_avgjg_imp 33.PA.cml 0.6739 +prefs_num_prefs_poss 34.PA.mg 16 +prefs_num_prefs_ful 34.PA.mg 9 +prefs_num_prefs_ful_ret 34.PA.mg 4 +prefs_simp 34.PA.mg 0.5625 +prefs_pair 34.PA.mg 0.5833 +prefs_avgjg 34.PA.mg 0.5333 +prefs_avgjg_Rnonrel 34.PA.mg 0.5616 +prefs_simp_ret 34.PA.mg 0.5714 +prefs_pair_ret 34.PA.mg 0.6111 +prefs_avgjg_ret 34.PA.mg 0.5000 +prefs_avgjg_Rnonrel_ret 34.PA.mg 0.6476 +prefs_simp_imp 34.PA.mg 0.5625 +prefs_pair_imp 34.PA.mg 0.5833 +prefs_avgjg_imp 34.PA.mg 0.5333 +prefs_num_prefs_poss 35.PA.mgmx 16 +prefs_num_prefs_ful 35.PA.mgmx 9 +prefs_num_prefs_ful_ret 35.PA.mgmx 4 +prefs_simp 35.PA.mgmx 0.5625 +prefs_pair 35.PA.mgmx 0.5833 +prefs_avgjg 35.PA.mgmx 0.5333 +prefs_avgjg_Rnonrel 35.PA.mgmx 0.5616 +prefs_simp_ret 35.PA.mgmx 0.5714 +prefs_pair_ret 35.PA.mgmx 0.6111 +prefs_avgjg_ret 35.PA.mgmx 0.5000 +prefs_avgjg_Rnonrel_ret 35.PA.mgmx 0.6476 +prefs_simp_imp 35.PA.mgmx 0.5625 +prefs_pair_imp 35.PA.mgmx 0.5833 +prefs_avgjg_imp 35.PA.mgmx 0.5333 +prefs_num_prefs_poss 4.EC.noRet 1 +prefs_num_prefs_ful 4.EC.noRet 0 +prefs_num_prefs_ful_ret 4.EC.noRet 0 +prefs_simp 4.EC.noRet 0.0000 +prefs_pair 4.EC.noRet 0.0000 +prefs_avgjg 4.EC.noRet 0.0000 +prefs_avgjg_Rnonrel 4.EC.noRet 0.0000 +prefs_simp_ret 4.EC.noRet 0.0000 +prefs_pair_ret 4.EC.noRet 0.0000 +prefs_avgjg_ret 4.EC.noRet 0.0000 +prefs_avgjg_Rnonrel_ret 4.EC.noRet 0.0000 +prefs_simp_imp 4.EC.noRet 0.0000 +prefs_pair_imp 4.EC.noRet 0.0000 +prefs_avgjg_imp 4.EC.noRet 0.0000 +prefs_num_prefs_poss 40.PA.tran 24 +prefs_num_prefs_ful 40.PA.tran 17 +prefs_num_prefs_ful_ret 40.PA.tran 8 +prefs_simp 40.PA.tran 0.7083 +prefs_pair 40.PA.tran 0.7083 +prefs_avgjg 40.PA.tran 0.7083 +prefs_avgjg_Rnonrel 40.PA.tran 0.7121 +prefs_simp_ret 40.PA.tran 0.8889 +prefs_pair_ret 40.PA.tran 0.8889 +prefs_avgjg_ret 40.PA.tran 0.8889 +prefs_avgjg_Rnonrel_ret 40.PA.tran 0.7500 +prefs_simp_imp 40.PA.tran 0.7727 +prefs_pair_imp 40.PA.tran 0.7727 +prefs_avgjg_imp 40.PA.tran 0.7727 +prefs_num_prefs_poss 5.EC.noPrf 0 +prefs_num_prefs_ful 5.EC.noPrf 0 +prefs_num_prefs_ful_ret 5.EC.noPrf 0 +prefs_simp 5.EC.noPrf 0.0000 +prefs_pair 5.EC.noPrf 0.0000 +prefs_avgjg 5.EC.noPrf 0.0000 +prefs_avgjg_Rnonrel 5.EC.noPrf 1.0000 +prefs_simp_ret 5.EC.noPrf 0.0000 +prefs_pair_ret 5.EC.noPrf 0.0000 +prefs_avgjg_ret 5.EC.noPrf 0.0000 +prefs_avgjg_Rnonrel_ret 5.EC.noPrf 1.0000 +prefs_simp_imp 5.EC.noPrf 0.0000 +prefs_pair_imp 5.EC.noPrf 0.0000 +prefs_avgjg_imp 5.EC.noPrf 0.0000 +prefs_num_prefs_poss 6.EC.noRel 0 +prefs_num_prefs_ful 6.EC.noRel 0 +prefs_num_prefs_ful_ret 6.EC.noRel 0 +prefs_simp 6.EC.noRel 0.0000 +prefs_pair 6.EC.noRel 0.0000 +prefs_avgjg 6.EC.noRel 0.0000 +prefs_avgjg_Rnonrel 6.EC.noRel 0.0000 +prefs_simp_ret 6.EC.noRel 0.0000 +prefs_pair_ret 6.EC.noRel 0.0000 +prefs_avgjg_ret 6.EC.noRel 0.0000 +prefs_avgjg_Rnonrel_ret 6.EC.noRel 0.0000 +prefs_simp_imp 6.EC.noRel 0.0000 +prefs_pair_imp 6.EC.noRel 0.0000 +prefs_avgjg_imp 6.EC.noRel 0.0000 +prefs_num_prefs_poss 7.EC.no 0 +prefs_num_prefs_ful 7.EC.no 0 +prefs_num_prefs_ful_ret 7.EC.no 0 +prefs_simp 7.EC.no 0.0000 +prefs_pair 7.EC.no 0.0000 +prefs_avgjg 7.EC.no 0.0000 +prefs_avgjg_Rnonrel 7.EC.no 1.0000 +prefs_simp_ret 7.EC.no 0.0000 +prefs_pair_ret 7.EC.no 0.0000 +prefs_avgjg_ret 7.EC.no 0.0000 +prefs_avgjg_Rnonrel_ret 7.EC.no 1.0000 +prefs_simp_imp 7.EC.no 0.0000 +prefs_pair_imp 7.EC.no 0.0000 +prefs_avgjg_imp 7.EC.no 0.0000 +runid all STANDARD +num_q all 24 +prefs_num_prefs_poss all 326 +prefs_num_prefs_ful all 172 +prefs_num_prefs_ful_ret all 82 +prefs_simp all 0.3881 +prefs_pair all 0.3907 +prefs_avgjg all 0.3845 +prefs_avgjg_Rnonrel all 0.5630 +prefs_simp_ret all 0.3312 +prefs_pair_ret all 0.3361 +prefs_avgjg_ret all 0.3222 +prefs_avgjg_Rnonrel_ret all 0.5789 +prefs_simp_imp all 0.4078 +prefs_pair_imp all 0.4104 +prefs_avgjg_imp all 0.4041 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.qrels_jg b/tools/eval/trec_eval.9.0.4/test/out.test.qrels_jg new file mode 100644 index 0000000000000000000000000000000000000000..4dc4e4be8475444c8329d7d074ff04b052649347 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.qrels_jg @@ -0,0 +1,82 @@ +map_avgjg 301 0.0266 +P_avgjg_5 301 0.0667 +P_avgjg_10 301 0.1667 +P_avgjg_15 301 0.1111 +P_avgjg_20 301 0.2167 +P_avgjg_30 301 0.1889 +P_avgjg_100 301 0.1867 +P_avgjg_200 301 0.1750 +P_avgjg_500 301 0.1200 +P_avgjg_1000 301 0.0600 +Rprec_mult_avgjg_0.20 301 0.1832 +Rprec_mult_avgjg_0.40 301 0.1692 +Rprec_mult_avgjg_0.60 301 0.1614 +Rprec_mult_avgjg_0.80 301 0.1483 +Rprec_mult_avgjg_1.00 301 0.1308 +Rprec_mult_avgjg_1.20 301 0.1162 +Rprec_mult_avgjg_1.40 301 0.1022 +Rprec_mult_avgjg_1.60 301 0.0909 +Rprec_mult_avgjg_1.80 301 0.0815 +Rprec_mult_avgjg_2.00 301 0.0734 +map_avgjg 302 0.2571 +P_avgjg_5 302 0.6667 +P_avgjg_10 302 0.5667 +P_avgjg_15 302 0.6000 +P_avgjg_20 302 0.5833 +P_avgjg_30 302 0.5111 +P_avgjg_100 302 0.3200 +P_avgjg_200 302 0.1783 +P_avgjg_500 302 0.0873 +P_avgjg_1000 302 0.0437 +Rprec_mult_avgjg_0.20 302 0.6301 +Rprec_mult_avgjg_0.40 302 0.5013 +Rprec_mult_avgjg_0.60 302 0.5046 +Rprec_mult_avgjg_0.80 302 0.4459 +Rprec_mult_avgjg_1.00 302 0.3835 +Rprec_mult_avgjg_1.20 302 0.3361 +Rprec_mult_avgjg_1.40 302 0.2915 +Rprec_mult_avgjg_1.60 302 0.2573 +Rprec_mult_avgjg_1.80 302 0.2313 +Rprec_mult_avgjg_2.00 302 0.2148 +map_avgjg 303 0.0552 +P_avgjg_5 303 0.0000 +P_avgjg_10 303 0.0000 +P_avgjg_15 303 0.0000 +P_avgjg_20 303 0.0167 +P_avgjg_30 303 0.0111 +P_avgjg_100 303 0.0633 +P_avgjg_200 303 0.0367 +P_avgjg_500 303 0.0160 +P_avgjg_1000 303 0.0080 +Rprec_mult_avgjg_0.20 303 0.0000 +Rprec_mult_avgjg_0.40 303 0.0000 +Rprec_mult_avgjg_0.60 303 0.0000 +Rprec_mult_avgjg_0.80 303 0.0000 +Rprec_mult_avgjg_1.00 303 0.0000 +Rprec_mult_avgjg_1.20 303 0.0000 +Rprec_mult_avgjg_1.40 303 0.0000 +Rprec_mult_avgjg_1.60 303 0.0000 +Rprec_mult_avgjg_1.80 303 0.0000 +Rprec_mult_avgjg_2.00 303 0.0000 +runid all STANDARD +num_q all 3 +map_avgjg all 0.1130 +P_avgjg_5 all 0.2444 +P_avgjg_10 all 0.2444 +P_avgjg_15 all 0.2370 +P_avgjg_20 all 0.2722 +P_avgjg_30 all 0.2370 +P_avgjg_100 all 0.1900 +P_avgjg_200 all 0.1300 +P_avgjg_500 all 0.0744 +P_avgjg_1000 all 0.0372 +Rprec_mult_avgjg_0.20 all 0.2711 +Rprec_mult_avgjg_0.40 all 0.2235 +Rprec_mult_avgjg_0.60 all 0.2220 +Rprec_mult_avgjg_0.80 all 0.1981 +Rprec_mult_avgjg_1.00 all 0.1714 +Rprec_mult_avgjg_1.20 all 0.1508 +Rprec_mult_avgjg_1.40 all 0.1312 +Rprec_mult_avgjg_1.60 all 0.1161 +Rprec_mult_avgjg_1.80 all 0.1042 +Rprec_mult_avgjg_2.00 all 0.0961 diff --git a/tools/eval/trec_eval.9.0.4/test/out.test.qrels_prefs b/tools/eval/trec_eval.9.0.4/test/out.test.qrels_prefs new file mode 100644 index 0000000000000000000000000000000000000000..efa7392b56ec23554b665b1aacf5fe1158aa4220 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/out.test.qrels_prefs @@ -0,0 +1,58 @@ +prefs_num_prefs_poss 301 584916 +prefs_num_prefs_ful 301 81605 +prefs_num_prefs_ful_ret 301 7339 +prefs_simp 301 0.1395 +prefs_pair 301 0.1395 +prefs_avgjg 301 0.1395 +prefs_avgjg_Rnonrel 301 0.1223 +prefs_simp_ret 301 0.5498 +prefs_pair_ret 301 0.5498 +prefs_avgjg_ret 301 0.5498 +prefs_avgjg_Rnonrel_ret 301 0.1922 +prefs_simp_imp 301 0.4995 +prefs_pair_imp 301 0.4995 +prefs_avgjg_imp 301 0.4995 +prefs_num_prefs_poss 302 75768 +prefs_num_prefs_ful 302 47531 +prefs_num_prefs_ful_ret 302 9031 +prefs_simp 302 0.6273 +prefs_pair 302 0.6273 +prefs_avgjg 302 0.6273 +prefs_avgjg_Rnonrel 302 0.0700 +prefs_simp_ret 302 0.8440 +prefs_pair_ret 302 0.8440 +prefs_avgjg_ret 302 0.8440 +prefs_avgjg_Rnonrel_ret 302 0.2180 +prefs_simp_imp 302 0.8645 +prefs_pair_imp 302 0.8645 +prefs_avgjg_imp 302 0.8645 +prefs_num_prefs_poss 303 9020 +prefs_num_prefs_ful 303 8464 +prefs_num_prefs_ful_ret 303 1494 +prefs_simp 303 0.9384 +prefs_pair 303 0.9384 +prefs_avgjg 303 0.9384 +prefs_avgjg_Rnonrel 303 0.0049 +prefs_simp_ret 303 0.7288 +prefs_pair_ret 303 0.7288 +prefs_avgjg_ret 303 0.7288 +prefs_avgjg_Rnonrel_ret 303 0.0209 +prefs_simp_imp 303 0.9384 +prefs_pair_imp 303 0.9384 +prefs_avgjg_imp 303 0.9384 +runid all STANDARD +num_q all 3 +prefs_num_prefs_poss all 669704 +prefs_num_prefs_ful all 137600 +prefs_num_prefs_ful_ret all 17864 +prefs_simp all 0.5684 +prefs_pair all 0.5684 +prefs_avgjg all 0.5684 +prefs_avgjg_Rnonrel all 0.0657 +prefs_simp_ret all 0.7075 +prefs_pair_ret all 0.7075 +prefs_avgjg_ret all 0.7075 +prefs_avgjg_Rnonrel_ret all 0.1437 +prefs_simp_imp all 0.7675 +prefs_pair_imp all 0.7675 +prefs_avgjg_imp all 0.7675 diff --git a/tools/eval/trec_eval.9.0.4/test/prefs.rank20 b/tools/eval/trec_eval.9.0.4/test/prefs.rank20 new file mode 100644 index 0000000000000000000000000000000000000000..62ceb9390f75e59ead7d81a9b2b98c72b88e6ced --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/prefs.rank20 @@ -0,0 +1,20 @@ + Q0 FR940620-1-00007 9 2.971818 STANDARD + Q0 FR940303-1-00022 11 2.918622 STANDARD + Q0 FBIS4-25028 41 2.394200 STANDARD + Q0 FBIS3-18129 52 2.342345 STANDARD + Q0 FBIS4-45333 59 2.277421 STANDARD + Q0 FBIS4-41839 86 2.170714 STANDARD + Q0 FBIS3-25940 87 2.164362 STANDARD + Q0 FBIS4-55845 89 2.162241 STANDARD + Q0 FBIS4-40452 93 2.153299 STANDARD + Q0 FBIS4-2356 101 2.136141 STANDARD + Q0 FBIS4-42757 116 2.114265 STANDARD + Q0 FBIS3-24362 117 2.114117 STANDARD + Q0 FBIS4-1863 154 2.053106 STANDARD + Q0 FBIS4-43965 158 2.044602 STANDARD + Q0 FBIS3-51766 160 2.041041 STANDARD + Q0 FBIS3-35272 162 2.038591 STANDARD + Q0 FBIS3-17175 171 2.017663 STANDARD + Q0 FBIS3-24277 230 1.918759 STANDARD + Q0 FBIS4-14080 252 1.890979 STANDARD + Q0 FBIS4-39881 257 1.887065 STANDARD diff --git a/tools/eval/trec_eval.9.0.4/test/prefs.results.test b/tools/eval/trec_eval.9.0.4/test/prefs.results.test new file mode 100644 index 0000000000000000000000000000000000000000..f081f47c20eed555db41892aec083366cbeba281 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/prefs.results.test @@ -0,0 +1,480 @@ +1.EC.AB Q0 FR940620-1-00007 9 2.971818 STANDARD +1.EC.AB Q0 FR940303-1-00022 11 2.918622 STANDARD +1.EC.AB Q0 FBIS4-25028 41 2.394200 STANDARD +1.EC.AB Q0 FBIS3-18129 52 2.342345 STANDARD +1.EC.AB Q0 FBIS4-45333 59 2.277421 STANDARD +1.EC.AB Q0 FBIS4-41839 86 2.170714 STANDARD +1.EC.AB Q0 FBIS3-25940 87 2.164362 STANDARD +1.EC.AB Q0 FBIS4-55845 89 2.162241 STANDARD +1.EC.AB Q0 FBIS4-40452 93 2.153299 STANDARD +1.EC.AB Q0 FBIS4-2356 101 2.136141 STANDARD +1.EC.AB Q0 FBIS4-42757 116 2.114265 STANDARD +1.EC.AB Q0 FBIS3-24362 117 2.114117 STANDARD +1.EC.AB Q0 FBIS4-1863 154 2.053106 STANDARD +1.EC.AB Q0 FBIS4-43965 158 2.044602 STANDARD +1.EC.AB Q0 FBIS3-51766 160 2.041041 STANDARD +1.EC.AB Q0 FBIS3-35272 162 2.038591 STANDARD +1.EC.AB Q0 FBIS3-17175 171 2.017663 STANDARD +1.EC.AB Q0 FBIS3-24277 230 1.918759 STANDARD +1.EC.AB Q0 FBIS4-14080 252 1.890979 STANDARD +1.EC.AB Q0 FBIS4-39881 257 1.887065 STANDARD +2.EC.A Q0 FR940620-1-00007 9 2.971818 STANDARD +2.EC.A Q0 FR940303-1-00022 11 2.918622 STANDARD +2.EC.A Q0 FBIS4-25028 41 2.394200 STANDARD +2.EC.A Q0 FBIS3-18129 52 2.342345 STANDARD +2.EC.A Q0 FBIS4-45333 59 2.277421 STANDARD +2.EC.A Q0 FBIS4-41839 86 2.170714 STANDARD +2.EC.A Q0 FBIS3-25940 87 2.164362 STANDARD +2.EC.A Q0 FBIS4-55845 89 2.162241 STANDARD +2.EC.A Q0 FBIS4-40452 93 2.153299 STANDARD +2.EC.A Q0 FBIS4-2356 101 2.136141 STANDARD +2.EC.A Q0 FBIS4-42757 116 2.114265 STANDARD +2.EC.A Q0 FBIS3-24362 117 2.114117 STANDARD +2.EC.A Q0 FBIS4-1863 154 2.053106 STANDARD +2.EC.A Q0 FBIS4-43965 158 2.044602 STANDARD +2.EC.A Q0 FBIS3-51766 160 2.041041 STANDARD +2.EC.A Q0 FBIS3-35272 162 2.038591 STANDARD +2.EC.A Q0 FBIS3-17175 171 2.017663 STANDARD +2.EC.A Q0 FBIS3-24277 230 1.918759 STANDARD +2.EC.A Q0 FBIS4-14080 252 1.890979 STANDARD +2.EC.A Q0 FBIS4-39881 257 1.887065 STANDARD +3.EC.B Q0 FR940620-1-00007 9 2.971818 STANDARD +3.EC.B Q0 FR940303-1-00022 11 2.918622 STANDARD +3.EC.B Q0 FBIS4-25028 41 2.394200 STANDARD +3.EC.B Q0 FBIS3-18129 52 2.342345 STANDARD +3.EC.B Q0 FBIS4-45333 59 2.277421 STANDARD +3.EC.B Q0 FBIS4-41839 86 2.170714 STANDARD +3.EC.B Q0 FBIS3-25940 87 2.164362 STANDARD +3.EC.B Q0 FBIS4-55845 89 2.162241 STANDARD +3.EC.B Q0 FBIS4-40452 93 2.153299 STANDARD +3.EC.B Q0 FBIS4-2356 101 2.136141 STANDARD +3.EC.B Q0 FBIS4-42757 116 2.114265 STANDARD +3.EC.B Q0 FBIS3-24362 117 2.114117 STANDARD +3.EC.B Q0 FBIS4-1863 154 2.053106 STANDARD +3.EC.B Q0 FBIS4-43965 158 2.044602 STANDARD +3.EC.B Q0 FBIS3-51766 160 2.041041 STANDARD +3.EC.B Q0 FBIS3-35272 162 2.038591 STANDARD +3.EC.B Q0 FBIS3-17175 171 2.017663 STANDARD +3.EC.B Q0 FBIS3-24277 230 1.918759 STANDARD +3.EC.B Q0 FBIS4-14080 252 1.890979 STANDARD +3.EC.B Q0 FBIS4-39881 257 1.887065 STANDARD +4.EC.noRet Q0 FR940620-1-00007 9 2.971818 STANDARD +4.EC.noRet Q0 FR940303-1-00022 11 2.918622 STANDARD +4.EC.noRet Q0 FBIS4-25028 41 2.394200 STANDARD +4.EC.noRet Q0 FBIS3-18129 52 2.342345 STANDARD +4.EC.noRet Q0 FBIS4-45333 59 2.277421 STANDARD +4.EC.noRet Q0 FBIS4-41839 86 2.170714 STANDARD +4.EC.noRet Q0 FBIS3-25940 87 2.164362 STANDARD +4.EC.noRet Q0 FBIS4-55845 89 2.162241 STANDARD +4.EC.noRet Q0 FBIS4-40452 93 2.153299 STANDARD +4.EC.noRet Q0 FBIS4-2356 101 2.136141 STANDARD +4.EC.noRet Q0 FBIS4-42757 116 2.114265 STANDARD +4.EC.noRet Q0 FBIS3-24362 117 2.114117 STANDARD +4.EC.noRet Q0 FBIS4-1863 154 2.053106 STANDARD +4.EC.noRet Q0 FBIS4-43965 158 2.044602 STANDARD +4.EC.noRet Q0 FBIS3-51766 160 2.041041 STANDARD +4.EC.noRet Q0 FBIS3-35272 162 2.038591 STANDARD +4.EC.noRet Q0 FBIS3-17175 171 2.017663 STANDARD +4.EC.noRet Q0 FBIS3-24277 230 1.918759 STANDARD +4.EC.noRet Q0 FBIS4-14080 252 1.890979 STANDARD +4.EC.noRet Q0 FBIS4-39881 257 1.887065 STANDARD +5.EC.noPrf Q0 FR940620-1-00007 9 2.971818 STANDARD +5.EC.noPrf Q0 FR940303-1-00022 11 2.918622 STANDARD +5.EC.noPrf Q0 FBIS4-25028 41 2.394200 STANDARD +5.EC.noPrf Q0 FBIS3-18129 52 2.342345 STANDARD +5.EC.noPrf Q0 FBIS4-45333 59 2.277421 STANDARD +5.EC.noPrf Q0 FBIS4-41839 86 2.170714 STANDARD +5.EC.noPrf Q0 FBIS3-25940 87 2.164362 STANDARD +5.EC.noPrf Q0 FBIS4-55845 89 2.162241 STANDARD +5.EC.noPrf Q0 FBIS4-40452 93 2.153299 STANDARD +5.EC.noPrf Q0 FBIS4-2356 101 2.136141 STANDARD +5.EC.noPrf Q0 FBIS4-42757 116 2.114265 STANDARD +5.EC.noPrf Q0 FBIS3-24362 117 2.114117 STANDARD +5.EC.noPrf Q0 FBIS4-1863 154 2.053106 STANDARD +5.EC.noPrf Q0 FBIS4-43965 158 2.044602 STANDARD +5.EC.noPrf Q0 FBIS3-51766 160 2.041041 STANDARD +5.EC.noPrf Q0 FBIS3-35272 162 2.038591 STANDARD +5.EC.noPrf Q0 FBIS3-17175 171 2.017663 STANDARD +5.EC.noPrf Q0 FBIS3-24277 230 1.918759 STANDARD +5.EC.noPrf Q0 FBIS4-14080 252 1.890979 STANDARD +5.EC.noPrf Q0 FBIS4-39881 257 1.887065 STANDARD +6.EC.noRel Q0 FR940620-1-00007 9 2.971818 STANDARD +6.EC.noRel Q0 FR940303-1-00022 11 2.918622 STANDARD +6.EC.noRel Q0 FBIS4-25028 41 2.394200 STANDARD +6.EC.noRel Q0 FBIS3-18129 52 2.342345 STANDARD +6.EC.noRel Q0 FBIS4-45333 59 2.277421 STANDARD +6.EC.noRel Q0 FBIS4-41839 86 2.170714 STANDARD +6.EC.noRel Q0 FBIS3-25940 87 2.164362 STANDARD +6.EC.noRel Q0 FBIS4-55845 89 2.162241 STANDARD +6.EC.noRel Q0 FBIS4-40452 93 2.153299 STANDARD +6.EC.noRel Q0 FBIS4-2356 101 2.136141 STANDARD +6.EC.noRel Q0 FBIS4-42757 116 2.114265 STANDARD +6.EC.noRel Q0 FBIS3-24362 117 2.114117 STANDARD +6.EC.noRel Q0 FBIS4-1863 154 2.053106 STANDARD +6.EC.noRel Q0 FBIS4-43965 158 2.044602 STANDARD +6.EC.noRel Q0 FBIS3-51766 160 2.041041 STANDARD +6.EC.noRel Q0 FBIS3-35272 162 2.038591 STANDARD +6.EC.noRel Q0 FBIS3-17175 171 2.017663 STANDARD +6.EC.noRel Q0 FBIS3-24277 230 1.918759 STANDARD +6.EC.noRel Q0 FBIS4-14080 252 1.890979 STANDARD +6.EC.noRel Q0 FBIS4-39881 257 1.887065 STANDARD +7.EC.no Q0 FR940620-1-00007 9 2.971818 STANDARD +7.EC.no Q0 FR940303-1-00022 11 2.918622 STANDARD +7.EC.no Q0 FBIS4-25028 41 2.394200 STANDARD +7.EC.no Q0 FBIS3-18129 52 2.342345 STANDARD +7.EC.no Q0 FBIS4-45333 59 2.277421 STANDARD +7.EC.no Q0 FBIS4-41839 86 2.170714 STANDARD +7.EC.no Q0 FBIS3-25940 87 2.164362 STANDARD +7.EC.no Q0 FBIS4-55845 89 2.162241 STANDARD +7.EC.no Q0 FBIS4-40452 93 2.153299 STANDARD +7.EC.no Q0 FBIS4-2356 101 2.136141 STANDARD +7.EC.no Q0 FBIS4-42757 116 2.114265 STANDARD +7.EC.no Q0 FBIS3-24362 117 2.114117 STANDARD +7.EC.no Q0 FBIS4-1863 154 2.053106 STANDARD +7.EC.no Q0 FBIS4-43965 158 2.044602 STANDARD +7.EC.no Q0 FBIS3-51766 160 2.041041 STANDARD +7.EC.no Q0 FBIS3-35272 162 2.038591 STANDARD +7.EC.no Q0 FBIS3-17175 171 2.017663 STANDARD +7.EC.no Q0 FBIS3-24277 230 1.918759 STANDARD +7.EC.no Q0 FBIS4-14080 252 1.890979 STANDARD +7.EC.no Q0 FBIS4-39881 257 1.887065 STANDARD +11.PA=1 Q0 FR940620-1-00007 9 2.971818 STANDARD +11.PA=1 Q0 FR940303-1-00022 11 2.918622 STANDARD +11.PA=1 Q0 FBIS4-25028 41 2.394200 STANDARD +11.PA=1 Q0 FBIS3-18129 52 2.342345 STANDARD +11.PA=1 Q0 FBIS4-45333 59 2.277421 STANDARD +11.PA=1 Q0 FBIS4-41839 86 2.170714 STANDARD +11.PA=1 Q0 FBIS3-25940 87 2.164362 STANDARD +11.PA=1 Q0 FBIS4-55845 89 2.162241 STANDARD +11.PA=1 Q0 FBIS4-40452 93 2.153299 STANDARD +11.PA=1 Q0 FBIS4-2356 101 2.136141 STANDARD +11.PA=1 Q0 FBIS4-42757 116 2.114265 STANDARD +11.PA=1 Q0 FBIS3-24362 117 2.114117 STANDARD +11.PA=1 Q0 FBIS4-1863 154 2.053106 STANDARD +11.PA=1 Q0 FBIS4-43965 158 2.044602 STANDARD +11.PA=1 Q0 FBIS3-51766 160 2.041041 STANDARD +11.PA=1 Q0 FBIS3-35272 162 2.038591 STANDARD +11.PA=1 Q0 FBIS3-17175 171 2.017663 STANDARD +11.PA=1 Q0 FBIS3-24277 230 1.918759 STANDARD +11.PA=1 Q0 FBIS4-14080 252 1.890979 STANDARD +11.PA=1 Q0 FBIS4-39881 257 1.887065 STANDARD +12.PA=2 Q0 FR940620-1-00007 9 2.971818 STANDARD +12.PA=2 Q0 FR940303-1-00022 11 2.918622 STANDARD +12.PA=2 Q0 FBIS4-25028 41 2.394200 STANDARD +12.PA=2 Q0 FBIS3-18129 52 2.342345 STANDARD +12.PA=2 Q0 FBIS4-45333 59 2.277421 STANDARD +12.PA=2 Q0 FBIS4-41839 86 2.170714 STANDARD +12.PA=2 Q0 FBIS3-25940 87 2.164362 STANDARD +12.PA=2 Q0 FBIS4-55845 89 2.162241 STANDARD +12.PA=2 Q0 FBIS4-40452 93 2.153299 STANDARD +12.PA=2 Q0 FBIS4-2356 101 2.136141 STANDARD +12.PA=2 Q0 FBIS4-42757 116 2.114265 STANDARD +12.PA=2 Q0 FBIS3-24362 117 2.114117 STANDARD +12.PA=2 Q0 FBIS4-1863 154 2.053106 STANDARD +12.PA=2 Q0 FBIS4-43965 158 2.044602 STANDARD +12.PA=2 Q0 FBIS3-51766 160 2.041041 STANDARD +12.PA=2 Q0 FBIS3-35272 162 2.038591 STANDARD +12.PA=2 Q0 FBIS3-17175 171 2.017663 STANDARD +12.PA=2 Q0 FBIS3-24277 230 1.918759 STANDARD +12.PA=2 Q0 FBIS4-14080 252 1.890979 STANDARD +12.PA=2 Q0 FBIS4-39881 257 1.887065 STANDARD +13.PA=3 Q0 FR940620-1-00007 9 2.971818 STANDARD +13.PA=3 Q0 FR940303-1-00022 11 2.918622 STANDARD +13.PA=3 Q0 FBIS4-25028 41 2.394200 STANDARD +13.PA=3 Q0 FBIS3-18129 52 2.342345 STANDARD +13.PA=3 Q0 FBIS4-45333 59 2.277421 STANDARD +13.PA=3 Q0 FBIS4-41839 86 2.170714 STANDARD +13.PA=3 Q0 FBIS3-25940 87 2.164362 STANDARD +13.PA=3 Q0 FBIS4-55845 89 2.162241 STANDARD +13.PA=3 Q0 FBIS4-40452 93 2.153299 STANDARD +13.PA=3 Q0 FBIS4-2356 101 2.136141 STANDARD +13.PA=3 Q0 FBIS4-42757 116 2.114265 STANDARD +13.PA=3 Q0 FBIS3-24362 117 2.114117 STANDARD +13.PA=3 Q0 FBIS4-1863 154 2.053106 STANDARD +13.PA=3 Q0 FBIS4-43965 158 2.044602 STANDARD +13.PA=3 Q0 FBIS3-51766 160 2.041041 STANDARD +13.PA=3 Q0 FBIS3-35272 162 2.038591 STANDARD +13.PA=3 Q0 FBIS3-17175 171 2.017663 STANDARD +13.PA=3 Q0 FBIS3-24277 230 1.918759 STANDARD +13.PA=3 Q0 FBIS4-14080 252 1.890979 STANDARD +13.PA=3 Q0 FBIS4-39881 257 1.887065 STANDARD +14.PA=4 Q0 FR940620-1-00007 9 2.971818 STANDARD +14.PA=4 Q0 FR940303-1-00022 11 2.918622 STANDARD +14.PA=4 Q0 FBIS4-25028 41 2.394200 STANDARD +14.PA=4 Q0 FBIS3-18129 52 2.342345 STANDARD +14.PA=4 Q0 FBIS4-45333 59 2.277421 STANDARD +14.PA=4 Q0 FBIS4-41839 86 2.170714 STANDARD +14.PA=4 Q0 FBIS3-25940 87 2.164362 STANDARD +14.PA=4 Q0 FBIS4-55845 89 2.162241 STANDARD +14.PA=4 Q0 FBIS4-40452 93 2.153299 STANDARD +14.PA=4 Q0 FBIS4-2356 101 2.136141 STANDARD +14.PA=4 Q0 FBIS4-42757 116 2.114265 STANDARD +14.PA=4 Q0 FBIS3-24362 117 2.114117 STANDARD +14.PA=4 Q0 FBIS4-1863 154 2.053106 STANDARD +14.PA=4 Q0 FBIS4-43965 158 2.044602 STANDARD +14.PA=4 Q0 FBIS3-51766 160 2.041041 STANDARD +14.PA=4 Q0 FBIS3-35272 162 2.038591 STANDARD +14.PA=4 Q0 FBIS3-17175 171 2.017663 STANDARD +14.PA=4 Q0 FBIS3-24277 230 1.918759 STANDARD +14.PA=4 Q0 FBIS4-14080 252 1.890979 STANDARD +14.PA=4 Q0 FBIS4-39881 257 1.887065 STANDARD +15.PA=5 Q0 FR940620-1-00007 9 2.971818 STANDARD +15.PA=5 Q0 FR940303-1-00022 11 2.918622 STANDARD +15.PA=5 Q0 FBIS4-25028 41 2.394200 STANDARD +15.PA=5 Q0 FBIS3-18129 52 2.342345 STANDARD +15.PA=5 Q0 FBIS4-45333 59 2.277421 STANDARD +15.PA=5 Q0 FBIS4-41839 86 2.170714 STANDARD +15.PA=5 Q0 FBIS3-25940 87 2.164362 STANDARD +15.PA=5 Q0 FBIS4-55845 89 2.162241 STANDARD +15.PA=5 Q0 FBIS4-40452 93 2.153299 STANDARD +15.PA=5 Q0 FBIS4-2356 101 2.136141 STANDARD +15.PA=5 Q0 FBIS4-42757 116 2.114265 STANDARD +15.PA=5 Q0 FBIS3-24362 117 2.114117 STANDARD +15.PA=5 Q0 FBIS4-1863 154 2.053106 STANDARD +15.PA=5 Q0 FBIS4-43965 158 2.044602 STANDARD +15.PA=5 Q0 FBIS3-51766 160 2.041041 STANDARD +15.PA=5 Q0 FBIS3-35272 162 2.038591 STANDARD +15.PA=5 Q0 FBIS3-17175 171 2.017663 STANDARD +15.PA=5 Q0 FBIS3-24277 230 1.918759 STANDARD +15.PA=5 Q0 FBIS4-14080 252 1.890979 STANDARD +15.PA=5 Q0 FBIS4-39881 257 1.887065 STANDARD +16.PA=6 Q0 FR940620-1-00007 9 2.971818 STANDARD +16.PA=6 Q0 FR940303-1-00022 11 2.918622 STANDARD +16.PA=6 Q0 FBIS4-25028 41 2.394200 STANDARD +16.PA=6 Q0 FBIS3-18129 52 2.342345 STANDARD +16.PA=6 Q0 FBIS4-45333 59 2.277421 STANDARD +16.PA=6 Q0 FBIS4-41839 86 2.170714 STANDARD +16.PA=6 Q0 FBIS3-25940 87 2.164362 STANDARD +16.PA=6 Q0 FBIS4-55845 89 2.162241 STANDARD +16.PA=6 Q0 FBIS4-40452 93 2.153299 STANDARD +16.PA=6 Q0 FBIS4-2356 101 2.136141 STANDARD +16.PA=6 Q0 FBIS4-42757 116 2.114265 STANDARD +16.PA=6 Q0 FBIS3-24362 117 2.114117 STANDARD +16.PA=6 Q0 FBIS4-1863 154 2.053106 STANDARD +16.PA=6 Q0 FBIS4-43965 158 2.044602 STANDARD +16.PA=6 Q0 FBIS3-51766 160 2.041041 STANDARD +16.PA=6 Q0 FBIS3-35272 162 2.038591 STANDARD +16.PA=6 Q0 FBIS3-17175 171 2.017663 STANDARD +16.PA=6 Q0 FBIS3-24277 230 1.918759 STANDARD +16.PA=6 Q0 FBIS4-14080 252 1.890979 STANDARD +16.PA=6 Q0 FBIS4-39881 257 1.887065 STANDARD +17.PA=7 Q0 FR940620-1-00007 9 2.971818 STANDARD +17.PA=7 Q0 FR940303-1-00022 11 2.918622 STANDARD +17.PA=7 Q0 FBIS4-25028 41 2.394200 STANDARD +17.PA=7 Q0 FBIS3-18129 52 2.342345 STANDARD +17.PA=7 Q0 FBIS4-45333 59 2.277421 STANDARD +17.PA=7 Q0 FBIS4-41839 86 2.170714 STANDARD +17.PA=7 Q0 FBIS3-25940 87 2.164362 STANDARD +17.PA=7 Q0 FBIS4-55845 89 2.162241 STANDARD +17.PA=7 Q0 FBIS4-40452 93 2.153299 STANDARD +17.PA=7 Q0 FBIS4-2356 101 2.136141 STANDARD +17.PA=7 Q0 FBIS4-42757 116 2.114265 STANDARD +17.PA=7 Q0 FBIS3-24362 117 2.114117 STANDARD +17.PA=7 Q0 FBIS4-1863 154 2.053106 STANDARD +17.PA=7 Q0 FBIS4-43965 158 2.044602 STANDARD +17.PA=7 Q0 FBIS3-51766 160 2.041041 STANDARD +17.PA=7 Q0 FBIS3-35272 162 2.038591 STANDARD +17.PA=7 Q0 FBIS3-17175 171 2.017663 STANDARD +17.PA=7 Q0 FBIS3-24277 230 1.918759 STANDARD +17.PA=7 Q0 FBIS4-14080 252 1.890979 STANDARD +17.PA=7 Q0 FBIS4-39881 257 1.887065 STANDARD +21.EC.cb Q0 FR940620-1-00007 9 2.971818 STANDARD +21.EC.cb Q0 FR940303-1-00022 11 2.918622 STANDARD +21.EC.cb Q0 FBIS4-25028 41 2.394200 STANDARD +21.EC.cb Q0 FBIS3-18129 52 2.342345 STANDARD +21.EC.cb Q0 FBIS4-45333 59 2.277421 STANDARD +21.EC.cb Q0 FBIS4-41839 86 2.170714 STANDARD +21.EC.cb Q0 FBIS3-25940 87 2.164362 STANDARD +21.EC.cb Q0 FBIS4-55845 89 2.162241 STANDARD +21.EC.cb Q0 FBIS4-40452 93 2.153299 STANDARD +21.EC.cb Q0 FBIS4-2356 101 2.136141 STANDARD +21.EC.cb Q0 FBIS4-42757 116 2.114265 STANDARD +21.EC.cb Q0 FBIS3-24362 117 2.114117 STANDARD +21.EC.cb Q0 FBIS4-1863 154 2.053106 STANDARD +21.EC.cb Q0 FBIS4-43965 158 2.044602 STANDARD +21.EC.cb Q0 FBIS3-51766 160 2.041041 STANDARD +21.EC.cb Q0 FBIS3-35272 162 2.038591 STANDARD +21.EC.cb Q0 FBIS3-17175 171 2.017663 STANDARD +21.EC.cb Q0 FBIS3-24277 230 1.918759 STANDARD +21.EC.cb Q0 FBIS4-14080 252 1.890979 STANDARD +21.EC.cb Q0 FBIS4-39881 257 1.887065 STANDARD +22.EC.c3l Q0 FR940620-1-00007 9 2.971818 STANDARD +22.EC.c3l Q0 FR940303-1-00022 11 2.918622 STANDARD +22.EC.c3l Q0 FBIS4-25028 41 2.394200 STANDARD +22.EC.c3l Q0 FBIS3-18129 52 2.342345 STANDARD +22.EC.c3l Q0 FBIS4-45333 59 2.277421 STANDARD +22.EC.c3l Q0 FBIS4-41839 86 2.170714 STANDARD +22.EC.c3l Q0 FBIS3-25940 87 2.164362 STANDARD +22.EC.c3l Q0 FBIS4-55845 89 2.162241 STANDARD +22.EC.c3l Q0 FBIS4-40452 93 2.153299 STANDARD +22.EC.c3l Q0 FBIS4-2356 101 2.136141 STANDARD +22.EC.c3l Q0 FBIS4-42757 116 2.114265 STANDARD +22.EC.c3l Q0 FBIS3-24362 117 2.114117 STANDARD +22.EC.c3l Q0 FBIS4-1863 154 2.053106 STANDARD +22.EC.c3l Q0 FBIS4-43965 158 2.044602 STANDARD +22.EC.c3l Q0 FBIS3-51766 160 2.041041 STANDARD +22.EC.c3l Q0 FBIS3-35272 162 2.038591 STANDARD +22.EC.c3l Q0 FBIS3-17175 171 2.017663 STANDARD +22.EC.c3l Q0 FBIS3-24277 230 1.918759 STANDARD +22.EC.c3l Q0 FBIS4-14080 252 1.890979 STANDARD +22.EC.c3l Q0 FBIS4-39881 257 1.887065 STANDARD +23.EC.cml Q0 FR940620-1-00007 9 2.971818 STANDARD +23.EC.cml Q0 FR940303-1-00022 11 2.918622 STANDARD +23.EC.cml Q0 FBIS4-25028 41 2.394200 STANDARD +23.EC.cml Q0 FBIS3-18129 52 2.342345 STANDARD +23.EC.cml Q0 FBIS4-45333 59 2.277421 STANDARD +23.EC.cml Q0 FBIS4-41839 86 2.170714 STANDARD +23.EC.cml Q0 FBIS3-25940 87 2.164362 STANDARD +23.EC.cml Q0 FBIS4-55845 89 2.162241 STANDARD +23.EC.cml Q0 FBIS4-40452 93 2.153299 STANDARD +23.EC.cml Q0 FBIS4-2356 101 2.136141 STANDARD +23.EC.cml Q0 FBIS4-42757 116 2.114265 STANDARD +23.EC.cml Q0 FBIS3-24362 117 2.114117 STANDARD +23.EC.cml Q0 FBIS4-1863 154 2.053106 STANDARD +23.EC.cml Q0 FBIS4-43965 158 2.044602 STANDARD +23.EC.cml Q0 FBIS3-51766 160 2.041041 STANDARD +23.EC.cml Q0 FBIS3-35272 162 2.038591 STANDARD +23.EC.cml Q0 FBIS3-17175 171 2.017663 STANDARD +23.EC.cml Q0 FBIS3-24277 230 1.918759 STANDARD +23.EC.cml Q0 FBIS4-14080 252 1.890979 STANDARD +23.EC.cml Q0 FBIS4-39881 257 1.887065 STANDARD +24.EC.mg Q0 FR940620-1-00007 9 2.971818 STANDARD +24.EC.mg Q0 FR940303-1-00022 11 2.918622 STANDARD +24.EC.mg Q0 FBIS4-25028 41 2.394200 STANDARD +24.EC.mg Q0 FBIS3-18129 52 2.342345 STANDARD +24.EC.mg Q0 FBIS4-45333 59 2.277421 STANDARD +24.EC.mg Q0 FBIS4-41839 86 2.170714 STANDARD +24.EC.mg Q0 FBIS3-25940 87 2.164362 STANDARD +24.EC.mg Q0 FBIS4-55845 89 2.162241 STANDARD +24.EC.mg Q0 FBIS4-40452 93 2.153299 STANDARD +24.EC.mg Q0 FBIS4-2356 101 2.136141 STANDARD +24.EC.mg Q0 FBIS4-42757 116 2.114265 STANDARD +24.EC.mg Q0 FBIS3-24362 117 2.114117 STANDARD +24.EC.mg Q0 FBIS4-1863 154 2.053106 STANDARD +24.EC.mg Q0 FBIS4-43965 158 2.044602 STANDARD +24.EC.mg Q0 FBIS3-51766 160 2.041041 STANDARD +24.EC.mg Q0 FBIS3-35272 162 2.038591 STANDARD +24.EC.mg Q0 FBIS3-17175 171 2.017663 STANDARD +24.EC.mg Q0 FBIS3-24277 230 1.918759 STANDARD +24.EC.mg Q0 FBIS4-14080 252 1.890979 STANDARD +24.EC.mg Q0 FBIS4-39881 257 1.887065 STANDARD +31.PA.cb Q0 FR940620-1-00007 9 2.971818 STANDARD +31.PA.cb Q0 FR940303-1-00022 11 2.918622 STANDARD +31.PA.cb Q0 FBIS4-25028 41 2.394200 STANDARD +31.PA.cb Q0 FBIS3-18129 52 2.342345 STANDARD +31.PA.cb Q0 FBIS4-45333 59 2.277421 STANDARD +31.PA.cb Q0 FBIS4-41839 86 2.170714 STANDARD +31.PA.cb Q0 FBIS3-25940 87 2.164362 STANDARD +31.PA.cb Q0 FBIS4-55845 89 2.162241 STANDARD +31.PA.cb Q0 FBIS4-40452 93 2.153299 STANDARD +31.PA.cb Q0 FBIS4-2356 101 2.136141 STANDARD +31.PA.cb Q0 FBIS4-42757 116 2.114265 STANDARD +31.PA.cb Q0 FBIS3-24362 117 2.114117 STANDARD +31.PA.cb Q0 FBIS4-1863 154 2.053106 STANDARD +31.PA.cb Q0 FBIS4-43965 158 2.044602 STANDARD +31.PA.cb Q0 FBIS3-51766 160 2.041041 STANDARD +31.PA.cb Q0 FBIS3-35272 162 2.038591 STANDARD +31.PA.cb Q0 FBIS3-17175 171 2.017663 STANDARD +31.PA.cb Q0 FBIS3-24277 230 1.918759 STANDARD +31.PA.cb Q0 FBIS4-14080 252 1.890979 STANDARD +31.PA.cb Q0 FBIS4-39881 257 1.887065 STANDARD +32.PA.c3l Q0 FR940620-1-00007 9 2.971818 STANDARD +32.PA.c3l Q0 FR940303-1-00022 11 2.918622 STANDARD +32.PA.c3l Q0 FBIS4-25028 41 2.394200 STANDARD +32.PA.c3l Q0 FBIS3-18129 52 2.342345 STANDARD +32.PA.c3l Q0 FBIS4-45333 59 2.277421 STANDARD +32.PA.c3l Q0 FBIS4-41839 86 2.170714 STANDARD +32.PA.c3l Q0 FBIS3-25940 87 2.164362 STANDARD +32.PA.c3l Q0 FBIS4-55845 89 2.162241 STANDARD +32.PA.c3l Q0 FBIS4-40452 93 2.153299 STANDARD +32.PA.c3l Q0 FBIS4-2356 101 2.136141 STANDARD +32.PA.c3l Q0 FBIS4-42757 116 2.114265 STANDARD +32.PA.c3l Q0 FBIS3-24362 117 2.114117 STANDARD +32.PA.c3l Q0 FBIS4-1863 154 2.053106 STANDARD +32.PA.c3l Q0 FBIS4-43965 158 2.044602 STANDARD +32.PA.c3l Q0 FBIS3-51766 160 2.041041 STANDARD +32.PA.c3l Q0 FBIS3-35272 162 2.038591 STANDARD +32.PA.c3l Q0 FBIS3-17175 171 2.017663 STANDARD +32.PA.c3l Q0 FBIS3-24277 230 1.918759 STANDARD +32.PA.c3l Q0 FBIS4-14080 252 1.890979 STANDARD +32.PA.c3l Q0 FBIS4-39881 257 1.887065 STANDARD +33.PA.cml Q0 FR940620-1-00007 9 2.971818 STANDARD +33.PA.cml Q0 FR940303-1-00022 11 2.918622 STANDARD +33.PA.cml Q0 FBIS4-25028 41 2.394200 STANDARD +33.PA.cml Q0 FBIS3-18129 52 2.342345 STANDARD +33.PA.cml Q0 FBIS4-45333 59 2.277421 STANDARD +33.PA.cml Q0 FBIS4-41839 86 2.170714 STANDARD +33.PA.cml Q0 FBIS3-25940 87 2.164362 STANDARD +33.PA.cml Q0 FBIS4-55845 89 2.162241 STANDARD +33.PA.cml Q0 FBIS4-40452 93 2.153299 STANDARD +33.PA.cml Q0 FBIS4-2356 101 2.136141 STANDARD +33.PA.cml Q0 FBIS4-42757 116 2.114265 STANDARD +33.PA.cml Q0 FBIS3-24362 117 2.114117 STANDARD +33.PA.cml Q0 FBIS4-1863 154 2.053106 STANDARD +33.PA.cml Q0 FBIS4-43965 158 2.044602 STANDARD +33.PA.cml Q0 FBIS3-51766 160 2.041041 STANDARD +33.PA.cml Q0 FBIS3-35272 162 2.038591 STANDARD +33.PA.cml Q0 FBIS3-17175 171 2.017663 STANDARD +33.PA.cml Q0 FBIS3-24277 230 1.918759 STANDARD +33.PA.cml Q0 FBIS4-14080 252 1.890979 STANDARD +33.PA.cml Q0 FBIS4-39881 257 1.887065 STANDARD +34.PA.mg Q0 FR940620-1-00007 9 2.971818 STANDARD +34.PA.mg Q0 FR940303-1-00022 11 2.918622 STANDARD +34.PA.mg Q0 FBIS4-25028 41 2.394200 STANDARD +34.PA.mg Q0 FBIS3-18129 52 2.342345 STANDARD +34.PA.mg Q0 FBIS4-45333 59 2.277421 STANDARD +34.PA.mg Q0 FBIS4-41839 86 2.170714 STANDARD +34.PA.mg Q0 FBIS3-25940 87 2.164362 STANDARD +34.PA.mg Q0 FBIS4-55845 89 2.162241 STANDARD +34.PA.mg Q0 FBIS4-40452 93 2.153299 STANDARD +34.PA.mg Q0 FBIS4-2356 101 2.136141 STANDARD +34.PA.mg Q0 FBIS4-42757 116 2.114265 STANDARD +34.PA.mg Q0 FBIS3-24362 117 2.114117 STANDARD +34.PA.mg Q0 FBIS4-1863 154 2.053106 STANDARD +34.PA.mg Q0 FBIS4-43965 158 2.044602 STANDARD +34.PA.mg Q0 FBIS3-51766 160 2.041041 STANDARD +34.PA.mg Q0 FBIS3-35272 162 2.038591 STANDARD +34.PA.mg Q0 FBIS3-17175 171 2.017663 STANDARD +34.PA.mg Q0 FBIS3-24277 230 1.918759 STANDARD +34.PA.mg Q0 FBIS4-14080 252 1.890979 STANDARD +34.PA.mg Q0 FBIS4-39881 257 1.887065 STANDARD +35.PA.mgmx Q0 FR940620-1-00007 9 2.971818 STANDARD +35.PA.mgmx Q0 FR940303-1-00022 11 2.918622 STANDARD +35.PA.mgmx Q0 FBIS4-25028 41 2.394200 STANDARD +35.PA.mgmx Q0 FBIS3-18129 52 2.342345 STANDARD +35.PA.mgmx Q0 FBIS4-45333 59 2.277421 STANDARD +35.PA.mgmx Q0 FBIS4-41839 86 2.170714 STANDARD +35.PA.mgmx Q0 FBIS3-25940 87 2.164362 STANDARD +35.PA.mgmx Q0 FBIS4-55845 89 2.162241 STANDARD +35.PA.mgmx Q0 FBIS4-40452 93 2.153299 STANDARD +35.PA.mgmx Q0 FBIS4-2356 101 2.136141 STANDARD +35.PA.mgmx Q0 FBIS4-42757 116 2.114265 STANDARD +35.PA.mgmx Q0 FBIS3-24362 117 2.114117 STANDARD +35.PA.mgmx Q0 FBIS4-1863 154 2.053106 STANDARD +35.PA.mgmx Q0 FBIS4-43965 158 2.044602 STANDARD +35.PA.mgmx Q0 FBIS3-51766 160 2.041041 STANDARD +35.PA.mgmx Q0 FBIS3-35272 162 2.038591 STANDARD +35.PA.mgmx Q0 FBIS3-17175 171 2.017663 STANDARD +35.PA.mgmx Q0 FBIS3-24277 230 1.918759 STANDARD +35.PA.mgmx Q0 FBIS4-14080 252 1.890979 STANDARD +35.PA.mgmx Q0 FBIS4-39881 257 1.887065 STANDARD +40.PA.tran Q0 FR940620-1-00007 9 2.971818 STANDARD +40.PA.tran Q0 FR940303-1-00022 11 2.918622 STANDARD +40.PA.tran Q0 FBIS4-25028 41 2.394200 STANDARD +40.PA.tran Q0 FBIS3-18129 52 2.342345 STANDARD +40.PA.tran Q0 FBIS4-45333 59 2.277421 STANDARD +40.PA.tran Q0 FBIS4-41839 86 2.170714 STANDARD +40.PA.tran Q0 FBIS3-25940 87 2.164362 STANDARD +40.PA.tran Q0 FBIS4-55845 89 2.162241 STANDARD +40.PA.tran Q0 FBIS4-40452 93 2.153299 STANDARD +40.PA.tran Q0 FBIS4-2356 101 2.136141 STANDARD +40.PA.tran Q0 FBIS4-42757 116 2.114265 STANDARD +40.PA.tran Q0 FBIS3-24362 117 2.114117 STANDARD +40.PA.tran Q0 FBIS4-1863 154 2.053106 STANDARD +40.PA.tran Q0 FBIS4-43965 158 2.044602 STANDARD +40.PA.tran Q0 FBIS3-51766 160 2.041041 STANDARD +40.PA.tran Q0 FBIS3-35272 162 2.038591 STANDARD +40.PA.tran Q0 FBIS3-17175 171 2.017663 STANDARD +40.PA.tran Q0 FBIS3-24277 230 1.918759 STANDARD +40.PA.tran Q0 FBIS4-14080 252 1.890979 STANDARD +40.PA.tran Q0 FBIS4-39881 257 1.887065 STANDARD diff --git a/tools/eval/trec_eval.9.0.4/test/prefs.test b/tools/eval/trec_eval.9.0.4/test/prefs.test new file mode 100644 index 0000000000000000000000000000000000000000..9a0d001dc9be3e028b40afce0b2a838fd6a97f4c --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/prefs.test @@ -0,0 +1,164 @@ +1.EC.AB F:Ret,C:Not F:RnkdLst2digits FR940303-1-00022 1 +1.EC.AB F:Ret,C:Not F:RnkdLst2digits FBIS4-39881 0 +2.EC.A 0 0 FR940303-1-00022 1 +2.EC.A 0 0 CR93E-10505 0 +3.EC.B 0 0 CR93E-10505 1 +3.EC.B 0 0 FR940303-1-00022 0 +4.EC.noRet 0 0 CR93E-10505 0 +4.EC.noRet 0 0 CR93E-1282 1 +5.EC.noPrf 0 0 FR940303-1-00022 1 +5.EC.noPrf 0 0 FBIS4-39881 1 +6.EC.noRel 0 0 FR940303-1-00022 0 +6.EC.noRel 0 0 FBIS4-39881 0 +7.EC.no 0 0 FBIS4-39881 1 +11.PA=1 0 0 FR940303-1-00022 1 +11.PA=1 0 0 FBIS4-39881 0 +11.PA=1 0 1 FR940303-1-00022 1 +11.PA=1 0 1 FBIS4-39881 0 +12.PA=2 0 0 FR940303-1-00022 1 +12.PA=2 0 0 CR93E-10505 0 +12.PA=2 0 1 FR940303-1-00022 1 +12.PA=2 0 1 CR93E-10505 0 +13.PA=3 0 0 CR93E-10505 1 +13.PA=3 0 0 FR940303-1-00022 0 +13.PA=3 0 1 CR93E-10505 1 +13.PA=3 0 1 FR940303-1-00022 0 +14.PA=4 0 0 CR93E-10505 0 +14.PA=4 0 0 CR93E-1282 1 +14.PA=4 0 1 CR93E-10505 0 +14.PA=4 0 1 CR93E-1282 1 +15.PA=5 0 0 FR940303-1-00022 1 +15.PA=5 0 0 FBIS4-39881 1 +15.PA=5 0 1 FR940303-1-00022 1 +15.PA=5 0 1 FBIS4-39881 1 +16.PA=6 0 0 FR940303-1-00022 0 +16.PA=6 0 0 FBIS4-39881 0 +16.PA=6 0 1 FR940303-1-00022 0 +16.PA=6 0 1 FBIS4-39881 0 +17.PA=7 0 0 FBIS4-39881 1 +17.PA=7 0 1 FBIS4-39881 1 +21.EC.cb 0 0 FBIS4-45333 1 +21.EC.cb 0 0 FBIS4-41839 0 +21.EC.cb 0 0 FBIS3-25940 0 +21.EC.cb 0 0 FBIS4-55845 1 +21.EC.cb 0 0 FBIS4-40452 0 +21.EC.cb 0 0 FBIS4-2356 1 +21.EC.cb 0 0 FBIS4-42757 1 +21.EC.cb 0 0 CR93E-1952 1 +21.EC.cb 0 0 CR93E-2191 0 +21.EC.cb 0 0 CR93E-2473 1 +21.EC.cb 0 0 CR93E-3103 0 +22.EC.c3l 0 0 FBIS4-45333 4 +22.EC.c3l 0 0 FBIS4-41839 0 +22.EC.c3l 0 0 FBIS3-25940 0 +22.EC.c3l 0 0 FBIS4-55845 2 +22.EC.c3l 0 0 FBIS4-40452 0 +22.EC.c3l 0 0 FBIS4-2356 1 +22.EC.c3l 0 0 FBIS4-42757 1 +22.EC.c3l 0 0 CR93E-1952 4 +22.EC.c3l 0 0 CR93E-2191 0 +22.EC.c3l 0 0 CR93E-2473 1 +22.EC.c3l 0 0 CR93E-3103 0 +23.EC.cml 0 0 FBIS4-45333 9 +23.EC.cml 0 0 FBIS4-41839 8 +23.EC.cml 0 0 FBIS3-25940 7 +23.EC.cml 0 0 FBIS4-55845 6 +23.EC.cml 0 0 FBIS4-40452 5 +23.EC.cml 0 0 FBIS4-2356 5.5 +23.EC.cml 0 0 FBIS4-42757 6.5 +23.EC.cml 0 0 CR93E-1952 8 +23.EC.cml 0 0 CR93E-2191 7 +23.EC.cml 0 0 CR93E-2473 6 +23.EC.cml 0 0 CR93E-3103 3 +24.EC.mg 0 0 FBIS4-45333 0 +24.EC.mg 0 0 FBIS4-41839 1 +24.EC.mg 0 0 FBIS3-25940 0 +24.EC.mg 0 0 CR93E-2473 5 +24.EC.mg 1 0 FBIS4-45333 4 +24.EC.mg 1 0 FBIS4-41839 6 +24.EC.mg 1 0 FBIS3-25940 6 +24.EC.mg 1 0 CR93E-2473 5 +24.EC.mg 2 0 FBIS4-45333 9 +24.EC.mg 2 0 FBIS4-41839 8 +24.EC.mg 2 0 FBIS3-25940 7 +24.EC.mg 2 0 CR93E-2473 5 +31.PA.cb 0 0 FBIS4-45333 1 +31.PA.cb 0 0 FBIS4-41839 0 +31.PA.cb 0 0 FBIS3-25940 0 +31.PA.cb 0 0 FBIS4-55845 1 +31.PA.cb 0 0 FBIS4-40452 0 +31.PA.cb 0 0 FBIS4-2356 1 +31.PA.cb 0 0 FBIS4-42757 1 +31.PA.cb 0 0 CR93E-1952 1 +31.PA.cb 0 0 CR93E-2191 0 +31.PA.cb 0 0 CR93E-2473 1 +31.PA.cb 0 0 CR93E-3103 0 +31.PA.cb 0 1 FBIS4-45333 1 +31.PA.cb 0 1 FBIS4-41839 0 +32.PA.c3l 0 0 FBIS4-45333 4 +32.PA.c3l 0 0 FBIS4-41839 0 +32.PA.c3l 0 0 FBIS3-25940 0 +32.PA.c3l 0 0 FBIS4-55845 2 +32.PA.c3l 0 0 FBIS4-40452 0 +32.PA.c3l 0 0 FBIS4-2356 1 +32.PA.c3l 0 0 FBIS4-42757 1 +32.PA.c3l 0 0 CR93E-1952 4 +32.PA.c3l 0 0 CR93E-2191 0 +32.PA.c3l 0 0 CR93E-2473 1 +32.PA.c3l 0 0 CR93E-3103 0 +32.PA.c3l 0 1 FBIS4-45333 1 +32.PA.c3l 0 1 FBIS4-41839 0 +33.PA.cml 0 0 FBIS4-45333 9 +33.PA.cml 0 0 FBIS4-41839 8 +33.PA.cml 0 0 FBIS3-25940 7 +33.PA.cml 0 0 FBIS4-55845 6 +33.PA.cml 0 0 FBIS4-40452 5 +33.PA.cml 0 0 FBIS4-2356 5.5 +33.PA.cml 0 0 FBIS4-42757 6.5 +33.PA.cml 0 0 CR93E-1952 8 +33.PA.cml 0 0 CR93E-2191 7 +33.PA.cml 0 0 CR93E-2473 6 +33.PA.cml 0 0 CR93E-3103 3 +33.PA.cml 0 1 FBIS4-45333 9 +33.PA.cml 0 1 FBIS4-41839 8 +34.PA.mg 0 0 FBIS4-45333 0 +34.PA.mg 0 0 FBIS4-41839 1 +34.PA.mg 0 0 FBIS3-25940 0 +34.PA.mg 0 0 CR93E-2473 5 +34.PA.mg 1 0 FBIS4-45333 4 +34.PA.mg 1 0 FBIS4-41839 6 +34.PA.mg 1 0 FBIS3-25940 6 +34.PA.mg 1 0 CR93E-2473 5 +34.PA.mg 2 0 FBIS4-45333 9 +34.PA.mg 2 0 FBIS4-41839 8 +34.PA.mg 2 0 FBIS3-25940 7 +34.PA.mg 2 0 CR93E-2473 5 +34.PA.mg 0 1 FBIS4-45333 0 +34.PA.mg 0 1 FBIS4-41839 1 +34.PA.mg 1 1 FBIS4-45333 4 +34.PA.mg 1 1 FBIS4-41839 6 +34.PA.mg 2 1 FBIS4-45333 9 +34.PA.mg 2 1 FBIS4-41839 8 +35.PA.mgmx 0 0 FBIS4-45333 0 +35.PA.mgmx 0 0 FBIS4-41839 1 +35.PA.mgmx 0 0 FBIS3-25940 0 +35.PA.mgmx 0 0 CR93E-2473 5 +35.PA.mgmx 1 0 FBIS4-45333 4 +35.PA.mgmx 1 0 FBIS4-41839 6 +35.PA.mgmx 1 0 FBIS3-25940 6 +35.PA.mgmx 1 0 CR93E-2473 5 +35.PA.mgmx 2 0 FBIS4-45333 9 +35.PA.mgmx 2 0 FBIS4-41839 8 +35.PA.mgmx 2 0 FBIS3-25940 7 +35.PA.mgmx 2 0 CR93E-2473 5 +35.PA.mgmx 0 1 FBIS4-45333 0 +35.PA.mgmx 0 1 FBIS4-41839 1 +40.PA.tran 0 0 FBIS4-45333 5 +40.PA.tran 0 0 FBIS4-41839 9 +40.PA.tran 0 0 FBIS3-25940 4 +40.PA.tran 0 0 FBIS4-55845 3 +40.PA.tran 0 0 CR93E-10279 6 +40.PA.tran 0 0 CR93E-10505 0 +40.PA.tran 0 1 FBIS3-25940 7 +40.PA.tran 0 1 FBIS4-40452 6 +40.PA.tran 0 1 CR93E-1282 1 diff --git a/tools/eval/trec_eval.9.0.4/test/qrels.123 b/tools/eval/trec_eval.9.0.4/test/qrels.123 new file mode 100644 index 0000000000000000000000000000000000000000..93b0099e1c39d321889682acc0405513295e2705 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/qrels.123 @@ -0,0 +1,10362 @@ +301 0 CR93E-10279 0 +301 0 CR93E-10505 0 +301 0 CR93E-1282 1 +301 0 CR93E-1850 0 +301 0 CR93E-1860 0 +301 0 CR93E-1952 0 +301 0 CR93E-2191 0 +301 0 CR93E-2473 0 +301 0 CR93E-3103 1 +301 0 CR93E-3284 0 +301 0 CR93E-38 0 +301 0 CR93E-392 0 +301 0 CR93E-4648 0 +301 0 CR93E-4765 0 +301 0 CR93E-4855 0 +301 0 CR93E-5497 0 +301 0 CR93E-5780 0 +301 0 CR93E-5796 1 +301 0 CR93E-5799 4 +301 0 CR93E-6019 0 +301 0 CR93E-6879 0 +301 0 CR93E-6905 4 +301 0 CR93E-7123 0 +301 0 CR93E-7191 0 +301 0 CR93E-7276 0 +301 0 CR93E-7348 4 +301 0 CR93E-7376 1 +301 0 CR93E-7414 0 +301 0 CR93E-7716 0 +301 0 CR93E-7952 2 +301 0 CR93E-8012 0 +301 0 CR93E-8290 2 +301 0 CR93E-8416 1 +301 0 CR93E-8480 0 +301 0 CR93E-8484 0 +301 0 CR93E-9665 2 +301 0 CR93E-9750 2 +301 0 CR93E-9795 0 +301 0 CR93H-10037 4 +301 0 CR93H-10042 0 +301 0 CR93H-10104 0 +301 0 CR93H-10213 0 +301 0 CR93H-10221 0 +301 0 CR93H-10306 0 +301 0 CR93H-10374 0 +301 0 CR93H-10601 0 +301 0 CR93H-10659 0 +301 0 CR93H-10681 0 +301 0 CR93H-10921 0 +301 0 CR93H-10989 0 +301 0 CR93H-11029 0 +301 0 CR93H-11033 0 +301 0 CR93H-11034 0 +301 0 CR93H-11077 0 +301 0 CR93H-11119 0 +301 0 CR93H-11267 0 +301 0 CR93H-11291 0 +301 0 CR93H-11586 0 +301 0 CR93H-11806 0 +301 0 CR93H-11894 0 +301 0 CR93H-11994 0 +301 0 CR93H-11998 0 +301 0 CR93H-12016 0 +301 0 CR93H-12017 0 +301 0 CR93H-12150 0 +301 0 CR93H-12163 0 +301 0 CR93H-12181 0 +301 0 CR93H-12278 0 +301 0 CR93H-12436 0 +301 0 CR93H-12498 0 +301 0 CR93H-12610 0 +301 0 CR93H-12820 0 +301 0 CR93H-12874 0 +301 0 CR93H-12908 0 +301 0 CR93H-1298 0 +301 0 CR93H-12982 0 +301 0 CR93H-12983 0 +301 0 CR93H-12988 0 +301 0 CR93H-13053 0 +301 0 CR93H-13205 0 +301 0 CR93H-13529 1 +301 0 CR93H-13593 1 +301 0 CR93H-13595 1 +301 0 CR93H-13659 0 +301 0 CR93H-13680 0 +301 0 CR93H-13849 0 +301 0 CR93H-14136 0 +301 0 CR93H-14306 0 +301 0 CR93H-14325 0 +301 0 CR93H-14388 0 +301 0 CR93H-14389 1 +301 0 CR93H-14469 0 +301 0 CR93H-1461 0 +301 0 CR93H-1464 0 +301 0 CR93H-14669 0 +301 0 CR93H-14791 0 +301 0 CR93H-14817 0 +301 0 CR93H-14949 0 +301 0 CR93H-15069 1 +301 0 CR93H-15178 0 +301 0 CR93H-15405 0 +301 0 CR93H-15453 0 +301 0 CR93H-15477 0 +301 0 CR93H-15587 0 +301 0 CR93H-15608 0 +301 0 CR93H-15875 0 +301 0 CR93H-15886 0 +301 0 CR93H-15950 0 +301 0 CR93H-16062 0 +301 0 CR93H-16128 0 +301 0 CR93H-16369 0 +301 0 CR93H-1712 0 +301 0 CR93H-1769 1 +301 0 CR93H-1788 0 +301 0 CR93H-185 0 +301 0 CR93H-1852 0 +301 0 CR93H-199 1 +301 0 CR93H-215 0 +301 0 CR93H-2174 0 +301 0 CR93H-2252 0 +301 0 CR93H-2346 0 +301 0 CR93H-2430 0 +301 0 CR93H-2707 0 +301 0 CR93H-2841 0 +301 0 CR93H-2896 0 +301 0 CR93H-2899 1 +301 0 CR93H-3079 0 +301 0 CR93H-3262 0 +301 0 CR93H-3444 0 +301 0 CR93H-3466 0 +301 0 CR93H-3813 0 +301 0 CR93H-3960 0 +301 0 CR93H-4041 0 +301 0 CR93H-4042 0 +301 0 CR93H-4143 0 +301 0 CR93H-416 0 +301 0 CR93H-4192 0 +301 0 CR93H-4306 0 +301 0 CR93H-4417 0 +301 0 CR93H-4554 0 +301 0 CR93H-4569 0 +301 0 CR93H-4586 0 +301 0 CR93H-4635 0 +301 0 CR93H-4827 0 +301 0 CR93H-4879 0 +301 0 CR93H-4922 0 +301 0 CR93H-5017 0 +301 0 CR93H-5053 0 +301 0 CR93H-5121 0 +301 0 CR93H-5189 0 +301 0 CR93H-5255 0 +301 0 CR93H-553 0 +301 0 CR93H-5568 1 +301 0 CR93H-5618 0 +301 0 CR93H-6202 0 +301 0 CR93H-6346 0 +301 0 CR93H-6422 0 +301 0 CR93H-6567 0 +301 0 CR93H-6695 0 +301 0 CR93H-6754 0 +301 0 CR93H-6912 0 +301 0 CR93H-6945 0 +301 0 CR93H-7055 0 +301 0 CR93H-71 0 +301 0 CR93H-7245 0 +301 0 CR93H-7314 0 +301 0 CR93H-735 0 +301 0 CR93H-742 0 +301 0 CR93H-7426 0 +301 0 CR93H-7554 0 +301 0 CR93H-7557 0 +301 0 CR93H-7612 0 +301 0 CR93H-8165 0 +301 0 CR93H-83 0 +301 0 CR93H-8422 0 +301 0 CR93H-8460 0 +301 0 CR93H-8461 0 +301 0 CR93H-8472 0 +301 0 CR93H-8590 0 +301 0 CR93H-860 0 +301 0 CR93H-8700 0 +301 0 CR93H-8928 0 +301 0 CR93H-8981 0 +301 0 CR93H-9134 1 +301 0 CR93H-9143 0 +301 0 CR93H-9147 0 +301 0 CR93H-9214 0 +301 0 CR93H-9344 0 +301 0 CR93H-9350 1 +301 0 CR93H-9357 0 +301 0 CR93H-9546 0 +301 0 CR93H-9548 0 +301 0 CR93H-955 1 +301 0 CR93H-9684 1 +301 0 CR93H-9705 0 +301 0 CR93H-9835 0 +301 0 FBIS3-10082 1 +301 0 FBIS3-10169 0 +301 0 FBIS3-10243 1 +301 0 FBIS3-10319 0 +301 0 FBIS3-10397 1 +301 0 FBIS3-10491 1 +301 0 FBIS3-10555 0 +301 0 FBIS3-10622 1 +301 0 FBIS3-10634 0 +301 0 FBIS3-10635 0 +301 0 FBIS3-10721 1 +301 0 FBIS3-10805 1 +301 0 FBIS3-10910 1 +301 0 FBIS3-10937 1 +301 0 FBIS3-10938 0 +301 0 FBIS3-11003 1 +301 0 FBIS3-11028 0 +301 0 FBIS3-11095 1 +301 0 FBIS3-11099 1 +301 0 FBIS3-11210 1 +301 0 FBIS3-11318 0 +301 0 FBIS3-11405 1 +301 0 FBIS3-11502 1 +301 0 FBIS3-11553 1 +301 0 FBIS3-1162 0 +301 0 FBIS3-11628 1 +301 0 FBIS3-11634 1 +301 0 FBIS3-12094 1 +301 0 FBIS3-13011 0 +301 0 FBIS3-14449 0 +301 0 FBIS3-14832 1 +301 0 FBIS3-15271 0 +301 0 FBIS3-15418 0 +301 0 FBIS3-15509 0 +301 0 FBIS3-15586 1 +301 0 FBIS3-15988 1 +301 0 FBIS3-16151 0 +301 0 FBIS3-16286 0 +301 0 FBIS3-1638 0 +301 0 FBIS3-16769 0 +301 0 FBIS3-16775 0 +301 0 FBIS3-17073 0 +301 0 FBIS3-17175 0 +301 0 FBIS3-17255 0 +301 0 FBIS3-17394 0 +301 0 FBIS3-17422 0 +301 0 FBIS3-17547 0 +301 0 FBIS3-17704 0 +301 0 FBIS3-17880 0 +301 0 FBIS3-18129 0 +301 0 FBIS3-18281 0 +301 0 FBIS3-18507 0 +301 0 FBIS3-19199 1 +301 0 FBIS3-19420 1 +301 0 FBIS3-19646 1 +301 0 FBIS3-19682 0 +301 0 FBIS3-19863 0 +301 0 FBIS3-20360 1 +301 0 FBIS3-20551 1 +301 0 FBIS3-20552 1 +301 0 FBIS3-20796 0 +301 0 FBIS3-21603 1 +301 0 FBIS3-21604 0 +301 0 FBIS3-21605 1 +301 0 FBIS3-21620 0 +301 0 FBIS3-21627 1 +301 0 FBIS3-21628 1 +301 0 FBIS3-21629 1 +301 0 FBIS3-21630 1 +301 0 FBIS3-21631 1 +301 0 FBIS3-21632 1 +301 0 FBIS3-21635 1 +301 0 FBIS3-21636 1 +301 0 FBIS3-21641 1 +301 0 FBIS3-21642 1 +301 0 FBIS3-21670 0 +301 0 FBIS3-21671 0 +301 0 FBIS3-21699 1 +301 0 FBIS3-21710 1 +301 0 FBIS3-21720 1 +301 0 FBIS3-21722 1 +301 0 FBIS3-21723 1 +301 0 FBIS3-21724 1 +301 0 FBIS3-21729 1 +301 0 FBIS3-21743 1 +301 0 FBIS3-21750 1 +301 0 FBIS3-21762 0 +301 0 FBIS3-21765 1 +301 0 FBIS3-21769 1 +301 0 FBIS3-21770 1 +301 0 FBIS3-21771 1 +301 0 FBIS3-21779 0 +301 0 FBIS3-21789 1 +301 0 FBIS3-21790 1 +301 0 FBIS3-21807 1 +301 0 FBIS3-21817 1 +301 0 FBIS3-21818 1 +301 0 FBIS3-21821 1 +301 0 FBIS3-21828 0 +301 0 FBIS3-21880 1 +301 0 FBIS3-21884 1 +301 0 FBIS3-21886 1 +301 0 FBIS3-21900 1 +301 0 FBIS3-21906 1 +301 0 FBIS3-21907 1 +301 0 FBIS3-21911 1 +301 0 FBIS3-21912 0 +301 0 FBIS3-21930 1 +301 0 FBIS3-21938 0 +301 0 FBIS3-21961 1 +301 0 FBIS3-21978 1 +301 0 FBIS3-21990 0 +301 0 FBIS3-21998 1 +301 0 FBIS3-21999 1 +301 0 FBIS3-22000 1 +301 0 FBIS3-22011 1 +301 0 FBIS3-22033 0 +301 0 FBIS3-22038 1 +301 0 FBIS3-22039 1 +301 0 FBIS3-22040 1 +301 0 FBIS3-22047 1 +301 0 FBIS3-22049 1 +301 0 FBIS3-22055 1 +301 0 FBIS3-22085 0 +301 0 FBIS3-22088 1 +301 0 FBIS3-22090 0 +301 0 FBIS3-22098 0 +301 0 FBIS3-22101 1 +301 0 FBIS3-23426 0 +301 0 FBIS3-23432 0 +301 0 FBIS3-23561 0 +301 0 FBIS3-23606 0 +301 0 FBIS3-23691 0 +301 0 FBIS3-23743 0 +301 0 FBIS3-23823 0 +301 0 FBIS3-2393 1 +301 0 FBIS3-23945 0 +301 0 FBIS3-23986 1 +301 0 FBIS3-24037 0 +301 0 FBIS3-24039 0 +301 0 FBIS3-24137 0 +301 0 FBIS3-24143 0 +301 0 FBIS3-24145 0 +301 0 FBIS3-24182 0 +301 0 FBIS3-24197 1 +301 0 FBIS3-24247 0 +301 0 FBIS3-24256 0 +301 0 FBIS3-24277 0 +301 0 FBIS3-24284 0 +301 0 FBIS3-24318 1 +301 0 FBIS3-24325 1 +301 0 FBIS3-24338 0 +301 0 FBIS3-24362 0 +301 0 FBIS3-24451 0 +301 0 FBIS3-24453 0 +301 0 FBIS3-2516 0 +301 0 FBIS3-25359 0 +301 0 FBIS3-25902 0 +301 0 FBIS3-26005 1 +301 0 FBIS3-2605 0 +301 0 FBIS3-26415 1 +301 0 FBIS3-26451 0 +301 0 FBIS3-26913 1 +301 0 FBIS3-26914 1 +301 0 FBIS3-27048 0 +301 0 FBIS3-27916 0 +301 0 FBIS3-28833 0 +301 0 FBIS3-29180 0 +301 0 FBIS3-3020 0 +301 0 FBIS3-31267 1 +301 0 FBIS3-31749 0 +301 0 FBIS3-3189 0 +301 0 FBIS3-3190 0 +301 0 FBIS3-3223 0 +301 0 FBIS3-32399 0 +301 0 FBIS3-32400 0 +301 0 FBIS3-32453 1 +301 0 FBIS3-32619 1 +301 0 FBIS3-32620 0 +301 0 FBIS3-32674 1 +301 0 FBIS3-32817 1 +301 0 FBIS3-32833 1 +301 0 FBIS3-32880 1 +301 0 FBIS3-33001 1 +301 0 FBIS3-3304 0 +301 0 FBIS3-33150 1 +301 0 FBIS3-33206 1 +301 0 FBIS3-33239 0 +301 0 FBIS3-33241 1 +301 0 FBIS3-33243 1 +301 0 FBIS3-33287 1 +301 0 FBIS3-33366 1 +301 0 FBIS3-33438 1 +301 0 FBIS3-33570 1 +301 0 FBIS3-33590 0 +301 0 FBIS3-33963 1 +301 0 FBIS3-34361 0 +301 0 FBIS3-34451 0 +301 0 FBIS3-34994 0 +301 0 FBIS3-35229 0 +301 0 FBIS3-36375 0 +301 0 FBIS3-36824 0 +301 0 FBIS3-36869 0 +301 0 FBIS3-37418 0 +301 0 FBIS3-37492 0 +301 0 FBIS3-37697 0 +301 0 FBIS3-37944 0 +301 0 FBIS3-37947 1 +301 0 FBIS3-38070 1 +301 0 FBIS3-38124 0 +301 0 FBIS3-38466 1 +301 0 FBIS3-38787 0 +301 0 FBIS3-38878 1 +301 0 FBIS3-39430 0 +301 0 FBIS3-39555 0 +301 0 FBIS3-39566 0 +301 0 FBIS3-40435 0 +301 0 FBIS3-40450 0 +301 0 FBIS3-40470 0 +301 0 FBIS3-40604 0 +301 0 FBIS3-41071 1 +301 0 FBIS3-41076 1 +301 0 FBIS3-41082 1 +301 0 FBIS3-41087 1 +301 0 FBIS3-41090 1 +301 0 FBIS3-41091 1 +301 0 FBIS3-41092 1 +301 0 FBIS3-41101 1 +301 0 FBIS3-41105 0 +301 0 FBIS3-41108 0 +301 0 FBIS3-41110 0 +301 0 FBIS3-41121 1 +301 0 FBIS3-41131 1 +301 0 FBIS3-41132 1 +301 0 FBIS3-41140 1 +301 0 FBIS3-41141 1 +301 0 FBIS3-41143 0 +301 0 FBIS3-41158 1 +301 0 FBIS3-41163 1 +301 0 FBIS3-41174 1 +301 0 FBIS3-41181 0 +301 0 FBIS3-41204 1 +301 0 FBIS3-41211 1 +301 0 FBIS3-41212 1 +301 0 FBIS3-41213 1 +301 0 FBIS3-41215 1 +301 0 FBIS3-41219 1 +301 0 FBIS3-41220 1 +301 0 FBIS3-41222 1 +301 0 FBIS3-41224 1 +301 0 FBIS3-41226 1 +301 0 FBIS3-41233 1 +301 0 FBIS3-41236 1 +301 0 FBIS3-41237 1 +301 0 FBIS3-41244 0 +301 0 FBIS3-41247 1 +301 0 FBIS3-41272 1 +301 0 FBIS3-41285 1 +301 0 FBIS3-41288 0 +301 0 FBIS3-41291 0 +301 0 FBIS3-41293 1 +301 0 FBIS3-41294 1 +301 0 FBIS3-41295 1 +301 0 FBIS3-41298 1 +301 0 FBIS3-41305 0 +301 0 FBIS3-41312 0 +301 0 FBIS3-41317 1 +301 0 FBIS3-41320 1 +301 0 FBIS3-41325 1 +301 0 FBIS3-41345 1 +301 0 FBIS3-41347 1 +301 0 FBIS3-41348 1 +301 0 FBIS3-41349 1 +301 0 FBIS3-41385 0 +301 0 FBIS3-41387 1 +301 0 FBIS3-41398 1 +301 0 FBIS3-41400 1 +301 0 FBIS3-41401 1 +301 0 FBIS3-41402 1 +301 0 FBIS3-41406 1 +301 0 FBIS3-41472 0 +301 0 FBIS3-41666 0 +301 0 FBIS3-41958 0 +301 0 FBIS3-4209 0 +301 0 FBIS3-42278 0 +301 0 FBIS3-42315 1 +301 0 FBIS3-42319 0 +301 0 FBIS3-42341 0 +301 0 FBIS3-42576 0 +301 0 FBIS3-42621 0 +301 0 FBIS3-42766 0 +301 0 FBIS3-42820 1 +301 0 FBIS3-42845 0 +301 0 FBIS3-43072 0 +301 0 FBIS3-43550 0 +301 0 FBIS3-44579 0 +301 0 FBIS3-45599 0 +301 0 FBIS3-45756 0 +301 0 FBIS3-46614 0 +301 0 FBIS3-46801 0 +301 0 FBIS3-47129 0 +301 0 FBIS3-47971 0 +301 0 FBIS3-48159 0 +301 0 FBIS3-48161 0 +301 0 FBIS3-48751 0 +301 0 FBIS3-49567 1 +301 0 FBIS3-50131 0 +301 0 FBIS3-50136 0 +301 0 FBIS3-50603 1 +301 0 FBIS3-50654 0 +301 0 FBIS3-50695 1 +301 0 FBIS3-51349 0 +301 0 FBIS3-51567 1 +301 0 FBIS3-51619 0 +301 0 FBIS3-51766 0 +301 0 FBIS3-51824 1 +301 0 FBIS3-52033 1 +301 0 FBIS3-52075 0 +301 0 FBIS3-52858 0 +301 0 FBIS3-54461 0 +301 0 FBIS3-54944 0 +301 0 FBIS3-54945 0 +301 0 FBIS3-55219 1 +301 0 FBIS3-55570 0 +301 0 FBIS3-55741 0 +301 0 FBIS3-55966 0 +301 0 FBIS3-56182 0 +301 0 FBIS3-57406 0 +301 0 FBIS3-5772 1 +301 0 FBIS3-57906 0 +301 0 FBIS3-57998 1 +301 0 FBIS3-58025 0 +301 0 FBIS3-58028 1 +301 0 FBIS3-58055 1 +301 0 FBIS3-58058 1 +301 0 FBIS3-58477 1 +301 0 FBIS3-58867 1 +301 0 FBIS3-59073 0 +301 0 FBIS3-59284 1 +301 0 FBIS3-59285 0 +301 0 FBIS3-5944 1 +301 0 FBIS3-59517 0 +301 0 FBIS3-59750 0 +301 0 FBIS3-59962 0 +301 0 FBIS3-59963 1 +301 0 FBIS3-59979 0 +301 0 FBIS3-60000 1 +301 0 FBIS3-60006 1 +301 0 FBIS3-60017 1 +301 0 FBIS3-60061 1 +301 0 FBIS3-60063 1 +301 0 FBIS3-60065 1 +301 0 FBIS3-60066 1 +301 0 FBIS3-60093 1 +301 0 FBIS3-60111 1 +301 0 FBIS3-60121 1 +301 0 FBIS3-60122 0 +301 0 FBIS3-60124 1 +301 0 FBIS3-60149 1 +301 0 FBIS3-60153 1 +301 0 FBIS3-60166 1 +301 0 FBIS3-60180 1 +301 0 FBIS3-60209 0 +301 0 FBIS3-60215 1 +301 0 FBIS3-60336 0 +301 0 FBIS3-60342 0 +301 0 FBIS3-60752 0 +301 0 FBIS3-60831 0 +301 0 FBIS3-60975 0 +301 0 FBIS3-60984 1 +301 0 FBIS3-61041 0 +301 0 FBIS3-61080 0 +301 0 FBIS3-61106 0 +301 0 FBIS3-61161 0 +301 0 FBIS3-61246 0 +301 0 FBIS3-61298 0 +301 0 FBIS3-61345 0 +301 0 FBIS3-61387 0 +301 0 FBIS3-61562 0 +301 0 FBIS3-7168 1 +301 0 FBIS3-8135 0 +301 0 FBIS3-9399 0 +301 0 FBIS3-9890 1 +301 0 FBIS3-9969 0 +301 0 FBIS3-9970 0 +301 0 FBIS4-10076 1 +301 0 FBIS4-10092 1 +301 0 FBIS4-10095 1 +301 0 FBIS4-10110 1 +301 0 FBIS4-10112 1 +301 0 FBIS4-10121 0 +301 0 FBIS4-10175 0 +301 0 FBIS4-10192 0 +301 0 FBIS4-10296 0 +301 0 FBIS4-10366 1 +301 0 FBIS4-10488 1 +301 0 FBIS4-10739 0 +301 0 FBIS4-10748 0 +301 0 FBIS4-10817 0 +301 0 FBIS4-10864 0 +301 0 FBIS4-11047 0 +301 0 FBIS4-11217 0 +301 0 FBIS4-14483 0 +301 0 FBIS4-14505 0 +301 0 FBIS4-15002 0 +301 0 FBIS4-1549 0 +301 0 FBIS4-1553 0 +301 0 FBIS4-16126 0 +301 0 FBIS4-1628 0 +301 0 FBIS4-16454 0 +301 0 FBIS4-16502 0 +301 0 FBIS4-16583 0 +301 0 FBIS4-1667 0 +301 0 FBIS4-16951 0 +301 0 FBIS4-17572 0 +301 0 FBIS4-17750 0 +301 0 FBIS4-1796 0 +301 0 FBIS4-18028 0 +301 0 FBIS4-18061 0 +301 0 FBIS4-18122 0 +301 0 FBIS4-1842 0 +301 0 FBIS4-1843 0 +301 0 FBIS4-1860 0 +301 0 FBIS4-1861 0 +301 0 FBIS4-1863 0 +301 0 FBIS4-1865 0 +301 0 FBIS4-1866 0 +301 0 FBIS4-19049 0 +301 0 FBIS4-1967 0 +301 0 FBIS4-19851 1 +301 0 FBIS4-2042 0 +301 0 FBIS4-20472 0 +301 0 FBIS4-20504 0 +301 0 FBIS4-20617 0 +301 0 FBIS4-2072 1 +301 0 FBIS4-20942 1 +301 0 FBIS4-20943 1 +301 0 FBIS4-20959 0 +301 0 FBIS4-20961 0 +301 0 FBIS4-20962 0 +301 0 FBIS4-20965 1 +301 0 FBIS4-20966 1 +301 0 FBIS4-20970 1 +301 0 FBIS4-20976 1 +301 0 FBIS4-20980 1 +301 0 FBIS4-20995 0 +301 0 FBIS4-21016 1 +301 0 FBIS4-21041 1 +301 0 FBIS4-2105 0 +301 0 FBIS4-21060 1 +301 0 FBIS4-21061 0 +301 0 FBIS4-21062 0 +301 0 FBIS4-21094 1 +301 0 FBIS4-21124 0 +301 0 FBIS4-21126 0 +301 0 FBIS4-21133 0 +301 0 FBIS4-21134 0 +301 0 FBIS4-21139 0 +301 0 FBIS4-21168 0 +301 0 FBIS4-21171 1 +301 0 FBIS4-21188 0 +301 0 FBIS4-21207 0 +301 0 FBIS4-21212 0 +301 0 FBIS4-21213 1 +301 0 FBIS4-21244 0 +301 0 FBIS4-21261 0 +301 0 FBIS4-2128 0 +301 0 FBIS4-21287 0 +301 0 FBIS4-21302 1 +301 0 FBIS4-21310 0 +301 0 FBIS4-21321 1 +301 0 FBIS4-21336 0 +301 0 FBIS4-21340 1 +301 0 FBIS4-21936 0 +301 0 FBIS4-2204 0 +301 0 FBIS4-22214 1 +301 0 FBIS4-22235 1 +301 0 FBIS4-22345 0 +301 0 FBIS4-22444 0 +301 0 FBIS4-22455 0 +301 0 FBIS4-22471 0 +301 0 FBIS4-22523 0 +301 0 FBIS4-22537 0 +301 0 FBIS4-22596 0 +301 0 FBIS4-22768 1 +301 0 FBIS4-22779 0 +301 0 FBIS4-24388 0 +301 0 FBIS4-2439 0 +301 0 FBIS4-24523 1 +301 0 FBIS4-25032 0 +301 0 FBIS4-26003 0 +301 0 FBIS4-26127 0 +301 0 FBIS4-26192 0 +301 0 FBIS4-26323 1 +301 0 FBIS4-26335 0 +301 0 FBIS4-26351 0 +301 0 FBIS4-26415 0 +301 0 FBIS4-26788 0 +301 0 FBIS4-26902 1 +301 0 FBIS4-27085 0 +301 0 FBIS4-27100 1 +301 0 FBIS4-2721 0 +301 0 FBIS4-27336 0 +301 0 FBIS4-2734 0 +301 0 FBIS4-27391 0 +301 0 FBIS4-27942 0 +301 0 FBIS4-29003 0 +301 0 FBIS4-2931 1 +301 0 FBIS4-30024 0 +301 0 FBIS4-3044 0 +301 0 FBIS4-31295 1 +301 0 FBIS4-31645 1 +301 0 FBIS4-31787 0 +301 0 FBIS4-3230 0 +301 0 FBIS4-33188 1 +301 0 FBIS4-33584 1 +301 0 FBIS4-3367 0 +301 0 FBIS4-3370 0 +301 0 FBIS4-33785 0 +301 0 FBIS4-33867 0 +301 0 FBIS4-33868 0 +301 0 FBIS4-34471 0 +301 0 FBIS4-34515 0 +301 0 FBIS4-34538 0 +301 0 FBIS4-34613 0 +301 0 FBIS4-34616 1 +301 0 FBIS4-34647 1 +301 0 FBIS4-34666 0 +301 0 FBIS4-34836 1 +301 0 FBIS4-34879 0 +301 0 FBIS4-37650 1 +301 0 FBIS4-37795 0 +301 0 FBIS4-38095 0 +301 0 FBIS4-38364 1 +301 0 FBIS4-38410 0 +301 0 FBIS4-38482 0 +301 0 FBIS4-39330 0 +301 0 FBIS4-39493 0 +301 0 FBIS4-39759 0 +301 0 FBIS4-40181 0 +301 0 FBIS4-40260 0 +301 0 FBIS4-40359 0 +301 0 FBIS4-40452 0 +301 0 FBIS4-40482 0 +301 0 FBIS4-40514 0 +301 0 FBIS4-4063 0 +301 0 FBIS4-4067 0 +301 0 FBIS4-40720 0 +301 0 FBIS4-40805 1 +301 0 FBIS4-40930 0 +301 0 FBIS4-40932 0 +301 0 FBIS4-40934 0 +301 0 FBIS4-40935 0 +301 0 FBIS4-40936 0 +301 0 FBIS4-41144 0 +301 0 FBIS4-41215 0 +301 0 FBIS4-41223 0 +301 0 FBIS4-41394 0 +301 0 FBIS4-41395 0 +301 0 FBIS4-41396 0 +301 0 FBIS4-41398 0 +301 0 FBIS4-41538 0 +301 0 FBIS4-41541 0 +301 0 FBIS4-41684 0 +301 0 FBIS4-41687 1 +301 0 FBIS4-41832 0 +301 0 FBIS4-41839 0 +301 0 FBIS4-41860 0 +301 0 FBIS4-41863 0 +301 0 FBIS4-41952 0 +301 0 FBIS4-41976 0 +301 0 FBIS4-41991 0 +301 0 FBIS4-42499 1 +301 0 FBIS4-42757 1 +301 0 FBIS4-43152 1 +301 0 FBIS4-43533 1 +301 0 FBIS4-43552 1 +301 0 FBIS4-43791 0 +301 0 FBIS4-43797 1 +301 0 FBIS4-43801 1 +301 0 FBIS4-43965 1 +301 0 FBIS4-44181 0 +301 0 FBIS4-45158 1 +301 0 FBIS4-45166 0 +301 0 FBIS4-45172 0 +301 0 FBIS4-45175 1 +301 0 FBIS4-45195 0 +301 0 FBIS4-45205 0 +301 0 FBIS4-45230 1 +301 0 FBIS4-45239 1 +301 0 FBIS4-45251 1 +301 0 FBIS4-45257 1 +301 0 FBIS4-45277 1 +301 0 FBIS4-45278 1 +301 0 FBIS4-45280 1 +301 0 FBIS4-45315 0 +301 0 FBIS4-45330 1 +301 0 FBIS4-45333 1 +301 0 FBIS4-45345 1 +301 0 FBIS4-45346 0 +301 0 FBIS4-45383 1 +301 0 FBIS4-45398 1 +301 0 FBIS4-45413 1 +301 0 FBIS4-45414 1 +301 0 FBIS4-45417 0 +301 0 FBIS4-45419 1 +301 0 FBIS4-45425 1 +301 0 FBIS4-45434 1 +301 0 FBIS4-45440 0 +301 0 FBIS4-45453 0 +301 0 FBIS4-45469 1 +301 0 FBIS4-45477 1 +301 0 FBIS4-45482 0 +301 0 FBIS4-45495 0 +301 0 FBIS4-45503 1 +301 0 FBIS4-45518 1 +301 0 FBIS4-45519 1 +301 0 FBIS4-45552 0 +301 0 FBIS4-45571 1 +301 0 FBIS4-46425 1 +301 0 FBIS4-46574 0 +301 0 FBIS4-46584 0 +301 0 FBIS4-46588 0 +301 0 FBIS4-46648 0 +301 0 FBIS4-46649 0 +301 0 FBIS4-46730 0 +301 0 FBIS4-46733 0 +301 0 FBIS4-46734 0 +301 0 FBIS4-46757 0 +301 0 FBIS4-46775 0 +301 0 FBIS4-46780 1 +301 0 FBIS4-46806 0 +301 0 FBIS4-46846 1 +301 0 FBIS4-46857 0 +301 0 FBIS4-46935 0 +301 0 FBIS4-47008 0 +301 0 FBIS4-47045 0 +301 0 FBIS4-47046 0 +301 0 FBIS4-47200 0 +301 0 FBIS4-49021 0 +301 0 FBIS4-49075 0 +301 0 FBIS4-49289 0 +301 0 FBIS4-49667 0 +301 0 FBIS4-49754 0 +301 0 FBIS4-49845 0 +301 0 FBIS4-50083 0 +301 0 FBIS4-50478 0 +301 0 FBIS4-50901 0 +301 0 FBIS4-50956 0 +301 0 FBIS4-50993 0 +301 0 FBIS4-51335 0 +301 0 FBIS4-52002 0 +301 0 FBIS4-52093 0 +301 0 FBIS4-52587 0 +301 0 FBIS4-53424 1 +301 0 FBIS4-54126 0 +301 0 FBIS4-54227 1 +301 0 FBIS4-54287 0 +301 0 FBIS4-54501 0 +301 0 FBIS4-54604 0 +301 0 FBIS4-54904 1 +301 0 FBIS4-55395 0 +301 0 FBIS4-56290 0 +301 0 FBIS4-56434 1 +301 0 FBIS4-56467 1 +301 0 FBIS4-56471 1 +301 0 FBIS4-56487 1 +301 0 FBIS4-56513 1 +301 0 FBIS4-56524 0 +301 0 FBIS4-56605 1 +301 0 FBIS4-56693 1 +301 0 FBIS4-56776 0 +301 0 FBIS4-56803 1 +301 0 FBIS4-56930 1 +301 0 FBIS4-56965 1 +301 0 FBIS4-56974 1 +301 0 FBIS4-56982 1 +301 0 FBIS4-56992 1 +301 0 FBIS4-57053 0 +301 0 FBIS4-57121 0 +301 0 FBIS4-57301 1 +301 0 FBIS4-57322 1 +301 0 FBIS4-57754 1 +301 0 FBIS4-57869 1 +301 0 FBIS4-57987 1 +301 0 FBIS4-58122 0 +301 0 FBIS4-60945 0 +301 0 FBIS4-61644 0 +301 0 FBIS4-61663 0 +301 0 FBIS4-62028 1 +301 0 FBIS4-62049 0 +301 0 FBIS4-62078 0 +301 0 FBIS4-62079 0 +301 0 FBIS4-62372 0 +301 0 FBIS4-63153 0 +301 0 FBIS4-63597 0 +301 0 FBIS4-64135 0 +301 0 FBIS4-64345 0 +301 0 FBIS4-6448 0 +301 0 FBIS4-65446 0 +301 0 FBIS4-65501 0 +301 0 FBIS4-65806 1 +301 0 FBIS4-66122 0 +301 0 FBIS4-66308 0 +301 0 FBIS4-66382 0 +301 0 FBIS4-66940 1 +301 0 FBIS4-66950 1 +301 0 FBIS4-66951 1 +301 0 FBIS4-66952 1 +301 0 FBIS4-66973 1 +301 0 FBIS4-66974 1 +301 0 FBIS4-67000 1 +301 0 FBIS4-67003 0 +301 0 FBIS4-67005 0 +301 0 FBIS4-67027 1 +301 0 FBIS4-67046 0 +301 0 FBIS4-67051 1 +301 0 FBIS4-67058 1 +301 0 FBIS4-67062 1 +301 0 FBIS4-67072 1 +301 0 FBIS4-67135 1 +301 0 FBIS4-67140 1 +301 0 FBIS4-67144 1 +301 0 FBIS4-67149 0 +301 0 FBIS4-67150 1 +301 0 FBIS4-67156 1 +301 0 FBIS4-67165 0 +301 0 FBIS4-67169 1 +301 0 FBIS4-67170 1 +301 0 FBIS4-67176 1 +301 0 FBIS4-67178 1 +301 0 FBIS4-67183 1 +301 0 FBIS4-67184 1 +301 0 FBIS4-67227 1 +301 0 FBIS4-67239 1 +301 0 FBIS4-67244 0 +301 0 FBIS4-67246 1 +301 0 FBIS4-67263 0 +301 0 FBIS4-67273 0 +301 0 FBIS4-67281 1 +301 0 FBIS4-67292 1 +301 0 FBIS4-67331 1 +301 0 FBIS4-67334 1 +301 0 FBIS4-67336 1 +301 0 FBIS4-67341 0 +301 0 FBIS4-67492 1 +301 0 FBIS4-67942 1 +301 0 FBIS4-68096 0 +301 0 FBIS4-68348 0 +301 0 FBIS4-68349 0 +301 0 FBIS4-68416 0 +301 0 FBIS4-68426 0 +301 0 FBIS4-68498 0 +301 0 FBIS4-68542 0 +301 0 FBIS4-68582 0 +301 0 FBIS4-68653 0 +301 0 FBIS4-68746 0 +301 0 FBIS4-68801 1 +301 0 FBIS4-68847 0 +301 0 FBIS4-68893 0 +301 0 FBIS4-7006 0 +301 0 FBIS4-7688 0 +301 0 FBIS4-7811 1 +301 0 FBIS4-865 0 +301 0 FBIS4-891 0 +301 0 FBIS4-8957 1 +301 0 FBIS4-9354 0 +301 0 FBIS4-9451 0 +301 0 FBIS4-9687 1 +301 0 FBIS4-9819 0 +301 0 FBIS4-9843 1 +301 0 FBIS4-9965 0 +301 0 FR940112-2-00076 0 +301 0 FR940128-2-00139 0 +301 0 FR940202-2-00149 0 +301 0 FR940202-2-00150 0 +301 0 FR940202-2-00151 0 +301 0 FR940202-2-00153 0 +301 0 FR940202-2-00154 0 +301 0 FR940203-1-00036 0 +301 0 FR940203-2-00129 0 +301 0 FR940203-2-00142 0 +301 0 FR940217-1-00073 0 +301 0 FR940223-2-00242 0 +301 0 FR940303-1-00022 0 +301 0 FR940303-2-00208 0 +301 0 FR940314-0-00010 0 +301 0 FR940314-1-00041 0 +301 0 FR940324-2-00091 0 +301 0 FR940328-2-00122 0 +301 0 FR940406-2-00067 0 +301 0 FR940406-2-00175 0 +301 0 FR940412-2-00124 0 +301 0 FR940412-2-00131 0 +301 0 FR940425-2-00078 0 +301 0 FR940425-2-00079 0 +301 0 FR940425-2-00080 0 +301 0 FR940425-2-00081 0 +301 0 FR940429-0-00128 0 +301 0 FR940503-2-00145 0 +301 0 FR940503-2-00146 0 +301 0 FR940503-2-00147 0 +301 0 FR940503-2-00165 0 +301 0 FR940503-2-00169 0 +301 0 FR940503-2-00170 0 +301 0 FR940511-0-00066 0 +301 0 FR940511-2-00139 0 +301 0 FR940511-2-00206 0 +301 0 FR940513-2-00097 0 +301 0 FR940513-2-00103 0 +301 0 FR940516-2-00139 0 +301 0 FR940525-2-00052 0 +301 0 FR940525-2-00068 0 +301 0 FR940526-2-00033 0 +301 0 FR940527-2-00068 0 +301 0 FR940527-2-00069 0 +301 0 FR940603-2-00059 0 +301 0 FR940603-2-00060 0 +301 0 FR940603-2-00158 0 +301 0 FR940610-2-00058 0 +301 0 FR940610-2-00072 0 +301 0 FR940620-1-00004 0 +301 0 FR940620-1-00005 0 +301 0 FR940620-1-00006 0 +301 0 FR940620-1-00007 0 +301 0 FR940620-1-00008 0 +301 0 FR940620-1-00009 0 +301 0 FR940622-2-00053 0 +301 0 FR940627-2-00036 0 +301 0 FR940627-2-00068 0 +301 0 FR940630-2-00168 0 +301 0 FR940630-2-00169 0 +301 0 FR940707-2-00112 0 +301 0 FR940707-2-00113 0 +301 0 FR940707-2-00114 0 +301 0 FR940711-2-00093 0 +301 0 FR940711-2-00096 0 +301 0 FR940712-2-00059 0 +301 0 FR940712-2-00065 0 +301 0 FR940713-2-00064 0 +301 0 FR940713-2-00172 0 +301 0 FR940713-2-00178 0 +301 0 FR940721-2-00075 0 +301 0 FR940727-0-00077 0 +301 0 FR940727-0-00078 0 +301 0 FR940727-0-00079 0 +301 0 FR940727-0-00091 0 +301 0 FR940727-0-00092 0 +301 0 FR940727-0-00093 0 +301 0 FR940727-0-00096 0 +301 0 FR940728-2-00151 0 +301 0 FR940804-0-00127 0 +301 0 FR940804-2-00088 0 +301 0 FR940811-0-00030 0 +301 0 FR940816-2-00057 0 +301 0 FR940825-2-00077 0 +301 0 FR940825-2-00078 0 +301 0 FR940825-2-00189 0 +301 0 FR940830-2-00003 0 +301 0 FR940902-1-00048 0 +301 0 FR940920-2-00045 0 +301 0 FR940922-2-00125 0 +301 0 FR940930-2-00057 0 +301 0 FR940930-2-00058 0 +301 0 FR940930-2-00063 0 +301 0 FR941004-1-00089 0 +301 0 FR941006-2-00013 0 +301 0 FR941006-2-00171 0 +301 0 FR941107-0-00034 0 +301 0 FR941128-2-00187 0 +301 0 FR941206-1-00134 0 +301 0 FR941221-2-00127 0 +301 0 FR941221-2-00130 0 +301 0 FR941221-2-00131 0 +301 0 FR941230-2-00127 0 +301 0 FR941230-2-00137 0 +301 0 FR941230-2-00138 0 +301 0 FR941230-2-00139 0 +301 0 FR941230-2-00150 0 +301 0 FT911-1237 0 +301 0 FT911-1697 0 +301 0 FT911-1821 0 +301 0 FT911-2267 0 +301 0 FT911-2671 0 +301 0 FT911-2685 0 +301 0 FT911-2704 0 +301 0 FT911-2706 0 +301 0 FT911-3036 0 +301 0 FT911-3105 0 +301 0 FT911-3453 0 +301 0 FT911-4494 0 +301 0 FT911-456 0 +301 0 FT911-4634 0 +301 0 FT911-4747 0 +301 0 FT911-5227 0 +301 0 FT911-629 0 +301 0 FT911-71 0 +301 0 FT921-10107 0 +301 0 FT921-10162 1 +301 0 FT921-10163 0 +301 0 FT921-10280 1 +301 0 FT921-10350 0 +301 0 FT921-10427 0 +301 0 FT921-10848 0 +301 0 FT921-11079 0 +301 0 FT921-11686 0 +301 0 FT921-12538 0 +301 0 FT921-1349 0 +301 0 FT921-13664 0 +301 0 FT921-14967 0 +301 0 FT921-15491 0 +301 0 FT921-16129 0 +301 0 FT921-16130 0 +301 0 FT921-1614 0 +301 0 FT921-1844 0 +301 0 FT921-2590 0 +301 0 FT921-3256 0 +301 0 FT921-4090 0 +301 0 FT921-4265 0 +301 0 FT921-4322 0 +301 0 FT921-5503 0 +301 0 FT921-6487 0 +301 0 FT921-6506 0 +301 0 FT921-6865 0 +301 0 FT921-6986 0 +301 0 FT921-6988 0 +301 0 FT921-7663 0 +301 0 FT921-8089 0 +301 0 FT921-8188 0 +301 0 FT921-861 0 +301 0 FT922-10933 0 +301 0 FT922-11540 0 +301 0 FT922-13596 1 +301 0 FT922-14858 0 +301 0 FT922-14992 0 +301 0 FT922-15159 0 +301 0 FT922-15176 0 +301 0 FT922-3844 0 +301 0 FT922-4774 0 +301 0 FT922-4887 0 +301 0 FT922-5041 0 +301 0 FT922-565 0 +301 0 FT922-616 0 +301 0 FT922-7190 0 +301 0 FT922-790 0 +301 0 FT922-8144 0 +301 0 FT922-8257 0 +301 0 FT922-8731 0 +301 0 FT922-9654 0 +301 0 FT923-10224 0 +301 0 FT923-10456 0 +301 0 FT923-10584 0 +301 0 FT923-11086 0 +301 0 FT923-11460 0 +301 0 FT923-11560 0 +301 0 FT923-11687 0 +301 0 FT923-11785 0 +301 0 FT923-12102 0 +301 0 FT923-12278 0 +301 0 FT923-13103 0 +301 0 FT923-1313 0 +301 0 FT923-14709 1 +301 0 FT923-2038 0 +301 0 FT923-2301 0 +301 0 FT923-2345 0 +301 0 FT923-2348 0 +301 0 FT923-3034 1 +301 0 FT923-332 0 +301 0 FT923-3617 0 +301 0 FT923-365 1 +301 0 FT923-4083 0 +301 0 FT923-466 0 +301 0 FT923-5301 0 +301 0 FT923-5751 0 +301 0 FT923-7842 0 +301 0 FT923-7884 0 +301 0 FT923-8084 0 +301 0 FT924-10092 0 +301 0 FT924-10320 0 +301 0 FT924-10713 0 +301 0 FT924-10861 0 +301 0 FT924-11258 0 +301 0 FT924-11339 1 +301 0 FT924-11606 0 +301 0 FT924-1186 0 +301 0 FT924-11989 0 +301 0 FT924-12138 0 +301 0 FT924-12220 0 +301 0 FT924-13611 1 +301 0 FT924-227 0 +301 0 FT924-2736 0 +301 0 FT924-2822 0 +301 0 FT924-2857 0 +301 0 FT924-3498 0 +301 0 FT924-4782 1 +301 0 FT924-5359 0 +301 0 FT924-6421 0 +301 0 FT924-6543 0 +301 0 FT924-6677 0 +301 0 FT924-9271 0 +301 0 FT924-949 0 +301 0 FT924-9745 0 +301 0 FT931-10356 0 +301 0 FT931-1053 0 +301 0 FT931-11647 0 +301 0 FT931-11843 0 +301 0 FT931-11924 0 +301 0 FT931-13292 0 +301 0 FT931-14697 1 +301 0 FT931-16394 0 +301 0 FT931-16398 0 +301 0 FT931-2175 0 +301 0 FT931-2379 0 +301 0 FT931-2401 0 +301 0 FT931-249 0 +301 0 FT931-3563 1 +301 0 FT931-3941 1 +301 0 FT931-4089 0 +301 0 FT931-4165 0 +301 0 FT931-4939 0 +301 0 FT931-4977 0 +301 0 FT931-5072 0 +301 0 FT931-6121 0 +301 0 FT931-6235 0 +301 0 FT931-682 0 +301 0 FT931-7337 0 +301 0 FT931-7529 0 +301 0 FT931-7536 0 +301 0 FT931-7881 0 +301 0 FT931-8991 0 +301 0 FT931-9181 0 +301 0 FT931-9535 0 +301 0 FT931-9665 0 +301 0 FT931-9667 0 +301 0 FT931-9798 0 +301 0 FT932-1131 0 +301 0 FT932-11505 0 +301 0 FT932-12261 0 +301 0 FT932-12610 0 +301 0 FT932-13676 0 +301 0 FT932-14690 0 +301 0 FT932-2315 0 +301 0 FT932-2874 0 +301 0 FT932-3130 1 +301 0 FT932-3286 0 +301 0 FT932-3322 0 +301 0 FT932-3329 0 +301 0 FT932-3331 0 +301 0 FT932-3336 0 +301 0 FT932-3338 0 +301 0 FT932-41 0 +301 0 FT932-4538 0 +301 0 FT932-4950 0 +301 0 FT932-4965 1 +301 0 FT932-5074 0 +301 0 FT932-5376 1 +301 0 FT932-5377 1 +301 0 FT932-5629 0 +301 0 FT932-5672 0 +301 0 FT932-6233 0 +301 0 FT932-6340 0 +301 0 FT932-6347 0 +301 0 FT932-7056 1 +301 0 FT932-7266 0 +301 0 FT932-7295 0 +301 0 FT932-8233 0 +301 0 FT933-10064 0 +301 0 FT933-11054 0 +301 0 FT933-11067 0 +301 0 FT933-11804 1 +301 0 FT933-12030 0 +301 0 FT933-1329 0 +301 0 FT933-1331 0 +301 0 FT933-1338 0 +301 0 FT933-13408 0 +301 0 FT933-13528 0 +301 0 FT933-15522 0 +301 0 FT933-15581 0 +301 0 FT933-15697 0 +301 0 FT933-1600 0 +301 0 FT933-16366 0 +301 0 FT933-16962 0 +301 0 FT933-17008 1 +301 0 FT933-1718 0 +301 0 FT933-2139 0 +301 0 FT933-2224 1 +301 0 FT933-279 0 +301 0 FT933-4677 0 +301 0 FT933-550 0 +301 0 FT933-582 0 +301 0 FT933-6786 0 +301 0 FT933-6924 0 +301 0 FT933-6966 0 +301 0 FT933-6971 0 +301 0 FT933-7993 0 +301 0 FT933-8067 0 +301 0 FT934-10491 1 +301 0 FT934-10543 0 +301 0 FT934-10783 0 +301 0 FT934-11015 0 +301 0 FT934-11658 0 +301 0 FT934-11945 0 +301 0 FT934-12578 0 +301 0 FT934-13302 0 +301 0 FT934-14820 0 +301 0 FT934-16551 0 +301 0 FT934-17146 0 +301 0 FT934-2267 0 +301 0 FT934-2699 0 +301 0 FT934-3452 0 +301 0 FT934-4154 0 +301 0 FT934-4340 0 +301 0 FT934-4582 0 +301 0 FT934-5231 0 +301 0 FT934-5726 0 +301 0 FT934-5891 0 +301 0 FT934-6874 0 +301 0 FT934-7013 0 +301 0 FT934-7093 0 +301 0 FT934-7094 0 +301 0 FT934-7631 0 +301 0 FT934-7660 0 +301 0 FT934-8411 0 +301 0 FT934-8545 0 +301 0 FT934-8632 0 +301 0 FT934-8633 0 +301 0 FT934-8640 0 +301 0 FT941-10546 0 +301 0 FT941-10611 1 +301 0 FT941-11262 0 +301 0 FT941-11279 0 +301 0 FT941-11449 0 +301 0 FT941-11505 0 +301 0 FT941-12402 0 +301 0 FT941-12805 0 +301 0 FT941-13151 1 +301 0 FT941-13349 0 +301 0 FT941-14742 0 +301 0 FT941-14810 0 +301 0 FT941-15027 0 +301 0 FT941-15378 0 +301 0 FT941-15631 0 +301 0 FT941-1682 0 +301 0 FT941-16929 0 +301 0 FT941-17064 0 +301 0 FT941-2244 0 +301 0 FT941-3237 1 +301 0 FT941-4259 0 +301 0 FT941-5289 0 +301 0 FT941-5453 1 +301 0 FT941-8491 0 +301 0 FT941-8966 0 +301 0 FT941-9876 0 +301 0 FT942-10163 0 +301 0 FT942-10977 0 +301 0 FT942-11067 0 +301 0 FT942-11396 0 +301 0 FT942-12197 0 +301 0 FT942-13293 0 +301 0 FT942-13766 0 +301 0 FT942-14060 0 +301 0 FT942-1417 0 +301 0 FT942-14542 0 +301 0 FT942-14609 0 +301 0 FT942-14967 0 +301 0 FT942-15220 0 +301 0 FT942-16403 0 +301 0 FT942-17001 1 +301 0 FT942-17066 0 +301 0 FT942-1711 0 +301 0 FT942-1715 0 +301 0 FT942-187 0 +301 0 FT942-2876 0 +301 0 FT942-2882 0 +301 0 FT942-3474 0 +301 0 FT942-3714 0 +301 0 FT942-4368 0 +301 0 FT942-5157 0 +301 0 FT942-5274 0 +301 0 FT942-5466 0 +301 0 FT942-6404 0 +301 0 FT942-6526 0 +301 0 FT942-7117 0 +301 0 FT942-7322 0 +301 0 FT942-7335 0 +301 0 FT942-7403 0 +301 0 FT942-792 1 +301 0 FT942-852 0 +301 0 FT942-8529 0 +301 0 FT942-8530 0 +301 0 FT942-8808 0 +301 0 FT942-885 0 +301 0 FT942-933 0 +301 0 FT942-9466 0 +301 0 FT942-9490 0 +301 0 FT942-9715 0 +301 0 FT943-11739 0 +301 0 FT943-12965 0 +301 0 FT943-13315 0 +301 0 FT943-13339 0 +301 0 FT943-14383 0 +301 0 FT943-15429 0 +301 0 FT943-15437 0 +301 0 FT943-15910 0 +301 0 FT943-16238 4 +301 0 FT943-16477 4 +301 0 FT943-16618 0 +301 0 FT943-2156 0 +301 0 FT943-2588 0 +301 0 FT943-295 0 +301 0 FT943-3533 2 +301 0 FT943-3953 0 +301 0 FT943-4417 0 +301 0 FT943-505 0 +301 0 FT943-5051 0 +301 0 FT943-5111 0 +301 0 FT943-5179 0 +301 0 FT943-5341 0 +301 0 FT943-5355 0 +301 0 FT943-5577 0 +301 0 FT943-6423 0 +301 0 FT943-726 0 +301 0 FT943-8128 0 +301 0 FT943-8527 0 +301 0 FT943-8670 0 +301 0 FT943-8942 0 +301 0 FT943-8961 0 +301 0 FT944-10136 0 +301 0 FT944-10634 0 +301 0 FT944-10635 2 +301 0 FT944-10673 0 +301 0 FT944-10675 0 +301 0 FT944-10676 0 +301 0 FT944-10779 0 +301 0 FT944-11113 0 +301 0 FT944-11625 0 +301 0 FT944-12104 0 +301 0 FT944-12173 1 +301 0 FT944-12949 0 +301 0 FT944-1350 0 +301 0 FT944-14183 0 +301 0 FT944-14184 0 +301 0 FT944-15443 0 +301 0 FT944-15444 0 +301 0 FT944-1692 0 +301 0 FT944-1808 1 +301 0 FT944-18166 0 +301 0 FT944-18167 0 +301 0 FT944-18184 0 +301 0 FT944-2231 1 +301 0 FT944-2497 0 +301 0 FT944-2600 0 +301 0 FT944-3492 0 +301 0 FT944-4020 0 +301 0 FT944-4116 0 +301 0 FT944-4735 0 +301 0 FT944-4901 0 +301 0 FT944-5537 0 +301 0 FT944-5679 0 +301 0 FT944-5749 0 +301 0 FT944-7669 1 +301 0 FT944-7867 0 +301 0 FT944-8161 0 +301 0 FT944-8297 1 +301 0 LA010290-0076 0 +301 0 LA010590-0084 1 +301 0 LA011290-0184 0 +301 0 LA011390-0046 1 +301 0 LA011390-0156 1 +301 0 LA011490-0115 1 +301 0 LA011790-0128 1 +301 0 LA011890-0125 1 +301 0 LA011990-0102 1 +301 0 LA012090-0101 0 +301 0 LA012190-0120 1 +301 0 LA012290-0053 0 +301 0 LA012690-0169 1 +301 0 LA012890-0073 1 +301 0 LA013190-0012 0 +301 0 LA021089-0177 0 +301 0 LA021590-0204 1 +301 0 LA021690-0049 1 +301 0 LA021790-0127 0 +301 0 LA022590-0191 1 +301 0 LA022689-0075 0 +301 0 LA022790-0089 1 +301 0 LA030290-0106 0 +301 0 LA030490-0017 0 +301 0 LA030490-0071 0 +301 0 LA031190-0216 0 +301 0 LA031289-0074 0 +301 0 LA031490-0140 0 +301 0 LA031690-0077 0 +301 0 LA032090-0091 0 +301 0 LA032189-0097 0 +301 0 LA032790-0103 1 +301 0 LA040689-0155 0 +301 0 LA041189-0055 0 +301 0 LA041389-0038 1 +301 0 LA041390-0018 0 +301 0 LA041589-0014 0 +301 0 LA041689-0150 1 +301 0 LA041689-0190 0 +301 0 LA041690-0050 0 +301 0 LA041690-0051 0 +301 0 LA041789-0008 0 +301 0 LA041790-0054 0 +301 0 LA041790-0055 0 +301 0 LA041890-0075 1 +301 0 LA041989-0027 0 +301 0 LA042190-0078 0 +301 0 LA042289-0040 0 +301 0 LA042390-0099 0 +301 0 LA042690-0169 0 +301 0 LA042890-0015 0 +301 0 LA042890-0151 0 +301 0 LA042989-0116 0 +301 0 LA043089-0169 0 +301 0 LA050189-0063 0 +301 0 LA050489-0093 0 +301 0 LA050590-0027 0 +301 0 LA050590-0048 0 +301 0 LA050690-0134 1 +301 0 LA050690-0145 0 +301 0 LA050690-0149 0 +301 0 LA050789-0006 1 +301 0 LA050789-0007 1 +301 0 LA050990-0077 0 +301 0 LA050990-0078 0 +301 0 LA050990-0116 0 +301 0 LA051190-0064 0 +301 0 LA051389-0039 1 +301 0 LA051390-0175 1 +301 0 LA051590-0064 0 +301 0 LA051690-0108 1 +301 0 LA052090-0088 0 +301 0 LA052090-0143 1 +301 0 LA052189-0123 0 +301 0 LA052190-0021 0 +301 0 LA052190-0064 1 +301 0 LA052289-0047 0 +301 0 LA052490-0139 0 +301 0 LA052690-0037 0 +301 0 LA052690-0142 0 +301 0 LA052890-0046 0 +301 0 LA052990-0018 0 +301 0 LA053089-0075 0 +301 0 LA053190-0175 0 +301 0 LA060489-0196 0 +301 0 LA060490-0021 0 +301 0 LA060490-0122 0 +301 0 LA060590-0010 0 +301 0 LA060790-0159 0 +301 0 LA060990-0077 0 +301 0 LA061189-0173 0 +301 0 LA061190-0085 0 +301 0 LA061190-0112 0 +301 0 LA061289-0051 0 +301 0 LA061290-0117 0 +301 0 LA061389-0060 0 +301 0 LA061390-0056 0 +301 0 LA061490-0229 0 +301 0 LA061590-0010 0 +301 0 LA061690-0021 0 +301 0 LA061690-0030 0 +301 0 LA061789-0027 0 +301 0 LA061789-0028 0 +301 0 LA061790-0205 0 +301 0 LA062090-0094 0 +301 0 LA062189-0012 0 +301 0 LA062189-0052 0 +301 0 LA062189-0067 0 +301 0 LA062390-0041 0 +301 0 LA062690-0041 0 +301 0 LA062890-0206 0 +301 0 LA062989-0196 1 +301 0 LA063089-0061 1 +301 0 LA070289-0147 0 +301 0 LA070289-0171 1 +301 0 LA070290-0003 0 +301 0 LA070290-0051 0 +301 0 LA070590-0016 0 +301 0 LA070590-0097 0 +301 0 LA070689-0122 1 +301 0 LA070690-0095 0 +301 0 LA070790-0061 0 +301 0 LA070890-0079 0 +301 0 LA070890-0080 0 +301 0 LA071089-0065 0 +301 0 LA071190-0028 0 +301 0 LA071290-0123 1 +301 0 LA071489-0020 1 +301 0 LA071490-0024 0 +301 0 LA071690-0047 1 +301 0 LA071889-0026 0 +301 0 LA071990-0150 0 +301 0 LA071990-0165 0 +301 0 LA072090-0146 0 +301 0 LA072090-0147 0 +301 0 LA072490-0033 0 +301 0 LA072590-0115 0 +301 0 LA072689-0016 0 +301 0 LA072789-0050 0 +301 0 LA072890-0052 0 +301 0 LA073189-0043 0 +301 0 LA080489-0020 0 +301 0 LA080590-0195 0 +301 0 LA080689-0093 0 +301 0 LA080889-0098 0 +301 0 LA080890-0044 0 +301 0 LA080989-0129 0 +301 0 LA080990-0216 0 +301 0 LA081089-0167 1 +301 0 LA081190-0051 0 +301 0 LA081190-0108 0 +301 0 LA081589-0042 0 +301 0 LA081690-0102 0 +301 0 LA081789-0093 1 +301 0 LA081790-0083 0 +301 0 LA081889-0147 1 +301 0 LA081989-0048 0 +301 0 LA081990-0158 0 +301 0 LA082089-0163 0 +301 0 LA082190-0014 0 +301 0 LA082190-0015 0 +301 0 LA082389-0028 0 +301 0 LA082389-0039 1 +301 0 LA082390-0176 0 +301 0 LA082489-0035 0 +301 0 LA082589-0079 1 +301 0 LA082589-0090 1 +301 0 LA082590-0019 0 +301 0 LA082689-0044 1 +301 0 LA082689-0054 1 +301 0 LA082789-0018 1 +301 0 LA082790-0022 1 +301 0 LA082889-0047 1 +301 0 LA082889-0056 1 +301 0 LA082989-0074 0 +301 0 LA083089-0017 1 +301 0 LA083089-0069 1 +301 0 LA083089-0072 1 +301 0 LA090189-0018 0 +301 0 LA090389-0097 0 +301 0 LA090389-0100 0 +301 0 LA090689-0015 0 +301 0 LA090689-0125 1 +301 0 LA090689-0130 1 +301 0 LA090690-0234 0 +301 0 LA090989-0075 1 +301 0 LA091089-0170 0 +301 0 LA091089-0172 0 +301 0 LA091089-0187 0 +301 0 LA091090-0038 0 +301 0 LA091189-0110 1 +301 0 LA091190-0096 0 +301 0 LA091190-0102 0 +301 0 LA091289-0135 1 +301 0 LA091289-0136 1 +301 0 LA091389-0053 1 +301 0 LA091390-0046 0 +301 0 LA091589-0045 1 +301 0 LA091689-0028 0 +301 0 LA092089-0143 1 +301 0 LA092090-0092 0 +301 0 LA092290-0094 0 +301 0 LA092489-0121 0 +301 0 LA092590-0019 0 +301 0 LA092789-0047 0 +301 0 LA092790-0128 0 +301 0 LA092989-0108 1 +301 0 LA100189-0205 0 +301 0 LA100289-0104 1 +301 0 LA100290-0067 0 +301 0 LA100390-0069 0 +301 0 LA100589-0136 1 +301 0 LA100789-0127 0 +301 0 LA100790-0068 0 +301 0 LA100989-0008 0 +301 0 LA101289-0126 1 +301 0 LA101389-0091 0 +301 0 LA101390-0083 0 +301 0 LA101589-0169 0 +301 0 LA101589-0174 1 +301 0 LA101590-0071 0 +301 0 LA101689-0002 0 +301 0 LA101789-0155 1 +301 0 LA102089-0025 1 +301 0 LA102289-0170 1 +301 0 LA102290-0116 0 +301 0 LA110990-0184 0 +301 0 LA112089-0024 0 +301 0 LA112489-0069 1 +301 0 LA112489-0141 0 +301 0 LA112489-0142 1 +301 0 LA112490-0089 0 +301 0 LA121089-0089 0 +301 0 LA121289-0096 1 +301 0 LA121389-0124 1 +301 0 LA121490-0027 1 +301 0 LA121589-0007 1 +301 0 LA121589-0184 0 +301 0 LA121689-0077 0 +301 0 LA121890-0057 0 +301 0 LA121890-0079 0 +301 0 LA121890-0086 0 +301 0 LA121990-0123 1 +301 0 LA122089-0109 0 +301 0 LA122389-0069 1 +301 0 LA122789-0009 0 +301 0 LA122889-0124 0 +301 0 LA123090-0148 0 +302 0 CR93E-10071 0 +302 0 CR93E-10276 0 +302 0 CR93E-10279 0 +302 0 CR93E-10462 0 +302 0 CR93E-10606 0 +302 0 CR93E-10799 0 +302 0 CR93E-11100 0 +302 0 CR93E-1648 0 +302 0 CR93E-1838 0 +302 0 CR93E-2180 3 +302 0 CR93E-2225 0 +302 0 CR93E-2236 0 +302 0 CR93E-2512 0 +302 0 CR93E-2563 0 +302 0 CR93E-2650 3 +302 0 CR93E-2849 0 +302 0 CR93E-307 0 +302 0 CR93E-3096 3 +302 0 CR93E-3616 0 +302 0 CR93E-3822 3 +302 0 CR93E-4208 0 +302 0 CR93E-4209 0 +302 0 CR93E-4517 0 +302 0 CR93E-4941 0 +302 0 CR93E-5211 0 +302 0 CR93E-5666 3 +302 0 CR93E-5775 3 +302 0 CR93E-5895 0 +302 0 CR93E-5954 0 +302 0 CR93E-6191 0 +302 0 CR93E-6321 0 +302 0 CR93E-6675 0 +302 0 CR93E-6901 3 +302 0 CR93E-7034 3 +302 0 CR93E-7062 0 +302 0 CR93E-7403 0 +302 0 CR93E-7619 0 +302 0 CR93E-7678 0 +302 0 CR93E-8012 0 +302 0 CR93E-8421 0 +302 0 CR93E-8424 0 +302 0 CR93E-8491 0 +302 0 CR93E-8701 0 +302 0 CR93E-8836 0 +302 0 CR93E-9545 3 +302 0 CR93E-9618 0 +302 0 CR93H-10042 0 +302 0 CR93H-10104 0 +302 0 CR93H-10242 0 +302 0 CR93H-10256 0 +302 0 CR93H-10308 0 +302 0 CR93H-10374 0 +302 0 CR93H-10402 0 +302 0 CR93H-10601 0 +302 0 CR93H-10602 0 +302 0 CR93H-10681 0 +302 0 CR93H-10921 0 +302 0 CR93H-1097 0 +302 0 CR93H-10989 0 +302 0 CR93H-11033 0 +302 0 CR93H-11034 0 +302 0 CR93H-11119 0 +302 0 CR93H-11521 0 +302 0 CR93H-11586 0 +302 0 CR93H-1159 0 +302 0 CR93H-11806 0 +302 0 CR93H-11894 0 +302 0 CR93H-11998 0 +302 0 CR93H-12017 0 +302 0 CR93H-12150 0 +302 0 CR93H-12168 0 +302 0 CR93H-12181 0 +302 0 CR93H-12217 0 +302 0 CR93H-12224 0 +302 0 CR93H-12498 0 +302 0 CR93H-12820 0 +302 0 CR93H-12830 0 +302 0 CR93H-12874 0 +302 0 CR93H-1298 0 +302 0 CR93H-12983 0 +302 0 CR93H-12988 0 +302 0 CR93H-13167 0 +302 0 CR93H-13205 0 +302 0 CR93H-13232 0 +302 0 CR93H-13263 0 +302 0 CR93H-13335 0 +302 0 CR93H-13506 0 +302 0 CR93H-13521 0 +302 0 CR93H-13595 0 +302 0 CR93H-13600 3 +302 0 CR93H-13615 0 +302 0 CR93H-13680 0 +302 0 CR93H-13927 0 +302 0 CR93H-14046 0 +302 0 CR93H-14072 0 +302 0 CR93H-14128 0 +302 0 CR93H-14130 0 +302 0 CR93H-14306 0 +302 0 CR93H-14325 0 +302 0 CR93H-14388 0 +302 0 CR93H-14392 0 +302 0 CR93H-14469 0 +302 0 CR93H-14591 0 +302 0 CR93H-14791 0 +302 0 CR93H-15024 0 +302 0 CR93H-15105 0 +302 0 CR93H-15119 0 +302 0 CR93H-15121 3 +302 0 CR93H-1532 0 +302 0 CR93H-15405 0 +302 0 CR93H-15424 0 +302 0 CR93H-15453 0 +302 0 CR93H-15477 0 +302 0 CR93H-15587 0 +302 0 CR93H-15608 0 +302 0 CR93H-15615 0 +302 0 CR93H-15727 3 +302 0 CR93H-15875 0 +302 0 CR93H-15950 0 +302 0 CR93H-16077 0 +302 0 CR93H-16128 0 +302 0 CR93H-16369 0 +302 0 CR93H-1639 0 +302 0 CR93H-1712 0 +302 0 CR93H-1769 0 +302 0 CR93H-185 0 +302 0 CR93H-2429 0 +302 0 CR93H-2431 0 +302 0 CR93H-2707 0 +302 0 CR93H-3144 0 +302 0 CR93H-3262 0 +302 0 CR93H-3295 0 +302 0 CR93H-3444 0 +302 0 CR93H-3459 0 +302 0 CR93H-3813 0 +302 0 CR93H-4042 0 +302 0 CR93H-416 0 +302 0 CR93H-4420 0 +302 0 CR93H-4489 0 +302 0 CR93H-4586 0 +302 0 CR93H-4635 0 +302 0 CR93H-4771 0 +302 0 CR93H-4879 0 +302 0 CR93H-4889 0 +302 0 CR93H-4922 0 +302 0 CR93H-5017 0 +302 0 CR93H-5053 0 +302 0 CR93H-5121 0 +302 0 CR93H-5189 0 +302 0 CR93H-5255 0 +302 0 CR93H-5554 0 +302 0 CR93H-5568 0 +302 0 CR93H-56 0 +302 0 CR93H-6221 0 +302 0 CR93H-6347 0 +302 0 CR93H-6422 0 +302 0 CR93H-6567 0 +302 0 CR93H-6621 0 +302 0 CR93H-6754 0 +302 0 CR93H-6912 0 +302 0 CR93H-7012 0 +302 0 CR93H-7013 0 +302 0 CR93H-7055 0 +302 0 CR93H-735 0 +302 0 CR93H-742 0 +302 0 CR93H-7554 0 +302 0 CR93H-7557 0 +302 0 CR93H-7870 0 +302 0 CR93H-7875 0 +302 0 CR93H-8042 0 +302 0 CR93H-8080 0 +302 0 CR93H-8122 0 +302 0 CR93H-8245 0 +302 0 CR93H-8248 0 +302 0 CR93H-8249 0 +302 0 CR93H-8460 0 +302 0 CR93H-8461 0 +302 0 CR93H-8590 0 +302 0 CR93H-8741 0 +302 0 CR93H-8789 0 +302 0 CR93H-8928 0 +302 0 CR93H-9009 0 +302 0 CR93H-9350 0 +302 0 CR93H-9427 0 +302 0 CR93H-9548 0 +302 0 CR93H-955 0 +302 0 CR93H-9576 0 +302 0 FBIS3-10615 0 +302 0 FBIS3-10855 0 +302 0 FBIS3-11418 0 +302 0 FBIS3-14832 0 +302 0 FBIS3-20548 3 +302 0 FBIS3-20810 0 +302 0 FBIS3-21356 0 +302 0 FBIS3-21404 0 +302 0 FBIS3-22119 0 +302 0 FBIS3-22470 0 +302 0 FBIS3-22471 0 +302 0 FBIS3-22476 0 +302 0 FBIS3-22477 0 +302 0 FBIS3-22480 0 +302 0 FBIS3-22482 0 +302 0 FBIS3-22486 0 +302 0 FBIS3-22487 0 +302 0 FBIS3-22508 0 +302 0 FBIS3-22523 0 +302 0 FBIS3-22525 0 +302 0 FBIS3-22535 0 +302 0 FBIS3-22539 3 +302 0 FBIS3-22545 0 +302 0 FBIS3-22547 0 +302 0 FBIS3-22559 0 +302 0 FBIS3-22560 3 +302 0 FBIS3-22570 0 +302 0 FBIS3-22581 0 +302 0 FBIS3-22589 3 +302 0 FBIS3-22590 0 +302 0 FBIS3-22591 0 +302 0 FBIS3-22592 0 +302 0 FBIS3-22593 0 +302 0 FBIS3-22597 0 +302 0 FBIS3-22598 0 +302 0 FBIS3-22600 0 +302 0 FBIS3-22633 0 +302 0 FBIS3-22642 0 +302 0 FBIS3-22647 0 +302 0 FBIS3-22679 0 +302 0 FBIS3-22680 0 +302 0 FBIS3-22681 0 +302 0 FBIS3-22693 0 +302 0 FBIS3-22695 0 +302 0 FBIS3-22696 0 +302 0 FBIS3-22697 0 +302 0 FBIS3-22698 0 +302 0 FBIS3-22699 0 +302 0 FBIS3-22700 0 +302 0 FBIS3-22702 0 +302 0 FBIS3-22706 0 +302 0 FBIS3-23 0 +302 0 FBIS3-23561 0 +302 0 FBIS3-23823 0 +302 0 FBIS3-23945 0 +302 0 FBIS3-23947 0 +302 0 FBIS3-24469 0 +302 0 FBIS3-24678 0 +302 0 FBIS3-2516 0 +302 0 FBIS3-26593 3 +302 0 FBIS3-27468 0 +302 0 FBIS3-2798 0 +302 0 FBIS3-28911 0 +302 0 FBIS3-29180 0 +302 0 FBIS3-30086 0 +302 0 FBIS3-34497 0 +302 0 FBIS3-3565 0 +302 0 FBIS3-3580 0 +302 0 FBIS3-36078 0 +302 0 FBIS3-37944 0 +302 0 FBIS3-37947 0 +302 0 FBIS3-39365 0 +302 0 FBIS3-40190 0 +302 0 FBIS3-41666 0 +302 0 FBIS3-41671 0 +302 0 FBIS3-41672 3 +302 0 FBIS3-41673 0 +302 0 FBIS3-41676 0 +302 0 FBIS3-41681 0 +302 0 FBIS3-41698 0 +302 0 FBIS3-41710 0 +302 0 FBIS3-41713 0 +302 0 FBIS3-41724 3 +302 0 FBIS3-41734 0 +302 0 FBIS3-41739 0 +302 0 FBIS3-41761 0 +302 0 FBIS3-41790 0 +302 0 FBIS3-41809 0 +302 0 FBIS3-41815 0 +302 0 FBIS3-4209 0 +302 0 FBIS3-42399 0 +302 0 FBIS3-42469 0 +302 0 FBIS3-42726 0 +302 0 FBIS3-43132 0 +302 0 FBIS3-43186 0 +302 0 FBIS3-43595 0 +302 0 FBIS3-43781 0 +302 0 FBIS3-44530 0 +302 0 FBIS3-44712 0 +302 0 FBIS3-45822 0 +302 0 FBIS3-46348 0 +302 0 FBIS3-46614 0 +302 0 FBIS3-5103 0 +302 0 FBIS3-58 0 +302 0 FBIS3-60336 0 +302 0 FBIS3-60342 0 +302 0 FBIS3-60401 0 +302 0 FBIS3-60403 3 +302 0 FBIS3-60404 3 +302 0 FBIS3-60405 3 +302 0 FBIS3-60419 3 +302 0 FBIS3-60422 0 +302 0 FBIS3-60440 0 +302 0 FBIS3-60444 0 +302 0 FBIS3-60448 0 +302 0 FBIS3-60450 3 +302 0 FBIS3-60454 0 +302 0 FBIS3-60462 0 +302 0 FBIS3-60466 0 +302 0 FBIS3-60503 3 +302 0 FBIS3-60510 3 +302 0 FBIS3-60513 0 +302 0 FBIS3-60514 0 +302 0 FBIS3-60529 0 +302 0 FBIS3-60546 0 +302 0 FBIS3-60553 0 +302 0 FBIS3-60559 0 +302 0 FBIS3-60560 0 +302 0 FBIS3-60561 3 +302 0 FBIS3-60562 3 +302 0 FBIS3-60563 0 +302 0 FBIS3-60564 0 +302 0 FBIS3-60565 0 +302 0 FBIS3-60575 0 +302 0 FBIS3-61373 3 +302 0 FBIS3-6884 0 +302 0 FBIS3-9904 3 +302 0 FBIS4-10721 0 +302 0 FBIS4-13889 0 +302 0 FBIS4-1627 0 +302 0 FBIS4-16647 0 +302 0 FBIS4-1860 0 +302 0 FBIS4-1866 0 +302 0 FBIS4-19 0 +302 0 FBIS4-19733 0 +302 0 FBIS4-20472 0 +302 0 FBIS4-20504 0 +302 0 FBIS4-20697 0 +302 0 FBIS4-2128 0 +302 0 FBIS4-2204 0 +302 0 FBIS4-22716 3 +302 0 FBIS4-22779 0 +302 0 FBIS4-22945 0 +302 0 FBIS4-23089 0 +302 0 FBIS4-23131 0 +302 0 FBIS4-2439 0 +302 0 FBIS4-24438 3 +302 0 FBIS4-26718 0 +302 0 FBIS4-27941 0 +302 0 FBIS4-2880 3 +302 0 FBIS4-29 0 +302 0 FBIS4-30023 0 +302 0 FBIS4-30637 3 +302 0 FBIS4-31787 0 +302 0 FBIS4-32883 0 +302 0 FBIS4-33063 3 +302 0 FBIS4-33295 0 +302 0 FBIS4-33435 3 +302 0 FBIS4-33740 0 +302 0 FBIS4-34379 0 +302 0 FBIS4-38133 3 +302 0 FBIS4-40426 0 +302 0 FBIS4-4067 0 +302 0 FBIS4-42 0 +302 0 FBIS4-4241 3 +302 0 FBIS4-43829 0 +302 0 FBIS4-43830 0 +302 0 FBIS4-43893 0 +302 0 FBIS4-45490 0 +302 0 FBIS4-45613 3 +302 0 FBIS4-45832 0 +302 0 FBIS4-45833 0 +302 0 FBIS4-45834 0 +302 0 FBIS4-45842 0 +302 0 FBIS4-45844 3 +302 0 FBIS4-45884 0 +302 0 FBIS4-46469 0 +302 0 FBIS4-46649 0 +302 0 FBIS4-46923 0 +302 0 FBIS4-47552 0 +302 0 FBIS4-47588 0 +302 0 FBIS4-49021 0 +302 0 FBIS4-49245 0 +302 0 FBIS4-50133 0 +302 0 FBIS4-50706 0 +302 0 FBIS4-50850 0 +302 0 FBIS4-50959 0 +302 0 FBIS4-52090 0 +302 0 FBIS4-5325 3 +302 0 FBIS4-55803 0 +302 0 FBIS4-57220 3 +302 0 FBIS4-58281 0 +302 0 FBIS4-60762 0 +302 0 FBIS4-61029 0 +302 0 FBIS4-62223 0 +302 0 FBIS4-66030 0 +302 0 FBIS4-66069 0 +302 0 FBIS4-66161 0 +302 0 FBIS4-66185 0 +302 0 FBIS4-67533 0 +302 0 FBIS4-67599 0 +302 0 FBIS4-67611 0 +302 0 FBIS4-67613 0 +302 0 FBIS4-67614 0 +302 0 FBIS4-67618 0 +302 0 FBIS4-67646 0 +302 0 FBIS4-67647 0 +302 0 FBIS4-67648 0 +302 0 FBIS4-67649 0 +302 0 FBIS4-67650 0 +302 0 FBIS4-67651 0 +302 0 FBIS4-67698 0 +302 0 FBIS4-67699 0 +302 0 FBIS4-67701 3 +302 0 FBIS4-67707 3 +302 0 FBIS4-67720 3 +302 0 FBIS4-68893 0 +302 0 FR940104-0-00034 0 +302 0 FR940126-2-00100 0 +302 0 FR940126-2-00101 0 +302 0 FR940126-2-00102 0 +302 0 FR940126-2-00103 0 +302 0 FR940126-2-00104 0 +302 0 FR940126-2-00105 0 +302 0 FR940126-2-00106 3 +302 0 FR940126-2-00107 0 +302 0 FR940126-2-00108 0 +302 0 FR940202-2-00112 0 +302 0 FR940202-2-00114 0 +302 0 FR940202-2-00133 0 +302 0 FR940202-2-00140 0 +302 0 FR940202-2-00143 0 +302 0 FR940203-0-00084 0 +302 0 FR940207-2-00089 3 +302 0 FR940314-1-00041 0 +302 0 FR940317-2-00076 0 +302 0 FR940404-2-00093 0 +302 0 FR940406-0-00190 0 +302 0 FR940413-2-00068 0 +302 0 FR940414-0-00029 0 +302 0 FR940419-2-00062 0 +302 0 FR940425-2-00078 3 +302 0 FR940425-2-00079 3 +302 0 FR940425-2-00080 3 +302 0 FR940425-2-00081 0 +302 0 FR940429-2-00041 0 +302 0 FR940505-2-00041 0 +302 0 FR940513-2-00003 0 +302 0 FR940513-2-00096 0 +302 0 FR940527-1-00163 0 +302 0 FR940527-2-00071 0 +302 0 FR940602-1-00023 0 +302 0 FR940602-2-00077 0 +302 0 FR940603-2-00060 3 +302 0 FR940620-2-00115 0 +302 0 FR940620-2-00116 0 +302 0 FR940620-2-00117 3 +302 0 FR940620-2-00118 0 +302 0 FR940620-2-00119 0 +302 0 FR940620-2-00120 0 +302 0 FR940620-2-00121 0 +302 0 FR940620-2-00122 0 +302 0 FR940620-2-00123 0 +302 0 FR940628-1-00016 0 +302 0 FR940628-2-00002 0 +302 0 FR940705-2-00186 0 +302 0 FR940706-2-00076 0 +302 0 FR940713-2-00061 0 +302 0 FR940713-2-00062 0 +302 0 FR940719-2-00089 0 +302 0 FR940721-2-00030 0 +302 0 FR940721-2-00045 0 +302 0 FR940721-2-00046 0 +302 0 FR940725-0-00049 0 +302 0 FR940728-2-00084 0 +302 0 FR940728-2-00089 0 +302 0 FR940804-2-00088 0 +302 0 FR940817-2-00237 0 +302 0 FR940822-0-00027 0 +302 0 FR940822-0-00067 0 +302 0 FR940825-2-00076 0 +302 0 FR940825-2-00078 0 +302 0 FR940831-2-00064 0 +302 0 FR940902-1-00048 0 +302 0 FR940922-2-00127 0 +302 0 FR940928-2-00043 0 +302 0 FR941003-2-00031 0 +302 0 FR941004-2-00099 0 +302 0 FR941006-1-00005 0 +302 0 FR941006-1-00006 0 +302 0 FR941006-1-00007 0 +302 0 FR941012-2-00078 0 +302 0 FR941013-2-00056 0 +302 0 FR941027-1-00030 0 +302 0 FR941102-1-00119 0 +302 0 FR941103-2-00086 0 +302 0 FR941107-2-00231 0 +302 0 FR941107-2-00232 0 +302 0 FR941107-2-00233 0 +302 0 FR941122-2-00060 0 +302 0 FR941130-0-00122 0 +302 0 FR941202-2-00007 0 +302 0 FR941206-1-00134 0 +302 0 FR941206-2-00055 0 +302 0 FR941213-0-00084 0 +302 0 FR941213-2-00039 0 +302 0 FT911-1088 0 +302 0 FT911-1471 0 +302 0 FT911-2081 0 +302 0 FT911-2372 0 +302 0 FT911-241 0 +302 0 FT911-2589 0 +302 0 FT911-2707 0 +302 0 FT911-2968 0 +302 0 FT911-460 0 +302 0 FT911-4947 0 +302 0 FT911-5041 0 +302 0 FT911-624 0 +302 0 FT911-679 0 +302 0 FT911-870 0 +302 0 FT921-10340 0 +302 0 FT921-10626 0 +302 0 FT921-10742 0 +302 0 FT921-10750 0 +302 0 FT921-10807 0 +302 0 FT921-11140 0 +302 0 FT921-1150 0 +302 0 FT921-1211 0 +302 0 FT921-12227 0 +302 0 FT921-12230 0 +302 0 FT921-12556 0 +302 0 FT921-13207 0 +302 0 FT921-13254 0 +302 0 FT921-13279 0 +302 0 FT921-13530 0 +302 0 FT921-14291 0 +302 0 FT921-14537 3 +302 0 FT921-14986 0 +302 0 FT921-15281 0 +302 0 FT921-15869 0 +302 0 FT921-16061 3 +302 0 FT921-16191 0 +302 0 FT921-16376 0 +302 0 FT921-2350 0 +302 0 FT921-2351 0 +302 0 FT921-3467 0 +302 0 FT921-4 0 +302 0 FT921-4035 0 +302 0 FT921-4317 0 +302 0 FT921-4540 0 +302 0 FT921-485 0 +302 0 FT921-5034 0 +302 0 FT921-5614 0 +302 0 FT921-5766 0 +302 0 FT921-5928 0 +302 0 FT921-7582 0 +302 0 FT921-7648 0 +302 0 FT921-7765 3 +302 0 FT921-7784 0 +302 0 FT921-8313 0 +302 0 FT921-8328 0 +302 0 FT921-8507 0 +302 0 FT921-9310 0 +302 0 FT921-953 0 +302 0 FT921-956 0 +302 0 FT921-9578 0 +302 0 FT922-10446 0 +302 0 FT922-11044 0 +302 0 FT922-12505 0 +302 0 FT922-12737 0 +302 0 FT922-13742 0 +302 0 FT922-14371 0 +302 0 FT922-1674 0 +302 0 FT922-1893 0 +302 0 FT922-220 0 +302 0 FT922-4529 0 +302 0 FT922-4560 0 +302 0 FT922-5004 0 +302 0 FT922-6652 0 +302 0 FT922-7819 0 +302 0 FT922-8619 0 +302 0 FT922-8779 0 +302 0 FT922-884 0 +302 0 FT922-9023 0 +302 0 FT922-9487 0 +302 0 FT922-9650 0 +302 0 FT923-10404 0 +302 0 FT923-1076 0 +302 0 FT923-11035 0 +302 0 FT923-11081 0 +302 0 FT923-11184 0 +302 0 FT923-11350 0 +302 0 FT923-11474 0 +302 0 FT923-11885 0 +302 0 FT923-12051 0 +302 0 FT923-12060 0 +302 0 FT923-12277 0 +302 0 FT923-14971 0 +302 0 FT923-15575 0 +302 0 FT923-1988 0 +302 0 FT923-2286 0 +302 0 FT923-2399 0 +302 0 FT923-3060 0 +302 0 FT923-4273 0 +302 0 FT923-5927 0 +302 0 FT923-6011 0 +302 0 FT923-6887 0 +302 0 FT923-7657 0 +302 0 FT923-8033 0 +302 0 FT923-8100 0 +302 0 FT923-8415 0 +302 0 FT923-8509 0 +302 0 FT923-8974 0 +302 0 FT924-10626 0 +302 0 FT924-10652 3 +302 0 FT924-10987 0 +302 0 FT924-11314 0 +302 0 FT924-11618 0 +302 0 FT924-1254 0 +302 0 FT924-13622 0 +302 0 FT924-14004 0 +302 0 FT924-14826 0 +302 0 FT924-15013 0 +302 0 FT924-1638 0 +302 0 FT924-1993 0 +302 0 FT924-2803 0 +302 0 FT924-2958 0 +302 0 FT924-3217 0 +302 0 FT924-3519 0 +302 0 FT924-3628 0 +302 0 FT924-4528 0 +302 0 FT924-4737 0 +302 0 FT924-5037 0 +302 0 FT924-5353 0 +302 0 FT924-5517 0 +302 0 FT924-6467 0 +302 0 FT924-7956 0 +302 0 FT924-8024 0 +302 0 FT924-8515 0 +302 0 FT924-9161 0 +302 0 FT924-9431 0 +302 0 FT931-1039 0 +302 0 FT931-11085 3 +302 0 FT931-11767 0 +302 0 FT931-11857 0 +302 0 FT931-12577 0 +302 0 FT931-12903 0 +302 0 FT931-13033 0 +302 0 FT931-13300 0 +302 0 FT931-13512 0 +302 0 FT931-14151 0 +302 0 FT931-14647 0 +302 0 FT931-15527 0 +302 0 FT931-15924 0 +302 0 FT931-16133 0 +302 0 FT931-17149 0 +302 0 FT931-2526 0 +302 0 FT931-3052 0 +302 0 FT931-3883 0 +302 0 FT931-5665 0 +302 0 FT931-5795 0 +302 0 FT931-5859 0 +302 0 FT931-652 0 +302 0 FT931-7060 3 +302 0 FT931-7525 0 +302 0 FT931-8050 0 +302 0 FT931-8993 0 +302 0 FT931-9496 0 +302 0 FT931-9886 0 +302 0 FT932-10099 0 +302 0 FT932-10160 0 +302 0 FT932-10547 0 +302 0 FT932-13227 0 +302 0 FT932-13552 0 +302 0 FT932-14090 0 +302 0 FT932-14875 0 +302 0 FT932-15013 0 +302 0 FT932-15388 0 +302 0 FT932-16160 0 +302 0 FT932-16821 0 +302 0 FT932-16878 0 +302 0 FT932-1821 0 +302 0 FT932-2282 0 +302 0 FT932-2288 0 +302 0 FT932-2515 0 +302 0 FT932-2516 0 +302 0 FT932-3794 0 +302 0 FT932-3963 0 +302 0 FT932-4292 0 +302 0 FT932-4317 0 +302 0 FT932-4441 0 +302 0 FT932-4485 3 +302 0 FT932-4585 0 +302 0 FT932-4805 0 +302 0 FT932-5288 0 +302 0 FT932-5508 0 +302 0 FT932-7262 0 +302 0 FT932-769 0 +302 0 FT932-7800 0 +302 0 FT932-7948 0 +302 0 FT932-7977 0 +302 0 FT932-9367 0 +302 0 FT932-9696 0 +302 0 FT933-11998 0 +302 0 FT933-12022 0 +302 0 FT933-1235 0 +302 0 FT933-13206 0 +302 0 FT933-13870 0 +302 0 FT933-14295 0 +302 0 FT933-14910 0 +302 0 FT933-15797 0 +302 0 FT933-15814 0 +302 0 FT933-15869 0 +302 0 FT933-16536 0 +302 0 FT933-16948 0 +302 0 FT933-2728 0 +302 0 FT933-3434 0 +302 0 FT933-3705 0 +302 0 FT933-4186 0 +302 0 FT933-4445 0 +302 0 FT933-4707 0 +302 0 FT933-528 0 +302 0 FT933-5736 0 +302 0 FT933-5756 0 +302 0 FT933-6719 0 +302 0 FT933-6895 0 +302 0 FT933-7164 0 +302 0 FT933-7438 0 +302 0 FT933-7608 0 +302 0 FT933-7908 0 +302 0 FT933-7926 0 +302 0 FT933-8272 0 +302 0 FT933-8849 0 +302 0 FT933-8865 0 +302 0 FT933-9041 0 +302 0 FT933-9555 0 +302 0 FT934-10458 0 +302 0 FT934-11977 0 +302 0 FT934-1206 3 +302 0 FT934-1290 0 +302 0 FT934-14536 0 +302 0 FT934-17471 0 +302 0 FT934-3190 0 +302 0 FT934-4508 0 +302 0 FT934-5058 0 +302 0 FT934-5207 0 +302 0 FT934-576 0 +302 0 FT934-5915 0 +302 0 FT934-7018 0 +302 0 FT934-8210 0 +302 0 FT934-9726 0 +302 0 FT934-9860 0 +302 0 FT941-10023 0 +302 0 FT941-12410 3 +302 0 FT941-12426 0 +302 0 FT941-13315 0 +302 0 FT941-139 0 +302 0 FT941-14380 0 +302 0 FT941-1494 0 +302 0 FT941-15224 0 +302 0 FT941-1547 0 +302 0 FT941-157 0 +302 0 FT941-15832 0 +302 0 FT941-15975 0 +302 0 FT941-16404 0 +302 0 FT941-16414 0 +302 0 FT941-1656 0 +302 0 FT941-3236 0 +302 0 FT941-4398 0 +302 0 FT941-5519 0 +302 0 FT941-8037 0 +302 0 FT941-830 0 +302 0 FT941-9456 0 +302 0 FT941-9662 0 +302 0 FT941-9667 0 +302 0 FT942-10381 0 +302 0 FT942-10460 0 +302 0 FT942-11048 0 +302 0 FT942-11913 0 +302 0 FT942-12479 0 +302 0 FT942-12526 0 +302 0 FT942-13032 0 +302 0 FT942-14203 0 +302 0 FT942-14871 0 +302 0 FT942-14924 0 +302 0 FT942-16178 0 +302 0 FT942-16294 0 +302 0 FT942-16430 0 +302 0 FT942-16780 0 +302 0 FT942-17260 0 +302 0 FT942-17527 0 +302 0 FT942-1963 0 +302 0 FT942-2228 0 +302 0 FT942-3396 0 +302 0 FT942-4193 0 +302 0 FT942-4919 0 +302 0 FT942-5484 0 +302 0 FT942-5975 0 +302 0 FT942-6115 0 +302 0 FT942-7389 0 +302 0 FT942-7603 0 +302 0 FT942-9189 0 +302 0 FT942-9431 0 +302 0 FT943-1002 0 +302 0 FT943-10062 0 +302 0 FT943-10078 0 +302 0 FT943-11927 0 +302 0 FT943-12041 0 +302 0 FT943-12755 0 +302 0 FT943-13379 0 +302 0 FT943-14080 0 +302 0 FT943-14403 0 +302 0 FT943-14543 0 +302 0 FT943-14605 0 +302 0 FT943-14973 0 +302 0 FT943-15331 0 +302 0 FT943-15886 0 +302 0 FT943-16116 0 +302 0 FT943-16211 0 +302 0 FT943-16744 0 +302 0 FT943-1828 0 +302 0 FT943-208 0 +302 0 FT943-2193 0 +302 0 FT943-2776 0 +302 0 FT943-310 0 +302 0 FT943-3268 0 +302 0 FT943-3526 0 +302 0 FT943-4387 0 +302 0 FT943-4843 0 +302 0 FT943-4851 0 +302 0 FT943-500 0 +302 0 FT943-677 0 +302 0 FT943-69 0 +302 0 FT943-760 0 +302 0 FT943-8114 0 +302 0 FT943-8355 0 +302 0 FT943-8860 0 +302 0 FT943-8941 0 +302 0 FT943-9445 0 +302 0 FT943-9699 0 +302 0 FT943-9853 0 +302 0 FT944-10282 0 +302 0 FT944-10542 0 +302 0 FT944-10829 0 +302 0 FT944-10864 0 +302 0 FT944-10925 0 +302 0 FT944-11442 0 +302 0 FT944-11577 0 +302 0 FT944-11878 0 +302 0 FT944-13248 0 +302 0 FT944-14051 0 +302 0 FT944-14098 0 +302 0 FT944-14103 0 +302 0 FT944-14141 0 +302 0 FT944-14564 0 +302 0 FT944-14870 0 +302 0 FT944-15576 0 +302 0 FT944-15805 0 +302 0 FT944-16329 0 +302 0 FT944-17020 0 +302 0 FT944-17070 0 +302 0 FT944-17268 0 +302 0 FT944-18039 0 +302 0 FT944-18407 0 +302 0 FT944-18515 0 +302 0 FT944-18645 0 +302 0 FT944-1991 0 +302 0 FT944-2202 0 +302 0 FT944-2489 3 +302 0 FT944-2592 3 +302 0 FT944-3412 0 +302 0 FT944-3523 0 +302 0 FT944-3755 0 +302 0 FT944-5030 0 +302 0 FT944-567 0 +302 0 FT944-5940 0 +302 0 FT944-6228 0 +302 0 FT944-6607 0 +302 0 FT944-8304 0 +302 0 FT944-8752 0 +302 0 FT944-9658 0 +302 0 FT944-9872 0 +302 0 LA010490-0100 0 +302 0 LA010490-0127 0 +302 0 LA010589-0059 3 +302 0 LA010690-0044 0 +302 0 LA010789-0007 0 +302 0 LA011189-0091 0 +302 0 LA011590-0042 0 +302 0 LA012090-0137 0 +302 0 LA012290-0068 0 +302 0 LA012390-0129 0 +302 0 LA012490-0111 3 +302 0 LA012490-0120 0 +302 0 LA012589-0035 3 +302 0 LA012690-0099 0 +302 0 LA013089-0022 0 +302 0 LA020190-0050 0 +302 0 LA020190-0128 0 +302 0 LA020389-0112 0 +302 0 LA020390-0101 0 +302 0 LA020490-0202 0 +302 0 LA020490-0221 0 +302 0 LA021389-0067 0 +302 0 LA021889-0149 0 +302 0 LA022289-0015 0 +302 0 LA022290-0137 0 +302 0 LA030490-0058 0 +302 0 LA030490-0146 0 +302 0 LA030790-0062 0 +302 0 LA030889-0102 0 +302 0 LA031190-0046 0 +302 0 LA031190-0116 3 +302 0 LA031290-0103 0 +302 0 LA031290-0118 0 +302 0 LA031489-0032 3 +302 0 LA031890-0146 0 +302 0 LA032190-0081 0 +302 0 LA032689-0202 0 +302 0 LA032890-0019 0 +302 0 LA033190-0001 0 +302 0 LA040290-0023 0 +302 0 LA040789-0053 0 +302 0 LA040989-0094 0 +302 0 LA040989-0121 0 +302 0 LA040990-0045 0 +302 0 LA041190-0046 0 +302 0 LA041190-0093 0 +302 0 LA041290-0058 0 +302 0 LA041490-0129 0 +302 0 LA041690-0050 0 +302 0 LA041690-0051 0 +302 0 LA041690-0085 0 +302 0 LA041890-0007 0 +302 0 LA041989-0027 0 +302 0 LA041989-0042 0 +302 0 LA041990-0258 0 +302 0 LA042190-0056 0 +302 0 LA042289-0003 0 +302 0 LA042390-0099 0 +302 0 LA042590-0168 0 +302 0 LA042890-0139 0 +302 0 LA043090-0036 3 +302 0 LA050189-0063 0 +302 0 LA050789-0042 0 +302 0 LA050790-0096 0 +302 0 LA050889-0049 0 +302 0 LA050890-0167 0 +302 0 LA051390-0202 0 +302 0 LA051390-0223 0 +302 0 LA051889-0183 0 +302 0 LA052090-0077 0 +302 0 LA052090-0088 0 +302 0 LA052189-0210 0 +302 0 LA052190-0044 0 +302 0 LA052190-0106 0 +302 0 LA052690-0037 0 +302 0 LA060490-0002 0 +302 0 LA060589-0052 0 +302 0 LA060589-0053 0 +302 0 LA061090-0044 0 +302 0 LA061289-0041 3 +302 0 LA061390-0056 0 +302 0 LA061590-0016 0 +302 0 LA061989-0045 0 +302 0 LA062189-0108 0 +302 0 LA062190-0135 0 +302 0 LA062389-0128 0 +302 0 LA062490-0095 0 +302 0 LA062589-0087 0 +302 0 LA062590-0046 0 +302 0 LA062789-0077 0 +302 0 LA062990-0033 0 +302 0 LA070289-0159 0 +302 0 LA070290-0051 0 +302 0 LA070789-0056 0 +302 0 LA070890-0222 0 +302 0 LA071290-0154 0 +302 0 LA071590-0110 0 +302 0 LA071989-0061 0 +302 0 LA071990-0012 0 +302 0 LA072890-0052 0 +302 0 LA072890-0066 3 +302 0 LA072990-0208 0 +302 0 LA073089-0195 0 +302 0 LA080589-0034 0 +302 0 LA080589-0052 0 +302 0 LA080590-0260 0 +302 0 LA080690-0099 3 +302 0 LA080990-0174 0 +302 0 LA081089-0091 0 +302 0 LA081290-0078 0 +302 0 LA081989-0048 0 +302 0 LA081990-0088 0 +302 0 LA082089-0090 0 +302 0 LA082089-0163 0 +302 0 LA082389-0068 0 +302 0 LA082489-0115 0 +302 0 LA082490-0065 3 +302 0 LA082490-0066 0 +302 0 LA082590-0019 0 +302 0 LA082689-0127 0 +302 0 LA082789-0154 0 +302 0 LA083090-0214 0 +302 0 LA090290-0118 0 +302 0 LA090390-0077 0 +302 0 LA090589-0046 0 +302 0 LA090990-0031 3 +302 0 LA091190-0102 0 +302 0 LA091990-0020 0 +302 0 LA092189-0158 0 +302 0 LA092289-0005 0 +302 0 LA092390-0163 0 +302 0 LA092589-0002 0 +302 0 LA092589-0083 0 +302 0 LA092689-0080 0 +302 0 LA092689-0119 0 +302 0 LA092889-0179 0 +302 0 LA093090-0213 0 +302 0 LA100189-0047 3 +302 0 LA100189-0130 0 +302 0 LA100290-0016 0 +302 0 LA100490-0220 0 +302 0 LA101090-0147 0 +302 0 LA101190-0191 0 +302 0 LA101289-0109 0 +302 0 LA101589-0050 0 +302 0 LA101689-0055 0 +302 0 LA101690-0040 0 +302 0 LA101889-0058 0 +302 0 LA101890-0243 0 +302 0 LA102190-0080 0 +302 0 LA102289-0118 0 +302 0 LA102590-0199 0 +302 0 LA102789-0128 0 +302 0 LA102990-0097 0 +302 0 LA103089-0037 0 +302 0 LA110190-0053 0 +302 0 LA110389-0072 0 +302 0 LA110490-0201 0 +302 0 LA110689-0060 0 +302 0 LA110690-0193 0 +302 0 LA110889-0156 0 +302 0 LA111189-0018 0 +302 0 LA111489-0076 0 +302 0 LA111889-0044 0 +302 0 LA111889-0165 0 +302 0 LA111989-0036 0 +302 0 LA112089-0054 0 +302 0 LA112490-0106 0 +302 0 LA112789-0001 0 +302 0 LA112990-0145 0 +302 0 LA113090-0001 0 +302 0 LA113090-0147 0 +302 0 LA120389-0216 0 +302 0 LA120589-0098 0 +302 0 LA120690-0043 0 +302 0 LA120890-0014 0 +302 0 LA121589-0171 0 +302 0 LA121789-0162 3 +302 0 LA122289-0099 0 +302 0 LA122589-0100 0 +302 0 LA122589-0101 0 +302 0 LA123090-0026 3 +303 0 CR93E-10279 -1 +303 0 CR93E-11182 0 +303 0 CR93E-1856 0 +303 0 CR93E-226 -1 +303 0 CR93E-3833 0 +303 0 CR93E-3843 0 +303 0 CR93E-4217 -1 +303 0 CR93E-4353 0 +303 0 CR93E-436 0 +303 0 CR93E-4360 -1 +303 0 CR93E-5148 0 +303 0 CR93E-5855 0 +303 0 CR93E-6168 -1 +303 0 CR93E-6518 0 +303 0 CR93E-7036 0 +303 0 CR93E-7309 -1 +303 0 CR93E-7797 0 +303 0 CR93E-8695 0 +303 0 CR93E-8718 -1 +303 0 CR93E-9094 0 +303 0 CR93E-996 0 +303 0 CR93H-10104 -1 +303 0 CR93H-10308 0 +303 0 CR93H-10374 0 +303 0 CR93H-10392 -1 +303 0 CR93H-10601 0 +303 0 CR93H-10602 0 +303 0 CR93H-10921 -1 +303 0 CR93H-1097 0 +303 0 CR93H-10982 0 +303 0 CR93H-10989 -1 +303 0 CR93H-11033 0 +303 0 CR93H-11034 0 +303 0 CR93H-11077 -1 +303 0 CR93H-11119 0 +303 0 CR93H-11586 0 +303 0 CR93H-11792 -1 +303 0 CR93H-11806 0 +303 0 CR93H-11894 0 +303 0 CR93H-11998 -1 +303 0 CR93H-12017 0 +303 0 CR93H-12150 0 +303 0 CR93H-12181 -1 +303 0 CR93H-12217 0 +303 0 CR93H-12498 0 +303 0 CR93H-12820 -1 +303 0 CR93H-12874 0 +303 0 CR93H-1298 0 +303 0 CR93H-12988 -1 +303 0 CR93H-13205 0 +303 0 CR93H-13451 0 +303 0 CR93H-13588 -1 +303 0 CR93H-13659 0 +303 0 CR93H-13680 0 +303 0 CR93H-13695 -1 +303 0 CR93H-13849 0 +303 0 CR93H-14128 0 +303 0 CR93H-14130 -1 +303 0 CR93H-14306 0 +303 0 CR93H-14319 0 +303 0 CR93H-14388 -1 +303 0 CR93H-14436 0 +303 0 CR93H-14469 0 +303 0 CR93H-14591 -1 +303 0 CR93H-14794 0 +303 0 CR93H-15024 0 +303 0 CR93H-1509 -1 +303 0 CR93H-15105 0 +303 0 CR93H-15107 0 +303 0 CR93H-15178 -1 +303 0 CR93H-15405 0 +303 0 CR93H-15453 0 +303 0 CR93H-15477 -1 +303 0 CR93H-15587 0 +303 0 CR93H-15608 0 +303 0 CR93H-15615 -1 +303 0 CR93H-15705 0 +303 0 CR93H-15950 0 +303 0 CR93H-16073 -1 +303 0 CR93H-16128 0 +303 0 CR93H-16143 0 +303 0 CR93H-16369 -1 +303 0 CR93H-16456 0 +303 0 CR93H-1712 0 +303 0 CR93H-1788 -1 +303 0 CR93H-185 0 +303 0 CR93H-199 0 +303 0 CR93H-200 -1 +303 0 CR93H-2081 0 +303 0 CR93H-215 0 +303 0 CR93H-2196 -1 +303 0 CR93H-2429 0 +303 0 CR93H-2536 0 +303 0 CR93H-2707 -1 +303 0 CR93H-2841 0 +303 0 CR93H-3079 0 +303 0 CR93H-3375 -1 +303 0 CR93H-3382 0 +303 0 CR93H-3584 0 +303 0 CR93H-3813 -1 +303 0 CR93H-4042 0 +303 0 CR93H-416 0 +303 0 CR93H-4417 -1 +303 0 CR93H-4489 0 +303 0 CR93H-4554 0 +303 0 CR93H-4586 -1 +303 0 CR93H-4631 0 +303 0 CR93H-4635 0 +303 0 CR93H-4771 -1 +303 0 CR93H-4879 0 +303 0 CR93H-4922 0 +303 0 CR93H-5053 -1 +303 0 CR93H-5255 0 +303 0 CR93H-5450 0 +303 0 CR93H-5477 -1 +303 0 CR93H-553 0 +303 0 CR93H-5568 0 +303 0 CR93H-5700 -1 +303 0 CR93H-590 0 +303 0 CR93H-5957 0 +303 0 CR93H-6346 -1 +303 0 CR93H-6377 0 +303 0 CR93H-6422 0 +303 0 CR93H-6567 -1 +303 0 CR93H-6695 0 +303 0 CR93H-6754 0 +303 0 CR93H-6887 -1 +303 0 CR93H-6912 0 +303 0 CR93H-6945 0 +303 0 CR93H-7055 -1 +303 0 CR93H-7101 0 +303 0 CR93H-7133 0 +303 0 CR93H-7314 -1 +303 0 CR93H-735 0 +303 0 CR93H-742 0 +303 0 CR93H-7554 -1 +303 0 CR93H-7557 0 +303 0 CR93H-7612 0 +303 0 CR93H-7785 -1 +303 0 CR93H-7875 0 +303 0 CR93H-8165 0 +303 0 CR93H-8253 -1 +303 0 CR93H-8428 0 +303 0 CR93H-8460 0 +303 0 CR93H-8461 -1 +303 0 CR93H-8591 0 +303 0 CR93H-8928 0 +303 0 CR93H-9350 -1 +303 0 CR93H-9548 0 +303 0 CR93H-955 0 +303 0 CR93H-9835 -1 +303 0 FBIS3-16217 0 +303 0 FBIS3-19093 0 +303 0 FBIS3-21007 -1 +303 0 FBIS3-21026 0 +303 0 FBIS3-23561 0 +303 0 FBIS3-23682 -1 +303 0 FBIS3-23691 0 +303 0 FBIS3-24469 0 +303 0 FBIS3-25018 -1 +303 0 FBIS3-36274 0 +303 0 FBIS3-40348 0 +303 0 FBIS3-40363 -1 +303 0 FBIS3-40388 0 +303 0 FBIS3-40450 0 +303 0 FBIS3-41666 -1 +303 0 FBIS3-42394 0 +303 0 FBIS3-42399 0 +303 0 FBIS3-42547 -1 +303 0 FBIS3-42934 0 +303 0 FBIS3-43160 0 +303 0 FBIS3-43214 -1 +303 0 FBIS3-46244 0 +303 0 FBIS3-53109 0 +303 0 FBIS3-58219 -1 +303 0 FBIS3-59619 0 +303 0 FBIS3-60342 0 +303 0 FBIS3-61020 -1 +303 0 FBIS4-15938 0 +303 0 FBIS4-1647 0 +303 0 FBIS4-19830 -1 +303 0 FBIS4-20472 0 +303 0 FBIS4-20504 0 +303 0 FBIS4-22151 -1 +303 0 FBIS4-22263 0 +303 0 FBIS4-24195 0 +303 0 FBIS4-24435 -1 +303 0 FBIS4-27016 0 +303 0 FBIS4-28354 0 +303 0 FBIS4-2866 -1 +303 0 FBIS4-35855 0 +303 0 FBIS4-39574 0 +303 0 FBIS4-39987 -1 +303 0 FBIS4-42546 0 +303 0 FBIS4-42702 0 +303 0 FBIS4-42922 -1 +303 0 FBIS4-44511 0 +303 0 FBIS4-44743 0 +303 0 FBIS4-46469 -1 +303 0 FBIS4-46649 0 +303 0 FBIS4-46650 0 +303 0 FBIS4-47297 -1 +303 0 FBIS4-47302 0 +303 0 FBIS4-47495 0 +303 0 FBIS4-50545 -1 +303 0 FBIS4-55470 0 +303 0 FBIS4-57001 0 +303 0 FBIS4-65621 -1 +303 0 FBIS4-66185 0 +303 0 FBIS4-66382 0 +303 0 FBIS4-68332 -1 +303 0 FBIS4-68893 0 +303 0 FR940104-0-00032 0 +303 0 FR940111-2-00079 -1 +303 0 FR940124-1-00003 0 +303 0 FR940203-0-00084 0 +303 0 FR940304-2-00134 -1 +303 0 FR940304-2-00135 0 +303 0 FR940325-0-00015 0 +303 0 FR940406-0-00190 -1 +303 0 FR940418-0-00041 0 +303 0 FR940505-1-00005 0 +303 0 FR940526-2-00002 -1 +303 0 FR940602-1-00023 0 +303 0 FR940610-0-00042 0 +303 0 FR940627-0-00014 -1 +303 0 FR940706-2-00126 0 +303 0 FR940802-2-00009 0 +303 0 FR940810-0-00307 -1 +303 0 FR940819-0-00006 0 +303 0 FR940902-1-00048 0 +303 0 FR940906-2-00139 -1 +303 0 FR940919-0-00024 0 +303 0 FR941007-2-00007 0 +303 0 FR941020-2-00110 -1 +303 0 FR941021-0-00167 0 +303 0 FR941021-0-00195 0 +303 0 FR941121-0-00046 -1 +303 0 FR941121-2-00043 0 +303 0 FR941130-0-00122 0 +303 0 FR941205-2-00003 -1 +303 0 FR941206-1-00134 0 +303 0 FR941207-2-00068 0 +303 0 FR941216-2-00132 -1 +303 0 FR941216-2-00137 0 +303 0 FR941221-0-00047 0 +303 0 FT911-1000 -1 +303 0 FT911-216 0 +303 0 FT911-2608 0 +303 0 FT911-3687 -1 +303 0 FT911-4155 0 +303 0 FT911-5046 0 +303 0 FT921-1013 -1 +303 0 FT921-10884 0 +303 0 FT921-11671 0 +303 0 FT921-12379 -1 +303 0 FT921-12584 0 +303 0 FT921-13248 0 +303 0 FT921-1350 -1 +303 0 FT921-13869 0 +303 0 FT921-14183 0 +303 0 FT921-14476 -1 +303 0 FT921-14867 0 +303 0 FT921-15863 0 +303 0 FT921-1594 -1 +303 0 FT921-15951 0 +303 0 FT921-16129 0 +303 0 FT921-16360 -1 +303 0 FT921-16419 0 +303 0 FT921-16457 0 +303 0 FT921-2261 -1 +303 0 FT921-2873 0 +303 0 FT921-3070 0 +303 0 FT921-3071 -1 +303 0 FT921-3359 0 +303 0 FT921-3432 0 +303 0 FT921-3539 -1 +303 0 FT921-3809 0 +303 0 FT921-3842 0 +303 0 FT921-3945 -1 +303 0 FT921-4635 0 +303 0 FT921-503 0 +303 0 FT921-5229 -1 +303 0 FT921-6327 0 +303 0 FT921-7107 2 +303 0 FT921-832 -1 +303 0 FT921-8725 0 +303 0 FT921-8919 0 +303 0 FT921-953 -1 +303 0 FT921-9706 0 +303 0 FT922-10607 0 +303 0 FT922-10990 -1 +303 0 FT922-11472 0 +303 0 FT922-11525 0 +303 0 FT922-11670 -1 +303 0 FT922-11742 0 +303 0 FT922-11929 0 +303 0 FT922-12234 -1 +303 0 FT922-12334 0 +303 0 FT922-12600 0 +303 0 FT922-13008 -1 +303 0 FT922-13421 0 +303 0 FT922-13455 0 +303 0 FT922-13500 -1 +303 0 FT922-13906 0 +303 0 FT922-2930 0 +303 0 FT922-3309 -1 +303 0 FT922-4215 0 +303 0 FT922-4274 0 +303 0 FT922-4956 -1 +303 0 FT922-4967 0 +303 0 FT922-5107 0 +303 0 FT922-6257 -1 +303 0 FT922-7289 0 +303 0 FT922-7904 0 +303 0 FT922-8168 -1 +303 0 FT922-861 0 +303 0 FT922-8790 0 +303 0 FT922-9812 -1 +303 0 FT923-10218 0 +303 0 FT923-10305 0 +303 0 FT923-10351 -1 +303 0 FT923-10517 0 +303 0 FT923-1085 0 +303 0 FT923-10862 -1 +303 0 FT923-10876 0 +303 0 FT923-10939 0 +303 0 FT923-12048 -1 +303 0 FT923-12432 0 +303 0 FT923-1307 0 +303 0 FT923-13137 -1 +303 0 FT923-14461 0 +303 0 FT923-14465 0 +303 0 FT923-14574 -1 +303 0 FT923-15067 0 +303 0 FT923-2353 0 +303 0 FT923-2416 -1 +303 0 FT923-3530 0 +303 0 FT923-3924 0 +303 0 FT923-4482 -1 +303 0 FT923-4525 0 +303 0 FT923-5257 0 +303 0 FT923-5756 -1 +303 0 FT923-7711 0 +303 0 FT923-7860 0 +303 0 FT923-7887 -1 +303 0 FT923-803 0 +303 0 FT923-8916 0 +303 0 FT923-9736 -1 +303 0 FT923-9781 0 +303 0 FT924-10484 0 +303 0 FT924-10903 -1 +303 0 FT924-12943 0 +303 0 FT924-14218 0 +303 0 FT924-14355 -1 +303 0 FT924-14455 0 +303 0 FT924-196 0 +303 0 FT924-2211 -1 +303 0 FT924-2379 0 +303 0 FT924-2406 0 +303 0 FT924-286 -1 +303 0 FT924-2896 0 +303 0 FT924-3328 0 +303 0 FT924-4315 -1 +303 0 FT924-4358 0 +303 0 FT924-4829 0 +303 0 FT924-5286 -1 +303 0 FT924-5310 0 +303 0 FT924-5533 0 +303 0 FT924-5574 -1 +303 0 FT924-6499 0 +303 0 FT924-7392 0 +303 0 FT924-7399 -1 +303 0 FT924-8791 0 +303 0 FT924-8918 0 +303 0 FT931-11101 -1 +303 0 FT931-12968 0 +303 0 FT931-13063 0 +303 0 FT931-13386 -1 +303 0 FT931-13998 0 +303 0 FT931-15496 0 +303 0 FT931-15565 -1 +303 0 FT931-15612 0 +303 0 FT931-15900 0 +303 0 FT931-1860 -1 +303 0 FT931-2231 0 +303 0 FT931-3522 0 +303 0 FT931-3827 -1 +303 0 FT931-4109 0 +303 0 FT931-5157 0 +303 0 FT931-5545 -1 +303 0 FT931-5858 0 +303 0 FT931-6554 2 +303 0 FT931-7240 -1 +303 0 FT931-9388 0 +303 0 FT931-9677 0 +303 0 FT931-9998 -1 +303 0 FT932-12850 0 +303 0 FT932-12979 0 +303 0 FT932-13081 -1 +303 0 FT932-13517 0 +303 0 FT932-13766 0 +303 0 FT932-14482 -1 +303 0 FT932-15782 0 +303 0 FT932-15788 0 +303 0 FT932-16246 -1 +303 0 FT932-16878 0 +303 0 FT932-1696 0 +303 0 FT932-17203 -1 +303 0 FT932-1828 0 +303 0 FT932-3207 0 +303 0 FT932-3291 -1 +303 0 FT932-378 0 +303 0 FT932-4616 0 +303 0 FT932-4803 -1 +303 0 FT932-5036 0 +303 0 FT932-5038 0 +303 0 FT932-5048 -1 +303 0 FT932-6741 0 +303 0 FT932-7107 0 +303 0 FT932-734 -1 +303 0 FT932-868 0 +303 0 FT932-8978 0 +303 0 FT932-9302 -1 +303 0 FT933-10291 0 +303 0 FT933-10324 0 +303 0 FT933-11321 -1 +303 0 FT933-11538 0 +303 0 FT933-11603 0 +303 0 FT933-1184 -1 +303 0 FT933-12486 0 +303 0 FT933-14487 0 +303 0 FT933-14847 -1 +303 0 FT933-14894 0 +303 0 FT933-15354 0 +303 0 FT933-16201 -1 +303 0 FT933-16728 0 +303 0 FT933-16851 0 +303 0 FT933-2180 -1 +303 0 FT933-2218 0 +303 0 FT933-3699 0 +303 0 FT933-4983 -1 +303 0 FT933-5990 0 +303 0 FT933-6323 0 +303 0 FT933-6678 -1 +303 0 FT933-678 0 +303 0 FT933-6877 0 +303 0 FT933-6882 -1 +303 0 FT933-6946 0 +303 0 FT933-8843 0 +303 0 FT933-9084 -1 +303 0 FT933-9701 0 +303 0 FT934-10579 0 +303 0 FT934-10850 -1 +303 0 FT934-10897 0 +303 0 FT934-11052 0 +303 0 FT934-11633 -1 +303 0 FT934-1193 0 +303 0 FT934-12356 0 +303 0 FT934-14956 -1 +303 0 FT934-16249 0 +303 0 FT934-17357 0 +303 0 FT934-2516 -1 +303 0 FT934-2630 0 +303 0 FT934-2685 0 +303 0 FT934-3191 -1 +303 0 FT934-3325 0 +303 0 FT934-3608 0 +303 0 FT934-3766 -1 +303 0 FT934-4015 0 +303 0 FT934-4132 0 +303 0 FT934-4163 -1 +303 0 FT934-4467 0 +303 0 FT934-4583 0 +303 0 FT934-4766 -1 +303 0 FT934-4842 0 +303 0 FT934-4882 0 +303 0 FT934-5418 -1 +303 0 FT934-5460 0 +303 0 FT934-5524 0 +303 0 FT934-5811 -1 +303 0 FT934-5820 0 +303 0 FT934-7129 0 +303 0 FT934-7549 -1 +303 0 FT934-8767 0 +303 0 FT934-9330 0 +303 0 FT941-11088 -1 +303 0 FT941-11413 0 +303 0 FT941-11486 0 +303 0 FT941-11756 -1 +303 0 FT941-12019 0 +303 0 FT941-13695 0 +303 0 FT941-1374 -1 +303 0 FT941-1391 0 +303 0 FT941-1394 0 +303 0 FT941-14233 -1 +303 0 FT941-15661 2 +303 0 FT941-16882 0 +303 0 FT941-16886 -1 +303 0 FT941-16981 0 +303 0 FT941-17036 0 +303 0 FT941-17441 -1 +303 0 FT941-17487 0 +303 0 FT941-17636 0 +303 0 FT941-17652 -1 +303 0 FT941-2547 0 +303 0 FT941-2665 0 +303 0 FT941-2991 -1 +303 0 FT941-3758 0 +303 0 FT941-4026 0 +303 0 FT941-4092 -1 +303 0 FT941-4444 0 +303 0 FT941-5396 0 +303 0 FT941-541 -1 +303 0 FT941-6402 0 +303 0 FT941-7923 0 +303 0 FT941-793 -1 +303 0 FT941-7995 0 +303 0 FT942-10936 0 +303 0 FT942-11263 -1 +303 0 FT942-12236 0 +303 0 FT942-12872 0 +303 0 FT942-13026 -1 +303 0 FT942-13246 0 +303 0 FT942-13367 0 +303 0 FT942-14060 -1 +303 0 FT942-1469 0 +303 0 FT942-15138 0 +303 0 FT942-16737 -1 +303 0 FT942-16817 0 +303 0 FT942-17118 0 +303 0 FT942-344 -1 +303 0 FT942-417 0 +303 0 FT942-5339 0 +303 0 FT942-5356 -1 +303 0 FT942-5468 0 +303 0 FT942-5834 0 +303 0 FT942-6534 -1 +303 0 FT942-68 0 +303 0 FT942-7259 0 +303 0 FT942-786 -1 +303 0 FT942-795 0 +303 0 FT942-8367 0 +303 0 FT943-10128 -1 +303 0 FT943-10171 0 +303 0 FT943-10786 0 +303 0 FT943-10793 -1 +303 0 FT943-11292 0 +303 0 FT943-11617 0 +303 0 FT943-1201 -1 +303 0 FT943-1280 0 +303 0 FT943-12840 0 +303 0 FT943-13317 -1 +303 0 FT943-13465 0 +303 0 FT943-14262 0 +303 0 FT943-14510 -1 +303 0 FT943-14574 0 +303 0 FT943-14635 0 +303 0 FT943-14986 -1 +303 0 FT943-15147 0 +303 0 FT943-15250 0 +303 0 FT943-15591 -1 +303 0 FT943-16229 0 +303 0 FT943-3051 0 +303 0 FT943-3170 -1 +303 0 FT943-3693 0 +303 0 FT943-4589 0 +303 0 FT943-4595 -1 +303 0 FT943-4813 0 +303 0 FT943-5596 0 +303 0 FT943-5598 -1 +303 0 FT943-6074 0 +303 0 FT943-6422 0 +303 0 FT943-7294 -1 +303 0 FT943-8129 0 +303 0 FT943-8794 0 +303 0 FT943-9282 -1 +303 0 FT943-9830 0 +303 0 FT944-11415 0 +303 0 FT944-11782 -1 +303 0 FT944-12542 0 +303 0 FT944-12573 0 +303 0 FT944-12693 -1 +303 0 FT944-128 2 +303 0 FT944-12897 0 +303 0 FT944-1329 -1 +303 0 FT944-14417 0 +303 0 FT944-14989 0 +303 0 FT944-18272 -1 +303 0 FT944-18385 0 +303 0 FT944-3898 0 +303 0 FT944-3901 -1 +303 0 FT944-419 0 +303 0 FT944-4838 0 +303 0 FT944-509 -1 +303 0 FT944-5488 0 +303 0 FT944-552 0 +303 0 FT944-6624 -1 +303 0 FT944-6937 0 +303 0 FT944-8381 0 +303 0 FT944-8537 -1 +303 0 FT944-8893 0 +303 0 FT944-9936 0 +303 0 LA010689-0016 -1 +303 0 LA010889-0081 0 +303 0 LA011590-0098 0 +303 0 LA011789-0014 -1 +303 0 LA011990-0173 0 +303 0 LA012090-0105 0 +303 0 LA012090-0106 -1 +303 0 LA012789-0162 0 +303 0 LA012790-0042 0 +303 0 LA020190-0053 -1 +303 0 LA020889-0065 0 +303 0 LA020989-0012 0 +303 0 LA022689-0112 -1 +303 0 LA030590-0070 0 +303 0 LA030990-0068 0 +303 0 LA031090-0099 -1 +303 0 LA031190-0216 0 +303 0 LA031289-0114 0 +303 0 LA031490-0065 -1 +303 0 LA031490-0066 0 +303 0 LA031589-0130 0 +303 0 LA031689-0206 -1 +303 0 LA031989-0181 0 +303 0 LA031989-0182 0 +303 0 LA032790-0023 -1 +303 0 LA033089-0032 0 +303 0 LA033090-0082 0 +303 0 LA033090-0083 -1 +303 0 LA040190-0178 0 +303 0 LA040190-0179 0 +303 0 LA040590-0220 -1 +303 0 LA040689-0155 0 +303 0 LA041090-0148 0 +303 0 LA041190-0003 -1 +303 0 LA041390-0018 0 +303 0 LA041490-0064 0 +303 0 LA041589-0014 -1 +303 0 LA041590-0161 0 +303 0 LA041689-0190 0 +303 0 LA041690-0035 -1 +303 0 LA041690-0050 0 +303 0 LA041690-0051 0 +303 0 LA041790-0054 -1 +303 0 LA041790-0055 0 +303 0 LA041989-0027 0 +303 0 LA041990-0151 -1 +303 0 LA042190-0078 0 +303 0 LA042190-0132 0 +303 0 LA042289-0040 -1 +303 0 LA042290-0096 0 +303 0 LA042290-0160 0 +303 0 LA042390-0041 -1 +303 0 LA042390-0060 0 +303 0 LA042390-0099 0 +303 0 LA042590-0135 -1 +303 0 LA042590-0152 0 +303 0 LA042690-0141 0 +303 0 LA042690-0169 -1 +303 0 LA042790-0070 0 +303 0 LA042890-0035 0 +303 0 LA042890-0151 -1 +303 0 LA042989-0116 0 +303 0 LA043089-0169 0 +303 0 LA043090-0018 -1 +303 0 LA050189-0063 0 +303 0 LA050190-0067 0 +303 0 LA050390-0109 -1 +303 0 LA050589-0090 0 +303 0 LA050589-0092 0 +303 0 LA050590-0027 -1 +303 0 LA050590-0048 0 +303 0 LA050690-0145 0 +303 0 LA050690-0149 -1 +303 0 LA050889-0068 0 +303 0 LA050990-0078 0 +303 0 LA050990-0116 -1 +303 0 LA051090-0069 0 +303 0 LA051090-0070 0 +303 0 LA051190-0064 -1 +303 0 LA051290-0077 0 +303 0 LA051290-0079 2 +303 0 LA051389-0037 -1 +303 0 LA051390-0161 0 +303 0 LA051390-0195 0 +303 0 LA051390-0223 -1 +303 0 LA051490-0110 0 +303 0 LA051590-0074 0 +303 0 LA052090-0088 -1 +303 0 LA052189-0123 0 +303 0 LA052190-0021 0 +303 0 LA052289-0047 -1 +303 0 LA052389-0074 0 +303 0 LA052390-0127 0 +303 0 LA052490-0139 -1 +303 0 LA052589-0193 0 +303 0 LA052690-0037 0 +303 0 LA052890-0021 -1 +303 0 LA052890-0046 0 +303 0 LA052990-0018 0 +303 0 LA053089-0075 -1 +303 0 LA053090-0037 0 +303 0 LA053090-0104 0 +303 0 LA053190-0175 -1 +303 0 LA060290-0131 0 +303 0 LA060390-0159 0 +303 0 LA060489-0196 -1 +303 0 LA060490-0021 0 +303 0 LA060590-0010 0 +303 0 LA060790-0159 -1 +303 0 LA060890-0124 0 +303 0 LA060989-0171 0 +303 0 LA060990-0077 -1 +303 0 LA061189-0173 0 +303 0 LA061190-0085 0 +303 0 LA061289-0051 -1 +303 0 LA061390-0056 0 +303 0 LA061490-0072 0 +303 0 LA061589-0050 -1 +303 0 LA061589-0051 0 +303 0 LA061590-0010 0 +303 0 LA061690-0021 -1 +303 0 LA061690-0030 0 +303 0 LA061789-0027 0 +303 0 LA061789-0028 -1 +303 0 LA061790-0205 0 +303 0 LA061889-0008 0 +303 0 LA062090-0094 -1 +303 0 LA062189-0012 0 +303 0 LA062390-0041 0 +303 0 LA062690-0041 -1 +303 0 LA062789-0090 0 +303 0 LA062790-0085 0 +303 0 LA062890-0206 -1 +303 0 LA062990-0180 0 +303 0 LA063090-0004 0 +303 0 LA063090-0005 -1 +303 0 LA070190-0119 0 +303 0 LA070190-0120 0 +303 0 LA070289-0147 -1 +303 0 LA070290-0051 0 +303 0 LA070390-0084 0 +303 0 LA070390-0085 -1 +303 0 LA070489-0096 0 +303 0 LA070490-0001 0 +303 0 LA070490-0002 -1 +303 0 LA070590-0031 0 +303 0 LA070590-0033 0 +303 0 LA070590-0036 -1 +303 0 LA070590-0097 0 +303 0 LA070690-0095 0 +303 0 LA070789-0002 -1 +303 0 LA070789-0127 0 +303 0 LA070790-0083 0 +303 0 LA070790-0084 -1 +303 0 LA070890-0079 0 +303 0 LA070890-0080 0 +303 0 LA070890-0154 -1 +303 0 LA070890-0155 0 +303 0 LA070989-0062 0 +303 0 LA070989-0063 -1 +303 0 LA070990-0052 0 +303 0 LA070990-0053 0 +303 0 LA071090-0047 -1 +303 0 LA071090-0048 0 +303 0 LA071090-0141 0 +303 0 LA071390-0122 -1 +303 0 LA071390-0123 0 +303 0 LA071490-0024 0 +303 0 LA071490-0091 -1 +303 0 LA071490-0092 0 +303 0 LA071690-0048 0 +303 0 LA071690-0049 -1 +303 0 LA071990-0165 0 +303 0 LA071990-0250 0 +303 0 LA072090-0146 -1 +303 0 LA072090-0147 0 +303 0 LA072190-0065 0 +303 0 LA072190-0066 -1 +303 0 LA072389-0021 0 +303 0 LA072390-0058 0 +303 0 LA072390-0060 -1 +303 0 LA072490-0033 0 +303 0 LA072590-0005 0 +303 0 LA072590-0006 -1 +303 0 LA072590-0115 0 +303 0 LA072690-0124 0 +303 0 LA072690-0125 -1 +303 0 LA072690-0133 0 +303 0 LA072690-0134 0 +303 0 LA072789-0050 -1 +303 0 LA072890-0052 0 +303 0 LA072890-0078 0 +303 0 LA072890-0079 -1 +303 0 LA072990-0118 0 +303 0 LA073089-0149 0 +303 0 LA080489-0048 -1 +303 0 LA080590-0195 0 +303 0 LA080889-0066 0 +303 0 LA080890-0044 -1 +303 0 LA080989-0058 0 +303 0 LA080990-0216 0 +303 0 LA080990-0222 -1 +303 0 LA080990-0223 0 +303 0 LA080990-0232 0 +303 0 LA080990-0242 -1 +303 0 LA081090-0078 0 +303 0 LA081090-0079 0 +303 0 LA081090-0080 -1 +303 0 LA081190-0108 0 +303 0 LA081290-0215 0 +303 0 LA081290-0216 -1 +303 0 LA081489-0055 0 +303 0 LA081690-0102 0 +303 0 LA081790-0083 -1 +303 0 LA081790-0164 0 +303 0 LA081790-0165 0 +303 0 LA081989-0048 -1 +303 0 LA081990-0158 0 +303 0 LA082089-0163 0 +303 0 LA082190-0014 -1 +303 0 LA082190-0015 0 +303 0 LA082389-0028 0 +303 0 LA082490-0075 -1 +303 0 LA082590-0019 0 +303 0 LA082789-0096 0 +303 0 LA082789-0201 -1 +303 0 LA082890-0147 0 +303 0 LA082890-0148 0 +303 0 LA082989-0074 -1 +303 0 LA090189-0018 0 +303 0 LA090389-0097 0 +303 0 LA090389-0100 -1 +303 0 LA090390-0035 0 +303 0 LA090489-0037 0 +303 0 LA090489-0038 -1 +303 0 LA090689-0015 0 +303 0 LA090690-0100 0 +303 0 LA090690-0101 -1 +303 0 LA090790-0049 0 +303 0 LA090790-0050 0 +303 0 LA090889-0077 -1 +303 0 LA091089-0170 0 +303 0 LA091089-0172 0 +303 0 LA091190-0096 -1 +303 0 LA091190-0102 0 +303 0 LA091390-0046 0 +303 0 LA091689-0028 -1 +303 0 LA091690-0166 0 +303 0 LA091890-0053 0 +303 0 LA091890-0054 -1 +303 0 LA091890-0156 0 +303 0 LA092489-0053 0 +303 0 LA092489-0134 -1 +303 0 LA092690-0092 0 +303 0 LA092690-0093 0 +303 0 LA092690-0117 -1 +303 0 LA092790-0128 0 +303 0 LA100189-0205 0 +303 0 LA100290-0067 -1 +303 0 LA100889-0040 0 +303 0 LA101189-0144 0 +303 0 LA101290-0125 -1 +303 0 LA101690-0023 0 +303 0 LA101790-0151 0 +303 0 LA102189-0071 -1 +303 0 LA102289-0098 0 +303 0 LA102290-0066 0 +303 0 LA102290-0067 -1 +303 0 LA102590-0235 0 +303 0 LA102689-0127 0 +303 0 LA102890-0197 -1 +303 0 LA110590-0076 2 +303 0 LA110590-0077 0 +303 0 LA110989-0239 -1 +303 0 LA111089-0012 0 +303 0 LA111090-0135 0 +303 0 LA111789-0042 -1 +303 0 LA111789-0101 0 +303 0 LA111789-0151 0 +303 0 LA111990-0004 -1 +303 0 LA112089-0048 0 +303 0 LA112190-0043 2 +303 0 LA112190-0044 -1 +303 0 LA112390-0146 0 +303 0 LA112690-0067 0 +303 0 LA112990-0083 -1 +303 0 LA113090-0157 0 +303 0 LA120190-0125 0 +303 0 LA120390-0065 -1 +303 0 LA120390-0126 0 +303 0 LA120590-0110 0 +303 0 LA120890-0048 -1 +303 0 LA120990-0163 0 +303 0 LA120990-0165 0 +303 0 LA121190-0079 -1 +303 0 LA121190-0089 0 +303 0 LA121190-0090 0 +303 0 LA121190-0160 -1 +303 0 LA121790-0086 0 +303 0 LA121790-0087 0 +303 0 LA122090-0004 -1 +303 0 LA122090-0228 0 +303 0 LA122190-0021 0 +303 0 LA122390-0127 -1 +303 0 LA122589-0068 0 +303 0 LA122590-0113 0 +303 0 LA122790-0152 -1 +303 0 LA122990-0029 2 +303 0 LA122990-0030 0 +301 1 CR93E-10279 0 +301 1 CR93E-10505 0 +301 1 CR93E-1282 1 +301 1 CR93E-1850 0 +301 1 CR93E-1860 3 +301 1 CR93E-1952 0 +301 1 CR93E-2191 0 +301 1 CR93E-2473 0 +301 1 CR93E-3103 1 +301 1 CR93E-3284 0 +301 1 CR93E-38 0 +301 1 CR93E-392 0 +301 1 CR93E-4648 0 +301 1 CR93E-4765 0 +301 1 CR93E-4855 0 +301 1 CR93E-5497 0 +301 1 CR93E-5780 0 +301 1 CR93E-5796 1 +301 1 CR93E-5799 4 +301 1 CR93E-6019 0 +301 1 CR93E-6879 0 +301 1 CR93E-6905 4 +301 1 CR93E-7123 0 +301 1 CR93E-7191 0 +301 1 CR93E-7276 0 +301 1 CR93E-7348 4 +301 1 CR93E-7376 1 +301 1 CR93E-7414 0 +301 1 CR93E-7716 0 +301 1 CR93E-7952 2 +301 1 CR93E-8012 0 +301 1 CR93E-8290 2 +301 1 CR93E-8416 1 +301 1 CR93E-8480 0 +301 1 CR93E-8484 0 +301 1 CR93E-9665 2 +301 1 CR93E-9750 2 +301 1 CR93E-9795 0 +301 1 CR93H-10037 4 +301 1 CR93H-10042 0 +301 1 CR93H-10104 0 +301 1 CR93H-10213 0 +301 1 CR93H-10221 0 +301 1 CR93H-10306 0 +301 1 CR93H-10374 0 +301 1 CR93H-10601 0 +301 1 CR93H-10659 0 +301 1 CR93H-10681 0 +301 1 CR93H-10921 0 +301 1 CR93H-10989 0 +301 1 CR93H-11029 0 +301 1 CR93H-11033 0 +301 1 CR93H-11034 0 +301 1 CR93H-11077 0 +301 1 CR93H-11119 0 +301 1 CR93H-11267 0 +301 1 CR93H-11291 1 +301 1 CR93H-11586 0 +301 1 CR93H-11806 0 +301 1 CR93H-11894 0 +301 1 CR93H-11994 0 +301 1 CR93H-11998 0 +301 1 CR93H-12016 0 +301 1 CR93H-12017 0 +301 1 CR93H-12150 0 +301 1 CR93H-12163 0 +301 1 CR93H-12181 0 +301 1 CR93H-12278 0 +301 1 CR93H-12436 0 +301 1 CR93H-12498 3 +301 1 CR93H-12610 0 +301 1 CR93H-12820 0 +301 1 CR93H-12874 0 +301 1 CR93H-12908 0 +301 1 CR93H-1298 0 +301 1 CR93H-12982 0 +301 1 CR93H-12983 0 +301 1 CR93H-12988 0 +301 1 CR93H-13053 0 +301 1 CR93H-13205 0 +301 1 CR93H-13529 1 +301 1 CR93H-13593 1 +301 1 CR93H-13595 1 +301 1 CR93H-13659 0 +301 1 CR93H-13680 0 +301 1 CR93H-13849 0 +301 1 CR93H-14136 0 +301 1 CR93H-14306 0 +301 1 CR93H-14325 0 +301 1 CR93H-14388 0 +301 1 CR93H-14389 1 +301 1 CR93H-14469 0 +301 1 CR93H-1461 0 +301 1 CR93H-1464 0 +301 1 CR93H-14669 0 +301 1 CR93H-14791 0 +301 1 CR93H-14817 0 +301 1 CR93H-14949 0 +301 1 CR93H-15069 1 +301 1 CR93H-15178 0 +301 1 CR93H-15405 0 +301 1 CR93H-15453 0 +301 1 CR93H-15477 0 +301 1 CR93H-15587 0 +301 1 CR93H-15608 0 +301 1 CR93H-15875 0 +301 1 CR93H-15886 0 +301 1 CR93H-15950 0 +301 1 CR93H-16062 0 +301 1 CR93H-16128 0 +301 1 CR93H-16369 0 +301 1 CR93H-1712 0 +301 1 CR93H-1769 1 +301 1 CR93H-1788 0 +301 1 CR93H-185 0 +301 1 CR93H-1852 0 +301 1 CR93H-199 1 +301 1 CR93H-215 0 +301 1 CR93H-2174 0 +301 1 CR93H-2252 0 +301 1 CR93H-2346 0 +301 1 CR93H-2430 0 +301 1 CR93H-2707 0 +301 1 CR93H-2841 0 +301 1 CR93H-2896 0 +301 1 CR93H-2899 0 +301 1 CR93H-3079 0 +301 1 CR93H-3262 0 +301 1 CR93H-3444 0 +301 1 CR93H-3466 0 +301 1 CR93H-3813 0 +301 1 CR93H-3960 0 +301 1 CR93H-4041 0 +301 1 CR93H-4042 0 +301 1 CR93H-4143 0 +301 1 CR93H-416 0 +301 1 CR93H-4192 0 +301 1 CR93H-4306 0 +301 1 CR93H-4417 0 +301 1 CR93H-4554 0 +301 1 CR93H-4569 0 +301 1 CR93H-4586 0 +301 1 CR93H-4635 0 +301 1 CR93H-4827 0 +301 1 CR93H-4879 0 +301 1 CR93H-4922 0 +301 1 CR93H-5017 0 +301 1 CR93H-5053 0 +301 1 CR93H-5121 0 +301 1 CR93H-5189 0 +301 1 CR93H-5255 0 +301 1 CR93H-553 0 +301 1 CR93H-5568 1 +301 1 CR93H-5618 0 +301 1 CR93H-6202 0 +301 1 CR93H-6346 0 +301 1 CR93H-6422 0 +301 1 CR93H-6567 0 +301 1 CR93H-6695 0 +301 1 CR93H-6754 0 +301 1 CR93H-6912 0 +301 1 CR93H-6945 0 +301 1 CR93H-7055 0 +301 1 CR93H-71 0 +301 1 CR93H-7245 0 +301 1 CR93H-7314 0 +301 1 CR93H-735 0 +301 1 CR93H-742 0 +301 1 CR93H-7426 0 +301 1 CR93H-7554 0 +301 1 CR93H-7557 0 +301 1 CR93H-7612 0 +301 1 CR93H-8165 0 +301 1 CR93H-83 0 +301 1 CR93H-8422 0 +301 1 CR93H-8460 0 +301 1 CR93H-8461 0 +301 1 CR93H-8472 0 +301 1 CR93H-8590 0 +301 1 CR93H-860 0 +301 1 CR93H-8700 0 +301 1 CR93H-8928 0 +301 1 CR93H-8981 0 +301 1 CR93H-9134 1 +301 1 CR93H-9143 0 +301 1 CR93H-9147 0 +301 1 CR93H-9214 0 +301 1 CR93H-9344 0 +301 1 CR93H-9350 1 +301 1 CR93H-9357 0 +301 1 CR93H-9546 0 +301 1 CR93H-9548 0 +301 1 CR93H-955 1 +301 1 CR93H-9684 1 +301 1 CR93H-9705 0 +301 1 CR93H-9835 0 +301 1 FBIS3-10082 2 +301 1 FBIS3-10169 0 +301 1 FBIS3-10243 1 +301 1 FBIS3-10319 0 +301 1 FBIS3-10397 1 +301 1 FBIS3-10491 0 +301 1 FBIS3-10555 0 +301 1 FBIS3-10622 1 +301 1 FBIS3-10634 0 +301 1 FBIS3-10635 0 +301 1 FBIS3-10721 1 +301 1 FBIS3-10805 0 +301 1 FBIS3-10910 1 +301 1 FBIS3-10937 4 +301 1 FBIS3-10938 0 +301 1 FBIS3-11003 1 +301 1 FBIS3-11028 0 +301 1 FBIS3-11095 1 +301 1 FBIS3-11099 2 +301 1 FBIS3-11210 1 +301 1 FBIS3-11318 0 +301 1 FBIS3-11405 1 +301 1 FBIS3-11502 3 +301 1 FBIS3-11553 1 +301 1 FBIS3-1162 2 +301 1 FBIS3-11628 1 +301 1 FBIS3-11634 0 +301 1 FBIS3-12094 1 +301 1 FBIS3-13011 0 +301 1 FBIS3-14449 0 +301 1 FBIS3-14832 0 +301 1 FBIS3-15271 0 +301 1 FBIS3-15418 0 +301 1 FBIS3-15509 0 +301 1 FBIS3-15586 1 +301 1 FBIS3-15988 3 +301 1 FBIS3-16151 0 +301 1 FBIS3-16286 2 +301 1 FBIS3-1638 0 +301 1 FBIS3-16769 0 +301 1 FBIS3-16775 0 +301 1 FBIS3-17073 0 +301 1 FBIS3-17175 2 +301 1 FBIS3-17255 0 +301 1 FBIS3-17394 0 +301 1 FBIS3-17422 0 +301 1 FBIS3-17547 0 +301 1 FBIS3-17704 0 +301 1 FBIS3-17880 0 +301 1 FBIS3-18129 0 +301 1 FBIS3-18281 0 +301 1 FBIS3-18507 0 +301 1 FBIS3-19199 1 +301 1 FBIS3-19420 0 +301 1 FBIS3-19646 0 +301 1 FBIS3-19682 1 +301 1 FBIS3-19863 1 +301 1 FBIS3-20360 1 +301 1 FBIS3-20551 1 +301 1 FBIS3-20552 1 +301 1 FBIS3-20796 0 +301 1 FBIS3-21603 0 +301 1 FBIS3-21604 0 +301 1 FBIS3-21605 1 +301 1 FBIS3-21620 0 +301 1 FBIS3-21627 0 +301 1 FBIS3-21628 1 +301 1 FBIS3-21629 2 +301 1 FBIS3-21630 1 +301 1 FBIS3-21631 1 +301 1 FBIS3-21632 4 +301 1 FBIS3-21635 1 +301 1 FBIS3-21636 1 +301 1 FBIS3-21641 0 +301 1 FBIS3-21642 1 +301 1 FBIS3-21670 0 +301 1 FBIS3-21671 0 +301 1 FBIS3-21699 1 +301 1 FBIS3-21710 1 +301 1 FBIS3-21720 0 +301 1 FBIS3-21722 1 +301 1 FBIS3-21723 2 +301 1 FBIS3-21724 1 +301 1 FBIS3-21729 3 +301 1 FBIS3-21743 1 +301 1 FBIS3-21750 2 +301 1 FBIS3-21762 0 +301 1 FBIS3-21765 1 +301 1 FBIS3-21769 0 +301 1 FBIS3-21770 1 +301 1 FBIS3-21771 1 +301 1 FBIS3-21779 0 +301 1 FBIS3-21789 1 +301 1 FBIS3-21790 0 +301 1 FBIS3-21807 1 +301 1 FBIS3-21817 3 +301 1 FBIS3-21818 1 +301 1 FBIS3-21821 1 +301 1 FBIS3-21828 0 +301 1 FBIS3-21880 1 +301 1 FBIS3-21884 4 +301 1 FBIS3-21886 2 +301 1 FBIS3-21900 1 +301 1 FBIS3-21906 0 +301 1 FBIS3-21907 1 +301 1 FBIS3-21911 1 +301 1 FBIS3-21912 3 +301 1 FBIS3-21930 1 +301 1 FBIS3-21938 0 +301 1 FBIS3-21961 1 +301 1 FBIS3-21978 1 +301 1 FBIS3-21990 0 +301 1 FBIS3-21998 1 +301 1 FBIS3-21999 1 +301 1 FBIS3-22000 1 +301 1 FBIS3-22011 1 +301 1 FBIS3-22033 0 +301 1 FBIS3-22038 1 +301 1 FBIS3-22039 1 +301 1 FBIS3-22040 1 +301 1 FBIS3-22047 0 +301 1 FBIS3-22049 0 +301 1 FBIS3-22055 0 +301 1 FBIS3-22085 1 +301 1 FBIS3-22088 0 +301 1 FBIS3-22090 0 +301 1 FBIS3-22098 0 +301 1 FBIS3-22101 1 +301 1 FBIS3-23426 0 +301 1 FBIS3-23432 0 +301 1 FBIS3-23561 0 +301 1 FBIS3-23606 0 +301 1 FBIS3-23691 0 +301 1 FBIS3-23743 0 +301 1 FBIS3-23823 0 +301 1 FBIS3-2393 1 +301 1 FBIS3-23945 0 +301 1 FBIS3-23986 2 +301 1 FBIS3-24037 0 +301 1 FBIS3-24039 0 +301 1 FBIS3-24137 0 +301 1 FBIS3-24143 0 +301 1 FBIS3-24145 0 +301 1 FBIS3-24182 0 +301 1 FBIS3-24197 1 +301 1 FBIS3-24247 0 +301 1 FBIS3-24256 0 +301 1 FBIS3-24277 0 +301 1 FBIS3-24284 0 +301 1 FBIS3-24318 1 +301 1 FBIS3-24325 1 +301 1 FBIS3-24338 0 +301 1 FBIS3-24362 0 +301 1 FBIS3-24451 0 +301 1 FBIS3-24453 0 +301 1 FBIS3-2516 0 +301 1 FBIS3-25359 0 +301 1 FBIS3-25902 0 +301 1 FBIS3-26005 1 +301 1 FBIS3-2605 0 +301 1 FBIS3-26415 1 +301 1 FBIS3-26451 0 +301 1 FBIS3-26913 1 +301 1 FBIS3-26914 1 +301 1 FBIS3-27048 0 +301 1 FBIS3-27916 0 +301 1 FBIS3-28833 0 +301 1 FBIS3-29180 0 +301 1 FBIS3-3020 0 +301 1 FBIS3-31267 1 +301 1 FBIS3-31749 0 +301 1 FBIS3-3189 0 +301 1 FBIS3-3190 0 +301 1 FBIS3-3223 0 +301 1 FBIS3-32399 0 +301 1 FBIS3-32400 0 +301 1 FBIS3-32453 1 +301 1 FBIS3-32619 1 +301 1 FBIS3-32620 0 +301 1 FBIS3-32674 1 +301 1 FBIS3-32817 1 +301 1 FBIS3-32833 1 +301 1 FBIS3-32880 1 +301 1 FBIS3-33001 1 +301 1 FBIS3-3304 0 +301 1 FBIS3-33150 1 +301 1 FBIS3-33206 1 +301 1 FBIS3-33239 0 +301 1 FBIS3-33241 1 +301 1 FBIS3-33243 1 +301 1 FBIS3-33287 1 +301 1 FBIS3-33366 1 +301 1 FBIS3-33438 1 +301 1 FBIS3-33570 1 +301 1 FBIS3-33590 0 +301 1 FBIS3-33963 1 +301 1 FBIS3-34361 0 +301 1 FBIS3-34451 0 +301 1 FBIS3-34994 0 +301 1 FBIS3-35229 0 +301 1 FBIS3-36375 0 +301 1 FBIS3-36824 0 +301 1 FBIS3-36869 0 +301 1 FBIS3-37418 0 +301 1 FBIS3-37492 0 +301 1 FBIS3-37697 0 +301 1 FBIS3-37944 0 +301 1 FBIS3-37947 1 +301 1 FBIS3-38070 1 +301 1 FBIS3-38124 0 +301 1 FBIS3-38466 1 +301 1 FBIS3-38787 0 +301 1 FBIS3-38878 1 +301 1 FBIS3-39430 0 +301 1 FBIS3-39555 0 +301 1 FBIS3-39566 0 +301 1 FBIS3-40435 0 +301 1 FBIS3-40450 0 +301 1 FBIS3-40470 0 +301 1 FBIS3-40604 0 +301 1 FBIS3-41071 1 +301 1 FBIS3-41076 1 +301 1 FBIS3-41082 1 +301 1 FBIS3-41087 1 +301 1 FBIS3-41090 1 +301 1 FBIS3-41091 1 +301 1 FBIS3-41092 1 +301 1 FBIS3-41101 1 +301 1 FBIS3-41105 0 +301 1 FBIS3-41108 0 +301 1 FBIS3-41110 0 +301 1 FBIS3-41121 1 +301 1 FBIS3-41131 1 +301 1 FBIS3-41132 1 +301 1 FBIS3-41140 1 +301 1 FBIS3-41141 1 +301 1 FBIS3-41143 0 +301 1 FBIS3-41158 1 +301 1 FBIS3-41163 1 +301 1 FBIS3-41174 1 +301 1 FBIS3-41181 0 +301 1 FBIS3-41204 1 +301 1 FBIS3-41211 1 +301 1 FBIS3-41212 1 +301 1 FBIS3-41213 1 +301 1 FBIS3-41215 1 +301 1 FBIS3-41219 1 +301 1 FBIS3-41220 1 +301 1 FBIS3-41222 1 +301 1 FBIS3-41224 1 +301 1 FBIS3-41226 1 +301 1 FBIS3-41233 1 +301 1 FBIS3-41236 1 +301 1 FBIS3-41237 1 +301 1 FBIS3-41244 0 +301 1 FBIS3-41247 1 +301 1 FBIS3-41272 1 +301 1 FBIS3-41285 1 +301 1 FBIS3-41288 0 +301 1 FBIS3-41291 0 +301 1 FBIS3-41293 1 +301 1 FBIS3-41294 1 +301 1 FBIS3-41295 1 +301 1 FBIS3-41298 1 +301 1 FBIS3-41305 0 +301 1 FBIS3-41312 0 +301 1 FBIS3-41317 1 +301 1 FBIS3-41320 1 +301 1 FBIS3-41325 1 +301 1 FBIS3-41345 1 +301 1 FBIS3-41347 1 +301 1 FBIS3-41348 1 +301 1 FBIS3-41349 1 +301 1 FBIS3-41385 0 +301 1 FBIS3-41387 1 +301 1 FBIS3-41398 1 +301 1 FBIS3-41400 1 +301 1 FBIS3-41401 1 +301 1 FBIS3-41402 1 +301 1 FBIS3-41406 1 +301 1 FBIS3-41472 0 +301 1 FBIS3-41666 0 +301 1 FBIS3-41958 0 +301 1 FBIS3-4209 0 +301 1 FBIS3-42278 0 +301 1 FBIS3-42315 1 +301 1 FBIS3-42319 0 +301 1 FBIS3-42341 0 +301 1 FBIS3-42576 0 +301 1 FBIS3-42621 0 +301 1 FBIS3-42766 0 +301 1 FBIS3-42820 1 +301 1 FBIS3-42845 0 +301 1 FBIS3-43072 0 +301 1 FBIS3-43550 0 +301 1 FBIS3-44579 0 +301 1 FBIS3-45599 0 +301 1 FBIS3-45756 0 +301 1 FBIS3-46614 0 +301 1 FBIS3-46801 0 +301 1 FBIS3-47129 0 +301 1 FBIS3-47971 0 +301 1 FBIS3-48159 0 +301 1 FBIS3-48161 0 +301 1 FBIS3-48751 0 +301 1 FBIS3-49567 1 +301 1 FBIS3-50131 0 +301 1 FBIS3-50136 0 +301 1 FBIS3-50603 1 +301 1 FBIS3-50654 0 +301 1 FBIS3-50695 1 +301 1 FBIS3-51349 0 +301 1 FBIS3-51567 1 +301 1 FBIS3-51619 0 +301 1 FBIS3-51766 0 +301 1 FBIS3-51824 1 +301 1 FBIS3-52033 1 +301 1 FBIS3-52075 0 +301 1 FBIS3-52858 0 +301 1 FBIS3-54461 0 +301 1 FBIS3-54944 0 +301 1 FBIS3-54945 0 +301 1 FBIS3-55219 1 +301 1 FBIS3-55570 0 +301 1 FBIS3-55741 0 +301 1 FBIS3-55966 0 +301 1 FBIS3-56182 0 +301 1 FBIS3-57406 0 +301 1 FBIS3-5772 1 +301 1 FBIS3-57906 0 +301 1 FBIS3-57998 1 +301 1 FBIS3-58025 0 +301 1 FBIS3-58028 1 +301 1 FBIS3-58055 1 +301 1 FBIS3-58058 1 +301 1 FBIS3-58477 1 +301 1 FBIS3-58867 1 +301 1 FBIS3-59073 0 +301 1 FBIS3-59284 1 +301 1 FBIS3-59285 0 +301 1 FBIS3-5944 1 +301 1 FBIS3-59517 0 +301 1 FBIS3-59750 0 +301 1 FBIS3-59962 0 +301 1 FBIS3-59963 1 +301 1 FBIS3-59979 0 +301 1 FBIS3-60000 1 +301 1 FBIS3-60006 1 +301 1 FBIS3-60017 1 +301 1 FBIS3-60061 1 +301 1 FBIS3-60063 1 +301 1 FBIS3-60065 1 +301 1 FBIS3-60066 1 +301 1 FBIS3-60093 1 +301 1 FBIS3-60111 1 +301 1 FBIS3-60121 1 +301 1 FBIS3-60122 0 +301 1 FBIS3-60124 1 +301 1 FBIS3-60149 1 +301 1 FBIS3-60153 1 +301 1 FBIS3-60166 1 +301 1 FBIS3-60180 1 +301 1 FBIS3-60209 0 +301 1 FBIS3-60215 1 +301 1 FBIS3-60336 0 +301 1 FBIS3-60342 0 +301 1 FBIS3-60752 0 +301 1 FBIS3-60831 0 +301 1 FBIS3-60975 0 +301 1 FBIS3-60984 1 +301 1 FBIS3-61041 0 +301 1 FBIS3-61080 0 +301 1 FBIS3-61106 0 +301 1 FBIS3-61161 0 +301 1 FBIS3-61246 0 +301 1 FBIS3-61298 0 +301 1 FBIS3-61345 0 +301 1 FBIS3-61387 0 +301 1 FBIS3-61562 0 +301 1 FBIS3-7168 1 +301 1 FBIS3-8135 0 +301 1 FBIS3-9399 0 +301 1 FBIS3-9890 1 +301 1 FBIS3-9969 0 +301 1 FBIS3-9970 0 +301 1 FBIS4-10076 1 +301 1 FBIS4-10092 1 +301 1 FBIS4-10095 1 +301 1 FBIS4-10110 1 +301 1 FBIS4-10112 1 +301 1 FBIS4-10121 0 +301 1 FBIS4-10175 0 +301 1 FBIS4-10192 0 +301 1 FBIS4-10296 0 +301 1 FBIS4-10366 1 +301 1 FBIS4-10488 1 +301 1 FBIS4-10739 0 +301 1 FBIS4-10748 0 +301 1 FBIS4-10817 0 +301 1 FBIS4-10864 0 +301 1 FBIS4-11047 0 +301 1 FBIS4-11217 0 +301 1 FBIS4-14483 0 +301 1 FBIS4-14505 0 +301 1 FBIS4-15002 0 +301 1 FBIS4-1549 0 +301 1 FBIS4-1553 0 +301 1 FBIS4-16126 0 +301 1 FBIS4-1628 0 +301 1 FBIS4-16454 0 +301 1 FBIS4-16502 0 +301 1 FBIS4-16583 0 +301 1 FBIS4-1667 0 +301 1 FBIS4-16951 0 +301 1 FBIS4-17572 0 +301 1 FBIS4-17750 0 +301 1 FBIS4-1796 0 +301 1 FBIS4-18028 0 +301 1 FBIS4-18061 0 +301 1 FBIS4-18122 0 +301 1 FBIS4-1842 0 +301 1 FBIS4-1843 0 +301 1 FBIS4-1860 0 +301 1 FBIS4-1861 0 +301 1 FBIS4-1863 0 +301 1 FBIS4-1865 0 +301 1 FBIS4-1866 0 +301 1 FBIS4-19049 0 +301 1 FBIS4-1967 0 +301 1 FBIS4-19851 1 +301 1 FBIS4-2042 0 +301 1 FBIS4-20472 0 +301 1 FBIS4-20504 0 +301 1 FBIS4-20617 0 +301 1 FBIS4-2072 1 +301 1 FBIS4-20942 1 +301 1 FBIS4-20943 1 +301 1 FBIS4-20959 0 +301 1 FBIS4-20961 0 +301 1 FBIS4-20962 0 +301 1 FBIS4-20965 1 +301 1 FBIS4-20966 1 +301 1 FBIS4-20970 1 +301 1 FBIS4-20976 1 +301 1 FBIS4-20980 1 +301 1 FBIS4-20995 0 +301 1 FBIS4-21016 1 +301 1 FBIS4-21041 1 +301 1 FBIS4-2105 0 +301 1 FBIS4-21060 1 +301 1 FBIS4-21061 0 +301 1 FBIS4-21062 0 +301 1 FBIS4-21094 1 +301 1 FBIS4-21124 0 +301 1 FBIS4-21126 0 +301 1 FBIS4-21133 0 +301 1 FBIS4-21134 0 +301 1 FBIS4-21139 0 +301 1 FBIS4-21168 0 +301 1 FBIS4-21171 1 +301 1 FBIS4-21188 0 +301 1 FBIS4-21207 0 +301 1 FBIS4-21212 0 +301 1 FBIS4-21213 1 +301 1 FBIS4-21244 0 +301 1 FBIS4-21261 0 +301 1 FBIS4-2128 0 +301 1 FBIS4-21287 0 +301 1 FBIS4-21302 1 +301 1 FBIS4-21310 0 +301 1 FBIS4-21321 1 +301 1 FBIS4-21336 0 +301 1 FBIS4-21340 1 +301 1 FBIS4-21936 0 +301 1 FBIS4-2204 0 +301 1 FBIS4-22214 1 +301 1 FBIS4-22235 1 +301 1 FBIS4-22345 0 +301 1 FBIS4-22444 0 +301 1 FBIS4-22455 0 +301 1 FBIS4-22471 0 +301 1 FBIS4-22523 0 +301 1 FBIS4-22537 0 +301 1 FBIS4-22596 0 +301 1 FBIS4-22768 1 +301 1 FBIS4-22779 0 +301 1 FBIS4-24388 0 +301 1 FBIS4-2439 0 +301 1 FBIS4-24523 1 +301 1 FBIS4-25032 0 +301 1 FBIS4-26003 0 +301 1 FBIS4-26127 0 +301 1 FBIS4-26192 0 +301 1 FBIS4-26323 1 +301 1 FBIS4-26335 0 +301 1 FBIS4-26351 0 +301 1 FBIS4-26415 0 +301 1 FBIS4-26788 0 +301 1 FBIS4-26902 1 +301 1 FBIS4-27085 0 +301 1 FBIS4-27100 1 +301 1 FBIS4-2721 0 +301 1 FBIS4-27336 0 +301 1 FBIS4-2734 0 +301 1 FBIS4-27391 0 +301 1 FBIS4-27942 0 +301 1 FBIS4-29003 0 +301 1 FBIS4-2931 1 +301 1 FBIS4-30024 0 +301 1 FBIS4-3044 0 +301 1 FBIS4-31295 1 +301 1 FBIS4-31645 1 +301 1 FBIS4-31787 0 +301 1 FBIS4-3230 0 +301 1 FBIS4-33188 1 +301 1 FBIS4-33584 1 +301 1 FBIS4-3367 0 +301 1 FBIS4-3370 0 +301 1 FBIS4-33785 0 +301 1 FBIS4-33867 0 +301 1 FBIS4-33868 0 +301 1 FBIS4-34471 0 +301 1 FBIS4-34515 0 +301 1 FBIS4-34538 0 +301 1 FBIS4-34613 0 +301 1 FBIS4-34616 1 +301 1 FBIS4-34647 1 +301 1 FBIS4-34666 0 +301 1 FBIS4-34836 1 +301 1 FBIS4-34879 0 +301 1 FBIS4-37650 1 +301 1 FBIS4-37795 0 +301 1 FBIS4-38095 0 +301 1 FBIS4-38364 1 +301 1 FBIS4-38410 0 +301 1 FBIS4-38482 0 +301 1 FBIS4-39330 0 +301 1 FBIS4-39493 0 +301 1 FBIS4-39759 0 +301 1 FBIS4-40181 0 +301 1 FBIS4-40260 0 +301 1 FBIS4-40359 0 +301 1 FBIS4-40452 0 +301 1 FBIS4-40482 0 +301 1 FBIS4-40514 0 +301 1 FBIS4-4063 0 +301 1 FBIS4-4067 0 +301 1 FBIS4-40720 0 +301 1 FBIS4-40805 1 +301 1 FBIS4-40930 0 +301 1 FBIS4-40932 0 +301 1 FBIS4-40934 0 +301 1 FBIS4-40935 0 +301 1 FBIS4-40936 0 +301 1 FBIS4-41144 0 +301 1 FBIS4-41215 0 +301 1 FBIS4-41223 0 +301 1 FBIS4-41394 0 +301 1 FBIS4-41395 0 +301 1 FBIS4-41396 0 +301 1 FBIS4-41398 0 +301 1 FBIS4-41538 0 +301 1 FBIS4-41541 0 +301 1 FBIS4-41684 0 +301 1 FBIS4-41687 1 +301 1 FBIS4-41832 0 +301 1 FBIS4-41839 0 +301 1 FBIS4-41860 0 +301 1 FBIS4-41863 0 +301 1 FBIS4-41952 0 +301 1 FBIS4-41976 0 +301 1 FBIS4-41991 0 +301 1 FBIS4-42499 1 +301 1 FBIS4-42757 1 +301 1 FBIS4-43152 1 +301 1 FBIS4-43533 1 +301 1 FBIS4-43552 1 +301 1 FBIS4-43791 0 +301 1 FBIS4-43797 1 +301 1 FBIS4-43801 1 +301 1 FBIS4-43965 1 +301 1 FBIS4-44181 0 +301 1 FBIS4-45158 1 +301 1 FBIS4-45166 0 +301 1 FBIS4-45172 0 +301 1 FBIS4-45175 1 +301 1 FBIS4-45195 0 +301 1 FBIS4-45205 0 +301 1 FBIS4-45230 1 +301 1 FBIS4-45239 1 +301 1 FBIS4-45251 1 +301 1 FBIS4-45257 1 +301 1 FBIS4-45277 1 +301 1 FBIS4-45278 1 +301 1 FBIS4-45280 1 +301 1 FBIS4-45315 0 +301 1 FBIS4-45330 1 +301 1 FBIS4-45333 1 +301 1 FBIS4-45345 1 +301 1 FBIS4-45346 0 +301 1 FBIS4-45383 1 +301 1 FBIS4-45398 1 +301 1 FBIS4-45413 1 +301 1 FBIS4-45414 1 +301 1 FBIS4-45417 0 +301 1 FBIS4-45419 1 +301 1 FBIS4-45425 1 +301 1 FBIS4-45434 1 +301 1 FBIS4-45440 0 +301 1 FBIS4-45453 0 +301 1 FBIS4-45469 1 +301 1 FBIS4-45477 1 +301 1 FBIS4-45482 0 +301 1 FBIS4-45495 0 +301 1 FBIS4-45503 1 +301 1 FBIS4-45518 1 +301 1 FBIS4-45519 1 +301 1 FBIS4-45552 0 +301 1 FBIS4-45571 1 +301 1 FBIS4-46425 1 +301 1 FBIS4-46574 0 +301 1 FBIS4-46584 0 +301 1 FBIS4-46588 0 +301 1 FBIS4-46648 0 +301 1 FBIS4-46649 0 +301 1 FBIS4-46730 0 +301 1 FBIS4-46733 0 +301 1 FBIS4-46734 0 +301 1 FBIS4-46757 0 +301 1 FBIS4-46775 0 +301 1 FBIS4-46780 1 +301 1 FBIS4-46806 0 +301 1 FBIS4-46846 1 +301 1 FBIS4-46857 0 +301 1 FBIS4-46935 0 +301 1 FBIS4-47008 0 +301 1 FBIS4-47045 0 +301 1 FBIS4-47046 0 +301 1 FBIS4-47200 0 +301 1 FBIS4-49021 0 +301 1 FBIS4-49075 0 +301 1 FBIS4-49289 0 +301 1 FBIS4-49667 0 +301 1 FBIS4-49754 0 +301 1 FBIS4-49845 0 +301 1 FBIS4-50083 0 +301 1 FBIS4-50478 0 +301 1 FBIS4-50901 0 +301 1 FBIS4-50956 0 +301 1 FBIS4-50993 0 +301 1 FBIS4-51335 0 +301 1 FBIS4-52002 0 +301 1 FBIS4-52093 0 +301 1 FBIS4-52587 0 +301 1 FBIS4-53424 1 +301 1 FBIS4-54126 0 +301 1 FBIS4-54227 1 +301 1 FBIS4-54287 0 +301 1 FBIS4-54501 0 +301 1 FBIS4-54604 0 +301 1 FBIS4-54904 1 +301 1 FBIS4-55395 0 +301 1 FBIS4-56290 0 +301 1 FBIS4-56434 1 +301 1 FBIS4-56467 1 +301 1 FBIS4-56471 1 +301 1 FBIS4-56487 1 +301 1 FBIS4-56513 1 +301 1 FBIS4-56524 0 +301 1 FBIS4-56605 1 +301 1 FBIS4-56693 1 +301 1 FBIS4-56776 0 +301 1 FBIS4-56803 1 +301 1 FBIS4-56930 1 +301 1 FBIS4-56965 1 +301 1 FBIS4-56974 1 +301 1 FBIS4-56982 1 +301 1 FBIS4-56992 1 +301 1 FBIS4-57053 0 +301 1 FBIS4-57121 0 +301 1 FBIS4-57301 1 +301 1 FBIS4-57322 1 +301 1 FBIS4-57754 1 +301 1 FBIS4-57869 1 +301 1 FBIS4-57987 1 +301 1 FBIS4-58122 0 +301 1 FBIS4-60945 0 +301 1 FBIS4-61644 0 +301 1 FBIS4-61663 0 +301 1 FBIS4-62028 1 +301 1 FBIS4-62049 0 +301 1 FBIS4-62078 0 +301 1 FBIS4-62079 0 +301 1 FBIS4-62372 0 +301 1 FBIS4-63153 0 +301 1 FBIS4-63597 0 +301 1 FBIS4-64135 0 +301 1 FBIS4-64345 0 +301 1 FBIS4-6448 0 +301 1 FBIS4-65446 0 +301 1 FBIS4-65501 0 +301 1 FBIS4-65806 1 +301 1 FBIS4-66122 0 +301 1 FBIS4-66308 0 +301 1 FBIS4-66382 0 +301 1 FBIS4-66940 1 +301 1 FBIS4-66950 1 +301 1 FBIS4-66951 1 +301 1 FBIS4-66952 1 +301 1 FBIS4-66973 1 +301 1 FBIS4-66974 1 +301 1 FBIS4-67000 1 +301 1 FBIS4-67003 0 +301 1 FBIS4-67005 0 +301 1 FBIS4-67027 1 +301 1 FBIS4-67046 0 +301 1 FBIS4-67051 1 +301 1 FBIS4-67058 1 +301 1 FBIS4-67062 1 +301 1 FBIS4-67072 1 +301 1 FBIS4-67135 1 +301 1 FBIS4-67140 1 +301 1 FBIS4-67144 1 +301 1 FBIS4-67149 0 +301 1 FBIS4-67150 1 +301 1 FBIS4-67156 1 +301 1 FBIS4-67165 0 +301 1 FBIS4-67169 1 +301 1 FBIS4-67170 1 +301 1 FBIS4-67176 1 +301 1 FBIS4-67178 1 +301 1 FBIS4-67183 1 +301 1 FBIS4-67184 1 +301 1 FBIS4-67227 1 +301 1 FBIS4-67239 1 +301 1 FBIS4-67244 0 +301 1 FBIS4-67246 1 +301 1 FBIS4-67263 0 +301 1 FBIS4-67273 0 +301 1 FBIS4-67281 1 +301 1 FBIS4-67292 1 +301 1 FBIS4-67331 1 +301 1 FBIS4-67334 1 +301 1 FBIS4-67336 1 +301 1 FBIS4-67341 0 +301 1 FBIS4-67492 1 +301 1 FBIS4-67942 1 +301 1 FBIS4-68096 0 +301 1 FBIS4-68348 0 +301 1 FBIS4-68349 0 +301 1 FBIS4-68416 0 +301 1 FBIS4-68426 0 +301 1 FBIS4-68498 0 +301 1 FBIS4-68542 0 +301 1 FBIS4-68582 0 +301 1 FBIS4-68653 0 +301 1 FBIS4-68746 0 +301 1 FBIS4-68801 1 +301 1 FBIS4-68847 0 +301 1 FBIS4-68893 0 +301 1 FBIS4-7006 0 +301 1 FBIS4-7688 0 +301 1 FBIS4-7811 1 +301 1 FBIS4-865 0 +301 1 FBIS4-891 0 +301 1 FBIS4-8957 1 +301 1 FBIS4-9354 0 +301 1 FBIS4-9451 0 +301 1 FBIS4-9687 1 +301 1 FBIS4-9819 0 +301 1 FBIS4-9843 1 +301 1 FBIS4-9965 0 +301 1 FR940112-2-00076 0 +301 1 FR940128-2-00139 0 +301 1 FR940202-2-00149 0 +301 1 FR940202-2-00150 0 +301 1 FR940202-2-00151 0 +301 1 FR940202-2-00153 0 +301 1 FR940202-2-00154 0 +301 1 FR940203-1-00036 0 +301 1 FR940203-2-00129 0 +301 1 FR940203-2-00142 0 +301 1 FR940217-1-00073 0 +301 1 FR940223-2-00242 0 +301 1 FR940303-1-00022 0 +301 1 FR940303-2-00208 0 +301 1 FR940314-0-00010 0 +301 1 FR940314-1-00041 0 +301 1 FR940324-2-00091 0 +301 1 FR940328-2-00122 0 +301 1 FR940406-2-00067 0 +301 1 FR940406-2-00175 0 +301 1 FR940412-2-00124 0 +301 1 FR940412-2-00131 0 +301 1 FR940425-2-00078 0 +301 1 FR940425-2-00079 0 +301 1 FR940425-2-00080 0 +301 1 FR940425-2-00081 0 +301 1 FR940429-0-00128 0 +301 1 FR940503-2-00145 0 +301 1 FR940503-2-00146 0 +301 1 FR940503-2-00147 0 +301 1 FR940503-2-00165 0 +301 1 FR940503-2-00169 0 +301 1 FR940503-2-00170 0 +301 1 FR940511-0-00066 0 +301 1 FR940511-2-00139 0 +301 1 FR940511-2-00206 0 +301 1 FR940513-2-00097 0 +301 1 FR940513-2-00103 0 +301 1 FR940516-2-00139 0 +301 1 FR940525-2-00052 0 +301 1 FR940525-2-00068 0 +301 1 FR940526-2-00033 0 +301 1 FR940527-2-00068 0 +301 1 FR940527-2-00069 0 +301 1 FR940603-2-00059 0 +301 1 FR940603-2-00060 0 +301 1 FR940603-2-00158 0 +301 1 FR940610-2-00058 0 +301 1 FR940610-2-00072 0 +301 1 FR940620-1-00004 0 +301 1 FR940620-1-00005 0 +301 1 FR940620-1-00006 0 +301 1 FR940620-1-00007 0 +301 1 FR940620-1-00008 0 +301 1 FR940620-1-00009 0 +301 1 FR940622-2-00053 0 +301 1 FR940627-2-00036 0 +301 1 FR940627-2-00068 0 +301 1 FR940630-2-00168 0 +301 1 FR940630-2-00169 0 +301 1 FR940707-2-00112 0 +301 1 FR940707-2-00113 0 +301 1 FR940707-2-00114 0 +301 1 FR940711-2-00093 0 +301 1 FR940711-2-00096 0 +301 1 FR940712-2-00059 0 +301 1 FR940712-2-00065 0 +301 1 FR940713-2-00064 0 +301 1 FR940713-2-00172 0 +301 1 FR940713-2-00178 0 +301 1 FR940721-2-00075 0 +301 1 FR940727-0-00077 0 +301 1 FR940727-0-00078 0 +301 1 FR940727-0-00079 0 +301 1 FR940727-0-00091 0 +301 1 FR940727-0-00092 0 +301 1 FR940727-0-00093 0 +301 1 FR940727-0-00096 0 +301 1 FR940728-2-00151 0 +301 1 FR940804-0-00127 0 +301 1 FR940804-2-00088 0 +301 1 FR940811-0-00030 0 +301 1 FR940816-2-00057 0 +301 1 FR940825-2-00077 0 +301 1 FR940825-2-00078 0 +301 1 FR940825-2-00189 0 +301 1 FR940830-2-00003 0 +301 1 FR940902-1-00048 0 +301 1 FR940920-2-00045 0 +301 1 FR940922-2-00125 0 +301 1 FR940930-2-00057 0 +301 1 FR940930-2-00058 0 +301 1 FR940930-2-00063 0 +301 1 FR941004-1-00089 0 +301 1 FR941006-2-00013 0 +301 1 FR941006-2-00171 0 +301 1 FR941107-0-00034 0 +301 1 FR941128-2-00187 0 +301 1 FR941206-1-00134 0 +301 1 FR941221-2-00127 0 +301 1 FR941221-2-00130 0 +301 1 FR941221-2-00131 0 +301 1 FR941230-2-00127 0 +301 1 FR941230-2-00137 0 +301 1 FR941230-2-00138 0 +301 1 FR941230-2-00139 0 +301 1 FR941230-2-00150 0 +301 1 FT911-1237 0 +301 1 FT911-1697 0 +301 1 FT911-1821 0 +301 1 FT911-2267 0 +301 1 FT911-2671 0 +301 1 FT911-2685 0 +301 1 FT911-2704 0 +301 1 FT911-2706 0 +301 1 FT911-3036 0 +301 1 FT911-3105 0 +301 1 FT911-3453 0 +301 1 FT911-4494 0 +301 1 FT911-456 0 +301 1 FT911-4634 0 +301 1 FT911-4747 0 +301 1 FT911-5227 0 +301 1 FT911-629 0 +301 1 FT911-71 0 +301 1 FT921-10107 0 +301 1 FT921-10162 1 +301 1 FT921-10163 0 +301 1 FT921-10280 1 +301 1 FT921-10350 0 +301 1 FT921-10427 0 +301 1 FT921-10848 0 +301 1 FT921-11079 0 +301 1 FT921-11686 0 +301 1 FT921-12538 0 +301 1 FT921-1349 0 +301 1 FT921-13664 0 +301 1 FT921-14967 0 +301 1 FT921-15491 0 +301 1 FT921-16129 0 +301 1 FT921-16130 0 +301 1 FT921-1614 0 +301 1 FT921-1844 0 +301 1 FT921-2590 0 +301 1 FT921-3256 0 +301 1 FT921-4090 0 +301 1 FT921-4265 0 +301 1 FT921-4322 0 +301 1 FT921-5503 0 +301 1 FT921-6487 0 +301 1 FT921-6506 0 +301 1 FT921-6865 0 +301 1 FT921-6986 0 +301 1 FT921-6988 0 +301 1 FT921-7663 0 +301 1 FT921-8089 0 +301 1 FT921-8188 0 +301 1 FT921-861 0 +301 1 FT922-10933 0 +301 1 FT922-11540 0 +301 1 FT922-13596 1 +301 1 FT922-14858 0 +301 1 FT922-14992 0 +301 1 FT922-15159 0 +301 1 FT922-15176 0 +301 1 FT922-3844 0 +301 1 FT922-4774 0 +301 1 FT922-4887 0 +301 1 FT922-5041 0 +301 1 FT922-565 0 +301 1 FT922-616 0 +301 1 FT922-7190 0 +301 1 FT922-790 0 +301 1 FT922-8144 0 +301 1 FT922-8257 0 +301 1 FT922-8731 0 +301 1 FT922-9654 0 +301 1 FT923-10224 0 +301 1 FT923-10456 0 +301 1 FT923-10584 0 +301 1 FT923-11086 0 +301 1 FT923-11460 0 +301 1 FT923-11560 0 +301 1 FT923-11687 0 +301 1 FT923-11785 0 +301 1 FT923-12102 0 +301 1 FT923-12278 0 +301 1 FT923-13103 0 +301 1 FT923-1313 0 +301 1 FT923-14709 1 +301 1 FT923-2038 0 +301 1 FT923-2301 0 +301 1 FT923-2345 0 +301 1 FT923-2348 0 +301 1 FT923-3034 1 +301 1 FT923-332 0 +301 1 FT923-3617 0 +301 1 FT923-365 1 +301 1 FT923-4083 0 +301 1 FT923-466 0 +301 1 FT923-5301 0 +301 1 FT923-5751 0 +301 1 FT923-7842 0 +301 1 FT923-7884 0 +301 1 FT923-8084 0 +301 1 FT924-10092 0 +301 1 FT924-10320 0 +301 1 FT924-10713 0 +301 1 FT924-10861 0 +301 1 FT924-11258 0 +301 1 FT924-11339 1 +301 1 FT924-11606 0 +301 1 FT924-1186 0 +301 1 FT924-11989 0 +301 1 FT924-12138 0 +301 1 FT924-12220 0 +301 1 FT924-13611 1 +301 1 FT924-227 0 +301 1 FT924-2736 0 +301 1 FT924-2822 0 +301 1 FT924-2857 0 +301 1 FT924-3498 0 +301 1 FT924-4782 1 +301 1 FT924-5359 0 +301 1 FT924-6421 0 +301 1 FT924-6543 0 +301 1 FT924-6677 0 +301 1 FT924-9271 0 +301 1 FT924-949 0 +301 1 FT924-9745 0 +301 1 FT931-10356 0 +301 1 FT931-1053 0 +301 1 FT931-11647 0 +301 1 FT931-11843 0 +301 1 FT931-11924 0 +301 1 FT931-13292 0 +301 1 FT931-14697 1 +301 1 FT931-16394 0 +301 1 FT931-16398 0 +301 1 FT931-2175 0 +301 1 FT931-2379 0 +301 1 FT931-2401 0 +301 1 FT931-249 0 +301 1 FT931-3563 1 +301 1 FT931-3941 1 +301 1 FT931-4089 0 +301 1 FT931-4165 0 +301 1 FT931-4939 0 +301 1 FT931-4977 0 +301 1 FT931-5072 0 +301 1 FT931-6121 0 +301 1 FT931-6235 0 +301 1 FT931-682 0 +301 1 FT931-7337 0 +301 1 FT931-7529 0 +301 1 FT931-7536 0 +301 1 FT931-7881 0 +301 1 FT931-8991 0 +301 1 FT931-9181 0 +301 1 FT931-9535 0 +301 1 FT931-9665 0 +301 1 FT931-9667 0 +301 1 FT931-9798 0 +301 1 FT932-1131 0 +301 1 FT932-11505 0 +301 1 FT932-12261 0 +301 1 FT932-12610 0 +301 1 FT932-13676 0 +301 1 FT932-14690 0 +301 1 FT932-2315 0 +301 1 FT932-2874 0 +301 1 FT932-3130 1 +301 1 FT932-3286 0 +301 1 FT932-3322 0 +301 1 FT932-3329 0 +301 1 FT932-3331 0 +301 1 FT932-3336 0 +301 1 FT932-3338 0 +301 1 FT932-41 0 +301 1 FT932-4538 0 +301 1 FT932-4950 0 +301 1 FT932-4965 1 +301 1 FT932-5074 0 +301 1 FT932-5376 1 +301 1 FT932-5377 1 +301 1 FT932-5629 0 +301 1 FT932-5672 0 +301 1 FT932-6233 0 +301 1 FT932-6340 0 +301 1 FT932-6347 0 +301 1 FT932-7056 1 +301 1 FT932-7266 0 +301 1 FT932-7295 0 +301 1 FT932-8233 0 +301 1 FT933-10064 0 +301 1 FT933-11054 0 +301 1 FT933-11067 0 +301 1 FT933-11804 1 +301 1 FT933-12030 0 +301 1 FT933-1329 0 +301 1 FT933-1331 0 +301 1 FT933-1338 0 +301 1 FT933-13408 0 +301 1 FT933-13528 0 +301 1 FT933-15522 0 +301 1 FT933-15581 0 +301 1 FT933-15697 0 +301 1 FT933-1600 0 +301 1 FT933-16366 0 +301 1 FT933-16962 0 +301 1 FT933-17008 1 +301 1 FT933-1718 0 +301 1 FT933-2139 0 +301 1 FT933-2224 1 +301 1 FT933-279 0 +301 1 FT933-4677 0 +301 1 FT933-550 0 +301 1 FT933-582 0 +301 1 FT933-6786 0 +301 1 FT933-6924 0 +301 1 FT933-6966 0 +301 1 FT933-6971 0 +301 1 FT933-7993 0 +301 1 FT933-8067 0 +301 1 FT934-10491 1 +301 1 FT934-10543 0 +301 1 FT934-10783 0 +301 1 FT934-11015 0 +301 1 FT934-11658 0 +301 1 FT934-11945 0 +301 1 FT934-12578 0 +301 1 FT934-13302 0 +301 1 FT934-14820 0 +301 1 FT934-16551 0 +301 1 FT934-17146 0 +301 1 FT934-2267 0 +301 1 FT934-2699 0 +301 1 FT934-3452 0 +301 1 FT934-4154 0 +301 1 FT934-4340 0 +301 1 FT934-4582 0 +301 1 FT934-5231 0 +301 1 FT934-5726 0 +301 1 FT934-5891 0 +301 1 FT934-6874 0 +301 1 FT934-7013 0 +301 1 FT934-7093 0 +301 1 FT934-7094 0 +301 1 FT934-7631 0 +301 1 FT934-7660 0 +301 1 FT934-8411 0 +301 1 FT934-8545 0 +301 1 FT934-8632 0 +301 1 FT934-8633 0 +301 1 FT934-8640 0 +301 1 FT941-10546 0 +301 1 FT941-10611 1 +301 1 FT941-11262 0 +301 1 FT941-11279 0 +301 1 FT941-11449 0 +301 1 FT941-11505 0 +301 1 FT941-12402 0 +301 1 FT941-12805 0 +301 1 FT941-13151 1 +301 1 FT941-13349 0 +301 1 FT941-14742 0 +301 1 FT941-14810 0 +301 1 FT941-15027 0 +301 1 FT941-15378 0 +301 1 FT941-15631 0 +301 1 FT941-1682 0 +301 1 FT941-16929 0 +301 1 FT941-17064 0 +301 1 FT941-2244 0 +301 1 FT941-3237 1 +301 1 FT941-4259 0 +301 1 FT941-5289 0 +301 1 FT941-5453 1 +301 1 FT941-8491 0 +301 1 FT941-8966 0 +301 1 FT941-9876 0 +301 1 FT942-10163 0 +301 1 FT942-10977 0 +301 1 FT942-11067 0 +301 1 FT942-11396 0 +301 1 FT942-12197 0 +301 1 FT942-13293 0 +301 1 FT942-13766 0 +301 1 FT942-14060 0 +301 1 FT942-1417 0 +301 1 FT942-14542 0 +301 1 FT942-14609 0 +301 1 FT942-14967 0 +301 1 FT942-15220 0 +301 1 FT942-16403 0 +301 1 FT942-17001 1 +301 1 FT942-17066 0 +301 1 FT942-1711 0 +301 1 FT942-1715 0 +301 1 FT942-187 0 +301 1 FT942-2876 0 +301 1 FT942-2882 0 +301 1 FT942-3474 0 +301 1 FT942-3714 0 +301 1 FT942-4368 0 +301 1 FT942-5157 0 +301 1 FT942-5274 0 +301 1 FT942-5466 0 +301 1 FT942-6404 0 +301 1 FT942-6526 0 +301 1 FT942-7117 0 +301 1 FT942-7322 0 +301 1 FT942-7335 0 +301 1 FT942-7403 0 +301 1 FT942-792 1 +301 1 FT942-852 0 +301 1 FT942-8529 0 +301 1 FT942-8530 0 +301 1 FT942-8808 0 +301 1 FT942-885 0 +301 1 FT942-933 0 +301 1 FT942-9466 0 +301 1 FT942-9490 0 +301 1 FT942-9715 0 +301 1 FT943-11739 0 +301 1 FT943-12965 0 +301 1 FT943-13315 0 +301 1 FT943-13339 0 +301 1 FT943-14383 0 +301 1 FT943-15429 0 +301 1 FT943-15437 0 +301 1 FT943-15910 0 +301 1 FT943-16238 4 +301 1 FT943-16477 4 +301 1 FT943-16618 0 +301 1 FT943-2156 0 +301 1 FT943-2588 0 +301 1 FT943-295 0 +301 1 FT943-3533 2 +301 1 FT943-3953 0 +301 1 FT943-4417 0 +301 1 FT943-505 0 +301 1 FT943-5051 0 +301 1 FT943-5111 0 +301 1 FT943-5179 0 +301 1 FT943-5341 0 +301 1 FT943-5355 0 +301 1 FT943-5577 0 +301 1 FT943-6423 0 +301 1 FT943-726 0 +301 1 FT943-8128 0 +301 1 FT943-8527 0 +301 1 FT943-8670 0 +301 1 FT943-8942 0 +301 1 FT943-8961 0 +301 1 FT944-10136 0 +301 1 FT944-10634 0 +301 1 FT944-10635 2 +301 1 FT944-10673 0 +301 1 FT944-10675 0 +301 1 FT944-10676 0 +301 1 FT944-10779 0 +301 1 FT944-11113 0 +301 1 FT944-11625 0 +301 1 FT944-12104 0 +301 1 FT944-12173 1 +301 1 FT944-12949 0 +301 1 FT944-1350 0 +301 1 FT944-14183 0 +301 1 FT944-14184 0 +301 1 FT944-15443 0 +301 1 FT944-15444 0 +301 1 FT944-1692 0 +301 1 FT944-1808 1 +301 1 FT944-18166 0 +301 1 FT944-18167 0 +301 1 FT944-18184 0 +301 1 FT944-2231 1 +301 1 FT944-2497 0 +301 1 FT944-2600 0 +301 1 FT944-3492 0 +301 1 FT944-4020 0 +301 1 FT944-4116 0 +301 1 FT944-4735 0 +301 1 FT944-4901 0 +301 1 FT944-5537 0 +301 1 FT944-5679 0 +301 1 FT944-5749 0 +301 1 FT944-7669 1 +301 1 FT944-7867 0 +301 1 FT944-8161 0 +301 1 FT944-8297 1 +301 1 LA010290-0076 0 +301 1 LA010590-0084 1 +301 1 LA011290-0184 0 +301 1 LA011390-0046 1 +301 1 LA011390-0156 1 +301 1 LA011490-0115 1 +301 1 LA011790-0128 1 +301 1 LA011890-0125 1 +301 1 LA011990-0102 1 +301 1 LA012090-0101 0 +301 1 LA012190-0120 1 +301 1 LA012290-0053 0 +301 1 LA012690-0169 1 +301 1 LA012890-0073 1 +301 1 LA013190-0012 0 +301 1 LA021089-0177 0 +301 1 LA021590-0204 1 +301 1 LA021690-0049 1 +301 1 LA021790-0127 0 +301 1 LA022590-0191 1 +301 1 LA022689-0075 0 +301 1 LA022790-0089 1 +301 1 LA030290-0106 0 +301 1 LA030490-0017 0 +301 1 LA030490-0071 0 +301 1 LA031190-0216 0 +301 1 LA031289-0074 0 +301 1 LA031490-0140 0 +301 1 LA031690-0077 0 +301 1 LA032090-0091 0 +301 1 LA032189-0097 0 +301 1 LA032790-0103 1 +301 1 LA040689-0155 0 +301 1 LA041189-0055 0 +301 1 LA041389-0038 1 +301 1 LA041390-0018 0 +301 1 LA041589-0014 0 +301 1 LA041689-0150 1 +301 1 LA041689-0190 0 +301 1 LA041690-0050 0 +301 1 LA041690-0051 0 +301 1 LA041789-0008 0 +301 1 LA041790-0054 0 +301 1 LA041790-0055 0 +301 1 LA041890-0075 1 +301 1 LA041989-0027 0 +301 1 LA042190-0078 0 +301 1 LA042289-0040 0 +301 1 LA042390-0099 0 +301 1 LA042690-0169 0 +301 1 LA042890-0015 0 +301 1 LA042890-0151 0 +301 1 LA042989-0116 0 +301 1 LA043089-0169 0 +301 1 LA050189-0063 0 +301 1 LA050489-0093 0 +301 1 LA050590-0027 0 +301 1 LA050590-0048 0 +301 1 LA050690-0134 1 +301 1 LA050690-0145 0 +301 1 LA050690-0149 0 +301 1 LA050789-0006 1 +301 1 LA050789-0007 1 +301 1 LA050990-0077 0 +301 1 LA050990-0078 0 +301 1 LA050990-0116 0 +301 1 LA051190-0064 0 +301 1 LA051389-0039 1 +301 1 LA051390-0175 1 +301 1 LA051590-0064 0 +301 1 LA051690-0108 1 +301 1 LA052090-0088 0 +301 1 LA052090-0143 1 +301 1 LA052189-0123 0 +301 1 LA052190-0021 0 +301 1 LA052190-0064 1 +301 1 LA052289-0047 0 +301 1 LA052490-0139 0 +301 1 LA052690-0037 0 +301 1 LA052690-0142 0 +301 1 LA052890-0046 0 +301 1 LA052990-0018 0 +301 1 LA053089-0075 0 +301 1 LA053190-0175 0 +301 1 LA060489-0196 0 +301 1 LA060490-0021 0 +301 1 LA060490-0122 0 +301 1 LA060590-0010 0 +301 1 LA060790-0159 0 +301 1 LA060990-0077 0 +301 1 LA061189-0173 0 +301 1 LA061190-0085 0 +301 1 LA061190-0112 0 +301 1 LA061289-0051 0 +301 1 LA061290-0117 0 +301 1 LA061389-0060 0 +301 1 LA061390-0056 0 +301 1 LA061490-0229 0 +301 1 LA061590-0010 0 +301 1 LA061690-0021 0 +301 1 LA061690-0030 0 +301 1 LA061789-0027 0 +301 1 LA061789-0028 0 +301 1 LA061790-0205 0 +301 1 LA062090-0094 0 +301 1 LA062189-0012 0 +301 1 LA062189-0052 0 +301 1 LA062189-0067 0 +301 1 LA062390-0041 0 +301 1 LA062690-0041 0 +301 1 LA062890-0206 0 +301 1 LA062989-0196 1 +301 1 LA063089-0061 1 +301 1 LA070289-0147 0 +301 1 LA070289-0171 1 +301 1 LA070290-0003 0 +301 1 LA070290-0051 0 +301 1 LA070590-0016 0 +301 1 LA070590-0097 0 +301 1 LA070689-0122 1 +301 1 LA070690-0095 0 +301 1 LA070790-0061 0 +301 1 LA070890-0079 0 +301 1 LA070890-0080 0 +301 1 LA071089-0065 0 +301 1 LA071190-0028 0 +301 1 LA071290-0123 1 +301 1 LA071489-0020 1 +301 1 LA071490-0024 0 +301 1 LA071690-0047 1 +301 1 LA071889-0026 0 +301 1 LA071990-0150 0 +301 1 LA071990-0165 0 +301 1 LA072090-0146 0 +301 1 LA072090-0147 0 +301 1 LA072490-0033 0 +301 1 LA072590-0115 0 +301 1 LA072689-0016 0 +301 1 LA072789-0050 0 +301 1 LA072890-0052 0 +301 1 LA073189-0043 0 +301 1 LA080489-0020 0 +301 1 LA080590-0195 0 +301 1 LA080689-0093 0 +301 1 LA080889-0098 0 +301 1 LA080890-0044 0 +301 1 LA080989-0129 0 +301 1 LA080990-0216 0 +301 1 LA081089-0167 1 +301 1 LA081190-0051 0 +301 1 LA081190-0108 0 +301 1 LA081589-0042 0 +301 1 LA081690-0102 0 +301 1 LA081789-0093 1 +301 1 LA081790-0083 0 +301 1 LA081889-0147 1 +301 1 LA081989-0048 0 +301 1 LA081990-0158 0 +301 1 LA082089-0163 0 +301 1 LA082190-0014 0 +301 1 LA082190-0015 0 +301 1 LA082389-0028 0 +301 1 LA082389-0039 1 +301 1 LA082390-0176 0 +301 1 LA082489-0035 0 +301 1 LA082589-0079 1 +301 1 LA082589-0090 1 +301 1 LA082590-0019 0 +301 1 LA082689-0044 1 +301 1 LA082689-0054 1 +301 1 LA082789-0018 1 +301 1 LA082790-0022 1 +301 1 LA082889-0047 1 +301 1 LA082889-0056 1 +301 1 LA082989-0074 0 +301 1 LA083089-0017 1 +301 1 LA083089-0069 1 +301 1 LA083089-0072 1 +301 1 LA090189-0018 0 +301 1 LA090389-0097 0 +301 1 LA090389-0100 0 +301 1 LA090689-0015 0 +301 1 LA090689-0125 1 +301 1 LA090689-0130 1 +301 1 LA090690-0234 0 +301 1 LA090989-0075 1 +301 1 LA091089-0170 0 +301 1 LA091089-0172 0 +301 1 LA091089-0187 0 +301 1 LA091090-0038 0 +301 1 LA091189-0110 1 +301 1 LA091190-0096 0 +301 1 LA091190-0102 0 +301 1 LA091289-0135 1 +301 1 LA091289-0136 1 +301 1 LA091389-0053 1 +301 1 LA091390-0046 0 +301 1 LA091589-0045 1 +301 1 LA091689-0028 0 +301 1 LA092089-0143 1 +301 1 LA092090-0092 0 +301 1 LA092290-0094 0 +301 1 LA092489-0121 0 +301 1 LA092590-0019 0 +301 1 LA092789-0047 0 +301 1 LA092790-0128 0 +301 1 LA092989-0108 1 +301 1 LA100189-0205 0 +301 1 LA100289-0104 1 +301 1 LA100290-0067 0 +301 1 LA100390-0069 0 +301 1 LA100589-0136 1 +301 1 LA100789-0127 0 +301 1 LA100790-0068 0 +301 1 LA100989-0008 0 +301 1 LA101289-0126 1 +301 1 LA101389-0091 0 +301 1 LA101390-0083 0 +301 1 LA101589-0169 0 +301 1 LA101589-0174 1 +301 1 LA101590-0071 0 +301 1 LA101689-0002 0 +301 1 LA101789-0155 1 +301 1 LA102089-0025 1 +301 1 LA102289-0170 1 +301 1 LA102290-0116 0 +301 1 LA110990-0184 0 +301 1 LA112089-0024 0 +301 1 LA112489-0069 1 +301 1 LA112489-0141 0 +301 1 LA112489-0142 1 +301 1 LA112490-0089 0 +301 1 LA121089-0089 0 +301 1 LA121289-0096 1 +301 1 LA121389-0124 1 +301 1 LA121490-0027 1 +301 1 LA121589-0007 1 +301 1 LA121589-0184 0 +301 1 LA121689-0077 0 +301 1 LA121890-0057 0 +301 1 LA121890-0079 0 +301 1 LA121890-0086 0 +301 1 LA121990-0123 1 +301 1 LA122089-0109 0 +301 1 LA122389-0069 1 +301 1 LA122789-0009 0 +301 1 LA122889-0124 0 +301 1 LA123090-0148 0 +302 1 CR93E-10071 0 +302 1 CR93E-10276 0 +302 1 CR93E-10279 0 +302 1 CR93E-10462 0 +302 1 CR93E-10606 0 +302 1 CR93E-10799 0 +302 1 CR93E-11100 0 +302 1 CR93E-1648 0 +302 1 CR93E-1838 0 +302 1 CR93E-2180 3 +302 1 CR93E-2225 0 +302 1 CR93E-2236 0 +302 1 CR93E-2512 0 +302 1 CR93E-2563 0 +302 1 CR93E-2650 3 +302 1 CR93E-2849 0 +302 1 CR93E-307 0 +302 1 CR93E-3096 3 +302 1 CR93E-3616 0 +302 1 CR93E-3822 3 +302 1 CR93E-4208 0 +302 1 CR93E-4209 0 +302 1 CR93E-4517 0 +302 1 CR93E-4941 0 +302 1 CR93E-5211 0 +302 1 CR93E-5666 3 +302 1 CR93E-5775 3 +302 1 CR93E-5895 0 +302 1 CR93E-5954 0 +302 1 CR93E-6191 0 +302 1 CR93E-6321 0 +302 1 CR93E-6675 0 +302 1 CR93E-6901 3 +302 1 CR93E-7034 3 +302 1 CR93E-7062 0 +302 1 CR93E-7403 0 +302 1 CR93E-7619 1 +302 1 CR93E-7678 1 +302 1 CR93E-8012 1 +302 1 CR93E-8421 1 +302 1 CR93E-8424 0 +302 1 CR93E-8491 0 +302 1 CR93E-8701 0 +302 1 CR93E-8836 0 +302 1 CR93E-9545 0 +302 1 CR93E-9618 0 +302 1 CR93H-10042 0 +302 1 CR93H-10104 0 +302 1 CR93H-10242 0 +302 1 CR93H-10256 0 +302 1 CR93H-10308 0 +302 1 CR93H-10374 0 +302 1 CR93H-10402 0 +302 1 CR93H-10601 0 +302 1 CR93H-10602 0 +302 1 CR93H-10681 1 +302 1 CR93H-10921 1 +302 1 CR93H-1097 0 +302 1 CR93H-10989 0 +302 1 CR93H-11033 0 +302 1 CR93H-11034 0 +302 1 CR93H-11119 0 +302 1 CR93H-11521 0 +302 1 CR93H-11586 0 +302 1 CR93H-1159 0 +302 1 CR93H-11806 0 +302 1 CR93H-11894 1 +302 1 CR93H-11998 1 +302 1 CR93H-12017 0 +302 1 CR93H-12150 0 +302 1 CR93H-12168 2 +302 1 CR93H-12181 2 +302 1 CR93H-12217 0 +302 1 CR93H-12224 0 +302 1 CR93H-12498 0 +302 1 CR93H-12820 0 +302 1 CR93H-12830 0 +302 1 CR93H-12874 0 +302 1 CR93H-1298 0 +302 1 CR93H-12983 0 +302 1 CR93H-12988 0 +302 1 CR93H-13167 2 +302 1 CR93H-13205 0 +302 1 CR93H-13232 0 +302 1 CR93H-13263 0 +302 1 CR93H-13335 0 +302 1 CR93H-13506 0 +302 1 CR93H-13521 0 +302 1 CR93H-13595 0 +302 1 CR93H-13600 6 +302 1 CR93H-13615 0 +302 1 CR93H-13680 0 +302 1 CR93H-13927 0 +302 1 CR93H-14046 0 +302 1 CR93H-14072 0 +302 1 CR93H-14128 0 +302 1 CR93H-14130 0 +302 1 CR93H-14306 0 +302 1 CR93H-14325 0 +302 1 CR93H-14388 0 +302 1 CR93H-14392 0 +302 1 CR93H-14469 0 +302 1 CR93H-14591 0 +302 1 CR93H-14791 0 +302 1 CR93H-15024 0 +302 1 CR93H-15105 0 +302 1 CR93H-15119 0 +302 1 CR93H-15121 1 +302 1 CR93H-1532 0 +302 1 CR93H-15405 0 +302 1 CR93H-15424 0 +302 1 CR93H-15453 0 +302 1 CR93H-15477 0 +302 1 CR93H-15587 0 +302 1 CR93H-15608 0 +302 1 CR93H-15615 0 +302 1 CR93H-15727 3 +302 1 CR93H-15875 0 +302 1 CR93H-15950 0 +302 1 CR93H-16077 0 +302 1 CR93H-16128 3 +302 1 CR93H-16369 0 +302 1 CR93H-1639 0 +302 1 CR93H-1712 0 +302 1 CR93H-1769 0 +302 1 CR93H-185 0 +302 1 CR93H-2429 0 +302 1 CR93H-2431 0 +302 1 CR93H-2707 0 +302 1 CR93H-3144 0 +302 1 CR93H-3262 0 +302 1 CR93H-3295 0 +302 1 CR93H-3444 0 +302 1 CR93H-3459 0 +302 1 CR93H-3813 0 +302 1 CR93H-4042 0 +302 1 CR93H-416 0 +302 1 CR93H-4420 0 +302 1 CR93H-4489 0 +302 1 CR93H-4586 0 +302 1 CR93H-4635 0 +302 1 CR93H-4771 0 +302 1 CR93H-4879 0 +302 1 CR93H-4889 0 +302 1 CR93H-4922 0 +302 1 CR93H-5017 0 +302 1 CR93H-5053 0 +302 1 CR93H-5121 0 +302 1 CR93H-5189 0 +302 1 CR93H-5255 0 +302 1 CR93H-5554 0 +302 1 CR93H-5568 0 +302 1 CR93H-56 0 +302 1 CR93H-6221 0 +302 1 CR93H-6347 0 +302 1 CR93H-6422 0 +302 1 CR93H-6567 0 +302 1 CR93H-6621 0 +302 1 CR93H-6754 0 +302 1 CR93H-6912 0 +302 1 CR93H-7012 0 +302 1 CR93H-7013 0 +302 1 CR93H-7055 0 +302 1 CR93H-735 0 +302 1 CR93H-742 0 +302 1 CR93H-7554 0 +302 1 CR93H-7557 0 +302 1 CR93H-7870 0 +302 1 CR93H-7875 0 +302 1 CR93H-8042 0 +302 1 CR93H-8080 0 +302 1 CR93H-8122 0 +302 1 CR93H-8245 0 +302 1 CR93H-8248 0 +302 1 CR93H-8249 0 +302 1 CR93H-8460 0 +302 1 CR93H-8461 0 +302 1 CR93H-8590 0 +302 1 CR93H-8741 0 +302 1 CR93H-8789 0 +302 1 CR93H-8928 0 +302 1 CR93H-9009 0 +302 1 CR93H-9350 0 +302 1 CR93H-9427 0 +302 1 CR93H-9548 0 +302 1 CR93H-955 0 +302 1 CR93H-9576 0 +302 1 FBIS3-10615 0 +302 1 FBIS3-10855 0 +302 1 FBIS3-11418 0 +302 1 FBIS3-14832 0 +302 1 FBIS3-20548 3 +302 1 FBIS3-20810 0 +302 1 FBIS3-21356 0 +302 1 FBIS3-21404 0 +302 1 FBIS3-22119 0 +302 1 FBIS3-22470 0 +302 1 FBIS3-22471 0 +302 1 FBIS3-22476 0 +302 1 FBIS3-22477 0 +302 1 FBIS3-22480 0 +302 1 FBIS3-22482 0 +302 1 FBIS3-22486 0 +302 1 FBIS3-22487 0 +302 1 FBIS3-22508 0 +302 1 FBIS3-22523 0 +302 1 FBIS3-22525 0 +302 1 FBIS3-22535 0 +302 1 FBIS3-22539 3 +302 1 FBIS3-22545 0 +302 1 FBIS3-22547 0 +302 1 FBIS3-22559 0 +302 1 FBIS3-22560 0 +302 1 FBIS3-22570 0 +302 1 FBIS3-22581 0 +302 1 FBIS3-22589 0 +302 1 FBIS3-22590 0 +302 1 FBIS3-22591 0 +302 1 FBIS3-22592 0 +302 1 FBIS3-22593 0 +302 1 FBIS3-22597 0 +302 1 FBIS3-22598 0 +302 1 FBIS3-22600 0 +302 1 FBIS3-22633 0 +302 1 FBIS3-22642 0 +302 1 FBIS3-22647 0 +302 1 FBIS3-22679 0 +302 1 FBIS3-22680 0 +302 1 FBIS3-22681 0 +302 1 FBIS3-22693 0 +302 1 FBIS3-22695 0 +302 1 FBIS3-22696 0 +302 1 FBIS3-22697 0 +302 1 FBIS3-22698 0 +302 1 FBIS3-22699 0 +302 1 FBIS3-22700 3 +302 1 FBIS3-22702 2 +302 1 FBIS3-22706 0 +302 1 FBIS3-23 0 +302 1 FBIS3-23561 0 +302 1 FBIS3-23823 0 +302 1 FBIS3-23945 0 +302 1 FBIS3-23947 0 +302 1 FBIS3-24469 0 +302 1 FBIS3-24678 0 +302 1 FBIS3-2516 0 +302 1 FBIS3-26593 3 +302 1 FBIS3-27468 0 +302 1 FBIS3-2798 0 +302 1 FBIS3-28911 0 +302 1 FBIS3-29180 0 +302 1 FBIS3-30086 0 +302 1 FBIS3-34497 0 +302 1 FBIS3-3565 0 +302 1 FBIS3-3580 0 +302 1 FBIS3-36078 0 +302 1 FBIS3-37944 0 +302 1 FBIS3-37947 0 +302 1 FBIS3-39365 0 +302 1 FBIS3-40190 0 +302 1 FBIS3-41666 0 +302 1 FBIS3-41671 0 +302 1 FBIS3-41672 0 +302 1 FBIS3-41673 0 +302 1 FBIS3-41676 0 +302 1 FBIS3-41681 0 +302 1 FBIS3-41698 0 +302 1 FBIS3-41710 0 +302 1 FBIS3-41713 0 +302 1 FBIS3-41724 3 +302 1 FBIS3-41734 0 +302 1 FBIS3-41739 0 +302 1 FBIS3-41761 0 +302 1 FBIS3-41790 0 +302 1 FBIS3-41809 0 +302 1 FBIS3-41815 0 +302 1 FBIS3-4209 0 +302 1 FBIS3-42399 0 +302 1 FBIS3-42469 0 +302 1 FBIS3-42726 0 +302 1 FBIS3-43132 0 +302 1 FBIS3-43186 2 +302 1 FBIS3-43595 0 +302 1 FBIS3-43781 0 +302 1 FBIS3-44530 0 +302 1 FBIS3-44712 0 +302 1 FBIS3-45822 0 +302 1 FBIS3-46348 0 +302 1 FBIS3-46614 0 +302 1 FBIS3-5103 0 +302 1 FBIS3-58 0 +302 1 FBIS3-60336 0 +302 1 FBIS3-60342 0 +302 1 FBIS3-60401 0 +302 1 FBIS3-60403 0 +302 1 FBIS3-60404 0 +302 1 FBIS3-60405 0 +302 1 FBIS3-60419 0 +302 1 FBIS3-60422 2 +302 1 FBIS3-60440 2 +302 1 FBIS3-60444 2 +302 1 FBIS3-60448 0 +302 1 FBIS3-60450 3 +302 1 FBIS3-60454 0 +302 1 FBIS3-60462 0 +302 1 FBIS3-60466 0 +302 1 FBIS3-60503 3 +302 1 FBIS3-60510 3 +302 1 FBIS3-60513 0 +302 1 FBIS3-60514 0 +302 1 FBIS3-60529 0 +302 1 FBIS3-60546 0 +302 1 FBIS3-60553 0 +302 1 FBIS3-60559 0 +302 1 FBIS3-60560 0 +302 1 FBIS3-60561 3 +302 1 FBIS3-60562 3 +302 1 FBIS3-60563 0 +302 1 FBIS3-60564 0 +302 1 FBIS3-60565 0 +302 1 FBIS3-60575 0 +302 1 FBIS3-61373 3 +302 1 FBIS3-6884 0 +302 1 FBIS3-9904 3 +302 1 FBIS4-10721 0 +302 1 FBIS4-13889 0 +302 1 FBIS4-1627 0 +302 1 FBIS4-16647 0 +302 1 FBIS4-1860 0 +302 1 FBIS4-1866 0 +302 1 FBIS4-19 0 +302 1 FBIS4-19733 0 +302 1 FBIS4-20472 0 +302 1 FBIS4-20504 0 +302 1 FBIS4-20697 0 +302 1 FBIS4-2128 1 +302 1 FBIS4-2204 0 +302 1 FBIS4-22716 3 +302 1 FBIS4-22779 0 +302 1 FBIS4-22945 0 +302 1 FBIS4-23089 0 +302 1 FBIS4-23131 0 +302 1 FBIS4-2439 0 +302 1 FBIS4-24438 3 +302 1 FBIS4-26718 0 +302 1 FBIS4-27941 0 +302 1 FBIS4-2880 3 +302 1 FBIS4-29 0 +302 1 FBIS4-30023 0 +302 1 FBIS4-30637 3 +302 1 FBIS4-31787 0 +302 1 FBIS4-32883 0 +302 1 FBIS4-33063 0 +302 1 FBIS4-33295 3 +302 1 FBIS4-33435 0 +302 1 FBIS4-33740 0 +302 1 FBIS4-34379 0 +302 1 FBIS4-38133 2 +302 1 FBIS4-40426 0 +302 1 FBIS4-4067 0 +302 1 FBIS4-42 0 +302 1 FBIS4-4241 3 +302 1 FBIS4-43829 0 +302 1 FBIS4-43830 0 +302 1 FBIS4-43893 0 +302 1 FBIS4-45490 0 +302 1 FBIS4-45613 3 +302 1 FBIS4-45832 0 +302 1 FBIS4-45833 0 +302 1 FBIS4-45834 0 +302 1 FBIS4-45842 0 +302 1 FBIS4-45844 3 +302 1 FBIS4-45884 0 +302 1 FBIS4-46469 0 +302 1 FBIS4-46649 0 +302 1 FBIS4-46923 0 +302 1 FBIS4-47552 0 +302 1 FBIS4-47588 0 +302 1 FBIS4-49021 0 +302 1 FBIS4-49245 0 +302 1 FBIS4-50133 0 +302 1 FBIS4-50706 0 +302 1 FBIS4-50850 0 +302 1 FBIS4-50959 0 +302 1 FBIS4-52090 0 +302 1 FBIS4-5325 3 +302 1 FBIS4-55803 0 +302 1 FBIS4-57220 3 +302 1 FBIS4-58281 0 +302 1 FBIS4-60762 0 +302 1 FBIS4-61029 0 +302 1 FBIS4-62223 0 +302 1 FBIS4-66030 0 +302 1 FBIS4-66069 0 +302 1 FBIS4-66161 0 +302 1 FBIS4-66185 0 +302 1 FBIS4-67533 0 +302 1 FBIS4-67599 0 +302 1 FBIS4-67611 0 +302 1 FBIS4-67613 0 +302 1 FBIS4-67614 0 +302 1 FBIS4-67618 0 +302 1 FBIS4-67646 0 +302 1 FBIS4-67647 0 +302 1 FBIS4-67648 0 +302 1 FBIS4-67649 0 +302 1 FBIS4-67650 0 +302 1 FBIS4-67651 0 +302 1 FBIS4-67698 0 +302 1 FBIS4-67699 0 +302 1 FBIS4-67701 3 +302 1 FBIS4-67707 3 +302 1 FBIS4-67720 3 +302 1 FBIS4-68893 0 +302 1 FR940104-0-00034 0 +302 1 FR940126-2-00100 0 +302 1 FR940126-2-00101 0 +302 1 FR940126-2-00102 0 +302 1 FR940126-2-00103 0 +302 1 FR940126-2-00104 0 +302 1 FR940126-2-00105 0 +302 1 FR940126-2-00106 0 +302 1 FR940126-2-00107 0 +302 1 FR940126-2-00108 0 +302 1 FR940202-2-00112 2 +302 1 FR940202-2-00114 0 +302 1 FR940202-2-00133 1 +302 1 FR940202-2-00140 0 +302 1 FR940202-2-00143 0 +302 1 FR940203-0-00084 0 +302 1 FR940207-2-00089 1 +302 1 FR940314-1-00041 0 +302 1 FR940317-2-00076 0 +302 1 FR940404-2-00093 0 +302 1 FR940406-0-00190 0 +302 1 FR940413-2-00068 0 +302 1 FR940414-0-00029 0 +302 1 FR940419-2-00062 0 +302 1 FR940425-2-00078 0 +302 1 FR940425-2-00079 0 +302 1 FR940425-2-00080 0 +302 1 FR940425-2-00081 0 +302 1 FR940429-2-00041 1 +302 1 FR940505-2-00041 1 +302 1 FR940513-2-00003 0 +302 1 FR940513-2-00096 0 +302 1 FR940527-1-00163 0 +302 1 FR940527-2-00071 0 +302 1 FR940602-1-00023 0 +302 1 FR940602-2-00077 0 +302 1 FR940603-2-00060 3 +302 1 FR940620-2-00115 0 +302 1 FR940620-2-00116 0 +302 1 FR940620-2-00117 3 +302 1 FR940620-2-00118 0 +302 1 FR940620-2-00119 0 +302 1 FR940620-2-00120 0 +302 1 FR940620-2-00121 0 +302 1 FR940620-2-00122 0 +302 1 FR940620-2-00123 0 +302 1 FR940628-1-00016 0 +302 1 FR940628-2-00002 0 +302 1 FR940705-2-00186 0 +302 1 FR940706-2-00076 0 +302 1 FR940713-2-00061 0 +302 1 FR940713-2-00062 0 +302 1 FR940719-2-00089 0 +302 1 FR940721-2-00030 0 +302 1 FR940721-2-00045 0 +302 1 FR940721-2-00046 0 +302 1 FR940725-0-00049 0 +302 1 FR940728-2-00084 0 +302 1 FR940728-2-00089 0 +302 1 FR940804-2-00088 0 +302 1 FR940817-2-00237 0 +302 1 FR940822-0-00027 0 +302 1 FR940822-0-00067 0 +302 1 FR940825-2-00076 0 +302 1 FR940825-2-00078 0 +302 1 FR940831-2-00064 0 +302 1 FR940902-1-00048 0 +302 1 FR940922-2-00127 0 +302 1 FR940928-2-00043 0 +302 1 FR941003-2-00031 0 +302 1 FR941004-2-00099 0 +302 1 FR941006-1-00005 0 +302 1 FR941006-1-00006 0 +302 1 FR941006-1-00007 0 +302 1 FR941012-2-00078 0 +302 1 FR941013-2-00056 0 +302 1 FR941027-1-00030 0 +302 1 FR941102-1-00119 0 +302 1 FR941103-2-00086 0 +302 1 FR941107-2-00231 0 +302 1 FR941107-2-00232 0 +302 1 FR941107-2-00233 0 +302 1 FR941122-2-00060 0 +302 1 FR941130-0-00122 0 +302 1 FR941202-2-00007 0 +302 1 FR941206-1-00134 0 +302 1 FR941206-2-00055 0 +302 1 FR941213-0-00084 0 +302 1 FR941213-2-00039 0 +302 1 FT911-1088 0 +302 1 FT911-1471 0 +302 1 FT911-2081 0 +302 1 FT911-2372 0 +302 1 FT911-241 0 +302 1 FT911-2589 0 +302 1 FT911-2707 0 +302 1 FT911-2968 0 +302 1 FT911-460 0 +302 1 FT911-4947 0 +302 1 FT911-5041 0 +302 1 FT911-624 0 +302 1 FT911-679 0 +302 1 FT911-870 0 +302 1 FT921-10340 0 +302 1 FT921-10626 0 +302 1 FT921-10742 0 +302 1 FT921-10750 0 +302 1 FT921-10807 0 +302 1 FT921-11140 0 +302 1 FT921-1150 0 +302 1 FT921-1211 0 +302 1 FT921-12227 0 +302 1 FT921-12230 0 +302 1 FT921-12556 0 +302 1 FT921-13207 0 +302 1 FT921-13254 0 +302 1 FT921-13279 0 +302 1 FT921-13530 0 +302 1 FT921-14291 0 +302 1 FT921-14537 3 +302 1 FT921-14986 0 +302 1 FT921-15281 0 +302 1 FT921-15869 0 +302 1 FT921-16061 3 +302 1 FT921-16191 0 +302 1 FT921-16376 0 +302 1 FT921-2350 0 +302 1 FT921-2351 0 +302 1 FT921-3467 0 +302 1 FT921-4 0 +302 1 FT921-4035 0 +302 1 FT921-4317 0 +302 1 FT921-4540 0 +302 1 FT921-485 0 +302 1 FT921-5034 0 +302 1 FT921-5614 0 +302 1 FT921-5766 0 +302 1 FT921-5928 0 +302 1 FT921-7582 0 +302 1 FT921-7648 0 +302 1 FT921-7765 3 +302 1 FT921-7784 0 +302 1 FT921-8313 0 +302 1 FT921-8328 0 +302 1 FT921-8507 0 +302 1 FT921-9310 0 +302 1 FT921-953 0 +302 1 FT921-956 0 +302 1 FT921-9578 0 +302 1 FT922-10446 0 +302 1 FT922-11044 0 +302 1 FT922-12505 0 +302 1 FT922-12737 0 +302 1 FT922-13742 0 +302 1 FT922-14371 0 +302 1 FT922-1674 0 +302 1 FT922-1893 0 +302 1 FT922-220 0 +302 1 FT922-4529 0 +302 1 FT922-4560 0 +302 1 FT922-5004 0 +302 1 FT922-6652 0 +302 1 FT922-7819 0 +302 1 FT922-8619 0 +302 1 FT922-8779 0 +302 1 FT922-884 0 +302 1 FT922-9023 0 +302 1 FT922-9487 0 +302 1 FT922-9650 0 +302 1 FT923-10404 0 +302 1 FT923-1076 0 +302 1 FT923-11035 0 +302 1 FT923-11081 0 +302 1 FT923-11184 0 +302 1 FT923-11350 0 +302 1 FT923-11474 0 +302 1 FT923-11885 0 +302 1 FT923-12051 0 +302 1 FT923-12060 0 +302 1 FT923-12277 0 +302 1 FT923-14971 0 +302 1 FT923-15575 0 +302 1 FT923-1988 0 +302 1 FT923-2286 0 +302 1 FT923-2399 0 +302 1 FT923-3060 0 +302 1 FT923-4273 0 +302 1 FT923-5927 0 +302 1 FT923-6011 0 +302 1 FT923-6887 0 +302 1 FT923-7657 0 +302 1 FT923-8033 0 +302 1 FT923-8100 0 +302 1 FT923-8415 0 +302 1 FT923-8509 0 +302 1 FT923-8974 0 +302 1 FT924-10626 0 +302 1 FT924-10652 3 +302 1 FT924-10987 0 +302 1 FT924-11314 0 +302 1 FT924-11618 0 +302 1 FT924-1254 0 +302 1 FT924-13622 0 +302 1 FT924-14004 0 +302 1 FT924-14826 0 +302 1 FT924-15013 0 +302 1 FT924-1638 0 +302 1 FT924-1993 0 +302 1 FT924-2803 0 +302 1 FT924-2958 0 +302 1 FT924-3217 0 +302 1 FT924-3519 0 +302 1 FT924-3628 0 +302 1 FT924-4528 0 +302 1 FT924-4737 0 +302 1 FT924-5037 0 +302 1 FT924-5353 0 +302 1 FT924-5517 0 +302 1 FT924-6467 0 +302 1 FT924-7956 0 +302 1 FT924-8024 0 +302 1 FT924-8515 0 +302 1 FT924-9161 0 +302 1 FT924-9431 0 +302 1 FT931-1039 0 +302 1 FT931-11085 3 +302 1 FT931-11767 0 +302 1 FT931-11857 0 +302 1 FT931-12577 0 +302 1 FT931-12903 0 +302 1 FT931-13033 0 +302 1 FT931-13300 0 +302 1 FT931-13512 0 +302 1 FT931-14151 0 +302 1 FT931-14647 0 +302 1 FT931-15527 0 +302 1 FT931-15924 0 +302 1 FT931-16133 0 +302 1 FT931-17149 0 +302 1 FT931-2526 0 +302 1 FT931-3052 0 +302 1 FT931-3883 0 +302 1 FT931-5665 0 +302 1 FT931-5795 0 +302 1 FT931-5859 0 +302 1 FT931-652 0 +302 1 FT931-7060 3 +302 1 FT931-7525 0 +302 1 FT931-8050 0 +302 1 FT931-8993 0 +302 1 FT931-9496 0 +302 1 FT931-9886 0 +302 1 FT932-10099 0 +302 1 FT932-10160 0 +302 1 FT932-10547 0 +302 1 FT932-13227 0 +302 1 FT932-13552 0 +302 1 FT932-14090 0 +302 1 FT932-14875 0 +302 1 FT932-15013 0 +302 1 FT932-15388 0 +302 1 FT932-16160 0 +302 1 FT932-16821 0 +302 1 FT932-16878 0 +302 1 FT932-1821 0 +302 1 FT932-2282 0 +302 1 FT932-2288 0 +302 1 FT932-2515 0 +302 1 FT932-2516 0 +302 1 FT932-3794 0 +302 1 FT932-3963 0 +302 1 FT932-4292 0 +302 1 FT932-4317 0 +302 1 FT932-4441 0 +302 1 FT932-4485 3 +302 1 FT932-4585 0 +302 1 FT932-4805 0 +302 1 FT932-5288 0 +302 1 FT932-5508 0 +302 1 FT932-7262 0 +302 1 FT932-769 0 +302 1 FT932-7800 0 +302 1 FT932-7948 0 +302 1 FT932-7977 0 +302 1 FT932-9367 0 +302 1 FT932-9696 0 +302 1 FT933-11998 0 +302 1 FT933-12022 0 +302 1 FT933-1235 0 +302 1 FT933-13206 0 +302 1 FT933-13870 0 +302 1 FT933-14295 0 +302 1 FT933-14910 0 +302 1 FT933-15797 0 +302 1 FT933-15814 0 +302 1 FT933-15869 0 +302 1 FT933-16536 0 +302 1 FT933-16948 0 +302 1 FT933-2728 0 +302 1 FT933-3434 0 +302 1 FT933-3705 0 +302 1 FT933-4186 0 +302 1 FT933-4445 0 +302 1 FT933-4707 0 +302 1 FT933-528 0 +302 1 FT933-5736 0 +302 1 FT933-5756 0 +302 1 FT933-6719 0 +302 1 FT933-6895 0 +302 1 FT933-7164 0 +302 1 FT933-7438 0 +302 1 FT933-7608 0 +302 1 FT933-7908 0 +302 1 FT933-7926 0 +302 1 FT933-8272 0 +302 1 FT933-8849 0 +302 1 FT933-8865 0 +302 1 FT933-9041 0 +302 1 FT933-9555 0 +302 1 FT934-10458 0 +302 1 FT934-11977 0 +302 1 FT934-1206 3 +302 1 FT934-1290 0 +302 1 FT934-14536 0 +302 1 FT934-17471 0 +302 1 FT934-3190 0 +302 1 FT934-4508 0 +302 1 FT934-5058 0 +302 1 FT934-5207 0 +302 1 FT934-576 0 +302 1 FT934-5915 0 +302 1 FT934-7018 0 +302 1 FT934-8210 0 +302 1 FT934-9726 0 +302 1 FT934-9860 0 +302 1 FT941-10023 0 +302 1 FT941-12410 3 +302 1 FT941-12426 0 +302 1 FT941-13315 0 +302 1 FT941-139 0 +302 1 FT941-14380 0 +302 1 FT941-1494 0 +302 1 FT941-15224 0 +302 1 FT941-1547 0 +302 1 FT941-157 0 +302 1 FT941-15832 0 +302 1 FT941-15975 0 +302 1 FT941-16404 0 +302 1 FT941-16414 0 +302 1 FT941-1656 0 +302 1 FT941-3236 0 +302 1 FT941-4398 0 +302 1 FT941-5519 0 +302 1 FT941-8037 0 +302 1 FT941-830 0 +302 1 FT941-9456 0 +302 1 FT941-9662 0 +302 1 FT941-9667 0 +302 1 FT942-10381 0 +302 1 FT942-10460 0 +302 1 FT942-11048 0 +302 1 FT942-11913 0 +302 1 FT942-12479 0 +302 1 FT942-12526 0 +302 1 FT942-13032 0 +302 1 FT942-14203 0 +302 1 FT942-14871 0 +302 1 FT942-14924 0 +302 1 FT942-16178 0 +302 1 FT942-16294 0 +302 1 FT942-16430 0 +302 1 FT942-16780 0 +302 1 FT942-17260 0 +302 1 FT942-17527 0 +302 1 FT942-1963 0 +302 1 FT942-2228 0 +302 1 FT942-3396 0 +302 1 FT942-4193 0 +302 1 FT942-4919 0 +302 1 FT942-5484 0 +302 1 FT942-5975 0 +302 1 FT942-6115 0 +302 1 FT942-7389 0 +302 1 FT942-7603 0 +302 1 FT942-9189 0 +302 1 FT942-9431 0 +302 1 FT943-1002 0 +302 1 FT943-10062 0 +302 1 FT943-10078 0 +302 1 FT943-11927 0 +302 1 FT943-12041 0 +302 1 FT943-12755 0 +302 1 FT943-13379 0 +302 1 FT943-14080 0 +302 1 FT943-14403 0 +302 1 FT943-14543 0 +302 1 FT943-14605 0 +302 1 FT943-14973 0 +302 1 FT943-15331 0 +302 1 FT943-15886 0 +302 1 FT943-16116 0 +302 1 FT943-16211 0 +302 1 FT943-16744 0 +302 1 FT943-1828 0 +302 1 FT943-208 0 +302 1 FT943-2193 0 +302 1 FT943-2776 0 +302 1 FT943-310 0 +302 1 FT943-3268 0 +302 1 FT943-3526 0 +302 1 FT943-4387 0 +302 1 FT943-4843 0 +302 1 FT943-4851 0 +302 1 FT943-500 0 +302 1 FT943-677 0 +302 1 FT943-69 0 +302 1 FT943-760 0 +302 1 FT943-8114 0 +302 1 FT943-8355 0 +302 1 FT943-8860 0 +302 1 FT943-8941 0 +302 1 FT943-9445 0 +302 1 FT943-9699 0 +302 1 FT943-9853 0 +302 1 FT944-10282 0 +302 1 FT944-10542 0 +302 1 FT944-10829 0 +302 1 FT944-10864 0 +302 1 FT944-10925 0 +302 1 FT944-11442 0 +302 1 FT944-11577 0 +302 1 FT944-11878 0 +302 1 FT944-13248 0 +302 1 FT944-14051 0 +302 1 FT944-14098 0 +302 1 FT944-14103 0 +302 1 FT944-14141 0 +302 1 FT944-14564 0 +302 1 FT944-14870 0 +302 1 FT944-15576 0 +302 1 FT944-15805 0 +302 1 FT944-16329 0 +302 1 FT944-17020 0 +302 1 FT944-17070 0 +302 1 FT944-17268 0 +302 1 FT944-18039 0 +302 1 FT944-18407 0 +302 1 FT944-18515 0 +302 1 FT944-18645 0 +302 1 FT944-1991 0 +302 1 FT944-2202 0 +302 1 FT944-2489 3 +302 1 FT944-2592 3 +302 1 FT944-3412 0 +302 1 FT944-3523 0 +302 1 FT944-3755 0 +302 1 FT944-5030 0 +302 1 FT944-567 0 +302 1 FT944-5940 0 +302 1 FT944-6228 0 +302 1 FT944-6607 0 +302 1 FT944-8304 0 +302 1 FT944-8752 0 +302 1 FT944-9658 0 +302 1 FT944-9872 0 +302 1 LA010490-0100 0 +302 1 LA010490-0127 0 +302 1 LA010589-0059 3 +302 1 LA010690-0044 0 +302 1 LA010789-0007 0 +302 1 LA011189-0091 0 +302 1 LA011590-0042 0 +302 1 LA012090-0137 0 +302 1 LA012290-0068 0 +302 1 LA012390-0129 0 +302 1 LA012490-0111 3 +302 1 LA012490-0120 0 +302 1 LA012589-0035 3 +302 1 LA012690-0099 0 +302 1 LA013089-0022 0 +302 1 LA020190-0050 0 +302 1 LA020190-0128 0 +302 1 LA020389-0112 0 +302 1 LA020390-0101 0 +302 1 LA020490-0202 0 +302 1 LA020490-0221 0 +302 1 LA021389-0067 0 +302 1 LA021889-0149 0 +302 1 LA022289-0015 0 +302 1 LA022290-0137 0 +302 1 LA030490-0058 0 +302 1 LA030490-0146 0 +302 1 LA030790-0062 0 +302 1 LA030889-0102 0 +302 1 LA031190-0046 0 +302 1 LA031190-0116 3 +302 1 LA031290-0103 0 +302 1 LA031290-0118 0 +302 1 LA031489-0032 3 +302 1 LA031890-0146 0 +302 1 LA032190-0081 0 +302 1 LA032689-0202 0 +302 1 LA032890-0019 0 +302 1 LA033190-0001 0 +302 1 LA040290-0023 0 +302 1 LA040789-0053 0 +302 1 LA040989-0094 0 +302 1 LA040989-0121 0 +302 1 LA040990-0045 0 +302 1 LA041190-0046 0 +302 1 LA041190-0093 0 +302 1 LA041290-0058 0 +302 1 LA041490-0129 0 +302 1 LA041690-0050 0 +302 1 LA041690-0051 0 +302 1 LA041690-0085 0 +302 1 LA041890-0007 0 +302 1 LA041989-0027 0 +302 1 LA041989-0042 0 +302 1 LA041990-0258 0 +302 1 LA042190-0056 0 +302 1 LA042289-0003 0 +302 1 LA042390-0099 0 +302 1 LA042590-0168 0 +302 1 LA042890-0139 0 +302 1 LA043090-0036 3 +302 1 LA050189-0063 0 +302 1 LA050789-0042 0 +302 1 LA050790-0096 0 +302 1 LA050889-0049 0 +302 1 LA050890-0167 0 +302 1 LA051390-0202 0 +302 1 LA051390-0223 0 +302 1 LA051889-0183 0 +302 1 LA052090-0077 0 +302 1 LA052090-0088 0 +302 1 LA052189-0210 0 +302 1 LA052190-0044 0 +302 1 LA052190-0106 0 +302 1 LA052690-0037 0 +302 1 LA060490-0002 0 +302 1 LA060589-0052 0 +302 1 LA060589-0053 0 +302 1 LA061090-0044 0 +302 1 LA061289-0041 3 +302 1 LA061390-0056 0 +302 1 LA061590-0016 0 +302 1 LA061989-0045 0 +302 1 LA062189-0108 0 +302 1 LA062190-0135 0 +302 1 LA062389-0128 0 +302 1 LA062490-0095 0 +302 1 LA062589-0087 0 +302 1 LA062590-0046 0 +302 1 LA062789-0077 0 +302 1 LA062990-0033 0 +302 1 LA070289-0159 0 +302 1 LA070290-0051 0 +302 1 LA070789-0056 0 +302 1 LA070890-0222 0 +302 1 LA071290-0154 0 +302 1 LA071590-0110 0 +302 1 LA071989-0061 0 +302 1 LA071990-0012 0 +302 1 LA072890-0052 0 +302 1 LA072890-0066 3 +302 1 LA072990-0208 0 +302 1 LA073089-0195 0 +302 1 LA080589-0034 0 +302 1 LA080589-0052 0 +302 1 LA080590-0260 0 +302 1 LA080690-0099 3 +302 1 LA080990-0174 0 +302 1 LA081089-0091 0 +302 1 LA081290-0078 0 +302 1 LA081989-0048 0 +302 1 LA081990-0088 0 +302 1 LA082089-0090 0 +302 1 LA082089-0163 0 +302 1 LA082389-0068 0 +302 1 LA082489-0115 0 +302 1 LA082490-0065 3 +302 1 LA082490-0066 0 +302 1 LA082590-0019 0 +302 1 LA082689-0127 0 +302 1 LA082789-0154 0 +302 1 LA083090-0214 0 +302 1 LA090290-0118 0 +302 1 LA090390-0077 0 +302 1 LA090589-0046 0 +302 1 LA090990-0031 3 +302 1 LA091190-0102 0 +302 1 LA091990-0020 0 +302 1 LA092189-0158 0 +302 1 LA092289-0005 0 +302 1 LA092390-0163 0 +302 1 LA092589-0002 0 +302 1 LA092589-0083 0 +302 1 LA092689-0080 0 +302 1 LA092689-0119 0 +302 1 LA092889-0179 0 +302 1 LA093090-0213 0 +302 1 LA100189-0047 3 +302 1 LA100189-0130 0 +302 1 LA100290-0016 0 +302 1 LA100490-0220 0 +302 1 LA101090-0147 0 +302 1 LA101190-0191 0 +302 1 LA101289-0109 0 +302 1 LA101589-0050 0 +302 1 LA101689-0055 0 +302 1 LA101690-0040 0 +302 1 LA101889-0058 0 +302 1 LA101890-0243 0 +302 1 LA102190-0080 0 +302 1 LA102289-0118 0 +302 1 LA102590-0199 0 +302 1 LA102789-0128 0 +302 1 LA102990-0097 0 +302 1 LA103089-0037 0 +302 1 LA110190-0053 0 +302 1 LA110389-0072 0 +302 1 LA110490-0201 0 +302 1 LA110689-0060 0 +302 1 LA110690-0193 0 +302 1 LA110889-0156 0 +302 1 LA111189-0018 0 +302 1 LA111489-0076 0 +302 1 LA111889-0044 0 +302 1 LA111889-0165 0 +302 1 LA111989-0036 0 +302 1 LA112089-0054 0 +302 1 LA112490-0106 0 +302 1 LA112789-0001 0 +302 1 LA112990-0145 0 +302 1 LA113090-0001 0 +302 1 LA113090-0147 0 +302 1 LA120389-0216 0 +302 1 LA120589-0098 0 +302 1 LA120690-0043 0 +302 1 LA120890-0014 0 +302 1 LA121589-0171 0 +302 1 LA121789-0162 3 +302 1 LA122289-0099 0 +302 1 LA122589-0100 0 +302 1 LA122589-0101 0 +302 1 LA123090-0026 3 +303 1 CR93E-10279 -1 +303 1 CR93E-11182 0 +303 1 CR93E-1856 0 +303 1 CR93E-226 -1 +303 1 CR93E-3833 0 +303 1 CR93E-3843 0 +303 1 CR93E-4217 -1 +303 1 CR93E-4353 0 +303 1 CR93E-436 0 +303 1 CR93E-4360 -1 +303 1 CR93E-5148 0 +303 1 CR93E-5855 0 +303 1 CR93E-6168 -1 +303 1 CR93E-6518 0 +303 1 CR93E-7036 0 +303 1 CR93E-7309 -1 +303 1 CR93E-7797 0 +303 1 CR93E-8695 0 +303 1 CR93E-8718 -1 +303 1 CR93E-9094 0 +303 1 CR93E-996 0 +303 1 CR93H-10104 -1 +303 1 CR93H-10308 0 +303 1 CR93H-10374 0 +303 1 CR93H-10392 -1 +303 1 CR93H-10601 0 +303 1 CR93H-10602 0 +303 1 CR93H-10921 -1 +303 1 CR93H-1097 0 +303 1 CR93H-10982 0 +303 1 CR93H-10989 -1 +303 1 CR93H-11033 0 +303 1 CR93H-11034 0 +303 1 CR93H-11077 -1 +303 1 CR93H-11119 0 +303 1 CR93H-11586 0 +303 1 CR93H-11792 -1 +303 1 CR93H-11806 0 +303 1 CR93H-11894 0 +303 1 CR93H-11998 -1 +303 1 CR93H-12017 0 +303 1 CR93H-12150 0 +303 1 CR93H-12181 -1 +303 1 CR93H-12217 0 +303 1 CR93H-12498 0 +303 1 CR93H-12820 -1 +303 1 CR93H-12874 0 +303 1 CR93H-1298 0 +303 1 CR93H-12988 -1 +303 1 CR93H-13205 0 +303 1 CR93H-13451 0 +303 1 CR93H-13588 -1 +303 1 CR93H-13659 0 +303 1 CR93H-13680 0 +303 1 CR93H-13695 -1 +303 1 CR93H-13849 0 +303 1 CR93H-14128 0 +303 1 CR93H-14130 -1 +303 1 CR93H-14306 0 +303 1 CR93H-14319 0 +303 1 CR93H-14388 -1 +303 1 CR93H-14436 0 +303 1 CR93H-14469 0 +303 1 CR93H-14591 -1 +303 1 CR93H-14794 0 +303 1 CR93H-15024 0 +303 1 CR93H-1509 -1 +303 1 CR93H-15105 0 +303 1 CR93H-15107 0 +303 1 CR93H-15178 -1 +303 1 CR93H-15405 0 +303 1 CR93H-15453 0 +303 1 CR93H-15477 -1 +303 1 CR93H-15587 0 +303 1 CR93H-15608 0 +303 1 CR93H-15615 -1 +303 1 CR93H-15705 0 +303 1 CR93H-15950 0 +303 1 CR93H-16073 -1 +303 1 CR93H-16128 0 +303 1 CR93H-16143 0 +303 1 CR93H-16369 -1 +303 1 CR93H-16456 0 +303 1 CR93H-1712 0 +303 1 CR93H-1788 -1 +303 1 CR93H-185 0 +303 1 CR93H-199 0 +303 1 CR93H-200 -1 +303 1 CR93H-2081 0 +303 1 CR93H-215 0 +303 1 CR93H-2196 -1 +303 1 CR93H-2429 0 +303 1 CR93H-2536 0 +303 1 CR93H-2707 -1 +303 1 CR93H-2841 0 +303 1 CR93H-3079 0 +303 1 CR93H-3375 -1 +303 1 CR93H-3382 0 +303 1 CR93H-3584 0 +303 1 CR93H-3813 -1 +303 1 CR93H-4042 0 +303 1 CR93H-416 0 +303 1 CR93H-4417 -1 +303 1 CR93H-4489 0 +303 1 CR93H-4554 0 +303 1 CR93H-4586 -1 +303 1 CR93H-4631 0 +303 1 CR93H-4635 0 +303 1 CR93H-4771 -1 +303 1 CR93H-4879 0 +303 1 CR93H-4922 0 +303 1 CR93H-5053 -1 +303 1 CR93H-5255 0 +303 1 CR93H-5450 0 +303 1 CR93H-5477 -1 +303 1 CR93H-553 0 +303 1 CR93H-5568 0 +303 1 CR93H-5700 -1 +303 1 CR93H-590 0 +303 1 CR93H-5957 0 +303 1 CR93H-6346 -1 +303 1 CR93H-6377 0 +303 1 CR93H-6422 0 +303 1 CR93H-6567 -1 +303 1 CR93H-6695 0 +303 1 CR93H-6754 0 +303 1 CR93H-6887 -1 +303 1 CR93H-6912 0 +303 1 CR93H-6945 0 +303 1 CR93H-7055 -1 +303 1 CR93H-7101 0 +303 1 CR93H-7133 0 +303 1 CR93H-7314 -1 +303 1 CR93H-735 0 +303 1 CR93H-742 0 +303 1 CR93H-7554 -1 +303 1 CR93H-7557 0 +303 1 CR93H-7612 0 +303 1 CR93H-7785 -1 +303 1 CR93H-7875 0 +303 1 CR93H-8165 0 +303 1 CR93H-8253 -1 +303 1 CR93H-8428 0 +303 1 CR93H-8460 0 +303 1 CR93H-8461 -1 +303 1 CR93H-8591 0 +303 1 CR93H-8928 0 +303 1 CR93H-9350 -1 +303 1 CR93H-9548 0 +303 1 CR93H-955 0 +303 1 CR93H-9835 -1 +303 1 FBIS3-16217 0 +303 1 FBIS3-19093 0 +303 1 FBIS3-21007 -1 +303 1 FBIS3-21026 0 +303 1 FBIS3-23561 0 +303 1 FBIS3-23682 -1 +303 1 FBIS3-23691 0 +303 1 FBIS3-24469 0 +303 1 FBIS3-25018 -1 +303 1 FBIS3-36274 0 +303 1 FBIS3-40348 0 +303 1 FBIS3-40363 -1 +303 1 FBIS3-40388 0 +303 1 FBIS3-40450 0 +303 1 FBIS3-41666 -1 +303 1 FBIS3-42394 0 +303 1 FBIS3-42399 0 +303 1 FBIS3-42547 -1 +303 1 FBIS3-42934 0 +303 1 FBIS3-43160 0 +303 1 FBIS3-43214 -1 +303 1 FBIS3-46244 0 +303 1 FBIS3-53109 0 +303 1 FBIS3-58219 -1 +303 1 FBIS3-59619 0 +303 1 FBIS3-60342 0 +303 1 FBIS3-61020 -1 +303 1 FBIS4-15938 0 +303 1 FBIS4-1647 0 +303 1 FBIS4-19830 -1 +303 1 FBIS4-20472 0 +303 1 FBIS4-20504 0 +303 1 FBIS4-22151 -1 +303 1 FBIS4-22263 0 +303 1 FBIS4-24195 0 +303 1 FBIS4-24435 -1 +303 1 FBIS4-27016 0 +303 1 FBIS4-28354 0 +303 1 FBIS4-2866 -1 +303 1 FBIS4-35855 0 +303 1 FBIS4-39574 0 +303 1 FBIS4-39987 -1 +303 1 FBIS4-42546 0 +303 1 FBIS4-42702 0 +303 1 FBIS4-42922 -1 +303 1 FBIS4-44511 0 +303 1 FBIS4-44743 0 +303 1 FBIS4-46469 -1 +303 1 FBIS4-46649 0 +303 1 FBIS4-46650 0 +303 1 FBIS4-47297 -1 +303 1 FBIS4-47302 0 +303 1 FBIS4-47495 0 +303 1 FBIS4-50545 -1 +303 1 FBIS4-55470 0 +303 1 FBIS4-57001 0 +303 1 FBIS4-65621 -1 +303 1 FBIS4-66185 0 +303 1 FBIS4-66382 0 +303 1 FBIS4-68332 -1 +303 1 FBIS4-68893 0 +303 1 FR940104-0-00032 0 +303 1 FR940111-2-00079 -1 +303 1 FR940124-1-00003 0 +303 1 FR940203-0-00084 0 +303 1 FR940304-2-00134 -1 +303 1 FR940304-2-00135 0 +303 1 FR940325-0-00015 0 +303 1 FR940406-0-00190 -1 +303 1 FR940418-0-00041 0 +303 1 FR940505-1-00005 0 +303 1 FR940526-2-00002 -1 +303 1 FR940602-1-00023 0 +303 1 FR940610-0-00042 0 +303 1 FR940627-0-00014 -1 +303 1 FR940706-2-00126 0 +303 1 FR940802-2-00009 0 +303 1 FR940810-0-00307 -1 +303 1 FR940819-0-00006 0 +303 1 FR940902-1-00048 0 +303 1 FR940906-2-00139 -1 +303 1 FR940919-0-00024 0 +303 1 FR941007-2-00007 0 +303 1 FR941020-2-00110 -1 +303 1 FR941021-0-00167 0 +303 1 FR941021-0-00195 0 +303 1 FR941121-0-00046 -1 +303 1 FR941121-2-00043 0 +303 1 FR941130-0-00122 0 +303 1 FR941205-2-00003 -1 +303 1 FR941206-1-00134 0 +303 1 FR941207-2-00068 0 +303 1 FR941216-2-00132 -1 +303 1 FR941216-2-00137 0 +303 1 FR941221-0-00047 0 +303 1 FT911-1000 -1 +303 1 FT911-216 0 +303 1 FT911-2608 0 +303 1 FT911-3687 -1 +303 1 FT911-4155 0 +303 1 FT911-5046 0 +303 1 FT921-1013 -1 +303 1 FT921-10884 0 +303 1 FT921-11671 0 +303 1 FT921-12379 -1 +303 1 FT921-12584 2 +303 1 FT921-13248 1 +303 1 FT921-1350 -1 +303 1 FT921-13869 0 +303 1 FT921-14183 0 +303 1 FT921-14476 -1 +303 1 FT921-14867 0 +303 1 FT921-15863 0 +303 1 FT921-1594 -1 +303 1 FT921-15951 0 +303 1 FT921-16129 0 +303 1 FT921-16360 -1 +303 1 FT921-16419 0 +303 1 FT921-16457 0 +303 1 FT921-2261 -1 +303 1 FT921-2873 0 +303 1 FT921-3070 0 +303 1 FT921-3071 -1 +303 1 FT921-3359 0 +303 1 FT921-3432 0 +303 1 FT921-3539 -1 +303 1 FT921-3809 0 +303 1 FT921-3842 0 +303 1 FT921-3945 -1 +303 1 FT921-4635 0 +303 1 FT921-503 0 +303 1 FT921-5229 -1 +303 1 FT921-6327 0 +303 1 FT921-7107 0 +303 1 FT921-832 -1 +303 1 FT921-8725 2 +303 1 FT921-8919 0 +303 1 FT921-953 -1 +303 1 FT921-9706 0 +303 1 FT922-10607 0 +303 1 FT922-10990 -1 +303 1 FT922-11472 0 +303 1 FT922-11525 0 +303 1 FT922-11670 -1 +303 1 FT922-11742 0 +303 1 FT922-11929 0 +303 1 FT922-12234 -1 +303 1 FT922-12334 0 +303 1 FT922-12600 0 +303 1 FT922-13008 -1 +303 1 FT922-13421 0 +303 1 FT922-13455 0 +303 1 FT922-13500 -1 +303 1 FT922-13906 0 +303 1 FT922-2930 0 +303 1 FT922-3309 -1 +303 1 FT922-4215 0 +303 1 FT922-4274 0 +303 1 FT922-4956 -1 +303 1 FT922-4967 0 +303 1 FT922-5107 0 +303 1 FT922-6257 -1 +303 1 FT922-7289 0 +303 1 FT922-7904 0 +303 1 FT922-8168 -1 +303 1 FT922-861 0 +303 1 FT922-8790 0 +303 1 FT922-9812 -1 +303 1 FT923-10218 0 +303 1 FT923-10305 0 +303 1 FT923-10351 -1 +303 1 FT923-10517 0 +303 1 FT923-1085 0 +303 1 FT923-10862 -1 +303 1 FT923-10876 0 +303 1 FT923-10939 0 +303 1 FT923-12048 -1 +303 1 FT923-12432 0 +303 1 FT923-1307 0 +303 1 FT923-13137 -1 +303 1 FT923-14461 0 +303 1 FT923-14465 0 +303 1 FT923-14574 -1 +303 1 FT923-15067 0 +303 1 FT923-2353 0 +303 1 FT923-2416 -1 +303 1 FT923-3530 0 +303 1 FT923-3924 0 +303 1 FT923-4482 -1 +303 1 FT923-4525 1 +303 1 FT923-5257 0 +303 1 FT923-5756 -1 +303 1 FT923-7711 2 +303 1 FT923-7860 0 +303 1 FT923-7887 -1 +303 1 FT923-803 0 +303 1 FT923-8916 0 +303 1 FT923-9736 -1 +303 1 FT923-9781 0 +303 1 FT924-10484 0 +303 1 FT924-10903 -1 +303 1 FT924-12943 0 +303 1 FT924-14218 0 +303 1 FT924-14355 -1 +303 1 FT924-14455 0 +303 1 FT924-196 0 +303 1 FT924-2211 -1 +303 1 FT924-2379 0 +303 1 FT924-2406 0 +303 1 FT924-286 -1 +303 1 FT924-2896 0 +303 1 FT924-3328 0 +303 1 FT924-4315 -1 +303 1 FT924-4358 0 +303 1 FT924-4829 0 +303 1 FT924-5286 -1 +303 1 FT924-5310 0 +303 1 FT924-5533 0 +303 1 FT924-5574 -1 +303 1 FT924-6499 0 +303 1 FT924-7392 0 +303 1 FT924-7399 -1 +303 1 FT924-8791 0 +303 1 FT924-8918 0 +303 1 FT931-11101 -1 +303 1 FT931-12968 0 +303 1 FT931-13063 0 +303 1 FT931-13386 -1 +303 1 FT931-13998 0 +303 1 FT931-15496 0 +303 1 FT931-15565 -1 +303 1 FT931-15612 0 +303 1 FT931-15900 0 +303 1 FT931-1860 -1 +303 1 FT931-2231 0 +303 1 FT931-3522 0 +303 1 FT931-3827 -1 +303 1 FT931-4109 0 +303 1 FT931-5157 0 +303 1 FT931-5545 -1 +303 1 FT931-5858 0 +303 1 FT931-6554 2 +303 1 FT931-7240 -1 +303 1 FT931-9388 0 +303 1 FT931-9677 0 +303 1 FT931-9998 -1 +303 1 FT932-12850 0 +303 1 FT932-12979 0 +303 1 FT932-13081 -1 +303 1 FT932-13517 0 +303 1 FT932-13766 0 +303 1 FT932-14482 -1 +303 1 FT932-15782 0 +303 1 FT932-15788 0 +303 1 FT932-16246 -1 +303 1 FT932-16878 0 +303 1 FT932-1696 0 +303 1 FT932-17203 -1 +303 1 FT932-1828 0 +303 1 FT932-3207 0 +303 1 FT932-3291 -1 +303 1 FT932-378 0 +303 1 FT932-4616 0 +303 1 FT932-4803 -1 +303 1 FT932-5036 0 +303 1 FT932-5038 0 +303 1 FT932-5048 -1 +303 1 FT932-6741 0 +303 1 FT932-7107 0 +303 1 FT932-734 -1 +303 1 FT932-868 0 +303 1 FT932-8978 0 +303 1 FT932-9302 -1 +303 1 FT933-10291 0 +303 1 FT933-10324 0 +303 1 FT933-11321 -1 +303 1 FT933-11538 0 +303 1 FT933-11603 0 +303 1 FT933-1184 -1 +303 1 FT933-12486 0 +303 1 FT933-14487 0 +303 1 FT933-14847 -1 +303 1 FT933-14894 0 +303 1 FT933-15354 0 +303 1 FT933-16201 -1 +303 1 FT933-16728 0 +303 1 FT933-16851 0 +303 1 FT933-2180 -1 +303 1 FT933-2218 0 +303 1 FT933-3699 0 +303 1 FT933-4983 -1 +303 1 FT933-5990 0 +303 1 FT933-6323 0 +303 1 FT933-6678 -1 +303 1 FT933-678 0 +303 1 FT933-6877 0 +303 1 FT933-6882 -1 +303 1 FT933-6946 0 +303 1 FT933-8843 0 +303 1 FT933-9084 -1 +303 1 FT933-9701 0 +303 1 FT934-10579 0 +303 1 FT934-10850 -1 +303 1 FT934-10897 0 +303 1 FT934-11052 0 +303 1 FT934-11633 -1 +303 1 FT934-1193 0 +303 1 FT934-12356 0 +303 1 FT934-14956 -1 +303 1 FT934-16249 0 +303 1 FT934-17357 0 +303 1 FT934-2516 -1 +303 1 FT934-2630 0 +303 1 FT934-2685 0 +303 1 FT934-3191 -1 +303 1 FT934-3325 0 +303 1 FT934-3608 0 +303 1 FT934-3766 -1 +303 1 FT934-4015 0 +303 1 FT934-4132 0 +303 1 FT934-4163 -1 +303 1 FT934-4467 0 +303 1 FT934-4583 0 +303 1 FT934-4766 -1 +303 1 FT934-4842 0 +303 1 FT934-4882 0 +303 1 FT934-5418 -1 +303 1 FT934-5460 0 +303 1 FT934-5524 0 +303 1 FT934-5811 -1 +303 1 FT934-5820 0 +303 1 FT934-7129 0 +303 1 FT934-7549 -1 +303 1 FT934-8767 0 +303 1 FT934-9330 0 +303 1 FT941-11088 -1 +303 1 FT941-11413 0 +303 1 FT941-11486 0 +303 1 FT941-11756 -1 +303 1 FT941-12019 0 +303 1 FT941-13695 0 +303 1 FT941-1374 -1 +303 1 FT941-1391 0 +303 1 FT941-1394 0 +303 1 FT941-14233 -1 +303 1 FT941-15661 2 +303 1 FT941-16882 0 +303 1 FT941-16886 -1 +303 1 FT941-16981 0 +303 1 FT941-17036 0 +303 1 FT941-17441 -1 +303 1 FT941-17487 0 +303 1 FT941-17636 0 +303 1 FT941-17652 -1 +303 1 FT941-2547 0 +303 1 FT941-2665 0 +303 1 FT941-2991 -1 +303 1 FT941-3758 0 +303 1 FT941-4026 0 +303 1 FT941-4092 -1 +303 1 FT941-4444 0 +303 1 FT941-5396 0 +303 1 FT941-541 -1 +303 1 FT941-6402 0 +303 1 FT941-7923 0 +303 1 FT941-793 -1 +303 1 FT941-7995 0 +303 1 FT942-10936 0 +303 1 FT942-11263 -1 +303 1 FT942-12236 0 +303 1 FT942-12872 0 +303 1 FT942-13026 -1 +303 1 FT942-13246 0 +303 1 FT942-13367 0 +303 1 FT942-14060 -1 +303 1 FT942-1469 0 +303 1 FT942-15138 0 +303 1 FT942-16737 -1 +303 1 FT942-16817 0 +303 1 FT942-17118 0 +303 1 FT942-344 -1 +303 1 FT942-417 0 +303 1 FT942-5339 0 +303 1 FT942-5356 -1 +303 1 FT942-5468 0 +303 1 FT942-5834 0 +303 1 FT942-6534 -1 +303 1 FT942-68 0 +303 1 FT942-7259 0 +303 1 FT942-786 -1 +303 1 FT942-795 0 +303 1 FT942-8367 0 +303 1 FT943-10128 -1 +303 1 FT943-10171 0 +303 1 FT943-10786 0 +303 1 FT943-10793 -1 +303 1 FT943-11292 0 +303 1 FT943-11617 0 +303 1 FT943-1201 -1 +303 1 FT943-1280 0 +303 1 FT943-12840 0 +303 1 FT943-13317 -1 +303 1 FT943-13465 0 +303 1 FT943-14262 0 +303 1 FT943-14510 -1 +303 1 FT943-14574 0 +303 1 FT943-14635 0 +303 1 FT943-14986 -1 +303 1 FT943-15147 0 +303 1 FT943-15250 0 +303 1 FT943-15591 -1 +303 1 FT943-16229 0 +303 1 FT943-3051 0 +303 1 FT943-3170 -1 +303 1 FT943-3693 0 +303 1 FT943-4589 0 +303 1 FT943-4595 -1 +303 1 FT943-4813 0 +303 1 FT943-5596 0 +303 1 FT943-5598 -1 +303 1 FT943-6074 0 +303 1 FT943-6422 0 +303 1 FT943-7294 -1 +303 1 FT943-8129 0 +303 1 FT943-8794 0 +303 1 FT943-9282 -1 +303 1 FT943-9830 0 +303 1 FT944-11415 0 +303 1 FT944-11782 -1 +303 1 FT944-12542 0 +303 1 FT944-12573 0 +303 1 FT944-12693 -1 +303 1 FT944-128 2 +303 1 FT944-12897 0 +303 1 FT944-1329 -1 +303 1 FT944-14417 0 +303 1 FT944-14989 0 +303 1 FT944-18272 -1 +303 1 FT944-18385 0 +303 1 FT944-3898 0 +303 1 FT944-3901 -1 +303 1 FT944-419 0 +303 1 FT944-4838 0 +303 1 FT944-509 -1 +303 1 FT944-5488 0 +303 1 FT944-552 0 +303 1 FT944-6624 -1 +303 1 FT944-6937 0 +303 1 FT944-8381 0 +303 1 FT944-8537 -1 +303 1 FT944-8893 0 +303 1 FT944-9936 0 +303 1 LA010689-0016 -1 +303 1 LA010889-0081 0 +303 1 LA011590-0098 0 +303 1 LA011789-0014 -1 +303 1 LA011990-0173 0 +303 1 LA012090-0105 0 +303 1 LA012090-0106 -1 +303 1 LA012789-0162 0 +303 1 LA012790-0042 0 +303 1 LA020190-0053 -1 +303 1 LA020889-0065 0 +303 1 LA020989-0012 0 +303 1 LA022689-0112 -1 +303 1 LA030590-0070 0 +303 1 LA030990-0068 0 +303 1 LA031090-0099 -1 +303 1 LA031190-0216 0 +303 1 LA031289-0114 0 +303 1 LA031490-0065 -1 +303 1 LA031490-0066 0 +303 1 LA031589-0130 0 +303 1 LA031689-0206 -1 +303 1 LA031989-0181 0 +303 1 LA031989-0182 0 +303 1 LA032790-0023 -1 +303 1 LA033089-0032 0 +303 1 LA033090-0082 0 +303 1 LA033090-0083 -1 +303 1 LA040190-0178 0 +303 1 LA040190-0179 0 +303 1 LA040590-0220 -1 +303 1 LA040689-0155 0 +303 1 LA041090-0148 0 +303 1 LA041190-0003 -1 +303 1 LA041390-0018 0 +303 1 LA041490-0064 0 +303 1 LA041589-0014 -1 +303 1 LA041590-0161 0 +303 1 LA041689-0190 0 +303 1 LA041690-0035 -1 +303 1 LA041690-0050 0 +303 1 LA041690-0051 0 +303 1 LA041790-0054 -1 +303 1 LA041790-0055 0 +303 1 LA041989-0027 0 +303 1 LA041990-0151 -1 +303 1 LA042190-0078 0 +303 1 LA042190-0132 0 +303 1 LA042289-0040 -1 +303 1 LA042290-0096 0 +303 1 LA042290-0160 0 +303 1 LA042390-0041 -1 +303 1 LA042390-0060 0 +303 1 LA042390-0099 0 +303 1 LA042590-0135 -1 +303 1 LA042590-0152 0 +303 1 LA042690-0141 0 +303 1 LA042690-0169 -1 +303 1 LA042790-0070 0 +303 1 LA042890-0035 0 +303 1 LA042890-0151 -1 +303 1 LA042989-0116 0 +303 1 LA043089-0169 0 +303 1 LA043090-0018 -1 +303 1 LA050189-0063 0 +303 1 LA050190-0067 0 +303 1 LA050390-0109 -1 +303 1 LA050589-0090 0 +303 1 LA050589-0092 0 +303 1 LA050590-0027 -1 +303 1 LA050590-0048 0 +303 1 LA050690-0145 0 +303 1 LA050690-0149 -1 +303 1 LA050889-0068 0 +303 1 LA050990-0078 0 +303 1 LA050990-0116 -1 +303 1 LA051090-0069 0 +303 1 LA051090-0070 0 +303 1 LA051190-0064 -1 +303 1 LA051290-0077 0 +303 1 LA051290-0079 2 +303 1 LA051389-0037 -1 +303 1 LA051390-0161 0 +303 1 LA051390-0195 0 +303 1 LA051390-0223 -1 +303 1 LA051490-0110 0 +303 1 LA051590-0074 0 +303 1 LA052090-0088 -1 +303 1 LA052189-0123 0 +303 1 LA052190-0021 0 +303 1 LA052289-0047 -1 +303 1 LA052389-0074 0 +303 1 LA052390-0127 0 +303 1 LA052490-0139 -1 +303 1 LA052589-0193 0 +303 1 LA052690-0037 0 +303 1 LA052890-0021 -1 +303 1 LA052890-0046 0 +303 1 LA052990-0018 0 +303 1 LA053089-0075 -1 +303 1 LA053090-0037 0 +303 1 LA053090-0104 0 +303 1 LA053190-0175 -1 +303 1 LA060290-0131 0 +303 1 LA060390-0159 0 +303 1 LA060489-0196 -1 +303 1 LA060490-0021 0 +303 1 LA060590-0010 0 +303 1 LA060790-0159 -1 +303 1 LA060890-0124 0 +303 1 LA060989-0171 0 +303 1 LA060990-0077 -1 +303 1 LA061189-0173 0 +303 1 LA061190-0085 0 +303 1 LA061289-0051 -1 +303 1 LA061390-0056 0 +303 1 LA061490-0072 0 +303 1 LA061589-0050 -1 +303 1 LA061589-0051 0 +303 1 LA061590-0010 0 +303 1 LA061690-0021 -1 +303 1 LA061690-0030 0 +303 1 LA061789-0027 0 +303 1 LA061789-0028 -1 +303 1 LA061790-0205 0 +303 1 LA061889-0008 0 +303 1 LA062090-0094 -1 +303 1 LA062189-0012 0 +303 1 LA062390-0041 0 +303 1 LA062690-0041 -1 +303 1 LA062789-0090 0 +303 1 LA062790-0085 0 +303 1 LA062890-0206 -1 +303 1 LA062990-0180 0 +303 1 LA063090-0004 0 +303 1 LA063090-0005 -1 +303 1 LA070190-0119 0 +303 1 LA070190-0120 0 +303 1 LA070289-0147 -1 +303 1 LA070290-0051 0 +303 1 LA070390-0084 0 +303 1 LA070390-0085 -1 +303 1 LA070489-0096 0 +303 1 LA070490-0001 0 +303 1 LA070490-0002 -1 +303 1 LA070590-0031 0 +303 1 LA070590-0033 0 +303 1 LA070590-0036 -1 +303 1 LA070590-0097 0 +303 1 LA070690-0095 0 +303 1 LA070789-0002 -1 +303 1 LA070789-0127 0 +303 1 LA070790-0083 0 +303 1 LA070790-0084 -1 +303 1 LA070890-0079 0 +303 1 LA070890-0080 0 +303 1 LA070890-0154 -1 +303 1 LA070890-0155 0 +303 1 LA070989-0062 0 +303 1 LA070989-0063 -1 +303 1 LA070990-0052 0 +303 1 LA070990-0053 0 +303 1 LA071090-0047 -1 +303 1 LA071090-0048 0 +303 1 LA071090-0141 0 +303 1 LA071390-0122 -1 +303 1 LA071390-0123 0 +303 1 LA071490-0024 0 +303 1 LA071490-0091 -1 +303 1 LA071490-0092 0 +303 1 LA071690-0048 0 +303 1 LA071690-0049 -1 +303 1 LA071990-0165 0 +303 1 LA071990-0250 0 +303 1 LA072090-0146 -1 +303 1 LA072090-0147 0 +303 1 LA072190-0065 0 +303 1 LA072190-0066 -1 +303 1 LA072389-0021 0 +303 1 LA072390-0058 0 +303 1 LA072390-0060 -1 +303 1 LA072490-0033 0 +303 1 LA072590-0005 0 +303 1 LA072590-0006 -1 +303 1 LA072590-0115 0 +303 1 LA072690-0124 0 +303 1 LA072690-0125 -1 +303 1 LA072690-0133 0 +303 1 LA072690-0134 0 +303 1 LA072789-0050 -1 +303 1 LA072890-0052 0 +303 1 LA072890-0078 0 +303 1 LA072890-0079 -1 +303 1 LA072990-0118 0 +303 1 LA073089-0149 0 +303 1 LA080489-0048 -1 +303 1 LA080590-0195 0 +303 1 LA080889-0066 0 +303 1 LA080890-0044 -1 +303 1 LA080989-0058 0 +303 1 LA080990-0216 0 +303 1 LA080990-0222 -1 +303 1 LA080990-0223 0 +303 1 LA080990-0232 0 +303 1 LA080990-0242 -1 +303 1 LA081090-0078 0 +303 1 LA081090-0079 0 +303 1 LA081090-0080 -1 +303 1 LA081190-0108 0 +303 1 LA081290-0215 0 +303 1 LA081290-0216 -1 +303 1 LA081489-0055 0 +303 1 LA081690-0102 0 +303 1 LA081790-0083 -1 +303 1 LA081790-0164 0 +303 1 LA081790-0165 0 +303 1 LA081989-0048 -1 +303 1 LA081990-0158 0 +303 1 LA082089-0163 0 +303 1 LA082190-0014 -1 +303 1 LA082190-0015 0 +303 1 LA082389-0028 0 +303 1 LA082490-0075 -1 +303 1 LA082590-0019 0 +303 1 LA082789-0096 0 +303 1 LA082789-0201 -1 +303 1 LA082890-0147 0 +303 1 LA082890-0148 0 +303 1 LA082989-0074 -1 +303 1 LA090189-0018 0 +303 1 LA090389-0097 0 +303 1 LA090389-0100 -1 +303 1 LA090390-0035 0 +303 1 LA090489-0037 0 +303 1 LA090489-0038 -1 +303 1 LA090689-0015 0 +303 1 LA090690-0100 0 +303 1 LA090690-0101 -1 +303 1 LA090790-0049 0 +303 1 LA090790-0050 0 +303 1 LA090889-0077 -1 +303 1 LA091089-0170 0 +303 1 LA091089-0172 0 +303 1 LA091190-0096 -1 +303 1 LA091190-0102 0 +303 1 LA091390-0046 0 +303 1 LA091689-0028 -1 +303 1 LA091690-0166 0 +303 1 LA091890-0053 0 +303 1 LA091890-0054 -1 +303 1 LA091890-0156 0 +303 1 LA092489-0053 0 +303 1 LA092489-0134 -1 +303 1 LA092690-0092 0 +303 1 LA092690-0093 0 +303 1 LA092690-0117 -1 +303 1 LA092790-0128 0 +303 1 LA100189-0205 0 +303 1 LA100290-0067 -1 +303 1 LA100889-0040 0 +303 1 LA101189-0144 0 +303 1 LA101290-0125 -1 +303 1 LA101690-0023 0 +303 1 LA101790-0151 0 +303 1 LA102189-0071 -1 +303 1 LA102289-0098 0 +303 1 LA102290-0066 0 +303 1 LA102290-0067 -1 +303 1 LA102590-0235 0 +303 1 LA102689-0127 0 +303 1 LA102890-0197 -1 +303 1 LA110590-0076 2 +303 1 LA110590-0077 0 +303 1 LA110989-0239 -1 +303 1 LA111089-0012 0 +303 1 LA111090-0135 0 +303 1 LA111789-0042 -1 +303 1 LA111789-0101 0 +303 1 LA111789-0151 0 +303 1 LA111990-0004 -1 +303 1 LA112089-0048 0 +303 1 LA112190-0043 2 +303 1 LA112190-0044 -1 +303 1 LA112390-0146 0 +303 1 LA112690-0067 0 +303 1 LA112990-0083 -1 +303 1 LA113090-0157 0 +303 1 LA120190-0125 0 +303 1 LA120390-0065 -1 +303 1 LA120390-0126 0 +303 1 LA120590-0110 0 +303 1 LA120890-0048 -1 +303 1 LA120990-0163 0 +303 1 LA120990-0165 0 +303 1 LA121190-0079 -1 +303 1 LA121190-0089 0 +303 1 LA121190-0090 0 +303 1 LA121190-0160 -1 +303 1 LA121790-0086 0 +303 1 LA121790-0087 0 +303 1 LA122090-0004 -1 +303 1 LA122090-0228 0 +303 1 LA122190-0021 0 +303 1 LA122390-0127 -1 +303 1 LA122589-0068 0 +303 1 LA122590-0113 0 +303 1 LA122790-0152 -1 +303 1 LA122990-0029 2 +303 1 LA122990-0030 0 +301 2 CR93E-10279 0 +301 2 CR93E-10505 0 +301 2 CR93E-1282 1 +301 2 CR93E-1850 0 +301 2 CR93E-1860 3 +301 2 CR93E-1952 0 +301 2 CR93E-2191 0 +301 2 CR93E-2473 0 +301 2 CR93E-3103 1 +301 2 CR93E-3284 0 +301 2 CR93E-38 0 +301 2 CR93E-392 0 +301 2 CR93E-4648 0 +301 2 CR93E-4765 0 +301 2 CR93E-4855 0 +301 2 CR93E-5497 0 +301 2 CR93E-5780 0 +301 2 CR93E-5796 1 +301 2 CR93E-5799 4 +301 2 CR93E-6019 0 +301 2 CR93E-6879 0 +301 2 CR93E-6905 4 +301 2 CR93E-7123 0 +301 2 CR93E-7191 0 +301 2 CR93E-7276 0 +301 2 CR93E-7348 4 +301 2 CR93E-7376 1 +301 2 CR93E-7414 0 +301 2 CR93E-7716 0 +301 2 CR93E-7952 2 +301 2 CR93E-8012 0 +301 2 CR93E-8290 2 +301 2 CR93E-8416 1 +301 2 CR93E-8480 0 +301 2 CR93E-8484 0 +301 2 CR93E-9665 2 +301 2 CR93E-9750 2 +301 2 CR93E-9795 0 +301 2 CR93H-10037 4 +301 2 CR93H-10042 0 +301 2 CR93H-10104 0 +301 2 CR93H-10213 0 +301 2 CR93H-10221 0 +301 2 CR93H-10306 0 +301 2 CR93H-10374 0 +301 2 CR93H-10601 0 +301 2 CR93H-10659 0 +301 2 CR93H-10681 0 +301 2 CR93H-10921 0 +301 2 CR93H-10989 0 +301 2 CR93H-11029 0 +301 2 CR93H-11033 0 +301 2 CR93H-11034 0 +301 2 CR93H-11077 0 +301 2 CR93H-11119 0 +301 2 CR93H-11267 0 +301 2 CR93H-11291 1 +301 2 CR93H-11586 0 +301 2 CR93H-11806 0 +301 2 CR93H-11894 0 +301 2 CR93H-11994 0 +301 2 CR93H-11998 0 +301 2 CR93H-12016 0 +301 2 CR93H-12017 0 +301 2 CR93H-12150 0 +301 2 CR93H-12163 0 +301 2 CR93H-12181 0 +301 2 CR93H-12278 0 +301 2 CR93H-12436 0 +301 2 CR93H-12498 3 +301 2 CR93H-12610 0 +301 2 CR93H-12820 0 +301 2 CR93H-12874 0 +301 2 CR93H-12908 0 +301 2 CR93H-1298 0 +301 2 CR93H-12982 0 +301 2 CR93H-12983 0 +301 2 CR93H-12988 0 +301 2 CR93H-13053 0 +301 2 CR93H-13205 0 +301 2 CR93H-13529 1 +301 2 CR93H-13593 1 +301 2 CR93H-13595 1 +301 2 CR93H-13659 0 +301 2 CR93H-13680 0 +301 2 CR93H-13849 0 +301 2 CR93H-14136 0 +301 2 CR93H-14306 0 +301 2 CR93H-14325 0 +301 2 CR93H-14388 0 +301 2 CR93H-14389 1 +301 2 CR93H-14469 0 +301 2 CR93H-1461 0 +301 2 FBIS3-21724 1 +301 2 FBIS3-21729 3 +301 2 FBIS3-21743 1 +301 2 FBIS3-21750 2 +301 2 FBIS3-21762 0 +301 2 FBIS3-21765 1 +301 2 FBIS3-21769 0 +301 2 FBIS3-21770 1 +301 2 FBIS3-21771 1 +301 2 FBIS3-21779 0 +301 2 FBIS3-21789 1 +301 2 FBIS3-21790 0 +301 2 FBIS3-21807 1 +301 2 FBIS3-21817 3 +301 2 FBIS3-21818 1 +301 2 FBIS3-21821 1 +301 2 FBIS3-21828 0 +301 2 FBIS3-21880 1 +301 2 FBIS3-21884 4 +301 2 FBIS3-21886 2 +301 2 FBIS3-21900 1 +301 2 FBIS3-21906 0 +301 2 FBIS3-21907 1 +301 2 FBIS3-21911 1 +301 2 FBIS3-21912 3 +301 2 FBIS3-21930 1 +301 2 FBIS3-21938 0 +301 2 FBIS3-21961 1 +301 2 FBIS3-24037 0 +301 2 FBIS3-24039 0 +301 2 FBIS3-24137 0 +301 2 FBIS3-24143 0 +301 2 FBIS3-24145 0 +301 2 FBIS3-24182 0 +301 2 FBIS3-24197 1 +301 2 FBIS3-24247 0 +301 2 FBIS3-24256 0 +301 2 FBIS3-24277 0 +301 2 FBIS3-24284 0 +301 2 FBIS3-24318 1 +301 2 FBIS3-24325 1 +301 2 FBIS3-24338 0 +301 2 FBIS3-24362 0 +301 2 FBIS3-24451 0 +301 2 FBIS3-24453 0 +301 2 FBIS3-2516 0 +301 2 FBIS3-25359 0 +301 2 FBIS3-25902 0 +301 2 FBIS3-26005 1 +301 2 FBIS3-2605 0 +301 2 FBIS3-26415 1 +301 2 FBIS3-26451 0 +301 2 FBIS3-26913 1 +301 2 FBIS3-26914 1 +301 2 FBIS3-27048 0 +301 2 FBIS3-27916 0 +301 2 FBIS3-28833 0 +301 2 FBIS3-29180 0 +301 2 FBIS3-3020 0 +301 2 FBIS3-31267 1 +301 2 FBIS3-31749 0 +301 2 FBIS3-3189 0 +301 2 FBIS3-3190 0 +301 2 FBIS3-3223 0 +301 2 FBIS3-32399 0 +301 2 FBIS3-32400 0 +301 2 FBIS3-32453 1 +301 2 FBIS3-32619 1 +301 2 FBIS3-32620 0 +301 2 FBIS3-32674 1 +301 2 FBIS3-32817 1 +301 2 FBIS3-32833 1 +301 2 FBIS3-32880 1 +301 2 FBIS3-33001 1 +301 2 FBIS3-3304 0 +301 2 FBIS3-33150 1 +301 2 FBIS3-33206 1 +301 2 FBIS3-33239 0 +301 2 FBIS3-33241 1 +301 2 FBIS3-33243 1 +301 2 FBIS3-33287 1 +301 2 FBIS3-33366 1 +301 2 FBIS3-33438 1 +301 2 FBIS3-33570 1 +301 2 FBIS3-33590 0 +301 2 FBIS3-33963 1 +301 2 FBIS3-34361 0 +301 2 FBIS3-34451 0 +301 2 FBIS3-34994 0 +301 2 FBIS3-35229 0 +301 2 FBIS3-36375 0 +301 2 FBIS3-36824 0 +301 2 FBIS3-36869 0 +301 2 FBIS3-37418 0 +301 2 FBIS3-37492 0 +301 2 FBIS3-37697 0 +301 2 FBIS3-37944 0 +301 2 FBIS3-37947 1 +301 2 FBIS3-38070 1 +301 2 FBIS3-38124 0 +301 2 FBIS3-38466 1 +301 2 FBIS3-38787 0 +301 2 FBIS3-38878 1 +301 2 FBIS3-39430 0 +301 2 FBIS3-41247 1 +301 2 FBIS3-41272 1 +301 2 FBIS3-41285 1 +301 2 FBIS3-41288 0 +301 2 FBIS3-41291 0 +301 2 FBIS3-41293 1 +301 2 FBIS3-41294 1 +301 2 FBIS3-41295 1 +301 2 FBIS3-41298 1 +301 2 FBIS3-41305 0 +301 2 FBIS3-41312 0 +301 2 FBIS3-41317 1 +301 2 FBIS3-41320 1 +301 2 FBIS3-41325 1 +301 2 FBIS3-41345 1 +301 2 FBIS3-41347 1 +301 2 FBIS3-41348 1 +301 2 FBIS3-41349 1 +301 2 FBIS3-41385 0 +301 2 FBIS3-41387 1 +301 2 FBIS3-41398 1 +301 2 FBIS3-41400 1 +301 2 FBIS3-41401 1 +301 2 FBIS3-41402 1 +301 2 FBIS3-41406 1 +301 2 FBIS3-41472 0 +301 2 FBIS3-41666 0 +301 2 FBIS3-41958 0 +301 2 FBIS3-4209 0 +301 2 FBIS3-42278 0 +301 2 FBIS3-42315 1 +301 2 FBIS3-42319 0 +301 2 FBIS3-42341 0 +301 2 FBIS3-42576 0 +301 2 FBIS3-42621 0 +301 2 FBIS3-42766 0 +301 2 FBIS3-42820 1 +301 2 FBIS3-42845 0 +301 2 FBIS3-43072 0 +301 2 FBIS3-43550 0 +301 2 FBIS3-44579 0 +301 2 FBIS4-20965 1 +301 2 FBIS4-20966 1 +301 2 FBIS4-20970 1 +301 2 FBIS4-20976 1 +301 2 FBIS4-20980 1 +301 2 FBIS4-20995 0 +301 2 FBIS4-21016 1 +301 2 FBIS4-21041 1 +301 2 FBIS4-2105 0 +301 2 FBIS4-21060 1 +301 2 FBIS4-21061 0 +301 2 FBIS4-21062 0 +301 2 FBIS4-21094 1 +301 2 FBIS4-21124 0 +301 2 FBIS4-21126 0 +301 2 FBIS4-21133 0 +301 2 FBIS4-21134 0 +301 2 FBIS4-21139 0 +301 2 FBIS4-21168 0 +301 2 FBIS4-21171 1 +301 2 FBIS4-21188 0 +301 2 FBIS4-21207 0 +301 2 FBIS4-21212 0 +301 2 FBIS4-21213 1 +301 2 FBIS4-21244 0 +301 2 FBIS4-21261 0 +301 2 FBIS4-21287 0 +301 2 FBIS4-21302 1 +301 2 FBIS4-21310 0 +301 2 FBIS4-21321 1 +301 2 FBIS4-21336 0 +301 2 FBIS4-21340 1 +301 2 FBIS4-21936 0 +301 2 FBIS4-22214 1 +301 2 FBIS4-22235 1 +301 2 FBIS4-22345 0 +301 2 FBIS4-22444 0 +301 2 FBIS4-22455 0 +301 2 FBIS4-22471 0 +301 2 FBIS4-22523 0 +301 2 FBIS4-22537 0 +301 2 FBIS4-22596 0 +301 2 FBIS4-22768 1 +301 2 FBIS4-24388 0 +301 2 FBIS4-24523 1 +301 2 FBIS4-25032 0 +301 2 FBIS4-26003 0 +301 2 FBIS4-26127 0 +301 2 FBIS4-26192 0 +301 2 FBIS4-26323 1 +301 2 FBIS4-26335 0 +301 2 FBIS4-26351 0 +301 2 FBIS4-26415 0 +301 2 FBIS4-26788 0 +301 2 FBIS4-26902 1 +301 2 FBIS4-27085 0 +301 2 FBIS4-27100 1 +301 2 FBIS4-2721 0 +301 2 FBIS4-41215 0 +301 2 FBIS4-41223 0 +301 2 FBIS4-41394 0 +301 2 FBIS4-41395 0 +301 2 FBIS4-41396 0 +301 2 FBIS4-41398 0 +301 2 FBIS4-41538 0 +301 2 FBIS4-41541 0 +301 2 FBIS4-41684 0 +301 2 FBIS4-41687 1 +301 2 FBIS4-41832 0 +301 2 FBIS4-41839 0 +301 2 FBIS4-41860 0 +301 2 FBIS4-41863 0 +301 2 FBIS4-41952 0 +301 2 FBIS4-41976 0 +301 2 FBIS4-41991 0 +301 2 FBIS4-42499 1 +301 2 FBIS4-42757 1 +301 2 FBIS4-43152 1 +301 2 FBIS4-43533 1 +301 2 FBIS4-43552 1 +301 2 FBIS4-43791 0 +301 2 FBIS4-43797 1 +301 2 FBIS4-43801 1 +301 2 FBIS4-43965 1 +301 2 FBIS4-44181 0 +301 2 FBIS4-45158 1 +301 2 FBIS4-45166 0 +301 2 FBIS4-45172 0 +301 2 FBIS4-45175 1 +301 2 FBIS4-45195 0 +301 2 FBIS4-45205 0 +301 2 FBIS4-45230 1 +301 2 FBIS4-45239 1 +301 2 FBIS4-45251 1 +301 2 FBIS4-45257 1 +301 2 FBIS4-45277 1 +301 2 FBIS4-49075 0 +301 2 FBIS4-49289 0 +301 2 FBIS4-49667 0 +301 2 FBIS4-49754 0 +301 2 FBIS4-49845 0 +301 2 FBIS4-50083 0 +301 2 FBIS4-50478 0 +301 2 FBIS4-50901 0 +301 2 FBIS4-50956 0 +301 2 FBIS4-50993 0 +301 2 FBIS4-51335 0 +301 2 FBIS4-52002 0 +301 2 FBIS4-52093 0 +301 2 FBIS4-52587 0 +301 2 FBIS4-53424 1 +301 2 FBIS4-54126 0 +301 2 FBIS4-54227 1 +301 2 FBIS4-54287 0 +301 2 FBIS4-54501 0 +301 2 FBIS4-54604 0 +301 2 FBIS4-54904 1 +301 2 FBIS4-55395 0 +301 2 FBIS4-56290 0 +301 2 FBIS4-56434 1 +301 2 FBIS4-56467 1 +301 2 FBIS4-56471 1 +301 2 FBIS4-56487 1 +301 2 FBIS4-56513 1 +301 2 FBIS4-56524 0 +301 2 FBIS4-56605 1 +301 2 FBIS4-56693 1 +301 2 FBIS4-56776 0 +301 2 FBIS4-56803 1 +301 2 FBIS4-56930 1 +301 2 FBIS4-56965 1 +301 2 FBIS4-56974 1 +301 2 FBIS4-56982 1 +301 2 FBIS4-56992 1 +301 2 FBIS4-57053 0 +301 2 FBIS4-57121 0 +301 2 FBIS4-57301 1 +301 2 FBIS4-57322 1 +301 2 FBIS4-57754 1 +301 2 FBIS4-57869 1 +301 2 FBIS4-57987 1 +301 2 FBIS4-58122 0 +301 2 FBIS4-60945 0 +301 2 FBIS4-61644 0 +301 2 FBIS4-61663 0 +301 2 FBIS4-62028 1 +301 2 FBIS4-62049 0 +301 2 FBIS4-62078 0 +301 2 FBIS4-62079 0 +301 2 FBIS4-62372 0 +301 2 FBIS4-63153 0 +301 2 FBIS4-63597 0 +301 2 FBIS4-64135 0 +301 2 FBIS4-64345 0 +301 2 FBIS4-6448 0 +301 2 FBIS4-65446 0 +301 2 FBIS4-65501 0 +301 2 FBIS4-65806 1 +301 2 FBIS4-66122 0 +301 2 FBIS4-66308 0 +301 2 FBIS4-66382 0 +301 2 FBIS4-66940 1 +301 2 FBIS4-66950 1 +301 2 FBIS4-66951 1 +301 2 FBIS4-66952 1 +301 2 FBIS4-66973 1 +301 2 FBIS4-66974 1 +301 2 FBIS4-67000 1 +301 2 FBIS4-67003 0 +301 2 FBIS4-67005 0 +301 2 FBIS4-67027 1 +301 2 FBIS4-67046 0 +301 2 FBIS4-67051 1 +301 2 FBIS4-67058 1 +301 2 FBIS4-67062 1 +301 2 FBIS4-67072 1 +301 2 FBIS4-67135 1 +301 2 FBIS4-67140 1 +301 2 FBIS4-67144 1 +301 2 FBIS4-67149 0 +301 2 FBIS4-67150 1 +301 2 FBIS4-67156 1 +301 2 FBIS4-67165 0 +301 2 FBIS4-67169 1 +301 2 FBIS4-67170 1 +301 2 FBIS4-67176 1 +301 2 FBIS4-67178 1 +301 2 FBIS4-67183 1 +301 2 FBIS4-67184 1 +301 2 FBIS4-67227 1 +301 2 FBIS4-67239 1 +301 2 FBIS4-67244 0 +301 2 FBIS4-67246 1 +301 2 FBIS4-67263 0 +301 2 FBIS4-67273 0 +301 2 FBIS4-67281 1 +301 2 FBIS4-67292 1 +301 2 FBIS4-67331 1 +301 2 FBIS4-67334 1 +301 2 FBIS4-67336 1 +301 2 FBIS4-67341 0 +301 2 FBIS4-67492 1 +301 2 FBIS4-67942 1 +301 2 FBIS4-68096 0 +301 2 FBIS4-68348 0 +301 2 FBIS4-68349 0 +301 2 FBIS4-68416 0 +301 2 FBIS4-68426 0 +301 2 FBIS4-68498 0 +301 2 FBIS4-68542 0 +301 2 FBIS4-68582 0 +301 2 FBIS4-68653 0 +301 2 FBIS4-68746 0 +301 2 FBIS4-68801 1 +301 2 FBIS4-68847 0 +301 2 FBIS4-68893 0 +301 2 FBIS4-7006 0 +301 2 FBIS4-7688 0 +301 2 FBIS4-7811 1 +301 2 FBIS4-865 0 +301 2 FBIS4-891 0 +301 2 FBIS4-8957 1 +301 2 FBIS4-9354 0 +301 2 FBIS4-9451 0 +301 2 FBIS4-9687 1 +301 2 FBIS4-9819 0 +301 2 FBIS4-9843 1 +301 2 FBIS4-9965 0 +301 2 FR940112-2-00076 0 +301 2 FR940128-2-00139 0 +301 2 FR940202-2-00149 0 +301 2 FR940202-2-00150 0 +301 2 FR940202-2-00151 0 +301 2 FR940202-2-00153 0 +301 2 FR940202-2-00154 0 +301 2 FR940203-1-00036 0 +301 2 FR940203-2-00129 0 +301 2 FR940203-2-00142 0 +301 2 FR940217-1-00073 0 +301 2 FR940223-2-00242 0 +301 2 FR940303-1-00022 0 +301 2 FR940303-2-00208 0 +301 2 FR940314-0-00010 0 +301 2 FR940314-1-00041 0 +301 2 FR940324-2-00091 0 +301 2 FR940328-2-00122 0 +301 2 FR940406-2-00067 0 +301 2 FR940406-2-00175 0 +301 2 FR940412-2-00124 0 +301 2 FR940412-2-00131 0 +301 2 FR940425-2-00078 0 +301 2 FR940425-2-00079 0 +301 2 FR940425-2-00080 0 +301 2 FR940425-2-00081 0 +301 2 FR940429-0-00128 0 +301 2 FR940503-2-00145 0 +301 2 FR940503-2-00146 0 +301 2 FR940503-2-00147 0 +301 2 FR940503-2-00165 0 +301 2 FR940503-2-00169 0 +301 2 FR940503-2-00170 0 +301 2 FR940511-0-00066 0 +301 2 FR940511-2-00139 0 +301 2 FR940511-2-00206 0 +301 2 FR940513-2-00097 0 +301 2 FR940513-2-00103 0 +301 2 FR940516-2-00139 0 +301 2 FR940525-2-00052 0 +301 2 FR940525-2-00068 0 +301 2 FR940526-2-00033 0 +301 2 FR940527-2-00068 0 +301 2 FR940527-2-00069 0 +301 2 FR940603-2-00059 0 +301 2 FT911-1697 0 +301 2 FT911-1821 0 +301 2 FT911-2267 0 +301 2 FT911-2671 0 +301 2 FT911-2685 0 +301 2 FT911-2704 0 +301 2 FT911-2706 0 +301 2 FT911-3036 0 +301 2 FT911-3105 0 +301 2 FT911-3453 0 +301 2 FT911-4494 0 +301 2 FT911-456 0 +301 2 FT911-4634 0 +301 2 FT911-4747 0 +301 2 FT911-5227 0 +301 2 FT911-629 0 +301 2 FT911-71 0 +301 2 FT921-10107 0 +301 2 FT921-861 0 +301 2 FT922-10933 0 +301 2 FT922-11540 0 +301 2 FT922-13596 1 +301 2 FT922-14858 0 +301 2 FT922-14992 0 +301 2 FT922-15159 0 +301 2 FT922-15176 0 +301 2 FT922-3844 0 +301 2 FT922-4774 0 +301 2 FT922-4887 0 +301 2 FT922-5041 0 +301 2 FT922-565 0 +301 2 FT922-616 0 +301 2 FT922-7190 0 +301 2 FT922-790 0 +301 2 FT922-8144 0 +301 2 FT922-8257 0 +301 2 FT922-8731 0 +301 2 FT922-9654 0 +301 2 FT923-10224 0 +301 2 FT923-10456 0 +301 2 FT923-10584 0 +301 2 FT923-11086 0 +301 2 FT923-11460 0 +301 2 FT923-11560 0 +301 2 FT923-11687 0 +301 2 FT923-11785 0 +301 2 FT923-12102 0 +301 2 FT923-12278 0 +301 2 FT923-13103 0 +301 2 FT924-1186 0 +301 2 FT924-11989 0 +301 2 FT924-12138 0 +301 2 FT924-12220 0 +301 2 FT924-13611 1 +301 2 FT924-227 0 +301 2 FT924-2736 0 +301 2 FT924-2822 0 +301 2 FT924-2857 0 +301 2 FT924-3498 0 +301 2 FT924-4782 1 +301 2 FT924-5359 0 +301 2 FT924-6421 0 +301 2 FT924-6543 0 +301 2 FT924-6677 0 +301 2 FT924-9271 0 +301 2 FT924-949 0 +301 2 FT924-9745 0 +301 2 FT931-10356 0 +301 2 FT931-1053 0 +301 2 FT931-11647 0 +301 2 FT931-11843 0 +301 2 FT931-11924 0 +301 2 FT931-13292 0 +301 2 FT931-14697 1 +301 2 FT931-16394 0 +301 2 FT931-16398 0 +301 2 FT931-2175 0 +301 2 FT931-2379 0 +301 2 FT931-2401 0 +301 2 FT931-249 0 +301 2 FT931-3563 1 +301 2 FT931-3941 1 +301 2 FT931-4089 0 +301 2 FT931-4165 0 +301 2 FT931-4939 0 +301 2 FT931-4977 0 +301 2 FT931-5072 0 +301 2 FT931-6121 0 +301 2 FT931-6235 0 +301 2 FT931-682 0 +301 2 FT931-7337 0 +301 2 FT931-7529 0 +301 2 FT931-7536 0 +301 2 FT931-7881 0 +301 2 FT931-8991 0 +301 2 FT931-9181 0 +301 2 FT931-9535 0 +301 2 FT931-9665 0 +301 2 FT931-9667 0 +301 2 FT931-9798 0 +301 2 FT932-1131 0 +301 2 FT932-11505 0 +301 2 FT932-12261 0 +301 2 FT932-12610 0 +301 2 FT932-13676 0 +301 2 FT932-14690 0 +301 2 FT932-2315 0 +301 2 FT932-2874 0 +301 2 FT932-3130 1 +301 2 FT932-3286 0 +301 2 FT932-3322 0 +301 2 FT932-3329 0 +301 2 FT932-3331 0 +301 2 FT932-3336 0 +301 2 FT932-3338 0 +301 2 FT932-41 0 +301 2 FT932-4538 0 +301 2 FT932-4950 0 +301 2 FT932-4965 1 +301 2 FT932-5074 0 +301 2 FT932-5376 1 +301 2 FT932-5377 1 +301 2 FT932-5629 0 +301 2 FT932-5672 0 +301 2 FT932-6233 0 +301 2 FT932-6340 0 +301 2 FT932-6347 0 +301 2 FT932-7056 1 +301 2 FT932-7266 0 +301 2 FT932-7295 0 +301 2 FT932-8233 0 +301 2 FT933-10064 0 +301 2 FT933-11054 0 +301 2 FT933-11067 0 +301 2 FT933-11804 1 +301 2 FT933-12030 0 +301 2 FT933-1329 0 +301 2 FT933-1331 0 +301 2 FT933-1338 0 +301 2 FT933-13408 0 +301 2 FT933-13528 0 +301 2 FT933-15522 0 +301 2 FT933-15581 0 +301 2 FT933-15697 0 +301 2 FT933-1600 0 +301 2 FT933-16366 0 +301 2 FT933-16962 0 +301 2 FT933-17008 1 +301 2 FT933-1718 0 +301 2 FT933-2139 0 +301 2 FT933-2224 1 +301 2 FT933-279 0 +301 2 FT933-4677 0 +301 2 FT933-550 0 +301 2 FT933-582 0 +301 2 FT933-6786 0 +301 2 FT933-6924 0 +301 2 FT933-6966 0 +301 2 FT933-6971 0 +301 2 FT933-7993 0 +301 2 FT933-8067 0 +301 2 FT934-10491 1 +301 2 FT934-10543 0 +301 2 FT934-10783 0 +301 2 FT934-11015 0 +301 2 FT934-11658 0 +301 2 FT934-11945 0 +301 2 FT934-12578 0 +301 2 FT934-13302 0 +301 2 FT934-14820 0 +301 2 FT934-16551 0 +301 2 FT934-17146 0 +301 2 FT934-2267 0 +301 2 FT934-2699 0 +301 2 FT934-3452 0 +301 2 FT934-4154 0 +301 2 FT934-4340 0 +301 2 FT934-4582 0 +301 2 FT934-5231 0 +301 2 FT934-5726 0 +301 2 FT934-5891 0 +301 2 FT934-6874 0 +301 2 FT934-7013 0 +301 2 FT934-7093 0 +301 2 FT934-7094 0 +301 2 FT934-7631 0 +301 2 FT934-7660 0 +301 2 FT934-8411 0 +301 2 FT934-8545 0 +301 2 FT934-8632 0 +301 2 FT934-8633 0 +301 2 FT934-8640 0 +301 2 FT941-10546 0 +301 2 FT941-10611 1 +301 2 FT941-11262 0 +301 2 FT941-11279 0 +301 2 FT941-11449 0 +301 2 FT941-11505 0 +301 2 FT941-12402 0 +301 2 FT941-12805 0 +301 2 FT941-13151 1 +301 2 FT941-13349 0 +301 2 FT941-14742 0 +301 2 FT941-14810 0 +301 2 FT941-15027 0 +301 2 FT941-15378 0 +301 2 FT941-15631 0 +301 2 FT941-1682 0 +301 2 FT941-16929 0 +301 2 FT941-17064 0 +301 2 FT941-2244 0 +301 2 FT941-3237 1 +301 2 FT941-4259 0 +301 2 FT941-5289 0 +301 2 FT941-5453 1 +301 2 FT941-8491 0 +301 2 FT941-8966 0 +301 2 FT941-9876 0 +301 2 FT942-10163 0 +301 2 FT942-10977 0 +301 2 FT942-11067 0 +301 2 FT942-11396 0 +301 2 FT942-12197 0 +301 2 FT942-13293 0 +301 2 FT942-13766 0 +301 2 FT942-14060 0 +301 2 FT942-1417 0 +301 2 FT942-14542 0 +301 2 FT942-14609 0 +301 2 FT942-14967 0 +301 2 FT942-15220 0 +301 2 FT942-16403 0 +301 2 FT942-17001 1 +301 2 FT942-17066 0 +301 2 FT942-1711 0 +301 2 FT942-1715 0 +301 2 FT942-187 0 +301 2 FT942-2876 0 +301 2 FT942-2882 0 +301 2 FT942-3474 0 +301 2 FT942-3714 0 +301 2 FT942-4368 0 +301 2 FT942-5157 0 +301 2 FT942-5274 0 +301 2 FT942-5466 0 +301 2 FT942-6404 0 +301 2 FT942-6526 0 +301 2 FT942-7117 0 +301 2 FT942-7322 0 +301 2 FT942-7335 0 +301 2 FT942-7403 0 +301 2 FT942-792 1 +301 2 FT942-852 0 +301 2 FT942-8529 0 +301 2 FT942-8530 0 +301 2 FT942-8808 0 +301 2 FT942-885 0 +301 2 FT942-933 0 +301 2 FT942-9466 0 +301 2 FT942-9490 0 +301 2 FT942-9715 0 +301 2 FT943-11739 0 +301 2 FT943-12965 0 +301 2 FT943-13315 0 +301 2 FT943-13339 0 +301 2 FT943-14383 0 +301 2 FT943-15429 0 +301 2 FT943-15437 0 +301 2 FT943-15910 0 +301 2 FT943-16238 4 +301 2 FT943-16477 4 +301 2 FT943-16618 0 +301 2 FT943-2156 0 +301 2 FT943-2588 0 +301 2 FT943-295 0 +301 2 FT943-3533 2 +301 2 FT943-3953 0 +301 2 FT943-4417 0 +301 2 FT943-505 0 +301 2 FT943-5051 0 +301 2 FT943-5111 0 +301 2 FT943-5179 0 +301 2 FT943-5341 0 +301 2 FT943-5355 0 +301 2 FT943-5577 0 +301 2 FT943-6423 0 +301 2 FT943-726 0 +301 2 FT943-8128 0 +301 2 FT943-8527 0 +301 2 FT943-8670 0 +301 2 FT943-8942 0 +301 2 FT943-8961 0 +301 2 FT944-10136 0 +301 2 FT944-10634 0 +301 2 FT944-10635 2 +301 2 FT944-10673 0 +301 2 FT944-10675 0 +301 2 FT944-10676 0 +301 2 FT944-10779 0 +301 2 FT944-11113 0 +301 2 FT944-11625 0 +301 2 FT944-12104 0 +301 2 FT944-12173 1 +301 2 FT944-12949 0 +301 2 FT944-1350 0 +301 2 FT944-14183 0 +301 2 FT944-14184 0 +301 2 FT944-15443 0 +301 2 FT944-15444 0 +301 2 FT944-1692 0 +301 2 FT944-1808 1 +301 2 FT944-18166 0 +301 2 FT944-18167 0 +301 2 FT944-18184 0 +301 2 FT944-2231 1 +301 2 FT944-2497 0 +301 2 FT944-2600 0 +301 2 FT944-3492 0 +301 2 FT944-4020 0 +301 2 FT944-4116 0 +301 2 FT944-4735 0 +301 2 FT944-4901 0 +301 2 FT944-5537 0 +301 2 FT944-5679 0 +301 2 FT944-5749 0 +301 2 FT944-7669 1 +301 2 FT944-7867 0 +301 2 FT944-8161 0 +301 2 FT944-8297 1 +301 2 LA010290-0076 0 +301 2 LA010590-0084 1 +301 2 LA011290-0184 0 +301 2 LA011390-0046 1 +301 2 LA011390-0156 1 +301 2 LA011490-0115 1 +301 2 LA011790-0128 1 +301 2 LA011890-0125 1 +301 2 LA011990-0102 1 +301 2 LA012090-0101 0 +301 2 LA012190-0120 1 +301 2 LA012290-0053 0 +301 2 LA012690-0169 1 +301 2 LA012890-0073 1 +301 2 LA013190-0012 0 +301 2 LA021089-0177 0 +301 2 LA021590-0204 1 +301 2 LA021690-0049 1 +301 2 LA021790-0127 0 +301 2 LA022590-0191 1 +301 2 LA022689-0075 0 +301 2 LA022790-0089 1 +301 2 LA030290-0106 0 +301 2 LA030490-0017 0 +301 2 LA030490-0071 0 +301 2 LA031190-0216 0 +301 2 LA031289-0074 0 +301 2 LA031490-0140 0 +301 2 LA031690-0077 0 +301 2 LA032090-0091 0 +301 2 LA032189-0097 0 +301 2 LA032790-0103 1 +301 2 LA040689-0155 0 +301 2 LA041189-0055 0 +301 2 LA041389-0038 1 +301 2 LA041390-0018 0 +301 2 LA041589-0014 0 +301 2 LA041689-0150 1 +301 2 LA041689-0190 0 +301 2 LA041690-0050 0 +301 2 LA041690-0051 0 +301 2 LA041789-0008 0 +301 2 LA041790-0054 0 +301 2 LA041790-0055 0 +301 2 LA041890-0075 1 +301 2 LA041989-0027 0 +301 2 LA042190-0078 0 +301 2 LA042289-0040 0 +301 2 LA042390-0099 0 +301 2 LA042690-0169 0 +301 2 LA042890-0015 0 +301 2 LA042890-0151 0 +301 2 LA042989-0116 0 +301 2 LA043089-0169 0 +301 2 LA050189-0063 0 +301 2 LA050489-0093 0 +301 2 LA050590-0027 0 +301 2 LA050590-0048 0 +301 2 LA050690-0134 1 +301 2 LA050690-0145 0 +301 2 LA050690-0149 0 +301 2 LA050789-0006 1 +301 2 LA050789-0007 1 +301 2 LA050990-0077 0 +301 2 LA050990-0078 0 +301 2 LA050990-0116 0 +301 2 LA051190-0064 0 +301 2 LA051389-0039 1 +301 2 LA051390-0175 1 +301 2 LA051590-0064 0 +301 2 LA051690-0108 1 +301 2 LA052090-0088 0 +301 2 LA052090-0143 1 +301 2 LA052189-0123 0 +301 2 LA052190-0021 0 +301 2 LA052190-0064 1 +301 2 LA052289-0047 0 +301 2 LA052490-0139 0 +301 2 LA052690-0037 0 +301 2 LA052690-0142 0 +301 2 LA052890-0046 0 +301 2 LA052990-0018 0 +301 2 LA053089-0075 0 +301 2 LA053190-0175 0 +301 2 LA060489-0196 0 +301 2 LA060490-0021 0 +301 2 LA060490-0122 0 +301 2 LA060590-0010 0 +301 2 LA060790-0159 0 +301 2 LA060990-0077 0 +301 2 LA061189-0173 0 +301 2 LA061190-0085 0 +301 2 LA061190-0112 0 +301 2 LA061289-0051 0 +301 2 LA061290-0117 0 +301 2 LA061389-0060 0 +301 2 LA061390-0056 0 +301 2 LA061490-0229 0 +301 2 LA061590-0010 0 +301 2 LA061690-0021 0 +301 2 LA061690-0030 0 +301 2 LA061789-0027 0 +301 2 LA061789-0028 0 +301 2 LA061790-0205 0 +301 2 LA062090-0094 0 +301 2 LA062189-0012 0 +301 2 LA062189-0052 0 +301 2 LA062189-0067 0 +301 2 LA062390-0041 0 +301 2 LA062690-0041 0 +301 2 LA062890-0206 0 +301 2 LA062989-0196 1 +301 2 LA063089-0061 1 +301 2 LA070289-0147 0 +301 2 LA070289-0171 1 +301 2 LA070290-0003 0 +301 2 LA070290-0051 0 +301 2 LA070590-0016 0 +301 2 LA070590-0097 0 +301 2 LA070689-0122 1 +301 2 LA070690-0095 0 +301 2 LA070790-0061 0 +301 2 LA070890-0079 0 +301 2 LA070890-0080 0 +301 2 LA071089-0065 0 +301 2 LA071190-0028 0 +301 2 LA071290-0123 1 +301 2 LA071489-0020 1 +301 2 LA071490-0024 0 +301 2 LA071690-0047 1 +301 2 LA071889-0026 0 +301 2 LA071990-0150 0 +301 2 LA071990-0165 0 +301 2 LA072090-0146 0 +301 2 LA072090-0147 0 +301 2 LA072490-0033 0 +301 2 LA072590-0115 0 +301 2 LA072689-0016 0 +301 2 LA072789-0050 0 +301 2 LA072890-0052 0 +301 2 LA073189-0043 0 +301 2 LA080489-0020 0 +301 2 LA080590-0195 0 +301 2 LA080689-0093 0 +301 2 LA080889-0098 0 +301 2 LA080890-0044 0 +301 2 LA080989-0129 0 +301 2 LA080990-0216 0 +301 2 LA081089-0167 1 +301 2 LA081190-0051 0 +301 2 LA081190-0108 0 +301 2 LA081589-0042 0 +301 2 LA081690-0102 0 +301 2 LA081789-0093 1 +301 2 LA081790-0083 0 +301 2 LA081889-0147 1 +301 2 LA081989-0048 0 +301 2 LA081990-0158 0 +301 2 LA101589-0174 1 +301 2 LA101590-0071 0 +301 2 LA101689-0002 0 +301 2 LA101789-0155 1 +301 2 LA102089-0025 1 +301 2 LA102289-0170 1 +301 2 LA102290-0116 0 +301 2 LA110990-0184 0 +301 2 LA112089-0024 0 +301 2 LA112489-0069 1 +301 2 LA112489-0141 0 +301 2 LA112489-0142 1 +301 2 LA112490-0089 0 +301 2 LA121089-0089 0 +301 2 LA121289-0096 1 +301 2 LA121389-0124 1 +301 2 LA121490-0027 1 +301 2 LA121589-0007 1 +301 2 LA121589-0184 0 +301 2 LA121689-0077 0 +301 2 LA121890-0057 0 +301 2 LA121890-0079 0 +301 2 LA121890-0086 0 +301 2 LA121990-0123 1 +301 2 LA122089-0109 0 +301 2 LA122389-0069 1 +301 2 LA122789-0009 0 +301 2 LA122889-0124 0 +301 2 LA123090-0148 0 +301 2 FBIS3-60510 3 +301 2 FBIS3-60513 0 +301 2 FBIS3-60514 0 +301 2 FBIS3-60529 0 +301 2 FBIS3-60546 0 +301 2 FBIS3-60553 0 +301 2 FBIS3-60559 0 +301 2 FBIS3-60560 0 +301 2 FBIS3-60561 3 +301 2 FBIS3-60562 3 +301 2 FBIS3-60563 0 +301 2 FBIS3-60564 0 +301 2 FBIS3-60565 0 +301 2 FBIS3-60575 0 +301 2 FBIS3-61373 3 +301 2 FBIS3-6884 0 +301 2 FBIS3-9904 3 +301 2 FBIS4-10721 0 +301 2 FBIS4-13889 0 +301 2 FBIS4-1627 0 +301 2 FBIS4-16647 0 +301 2 FBIS4-1860 0 +301 2 FBIS4-1866 0 +301 2 FBIS4-19 0 +301 2 FBIS4-19733 0 +301 2 FBIS4-20472 0 +301 2 FBIS4-20504 0 +301 2 FBIS4-20697 0 +301 2 FBIS4-2128 1 +301 2 FBIS4-2204 0 +301 2 FBIS4-22716 3 +301 2 FBIS4-22779 0 +301 2 FBIS4-22945 0 +301 2 FBIS4-23089 0 +301 2 FBIS4-23131 0 +301 2 FBIS4-2439 0 +301 2 FBIS4-24438 3 +301 2 FBIS4-26718 0 +301 2 FBIS4-27941 0 +301 2 FBIS4-2880 3 +301 2 FBIS4-29 0 +301 2 FBIS4-30023 0 +301 2 FBIS4-30637 3 +301 2 FBIS4-31787 0 +301 2 FBIS4-32883 0 +301 2 FBIS4-33063 0 +301 2 FBIS4-33295 3 +301 2 FBIS4-33435 0 +301 2 FBIS4-33740 0 +301 2 FBIS4-34379 0 +301 2 FBIS4-38133 2 +301 2 FBIS4-40426 0 +301 2 FBIS4-4067 0 +301 2 FBIS4-42 0 +301 2 FBIS4-4241 3 +301 2 FBIS4-43829 0 +301 2 FBIS4-43830 0 +301 2 FBIS4-43893 0 +301 2 FBIS4-45490 0 +301 2 FBIS4-45613 3 +301 2 FBIS4-45832 0 +301 2 FBIS4-45833 0 +302 2 CR93E-10071 0 +302 2 CR93E-10276 0 +302 2 CR93E-10279 0 +302 2 CR93E-10462 0 +302 2 CR93E-10606 0 +302 2 CR93E-10799 0 +302 2 CR93E-11100 0 +302 2 CR93E-1648 0 +302 2 CR93E-1838 0 +302 2 CR93E-2180 3 +302 2 CR93E-2225 0 +302 2 CR93E-2236 0 +302 2 CR93E-2512 0 +302 2 CR93E-2563 0 +302 2 CR93E-2650 3 +302 2 CR93E-2849 0 +302 2 CR93E-307 0 +302 2 CR93E-3096 3 +302 2 CR93E-3616 0 +302 2 CR93E-3822 3 +302 2 CR93E-4208 0 +302 2 CR93E-4209 0 +302 2 CR93E-4517 0 +302 2 CR93E-4941 0 +302 2 CR93E-5211 0 +302 2 CR93E-5666 3 +302 2 CR93E-5775 3 +302 2 CR93E-5895 0 +302 2 CR93E-5954 0 +302 2 CR93E-6191 0 +302 2 CR93E-6321 0 +302 2 CR93E-6675 0 +302 2 CR93E-6901 3 +302 2 CR93E-7034 3 +302 2 CR93E-7062 0 +302 2 CR93E-7403 0 +302 2 CR93E-7619 1 +302 2 CR93E-7678 1 +302 2 CR93E-8012 1 +302 2 CR93E-8421 1 +302 2 CR93E-8424 0 +302 2 CR93E-8491 0 +302 2 CR93E-8701 0 +302 2 CR93E-8836 0 +302 2 CR93E-9545 0 +302 2 CR93E-9618 0 +302 2 CR93H-10042 0 +302 2 CR93H-10104 0 +302 2 CR93H-10242 0 +302 2 CR93H-10256 0 +302 2 CR93H-10308 0 +302 2 CR93H-10374 0 +302 2 CR93H-10402 0 +302 2 CR93H-10601 0 +302 2 CR93H-10602 0 +302 2 CR93H-10681 1 +302 2 CR93H-10921 1 +302 2 CR93H-1097 0 +302 2 CR93H-10989 0 +302 2 CR93H-11033 0 +302 2 CR93H-11034 0 +302 2 CR93H-11119 0 +302 2 CR93H-11521 0 +302 2 CR93H-11586 0 +302 2 CR93H-1159 0 +302 2 CR93H-11806 0 +302 2 CR93H-11894 1 +302 2 CR93H-11998 1 +302 2 CR93H-12017 0 +302 2 CR93H-12150 0 +302 2 CR93H-12168 2 +302 2 CR93H-12181 2 +302 2 CR93H-12217 0 +302 2 CR93H-12224 0 +302 2 CR93H-12498 0 +302 2 CR93H-12820 0 +302 2 CR93H-12830 0 +302 2 CR93H-12874 0 +302 2 CR93H-1298 0 +302 2 CR93H-12983 0 +302 2 CR93H-12988 0 +302 2 CR93H-13167 2 +302 2 CR93H-13205 0 +302 2 CR93H-13232 0 +302 2 CR93H-13263 0 +302 2 CR93H-13335 0 +302 2 CR93H-13506 0 +302 2 CR93H-13521 0 +302 2 CR93H-13595 0 +302 2 CR93H-13600 6 +302 2 CR93H-13615 0 +302 2 CR93H-13680 0 +302 2 CR93H-13927 0 +302 2 CR93H-14046 0 +302 2 CR93H-14072 0 +302 2 CR93H-14128 0 +302 2 CR93H-14130 0 +302 2 CR93H-14306 0 +302 2 CR93H-14325 0 +302 2 CR93H-14388 0 +302 2 CR93H-14392 0 +302 2 CR93H-14469 0 +302 2 CR93H-14591 0 +302 2 CR93H-14791 0 +302 2 CR93H-15024 0 +302 2 CR93H-15105 0 +302 2 CR93H-15119 0 +302 2 CR93H-15121 1 +302 2 CR93H-1532 0 +302 2 CR93H-15405 0 +302 2 CR93H-15424 0 +302 2 CR93H-15453 0 +302 2 CR93H-15477 0 +302 2 CR93H-15587 0 +302 2 CR93H-15608 0 +302 2 CR93H-15615 0 +302 2 CR93H-15727 3 +302 2 CR93H-15875 0 +302 2 CR93H-15950 0 +302 2 CR93H-16077 0 +302 2 CR93H-16128 3 +302 2 CR93H-16369 0 +302 2 CR93H-1639 0 +302 2 CR93H-1712 0 +302 2 CR93H-1769 0 +302 2 CR93H-185 0 +302 2 CR93H-2429 0 +302 2 CR93H-2431 0 +302 2 CR93H-2707 0 +302 2 CR93H-3144 0 +302 2 CR93H-3262 0 +302 2 CR93H-3295 0 +302 2 CR93H-3444 0 +302 2 CR93H-3459 0 +302 2 CR93H-3813 0 +302 2 CR93H-4042 0 +302 2 CR93H-416 0 +302 2 CR93H-4420 0 +302 2 CR93H-4489 0 +302 2 CR93H-4586 0 +302 2 CR93H-4635 0 +302 2 CR93H-4771 0 +302 2 CR93H-4879 0 +302 2 CR93H-4889 0 +302 2 CR93H-4922 0 +302 2 CR93H-5017 0 +302 2 CR93H-5053 0 +302 2 CR93H-5121 0 +302 2 CR93H-5189 0 +302 2 CR93H-5255 0 +302 2 CR93H-5554 0 +302 2 CR93H-5568 0 +302 2 CR93H-56 0 +302 2 CR93H-6221 0 +302 2 CR93H-6347 0 +302 2 CR93H-6422 0 +302 2 CR93H-6567 0 +302 2 CR93H-6621 0 +302 2 CR93H-6754 0 +302 2 CR93H-6912 0 +302 2 CR93H-7012 0 +302 2 CR93H-7013 0 +302 2 CR93H-7055 0 +302 2 CR93H-735 0 +302 2 CR93H-742 0 +302 2 CR93H-7554 0 +302 2 CR93H-7557 0 +302 2 CR93H-7870 0 +302 2 CR93H-7875 0 +302 2 CR93H-8042 0 +302 2 CR93H-8080 0 +302 2 CR93H-8122 0 +302 2 CR93H-8245 0 +302 2 CR93H-8248 0 +302 2 CR93H-8249 0 +302 2 CR93H-8460 0 +302 2 CR93H-8461 0 +302 2 CR93H-8590 0 +302 2 CR93H-8741 0 +302 2 CR93H-8789 0 +302 2 CR93H-8928 0 +302 2 CR93H-9009 0 +302 2 CR93H-9350 0 +302 2 CR93H-9427 0 +302 2 CR93H-9548 0 +302 2 CR93H-955 0 +302 2 CR93H-9576 0 +302 2 FBIS3-10615 0 +302 2 FBIS3-10855 0 +302 2 FBIS3-11418 0 +302 2 FBIS3-14832 0 +302 2 FBIS3-20548 3 +302 2 FBIS3-20810 0 +302 2 FBIS3-21356 0 +302 2 FBIS3-21404 0 +302 2 FBIS3-22119 0 +302 2 FBIS3-22470 0 +302 2 FBIS3-22471 0 +302 2 FBIS3-22476 0 +302 2 FBIS3-22477 0 +302 2 FBIS3-22480 0 +302 2 FBIS3-22482 0 +302 2 FBIS3-22486 0 +302 2 FBIS3-22487 0 +302 2 FBIS3-22508 0 +302 2 FBIS3-22523 0 +302 2 FBIS3-22525 0 +302 2 FBIS3-22535 0 +302 2 FBIS3-22539 3 +302 2 FBIS3-22545 0 +302 2 FBIS3-22547 0 +302 2 FBIS3-22559 0 +302 2 FBIS3-22560 0 +302 2 FBIS3-22570 0 +302 2 FBIS3-22581 0 +302 2 FBIS3-22589 0 +302 2 FBIS3-22590 0 +302 2 FBIS3-22591 0 +302 2 FBIS3-22592 0 +302 2 FBIS3-22593 0 +302 2 FBIS3-22597 0 +302 2 FBIS3-22598 0 +302 2 FBIS3-22600 0 +302 2 FBIS3-22633 0 +302 2 FBIS3-22642 0 +302 2 FBIS3-22647 0 +302 2 FBIS3-22679 0 +302 2 FBIS3-22680 0 +302 2 FBIS3-22681 0 +302 2 FBIS3-22693 0 +302 2 FBIS3-22695 0 +302 2 FBIS3-22696 0 +302 2 FBIS3-22697 0 +302 2 FBIS3-22698 0 +302 2 FBIS3-22699 0 +302 2 FBIS3-22700 3 +302 2 FBIS3-22702 2 +302 2 FBIS3-22706 0 +302 2 FBIS3-23 0 +302 2 FBIS3-23561 0 +302 2 FBIS3-23823 0 +302 2 FBIS3-23945 0 +302 2 FBIS3-23947 0 +302 2 FBIS3-24469 0 +302 2 FBIS3-24678 0 +302 2 FBIS3-2516 0 +302 2 FBIS3-26593 3 +302 2 FBIS3-27468 0 +302 2 FBIS3-2798 0 +302 2 FBIS3-28911 0 +302 2 FBIS3-29180 0 +302 2 FBIS3-30086 0 +302 2 FBIS3-34497 0 +302 2 FBIS3-3565 0 +302 2 FBIS3-3580 0 +302 2 FBIS3-36078 0 +302 2 FBIS3-37944 0 +302 2 FBIS3-37947 0 +302 2 FBIS3-39365 0 +302 2 FBIS3-40190 0 +302 2 FBIS3-41666 0 +302 2 FBIS3-41671 0 +302 2 FBIS3-41672 0 +302 2 FBIS3-41673 0 +302 2 FBIS3-41676 0 +302 2 FBIS3-41681 0 +302 2 FBIS3-41698 0 +302 2 FBIS3-41710 0 +302 2 FBIS3-41713 0 +302 2 FBIS3-41724 3 +302 2 FBIS3-41734 0 +302 2 FBIS3-41739 0 +302 2 FBIS3-41761 0 +302 2 FBIS3-41790 0 +302 2 FBIS3-41809 0 +302 2 FBIS3-41815 0 +302 2 FBIS3-4209 0 +302 2 FBIS3-42399 0 +302 2 FBIS3-42469 0 +302 2 FBIS3-42726 0 +302 2 FBIS3-43132 0 +302 2 FBIS3-43186 2 +302 2 FBIS3-43595 0 +302 2 FBIS3-43781 0 +302 2 FBIS3-44530 0 +302 2 FBIS3-44712 0 +302 2 FBIS3-45822 0 +302 2 FBIS3-46348 0 +302 2 FBIS3-46614 0 +302 2 FBIS3-5103 0 +302 2 FBIS3-58 0 +302 2 FBIS3-60336 0 +302 2 FBIS3-60342 0 +302 2 FBIS3-60401 0 +302 2 FBIS3-60403 0 +302 2 FBIS3-60404 0 +302 2 FBIS3-60405 0 +302 2 FBIS3-60419 0 +302 2 FBIS3-60422 2 +302 2 FBIS3-60440 2 +302 2 FBIS3-60444 2 +302 2 FBIS3-60448 0 +302 2 FBIS3-60450 3 +302 2 FBIS3-60454 0 +302 2 FBIS3-60462 0 +302 2 FBIS3-60466 0 +302 2 FBIS3-60503 3 +302 2 FBIS4-45834 0 +302 2 FBIS4-45842 0 +302 2 FBIS4-45844 3 +302 2 FBIS4-45884 0 +302 2 FBIS4-46469 0 +302 2 FBIS4-46649 0 +302 2 FBIS4-46923 0 +302 2 FBIS4-47552 0 +302 2 FBIS4-47588 0 +302 2 FBIS4-49021 0 +302 2 FBIS4-49245 0 +302 2 FBIS4-50133 0 +302 2 FBIS4-50706 0 +302 2 FBIS4-50850 0 +302 2 FBIS4-50959 0 +302 2 FBIS4-52090 0 +302 2 FBIS4-5325 3 +302 2 FBIS4-55803 0 +302 2 FBIS4-57220 3 +302 2 FBIS4-58281 0 +302 2 FBIS4-60762 0 +302 2 FBIS4-61029 0 +302 2 FBIS4-62223 0 +302 2 FBIS4-66030 0 +302 2 FBIS4-66069 0 +302 2 FBIS4-66161 0 +302 2 FBIS4-66185 0 +302 2 FBIS4-67533 0 +302 2 FBIS4-67599 0 +302 2 FBIS4-67611 0 +302 2 FBIS4-67613 0 +302 2 FBIS4-67614 0 +302 2 FBIS4-67618 0 +302 2 FBIS4-67646 0 +302 2 FBIS4-67647 0 +302 2 FBIS4-67648 0 +302 2 FBIS4-67649 0 +302 2 FBIS4-67650 0 +302 2 FBIS4-67651 0 +302 2 FBIS4-67698 0 +302 2 FBIS4-67699 0 +302 2 FBIS4-67701 3 +302 2 FBIS4-67707 3 +302 2 FBIS4-67720 3 +302 2 FBIS4-68893 0 +302 2 FR940104-0-00034 0 +302 2 FR940126-2-00100 0 +302 2 FR940126-2-00101 0 +302 2 FR940126-2-00102 0 +302 2 FR940126-2-00103 0 +302 2 FR940126-2-00104 0 +302 2 FR940126-2-00105 0 +302 2 FR940126-2-00106 0 +302 2 FR940126-2-00107 0 +302 2 FR940126-2-00108 0 +302 2 FR940202-2-00112 2 +302 2 FR940202-2-00114 0 +302 2 FR940202-2-00133 1 +302 2 FR940202-2-00140 0 +302 2 FR940202-2-00143 0 +302 2 FR940203-0-00084 0 +302 2 FR940207-2-00089 1 +302 2 FR940314-1-00041 0 +302 2 FR940317-2-00076 0 +302 2 FR940404-2-00093 0 +302 2 FR940406-0-00190 0 +302 2 FR940413-2-00068 0 +302 2 FR940414-0-00029 0 +302 2 FR940419-2-00062 0 +302 2 FR940425-2-00078 0 +302 2 FR940425-2-00079 0 +302 2 FR940425-2-00080 0 +302 2 FR940425-2-00081 0 +302 2 FR940429-2-00041 1 +302 2 FR940505-2-00041 1 +302 2 FR940513-2-00003 0 +302 2 FR940513-2-00096 0 +302 2 FR940527-1-00163 0 +302 2 FR940527-2-00071 0 +302 2 FR940602-1-00023 0 +302 2 FR940602-2-00077 0 +302 2 FR940603-2-00060 3 +302 2 FR940620-2-00115 0 +302 2 FR940620-2-00116 0 +302 2 FR940620-2-00117 3 +302 2 FR940620-2-00118 0 +302 2 FR940620-2-00119 0 +302 2 FR940620-2-00120 0 +302 2 FR940620-2-00121 0 +302 2 FR940620-2-00122 0 +302 2 FR940620-2-00123 0 +302 2 FR940628-1-00016 0 +302 2 FR940628-2-00002 0 +302 2 FR940705-2-00186 0 +302 2 FR940706-2-00076 0 +302 2 FR940713-2-00061 0 +302 2 FR940713-2-00062 0 +302 2 FR940719-2-00089 0 +302 2 FR940721-2-00030 0 +302 2 FR940721-2-00045 0 +302 2 FR940721-2-00046 0 +302 2 FR940725-0-00049 0 +302 2 FR940728-2-00084 0 +302 2 FR940728-2-00089 0 +302 2 FR940804-2-00088 0 +302 2 FR940817-2-00237 0 +302 2 FR940822-0-00027 0 +302 2 FR940822-0-00067 0 +302 2 FR940825-2-00076 0 +302 2 FR940825-2-00078 0 +302 2 FR940831-2-00064 0 +302 2 FR940902-1-00048 0 +302 2 FR940922-2-00127 0 +302 2 FR940928-2-00043 0 +302 2 FR941003-2-00031 0 +302 2 FR941004-2-00099 0 +302 2 FR941006-1-00005 0 +302 2 FR941006-1-00006 0 +302 2 FR941006-1-00007 0 +302 2 FR941012-2-00078 0 +302 2 FR941013-2-00056 0 +302 2 FR941027-1-00030 0 +302 2 FR941102-1-00119 0 +302 2 FR941103-2-00086 0 +302 2 FR941107-2-00231 0 +302 2 FR941107-2-00232 0 +302 2 FR941107-2-00233 0 +302 2 FR941122-2-00060 0 +302 2 FR941130-0-00122 0 +302 2 FR941202-2-00007 0 +302 2 FR941206-1-00134 0 +302 2 FR941206-2-00055 0 +302 2 FR941213-0-00084 0 +302 2 FR941213-2-00039 0 +302 2 FT911-1088 0 +302 2 FT911-1471 0 +302 2 FT911-2081 0 +302 2 FT911-2372 0 +302 2 FT911-241 0 +302 2 FT911-2589 0 +302 2 FT911-2707 0 +302 2 FT911-2968 0 +302 2 FT911-460 0 +302 2 FT911-4947 0 +302 2 FT911-5041 0 +302 2 FT911-624 0 +302 2 FT911-679 0 +302 2 FT911-870 0 +302 2 FT921-10340 0 +302 2 FT921-10626 0 +302 2 FT921-10742 0 +302 2 FT921-10750 0 +302 2 FT921-10807 0 +302 2 FT921-11140 0 +302 2 FT921-1150 0 +302 2 FT921-1211 0 +302 2 FT921-12227 0 +302 2 FT921-12230 0 +302 2 FT921-12556 0 +302 2 FT921-13207 0 +302 2 FT921-13254 0 +302 2 FT921-13279 0 +302 2 FT921-13530 0 +302 2 FT921-14291 0 +302 2 FT921-14537 3 +302 2 FT921-14986 0 +302 2 FT921-15281 0 +302 2 FT921-15869 0 +302 2 FT921-16061 3 +302 2 FT921-16191 0 +302 2 FT921-16376 0 +302 2 FT921-2350 0 +302 2 FT921-2351 0 +302 2 FT921-3467 0 +302 2 FT921-4 0 +302 2 FT921-4035 0 +302 2 FT921-4317 0 +302 2 FT921-4540 0 +302 2 FT921-485 0 +302 2 FT921-5034 0 +302 2 FT921-5614 0 +302 2 FT921-5766 0 +302 2 FT921-5928 0 +302 2 FT921-7582 0 +302 2 FT921-7648 0 +302 2 FT921-7765 3 +302 2 FT921-7784 0 +302 2 FT921-8313 0 +302 2 FT921-8328 0 +302 2 FT921-8507 0 +302 2 FT921-9310 0 +302 2 FT921-953 0 +302 2 FT921-956 0 +302 2 FT921-9578 0 +302 2 FT922-10446 0 +302 2 FT922-11044 0 +302 2 FT922-12505 0 +302 2 FT922-12737 0 +302 2 FT922-13742 0 +302 2 FT922-14371 0 +302 2 FT922-1674 0 +302 2 FT922-1893 0 +302 2 FT922-220 0 +302 2 FT922-4529 0 +302 2 FT922-4560 0 +302 2 FT922-5004 0 +302 2 FT922-6652 0 +302 2 FT922-7819 0 +302 2 FT922-8619 0 +302 2 FT922-8779 0 +302 2 FT922-884 0 +302 2 FT922-9023 0 +302 2 FT922-9487 0 +302 2 FT922-9650 0 +302 2 FT923-10404 0 +302 2 FT923-1076 0 +302 2 FT923-11035 0 +302 2 FT923-11081 0 +302 2 FT923-11184 0 +302 2 FT923-11350 0 +302 2 FT923-11474 0 +302 2 FT923-11885 0 +302 2 FT923-12051 0 +302 2 FT923-12060 0 +302 2 FT923-12277 0 +302 2 FT923-14971 0 +302 2 FT923-15575 0 +302 2 FT923-1988 0 +302 2 FT923-2286 0 +302 2 FT923-2399 0 +302 2 FT923-3060 0 +302 2 FT923-4273 0 +302 2 FT923-5927 0 +302 2 FT923-6011 0 +302 2 FT923-6887 0 +302 2 FT923-7657 0 +302 2 FT923-8033 0 +302 2 FT923-8100 0 +302 2 FT923-8415 0 +302 2 FT923-8509 0 +302 2 FT923-8974 0 +302 2 FT924-10626 0 +302 2 FT924-10652 3 +302 2 FT924-10987 0 +302 2 FT924-11314 0 +302 2 FT924-11618 0 +302 2 FT924-1254 0 +302 2 FT924-13622 0 +302 2 FT924-14004 0 +302 2 FT924-14826 0 +302 2 FT924-15013 0 +302 2 FT924-1638 0 +302 2 FT924-1993 0 +302 2 FT924-2803 0 +302 2 FT924-2958 0 +302 2 FT924-3217 0 +302 2 FT924-3519 0 +302 2 FT924-3628 0 +302 2 FT924-4528 0 +302 2 FT924-4737 0 +302 2 FT924-5037 0 +302 2 FT924-5353 0 +302 2 FT924-5517 0 +302 2 FT924-6467 0 +302 2 FT924-7956 0 +302 2 FT924-8024 0 +302 2 FT924-8515 0 +302 2 FT924-9161 0 +302 2 FT924-9431 0 +302 2 FT931-1039 0 +302 2 FT931-11085 3 +302 2 FT931-11767 0 +302 2 FT931-11857 0 +302 2 FT931-12577 0 +302 2 FT931-12903 0 +302 2 FT931-13033 0 +302 2 FT931-13300 0 +302 2 FT931-13512 0 +302 2 FT931-14151 0 +302 2 FT931-14647 0 +302 2 FT931-15527 0 +302 2 FT931-15924 0 +302 2 FT931-16133 0 +302 2 FT931-17149 0 +302 2 FT931-2526 0 +302 2 FT931-3052 0 +302 2 FT931-3883 0 +302 2 FT931-5665 0 +302 2 FT931-5795 0 +302 2 FT931-5859 0 +302 2 FT931-652 0 +302 2 FT931-7060 3 +302 2 FT931-7525 0 +302 2 FT931-8050 0 +302 2 FT931-8993 0 +302 2 FT931-9496 0 +302 2 FT931-9886 0 +302 2 FT932-10099 0 +302 2 FT932-10160 0 +302 2 FT932-10547 0 +302 2 FT932-13227 0 +302 2 FT932-13552 0 +302 2 FT932-14090 0 +302 2 FT932-14875 0 +302 2 FT932-15013 0 +302 2 FT932-15388 0 +302 2 FT932-16160 0 +302 2 FT932-16821 0 +302 2 FT932-16878 0 +302 2 FT932-1821 0 +302 2 FT932-2282 0 +302 2 FT932-2288 0 +302 2 FT932-2515 0 +302 2 FT932-2516 0 +302 2 FT932-3794 0 +302 2 FT932-3963 0 +302 2 FT932-4292 0 +302 2 FT932-4317 0 +302 2 FT932-4441 0 +302 2 FT932-4485 3 +302 2 FT932-4585 0 +302 2 FT932-4805 0 +302 2 FT932-5288 0 +302 2 FT932-5508 0 +302 2 FT932-7262 0 +302 2 FT932-769 0 +302 2 FT932-7800 0 +302 2 FT932-7948 0 +302 2 FT932-7977 0 +302 2 FT932-9367 0 +302 2 FT932-9696 0 +302 2 FT933-11998 0 +302 2 FT933-12022 0 +302 2 FT933-1235 0 +302 2 FT933-13206 0 +302 2 FT933-13870 0 +302 2 FT933-14295 0 +302 2 FT933-14910 0 +302 2 FT933-15797 0 +302 2 FT933-15814 0 +302 2 FT933-15869 0 +302 2 FT933-16536 0 +302 2 FT933-16948 0 +302 2 FT933-2728 0 +302 2 FT933-3434 0 +302 2 FT933-3705 0 +302 2 FT933-4186 0 +302 2 FT933-4445 0 +302 2 FT933-4707 0 +302 2 FT933-528 0 +302 2 FT933-5736 0 +302 2 FT933-5756 0 +302 2 FT933-6719 0 +302 2 FT933-6895 0 +302 2 FT933-7164 0 +302 2 FT933-7438 0 +302 2 FT933-7608 0 +302 2 FT933-7908 0 +302 2 FT933-7926 0 +302 2 FT933-8272 0 +302 2 FT933-8849 0 +302 2 FT933-8865 0 +302 2 FT933-9041 0 +302 2 FT933-9555 0 +302 2 FT934-10458 0 +302 2 FT934-11977 0 +302 2 FT934-1206 3 +302 2 FT934-1290 0 +302 2 FT934-14536 0 +302 2 FT934-17471 0 +302 2 FT934-3190 0 +302 2 FT934-4508 0 +302 2 FT934-5058 0 +302 2 FT934-5207 0 +302 2 FT934-576 0 +302 2 FT934-5915 0 +302 2 FT934-7018 0 +302 2 FT934-8210 0 +302 2 FT934-9726 0 +302 2 FT934-9860 0 +302 2 FT941-10023 0 +302 2 FT941-12410 3 +302 2 FT941-12426 0 +302 2 FT941-13315 0 +302 2 FT941-139 0 +302 2 FT941-14380 0 +302 2 FT941-1494 0 +302 2 FT941-15224 0 +302 2 FT941-1547 0 +302 2 FT941-157 0 +302 2 FT941-15832 0 +302 2 FT941-15975 0 +302 2 FT941-16404 0 +302 2 FT941-16414 0 +302 2 FT941-1656 0 +302 2 FT941-3236 0 +302 2 FT941-4398 0 +302 2 FT941-5519 0 +302 2 FT941-8037 0 +302 2 FT941-830 0 +302 2 FT941-9456 0 +302 2 FT941-9662 0 +302 2 FT941-9667 0 +302 2 FT942-10381 0 +302 2 FT942-10460 0 +302 2 FT942-11048 0 +302 2 FT942-11913 0 +302 2 FT942-12479 0 +302 2 FT942-12526 0 +302 2 FT942-13032 0 +302 2 FT942-14203 0 +302 2 FT942-14871 0 +302 2 FT942-14924 0 +302 2 FT942-16178 0 +302 2 FT942-16294 0 +302 2 FT942-16430 0 +302 2 FT942-16780 0 +302 2 FT942-17260 0 +302 2 FT942-17527 0 +302 2 FT942-1963 0 +302 2 FT942-2228 0 +302 2 FT942-3396 0 +302 2 FT942-4193 0 +302 2 FT942-4919 0 +302 2 FT942-5484 0 +302 2 FT942-5975 0 +302 2 FT942-6115 0 +302 2 FT942-7389 0 +302 2 FT942-7603 0 +302 2 FT942-9189 0 +302 2 FT942-9431 0 +302 2 FT943-1002 0 +302 2 FT943-10062 0 +302 2 FT943-10078 0 +302 2 FT943-11927 0 +302 2 FT943-12041 0 +302 2 FT943-12755 0 +302 2 FT943-13379 0 +302 2 FT943-14080 0 +302 2 FT943-14403 0 +302 2 FT943-14543 0 +302 2 FT943-14605 0 +302 2 FT943-14973 0 +302 2 FT943-15331 0 +302 2 FT943-15886 0 +302 2 FT943-16116 0 +302 2 FT943-16211 0 +302 2 FT943-16744 0 +302 2 FT943-1828 0 +302 2 FT943-208 0 +302 2 FT943-2193 0 +302 2 FT943-2776 0 +302 2 FT943-310 0 +302 2 FT943-3268 0 +302 2 FT943-3526 0 +302 2 FT943-4387 0 +302 2 FT943-4843 0 +302 2 FT943-4851 0 +302 2 FT943-500 0 +302 2 FT943-677 0 +302 2 FT943-69 0 +302 2 FT943-760 0 +302 2 FT943-8114 0 +302 2 FT943-8355 0 +302 2 FT943-8860 0 +302 2 FT943-8941 0 +302 2 FT943-9445 0 +302 2 FT943-9699 0 +302 2 FT943-9853 0 +302 2 FT944-10282 0 +302 2 FT944-10542 0 +302 2 FT944-10829 0 +302 2 FT944-10864 0 +302 2 FT944-10925 0 +302 2 FT944-11442 0 +302 2 FT944-11577 0 +302 2 FT944-11878 0 +302 2 FT944-13248 0 +302 2 FT944-14051 0 +302 2 FT944-14098 0 +302 2 FT944-14103 0 +302 2 FT944-14141 0 +302 2 FT944-14564 0 +302 2 FT944-14870 0 +302 2 FT944-15576 0 +302 2 FT944-15805 0 +302 2 FT944-16329 0 +302 2 FT944-17020 0 +302 2 FT944-17070 0 +302 2 FT944-17268 0 +302 2 FT944-18039 0 +302 2 FT944-18407 0 +302 2 FT944-18515 0 +302 2 FT944-18645 0 +302 2 FT944-1991 0 +302 2 FT944-2202 0 +302 2 FT944-2489 3 +302 2 FT944-2592 3 +302 2 FT944-3412 0 +302 2 FT944-3523 0 +302 2 FT944-3755 0 +302 2 FT944-5030 0 +302 2 FT944-567 0 +302 2 FT944-5940 0 +302 2 FT944-6228 0 +302 2 FT944-6607 0 +302 2 FT944-8304 0 +302 2 FT944-8752 0 +302 2 FT944-9658 0 +302 2 FT944-9872 0 +302 2 LA010490-0100 0 +302 2 LA010490-0127 0 +302 2 LA010589-0059 3 +302 2 LA010690-0044 0 +302 2 LA010789-0007 0 +302 2 LA011189-0091 0 +302 2 LA011590-0042 0 +302 2 LA012090-0137 0 +302 2 LA012290-0068 0 +302 2 LA012390-0129 0 +302 2 LA012490-0111 3 +302 2 LA012490-0120 0 +302 2 LA012589-0035 3 +302 2 LA012690-0099 0 +302 2 LA013089-0022 0 +302 2 LA020190-0050 0 +302 2 LA020190-0128 0 +302 2 LA020389-0112 0 +302 2 LA020390-0101 0 +302 2 LA020490-0202 0 +302 2 LA020490-0221 0 +302 2 LA021389-0067 0 +302 2 LA021889-0149 0 +302 2 LA022289-0015 0 +302 2 LA022290-0137 0 +302 2 LA030490-0058 0 +302 2 LA030490-0146 0 +302 2 LA030790-0062 0 +302 2 LA030889-0102 0 +302 2 LA031190-0046 0 +302 2 LA031190-0116 3 +302 2 LA031290-0103 0 +302 2 LA031290-0118 0 +302 2 LA031489-0032 3 +302 2 LA031890-0146 0 +302 2 LA032190-0081 0 +302 2 LA032689-0202 0 +302 2 LA032890-0019 0 +302 2 LA033190-0001 0 +302 2 LA040290-0023 0 +302 2 LA040789-0053 0 +302 2 LA040989-0094 0 +302 2 LA040989-0121 0 +302 2 LA040990-0045 0 +302 2 LA041190-0046 0 +302 2 LA041190-0093 0 +302 2 LA041290-0058 0 +302 2 LA041490-0129 0 +302 2 LA041690-0050 0 +302 2 LA041690-0051 0 +302 2 LA041690-0085 0 +302 2 LA041890-0007 0 +302 2 LA041989-0027 0 +302 2 LA041989-0042 0 +302 2 LA041990-0258 0 +302 2 LA042190-0056 0 +302 2 LA042289-0003 0 +302 2 LA042390-0099 0 +302 2 LA042590-0168 0 +302 2 LA042890-0139 0 +302 2 LA043090-0036 3 +302 2 LA050189-0063 0 +302 2 LA050789-0042 0 +302 2 LA050790-0096 0 +302 2 LA050889-0049 0 +302 2 LA050890-0167 0 +302 2 LA051390-0202 0 +302 2 LA051390-0223 0 +302 2 LA051889-0183 0 +302 2 LA052090-0077 0 +302 2 LA052090-0088 0 +302 2 LA052189-0210 0 +302 2 LA052190-0044 0 +302 2 LA052190-0106 0 +302 2 LA052690-0037 0 +302 2 LA060490-0002 0 +302 2 LA060589-0052 0 +302 2 LA060589-0053 0 +302 2 LA061090-0044 0 +302 2 LA061289-0041 3 +302 2 LA061390-0056 0 +302 2 LA061590-0016 0 +302 2 LA061989-0045 0 +302 2 LA062189-0108 0 +302 2 LA062190-0135 0 +302 2 LA062389-0128 0 +302 2 LA062490-0095 0 +302 2 LA062589-0087 0 +302 2 LA062590-0046 0 +302 2 LA062789-0077 0 +302 2 LA062990-0033 0 +302 2 LA070289-0159 0 +302 2 LA070290-0051 0 +302 2 LA070789-0056 0 +302 2 LA070890-0222 0 +302 2 LA071290-0154 0 +302 2 LA071590-0110 0 +302 2 LA071989-0061 0 +302 2 LA071990-0012 0 +302 2 LA072890-0052 0 +302 2 LA072890-0066 3 +302 2 LA072990-0208 0 +302 2 LA073089-0195 0 +302 2 LA080589-0034 0 +302 2 LA080589-0052 0 +302 2 LA080590-0260 0 +302 2 LA080690-0099 3 +302 2 LA080990-0174 0 +302 2 LA081089-0091 0 +302 2 LA081290-0078 0 +302 2 LA081989-0048 0 +302 2 LA081990-0088 0 +302 2 LA082089-0090 0 +302 2 LA082089-0163 0 +302 2 LA082389-0068 0 +302 2 LA082489-0115 0 +302 2 LA082490-0065 3 +302 2 LA082490-0066 0 +302 2 LA082590-0019 0 +302 2 LA082689-0127 0 +302 2 LA082789-0154 0 +302 2 LA083090-0214 0 +302 2 LA090290-0118 0 +302 2 LA090390-0077 0 +302 2 LA090589-0046 0 +302 2 LA090990-0031 3 +302 2 LA091190-0102 0 +302 2 LA091990-0020 0 +302 2 LA092189-0158 0 +302 2 LA092289-0005 0 +302 2 LA092390-0163 0 +302 2 LA092589-0002 0 +302 2 LA092589-0083 0 +302 2 LA092689-0080 0 +302 2 LA092689-0119 0 +302 2 LA092889-0179 0 +302 2 LA093090-0213 0 +302 2 LA100189-0047 3 +302 2 LA100189-0130 0 +302 2 LA100290-0016 0 +302 2 LA100490-0220 0 +302 2 LA101090-0147 0 +302 2 LA101190-0191 0 +302 2 LA101289-0109 0 +302 2 LA101589-0050 0 +302 2 LA101689-0055 0 +302 2 LA101690-0040 0 +302 2 LA101889-0058 0 +302 2 LA101890-0243 0 +302 2 LA102190-0080 0 +302 2 LA102289-0118 0 +302 2 LA102590-0199 0 +302 2 LA102789-0128 0 +302 2 LA102990-0097 0 +302 2 LA103089-0037 0 +302 2 LA110190-0053 0 +302 2 LA110389-0072 0 +302 2 LA110490-0201 0 +302 2 LA110689-0060 0 +302 2 LA110690-0193 0 +302 2 LA110889-0156 0 +302 2 LA111189-0018 0 +302 2 LA111489-0076 0 +302 2 LA111889-0044 0 +302 2 LA111889-0165 0 +302 2 LA111989-0036 0 +302 2 LA112089-0054 0 +302 2 LA112490-0106 0 +302 2 LA112789-0001 0 +302 2 LA112990-0145 0 +302 2 LA113090-0001 0 +302 2 LA113090-0147 0 +302 2 LA120389-0216 0 +302 2 LA120589-0098 0 +302 2 LA120690-0043 0 +302 2 LA120890-0014 0 +302 2 LA121589-0171 0 +302 2 LA121789-0162 3 +302 2 LA122289-0099 0 +302 2 LA122589-0100 0 +302 2 LA122589-0101 0 +302 2 LA123090-0026 3 +303 2 CR93E-10279 -1 +303 2 CR93E-11182 0 +303 2 CR93E-1856 0 +303 2 CR93E-226 -1 +303 2 CR93E-3833 0 +303 2 CR93E-3843 0 +303 2 CR93E-4217 -1 +303 2 CR93E-4353 0 +303 2 CR93E-436 0 +303 2 CR93E-4360 -1 +303 2 CR93E-5148 0 +303 2 CR93E-5855 0 +303 2 CR93E-6168 -1 +303 2 CR93E-6518 0 +303 2 CR93E-7036 0 +303 2 CR93E-7309 -1 +303 2 CR93E-7797 0 +303 2 CR93E-8695 0 +303 2 CR93E-8718 -1 +303 2 CR93E-9094 0 +303 2 CR93E-996 0 +303 2 CR93H-10104 -1 +303 2 CR93H-10308 0 +303 2 CR93H-10374 0 +303 2 CR93H-10392 -1 +303 2 CR93H-10601 0 +303 2 CR93H-10602 0 +303 2 CR93H-10921 -1 +303 2 CR93H-1097 0 +303 2 CR93H-10982 0 +303 2 CR93H-10989 -1 +303 2 CR93H-11033 0 +303 2 CR93H-11034 0 +303 2 CR93H-11077 -1 +303 2 CR93H-11119 0 +303 2 CR93H-11586 0 +303 2 CR93H-11792 -1 +303 2 CR93H-11806 0 +303 2 CR93H-11894 0 +303 2 CR93H-11998 -1 +303 2 CR93H-12017 0 +303 2 CR93H-12150 0 +303 2 CR93H-12181 -1 +303 2 CR93H-12217 0 +303 2 CR93H-12498 0 +303 2 CR93H-12820 -1 +303 2 CR93H-12874 0 +303 2 CR93H-1298 0 +303 2 CR93H-12988 -1 +303 2 CR93H-13205 0 +303 2 CR93H-13451 0 +303 2 CR93H-13588 -1 +303 2 CR93H-13659 0 +303 2 CR93H-13680 0 +303 2 CR93H-13695 -1 +303 2 CR93H-13849 0 +303 2 CR93H-14128 0 +303 2 CR93H-14130 -1 +303 2 CR93H-14306 0 +303 2 CR93H-14319 0 +303 2 CR93H-14388 -1 +303 2 CR93H-14436 0 +303 2 CR93H-14469 0 +303 2 CR93H-14591 -1 +303 2 CR93H-14794 0 +303 2 CR93H-15024 0 +303 2 CR93H-1509 -1 +303 2 CR93H-15105 0 +303 2 CR93H-15107 0 +303 2 CR93H-15178 -1 +303 2 CR93H-15405 0 +303 2 CR93H-15453 0 +303 2 CR93H-15477 -1 +303 2 CR93H-15587 0 +303 2 CR93H-15608 0 +303 2 CR93H-15615 -1 +303 2 CR93H-15705 0 +303 2 CR93H-15950 0 +303 2 CR93H-16073 -1 +303 2 CR93H-16128 0 +303 2 CR93H-16143 0 +303 2 CR93H-16369 -1 +303 2 CR93H-16456 0 +303 2 CR93H-1712 0 +303 2 CR93H-1788 -1 +303 2 CR93H-185 0 +303 2 CR93H-199 0 +303 2 CR93H-200 -1 +303 2 CR93H-2081 0 +303 2 CR93H-215 0 +303 2 CR93H-2196 -1 +303 2 CR93H-2429 0 +303 2 CR93H-2536 0 +303 2 CR93H-2707 -1 +303 2 CR93H-2841 0 +303 2 CR93H-3079 0 +303 2 CR93H-3375 -1 +303 2 CR93H-3382 0 +303 2 CR93H-3584 0 +303 2 CR93H-3813 -1 +303 2 CR93H-4042 0 +303 2 CR93H-416 0 +303 2 CR93H-4417 -1 +303 2 CR93H-4489 0 +303 2 CR93H-4554 0 +303 2 CR93H-4586 -1 +303 2 CR93H-4631 0 +303 2 CR93H-4635 0 +303 2 CR93H-4771 -1 +303 2 CR93H-4879 0 +303 2 CR93H-4922 0 +303 2 CR93H-5053 -1 +303 2 CR93H-5255 0 +303 2 CR93H-5450 0 +303 2 CR93H-5477 -1 +303 2 CR93H-553 0 +303 2 CR93H-5568 0 +303 2 CR93H-5700 -1 +303 2 CR93H-590 0 +303 2 CR93H-5957 0 +303 2 CR93H-6346 -1 +303 2 CR93H-6377 0 +303 2 CR93H-6422 0 +303 2 CR93H-6567 -1 +303 2 CR93H-6695 0 +303 2 CR93H-6754 0 +303 2 CR93H-6887 -1 +303 2 CR93H-6912 0 +303 2 CR93H-6945 0 +303 2 CR93H-7055 -1 +303 2 CR93H-7101 0 +303 2 CR93H-7133 0 +303 2 CR93H-7314 -1 +303 2 CR93H-735 0 +303 2 CR93H-742 0 +303 2 CR93H-7554 -1 +303 2 CR93H-7557 0 +303 2 CR93H-7612 0 +303 2 CR93H-7785 -1 +303 2 CR93H-7875 0 +303 2 CR93H-8165 0 +303 2 CR93H-8253 -1 +303 2 CR93H-8428 0 +303 2 CR93H-8460 0 +303 2 CR93H-8461 -1 +303 2 CR93H-8591 0 +303 2 CR93H-8928 0 +303 2 CR93H-9350 -1 +303 2 CR93H-9548 0 +303 2 CR93H-955 0 +303 2 CR93H-9835 -1 +303 2 FBIS3-16217 0 +303 2 FBIS3-19093 0 +303 2 FBIS3-21007 -1 +303 2 FBIS3-21026 0 +303 2 FBIS3-23561 0 +303 2 FBIS3-23682 -1 +303 2 FBIS3-23691 0 +303 2 FBIS3-24469 0 +303 2 FBIS3-25018 -1 +303 2 FBIS3-36274 0 +303 2 FBIS3-40348 0 +303 2 FBIS3-40363 -1 +303 2 FBIS3-40388 0 +303 2 FBIS3-40450 0 +303 2 FBIS3-41666 -1 +303 2 FBIS3-42394 0 +303 2 FBIS3-42399 0 +303 2 FBIS3-42547 -1 +303 2 FBIS3-42934 0 +303 2 FBIS3-43160 0 +303 2 FBIS3-43214 -1 +303 2 FBIS3-46244 0 +303 2 FBIS3-53109 0 +303 2 FBIS3-58219 -1 +303 2 FBIS3-59619 0 +303 2 FBIS3-60342 0 +303 2 FBIS3-61020 -1 +303 2 FBIS4-15938 0 +303 2 FBIS4-1647 0 +303 2 FBIS4-19830 -1 +303 2 FBIS4-20472 0 +303 2 FBIS4-20504 0 +303 2 FBIS4-22151 -1 +303 2 FBIS4-22263 0 +303 2 FBIS4-24195 0 +303 2 FBIS4-24435 -1 +303 2 FBIS4-27016 0 +303 2 FBIS4-28354 0 +303 2 FBIS4-2866 -1 +303 2 FBIS4-35855 0 +303 2 FBIS4-39574 0 +303 2 FBIS4-39987 -1 +303 2 FBIS4-42546 0 +303 2 FBIS4-42702 0 +303 2 FBIS4-42922 -1 +303 2 FBIS4-44511 0 +303 2 FBIS4-44743 0 +303 2 FBIS4-46469 -1 +303 2 FBIS4-46649 0 +303 2 FBIS4-46650 0 +303 2 FBIS4-47297 -1 +303 2 FBIS4-47302 0 +303 2 FBIS4-47495 0 +303 2 FBIS4-50545 -1 +303 2 FBIS4-55470 0 +303 2 FBIS4-57001 0 +303 2 FBIS4-65621 -1 +303 2 FBIS4-66185 0 +303 2 FBIS4-66382 0 +303 2 FBIS4-68332 -1 +303 2 FBIS4-68893 0 +303 2 FR940104-0-00032 0 +303 2 FR940111-2-00079 -1 +303 2 FR940124-1-00003 0 +303 2 FR940203-0-00084 0 +303 2 FR940304-2-00134 -1 +303 2 FR940304-2-00135 0 +303 2 FR940325-0-00015 0 +303 2 FR940406-0-00190 -1 +303 2 FR940418-0-00041 0 +303 2 FR940505-1-00005 0 +303 2 FR940526-2-00002 -1 +303 2 FR940602-1-00023 0 +303 2 FR940610-0-00042 0 +303 2 FR940627-0-00014 -1 +303 2 FR940706-2-00126 0 +303 2 FR940802-2-00009 0 +303 2 FR940810-0-00307 -1 +303 2 FR940819-0-00006 0 +303 2 FR940902-1-00048 0 +303 2 FR940906-2-00139 -1 +303 2 FR940919-0-00024 0 +303 2 FR941007-2-00007 0 +303 2 FR941020-2-00110 -1 +303 2 FR941021-0-00167 0 +303 2 FR941021-0-00195 0 +303 2 FR941121-0-00046 -1 +303 2 FR941121-2-00043 0 +303 2 FR941130-0-00122 0 +303 2 FR941205-2-00003 -1 +303 2 FR941206-1-00134 0 +303 2 FR941207-2-00068 0 +303 2 FR941216-2-00132 -1 +303 2 FR941216-2-00137 0 +303 2 FR941221-0-00047 0 +303 2 FT911-1000 -1 +303 2 FT911-216 0 +303 2 FT911-2608 0 +303 2 FT911-3687 -1 +303 2 FT911-4155 0 +303 2 FT911-5046 0 +303 2 FT921-1013 -1 +303 2 FT921-10884 0 +303 2 FT921-11671 0 +303 2 FT921-12379 -1 +303 2 FT921-12584 2 +303 2 FT921-13248 1 +303 2 FT921-1350 -1 +303 2 FT921-13869 0 +303 2 FT921-14183 0 +303 2 FT921-14476 -1 +303 2 FT921-14867 0 +303 2 FT921-15863 0 +303 2 FT921-1594 -1 +303 2 FT921-15951 0 +303 2 FT921-16129 0 +303 2 FT921-16360 -1 +303 2 FT921-16419 0 +303 2 FT921-16457 0 +303 2 FT921-2261 -1 +303 2 FT921-2873 0 +303 2 FT921-3070 0 +303 2 FT921-3071 -1 +303 2 FT921-3359 0 +303 2 FT921-3432 0 +303 2 FT921-3539 -1 +303 2 FT921-3809 0 +303 2 FT921-3842 0 +303 2 FT921-3945 -1 +303 2 FT921-4635 0 +303 2 FT921-503 0 +303 2 FT921-5229 -1 +303 2 FT921-6327 0 +303 2 FT921-7107 0 +303 2 FT921-832 -1 +303 2 FT921-8725 2 +303 2 FT921-8919 0 +303 2 FT921-953 -1 +303 2 FT921-9706 0 +303 2 FT922-10607 0 +303 2 FT922-10990 -1 +303 2 FT922-11472 0 +303 2 FT922-11525 0 +303 2 FT922-11670 -1 +303 2 FT922-11742 0 +303 2 FT922-11929 0 +303 2 FT922-12234 -1 +303 2 FT922-12334 0 +303 2 FT922-12600 0 +303 2 FT922-13008 -1 +303 2 FT922-13421 0 +303 2 FT922-13455 0 +303 2 FT922-13500 -1 +303 2 FT922-13906 0 +303 2 FT922-2930 0 +303 2 FT922-3309 -1 +303 2 FT922-4215 0 +303 2 FT922-4274 0 +303 2 FT922-4956 -1 +303 2 FT922-4967 0 +303 2 FT922-5107 0 +303 2 FT922-6257 -1 +303 2 FT922-7289 0 +303 2 FT922-7904 0 +303 2 FT922-8168 -1 +303 2 FT922-861 0 +303 2 FT922-8790 0 +303 2 FT922-9812 -1 +303 2 FT923-10218 0 +303 2 FT923-10305 0 +303 2 FT923-10351 -1 +303 2 FT923-10517 0 +303 2 FT923-1085 0 +303 2 FT923-10862 -1 +303 2 FT923-10876 0 +303 2 FT923-10939 0 +303 2 FT923-12048 -1 +303 2 FT923-12432 0 +303 2 FT923-1307 0 +303 2 FT923-13137 -1 +303 2 FT923-14461 0 +303 2 FT923-14465 0 +303 2 FT923-14574 -1 +303 2 FT923-15067 0 +303 2 FT923-2353 0 +303 2 FT923-2416 -1 +303 2 FT923-3530 0 +303 2 FT923-3924 0 +303 2 FT923-4482 -1 +303 2 FT923-4525 1 +303 2 FT923-5257 0 +303 2 FT923-5756 -1 +303 2 FT923-7711 2 +303 2 FT923-7860 0 +303 2 FT923-7887 -1 +303 2 FT923-803 0 +303 2 FT923-8916 0 +303 2 FT923-9736 -1 +303 2 FT923-9781 0 +303 2 FT924-10484 0 +303 2 FT924-10903 -1 +303 2 FT924-12943 0 +303 2 FT924-14218 0 +303 2 FT924-14355 -1 +303 2 FT924-14455 0 +303 2 FT924-196 0 +303 2 FT924-2211 -1 +303 2 FT924-2379 0 +303 2 FT924-2406 0 +303 2 FT924-286 -1 +303 2 FT924-2896 0 +303 2 FT924-3328 0 +303 2 FT924-4315 -1 +303 2 FT924-4358 0 +303 2 FT924-4829 0 +303 2 FT924-5286 -1 +303 2 FT924-5310 0 +303 2 FT924-5533 0 +303 2 FT924-5574 -1 +303 2 FT924-6499 0 +303 2 FT924-7392 0 +303 2 FT924-7399 -1 +303 2 FT924-8791 0 +303 2 FT924-8918 0 +303 2 FT931-11101 -1 +303 2 FT931-12968 0 +303 2 FT931-13063 0 +303 2 FT931-13386 -1 +303 2 FT931-13998 0 +303 2 FT931-15496 0 +303 2 FT931-15565 -1 +303 2 FT931-15612 0 +303 2 FT931-15900 0 +303 2 FT931-1860 -1 +303 2 FT931-2231 0 +303 2 FT931-3522 0 +303 2 FT931-3827 -1 +303 2 FT931-4109 0 +303 2 FT931-5157 0 +303 2 FT931-5545 -1 +303 2 FT931-5858 0 +303 2 FT931-6554 2 +303 2 FT931-7240 -1 +303 2 FT931-9388 0 +303 2 FT931-9677 0 +303 2 FT931-9998 -1 +303 2 FT932-12850 0 +303 2 FT932-12979 0 +303 2 FT932-13081 -1 +303 2 FT932-13517 0 +303 2 FT932-13766 0 +303 2 FT932-14482 -1 +303 2 FT932-15782 0 +303 2 FT932-15788 0 +303 2 FT932-16246 -1 +303 2 FT932-16878 0 +303 2 FT932-1696 0 +303 2 FT932-17203 -1 +303 2 FT932-1828 0 +303 2 FT932-3207 0 +303 2 FT932-3291 -1 +303 2 FT932-378 0 +303 2 FT932-4616 0 +303 2 FT932-4803 -1 +303 2 FT932-5036 0 +303 2 FT932-5038 0 +303 2 FT932-5048 -1 +303 2 FT932-6741 0 +303 2 FT932-7107 0 +303 2 FT932-734 -1 +303 2 FT932-868 0 +303 2 FT932-8978 0 +303 2 FT932-9302 -1 +303 2 FT933-10291 0 +303 2 FT933-10324 0 +303 2 FT933-11321 -1 +303 2 FT933-11538 0 +303 2 FT933-11603 0 +303 2 FT933-1184 -1 +303 2 FT933-12486 0 +303 2 FT933-14487 0 +303 2 FT933-14847 -1 +303 2 FT933-14894 0 +303 2 FT933-15354 0 +303 2 FT933-16201 -1 +303 2 FT933-16728 0 +303 2 FT933-16851 0 +303 2 FT933-2180 -1 +303 2 FT933-2218 0 +303 2 FT933-3699 0 +303 2 FT933-4983 -1 +303 2 FT933-5990 0 +303 2 FT933-6323 0 +303 2 FT933-6678 -1 +303 2 FT933-678 0 +303 2 FT933-6877 0 +303 2 FT933-6882 -1 +303 2 FT933-6946 0 +303 2 FT933-8843 0 +303 2 FT933-9084 -1 +303 2 FT933-9701 0 +303 2 FT934-10579 0 +303 2 FT934-10850 -1 +303 2 FT934-10897 0 +303 2 FT934-11052 0 +303 2 FT934-11633 -1 +303 2 FT934-1193 0 +303 2 FT934-12356 0 +303 2 FT934-14956 -1 +303 2 FT934-16249 0 +303 2 FT934-17357 0 +303 2 FT934-2516 -1 +303 2 FT934-2630 0 +303 2 FT934-2685 0 +303 2 FT934-3191 -1 +303 2 FT934-3325 0 +303 2 FT934-3608 0 +303 2 FT934-3766 -1 +303 2 FT934-4015 0 +303 2 FT934-4132 0 +303 2 FT934-4163 -1 +303 2 FT934-4467 0 +303 2 FT934-4583 0 +303 2 FT934-4766 -1 +303 2 FT934-4842 0 +303 2 FT934-4882 0 +303 2 FT934-5418 -1 +303 2 FT934-5460 0 +303 2 FT934-5524 0 +303 2 FT934-5811 -1 +303 2 FT934-5820 0 +303 2 FT934-7129 0 +303 2 FT934-7549 -1 +303 2 FT934-8767 0 +303 2 FT934-9330 0 +303 2 FT941-11088 -1 +303 2 FT941-11413 0 +303 2 FT941-11486 0 +303 2 FT941-11756 -1 +303 2 FT941-12019 0 +303 2 FT941-13695 0 +303 2 FT941-1374 -1 +303 2 FT941-1391 0 +303 2 FT941-1394 0 +303 2 FT941-14233 -1 +303 2 FT941-15661 2 +303 2 FT941-16882 0 +303 2 FT941-16886 -1 +303 2 FT941-16981 0 +303 2 FT941-17036 0 +303 2 FT941-17441 -1 +303 2 FT941-17487 0 +303 2 FT941-17636 0 +303 2 FT941-17652 -1 +303 2 FT941-2547 0 +303 2 FT941-2665 0 +303 2 FT941-2991 -1 +303 2 FT941-3758 0 +303 2 FT941-4026 0 +303 2 FT941-4092 -1 +303 2 FT941-4444 0 +303 2 FT941-5396 0 +303 2 FT941-541 -1 +303 2 FT941-6402 0 +303 2 FT941-7923 0 +303 2 FT941-793 -1 +303 2 FT941-7995 0 +303 2 FT942-10936 0 +303 2 FT942-11263 -1 +303 2 FT942-12236 0 +303 2 FT942-12872 0 +303 2 FT942-13026 -1 +303 2 FT942-13246 0 +303 2 FT942-13367 0 +303 2 FT942-14060 -1 +303 2 FT942-1469 0 +303 2 FT942-15138 0 +303 2 FT942-16737 -1 +303 2 FT942-16817 0 +303 2 FT942-17118 0 +303 2 FT942-344 -1 +303 2 FT942-417 0 +303 2 FT942-5339 0 +303 2 FT942-5356 -1 +303 2 FT942-5468 0 +303 2 FT942-5834 0 +303 2 FT942-6534 -1 +303 2 FT942-68 0 +303 2 FT942-7259 0 +303 2 FT942-786 -1 +303 2 FT942-795 0 +303 2 FT942-8367 0 +303 2 FT943-10128 -1 +303 2 FT943-10171 0 +303 2 FT943-10786 0 +303 2 FT943-10793 -1 +303 2 FT943-11292 0 +303 2 FT943-11617 0 +303 2 FT943-1201 -1 +303 2 FT943-1280 0 +303 2 FT943-12840 0 +303 2 FT943-13317 -1 +303 2 FT943-13465 0 +303 2 FT943-14262 0 +303 2 FT943-14510 -1 +303 2 FT943-14574 0 +303 2 FT943-14635 0 +303 2 FT943-14986 -1 +303 2 FT943-15147 0 +303 2 FT943-15250 0 +303 2 FT943-15591 -1 +303 2 FT943-16229 0 +303 2 FT943-3051 0 +303 2 FT943-3170 -1 +303 2 FT943-3693 0 +303 2 FT943-4589 0 +303 2 FT943-4595 -1 +303 2 FT943-4813 0 +303 2 FT943-5596 0 +303 2 FT943-5598 -1 +303 2 FT943-6074 0 +303 2 FT943-6422 0 +303 2 FT943-7294 -1 +303 2 FT943-8129 0 +303 2 FT943-8794 0 +303 2 FT943-9282 -1 +303 2 FT943-9830 0 +303 2 FT944-11415 0 +303 2 FT944-11782 -1 +303 2 FT944-12542 0 +303 2 FT944-12573 0 +303 2 FT944-12693 -1 +303 2 FT944-128 2 +303 2 FT944-12897 0 +303 2 FT944-1329 -1 +303 2 FT944-14417 0 +303 2 FT944-14989 0 +303 2 FT944-18272 -1 +303 2 FT944-18385 0 +303 2 FT944-3898 0 +303 2 FT944-3901 -1 +303 2 FT944-419 0 +303 2 FT944-4838 0 +303 2 FT944-509 -1 +303 2 FT944-5488 0 +303 2 FT944-552 0 +303 2 FT944-6624 -1 +303 2 FT944-6937 0 +303 2 FT944-8381 0 +303 2 FT944-8537 -1 +303 2 FT944-8893 0 +303 2 FT944-9936 0 +303 2 LA010689-0016 -1 +303 2 LA010889-0081 0 +303 2 LA011590-0098 0 +303 2 LA011789-0014 -1 +303 2 LA011990-0173 0 +303 2 LA012090-0105 0 +303 2 LA012090-0106 -1 +303 2 LA012789-0162 0 +303 2 LA012790-0042 0 +303 2 LA020190-0053 -1 +303 2 LA020889-0065 0 +303 2 LA020989-0012 0 +303 2 LA022689-0112 -1 +303 2 LA030590-0070 0 +303 2 LA030990-0068 0 +303 2 LA031090-0099 -1 +303 2 LA031190-0216 0 +303 2 LA031289-0114 0 +303 2 LA031490-0065 -1 +303 2 LA031490-0066 0 +303 2 LA031589-0130 0 +303 2 LA031689-0206 -1 +303 2 LA031989-0181 0 +303 2 LA031989-0182 0 +303 2 LA032790-0023 -1 +303 2 LA033089-0032 0 +303 2 LA033090-0082 0 +303 2 LA033090-0083 -1 +303 2 LA040190-0178 0 +303 2 LA040190-0179 0 +303 2 LA040590-0220 -1 +303 2 LA040689-0155 0 +303 2 LA041090-0148 0 +303 2 LA041190-0003 -1 +303 2 LA041390-0018 0 +303 2 LA041490-0064 0 +303 2 LA041589-0014 -1 +303 2 LA041590-0161 0 +303 2 LA041689-0190 0 +303 2 LA041690-0035 -1 +303 2 LA041690-0050 0 +303 2 LA041690-0051 0 +303 2 LA041790-0054 -1 +303 2 LA041790-0055 0 +303 2 LA041989-0027 0 +303 2 LA041990-0151 -1 +303 2 LA042190-0078 0 +303 2 LA042190-0132 0 +303 2 LA042289-0040 -1 +303 2 LA042290-0096 0 +303 2 LA042290-0160 0 +303 2 LA042390-0041 -1 +303 2 LA042390-0060 0 +303 2 LA042390-0099 0 +303 2 LA042590-0135 -1 +303 2 LA042590-0152 0 +303 2 LA042690-0141 0 +303 2 LA042690-0169 -1 +303 2 LA042790-0070 0 +303 2 LA042890-0035 0 +303 2 LA042890-0151 -1 +303 2 LA042989-0116 0 +303 2 LA043089-0169 0 +303 2 LA043090-0018 -1 +303 2 LA050189-0063 0 +303 2 LA050190-0067 0 +303 2 LA050390-0109 -1 +303 2 LA050589-0090 0 +303 2 LA050589-0092 0 +303 2 LA050590-0027 -1 +303 2 LA050590-0048 0 +303 2 LA050690-0145 0 +303 2 LA050690-0149 -1 +303 2 LA050889-0068 0 +303 2 LA050990-0078 0 +303 2 LA050990-0116 -1 +303 2 LA051090-0069 0 +303 2 LA051090-0070 0 +303 2 LA051190-0064 -1 +303 2 LA051290-0077 0 +303 2 LA051290-0079 2 +303 2 LA051389-0037 -1 +303 2 LA051390-0161 0 +303 2 LA051390-0195 0 +303 2 LA051390-0223 -1 +303 2 LA051490-0110 0 +303 2 LA051590-0074 0 +303 2 LA052090-0088 -1 +303 2 LA052189-0123 0 +303 2 LA052190-0021 0 +303 2 LA052289-0047 -1 +303 2 LA052389-0074 0 +303 2 LA052390-0127 0 +303 2 LA052490-0139 -1 +303 2 LA052589-0193 0 +303 2 LA052690-0037 0 +303 2 LA052890-0021 -1 +303 2 LA052890-0046 0 +303 2 LA052990-0018 0 +303 2 LA053089-0075 -1 +303 2 LA053090-0037 0 +303 2 LA053090-0104 0 +303 2 LA053190-0175 -1 +303 2 LA060290-0131 0 +303 2 LA060390-0159 0 +303 2 LA060489-0196 -1 +303 2 LA060490-0021 0 +303 2 LA060590-0010 0 +303 2 LA060790-0159 -1 +303 2 LA060890-0124 0 +303 2 LA060989-0171 0 +303 2 LA060990-0077 -1 +303 2 LA061189-0173 0 +303 2 LA061190-0085 0 +303 2 LA061289-0051 -1 +303 2 LA061390-0056 0 +303 2 LA061490-0072 0 +303 2 LA061589-0050 -1 +303 2 LA061589-0051 0 +303 2 LA061590-0010 0 +303 2 LA061690-0021 -1 +303 2 LA061690-0030 0 +303 2 LA061789-0027 0 +303 2 LA061789-0028 -1 +303 2 LA061790-0205 0 +303 2 LA061889-0008 0 +303 2 LA062090-0094 -1 +303 2 LA062189-0012 0 +303 2 LA062390-0041 0 +303 2 LA062690-0041 -1 +303 2 LA062789-0090 0 +303 2 LA062790-0085 0 +303 2 LA062890-0206 -1 +303 2 LA062990-0180 0 +303 2 LA063090-0004 0 +303 2 LA063090-0005 -1 +303 2 LA070190-0119 0 +303 2 LA070190-0120 0 +303 2 LA070289-0147 -1 +303 2 LA070290-0051 0 +303 2 LA070390-0084 0 +303 2 LA070390-0085 -1 +303 2 LA070489-0096 0 +303 2 LA070490-0001 0 +303 2 LA070490-0002 -1 +303 2 LA070590-0031 0 +303 2 LA070590-0033 0 +303 2 LA070590-0036 -1 +303 2 LA070590-0097 0 +303 2 LA070690-0095 0 +303 2 LA070789-0002 -1 +303 2 LA070789-0127 0 +303 2 LA070790-0083 0 +303 2 LA070790-0084 -1 +303 2 LA070890-0079 0 +303 2 LA070890-0080 0 +303 2 LA070890-0154 -1 +303 2 LA070890-0155 0 +303 2 LA070989-0062 0 +303 2 LA070989-0063 -1 +303 2 LA070990-0052 0 +303 2 LA070990-0053 0 +303 2 LA071090-0047 -1 +303 2 LA071090-0048 0 +303 2 LA071090-0141 0 +303 2 LA071390-0122 -1 +303 2 LA071390-0123 0 +303 2 LA071490-0024 0 +303 2 LA071490-0091 -1 +303 2 LA071490-0092 0 +303 2 LA071690-0048 0 +303 2 LA071690-0049 -1 +303 2 LA071990-0165 0 +303 2 LA071990-0250 0 +303 2 LA072090-0146 -1 +303 2 LA072090-0147 0 +303 2 LA072190-0065 0 +303 2 LA072190-0066 -1 +303 2 LA072389-0021 0 +303 2 LA072390-0058 0 +303 2 LA072390-0060 -1 +303 2 LA072490-0033 0 +303 2 LA072590-0005 0 +303 2 LA072590-0006 -1 +303 2 LA072590-0115 0 +303 2 LA072690-0124 0 +303 2 LA072690-0125 -1 +303 2 LA072690-0133 0 +303 2 LA072690-0134 0 +303 2 LA072789-0050 -1 +303 2 LA072890-0052 0 +303 2 LA072890-0078 0 +303 2 LA072890-0079 -1 +303 2 LA072990-0118 0 +303 2 LA073089-0149 0 +303 2 LA080489-0048 -1 +303 2 LA080590-0195 0 +303 2 LA080889-0066 0 +303 2 LA080890-0044 -1 +303 2 LA080989-0058 0 +303 2 LA080990-0216 0 +303 2 LA080990-0222 -1 +303 2 LA080990-0223 0 +303 2 LA080990-0232 0 +303 2 LA080990-0242 -1 +303 2 LA081090-0078 0 +303 2 LA081090-0079 0 +303 2 LA081090-0080 -1 +303 2 LA081190-0108 0 +303 2 LA081290-0215 0 +303 2 LA081290-0216 -1 +303 2 LA081489-0055 0 +303 2 LA081690-0102 0 +303 2 LA081790-0083 -1 +303 2 LA081790-0164 0 +303 2 LA081790-0165 0 +303 2 LA081989-0048 -1 +303 2 LA081990-0158 0 +303 2 LA082089-0163 0 +303 2 LA082190-0014 -1 +303 2 LA082190-0015 0 +303 2 LA082389-0028 0 +303 2 LA082490-0075 -1 +303 2 LA082590-0019 0 +303 2 LA082789-0096 0 +303 2 LA082789-0201 -1 +303 2 LA082890-0147 0 +303 2 LA082890-0148 0 +303 2 LA082989-0074 -1 +303 2 LA090189-0018 0 +303 2 LA090389-0097 0 +303 2 LA090389-0100 -1 +303 2 LA090390-0035 0 +303 2 LA090489-0037 0 +303 2 LA090489-0038 -1 +303 2 LA090689-0015 0 +303 2 LA090690-0100 0 +303 2 LA090690-0101 -1 +303 2 LA090790-0049 0 +303 2 LA090790-0050 0 +303 2 LA090889-0077 -1 +303 2 LA091089-0170 0 +303 2 LA091089-0172 0 +303 2 LA091190-0096 -1 +303 2 LA091190-0102 0 +303 2 LA091390-0046 0 +303 2 LA091689-0028 -1 +303 2 LA091690-0166 0 +303 2 LA091890-0053 0 +303 2 LA091890-0054 -1 +303 2 LA091890-0156 0 +303 2 LA092489-0053 0 +303 2 LA092489-0134 -1 +303 2 LA092690-0092 0 +303 2 LA092690-0093 0 +303 2 LA092690-0117 -1 +303 2 LA092790-0128 0 +303 2 LA100189-0205 0 +303 2 LA100290-0067 -1 +303 2 LA100889-0040 0 +303 2 LA101189-0144 0 +303 2 LA101290-0125 -1 +303 2 LA101690-0023 0 +303 2 LA101790-0151 0 +303 2 LA102189-0071 -1 +303 2 LA102289-0098 0 +303 2 LA102290-0066 0 +303 2 LA102290-0067 -1 +303 2 LA102590-0235 0 +303 2 LA102689-0127 0 +303 2 LA102890-0197 -1 +303 2 LA110590-0076 2 +303 2 LA110590-0077 0 +303 2 LA110989-0239 -1 +303 2 LA111089-0012 0 +303 2 LA111090-0135 0 +303 2 LA111789-0042 -1 +303 2 LA111789-0101 0 +303 2 LA111789-0151 0 +303 2 LA111990-0004 -1 +303 2 LA112089-0048 0 +303 2 LA112190-0043 2 +303 2 LA112190-0044 -1 +303 2 LA112390-0146 0 +303 2 LA112690-0067 0 +303 2 LA112990-0083 -1 +303 2 LA113090-0157 0 +303 2 LA120190-0125 0 +303 2 LA120390-0065 -1 +303 2 LA120390-0126 0 +303 2 LA120590-0110 0 +303 2 LA120890-0048 -1 +303 2 LA120990-0163 0 +303 2 LA120990-0165 0 +303 2 LA121190-0079 -1 +303 2 LA121190-0089 0 +303 2 LA121190-0090 0 +303 2 LA121190-0160 -1 +303 2 LA121790-0086 0 +303 2 LA121790-0087 0 +303 2 LA122090-0004 -1 +303 2 LA122090-0228 0 +303 2 LA122190-0021 0 +303 2 LA122390-0127 -1 +303 2 LA122589-0068 0 +303 2 LA122590-0113 0 +303 2 LA122790-0152 -1 +303 2 LA122990-0029 2 +303 2 LA122990-0030 0 diff --git a/tools/eval/trec_eval.9.0.4/test/qrels.rel_level b/tools/eval/trec_eval.9.0.4/test/qrels.rel_level new file mode 100644 index 0000000000000000000000000000000000000000..3fa0bb76c7ea3bf6d4c0d8b887f0ff845f82bb1c --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/qrels.rel_level @@ -0,0 +1,3681 @@ +301 0 CR93E-10279 0 +301 0 CR93E-10505 0 +301 0 CR93E-1282 1 +301 0 CR93E-1850 0 +301 0 CR93E-1860 0 +301 0 CR93E-1952 0 +301 0 CR93E-2191 0 +301 0 CR93E-2473 0 +301 0 CR93E-3103 1 +301 0 CR93E-3284 0 +301 0 CR93E-38 0 +301 0 CR93E-392 0 +301 0 CR93E-4648 0 +301 0 CR93E-4765 0 +301 0 CR93E-4855 0 +301 0 CR93E-5497 0 +301 0 CR93E-5780 0 +301 0 CR93E-5796 1 +301 0 CR93E-5799 4 +301 0 CR93E-6019 0 +301 0 CR93E-6879 0 +301 0 CR93E-6905 4 +301 0 CR93E-7123 0 +301 0 CR93E-7191 0 +301 0 CR93E-7276 0 +301 0 CR93E-7348 4 +301 0 CR93E-7376 1 +301 0 CR93E-7414 0 +301 0 CR93E-7716 0 +301 0 CR93E-7952 2 +301 0 CR93E-8012 0 +301 0 CR93E-8290 2 +301 0 CR93E-8416 1 +301 0 CR93E-8480 0 +301 0 CR93E-8484 0 +301 0 CR93E-9665 2 +301 0 CR93E-9750 2 +301 0 CR93E-9795 0 +301 0 CR93H-10037 4 +301 0 CR93H-10042 0 +301 0 CR93H-10104 0 +301 0 CR93H-10213 0 +301 0 CR93H-10221 0 +301 0 CR93H-10306 0 +301 0 CR93H-10374 0 +301 0 CR93H-10601 0 +301 0 CR93H-10659 0 +301 0 CR93H-10681 0 +301 0 CR93H-10921 0 +301 0 CR93H-10989 0 +301 0 CR93H-11029 0 +301 0 CR93H-11033 0 +301 0 CR93H-11034 0 +301 0 CR93H-11077 0 +301 0 CR93H-11119 0 +301 0 CR93H-11267 0 +301 0 CR93H-11291 0 +301 0 CR93H-11586 0 +301 0 CR93H-11806 0 +301 0 CR93H-11894 0 +301 0 CR93H-11994 0 +301 0 CR93H-11998 0 +301 0 CR93H-12016 0 +301 0 CR93H-12017 0 +301 0 CR93H-12150 0 +301 0 CR93H-12163 0 +301 0 CR93H-12181 0 +301 0 CR93H-12278 0 +301 0 CR93H-12436 0 +301 0 CR93H-12498 0 +301 0 CR93H-12610 0 +301 0 CR93H-12820 0 +301 0 CR93H-12874 0 +301 0 CR93H-12908 0 +301 0 CR93H-1298 0 +301 0 CR93H-12982 0 +301 0 CR93H-12983 0 +301 0 CR93H-12988 0 +301 0 CR93H-13053 0 +301 0 CR93H-13205 0 +301 0 CR93H-13529 1 +301 0 CR93H-13593 1 +301 0 CR93H-13595 1 +301 0 CR93H-13659 0 +301 0 CR93H-13680 0 +301 0 CR93H-13849 0 +301 0 CR93H-14136 0 +301 0 CR93H-14306 0 +301 0 CR93H-14325 0 +301 0 CR93H-14388 0 +301 0 CR93H-14389 1 +301 0 CR93H-14469 0 +301 0 CR93H-1461 0 +301 0 CR93H-1464 0 +301 0 CR93H-14669 0 +301 0 CR93H-14791 0 +301 0 CR93H-14817 0 +301 0 CR93H-14949 0 +301 0 CR93H-15069 1 +301 0 CR93H-15178 0 +301 0 CR93H-15405 0 +301 0 CR93H-15453 0 +301 0 CR93H-15477 0 +301 0 CR93H-15587 0 +301 0 CR93H-15608 0 +301 0 CR93H-15875 0 +301 0 CR93H-15886 0 +301 0 CR93H-15950 0 +301 0 CR93H-16062 0 +301 0 CR93H-16128 0 +301 0 CR93H-16369 0 +301 0 CR93H-1712 0 +301 0 CR93H-1769 1 +301 0 CR93H-1788 0 +301 0 CR93H-185 0 +301 0 CR93H-1852 0 +301 0 CR93H-199 1 +301 0 CR93H-215 0 +301 0 CR93H-2174 0 +301 0 CR93H-2252 0 +301 0 CR93H-2346 0 +301 0 CR93H-2430 0 +301 0 CR93H-2707 0 +301 0 CR93H-2841 0 +301 0 CR93H-2896 0 +301 0 CR93H-2899 1 +301 0 CR93H-3079 0 +301 0 CR93H-3262 0 +301 0 CR93H-3444 0 +301 0 CR93H-3466 0 +301 0 CR93H-3813 0 +301 0 CR93H-3960 0 +301 0 CR93H-4041 0 +301 0 CR93H-4042 0 +301 0 CR93H-4143 0 +301 0 CR93H-416 0 +301 0 CR93H-4192 0 +301 0 CR93H-4306 0 +301 0 CR93H-4417 0 +301 0 CR93H-4554 0 +301 0 CR93H-4569 0 +301 0 CR93H-4586 0 +301 0 CR93H-4635 0 +301 0 CR93H-4827 0 +301 0 CR93H-4879 0 +301 0 CR93H-4922 0 +301 0 CR93H-5017 0 +301 0 CR93H-5053 0 +301 0 CR93H-5121 0 +301 0 CR93H-5189 0 +301 0 CR93H-5255 0 +301 0 CR93H-553 0 +301 0 CR93H-5568 1 +301 0 CR93H-5618 0 +301 0 CR93H-6202 0 +301 0 CR93H-6346 0 +301 0 CR93H-6422 0 +301 0 CR93H-6567 0 +301 0 CR93H-6695 0 +301 0 CR93H-6754 0 +301 0 CR93H-6912 0 +301 0 CR93H-6945 0 +301 0 CR93H-7055 0 +301 0 CR93H-71 0 +301 0 CR93H-7245 0 +301 0 CR93H-7314 0 +301 0 CR93H-735 0 +301 0 CR93H-742 0 +301 0 CR93H-7426 0 +301 0 CR93H-7554 0 +301 0 CR93H-7557 0 +301 0 CR93H-7612 0 +301 0 CR93H-8165 0 +301 0 CR93H-83 0 +301 0 CR93H-8422 0 +301 0 CR93H-8460 0 +301 0 CR93H-8461 0 +301 0 CR93H-8472 0 +301 0 CR93H-8590 0 +301 0 CR93H-860 0 +301 0 CR93H-8700 0 +301 0 CR93H-8928 0 +301 0 CR93H-8981 0 +301 0 CR93H-9134 1 +301 0 CR93H-9143 0 +301 0 CR93H-9147 0 +301 0 CR93H-9214 0 +301 0 CR93H-9344 0 +301 0 CR93H-9350 1 +301 0 CR93H-9357 0 +301 0 CR93H-9546 0 +301 0 CR93H-9548 0 +301 0 CR93H-955 1 +301 0 CR93H-9684 1 +301 0 CR93H-9705 0 +301 0 CR93H-9835 0 +301 0 FBIS3-10082 1 +301 0 FBIS3-10169 0 +301 0 FBIS3-10243 1 +301 0 FBIS3-10319 0 +301 0 FBIS3-10397 1 +301 0 FBIS3-10491 1 +301 0 FBIS3-10555 0 +301 0 FBIS3-10622 1 +301 0 FBIS3-10634 0 +301 0 FBIS3-10635 0 +301 0 FBIS3-10721 1 +301 0 FBIS3-10805 1 +301 0 FBIS3-10910 1 +301 0 FBIS3-10937 1 +301 0 FBIS3-10938 0 +301 0 FBIS3-11003 1 +301 0 FBIS3-11028 0 +301 0 FBIS3-11095 1 +301 0 FBIS3-11099 1 +301 0 FBIS3-11210 1 +301 0 FBIS3-11318 0 +301 0 FBIS3-11405 1 +301 0 FBIS3-11502 1 +301 0 FBIS3-11553 1 +301 0 FBIS3-1162 0 +301 0 FBIS3-11628 1 +301 0 FBIS3-11634 1 +301 0 FBIS3-12094 1 +301 0 FBIS3-13011 0 +301 0 FBIS3-14449 0 +301 0 FBIS3-14832 1 +301 0 FBIS3-15271 0 +301 0 FBIS3-15418 0 +301 0 FBIS3-15509 0 +301 0 FBIS3-15586 1 +301 0 FBIS3-15988 1 +301 0 FBIS3-16151 0 +301 0 FBIS3-16286 0 +301 0 FBIS3-1638 0 +301 0 FBIS3-16769 0 +301 0 FBIS3-16775 0 +301 0 FBIS3-17073 0 +301 0 FBIS3-17175 0 +301 0 FBIS3-17255 0 +301 0 FBIS3-17394 0 +301 0 FBIS3-17422 0 +301 0 FBIS3-17547 0 +301 0 FBIS3-17704 0 +301 0 FBIS3-17880 0 +301 0 FBIS3-18129 0 +301 0 FBIS3-18281 0 +301 0 FBIS3-18507 0 +301 0 FBIS3-19199 1 +301 0 FBIS3-19420 1 +301 0 FBIS3-19646 1 +301 0 FBIS3-19682 0 +301 0 FBIS3-19863 0 +301 0 FBIS3-20360 1 +301 0 FBIS3-20551 1 +301 0 FBIS3-20552 1 +301 0 FBIS3-20796 0 +301 0 FBIS3-21603 1 +301 0 FBIS3-21604 0 +301 0 FBIS3-21605 1 +301 0 FBIS3-21620 0 +301 0 FBIS3-21627 1 +301 0 FBIS3-21628 1 +301 0 FBIS3-21629 1 +301 0 FBIS3-21630 1 +301 0 FBIS3-21631 1 +301 0 FBIS3-21632 1 +301 0 FBIS3-21635 1 +301 0 FBIS3-21636 1 +301 0 FBIS3-21641 1 +301 0 FBIS3-21642 1 +301 0 FBIS3-21670 0 +301 0 FBIS3-21671 0 +301 0 FBIS3-21699 1 +301 0 FBIS3-21710 1 +301 0 FBIS3-21720 1 +301 0 FBIS3-21722 1 +301 0 FBIS3-21723 1 +301 0 FBIS3-21724 1 +301 0 FBIS3-21729 1 +301 0 FBIS3-21743 1 +301 0 FBIS3-21750 1 +301 0 FBIS3-21762 0 +301 0 FBIS3-21765 1 +301 0 FBIS3-21769 1 +301 0 FBIS3-21770 1 +301 0 FBIS3-21771 1 +301 0 FBIS3-21779 0 +301 0 FBIS3-21789 1 +301 0 FBIS3-21790 1 +301 0 FBIS3-21807 1 +301 0 FBIS3-21817 1 +301 0 FBIS3-21818 1 +301 0 FBIS3-21821 1 +301 0 FBIS3-21828 0 +301 0 FBIS3-21880 1 +301 0 FBIS3-21884 1 +301 0 FBIS3-21886 1 +301 0 FBIS3-21900 1 +301 0 FBIS3-21906 1 +301 0 FBIS3-21907 1 +301 0 FBIS3-21911 1 +301 0 FBIS3-21912 0 +301 0 FBIS3-21930 1 +301 0 FBIS3-21938 0 +301 0 FBIS3-21961 1 +301 0 FBIS3-21978 1 +301 0 FBIS3-21990 0 +301 0 FBIS3-21998 1 +301 0 FBIS3-21999 1 +301 0 FBIS3-22000 1 +301 0 FBIS3-22011 1 +301 0 FBIS3-22033 0 +301 0 FBIS3-22038 1 +301 0 FBIS3-22039 1 +301 0 FBIS3-22040 1 +301 0 FBIS3-22047 1 +301 0 FBIS3-22049 1 +301 0 FBIS3-22055 1 +301 0 FBIS3-22085 0 +301 0 FBIS3-22088 1 +301 0 FBIS3-22090 0 +301 0 FBIS3-22098 0 +301 0 FBIS3-22101 1 +301 0 FBIS3-23426 0 +301 0 FBIS3-23432 0 +301 0 FBIS3-23561 0 +301 0 FBIS3-23606 0 +301 0 FBIS3-23691 0 +301 0 FBIS3-23743 0 +301 0 FBIS3-23823 0 +301 0 FBIS3-2393 1 +301 0 FBIS3-23945 0 +301 0 FBIS3-23986 1 +301 0 FBIS3-24037 0 +301 0 FBIS3-24039 0 +301 0 FBIS3-24137 0 +301 0 FBIS3-24143 0 +301 0 FBIS3-24145 0 +301 0 FBIS3-24182 0 +301 0 FBIS3-24197 1 +301 0 FBIS3-24247 0 +301 0 FBIS3-24256 0 +301 0 FBIS3-24277 0 +301 0 FBIS3-24284 0 +301 0 FBIS3-24318 1 +301 0 FBIS3-24325 1 +301 0 FBIS3-24338 0 +301 0 FBIS3-24362 0 +301 0 FBIS3-24451 0 +301 0 FBIS3-24453 0 +301 0 FBIS3-2516 0 +301 0 FBIS3-25359 0 +301 0 FBIS3-25902 0 +301 0 FBIS3-26005 1 +301 0 FBIS3-2605 0 +301 0 FBIS3-26415 1 +301 0 FBIS3-26451 0 +301 0 FBIS3-26913 1 +301 0 FBIS3-26914 1 +301 0 FBIS3-27048 0 +301 0 FBIS3-27916 0 +301 0 FBIS3-28833 0 +301 0 FBIS3-29180 0 +301 0 FBIS3-3020 0 +301 0 FBIS3-31267 1 +301 0 FBIS3-31749 0 +301 0 FBIS3-3189 0 +301 0 FBIS3-3190 0 +301 0 FBIS3-3223 0 +301 0 FBIS3-32399 0 +301 0 FBIS3-32400 0 +301 0 FBIS3-32453 1 +301 0 FBIS3-32619 1 +301 0 FBIS3-32620 0 +301 0 FBIS3-32674 1 +301 0 FBIS3-32817 1 +301 0 FBIS3-32833 1 +301 0 FBIS3-32880 1 +301 0 FBIS3-33001 1 +301 0 FBIS3-3304 0 +301 0 FBIS3-33150 1 +301 0 FBIS3-33206 1 +301 0 FBIS3-33239 0 +301 0 FBIS3-33241 1 +301 0 FBIS3-33243 1 +301 0 FBIS3-33287 1 +301 0 FBIS3-33366 1 +301 0 FBIS3-33438 1 +301 0 FBIS3-33570 1 +301 0 FBIS3-33590 0 +301 0 FBIS3-33963 1 +301 0 FBIS3-34361 0 +301 0 FBIS3-34451 0 +301 0 FBIS3-34994 0 +301 0 FBIS3-35229 0 +301 0 FBIS3-36375 0 +301 0 FBIS3-36824 0 +301 0 FBIS3-36869 0 +301 0 FBIS3-37418 0 +301 0 FBIS3-37492 0 +301 0 FBIS3-37697 0 +301 0 FBIS3-37944 0 +301 0 FBIS3-37947 1 +301 0 FBIS3-38070 1 +301 0 FBIS3-38124 0 +301 0 FBIS3-38466 1 +301 0 FBIS3-38787 0 +301 0 FBIS3-38878 1 +301 0 FBIS3-39430 0 +301 0 FBIS3-39555 0 +301 0 FBIS3-39566 0 +301 0 FBIS3-40435 0 +301 0 FBIS3-40450 0 +301 0 FBIS3-40470 0 +301 0 FBIS3-40604 0 +301 0 FBIS3-41071 1 +301 0 FBIS3-41076 1 +301 0 FBIS3-41082 1 +301 0 FBIS3-41087 1 +301 0 FBIS3-41090 1 +301 0 FBIS3-41091 1 +301 0 FBIS3-41092 1 +301 0 FBIS3-41101 1 +301 0 FBIS3-41105 0 +301 0 FBIS3-41108 0 +301 0 FBIS3-41110 0 +301 0 FBIS3-41121 1 +301 0 FBIS3-41131 1 +301 0 FBIS3-41132 1 +301 0 FBIS3-41140 1 +301 0 FBIS3-41141 1 +301 0 FBIS3-41143 0 +301 0 FBIS3-41158 1 +301 0 FBIS3-41163 1 +301 0 FBIS3-41174 1 +301 0 FBIS3-41181 0 +301 0 FBIS3-41204 1 +301 0 FBIS3-41211 1 +301 0 FBIS3-41212 1 +301 0 FBIS3-41213 1 +301 0 FBIS3-41215 1 +301 0 FBIS3-41219 1 +301 0 FBIS3-41220 1 +301 0 FBIS3-41222 1 +301 0 FBIS3-41224 1 +301 0 FBIS3-41226 1 +301 0 FBIS3-41233 1 +301 0 FBIS3-41236 1 +301 0 FBIS3-41237 1 +301 0 FBIS3-41244 0 +301 0 FBIS3-41247 1 +301 0 FBIS3-41272 1 +301 0 FBIS3-41285 1 +301 0 FBIS3-41288 0 +301 0 FBIS3-41291 0 +301 0 FBIS3-41293 1 +301 0 FBIS3-41294 1 +301 0 FBIS3-41295 1 +301 0 FBIS3-41298 1 +301 0 FBIS3-41305 0 +301 0 FBIS3-41312 0 +301 0 FBIS3-41317 1 +301 0 FBIS3-41320 1 +301 0 FBIS3-41325 1 +301 0 FBIS3-41345 1 +301 0 FBIS3-41347 1 +301 0 FBIS3-41348 1 +301 0 FBIS3-41349 1 +301 0 FBIS3-41385 0 +301 0 FBIS3-41387 1 +301 0 FBIS3-41398 1 +301 0 FBIS3-41400 1 +301 0 FBIS3-41401 1 +301 0 FBIS3-41402 1 +301 0 FBIS3-41406 1 +301 0 FBIS3-41472 0 +301 0 FBIS3-41666 0 +301 0 FBIS3-41958 0 +301 0 FBIS3-4209 0 +301 0 FBIS3-42278 0 +301 0 FBIS3-42315 1 +301 0 FBIS3-42319 0 +301 0 FBIS3-42341 0 +301 0 FBIS3-42576 0 +301 0 FBIS3-42621 0 +301 0 FBIS3-42766 0 +301 0 FBIS3-42820 1 +301 0 FBIS3-42845 0 +301 0 FBIS3-43072 0 +301 0 FBIS3-43550 0 +301 0 FBIS3-44579 0 +301 0 FBIS3-45599 0 +301 0 FBIS3-45756 0 +301 0 FBIS3-46614 0 +301 0 FBIS3-46801 0 +301 0 FBIS3-47129 0 +301 0 FBIS3-47971 0 +301 0 FBIS3-48159 0 +301 0 FBIS3-48161 0 +301 0 FBIS3-48751 0 +301 0 FBIS3-49567 1 +301 0 FBIS3-50131 0 +301 0 FBIS3-50136 0 +301 0 FBIS3-50603 1 +301 0 FBIS3-50654 0 +301 0 FBIS3-50695 1 +301 0 FBIS3-51349 0 +301 0 FBIS3-51567 1 +301 0 FBIS3-51619 0 +301 0 FBIS3-51766 0 +301 0 FBIS3-51824 1 +301 0 FBIS3-52033 1 +301 0 FBIS3-52075 0 +301 0 FBIS3-52858 0 +301 0 FBIS3-54461 0 +301 0 FBIS3-54944 0 +301 0 FBIS3-54945 0 +301 0 FBIS3-55219 1 +301 0 FBIS3-55570 0 +301 0 FBIS3-55741 0 +301 0 FBIS3-55966 0 +301 0 FBIS3-56182 0 +301 0 FBIS3-57406 0 +301 0 FBIS3-5772 1 +301 0 FBIS3-57906 0 +301 0 FBIS3-57998 1 +301 0 FBIS3-58025 0 +301 0 FBIS3-58028 1 +301 0 FBIS3-58055 1 +301 0 FBIS3-58058 1 +301 0 FBIS3-58477 1 +301 0 FBIS3-58867 1 +301 0 FBIS3-59073 0 +301 0 FBIS3-59284 1 +301 0 FBIS3-59285 0 +301 0 FBIS3-5944 1 +301 0 FBIS3-59517 0 +301 0 FBIS3-59750 0 +301 0 FBIS3-59962 0 +301 0 FBIS3-59963 1 +301 0 FBIS3-59979 0 +301 0 FBIS3-60000 1 +301 0 FBIS3-60006 1 +301 0 FBIS3-60017 1 +301 0 FBIS3-60061 1 +301 0 FBIS3-60063 1 +301 0 FBIS3-60065 1 +301 0 FBIS3-60066 1 +301 0 FBIS3-60093 1 +301 0 FBIS3-60111 1 +301 0 FBIS3-60121 1 +301 0 FBIS3-60122 0 +301 0 FBIS3-60124 1 +301 0 FBIS3-60149 1 +301 0 FBIS3-60153 1 +301 0 FBIS3-60166 1 +301 0 FBIS3-60180 1 +301 0 FBIS3-60209 0 +301 0 FBIS3-60215 1 +301 0 FBIS3-60336 0 +301 0 FBIS3-60342 0 +301 0 FBIS3-60752 0 +301 0 FBIS3-60831 0 +301 0 FBIS3-60975 0 +301 0 FBIS3-60984 1 +301 0 FBIS3-61041 0 +301 0 FBIS3-61080 0 +301 0 FBIS3-61106 0 +301 0 FBIS3-61161 0 +301 0 FBIS3-61246 0 +301 0 FBIS3-61298 0 +301 0 FBIS3-61345 0 +301 0 FBIS3-61387 0 +301 0 FBIS3-61562 0 +301 0 FBIS3-7168 1 +301 0 FBIS3-8135 0 +301 0 FBIS3-9399 0 +301 0 FBIS3-9890 1 +301 0 FBIS3-9969 0 +301 0 FBIS3-9970 0 +301 0 FBIS4-10076 1 +301 0 FBIS4-10092 1 +301 0 FBIS4-10095 1 +301 0 FBIS4-10110 1 +301 0 FBIS4-10112 1 +301 0 FBIS4-10121 0 +301 0 FBIS4-10175 0 +301 0 FBIS4-10192 0 +301 0 FBIS4-10296 0 +301 0 FBIS4-10366 1 +301 0 FBIS4-10488 1 +301 0 FBIS4-10739 0 +301 0 FBIS4-10748 0 +301 0 FBIS4-10817 0 +301 0 FBIS4-10864 0 +301 0 FBIS4-11047 0 +301 0 FBIS4-11217 0 +301 0 FBIS4-14483 0 +301 0 FBIS4-14505 0 +301 0 FBIS4-15002 0 +301 0 FBIS4-1549 0 +301 0 FBIS4-1553 0 +301 0 FBIS4-16126 0 +301 0 FBIS4-1628 0 +301 0 FBIS4-16454 0 +301 0 FBIS4-16502 0 +301 0 FBIS4-16583 0 +301 0 FBIS4-1667 0 +301 0 FBIS4-16951 0 +301 0 FBIS4-17572 0 +301 0 FBIS4-17750 0 +301 0 FBIS4-1796 0 +301 0 FBIS4-18028 0 +301 0 FBIS4-18061 0 +301 0 FBIS4-18122 0 +301 0 FBIS4-1842 0 +301 0 FBIS4-1843 0 +301 0 FBIS4-1860 0 +301 0 FBIS4-1861 0 +301 0 FBIS4-1863 0 +301 0 FBIS4-1865 0 +301 0 FBIS4-1866 0 +301 0 FBIS4-19049 0 +301 0 FBIS4-1967 0 +301 0 FBIS4-19851 1 +301 0 FBIS4-2042 0 +301 0 FBIS4-20472 0 +301 0 FBIS4-20504 0 +301 0 FBIS4-20617 0 +301 0 FBIS4-2072 1 +301 0 FBIS4-20942 1 +301 0 FBIS4-20943 1 +301 0 FBIS4-20959 0 +301 0 FBIS4-20961 0 +301 0 FBIS4-20962 0 +301 0 FBIS4-20965 1 +301 0 FBIS4-20966 1 +301 0 FBIS4-20970 1 +301 0 FBIS4-20976 1 +301 0 FBIS4-20980 1 +301 0 FBIS4-20995 0 +301 0 FBIS4-21016 1 +301 0 FBIS4-21041 1 +301 0 FBIS4-2105 0 +301 0 FBIS4-21060 1 +301 0 FBIS4-21061 0 +301 0 FBIS4-21062 0 +301 0 FBIS4-21094 1 +301 0 FBIS4-21124 0 +301 0 FBIS4-21126 0 +301 0 FBIS4-21133 0 +301 0 FBIS4-21134 0 +301 0 FBIS4-21139 0 +301 0 FBIS4-21168 0 +301 0 FBIS4-21171 1 +301 0 FBIS4-21188 0 +301 0 FBIS4-21207 0 +301 0 FBIS4-21212 0 +301 0 FBIS4-21213 1 +301 0 FBIS4-21244 0 +301 0 FBIS4-21261 0 +301 0 FBIS4-2128 0 +301 0 FBIS4-21287 0 +301 0 FBIS4-21302 1 +301 0 FBIS4-21310 0 +301 0 FBIS4-21321 1 +301 0 FBIS4-21336 0 +301 0 FBIS4-21340 1 +301 0 FBIS4-21936 0 +301 0 FBIS4-2204 0 +301 0 FBIS4-22214 1 +301 0 FBIS4-22235 1 +301 0 FBIS4-22345 0 +301 0 FBIS4-22444 0 +301 0 FBIS4-22455 0 +301 0 FBIS4-22471 0 +301 0 FBIS4-22523 0 +301 0 FBIS4-22537 0 +301 0 FBIS4-22596 0 +301 0 FBIS4-22768 1 +301 0 FBIS4-22779 0 +301 0 FBIS4-24388 0 +301 0 FBIS4-2439 0 +301 0 FBIS4-24523 1 +301 0 FBIS4-25032 0 +301 0 FBIS4-26003 0 +301 0 FBIS4-26127 0 +301 0 FBIS4-26192 0 +301 0 FBIS4-26323 1 +301 0 FBIS4-26335 0 +301 0 FBIS4-26351 0 +301 0 FBIS4-26415 0 +301 0 FBIS4-26788 0 +301 0 FBIS4-26902 1 +301 0 FBIS4-27085 0 +301 0 FBIS4-27100 1 +301 0 FBIS4-2721 0 +301 0 FBIS4-27336 0 +301 0 FBIS4-2734 0 +301 0 FBIS4-27391 0 +301 0 FBIS4-27942 0 +301 0 FBIS4-29003 0 +301 0 FBIS4-2931 1 +301 0 FBIS4-30024 0 +301 0 FBIS4-3044 0 +301 0 FBIS4-31295 1 +301 0 FBIS4-31645 1 +301 0 FBIS4-31787 0 +301 0 FBIS4-3230 0 +301 0 FBIS4-33188 1 +301 0 FBIS4-33584 1 +301 0 FBIS4-3367 0 +301 0 FBIS4-3370 0 +301 0 FBIS4-33785 0 +301 0 FBIS4-33867 0 +301 0 FBIS4-33868 0 +301 0 FBIS4-34471 0 +301 0 FBIS4-34515 0 +301 0 FBIS4-34538 0 +301 0 FBIS4-34613 0 +301 0 FBIS4-34616 1 +301 0 FBIS4-34647 1 +301 0 FBIS4-34666 0 +301 0 FBIS4-34836 1 +301 0 FBIS4-34879 0 +301 0 FBIS4-37650 1 +301 0 FBIS4-37795 0 +301 0 FBIS4-38095 0 +301 0 FBIS4-38364 1 +301 0 FBIS4-38410 0 +301 0 FBIS4-38482 0 +301 0 FBIS4-39330 0 +301 0 FBIS4-39493 0 +301 0 FBIS4-39759 0 +301 0 FBIS4-40181 0 +301 0 FBIS4-40260 0 +301 0 FBIS4-40359 0 +301 0 FBIS4-40452 0 +301 0 FBIS4-40482 0 +301 0 FBIS4-40514 0 +301 0 FBIS4-4063 0 +301 0 FBIS4-4067 0 +301 0 FBIS4-40720 0 +301 0 FBIS4-40805 1 +301 0 FBIS4-40930 0 +301 0 FBIS4-40932 0 +301 0 FBIS4-40934 0 +301 0 FBIS4-40935 0 +301 0 FBIS4-40936 0 +301 0 FBIS4-41144 0 +301 0 FBIS4-41215 0 +301 0 FBIS4-41223 0 +301 0 FBIS4-41394 0 +301 0 FBIS4-41395 0 +301 0 FBIS4-41396 0 +301 0 FBIS4-41398 0 +301 0 FBIS4-41538 0 +301 0 FBIS4-41541 0 +301 0 FBIS4-41684 0 +301 0 FBIS4-41687 1 +301 0 FBIS4-41832 0 +301 0 FBIS4-41839 0 +301 0 FBIS4-41860 0 +301 0 FBIS4-41863 0 +301 0 FBIS4-41952 0 +301 0 FBIS4-41976 0 +301 0 FBIS4-41991 0 +301 0 FBIS4-42499 1 +301 0 FBIS4-42757 1 +301 0 FBIS4-43152 1 +301 0 FBIS4-43533 1 +301 0 FBIS4-43552 1 +301 0 FBIS4-43791 0 +301 0 FBIS4-43797 1 +301 0 FBIS4-43801 1 +301 0 FBIS4-43965 1 +301 0 FBIS4-44181 0 +301 0 FBIS4-45158 1 +301 0 FBIS4-45166 0 +301 0 FBIS4-45172 0 +301 0 FBIS4-45175 1 +301 0 FBIS4-45195 0 +301 0 FBIS4-45205 0 +301 0 FBIS4-45230 1 +301 0 FBIS4-45239 1 +301 0 FBIS4-45251 1 +301 0 FBIS4-45257 1 +301 0 FBIS4-45277 1 +301 0 FBIS4-45278 1 +301 0 FBIS4-45280 1 +301 0 FBIS4-45315 0 +301 0 FBIS4-45330 1 +301 0 FBIS4-45333 1 +301 0 FBIS4-45345 1 +301 0 FBIS4-45346 0 +301 0 FBIS4-45383 1 +301 0 FBIS4-45398 1 +301 0 FBIS4-45413 1 +301 0 FBIS4-45414 1 +301 0 FBIS4-45417 0 +301 0 FBIS4-45419 1 +301 0 FBIS4-45425 1 +301 0 FBIS4-45434 1 +301 0 FBIS4-45440 0 +301 0 FBIS4-45453 0 +301 0 FBIS4-45469 1 +301 0 FBIS4-45477 1 +301 0 FBIS4-45482 0 +301 0 FBIS4-45495 0 +301 0 FBIS4-45503 1 +301 0 FBIS4-45518 1 +301 0 FBIS4-45519 1 +301 0 FBIS4-45552 0 +301 0 FBIS4-45571 1 +301 0 FBIS4-46425 1 +301 0 FBIS4-46574 0 +301 0 FBIS4-46584 0 +301 0 FBIS4-46588 0 +301 0 FBIS4-46648 0 +301 0 FBIS4-46649 0 +301 0 FBIS4-46730 0 +301 0 FBIS4-46733 0 +301 0 FBIS4-46734 0 +301 0 FBIS4-46757 0 +301 0 FBIS4-46775 0 +301 0 FBIS4-46780 1 +301 0 FBIS4-46806 0 +301 0 FBIS4-46846 1 +301 0 FBIS4-46857 0 +301 0 FBIS4-46935 0 +301 0 FBIS4-47008 0 +301 0 FBIS4-47045 0 +301 0 FBIS4-47046 0 +301 0 FBIS4-47200 0 +301 0 FBIS4-49021 0 +301 0 FBIS4-49075 0 +301 0 FBIS4-49289 0 +301 0 FBIS4-49667 0 +301 0 FBIS4-49754 0 +301 0 FBIS4-49845 0 +301 0 FBIS4-50083 0 +301 0 FBIS4-50478 0 +301 0 FBIS4-50901 0 +301 0 FBIS4-50956 0 +301 0 FBIS4-50993 0 +301 0 FBIS4-51335 0 +301 0 FBIS4-52002 0 +301 0 FBIS4-52093 0 +301 0 FBIS4-52587 0 +301 0 FBIS4-53424 1 +301 0 FBIS4-54126 0 +301 0 FBIS4-54227 1 +301 0 FBIS4-54287 0 +301 0 FBIS4-54501 0 +301 0 FBIS4-54604 0 +301 0 FBIS4-54904 1 +301 0 FBIS4-55395 0 +301 0 FBIS4-56290 0 +301 0 FBIS4-56434 1 +301 0 FBIS4-56467 1 +301 0 FBIS4-56471 1 +301 0 FBIS4-56487 1 +301 0 FBIS4-56513 1 +301 0 FBIS4-56524 0 +301 0 FBIS4-56605 1 +301 0 FBIS4-56693 1 +301 0 FBIS4-56776 0 +301 0 FBIS4-56803 1 +301 0 FBIS4-56930 1 +301 0 FBIS4-56965 1 +301 0 FBIS4-56974 1 +301 0 FBIS4-56982 1 +301 0 FBIS4-56992 1 +301 0 FBIS4-57053 0 +301 0 FBIS4-57121 0 +301 0 FBIS4-57301 1 +301 0 FBIS4-57322 1 +301 0 FBIS4-57754 1 +301 0 FBIS4-57869 1 +301 0 FBIS4-57987 1 +301 0 FBIS4-58122 0 +301 0 FBIS4-60945 0 +301 0 FBIS4-61644 0 +301 0 FBIS4-61663 0 +301 0 FBIS4-62028 1 +301 0 FBIS4-62049 0 +301 0 FBIS4-62078 0 +301 0 FBIS4-62079 0 +301 0 FBIS4-62372 0 +301 0 FBIS4-63153 0 +301 0 FBIS4-63597 0 +301 0 FBIS4-64135 0 +301 0 FBIS4-64345 0 +301 0 FBIS4-6448 0 +301 0 FBIS4-65446 0 +301 0 FBIS4-65501 0 +301 0 FBIS4-65806 1 +301 0 FBIS4-66122 0 +301 0 FBIS4-66308 0 +301 0 FBIS4-66382 0 +301 0 FBIS4-66940 1 +301 0 FBIS4-66950 1 +301 0 FBIS4-66951 1 +301 0 FBIS4-66952 1 +301 0 FBIS4-66973 1 +301 0 FBIS4-66974 1 +301 0 FBIS4-67000 1 +301 0 FBIS4-67003 0 +301 0 FBIS4-67005 0 +301 0 FBIS4-67027 1 +301 0 FBIS4-67046 0 +301 0 FBIS4-67051 1 +301 0 FBIS4-67058 1 +301 0 FBIS4-67062 1 +301 0 FBIS4-67072 1 +301 0 FBIS4-67135 1 +301 0 FBIS4-67140 1 +301 0 FBIS4-67144 1 +301 0 FBIS4-67149 0 +301 0 FBIS4-67150 1 +301 0 FBIS4-67156 1 +301 0 FBIS4-67165 0 +301 0 FBIS4-67169 1 +301 0 FBIS4-67170 1 +301 0 FBIS4-67176 1 +301 0 FBIS4-67178 1 +301 0 FBIS4-67183 1 +301 0 FBIS4-67184 1 +301 0 FBIS4-67227 1 +301 0 FBIS4-67239 1 +301 0 FBIS4-67244 0 +301 0 FBIS4-67246 1 +301 0 FBIS4-67263 0 +301 0 FBIS4-67273 0 +301 0 FBIS4-67281 1 +301 0 FBIS4-67292 1 +301 0 FBIS4-67331 1 +301 0 FBIS4-67334 1 +301 0 FBIS4-67336 1 +301 0 FBIS4-67341 0 +301 0 FBIS4-67492 1 +301 0 FBIS4-67942 1 +301 0 FBIS4-68096 0 +301 0 FBIS4-68348 0 +301 0 FBIS4-68349 0 +301 0 FBIS4-68416 0 +301 0 FBIS4-68426 0 +301 0 FBIS4-68498 0 +301 0 FBIS4-68542 0 +301 0 FBIS4-68582 0 +301 0 FBIS4-68653 0 +301 0 FBIS4-68746 0 +301 0 FBIS4-68801 1 +301 0 FBIS4-68847 0 +301 0 FBIS4-68893 0 +301 0 FBIS4-7006 0 +301 0 FBIS4-7688 0 +301 0 FBIS4-7811 1 +301 0 FBIS4-865 0 +301 0 FBIS4-891 0 +301 0 FBIS4-8957 1 +301 0 FBIS4-9354 0 +301 0 FBIS4-9451 0 +301 0 FBIS4-9687 1 +301 0 FBIS4-9819 0 +301 0 FBIS4-9843 1 +301 0 FBIS4-9965 0 +301 0 FR940112-2-00076 0 +301 0 FR940128-2-00139 0 +301 0 FR940202-2-00149 0 +301 0 FR940202-2-00150 0 +301 0 FR940202-2-00151 0 +301 0 FR940202-2-00153 0 +301 0 FR940202-2-00154 0 +301 0 FR940203-1-00036 0 +301 0 FR940203-2-00129 0 +301 0 FR940203-2-00142 0 +301 0 FR940217-1-00073 0 +301 0 FR940223-2-00242 0 +301 0 FR940303-1-00022 0 +301 0 FR940303-2-00208 0 +301 0 FR940314-0-00010 0 +301 0 FR940314-1-00041 0 +301 0 FR940324-2-00091 0 +301 0 FR940328-2-00122 0 +301 0 FR940406-2-00067 0 +301 0 FR940406-2-00175 0 +301 0 FR940412-2-00124 0 +301 0 FR940412-2-00131 0 +301 0 FR940425-2-00078 0 +301 0 FR940425-2-00079 0 +301 0 FR940425-2-00080 0 +301 0 FR940425-2-00081 0 +301 0 FR940429-0-00128 0 +301 0 FR940503-2-00145 0 +301 0 FR940503-2-00146 0 +301 0 FR940503-2-00147 0 +301 0 FR940503-2-00165 0 +301 0 FR940503-2-00169 0 +301 0 FR940503-2-00170 0 +301 0 FR940511-0-00066 0 +301 0 FR940511-2-00139 0 +301 0 FR940511-2-00206 0 +301 0 FR940513-2-00097 0 +301 0 FR940513-2-00103 0 +301 0 FR940516-2-00139 0 +301 0 FR940525-2-00052 0 +301 0 FR940525-2-00068 0 +301 0 FR940526-2-00033 0 +301 0 FR940527-2-00068 0 +301 0 FR940527-2-00069 0 +301 0 FR940603-2-00059 0 +301 0 FR940603-2-00060 0 +301 0 FR940603-2-00158 0 +301 0 FR940610-2-00058 0 +301 0 FR940610-2-00072 0 +301 0 FR940620-1-00004 0 +301 0 FR940620-1-00005 0 +301 0 FR940620-1-00006 0 +301 0 FR940620-1-00007 0 +301 0 FR940620-1-00008 0 +301 0 FR940620-1-00009 0 +301 0 FR940622-2-00053 0 +301 0 FR940627-2-00036 0 +301 0 FR940627-2-00068 0 +301 0 FR940630-2-00168 0 +301 0 FR940630-2-00169 0 +301 0 FR940707-2-00112 0 +301 0 FR940707-2-00113 0 +301 0 FR940707-2-00114 0 +301 0 FR940711-2-00093 0 +301 0 FR940711-2-00096 0 +301 0 FR940712-2-00059 0 +301 0 FR940712-2-00065 0 +301 0 FR940713-2-00064 0 +301 0 FR940713-2-00172 0 +301 0 FR940713-2-00178 0 +301 0 FR940721-2-00075 0 +301 0 FR940727-0-00077 0 +301 0 FR940727-0-00078 0 +301 0 FR940727-0-00079 0 +301 0 FR940727-0-00091 0 +301 0 FR940727-0-00092 0 +301 0 FR940727-0-00093 0 +301 0 FR940727-0-00096 0 +301 0 FR940728-2-00151 0 +301 0 FR940804-0-00127 0 +301 0 FR940804-2-00088 0 +301 0 FR940811-0-00030 0 +301 0 FR940816-2-00057 0 +301 0 FR940825-2-00077 0 +301 0 FR940825-2-00078 0 +301 0 FR940825-2-00189 0 +301 0 FR940830-2-00003 0 +301 0 FR940902-1-00048 0 +301 0 FR940920-2-00045 0 +301 0 FR940922-2-00125 0 +301 0 FR940930-2-00057 0 +301 0 FR940930-2-00058 0 +301 0 FR940930-2-00063 0 +301 0 FR941004-1-00089 0 +301 0 FR941006-2-00013 0 +301 0 FR941006-2-00171 0 +301 0 FR941107-0-00034 0 +301 0 FR941128-2-00187 0 +301 0 FR941206-1-00134 0 +301 0 FR941221-2-00127 0 +301 0 FR941221-2-00130 0 +301 0 FR941221-2-00131 0 +301 0 FR941230-2-00127 0 +301 0 FR941230-2-00137 0 +301 0 FR941230-2-00138 0 +301 0 FR941230-2-00139 0 +301 0 FR941230-2-00150 0 +301 0 FT911-1237 0 +301 0 FT911-1697 0 +301 0 FT911-1821 0 +301 0 FT911-2267 0 +301 0 FT911-2671 0 +301 0 FT911-2685 0 +301 0 FT911-2704 0 +301 0 FT911-2706 0 +301 0 FT911-3036 0 +301 0 FT911-3105 0 +301 0 FT911-3453 0 +301 0 FT911-4494 0 +301 0 FT911-456 0 +301 0 FT911-4634 0 +301 0 FT911-4747 0 +301 0 FT911-5227 0 +301 0 FT911-629 0 +301 0 FT911-71 0 +301 0 FT921-10107 0 +301 0 FT921-10162 1 +301 0 FT921-10163 0 +301 0 FT921-10280 1 +301 0 FT921-10350 0 +301 0 FT921-10427 0 +301 0 FT921-10848 0 +301 0 FT921-11079 0 +301 0 FT921-11686 0 +301 0 FT921-12538 0 +301 0 FT921-1349 0 +301 0 FT921-13664 0 +301 0 FT921-14967 0 +301 0 FT921-15491 0 +301 0 FT921-16129 0 +301 0 FT921-16130 0 +301 0 FT921-1614 0 +301 0 FT921-1844 0 +301 0 FT921-2590 0 +301 0 FT921-3256 0 +301 0 FT921-4090 0 +301 0 FT921-4265 0 +301 0 FT921-4322 0 +301 0 FT921-5503 0 +301 0 FT921-6487 0 +301 0 FT921-6506 0 +301 0 FT921-6865 0 +301 0 FT921-6986 0 +301 0 FT921-6988 0 +301 0 FT921-7663 0 +301 0 FT921-8089 0 +301 0 FT921-8188 0 +301 0 FT921-861 0 +301 0 FT922-10933 0 +301 0 FT922-11540 0 +301 0 FT922-13596 1 +301 0 FT922-14858 0 +301 0 FT922-14992 0 +301 0 FT922-15159 0 +301 0 FT922-15176 0 +301 0 FT922-3844 0 +301 0 FT922-4774 0 +301 0 FT922-4887 0 +301 0 FT922-5041 0 +301 0 FT922-565 0 +301 0 FT922-616 0 +301 0 FT922-7190 0 +301 0 FT922-790 0 +301 0 FT922-8144 0 +301 0 FT922-8257 0 +301 0 FT922-8731 0 +301 0 FT922-9654 0 +301 0 FT923-10224 0 +301 0 FT923-10456 0 +301 0 FT923-10584 0 +301 0 FT923-11086 0 +301 0 FT923-11460 0 +301 0 FT923-11560 0 +301 0 FT923-11687 0 +301 0 FT923-11785 0 +301 0 FT923-12102 0 +301 0 FT923-12278 0 +301 0 FT923-13103 0 +301 0 FT923-1313 0 +301 0 FT923-14709 1 +301 0 FT923-2038 0 +301 0 FT923-2301 0 +301 0 FT923-2345 0 +301 0 FT923-2348 0 +301 0 FT923-3034 1 +301 0 FT923-332 0 +301 0 FT923-3617 0 +301 0 FT923-365 1 +301 0 FT923-4083 0 +301 0 FT923-466 0 +301 0 FT923-5301 0 +301 0 FT923-5751 0 +301 0 FT923-7842 0 +301 0 FT923-7884 0 +301 0 FT923-8084 0 +301 0 FT924-10092 0 +301 0 FT924-10320 0 +301 0 FT924-10713 0 +301 0 FT924-10861 0 +301 0 FT924-11258 0 +301 0 FT924-11339 1 +301 0 FT924-11606 0 +301 0 FT924-1186 0 +301 0 FT924-11989 0 +301 0 FT924-12138 0 +301 0 FT924-12220 0 +301 0 FT924-13611 1 +301 0 FT924-227 0 +301 0 FT924-2736 0 +301 0 FT924-2822 0 +301 0 FT924-2857 0 +301 0 FT924-3498 0 +301 0 FT924-4782 1 +301 0 FT924-5359 0 +301 0 FT924-6421 0 +301 0 FT924-6543 0 +301 0 FT924-6677 0 +301 0 FT924-9271 0 +301 0 FT924-949 0 +301 0 FT924-9745 0 +301 0 FT931-10356 0 +301 0 FT931-1053 0 +301 0 FT931-11647 0 +301 0 FT931-11843 0 +301 0 FT931-11924 0 +301 0 FT931-13292 0 +301 0 FT931-14697 1 +301 0 FT931-16394 0 +301 0 FT931-16398 0 +301 0 FT931-2175 0 +301 0 FT931-2379 0 +301 0 FT931-2401 0 +301 0 FT931-249 0 +301 0 FT931-3563 1 +301 0 FT931-3941 1 +301 0 FT931-4089 0 +301 0 FT931-4165 0 +301 0 FT931-4939 0 +301 0 FT931-4977 0 +301 0 FT931-5072 0 +301 0 FT931-6121 0 +301 0 FT931-6235 0 +301 0 FT931-682 0 +301 0 FT931-7337 0 +301 0 FT931-7529 0 +301 0 FT931-7536 0 +301 0 FT931-7881 0 +301 0 FT931-8991 0 +301 0 FT931-9181 0 +301 0 FT931-9535 0 +301 0 FT931-9665 0 +301 0 FT931-9667 0 +301 0 FT931-9798 0 +301 0 FT932-1131 0 +301 0 FT932-11505 0 +301 0 FT932-12261 0 +301 0 FT932-12610 0 +301 0 FT932-13676 0 +301 0 FT932-14690 0 +301 0 FT932-2315 0 +301 0 FT932-2874 0 +301 0 FT932-3130 1 +301 0 FT932-3286 0 +301 0 FT932-3322 0 +301 0 FT932-3329 0 +301 0 FT932-3331 0 +301 0 FT932-3336 0 +301 0 FT932-3338 0 +301 0 FT932-41 0 +301 0 FT932-4538 0 +301 0 FT932-4950 0 +301 0 FT932-4965 1 +301 0 FT932-5074 0 +301 0 FT932-5376 1 +301 0 FT932-5377 1 +301 0 FT932-5629 0 +301 0 FT932-5672 0 +301 0 FT932-6233 0 +301 0 FT932-6340 0 +301 0 FT932-6347 0 +301 0 FT932-7056 1 +301 0 FT932-7266 0 +301 0 FT932-7295 0 +301 0 FT932-8233 0 +301 0 FT933-10064 0 +301 0 FT933-11054 0 +301 0 FT933-11067 0 +301 0 FT933-11804 1 +301 0 FT933-12030 0 +301 0 FT933-1329 0 +301 0 FT933-1331 0 +301 0 FT933-1338 0 +301 0 FT933-13408 0 +301 0 FT933-13528 0 +301 0 FT933-15522 0 +301 0 FT933-15581 0 +301 0 FT933-15697 0 +301 0 FT933-1600 0 +301 0 FT933-16366 0 +301 0 FT933-16962 0 +301 0 FT933-17008 1 +301 0 FT933-1718 0 +301 0 FT933-2139 0 +301 0 FT933-2224 1 +301 0 FT933-279 0 +301 0 FT933-4677 0 +301 0 FT933-550 0 +301 0 FT933-582 0 +301 0 FT933-6786 0 +301 0 FT933-6924 0 +301 0 FT933-6966 0 +301 0 FT933-6971 0 +301 0 FT933-7993 0 +301 0 FT933-8067 0 +301 0 FT934-10491 1 +301 0 FT934-10543 0 +301 0 FT934-10783 0 +301 0 FT934-11015 0 +301 0 FT934-11658 0 +301 0 FT934-11945 0 +301 0 FT934-12578 0 +301 0 FT934-13302 0 +301 0 FT934-14820 0 +301 0 FT934-16551 0 +301 0 FT934-17146 0 +301 0 FT934-2267 0 +301 0 FT934-2699 0 +301 0 FT934-3452 0 +301 0 FT934-4154 0 +301 0 FT934-4340 0 +301 0 FT934-4582 0 +301 0 FT934-5231 0 +301 0 FT934-5726 0 +301 0 FT934-5891 0 +301 0 FT934-6874 0 +301 0 FT934-7013 0 +301 0 FT934-7093 0 +301 0 FT934-7094 0 +301 0 FT934-7631 0 +301 0 FT934-7660 0 +301 0 FT934-8411 0 +301 0 FT934-8545 0 +301 0 FT934-8632 0 +301 0 FT934-8633 0 +301 0 FT934-8640 0 +301 0 FT941-10546 0 +301 0 FT941-10611 1 +301 0 FT941-11262 0 +301 0 FT941-11279 0 +301 0 FT941-11449 0 +301 0 FT941-11505 0 +301 0 FT941-12402 0 +301 0 FT941-12805 0 +301 0 FT941-13151 1 +301 0 FT941-13349 0 +301 0 FT941-14742 0 +301 0 FT941-14810 0 +301 0 FT941-15027 0 +301 0 FT941-15378 0 +301 0 FT941-15631 0 +301 0 FT941-1682 0 +301 0 FT941-16929 0 +301 0 FT941-17064 0 +301 0 FT941-2244 0 +301 0 FT941-3237 1 +301 0 FT941-4259 0 +301 0 FT941-5289 0 +301 0 FT941-5453 1 +301 0 FT941-8491 0 +301 0 FT941-8966 0 +301 0 FT941-9876 0 +301 0 FT942-10163 0 +301 0 FT942-10977 0 +301 0 FT942-11067 0 +301 0 FT942-11396 0 +301 0 FT942-12197 0 +301 0 FT942-13293 0 +301 0 FT942-13766 0 +301 0 FT942-14060 0 +301 0 FT942-1417 0 +301 0 FT942-14542 0 +301 0 FT942-14609 0 +301 0 FT942-14967 0 +301 0 FT942-15220 0 +301 0 FT942-16403 0 +301 0 FT942-17001 1 +301 0 FT942-17066 0 +301 0 FT942-1711 0 +301 0 FT942-1715 0 +301 0 FT942-187 0 +301 0 FT942-2876 0 +301 0 FT942-2882 0 +301 0 FT942-3474 0 +301 0 FT942-3714 0 +301 0 FT942-4368 0 +301 0 FT942-5157 0 +301 0 FT942-5274 0 +301 0 FT942-5466 0 +301 0 FT942-6404 0 +301 0 FT942-6526 0 +301 0 FT942-7117 0 +301 0 FT942-7322 0 +301 0 FT942-7335 0 +301 0 FT942-7403 0 +301 0 FT942-792 1 +301 0 FT942-852 0 +301 0 FT942-8529 0 +301 0 FT942-8530 0 +301 0 FT942-8808 0 +301 0 FT942-885 0 +301 0 FT942-933 0 +301 0 FT942-9466 0 +301 0 FT942-9490 0 +301 0 FT942-9715 0 +301 0 FT943-11739 0 +301 0 FT943-12965 0 +301 0 FT943-13315 0 +301 0 FT943-13339 0 +301 0 FT943-14383 0 +301 0 FT943-15429 0 +301 0 FT943-15437 0 +301 0 FT943-15910 0 +301 0 FT943-16238 4 +301 0 FT943-16477 4 +301 0 FT943-16618 0 +301 0 FT943-2156 0 +301 0 FT943-2588 0 +301 0 FT943-295 0 +301 0 FT943-3533 2 +301 0 FT943-3953 0 +301 0 FT943-4417 0 +301 0 FT943-505 0 +301 0 FT943-5051 0 +301 0 FT943-5111 0 +301 0 FT943-5179 0 +301 0 FT943-5341 0 +301 0 FT943-5355 0 +301 0 FT943-5577 0 +301 0 FT943-6423 0 +301 0 FT943-726 0 +301 0 FT943-8128 0 +301 0 FT943-8527 0 +301 0 FT943-8670 0 +301 0 FT943-8942 0 +301 0 FT943-8961 0 +301 0 FT944-10136 0 +301 0 FT944-10634 0 +301 0 FT944-10635 2 +301 0 FT944-10673 0 +301 0 FT944-10675 0 +301 0 FT944-10676 0 +301 0 FT944-10779 0 +301 0 FT944-11113 0 +301 0 FT944-11625 0 +301 0 FT944-12104 0 +301 0 FT944-12173 1 +301 0 FT944-12949 0 +301 0 FT944-1350 0 +301 0 FT944-14183 0 +301 0 FT944-14184 0 +301 0 FT944-15443 0 +301 0 FT944-15444 0 +301 0 FT944-1692 0 +301 0 FT944-1808 1 +301 0 FT944-18166 0 +301 0 FT944-18167 0 +301 0 FT944-18184 0 +301 0 FT944-2231 1 +301 0 FT944-2497 0 +301 0 FT944-2600 0 +301 0 FT944-3492 0 +301 0 FT944-4020 0 +301 0 FT944-4116 0 +301 0 FT944-4735 0 +301 0 FT944-4901 0 +301 0 FT944-5537 0 +301 0 FT944-5679 0 +301 0 FT944-5749 0 +301 0 FT944-7669 1 +301 0 FT944-7867 0 +301 0 FT944-8161 0 +301 0 FT944-8297 1 +301 0 LA010290-0076 0 +301 0 LA010590-0084 1 +301 0 LA011290-0184 0 +301 0 LA011390-0046 1 +301 0 LA011390-0156 1 +301 0 LA011490-0115 1 +301 0 LA011790-0128 1 +301 0 LA011890-0125 1 +301 0 LA011990-0102 1 +301 0 LA012090-0101 0 +301 0 LA012190-0120 1 +301 0 LA012290-0053 0 +301 0 LA012690-0169 1 +301 0 LA012890-0073 1 +301 0 LA013190-0012 0 +301 0 LA021089-0177 0 +301 0 LA021590-0204 1 +301 0 LA021690-0049 1 +301 0 LA021790-0127 0 +301 0 LA022590-0191 1 +301 0 LA022689-0075 0 +301 0 LA022790-0089 1 +301 0 LA030290-0106 0 +301 0 LA030490-0017 0 +301 0 LA030490-0071 0 +301 0 LA031190-0216 0 +301 0 LA031289-0074 0 +301 0 LA031490-0140 0 +301 0 LA031690-0077 0 +301 0 LA032090-0091 0 +301 0 LA032189-0097 0 +301 0 LA032790-0103 1 +301 0 LA040689-0155 0 +301 0 LA041189-0055 0 +301 0 LA041389-0038 1 +301 0 LA041390-0018 0 +301 0 LA041589-0014 0 +301 0 LA041689-0150 1 +301 0 LA041689-0190 0 +301 0 LA041690-0050 0 +301 0 LA041690-0051 0 +301 0 LA041789-0008 0 +301 0 LA041790-0054 0 +301 0 LA041790-0055 0 +301 0 LA041890-0075 1 +301 0 LA041989-0027 0 +301 0 LA042190-0078 0 +301 0 LA042289-0040 0 +301 0 LA042390-0099 0 +301 0 LA042690-0169 0 +301 0 LA042890-0015 0 +301 0 LA042890-0151 0 +301 0 LA042989-0116 0 +301 0 LA043089-0169 0 +301 0 LA050189-0063 0 +301 0 LA050489-0093 0 +301 0 LA050590-0027 0 +301 0 LA050590-0048 0 +301 0 LA050690-0134 1 +301 0 LA050690-0145 0 +301 0 LA050690-0149 0 +301 0 LA050789-0006 1 +301 0 LA050789-0007 1 +301 0 LA050990-0077 0 +301 0 LA050990-0078 0 +301 0 LA050990-0116 0 +301 0 LA051190-0064 0 +301 0 LA051389-0039 1 +301 0 LA051390-0175 1 +301 0 LA051590-0064 0 +301 0 LA051690-0108 1 +301 0 LA052090-0088 0 +301 0 LA052090-0143 1 +301 0 LA052189-0123 0 +301 0 LA052190-0021 0 +301 0 LA052190-0064 1 +301 0 LA052289-0047 0 +301 0 LA052490-0139 0 +301 0 LA052690-0037 0 +301 0 LA052690-0142 0 +301 0 LA052890-0046 0 +301 0 LA052990-0018 0 +301 0 LA053089-0075 0 +301 0 LA053190-0175 0 +301 0 LA060489-0196 0 +301 0 LA060490-0021 0 +301 0 LA060490-0122 0 +301 0 LA060590-0010 0 +301 0 LA060790-0159 0 +301 0 LA060990-0077 0 +301 0 LA061189-0173 0 +301 0 LA061190-0085 0 +301 0 LA061190-0112 0 +301 0 LA061289-0051 0 +301 0 LA061290-0117 0 +301 0 LA061389-0060 0 +301 0 LA061390-0056 0 +301 0 LA061490-0229 0 +301 0 LA061590-0010 0 +301 0 LA061690-0021 0 +301 0 LA061690-0030 0 +301 0 LA061789-0027 0 +301 0 LA061789-0028 0 +301 0 LA061790-0205 0 +301 0 LA062090-0094 0 +301 0 LA062189-0012 0 +301 0 LA062189-0052 0 +301 0 LA062189-0067 0 +301 0 LA062390-0041 0 +301 0 LA062690-0041 0 +301 0 LA062890-0206 0 +301 0 LA062989-0196 1 +301 0 LA063089-0061 1 +301 0 LA070289-0147 0 +301 0 LA070289-0171 1 +301 0 LA070290-0003 0 +301 0 LA070290-0051 0 +301 0 LA070590-0016 0 +301 0 LA070590-0097 0 +301 0 LA070689-0122 1 +301 0 LA070690-0095 0 +301 0 LA070790-0061 0 +301 0 LA070890-0079 0 +301 0 LA070890-0080 0 +301 0 LA071089-0065 0 +301 0 LA071190-0028 0 +301 0 LA071290-0123 1 +301 0 LA071489-0020 1 +301 0 LA071490-0024 0 +301 0 LA071690-0047 1 +301 0 LA071889-0026 0 +301 0 LA071990-0150 0 +301 0 LA071990-0165 0 +301 0 LA072090-0146 0 +301 0 LA072090-0147 0 +301 0 LA072490-0033 0 +301 0 LA072590-0115 0 +301 0 LA072689-0016 0 +301 0 LA072789-0050 0 +301 0 LA072890-0052 0 +301 0 LA073189-0043 0 +301 0 LA080489-0020 0 +301 0 LA080590-0195 0 +301 0 LA080689-0093 0 +301 0 LA080889-0098 0 +301 0 LA080890-0044 0 +301 0 LA080989-0129 0 +301 0 LA080990-0216 0 +301 0 LA081089-0167 1 +301 0 LA081190-0051 0 +301 0 LA081190-0108 0 +301 0 LA081589-0042 0 +301 0 LA081690-0102 0 +301 0 LA081789-0093 1 +301 0 LA081790-0083 0 +301 0 LA081889-0147 1 +301 0 LA081989-0048 0 +301 0 LA081990-0158 0 +301 0 LA082089-0163 0 +301 0 LA082190-0014 0 +301 0 LA082190-0015 0 +301 0 LA082389-0028 0 +301 0 LA082389-0039 1 +301 0 LA082390-0176 0 +301 0 LA082489-0035 0 +301 0 LA082589-0079 1 +301 0 LA082589-0090 1 +301 0 LA082590-0019 0 +301 0 LA082689-0044 1 +301 0 LA082689-0054 1 +301 0 LA082789-0018 1 +301 0 LA082790-0022 1 +301 0 LA082889-0047 1 +301 0 LA082889-0056 1 +301 0 LA082989-0074 0 +301 0 LA083089-0017 1 +301 0 LA083089-0069 1 +301 0 LA083089-0072 1 +301 0 LA090189-0018 0 +301 0 LA090389-0097 0 +301 0 LA090389-0100 0 +301 0 LA090689-0015 0 +301 0 LA090689-0125 1 +301 0 LA090689-0130 1 +301 0 LA090690-0234 0 +301 0 LA090989-0075 1 +301 0 LA091089-0170 0 +301 0 LA091089-0172 0 +301 0 LA091089-0187 0 +301 0 LA091090-0038 0 +301 0 LA091189-0110 1 +301 0 LA091190-0096 0 +301 0 LA091190-0102 0 +301 0 LA091289-0135 1 +301 0 LA091289-0136 1 +301 0 LA091389-0053 1 +301 0 LA091390-0046 0 +301 0 LA091589-0045 1 +301 0 LA091689-0028 0 +301 0 LA092089-0143 1 +301 0 LA092090-0092 0 +301 0 LA092290-0094 0 +301 0 LA092489-0121 0 +301 0 LA092590-0019 0 +301 0 LA092789-0047 0 +301 0 LA092790-0128 0 +301 0 LA092989-0108 1 +301 0 LA100189-0205 0 +301 0 LA100289-0104 1 +301 0 LA100290-0067 0 +301 0 LA100390-0069 0 +301 0 LA100589-0136 1 +301 0 LA100789-0127 0 +301 0 LA100790-0068 0 +301 0 LA100989-0008 0 +301 0 LA101289-0126 1 +301 0 LA101389-0091 0 +301 0 LA101390-0083 0 +301 0 LA101589-0169 0 +301 0 LA101589-0174 1 +301 0 LA101590-0071 0 +301 0 LA101689-0002 0 +301 0 LA101789-0155 1 +301 0 LA102089-0025 1 +301 0 LA102289-0170 1 +301 0 LA102290-0116 0 +301 0 LA110990-0184 0 +301 0 LA112089-0024 0 +301 0 LA112489-0069 1 +301 0 LA112489-0141 0 +301 0 LA112489-0142 1 +301 0 LA112490-0089 0 +301 0 LA121089-0089 0 +301 0 LA121289-0096 1 +301 0 LA121389-0124 1 +301 0 LA121490-0027 1 +301 0 LA121589-0007 1 +301 0 LA121589-0184 0 +301 0 LA121689-0077 0 +301 0 LA121890-0057 0 +301 0 LA121890-0079 0 +301 0 LA121890-0086 0 +301 0 LA121990-0123 1 +301 0 LA122089-0109 0 +301 0 LA122389-0069 1 +301 0 LA122789-0009 0 +301 0 LA122889-0124 0 +301 0 LA123090-0148 0 +302 0 CR93E-10071 0 +302 0 CR93E-10276 0 +302 0 CR93E-10279 0 +302 0 CR93E-10462 0 +302 0 CR93E-10606 0 +302 0 CR93E-10799 0 +302 0 CR93E-11100 0 +302 0 CR93E-1648 0 +302 0 CR93E-1838 0 +302 0 CR93E-2180 3 +302 0 CR93E-2225 0 +302 0 CR93E-2236 0 +302 0 CR93E-2512 0 +302 0 CR93E-2563 0 +302 0 CR93E-2650 3 +302 0 CR93E-2849 0 +302 0 CR93E-307 0 +302 0 CR93E-3096 3 +302 0 CR93E-3616 0 +302 0 CR93E-3822 3 +302 0 CR93E-4208 0 +302 0 CR93E-4209 0 +302 0 CR93E-4517 0 +302 0 CR93E-4941 0 +302 0 CR93E-5211 0 +302 0 CR93E-5666 3 +302 0 CR93E-5775 3 +302 0 CR93E-5895 0 +302 0 CR93E-5954 0 +302 0 CR93E-6191 0 +302 0 CR93E-6321 0 +302 0 CR93E-6675 0 +302 0 CR93E-6901 3 +302 0 CR93E-7034 3 +302 0 CR93E-7062 0 +302 0 CR93E-7403 0 +302 0 CR93E-7619 0 +302 0 CR93E-7678 0 +302 0 CR93E-8012 0 +302 0 CR93E-8421 0 +302 0 CR93E-8424 0 +302 0 CR93E-8491 0 +302 0 CR93E-8701 0 +302 0 CR93E-8836 0 +302 0 CR93E-9545 3 +302 0 CR93E-9618 0 +302 0 CR93H-10042 0 +302 0 CR93H-10104 0 +302 0 CR93H-10242 0 +302 0 CR93H-10256 0 +302 0 CR93H-10308 0 +302 0 CR93H-10374 0 +302 0 CR93H-10402 0 +302 0 CR93H-10601 0 +302 0 CR93H-10602 0 +302 0 CR93H-10681 0 +302 0 CR93H-10921 0 +302 0 CR93H-1097 0 +302 0 CR93H-10989 0 +302 0 CR93H-11033 0 +302 0 CR93H-11034 0 +302 0 CR93H-11119 0 +302 0 CR93H-11521 0 +302 0 CR93H-11586 0 +302 0 CR93H-1159 0 +302 0 CR93H-11806 0 +302 0 CR93H-11894 0 +302 0 CR93H-11998 0 +302 0 CR93H-12017 0 +302 0 CR93H-12150 0 +302 0 CR93H-12168 0 +302 0 CR93H-12181 0 +302 0 CR93H-12217 0 +302 0 CR93H-12224 0 +302 0 CR93H-12498 0 +302 0 CR93H-12820 0 +302 0 CR93H-12830 0 +302 0 CR93H-12874 0 +302 0 CR93H-1298 0 +302 0 CR93H-12983 0 +302 0 CR93H-12988 0 +302 0 CR93H-13167 0 +302 0 CR93H-13205 0 +302 0 CR93H-13232 0 +302 0 CR93H-13263 0 +302 0 CR93H-13335 0 +302 0 CR93H-13506 0 +302 0 CR93H-13521 0 +302 0 CR93H-13595 0 +302 0 CR93H-13600 3 +302 0 CR93H-13615 0 +302 0 CR93H-13680 0 +302 0 CR93H-13927 0 +302 0 CR93H-14046 0 +302 0 CR93H-14072 0 +302 0 CR93H-14128 0 +302 0 CR93H-14130 0 +302 0 CR93H-14306 0 +302 0 CR93H-14325 0 +302 0 CR93H-14388 0 +302 0 CR93H-14392 0 +302 0 CR93H-14469 0 +302 0 CR93H-14591 0 +302 0 CR93H-14791 0 +302 0 CR93H-15024 0 +302 0 CR93H-15105 0 +302 0 CR93H-15119 0 +302 0 CR93H-15121 3 +302 0 CR93H-1532 0 +302 0 CR93H-15405 0 +302 0 CR93H-15424 0 +302 0 CR93H-15453 0 +302 0 CR93H-15477 0 +302 0 CR93H-15587 0 +302 0 CR93H-15608 0 +302 0 CR93H-15615 0 +302 0 CR93H-15727 3 +302 0 CR93H-15875 0 +302 0 CR93H-15950 0 +302 0 CR93H-16077 0 +302 0 CR93H-16128 0 +302 0 CR93H-16369 0 +302 0 CR93H-1639 0 +302 0 CR93H-1712 0 +302 0 CR93H-1769 0 +302 0 CR93H-185 0 +302 0 CR93H-2429 0 +302 0 CR93H-2431 0 +302 0 CR93H-2707 0 +302 0 CR93H-3144 0 +302 0 CR93H-3262 0 +302 0 CR93H-3295 0 +302 0 CR93H-3444 0 +302 0 CR93H-3459 0 +302 0 CR93H-3813 0 +302 0 CR93H-4042 0 +302 0 CR93H-416 0 +302 0 CR93H-4420 0 +302 0 CR93H-4489 0 +302 0 CR93H-4586 0 +302 0 CR93H-4635 0 +302 0 CR93H-4771 0 +302 0 CR93H-4879 0 +302 0 CR93H-4889 0 +302 0 CR93H-4922 0 +302 0 CR93H-5017 0 +302 0 CR93H-5053 0 +302 0 CR93H-5121 0 +302 0 CR93H-5189 0 +302 0 CR93H-5255 0 +302 0 CR93H-5554 0 +302 0 CR93H-5568 0 +302 0 CR93H-56 0 +302 0 CR93H-6221 0 +302 0 CR93H-6347 0 +302 0 CR93H-6422 0 +302 0 CR93H-6567 0 +302 0 CR93H-6621 0 +302 0 CR93H-6754 0 +302 0 CR93H-6912 0 +302 0 CR93H-7012 0 +302 0 CR93H-7013 0 +302 0 CR93H-7055 0 +302 0 CR93H-735 0 +302 0 CR93H-742 0 +302 0 CR93H-7554 0 +302 0 CR93H-7557 0 +302 0 CR93H-7870 0 +302 0 CR93H-7875 0 +302 0 CR93H-8042 0 +302 0 CR93H-8080 0 +302 0 CR93H-8122 0 +302 0 CR93H-8245 0 +302 0 CR93H-8248 0 +302 0 CR93H-8249 0 +302 0 CR93H-8460 0 +302 0 CR93H-8461 0 +302 0 CR93H-8590 0 +302 0 CR93H-8741 0 +302 0 CR93H-8789 0 +302 0 CR93H-8928 0 +302 0 CR93H-9009 0 +302 0 CR93H-9350 0 +302 0 CR93H-9427 0 +302 0 CR93H-9548 0 +302 0 CR93H-955 0 +302 0 CR93H-9576 0 +302 0 FBIS3-10615 0 +302 0 FBIS3-10855 0 +302 0 FBIS3-11418 0 +302 0 FBIS3-14832 0 +302 0 FBIS3-20548 3 +302 0 FBIS3-20810 0 +302 0 FBIS3-21356 0 +302 0 FBIS3-21404 0 +302 0 FBIS3-22119 0 +302 0 FBIS3-22470 0 +302 0 FBIS3-22471 0 +302 0 FBIS3-22476 0 +302 0 FBIS3-22477 0 +302 0 FBIS3-22480 0 +302 0 FBIS3-22482 0 +302 0 FBIS3-22486 0 +302 0 FBIS3-22487 0 +302 0 FBIS3-22508 0 +302 0 FBIS3-22523 0 +302 0 FBIS3-22525 0 +302 0 FBIS3-22535 0 +302 0 FBIS3-22539 3 +302 0 FBIS3-22545 0 +302 0 FBIS3-22547 0 +302 0 FBIS3-22559 0 +302 0 FBIS3-22560 3 +302 0 FBIS3-22570 0 +302 0 FBIS3-22581 0 +302 0 FBIS3-22589 3 +302 0 FBIS3-22590 0 +302 0 FBIS3-22591 0 +302 0 FBIS3-22592 0 +302 0 FBIS3-22593 0 +302 0 FBIS3-22597 0 +302 0 FBIS3-22598 0 +302 0 FBIS3-22600 0 +302 0 FBIS3-22633 0 +302 0 FBIS3-22642 0 +302 0 FBIS3-22647 0 +302 0 FBIS3-22679 0 +302 0 FBIS3-22680 0 +302 0 FBIS3-22681 0 +302 0 FBIS3-22693 0 +302 0 FBIS3-22695 0 +302 0 FBIS3-22696 0 +302 0 FBIS3-22697 0 +302 0 FBIS3-22698 0 +302 0 FBIS3-22699 0 +302 0 FBIS3-22700 0 +302 0 FBIS3-22702 0 +302 0 FBIS3-22706 0 +302 0 FBIS3-23 0 +302 0 FBIS3-23561 0 +302 0 FBIS3-23823 0 +302 0 FBIS3-23945 0 +302 0 FBIS3-23947 0 +302 0 FBIS3-24469 0 +302 0 FBIS3-24678 0 +302 0 FBIS3-2516 0 +302 0 FBIS3-26593 3 +302 0 FBIS3-27468 0 +302 0 FBIS3-2798 0 +302 0 FBIS3-28911 0 +302 0 FBIS3-29180 0 +302 0 FBIS3-30086 0 +302 0 FBIS3-34497 0 +302 0 FBIS3-3565 0 +302 0 FBIS3-3580 0 +302 0 FBIS3-36078 0 +302 0 FBIS3-37944 0 +302 0 FBIS3-37947 0 +302 0 FBIS3-39365 0 +302 0 FBIS3-40190 0 +302 0 FBIS3-41666 0 +302 0 FBIS3-41671 0 +302 0 FBIS3-41672 3 +302 0 FBIS3-41673 0 +302 0 FBIS3-41676 0 +302 0 FBIS3-41681 0 +302 0 FBIS3-41698 0 +302 0 FBIS3-41710 0 +302 0 FBIS3-41713 0 +302 0 FBIS3-41724 3 +302 0 FBIS3-41734 0 +302 0 FBIS3-41739 0 +302 0 FBIS3-41761 0 +302 0 FBIS3-41790 0 +302 0 FBIS3-41809 0 +302 0 FBIS3-41815 0 +302 0 FBIS3-4209 0 +302 0 FBIS3-42399 0 +302 0 FBIS3-42469 0 +302 0 FBIS3-42726 0 +302 0 FBIS3-43132 0 +302 0 FBIS3-43186 0 +302 0 FBIS3-43595 0 +302 0 FBIS3-43781 0 +302 0 FBIS3-44530 0 +302 0 FBIS3-44712 0 +302 0 FBIS3-45822 0 +302 0 FBIS3-46348 0 +302 0 FBIS3-46614 0 +302 0 FBIS3-5103 0 +302 0 FBIS3-58 0 +302 0 FBIS3-60336 0 +302 0 FBIS3-60342 0 +302 0 FBIS3-60401 0 +302 0 FBIS3-60403 3 +302 0 FBIS3-60404 3 +302 0 FBIS3-60405 3 +302 0 FBIS3-60419 3 +302 0 FBIS3-60422 0 +302 0 FBIS3-60440 0 +302 0 FBIS3-60444 0 +302 0 FBIS3-60448 0 +302 0 FBIS3-60450 3 +302 0 FBIS3-60454 0 +302 0 FBIS3-60462 0 +302 0 FBIS3-60466 0 +302 0 FBIS3-60503 3 +302 0 FBIS3-60510 3 +302 0 FBIS3-60513 0 +302 0 FBIS3-60514 0 +302 0 FBIS3-60529 0 +302 0 FBIS3-60546 0 +302 0 FBIS3-60553 0 +302 0 FBIS3-60559 0 +302 0 FBIS3-60560 0 +302 0 FBIS3-60561 3 +302 0 FBIS3-60562 3 +302 0 FBIS3-60563 0 +302 0 FBIS3-60564 0 +302 0 FBIS3-60565 0 +302 0 FBIS3-60575 0 +302 0 FBIS3-61373 3 +302 0 FBIS3-6884 0 +302 0 FBIS3-9904 3 +302 0 FBIS4-10721 0 +302 0 FBIS4-13889 0 +302 0 FBIS4-1627 0 +302 0 FBIS4-16647 0 +302 0 FBIS4-1860 0 +302 0 FBIS4-1866 0 +302 0 FBIS4-19 0 +302 0 FBIS4-19733 0 +302 0 FBIS4-20472 0 +302 0 FBIS4-20504 0 +302 0 FBIS4-20697 0 +302 0 FBIS4-2128 0 +302 0 FBIS4-2204 0 +302 0 FBIS4-22716 3 +302 0 FBIS4-22779 0 +302 0 FBIS4-22945 0 +302 0 FBIS4-23089 0 +302 0 FBIS4-23131 0 +302 0 FBIS4-2439 0 +302 0 FBIS4-24438 3 +302 0 FBIS4-26718 0 +302 0 FBIS4-27941 0 +302 0 FBIS4-2880 3 +302 0 FBIS4-29 0 +302 0 FBIS4-30023 0 +302 0 FBIS4-30637 3 +302 0 FBIS4-31787 0 +302 0 FBIS4-32883 0 +302 0 FBIS4-33063 3 +302 0 FBIS4-33295 0 +302 0 FBIS4-33435 3 +302 0 FBIS4-33740 0 +302 0 FBIS4-34379 0 +302 0 FBIS4-38133 3 +302 0 FBIS4-40426 0 +302 0 FBIS4-4067 0 +302 0 FBIS4-42 0 +302 0 FBIS4-4241 3 +302 0 FBIS4-43829 0 +302 0 FBIS4-43830 0 +302 0 FBIS4-43893 0 +302 0 FBIS4-45490 0 +302 0 FBIS4-45613 3 +302 0 FBIS4-45832 0 +302 0 FBIS4-45833 0 +302 0 FBIS4-45834 0 +302 0 FBIS4-45842 0 +302 0 FBIS4-45844 3 +302 0 FBIS4-45884 0 +302 0 FBIS4-46469 0 +302 0 FBIS4-46649 0 +302 0 FBIS4-46923 0 +302 0 FBIS4-47552 0 +302 0 FBIS4-47588 0 +302 0 FBIS4-49021 0 +302 0 FBIS4-49245 0 +302 0 FBIS4-50133 0 +302 0 FBIS4-50706 0 +302 0 FBIS4-50850 0 +302 0 FBIS4-50959 0 +302 0 FBIS4-52090 0 +302 0 FBIS4-5325 3 +302 0 FBIS4-55803 0 +302 0 FBIS4-57220 3 +302 0 FBIS4-58281 0 +302 0 FBIS4-60762 0 +302 0 FBIS4-61029 0 +302 0 FBIS4-62223 0 +302 0 FBIS4-66030 0 +302 0 FBIS4-66069 0 +302 0 FBIS4-66161 0 +302 0 FBIS4-66185 0 +302 0 FBIS4-67533 0 +302 0 FBIS4-67599 0 +302 0 FBIS4-67611 0 +302 0 FBIS4-67613 0 +302 0 FBIS4-67614 0 +302 0 FBIS4-67618 0 +302 0 FBIS4-67646 0 +302 0 FBIS4-67647 0 +302 0 FBIS4-67648 0 +302 0 FBIS4-67649 0 +302 0 FBIS4-67650 0 +302 0 FBIS4-67651 0 +302 0 FBIS4-67698 0 +302 0 FBIS4-67699 0 +302 0 FBIS4-67701 3 +302 0 FBIS4-67707 3 +302 0 FBIS4-67720 3 +302 0 FBIS4-68893 0 +302 0 FR940104-0-00034 0 +302 0 FR940126-2-00100 0 +302 0 FR940126-2-00101 0 +302 0 FR940126-2-00102 0 +302 0 FR940126-2-00103 0 +302 0 FR940126-2-00104 0 +302 0 FR940126-2-00105 0 +302 0 FR940126-2-00106 3 +302 0 FR940126-2-00107 0 +302 0 FR940126-2-00108 0 +302 0 FR940202-2-00112 0 +302 0 FR940202-2-00114 0 +302 0 FR940202-2-00133 0 +302 0 FR940202-2-00140 0 +302 0 FR940202-2-00143 0 +302 0 FR940203-0-00084 0 +302 0 FR940207-2-00089 3 +302 0 FR940314-1-00041 0 +302 0 FR940317-2-00076 0 +302 0 FR940404-2-00093 0 +302 0 FR940406-0-00190 0 +302 0 FR940413-2-00068 0 +302 0 FR940414-0-00029 0 +302 0 FR940419-2-00062 0 +302 0 FR940425-2-00078 3 +302 0 FR940425-2-00079 3 +302 0 FR940425-2-00080 3 +302 0 FR940425-2-00081 0 +302 0 FR940429-2-00041 0 +302 0 FR940505-2-00041 0 +302 0 FR940513-2-00003 0 +302 0 FR940513-2-00096 0 +302 0 FR940527-1-00163 0 +302 0 FR940527-2-00071 0 +302 0 FR940602-1-00023 0 +302 0 FR940602-2-00077 0 +302 0 FR940603-2-00060 3 +302 0 FR940620-2-00115 0 +302 0 FR940620-2-00116 0 +302 0 FR940620-2-00117 3 +302 0 FR940620-2-00118 0 +302 0 FR940620-2-00119 0 +302 0 FR940620-2-00120 0 +302 0 FR940620-2-00121 0 +302 0 FR940620-2-00122 0 +302 0 FR940620-2-00123 0 +302 0 FR940628-1-00016 0 +302 0 FR940628-2-00002 0 +302 0 FR940705-2-00186 0 +302 0 FR940706-2-00076 0 +302 0 FR940713-2-00061 0 +302 0 FR940713-2-00062 0 +302 0 FR940719-2-00089 0 +302 0 FR940721-2-00030 0 +302 0 FR940721-2-00045 0 +302 0 FR940721-2-00046 0 +302 0 FR940725-0-00049 0 +302 0 FR940728-2-00084 0 +302 0 FR940728-2-00089 0 +302 0 FR940804-2-00088 0 +302 0 FR940817-2-00237 0 +302 0 FR940822-0-00027 0 +302 0 FR940822-0-00067 0 +302 0 FR940825-2-00076 0 +302 0 FR940825-2-00078 0 +302 0 FR940831-2-00064 0 +302 0 FR940902-1-00048 0 +302 0 FR940922-2-00127 0 +302 0 FR940928-2-00043 0 +302 0 FR941003-2-00031 0 +302 0 FR941004-2-00099 0 +302 0 FR941006-1-00005 0 +302 0 FR941006-1-00006 0 +302 0 FR941006-1-00007 0 +302 0 FR941012-2-00078 0 +302 0 FR941013-2-00056 0 +302 0 FR941027-1-00030 0 +302 0 FR941102-1-00119 0 +302 0 FR941103-2-00086 0 +302 0 FR941107-2-00231 0 +302 0 FR941107-2-00232 0 +302 0 FR941107-2-00233 0 +302 0 FR941122-2-00060 0 +302 0 FR941130-0-00122 0 +302 0 FR941202-2-00007 0 +302 0 FR941206-1-00134 0 +302 0 FR941206-2-00055 0 +302 0 FR941213-0-00084 0 +302 0 FR941213-2-00039 0 +302 0 FT911-1088 0 +302 0 FT911-1471 0 +302 0 FT911-2081 0 +302 0 FT911-2372 0 +302 0 FT911-241 0 +302 0 FT911-2589 0 +302 0 FT911-2707 0 +302 0 FT911-2968 0 +302 0 FT911-460 0 +302 0 FT911-4947 0 +302 0 FT911-5041 0 +302 0 FT911-624 0 +302 0 FT911-679 0 +302 0 FT911-870 0 +302 0 FT921-10340 0 +302 0 FT921-10626 0 +302 0 FT921-10742 0 +302 0 FT921-10750 0 +302 0 FT921-10807 0 +302 0 FT921-11140 0 +302 0 FT921-1150 0 +302 0 FT921-1211 0 +302 0 FT921-12227 0 +302 0 FT921-12230 0 +302 0 FT921-12556 0 +302 0 FT921-13207 0 +302 0 FT921-13254 0 +302 0 FT921-13279 0 +302 0 FT921-13530 0 +302 0 FT921-14291 0 +302 0 FT921-14537 3 +302 0 FT921-14986 0 +302 0 FT921-15281 0 +302 0 FT921-15869 0 +302 0 FT921-16061 3 +302 0 FT921-16191 0 +302 0 FT921-16376 0 +302 0 FT921-2350 0 +302 0 FT921-2351 0 +302 0 FT921-3467 0 +302 0 FT921-4 0 +302 0 FT921-4035 0 +302 0 FT921-4317 0 +302 0 FT921-4540 0 +302 0 FT921-485 0 +302 0 FT921-5034 0 +302 0 FT921-5614 0 +302 0 FT921-5766 0 +302 0 FT921-5928 0 +302 0 FT921-7582 0 +302 0 FT921-7648 0 +302 0 FT921-7765 3 +302 0 FT921-7784 0 +302 0 FT921-8313 0 +302 0 FT921-8328 0 +302 0 FT921-8507 0 +302 0 FT921-9310 0 +302 0 FT921-953 0 +302 0 FT921-956 0 +302 0 FT921-9578 0 +302 0 FT922-10446 0 +302 0 FT922-11044 0 +302 0 FT922-12505 0 +302 0 FT922-12737 0 +302 0 FT922-13742 0 +302 0 FT922-14371 0 +302 0 FT922-1674 0 +302 0 FT922-1893 0 +302 0 FT922-220 0 +302 0 FT922-4529 0 +302 0 FT922-4560 0 +302 0 FT922-5004 0 +302 0 FT922-6652 0 +302 0 FT922-7819 0 +302 0 FT922-8619 0 +302 0 FT922-8779 0 +302 0 FT922-884 0 +302 0 FT922-9023 0 +302 0 FT922-9487 0 +302 0 FT922-9650 0 +302 0 FT923-10404 0 +302 0 FT923-1076 0 +302 0 FT923-11035 0 +302 0 FT923-11081 0 +302 0 FT923-11184 0 +302 0 FT923-11350 0 +302 0 FT923-11474 0 +302 0 FT923-11885 0 +302 0 FT923-12051 0 +302 0 FT923-12060 0 +302 0 FT923-12277 0 +302 0 FT923-14971 0 +302 0 FT923-15575 0 +302 0 FT923-1988 0 +302 0 FT923-2286 0 +302 0 FT923-2399 0 +302 0 FT923-3060 0 +302 0 FT923-4273 0 +302 0 FT923-5927 0 +302 0 FT923-6011 0 +302 0 FT923-6887 0 +302 0 FT923-7657 0 +302 0 FT923-8033 0 +302 0 FT923-8100 0 +302 0 FT923-8415 0 +302 0 FT923-8509 0 +302 0 FT923-8974 0 +302 0 FT924-10626 0 +302 0 FT924-10652 3 +302 0 FT924-10987 0 +302 0 FT924-11314 0 +302 0 FT924-11618 0 +302 0 FT924-1254 0 +302 0 FT924-13622 0 +302 0 FT924-14004 0 +302 0 FT924-14826 0 +302 0 FT924-15013 0 +302 0 FT924-1638 0 +302 0 FT924-1993 0 +302 0 FT924-2803 0 +302 0 FT924-2958 0 +302 0 FT924-3217 0 +302 0 FT924-3519 0 +302 0 FT924-3628 0 +302 0 FT924-4528 0 +302 0 FT924-4737 0 +302 0 FT924-5037 0 +302 0 FT924-5353 0 +302 0 FT924-5517 0 +302 0 FT924-6467 0 +302 0 FT924-7956 0 +302 0 FT924-8024 0 +302 0 FT924-8515 0 +302 0 FT924-9161 0 +302 0 FT924-9431 0 +302 0 FT931-1039 0 +302 0 FT931-11085 3 +302 0 FT931-11767 0 +302 0 FT931-11857 0 +302 0 FT931-12577 0 +302 0 FT931-12903 0 +302 0 FT931-13033 0 +302 0 FT931-13300 0 +302 0 FT931-13512 0 +302 0 FT931-14151 0 +302 0 FT931-14647 0 +302 0 FT931-15527 0 +302 0 FT931-15924 0 +302 0 FT931-16133 0 +302 0 FT931-17149 0 +302 0 FT931-2526 0 +302 0 FT931-3052 0 +302 0 FT931-3883 0 +302 0 FT931-5665 0 +302 0 FT931-5795 0 +302 0 FT931-5859 0 +302 0 FT931-652 0 +302 0 FT931-7060 3 +302 0 FT931-7525 0 +302 0 FT931-8050 0 +302 0 FT931-8993 0 +302 0 FT931-9496 0 +302 0 FT931-9886 0 +302 0 FT932-10099 0 +302 0 FT932-10160 0 +302 0 FT932-10547 0 +302 0 FT932-13227 0 +302 0 FT932-13552 0 +302 0 FT932-14090 0 +302 0 FT932-14875 0 +302 0 FT932-15013 0 +302 0 FT932-15388 0 +302 0 FT932-16160 0 +302 0 FT932-16821 0 +302 0 FT932-16878 0 +302 0 FT932-1821 0 +302 0 FT932-2282 0 +302 0 FT932-2288 0 +302 0 FT932-2515 0 +302 0 FT932-2516 0 +302 0 FT932-3794 0 +302 0 FT932-3963 0 +302 0 FT932-4292 0 +302 0 FT932-4317 0 +302 0 FT932-4441 0 +302 0 FT932-4485 3 +302 0 FT932-4585 0 +302 0 FT932-4805 0 +302 0 FT932-5288 0 +302 0 FT932-5508 0 +302 0 FT932-7262 0 +302 0 FT932-769 0 +302 0 FT932-7800 0 +302 0 FT932-7948 0 +302 0 FT932-7977 0 +302 0 FT932-9367 0 +302 0 FT932-9696 0 +302 0 FT933-11998 0 +302 0 FT933-12022 0 +302 0 FT933-1235 0 +302 0 FT933-13206 0 +302 0 FT933-13870 0 +302 0 FT933-14295 0 +302 0 FT933-14910 0 +302 0 FT933-15797 0 +302 0 FT933-15814 0 +302 0 FT933-15869 0 +302 0 FT933-16536 0 +302 0 FT933-16948 0 +302 0 FT933-2728 0 +302 0 FT933-3434 0 +302 0 FT933-3705 0 +302 0 FT933-4186 0 +302 0 FT933-4445 0 +302 0 FT933-4707 0 +302 0 FT933-528 0 +302 0 FT933-5736 0 +302 0 FT933-5756 0 +302 0 FT933-6719 0 +302 0 FT933-6895 0 +302 0 FT933-7164 0 +302 0 FT933-7438 0 +302 0 FT933-7608 0 +302 0 FT933-7908 0 +302 0 FT933-7926 0 +302 0 FT933-8272 0 +302 0 FT933-8849 0 +302 0 FT933-8865 0 +302 0 FT933-9041 0 +302 0 FT933-9555 0 +302 0 FT934-10458 0 +302 0 FT934-11977 0 +302 0 FT934-1206 3 +302 0 FT934-1290 0 +302 0 FT934-14536 0 +302 0 FT934-17471 0 +302 0 FT934-3190 0 +302 0 FT934-4508 0 +302 0 FT934-5058 0 +302 0 FT934-5207 0 +302 0 FT934-576 0 +302 0 FT934-5915 0 +302 0 FT934-7018 0 +302 0 FT934-8210 0 +302 0 FT934-9726 0 +302 0 FT934-9860 0 +302 0 FT941-10023 0 +302 0 FT941-12410 3 +302 0 FT941-12426 0 +302 0 FT941-13315 0 +302 0 FT941-139 0 +302 0 FT941-14380 0 +302 0 FT941-1494 0 +302 0 FT941-15224 0 +302 0 FT941-1547 0 +302 0 FT941-157 0 +302 0 FT941-15832 0 +302 0 FT941-15975 0 +302 0 FT941-16404 0 +302 0 FT941-16414 0 +302 0 FT941-1656 0 +302 0 FT941-3236 0 +302 0 FT941-4398 0 +302 0 FT941-5519 0 +302 0 FT941-8037 0 +302 0 FT941-830 0 +302 0 FT941-9456 0 +302 0 FT941-9662 0 +302 0 FT941-9667 0 +302 0 FT942-10381 0 +302 0 FT942-10460 0 +302 0 FT942-11048 0 +302 0 FT942-11913 0 +302 0 FT942-12479 0 +302 0 FT942-12526 0 +302 0 FT942-13032 0 +302 0 FT942-14203 0 +302 0 FT942-14871 0 +302 0 FT942-14924 0 +302 0 FT942-16178 0 +302 0 FT942-16294 0 +302 0 FT942-16430 0 +302 0 FT942-16780 0 +302 0 FT942-17260 0 +302 0 FT942-17527 0 +302 0 FT942-1963 0 +302 0 FT942-2228 0 +302 0 FT942-3396 0 +302 0 FT942-4193 0 +302 0 FT942-4919 0 +302 0 FT942-5484 0 +302 0 FT942-5975 0 +302 0 FT942-6115 0 +302 0 FT942-7389 0 +302 0 FT942-7603 0 +302 0 FT942-9189 0 +302 0 FT942-9431 0 +302 0 FT943-1002 0 +302 0 FT943-10062 0 +302 0 FT943-10078 0 +302 0 FT943-11927 0 +302 0 FT943-12041 0 +302 0 FT943-12755 0 +302 0 FT943-13379 0 +302 0 FT943-14080 0 +302 0 FT943-14403 0 +302 0 FT943-14543 0 +302 0 FT943-14605 0 +302 0 FT943-14973 0 +302 0 FT943-15331 0 +302 0 FT943-15886 0 +302 0 FT943-16116 0 +302 0 FT943-16211 0 +302 0 FT943-16744 0 +302 0 FT943-1828 0 +302 0 FT943-208 0 +302 0 FT943-2193 0 +302 0 FT943-2776 0 +302 0 FT943-310 0 +302 0 FT943-3268 0 +302 0 FT943-3526 0 +302 0 FT943-4387 0 +302 0 FT943-4843 0 +302 0 FT943-4851 0 +302 0 FT943-500 0 +302 0 FT943-677 0 +302 0 FT943-69 0 +302 0 FT943-760 0 +302 0 FT943-8114 0 +302 0 FT943-8355 0 +302 0 FT943-8860 0 +302 0 FT943-8941 0 +302 0 FT943-9445 0 +302 0 FT943-9699 0 +302 0 FT943-9853 0 +302 0 FT944-10282 0 +302 0 FT944-10542 0 +302 0 FT944-10829 0 +302 0 FT944-10864 0 +302 0 FT944-10925 0 +302 0 FT944-11442 0 +302 0 FT944-11577 0 +302 0 FT944-11878 0 +302 0 FT944-13248 0 +302 0 FT944-14051 0 +302 0 FT944-14098 0 +302 0 FT944-14103 0 +302 0 FT944-14141 0 +302 0 FT944-14564 0 +302 0 FT944-14870 0 +302 0 FT944-15576 0 +302 0 FT944-15805 0 +302 0 FT944-16329 0 +302 0 FT944-17020 0 +302 0 FT944-17070 0 +302 0 FT944-17268 0 +302 0 FT944-18039 0 +302 0 FT944-18407 0 +302 0 FT944-18515 0 +302 0 FT944-18645 0 +302 0 FT944-1991 0 +302 0 FT944-2202 0 +302 0 FT944-2489 3 +302 0 FT944-2592 3 +302 0 FT944-3412 0 +302 0 FT944-3523 0 +302 0 FT944-3755 0 +302 0 FT944-5030 0 +302 0 FT944-567 0 +302 0 FT944-5940 0 +302 0 FT944-6228 0 +302 0 FT944-6607 0 +302 0 FT944-8304 0 +302 0 FT944-8752 0 +302 0 FT944-9658 0 +302 0 FT944-9872 0 +302 0 LA010490-0100 0 +302 0 LA010490-0127 0 +302 0 LA010589-0059 3 +302 0 LA010690-0044 0 +302 0 LA010789-0007 0 +302 0 LA011189-0091 0 +302 0 LA011590-0042 0 +302 0 LA012090-0137 0 +302 0 LA012290-0068 0 +302 0 LA012390-0129 0 +302 0 LA012490-0111 3 +302 0 LA012490-0120 0 +302 0 LA012589-0035 3 +302 0 LA012690-0099 0 +302 0 LA013089-0022 0 +302 0 LA020190-0050 0 +302 0 LA020190-0128 0 +302 0 LA020389-0112 0 +302 0 LA020390-0101 0 +302 0 LA020490-0202 0 +302 0 LA020490-0221 0 +302 0 LA021389-0067 0 +302 0 LA021889-0149 0 +302 0 LA022289-0015 0 +302 0 LA022290-0137 0 +302 0 LA030490-0058 0 +302 0 LA030490-0146 0 +302 0 LA030790-0062 0 +302 0 LA030889-0102 0 +302 0 LA031190-0046 0 +302 0 LA031190-0116 3 +302 0 LA031290-0103 0 +302 0 LA031290-0118 0 +302 0 LA031489-0032 3 +302 0 LA031890-0146 0 +302 0 LA032190-0081 0 +302 0 LA032689-0202 0 +302 0 LA032890-0019 0 +302 0 LA033190-0001 0 +302 0 LA040290-0023 0 +302 0 LA040789-0053 0 +302 0 LA040989-0094 0 +302 0 LA040989-0121 0 +302 0 LA040990-0045 0 +302 0 LA041190-0046 0 +302 0 LA041190-0093 0 +302 0 LA041290-0058 0 +302 0 LA041490-0129 0 +302 0 LA041690-0050 0 +302 0 LA041690-0051 0 +302 0 LA041690-0085 0 +302 0 LA041890-0007 0 +302 0 LA041989-0027 0 +302 0 LA041989-0042 0 +302 0 LA041990-0258 0 +302 0 LA042190-0056 0 +302 0 LA042289-0003 0 +302 0 LA042390-0099 0 +302 0 LA042590-0168 0 +302 0 LA042890-0139 0 +302 0 LA043090-0036 3 +302 0 LA050189-0063 0 +302 0 LA050789-0042 0 +302 0 LA050790-0096 0 +302 0 LA050889-0049 0 +302 0 LA050890-0167 0 +302 0 LA051390-0202 0 +302 0 LA051390-0223 0 +302 0 LA051889-0183 0 +302 0 LA052090-0077 0 +302 0 LA052090-0088 0 +302 0 LA052189-0210 0 +302 0 LA052190-0044 0 +302 0 LA052190-0106 0 +302 0 LA052690-0037 0 +302 0 LA060490-0002 0 +302 0 LA060589-0052 0 +302 0 LA060589-0053 0 +302 0 LA061090-0044 0 +302 0 LA061289-0041 3 +302 0 LA061390-0056 0 +302 0 LA061590-0016 0 +302 0 LA061989-0045 0 +302 0 LA062189-0108 0 +302 0 LA062190-0135 0 +302 0 LA062389-0128 0 +302 0 LA062490-0095 0 +302 0 LA062589-0087 0 +302 0 LA062590-0046 0 +302 0 LA062789-0077 0 +302 0 LA062990-0033 0 +302 0 LA070289-0159 0 +302 0 LA070290-0051 0 +302 0 LA070789-0056 0 +302 0 LA070890-0222 0 +302 0 LA071290-0154 0 +302 0 LA071590-0110 0 +302 0 LA071989-0061 0 +302 0 LA071990-0012 0 +302 0 LA072890-0052 0 +302 0 LA072890-0066 3 +302 0 LA072990-0208 0 +302 0 LA073089-0195 0 +302 0 LA080589-0034 0 +302 0 LA080589-0052 0 +302 0 LA080590-0260 0 +302 0 LA080690-0099 3 +302 0 LA080990-0174 0 +302 0 LA081089-0091 0 +302 0 LA081290-0078 0 +302 0 LA081989-0048 0 +302 0 LA081990-0088 0 +302 0 LA082089-0090 0 +302 0 LA082089-0163 0 +302 0 LA082389-0068 0 +302 0 LA082489-0115 0 +302 0 LA082490-0065 3 +302 0 LA082490-0066 0 +302 0 LA082590-0019 0 +302 0 LA082689-0127 0 +302 0 LA082789-0154 0 +302 0 LA083090-0214 0 +302 0 LA090290-0118 0 +302 0 LA090390-0077 0 +302 0 LA090589-0046 0 +302 0 LA090990-0031 3 +302 0 LA091190-0102 0 +302 0 LA091990-0020 0 +302 0 LA092189-0158 0 +302 0 LA092289-0005 0 +302 0 LA092390-0163 0 +302 0 LA092589-0002 0 +302 0 LA092589-0083 0 +302 0 LA092689-0080 0 +302 0 LA092689-0119 0 +302 0 LA092889-0179 0 +302 0 LA093090-0213 0 +302 0 LA100189-0047 3 +302 0 LA100189-0130 0 +302 0 LA100290-0016 0 +302 0 LA100490-0220 0 +302 0 LA101090-0147 0 +302 0 LA101190-0191 0 +302 0 LA101289-0109 0 +302 0 LA101589-0050 0 +302 0 LA101689-0055 0 +302 0 LA101690-0040 0 +302 0 LA101889-0058 0 +302 0 LA101890-0243 0 +302 0 LA102190-0080 0 +302 0 LA102289-0118 0 +302 0 LA102590-0199 0 +302 0 LA102789-0128 0 +302 0 LA102990-0097 0 +302 0 LA103089-0037 0 +302 0 LA110190-0053 0 +302 0 LA110389-0072 0 +302 0 LA110490-0201 0 +302 0 LA110689-0060 0 +302 0 LA110690-0193 0 +302 0 LA110889-0156 0 +302 0 LA111189-0018 0 +302 0 LA111489-0076 0 +302 0 LA111889-0044 0 +302 0 LA111889-0165 0 +302 0 LA111989-0036 0 +302 0 LA112089-0054 0 +302 0 LA112490-0106 0 +302 0 LA112789-0001 0 +302 0 LA112990-0145 0 +302 0 LA113090-0001 0 +302 0 LA113090-0147 0 +302 0 LA120389-0216 0 +302 0 LA120589-0098 0 +302 0 LA120690-0043 0 +302 0 LA120890-0014 0 +302 0 LA121589-0171 0 +302 0 LA121789-0162 3 +302 0 LA122289-0099 0 +302 0 LA122589-0100 0 +302 0 LA122589-0101 0 +302 0 LA123090-0026 3 +303 0 CR93E-10279 -1 +303 0 CR93E-11182 0 +303 0 CR93E-1856 0 +303 0 CR93E-226 -1 +303 0 CR93E-3833 0 +303 0 CR93E-3843 0 +303 0 CR93E-4217 -1 +303 0 CR93E-4353 0 +303 0 CR93E-436 0 +303 0 CR93E-4360 -1 +303 0 CR93E-5148 0 +303 0 CR93E-5855 0 +303 0 CR93E-6168 -1 +303 0 CR93E-6518 0 +303 0 CR93E-7036 0 +303 0 CR93E-7309 -1 +303 0 CR93E-7797 0 +303 0 CR93E-8695 0 +303 0 CR93E-8718 -1 +303 0 CR93E-9094 0 +303 0 CR93E-996 0 +303 0 CR93H-10104 -1 +303 0 CR93H-10308 0 +303 0 CR93H-10374 0 +303 0 CR93H-10392 -1 +303 0 CR93H-10601 0 +303 0 CR93H-10602 0 +303 0 CR93H-10921 -1 +303 0 CR93H-1097 0 +303 0 CR93H-10982 0 +303 0 CR93H-10989 -1 +303 0 CR93H-11033 0 +303 0 CR93H-11034 0 +303 0 CR93H-11077 -1 +303 0 CR93H-11119 0 +303 0 CR93H-11586 0 +303 0 CR93H-11792 -1 +303 0 CR93H-11806 0 +303 0 CR93H-11894 0 +303 0 CR93H-11998 -1 +303 0 CR93H-12017 0 +303 0 CR93H-12150 0 +303 0 CR93H-12181 -1 +303 0 CR93H-12217 0 +303 0 CR93H-12498 0 +303 0 CR93H-12820 -1 +303 0 CR93H-12874 0 +303 0 CR93H-1298 0 +303 0 CR93H-12988 -1 +303 0 CR93H-13205 0 +303 0 CR93H-13451 0 +303 0 CR93H-13588 -1 +303 0 CR93H-13659 0 +303 0 CR93H-13680 0 +303 0 CR93H-13695 -1 +303 0 CR93H-13849 0 +303 0 CR93H-14128 0 +303 0 CR93H-14130 -1 +303 0 CR93H-14306 0 +303 0 CR93H-14319 0 +303 0 CR93H-14388 -1 +303 0 CR93H-14436 0 +303 0 CR93H-14469 0 +303 0 CR93H-14591 -1 +303 0 CR93H-14794 0 +303 0 CR93H-15024 0 +303 0 CR93H-1509 -1 +303 0 CR93H-15105 0 +303 0 CR93H-15107 0 +303 0 CR93H-15178 -1 +303 0 CR93H-15405 0 +303 0 CR93H-15453 0 +303 0 CR93H-15477 -1 +303 0 CR93H-15587 0 +303 0 CR93H-15608 0 +303 0 CR93H-15615 -1 +303 0 CR93H-15705 0 +303 0 CR93H-15950 0 +303 0 CR93H-16073 -1 +303 0 CR93H-16128 0 +303 0 CR93H-16143 0 +303 0 CR93H-16369 -1 +303 0 CR93H-16456 0 +303 0 CR93H-1712 0 +303 0 CR93H-1788 -1 +303 0 CR93H-185 0 +303 0 CR93H-199 0 +303 0 CR93H-200 -1 +303 0 CR93H-2081 0 +303 0 CR93H-215 0 +303 0 CR93H-2196 -1 +303 0 CR93H-2429 0 +303 0 CR93H-2536 0 +303 0 CR93H-2707 -1 +303 0 CR93H-2841 0 +303 0 CR93H-3079 0 +303 0 CR93H-3375 -1 +303 0 CR93H-3382 0 +303 0 CR93H-3584 0 +303 0 CR93H-3813 -1 +303 0 CR93H-4042 0 +303 0 CR93H-416 0 +303 0 CR93H-4417 -1 +303 0 CR93H-4489 0 +303 0 CR93H-4554 0 +303 0 CR93H-4586 -1 +303 0 CR93H-4631 0 +303 0 CR93H-4635 0 +303 0 CR93H-4771 -1 +303 0 CR93H-4879 0 +303 0 CR93H-4922 0 +303 0 CR93H-5053 -1 +303 0 CR93H-5255 0 +303 0 CR93H-5450 0 +303 0 CR93H-5477 -1 +303 0 CR93H-553 0 +303 0 CR93H-5568 0 +303 0 CR93H-5700 -1 +303 0 CR93H-590 0 +303 0 CR93H-5957 0 +303 0 CR93H-6346 -1 +303 0 CR93H-6377 0 +303 0 CR93H-6422 0 +303 0 CR93H-6567 -1 +303 0 CR93H-6695 0 +303 0 CR93H-6754 0 +303 0 CR93H-6887 -1 +303 0 CR93H-6912 0 +303 0 CR93H-6945 0 +303 0 CR93H-7055 -1 +303 0 CR93H-7101 0 +303 0 CR93H-7133 0 +303 0 CR93H-7314 -1 +303 0 CR93H-735 0 +303 0 CR93H-742 0 +303 0 CR93H-7554 -1 +303 0 CR93H-7557 0 +303 0 CR93H-7612 0 +303 0 CR93H-7785 -1 +303 0 CR93H-7875 0 +303 0 CR93H-8165 0 +303 0 CR93H-8253 -1 +303 0 CR93H-8428 0 +303 0 CR93H-8460 0 +303 0 CR93H-8461 -1 +303 0 CR93H-8591 0 +303 0 CR93H-8928 0 +303 0 CR93H-9350 -1 +303 0 CR93H-9548 0 +303 0 CR93H-955 0 +303 0 CR93H-9835 -1 +303 0 FBIS3-16217 0 +303 0 FBIS3-19093 0 +303 0 FBIS3-21007 -1 +303 0 FBIS3-21026 0 +303 0 FBIS3-23561 0 +303 0 FBIS3-23682 -1 +303 0 FBIS3-23691 0 +303 0 FBIS3-24469 0 +303 0 FBIS3-25018 -1 +303 0 FBIS3-36274 0 +303 0 FBIS3-40348 0 +303 0 FBIS3-40363 -1 +303 0 FBIS3-40388 0 +303 0 FBIS3-40450 0 +303 0 FBIS3-41666 -1 +303 0 FBIS3-42394 0 +303 0 FBIS3-42399 0 +303 0 FBIS3-42547 -1 +303 0 FBIS3-42934 0 +303 0 FBIS3-43160 0 +303 0 FBIS3-43214 -1 +303 0 FBIS3-46244 0 +303 0 FBIS3-53109 0 +303 0 FBIS3-58219 -1 +303 0 FBIS3-59619 0 +303 0 FBIS3-60342 0 +303 0 FBIS3-61020 -1 +303 0 FBIS4-15938 0 +303 0 FBIS4-1647 0 +303 0 FBIS4-19830 -1 +303 0 FBIS4-20472 0 +303 0 FBIS4-20504 0 +303 0 FBIS4-22151 -1 +303 0 FBIS4-22263 0 +303 0 FBIS4-24195 0 +303 0 FBIS4-24435 -1 +303 0 FBIS4-27016 0 +303 0 FBIS4-28354 0 +303 0 FBIS4-2866 -1 +303 0 FBIS4-35855 0 +303 0 FBIS4-39574 0 +303 0 FBIS4-39987 -1 +303 0 FBIS4-42546 0 +303 0 FBIS4-42702 0 +303 0 FBIS4-42922 -1 +303 0 FBIS4-44511 0 +303 0 FBIS4-44743 0 +303 0 FBIS4-46469 -1 +303 0 FBIS4-46649 0 +303 0 FBIS4-46650 0 +303 0 FBIS4-47297 -1 +303 0 FBIS4-47302 0 +303 0 FBIS4-47495 0 +303 0 FBIS4-50545 -1 +303 0 FBIS4-55470 0 +303 0 FBIS4-57001 0 +303 0 FBIS4-65621 -1 +303 0 FBIS4-66185 0 +303 0 FBIS4-66382 0 +303 0 FBIS4-68332 -1 +303 0 FBIS4-68893 0 +303 0 FR940104-0-00032 0 +303 0 FR940111-2-00079 -1 +303 0 FR940124-1-00003 0 +303 0 FR940203-0-00084 0 +303 0 FR940304-2-00134 -1 +303 0 FR940304-2-00135 0 +303 0 FR940325-0-00015 0 +303 0 FR940406-0-00190 -1 +303 0 FR940418-0-00041 0 +303 0 FR940505-1-00005 0 +303 0 FR940526-2-00002 -1 +303 0 FR940602-1-00023 0 +303 0 FR940610-0-00042 0 +303 0 FR940627-0-00014 -1 +303 0 FR940706-2-00126 0 +303 0 FR940802-2-00009 0 +303 0 FR940810-0-00307 -1 +303 0 FR940819-0-00006 0 +303 0 FR940902-1-00048 0 +303 0 FR940906-2-00139 -1 +303 0 FR940919-0-00024 0 +303 0 FR941007-2-00007 0 +303 0 FR941020-2-00110 -1 +303 0 FR941021-0-00167 0 +303 0 FR941021-0-00195 0 +303 0 FR941121-0-00046 -1 +303 0 FR941121-2-00043 0 +303 0 FR941130-0-00122 0 +303 0 FR941205-2-00003 -1 +303 0 FR941206-1-00134 0 +303 0 FR941207-2-00068 0 +303 0 FR941216-2-00132 -1 +303 0 FR941216-2-00137 0 +303 0 FR941221-0-00047 0 +303 0 FT911-1000 -1 +303 0 FT911-216 0 +303 0 FT911-2608 0 +303 0 FT911-3687 -1 +303 0 FT911-4155 0 +303 0 FT911-5046 0 +303 0 FT921-1013 -1 +303 0 FT921-10884 0 +303 0 FT921-11671 0 +303 0 FT921-12379 -1 +303 0 FT921-12584 0 +303 0 FT921-13248 0 +303 0 FT921-1350 -1 +303 0 FT921-13869 0 +303 0 FT921-14183 0 +303 0 FT921-14476 -1 +303 0 FT921-14867 0 +303 0 FT921-15863 0 +303 0 FT921-1594 -1 +303 0 FT921-15951 0 +303 0 FT921-16129 0 +303 0 FT921-16360 -1 +303 0 FT921-16419 0 +303 0 FT921-16457 0 +303 0 FT921-2261 -1 +303 0 FT921-2873 0 +303 0 FT921-3070 0 +303 0 FT921-3071 -1 +303 0 FT921-3359 0 +303 0 FT921-3432 0 +303 0 FT921-3539 -1 +303 0 FT921-3809 0 +303 0 FT921-3842 0 +303 0 FT921-3945 -1 +303 0 FT921-4635 0 +303 0 FT921-503 0 +303 0 FT921-5229 -1 +303 0 FT921-6327 0 +303 0 FT921-7107 2 +303 0 FT921-832 -1 +303 0 FT921-8725 0 +303 0 FT921-8919 0 +303 0 FT921-953 -1 +303 0 FT921-9706 0 +303 0 FT922-10607 0 +303 0 FT922-10990 -1 +303 0 FT922-11472 0 +303 0 FT922-11525 0 +303 0 FT922-11670 -1 +303 0 FT922-11742 0 +303 0 FT922-11929 0 +303 0 FT922-12234 -1 +303 0 FT922-12334 0 +303 0 FT922-12600 0 +303 0 FT922-13008 -1 +303 0 FT922-13421 0 +303 0 FT922-13455 0 +303 0 FT922-13500 -1 +303 0 FT922-13906 0 +303 0 FT922-2930 0 +303 0 FT922-3309 -1 +303 0 FT922-4215 0 +303 0 FT922-4274 0 +303 0 FT922-4956 -1 +303 0 FT922-4967 0 +303 0 FT922-5107 0 +303 0 FT922-6257 -1 +303 0 FT922-7289 0 +303 0 FT922-7904 0 +303 0 FT922-8168 -1 +303 0 FT922-861 0 +303 0 FT922-8790 0 +303 0 FT922-9812 -1 +303 0 FT923-10218 0 +303 0 FT923-10305 0 +303 0 FT923-10351 -1 +303 0 FT923-10517 0 +303 0 FT923-1085 0 +303 0 FT923-10862 -1 +303 0 FT923-10876 0 +303 0 FT923-10939 0 +303 0 FT923-12048 -1 +303 0 FT923-12432 0 +303 0 FT923-1307 0 +303 0 FT923-13137 -1 +303 0 FT923-14461 0 +303 0 FT923-14465 0 +303 0 FT923-14574 -1 +303 0 FT923-15067 0 +303 0 FT923-2353 0 +303 0 FT923-2416 -1 +303 0 FT923-3530 0 +303 0 FT923-3924 0 +303 0 FT923-4482 -1 +303 0 FT923-4525 0 +303 0 FT923-5257 0 +303 0 FT923-5756 -1 +303 0 FT923-7711 0 +303 0 FT923-7860 0 +303 0 FT923-7887 -1 +303 0 FT923-803 0 +303 0 FT923-8916 0 +303 0 FT923-9736 -1 +303 0 FT923-9781 0 +303 0 FT924-10484 0 +303 0 FT924-10903 -1 +303 0 FT924-12943 0 +303 0 FT924-14218 0 +303 0 FT924-14355 -1 +303 0 FT924-14455 0 +303 0 FT924-196 0 +303 0 FT924-2211 -1 +303 0 FT924-2379 0 +303 0 FT924-2406 0 +303 0 FT924-286 -1 +303 0 FT924-2896 0 +303 0 FT924-3328 0 +303 0 FT924-4315 -1 +303 0 FT924-4358 0 +303 0 FT924-4829 0 +303 0 FT924-5286 -1 +303 0 FT924-5310 0 +303 0 FT924-5533 0 +303 0 FT924-5574 -1 +303 0 FT924-6499 0 +303 0 FT924-7392 0 +303 0 FT924-7399 -1 +303 0 FT924-8791 0 +303 0 FT924-8918 0 +303 0 FT931-11101 -1 +303 0 FT931-12968 0 +303 0 FT931-13063 0 +303 0 FT931-13386 -1 +303 0 FT931-13998 0 +303 0 FT931-15496 0 +303 0 FT931-15565 -1 +303 0 FT931-15612 0 +303 0 FT931-15900 0 +303 0 FT931-1860 -1 +303 0 FT931-2231 0 +303 0 FT931-3522 0 +303 0 FT931-3827 -1 +303 0 FT931-4109 0 +303 0 FT931-5157 0 +303 0 FT931-5545 -1 +303 0 FT931-5858 0 +303 0 FT931-6554 2 +303 0 FT931-7240 -1 +303 0 FT931-9388 0 +303 0 FT931-9677 0 +303 0 FT931-9998 -1 +303 0 FT932-12850 0 +303 0 FT932-12979 0 +303 0 FT932-13081 -1 +303 0 FT932-13517 0 +303 0 FT932-13766 0 +303 0 FT932-14482 -1 +303 0 FT932-15782 0 +303 0 FT932-15788 0 +303 0 FT932-16246 -1 +303 0 FT932-16878 0 +303 0 FT932-1696 0 +303 0 FT932-17203 -1 +303 0 FT932-1828 0 +303 0 FT932-3207 0 +303 0 FT932-3291 -1 +303 0 FT932-378 0 +303 0 FT932-4616 0 +303 0 FT932-4803 -1 +303 0 FT932-5036 0 +303 0 FT932-5038 0 +303 0 FT932-5048 -1 +303 0 FT932-6741 0 +303 0 FT932-7107 0 +303 0 FT932-734 -1 +303 0 FT932-868 0 +303 0 FT932-8978 0 +303 0 FT932-9302 -1 +303 0 FT933-10291 0 +303 0 FT933-10324 0 +303 0 FT933-11321 -1 +303 0 FT933-11538 0 +303 0 FT933-11603 0 +303 0 FT933-1184 -1 +303 0 FT933-12486 0 +303 0 FT933-14487 0 +303 0 FT933-14847 -1 +303 0 FT933-14894 0 +303 0 FT933-15354 0 +303 0 FT933-16201 -1 +303 0 FT933-16728 0 +303 0 FT933-16851 0 +303 0 FT933-2180 -1 +303 0 FT933-2218 0 +303 0 FT933-3699 0 +303 0 FT933-4983 -1 +303 0 FT933-5990 0 +303 0 FT933-6323 0 +303 0 FT933-6678 -1 +303 0 FT933-678 0 +303 0 FT933-6877 0 +303 0 FT933-6882 -1 +303 0 FT933-6946 0 +303 0 FT933-8843 0 +303 0 FT933-9084 -1 +303 0 FT933-9701 0 +303 0 FT934-10579 0 +303 0 FT934-10850 -1 +303 0 FT934-10897 0 +303 0 FT934-11052 0 +303 0 FT934-11633 -1 +303 0 FT934-1193 0 +303 0 FT934-12356 0 +303 0 FT934-14956 -1 +303 0 FT934-16249 0 +303 0 FT934-17357 0 +303 0 FT934-2516 -1 +303 0 FT934-2630 0 +303 0 FT934-2685 0 +303 0 FT934-3191 -1 +303 0 FT934-3325 0 +303 0 FT934-3608 0 +303 0 FT934-3766 -1 +303 0 FT934-4015 0 +303 0 FT934-4132 0 +303 0 FT934-4163 -1 +303 0 FT934-4467 0 +303 0 FT934-4583 0 +303 0 FT934-4766 -1 +303 0 FT934-4842 0 +303 0 FT934-4882 0 +303 0 FT934-5418 -1 +303 0 FT934-5460 0 +303 0 FT934-5524 0 +303 0 FT934-5811 -1 +303 0 FT934-5820 0 +303 0 FT934-7129 0 +303 0 FT934-7549 -1 +303 0 FT934-8767 0 +303 0 FT934-9330 0 +303 0 FT941-11088 -1 +303 0 FT941-11413 0 +303 0 FT941-11486 0 +303 0 FT941-11756 -1 +303 0 FT941-12019 0 +303 0 FT941-13695 0 +303 0 FT941-1374 -1 +303 0 FT941-1391 0 +303 0 FT941-1394 0 +303 0 FT941-14233 -1 +303 0 FT941-15661 2 +303 0 FT941-16882 0 +303 0 FT941-16886 -1 +303 0 FT941-16981 0 +303 0 FT941-17036 0 +303 0 FT941-17441 -1 +303 0 FT941-17487 0 +303 0 FT941-17636 0 +303 0 FT941-17652 -1 +303 0 FT941-2547 0 +303 0 FT941-2665 0 +303 0 FT941-2991 -1 +303 0 FT941-3758 0 +303 0 FT941-4026 0 +303 0 FT941-4092 -1 +303 0 FT941-4444 0 +303 0 FT941-5396 0 +303 0 FT941-541 -1 +303 0 FT941-6402 0 +303 0 FT941-7923 0 +303 0 FT941-793 -1 +303 0 FT941-7995 0 +303 0 FT942-10936 0 +303 0 FT942-11263 -1 +303 0 FT942-12236 0 +303 0 FT942-12872 0 +303 0 FT942-13026 -1 +303 0 FT942-13246 0 +303 0 FT942-13367 0 +303 0 FT942-14060 -1 +303 0 FT942-1469 0 +303 0 FT942-15138 0 +303 0 FT942-16737 -1 +303 0 FT942-16817 0 +303 0 FT942-17118 0 +303 0 FT942-344 -1 +303 0 FT942-417 0 +303 0 FT942-5339 0 +303 0 FT942-5356 -1 +303 0 FT942-5468 0 +303 0 FT942-5834 0 +303 0 FT942-6534 -1 +303 0 FT942-68 0 +303 0 FT942-7259 0 +303 0 FT942-786 -1 +303 0 FT942-795 0 +303 0 FT942-8367 0 +303 0 FT943-10128 -1 +303 0 FT943-10171 0 +303 0 FT943-10786 0 +303 0 FT943-10793 -1 +303 0 FT943-11292 0 +303 0 FT943-11617 0 +303 0 FT943-1201 -1 +303 0 FT943-1280 0 +303 0 FT943-12840 0 +303 0 FT943-13317 -1 +303 0 FT943-13465 0 +303 0 FT943-14262 0 +303 0 FT943-14510 -1 +303 0 FT943-14574 0 +303 0 FT943-14635 0 +303 0 FT943-14986 -1 +303 0 FT943-15147 0 +303 0 FT943-15250 0 +303 0 FT943-15591 -1 +303 0 FT943-16229 0 +303 0 FT943-3051 0 +303 0 FT943-3170 -1 +303 0 FT943-3693 0 +303 0 FT943-4589 0 +303 0 FT943-4595 -1 +303 0 FT943-4813 0 +303 0 FT943-5596 0 +303 0 FT943-5598 -1 +303 0 FT943-6074 0 +303 0 FT943-6422 0 +303 0 FT943-7294 -1 +303 0 FT943-8129 0 +303 0 FT943-8794 0 +303 0 FT943-9282 -1 +303 0 FT943-9830 0 +303 0 FT944-11415 0 +303 0 FT944-11782 -1 +303 0 FT944-12542 0 +303 0 FT944-12573 0 +303 0 FT944-12693 -1 +303 0 FT944-128 2 +303 0 FT944-12897 0 +303 0 FT944-1329 -1 +303 0 FT944-14417 0 +303 0 FT944-14989 0 +303 0 FT944-18272 -1 +303 0 FT944-18385 0 +303 0 FT944-3898 0 +303 0 FT944-3901 -1 +303 0 FT944-419 0 +303 0 FT944-4838 0 +303 0 FT944-509 -1 +303 0 FT944-5488 0 +303 0 FT944-552 0 +303 0 FT944-6624 -1 +303 0 FT944-6937 0 +303 0 FT944-8381 0 +303 0 FT944-8537 -1 +303 0 FT944-8893 0 +303 0 FT944-9936 0 +303 0 LA010689-0016 -1 +303 0 LA010889-0081 0 +303 0 LA011590-0098 0 +303 0 LA011789-0014 -1 +303 0 LA011990-0173 0 +303 0 LA012090-0105 0 +303 0 LA012090-0106 -1 +303 0 LA012789-0162 0 +303 0 LA012790-0042 0 +303 0 LA020190-0053 -1 +303 0 LA020889-0065 0 +303 0 LA020989-0012 0 +303 0 LA022689-0112 -1 +303 0 LA030590-0070 0 +303 0 LA030990-0068 0 +303 0 LA031090-0099 -1 +303 0 LA031190-0216 0 +303 0 LA031289-0114 0 +303 0 LA031490-0065 -1 +303 0 LA031490-0066 0 +303 0 LA031589-0130 0 +303 0 LA031689-0206 -1 +303 0 LA031989-0181 0 +303 0 LA031989-0182 0 +303 0 LA032790-0023 -1 +303 0 LA033089-0032 0 +303 0 LA033090-0082 0 +303 0 LA033090-0083 -1 +303 0 LA040190-0178 0 +303 0 LA040190-0179 0 +303 0 LA040590-0220 -1 +303 0 LA040689-0155 0 +303 0 LA041090-0148 0 +303 0 LA041190-0003 -1 +303 0 LA041390-0018 0 +303 0 LA041490-0064 0 +303 0 LA041589-0014 -1 +303 0 LA041590-0161 0 +303 0 LA041689-0190 0 +303 0 LA041690-0035 -1 +303 0 LA041690-0050 0 +303 0 LA041690-0051 0 +303 0 LA041790-0054 -1 +303 0 LA041790-0055 0 +303 0 LA041989-0027 0 +303 0 LA041990-0151 -1 +303 0 LA042190-0078 0 +303 0 LA042190-0132 0 +303 0 LA042289-0040 -1 +303 0 LA042290-0096 0 +303 0 LA042290-0160 0 +303 0 LA042390-0041 -1 +303 0 LA042390-0060 0 +303 0 LA042390-0099 0 +303 0 LA042590-0135 -1 +303 0 LA042590-0152 0 +303 0 LA042690-0141 0 +303 0 LA042690-0169 -1 +303 0 LA042790-0070 0 +303 0 LA042890-0035 0 +303 0 LA042890-0151 -1 +303 0 LA042989-0116 0 +303 0 LA043089-0169 0 +303 0 LA043090-0018 -1 +303 0 LA050189-0063 0 +303 0 LA050190-0067 0 +303 0 LA050390-0109 -1 +303 0 LA050589-0090 0 +303 0 LA050589-0092 0 +303 0 LA050590-0027 -1 +303 0 LA050590-0048 0 +303 0 LA050690-0145 0 +303 0 LA050690-0149 -1 +303 0 LA050889-0068 0 +303 0 LA050990-0078 0 +303 0 LA050990-0116 -1 +303 0 LA051090-0069 0 +303 0 LA051090-0070 0 +303 0 LA051190-0064 -1 +303 0 LA051290-0077 0 +303 0 LA051290-0079 2 +303 0 LA051389-0037 -1 +303 0 LA051390-0161 0 +303 0 LA051390-0195 0 +303 0 LA051390-0223 -1 +303 0 LA051490-0110 0 +303 0 LA051590-0074 0 +303 0 LA052090-0088 -1 +303 0 LA052189-0123 0 +303 0 LA052190-0021 0 +303 0 LA052289-0047 -1 +303 0 LA052389-0074 0 +303 0 LA052390-0127 0 +303 0 LA052490-0139 -1 +303 0 LA052589-0193 0 +303 0 LA052690-0037 0 +303 0 LA052890-0021 -1 +303 0 LA052890-0046 0 +303 0 LA052990-0018 0 +303 0 LA053089-0075 -1 +303 0 LA053090-0037 0 +303 0 LA053090-0104 0 +303 0 LA053190-0175 -1 +303 0 LA060290-0131 0 +303 0 LA060390-0159 0 +303 0 LA060489-0196 -1 +303 0 LA060490-0021 0 +303 0 LA060590-0010 0 +303 0 LA060790-0159 -1 +303 0 LA060890-0124 0 +303 0 LA060989-0171 0 +303 0 LA060990-0077 -1 +303 0 LA061189-0173 0 +303 0 LA061190-0085 0 +303 0 LA061289-0051 -1 +303 0 LA061390-0056 0 +303 0 LA061490-0072 0 +303 0 LA061589-0050 -1 +303 0 LA061589-0051 0 +303 0 LA061590-0010 0 +303 0 LA061690-0021 -1 +303 0 LA061690-0030 0 +303 0 LA061789-0027 0 +303 0 LA061789-0028 -1 +303 0 LA061790-0205 0 +303 0 LA061889-0008 0 +303 0 LA062090-0094 -1 +303 0 LA062189-0012 0 +303 0 LA062390-0041 0 +303 0 LA062690-0041 -1 +303 0 LA062789-0090 0 +303 0 LA062790-0085 0 +303 0 LA062890-0206 -1 +303 0 LA062990-0180 0 +303 0 LA063090-0004 0 +303 0 LA063090-0005 -1 +303 0 LA070190-0119 0 +303 0 LA070190-0120 0 +303 0 LA070289-0147 -1 +303 0 LA070290-0051 0 +303 0 LA070390-0084 0 +303 0 LA070390-0085 -1 +303 0 LA070489-0096 0 +303 0 LA070490-0001 0 +303 0 LA070490-0002 -1 +303 0 LA070590-0031 0 +303 0 LA070590-0033 0 +303 0 LA070590-0036 -1 +303 0 LA070590-0097 0 +303 0 LA070690-0095 0 +303 0 LA070789-0002 -1 +303 0 LA070789-0127 0 +303 0 LA070790-0083 0 +303 0 LA070790-0084 -1 +303 0 LA070890-0079 0 +303 0 LA070890-0080 0 +303 0 LA070890-0154 -1 +303 0 LA070890-0155 0 +303 0 LA070989-0062 0 +303 0 LA070989-0063 -1 +303 0 LA070990-0052 0 +303 0 LA070990-0053 0 +303 0 LA071090-0047 -1 +303 0 LA071090-0048 0 +303 0 LA071090-0141 0 +303 0 LA071390-0122 -1 +303 0 LA071390-0123 0 +303 0 LA071490-0024 0 +303 0 LA071490-0091 -1 +303 0 LA071490-0092 0 +303 0 LA071690-0048 0 +303 0 LA071690-0049 -1 +303 0 LA071990-0165 0 +303 0 LA071990-0250 0 +303 0 LA072090-0146 -1 +303 0 LA072090-0147 0 +303 0 LA072190-0065 0 +303 0 LA072190-0066 -1 +303 0 LA072389-0021 0 +303 0 LA072390-0058 0 +303 0 LA072390-0060 -1 +303 0 LA072490-0033 0 +303 0 LA072590-0005 0 +303 0 LA072590-0006 -1 +303 0 LA072590-0115 0 +303 0 LA072690-0124 0 +303 0 LA072690-0125 -1 +303 0 LA072690-0133 0 +303 0 LA072690-0134 0 +303 0 LA072789-0050 -1 +303 0 LA072890-0052 0 +303 0 LA072890-0078 0 +303 0 LA072890-0079 -1 +303 0 LA072990-0118 0 +303 0 LA073089-0149 0 +303 0 LA080489-0048 -1 +303 0 LA080590-0195 0 +303 0 LA080889-0066 0 +303 0 LA080890-0044 -1 +303 0 LA080989-0058 0 +303 0 LA080990-0216 0 +303 0 LA080990-0222 -1 +303 0 LA080990-0223 0 +303 0 LA080990-0232 0 +303 0 LA080990-0242 -1 +303 0 LA081090-0078 0 +303 0 LA081090-0079 0 +303 0 LA081090-0080 -1 +303 0 LA081190-0108 0 +303 0 LA081290-0215 0 +303 0 LA081290-0216 -1 +303 0 LA081489-0055 0 +303 0 LA081690-0102 0 +303 0 LA081790-0083 -1 +303 0 LA081790-0164 0 +303 0 LA081790-0165 0 +303 0 LA081989-0048 -1 +303 0 LA081990-0158 0 +303 0 LA082089-0163 0 +303 0 LA082190-0014 -1 +303 0 LA082190-0015 0 +303 0 LA082389-0028 0 +303 0 LA082490-0075 -1 +303 0 LA082590-0019 0 +303 0 LA082789-0096 0 +303 0 LA082789-0201 -1 +303 0 LA082890-0147 0 +303 0 LA082890-0148 0 +303 0 LA082989-0074 -1 +303 0 LA090189-0018 0 +303 0 LA090389-0097 0 +303 0 LA090389-0100 -1 +303 0 LA090390-0035 0 +303 0 LA090489-0037 0 +303 0 LA090489-0038 -1 +303 0 LA090689-0015 0 +303 0 LA090690-0100 0 +303 0 LA090690-0101 -1 +303 0 LA090790-0049 0 +303 0 LA090790-0050 0 +303 0 LA090889-0077 -1 +303 0 LA091089-0170 0 +303 0 LA091089-0172 0 +303 0 LA091190-0096 -1 +303 0 LA091190-0102 0 +303 0 LA091390-0046 0 +303 0 LA091689-0028 -1 +303 0 LA091690-0166 0 +303 0 LA091890-0053 0 +303 0 LA091890-0054 -1 +303 0 LA091890-0156 0 +303 0 LA092489-0053 0 +303 0 LA092489-0134 -1 +303 0 LA092690-0092 0 +303 0 LA092690-0093 0 +303 0 LA092690-0117 -1 +303 0 LA092790-0128 0 +303 0 LA100189-0205 0 +303 0 LA100290-0067 -1 +303 0 LA100889-0040 0 +303 0 LA101189-0144 0 +303 0 LA101290-0125 -1 +303 0 LA101690-0023 0 +303 0 LA101790-0151 0 +303 0 LA102189-0071 -1 +303 0 LA102289-0098 0 +303 0 LA102290-0066 0 +303 0 LA102290-0067 -1 +303 0 LA102590-0235 0 +303 0 LA102689-0127 0 +303 0 LA102890-0197 -1 +303 0 LA110590-0076 2 +303 0 LA110590-0077 0 +303 0 LA110989-0239 -1 +303 0 LA111089-0012 0 +303 0 LA111090-0135 0 +303 0 LA111789-0042 -1 +303 0 LA111789-0101 0 +303 0 LA111789-0151 0 +303 0 LA111990-0004 -1 +303 0 LA112089-0048 0 +303 0 LA112190-0043 2 +303 0 LA112190-0044 -1 +303 0 LA112390-0146 0 +303 0 LA112690-0067 0 +303 0 LA112990-0083 -1 +303 0 LA113090-0157 0 +303 0 LA120190-0125 0 +303 0 LA120390-0065 -1 +303 0 LA120390-0126 0 +303 0 LA120590-0110 0 +303 0 LA120890-0048 -1 +303 0 LA120990-0163 0 +303 0 LA120990-0165 0 +303 0 LA121190-0079 -1 +303 0 LA121190-0089 0 +303 0 LA121190-0090 0 +303 0 LA121190-0160 -1 +303 0 LA121790-0086 0 +303 0 LA121790-0087 0 +303 0 LA122090-0004 -1 +303 0 LA122090-0228 0 +303 0 LA122190-0021 0 +303 0 LA122390-0127 -1 +303 0 LA122589-0068 0 +303 0 LA122590-0113 0 +303 0 LA122790-0152 -1 +303 0 LA122990-0029 2 +303 0 LA122990-0030 0 diff --git a/tools/eval/trec_eval.9.0.4/test/qrels.test b/tools/eval/trec_eval.9.0.4/test/qrels.test new file mode 100644 index 0000000000000000000000000000000000000000..1a699684c260511328d67f5e0f8302089621a9ad --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/qrels.test @@ -0,0 +1,3681 @@ +301 0 CR93E-10279 0 +301 0 CR93E-10505 0 +301 0 CR93E-1282 1 +301 0 CR93E-1850 0 +301 0 CR93E-1860 0 +301 0 CR93E-1952 0 +301 0 CR93E-2191 0 +301 0 CR93E-2473 0 +301 0 CR93E-3103 1 +301 0 CR93E-3284 0 +301 0 CR93E-38 0 +301 0 CR93E-392 0 +301 0 CR93E-4648 0 +301 0 CR93E-4765 0 +301 0 CR93E-4855 0 +301 0 CR93E-5497 0 +301 0 CR93E-5780 0 +301 0 CR93E-5796 1 +301 0 CR93E-5799 1 +301 0 CR93E-6019 0 +301 0 CR93E-6879 0 +301 0 CR93E-6905 1 +301 0 CR93E-7123 0 +301 0 CR93E-7191 0 +301 0 CR93E-7276 0 +301 0 CR93E-7348 1 +301 0 CR93E-7376 1 +301 0 CR93E-7414 0 +301 0 CR93E-7716 0 +301 0 CR93E-7952 1 +301 0 CR93E-8012 0 +301 0 CR93E-8290 1 +301 0 CR93E-8416 1 +301 0 CR93E-8480 0 +301 0 CR93E-8484 0 +301 0 CR93E-9665 1 +301 0 CR93E-9750 1 +301 0 CR93E-9795 0 +301 0 CR93H-10037 1 +301 0 CR93H-10042 0 +301 0 CR93H-10104 0 +301 0 CR93H-10213 0 +301 0 CR93H-10221 0 +301 0 CR93H-10306 0 +301 0 CR93H-10374 0 +301 0 CR93H-10601 0 +301 0 CR93H-10659 0 +301 0 CR93H-10681 0 +301 0 CR93H-10921 0 +301 0 CR93H-10989 0 +301 0 CR93H-11029 0 +301 0 CR93H-11033 0 +301 0 CR93H-11034 0 +301 0 CR93H-11077 0 +301 0 CR93H-11119 0 +301 0 CR93H-11267 0 +301 0 CR93H-11291 0 +301 0 CR93H-11586 0 +301 0 CR93H-11806 0 +301 0 CR93H-11894 0 +301 0 CR93H-11994 0 +301 0 CR93H-11998 0 +301 0 CR93H-12016 0 +301 0 CR93H-12017 0 +301 0 CR93H-12150 0 +301 0 CR93H-12163 0 +301 0 CR93H-12181 0 +301 0 CR93H-12278 0 +301 0 CR93H-12436 0 +301 0 CR93H-12498 0 +301 0 CR93H-12610 0 +301 0 CR93H-12820 0 +301 0 CR93H-12874 0 +301 0 CR93H-12908 0 +301 0 CR93H-1298 0 +301 0 CR93H-12982 0 +301 0 CR93H-12983 0 +301 0 CR93H-12988 0 +301 0 CR93H-13053 0 +301 0 CR93H-13205 0 +301 0 CR93H-13529 1 +301 0 CR93H-13593 1 +301 0 CR93H-13595 1 +301 0 CR93H-13659 0 +301 0 CR93H-13680 0 +301 0 CR93H-13849 0 +301 0 CR93H-14136 0 +301 0 CR93H-14306 0 +301 0 CR93H-14325 0 +301 0 CR93H-14388 0 +301 0 CR93H-14389 1 +301 0 CR93H-14469 0 +301 0 CR93H-1461 0 +301 0 CR93H-1464 0 +301 0 CR93H-14669 0 +301 0 CR93H-14791 0 +301 0 CR93H-14817 0 +301 0 CR93H-14949 0 +301 0 CR93H-15069 1 +301 0 CR93H-15178 0 +301 0 CR93H-15405 0 +301 0 CR93H-15453 0 +301 0 CR93H-15477 0 +301 0 CR93H-15587 0 +301 0 CR93H-15608 0 +301 0 CR93H-15875 0 +301 0 CR93H-15886 0 +301 0 CR93H-15950 0 +301 0 CR93H-16062 0 +301 0 CR93H-16128 0 +301 0 CR93H-16369 0 +301 0 CR93H-1712 0 +301 0 CR93H-1769 1 +301 0 CR93H-1788 0 +301 0 CR93H-185 0 +301 0 CR93H-1852 0 +301 0 CR93H-199 1 +301 0 CR93H-215 0 +301 0 CR93H-2174 0 +301 0 CR93H-2252 0 +301 0 CR93H-2346 0 +301 0 CR93H-2430 0 +301 0 CR93H-2707 0 +301 0 CR93H-2841 0 +301 0 CR93H-2896 0 +301 0 CR93H-2899 1 +301 0 CR93H-3079 0 +301 0 CR93H-3262 0 +301 0 CR93H-3444 0 +301 0 CR93H-3466 0 +301 0 CR93H-3813 0 +301 0 CR93H-3960 0 +301 0 CR93H-4041 0 +301 0 CR93H-4042 0 +301 0 CR93H-4143 0 +301 0 CR93H-416 0 +301 0 CR93H-4192 0 +301 0 CR93H-4306 0 +301 0 CR93H-4417 0 +301 0 CR93H-4554 0 +301 0 CR93H-4569 0 +301 0 CR93H-4586 0 +301 0 CR93H-4635 0 +301 0 CR93H-4827 0 +301 0 CR93H-4879 0 +301 0 CR93H-4922 0 +301 0 CR93H-5017 0 +301 0 CR93H-5053 0 +301 0 CR93H-5121 0 +301 0 CR93H-5189 0 +301 0 CR93H-5255 0 +301 0 CR93H-553 0 +301 0 CR93H-5568 1 +301 0 CR93H-5618 0 +301 0 CR93H-6202 0 +301 0 CR93H-6346 0 +301 0 CR93H-6422 0 +301 0 CR93H-6567 0 +301 0 CR93H-6695 0 +301 0 CR93H-6754 0 +301 0 CR93H-6912 0 +301 0 CR93H-6945 0 +301 0 CR93H-7055 0 +301 0 CR93H-71 0 +301 0 CR93H-7245 0 +301 0 CR93H-7314 0 +301 0 CR93H-735 0 +301 0 CR93H-742 0 +301 0 CR93H-7426 0 +301 0 CR93H-7554 0 +301 0 CR93H-7557 0 +301 0 CR93H-7612 0 +301 0 CR93H-8165 0 +301 0 CR93H-83 0 +301 0 CR93H-8422 0 +301 0 CR93H-8460 0 +301 0 CR93H-8461 0 +301 0 CR93H-8472 0 +301 0 CR93H-8590 0 +301 0 CR93H-860 0 +301 0 CR93H-8700 0 +301 0 CR93H-8928 0 +301 0 CR93H-8981 0 +301 0 CR93H-9134 1 +301 0 CR93H-9143 0 +301 0 CR93H-9147 0 +301 0 CR93H-9214 0 +301 0 CR93H-9344 0 +301 0 CR93H-9350 1 +301 0 CR93H-9357 0 +301 0 CR93H-9546 0 +301 0 CR93H-9548 0 +301 0 CR93H-955 1 +301 0 CR93H-9684 1 +301 0 CR93H-9705 0 +301 0 CR93H-9835 0 +301 0 FBIS3-10082 1 +301 0 FBIS3-10169 0 +301 0 FBIS3-10243 1 +301 0 FBIS3-10319 0 +301 0 FBIS3-10397 1 +301 0 FBIS3-10491 1 +301 0 FBIS3-10555 0 +301 0 FBIS3-10622 1 +301 0 FBIS3-10634 0 +301 0 FBIS3-10635 0 +301 0 FBIS3-10721 1 +301 0 FBIS3-10805 1 +301 0 FBIS3-10910 1 +301 0 FBIS3-10937 1 +301 0 FBIS3-10938 0 +301 0 FBIS3-11003 1 +301 0 FBIS3-11028 0 +301 0 FBIS3-11095 1 +301 0 FBIS3-11099 1 +301 0 FBIS3-11210 1 +301 0 FBIS3-11318 0 +301 0 FBIS3-11405 1 +301 0 FBIS3-11502 1 +301 0 FBIS3-11553 1 +301 0 FBIS3-1162 0 +301 0 FBIS3-11628 1 +301 0 FBIS3-11634 1 +301 0 FBIS3-12094 1 +301 0 FBIS3-13011 0 +301 0 FBIS3-14449 0 +301 0 FBIS3-14832 1 +301 0 FBIS3-15271 0 +301 0 FBIS3-15418 0 +301 0 FBIS3-15509 0 +301 0 FBIS3-15586 1 +301 0 FBIS3-15988 1 +301 0 FBIS3-16151 0 +301 0 FBIS3-16286 0 +301 0 FBIS3-1638 0 +301 0 FBIS3-16769 0 +301 0 FBIS3-16775 0 +301 0 FBIS3-17073 0 +301 0 FBIS3-17175 0 +301 0 FBIS3-17255 0 +301 0 FBIS3-17394 0 +301 0 FBIS3-17422 0 +301 0 FBIS3-17547 0 +301 0 FBIS3-17704 0 +301 0 FBIS3-17880 0 +301 0 FBIS3-18129 0 +301 0 FBIS3-18281 0 +301 0 FBIS3-18507 0 +301 0 FBIS3-19199 1 +301 0 FBIS3-19420 1 +301 0 FBIS3-19646 1 +301 0 FBIS3-19682 0 +301 0 FBIS3-19863 0 +301 0 FBIS3-20360 1 +301 0 FBIS3-20551 1 +301 0 FBIS3-20552 1 +301 0 FBIS3-20796 0 +301 0 FBIS3-21603 1 +301 0 FBIS3-21604 0 +301 0 FBIS3-21605 1 +301 0 FBIS3-21620 0 +301 0 FBIS3-21627 1 +301 0 FBIS3-21628 1 +301 0 FBIS3-21629 1 +301 0 FBIS3-21630 1 +301 0 FBIS3-21631 1 +301 0 FBIS3-21632 1 +301 0 FBIS3-21635 1 +301 0 FBIS3-21636 1 +301 0 FBIS3-21641 1 +301 0 FBIS3-21642 1 +301 0 FBIS3-21670 0 +301 0 FBIS3-21671 0 +301 0 FBIS3-21699 1 +301 0 FBIS3-21710 1 +301 0 FBIS3-21720 1 +301 0 FBIS3-21722 1 +301 0 FBIS3-21723 1 +301 0 FBIS3-21724 1 +301 0 FBIS3-21729 1 +301 0 FBIS3-21743 1 +301 0 FBIS3-21750 1 +301 0 FBIS3-21762 0 +301 0 FBIS3-21765 1 +301 0 FBIS3-21769 1 +301 0 FBIS3-21770 1 +301 0 FBIS3-21771 1 +301 0 FBIS3-21779 0 +301 0 FBIS3-21789 1 +301 0 FBIS3-21790 1 +301 0 FBIS3-21807 1 +301 0 FBIS3-21817 1 +301 0 FBIS3-21818 1 +301 0 FBIS3-21821 1 +301 0 FBIS3-21828 0 +301 0 FBIS3-21880 1 +301 0 FBIS3-21884 1 +301 0 FBIS3-21886 1 +301 0 FBIS3-21900 1 +301 0 FBIS3-21906 1 +301 0 FBIS3-21907 1 +301 0 FBIS3-21911 1 +301 0 FBIS3-21912 0 +301 0 FBIS3-21930 1 +301 0 FBIS3-21938 0 +301 0 FBIS3-21961 1 +301 0 FBIS3-21978 1 +301 0 FBIS3-21990 0 +301 0 FBIS3-21998 1 +301 0 FBIS3-21999 1 +301 0 FBIS3-22000 1 +301 0 FBIS3-22011 1 +301 0 FBIS3-22033 0 +301 0 FBIS3-22038 1 +301 0 FBIS3-22039 1 +301 0 FBIS3-22040 1 +301 0 FBIS3-22047 1 +301 0 FBIS3-22049 1 +301 0 FBIS3-22055 1 +301 0 FBIS3-22085 0 +301 0 FBIS3-22088 1 +301 0 FBIS3-22090 0 +301 0 FBIS3-22098 0 +301 0 FBIS3-22101 1 +301 0 FBIS3-23426 0 +301 0 FBIS3-23432 0 +301 0 FBIS3-23561 0 +301 0 FBIS3-23606 0 +301 0 FBIS3-23691 0 +301 0 FBIS3-23743 0 +301 0 FBIS3-23823 0 +301 0 FBIS3-2393 1 +301 0 FBIS3-23945 0 +301 0 FBIS3-23986 1 +301 0 FBIS3-24037 0 +301 0 FBIS3-24039 0 +301 0 FBIS3-24137 0 +301 0 FBIS3-24143 0 +301 0 FBIS3-24145 0 +301 0 FBIS3-24182 0 +301 0 FBIS3-24197 1 +301 0 FBIS3-24247 0 +301 0 FBIS3-24256 0 +301 0 FBIS3-24277 0 +301 0 FBIS3-24284 0 +301 0 FBIS3-24318 1 +301 0 FBIS3-24325 1 +301 0 FBIS3-24338 0 +301 0 FBIS3-24362 0 +301 0 FBIS3-24451 0 +301 0 FBIS3-24453 0 +301 0 FBIS3-2516 0 +301 0 FBIS3-25359 0 +301 0 FBIS3-25902 0 +301 0 FBIS3-26005 1 +301 0 FBIS3-2605 0 +301 0 FBIS3-26415 1 +301 0 FBIS3-26451 0 +301 0 FBIS3-26913 1 +301 0 FBIS3-26914 1 +301 0 FBIS3-27048 0 +301 0 FBIS3-27916 0 +301 0 FBIS3-28833 0 +301 0 FBIS3-29180 0 +301 0 FBIS3-3020 0 +301 0 FBIS3-31267 1 +301 0 FBIS3-31749 0 +301 0 FBIS3-3189 0 +301 0 FBIS3-3190 0 +301 0 FBIS3-3223 0 +301 0 FBIS3-32399 0 +301 0 FBIS3-32400 0 +301 0 FBIS3-32453 1 +301 0 FBIS3-32619 1 +301 0 FBIS3-32620 0 +301 0 FBIS3-32674 1 +301 0 FBIS3-32817 1 +301 0 FBIS3-32833 1 +301 0 FBIS3-32880 1 +301 0 FBIS3-33001 1 +301 0 FBIS3-3304 0 +301 0 FBIS3-33150 1 +301 0 FBIS3-33206 1 +301 0 FBIS3-33239 0 +301 0 FBIS3-33241 1 +301 0 FBIS3-33243 1 +301 0 FBIS3-33287 1 +301 0 FBIS3-33366 1 +301 0 FBIS3-33438 1 +301 0 FBIS3-33570 1 +301 0 FBIS3-33590 0 +301 0 FBIS3-33963 1 +301 0 FBIS3-34361 0 +301 0 FBIS3-34451 0 +301 0 FBIS3-34994 0 +301 0 FBIS3-35229 0 +301 0 FBIS3-36375 0 +301 0 FBIS3-36824 0 +301 0 FBIS3-36869 0 +301 0 FBIS3-37418 0 +301 0 FBIS3-37492 0 +301 0 FBIS3-37697 0 +301 0 FBIS3-37944 0 +301 0 FBIS3-37947 1 +301 0 FBIS3-38070 1 +301 0 FBIS3-38124 0 +301 0 FBIS3-38466 1 +301 0 FBIS3-38787 0 +301 0 FBIS3-38878 1 +301 0 FBIS3-39430 0 +301 0 FBIS3-39555 0 +301 0 FBIS3-39566 0 +301 0 FBIS3-40435 0 +301 0 FBIS3-40450 0 +301 0 FBIS3-40470 0 +301 0 FBIS3-40604 0 +301 0 FBIS3-41071 1 +301 0 FBIS3-41076 1 +301 0 FBIS3-41082 1 +301 0 FBIS3-41087 1 +301 0 FBIS3-41090 1 +301 0 FBIS3-41091 1 +301 0 FBIS3-41092 1 +301 0 FBIS3-41101 1 +301 0 FBIS3-41105 0 +301 0 FBIS3-41108 0 +301 0 FBIS3-41110 0 +301 0 FBIS3-41121 1 +301 0 FBIS3-41131 1 +301 0 FBIS3-41132 1 +301 0 FBIS3-41140 1 +301 0 FBIS3-41141 1 +301 0 FBIS3-41143 0 +301 0 FBIS3-41158 1 +301 0 FBIS3-41163 1 +301 0 FBIS3-41174 1 +301 0 FBIS3-41181 0 +301 0 FBIS3-41204 1 +301 0 FBIS3-41211 1 +301 0 FBIS3-41212 1 +301 0 FBIS3-41213 1 +301 0 FBIS3-41215 1 +301 0 FBIS3-41219 1 +301 0 FBIS3-41220 1 +301 0 FBIS3-41222 1 +301 0 FBIS3-41224 1 +301 0 FBIS3-41226 1 +301 0 FBIS3-41233 1 +301 0 FBIS3-41236 1 +301 0 FBIS3-41237 1 +301 0 FBIS3-41244 0 +301 0 FBIS3-41247 1 +301 0 FBIS3-41272 1 +301 0 FBIS3-41285 1 +301 0 FBIS3-41288 0 +301 0 FBIS3-41291 0 +301 0 FBIS3-41293 1 +301 0 FBIS3-41294 1 +301 0 FBIS3-41295 1 +301 0 FBIS3-41298 1 +301 0 FBIS3-41305 0 +301 0 FBIS3-41312 0 +301 0 FBIS3-41317 1 +301 0 FBIS3-41320 1 +301 0 FBIS3-41325 1 +301 0 FBIS3-41345 1 +301 0 FBIS3-41347 1 +301 0 FBIS3-41348 1 +301 0 FBIS3-41349 1 +301 0 FBIS3-41385 0 +301 0 FBIS3-41387 1 +301 0 FBIS3-41398 1 +301 0 FBIS3-41400 1 +301 0 FBIS3-41401 1 +301 0 FBIS3-41402 1 +301 0 FBIS3-41406 1 +301 0 FBIS3-41472 0 +301 0 FBIS3-41666 0 +301 0 FBIS3-41958 0 +301 0 FBIS3-4209 0 +301 0 FBIS3-42278 0 +301 0 FBIS3-42315 1 +301 0 FBIS3-42319 0 +301 0 FBIS3-42341 0 +301 0 FBIS3-42576 0 +301 0 FBIS3-42621 0 +301 0 FBIS3-42766 0 +301 0 FBIS3-42820 1 +301 0 FBIS3-42845 0 +301 0 FBIS3-43072 0 +301 0 FBIS3-43550 0 +301 0 FBIS3-44579 0 +301 0 FBIS3-45599 0 +301 0 FBIS3-45756 0 +301 0 FBIS3-46614 0 +301 0 FBIS3-46801 0 +301 0 FBIS3-47129 0 +301 0 FBIS3-47971 0 +301 0 FBIS3-48159 0 +301 0 FBIS3-48161 0 +301 0 FBIS3-48751 0 +301 0 FBIS3-49567 1 +301 0 FBIS3-50131 0 +301 0 FBIS3-50136 0 +301 0 FBIS3-50603 1 +301 0 FBIS3-50654 0 +301 0 FBIS3-50695 1 +301 0 FBIS3-51349 0 +301 0 FBIS3-51567 1 +301 0 FBIS3-51619 0 +301 0 FBIS3-51766 0 +301 0 FBIS3-51824 1 +301 0 FBIS3-52033 1 +301 0 FBIS3-52075 0 +301 0 FBIS3-52858 0 +301 0 FBIS3-54461 0 +301 0 FBIS3-54944 0 +301 0 FBIS3-54945 0 +301 0 FBIS3-55219 1 +301 0 FBIS3-55570 0 +301 0 FBIS3-55741 0 +301 0 FBIS3-55966 0 +301 0 FBIS3-56182 0 +301 0 FBIS3-57406 0 +301 0 FBIS3-5772 1 +301 0 FBIS3-57906 0 +301 0 FBIS3-57998 1 +301 0 FBIS3-58025 0 +301 0 FBIS3-58028 1 +301 0 FBIS3-58055 1 +301 0 FBIS3-58058 1 +301 0 FBIS3-58477 1 +301 0 FBIS3-58867 1 +301 0 FBIS3-59073 0 +301 0 FBIS3-59284 1 +301 0 FBIS3-59285 0 +301 0 FBIS3-5944 1 +301 0 FBIS3-59517 0 +301 0 FBIS3-59750 0 +301 0 FBIS3-59962 0 +301 0 FBIS3-59963 1 +301 0 FBIS3-59979 0 +301 0 FBIS3-60000 1 +301 0 FBIS3-60006 1 +301 0 FBIS3-60017 1 +301 0 FBIS3-60061 1 +301 0 FBIS3-60063 1 +301 0 FBIS3-60065 1 +301 0 FBIS3-60066 1 +301 0 FBIS3-60093 1 +301 0 FBIS3-60111 1 +301 0 FBIS3-60121 1 +301 0 FBIS3-60122 0 +301 0 FBIS3-60124 1 +301 0 FBIS3-60149 1 +301 0 FBIS3-60153 1 +301 0 FBIS3-60166 1 +301 0 FBIS3-60180 1 +301 0 FBIS3-60209 0 +301 0 FBIS3-60215 1 +301 0 FBIS3-60336 0 +301 0 FBIS3-60342 0 +301 0 FBIS3-60752 0 +301 0 FBIS3-60831 0 +301 0 FBIS3-60975 0 +301 0 FBIS3-60984 1 +301 0 FBIS3-61041 0 +301 0 FBIS3-61080 0 +301 0 FBIS3-61106 0 +301 0 FBIS3-61161 0 +301 0 FBIS3-61246 0 +301 0 FBIS3-61298 0 +301 0 FBIS3-61345 0 +301 0 FBIS3-61387 0 +301 0 FBIS3-61562 0 +301 0 FBIS3-7168 1 +301 0 FBIS3-8135 0 +301 0 FBIS3-9399 0 +301 0 FBIS3-9890 1 +301 0 FBIS3-9969 0 +301 0 FBIS3-9970 0 +301 0 FBIS4-10076 1 +301 0 FBIS4-10092 1 +301 0 FBIS4-10095 1 +301 0 FBIS4-10110 1 +301 0 FBIS4-10112 1 +301 0 FBIS4-10121 0 +301 0 FBIS4-10175 0 +301 0 FBIS4-10192 0 +301 0 FBIS4-10296 0 +301 0 FBIS4-10366 1 +301 0 FBIS4-10488 1 +301 0 FBIS4-10739 0 +301 0 FBIS4-10748 0 +301 0 FBIS4-10817 0 +301 0 FBIS4-10864 0 +301 0 FBIS4-11047 0 +301 0 FBIS4-11217 0 +301 0 FBIS4-14483 0 +301 0 FBIS4-14505 0 +301 0 FBIS4-15002 0 +301 0 FBIS4-1549 0 +301 0 FBIS4-1553 0 +301 0 FBIS4-16126 0 +301 0 FBIS4-1628 0 +301 0 FBIS4-16454 0 +301 0 FBIS4-16502 0 +301 0 FBIS4-16583 0 +301 0 FBIS4-1667 0 +301 0 FBIS4-16951 0 +301 0 FBIS4-17572 0 +301 0 FBIS4-17750 0 +301 0 FBIS4-1796 0 +301 0 FBIS4-18028 0 +301 0 FBIS4-18061 0 +301 0 FBIS4-18122 0 +301 0 FBIS4-1842 0 +301 0 FBIS4-1843 0 +301 0 FBIS4-1860 0 +301 0 FBIS4-1861 0 +301 0 FBIS4-1863 0 +301 0 FBIS4-1865 0 +301 0 FBIS4-1866 0 +301 0 FBIS4-19049 0 +301 0 FBIS4-1967 0 +301 0 FBIS4-19851 1 +301 0 FBIS4-2042 0 +301 0 FBIS4-20472 0 +301 0 FBIS4-20504 0 +301 0 FBIS4-20617 0 +301 0 FBIS4-2072 1 +301 0 FBIS4-20942 1 +301 0 FBIS4-20943 1 +301 0 FBIS4-20959 0 +301 0 FBIS4-20961 0 +301 0 FBIS4-20962 0 +301 0 FBIS4-20965 1 +301 0 FBIS4-20966 1 +301 0 FBIS4-20970 1 +301 0 FBIS4-20976 1 +301 0 FBIS4-20980 1 +301 0 FBIS4-20995 0 +301 0 FBIS4-21016 1 +301 0 FBIS4-21041 1 +301 0 FBIS4-2105 0 +301 0 FBIS4-21060 1 +301 0 FBIS4-21061 0 +301 0 FBIS4-21062 0 +301 0 FBIS4-21094 1 +301 0 FBIS4-21124 0 +301 0 FBIS4-21126 0 +301 0 FBIS4-21133 0 +301 0 FBIS4-21134 0 +301 0 FBIS4-21139 0 +301 0 FBIS4-21168 0 +301 0 FBIS4-21171 1 +301 0 FBIS4-21188 0 +301 0 FBIS4-21207 0 +301 0 FBIS4-21212 0 +301 0 FBIS4-21213 1 +301 0 FBIS4-21244 0 +301 0 FBIS4-21261 0 +301 0 FBIS4-2128 0 +301 0 FBIS4-21287 0 +301 0 FBIS4-21302 1 +301 0 FBIS4-21310 0 +301 0 FBIS4-21321 1 +301 0 FBIS4-21336 0 +301 0 FBIS4-21340 1 +301 0 FBIS4-21936 0 +301 0 FBIS4-2204 0 +301 0 FBIS4-22214 1 +301 0 FBIS4-22235 1 +301 0 FBIS4-22345 0 +301 0 FBIS4-22444 0 +301 0 FBIS4-22455 0 +301 0 FBIS4-22471 0 +301 0 FBIS4-22523 0 +301 0 FBIS4-22537 0 +301 0 FBIS4-22596 0 +301 0 FBIS4-22768 1 +301 0 FBIS4-22779 0 +301 0 FBIS4-24388 0 +301 0 FBIS4-2439 0 +301 0 FBIS4-24523 1 +301 0 FBIS4-25032 0 +301 0 FBIS4-26003 0 +301 0 FBIS4-26127 0 +301 0 FBIS4-26192 0 +301 0 FBIS4-26323 1 +301 0 FBIS4-26335 0 +301 0 FBIS4-26351 0 +301 0 FBIS4-26415 0 +301 0 FBIS4-26788 0 +301 0 FBIS4-26902 1 +301 0 FBIS4-27085 0 +301 0 FBIS4-27100 1 +301 0 FBIS4-2721 0 +301 0 FBIS4-27336 0 +301 0 FBIS4-2734 0 +301 0 FBIS4-27391 0 +301 0 FBIS4-27942 0 +301 0 FBIS4-29003 0 +301 0 FBIS4-2931 1 +301 0 FBIS4-30024 0 +301 0 FBIS4-3044 0 +301 0 FBIS4-31295 1 +301 0 FBIS4-31645 1 +301 0 FBIS4-31787 0 +301 0 FBIS4-3230 0 +301 0 FBIS4-33188 1 +301 0 FBIS4-33584 1 +301 0 FBIS4-3367 0 +301 0 FBIS4-3370 0 +301 0 FBIS4-33785 0 +301 0 FBIS4-33867 0 +301 0 FBIS4-33868 0 +301 0 FBIS4-34471 0 +301 0 FBIS4-34515 0 +301 0 FBIS4-34538 0 +301 0 FBIS4-34613 0 +301 0 FBIS4-34616 1 +301 0 FBIS4-34647 1 +301 0 FBIS4-34666 0 +301 0 FBIS4-34836 1 +301 0 FBIS4-34879 0 +301 0 FBIS4-37650 1 +301 0 FBIS4-37795 0 +301 0 FBIS4-38095 0 +301 0 FBIS4-38364 1 +301 0 FBIS4-38410 0 +301 0 FBIS4-38482 0 +301 0 FBIS4-39330 0 +301 0 FBIS4-39493 0 +301 0 FBIS4-39759 0 +301 0 FBIS4-40181 0 +301 0 FBIS4-40260 0 +301 0 FBIS4-40359 0 +301 0 FBIS4-40452 0 +301 0 FBIS4-40482 0 +301 0 FBIS4-40514 0 +301 0 FBIS4-4063 0 +301 0 FBIS4-4067 0 +301 0 FBIS4-40720 0 +301 0 FBIS4-40805 1 +301 0 FBIS4-40930 0 +301 0 FBIS4-40932 0 +301 0 FBIS4-40934 0 +301 0 FBIS4-40935 0 +301 0 FBIS4-40936 0 +301 0 FBIS4-41144 0 +301 0 FBIS4-41215 0 +301 0 FBIS4-41223 0 +301 0 FBIS4-41394 0 +301 0 FBIS4-41395 0 +301 0 FBIS4-41396 0 +301 0 FBIS4-41398 0 +301 0 FBIS4-41538 0 +301 0 FBIS4-41541 0 +301 0 FBIS4-41684 0 +301 0 FBIS4-41687 1 +301 0 FBIS4-41832 0 +301 0 FBIS4-41839 0 +301 0 FBIS4-41860 0 +301 0 FBIS4-41863 0 +301 0 FBIS4-41952 0 +301 0 FBIS4-41976 0 +301 0 FBIS4-41991 0 +301 0 FBIS4-42499 1 +301 0 FBIS4-42757 1 +301 0 FBIS4-43152 1 +301 0 FBIS4-43533 1 +301 0 FBIS4-43552 1 +301 0 FBIS4-43791 0 +301 0 FBIS4-43797 1 +301 0 FBIS4-43801 1 +301 0 FBIS4-43965 1 +301 0 FBIS4-44181 0 +301 0 FBIS4-45158 1 +301 0 FBIS4-45166 0 +301 0 FBIS4-45172 0 +301 0 FBIS4-45175 1 +301 0 FBIS4-45195 0 +301 0 FBIS4-45205 0 +301 0 FBIS4-45230 1 +301 0 FBIS4-45239 1 +301 0 FBIS4-45251 1 +301 0 FBIS4-45257 1 +301 0 FBIS4-45277 1 +301 0 FBIS4-45278 1 +301 0 FBIS4-45280 1 +301 0 FBIS4-45315 0 +301 0 FBIS4-45330 1 +301 0 FBIS4-45333 1 +301 0 FBIS4-45345 1 +301 0 FBIS4-45346 0 +301 0 FBIS4-45383 1 +301 0 FBIS4-45398 1 +301 0 FBIS4-45413 1 +301 0 FBIS4-45414 1 +301 0 FBIS4-45417 0 +301 0 FBIS4-45419 1 +301 0 FBIS4-45425 1 +301 0 FBIS4-45434 1 +301 0 FBIS4-45440 0 +301 0 FBIS4-45453 0 +301 0 FBIS4-45469 1 +301 0 FBIS4-45477 1 +301 0 FBIS4-45482 0 +301 0 FBIS4-45495 0 +301 0 FBIS4-45503 1 +301 0 FBIS4-45518 1 +301 0 FBIS4-45519 1 +301 0 FBIS4-45552 0 +301 0 FBIS4-45571 1 +301 0 FBIS4-46425 1 +301 0 FBIS4-46574 0 +301 0 FBIS4-46584 0 +301 0 FBIS4-46588 0 +301 0 FBIS4-46648 0 +301 0 FBIS4-46649 0 +301 0 FBIS4-46730 0 +301 0 FBIS4-46733 0 +301 0 FBIS4-46734 0 +301 0 FBIS4-46757 0 +301 0 FBIS4-46775 0 +301 0 FBIS4-46780 1 +301 0 FBIS4-46806 0 +301 0 FBIS4-46846 1 +301 0 FBIS4-46857 0 +301 0 FBIS4-46935 0 +301 0 FBIS4-47008 0 +301 0 FBIS4-47045 0 +301 0 FBIS4-47046 0 +301 0 FBIS4-47200 0 +301 0 FBIS4-49021 0 +301 0 FBIS4-49075 0 +301 0 FBIS4-49289 0 +301 0 FBIS4-49667 0 +301 0 FBIS4-49754 0 +301 0 FBIS4-49845 0 +301 0 FBIS4-50083 0 +301 0 FBIS4-50478 0 +301 0 FBIS4-50901 0 +301 0 FBIS4-50956 0 +301 0 FBIS4-50993 0 +301 0 FBIS4-51335 0 +301 0 FBIS4-52002 0 +301 0 FBIS4-52093 0 +301 0 FBIS4-52587 0 +301 0 FBIS4-53424 1 +301 0 FBIS4-54126 0 +301 0 FBIS4-54227 1 +301 0 FBIS4-54287 0 +301 0 FBIS4-54501 0 +301 0 FBIS4-54604 0 +301 0 FBIS4-54904 1 +301 0 FBIS4-55395 0 +301 0 FBIS4-56290 0 +301 0 FBIS4-56434 1 +301 0 FBIS4-56467 1 +301 0 FBIS4-56471 1 +301 0 FBIS4-56487 1 +301 0 FBIS4-56513 1 +301 0 FBIS4-56524 0 +301 0 FBIS4-56605 1 +301 0 FBIS4-56693 1 +301 0 FBIS4-56776 0 +301 0 FBIS4-56803 1 +301 0 FBIS4-56930 1 +301 0 FBIS4-56965 1 +301 0 FBIS4-56974 1 +301 0 FBIS4-56982 1 +301 0 FBIS4-56992 1 +301 0 FBIS4-57053 0 +301 0 FBIS4-57121 0 +301 0 FBIS4-57301 1 +301 0 FBIS4-57322 1 +301 0 FBIS4-57754 1 +301 0 FBIS4-57869 1 +301 0 FBIS4-57987 1 +301 0 FBIS4-58122 0 +301 0 FBIS4-60945 0 +301 0 FBIS4-61644 0 +301 0 FBIS4-61663 0 +301 0 FBIS4-62028 1 +301 0 FBIS4-62049 0 +301 0 FBIS4-62078 0 +301 0 FBIS4-62079 0 +301 0 FBIS4-62372 0 +301 0 FBIS4-63153 0 +301 0 FBIS4-63597 0 +301 0 FBIS4-64135 0 +301 0 FBIS4-64345 0 +301 0 FBIS4-6448 0 +301 0 FBIS4-65446 0 +301 0 FBIS4-65501 0 +301 0 FBIS4-65806 1 +301 0 FBIS4-66122 0 +301 0 FBIS4-66308 0 +301 0 FBIS4-66382 0 +301 0 FBIS4-66940 1 +301 0 FBIS4-66950 1 +301 0 FBIS4-66951 1 +301 0 FBIS4-66952 1 +301 0 FBIS4-66973 1 +301 0 FBIS4-66974 1 +301 0 FBIS4-67000 1 +301 0 FBIS4-67003 0 +301 0 FBIS4-67005 0 +301 0 FBIS4-67027 1 +301 0 FBIS4-67046 0 +301 0 FBIS4-67051 1 +301 0 FBIS4-67058 1 +301 0 FBIS4-67062 1 +301 0 FBIS4-67072 1 +301 0 FBIS4-67135 1 +301 0 FBIS4-67140 1 +301 0 FBIS4-67144 1 +301 0 FBIS4-67149 0 +301 0 FBIS4-67150 1 +301 0 FBIS4-67156 1 +301 0 FBIS4-67165 0 +301 0 FBIS4-67169 1 +301 0 FBIS4-67170 1 +301 0 FBIS4-67176 1 +301 0 FBIS4-67178 1 +301 0 FBIS4-67183 1 +301 0 FBIS4-67184 1 +301 0 FBIS4-67227 1 +301 0 FBIS4-67239 1 +301 0 FBIS4-67244 0 +301 0 FBIS4-67246 1 +301 0 FBIS4-67263 0 +301 0 FBIS4-67273 0 +301 0 FBIS4-67281 1 +301 0 FBIS4-67292 1 +301 0 FBIS4-67331 1 +301 0 FBIS4-67334 1 +301 0 FBIS4-67336 1 +301 0 FBIS4-67341 0 +301 0 FBIS4-67492 1 +301 0 FBIS4-67942 1 +301 0 FBIS4-68096 0 +301 0 FBIS4-68348 0 +301 0 FBIS4-68349 0 +301 0 FBIS4-68416 0 +301 0 FBIS4-68426 0 +301 0 FBIS4-68498 0 +301 0 FBIS4-68542 0 +301 0 FBIS4-68582 0 +301 0 FBIS4-68653 0 +301 0 FBIS4-68746 0 +301 0 FBIS4-68801 1 +301 0 FBIS4-68847 0 +301 0 FBIS4-68893 0 +301 0 FBIS4-7006 0 +301 0 FBIS4-7688 0 +301 0 FBIS4-7811 1 +301 0 FBIS4-865 0 +301 0 FBIS4-891 0 +301 0 FBIS4-8957 1 +301 0 FBIS4-9354 0 +301 0 FBIS4-9451 0 +301 0 FBIS4-9687 1 +301 0 FBIS4-9819 0 +301 0 FBIS4-9843 1 +301 0 FBIS4-9965 0 +301 0 FR940112-2-00076 0 +301 0 FR940128-2-00139 0 +301 0 FR940202-2-00149 0 +301 0 FR940202-2-00150 0 +301 0 FR940202-2-00151 0 +301 0 FR940202-2-00153 0 +301 0 FR940202-2-00154 0 +301 0 FR940203-1-00036 0 +301 0 FR940203-2-00129 0 +301 0 FR940203-2-00142 0 +301 0 FR940217-1-00073 0 +301 0 FR940223-2-00242 0 +301 0 FR940303-1-00022 0 +301 0 FR940303-2-00208 0 +301 0 FR940314-0-00010 0 +301 0 FR940314-1-00041 0 +301 0 FR940324-2-00091 0 +301 0 FR940328-2-00122 0 +301 0 FR940406-2-00067 0 +301 0 FR940406-2-00175 0 +301 0 FR940412-2-00124 0 +301 0 FR940412-2-00131 0 +301 0 FR940425-2-00078 0 +301 0 FR940425-2-00079 0 +301 0 FR940425-2-00080 0 +301 0 FR940425-2-00081 0 +301 0 FR940429-0-00128 0 +301 0 FR940503-2-00145 0 +301 0 FR940503-2-00146 0 +301 0 FR940503-2-00147 0 +301 0 FR940503-2-00165 0 +301 0 FR940503-2-00169 0 +301 0 FR940503-2-00170 0 +301 0 FR940511-0-00066 0 +301 0 FR940511-2-00139 0 +301 0 FR940511-2-00206 0 +301 0 FR940513-2-00097 0 +301 0 FR940513-2-00103 0 +301 0 FR940516-2-00139 0 +301 0 FR940525-2-00052 0 +301 0 FR940525-2-00068 0 +301 0 FR940526-2-00033 0 +301 0 FR940527-2-00068 0 +301 0 FR940527-2-00069 0 +301 0 FR940603-2-00059 0 +301 0 FR940603-2-00060 0 +301 0 FR940603-2-00158 0 +301 0 FR940610-2-00058 0 +301 0 FR940610-2-00072 0 +301 0 FR940620-1-00004 0 +301 0 FR940620-1-00005 0 +301 0 FR940620-1-00006 0 +301 0 FR940620-1-00007 0 +301 0 FR940620-1-00008 0 +301 0 FR940620-1-00009 0 +301 0 FR940622-2-00053 0 +301 0 FR940627-2-00036 0 +301 0 FR940627-2-00068 0 +301 0 FR940630-2-00168 0 +301 0 FR940630-2-00169 0 +301 0 FR940707-2-00112 0 +301 0 FR940707-2-00113 0 +301 0 FR940707-2-00114 0 +301 0 FR940711-2-00093 0 +301 0 FR940711-2-00096 0 +301 0 FR940712-2-00059 0 +301 0 FR940712-2-00065 0 +301 0 FR940713-2-00064 0 +301 0 FR940713-2-00172 0 +301 0 FR940713-2-00178 0 +301 0 FR940721-2-00075 0 +301 0 FR940727-0-00077 0 +301 0 FR940727-0-00078 0 +301 0 FR940727-0-00079 0 +301 0 FR940727-0-00091 0 +301 0 FR940727-0-00092 0 +301 0 FR940727-0-00093 0 +301 0 FR940727-0-00096 0 +301 0 FR940728-2-00151 0 +301 0 FR940804-0-00127 0 +301 0 FR940804-2-00088 0 +301 0 FR940811-0-00030 0 +301 0 FR940816-2-00057 0 +301 0 FR940825-2-00077 0 +301 0 FR940825-2-00078 0 +301 0 FR940825-2-00189 0 +301 0 FR940830-2-00003 0 +301 0 FR940902-1-00048 0 +301 0 FR940920-2-00045 0 +301 0 FR940922-2-00125 0 +301 0 FR940930-2-00057 0 +301 0 FR940930-2-00058 0 +301 0 FR940930-2-00063 0 +301 0 FR941004-1-00089 0 +301 0 FR941006-2-00013 0 +301 0 FR941006-2-00171 0 +301 0 FR941107-0-00034 0 +301 0 FR941128-2-00187 0 +301 0 FR941206-1-00134 0 +301 0 FR941221-2-00127 0 +301 0 FR941221-2-00130 0 +301 0 FR941221-2-00131 0 +301 0 FR941230-2-00127 0 +301 0 FR941230-2-00137 0 +301 0 FR941230-2-00138 0 +301 0 FR941230-2-00139 0 +301 0 FR941230-2-00150 0 +301 0 FT911-1237 0 +301 0 FT911-1697 0 +301 0 FT911-1821 0 +301 0 FT911-2267 0 +301 0 FT911-2671 0 +301 0 FT911-2685 0 +301 0 FT911-2704 0 +301 0 FT911-2706 0 +301 0 FT911-3036 0 +301 0 FT911-3105 0 +301 0 FT911-3453 0 +301 0 FT911-4494 0 +301 0 FT911-456 0 +301 0 FT911-4634 0 +301 0 FT911-4747 0 +301 0 FT911-5227 0 +301 0 FT911-629 0 +301 0 FT911-71 0 +301 0 FT921-10107 0 +301 0 FT921-10162 1 +301 0 FT921-10163 0 +301 0 FT921-10280 1 +301 0 FT921-10350 0 +301 0 FT921-10427 0 +301 0 FT921-10848 0 +301 0 FT921-11079 0 +301 0 FT921-11686 0 +301 0 FT921-12538 0 +301 0 FT921-1349 0 +301 0 FT921-13664 0 +301 0 FT921-14967 0 +301 0 FT921-15491 0 +301 0 FT921-16129 0 +301 0 FT921-16130 0 +301 0 FT921-1614 0 +301 0 FT921-1844 0 +301 0 FT921-2590 0 +301 0 FT921-3256 0 +301 0 FT921-4090 0 +301 0 FT921-4265 0 +301 0 FT921-4322 0 +301 0 FT921-5503 0 +301 0 FT921-6487 0 +301 0 FT921-6506 0 +301 0 FT921-6865 0 +301 0 FT921-6986 0 +301 0 FT921-6988 0 +301 0 FT921-7663 0 +301 0 FT921-8089 0 +301 0 FT921-8188 0 +301 0 FT921-861 0 +301 0 FT922-10933 0 +301 0 FT922-11540 0 +301 0 FT922-13596 1 +301 0 FT922-14858 0 +301 0 FT922-14992 0 +301 0 FT922-15159 0 +301 0 FT922-15176 0 +301 0 FT922-3844 0 +301 0 FT922-4774 0 +301 0 FT922-4887 0 +301 0 FT922-5041 0 +301 0 FT922-565 0 +301 0 FT922-616 0 +301 0 FT922-7190 0 +301 0 FT922-790 0 +301 0 FT922-8144 0 +301 0 FT922-8257 0 +301 0 FT922-8731 0 +301 0 FT922-9654 0 +301 0 FT923-10224 0 +301 0 FT923-10456 0 +301 0 FT923-10584 0 +301 0 FT923-11086 0 +301 0 FT923-11460 0 +301 0 FT923-11560 0 +301 0 FT923-11687 0 +301 0 FT923-11785 0 +301 0 FT923-12102 0 +301 0 FT923-12278 0 +301 0 FT923-13103 0 +301 0 FT923-1313 0 +301 0 FT923-14709 1 +301 0 FT923-2038 0 +301 0 FT923-2301 0 +301 0 FT923-2345 0 +301 0 FT923-2348 0 +301 0 FT923-3034 1 +301 0 FT923-332 0 +301 0 FT923-3617 0 +301 0 FT923-365 1 +301 0 FT923-4083 0 +301 0 FT923-466 0 +301 0 FT923-5301 0 +301 0 FT923-5751 0 +301 0 FT923-7842 0 +301 0 FT923-7884 0 +301 0 FT923-8084 0 +301 0 FT924-10092 0 +301 0 FT924-10320 0 +301 0 FT924-10713 0 +301 0 FT924-10861 0 +301 0 FT924-11258 0 +301 0 FT924-11339 1 +301 0 FT924-11606 0 +301 0 FT924-1186 0 +301 0 FT924-11989 0 +301 0 FT924-12138 0 +301 0 FT924-12220 0 +301 0 FT924-13611 1 +301 0 FT924-227 0 +301 0 FT924-2736 0 +301 0 FT924-2822 0 +301 0 FT924-2857 0 +301 0 FT924-3498 0 +301 0 FT924-4782 1 +301 0 FT924-5359 0 +301 0 FT924-6421 0 +301 0 FT924-6543 0 +301 0 FT924-6677 0 +301 0 FT924-9271 0 +301 0 FT924-949 0 +301 0 FT924-9745 0 +301 0 FT931-10356 0 +301 0 FT931-1053 0 +301 0 FT931-11647 0 +301 0 FT931-11843 0 +301 0 FT931-11924 0 +301 0 FT931-13292 0 +301 0 FT931-14697 1 +301 0 FT931-16394 0 +301 0 FT931-16398 0 +301 0 FT931-2175 0 +301 0 FT931-2379 0 +301 0 FT931-2401 0 +301 0 FT931-249 0 +301 0 FT931-3563 1 +301 0 FT931-3941 1 +301 0 FT931-4089 0 +301 0 FT931-4165 0 +301 0 FT931-4939 0 +301 0 FT931-4977 0 +301 0 FT931-5072 0 +301 0 FT931-6121 0 +301 0 FT931-6235 0 +301 0 FT931-682 0 +301 0 FT931-7337 0 +301 0 FT931-7529 0 +301 0 FT931-7536 0 +301 0 FT931-7881 0 +301 0 FT931-8991 0 +301 0 FT931-9181 0 +301 0 FT931-9535 0 +301 0 FT931-9665 0 +301 0 FT931-9667 0 +301 0 FT931-9798 0 +301 0 FT932-1131 0 +301 0 FT932-11505 0 +301 0 FT932-12261 0 +301 0 FT932-12610 0 +301 0 FT932-13676 0 +301 0 FT932-14690 0 +301 0 FT932-2315 0 +301 0 FT932-2874 0 +301 0 FT932-3130 1 +301 0 FT932-3286 0 +301 0 FT932-3322 0 +301 0 FT932-3329 0 +301 0 FT932-3331 0 +301 0 FT932-3336 0 +301 0 FT932-3338 0 +301 0 FT932-41 0 +301 0 FT932-4538 0 +301 0 FT932-4950 0 +301 0 FT932-4965 1 +301 0 FT932-5074 0 +301 0 FT932-5376 1 +301 0 FT932-5377 1 +301 0 FT932-5629 0 +301 0 FT932-5672 0 +301 0 FT932-6233 0 +301 0 FT932-6340 0 +301 0 FT932-6347 0 +301 0 FT932-7056 1 +301 0 FT932-7266 0 +301 0 FT932-7295 0 +301 0 FT932-8233 0 +301 0 FT933-10064 0 +301 0 FT933-11054 0 +301 0 FT933-11067 0 +301 0 FT933-11804 1 +301 0 FT933-12030 0 +301 0 FT933-1329 0 +301 0 FT933-1331 0 +301 0 FT933-1338 0 +301 0 FT933-13408 0 +301 0 FT933-13528 0 +301 0 FT933-15522 0 +301 0 FT933-15581 0 +301 0 FT933-15697 0 +301 0 FT933-1600 0 +301 0 FT933-16366 0 +301 0 FT933-16962 0 +301 0 FT933-17008 1 +301 0 FT933-1718 0 +301 0 FT933-2139 0 +301 0 FT933-2224 1 +301 0 FT933-279 0 +301 0 FT933-4677 0 +301 0 FT933-550 0 +301 0 FT933-582 0 +301 0 FT933-6786 0 +301 0 FT933-6924 0 +301 0 FT933-6966 0 +301 0 FT933-6971 0 +301 0 FT933-7993 0 +301 0 FT933-8067 0 +301 0 FT934-10491 1 +301 0 FT934-10543 0 +301 0 FT934-10783 0 +301 0 FT934-11015 0 +301 0 FT934-11658 0 +301 0 FT934-11945 0 +301 0 FT934-12578 0 +301 0 FT934-13302 0 +301 0 FT934-14820 0 +301 0 FT934-16551 0 +301 0 FT934-17146 0 +301 0 FT934-2267 0 +301 0 FT934-2699 0 +301 0 FT934-3452 0 +301 0 FT934-4154 0 +301 0 FT934-4340 0 +301 0 FT934-4582 0 +301 0 FT934-5231 0 +301 0 FT934-5726 0 +301 0 FT934-5891 0 +301 0 FT934-6874 0 +301 0 FT934-7013 0 +301 0 FT934-7093 0 +301 0 FT934-7094 0 +301 0 FT934-7631 0 +301 0 FT934-7660 0 +301 0 FT934-8411 0 +301 0 FT934-8545 0 +301 0 FT934-8632 0 +301 0 FT934-8633 0 +301 0 FT934-8640 0 +301 0 FT941-10546 0 +301 0 FT941-10611 1 +301 0 FT941-11262 0 +301 0 FT941-11279 0 +301 0 FT941-11449 0 +301 0 FT941-11505 0 +301 0 FT941-12402 0 +301 0 FT941-12805 0 +301 0 FT941-13151 1 +301 0 FT941-13349 0 +301 0 FT941-14742 0 +301 0 FT941-14810 0 +301 0 FT941-15027 0 +301 0 FT941-15378 0 +301 0 FT941-15631 0 +301 0 FT941-1682 0 +301 0 FT941-16929 0 +301 0 FT941-17064 0 +301 0 FT941-2244 0 +301 0 FT941-3237 1 +301 0 FT941-4259 0 +301 0 FT941-5289 0 +301 0 FT941-5453 1 +301 0 FT941-8491 0 +301 0 FT941-8966 0 +301 0 FT941-9876 0 +301 0 FT942-10163 0 +301 0 FT942-10977 0 +301 0 FT942-11067 0 +301 0 FT942-11396 0 +301 0 FT942-12197 0 +301 0 FT942-13293 0 +301 0 FT942-13766 0 +301 0 FT942-14060 0 +301 0 FT942-1417 0 +301 0 FT942-14542 0 +301 0 FT942-14609 0 +301 0 FT942-14967 0 +301 0 FT942-15220 0 +301 0 FT942-16403 0 +301 0 FT942-17001 1 +301 0 FT942-17066 0 +301 0 FT942-1711 0 +301 0 FT942-1715 0 +301 0 FT942-187 0 +301 0 FT942-2876 0 +301 0 FT942-2882 0 +301 0 FT942-3474 0 +301 0 FT942-3714 0 +301 0 FT942-4368 0 +301 0 FT942-5157 0 +301 0 FT942-5274 0 +301 0 FT942-5466 0 +301 0 FT942-6404 0 +301 0 FT942-6526 0 +301 0 FT942-7117 0 +301 0 FT942-7322 0 +301 0 FT942-7335 0 +301 0 FT942-7403 0 +301 0 FT942-792 1 +301 0 FT942-852 0 +301 0 FT942-8529 0 +301 0 FT942-8530 0 +301 0 FT942-8808 0 +301 0 FT942-885 0 +301 0 FT942-933 0 +301 0 FT942-9466 0 +301 0 FT942-9490 0 +301 0 FT942-9715 0 +301 0 FT943-11739 0 +301 0 FT943-12965 0 +301 0 FT943-13315 0 +301 0 FT943-13339 0 +301 0 FT943-14383 0 +301 0 FT943-15429 0 +301 0 FT943-15437 0 +301 0 FT943-15910 0 +301 0 FT943-16238 1 +301 0 FT943-16477 1 +301 0 FT943-16618 0 +301 0 FT943-2156 0 +301 0 FT943-2588 0 +301 0 FT943-295 0 +301 0 FT943-3533 1 +301 0 FT943-3953 0 +301 0 FT943-4417 0 +301 0 FT943-505 0 +301 0 FT943-5051 0 +301 0 FT943-5111 0 +301 0 FT943-5179 0 +301 0 FT943-5341 0 +301 0 FT943-5355 0 +301 0 FT943-5577 0 +301 0 FT943-6423 0 +301 0 FT943-726 0 +301 0 FT943-8128 0 +301 0 FT943-8527 0 +301 0 FT943-8670 0 +301 0 FT943-8942 0 +301 0 FT943-8961 0 +301 0 FT944-10136 0 +301 0 FT944-10634 0 +301 0 FT944-10635 1 +301 0 FT944-10673 0 +301 0 FT944-10675 0 +301 0 FT944-10676 0 +301 0 FT944-10779 0 +301 0 FT944-11113 0 +301 0 FT944-11625 0 +301 0 FT944-12104 0 +301 0 FT944-12173 1 +301 0 FT944-12949 0 +301 0 FT944-1350 0 +301 0 FT944-14183 0 +301 0 FT944-14184 0 +301 0 FT944-15443 0 +301 0 FT944-15444 0 +301 0 FT944-1692 0 +301 0 FT944-1808 1 +301 0 FT944-18166 0 +301 0 FT944-18167 0 +301 0 FT944-18184 0 +301 0 FT944-2231 1 +301 0 FT944-2497 0 +301 0 FT944-2600 0 +301 0 FT944-3492 0 +301 0 FT944-4020 0 +301 0 FT944-4116 0 +301 0 FT944-4735 0 +301 0 FT944-4901 0 +301 0 FT944-5537 0 +301 0 FT944-5679 0 +301 0 FT944-5749 0 +301 0 FT944-7669 1 +301 0 FT944-7867 0 +301 0 FT944-8161 0 +301 0 FT944-8297 1 +301 0 LA010290-0076 0 +301 0 LA010590-0084 1 +301 0 LA011290-0184 0 +301 0 LA011390-0046 1 +301 0 LA011390-0156 1 +301 0 LA011490-0115 1 +301 0 LA011790-0128 1 +301 0 LA011890-0125 1 +301 0 LA011990-0102 1 +301 0 LA012090-0101 0 +301 0 LA012190-0120 1 +301 0 LA012290-0053 0 +301 0 LA012690-0169 1 +301 0 LA012890-0073 1 +301 0 LA013190-0012 0 +301 0 LA021089-0177 0 +301 0 LA021590-0204 1 +301 0 LA021690-0049 1 +301 0 LA021790-0127 0 +301 0 LA022590-0191 1 +301 0 LA022689-0075 0 +301 0 LA022790-0089 1 +301 0 LA030290-0106 0 +301 0 LA030490-0017 0 +301 0 LA030490-0071 0 +301 0 LA031190-0216 0 +301 0 LA031289-0074 0 +301 0 LA031490-0140 0 +301 0 LA031690-0077 0 +301 0 LA032090-0091 0 +301 0 LA032189-0097 0 +301 0 LA032790-0103 1 +301 0 LA040689-0155 0 +301 0 LA041189-0055 0 +301 0 LA041389-0038 1 +301 0 LA041390-0018 0 +301 0 LA041589-0014 0 +301 0 LA041689-0150 1 +301 0 LA041689-0190 0 +301 0 LA041690-0050 0 +301 0 LA041690-0051 0 +301 0 LA041789-0008 0 +301 0 LA041790-0054 0 +301 0 LA041790-0055 0 +301 0 LA041890-0075 1 +301 0 LA041989-0027 0 +301 0 LA042190-0078 0 +301 0 LA042289-0040 0 +301 0 LA042390-0099 0 +301 0 LA042690-0169 0 +301 0 LA042890-0015 0 +301 0 LA042890-0151 0 +301 0 LA042989-0116 0 +301 0 LA043089-0169 0 +301 0 LA050189-0063 0 +301 0 LA050489-0093 0 +301 0 LA050590-0027 0 +301 0 LA050590-0048 0 +301 0 LA050690-0134 1 +301 0 LA050690-0145 0 +301 0 LA050690-0149 0 +301 0 LA050789-0006 1 +301 0 LA050789-0007 1 +301 0 LA050990-0077 0 +301 0 LA050990-0078 0 +301 0 LA050990-0116 0 +301 0 LA051190-0064 0 +301 0 LA051389-0039 1 +301 0 LA051390-0175 1 +301 0 LA051590-0064 0 +301 0 LA051690-0108 1 +301 0 LA052090-0088 0 +301 0 LA052090-0143 1 +301 0 LA052189-0123 0 +301 0 LA052190-0021 0 +301 0 LA052190-0064 1 +301 0 LA052289-0047 0 +301 0 LA052490-0139 0 +301 0 LA052690-0037 0 +301 0 LA052690-0142 0 +301 0 LA052890-0046 0 +301 0 LA052990-0018 0 +301 0 LA053089-0075 0 +301 0 LA053190-0175 0 +301 0 LA060489-0196 0 +301 0 LA060490-0021 0 +301 0 LA060490-0122 0 +301 0 LA060590-0010 0 +301 0 LA060790-0159 0 +301 0 LA060990-0077 0 +301 0 LA061189-0173 0 +301 0 LA061190-0085 0 +301 0 LA061190-0112 0 +301 0 LA061289-0051 0 +301 0 LA061290-0117 0 +301 0 LA061389-0060 0 +301 0 LA061390-0056 0 +301 0 LA061490-0229 0 +301 0 LA061590-0010 0 +301 0 LA061690-0021 0 +301 0 LA061690-0030 0 +301 0 LA061789-0027 0 +301 0 LA061789-0028 0 +301 0 LA061790-0205 0 +301 0 LA062090-0094 0 +301 0 LA062189-0012 0 +301 0 LA062189-0052 0 +301 0 LA062189-0067 0 +301 0 LA062390-0041 0 +301 0 LA062690-0041 0 +301 0 LA062890-0206 0 +301 0 LA062989-0196 1 +301 0 LA063089-0061 1 +301 0 LA070289-0147 0 +301 0 LA070289-0171 1 +301 0 LA070290-0003 0 +301 0 LA070290-0051 0 +301 0 LA070590-0016 0 +301 0 LA070590-0097 0 +301 0 LA070689-0122 1 +301 0 LA070690-0095 0 +301 0 LA070790-0061 0 +301 0 LA070890-0079 0 +301 0 LA070890-0080 0 +301 0 LA071089-0065 0 +301 0 LA071190-0028 0 +301 0 LA071290-0123 1 +301 0 LA071489-0020 1 +301 0 LA071490-0024 0 +301 0 LA071690-0047 1 +301 0 LA071889-0026 0 +301 0 LA071990-0150 0 +301 0 LA071990-0165 0 +301 0 LA072090-0146 0 +301 0 LA072090-0147 0 +301 0 LA072490-0033 0 +301 0 LA072590-0115 0 +301 0 LA072689-0016 0 +301 0 LA072789-0050 0 +301 0 LA072890-0052 0 +301 0 LA073189-0043 0 +301 0 LA080489-0020 0 +301 0 LA080590-0195 0 +301 0 LA080689-0093 0 +301 0 LA080889-0098 0 +301 0 LA080890-0044 0 +301 0 LA080989-0129 0 +301 0 LA080990-0216 0 +301 0 LA081089-0167 1 +301 0 LA081190-0051 0 +301 0 LA081190-0108 0 +301 0 LA081589-0042 0 +301 0 LA081690-0102 0 +301 0 LA081789-0093 1 +301 0 LA081790-0083 0 +301 0 LA081889-0147 1 +301 0 LA081989-0048 0 +301 0 LA081990-0158 0 +301 0 LA082089-0163 0 +301 0 LA082190-0014 0 +301 0 LA082190-0015 0 +301 0 LA082389-0028 0 +301 0 LA082389-0039 1 +301 0 LA082390-0176 0 +301 0 LA082489-0035 0 +301 0 LA082589-0079 1 +301 0 LA082589-0090 1 +301 0 LA082590-0019 0 +301 0 LA082689-0044 1 +301 0 LA082689-0054 1 +301 0 LA082789-0018 1 +301 0 LA082790-0022 1 +301 0 LA082889-0047 1 +301 0 LA082889-0056 1 +301 0 LA082989-0074 0 +301 0 LA083089-0017 1 +301 0 LA083089-0069 1 +301 0 LA083089-0072 1 +301 0 LA090189-0018 0 +301 0 LA090389-0097 0 +301 0 LA090389-0100 0 +301 0 LA090689-0015 0 +301 0 LA090689-0125 1 +301 0 LA090689-0130 1 +301 0 LA090690-0234 0 +301 0 LA090989-0075 1 +301 0 LA091089-0170 0 +301 0 LA091089-0172 0 +301 0 LA091089-0187 0 +301 0 LA091090-0038 0 +301 0 LA091189-0110 1 +301 0 LA091190-0096 0 +301 0 LA091190-0102 0 +301 0 LA091289-0135 1 +301 0 LA091289-0136 1 +301 0 LA091389-0053 1 +301 0 LA091390-0046 0 +301 0 LA091589-0045 1 +301 0 LA091689-0028 0 +301 0 LA092089-0143 1 +301 0 LA092090-0092 0 +301 0 LA092290-0094 0 +301 0 LA092489-0121 0 +301 0 LA092590-0019 0 +301 0 LA092789-0047 0 +301 0 LA092790-0128 0 +301 0 LA092989-0108 1 +301 0 LA100189-0205 0 +301 0 LA100289-0104 1 +301 0 LA100290-0067 0 +301 0 LA100390-0069 0 +301 0 LA100589-0136 1 +301 0 LA100789-0127 0 +301 0 LA100790-0068 0 +301 0 LA100989-0008 0 +301 0 LA101289-0126 1 +301 0 LA101389-0091 0 +301 0 LA101390-0083 0 +301 0 LA101589-0169 0 +301 0 LA101589-0174 1 +301 0 LA101590-0071 0 +301 0 LA101689-0002 0 +301 0 LA101789-0155 1 +301 0 LA102089-0025 1 +301 0 LA102289-0170 1 +301 0 LA102290-0116 0 +301 0 LA110990-0184 0 +301 0 LA112089-0024 0 +301 0 LA112489-0069 1 +301 0 LA112489-0141 0 +301 0 LA112489-0142 1 +301 0 LA112490-0089 0 +301 0 LA121089-0089 0 +301 0 LA121289-0096 1 +301 0 LA121389-0124 1 +301 0 LA121490-0027 1 +301 0 LA121589-0007 1 +301 0 LA121589-0184 0 +301 0 LA121689-0077 0 +301 0 LA121890-0057 0 +301 0 LA121890-0079 0 +301 0 LA121890-0086 0 +301 0 LA121990-0123 1 +301 0 LA122089-0109 0 +301 0 LA122389-0069 1 +301 0 LA122789-0009 0 +301 0 LA122889-0124 0 +301 0 LA123090-0148 0 +302 0 CR93E-10071 0 +302 0 CR93E-10276 0 +302 0 CR93E-10279 0 +302 0 CR93E-10462 0 +302 0 CR93E-10606 0 +302 0 CR93E-10799 0 +302 0 CR93E-11100 0 +302 0 CR93E-1648 0 +302 0 CR93E-1838 0 +302 0 CR93E-2180 1 +302 0 CR93E-2225 0 +302 0 CR93E-2236 0 +302 0 CR93E-2512 0 +302 0 CR93E-2563 0 +302 0 CR93E-2650 1 +302 0 CR93E-2849 0 +302 0 CR93E-307 0 +302 0 CR93E-3096 1 +302 0 CR93E-3616 0 +302 0 CR93E-3822 1 +302 0 CR93E-4208 0 +302 0 CR93E-4209 0 +302 0 CR93E-4517 0 +302 0 CR93E-4941 0 +302 0 CR93E-5211 0 +302 0 CR93E-5666 1 +302 0 CR93E-5775 1 +302 0 CR93E-5895 0 +302 0 CR93E-5954 0 +302 0 CR93E-6191 0 +302 0 CR93E-6321 0 +302 0 CR93E-6675 0 +302 0 CR93E-6901 1 +302 0 CR93E-7034 1 +302 0 CR93E-7062 0 +302 0 CR93E-7403 0 +302 0 CR93E-7619 0 +302 0 CR93E-7678 0 +302 0 CR93E-8012 0 +302 0 CR93E-8421 0 +302 0 CR93E-8424 0 +302 0 CR93E-8491 0 +302 0 CR93E-8701 0 +302 0 CR93E-8836 0 +302 0 CR93E-9545 1 +302 0 CR93E-9618 0 +302 0 CR93H-10042 0 +302 0 CR93H-10104 0 +302 0 CR93H-10242 0 +302 0 CR93H-10256 0 +302 0 CR93H-10308 0 +302 0 CR93H-10374 0 +302 0 CR93H-10402 0 +302 0 CR93H-10601 0 +302 0 CR93H-10602 0 +302 0 CR93H-10681 0 +302 0 CR93H-10921 0 +302 0 CR93H-1097 0 +302 0 CR93H-10989 0 +302 0 CR93H-11033 0 +302 0 CR93H-11034 0 +302 0 CR93H-11119 0 +302 0 CR93H-11521 0 +302 0 CR93H-11586 0 +302 0 CR93H-1159 0 +302 0 CR93H-11806 0 +302 0 CR93H-11894 0 +302 0 CR93H-11998 0 +302 0 CR93H-12017 0 +302 0 CR93H-12150 0 +302 0 CR93H-12168 0 +302 0 CR93H-12181 0 +302 0 CR93H-12217 0 +302 0 CR93H-12224 0 +302 0 CR93H-12498 0 +302 0 CR93H-12820 0 +302 0 CR93H-12830 0 +302 0 CR93H-12874 0 +302 0 CR93H-1298 0 +302 0 CR93H-12983 0 +302 0 CR93H-12988 0 +302 0 CR93H-13167 0 +302 0 CR93H-13205 0 +302 0 CR93H-13232 0 +302 0 CR93H-13263 0 +302 0 CR93H-13335 0 +302 0 CR93H-13506 0 +302 0 CR93H-13521 0 +302 0 CR93H-13595 0 +302 0 CR93H-13600 1 +302 0 CR93H-13615 0 +302 0 CR93H-13680 0 +302 0 CR93H-13927 0 +302 0 CR93H-14046 0 +302 0 CR93H-14072 0 +302 0 CR93H-14128 0 +302 0 CR93H-14130 0 +302 0 CR93H-14306 0 +302 0 CR93H-14325 0 +302 0 CR93H-14388 0 +302 0 CR93H-14392 0 +302 0 CR93H-14469 0 +302 0 CR93H-14591 0 +302 0 CR93H-14791 0 +302 0 CR93H-15024 0 +302 0 CR93H-15105 0 +302 0 CR93H-15119 0 +302 0 CR93H-15121 1 +302 0 CR93H-1532 0 +302 0 CR93H-15405 0 +302 0 CR93H-15424 0 +302 0 CR93H-15453 0 +302 0 CR93H-15477 0 +302 0 CR93H-15587 0 +302 0 CR93H-15608 0 +302 0 CR93H-15615 0 +302 0 CR93H-15727 1 +302 0 CR93H-15875 0 +302 0 CR93H-15950 0 +302 0 CR93H-16077 0 +302 0 CR93H-16128 0 +302 0 CR93H-16369 0 +302 0 CR93H-1639 0 +302 0 CR93H-1712 0 +302 0 CR93H-1769 0 +302 0 CR93H-185 0 +302 0 CR93H-2429 0 +302 0 CR93H-2431 0 +302 0 CR93H-2707 0 +302 0 CR93H-3144 0 +302 0 CR93H-3262 0 +302 0 CR93H-3295 0 +302 0 CR93H-3444 0 +302 0 CR93H-3459 0 +302 0 CR93H-3813 0 +302 0 CR93H-4042 0 +302 0 CR93H-416 0 +302 0 CR93H-4420 0 +302 0 CR93H-4489 0 +302 0 CR93H-4586 0 +302 0 CR93H-4635 0 +302 0 CR93H-4771 0 +302 0 CR93H-4879 0 +302 0 CR93H-4889 0 +302 0 CR93H-4922 0 +302 0 CR93H-5017 0 +302 0 CR93H-5053 0 +302 0 CR93H-5121 0 +302 0 CR93H-5189 0 +302 0 CR93H-5255 0 +302 0 CR93H-5554 0 +302 0 CR93H-5568 0 +302 0 CR93H-56 0 +302 0 CR93H-6221 0 +302 0 CR93H-6347 0 +302 0 CR93H-6422 0 +302 0 CR93H-6567 0 +302 0 CR93H-6621 0 +302 0 CR93H-6754 0 +302 0 CR93H-6912 0 +302 0 CR93H-7012 0 +302 0 CR93H-7013 0 +302 0 CR93H-7055 0 +302 0 CR93H-735 0 +302 0 CR93H-742 0 +302 0 CR93H-7554 0 +302 0 CR93H-7557 0 +302 0 CR93H-7870 0 +302 0 CR93H-7875 0 +302 0 CR93H-8042 0 +302 0 CR93H-8080 0 +302 0 CR93H-8122 0 +302 0 CR93H-8245 0 +302 0 CR93H-8248 0 +302 0 CR93H-8249 0 +302 0 CR93H-8460 0 +302 0 CR93H-8461 0 +302 0 CR93H-8590 0 +302 0 CR93H-8741 0 +302 0 CR93H-8789 0 +302 0 CR93H-8928 0 +302 0 CR93H-9009 0 +302 0 CR93H-9350 0 +302 0 CR93H-9427 0 +302 0 CR93H-9548 0 +302 0 CR93H-955 0 +302 0 CR93H-9576 0 +302 0 FBIS3-10615 0 +302 0 FBIS3-10855 0 +302 0 FBIS3-11418 0 +302 0 FBIS3-14832 0 +302 0 FBIS3-20548 1 +302 0 FBIS3-20810 0 +302 0 FBIS3-21356 0 +302 0 FBIS3-21404 0 +302 0 FBIS3-22119 0 +302 0 FBIS3-22470 0 +302 0 FBIS3-22471 0 +302 0 FBIS3-22476 0 +302 0 FBIS3-22477 0 +302 0 FBIS3-22480 0 +302 0 FBIS3-22482 0 +302 0 FBIS3-22486 0 +302 0 FBIS3-22487 0 +302 0 FBIS3-22508 0 +302 0 FBIS3-22523 0 +302 0 FBIS3-22525 0 +302 0 FBIS3-22535 0 +302 0 FBIS3-22539 1 +302 0 FBIS3-22545 0 +302 0 FBIS3-22547 0 +302 0 FBIS3-22559 0 +302 0 FBIS3-22560 1 +302 0 FBIS3-22570 0 +302 0 FBIS3-22581 0 +302 0 FBIS3-22589 1 +302 0 FBIS3-22590 0 +302 0 FBIS3-22591 0 +302 0 FBIS3-22592 0 +302 0 FBIS3-22593 0 +302 0 FBIS3-22597 0 +302 0 FBIS3-22598 0 +302 0 FBIS3-22600 0 +302 0 FBIS3-22633 0 +302 0 FBIS3-22642 0 +302 0 FBIS3-22647 0 +302 0 FBIS3-22679 0 +302 0 FBIS3-22680 0 +302 0 FBIS3-22681 0 +302 0 FBIS3-22693 0 +302 0 FBIS3-22695 0 +302 0 FBIS3-22696 0 +302 0 FBIS3-22697 0 +302 0 FBIS3-22698 0 +302 0 FBIS3-22699 0 +302 0 FBIS3-22700 0 +302 0 FBIS3-22702 0 +302 0 FBIS3-22706 0 +302 0 FBIS3-23 0 +302 0 FBIS3-23561 0 +302 0 FBIS3-23823 0 +302 0 FBIS3-23945 0 +302 0 FBIS3-23947 0 +302 0 FBIS3-24469 0 +302 0 FBIS3-24678 0 +302 0 FBIS3-2516 0 +302 0 FBIS3-26593 1 +302 0 FBIS3-27468 0 +302 0 FBIS3-2798 0 +302 0 FBIS3-28911 0 +302 0 FBIS3-29180 0 +302 0 FBIS3-30086 0 +302 0 FBIS3-34497 0 +302 0 FBIS3-3565 0 +302 0 FBIS3-3580 0 +302 0 FBIS3-36078 0 +302 0 FBIS3-37944 0 +302 0 FBIS3-37947 0 +302 0 FBIS3-39365 0 +302 0 FBIS3-40190 0 +302 0 FBIS3-41666 0 +302 0 FBIS3-41671 0 +302 0 FBIS3-41672 1 +302 0 FBIS3-41673 0 +302 0 FBIS3-41676 0 +302 0 FBIS3-41681 0 +302 0 FBIS3-41698 0 +302 0 FBIS3-41710 0 +302 0 FBIS3-41713 0 +302 0 FBIS3-41724 1 +302 0 FBIS3-41734 0 +302 0 FBIS3-41739 0 +302 0 FBIS3-41761 0 +302 0 FBIS3-41790 0 +302 0 FBIS3-41809 0 +302 0 FBIS3-41815 0 +302 0 FBIS3-4209 0 +302 0 FBIS3-42399 0 +302 0 FBIS3-42469 0 +302 0 FBIS3-42726 0 +302 0 FBIS3-43132 0 +302 0 FBIS3-43186 0 +302 0 FBIS3-43595 0 +302 0 FBIS3-43781 0 +302 0 FBIS3-44530 0 +302 0 FBIS3-44712 0 +302 0 FBIS3-45822 0 +302 0 FBIS3-46348 0 +302 0 FBIS3-46614 0 +302 0 FBIS3-5103 0 +302 0 FBIS3-58 0 +302 0 FBIS3-60336 0 +302 0 FBIS3-60342 0 +302 0 FBIS3-60401 0 +302 0 FBIS3-60403 1 +302 0 FBIS3-60404 1 +302 0 FBIS3-60405 1 +302 0 FBIS3-60419 1 +302 0 FBIS3-60422 0 +302 0 FBIS3-60440 0 +302 0 FBIS3-60444 0 +302 0 FBIS3-60448 0 +302 0 FBIS3-60450 1 +302 0 FBIS3-60454 0 +302 0 FBIS3-60462 0 +302 0 FBIS3-60466 0 +302 0 FBIS3-60503 1 +302 0 FBIS3-60510 1 +302 0 FBIS3-60513 0 +302 0 FBIS3-60514 0 +302 0 FBIS3-60529 0 +302 0 FBIS3-60546 0 +302 0 FBIS3-60553 0 +302 0 FBIS3-60559 0 +302 0 FBIS3-60560 0 +302 0 FBIS3-60561 1 +302 0 FBIS3-60562 1 +302 0 FBIS3-60563 0 +302 0 FBIS3-60564 0 +302 0 FBIS3-60565 0 +302 0 FBIS3-60575 0 +302 0 FBIS3-61373 1 +302 0 FBIS3-6884 0 +302 0 FBIS3-9904 1 +302 0 FBIS4-10721 0 +302 0 FBIS4-13889 0 +302 0 FBIS4-1627 0 +302 0 FBIS4-16647 0 +302 0 FBIS4-1860 0 +302 0 FBIS4-1866 0 +302 0 FBIS4-19 0 +302 0 FBIS4-19733 0 +302 0 FBIS4-20472 0 +302 0 FBIS4-20504 0 +302 0 FBIS4-20697 0 +302 0 FBIS4-2128 0 +302 0 FBIS4-2204 0 +302 0 FBIS4-22716 1 +302 0 FBIS4-22779 0 +302 0 FBIS4-22945 0 +302 0 FBIS4-23089 0 +302 0 FBIS4-23131 0 +302 0 FBIS4-2439 0 +302 0 FBIS4-24438 1 +302 0 FBIS4-26718 0 +302 0 FBIS4-27941 0 +302 0 FBIS4-2880 1 +302 0 FBIS4-29 0 +302 0 FBIS4-30023 0 +302 0 FBIS4-30637 1 +302 0 FBIS4-31787 0 +302 0 FBIS4-32883 0 +302 0 FBIS4-33063 1 +302 0 FBIS4-33295 0 +302 0 FBIS4-33435 1 +302 0 FBIS4-33740 0 +302 0 FBIS4-34379 0 +302 0 FBIS4-38133 1 +302 0 FBIS4-40426 0 +302 0 FBIS4-4067 0 +302 0 FBIS4-42 0 +302 0 FBIS4-4241 1 +302 0 FBIS4-43829 0 +302 0 FBIS4-43830 0 +302 0 FBIS4-43893 0 +302 0 FBIS4-45490 0 +302 0 FBIS4-45613 1 +302 0 FBIS4-45832 0 +302 0 FBIS4-45833 0 +302 0 FBIS4-45834 0 +302 0 FBIS4-45842 0 +302 0 FBIS4-45844 1 +302 0 FBIS4-45884 0 +302 0 FBIS4-46469 0 +302 0 FBIS4-46649 0 +302 0 FBIS4-46923 0 +302 0 FBIS4-47552 0 +302 0 FBIS4-47588 0 +302 0 FBIS4-49021 0 +302 0 FBIS4-49245 0 +302 0 FBIS4-50133 0 +302 0 FBIS4-50706 0 +302 0 FBIS4-50850 0 +302 0 FBIS4-50959 0 +302 0 FBIS4-52090 0 +302 0 FBIS4-5325 1 +302 0 FBIS4-55803 0 +302 0 FBIS4-57220 1 +302 0 FBIS4-58281 0 +302 0 FBIS4-60762 0 +302 0 FBIS4-61029 0 +302 0 FBIS4-62223 0 +302 0 FBIS4-66030 0 +302 0 FBIS4-66069 0 +302 0 FBIS4-66161 0 +302 0 FBIS4-66185 0 +302 0 FBIS4-67533 0 +302 0 FBIS4-67599 0 +302 0 FBIS4-67611 0 +302 0 FBIS4-67613 0 +302 0 FBIS4-67614 0 +302 0 FBIS4-67618 0 +302 0 FBIS4-67646 0 +302 0 FBIS4-67647 0 +302 0 FBIS4-67648 0 +302 0 FBIS4-67649 0 +302 0 FBIS4-67650 0 +302 0 FBIS4-67651 0 +302 0 FBIS4-67698 0 +302 0 FBIS4-67699 0 +302 0 FBIS4-67701 1 +302 0 FBIS4-67707 1 +302 0 FBIS4-67720 1 +302 0 FBIS4-68893 0 +302 0 FR940104-0-00034 0 +302 0 FR940126-2-00100 0 +302 0 FR940126-2-00101 0 +302 0 FR940126-2-00102 0 +302 0 FR940126-2-00103 0 +302 0 FR940126-2-00104 0 +302 0 FR940126-2-00105 0 +302 0 FR940126-2-00106 1 +302 0 FR940126-2-00107 0 +302 0 FR940126-2-00108 0 +302 0 FR940202-2-00112 0 +302 0 FR940202-2-00114 0 +302 0 FR940202-2-00133 0 +302 0 FR940202-2-00140 0 +302 0 FR940202-2-00143 0 +302 0 FR940203-0-00084 0 +302 0 FR940207-2-00089 1 +302 0 FR940314-1-00041 0 +302 0 FR940317-2-00076 0 +302 0 FR940404-2-00093 0 +302 0 FR940406-0-00190 0 +302 0 FR940413-2-00068 0 +302 0 FR940414-0-00029 0 +302 0 FR940419-2-00062 0 +302 0 FR940425-2-00078 1 +302 0 FR940425-2-00079 1 +302 0 FR940425-2-00080 1 +302 0 FR940425-2-00081 0 +302 0 FR940429-2-00041 0 +302 0 FR940505-2-00041 0 +302 0 FR940513-2-00003 0 +302 0 FR940513-2-00096 0 +302 0 FR940527-1-00163 0 +302 0 FR940527-2-00071 0 +302 0 FR940602-1-00023 0 +302 0 FR940602-2-00077 0 +302 0 FR940603-2-00060 1 +302 0 FR940620-2-00115 0 +302 0 FR940620-2-00116 0 +302 0 FR940620-2-00117 1 +302 0 FR940620-2-00118 0 +302 0 FR940620-2-00119 0 +302 0 FR940620-2-00120 0 +302 0 FR940620-2-00121 0 +302 0 FR940620-2-00122 0 +302 0 FR940620-2-00123 0 +302 0 FR940628-1-00016 0 +302 0 FR940628-2-00002 0 +302 0 FR940705-2-00186 0 +302 0 FR940706-2-00076 0 +302 0 FR940713-2-00061 0 +302 0 FR940713-2-00062 0 +302 0 FR940719-2-00089 0 +302 0 FR940721-2-00030 0 +302 0 FR940721-2-00045 0 +302 0 FR940721-2-00046 0 +302 0 FR940725-0-00049 0 +302 0 FR940728-2-00084 0 +302 0 FR940728-2-00089 0 +302 0 FR940804-2-00088 0 +302 0 FR940817-2-00237 0 +302 0 FR940822-0-00027 0 +302 0 FR940822-0-00067 0 +302 0 FR940825-2-00076 0 +302 0 FR940825-2-00078 0 +302 0 FR940831-2-00064 0 +302 0 FR940902-1-00048 0 +302 0 FR940922-2-00127 0 +302 0 FR940928-2-00043 0 +302 0 FR941003-2-00031 0 +302 0 FR941004-2-00099 0 +302 0 FR941006-1-00005 0 +302 0 FR941006-1-00006 0 +302 0 FR941006-1-00007 0 +302 0 FR941012-2-00078 0 +302 0 FR941013-2-00056 0 +302 0 FR941027-1-00030 0 +302 0 FR941102-1-00119 0 +302 0 FR941103-2-00086 0 +302 0 FR941107-2-00231 0 +302 0 FR941107-2-00232 0 +302 0 FR941107-2-00233 0 +302 0 FR941122-2-00060 0 +302 0 FR941130-0-00122 0 +302 0 FR941202-2-00007 0 +302 0 FR941206-1-00134 0 +302 0 FR941206-2-00055 0 +302 0 FR941213-0-00084 0 +302 0 FR941213-2-00039 0 +302 0 FT911-1088 0 +302 0 FT911-1471 0 +302 0 FT911-2081 0 +302 0 FT911-2372 0 +302 0 FT911-241 0 +302 0 FT911-2589 0 +302 0 FT911-2707 0 +302 0 FT911-2968 0 +302 0 FT911-460 0 +302 0 FT911-4947 0 +302 0 FT911-5041 0 +302 0 FT911-624 0 +302 0 FT911-679 0 +302 0 FT911-870 0 +302 0 FT921-10340 0 +302 0 FT921-10626 0 +302 0 FT921-10742 0 +302 0 FT921-10750 0 +302 0 FT921-10807 0 +302 0 FT921-11140 0 +302 0 FT921-1150 0 +302 0 FT921-1211 0 +302 0 FT921-12227 0 +302 0 FT921-12230 0 +302 0 FT921-12556 0 +302 0 FT921-13207 0 +302 0 FT921-13254 0 +302 0 FT921-13279 0 +302 0 FT921-13530 0 +302 0 FT921-14291 0 +302 0 FT921-14537 1 +302 0 FT921-14986 0 +302 0 FT921-15281 0 +302 0 FT921-15869 0 +302 0 FT921-16061 1 +302 0 FT921-16191 0 +302 0 FT921-16376 0 +302 0 FT921-2350 0 +302 0 FT921-2351 0 +302 0 FT921-3467 0 +302 0 FT921-4 0 +302 0 FT921-4035 0 +302 0 FT921-4317 0 +302 0 FT921-4540 0 +302 0 FT921-485 0 +302 0 FT921-5034 0 +302 0 FT921-5614 0 +302 0 FT921-5766 0 +302 0 FT921-5928 0 +302 0 FT921-7582 0 +302 0 FT921-7648 0 +302 0 FT921-7765 1 +302 0 FT921-7784 0 +302 0 FT921-8313 0 +302 0 FT921-8328 0 +302 0 FT921-8507 0 +302 0 FT921-9310 0 +302 0 FT921-953 0 +302 0 FT921-956 0 +302 0 FT921-9578 0 +302 0 FT922-10446 0 +302 0 FT922-11044 0 +302 0 FT922-12505 0 +302 0 FT922-12737 0 +302 0 FT922-13742 0 +302 0 FT922-14371 0 +302 0 FT922-1674 0 +302 0 FT922-1893 0 +302 0 FT922-220 0 +302 0 FT922-4529 0 +302 0 FT922-4560 0 +302 0 FT922-5004 0 +302 0 FT922-6652 0 +302 0 FT922-7819 0 +302 0 FT922-8619 0 +302 0 FT922-8779 0 +302 0 FT922-884 0 +302 0 FT922-9023 0 +302 0 FT922-9487 0 +302 0 FT922-9650 0 +302 0 FT923-10404 0 +302 0 FT923-1076 0 +302 0 FT923-11035 0 +302 0 FT923-11081 0 +302 0 FT923-11184 0 +302 0 FT923-11350 0 +302 0 FT923-11474 0 +302 0 FT923-11885 0 +302 0 FT923-12051 0 +302 0 FT923-12060 0 +302 0 FT923-12277 0 +302 0 FT923-14971 0 +302 0 FT923-15575 0 +302 0 FT923-1988 0 +302 0 FT923-2286 0 +302 0 FT923-2399 0 +302 0 FT923-3060 0 +302 0 FT923-4273 0 +302 0 FT923-5927 0 +302 0 FT923-6011 0 +302 0 FT923-6887 0 +302 0 FT923-7657 0 +302 0 FT923-8033 0 +302 0 FT923-8100 0 +302 0 FT923-8415 0 +302 0 FT923-8509 0 +302 0 FT923-8974 0 +302 0 FT924-10626 0 +302 0 FT924-10652 1 +302 0 FT924-10987 0 +302 0 FT924-11314 0 +302 0 FT924-11618 0 +302 0 FT924-1254 0 +302 0 FT924-13622 0 +302 0 FT924-14004 0 +302 0 FT924-14826 0 +302 0 FT924-15013 0 +302 0 FT924-1638 0 +302 0 FT924-1993 0 +302 0 FT924-2803 0 +302 0 FT924-2958 0 +302 0 FT924-3217 0 +302 0 FT924-3519 0 +302 0 FT924-3628 0 +302 0 FT924-4528 0 +302 0 FT924-4737 0 +302 0 FT924-5037 0 +302 0 FT924-5353 0 +302 0 FT924-5517 0 +302 0 FT924-6467 0 +302 0 FT924-7956 0 +302 0 FT924-8024 0 +302 0 FT924-8515 0 +302 0 FT924-9161 0 +302 0 FT924-9431 0 +302 0 FT931-1039 0 +302 0 FT931-11085 1 +302 0 FT931-11767 0 +302 0 FT931-11857 0 +302 0 FT931-12577 0 +302 0 FT931-12903 0 +302 0 FT931-13033 0 +302 0 FT931-13300 0 +302 0 FT931-13512 0 +302 0 FT931-14151 0 +302 0 FT931-14647 0 +302 0 FT931-15527 0 +302 0 FT931-15924 0 +302 0 FT931-16133 0 +302 0 FT931-17149 0 +302 0 FT931-2526 0 +302 0 FT931-3052 0 +302 0 FT931-3883 0 +302 0 FT931-5665 0 +302 0 FT931-5795 0 +302 0 FT931-5859 0 +302 0 FT931-652 0 +302 0 FT931-7060 1 +302 0 FT931-7525 0 +302 0 FT931-8050 0 +302 0 FT931-8993 0 +302 0 FT931-9496 0 +302 0 FT931-9886 0 +302 0 FT932-10099 0 +302 0 FT932-10160 0 +302 0 FT932-10547 0 +302 0 FT932-13227 0 +302 0 FT932-13552 0 +302 0 FT932-14090 0 +302 0 FT932-14875 0 +302 0 FT932-15013 0 +302 0 FT932-15388 0 +302 0 FT932-16160 0 +302 0 FT932-16821 0 +302 0 FT932-16878 0 +302 0 FT932-1821 0 +302 0 FT932-2282 0 +302 0 FT932-2288 0 +302 0 FT932-2515 0 +302 0 FT932-2516 0 +302 0 FT932-3794 0 +302 0 FT932-3963 0 +302 0 FT932-4292 0 +302 0 FT932-4317 0 +302 0 FT932-4441 0 +302 0 FT932-4485 1 +302 0 FT932-4585 0 +302 0 FT932-4805 0 +302 0 FT932-5288 0 +302 0 FT932-5508 0 +302 0 FT932-7262 0 +302 0 FT932-769 0 +302 0 FT932-7800 0 +302 0 FT932-7948 0 +302 0 FT932-7977 0 +302 0 FT932-9367 0 +302 0 FT932-9696 0 +302 0 FT933-11998 0 +302 0 FT933-12022 0 +302 0 FT933-1235 0 +302 0 FT933-13206 0 +302 0 FT933-13870 0 +302 0 FT933-14295 0 +302 0 FT933-14910 0 +302 0 FT933-15797 0 +302 0 FT933-15814 0 +302 0 FT933-15869 0 +302 0 FT933-16536 0 +302 0 FT933-16948 0 +302 0 FT933-2728 0 +302 0 FT933-3434 0 +302 0 FT933-3705 0 +302 0 FT933-4186 0 +302 0 FT933-4445 0 +302 0 FT933-4707 0 +302 0 FT933-528 0 +302 0 FT933-5736 0 +302 0 FT933-5756 0 +302 0 FT933-6719 0 +302 0 FT933-6895 0 +302 0 FT933-7164 0 +302 0 FT933-7438 0 +302 0 FT933-7608 0 +302 0 FT933-7908 0 +302 0 FT933-7926 0 +302 0 FT933-8272 0 +302 0 FT933-8849 0 +302 0 FT933-8865 0 +302 0 FT933-9041 0 +302 0 FT933-9555 0 +302 0 FT934-10458 0 +302 0 FT934-11977 0 +302 0 FT934-1206 1 +302 0 FT934-1290 0 +302 0 FT934-14536 0 +302 0 FT934-17471 0 +302 0 FT934-3190 0 +302 0 FT934-4508 0 +302 0 FT934-5058 0 +302 0 FT934-5207 0 +302 0 FT934-576 0 +302 0 FT934-5915 0 +302 0 FT934-7018 0 +302 0 FT934-8210 0 +302 0 FT934-9726 0 +302 0 FT934-9860 0 +302 0 FT941-10023 0 +302 0 FT941-12410 1 +302 0 FT941-12426 0 +302 0 FT941-13315 0 +302 0 FT941-139 0 +302 0 FT941-14380 0 +302 0 FT941-1494 0 +302 0 FT941-15224 0 +302 0 FT941-1547 0 +302 0 FT941-157 0 +302 0 FT941-15832 0 +302 0 FT941-15975 0 +302 0 FT941-16404 0 +302 0 FT941-16414 0 +302 0 FT941-1656 0 +302 0 FT941-3236 0 +302 0 FT941-4398 0 +302 0 FT941-5519 0 +302 0 FT941-8037 0 +302 0 FT941-830 0 +302 0 FT941-9456 0 +302 0 FT941-9662 0 +302 0 FT941-9667 0 +302 0 FT942-10381 0 +302 0 FT942-10460 0 +302 0 FT942-11048 0 +302 0 FT942-11913 0 +302 0 FT942-12479 0 +302 0 FT942-12526 0 +302 0 FT942-13032 0 +302 0 FT942-14203 0 +302 0 FT942-14871 0 +302 0 FT942-14924 0 +302 0 FT942-16178 0 +302 0 FT942-16294 0 +302 0 FT942-16430 0 +302 0 FT942-16780 0 +302 0 FT942-17260 0 +302 0 FT942-17527 0 +302 0 FT942-1963 0 +302 0 FT942-2228 0 +302 0 FT942-3396 0 +302 0 FT942-4193 0 +302 0 FT942-4919 0 +302 0 FT942-5484 0 +302 0 FT942-5975 0 +302 0 FT942-6115 0 +302 0 FT942-7389 0 +302 0 FT942-7603 0 +302 0 FT942-9189 0 +302 0 FT942-9431 0 +302 0 FT943-1002 0 +302 0 FT943-10062 0 +302 0 FT943-10078 0 +302 0 FT943-11927 0 +302 0 FT943-12041 0 +302 0 FT943-12755 0 +302 0 FT943-13379 0 +302 0 FT943-14080 0 +302 0 FT943-14403 0 +302 0 FT943-14543 0 +302 0 FT943-14605 0 +302 0 FT943-14973 0 +302 0 FT943-15331 0 +302 0 FT943-15886 0 +302 0 FT943-16116 0 +302 0 FT943-16211 0 +302 0 FT943-16744 0 +302 0 FT943-1828 0 +302 0 FT943-208 0 +302 0 FT943-2193 0 +302 0 FT943-2776 0 +302 0 FT943-310 0 +302 0 FT943-3268 0 +302 0 FT943-3526 0 +302 0 FT943-4387 0 +302 0 FT943-4843 0 +302 0 FT943-4851 0 +302 0 FT943-500 0 +302 0 FT943-677 0 +302 0 FT943-69 0 +302 0 FT943-760 0 +302 0 FT943-8114 0 +302 0 FT943-8355 0 +302 0 FT943-8860 0 +302 0 FT943-8941 0 +302 0 FT943-9445 0 +302 0 FT943-9699 0 +302 0 FT943-9853 0 +302 0 FT944-10282 0 +302 0 FT944-10542 0 +302 0 FT944-10829 0 +302 0 FT944-10864 0 +302 0 FT944-10925 0 +302 0 FT944-11442 0 +302 0 FT944-11577 0 +302 0 FT944-11878 0 +302 0 FT944-13248 0 +302 0 FT944-14051 0 +302 0 FT944-14098 0 +302 0 FT944-14103 0 +302 0 FT944-14141 0 +302 0 FT944-14564 0 +302 0 FT944-14870 0 +302 0 FT944-15576 0 +302 0 FT944-15805 0 +302 0 FT944-16329 0 +302 0 FT944-17020 0 +302 0 FT944-17070 0 +302 0 FT944-17268 0 +302 0 FT944-18039 0 +302 0 FT944-18407 0 +302 0 FT944-18515 0 +302 0 FT944-18645 0 +302 0 FT944-1991 0 +302 0 FT944-2202 0 +302 0 FT944-2489 1 +302 0 FT944-2592 1 +302 0 FT944-3412 0 +302 0 FT944-3523 0 +302 0 FT944-3755 0 +302 0 FT944-5030 0 +302 0 FT944-567 0 +302 0 FT944-5940 0 +302 0 FT944-6228 0 +302 0 FT944-6607 0 +302 0 FT944-8304 0 +302 0 FT944-8752 0 +302 0 FT944-9658 0 +302 0 FT944-9872 0 +302 0 LA010490-0100 0 +302 0 LA010490-0127 0 +302 0 LA010589-0059 1 +302 0 LA010690-0044 0 +302 0 LA010789-0007 0 +302 0 LA011189-0091 0 +302 0 LA011590-0042 0 +302 0 LA012090-0137 0 +302 0 LA012290-0068 0 +302 0 LA012390-0129 0 +302 0 LA012490-0111 1 +302 0 LA012490-0120 0 +302 0 LA012589-0035 1 +302 0 LA012690-0099 0 +302 0 LA013089-0022 0 +302 0 LA020190-0050 0 +302 0 LA020190-0128 0 +302 0 LA020389-0112 0 +302 0 LA020390-0101 0 +302 0 LA020490-0202 0 +302 0 LA020490-0221 0 +302 0 LA021389-0067 0 +302 0 LA021889-0149 0 +302 0 LA022289-0015 0 +302 0 LA022290-0137 0 +302 0 LA030490-0058 0 +302 0 LA030490-0146 0 +302 0 LA030790-0062 0 +302 0 LA030889-0102 0 +302 0 LA031190-0046 0 +302 0 LA031190-0116 1 +302 0 LA031290-0103 0 +302 0 LA031290-0118 0 +302 0 LA031489-0032 1 +302 0 LA031890-0146 0 +302 0 LA032190-0081 0 +302 0 LA032689-0202 0 +302 0 LA032890-0019 0 +302 0 LA033190-0001 0 +302 0 LA040290-0023 0 +302 0 LA040789-0053 0 +302 0 LA040989-0094 0 +302 0 LA040989-0121 0 +302 0 LA040990-0045 0 +302 0 LA041190-0046 0 +302 0 LA041190-0093 0 +302 0 LA041290-0058 0 +302 0 LA041490-0129 0 +302 0 LA041690-0050 0 +302 0 LA041690-0051 0 +302 0 LA041690-0085 0 +302 0 LA041890-0007 0 +302 0 LA041989-0027 0 +302 0 LA041989-0042 0 +302 0 LA041990-0258 0 +302 0 LA042190-0056 0 +302 0 LA042289-0003 0 +302 0 LA042390-0099 0 +302 0 LA042590-0168 0 +302 0 LA042890-0139 0 +302 0 LA043090-0036 1 +302 0 LA050189-0063 0 +302 0 LA050789-0042 0 +302 0 LA050790-0096 0 +302 0 LA050889-0049 0 +302 0 LA050890-0167 0 +302 0 LA051390-0202 0 +302 0 LA051390-0223 0 +302 0 LA051889-0183 0 +302 0 LA052090-0077 0 +302 0 LA052090-0088 0 +302 0 LA052189-0210 0 +302 0 LA052190-0044 0 +302 0 LA052190-0106 0 +302 0 LA052690-0037 0 +302 0 LA060490-0002 0 +302 0 LA060589-0052 0 +302 0 LA060589-0053 0 +302 0 LA061090-0044 0 +302 0 LA061289-0041 1 +302 0 LA061390-0056 0 +302 0 LA061590-0016 0 +302 0 LA061989-0045 0 +302 0 LA062189-0108 0 +302 0 LA062190-0135 0 +302 0 LA062389-0128 0 +302 0 LA062490-0095 0 +302 0 LA062589-0087 0 +302 0 LA062590-0046 0 +302 0 LA062789-0077 0 +302 0 LA062990-0033 0 +302 0 LA070289-0159 0 +302 0 LA070290-0051 0 +302 0 LA070789-0056 0 +302 0 LA070890-0222 0 +302 0 LA071290-0154 0 +302 0 LA071590-0110 0 +302 0 LA071989-0061 0 +302 0 LA071990-0012 0 +302 0 LA072890-0052 0 +302 0 LA072890-0066 1 +302 0 LA072990-0208 0 +302 0 LA073089-0195 0 +302 0 LA080589-0034 0 +302 0 LA080589-0052 0 +302 0 LA080590-0260 0 +302 0 LA080690-0099 1 +302 0 LA080990-0174 0 +302 0 LA081089-0091 0 +302 0 LA081290-0078 0 +302 0 LA081989-0048 0 +302 0 LA081990-0088 0 +302 0 LA082089-0090 0 +302 0 LA082089-0163 0 +302 0 LA082389-0068 0 +302 0 LA082489-0115 0 +302 0 LA082490-0065 1 +302 0 LA082490-0066 0 +302 0 LA082590-0019 0 +302 0 LA082689-0127 0 +302 0 LA082789-0154 0 +302 0 LA083090-0214 0 +302 0 LA090290-0118 0 +302 0 LA090390-0077 0 +302 0 LA090589-0046 0 +302 0 LA090990-0031 1 +302 0 LA091190-0102 0 +302 0 LA091990-0020 0 +302 0 LA092189-0158 0 +302 0 LA092289-0005 0 +302 0 LA092390-0163 0 +302 0 LA092589-0002 0 +302 0 LA092589-0083 0 +302 0 LA092689-0080 0 +302 0 LA092689-0119 0 +302 0 LA092889-0179 0 +302 0 LA093090-0213 0 +302 0 LA100189-0047 1 +302 0 LA100189-0130 0 +302 0 LA100290-0016 0 +302 0 LA100490-0220 0 +302 0 LA101090-0147 0 +302 0 LA101190-0191 0 +302 0 LA101289-0109 0 +302 0 LA101589-0050 0 +302 0 LA101689-0055 0 +302 0 LA101690-0040 0 +302 0 LA101889-0058 0 +302 0 LA101890-0243 0 +302 0 LA102190-0080 0 +302 0 LA102289-0118 0 +302 0 LA102590-0199 0 +302 0 LA102789-0128 0 +302 0 LA102990-0097 0 +302 0 LA103089-0037 0 +302 0 LA110190-0053 0 +302 0 LA110389-0072 0 +302 0 LA110490-0201 0 +302 0 LA110689-0060 0 +302 0 LA110690-0193 0 +302 0 LA110889-0156 0 +302 0 LA111189-0018 0 +302 0 LA111489-0076 0 +302 0 LA111889-0044 0 +302 0 LA111889-0165 0 +302 0 LA111989-0036 0 +302 0 LA112089-0054 0 +302 0 LA112490-0106 0 +302 0 LA112789-0001 0 +302 0 LA112990-0145 0 +302 0 LA113090-0001 0 +302 0 LA113090-0147 0 +302 0 LA120389-0216 0 +302 0 LA120589-0098 0 +302 0 LA120690-0043 0 +302 0 LA120890-0014 0 +302 0 LA121589-0171 0 +302 0 LA121789-0162 1 +302 0 LA122289-0099 0 +302 0 LA122589-0100 0 +302 0 LA122589-0101 0 +302 0 LA123090-0026 1 +303 0 CR93E-10279 0 +303 0 CR93E-11182 0 +303 0 CR93E-1856 0 +303 0 CR93E-226 0 +303 0 CR93E-3833 0 +303 0 CR93E-3843 0 +303 0 CR93E-4217 0 +303 0 CR93E-4353 0 +303 0 CR93E-436 0 +303 0 CR93E-4360 0 +303 0 CR93E-5148 0 +303 0 CR93E-5855 0 +303 0 CR93E-6168 0 +303 0 CR93E-6518 0 +303 0 CR93E-7036 0 +303 0 CR93E-7309 0 +303 0 CR93E-7797 0 +303 0 CR93E-8695 0 +303 0 CR93E-8718 0 +303 0 CR93E-9094 0 +303 0 CR93E-996 0 +303 0 CR93H-10104 0 +303 0 CR93H-10308 0 +303 0 CR93H-10374 0 +303 0 CR93H-10392 0 +303 0 CR93H-10601 0 +303 0 CR93H-10602 0 +303 0 CR93H-10921 0 +303 0 CR93H-1097 0 +303 0 CR93H-10982 0 +303 0 CR93H-10989 0 +303 0 CR93H-11033 0 +303 0 CR93H-11034 0 +303 0 CR93H-11077 0 +303 0 CR93H-11119 0 +303 0 CR93H-11586 0 +303 0 CR93H-11792 0 +303 0 CR93H-11806 0 +303 0 CR93H-11894 0 +303 0 CR93H-11998 0 +303 0 CR93H-12017 0 +303 0 CR93H-12150 0 +303 0 CR93H-12181 0 +303 0 CR93H-12217 0 +303 0 CR93H-12498 0 +303 0 CR93H-12820 0 +303 0 CR93H-12874 0 +303 0 CR93H-1298 0 +303 0 CR93H-12988 0 +303 0 CR93H-13205 0 +303 0 CR93H-13451 0 +303 0 CR93H-13588 0 +303 0 CR93H-13659 0 +303 0 CR93H-13680 0 +303 0 CR93H-13695 0 +303 0 CR93H-13849 0 +303 0 CR93H-14128 0 +303 0 CR93H-14130 0 +303 0 CR93H-14306 0 +303 0 CR93H-14319 0 +303 0 CR93H-14388 0 +303 0 CR93H-14436 0 +303 0 CR93H-14469 0 +303 0 CR93H-14591 0 +303 0 CR93H-14794 0 +303 0 CR93H-15024 0 +303 0 CR93H-1509 0 +303 0 CR93H-15105 0 +303 0 CR93H-15107 0 +303 0 CR93H-15178 0 +303 0 CR93H-15405 0 +303 0 CR93H-15453 0 +303 0 CR93H-15477 0 +303 0 CR93H-15587 0 +303 0 CR93H-15608 0 +303 0 CR93H-15615 0 +303 0 CR93H-15705 0 +303 0 CR93H-15950 0 +303 0 CR93H-16073 0 +303 0 CR93H-16128 0 +303 0 CR93H-16143 0 +303 0 CR93H-16369 0 +303 0 CR93H-16456 0 +303 0 CR93H-1712 0 +303 0 CR93H-1788 0 +303 0 CR93H-185 0 +303 0 CR93H-199 0 +303 0 CR93H-200 0 +303 0 CR93H-2081 0 +303 0 CR93H-215 0 +303 0 CR93H-2196 0 +303 0 CR93H-2429 0 +303 0 CR93H-2536 0 +303 0 CR93H-2707 0 +303 0 CR93H-2841 0 +303 0 CR93H-3079 0 +303 0 CR93H-3375 0 +303 0 CR93H-3382 0 +303 0 CR93H-3584 0 +303 0 CR93H-3813 0 +303 0 CR93H-4042 0 +303 0 CR93H-416 0 +303 0 CR93H-4417 0 +303 0 CR93H-4489 0 +303 0 CR93H-4554 0 +303 0 CR93H-4586 0 +303 0 CR93H-4631 0 +303 0 CR93H-4635 0 +303 0 CR93H-4771 0 +303 0 CR93H-4879 0 +303 0 CR93H-4922 0 +303 0 CR93H-5053 0 +303 0 CR93H-5255 0 +303 0 CR93H-5450 0 +303 0 CR93H-5477 0 +303 0 CR93H-553 0 +303 0 CR93H-5568 0 +303 0 CR93H-5700 0 +303 0 CR93H-590 0 +303 0 CR93H-5957 0 +303 0 CR93H-6346 0 +303 0 CR93H-6377 0 +303 0 CR93H-6422 0 +303 0 CR93H-6567 0 +303 0 CR93H-6695 0 +303 0 CR93H-6754 0 +303 0 CR93H-6887 0 +303 0 CR93H-6912 0 +303 0 CR93H-6945 0 +303 0 CR93H-7055 0 +303 0 CR93H-7101 0 +303 0 CR93H-7133 0 +303 0 CR93H-7314 0 +303 0 CR93H-735 0 +303 0 CR93H-742 0 +303 0 CR93H-7554 0 +303 0 CR93H-7557 0 +303 0 CR93H-7612 0 +303 0 CR93H-7785 0 +303 0 CR93H-7875 0 +303 0 CR93H-8165 0 +303 0 CR93H-8253 0 +303 0 CR93H-8428 0 +303 0 CR93H-8460 0 +303 0 CR93H-8461 0 +303 0 CR93H-8591 0 +303 0 CR93H-8928 0 +303 0 CR93H-9350 0 +303 0 CR93H-9548 0 +303 0 CR93H-955 0 +303 0 CR93H-9835 0 +303 0 FBIS3-16217 0 +303 0 FBIS3-19093 0 +303 0 FBIS3-21007 0 +303 0 FBIS3-21026 0 +303 0 FBIS3-23561 0 +303 0 FBIS3-23682 0 +303 0 FBIS3-23691 0 +303 0 FBIS3-24469 0 +303 0 FBIS3-25018 0 +303 0 FBIS3-36274 0 +303 0 FBIS3-40348 0 +303 0 FBIS3-40363 0 +303 0 FBIS3-40388 0 +303 0 FBIS3-40450 0 +303 0 FBIS3-41666 0 +303 0 FBIS3-42394 0 +303 0 FBIS3-42399 0 +303 0 FBIS3-42547 0 +303 0 FBIS3-42934 0 +303 0 FBIS3-43160 0 +303 0 FBIS3-43214 0 +303 0 FBIS3-46244 0 +303 0 FBIS3-53109 0 +303 0 FBIS3-58219 0 +303 0 FBIS3-59619 0 +303 0 FBIS3-60342 0 +303 0 FBIS3-61020 0 +303 0 FBIS4-15938 0 +303 0 FBIS4-1647 0 +303 0 FBIS4-19830 0 +303 0 FBIS4-20472 0 +303 0 FBIS4-20504 0 +303 0 FBIS4-22151 0 +303 0 FBIS4-22263 0 +303 0 FBIS4-24195 0 +303 0 FBIS4-24435 0 +303 0 FBIS4-27016 0 +303 0 FBIS4-28354 0 +303 0 FBIS4-2866 0 +303 0 FBIS4-35855 0 +303 0 FBIS4-39574 0 +303 0 FBIS4-39987 0 +303 0 FBIS4-42546 0 +303 0 FBIS4-42702 0 +303 0 FBIS4-42922 0 +303 0 FBIS4-44511 0 +303 0 FBIS4-44743 0 +303 0 FBIS4-46469 0 +303 0 FBIS4-46649 0 +303 0 FBIS4-46650 0 +303 0 FBIS4-47297 0 +303 0 FBIS4-47302 0 +303 0 FBIS4-47495 0 +303 0 FBIS4-50545 0 +303 0 FBIS4-55470 0 +303 0 FBIS4-57001 0 +303 0 FBIS4-65621 0 +303 0 FBIS4-66185 0 +303 0 FBIS4-66382 0 +303 0 FBIS4-68332 0 +303 0 FBIS4-68893 0 +303 0 FR940104-0-00032 0 +303 0 FR940111-2-00079 0 +303 0 FR940124-1-00003 0 +303 0 FR940203-0-00084 0 +303 0 FR940304-2-00134 0 +303 0 FR940304-2-00135 0 +303 0 FR940325-0-00015 0 +303 0 FR940406-0-00190 0 +303 0 FR940418-0-00041 0 +303 0 FR940505-1-00005 0 +303 0 FR940526-2-00002 0 +303 0 FR940602-1-00023 0 +303 0 FR940610-0-00042 0 +303 0 FR940627-0-00014 0 +303 0 FR940706-2-00126 0 +303 0 FR940802-2-00009 0 +303 0 FR940810-0-00307 0 +303 0 FR940819-0-00006 0 +303 0 FR940902-1-00048 0 +303 0 FR940906-2-00139 0 +303 0 FR940919-0-00024 0 +303 0 FR941007-2-00007 0 +303 0 FR941020-2-00110 0 +303 0 FR941021-0-00167 0 +303 0 FR941021-0-00195 0 +303 0 FR941121-0-00046 0 +303 0 FR941121-2-00043 0 +303 0 FR941130-0-00122 0 +303 0 FR941205-2-00003 0 +303 0 FR941206-1-00134 0 +303 0 FR941207-2-00068 0 +303 0 FR941216-2-00132 0 +303 0 FR941216-2-00137 0 +303 0 FR941221-0-00047 0 +303 0 FT911-1000 0 +303 0 FT911-216 0 +303 0 FT911-2608 0 +303 0 FT911-3687 0 +303 0 FT911-4155 0 +303 0 FT911-5046 0 +303 0 FT921-1013 0 +303 0 FT921-10884 0 +303 0 FT921-11671 0 +303 0 FT921-12379 0 +303 0 FT921-12584 0 +303 0 FT921-13248 0 +303 0 FT921-1350 0 +303 0 FT921-13869 0 +303 0 FT921-14183 0 +303 0 FT921-14476 0 +303 0 FT921-14867 0 +303 0 FT921-15863 0 +303 0 FT921-1594 0 +303 0 FT921-15951 0 +303 0 FT921-16129 0 +303 0 FT921-16360 0 +303 0 FT921-16419 0 +303 0 FT921-16457 0 +303 0 FT921-2261 0 +303 0 FT921-2873 0 +303 0 FT921-3070 0 +303 0 FT921-3071 0 +303 0 FT921-3359 0 +303 0 FT921-3432 0 +303 0 FT921-3539 0 +303 0 FT921-3809 0 +303 0 FT921-3842 0 +303 0 FT921-3945 0 +303 0 FT921-4635 0 +303 0 FT921-503 0 +303 0 FT921-5229 0 +303 0 FT921-6327 0 +303 0 FT921-7107 1 +303 0 FT921-832 0 +303 0 FT921-8725 0 +303 0 FT921-8919 0 +303 0 FT921-953 0 +303 0 FT921-9706 0 +303 0 FT922-10607 0 +303 0 FT922-10990 0 +303 0 FT922-11472 0 +303 0 FT922-11525 0 +303 0 FT922-11670 0 +303 0 FT922-11742 0 +303 0 FT922-11929 0 +303 0 FT922-12234 0 +303 0 FT922-12334 0 +303 0 FT922-12600 0 +303 0 FT922-13008 0 +303 0 FT922-13421 0 +303 0 FT922-13455 0 +303 0 FT922-13500 0 +303 0 FT922-13906 0 +303 0 FT922-2930 0 +303 0 FT922-3309 0 +303 0 FT922-4215 0 +303 0 FT922-4274 0 +303 0 FT922-4956 0 +303 0 FT922-4967 0 +303 0 FT922-5107 0 +303 0 FT922-6257 0 +303 0 FT922-7289 0 +303 0 FT922-7904 0 +303 0 FT922-8168 0 +303 0 FT922-861 0 +303 0 FT922-8790 0 +303 0 FT922-9812 0 +303 0 FT923-10218 0 +303 0 FT923-10305 0 +303 0 FT923-10351 0 +303 0 FT923-10517 0 +303 0 FT923-1085 0 +303 0 FT923-10862 0 +303 0 FT923-10876 0 +303 0 FT923-10939 0 +303 0 FT923-12048 0 +303 0 FT923-12432 0 +303 0 FT923-1307 0 +303 0 FT923-13137 0 +303 0 FT923-14461 0 +303 0 FT923-14465 0 +303 0 FT923-14574 0 +303 0 FT923-15067 0 +303 0 FT923-2353 0 +303 0 FT923-2416 0 +303 0 FT923-3530 0 +303 0 FT923-3924 0 +303 0 FT923-4482 0 +303 0 FT923-4525 0 +303 0 FT923-5257 0 +303 0 FT923-5756 0 +303 0 FT923-7711 0 +303 0 FT923-7860 0 +303 0 FT923-7887 0 +303 0 FT923-803 0 +303 0 FT923-8916 0 +303 0 FT923-9736 0 +303 0 FT923-9781 0 +303 0 FT924-10484 0 +303 0 FT924-10903 0 +303 0 FT924-12943 0 +303 0 FT924-14218 0 +303 0 FT924-14355 0 +303 0 FT924-14455 0 +303 0 FT924-196 0 +303 0 FT924-2211 0 +303 0 FT924-2379 0 +303 0 FT924-2406 0 +303 0 FT924-286 1 +303 0 FT924-2896 0 +303 0 FT924-3328 0 +303 0 FT924-4315 0 +303 0 FT924-4358 0 +303 0 FT924-4829 0 +303 0 FT924-5286 0 +303 0 FT924-5310 0 +303 0 FT924-5533 0 +303 0 FT924-5574 0 +303 0 FT924-6499 0 +303 0 FT924-7392 0 +303 0 FT924-7399 0 +303 0 FT924-8791 0 +303 0 FT924-8918 0 +303 0 FT931-11101 0 +303 0 FT931-12968 0 +303 0 FT931-13063 0 +303 0 FT931-13386 0 +303 0 FT931-13998 0 +303 0 FT931-15496 0 +303 0 FT931-15565 0 +303 0 FT931-15612 0 +303 0 FT931-15900 0 +303 0 FT931-1860 0 +303 0 FT931-2231 0 +303 0 FT931-3522 0 +303 0 FT931-3827 0 +303 0 FT931-4109 0 +303 0 FT931-5157 0 +303 0 FT931-5545 0 +303 0 FT931-5858 0 +303 0 FT931-6554 1 +303 0 FT931-7240 0 +303 0 FT931-9388 0 +303 0 FT931-9677 0 +303 0 FT931-9998 0 +303 0 FT932-12850 0 +303 0 FT932-12979 0 +303 0 FT932-13081 0 +303 0 FT932-13517 0 +303 0 FT932-13766 0 +303 0 FT932-14482 0 +303 0 FT932-15782 0 +303 0 FT932-15788 0 +303 0 FT932-16246 0 +303 0 FT932-16878 0 +303 0 FT932-1696 0 +303 0 FT932-17203 0 +303 0 FT932-1828 0 +303 0 FT932-3207 0 +303 0 FT932-3291 0 +303 0 FT932-378 0 +303 0 FT932-4616 0 +303 0 FT932-4803 0 +303 0 FT932-5036 0 +303 0 FT932-5038 0 +303 0 FT932-5048 0 +303 0 FT932-6741 0 +303 0 FT932-7107 0 +303 0 FT932-734 0 +303 0 FT932-868 0 +303 0 FT932-8978 0 +303 0 FT932-9302 0 +303 0 FT933-10291 0 +303 0 FT933-10324 0 +303 0 FT933-11321 0 +303 0 FT933-11538 0 +303 0 FT933-11603 0 +303 0 FT933-1184 0 +303 0 FT933-12486 0 +303 0 FT933-14487 0 +303 0 FT933-14847 0 +303 0 FT933-14894 0 +303 0 FT933-15354 0 +303 0 FT933-16201 0 +303 0 FT933-16728 0 +303 0 FT933-16851 0 +303 0 FT933-2180 0 +303 0 FT933-2218 0 +303 0 FT933-3699 0 +303 0 FT933-4983 0 +303 0 FT933-5990 0 +303 0 FT933-6323 0 +303 0 FT933-6678 0 +303 0 FT933-678 0 +303 0 FT933-6877 0 +303 0 FT933-6882 0 +303 0 FT933-6946 0 +303 0 FT933-8843 0 +303 0 FT933-9084 0 +303 0 FT933-9701 0 +303 0 FT934-10579 0 +303 0 FT934-10850 0 +303 0 FT934-10897 0 +303 0 FT934-11052 0 +303 0 FT934-11633 0 +303 0 FT934-1193 0 +303 0 FT934-12356 0 +303 0 FT934-14956 0 +303 0 FT934-16249 0 +303 0 FT934-17357 0 +303 0 FT934-2516 0 +303 0 FT934-2630 0 +303 0 FT934-2685 0 +303 0 FT934-3191 0 +303 0 FT934-3325 0 +303 0 FT934-3608 0 +303 0 FT934-3766 0 +303 0 FT934-4015 0 +303 0 FT934-4132 0 +303 0 FT934-4163 0 +303 0 FT934-4467 0 +303 0 FT934-4583 0 +303 0 FT934-4766 0 +303 0 FT934-4842 0 +303 0 FT934-4882 0 +303 0 FT934-5418 0 +303 0 FT934-5460 0 +303 0 FT934-5524 0 +303 0 FT934-5811 0 +303 0 FT934-5820 0 +303 0 FT934-7129 0 +303 0 FT934-7549 0 +303 0 FT934-8767 0 +303 0 FT934-9330 0 +303 0 FT941-11088 0 +303 0 FT941-11413 0 +303 0 FT941-11486 0 +303 0 FT941-11756 0 +303 0 FT941-12019 0 +303 0 FT941-13695 0 +303 0 FT941-1374 0 +303 0 FT941-1391 0 +303 0 FT941-1394 0 +303 0 FT941-14233 0 +303 0 FT941-15661 1 +303 0 FT941-16882 0 +303 0 FT941-16886 0 +303 0 FT941-16981 0 +303 0 FT941-17036 0 +303 0 FT941-17441 0 +303 0 FT941-17487 0 +303 0 FT941-17636 0 +303 0 FT941-17652 1 +303 0 FT941-2547 0 +303 0 FT941-2665 0 +303 0 FT941-2991 0 +303 0 FT941-3758 0 +303 0 FT941-4026 0 +303 0 FT941-4092 0 +303 0 FT941-4444 0 +303 0 FT941-5396 0 +303 0 FT941-541 0 +303 0 FT941-6402 0 +303 0 FT941-7923 0 +303 0 FT941-793 0 +303 0 FT941-7995 0 +303 0 FT942-10936 0 +303 0 FT942-11263 0 +303 0 FT942-12236 0 +303 0 FT942-12872 0 +303 0 FT942-13026 0 +303 0 FT942-13246 0 +303 0 FT942-13367 0 +303 0 FT942-14060 0 +303 0 FT942-1469 0 +303 0 FT942-15138 0 +303 0 FT942-16737 0 +303 0 FT942-16817 0 +303 0 FT942-17118 0 +303 0 FT942-344 0 +303 0 FT942-417 0 +303 0 FT942-5339 0 +303 0 FT942-5356 0 +303 0 FT942-5468 0 +303 0 FT942-5834 0 +303 0 FT942-6534 0 +303 0 FT942-68 0 +303 0 FT942-7259 0 +303 0 FT942-786 0 +303 0 FT942-795 0 +303 0 FT942-8367 0 +303 0 FT943-10128 0 +303 0 FT943-10171 0 +303 0 FT943-10786 0 +303 0 FT943-10793 0 +303 0 FT943-11292 0 +303 0 FT943-11617 0 +303 0 FT943-1201 0 +303 0 FT943-1280 0 +303 0 FT943-12840 0 +303 0 FT943-13317 0 +303 0 FT943-13465 0 +303 0 FT943-14262 0 +303 0 FT943-14510 0 +303 0 FT943-14574 0 +303 0 FT943-14635 0 +303 0 FT943-14986 0 +303 0 FT943-15147 0 +303 0 FT943-15250 0 +303 0 FT943-15591 0 +303 0 FT943-16229 0 +303 0 FT943-3051 0 +303 0 FT943-3170 0 +303 0 FT943-3693 0 +303 0 FT943-4589 0 +303 0 FT943-4595 0 +303 0 FT943-4813 0 +303 0 FT943-5596 0 +303 0 FT943-5598 0 +303 0 FT943-6074 0 +303 0 FT943-6422 0 +303 0 FT943-7294 0 +303 0 FT943-8129 0 +303 0 FT943-8794 0 +303 0 FT943-9282 0 +303 0 FT943-9830 0 +303 0 FT944-11415 0 +303 0 FT944-11782 0 +303 0 FT944-12542 0 +303 0 FT944-12573 0 +303 0 FT944-12693 0 +303 0 FT944-128 1 +303 0 FT944-12897 0 +303 0 FT944-1329 0 +303 0 FT944-14417 0 +303 0 FT944-14989 0 +303 0 FT944-18272 0 +303 0 FT944-18385 0 +303 0 FT944-3898 0 +303 0 FT944-3901 0 +303 0 FT944-419 0 +303 0 FT944-4838 0 +303 0 FT944-509 0 +303 0 FT944-5488 0 +303 0 FT944-552 0 +303 0 FT944-6624 0 +303 0 FT944-6937 0 +303 0 FT944-8381 0 +303 0 FT944-8537 0 +303 0 FT944-8893 0 +303 0 FT944-9936 0 +303 0 LA010689-0016 0 +303 0 LA010889-0081 0 +303 0 LA011590-0098 0 +303 0 LA011789-0014 0 +303 0 LA011990-0173 0 +303 0 LA012090-0105 0 +303 0 LA012090-0106 0 +303 0 LA012789-0162 0 +303 0 LA012790-0042 0 +303 0 LA020190-0053 0 +303 0 LA020889-0065 0 +303 0 LA020989-0012 0 +303 0 LA022689-0112 0 +303 0 LA030590-0070 0 +303 0 LA030990-0068 0 +303 0 LA031090-0099 0 +303 0 LA031190-0216 0 +303 0 LA031289-0114 0 +303 0 LA031490-0065 0 +303 0 LA031490-0066 0 +303 0 LA031589-0130 0 +303 0 LA031689-0206 0 +303 0 LA031989-0181 0 +303 0 LA031989-0182 0 +303 0 LA032790-0023 0 +303 0 LA033089-0032 0 +303 0 LA033090-0082 0 +303 0 LA033090-0083 0 +303 0 LA040190-0178 0 +303 0 LA040190-0179 0 +303 0 LA040590-0220 0 +303 0 LA040689-0155 0 +303 0 LA041090-0148 0 +303 0 LA041190-0003 0 +303 0 LA041390-0018 0 +303 0 LA041490-0064 0 +303 0 LA041589-0014 0 +303 0 LA041590-0161 0 +303 0 LA041689-0190 0 +303 0 LA041690-0035 0 +303 0 LA041690-0050 0 +303 0 LA041690-0051 0 +303 0 LA041790-0054 0 +303 0 LA041790-0055 0 +303 0 LA041989-0027 0 +303 0 LA041990-0151 0 +303 0 LA042190-0078 0 +303 0 LA042190-0132 0 +303 0 LA042289-0040 0 +303 0 LA042290-0096 0 +303 0 LA042290-0160 0 +303 0 LA042390-0041 0 +303 0 LA042390-0060 0 +303 0 LA042390-0099 0 +303 0 LA042590-0135 0 +303 0 LA042590-0152 0 +303 0 LA042690-0141 0 +303 0 LA042690-0169 0 +303 0 LA042790-0070 0 +303 0 LA042890-0035 0 +303 0 LA042890-0151 0 +303 0 LA042989-0116 0 +303 0 LA043089-0169 0 +303 0 LA043090-0018 0 +303 0 LA050189-0063 0 +303 0 LA050190-0067 0 +303 0 LA050390-0109 0 +303 0 LA050589-0090 0 +303 0 LA050589-0092 0 +303 0 LA050590-0027 0 +303 0 LA050590-0048 0 +303 0 LA050690-0145 0 +303 0 LA050690-0149 0 +303 0 LA050889-0068 0 +303 0 LA050990-0078 0 +303 0 LA050990-0116 0 +303 0 LA051090-0069 0 +303 0 LA051090-0070 0 +303 0 LA051190-0064 0 +303 0 LA051290-0077 0 +303 0 LA051290-0079 1 +303 0 LA051389-0037 0 +303 0 LA051390-0161 0 +303 0 LA051390-0195 0 +303 0 LA051390-0223 0 +303 0 LA051490-0110 0 +303 0 LA051590-0074 0 +303 0 LA052090-0088 0 +303 0 LA052189-0123 0 +303 0 LA052190-0021 0 +303 0 LA052289-0047 0 +303 0 LA052389-0074 0 +303 0 LA052390-0127 0 +303 0 LA052490-0139 0 +303 0 LA052589-0193 0 +303 0 LA052690-0037 0 +303 0 LA052890-0021 0 +303 0 LA052890-0046 0 +303 0 LA052990-0018 0 +303 0 LA053089-0075 0 +303 0 LA053090-0037 0 +303 0 LA053090-0104 0 +303 0 LA053190-0175 0 +303 0 LA060290-0131 0 +303 0 LA060390-0159 0 +303 0 LA060489-0196 0 +303 0 LA060490-0021 0 +303 0 LA060590-0010 0 +303 0 LA060790-0159 0 +303 0 LA060890-0124 0 +303 0 LA060989-0171 0 +303 0 LA060990-0077 0 +303 0 LA061189-0173 0 +303 0 LA061190-0085 0 +303 0 LA061289-0051 0 +303 0 LA061390-0056 0 +303 0 LA061490-0072 0 +303 0 LA061589-0050 0 +303 0 LA061589-0051 0 +303 0 LA061590-0010 0 +303 0 LA061690-0021 0 +303 0 LA061690-0030 0 +303 0 LA061789-0027 0 +303 0 LA061789-0028 0 +303 0 LA061790-0205 0 +303 0 LA061889-0008 0 +303 0 LA062090-0094 0 +303 0 LA062189-0012 0 +303 0 LA062390-0041 0 +303 0 LA062690-0041 0 +303 0 LA062789-0090 0 +303 0 LA062790-0085 0 +303 0 LA062890-0206 0 +303 0 LA062990-0180 0 +303 0 LA063090-0004 0 +303 0 LA063090-0005 0 +303 0 LA070190-0119 0 +303 0 LA070190-0120 0 +303 0 LA070289-0147 0 +303 0 LA070290-0051 0 +303 0 LA070390-0084 0 +303 0 LA070390-0085 0 +303 0 LA070489-0096 0 +303 0 LA070490-0001 0 +303 0 LA070490-0002 0 +303 0 LA070590-0031 0 +303 0 LA070590-0033 0 +303 0 LA070590-0036 0 +303 0 LA070590-0097 0 +303 0 LA070690-0095 0 +303 0 LA070789-0002 0 +303 0 LA070789-0127 0 +303 0 LA070790-0083 0 +303 0 LA070790-0084 0 +303 0 LA070890-0079 0 +303 0 LA070890-0080 0 +303 0 LA070890-0154 0 +303 0 LA070890-0155 0 +303 0 LA070989-0062 0 +303 0 LA070989-0063 0 +303 0 LA070990-0052 0 +303 0 LA070990-0053 0 +303 0 LA071090-0047 0 +303 0 LA071090-0048 0 +303 0 LA071090-0141 0 +303 0 LA071390-0122 0 +303 0 LA071390-0123 0 +303 0 LA071490-0024 0 +303 0 LA071490-0091 0 +303 0 LA071490-0092 0 +303 0 LA071690-0048 0 +303 0 LA071690-0049 0 +303 0 LA071990-0165 0 +303 0 LA071990-0250 0 +303 0 LA072090-0146 0 +303 0 LA072090-0147 0 +303 0 LA072190-0065 0 +303 0 LA072190-0066 0 +303 0 LA072389-0021 0 +303 0 LA072390-0058 0 +303 0 LA072390-0060 0 +303 0 LA072490-0033 0 +303 0 LA072590-0005 0 +303 0 LA072590-0006 0 +303 0 LA072590-0115 0 +303 0 LA072690-0124 0 +303 0 LA072690-0125 0 +303 0 LA072690-0133 0 +303 0 LA072690-0134 0 +303 0 LA072789-0050 0 +303 0 LA072890-0052 0 +303 0 LA072890-0078 0 +303 0 LA072890-0079 0 +303 0 LA072990-0118 0 +303 0 LA073089-0149 0 +303 0 LA080489-0048 0 +303 0 LA080590-0195 0 +303 0 LA080889-0066 0 +303 0 LA080890-0044 0 +303 0 LA080989-0058 0 +303 0 LA080990-0216 0 +303 0 LA080990-0222 0 +303 0 LA080990-0223 0 +303 0 LA080990-0232 0 +303 0 LA080990-0242 0 +303 0 LA081090-0078 0 +303 0 LA081090-0079 0 +303 0 LA081090-0080 0 +303 0 LA081190-0108 0 +303 0 LA081290-0215 0 +303 0 LA081290-0216 0 +303 0 LA081489-0055 0 +303 0 LA081690-0102 0 +303 0 LA081790-0083 0 +303 0 LA081790-0164 0 +303 0 LA081790-0165 0 +303 0 LA081989-0048 0 +303 0 LA081990-0158 0 +303 0 LA082089-0163 0 +303 0 LA082190-0014 0 +303 0 LA082190-0015 0 +303 0 LA082389-0028 0 +303 0 LA082490-0075 0 +303 0 LA082590-0019 0 +303 0 LA082789-0096 0 +303 0 LA082789-0201 0 +303 0 LA082890-0147 0 +303 0 LA082890-0148 0 +303 0 LA082989-0074 0 +303 0 LA090189-0018 0 +303 0 LA090389-0097 0 +303 0 LA090389-0100 0 +303 0 LA090390-0035 0 +303 0 LA090489-0037 0 +303 0 LA090489-0038 0 +303 0 LA090689-0015 0 +303 0 LA090690-0100 0 +303 0 LA090690-0101 0 +303 0 LA090790-0049 0 +303 0 LA090790-0050 0 +303 0 LA090889-0077 0 +303 0 LA091089-0170 0 +303 0 LA091089-0172 0 +303 0 LA091190-0096 0 +303 0 LA091190-0102 0 +303 0 LA091390-0046 0 +303 0 LA091689-0028 0 +303 0 LA091690-0166 0 +303 0 LA091890-0053 0 +303 0 LA091890-0054 0 +303 0 LA091890-0156 0 +303 0 LA092489-0053 0 +303 0 LA092489-0134 0 +303 0 LA092690-0092 0 +303 0 LA092690-0093 0 +303 0 LA092690-0117 0 +303 0 LA092790-0128 0 +303 0 LA100189-0205 0 +303 0 LA100290-0067 0 +303 0 LA100889-0040 0 +303 0 LA101189-0144 0 +303 0 LA101290-0125 0 +303 0 LA101690-0023 0 +303 0 LA101790-0151 0 +303 0 LA102189-0071 0 +303 0 LA102289-0098 0 +303 0 LA102290-0066 0 +303 0 LA102290-0067 0 +303 0 LA102590-0235 0 +303 0 LA102689-0127 0 +303 0 LA102890-0197 0 +303 0 LA110590-0076 1 +303 0 LA110590-0077 0 +303 0 LA110989-0239 0 +303 0 LA111089-0012 0 +303 0 LA111090-0135 0 +303 0 LA111789-0042 0 +303 0 LA111789-0101 0 +303 0 LA111789-0151 0 +303 0 LA111990-0004 0 +303 0 LA112089-0048 0 +303 0 LA112190-0043 1 +303 0 LA112190-0044 0 +303 0 LA112390-0146 0 +303 0 LA112690-0067 0 +303 0 LA112990-0083 0 +303 0 LA113090-0157 0 +303 0 LA120190-0125 0 +303 0 LA120390-0065 0 +303 0 LA120390-0126 0 +303 0 LA120590-0110 0 +303 0 LA120890-0048 0 +303 0 LA120990-0163 0 +303 0 LA120990-0165 0 +303 0 LA121190-0079 0 +303 0 LA121190-0089 0 +303 0 LA121190-0090 0 +303 0 LA121190-0160 0 +303 0 LA121790-0086 0 +303 0 LA121790-0087 0 +303 0 LA122090-0004 0 +303 0 LA122090-0228 0 +303 0 LA122190-0021 0 +303 0 LA122390-0127 0 +303 0 LA122589-0068 0 +303 0 LA122590-0113 0 +303 0 LA122790-0152 0 +303 0 LA122990-0029 1 +303 0 LA122990-0030 0 diff --git a/tools/eval/trec_eval.9.0.4/test/results.test b/tools/eval/trec_eval.9.0.4/test/results.test new file mode 100644 index 0000000000000000000000000000000000000000..29cb76d531eb6bef8993b94d4ba88d6bb94566e4 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/results.test @@ -0,0 +1,1500 @@ +301 Q0 FR940202-2-00150 104 2.129133 STANDARD +301 Q0 FR940202-2-00151 414 1.724760 STANDARD +301 Q0 FR940202-2-00154 124 2.104024 STANDARD +301 Q0 FR940203-1-00036 233 1.912871 STANDARD +301 Q0 FR940203-1-00038 326 1.800881 STANDARD +301 Q0 FR940203-1-00039 273 1.870957 STANDARD +301 Q0 FR940216-1-00014 470 1.677013 STANDARD +301 Q0 FR940303-1-00006 186 1.999081 STANDARD +301 Q0 FR940303-1-00012 295 1.841413 STANDARD +301 Q0 FR940303-1-00014 407 1.732111 STANDARD +301 Q0 FR940303-1-00019 308 1.820319 STANDARD +301 Q0 FR940303-1-00021 497 1.655963 STANDARD +301 Q0 FR940303-1-00022 11 2.918622 STANDARD +301 Q0 FR940404-0-00087 475 1.674784 STANDARD +301 Q0 FR940429-0-00128 282 1.862317 STANDARD +301 Q0 FR940429-0-00132 297 1.839996 STANDARD +301 Q0 FR940503-2-00146 332 1.799753 STANDARD +301 Q0 FR940503-2-00147 260 1.886508 STANDARD +301 Q0 FR940620-1-00004 109 2.125475 STANDARD +301 Q0 FR940620-1-00005 23 2.569489 STANDARD +301 Q0 FR940620-1-00006 44 2.375205 STANDARD +301 Q0 FR940620-1-00007 9 2.971818 STANDARD +301 Q0 FR940620-1-00008 80 2.183501 STANDARD +301 Q0 FR940620-1-00009 8 3.023369 STANDARD +301 Q0 FR940622-2-00053 302 1.830749 STANDARD +301 Q0 FR940721-2-00054 482 1.668723 STANDARD +301 Q0 FR940721-2-00075 339 1.791411 STANDARD +301 Q0 FR940727-0-00060 439 1.702908 STANDARD +301 Q0 FR940727-0-00077 361 1.768786 STANDARD +301 Q0 FR940727-0-00078 321 1.806117 STANDARD +301 Q0 FR940727-0-00079 373 1.759109 STANDARD +301 Q0 FR940727-0-00091 150 2.059793 STANDARD +301 Q0 FR940727-0-00092 174 2.014195 STANDARD +301 Q0 FR940727-0-00093 287 1.850940 STANDARD +301 Q0 FR940728-2-00151 237 1.907816 STANDARD +301 Q0 FR940804-0-00102 147 2.064112 STANDARD +301 Q0 FR940804-0-00103 367 1.762352 STANDARD +301 Q0 FR940804-0-00112 364 1.764905 STANDARD +301 Q0 FR940804-0-00116 305 1.822332 STANDARD +301 Q0 FR940804-0-00119 378 1.755399 STANDARD +301 Q0 FR940804-0-00125 473 1.674901 STANDARD +301 Q0 FR940804-0-00127 10 2.920190 STANDARD +301 Q0 FR940830-2-00003 408 1.731386 STANDARD +301 Q0 FR941006-0-00045 493 1.659331 STANDARD +301 Q0 FR941230-2-00138 489 1.662662 STANDARD +301 Q0 FT911-2671 422 1.719461 STANDARD +301 Q0 FT921-15491 146 2.065663 STANDARD +301 Q0 FT923-13103 465 1.679853 STANDARD +301 Q0 FT923-14709 145 2.066168 STANDARD +301 Q0 FT923-2348 336 1.794087 STANDARD +301 Q0 FT924-227 244 1.898500 STANDARD +301 Q0 FT931-3563 253 1.889801 STANDARD +301 Q0 FT931-1053 427 1.716405 STANDARD +301 Q0 FT933-12037 209 1.957280 STANDARD +301 Q0 FT934-6443 405 1.733755 STANDARD +301 Q0 FT941-10546 141 2.078446 STANDARD +301 Q0 FT941-3237 212 1.948220 STANDARD +301 Q0 FT942-7830 438 1.703799 STANDARD +301 Q0 FT942-8808 340 1.791096 STANDARD +301 Q0 FT942-852 334 1.796588 STANDARD +301 Q0 FT942-13766 181 2.003752 STANDARD +301 Q0 FT942-17001 491 1.660437 STANDARD +301 Q0 FT942-2423 437 1.704746 STANDARD +301 Q0 FT943-12601 478 1.673670 STANDARD +301 Q0 FT943-13315 74 2.232947 STANDARD +301 Q0 FT943-16238 307 1.821578 STANDARD +301 Q0 FT943-2588 95 2.150375 STANDARD +301 Q0 FT944-4555 238 1.906426 STANDARD +301 Q0 FT944-8297 125 2.100060 STANDARD +301 Q0 FT944-12673 469 1.677549 STANDARD +301 Q0 FT944-14183 314 1.812210 STANDARD +301 Q0 FT944-15443 134 2.084795 STANDARD +301 Q0 FT944-15444 241 1.901744 STANDARD +301 Q0 FT944-18651 425 1.718812 STANDARD +301 Q0 FBIS3-1108 441 1.699095 STANDARD +301 Q0 FBIS3-1849 166 2.024102 STANDARD +301 Q0 FBIS3-1975 294 1.844307 STANDARD +301 Q0 FBIS3-2115 255 1.887945 STANDARD +301 Q0 FBIS3-2327 163 2.034978 STANDARD +301 Q0 FBIS3-2393 26 2.494489 STANDARD +301 Q0 FBIS3-2549 358 1.773210 STANDARD +301 Q0 FBIS3-2605 221 1.932684 STANDARD +301 Q0 FBIS3-2934 98 2.139655 STANDARD +301 Q0 FBIS3-3019 331 1.799830 STANDARD +301 Q0 FBIS3-3020 35 2.436040 STANDARD +301 Q0 FBIS3-3189 12 2.826465 STANDARD +301 Q0 FBIS3-3190 42 2.392541 STANDARD +301 Q0 FBIS3-3223 242 1.899980 STANDARD +301 Q0 FBIS3-3303 220 1.933041 STANDARD +301 Q0 FBIS3-3412 139 2.080240 STANDARD +301 Q0 FBIS3-3586 15 2.785274 STANDARD +301 Q0 FBIS3-3622 14 2.785274 STANDARD +301 Q0 FBIS3-3728 484 1.667296 STANDARD +301 Q0 FBIS3-3729 85 2.172867 STANDARD +301 Q0 FBIS3-4313 387 1.746026 STANDARD +301 Q0 FBIS3-5774 424 1.719125 STANDARD +301 Q0 FBIS3-8746 243 1.899552 STANDARD +301 Q0 FBIS3-8781 418 1.722128 STANDARD +301 Q0 FBIS3-9399 4 3.215889 STANDARD +301 Q0 FBIS3-10204 261 1.885856 STANDARD +301 Q0 FBIS3-10609 450 1.688209 STANDARD +301 Q0 FBIS3-10979 487 1.663086 STANDARD +301 Q0 FBIS3-11095 219 1.939206 STANDARD +301 Q0 FBIS3-11210 240 1.903990 STANDARD +301 Q0 FBIS3-11212 202 1.971704 STANDARD +301 Q0 FBIS3-12094 495 1.658651 STANDARD +301 Q0 FBIS3-14961 376 1.756365 STANDARD +301 Q0 FBIS3-15586 318 1.809177 STANDARD +301 Q0 FBIS3-15636 216 1.945223 STANDARD +301 Q0 FBIS3-17175 171 2.017663 STANDARD +301 Q0 FBIS3-17255 120 2.110716 STANDARD +301 Q0 FBIS3-17394 73 2.233619 STANDARD +301 Q0 FBIS3-18129 52 2.342345 STANDARD +301 Q0 FBIS3-18507 248 1.896854 STANDARD +301 Q0 FBIS3-19420 32 2.448735 STANDARD +301 Q0 FBIS3-19646 384 1.749999 STANDARD +301 Q0 FBIS3-20551 6 3.137958 STANDARD +301 Q0 FBIS3-20552 7 3.133914 STANDARD +301 Q0 FBIS3-20713 500 1.655716 STANDARD +301 Q0 FBIS3-21750 18 2.670143 STANDARD +301 Q0 FBIS3-21765 172 2.016918 STANDARD +301 Q0 FBIS3-21770 435 1.708522 STANDARD +301 Q0 FBIS3-21779 264 1.880893 STANDARD +301 Q0 FBIS3-21844 459 1.682594 STANDARD +301 Q0 FBIS3-21905 193 1.991868 STANDARD +301 Q0 FBIS3-21908 222 1.930625 STANDARD +301 Q0 FBIS3-21930 199 1.980598 STANDARD +301 Q0 FBIS3-21937 183 2.001406 STANDARD +301 Q0 FBIS3-21938 2 3.280215 STANDARD +301 Q0 FBIS3-21961 327 1.800842 STANDARD +301 Q0 FBIS3-22049 290 1.849501 STANDARD +301 Q0 FBIS3-22085 3 3.228945 STANDARD +301 Q0 FBIS3-22088 207 1.960365 STANDARD +301 Q0 FBIS3-23432 75 2.227293 STANDARD +301 Q0 FBIS3-23901 198 1.982240 STANDARD +301 Q0 FBIS3-23986 16 2.712466 STANDARD +301 Q0 FBIS3-24037 168 2.022115 STANDARD +301 Q0 FBIS3-24143 137 2.081314 STANDARD +301 Q0 FBIS3-24145 397 1.738575 STANDARD +301 Q0 FBIS3-24181 413 1.726911 STANDARD +301 Q0 FBIS3-24190 76 2.211735 STANDARD +301 Q0 FBIS3-24197 274 1.870808 STANDARD +301 Q0 FBIS3-24246 431 1.712145 STANDARD +301 Q0 FBIS3-24247 266 1.878037 STANDARD +301 Q0 FBIS3-24277 230 1.918759 STANDARD +301 Q0 FBIS3-24284 227 1.921283 STANDARD +301 Q0 FBIS3-24362 117 2.114117 STANDARD +301 Q0 FBIS3-24453 195 1.989023 STANDARD +301 Q0 FBIS3-25359 36 2.432513 STANDARD +301 Q0 FBIS3-25796 97 2.143418 STANDARD +301 Q0 FBIS3-25894 132 2.091815 STANDARD +301 Q0 FBIS3-25901 140 2.078458 STANDARD +301 Q0 FBIS3-25902 78 2.191656 STANDARD +301 Q0 FBIS3-25940 87 2.164362 STANDARD +301 Q0 FBIS3-26005 184 2.001203 STANDARD +301 Q0 FBIS3-26006 306 1.822304 STANDARD +301 Q0 FBIS3-26112 77 2.202529 STANDARD +301 Q0 FBIS3-26218 179 2.004786 STANDARD +301 Q0 FBIS3-26367 236 1.908945 STANDARD +301 Q0 FBIS3-26415 54 2.336936 STANDARD +301 Q0 FBIS3-26645 245 1.898311 STANDARD +301 Q0 FBIS3-26651 444 1.693784 STANDARD +301 Q0 FBIS3-26720 72 2.236461 STANDARD +301 Q0 FBIS3-26742 335 1.795461 STANDARD +301 Q0 FBIS3-26805 288 1.850634 STANDARD +301 Q0 FBIS3-26913 249 1.896585 STANDARD +301 Q0 FBIS3-26914 57 2.314254 STANDARD +301 Q0 FBIS3-27051 303 1.826845 STANDARD +301 Q0 FBIS3-27288 499 1.655729 STANDARD +301 Q0 FBIS3-27374 428 1.715253 STANDARD +301 Q0 FBIS3-27474 269 1.873794 STANDARD +301 Q0 FBIS3-27619 99 2.138276 STANDARD +301 Q0 FBIS3-30458 272 1.871451 STANDARD +301 Q0 FBIS3-30686 271 1.871451 STANDARD +301 Q0 FBIS3-31354 447 1.691054 STANDARD +301 Q0 FBIS3-32620 312 1.814571 STANDARD +301 Q0 FBIS3-33020 157 2.047786 STANDARD +301 Q0 FBIS3-35272 162 2.038591 STANDARD +301 Q0 FBIS3-36565 338 1.792058 STANDARD +301 Q0 FBIS3-37418 483 1.668495 STANDARD +301 Q0 FBIS3-38466 394 1.738962 STANDARD +301 Q0 FBIS3-38787 185 1.999308 STANDARD +301 Q0 FBIS3-38878 263 1.882401 STANDARD +301 Q0 FBIS3-39430 420 1.721082 STANDARD +301 Q0 FBIS3-39566 188 1.997787 STANDARD +301 Q0 FBIS3-40077 270 1.872271 STANDARD +301 Q0 FBIS3-41090 317 1.809227 STANDARD +301 Q0 FBIS3-41105 40 2.399732 STANDARD +301 Q0 FBIS3-41143 409 1.729987 STANDARD +301 Q0 FBIS3-41158 197 1.982367 STANDARD +301 Q0 FBIS3-41163 178 2.006615 STANDARD +301 Q0 FBIS3-41244 277 1.865750 STANDARD +301 Q0 FBIS3-41247 49 2.350864 STANDARD +301 Q0 FBIS3-41285 200 1.978161 STANDARD +301 Q0 FBIS3-41288 291 1.847715 STANDARD +301 Q0 FBIS3-41348 83 2.175046 STANDARD +301 Q0 FBIS3-41349 131 2.092097 STANDARD +301 Q0 FBIS3-41385 165 2.026598 STANDARD +301 Q0 FBIS3-42315 210 1.956193 STANDARD +301 Q0 FBIS3-42341 468 1.677783 STANDARD +301 Q0 FBIS3-44612 204 1.963338 STANDARD +301 Q0 FBIS3-44864 170 2.017798 STANDARD +301 Q0 FBIS3-45003 239 1.906086 STANDARD +301 Q0 FBIS3-45072 91 2.160266 STANDARD +301 Q0 FBIS3-45599 13 2.795794 STANDARD +301 Q0 FBIS3-45601 189 1.996655 STANDARD +301 Q0 FBIS3-45602 353 1.777504 STANDARD +301 Q0 FBIS3-45676 50 2.349077 STANDARD +301 Q0 FBIS3-45756 208 1.957361 STANDARD +301 Q0 FBIS3-45789 176 2.012594 STANDARD +301 Q0 FBIS3-46076 359 1.770914 STANDARD +301 Q0 FBIS3-46116 135 2.083308 STANDARD +301 Q0 FBIS3-46228 275 1.868788 STANDARD +301 Q0 FBIS3-46420 79 2.188316 STANDARD +301 Q0 FBIS3-50136 429 1.713585 STANDARD +301 Q0 FBIS3-51005 446 1.691843 STANDARD +301 Q0 FBIS3-51349 352 1.777761 STANDARD +301 Q0 FBIS3-51766 160 2.041041 STANDARD +301 Q0 FBIS3-52075 404 1.734758 STANDARD +301 Q0 FBIS3-52858 126 2.097152 STANDARD +301 Q0 FBIS3-54773 406 1.733266 STANDARD +301 Q0 FBIS3-54944 128 2.095287 STANDARD +301 Q0 FBIS3-55219 103 2.129514 STANDARD +301 Q0 FBIS3-55966 328 1.800644 STANDARD +301 Q0 FBIS3-57406 354 1.777276 STANDARD +301 Q0 FBIS3-58025 68 2.243509 STANDARD +301 Q0 FBIS3-58028 144 2.069669 STANDARD +301 Q0 FBIS3-58055 67 2.243509 STANDARD +301 Q0 FBIS3-58058 143 2.069669 STANDARD +301 Q0 FBIS3-58540 496 1.658499 STANDARD +301 Q0 FBIS3-59073 403 1.734932 STANDARD +301 Q0 FBIS3-59284 56 2.317995 STANDARD +301 Q0 FBIS3-59285 60 2.277126 STANDARD +301 Q0 FBIS3-59322 476 1.674562 STANDARD +301 Q0 FBIS3-60007 494 1.659024 STANDARD +301 Q0 FBIS3-60022 415 1.724387 STANDARD +301 Q0 FBIS3-60076 433 1.708965 STANDARD +301 Q0 FBIS3-60144 385 1.748958 STANDARD +301 Q0 FBIS3-60984 63 2.254571 STANDARD +301 Q0 FBIS3-61238 337 1.792962 STANDARD +301 Q0 FBIS3-61345 393 1.740630 STANDARD +301 Q0 FBIS4-1549 258 1.887025 STANDARD +301 Q0 FBIS4-1553 47 2.362436 STANDARD +301 Q0 FBIS4-1628 142 2.070523 STANDARD +301 Q0 FBIS4-1667 31 2.452689 STANDARD +301 Q0 FBIS4-1668 231 1.915419 STANDARD +301 Q0 FBIS4-1764 46 2.364943 STANDARD +301 Q0 FBIS4-1794 283 1.861069 STANDARD +301 Q0 FBIS4-1796 71 2.236936 STANDARD +301 Q0 FBIS4-1842 106 2.127805 STANDARD +301 Q0 FBIS4-1863 154 2.053106 STANDARD +301 Q0 FBIS4-1865 29 2.473547 STANDARD +301 Q0 FBIS4-1967 33 2.446289 STANDARD +301 Q0 FBIS4-2039 440 1.701881 STANDARD +301 Q0 FBIS4-2048 177 2.011086 STANDARD +301 Q0 FBIS4-2049 311 1.815679 STANDARD +301 Q0 FBIS4-2105 45 2.368016 STANDARD +301 Q0 FBIS4-2318 323 1.802893 STANDARD +301 Q0 FBIS4-2356 101 2.136141 STANDARD +301 Q0 FBIS4-2498 319 1.809141 STANDARD +301 Q0 FBIS4-2510 190 1.996562 STANDARD +301 Q0 FBIS4-2511 432 1.709049 STANDARD +301 Q0 FBIS4-2512 285 1.857639 STANDARD +301 Q0 FBIS4-2514 213 1.947558 STANDARD +301 Q0 FBIS4-2546 349 1.781359 STANDARD +301 Q0 FBIS4-2721 192 1.993366 STANDARD +301 Q0 FBIS4-2725 65 2.245463 STANDARD +301 Q0 FBIS4-2931 280 1.863184 STANDARD +301 Q0 FBIS4-3044 17 2.693945 STANDARD +301 Q0 FBIS4-3077 401 1.735977 STANDARD +301 Q0 FBIS4-3230 149 2.064102 STANDARD +301 Q0 FBIS4-3367 148 2.064102 STANDARD +301 Q0 FBIS4-3370 169 2.018858 STANDARD +301 Q0 FBIS4-4063 82 2.176446 STANDARD +301 Q0 FBIS4-4077 299 1.836900 STANDARD +301 Q0 FBIS4-4127 460 1.682513 STANDARD +301 Q0 FBIS4-6448 187 1.998577 STANDARD +301 Q0 FBIS4-7390 159 2.043206 STANDARD +301 Q0 FBIS4-7688 19 2.669399 STANDARD +301 Q0 FBIS4-7717 365 1.763895 STANDARD +301 Q0 FBIS4-7811 122 2.108214 STANDARD +301 Q0 FBIS4-8957 342 1.788093 STANDARD +301 Q0 FBIS4-10739 293 1.845839 STANDARD +301 Q0 FBIS4-10817 107 2.127389 STANDARD +301 Q0 FBIS4-14080 252 1.890979 STANDARD +301 Q0 FBIS4-14483 153 2.053272 STANDARD +301 Q0 FBIS4-16502 324 1.802201 STANDARD +301 Q0 FBIS4-16950 369 1.761678 STANDARD +301 Q0 FBIS4-16951 22 2.586972 STANDARD +301 Q0 FBIS4-19949 196 1.988816 STANDARD +301 Q0 FBIS4-20367 316 1.810602 STANDARD +301 Q0 FBIS4-20961 488 1.663079 STANDARD +301 Q0 FBIS4-20985 156 2.048596 STANDARD +301 Q0 FBIS4-20988 374 1.757675 STANDARD +301 Q0 FBIS4-21188 292 1.847648 STANDARD +301 Q0 FBIS4-21249 304 1.822357 STANDARD +301 Q0 FBIS4-21294 449 1.688366 STANDARD +301 Q0 FBIS4-21302 20 2.632815 STANDARD +301 Q0 FBIS4-21321 309 1.817834 STANDARD +301 Q0 FBIS4-21330 175 2.013537 STANDARD +301 Q0 FBIS4-22345 218 1.943247 STANDARD +301 Q0 FBIS4-22346 490 1.660598 STANDARD +301 Q0 FBIS4-22471 167 2.022665 STANDARD +301 Q0 FBIS4-22596 410 1.729780 STANDARD +301 Q0 FBIS4-23427 453 1.686031 STANDARD +301 Q0 FBIS4-24386 259 1.886517 STANDARD +301 Q0 FBIS4-24387 27 2.481159 STANDARD +301 Q0 FBIS4-24388 5 3.176254 STANDARD +301 Q0 FBIS4-24419 355 1.777109 STANDARD +301 Q0 FBIS4-24523 224 1.926240 STANDARD +301 Q0 FBIS4-24633 201 1.975092 STANDARD +301 Q0 FBIS4-24694 386 1.747539 STANDARD +301 Q0 FBIS4-24788 381 1.751424 STANDARD +301 Q0 FBIS4-25028 41 2.394200 STANDARD +301 Q0 FBIS4-25032 28 2.480994 STANDARD +301 Q0 FBIS4-25065 262 1.883741 STANDARD +301 Q0 FBIS4-25161 256 1.887178 STANDARD +301 Q0 FBIS4-25262 416 1.722552 STANDARD +301 Q0 FBIS4-25332 347 1.783756 STANDARD +301 Q0 FBIS4-25476 395 1.738840 STANDARD +301 Q0 FBIS4-25706 276 1.867508 STANDARD +301 Q0 FBIS4-25845 108 2.126431 STANDARD +301 Q0 FBIS4-26038 399 1.737455 STANDARD +301 Q0 FBIS4-26072 81 2.183235 STANDARD +301 Q0 FBIS4-26192 114 2.117829 STANDARD +301 Q0 FBIS4-26335 138 2.080463 STANDARD +301 Q0 FBIS4-26351 34 2.436919 STANDARD +301 Q0 FBIS4-26643 329 1.800264 STANDARD +301 Q0 FBIS4-26727 371 1.760759 STANDARD +301 Q0 FBIS4-26786 434 1.708904 STANDARD +301 Q0 FBIS4-30283 471 1.676491 STANDARD +301 Q0 FBIS4-31645 37 2.425397 STANDARD +301 Q0 FBIS4-31652 472 1.675422 STANDARD +301 Q0 FBIS4-33615 445 1.693773 STANDARD +301 Q0 FBIS4-34515 111 2.122778 STANDARD +301 Q0 FBIS4-34666 455 1.684233 STANDARD +301 Q0 FBIS4-34879 118 2.112775 STANDARD +301 Q0 FBIS4-38364 115 2.114667 STANDARD +301 Q0 FBIS4-38410 341 1.790607 STANDARD +301 Q0 FBIS4-38481 215 1.945278 STANDARD +301 Q0 FBIS4-39330 226 1.923398 STANDARD +301 Q0 FBIS4-39570 375 1.757526 STANDARD +301 Q0 FBIS4-39881 257 1.887065 STANDARD +301 Q0 FBIS4-40181 356 1.775154 STANDARD +301 Q0 FBIS4-40260 25 2.528623 STANDARD +301 Q0 FBIS4-40359 448 1.690737 STANDARD +301 Q0 FBIS4-40360 345 1.785083 STANDARD +301 Q0 FBIS4-40452 93 2.153299 STANDARD +301 Q0 FBIS4-40481 232 1.914181 STANDARD +301 Q0 FBIS4-40720 457 1.683077 STANDARD +301 Q0 FBIS4-40930 66 2.243923 STANDARD +301 Q0 FBIS4-40934 225 1.923446 STANDARD +301 Q0 FBIS4-40935 246 1.898004 STANDARD +301 Q0 FBIS4-41144 286 1.853102 STANDARD +301 Q0 FBIS4-41215 61 2.266717 STANDARD +301 Q0 FBIS4-41394 330 1.800183 STANDARD +301 Q0 FBIS4-41395 322 1.803218 STANDARD +301 Q0 FBIS4-41399 301 1.831922 STANDARD +301 Q0 FBIS4-41538 436 1.705109 STANDARD +301 Q0 FBIS4-41541 24 2.550802 STANDARD +301 Q0 FBIS4-41667 214 1.946881 STANDARD +301 Q0 FBIS4-41803 442 1.696270 STANDARD +301 Q0 FBIS4-41839 86 2.170714 STANDARD +301 Q0 FBIS4-41840 55 2.335550 STANDARD +301 Q0 FBIS4-41863 182 2.002898 STANDARD +301 Q0 FBIS4-41952 21 2.622548 STANDARD +301 Q0 FBIS4-41958 388 1.745697 STANDARD +301 Q0 FBIS4-41991 234 1.911603 STANDARD +301 Q0 FBIS4-42757 116 2.114265 STANDARD +301 Q0 FBIS4-43552 133 2.087620 STANDARD +301 Q0 FBIS4-43791 351 1.777947 STANDARD +301 Q0 FBIS4-43797 229 1.919818 STANDARD +301 Q0 FBIS4-43801 43 2.389463 STANDARD +301 Q0 FBIS4-43965 158 2.044602 STANDARD +301 Q0 FBIS4-44181 454 1.685975 STANDARD +301 Q0 FBIS4-44396 129 2.095230 STANDARD +301 Q0 FBIS4-44401 88 2.162794 STANDARD +301 Q0 FBIS4-44512 64 2.251601 STANDARD +301 Q0 FBIS4-45157 310 1.817723 STANDARD +301 Q0 FBIS4-45189 370 1.761385 STANDARD +301 Q0 FBIS4-45235 466 1.679272 STANDARD +301 Q0 FBIS4-45239 267 1.877867 STANDARD +301 Q0 FBIS4-45296 90 2.160571 STANDARD +301 Q0 FBIS4-45333 59 2.277421 STANDARD +301 Q0 FBIS4-45346 452 1.687554 STANDARD +301 Q0 FBIS4-45419 112 2.120282 STANDARD +301 Q0 FBIS4-45450 456 1.683376 STANDARD +301 Q0 FBIS4-45453 51 2.346620 STANDARD +301 Q0 FBIS4-45469 30 2.470949 STANDARD +301 Q0 FBIS4-45477 39 2.404399 STANDARD +301 Q0 FBIS4-45482 127 2.096435 STANDARD +301 Q0 FBIS4-45552 105 2.127882 STANDARD +301 Q0 FBIS4-46425 130 2.092915 STANDARD +301 Q0 FBIS4-46584 217 1.944825 STANDARD +301 Q0 FBIS4-46734 228 1.920978 STANDARD +301 Q0 FBIS4-46757 357 1.773279 STANDARD +301 Q0 FBIS4-46775 281 1.863126 STANDARD +301 Q0 FBIS4-46806 250 1.893980 STANDARD +301 Q0 FBIS4-46846 96 2.144021 STANDARD +301 Q0 FBIS4-46851 377 1.755611 STANDARD +301 Q0 FBIS4-47008 498 1.655917 STANDARD +301 Q0 FBIS4-47045 110 2.123794 STANDARD +301 Q0 FBIS4-47199 458 1.682735 STANDARD +301 Q0 FBIS4-47254 480 1.672893 STANDARD +301 Q0 FBIS4-49075 119 2.112576 STANDARD +301 Q0 FBIS4-49289 194 1.990929 STANDARD +301 Q0 FBIS4-49380 485 1.666289 STANDARD +301 Q0 FBIS4-49431 161 2.038758 STANDARD +301 Q0 FBIS4-49483 379 1.754356 STANDARD +301 Q0 FBIS4-49547 402 1.735723 STANDARD +301 Q0 FBIS4-49754 48 2.351483 STANDARD +301 Q0 FBIS4-49845 211 1.954449 STANDARD +301 Q0 FBIS4-49928 390 1.743994 STANDARD +301 Q0 FBIS4-50056 206 1.961327 STANDARD +301 Q0 FBIS4-50083 58 2.284391 STANDARD +301 Q0 FBIS4-50167 462 1.681279 STANDARD +301 Q0 FBIS4-50209 155 2.049279 STANDARD +301 Q0 FBIS4-50478 1 3.340779 STANDARD +301 Q0 FBIS4-50513 121 2.108639 STANDARD +301 Q0 FBIS4-50806 389 1.744591 STANDARD +301 Q0 FBIS4-50842 251 1.892349 STANDARD +301 Q0 FBIS4-50898 38 2.419756 STANDARD +301 Q0 FBIS4-50993 123 2.106927 STANDARD +301 Q0 FBIS4-51118 191 1.996027 STANDARD +301 Q0 FBIS4-51202 53 2.339266 STANDARD +301 Q0 FBIS4-51255 313 1.812859 STANDARD +301 Q0 FBIS4-51332 223 1.930347 STANDARD +301 Q0 FBIS4-51335 164 2.027163 STANDARD +301 Q0 FBIS4-52929 443 1.696057 STANDARD +301 Q0 FBIS4-53139 477 1.674022 STANDARD +301 Q0 FBIS4-54900 423 1.719201 STANDARD +301 Q0 FBIS4-54904 70 2.237512 STANDARD +301 Q0 FBIS4-55395 173 2.014687 STANDARD +301 Q0 FBIS4-55845 89 2.162241 STANDARD +301 Q0 FBIS4-56776 278 1.864500 STANDARD +301 Q0 FBIS4-56982 100 2.137468 STANDARD +301 Q0 FBIS4-56992 348 1.782381 STANDARD +301 Q0 FBIS4-57133 492 1.659471 STANDARD +301 Q0 FBIS4-57722 417 1.722171 STANDARD +301 Q0 FBIS4-57959 360 1.770075 STANDARD +301 Q0 FBIS4-62049 362 1.767618 STANDARD +301 Q0 FBIS4-62077 430 1.713174 STANDARD +301 Q0 FBIS4-62078 113 2.118467 STANDARD +301 Q0 FBIS4-62079 69 2.239440 STANDARD +301 Q0 FBIS4-62372 62 2.262802 STANDARD +301 Q0 FBIS4-62543 265 1.880077 STANDARD +301 Q0 FBIS4-63597 102 2.132991 STANDARD +301 Q0 FBIS4-64135 398 1.738539 STANDARD +301 Q0 FBIS4-64345 451 1.687968 STANDARD +301 Q0 FBIS4-65446 325 1.801062 STANDARD +301 Q0 FBIS4-65501 421 1.721008 STANDARD +301 Q0 FBIS4-65896 366 1.762550 STANDARD +301 Q0 FBIS4-66178 254 1.889605 STANDARD +301 Q0 FBIS4-66179 392 1.741075 STANDARD +301 Q0 FBIS4-66264 284 1.860067 STANDARD +301 Q0 FBIS4-66291 152 2.057615 STANDARD +301 Q0 FBIS4-66307 151 2.057615 STANDARD +301 Q0 FBIS4-66978 461 1.681566 STANDARD +301 Q0 FBIS4-67072 92 2.157889 STANDARD +301 Q0 FBIS4-67075 289 1.849748 STANDARD +301 Q0 FBIS4-67160 467 1.678897 STANDARD +301 Q0 FBIS4-67183 315 1.811862 STANDARD +301 Q0 FBIS4-67231 481 1.669646 STANDARD +301 Q0 FBIS4-67291 426 1.718286 STANDARD +301 Q0 FBIS4-67336 419 1.721329 STANDARD +301 Q0 FBIS4-68426 346 1.785070 STANDARD +301 Q0 FBIS4-68498 350 1.779944 STANDARD +301 Q0 FBIS4-68669 279 1.864410 STANDARD +301 Q0 FBIS4-68720 382 1.750805 STANDARD +301 Q0 FBIS4-68746 205 1.962427 STANDARD +301 Q0 FBIS4-68801 320 1.808038 STANDARD +301 Q0 FBIS4-68847 368 1.762087 STANDARD +301 Q0 LA010790-0228 383 1.750647 STANDARD +301 Q0 LA011190-0084 464 1.680453 STANDARD +301 Q0 LA021989-0204 380 1.752505 STANDARD +301 Q0 LA032490-0049 300 1.835254 STANDARD +301 Q0 LA041689-0147 479 1.673101 STANDARD +301 Q0 LA041789-0010 463 1.680776 STANDARD +301 Q0 LA041789-0046 180 2.004429 STANDARD +301 Q0 LA041789-0055 372 1.760346 STANDARD +301 Q0 LA042189-0086 94 2.150424 STANDARD +301 Q0 LA042990-0044 344 1.785390 STANDARD +301 Q0 LA052089-0047 396 1.738631 STANDARD +301 Q0 LA060189-0150 363 1.766305 STANDARD +301 Q0 LA061090-0040 412 1.729130 STANDARD +301 Q0 LA062189-0010 84 2.173631 STANDARD +301 Q0 LA062390-0102 391 1.742990 STANDARD +301 Q0 LA070890-0129 268 1.876154 STANDARD +301 Q0 LA071389-0002 296 1.840566 STANDARD +301 Q0 LA071889-0026 247 1.897763 STANDARD +301 Q0 LA071990-0150 235 1.909468 STANDARD +301 Q0 LA080790-0035 343 1.787194 STANDARD +301 Q0 LA080989-0129 203 1.964162 STANDARD +301 Q0 LA082690-0090 411 1.729742 STANDARD +301 Q0 LA082990-0130 400 1.737108 STANDARD +301 Q0 LA100390-0069 298 1.838421 STANDARD +301 Q0 LA100590-0029 333 1.797265 STANDARD +301 Q0 LA101590-0071 136 2.082767 STANDARD +301 Q0 LA101990-0076 486 1.665950 STANDARD +301 Q0 LA120389-0125 474 1.674817 STANDARD +302 Q0 FR940126-2-00100 114 1.582296 STANDARD +302 Q0 FR940126-2-00101 46 1.953586 STANDARD +302 Q0 FR940126-2-00103 135 1.520015 STANDARD +302 Q0 FR940126-2-00104 129 1.525680 STANDARD +302 Q0 FR940126-2-00105 106 1.599944 STANDARD +302 Q0 FR940126-2-00106 1 3.903381 STANDARD +302 Q0 FR940126-2-00107 7 3.332411 STANDARD +302 Q0 FR940126-2-00108 57 1.802135 STANDARD +302 Q0 FR940127-1-00070 455 1.124015 STANDARD +302 Q0 FR940202-2-00107 198 1.377912 STANDARD +302 Q0 FR940202-2-00114 297 1.234256 STANDARD +302 Q0 FR940202-2-00118 421 1.142895 STANDARD +302 Q0 FR940202-2-00143 338 1.206417 STANDARD +302 Q0 FR940202-2-00144 316 1.223743 STANDARD +302 Q0 FR940202-2-00146 262 1.276149 STANDARD +302 Q0 FR940207-2-00089 50 1.906183 STANDARD +302 Q0 FR940325-2-00076 357 1.187326 STANDARD +302 Q0 FR940413-2-00068 241 1.302594 STANDARD +302 Q0 FR940419-2-00071 418 1.144099 STANDARD +302 Q0 FR940425-2-00078 19 2.438183 STANDARD +302 Q0 FR940425-2-00079 30 2.103939 STANDARD +302 Q0 FR940425-2-00080 24 2.243635 STANDARD +302 Q0 FR940425-2-00081 256 1.282593 STANDARD +302 Q0 FR940429-2-00041 282 1.247059 STANDARD +302 Q0 FR940511-1-00058 327 1.215618 STANDARD +302 Q0 FR940511-1-00059 439 1.129806 STANDARD +302 Q0 FR940526-2-00029 478 1.113033 STANDARD +302 Q0 FR940527-2-00067 244 1.301337 STANDARD +302 Q0 FR940527-2-00071 127 1.526561 STANDARD +302 Q0 FR940602-2-00077 29 2.104987 STANDARD +302 Q0 FR940603-2-00059 398 1.154726 STANDARD +302 Q0 FR940603-2-00060 15 2.782961 STANDARD +302 Q0 FR940620-2-00115 33 2.064308 STANDARD +302 Q0 FR940620-2-00116 76 1.700400 STANDARD +302 Q0 FR940620-2-00117 6 3.523580 STANDARD +302 Q0 FR940620-2-00118 3 3.731847 STANDARD +302 Q0 FR940620-2-00119 131 1.522744 STANDARD +302 Q0 FR940620-2-00120 104 1.604327 STANDARD +302 Q0 FR940620-2-00121 130 1.524175 STANDARD +302 Q0 FR940620-2-00122 125 1.551819 STANDARD +302 Q0 FR940620-2-00123 60 1.799975 STANDARD +302 Q0 FR940706-2-00076 386 1.164848 STANDARD +302 Q0 FR940712-2-00054 252 1.286780 STANDARD +302 Q0 FR940721-2-00045 20 2.437944 STANDARD +302 Q0 FR940728-2-00085 323 1.216593 STANDARD +302 Q0 FR940802-1-00013 466 1.119126 STANDARD +302 Q0 FR940804-2-00088 237 1.309173 STANDARD +302 Q0 FR940822-0-00027 90 1.648039 STANDARD +302 Q0 FR940825-2-00076 254 1.284040 STANDARD +302 Q0 FR940825-2-00078 415 1.144784 STANDARD +302 Q0 FR940831-2-00064 284 1.245832 STANDARD +302 Q0 FR941004-2-00099 45 1.958277 STANDARD +302 Q0 FR941007-2-00138 295 1.237001 STANDARD +302 Q0 FR941028-2-00164 345 1.198724 STANDARD +302 Q0 FR941028-2-00208 459 1.123254 STANDARD +302 Q0 FR941107-2-00231 477 1.113324 STANDARD +302 Q0 FR941107-2-00232 266 1.269728 STANDARD +302 Q0 FR941206-2-00055 98 1.628696 STANDARD +302 Q0 FT911-4947 322 1.216988 STANDARD +302 Q0 FT921-1150 446 1.126972 STANDARD +302 Q0 FT921-16061 42 1.979791 STANDARD +302 Q0 FT922-884 126 1.551071 STANDARD +302 Q0 FT923-10404 495 1.102139 STANDARD +302 Q0 FT923-11350 91 1.646234 STANDARD +302 Q0 FT923-11885 66 1.757583 STANDARD +302 Q0 FT923-12277 78 1.691588 STANDARD +302 Q0 FT923-14971 184 1.400973 STANDARD +302 Q0 FT923-3060 453 1.124515 STANDARD +302 Q0 FT924-4737 361 1.183190 STANDARD +302 Q0 FT924-5353 382 1.167350 STANDARD +302 Q0 FT924-8024 71 1.723108 STANDARD +302 Q0 FT924-10652 58 1.801978 STANDARD +302 Q0 FT924-10987 420 1.143019 STANDARD +302 Q0 FT931-5665 61 1.798182 STANDARD +302 Q0 FT931-7060 28 2.144266 STANDARD +302 Q0 FT931-11085 37 2.020882 STANDARD +302 Q0 FT931-13033 178 1.414167 STANDARD +302 Q0 FT931-14151 319 1.222396 STANDARD +302 Q0 FT931-15924 287 1.243739 STANDARD +302 Q0 FT932-3794 89 1.650566 STANDARD +302 Q0 FT932-3963 69 1.742215 STANDARD +302 Q0 FT932-4292 35 2.063122 STANDARD +302 Q0 FT932-4485 39 1.992607 STANDARD +302 Q0 FT932-4805 320 1.221188 STANDARD +302 Q0 FT932-9367 205 1.365945 STANDARD +302 Q0 FT932-13227 206 1.364191 STANDARD +302 Q0 FT932-16160 182 1.411142 STANDARD +302 Q0 FT932-16273 362 1.182909 STANDARD +302 Q0 FT932-2515 138 1.516354 STANDARD +302 Q0 FT932-2516 133 1.522100 STANDARD +302 Q0 FT933-5756 392 1.160451 STANDARD +302 Q0 FT933-7438 32 2.068962 STANDARD +302 Q0 FT933-7908 119 1.575692 STANDARD +302 Q0 FT933-8272 433 1.133743 STANDARD +302 Q0 FT933-8865 23 2.293720 STANDARD +302 Q0 FT933-15869 409 1.146782 STANDARD +302 Q0 FT934-5207 354 1.191932 STANDARD +302 Q0 FT934-1206 84 1.660639 STANDARD +302 Q0 FT941-4398 494 1.102784 STANDARD +302 Q0 FT941-9662 177 1.415745 STANDARD +302 Q0 FT941-9667 174 1.424419 STANDARD +302 Q0 FT941-12410 47 1.952884 STANDARD +302 Q0 FT941-14380 452 1.124642 STANDARD +302 Q0 FT942-4193 192 1.387008 STANDARD +302 Q0 FT942-6645 389 1.164244 STANDARD +302 Q0 FT942-10460 183 1.408001 STANDARD +302 Q0 FT942-14203 264 1.273275 STANDARD +302 Q0 FT942-16430 115 1.578239 STANDARD +302 Q0 FT942-17260 461 1.121077 STANDARD +302 Q0 FT942-1963 360 1.184242 STANDARD +302 Q0 FT943-208 276 1.255437 STANDARD +302 Q0 FT943-677 228 1.324922 STANDARD +302 Q0 FT943-8860 62 1.794647 STANDARD +302 Q0 FT943-9445 165 1.436319 STANDARD +302 Q0 FT943-9853 229 1.324141 STANDARD +302 Q0 FT943-10078 365 1.179210 STANDARD +302 Q0 FT943-11435 436 1.131540 STANDARD +302 Q0 FT944-3523 283 1.245945 STANDARD +302 Q0 FT944-6035 426 1.141629 STANDARD +302 Q0 FT944-10864 93 1.640599 STANDARD +302 Q0 FT944-18645 194 1.384963 STANDARD +302 Q0 FT944-2489 289 1.241911 STANDARD +302 Q0 FT944-2592 331 1.211619 STANDARD +302 Q0 FBIS3-3580 107 1.599165 STANDARD +302 Q0 FBIS3-9878 258 1.281467 STANDARD +302 Q0 FBIS3-20890 226 1.325824 STANDARD +302 Q0 FBIS3-21399 329 1.213403 STANDARD +302 Q0 FBIS3-21404 40 1.987228 STANDARD +302 Q0 FBIS3-22133 471 1.116462 STANDARD +302 Q0 FBIS3-22457 395 1.157360 STANDARD +302 Q0 FBIS3-22470 100 1.619752 STANDARD +302 Q0 FBIS3-22471 451 1.124663 STANDARD +302 Q0 FBIS3-22472 447 1.126952 STANDARD +302 Q0 FBIS3-22480 140 1.506470 STANDARD +302 Q0 FBIS3-22481 429 1.137234 STANDARD +302 Q0 FBIS3-22482 414 1.145063 STANDARD +302 Q0 FBIS3-22485 265 1.271299 STANDARD +302 Q0 FBIS3-22486 64 1.762715 STANDARD +302 Q0 FBIS3-22487 432 1.134203 STANDARD +302 Q0 FBIS3-22493 315 1.224877 STANDARD +302 Q0 FBIS3-22495 364 1.180658 STANDARD +302 Q0 FBIS3-22497 450 1.125811 STANDARD +302 Q0 FBIS3-22500 332 1.211505 STANDARD +302 Q0 FBIS3-22504 271 1.262604 STANDARD +302 Q0 FBIS3-22508 416 1.144698 STANDARD +302 Q0 FBIS3-22509 263 1.275077 STANDARD +302 Q0 FBIS3-22511 230 1.323761 STANDARD +302 Q0 FBIS3-22515 232 1.319770 STANDARD +302 Q0 FBIS3-22518 384 1.166554 STANDARD +302 Q0 FBIS3-22521 480 1.111836 STANDARD +302 Q0 FBIS3-22522 157 1.457574 STANDARD +302 Q0 FBIS3-22523 207 1.363063 STANDARD +302 Q0 FBIS3-22525 105 1.603753 STANDARD +302 Q0 FBIS3-22526 222 1.328708 STANDARD +302 Q0 FBIS3-22527 487 1.108204 STANDARD +302 Q0 FBIS3-22529 260 1.280065 STANDARD +302 Q0 FBIS3-22534 412 1.145903 STANDARD +302 Q0 FBIS3-22535 385 1.165574 STANDARD +302 Q0 FBIS3-22538 318 1.222736 STANDARD +302 Q0 FBIS3-22539 458 1.123520 STANDARD +302 Q0 FBIS3-22544 444 1.127363 STANDARD +302 Q0 FBIS3-22545 468 1.118337 STANDARD +302 Q0 FBIS3-22546 292 1.240802 STANDARD +302 Q0 FBIS3-22547 73 1.709073 STANDARD +302 Q0 FBIS3-22551 120 1.562989 STANDARD +302 Q0 FBIS3-22552 379 1.167788 STANDARD +302 Q0 FBIS3-22556 274 1.259951 STANDARD +302 Q0 FBIS3-22557 179 1.413374 STANDARD +302 Q0 FBIS3-22560 48 1.947496 STANDARD +302 Q0 FBIS3-22561 308 1.229025 STANDARD +302 Q0 FBIS3-22562 251 1.288021 STANDARD +302 Q0 FBIS3-22564 250 1.288276 STANDARD +302 Q0 FBIS3-22565 334 1.208624 STANDARD +302 Q0 FBIS3-22567 109 1.593502 STANDARD +302 Q0 FBIS3-22571 440 1.129540 STANDARD +302 Q0 FBIS3-22575 145 1.484583 STANDARD +302 Q0 FBIS3-22581 330 1.213062 STANDARD +302 Q0 FBIS3-22589 34 2.063180 STANDARD +302 Q0 FBIS3-22591 201 1.373183 STANDARD +302 Q0 FBIS3-22592 277 1.253631 STANDARD +302 Q0 FBIS3-22593 280 1.249368 STANDARD +302 Q0 FBIS3-22597 278 1.253064 STANDARD +302 Q0 FBIS3-22598 473 1.115620 STANDARD +302 Q0 FBIS3-22600 97 1.629104 STANDARD +302 Q0 FBIS3-22605 377 1.169227 STANDARD +302 Q0 FBIS3-22608 285 1.245406 STANDARD +302 Q0 FBIS3-22625 462 1.120771 STANDARD +302 Q0 FBIS3-22629 195 1.381716 STANDARD +302 Q0 FBIS3-22633 128 1.526149 STANDARD +302 Q0 FBIS3-22639 248 1.294989 STANDARD +302 Q0 FBIS3-22642 124 1.552478 STANDARD +302 Q0 FBIS3-22644 376 1.170014 STANDARD +302 Q0 FBIS3-22647 103 1.604824 STANDARD +302 Q0 FBIS3-22658 211 1.350197 STANDARD +302 Q0 FBIS3-22659 490 1.104771 STANDARD +302 Q0 FBIS3-22672 434 1.132714 STANDARD +302 Q0 FBIS3-22673 381 1.167566 STANDARD +302 Q0 FBIS3-22675 344 1.200540 STANDARD +302 Q0 FBIS3-22678 156 1.457954 STANDARD +302 Q0 FBIS3-22679 302 1.232604 STANDARD +302 Q0 FBIS3-22680 139 1.514269 STANDARD +302 Q0 FBIS3-22681 38 1.994626 STANDARD +302 Q0 FBIS3-22691 491 1.104019 STANDARD +302 Q0 FBIS3-22693 86 1.654739 STANDARD +302 Q0 FBIS3-22695 122 1.558127 STANDARD +302 Q0 FBIS3-22697 286 1.243824 STANDARD +302 Q0 FBIS3-22698 199 1.375253 STANDARD +302 Q0 FBIS3-22699 172 1.427079 STANDARD +302 Q0 FBIS3-22700 186 1.396378 STANDARD +302 Q0 FBIS3-22702 355 1.189952 STANDARD +302 Q0 FBIS3-22713 489 1.107337 STANDARD +302 Q0 FBIS3-22715 442 1.128779 STANDARD +302 Q0 FBIS3-24615 443 1.128777 STANDARD +302 Q0 FBIS3-24617 396 1.156353 STANDARD +302 Q0 FBIS3-26593 154 1.460740 STANDARD +302 Q0 FBIS3-27468 347 1.197151 STANDARD +302 Q0 FBIS3-34497 227 1.325511 STANDARD +302 Q0 FBIS3-41670 404 1.148597 STANDARD +302 Q0 FBIS3-41671 437 1.131430 STANDARD +302 Q0 FBIS3-41673 335 1.208375 STANDARD +302 Q0 FBIS3-41676 85 1.659557 STANDARD +302 Q0 FBIS3-41681 328 1.215335 STANDARD +302 Q0 FBIS3-41688 137 1.517019 STANDARD +302 Q0 FBIS3-41698 81 1.687278 STANDARD +302 Q0 FBIS3-41700 500 1.098885 STANDARD +302 Q0 FBIS3-41704 387 1.164646 STANDARD +302 Q0 FBIS3-41705 236 1.310159 STANDARD +302 Q0 FBIS3-41707 193 1.386410 STANDARD +302 Q0 FBIS3-41710 74 1.705933 STANDARD +302 Q0 FBIS3-41714 321 1.219498 STANDARD +302 Q0 FBIS3-41716 218 1.333742 STANDARD +302 Q0 FBIS3-41724 301 1.232672 STANDARD +302 Q0 FBIS3-41725 424 1.142144 STANDARD +302 Q0 FBIS3-41728 246 1.298668 STANDARD +302 Q0 FBIS3-41730 123 1.555097 STANDARD +302 Q0 FBIS3-41731 132 1.522618 STANDARD +302 Q0 FBIS3-41732 454 1.124111 STANDARD +302 Q0 FBIS3-41744 294 1.238181 STANDARD +302 Q0 FBIS3-41752 430 1.135954 STANDARD +302 Q0 FBIS3-41758 221 1.328833 STANDARD +302 Q0 FBIS3-41761 456 1.123632 STANDARD +302 Q0 FBIS3-41775 231 1.321660 STANDARD +302 Q0 FBIS3-41777 358 1.187111 STANDARD +302 Q0 FBIS3-41782 273 1.261917 STANDARD +302 Q0 FBIS3-41784 267 1.269588 STANDARD +302 Q0 FBIS3-41801 80 1.688804 STANDARD +302 Q0 FBIS3-41802 324 1.216502 STANDARD +302 Q0 FBIS3-41806 168 1.429456 STANDARD +302 Q0 FBIS3-41809 108 1.596296 STANDARD +302 Q0 FBIS3-41810 400 1.152413 STANDARD +302 Q0 FBIS3-41824 375 1.170111 STANDARD +302 Q0 FBIS3-41830 483 1.110320 STANDARD +302 Q0 FBIS3-43143 485 1.109929 STANDARD +302 Q0 FBIS3-43197 484 1.109929 STANDARD +302 Q0 FBIS3-44438 275 1.259051 STANDARD +302 Q0 FBIS3-44712 202 1.372857 STANDARD +302 Q0 FBIS3-46348 171 1.427414 STANDARD +302 Q0 FBIS3-51019 402 1.149882 STANDARD +302 Q0 FBIS3-51754 233 1.319570 STANDARD +302 Q0 FBIS3-60395 493 1.102921 STANDARD +302 Q0 FBIS3-60402 150 1.471395 STANDARD +302 Q0 FBIS3-60403 13 2.878093 STANDARD +302 Q0 FBIS3-60404 8 3.130671 STANDARD +302 Q0 FBIS3-60405 14 2.859010 STANDARD +302 Q0 FBIS3-60407 304 1.231171 STANDARD +302 Q0 FBIS3-60408 460 1.121424 STANDARD +302 Q0 FBIS3-60409 313 1.225089 STANDARD +302 Q0 FBIS3-60419 56 1.803757 STANDARD +302 Q0 FBIS3-60422 170 1.427868 STANDARD +302 Q0 FBIS3-60440 161 1.448709 STANDARD +302 Q0 FBIS3-60442 486 1.108776 STANDARD +302 Q0 FBIS3-60444 272 1.262081 STANDARD +302 Q0 FBIS3-60446 181 1.411379 STANDARD +302 Q0 FBIS3-60448 54 1.812076 STANDARD +302 Q0 FBIS3-60449 200 1.374640 STANDARD +302 Q0 FBIS3-60450 31 2.085482 STANDARD +302 Q0 FBIS3-60454 94 1.639467 STANDARD +302 Q0 FBIS3-60456 374 1.170238 STANDARD +302 Q0 FBIS3-60457 212 1.345882 STANDARD +302 Q0 FBIS3-60461 167 1.433561 STANDARD +302 Q0 FBIS3-60463 464 1.119706 STANDARD +302 Q0 FBIS3-60466 196 1.378970 STANDARD +302 Q0 FBIS3-60467 366 1.179180 STANDARD +302 Q0 FBIS3-60469 204 1.366875 STANDARD +302 Q0 FBIS3-60478 169 1.428524 STANDARD +302 Q0 FBIS3-60483 164 1.439408 STANDARD +302 Q0 FBIS3-60486 220 1.331547 STANDARD +302 Q0 FBIS3-60487 298 1.233542 STANDARD +302 Q0 FBIS3-60491 191 1.387140 STANDARD +302 Q0 FBIS3-60500 469 1.117763 STANDARD +302 Q0 FBIS3-60503 82 1.686233 STANDARD +302 Q0 FBIS3-60504 269 1.263315 STANDARD +302 Q0 FBIS3-60507 363 1.181217 STANDARD +302 Q0 FBIS3-60509 303 1.231293 STANDARD +302 Q0 FBIS3-60510 53 1.814122 STANDARD +302 Q0 FBIS3-60521 176 1.416996 STANDARD +302 Q0 FBIS3-60523 306 1.230749 STANDARD +302 Q0 FBIS3-60528 136 1.519922 STANDARD +302 Q0 FBIS3-60529 216 1.337579 STANDARD +302 Q0 FBIS3-60534 101 1.613961 STANDARD +302 Q0 FBIS3-60546 187 1.396146 STANDARD +302 Q0 FBIS3-60553 163 1.441484 STANDARD +302 Q0 FBIS3-60557 148 1.474004 STANDARD +302 Q0 FBIS3-60560 159 1.450522 STANDARD +302 Q0 FBIS3-60561 16 2.636101 STANDARD +302 Q0 FBIS3-60562 17 2.591041 STANDARD +302 Q0 FBIS3-60563 352 1.193492 STANDARD +302 Q0 FBIS3-60565 393 1.159267 STANDARD +302 Q0 FBIS3-60571 337 1.207181 STANDARD +302 Q0 FBIS3-60572 499 1.099626 STANDARD +302 Q0 FBIS3-60573 296 1.236171 STANDARD +302 Q0 FBIS3-60575 293 1.239741 STANDARD +302 Q0 FBIS3-60579 422 1.142851 STANDARD +302 Q0 FBIS3-61373 79 1.689817 STANDARD +302 Q0 FBIS4-4241 12 2.932959 STANDARD +302 Q0 FBIS4-9951 423 1.142520 STANDARD +302 Q0 FBIS4-22716 22 2.356809 STANDARD +302 Q0 FBIS4-24438 394 1.157453 STANDARD +302 Q0 FBIS4-24634 492 1.103483 STANDARD +302 Q0 FBIS4-24799 407 1.147269 STANDARD +302 Q0 FBIS4-25445 403 1.149348 STANDARD +302 Q0 FBIS4-25561 190 1.389882 STANDARD +302 Q0 FBIS4-25574 189 1.389882 STANDARD +302 Q0 FBIS4-26014 343 1.201114 STANDARD +302 Q0 FBIS4-27941 121 1.560840 STANDARD +302 Q0 FBIS4-30023 149 1.471570 STANDARD +302 Q0 FBIS4-30637 44 1.958432 STANDARD +302 Q0 FBIS4-30664 223 1.327488 STANDARD +302 Q0 FBIS4-33007 270 1.262837 STANDARD +302 Q0 FBIS4-33295 369 1.177596 STANDARD +302 Q0 FBIS4-33435 27 2.173614 STANDARD +302 Q0 FBIS4-33437 307 1.229984 STANDARD +302 Q0 FBIS4-34379 474 1.115135 STANDARD +302 Q0 FBIS4-34971 325 1.216122 STANDARD +302 Q0 FBIS4-38133 116 1.578185 STANDARD +302 Q0 FBIS4-43829 153 1.461363 STANDARD +302 Q0 FBIS4-45613 49 1.924992 STANDARD +302 Q0 FBIS4-45832 158 1.451067 STANDARD +302 Q0 FBIS4-45836 240 1.303371 STANDARD +302 Q0 FBIS4-45838 291 1.241130 STANDARD +302 Q0 FBIS4-45842 255 1.282999 STANDARD +302 Q0 FBIS4-45844 11 2.958325 STANDARD +302 Q0 FBIS4-45864 482 1.110835 STANDARD +302 Q0 FBIS4-45866 144 1.484742 STANDARD +302 Q0 FBIS4-45867 155 1.459561 STANDARD +302 Q0 FBIS4-45869 314 1.224957 STANDARD +302 Q0 FBIS4-45874 259 1.281023 STANDARD +302 Q0 FBIS4-45876 208 1.361283 STANDARD +302 Q0 FBIS4-45905 419 1.144002 STANDARD +302 Q0 FBIS4-45908 497 1.100872 STANDARD +302 Q0 FBIS4-47578 457 1.123556 STANDARD +302 Q0 FBIS4-47588 110 1.589274 STANDARD +302 Q0 FBIS4-50959 336 1.208171 STANDARD +302 Q0 FBIS4-51384 470 1.117548 STANDARD +302 Q0 FBIS4-60762 309 1.228588 STANDARD +302 Q0 FBIS4-67598 146 1.484315 STANDARD +302 Q0 FBIS4-67600 367 1.178247 STANDARD +302 Q0 FBIS4-67614 151 1.470372 STANDARD +302 Q0 FBIS4-67615 405 1.147719 STANDARD +302 Q0 FBIS4-67616 134 1.521482 STANDARD +302 Q0 FBIS4-67618 75 1.703295 STANDARD +302 Q0 FBIS4-67624 399 1.153641 STANDARD +302 Q0 FBIS4-67627 257 1.282458 STANDARD +302 Q0 FBIS4-67642 243 1.301578 STANDARD +302 Q0 FBIS4-67646 160 1.450282 STANDARD +302 Q0 FBIS4-67647 113 1.586491 STANDARD +302 Q0 FBIS4-67648 281 1.249212 STANDARD +302 Q0 FBIS4-67649 213 1.344430 STANDARD +302 Q0 FBIS4-67650 449 1.126215 STANDARD +302 Q0 FBIS4-67654 359 1.184387 STANDARD +302 Q0 FBIS4-67656 476 1.114053 STANDARD +302 Q0 FBIS4-67675 342 1.201895 STANDARD +302 Q0 FBIS4-67687 339 1.205313 STANDARD +302 Q0 FBIS4-67690 431 1.135499 STANDARD +302 Q0 FBIS4-67696 65 1.761433 STANDARD +302 Q0 FBIS4-67701 2 3.882368 STANDARD +302 Q0 FBIS4-67706 380 1.167594 STANDARD +302 Q0 FBIS4-67707 72 1.722683 STANDARD +302 Q0 FBIS4-67711 162 1.442066 STANDARD +302 Q0 FBIS4-67720 51 1.858389 STANDARD +302 Q0 FBIS4-67722 348 1.196605 STANDARD +302 Q0 LA010789-0007 242 1.302063 STANDARD +302 Q0 LA011090-0064 268 1.268217 STANDARD +302 Q0 LA012090-0059 219 1.332366 STANDARD +302 Q0 LA012190-0203 341 1.202690 STANDARD +302 Q0 LA012490-0120 197 1.378699 STANDARD +302 Q0 LA012689-0167 406 1.147436 STANDARD +302 Q0 LA013089-0022 117 1.576566 STANDARD +302 Q0 LA020490-0202 247 1.297672 STANDARD +302 Q0 LA020589-0070 312 1.225277 STANDARD +302 Q0 LA021389-0067 68 1.746178 STANDARD +302 Q0 LA021889-0149 445 1.127142 STANDARD +302 Q0 LA021890-0038 351 1.193847 STANDARD +302 Q0 LA022189-0016 413 1.145661 STANDARD +302 Q0 LA022190-0022 465 1.119176 STANDARD +302 Q0 LA022689-0006 438 1.130720 STANDARD +302 Q0 LA030390-0089 472 1.115637 STANDARD +302 Q0 LA030589-0108 383 1.167174 STANDARD +302 Q0 LA030889-0102 249 1.291264 STANDARD +302 Q0 LA031089-0169 300 1.233112 STANDARD +302 Q0 LA031190-0116 353 1.192337 STANDARD +302 Q0 LA031290-0103 214 1.342806 STANDARD +302 Q0 LA031290-0118 87 1.653508 STANDARD +302 Q0 LA031489-0032 43 1.977350 STANDARD +302 Q0 LA031490-0028 417 1.144514 STANDARD +302 Q0 LA032190-0081 378 1.168895 STANDARD +302 Q0 LA032489-0047 435 1.132537 STANDARD +302 Q0 LA033190-0001 59 1.801338 STANDARD +302 Q0 LA040989-0094 238 1.305311 STANDARD +302 Q0 LA040990-0066 428 1.137302 STANDARD +302 Q0 LA041090-0013 373 1.171407 STANDARD +302 Q0 LA041190-0046 99 1.624717 STANDARD +302 Q0 LA041190-0093 235 1.318470 STANDARD +302 Q0 LA041490-0061 427 1.139048 STANDARD +302 Q0 LA041490-0129 70 1.735615 STANDARD +302 Q0 LA041690-0085 188 1.391353 STANDARD +302 Q0 LA041889-0082 448 1.126388 STANDARD +302 Q0 LA041890-0007 143 1.491353 STANDARD +302 Q0 LA042190-0056 52 1.853169 STANDARD +302 Q0 LA042289-0001 166 1.435166 STANDARD +302 Q0 LA042890-0002 496 1.101882 STANDARD +302 Q0 LA043090-0036 5 3.602112 STANDARD +302 Q0 LA050390-0206 245 1.300098 STANDARD +302 Q0 LA050490-0049 371 1.175813 STANDARD +302 Q0 LA050689-0091 209 1.360590 STANDARD +302 Q0 LA050789-0042 26 2.192468 STANDARD +302 Q0 LA050889-0049 224 1.327353 STANDARD +302 Q0 LA050989-0110 463 1.119862 STANDARD +302 Q0 LA051190-0179 215 1.340992 STANDARD +302 Q0 LA052090-0077 111 1.588494 STANDARD +302 Q0 LA052190-0106 185 1.397359 STANDARD +302 Q0 LA052689-0094 340 1.203054 STANDARD +302 Q0 LA060490-0002 142 1.495072 STANDARD +302 Q0 LA060589-0052 25 2.200196 STANDARD +302 Q0 LA060589-0053 152 1.468529 STANDARD +302 Q0 LA061390-0071 467 1.118551 STANDARD +302 Q0 LA061590-0016 317 1.223657 STANDARD +302 Q0 LA061989-0045 112 1.588043 STANDARD +302 Q0 LA062190-0135 95 1.637808 STANDARD +302 Q0 LA062389-0056 253 1.285077 STANDARD +302 Q0 LA062389-0128 63 1.788286 STANDARD +302 Q0 LA062590-0046 88 1.653459 STANDARD +302 Q0 LA070989-0053 288 1.243145 STANDARD +302 Q0 LA071190-0053 290 1.241184 STANDARD +302 Q0 LA071590-0110 10 3.000424 STANDARD +302 Q0 LA071989-0117 350 1.195099 STANDARD +302 Q0 LA071990-0012 368 1.177990 STANDARD +302 Q0 LA072890-0066 4 3.725770 STANDARD +302 Q0 LA080290-0073 356 1.187773 STANDARD +302 Q0 LA080290-0194 390 1.161783 STANDARD +302 Q0 LA080489-0126 397 1.156181 STANDARD +302 Q0 LA080589-0052 55 1.809388 STANDARD +302 Q0 LA081889-0061 261 1.279338 STANDARD +302 Q0 LA081990-0088 481 1.111647 STANDARD +302 Q0 LA082489-0115 118 1.576243 STANDARD +302 Q0 LA082490-0065 9 3.047859 STANDARD +302 Q0 LA082689-0127 147 1.477198 STANDARD +302 Q0 LA082789-0123 370 1.176067 STANDARD +302 Q0 LA082789-0154 67 1.748509 STANDARD +302 Q0 LA090389-0127 479 1.112888 STANDARD +302 Q0 LA090589-0046 475 1.114494 STANDARD +302 Q0 LA090990-0031 21 2.384336 STANDARD +302 Q0 LA091489-0204 498 1.100304 STANDARD +302 Q0 LA091690-0156 310 1.228566 STANDARD +302 Q0 LA092490-0069 388 1.164429 STANDARD +302 Q0 LA092589-0002 77 1.698853 STANDARD +302 Q0 LA092589-0083 96 1.630907 STANDARD +302 Q0 LA092689-0080 173 1.425341 STANDARD +302 Q0 LA092689-0119 180 1.411906 STANDARD +302 Q0 LA092690-0153 488 1.107912 STANDARD +302 Q0 LA100189-0047 18 2.532459 STANDARD +302 Q0 LA100389-0009 425 1.141877 STANDARD +302 Q0 LA101289-0068 401 1.151677 STANDARD +302 Q0 LA101289-0111 441 1.129145 STANDARD +302 Q0 LA101589-0050 203 1.370296 STANDARD +302 Q0 LA101689-0055 239 1.304111 STANDARD +302 Q0 LA101690-0040 83 1.673646 STANDARD +302 Q0 LA101790-0049 349 1.195215 STANDARD +302 Q0 LA101890-0243 333 1.209156 STANDARD +302 Q0 LA102989-0049 279 1.250796 STANDARD +302 Q0 LA102989-0210 372 1.174726 STANDARD +302 Q0 LA110190-0009 210 1.360198 STANDARD +302 Q0 LA110389-0010 234 1.318570 STANDARD +302 Q0 LA110389-0072 410 1.146627 STANDARD +302 Q0 LA110689-0060 141 1.498920 STANDARD +302 Q0 LA110889-0156 217 1.335542 STANDARD +302 Q0 LA111189-0018 92 1.646024 STANDARD +302 Q0 LA111190-0161 175 1.423040 STANDARD +302 Q0 LA111390-0102 225 1.326286 STANDARD +302 Q0 LA111590-0078 311 1.227268 STANDARD +302 Q0 LA112089-0054 102 1.607928 STANDARD +302 Q0 LA112390-0084 299 1.233280 STANDARD +302 Q0 LA112990-0019 408 1.146821 STANDARD +302 Q0 LA112990-0145 411 1.146439 STANDARD +302 Q0 LA113089-0213 305 1.231070 STANDARD +302 Q0 LA120789-0120 346 1.197888 STANDARD +302 Q0 LA122389-0074 391 1.160482 STANDARD +302 Q0 LA122489-0073 326 1.215896 STANDARD +302 Q0 LA122589-0100 41 1.985150 STANDARD +302 Q0 LA123090-0026 36 2.025362 STANDARD +303 Q0 FR940119-2-00100 275 1.015211 STANDARD +303 Q0 FR940304-2-00134 183 1.254448 STANDARD +303 Q0 FR940304-2-00135 117 1.645932 STANDARD +303 Q0 FR940513-2-00145 387 0.877140 STANDARD +303 Q0 FR940602-2-00109 489 0.806242 STANDARD +303 Q0 FR940622-2-00073 438 0.843079 STANDARD +303 Q0 FR940906-2-00139 388 0.876992 STANDARD +303 Q0 FR940926-2-00073 454 0.832528 STANDARD +303 Q0 FR941006-2-00076 446 0.836143 STANDARD +303 Q0 FR941020-2-00110 208 1.170328 STANDARD +303 Q0 FR941130-2-00086 407 0.863714 STANDARD +303 Q0 FR941205-2-00054 485 0.807621 STANDARD +303 Q0 FR941221-0-00047 254 1.057115 STANDARD +303 Q0 FR941221-0-00048 420 0.853809 STANDARD +303 Q0 FR941221-0-00049 313 0.956703 STANDARD +303 Q0 FR941221-0-00051 451 0.834705 STANDARD +303 Q0 FR941221-0-00052 390 0.874838 STANDARD +303 Q0 FT921-3432 69 2.237047 STANDARD +303 Q0 FT921-3809 409 0.862736 STANDARD +303 Q0 FT921-7107 19 3.363091 STANDARD +303 Q0 FT921-8919 160 1.360642 STANDARD +303 Q0 FT921-832 466 0.822476 STANDARD +303 Q0 FT921-15863 206 1.175726 STANDARD +303 Q0 FT922-7904 226 1.118909 STANDARD +303 Q0 FT922-11472 298 0.978346 STANDARD +303 Q0 FT922-13455 165 1.346386 STANDARD +303 Q0 FT923-3530 148 1.409420 STANDARD +303 Q0 FT923-5257 274 1.017270 STANDARD +303 Q0 FT923-7711 256 1.055355 STANDARD +303 Q0 FT923-9781 433 0.847790 STANDARD +303 Q0 FT923-10876 278 1.011683 STANDARD +303 Q0 FT924-286 89 2.025797 STANDARD +303 Q0 FT924-4358 439 0.843043 STANDARD +303 Q0 FT924-12943 314 0.956181 STANDARD +303 Q0 FT924-14355 139 1.478320 STANDARD +303 Q0 FT931-6554 43 2.681227 STANDARD +303 Q0 FT931-10187 474 0.817357 STANDARD +303 Q0 FT931-15900 484 0.808374 STANDARD +303 Q0 FT931-1868 201 1.188802 STANDARD +303 Q0 FT931-2231 341 0.921274 STANDARD +303 Q0 FT932-4616 422 0.853034 STANDARD +303 Q0 FT932-4803 345 0.915780 STANDARD +303 Q0 FT932-12850 186 1.249146 STANDARD +303 Q0 FT932-15782 391 0.874581 STANDARD +303 Q0 FT932-15788 268 1.023917 STANDARD +303 Q0 FT932-16246 210 1.161086 STANDARD +303 Q0 FT933-3699 95 1.910402 STANDARD +303 Q0 FT933-6323 94 1.919063 STANDARD +303 Q0 FT933-6678 60 2.373152 STANDARD +303 Q0 FT933-6946 68 2.295164 STANDARD +303 Q0 FT933-678 112 1.695116 STANDARD +303 Q0 FT933-10324 119 1.642809 STANDARD +303 Q0 FT933-2180 164 1.349473 STANDARD +303 Q0 FT934-3325 100 1.846668 STANDARD +303 Q0 FT934-3766 102 1.797155 STANDARD +303 Q0 FT934-4015 97 1.875063 STANDARD +303 Q0 FT934-4132 70 2.207861 STANDARD +303 Q0 FT934-4525 429 0.848461 STANDARD +303 Q0 FT934-4583 88 2.035755 STANDARD +303 Q0 FT934-5418 8 3.747635 STANDARD +303 Q0 FT934-2516 7 3.768137 STANDARD +303 Q0 FT934-2685 203 1.182910 STANDARD +303 Q0 FT934-3191 75 2.122274 STANDARD +303 Q0 FT941-3758 177 1.278597 STANDARD +303 Q0 FT941-5396 227 1.110329 STANDARD +303 Q0 FT941-793 96 1.901362 STANDARD +303 Q0 FT941-15661 67 2.307403 STANDARD +303 Q0 FT941-17652 99 1.857372 STANDARD +303 Q0 FT942-5468 336 0.924340 STANDARD +303 Q0 FT942-786 381 0.882208 STANDARD +303 Q0 FT942-795 319 0.951376 STANDARD +303 Q0 FT942-11262 494 0.803779 STANDARD +303 Q0 FT943-3693 273 1.019071 STANDARD +303 Q0 FT943-5596 362 0.897657 STANDARD +303 Q0 FT943-5598 191 1.218840 STANDARD +303 Q0 FT943-7096 495 0.803135 STANDARD +303 Q0 FT943-10128 228 1.109917 STANDARD +303 Q0 FT943-11292 270 1.020416 STANDARD +303 Q0 FT943-11617 132 1.503932 STANDARD +303 Q0 FT943-13317 359 0.903902 STANDARD +303 Q0 FT943-14510 412 0.859534 STANDARD +303 Q0 FT943-15250 467 0.822134 STANDARD +303 Q0 FT944-128 41 2.760373 STANDARD +303 Q0 FT944-9936 192 1.217489 STANDARD +303 Q0 FBIS3-12092 491 0.805178 STANDARD +303 Q0 FBIS3-16375 263 1.028159 STANDARD +303 Q0 FBIS3-17074 426 0.850084 STANDARD +303 Q0 FBIS3-21007 120 1.634702 STANDARD +303 Q0 FBIS3-21021 393 0.872502 STANDARD +303 Q0 FBIS3-21022 261 1.032606 STANDARD +303 Q0 FBIS3-21026 83 2.066348 STANDARD +303 Q0 FBIS3-21231 265 1.027706 STANDARD +303 Q0 FBIS3-21237 258 1.042819 STANDARD +303 Q0 FBIS3-21239 329 0.935195 STANDARD +303 Q0 FBIS3-21240 445 0.836374 STANDARD +303 Q0 FBIS3-23507 479 0.812733 STANDARD +303 Q0 FBIS3-23517 425 0.850167 STANDARD +303 Q0 FBIS3-23681 295 0.979245 STANDARD +303 Q0 FBIS3-23682 281 1.006104 STANDARD +303 Q0 FBIS3-23693 394 0.872454 STANDARD +303 Q0 FBIS3-23696 288 0.994081 STANDARD +303 Q0 FBIS3-24664 344 0.919164 STANDARD +303 Q0 FBIS3-27876 335 0.927403 STANDARD +303 Q0 FBIS3-28254 167 1.334322 STANDARD +303 Q0 FBIS3-28255 481 0.812242 STANDARD +303 Q0 FBIS3-28256 286 0.996640 STANDARD +303 Q0 FBIS3-29781 428 0.849460 STANDARD +303 Q0 FBIS3-35971 400 0.866728 STANDARD +303 Q0 FBIS3-37168 373 0.884747 STANDARD +303 Q0 FBIS3-37565 459 0.829207 STANDARD +303 Q0 FBIS3-40346 396 0.869943 STANDARD +303 Q0 FBIS3-40347 421 0.853303 STANDARD +303 Q0 FBIS3-40348 105 1.756069 STANDARD +303 Q0 FBIS3-40357 404 0.864512 STANDARD +303 Q0 FBIS3-40362 395 0.870134 STANDARD +303 Q0 FBIS3-40363 137 1.482253 STANDARD +303 Q0 FBIS3-40437 441 0.841213 STANDARD +303 Q0 FBIS3-40520 389 0.876870 STANDARD +303 Q0 FBIS3-40548 382 0.881911 STANDARD +303 Q0 FBIS3-40552 476 0.816448 STANDARD +303 Q0 FBIS3-40725 378 0.883787 STANDARD +303 Q0 FBIS3-42376 408 0.863299 STANDARD +303 Q0 FBIS3-42378 448 0.835487 STANDARD +303 Q0 FBIS3-42381 307 0.964910 STANDARD +303 Q0 FBIS3-42518 318 0.952477 STANDARD +303 Q0 FBIS3-42528 456 0.830930 STANDARD +303 Q0 FBIS3-42529 257 1.045844 STANDARD +303 Q0 FBIS3-42535 311 0.959772 STANDARD +303 Q0 FBIS3-42541 488 0.806472 STANDARD +303 Q0 FBIS3-42544 290 0.992540 STANDARD +303 Q0 FBIS3-42547 50 2.576956 STANDARD +303 Q0 FBIS3-43167 343 0.919164 STANDARD +303 Q0 FBIS3-43221 342 0.919164 STANDARD +303 Q0 FBIS3-56397 272 1.019849 STANDARD +303 Q0 FBIS3-56960 449 0.835406 STANDARD +303 Q0 FBIS3-59564 498 0.799670 STANDARD +303 Q0 FBIS3-59677 267 1.025614 STANDARD +303 Q0 FBIS3-59678 348 0.913268 STANDARD +303 Q0 FBIS3-59774 392 0.872707 STANDARD +303 Q0 FBIS3-61010 482 0.810219 STANDARD +303 Q0 FBIS3-61020 127 1.530715 STANDARD +303 Q0 FBIS4-10348 468 0.821973 STANDARD +303 Q0 FBIS4-14567 333 0.929448 STANDARD +303 Q0 FBIS4-15938 416 0.856637 STANDARD +303 Q0 FBIS4-20435 411 0.860908 STANDARD +303 Q0 FBIS4-20511 305 0.971954 STANDARD +303 Q0 FBIS4-20640 356 0.908120 STANDARD +303 Q0 FBIS4-20643 434 0.847374 STANDARD +303 Q0 FBIS4-20879 472 0.818083 STANDARD +303 Q0 FBIS4-20925 493 0.804356 STANDARD +303 Q0 FBIS4-22151 462 0.825941 STANDARD +303 Q0 FBIS4-25280 352 0.910840 STANDARD +303 Q0 FBIS4-28354 309 0.962246 STANDARD +303 Q0 FBIS4-28821 443 0.837634 STANDARD +303 Q0 FBIS4-39213 365 0.893520 STANDARD +303 Q0 FBIS4-39987 397 0.869555 STANDARD +303 Q0 FBIS4-44661 492 0.804955 STANDARD +303 Q0 FBIS4-44662 172 1.302490 STANDARD +303 Q0 FBIS4-44683 161 1.354621 STANDARD +303 Q0 FBIS4-44685 499 0.798856 STANDARD +303 Q0 FBIS4-44686 233 1.099131 STANDARD +303 Q0 FBIS4-44690 289 0.993590 STANDARD +303 Q0 FBIS4-44691 135 1.490418 STANDARD +303 Q0 FBIS4-44692 436 0.846315 STANDARD +303 Q0 FBIS4-44695 157 1.387615 STANDARD +303 Q0 FBIS4-44743 124 1.573444 STANDARD +303 Q0 FBIS4-44766 417 0.856330 STANDARD +303 Q0 FBIS4-44785 424 0.851521 STANDARD +303 Q0 FBIS4-44842 370 0.886676 STANDARD +303 Q0 FBIS4-44844 490 0.805419 STANDARD +303 Q0 FBIS4-44847 486 0.807282 STANDARD +303 Q0 FBIS4-44849 316 0.955266 STANDARD +303 Q0 FBIS4-44870 460 0.827983 STANDARD +303 Q0 FBIS4-44899 405 0.864093 STANDARD +303 Q0 FBIS4-44900 334 0.927412 STANDARD +303 Q0 FBIS4-44902 384 0.879183 STANDARD +303 Q0 FBIS4-44904 291 0.991827 STANDARD +303 Q0 FBIS4-45141 366 0.892967 STANDARD +303 Q0 FBIS4-45931 471 0.819311 STANDARD +303 Q0 FBIS4-46650 47 2.593745 STANDARD +303 Q0 FBIS4-46660 196 1.209308 STANDARD +303 Q0 FBIS4-47297 243 1.079439 STANDARD +303 Q0 FBIS4-47302 178 1.277199 STANDARD +303 Q0 FBIS4-47303 293 0.981469 STANDARD +303 Q0 FBIS4-47471 364 0.894743 STANDARD +303 Q0 FBIS4-47495 143 1.466960 STANDARD +303 Q0 FBIS4-57001 150 1.406192 STANDARD +303 Q0 FBIS4-60914 383 0.880024 STANDARD +303 Q0 FBIS4-61411 461 0.826282 STANDARD +303 Q0 FBIS4-61865 144 1.455367 STANDARD +303 Q0 FBIS4-66418 371 0.885960 STANDARD +303 Q0 FBIS4-67593 249 1.067724 STANDARD +303 Q0 FBIS4-68312 440 0.841756 STANDARD +303 Q0 FBIS4-68315 310 0.960070 STANDARD +303 Q0 FBIS4-68327 402 0.865425 STANDARD +303 Q0 FBIS4-68332 115 1.672246 STANDARD +303 Q0 FBIS4-68333 282 1.003842 STANDARD +303 Q0 FBIS4-68334 170 1.313852 STANDARD +303 Q0 FBIS4-68335 444 0.837523 STANDARD +303 Q0 FBIS4-68336 475 0.817006 STANDARD +303 Q0 LA010190-0026 340 0.921552 STANDARD +303 Q0 LA010390-0085 447 0.835616 STANDARD +303 Q0 LA010589-0116 271 1.020361 STANDARD +303 Q0 LA010689-0016 52 2.567286 STANDARD +303 Q0 LA010789-0063 224 1.128020 STANDARD +303 Q0 LA010790-0055 372 0.884945 STANDARD +303 Q0 LA010889-0081 199 1.208196 STANDARD +303 Q0 LA011190-0213 452 0.834704 STANDARD +303 Q0 LA011290-0076 241 1.083621 STANDARD +303 Q0 LA011390-0147 252 1.064966 STANDARD +303 Q0 LA011589-0045 432 0.847999 STANDARD +303 Q0 LA011590-0090 303 0.973160 STANDARD +303 Q0 LA011590-0098 125 1.572921 STANDARD +303 Q0 LA011789-0014 324 0.939375 STANDARD +303 Q0 LA011990-0173 45 2.637096 STANDARD +303 Q0 LA012090-0104 437 0.844951 STANDARD +303 Q0 LA012090-0105 24 3.282409 STANDARD +303 Q0 LA012390-0149 401 0.865694 STANDARD +303 Q0 LA012790-0042 121 1.621187 STANDARD +303 Q0 LA020490-0068 328 0.936452 STANDARD +303 Q0 LA020589-0049 450 0.834867 STANDARD +303 Q0 LA020989-0012 91 2.015973 STANDARD +303 Q0 LA021290-0037 245 1.071663 STANDARD +303 Q0 LA021489-0150 276 1.014675 STANDARD +303 Q0 LA021589-0091 204 1.180009 STANDARD +303 Q0 LA021890-0051 163 1.352926 STANDARD +303 Q0 LA021890-0137 156 1.388925 STANDARD +303 Q0 LA021989-0228 212 1.157667 STANDARD +303 Q0 LA021990-0048 500 0.798554 STANDARD +303 Q0 LA022090-0138 403 0.864525 STANDARD +303 Q0 LA022190-0155 166 1.343758 STANDARD +303 Q0 LA022590-0196 108 1.733329 STANDARD +303 Q0 LA022590-0228 332 0.931967 STANDARD +303 Q0 LA022690-0085 138 1.481584 STANDARD +303 Q0 LA030190-0234 315 0.955284 STANDARD +303 Q0 LA030289-0123 277 1.011833 STANDARD +303 Q0 LA030390-0088 246 1.071472 STANDARD +303 Q0 LA030590-0077 128 1.525714 STANDARD +303 Q0 LA030990-0068 134 1.492200 STANDARD +303 Q0 LA031190-0221 301 0.975492 STANDARD +303 Q0 LA031389-0107 136 1.483910 STANDARD +303 Q0 LA031389-0108 187 1.244685 STANDARD +303 Q0 LA031489-0123 221 1.132690 STANDARD +303 Q0 LA031490-0065 80 2.096088 STANDARD +303 Q0 LA031589-0047 141 1.468560 STANDARD +303 Q0 LA031589-0130 207 1.172037 STANDARD +303 Q0 LA031689-0202 247 1.070381 STANDARD +303 Q0 LA031689-0206 478 0.812974 STANDARD +303 Q0 LA031989-0181 78 2.103880 STANDARD +303 Q0 LA032089-0046 195 1.210247 STANDARD +303 Q0 LA032090-0099 240 1.088725 STANDARD +303 Q0 LA032389-0114 217 1.137841 STANDARD +303 Q0 LA032589-0046 380 0.882239 STANDARD +303 Q0 LA032689-0183 487 0.807178 STANDARD +303 Q0 LA032689-0185 480 0.812534 STANDARD +303 Q0 LA032690-0041 154 1.395741 STANDARD +303 Q0 LA032790-0023 49 2.578967 STANDARD +303 Q0 LA032989-0069 322 0.941888 STANDARD +303 Q0 LA032990-0152 225 1.126805 STANDARD +303 Q0 LA033089-0158 346 0.915103 STANDARD +303 Q0 LA033090-0081 458 0.829381 STANDARD +303 Q0 LA033090-0082 1 4.383259 STANDARD +303 Q0 LA040190-0178 2 4.308769 STANDARD +303 Q0 LA040289-0050 260 1.036770 STANDARD +303 Q0 LA040289-0086 369 0.887265 STANDARD +303 Q0 LA040389-0006 220 1.136034 STANDARD +303 Q0 LA040590-0220 23 3.302485 STANDARD +303 Q0 LA040690-0125 213 1.152391 STANDARD +303 Q0 LA041090-0148 4 4.019861 STANDARD +303 Q0 LA041190-0003 12 3.566245 STANDARD +303 Q0 LA041389-0044 244 1.077480 STANDARD +303 Q0 LA041489-0078 131 1.506170 STANDARD +303 Q0 LA041490-0064 3 4.223751 STANDARD +303 Q0 LA041590-0161 14 3.543502 STANDARD +303 Q0 LA041690-0035 5 4.002885 STANDARD +303 Q0 LA041989-0077 266 1.027433 STANDARD +303 Q0 LA041990-0151 6 3.971673 STANDARD +303 Q0 LA042089-0083 222 1.128454 STANDARD +303 Q0 LA042189-0143 209 1.163658 STANDARD +303 Q0 LA042290-0096 106 1.751232 STANDARD +303 Q0 LA042290-0160 11 3.576364 STANDARD +303 Q0 LA042390-0041 17 3.394742 STANDARD +303 Q0 LA042390-0060 54 2.486147 STANDARD +303 Q0 LA042590-0135 13 3.554321 STANDARD +303 Q0 LA042590-0152 16 3.407229 STANDARD +303 Q0 LA042689-0150 453 0.833951 STANDARD +303 Q0 LA042690-0141 51 2.575557 STANDARD +303 Q0 LA042790-0070 27 3.210285 STANDARD +303 Q0 LA042990-0148 180 1.274051 STANDARD +303 Q0 LA043090-0018 101 1.816509 STANDARD +303 Q0 LA050189-0100 279 1.010790 STANDARD +303 Q0 LA050190-0067 406 0.863869 STANDARD +303 Q0 LA050390-0109 28 3.196531 STANDARD +303 Q0 LA050489-0059 152 1.398568 STANDARD +303 Q0 LA050589-0090 81 2.076884 STANDARD +303 Q0 LA050589-0092 76 2.121700 STANDARD +303 Q0 LA050889-0007 375 0.884368 STANDARD +303 Q0 LA050889-0068 84 2.055155 STANDARD +303 Q0 LA050989-0079 464 0.824698 STANDARD +303 Q0 LA051090-0047 358 0.905078 STANDARD +303 Q0 LA051090-0069 118 1.645496 STANDARD +303 Q0 LA051090-0070 185 1.253866 STANDARD +303 Q0 LA051189-0051 259 1.040189 STANDARD +303 Q0 LA051290-0077 82 2.073849 STANDARD +303 Q0 LA051290-0078 418 0.855213 STANDARD +303 Q0 LA051290-0079 107 1.745076 STANDARD +303 Q0 LA051389-0037 20 3.340322 STANDARD +303 Q0 LA051390-0162 285 0.996853 STANDARD +303 Q0 LA051390-0223 239 1.091408 STANDARD +303 Q0 LA051490-0110 46 2.620947 STANDARD +303 Q0 LA051590-0074 38 2.818323 STANDARD +303 Q0 LA051789-0059 431 0.848130 STANDARD +303 Q0 LA051790-0233 483 0.808421 STANDARD +303 Q0 LA051989-0018 376 0.884100 STANDARD +303 Q0 LA052089-0089 174 1.297517 STANDARD +303 Q0 LA052390-0127 113 1.687265 STANDARD +303 Q0 LA052490-0116 184 1.254057 STANDARD +303 Q0 LA052890-0021 34 2.908027 STANDARD +303 Q0 LA053090-0037 48 2.592446 STANDARD +303 Q0 LA053090-0104 77 2.113950 STANDARD +303 Q0 LA053190-0194 302 0.974893 STANDARD +303 Q0 LA060190-0058 162 1.354581 STANDARD +303 Q0 LA060290-0131 66 2.323707 STANDARD +303 Q0 LA060890-0124 56 2.416187 STANDARD +303 Q0 LA060990-0066 232 1.100880 STANDARD +303 Q0 LA061290-0118 237 1.092820 STANDARD +303 Q0 LA061390-0151 354 0.909441 STANDARD +303 Q0 LA061490-0047 287 0.994384 STANDARD +303 Q0 LA061490-0072 179 1.276189 STANDARD +303 Q0 LA061589-0050 79 2.099894 STANDARD +303 Q0 LA061789-0038 360 0.903826 STANDARD +303 Q0 LA061889-0152 211 1.158306 STANDARD +303 Q0 LA061890-0041 264 1.027958 STANDARD +303 Q0 LA062589-0006 317 0.952941 STANDARD +303 Q0 LA062789-0090 469 0.821054 STANDARD +303 Q0 LA062990-0180 10 3.676033 STANDARD +303 Q0 LA063089-0071 455 0.831085 STANDARD +303 Q0 LA063090-0004 18 3.392742 STANDARD +303 Q0 LA063090-0125 320 0.946371 STANDARD +303 Q0 LA070290-0043 377 0.883838 STANDARD +303 Q0 LA070290-0143 442 0.840617 STANDARD +303 Q0 LA070390-0084 33 2.978592 STANDARD +303 Q0 LA070390-0144 189 1.232276 STANDARD +303 Q0 LA070489-0089 236 1.093077 STANDARD +303 Q0 LA070489-0096 234 1.094684 STANDARD +303 Q0 LA070490-0001 496 0.802644 STANDARD +303 Q0 LA070590-0031 22 3.323111 STANDARD +303 Q0 LA070590-0033 26 3.210850 STANDARD +303 Q0 LA070590-0036 36 2.823154 STANDARD +303 Q0 LA070790-0083 32 3.051316 STANDARD +303 Q0 LA070890-0154 29 3.180156 STANDARD +303 Q0 LA070989-0062 193 1.215988 STANDARD +303 Q0 LA070990-0052 30 3.170595 STANDARD +303 Q0 LA071090-0047 9 3.697369 STANDARD +303 Q0 LA071090-0133 374 0.884460 STANDARD +303 Q0 LA071390-0122 104 1.764411 STANDARD +303 Q0 LA071490-0091 15 3.428521 STANDARD +303 Q0 LA071689-0028 357 0.905432 STANDARD +303 Q0 LA071689-0109 181 1.267227 STANDARD +303 Q0 LA071689-0207 284 0.997202 STANDARD +303 Q0 LA071689-0208 427 0.849730 STANDARD +303 Q0 LA071690-0048 64 2.332770 STANDARD +303 Q0 LA071690-0055 379 0.883020 STANDARD +303 Q0 LA071789-0042 355 0.908368 STANDARD +303 Q0 LA071790-0185 215 1.142988 STANDARD +303 Q0 LA071990-0250 153 1.398257 STANDARD +303 Q0 LA072089-0206 367 0.889410 STANDARD +303 Q0 LA072189-0094 251 1.065624 STANDARD +303 Q0 LA072189-0108 353 0.910219 STANDARD +303 Q0 LA072190-0065 62 2.356524 STANDARD +303 Q0 LA072390-0058 231 1.102253 STANDARD +303 Q0 LA072590-0005 73 2.131135 STANDARD +303 Q0 LA072590-0006 25 3.223907 STANDARD +303 Q0 LA072590-0145 123 1.579352 STANDARD +303 Q0 LA072690-0124 109 1.724178 STANDARD +303 Q0 LA072690-0133 31 3.121630 STANDARD +303 Q0 LA072690-0134 321 0.943507 STANDARD +303 Q0 LA072890-0078 74 2.123428 STANDARD +303 Q0 LA073089-0149 238 1.092813 STANDARD +303 Q0 LA073190-0021 269 1.022460 STANDARD +303 Q0 LA080389-0056 363 0.895350 STANDARD +303 Q0 LA080489-0048 323 0.941130 STANDARD +303 Q0 LA080790-0036 294 0.979478 STANDARD +303 Q0 LA080889-0066 283 0.998720 STANDARD +303 Q0 LA080989-0058 169 1.317929 STANDARD +303 Q0 LA080990-0222 59 2.384702 STANDARD +303 Q0 LA080990-0232 230 1.103676 STANDARD +303 Q0 LA080990-0242 40 2.813104 STANDARD +303 Q0 LA081090-0078 21 3.326471 STANDARD +303 Q0 LA081090-0079 35 2.901951 STANDARD +303 Q0 LA081189-0064 197 1.208926 STANDARD +303 Q0 LA081189-0145 350 0.911953 STANDARD +303 Q0 LA081190-0080 325 0.939267 STANDARD +303 Q0 LA081290-0215 110 1.716997 STANDARD +303 Q0 LA081489-0004 368 0.888443 STANDARD +303 Q0 LA081689-0115 229 1.108148 STANDARD +303 Q0 LA081790-0164 140 1.477672 STANDARD +303 Q0 LA081989-0061 465 0.824164 STANDARD +303 Q0 LA081990-0061 339 0.922755 STANDARD +303 Q0 LA082390-0229 262 1.031539 STANDARD +303 Q0 LA082489-0105 349 0.912802 STANDARD +303 Q0 LA082489-0132 331 0.933777 STANDARD +303 Q0 LA082490-0075 200 1.200326 STANDARD +303 Q0 LA082790-0029 327 0.937090 STANDARD +303 Q0 LA082890-0147 90 2.021389 STANDARD +303 Q0 LA082990-0078 155 1.393119 STANDARD +303 Q0 LA083089-0081 216 1.142456 STANDARD +303 Q0 LA083089-0098 330 0.934002 STANDARD +303 Q0 LA083090-0083 218 1.137461 STANDARD +303 Q0 LA090390-0035 71 2.202802 STANDARD +303 Q0 LA090489-0037 98 1.862748 STANDARD +303 Q0 LA090490-0012 133 1.503655 STANDARD +303 Q0 LA090690-0100 63 2.339889 STANDARD +303 Q0 LA090790-0049 57 2.410876 STANDARD +303 Q0 LA090889-0077 306 0.970433 STANDARD +303 Q0 LA090890-0038 419 0.854084 STANDARD +303 Q0 LA090890-0054 126 1.558911 STANDARD +303 Q0 LA091589-0085 347 0.913659 STANDARD +303 Q0 LA091690-0166 87 2.046513 STANDARD +303 Q0 LA091789-0096 430 0.848134 STANDARD +303 Q0 LA091890-0053 72 2.148034 STANDARD +303 Q0 LA091890-0054 145 1.452139 STANDARD +303 Q0 LA092190-0028 253 1.063192 STANDARD +303 Q0 LA092190-0058 130 1.507107 STANDARD +303 Q0 LA092489-0134 351 0.911797 STANDARD +303 Q0 LA092589-0110 168 1.323722 STANDARD +303 Q0 LA092690-0092 39 2.814636 STANDARD +303 Q0 LA092889-0155 182 1.257574 STANDARD +303 Q0 LA092990-0085 361 0.900724 STANDARD +303 Q0 LA100189-0181 299 0.976033 STANDARD +303 Q0 LA100490-0218 242 1.082914 STANDARD +303 Q0 LA100689-0063 190 1.228103 STANDARD +303 Q0 LA100690-0129 114 1.673131 STANDARD +303 Q0 LA100889-0102 413 0.859272 STANDARD +303 Q0 LA100890-0124 312 0.958702 STANDARD +303 Q0 LA100989-0005 435 0.847176 STANDARD +303 Q0 LA100990-0068 149 1.408798 STANDARD +303 Q0 LA101290-0120 457 0.830000 STANDARD +303 Q0 LA101290-0125 122 1.586766 STANDARD +303 Q0 LA101490-0145 188 1.233813 STANDARD +303 Q0 LA101589-0179 194 1.210621 STANDARD +303 Q0 LA101690-0023 297 0.978709 STANDARD +303 Q0 LA101789-0047 147 1.422090 STANDARD +303 Q0 LA101790-0151 116 1.667220 STANDARD +303 Q0 LA101989-0137 159 1.364142 STANDARD +303 Q0 LA102089-0056 250 1.066242 STANDARD +303 Q0 LA102089-0058 219 1.136706 STANDARD +303 Q0 LA102090-0044 473 0.817442 STANDARD +303 Q0 LA102189-0071 176 1.284015 STANDARD +303 Q0 LA102289-0040 414 0.858711 STANDARD +303 Q0 LA102289-0098 497 0.799955 STANDARD +303 Q0 LA102290-0066 42 2.714570 STANDARD +303 Q0 LA102290-0106 248 1.070195 STANDARD +303 Q0 LA102590-0235 300 0.975703 STANDARD +303 Q0 LA102889-0108 308 0.963724 STANDARD +303 Q0 LA103189-0128 415 0.856638 STANDARD +303 Q0 LA103190-0042 142 1.467077 STANDARD +303 Q0 LA110589-0056 205 1.176302 STANDARD +303 Q0 LA110590-0076 37 2.821767 STANDARD +303 Q0 LA110590-0077 175 1.291110 STANDARD +303 Q0 LA110889-0060 111 1.707234 STANDARD +303 Q0 LA110990-0162 385 0.879010 STANDARD +303 Q0 LA111190-0024 223 1.128407 STANDARD +303 Q0 LA111789-0042 93 1.930402 STANDARD +303 Q0 LA111789-0151 255 1.056697 STANDARD +303 Q0 LA111790-0148 399 0.867280 STANDARD +303 Q0 LA111989-0118 214 1.147969 STANDARD +303 Q0 LA111990-0004 337 0.923888 STANDARD +303 Q0 LA112089-0113 151 1.401496 STANDARD +303 Q0 LA112090-0120 386 0.877680 STANDARD +303 Q0 LA112090-0134 463 0.824822 STANDARD +303 Q0 LA112190-0043 44 2.655533 STANDARD +303 Q0 LA112690-0067 146 1.437046 STANDARD +303 Q0 LA112889-0001 235 1.094134 STANDARD +303 Q0 LA112990-0083 326 0.937102 STANDARD +303 Q0 LA120189-0127 171 1.306266 STANDARD +303 Q0 LA120190-0125 292 0.990610 STANDARD +303 Q0 LA120289-0113 338 0.923633 STANDARD +303 Q0 LA120289-0130 173 1.301397 STANDARD +303 Q0 LA120390-0065 58 2.396287 STANDARD +303 Q0 LA120390-0126 61 2.366821 STANDARD +303 Q0 LA120590-0110 85 2.052094 STANDARD +303 Q0 LA120689-0038 129 1.521407 STANDARD +303 Q0 LA120690-0171 296 0.979230 STANDARD +303 Q0 LA120890-0048 92 1.938928 STANDARD +303 Q0 LA120990-0163 103 1.775942 STANDARD +303 Q0 LA120990-0165 280 1.009902 STANDARD +303 Q0 LA121090-0120 202 1.184789 STANDARD +303 Q0 LA121190-0079 55 2.437585 STANDARD +303 Q0 LA121190-0089 86 2.051522 STANDARD +303 Q0 LA121190-0160 53 2.512700 STANDARD +303 Q0 LA121389-0022 158 1.366975 STANDARD +303 Q0 LA121690-0113 477 0.814645 STANDARD +303 Q0 LA121790-0086 398 0.868478 STANDARD +303 Q0 LA122589-0068 198 1.208502 STANDARD +303 Q0 LA122689-0047 304 0.972889 STANDARD +303 Q0 LA122889-0168 470 0.820495 STANDARD +303 Q0 LA122989-0010 410 0.861724 STANDARD +303 Q0 LA122990-0029 65 2.324184 STANDARD +303 Q0 LA123089-0107 423 0.852090 STANDARD diff --git a/tools/eval/trec_eval.9.0.4/test/results.trunc b/tools/eval/trec_eval.9.0.4/test/results.trunc new file mode 100644 index 0000000000000000000000000000000000000000..be856d4e592040f9ff2eea9eb3fa95e7748c5cfa --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/results.trunc @@ -0,0 +1,584 @@ +301 Q0 FBIS3-27619 99 2.138276 STANDARD more junk at +303 Q0 FT941-17652 99 1.857372 STANDARD end of lines. +301 Q0 FBIS3-2934 98 2.139655 STANDARD reserved for +301 Q0 FBIS3-25796 97 2.143418 STANDARD future +303 Q0 FT934-4015 97 1.875063 STANDARD expansion +301 Q0 FBIS4-46846 96 2.144021 STANDARD +303 Q0 FT941-793 96 1.901362 STANDARD +301 Q0 FT943-2588 95 2.150375 STANDARD +303 Q0 FT933-3699 95 1.910402 STANDARD +301 Q0 LA042189-0086 94 2.150424 STANDARD +303 Q0 FT933-6323 94 1.919063 STANDARD +301 Q0 FBIS4-40452 93 2.153299 STANDARD +301 Q0 FBIS4-67072 92 2.157889 STANDARD +301 Q0 FBIS3-45072 91 2.160266 STANDARD +301 Q0 FBIS4-45296 90 2.160571 STANDARD +301 Q0 FR940620-1-00007 9 2.971818 STANDARD +301 Q0 FBIS4-55845 89 2.162241 STANDARD +303 Q0 FT924-286 89 2.025797 STANDARD +301 Q0 FBIS4-44401 88 2.162794 STANDARD +303 Q0 FT934-4583 88 2.035755 STANDARD +301 Q0 FBIS3-25940 87 2.164362 STANDARD +301 Q0 FBIS4-41839 86 2.170714 STANDARD +301 Q0 FBIS3-3729 85 2.172867 STANDARD +301 Q0 LA062189-0010 84 2.173631 STANDARD +301 Q0 FBIS3-41348 83 2.175046 STANDARD +301 Q0 FBIS4-4063 82 2.176446 STANDARD +301 Q0 FBIS4-26072 81 2.183235 STANDARD +301 Q0 FR940620-1-00008 80 2.183501 STANDARD +303 Q0 FT934-5418 8 3.747635 STANDARD +301 Q0 FR940620-1-00009 8 3.023369 STANDARD +301 Q0 FBIS3-46420 79 2.188316 STANDARD +301 Q0 FBIS3-25902 78 2.191656 STANDARD +301 Q0 FBIS3-26112 77 2.202529 STANDARD +301 Q0 FBIS3-24190 76 2.211735 STANDARD +301 Q0 FBIS3-23432 75 2.227293 STANDARD +303 Q0 FT934-3191 75 2.122274 STANDARD +301 Q0 FT943-13315 74 2.232947 STANDARD +301 Q0 FBIS3-17394 73 2.233619 STANDARD +301 Q0 FBIS3-26720 72 2.236461 STANDARD +301 Q0 FBIS4-1796 71 2.236936 STANDARD +301 Q0 FBIS4-54904 70 2.237512 STANDARD +303 Q0 FT934-4132 70 2.207861 STANDARD +303 Q0 FT934-2516 7 3.768137 STANDARD +301 Q0 FBIS3-20552 7 3.133914 STANDARD +301 Q0 FBIS4-62079 69 2.239440 STANDARD +303 Q0 FT921-3432 69 2.237047 STANDARD +303 Q0 FT933-6946 68 2.295164 STANDARD +301 Q0 FBIS3-58025 68 2.243509 STANDARD +303 Q0 FT941-15661 67 2.307403 STANDARD +301 Q0 FBIS3-58055 67 2.243509 STANDARD +301 Q0 FBIS4-40930 66 2.243923 STANDARD +301 Q0 FBIS4-2725 65 2.245463 STANDARD +301 Q0 FBIS4-44512 64 2.251601 STANDARD +301 Q0 FBIS3-60984 63 2.254571 STANDARD +301 Q0 FBIS4-62372 62 2.262802 STANDARD +301 Q0 FBIS4-41215 61 2.266717 STANDARD +303 Q0 FT933-6678 60 2.373152 STANDARD +301 Q0 FBIS3-59285 60 2.277126 STANDARD +301 Q0 FBIS3-20551 6 3.137958 STANDARD +301 Q0 FBIS4-45333 59 2.277421 STANDARD +301 Q0 FBIS4-50083 58 2.284391 STANDARD +301 Q0 FBIS3-26914 57 2.314254 STANDARD +301 Q0 FBIS3-59284 56 2.317995 STANDARD +301 Q0 FBIS4-41840 55 2.335550 STANDARD +301 Q0 FBIS3-26415 54 2.336936 STANDARD +301 Q0 FBIS4-51202 53 2.339266 STANDARD +301 Q0 FBIS3-18129 52 2.342345 STANDARD +301 Q0 FBIS4-45453 51 2.346620 STANDARD +301 Q0 FBIS3-20713 500 1.655716 STANDARD +301 Q0 FBIS3-45676 50 2.349077 STANDARD +301 Q0 FBIS4-24388 5 3.176254 STANDARD +301 Q0 FBIS3-27288 499 1.655729 STANDARD +301 Q0 FBIS4-47008 498 1.655917 STANDARD +301 Q0 FR940303-1-00021 497 1.655963 STANDARD +301 Q0 FBIS3-58540 496 1.658499 STANDARD +301 Q0 FBIS3-12094 495 1.658651 STANDARD +303 Q0 FT943-7096 495 0.803135 STANDARD +301 Q0 FBIS3-60007 494 1.659024 STANDARD +303 Q0 FT942-11262 494 0.803779 STANDARD +301 Q0 FR941006-0-00045 493 1.659331 STANDARD +301 Q0 FBIS4-57133 492 1.659471 STANDARD +301 Q0 FT942-17001 491 1.660437 STANDARD +301 Q0 FBIS4-22346 490 1.660598 STANDARD +301 Q0 FBIS3-41247 49 2.350864 STANDARD +301 Q0 FR941230-2-00138 489 1.662662 STANDARD +303 Q0 FR940602-2-00109 489 0.806242 STANDARD +301 Q0 FBIS4-20961 488 1.663079 STANDARD +301 Q0 FBIS3-10979 487 1.663086 STANDARD +301 Q0 LA101990-0076 486 1.665950 STANDARD +301 Q0 FBIS4-49380 485 1.666289 STANDARD +303 Q0 FR941205-2-00054 485 0.807621 STANDARD +301 Q0 FBIS3-3728 484 1.667296 STANDARD +303 Q0 FT931-15900 484 0.808374 STANDARD +301 Q0 FBIS3-37418 483 1.668495 STANDARD +301 Q0 FR940721-2-00054 482 1.668723 STANDARD +301 Q0 FBIS4-67231 481 1.669646 STANDARD +301 Q0 FBIS4-47254 480 1.672893 STANDARD +301 Q0 FBIS4-49754 48 2.351483 STANDARD +301 Q0 LA041689-0147 479 1.673101 STANDARD +301 Q0 FT943-12601 478 1.673670 STANDARD +301 Q0 FBIS4-53139 477 1.674022 STANDARD +301 Q0 FBIS3-59322 476 1.674562 STANDARD +301 Q0 FR940404-0-00087 475 1.674784 STANDARD +301 Q0 LA120389-0125 474 1.674817 STANDARD +303 Q0 FT931-10187 474 0.817357 STANDARD +301 Q0 FR940804-0-00125 473 1.674901 STANDARD +301 Q0 FBIS4-31652 472 1.675422 STANDARD +301 Q0 FBIS4-30283 471 1.676491 STANDARD +301 Q0 FR940216-1-00014 470 1.677013 STANDARD +301 Q0 FBIS4-1553 47 2.362436 STANDARD +301 Q0 FT944-12673 469 1.677549 STANDARD +301 Q0 FBIS3-42341 468 1.677783 STANDARD +301 Q0 FBIS4-67160 467 1.678897 STANDARD +303 Q0 FT943-15250 467 0.822134 STANDARD +301 Q0 FBIS4-45235 466 1.679272 STANDARD +303 Q0 FT921-832 466 0.822476 STANDARD +301 Q0 FT923-13103 465 1.679853 STANDARD +301 Q0 LA011190-0084 464 1.680453 STANDARD +301 Q0 LA041789-0010 463 1.680776 STANDARD +301 Q0 FBIS4-50167 462 1.681279 STANDARD +301 Q0 FBIS4-66978 461 1.681566 STANDARD +301 Q0 FBIS4-4127 460 1.682513 STANDARD +301 Q0 FBIS4-1764 46 2.364943 STANDARD +301 Q0 FBIS3-21844 459 1.682594 STANDARD +301 Q0 FBIS4-47199 458 1.682735 STANDARD +301 Q0 FBIS4-40720 457 1.683077 STANDARD +301 Q0 FBIS4-45450 456 1.683376 STANDARD +301 Q0 FBIS4-34666 455 1.684233 STANDARD +301 Q0 FBIS4-44181 454 1.685975 STANDARD +303 Q0 FR940926-2-00073 454 0.832528 STANDARD +301 Q0 FBIS4-23427 453 1.686031 STANDARD +301 Q0 FBIS4-45346 452 1.687554 STANDARD +301 Q0 FBIS4-64345 451 1.687968 STANDARD +303 Q0 FR941221-0-00051 451 0.834705 STANDARD +301 Q0 FBIS3-10609 450 1.688209 STANDARD +301 Q0 FBIS4-2105 45 2.368016 STANDARD +301 Q0 FBIS4-21294 449 1.688366 STANDARD +301 Q0 FBIS4-40359 448 1.690737 STANDARD +301 Q0 FBIS3-31354 447 1.691054 STANDARD +301 Q0 FBIS3-51005 446 1.691843 STANDARD +303 Q0 FR941006-2-00076 446 0.836143 STANDARD +301 Q0 FBIS4-33615 445 1.693773 STANDARD +301 Q0 FBIS3-26651 444 1.693784 STANDARD +301 Q0 FBIS4-52929 443 1.696057 STANDARD +301 Q0 FBIS4-41803 442 1.696270 STANDARD +301 Q0 FBIS3-1108 441 1.699095 STANDARD +301 Q0 FBIS4-2039 440 1.701881 STANDARD +301 Q0 FR940620-1-00006 44 2.375205 STANDARD +301 Q0 FR940727-0-00060 439 1.702908 STANDARD +303 Q0 FT924-4358 439 0.843043 STANDARD +301 Q0 FT942-7830 438 1.703799 STANDARD +303 Q0 FR940622-2-00073 438 0.843079 STANDARD +301 Q0 FT942-2423 437 1.704746 STANDARD +301 Q0 FBIS4-41538 436 1.705109 STANDARD +301 Q0 FBIS3-21770 435 1.708522 STANDARD +301 Q0 FBIS4-26786 434 1.708904 STANDARD +301 Q0 FBIS3-60076 433 1.708965 STANDARD +303 Q0 FT923-9781 433 0.847790 STANDARD +301 Q0 FBIS4-2511 432 1.709049 STANDARD +301 Q0 FBIS3-24246 431 1.712145 STANDARD +301 Q0 FBIS4-62077 430 1.713174 STANDARD +303 Q0 FT931-6554 43 2.681227 STANDARD +301 Q0 FBIS4-43801 43 2.389463 STANDARD +301 Q0 FBIS3-50136 429 1.713585 STANDARD +303 Q0 FT934-4525 429 0.848461 STANDARD +301 Q0 FBIS3-27374 428 1.715253 STANDARD +301 Q0 FT931-1053 427 1.716405 STANDARD +301 Q0 FBIS4-67291 426 1.718286 STANDARD +301 Q0 FT944-18651 425 1.718812 STANDARD +301 Q0 FBIS3-5774 424 1.719125 STANDARD +301 Q0 FBIS4-54900 423 1.719201 STANDARD +301 Q0 FT911-2671 422 1.719461 STANDARD +303 Q0 FT932-4616 422 0.853034 STANDARD +301 Q0 FBIS4-65501 421 1.721008 STANDARD +301 Q0 FBIS3-39430 420 1.721082 STANDARD +303 Q0 FR941221-0-00048 420 0.853809 STANDARD +301 Q0 FBIS3-3190 42 2.392541 STANDARD +301 Q0 FBIS4-67336 419 1.721329 STANDARD +301 Q0 FBIS3-8781 418 1.722128 STANDARD +301 Q0 FBIS4-57722 417 1.722171 STANDARD +301 Q0 FBIS4-25262 416 1.722552 STANDARD +301 Q0 FBIS3-60022 415 1.724387 STANDARD +301 Q0 FR940202-2-00151 414 1.724760 STANDARD +301 Q0 FBIS3-24181 413 1.726911 STANDARD +301 Q0 LA061090-0040 412 1.729130 STANDARD +303 Q0 FT943-14510 412 0.859534 STANDARD +301 Q0 LA082690-0090 411 1.729742 STANDARD +301 Q0 FBIS4-22596 410 1.729780 STANDARD +303 Q0 FT944-128 41 2.760373 STANDARD +301 Q0 FBIS4-25028 41 2.394200 STANDARD +301 Q0 FBIS3-41143 409 1.729987 STANDARD +303 Q0 FT921-3809 409 0.862736 STANDARD +301 Q0 FR940830-2-00003 408 1.731386 STANDARD +301 Q0 FR940303-1-00014 407 1.732111 STANDARD +303 Q0 FR941130-2-00086 407 0.863714 STANDARD +301 Q0 FBIS3-54773 406 1.733266 STANDARD +301 Q0 FT934-6443 405 1.733755 STANDARD +301 Q0 FBIS3-52075 404 1.734758 STANDARD +301 Q0 FBIS3-59073 403 1.734932 STANDARD +301 Q0 FBIS4-49547 402 1.735723 STANDARD +301 Q0 FBIS4-3077 401 1.735977 STANDARD +301 Q0 LA082990-0130 400 1.737108 STANDARD +301 Q0 FBIS3-41105 40 2.399732 STANDARD +301 Q0 FBIS3-9399 4 3.215889 STANDARD +301 Q0 FBIS4-26038 399 1.737455 STANDARD +301 Q0 FBIS4-64135 398 1.738539 STANDARD +301 Q0 FBIS3-24145 397 1.738575 STANDARD +301 Q0 LA052089-0047 396 1.738631 STANDARD +301 Q0 FBIS4-25476 395 1.738840 STANDARD +301 Q0 FBIS3-38466 394 1.738962 STANDARD +301 Q0 FBIS3-61345 393 1.740630 STANDARD +301 Q0 FBIS4-66179 392 1.741075 STANDARD +301 Q0 LA062390-0102 391 1.742990 STANDARD +303 Q0 FT932-15782 391 0.874581 STANDARD +301 Q0 FBIS4-49928 390 1.743994 STANDARD +303 Q0 FR941221-0-00052 390 0.874838 STANDARD +301 Q0 FBIS4-45477 39 2.404399 STANDARD +301 Q0 FBIS4-50806 389 1.744591 STANDARD +301 Q0 FBIS4-41958 388 1.745697 STANDARD +303 Q0 FR940906-2-00139 388 0.876992 STANDARD +301 Q0 FBIS3-4313 387 1.746026 STANDARD +303 Q0 FR940513-2-00145 387 0.877140 STANDARD +301 Q0 FBIS4-24694 386 1.747539 STANDARD +301 Q0 FBIS3-60144 385 1.748958 STANDARD +301 Q0 FBIS3-19646 384 1.749999 STANDARD +301 Q0 LA010790-0228 383 1.750647 STANDARD +301 Q0 FBIS4-68720 382 1.750805 STANDARD +301 Q0 FBIS4-24788 381 1.751424 STANDARD +303 Q0 FT942-786 381 0.882208 STANDARD +301 Q0 LA021989-0204 380 1.752505 STANDARD +301 Q0 FBIS4-50898 38 2.419756 STANDARD +301 Q0 FBIS4-49483 379 1.754356 STANDARD +301 Q0 FR940804-0-00119 378 1.755399 STANDARD +301 Q0 FBIS4-46851 377 1.755611 STANDARD +301 Q0 FBIS3-14961 376 1.756365 STANDARD +301 Q0 FBIS4-39570 375 1.757526 STANDARD +301 Q0 FBIS4-20988 374 1.757675 STANDARD +301 Q0 FR940727-0-00079 373 1.759109 STANDARD +301 Q0 LA041789-0055 372 1.760346 STANDARD +301 Q0 FBIS4-26727 371 1.760759 STANDARD +301 Q0 FBIS4-45189 370 1.761385 STANDARD +301 Q0 FBIS4-31645 37 2.425397 STANDARD +301 Q0 FBIS4-16950 369 1.761678 STANDARD +301 Q0 FBIS4-68847 368 1.762087 STANDARD +301 Q0 FR940804-0-00103 367 1.762352 STANDARD +301 Q0 FBIS4-65896 366 1.762550 STANDARD +301 Q0 FBIS4-7717 365 1.763895 STANDARD +301 Q0 FR940804-0-00112 364 1.764905 STANDARD +301 Q0 LA060189-0150 363 1.766305 STANDARD +301 Q0 FBIS4-62049 362 1.767618 STANDARD +303 Q0 FT943-5596 362 0.897657 STANDARD +301 Q0 FR940727-0-00077 361 1.768786 STANDARD +301 Q0 FBIS4-57959 360 1.770075 STANDARD +301 Q0 FBIS3-25359 36 2.432513 STANDARD +301 Q0 FBIS3-46076 359 1.770914 STANDARD +303 Q0 FT943-13317 359 0.903902 STANDARD +301 Q0 FBIS3-2549 358 1.773210 STANDARD +301 Q0 FBIS4-46757 357 1.773279 STANDARD +301 Q0 FBIS4-40181 356 1.775154 STANDARD +301 Q0 FBIS4-24419 355 1.777109 STANDARD +301 Q0 FBIS3-57406 354 1.777276 STANDARD +301 Q0 FBIS3-45602 353 1.777504 STANDARD +301 Q0 FBIS3-51349 352 1.777761 STANDARD +301 Q0 FBIS4-43791 351 1.777947 STANDARD +301 Q0 FBIS4-68498 350 1.779944 STANDARD +301 Q0 FBIS3-3020 35 2.436040 STANDARD +301 Q0 FBIS4-2546 349 1.781359 STANDARD +301 Q0 FBIS4-56992 348 1.782381 STANDARD +301 Q0 FBIS4-25332 347 1.783756 STANDARD +301 Q0 FBIS4-68426 346 1.785070 STANDARD +301 Q0 FBIS4-40360 345 1.785083 STANDARD +303 Q0 FT932-4803 345 0.915780 STANDARD +301 Q0 LA042990-0044 344 1.785390 STANDARD +301 Q0 LA080790-0035 343 1.787194 STANDARD +301 Q0 FBIS4-8957 342 1.788093 STANDARD +301 Q0 FBIS4-38410 341 1.790607 STANDARD +303 Q0 FT931-2231 341 0.921274 STANDARD +301 Q0 FT942-8808 340 1.791096 STANDARD +301 Q0 FBIS4-26351 34 2.436919 STANDARD +301 Q0 FR940721-2-00075 339 1.791411 STANDARD +301 Q0 FBIS3-36565 338 1.792058 STANDARD +301 Q0 FBIS3-61238 337 1.792962 STANDARD +301 Q0 FT923-2348 336 1.794087 STANDARD +303 Q0 FT942-5468 336 0.924340 STANDARD +301 Q0 FBIS3-26742 335 1.795461 STANDARD +301 Q0 FT942-852 334 1.796588 STANDARD +301 Q0 LA100590-0029 333 1.797265 STANDARD +301 Q0 FR940503-2-00146 332 1.799753 STANDARD +301 Q0 FBIS3-3019 331 1.799830 STANDARD +301 Q0 FBIS4-41394 330 1.800183 STANDARD +301 Q0 FBIS4-1967 33 2.446289 STANDARD +301 Q0 FBIS4-26643 329 1.800264 STANDARD +301 Q0 FBIS3-55966 328 1.800644 STANDARD +301 Q0 FBIS3-21961 327 1.800842 STANDARD +301 Q0 FR940203-1-00038 326 1.800881 STANDARD +301 Q0 FBIS4-65446 325 1.801062 STANDARD +301 Q0 FBIS4-16502 324 1.802201 STANDARD +301 Q0 FBIS4-2318 323 1.802893 STANDARD +301 Q0 FBIS4-41395 322 1.803218 STANDARD +301 Q0 FR940727-0-00078 321 1.806117 STANDARD +301 Q0 FBIS4-68801 320 1.808038 STANDARD +301 Q0 FBIS3-19420 32 2.448735 STANDARD +301 Q0 FBIS4-2498 319 1.809141 STANDARD +303 Q0 FT942-795 319 0.951376 STANDARD +301 Q0 FBIS3-15586 318 1.809177 STANDARD +301 Q0 FBIS3-41090 317 1.809227 STANDARD +301 Q0 FBIS4-20367 316 1.810602 STANDARD +301 Q0 FBIS4-67183 315 1.811862 STANDARD +301 Q0 FT944-14183 314 1.812210 STANDARD +303 Q0 FT924-12943 314 0.956181 STANDARD +301 Q0 FBIS4-51255 313 1.812859 STANDARD +303 Q0 FR941221-0-00049 313 0.956703 STANDARD +301 Q0 FBIS3-32620 312 1.814571 STANDARD +301 Q0 FBIS4-2049 311 1.815679 STANDARD +301 Q0 FBIS4-45157 310 1.817723 STANDARD +301 Q0 FBIS4-1667 31 2.452689 STANDARD +301 Q0 FBIS4-21321 309 1.817834 STANDARD +301 Q0 FR940303-1-00019 308 1.820319 STANDARD +301 Q0 FT943-16238 307 1.821578 STANDARD +301 Q0 FBIS3-26006 306 1.822304 STANDARD +301 Q0 FR940804-0-00116 305 1.822332 STANDARD +301 Q0 FBIS4-21249 304 1.822357 STANDARD +301 Q0 FBIS3-27051 303 1.826845 STANDARD +301 Q0 FR940622-2-00053 302 1.830749 STANDARD +301 Q0 FBIS4-41399 301 1.831922 STANDARD +301 Q0 LA032490-0049 300 1.835254 STANDARD +301 Q0 FBIS4-45469 30 2.470949 STANDARD +301 Q0 FBIS3-22085 3 3.228945 STANDARD +301 Q0 FBIS4-4077 299 1.836900 STANDARD +301 Q0 LA100390-0069 298 1.838421 STANDARD +303 Q0 FT922-11472 298 0.978346 STANDARD +301 Q0 FR940429-0-00132 297 1.839996 STANDARD +301 Q0 LA071389-0002 296 1.840566 STANDARD +301 Q0 FR940303-1-00012 295 1.841413 STANDARD +301 Q0 FBIS3-1975 294 1.844307 STANDARD +301 Q0 FBIS4-10739 293 1.845839 STANDARD +301 Q0 FBIS4-21188 292 1.847648 STANDARD +301 Q0 FBIS3-41288 291 1.847715 STANDARD +301 Q0 FBIS3-22049 290 1.849501 STANDARD +301 Q0 FBIS4-1865 29 2.473547 STANDARD +301 Q0 FBIS4-67075 289 1.849748 STANDARD +301 Q0 FBIS3-26805 288 1.850634 STANDARD +301 Q0 FR940727-0-00093 287 1.850940 STANDARD +301 Q0 FBIS4-41144 286 1.853102 STANDARD +301 Q0 FBIS4-2512 285 1.857639 STANDARD +301 Q0 FBIS4-66264 284 1.860067 STANDARD +301 Q0 FBIS4-1794 283 1.861069 STANDARD +301 Q0 FR940429-0-00128 282 1.862317 STANDARD +301 Q0 FBIS4-46775 281 1.863126 STANDARD +301 Q0 FBIS4-2931 280 1.863184 STANDARD +301 Q0 FBIS4-25032 28 2.480994 STANDARD +301 Q0 FBIS4-68669 279 1.864410 STANDARD +301 Q0 FBIS4-56776 278 1.864500 STANDARD +303 Q0 FT923-10876 278 1.011683 STANDARD +301 Q0 FBIS3-41244 277 1.865750 STANDARD +301 Q0 FBIS4-25706 276 1.867508 STANDARD +301 Q0 FBIS3-46228 275 1.868788 STANDARD +303 Q0 FR940119-2-00100 275 1.015211 STANDARD +301 Q0 FBIS3-24197 274 1.870808 STANDARD +303 Q0 FT923-5257 274 1.017270 STANDARD +301 Q0 FR940203-1-00039 273 1.870957 STANDARD +303 Q0 FT943-3693 273 1.019071 STANDARD +301 Q0 FBIS3-30458 272 1.871451 STANDARD +301 Q0 FBIS3-30686 271 1.871451 STANDARD +301 Q0 FBIS3-40077 270 1.872271 STANDARD +303 Q0 FT943-11292 270 1.020416 STANDARD +301 Q0 FBIS4-24387 27 2.481159 STANDARD +301 Q0 FBIS3-27474 269 1.873794 STANDARD +301 Q0 LA070890-0129 268 1.876154 STANDARD +303 Q0 FT932-15788 268 1.023917 STANDARD +301 Q0 FBIS4-45239 267 1.877867 STANDARD +301 Q0 FBIS3-24247 266 1.878037 STANDARD +301 Q0 FBIS4-62543 265 1.880077 STANDARD +301 Q0 FBIS3-21779 264 1.880893 STANDARD +301 Q0 FBIS3-38878 263 1.882401 STANDARD +301 Q0 FBIS4-25065 262 1.883741 STANDARD +301 Q0 FBIS3-10204 261 1.885856 STANDARD +301 Q0 FR940503-2-00147 260 1.886508 STANDARD +301 Q0 FBIS3-2393 26 2.494489 STANDARD +301 Q0 FBIS4-24386 259 1.886517 STANDARD +301 Q0 FBIS4-1549 258 1.887025 STANDARD +301 Q0 FBIS4-39881 257 1.887065 STANDARD +301 Q0 FBIS4-25161 256 1.887178 STANDARD +303 Q0 FT923-7711 256 1.055355 STANDARD +301 Q0 FBIS3-2115 255 1.887945 STANDARD +301 Q0 FBIS4-66178 254 1.889605 STANDARD +303 Q0 FR941221-0-00047 254 1.057115 STANDARD +301 Q0 FT931-3563 253 1.889801 STANDARD +301 Q0 FBIS4-14080 252 1.890979 STANDARD +301 Q0 FBIS4-50842 251 1.892349 STANDARD +301 Q0 FBIS4-46806 250 1.893980 STANDARD +301 Q0 FBIS4-40260 25 2.528623 STANDARD +301 Q0 FBIS3-26913 249 1.896585 STANDARD +301 Q0 FBIS3-18507 248 1.896854 STANDARD +301 Q0 LA071889-0026 247 1.897763 STANDARD +301 Q0 FBIS4-40935 246 1.898004 STANDARD +301 Q0 FBIS3-26645 245 1.898311 STANDARD +301 Q0 FT924-227 244 1.898500 STANDARD +301 Q0 FBIS3-8746 243 1.899552 STANDARD +301 Q0 FBIS3-3223 242 1.899980 STANDARD +301 Q0 FT944-15444 241 1.901744 STANDARD +301 Q0 FBIS3-11210 240 1.903990 STANDARD +301 Q0 FBIS4-41541 24 2.550802 STANDARD +301 Q0 FBIS3-45003 239 1.906086 STANDARD +301 Q0 FT944-4555 238 1.906426 STANDARD +301 Q0 FR940728-2-00151 237 1.907816 STANDARD +301 Q0 FBIS3-26367 236 1.908945 STANDARD +301 Q0 LA071990-0150 235 1.909468 STANDARD +301 Q0 FBIS4-41991 234 1.911603 STANDARD +301 Q0 FR940203-1-00036 233 1.912871 STANDARD +301 Q0 FBIS4-40481 232 1.914181 STANDARD +301 Q0 FBIS4-1668 231 1.915419 STANDARD +301 Q0 FBIS3-24277 230 1.918759 STANDARD +301 Q0 FR940620-1-00005 23 2.569489 STANDARD +301 Q0 FBIS4-43797 229 1.919818 STANDARD +301 Q0 FBIS4-46734 228 1.920978 STANDARD +303 Q0 FT943-10128 228 1.109917 STANDARD +301 Q0 FBIS3-24284 227 1.921283 STANDARD +303 Q0 FT941-5396 227 1.110329 STANDARD +301 Q0 FBIS4-39330 226 1.923398 STANDARD +303 Q0 FT922-7904 226 1.118909 STANDARD +301 Q0 FBIS4-40934 225 1.923446 STANDARD +301 Q0 FBIS4-24523 224 1.926240 STANDARD +301 Q0 FBIS4-51332 223 1.930347 STANDARD +301 Q0 FBIS3-21908 222 1.930625 STANDARD +301 Q0 FBIS3-2605 221 1.932684 STANDARD +301 Q0 FBIS3-3303 220 1.933041 STANDARD +301 Q0 FBIS4-16951 22 2.586972 STANDARD +301 Q0 FBIS3-11095 219 1.939206 STANDARD +301 Q0 FBIS4-22345 218 1.943247 STANDARD +301 Q0 FBIS4-46584 217 1.944825 STANDARD +301 Q0 FBIS3-15636 216 1.945223 STANDARD +301 Q0 FBIS4-38481 215 1.945278 STANDARD +301 Q0 FBIS4-41667 214 1.946881 STANDARD +301 Q0 FBIS4-2514 213 1.947558 STANDARD +301 Q0 FT941-3237 212 1.948220 STANDARD +301 Q0 FBIS4-49845 211 1.954449 STANDARD +301 Q0 FBIS3-42315 210 1.956193 STANDARD +303 Q0 FT932-16246 210 1.161086 STANDARD +301 Q0 FBIS4-41952 21 2.622548 STANDARD +301 Q0 FT933-12037 209 1.957280 STANDARD +301 Q0 FBIS3-45756 208 1.957361 STANDARD +303 Q0 FR941020-2-00110 208 1.170328 STANDARD +301 Q0 FBIS3-22088 207 1.960365 STANDARD +301 Q0 FBIS4-50056 206 1.961327 STANDARD +303 Q0 FT921-15863 206 1.175726 STANDARD +301 Q0 FBIS4-68746 205 1.962427 STANDARD +301 Q0 FBIS3-44612 204 1.963338 STANDARD +301 Q0 LA080989-0129 203 1.964162 STANDARD +303 Q0 FT934-2685 203 1.182910 STANDARD +301 Q0 FBIS3-11212 202 1.971704 STANDARD +301 Q0 FBIS4-24633 201 1.975092 STANDARD +303 Q0 FT931-1868 201 1.188802 STANDARD +301 Q0 FBIS3-41285 200 1.978161 STANDARD +301 Q0 FBIS4-21302 20 2.632815 STANDARD +301 Q0 FBIS3-21938 2 3.280215 STANDARD +301 Q0 FBIS3-21930 199 1.980598 STANDARD +301 Q0 FBIS3-23901 198 1.982240 STANDARD +301 Q0 FBIS3-41158 197 1.982367 STANDARD +301 Q0 FBIS4-19949 196 1.988816 STANDARD +301 Q0 FBIS3-24453 195 1.989023 STANDARD +301 Q0 FBIS4-49289 194 1.990929 STANDARD +301 Q0 FBIS3-21905 193 1.991868 STANDARD +301 Q0 FBIS4-2721 192 1.993366 STANDARD +303 Q0 FT944-9936 192 1.217489 STANDARD +301 Q0 FBIS4-51118 191 1.996027 STANDARD +303 Q0 FT943-5598 191 1.218840 STANDARD +301 Q0 FBIS4-2510 190 1.996562 STANDARD +303 Q0 FT921-7107 19 3.363091 STANDARD +301 Q0 FBIS4-7688 19 2.669399 STANDARD +301 Q0 FBIS3-45601 189 1.996655 STANDARD +301 Q0 FBIS3-39566 188 1.997787 STANDARD +301 Q0 FBIS4-6448 187 1.998577 STANDARD +301 Q0 FR940303-1-00006 186 1.999081 STANDARD +303 Q0 FT932-12850 186 1.249146 STANDARD +301 Q0 FBIS3-38787 185 1.999308 STANDARD +301 Q0 FBIS3-26005 184 2.001203 STANDARD +301 Q0 FBIS3-21937 183 2.001406 STANDARD +303 Q0 FR940304-2-00134 183 1.254448 STANDARD +301 Q0 FBIS4-41863 182 2.002898 STANDARD +301 Q0 FT942-13766 181 2.003752 STANDARD +301 Q0 LA041789-0046 180 2.004429 STANDARD +301 Q0 FBIS3-21750 18 2.670143 STANDARD +301 Q0 FBIS3-26218 179 2.004786 STANDARD +301 Q0 FBIS3-41163 178 2.006615 STANDARD +301 Q0 FBIS4-2048 177 2.011086 STANDARD +303 Q0 FT941-3758 177 1.278597 STANDARD +301 Q0 FBIS3-45789 176 2.012594 STANDARD +301 Q0 FBIS4-21330 175 2.013537 STANDARD +301 Q0 FR940727-0-00092 174 2.014195 STANDARD +301 Q0 FBIS4-55395 173 2.014687 STANDARD +301 Q0 FBIS3-21765 172 2.016918 STANDARD +301 Q0 FBIS3-17175 171 2.017663 STANDARD +301 Q0 FBIS3-44864 170 2.017798 STANDARD +301 Q0 FBIS4-3044 17 2.693945 STANDARD +301 Q0 FBIS4-3370 169 2.018858 STANDARD +301 Q0 FBIS3-24037 168 2.022115 STANDARD +301 Q0 FBIS4-22471 167 2.022665 STANDARD +301 Q0 FBIS3-1849 166 2.024102 STANDARD +301 Q0 FBIS3-41385 165 2.026598 STANDARD +303 Q0 FT922-13455 165 1.346386 STANDARD +301 Q0 FBIS4-51335 164 2.027163 STANDARD +303 Q0 FT933-2180 164 1.349473 STANDARD +301 Q0 FBIS3-2327 163 2.034978 STANDARD +301 Q0 FBIS3-35272 162 2.038591 STANDARD +301 Q0 FBIS4-49431 161 2.038758 STANDARD +301 Q0 FBIS3-51766 160 2.041041 STANDARD +303 Q0 FT921-8919 160 1.360642 STANDARD +301 Q0 FBIS3-23986 16 2.712466 STANDARD +301 Q0 FBIS4-7390 159 2.043206 STANDARD +301 Q0 FBIS4-43965 158 2.044602 STANDARD +301 Q0 FBIS3-33020 157 2.047786 STANDARD +301 Q0 FBIS4-20985 156 2.048596 STANDARD +301 Q0 FBIS4-50209 155 2.049279 STANDARD +301 Q0 FBIS4-1863 154 2.053106 STANDARD +301 Q0 FBIS4-14483 153 2.053272 STANDARD +301 Q0 FBIS4-66291 152 2.057615 STANDARD +301 Q0 FBIS4-66307 151 2.057615 STANDARD +301 Q0 FR940727-0-00091 150 2.059793 STANDARD +301 Q0 FBIS3-3586 15 2.785274 STANDARD +301 Q0 FBIS4-3230 149 2.064102 STANDARD +301 Q0 FBIS4-3367 148 2.064102 STANDARD +303 Q0 FT923-3530 148 1.409420 STANDARD +301 Q0 FR940804-0-00102 147 2.064112 STANDARD +301 Q0 FT921-15491 146 2.065663 STANDARD +301 Q0 FT923-14709 145 2.066168 STANDARD +301 Q0 FBIS3-58028 144 2.069669 STANDARD +301 Q0 FBIS3-58058 143 2.069669 STANDARD +301 Q0 FBIS4-1628 142 2.070523 STANDARD +301 Q0 FT941-10546 141 2.078446 STANDARD +301 Q0 FBIS3-25901 140 2.078458 STANDARD +301 Q0 FBIS3-3622 14 2.785274 STANDARD +301 Q0 FBIS3-3412 139 2.080240 STANDARD +303 Q0 FT924-14355 139 1.478320 STANDARD +301 Q0 FBIS4-26335 138 2.080463 STANDARD +301 Q0 FBIS3-24143 137 2.081314 STANDARD +301 Q0 LA101590-0071 136 2.082767 STANDARD +301 Q0 FBIS3-46116 135 2.083308 STANDARD +301 Q0 FT944-15443 134 2.084795 STANDARD +301 Q0 FBIS4-43552 133 2.087620 STANDARD +301 Q0 FBIS3-25894 132 2.091815 STANDARD +303 Q0 FT943-11617 132 1.503932 STANDARD +301 Q0 FBIS3-41349 131 2.092097 STANDARD +301 Q0 FBIS4-46425 130 2.092915 STANDARD +301 Q0 FBIS3-45599 13 2.795794 STANDARD +301 Q0 FBIS4-44396 129 2.095230 STANDARD +301 Q0 FBIS3-54944 128 2.095287 STANDARD +301 Q0 FBIS4-45482 127 2.096435 STANDARD +301 Q0 FBIS3-52858 126 2.097152 STANDARD +301 Q0 FT944-8297 125 2.100060 STANDARD +301 Q0 FR940202-2-00154 124 2.104024 STANDARD +301 Q0 FBIS4-50993 123 2.106927 STANDARD +301 Q0 FBIS4-7811 122 2.108214 STANDARD +301 Q0 FBIS4-50513 121 2.108639 STANDARD +301 Q0 FBIS3-17255 120 2.110716 STANDARD +301 Q0 FBIS3-3189 12 2.826465 STANDARD +301 Q0 FBIS4-49075 119 2.112576 STANDARD +303 Q0 FT933-10324 119 1.642809 STANDARD +301 Q0 FBIS4-34879 118 2.112775 STANDARD +301 Q0 FBIS3-24362 117 2.114117 STANDARD +303 Q0 FR940304-2-00135 117 1.645932 STANDARD +301 Q0 FBIS4-42757 116 2.114265 STANDARD +301 Q0 FBIS4-38364 115 2.114667 STANDARD +301 Q0 FBIS4-26192 114 2.117829 STANDARD +301 Q0 FBIS4-62078 113 2.118467 STANDARD +301 Q0 FBIS4-45419 112 2.120282 STANDARD +303 Q0 FT933-678 112 1.695116 STANDARD +301 Q0 FBIS4-34515 111 2.122778 STANDARD +301 Q0 FBIS4-47045 110 2.123794 STANDARD +301 Q0 FR940303-1-00022 11 2.918622 STANDARD +301 Q0 FR940620-1-00004 109 2.125475 STANDARD +301 Q0 FBIS4-25845 108 2.126431 STANDARD +301 Q0 FBIS4-10817 107 2.127389 STANDARD +301 Q0 FBIS4-1842 106 2.127805 STANDARD +301 Q0 FBIS4-45552 105 2.127882 STANDARD +301 Q0 FR940202-2-00150 104 2.129133 STANDARD +301 Q0 FBIS3-55219 103 2.129514 STANDARD +301 Q0 FBIS4-63597 102 2.132991 STANDARD +303 Q0 FT934-3766 102 1.797155 STANDARD +301 Q0 FBIS4-2356 101 2.136141 STANDARD +301 Q0 FBIS4-56982 100 2.137468 STANDARD +303 Q0 FT934-3325 100 1.846668 STANDARD +301 Q0 FR940804-0-00127 10 2.920190 STANDARD +301 Q0 FBIS4-50478 1 3.340779 STANDARD diff --git a/tools/eval/trec_eval.9.0.4/test/zscores_file b/tools/eval/trec_eval.9.0.4/test/zscores_file new file mode 100644 index 0000000000000000000000000000000000000000..8f7c84c22b5d72f339e0fbffa50fe2a18506ff2e --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/test/zscores_file @@ -0,0 +1,312 @@ +301 11pt_avg 0.1265 0.1106 +301 G 0.0473 0.0379 +301 P_10 0.4200 0.3068 +301 P_100 0.3112 0.1895 +301 P_1000 0.1205 0.0843 +301 P_15 0.4170 0.2776 +301 P_20 0.4155 0.2642 +301 P_200 0.2487 0.1488 +301 P_30 0.3858 0.2413 +301 P_5 0.4182 0.3385 +301 P_500 0.1718 0.1187 +301 Rndcg 0.2380 0.1544 +301 Rprec 0.1804 0.1209 +301 Rprec_mult_0.20 0.3208 0.1951 +301 Rprec_mult_0.40 0.2588 0.1551 +301 Rprec_mult_0.60 0.2199 0.1343 +301 Rprec_mult_0.80 0.1975 0.1253 +301 Rprec_mult_1.00 0.1804 0.1209 +301 Rprec_mult_1.20 0.1654 0.1159 +301 Rprec_mult_1.40 0.1528 0.1073 +301 Rprec_mult_1.60 0.1426 0.1001 +301 Rprec_mult_1.80 0.1352 0.0945 +301 Rprec_mult_2.00 0.1285 0.0900 +301 binG 0.0473 0.0379 +301 bpref 0.2053 0.1438 +301 infAP 0.0949 0.1053 +301 iprec_at_recall_0.00 0.6426 0.3418 +301 iprec_at_recall_0.10 0.2979 0.2359 +301 iprec_at_recall_0.20 0.1589 0.2117 +301 iprec_at_recall_0.30 0.1104 0.1874 +301 iprec_at_recall_0.40 0.0822 0.1591 +301 iprec_at_recall_0.50 0.0563 0.1344 +301 iprec_at_recall_0.60 0.0273 0.1028 +301 iprec_at_recall_0.70 0.0155 0.0840 +301 iprec_at_recall_0.80 0.0000 0.0000 +301 iprec_at_recall_0.90 0.0000 0.0000 +301 iprec_at_recall_1.00 0.0000 0.0000 +301 map 0.0949 0.1053 +301 map_cut_10 0.0067 0.0068 +301 map_cut_100 0.0372 0.0385 +301 map_cut_1000 0.0949 0.1053 +301 map_cut_15 0.0094 0.0095 +301 map_cut_20 0.0121 0.0120 +301 map_cut_200 0.0530 0.0557 +301 map_cut_30 0.0162 0.0162 +301 map_cut_5 0.0036 0.0038 +301 map_cut_500 0.0781 0.0860 +301 ndcg 0.2706 0.1792 +301 ndcg_cut_10 0.4156 0.3108 +301 ndcg_cut_100 0.3311 0.2031 +301 ndcg_cut_1000 0.2706 0.1792 +301 ndcg_cut_15 0.4147 0.2873 +301 ndcg_cut_20 0.4141 0.2745 +301 ndcg_cut_200 0.2737 0.1635 +301 ndcg_cut_30 0.3939 0.2536 +301 ndcg_cut_5 0.4117 0.3430 +301 ndcg_cut_500 0.2142 0.1391 +301 ndcg_rel 0.2738 0.1736 +301 num_nonrel_judged_ret 206.6545 70.8360 +301 num_rel 448.0000 0.0000 +301 num_rel_ret 120.5364 84.3445 +301 num_ret 922.5455 223.3075 +301 prefs_avgjg 0.2422 0.1692 +301 prefs_avgjg_Rnonrel 0.1621 0.0609 +301 prefs_avgjg_Rnonrel_ret 0.2921 0.1632 +301 prefs_avgjg_imp 0.5428 0.1919 +301 prefs_avgjg_ret 0.4958 0.1516 +301 prefs_num_prefs_ful 115462.2091 80645.5653 +301 prefs_num_prefs_ful_ret 14855.1636 12500.9114 +301 prefs_num_prefs_poss 476672.0000 0.0000 +301 prefs_pair 0.2422 0.1692 +301 prefs_pair_imp 0.5428 0.1919 +301 prefs_pair_ret 0.4958 0.1516 +301 prefs_simp 0.2422 0.1692 +301 prefs_simp_imp 0.5428 0.1919 +301 prefs_simp_ret 0.4958 0.1516 +301 recall_10 0.0094 0.0069 +301 recall_100 0.0695 0.0423 +301 recall_1000 0.2691 0.1883 +301 recall_15 0.0140 0.0093 +301 recall_20 0.0186 0.0118 +301 recall_200 0.1110 0.0664 +301 recall_30 0.0258 0.0162 +301 recall_5 0.0047 0.0038 +301 recall_500 0.1917 0.1325 +301 recip_rank 0.5438 0.3917 +301 relative_P_10 0.4200 0.3068 +301 relative_P_100 0.3112 0.1895 +301 relative_P_1000 0.2691 0.1883 +301 relative_P_15 0.4170 0.2776 +301 relative_P_20 0.4155 0.2642 +301 relative_P_200 0.2487 0.1488 +301 relative_P_30 0.3858 0.2413 +301 relative_P_5 0.4182 0.3385 +301 relative_P_500 0.1917 0.1325 +301 set_F nan nan +301 set_P 0.1322 0.0834 +301 set_map 0.0496 0.0606 +301 set_recall 0.2691 0.1883 +301 set_relative_P 0.2758 0.1839 +301 success_1 0.3909 0.4880 +301 success_10 0.8364 0.3699 +301 success_5 0.7545 0.4304 +301 utility -681.4727 229.7304 +302 11pt_avg 0.5029 0.1788 +302 G 0.2522 0.0812 +302 P_10 0.7018 0.1977 +302 P_100 0.4132 0.1433 +302 P_1000 0.0534 0.0179 +302 P_15 0.6806 0.1959 +302 P_20 0.6655 0.1975 +302 P_200 0.2435 0.0884 +302 P_30 0.6364 0.1982 +302 P_5 0.7545 0.2392 +302 P_500 0.1033 0.0356 +302 Rndcg 0.6549 0.2026 +302 Rprec 0.5056 0.1669 +302 Rprec_mult_0.20 0.6909 0.1968 +302 Rprec_mult_0.40 0.6524 0.2020 +302 Rprec_mult_0.60 0.6065 0.1916 +302 Rprec_mult_0.80 0.5558 0.1813 +302 Rprec_mult_1.00 0.5056 0.1669 +302 Rprec_mult_1.20 0.4684 0.1573 +302 Rprec_mult_1.40 0.4334 0.1480 +302 Rprec_mult_1.60 0.4045 0.1418 +302 Rprec_mult_1.80 0.3734 0.1331 +302 Rprec_mult_2.00 0.3463 0.1247 +302 binG 0.2522 0.0812 +302 bpref 0.5058 0.1682 +302 infAP 0.4935 0.1809 +302 iprec_at_recall_0.00 0.9214 0.2464 +302 iprec_at_recall_0.10 0.7629 0.2353 +302 iprec_at_recall_0.20 0.6973 0.2315 +302 iprec_at_recall_0.30 0.6536 0.2388 +302 iprec_at_recall_0.40 0.6065 0.2328 +302 iprec_at_recall_0.50 0.5365 0.2256 +302 iprec_at_recall_0.60 0.4687 0.2165 +302 iprec_at_recall_0.70 0.3616 0.2322 +302 iprec_at_recall_0.80 0.2974 0.2185 +302 iprec_at_recall_0.90 0.2000 0.1902 +302 iprec_at_recall_1.00 0.0260 0.0596 +302 map 0.4935 0.1809 +302 map_cut_10 0.0936 0.0293 +302 map_cut_100 0.4378 0.1567 +302 map_cut_1000 0.4935 0.1809 +302 map_cut_15 0.1309 0.0408 +302 map_cut_20 0.1665 0.0524 +302 map_cut_200 0.4836 0.1801 +302 map_cut_30 0.2313 0.0762 +302 map_cut_5 0.0543 0.0197 +302 map_cut_500 0.4915 0.1810 +302 ndcg 0.7494 0.2367 +302 ndcg_cut_10 0.7379 0.2082 +302 ndcg_cut_100 0.6465 0.2047 +302 ndcg_cut_1000 0.7494 0.2367 +302 ndcg_cut_15 0.7155 0.2022 +302 ndcg_cut_20 0.6996 0.1991 +302 ndcg_cut_200 0.7143 0.2337 +302 ndcg_cut_30 0.6718 0.1963 +302 ndcg_cut_5 0.7859 0.2420 +302 ndcg_cut_500 0.7376 0.2359 +302 ndcg_rel 0.6850 0.2021 +302 num_nonrel_judged_ret 222.9000 99.0137 +302 num_rel 65.0000 0.0000 +302 num_rel_ret 53.4000 17.8886 +302 num_ret 913.8364 247.9119 +302 prefs_avgjg 0.7866 0.2635 +302 prefs_avgjg_Rnonrel 0.0731 0.0155 +302 prefs_avgjg_Rnonrel_ret 0.2456 0.1405 +302 prefs_avgjg_imp 0.8809 0.2152 +302 prefs_avgjg_ret 0.7791 0.2033 +302 prefs_num_prefs_ful 41361.5182 13856.1935 +302 prefs_num_prefs_ful_ret 10956.6091 6541.1638 +302 prefs_num_prefs_poss 52585.0000 0.0000 +302 prefs_pair 0.7866 0.2635 +302 prefs_pair_imp 0.8809 0.2152 +302 prefs_pair_ret 0.7791 0.2033 +302 prefs_simp 0.7866 0.2635 +302 prefs_simp_imp 0.8809 0.2152 +302 prefs_simp_ret 0.7791 0.2033 +302 recall_10 0.1080 0.0304 +302 recall_100 0.6357 0.2205 +302 recall_1000 0.8215 0.2752 +302 recall_15 0.1570 0.0452 +302 recall_20 0.2048 0.0608 +302 recall_200 0.7492 0.2719 +302 recall_30 0.2937 0.0914 +302 recall_5 0.0580 0.0184 +302 recall_500 0.7950 0.2738 +302 recip_rank 0.9034 0.2670 +302 relative_P_10 0.7018 0.1977 +302 relative_P_100 0.6357 0.2205 +302 relative_P_1000 0.8215 0.2752 +302 relative_P_15 0.6806 0.1959 +302 relative_P_20 0.6655 0.1975 +302 relative_P_200 0.7492 0.2719 +302 relative_P_30 0.6364 0.1982 +302 relative_P_5 0.7545 0.2392 +302 relative_P_500 0.7950 0.2738 +302 set_F nan nan +302 set_P 0.0718 0.0666 +302 set_map 0.0554 0.0224 +302 set_recall 0.8215 0.2752 +302 set_relative_P 0.8289 0.2606 +302 success_1 0.8727 0.3333 +302 success_10 0.9364 0.2441 +302 success_5 0.9364 0.2441 +302 utility -807.0364 232.8261 +303 11pt_avg 0.1924 0.1020 +303 G 0.2138 0.0756 +303 P_10 0.1064 0.0907 +303 P_100 0.0883 0.0263 +303 P_1000 0.0092 0.0026 +303 P_15 0.0945 0.0759 +303 P_20 0.0900 0.0726 +303 P_200 0.0456 0.0132 +303 P_30 0.0909 0.0600 +303 P_5 0.1400 0.1309 +303 P_500 0.0183 0.0053 +303 Rndcg 0.2943 0.1277 +303 Rprec 0.1064 0.0907 +303 Rprec_mult_0.20 0.2364 0.2586 +303 Rprec_mult_0.40 0.1568 0.1425 +303 Rprec_mult_0.60 0.1318 0.1148 +303 Rprec_mult_0.80 0.1193 0.1044 +303 Rprec_mult_1.00 0.1064 0.0907 +303 Rprec_mult_1.20 0.0954 0.0809 +303 Rprec_mult_1.40 0.0948 0.0753 +303 Rprec_mult_1.60 0.0960 0.0785 +303 Rprec_mult_1.80 0.0945 0.0784 +303 Rprec_mult_2.00 0.0900 0.0726 +303 binG 0.2138 0.0756 +303 bpref 0.0775 0.0681 +303 infAP 0.1517 0.0815 +303 iprec_at_recall_0.00 0.4263 0.3415 +303 iprec_at_recall_0.10 0.4263 0.3415 +303 iprec_at_recall_0.20 0.1946 0.1510 +303 iprec_at_recall_0.30 0.1631 0.0926 +303 iprec_at_recall_0.40 0.1468 0.0728 +303 iprec_at_recall_0.50 0.1417 0.0671 +303 iprec_at_recall_0.60 0.1374 0.0655 +303 iprec_at_recall_0.70 0.1294 0.0523 +303 iprec_at_recall_0.80 0.1257 0.0515 +303 iprec_at_recall_0.90 0.1215 0.0488 +303 iprec_at_recall_1.00 0.1037 0.0464 +303 map 0.1517 0.0815 +303 map_cut_10 0.0525 0.0545 +303 map_cut_100 0.1492 0.0833 +303 map_cut_1000 0.1517 0.0815 +303 map_cut_15 0.0589 0.0587 +303 map_cut_20 0.0659 0.0658 +303 map_cut_200 0.1517 0.0814 +303 map_cut_30 0.0782 0.0739 +303 map_cut_5 0.0434 0.0474 +303 map_cut_500 0.1517 0.0815 +303 ndcg 0.4573 0.1573 +303 ndcg_cut_10 0.1313 0.1143 +303 ndcg_cut_100 0.4471 0.1626 +303 ndcg_cut_1000 0.4573 0.1573 +303 ndcg_cut_15 0.1516 0.1236 +303 ndcg_cut_20 0.1716 0.1363 +303 ndcg_cut_200 0.4564 0.1576 +303 ndcg_cut_30 0.2149 0.1516 +303 ndcg_cut_5 0.1625 0.1562 +303 ndcg_cut_500 0.4569 0.1579 +303 ndcg_rel 0.3290 0.1450 +303 num_nonrel_judged_ret 232.4909 66.8518 +303 num_rel 10.0000 0.0000 +303 num_rel_ret 9.1545 2.6153 +303 num_ret 913.6727 248.5462 +303 prefs_avgjg 0.8662 0.2475 +303 prefs_avgjg_Rnonrel 0.0069 0.0010 +303 prefs_avgjg_Rnonrel_ret 0.0212 0.0105 +303 prefs_avgjg_imp 0.8926 0.2154 +303 prefs_avgjg_ret 0.7630 0.2121 +303 prefs_num_prefs_ful 6505.1091 1858.3972 +303 prefs_num_prefs_ful_ret 1835.7364 768.1939 +303 prefs_num_prefs_poss 7510.0000 0.0000 +303 prefs_pair 0.8662 0.2475 +303 prefs_pair_imp 0.8926 0.2154 +303 prefs_pair_ret 0.7630 0.2121 +303 prefs_simp 0.8662 0.2475 +303 prefs_simp_imp 0.8926 0.2154 +303 prefs_simp_ret 0.7630 0.2121 +303 recall_10 0.1064 0.0907 +303 recall_100 0.8827 0.2635 +303 recall_1000 0.9155 0.2615 +303 recall_15 0.1418 0.1139 +303 recall_20 0.1800 0.1451 +303 recall_200 0.9118 0.2634 +303 recall_30 0.2727 0.1799 +303 recall_5 0.0700 0.0654 +303 recall_500 0.9136 0.2637 +303 recip_rank 0.4037 0.3603 +303 relative_P_10 0.1064 0.0907 +303 relative_P_100 0.8827 0.2635 +303 relative_P_1000 0.9155 0.2615 +303 relative_P_15 0.1418 0.1139 +303 relative_P_20 0.1800 0.1451 +303 relative_P_200 0.9118 0.2634 +303 relative_P_30 0.2727 0.1799 +303 relative_P_5 0.1400 0.1309 +303 relative_P_500 0.9136 0.2637 +303 set_F nan nan +303 set_P 0.0161 0.0329 +303 set_map 0.0118 0.0081 +303 set_recall 0.9155 0.2615 +303 set_relative_P 0.9182 0.2537 +303 success_1 0.2182 0.4130 +303 success_10 0.7000 0.4583 +303 success_5 0.5909 0.4917 +303 utility -895.3636 247.2150 diff --git a/tools/eval/trec_eval.9.0.4/trec_eval b/tools/eval/trec_eval.9.0.4/trec_eval new file mode 100644 index 0000000000000000000000000000000000000000..285ffc0733728e0884d4540fb0670cd2b977907a Binary files /dev/null and b/tools/eval/trec_eval.9.0.4/trec_eval differ diff --git a/tools/eval/trec_eval.9.0.4/trec_eval.c b/tools/eval/trec_eval.9.0.4/trec_eval.c new file mode 100644 index 0000000000000000000000000000000000000000..dc678456036a9e6ffb8a8101ca273d0842f389db --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/trec_eval.c @@ -0,0 +1,619 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +static char *VersionID = VERSIONID; + +static char *help_message = +"trec_eval [-h] [-q] [-m measure[.params] [-c] [-n] [-l ]\n\ + [-D debug_level] [-N ] [-M ] [-R rel_format] [-T results_format]\n\ + rel_info_file results_file \n\ + \n\ +Calculate and print various evaluation measures, evaluating the results \n\ +in results_file against the relevance info in rel_info_file. \n\ + \n\ +There are a fair number of options, of which only the lower case options are \n\ +normally ever used. \n\ + --help:\n\ + -h: Print full help message and exit. Full help message will include\n\ + descriptions for any measures designated by a '-m' parameter, and\n\ + input file format descriptions for any rel_info_format given by '-R'\n\ + and any top results_format given by '-T.'\n\ + Thus to see all info about preference measures use\n\ + trec_eval -h -m all_prefs -R prefs -T trec_results \n\ + --version:\n\ + -v: Print version of trec_eval and exit.\n\ + --query_eval_wanted:\n\ + -q: In addition to summary evaluation, give evaluation for each query/topic\n\ + --measure measure_name[.measure_params]:\n\ + -m measure: Add 'measure' to the lists of measures to calculate and print.\n\ + If 'measure' contains a '.', then the name of the measure is everything\n\ + preceeding the period, and everything to the right of the period is\n\ + assumed to be a list of parameters for the measure, separated by ','. \n\ + There can be multiple occurrences of the -m flag.\n\ + 'measure' can also be a nickname for a set of measures. Current \n\ + nicknames include \n\ + 'official': the main measures often used by TREC\n\ + 'all_trec': all measures calculated with the standard TREC\n\ + results and rel_info format files.\n\ + 'set': subset of all_trec that calculates unranked values.\n\ + 'prefs': Measures not in all_trec that calculate preference measures.\n\ + --complete_rel_info_wanted:\n\ + -c: Average over the complete set of queries in the relevance judgements \n\ + instead of the queries in the intersection of relevance judgements \n\ + and results. Missing queries will contribute a value of 0 to all \n\ + evaluation measures (which may or may not be reasonable for a \n\ + particular evaluation measure, but is reasonable for standard TREC \n\ + measures.) Default is off.\n\ + --level_for_rel num:\n\ + -l: Num indicates the minimum relevance judgement value needed for \n\ + a document to be called relevant. Used if rel_info_file contains \n\ + relevance judged on a multi-relevance scale. Default is 1. \n\ + --nosummary:\n\ + -n: No summary evaluation will be printed\n\ + --Debug_level num:\n\ + -D : Debug level. 1 and 2 used for measures, 3 and 4 for merging\n\ + rel_info and results, 5 and 6 for input. Currently, num can be of the\n\ + form . and only qid will be evaluated with debug info printed.\n\ + Default is 0.\n\ + --Number_docs_in_coll num:\n\ + -N : Number of docs in collection Default is MAX_LONG \n\ + -Max_retrieved_per_topic num:\n\ + -M : Max number of docs per topic to use in evaluation (discard rest). \n\ + Default is MAX_LONG.\n\ + --Judged_docs_only:\n\ + -J: Calculate all values only over the judged (either relevant or \n\ + nonrelevant) documents. All unjudged documents are removed from the \n\ + retrieved set before any calculations (possibly leaving an empty set). \n\ + DO NOT USE, unless you really know what you're doing - very easy to get \n\ + reasonable looking numbers in a file that you will later forget were \n\ + calculated with the -J flag. \n\ + --Rel_info_format format:\n\ + -R format: The rel_info file is assumed to be in format 'format'. Current\n\ + values for 'format' include 'qrels', 'prefs', 'qrels_prefs'. Note not\n\ + all measures can be calculated with all formats.\n\ + --Results_format format:\n\ + -T format: the top results_file is assumed to be in format 'format'. Current\n\ + values for 'format' include 'trec_results'. Note not all measures can be\n\ + calculated with all formats.\n\ + --Zscore Zmean_file:\n\ + -Z Zmean_file: Instead of printing the raw score for each measure, print\n\ + a Z score instead. The score printed will be the deviation from the mean\n\ + of the raw score, expressed in standard deviations, where the mean and\n\ + standard deviation for each measure and query are found in Zmean_file.\n\ + If mean is not in Zmeanfile for a measure and query, -1000000 is printed.\n\ + Zmean_file format is ascii lines of form \n\ + qid measure_name mean std_dev\n\ + \n\ + \n\ +Standard evaluation procedure:\n\ +For each of the standard TREC measures requested, a ranked list of\n\ +of relevance judgements is created corresponding to each ranked retrieved doc,\n\ +A rel judgement is set to -1 if the document was not in the pool (not in \n\ +rel_info_file) or -2 if the document was in the pool but unjudged (some \n\ +measures (infAP) allow the pool to be sampled instead of judged fully). \n\ +Otherwise it is set to the value in rel_info_file. \n\ +Most measures, but not all, will treat -1 or -2 the same as 0, \n\ +namely nonrelevant. Note that relevance_level is used to \n\ +determine if the document is relevant during score calculations. \n\ +Queries for which there is no relevance information are ignored. \n\ +Warning: queries for which there are relevant docs but no retrieved docs \n\ +are also ignored by default. This allows systems to evaluate over subsets \n\ +of the relevant docs, but means if a system improperly retrieves no docs, \n\ +it will not be detected. Use the -c flag to avoid this behavior. \n\ +"; + + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" + +#ifdef MDEBUG +#include "mcheck.h" +#endif /* MDEBUG */ + + +static char *usage = "Usage: trec_eval [-h] [-q] {-m measure}* trec_rel_file trec_top_file\n\ + -h: Give full help information, including other options\n\ + -q: In addition to summary evaluation, give evaluation for each query\n\ + -m: calculate and print measures indicated by 'measure'\n\ + ('-m all_qrels' prints all qrels measures, '-m official' is default)\n"; + +extern int te_num_trec_measures; +extern TREC_MEAS *te_trec_measures[]; +extern int te_num_trec_measure_nicknames; +extern TREC_MEASURE_NICKNAMES te_trec_measure_nicknames[]; +extern int te_num_rel_info_format; +extern REL_INFO_FILE_FORMAT te_rel_info_format[]; +extern int te_num_results_format; +extern RESULTS_FILE_FORMAT te_results_format[]; +extern int te_num_form_inter_procs; +extern RESULTS_FILE_FORMAT te_form_inter_procs[]; + +static int mark_measure (EPI *epi, char *optarg); +static int trec_eval_help(EPI *epi); +static void get_debug_level_query (EPI *epi, char *optarg); +static int cleanup (EPI *epi); + + +int +main (argc, argv) +int argc; +char *argv[]; +{ + char *trec_results_file; + ALL_RESULTS all_results; + char *trec_rel_info_file; + ALL_REL_INFO all_rel_info; + char *zscores_file= NULL; + ALL_ZSCORES all_zscores; + + EPI epi; /* Eval parameter info */ + TREC_EVAL accum_eval; + TREC_EVAL q_eval; + long i,j,m; + int c; + long help_wanted = 0; + long measure_marked_flag = 0; + +#ifdef MDEBUG + /* Turn on memory debugging if environment variable MALLOC_TRACE is + defined as an output file for reports. + mcheck_check_all() will dynamically check */ + mcheck(NULL); + mtrace(); +#endif /* MDEBUG */ + + /* Initialize static info before getting program optional args */ + epi.query_flag = 0; + epi.average_complete_flag = 0; + epi.judged_docs_only_flag = 0; + epi.summary_flag = 1; + epi.relation_flag = 1; + epi.debug_level = 0; + epi.debug_query = NULL; + epi.num_docs_in_coll = 0; + epi.relevance_level = 1; + epi.max_num_docs_per_topic = MAXLONG; + epi.rel_info_format = "qrels"; + epi.results_format = "trec_results"; + epi.zscore_flag = 0; + if (NULL == (epi.meas_arg = Malloc (argc+1, MEAS_ARG))) + exit (1); + epi.meas_arg[0].measure_name = NULL; + + /* Get command line options */ + while (1) { + int option_index = 0; + static struct option long_options[] = { + {"help", 0, 0, 'h'}, + {"version", 0, 0, 'v'}, + {"query_eval_wanted", 0, 0, 'q'}, + {"measure", 1, 0, 'm'}, + {"complete_rel_info_wanted", 0, 0, 'c'}, + {"level_for_rel", 1, 0, 'l'}, + {"nosummary", 0,0,'n'}, + {"Debug_level", 1, 0, 'D'}, + {"Judged_docs_only", 0, 0, 'J'}, + {"Number_docs_in_coll", 1, 0, 'N'}, + {"Max_retrieved_per_topic", 1, 0, 'M'}, + {"Rel_info_format", 1, 0, 'R'}, + {"Results_format", 1, 0, 'T'}, + {"Output_old_results_format", 1, 0, 'o'}, + {"Zscore", 1, 0, 'Z'}, + {0, 0, 0, 0}, + }; + c = getopt_long (argc, argv, "hvqm:cl:nD:JN:M:R:T:oZ:", + long_options, &option_index); + if (c == -1) + break; + switch (c) { + case 'h': + help_wanted++; + break; + case 'v': + fprintf (stderr, "trec_eval version %s\n", VersionID); + exit (0); + case 'q': + epi.query_flag++; + break; + case 'm': + /* Mark measure(s) indicated by optarg to be done */ + if (UNDEF == mark_measure (&epi, optarg)) { + fprintf (stderr, "trec_eval: illegal measure '%s'\n", optarg); + exit (1); + } + measure_marked_flag++; + break; + case 'c': + epi.average_complete_flag++; + break; + case 'l': + epi.relevance_level = atol (optarg); + break; + case 'n': + epi.summary_flag = 0; + break; + case 'D': + get_debug_level_query (&epi, optarg); + break; + case 'J': + epi.judged_docs_only_flag++; + break; + case 'N': + epi.num_docs_in_coll = atol (optarg); + break; + case 'M': + epi.max_num_docs_per_topic = atol (optarg); + break; + case 'R': + epi.rel_info_format = optarg; + break; + case 'T': + epi.results_format = optarg; + break; + case 'o': + /* Obsolete, no longer supported */ + epi.relation_flag = 0; + break; + case 'Z': + epi.zscore_flag++; + zscores_file = optarg; + break; + case '?': + default: + (void) fputs (usage,stderr); + exit (1); + } + } + + if (help_wanted) { + if (UNDEF == trec_eval_help(&epi)) + return (UNDEF); + exit (0); + } + + if (optind + 2 != argc ) { + (void) fputs (usage,stderr); + exit (1); + } + + trec_rel_info_file = argv[optind++]; + trec_results_file = argv[optind++]; + + /* Find and get qrels and ranked results information for all queries from + the input text files */ + for (i = 0; i < te_num_rel_info_format; i++) { + if (0 == strcmp (epi.rel_info_format, te_rel_info_format[i].name)) { + if (UNDEF == te_rel_info_format[i].get_file (&epi, + trec_rel_info_file, + &all_rel_info)) { + fprintf (stderr, "trec_eval: Quit in file '%s'\n", + trec_rel_info_file); + exit (2); + } + break; + } + } + if (i >= te_num_rel_info_format) { + fprintf (stderr, "trec_eval: Illegal rel_format '%s'\n", + epi.rel_info_format); + exit (2); + } + for (i = 0; i < te_num_results_format; i++) { + if (0 == strcmp (epi.results_format, te_results_format[i].name)) { + if (UNDEF == te_results_format[i].get_file (&epi, + trec_results_file, + &all_results)) { + fprintf (stderr, "trec_eval: Quit in file '%s'\n", + trec_results_file); + exit (2); + } + break; + } + } + if (i >= te_num_results_format) { + fprintf (stderr, "trec_eval: Illegal retrieval results format '%s'\n", + epi.results_format); + exit (2); + } + + if (epi.zscore_flag) { + if (UNDEF == te_get_zscores (&epi, zscores_file, &all_zscores)) + return (UNDEF); + } + + /* Initialize all marked measures (possibly using command line info) */ + if (0 == measure_marked_flag) { + /* If no measures designated on command line, first mark "official" */ + if (UNDEF == mark_measure (&epi, "official")) { + fprintf (stderr, "trec_eval: illegal measure 'official'\n"); + exit (1); + } + } + accum_eval = (TREC_EVAL) {"all", 0, NULL, 0, 0}; + for (m = 0; m < te_num_trec_measures; m++) { + if (MEASURE_MARKED(te_trec_measures[m])) { + if (UNDEF == te_trec_measures[m]->init_meas (&epi, + te_trec_measures[m], + &accum_eval)) { + fprintf (stderr, "trec_eval: Cannot initialize measure '%s'\n", + te_trec_measures[m]->name); + exit (2); + } + } + } + + /* Reserve space and initialize q_eval to be copy of accum_eval */ + if (NULL == (q_eval.values = Malloc (accum_eval.num_values, + TREC_EVAL_VALUE))) + exit (3); + (void) memcpy (q_eval.values, accum_eval.values, + accum_eval.num_values * sizeof (TREC_EVAL_VALUE)); + q_eval.num_values = accum_eval.num_values; + q_eval.num_queries = 0; + + /* For each topic which has both qrels and top results information, + calculate, possibly print (if query_flag), and accumulate + evaluation measures. */ + for (i = 0; i < all_results.num_q_results; i++) { + /* If debugging a particular query, then skip all others */ + if (epi.debug_query && + strcmp (epi.debug_query, all_results.results[i].qid)) + continue; + /* Find rel info for this query (skip if no rel info) */ + for (j = 0; j < all_rel_info.num_q_rels; j++) { + if (0 == strcmp (all_results.results[i].qid, + all_rel_info.rel_info[j].qid)) + break; + } + if (j >= all_rel_info.num_q_rels) + continue; + + /* zero out all measures for new query */ + for (m = 0; m < q_eval.num_values; m++) + q_eval.values[m].value = 0; + q_eval.qid = all_results.results[i].qid; + + /* Calculate all measure scores */ + for (m = 0; m < te_num_trec_measures; m++) { + if (MEASURE_REQUESTED(te_trec_measures[m])) { + if (UNDEF == te_trec_measures[m]->calc_meas (&epi, + &all_rel_info.rel_info[j], + &all_results.results[i], + te_trec_measures[m], + &q_eval)) { + fprintf (stderr,"trec_eval: Can't calculate measure '%s'\n", + te_trec_measures[m]->name); + exit (4); + } + } + } + + /* Convert values to zscores if requested */ + if (epi.zscore_flag) { + if (UNDEF == te_convert_to_zscore (&all_zscores, &q_eval)) + return (UNDEF); + } + + /* Add this topics value to accumulated values, and possibly print */ + for (m = 0; m < te_num_trec_measures; m++) { + if (MEASURE_REQUESTED(te_trec_measures[m])) { + if (UNDEF == te_trec_measures[m]->acc_meas (&epi, + te_trec_measures[m], + &q_eval, + &accum_eval)) { + fprintf(stderr,"trec_eval: Can't accumulate measure '%s'\n", + te_trec_measures[m]->name); + exit (5); + } + if (epi.query_flag && + UNDEF == te_trec_measures[m]->print_single_meas (&epi, + te_trec_measures[m], + &q_eval)) { + fprintf(stderr, + "trec_eval: Can't print query measure '%s'\n", + te_trec_measures[m]->name); + exit (6); + } + } + } + accum_eval.num_queries++; + } + + if (accum_eval.num_queries == 0) { + fprintf (stderr, + "trec_eval: No queries with both results and relevance info\n"); + exit (7); + } + + /* Calculate final averages, and print (if desired) */ + /* Note that averages may depend on the entire rel_info data if + epi.average_complete_flag is set */ + for (m = 0; m < te_num_trec_measures; m++) { + if (MEASURE_REQUESTED(te_trec_measures[m])) { + if (UNDEF == te_trec_measures[m]->calc_avg_meas + (&epi, te_trec_measures[m], + &all_rel_info, &accum_eval) || + UNDEF == te_trec_measures[m]->print_final_and_cleanup_meas + (&epi, te_trec_measures[m], &accum_eval)) { + fprintf (stderr,"trec_eval: Can't print measure '%s'\n", + te_trec_measures[m]->name); + exit (8); + } + } + } + + if (UNDEF == cleanup (&epi)) { + fprintf (stderr,"trec_eval: cleanup failed\n"); + exit (10); + } + Free (q_eval.values); + Free (accum_eval.values); + Free (epi.meas_arg); + + exit (0); +} + +static int +add_meas_arg_info (EPI *epi, char *meas, char *param) +{ + long i; + + /* Guaranteed space since malloc'd argc+1 entries and can't be more + than one entry per command line argument */ + + /* Find non-NULL entry */ + i = 0; + while (epi->meas_arg[i].measure_name) i++; + + epi->meas_arg[i].measure_name = meas; + epi->meas_arg[i].parameters = param; + + /* Ensure measure_name exists, has non_NULL parameter and mark it + to be calculated */ + if (*param == '\0') { + fprintf (stderr, "trec_eval: improper measure in parameter '%s'\n", + epi->meas_arg[i].measure_name); + return (UNDEF); + } + + epi->meas_arg[i+1].measure_name = NULL; + return (1); +} + +static int +mark_single_measure (char *optarg) +{ + long i; + + for (i = 0; i < te_num_trec_measures; i++) { + if (0 == strcmp (optarg, te_trec_measures[i]->name)) { + te_trec_measures[i]->eval_index = -2; + break; + } + } + if (i >= te_num_trec_measures) + return (UNDEF); + return (1); +} + +static int +mark_measure (EPI *epi, char *optarg) +{ + long i; + char *ptr; + + ptr = optarg; + while (*ptr && *ptr != '.') ptr++; + if (*ptr == '.') { + *ptr++ = '\0'; + if (UNDEF == add_meas_arg_info (epi, optarg, ptr)) + return (UNDEF); + } + + for (i = 0; i < te_num_trec_measure_nicknames; i++) { + if (0 == strcmp (optarg, te_trec_measure_nicknames[i].name)) { + /* Have found nickname. Mark all real names it refers to */ + char **name = te_trec_measure_nicknames[i].name_list; + while (*name) { + if (UNDEF == mark_single_measure (*name)) + return (UNDEF); + name++; + } + return (1); + } + } + + /* optarg did not match any nickname, mark measure directly */ + return (mark_single_measure (optarg)); +} + +static int +trec_eval_help(EPI *epi) +{ + long m, f; + long m_marked = 0; + + printf ("%s\n-----------------------\n", help_message); + + for (f = 0; f < te_num_results_format; f++) { + if (0 == strcmp (te_results_format[f].name, epi->results_format)) + break; + } + if (f < te_num_results_format) + printf ("%s\n-----------------------\n", + + te_results_format[f].explanation); + + for (f = 0; f < te_num_rel_info_format; f++) { + if (0 == strcmp (te_rel_info_format[f].name, epi->rel_info_format)) + break; + } + if (f < te_num_rel_info_format) + printf ("%s\n-----------------------\n", + te_rel_info_format[f].explanation); + + printf ("Individual measure documentation for requested measures\n"); + + for (m = 0; m < te_num_trec_measures; m++) { + if (MEASURE_MARKED(te_trec_measures[m])) { + m_marked = 1; + printf ("%s\n%s", + te_trec_measures[m]->name, + te_trec_measures[m]->explanation); + } + } + + if (! m_marked) + printf ("-- No measures indicated.\n Request measure documentation using <-m measure> on command line\n"); + + return (1); +} + +static void +get_debug_level_query ( EPI *epi, char *optarg) +{ + char *ptr; + + for (ptr = optarg; *ptr && *ptr != '.'; ptr++) + ; + if (*ptr) { + *ptr++ = '\0'; + epi->debug_query = ptr; + } + epi->debug_level = atol (optarg); +} + +static int +cleanup (EPI *epi) +{ + long i; + + for (i = 0; i < te_num_rel_info_format; i++) { + if (0 == strcmp (epi->rel_info_format, te_rel_info_format[i].name)) { + if (UNDEF == te_rel_info_format[i].cleanup()) + return (UNDEF); + break; + } + } + for (i = 0; i < te_num_results_format; i++) { + if (0 == strcmp (epi->results_format, te_results_format[i].name)) { + if (UNDEF == te_results_format[i].cleanup ()) + return (UNDEF); + break; + } + } + for (i = 0; i < te_num_form_inter_procs; i++) { + if (UNDEF == te_form_inter_procs[i].cleanup ()) + return (UNDEF); + } + if (epi->zscore_flag) { + if (UNDEF == te_get_zscores_cleanup()) + return (UNDEF); + } + return (1); +} diff --git a/tools/eval/trec_eval.9.0.4/trec_eval.h b/tools/eval/trec_eval.9.0.4/trec_eval.h new file mode 100644 index 0000000000000000000000000000000000000000..fb23d8c54032197559fa5a23c456f6e3dad0e65c --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/trec_eval.h @@ -0,0 +1,241 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#ifndef TRECEVALH +#define TRECEVALH + +/* Static state info; set at beginning, possibly from program options, */ +/* but then remains constant throughout. */ +/* List of command line arguments giving individual measure parameters. + meas_arg is NULL if there are no such arguments. + If arguments, final list member contains a NULL measure_name */ +typedef struct { + char *measure_name; + char *parameters; +} MEAS_ARG; + +typedef struct { + long query_flag; /* 0. If set, evaluation output will be + printed for each query, in addition + to summary at end. */ + long summary_flag; /* 1. If set, evaluation output will be + printed for summary */ + long debug_level; /* 0. if level is 1 or 2, measure debug info + printed. If 3 or more, other info may + be printed (file format etc). */ + char *debug_query; /* NULL. if non-NULL then only debug_query + will be evaluated */ + long relation_flag; /* 1. If set, print in relational form */ + long average_complete_flag; /* 0. If set, average over the complete set + of relevance judgements (qrels), instead + of the number of queries + in the intersection of qrels and result */ + long judged_docs_only_flag; /* 0. If set, throw out all unjudged docs + for the retrieved set before calculating + any measures. */ + long num_docs_in_coll; /* 0. number of docs in collection */ + long relevance_level; /* 1. In relevance judgements, the level at + which a doc is considered relevant for + this evaluation */ + long max_num_docs_per_topic; /* MAXLONG. evaluate only this many docs */ + char *rel_info_format; /* "qrels", format of input rel_info_file */ + char *results_format; /* "trec_results" format of input results*/ + long zscore_flag; /* 0. If set, output Z score for measure + instead of raw score */ + /* List of command line arguments giving individual measure parameters. + meas_arg is NULL if there are no such arguments. + If arguments, final list member contains a NULL measure_name */ + MEAS_ARG *meas_arg; +} EPI; + + + +typedef struct { + char *name; /* Full measure name for a trec_eval value. + This includes root measure name, plus + any changes due to cutoffs, parameters */ + double value; /* Actual value */ +} TREC_EVAL_VALUE; + +/* Evaluation values being calculated */ +typedef struct { + char *qid; /* query id */ + long num_queries; /* Number of queries for this eval */ + TREC_EVAL_VALUE *values; /* Actual measures and their values */ + long num_values; /* Number of individual measures */ + long max_num_values; /* Private: Max number of measures space + is reserved for */ +} TREC_EVAL; + + +/* Standard Parameter structures used for some measures in + trec_meas.meas_params */ +typedef struct { + char *printable_params; /* Desired printable non-default version of + params (assumed malloc'd; If non-NULL + then this and eval->values.name must be + free'd in measure cleanup */ + long num_params; + void *param_values; +} PARAMS; +typedef struct { + char* name; + double value; +} FLOAT_PARAM_PAIR; + +/* Definitions of internal formats for retrieval ranking and relevance info */ +/* These are format independent definitions, which have a pointer + to the format dependent definitions found in trec_format.h. + eg (void *) results->q_results will point to an object of type + TEXT_RESULTS INFO if results->ret_format is "trec_results". + (void *) rel_info->q_rel_info wiil similarly point to type + TEXT_QRELS_INFO if rel_info->rel_type is "qrels". */ +typedef struct { + char *qid; /* query id */ + char *run_id; /* run id */ + char * ret_format; /* format of retranked data. + eg, "trec_results" */ + void *q_results; /* retrieval ranking for this qid */ +} RESULTS; + +typedef struct { /* Overall retrieved results */ + long num_q_results; /* Number of RESULTS queries */ + long max_num_q_results; /* Num queries space reserved for*/ + RESULTS *results; /* Array of RETRANK query results */ +} ALL_RESULTS; + +typedef struct { + char *qid; /* query id */ + char *rel_format; /* format of rel_info data. Eg, "qrels" */ + void *q_rel_info; /* relevance info for this qid */ +} REL_INFO; + +typedef struct { /* Overall relevance judgements */ + long num_q_rels; /* Number of REL_INFO queries */ + long max_num_q_rels; /* Num queries space reserved for */ + REL_INFO *rel_info; /* Array of REL_INFO queries */ +} ALL_REL_INFO; + +/* Measure characteristics (how to print them, average them). */ +/* List of measures is in measures.c */ +typedef struct trec_meas { + /* Nmae of measure (or root name of set of measures) */ + char *name; + /* Full explanation of measure, printed upon help request */ + char *explanation; + /* Store parameters for measure in meas_params. Reserve space in + TREC_EVAL.values for results of measure. Store individual measure + names (possibly altered by parameters) in TREC_EVAL.values and + initialize value to 0.0. + Set tm->eval_index to start of reserved space */ + int (* init_meas) (EPI *epi, struct trec_meas *tm, TREC_EVAL *eval); + /* Calculate actual measure for single query */ + int (* calc_meas) (const EPI *epi, const REL_INFO *rel, + const RESULTS *results, const struct trec_meas *tm, + TREC_EVAL *eval); + /* Merge info for single query into summary info */ + int (* acc_meas) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *q_eval, TREC_EVAL *summ_eval); + /* Calculate final averages (if needed) from summary info */ + /* Because of epi->average_complete_flag (-c on command line), averaging may + depend on all relevant topics, not just those with results */ + int (* calc_avg_meas) (const EPI *epi, const struct trec_meas *tm, + const ALL_REL_INFO *all_rel_info, TREC_EVAL *eval); + /* Print single query value */ + int (* print_single_meas) (const EPI *epi, const struct trec_meas *tm, + const TREC_EVAL *eval); + /* Print final summary value, and cleanup measure malloc's */ + int (* print_final_and_cleanup_meas) (const EPI *epi, + struct trec_meas *tm, + TREC_EVAL *eval); + /* Measure dependent parameters, defaults given here can normally be + overridden from command line by init_meas procedure */ + PARAMS *meas_params; + /* Index within TREC_EVAL.values for values for measure. + -1 indicates measure not to be calculated (default). + -2 indicates measure to be calculated, but has not yet been initialized. + Set in init_meas */ + long eval_index; +} TREC_MEAS; + +/* Mapping of a nickname to a group of measures that it applies to. + Eg "official". See measures.c for values */ +typedef struct { + char *name; + char **name_list; +} TREC_MEASURE_NICKNAMES; + + +/* File Formats for retrieval and rel info, and procedures to merge them */ +/* List of formats is in formats.c */ +typedef struct { + char *name; + char *explanation; + int (* get_file) (EPI *epi, char *text_qrels_file, + ALL_REL_INFO *all_rel_info); + int (* cleanup) (); +} REL_INFO_FILE_FORMAT; +typedef struct { + char *name; + char *explanation; + int (* get_file) (EPI *epi, char *text_results_file, + ALL_RESULTS *all_results); + int (* cleanup) (); +} RESULTS_FILE_FORMAT; +/* FORM_INTER_PROCS is not used except for clean up and eventually + documentation */ +typedef struct { + char *rel_info_format; + char *results_info_format; + char *explanation; + /* int (*form_file) (); */ + int (*cleanup) (); +} FORM_INTER_PROCS; + +/* Storage for mean and stddev of scores for a measure on a query. + Used if epi->Zscore_flag is set. Means and stddev gotten from + Zmean_file which in turn is based upon past evaluations of a + reference set of runs */ +typedef struct { + char *meas; + double mean; + double stddev; +} ZSCORE_QID; +typedef struct { + char *qid; + long num_zscores; + ZSCORE_QID *zscores; +} ZSCORES; +typedef struct { + long num_q_zscores; + ZSCORES *q_zscores; +} ALL_ZSCORES; + + +#define MISSING_ZSCORE_VALUE -1000000 + +/* Macros for marking measures to be calculated in this invocation */ +#define MARK_MEASURE(x) x->eval_index = -2; +#define MEASURE_MARKED(x) (-2 == x->eval_index) +#define MEASURE_REQUESTED(x) (0 <= x->eval_index) + +/* Non standard relevance values to be assigned retrieved docs */ +#define RELVALUE_NONPOOL -1 +#define RELVALUE_UNJUDGED -2 + + +/* Defined constants - non-important but used in several places */ +#define INIT_NUM_QUERIES 50 +#define INIT_NUM_RESULTS 1000 +#define INIT_NUM_RELS 2000 +#define INIT_NUM_REL_LEVELS 5 +#define INIT_NUM_MEAS_ARG 5 + +/* Defined epsilon constants for several measures */ +#define MIN_GEO_MEAN .00001 +#define INFAP_EPSILON .00001 + +#endif /* TRECEVALH */ diff --git a/tools/eval/trec_eval.9.0.4/trec_format.h b/tools/eval/trec_eval.9.0.4/trec_format.h new file mode 100644 index 0000000000000000000000000000000000000000..8b78c623cfc2ef48aaa040a166da033b9575a7e1 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/trec_format.h @@ -0,0 +1,259 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ +#ifndef TRECFORMATH +#define TRECFORMATH + +/* ---------------------------------------------------------------------- */ +/* Format specific definitions for file input for results and rel_info */ +/* trec_results - pointed to by results->q_results */ +typedef struct { /* For each retrieved document result */ + char *docno; /* document id */ + float sim; /* score */ +} TEXT_RESULTS; + +typedef struct { /* For each query in retrieved results */ + long num_text_results; /* number results for query*/ + long max_num_text_results; /* number results space reserved for */ + TEXT_RESULTS *text_results; /* Array of TEXT_RESULTS results */ +} TEXT_RESULTS_INFO; + +/* qrels pointed to by rel_info->q_rel_info */ +typedef struct { /* For each relevance judgement */ + char *docno; /* document id */ + long rel; /* document judgement */ +} TEXT_QRELS; + +typedef struct { /* For each query in rel judgments */ + long num_text_qrels; /* number of judged documents */ + long max_num_text_qrels; /* Num docs space reserved for + Private, unused */ + TEXT_QRELS *text_qrels; /* Array of judged TEXT_QRELS. + Kept sorted by docno */ +} TEXT_QRELS_INFO; + +typedef struct { /* For each jg in query */ + long num_text_qrels; /* number of judged documents */ + TEXT_QRELS *text_qrels; /* Array of judged TEXT_QRELS. + Kept sorted by docno */ +} TEXT_QRELS_JG; + +typedef struct { /* For each query in rel judgments */ + long num_text_qrels_jg; /* number of judgment groups */ + TEXT_QRELS_JG *text_qrels_jg; /* Array of judged TEXT_QRELS_JG */ +} TEXT_QRELS_JG_INFO; + +/* prefs pointed to by rel_info->q_rel_info */ +typedef struct { /* For each line in rel prefs judgments */ + char *jg; /* Judgment group id */ + char *jsg; /* Judgment subgroup id */ + float rel_level; /* Relevance level of this docno */ + char *docno; /* docno */ +} TEXT_PREFS; + +typedef struct { /* For each query in rel judgements */ + long num_text_prefs; /* number of preference lines */ + long max_num_text_prefs; /* Num pref lines space reserved for */ + TEXT_PREFS *text_prefs; /* Array of judged TEXT_PREFS */ +} TEXT_PREFS_INFO; + + +/* ----------------------------------------------------------------------*/ +/* Intermediate form of merged results plus rel_info that can be more + directly used by several measures */ + +/* Original trec_results and qrels */ +typedef struct { + /* Counts among retrieved docs (possibly different after -M) */ + long num_rel_ret; /* Relevant retrieved docs - + Number of retrieved docs in results_rel_list + with value >= epi->relevance_level */ + long num_ret; /* Retrieved docs - + Number of docs in results_rel_list */ + long num_nonpool; /* Number of docs in results_rel_list not in pool - + Number with value = RELVALUE_NONPOOL */ + long num_unjudged_in_pool; /* Number of docs in results_rel_list in pool + but not judged - + Number with value = RELVALUE_UNJUDGED */ + + /* Counts among total relevance judgments (independent of retrieval) */ + long num_rel; + long num_rel_levels; /* Number of judged rel_levels */ + long *rel_levels; /* Number of docs in each judged rel_level + (0 through num_rel_levels-1), whether + ranked or not */ + + long *results_rel_list; /* Ordered list of relevance judgements + Eg, results_rel_list[2] gives relevance of the + third retrieved doc in rank order. + length of list is rank_rel->num_ret */ +} RES_RELS; + +/* If Judgments group info is included (qrels_jg), then return multiple jgs */ +typedef struct { + char *qid; + long num_jgs; + RES_RELS *jgs; +} RES_RELS_JG; + +/* Merged trec_results and prefs info */ + +/* Two different approaches for representing preferences: EC and PREF_ARRAY */ + +/* For every different equivalence class (an ec is defined by rel_level) within + a JSG, keep track of the ranks of retrieved docs from that class. + Order list of docnos in prefs by increasing rank value in the retrieved + docs,if retrieved, and then by docno if not retrieved. + Docid_rank for a docno is the index of docno within that ordered list */ +typedef struct { + float rel_level; /* rel_level of this EC in this JG */ + long num_in_ec; /* number in rel_info file in this ec + (indpendent of results) */ + long *docid_ranks; /* List of docids in ec. + After construction, sorted by increasing + docid_rank numbers. */ +} EC; + +/* Preference array. A square array, num_judgments * num_judgments, where + pref_array[i][j] is 1 iff doc with docid_rank i is preferred to doc with + docid_rank j. + could use bitstring to save more space, but at present not worth the + added complexity. + Given preference array PA there are five areas of importance, divided + by lines i == NJR (where NJR is num_judged_ret), j == NJR, and i == j + NJR + \................|... + .\...............|... + ..\.......A1.....|.A3 + ...\.............|... + ....\............|... + ... + ...A2..........\.|... + ................\|... + NJR _________________|___ + .................|... + ..........A4.....|.A5 + .................|... + + Area A1 is preferences fulfilled, both retrieved. + Area A2 is preferences not fulfilled, both retrieved. + Area A3 is preference implied fulfilled (i retrieved, j not) + Area A4 is preference implied not fulfilled (i not retrieved, j retrieved) + Area A5 is both i and j not retrieved. +*/ +typedef struct { + unsigned char *full_array; + unsigned char **array; + unsigned long num_judged; +} PREFS_ARRAY; +/* Counts array. A summary square array, num_judgments * num_judgments, where + counts_array[i][j] gives the number of JGs preferring i to j as above. + Note number of JGs countaining the same docno must be bounded by + MAX_SHORT */ +typedef struct { + unsigned short *full_array; + unsigned short **array; + unsigned long num_judged; +} COUNTS_ARRAY; + +/* For every judgment group (JG) within a topic, give the preferences for + the JG in one of two forms: either an ordered list of ECs, or a + preference array. See the head comment in form_prefs_counts.c for further + details and implications of the representations */ +typedef struct { + EC *ecs; /* Equivalence classes, ordered by decreasing + rel_level of class. Thus JG.ecs[num_ecs-1] + is the only possible EC of nonrelevant docnos + (those with rel_level = 0.0). */ + long num_ecs; /* num_ecs == 0 means prefs_array being used for + preference info rather than EC */ + + PREFS_ARRAY prefs_array;/* prefs_array[i][j] is 1 iff doc with docid_rank i + is preferred to doc with docid_rank j. + Size num_judged * num_judged where + num_judged is the same for all JGs and is the + total number of distinct docnos involved + with preferences for this topic */ + float *rel_array; /* Size num_judged. A rel_level value for each + doc in the judgements. There may be multiple + different values for a given docno, only the + last encountered is used. The restriction + that values for a docno must be either all + non-zero, or all zero, is enforced */ + + /* Prefs between doc A and doc B, fulfilled by results and possible */ + long num_prefs_fulfilled_ret; /* Num prefs in this jg satisfied by + results where A and B both in results */ + long num_prefs_possible_ret; /* Num possible prefs in this jg satisfied + by results, A and B in results */ + long num_prefs_fulfilled_imp; /* Implied num prefs in this jg satisfied + by results where exactly one of A and B + in results */ + long num_prefs_possible_imp; /* Implied num possible prefs in this jg + satisfied by results where exactly one + of A and B in results */ + long num_prefs_possible_notoccur;/* Implied num possible prefs in this jg + not satisfied by results where neither + A nor B is in results */ + + long num_nonrel; /* Number of docs in judgments with + rel_level of 0.0 in this JG */ + long num_nonrel_ret; /* Number of docs retrieved with rel_level + of 0.0 in this JG */ + long num_rel; /* Number of docs in judgments with + rel_level greater than 0.0 in this JG */ + long num_rel_ret; /* Number of docs retrieved with rel_level + greater than 0.0 in this JG */ +} JG; + +/* RESULTS_PREFS contains two structures representing prefs - most measures + will use one or the other. + The first gives a count by judgment group of prefs fulfilled and + possible. It includes the equivalences class info and rel_levels + if measures need to go down that far. This structure does not + directly give information about conflicts or multiple representations + of a preference (as when docno_i and docno_j both appear in multiple JGs). + + The second is an array of counts, size num_judged ** 2. + pref_counts[i,j] gives the number of times docno_i is preferred to docno_j in + judged preferences. If i < j, then it is a preference fulfilled, + if i > j, then a preference was not fulfilled. This structure gives + direct info for handling conflicts, but has no summary info for an + individual JG. +*/ +typedef struct { + long num_jgs; + JG *jgs; + long num_judged; /* Num docs mentioned in trec_prefs */ + long num_judged_ret; /* number of those docs retrieved */ + COUNTS_ARRAY pref_counts; /* Array size num_judged**2 where + counts_array[i][j] gives num of + JG with doc i preferred to doc j + (i and j are internal ids, sorted + by retrieval rank then docno) */ +} RESULTS_PREFS; + + +/* ----------------------------------------------------------------------*/ +/* Procedure prototypes for going from input format REL_INFO and + input format RESULTS to an intermediate form appropriate to the two + input formats that can be more directly used by several measures */ + +/* trec_results and qrels to RES_RELS */ +int te_form_res_rels (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, RES_RELS *res_rels); + +/* trec_results and qrels to RES_RELS */ +int te_form_res_rels_jg (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, RES_RELS_JG *res_rels); + +/* trec_results and prefs (or qrels_prefs) to RESULT_PREFS */ +int form_prefs_counts (const EPI *epi, const REL_INFO *rel_info, + const RESULTS *results, RESULTS_PREFS *results_prefs); + + + +#endif /* TRECFORMATH */ diff --git a/tools/eval/trec_eval.9.0.4/utility_pool.c b/tools/eval/trec_eval.9.0.4/utility_pool.c new file mode 100644 index 0000000000000000000000000000000000000000..c907952cf5442464a00f9be70a208ffe40dce995 --- /dev/null +++ b/tools/eval/trec_eval.9.0.4/utility_pool.c @@ -0,0 +1,55 @@ +/* + Copyright (c) 2008 - Chris Buckley. + + Permission is granted for use and modification of this file for + research, non-commercial purposes. +*/ + +#include "common.h" +#include "sysfunc.h" +#include "trec_eval.h" +#include "functions.h" +#include "trec_format.h" + +/* Utility malloc procedures for handling a malloc'd reusable object list that + may need to be resized. + Procedures take a current pointer, the current bound on the number of + objects in the list, the needed number of objects on the list, and the + size of an object. + The procedures return the current pointer if the needed number is less + than the current bound, otherwise they expand the space (either malloc + or realloc depending on the procedure), resetting the current bound. + It's an error if current_bound is negative, NULL is returned. + Procedures assume that if current bound is 0, the space has not been + allocated at all yet. +*/ + +void * +te_chk_and_malloc (void *ptr, long *current_bound, + const long needed, const size_t size) +{ + if (*current_bound < 0) + return (NULL); + if (needed <= *current_bound) + return (ptr); + if (*current_bound > 0) + Free (ptr); + *current_bound += needed; + return ((void *) malloc (*current_bound * size)); +} + +void * +te_chk_and_realloc (void *ptr, long *current_bound, + const long needed, const int size) +{ + if (*current_bound < 0) + return (NULL); + if (needed <= *current_bound) + return (ptr); + if (*current_bound == 0) { + *current_bound += needed; + return ((void *) malloc (*current_bound * size)); + } + *current_bound += needed; + return ((void *) realloc (ptr, *current_bound * size)); +} diff --git a/tools/scripts/dedup.py b/tools/scripts/dedup.py new file mode 100644 index 0000000000000000000000000000000000000000..3560a143201a2287befe55a0ca25a74de84f5bc6 --- /dev/null +++ b/tools/scripts/dedup.py @@ -0,0 +1,34 @@ +# dedup script shared by Sean MacAvaney on TREC Slack workspace, 2022/10/28 + +# usage: python dedup.py msmarco-v2-passage-neardupes.txt.gz myrun1 myrun2 ... +# outputs myrun1.dedup, myrun2.dedup, etc. + +from collections import Counter +import argparse +import gzip + +parser = argparse.ArgumentParser() +parser.add_argument('dupefile') +parser.add_argument('runs', nargs='+') +args = parser.parse_args() + +equiv_map = {} +for line in gzip.open(args.dupefile, 'rt'): + cols = line.split() + class_id, doc_id = cols[0], cols[1] + if class_id != doc_id: + equiv_map[doc_id] = class_id + +for run in args.runs: + classes = set() + qid_count = Counter() + with open(run, 'rt') as fin, open(run+'.dedup', 'wt') as fout: + for line in fin: + qid, q0, did, rank, score, runid = line.split() + class_id = equiv_map.get(did, did) + key = (qid, class_id) + if key not in classes: + classes.add(key) + new_rank = str(qid_count[qid]) + fout.write(' '.join([qid, q0, class_id, new_rank, score, runid]) + '\n') + qid_count[qid] += 1 diff --git a/tools/scripts/filter_run.py b/tools/scripts/filter_run.py new file mode 100644 index 0000000000000000000000000000000000000000..60d49422e66940c7b12b5f87af06aa84522fa47a --- /dev/null +++ b/tools/scripts/filter_run.py @@ -0,0 +1,79 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +"""Filter a TREC run file to retain only docids that appear on a list of valid docids (commonly known as a whitelist). +The whitelist is a file with a docid on each line.""" + +import argparse +from collections import defaultdict + + +def read_file(file): + docids = set() + with open(file) as f: + for line in f: + cols = line.split() + if len(cols) > 0: + docids.add(cols[0]) + return docids + + +def main(): + parser = argparse.ArgumentParser(description=__doc__, + formatter_class=lambda prog: argparse.HelpFormatter(prog, width=100)) + parser.add_argument('--whitelist', metavar='FILE', type=str, help='Whitelist (one docid per line).', required=True) + parser.add_argument('--input', metavar='FILE', type=str, help='Input run.', required=True) + parser.add_argument('--output', metavar='FILE', type=str, help='Output run.', required=True) + parser.add_argument('--runtag', metavar='STRING', type=str, default=None, help='Runtag.') + parser.add_argument('--k', metavar='NUM', type=int, default=1000, help='Number of hits to retain per topic.') + args = parser.parse_args() + + docids = read_file(args.whitelist) + print(f'Read {len(docids)} docids from {args.whitelist}') + counts = defaultdict(int) + + prev_score = None + check_score = True + with open(args.output, 'w') as output_f: + with open(args.input) as input_f: + for line in input_f: + cols = line.split() + qid = cols[0] + docid = cols[2] + score = float(cols[4]) + tag = cols[5] + + if args.runtag: + tag = args.runtag + + if counts[qid] >= args.k: + if check_score: + if score <= prev_score: + print(f'Warning: scores of {qid} do not strictly decrease at {docid}') + check_score = False + continue + else: + continue + + if docid in docids: + counts[qid] += 1 + prev_score = float(cols[4]) + check_score = True + output_f.write(f'{qid} Q0 {docid} {counts[qid]} {score} {tag}\n') + + +if __name__ == '__main__': + main() diff --git a/tools/scripts/filter_run_with_qrels.py b/tools/scripts/filter_run_with_qrels.py new file mode 100644 index 0000000000000000000000000000000000000000..49f1d568eb4ed2790863fcc0337fe40a52fdb3e1 --- /dev/null +++ b/tools/scripts/filter_run_with_qrels.py @@ -0,0 +1,95 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +"""Filter a TREC run file to either retain only docids that are judged (--retain) or throw away documents that are +judged (--discard).""" + +import argparse +import sys +from collections import defaultdict + + +def load_qrels(qrels): + judged_docids = defaultdict(set) + with open(qrels) as f: + for line in f: + cols = line.split() + qid = cols[0] + docid = cols[2] + judged_docids[qid].add(docid) + return judged_docids + + +def main(): + parser = argparse.ArgumentParser(description=__doc__, + formatter_class=lambda prog: argparse.HelpFormatter(prog, width=100)) + parser.add_argument('--qrels', metavar='FILE', type=str, help='Qrels.', required=True) + parser.add_argument('--input', metavar='FILE', type=str, help='Input run.', required=True) + parser.add_argument('--output', metavar='FILE', type=str, help='Output run.', required=True) + parser.add_argument('--runtag', metavar='STRING', type=str, default=None, help='Runtag.') + parser.add_argument('--k', metavar='NUM', type=int, default=1000, help='Number of hits to retain per topic.') + parser.add_argument('--retain', action='store_true', + help="Retain judged docids, i.e., throw away all unjudged documents.") + parser.add_argument('--discard', action='store_true', + help="Discard judged docids, i.e., keep only documents that are unjudged.") + args = parser.parse_args() + + if (args.retain and args.discard) or (not args.retain and not args.discard): + print('Must specific either one of --retain or --discard.') + return + + judged_docids = load_qrels(args.qrels) + counts = defaultdict(int) + + prev_score = None + check_score = True + with open(args.output, 'w') as output_f: + with open(args.input) as input_f: + for line in input_f: + cols = line.split() + qid = cols[0] + docid = cols[2] + score = float(cols[4]) + tag = cols[5] + + if args.runtag: + tag = args.runtag + + if counts[qid] >= args.k: + if check_score: + if score <= prev_score: + print(f'Warning: scores of {qid} do not strictly decrease at {docid}') + check_score = False + continue + else: + continue + + if args.discard: + if qid not in judged_docids or docid not in judged_docids[qid]: + counts[qid] += 1 + prev_score = float(cols[4]) + check_score = True + output_f.write(f'{qid} Q0 {docid} {counts[qid]} {score} {tag}\n') + elif args.retain: + if qid in judged_docids and docid in judged_docids[qid]: + counts[qid] += 1 + prev_score = float(cols[4]) + check_score = True + output_f.write(f'{qid} Q0 {docid} {counts[qid]} {score} {tag}\n') + + +if __name__ == '__main__': + main() diff --git a/tools/scripts/msmarco/augment_collection_with_predictions.py b/tools/scripts/msmarco/augment_collection_with_predictions.py new file mode 100644 index 0000000000000000000000000000000000000000..adbb40c768d1470e1e4aa1224ac2ca7de707982e --- /dev/null +++ b/tools/scripts/msmarco/augment_collection_with_predictions.py @@ -0,0 +1,77 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import json +import os +import argparse + + +def convert_collection(args): + print('Converting collection...') + + predictions_file = open(args.predictions) + file_index = 0 + with open(args.collection_path) as f: + for i, line in enumerate(f): + # Start writting to a new file whent the current one reached its maximum capacity. + if i % args.max_docs_per_file == 0: + if i > 0: + output_jsonl_file.close() + output_path = os.path.join(args.output_folder, 'docs{:02d}.json'.format(file_index)) + output_jsonl_file = open(output_path, 'w') + file_index += 1 + + doc_id, doc_text = line.rstrip().split('\t') + + # Reads from predictions and merge then to the original doc text. + pred_text = [] + for _ in range(args.stride): + pred_text.append(predictions_file.readline().strip()) + pred_text = ' '.join(pred_text) + pred_text = pred_text.replace(' / ', ' ') + text = (doc_text + ' ') * args.original_copies + pred_text + + output_dict = {'id': doc_id, 'contents': text} + output_jsonl_file.write(json.dumps(output_dict) + '\n') + + if i % 100000 == 0: + print('Converted {} docs in {} files'.format(i, file_index)) + + output_jsonl_file.close() + predictions_file.close() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Augments MS MARCO TSV collection with predicted queries ' + + 'to create an expanded Anserini jsonl collection.') + parser.add_argument('--collection-path', required=True, help='MS MARCO tsv collection.') + parser.add_argument('--predictions', required=True, help='Query predictions file.') + parser.add_argument('--output-folder', required=True, help='Qutput folder for jsonl collection.') + parser.add_argument('--stride', required=True, type=int, + help='Every [s] lines in predictions file is associated with each document.') + parser.add_argument('--max-docs-per-file', default=1000000, type=int, + help='Maximum number of documents in each jsonl file.') + parser.add_argument('--original-copies', default=1, type=int, + help='Number of copies of the original document to duplicate.') + + args = parser.parse_args() + + if not os.path.exists(args.output_folder): + os.makedirs(args.output_folder) + + convert_collection(args) + print('Done!') diff --git a/tools/scripts/msmarco/convert_collection_to_jsonl.py b/tools/scripts/msmarco/convert_collection_to_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..c3c9c262f2c8bfcecac2b2d38d0670c99c1570ad --- /dev/null +++ b/tools/scripts/msmarco/convert_collection_to_jsonl.py @@ -0,0 +1,57 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import json +import os +import argparse + + +def convert_collection(args): + print('Converting collection...') + file_index = 0 + with open(args.collection_path, encoding='utf-8') as f: + for i, line in enumerate(f): + doc_id, doc_text = line.rstrip().split('\t') + + if i % args.max_docs_per_file == 0: + if i > 0: + output_jsonl_file.close() + output_path = os.path.join(args.output_folder, 'docs{:02d}.json'.format(file_index)) + output_jsonl_file = open(output_path, 'w', encoding='utf-8', newline='\n') + file_index += 1 + output_dict = {'id': doc_id, 'contents': doc_text} + output_jsonl_file.write(json.dumps(output_dict) + '\n') + + if i % 100000 == 0: + print(f'Converted {i:,} docs, writing into file {file_index}') + + output_jsonl_file.close() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert MSMARCO tsv passage collection into jsonl files for Anserini.') + parser.add_argument('--collection-path', required=True, help='Path to MS MARCO tsv collection.') + parser.add_argument('--output-folder', required=True, help='Output folder.') + parser.add_argument('--max-docs-per-file', default=1000000, type=int, + help='Maximum number of documents in each jsonl file.') + + args = parser.parse_args() + + if not os.path.exists(args.output_folder): + os.makedirs(args.output_folder) + + convert_collection(args) + print('Done!') diff --git a/tools/scripts/msmarco/convert_doc_collection_to_jsonl.py b/tools/scripts/msmarco/convert_doc_collection_to_jsonl.py new file mode 100644 index 0000000000000000000000000000000000000000..63b617e798831d3754ff30d38c92f2f683c81d12 --- /dev/null +++ b/tools/scripts/msmarco/convert_doc_collection_to_jsonl.py @@ -0,0 +1,57 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import json +import os +import argparse + + +def convert_collection(args): + print('Converting collection...') + file_index = 0 + with open(args.collection_path, encoding='utf-8') as f: + for i, line in enumerate(f): + id, url, title, body = line.split('\t') + + if i % args.max_docs_per_file == 0: + if i > 0: + output_jsonl_file.close() + output_path = os.path.join(args.output_folder, 'docs{:02d}.json'.format(file_index)) + output_jsonl_file = open(output_path, 'w', encoding='utf-8', newline='\n') + file_index += 1 + output_dict = {'id': id, 'url': url, 'title': title, 'contents': body} + output_jsonl_file.write(json.dumps(output_dict) + '\n') + + if i % 100000 == 0: + print(f'Converted {i:,} docs, writing into file {file_index}') + + output_jsonl_file.close() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert MSMARCO tsv document collection into jsonl files for Anserini.') + parser.add_argument('--collection-path', required=True, help='Path to MS MARCO tsv collection.') + parser.add_argument('--output-folder', required=True, help='Output folder.') + parser.add_argument('--max-docs-per-file', default=1000000, type=int, + help='Maximum number of documents in each jsonl file.') + + args = parser.parse_args() + + if not os.path.exists(args.output_folder): + os.makedirs(args.output_folder) + + convert_collection(args) + print('Done!') diff --git a/tools/scripts/msmarco/convert_msmarco_to_trec_qrels.py b/tools/scripts/msmarco/convert_msmarco_to_trec_qrels.py new file mode 100644 index 0000000000000000000000000000000000000000..ce29608aeb8b5dbe7b11ff40ee3ef9b2e4c71793 --- /dev/null +++ b/tools/scripts/msmarco/convert_msmarco_to_trec_qrels.py @@ -0,0 +1,31 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import argparse + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert MS MARCO qrels to TREC qrels.') + parser.add_argument('--input', required=True, default='', help='Input MS MARCO qrels file.') + parser.add_argument('--output', required=True, default='', help='Output TREC qrels file.') + + args = parser.parse_args() + + with open(args.output, 'w') as fout: + for line in open(args.input): + fout.write(line.replace('\t', ' ')) + + print('Done!') diff --git a/tools/scripts/msmarco/convert_msmarco_to_trec_run.py b/tools/scripts/msmarco/convert_msmarco_to_trec_run.py new file mode 100644 index 0000000000000000000000000000000000000000..8a24ee214f39c5955ed40b5e73aca9bb1b9fa155 --- /dev/null +++ b/tools/scripts/msmarco/convert_msmarco_to_trec_run.py @@ -0,0 +1,34 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import argparse + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Convert an MS MARCO run file to a TREC run file.') + parser.add_argument('--input', required=True, default='', help='Input MS MARCO run file.') + parser.add_argument('--output', required=True, default='', help='Output TREC run file.') + + args = parser.parse_args() + + with open(args.output, 'w') as fout: + for line in open(args.input): + query_id, doc_id, rank = line.strip().split('\t') + score = 1.0 / int(rank) + fout.write('{} Q0 {} {} {} anserini\n'.format( + query_id, doc_id, rank, score)) + + print('Done!') diff --git a/tools/scripts/msmarco/convert_trec_to_msmarco_run.py b/tools/scripts/msmarco/convert_trec_to_msmarco_run.py new file mode 100644 index 0000000000000000000000000000000000000000..144401a28fb8ae8f38c944a513e298b95f2839f6 --- /dev/null +++ b/tools/scripts/msmarco/convert_trec_to_msmarco_run.py @@ -0,0 +1,80 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import argparse +import logging + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description='Converts a TREC run file to a MS MARCO-formatted run file.') + parser.add_argument('--input', required=True, default='', help='TREC-formatted run file') + parser.add_argument('--output', required=True, default='', + help='output MS MARCO-formatted run file') + parser.add_argument('--k', type=int, default=-1, + help='Number of hits to write to the run file. Write all hits if -1.') + parser.add_argument('--quiet', action='store_true', help="Suppresses all warnings.") + + args = parser.parse_args() + + with open(args.output, 'w') as fout: + last_score = None + last_query_id = '' + last_doc_id = '' + n_docs = 0 + for line in open(args.input): + query_id, _, doc_id, rank, score, _ = line.strip().split(' ') + rank = int(rank) + score = float(score) + if query_id != last_query_id: + last_score = None + n_docs = 0 + + if last_score is not None: + if score == last_score and not args.quiet: + logging.warning( + f'Score of {score} for doc id {doc_id} is the same of doc id ' + f'{last_doc_id} for query id {query_id}. This will likely impact metrics ' + ' negatively.') + + if rank == last_rank and not args.quiet: + logging.warning( + f'Rank of {rank} for doc id {doc_id} is the same of doc id ' + f'{last_doc_id} for query id {query_id}. This will likely impact metrics ' + ' negatively.') + + if score > last_score and not args.quiet: + logging.warning( + f'Score of {score} for current doc id {doc_id} is greater than the score ' + f'{last_score} of the previous doc id {last_doc_id} for query id ' + f'{query_id}. This will likely impact metrics negatively.') + + if rank < last_rank and not args.quiet: + logging.warning( + f'Rank of {rank} for current doc id {doc_id} is lower than the rank ' + f'{last_rank} of the previous doc id {last_doc_id} for query id ' + f'{query_id}. This will likely impact metrics negatively.') + + if args.k == -1 or n_docs < args.k: + fout.write('{}\t{}\t{}\n'.format(query_id, doc_id, rank)) + + last_query_id = query_id + last_doc_id = doc_id + last_score = score + last_rank = rank + n_docs += 1 + + logging.info(f'Done! Wrote output file to {args.output}') diff --git a/tools/scripts/msmarco/filter_queries.py b/tools/scripts/msmarco/filter_queries.py new file mode 100644 index 0000000000000000000000000000000000000000..34d930b4684965564d30f384d316a5d32d2dc52d --- /dev/null +++ b/tools/scripts/msmarco/filter_queries.py @@ -0,0 +1,40 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +import argparse + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Keeps only queries in a qrels file.') + parser.add_argument('--qrels', required=True, help='MS MARCO tsv qrels file.') + parser.add_argument('--queries', required=True, help='Queries file.') + parser.add_argument('--output', required=True, help='Output queries file.') + + args = parser.parse_args() + + qrels = set() + with open(args.qrels) as f: + for line in f: + query_id, _, _, _ = line.rstrip().split('\t') + qrels.add(query_id) + + with open(args.output, 'w', encoding='utf-8', newline='\n') as fout: + with open(args.queries, encoding='utf-8') as f: + for line in f: + query_id, _ = line.rstrip().split('\t') + if query_id in qrels: + fout.write(line) + + print('Done!') diff --git a/tools/scripts/msmarco/msmarco_doc_eval.py b/tools/scripts/msmarco/msmarco_doc_eval.py new file mode 100644 index 0000000000000000000000000000000000000000..6ac4783e09e67d08d2145895dd2493188c06cf33 --- /dev/null +++ b/tools/scripts/msmarco/msmarco_doc_eval.py @@ -0,0 +1,235 @@ +""" +Official evaluation script for the MS MARCO Document Ranking task. + +Authors: Daniel Campos, Rutger van Haasteren, Jimmy Lin +""" + +import argparse +import re +import os + +from collections import Counter + +MaxMRRRank = 100 + + +def autoopen(filename, mode="rt"): + """ + A drop-in for open() that applies automatic compression for .gz and .bz2 file extensions + """ + if not 't' in mode and not 'b' in mode: + mode=mode+'t' + if filename.endswith(".gz"): + import gzip + return gzip.open(filename, mode) + elif filename.endswith(".bz2"): + import bz2 + return bz2.open(filename, mode) + return open(filename, mode) + + +def load_reference_from_stream(f): + """Load Reference reference relevant document + Args:f (stream): stream to load. + Returns:qids_to_relevant_documentids (dict): dictionary mapping from query_id (int) to relevant document (list of ints). + """ + qids_to_relevant_documentids = {} + for l in f: + try: + l = re.split('[\t\s]', l.strip()) + qid = int(l[0]) + if qid in qids_to_relevant_documentids: + pass + else: + qids_to_relevant_documentids[qid] = [] + qids_to_relevant_documentids[qid].append(l[2]) + except: + raise IOError('\"%s\" is not valid format' % l) + return qids_to_relevant_documentids + + +def load_reference(path_to_reference): + """Load Reference reference relevant document + Args:path_to_reference (str): path to a file to load. + Returns:qids_to_relevant_documentids (dict): dictionary mapping from query_id (int) to relevant documents (list of ints). + """ + with autoopen(path_to_reference,'r') as f: + qids_to_relevant_documentids = load_reference_from_stream(f) + return qids_to_relevant_documentids + + +def validate_candidate_has_enough_ranking(qid_to_ranked_candidate_documents): + for qid in qid_to_ranked_candidate_documents: + if len(qid_to_ranked_candidate_documents[qid]) > MaxMRRRank: + print('Too many documents ranked. Please Provide top 100 documents for qid:{}'.format(qid)) + + +def load_candidate_from_stream(f): + """Load candidate data from a stream. + Args:f (stream): stream to load. + Returns:qid_to_ranked_candidate_documents (dict): dictionary mapping from query_id (int) to a list of 1000 document ids(int) ranked by relevance and importance + """ + qid_to_ranked_candidate_documents = {} + for l in f: + try: + l = l.strip().split('\t') + qid = int(l[0]) + did = l[1] + rank = int(l[2]) + if qid in qid_to_ranked_candidate_documents: + pass + else: + # By default, all PIDs in the list of 1000 are 0. Only override those that are given + qid_to_ranked_candidate_documents[qid] = [] + qid_to_ranked_candidate_documents[qid].append((did,rank)) + except: + raise IOError('\"%s\" is not valid format' % l) + validate_candidate_has_enough_ranking(qid_to_ranked_candidate_documents) + print('Quantity of Documents ranked for each query is as expected. Evaluating') + return {qid: sorted(qid_to_ranked_candidate_documents[qid], key=lambda x:(x[1], x[0]), reverse=False) for qid in qid_to_ranked_candidate_documents} + + +def load_candidate(path_to_candidate): + """Load candidate data from a file. + Args:path_to_candidate (str): path to file to load. + Returns:qid_to_ranked_candidate_documents (dict): dictionary mapping from query_id (int) to a list of 1000 document ids(int) ranked by relevance and importance + """ + + with autoopen(path_to_candidate,'r') as f: + qid_to_ranked_candidate_documents = load_candidate_from_stream(f) + return qid_to_ranked_candidate_documents + + +def quality_checks_qids(qids_to_relevant_documentids, qids_to_ranked_candidate_documents): + """Perform quality checks on the dictionaries + + Args: + p_qids_to_relevant_documentids (dict): dictionary of query-document mapping + Dict as read in with load_reference or load_reference_from_stream + p_qids_to_ranked_candidate_documents (dict): dictionary of query-document candidates + Returns: + bool,str: Boolean whether allowed, message to be shown in case of a problem + """ + message = '' + allowed = True + + # Create sets of the QIDs for the submitted and reference queries + candidate_set = set(qids_to_ranked_candidate_documents.keys()) + ref_set = set(qids_to_relevant_documentids.keys()) + + # Check that we do not have multiple documents per query + for qid in qids_to_ranked_candidate_documents: + # Remove all zeros from the candidates + duplicate_pids = set([item for item, count in Counter(qids_to_ranked_candidate_documents[qid]).items() if count > 1]) + + if len(duplicate_pids-set([0])) > 0: + message = "Cannot rank a document multiple times for a single query. QID={qid}, PID={pid}".format( + qid=qid, pid=list(duplicate_pids)[0]) + allowed = False + + return allowed, message + + +def compute_metrics(qids_to_relevant_documentids, qids_to_ranked_candidate_documents, exclude_qids): + """Compute MRR metric + Args: + p_qids_to_relevant_documentids (dict): dictionary of query-document mapping + Dict as read in with load_reference or load_reference_from_stream + p_qids_to_ranked_candidate_documents (dict): dictionary of query-document candidates + Returns: + dict: dictionary of metrics {'MRR': } + """ + all_scores = {} + MRR = 0 + qids_with_relevant_documents = 0 + ranking = [] + + for qid in qids_to_ranked_candidate_documents: + if qid in qids_to_relevant_documentids and qid not in exclude_qids: + ranking.append(0) + target_pid = qids_to_relevant_documentids[qid] + candidate_pid = qids_to_ranked_candidate_documents[qid] + for i in range(0,len(candidate_pid)): + if candidate_pid[i][0] in target_pid: + MRR += 1/(i + 1) + ranking.pop() + ranking.append(i+1) + break + if len(ranking) == 0: + raise IOError("No matching QIDs found. Are you sure you are scoring the evaluation set?") + + MRR = MRR/len(qids_to_relevant_documentids) + all_scores['MRR @100'] = MRR + all_scores['QueriesRanked'] = len(set(qids_to_ranked_candidate_documents)-exclude_qids) + return all_scores + + +def compute_metrics_from_files(path_to_reference, path_to_candidate, exclude_qids, perform_checks=True): + """Compute MRR metric + Args: + p_path_to_reference_file (str): path to reference file. + Reference file should contain lines in the following format: + QUERYID\tdocumentID + Where documentID is a relevant document for a query. Note QUERYID can repeat on different lines with different documentIDs + p_path_to_candidate_file (str): path to candidate file. + Candidate file sould contain lines in the following format: + QUERYID\tdocumentID1\tRank + If a user wishes to use the TREC format please run the script with a -t flag at the end. If this flag is used the expected format is + QUERYID\tITER\tDOCNO\tRANK\tSIM\tRUNID + Where the values are separated by tabs and ranked in order of relevance + Returns: + dict: dictionary of metrics {'MRR': } + """ + qids_to_relevant_documentids = load_reference(path_to_reference) + qids_to_ranked_candidate_documents = load_candidate(path_to_candidate) + if perform_checks: + allowed, message = quality_checks_qids(qids_to_relevant_documentids, qids_to_ranked_candidate_documents) + if message != '': print(message) + + return compute_metrics(qids_to_relevant_documentids, qids_to_ranked_candidate_documents, exclude_qids) + + +def load_exclude(path_to_exclude_folder): + """Load QIDS for queries to exclude + Args: + path_to_exclude_folder (str): path to folder where exclude files are located + + Returns: + set: a set with all qid's to exclude + """ + qids = set() + # List all files in a directory using os.listdir + for a_file in os.listdir(path_to_exclude_folder): + if os.path.isfile(os.path.join(path_to_exclude_folder, a_file)): + with autoopen(os.path.join(path_to_exclude_folder, a_file), 'r') as f: + f.readline() #header + for l in f: + qids.add(int(l.split('\t')[0])) + print("{} excluded qids loaded".format(len(qids))) + return qids + + +def main(args): + # Load optional excludes. + exclude_qids = set() + if args.exclude: + exclude_qids = load_exclude(args.exclude) + + # Load run and judgments. + path_to_candidate = args.run + path_to_reference = args.judgments + + metrics = compute_metrics_from_files(path_to_reference, path_to_candidate, exclude_qids) + print('#####################') + for metric in sorted(metrics): + print('{}: {}'.format(metric, metrics[metric])) + print('#####################') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Official evaluation script for the MS MARCO Document Ranking task.') + parser.add_argument('--run', type=str, metavar='file', required=True, help='Run file.') + parser.add_argument('--judgments', type=str, metavar='file', required=True, help='Judgments.') + parser.add_argument('--exclude', type=str, metavar='file', required=False, help='Exclude directory.') + + main(parser.parse_args()) diff --git a/tools/scripts/msmarco/msmarco_passage_eval.py b/tools/scripts/msmarco/msmarco_passage_eval.py new file mode 100644 index 0000000000000000000000000000000000000000..4ed0eb6458167d5a47d94d908170d352f862fa93 --- /dev/null +++ b/tools/scripts/msmarco/msmarco_passage_eval.py @@ -0,0 +1,185 @@ +""" +This module computes evaluation metrics for MSMARCO dataset on the ranking task. +Command line: +python msmarco_eval_ranking.py + +Creation Date : 06/12/2018 +Last Modified : 1/21/2019 +Authors : Daniel Campos , Rutger van Haasteren +""" +import re +import sys +import statistics + +from collections import Counter + +MaxMRRRank = 10 + +def load_reference_from_stream(f): + """Load Reference reference relevant passages + Args:f (stream): stream to load. + Returns:qids_to_relevant_passageids (dict): dictionary mapping from query_id (int) to relevant passages (list of ints). + """ + qids_to_relevant_passageids = {} + for l in f: + try: + l = re.split('[\t\s]', l.strip()) + qid = int(l[0]) + if qid in qids_to_relevant_passageids: + pass + else: + qids_to_relevant_passageids[qid] = [] + qids_to_relevant_passageids[qid].append(int(l[2])) + except: + raise IOError('\"%s\" is not valid format' % l) + return qids_to_relevant_passageids + +def load_reference(path_to_reference): + """Load Reference reference relevant passages + Args:path_to_reference (str): path to a file to load. + Returns:qids_to_relevant_passageids (dict): dictionary mapping from query_id (int) to relevant passages (list of ints). + """ + with open(path_to_reference,'r') as f: + qids_to_relevant_passageids = load_reference_from_stream(f) + return qids_to_relevant_passageids + +def load_candidate_from_stream(f): + """Load candidate data from a stream. + Args:f (stream): stream to load. + Returns:qid_to_ranked_candidate_passages (dict): dictionary mapping from query_id (int) to a list of 1000 passage ids(int) ranked by relevance and importance + """ + qid_to_ranked_candidate_passages = {} + for l in f: + try: + l = l.strip().split('\t') + qid = int(l[0]) + pid = int(l[1]) + rank = int(l[2]) + if qid in qid_to_ranked_candidate_passages: + pass + else: + # By default, all PIDs in the list of 1000 are 0. Only override those that are given + tmp = [0] * 1000 + qid_to_ranked_candidate_passages[qid] = tmp + qid_to_ranked_candidate_passages[qid][rank-1]=pid + except: + raise IOError('\"%s\" is not valid format' % l) + return qid_to_ranked_candidate_passages + +def load_candidate(path_to_candidate): + """Load candidate data from a file. + Args:path_to_candidate (str): path to file to load. + Returns:qid_to_ranked_candidate_passages (dict): dictionary mapping from query_id (int) to a list of 1000 passage ids(int) ranked by relevance and importance + """ + + with open(path_to_candidate,'r') as f: + qid_to_ranked_candidate_passages = load_candidate_from_stream(f) + return qid_to_ranked_candidate_passages + +def quality_checks_qids(qids_to_relevant_passageids, qids_to_ranked_candidate_passages): + """Perform quality checks on the dictionaries + + Args: + p_qids_to_relevant_passageids (dict): dictionary of query-passage mapping + Dict as read in with load_reference or load_reference_from_stream + p_qids_to_ranked_candidate_passages (dict): dictionary of query-passage candidates + Returns: + bool,str: Boolean whether allowed, message to be shown in case of a problem + """ + message = '' + allowed = True + + # Create sets of the QIDs for the submitted and reference queries + candidate_set = set(qids_to_ranked_candidate_passages.keys()) + ref_set = set(qids_to_relevant_passageids.keys()) + + # Check that we do not have multiple passages per query + for qid in qids_to_ranked_candidate_passages: + # Remove all zeros from the candidates + duplicate_pids = set([item for item, count in Counter(qids_to_ranked_candidate_passages[qid]).items() if count > 1]) + + if len(duplicate_pids-set([0])) > 0: + message = "Cannot rank a passage multiple times for a single query. QID={qid}, PID={pid}".format( + qid=qid, pid=list(duplicate_pids)[0]) + allowed = False + + return allowed, message + +def compute_metrics(qids_to_relevant_passageids, qids_to_ranked_candidate_passages): + """Compute MRR metric + Args: + p_qids_to_relevant_passageids (dict): dictionary of query-passage mapping + Dict as read in with load_reference or load_reference_from_stream + p_qids_to_ranked_candidate_passages (dict): dictionary of query-passage candidates + Returns: + dict: dictionary of metrics {'MRR': } + """ + all_scores = {} + MRR = 0 + qids_with_relevant_passages = 0 + ranking = [] + for qid in qids_to_ranked_candidate_passages: + if qid in qids_to_relevant_passageids: + ranking.append(0) + target_pid = qids_to_relevant_passageids[qid] + candidate_pid = qids_to_ranked_candidate_passages[qid] + for i in range(0,MaxMRRRank): + if candidate_pid[i] in target_pid: + MRR += 1/(i + 1) + ranking.pop() + ranking.append(i+1) + break + if len(ranking) == 0: + raise IOError("No matching QIDs found. Are you sure you are scoring the evaluation set?") + + MRR = MRR/len(qids_to_relevant_passageids) + all_scores['MRR @10'] = MRR + all_scores['QueriesRanked'] = len(qids_to_ranked_candidate_passages) + return all_scores + +def compute_metrics_from_files(path_to_reference, path_to_candidate, perform_checks=True): + """Compute MRR metric + Args: + p_path_to_reference_file (str): path to reference file. + Reference file should contain lines in the following format: + QUERYID\tPASSAGEID + Where PASSAGEID is a relevant passage for a query. Note QUERYID can repeat on different lines with different PASSAGEIDs + p_path_to_candidate_file (str): path to candidate file. + Candidate file sould contain lines in the following format: + QUERYID\tPASSAGEID1\tRank + If a user wishes to use the TREC format please run the script with a -t flag at the end. If this flag is used the expected format is + QUERYID\tITER\tDOCNO\tRANK\tSIM\tRUNID + Where the values are separated by tabs and ranked in order of relevance + Returns: + dict: dictionary of metrics {'MRR': } + """ + + qids_to_relevant_passageids = load_reference(path_to_reference) + qids_to_ranked_candidate_passages = load_candidate(path_to_candidate) + if perform_checks: + allowed, message = quality_checks_qids(qids_to_relevant_passageids, qids_to_ranked_candidate_passages) + if message != '': print(message) + + return compute_metrics(qids_to_relevant_passageids, qids_to_ranked_candidate_passages) + +def main(): + """Command line: + python msmarco_eval_ranking.py + """ + + if len(sys.argv) == 3: + path_to_reference = sys.argv[1] + path_to_candidate = sys.argv[2] + metrics = compute_metrics_from_files(path_to_reference, path_to_candidate) + print('#####################') + for metric in sorted(metrics): + print('{}: {}'.format(metric, metrics[metric])) + print('#####################') + + else: + print('Usage: msmarco_eval_ranking.py ') + exit() + +if __name__ == '__main__': + main() + diff --git a/tools/scripts/msmarco/retrieve.py b/tools/scripts/msmarco/retrieve.py new file mode 100644 index 0000000000000000000000000000000000000000..966d011764fc0855444b816f688d245a00aee835 --- /dev/null +++ b/tools/scripts/msmarco/retrieve.py @@ -0,0 +1,96 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +# IMPORTANT NOTE: As of January 2021, this script is *DEFUNCT*. +# That is, you *SHOULDN'T* be using it anymore. +# For "standard" batch retrieval runs on MS MARCO, use 'python -m pyserini.search ...'. + +import sys +import argparse +import time + +# We're going to explicitly use a local installation of Pyserini (as opposed to a pip-installed one). +# Comment these lines out to use a pip-installed one instead. +sys.path.insert(0, './') +sys.path.insert(0, '../pyserini/') + +from pyserini.search.lucene import LuceneSearcher + + +if __name__ == '__main__': + print(f'WARNING: this script is defunct. Use python -m pyserini.search.lucene instead.') + + parser = argparse.ArgumentParser(description='Retrieve MS MARCO Passages.') + parser.add_argument('--queries', required=True, default='', help='Queries file.') + parser.add_argument('--output', required=True, default='', help='Output run file.') + parser.add_argument('--index', required=True, default='', help='Index path.') + parser.add_argument('--hits', default=10, type=int, help='Number of hits to retrieve.') + parser.add_argument('--k1', default=0.82, type=float, help='BM25 k1 parameter.') + parser.add_argument('--b', default=0.68, type=float, help='BM25 b parameter.') + # See our MS MARCO documentation to understand how these parameter values were tuned. + parser.add_argument('--rm3', action='store_true', default=False, help='Use RM3.') + parser.add_argument('--fbTerms', default=10, type=int, help='RM3: number of expansion terms.') + parser.add_argument('--fbDocs', default=10, type=int, help='RM3: number of documents.') + parser.add_argument('--originalQueryWeight', default=0.5, type=float, help='RM3: weight of original query.') + parser.add_argument('--threads', default=1, type=int, help='Maximum number of threads.') + + args = parser.parse_args() + + total_start_time = time.time() + + searcher = LuceneSearcher(args.index) + searcher.set_bm25(args.k1, args.b) + print(f'Initializing BM25, setting k1={args.k1} and b={args.b}', flush=True) + if args.rm3: + searcher.set_rm3(args.fbTerms, args.fbDocs, args.originalQueryWeight) + print(f'Initializing RM3, setting fbTerms={args.fbTerms}, fbDocs={args.fbDocs}, ' + + f' and originalQueryWeight={args.originalQueryWeight}', flush=True) + + if args.threads == 1: + + with open(args.output, 'w') as fout: + start_time = time.time() + for line_number, line in enumerate(open(args.queries, 'r', encoding='utf8')): + qid, query = line.strip().split('\t') + hits = searcher.search(query, args.hits) + if line_number % 100 == 0: + time_per_query = (time.time() - start_time) / (line_number + 1) + print(f'Retrieving query {line_number} ({time_per_query:0.3f} s/query)', flush=True) + for rank in range(len(hits)): + docno = hits[rank].docid + fout.write('{}\t{}\t{}\n'.format(qid, docno, rank + 1)) + else: + qids = [] + queries = [] + result_dict = {} + + for line_number, line in enumerate(open(args.queries, 'r', encoding='utf8')): + qid, query = line.strip().split('\t') + qids.append(qid) + queries.append(query) + + results = searcher.batch_search(queries, qids, args.hits, args.threads) + + with open(args.output, 'w') as fout: + for qid in qids: + hits = results.get(qid) + for rank in range(len(hits)): + docno = hits[rank].docid + fout.write(f'{qid}\t{docno}\t{rank+1}\n') + + total_time = (time.time() - total_start_time) + print(f'Total retrieval time: {total_time:0.3f} s') + print('Done!') diff --git a/tools/scripts/msmarco/tune_bm25.py b/tools/scripts/msmarco/tune_bm25.py new file mode 100644 index 0000000000000000000000000000000000000000..183444a6f8b25c30bb76d119b6166e83c592809a --- /dev/null +++ b/tools/scripts/msmarco/tune_bm25.py @@ -0,0 +1,92 @@ +# +# Pyserini: Python interface to the Anserini IR toolkit built on Lucene +# +# 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. +# + +# Simple script for tuning BM25 parameters (k1 and b) for MS MARCO + +import argparse +import os +import re +import subprocess + +parser = argparse.ArgumentParser(description='Tunes BM25 parameters for MS MARCO Passages') +parser.add_argument('--base-directory', required=True, help='base directory for storing runs') +parser.add_argument('--index', required=True, help='index to use') +parser.add_argument('--queries', required=True, help='queries for evaluation') +parser.add_argument('--qrels-trec', required=True, help='qrels for evaluation (TREC format)') +parser.add_argument('--qrels-tsv', required=True, help='qrels for evaluation (MS MARCO format)') + +args = parser.parse_args() + +base_directory = args.base_directory +index = args.index +queries = args.queries +qrels_trec = args.qrels_trec +qrels_tsv = args.qrels_tsv + +if not os.path.exists(base_directory): + os.makedirs(base_directory) + +print('# Settings') +print(f'base directory: {base_directory}') +print(f'index: {index}') +print(f'queries: {queries}') +print(f'qrels (TREC): {qrels_trec}') +print(f'qrels (MS MARCO): {qrels_tsv}') +print('\n') + +for k1 in [0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2]: + for b in [0.5, 0.6, 0.7, 0.8, 0.9]: + print(f'Trying... k1 = {k1}, b = {b}') + filename = f'run.bm25.k1_{k1}.b_{b}.txt' + if os.path.isfile(f'{base_directory}/{filename}'): + print('Run already exists, skipping!') + else: + subprocess.call(f'python tools/scripts/msmarco/retrieve.py --index {index} --queries {queries} \ + --output {base_directory}/{filename} --k1 {k1} --b {b} --hits 1000', shell=True) + +print('\n\nStarting evaluation...') + +# We're going to be tuning to maximize recall, although we'll compute MRR and MAP also just for reference. +max_score = 0 +max_file = '' + +for filename in sorted(os.listdir(base_directory)): + # TREC output run file, perhaps left over from a previous tuning run: skip. + if filename.endswith('trec'): + continue + + # Convert to a TREC run and evaluate with trec_eval: + subprocess.call(f'python tools/scripts/msmarco/convert_msmarco_to_trec_run.py \ + --input {base_directory}/{filename} --output {base_directory}/{filename}.trec', shell=True) + results = subprocess.check_output(['tools/eval/trec_eval.9.0.4/trec_eval', qrels_trec, + f'{base_directory}/{filename}.trec', '-mrecall.1000', '-mmap']) + match = re.search('map +\tall\t([0-9.]+)', results.decode('utf-8')) + ap = float(match.group(1)) + match = re.search('recall_1000 +\tall\t([0-9.]+)', results.decode('utf-8')) + recall = float(match.group(1)) + + # Evaluate with official scoring script + results = subprocess.check_output(['python', 'tools/scripts/msmarco/msmarco_passage_eval.py', + 'collections/msmarco-passage/qrels.train.tsv', + f'{base_directory}/{filename}']) + match = re.search(r'MRR @10: ([\d.]+)', results.decode('utf-8')) + rr = float(match.group(1)) + print(f'{filename}: MRR@10 = {rr}, MAP = {ap}, R@1000 = {recall}') + if recall > max_score: + max_score = recall + max_file = filename + +print(f'\n\nBest parameters: {max_file}: R@1000 = {max_score}') diff --git a/tools/scripts/msmarco/tune_rm3.py b/tools/scripts/msmarco/tune_rm3.py new file mode 100644 index 0000000000000000000000000000000000000000..8a6b47764af5e49f73293382baa366be10a72e32 --- /dev/null +++ b/tools/scripts/msmarco/tune_rm3.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- +''' +Anserini: A Lucene toolkit for replicable information retrieval research + +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. +''' + +# Simple script for tuning BM25 parameters (k1 and b) for MS MARCO + +import argparse +import os +import re +import subprocess + +parser = argparse.ArgumentParser(description='Tunes BM25 parameters for MS MARCO Passages') +parser.add_argument('--base_directory', required=True, help='base directory for storing runs') +parser.add_argument('--index', required=True, help='index to use') +parser.add_argument('--queries', required=True, help='queries for evaluation') +parser.add_argument('--qrels', required=True, help='qrels for evaluation') + +args = parser.parse_args() + +base_directory = args.base_directory +index = args.index +qrels = args.qrels +queries = args.queries + +if not os.path.exists(args.base_directory): + os.makedirs(args.base_directory) + +print('# Settings') +print('base directory: {}'.format(base_directory)) +print('index: {}'.format(index)) +print('queries: {}'.format(queries)) +print('qrels: {}'.format(qrels)) +print('\n') + +k1 = 0.82 +b = 0.72 +for fbDocs in [5, 10, 15]: + for fbTerms in [10, 30, 50]: + for originalQueryWeight in [0.6, 0.7, 0.8, 0.9]: + print('Trying... fbDocs = {}, fbTerms = {}, originalQueryWeight = {}'.format( + fbDocs, fbTerms, originalQueryWeight)) + filename = 'run.bm25.k1_{}.b_{}.rm3.fbDocs_{}.fbTerms_{}.originalQueryWeight_{}.txt'.format( + k1, b, fbDocs, fbTerms, originalQueryWeight) + if os.path.isfile('{}/{}'.format(base_directory, filename)): + print('Run already exists, skipping!') + else: + subprocess.call('python src/main/python/msmarco/retrieve.py \ + --index {} --qid_queries {} --output {}/{} \ + --k1 {} --b {} --hits 1000 --rm3 --fbDocs {} --fbTerms {} --originalQueryWeight {}'.format( + index, queries, base_directory, filename, k1, b, fbDocs, fbTerms, originalQueryWeight), shell=True) + +print('\n\nStarting evaluation...') + +# We're going to be tuning to maximize recall, although we'll compute MRR and MAP also just for reference. +max_score = 0 +max_file = '' +for filename in sorted(os.listdir(base_directory)): + # trec file, perhaps left over from a previous tuning run: skip. + if filename.endswith('trec'): + continue + # convert to a trec run and evaluate with trec_eval + subprocess.call('python src/main/python/msmarco/convert_msmarco_to_trec_run.py \ + --input {}/{} --output {}/{}.trec'.format(base_directory, filename, base_directory, filename), shell=True) + results = subprocess.check_output(['eval/trec_eval.9.0.4/trec_eval', 'msmarco_data/qrels.dev.small.tsv', + '{}/{}.trec'.format(base_directory, filename), '-mrecall.1000', '-mmap']) + match = re.search('map +\tall\t([0-9.]+)', results.decode('utf-8')) + ap = float(match.group(1)) + match = re.search('recall_1000 +\tall\t([0-9.]+)', results.decode('utf-8')) + recall = float(match.group(1)) + # evaluate with official scoring script + results = subprocess.check_output(['python', 'tools/scripts/msmarco/msmarco_passage_eval.py', + '{}'.format(qrels), '{}/{}'.format(base_directory, filename)]) + match = re.search(r'MRR @10: ([\d.]+)', results.decode('utf-8')) + rr = float(match.group(1)) + print('{}: MRR@10 = {}, MAP = {}, R@1000 = {}'.format(filename, rr, ap, recall)) + if recall > max_score: + max_score = recall + max_file = filename + +print('\n\nBest parameters: {}: R@1000 = {}'.format(max_file, max_score)) diff --git a/tools/setup.cfg b/tools/setup.cfg new file mode 100644 index 0000000000000000000000000000000000000000..6deafc261704e20369c0983af88042e502ae4880 --- /dev/null +++ b/tools/setup.cfg @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120